diff --git a/TechEngine b/TechEngine index 8eb2c3ad634f..e40d594039f9 160000 --- a/TechEngine +++ b/TechEngine @@ -1 +1 @@ -Subproject commit 8eb2c3ad634f8141895ae35162265f970e52b793 +Subproject commit e40d594039f9ef90b5a870d4f1ba7dff9887a694 diff --git a/app/validate.py b/app/validate.py index ad124be30410..b86983ea196e 100644 --- a/app/validate.py +++ b/app/validate.py @@ -112,6 +112,13 @@ "verified", } +SOFTWARE_REQUIRED = { + "slug", + "name", + "source_urls", + "verified", +} + DATE_RE = re.compile(r"^\d{4}-\d{2}-\d{2}$") @@ -237,6 +244,7 @@ def validate() -> list[str]: laptops = _load("laptop") monitors = _load("monitor") games = _load("game") + software = _load("software") brand_slugs = {rec["slug"] for _, rec in brands if "slug" in rec} soc_slugs = {rec["slug"] for _, rec in socs if "slug" in rec} @@ -255,6 +263,7 @@ def validate() -> list[str]: ("laptop", laptops), ("monitor", monitors), ("game", games), + ("software", software), ): _check_unique_slugs(category, records, errors) @@ -417,6 +426,13 @@ def validate() -> list[str]: if rec.get("metacritic") is not None: _check_range(fname, "metacritic", rec.get("metacritic"), 0, 100, errors) + for fname, rec in software: + _check_required(fname, rec, SOFTWARE_REQUIRED, errors) + _check_source_urls(fname, rec, errors) + _check_slug(fname, rec.get("slug"), errors) + if rec.get("release_date") is not None: + _check_date(fname, rec["release_date"], errors) + return errors diff --git a/data/game/10/10-computer-hits-2.json b/data/game/10/10-computer-hits-2.json new file mode 100644 index 000000000000..eb7957e357db --- /dev/null +++ b/data/game/10/10-computer-hits-2.json @@ -0,0 +1,15 @@ +{ + "slug": "10-computer-hits-2", + "name": "10 Computer Hits 2", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q98399029" + ], + "release_date": "1986-01-01", + "platforms": [ + "Amstrad CPC" + ], + "publishers": [ + "Beau Jolly" + ] +} diff --git a/data/game/10/10-computer-hits-3.json b/data/game/10/10-computer-hits-3.json new file mode 100644 index 000000000000..522af70fc68f --- /dev/null +++ b/data/game/10/10-computer-hits-3.json @@ -0,0 +1,15 @@ +{ + "slug": "10-computer-hits-3", + "name": "10 Computer Hits 3", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105669831" + ], + "release_date": "1986-01-01", + "platforms": [ + "Amstrad CPC" + ], + "publishers": [ + "Beau Jolly" + ] +} diff --git a/data/game/10/10-computer-hits-4.json b/data/game/10/10-computer-hits-4.json new file mode 100644 index 000000000000..2a042acb74a1 --- /dev/null +++ b/data/game/10/10-computer-hits-4.json @@ -0,0 +1,15 @@ +{ + "slug": "10-computer-hits-4", + "name": "10 Computer Hits 4", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q98399061" + ], + "release_date": "1988-01-01", + "platforms": [ + "Amstrad CPC" + ], + "publishers": [ + "Beau Jolly" + ] +} diff --git a/data/game/10/10-computer-hits-5.json b/data/game/10/10-computer-hits-5.json new file mode 100644 index 000000000000..4ce47500fc67 --- /dev/null +++ b/data/game/10/10-computer-hits-5.json @@ -0,0 +1,15 @@ +{ + "slug": "10-computer-hits-5", + "name": "10 Computer Hits 5", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113516824" + ], + "release_date": "1989-01-01", + "platforms": [ + "Amstrad CPC" + ], + "publishers": [ + "Beau Jolly" + ] +} diff --git a/data/game/10/10-computer-hits.json b/data/game/10/10-computer-hits.json new file mode 100644 index 000000000000..307114dded8d --- /dev/null +++ b/data/game/10/10-computer-hits.json @@ -0,0 +1,15 @@ +{ + "slug": "10-computer-hits", + "name": "10 Computer Hits", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q96621136" + ], + "release_date": "1985-01-01", + "platforms": [ + "Amstrad CPC" + ], + "publishers": [ + "Beau Jolly" + ] +} diff --git a/data/game/10/10-great-games.json b/data/game/10/10-great-games.json new file mode 100644 index 000000000000..ac60168b8e8e --- /dev/null +++ b/data/game/10/10-great-games.json @@ -0,0 +1,8 @@ +{ + "slug": "10-great-games", + "name": "10 Great Games", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126184165" + ] +} diff --git a/data/game/10/10-intelligent-strategy-games.json b/data/game/10/10-intelligent-strategy-games.json new file mode 100644 index 000000000000..4bec8eaed721 --- /dev/null +++ b/data/game/10/10-intelligent-strategy-games.json @@ -0,0 +1,8 @@ +{ + "slug": "10-intelligent-strategy-games", + "name": "10 Intelligent Strategy Games", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126185033" + ] +} diff --git a/data/game/10/10-megahits-vol-2.json b/data/game/10/10-megahits-vol-2.json new file mode 100644 index 000000000000..f713123bfeb2 --- /dev/null +++ b/data/game/10/10-megahits-vol-2.json @@ -0,0 +1,8 @@ +{ + "slug": "10-megahits-vol-2", + "name": "10 Megahits Vol 2", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126187179" + ] +} diff --git a/data/game/10/10-megahits-vol-3.json b/data/game/10/10-megahits-vol-3.json new file mode 100644 index 000000000000..6fbc0811db17 --- /dev/null +++ b/data/game/10/10-megahits-vol-3.json @@ -0,0 +1,8 @@ +{ + "slug": "10-megahits-vol-3", + "name": "10 Megahits Vol 3", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126187164" + ] +} diff --git a/data/game/10/100-000-pyramid-demo.json b/data/game/10/100-000-pyramid-demo.json new file mode 100644 index 000000000000..569eb73477ab --- /dev/null +++ b/data/game/10/100-000-pyramid-demo.json @@ -0,0 +1,11 @@ +{ + "slug": "100-000-pyramid-demo", + "name": "$100,000 Pyramid demo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q104243716" + ], + "genres": [ + "game show video game" + ] +} diff --git a/data/game/10/100-bullets.json b/data/game/10/100-bullets.json new file mode 100644 index 000000000000..4846d320cd57 --- /dev/null +++ b/data/game/10/100-bullets.json @@ -0,0 +1,21 @@ +{ + "slug": "100-bullets", + "name": "100 Bullets", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8529" + ], + "platforms": [ + "Game Boy Advance", + "PlayStation Portable", + "Nintendo DS", + "Wii", + "PlayStation 3" + ], + "genres": [ + "action game" + ], + "developers": [ + "Acclaim Studios Austin" + ] +} diff --git a/data/game/11/1171.json b/data/game/11/1171.json new file mode 100644 index 000000000000..2dfa4a42d4e1 --- /dev/null +++ b/data/game/11/1171.json @@ -0,0 +1,17 @@ +{ + "slug": "1171", + "name": "1171", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120804394" + ], + "platforms": [ + "personal computer" + ], + "genres": [ + "shooter game" + ], + "developers": [ + "Parallax Arts Studio" + ] +} diff --git a/data/game/12/12-is-better-than-6-the-apostles.json b/data/game/12/12-is-better-than-6-the-apostles.json new file mode 100644 index 000000000000..ff9849909aa1 --- /dev/null +++ b/data/game/12/12-is-better-than-6-the-apostles.json @@ -0,0 +1,13 @@ +{ + "slug": "12-is-better-than-6-the-apostles", + "name": "12 is Better Than 6: The Apostles", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116493396" + ], + "release_date": "2017-12-06", + "platforms": [ + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/game/14/1428-shadows-over-silesia-tourney-at-the-bear-rock.json b/data/game/14/1428-shadows-over-silesia-tourney-at-the-bear-rock.json new file mode 100644 index 000000000000..1d38f3d4c278 --- /dev/null +++ b/data/game/14/1428-shadows-over-silesia-tourney-at-the-bear-rock.json @@ -0,0 +1,8 @@ +{ + "slug": "1428-shadows-over-silesia-tourney-at-the-bear-rock", + "name": "1428: Shadows over Silesia - Tourney at the Bear Rock", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140462379" + ] +} diff --git a/data/game/16/16-bit-collection-data-east-vol-1.json b/data/game/16/16-bit-collection-data-east-vol-1.json new file mode 100644 index 000000000000..79f54d2352a4 --- /dev/null +++ b/data/game/16/16-bit-collection-data-east-vol-1.json @@ -0,0 +1,12 @@ +{ + "slug": "16-bit-collection-data-east-vol-1", + "name": "16-Bit Collection: Data East Vol. 1", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q30932006" + ], + "release_date": "2017-09-30", + "platforms": [ + "Super Nintendo Entertainment System" + ] +} diff --git a/data/game/16/1602-a-d-by-royal-command.json b/data/game/16/1602-a-d-by-royal-command.json new file mode 100644 index 000000000000..52be32e175db --- /dev/null +++ b/data/game/16/1602-a-d-by-royal-command.json @@ -0,0 +1,12 @@ +{ + "slug": "1602-a-d-by-royal-command", + "name": "1602 A.D.: By Royal Command", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2264180" + ], + "release_date": "2006-06-03", + "genres": [ + "strategy video game" + ] +} diff --git a/data/game/17/1701-a-d-gold-edition.json b/data/game/17/1701-a-d-gold-edition.json new file mode 100644 index 000000000000..02a8982178e9 --- /dev/null +++ b/data/game/17/1701-a-d-gold-edition.json @@ -0,0 +1,8 @@ +{ + "slug": "1701-a-d-gold-edition", + "name": "1701 A.D. Gold Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121889010" + ] +} diff --git a/data/game/1s/1st-cd-edition.json b/data/game/1s/1st-cd-edition.json new file mode 100644 index 000000000000..447d6fcff1ee --- /dev/null +++ b/data/game/1s/1st-cd-edition.json @@ -0,0 +1,12 @@ +{ + "slug": "1st-cd-edition", + "name": "1st CD Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111435792" + ], + "release_date": "1989-01-01", + "platforms": [ + "Commodore 64" + ] +} diff --git a/data/game/2-/2-hot-2-handle.json b/data/game/2-/2-hot-2-handle.json new file mode 100644 index 000000000000..123254fd9c05 --- /dev/null +++ b/data/game/2-/2-hot-2-handle.json @@ -0,0 +1,16 @@ +{ + "slug": "2-hot-2-handle", + "name": "2-Hot 2-Handle", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126184931" + ], + "release_date": "1991-01-01", + "platforms": [ + "Amstrad CPC", + "Commodore Amiga" + ], + "publishers": [ + "Ocean Software" + ] +} diff --git a/data/game/2-/2-por-1-basketball-two-on-two-star-raiders-ii.json b/data/game/2-/2-por-1-basketball-two-on-two-star-raiders-ii.json new file mode 100644 index 000000000000..63c7c8603692 --- /dev/null +++ b/data/game/2-/2-por-1-basketball-two-on-two-star-raiders-ii.json @@ -0,0 +1,12 @@ +{ + "slug": "2-por-1-basketball-two-on-two-star-raiders-ii", + "name": "2 Por 1 - Basketball Two-On-Two + Star Raiders II", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134599382" + ], + "release_date": "1987-01-01", + "platforms": [ + "Amstrad CPC" + ] +} diff --git a/data/game/20/20-em-1.json b/data/game/20/20-em-1.json new file mode 100644 index 000000000000..0dc9d9207425 --- /dev/null +++ b/data/game/20/20-em-1.json @@ -0,0 +1,14 @@ +{ + "slug": "20-em-1", + "name": "20 em 1", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4630619" + ], + "developers": [ + "Tectoy" + ], + "publishers": [ + "Tectoy" + ] +} diff --git a/data/game/20/2018-fifa-world-cup.json b/data/game/20/2018-fifa-world-cup.json new file mode 100644 index 000000000000..242da554be85 --- /dev/null +++ b/data/game/20/2018-fifa-world-cup.json @@ -0,0 +1,9 @@ +{ + "slug": "2018-fifa-world-cup", + "name": "2018 FIFA World Cup", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q55004100" + ], + "release_date": "2018-05-29" +} diff --git a/data/game/3-/3-in-1-supergun.json b/data/game/3-/3-in-1-supergun.json new file mode 100644 index 000000000000..612009ca6a58 --- /dev/null +++ b/data/game/3-/3-in-1-supergun.json @@ -0,0 +1,19 @@ +{ + "slug": "3-in-1-supergun", + "name": "3 in 1 Supergun", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q101225378" + ], + "release_date": "1993-01-01", + "platforms": [ + "Nintendo Entertainment System" + ], + "genres": [ + "light-gun shooter", + "shooter game" + ], + "publishers": [ + "Micro Genius" + ] +} diff --git a/data/game/30/30-days-until-wedding-bells.json b/data/game/30/30-days-until-wedding-bells.json new file mode 100644 index 000000000000..b27cc3ab89c7 --- /dev/null +++ b/data/game/30/30-days-until-wedding-bells.json @@ -0,0 +1,21 @@ +{ + "slug": "30-days-until-wedding-bells", + "name": "30 Days Until Wedding Bells", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63436573" + ], + "release_date": "2019-01-01", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "interactive fiction" + ], + "developers": [ + "Team Koala Lampoon" + ], + "publishers": [ + "Team Koala Lampoon" + ] +} diff --git a/data/game/30/303-game-collection.json b/data/game/30/303-game-collection.json new file mode 100644 index 000000000000..299b9ed341c0 --- /dev/null +++ b/data/game/30/303-game-collection.json @@ -0,0 +1,21 @@ +{ + "slug": "303-game-collection", + "name": "303 Game Collection", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125956340" + ], + "release_date": "2003-06-04", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "casual game" + ], + "developers": [ + "Antidote Entertainment" + ], + "publishers": [ + "ValuSoft" + ] +} diff --git a/data/game/3d/3d-biohazard-skull-theme.json b/data/game/3d/3d-biohazard-skull-theme.json new file mode 100644 index 000000000000..a21ca9362a4d --- /dev/null +++ b/data/game/3d/3d-biohazard-skull-theme.json @@ -0,0 +1,18 @@ +{ + "slug": "3d-biohazard-skull-theme", + "name": "3D Biohazard Skull Theme", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q61468099" + ], + "release_date": "2015-07-24", + "platforms": [ + "PlayStation Vita" + ], + "developers": [ + "Populus Media" + ], + "publishers": [ + "Populus Media" + ] +} diff --git a/data/game/3d/3dge.json b/data/game/3d/3dge.json new file mode 100644 index 000000000000..35ad9e6b2da1 --- /dev/null +++ b/data/game/3d/3dge.json @@ -0,0 +1,8 @@ +{ + "slug": "3dge", + "name": "3DGE", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q67197419" + ] +} diff --git a/data/game/4-/4-most-super-sports.json b/data/game/4-/4-most-super-sports.json new file mode 100644 index 000000000000..fe31c6b1a58f --- /dev/null +++ b/data/game/4-/4-most-super-sports.json @@ -0,0 +1,12 @@ +{ + "slug": "4-most-super-sports", + "name": "4 Most Super Sports", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63067993" + ], + "platforms": [ + "Commodore 64", + "ZX Spectrum" + ] +} diff --git a/data/game/4-/4-pak-all-action.json b/data/game/4-/4-pak-all-action.json new file mode 100644 index 000000000000..81f92382bfee --- /dev/null +++ b/data/game/4-/4-pak-all-action.json @@ -0,0 +1,8 @@ +{ + "slug": "4-pak-all-action", + "name": "4 PAK All Action", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108133814" + ] +} diff --git a/data/game/40/400-days.json b/data/game/40/400-days.json new file mode 100644 index 000000000000..bd15e56a1672 --- /dev/null +++ b/data/game/40/400-days.json @@ -0,0 +1,12 @@ +{ + "slug": "400-days", + "name": "400 Days", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16207063" + ], + "release_date": "2013-07-02", + "platforms": [ + "PlayStation 4" + ] +} diff --git a/data/game/5-/5-arcade-gems.json b/data/game/5-/5-arcade-gems.json new file mode 100644 index 000000000000..56ad8d4f29d6 --- /dev/null +++ b/data/game/5-/5-arcade-gems.json @@ -0,0 +1,21 @@ +{ + "slug": "5-arcade-gems", + "name": "5 Arcade Gems", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18176225" + ], + "release_date": "2010-04-26", + "platforms": [ + "Wii" + ], + "genres": [ + "arcade" + ], + "developers": [ + "Nordcurrent" + ], + "publishers": [ + "Nordcurrent" + ] +} diff --git a/data/game/50/50-great-games-q114340981.json b/data/game/50/50-great-games-q114340981.json new file mode 100644 index 000000000000..8747a76a44b6 --- /dev/null +++ b/data/game/50/50-great-games-q114340981.json @@ -0,0 +1,8 @@ +{ + "slug": "50-great-games-q114340981", + "name": "50 Great Games", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q114340981" + ] +} diff --git a/data/game/6-/6-pak.json b/data/game/6-/6-pak.json new file mode 100644 index 000000000000..ed949ed5719b --- /dev/null +++ b/data/game/6-/6-pak.json @@ -0,0 +1,8 @@ +{ + "slug": "6-pak", + "name": "6-Pak", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q9553916" + ] +} diff --git a/data/game/7-/7-meters-away-wallpaper.json b/data/game/7-/7-meters-away-wallpaper.json new file mode 100644 index 000000000000..9f2adc12772c --- /dev/null +++ b/data/game/7-/7-meters-away-wallpaper.json @@ -0,0 +1,22 @@ +{ + "slug": "7-meters-away-wallpaper", + "name": "7 Meters away - Wallpaper", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q129330217" + ], + "release_date": "2024-08-31", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "point-and-click adventure", + "mystery video game" + ], + "developers": [ + "Dlou Saiyan" + ], + "publishers": [ + "Dlou Saiyan" + ] +} diff --git a/data/game/7t/7th-street.json b/data/game/7t/7th-street.json new file mode 100644 index 000000000000..1ccb4a0928b6 --- /dev/null +++ b/data/game/7t/7th-street.json @@ -0,0 +1,24 @@ +{ + "slug": "7th-street", + "name": "7th Street", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111035028" + ], + "release_date": "2012-09-27", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "survival horror" + ], + "developers": [ + "Wray Burgess", + "Marc Steene" + ], + "publishers": [ + "Marc Steene", + "Wray Burgess" + ] +} diff --git a/data/game/8-/8-11-demo.json b/data/game/8-/8-11-demo.json new file mode 100644 index 000000000000..69e91aacd83c --- /dev/null +++ b/data/game/8-/8-11-demo.json @@ -0,0 +1,8 @@ +{ + "slug": "8-11-demo", + "name": "8:11 (Demo)", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131619404" + ] +} diff --git a/data/game/8-/8-bit-armies-guardians-campaign.json b/data/game/8-/8-bit-armies-guardians-campaign.json new file mode 100644 index 000000000000..73102ac81379 --- /dev/null +++ b/data/game/8-/8-bit-armies-guardians-campaign.json @@ -0,0 +1,11 @@ +{ + "slug": "8-bit-armies-guardians-campaign", + "name": "8-Bit Armies: Guardians Campaign", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122643977" + ], + "developers": [ + "Petroglyph Games" + ] +} diff --git a/data/game/8-/8-bit-is-enough.json b/data/game/8-/8-bit-is-enough.json new file mode 100644 index 000000000000..e1558f21d0d8 --- /dev/null +++ b/data/game/8-/8-bit-is-enough.json @@ -0,0 +1,23 @@ +{ + "slug": "8-bit-is-enough", + "name": "8-Bit Is Enough", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135448932" + ], + "release_date": "2008-12-15", + "platforms": [ + "PlayStation 3", + "Wii", + "Microsoft Windows" + ], + "genres": [ + "graphic adventure game" + ], + "developers": [ + "Telltale Games" + ], + "publishers": [ + "Telltale Games" + ] +} diff --git a/data/game/8-/8-d-3.json b/data/game/8-/8-d-3.json new file mode 100644 index 000000000000..88e17276ae06 --- /dev/null +++ b/data/game/8-/8-d-3.json @@ -0,0 +1,22 @@ +{ + "slug": "8-d-3", + "name": "8=D~<3", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63373775" + ], + "release_date": "2016-01-01", + "platforms": [ + "web browser" + ], + "genres": [ + "Boys' Love game", + "interactive fiction" + ], + "developers": [ + "BáiYù" + ], + "publishers": [ + "BáiYù" + ] +} diff --git a/data/game/a-/a-10c-advanced-aircraft-training-qualification-campaign.json b/data/game/a-/a-10c-advanced-aircraft-training-qualification-campaign.json new file mode 100644 index 000000000000..39333d1e96b1 --- /dev/null +++ b/data/game/a-/a-10c-advanced-aircraft-training-qualification-campaign.json @@ -0,0 +1,15 @@ +{ + "slug": "a-10c-advanced-aircraft-training-qualification-campaign", + "name": "A-10C: Advanced Aircraft Training Qualification Campaign", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097546" + ], + "release_date": "2017-02-23", + "platforms": [ + "Microsoft Windows" + ], + "publishers": [ + "Eagle Dynamics" + ] +} diff --git a/data/game/a-/a-10c-basic-flight-training-campaign.json b/data/game/a-/a-10c-basic-flight-training-campaign.json new file mode 100644 index 000000000000..729eaec12dcd --- /dev/null +++ b/data/game/a-/a-10c-basic-flight-training-campaign.json @@ -0,0 +1,15 @@ +{ + "slug": "a-10c-basic-flight-training-campaign", + "name": "A-10C: Basic Flight Training Campaign", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097547" + ], + "release_date": "2017-01-27", + "platforms": [ + "Microsoft Windows" + ], + "publishers": [ + "Eagle Dynamics" + ] +} diff --git a/data/game/a-/a-10c-red-flag-campaign.json b/data/game/a-/a-10c-red-flag-campaign.json new file mode 100644 index 000000000000..b14d19569d2b --- /dev/null +++ b/data/game/a-/a-10c-red-flag-campaign.json @@ -0,0 +1,18 @@ +{ + "slug": "a-10c-red-flag-campaign", + "name": "A-10C: Red Flag Campaign", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097421" + ], + "release_date": "2017-08-30", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Eagle Dynamics" + ], + "publishers": [ + "Eagle Dynamics" + ] +} diff --git a/data/game/a-/a-10c-stone-shield-campaign.json b/data/game/a-/a-10c-stone-shield-campaign.json new file mode 100644 index 000000000000..8639221ae890 --- /dev/null +++ b/data/game/a-/a-10c-stone-shield-campaign.json @@ -0,0 +1,15 @@ +{ + "slug": "a-10c-stone-shield-campaign", + "name": "A-10C: Stone Shield Campaign", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097548" + ], + "release_date": "2017-08-25", + "platforms": [ + "Microsoft Windows" + ], + "publishers": [ + "Eagle Dynamics" + ] +} diff --git a/data/game/a-/a-10c-tactical-training-qualification-campaign.json b/data/game/a-/a-10c-tactical-training-qualification-campaign.json new file mode 100644 index 000000000000..5a0f912a97ca --- /dev/null +++ b/data/game/a-/a-10c-tactical-training-qualification-campaign.json @@ -0,0 +1,15 @@ +{ + "slug": "a-10c-tactical-training-qualification-campaign", + "name": "A-10C: Tactical Training Qualification Campaign", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097561" + ], + "release_date": "2017-09-15", + "platforms": [ + "Microsoft Windows" + ], + "publishers": [ + "Eagle Dynamics" + ] +} diff --git a/data/game/a-/a-b-street.json b/data/game/a-/a-b-street.json new file mode 100644 index 000000000000..aaf9af7b4dc2 --- /dev/null +++ b/data/game/a-/a-b-street.json @@ -0,0 +1,16 @@ +{ + "slug": "a-b-street", + "name": "A/B Street", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q133296377" + ], + "platforms": [ + "macOS", + "web browser", + "Microsoft Windows" + ], + "developers": [ + "Dustin Carlino" + ] +} diff --git a/data/game/a-/a-castle-full-of-cats-bag-of-treats.json b/data/game/a-/a-castle-full-of-cats-bag-of-treats.json new file mode 100644 index 000000000000..fb6c6ea1247f --- /dev/null +++ b/data/game/a-/a-castle-full-of-cats-bag-of-treats.json @@ -0,0 +1,18 @@ +{ + "slug": "a-castle-full-of-cats-bag-of-treats", + "name": "A Castle Full of Cats: Bag of Treats", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117713316" + ], + "release_date": "2022-11-09", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Devcats" + ], + "publishers": [ + "Devcats" + ] +} diff --git a/data/game/a-/a-closed-world.json b/data/game/a-/a-closed-world.json new file mode 100644 index 000000000000..b156676664a5 --- /dev/null +++ b/data/game/a-/a-closed-world.json @@ -0,0 +1,21 @@ +{ + "slug": "a-closed-world", + "name": "A Closed World", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q64620875" + ], + "release_date": "2011-01-01", + "platforms": [ + "web browser" + ], + "genres": [ + "role-playing video game" + ], + "developers": [ + "Team Fabulous" + ], + "publishers": [ + "Team Fabulous" + ] +} diff --git a/data/game/a-/a-collection-of-activision-classic-games-for-the-atari-2600.json b/data/game/a-/a-collection-of-activision-classic-games-for-the-atari-2600.json new file mode 100644 index 000000000000..54619358e4f8 --- /dev/null +++ b/data/game/a-/a-collection-of-activision-classic-games-for-the-atari-2600.json @@ -0,0 +1,9 @@ +{ + "slug": "a-collection-of-activision-classic-games-for-the-atari-2600", + "name": "A Collection of Activision Classic Games for the Atari 2600", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2819686" + ], + "release_date": "1998-01-01" +} diff --git a/data/game/a-/a-collection-of-intellivision-classic-games.json b/data/game/a-/a-collection-of-intellivision-classic-games.json new file mode 100644 index 000000000000..09fceb1464fb --- /dev/null +++ b/data/game/a-/a-collection-of-intellivision-classic-games.json @@ -0,0 +1,9 @@ +{ + "slug": "a-collection-of-intellivision-classic-games", + "name": "A Collection of Intellivision Classic Games", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2819688" + ], + "release_date": "1999-01-01" +} diff --git a/data/game/a-/a-cup-of-tea.json b/data/game/a-/a-cup-of-tea.json new file mode 100644 index 000000000000..3ee8d2fc6243 --- /dev/null +++ b/data/game/a-/a-cup-of-tea.json @@ -0,0 +1,21 @@ +{ + "slug": "a-cup-of-tea", + "name": "A Cup of Tea", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123053652" + ], + "release_date": "2007-08-21", + "platforms": [ + "Nintendo DS" + ], + "genres": [ + "first-person shooter" + ], + "developers": [ + "smealum" + ], + "publishers": [ + "smealum" + ] +} diff --git a/data/game/a-/a-fine-night.json b/data/game/a-/a-fine-night.json new file mode 100644 index 000000000000..44b581dfd214 --- /dev/null +++ b/data/game/a-/a-fine-night.json @@ -0,0 +1,21 @@ +{ + "slug": "a-fine-night", + "name": "A Fine Night", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q64729743" + ], + "release_date": "2018-05-12", + "platforms": [ + "personal computer" + ], + "genres": [ + "interactive fiction" + ], + "developers": [ + "Grhyll" + ], + "publishers": [ + "Grhyll" + ] +} diff --git a/data/game/a-/a-google-a-day.json b/data/game/a-/a-google-a-day.json new file mode 100644 index 000000000000..624ca113757f --- /dev/null +++ b/data/game/a-/a-google-a-day.json @@ -0,0 +1,11 @@ +{ + "slug": "a-google-a-day", + "name": "A Google A Day", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4657139" + ], + "developers": [ + "Google" + ] +} diff --git a/data/game/a-/a-hat-in-time-nyakuza-metro-online-party.json b/data/game/a-/a-hat-in-time-nyakuza-metro-online-party.json new file mode 100644 index 000000000000..c79c0e860b15 --- /dev/null +++ b/data/game/a-/a-hat-in-time-nyakuza-metro-online-party.json @@ -0,0 +1,15 @@ +{ + "slug": "a-hat-in-time-nyakuza-metro-online-party", + "name": "A Hat in Time - Nyakuza Metro + Online Party", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117081195" + ], + "release_date": "2019-05-10", + "platforms": [ + "Microsoft Windows" + ], + "publishers": [ + "Gears for Breakfast" + ] +} diff --git a/data/game/a-/a-hat-in-time-nyakuza-metro.json b/data/game/a-/a-hat-in-time-nyakuza-metro.json new file mode 100644 index 000000000000..b78f4aa421e2 --- /dev/null +++ b/data/game/a-/a-hat-in-time-nyakuza-metro.json @@ -0,0 +1,9 @@ +{ + "slug": "a-hat-in-time-nyakuza-metro", + "name": "A Hat in Time - Nyakuza Metro", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117081504" + ], + "release_date": "2019-05-10" +} diff --git a/data/game/a-/a-hat-in-time-seal-the-deal.json b/data/game/a-/a-hat-in-time-seal-the-deal.json new file mode 100644 index 000000000000..cb723695ec1a --- /dev/null +++ b/data/game/a-/a-hat-in-time-seal-the-deal.json @@ -0,0 +1,24 @@ +{ + "slug": "a-hat-in-time-seal-the-deal", + "name": "A Hat in Time - Seal the Deal", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111966566" + ], + "release_date": "2018-09-13", + "platforms": [ + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "action-adventure game", + "platformer", + "collect-a-thon platformer" + ], + "developers": [ + "Gears for Breakfast" + ], + "publishers": [ + "Gears for Breakfast" + ] +} diff --git a/data/game/a-/a-house-divided.json b/data/game/a-/a-house-divided.json new file mode 100644 index 000000000000..925b84c8a48e --- /dev/null +++ b/data/game/a-/a-house-divided.json @@ -0,0 +1,15 @@ +{ + "slug": "a-house-divided", + "name": "A House Divided", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16207490" + ], + "release_date": "2014-03-04", + "platforms": [ + "PlayStation 4" + ], + "developers": [ + "Telltale Games" + ] +} diff --git a/data/game/a-/a-meadow-of-opal.json b/data/game/a-/a-meadow-of-opal.json new file mode 100644 index 000000000000..3541d827bafa --- /dev/null +++ b/data/game/a-/a-meadow-of-opal.json @@ -0,0 +1,22 @@ +{ + "slug": "a-meadow-of-opal", + "name": "A Meadow of Opal", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q64826891" + ], + "release_date": "2017-01-01", + "platforms": [ + "web browser" + ], + "genres": [ + "role-playing video game", + "visual novel" + ], + "developers": [ + "Hishicorne" + ], + "publishers": [ + "Hishicorne" + ] +} diff --git a/data/game/a-/a-midsummer-night-s-choice-commentary-track.json b/data/game/a-/a-midsummer-night-s-choice-commentary-track.json new file mode 100644 index 000000000000..4168cc271ca3 --- /dev/null +++ b/data/game/a-/a-midsummer-night-s-choice-commentary-track.json @@ -0,0 +1,19 @@ +{ + "slug": "a-midsummer-night-s-choice-commentary-track", + "name": "A Midsummer Night's Choice - Commentary Track", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115016151" + ], + "release_date": "2017-04-28", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Choice of Games" + ], + "publishers": [ + "Choice of Games" + ] +} diff --git a/data/game/a-/a-new-accord.json b/data/game/a-/a-new-accord.json new file mode 100644 index 000000000000..913e69164ccf --- /dev/null +++ b/data/game/a-/a-new-accord.json @@ -0,0 +1,9 @@ +{ + "slug": "a-new-accord", + "name": "A New Accord", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q57973875" + ], + "release_date": "2014-04-22" +} diff --git a/data/game/a-/a-new-day.json b/data/game/a-/a-new-day.json new file mode 100644 index 000000000000..f52993488f5a --- /dev/null +++ b/data/game/a-/a-new-day.json @@ -0,0 +1,28 @@ +{ + "slug": "a-new-day", + "name": "A New Day", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16170380" + ], + "release_date": "2012-04-24", + "platforms": [ + "Kindle Fire HDX", + "PlayStation 4", + "PlayStation Vita", + "iOS", + "macOS", + "PlayStation 3", + "Microsoft Windows" + ], + "genres": [ + "graphic adventure game", + "episodic video game" + ], + "developers": [ + "Telltale Games" + ], + "publishers": [ + "Telltale Games" + ] +} diff --git a/data/game/a-/a-team.json b/data/game/a-/a-team.json new file mode 100644 index 000000000000..727a875c1d4d --- /dev/null +++ b/data/game/a-/a-team.json @@ -0,0 +1,11 @@ +{ + "slug": "a-team", + "name": "A-Team", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q9555290" + ], + "platforms": [ + "Atari 2600" + ] +} diff --git a/data/game/a-/a-total-war-saga-thrones-of-britannia-blood-sweat-and-spears.json b/data/game/a-/a-total-war-saga-thrones-of-britannia-blood-sweat-and-spears.json new file mode 100644 index 000000000000..53a058c8f86a --- /dev/null +++ b/data/game/a-/a-total-war-saga-thrones-of-britannia-blood-sweat-and-spears.json @@ -0,0 +1,13 @@ +{ + "slug": "a-total-war-saga-thrones-of-britannia-blood-sweat-and-spears", + "name": "A Total War Saga: THRONES OF BRITANNIA - Blood, Sweat and Spears", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115740339" + ], + "release_date": "2018-08-29", + "platforms": [ + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/game/a-/a-total-war-saga-troy-mythos.json b/data/game/a-/a-total-war-saga-troy-mythos.json new file mode 100644 index 000000000000..292c6f946735 --- /dev/null +++ b/data/game/a-/a-total-war-saga-troy-mythos.json @@ -0,0 +1,12 @@ +{ + "slug": "a-total-war-saga-troy-mythos", + "name": "A Total War Saga : Troy - Mythos", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127165314" + ], + "platforms": [ + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/game/a-/a-total-war-saga-troy-rhesus-memnon.json b/data/game/a-/a-total-war-saga-troy-rhesus-memnon.json new file mode 100644 index 000000000000..e44c0dd46fdb --- /dev/null +++ b/data/game/a-/a-total-war-saga-troy-rhesus-memnon.json @@ -0,0 +1,12 @@ +{ + "slug": "a-total-war-saga-troy-rhesus-memnon", + "name": "A Total War Saga : Troy - Rhesus & Memnon", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127165340" + ], + "platforms": [ + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/game/a-/a-train-construction-set-q56033870.json b/data/game/a-/a-train-construction-set-q56033870.json new file mode 100644 index 000000000000..95af4348178c --- /dev/null +++ b/data/game/a-/a-train-construction-set-q56033870.json @@ -0,0 +1,8 @@ +{ + "slug": "a-train-construction-set-q56033870", + "name": "A-Train + Construction Set", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q56033870" + ] +} diff --git a/data/game/a-/a-train-construction-set.json b/data/game/a-/a-train-construction-set.json new file mode 100644 index 000000000000..be7a36dca381 --- /dev/null +++ b/data/game/a-/a-train-construction-set.json @@ -0,0 +1,8 @@ +{ + "slug": "a-train-construction-set", + "name": "A-Train Construction Set", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126902259" + ] +} diff --git a/data/game/a-/a-wolf-or-other.json b/data/game/a-/a-wolf-or-other.json new file mode 100644 index 000000000000..c56c7d6b794e --- /dev/null +++ b/data/game/a-/a-wolf-or-other.json @@ -0,0 +1,16 @@ +{ + "slug": "a-wolf-or-other", + "name": "A Wolf Or Other", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117349448" + ], + "release_date": "2018-10-01", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "horror video game" + ] +} diff --git a/data/game/aa/aabs-animals-ps-vita-and-ps3-bundle.json b/data/game/aa/aabs-animals-ps-vita-and-ps3-bundle.json new file mode 100644 index 000000000000..ba52c259a819 --- /dev/null +++ b/data/game/aa/aabs-animals-ps-vita-and-ps3-bundle.json @@ -0,0 +1,8 @@ +{ + "slug": "aabs-animals-ps-vita-and-ps3-bundle", + "name": "Aabs Animals ('PS Vita' and PS3™) Bundle", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110122817" + ] +} diff --git a/data/game/ab/abacus-q104545373.json b/data/game/ab/abacus-q104545373.json new file mode 100644 index 000000000000..81af7e180d9c --- /dev/null +++ b/data/game/ab/abacus-q104545373.json @@ -0,0 +1,8 @@ +{ + "slug": "abacus-q104545373", + "name": "Abacus", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q104545373" + ] +} diff --git a/data/game/ab/abaku.json b/data/game/ab/abaku.json new file mode 100644 index 000000000000..34b59a7593ac --- /dev/null +++ b/data/game/ab/abaku.json @@ -0,0 +1,11 @@ +{ + "slug": "abaku", + "name": "Abaku", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140197765" + ], + "genres": [ + "abstract strategy game" + ] +} diff --git a/data/game/ab/abc-audioreactive-beat-circle-premium-edition.json b/data/game/ab/abc-audioreactive-beat-circle-premium-edition.json new file mode 100644 index 000000000000..918945201a20 --- /dev/null +++ b/data/game/ab/abc-audioreactive-beat-circle-premium-edition.json @@ -0,0 +1,12 @@ +{ + "slug": "abc-audioreactive-beat-circle-premium-edition", + "name": "ABC: Audioreactive Beat Circle - Premium Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q114946033" + ], + "release_date": "2020-08-21", + "platforms": [ + "Microsoft Windows" + ] +} diff --git a/data/game/ab/absolute-despair-collection.json b/data/game/ab/absolute-despair-collection.json new file mode 100644 index 000000000000..7fb9a9c9b494 --- /dev/null +++ b/data/game/ab/absolute-despair-collection.json @@ -0,0 +1,12 @@ +{ + "slug": "absolute-despair-collection", + "name": "Absolute Despair Collection", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q104774684" + ], + "platforms": [ + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/game/ac/aca-neogeo-selection-vol-1.json b/data/game/ac/aca-neogeo-selection-vol-1.json new file mode 100644 index 000000000000..b85bfd9828b8 --- /dev/null +++ b/data/game/ac/aca-neogeo-selection-vol-1.json @@ -0,0 +1,12 @@ +{ + "slug": "aca-neogeo-selection-vol-1", + "name": "ACA NEOGEO Selection Vol. 1", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130243352" + ], + "release_date": "2024-12-12", + "publishers": [ + "SNK" + ] +} diff --git a/data/game/ac/aca-neogeo-selection-vol-2.json b/data/game/ac/aca-neogeo-selection-vol-2.json new file mode 100644 index 000000000000..c4c36f6da833 --- /dev/null +++ b/data/game/ac/aca-neogeo-selection-vol-2.json @@ -0,0 +1,12 @@ +{ + "slug": "aca-neogeo-selection-vol-2", + "name": "ACA NEOGEO Selection Vol. 2", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130243353" + ], + "release_date": "2024-12-12", + "publishers": [ + "SNK" + ] +} diff --git a/data/game/ac/aca-neogeo-selection-vol-3.json b/data/game/ac/aca-neogeo-selection-vol-3.json new file mode 100644 index 000000000000..fc403c4a6253 --- /dev/null +++ b/data/game/ac/aca-neogeo-selection-vol-3.json @@ -0,0 +1,12 @@ +{ + "slug": "aca-neogeo-selection-vol-3", + "name": "ACA NEOGEO Selection Vol. 3", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131493765" + ], + "release_date": "2025-04-10", + "publishers": [ + "SNK" + ] +} diff --git a/data/game/ac/aca-neogeo-selection-vol-4.json b/data/game/ac/aca-neogeo-selection-vol-4.json new file mode 100644 index 000000000000..1da467e3627a --- /dev/null +++ b/data/game/ac/aca-neogeo-selection-vol-4.json @@ -0,0 +1,12 @@ +{ + "slug": "aca-neogeo-selection-vol-4", + "name": "ACA NEOGEO Selection Vol. 4", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131493766" + ], + "release_date": "2025-04-10", + "publishers": [ + "SNK" + ] +} diff --git a/data/game/ac/acceleration-of-suguri-x-edition.json b/data/game/ac/acceleration-of-suguri-x-edition.json new file mode 100644 index 000000000000..9fe4d016a3de --- /dev/null +++ b/data/game/ac/acceleration-of-suguri-x-edition.json @@ -0,0 +1,20 @@ +{ + "slug": "acceleration-of-suguri-x-edition", + "name": "Acceleration of Suguri X Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4672295" + ], + "release_date": "2011-02-15", + "platforms": [ + "PlayStation 3", + "Microsoft Windows" + ], + "genres": [ + "bullet hell", + "2D fighting game" + ], + "publishers": [ + "Daybreak Game Company" + ] +} diff --git a/data/game/ac/ace-combat-7-skies-unknown-sharefactory-theme.json b/data/game/ac/ace-combat-7-skies-unknown-sharefactory-theme.json new file mode 100644 index 000000000000..9f319dc717ce --- /dev/null +++ b/data/game/ac/ace-combat-7-skies-unknown-sharefactory-theme.json @@ -0,0 +1,18 @@ +{ + "slug": "ace-combat-7-skies-unknown-sharefactory-theme", + "name": "Ace Combat 7: Skies Unknown SHAREfactory Theme", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q61467510" + ], + "release_date": "2019-01-18", + "platforms": [ + "PlayStation 4" + ], + "developers": [ + "Bandai Namco Entertainment" + ], + "publishers": [ + "Bandai Namco Entertainment" + ] +} diff --git a/data/game/ac/ace-combat-7-skies-unknown-top-gun-maverick-edition.json b/data/game/ac/ace-combat-7-skies-unknown-top-gun-maverick-edition.json new file mode 100644 index 000000000000..f059661de58b --- /dev/null +++ b/data/game/ac/ace-combat-7-skies-unknown-top-gun-maverick-edition.json @@ -0,0 +1,18 @@ +{ + "slug": "ace-combat-7-skies-unknown-top-gun-maverick-edition", + "name": "Ace Combat 7: Skies Unknown - Top Gun: Maverick Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112943565" + ], + "release_date": "2022-05-26", + "platforms": [ + "Xbox Series X and Series S" + ], + "developers": [ + "Bandai Namco Studios" + ], + "publishers": [ + "Bandai Namco Entertainment" + ] +} diff --git a/data/game/ac/ace-combat-7-skies-unknown-top-gun-maverick-ultimate-edition.json b/data/game/ac/ace-combat-7-skies-unknown-top-gun-maverick-ultimate-edition.json new file mode 100644 index 000000000000..7f5b5bd14454 --- /dev/null +++ b/data/game/ac/ace-combat-7-skies-unknown-top-gun-maverick-ultimate-edition.json @@ -0,0 +1,18 @@ +{ + "slug": "ace-combat-7-skies-unknown-top-gun-maverick-ultimate-edition", + "name": "Ace Combat 7: Skies Unknown - Top Gun: Maverick Ultimate Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112943580" + ], + "release_date": "2022-05-26", + "platforms": [ + "Xbox Series X and Series S" + ], + "developers": [ + "Bandai Namco Studios" + ], + "publishers": [ + "Bandai Namco Entertainment" + ] +} diff --git a/data/game/ac/act-of-war-gold-edition.json b/data/game/ac/act-of-war-gold-edition.json new file mode 100644 index 000000000000..53c9a6e8916d --- /dev/null +++ b/data/game/ac/act-of-war-gold-edition.json @@ -0,0 +1,8 @@ +{ + "slug": "act-of-war-gold-edition", + "name": "Act of War: Gold Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121888976" + ] +} diff --git a/data/game/ac/action-52-q139888877.json b/data/game/ac/action-52-q139888877.json new file mode 100644 index 000000000000..285f0dc23d59 --- /dev/null +++ b/data/game/ac/action-52-q139888877.json @@ -0,0 +1,17 @@ +{ + "slug": "action-52-q139888877", + "name": "Action 52", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139888877" + ], + "platforms": [ + "Sega Genesis" + ], + "genres": [ + "video game compilation" + ], + "developers": [ + "FarSight Studios" + ] +} diff --git a/data/game/ac/action-52-q343608.json b/data/game/ac/action-52-q343608.json new file mode 100644 index 000000000000..f72b91446b1c --- /dev/null +++ b/data/game/ac/action-52-q343608.json @@ -0,0 +1,15 @@ +{ + "slug": "action-52-q343608", + "name": "Action 52", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q343608" + ], + "release_date": "1991-01-01", + "genres": [ + "video game compilation" + ], + "publishers": [ + "Active Enterprises" + ] +} diff --git a/data/game/ac/action-52.json b/data/game/ac/action-52.json new file mode 100644 index 000000000000..46ae51162a9a --- /dev/null +++ b/data/game/ac/action-52.json @@ -0,0 +1,17 @@ +{ + "slug": "action-52", + "name": "Action 52", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139888876" + ], + "platforms": [ + "Nintendo Entertainment System" + ], + "genres": [ + "video game compilation" + ], + "developers": [ + "Active Enterprises" + ] +} diff --git a/data/game/ac/action-bumping-games.json b/data/game/ac/action-bumping-games.json new file mode 100644 index 000000000000..76e8dcde8574 --- /dev/null +++ b/data/game/ac/action-bumping-games.json @@ -0,0 +1,11 @@ +{ + "slug": "action-bumping-games", + "name": "Action & Bumping Games", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q48999987" + ], + "platforms": [ + "Apple II series" + ] +} diff --git a/data/game/ac/active-shooter-demo.json b/data/game/ac/active-shooter-demo.json new file mode 100644 index 000000000000..aab0cd061046 --- /dev/null +++ b/data/game/ac/active-shooter-demo.json @@ -0,0 +1,22 @@ +{ + "slug": "active-shooter-demo", + "name": "Active Shooter Demo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112247989" + ], + "release_date": "2018-01-01", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "tactical shooter" + ], + "developers": [ + "Revived Games" + ], + "publishers": [ + "ACID" + ] +} diff --git a/data/game/ac/activision-anthology.json b/data/game/ac/activision-anthology.json new file mode 100644 index 000000000000..0415933045af --- /dev/null +++ b/data/game/ac/activision-anthology.json @@ -0,0 +1,23 @@ +{ + "slug": "activision-anthology", + "name": "Activision Anthology", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q927590" + ], + "release_date": "2002-11-19", + "platforms": [ + "macOS", + "PlayStation Portable", + "DigiBLAST", + "Game Boy Advance", + "iOS", + "Microsoft Windows" + ], + "developers": [ + "Barking Lizards Technologies" + ], + "publishers": [ + "Activision" + ] +} diff --git a/data/game/ad/ad-d-masterpiece-collection.json b/data/game/ad/ad-d-masterpiece-collection.json new file mode 100644 index 000000000000..c0624a899057 --- /dev/null +++ b/data/game/ad/ad-d-masterpiece-collection.json @@ -0,0 +1,18 @@ +{ + "slug": "ad-d-masterpiece-collection", + "name": "AD&D Masterpiece Collection", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16207823" + ], + "release_date": "1996-01-01", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "role-playing video game" + ], + "developers": [ + "Strategic Simulations" + ] +} diff --git a/data/game/ad/adam-wolfe-episode-1-the-ancient-flame.json b/data/game/ad/adam-wolfe-episode-1-the-ancient-flame.json new file mode 100644 index 000000000000..3fd1f74a5b57 --- /dev/null +++ b/data/game/ad/adam-wolfe-episode-1-the-ancient-flame.json @@ -0,0 +1,8 @@ +{ + "slug": "adam-wolfe-episode-1-the-ancient-flame", + "name": "Adam Wolfe: Episode 1 - The Ancient Flame", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127326320" + ] +} diff --git a/data/game/ad/adam-wolfe-episode-2-the-devil-you-know.json b/data/game/ad/adam-wolfe-episode-2-the-devil-you-know.json new file mode 100644 index 000000000000..44db2f95e49f --- /dev/null +++ b/data/game/ad/adam-wolfe-episode-2-the-devil-you-know.json @@ -0,0 +1,8 @@ +{ + "slug": "adam-wolfe-episode-2-the-devil-you-know", + "name": "Adam Wolfe: Episode 2 - The Devil You Know", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127326389" + ] +} diff --git a/data/game/ad/adam-wolfe-episode-3-lady-and-the-painter.json b/data/game/ad/adam-wolfe-episode-3-lady-and-the-painter.json new file mode 100644 index 000000000000..ddd96774b5f5 --- /dev/null +++ b/data/game/ad/adam-wolfe-episode-3-lady-and-the-painter.json @@ -0,0 +1,8 @@ +{ + "slug": "adam-wolfe-episode-3-lady-and-the-painter", + "name": "Adam Wolfe: Episode 3 - Lady and the Painter", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127326432" + ] +} diff --git a/data/game/ad/adam-wolfe-episode-4-zero-hour.json b/data/game/ad/adam-wolfe-episode-4-zero-hour.json new file mode 100644 index 000000000000..87f8248fbb66 --- /dev/null +++ b/data/game/ad/adam-wolfe-episode-4-zero-hour.json @@ -0,0 +1,8 @@ +{ + "slug": "adam-wolfe-episode-4-zero-hour", + "name": "Adam Wolfe: Episode 4 - Zero Hour", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127326510" + ] +} diff --git a/data/game/ad/adk-tamashii.json b/data/game/ad/adk-tamashii.json new file mode 100644 index 000000000000..c6767996588c --- /dev/null +++ b/data/game/ad/adk-tamashii.json @@ -0,0 +1,15 @@ +{ + "slug": "adk-tamashii", + "name": "ADK Tamashii", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4651139" + ], + "release_date": "2008-12-18", + "platforms": [ + "PlayStation 4" + ], + "publishers": [ + "SNK" + ] +} diff --git a/data/game/ad/adoom.json b/data/game/ad/adoom.json new file mode 100644 index 000000000000..d1cd29b8ea5d --- /dev/null +++ b/data/game/ad/adoom.json @@ -0,0 +1,11 @@ +{ + "slug": "adoom", + "name": "ADoom", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124473038" + ], + "platforms": [ + "Commodore Amiga" + ] +} diff --git a/data/game/ad/adopt-me.json b/data/game/ad/adopt-me.json new file mode 100644 index 000000000000..e0be9e58b42e --- /dev/null +++ b/data/game/ad/adopt-me.json @@ -0,0 +1,14 @@ +{ + "slug": "adopt-me", + "name": "Adopt Me!", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q98078995" + ], + "release_date": "2017-01-01", + "platforms": [ + "iOS", + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/game/ad/advance-wars-1-2-re-boot-camp.json b/data/game/ad/advance-wars-1-2-re-boot-camp.json new file mode 100644 index 000000000000..08190212802e --- /dev/null +++ b/data/game/ad/advance-wars-1-2-re-boot-camp.json @@ -0,0 +1,19 @@ +{ + "slug": "advance-wars-1-2-re-boot-camp", + "name": "Advance Wars 1+2: Re-Boot Camp", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108744830" + ], + "release_date": "2023-04-21", + "genres": [ + "role-playing video game", + "turn-based strategy video game" + ], + "developers": [ + "WayForward Technologies" + ], + "publishers": [ + "Nintendo" + ] +} diff --git a/data/game/af/affairs-of-the-court-choice-of-romance-a-life-mage-child.json b/data/game/af/affairs-of-the-court-choice-of-romance-a-life-mage-child.json new file mode 100644 index 000000000000..fdf756e8d42c --- /dev/null +++ b/data/game/af/affairs-of-the-court-choice-of-romance-a-life-mage-child.json @@ -0,0 +1,19 @@ +{ + "slug": "affairs-of-the-court-choice-of-romance-a-life-mage-child", + "name": "Affairs of the Court: Choice of Romance - A Life Mage Child", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115016138" + ], + "release_date": "2013-08-16", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Choice of Games" + ], + "publishers": [ + "Choice of Games" + ] +} diff --git a/data/game/af/affairs-of-the-court-choice-of-romance-death-to-the-princess.json b/data/game/af/affairs-of-the-court-choice-of-romance-death-to-the-princess.json new file mode 100644 index 000000000000..e565af9952db --- /dev/null +++ b/data/game/af/affairs-of-the-court-choice-of-romance-death-to-the-princess.json @@ -0,0 +1,19 @@ +{ + "slug": "affairs-of-the-court-choice-of-romance-death-to-the-princess", + "name": "Affairs of the Court: Choice of Romance - Death to the Princess", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115016144" + ], + "release_date": "2013-08-16", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Choice of Games" + ], + "publishers": [ + "Choice of Games" + ] +} diff --git a/data/game/af/affairs-of-the-court-choice-of-romance-play-as-the-consort.json b/data/game/af/affairs-of-the-court-choice-of-romance-play-as-the-consort.json new file mode 100644 index 000000000000..c9ad515afa4d --- /dev/null +++ b/data/game/af/affairs-of-the-court-choice-of-romance-play-as-the-consort.json @@ -0,0 +1,19 @@ +{ + "slug": "affairs-of-the-court-choice-of-romance-play-as-the-consort", + "name": "Affairs of the Court: Choice of Romance - Play as the Consort", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115016132" + ], + "release_date": "2013-08-16", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Choice of Games" + ], + "publishers": [ + "Choice of Games" + ] +} diff --git a/data/game/af/afterlife-empire-demo.json b/data/game/af/afterlife-empire-demo.json new file mode 100644 index 000000000000..d8de95415caa --- /dev/null +++ b/data/game/af/afterlife-empire-demo.json @@ -0,0 +1,22 @@ +{ + "slug": "afterlife-empire-demo", + "name": "Afterlife Empire Demo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107290920" + ], + "release_date": "2015-08-21", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "casual game", + "strategy game", + "business simulation game" + ], + "developers": [ + "Game Nation", + "Autobótika" + ] +} diff --git a/data/game/ag/agartha-q2826430.json b/data/game/ag/agartha-q2826430.json new file mode 100644 index 000000000000..685d0745e085 --- /dev/null +++ b/data/game/ag/agartha-q2826430.json @@ -0,0 +1,15 @@ +{ + "slug": "agartha-q2826430", + "name": "Agartha", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2826430" + ], + "genres": [ + "action-adventure game", + "survival horror" + ], + "publishers": [ + "Sega" + ] +} diff --git a/data/game/ag/age-of-adventure.json b/data/game/ag/age-of-adventure.json new file mode 100644 index 000000000000..610bfb06d9d7 --- /dev/null +++ b/data/game/ag/age-of-adventure.json @@ -0,0 +1,17 @@ +{ + "slug": "age-of-adventure", + "name": "Age of Adventure", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q114903071" + ], + "release_date": "1986-08-01", + "platforms": [ + "Atari 8-bit family", + "Apple II series", + "Commodore 64" + ], + "publishers": [ + "Electronic Arts" + ] +} diff --git a/data/game/ag/age-of-chivalry.json b/data/game/ag/age-of-chivalry.json new file mode 100644 index 000000000000..32508c44800a --- /dev/null +++ b/data/game/ag/age-of-chivalry.json @@ -0,0 +1,15 @@ +{ + "slug": "age-of-chivalry", + "name": "Age of Chivalry", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2566060" + ], + "release_date": "2007-09-10", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter" + ] +} diff --git a/data/game/ag/age-of-conan-rise-of-the-godslayer.json b/data/game/ag/age-of-conan-rise-of-the-godslayer.json new file mode 100644 index 000000000000..308afecdb114 --- /dev/null +++ b/data/game/ag/age-of-conan-rise-of-the-godslayer.json @@ -0,0 +1,18 @@ +{ + "slug": "age-of-conan-rise-of-the-godslayer", + "name": "Age of Conan: Rise of the Godslayer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4691871" + ], + "release_date": "2010-05-11", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "massively multiplayer online role-playing game" + ], + "developers": [ + "Funcom" + ] +} diff --git a/data/game/ag/age-of-discovery-q57973944.json b/data/game/ag/age-of-discovery-q57973944.json new file mode 100644 index 000000000000..a234c14e045a --- /dev/null +++ b/data/game/ag/age-of-discovery-q57973944.json @@ -0,0 +1,9 @@ +{ + "slug": "age-of-discovery-q57973944", + "name": "Age of Discovery", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q57973944" + ], + "release_date": "2018-09-09" +} diff --git a/data/game/ag/age-of-empires-gold-edition.json b/data/game/ag/age-of-empires-gold-edition.json new file mode 100644 index 000000000000..c09cbe0b6891 --- /dev/null +++ b/data/game/ag/age-of-empires-gold-edition.json @@ -0,0 +1,8 @@ +{ + "slug": "age-of-empires-gold-edition", + "name": "Age of Empires: Gold Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121888919" + ] +} diff --git a/data/game/ag/age-of-empires-ii-definitive-edition-dawn-of-the-dukes.json b/data/game/ag/age-of-empires-ii-definitive-edition-dawn-of-the-dukes.json new file mode 100644 index 000000000000..b227e2effc32 --- /dev/null +++ b/data/game/ag/age-of-empires-ii-definitive-edition-dawn-of-the-dukes.json @@ -0,0 +1,23 @@ +{ + "slug": "age-of-empires-ii-definitive-edition-dawn-of-the-dukes", + "name": "Age of Empires II: Definitive Edition – Dawn of the Dukes", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107300310" + ], + "release_date": "2021-08-10", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "real-time strategy" + ], + "developers": [ + "Forgotten Empires", + "Wicked Witch Software", + "Tantalus Media" + ], + "publishers": [ + "Xbox Game Studios" + ] +} diff --git a/data/game/ag/age-of-empires-ii-definitive-edition-dynasties-of-india.json b/data/game/ag/age-of-empires-ii-definitive-edition-dynasties-of-india.json new file mode 100644 index 000000000000..3d04d346b5d2 --- /dev/null +++ b/data/game/ag/age-of-empires-ii-definitive-edition-dynasties-of-india.json @@ -0,0 +1,23 @@ +{ + "slug": "age-of-empires-ii-definitive-edition-dynasties-of-india", + "name": "Age of Empires II: Definitive Edition – Dynasties Of India", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111605710" + ], + "release_date": "2022-04-28", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "real-time strategy" + ], + "developers": [ + "Forgotten Empires", + "Wicked Witch Software", + "Tantalus Media" + ], + "publishers": [ + "Xbox Game Studios" + ] +} diff --git a/data/game/ag/age-of-empires-ii-definitive-edition-lords-of-the-west.json b/data/game/ag/age-of-empires-ii-definitive-edition-lords-of-the-west.json new file mode 100644 index 000000000000..1c644f9e00b3 --- /dev/null +++ b/data/game/ag/age-of-empires-ii-definitive-edition-lords-of-the-west.json @@ -0,0 +1,23 @@ +{ + "slug": "age-of-empires-ii-definitive-edition-lords-of-the-west", + "name": "Age of Empires II: Definitive Edition - Lords of the West", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q104211860" + ], + "release_date": "2021-01-26", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "real-time strategy" + ], + "developers": [ + "Forgotten Empires", + "Wicked Witch Software", + "Tantalus Media" + ], + "publishers": [ + "Xbox Game Studios" + ] +} diff --git a/data/game/ag/age-of-empires-ii-definitive-edition-return-of-rome.json b/data/game/ag/age-of-empires-ii-definitive-edition-return-of-rome.json new file mode 100644 index 000000000000..4710b407fa36 --- /dev/null +++ b/data/game/ag/age-of-empires-ii-definitive-edition-return-of-rome.json @@ -0,0 +1,23 @@ +{ + "slug": "age-of-empires-ii-definitive-edition-return-of-rome", + "name": "Age of Empires II: Definitive Edition - Return of Rome", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q114869986" + ], + "release_date": "2023-05-16", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "real-time strategy" + ], + "developers": [ + "Wicked Witch Software", + "Tantalus Media", + "Forgotten Empires" + ], + "publishers": [ + "Xbox Game Studios" + ] +} diff --git a/data/game/ag/age-of-empires-ii-definitive-edition-the-mountain-royals.json b/data/game/ag/age-of-empires-ii-definitive-edition-the-mountain-royals.json new file mode 100644 index 000000000000..bab8a741fe10 --- /dev/null +++ b/data/game/ag/age-of-empires-ii-definitive-edition-the-mountain-royals.json @@ -0,0 +1,25 @@ +{ + "slug": "age-of-empires-ii-definitive-edition-the-mountain-royals", + "name": "Age of Empires II: Definitive Edition – The Mountain Royals", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123120502" + ], + "release_date": "2023-10-31", + "platforms": [ + "Xbox Series X and Series S", + "Microsoft Windows" + ], + "genres": [ + "real-time strategy" + ], + "developers": [ + "Forgotten Empires", + "Wicked Witch Software", + "Tantalus Media", + "World's Edge" + ], + "publishers": [ + "Xbox Game Studios" + ] +} diff --git a/data/game/ag/age-of-empires-ii-definitive-edition-victors-and-vanquished.json b/data/game/ag/age-of-empires-ii-definitive-edition-victors-and-vanquished.json new file mode 100644 index 000000000000..75ed0d930bd0 --- /dev/null +++ b/data/game/ag/age-of-empires-ii-definitive-edition-victors-and-vanquished.json @@ -0,0 +1,8 @@ +{ + "slug": "age-of-empires-ii-definitive-edition-victors-and-vanquished", + "name": "Age of Empires II: Definitive Edition - Victors and Vanquished", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140447743" + ] +} diff --git a/data/game/ag/age-of-empires-ii-hd-rise-of-the-rajas.json b/data/game/ag/age-of-empires-ii-hd-rise-of-the-rajas.json new file mode 100644 index 000000000000..38ff39a261b0 --- /dev/null +++ b/data/game/ag/age-of-empires-ii-hd-rise-of-the-rajas.json @@ -0,0 +1,23 @@ +{ + "slug": "age-of-empires-ii-hd-rise-of-the-rajas", + "name": "Age of Empires II HD: Rise of the Rajas", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28036752" + ], + "release_date": "2016-12-19", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "real-time strategy", + "strategy video game" + ], + "developers": [ + "Forgotten Empires", + "SkyBox Labs" + ], + "publishers": [ + "Xbox Game Studios" + ] +} diff --git a/data/game/ag/age-of-empires-ii-hd-the-african-kingdoms.json b/data/game/ag/age-of-empires-ii-hd-the-african-kingdoms.json new file mode 100644 index 000000000000..cf4cf6faa94f --- /dev/null +++ b/data/game/ag/age-of-empires-ii-hd-the-african-kingdoms.json @@ -0,0 +1,23 @@ +{ + "slug": "age-of-empires-ii-hd-the-african-kingdoms", + "name": "Age of Empires II HD: The African Kingdoms", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q21059471" + ], + "release_date": "2015-11-05", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "real-time strategy", + "strategy video game" + ], + "developers": [ + "Forgotten Empires", + "SkyBox Labs" + ], + "publishers": [ + "Xbox Game Studios" + ] +} diff --git a/data/game/ag/age-of-empires-ii-hd-the-forgotten.json b/data/game/ag/age-of-empires-ii-hd-the-forgotten.json new file mode 100644 index 000000000000..77905fb37e50 --- /dev/null +++ b/data/game/ag/age-of-empires-ii-hd-the-forgotten.json @@ -0,0 +1,22 @@ +{ + "slug": "age-of-empires-ii-hd-the-forgotten", + "name": "Age of Empires II HD: The Forgotten", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q12813511" + ], + "release_date": "2013-11-07", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "real-time strategy" + ], + "developers": [ + "Forgotten Empires", + "SkyBox Labs" + ], + "publishers": [ + "Xbox Game Studios" + ] +} diff --git a/data/game/ag/age-of-empires-ii-the-american-world.json b/data/game/ag/age-of-empires-ii-the-american-world.json new file mode 100644 index 000000000000..add594479977 --- /dev/null +++ b/data/game/ag/age-of-empires-ii-the-american-world.json @@ -0,0 +1,15 @@ +{ + "slug": "age-of-empires-ii-the-american-world", + "name": "Age of Empires II: The American World", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q61959776" + ], + "release_date": "2019-02-11", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "strategy video game" + ] +} diff --git a/data/game/ag/age-of-empires-ii-the-conquerors.json b/data/game/ag/age-of-empires-ii-the-conquerors.json new file mode 100644 index 000000000000..f4d622686e48 --- /dev/null +++ b/data/game/ag/age-of-empires-ii-the-conquerors.json @@ -0,0 +1,19 @@ +{ + "slug": "age-of-empires-ii-the-conquerors", + "name": "Age of Empires II: The Conquerors", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q615499" + ], + "release_date": "2000-08-24", + "platforms": [ + "Classic Mac OS", + "Microsoft Windows" + ], + "genres": [ + "real-time strategy" + ], + "publishers": [ + "Xbox Game Studios" + ] +} diff --git a/data/game/ag/age-of-empires-iii-definitive-edition-knights-of-the-mediterranean.json b/data/game/ag/age-of-empires-iii-definitive-edition-knights-of-the-mediterranean.json new file mode 100644 index 000000000000..2620e0b78378 --- /dev/null +++ b/data/game/ag/age-of-empires-iii-definitive-edition-knights-of-the-mediterranean.json @@ -0,0 +1,22 @@ +{ + "slug": "age-of-empires-iii-definitive-edition-knights-of-the-mediterranean", + "name": "Age of Empires III: Definitive Edition - Knights of the Mediterranean", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111977368" + ], + "release_date": "2022-05-26", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "real-time strategy" + ], + "developers": [ + "Forgotten Empires", + "Tantalus Media" + ], + "publishers": [ + "Xbox Game Studios" + ] +} diff --git a/data/game/ag/age-of-empires-iii-definitive-edition-mexico-civilization.json b/data/game/ag/age-of-empires-iii-definitive-edition-mexico-civilization.json new file mode 100644 index 000000000000..9051f2762f37 --- /dev/null +++ b/data/game/ag/age-of-empires-iii-definitive-edition-mexico-civilization.json @@ -0,0 +1,22 @@ +{ + "slug": "age-of-empires-iii-definitive-edition-mexico-civilization", + "name": "Age of Empires III: Definitive Edition - Mexico Civilization", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109678047" + ], + "release_date": "2021-12-01", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "real-time strategy" + ], + "developers": [ + "Forgotten Empires", + "Tantalus Media" + ], + "publishers": [ + "Xbox Game Studios" + ] +} diff --git a/data/game/ag/age-of-empires-iii-definitive-edition-the-african-royals.json b/data/game/ag/age-of-empires-iii-definitive-edition-the-african-royals.json new file mode 100644 index 000000000000..aee5ea0cdbf4 --- /dev/null +++ b/data/game/ag/age-of-empires-iii-definitive-edition-the-african-royals.json @@ -0,0 +1,22 @@ +{ + "slug": "age-of-empires-iii-definitive-edition-the-african-royals", + "name": "Age of Empires III: Definitive Edition - The African Royals", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107655581" + ], + "release_date": "2021-08-02", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "real-time strategy" + ], + "developers": [ + "Forgotten Empires", + "Tantalus Media" + ], + "publishers": [ + "Xbox Game Studios" + ] +} diff --git a/data/game/ag/age-of-empires-iii-definitive-edition-united-states-civilization.json b/data/game/ag/age-of-empires-iii-definitive-edition-united-states-civilization.json new file mode 100644 index 000000000000..35636f755000 --- /dev/null +++ b/data/game/ag/age-of-empires-iii-definitive-edition-united-states-civilization.json @@ -0,0 +1,22 @@ +{ + "slug": "age-of-empires-iii-definitive-edition-united-states-civilization", + "name": "Age of Empires III: Definitive Edition - United States Civilization", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106695023" + ], + "release_date": "2021-04-13", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "real-time strategy" + ], + "developers": [ + "Forgotten Empires", + "Tantalus Media" + ], + "publishers": [ + "Xbox Game Studios" + ] +} diff --git a/data/game/ag/age-of-empires-iii-gold-edition.json b/data/game/ag/age-of-empires-iii-gold-edition.json new file mode 100644 index 000000000000..6dfd59b65b35 --- /dev/null +++ b/data/game/ag/age-of-empires-iii-gold-edition.json @@ -0,0 +1,8 @@ +{ + "slug": "age-of-empires-iii-gold-edition", + "name": "Age of Empires III: Gold Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121888953" + ] +} diff --git a/data/game/ag/age-of-empires-iii-the-asian-dynasties.json b/data/game/ag/age-of-empires-iii-the-asian-dynasties.json new file mode 100644 index 000000000000..d18cb99ca5f3 --- /dev/null +++ b/data/game/ag/age-of-empires-iii-the-asian-dynasties.json @@ -0,0 +1,19 @@ +{ + "slug": "age-of-empires-iii-the-asian-dynasties", + "name": "Age of Empires III: The Asian Dynasties", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q862462" + ], + "release_date": "2007-10-23", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "real-time strategy" + ], + "publishers": [ + "Xbox Game Studios" + ] +} diff --git a/data/game/ag/age-of-empires-iii-the-warchiefs.json b/data/game/ag/age-of-empires-iii-the-warchiefs.json new file mode 100644 index 000000000000..ce577e0df53b --- /dev/null +++ b/data/game/ag/age-of-empires-iii-the-warchiefs.json @@ -0,0 +1,19 @@ +{ + "slug": "age-of-empires-iii-the-warchiefs", + "name": "Age of Empires III: The WarChiefs", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q853074" + ], + "release_date": "2006-10-17", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "real-time strategy" + ], + "publishers": [ + "Xbox Game Studios" + ] +} diff --git a/data/game/ag/age-of-empires-iv-the-sultans-ascend.json b/data/game/ag/age-of-empires-iv-the-sultans-ascend.json new file mode 100644 index 000000000000..249c65b642f2 --- /dev/null +++ b/data/game/ag/age-of-empires-iv-the-sultans-ascend.json @@ -0,0 +1,22 @@ +{ + "slug": "age-of-empires-iv-the-sultans-ascend", + "name": "Age of Empires IV: The Sultans Ascend", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123466979" + ], + "release_date": "2023-11-14", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "real-time strategy" + ], + "developers": [ + "Forgotten Empires", + "World's Edge" + ], + "publishers": [ + "Xbox Game Studios" + ] +} diff --git a/data/game/ag/age-of-empires-the-rise-of-rome.json b/data/game/ag/age-of-empires-the-rise-of-rome.json new file mode 100644 index 000000000000..8cb4423c7241 --- /dev/null +++ b/data/game/ag/age-of-empires-the-rise-of-rome.json @@ -0,0 +1,18 @@ +{ + "slug": "age-of-empires-the-rise-of-rome", + "name": "Age of Empires: The Rise of Rome", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q515876" + ], + "release_date": "1998-10-31", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "real-time strategy" + ], + "publishers": [ + "Xbox Game Studios" + ] +} diff --git a/data/game/ag/age-of-mythology-retold-beta.json b/data/game/ag/age-of-mythology-retold-beta.json new file mode 100644 index 000000000000..8eeaf3437943 --- /dev/null +++ b/data/game/ag/age-of-mythology-retold-beta.json @@ -0,0 +1,14 @@ +{ + "slug": "age-of-mythology-retold-beta", + "name": "Age of Mythology: Retold (Beta)", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127414937" + ], + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "real-time strategy" + ] +} diff --git a/data/game/ag/age-of-mythology-retold-heavenly-spear.json b/data/game/ag/age-of-mythology-retold-heavenly-spear.json new file mode 100644 index 000000000000..f23c2d23e3f3 --- /dev/null +++ b/data/game/ag/age-of-mythology-retold-heavenly-spear.json @@ -0,0 +1,12 @@ +{ + "slug": "age-of-mythology-retold-heavenly-spear", + "name": "Age of Mythology: Retold – Heavenly Spear", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134785302" + ], + "release_date": "2025-09-30", + "platforms": [ + "Microsoft Windows" + ] +} diff --git a/data/game/ag/age-of-mythology-retold-immortal-pillars.json b/data/game/ag/age-of-mythology-retold-immortal-pillars.json new file mode 100644 index 000000000000..768453d23957 --- /dev/null +++ b/data/game/ag/age-of-mythology-retold-immortal-pillars.json @@ -0,0 +1,17 @@ +{ + "slug": "age-of-mythology-retold-immortal-pillars", + "name": "Age of Mythology: Retold - Immortal Pillars", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130373740" + ], + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "real-time strategy" + ], + "developers": [ + "World's Edge" + ] +} diff --git a/data/game/ag/age-of-mythology-tale-of-the-dragon.json b/data/game/ag/age-of-mythology-tale-of-the-dragon.json new file mode 100644 index 000000000000..fe980e4d9ffa --- /dev/null +++ b/data/game/ag/age-of-mythology-tale-of-the-dragon.json @@ -0,0 +1,23 @@ +{ + "slug": "age-of-mythology-tale-of-the-dragon", + "name": "Age of Mythology: Tale of the Dragon", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q21059469" + ], + "release_date": "2016-01-28", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "real-time strategy", + "strategy video game" + ], + "developers": [ + "Forgotten Empires", + "SkyBox Labs" + ], + "publishers": [ + "Xbox Game Studios" + ] +} diff --git a/data/game/ag/age-of-mythology-the-titans.json b/data/game/ag/age-of-mythology-the-titans.json new file mode 100644 index 000000000000..1248fa949578 --- /dev/null +++ b/data/game/ag/age-of-mythology-the-titans.json @@ -0,0 +1,18 @@ +{ + "slug": "age-of-mythology-the-titans", + "name": "Age of Mythology: The Titans", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1044761" + ], + "release_date": "2003-09-30", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "real-time strategy" + ], + "publishers": [ + "Xbox Game Studios" + ] +} diff --git a/data/game/ag/age-of-pirates-dead-man-s-chest.json b/data/game/ag/age-of-pirates-dead-man-s-chest.json new file mode 100644 index 000000000000..90cebbeca1a2 --- /dev/null +++ b/data/game/ag/age-of-pirates-dead-man-s-chest.json @@ -0,0 +1,21 @@ +{ + "slug": "age-of-pirates-dead-man-s-chest", + "name": "Age of Pirates: Dead Man's Chest", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110703847" + ], + "release_date": "2007-09-21", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "role-playing video game" + ], + "developers": [ + "Akella" + ], + "publishers": [ + "Akella" + ] +} diff --git a/data/game/ag/age-of-wonders-4-eldritch-realms.json b/data/game/ag/age-of-wonders-4-eldritch-realms.json new file mode 100644 index 000000000000..5e6394a5f7d9 --- /dev/null +++ b/data/game/ag/age-of-wonders-4-eldritch-realms.json @@ -0,0 +1,8 @@ +{ + "slug": "age-of-wonders-4-eldritch-realms", + "name": "Age of Wonders 4: Eldritch Realms", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140447175" + ] +} diff --git a/data/game/ag/age-of-wonders-4-premium-edition.json b/data/game/ag/age-of-wonders-4-premium-edition.json new file mode 100644 index 000000000000..efaad2efe748 --- /dev/null +++ b/data/game/ag/age-of-wonders-4-premium-edition.json @@ -0,0 +1,18 @@ +{ + "slug": "age-of-wonders-4-premium-edition", + "name": "Age of Wonders 4: Premium Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123300188" + ], + "release_date": "2023-05-02", + "platforms": [ + "Xbox Series X and Series S" + ], + "developers": [ + "Triumph Studios" + ], + "publishers": [ + "Paradox Interactive" + ] +} diff --git a/data/game/ag/age-of-wonders-iii-deluxe-edition.json b/data/game/ag/age-of-wonders-iii-deluxe-edition.json new file mode 100644 index 000000000000..a34536b4c101 --- /dev/null +++ b/data/game/ag/age-of-wonders-iii-deluxe-edition.json @@ -0,0 +1,8 @@ +{ + "slug": "age-of-wonders-iii-deluxe-edition", + "name": "Age of Wonders III (Deluxe Edition)", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q59010403" + ] +} diff --git a/data/game/ag/age-of-wonders-iii-eternal-lords.json b/data/game/ag/age-of-wonders-iii-eternal-lords.json new file mode 100644 index 000000000000..44173b62d0ac --- /dev/null +++ b/data/game/ag/age-of-wonders-iii-eternal-lords.json @@ -0,0 +1,8 @@ +{ + "slug": "age-of-wonders-iii-eternal-lords", + "name": "Age of Wonders III: Eternal Lords", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140447869" + ] +} diff --git a/data/game/ag/age-of-wonders-iii-golden-realms.json b/data/game/ag/age-of-wonders-iii-golden-realms.json new file mode 100644 index 000000000000..1f0b6cd4f974 --- /dev/null +++ b/data/game/ag/age-of-wonders-iii-golden-realms.json @@ -0,0 +1,13 @@ +{ + "slug": "age-of-wonders-iii-golden-realms", + "name": "Age of Wonders III - Golden Realms", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127414055" + ], + "release_date": "2014-09-18", + "platforms": [ + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/game/ag/age-of-wonders-planetfall-invasions.json b/data/game/ag/age-of-wonders-planetfall-invasions.json new file mode 100644 index 000000000000..fae66507ed58 --- /dev/null +++ b/data/game/ag/age-of-wonders-planetfall-invasions.json @@ -0,0 +1,19 @@ +{ + "slug": "age-of-wonders-planetfall-invasions", + "name": "Age Of Wonders: Planetfall - Invasions", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127414091" + ], + "release_date": "2020-05-26", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Triumph Studios" + ], + "publishers": [ + "Paradox Interactive" + ] +} diff --git a/data/game/ag/age-of-wonders-planetfall-revelations.json b/data/game/ag/age-of-wonders-planetfall-revelations.json new file mode 100644 index 000000000000..8b4d9b11a3bd --- /dev/null +++ b/data/game/ag/age-of-wonders-planetfall-revelations.json @@ -0,0 +1,19 @@ +{ + "slug": "age-of-wonders-planetfall-revelations", + "name": "Age Of Wonders: Planetfall - Revelations", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127414116" + ], + "release_date": "2019-11-19", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Triumph Studios" + ], + "publishers": [ + "Paradox Interactive" + ] +} diff --git a/data/game/ag/age-of-wonders-planetfall-star-kings.json b/data/game/ag/age-of-wonders-planetfall-star-kings.json new file mode 100644 index 000000000000..e1ec597a3be4 --- /dev/null +++ b/data/game/ag/age-of-wonders-planetfall-star-kings.json @@ -0,0 +1,19 @@ +{ + "slug": "age-of-wonders-planetfall-star-kings", + "name": "Age Of Wonders: Planetfall - Star Kings", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127414125" + ], + "release_date": "2020-11-10", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Triumph Studios" + ], + "publishers": [ + "Paradox Interactive" + ] +} diff --git a/data/game/ag/agent.json b/data/game/ag/agent.json new file mode 100644 index 000000000000..08e06caa6c30 --- /dev/null +++ b/data/game/ag/agent.json @@ -0,0 +1,14 @@ +{ + "slug": "agent", + "name": "Agent", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2661073" + ], + "platforms": [ + "PlayStation 3" + ], + "genres": [ + "action game" + ] +} diff --git a/data/game/ag/agents-of-yesterday-artifacts.json b/data/game/ag/agents-of-yesterday-artifacts.json new file mode 100644 index 000000000000..3f8fbb7fba99 --- /dev/null +++ b/data/game/ag/agents-of-yesterday-artifacts.json @@ -0,0 +1,9 @@ +{ + "slug": "agents-of-yesterday-artifacts", + "name": "Agents Of Yesterday: Artifacts", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q57973880" + ], + "release_date": "2016-09-25" +} diff --git a/data/game/ag/agents-of-yesterday.json b/data/game/ag/agents-of-yesterday.json new file mode 100644 index 000000000000..e97c3a5a38e0 --- /dev/null +++ b/data/game/ag/agents-of-yesterday.json @@ -0,0 +1,9 @@ +{ + "slug": "agents-of-yesterday", + "name": "Agents Of Yesterday", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q57973879" + ], + "release_date": "2016-08-06" +} diff --git a/data/game/ag/agony-unrated.json b/data/game/ag/agony-unrated.json new file mode 100644 index 000000000000..2dc7f9da3294 --- /dev/null +++ b/data/game/ag/agony-unrated.json @@ -0,0 +1,21 @@ +{ + "slug": "agony-unrated", + "name": "Agony Unrated", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105704604" + ], + "release_date": "2018-10-30", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "survival horror" + ], + "developers": [ + "Madmind Studio" + ], + "publishers": [ + "Madmind Studio" + ] +} diff --git a/data/game/ai/ai-war-vengeance-of-the-machine.json b/data/game/ai/ai-war-vengeance-of-the-machine.json new file mode 100644 index 000000000000..2e659bfc015a --- /dev/null +++ b/data/game/ai/ai-war-vengeance-of-the-machine.json @@ -0,0 +1,8 @@ +{ + "slug": "ai-war-vengeance-of-the-machine", + "name": "AI War: Vengeance of the Machine", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140469851" + ] +} diff --git a/data/game/ai/aion-assault-on-balaurea.json b/data/game/ai/aion-assault-on-balaurea.json new file mode 100644 index 000000000000..c51e9fd2011e --- /dev/null +++ b/data/game/ai/aion-assault-on-balaurea.json @@ -0,0 +1,21 @@ +{ + "slug": "aion-assault-on-balaurea", + "name": "Aion: Assault on Balaurea", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110817075" + ], + "release_date": "2010-09-07", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "massively multiplayer online role-playing game" + ], + "developers": [ + "NC" + ], + "publishers": [ + "NC" + ] +} diff --git a/data/game/ai/air-sea-supremacy-q118005685.json b/data/game/ai/air-sea-supremacy-q118005685.json new file mode 100644 index 000000000000..1d0f75b82d18 --- /dev/null +++ b/data/game/ai/air-sea-supremacy-q118005685.json @@ -0,0 +1,8 @@ +{ + "slug": "air-sea-supremacy-q118005685", + "name": "Air/Sea Supremacy", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118005685" + ] +} diff --git a/data/game/ai/airline-tycoon-2-falcon-airlines.json b/data/game/ai/airline-tycoon-2-falcon-airlines.json new file mode 100644 index 000000000000..e84135b67bff --- /dev/null +++ b/data/game/ai/airline-tycoon-2-falcon-airlines.json @@ -0,0 +1,18 @@ +{ + "slug": "airline-tycoon-2-falcon-airlines", + "name": "Airline Tycoon 2: Falcon Airlines", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111621347" + ], + "release_date": "2012-06-13", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "B-Alive GmbH" + ], + "publishers": [ + "Kalypso Media" + ] +} diff --git a/data/game/ai/airline-tycoon-2-gold-edition.json b/data/game/ai/airline-tycoon-2-gold-edition.json new file mode 100644 index 000000000000..8afcf46f02d9 --- /dev/null +++ b/data/game/ai/airline-tycoon-2-gold-edition.json @@ -0,0 +1,11 @@ +{ + "slug": "airline-tycoon-2-gold-edition", + "name": "Airline Tycoon 2: Gold Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121889035" + ], + "publishers": [ + "Kalypso Media" + ] +} diff --git a/data/game/ai/airline-tycoon-2-honey-airlines.json b/data/game/ai/airline-tycoon-2-honey-airlines.json new file mode 100644 index 000000000000..e7d3e642a797 --- /dev/null +++ b/data/game/ai/airline-tycoon-2-honey-airlines.json @@ -0,0 +1,18 @@ +{ + "slug": "airline-tycoon-2-honey-airlines", + "name": "Airline Tycoon 2: Honey Airlines", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111621373" + ], + "release_date": "2012-04-19", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "B-Alive GmbH" + ], + "publishers": [ + "Kalypso Media" + ] +} diff --git a/data/game/ai/airline-tycoon-deluxe.json b/data/game/ai/airline-tycoon-deluxe.json new file mode 100644 index 000000000000..58154c5a823b --- /dev/null +++ b/data/game/ai/airline-tycoon-deluxe.json @@ -0,0 +1,17 @@ +{ + "slug": "airline-tycoon-deluxe", + "name": "Airline Tycoon Deluxe", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122152775" + ], + "release_date": "1998-08-01", + "platforms": [ + "Classic Mac OS", + "macOS", + "Microsoft Windows" + ], + "genres": [ + "business simulation game" + ] +} diff --git a/data/game/ai/airline-tycoon-first-class.json b/data/game/ai/airline-tycoon-first-class.json new file mode 100644 index 000000000000..d32c14c798e3 --- /dev/null +++ b/data/game/ai/airline-tycoon-first-class.json @@ -0,0 +1,11 @@ +{ + "slug": "airline-tycoon-first-class", + "name": "Airline Tycoon: First Class", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126372090" + ], + "genres": [ + "business simulation game" + ] +} diff --git a/data/game/ai/airwaysim.json b/data/game/ai/airwaysim.json new file mode 100644 index 000000000000..bcd3de624dd3 --- /dev/null +++ b/data/game/ai/airwaysim.json @@ -0,0 +1,12 @@ +{ + "slug": "airwaysim", + "name": "AirwaySim", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q12300763" + ], + "release_date": "2006-01-01", + "genres": [ + "business simulation game" + ] +} diff --git a/data/game/ak/akka-arrh-q117826663.json b/data/game/ak/akka-arrh-q117826663.json new file mode 100644 index 000000000000..8ee3906a1f5d --- /dev/null +++ b/data/game/ak/akka-arrh-q117826663.json @@ -0,0 +1,11 @@ +{ + "slug": "akka-arrh-q117826663", + "name": "Akka Arrh", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117826663" + ], + "publishers": [ + "Atari, Inc." + ] +} diff --git a/data/game/al/alan-wake-ii-night-springs.json b/data/game/al/alan-wake-ii-night-springs.json new file mode 100644 index 000000000000..e71a27ed9019 --- /dev/null +++ b/data/game/al/alan-wake-ii-night-springs.json @@ -0,0 +1,20 @@ +{ + "slug": "alan-wake-ii-night-springs", + "name": "Alan Wake II: Night Springs", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126410039" + ], + "release_date": "2024-06-08", + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 5", + "Microsoft Windows" + ], + "genres": [ + "survival horror" + ], + "publishers": [ + "Epic Games" + ] +} diff --git a/data/game/al/alan-wake-ii-the-lake-house.json b/data/game/al/alan-wake-ii-the-lake-house.json new file mode 100644 index 000000000000..7ed04a68b3a1 --- /dev/null +++ b/data/game/al/alan-wake-ii-the-lake-house.json @@ -0,0 +1,21 @@ +{ + "slug": "alan-wake-ii-the-lake-house", + "name": "Alan Wake II: The Lake House", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126414466" + ], + "release_date": "2024-10-01", + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 5", + "Microsoft Windows" + ], + "genres": [ + "survival horror", + "third-person shooter" + ], + "publishers": [ + "Epic Games" + ] +} diff --git a/data/game/al/alan-wake-the-signal.json b/data/game/al/alan-wake-the-signal.json new file mode 100644 index 000000000000..5f029023ff54 --- /dev/null +++ b/data/game/al/alan-wake-the-signal.json @@ -0,0 +1,8 @@ +{ + "slug": "alan-wake-the-signal", + "name": "Alan Wake: The Signal", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110160594" + ] +} diff --git a/data/game/al/alan-wake-the-writer.json b/data/game/al/alan-wake-the-writer.json new file mode 100644 index 000000000000..5df1bbc4d76c --- /dev/null +++ b/data/game/al/alan-wake-the-writer.json @@ -0,0 +1,8 @@ +{ + "slug": "alan-wake-the-writer", + "name": "Alan Wake: The Writer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110160601" + ] +} diff --git a/data/game/al/alea-jacta-est-cantabrian-wars.json b/data/game/al/alea-jacta-est-cantabrian-wars.json new file mode 100644 index 000000000000..6863586b22b5 --- /dev/null +++ b/data/game/al/alea-jacta-est-cantabrian-wars.json @@ -0,0 +1,8 @@ +{ + "slug": "alea-jacta-est-cantabrian-wars", + "name": "Alea Jacta Est: Cantabrian Wars", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140471215" + ] +} diff --git a/data/game/al/aleste-collection.json b/data/game/al/aleste-collection.json new file mode 100644 index 000000000000..70a5d5e67983 --- /dev/null +++ b/data/game/al/aleste-collection.json @@ -0,0 +1,21 @@ +{ + "slug": "aleste-collection", + "name": "Aleste Collection", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q99467153" + ], + "release_date": "2020-12-24", + "platforms": [ + "PlayStation 4" + ], + "genres": [ + "shooter game" + ], + "developers": [ + "M2" + ], + "publishers": [ + "M2" + ] +} diff --git a/data/game/al/alhambra.json b/data/game/al/alhambra.json new file mode 100644 index 000000000000..8b25193344cc --- /dev/null +++ b/data/game/al/alhambra.json @@ -0,0 +1,12 @@ +{ + "slug": "alhambra", + "name": "Alhambra", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4724431" + ], + "genres": [ + "turn-based strategy video game", + "board video game" + ] +} diff --git a/data/game/al/alice-asylum.json b/data/game/al/alice-asylum.json new file mode 100644 index 000000000000..2605562fc5bc --- /dev/null +++ b/data/game/al/alice-asylum.json @@ -0,0 +1,8 @@ +{ + "slug": "alice-asylum", + "name": "Alice: Asylum", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q75122536" + ] +} diff --git a/data/game/al/alien-breed-3d-non-playable-demo.json b/data/game/al/alien-breed-3d-non-playable-demo.json new file mode 100644 index 000000000000..bd188a6a8cc4 --- /dev/null +++ b/data/game/al/alien-breed-3d-non-playable-demo.json @@ -0,0 +1,8 @@ +{ + "slug": "alien-breed-3d-non-playable-demo", + "name": "Alien Breed 3D (Non-Playable Demo)", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126187776" + ] +} diff --git a/data/game/al/alien-breed-3d-playable-demo-1.json b/data/game/al/alien-breed-3d-playable-demo-1.json new file mode 100644 index 000000000000..7bc96b3369d0 --- /dev/null +++ b/data/game/al/alien-breed-3d-playable-demo-1.json @@ -0,0 +1,8 @@ +{ + "slug": "alien-breed-3d-playable-demo-1", + "name": "Alien Breed 3D (Playable Demo #1)", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126187777" + ] +} diff --git a/data/game/al/alien-breed-3d-playable-demo-2.json b/data/game/al/alien-breed-3d-playable-demo-2.json new file mode 100644 index 000000000000..caee84ce3ab5 --- /dev/null +++ b/data/game/al/alien-breed-3d-playable-demo-2.json @@ -0,0 +1,8 @@ +{ + "slug": "alien-breed-3d-playable-demo-2", + "name": "Alien Breed 3D (Playable Demo #2)", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126187778" + ] +} diff --git a/data/game/al/alien-breed-92-se-qwak.json b/data/game/al/alien-breed-92-se-qwak.json new file mode 100644 index 000000000000..2bd48a89a3ca --- /dev/null +++ b/data/game/al/alien-breed-92-se-qwak.json @@ -0,0 +1,8 @@ +{ + "slug": "alien-breed-92-se-qwak", + "name": "Alien Breed '92 SE & Qwak", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126185232" + ] +} diff --git a/data/game/al/alien-breed-evolution.json b/data/game/al/alien-breed-evolution.json new file mode 100644 index 000000000000..752bac89a9eb --- /dev/null +++ b/data/game/al/alien-breed-evolution.json @@ -0,0 +1,22 @@ +{ + "slug": "alien-breed-evolution", + "name": "Alien Breed Evolution", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3611755" + ], + "release_date": "2009-12-16", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "shoot 'em up", + "science fiction video game" + ], + "developers": [ + "Team17" + ], + "publishers": [ + "Team17" + ] +} diff --git a/data/game/al/alien-breed-trilogy.json b/data/game/al/alien-breed-trilogy.json new file mode 100644 index 000000000000..84c741d98b4e --- /dev/null +++ b/data/game/al/alien-breed-trilogy.json @@ -0,0 +1,19 @@ +{ + "slug": "alien-breed-trilogy", + "name": "Alien Breed Trilogy", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q132178901" + ], + "release_date": "2011-03-18", + "platforms": [ + "PlayStation 3", + "Microsoft Windows" + ], + "developers": [ + "Team17" + ], + "publishers": [ + "Team17" + ] +} diff --git a/data/game/al/alien-isolation-crew-expendable.json b/data/game/al/alien-isolation-crew-expendable.json new file mode 100644 index 000000000000..3d6ccc599904 --- /dev/null +++ b/data/game/al/alien-isolation-crew-expendable.json @@ -0,0 +1,29 @@ +{ + "slug": "alien-isolation-crew-expendable", + "name": "Alien: Isolation - Crew Expendable", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125156681" + ], + "release_date": "2014-10-28", + "platforms": [ + "PlayStation 4", + "PlayStation 3", + "macOS", + "Microsoft Windows" + ], + "genres": [ + "survival horror", + "action-adventure game", + "stealth game", + "immersive sim", + "retrofuturistic video game" + ], + "developers": [ + "Creative Assembly" + ], + "publishers": [ + "Sega", + "Feral Interactive" + ] +} diff --git a/data/game/al/alien-isolation-the-collection.json b/data/game/al/alien-isolation-the-collection.json new file mode 100644 index 000000000000..792ab165d19d --- /dev/null +++ b/data/game/al/alien-isolation-the-collection.json @@ -0,0 +1,29 @@ +{ + "slug": "alien-isolation-the-collection", + "name": "Alien: Isolation - The Collection", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135483608" + ], + "release_date": "2015-10-27", + "platforms": [ + "PlayStation 4", + "macOS", + "iOS", + "Microsoft Windows" + ], + "genres": [ + "survival horror", + "action-adventure game", + "stealth game", + "retrofuturistic video game", + "immersive sim" + ], + "developers": [ + "Creative Assembly" + ], + "publishers": [ + "Sega", + "Feral Interactive" + ] +} diff --git a/data/game/al/alien-nations-mission-pack.json b/data/game/al/alien-nations-mission-pack.json new file mode 100644 index 000000000000..d34b5d988d70 --- /dev/null +++ b/data/game/al/alien-nations-mission-pack.json @@ -0,0 +1,21 @@ +{ + "slug": "alien-nations-mission-pack", + "name": "Alien Nations: Mission Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110817185" + ], + "release_date": "2000-01-01", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "real-time strategy" + ], + "developers": [ + "Neo Software" + ], + "publishers": [ + "JoWooD Entertainment" + ] +} diff --git a/data/game/al/alien-vs-predator-q10405222.json b/data/game/al/alien-vs-predator-q10405222.json new file mode 100644 index 000000000000..97760d9cdbd6 --- /dev/null +++ b/data/game/al/alien-vs-predator-q10405222.json @@ -0,0 +1,15 @@ +{ + "slug": "alien-vs-predator-q10405222", + "name": "Alien vs Predator", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10405222" + ], + "release_date": "1994-01-01", + "platforms": [ + "Atari Lynx" + ], + "genres": [ + "first-person shooter" + ] +} diff --git a/data/game/al/aliens-colonial-marines-stasis-interrupted.json b/data/game/al/aliens-colonial-marines-stasis-interrupted.json new file mode 100644 index 000000000000..ea25e63ca014 --- /dev/null +++ b/data/game/al/aliens-colonial-marines-stasis-interrupted.json @@ -0,0 +1,8 @@ +{ + "slug": "aliens-colonial-marines-stasis-interrupted", + "name": "Aliens: Colonial Marines - Stasis Interrupted", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125156768" + ] +} diff --git a/data/game/al/aliens-fireteam-elite-into-the-hive-edition.json b/data/game/al/aliens-fireteam-elite-into-the-hive-edition.json new file mode 100644 index 000000000000..1c4eb5035150 --- /dev/null +++ b/data/game/al/aliens-fireteam-elite-into-the-hive-edition.json @@ -0,0 +1,16 @@ +{ + "slug": "aliens-fireteam-elite-into-the-hive-edition", + "name": "Aliens: Fireteam Elite Into The Hive Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116160676" + ], + "release_date": "2022-09-06", + "platforms": [ + "Xbox Series X and Series S", + "Microsoft Windows" + ], + "developers": [ + "Cold Iron Studios" + ] +} diff --git a/data/game/al/aliens-versus-predator-millennium-expansion-pack.json b/data/game/al/aliens-versus-predator-millennium-expansion-pack.json new file mode 100644 index 000000000000..00fea87171e2 --- /dev/null +++ b/data/game/al/aliens-versus-predator-millennium-expansion-pack.json @@ -0,0 +1,11 @@ +{ + "slug": "aliens-versus-predator-millennium-expansion-pack", + "name": "Aliens Versus Predator: Millennium Expansion Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124981145" + ], + "publishers": [ + "Fox Interactive" + ] +} diff --git a/data/game/al/aliens-vs-predator-2-primal-hunt.json b/data/game/al/aliens-vs-predator-2-primal-hunt.json new file mode 100644 index 000000000000..623a4510dfdf --- /dev/null +++ b/data/game/al/aliens-vs-predator-2-primal-hunt.json @@ -0,0 +1,21 @@ +{ + "slug": "aliens-vs-predator-2-primal-hunt", + "name": "Aliens vs Predator 2: Primal Hunt", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2836857" + ], + "platforms": [ + "Mac operating system", + "Microsoft Windows" + ], + "genres": [ + "first-person shooter" + ], + "developers": [ + "Monolith Productions" + ], + "publishers": [ + "Sierra Entertainment" + ] +} diff --git a/data/game/al/all-that-i-touch.json b/data/game/al/all-that-i-touch.json new file mode 100644 index 000000000000..2d2bdd8586a1 --- /dev/null +++ b/data/game/al/all-that-i-touch.json @@ -0,0 +1,21 @@ +{ + "slug": "all-that-i-touch", + "name": "All That I Touch", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q64826849" + ], + "release_date": "2017-01-01", + "platforms": [ + "web browser" + ], + "genres": [ + "art game" + ], + "developers": [ + "Drazillion" + ], + "publishers": [ + "Drazillion" + ] +} diff --git a/data/game/al/all-things-go-boom.json b/data/game/al/all-things-go-boom.json new file mode 100644 index 000000000000..215f5d9ac6d9 --- /dev/null +++ b/data/game/al/all-things-go-boom.json @@ -0,0 +1,8 @@ +{ + "slug": "all-things-go-boom", + "name": "All Things Go Boom!", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127500832" + ] +} diff --git a/data/game/al/all-tomorrow-s-parties.json b/data/game/al/all-tomorrow-s-parties.json new file mode 100644 index 000000000000..de7d01a65564 --- /dev/null +++ b/data/game/al/all-tomorrow-s-parties.json @@ -0,0 +1,21 @@ +{ + "slug": "all-tomorrow-s-parties", + "name": "All Tomorrow’s Parties", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q64826856" + ], + "release_date": "2016-01-01", + "platforms": [ + "web browser" + ], + "genres": [ + "interactive fiction" + ], + "developers": [ + "Niamh Schönherr" + ], + "publishers": [ + "Niamh Schönherr" + ] +} diff --git a/data/game/al/alone-free.json b/data/game/al/alone-free.json new file mode 100644 index 000000000000..403eca268a56 --- /dev/null +++ b/data/game/al/alone-free.json @@ -0,0 +1,19 @@ +{ + "slug": "alone-free", + "name": "ALONE (Free)", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107291482" + ], + "release_date": "2021-05-31", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "casual game", + "horror video game" + ], + "developers": [ + "DakeCraft" + ] +} diff --git a/data/game/al/alphadia-genesis-1-2.json b/data/game/al/alphadia-genesis-1-2.json new file mode 100644 index 000000000000..94c9ced896d2 --- /dev/null +++ b/data/game/al/alphadia-genesis-1-2.json @@ -0,0 +1,22 @@ +{ + "slug": "alphadia-genesis-1-2", + "name": "Alphadia Genesis 1 & 2", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108935630" + ], + "release_date": "2021-10-15", + "platforms": [ + "Xbox Series X and Series S", + "Microsoft Windows" + ], + "genres": [ + "role-playing video game" + ], + "developers": [ + "Exe-Create" + ], + "publishers": [ + "Kemco" + ] +} diff --git a/data/game/al/alphago-fan.json b/data/game/al/alphago-fan.json new file mode 100644 index 000000000000..4ed3202ec82a --- /dev/null +++ b/data/game/al/alphago-fan.json @@ -0,0 +1,11 @@ +{ + "slug": "alphago-fan", + "name": "AlphaGo Fan", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q42223294" + ], + "developers": [ + "Google DeepMind" + ] +} diff --git a/data/game/al/alphago-master.json b/data/game/al/alphago-master.json new file mode 100644 index 000000000000..f111a4bec2d0 --- /dev/null +++ b/data/game/al/alphago-master.json @@ -0,0 +1,11 @@ +{ + "slug": "alphago-master", + "name": "AlphaGo Master", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q29550830" + ], + "developers": [ + "Google DeepMind" + ] +} diff --git a/data/game/al/alphago-zero.json b/data/game/al/alphago-zero.json new file mode 100644 index 000000000000..1ba8f2b3b98e --- /dev/null +++ b/data/game/al/alphago-zero.json @@ -0,0 +1,11 @@ +{ + "slug": "alphago-zero", + "name": "AlphaGo Zero", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q42259287" + ], + "developers": [ + "Google DeepMind" + ] +} diff --git a/data/game/al/alphago.json b/data/game/al/alphago.json new file mode 100644 index 000000000000..018c2f6503a5 --- /dev/null +++ b/data/game/al/alphago.json @@ -0,0 +1,14 @@ +{ + "slug": "alphago", + "name": "AlphaGo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22329209" + ], + "developers": [ + "Google DeepMind" + ], + "publishers": [ + "Alphabet Inc." + ] +} diff --git a/data/game/al/alphalock.json b/data/game/al/alphalock.json new file mode 100644 index 000000000000..91ef5d739422 --- /dev/null +++ b/data/game/al/alphalock.json @@ -0,0 +1,15 @@ +{ + "slug": "alphalock", + "name": "Alphalock", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140192773" + ], + "release_date": "2024-01-01", + "platforms": [ + "web browser" + ], + "genres": [ + "puzzle video game" + ] +} diff --git a/data/game/al/alt-play-jason-rohrer-anthology.json b/data/game/al/alt-play-jason-rohrer-anthology.json new file mode 100644 index 000000000000..5f7d5e178295 --- /dev/null +++ b/data/game/al/alt-play-jason-rohrer-anthology.json @@ -0,0 +1,21 @@ +{ + "slug": "alt-play-jason-rohrer-anthology", + "name": "Alt-Play: Jason Rohrer Anthology", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60665261" + ], + "release_date": "2010-12-31", + "platforms": [ + "Nintendo DSi" + ], + "genres": [ + "action-adventure game" + ], + "developers": [ + "Sabarasa Entertainment" + ], + "publishers": [ + "Sabarasa Entertainment" + ] +} diff --git a/data/game/al/altered-beast-q4736304.json b/data/game/al/altered-beast-q4736304.json new file mode 100644 index 000000000000..9d0d010dc308 --- /dev/null +++ b/data/game/al/altered-beast-q4736304.json @@ -0,0 +1,19 @@ +{ + "slug": "altered-beast-q4736304", + "name": "Altered Beast", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4736304" + ], + "release_date": "2005-01-27", + "genres": [ + "action-adventure game", + "beat 'em up" + ], + "developers": [ + "Sega Wow" + ], + "publishers": [ + "Sega" + ] +} diff --git a/data/game/al/alto-s-odyssey-the-lost-city.json b/data/game/al/alto-s-odyssey-the-lost-city.json new file mode 100644 index 000000000000..dd8ebb71a377 --- /dev/null +++ b/data/game/al/alto-s-odyssey-the-lost-city.json @@ -0,0 +1,18 @@ +{ + "slug": "alto-s-odyssey-the-lost-city", + "name": "Alto's Odyssey: The Lost City", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107336341" + ], + "release_date": "2021-07-16", + "platforms": [ + "iPadOS", + "tvOS", + "iOS", + "macOS" + ], + "developers": [ + "Snowman" + ] +} diff --git a/data/game/am/amarok-dreams-demo.json b/data/game/am/amarok-dreams-demo.json new file mode 100644 index 000000000000..7ac19ebd9ef3 --- /dev/null +++ b/data/game/am/amarok-dreams-demo.json @@ -0,0 +1,12 @@ +{ + "slug": "amarok-dreams-demo", + "name": "Amarok Dreams Demo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111661694" + ], + "release_date": "2020-10-06", + "platforms": [ + "Microsoft Windows" + ] +} diff --git a/data/game/am/american-hero-q63049699.json b/data/game/am/american-hero-q63049699.json new file mode 100644 index 000000000000..12ce175f7ab0 --- /dev/null +++ b/data/game/am/american-hero-q63049699.json @@ -0,0 +1,12 @@ +{ + "slug": "american-hero-q63049699", + "name": "American Hero", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63049699" + ], + "platforms": [ + "Atari Jaguar", + "personal computer" + ] +} diff --git a/data/game/am/american-truck-simulator-arizona.json b/data/game/am/american-truck-simulator-arizona.json new file mode 100644 index 000000000000..3d786008c878 --- /dev/null +++ b/data/game/am/american-truck-simulator-arizona.json @@ -0,0 +1,19 @@ +{ + "slug": "american-truck-simulator-arizona", + "name": "American Truck Simulator: Arizona", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113281746" + ], + "release_date": "2016-06-06", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ] +} diff --git a/data/game/am/american-truck-simulator-cabin-accessories.json b/data/game/am/american-truck-simulator-cabin-accessories.json new file mode 100644 index 000000000000..5d1e60e44d1d --- /dev/null +++ b/data/game/am/american-truck-simulator-cabin-accessories.json @@ -0,0 +1,19 @@ +{ + "slug": "american-truck-simulator-cabin-accessories", + "name": "American Truck Simulator: Cabin Accessories", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113282178" + ], + "release_date": "2020-12-03", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ] +} diff --git a/data/game/am/american-truck-simulator-christmas-paint-jobs-pack.json b/data/game/am/american-truck-simulator-christmas-paint-jobs-pack.json new file mode 100644 index 000000000000..a4910879628f --- /dev/null +++ b/data/game/am/american-truck-simulator-christmas-paint-jobs-pack.json @@ -0,0 +1,19 @@ +{ + "slug": "american-truck-simulator-christmas-paint-jobs-pack", + "name": "American Truck Simulator: Christmas Paint Jobs Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113281842" + ], + "release_date": "2016-12-16", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ] +} diff --git a/data/game/am/american-truck-simulator-classic-stripes-paint-jobs-pack.json b/data/game/am/american-truck-simulator-classic-stripes-paint-jobs-pack.json new file mode 100644 index 000000000000..80321442e754 --- /dev/null +++ b/data/game/am/american-truck-simulator-classic-stripes-paint-jobs-pack.json @@ -0,0 +1,19 @@ +{ + "slug": "american-truck-simulator-classic-stripes-paint-jobs-pack", + "name": "American Truck Simulator: Classic Stripes Paint Jobs Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113281973" + ], + "release_date": "2018-10-04", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ] +} diff --git a/data/game/am/american-truck-simulator-colorado.json b/data/game/am/american-truck-simulator-colorado.json new file mode 100644 index 000000000000..034527188ae5 --- /dev/null +++ b/data/game/am/american-truck-simulator-colorado.json @@ -0,0 +1,19 @@ +{ + "slug": "american-truck-simulator-colorado", + "name": "American Truck Simulator: Colorado", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113282097" + ], + "release_date": "2020-11-12", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ] +} diff --git a/data/game/am/american-truck-simulator-dragon-truck-design-pack.json b/data/game/am/american-truck-simulator-dragon-truck-design-pack.json new file mode 100644 index 000000000000..dc10f60e4c83 --- /dev/null +++ b/data/game/am/american-truck-simulator-dragon-truck-design-pack.json @@ -0,0 +1,19 @@ +{ + "slug": "american-truck-simulator-dragon-truck-design-pack", + "name": "American Truck Simulator: Dragon Truck Design Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113281813" + ], + "release_date": "2017-02-01", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ] +} diff --git a/data/game/am/american-truck-simulator-forest-machinery.json b/data/game/am/american-truck-simulator-forest-machinery.json new file mode 100644 index 000000000000..8472915d1885 --- /dev/null +++ b/data/game/am/american-truck-simulator-forest-machinery.json @@ -0,0 +1,19 @@ +{ + "slug": "american-truck-simulator-forest-machinery", + "name": "American Truck Simulator: Forest Machinery", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113282028" + ], + "release_date": "2019-06-11", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ] +} diff --git a/data/game/am/american-truck-simulator-freightliner-cascadia.json b/data/game/am/american-truck-simulator-freightliner-cascadia.json new file mode 100644 index 000000000000..f81c36b027d0 --- /dev/null +++ b/data/game/am/american-truck-simulator-freightliner-cascadia.json @@ -0,0 +1,19 @@ +{ + "slug": "american-truck-simulator-freightliner-cascadia", + "name": "American Truck Simulator: Freightliner Cascadia", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113282125" + ], + "release_date": "2020-12-02", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ] +} diff --git a/data/game/am/american-truck-simulator-goodyear-tires-pack.json b/data/game/am/american-truck-simulator-goodyear-tires-pack.json new file mode 100644 index 000000000000..6e8a7febd972 --- /dev/null +++ b/data/game/am/american-truck-simulator-goodyear-tires-pack.json @@ -0,0 +1,19 @@ +{ + "slug": "american-truck-simulator-goodyear-tires-pack", + "name": "American Truck Simulator: Goodyear Tires Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113282186" + ], + "release_date": "2021-05-10", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ] +} diff --git a/data/game/am/american-truck-simulator-halloween-paint-jobs-pack.json b/data/game/am/american-truck-simulator-halloween-paint-jobs-pack.json new file mode 100644 index 000000000000..47b54db072c5 --- /dev/null +++ b/data/game/am/american-truck-simulator-halloween-paint-jobs-pack.json @@ -0,0 +1,19 @@ +{ + "slug": "american-truck-simulator-halloween-paint-jobs-pack", + "name": "American Truck Simulator: Halloween Paint Jobs Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113281785" + ], + "release_date": "2016-10-28", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ] +} diff --git a/data/game/am/american-truck-simulator-heavy-cargo-pack.json b/data/game/am/american-truck-simulator-heavy-cargo-pack.json new file mode 100644 index 000000000000..72e6a4176ffa --- /dev/null +++ b/data/game/am/american-truck-simulator-heavy-cargo-pack.json @@ -0,0 +1,19 @@ +{ + "slug": "american-truck-simulator-heavy-cargo-pack", + "name": "American Truck Simulator: Heavy Cargo Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113281897" + ], + "release_date": "2017-06-07", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ] +} diff --git a/data/game/am/american-truck-simulator-idaho.json b/data/game/am/american-truck-simulator-idaho.json new file mode 100644 index 000000000000..cd22e4c6e830 --- /dev/null +++ b/data/game/am/american-truck-simulator-idaho.json @@ -0,0 +1,19 @@ +{ + "slug": "american-truck-simulator-idaho", + "name": "American Truck Simulator: Idaho", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113282089" + ], + "release_date": "2020-07-16", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ] +} diff --git a/data/game/am/american-truck-simulator-international-9900i.json b/data/game/am/american-truck-simulator-international-9900i.json new file mode 100644 index 000000000000..47703889a9de --- /dev/null +++ b/data/game/am/american-truck-simulator-international-9900i.json @@ -0,0 +1,19 @@ +{ + "slug": "american-truck-simulator-international-9900i", + "name": "American Truck Simulator: International 9900i", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113282242" + ], + "release_date": "2022-03-22", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ] +} diff --git a/data/game/am/american-truck-simulator-international-lt.json b/data/game/am/american-truck-simulator-international-lt.json new file mode 100644 index 000000000000..0a4c677d6c7c --- /dev/null +++ b/data/game/am/american-truck-simulator-international-lt.json @@ -0,0 +1,19 @@ +{ + "slug": "american-truck-simulator-international-lt", + "name": "American Truck Simulator: International LT", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113282207" + ], + "release_date": "2021-09-01", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ] +} diff --git a/data/game/am/american-truck-simulator-iowa.json b/data/game/am/american-truck-simulator-iowa.json new file mode 100644 index 000000000000..eccc8e122f74 --- /dev/null +++ b/data/game/am/american-truck-simulator-iowa.json @@ -0,0 +1,8 @@ +{ + "slug": "american-truck-simulator-iowa", + "name": "American Truck Simulator: Iowa", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140420123" + ] +} diff --git a/data/game/am/american-truck-simulator-lode-king-prestige-trailers-pack.json b/data/game/am/american-truck-simulator-lode-king-prestige-trailers-pack.json new file mode 100644 index 000000000000..36679fae537d --- /dev/null +++ b/data/game/am/american-truck-simulator-lode-king-prestige-trailers-pack.json @@ -0,0 +1,19 @@ +{ + "slug": "american-truck-simulator-lode-king-prestige-trailers-pack", + "name": "American Truck Simulator: Lode King & Prestige Trailers Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113282257" + ], + "release_date": "2022-05-31", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ] +} diff --git a/data/game/am/american-truck-simulator-mack-anthem.json b/data/game/am/american-truck-simulator-mack-anthem.json new file mode 100644 index 000000000000..29dbe93d0c90 --- /dev/null +++ b/data/game/am/american-truck-simulator-mack-anthem.json @@ -0,0 +1,19 @@ +{ + "slug": "american-truck-simulator-mack-anthem", + "name": "American Truck Simulator: Mack Anthem", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113282112" + ], + "release_date": "2020-04-28", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ] +} diff --git a/data/game/am/american-truck-simulator-montana.json b/data/game/am/american-truck-simulator-montana.json new file mode 100644 index 000000000000..15f73b6f2f35 --- /dev/null +++ b/data/game/am/american-truck-simulator-montana.json @@ -0,0 +1,19 @@ +{ + "slug": "american-truck-simulator-montana", + "name": "American Truck Simulator: Montana", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113282229" + ], + "release_date": "2022-08-04", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ] +} diff --git a/data/game/am/american-truck-simulator-nebraska.json b/data/game/am/american-truck-simulator-nebraska.json new file mode 100644 index 000000000000..8689cc85d3f2 --- /dev/null +++ b/data/game/am/american-truck-simulator-nebraska.json @@ -0,0 +1,8 @@ +{ + "slug": "american-truck-simulator-nebraska", + "name": "American Truck Simulator: Nebraska", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140420125" + ] +} diff --git a/data/game/am/american-truck-simulator-new-mexico.json b/data/game/am/american-truck-simulator-new-mexico.json new file mode 100644 index 000000000000..45dcbf0c7613 --- /dev/null +++ b/data/game/am/american-truck-simulator-new-mexico.json @@ -0,0 +1,19 @@ +{ + "slug": "american-truck-simulator-new-mexico", + "name": "American Truck Simulator: New Mexico", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113281931" + ], + "release_date": "2017-11-09", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ] +} diff --git a/data/game/am/american-truck-simulator-oregon.json b/data/game/am/american-truck-simulator-oregon.json new file mode 100644 index 000000000000..26e52d0f2dc7 --- /dev/null +++ b/data/game/am/american-truck-simulator-oregon.json @@ -0,0 +1,19 @@ +{ + "slug": "american-truck-simulator-oregon", + "name": "American Truck Simulator: Oregon", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113281952" + ], + "release_date": "2018-10-04", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ] +} diff --git a/data/game/am/american-truck-simulator-pink-ribbon-charity-pack.json b/data/game/am/american-truck-simulator-pink-ribbon-charity-pack.json new file mode 100644 index 000000000000..027705296bd6 --- /dev/null +++ b/data/game/am/american-truck-simulator-pink-ribbon-charity-pack.json @@ -0,0 +1,19 @@ +{ + "slug": "american-truck-simulator-pink-ribbon-charity-pack", + "name": "American Truck Simulator: Pink Ribbon Charity Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113282076" + ], + "release_date": "2019-10-01", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ] +} diff --git a/data/game/am/american-truck-simulator-retrowave-paint-jobs-pack.json b/data/game/am/american-truck-simulator-retrowave-paint-jobs-pack.json new file mode 100644 index 000000000000..ccc000d92ccb --- /dev/null +++ b/data/game/am/american-truck-simulator-retrowave-paint-jobs-pack.json @@ -0,0 +1,19 @@ +{ + "slug": "american-truck-simulator-retrowave-paint-jobs-pack", + "name": "American Truck Simulator: Retrowave Paint Jobs Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113282221" + ], + "release_date": "2021-10-26", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ] +} diff --git a/data/game/am/american-truck-simulator-space-paint-jobs-pack.json b/data/game/am/american-truck-simulator-space-paint-jobs-pack.json new file mode 100644 index 000000000000..57119fa8b409 --- /dev/null +++ b/data/game/am/american-truck-simulator-space-paint-jobs-pack.json @@ -0,0 +1,19 @@ +{ + "slug": "american-truck-simulator-space-paint-jobs-pack", + "name": "American Truck Simulator: Space Paint Jobs Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113282060" + ], + "release_date": "2019-07-15", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ] +} diff --git a/data/game/am/american-truck-simulator-special-transport.json b/data/game/am/american-truck-simulator-special-transport.json new file mode 100644 index 000000000000..0d2b1f701285 --- /dev/null +++ b/data/game/am/american-truck-simulator-special-transport.json @@ -0,0 +1,19 @@ +{ + "slug": "american-truck-simulator-special-transport", + "name": "American Truck Simulator: Special Transport", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113281992" + ], + "release_date": "2018-11-07", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ] +} diff --git a/data/game/am/american-truck-simulator-steering-creations-pack.json b/data/game/am/american-truck-simulator-steering-creations-pack.json new file mode 100644 index 000000000000..b1106c8a9aeb --- /dev/null +++ b/data/game/am/american-truck-simulator-steering-creations-pack.json @@ -0,0 +1,19 @@ +{ + "slug": "american-truck-simulator-steering-creations-pack", + "name": "American Truck Simulator: Steering Creations Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113281768" + ], + "release_date": "2016-09-14", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ] +} diff --git a/data/game/am/american-truck-simulator-texas.json b/data/game/am/american-truck-simulator-texas.json new file mode 100644 index 000000000000..22d8d9bf87ee --- /dev/null +++ b/data/game/am/american-truck-simulator-texas.json @@ -0,0 +1,19 @@ +{ + "slug": "american-truck-simulator-texas", + "name": "American Truck Simulator: Texas", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113282165" + ], + "release_date": "2022-11-15", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ] +} diff --git a/data/game/am/american-truck-simulator-utah.json b/data/game/am/american-truck-simulator-utah.json new file mode 100644 index 000000000000..bf5212d0250c --- /dev/null +++ b/data/game/am/american-truck-simulator-utah.json @@ -0,0 +1,19 @@ +{ + "slug": "american-truck-simulator-utah", + "name": "American Truck Simulator: Utah", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113282046" + ], + "release_date": "2019-11-07", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ] +} diff --git a/data/game/am/american-truck-simulator-valentine-s-paint-jobs-pack.json b/data/game/am/american-truck-simulator-valentine-s-paint-jobs-pack.json new file mode 100644 index 000000000000..7fce715cf111 --- /dev/null +++ b/data/game/am/american-truck-simulator-valentine-s-paint-jobs-pack.json @@ -0,0 +1,19 @@ +{ + "slug": "american-truck-simulator-valentine-s-paint-jobs-pack", + "name": "American Truck Simulator: Valentine's Paint Jobs Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113281870" + ], + "release_date": "2017-02-10", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ] +} diff --git a/data/game/am/american-truck-simulator-volvo-construction-equipment.json b/data/game/am/american-truck-simulator-volvo-construction-equipment.json new file mode 100644 index 000000000000..db0c86e434a6 --- /dev/null +++ b/data/game/am/american-truck-simulator-volvo-construction-equipment.json @@ -0,0 +1,19 @@ +{ + "slug": "american-truck-simulator-volvo-construction-equipment", + "name": "American Truck Simulator: Volvo Construction Equipment", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113282196" + ], + "release_date": "2021-09-23", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ] +} diff --git a/data/game/am/american-truck-simulator-washington.json b/data/game/am/american-truck-simulator-washington.json new file mode 100644 index 000000000000..7afa4f9dabd1 --- /dev/null +++ b/data/game/am/american-truck-simulator-washington.json @@ -0,0 +1,19 @@ +{ + "slug": "american-truck-simulator-washington", + "name": "American Truck Simulator: Washington", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113282011" + ], + "release_date": "2019-06-11", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ] +} diff --git a/data/game/am/american-truck-simulator-western-star-49x.json b/data/game/am/american-truck-simulator-western-star-49x.json new file mode 100644 index 000000000000..23f7eba9a5c1 --- /dev/null +++ b/data/game/am/american-truck-simulator-western-star-49x.json @@ -0,0 +1,19 @@ +{ + "slug": "american-truck-simulator-western-star-49x", + "name": "American Truck Simulator: Western Star 49X", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113282135" + ], + "release_date": "2020-09-30", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ] +} diff --git a/data/game/am/american-truck-simulator-wheel-tuning-pack.json b/data/game/am/american-truck-simulator-wheel-tuning-pack.json new file mode 100644 index 000000000000..5ae6e1623ac4 --- /dev/null +++ b/data/game/am/american-truck-simulator-wheel-tuning-pack.json @@ -0,0 +1,19 @@ +{ + "slug": "american-truck-simulator-wheel-tuning-pack", + "name": "American Truck Simulator: Wheel Tuning Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113281714" + ], + "release_date": "2016-04-13", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ] +} diff --git a/data/game/am/american-truck-simulator-wyoming.json b/data/game/am/american-truck-simulator-wyoming.json new file mode 100644 index 000000000000..43a8ff1952a2 --- /dev/null +++ b/data/game/am/american-truck-simulator-wyoming.json @@ -0,0 +1,19 @@ +{ + "slug": "american-truck-simulator-wyoming", + "name": "American Truck Simulator: Wyoming", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113282148" + ], + "release_date": "2021-09-07", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ] +} diff --git a/data/game/am/amid-the-ruins.json b/data/game/am/amid-the-ruins.json new file mode 100644 index 000000000000..8b69ca45866d --- /dev/null +++ b/data/game/am/amid-the-ruins.json @@ -0,0 +1,12 @@ +{ + "slug": "amid-the-ruins", + "name": "Amid the Ruins", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18155621" + ], + "release_date": "2014-07-22", + "platforms": [ + "PlayStation 4" + ] +} diff --git a/data/game/am/amiga-500-deluxe.json b/data/game/am/amiga-500-deluxe.json new file mode 100644 index 000000000000..5ba99f9a9a3e --- /dev/null +++ b/data/game/am/amiga-500-deluxe.json @@ -0,0 +1,8 @@ +{ + "slug": "amiga-500-deluxe", + "name": "Amiga 500 Deluxe", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126186881" + ] +} diff --git a/data/game/am/amigadoom.json b/data/game/am/amigadoom.json new file mode 100644 index 000000000000..45a3f9d83152 --- /dev/null +++ b/data/game/am/amigadoom.json @@ -0,0 +1,11 @@ +{ + "slug": "amigadoom", + "name": "AmigaDoom", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124473009" + ], + "platforms": [ + "Commodore Amiga" + ] +} diff --git a/data/game/am/amnesia-fortnight-2012.json b/data/game/am/amnesia-fortnight-2012.json new file mode 100644 index 000000000000..e846a59c1d34 --- /dev/null +++ b/data/game/am/amnesia-fortnight-2012.json @@ -0,0 +1,22 @@ +{ + "slug": "amnesia-fortnight-2012", + "name": "Amnesia Fortnight 2012", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16267639" + ], + "release_date": "2012-11-19", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "action-adventure game", + "platformer" + ], + "developers": [ + "Double Fine" + ], + "publishers": [ + "Double Fine" + ] +} diff --git a/data/game/am/amnesia-fortnight-2014.json b/data/game/am/amnesia-fortnight-2014.json new file mode 100644 index 000000000000..d9c3a1f28d6c --- /dev/null +++ b/data/game/am/amnesia-fortnight-2014.json @@ -0,0 +1,18 @@ +{ + "slug": "amnesia-fortnight-2014", + "name": "Amnesia Fortnight 2014", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16267879" + ], + "release_date": "2014-01-01", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Double Fine" + ], + "publishers": [ + "Double Fine" + ] +} diff --git a/data/game/am/amnesia-fortnight-2017.json b/data/game/am/amnesia-fortnight-2017.json new file mode 100644 index 000000000000..775b2eee4dad --- /dev/null +++ b/data/game/am/amnesia-fortnight-2017.json @@ -0,0 +1,11 @@ +{ + "slug": "amnesia-fortnight-2017", + "name": "Amnesia Fortnight 2017", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q55381967" + ], + "platforms": [ + "Microsoft Windows" + ] +} diff --git a/data/game/am/amnesia-justine.json b/data/game/am/amnesia-justine.json new file mode 100644 index 000000000000..2fdaa8356680 --- /dev/null +++ b/data/game/am/amnesia-justine.json @@ -0,0 +1,9 @@ +{ + "slug": "amnesia-justine", + "name": "Amnesia: Justine", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q47009582" + ], + "release_date": "2011-04-03" +} diff --git a/data/game/am/among-us-2.json b/data/game/am/among-us-2.json new file mode 100644 index 000000000000..1e7628707414 --- /dev/null +++ b/data/game/am/among-us-2.json @@ -0,0 +1,16 @@ +{ + "slug": "among-us-2", + "name": "Among Us 2", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q99554012" + ], + "platforms": [ + "iOS", + "Microsoft Windows" + ], + "genres": [ + "party video game", + "social deduction video game" + ] +} diff --git a/data/game/am/among-us-bedcrab-pet-bundle.json b/data/game/am/among-us-bedcrab-pet-bundle.json new file mode 100644 index 000000000000..e5c1c7d6db6d --- /dev/null +++ b/data/game/am/among-us-bedcrab-pet-bundle.json @@ -0,0 +1,12 @@ +{ + "slug": "among-us-bedcrab-pet-bundle", + "name": "Among Us - Bedcrab Pet Bundle", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q101210388" + ], + "release_date": "2019-06-07", + "platforms": [ + "Microsoft Windows" + ] +} diff --git a/data/game/am/among-us-brainslug-pet-bundle.json b/data/game/am/among-us-brainslug-pet-bundle.json new file mode 100644 index 000000000000..30fab930c512 --- /dev/null +++ b/data/game/am/among-us-brainslug-pet-bundle.json @@ -0,0 +1,12 @@ +{ + "slug": "among-us-brainslug-pet-bundle", + "name": "Among Us - Brainslug Pet Bundle", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q101210403" + ], + "release_date": "2019-06-07", + "platforms": [ + "Microsoft Windows" + ] +} diff --git a/data/game/am/among-us-hamster-pet-bundle.json b/data/game/am/among-us-hamster-pet-bundle.json new file mode 100644 index 000000000000..6273c776b5a3 --- /dev/null +++ b/data/game/am/among-us-hamster-pet-bundle.json @@ -0,0 +1,12 @@ +{ + "slug": "among-us-hamster-pet-bundle", + "name": "Among Us - Hamster Pet Bundle", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q101210372" + ], + "release_date": "2019-06-07", + "platforms": [ + "Microsoft Windows" + ] +} diff --git a/data/game/am/among-us-mini-crewmate-bundle.json b/data/game/am/among-us-mini-crewmate-bundle.json new file mode 100644 index 000000000000..7e392dced818 --- /dev/null +++ b/data/game/am/among-us-mini-crewmate-bundle.json @@ -0,0 +1,12 @@ +{ + "slug": "among-us-mini-crewmate-bundle", + "name": "Among Us - Mini Crewmate Bundle", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q101210417" + ], + "release_date": "2019-06-07", + "platforms": [ + "Microsoft Windows" + ] +} diff --git a/data/game/am/among-us-mira-hq-skins.json b/data/game/am/among-us-mira-hq-skins.json new file mode 100644 index 000000000000..63bf407c37ae --- /dev/null +++ b/data/game/am/among-us-mira-hq-skins.json @@ -0,0 +1,12 @@ +{ + "slug": "among-us-mira-hq-skins", + "name": "Among Us - MIRA HQ Skins", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q101210428" + ], + "release_date": "2019-08-08", + "platforms": [ + "Microsoft Windows" + ] +} diff --git a/data/game/am/among-us-polus-skins.json b/data/game/am/among-us-polus-skins.json new file mode 100644 index 000000000000..45d3532c0e6d --- /dev/null +++ b/data/game/am/among-us-polus-skins.json @@ -0,0 +1,12 @@ +{ + "slug": "among-us-polus-skins", + "name": "Among Us - Polus Skins", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q101210398" + ], + "release_date": "2019-11-12", + "platforms": [ + "Microsoft Windows" + ] +} diff --git a/data/game/am/among-us-stickmin-pet-bundle.json b/data/game/am/among-us-stickmin-pet-bundle.json new file mode 100644 index 000000000000..7f88ad058e38 --- /dev/null +++ b/data/game/am/among-us-stickmin-pet-bundle.json @@ -0,0 +1,12 @@ +{ + "slug": "among-us-stickmin-pet-bundle", + "name": "Among Us - Stickmin Pet Bundle", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q101210434" + ], + "release_date": "2019-06-07", + "platforms": [ + "Microsoft Windows" + ] +} diff --git a/data/game/an/anarchy-online-the-notum-wars.json b/data/game/an/anarchy-online-the-notum-wars.json new file mode 100644 index 000000000000..7b1e18e0b958 --- /dev/null +++ b/data/game/an/anarchy-online-the-notum-wars.json @@ -0,0 +1,21 @@ +{ + "slug": "anarchy-online-the-notum-wars", + "name": "Anarchy Online: The Notum Wars", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110798812" + ], + "release_date": "2002-01-01", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "role-playing video game" + ], + "developers": [ + "Funcom" + ], + "publishers": [ + "Funcom" + ] +} diff --git a/data/game/an/ancestors-legacy-saladin-s-conquest.json b/data/game/an/ancestors-legacy-saladin-s-conquest.json new file mode 100644 index 000000000000..bb45f92a03ed --- /dev/null +++ b/data/game/an/ancestors-legacy-saladin-s-conquest.json @@ -0,0 +1,12 @@ +{ + "slug": "ancestors-legacy-saladin-s-conquest", + "name": "Ancestors Legacy - Saladin's Conquest", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q129978879" + ], + "release_date": "2019-05-21", + "platforms": [ + "Microsoft Windows" + ] +} diff --git a/data/game/an/ancient-enemies.json b/data/game/an/ancient-enemies.json new file mode 100644 index 000000000000..4079a3818e84 --- /dev/null +++ b/data/game/an/ancient-enemies.json @@ -0,0 +1,9 @@ +{ + "slug": "ancient-enemies", + "name": "Ancient Enemies", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q57974036" + ], + "release_date": "2010-08-27" +} diff --git a/data/game/an/angel-beats-1st-beat.json b/data/game/an/angel-beats-1st-beat.json new file mode 100644 index 000000000000..4707ad7ba1ce --- /dev/null +++ b/data/game/an/angel-beats-1st-beat.json @@ -0,0 +1,21 @@ +{ + "slug": "angel-beats-1st-beat", + "name": "Angel Beats! 1st Beat", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q53870802" + ], + "release_date": "2015-06-26", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "visual novel" + ], + "developers": [ + "Key" + ], + "publishers": [ + "Visual Arts" + ] +} diff --git a/data/game/an/angelique-history.json b/data/game/an/angelique-history.json new file mode 100644 index 000000000000..9c6a472d75bf --- /dev/null +++ b/data/game/an/angelique-history.json @@ -0,0 +1,9 @@ +{ + "slug": "angelique-history", + "name": "Angelique History", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130343014" + ], + "release_date": "2000-01-01" +} diff --git a/data/game/an/angry-birds-dice.json b/data/game/an/angry-birds-dice.json new file mode 100644 index 000000000000..451d04773ec9 --- /dev/null +++ b/data/game/an/angry-birds-dice.json @@ -0,0 +1,12 @@ +{ + "slug": "angry-birds-dice", + "name": "Angry Birds Dice", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28656962" + ], + "release_date": "2017-01-01", + "platforms": [ + "iOS" + ] +} diff --git a/data/game/an/angry-birds-trilogy.json b/data/game/an/angry-birds-trilogy.json new file mode 100644 index 000000000000..c496f9488792 --- /dev/null +++ b/data/game/an/angry-birds-trilogy.json @@ -0,0 +1,22 @@ +{ + "slug": "angry-birds-trilogy", + "name": "Angry Birds Trilogy", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2786549" + ], + "release_date": "2012-09-25", + "platforms": [ + "PlayStation 4", + "PlayStation Vita", + "Wii U", + "PlayStation 3", + "Wii" + ], + "genres": [ + "puzzle video game" + ], + "publishers": [ + "Activision" + ] +} diff --git a/data/game/an/angry-video-game-nerd-bundle.json b/data/game/an/angry-video-game-nerd-bundle.json new file mode 100644 index 000000000000..ab744c5a91f8 --- /dev/null +++ b/data/game/an/angry-video-game-nerd-bundle.json @@ -0,0 +1,12 @@ +{ + "slug": "angry-video-game-nerd-bundle", + "name": "Angry Video Game Nerd Bundle", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q104662355" + ], + "release_date": "2016-06-10", + "platforms": [ + "Microsoft Windows" + ] +} diff --git a/data/game/an/animal-crossing-new-horizons-happy-home-paradise.json b/data/game/an/animal-crossing-new-horizons-happy-home-paradise.json new file mode 100644 index 000000000000..9dfc61bc18fd --- /dev/null +++ b/data/game/an/animal-crossing-new-horizons-happy-home-paradise.json @@ -0,0 +1,18 @@ +{ + "slug": "animal-crossing-new-horizons-happy-home-paradise", + "name": "Animal Crossing: New Horizons – Happy Home Paradise", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108905220" + ], + "release_date": "2021-11-05", + "genres": [ + "life simulation game" + ], + "developers": [ + "Nintendo Entertainment Planning & Development" + ], + "publishers": [ + "Nintendo" + ] +} diff --git a/data/game/an/animation-arts-collection.json b/data/game/an/animation-arts-collection.json new file mode 100644 index 000000000000..3029bd6a17b7 --- /dev/null +++ b/data/game/an/animation-arts-collection.json @@ -0,0 +1,14 @@ +{ + "slug": "animation-arts-collection", + "name": "Animation Arts Collection", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q84602572" + ], + "platforms": [ + "Microsoft Windows" + ], + "publishers": [ + "Deep Silver" + ] +} diff --git a/data/game/an/anime-artist-2-cutest-girls-pack.json b/data/game/an/anime-artist-2-cutest-girls-pack.json new file mode 100644 index 000000000000..473a6df756ea --- /dev/null +++ b/data/game/an/anime-artist-2-cutest-girls-pack.json @@ -0,0 +1,18 @@ +{ + "slug": "anime-artist-2-cutest-girls-pack", + "name": "Anime Artist 2: Cutest Girls Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113285207" + ], + "release_date": "2020-06-09", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Neoclassic Games" + ], + "publishers": [ + "Neoclassic Games" + ] +} diff --git a/data/game/an/anime-artist-2-the-more-the-better-pack.json b/data/game/an/anime-artist-2-the-more-the-better-pack.json new file mode 100644 index 000000000000..da7fb44cec37 --- /dev/null +++ b/data/game/an/anime-artist-2-the-more-the-better-pack.json @@ -0,0 +1,18 @@ +{ + "slug": "anime-artist-2-the-more-the-better-pack", + "name": "Anime Artist 2: The More, The Better Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113285202" + ], + "release_date": "2020-02-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Neoclassic Games" + ], + "publishers": [ + "Neoclassic Games" + ] +} diff --git a/data/game/an/anime-artist-3-a-better-artist.json b/data/game/an/anime-artist-3-a-better-artist.json new file mode 100644 index 000000000000..016d62402829 --- /dev/null +++ b/data/game/an/anime-artist-3-a-better-artist.json @@ -0,0 +1,18 @@ +{ + "slug": "anime-artist-3-a-better-artist", + "name": "Anime Artist 3 - A better Artist", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113285209" + ], + "release_date": "2020-11-19", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Neoclassic Games" + ], + "publishers": [ + "Neoclassic Games" + ] +} diff --git a/data/game/an/anime-artist-3-extended-wardrobe.json b/data/game/an/anime-artist-3-extended-wardrobe.json new file mode 100644 index 000000000000..384571969560 --- /dev/null +++ b/data/game/an/anime-artist-3-extended-wardrobe.json @@ -0,0 +1,18 @@ +{ + "slug": "anime-artist-3-extended-wardrobe", + "name": "Anime Artist 3 - Extended Wardrobe", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113285210" + ], + "release_date": "2020-11-19", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Neoclassic Games" + ], + "publishers": [ + "Neoclassic Games" + ] +} diff --git a/data/game/an/anime-artist-elisa-the-innkeeper-pack.json b/data/game/an/anime-artist-elisa-the-innkeeper-pack.json new file mode 100644 index 000000000000..7758e4660e37 --- /dev/null +++ b/data/game/an/anime-artist-elisa-the-innkeeper-pack.json @@ -0,0 +1,18 @@ +{ + "slug": "anime-artist-elisa-the-innkeeper-pack", + "name": "Anime Artist - Elisa the Innkeeper Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113285199" + ], + "release_date": "2019-08-01", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Neoclassic Games" + ], + "publishers": [ + "Neoclassic Games" + ] +} diff --git a/data/game/an/anime-fighting-simulator.json b/data/game/an/anime-fighting-simulator.json new file mode 100644 index 000000000000..de8c842290ac --- /dev/null +++ b/data/game/an/anime-fighting-simulator.json @@ -0,0 +1,8 @@ +{ + "slug": "anime-fighting-simulator", + "name": "Anime Fighting Simulator", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127272610" + ] +} diff --git a/data/game/an/anno-1404-venice.json b/data/game/an/anno-1404-venice.json new file mode 100644 index 000000000000..ad5ebe19fbed --- /dev/null +++ b/data/game/an/anno-1404-venice.json @@ -0,0 +1,18 @@ +{ + "slug": "anno-1404-venice", + "name": "Anno 1404 Venice", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2851749" + ], + "release_date": "1999-11-30", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "construction and management simulation" + ], + "developers": [ + "Ubisoft Blue Byte" + ] +} diff --git a/data/game/an/anno-1503-royal-edition.json b/data/game/an/anno-1503-royal-edition.json new file mode 100644 index 000000000000..d406a2d70f89 --- /dev/null +++ b/data/game/an/anno-1503-royal-edition.json @@ -0,0 +1,8 @@ +{ + "slug": "anno-1503-royal-edition", + "name": "Anno 1503: Royal Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134179290" + ] +} diff --git a/data/game/an/anno-1503-treasures-monsters-and-pirates.json b/data/game/an/anno-1503-treasures-monsters-and-pirates.json new file mode 100644 index 000000000000..e153476b043c --- /dev/null +++ b/data/game/an/anno-1503-treasures-monsters-and-pirates.json @@ -0,0 +1,9 @@ +{ + "slug": "anno-1503-treasures-monsters-and-pirates", + "name": "Anno 1503: Treasures, Monsters and Pirates", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2090234" + ], + "release_date": "2004-05-01" +} diff --git a/data/game/an/anno-1602-new-islands-new-adventures.json b/data/game/an/anno-1602-new-islands-new-adventures.json new file mode 100644 index 000000000000..ea15e249cf6a --- /dev/null +++ b/data/game/an/anno-1602-new-islands-new-adventures.json @@ -0,0 +1,18 @@ +{ + "slug": "anno-1602-new-islands-new-adventures", + "name": "Anno 1602: New Islands, New Adventures", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2386732" + ], + "release_date": "1998-01-01", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Max Design" + ], + "publishers": [ + "Sunflowers Interactive Entertainment Software" + ] +} diff --git a/data/game/an/anno-1701-the-sunken-dragon.json b/data/game/an/anno-1701-the-sunken-dragon.json new file mode 100644 index 000000000000..f977911308b0 --- /dev/null +++ b/data/game/an/anno-1701-the-sunken-dragon.json @@ -0,0 +1,19 @@ +{ + "slug": "anno-1701-the-sunken-dragon", + "name": "Anno 1701: The Sunken Dragon", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q9155978" + ], + "release_date": "2007-01-01", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Related Designs" + ], + "publishers": [ + "Sunflowers Interactive Entertainment Software", + "Cenega" + ] +} diff --git a/data/game/an/anno-1800-console-edition.json b/data/game/an/anno-1800-console-edition.json new file mode 100644 index 000000000000..4e8381ad509b --- /dev/null +++ b/data/game/an/anno-1800-console-edition.json @@ -0,0 +1,15 @@ +{ + "slug": "anno-1800-console-edition", + "name": "Anno 1800 Console Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123173186" + ], + "release_date": "2023-04-17", + "platforms": [ + "Xbox Series X and Series S" + ], + "developers": [ + "Ubisoft Blue Byte" + ] +} diff --git a/data/game/an/anno-1800-seat-of-power.json b/data/game/an/anno-1800-seat-of-power.json new file mode 100644 index 000000000000..150f3ed5c7e1 --- /dev/null +++ b/data/game/an/anno-1800-seat-of-power.json @@ -0,0 +1,8 @@ +{ + "slug": "anno-1800-seat-of-power", + "name": "Anno 1800: Seat of Power", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131912017" + ] +} diff --git a/data/game/an/anno-1800-sunken-treasure.json b/data/game/an/anno-1800-sunken-treasure.json new file mode 100644 index 000000000000..b63509bdef26 --- /dev/null +++ b/data/game/an/anno-1800-sunken-treasure.json @@ -0,0 +1,11 @@ +{ + "slug": "anno-1800-sunken-treasure", + "name": "Anno 1800 - Sunken Treasure", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q129978995" + ], + "platforms": [ + "Microsoft Windows" + ] +} diff --git a/data/game/an/anno-2070-deep-ocean.json b/data/game/an/anno-2070-deep-ocean.json new file mode 100644 index 000000000000..7b2fcf173840 --- /dev/null +++ b/data/game/an/anno-2070-deep-ocean.json @@ -0,0 +1,16 @@ +{ + "slug": "anno-2070-deep-ocean", + "name": "Anno 2070: Deep Ocean", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q29840430" + ], + "release_date": "2012-01-01", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Related Designs", + "Ubisoft Blue Byte" + ] +} diff --git a/data/game/an/anno-2205-frontiers.json b/data/game/an/anno-2205-frontiers.json new file mode 100644 index 000000000000..32693c76eff6 --- /dev/null +++ b/data/game/an/anno-2205-frontiers.json @@ -0,0 +1,15 @@ +{ + "slug": "anno-2205-frontiers", + "name": "Anno 2205™ - Frontiers", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108215923" + ], + "release_date": "2016-10-04", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Ubisoft Blue Byte" + ] +} diff --git a/data/game/an/anno-2205-orbit.json b/data/game/an/anno-2205-orbit.json new file mode 100644 index 000000000000..d78b6045c574 --- /dev/null +++ b/data/game/an/anno-2205-orbit.json @@ -0,0 +1,15 @@ +{ + "slug": "anno-2205-orbit", + "name": "Anno 2205™ - Orbit", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108215922" + ], + "release_date": "2016-07-20", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Ubisoft Blue Byte" + ] +} diff --git a/data/game/an/anno-2205-tundra.json b/data/game/an/anno-2205-tundra.json new file mode 100644 index 000000000000..19b7688ff34d --- /dev/null +++ b/data/game/an/anno-2205-tundra.json @@ -0,0 +1,15 @@ +{ + "slug": "anno-2205-tundra", + "name": "Anno 2205™ - Tundra", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108215921" + ], + "release_date": "2016-02-29", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Ubisoft Blue Byte" + ] +} diff --git a/data/game/an/anno-history-collection.json b/data/game/an/anno-history-collection.json new file mode 100644 index 000000000000..c0c569d1d61e --- /dev/null +++ b/data/game/an/anno-history-collection.json @@ -0,0 +1,20 @@ +{ + "slug": "anno-history-collection", + "name": "Anno History Collection", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131912062" + ], + "release_date": "2020-06-26", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "real-time strategy", + "historical video game", + "city-building game" + ], + "developers": [ + "Ubisoft Mainz" + ] +} diff --git a/data/game/an/anothereal.json b/data/game/an/anothereal.json new file mode 100644 index 000000000000..931ab5d88b2c --- /dev/null +++ b/data/game/an/anothereal.json @@ -0,0 +1,18 @@ +{ + "slug": "anothereal", + "name": "Anothereal", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126948305" + ], + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "role-playing video game", + "bullet hell" + ], + "developers": [ + "Lena Raine" + ] +} diff --git a/data/game/an/antheads.json b/data/game/an/antheads.json new file mode 100644 index 000000000000..9b5ac652bcf3 --- /dev/null +++ b/data/game/an/antheads.json @@ -0,0 +1,15 @@ +{ + "slug": "antheads", + "name": "Antheads", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110982435" + ], + "release_date": "1990-01-01", + "platforms": [ + "Commodore Amiga" + ], + "publishers": [ + "Cinemaware" + ] +} diff --git a/data/game/ap/apache-overdrive-demo.json b/data/game/ap/apache-overdrive-demo.json new file mode 100644 index 000000000000..ba9fa9fbced8 --- /dev/null +++ b/data/game/ap/apache-overdrive-demo.json @@ -0,0 +1,8 @@ +{ + "slug": "apache-overdrive-demo", + "name": "Apache & Overdrive (Demo)", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126185251" + ] +} diff --git a/data/game/ap/aperture-science-3d.json b/data/game/ap/aperture-science-3d.json new file mode 100644 index 000000000000..3bd230c3b132 --- /dev/null +++ b/data/game/ap/aperture-science-3d.json @@ -0,0 +1,23 @@ +{ + "slug": "aperture-science-3d", + "name": "Aperture Science 3D", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123141729" + ], + "release_date": "2015-08-18", + "platforms": [ + "Nintendo DS" + ], + "genres": [ + "puzzle video game" + ], + "developers": [ + "Lobo", + "smealum" + ], + "publishers": [ + "smealum", + "Lobo" + ] +} diff --git a/data/game/ap/aperture-science-ds.json b/data/game/ap/aperture-science-ds.json new file mode 100644 index 000000000000..547838f9f610 --- /dev/null +++ b/data/game/ap/aperture-science-ds.json @@ -0,0 +1,23 @@ +{ + "slug": "aperture-science-ds", + "name": "Aperture Science DS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123009403" + ], + "release_date": "2013-08-21", + "platforms": [ + "Nintendo DS" + ], + "genres": [ + "puzzle video game" + ], + "developers": [ + "Lobo", + "smealum" + ], + "publishers": [ + "smealum", + "Lobo" + ] +} diff --git a/data/game/ap/apollo-justice-ace-attorney-trilogy.json b/data/game/ap/apollo-justice-ace-attorney-trilogy.json new file mode 100644 index 000000000000..d4404dfa3b0c --- /dev/null +++ b/data/game/ap/apollo-justice-ace-attorney-trilogy.json @@ -0,0 +1,17 @@ +{ + "slug": "apollo-justice-ace-attorney-trilogy", + "name": "Apollo Justice: Ace Attorney Trilogy", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124128412" + ], + "release_date": "2024-01-25", + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "visual novel" + ] +} diff --git a/data/game/aq/aq.json b/data/game/aq/aq.json new file mode 100644 index 000000000000..030477f9fc0c --- /dev/null +++ b/data/game/aq/aq.json @@ -0,0 +1,8 @@ +{ + "slug": "aq", + "name": "AQ", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q48938179" + ] +} diff --git a/data/game/aq/aquanox-the-angel-s-tears.json b/data/game/aq/aquanox-the-angel-s-tears.json new file mode 100644 index 000000000000..3cbdaebc5a84 --- /dev/null +++ b/data/game/aq/aquanox-the-angel-s-tears.json @@ -0,0 +1,8 @@ +{ + "slug": "aquanox-the-angel-s-tears", + "name": "AquaNox: The Angel's Tears", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124331633" + ] +} diff --git a/data/game/ar/aragami-nightfall.json b/data/game/ar/aragami-nightfall.json new file mode 100644 index 000000000000..f98ed9e0964c --- /dev/null +++ b/data/game/ar/aragami-nightfall.json @@ -0,0 +1,8 @@ +{ + "slug": "aragami-nightfall", + "name": "Aragami: Nightfall", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140403668" + ] +} diff --git a/data/game/ar/arc-the-lad-collection.json b/data/game/ar/arc-the-lad-collection.json new file mode 100644 index 000000000000..b5a44bc585a7 --- /dev/null +++ b/data/game/ar/arc-the-lad-collection.json @@ -0,0 +1,18 @@ +{ + "slug": "arc-the-lad-collection", + "name": "Arc the Lad Collection", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4785042" + ], + "release_date": "2002-04-18", + "genres": [ + "tactical role-playing game" + ], + "developers": [ + "Sony Interactive Entertainment" + ], + "publishers": [ + "Working Designs" + ] +} diff --git a/data/game/ar/arcade-classic-no-1-asteroids-missile-command.json b/data/game/ar/arcade-classic-no-1-asteroids-missile-command.json new file mode 100644 index 000000000000..b529eff54512 --- /dev/null +++ b/data/game/ar/arcade-classic-no-1-asteroids-missile-command.json @@ -0,0 +1,18 @@ +{ + "slug": "arcade-classic-no-1-asteroids-missile-command", + "name": "Arcade Classic No. 1: Asteroids / Missile Command", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63184643" + ], + "release_date": "1995-07-01", + "platforms": [ + "Game Boy" + ], + "developers": [ + "The Code Monkeys" + ], + "publishers": [ + "Nintendo" + ] +} diff --git a/data/game/ar/arcade-classic-no-2-centipede-millipede.json b/data/game/ar/arcade-classic-no-2-centipede-millipede.json new file mode 100644 index 000000000000..87211df0cc71 --- /dev/null +++ b/data/game/ar/arcade-classic-no-2-centipede-millipede.json @@ -0,0 +1,18 @@ +{ + "slug": "arcade-classic-no-2-centipede-millipede", + "name": "Arcade Classic No. 2: Centipede / Millipede", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63181477" + ], + "release_date": "1995-08-01", + "platforms": [ + "Game Boy" + ], + "developers": [ + "The Code Monkeys" + ], + "publishers": [ + "Nintendo" + ] +} diff --git a/data/game/ar/arcade-classics-q4785072.json b/data/game/ar/arcade-classics-q4785072.json new file mode 100644 index 000000000000..15e0400b7044 --- /dev/null +++ b/data/game/ar/arcade-classics-q4785072.json @@ -0,0 +1,21 @@ +{ + "slug": "arcade-classics-q4785072", + "name": "Arcade Classics", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4785072" + ], + "release_date": "1996-01-01", + "platforms": [ + "Philips CD-i" + ], + "genres": [ + "arcade" + ], + "developers": [ + "Namco" + ], + "publishers": [ + "Namco" + ] +} diff --git a/data/game/ar/arcade-classics-q4785073.json b/data/game/ar/arcade-classics-q4785073.json new file mode 100644 index 000000000000..0f7430fa750b --- /dev/null +++ b/data/game/ar/arcade-classics-q4785073.json @@ -0,0 +1,15 @@ +{ + "slug": "arcade-classics-q4785073", + "name": "Arcade Classics", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4785073" + ], + "release_date": "1996-01-01", + "platforms": [ + "Sega Genesis" + ], + "publishers": [ + "Sega" + ] +} diff --git a/data/game/ar/arcade-party-pak.json b/data/game/ar/arcade-party-pak.json new file mode 100644 index 000000000000..17fe82b6a1b6 --- /dev/null +++ b/data/game/ar/arcade-party-pak.json @@ -0,0 +1,12 @@ +{ + "slug": "arcade-party-pak", + "name": "Arcade Party Pak", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4785081" + ], + "release_date": "1999-09-30", + "publishers": [ + "Midway Games" + ] +} diff --git a/data/game/ar/arcade-s-greatest-hits-the-atari-collection-1.json b/data/game/ar/arcade-s-greatest-hits-the-atari-collection-1.json new file mode 100644 index 000000000000..04a756334d3f --- /dev/null +++ b/data/game/ar/arcade-s-greatest-hits-the-atari-collection-1.json @@ -0,0 +1,15 @@ +{ + "slug": "arcade-s-greatest-hits-the-atari-collection-1", + "name": "Arcade's Greatest Hits: The Atari Collection 1", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2859905" + ], + "release_date": "1996-12-31", + "platforms": [ + "Super Nintendo Entertainment System" + ], + "publishers": [ + "Midway Games" + ] +} diff --git a/data/game/ar/arcade-s-greatest-hits-the-atari-collection-2.json b/data/game/ar/arcade-s-greatest-hits-the-atari-collection-2.json new file mode 100644 index 000000000000..164c588f6ce2 --- /dev/null +++ b/data/game/ar/arcade-s-greatest-hits-the-atari-collection-2.json @@ -0,0 +1,12 @@ +{ + "slug": "arcade-s-greatest-hits-the-atari-collection-2", + "name": "Arcade's Greatest Hits: The Atari Collection 2", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4785052" + ], + "release_date": "1998-04-05", + "publishers": [ + "Midway Games" + ] +} diff --git a/data/game/ar/arcade-s-greatest-hits-the-midway-collection-2.json b/data/game/ar/arcade-s-greatest-hits-the-midway-collection-2.json new file mode 100644 index 000000000000..98f74a447895 --- /dev/null +++ b/data/game/ar/arcade-s-greatest-hits-the-midway-collection-2.json @@ -0,0 +1,8 @@ +{ + "slug": "arcade-s-greatest-hits-the-midway-collection-2", + "name": "Arcade's Greatest Hits: The Midway Collection 2", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63049481" + ] +} diff --git a/data/game/ar/arcade-smash-hits-q55365862.json b/data/game/ar/arcade-smash-hits-q55365862.json new file mode 100644 index 000000000000..495bacc4e92e --- /dev/null +++ b/data/game/ar/arcade-smash-hits-q55365862.json @@ -0,0 +1,8 @@ +{ + "slug": "arcade-smash-hits-q55365862", + "name": "Arcade Smash Hits", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q55365862" + ] +} diff --git a/data/game/ar/arcade-smash-hits.json b/data/game/ar/arcade-smash-hits.json new file mode 100644 index 000000000000..ff4748939b96 --- /dev/null +++ b/data/game/ar/arcade-smash-hits.json @@ -0,0 +1,15 @@ +{ + "slug": "arcade-smash-hits", + "name": "Arcade Smash Hits", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4785088" + ], + "release_date": "1992-01-01", + "genres": [ + "action game" + ], + "publishers": [ + "Virgin Interactive" + ] +} diff --git a/data/game/ar/arcania-fall-of-setarrif.json b/data/game/ar/arcania-fall-of-setarrif.json new file mode 100644 index 000000000000..f061b52e1b4a --- /dev/null +++ b/data/game/ar/arcania-fall-of-setarrif.json @@ -0,0 +1,23 @@ +{ + "slug": "arcania-fall-of-setarrif", + "name": "Arcania: Fall of Setarrif", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2054505" + ], + "release_date": "2011-10-24", + "platforms": [ + "PlayStation 4", + "PlayStation 3", + "Microsoft Windows" + ], + "genres": [ + "role-playing video game" + ], + "developers": [ + "Spellbound Entertainment" + ], + "publishers": [ + "THQ Nordic" + ] +} diff --git a/data/game/ar/ark-aberration.json b/data/game/ar/ark-aberration.json new file mode 100644 index 000000000000..eaa25a23490e --- /dev/null +++ b/data/game/ar/ark-aberration.json @@ -0,0 +1,13 @@ +{ + "slug": "ark-aberration", + "name": "ARK: Aberration", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113281381" + ], + "release_date": "2017-12-12", + "platforms": [ + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/game/ar/ark-extinction.json b/data/game/ar/ark-extinction.json new file mode 100644 index 000000000000..4fcc24fade49 --- /dev/null +++ b/data/game/ar/ark-extinction.json @@ -0,0 +1,13 @@ +{ + "slug": "ark-extinction", + "name": "ARK: Extinction", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113281393" + ], + "release_date": "2018-11-06", + "platforms": [ + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/game/ar/ark-genesis.json b/data/game/ar/ark-genesis.json new file mode 100644 index 000000000000..858658ccbfa6 --- /dev/null +++ b/data/game/ar/ark-genesis.json @@ -0,0 +1,8 @@ +{ + "slug": "ark-genesis", + "name": "Ark: Genesis", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140462285" + ] +} diff --git a/data/game/ar/ark-scorched-earth.json b/data/game/ar/ark-scorched-earth.json new file mode 100644 index 000000000000..1c0ed92ec59c --- /dev/null +++ b/data/game/ar/ark-scorched-earth.json @@ -0,0 +1,13 @@ +{ + "slug": "ark-scorched-earth", + "name": "ARK: Scorched Earth", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113281366" + ], + "release_date": "2016-09-01", + "platforms": [ + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/game/ar/ark-ultimate-survivor-edition.json b/data/game/ar/ark-ultimate-survivor-edition.json new file mode 100644 index 000000000000..b72c0fb065d0 --- /dev/null +++ b/data/game/ar/ark-ultimate-survivor-edition.json @@ -0,0 +1,14 @@ +{ + "slug": "ark-ultimate-survivor-edition", + "name": "ARK: Ultimate Survivor Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108507448" + ], + "release_date": "2021-05-26", + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 4", + "Microsoft Windows" + ] +} diff --git a/data/game/ar/arkane-anniversary-collection.json b/data/game/ar/arkane-anniversary-collection.json new file mode 100644 index 000000000000..39fb5cc61b94 --- /dev/null +++ b/data/game/ar/arkane-anniversary-collection.json @@ -0,0 +1,8 @@ +{ + "slug": "arkane-anniversary-collection", + "name": "Arkane Anniversary Collection", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140471206" + ] +} diff --git a/data/game/ar/arma-2-army-of-the-czech-republic.json b/data/game/ar/arma-2-army-of-the-czech-republic.json new file mode 100644 index 000000000000..90a7b4e1af96 --- /dev/null +++ b/data/game/ar/arma-2-army-of-the-czech-republic.json @@ -0,0 +1,21 @@ +{ + "slug": "arma-2-army-of-the-czech-republic", + "name": "ArmA 2: Army of the Czech Republic", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10855881" + ], + "release_date": "2012-07-30", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter" + ], + "developers": [ + "Bohemia Interactive" + ], + "publishers": [ + "Bohemia Interactive" + ] +} diff --git a/data/game/ar/arma-2-british-armed-forces.json b/data/game/ar/arma-2-british-armed-forces.json new file mode 100644 index 000000000000..c158fd136cf0 --- /dev/null +++ b/data/game/ar/arma-2-british-armed-forces.json @@ -0,0 +1,18 @@ +{ + "slug": "arma-2-british-armed-forces", + "name": "ArmA 2: British Armed Forces", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10855886" + ], + "release_date": "2010-08-28", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter" + ], + "developers": [ + "Bohemia Interactive" + ] +} diff --git a/data/game/ar/arma-2-operation-arrowhead.json b/data/game/ar/arma-2-operation-arrowhead.json new file mode 100644 index 000000000000..c56bdac882f7 --- /dev/null +++ b/data/game/ar/arma-2-operation-arrowhead.json @@ -0,0 +1,22 @@ +{ + "slug": "arma-2-operation-arrowhead", + "name": "ARMA 2: Operation Arrowhead", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3282443" + ], + "release_date": "2010-06-29", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "third-person shooter" + ], + "developers": [ + "Bohemia Interactive" + ], + "publishers": [ + "505 Games" + ] +} diff --git a/data/game/ar/arma-2-private-military-company.json b/data/game/ar/arma-2-private-military-company.json new file mode 100644 index 000000000000..ed62b45dede5 --- /dev/null +++ b/data/game/ar/arma-2-private-military-company.json @@ -0,0 +1,18 @@ +{ + "slug": "arma-2-private-military-company", + "name": "ArmA 2: Private Military Company", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10855890" + ], + "release_date": "2010-11-30", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter" + ], + "developers": [ + "Bohemia Interactive" + ] +} diff --git a/data/game/ar/arma-3-apex.json b/data/game/ar/arma-3-apex.json new file mode 100644 index 000000000000..b6aaa419f5a8 --- /dev/null +++ b/data/game/ar/arma-3-apex.json @@ -0,0 +1,19 @@ +{ + "slug": "arma-3-apex", + "name": "ArmA 3: Apex", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q26161491" + ], + "release_date": "2016-07-11", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Bohemia Interactive" + ], + "publishers": [ + "Bohemia Interactive" + ] +} diff --git a/data/game/ar/arma-3-contact.json b/data/game/ar/arma-3-contact.json new file mode 100644 index 000000000000..091483cc9fb7 --- /dev/null +++ b/data/game/ar/arma-3-contact.json @@ -0,0 +1,18 @@ +{ + "slug": "arma-3-contact", + "name": "Arma 3: Contact", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q66456877" + ], + "release_date": "2019-07-25", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Bohemia Interactive" + ], + "publishers": [ + "Bohemia Interactive" + ] +} diff --git a/data/game/ar/arma-3-creator-dlc-global-mobilization-cold-war-germany.json b/data/game/ar/arma-3-creator-dlc-global-mobilization-cold-war-germany.json new file mode 100644 index 000000000000..efc506b8ad88 --- /dev/null +++ b/data/game/ar/arma-3-creator-dlc-global-mobilization-cold-war-germany.json @@ -0,0 +1,8 @@ +{ + "slug": "arma-3-creator-dlc-global-mobilization-cold-war-germany", + "name": "Arma 3 Creator DLC: Global Mobilization - Cold War Germany", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113444291" + ] +} diff --git a/data/game/ar/arma-3-helicopters.json b/data/game/ar/arma-3-helicopters.json new file mode 100644 index 000000000000..f19a5d5e2851 --- /dev/null +++ b/data/game/ar/arma-3-helicopters.json @@ -0,0 +1,19 @@ +{ + "slug": "arma-3-helicopters", + "name": "Arma 3 Helicopters", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22683054" + ], + "release_date": "2014-11-04", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Bohemia Interactive" + ], + "publishers": [ + "Bohemia Interactive" + ] +} diff --git a/data/game/ar/arma-3-jets.json b/data/game/ar/arma-3-jets.json new file mode 100644 index 000000000000..f6b3d9cbc9dc --- /dev/null +++ b/data/game/ar/arma-3-jets.json @@ -0,0 +1,18 @@ +{ + "slug": "arma-3-jets", + "name": "Arma 3 Jets", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113282723" + ], + "release_date": "2017-05-16", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Bohemia Interactive" + ], + "publishers": [ + "Bohemia Interactive" + ] +} diff --git a/data/game/ar/arma-3-karts.json b/data/game/ar/arma-3-karts.json new file mode 100644 index 000000000000..9b6737f81aac --- /dev/null +++ b/data/game/ar/arma-3-karts.json @@ -0,0 +1,19 @@ +{ + "slug": "arma-3-karts", + "name": "Arma 3: Karts", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22683057" + ], + "release_date": "2014-05-29", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Bohemia Interactive" + ], + "publishers": [ + "Bohemia Interactive" + ] +} diff --git a/data/game/ar/arma-3-laws-of-war.json b/data/game/ar/arma-3-laws-of-war.json new file mode 100644 index 000000000000..6d67bca072cf --- /dev/null +++ b/data/game/ar/arma-3-laws-of-war.json @@ -0,0 +1,18 @@ +{ + "slug": "arma-3-laws-of-war", + "name": "Arma 3 Laws of War", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113282733" + ], + "release_date": "2017-09-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Bohemia Interactive" + ], + "publishers": [ + "Bohemia Interactive" + ] +} diff --git a/data/game/ar/arma-3-malden.json b/data/game/ar/arma-3-malden.json new file mode 100644 index 000000000000..f560f17b210d --- /dev/null +++ b/data/game/ar/arma-3-malden.json @@ -0,0 +1,18 @@ +{ + "slug": "arma-3-malden", + "name": "Arma 3 Malden", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113282743" + ], + "release_date": "2017-06-22", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Bohemia Interactive" + ], + "publishers": [ + "Bohemia Interactive" + ] +} diff --git a/data/game/ar/arma-3-marksmen.json b/data/game/ar/arma-3-marksmen.json new file mode 100644 index 000000000000..fa094ab049bf --- /dev/null +++ b/data/game/ar/arma-3-marksmen.json @@ -0,0 +1,19 @@ +{ + "slug": "arma-3-marksmen", + "name": "Arma 3 Marksmen", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22683059" + ], + "release_date": "2015-04-08", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Bohemia Interactive" + ], + "publishers": [ + "Bohemia Interactive" + ] +} diff --git a/data/game/ar/arma-3-tac-ops-mission-pack.json b/data/game/ar/arma-3-tac-ops-mission-pack.json new file mode 100644 index 000000000000..d1b41f43699b --- /dev/null +++ b/data/game/ar/arma-3-tac-ops-mission-pack.json @@ -0,0 +1,18 @@ +{ + "slug": "arma-3-tac-ops-mission-pack", + "name": "Arma 3 Tac-Ops Mission Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113282754" + ], + "release_date": "2017-11-30", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Bohemia Interactive" + ], + "publishers": [ + "Bohemia Interactive" + ] +} diff --git a/data/game/ar/arma-3-tanks.json b/data/game/ar/arma-3-tanks.json new file mode 100644 index 000000000000..7e7a66f09bc9 --- /dev/null +++ b/data/game/ar/arma-3-tanks.json @@ -0,0 +1,18 @@ +{ + "slug": "arma-3-tanks", + "name": "Arma 3 Tanks", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113282760" + ], + "release_date": "2018-04-11", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Bohemia Interactive" + ], + "publishers": [ + "Bohemia Interactive" + ] +} diff --git a/data/game/ar/arma-3-zeus.json b/data/game/ar/arma-3-zeus.json new file mode 100644 index 000000000000..df1f0e0f0ed3 --- /dev/null +++ b/data/game/ar/arma-3-zeus.json @@ -0,0 +1,18 @@ +{ + "slug": "arma-3-zeus", + "name": "Arma 3 Zeus", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113282768" + ], + "release_date": "2014-04-10", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Bohemia Interactive" + ], + "publishers": [ + "Bohemia Interactive" + ] +} diff --git a/data/game/ar/arma-armed-assault-gold-edition.json b/data/game/ar/arma-armed-assault-gold-edition.json new file mode 100644 index 000000000000..570f686de991 --- /dev/null +++ b/data/game/ar/arma-armed-assault-gold-edition.json @@ -0,0 +1,12 @@ +{ + "slug": "arma-armed-assault-gold-edition", + "name": "ArmA: Armed Assault - Gold Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125998263" + ], + "release_date": "2011-07-13", + "platforms": [ + "Microsoft Windows" + ] +} diff --git a/data/game/ar/arma-queen-s-gambit.json b/data/game/ar/arma-queen-s-gambit.json new file mode 100644 index 000000000000..9977a619eb1b --- /dev/null +++ b/data/game/ar/arma-queen-s-gambit.json @@ -0,0 +1,23 @@ +{ + "slug": "arma-queen-s-gambit", + "name": "ARMA: Queen's Gambit", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16267561" + ], + "release_date": "2007-09-28", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "third-person shooter", + "tactical shooter" + ], + "developers": [ + "Bohemia Interactive" + ], + "publishers": [ + "505 Games" + ] +} diff --git a/data/game/ar/around-every-corner.json b/data/game/ar/around-every-corner.json new file mode 100644 index 000000000000..79fdef99141e --- /dev/null +++ b/data/game/ar/around-every-corner.json @@ -0,0 +1,12 @@ +{ + "slug": "around-every-corner", + "name": "Around Every Corner", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16746447" + ], + "release_date": "2012-11-08", + "platforms": [ + "PlayStation 4" + ] +} diff --git a/data/game/ar/arsenal-q116143185.json b/data/game/ar/arsenal-q116143185.json new file mode 100644 index 000000000000..00617bda0fa0 --- /dev/null +++ b/data/game/ar/arsenal-q116143185.json @@ -0,0 +1,18 @@ +{ + "slug": "arsenal-q116143185", + "name": "Arsenal", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116143185" + ], + "release_date": "2015-08-18", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter" + ], + "developers": [ + "ROLVe Community" + ] +} diff --git a/data/game/ar/art-and-video-pack.json b/data/game/ar/art-and-video-pack.json new file mode 100644 index 000000000000..9f274a6fd192 --- /dev/null +++ b/data/game/ar/art-and-video-pack.json @@ -0,0 +1,12 @@ +{ + "slug": "art-and-video-pack", + "name": "Art and Video pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q77983907" + ], + "release_date": "2019-06-07", + "platforms": [ + "Microsoft Windows" + ] +} diff --git a/data/game/ar/art-of-fighting-anthology.json b/data/game/ar/art-of-fighting-anthology.json new file mode 100644 index 000000000000..fd18f9f7a151 --- /dev/null +++ b/data/game/ar/art-of-fighting-anthology.json @@ -0,0 +1,12 @@ +{ + "slug": "art-of-fighting-anthology", + "name": "Art of Fighting Anthology", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2864703" + ], + "release_date": "2007-01-01", + "genres": [ + "fighting game" + ] +} diff --git a/data/game/ar/artigo.json b/data/game/ar/artigo.json new file mode 100644 index 000000000000..ba5050875be2 --- /dev/null +++ b/data/game/ar/artigo.json @@ -0,0 +1,11 @@ +{ + "slug": "artigo", + "name": "ARTigo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106104570" + ], + "genres": [ + "human-based computation game" + ] +} diff --git a/data/game/ar/arx-fatalis-demo.json b/data/game/ar/arx-fatalis-demo.json new file mode 100644 index 000000000000..18eead3e942c --- /dev/null +++ b/data/game/ar/arx-fatalis-demo.json @@ -0,0 +1,23 @@ +{ + "slug": "arx-fatalis-demo", + "name": "Arx Fatalis Demo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122705468" + ], + "release_date": "2007-04-04", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "action role-playing game", + "dark fantasy video game" + ], + "developers": [ + "Arkane Studios" + ], + "publishers": [ + "Arkane Studios" + ] +} diff --git a/data/game/as/aselia-the-eternal.json b/data/game/as/aselia-the-eternal.json new file mode 100644 index 000000000000..cfb44e6a6c1c --- /dev/null +++ b/data/game/as/aselia-the-eternal.json @@ -0,0 +1,8 @@ +{ + "slug": "aselia-the-eternal", + "name": "Aselia the Eternal", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11550381" + ] +} diff --git a/data/game/as/asphalt-8-airborne.json b/data/game/as/asphalt-8-airborne.json new file mode 100644 index 000000000000..d80b9c766f87 --- /dev/null +++ b/data/game/as/asphalt-8-airborne.json @@ -0,0 +1,24 @@ +{ + "slug": "asphalt-8-airborne", + "name": "Asphalt 8: Airborne+", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107677003" + ], + "release_date": "2021-08-27", + "platforms": [ + "iPadOS", + "tvOS", + "iOS", + "macOS" + ], + "genres": [ + "racing video game" + ], + "developers": [ + "Gameloft" + ], + "publishers": [ + "Gameloft" + ] +} diff --git a/data/game/as/assassin-s-creed-1-2-welcome-pack.json b/data/game/as/assassin-s-creed-1-2-welcome-pack.json new file mode 100644 index 000000000000..9182a7d3070e --- /dev/null +++ b/data/game/as/assassin-s-creed-1-2-welcome-pack.json @@ -0,0 +1,9 @@ +{ + "slug": "assassin-s-creed-1-2-welcome-pack", + "name": "Assassin's Creed 1+2 Welcome Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q88321338" + ], + "release_date": "2012-07-19" +} diff --git a/data/game/as/assassin-s-creed-chronicles-trilogy.json b/data/game/as/assassin-s-creed-chronicles-trilogy.json new file mode 100644 index 000000000000..4c0897445060 --- /dev/null +++ b/data/game/as/assassin-s-creed-chronicles-trilogy.json @@ -0,0 +1,8 @@ +{ + "slug": "assassin-s-creed-chronicles-trilogy", + "name": "Assassin's Creed Chronicles: Trilogy", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q66203689" + ] +} diff --git a/data/game/as/assassin-s-creed-connor-saga.json b/data/game/as/assassin-s-creed-connor-saga.json new file mode 100644 index 000000000000..faf1357a9eeb --- /dev/null +++ b/data/game/as/assassin-s-creed-connor-saga.json @@ -0,0 +1,9 @@ +{ + "slug": "assassin-s-creed-connor-saga", + "name": "Assassin's Creed Connor Saga", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q88320259" + ], + "release_date": "2015-05-28" +} diff --git a/data/game/as/assassin-s-creed-iii-the-tyranny-of-king-washington.json b/data/game/as/assassin-s-creed-iii-the-tyranny-of-king-washington.json new file mode 100644 index 000000000000..a1b96779a3d3 --- /dev/null +++ b/data/game/as/assassin-s-creed-iii-the-tyranny-of-king-washington.json @@ -0,0 +1,14 @@ +{ + "slug": "assassin-s-creed-iii-the-tyranny-of-king-washington", + "name": "Assassin's Creed III: The Tyranny of King Washington", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111234859" + ], + "platforms": [ + "PlayStation 4", + "Wii U", + "PlayStation 3", + "Microsoft Windows" + ] +} diff --git a/data/game/as/assassin-s-creed-odyssey-legacy-of-the-first-blade.json b/data/game/as/assassin-s-creed-odyssey-legacy-of-the-first-blade.json new file mode 100644 index 000000000000..588df120db24 --- /dev/null +++ b/data/game/as/assassin-s-creed-odyssey-legacy-of-the-first-blade.json @@ -0,0 +1,12 @@ +{ + "slug": "assassin-s-creed-odyssey-legacy-of-the-first-blade", + "name": "Assassin's Creed Odyssey – Legacy of the First Blade", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106093174" + ], + "release_date": "2018-12-04", + "platforms": [ + "Microsoft Windows" + ] +} diff --git a/data/game/as/assassin-s-creed-shadows-claws-of-awaji.json b/data/game/as/assassin-s-creed-shadows-claws-of-awaji.json new file mode 100644 index 000000000000..6198e468efa1 --- /dev/null +++ b/data/game/as/assassin-s-creed-shadows-claws-of-awaji.json @@ -0,0 +1,12 @@ +{ + "slug": "assassin-s-creed-shadows-claws-of-awaji", + "name": "Assassin's Creed Shadows: Claws of Awaji", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136817710" + ], + "platforms": [ + "PlayStation 5", + "Microsoft Windows" + ] +} diff --git a/data/game/as/assassin-s-creed-syndicate-gold-edition.json b/data/game/as/assassin-s-creed-syndicate-gold-edition.json new file mode 100644 index 000000000000..c8e2d71f77cb --- /dev/null +++ b/data/game/as/assassin-s-creed-syndicate-gold-edition.json @@ -0,0 +1,8 @@ +{ + "slug": "assassin-s-creed-syndicate-gold-edition", + "name": "Assassin's Creed Syndicate Gold Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q92203842" + ] +} diff --git a/data/game/as/assassin-s-creed-syndicate-jack-the-ripper.json b/data/game/as/assassin-s-creed-syndicate-jack-the-ripper.json new file mode 100644 index 000000000000..98adc2a39808 --- /dev/null +++ b/data/game/as/assassin-s-creed-syndicate-jack-the-ripper.json @@ -0,0 +1,12 @@ +{ + "slug": "assassin-s-creed-syndicate-jack-the-ripper", + "name": "Assassin's Creed Syndicate: Jack the Ripper", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108857447" + ], + "release_date": "2015-12-22", + "platforms": [ + "Microsoft Windows" + ] +} diff --git a/data/game/as/assassin-s-creed-the-rebel-collection.json b/data/game/as/assassin-s-creed-the-rebel-collection.json new file mode 100644 index 000000000000..e2301010cdbf --- /dev/null +++ b/data/game/as/assassin-s-creed-the-rebel-collection.json @@ -0,0 +1,8 @@ +{ + "slug": "assassin-s-creed-the-rebel-collection", + "name": "Assassin's Creed: The Rebel Collection", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q99367119" + ] +} diff --git a/data/game/as/assassin-s-creed-valhalla-complete-edition.json b/data/game/as/assassin-s-creed-valhalla-complete-edition.json new file mode 100644 index 000000000000..9172e7696eda --- /dev/null +++ b/data/game/as/assassin-s-creed-valhalla-complete-edition.json @@ -0,0 +1,15 @@ +{ + "slug": "assassin-s-creed-valhalla-complete-edition", + "name": "Assassin's Creed Valhalla Complete Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111794287" + ], + "release_date": "2022-04-10", + "platforms": [ + "Xbox Series X and Series S" + ], + "developers": [ + "Ubisoft Sofia" + ] +} diff --git a/data/game/as/assassin-s-creed-valhalla-dawn-of-ragnar-k.json b/data/game/as/assassin-s-creed-valhalla-dawn-of-ragnar-k.json new file mode 100644 index 000000000000..8de08b8230f8 --- /dev/null +++ b/data/game/as/assassin-s-creed-valhalla-dawn-of-ragnar-k.json @@ -0,0 +1,15 @@ +{ + "slug": "assassin-s-creed-valhalla-dawn-of-ragnar-k", + "name": "Assassin's Creed Valhalla: Dawn of Ragnarök", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111794113" + ], + "release_date": "2022-04-10", + "platforms": [ + "Xbox Series X and Series S" + ], + "developers": [ + "Ubisoft Sofia" + ] +} diff --git a/data/game/as/assassin-s-creed-valhalla-ragnar-k-edition.json b/data/game/as/assassin-s-creed-valhalla-ragnar-k-edition.json new file mode 100644 index 000000000000..3d7f6ef54dc5 --- /dev/null +++ b/data/game/as/assassin-s-creed-valhalla-ragnar-k-edition.json @@ -0,0 +1,15 @@ +{ + "slug": "assassin-s-creed-valhalla-ragnar-k-edition", + "name": "Assassin's Creed Valhalla Ragnarök Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111794105" + ], + "release_date": "2022-04-10", + "platforms": [ + "Xbox Series X and Series S" + ], + "developers": [ + "Ubisoft Sofia" + ] +} diff --git a/data/game/as/assassin-s-creed-valhalla-the-siege-of-paris.json b/data/game/as/assassin-s-creed-valhalla-the-siege-of-paris.json new file mode 100644 index 000000000000..ec33094412c7 --- /dev/null +++ b/data/game/as/assassin-s-creed-valhalla-the-siege-of-paris.json @@ -0,0 +1,12 @@ +{ + "slug": "assassin-s-creed-valhalla-the-siege-of-paris", + "name": "Assassin's Creed Valhalla: The Siege of Paris", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111794910" + ], + "release_date": "2021-08-12", + "platforms": [ + "Xbox Series X and Series S" + ] +} diff --git a/data/game/as/assassin-s-creed-valhalla-tombs-of-the-fallen-pack-2.json b/data/game/as/assassin-s-creed-valhalla-tombs-of-the-fallen-pack-2.json new file mode 100644 index 000000000000..b6d5de880b24 --- /dev/null +++ b/data/game/as/assassin-s-creed-valhalla-tombs-of-the-fallen-pack-2.json @@ -0,0 +1,13 @@ +{ + "slug": "assassin-s-creed-valhalla-tombs-of-the-fallen-pack-2", + "name": "Assassin's Creed Valhalla: Tombs of the Fallen Pack 2", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136511457" + ], + "release_date": "2022-09-27", + "platforms": [ + "PlayStation 5", + "PlayStation 4" + ] +} diff --git a/data/game/as/assassin-s-creed-valhalla-wrath-of-the-druids.json b/data/game/as/assassin-s-creed-valhalla-wrath-of-the-druids.json new file mode 100644 index 000000000000..0c9887836f0f --- /dev/null +++ b/data/game/as/assassin-s-creed-valhalla-wrath-of-the-druids.json @@ -0,0 +1,15 @@ +{ + "slug": "assassin-s-creed-valhalla-wrath-of-the-druids", + "name": "Assassin's Creed Valhalla: Wrath of the Druids", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110878548" + ], + "release_date": "2021-05-13", + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 4", + "PlayStation 5", + "Microsoft Windows" + ] +} diff --git a/data/game/as/assault-gear.json b/data/game/as/assault-gear.json new file mode 100644 index 000000000000..7d0d7c2890d3 --- /dev/null +++ b/data/game/as/assault-gear.json @@ -0,0 +1,11 @@ +{ + "slug": "assault-gear", + "name": "Assault Gear", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q55737478" + ], + "publishers": [ + "Netmarble" + ] +} diff --git a/data/game/as/assetto-corsa-porsche-pack-ii.json b/data/game/as/assetto-corsa-porsche-pack-ii.json new file mode 100644 index 000000000000..026e26ad98d8 --- /dev/null +++ b/data/game/as/assetto-corsa-porsche-pack-ii.json @@ -0,0 +1,13 @@ +{ + "slug": "assetto-corsa-porsche-pack-ii", + "name": "Assetto Corsa: Porsche Pack II", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q86107105" + ], + "release_date": "2016-11-22", + "platforms": [ + "PlayStation 4", + "Microsoft Windows" + ] +} diff --git a/data/game/as/asterigos-curse-of-the-stars-deluxe-edition.json b/data/game/as/asterigos-curse-of-the-stars-deluxe-edition.json new file mode 100644 index 000000000000..7db62e9bbb47 --- /dev/null +++ b/data/game/as/asterigos-curse-of-the-stars-deluxe-edition.json @@ -0,0 +1,15 @@ +{ + "slug": "asterigos-curse-of-the-stars-deluxe-edition", + "name": "Asterigos: Curse of the Stars Deluxe Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122336633" + ], + "release_date": "2023-02-23", + "platforms": [ + "Xbox Series X and Series S" + ], + "developers": [ + "Acme Gamestudio" + ] +} diff --git a/data/game/as/astro-warrior-pit-pot.json b/data/game/as/astro-warrior-pit-pot.json new file mode 100644 index 000000000000..7aa54d7c08f6 --- /dev/null +++ b/data/game/as/astro-warrior-pit-pot.json @@ -0,0 +1,8 @@ +{ + "slug": "astro-warrior-pit-pot", + "name": "Astro Warrior / Pit Pot", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q119038618" + ] +} diff --git a/data/game/as/astroneer-glitchwalkers.json b/data/game/as/astroneer-glitchwalkers.json new file mode 100644 index 000000000000..b871cb61b3d5 --- /dev/null +++ b/data/game/as/astroneer-glitchwalkers.json @@ -0,0 +1,8 @@ +{ + "slug": "astroneer-glitchwalkers", + "name": "Astroneer: Glitchwalkers", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140471299" + ] +} diff --git a/data/game/at/atari-anniversary-edition.json b/data/game/at/atari-anniversary-edition.json new file mode 100644 index 000000000000..c43d8b772a9f --- /dev/null +++ b/data/game/at/atari-anniversary-edition.json @@ -0,0 +1,16 @@ +{ + "slug": "atari-anniversary-edition", + "name": "Atari Anniversary Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2868781" + ], + "release_date": "2002-03-01", + "platforms": [ + "Game Boy Advance", + "Microsoft Windows" + ], + "genres": [ + "arcade" + ] +} diff --git a/data/game/at/atari-anthology.json b/data/game/at/atari-anthology.json new file mode 100644 index 000000000000..29aff8f9097d --- /dev/null +++ b/data/game/at/atari-anthology.json @@ -0,0 +1,19 @@ +{ + "slug": "atari-anthology", + "name": "Atari Anthology", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2868782" + ], + "release_date": "2003-11-11", + "platforms": [ + "PlayStation Portable", + "Microsoft Windows" + ], + "developers": [ + "Digital Eclipse" + ], + "publishers": [ + "Atari Interactive" + ] +} diff --git a/data/game/at/atari-flashback-classics-vol-2.json b/data/game/at/atari-flashback-classics-vol-2.json new file mode 100644 index 000000000000..f99411656ea9 --- /dev/null +++ b/data/game/at/atari-flashback-classics-vol-2.json @@ -0,0 +1,15 @@ +{ + "slug": "atari-flashback-classics-vol-2", + "name": "Atari Flashback Classics Vol.2", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63114939" + ], + "release_date": "2016-01-01", + "platforms": [ + "PlayStation 4" + ], + "publishers": [ + "Atari Interactive" + ] +} diff --git a/data/game/at/atari-greatest-hits.json b/data/game/at/atari-greatest-hits.json new file mode 100644 index 000000000000..54287b57cf45 --- /dev/null +++ b/data/game/at/atari-greatest-hits.json @@ -0,0 +1,19 @@ +{ + "slug": "atari-greatest-hits", + "name": "Atari Greatest Hits", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4812833" + ], + "release_date": "2010-11-02", + "platforms": [ + "Nintendo DS", + "iOS" + ], + "genres": [ + "arcade" + ], + "publishers": [ + "Atari" + ] +} diff --git a/data/game/at/atari-masterpieces-vol-i.json b/data/game/at/atari-masterpieces-vol-i.json new file mode 100644 index 000000000000..7f026830ec82 --- /dev/null +++ b/data/game/at/atari-masterpieces-vol-i.json @@ -0,0 +1,14 @@ +{ + "slug": "atari-masterpieces-vol-i", + "name": "Atari Masterpieces Vol. I", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q753660" + ], + "platforms": [ + "N-Gage" + ], + "publishers": [ + "Atari" + ] +} diff --git a/data/game/at/atari-masterpieces-vol-ii.json b/data/game/at/atari-masterpieces-vol-ii.json new file mode 100644 index 000000000000..39760aa0f7d7 --- /dev/null +++ b/data/game/at/atari-masterpieces-vol-ii.json @@ -0,0 +1,11 @@ +{ + "slug": "atari-masterpieces-vol-ii", + "name": "Atari Masterpieces Vol. II", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q55984370" + ], + "platforms": [ + "N-Gage" + ] +} diff --git a/data/game/at/atb-doom.json b/data/game/at/atb-doom.json new file mode 100644 index 000000000000..93405fee2b29 --- /dev/null +++ b/data/game/at/atb-doom.json @@ -0,0 +1,8 @@ +{ + "slug": "atb-doom", + "name": "ATB Doom", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124473062" + ] +} diff --git a/data/game/at/athena-sword.json b/data/game/at/athena-sword.json new file mode 100644 index 000000000000..7639d545d7c3 --- /dev/null +++ b/data/game/at/athena-sword.json @@ -0,0 +1,14 @@ +{ + "slug": "athena-sword", + "name": "Athena Sword", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60677629" + ], + "genres": [ + "first-person shooter", + "action game", + "tactical shooter", + "shooter game" + ] +} diff --git a/data/game/at/atomic-heart-annihilation-instinct.json b/data/game/at/atomic-heart-annihilation-instinct.json new file mode 100644 index 000000000000..789a7530d67d --- /dev/null +++ b/data/game/at/atomic-heart-annihilation-instinct.json @@ -0,0 +1,22 @@ +{ + "slug": "atomic-heart-annihilation-instinct", + "name": "Atomic Heart: Annihilation Instinct", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120019046" + ], + "release_date": "2023-08-02", + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 5", + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "action role-playing game" + ], + "publishers": [ + "Astrum Entertainment" + ] +} diff --git a/data/game/at/atomic-heart-enchantment-under-the-sea.json b/data/game/at/atomic-heart-enchantment-under-the-sea.json new file mode 100644 index 000000000000..9b32fcf78125 --- /dev/null +++ b/data/game/at/atomic-heart-enchantment-under-the-sea.json @@ -0,0 +1,19 @@ +{ + "slug": "atomic-heart-enchantment-under-the-sea", + "name": "Atomic Heart: Enchantment Under the Sea", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123838101" + ], + "release_date": "2025-01-28", + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 4", + "PlayStation 5", + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "action role-playing game" + ] +} diff --git a/data/game/at/atomic-heart-trapped-in-limbo.json b/data/game/at/atomic-heart-trapped-in-limbo.json new file mode 100644 index 000000000000..783af11c673a --- /dev/null +++ b/data/game/at/atomic-heart-trapped-in-limbo.json @@ -0,0 +1,22 @@ +{ + "slug": "atomic-heart-trapped-in-limbo", + "name": "Atomic Heart: Trapped in Limbo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122766455" + ], + "release_date": "2024-02-06", + "platforms": [ + "PlayStation 5", + "Xbox Series X and Series S", + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "action role-playing game" + ], + "publishers": [ + "4Divinity" + ] +} diff --git a/data/game/at/atv-quad-power-racing-3.json b/data/game/at/atv-quad-power-racing-3.json new file mode 100644 index 000000000000..567e3418db48 --- /dev/null +++ b/data/game/at/atv-quad-power-racing-3.json @@ -0,0 +1,8 @@ +{ + "slug": "atv-quad-power-racing-3", + "name": "ATV: Quad Power Racing 3", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q55602977" + ] +} diff --git a/data/game/au/australian-release-of-chrono-trigger-for-nintendo-ds.json b/data/game/au/australian-release-of-chrono-trigger-for-nintendo-ds.json new file mode 100644 index 000000000000..2e9f26a70bb2 --- /dev/null +++ b/data/game/au/australian-release-of-chrono-trigger-for-nintendo-ds.json @@ -0,0 +1,9 @@ +{ + "slug": "australian-release-of-chrono-trigger-for-nintendo-ds", + "name": "Australian Release of Chrono Trigger for Nintendo DS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q15063322" + ], + "release_date": "2009-02-03" +} diff --git a/data/game/av/avalon-q4827545.json b/data/game/av/avalon-q4827545.json new file mode 100644 index 000000000000..b4bcb6047847 --- /dev/null +++ b/data/game/av/avalon-q4827545.json @@ -0,0 +1,9 @@ +{ + "slug": "avalon-q4827545", + "name": "Avalon", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4827545" + ], + "release_date": "1989-01-01" +} diff --git a/data/game/av/avatar-avenue-trial.json b/data/game/av/avatar-avenue-trial.json new file mode 100644 index 000000000000..f6ae68937b2c --- /dev/null +++ b/data/game/av/avatar-avenue-trial.json @@ -0,0 +1,12 @@ +{ + "slug": "avatar-avenue-trial", + "name": "Avatar Avenue (Trial)", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126068015" + ], + "release_date": "2009-12-04", + "genres": [ + "simulation video game" + ] +} diff --git a/data/game/av/avatar-connection-trial.json b/data/game/av/avatar-connection-trial.json new file mode 100644 index 000000000000..d4f9c60510e1 --- /dev/null +++ b/data/game/av/avatar-connection-trial.json @@ -0,0 +1,12 @@ +{ + "slug": "avatar-connection-trial", + "name": "Avatar Connection (Trial)", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126064768" + ], + "release_date": "2011-08-31", + "genres": [ + "game show video game" + ] +} diff --git a/data/game/av/avatar-laser-wars-2-trial.json b/data/game/av/avatar-laser-wars-2-trial.json new file mode 100644 index 000000000000..972979261f78 --- /dev/null +++ b/data/game/av/avatar-laser-wars-2-trial.json @@ -0,0 +1,12 @@ +{ + "slug": "avatar-laser-wars-2-trial", + "name": "Avatar Laser Wars 2 (Trial)", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126067220" + ], + "release_date": "2012-08-08", + "genres": [ + "first-person shooter" + ] +} diff --git a/data/game/av/avatar-laser-wars-trial.json b/data/game/av/avatar-laser-wars-trial.json new file mode 100644 index 000000000000..0065ac54ec5f --- /dev/null +++ b/data/game/av/avatar-laser-wars-trial.json @@ -0,0 +1,12 @@ +{ + "slug": "avatar-laser-wars-trial", + "name": "Avatar Laser Wars (Trial)", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126066592" + ], + "release_date": "2010-10-20", + "genres": [ + "first-person shooter" + ] +} diff --git a/data/game/av/avatar-warfare-trial.json b/data/game/av/avatar-warfare-trial.json new file mode 100644 index 000000000000..df6c042fa2ba --- /dev/null +++ b/data/game/av/avatar-warfare-trial.json @@ -0,0 +1,12 @@ +{ + "slug": "avatar-warfare-trial", + "name": "Avatar Warfare! (Trial)", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126063785" + ], + "release_date": "2013-06-19", + "genres": [ + "first-person shooter" + ] +} diff --git a/data/game/ax/axe-rock.json b/data/game/ax/axe-rock.json new file mode 100644 index 000000000000..ddb418f945cc --- /dev/null +++ b/data/game/ax/axe-rock.json @@ -0,0 +1,9 @@ +{ + "slug": "axe-rock", + "name": "Axe Rock", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112582104" + ], + "release_date": "2013-04-18" +} diff --git a/data/game/az/azure-striker-gunvolt-striker-pack.json b/data/game/az/azure-striker-gunvolt-striker-pack.json new file mode 100644 index 000000000000..8a1e5cae1a51 --- /dev/null +++ b/data/game/az/azure-striker-gunvolt-striker-pack.json @@ -0,0 +1,13 @@ +{ + "slug": "azure-striker-gunvolt-striker-pack", + "name": "Azure Striker Gunvolt: Striker Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q49664182" + ], + "release_date": "2016-01-01", + "platforms": [ + "PlayStation 4", + "Nintendo 3DS" + ] +} diff --git a/data/game/b-/b-max.json b/data/game/b-/b-max.json new file mode 100644 index 000000000000..3ea0fa1a2bc1 --- /dev/null +++ b/data/game/b-/b-max.json @@ -0,0 +1,8 @@ +{ + "slug": "b-max", + "name": "B-MAX", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11331193" + ] +} diff --git a/data/game/ba/baby-s-day-out.json b/data/game/ba/baby-s-day-out.json new file mode 100644 index 000000000000..302dd0988d75 --- /dev/null +++ b/data/game/ba/baby-s-day-out.json @@ -0,0 +1,14 @@ +{ + "slug": "baby-s-day-out", + "name": "Baby's Day Out", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17189786" + ], + "platforms": [ + "Sega Genesis" + ], + "genres": [ + "puzzle video game" + ] +} diff --git a/data/game/ba/baby-shaker.json b/data/game/ba/baby-shaker.json new file mode 100644 index 000000000000..46e737db741c --- /dev/null +++ b/data/game/ba/baby-shaker.json @@ -0,0 +1,21 @@ +{ + "slug": "baby-shaker", + "name": "Baby Shaker", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131449384" + ], + "release_date": "2009-04-20", + "platforms": [ + "iOS" + ], + "genres": [ + "satirical video game" + ], + "developers": [ + "Sikalosoft" + ], + "publishers": [ + "Sikalosoft" + ] +} diff --git a/data/game/ba/back-to-the-future-the-game-episode-4-double-visions.json b/data/game/ba/back-to-the-future-the-game-episode-4-double-visions.json new file mode 100644 index 000000000000..ac0ec5844fb8 --- /dev/null +++ b/data/game/ba/back-to-the-future-the-game-episode-4-double-visions.json @@ -0,0 +1,20 @@ +{ + "slug": "back-to-the-future-the-game-episode-4-double-visions", + "name": "Back to the Future: The Game - Episode 4: Double Visions", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4034782" + ], + "release_date": "2011-04-29", + "platforms": [ + "macOS", + "PlayStation 3", + "Microsoft Windows" + ], + "genres": [ + "adventure video game" + ], + "developers": [ + "Telltale Games" + ] +} diff --git a/data/game/ba/backgammon-q106753118.json b/data/game/ba/backgammon-q106753118.json new file mode 100644 index 000000000000..217731339f6c --- /dev/null +++ b/data/game/ba/backgammon-q106753118.json @@ -0,0 +1,22 @@ +{ + "slug": "backgammon-q106753118", + "name": "Backgammon+", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106753118" + ], + "release_date": "2021-04-02", + "platforms": [ + "iPadOS", + "iOS" + ], + "genres": [ + "backgammon video game" + ], + "developers": [ + "Adikus" + ], + "publishers": [ + "Adikus" + ] +} diff --git a/data/game/ba/backpacker-3-americana.json b/data/game/ba/backpacker-3-americana.json new file mode 100644 index 000000000000..609c1b4e750a --- /dev/null +++ b/data/game/ba/backpacker-3-americana.json @@ -0,0 +1,22 @@ +{ + "slug": "backpacker-3-americana", + "name": "Backpacker 3: Americana", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q59591142" + ], + "release_date": "2004-10-29", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "educational entertainment", + "quiz video game" + ], + "developers": [ + "Pan Vision" + ], + "publishers": [ + "PAN Vision Publishing" + ] +} diff --git a/data/game/ba/backpacker-3-mediterraneo.json b/data/game/ba/backpacker-3-mediterraneo.json new file mode 100644 index 000000000000..90a38aa85c69 --- /dev/null +++ b/data/game/ba/backpacker-3-mediterraneo.json @@ -0,0 +1,21 @@ +{ + "slug": "backpacker-3-mediterraneo", + "name": "Backpacker 3: Mediterraneo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q59591141" + ], + "release_date": "2004-10-29", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "educational entertainment" + ], + "developers": [ + "Pan Vision" + ], + "publishers": [ + "Pan Vision" + ] +} diff --git a/data/game/ba/backpacker-3-the-collection.json b/data/game/ba/backpacker-3-the-collection.json new file mode 100644 index 000000000000..1a9d4a279ae2 --- /dev/null +++ b/data/game/ba/backpacker-3-the-collection.json @@ -0,0 +1,21 @@ +{ + "slug": "backpacker-3-the-collection", + "name": "Backpacker 3: The Collection", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q59636086" + ], + "release_date": "2006-01-16", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "educational entertainment" + ], + "developers": [ + "Pan Vision" + ], + "publishers": [ + "Pan Vision" + ] +} diff --git a/data/game/ba/baddest-of-the-bands.json b/data/game/ba/baddest-of-the-bands.json new file mode 100644 index 000000000000..ff459ceb57f5 --- /dev/null +++ b/data/game/ba/baddest-of-the-bands.json @@ -0,0 +1,23 @@ +{ + "slug": "baddest-of-the-bands", + "name": "Baddest of the Bands", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135448930" + ], + "release_date": "2008-10-27", + "platforms": [ + "PlayStation 3", + "Wii", + "Microsoft Windows" + ], + "genres": [ + "graphic adventure game" + ], + "developers": [ + "Telltale Games" + ], + "publishers": [ + "Telltale Games" + ] +} diff --git a/data/game/ba/badland-q106800567.json b/data/game/ba/badland-q106800567.json new file mode 100644 index 000000000000..c8fda0679860 --- /dev/null +++ b/data/game/ba/badland-q106800567.json @@ -0,0 +1,20 @@ +{ + "slug": "badland-q106800567", + "name": "Badland+", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106800567" + ], + "release_date": "2021-04-02", + "platforms": [ + "tvOS", + "iPadOS", + "iOS" + ], + "developers": [ + "Frogmind" + ], + "publishers": [ + "Frogmind" + ] +} diff --git a/data/game/ba/baldi-s-basics-field-trip.json b/data/game/ba/baldi-s-basics-field-trip.json new file mode 100644 index 000000000000..5db2d3195e16 --- /dev/null +++ b/data/game/ba/baldi-s-basics-field-trip.json @@ -0,0 +1,19 @@ +{ + "slug": "baldi-s-basics-field-trip", + "name": "Baldi's Basics - Field Trip", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q61338188" + ], + "release_date": "2018-07-24", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Micah McGonigal" + ], + "publishers": [ + "Micah McGonigal" + ] +} diff --git a/data/game/ba/baldur-s-gate-enhanced-edition-siege-of-dragonspear.json b/data/game/ba/baldur-s-gate-enhanced-edition-siege-of-dragonspear.json new file mode 100644 index 000000000000..4fcf7b9b1825 --- /dev/null +++ b/data/game/ba/baldur-s-gate-enhanced-edition-siege-of-dragonspear.json @@ -0,0 +1,26 @@ +{ + "slug": "baldur-s-gate-enhanced-edition-siege-of-dragonspear", + "name": "Baldur's Gate: Enhanced Edition - Siege of Dragonspear", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q20712140" + ], + "release_date": "2016-03-31", + "platforms": [ + "PlayStation 4", + "Mac", + "iOS", + "macOS", + "Microsoft Windows" + ], + "genres": [ + "role-playing video game" + ], + "developers": [ + "Beamdog" + ], + "publishers": [ + "Beamdog", + "Skybound Entertainment" + ] +} diff --git a/data/game/ba/baldur-s-gate-ii-the-collection.json b/data/game/ba/baldur-s-gate-ii-the-collection.json new file mode 100644 index 000000000000..35f0890acb8c --- /dev/null +++ b/data/game/ba/baldur-s-gate-ii-the-collection.json @@ -0,0 +1,8 @@ +{ + "slug": "baldur-s-gate-ii-the-collection", + "name": "Baldur's Gate II: The Collection", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q132133687" + ] +} diff --git a/data/game/ba/baldur-s-gate-ii-throne-of-bhaal.json b/data/game/ba/baldur-s-gate-ii-throne-of-bhaal.json new file mode 100644 index 000000000000..186ea90a403e --- /dev/null +++ b/data/game/ba/baldur-s-gate-ii-throne-of-bhaal.json @@ -0,0 +1,23 @@ +{ + "slug": "baldur-s-gate-ii-throne-of-bhaal", + "name": "Baldur's Gate II: Throne of Bhaal", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2880740" + ], + "release_date": "2001-06-21", + "platforms": [ + "Classic Mac OS", + "macOS", + "Microsoft Windows" + ], + "genres": [ + "role-playing video game" + ], + "developers": [ + "BioWare" + ], + "publishers": [ + "Black Isle Studios" + ] +} diff --git a/data/game/ba/baldur-s-gate-iii-the-black-hound.json b/data/game/ba/baldur-s-gate-iii-the-black-hound.json new file mode 100644 index 000000000000..a490365b54e7 --- /dev/null +++ b/data/game/ba/baldur-s-gate-iii-the-black-hound.json @@ -0,0 +1,21 @@ +{ + "slug": "baldur-s-gate-iii-the-black-hound", + "name": "Baldur's Gate III: The Black Hound", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4850488" + ], + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "role-playing video game" + ], + "developers": [ + "Black Isle Studios" + ], + "publishers": [ + "Interplay Entertainment" + ] +} diff --git a/data/game/ba/baldur-s-gate-tales-of-the-sword-coast.json b/data/game/ba/baldur-s-gate-tales-of-the-sword-coast.json new file mode 100644 index 000000000000..eb7b5354c9b0 --- /dev/null +++ b/data/game/ba/baldur-s-gate-tales-of-the-sword-coast.json @@ -0,0 +1,22 @@ +{ + "slug": "baldur-s-gate-tales-of-the-sword-coast", + "name": "Baldur's Gate: Tales of the Sword Coast", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2617580" + ], + "release_date": "1999-04-30", + "platforms": [ + "Classic Mac OS", + "Microsoft Windows" + ], + "genres": [ + "role-playing video game" + ], + "developers": [ + "BioWare" + ], + "publishers": [ + "Black Isle Studios" + ] +} diff --git a/data/game/ba/baldur-s-gate-the-original-saga.json b/data/game/ba/baldur-s-gate-the-original-saga.json new file mode 100644 index 000000000000..de353d3a12f2 --- /dev/null +++ b/data/game/ba/baldur-s-gate-the-original-saga.json @@ -0,0 +1,8 @@ +{ + "slug": "baldur-s-gate-the-original-saga", + "name": "Baldur's Gate: The Original Saga", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120836059" + ] +} diff --git a/data/game/ba/baredoom.json b/data/game/ba/baredoom.json new file mode 100644 index 000000000000..04c661edb687 --- /dev/null +++ b/data/game/ba/baredoom.json @@ -0,0 +1,8 @@ +{ + "slug": "baredoom", + "name": "bareDOOM", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124658478" + ] +} diff --git a/data/game/ba/barkley-2.json b/data/game/ba/barkley-2.json new file mode 100644 index 000000000000..196c4342784a --- /dev/null +++ b/data/game/ba/barkley-2.json @@ -0,0 +1,14 @@ +{ + "slug": "barkley-2", + "name": "Barkley 2", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4861076" + ], + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "action role-playing game" + ] +} diff --git a/data/game/ba/bassmaster-fishing-2022-2022-bassmaster-classic.json b/data/game/ba/bassmaster-fishing-2022-2022-bassmaster-classic.json new file mode 100644 index 000000000000..0dd234289a68 --- /dev/null +++ b/data/game/ba/bassmaster-fishing-2022-2022-bassmaster-classic.json @@ -0,0 +1,19 @@ +{ + "slug": "bassmaster-fishing-2022-2022-bassmaster-classic", + "name": "Bassmaster Fishing 2022: 2022 Bassmaster Classic", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111107341" + ], + "release_date": "2022-02-17", + "platforms": [ + "Xbox Series X and Series S", + "Microsoft Windows" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/ba/batman-arkham-trilogy.json b/data/game/ba/batman-arkham-trilogy.json new file mode 100644 index 000000000000..84284993e33e --- /dev/null +++ b/data/game/ba/batman-arkham-trilogy.json @@ -0,0 +1,19 @@ +{ + "slug": "batman-arkham-trilogy", + "name": "Batman: Arkham Trilogy", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q119833230" + ], + "release_date": "2023-11-03", + "genres": [ + "action game" + ], + "developers": [ + "Rocksteady Studios" + ], + "publishers": [ + "Nintendo", + "Warner Bros. Games" + ] +} diff --git a/data/game/ba/batman-death-in-the-family.json b/data/game/ba/batman-death-in-the-family.json new file mode 100644 index 000000000000..a8f3d8ccd054 --- /dev/null +++ b/data/game/ba/batman-death-in-the-family.json @@ -0,0 +1,22 @@ +{ + "slug": "batman-death-in-the-family", + "name": "Batman: Death in the Family", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q98537283" + ], + "release_date": "2020-10-13", + "genres": [ + "crime film", + "thriller film", + "superhero film", + "interactive film", + "drama film", + "fantasy film", + "action film", + "horror film", + "war film", + "science fiction film", + "mystery film" + ] +} diff --git a/data/game/ba/batman-return-to-arkham.json b/data/game/ba/batman-return-to-arkham.json new file mode 100644 index 000000000000..f539ad980ea0 --- /dev/null +++ b/data/game/ba/batman-return-to-arkham.json @@ -0,0 +1,9 @@ +{ + "slug": "batman-return-to-arkham", + "name": "Batman: Return to Arkham", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28677198" + ], + "release_date": "2016-01-01" +} diff --git a/data/game/ba/batman-the-telltale-series-episode-1-realm-of-shadows.json b/data/game/ba/batman-the-telltale-series-episode-1-realm-of-shadows.json new file mode 100644 index 000000000000..412bf7466244 --- /dev/null +++ b/data/game/ba/batman-the-telltale-series-episode-1-realm-of-shadows.json @@ -0,0 +1,25 @@ +{ + "slug": "batman-the-telltale-series-episode-1-realm-of-shadows", + "name": "Batman: The Telltale Series - Episode 1: Realm of Shadows", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107136695" + ], + "release_date": "2016-08-02", + "platforms": [ + "PlayStation 4", + "iOS", + "PlayStation 3", + "Microsoft Windows" + ], + "genres": [ + "graphic adventure game", + "episodic video game" + ], + "developers": [ + "Telltale Games" + ], + "publishers": [ + "Telltale Games" + ] +} diff --git a/data/game/ba/batman-the-telltale-series-episode-2-children-of-arkham.json b/data/game/ba/batman-the-telltale-series-episode-2-children-of-arkham.json new file mode 100644 index 000000000000..d75b324136aa --- /dev/null +++ b/data/game/ba/batman-the-telltale-series-episode-2-children-of-arkham.json @@ -0,0 +1,25 @@ +{ + "slug": "batman-the-telltale-series-episode-2-children-of-arkham", + "name": "Batman: The Telltale Series - Episode 2: Children of Arkham", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q66788935" + ], + "release_date": "2016-09-20", + "platforms": [ + "PlayStation 4", + "iOS", + "PlayStation 3", + "Microsoft Windows" + ], + "genres": [ + "graphic adventure game", + "episodic video game" + ], + "developers": [ + "Telltale Games" + ], + "publishers": [ + "Telltale Games" + ] +} diff --git a/data/game/ba/batman-the-telltale-series-episode-3-new-world-order.json b/data/game/ba/batman-the-telltale-series-episode-3-new-world-order.json new file mode 100644 index 000000000000..f960a6c3c0d2 --- /dev/null +++ b/data/game/ba/batman-the-telltale-series-episode-3-new-world-order.json @@ -0,0 +1,25 @@ +{ + "slug": "batman-the-telltale-series-episode-3-new-world-order", + "name": "Batman: The Telltale Series - Episode 3: New World Order", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107136849" + ], + "release_date": "2016-10-25", + "platforms": [ + "PlayStation 4", + "iOS", + "PlayStation 3", + "Microsoft Windows" + ], + "genres": [ + "graphic adventure game", + "episodic video game" + ], + "developers": [ + "Telltale Games" + ], + "publishers": [ + "Telltale Games" + ] +} diff --git a/data/game/ba/batman-the-telltale-series-episode-4-guardian-of-gotham.json b/data/game/ba/batman-the-telltale-series-episode-4-guardian-of-gotham.json new file mode 100644 index 000000000000..d63cea3a2e61 --- /dev/null +++ b/data/game/ba/batman-the-telltale-series-episode-4-guardian-of-gotham.json @@ -0,0 +1,29 @@ +{ + "slug": "batman-the-telltale-series-episode-4-guardian-of-gotham", + "name": "Batman: The Telltale Series - Episode 4: Guardian of Gotham", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107136901" + ], + "release_date": "2016-08-02", + "platforms": [ + "PlayStation 4", + "Mac", + "iOS", + "macOS", + "PlayStation 3", + "Microsoft Windows" + ], + "genres": [ + "graphic adventure game", + "episodic video game" + ], + "developers": [ + "Telltale Games", + "lowland" + ], + "publishers": [ + "lowland", + "Telltale Games" + ] +} diff --git a/data/game/ba/battle-field-creator.json b/data/game/ba/battle-field-creator.json new file mode 100644 index 000000000000..78e9e5eedd8d --- /dev/null +++ b/data/game/ba/battle-field-creator.json @@ -0,0 +1,18 @@ +{ + "slug": "battle-field-creator", + "name": "Battle Field Creator", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123914646" + ], + "release_date": "1994-01-01", + "platforms": [ + "Commodore Amiga" + ], + "genres": [ + "turn-based strategy video game" + ], + "publishers": [ + "The Software Society" + ] +} diff --git a/data/game/ba/battle-isle-2-titan-s-legacy.json b/data/game/ba/battle-isle-2-titan-s-legacy.json new file mode 100644 index 000000000000..328feae955fc --- /dev/null +++ b/data/game/ba/battle-isle-2-titan-s-legacy.json @@ -0,0 +1,8 @@ +{ + "slug": "battle-isle-2-titan-s-legacy", + "name": "Battle Isle 2: Titan's Legacy", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123909311" + ] +} diff --git a/data/game/ba/battle-isle-93-the-moon-of-chromos.json b/data/game/ba/battle-isle-93-the-moon-of-chromos.json new file mode 100644 index 000000000000..8cac529bde35 --- /dev/null +++ b/data/game/ba/battle-isle-93-the-moon-of-chromos.json @@ -0,0 +1,8 @@ +{ + "slug": "battle-isle-93-the-moon-of-chromos", + "name": "Battle Isle '93: The Moon of Chromos", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123910690" + ] +} diff --git a/data/game/ba/battle-isle-platinum.json b/data/game/ba/battle-isle-platinum.json new file mode 100644 index 000000000000..ac9b9af6f9a9 --- /dev/null +++ b/data/game/ba/battle-isle-platinum.json @@ -0,0 +1,8 @@ +{ + "slug": "battle-isle-platinum", + "name": "Battle Isle Platinum", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123910477" + ] +} diff --git a/data/game/ba/battle-isle-scenario-disk-volume-one.json b/data/game/ba/battle-isle-scenario-disk-volume-one.json new file mode 100644 index 000000000000..8a21bb3aa0ad --- /dev/null +++ b/data/game/ba/battle-isle-scenario-disk-volume-one.json @@ -0,0 +1,11 @@ +{ + "slug": "battle-isle-scenario-disk-volume-one", + "name": "Battle Isle: Scenario Disk Volume One", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123910681" + ], + "developers": [ + "Ubisoft Blue Byte" + ] +} diff --git a/data/game/ba/battle-realms-winter-of-the-wolf.json b/data/game/ba/battle-realms-winter-of-the-wolf.json new file mode 100644 index 000000000000..622249916039 --- /dev/null +++ b/data/game/ba/battle-realms-winter-of-the-wolf.json @@ -0,0 +1,18 @@ +{ + "slug": "battle-realms-winter-of-the-wolf", + "name": "Battle Realms: Winter of the Wolf", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4870098" + ], + "release_date": "2002-11-05", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "real-time strategy" + ], + "developers": [ + "Liquid Entertainment" + ] +} diff --git a/data/game/ba/battle-survive-hentai-nudity-18.json b/data/game/ba/battle-survive-hentai-nudity-18.json new file mode 100644 index 000000000000..2aaa3333e54c --- /dev/null +++ b/data/game/ba/battle-survive-hentai-nudity-18.json @@ -0,0 +1,24 @@ +{ + "slug": "battle-survive-hentai-nudity-18", + "name": "Battle Survive Hentai - Nudity (18+)", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q129787179" + ], + "release_date": "2019-11-23", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "action game", + "third-person shooter", + "erotic video game", + "battle royale game" + ], + "developers": [ + "CggtGroup" + ], + "publishers": [ + "CggtGroup" + ] +} diff --git a/data/game/ba/battlefield-1942-secret-weapons-of-wwii.json b/data/game/ba/battlefield-1942-secret-weapons-of-wwii.json new file mode 100644 index 000000000000..70bfdbfe7d4d --- /dev/null +++ b/data/game/ba/battlefield-1942-secret-weapons-of-wwii.json @@ -0,0 +1,24 @@ +{ + "slug": "battlefield-1942-secret-weapons-of-wwii", + "name": "Battlefield 1942: Secret Weapons of WWII", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2891828" + ], + "release_date": "2003-09-04", + "platforms": [ + "Mac", + "macOS", + "Microsoft Windows" + ], + "genres": [ + "first-person shooter" + ], + "developers": [ + "DICE" + ], + "publishers": [ + "Electronic Arts", + "Aspyr" + ] +} diff --git a/data/game/ba/battlefield-2-armored-fury.json b/data/game/ba/battlefield-2-armored-fury.json new file mode 100644 index 000000000000..26f59ae110e6 --- /dev/null +++ b/data/game/ba/battlefield-2-armored-fury.json @@ -0,0 +1,8 @@ +{ + "slug": "battlefield-2-armored-fury", + "name": "Battlefield 2: Armored Fury", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q9651859" + ] +} diff --git a/data/game/ba/battlefield-2-euro-force.json b/data/game/ba/battlefield-2-euro-force.json new file mode 100644 index 000000000000..4e001ee49277 --- /dev/null +++ b/data/game/ba/battlefield-2-euro-force.json @@ -0,0 +1,14 @@ +{ + "slug": "battlefield-2-euro-force", + "name": "Battlefield 2: Euro Force", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17187195" + ], + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter" + ] +} diff --git a/data/game/ba/battlefield-2-special-forces.json b/data/game/ba/battlefield-2-special-forces.json new file mode 100644 index 000000000000..a6502fec656d --- /dev/null +++ b/data/game/ba/battlefield-2-special-forces.json @@ -0,0 +1,18 @@ +{ + "slug": "battlefield-2-special-forces", + "name": "Battlefield 2: Special Forces", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2745646" + ], + "release_date": "2005-11-01", + "genres": [ + "first-person shooter" + ], + "developers": [ + "DICE" + ], + "publishers": [ + "Electronic Arts" + ] +} diff --git a/data/game/ba/battlefield-2142-northern-strike.json b/data/game/ba/battlefield-2142-northern-strike.json new file mode 100644 index 000000000000..84088854f686 --- /dev/null +++ b/data/game/ba/battlefield-2142-northern-strike.json @@ -0,0 +1,17 @@ +{ + "slug": "battlefield-2142-northern-strike", + "name": "Battlefield 2142: Northern Strike", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2891833" + ], + "genres": [ + "first-person shooter" + ], + "developers": [ + "DICE" + ], + "publishers": [ + "Electronic Arts" + ] +} diff --git a/data/game/ba/battlefield-3-armored-kill.json b/data/game/ba/battlefield-3-armored-kill.json new file mode 100644 index 000000000000..d61c87200cef --- /dev/null +++ b/data/game/ba/battlefield-3-armored-kill.json @@ -0,0 +1,19 @@ +{ + "slug": "battlefield-3-armored-kill", + "name": "Battlefield 3: Armored Kill", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q66788958" + ], + "release_date": "2012-09-18", + "platforms": [ + "PlayStation 3", + "Microsoft Windows" + ], + "developers": [ + "DICE" + ], + "publishers": [ + "Electronic Arts" + ] +} diff --git a/data/game/ba/battlefield-3-back-to-karkand.json b/data/game/ba/battlefield-3-back-to-karkand.json new file mode 100644 index 000000000000..96474b8e2269 --- /dev/null +++ b/data/game/ba/battlefield-3-back-to-karkand.json @@ -0,0 +1,19 @@ +{ + "slug": "battlefield-3-back-to-karkand", + "name": "Battlefield 3 – Back to Karkand", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q66788955" + ], + "release_date": "2011-12-13", + "platforms": [ + "PlayStation 3", + "Microsoft Windows" + ], + "developers": [ + "DICE" + ], + "publishers": [ + "Electronic Arts" + ] +} diff --git a/data/game/ba/battlefield-3-close-quarters.json b/data/game/ba/battlefield-3-close-quarters.json new file mode 100644 index 000000000000..8a1c6fcd80ed --- /dev/null +++ b/data/game/ba/battlefield-3-close-quarters.json @@ -0,0 +1,8 @@ +{ + "slug": "battlefield-3-close-quarters", + "name": "Battlefield 3: Close Quarters", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q66788959" + ] +} diff --git a/data/game/ba/battlefield-3-end-game.json b/data/game/ba/battlefield-3-end-game.json new file mode 100644 index 000000000000..5a6ac5cea66d --- /dev/null +++ b/data/game/ba/battlefield-3-end-game.json @@ -0,0 +1,8 @@ +{ + "slug": "battlefield-3-end-game", + "name": "Battlefield 3: End Game", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123384038" + ] +} diff --git a/data/game/ba/battlefield-4-china-rising.json b/data/game/ba/battlefield-4-china-rising.json new file mode 100644 index 000000000000..c2b2b78ecafe --- /dev/null +++ b/data/game/ba/battlefield-4-china-rising.json @@ -0,0 +1,20 @@ +{ + "slug": "battlefield-4-china-rising", + "name": "Battlefield 4: China Rising", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q66788960" + ], + "release_date": "2013-12-03", + "platforms": [ + "PlayStation 4", + "PlayStation 3", + "Microsoft Windows" + ], + "developers": [ + "Electronic Arts" + ], + "publishers": [ + "Electronic Arts" + ] +} diff --git a/data/game/ba/battlefield-4-final-stand.json b/data/game/ba/battlefield-4-final-stand.json new file mode 100644 index 000000000000..7829ff2d04bb --- /dev/null +++ b/data/game/ba/battlefield-4-final-stand.json @@ -0,0 +1,20 @@ +{ + "slug": "battlefield-4-final-stand", + "name": "Battlefield 4: Final Stand", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q66788961" + ], + "release_date": "2014-12-02", + "platforms": [ + "PlayStation 4", + "PlayStation 3", + "Microsoft Windows" + ], + "developers": [ + "DICE" + ], + "publishers": [ + "Electronic Arts" + ] +} diff --git a/data/game/ba/battlefield-4-premium-edition.json b/data/game/ba/battlefield-4-premium-edition.json new file mode 100644 index 000000000000..6d8ae19835bf --- /dev/null +++ b/data/game/ba/battlefield-4-premium-edition.json @@ -0,0 +1,8 @@ +{ + "slug": "battlefield-4-premium-edition", + "name": "Battlefield 4 Premium Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q92203579" + ] +} diff --git a/data/game/ba/battlefield-4-second-assault.json b/data/game/ba/battlefield-4-second-assault.json new file mode 100644 index 000000000000..9b130228f292 --- /dev/null +++ b/data/game/ba/battlefield-4-second-assault.json @@ -0,0 +1,20 @@ +{ + "slug": "battlefield-4-second-assault", + "name": "Battlefield 4: Second Assault", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q66788962" + ], + "release_date": "2014-03-04", + "platforms": [ + "PlayStation 4", + "PlayStation 3", + "Microsoft Windows" + ], + "developers": [ + "Electronic Arts" + ], + "publishers": [ + "Electronic Arts" + ] +} diff --git a/data/game/ba/battlefield-bad-company-2-ultimate-edition.json b/data/game/ba/battlefield-bad-company-2-ultimate-edition.json new file mode 100644 index 000000000000..bd684151bc33 --- /dev/null +++ b/data/game/ba/battlefield-bad-company-2-ultimate-edition.json @@ -0,0 +1,8 @@ +{ + "slug": "battlefield-bad-company-2-ultimate-edition", + "name": "Battlefield: Bad Company 2 Ultimate Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q66788965" + ] +} diff --git a/data/game/ba/battlefield-bad-company-2-vietnam.json b/data/game/ba/battlefield-bad-company-2-vietnam.json new file mode 100644 index 000000000000..40d83e2c9d0b --- /dev/null +++ b/data/game/ba/battlefield-bad-company-2-vietnam.json @@ -0,0 +1,18 @@ +{ + "slug": "battlefield-bad-company-2-vietnam", + "name": "Battlefield: Bad Company 2: Vietnam", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3636869" + ], + "release_date": "2010-12-18", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "DICE" + ], + "publishers": [ + "Electronic Arts" + ] +} diff --git a/data/game/ba/battlefield-bundle.json b/data/game/ba/battlefield-bundle.json new file mode 100644 index 000000000000..ac44160a17fd --- /dev/null +++ b/data/game/ba/battlefield-bundle.json @@ -0,0 +1,18 @@ +{ + "slug": "battlefield-bundle", + "name": "Battlefield Bundle", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q92204140" + ], + "release_date": "2015-06-24", + "platforms": [ + "PlayStation 4" + ], + "developers": [ + "DICE" + ], + "publishers": [ + "Electronic Arts" + ] +} diff --git a/data/game/ba/battlefield-mobile.json b/data/game/ba/battlefield-mobile.json new file mode 100644 index 000000000000..5ed07e7c5e0d --- /dev/null +++ b/data/game/ba/battlefield-mobile.json @@ -0,0 +1,18 @@ +{ + "slug": "battlefield-mobile", + "name": "Battlefield Mobile", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108395644" + ], + "release_date": "2021-01-01", + "genres": [ + "first-person shooter" + ], + "developers": [ + "Industrial Toys" + ], + "publishers": [ + "Electronic Arts" + ] +} diff --git a/data/game/ba/battleheart-legacy-q115240295.json b/data/game/ba/battleheart-legacy-q115240295.json new file mode 100644 index 000000000000..8c8c9912ed64 --- /dev/null +++ b/data/game/ba/battleheart-legacy-q115240295.json @@ -0,0 +1,13 @@ +{ + "slug": "battleheart-legacy-q115240295", + "name": "Battleheart Legacy+", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115240295" + ], + "release_date": "2022-11-04", + "platforms": [ + "iPadOS", + "iOS" + ] +} diff --git a/data/game/ba/battletoads-q55210617.json b/data/game/ba/battletoads-q55210617.json new file mode 100644 index 000000000000..2a1d5eab3b17 --- /dev/null +++ b/data/game/ba/battletoads-q55210617.json @@ -0,0 +1,21 @@ +{ + "slug": "battletoads-q55210617", + "name": "Battletoads", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q55210617" + ], + "release_date": "2020-08-20", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "beat 'em up" + ], + "developers": [ + "Rare Ltd." + ], + "publishers": [ + "Xbox Game Studios" + ] +} diff --git a/data/game/bc/bc.json b/data/game/bc/bc.json new file mode 100644 index 000000000000..281b17113663 --- /dev/null +++ b/data/game/bc/bc.json @@ -0,0 +1,14 @@ +{ + "slug": "bc", + "name": "BC", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4835261" + ], + "genres": [ + "action-adventure game" + ], + "publishers": [ + "Xbox Game Studios" + ] +} diff --git a/data/game/bd/bdsm-big-drunk-satanic-massacre-demo.json b/data/game/bd/bdsm-big-drunk-satanic-massacre-demo.json new file mode 100644 index 000000000000..a68f34f6ad1d --- /dev/null +++ b/data/game/bd/bdsm-big-drunk-satanic-massacre-demo.json @@ -0,0 +1,21 @@ +{ + "slug": "bdsm-big-drunk-satanic-massacre-demo", + "name": "BDSM: Big Drunk Satanic Massacre Demo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122373214" + ], + "release_date": "2020-03-23", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "action role-playing game" + ], + "developers": [ + "Big Way Games" + ], + "publishers": [ + "Big Way Games" + ] +} diff --git a/data/game/be/bee-swarm-simulator.json b/data/game/be/bee-swarm-simulator.json new file mode 100644 index 000000000000..ba80e4586646 --- /dev/null +++ b/data/game/be/bee-swarm-simulator.json @@ -0,0 +1,20 @@ +{ + "slug": "bee-swarm-simulator", + "name": "Bee Swarm Simulator", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126894058" + ], + "release_date": "2018-03-21", + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 5", + "PlayStation 4", + "iOS", + "macOS", + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ] +} diff --git a/data/game/be/beholder-blissful-sleep.json b/data/game/be/beholder-blissful-sleep.json new file mode 100644 index 000000000000..53d18e685816 --- /dev/null +++ b/data/game/be/beholder-blissful-sleep.json @@ -0,0 +1,13 @@ +{ + "slug": "beholder-blissful-sleep", + "name": "Beholder - Blissful Sleep", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116314395" + ], + "release_date": "2017-05-18", + "platforms": [ + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/game/be/beneath.json b/data/game/be/beneath.json new file mode 100644 index 000000000000..dd7ce359dcd3 --- /dev/null +++ b/data/game/be/beneath.json @@ -0,0 +1,20 @@ +{ + "slug": "beneath", + "name": "Beneath", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4887172" + ], + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "action-adventure game" + ], + "developers": [ + "Presto Studios" + ], + "publishers": [ + "Activision" + ] +} diff --git a/data/game/be/bentley-s-hackpack-trial-version.json b/data/game/be/bentley-s-hackpack-trial-version.json new file mode 100644 index 000000000000..7bb3f08edb78 --- /dev/null +++ b/data/game/be/bentley-s-hackpack-trial-version.json @@ -0,0 +1,22 @@ +{ + "slug": "bentley-s-hackpack-trial-version", + "name": "Bentley's Hackpack Trial Version", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107411019" + ], + "release_date": "2013-02-05", + "platforms": [ + "PlayStation Vita", + "PlayStation 3" + ], + "genres": [ + "arcade" + ], + "developers": [ + "Sanzaru Games" + ], + "publishers": [ + "Sony Interactive Entertainment" + ] +} diff --git a/data/game/be/best-of-microsoft-entertainment-pack.json b/data/game/be/best-of-microsoft-entertainment-pack.json new file mode 100644 index 000000000000..133aeb3c7409 --- /dev/null +++ b/data/game/be/best-of-microsoft-entertainment-pack.json @@ -0,0 +1,19 @@ +{ + "slug": "best-of-microsoft-entertainment-pack", + "name": "Best of Microsoft Entertainment Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4896964" + ], + "release_date": "1995-01-01", + "platforms": [ + "Game Boy", + "Microsoft Windows" + ], + "developers": [ + "Microsoft" + ], + "publishers": [ + "Microsoft Home" + ] +} diff --git a/data/game/be/beta-ivry-driver-for-steamvr-psvr2-lite-edition.json b/data/game/be/beta-ivry-driver-for-steamvr-psvr2-lite-edition.json new file mode 100644 index 000000000000..e32f3bdddeb9 --- /dev/null +++ b/data/game/be/beta-ivry-driver-for-steamvr-psvr2-lite-edition.json @@ -0,0 +1,18 @@ +{ + "slug": "beta-ivry-driver-for-steamvr-psvr2-lite-edition", + "name": "BETA: iVRy Driver for SteamVR (PSVR2 Lite Edition)", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130436763" + ], + "release_date": "2024-06-10", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Mediator Software" + ], + "publishers": [ + "Mediator Software" + ] +} diff --git a/data/game/be/beta-ivry-driver-for-steamvr-psvr2-premium-edition.json b/data/game/be/beta-ivry-driver-for-steamvr-psvr2-premium-edition.json new file mode 100644 index 000000000000..8c834d761fa1 --- /dev/null +++ b/data/game/be/beta-ivry-driver-for-steamvr-psvr2-premium-edition.json @@ -0,0 +1,18 @@ +{ + "slug": "beta-ivry-driver-for-steamvr-psvr2-premium-edition", + "name": "BETA: iVRy Driver for SteamVR (PSVR2 Premium Edition)", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130436808" + ], + "release_date": "2024-06-10", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Mediator Software" + ], + "publishers": [ + "Mediator Software" + ] +} diff --git a/data/game/be/beyond-the-red-line.json b/data/game/be/beyond-the-red-line.json new file mode 100644 index 000000000000..d9377d4584e7 --- /dev/null +++ b/data/game/be/beyond-the-red-line.json @@ -0,0 +1,17 @@ +{ + "slug": "beyond-the-red-line", + "name": "Beyond the Red Line", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4900182" + ], + "release_date": "2007-03-31", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "space simulator", + "science fiction video game" + ] +} diff --git a/data/game/bi/big-pharma-marketing-and-malpractice.json b/data/game/bi/big-pharma-marketing-and-malpractice.json new file mode 100644 index 000000000000..2c31fd1edf9f --- /dev/null +++ b/data/game/bi/big-pharma-marketing-and-malpractice.json @@ -0,0 +1,13 @@ +{ + "slug": "big-pharma-marketing-and-malpractice", + "name": "Big Pharma: Marketing and Malpractice", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116263517" + ], + "release_date": "2016-04-26", + "platforms": [ + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/game/bi/binding-of-isaac-wrath-of-the-lamb.json b/data/game/bi/binding-of-isaac-wrath-of-the-lamb.json new file mode 100644 index 000000000000..bcc5af8b587d --- /dev/null +++ b/data/game/bi/binding-of-isaac-wrath-of-the-lamb.json @@ -0,0 +1,24 @@ +{ + "slug": "binding-of-isaac-wrath-of-the-lamb", + "name": "Binding of Isaac: Wrath of the Lamb", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60997844" + ], + "release_date": "2012-05-29", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "roguelite" + ], + "developers": [ + "Edmund McMillen", + "Florian Himsl" + ], + "publishers": [ + "Edmund McMillen", + "Florian Himsl" + ] +} diff --git a/data/game/bi/bionicle-masks-of-power.json b/data/game/bi/bionicle-masks-of-power.json new file mode 100644 index 000000000000..c2bcee7d8e96 --- /dev/null +++ b/data/game/bi/bionicle-masks-of-power.json @@ -0,0 +1,14 @@ +{ + "slug": "bionicle-masks-of-power", + "name": "Bionicle: Masks of Power", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121495363" + ], + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "action-adventure game" + ] +} diff --git a/data/game/bi/biosector.json b/data/game/bi/biosector.json new file mode 100644 index 000000000000..20b8938c42ee --- /dev/null +++ b/data/game/bi/biosector.json @@ -0,0 +1,12 @@ +{ + "slug": "biosector", + "name": "Biosector", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q13396016" + ], + "genres": [ + "strategic game", + "science fiction video game" + ] +} diff --git a/data/game/bi/bioshock-2-minerva-s-den.json b/data/game/bi/bioshock-2-minerva-s-den.json new file mode 100644 index 000000000000..834b3d81dd82 --- /dev/null +++ b/data/game/bi/bioshock-2-minerva-s-den.json @@ -0,0 +1,15 @@ +{ + "slug": "bioshock-2-minerva-s-den", + "name": "BioShock 2: Minerva's Den", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q24806656" + ], + "release_date": "2013-10-02", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "2K Marin" + ] +} diff --git a/data/game/bi/bioshock-infinite-burial-at-sea.json b/data/game/bi/bioshock-infinite-burial-at-sea.json new file mode 100644 index 000000000000..2db00ffa7b43 --- /dev/null +++ b/data/game/bi/bioshock-infinite-burial-at-sea.json @@ -0,0 +1,24 @@ +{ + "slug": "bioshock-infinite-burial-at-sea", + "name": "BioShock Infinite: Burial at Sea", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q15720816" + ], + "release_date": "2013-11-12", + "platforms": [ + "macOS", + "PlayStation 3", + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "episodic video game" + ], + "developers": [ + "Irrational Games" + ], + "publishers": [ + "2K" + ] +} diff --git a/data/game/bi/bit-trip-complete.json b/data/game/bi/bit-trip-complete.json new file mode 100644 index 000000000000..a1876db15ee8 --- /dev/null +++ b/data/game/bi/bit-trip-complete.json @@ -0,0 +1,21 @@ +{ + "slug": "bit-trip-complete", + "name": "Bit.Trip Complete", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16259262" + ], + "release_date": "2011-09-13", + "platforms": [ + "Wii" + ], + "genres": [ + "action game" + ], + "developers": [ + "Choice Provisions" + ], + "publishers": [ + "Aksys Games" + ] +} diff --git a/data/game/bi/bit-trip-saga.json b/data/game/bi/bit-trip-saga.json new file mode 100644 index 000000000000..1d9733e8ba29 --- /dev/null +++ b/data/game/bi/bit-trip-saga.json @@ -0,0 +1,21 @@ +{ + "slug": "bit-trip-saga", + "name": "Bit.Trip Saga", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4918673" + ], + "release_date": "2011-09-13", + "platforms": [ + "Nintendo 3DS" + ], + "genres": [ + "music video game" + ], + "developers": [ + "Choice Provisions" + ], + "publishers": [ + "Aksys Games" + ] +} diff --git a/data/game/bi/bitva-geroev-2-ekho-voiny.json b/data/game/bi/bitva-geroev-2-ekho-voiny.json new file mode 100644 index 000000000000..bed7a701569f --- /dev/null +++ b/data/game/bi/bitva-geroev-2-ekho-voiny.json @@ -0,0 +1,19 @@ +{ + "slug": "bitva-geroev-2-ekho-voiny", + "name": "Bitva Geroev 2: Ekho Voiny", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120378656" + ], + "release_date": "2006-03-02", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "role-playing video game", + "strategy video game" + ], + "developers": [ + "BloodLine" + ] +} diff --git a/data/game/bi/bitva-geroev-padenie-imperii.json b/data/game/bi/bitva-geroev-padenie-imperii.json new file mode 100644 index 000000000000..5255f24ca156 --- /dev/null +++ b/data/game/bi/bitva-geroev-padenie-imperii.json @@ -0,0 +1,19 @@ +{ + "slug": "bitva-geroev-padenie-imperii", + "name": "Bitva Geroev: Padenie Imperii", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120378423" + ], + "release_date": "2003-12-11", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "role-playing video game", + "strategy video game" + ], + "developers": [ + "BloodLine" + ] +} diff --git a/data/game/bl/blablaland.json b/data/game/bl/blablaland.json new file mode 100644 index 000000000000..9826e1364a2c --- /dev/null +++ b/data/game/bl/blablaland.json @@ -0,0 +1,8 @@ +{ + "slug": "blablaland", + "name": "Blablaland", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126188719" + ] +} diff --git a/data/game/bl/black-mesa-inbound.json b/data/game/bl/black-mesa-inbound.json new file mode 100644 index 000000000000..e7527f00b2f7 --- /dev/null +++ b/data/game/bl/black-mesa-inbound.json @@ -0,0 +1,8 @@ +{ + "slug": "black-mesa-inbound", + "name": "Black Mesa Inbound", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q133296100" + ] +} diff --git a/data/game/bl/black-ocean-q110713009.json b/data/game/bl/black-ocean-q110713009.json new file mode 100644 index 000000000000..7e1c4f7639b8 --- /dev/null +++ b/data/game/bl/black-ocean-q110713009.json @@ -0,0 +1,17 @@ +{ + "slug": "black-ocean-q110713009", + "name": "Black Ocean", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110713009" + ], + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "action role-playing game" + ], + "publishers": [ + "Akella" + ] +} diff --git a/data/game/bl/black-shark-2-republic-campaign.json b/data/game/bl/black-shark-2-republic-campaign.json new file mode 100644 index 000000000000..9877ec969ac9 --- /dev/null +++ b/data/game/bl/black-shark-2-republic-campaign.json @@ -0,0 +1,18 @@ +{ + "slug": "black-shark-2-republic-campaign", + "name": "Black Shark 2: Republic Campaign", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097404" + ], + "release_date": "2015-11-16", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Eagle Dynamics" + ], + "publishers": [ + "Eagle Dynamics" + ] +} diff --git a/data/game/bl/black-white-2-battle-of-the-gods.json b/data/game/bl/black-white-2-battle-of-the-gods.json new file mode 100644 index 000000000000..05b2ff259307 --- /dev/null +++ b/data/game/bl/black-white-2-battle-of-the-gods.json @@ -0,0 +1,23 @@ +{ + "slug": "black-white-2-battle-of-the-gods", + "name": "Black & White 2: Battle of the Gods", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3640671" + ], + "release_date": "2006-04-24", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "real-time strategy", + "god game" + ], + "developers": [ + "Lionhead Studios" + ], + "publishers": [ + "Electronic Arts" + ] +} diff --git a/data/game/bl/black-white-creature-isle.json b/data/game/bl/black-white-creature-isle.json new file mode 100644 index 000000000000..886c5e386f26 --- /dev/null +++ b/data/game/bl/black-white-creature-isle.json @@ -0,0 +1,23 @@ +{ + "slug": "black-white-creature-isle", + "name": "Black & White: Creature Isle", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1115485" + ], + "release_date": "2002-01-22", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "real-time strategy", + "god game" + ], + "developers": [ + "Lionhead Studios" + ], + "publishers": [ + "Electronic Arts" + ] +} diff --git a/data/game/bl/blackjack-by-mobilityware.json b/data/game/bl/blackjack-by-mobilityware.json new file mode 100644 index 000000000000..b117f50d6460 --- /dev/null +++ b/data/game/bl/blackjack-by-mobilityware.json @@ -0,0 +1,19 @@ +{ + "slug": "blackjack-by-mobilityware", + "name": "Blackjack by MobilityWare+", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124213602" + ], + "release_date": "2024-01-04", + "platforms": [ + "iPadOS", + "iOS" + ], + "genres": [ + "blackjack video game" + ], + "developers": [ + "MobilityWare" + ] +} diff --git a/data/game/bl/blackwell-bundle.json b/data/game/bl/blackwell-bundle.json new file mode 100644 index 000000000000..85fd81eea52b --- /dev/null +++ b/data/game/bl/blackwell-bundle.json @@ -0,0 +1,8 @@ +{ + "slug": "blackwell-bundle", + "name": "Blackwell Bundle", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131935086" + ] +} diff --git a/data/game/bl/blade-ball.json b/data/game/bl/blade-ball.json new file mode 100644 index 000000000000..274fc1b464d2 --- /dev/null +++ b/data/game/bl/blade-ball.json @@ -0,0 +1,13 @@ +{ + "slug": "blade-ball", + "name": "Blade Ball", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126958227" + ], + "release_date": "2023-06-16", + "genres": [ + "action game", + "fighting game" + ] +} diff --git a/data/game/bl/blades-of-passage.json b/data/game/bl/blades-of-passage.json new file mode 100644 index 000000000000..874d39b74df6 --- /dev/null +++ b/data/game/bl/blades-of-passage.json @@ -0,0 +1,14 @@ +{ + "slug": "blades-of-passage", + "name": "Blades of Passage", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108400575" + ], + "platforms": [ + "64DD" + ], + "developers": [ + "Orbital Media" + ] +} diff --git a/data/game/bl/blades-of-time.json b/data/game/bl/blades-of-time.json new file mode 100644 index 000000000000..36dff93494cd --- /dev/null +++ b/data/game/bl/blades-of-time.json @@ -0,0 +1,23 @@ +{ + "slug": "blades-of-time", + "name": "Blades of Time", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2615245" + ], + "release_date": "2012-03-08", + "platforms": [ + "macOS", + "PlayStation 3", + "Microsoft Windows" + ], + "genres": [ + "action-adventure game" + ], + "developers": [ + "Gaijin Entertainment" + ], + "publishers": [ + "Konami" + ] +} diff --git a/data/game/bl/blasphemous-2-mea-culpa.json b/data/game/bl/blasphemous-2-mea-culpa.json new file mode 100644 index 000000000000..5ef42e699231 --- /dev/null +++ b/data/game/bl/blasphemous-2-mea-culpa.json @@ -0,0 +1,21 @@ +{ + "slug": "blasphemous-2-mea-culpa", + "name": "Blasphemous 2: Mea Culpa", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131471288" + ], + "release_date": "2024-10-31", + "platforms": [ + "PlayStation 4", + "Xbox Series X and Series S", + "PlayStation 5", + "Microsoft Windows" + ], + "genres": [ + "Metroidvania" + ], + "publishers": [ + "Team17" + ] +} diff --git a/data/game/bl/blazblue-continuum-shift-extend.json b/data/game/bl/blazblue-continuum-shift-extend.json new file mode 100644 index 000000000000..ca53b51ae247 --- /dev/null +++ b/data/game/bl/blazblue-continuum-shift-extend.json @@ -0,0 +1,18 @@ +{ + "slug": "blazblue-continuum-shift-extend", + "name": "BlazBlue: Continuum Shift Extend", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140473413" + ], + "release_date": "2014-12-11", + "platforms": [ + "arcade video game machine" + ], + "developers": [ + "Arc System Works" + ], + "publishers": [ + "Arc System Works" + ] +} diff --git a/data/game/bl/blazblue-cross-tag-battle-special-edition.json b/data/game/bl/blazblue-cross-tag-battle-special-edition.json new file mode 100644 index 000000000000..32304d697398 --- /dev/null +++ b/data/game/bl/blazblue-cross-tag-battle-special-edition.json @@ -0,0 +1,19 @@ +{ + "slug": "blazblue-cross-tag-battle-special-edition", + "name": "BlazBlue: Cross Tag Battle Special Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123221359" + ], + "release_date": "2023-04-27", + "platforms": [ + "Xbox Series X and Series S", + "Microsoft Windows" + ], + "developers": [ + "Arc System Works" + ], + "publishers": [ + "Arc System Works" + ] +} diff --git a/data/game/bl/blek-q106803076.json b/data/game/bl/blek-q106803076.json new file mode 100644 index 000000000000..ae3c2fd93302 --- /dev/null +++ b/data/game/bl/blek-q106803076.json @@ -0,0 +1,22 @@ +{ + "slug": "blek-q106803076", + "name": "Blek+", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106803076" + ], + "release_date": "2021-04-02", + "platforms": [ + "iPadOS", + "iOS" + ], + "genres": [ + "puzzle video game" + ], + "developers": [ + "kunabi brother" + ], + "publishers": [ + "kunabi brother" + ] +} diff --git a/data/game/bl/blender-ball.json b/data/game/bl/blender-ball.json new file mode 100644 index 000000000000..494d7f86a731 --- /dev/null +++ b/data/game/bl/blender-ball.json @@ -0,0 +1,8 @@ +{ + "slug": "blender-ball", + "name": "Blender Ball", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q128014859" + ] +} diff --git a/data/game/bl/blinky-q121409786.json b/data/game/bl/blinky-q121409786.json new file mode 100644 index 000000000000..44141a09a351 --- /dev/null +++ b/data/game/bl/blinky-q121409786.json @@ -0,0 +1,8 @@ +{ + "slug": "blinky-q121409786", + "name": "Blinky", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121409786" + ] +} diff --git a/data/game/bl/blitz-the-league-q102293489.json b/data/game/bl/blitz-the-league-q102293489.json new file mode 100644 index 000000000000..1aec513e1ac3 --- /dev/null +++ b/data/game/bl/blitz-the-league-q102293489.json @@ -0,0 +1,11 @@ +{ + "slug": "blitz-the-league-q102293489", + "name": "Blitz: The League", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q102293489" + ], + "platforms": [ + "Wii" + ] +} diff --git a/data/game/bl/blitzball.json b/data/game/bl/blitzball.json new file mode 100644 index 000000000000..70f7c8653ffc --- /dev/null +++ b/data/game/bl/blitzball.json @@ -0,0 +1,8 @@ +{ + "slug": "blitzball", + "name": "Blitzball", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2031329" + ] +} diff --git a/data/game/bl/blitzkrieg-burning-horizon.json b/data/game/bl/blitzkrieg-burning-horizon.json new file mode 100644 index 000000000000..93aca6109661 --- /dev/null +++ b/data/game/bl/blitzkrieg-burning-horizon.json @@ -0,0 +1,19 @@ +{ + "slug": "blitzkrieg-burning-horizon", + "name": "Blitzkrieg: Burning Horizon", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q9174353" + ], + "release_date": "2004-01-01", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "real-time strategy", + "wargame" + ], + "publishers": [ + "1C Company" + ] +} diff --git a/data/game/bl/blitzkrieg-green-devils.json b/data/game/bl/blitzkrieg-green-devils.json new file mode 100644 index 000000000000..cb4e3ef6e124 --- /dev/null +++ b/data/game/bl/blitzkrieg-green-devils.json @@ -0,0 +1,8 @@ +{ + "slug": "blitzkrieg-green-devils", + "name": "Blitzkrieg: Green Devils", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140447915" + ] +} diff --git a/data/game/bl/blitzkrieg-rolling-thunder.json b/data/game/bl/blitzkrieg-rolling-thunder.json new file mode 100644 index 000000000000..429406132d70 --- /dev/null +++ b/data/game/bl/blitzkrieg-rolling-thunder.json @@ -0,0 +1,12 @@ +{ + "slug": "blitzkrieg-rolling-thunder", + "name": "Blitzkrieg: Rolling Thunder", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q9174354" + ], + "release_date": "2004-12-01", + "platforms": [ + "Microsoft Windows" + ] +} diff --git a/data/game/bl/blood-bowl-2-amazon.json b/data/game/bl/blood-bowl-2-amazon.json new file mode 100644 index 000000000000..3ab3a00051a1 --- /dev/null +++ b/data/game/bl/blood-bowl-2-amazon.json @@ -0,0 +1,19 @@ +{ + "slug": "blood-bowl-2-amazon", + "name": "Blood Bowl 2 - Amazon", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113283013" + ], + "release_date": "2017-11-02", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Cyanide" + ], + "publishers": [ + "Nacon" + ] +} diff --git a/data/game/bl/blood-bowl-2-chaos-dwarfs.json b/data/game/bl/blood-bowl-2-chaos-dwarfs.json new file mode 100644 index 000000000000..31cd540402c1 --- /dev/null +++ b/data/game/bl/blood-bowl-2-chaos-dwarfs.json @@ -0,0 +1,19 @@ +{ + "slug": "blood-bowl-2-chaos-dwarfs", + "name": "Blood Bowl 2 - Chaos Dwarfs", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113283002" + ], + "release_date": "2017-02-14", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Cyanide" + ], + "publishers": [ + "Nacon" + ] +} diff --git a/data/game/bl/blood-bowl-2-death-zone.json b/data/game/bl/blood-bowl-2-death-zone.json new file mode 100644 index 000000000000..3f47e99bcba0 --- /dev/null +++ b/data/game/bl/blood-bowl-2-death-zone.json @@ -0,0 +1,18 @@ +{ + "slug": "blood-bowl-2-death-zone", + "name": "Blood Bowl 2 - DEATH ZONE", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113283038" + ], + "release_date": "2018-07-17", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Cyanide" + ], + "publishers": [ + "Nacon" + ] +} diff --git a/data/game/bl/blood-bowl-2-elven-union.json b/data/game/bl/blood-bowl-2-elven-union.json new file mode 100644 index 000000000000..1194e7930629 --- /dev/null +++ b/data/game/bl/blood-bowl-2-elven-union.json @@ -0,0 +1,19 @@ +{ + "slug": "blood-bowl-2-elven-union", + "name": "Blood Bowl 2 - Elven Union", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113283021" + ], + "release_date": "2017-11-02", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Cyanide" + ], + "publishers": [ + "Nacon" + ] +} diff --git a/data/game/bl/blood-bowl-2-goblins.json b/data/game/bl/blood-bowl-2-goblins.json new file mode 100644 index 000000000000..f6a556bb90bc --- /dev/null +++ b/data/game/bl/blood-bowl-2-goblins.json @@ -0,0 +1,19 @@ +{ + "slug": "blood-bowl-2-goblins", + "name": "Blood Bowl 2 - Goblins", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113283022" + ], + "release_date": "2017-11-02", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Cyanide" + ], + "publishers": [ + "Nacon" + ] +} diff --git a/data/game/bl/blood-bowl-2-halflings.json b/data/game/bl/blood-bowl-2-halflings.json new file mode 100644 index 000000000000..c05b35251aad --- /dev/null +++ b/data/game/bl/blood-bowl-2-halflings.json @@ -0,0 +1,19 @@ +{ + "slug": "blood-bowl-2-halflings", + "name": "Blood Bowl 2 - Halflings", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113283029" + ], + "release_date": "2017-11-02", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Cyanide" + ], + "publishers": [ + "Nacon" + ] +} diff --git a/data/game/bl/blood-bowl-2-khemri.json b/data/game/bl/blood-bowl-2-khemri.json new file mode 100644 index 000000000000..15f7a10944bd --- /dev/null +++ b/data/game/bl/blood-bowl-2-khemri.json @@ -0,0 +1,19 @@ +{ + "slug": "blood-bowl-2-khemri", + "name": "Blood Bowl 2 - Khemri", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113283008" + ], + "release_date": "2017-02-14", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Cyanide" + ], + "publishers": [ + "Nacon" + ] +} diff --git a/data/game/bl/blood-bowl-2-kislev-circus.json b/data/game/bl/blood-bowl-2-kislev-circus.json new file mode 100644 index 000000000000..b087ff70af14 --- /dev/null +++ b/data/game/bl/blood-bowl-2-kislev-circus.json @@ -0,0 +1,19 @@ +{ + "slug": "blood-bowl-2-kislev-circus", + "name": "Blood Bowl 2 - Kislev Circus", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113283036" + ], + "release_date": "2017-11-02", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Cyanide" + ], + "publishers": [ + "Nacon" + ] +} diff --git a/data/game/bl/blood-bowl-2-lizardmen.json b/data/game/bl/blood-bowl-2-lizardmen.json new file mode 100644 index 000000000000..c906cc55aac0 --- /dev/null +++ b/data/game/bl/blood-bowl-2-lizardmen.json @@ -0,0 +1,19 @@ +{ + "slug": "blood-bowl-2-lizardmen", + "name": "Blood Bowl 2 - Lizardmen", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113282971" + ], + "release_date": "2015-11-03", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Cyanide" + ], + "publishers": [ + "Nacon" + ] +} diff --git a/data/game/bl/blood-bowl-2-necromantic.json b/data/game/bl/blood-bowl-2-necromantic.json new file mode 100644 index 000000000000..c0d3fda9eea5 --- /dev/null +++ b/data/game/bl/blood-bowl-2-necromantic.json @@ -0,0 +1,19 @@ +{ + "slug": "blood-bowl-2-necromantic", + "name": "Blood Bowl 2 - Necromantic", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113282991" + ], + "release_date": "2016-09-08", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Cyanide" + ], + "publishers": [ + "Nacon" + ] +} diff --git a/data/game/bl/blood-bowl-2-norse.json b/data/game/bl/blood-bowl-2-norse.json new file mode 100644 index 000000000000..1d7a6df115c3 --- /dev/null +++ b/data/game/bl/blood-bowl-2-norse.json @@ -0,0 +1,19 @@ +{ + "slug": "blood-bowl-2-norse", + "name": "Blood Bowl 2 - Norse", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113282976" + ], + "release_date": "2016-05-03", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Cyanide" + ], + "publishers": [ + "Nacon" + ] +} diff --git a/data/game/bl/blood-bowl-2-nurgle.json b/data/game/bl/blood-bowl-2-nurgle.json new file mode 100644 index 000000000000..1ad5f78f9179 --- /dev/null +++ b/data/game/bl/blood-bowl-2-nurgle.json @@ -0,0 +1,19 @@ +{ + "slug": "blood-bowl-2-nurgle", + "name": "Blood Bowl 2 - Nurgle", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113282995" + ], + "release_date": "2016-11-22", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Cyanide" + ], + "publishers": [ + "Nacon" + ] +} diff --git a/data/game/bl/blood-bowl-2-ogre.json b/data/game/bl/blood-bowl-2-ogre.json new file mode 100644 index 000000000000..b376d57736bc --- /dev/null +++ b/data/game/bl/blood-bowl-2-ogre.json @@ -0,0 +1,19 @@ +{ + "slug": "blood-bowl-2-ogre", + "name": "Blood Bowl 2 - Ogre", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113283032" + ], + "release_date": "2017-11-02", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Cyanide" + ], + "publishers": [ + "Nacon" + ] +} diff --git a/data/game/bl/blood-bowl-2-undead.json b/data/game/bl/blood-bowl-2-undead.json new file mode 100644 index 000000000000..5bc2ebb9bf54 --- /dev/null +++ b/data/game/bl/blood-bowl-2-undead.json @@ -0,0 +1,19 @@ +{ + "slug": "blood-bowl-2-undead", + "name": "Blood Bowl 2 - Undead", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113282981" + ], + "release_date": "2016-07-26", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Cyanide" + ], + "publishers": [ + "Nacon" + ] +} diff --git a/data/game/bl/blood-bowl-2-underworld-denizens.json b/data/game/bl/blood-bowl-2-underworld-denizens.json new file mode 100644 index 000000000000..9602dbf3f1c5 --- /dev/null +++ b/data/game/bl/blood-bowl-2-underworld-denizens.json @@ -0,0 +1,19 @@ +{ + "slug": "blood-bowl-2-underworld-denizens", + "name": "Blood Bowl 2 - Underworld Denizens", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113283033" + ], + "release_date": "2017-11-02", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Cyanide" + ], + "publishers": [ + "Nacon" + ] +} diff --git a/data/game/bl/blood-bowl-2-vampire.json b/data/game/bl/blood-bowl-2-vampire.json new file mode 100644 index 000000000000..116785cbb40f --- /dev/null +++ b/data/game/bl/blood-bowl-2-vampire.json @@ -0,0 +1,19 @@ +{ + "slug": "blood-bowl-2-vampire", + "name": "Blood Bowl 2 - Vampire", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113283035" + ], + "release_date": "2017-11-02", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Cyanide" + ], + "publishers": [ + "Nacon" + ] +} diff --git a/data/game/bl/blood-bowl-2-wood-elves.json b/data/game/bl/blood-bowl-2-wood-elves.json new file mode 100644 index 000000000000..d2438a6af9eb --- /dev/null +++ b/data/game/bl/blood-bowl-2-wood-elves.json @@ -0,0 +1,19 @@ +{ + "slug": "blood-bowl-2-wood-elves", + "name": "Blood Bowl 2 - Wood Elves", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113282973" + ], + "release_date": "2015-11-03", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Cyanide" + ], + "publishers": [ + "Nacon" + ] +} diff --git a/data/game/bl/blood-ii-the-chosen-the-nightmare-levels.json b/data/game/bl/blood-ii-the-chosen-the-nightmare-levels.json new file mode 100644 index 000000000000..6e7abb77aa1d --- /dev/null +++ b/data/game/bl/blood-ii-the-chosen-the-nightmare-levels.json @@ -0,0 +1,8 @@ +{ + "slug": "blood-ii-the-chosen-the-nightmare-levels", + "name": "Blood II: The Chosen - The Nightmare Levels", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110156641" + ] +} diff --git a/data/game/bl/blood-of-heroes.json b/data/game/bl/blood-of-heroes.json new file mode 100644 index 000000000000..a2429582464e --- /dev/null +++ b/data/game/bl/blood-of-heroes.json @@ -0,0 +1,23 @@ +{ + "slug": "blood-of-heroes", + "name": "Blood of Heroes", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106909009" + ], + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 5", + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "fighting game" + ], + "developers": [ + "Vizor Games" + ], + "publishers": [ + "Vizor Games" + ] +} diff --git a/data/game/bl/blood-plasma-pak.json b/data/game/bl/blood-plasma-pak.json new file mode 100644 index 000000000000..977d395087d4 --- /dev/null +++ b/data/game/bl/blood-plasma-pak.json @@ -0,0 +1,9 @@ +{ + "slug": "blood-plasma-pak", + "name": "Blood: Plasma Pak", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110160727" + ], + "release_date": "1997-09-01" +} diff --git a/data/game/bl/bloodborne-the-old-hunters.json b/data/game/bl/bloodborne-the-old-hunters.json new file mode 100644 index 000000000000..19ba8fcf263d --- /dev/null +++ b/data/game/bl/bloodborne-the-old-hunters.json @@ -0,0 +1,18 @@ +{ + "slug": "bloodborne-the-old-hunters", + "name": "Bloodborne: The Old Hunters", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28360818" + ], + "release_date": "2015-11-24", + "platforms": [ + "PlayStation 4" + ], + "genres": [ + "action game" + ], + "developers": [ + "FromSoftware" + ] +} diff --git a/data/game/bl/bloodrayne-the-shroud.json b/data/game/bl/bloodrayne-the-shroud.json new file mode 100644 index 000000000000..3e3a86a4c845 --- /dev/null +++ b/data/game/bl/bloodrayne-the-shroud.json @@ -0,0 +1,22 @@ +{ + "slug": "bloodrayne-the-shroud", + "name": "BloodRayne: The Shroud", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108547428" + ], + "platforms": [ + "Nintendo 3DS", + "PlayStation 3" + ], + "genres": [ + "action game", + "hack and slash" + ], + "developers": [ + "Majesco Entertainment" + ], + "publishers": [ + "Majesco Entertainment" + ] +} diff --git a/data/game/bl/bloodstrike.json b/data/game/bl/bloodstrike.json new file mode 100644 index 000000000000..80c549c05187 --- /dev/null +++ b/data/game/bl/bloodstrike.json @@ -0,0 +1,16 @@ +{ + "slug": "bloodstrike", + "name": "Bloodstrike", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60999620" + ], + "release_date": "2013-09-01", + "platforms": [ + "XCloudGame", + "Microsoft Windows" + ], + "genres": [ + "first-person shooter" + ] +} diff --git a/data/game/bl/bloodsucker-pack.json b/data/game/bl/bloodsucker-pack.json new file mode 100644 index 000000000000..2e55e979eed9 --- /dev/null +++ b/data/game/bl/bloodsucker-pack.json @@ -0,0 +1,13 @@ +{ + "slug": "bloodsucker-pack", + "name": "Bloodsucker Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60586786" + ], + "release_date": "2012-02-28", + "platforms": [ + "PlayStation 3", + "Microsoft Windows" + ] +} diff --git a/data/game/bl/bloons-td-6-q110797896.json b/data/game/bl/bloons-td-6-q110797896.json new file mode 100644 index 000000000000..ed9e1b0bda67 --- /dev/null +++ b/data/game/bl/bloons-td-6-q110797896.json @@ -0,0 +1,13 @@ +{ + "slug": "bloons-td-6-q110797896", + "name": "Bloons TD 6+", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110797896" + ], + "release_date": "2022-02-11", + "platforms": [ + "iPadOS", + "iOS" + ] +} diff --git a/data/game/bl/blue-gale-complete-pack.json b/data/game/bl/blue-gale-complete-pack.json new file mode 100644 index 000000000000..32740b417a8c --- /dev/null +++ b/data/game/bl/blue-gale-complete-pack.json @@ -0,0 +1,24 @@ +{ + "slug": "blue-gale-complete-pack", + "name": "Blue Gale Complete Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125027966" + ], + "release_date": "2018-12-21", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "visual novel", + "harem", + "eroge", + "slice of life" + ], + "developers": [ + "Blue Gale" + ], + "publishers": [ + "Blue Gale" + ] +} diff --git a/data/game/bl/blue-gale-memorial-collection.json b/data/game/bl/blue-gale-memorial-collection.json new file mode 100644 index 000000000000..2ee6e908741f --- /dev/null +++ b/data/game/bl/blue-gale-memorial-collection.json @@ -0,0 +1,24 @@ +{ + "slug": "blue-gale-memorial-collection", + "name": "Blue Gale Memorial Collection", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125025536" + ], + "release_date": "2014-08-08", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "visual novel", + "harem", + "eroge", + "slice of life" + ], + "developers": [ + "Blue Gale" + ], + "publishers": [ + "Blue Gale" + ] +} diff --git a/data/game/bl/blues-brothers-2-jukebox-adventure.json b/data/game/bl/blues-brothers-2-jukebox-adventure.json new file mode 100644 index 000000000000..2cb15a21a244 --- /dev/null +++ b/data/game/bl/blues-brothers-2-jukebox-adventure.json @@ -0,0 +1,8 @@ +{ + "slug": "blues-brothers-2-jukebox-adventure", + "name": "Blues Brothers 2: Jukebox Adventure", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126186142" + ] +} diff --git a/data/game/bl/blur-2.json b/data/game/bl/blur-2.json new file mode 100644 index 000000000000..9463a92b25dc --- /dev/null +++ b/data/game/bl/blur-2.json @@ -0,0 +1,21 @@ +{ + "slug": "blur-2", + "name": "Blur 2", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q119789649" + ], + "platforms": [ + "PlayStation 3", + "Microsoft Windows" + ], + "genres": [ + "arcade racing game" + ], + "developers": [ + "Bizarre Creations" + ], + "publishers": [ + "Activision" + ] +} diff --git a/data/game/bo/boing-q113517043.json b/data/game/bo/boing-q113517043.json new file mode 100644 index 000000000000..93041760ab85 --- /dev/null +++ b/data/game/bo/boing-q113517043.json @@ -0,0 +1,15 @@ +{ + "slug": "boing-q113517043", + "name": "Boing", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113517043" + ], + "release_date": "1984-01-01", + "platforms": [ + "Commodore Amiga" + ], + "developers": [ + "Robert J. Mical" + ] +} diff --git a/data/game/bo/bold-moves-q119947068.json b/data/game/bo/bold-moves-q119947068.json new file mode 100644 index 000000000000..ab5913c721df --- /dev/null +++ b/data/game/bo/bold-moves-q119947068.json @@ -0,0 +1,13 @@ +{ + "slug": "bold-moves-q119947068", + "name": "Bold Moves+", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q119947068" + ], + "release_date": "2023-06-09", + "platforms": [ + "iPadOS", + "iOS" + ] +} diff --git a/data/game/bo/bomb-buddies.json b/data/game/bo/bomb-buddies.json new file mode 100644 index 000000000000..51141c4a4034 --- /dev/null +++ b/data/game/bo/bomb-buddies.json @@ -0,0 +1,8 @@ +{ + "slug": "bomb-buddies", + "name": "Bomb Buddies", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18500757" + ] +} diff --git a/data/game/bo/bomb-crypto.json b/data/game/bo/bomb-crypto.json new file mode 100644 index 000000000000..24c483e80431 --- /dev/null +++ b/data/game/bo/bomb-crypto.json @@ -0,0 +1,8 @@ +{ + "slug": "bomb-crypto", + "name": "Bomb Crypto", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112939933" + ] +} diff --git a/data/game/bo/bomberman-act-zero.json b/data/game/bo/bomberman-act-zero.json new file mode 100644 index 000000000000..86d9cb6cf2a2 --- /dev/null +++ b/data/game/bo/bomberman-act-zero.json @@ -0,0 +1,22 @@ +{ + "slug": "bomberman-act-zero", + "name": "Bomberman: Act Zero", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2909697" + ], + "release_date": "2006-08-03", + "genres": [ + "action game", + "maze video game", + "cyberpunk video game", + "science fiction video game" + ], + "developers": [ + "Hudson Soft" + ], + "publishers": [ + "Konami", + "Hudson Soft" + ] +} diff --git a/data/game/bo/bomberman-q104873002.json b/data/game/bo/bomberman-q104873002.json new file mode 100644 index 000000000000..e8dc8d48099c --- /dev/null +++ b/data/game/bo/bomberman-q104873002.json @@ -0,0 +1,8 @@ +{ + "slug": "bomberman-q104873002", + "name": "Bomberman", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q104873002" + ] +} diff --git a/data/game/bo/bonus-spin-x.json b/data/game/bo/bonus-spin-x.json new file mode 100644 index 000000000000..67d4bdae2daa --- /dev/null +++ b/data/game/bo/bonus-spin-x.json @@ -0,0 +1,8 @@ +{ + "slug": "bonus-spin-x", + "name": "Bonus Spin X", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q97312609" + ] +} diff --git a/data/game/bo/bonus-spin-z.json b/data/game/bo/bonus-spin-z.json new file mode 100644 index 000000000000..bbed4435dcba --- /dev/null +++ b/data/game/bo/bonus-spin-z.json @@ -0,0 +1,8 @@ +{ + "slug": "bonus-spin-z", + "name": "Bonus Spin Z", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q97312610" + ] +} diff --git a/data/game/bo/book-of-hours-soundtrack-bundle.json b/data/game/bo/book-of-hours-soundtrack-bundle.json new file mode 100644 index 000000000000..993bf1ad052d --- /dev/null +++ b/data/game/bo/book-of-hours-soundtrack-bundle.json @@ -0,0 +1,25 @@ +{ + "slug": "book-of-hours-soundtrack-bundle", + "name": "BOOK OF HOURS + Soundtrack bundle", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125720634" + ], + "release_date": "2023-12-15", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "role-playing video game", + "simulation video game", + "point-and-click adventure", + "deck-building video game" + ], + "developers": [ + "Weather Factory" + ], + "publishers": [ + "Weather Factory" + ] +} diff --git a/data/game/bo/boom-q67197270.json b/data/game/bo/boom-q67197270.json new file mode 100644 index 000000000000..3cfafa2b27a9 --- /dev/null +++ b/data/game/bo/boom-q67197270.json @@ -0,0 +1,11 @@ +{ + "slug": "boom-q67197270", + "name": "Boom", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q67197270" + ], + "developers": [ + "TeamTNT" + ] +} diff --git a/data/game/bo/borderlands-2-tiny-tina-s-assault-on-dragon-keep.json b/data/game/bo/borderlands-2-tiny-tina-s-assault-on-dragon-keep.json new file mode 100644 index 000000000000..b63a06f91132 --- /dev/null +++ b/data/game/bo/borderlands-2-tiny-tina-s-assault-on-dragon-keep.json @@ -0,0 +1,23 @@ +{ + "slug": "borderlands-2-tiny-tina-s-assault-on-dragon-keep", + "name": "Borderlands 2: Tiny Tina's Assault on Dragon Keep", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120458977" + ], + "release_date": "2013-06-25", + "platforms": [ + "PlayStation 3", + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "action role-playing game" + ], + "developers": [ + "Gearbox Software" + ], + "publishers": [ + "2K" + ] +} diff --git a/data/game/bo/borderlands-legendary-collection.json b/data/game/bo/borderlands-legendary-collection.json new file mode 100644 index 000000000000..d0a43aca1ae7 --- /dev/null +++ b/data/game/bo/borderlands-legendary-collection.json @@ -0,0 +1,18 @@ +{ + "slug": "borderlands-legendary-collection", + "name": "Borderlands Legendary Collection", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q114228639" + ], + "release_date": "2020-05-28", + "platforms": [ + "PlayStation 4" + ], + "genres": [ + "action game" + ], + "publishers": [ + "2K" + ] +} diff --git a/data/game/br/brainbread.json b/data/game/br/brainbread.json new file mode 100644 index 000000000000..b6f984997f71 --- /dev/null +++ b/data/game/br/brainbread.json @@ -0,0 +1,23 @@ +{ + "slug": "brainbread", + "name": "BrainBread", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q67773070" + ], + "release_date": "2004-09-01", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "survival horror", + "zombie apocalyptic video game" + ], + "developers": [ + "IronOak Studios" + ], + "publishers": [ + "IronOak Studios" + ] +} diff --git a/data/game/br/brashs-super-games-pack.json b/data/game/br/brashs-super-games-pack.json new file mode 100644 index 000000000000..0bd3fc56f86a --- /dev/null +++ b/data/game/br/brashs-super-games-pack.json @@ -0,0 +1,8 @@ +{ + "slug": "brashs-super-games-pack", + "name": "Brashs Super Games Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126184550" + ] +} diff --git a/data/game/br/breach-q112275098.json b/data/game/br/breach-q112275098.json new file mode 100644 index 000000000000..be5109f7fb84 --- /dev/null +++ b/data/game/br/breach-q112275098.json @@ -0,0 +1,8 @@ +{ + "slug": "breach-q112275098", + "name": "Breach", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112275098" + ] +} diff --git a/data/game/br/breakaway-q28453070.json b/data/game/br/breakaway-q28453070.json new file mode 100644 index 000000000000..c73f64498d76 --- /dev/null +++ b/data/game/br/breakaway-q28453070.json @@ -0,0 +1,17 @@ +{ + "slug": "breakaway-q28453070", + "name": "Breakaway", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28453070" + ], + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "beat 'em up" + ], + "developers": [ + "Double Helix Games" + ] +} diff --git a/data/game/br/breakaway.json b/data/game/br/breakaway.json new file mode 100644 index 000000000000..6147b4666fbf --- /dev/null +++ b/data/game/br/breakaway.json @@ -0,0 +1,22 @@ +{ + "slug": "breakaway", + "name": "Breakaway", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q26834059" + ], + "release_date": "2010-06-01", + "platforms": [ + "web browser" + ], + "genres": [ + "educational video game", + "association football video game" + ], + "developers": [ + "Champlain College" + ], + "publishers": [ + "Champlain College" + ] +} diff --git a/data/game/br/breakfast-blast.json b/data/game/br/breakfast-blast.json new file mode 100644 index 000000000000..394aafad3bb5 --- /dev/null +++ b/data/game/br/breakfast-blast.json @@ -0,0 +1,8 @@ +{ + "slug": "breakfast-blast", + "name": "Breakfast Blast", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q128014862" + ] +} diff --git a/data/game/br/breakoutx.json b/data/game/br/breakoutx.json new file mode 100644 index 000000000000..f54b74d19c2b --- /dev/null +++ b/data/game/br/breakoutx.json @@ -0,0 +1,21 @@ +{ + "slug": "breakoutx", + "name": "BreakOutX", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124047471" + ], + "release_date": "2010-10-10", + "platforms": [ + "PlayStation 3" + ], + "genres": [ + "Breakout clone" + ], + "developers": [ + "Lachrymose" + ], + "publishers": [ + "Lachrymose" + ] +} diff --git a/data/game/br/bridge-constructor-q110797838.json b/data/game/br/bridge-constructor-q110797838.json new file mode 100644 index 000000000000..0e27104f8963 --- /dev/null +++ b/data/game/br/bridge-constructor-q110797838.json @@ -0,0 +1,14 @@ +{ + "slug": "bridge-constructor-q110797838", + "name": "Bridge Constructor+", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110797838" + ], + "release_date": "2022-02-04", + "platforms": [ + "iPadOS", + "iOS", + "macOS" + ] +} diff --git a/data/game/br/bright-paw-definitive-edition.json b/data/game/br/bright-paw-definitive-edition.json new file mode 100644 index 000000000000..add0fdf52445 --- /dev/null +++ b/data/game/br/bright-paw-definitive-edition.json @@ -0,0 +1,19 @@ +{ + "slug": "bright-paw-definitive-edition", + "name": "Bright Paw: Definitive Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115459526" + ], + "release_date": "2022-07-28", + "platforms": [ + "Xbox Series X and Series S", + "Microsoft Windows" + ], + "developers": [ + "Radical Forge" + ], + "publishers": [ + "Rogue Games" + ] +} diff --git a/data/game/br/brink-agents-of-change.json b/data/game/br/brink-agents-of-change.json new file mode 100644 index 000000000000..e108ef19a7f7 --- /dev/null +++ b/data/game/br/brink-agents-of-change.json @@ -0,0 +1,22 @@ +{ + "slug": "brink-agents-of-change", + "name": "Brink: Agents of Change", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q69914262" + ], + "release_date": "2011-08-02", + "platforms": [ + "PlayStation 3", + "Microsoft Windows" + ], + "genres": [ + "first-person shooter" + ], + "developers": [ + "Splash Damage" + ], + "publishers": [ + "Bethesda Softworks" + ] +} diff --git a/data/game/br/brink-complete-pack.json b/data/game/br/brink-complete-pack.json new file mode 100644 index 000000000000..83537c14796c --- /dev/null +++ b/data/game/br/brink-complete-pack.json @@ -0,0 +1,21 @@ +{ + "slug": "brink-complete-pack", + "name": "Brink: Complete Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q69920812" + ], + "release_date": "2011-12-01", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter" + ], + "developers": [ + "Splash Damage" + ], + "publishers": [ + "Bethesda Softworks" + ] +} diff --git a/data/game/br/brink-doom-the-psycho-combo-pack.json b/data/game/br/brink-doom-the-psycho-combo-pack.json new file mode 100644 index 000000000000..90ad54101690 --- /dev/null +++ b/data/game/br/brink-doom-the-psycho-combo-pack.json @@ -0,0 +1,22 @@ +{ + "slug": "brink-doom-the-psycho-combo-pack", + "name": "Brink: Doom/The Psycho Combo Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q69918191" + ], + "release_date": "2011-08-23", + "platforms": [ + "PlayStation 3", + "Microsoft Windows" + ], + "genres": [ + "first-person shooter" + ], + "developers": [ + "Splash Damage" + ], + "publishers": [ + "Bethesda Softworks" + ] +} diff --git a/data/game/br/brink-fallout-specops-combo-pack.json b/data/game/br/brink-fallout-specops-combo-pack.json new file mode 100644 index 000000000000..d89cfe0621e0 --- /dev/null +++ b/data/game/br/brink-fallout-specops-combo-pack.json @@ -0,0 +1,22 @@ +{ + "slug": "brink-fallout-specops-combo-pack", + "name": "Brink: Fallout/SpecOps Combo Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q69919277" + ], + "release_date": "2011-08-23", + "platforms": [ + "PlayStation 3", + "Microsoft Windows" + ], + "genres": [ + "first-person shooter" + ], + "developers": [ + "Splash Damage" + ], + "publishers": [ + "Bethesda Softworks" + ] +} diff --git a/data/game/br/brookhaven-rp.json b/data/game/br/brookhaven-rp.json new file mode 100644 index 000000000000..3dd527f79bab --- /dev/null +++ b/data/game/br/brookhaven-rp.json @@ -0,0 +1,18 @@ +{ + "slug": "brookhaven-rp", + "name": "Brookhaven RP", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131737571" + ], + "release_date": "2020-04-20", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "role-playing video game", + "role-playing game", + "life simulation game" + ] +} diff --git a/data/game/br/brothers-in-arms-double-time.json b/data/game/br/brothers-in-arms-double-time.json new file mode 100644 index 000000000000..ffa325447ac1 --- /dev/null +++ b/data/game/br/brothers-in-arms-double-time.json @@ -0,0 +1,19 @@ +{ + "slug": "brothers-in-arms-double-time", + "name": "Brothers in Arms: Double Time", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q865282" + ], + "release_date": "2008-09-23", + "platforms": [ + "macOS", + "Wii" + ], + "genres": [ + "first-person shooter" + ], + "developers": [ + "Gearbox Software" + ] +} diff --git a/data/game/bs/bsd-games.json b/data/game/bs/bsd-games.json new file mode 100644 index 000000000000..afc8bf220f4e --- /dev/null +++ b/data/game/bs/bsd-games.json @@ -0,0 +1,11 @@ +{ + "slug": "bsd-games", + "name": "BSD games", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q21081848" + ], + "genres": [ + "puzzle video game" + ] +} diff --git a/data/game/bu/bubble-bobble-nostalgie.json b/data/game/bu/bubble-bobble-nostalgie.json new file mode 100644 index 000000000000..328a41dbbf28 --- /dev/null +++ b/data/game/bu/bubble-bobble-nostalgie.json @@ -0,0 +1,8 @@ +{ + "slug": "bubble-bobble-nostalgie", + "name": "Bubble Bobble Nostalgie", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140471948" + ] +} diff --git a/data/game/bu/buddy-thunderstruck-the-maybe-pile.json b/data/game/bu/buddy-thunderstruck-the-maybe-pile.json new file mode 100644 index 000000000000..9824bdb215d3 --- /dev/null +++ b/data/game/bu/buddy-thunderstruck-the-maybe-pile.json @@ -0,0 +1,12 @@ +{ + "slug": "buddy-thunderstruck-the-maybe-pile", + "name": "Buddy Thunderstruck: The Maybe Pile", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q47541302" + ], + "release_date": "2017-07-14", + "genres": [ + "full motion video" + ] +} diff --git a/data/game/bu/bugsnax-the-isle-of-bigsnax.json b/data/game/bu/bugsnax-the-isle-of-bigsnax.json new file mode 100644 index 000000000000..ab93993c7011 --- /dev/null +++ b/data/game/bu/bugsnax-the-isle-of-bigsnax.json @@ -0,0 +1,16 @@ +{ + "slug": "bugsnax-the-isle-of-bigsnax", + "name": "Bugsnax: The Isle of BIGsnax", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136511456" + ], + "release_date": "2022-04-28", + "platforms": [ + "PlayStation 5", + "PlayStation 4" + ], + "developers": [ + "Young Horses" + ] +} diff --git a/data/game/bu/bully-2.json b/data/game/bu/bully-2.json new file mode 100644 index 000000000000..46ca923aca9c --- /dev/null +++ b/data/game/bu/bully-2.json @@ -0,0 +1,14 @@ +{ + "slug": "bully-2", + "name": "Bully 2", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130011086" + ], + "genres": [ + "action-adventure game" + ], + "developers": [ + "Rockstar New England" + ] +} diff --git a/data/game/bu/bundle-for-racial-justice-and-equality.json b/data/game/bu/bundle-for-racial-justice-and-equality.json new file mode 100644 index 000000000000..fae5fda8041a --- /dev/null +++ b/data/game/bu/bundle-for-racial-justice-and-equality.json @@ -0,0 +1,8 @@ +{ + "slug": "bundle-for-racial-justice-and-equality", + "name": "Bundle for Racial Justice and Equality", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q96354927" + ] +} diff --git a/data/game/bu/bundle-for-ukraine.json b/data/game/bu/bundle-for-ukraine.json new file mode 100644 index 000000000000..6ed581ec95d3 --- /dev/null +++ b/data/game/bu/bundle-for-ukraine.json @@ -0,0 +1,8 @@ +{ + "slug": "bundle-for-ukraine", + "name": "Bundle for Ukraine", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111242027" + ] +} diff --git a/data/game/bu/bungo-and-alchemist.json b/data/game/bu/bungo-and-alchemist.json new file mode 100644 index 000000000000..1b78a8413947 --- /dev/null +++ b/data/game/bu/bungo-and-alchemist.json @@ -0,0 +1,8 @@ +{ + "slug": "bungo-and-alchemist", + "name": "Bungo and Alchemist", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28686422" + ] +} diff --git a/data/game/bu/burgerzilla.json b/data/game/bu/burgerzilla.json new file mode 100644 index 000000000000..a48260754600 --- /dev/null +++ b/data/game/bu/burgerzilla.json @@ -0,0 +1,8 @@ +{ + "slug": "burgerzilla", + "name": "Burgerzilla", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q128014863" + ] +} diff --git a/data/game/bu/burning-car-theme.json b/data/game/bu/burning-car-theme.json new file mode 100644 index 000000000000..88106faeefff --- /dev/null +++ b/data/game/bu/burning-car-theme.json @@ -0,0 +1,18 @@ +{ + "slug": "burning-car-theme", + "name": "Burning Car Theme", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q85044875" + ], + "release_date": "2018-12-21", + "platforms": [ + "PlayStation 4" + ], + "developers": [ + "Sony Interactive Entertainment" + ], + "publishers": [ + "Sony Interactive Entertainment" + ] +} diff --git a/data/game/bu/buster-bros-collection.json b/data/game/bu/buster-bros-collection.json new file mode 100644 index 000000000000..ce4dc51d3fa4 --- /dev/null +++ b/data/game/bu/buster-bros-collection.json @@ -0,0 +1,8 @@ +{ + "slug": "buster-bros-collection", + "name": "Buster Bros. Collection", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63049483" + ] +} diff --git a/data/game/c-/c-h-a-i-n-q124307573.json b/data/game/c-/c-h-a-i-n-q124307573.json new file mode 100644 index 000000000000..ac939831f0c2 --- /dev/null +++ b/data/game/c-/c-h-a-i-n-q124307573.json @@ -0,0 +1,15 @@ +{ + "slug": "c-h-a-i-n-q124307573", + "name": "C.H.A.I.N.", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124307573" + ], + "release_date": "2020-10-31", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "adventure video game" + ] +} diff --git a/data/game/ca/cabbage.json b/data/game/ca/cabbage.json new file mode 100644 index 000000000000..0b76e450c37c --- /dev/null +++ b/data/game/ca/cabbage.json @@ -0,0 +1,20 @@ +{ + "slug": "cabbage", + "name": "Cabbage", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q20982922" + ], + "platforms": [ + "Nintendo 64" + ], + "genres": [ + "life simulation game" + ], + "developers": [ + "Nintendo Entertainment Analysis & Development" + ], + "publishers": [ + "Nintendo" + ] +} diff --git a/data/game/ca/cabela-s-big-game-hunter-ii-open-season.json b/data/game/ca/cabela-s-big-game-hunter-ii-open-season.json new file mode 100644 index 000000000000..c2a241b4655c --- /dev/null +++ b/data/game/ca/cabela-s-big-game-hunter-ii-open-season.json @@ -0,0 +1,18 @@ +{ + "slug": "cabela-s-big-game-hunter-ii-open-season", + "name": "Cabela's Big Game Hunter II: Open Season", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5015327" + ], + "release_date": "1998-01-01", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Activision" + ], + "publishers": [ + "Activision" + ] +} diff --git a/data/game/ca/cabela-s-big-game-hunter-iii-the-next-harvest.json b/data/game/ca/cabela-s-big-game-hunter-iii-the-next-harvest.json new file mode 100644 index 000000000000..efea917d55ab --- /dev/null +++ b/data/game/ca/cabela-s-big-game-hunter-iii-the-next-harvest.json @@ -0,0 +1,18 @@ +{ + "slug": "cabela-s-big-game-hunter-iii-the-next-harvest", + "name": "Cabela's Big Game Hunter III: The Next Harvest", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5015328" + ], + "release_date": "1999-09-14", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Elsinore Multimedia" + ], + "publishers": [ + "Activision" + ] +} diff --git a/data/game/ca/cadaver-the-payoff.json b/data/game/ca/cadaver-the-payoff.json new file mode 100644 index 000000000000..950a6db26f64 --- /dev/null +++ b/data/game/ca/cadaver-the-payoff.json @@ -0,0 +1,13 @@ +{ + "slug": "cadaver-the-payoff", + "name": "Cadaver: The Payoff", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139738379" + ], + "release_date": "1991-01-01", + "platforms": [ + "Atari ST", + "Commodore Amiga" + ] +} diff --git a/data/game/ca/calico-doom.json b/data/game/ca/calico-doom.json new file mode 100644 index 000000000000..9cd5d70418f5 --- /dev/null +++ b/data/game/ca/calico-doom.json @@ -0,0 +1,11 @@ +{ + "slug": "calico-doom", + "name": "Calico Doom", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124414098" + ], + "platforms": [ + "personal computer" + ] +} diff --git a/data/game/ca/call-of-cthulhu-destiny-s-end.json b/data/game/ca/call-of-cthulhu-destiny-s-end.json new file mode 100644 index 000000000000..716f508c103b --- /dev/null +++ b/data/game/ca/call-of-cthulhu-destiny-s-end.json @@ -0,0 +1,14 @@ +{ + "slug": "call-of-cthulhu-destiny-s-end", + "name": "Call of Cthulhu: Destiny's End", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1151573" + ], + "genres": [ + "survival horror" + ], + "developers": [ + "Headfirst Productions" + ] +} diff --git a/data/game/ca/call-of-duty-black-ops-5.json b/data/game/ca/call-of-duty-black-ops-5.json new file mode 100644 index 000000000000..9eae30a60a91 --- /dev/null +++ b/data/game/ca/call-of-duty-black-ops-5.json @@ -0,0 +1,8 @@ +{ + "slug": "call-of-duty-black-ops-5", + "name": "Call of Duty: Black Ops 5", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110996822" + ] +} diff --git a/data/game/ca/call-of-duty-black-ops-iii-zombies-chronicles.json b/data/game/ca/call-of-duty-black-ops-iii-zombies-chronicles.json new file mode 100644 index 000000000000..c01a3e4086b0 --- /dev/null +++ b/data/game/ca/call-of-duty-black-ops-iii-zombies-chronicles.json @@ -0,0 +1,8 @@ +{ + "slug": "call-of-duty-black-ops-iii-zombies-chronicles", + "name": "Call of Duty: Black Ops III - Zombies Chronicles", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140471199" + ] +} diff --git a/data/game/ca/call-of-duty-black-ops-mac-edition.json b/data/game/ca/call-of-duty-black-ops-mac-edition.json new file mode 100644 index 000000000000..c656e6c837e0 --- /dev/null +++ b/data/game/ca/call-of-duty-black-ops-mac-edition.json @@ -0,0 +1,12 @@ +{ + "slug": "call-of-duty-black-ops-mac-edition", + "name": "Call of Duty: Black Ops - Mac Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135014486" + ], + "release_date": "2012-09-27", + "platforms": [ + "macOS" + ] +} diff --git a/data/game/ca/call-of-duty-future-warfare.json b/data/game/ca/call-of-duty-future-warfare.json new file mode 100644 index 000000000000..fe56ede4ce4c --- /dev/null +++ b/data/game/ca/call-of-duty-future-warfare.json @@ -0,0 +1,11 @@ +{ + "slug": "call-of-duty-future-warfare", + "name": "Call of Duty: Future Warfare", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124378413" + ], + "developers": [ + "Neversoft" + ] +} diff --git a/data/game/ca/call-of-duty-legacy.json b/data/game/ca/call-of-duty-legacy.json new file mode 100644 index 000000000000..64dfae1510a0 --- /dev/null +++ b/data/game/ca/call-of-duty-legacy.json @@ -0,0 +1,9 @@ +{ + "slug": "call-of-duty-legacy", + "name": "Call of Duty: Legacy", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131446405" + ], + "release_date": "2007-11-14" +} diff --git a/data/game/ca/call-of-duty-modern-warfare-iii-tracer-pack-ghost-punk-pro-pack.json b/data/game/ca/call-of-duty-modern-warfare-iii-tracer-pack-ghost-punk-pro-pack.json new file mode 100644 index 000000000000..fdb91b6d8365 --- /dev/null +++ b/data/game/ca/call-of-duty-modern-warfare-iii-tracer-pack-ghost-punk-pro-pack.json @@ -0,0 +1,20 @@ +{ + "slug": "call-of-duty-modern-warfare-iii-tracer-pack-ghost-punk-pro-pack", + "name": "Call of Duty: Modern Warfare III - Tracer Pack: Ghost Punk Pro Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131406347" + ], + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter" + ], + "developers": [ + "Sledgehammer Games" + ], + "publishers": [ + "Activision" + ] +} diff --git a/data/game/ca/call-of-duty-modern-warfare-iii-tracer-pack-underboss-pro-pack.json b/data/game/ca/call-of-duty-modern-warfare-iii-tracer-pack-underboss-pro-pack.json new file mode 100644 index 000000000000..1c7f5398af72 --- /dev/null +++ b/data/game/ca/call-of-duty-modern-warfare-iii-tracer-pack-underboss-pro-pack.json @@ -0,0 +1,21 @@ +{ + "slug": "call-of-duty-modern-warfare-iii-tracer-pack-underboss-pro-pack", + "name": "Call of Duty: Modern Warfare III - Tracer Pack: Underboss Pro Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131520022" + ], + "release_date": "2024-08-02", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter" + ], + "developers": [ + "Sledgehammer Games" + ], + "publishers": [ + "Activision" + ] +} diff --git a/data/game/ca/call-of-duty-united-offensive.json b/data/game/ca/call-of-duty-united-offensive.json new file mode 100644 index 000000000000..7195fae192e5 --- /dev/null +++ b/data/game/ca/call-of-duty-united-offensive.json @@ -0,0 +1,19 @@ +{ + "slug": "call-of-duty-united-offensive", + "name": "Call of Duty: United Offensive", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q846863" + ], + "release_date": "2004-09-14", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "first-person shooter" + ], + "publishers": [ + "Activision" + ] +} diff --git a/data/game/ca/call-of-vita-hackzone.json b/data/game/ca/call-of-vita-hackzone.json new file mode 100644 index 000000000000..3ab2723b4b65 --- /dev/null +++ b/data/game/ca/call-of-vita-hackzone.json @@ -0,0 +1,21 @@ +{ + "slug": "call-of-vita-hackzone", + "name": "Call of Vita: Hackzone", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124044122" + ], + "release_date": "2023-01-01", + "platforms": [ + "PlayStation Vita" + ], + "genres": [ + "first-person shooter" + ], + "developers": [ + "VitaDev Games" + ], + "publishers": [ + "VitaDev Games" + ] +} diff --git a/data/game/ca/call-to-arms-gates-of-hell-ostfront.json b/data/game/ca/call-to-arms-gates-of-hell-ostfront.json new file mode 100644 index 000000000000..bd055ee77f66 --- /dev/null +++ b/data/game/ca/call-to-arms-gates-of-hell-ostfront.json @@ -0,0 +1,15 @@ +{ + "slug": "call-to-arms-gates-of-hell-ostfront", + "name": "Call to Arms - Gates of Hell: Ostfront", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112325384" + ], + "release_date": "2021-06-11", + "platforms": [ + "Microsoft Windows" + ], + "publishers": [ + "Digitalmindsoft" + ] +} diff --git a/data/game/ca/call-to-arms-gates-of-hell-talvisota.json b/data/game/ca/call-to-arms-gates-of-hell-talvisota.json new file mode 100644 index 000000000000..677ca79a1136 --- /dev/null +++ b/data/game/ca/call-to-arms-gates-of-hell-talvisota.json @@ -0,0 +1,12 @@ +{ + "slug": "call-to-arms-gates-of-hell-talvisota", + "name": "Call to Arms - Gates of Hell: Talvisota", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112325401" + ], + "release_date": "2022-06-08", + "platforms": [ + "Microsoft Windows" + ] +} diff --git a/data/game/ca/call-to-arms-q57974040.json b/data/game/ca/call-to-arms-q57974040.json new file mode 100644 index 000000000000..d37d0d6c0e94 --- /dev/null +++ b/data/game/ca/call-to-arms-q57974040.json @@ -0,0 +1,9 @@ +{ + "slug": "call-to-arms-q57974040", + "name": "Call to Arms", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q57974040" + ], + "release_date": "2011-12-01" +} diff --git a/data/game/ca/caltron-6-in-1.json b/data/game/ca/caltron-6-in-1.json new file mode 100644 index 000000000000..174fe3005e7c --- /dev/null +++ b/data/game/ca/caltron-6-in-1.json @@ -0,0 +1,17 @@ +{ + "slug": "caltron-6-in-1", + "name": "Caltron 6 in 1", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5024016" + ], + "platforms": [ + "Nintendo Entertainment System" + ], + "developers": [ + "NTDEC" + ], + "publishers": [ + "Home Entertainment Suppliers" + ] +} diff --git a/data/game/ca/campaign-eckmuhl.json b/data/game/ca/campaign-eckmuhl.json new file mode 100644 index 000000000000..077d18204522 --- /dev/null +++ b/data/game/ca/campaign-eckmuhl.json @@ -0,0 +1,8 @@ +{ + "slug": "campaign-eckmuhl", + "name": "Campaign Eckmuhl", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140472968" + ] +} diff --git a/data/game/ca/candy-box.json b/data/game/ca/candy-box.json new file mode 100644 index 000000000000..3af1975655d6 --- /dev/null +++ b/data/game/ca/candy-box.json @@ -0,0 +1,12 @@ +{ + "slug": "candy-box", + "name": "Candy Box", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q13048275" + ], + "release_date": "2013-01-01", + "platforms": [ + "web browser" + ] +} diff --git a/data/game/ca/candy-please-demo.json b/data/game/ca/candy-please-demo.json new file mode 100644 index 000000000000..3a606a804097 --- /dev/null +++ b/data/game/ca/candy-please-demo.json @@ -0,0 +1,15 @@ +{ + "slug": "candy-please-demo", + "name": "Candy, Please! (Demo)", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126438217" + ], + "release_date": "2014-11-03", + "developers": [ + "Nostatic Software" + ], + "publishers": [ + "Nostatic Software" + ] +} diff --git a/data/game/ca/candytron-3000.json b/data/game/ca/candytron-3000.json new file mode 100644 index 000000000000..85faa232b7ad --- /dev/null +++ b/data/game/ca/candytron-3000.json @@ -0,0 +1,16 @@ +{ + "slug": "candytron-3000", + "name": "Candytron 3000", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125721913" + ], + "release_date": "2007-02-26", + "platforms": [ + "iOS", + "web browser" + ], + "genres": [ + "cooking simulation video game" + ] +} diff --git a/data/game/ca/capcom-arcade-2nd-stadium.json b/data/game/ca/capcom-arcade-2nd-stadium.json new file mode 100644 index 000000000000..deca420be3d3 --- /dev/null +++ b/data/game/ca/capcom-arcade-2nd-stadium.json @@ -0,0 +1,27 @@ +{ + "slug": "capcom-arcade-2nd-stadium", + "name": "Capcom Arcade 2nd Stadium", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q114977033" + ], + "release_date": "2022-07-21", + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "puzzle video game", + "sports video game", + "fighting game", + "shooter game", + "arcade" + ], + "developers": [ + "Capcom" + ], + "publishers": [ + "Capcom" + ] +} diff --git a/data/game/ca/capcom-arcade-stadium.json b/data/game/ca/capcom-arcade-stadium.json new file mode 100644 index 000000000000..b6dc752b526f --- /dev/null +++ b/data/game/ca/capcom-arcade-stadium.json @@ -0,0 +1,19 @@ +{ + "slug": "capcom-arcade-stadium", + "name": "Capcom Arcade Stadium", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q104880317" + ], + "release_date": "2021-02-17", + "platforms": [ + "PlayStation 4", + "Microsoft Windows" + ], + "developers": [ + "Capcom" + ], + "publishers": [ + "Capcom" + ] +} diff --git a/data/game/ca/capcom-beat-em-up-bundle.json b/data/game/ca/capcom-beat-em-up-bundle.json new file mode 100644 index 000000000000..51332edb2e20 --- /dev/null +++ b/data/game/ca/capcom-beat-em-up-bundle.json @@ -0,0 +1,15 @@ +{ + "slug": "capcom-beat-em-up-bundle", + "name": "Capcom Beat 'Em Up Bundle", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q56751476" + ], + "platforms": [ + "PlayStation 4" + ], + "genres": [ + "beat 'em up", + "arcade" + ] +} diff --git a/data/game/ca/capcom-classics-collection.json b/data/game/ca/capcom-classics-collection.json new file mode 100644 index 000000000000..e8aba87502e6 --- /dev/null +++ b/data/game/ca/capcom-classics-collection.json @@ -0,0 +1,19 @@ +{ + "slug": "capcom-classics-collection", + "name": "Capcom Classics Collection", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q426630" + ], + "release_date": "2005-01-01", + "platforms": [ + "Game Boy Advance", + "PlayStation Portable" + ], + "developers": [ + "Digital Eclipse" + ], + "publishers": [ + "Capcom" + ] +} diff --git a/data/game/ca/capcom-classics-mini-mix.json b/data/game/ca/capcom-classics-mini-mix.json new file mode 100644 index 000000000000..bb77997bca3b --- /dev/null +++ b/data/game/ca/capcom-classics-mini-mix.json @@ -0,0 +1,12 @@ +{ + "slug": "capcom-classics-mini-mix", + "name": "Capcom Classics Mini Mix", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110414806" + ], + "release_date": "2006-01-01", + "platforms": [ + "Game Boy Advance" + ] +} diff --git a/data/game/ca/capcom-collection.json b/data/game/ca/capcom-collection.json new file mode 100644 index 000000000000..e5bff4965bcb --- /dev/null +++ b/data/game/ca/capcom-collection.json @@ -0,0 +1,8 @@ +{ + "slug": "capcom-collection", + "name": "Capcom Collection", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126185124" + ] +} diff --git a/data/game/ca/capcom-digital-collection.json b/data/game/ca/capcom-digital-collection.json new file mode 100644 index 000000000000..669cd9c35c6b --- /dev/null +++ b/data/game/ca/capcom-digital-collection.json @@ -0,0 +1,12 @@ +{ + "slug": "capcom-digital-collection", + "name": "Capcom Digital Collection", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5034542" + ], + "release_date": "2012-03-27", + "developers": [ + "Capcom" + ] +} diff --git a/data/game/ca/capcom-fighting-collection-2.json b/data/game/ca/capcom-fighting-collection-2.json new file mode 100644 index 000000000000..ca1f24781819 --- /dev/null +++ b/data/game/ca/capcom-fighting-collection-2.json @@ -0,0 +1,16 @@ +{ + "slug": "capcom-fighting-collection-2", + "name": "Capcom Fighting Collection 2", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q129925288" + ], + "release_date": "2025-05-16", + "platforms": [ + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "2D fighting game" + ] +} diff --git a/data/game/ca/capcom-fighting-collection-q111353645.json b/data/game/ca/capcom-fighting-collection-q111353645.json new file mode 100644 index 000000000000..2de3ae6f9589 --- /dev/null +++ b/data/game/ca/capcom-fighting-collection-q111353645.json @@ -0,0 +1,23 @@ +{ + "slug": "capcom-fighting-collection-q111353645", + "name": "Capcom Fighting Collection", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111353645" + ], + "release_date": "2022-06-24", + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "2D fighting game" + ], + "developers": [ + "Capcom" + ], + "publishers": [ + "Capcom" + ] +} diff --git a/data/game/ca/capcom-generations.json b/data/game/ca/capcom-generations.json new file mode 100644 index 000000000000..f9f2a6b7e5be --- /dev/null +++ b/data/game/ca/capcom-generations.json @@ -0,0 +1,15 @@ +{ + "slug": "capcom-generations", + "name": "Capcom Generations", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2937218" + ], + "release_date": "1998-08-27", + "developers": [ + "Capcom" + ], + "publishers": [ + "Capcom" + ] +} diff --git a/data/game/ca/capcom-platinum-hits-triple-pack.json b/data/game/ca/capcom-platinum-hits-triple-pack.json new file mode 100644 index 000000000000..1f423ef393de --- /dev/null +++ b/data/game/ca/capcom-platinum-hits-triple-pack.json @@ -0,0 +1,15 @@ +{ + "slug": "capcom-platinum-hits-triple-pack", + "name": "Capcom Platinum Hits Triple Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5034545" + ], + "release_date": "2009-09-08", + "developers": [ + "Capcom" + ], + "publishers": [ + "Capcom" + ] +} diff --git a/data/game/ca/capcom-puzzle-world.json b/data/game/ca/capcom-puzzle-world.json new file mode 100644 index 000000000000..99e999df046f --- /dev/null +++ b/data/game/ca/capcom-puzzle-world.json @@ -0,0 +1,21 @@ +{ + "slug": "capcom-puzzle-world", + "name": "Capcom Puzzle World", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5034544" + ], + "release_date": "2007-02-06", + "platforms": [ + "PlayStation Portable" + ], + "genres": [ + "puzzle video game" + ], + "developers": [ + "Sensory Sweep Studios" + ], + "publishers": [ + "Capcom" + ] +} diff --git a/data/game/ca/captain-pulsar.json b/data/game/ca/captain-pulsar.json new file mode 100644 index 000000000000..f72435801869 --- /dev/null +++ b/data/game/ca/captain-pulsar.json @@ -0,0 +1,8 @@ +{ + "slug": "captain-pulsar", + "name": "Captain Pulsar", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11324925" + ] +} diff --git a/data/game/ca/captain-underpants-epic-choice-o-rama.json b/data/game/ca/captain-underpants-epic-choice-o-rama.json new file mode 100644 index 000000000000..0ce09a5b379f --- /dev/null +++ b/data/game/ca/captain-underpants-epic-choice-o-rama.json @@ -0,0 +1,9 @@ +{ + "slug": "captain-underpants-epic-choice-o-rama", + "name": "Captain Underpants: Epic Choice-o-rama", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q86526052" + ], + "release_date": "2020-02-11" +} diff --git a/data/game/ca/caravan-shooting-collection.json b/data/game/ca/caravan-shooting-collection.json new file mode 100644 index 000000000000..6cb1a2eb1596 --- /dev/null +++ b/data/game/ca/caravan-shooting-collection.json @@ -0,0 +1,21 @@ +{ + "slug": "caravan-shooting-collection", + "name": "Caravan Shooting Collection", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q48847136" + ], + "release_date": "1995-07-07", + "platforms": [ + "Super Nintendo Entertainment System" + ], + "genres": [ + "shoot 'em up" + ], + "developers": [ + "Hudson Soft" + ], + "publishers": [ + "Hudson Soft" + ] +} diff --git a/data/game/ca/carmageddon-splat-pack.json b/data/game/ca/carmageddon-splat-pack.json new file mode 100644 index 000000000000..248a9a04d461 --- /dev/null +++ b/data/game/ca/carmageddon-splat-pack.json @@ -0,0 +1,23 @@ +{ + "slug": "carmageddon-splat-pack", + "name": "Carmageddon: Splat Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q104804958" + ], + "release_date": "1997-01-01", + "platforms": [ + "DOS", + "Microsoft Windows" + ], + "genres": [ + "vehicular combat game" + ], + "developers": [ + "Stainless Games" + ], + "publishers": [ + "Interplay Entertainment", + "The Sales Curve" + ] +} diff --git a/data/game/ca/carmen-sandiego-to-steal-or-not-to-steal.json b/data/game/ca/carmen-sandiego-to-steal-or-not-to-steal.json new file mode 100644 index 000000000000..198926ba4437 --- /dev/null +++ b/data/game/ca/carmen-sandiego-to-steal-or-not-to-steal.json @@ -0,0 +1,8 @@ +{ + "slug": "carmen-sandiego-to-steal-or-not-to-steal", + "name": "Carmen Sandiego: To Steal or Not to Steal", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q97356840" + ] +} diff --git a/data/game/ca/carrier-trail-digital-deluxe.json b/data/game/ca/carrier-trail-digital-deluxe.json new file mode 100644 index 000000000000..75d8af0ef1cb --- /dev/null +++ b/data/game/ca/carrier-trail-digital-deluxe.json @@ -0,0 +1,12 @@ +{ + "slug": "carrier-trail-digital-deluxe", + "name": "Carrier Trail - Digital Deluxe", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q97012338" + ], + "platforms": [ + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/game/ca/carrier-trail-soundtrack.json b/data/game/ca/carrier-trail-soundtrack.json new file mode 100644 index 000000000000..926c98425790 --- /dev/null +++ b/data/game/ca/carrier-trail-soundtrack.json @@ -0,0 +1,22 @@ +{ + "slug": "carrier-trail-soundtrack", + "name": "Carrier Trail - Soundtrack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q97012436" + ], + "release_date": "2020-07-01", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "instrumental music", + "video game music" + ], + "developers": [ + "CrackedGhostGames" + ], + "publishers": [ + "CrackedGhostGames" + ] +} diff --git a/data/game/ca/cart-surfer.json b/data/game/ca/cart-surfer.json new file mode 100644 index 000000000000..0bf693eef88b --- /dev/null +++ b/data/game/ca/cart-surfer.json @@ -0,0 +1,13 @@ +{ + "slug": "cart-surfer", + "name": "Cart Surfer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18244381" + ], + "release_date": "2006-06-06", + "platforms": [ + "Nintendo DS", + "web browser" + ] +} diff --git a/data/game/ca/cartoon-collection.json b/data/game/ca/cartoon-collection.json new file mode 100644 index 000000000000..005598cc8288 --- /dev/null +++ b/data/game/ca/cartoon-collection.json @@ -0,0 +1,11 @@ +{ + "slug": "cartoon-collection", + "name": "Cartoon Collection", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126185131" + ], + "publishers": [ + "Codemasters" + ] +} diff --git a/data/game/ca/cartoon-combatt-flying-circus.json b/data/game/ca/cartoon-combatt-flying-circus.json new file mode 100644 index 000000000000..390869aea995 --- /dev/null +++ b/data/game/ca/cartoon-combatt-flying-circus.json @@ -0,0 +1,19 @@ +{ + "slug": "cartoon-combatt-flying-circus", + "name": "Cartoon Combatt: Flying Circus", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124060095" + ], + "release_date": "2023-05-12", + "platforms": [ + "PlayStation Vita", + "mobile phone" + ], + "developers": [ + "MRKane" + ], + "publishers": [ + "MRKane" + ] +} diff --git a/data/game/ca/cassette-50.json b/data/game/ca/cassette-50.json new file mode 100644 index 000000000000..1fee5d128402 --- /dev/null +++ b/data/game/ca/cassette-50.json @@ -0,0 +1,17 @@ +{ + "slug": "cassette-50", + "name": "Cassette 50", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5049317" + ], + "release_date": "1983-01-01", + "platforms": [ + "Amstrad CPC", + "Commodore 64", + "ZX Spectrum" + ], + "publishers": [ + "Cascade Games" + ] +} diff --git a/data/game/ca/castle-of-temptation-v0-1-4.json b/data/game/ca/castle-of-temptation-v0-1-4.json new file mode 100644 index 000000000000..bc01a95ab812 --- /dev/null +++ b/data/game/ca/castle-of-temptation-v0-1-4.json @@ -0,0 +1,21 @@ +{ + "slug": "castle-of-temptation-v0-1-4", + "name": "Castle of Temptation V0.1.4", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126210208" + ], + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "eroge", + "fantasy video game" + ], + "developers": [ + "poocii8890" + ], + "publishers": [ + "poocii8890" + ] +} diff --git a/data/game/ca/castle-paths.json b/data/game/ca/castle-paths.json new file mode 100644 index 000000000000..55bb694749f1 --- /dev/null +++ b/data/game/ca/castle-paths.json @@ -0,0 +1,8 @@ +{ + "slug": "castle-paths", + "name": "Castle Paths", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137479914" + ] +} diff --git a/data/game/ca/castleminer-z-trial.json b/data/game/ca/castleminer-z-trial.json new file mode 100644 index 000000000000..b1c388606ba8 --- /dev/null +++ b/data/game/ca/castleminer-z-trial.json @@ -0,0 +1,15 @@ +{ + "slug": "castleminer-z-trial", + "name": "CastleMiner Z (Trial)", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126066644" + ], + "release_date": "2011-11-09", + "genres": [ + "survival game", + "first-person shooter", + "sandbox game", + "zombie video game" + ] +} diff --git a/data/game/ca/castlestorm-definitive-edition.json b/data/game/ca/castlestorm-definitive-edition.json new file mode 100644 index 000000000000..6129eacb336b --- /dev/null +++ b/data/game/ca/castlestorm-definitive-edition.json @@ -0,0 +1,8 @@ +{ + "slug": "castlestorm-definitive-edition", + "name": "CastleStorm: Definitive Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q90134289" + ] +} diff --git a/data/game/ca/castlevania-advance-collection.json b/data/game/ca/castlevania-advance-collection.json new file mode 100644 index 000000000000..7369376a0954 --- /dev/null +++ b/data/game/ca/castlevania-advance-collection.json @@ -0,0 +1,21 @@ +{ + "slug": "castlevania-advance-collection", + "name": "Castlevania Advance Collection", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127869206" + ], + "release_date": "2021-09-23", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "action game" + ], + "developers": [ + "M2" + ], + "publishers": [ + "Konami" + ] +} diff --git a/data/game/ca/castlevania-anniversary-collection.json b/data/game/ca/castlevania-anniversary-collection.json new file mode 100644 index 000000000000..98463e329bdd --- /dev/null +++ b/data/game/ca/castlevania-anniversary-collection.json @@ -0,0 +1,23 @@ +{ + "slug": "castlevania-anniversary-collection", + "name": "Castlevania Anniversary Collection", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111660808" + ], + "release_date": "2019-05-16", + "platforms": [ + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "platformer" + ], + "developers": [ + "M2", + "Konami" + ], + "publishers": [ + "Konami" + ] +} diff --git a/data/game/ca/castlevania-lords-of-shadow-reverie.json b/data/game/ca/castlevania-lords-of-shadow-reverie.json new file mode 100644 index 000000000000..735694d99d13 --- /dev/null +++ b/data/game/ca/castlevania-lords-of-shadow-reverie.json @@ -0,0 +1,8 @@ +{ + "slug": "castlevania-lords-of-shadow-reverie", + "name": "Castlevania: Lords of Shadow - Reverie", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q89193992" + ] +} diff --git a/data/game/ca/castlevania-lords-of-shadow.json b/data/game/ca/castlevania-lords-of-shadow.json new file mode 100644 index 000000000000..019f90e3beac --- /dev/null +++ b/data/game/ca/castlevania-lords-of-shadow.json @@ -0,0 +1,23 @@ +{ + "slug": "castlevania-lords-of-shadow", + "name": "Castlevania: Lords of Shadow", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q940664" + ], + "release_date": "2010-10-05", + "platforms": [ + "Microsoft Windows", + "PlayStation 3" + ], + "genres": [ + "action-adventure game", + "character-action video game" + ], + "developers": [ + "MercurySteam" + ], + "publishers": [ + "Konami" + ] +} diff --git a/data/game/ca/catacombs-pack.json b/data/game/ca/catacombs-pack.json new file mode 100644 index 000000000000..e389a462f671 --- /dev/null +++ b/data/game/ca/catacombs-pack.json @@ -0,0 +1,8 @@ +{ + "slug": "catacombs-pack", + "name": "Catacombs Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124847648" + ] +} diff --git a/data/game/ca/catan-console-edition.json b/data/game/ca/catan-console-edition.json new file mode 100644 index 000000000000..efbea0766ba1 --- /dev/null +++ b/data/game/ca/catan-console-edition.json @@ -0,0 +1,23 @@ +{ + "slug": "catan-console-edition", + "name": "Catan: console edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122335786" + ], + "release_date": "2023-02-23", + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 5", + "PlayStation 4" + ], + "genres": [ + "board video game" + ], + "developers": [ + "Nomad Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/ca/catapult.json b/data/game/ca/catapult.json new file mode 100644 index 000000000000..432e0193c65e --- /dev/null +++ b/data/game/ca/catapult.json @@ -0,0 +1,15 @@ +{ + "slug": "catapult", + "name": "Catapult", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28531239" + ], + "release_date": "2002-01-01", + "developers": [ + "RedLynx" + ], + "publishers": [ + "MTV Oy" + ] +} diff --git a/data/game/ca/catchin-waves.json b/data/game/ca/catchin-waves.json new file mode 100644 index 000000000000..b6a974190cc0 --- /dev/null +++ b/data/game/ca/catchin-waves.json @@ -0,0 +1,12 @@ +{ + "slug": "catchin-waves", + "name": "Catchin' Waves", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q9777966" + ], + "release_date": "2007-06-04", + "genres": [ + "surfing video game" + ] +} diff --git a/data/game/ca/cave-shooting-collection.json b/data/game/ca/cave-shooting-collection.json new file mode 100644 index 000000000000..c66e3928aa9b --- /dev/null +++ b/data/game/ca/cave-shooting-collection.json @@ -0,0 +1,18 @@ +{ + "slug": "cave-shooting-collection", + "name": "CAVE Shooting Collection", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17210790" + ], + "release_date": "2013-03-28", + "genres": [ + "bullet hell" + ], + "developers": [ + "CAVE" + ], + "publishers": [ + "CAVE" + ] +} diff --git a/data/game/ce/cel-damage-2.json b/data/game/ce/cel-damage-2.json new file mode 100644 index 000000000000..71fe900c1e9d --- /dev/null +++ b/data/game/ce/cel-damage-2.json @@ -0,0 +1,11 @@ +{ + "slug": "cel-damage-2", + "name": "Cel Damage 2", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72396674" + ], + "genres": [ + "vehicular combat game" + ] +} diff --git a/data/game/ce/cel-damage-overdrive.json b/data/game/ce/cel-damage-overdrive.json new file mode 100644 index 000000000000..8929dc20a62f --- /dev/null +++ b/data/game/ce/cel-damage-overdrive.json @@ -0,0 +1,15 @@ +{ + "slug": "cel-damage-overdrive", + "name": "Cel Damage Overdrive", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q103067818" + ], + "release_date": "2002-12-12", + "genres": [ + "vehicular combat game" + ], + "developers": [ + "Pseudo Interactive" + ] +} diff --git a/data/game/ce/century-age-of-ashes-bloodshed-edition.json b/data/game/ce/century-age-of-ashes-bloodshed-edition.json new file mode 100644 index 000000000000..78192e7e97b7 --- /dev/null +++ b/data/game/ce/century-age-of-ashes-bloodshed-edition.json @@ -0,0 +1,19 @@ +{ + "slug": "century-age-of-ashes-bloodshed-edition", + "name": "Century: Age of Ashes - Bloodshed Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112943202" + ], + "release_date": "2022-05-20", + "platforms": [ + "Xbox Series X and Series S", + "Microsoft Windows" + ], + "developers": [ + "Playwing" + ], + "publishers": [ + "Playwing" + ] +} diff --git a/data/game/ce/century-age-of-ashes-colossus-deluxe-edition.json b/data/game/ce/century-age-of-ashes-colossus-deluxe-edition.json new file mode 100644 index 000000000000..bbfb7c33eab6 --- /dev/null +++ b/data/game/ce/century-age-of-ashes-colossus-deluxe-edition.json @@ -0,0 +1,19 @@ +{ + "slug": "century-age-of-ashes-colossus-deluxe-edition", + "name": "Century: Age of Ashes - Colossus Deluxe Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111812564" + ], + "release_date": "2022-04-18", + "platforms": [ + "Xbox Series X and Series S", + "Microsoft Windows" + ], + "developers": [ + "Playwing" + ], + "publishers": [ + "Playwing" + ] +} diff --git a/data/game/ce/century-age-of-ashes-dragon-eggs-edition.json b/data/game/ce/century-age-of-ashes-dragon-eggs-edition.json new file mode 100644 index 000000000000..5c961fd2d404 --- /dev/null +++ b/data/game/ce/century-age-of-ashes-dragon-eggs-edition.json @@ -0,0 +1,19 @@ +{ + "slug": "century-age-of-ashes-dragon-eggs-edition", + "name": "Century: Age of Ashes - Dragon Eggs Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111804955" + ], + "release_date": "2022-04-13", + "platforms": [ + "Xbox Series X and Series S", + "Microsoft Windows" + ], + "developers": [ + "Playwing" + ], + "publishers": [ + "Playwing" + ] +} diff --git a/data/game/ce/century-age-of-ashes-fellow-edition.json b/data/game/ce/century-age-of-ashes-fellow-edition.json new file mode 100644 index 000000000000..51af8f7aca46 --- /dev/null +++ b/data/game/ce/century-age-of-ashes-fellow-edition.json @@ -0,0 +1,19 @@ +{ + "slug": "century-age-of-ashes-fellow-edition", + "name": "Century: Age of Ashes - Fellow Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111893441" + ], + "release_date": "2022-04-22", + "platforms": [ + "Xbox Series X and Series S", + "Microsoft Windows" + ], + "developers": [ + "Playwing" + ], + "publishers": [ + "Playwing" + ] +} diff --git a/data/game/ce/century-age-of-ashes-first-flight-edition.json b/data/game/ce/century-age-of-ashes-first-flight-edition.json new file mode 100644 index 000000000000..b5c79edfe1df --- /dev/null +++ b/data/game/ce/century-age-of-ashes-first-flight-edition.json @@ -0,0 +1,19 @@ +{ + "slug": "century-age-of-ashes-first-flight-edition", + "name": "Century: Age of Ashes - First Flight Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111907305" + ], + "release_date": "2022-04-28", + "platforms": [ + "Xbox Series X and Series S", + "Microsoft Windows" + ], + "developers": [ + "Playwing" + ], + "publishers": [ + "Playwing" + ] +} diff --git a/data/game/ce/century-age-of-ashes-myth-starter-edition.json b/data/game/ce/century-age-of-ashes-myth-starter-edition.json new file mode 100644 index 000000000000..062b2db3de80 --- /dev/null +++ b/data/game/ce/century-age-of-ashes-myth-starter-edition.json @@ -0,0 +1,19 @@ +{ + "slug": "century-age-of-ashes-myth-starter-edition", + "name": "Century: Age of Ashes - Myth Starter Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111896681" + ], + "release_date": "2022-04-27", + "platforms": [ + "Xbox Series X and Series S", + "Microsoft Windows" + ], + "developers": [ + "Playwing" + ], + "publishers": [ + "Playwing" + ] +} diff --git a/data/game/ce/century-games.json b/data/game/ce/century-games.json new file mode 100644 index 000000000000..af7f664c1dcf --- /dev/null +++ b/data/game/ce/century-games.json @@ -0,0 +1,8 @@ +{ + "slug": "century-games", + "name": "Century Games", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107686294" + ] +} diff --git a/data/game/cg/cgi.json b/data/game/cg/cgi.json new file mode 100644 index 000000000000..3b9899c5903a --- /dev/null +++ b/data/game/cg/cgi.json @@ -0,0 +1,8 @@ +{ + "slug": "cgi", + "name": "CGI", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q48938079" + ] +} diff --git a/data/game/ch/chainsaw-dance-demo.json b/data/game/ch/chainsaw-dance-demo.json new file mode 100644 index 000000000000..44ded5c9192b --- /dev/null +++ b/data/game/ch/chainsaw-dance-demo.json @@ -0,0 +1,8 @@ +{ + "slug": "chainsaw-dance-demo", + "name": "CHAINSAW DANCE DEMO", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131619429" + ] +} diff --git a/data/game/ch/challengers.json b/data/game/ch/challengers.json new file mode 100644 index 000000000000..4d69df8e4be3 --- /dev/null +++ b/data/game/ch/challengers.json @@ -0,0 +1,8 @@ +{ + "slug": "challengers", + "name": "Challengers", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131274185" + ] +} diff --git a/data/game/ch/chameleon-run-q106803128.json b/data/game/ch/chameleon-run-q106803128.json new file mode 100644 index 000000000000..7b17d3770dd5 --- /dev/null +++ b/data/game/ch/chameleon-run-q106803128.json @@ -0,0 +1,20 @@ +{ + "slug": "chameleon-run-q106803128", + "name": "Chameleon Run+", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106803128" + ], + "release_date": "2021-04-02", + "platforms": [ + "tvOS", + "iPadOS", + "iOS" + ], + "developers": [ + "Hyperbolic Magnetism" + ], + "publishers": [ + "Noodlecake" + ] +} diff --git a/data/game/ch/chao-garden.json b/data/game/ch/chao-garden.json new file mode 100644 index 000000000000..4714268b3627 --- /dev/null +++ b/data/game/ch/chao-garden.json @@ -0,0 +1,11 @@ +{ + "slug": "chao-garden", + "name": "Chao Garden", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136546428" + ], + "genres": [ + "virtual pet video game" + ] +} diff --git a/data/game/ch/chaos-league-sudden-death.json b/data/game/ch/chaos-league-sudden-death.json new file mode 100644 index 000000000000..04a8ea4572d1 --- /dev/null +++ b/data/game/ch/chaos-league-sudden-death.json @@ -0,0 +1,12 @@ +{ + "slug": "chaos-league-sudden-death", + "name": "Chaos League: Sudden Death", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q61344767" + ], + "release_date": "2005-01-01", + "genres": [ + "real-time strategy" + ] +} diff --git a/data/game/ch/chaos-strikes-back.json b/data/game/ch/chaos-strikes-back.json new file mode 100644 index 000000000000..4c63ecb865a5 --- /dev/null +++ b/data/game/ch/chaos-strikes-back.json @@ -0,0 +1,22 @@ +{ + "slug": "chaos-strikes-back", + "name": "Chaos Strikes Back", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2956460" + ], + "release_date": "1989-01-01", + "platforms": [ + "Commodore Amiga" + ], + "genres": [ + "puzzle video game", + "role-playing video game" + ], + "developers": [ + "FTL Games" + ], + "publishers": [ + "FTL Games" + ] +} diff --git a/data/game/ch/chapter-1-1-the-adventure-unfolds.json b/data/game/ch/chapter-1-1-the-adventure-unfolds.json new file mode 100644 index 000000000000..0682b93c972c --- /dev/null +++ b/data/game/ch/chapter-1-1-the-adventure-unfolds.json @@ -0,0 +1,8 @@ +{ + "slug": "chapter-1-1-the-adventure-unfolds", + "name": "Chapter 1-1: The Adventure Unfolds", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136779540" + ] +} diff --git a/data/game/ch/chapter-1-2-afoot-in-the-foothills.json b/data/game/ch/chapter-1-2-afoot-in-the-foothills.json new file mode 100644 index 000000000000..ea768d7275cf --- /dev/null +++ b/data/game/ch/chapter-1-2-afoot-in-the-foothills.json @@ -0,0 +1,8 @@ +{ + "slug": "chapter-1-2-afoot-in-the-foothills", + "name": "Chapter 1-2: Afoot in the Foothills", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136779545" + ] +} diff --git a/data/game/ch/chapter-1-3-the-sands-of-yold.json b/data/game/ch/chapter-1-3-the-sands-of-yold.json new file mode 100644 index 000000000000..21eacc304dad --- /dev/null +++ b/data/game/ch/chapter-1-3-the-sands-of-yold.json @@ -0,0 +1,8 @@ +{ + "slug": "chapter-1-3-the-sands-of-yold", + "name": "Chapter 1-3: The Sands of Yold", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136779549" + ] +} diff --git a/data/game/ch/chapter-1-4-monster-of-the-ruins.json b/data/game/ch/chapter-1-4-monster-of-the-ruins.json new file mode 100644 index 000000000000..e09fc2cc30f5 --- /dev/null +++ b/data/game/ch/chapter-1-4-monster-of-the-ruins.json @@ -0,0 +1,8 @@ +{ + "slug": "chapter-1-4-monster-of-the-ruins", + "name": "Chapter 1-4: Monster of the Ruins", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136779552" + ] +} diff --git a/data/game/ch/chapter-1-lineland.json b/data/game/ch/chapter-1-lineland.json new file mode 100644 index 000000000000..dfeee140ca66 --- /dev/null +++ b/data/game/ch/chapter-1-lineland.json @@ -0,0 +1,8 @@ +{ + "slug": "chapter-1-lineland", + "name": "Chapter 1: Lineland", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136779452" + ] +} diff --git a/data/game/ch/chapter-2-1-bogging-to-merlee-s.json b/data/game/ch/chapter-2-1-bogging-to-merlee-s.json new file mode 100644 index 000000000000..b141e16ce2ef --- /dev/null +++ b/data/game/ch/chapter-2-1-bogging-to-merlee-s.json @@ -0,0 +1,8 @@ +{ + "slug": "chapter-2-1-bogging-to-merlee-s", + "name": "Chapter 2-1: Bogging to Merlee's", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136779559" + ] +} diff --git a/data/game/ch/chapter-2-2-tricks-treats-traps.json b/data/game/ch/chapter-2-2-tricks-treats-traps.json new file mode 100644 index 000000000000..fd7d6e40c67d --- /dev/null +++ b/data/game/ch/chapter-2-2-tricks-treats-traps.json @@ -0,0 +1,8 @@ +{ + "slug": "chapter-2-2-tricks-treats-traps", + "name": "Chapter 2-2: Tricks, Treats, Traps", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136779570" + ] +} diff --git a/data/game/ch/chapter-2-3-breaking-the-bank.json b/data/game/ch/chapter-2-3-breaking-the-bank.json new file mode 100644 index 000000000000..899540bd3cd6 --- /dev/null +++ b/data/game/ch/chapter-2-3-breaking-the-bank.json @@ -0,0 +1,8 @@ +{ + "slug": "chapter-2-3-breaking-the-bank", + "name": "Chapter 2-3: Breaking the Bank", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136779577" + ] +} diff --git a/data/game/ch/chapter-2-4-the-basement-face-off.json b/data/game/ch/chapter-2-4-the-basement-face-off.json new file mode 100644 index 000000000000..456a9928014c --- /dev/null +++ b/data/game/ch/chapter-2-4-the-basement-face-off.json @@ -0,0 +1,8 @@ +{ + "slug": "chapter-2-4-the-basement-face-off", + "name": "Chapter 2-4: The Basement Face-Off", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136779591" + ] +} diff --git a/data/game/ch/chapter-2-gloam-valley.json b/data/game/ch/chapter-2-gloam-valley.json new file mode 100644 index 000000000000..cd314bc66e16 --- /dev/null +++ b/data/game/ch/chapter-2-gloam-valley.json @@ -0,0 +1,8 @@ +{ + "slug": "chapter-2-gloam-valley", + "name": "Chapter 2: Gloam Valley", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136779455" + ] +} diff --git a/data/game/ch/chapter-3-1-when-geeks-attack.json b/data/game/ch/chapter-3-1-when-geeks-attack.json new file mode 100644 index 000000000000..27431378e442 --- /dev/null +++ b/data/game/ch/chapter-3-1-when-geeks-attack.json @@ -0,0 +1,8 @@ +{ + "slug": "chapter-3-1-when-geeks-attack", + "name": "Chapter 3-1: When Geeks Attack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136779600" + ] +} diff --git a/data/game/ch/chapter-3-2-bloops-ahoy.json b/data/game/ch/chapter-3-2-bloops-ahoy.json new file mode 100644 index 000000000000..1a6bfebb84e8 --- /dev/null +++ b/data/game/ch/chapter-3-2-bloops-ahoy.json @@ -0,0 +1,8 @@ +{ + "slug": "chapter-3-2-bloops-ahoy", + "name": "Chapter 3-2: Bloops Ahoy", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136779603" + ] +} diff --git a/data/game/ch/chapter-3-3-up-up-and-a-tree.json b/data/game/ch/chapter-3-3-up-up-and-a-tree.json new file mode 100644 index 000000000000..5f02e9f1a5fa --- /dev/null +++ b/data/game/ch/chapter-3-3-up-up-and-a-tree.json @@ -0,0 +1,8 @@ +{ + "slug": "chapter-3-3-up-up-and-a-tree", + "name": "Chapter 3-3: Up, Up, and a Tree", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136779605" + ] +} diff --git a/data/game/ch/chapter-3-4-the-battle-of-fort-francis.json b/data/game/ch/chapter-3-4-the-battle-of-fort-francis.json new file mode 100644 index 000000000000..65b418ec2be4 --- /dev/null +++ b/data/game/ch/chapter-3-4-the-battle-of-fort-francis.json @@ -0,0 +1,8 @@ +{ + "slug": "chapter-3-4-the-battle-of-fort-francis", + "name": "Chapter 3-4: The Battle of Fort Francis", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136779613" + ] +} diff --git a/data/game/ch/chapter-3-the-bitlands.json b/data/game/ch/chapter-3-the-bitlands.json new file mode 100644 index 000000000000..252b8535be27 --- /dev/null +++ b/data/game/ch/chapter-3-the-bitlands.json @@ -0,0 +1,8 @@ +{ + "slug": "chapter-3-the-bitlands", + "name": "Chapter 3: The Bitlands", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136779461" + ] +} diff --git a/data/game/ch/chapter-4-1-into-outer-space.json b/data/game/ch/chapter-4-1-into-outer-space.json new file mode 100644 index 000000000000..2771a744cdc7 --- /dev/null +++ b/data/game/ch/chapter-4-1-into-outer-space.json @@ -0,0 +1,8 @@ +{ + "slug": "chapter-4-1-into-outer-space", + "name": "Chapter 4-1: Into Outer Space", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136779626" + ] +} diff --git a/data/game/ch/chapter-4-2-a-paper-emergency.json b/data/game/ch/chapter-4-2-a-paper-emergency.json new file mode 100644 index 000000000000..5456fb00d189 --- /dev/null +++ b/data/game/ch/chapter-4-2-a-paper-emergency.json @@ -0,0 +1,8 @@ +{ + "slug": "chapter-4-2-a-paper-emergency", + "name": "Chapter 4-2: A Paper Emergency", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136779637" + ] +} diff --git a/data/game/ch/chapter-4-3-the-gates-of-space.json b/data/game/ch/chapter-4-3-the-gates-of-space.json new file mode 100644 index 000000000000..a3ed89b40eb2 --- /dev/null +++ b/data/game/ch/chapter-4-3-the-gates-of-space.json @@ -0,0 +1,8 @@ +{ + "slug": "chapter-4-3-the-gates-of-space", + "name": "Chapter 4-3: The Gates of Space", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136779645" + ] +} diff --git a/data/game/ch/chapter-4-4-the-mysterious-mr-l.json b/data/game/ch/chapter-4-4-the-mysterious-mr-l.json new file mode 100644 index 000000000000..e717bede4efd --- /dev/null +++ b/data/game/ch/chapter-4-4-the-mysterious-mr-l.json @@ -0,0 +1,8 @@ +{ + "slug": "chapter-4-4-the-mysterious-mr-l", + "name": "Chapter 4-4: The Mysterious Mr. L", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136779651" + ] +} diff --git a/data/game/ch/chapter-4-outer-space.json b/data/game/ch/chapter-4-outer-space.json new file mode 100644 index 000000000000..d7e131b64b5c --- /dev/null +++ b/data/game/ch/chapter-4-outer-space.json @@ -0,0 +1,8 @@ +{ + "slug": "chapter-4-outer-space", + "name": "Chapter 4: Outer Space", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136779464" + ] +} diff --git a/data/game/ch/chapter-5-1-downtown-of-crag.json b/data/game/ch/chapter-5-1-downtown-of-crag.json new file mode 100644 index 000000000000..d2f2b16e7a30 --- /dev/null +++ b/data/game/ch/chapter-5-1-downtown-of-crag.json @@ -0,0 +1,8 @@ +{ + "slug": "chapter-5-1-downtown-of-crag", + "name": "Chapter 5-1: Downtown of Crag", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136779660" + ] +} diff --git a/data/game/ch/chapter-5-2-pixls-tablets-and-crag.json b/data/game/ch/chapter-5-2-pixls-tablets-and-crag.json new file mode 100644 index 000000000000..cd6669640909 --- /dev/null +++ b/data/game/ch/chapter-5-2-pixls-tablets-and-crag.json @@ -0,0 +1,8 @@ +{ + "slug": "chapter-5-2-pixls-tablets-and-crag", + "name": "Chapter 5-2: Pixls, Tablets and Crag", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136779663" + ] +} diff --git a/data/game/ch/chapter-5-3-a-crag-in-the-dark.json b/data/game/ch/chapter-5-3-a-crag-in-the-dark.json new file mode 100644 index 000000000000..efaa301aa3a4 --- /dev/null +++ b/data/game/ch/chapter-5-3-a-crag-in-the-dark.json @@ -0,0 +1,8 @@ +{ + "slug": "chapter-5-3-a-crag-in-the-dark", + "name": "Chapter 5-3: A Crag in the Dark", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136779664" + ] +} diff --git a/data/game/ch/chapter-5-4-the-menace-of-king-croacus.json b/data/game/ch/chapter-5-4-the-menace-of-king-croacus.json new file mode 100644 index 000000000000..f1aff406a061 --- /dev/null +++ b/data/game/ch/chapter-5-4-the-menace-of-king-croacus.json @@ -0,0 +1,8 @@ +{ + "slug": "chapter-5-4-the-menace-of-king-croacus", + "name": "Chapter 5-4: The Menace of King Croacus", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136779665" + ] +} diff --git a/data/game/ch/chapter-5-land-of-the-cragnons.json b/data/game/ch/chapter-5-land-of-the-cragnons.json new file mode 100644 index 000000000000..be8faf057139 --- /dev/null +++ b/data/game/ch/chapter-5-land-of-the-cragnons.json @@ -0,0 +1,8 @@ +{ + "slug": "chapter-5-land-of-the-cragnons", + "name": "Chapter 5: Land of the Cragnons", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136779466" + ] +} diff --git a/data/game/ch/chapter-6-1-sammer-guy-showdown.json b/data/game/ch/chapter-6-1-sammer-guy-showdown.json new file mode 100644 index 000000000000..15d79345bcaa --- /dev/null +++ b/data/game/ch/chapter-6-1-sammer-guy-showdown.json @@ -0,0 +1,8 @@ +{ + "slug": "chapter-6-1-sammer-guy-showdown", + "name": "Chapter 6-1: Sammer Guy Showdown", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136779677" + ] +} diff --git a/data/game/ch/chapter-6-1-sammer-s-kingdom.json b/data/game/ch/chapter-6-1-sammer-s-kingdom.json new file mode 100644 index 000000000000..c7f9b24abad3 --- /dev/null +++ b/data/game/ch/chapter-6-1-sammer-s-kingdom.json @@ -0,0 +1,8 @@ +{ + "slug": "chapter-6-1-sammer-s-kingdom", + "name": "Chapter 6-1: Sammer's Kingdom", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136779691" + ] +} diff --git a/data/game/ch/chapter-6-1.json b/data/game/ch/chapter-6-1.json new file mode 100644 index 000000000000..4d4270a05044 --- /dev/null +++ b/data/game/ch/chapter-6-1.json @@ -0,0 +1,8 @@ +{ + "slug": "chapter-6-1", + "name": "Chapter 6-1", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136779686" + ] +} diff --git a/data/game/ch/chapter-6-2-sammer-s-early-duels.json b/data/game/ch/chapter-6-2-sammer-s-early-duels.json new file mode 100644 index 000000000000..91a6a75f61d8 --- /dev/null +++ b/data/game/ch/chapter-6-2-sammer-s-early-duels.json @@ -0,0 +1,8 @@ +{ + "slug": "chapter-6-2-sammer-s-early-duels", + "name": "Chapter 6-2: Sammer's Early Duels", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136779695" + ] +} diff --git a/data/game/ch/chapter-6-2-the-end-of-a-world.json b/data/game/ch/chapter-6-2-the-end-of-a-world.json new file mode 100644 index 000000000000..698aad6fd266 --- /dev/null +++ b/data/game/ch/chapter-6-2-the-end-of-a-world.json @@ -0,0 +1,8 @@ +{ + "slug": "chapter-6-2-the-end-of-a-world", + "name": "Chapter 6-2: The End of a World", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136779681" + ] +} diff --git a/data/game/ch/chapter-6-3-sammer-s-proving-grounds.json b/data/game/ch/chapter-6-3-sammer-s-proving-grounds.json new file mode 100644 index 000000000000..ec284dc66d1a --- /dev/null +++ b/data/game/ch/chapter-6-3-sammer-s-proving-grounds.json @@ -0,0 +1,8 @@ +{ + "slug": "chapter-6-3-sammer-s-proving-grounds", + "name": "Chapter 6-3: Sammer's Proving Grounds", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136779700" + ] +} diff --git a/data/game/ch/chapter-6-4-sammer-s-endgame.json b/data/game/ch/chapter-6-4-sammer-s-endgame.json new file mode 100644 index 000000000000..717561b48307 --- /dev/null +++ b/data/game/ch/chapter-6-4-sammer-s-endgame.json @@ -0,0 +1,8 @@ +{ + "slug": "chapter-6-4-sammer-s-endgame", + "name": "Chapter 6-4: Sammer's Endgame", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136779707" + ] +} diff --git a/data/game/ch/chapter-6-sammer-s-kingdom.json b/data/game/ch/chapter-6-sammer-s-kingdom.json new file mode 100644 index 000000000000..9d581ef3b35d --- /dev/null +++ b/data/game/ch/chapter-6-sammer-s-kingdom.json @@ -0,0 +1,8 @@ +{ + "slug": "chapter-6-sammer-s-kingdom", + "name": "Chapter 6: Sammer's Kingdom", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136779468" + ] +} diff --git a/data/game/ch/chapter-7-1-subterranean-vacation.json b/data/game/ch/chapter-7-1-subterranean-vacation.json new file mode 100644 index 000000000000..721d5b677e95 --- /dev/null +++ b/data/game/ch/chapter-7-1-subterranean-vacation.json @@ -0,0 +1,8 @@ +{ + "slug": "chapter-7-1-subterranean-vacation", + "name": "Chapter 7-1: Subterranean Vacation", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136779721" + ] +} diff --git a/data/game/ch/chapter-7-2-the-sealed-doors-three.json b/data/game/ch/chapter-7-2-the-sealed-doors-three.json new file mode 100644 index 000000000000..276ae39ab370 --- /dev/null +++ b/data/game/ch/chapter-7-2-the-sealed-doors-three.json @@ -0,0 +1,8 @@ +{ + "slug": "chapter-7-2-the-sealed-doors-three", + "name": "Chapter 7-2: The Sealed Doors Three", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136779726" + ] +} diff --git a/data/game/ch/chapter-7-3-the-forbidden-apple.json b/data/game/ch/chapter-7-3-the-forbidden-apple.json new file mode 100644 index 000000000000..9cf110c0308b --- /dev/null +++ b/data/game/ch/chapter-7-3-the-forbidden-apple.json @@ -0,0 +1,8 @@ +{ + "slug": "chapter-7-3-the-forbidden-apple", + "name": "Chapter 7-3: The Forbidden Apple", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136779733" + ] +} diff --git a/data/game/ch/chapter-7-4-a-bone-chilling-tale.json b/data/game/ch/chapter-7-4-a-bone-chilling-tale.json new file mode 100644 index 000000000000..a861a37cf56b --- /dev/null +++ b/data/game/ch/chapter-7-4-a-bone-chilling-tale.json @@ -0,0 +1,8 @@ +{ + "slug": "chapter-7-4-a-bone-chilling-tale", + "name": "Chapter 7-4: A Bone-Chilling Tale", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136779739" + ] +} diff --git a/data/game/ch/chapter-7-the-underwhere.json b/data/game/ch/chapter-7-the-underwhere.json new file mode 100644 index 000000000000..2e4c629da5f5 --- /dev/null +++ b/data/game/ch/chapter-7-the-underwhere.json @@ -0,0 +1,8 @@ +{ + "slug": "chapter-7-the-underwhere", + "name": "Chapter 7: The Underwhere", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136779471" + ] +} diff --git a/data/game/ch/chapter-8-1-the-impending-darkness.json b/data/game/ch/chapter-8-1-the-impending-darkness.json new file mode 100644 index 000000000000..89df27b2ebb4 --- /dev/null +++ b/data/game/ch/chapter-8-1-the-impending-darkness.json @@ -0,0 +1,8 @@ +{ + "slug": "chapter-8-1-the-impending-darkness", + "name": "Chapter 8-1: The Impending Darkness", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136779749" + ] +} diff --git a/data/game/ch/chapter-8-2-the-crash.json b/data/game/ch/chapter-8-2-the-crash.json new file mode 100644 index 000000000000..e9ad6dbfd92a --- /dev/null +++ b/data/game/ch/chapter-8-2-the-crash.json @@ -0,0 +1,8 @@ +{ + "slug": "chapter-8-2-the-crash", + "name": "Chapter 8-2: The Crash", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136779751" + ] +} diff --git a/data/game/ch/chapter-8-3-countdown-to-destruction.json b/data/game/ch/chapter-8-3-countdown-to-destruction.json new file mode 100644 index 000000000000..e19e2d81ebdb --- /dev/null +++ b/data/game/ch/chapter-8-3-countdown-to-destruction.json @@ -0,0 +1,8 @@ +{ + "slug": "chapter-8-3-countdown-to-destruction", + "name": "Chapter 8-3: Countdown to Destruction", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136779753" + ] +} diff --git a/data/game/ch/chapter-8-4-tippi-and-count-bleck.json b/data/game/ch/chapter-8-4-tippi-and-count-bleck.json new file mode 100644 index 000000000000..74b79f042c20 --- /dev/null +++ b/data/game/ch/chapter-8-4-tippi-and-count-bleck.json @@ -0,0 +1,8 @@ +{ + "slug": "chapter-8-4-tippi-and-count-bleck", + "name": "Chapter 8-4: Tippi and Count Bleck", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136779757" + ] +} diff --git a/data/game/ch/chapter-8-castle-bleck.json b/data/game/ch/chapter-8-castle-bleck.json new file mode 100644 index 000000000000..1fc5a8dd898d --- /dev/null +++ b/data/game/ch/chapter-8-castle-bleck.json @@ -0,0 +1,8 @@ +{ + "slug": "chapter-8-castle-bleck", + "name": "Chapter 8: Castle Bleck", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136779473" + ] +} diff --git a/data/game/ch/chart-attack.json b/data/game/ch/chart-attack.json new file mode 100644 index 000000000000..463bd2499339 --- /dev/null +++ b/data/game/ch/chart-attack.json @@ -0,0 +1,8 @@ +{ + "slug": "chart-attack", + "name": "Chart Attack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126185156" + ] +} diff --git a/data/game/ch/cheapyd-pack.json b/data/game/ch/cheapyd-pack.json new file mode 100644 index 000000000000..90c3886a8747 --- /dev/null +++ b/data/game/ch/cheapyd-pack.json @@ -0,0 +1,12 @@ +{ + "slug": "cheapyd-pack", + "name": "CheapyD Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60723259" + ], + "release_date": "2012-01-17", + "platforms": [ + "PlayStation 3" + ] +} diff --git a/data/game/ch/checkers-royal.json b/data/game/ch/checkers-royal.json new file mode 100644 index 000000000000..6481023a9acb --- /dev/null +++ b/data/game/ch/checkers-royal.json @@ -0,0 +1,19 @@ +{ + "slug": "checkers-royal", + "name": "Checkers Royal+", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106862079" + ], + "release_date": "2021-04-02", + "platforms": [ + "iPadOS", + "iOS" + ], + "developers": [ + "Gamma Play" + ], + "publishers": [ + "Gamma Play" + ] +} diff --git a/data/game/ch/checkmate-q140472680.json b/data/game/ch/checkmate-q140472680.json new file mode 100644 index 000000000000..04f132d1d63c --- /dev/null +++ b/data/game/ch/checkmate-q140472680.json @@ -0,0 +1,15 @@ +{ + "slug": "checkmate-q140472680", + "name": "Checkmate", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140472680" + ], + "release_date": "1977-01-01", + "platforms": [ + "arcade video game machine" + ], + "genres": [ + "action game" + ] +} diff --git a/data/game/ch/cheese-skin-pack.json b/data/game/ch/cheese-skin-pack.json new file mode 100644 index 000000000000..4ec97a6a729a --- /dev/null +++ b/data/game/ch/cheese-skin-pack.json @@ -0,0 +1,8 @@ +{ + "slug": "cheese-skin-pack", + "name": "Cheese Skin Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q56033873" + ] +} diff --git a/data/game/ch/chef-life-a-restaurant-simulator-al-forno-edition.json b/data/game/ch/chef-life-a-restaurant-simulator-al-forno-edition.json new file mode 100644 index 000000000000..408e5498363a --- /dev/null +++ b/data/game/ch/chef-life-a-restaurant-simulator-al-forno-edition.json @@ -0,0 +1,18 @@ +{ + "slug": "chef-life-a-restaurant-simulator-al-forno-edition", + "name": "Chef Life: A Restaurant Simulator - Al Forno Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121203634" + ], + "release_date": "2023-02-23", + "platforms": [ + "Xbox Series X and Series S" + ], + "developers": [ + "Cyanide" + ], + "publishers": [ + "Nacon" + ] +} diff --git a/data/game/ch/chesmac.json b/data/game/ch/chesmac.json new file mode 100644 index 000000000000..7c16045e5fc9 --- /dev/null +++ b/data/game/ch/chesmac.json @@ -0,0 +1,15 @@ +{ + "slug": "chesmac", + "name": "Chesmac", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18693945" + ], + "release_date": "1979-01-01", + "platforms": [ + "Telmac 1800" + ], + "genres": [ + "computer chess" + ] +} diff --git a/data/game/ch/chess-app.json b/data/game/ch/chess-app.json new file mode 100644 index 000000000000..ec0968bb46fa --- /dev/null +++ b/data/game/ch/chess-app.json @@ -0,0 +1,8 @@ +{ + "slug": "chess-app", + "name": "chess.app", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q133936280" + ] +} diff --git a/data/game/ch/chess-com.json b/data/game/ch/chess-com.json new file mode 100644 index 000000000000..9b8da1758e97 --- /dev/null +++ b/data/game/ch/chess-com.json @@ -0,0 +1,9 @@ +{ + "slug": "chess-com", + "name": "Chess.com", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16829376" + ], + "release_date": "2007-05-01" +} diff --git a/data/game/ch/chess-play-learn.json b/data/game/ch/chess-play-learn.json new file mode 100644 index 000000000000..b1581ad20376 --- /dev/null +++ b/data/game/ch/chess-play-learn.json @@ -0,0 +1,22 @@ +{ + "slug": "chess-play-learn", + "name": "Chess - Play & Learn+", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106861809" + ], + "release_date": "2021-04-02", + "platforms": [ + "iPadOS", + "iOS" + ], + "genres": [ + "chess video game" + ], + "developers": [ + "Chess.com" + ], + "publishers": [ + "Chess.com" + ] +} diff --git a/data/game/ch/chess-universe-q118235199.json b/data/game/ch/chess-universe-q118235199.json new file mode 100644 index 000000000000..11636816df3b --- /dev/null +++ b/data/game/ch/chess-universe-q118235199.json @@ -0,0 +1,13 @@ +{ + "slug": "chess-universe-q118235199", + "name": "Chess Universe+", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118235199" + ], + "release_date": "2023-05-04", + "platforms": [ + "iPadOS", + "iOS" + ] +} diff --git a/data/game/ch/chesstempo-com.json b/data/game/ch/chesstempo-com.json new file mode 100644 index 000000000000..33de39da2421 --- /dev/null +++ b/data/game/ch/chesstempo-com.json @@ -0,0 +1,8 @@ +{ + "slug": "chesstempo-com", + "name": "ChessTempo.com", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q27529928" + ] +} diff --git a/data/game/ch/children-of-the-nile-pack.json b/data/game/ch/children-of-the-nile-pack.json new file mode 100644 index 000000000000..ae23092fd3e7 --- /dev/null +++ b/data/game/ch/children-of-the-nile-pack.json @@ -0,0 +1,8 @@ +{ + "slug": "children-of-the-nile-pack", + "name": "Children of the Nile Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130381931" + ] +} diff --git a/data/game/ch/chilloutvr-unlocked-account.json b/data/game/ch/chilloutvr-unlocked-account.json new file mode 100644 index 000000000000..11607e83b99f --- /dev/null +++ b/data/game/ch/chilloutvr-unlocked-account.json @@ -0,0 +1,21 @@ +{ + "slug": "chilloutvr-unlocked-account", + "name": "ChilloutVR - Unlocked Account", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113363207" + ], + "release_date": "2020-12-30", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "massively multiplayer online game" + ], + "developers": [ + "Alpha Blend Interactive" + ], + "publishers": [ + "Alpha Blend Interactive" + ] +} diff --git a/data/game/ch/chimera-beast.json b/data/game/ch/chimera-beast.json new file mode 100644 index 000000000000..1352a5b73016 --- /dev/null +++ b/data/game/ch/chimera-beast.json @@ -0,0 +1,9 @@ +{ + "slug": "chimera-beast", + "name": "Chimera Beast", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5099355" + ], + "release_date": "1993-01-01" +} diff --git a/data/game/ch/chocolate-doom.json b/data/game/ch/chocolate-doom.json new file mode 100644 index 000000000000..17de00f69fc9 --- /dev/null +++ b/data/game/ch/chocolate-doom.json @@ -0,0 +1,12 @@ +{ + "slug": "chocolate-doom", + "name": "Chocolate Doom", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q67181580" + ], + "release_date": "2005-09-07", + "platforms": [ + "Microsoft Windows" + ] +} diff --git a/data/game/ch/choice-of-zombies-delta-force-operator.json b/data/game/ch/choice-of-zombies-delta-force-operator.json new file mode 100644 index 000000000000..b3ea4305a59f --- /dev/null +++ b/data/game/ch/choice-of-zombies-delta-force-operator.json @@ -0,0 +1,19 @@ +{ + "slug": "choice-of-zombies-delta-force-operator", + "name": "Choice of Zombies - Delta Force Operator", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115016158" + ], + "release_date": "2012-04-13", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Choice of Games" + ], + "publishers": [ + "Choice of Games" + ] +} diff --git a/data/game/ch/chris-taylor-s-kings-and-castles.json b/data/game/ch/chris-taylor-s-kings-and-castles.json new file mode 100644 index 000000000000..125d9eb6e622 --- /dev/null +++ b/data/game/ch/chris-taylor-s-kings-and-castles.json @@ -0,0 +1,17 @@ +{ + "slug": "chris-taylor-s-kings-and-castles", + "name": "Chris Taylor's Kings and Castles", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5108232" + ], + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "real-time strategy" + ], + "developers": [ + "Wargaming Seattle" + ] +} diff --git a/data/game/ch/christmas-collection.json b/data/game/ch/christmas-collection.json new file mode 100644 index 000000000000..639f49455051 --- /dev/null +++ b/data/game/ch/christmas-collection.json @@ -0,0 +1,11 @@ +{ + "slug": "christmas-collection", + "name": "Christmas Collection", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131152675" + ], + "publishers": [ + "Hewson Consultants" + ] +} diff --git a/data/game/ch/chrome-2.json b/data/game/ch/chrome-2.json new file mode 100644 index 000000000000..087e5f3cd6e2 --- /dev/null +++ b/data/game/ch/chrome-2.json @@ -0,0 +1,14 @@ +{ + "slug": "chrome-2", + "name": "Chrome 2", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110817087" + ], + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter" + ] +} diff --git a/data/game/ch/chrono-break.json b/data/game/ch/chrono-break.json new file mode 100644 index 000000000000..bfe51310047f --- /dev/null +++ b/data/game/ch/chrono-break.json @@ -0,0 +1,8 @@ +{ + "slug": "chrono-break", + "name": "Chrono Break", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2566500" + ] +} diff --git a/data/game/ch/chunithm.json b/data/game/ch/chunithm.json new file mode 100644 index 000000000000..c245052ede62 --- /dev/null +++ b/data/game/ch/chunithm.json @@ -0,0 +1,18 @@ +{ + "slug": "chunithm", + "name": "Chunithm", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22130940" + ], + "release_date": "2015-07-16", + "platforms": [ + "arcade video game machine" + ], + "developers": [ + "Sega" + ], + "publishers": [ + "Sega Interactive" + ] +} diff --git a/data/game/ci/cinema-keiba-japan-world-cup.json b/data/game/ci/cinema-keiba-japan-world-cup.json new file mode 100644 index 000000000000..3ba10fedfd1e --- /dev/null +++ b/data/game/ci/cinema-keiba-japan-world-cup.json @@ -0,0 +1,11 @@ +{ + "slug": "cinema-keiba-japan-world-cup", + "name": "CINEMA KEIBA/JAPAN WORLD CUP", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11193339" + ], + "publishers": [ + "Japan Racing Association" + ] +} diff --git a/data/game/ci/cinematic-mod.json b/data/game/ci/cinematic-mod.json new file mode 100644 index 000000000000..f7ee1ba1c850 --- /dev/null +++ b/data/game/ci/cinematic-mod.json @@ -0,0 +1,9 @@ +{ + "slug": "cinematic-mod", + "name": "Cinematic Mod", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q15272273" + ], + "release_date": "2005-10-04" +} diff --git a/data/game/ci/circa-infinity-ultimate-edition.json b/data/game/ci/circa-infinity-ultimate-edition.json new file mode 100644 index 000000000000..f91cd14e1737 --- /dev/null +++ b/data/game/ci/circa-infinity-ultimate-edition.json @@ -0,0 +1,12 @@ +{ + "slug": "circa-infinity-ultimate-edition", + "name": "Circa Infinity Ultimate Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110082840" + ], + "release_date": "2021-12-13", + "publishers": [ + "RedDeerGames" + ] +} diff --git a/data/game/ci/cisco-heat-playable-demo.json b/data/game/ci/cisco-heat-playable-demo.json new file mode 100644 index 000000000000..a5a39bde4140 --- /dev/null +++ b/data/game/ci/cisco-heat-playable-demo.json @@ -0,0 +1,14 @@ +{ + "slug": "cisco-heat-playable-demo", + "name": "Cisco Heat - Playable Demo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127432185" + ], + "platforms": [ + "ZX Spectrum" + ], + "genres": [ + "racing video game" + ] +} diff --git a/data/game/ci/cities-in-motion-2-back-to-the-past.json b/data/game/ci/cities-in-motion-2-back-to-the-past.json new file mode 100644 index 000000000000..5417a4333ab8 --- /dev/null +++ b/data/game/ci/cities-in-motion-2-back-to-the-past.json @@ -0,0 +1,19 @@ +{ + "slug": "cities-in-motion-2-back-to-the-past", + "name": "Cities in Motion 2: Back to the Past", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113283160" + ], + "release_date": "2013-09-17", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Colossal Order" + ], + "publishers": [ + "Paradox Interactive" + ] +} diff --git a/data/game/ci/cities-in-motion-2-bus-mania.json b/data/game/ci/cities-in-motion-2-bus-mania.json new file mode 100644 index 000000000000..35c997f30eec --- /dev/null +++ b/data/game/ci/cities-in-motion-2-bus-mania.json @@ -0,0 +1,19 @@ +{ + "slug": "cities-in-motion-2-bus-mania", + "name": "Cities in Motion 2: Bus Mania", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113283130" + ], + "release_date": "2013-06-20", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Colossal Order" + ], + "publishers": [ + "Paradox Interactive" + ] +} diff --git a/data/game/ci/cities-in-motion-2-european-cities.json b/data/game/ci/cities-in-motion-2-european-cities.json new file mode 100644 index 000000000000..c80e4141596b --- /dev/null +++ b/data/game/ci/cities-in-motion-2-european-cities.json @@ -0,0 +1,18 @@ +{ + "slug": "cities-in-motion-2-european-cities", + "name": "Cities in Motion 2: European Cities", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113283183" + ], + "release_date": "2014-03-11", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Colossal Order" + ], + "publishers": [ + "Paradox Interactive" + ] +} diff --git a/data/game/ci/cities-in-motion-2-european-vehicle-pack.json b/data/game/ci/cities-in-motion-2-european-vehicle-pack.json new file mode 100644 index 000000000000..189238baef3a --- /dev/null +++ b/data/game/ci/cities-in-motion-2-european-vehicle-pack.json @@ -0,0 +1,18 @@ +{ + "slug": "cities-in-motion-2-european-vehicle-pack", + "name": "Cities in Motion 2: European Vehicle Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113283199" + ], + "release_date": "2014-07-17", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Colossal Order" + ], + "publishers": [ + "Paradox Interactive" + ] +} diff --git a/data/game/ci/cities-in-motion-2-lofty-landmarks.json b/data/game/ci/cities-in-motion-2-lofty-landmarks.json new file mode 100644 index 000000000000..519d1589ab18 --- /dev/null +++ b/data/game/ci/cities-in-motion-2-lofty-landmarks.json @@ -0,0 +1,19 @@ +{ + "slug": "cities-in-motion-2-lofty-landmarks", + "name": "Cities in Motion 2: Lofty Landmarks", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113283154" + ], + "release_date": "2013-08-29", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Colossal Order" + ], + "publishers": [ + "Paradox Interactive" + ] +} diff --git a/data/game/ci/cities-in-motion-2-marvellous-monorails.json b/data/game/ci/cities-in-motion-2-marvellous-monorails.json new file mode 100644 index 000000000000..a7f040d7a885 --- /dev/null +++ b/data/game/ci/cities-in-motion-2-marvellous-monorails.json @@ -0,0 +1,19 @@ +{ + "slug": "cities-in-motion-2-marvellous-monorails", + "name": "Cities in Motion 2: Marvellous Monorails", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113283176" + ], + "release_date": "2014-01-09", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Colossal Order" + ], + "publishers": [ + "Paradox Interactive" + ] +} diff --git a/data/game/ci/cities-in-motion-2-metro-madness.json b/data/game/ci/cities-in-motion-2-metro-madness.json new file mode 100644 index 000000000000..6f3d58b94945 --- /dev/null +++ b/data/game/ci/cities-in-motion-2-metro-madness.json @@ -0,0 +1,19 @@ +{ + "slug": "cities-in-motion-2-metro-madness", + "name": "Cities in Motion 2: Metro Madness", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113283131" + ], + "release_date": "2013-08-15", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Colossal Order" + ], + "publishers": [ + "Paradox Interactive" + ] +} diff --git a/data/game/ci/cities-in-motion-2-olden-times.json b/data/game/ci/cities-in-motion-2-olden-times.json new file mode 100644 index 000000000000..0ab468ccfac5 --- /dev/null +++ b/data/game/ci/cities-in-motion-2-olden-times.json @@ -0,0 +1,19 @@ +{ + "slug": "cities-in-motion-2-olden-times", + "name": "Cities in Motion 2: Olden Times", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113283167" + ], + "release_date": "2013-10-03", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Colossal Order" + ], + "publishers": [ + "Paradox Interactive" + ] +} diff --git a/data/game/ci/cities-in-motion-2-players-choice-vehicle-pack.json b/data/game/ci/cities-in-motion-2-players-choice-vehicle-pack.json new file mode 100644 index 000000000000..854d3b3a7dce --- /dev/null +++ b/data/game/ci/cities-in-motion-2-players-choice-vehicle-pack.json @@ -0,0 +1,18 @@ +{ + "slug": "cities-in-motion-2-players-choice-vehicle-pack", + "name": "Cities in Motion 2: Players Choice Vehicle Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113283190" + ], + "release_date": "2014-06-17", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Colossal Order" + ], + "publishers": [ + "Paradox Interactive" + ] +} diff --git a/data/game/ci/cities-in-motion-2-trekking-trolleys.json b/data/game/ci/cities-in-motion-2-trekking-trolleys.json new file mode 100644 index 000000000000..d34135942268 --- /dev/null +++ b/data/game/ci/cities-in-motion-2-trekking-trolleys.json @@ -0,0 +1,19 @@ +{ + "slug": "cities-in-motion-2-trekking-trolleys", + "name": "Cities in Motion 2: Trekking Trolleys", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113283147" + ], + "release_date": "2013-07-30", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Colossal Order" + ], + "publishers": [ + "Paradox Interactive" + ] +} diff --git a/data/game/ci/cities-in-motion-2-wending-waterbuses.json b/data/game/ci/cities-in-motion-2-wending-waterbuses.json new file mode 100644 index 000000000000..44c7bab420e1 --- /dev/null +++ b/data/game/ci/cities-in-motion-2-wending-waterbuses.json @@ -0,0 +1,19 @@ +{ + "slug": "cities-in-motion-2-wending-waterbuses", + "name": "Cities in Motion 2: Wending Waterbuses", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113283139" + ], + "release_date": "2013-07-30", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Colossal Order" + ], + "publishers": [ + "Paradox Interactive" + ] +} diff --git a/data/game/ci/cities-in-motion-design-classics.json b/data/game/ci/cities-in-motion-design-classics.json new file mode 100644 index 000000000000..0811bc3aee00 --- /dev/null +++ b/data/game/ci/cities-in-motion-design-classics.json @@ -0,0 +1,19 @@ +{ + "slug": "cities-in-motion-design-classics", + "name": "Cities in Motion: Design Classics", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113283090" + ], + "release_date": "2011-04-05", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Colossal Order" + ], + "publishers": [ + "Paradox Interactive" + ] +} diff --git a/data/game/ci/cities-in-motion-design-dreams.json b/data/game/ci/cities-in-motion-design-dreams.json new file mode 100644 index 000000000000..2dac7a504799 --- /dev/null +++ b/data/game/ci/cities-in-motion-design-dreams.json @@ -0,0 +1,19 @@ +{ + "slug": "cities-in-motion-design-dreams", + "name": "Cities In Motion: Design Dreams", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113283110" + ], + "release_date": "2012-02-29", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Colossal Order" + ], + "publishers": [ + "Paradox Interactive" + ] +} diff --git a/data/game/ci/cities-in-motion-design-marvels.json b/data/game/ci/cities-in-motion-design-marvels.json new file mode 100644 index 000000000000..fedebaf4bc55 --- /dev/null +++ b/data/game/ci/cities-in-motion-design-marvels.json @@ -0,0 +1,19 @@ +{ + "slug": "cities-in-motion-design-marvels", + "name": "Cities in Motion: Design Marvels", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113283094" + ], + "release_date": "2011-05-20", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Colossal Order" + ], + "publishers": [ + "Paradox Interactive" + ] +} diff --git a/data/game/ci/cities-in-motion-design-now.json b/data/game/ci/cities-in-motion-design-now.json new file mode 100644 index 000000000000..45e665f05518 --- /dev/null +++ b/data/game/ci/cities-in-motion-design-now.json @@ -0,0 +1,19 @@ +{ + "slug": "cities-in-motion-design-now", + "name": "Cities in Motion: Design Now", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113283097" + ], + "release_date": "2011-06-14", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Colossal Order" + ], + "publishers": [ + "Paradox Interactive" + ] +} diff --git a/data/game/ci/cities-in-motion-design-quirks.json b/data/game/ci/cities-in-motion-design-quirks.json new file mode 100644 index 000000000000..b8fecd32c30f --- /dev/null +++ b/data/game/ci/cities-in-motion-design-quirks.json @@ -0,0 +1,19 @@ +{ + "slug": "cities-in-motion-design-quirks", + "name": "Cities in Motion: Design Quirks", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113283125" + ], + "release_date": "2013-02-05", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Colossal Order" + ], + "publishers": [ + "Paradox Interactive" + ] +} diff --git a/data/game/ci/cities-in-motion-german-cities.json b/data/game/ci/cities-in-motion-german-cities.json new file mode 100644 index 000000000000..e47a8a72d05b --- /dev/null +++ b/data/game/ci/cities-in-motion-german-cities.json @@ -0,0 +1,19 @@ +{ + "slug": "cities-in-motion-german-cities", + "name": "Cities in Motion: German Cities", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113283105" + ], + "release_date": "2011-09-14", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Colossal Order" + ], + "publishers": [ + "Paradox Interactive" + ] +} diff --git a/data/game/ci/cities-in-motion-london.json b/data/game/ci/cities-in-motion-london.json new file mode 100644 index 000000000000..a7c71f2b6100 --- /dev/null +++ b/data/game/ci/cities-in-motion-london.json @@ -0,0 +1,19 @@ +{ + "slug": "cities-in-motion-london", + "name": "Cities in Motion: London", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113283127" + ], + "release_date": "2012-11-20", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Colossal Order" + ], + "publishers": [ + "Paradox Interactive" + ] +} diff --git a/data/game/ci/cities-in-motion-metro-stations.json b/data/game/ci/cities-in-motion-metro-stations.json new file mode 100644 index 000000000000..110479df9808 --- /dev/null +++ b/data/game/ci/cities-in-motion-metro-stations.json @@ -0,0 +1,19 @@ +{ + "slug": "cities-in-motion-metro-stations", + "name": "Cities in Motion: Metro Stations", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113283103" + ], + "release_date": "2011-07-22", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Colossal Order" + ], + "publishers": [ + "Paradox Interactive" + ] +} diff --git a/data/game/ci/cities-in-motion-paris.json b/data/game/ci/cities-in-motion-paris.json new file mode 100644 index 000000000000..c0f6a42d695e --- /dev/null +++ b/data/game/ci/cities-in-motion-paris.json @@ -0,0 +1,19 @@ +{ + "slug": "cities-in-motion-paris", + "name": "Cities in Motion: Paris", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113283117" + ], + "release_date": "2012-05-15", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Colossal Order" + ], + "publishers": [ + "Paradox Interactive" + ] +} diff --git a/data/game/ci/cities-in-motion-st-petersburg.json b/data/game/ci/cities-in-motion-st-petersburg.json new file mode 100644 index 000000000000..2076a5f0334e --- /dev/null +++ b/data/game/ci/cities-in-motion-st-petersburg.json @@ -0,0 +1,19 @@ +{ + "slug": "cities-in-motion-st-petersburg", + "name": "Cities in Motion: St. Petersburg", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113283120" + ], + "release_date": "2012-07-26", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Colossal Order" + ], + "publishers": [ + "Paradox Interactive" + ] +} diff --git a/data/game/ci/cities-in-motion-tokyo.json b/data/game/ci/cities-in-motion-tokyo.json new file mode 100644 index 000000000000..afd3c9014fd4 --- /dev/null +++ b/data/game/ci/cities-in-motion-tokyo.json @@ -0,0 +1,19 @@ +{ + "slug": "cities-in-motion-tokyo", + "name": "Cities in Motion: Tokyo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113283100" + ], + "release_date": "2011-05-31", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Colossal Order" + ], + "publishers": [ + "Paradox Interactive" + ] +} diff --git a/data/game/ci/cities-in-motion-ulm.json b/data/game/ci/cities-in-motion-ulm.json new file mode 100644 index 000000000000..08c2bc621d42 --- /dev/null +++ b/data/game/ci/cities-in-motion-ulm.json @@ -0,0 +1,19 @@ +{ + "slug": "cities-in-motion-ulm", + "name": "Cities in Motion: Ulm", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113283112" + ], + "release_date": "2012-04-12", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Colossal Order" + ], + "publishers": [ + "Paradox Interactive" + ] +} diff --git a/data/game/ci/cities-in-motion-us-cities.json b/data/game/ci/cities-in-motion-us-cities.json new file mode 100644 index 000000000000..7976449c0e34 --- /dev/null +++ b/data/game/ci/cities-in-motion-us-cities.json @@ -0,0 +1,19 @@ +{ + "slug": "cities-in-motion-us-cities", + "name": "Cities in Motion: US Cities", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113283108" + ], + "release_date": "2012-01-17", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Colossal Order" + ], + "publishers": [ + "Paradox Interactive" + ] +} diff --git a/data/game/ci/cities-skylines-after-dark.json b/data/game/ci/cities-skylines-after-dark.json new file mode 100644 index 000000000000..e5d2081657c7 --- /dev/null +++ b/data/game/ci/cities-skylines-after-dark.json @@ -0,0 +1,19 @@ +{ + "slug": "cities-skylines-after-dark", + "name": "Cities: Skylines – After Dark", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q31887620" + ], + "release_date": "2015-09-24", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Colossal Order" + ], + "publishers": [ + "Paradox Interactive" + ] +} diff --git a/data/game/ci/cities-skylines-airports.json b/data/game/ci/cities-skylines-airports.json new file mode 100644 index 000000000000..fec5020babfe --- /dev/null +++ b/data/game/ci/cities-skylines-airports.json @@ -0,0 +1,19 @@ +{ + "slug": "cities-skylines-airports", + "name": "Cities: Skylines – Airports", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113585655" + ], + "release_date": "2022-01-25", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Colossal Order" + ], + "publishers": [ + "Paradox Interactive" + ] +} diff --git a/data/game/ci/cities-skylines-campus.json b/data/game/ci/cities-skylines-campus.json new file mode 100644 index 000000000000..7090f7a14936 --- /dev/null +++ b/data/game/ci/cities-skylines-campus.json @@ -0,0 +1,19 @@ +{ + "slug": "cities-skylines-campus", + "name": "Cities: Skylines – Campus", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107475096" + ], + "release_date": "2019-05-21", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Colossal Order" + ], + "publishers": [ + "Paradox Interactive" + ] +} diff --git a/data/game/ci/cities-skylines-concerts.json b/data/game/ci/cities-skylines-concerts.json new file mode 100644 index 000000000000..42e8907b1dc9 --- /dev/null +++ b/data/game/ci/cities-skylines-concerts.json @@ -0,0 +1,19 @@ +{ + "slug": "cities-skylines-concerts", + "name": "Cities: Skylines – Concerts", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107475093" + ], + "release_date": "2017-08-17", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Colossal Order" + ], + "publishers": [ + "Paradox Interactive" + ] +} diff --git a/data/game/ci/cities-skylines-green-cities.json b/data/game/ci/cities-skylines-green-cities.json new file mode 100644 index 000000000000..c307bffb1dc2 --- /dev/null +++ b/data/game/ci/cities-skylines-green-cities.json @@ -0,0 +1,19 @@ +{ + "slug": "cities-skylines-green-cities", + "name": "Cities: Skylines – Green Cities", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107475092" + ], + "release_date": "2017-10-09", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Colossal Order" + ], + "publishers": [ + "Paradox Interactive" + ] +} diff --git a/data/game/ci/cities-skylines-industries.json b/data/game/ci/cities-skylines-industries.json new file mode 100644 index 000000000000..56ba501d9328 --- /dev/null +++ b/data/game/ci/cities-skylines-industries.json @@ -0,0 +1,19 @@ +{ + "slug": "cities-skylines-industries", + "name": "Cities: Skylines – Industries", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107475089" + ], + "release_date": "2018-10-23", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Colossal Order" + ], + "publishers": [ + "Paradox Interactive" + ] +} diff --git a/data/game/ci/cities-skylines-mass-transit.json b/data/game/ci/cities-skylines-mass-transit.json new file mode 100644 index 000000000000..7b47a66898e5 --- /dev/null +++ b/data/game/ci/cities-skylines-mass-transit.json @@ -0,0 +1,19 @@ +{ + "slug": "cities-skylines-mass-transit", + "name": "Cities: Skylines – Mass Transit", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107475090" + ], + "release_date": "2017-05-17", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Colossal Order" + ], + "publishers": [ + "Paradox Interactive" + ] +} diff --git a/data/game/ci/cities-skylines-match-day.json b/data/game/ci/cities-skylines-match-day.json new file mode 100644 index 000000000000..a89ac6eca872 --- /dev/null +++ b/data/game/ci/cities-skylines-match-day.json @@ -0,0 +1,19 @@ +{ + "slug": "cities-skylines-match-day", + "name": "Cities: Skylines – Match Day", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107475094" + ], + "release_date": "2016-06-09", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Colossal Order" + ], + "publishers": [ + "Paradox Interactive" + ] +} diff --git a/data/game/ci/cities-skylines-natural-disasters.json b/data/game/ci/cities-skylines-natural-disasters.json new file mode 100644 index 000000000000..71728c260090 --- /dev/null +++ b/data/game/ci/cities-skylines-natural-disasters.json @@ -0,0 +1,19 @@ +{ + "slug": "cities-skylines-natural-disasters", + "name": "Cities: Skylines – Natural Disasters", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107475095" + ], + "release_date": "2016-11-29", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Colossal Order" + ], + "publishers": [ + "Paradox Interactive" + ] +} diff --git a/data/game/ci/cities-skylines-parklife.json b/data/game/ci/cities-skylines-parklife.json new file mode 100644 index 000000000000..90384aff68ff --- /dev/null +++ b/data/game/ci/cities-skylines-parklife.json @@ -0,0 +1,19 @@ +{ + "slug": "cities-skylines-parklife", + "name": "Cities: Skylines – Parklife", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107475091" + ], + "release_date": "2018-05-23", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Colossal Order" + ], + "publishers": [ + "Paradox Interactive" + ] +} diff --git a/data/game/ci/cities-skylines-plazas-promenades.json b/data/game/ci/cities-skylines-plazas-promenades.json new file mode 100644 index 000000000000..3ea00a7df2dc --- /dev/null +++ b/data/game/ci/cities-skylines-plazas-promenades.json @@ -0,0 +1,13 @@ +{ + "slug": "cities-skylines-plazas-promenades", + "name": "Cities: Skylines – Plazas & Promenades", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113586046" + ], + "release_date": "2022-09-14", + "platforms": [ + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/game/ci/cities-skylines-snowfall.json b/data/game/ci/cities-skylines-snowfall.json new file mode 100644 index 000000000000..92bdd06efa63 --- /dev/null +++ b/data/game/ci/cities-skylines-snowfall.json @@ -0,0 +1,19 @@ +{ + "slug": "cities-skylines-snowfall", + "name": "Cities: Skylines – Snowfall", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107475088" + ], + "release_date": "2016-02-18", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Colossal Order" + ], + "publishers": [ + "Paradox Interactive" + ] +} diff --git a/data/game/ci/cities-skylines-sunset-harbor.json b/data/game/ci/cities-skylines-sunset-harbor.json new file mode 100644 index 000000000000..85f95b9194f6 --- /dev/null +++ b/data/game/ci/cities-skylines-sunset-harbor.json @@ -0,0 +1,19 @@ +{ + "slug": "cities-skylines-sunset-harbor", + "name": "Cities: Skylines – Sunset Harbor", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107475097" + ], + "release_date": "2020-03-26", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Colossal Order" + ], + "publishers": [ + "Paradox Interactive" + ] +} diff --git a/data/game/ci/city-bus-simulator-2010-region-usedom.json b/data/game/ci/city-bus-simulator-2010-region-usedom.json new file mode 100644 index 000000000000..31f2528160d2 --- /dev/null +++ b/data/game/ci/city-bus-simulator-2010-region-usedom.json @@ -0,0 +1,14 @@ +{ + "slug": "city-bus-simulator-2010-region-usedom", + "name": "City Bus Simulator 2010 Region Usedom", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2849140" + ], + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ] +} diff --git a/data/game/ci/city-of-light.json b/data/game/ci/city-of-light.json new file mode 100644 index 000000000000..89c468f922c7 --- /dev/null +++ b/data/game/ci/city-of-light.json @@ -0,0 +1,29 @@ +{ + "slug": "city-of-light", + "name": "City of Light", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107136969" + ], + "release_date": "2016-12-13", + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 4", + "iOS", + "macOS", + "PlayStation 3", + "Microsoft Windows" + ], + "genres": [ + "graphic adventure game", + "episodic video game" + ], + "developers": [ + "Telltale Games", + "lowland" + ], + "publishers": [ + "lowland", + "Telltale Games" + ] +} diff --git a/data/game/ci/civilization-beyond-earth-rising-tide.json b/data/game/ci/civilization-beyond-earth-rising-tide.json new file mode 100644 index 000000000000..aa14a0371750 --- /dev/null +++ b/data/game/ci/civilization-beyond-earth-rising-tide.json @@ -0,0 +1,19 @@ +{ + "slug": "civilization-beyond-earth-rising-tide", + "name": "Civilization: Beyond Earth - Rising Tide", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25831301" + ], + "release_date": "2015-10-08", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "science fiction video game" + ], + "developers": [ + "Firaxis Games" + ] +} diff --git a/data/game/ci/civilization-ii-conflicts-in-civilization.json b/data/game/ci/civilization-ii-conflicts-in-civilization.json new file mode 100644 index 000000000000..90156456d5dd --- /dev/null +++ b/data/game/ci/civilization-ii-conflicts-in-civilization.json @@ -0,0 +1,19 @@ +{ + "slug": "civilization-ii-conflicts-in-civilization", + "name": "Civilization II: Conflicts in Civilization", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28126699" + ], + "release_date": "1996-01-01", + "platforms": [ + "Classic Mac OS", + "Microsoft Windows" + ], + "developers": [ + "MicroProse" + ], + "publishers": [ + "MicroProse" + ] +} diff --git a/data/game/ci/civilization-ii-fantastic-worlds.json b/data/game/ci/civilization-ii-fantastic-worlds.json new file mode 100644 index 000000000000..89d9c24feaab --- /dev/null +++ b/data/game/ci/civilization-ii-fantastic-worlds.json @@ -0,0 +1,8 @@ +{ + "slug": "civilization-ii-fantastic-worlds", + "name": "Civilization II: Fantastic Worlds", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121438707" + ] +} diff --git a/data/game/ci/civilization-ii-multiplayer-gold-edition.json b/data/game/ci/civilization-ii-multiplayer-gold-edition.json new file mode 100644 index 000000000000..1634c47a721b --- /dev/null +++ b/data/game/ci/civilization-ii-multiplayer-gold-edition.json @@ -0,0 +1,12 @@ +{ + "slug": "civilization-ii-multiplayer-gold-edition", + "name": "Civilization II: Multiplayer Gold Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121438694" + ], + "platforms": [ + "Classic Mac OS", + "Microsoft Windows" + ] +} diff --git a/data/game/ci/civilization-iii-conquests.json b/data/game/ci/civilization-iii-conquests.json new file mode 100644 index 000000000000..2967575de439 --- /dev/null +++ b/data/game/ci/civilization-iii-conquests.json @@ -0,0 +1,22 @@ +{ + "slug": "civilization-iii-conquests", + "name": "Civilization III: Conquests", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q548085" + ], + "release_date": "2003-11-04", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "turn-based strategy video game" + ], + "developers": [ + "BreakAway Games", + "Firaxis Games" + ], + "publishers": [ + "Atari" + ] +} diff --git a/data/game/ci/civilization-iii-play-the-world.json b/data/game/ci/civilization-iii-play-the-world.json new file mode 100644 index 000000000000..979557a4a82c --- /dev/null +++ b/data/game/ci/civilization-iii-play-the-world.json @@ -0,0 +1,19 @@ +{ + "slug": "civilization-iii-play-the-world", + "name": "Civilization III: Play the World", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2633010" + ], + "release_date": "2002-10-31", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "4X", + "turn-based strategy video game" + ], + "developers": [ + "Firaxis Games" + ] +} diff --git a/data/game/ci/civilization-iv-beyond-the-sword.json b/data/game/ci/civilization-iv-beyond-the-sword.json new file mode 100644 index 000000000000..9cb5b99eeadc --- /dev/null +++ b/data/game/ci/civilization-iv-beyond-the-sword.json @@ -0,0 +1,23 @@ +{ + "slug": "civilization-iv-beyond-the-sword", + "name": "Civilization IV: Beyond the Sword", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1143029" + ], + "release_date": "2007-07-18", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "4X", + "turn-based strategy video game" + ], + "developers": [ + "Firaxis Games" + ], + "publishers": [ + "Take-Two Interactive" + ] +} diff --git a/data/game/ci/civilization-iv-warlords.json b/data/game/ci/civilization-iv-warlords.json new file mode 100644 index 000000000000..12f939e13d7d --- /dev/null +++ b/data/game/ci/civilization-iv-warlords.json @@ -0,0 +1,23 @@ +{ + "slug": "civilization-iv-warlords", + "name": "Civilization IV: Warlords", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q956306" + ], + "release_date": "2006-07-24", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "4X", + "turn-based strategy video game" + ], + "developers": [ + "Firaxis Games" + ], + "publishers": [ + "Take-Two Interactive" + ] +} diff --git a/data/game/ci/civilization-q126185171.json b/data/game/ci/civilization-q126185171.json new file mode 100644 index 000000000000..e23e6f3580cc --- /dev/null +++ b/data/game/ci/civilization-q126185171.json @@ -0,0 +1,8 @@ +{ + "slug": "civilization-q126185171", + "name": "Civilization", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126185171" + ] +} diff --git a/data/game/ci/civilization-v-brave-new-world.json b/data/game/ci/civilization-v-brave-new-world.json new file mode 100644 index 000000000000..2acb70a71498 --- /dev/null +++ b/data/game/ci/civilization-v-brave-new-world.json @@ -0,0 +1,27 @@ +{ + "slug": "civilization-v-brave-new-world", + "name": "Civilization V: Brave New World", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7383408" + ], + "release_date": "2013-07-09", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "4X", + "wargame", + "turn-based strategy video game", + "computer wargame", + "grand strategy wargame" + ], + "developers": [ + "Firaxis Games", + "Aspyr" + ], + "publishers": [ + "2K" + ] +} diff --git a/data/game/ci/civilization-v-gods-kings.json b/data/game/ci/civilization-v-gods-kings.json new file mode 100644 index 000000000000..13c5a7cf176e --- /dev/null +++ b/data/game/ci/civilization-v-gods-kings.json @@ -0,0 +1,26 @@ +{ + "slug": "civilization-v-gods-kings", + "name": "Civilization V: Gods & Kings", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2418673" + ], + "release_date": "2012-06-19", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "4X", + "wargame", + "turn-based strategy video game", + "computer wargame", + "grand strategy wargame" + ], + "developers": [ + "Firaxis Games" + ], + "publishers": [ + "2K" + ] +} diff --git a/data/game/ci/civilization-vi-gathering-storm.json b/data/game/ci/civilization-vi-gathering-storm.json new file mode 100644 index 000000000000..cd2d645b36ab --- /dev/null +++ b/data/game/ci/civilization-vi-gathering-storm.json @@ -0,0 +1,19 @@ +{ + "slug": "civilization-vi-gathering-storm", + "name": "Civilization VI: Gathering Storm", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q59141736" + ], + "release_date": "2019-02-14", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Firaxis Games" + ], + "publishers": [ + "2K" + ] +} diff --git a/data/game/ci/civilizationedu.json b/data/game/ci/civilizationedu.json new file mode 100644 index 000000000000..fe8eed72d285 --- /dev/null +++ b/data/game/ci/civilizationedu.json @@ -0,0 +1,17 @@ +{ + "slug": "civilizationedu", + "name": "CivilizationEDU", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28004627" + ], + "genres": [ + "educational video game" + ], + "developers": [ + "Firaxis Games" + ], + "publishers": [ + "2K" + ] +} diff --git a/data/game/cl/clash-heroes.json b/data/game/cl/clash-heroes.json new file mode 100644 index 000000000000..0038748ac9df --- /dev/null +++ b/data/game/cl/clash-heroes.json @@ -0,0 +1,14 @@ +{ + "slug": "clash-heroes", + "name": "Clash Heroes", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106330158" + ], + "developers": [ + "Supercell" + ], + "publishers": [ + "Supercell" + ] +} diff --git a/data/game/cl/clash-mini.json b/data/game/cl/clash-mini.json new file mode 100644 index 000000000000..35be87c294d5 --- /dev/null +++ b/data/game/cl/clash-mini.json @@ -0,0 +1,21 @@ +{ + "slug": "clash-mini", + "name": "Clash Mini", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106330125" + ], + "release_date": "2021-11-08", + "platforms": [ + "iOS" + ], + "genres": [ + "strategy video game" + ], + "developers": [ + "Supercell" + ], + "publishers": [ + "Supercell" + ] +} diff --git a/data/game/cl/clash-quest.json b/data/game/cl/clash-quest.json new file mode 100644 index 000000000000..4b5bff6ed3b2 --- /dev/null +++ b/data/game/cl/clash-quest.json @@ -0,0 +1,21 @@ +{ + "slug": "clash-quest", + "name": "Clash Quest", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106330009" + ], + "release_date": "2021-04-06", + "platforms": [ + "iOS" + ], + "genres": [ + "strategy video game" + ], + "developers": [ + "Supercell" + ], + "publishers": [ + "Supercell" + ] +} diff --git a/data/game/cl/class-of-09-the-double-up.json b/data/game/cl/class-of-09-the-double-up.json new file mode 100644 index 000000000000..bf054d11c823 --- /dev/null +++ b/data/game/cl/class-of-09-the-double-up.json @@ -0,0 +1,24 @@ +{ + "slug": "class-of-09-the-double-up", + "name": "Class of '09: The Double Up", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123356551" + ], + "release_date": "2023-06-26", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "visual novel", + "casual game", + "simulation video game" + ], + "developers": [ + "SBN3" + ], + "publishers": [ + "SBN3" + ] +} diff --git a/data/game/cl/classic-text-adventure-masterpieces-of-infocom.json b/data/game/cl/classic-text-adventure-masterpieces-of-infocom.json new file mode 100644 index 000000000000..453e2d656859 --- /dev/null +++ b/data/game/cl/classic-text-adventure-masterpieces-of-infocom.json @@ -0,0 +1,13 @@ +{ + "slug": "classic-text-adventure-masterpieces-of-infocom", + "name": "Classic Text Adventure Masterpieces of Infocom", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5128226" + ], + "release_date": "1996-01-01", + "platforms": [ + "Classic Mac OS", + "DOS" + ] +} diff --git a/data/game/cl/cleopatra-queen-of-the-nile.json b/data/game/cl/cleopatra-queen-of-the-nile.json new file mode 100644 index 000000000000..164316df0913 --- /dev/null +++ b/data/game/cl/cleopatra-queen-of-the-nile.json @@ -0,0 +1,9 @@ +{ + "slug": "cleopatra-queen-of-the-nile", + "name": "Cleopatra: Queen of the Nile", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2980768" + ], + "release_date": "2000-08-17" +} diff --git a/data/game/cl/click-speed-test.json b/data/game/cl/click-speed-test.json new file mode 100644 index 000000000000..85dde6bbe03e --- /dev/null +++ b/data/game/cl/click-speed-test.json @@ -0,0 +1,11 @@ +{ + "slug": "click-speed-test", + "name": "Click Speed Test", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q95982451" + ], + "platforms": [ + "web browser" + ] +} diff --git a/data/game/cl/cloak-the-naked-mind.json b/data/game/cl/cloak-the-naked-mind.json new file mode 100644 index 000000000000..2c75097ba7e6 --- /dev/null +++ b/data/game/cl/cloak-the-naked-mind.json @@ -0,0 +1,14 @@ +{ + "slug": "cloak-the-naked-mind", + "name": "Cloak: The Naked Mind", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105786276" + ], + "genres": [ + "adventure video game" + ], + "developers": [ + "Sierra On-Line" + ] +} diff --git a/data/game/cl/cloud-climber-fan-pack.json b/data/game/cl/cloud-climber-fan-pack.json new file mode 100644 index 000000000000..389c317a4b46 --- /dev/null +++ b/data/game/cl/cloud-climber-fan-pack.json @@ -0,0 +1,18 @@ +{ + "slug": "cloud-climber-fan-pack", + "name": "Cloud Climber - Fan Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115651967" + ], + "release_date": "2021-02-16", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Two Star Games" + ], + "publishers": [ + "Two Star Games" + ] +} diff --git a/data/game/cl/cloudpunk-city-of-ghosts.json b/data/game/cl/cloudpunk-city-of-ghosts.json new file mode 100644 index 000000000000..fda0b33e8e87 --- /dev/null +++ b/data/game/cl/cloudpunk-city-of-ghosts.json @@ -0,0 +1,12 @@ +{ + "slug": "cloudpunk-city-of-ghosts", + "name": "Cloudpunk - City of Ghosts", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116239191" + ], + "release_date": "2021-05-25", + "platforms": [ + "Microsoft Windows" + ] +} diff --git a/data/game/cl/clue-classic-edition.json b/data/game/cl/clue-classic-edition.json new file mode 100644 index 000000000000..8f5d967ae133 --- /dev/null +++ b/data/game/cl/clue-classic-edition.json @@ -0,0 +1,21 @@ +{ + "slug": "clue-classic-edition", + "name": "Clue: Classic Edition+", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124129377" + ], + "release_date": "2023-03-24", + "platforms": [ + "iOS" + ], + "genres": [ + "board video game" + ], + "developers": [ + "Marmalade Game Studio" + ], + "publishers": [ + "Marmalade Game Studio" + ] +} diff --git a/data/game/cl/clue-vcr-mystery-game.json b/data/game/cl/clue-vcr-mystery-game.json new file mode 100644 index 000000000000..4a0aa5b82cee --- /dev/null +++ b/data/game/cl/clue-vcr-mystery-game.json @@ -0,0 +1,9 @@ +{ + "slug": "clue-vcr-mystery-game", + "name": "Clue VCR Mystery Game", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q19579976" + ], + "release_date": "1985-01-01" +} diff --git a/data/game/cl/cluedo-hasbro-s-mystery-game.json b/data/game/cl/cluedo-hasbro-s-mystery-game.json new file mode 100644 index 000000000000..5d33c7b3be33 --- /dev/null +++ b/data/game/cl/cluedo-hasbro-s-mystery-game.json @@ -0,0 +1,13 @@ +{ + "slug": "cluedo-hasbro-s-mystery-game", + "name": "Cluedo: Hasbro's Mystery Game+", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117357542" + ], + "release_date": "2023-03-24", + "platforms": [ + "iPadOS", + "iOS" + ] +} diff --git a/data/game/cl/cluster.json b/data/game/cl/cluster.json new file mode 100644 index 000000000000..4e380ff3144e --- /dev/null +++ b/data/game/cl/cluster.json @@ -0,0 +1,17 @@ +{ + "slug": "cluster", + "name": "cluster", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111177860" + ], + "release_date": "2017-05-31", + "platforms": [ + "iOS", + "macOS", + "Microsoft Windows" + ], + "developers": [ + "CLUSTAR" + ] +} diff --git a/data/game/co/cocoto-magic-circus-2.json b/data/game/co/cocoto-magic-circus-2.json new file mode 100644 index 000000000000..641e76ce88b5 --- /dev/null +++ b/data/game/co/cocoto-magic-circus-2.json @@ -0,0 +1,11 @@ +{ + "slug": "cocoto-magic-circus-2", + "name": "Cocoto Magic Circus 2", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140471133" + ], + "platforms": [ + "Wii U" + ] +} diff --git a/data/game/co/code-18.json b/data/game/co/code-18.json new file mode 100644 index 000000000000..75dc137fa296 --- /dev/null +++ b/data/game/co/code-18.json @@ -0,0 +1,16 @@ +{ + "slug": "code-18", + "name": "Code_18", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5139996" + ], + "release_date": "2011-09-29", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "science fiction", + "visual novel" + ] +} diff --git a/data/game/co/coin-crypt-sea-and-sky.json b/data/game/co/coin-crypt-sea-and-sky.json new file mode 100644 index 000000000000..b3377a4bca8b --- /dev/null +++ b/data/game/co/coin-crypt-sea-and-sky.json @@ -0,0 +1,19 @@ +{ + "slug": "coin-crypt-sea-and-sky", + "name": "Coin Crypt: Sea and Sky", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105727478" + ], + "release_date": "2015-09-29", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Dumb and Fat Games" + ], + "publishers": [ + "Dumb and Fat Games" + ] +} diff --git a/data/game/co/coin-op-hits-ii.json b/data/game/co/coin-op-hits-ii.json new file mode 100644 index 000000000000..3cf8504946cf --- /dev/null +++ b/data/game/co/coin-op-hits-ii.json @@ -0,0 +1,8 @@ +{ + "slug": "coin-op-hits-ii", + "name": "Coin-Op Hits II", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126185754" + ] +} diff --git a/data/game/co/coincentration.json b/data/game/co/coincentration.json new file mode 100644 index 000000000000..80c586c73420 --- /dev/null +++ b/data/game/co/coincentration.json @@ -0,0 +1,8 @@ +{ + "slug": "coincentration", + "name": "Coincentration", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124842794" + ] +} diff --git a/data/game/co/collection-of-mana.json b/data/game/co/collection-of-mana.json new file mode 100644 index 000000000000..8af7309b9708 --- /dev/null +++ b/data/game/co/collection-of-mana.json @@ -0,0 +1,9 @@ +{ + "slug": "collection-of-mana", + "name": "Collection of Mana", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q65279129" + ], + "release_date": "2017-01-01" +} diff --git a/data/game/co/collection-of-saga-final-fantasy-legend.json b/data/game/co/collection-of-saga-final-fantasy-legend.json new file mode 100644 index 000000000000..b39505a45653 --- /dev/null +++ b/data/game/co/collection-of-saga-final-fantasy-legend.json @@ -0,0 +1,20 @@ +{ + "slug": "collection-of-saga-final-fantasy-legend", + "name": "Collection of SaGa: Final Fantasy Legend", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108305084" + ], + "release_date": "2020-12-15", + "platforms": [ + "iPadOS", + "iOS", + "Microsoft Windows" + ], + "genres": [ + "Japanese role-playing video game" + ], + "publishers": [ + "Square Enix" + ] +} diff --git a/data/game/co/colossal-kaiju-combat.json b/data/game/co/colossal-kaiju-combat.json new file mode 100644 index 000000000000..2206809b0700 --- /dev/null +++ b/data/game/co/colossal-kaiju-combat.json @@ -0,0 +1,14 @@ +{ + "slug": "colossal-kaiju-combat", + "name": "Colossal Kaiju Combat", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q14581515" + ], + "platforms": [ + "personal computer" + ], + "genres": [ + "fighting game" + ] +} diff --git a/data/game/co/comanche-cd.json b/data/game/co/comanche-cd.json new file mode 100644 index 000000000000..51401535af58 --- /dev/null +++ b/data/game/co/comanche-cd.json @@ -0,0 +1,8 @@ +{ + "slug": "comanche-cd", + "name": "Comanche CD", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123035566" + ] +} diff --git a/data/game/co/comanche-maximum-overkill-mission-disk-1.json b/data/game/co/comanche-maximum-overkill-mission-disk-1.json new file mode 100644 index 000000000000..535f51114ee6 --- /dev/null +++ b/data/game/co/comanche-maximum-overkill-mission-disk-1.json @@ -0,0 +1,8 @@ +{ + "slug": "comanche-maximum-overkill-mission-disk-1", + "name": "Comanche: Maximum Overkill - Mission Disk 1", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123035561" + ] +} diff --git a/data/game/co/comanche-over-the-edge.json b/data/game/co/comanche-over-the-edge.json new file mode 100644 index 000000000000..75ac522a27f4 --- /dev/null +++ b/data/game/co/comanche-over-the-edge.json @@ -0,0 +1,8 @@ +{ + "slug": "comanche-over-the-edge", + "name": "Comanche: Over the Edge", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123035564" + ] +} diff --git a/data/game/co/command-conquer-3-kane-s-wrath.json b/data/game/co/command-conquer-3-kane-s-wrath.json new file mode 100644 index 000000000000..431e4f3a0f56 --- /dev/null +++ b/data/game/co/command-conquer-3-kane-s-wrath.json @@ -0,0 +1,21 @@ +{ + "slug": "command-conquer-3-kane-s-wrath", + "name": "Command & Conquer 3: Kane's Wrath", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q899188" + ], + "release_date": "2008-03-24", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "real-time strategy" + ], + "developers": [ + "Danger Close Games" + ], + "publishers": [ + "Electronic Arts" + ] +} diff --git a/data/game/co/command-conquer-q2985699.json b/data/game/co/command-conquer-q2985699.json new file mode 100644 index 000000000000..c23e2669001f --- /dev/null +++ b/data/game/co/command-conquer-q2985699.json @@ -0,0 +1,20 @@ +{ + "slug": "command-conquer-q2985699", + "name": "Command & Conquer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2985699" + ], + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "real-time strategy" + ], + "developers": [ + "Victory Games" + ], + "publishers": [ + "Electronic Arts" + ] +} diff --git a/data/game/co/command-conquer-red-alert-3-uprising.json b/data/game/co/command-conquer-red-alert-3-uprising.json new file mode 100644 index 000000000000..37ceeb475c87 --- /dev/null +++ b/data/game/co/command-conquer-red-alert-3-uprising.json @@ -0,0 +1,21 @@ +{ + "slug": "command-conquer-red-alert-3-uprising", + "name": "Command & Conquer: Red Alert 3 – Uprising", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1091551" + ], + "release_date": "2009-03-12", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "real-time strategy" + ], + "developers": [ + "Danger Close Games" + ], + "publishers": [ + "Electronic Arts" + ] +} diff --git a/data/game/co/command-conquer-remastered-collection.json b/data/game/co/command-conquer-remastered-collection.json new file mode 100644 index 000000000000..a40c48f8ff84 --- /dev/null +++ b/data/game/co/command-conquer-remastered-collection.json @@ -0,0 +1,21 @@ +{ + "slug": "command-conquer-remastered-collection", + "name": "Command & Conquer Remastered Collection", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q94579909" + ], + "release_date": "2020-06-05", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "real-time strategy" + ], + "developers": [ + "Petroglyph Games" + ], + "publishers": [ + "Electronic Arts" + ] +} diff --git a/data/game/co/command-conquer-special-gold-edition.json b/data/game/co/command-conquer-special-gold-edition.json new file mode 100644 index 000000000000..ab2441a43c32 --- /dev/null +++ b/data/game/co/command-conquer-special-gold-edition.json @@ -0,0 +1,8 @@ +{ + "slug": "command-conquer-special-gold-edition", + "name": "Command & Conquer: Special Gold Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120836097" + ] +} diff --git a/data/game/co/command-conquer-the-covert-operations.json b/data/game/co/command-conquer-the-covert-operations.json new file mode 100644 index 000000000000..17372060d6ed --- /dev/null +++ b/data/game/co/command-conquer-the-covert-operations.json @@ -0,0 +1,12 @@ +{ + "slug": "command-conquer-the-covert-operations", + "name": "Command & Conquer: The Covert Operations", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3684568" + ], + "release_date": "1996-01-01", + "platforms": [ + "Microsoft Windows" + ] +} diff --git a/data/game/co/command-conquer-the-first-decade.json b/data/game/co/command-conquer-the-first-decade.json new file mode 100644 index 000000000000..573d28f9fad7 --- /dev/null +++ b/data/game/co/command-conquer-the-first-decade.json @@ -0,0 +1,22 @@ +{ + "slug": "command-conquer-the-first-decade", + "name": "Command & Conquer: The First Decade", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2618195" + ], + "release_date": "2006-02-07", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "real-time strategy" + ], + "developers": [ + "Danger Close Games" + ], + "publishers": [ + "Electronic Arts" + ] +} diff --git a/data/game/co/command-conquer-tiberian-sun-firestorm.json b/data/game/co/command-conquer-tiberian-sun-firestorm.json new file mode 100644 index 000000000000..be3bef4fe1dc --- /dev/null +++ b/data/game/co/command-conquer-tiberian-sun-firestorm.json @@ -0,0 +1,12 @@ +{ + "slug": "command-conquer-tiberian-sun-firestorm", + "name": "Command & Conquer: Tiberian Sun + Firestorm", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137602757" + ], + "genres": [ + "action game", + "strategy video game" + ] +} diff --git a/data/game/co/command-conquer-ultimate-collection.json b/data/game/co/command-conquer-ultimate-collection.json new file mode 100644 index 000000000000..23d1511b0ecd --- /dev/null +++ b/data/game/co/command-conquer-ultimate-collection.json @@ -0,0 +1,11 @@ +{ + "slug": "command-conquer-ultimate-collection", + "name": "Command & Conquer: Ultimate Collection", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121141082" + ], + "platforms": [ + "Microsoft Windows" + ] +} diff --git a/data/game/co/command-conquer-yuri-s-revenge.json b/data/game/co/command-conquer-yuri-s-revenge.json new file mode 100644 index 000000000000..23257cf2c382 --- /dev/null +++ b/data/game/co/command-conquer-yuri-s-revenge.json @@ -0,0 +1,21 @@ +{ + "slug": "command-conquer-yuri-s-revenge", + "name": "Command & Conquer: Yuri's Revenge", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2014743" + ], + "release_date": "2001-10-10", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "real-time strategy" + ], + "developers": [ + "Westwood Studios" + ], + "publishers": [ + "Electronic Arts" + ] +} diff --git a/data/game/co/commander-keen-q114564469.json b/data/game/co/commander-keen-q114564469.json new file mode 100644 index 000000000000..71cf09e2551d --- /dev/null +++ b/data/game/co/commander-keen-q114564469.json @@ -0,0 +1,18 @@ +{ + "slug": "commander-keen-q114564469", + "name": "Commander Keen", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q114564469" + ], + "release_date": "1990-12-14", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "id Software" + ], + "publishers": [ + "id Software" + ] +} diff --git a/data/game/co/commandos-ammo-pack.json b/data/game/co/commandos-ammo-pack.json new file mode 100644 index 000000000000..e6010cc2a6e7 --- /dev/null +++ b/data/game/co/commandos-ammo-pack.json @@ -0,0 +1,8 @@ +{ + "slug": "commandos-ammo-pack", + "name": "Commandos: Ammo Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q132531141" + ] +} diff --git a/data/game/co/common-ground.json b/data/game/co/common-ground.json new file mode 100644 index 000000000000..34699bc6be74 --- /dev/null +++ b/data/game/co/common-ground.json @@ -0,0 +1,9 @@ +{ + "slug": "common-ground", + "name": "Common Ground", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q57974035" + ], + "release_date": "2010-03-24" +} diff --git a/data/game/co/comp-sys-sinclair-crap-games-competition.json b/data/game/co/comp-sys-sinclair-crap-games-competition.json new file mode 100644 index 000000000000..8bad8f895906 --- /dev/null +++ b/data/game/co/comp-sys-sinclair-crap-games-competition.json @@ -0,0 +1,8 @@ +{ + "slug": "comp-sys-sinclair-crap-games-competition", + "name": "Comp.sys.sinclair Crap Games Competition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5155253" + ] +} diff --git a/data/game/co/company-of-heroes-2-complete-collection.json b/data/game/co/company-of-heroes-2-complete-collection.json new file mode 100644 index 000000000000..8bc0c5e98989 --- /dev/null +++ b/data/game/co/company-of-heroes-2-complete-collection.json @@ -0,0 +1,8 @@ +{ + "slug": "company-of-heroes-2-complete-collection", + "name": "Company of Heroes 2: Complete Collection", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123335554" + ] +} diff --git a/data/game/co/company-of-heroes-3-fire-steel.json b/data/game/co/company-of-heroes-3-fire-steel.json new file mode 100644 index 000000000000..21a74016eb97 --- /dev/null +++ b/data/game/co/company-of-heroes-3-fire-steel.json @@ -0,0 +1,8 @@ +{ + "slug": "company-of-heroes-3-fire-steel", + "name": "Company of Heroes 3: Fire & Steel", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140471197" + ] +} diff --git a/data/game/co/company-of-heroes-opposing-fronts.json b/data/game/co/company-of-heroes-opposing-fronts.json new file mode 100644 index 000000000000..42489dcbb8d8 --- /dev/null +++ b/data/game/co/company-of-heroes-opposing-fronts.json @@ -0,0 +1,19 @@ +{ + "slug": "company-of-heroes-opposing-fronts", + "name": "Company of Heroes: Opposing Fronts", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q923500" + ], + "release_date": "2007-09-25", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "real-time strategy" + ], + "publishers": [ + "THQ" + ] +} diff --git a/data/game/co/compass-point-west.json b/data/game/co/compass-point-west.json new file mode 100644 index 000000000000..d78bb0ee0a06 --- /dev/null +++ b/data/game/co/compass-point-west.json @@ -0,0 +1,8 @@ +{ + "slug": "compass-point-west", + "name": "Compass Point: West", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140472094" + ] +} diff --git a/data/game/co/computer-quarterback-q60339155.json b/data/game/co/computer-quarterback-q60339155.json new file mode 100644 index 000000000000..5f503724c64c --- /dev/null +++ b/data/game/co/computer-quarterback-q60339155.json @@ -0,0 +1,15 @@ +{ + "slug": "computer-quarterback-q60339155", + "name": "Computer Quarterback", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60339155" + ], + "release_date": "1981-01-01", + "platforms": [ + "Apple II" + ], + "publishers": [ + "Strategic Simulations" + ] +} diff --git a/data/game/co/conflict-of-heroes-ghost-divisions.json b/data/game/co/conflict-of-heroes-ghost-divisions.json new file mode 100644 index 000000000000..68295df49fc4 --- /dev/null +++ b/data/game/co/conflict-of-heroes-ghost-divisions.json @@ -0,0 +1,18 @@ +{ + "slug": "conflict-of-heroes-ghost-divisions", + "name": "Conflict of Heroes: Ghost Divisions", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113866974" + ], + "release_date": "2013-06-13", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Western Civilization Software" + ], + "publishers": [ + "Slitherine Software UK Limited" + ] +} diff --git a/data/game/co/conflict-of-heroes-storms-of-steel.json b/data/game/co/conflict-of-heroes-storms-of-steel.json new file mode 100644 index 000000000000..8dc1b635ba27 --- /dev/null +++ b/data/game/co/conflict-of-heroes-storms-of-steel.json @@ -0,0 +1,18 @@ +{ + "slug": "conflict-of-heroes-storms-of-steel", + "name": "Conflict of Heroes: Storms of Steel", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113866972" + ], + "release_date": "2013-11-19", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Western Civilization Software" + ], + "publishers": [ + "Slitherine Software UK Limited" + ] +} diff --git a/data/game/co/conker-gettin-medieval.json b/data/game/co/conker-gettin-medieval.json new file mode 100644 index 000000000000..35a4189512b3 --- /dev/null +++ b/data/game/co/conker-gettin-medieval.json @@ -0,0 +1,14 @@ +{ + "slug": "conker-gettin-medieval", + "name": "Conker: Gettin' Medieval", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72096472" + ], + "developers": [ + "Rare Ltd." + ], + "publishers": [ + "Xbox Game Studios" + ] +} diff --git a/data/game/co/conker-s-other-bad-fur-day.json b/data/game/co/conker-s-other-bad-fur-day.json new file mode 100644 index 000000000000..2eb31cf43f06 --- /dev/null +++ b/data/game/co/conker-s-other-bad-fur-day.json @@ -0,0 +1,17 @@ +{ + "slug": "conker-s-other-bad-fur-day", + "name": "Conker's Other Bad Fur Day", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q64170585" + ], + "platforms": [ + "Nintendo GameCube" + ], + "developers": [ + "Rare Ltd." + ], + "publishers": [ + "Nintendo" + ] +} diff --git a/data/game/co/construction-simulator-2-q112231322.json b/data/game/co/construction-simulator-2-q112231322.json new file mode 100644 index 000000000000..1f5ee92e8975 --- /dev/null +++ b/data/game/co/construction-simulator-2-q112231322.json @@ -0,0 +1,19 @@ +{ + "slug": "construction-simulator-2-q112231322", + "name": "Construction Simulator 2+", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112231322" + ], + "release_date": "2022-04-15", + "platforms": [ + "iPadOS", + "iOS" + ], + "developers": [ + "Astragon" + ], + "publishers": [ + "Astragon" + ] +} diff --git a/data/game/co/contagion-4-pack.json b/data/game/co/contagion-4-pack.json new file mode 100644 index 000000000000..d8e4b5d38a15 --- /dev/null +++ b/data/game/co/contagion-4-pack.json @@ -0,0 +1,11 @@ +{ + "slug": "contagion-4-pack", + "name": "Contagion 4 Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q78670106" + ], + "platforms": [ + "Microsoft Windows" + ] +} diff --git a/data/game/co/contra-anniversary-collection.json b/data/game/co/contra-anniversary-collection.json new file mode 100644 index 000000000000..f982c2f174d6 --- /dev/null +++ b/data/game/co/contra-anniversary-collection.json @@ -0,0 +1,22 @@ +{ + "slug": "contra-anniversary-collection", + "name": "Contra Anniversary Collection", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125398521" + ], + "release_date": "2019-06-11", + "platforms": [ + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "run and gun" + ], + "developers": [ + "Konami" + ], + "publishers": [ + "Konami Digital Entertainment" + ] +} diff --git a/data/game/co/contra-rebirth.json b/data/game/co/contra-rebirth.json new file mode 100644 index 000000000000..4418b67f3245 --- /dev/null +++ b/data/game/co/contra-rebirth.json @@ -0,0 +1,21 @@ +{ + "slug": "contra-rebirth", + "name": "Contra ReBirth", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2088538" + ], + "release_date": "2009-05-12", + "platforms": [ + "Wii" + ], + "genres": [ + "action game" + ], + "developers": [ + "M2" + ], + "publishers": [ + "Konami" + ] +} diff --git a/data/game/co/contraband.json b/data/game/co/contraband.json new file mode 100644 index 000000000000..0a1384b48205 --- /dev/null +++ b/data/game/co/contraband.json @@ -0,0 +1,14 @@ +{ + "slug": "contraband", + "name": "Contraband", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107215593" + ], + "platforms": [ + "Xbox Series X and Series S" + ], + "developers": [ + "Avalanche Studios Group" + ] +} diff --git a/data/game/co/contract-j-a-c-k.json b/data/game/co/contract-j-a-c-k.json new file mode 100644 index 000000000000..2a81f1f0a752 --- /dev/null +++ b/data/game/co/contract-j-a-c-k.json @@ -0,0 +1,18 @@ +{ + "slug": "contract-j-a-c-k", + "name": "Contract J.A.C.K.", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q723083" + ], + "release_date": "2003-11-11", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter" + ], + "developers": [ + "Monolith Productions" + ] +} diff --git a/data/game/co/control-awe.json b/data/game/co/control-awe.json new file mode 100644 index 000000000000..62c960a3e117 --- /dev/null +++ b/data/game/co/control-awe.json @@ -0,0 +1,20 @@ +{ + "slug": "control-awe", + "name": "Control: AWE", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q98308832" + ], + "release_date": "2020-08-27", + "platforms": [ + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "action-adventure game", + "third-person shooter" + ], + "publishers": [ + "505 Games" + ] +} diff --git a/data/game/co/control-the-foundation.json b/data/game/co/control-the-foundation.json new file mode 100644 index 000000000000..fa5225497e1c --- /dev/null +++ b/data/game/co/control-the-foundation.json @@ -0,0 +1,20 @@ +{ + "slug": "control-the-foundation", + "name": "Control: The Foundation", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q92803305" + ], + "release_date": "2020-03-26", + "platforms": [ + "Microsoft Windows", + "PlayStation 4" + ], + "genres": [ + "action-adventure game", + "third-person shooter" + ], + "publishers": [ + "505 Games" + ] +} diff --git a/data/game/co/control-ultimate-edition.json b/data/game/co/control-ultimate-edition.json new file mode 100644 index 000000000000..5219b0fbd27c --- /dev/null +++ b/data/game/co/control-ultimate-edition.json @@ -0,0 +1,27 @@ +{ + "slug": "control-ultimate-edition", + "name": "Control: Ultimate Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q114284709" + ], + "release_date": "2020-08-27", + "platforms": [ + "visionOS", + "Xbox Series X and Series S", + "iPadOS", + "macOS", + "PlayStation 5", + "PlayStation 4", + "iOS", + "Microsoft Windows" + ], + "genres": [ + "action-adventure game", + "third-person shooter", + "science fiction video game" + ], + "publishers": [ + "505 Games" + ] +} diff --git a/data/game/co/cooking-academy.json b/data/game/co/cooking-academy.json new file mode 100644 index 000000000000..656c33c9a5d8 --- /dev/null +++ b/data/game/co/cooking-academy.json @@ -0,0 +1,11 @@ +{ + "slug": "cooking-academy", + "name": "Cooking Academy", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140471349" + ], + "platforms": [ + "Microsoft Windows" + ] +} diff --git a/data/game/co/cool-shot.json b/data/game/co/cool-shot.json new file mode 100644 index 000000000000..219011eb5637 --- /dev/null +++ b/data/game/co/cool-shot.json @@ -0,0 +1,8 @@ +{ + "slug": "cool-shot", + "name": "Cool Shot", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q128014866" + ] +} diff --git a/data/game/co/coredoom.json b/data/game/co/coredoom.json new file mode 100644 index 000000000000..06279378add1 --- /dev/null +++ b/data/game/co/coredoom.json @@ -0,0 +1,8 @@ +{ + "slug": "coredoom", + "name": "coreDOOM", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124658407" + ] +} diff --git a/data/game/co/cossacks-3-days-of-brilliance.json b/data/game/co/cossacks-3-days-of-brilliance.json new file mode 100644 index 000000000000..a880d0af189a --- /dev/null +++ b/data/game/co/cossacks-3-days-of-brilliance.json @@ -0,0 +1,12 @@ +{ + "slug": "cossacks-3-days-of-brilliance", + "name": "Cossacks 3: Days of Brilliance", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q91333635" + ], + "release_date": "2016-12-13", + "platforms": [ + "Microsoft Windows" + ] +} diff --git a/data/game/co/cossacks-ii-battle-for-europe.json b/data/game/co/cossacks-ii-battle-for-europe.json new file mode 100644 index 000000000000..08e2c751ac44 --- /dev/null +++ b/data/game/co/cossacks-ii-battle-for-europe.json @@ -0,0 +1,18 @@ +{ + "slug": "cossacks-ii-battle-for-europe", + "name": "Cossacks II: Battle for Europe", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q949269" + ], + "release_date": "2006-01-01", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "real-time strategy" + ], + "developers": [ + "GSC Game World" + ] +} diff --git a/data/game/co/cotton-guardian-force-saturn-tribute.json b/data/game/co/cotton-guardian-force-saturn-tribute.json new file mode 100644 index 000000000000..1b5cfa45577b --- /dev/null +++ b/data/game/co/cotton-guardian-force-saturn-tribute.json @@ -0,0 +1,13 @@ +{ + "slug": "cotton-guardian-force-saturn-tribute", + "name": "Cotton Guardian Force Saturn Tribute", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124287645" + ], + "release_date": "2021-09-30", + "platforms": [ + "PlayStation 4", + "Microsoft Windows" + ] +} diff --git a/data/game/co/counter-strike-1-anthology.json b/data/game/co/counter-strike-1-anthology.json new file mode 100644 index 000000000000..997662ac6b61 --- /dev/null +++ b/data/game/co/counter-strike-1-anthology.json @@ -0,0 +1,16 @@ +{ + "slug": "counter-strike-1-anthology", + "name": "Counter-Strike 1 Anthology", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q71193018" + ], + "release_date": "2005-10-06", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "first-person shooter" + ] +} diff --git a/data/game/co/counter-strike-2-prime-status-upgrade.json b/data/game/co/counter-strike-2-prime-status-upgrade.json new file mode 100644 index 000000000000..b74a49f89474 --- /dev/null +++ b/data/game/co/counter-strike-2-prime-status-upgrade.json @@ -0,0 +1,11 @@ +{ + "slug": "counter-strike-2-prime-status-upgrade", + "name": "Counter-Strike 2 Prime Status Upgrade", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q78783623" + ], + "platforms": [ + "Microsoft Windows" + ] +} diff --git a/data/game/co/counter-strike-complete.json b/data/game/co/counter-strike-complete.json new file mode 100644 index 000000000000..55f9e4125fbf --- /dev/null +++ b/data/game/co/counter-strike-complete.json @@ -0,0 +1,11 @@ +{ + "slug": "counter-strike-complete", + "name": "Counter-Strike Complete", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q78783281" + ], + "platforms": [ + "Microsoft Windows" + ] +} diff --git a/data/game/co/counter-strike-condition-zero-deleted-scenes.json b/data/game/co/counter-strike-condition-zero-deleted-scenes.json new file mode 100644 index 000000000000..c6b90d0a2fec --- /dev/null +++ b/data/game/co/counter-strike-condition-zero-deleted-scenes.json @@ -0,0 +1,24 @@ +{ + "slug": "counter-strike-condition-zero-deleted-scenes", + "name": "Counter-Strike: Condition Zero Deleted Scenes", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76437585" + ], + "release_date": "2004-03-23", + "platforms": [ + "Microsoft Windows", + "macOS" + ], + "genres": [ + "first-person shooter" + ], + "developers": [ + "Gearbox Software", + "Valve Corporation", + "Ritual Entertainment" + ], + "publishers": [ + "Valve Corporation" + ] +} diff --git a/data/game/co/counter-strike-condition-zero.json b/data/game/co/counter-strike-condition-zero.json new file mode 100644 index 000000000000..f5daabf7ec79 --- /dev/null +++ b/data/game/co/counter-strike-condition-zero.json @@ -0,0 +1,11 @@ +{ + "slug": "counter-strike-condition-zero", + "name": "Counter-Strike: Condition Zero", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q78782678" + ], + "platforms": [ + "Microsoft Windows" + ] +} diff --git a/data/game/co/counter-strike-nintendo-ds.json b/data/game/co/counter-strike-nintendo-ds.json new file mode 100644 index 000000000000..bc005e1e162e --- /dev/null +++ b/data/game/co/counter-strike-nintendo-ds.json @@ -0,0 +1,21 @@ +{ + "slug": "counter-strike-nintendo-ds", + "name": "Counter Strike Nintendo DS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122988181" + ], + "release_date": "2022-07-09", + "platforms": [ + "Nintendo DS" + ], + "genres": [ + "first-person shooter" + ], + "developers": [ + "Fewnity" + ], + "publishers": [ + "Fewnity" + ] +} diff --git a/data/game/co/counter-strike-source-garry-s-mod.json b/data/game/co/counter-strike-source-garry-s-mod.json new file mode 100644 index 000000000000..fdca55d9dbad --- /dev/null +++ b/data/game/co/counter-strike-source-garry-s-mod.json @@ -0,0 +1,18 @@ +{ + "slug": "counter-strike-source-garry-s-mod", + "name": "Counter-Strike: Source + Garry's Mod", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q82498998" + ], + "release_date": "2006-11-29", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Valve Corporation" + ], + "publishers": [ + "Valve Corporation" + ] +} diff --git a/data/game/cr/cr-deluxe-sea-story.json b/data/game/cr/cr-deluxe-sea-story.json new file mode 100644 index 000000000000..6b9e86124f9f --- /dev/null +++ b/data/game/cr/cr-deluxe-sea-story.json @@ -0,0 +1,8 @@ +{ + "slug": "cr-deluxe-sea-story", + "name": "CR Deluxe Sea Story", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131118523" + ] +} diff --git a/data/game/cr/cr-drum-sea-story-black.json b/data/game/cr/cr-drum-sea-story-black.json new file mode 100644 index 000000000000..c2b1a517cd15 --- /dev/null +++ b/data/game/cr/cr-drum-sea-story-black.json @@ -0,0 +1,8 @@ +{ + "slug": "cr-drum-sea-story-black", + "name": "CR Drum Sea Story Black", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131143165" + ] +} diff --git a/data/game/cr/cr-drum-sea-story.json b/data/game/cr/cr-drum-sea-story.json new file mode 100644 index 000000000000..9a9f9005f8da --- /dev/null +++ b/data/game/cr/cr-drum-sea-story.json @@ -0,0 +1,8 @@ +{ + "slug": "cr-drum-sea-story", + "name": "CR Drum Sea Story", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131143162" + ] +} diff --git a/data/game/cr/cr-garo.json b/data/game/cr/cr-garo.json new file mode 100644 index 000000000000..3405f80301ca --- /dev/null +++ b/data/game/cr/cr-garo.json @@ -0,0 +1,9 @@ +{ + "slug": "cr-garo", + "name": "CR Garo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11194103" + ], + "release_date": "2018-11-01" +} diff --git a/data/game/cr/cr-gingira-paradise-2.json b/data/game/cr/cr-gingira-paradise-2.json new file mode 100644 index 000000000000..d555a71d49e7 --- /dev/null +++ b/data/game/cr/cr-gingira-paradise-2.json @@ -0,0 +1,8 @@ +{ + "slug": "cr-gingira-paradise-2", + "name": "CR Gingira Paradise 2", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11193990" + ] +} diff --git a/data/game/cr/cr-go-go-marine.json b/data/game/cr/cr-go-go-marine.json new file mode 100644 index 000000000000..bc064530078c --- /dev/null +++ b/data/game/cr/cr-go-go-marine.json @@ -0,0 +1,8 @@ +{ + "slug": "cr-go-go-marine", + "name": "CR GO!GO! Marine", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140278935" + ] +} diff --git a/data/game/cr/cr-gokuj-parodius.json b/data/game/cr/cr-gokuj-parodius.json new file mode 100644 index 000000000000..53da9acde7a5 --- /dev/null +++ b/data/game/cr/cr-gokuj-parodius.json @@ -0,0 +1,14 @@ +{ + "slug": "cr-gokuj-parodius", + "name": "CR Gokujō Parodius!", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6399654" + ], + "platforms": [ + "pachinko" + ], + "developers": [ + "Newgin" + ] +} diff --git a/data/game/cr/cr-great-sea-story-2.json b/data/game/cr/cr-great-sea-story-2.json new file mode 100644 index 000000000000..ee63cfc5abea --- /dev/null +++ b/data/game/cr/cr-great-sea-story-2.json @@ -0,0 +1,8 @@ +{ + "slug": "cr-great-sea-story-2", + "name": "CR Great Sea Story 2", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11194073" + ] +} diff --git a/data/game/cr/cr-great-sea-story-3.json b/data/game/cr/cr-great-sea-story-3.json new file mode 100644 index 000000000000..4c40ccc44231 --- /dev/null +++ b/data/game/cr/cr-great-sea-story-3.json @@ -0,0 +1,8 @@ +{ + "slug": "cr-great-sea-story-3", + "name": "CR Great Sea Story 3", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131121864" + ] +} diff --git a/data/game/cr/cr-great-sea-story-4.json b/data/game/cr/cr-great-sea-story-4.json new file mode 100644 index 000000000000..7622bd86287a --- /dev/null +++ b/data/game/cr/cr-great-sea-story-4.json @@ -0,0 +1,8 @@ +{ + "slug": "cr-great-sea-story-4", + "name": "CR Great Sea Story 4", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131121963" + ] +} diff --git a/data/game/cr/cr-great-sea-story-special.json b/data/game/cr/cr-great-sea-story-special.json new file mode 100644 index 000000000000..18536ee863e7 --- /dev/null +++ b/data/game/cr/cr-great-sea-story-special.json @@ -0,0 +1,8 @@ +{ + "slug": "cr-great-sea-story-special", + "name": "CR Great Sea Story Special", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11194074" + ] +} diff --git a/data/game/cr/cr-great-sea-story.json b/data/game/cr/cr-great-sea-story.json new file mode 100644 index 000000000000..bd48b24434e0 --- /dev/null +++ b/data/game/cr/cr-great-sea-story.json @@ -0,0 +1,8 @@ +{ + "slug": "cr-great-sea-story", + "name": "CR Great Sea Story", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11194071" + ] +} diff --git a/data/game/cr/cr-hyper-sea-story-in-caribbean.json b/data/game/cr/cr-hyper-sea-story-in-caribbean.json new file mode 100644 index 000000000000..a05fe1f3980d --- /dev/null +++ b/data/game/cr/cr-hyper-sea-story-in-caribbean.json @@ -0,0 +1,8 @@ +{ + "slug": "cr-hyper-sea-story-in-caribbean", + "name": "CR Hyper Sea Story in Caribbean", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11194004" + ] +} diff --git a/data/game/cr/cr-new-sea-story-with-agnes-lum.json b/data/game/cr/cr-new-sea-story-with-agnes-lum.json new file mode 100644 index 000000000000..856196e1c504 --- /dev/null +++ b/data/game/cr/cr-new-sea-story-with-agnes-lum.json @@ -0,0 +1,8 @@ +{ + "slug": "cr-new-sea-story-with-agnes-lum", + "name": "CR New Sea Story With Agnes Lum", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11194097" + ] +} diff --git a/data/game/cr/cr-new-sea-story.json b/data/game/cr/cr-new-sea-story.json new file mode 100644 index 000000000000..0536201d7a50 --- /dev/null +++ b/data/game/cr/cr-new-sea-story.json @@ -0,0 +1,8 @@ +{ + "slug": "cr-new-sea-story", + "name": "CR New Sea Story", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11194096" + ] +} diff --git a/data/game/cr/cr-pachinko-akb48.json b/data/game/cr/cr-pachinko-akb48.json new file mode 100644 index 000000000000..7934c8af90da --- /dev/null +++ b/data/game/cr/cr-pachinko-akb48.json @@ -0,0 +1,8 @@ +{ + "slug": "cr-pachinko-akb48", + "name": "CR Pachinko AKB48", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10846727" + ] +} diff --git a/data/game/cr/cr-parodius-da.json b/data/game/cr/cr-parodius-da.json new file mode 100644 index 000000000000..1dea2160b6af --- /dev/null +++ b/data/game/cr/cr-parodius-da.json @@ -0,0 +1,14 @@ +{ + "slug": "cr-parodius-da", + "name": "CR Parodius Da!", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5737484" + ], + "platforms": [ + "pachinko" + ], + "developers": [ + "Newgin" + ] +} diff --git a/data/game/cr/cr-premium-sea-story.json b/data/game/cr/cr-premium-sea-story.json new file mode 100644 index 000000000000..00ae790636af --- /dev/null +++ b/data/game/cr/cr-premium-sea-story.json @@ -0,0 +1,8 @@ +{ + "slug": "cr-premium-sea-story", + "name": "CR Premium Sea Story", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11194030" + ] +} diff --git a/data/game/cr/cr-sea-story-3r.json b/data/game/cr/cr-sea-story-3r.json new file mode 100644 index 000000000000..99d60b8d3308 --- /dev/null +++ b/data/game/cr/cr-sea-story-3r.json @@ -0,0 +1,8 @@ +{ + "slug": "cr-sea-story-3r", + "name": "CR Sea Story 3R", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q24876870" + ] +} diff --git a/data/game/cr/cr-sea-story-aqua.json b/data/game/cr/cr-sea-story-aqua.json new file mode 100644 index 000000000000..368cc3ac5bf7 --- /dev/null +++ b/data/game/cr/cr-sea-story-aqua.json @@ -0,0 +1,8 @@ +{ + "slug": "cr-sea-story-aqua", + "name": "CR Sea Story Aqua", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131118767" + ] +} diff --git a/data/game/cr/cr-super-sea-story-in-japan.json b/data/game/cr/cr-super-sea-story-in-japan.json new file mode 100644 index 000000000000..20f70d11e13a --- /dev/null +++ b/data/game/cr/cr-super-sea-story-in-japan.json @@ -0,0 +1,8 @@ +{ + "slug": "cr-super-sea-story-in-japan", + "name": "CR Super Sea Story in Japan", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131118661" + ] +} diff --git a/data/game/cr/cr-super-sea-story-in-okinawa-2.json b/data/game/cr/cr-super-sea-story-in-okinawa-2.json new file mode 100644 index 000000000000..bda3e0b55f24 --- /dev/null +++ b/data/game/cr/cr-super-sea-story-in-okinawa-2.json @@ -0,0 +1,8 @@ +{ + "slug": "cr-super-sea-story-in-okinawa-2", + "name": "CR Super Sea Story in Okinawa 2", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134393926" + ] +} diff --git a/data/game/cr/cr-super-sea-story-in-okinawa-3.json b/data/game/cr/cr-super-sea-story-in-okinawa-3.json new file mode 100644 index 000000000000..35d4af97fe1f --- /dev/null +++ b/data/game/cr/cr-super-sea-story-in-okinawa-3.json @@ -0,0 +1,9 @@ +{ + "slug": "cr-super-sea-story-in-okinawa-3", + "name": "CR Super Sea Story in Okinawa 3", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134393934" + ], + "release_date": "2013-07-08" +} diff --git a/data/game/cr/cr-super-sea-story-in-okinawa-4.json b/data/game/cr/cr-super-sea-story-in-okinawa-4.json new file mode 100644 index 000000000000..cc92741b9d73 --- /dev/null +++ b/data/game/cr/cr-super-sea-story-in-okinawa-4.json @@ -0,0 +1,8 @@ +{ + "slug": "cr-super-sea-story-in-okinawa-4", + "name": "CR Super Sea Story in Okinawa 4", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134393954" + ] +} diff --git a/data/game/cr/cr-super-sea-story-in-okinawa.json b/data/game/cr/cr-super-sea-story-in-okinawa.json new file mode 100644 index 000000000000..36874e907809 --- /dev/null +++ b/data/game/cr/cr-super-sea-story-in-okinawa.json @@ -0,0 +1,8 @@ +{ + "slug": "cr-super-sea-story-in-okinawa", + "name": "CR Super Sea Story in Okinawa", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11193998" + ] +} diff --git a/data/game/cr/cr-super-sea-story.json b/data/game/cr/cr-super-sea-story.json new file mode 100644 index 000000000000..e51a22a4741d --- /dev/null +++ b/data/game/cr/cr-super-sea-story.json @@ -0,0 +1,8 @@ +{ + "slug": "cr-super-sea-story", + "name": "CR Super Sea Story", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17218450" + ] +} diff --git a/data/game/cr/cra-sea-story-wing.json b/data/game/cr/cra-sea-story-wing.json new file mode 100644 index 000000000000..897b46263e0d --- /dev/null +++ b/data/game/cr/cra-sea-story-wing.json @@ -0,0 +1,8 @@ +{ + "slug": "cra-sea-story-wing", + "name": "CRA Sea Story-Wing", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11193821" + ] +} diff --git a/data/game/cr/cracking-the-cryptic-domino-sudoku.json b/data/game/cr/cracking-the-cryptic-domino-sudoku.json new file mode 100644 index 000000000000..890602cbfce1 --- /dev/null +++ b/data/game/cr/cracking-the-cryptic-domino-sudoku.json @@ -0,0 +1,19 @@ +{ + "slug": "cracking-the-cryptic-domino-sudoku", + "name": "Cracking the Cryptic - Domino Sudoku", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116038687" + ], + "release_date": "2022-08-01", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Studio Goya" + ], + "publishers": [ + "Studio Goya" + ] +} diff --git a/data/game/cr/cracking-the-cryptic-gas-volume-1.json b/data/game/cr/cracking-the-cryptic-gas-volume-1.json new file mode 100644 index 000000000000..0ab11ac2d362 --- /dev/null +++ b/data/game/cr/cracking-the-cryptic-gas-volume-1.json @@ -0,0 +1,19 @@ +{ + "slug": "cracking-the-cryptic-gas-volume-1", + "name": "Cracking the Cryptic - GAS Volume #1", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116038691" + ], + "release_date": "2022-11-02", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Studio Goya" + ], + "publishers": [ + "Studio Goya" + ] +} diff --git a/data/game/cr/crash-bandicoot-n-sane-trilogy.json b/data/game/cr/crash-bandicoot-n-sane-trilogy.json new file mode 100644 index 000000000000..3439ce00775e --- /dev/null +++ b/data/game/cr/crash-bandicoot-n-sane-trilogy.json @@ -0,0 +1,24 @@ +{ + "slug": "crash-bandicoot-n-sane-trilogy", + "name": "Crash Bandicoot N. Sane Trilogy", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q26698531" + ], + "release_date": "2017-06-30", + "platforms": [ + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "platformer" + ], + "developers": [ + "Toys for Bob" + ], + "publishers": [ + "Sony Interactive Entertainment", + "Sega", + "Activision" + ] +} diff --git a/data/game/cr/crashlands-q110453695.json b/data/game/cr/crashlands-q110453695.json new file mode 100644 index 000000000000..d2fdc184bc64 --- /dev/null +++ b/data/game/cr/crashlands-q110453695.json @@ -0,0 +1,13 @@ +{ + "slug": "crashlands-q110453695", + "name": "Crashlands+", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110453695" + ], + "release_date": "2022-01-14", + "platforms": [ + "iPadOS", + "iOS" + ] +} diff --git a/data/game/cr/crayola-create-and-play-q108740529.json b/data/game/cr/crayola-create-and-play-q108740529.json new file mode 100644 index 000000000000..c81d829a46f5 --- /dev/null +++ b/data/game/cr/crayola-create-and-play-q108740529.json @@ -0,0 +1,15 @@ +{ + "slug": "crayola-create-and-play-q108740529", + "name": "Crayola Create and Play+", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108740529" + ], + "platforms": [ + "iPadOS", + "iOS" + ], + "developers": [ + "Red Games Co." + ] +} diff --git a/data/game/cr/crazy-chicken-atlantis.json b/data/game/cr/crazy-chicken-atlantis.json new file mode 100644 index 000000000000..d3150ad1b732 --- /dev/null +++ b/data/game/cr/crazy-chicken-atlantis.json @@ -0,0 +1,8 @@ +{ + "slug": "crazy-chicken-atlantis", + "name": "Crazy Chicken: Atlantis", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140472245" + ] +} diff --git a/data/game/cr/crazy-traffic-jam-3d.json b/data/game/cr/crazy-traffic-jam-3d.json new file mode 100644 index 000000000000..ea0cb1a22df4 --- /dev/null +++ b/data/game/cr/crazy-traffic-jam-3d.json @@ -0,0 +1,21 @@ +{ + "slug": "crazy-traffic-jam-3d", + "name": "Crazy Traffic Jam 3D", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123915421" + ], + "release_date": "2017-08-06", + "platforms": [ + "PlayStation Vita" + ], + "genres": [ + "arcade" + ], + "developers": [ + "VitaHEX games" + ], + "publishers": [ + "VitaHEX games" + ] +} diff --git a/data/game/cr/creatures-deluxe.json b/data/game/cr/creatures-deluxe.json new file mode 100644 index 000000000000..42815d048cd9 --- /dev/null +++ b/data/game/cr/creatures-deluxe.json @@ -0,0 +1,8 @@ +{ + "slug": "creatures-deluxe", + "name": "Creatures Deluxe", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124098282" + ] +} diff --git a/data/game/cr/crimecraft-gangwars.json b/data/game/cr/crimecraft-gangwars.json new file mode 100644 index 000000000000..18c5e0e15ab6 --- /dev/null +++ b/data/game/cr/crimecraft-gangwars.json @@ -0,0 +1,8 @@ +{ + "slug": "crimecraft-gangwars", + "name": "CrimeCraft: GangWars", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112539530" + ] +} diff --git a/data/game/cr/crispy-doom.json b/data/game/cr/crispy-doom.json new file mode 100644 index 000000000000..027f096a5f16 --- /dev/null +++ b/data/game/cr/crispy-doom.json @@ -0,0 +1,8 @@ +{ + "slug": "crispy-doom", + "name": "Crispy Doom", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q67195588" + ] +} diff --git a/data/game/cr/crossfire-q57974038.json b/data/game/cr/crossfire-q57974038.json new file mode 100644 index 000000000000..b0904a63e560 --- /dev/null +++ b/data/game/cr/crossfire-q57974038.json @@ -0,0 +1,9 @@ +{ + "slug": "crossfire-q57974038", + "name": "Crossfire", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q57974038" + ], + "release_date": "2011-08-07" +} diff --git a/data/game/cr/crossword-explorer-q124079795.json b/data/game/cr/crossword-explorer-q124079795.json new file mode 100644 index 000000000000..ecc8fe5e7c8d --- /dev/null +++ b/data/game/cr/crossword-explorer-q124079795.json @@ -0,0 +1,14 @@ +{ + "slug": "crossword-explorer-q124079795", + "name": "Crossword Explorer+", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124079795" + ], + "platforms": [ + "iOS" + ], + "genres": [ + "word video game" + ] +} diff --git a/data/game/cr/crossword-jam-q122945661.json b/data/game/cr/crossword-jam-q122945661.json new file mode 100644 index 000000000000..b7b80d135334 --- /dev/null +++ b/data/game/cr/crossword-jam-q122945661.json @@ -0,0 +1,13 @@ +{ + "slug": "crossword-jam-q122945661", + "name": "Crossword Jam+", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122945661" + ], + "release_date": "2023-10-20", + "platforms": [ + "iPadOS", + "iOS" + ] +} diff --git a/data/game/cr/crossy-road-clone.json b/data/game/cr/crossy-road-clone.json new file mode 100644 index 000000000000..ac6b7eeb4477 --- /dev/null +++ b/data/game/cr/crossy-road-clone.json @@ -0,0 +1,18 @@ +{ + "slug": "crossy-road-clone", + "name": "Crossy Road Clone", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127225213" + ], + "release_date": "2024-07-04", + "platforms": [ + "PlayStation Vita" + ], + "developers": [ + "MRKane" + ], + "publishers": [ + "MRKane" + ] +} diff --git a/data/game/cr/crossy-road-q108368010.json b/data/game/cr/crossy-road-q108368010.json new file mode 100644 index 000000000000..34a916b478eb --- /dev/null +++ b/data/game/cr/crossy-road-q108368010.json @@ -0,0 +1,14 @@ +{ + "slug": "crossy-road-q108368010", + "name": "Crossy Road+", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108368010" + ], + "release_date": "2021-10-08", + "platforms": [ + "tvOS", + "iPadOS", + "iOS" + ] +} diff --git a/data/game/cr/croteam-vr-bundle.json b/data/game/cr/croteam-vr-bundle.json new file mode 100644 index 000000000000..40ffb04cacc5 --- /dev/null +++ b/data/game/cr/croteam-vr-bundle.json @@ -0,0 +1,25 @@ +{ + "slug": "croteam-vr-bundle", + "name": "CROTEAM VR Bundle", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121307070" + ], + "release_date": "2017-11-09", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "action-adventure game" + ], + "developers": [ + "Croteam VR", + "Croteam" + ], + "publishers": [ + "Croteam", + "Devolver Digital", + "Croteam Publishing" + ] +} diff --git a/data/game/cr/crouching-tiger-hidden-dragon-2003.json b/data/game/cr/crouching-tiger-hidden-dragon-2003.json new file mode 100644 index 000000000000..e89d6c228219 --- /dev/null +++ b/data/game/cr/crouching-tiger-hidden-dragon-2003.json @@ -0,0 +1,15 @@ +{ + "slug": "crouching-tiger-hidden-dragon-2003", + "name": "Crouching Tiger, Hidden Dragon 2003", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3005428" + ], + "release_date": "2003-01-01", + "platforms": [ + "Neo Geo" + ], + "genres": [ + "beat 'em up" + ] +} diff --git a/data/game/cr/crucible-q93360353.json b/data/game/cr/crucible-q93360353.json new file mode 100644 index 000000000000..d3b689ef89ed --- /dev/null +++ b/data/game/cr/crucible-q93360353.json @@ -0,0 +1,18 @@ +{ + "slug": "crucible-q93360353", + "name": "Crucible", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q93360353" + ], + "release_date": "2020-05-20", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "third-person shooter" + ], + "developers": [ + "Relentless Studios" + ] +} diff --git a/data/game/cr/crusader-kings-ii-holy-fury.json b/data/game/cr/crusader-kings-ii-holy-fury.json new file mode 100644 index 000000000000..f3157ac66683 --- /dev/null +++ b/data/game/cr/crusader-kings-ii-holy-fury.json @@ -0,0 +1,22 @@ +{ + "slug": "crusader-kings-ii-holy-fury", + "name": "Crusader Kings II: Holy Fury", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q102270946" + ], + "release_date": "2018-11-13", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "grand strategy wargame" + ], + "developers": [ + "Development Studio" + ], + "publishers": [ + "Paradox Interactive" + ] +} diff --git a/data/game/cr/crusader-kings-ii-sons-of-abraham.json b/data/game/cr/crusader-kings-ii-sons-of-abraham.json new file mode 100644 index 000000000000..f8d38fbe8e42 --- /dev/null +++ b/data/game/cr/crusader-kings-ii-sons-of-abraham.json @@ -0,0 +1,21 @@ +{ + "slug": "crusader-kings-ii-sons-of-abraham", + "name": "Crusader Kings II: Sons of Abraham", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q19427235" + ], + "release_date": "2013-11-18", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "grand strategy wargame" + ], + "developers": [ + "Development Studio" + ], + "publishers": [ + "Paradox Interactive" + ] +} diff --git a/data/game/cr/crusader-kings-ii-sunset-invasion.json b/data/game/cr/crusader-kings-ii-sunset-invasion.json new file mode 100644 index 000000000000..72187b0df8bb --- /dev/null +++ b/data/game/cr/crusader-kings-ii-sunset-invasion.json @@ -0,0 +1,22 @@ +{ + "slug": "crusader-kings-ii-sunset-invasion", + "name": "Crusader Kings II: Sunset Invasion", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q103030214" + ], + "release_date": "2012-11-15", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "grand strategy wargame" + ], + "developers": [ + "Development Studio" + ], + "publishers": [ + "Paradox Interactive" + ] +} diff --git a/data/game/cr/crusader-kings-ii-sword-of-islam.json b/data/game/cr/crusader-kings-ii-sword-of-islam.json new file mode 100644 index 000000000000..0096b4b7f09b --- /dev/null +++ b/data/game/cr/crusader-kings-ii-sword-of-islam.json @@ -0,0 +1,21 @@ +{ + "slug": "crusader-kings-ii-sword-of-islam", + "name": "Crusader Kings II: Sword of Islam", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q14930415" + ], + "release_date": "2012-06-26", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "grand strategy wargame" + ], + "developers": [ + "Development Studio" + ], + "publishers": [ + "Paradox Interactive" + ] +} diff --git a/data/game/cr/crusader-kings-iii-fate-of-iberia.json b/data/game/cr/crusader-kings-iii-fate-of-iberia.json new file mode 100644 index 000000000000..1bfc475b4a54 --- /dev/null +++ b/data/game/cr/crusader-kings-iii-fate-of-iberia.json @@ -0,0 +1,13 @@ +{ + "slug": "crusader-kings-iii-fate-of-iberia", + "name": "Crusader Kings III: Fate of Iberia", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112619861" + ], + "release_date": "2022-05-31", + "platforms": [ + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/game/cr/crusader-kings-iii-friends-foes.json b/data/game/cr/crusader-kings-iii-friends-foes.json new file mode 100644 index 000000000000..af07a694b618 --- /dev/null +++ b/data/game/cr/crusader-kings-iii-friends-foes.json @@ -0,0 +1,19 @@ +{ + "slug": "crusader-kings-iii-friends-foes", + "name": "Crusader Kings III: Friends & Foes", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113673221" + ], + "release_date": "2022-09-08", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Development Studio" + ], + "publishers": [ + "Paradox Interactive" + ] +} diff --git a/data/game/cr/crusader-kings-iii-northern-lords.json b/data/game/cr/crusader-kings-iii-northern-lords.json new file mode 100644 index 000000000000..12fd75d2152f --- /dev/null +++ b/data/game/cr/crusader-kings-iii-northern-lords.json @@ -0,0 +1,19 @@ +{ + "slug": "crusader-kings-iii-northern-lords", + "name": "Crusader Kings III: Northern Lords", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110866484" + ], + "release_date": "2021-03-16", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Development Studio" + ], + "publishers": [ + "Paradox Interactive" + ] +} diff --git a/data/game/cr/crusader-kings-iii-royal-court.json b/data/game/cr/crusader-kings-iii-royal-court.json new file mode 100644 index 000000000000..35a012d54b6a --- /dev/null +++ b/data/game/cr/crusader-kings-iii-royal-court.json @@ -0,0 +1,19 @@ +{ + "slug": "crusader-kings-iii-royal-court", + "name": "Crusader Kings III: Royal Court", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110866510" + ], + "release_date": "2022-02-08", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Development Studio" + ], + "publishers": [ + "Paradox Interactive" + ] +} diff --git a/data/game/cr/crusader-kings-iii-royal-edition.json b/data/game/cr/crusader-kings-iii-royal-edition.json new file mode 100644 index 000000000000..c17f62c6545a --- /dev/null +++ b/data/game/cr/crusader-kings-iii-royal-edition.json @@ -0,0 +1,19 @@ +{ + "slug": "crusader-kings-iii-royal-edition", + "name": "Crusader Kings III: Royal Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111754772" + ], + "release_date": "2022-03-29", + "platforms": [ + "Xbox Series X and Series S" + ], + "developers": [ + "Lab42", + "Development Studio" + ], + "publishers": [ + "Paradox Interactive" + ] +} diff --git a/data/game/cr/cry-on.json b/data/game/cr/cry-on.json new file mode 100644 index 000000000000..fb761345cf49 --- /dev/null +++ b/data/game/cr/cry-on.json @@ -0,0 +1,17 @@ +{ + "slug": "cry-on", + "name": "Cry On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3005700" + ], + "genres": [ + "role-playing video game" + ], + "developers": [ + "Mistwalker" + ], + "publishers": [ + "Xbox Game Studios" + ] +} diff --git a/data/game/cr/cryptic-passage-for-blood.json b/data/game/cr/cryptic-passage-for-blood.json new file mode 100644 index 000000000000..5faa1dde0b3a --- /dev/null +++ b/data/game/cr/cryptic-passage-for-blood.json @@ -0,0 +1,9 @@ +{ + "slug": "cryptic-passage-for-blood", + "name": "Cryptic Passage for Blood", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110160738" + ], + "release_date": "1997-06-30" +} diff --git a/data/game/cr/cryptokitties.json b/data/game/cr/cryptokitties.json new file mode 100644 index 000000000000..a9020b0f5d92 --- /dev/null +++ b/data/game/cr/cryptokitties.json @@ -0,0 +1,18 @@ +{ + "slug": "cryptokitties", + "name": "Cryptokitties", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q47111665" + ], + "release_date": "2017-01-01", + "platforms": [ + "iOS" + ], + "genres": [ + "business simulation game" + ], + "developers": [ + "Dapper Labs" + ] +} diff --git a/data/game/cr/crysis-3-the-lost-island.json b/data/game/cr/crysis-3-the-lost-island.json new file mode 100644 index 000000000000..12fc03c8c17d --- /dev/null +++ b/data/game/cr/crysis-3-the-lost-island.json @@ -0,0 +1,16 @@ +{ + "slug": "crysis-3-the-lost-island", + "name": "Crysis 3: The Lost Island", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109653746" + ], + "release_date": "2013-06-01", + "platforms": [ + "PlayStation 3", + "Microsoft Windows" + ], + "genres": [ + "first-person shooter" + ] +} diff --git a/data/game/cr/crysis-remastered-trilogy.json b/data/game/cr/crysis-remastered-trilogy.json new file mode 100644 index 000000000000..322dba2b4a24 --- /dev/null +++ b/data/game/cr/crysis-remastered-trilogy.json @@ -0,0 +1,20 @@ +{ + "slug": "crysis-remastered-trilogy", + "name": "Crysis Remastered Trilogy", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107062535" + ], + "release_date": "2021-10-15", + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "first-person shooter" + ], + "publishers": [ + "Saber Interactive" + ] +} diff --git a/data/game/cr/crysis-warhead.json b/data/game/cr/crysis-warhead.json new file mode 100644 index 000000000000..054ef294f214 --- /dev/null +++ b/data/game/cr/crysis-warhead.json @@ -0,0 +1,19 @@ +{ + "slug": "crysis-warhead", + "name": "Crysis Warhead", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1045393" + ], + "release_date": "2008-09-16", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "science fiction video game" + ], + "publishers": [ + "Electronic Arts" + ] +} diff --git a/data/game/cr/crystal-theme.json b/data/game/cr/crystal-theme.json new file mode 100644 index 000000000000..884207a40633 --- /dev/null +++ b/data/game/cr/crystal-theme.json @@ -0,0 +1,18 @@ +{ + "slug": "crystal-theme", + "name": "Crystal Theme", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q61476393" + ], + "release_date": "2014-10-02", + "platforms": [ + "PlayStation Vita" + ], + "developers": [ + "Sony Interactive Entertainment" + ], + "publishers": [ + "Sony Interactive Entertainment" + ] +} diff --git a/data/game/cs/csdoom.json b/data/game/cs/csdoom.json new file mode 100644 index 000000000000..eb2e3df47b55 --- /dev/null +++ b/data/game/cs/csdoom.json @@ -0,0 +1,8 @@ +{ + "slug": "csdoom", + "name": "csDoom", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q67221168" + ] +} diff --git a/data/game/cu/cube-escape-collection.json b/data/game/cu/cube-escape-collection.json new file mode 100644 index 000000000000..fb15530960cd --- /dev/null +++ b/data/game/cu/cube-escape-collection.json @@ -0,0 +1,16 @@ +{ + "slug": "cube-escape-collection", + "name": "Cube Escape Collection", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130754277" + ], + "release_date": "2020-10-14", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Rusty Lake" + ] +} diff --git a/data/game/cu/cuckold-simulator-coomer-s-delight.json b/data/game/cu/cuckold-simulator-coomer-s-delight.json new file mode 100644 index 000000000000..ca2697afb943 --- /dev/null +++ b/data/game/cu/cuckold-simulator-coomer-s-delight.json @@ -0,0 +1,17 @@ +{ + "slug": "cuckold-simulator-coomer-s-delight", + "name": "Cuckold Simulator: Coomer's Delight", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120174190" + ], + "release_date": "2021-05-04", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "casual game", + "erotic video game", + "satirical video game" + ] +} diff --git a/data/game/cu/cuckold-simulator-covid-19-mask.json b/data/game/cu/cuckold-simulator-covid-19-mask.json new file mode 100644 index 000000000000..aa6545ea9fec --- /dev/null +++ b/data/game/cu/cuckold-simulator-covid-19-mask.json @@ -0,0 +1,16 @@ +{ + "slug": "cuckold-simulator-covid-19-mask", + "name": "Cuckold Simulator: Covid-19 Mask", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120174176" + ], + "release_date": "2021-05-04", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "casual game", + "satirical video game" + ] +} diff --git a/data/game/cu/cuckold-simulator-ukraine-supporter-pack.json b/data/game/cu/cuckold-simulator-ukraine-supporter-pack.json new file mode 100644 index 000000000000..4701be16d878 --- /dev/null +++ b/data/game/cu/cuckold-simulator-ukraine-supporter-pack.json @@ -0,0 +1,16 @@ +{ + "slug": "cuckold-simulator-ukraine-supporter-pack", + "name": "Cuckold Simulator: Ukraine Supporter Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120174166" + ], + "release_date": "2023-01-12", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "casual game", + "satirical video game" + ] +} diff --git a/data/game/cu/culpa-innata-ii-chaos-rising.json b/data/game/cu/culpa-innata-ii-chaos-rising.json new file mode 100644 index 000000000000..fe14eaa452d6 --- /dev/null +++ b/data/game/cu/culpa-innata-ii-chaos-rising.json @@ -0,0 +1,14 @@ +{ + "slug": "culpa-innata-ii-chaos-rising", + "name": "Culpa Innata II: Chaos Rising", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4036760" + ], + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "adventure video game" + ] +} diff --git a/data/game/cu/cult-of-the-lamb-cultist-edition.json b/data/game/cu/cult-of-the-lamb-cultist-edition.json new file mode 100644 index 000000000000..e0eeed79c1c4 --- /dev/null +++ b/data/game/cu/cult-of-the-lamb-cultist-edition.json @@ -0,0 +1,18 @@ +{ + "slug": "cult-of-the-lamb-cultist-edition", + "name": "Cult of the Lamb: Cultist Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115525672" + ], + "release_date": "2022-08-11", + "platforms": [ + "Xbox Series X and Series S" + ], + "developers": [ + "Massive Monster" + ], + "publishers": [ + "Devolver Digital" + ] +} diff --git a/data/game/cu/cultist-simulator-anthology-edition.json b/data/game/cu/cultist-simulator-anthology-edition.json new file mode 100644 index 000000000000..489b59994323 --- /dev/null +++ b/data/game/cu/cultist-simulator-anthology-edition.json @@ -0,0 +1,23 @@ +{ + "slug": "cultist-simulator-anthology-edition", + "name": "Cultist Simulator Anthology Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125506050" + ], + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "simulation video game", + "card video game", + "cosmic horror video game" + ], + "developers": [ + "Weather Factory" + ], + "publishers": [ + "Weather Factory" + ] +} diff --git a/data/game/cu/cultist-simulator-initiate-edition.json b/data/game/cu/cultist-simulator-initiate-edition.json new file mode 100644 index 000000000000..922b91c46a2b --- /dev/null +++ b/data/game/cu/cultist-simulator-initiate-edition.json @@ -0,0 +1,20 @@ +{ + "slug": "cultist-simulator-initiate-edition", + "name": "Cultist Simulator: Initiate Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125506354" + ], + "release_date": "2021-02-02", + "genres": [ + "simulation video game", + "card video game", + "cosmic horror video game" + ], + "developers": [ + "Weather Factory" + ], + "publishers": [ + "Playdigious" + ] +} diff --git a/data/game/cu/cultist-simulator-the-dancer.json b/data/game/cu/cultist-simulator-the-dancer.json new file mode 100644 index 000000000000..0f90557cda17 --- /dev/null +++ b/data/game/cu/cultist-simulator-the-dancer.json @@ -0,0 +1,24 @@ +{ + "slug": "cultist-simulator-the-dancer", + "name": "Cultist Simulator: The Dancer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q114872386" + ], + "release_date": "2018-10-16", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "simulation video game", + "cosmic horror video game", + "card video game" + ], + "developers": [ + "Weather Factory" + ], + "publishers": [ + "Weather Factory" + ] +} diff --git a/data/game/cu/cultist-simulator-the-exile.json b/data/game/cu/cultist-simulator-the-exile.json new file mode 100644 index 000000000000..e438fbb9ab8d --- /dev/null +++ b/data/game/cu/cultist-simulator-the-exile.json @@ -0,0 +1,24 @@ +{ + "slug": "cultist-simulator-the-exile", + "name": "Cultist Simulator: The Exile", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q114872401" + ], + "release_date": "2020-05-27", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "simulation video game", + "cosmic horror video game", + "card video game" + ], + "developers": [ + "Weather Factory" + ], + "publishers": [ + "Weather Factory" + ] +} diff --git a/data/game/cu/cultist-simulator-the-ghoul.json b/data/game/cu/cultist-simulator-the-ghoul.json new file mode 100644 index 000000000000..8fb63700535b --- /dev/null +++ b/data/game/cu/cultist-simulator-the-ghoul.json @@ -0,0 +1,24 @@ +{ + "slug": "cultist-simulator-the-ghoul", + "name": "Cultist Simulator: The Ghoul", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q114872396" + ], + "release_date": "2019-05-30", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "simulation video game", + "cosmic horror video game", + "card video game" + ], + "developers": [ + "Weather Factory" + ], + "publishers": [ + "Weather Factory" + ] +} diff --git a/data/game/cu/cultist-simulator-the-priest.json b/data/game/cu/cultist-simulator-the-priest.json new file mode 100644 index 000000000000..ec2af7aa9ed5 --- /dev/null +++ b/data/game/cu/cultist-simulator-the-priest.json @@ -0,0 +1,24 @@ +{ + "slug": "cultist-simulator-the-priest", + "name": "Cultist Simulator: The Priest", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q114872391" + ], + "release_date": "2019-05-30", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "simulation video game", + "cosmic horror video game", + "card video game" + ], + "developers": [ + "Weather Factory" + ], + "publishers": [ + "Weather Factory" + ] +} diff --git a/data/game/cu/cultures-die-rache-des-regengottes.json b/data/game/cu/cultures-die-rache-des-regengottes.json new file mode 100644 index 000000000000..17f5d4f17911 --- /dev/null +++ b/data/game/cu/cultures-die-rache-des-regengottes.json @@ -0,0 +1,8 @@ +{ + "slug": "cultures-die-rache-des-regengottes", + "name": "Cultures: Die Rache des Regengottes", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123342229" + ] +} diff --git a/data/game/cu/cuphead-the-delicious-last-course.json b/data/game/cu/cuphead-the-delicious-last-course.json new file mode 100644 index 000000000000..d2b7134a45e9 --- /dev/null +++ b/data/game/cu/cuphead-the-delicious-last-course.json @@ -0,0 +1,23 @@ +{ + "slug": "cuphead-the-delicious-last-course", + "name": "Cuphead: The Delicious Last Course", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110153068" + ], + "release_date": "2022-06-30", + "platforms": [ + "PlayStation 4", + "macOS", + "Microsoft Windows" + ], + "genres": [ + "run and gun" + ], + "developers": [ + "Studio MDHR" + ], + "publishers": [ + "Studio MDHR" + ] +} diff --git a/data/game/cu/customer-cravings-returns.json b/data/game/cu/customer-cravings-returns.json new file mode 100644 index 000000000000..8be6c92aa9bc --- /dev/null +++ b/data/game/cu/customer-cravings-returns.json @@ -0,0 +1,8 @@ +{ + "slug": "customer-cravings-returns", + "name": "Customer Cravings Returns", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q128014871" + ] +} diff --git a/data/game/cu/customer-cravings.json b/data/game/cu/customer-cravings.json new file mode 100644 index 000000000000..aa2df75216cf --- /dev/null +++ b/data/game/cu/customer-cravings.json @@ -0,0 +1,8 @@ +{ + "slug": "customer-cravings", + "name": "Customer Cravings", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q128014870" + ] +} diff --git a/data/game/cu/customization-pack.json b/data/game/cu/customization-pack.json new file mode 100644 index 000000000000..721d0f0a73c7 --- /dev/null +++ b/data/game/cu/customization-pack.json @@ -0,0 +1,12 @@ +{ + "slug": "customization-pack", + "name": "Customization Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60607940" + ], + "release_date": "2013-06-18", + "platforms": [ + "Microsoft Windows" + ] +} diff --git a/data/game/cu/cutedressup.json b/data/game/cu/cutedressup.json new file mode 100644 index 000000000000..bc778c73bc6d --- /dev/null +++ b/data/game/cu/cutedressup.json @@ -0,0 +1,9 @@ +{ + "slug": "cutedressup", + "name": "Cutedressup", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115706740" + ], + "release_date": "2018-01-01" +} diff --git a/data/game/cy/cyber-blades-demo.json b/data/game/cy/cyber-blades-demo.json new file mode 100644 index 000000000000..9c8e1c61af84 --- /dev/null +++ b/data/game/cy/cyber-blades-demo.json @@ -0,0 +1,12 @@ +{ + "slug": "cyber-blades-demo", + "name": "Cyber Blades - Demo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123404257" + ], + "release_date": "2022-06-29", + "platforms": [ + "Microsoft Windows" + ] +} diff --git a/data/game/cy/cyberpunk-2077-ultimate-edition.json b/data/game/cy/cyberpunk-2077-ultimate-edition.json new file mode 100644 index 000000000000..11b8eb777358 --- /dev/null +++ b/data/game/cy/cyberpunk-2077-ultimate-edition.json @@ -0,0 +1,24 @@ +{ + "slug": "cyberpunk-2077-ultimate-edition", + "name": "Cyberpunk 2077: Ultimate Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123508699" + ], + "release_date": "2023-12-05", + "platforms": [ + "PlayStation 5", + "macOS", + "Xbox Series X and Series S", + "Microsoft Windows" + ], + "genres": [ + "action role-playing game" + ], + "developers": [ + "CD Projekt RED" + ], + "publishers": [ + "CD Projekt" + ] +} diff --git a/data/game/d-/d-i-p-r-i-p-warm-up.json b/data/game/d-/d-i-p-r-i-p-warm-up.json new file mode 100644 index 000000000000..e798942a343b --- /dev/null +++ b/data/game/d-/d-i-p-r-i-p-warm-up.json @@ -0,0 +1,15 @@ +{ + "slug": "d-i-p-r-i-p-warm-up", + "name": "D.I.P.R.I.P. Warm Up", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11692505" + ], + "release_date": "2008-03-18", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "vehicular combat game" + ] +} diff --git a/data/game/d3/d3wasm.json b/data/game/d3/d3wasm.json new file mode 100644 index 000000000000..7e7f55bebba6 --- /dev/null +++ b/data/game/d3/d3wasm.json @@ -0,0 +1,11 @@ +{ + "slug": "d3wasm", + "name": "d3wasm", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124470484" + ], + "platforms": [ + "WebAssembly" + ] +} diff --git a/data/game/da/dactyl-joust.json b/data/game/da/dactyl-joust.json new file mode 100644 index 000000000000..afea425ae529 --- /dev/null +++ b/data/game/da/dactyl-joust.json @@ -0,0 +1,14 @@ +{ + "slug": "dactyl-joust", + "name": "Dactyl Joust", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q65040606" + ], + "platforms": [ + "Atari Jaguar" + ], + "genres": [ + "action game" + ] +} diff --git a/data/game/da/damage-inc.json b/data/game/da/damage-inc.json new file mode 100644 index 000000000000..3233257ee6ce --- /dev/null +++ b/data/game/da/damage-inc.json @@ -0,0 +1,17 @@ +{ + "slug": "damage-inc", + "name": "Damage, Inc.", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137810414" + ], + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "action-adventure game" + ], + "developers": [ + "Black Rock Studio" + ] +} diff --git a/data/game/da/dan-ku-ga.json b/data/game/da/dan-ku-ga.json new file mode 100644 index 000000000000..a052b2e575ba --- /dev/null +++ b/data/game/da/dan-ku-ga.json @@ -0,0 +1,17 @@ +{ + "slug": "dan-ku-ga", + "name": "Dan-Ku-Ga", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140003895" + ], + "platforms": [ + "arcade video game machine" + ], + "genres": [ + "2D fighting game" + ], + "developers": [ + "Taito" + ] +} diff --git a/data/game/da/dance-contest.json b/data/game/da/dance-contest.json new file mode 100644 index 000000000000..a7c57c26fe8c --- /dev/null +++ b/data/game/da/dance-contest.json @@ -0,0 +1,15 @@ +{ + "slug": "dance-contest", + "name": "Dance Contest", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125721869" + ], + "release_date": "2009-01-15", + "platforms": [ + "web browser" + ], + "genres": [ + "rhythm game" + ] +} diff --git a/data/game/da/dandara-trials-of-fear.json b/data/game/da/dandara-trials-of-fear.json new file mode 100644 index 000000000000..cbf53a88ed9d --- /dev/null +++ b/data/game/da/dandara-trials-of-fear.json @@ -0,0 +1,14 @@ +{ + "slug": "dandara-trials-of-fear", + "name": "Dandara: Trials of Fear+", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109562534" + ], + "release_date": "2021-12-03", + "platforms": [ + "iPadOS", + "tvOS", + "iOS" + ] +} diff --git a/data/game/da/dandy-s-world.json b/data/game/da/dandy-s-world.json new file mode 100644 index 000000000000..c26e4256dfc6 --- /dev/null +++ b/data/game/da/dandy-s-world.json @@ -0,0 +1,14 @@ +{ + "slug": "dandy-s-world", + "name": "Dandy's World", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134543689" + ], + "release_date": "2024-06-14", + "genres": [ + "escape room video game", + "survival game", + "mascot horror video game" + ] +} diff --git a/data/game/da/danganronpa-1-2-v3.json b/data/game/da/danganronpa-1-2-v3.json new file mode 100644 index 000000000000..d1e76d674450 --- /dev/null +++ b/data/game/da/danganronpa-1-2-v3.json @@ -0,0 +1,12 @@ +{ + "slug": "danganronpa-1-2-v3", + "name": "Danganronpa 1/2/V3", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q104774608" + ], + "platforms": [ + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/game/da/danganronpa-1-2.json b/data/game/da/danganronpa-1-2.json new file mode 100644 index 000000000000..927d786e0fea --- /dev/null +++ b/data/game/da/danganronpa-1-2.json @@ -0,0 +1,12 @@ +{ + "slug": "danganronpa-1-2", + "name": "Danganronpa 1 + 2", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q104774675" + ], + "platforms": [ + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/game/da/danganronpa-2-goodbye-despair-anniversary-edition.json b/data/game/da/danganronpa-2-goodbye-despair-anniversary-edition.json new file mode 100644 index 000000000000..516e09ccf4fd --- /dev/null +++ b/data/game/da/danganronpa-2-goodbye-despair-anniversary-edition.json @@ -0,0 +1,19 @@ +{ + "slug": "danganronpa-2-goodbye-despair-anniversary-edition", + "name": "Danganronpa 2: Goodbye Despair Anniversary Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112116144" + ], + "release_date": "2022-05-10", + "platforms": [ + "Xbox Series X and Series S", + "Microsoft Windows" + ], + "developers": [ + "Spike Chunsoft" + ], + "publishers": [ + "Spike Chunsoft" + ] +} diff --git a/data/game/da/danganronpa-trigger-happy-havoc-anniversary-edition.json b/data/game/da/danganronpa-trigger-happy-havoc-anniversary-edition.json new file mode 100644 index 000000000000..22f9c3e3ec4f --- /dev/null +++ b/data/game/da/danganronpa-trigger-happy-havoc-anniversary-edition.json @@ -0,0 +1,21 @@ +{ + "slug": "danganronpa-trigger-happy-havoc-anniversary-edition", + "name": "Danganronpa: Trigger Happy Havoc Anniversary Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110612415" + ], + "release_date": "2020-05-20", + "platforms": [ + "iPadOS", + "Xbox Series X and Series S", + "iOS", + "Microsoft Windows" + ], + "developers": [ + "Spike Chunsoft" + ], + "publishers": [ + "Spike Chunsoft" + ] +} diff --git a/data/game/da/danganronpa-v3-killing-harmony-anniversary-edition.json b/data/game/da/danganronpa-v3-killing-harmony-anniversary-edition.json new file mode 100644 index 000000000000..3ee2d1da6615 --- /dev/null +++ b/data/game/da/danganronpa-v3-killing-harmony-anniversary-edition.json @@ -0,0 +1,19 @@ +{ + "slug": "danganronpa-v3-killing-harmony-anniversary-edition", + "name": "Danganronpa V3: Killing Harmony Anniversary Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116265823" + ], + "release_date": "2021-12-03", + "platforms": [ + "Xbox Series X and Series S", + "Microsoft Windows" + ], + "developers": [ + "Spike Chunsoft" + ], + "publishers": [ + "Spike Chunsoft" + ] +} diff --git a/data/game/da/dangeresque-3-the-criminal-projective.json b/data/game/da/dangeresque-3-the-criminal-projective.json new file mode 100644 index 000000000000..24aff78f2d20 --- /dev/null +++ b/data/game/da/dangeresque-3-the-criminal-projective.json @@ -0,0 +1,23 @@ +{ + "slug": "dangeresque-3-the-criminal-projective", + "name": "Dangeresque 3: The Criminal Projective", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135448931" + ], + "release_date": "2008-11-17", + "platforms": [ + "PlayStation 3", + "Wii", + "Microsoft Windows" + ], + "genres": [ + "graphic adventure game" + ], + "developers": [ + "Telltale Games" + ], + "publishers": [ + "Telltale Games" + ] +} diff --git a/data/game/da/daredevil-the-man-without-fear.json b/data/game/da/daredevil-the-man-without-fear.json new file mode 100644 index 000000000000..1ef3f7c6490d --- /dev/null +++ b/data/game/da/daredevil-the-man-without-fear.json @@ -0,0 +1,14 @@ +{ + "slug": "daredevil-the-man-without-fear", + "name": "Daredevil: The Man Without Fear", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q64764490" + ], + "platforms": [ + "Microsoft Windows" + ], + "publishers": [ + "Encore, Inc." + ] +} diff --git a/data/game/da/dark-age-of-camelot-darkness-rising.json b/data/game/da/dark-age-of-camelot-darkness-rising.json new file mode 100644 index 000000000000..5246c4c8a16f --- /dev/null +++ b/data/game/da/dark-age-of-camelot-darkness-rising.json @@ -0,0 +1,8 @@ +{ + "slug": "dark-age-of-camelot-darkness-rising", + "name": "Dark Age of Camelot: Darkness Rising", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131583523" + ] +} diff --git a/data/game/da/dark-age-of-camelot-shrouded-isles.json b/data/game/da/dark-age-of-camelot-shrouded-isles.json new file mode 100644 index 000000000000..d73dc736beb4 --- /dev/null +++ b/data/game/da/dark-age-of-camelot-shrouded-isles.json @@ -0,0 +1,8 @@ +{ + "slug": "dark-age-of-camelot-shrouded-isles", + "name": "Dark Age of Camelot: Shrouded Isles", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131583527" + ] +} diff --git a/data/game/da/dark-age-of-camelot-trials-of-atlantis.json b/data/game/da/dark-age-of-camelot-trials-of-atlantis.json new file mode 100644 index 000000000000..c7869d40810c --- /dev/null +++ b/data/game/da/dark-age-of-camelot-trials-of-atlantis.json @@ -0,0 +1,8 @@ +{ + "slug": "dark-age-of-camelot-trials-of-atlantis", + "name": "Dark Age of Camelot: Trials of Atlantis", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123986416" + ] +} diff --git a/data/game/da/dark-burial-enhanced-edition.json b/data/game/da/dark-burial-enhanced-edition.json new file mode 100644 index 000000000000..c0ec23028755 --- /dev/null +++ b/data/game/da/dark-burial-enhanced-edition.json @@ -0,0 +1,18 @@ +{ + "slug": "dark-burial-enhanced-edition", + "name": "Dark Burial: Enhanced Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120826091" + ], + "release_date": "2023-02-17", + "platforms": [ + "Xbox Series X and Series S" + ], + "genres": [ + "puzzle-platformer" + ], + "publishers": [ + "Desert Water Games" + ] +} diff --git a/data/game/da/dark-colony-the-council-wars.json b/data/game/da/dark-colony-the-council-wars.json new file mode 100644 index 000000000000..b675c3d86c3e --- /dev/null +++ b/data/game/da/dark-colony-the-council-wars.json @@ -0,0 +1,9 @@ +{ + "slug": "dark-colony-the-council-wars", + "name": "Dark Colony: The Council Wars", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105814541" + ], + "release_date": "1998-01-08" +} diff --git a/data/game/da/dark-earth-vienna-calling.json b/data/game/da/dark-earth-vienna-calling.json new file mode 100644 index 000000000000..c2adbc170464 --- /dev/null +++ b/data/game/da/dark-earth-vienna-calling.json @@ -0,0 +1,11 @@ +{ + "slug": "dark-earth-vienna-calling", + "name": "Dark Earth: Vienna Calling", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q114600185" + ], + "developers": [ + "Homegrown Games" + ] +} diff --git a/data/game/da/dark-messiah-of-might-magic-singleplayer-demo.json b/data/game/da/dark-messiah-of-might-magic-singleplayer-demo.json new file mode 100644 index 000000000000..3632444ccf6b --- /dev/null +++ b/data/game/da/dark-messiah-of-might-magic-singleplayer-demo.json @@ -0,0 +1,19 @@ +{ + "slug": "dark-messiah-of-might-magic-singleplayer-demo", + "name": "Dark Messiah of Might & Magic Singleplayer Demo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122705479" + ], + "release_date": "2006-09-07", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "action role-playing game", + "fantasy video game" + ], + "developers": [ + "Arkane Studios" + ] +} diff --git a/data/game/da/dark-skyes.json b/data/game/da/dark-skyes.json new file mode 100644 index 000000000000..07fe3ed89ecc --- /dev/null +++ b/data/game/da/dark-skyes.json @@ -0,0 +1,16 @@ +{ + "slug": "dark-skyes", + "name": "Dark Skyes", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111725372" + ], + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "role-playing video game", + "dating sim" + ] +} diff --git a/data/game/da/dark-souls-artorias-of-the-abyss.json b/data/game/da/dark-souls-artorias-of-the-abyss.json new file mode 100644 index 000000000000..9bd26931ed3f --- /dev/null +++ b/data/game/da/dark-souls-artorias-of-the-abyss.json @@ -0,0 +1,12 @@ +{ + "slug": "dark-souls-artorias-of-the-abyss", + "name": "Dark Souls: Artorias of the Abyss", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q50296391" + ], + "release_date": "2012-08-24", + "platforms": [ + "PlayStation 3" + ] +} diff --git a/data/game/da/dark-souls-ii-crown-of-the-ivory-king.json b/data/game/da/dark-souls-ii-crown-of-the-ivory-king.json new file mode 100644 index 000000000000..c698ef7ffb42 --- /dev/null +++ b/data/game/da/dark-souls-ii-crown-of-the-ivory-king.json @@ -0,0 +1,9 @@ +{ + "slug": "dark-souls-ii-crown-of-the-ivory-king", + "name": "Dark Souls II: Crown of the Ivory King", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q102277574" + ], + "release_date": "2014-09-30" +} diff --git a/data/game/da/dark-souls-ii-crown-of-the-old-iron-king.json b/data/game/da/dark-souls-ii-crown-of-the-old-iron-king.json new file mode 100644 index 000000000000..85d20f314a6c --- /dev/null +++ b/data/game/da/dark-souls-ii-crown-of-the-old-iron-king.json @@ -0,0 +1,9 @@ +{ + "slug": "dark-souls-ii-crown-of-the-old-iron-king", + "name": "Dark Souls II: Crown of the Old Iron King", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q102277371" + ], + "release_date": "2014-08-26" +} diff --git a/data/game/da/dark-souls-ii-crown-of-the-sunken-king.json b/data/game/da/dark-souls-ii-crown-of-the-sunken-king.json new file mode 100644 index 000000000000..c4e364882db0 --- /dev/null +++ b/data/game/da/dark-souls-ii-crown-of-the-sunken-king.json @@ -0,0 +1,9 @@ +{ + "slug": "dark-souls-ii-crown-of-the-sunken-king", + "name": "Dark Souls II: Crown of the Sunken King", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q102277373" + ], + "release_date": "2014-07-22" +} diff --git a/data/game/da/dark-souls-iii-ashes-of-ariandel.json b/data/game/da/dark-souls-iii-ashes-of-ariandel.json new file mode 100644 index 000000000000..ae7cff290b88 --- /dev/null +++ b/data/game/da/dark-souls-iii-ashes-of-ariandel.json @@ -0,0 +1,18 @@ +{ + "slug": "dark-souls-iii-ashes-of-ariandel", + "name": "Dark Souls III: Ashes of Ariandel", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113283443" + ], + "release_date": "2016-10-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "FromSoftware" + ], + "publishers": [ + "FromSoftware" + ] +} diff --git a/data/game/da/dark-souls-iii-the-ringed-city.json b/data/game/da/dark-souls-iii-the-ringed-city.json new file mode 100644 index 000000000000..5865adfd78db --- /dev/null +++ b/data/game/da/dark-souls-iii-the-ringed-city.json @@ -0,0 +1,15 @@ +{ + "slug": "dark-souls-iii-the-ringed-city", + "name": "Dark Souls III: The Ringed City", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q55381943" + ], + "release_date": "2017-01-01", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "action role-playing game" + ] +} diff --git a/data/game/da/dark-souls-prepare-to-die-edition.json b/data/game/da/dark-souls-prepare-to-die-edition.json new file mode 100644 index 000000000000..d3a89b10c8b8 --- /dev/null +++ b/data/game/da/dark-souls-prepare-to-die-edition.json @@ -0,0 +1,8 @@ +{ + "slug": "dark-souls-prepare-to-die-edition", + "name": "Dark Souls: Prepare to Die Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131905970" + ] +} diff --git a/data/game/da/dark-souls-trilogy.json b/data/game/da/dark-souls-trilogy.json new file mode 100644 index 000000000000..2f851a19426e --- /dev/null +++ b/data/game/da/dark-souls-trilogy.json @@ -0,0 +1,15 @@ +{ + "slug": "dark-souls-trilogy", + "name": "Dark Souls Trilogy", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q56240222" + ], + "release_date": "2018-01-01", + "platforms": [ + "PlayStation 4" + ], + "genres": [ + "action role-playing game" + ] +} diff --git a/data/game/da/darkstalkers-resurrection.json b/data/game/da/darkstalkers-resurrection.json new file mode 100644 index 000000000000..ce3c3230c3bf --- /dev/null +++ b/data/game/da/darkstalkers-resurrection.json @@ -0,0 +1,21 @@ +{ + "slug": "darkstalkers-resurrection", + "name": "Darkstalkers Resurrection", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5223795" + ], + "release_date": "2013-03-12", + "platforms": [ + "PlayStation 3" + ], + "genres": [ + "fighting game" + ], + "developers": [ + "Iron Galaxy Studios" + ], + "publishers": [ + "Capcom" + ] +} diff --git a/data/game/da/darq-ultimate-edition.json b/data/game/da/darq-ultimate-edition.json new file mode 100644 index 000000000000..17cde0cba4f6 --- /dev/null +++ b/data/game/da/darq-ultimate-edition.json @@ -0,0 +1,20 @@ +{ + "slug": "darq-ultimate-edition", + "name": "Darq Ultimate Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122428286" + ], + "release_date": "2023-03-03", + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 5", + "PlayStation 4" + ], + "developers": [ + "Unfold Games" + ], + "publishers": [ + "Feardemic" + ] +} diff --git a/data/game/da/darwinia-demo.json b/data/game/da/darwinia-demo.json new file mode 100644 index 000000000000..850e03513b4b --- /dev/null +++ b/data/game/da/darwinia-demo.json @@ -0,0 +1,23 @@ +{ + "slug": "darwinia-demo", + "name": "Darwinia Demo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122705023" + ], + "release_date": "2005-07-14", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "shoot 'em up", + "wargame", + "tactical role-playing game" + ], + "developers": [ + "Introversion Software" + ], + "publishers": [ + "Introversion Software" + ] +} diff --git a/data/game/da/darwinia-q123046128.json b/data/game/da/darwinia-q123046128.json new file mode 100644 index 000000000000..0ec669df643b --- /dev/null +++ b/data/game/da/darwinia-q123046128.json @@ -0,0 +1,8 @@ +{ + "slug": "darwinia-q123046128", + "name": "Darwinia+", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123046128" + ] +} diff --git a/data/game/da/data-east-arcade-classics.json b/data/game/da/data-east-arcade-classics.json new file mode 100644 index 000000000000..cbaa25cad2a9 --- /dev/null +++ b/data/game/da/data-east-arcade-classics.json @@ -0,0 +1,18 @@ +{ + "slug": "data-east-arcade-classics", + "name": "Data East Arcade Classics", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5227162" + ], + "release_date": "2010-02-19", + "platforms": [ + "Wii" + ], + "developers": [ + "G1M2" + ], + "publishers": [ + "Majesco Entertainment" + ] +} diff --git a/data/game/da/dataran-tanjung-mas.json b/data/game/da/dataran-tanjung-mas.json new file mode 100644 index 000000000000..6286bcd4e8d0 --- /dev/null +++ b/data/game/da/dataran-tanjung-mas.json @@ -0,0 +1,13 @@ +{ + "slug": "dataran-tanjung-mas", + "name": "Dataran Tanjung Mas", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123193058" + ], + "release_date": "2023-10-14", + "platforms": [ + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/game/da/daughter-of-shadows-an-scp-breach-event-friend-and-foe-expansion.json b/data/game/da/daughter-of-shadows-an-scp-breach-event-friend-and-foe-expansion.json new file mode 100644 index 000000000000..6de0a5b7ef3b --- /dev/null +++ b/data/game/da/daughter-of-shadows-an-scp-breach-event-friend-and-foe-expansion.json @@ -0,0 +1,21 @@ +{ + "slug": "daughter-of-shadows-an-scp-breach-event-friend-and-foe-expansion", + "name": "Daughter of Shadows: An SCP Breach Event - Friend and Foe Expansion", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107371284" + ], + "release_date": "2016-08-13", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "supernatural horror game" + ], + "developers": [ + "Blackrose Industries" + ], + "publishers": [ + "Blackrose Industries" + ] +} diff --git a/data/game/da/dave-the-diver-godzilla.json b/data/game/da/dave-the-diver-godzilla.json new file mode 100644 index 000000000000..9fbb7ec786f1 --- /dev/null +++ b/data/game/da/dave-the-diver-godzilla.json @@ -0,0 +1,21 @@ +{ + "slug": "dave-the-diver-godzilla", + "name": "Dave the Diver: Godzilla", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124426125" + ], + "release_date": "2024-05-23", + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 5", + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "action-adventure game" + ], + "publishers": [ + "Nexon" + ] +} diff --git a/data/game/da/dawnseekers.json b/data/game/da/dawnseekers.json new file mode 100644 index 000000000000..7c933758e835 --- /dev/null +++ b/data/game/da/dawnseekers.json @@ -0,0 +1,23 @@ +{ + "slug": "dawnseekers", + "name": "Dawnseekers", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123264915" + ], + "release_date": "2009-08-21", + "platforms": [ + "Nintendo DS" + ], + "genres": [ + "first-person shooter" + ], + "developers": [ + "Lobo", + "smealum" + ], + "publishers": [ + "smealum", + "Lobo" + ] +} diff --git a/data/game/da/dayz-frostline.json b/data/game/da/dayz-frostline.json new file mode 100644 index 000000000000..a34ec5f75d92 --- /dev/null +++ b/data/game/da/dayz-frostline.json @@ -0,0 +1,18 @@ +{ + "slug": "dayz-frostline", + "name": "DayZ Frostline", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130651820" + ], + "release_date": "2024-10-15", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Bohemia Interactive" + ], + "publishers": [ + "Bohemia Interactive" + ] +} diff --git a/data/game/dc/dcs-a-10a-warthog.json b/data/game/dc/dcs-a-10a-warthog.json new file mode 100644 index 000000000000..e2017b863c05 --- /dev/null +++ b/data/game/dc/dcs-a-10a-warthog.json @@ -0,0 +1,18 @@ +{ + "slug": "dcs-a-10a-warthog", + "name": "DCS: A-10A Warthog", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097346" + ], + "release_date": "2013-08-19", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Eagle Dynamics" + ], + "publishers": [ + "Eagle Dynamics" + ] +} diff --git a/data/game/dc/dcs-a-10c-ii-iron-flag-part-1-campaign.json b/data/game/dc/dcs-a-10c-ii-iron-flag-part-1-campaign.json new file mode 100644 index 000000000000..4d416552dd79 --- /dev/null +++ b/data/game/dc/dcs-a-10c-ii-iron-flag-part-1-campaign.json @@ -0,0 +1,15 @@ +{ + "slug": "dcs-a-10c-ii-iron-flag-part-1-campaign", + "name": "DCS: A-10C II Iron Flag Part 1 Campaign", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097631" + ], + "release_date": "2022-01-04", + "platforms": [ + "Microsoft Windows" + ], + "publishers": [ + "Eagle Dynamics" + ] +} diff --git a/data/game/dc/dcs-a-10c-ii-operation-persian-freedom-campaign.json b/data/game/dc/dcs-a-10c-ii-operation-persian-freedom-campaign.json new file mode 100644 index 000000000000..d94f95d9f43d --- /dev/null +++ b/data/game/dc/dcs-a-10c-ii-operation-persian-freedom-campaign.json @@ -0,0 +1,15 @@ +{ + "slug": "dcs-a-10c-ii-operation-persian-freedom-campaign", + "name": "DCS: A-10C II Operation Persian Freedom Campaign", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097620" + ], + "release_date": "2021-05-12", + "platforms": [ + "Microsoft Windows" + ], + "publishers": [ + "Eagle Dynamics" + ] +} diff --git a/data/game/dc/dcs-a-10c-ii-tank-killer.json b/data/game/dc/dcs-a-10c-ii-tank-killer.json new file mode 100644 index 000000000000..6f69070a5400 --- /dev/null +++ b/data/game/dc/dcs-a-10c-ii-tank-killer.json @@ -0,0 +1,18 @@ +{ + "slug": "dcs-a-10c-ii-tank-killer", + "name": "DCS: A-10C II Tank Killer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097448" + ], + "release_date": "2020-09-30", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Eagle Dynamics" + ], + "publishers": [ + "Eagle Dynamics" + ] +} diff --git a/data/game/dc/dcs-a-10c-operation-agile-spear-campaign.json b/data/game/dc/dcs-a-10c-operation-agile-spear-campaign.json new file mode 100644 index 000000000000..09ab988f8d6a --- /dev/null +++ b/data/game/dc/dcs-a-10c-operation-agile-spear-campaign.json @@ -0,0 +1,15 @@ +{ + "slug": "dcs-a-10c-operation-agile-spear-campaign", + "name": "DCS: A-10C Operation Agile Spear Campaign", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097636" + ], + "release_date": "2022-04-28", + "platforms": [ + "Microsoft Windows" + ], + "publishers": [ + "Eagle Dynamics" + ] +} diff --git a/data/game/dc/dcs-a-10c-warthog-the-enemy-within-3-0-campaign.json b/data/game/dc/dcs-a-10c-warthog-the-enemy-within-3-0-campaign.json new file mode 100644 index 000000000000..5c39d96259bd --- /dev/null +++ b/data/game/dc/dcs-a-10c-warthog-the-enemy-within-3-0-campaign.json @@ -0,0 +1,15 @@ +{ + "slug": "dcs-a-10c-warthog-the-enemy-within-3-0-campaign", + "name": "DCS: A-10C Warthog - The Enemy Within 3.0 Campaign", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097579" + ], + "release_date": "2019-04-10", + "platforms": [ + "Microsoft Windows" + ], + "publishers": [ + "Eagle Dynamics" + ] +} diff --git a/data/game/dc/dcs-ah-64d.json b/data/game/dc/dcs-ah-64d.json new file mode 100644 index 000000000000..0db1de7d5780 --- /dev/null +++ b/data/game/dc/dcs-ah-64d.json @@ -0,0 +1,18 @@ +{ + "slug": "dcs-ah-64d", + "name": "DCS: AH-64D", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097457" + ], + "release_date": "2022-03-17", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Eagle Dynamics" + ], + "publishers": [ + "Eagle Dynamics" + ] +} diff --git a/data/game/dc/dcs-ajs-37-viggen.json b/data/game/dc/dcs-ajs-37-viggen.json new file mode 100644 index 000000000000..e81c99d3e596 --- /dev/null +++ b/data/game/dc/dcs-ajs-37-viggen.json @@ -0,0 +1,15 @@ +{ + "slug": "dcs-ajs-37-viggen", + "name": "DCS: AJS-37 Viggen", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097544" + ], + "release_date": "2017-11-02", + "platforms": [ + "Microsoft Windows" + ], + "publishers": [ + "Eagle Dynamics" + ] +} diff --git a/data/game/dc/dcs-av-8b-hormuz-freedom-campaign.json b/data/game/dc/dcs-av-8b-hormuz-freedom-campaign.json new file mode 100644 index 000000000000..881dfd02b718 --- /dev/null +++ b/data/game/dc/dcs-av-8b-hormuz-freedom-campaign.json @@ -0,0 +1,18 @@ +{ + "slug": "dcs-av-8b-hormuz-freedom-campaign", + "name": "DCS: AV-8B Hormuz Freedom Campaign", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097464" + ], + "release_date": "2022-03-30", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Eagle Dynamics" + ], + "publishers": [ + "Eagle Dynamics" + ] +} diff --git a/data/game/dc/dcs-av-8b-kerman-campaign-by-ground-pounder-sims.json b/data/game/dc/dcs-av-8b-kerman-campaign-by-ground-pounder-sims.json new file mode 100644 index 000000000000..26a2ebf14e96 --- /dev/null +++ b/data/game/dc/dcs-av-8b-kerman-campaign-by-ground-pounder-sims.json @@ -0,0 +1,15 @@ +{ + "slug": "dcs-av-8b-kerman-campaign-by-ground-pounder-sims", + "name": "DCS: AV-8B Kerman Campaign by Ground Pounder Sims", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097655" + ], + "release_date": "2023-03-10", + "platforms": [ + "Microsoft Windows" + ], + "publishers": [ + "Eagle Dynamics" + ] +} diff --git a/data/game/dc/dcs-av-8b-night-attack-v-stol.json b/data/game/dc/dcs-av-8b-night-attack-v-stol.json new file mode 100644 index 000000000000..fffd12f68928 --- /dev/null +++ b/data/game/dc/dcs-av-8b-night-attack-v-stol.json @@ -0,0 +1,15 @@ +{ + "slug": "dcs-av-8b-night-attack-v-stol", + "name": "DCS: AV-8B Night Attack V/STOL", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097567" + ], + "release_date": "2017-12-21", + "platforms": [ + "Microsoft Windows" + ], + "publishers": [ + "Eagle Dynamics" + ] +} diff --git a/data/game/dc/dcs-av-8b-sky-warrior-campaign.json b/data/game/dc/dcs-av-8b-sky-warrior-campaign.json new file mode 100644 index 000000000000..69bcc17c07db --- /dev/null +++ b/data/game/dc/dcs-av-8b-sky-warrior-campaign.json @@ -0,0 +1,15 @@ +{ + "slug": "dcs-av-8b-sky-warrior-campaign", + "name": "DCS: AV-8B Sky Warrior Campaign", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097600" + ], + "release_date": "2021-01-30", + "platforms": [ + "Microsoft Windows" + ], + "publishers": [ + "Eagle Dynamics" + ] +} diff --git a/data/game/dc/dcs-bf-109-k-4-kurf-rst-jagdflieger-campaign.json b/data/game/dc/dcs-bf-109-k-4-kurf-rst-jagdflieger-campaign.json new file mode 100644 index 000000000000..85e26db6ee1c --- /dev/null +++ b/data/game/dc/dcs-bf-109-k-4-kurf-rst-jagdflieger-campaign.json @@ -0,0 +1,15 @@ +{ + "slug": "dcs-bf-109-k-4-kurf-rst-jagdflieger-campaign", + "name": "DCS: Bf 109 K-4 Kurfürst - Jagdflieger Campaign", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097585" + ], + "release_date": "2019-08-22", + "platforms": [ + "Microsoft Windows" + ], + "publishers": [ + "Eagle Dynamics" + ] +} diff --git a/data/game/dc/dcs-bf-109-k-4-kurf-rst.json b/data/game/dc/dcs-bf-109-k-4-kurf-rst.json new file mode 100644 index 000000000000..9e4b54b40f6b --- /dev/null +++ b/data/game/dc/dcs-bf-109-k-4-kurf-rst.json @@ -0,0 +1,18 @@ +{ + "slug": "dcs-bf-109-k-4-kurf-rst", + "name": "DCS: Bf 109 K-4 Kurfürst", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097400" + ], + "release_date": "2014-12-12", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Eagle Dynamics" + ], + "publishers": [ + "Eagle Dynamics" + ] +} diff --git a/data/game/dc/dcs-black-shark-2-pandemic-campaign.json b/data/game/dc/dcs-black-shark-2-pandemic-campaign.json new file mode 100644 index 000000000000..3c392d0e8c6e --- /dev/null +++ b/data/game/dc/dcs-black-shark-2-pandemic-campaign.json @@ -0,0 +1,15 @@ +{ + "slug": "dcs-black-shark-2-pandemic-campaign", + "name": "DCS: Black Shark 2 Pandemic Campaign", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097619" + ], + "release_date": "2021-05-12", + "platforms": [ + "Microsoft Windows" + ], + "publishers": [ + "Eagle Dynamics" + ] +} diff --git a/data/game/dc/dcs-black-shark-3-upgrade.json b/data/game/dc/dcs-black-shark-3-upgrade.json new file mode 100644 index 000000000000..96e01dae0afc --- /dev/null +++ b/data/game/dc/dcs-black-shark-3-upgrade.json @@ -0,0 +1,18 @@ +{ + "slug": "dcs-black-shark-3-upgrade", + "name": "DCS: Black Shark 3 Upgrade", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097467" + ], + "release_date": "2022-12-16", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Eagle Dynamics" + ], + "publishers": [ + "Eagle Dynamics" + ] +} diff --git a/data/game/dc/dcs-black-shark-3.json b/data/game/dc/dcs-black-shark-3.json new file mode 100644 index 000000000000..06d2ef10b95d --- /dev/null +++ b/data/game/dc/dcs-black-shark-3.json @@ -0,0 +1,18 @@ +{ + "slug": "dcs-black-shark-3", + "name": "DCS: Black Shark 3", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097466" + ], + "release_date": "2022-12-16", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Eagle Dynamics" + ], + "publishers": [ + "Eagle Dynamics" + ] +} diff --git a/data/game/dc/dcs-c-101-aviojet.json b/data/game/dc/dcs-c-101-aviojet.json new file mode 100644 index 000000000000..9fe48ba63a12 --- /dev/null +++ b/data/game/dc/dcs-c-101-aviojet.json @@ -0,0 +1,15 @@ +{ + "slug": "dcs-c-101-aviojet", + "name": "DCS: C-101 Aviojet", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097539" + ], + "release_date": "2019-02-14", + "platforms": [ + "Microsoft Windows" + ], + "publishers": [ + "Eagle Dynamics" + ] +} diff --git a/data/game/dc/dcs-christen-eagle-ii.json b/data/game/dc/dcs-christen-eagle-ii.json new file mode 100644 index 000000000000..c1c943af839f --- /dev/null +++ b/data/game/dc/dcs-christen-eagle-ii.json @@ -0,0 +1,15 @@ +{ + "slug": "dcs-christen-eagle-ii", + "name": "DCS: Christen Eagle II", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097577" + ], + "release_date": "2019-03-05", + "platforms": [ + "Microsoft Windows" + ], + "publishers": [ + "Eagle Dynamics" + ] +} diff --git a/data/game/dc/dcs-combined-arms-frontlines-georgia-campaign.json b/data/game/dc/dcs-combined-arms-frontlines-georgia-campaign.json new file mode 100644 index 000000000000..d8db02619331 --- /dev/null +++ b/data/game/dc/dcs-combined-arms-frontlines-georgia-campaign.json @@ -0,0 +1,18 @@ +{ + "slug": "dcs-combined-arms-frontlines-georgia-campaign", + "name": "DCS: Combined Arms Frontlines Georgia Campaign", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097438" + ], + "release_date": "2019-02-26", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Eagle Dynamics" + ], + "publishers": [ + "Eagle Dynamics" + ] +} diff --git a/data/game/dc/dcs-combined-arms.json b/data/game/dc/dcs-combined-arms.json new file mode 100644 index 000000000000..197d0827d59f --- /dev/null +++ b/data/game/dc/dcs-combined-arms.json @@ -0,0 +1,18 @@ +{ + "slug": "dcs-combined-arms", + "name": "DCS: Combined Arms", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097328" + ], + "release_date": "2012-05-31", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Eagle Dynamics" + ], + "publishers": [ + "Eagle Dynamics" + ] +} diff --git a/data/game/dc/dcs-f-14a-b-tomcat.json b/data/game/dc/dcs-f-14a-b-tomcat.json new file mode 100644 index 000000000000..675711e2e56b --- /dev/null +++ b/data/game/dc/dcs-f-14a-b-tomcat.json @@ -0,0 +1,15 @@ +{ + "slug": "dcs-f-14a-b-tomcat", + "name": "DCS: F-14A/B Tomcat", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097542" + ], + "release_date": "2019-03-13", + "platforms": [ + "Microsoft Windows" + ], + "publishers": [ + "Eagle Dynamics" + ] +} diff --git a/data/game/dc/dcs-f-14a-fear-the-bones-campaign.json b/data/game/dc/dcs-f-14a-fear-the-bones-campaign.json new file mode 100644 index 000000000000..373e67c42f97 --- /dev/null +++ b/data/game/dc/dcs-f-14a-fear-the-bones-campaign.json @@ -0,0 +1,15 @@ +{ + "slug": "dcs-f-14a-fear-the-bones-campaign", + "name": "DCS: F-14A Fear the Bones Campaign", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097622" + ], + "release_date": "2021-07-17", + "platforms": [ + "Microsoft Windows" + ], + "publishers": [ + "Eagle Dynamics" + ] +} diff --git a/data/game/dc/dcs-f-14a-zone-5-campaign.json b/data/game/dc/dcs-f-14a-zone-5-campaign.json new file mode 100644 index 000000000000..fac71f1793b6 --- /dev/null +++ b/data/game/dc/dcs-f-14a-zone-5-campaign.json @@ -0,0 +1,15 @@ +{ + "slug": "dcs-f-14a-zone-5-campaign", + "name": "DCS: F-14A Zone 5 Campaign", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097603" + ], + "release_date": "2021-02-01", + "platforms": [ + "Microsoft Windows" + ], + "publishers": [ + "Eagle Dynamics" + ] +} diff --git a/data/game/dc/dcs-f-14b-operation-sandworm-campaign.json b/data/game/dc/dcs-f-14b-operation-sandworm-campaign.json new file mode 100644 index 000000000000..0f3be763d84d --- /dev/null +++ b/data/game/dc/dcs-f-14b-operation-sandworm-campaign.json @@ -0,0 +1,15 @@ +{ + "slug": "dcs-f-14b-operation-sandworm-campaign", + "name": "DCS: F-14B Operation Sandworm Campaign", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097637" + ], + "release_date": "2022-04-28", + "platforms": [ + "Microsoft Windows" + ], + "publishers": [ + "Eagle Dynamics" + ] +} diff --git a/data/game/dc/dcs-f-14b-speed-and-angels-campaign.json b/data/game/dc/dcs-f-14b-speed-and-angels-campaign.json new file mode 100644 index 000000000000..f0cd21a4ca84 --- /dev/null +++ b/data/game/dc/dcs-f-14b-speed-and-angels-campaign.json @@ -0,0 +1,15 @@ +{ + "slug": "dcs-f-14b-speed-and-angels-campaign", + "name": "DCS: F-14B Speed and Angels Campaign", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097652" + ], + "release_date": "2023-01-25", + "platforms": [ + "Microsoft Windows" + ], + "publishers": [ + "Eagle Dynamics" + ] +} diff --git a/data/game/dc/dcs-f-15e.json b/data/game/dc/dcs-f-15e.json new file mode 100644 index 000000000000..af204f89ef06 --- /dev/null +++ b/data/game/dc/dcs-f-15e.json @@ -0,0 +1,15 @@ +{ + "slug": "dcs-f-15e", + "name": "DCS: F-15E", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097661" + ], + "release_date": "2023-06-22", + "platforms": [ + "Microsoft Windows" + ], + "publishers": [ + "Eagle Dynamics" + ] +} diff --git a/data/game/dc/dcs-f-16c-red-flag-21-1-campaign.json b/data/game/dc/dcs-f-16c-red-flag-21-1-campaign.json new file mode 100644 index 000000000000..6a96b98f214a --- /dev/null +++ b/data/game/dc/dcs-f-16c-red-flag-21-1-campaign.json @@ -0,0 +1,15 @@ +{ + "slug": "dcs-f-16c-red-flag-21-1-campaign", + "name": "DCS: F-16C Red Flag 21-1 Campaign", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097602" + ], + "release_date": "2021-02-01", + "platforms": [ + "Microsoft Windows" + ], + "publishers": [ + "Eagle Dynamics" + ] +} diff --git a/data/game/dc/dcs-f-16c-viper.json b/data/game/dc/dcs-f-16c-viper.json new file mode 100644 index 000000000000..43e8e8101da3 --- /dev/null +++ b/data/game/dc/dcs-f-16c-viper.json @@ -0,0 +1,18 @@ +{ + "slug": "dcs-f-16c-viper", + "name": "DCS: F-16C Viper", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097439" + ], + "release_date": "2019-10-03", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Eagle Dynamics" + ], + "publishers": [ + "Eagle Dynamics" + ] +} diff --git a/data/game/dc/dcs-f-5e-black-sea-resolve-79-campaign.json b/data/game/dc/dcs-f-5e-black-sea-resolve-79-campaign.json new file mode 100644 index 000000000000..afc493ecc93b --- /dev/null +++ b/data/game/dc/dcs-f-5e-black-sea-resolve-79-campaign.json @@ -0,0 +1,15 @@ +{ + "slug": "dcs-f-5e-black-sea-resolve-79-campaign", + "name": "DCS: F-5E Black Sea Resolve '79 Campaign", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097598" + ], + "release_date": "2021-02-01", + "platforms": [ + "Microsoft Windows" + ], + "publishers": [ + "Eagle Dynamics" + ] +} diff --git a/data/game/dc/dcs-f-5e-tiger-ii.json b/data/game/dc/dcs-f-5e-tiger-ii.json new file mode 100644 index 000000000000..d4893a99fc2f --- /dev/null +++ b/data/game/dc/dcs-f-5e-tiger-ii.json @@ -0,0 +1,18 @@ +{ + "slug": "dcs-f-5e-tiger-ii", + "name": "DCS: F-5E Tiger II", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097418" + ], + "release_date": "2016-12-02", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Eagle Dynamics" + ], + "publishers": [ + "Eagle Dynamics" + ] +} diff --git a/data/game/dc/dcs-f-86f-sabre-hunters-over-the-yalu-campaign.json b/data/game/dc/dcs-f-86f-sabre-hunters-over-the-yalu-campaign.json new file mode 100644 index 000000000000..6a48a2ec0fa3 --- /dev/null +++ b/data/game/dc/dcs-f-86f-sabre-hunters-over-the-yalu-campaign.json @@ -0,0 +1,15 @@ +{ + "slug": "dcs-f-86f-sabre-hunters-over-the-yalu-campaign", + "name": "DCS: F-86F Sabre Hunters Over the Yalu Campaign", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097591" + ], + "release_date": "2020-07-21", + "platforms": [ + "Microsoft Windows" + ], + "publishers": [ + "Eagle Dynamics" + ] +} diff --git a/data/game/dc/dcs-f-86f-sabre.json b/data/game/dc/dcs-f-86f-sabre.json new file mode 100644 index 000000000000..ef709b6f1345 --- /dev/null +++ b/data/game/dc/dcs-f-86f-sabre.json @@ -0,0 +1,18 @@ +{ + "slug": "dcs-f-86f-sabre", + "name": "DCS: F-86F Sabre", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097393" + ], + "release_date": "2014-08-08", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Eagle Dynamics" + ], + "publishers": [ + "Eagle Dynamics" + ] +} diff --git a/data/game/dc/dcs-f-a-18c-flaming-sunrise-campaign-by-sandman-simulations.json b/data/game/dc/dcs-f-a-18c-flaming-sunrise-campaign-by-sandman-simulations.json new file mode 100644 index 000000000000..206a7445a32b --- /dev/null +++ b/data/game/dc/dcs-f-a-18c-flaming-sunrise-campaign-by-sandman-simulations.json @@ -0,0 +1,15 @@ +{ + "slug": "dcs-f-a-18c-flaming-sunrise-campaign-by-sandman-simulations", + "name": "DCS: F/A-18C Flaming Sunrise Campaign by Sandman Simulations", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097669" + ], + "release_date": "2023-05-18", + "platforms": [ + "Microsoft Windows" + ], + "publishers": [ + "Eagle Dynamics" + ] +} diff --git a/data/game/dc/dcs-f-a-18c-hornet-raven-one-ampaign.json b/data/game/dc/dcs-f-a-18c-hornet-raven-one-ampaign.json new file mode 100644 index 000000000000..d9cc74b54049 --- /dev/null +++ b/data/game/dc/dcs-f-a-18c-hornet-raven-one-ampaign.json @@ -0,0 +1,15 @@ +{ + "slug": "dcs-f-a-18c-hornet-raven-one-ampaign", + "name": "DCS: F/A-18C Hornet Raven One Сampaign", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097595" + ], + "release_date": "2020-09-23", + "platforms": [ + "Microsoft Windows" + ], + "publishers": [ + "Eagle Dynamics" + ] +} diff --git a/data/game/dc/dcs-f-a-18c-hornet-the-serpent-s-head-2-campaign.json b/data/game/dc/dcs-f-a-18c-hornet-the-serpent-s-head-2-campaign.json new file mode 100644 index 000000000000..0eb440dc2e10 --- /dev/null +++ b/data/game/dc/dcs-f-a-18c-hornet-the-serpent-s-head-2-campaign.json @@ -0,0 +1,15 @@ +{ + "slug": "dcs-f-a-18c-hornet-the-serpent-s-head-2-campaign", + "name": "DCS: F/A-18C Hornet The Serpent's Head 2 Campaign", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097590" + ], + "release_date": "2020-07-21", + "platforms": [ + "Microsoft Windows" + ], + "publishers": [ + "Eagle Dynamics" + ] +} diff --git a/data/game/dc/dcs-f-a-18c-inherent-resolve-campaign-by-looking-glass.json b/data/game/dc/dcs-f-a-18c-inherent-resolve-campaign-by-looking-glass.json new file mode 100644 index 000000000000..255c167d060d --- /dev/null +++ b/data/game/dc/dcs-f-a-18c-inherent-resolve-campaign-by-looking-glass.json @@ -0,0 +1,15 @@ +{ + "slug": "dcs-f-a-18c-inherent-resolve-campaign-by-looking-glass", + "name": "DCS: F/A-18C Inherent Resolve Campaign by Looking Glass", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097659" + ], + "release_date": "2023-03-10", + "platforms": [ + "Microsoft Windows" + ], + "publishers": [ + "Eagle Dynamics" + ] +} diff --git a/data/game/dc/dcs-f-a-18c-operation-cerberus-north.json b/data/game/dc/dcs-f-a-18c-operation-cerberus-north.json new file mode 100644 index 000000000000..616b29b7f2bd --- /dev/null +++ b/data/game/dc/dcs-f-a-18c-operation-cerberus-north.json @@ -0,0 +1,18 @@ +{ + "slug": "dcs-f-a-18c-operation-cerberus-north", + "name": "DCS: F/A-18C Operation Cerberus North", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097465" + ], + "release_date": "2022-03-30", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Eagle Dynamics" + ], + "publishers": [ + "Eagle Dynamics" + ] +} diff --git a/data/game/dc/dcs-f-a-18c-operation-pontus-campaign.json b/data/game/dc/dcs-f-a-18c-operation-pontus-campaign.json new file mode 100644 index 000000000000..0c3950ac0e43 --- /dev/null +++ b/data/game/dc/dcs-f-a-18c-operation-pontus-campaign.json @@ -0,0 +1,15 @@ +{ + "slug": "dcs-f-a-18c-operation-pontus-campaign", + "name": "DCS: F/A-18C Operation Pontus Campaign", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097615" + ], + "release_date": "2021-01-30", + "platforms": [ + "Microsoft Windows" + ], + "publishers": [ + "Eagle Dynamics" + ] +} diff --git a/data/game/dc/dcs-f-a-18c-raven-one-dominant-fury-campaign.json b/data/game/dc/dcs-f-a-18c-raven-one-dominant-fury-campaign.json new file mode 100644 index 000000000000..c4d6a914f318 --- /dev/null +++ b/data/game/dc/dcs-f-a-18c-raven-one-dominant-fury-campaign.json @@ -0,0 +1,15 @@ +{ + "slug": "dcs-f-a-18c-raven-one-dominant-fury-campaign", + "name": "DCS: F/A-18C Raven One: Dominant Fury Campaign", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097644" + ], + "release_date": "2022-06-24", + "platforms": [ + "Microsoft Windows" + ], + "publishers": [ + "Eagle Dynamics" + ] +} diff --git a/data/game/dc/dcs-f-a-18c-rise-of-the-persian-lion-campaign.json b/data/game/dc/dcs-f-a-18c-rise-of-the-persian-lion-campaign.json new file mode 100644 index 000000000000..a3c368e7974c --- /dev/null +++ b/data/game/dc/dcs-f-a-18c-rise-of-the-persian-lion-campaign.json @@ -0,0 +1,15 @@ +{ + "slug": "dcs-f-a-18c-rise-of-the-persian-lion-campaign", + "name": "DCS: F/A-18C Rise of the Persian Lion Campaign", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097621" + ], + "release_date": "2021-07-24", + "platforms": [ + "Microsoft Windows" + ], + "publishers": [ + "Eagle Dynamics" + ] +} diff --git a/data/game/dc/dcs-f-a-18c-rise-of-the-persian-lion-ii-campaign.json b/data/game/dc/dcs-f-a-18c-rise-of-the-persian-lion-ii-campaign.json new file mode 100644 index 000000000000..d3afd4ac5fee --- /dev/null +++ b/data/game/dc/dcs-f-a-18c-rise-of-the-persian-lion-ii-campaign.json @@ -0,0 +1,15 @@ +{ + "slug": "dcs-f-a-18c-rise-of-the-persian-lion-ii-campaign", + "name": "DCS: F/A-18C Rise of the Persian Lion II Campaign", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097649" + ], + "release_date": "2022-12-16", + "platforms": [ + "Microsoft Windows" + ], + "publishers": [ + "Eagle Dynamics" + ] +} diff --git a/data/game/dc/dcs-f-a-18c-rising-squall-campaign.json b/data/game/dc/dcs-f-a-18c-rising-squall-campaign.json new file mode 100644 index 000000000000..d1ab03192f72 --- /dev/null +++ b/data/game/dc/dcs-f-a-18c-rising-squall-campaign.json @@ -0,0 +1,15 @@ +{ + "slug": "dcs-f-a-18c-rising-squall-campaign", + "name": "DCS: F/A-18C Rising Squall Campaign", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097601" + ], + "release_date": "2021-02-01", + "platforms": [ + "Microsoft Windows" + ], + "publishers": [ + "Eagle Dynamics" + ] +} diff --git a/data/game/dc/dcs-f-a-18c.json b/data/game/dc/dcs-f-a-18c.json new file mode 100644 index 000000000000..32068f101c6d --- /dev/null +++ b/data/game/dc/dcs-f-a-18c.json @@ -0,0 +1,18 @@ +{ + "slug": "dcs-f-a-18c", + "name": "DCS: F/A-18C", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097428" + ], + "release_date": "2018-06-01", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Eagle Dynamics" + ], + "publishers": [ + "Eagle Dynamics" + ] +} diff --git a/data/game/dc/dcs-flaming-cliffs-3.json b/data/game/dc/dcs-flaming-cliffs-3.json new file mode 100644 index 000000000000..113460e3a6b9 --- /dev/null +++ b/data/game/dc/dcs-flaming-cliffs-3.json @@ -0,0 +1,18 @@ +{ + "slug": "dcs-flaming-cliffs-3", + "name": "DCS: Flaming Cliffs 3", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097363" + ], + "release_date": "2012-11-08", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Eagle Dynamics" + ], + "publishers": [ + "Eagle Dynamics" + ] +} diff --git a/data/game/dc/dcs-fw-190-a-8-horrido-campaign.json b/data/game/dc/dcs-fw-190-a-8-horrido-campaign.json new file mode 100644 index 000000000000..ecc8f41ebec9 --- /dev/null +++ b/data/game/dc/dcs-fw-190-a-8-horrido-campaign.json @@ -0,0 +1,15 @@ +{ + "slug": "dcs-fw-190-a-8-horrido-campaign", + "name": "DCS: Fw 190 A-8 Horrido! Campaign", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097597" + ], + "release_date": "2020-10-23", + "platforms": [ + "Microsoft Windows" + ], + "publishers": [ + "Eagle Dynamics" + ] +} diff --git a/data/game/dc/dcs-fw-190-a-8.json b/data/game/dc/dcs-fw-190-a-8.json new file mode 100644 index 000000000000..288be1ffbb7a --- /dev/null +++ b/data/game/dc/dcs-fw-190-a-8.json @@ -0,0 +1,18 @@ +{ + "slug": "dcs-fw-190-a-8", + "name": "DCS: Fw 190 A-8", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097440" + ], + "release_date": "2019-07-03", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Eagle Dynamics" + ], + "publishers": [ + "Eagle Dynamics" + ] +} diff --git a/data/game/dc/dcs-fw-190-d-9-dora.json b/data/game/dc/dcs-fw-190-d-9-dora.json new file mode 100644 index 000000000000..2356f4bb9c59 --- /dev/null +++ b/data/game/dc/dcs-fw-190-d-9-dora.json @@ -0,0 +1,18 @@ +{ + "slug": "dcs-fw-190-d-9-dora", + "name": "DCS: Fw 190 D-9 Dora", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097385" + ], + "release_date": "2014-08-19", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Eagle Dynamics" + ], + "publishers": [ + "Eagle Dynamics" + ] +} diff --git a/data/game/dc/dcs-i-16.json b/data/game/dc/dcs-i-16.json new file mode 100644 index 000000000000..3106cbf33a75 --- /dev/null +++ b/data/game/dc/dcs-i-16.json @@ -0,0 +1,15 @@ +{ + "slug": "dcs-i-16", + "name": "DCS: I-16", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097583" + ], + "release_date": "2019-05-20", + "platforms": [ + "Microsoft Windows" + ], + "publishers": [ + "Eagle Dynamics" + ] +} diff --git a/data/game/dc/dcs-jf-17-thunder.json b/data/game/dc/dcs-jf-17-thunder.json new file mode 100644 index 000000000000..96175d9a2807 --- /dev/null +++ b/data/game/dc/dcs-jf-17-thunder.json @@ -0,0 +1,15 @@ +{ + "slug": "dcs-jf-17-thunder", + "name": "DCS: JF-17 Thunder", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097587" + ], + "release_date": "2019-12-04", + "platforms": [ + "Microsoft Windows" + ], + "publishers": [ + "Eagle Dynamics" + ] +} diff --git a/data/game/dc/dcs-l-39-albatros-kursant-campaign.json b/data/game/dc/dcs-l-39-albatros-kursant-campaign.json new file mode 100644 index 000000000000..d2f0817bc570 --- /dev/null +++ b/data/game/dc/dcs-l-39-albatros-kursant-campaign.json @@ -0,0 +1,18 @@ +{ + "slug": "dcs-l-39-albatros-kursant-campaign", + "name": "DCS: L-39 Albatros - Kursant Campaign", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097433" + ], + "release_date": "2018-07-03", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Eagle Dynamics" + ], + "publishers": [ + "Eagle Dynamics" + ] +} diff --git a/data/game/dc/dcs-l-39-albatros.json b/data/game/dc/dcs-l-39-albatros.json new file mode 100644 index 000000000000..ed15242f9aef --- /dev/null +++ b/data/game/dc/dcs-l-39-albatros.json @@ -0,0 +1,18 @@ +{ + "slug": "dcs-l-39-albatros", + "name": "DCS: L-39 Albatros", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097412" + ], + "release_date": "2015-10-16", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Eagle Dynamics" + ], + "publishers": [ + "Eagle Dynamics" + ] +} diff --git a/data/game/dc/dcs-m-2000c-red-flag-campaign.json b/data/game/dc/dcs-m-2000c-red-flag-campaign.json new file mode 100644 index 000000000000..93ecff1a7de7 --- /dev/null +++ b/data/game/dc/dcs-m-2000c-red-flag-campaign.json @@ -0,0 +1,15 @@ +{ + "slug": "dcs-m-2000c-red-flag-campaign", + "name": "DCS: M-2000C - Red Flag Campaign", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097571" + ], + "release_date": "2018-07-16", + "platforms": [ + "Microsoft Windows" + ], + "publishers": [ + "Eagle Dynamics" + ] +} diff --git a/data/game/dc/dcs-m-2000c.json b/data/game/dc/dcs-m-2000c.json new file mode 100644 index 000000000000..2f4a09108807 --- /dev/null +++ b/data/game/dc/dcs-m-2000c.json @@ -0,0 +1,15 @@ +{ + "slug": "dcs-m-2000c", + "name": "DCS: M-2000C", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097541" + ], + "release_date": "2017-05-12", + "platforms": [ + "Microsoft Windows" + ], + "publishers": [ + "Eagle Dynamics" + ] +} diff --git a/data/game/dc/dcs-mad-ah-64d-campaign.json b/data/game/dc/dcs-mad-ah-64d-campaign.json new file mode 100644 index 000000000000..f9635f935478 --- /dev/null +++ b/data/game/dc/dcs-mad-ah-64d-campaign.json @@ -0,0 +1,15 @@ +{ + "slug": "dcs-mad-ah-64d-campaign", + "name": "DCS: MAD AH-64D Campaign", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097654" + ], + "release_date": "2023-01-25", + "platforms": [ + "Microsoft Windows" + ], + "publishers": [ + "Eagle Dynamics" + ] +} diff --git a/data/game/dc/dcs-mad-campaign.json b/data/game/dc/dcs-mad-campaign.json new file mode 100644 index 000000000000..79cfdbd05b42 --- /dev/null +++ b/data/game/dc/dcs-mad-campaign.json @@ -0,0 +1,15 @@ +{ + "slug": "dcs-mad-campaign", + "name": "DCS: MAD Campaign", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097635" + ], + "release_date": "2022-03-30", + "platforms": [ + "Microsoft Windows" + ], + "publishers": [ + "Eagle Dynamics" + ] +} diff --git a/data/game/dc/dcs-mad-jf-17-thunder-campaign.json b/data/game/dc/dcs-mad-jf-17-thunder-campaign.json new file mode 100644 index 000000000000..0a6e8a666a0c --- /dev/null +++ b/data/game/dc/dcs-mad-jf-17-thunder-campaign.json @@ -0,0 +1,15 @@ +{ + "slug": "dcs-mad-jf-17-thunder-campaign", + "name": "DCS: MAD JF-17 Thunder Campaign", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097642" + ], + "release_date": "2022-06-24", + "platforms": [ + "Microsoft Windows" + ], + "publishers": [ + "Eagle Dynamics" + ] +} diff --git a/data/game/dc/dcs-marianas.json b/data/game/dc/dcs-marianas.json new file mode 100644 index 000000000000..78498dcef185 --- /dev/null +++ b/data/game/dc/dcs-marianas.json @@ -0,0 +1,18 @@ +{ + "slug": "dcs-marianas", + "name": "DCS: Marianas", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097451" + ], + "release_date": "2021-06-30", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Eagle Dynamics" + ], + "publishers": [ + "Eagle Dynamics" + ] +} diff --git a/data/game/dc/dcs-mb-339.json b/data/game/dc/dcs-mb-339.json new file mode 100644 index 000000000000..f73987bdbb69 --- /dev/null +++ b/data/game/dc/dcs-mb-339.json @@ -0,0 +1,15 @@ +{ + "slug": "dcs-mb-339", + "name": "DCS: MB-339", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097648" + ], + "release_date": "2022-10-28", + "platforms": [ + "Microsoft Windows" + ], + "publishers": [ + "Eagle Dynamics" + ] +} diff --git a/data/game/dc/dcs-mi-24p-hind.json b/data/game/dc/dcs-mi-24p-hind.json new file mode 100644 index 000000000000..5352830dc224 --- /dev/null +++ b/data/game/dc/dcs-mi-24p-hind.json @@ -0,0 +1,18 @@ +{ + "slug": "dcs-mi-24p-hind", + "name": "DCS: Mi-24P HIND", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097450" + ], + "release_date": "2021-06-16", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Eagle Dynamics" + ], + "publishers": [ + "Eagle Dynamics" + ] +} diff --git a/data/game/dc/dcs-mi-8-mtv2-magnificent-eight.json b/data/game/dc/dcs-mi-8-mtv2-magnificent-eight.json new file mode 100644 index 000000000000..68fb453a015c --- /dev/null +++ b/data/game/dc/dcs-mi-8-mtv2-magnificent-eight.json @@ -0,0 +1,18 @@ +{ + "slug": "dcs-mi-8-mtv2-magnificent-eight", + "name": "DCS: Mi-8 MTV2 Magnificent Eight", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097357" + ], + "release_date": "2013-09-19", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Eagle Dynamics" + ], + "publishers": [ + "Eagle Dynamics" + ] +} diff --git a/data/game/dc/dcs-mi-8mtv2-and-ka-50-memory-of-a-hero-campaign.json b/data/game/dc/dcs-mi-8mtv2-and-ka-50-memory-of-a-hero-campaign.json new file mode 100644 index 000000000000..d8f58c7f1748 --- /dev/null +++ b/data/game/dc/dcs-mi-8mtv2-and-ka-50-memory-of-a-hero-campaign.json @@ -0,0 +1,15 @@ +{ + "slug": "dcs-mi-8mtv2-and-ka-50-memory-of-a-hero-campaign", + "name": "DCS: Mi-8MTV2 and Ka-50 Memory of a Hero Campaign", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097573" + ], + "release_date": "2018-09-26", + "platforms": [ + "Microsoft Windows" + ], + "publishers": [ + "Eagle Dynamics" + ] +} diff --git a/data/game/dc/dcs-mi-8mtv2-crew-part-1-campaign.json b/data/game/dc/dcs-mi-8mtv2-crew-part-1-campaign.json new file mode 100644 index 000000000000..ead0be6aaf05 --- /dev/null +++ b/data/game/dc/dcs-mi-8mtv2-crew-part-1-campaign.json @@ -0,0 +1,15 @@ +{ + "slug": "dcs-mi-8mtv2-crew-part-1-campaign", + "name": "DCS: Mi-8MTV2 Crew Part 1 Campaign", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097594" + ], + "release_date": "2020-09-23", + "platforms": [ + "Microsoft Windows" + ], + "publishers": [ + "Eagle Dynamics" + ] +} diff --git a/data/game/dc/dcs-mig-15bis.json b/data/game/dc/dcs-mig-15bis.json new file mode 100644 index 000000000000..d0d50f0a0d1a --- /dev/null +++ b/data/game/dc/dcs-mig-15bis.json @@ -0,0 +1,18 @@ +{ + "slug": "dcs-mig-15bis", + "name": "DCS: MiG-15Bis", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097413" + ], + "release_date": "2015-03-13", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Eagle Dynamics" + ], + "publishers": [ + "Eagle Dynamics" + ] +} diff --git a/data/game/dc/dcs-mig-19p-farmer.json b/data/game/dc/dcs-mig-19p-farmer.json new file mode 100644 index 000000000000..0061a1b2dd7f --- /dev/null +++ b/data/game/dc/dcs-mig-19p-farmer.json @@ -0,0 +1,15 @@ +{ + "slug": "dcs-mig-19p-farmer", + "name": "DCS: MiG-19P Farmer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097576" + ], + "release_date": "2019-04-01", + "platforms": [ + "Microsoft Windows" + ], + "publishers": [ + "Eagle Dynamics" + ] +} diff --git a/data/game/dc/dcs-mig-21bis-battle-of-krasnodar-campaign.json b/data/game/dc/dcs-mig-21bis-battle-of-krasnodar-campaign.json new file mode 100644 index 000000000000..fcc83bd0948d --- /dev/null +++ b/data/game/dc/dcs-mig-21bis-battle-of-krasnodar-campaign.json @@ -0,0 +1,15 @@ +{ + "slug": "dcs-mig-21bis-battle-of-krasnodar-campaign", + "name": "DCS: MiG-21bis Battle of Krasnodar Campaign", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097625" + ], + "release_date": "2021-10-07", + "platforms": [ + "Microsoft Windows" + ], + "publishers": [ + "Eagle Dynamics" + ] +} diff --git a/data/game/dc/dcs-mig-21bis-constant-peg-campaign.json b/data/game/dc/dcs-mig-21bis-constant-peg-campaign.json new file mode 100644 index 000000000000..73f5ace0e94c --- /dev/null +++ b/data/game/dc/dcs-mig-21bis-constant-peg-campaign.json @@ -0,0 +1,15 @@ +{ + "slug": "dcs-mig-21bis-constant-peg-campaign", + "name": "DCS: MiG-21bis Constant Peg Campaign", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097630" + ], + "release_date": "2021-10-07", + "platforms": [ + "Microsoft Windows" + ], + "publishers": [ + "Eagle Dynamics" + ] +} diff --git a/data/game/dc/dcs-mig-21bis.json b/data/game/dc/dcs-mig-21bis.json new file mode 100644 index 000000000000..57e7ca6858f5 --- /dev/null +++ b/data/game/dc/dcs-mig-21bis.json @@ -0,0 +1,15 @@ +{ + "slug": "dcs-mig-21bis", + "name": "DCS: MiG-21Bis", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097537" + ], + "release_date": "2014-10-02", + "platforms": [ + "Microsoft Windows" + ], + "publishers": [ + "Eagle Dynamics" + ] +} diff --git a/data/game/dc/dcs-mirage-f1.json b/data/game/dc/dcs-mirage-f1.json new file mode 100644 index 000000000000..96ce056c280e --- /dev/null +++ b/data/game/dc/dcs-mirage-f1.json @@ -0,0 +1,15 @@ +{ + "slug": "dcs-mirage-f1", + "name": "DCS: Mirage F1", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097647" + ], + "release_date": "2022-07-21", + "platforms": [ + "Microsoft Windows" + ], + "publishers": [ + "Eagle Dynamics" + ] +} diff --git a/data/game/dc/dcs-mosquito-fb-iv-v-for-victory-campaign-reflected-simulations.json b/data/game/dc/dcs-mosquito-fb-iv-v-for-victory-campaign-reflected-simulations.json new file mode 100644 index 000000000000..ca95504f9c1a --- /dev/null +++ b/data/game/dc/dcs-mosquito-fb-iv-v-for-victory-campaign-reflected-simulations.json @@ -0,0 +1,15 @@ +{ + "slug": "dcs-mosquito-fb-iv-v-for-victory-campaign-reflected-simulations", + "name": "DCS: Mosquito FB IV - V for Victory Campaign Reflected Simulations", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097651" + ], + "release_date": "2023-03-10", + "platforms": [ + "Microsoft Windows" + ], + "publishers": [ + "Eagle Dynamics" + ] +} diff --git a/data/game/dc/dcs-mosquito-fb-vi.json b/data/game/dc/dcs-mosquito-fb-vi.json new file mode 100644 index 000000000000..c24d2b38dfc5 --- /dev/null +++ b/data/game/dc/dcs-mosquito-fb-vi.json @@ -0,0 +1,18 @@ +{ + "slug": "dcs-mosquito-fb-vi", + "name": "DCS: Mosquito FB VI", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097455" + ], + "release_date": "2021-09-17", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Eagle Dynamics" + ], + "publishers": [ + "Eagle Dynamics" + ] +} diff --git a/data/game/dc/dcs-nevada-test-and-training-range-map.json b/data/game/dc/dcs-nevada-test-and-training-range-map.json new file mode 100644 index 000000000000..8d9ca032a9b3 --- /dev/null +++ b/data/game/dc/dcs-nevada-test-and-training-range-map.json @@ -0,0 +1,18 @@ +{ + "slug": "dcs-nevada-test-and-training-range-map", + "name": "DCS: NEVADA Test and Training Range Map", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097417" + ], + "release_date": "2017-08-30", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Eagle Dynamics" + ], + "publishers": [ + "Eagle Dynamics" + ] +} diff --git a/data/game/dc/dcs-normandy-1944-map.json b/data/game/dc/dcs-normandy-1944-map.json new file mode 100644 index 000000000000..6c67ed6ad347 --- /dev/null +++ b/data/game/dc/dcs-normandy-1944-map.json @@ -0,0 +1,15 @@ +{ + "slug": "dcs-normandy-1944-map", + "name": "DCS: Normandy 1944 Map", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097553" + ], + "release_date": "2017-11-23", + "platforms": [ + "Microsoft Windows" + ], + "publishers": [ + "Eagle Dynamics" + ] +} diff --git a/data/game/dc/dcs-normandy-2-0-upgrade-from-the-channel.json b/data/game/dc/dcs-normandy-2-0-upgrade-from-the-channel.json new file mode 100644 index 000000000000..1c0e41dc3744 --- /dev/null +++ b/data/game/dc/dcs-normandy-2-0-upgrade-from-the-channel.json @@ -0,0 +1,15 @@ +{ + "slug": "dcs-normandy-2-0-upgrade-from-the-channel", + "name": "DCS: Normandy 2.0 Upgrade from The Channel", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097668" + ], + "release_date": "2023-04-21", + "platforms": [ + "Microsoft Windows" + ], + "publishers": [ + "Eagle Dynamics" + ] +} diff --git a/data/game/dc/dcs-normandy-2-0.json b/data/game/dc/dcs-normandy-2-0.json new file mode 100644 index 000000000000..5cca07b00ae6 --- /dev/null +++ b/data/game/dc/dcs-normandy-2-0.json @@ -0,0 +1,15 @@ +{ + "slug": "dcs-normandy-2-0", + "name": "DCS: Normandy 2.0", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097666" + ], + "release_date": "2023-04-21", + "platforms": [ + "Microsoft Windows" + ], + "publishers": [ + "Eagle Dynamics" + ] +} diff --git a/data/game/dc/dcs-normandy-2-upgrade-from-normandy-1944.json b/data/game/dc/dcs-normandy-2-upgrade-from-normandy-1944.json new file mode 100644 index 000000000000..26158f51f5d5 --- /dev/null +++ b/data/game/dc/dcs-normandy-2-upgrade-from-normandy-1944.json @@ -0,0 +1,15 @@ +{ + "slug": "dcs-normandy-2-upgrade-from-normandy-1944", + "name": "DCS: Normandy 2 Upgrade from Normandy 1944", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097657" + ], + "release_date": "2023-04-21", + "platforms": [ + "Microsoft Windows" + ], + "publishers": [ + "Eagle Dynamics" + ] +} diff --git a/data/game/dc/dcs-ns-430-navigation-system-for-c-101.json b/data/game/dc/dcs-ns-430-navigation-system-for-c-101.json new file mode 100644 index 000000000000..ea8898a36c7a --- /dev/null +++ b/data/game/dc/dcs-ns-430-navigation-system-for-c-101.json @@ -0,0 +1,15 @@ +{ + "slug": "dcs-ns-430-navigation-system-for-c-101", + "name": "DCS: NS 430 Navigation System for C-101СС", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097628" + ], + "release_date": "2021-11-06", + "platforms": [ + "Microsoft Windows" + ], + "publishers": [ + "Eagle Dynamics" + ] +} diff --git a/data/game/dc/dcs-ns-430-navigation-system-for-c-101eb.json b/data/game/dc/dcs-ns-430-navigation-system-for-c-101eb.json new file mode 100644 index 000000000000..07536be4f74a --- /dev/null +++ b/data/game/dc/dcs-ns-430-navigation-system-for-c-101eb.json @@ -0,0 +1,15 @@ +{ + "slug": "dcs-ns-430-navigation-system-for-c-101eb", + "name": "DCS: NS 430 Navigation System for C-101EB", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097627" + ], + "release_date": "2021-11-06", + "platforms": [ + "Microsoft Windows" + ], + "publishers": [ + "Eagle Dynamics" + ] +} diff --git a/data/game/dc/dcs-ns-430-navigation-system-for-l-39.json b/data/game/dc/dcs-ns-430-navigation-system-for-l-39.json new file mode 100644 index 000000000000..f86f698878be --- /dev/null +++ b/data/game/dc/dcs-ns-430-navigation-system-for-l-39.json @@ -0,0 +1,18 @@ +{ + "slug": "dcs-ns-430-navigation-system-for-l-39", + "name": "DCS: NS 430 Navigation System for L-39С", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097452" + ], + "release_date": "2021-11-06", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Eagle Dynamics" + ], + "publishers": [ + "Eagle Dynamics" + ] +} diff --git a/data/game/dc/dcs-ns-430-navigation-system-for-mi-8mtv2.json b/data/game/dc/dcs-ns-430-navigation-system-for-mi-8mtv2.json new file mode 100644 index 000000000000..d7ca87b9324f --- /dev/null +++ b/data/game/dc/dcs-ns-430-navigation-system-for-mi-8mtv2.json @@ -0,0 +1,18 @@ +{ + "slug": "dcs-ns-430-navigation-system-for-mi-8mtv2", + "name": "DCS: NS 430 Navigation System for Mi-8MTV2", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097453" + ], + "release_date": "2021-11-06", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Eagle Dynamics" + ], + "publishers": [ + "Eagle Dynamics" + ] +} diff --git a/data/game/dc/dcs-ns-430-navigation-system-for-sa342-gazelle.json b/data/game/dc/dcs-ns-430-navigation-system-for-sa342-gazelle.json new file mode 100644 index 000000000000..cbb85b4a8f03 --- /dev/null +++ b/data/game/dc/dcs-ns-430-navigation-system-for-sa342-gazelle.json @@ -0,0 +1,18 @@ +{ + "slug": "dcs-ns-430-navigation-system-for-sa342-gazelle", + "name": "DCS: NS 430 Navigation System for SA342 Gazelle", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097461" + ], + "release_date": "2022-01-26", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Eagle Dynamics" + ], + "publishers": [ + "Eagle Dynamics" + ] +} diff --git a/data/game/dc/dcs-ns-430-navigation-system.json b/data/game/dc/dcs-ns-430-navigation-system.json new file mode 100644 index 000000000000..4001bbf32739 --- /dev/null +++ b/data/game/dc/dcs-ns-430-navigation-system.json @@ -0,0 +1,18 @@ +{ + "slug": "dcs-ns-430-navigation-system", + "name": "DCS: NS 430 Navigation System", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097456" + ], + "release_date": "2022-01-19", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Eagle Dynamics" + ], + "publishers": [ + "Eagle Dynamics" + ] +} diff --git a/data/game/dc/dcs-p-47d-thunderbolt.json b/data/game/dc/dcs-p-47d-thunderbolt.json new file mode 100644 index 000000000000..fee126ba95b6 --- /dev/null +++ b/data/game/dc/dcs-p-47d-thunderbolt.json @@ -0,0 +1,18 @@ +{ + "slug": "dcs-p-47d-thunderbolt", + "name": "DCS: P-47D Thunderbolt", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097444" + ], + "release_date": "2020-06-03", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Eagle Dynamics" + ], + "publishers": [ + "Eagle Dynamics" + ] +} diff --git a/data/game/dc/dcs-p-47d-wolfpack-campaign.json b/data/game/dc/dcs-p-47d-wolfpack-campaign.json new file mode 100644 index 000000000000..211941f032a4 --- /dev/null +++ b/data/game/dc/dcs-p-47d-wolfpack-campaign.json @@ -0,0 +1,15 @@ +{ + "slug": "dcs-p-47d-wolfpack-campaign", + "name": "DCS: P-47D Wolfpack Campaign", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097617" + ], + "release_date": "2021-05-12", + "platforms": [ + "Microsoft Windows" + ], + "publishers": [ + "Eagle Dynamics" + ] +} diff --git a/data/game/dc/dcs-p-51d-mustang-blue-nosed-bastards-of-bodney-campaign.json b/data/game/dc/dcs-p-51d-mustang-blue-nosed-bastards-of-bodney-campaign.json new file mode 100644 index 000000000000..d3272fb29461 --- /dev/null +++ b/data/game/dc/dcs-p-51d-mustang-blue-nosed-bastards-of-bodney-campaign.json @@ -0,0 +1,15 @@ +{ + "slug": "dcs-p-51d-mustang-blue-nosed-bastards-of-bodney-campaign", + "name": "DCS: P-51D Mustang Blue Nosed Bastards of Bodney Campaign", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097575" + ], + "release_date": "2019-02-19", + "platforms": [ + "Microsoft Windows" + ], + "publishers": [ + "Eagle Dynamics" + ] +} diff --git a/data/game/dc/dcs-p-51d-mustang-operation-charnwood-campaign.json b/data/game/dc/dcs-p-51d-mustang-operation-charnwood-campaign.json new file mode 100644 index 000000000000..52b503b1e0d4 --- /dev/null +++ b/data/game/dc/dcs-p-51d-mustang-operation-charnwood-campaign.json @@ -0,0 +1,15 @@ +{ + "slug": "dcs-p-51d-mustang-operation-charnwood-campaign", + "name": "DCS: P-51D Mustang - Operation Charnwood Campaign", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097570" + ], + "release_date": "2018-02-20", + "platforms": [ + "Microsoft Windows" + ], + "publishers": [ + "Eagle Dynamics" + ] +} diff --git a/data/game/dc/dcs-p-51d-mustang.json b/data/game/dc/dcs-p-51d-mustang.json new file mode 100644 index 000000000000..53fa05e28f1e --- /dev/null +++ b/data/game/dc/dcs-p-51d-mustang.json @@ -0,0 +1,18 @@ +{ + "slug": "dcs-p-51d-mustang", + "name": "DCS: P-51D Mustang", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097325" + ], + "release_date": "2012-04-29", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Eagle Dynamics" + ], + "publishers": [ + "Eagle Dynamics" + ] +} diff --git a/data/game/dc/dcs-persian-gulf.json b/data/game/dc/dcs-persian-gulf.json new file mode 100644 index 000000000000..1a9e2435d6a8 --- /dev/null +++ b/data/game/dc/dcs-persian-gulf.json @@ -0,0 +1,18 @@ +{ + "slug": "dcs-persian-gulf", + "name": "DCS: Persian Gulf", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097414" + ], + "release_date": "2018-06-01", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Eagle Dynamics" + ], + "publishers": [ + "Eagle Dynamics" + ] +} diff --git a/data/game/dc/dcs-sa342-gazelle.json b/data/game/dc/dcs-sa342-gazelle.json new file mode 100644 index 000000000000..aaeab007eb7c --- /dev/null +++ b/data/game/dc/dcs-sa342-gazelle.json @@ -0,0 +1,15 @@ +{ + "slug": "dcs-sa342-gazelle", + "name": "DCS: SA342 Gazelle", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097543" + ], + "release_date": "2016-05-27", + "platforms": [ + "Microsoft Windows" + ], + "publishers": [ + "Eagle Dynamics" + ] +} diff --git a/data/game/dc/dcs-sinai-map-by-onretech.json b/data/game/dc/dcs-sinai-map-by-onretech.json new file mode 100644 index 000000000000..62d45abae6b5 --- /dev/null +++ b/data/game/dc/dcs-sinai-map-by-onretech.json @@ -0,0 +1,15 @@ +{ + "slug": "dcs-sinai-map-by-onretech", + "name": "DCS: Sinai Map by OnReTech", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097662" + ], + "release_date": "2023-06-08", + "platforms": [ + "Microsoft Windows" + ], + "publishers": [ + "Eagle Dynamics" + ] +} diff --git a/data/game/dc/dcs-south-atlantic.json b/data/game/dc/dcs-south-atlantic.json new file mode 100644 index 000000000000..cea1a8db00c2 --- /dev/null +++ b/data/game/dc/dcs-south-atlantic.json @@ -0,0 +1,15 @@ +{ + "slug": "dcs-south-atlantic", + "name": "DCS: South Atlantic", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097641" + ], + "release_date": "2022-06-08", + "platforms": [ + "Microsoft Windows" + ], + "publishers": [ + "Eagle Dynamics" + ] +} diff --git a/data/game/dc/dcs-spitfire-beware-beware-campaign.json b/data/game/dc/dcs-spitfire-beware-beware-campaign.json new file mode 100644 index 000000000000..89cd5e551d69 --- /dev/null +++ b/data/game/dc/dcs-spitfire-beware-beware-campaign.json @@ -0,0 +1,15 @@ +{ + "slug": "dcs-spitfire-beware-beware-campaign", + "name": "DCS: Spitfire Beware! Beware! Campaign", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097640" + ], + "release_date": "2022-06-24", + "platforms": [ + "Microsoft Windows" + ], + "publishers": [ + "Eagle Dynamics" + ] +} diff --git a/data/game/dc/dcs-spitfire-lf-mk-ix-the-big-show-campaign.json b/data/game/dc/dcs-spitfire-lf-mk-ix-the-big-show-campaign.json new file mode 100644 index 000000000000..c2b4daa75e1b --- /dev/null +++ b/data/game/dc/dcs-spitfire-lf-mk-ix-the-big-show-campaign.json @@ -0,0 +1,15 @@ +{ + "slug": "dcs-spitfire-lf-mk-ix-the-big-show-campaign", + "name": "DCS: Spitfire LF Mk.IX The Big Show Campaign", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097578" + ], + "release_date": "2019-03-27", + "platforms": [ + "Microsoft Windows" + ], + "publishers": [ + "Eagle Dynamics" + ] +} diff --git a/data/game/dc/dcs-spitfire-lf-mk-ix.json b/data/game/dc/dcs-spitfire-lf-mk-ix.json new file mode 100644 index 000000000000..bca64e20e0ce --- /dev/null +++ b/data/game/dc/dcs-spitfire-lf-mk-ix.json @@ -0,0 +1,18 @@ +{ + "slug": "dcs-spitfire-lf-mk-ix", + "name": "DCS: Spitfire LF Mk IX", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097425" + ], + "release_date": "2017-09-22", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Eagle Dynamics" + ], + "publishers": [ + "Eagle Dynamics" + ] +} diff --git a/data/game/dc/dcs-supercarrier.json b/data/game/dc/dcs-supercarrier.json new file mode 100644 index 000000000000..b65d6cd96194 --- /dev/null +++ b/data/game/dc/dcs-supercarrier.json @@ -0,0 +1,18 @@ +{ + "slug": "dcs-supercarrier", + "name": "DCS: Supercarrier", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097446" + ], + "release_date": "2020-05-20", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Eagle Dynamics" + ], + "publishers": [ + "Eagle Dynamics" + ] +} diff --git a/data/game/dc/dcs-syria.json b/data/game/dc/dcs-syria.json new file mode 100644 index 000000000000..12294884fb57 --- /dev/null +++ b/data/game/dc/dcs-syria.json @@ -0,0 +1,18 @@ +{ + "slug": "dcs-syria", + "name": "DCS: Syria", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097442" + ], + "release_date": "2020-08-20", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Eagle Dynamics" + ], + "publishers": [ + "Eagle Dynamics" + ] +} diff --git a/data/game/dc/dcs-the-channel.json b/data/game/dc/dcs-the-channel.json new file mode 100644 index 000000000000..2c1c68900568 --- /dev/null +++ b/data/game/dc/dcs-the-channel.json @@ -0,0 +1,18 @@ +{ + "slug": "dcs-the-channel", + "name": "DCS: The Channel", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097443" + ], + "release_date": "2020-06-04", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Eagle Dynamics" + ], + "publishers": [ + "Eagle Dynamics" + ] +} diff --git a/data/game/dc/dcs-uh-1h-huey-worlds-apart-spring-2025-campaign.json b/data/game/dc/dcs-uh-1h-huey-worlds-apart-spring-2025-campaign.json new file mode 100644 index 000000000000..7b0738711d71 --- /dev/null +++ b/data/game/dc/dcs-uh-1h-huey-worlds-apart-spring-2025-campaign.json @@ -0,0 +1,15 @@ +{ + "slug": "dcs-uh-1h-huey-worlds-apart-spring-2025-campaign", + "name": "DCS: UH-1H Huey - Worlds Apart Spring 2025 Campaign", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097586" + ], + "release_date": "2019-11-22", + "platforms": [ + "Microsoft Windows" + ], + "publishers": [ + "Eagle Dynamics" + ] +} diff --git a/data/game/dc/dcs-uh-1h-huey.json b/data/game/dc/dcs-uh-1h-huey.json new file mode 100644 index 000000000000..927b4a8f737f --- /dev/null +++ b/data/game/dc/dcs-uh-1h-huey.json @@ -0,0 +1,18 @@ +{ + "slug": "dcs-uh-1h-huey", + "name": "DCS: UH-1H Huey", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097337" + ], + "release_date": "2013-04-30", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Eagle Dynamics" + ], + "publishers": [ + "Eagle Dynamics" + ] +} diff --git a/data/game/dc/dcs-uh-1h-paradise-lost-campaign.json b/data/game/dc/dcs-uh-1h-paradise-lost-campaign.json new file mode 100644 index 000000000000..5f1e817e2feb --- /dev/null +++ b/data/game/dc/dcs-uh-1h-paradise-lost-campaign.json @@ -0,0 +1,15 @@ +{ + "slug": "dcs-uh-1h-paradise-lost-campaign", + "name": "DCS: UH-1H Paradise Lost Campaign", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097634" + ], + "release_date": "2022-01-04", + "platforms": [ + "Microsoft Windows" + ], + "publishers": [ + "Eagle Dynamics" + ] +} diff --git a/data/game/dc/dcs-uh-1h-the-huey-last-show-campaign-by-sorelro.json b/data/game/dc/dcs-uh-1h-the-huey-last-show-campaign-by-sorelro.json new file mode 100644 index 000000000000..d1a503147462 --- /dev/null +++ b/data/game/dc/dcs-uh-1h-the-huey-last-show-campaign-by-sorelro.json @@ -0,0 +1,15 @@ +{ + "slug": "dcs-uh-1h-the-huey-last-show-campaign-by-sorelro", + "name": "DCS: UH-1H The Huey Last Show Campaign by SorelRo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097671" + ], + "release_date": "2023-07-24", + "platforms": [ + "Microsoft Windows" + ], + "publishers": [ + "Eagle Dynamics" + ] +} diff --git a/data/game/dc/dcs-world-war-ii-assets-pack.json b/data/game/dc/dcs-world-war-ii-assets-pack.json new file mode 100644 index 000000000000..ebd651e51c97 --- /dev/null +++ b/data/game/dc/dcs-world-war-ii-assets-pack.json @@ -0,0 +1,18 @@ +{ + "slug": "dcs-world-war-ii-assets-pack", + "name": "DCS: World War II Assets Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097430" + ], + "release_date": "2017-11-23", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Eagle Dynamics" + ], + "publishers": [ + "Eagle Dynamics" + ] +} diff --git a/data/game/dc/dcs-yak-52.json b/data/game/dc/dcs-yak-52.json new file mode 100644 index 000000000000..2d04860c5239 --- /dev/null +++ b/data/game/dc/dcs-yak-52.json @@ -0,0 +1,18 @@ +{ + "slug": "dcs-yak-52", + "name": "DCS: Yak-52", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097434" + ], + "release_date": "2018-08-03", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Eagle Dynamics" + ], + "publishers": [ + "Eagle Dynamics" + ] +} diff --git a/data/game/de/de-digitale-metro.json b/data/game/de/de-digitale-metro.json new file mode 100644 index 000000000000..1a1dc22c6a95 --- /dev/null +++ b/data/game/de/de-digitale-metro.json @@ -0,0 +1,8 @@ +{ + "slug": "de-digitale-metro", + "name": "De Digitale Metro", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2185688" + ] +} diff --git a/data/game/de/dead-by-daylight-a-binding-of-kin-chapter.json b/data/game/de/dead-by-daylight-a-binding-of-kin-chapter.json new file mode 100644 index 000000000000..74b47b68e447 --- /dev/null +++ b/data/game/de/dead-by-daylight-a-binding-of-kin-chapter.json @@ -0,0 +1,21 @@ +{ + "slug": "dead-by-daylight-a-binding-of-kin-chapter", + "name": "Dead by Daylight - A Binding of Kin Chapter", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125761009" + ], + "release_date": "2020-12-01", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "survival horror" + ], + "developers": [ + "Behaviour Interactive" + ], + "publishers": [ + "Behaviour Interactive" + ] +} diff --git a/data/game/de/dead-by-daylight-all-kill-chapter.json b/data/game/de/dead-by-daylight-all-kill-chapter.json new file mode 100644 index 000000000000..e641b6005945 --- /dev/null +++ b/data/game/de/dead-by-daylight-all-kill-chapter.json @@ -0,0 +1,21 @@ +{ + "slug": "dead-by-daylight-all-kill-chapter", + "name": "Dead by Daylight - All-Kill Chapter", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125760955" + ], + "release_date": "2021-03-30", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "survival horror" + ], + "developers": [ + "Behaviour Interactive" + ], + "publishers": [ + "Behaviour Interactive" + ] +} diff --git a/data/game/de/dead-by-daylight-bloodstained-sack.json b/data/game/de/dead-by-daylight-bloodstained-sack.json new file mode 100644 index 000000000000..7325ed4ae90b --- /dev/null +++ b/data/game/de/dead-by-daylight-bloodstained-sack.json @@ -0,0 +1,12 @@ +{ + "slug": "dead-by-daylight-bloodstained-sack", + "name": "Dead by Daylight: Bloodstained Sack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q98802595" + ], + "release_date": "2016-11-17", + "platforms": [ + "Microsoft Windows" + ] +} diff --git a/data/game/de/dead-by-daylight-descend-beyond-chapter.json b/data/game/de/dead-by-daylight-descend-beyond-chapter.json new file mode 100644 index 000000000000..658b88774fe9 --- /dev/null +++ b/data/game/de/dead-by-daylight-descend-beyond-chapter.json @@ -0,0 +1,21 @@ +{ + "slug": "dead-by-daylight-descend-beyond-chapter", + "name": "Dead by Daylight - Descend Beyond chapter", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125769048" + ], + "release_date": "2020-09-08", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "survival horror" + ], + "developers": [ + "Behaviour Interactive" + ], + "publishers": [ + "Behaviour Interactive" + ] +} diff --git a/data/game/de/dead-by-daylight-end-transmission-chapter.json b/data/game/de/dead-by-daylight-end-transmission-chapter.json new file mode 100644 index 000000000000..1dc395151d5d --- /dev/null +++ b/data/game/de/dead-by-daylight-end-transmission-chapter.json @@ -0,0 +1,21 @@ +{ + "slug": "dead-by-daylight-end-transmission-chapter", + "name": "Dead by Daylight - End Transmission Chapter", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125569895" + ], + "release_date": "2023-06-13", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "survival horror" + ], + "developers": [ + "Behaviour Interactive" + ], + "publishers": [ + "Behaviour Interactive" + ] +} diff --git a/data/game/de/dead-by-daylight-escape-expansion-pack.json b/data/game/de/dead-by-daylight-escape-expansion-pack.json new file mode 100644 index 000000000000..797a803a623e --- /dev/null +++ b/data/game/de/dead-by-daylight-escape-expansion-pack.json @@ -0,0 +1,21 @@ +{ + "slug": "dead-by-daylight-escape-expansion-pack", + "name": "Dead by Daylight - Escape Expansion Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125760801" + ], + "release_date": "2021-06-15", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "survival horror" + ], + "developers": [ + "Behaviour Interactive" + ], + "publishers": [ + "Behaviour Interactive" + ] +} diff --git a/data/game/de/dead-by-daylight-forged-in-fog-chapter.json b/data/game/de/dead-by-daylight-forged-in-fog-chapter.json new file mode 100644 index 000000000000..2a4fce450f56 --- /dev/null +++ b/data/game/de/dead-by-daylight-forged-in-fog-chapter.json @@ -0,0 +1,21 @@ +{ + "slug": "dead-by-daylight-forged-in-fog-chapter", + "name": "Dead by Daylight - Forged in Fog Chapter", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125570381" + ], + "release_date": "2022-11-22", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "survival horror" + ], + "developers": [ + "Behaviour Interactive" + ], + "publishers": [ + "Behaviour Interactive" + ] +} diff --git a/data/game/de/dead-by-daylight-hellraiser-chapter.json b/data/game/de/dead-by-daylight-hellraiser-chapter.json new file mode 100644 index 000000000000..4e1730bb8e06 --- /dev/null +++ b/data/game/de/dead-by-daylight-hellraiser-chapter.json @@ -0,0 +1,21 @@ +{ + "slug": "dead-by-daylight-hellraiser-chapter", + "name": "Dead by Daylight - Hellraiser chapter", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125760779" + ], + "release_date": "2021-09-07", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "survival horror" + ], + "developers": [ + "Behaviour Interactive" + ], + "publishers": [ + "Behaviour Interactive" + ] +} diff --git a/data/game/de/dead-by-daylight-hour-of-the-witch-chapter.json b/data/game/de/dead-by-daylight-hour-of-the-witch-chapter.json new file mode 100644 index 000000000000..982f475b3c27 --- /dev/null +++ b/data/game/de/dead-by-daylight-hour-of-the-witch-chapter.json @@ -0,0 +1,21 @@ +{ + "slug": "dead-by-daylight-hour-of-the-witch-chapter", + "name": "Dead by Daylight - Hour of the Witch Chapter", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125760775" + ], + "release_date": "2021-10-19", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "survival horror" + ], + "developers": [ + "Behaviour Interactive" + ], + "publishers": [ + "Behaviour Interactive" + ] +} diff --git a/data/game/de/dead-by-daylight-nicolas-cage-chapter-pack.json b/data/game/de/dead-by-daylight-nicolas-cage-chapter-pack.json new file mode 100644 index 000000000000..8b73dd670403 --- /dev/null +++ b/data/game/de/dead-by-daylight-nicolas-cage-chapter-pack.json @@ -0,0 +1,21 @@ +{ + "slug": "dead-by-daylight-nicolas-cage-chapter-pack", + "name": "Dead by Daylight - Nicolas Cage Chapter Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125569713" + ], + "release_date": "2023-07-25", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "survival horror" + ], + "developers": [ + "Behaviour Interactive" + ], + "publishers": [ + "Behaviour Interactive" + ] +} diff --git a/data/game/de/dead-by-daylight-portrait-of-a-murder.json b/data/game/de/dead-by-daylight-portrait-of-a-murder.json new file mode 100644 index 000000000000..2c6944e75804 --- /dev/null +++ b/data/game/de/dead-by-daylight-portrait-of-a-murder.json @@ -0,0 +1,21 @@ +{ + "slug": "dead-by-daylight-portrait-of-a-murder", + "name": "Dead by Daylight - Portrait of a Murder", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125570488" + ], + "release_date": "2021-11-30", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "survival horror" + ], + "developers": [ + "Behaviour Interactive" + ], + "publishers": [ + "Behaviour Interactive" + ] +} diff --git a/data/game/de/dead-by-daylight-resident-evil-chapter.json b/data/game/de/dead-by-daylight-resident-evil-chapter.json new file mode 100644 index 000000000000..5a01537d5444 --- /dev/null +++ b/data/game/de/dead-by-daylight-resident-evil-chapter.json @@ -0,0 +1,21 @@ +{ + "slug": "dead-by-daylight-resident-evil-chapter", + "name": "Dead by Daylight - Resident Evil Chapter", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125760789" + ], + "release_date": "2021-06-15", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "survival horror" + ], + "developers": [ + "Behaviour Interactive" + ], + "publishers": [ + "Behaviour Interactive" + ] +} diff --git a/data/game/de/dead-by-daylight-resident-evil-project-w-chapter.json b/data/game/de/dead-by-daylight-resident-evil-project-w-chapter.json new file mode 100644 index 000000000000..a9f1f0a892ce --- /dev/null +++ b/data/game/de/dead-by-daylight-resident-evil-project-w-chapter.json @@ -0,0 +1,21 @@ +{ + "slug": "dead-by-daylight-resident-evil-project-w-chapter", + "name": "Dead by Daylight - Resident Evil: PROJECT W Chapter", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125570392" + ], + "release_date": "2022-08-30", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "survival horror" + ], + "developers": [ + "Behaviour Interactive" + ], + "publishers": [ + "Behaviour Interactive" + ] +} diff --git a/data/game/de/dead-by-daylight-roots-of-dread-chapter.json b/data/game/de/dead-by-daylight-roots-of-dread-chapter.json new file mode 100644 index 000000000000..ff7062c6677c --- /dev/null +++ b/data/game/de/dead-by-daylight-roots-of-dread-chapter.json @@ -0,0 +1,21 @@ +{ + "slug": "dead-by-daylight-roots-of-dread-chapter", + "name": "Dead by Daylight - Roots of Dread Chapter", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125570424" + ], + "release_date": "2022-06-07", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "survival horror" + ], + "developers": [ + "Behaviour Interactive" + ], + "publishers": [ + "Behaviour Interactive" + ] +} diff --git a/data/game/de/dead-by-daylight-sadako-rising-chapter.json b/data/game/de/dead-by-daylight-sadako-rising-chapter.json new file mode 100644 index 000000000000..e1bc1bc33e0e --- /dev/null +++ b/data/game/de/dead-by-daylight-sadako-rising-chapter.json @@ -0,0 +1,21 @@ +{ + "slug": "dead-by-daylight-sadako-rising-chapter", + "name": "Dead by Daylight - Sadako Rising Chapter", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125570431" + ], + "release_date": "2022-03-08", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "survival horror" + ], + "developers": [ + "Behaviour Interactive" + ], + "publishers": [ + "Behaviour Interactive" + ] +} diff --git a/data/game/de/dead-by-daylight-terror-expansion-pack.json b/data/game/de/dead-by-daylight-terror-expansion-pack.json new file mode 100644 index 000000000000..7fe47d767077 --- /dev/null +++ b/data/game/de/dead-by-daylight-terror-expansion-pack.json @@ -0,0 +1,21 @@ +{ + "slug": "dead-by-daylight-terror-expansion-pack", + "name": "Dead by Daylight - Terror Expansion Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125760940" + ], + "release_date": "2021-06-15", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "survival horror" + ], + "developers": [ + "Behaviour Interactive" + ], + "publishers": [ + "Behaviour Interactive" + ] +} diff --git a/data/game/de/dead-by-daylight-tools-of-torment-chapter.json b/data/game/de/dead-by-daylight-tools-of-torment-chapter.json new file mode 100644 index 000000000000..40c424c31998 --- /dev/null +++ b/data/game/de/dead-by-daylight-tools-of-torment-chapter.json @@ -0,0 +1,21 @@ +{ + "slug": "dead-by-daylight-tools-of-torment-chapter", + "name": "Dead by Daylight - Tools of Torment Chapter", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125570363" + ], + "release_date": "2023-03-07", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "survival horror" + ], + "developers": [ + "Behaviour Interactive" + ], + "publishers": [ + "Behaviour Interactive" + ] +} diff --git a/data/game/de/dead-by-daylight-x-attack-on-titan-armored-pack.json b/data/game/de/dead-by-daylight-x-attack-on-titan-armored-pack.json new file mode 100644 index 000000000000..c74ee933d795 --- /dev/null +++ b/data/game/de/dead-by-daylight-x-attack-on-titan-armored-pack.json @@ -0,0 +1,21 @@ +{ + "slug": "dead-by-daylight-x-attack-on-titan-armored-pack", + "name": "Dead by Daylight x Attack on Titan: Armored Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125569811" + ], + "release_date": "2023-06-19", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "survival horror" + ], + "developers": [ + "Behaviour Interactive" + ], + "publishers": [ + "Behaviour Interactive" + ] +} diff --git a/data/game/de/dead-by-daylight-x-attack-on-titan-war-hammer-pack.json b/data/game/de/dead-by-daylight-x-attack-on-titan-war-hammer-pack.json new file mode 100644 index 000000000000..dd5764a78bf6 --- /dev/null +++ b/data/game/de/dead-by-daylight-x-attack-on-titan-war-hammer-pack.json @@ -0,0 +1,21 @@ +{ + "slug": "dead-by-daylight-x-attack-on-titan-war-hammer-pack", + "name": "Dead by Daylight x Attack on Titan: War Hammer Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125569791" + ], + "release_date": "2023-06-19", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "survival horror" + ], + "developers": [ + "Behaviour Interactive" + ], + "publishers": [ + "Behaviour Interactive" + ] +} diff --git a/data/game/de/dead-cells-fatal-falls.json b/data/game/de/dead-cells-fatal-falls.json new file mode 100644 index 000000000000..4d3b583ee134 --- /dev/null +++ b/data/game/de/dead-cells-fatal-falls.json @@ -0,0 +1,21 @@ +{ + "slug": "dead-cells-fatal-falls", + "name": "Dead Cells: Fatal Falls", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q104793373" + ], + "release_date": "2021-01-26", + "platforms": [ + "PlayStation 4", + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Evil Empire", + "Motion Twin" + ], + "publishers": [ + "Motion Twin" + ] +} diff --git a/data/game/de/dead-cells-q115625161.json b/data/game/de/dead-cells-q115625161.json new file mode 100644 index 000000000000..a239feec2646 --- /dev/null +++ b/data/game/de/dead-cells-q115625161.json @@ -0,0 +1,17 @@ +{ + "slug": "dead-cells-q115625161", + "name": "Dead Cells+", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115625161" + ], + "release_date": "2022-12-02", + "platforms": [ + "iPadOS", + "tvOS", + "iOS" + ], + "developers": [ + "Playdigious" + ] +} diff --git a/data/game/de/dead-cells-rise-of-the-giant.json b/data/game/de/dead-cells-rise-of-the-giant.json new file mode 100644 index 000000000000..6a16696630aa --- /dev/null +++ b/data/game/de/dead-cells-rise-of-the-giant.json @@ -0,0 +1,8 @@ +{ + "slug": "dead-cells-rise-of-the-giant", + "name": "Dead Cells: Rise of the Giant", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q96239094" + ] +} diff --git a/data/game/de/dead-cells-the-bad-seed.json b/data/game/de/dead-cells-the-bad-seed.json new file mode 100644 index 000000000000..710f8f1aa6da --- /dev/null +++ b/data/game/de/dead-cells-the-bad-seed.json @@ -0,0 +1,21 @@ +{ + "slug": "dead-cells-the-bad-seed", + "name": "Dead Cells: The Bad Seed", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q96239073" + ], + "release_date": "2020-02-11", + "platforms": [ + "macOS", + "Microsoft Windows", + "PlayStation 4" + ], + "developers": [ + "Evil Empire", + "Motion Twin" + ], + "publishers": [ + "Motion Twin" + ] +} diff --git a/data/game/de/dead-cells-the-queen-and-the-sea.json b/data/game/de/dead-cells-the-queen-and-the-sea.json new file mode 100644 index 000000000000..7c4edad123ef --- /dev/null +++ b/data/game/de/dead-cells-the-queen-and-the-sea.json @@ -0,0 +1,25 @@ +{ + "slug": "dead-cells-the-queen-and-the-sea", + "name": "Dead Cells: The Queen and the Sea", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109857533" + ], + "release_date": "2022-01-06", + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 4", + "macOS", + "Microsoft Windows" + ], + "genres": [ + "roguelite" + ], + "developers": [ + "Evil Empire", + "Motion Twin" + ], + "publishers": [ + "Motion Twin" + ] +} diff --git a/data/game/de/dead-island-3.json b/data/game/de/dead-island-3.json new file mode 100644 index 000000000000..9d74294ed12a --- /dev/null +++ b/data/game/de/dead-island-3.json @@ -0,0 +1,8 @@ +{ + "slug": "dead-island-3", + "name": "Dead Island 3", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118176561" + ] +} diff --git a/data/game/de/dead-island-epidemic.json b/data/game/de/dead-island-epidemic.json new file mode 100644 index 000000000000..fb8862a7ecf4 --- /dev/null +++ b/data/game/de/dead-island-epidemic.json @@ -0,0 +1,22 @@ +{ + "slug": "dead-island-epidemic", + "name": "Dead Island: Epidemic", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q61475221" + ], + "release_date": "2014-05-01", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "real-time strategy", + "multiplayer online battle arena" + ], + "developers": [ + "Stunlock Studios" + ], + "publishers": [ + "Deep Silver" + ] +} diff --git a/data/game/de/dead-or-alive-6-core-fighters-20-character-set.json b/data/game/de/dead-or-alive-6-core-fighters-20-character-set.json new file mode 100644 index 000000000000..47770fede694 --- /dev/null +++ b/data/game/de/dead-or-alive-6-core-fighters-20-character-set.json @@ -0,0 +1,22 @@ +{ + "slug": "dead-or-alive-6-core-fighters-20-character-set", + "name": "Dead or Alive 6: Core Fighters 20 Character Set", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115312337" + ], + "release_date": "2019-03-15", + "platforms": [ + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "fighting game" + ], + "developers": [ + "Team Ninja" + ], + "publishers": [ + "Koei Tecmo Games" + ] +} diff --git a/data/game/de/dead-or-alive-6-season-pass-1.json b/data/game/de/dead-or-alive-6-season-pass-1.json new file mode 100644 index 000000000000..5f399a8849ea --- /dev/null +++ b/data/game/de/dead-or-alive-6-season-pass-1.json @@ -0,0 +1,22 @@ +{ + "slug": "dead-or-alive-6-season-pass-1", + "name": "Dead or Alive 6 Season Pass 1", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115312818" + ], + "release_date": "2019-03-01", + "platforms": [ + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "fighting game" + ], + "developers": [ + "Team Ninja" + ], + "publishers": [ + "Koei Tecmo Games" + ] +} diff --git a/data/game/de/dead-or-alive-6-season-pass-2.json b/data/game/de/dead-or-alive-6-season-pass-2.json new file mode 100644 index 000000000000..be7a3e91d56b --- /dev/null +++ b/data/game/de/dead-or-alive-6-season-pass-2.json @@ -0,0 +1,22 @@ +{ + "slug": "dead-or-alive-6-season-pass-2", + "name": "Dead or Alive 6 Season Pass 2", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115312924" + ], + "release_date": "2019-07-22", + "platforms": [ + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "fighting game" + ], + "developers": [ + "Team Ninja" + ], + "publishers": [ + "Koei Tecmo Games" + ] +} diff --git a/data/game/de/dead-or-alive-6-season-pass-3.json b/data/game/de/dead-or-alive-6-season-pass-3.json new file mode 100644 index 000000000000..00a29cb44279 --- /dev/null +++ b/data/game/de/dead-or-alive-6-season-pass-3.json @@ -0,0 +1,22 @@ +{ + "slug": "dead-or-alive-6-season-pass-3", + "name": "Dead or Alive 6 Season Pass 3", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115312975" + ], + "release_date": "2019-10-28", + "platforms": [ + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "fighting game" + ], + "developers": [ + "Team Ninja" + ], + "publishers": [ + "Koei Tecmo Games" + ] +} diff --git a/data/game/de/dead-or-alive-6-season-pass-4.json b/data/game/de/dead-or-alive-6-season-pass-4.json new file mode 100644 index 000000000000..a383252c8e5e --- /dev/null +++ b/data/game/de/dead-or-alive-6-season-pass-4.json @@ -0,0 +1,22 @@ +{ + "slug": "dead-or-alive-6-season-pass-4", + "name": "Dead or Alive 6 Season Pass 4", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115313151" + ], + "release_date": "2020-01-20", + "platforms": [ + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "fighting game" + ], + "developers": [ + "Team Ninja" + ], + "publishers": [ + "Koei Tecmo Games" + ] +} diff --git a/data/game/de/dead-or-alive-6-story-unlock-key.json b/data/game/de/dead-or-alive-6-story-unlock-key.json new file mode 100644 index 000000000000..5e2098073da2 --- /dev/null +++ b/data/game/de/dead-or-alive-6-story-unlock-key.json @@ -0,0 +1,22 @@ +{ + "slug": "dead-or-alive-6-story-unlock-key", + "name": "Dead or Alive 6: Story Unlock Key", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115312697" + ], + "release_date": "2019-03-15", + "platforms": [ + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "fighting game" + ], + "developers": [ + "Team Ninja" + ], + "publishers": [ + "Koei Tecmo Games" + ] +} diff --git a/data/game/de/dead-or-alive-code-chronos.json b/data/game/de/dead-or-alive-code-chronos.json new file mode 100644 index 000000000000..eb66677f0d94 --- /dev/null +++ b/data/game/de/dead-or-alive-code-chronos.json @@ -0,0 +1,17 @@ +{ + "slug": "dead-or-alive-code-chronos", + "name": "Dead or Alive: Code Chronos", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5245507" + ], + "genres": [ + "fighting game" + ], + "developers": [ + "Team Ninja" + ], + "publishers": [ + "Tecmo" + ] +} diff --git a/data/game/de/dead-or-alive-new-project.json b/data/game/de/dead-or-alive-new-project.json new file mode 100644 index 000000000000..1ad06f21174a --- /dev/null +++ b/data/game/de/dead-or-alive-new-project.json @@ -0,0 +1,20 @@ +{ + "slug": "dead-or-alive-new-project", + "name": "Dead or Alive New Project", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138242017" + ], + "platforms": [ + "PlayStation 5" + ], + "genres": [ + "3D fighting game" + ], + "developers": [ + "Team Ninja" + ], + "publishers": [ + "Koei Tecmo Games" + ] +} diff --git a/data/game/de/dead-rails.json b/data/game/de/dead-rails.json new file mode 100644 index 000000000000..474081ea1283 --- /dev/null +++ b/data/game/de/dead-rails.json @@ -0,0 +1,16 @@ +{ + "slug": "dead-rails", + "name": "Dead Rails", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134732937" + ], + "release_date": "2025-01-01", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "adventure video game", + "survival game" + ] +} diff --git a/data/game/de/dead-rising-triple-bundle-pack.json b/data/game/de/dead-rising-triple-bundle-pack.json new file mode 100644 index 000000000000..a299b56e5bd4 --- /dev/null +++ b/data/game/de/dead-rising-triple-bundle-pack.json @@ -0,0 +1,18 @@ +{ + "slug": "dead-rising-triple-bundle-pack", + "name": "Dead Rising Triple Bundle Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q92203721" + ], + "release_date": "2016-09-13", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Capcom" + ], + "publishers": [ + "Capcom" + ] +} diff --git a/data/game/de/dead-to-rights-retribution.json b/data/game/de/dead-to-rights-retribution.json new file mode 100644 index 000000000000..daf3b1ef7852 --- /dev/null +++ b/data/game/de/dead-to-rights-retribution.json @@ -0,0 +1,22 @@ +{ + "slug": "dead-to-rights-retribution", + "name": "Dead to Rights: Retribution", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5245520" + ], + "release_date": "2010-04-01", + "platforms": [ + "PlayStation 3" + ], + "genres": [ + "action game", + "third-person shooter" + ], + "developers": [ + "Volatile Games" + ], + "publishers": [ + "Bandai Namco Entertainment" + ] +} diff --git a/data/game/de/deadcraft-deluxe-edition.json b/data/game/de/deadcraft-deluxe-edition.json new file mode 100644 index 000000000000..c2cf313ada00 --- /dev/null +++ b/data/game/de/deadcraft-deluxe-edition.json @@ -0,0 +1,18 @@ +{ + "slug": "deadcraft-deluxe-edition", + "name": "Deadcraft Deluxe Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112925991" + ], + "release_date": "2022-05-19", + "platforms": [ + "Xbox Series X and Series S" + ], + "developers": [ + "Marvelous" + ], + "publishers": [ + "Marvelous" + ] +} diff --git a/data/game/de/deathsmiles-i-ii.json b/data/game/de/deathsmiles-i-ii.json new file mode 100644 index 000000000000..612b6a001a76 --- /dev/null +++ b/data/game/de/deathsmiles-i-ii.json @@ -0,0 +1,11 @@ +{ + "slug": "deathsmiles-i-ii", + "name": "Deathsmiles I & II", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137362876" + ], + "genres": [ + "horizontally scrolling shooter" + ] +} diff --git a/data/game/de/decision-at-djerba.json b/data/game/de/decision-at-djerba.json new file mode 100644 index 000000000000..645687d0a8a5 --- /dev/null +++ b/data/game/de/decision-at-djerba.json @@ -0,0 +1,12 @@ +{ + "slug": "decision-at-djerba", + "name": "Decision at Djerba", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134996103" + ], + "release_date": "1984-01-01", + "publishers": [ + "Fantasy Games Unlimited" + ] +} diff --git a/data/game/de/deck-of-ashes-complete-edition.json b/data/game/de/deck-of-ashes-complete-edition.json new file mode 100644 index 000000000000..a19c8eea5de4 --- /dev/null +++ b/data/game/de/deck-of-ashes-complete-edition.json @@ -0,0 +1,18 @@ +{ + "slug": "deck-of-ashes-complete-edition", + "name": "Deck of Ashes: Complete Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111845209" + ], + "release_date": "2022-04-21", + "platforms": [ + "Xbox Series X and Series S" + ], + "developers": [ + "AY Games" + ], + "publishers": [ + "Buka Entertainment" + ] +} diff --git a/data/game/de/deep-rock-galactic-dark-future-pack.json b/data/game/de/deep-rock-galactic-dark-future-pack.json new file mode 100644 index 000000000000..0beae09d4b55 --- /dev/null +++ b/data/game/de/deep-rock-galactic-dark-future-pack.json @@ -0,0 +1,18 @@ +{ + "slug": "deep-rock-galactic-dark-future-pack", + "name": "Deep Rock Galactic - Dark Future Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113179275" + ], + "release_date": "2020-05-13", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Ghost Ship Games" + ], + "publishers": [ + "Coffee Stain Studios" + ] +} diff --git a/data/game/de/deep-rock-galactic-dawn-of-the-dread-pack.json b/data/game/de/deep-rock-galactic-dawn-of-the-dread-pack.json new file mode 100644 index 000000000000..2b21b55e558e --- /dev/null +++ b/data/game/de/deep-rock-galactic-dawn-of-the-dread-pack.json @@ -0,0 +1,18 @@ +{ + "slug": "deep-rock-galactic-dawn-of-the-dread-pack", + "name": "Deep Rock Galactic - Dawn of the Dread Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113179345" + ], + "release_date": "2021-02-04", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Ghost Ship Games" + ], + "publishers": [ + "Coffee Stain Studios" + ] +} diff --git a/data/game/de/deep-rock-galactic-megacorp-pack.json b/data/game/de/deep-rock-galactic-megacorp-pack.json new file mode 100644 index 000000000000..cc381fce3207 --- /dev/null +++ b/data/game/de/deep-rock-galactic-megacorp-pack.json @@ -0,0 +1,18 @@ +{ + "slug": "deep-rock-galactic-megacorp-pack", + "name": "Deep Rock Galactic - MegaCorp Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113179295" + ], + "release_date": "2020-05-13", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Ghost Ship Games" + ], + "publishers": [ + "Coffee Stain Studios" + ] +} diff --git a/data/game/de/deep-rock-galactic-rival-tech-pack.json b/data/game/de/deep-rock-galactic-rival-tech-pack.json new file mode 100644 index 000000000000..0370780364a3 --- /dev/null +++ b/data/game/de/deep-rock-galactic-rival-tech-pack.json @@ -0,0 +1,18 @@ +{ + "slug": "deep-rock-galactic-rival-tech-pack", + "name": "Deep Rock Galactic - Rival Tech Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113179356" + ], + "release_date": "2021-11-04", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Ghost Ship Games" + ], + "publishers": [ + "Coffee Stain Studios" + ] +} diff --git a/data/game/de/deep-rock-galactic-robot-rebellion-pack.json b/data/game/de/deep-rock-galactic-robot-rebellion-pack.json new file mode 100644 index 000000000000..ac108b56252b --- /dev/null +++ b/data/game/de/deep-rock-galactic-robot-rebellion-pack.json @@ -0,0 +1,18 @@ +{ + "slug": "deep-rock-galactic-robot-rebellion-pack", + "name": "Deep Rock Galactic - Robot Rebellion Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113179364" + ], + "release_date": "2022-04-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Ghost Ship Games" + ], + "publishers": [ + "Coffee Stain Studios" + ] +} diff --git a/data/game/de/deep-rock-galactic-roughneck-pack.json b/data/game/de/deep-rock-galactic-roughneck-pack.json new file mode 100644 index 000000000000..c7b31b011412 --- /dev/null +++ b/data/game/de/deep-rock-galactic-roughneck-pack.json @@ -0,0 +1,18 @@ +{ + "slug": "deep-rock-galactic-roughneck-pack", + "name": "Deep Rock Galactic - Roughneck Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113179326" + ], + "release_date": "2020-10-22", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Ghost Ship Games" + ], + "publishers": [ + "Coffee Stain Studios" + ] +} diff --git a/data/game/de/deep-sleep-trilogy.json b/data/game/de/deep-sleep-trilogy.json new file mode 100644 index 000000000000..5502b09f403a --- /dev/null +++ b/data/game/de/deep-sleep-trilogy.json @@ -0,0 +1,22 @@ +{ + "slug": "deep-sleep-trilogy", + "name": "Deep Sleep Trilogy", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q101601186" + ], + "release_date": "2019-10-25", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "horror video game", + "point-and-click adventure" + ], + "developers": [ + "Scriptwelder Studio" + ], + "publishers": [ + "Armor Games Studios" + ] +} diff --git a/data/game/de/deep-space-waifu-academy.json b/data/game/de/deep-space-waifu-academy.json new file mode 100644 index 000000000000..a46cccfb72cc --- /dev/null +++ b/data/game/de/deep-space-waifu-academy.json @@ -0,0 +1,8 @@ +{ + "slug": "deep-space-waifu-academy", + "name": "DEEP SPACE WAIFU: ACADEMY", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q96247219" + ] +} diff --git a/data/game/de/deepwoken.json b/data/game/de/deepwoken.json new file mode 100644 index 000000000000..ce7440364912 --- /dev/null +++ b/data/game/de/deepwoken.json @@ -0,0 +1,12 @@ +{ + "slug": "deepwoken", + "name": "Deepwoken", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126958222" + ], + "release_date": "2019-10-12", + "genres": [ + "role-playing video game" + ] +} diff --git a/data/game/de/deepzengo.json b/data/game/de/deepzengo.json new file mode 100644 index 000000000000..854eb717ca84 --- /dev/null +++ b/data/game/de/deepzengo.json @@ -0,0 +1,8 @@ +{ + "slug": "deepzengo", + "name": "DeepZenGo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28416196" + ] +} diff --git a/data/game/de/defcon-demo.json b/data/game/de/defcon-demo.json new file mode 100644 index 000000000000..89097ddeb5a8 --- /dev/null +++ b/data/game/de/defcon-demo.json @@ -0,0 +1,23 @@ +{ + "slug": "defcon-demo", + "name": "DEFCON Demo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122705280" + ], + "release_date": "2006-09-29", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "real-time strategy", + "wargame", + "tactical role-playing game" + ], + "developers": [ + "Introversion Software" + ], + "publishers": [ + "Introversion Software" + ] +} diff --git a/data/game/de/defense-grid-containment-dlc.json b/data/game/de/defense-grid-containment-dlc.json new file mode 100644 index 000000000000..31bc798cba31 --- /dev/null +++ b/data/game/de/defense-grid-containment-dlc.json @@ -0,0 +1,18 @@ +{ + "slug": "defense-grid-containment-dlc", + "name": "Defense Grid: Containment DLC", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116896954" + ], + "release_date": "2013-01-23", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Hidden Path Entertainment" + ], + "publishers": [ + "Hidden Path Entertainment" + ] +} diff --git a/data/game/de/defense-grid-resurgence-map-pack-1.json b/data/game/de/defense-grid-resurgence-map-pack-1.json new file mode 100644 index 000000000000..a29eff581e19 --- /dev/null +++ b/data/game/de/defense-grid-resurgence-map-pack-1.json @@ -0,0 +1,18 @@ +{ + "slug": "defense-grid-resurgence-map-pack-1", + "name": "Defense Grid: Resurgence Map Pack 1", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116896957" + ], + "release_date": "2010-06-02", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Hidden Path Entertainment" + ], + "publishers": [ + "Hidden Path Entertainment" + ] +} diff --git a/data/game/de/defense-grid-resurgence-map-pack-2.json b/data/game/de/defense-grid-resurgence-map-pack-2.json new file mode 100644 index 000000000000..119ee68608b8 --- /dev/null +++ b/data/game/de/defense-grid-resurgence-map-pack-2.json @@ -0,0 +1,18 @@ +{ + "slug": "defense-grid-resurgence-map-pack-2", + "name": "Defense Grid: Resurgence Map Pack 2", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116896959" + ], + "release_date": "2010-06-09", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Hidden Path Entertainment" + ], + "publishers": [ + "Hidden Path Entertainment" + ] +} diff --git a/data/game/de/defense-grid-resurgence-map-pack-3.json b/data/game/de/defense-grid-resurgence-map-pack-3.json new file mode 100644 index 000000000000..9e7f594d8584 --- /dev/null +++ b/data/game/de/defense-grid-resurgence-map-pack-3.json @@ -0,0 +1,18 @@ +{ + "slug": "defense-grid-resurgence-map-pack-3", + "name": "Defense Grid: Resurgence Map Pack 3", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116896961" + ], + "release_date": "2010-06-16", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Hidden Path Entertainment" + ], + "publishers": [ + "Hidden Path Entertainment" + ] +} diff --git a/data/game/de/defense-grid-resurgence-map-pack-4.json b/data/game/de/defense-grid-resurgence-map-pack-4.json new file mode 100644 index 000000000000..407c3da459da --- /dev/null +++ b/data/game/de/defense-grid-resurgence-map-pack-4.json @@ -0,0 +1,18 @@ +{ + "slug": "defense-grid-resurgence-map-pack-4", + "name": "Defense Grid: Resurgence Map Pack 4", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116896962" + ], + "release_date": "2010-06-23", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Hidden Path Entertainment" + ], + "publishers": [ + "Hidden Path Entertainment" + ] +} diff --git a/data/game/de/defense-grid-the-awakening-you-monster-dlc.json b/data/game/de/defense-grid-the-awakening-you-monster-dlc.json new file mode 100644 index 000000000000..fd664bbfe4ff --- /dev/null +++ b/data/game/de/defense-grid-the-awakening-you-monster-dlc.json @@ -0,0 +1,18 @@ +{ + "slug": "defense-grid-the-awakening-you-monster-dlc", + "name": "Defense Grid: The Awakening - You Monster DLC", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116896956" + ], + "release_date": "2011-12-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Hidden Path Entertainment" + ], + "publishers": [ + "Hidden Path Entertainment" + ] +} diff --git a/data/game/de/dekrim.json b/data/game/de/dekrim.json new file mode 100644 index 000000000000..c52a082d6266 --- /dev/null +++ b/data/game/de/dekrim.json @@ -0,0 +1,12 @@ +{ + "slug": "dekrim", + "name": "Dekrim", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10467801" + ], + "release_date": "2002-01-01", + "genres": [ + "massively multiplayer online game" + ] +} diff --git a/data/game/de/delicious-miracle-of-life-q123295209.json b/data/game/de/delicious-miracle-of-life-q123295209.json new file mode 100644 index 000000000000..cf401770b533 --- /dev/null +++ b/data/game/de/delicious-miracle-of-life-q123295209.json @@ -0,0 +1,16 @@ +{ + "slug": "delicious-miracle-of-life-q123295209", + "name": "Delicious - Miracle of Life+", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123295209" + ], + "release_date": "2023-11-24", + "platforms": [ + "iPadOS", + "iOS" + ], + "developers": [ + "GameHouse" + ] +} diff --git a/data/game/de/delphidoom.json b/data/game/de/delphidoom.json new file mode 100644 index 000000000000..7b058062a88e --- /dev/null +++ b/data/game/de/delphidoom.json @@ -0,0 +1,8 @@ +{ + "slug": "delphidoom", + "name": "DelphiDoom", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q67221145" + ] +} diff --git a/data/game/de/delta-force-black-hawk-down-team-sabre.json b/data/game/de/delta-force-black-hawk-down-team-sabre.json new file mode 100644 index 000000000000..585747f57b8e --- /dev/null +++ b/data/game/de/delta-force-black-hawk-down-team-sabre.json @@ -0,0 +1,18 @@ +{ + "slug": "delta-force-black-hawk-down-team-sabre", + "name": "Delta Force: Black Hawk Down – Team Sabre", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1995800" + ], + "release_date": "2004-01-20", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter" + ], + "developers": [ + "Ritual Entertainment" + ] +} diff --git a/data/game/de/delta-force-bootcamp.json b/data/game/de/delta-force-bootcamp.json new file mode 100644 index 000000000000..e1ce68bf64c3 --- /dev/null +++ b/data/game/de/delta-force-bootcamp.json @@ -0,0 +1,11 @@ +{ + "slug": "delta-force-bootcamp", + "name": "Delta Force Bootcamp", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107528105" + ], + "platforms": [ + "Microsoft Windows" + ] +} diff --git a/data/game/de/delta-force-q126187152.json b/data/game/de/delta-force-q126187152.json new file mode 100644 index 000000000000..ceaf0144cd8a --- /dev/null +++ b/data/game/de/delta-force-q126187152.json @@ -0,0 +1,9 @@ +{ + "slug": "delta-force-q126187152", + "name": "Delta Force", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126187152" + ], + "release_date": "1992-01-01" +} diff --git a/data/game/de/delta-force-trilogy.json b/data/game/de/delta-force-trilogy.json new file mode 100644 index 000000000000..f3e1aae0f391 --- /dev/null +++ b/data/game/de/delta-force-trilogy.json @@ -0,0 +1,11 @@ +{ + "slug": "delta-force-trilogy", + "name": "Delta Force Trilogy", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107528101" + ], + "platforms": [ + "Microsoft Windows" + ] +} diff --git a/data/game/de/delta-rising.json b/data/game/de/delta-rising.json new file mode 100644 index 000000000000..01963c873a79 --- /dev/null +++ b/data/game/de/delta-rising.json @@ -0,0 +1,9 @@ +{ + "slug": "delta-rising", + "name": "Delta Rising", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q57973876" + ], + "release_date": "2014-09-12" +} diff --git a/data/game/de/deltarune-chapter-1-the-beginning.json b/data/game/de/deltarune-chapter-1-the-beginning.json new file mode 100644 index 000000000000..37aa34b53f24 --- /dev/null +++ b/data/game/de/deltarune-chapter-1-the-beginning.json @@ -0,0 +1,8 @@ +{ + "slug": "deltarune-chapter-1-the-beginning", + "name": "Deltarune: Chapter 1 — The Beginning", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116425243" + ] +} diff --git a/data/game/de/deltarune-chapter-2-a-cyber-s-world.json b/data/game/de/deltarune-chapter-2-a-cyber-s-world.json new file mode 100644 index 000000000000..dcc84236211e --- /dev/null +++ b/data/game/de/deltarune-chapter-2-a-cyber-s-world.json @@ -0,0 +1,18 @@ +{ + "slug": "deltarune-chapter-2-a-cyber-s-world", + "name": "Deltarune: Chapter 2 — A Cyber's World", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116425246" + ], + "release_date": "2021-09-17", + "genres": [ + "role-playing video game" + ], + "developers": [ + "Toby Fox" + ], + "publishers": [ + "Toby Fox" + ] +} diff --git a/data/game/de/democracy-3-extremism.json b/data/game/de/democracy-3-extremism.json new file mode 100644 index 000000000000..dd1e7364b598 --- /dev/null +++ b/data/game/de/democracy-3-extremism.json @@ -0,0 +1,22 @@ +{ + "slug": "democracy-3-extremism", + "name": "Democracy 3: Extremism", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q68215239" + ], + "release_date": "2014-05-13", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "government simulation game" + ], + "developers": [ + "Positech Games" + ], + "publishers": [ + "Positech Games" + ] +} diff --git a/data/game/de/deponia-the-complete-journey.json b/data/game/de/deponia-the-complete-journey.json new file mode 100644 index 000000000000..0c7896dac6cd --- /dev/null +++ b/data/game/de/deponia-the-complete-journey.json @@ -0,0 +1,22 @@ +{ + "slug": "deponia-the-complete-journey", + "name": "Deponia: The Complete Journey", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116303968" + ], + "release_date": "2014-07-08", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "adventure video game" + ], + "developers": [ + "Daedalic Entertainment" + ], + "publishers": [ + "Daedalic Entertainment" + ] +} diff --git a/data/game/de/der-clou-profidiskette.json b/data/game/de/der-clou-profidiskette.json new file mode 100644 index 000000000000..504d39a99121 --- /dev/null +++ b/data/game/de/der-clou-profidiskette.json @@ -0,0 +1,8 @@ +{ + "slug": "der-clou-profidiskette", + "name": "Der Clou!: Profidiskette", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q119846887" + ] +} diff --git a/data/game/de/derdiedas.json b/data/game/de/derdiedas.json new file mode 100644 index 000000000000..2ac4dda2fd1f --- /dev/null +++ b/data/game/de/derdiedas.json @@ -0,0 +1,8 @@ +{ + "slug": "derdiedas", + "name": "DerDieDas", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63379596" + ] +} diff --git a/data/game/de/descent-freespace-silent-threat.json b/data/game/de/descent-freespace-silent-threat.json new file mode 100644 index 000000000000..32ec8efc57c2 --- /dev/null +++ b/data/game/de/descent-freespace-silent-threat.json @@ -0,0 +1,11 @@ +{ + "slug": "descent-freespace-silent-threat", + "name": "Descent: Freespace - Silent Threat", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q129196559" + ], + "platforms": [ + "Classic Mac OS" + ] +} diff --git a/data/game/de/descent-levels-of-the-world.json b/data/game/de/descent-levels-of-the-world.json new file mode 100644 index 000000000000..41fe42328067 --- /dev/null +++ b/data/game/de/descent-levels-of-the-world.json @@ -0,0 +1,11 @@ +{ + "slug": "descent-levels-of-the-world", + "name": "Descent: Levels of the World", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126942258" + ], + "publishers": [ + "Interplay Entertainment" + ] +} diff --git a/data/game/de/desert-combat.json b/data/game/de/desert-combat.json new file mode 100644 index 000000000000..71920915d82b --- /dev/null +++ b/data/game/de/desert-combat.json @@ -0,0 +1,22 @@ +{ + "slug": "desert-combat", + "name": "Desert Combat", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q32225" + ], + "release_date": "2004-02-06", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "first-person shooter" + ], + "developers": [ + "Trauma Studios" + ], + "publishers": [ + "Trauma Studios" + ] +} diff --git a/data/game/de/destiny-2-beyond-light.json b/data/game/de/destiny-2-beyond-light.json new file mode 100644 index 000000000000..468f7d95a519 --- /dev/null +++ b/data/game/de/destiny-2-beyond-light.json @@ -0,0 +1,18 @@ +{ + "slug": "destiny-2-beyond-light", + "name": "Destiny 2: Beyond Light", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q97930215" + ], + "release_date": "2020-11-10", + "genres": [ + "science fiction video game" + ], + "developers": [ + "Bungie" + ], + "publishers": [ + "Bungie" + ] +} diff --git a/data/game/de/destiny-2-forsaken.json b/data/game/de/destiny-2-forsaken.json new file mode 100644 index 000000000000..2f28f37a36b8 --- /dev/null +++ b/data/game/de/destiny-2-forsaken.json @@ -0,0 +1,24 @@ +{ + "slug": "destiny-2-forsaken", + "name": "Destiny 2: Forsaken", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q58447640" + ], + "release_date": "2018-09-04", + "platforms": [ + "PlayStation 4", + "personal computer" + ], + "genres": [ + "first-person shooter", + "action role-playing game", + "science fiction video game" + ], + "developers": [ + "Bungie" + ], + "publishers": [ + "Activision" + ] +} diff --git a/data/game/de/destiny-2-lightfall.json b/data/game/de/destiny-2-lightfall.json new file mode 100644 index 000000000000..404f2fb49182 --- /dev/null +++ b/data/game/de/destiny-2-lightfall.json @@ -0,0 +1,14 @@ +{ + "slug": "destiny-2-lightfall", + "name": "Destiny 2: Lightfall", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116483246" + ], + "developers": [ + "Bungie" + ], + "publishers": [ + "Bungie" + ] +} diff --git a/data/game/de/destiny-2-renegades.json b/data/game/de/destiny-2-renegades.json new file mode 100644 index 000000000000..0c5deb342664 --- /dev/null +++ b/data/game/de/destiny-2-renegades.json @@ -0,0 +1,8 @@ +{ + "slug": "destiny-2-renegades", + "name": "Destiny 2: Renegades", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137216280" + ] +} diff --git a/data/game/de/destiny-2-shadowkeep.json b/data/game/de/destiny-2-shadowkeep.json new file mode 100644 index 000000000000..34650857a1da --- /dev/null +++ b/data/game/de/destiny-2-shadowkeep.json @@ -0,0 +1,24 @@ +{ + "slug": "destiny-2-shadowkeep", + "name": "Destiny 2: Shadowkeep", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q65040618" + ], + "release_date": "2019-10-01", + "platforms": [ + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "science fiction video game", + "post-apocalyptic video game" + ], + "developers": [ + "Bungie" + ], + "publishers": [ + "Bungie" + ] +} diff --git a/data/game/de/destiny-2-the-final-shape.json b/data/game/de/destiny-2-the-final-shape.json new file mode 100644 index 000000000000..f233a8fe93bd --- /dev/null +++ b/data/game/de/destiny-2-the-final-shape.json @@ -0,0 +1,25 @@ +{ + "slug": "destiny-2-the-final-shape", + "name": "Destiny 2: The Final Shape", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118645681" + ], + "release_date": "2024-06-04", + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 5", + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "role-playing video game" + ], + "developers": [ + "Bungie" + ], + "publishers": [ + "Bungie" + ] +} diff --git a/data/game/de/destiny-2-the-witch-queen.json b/data/game/de/destiny-2-the-witch-queen.json new file mode 100644 index 000000000000..4522c7e3a8ae --- /dev/null +++ b/data/game/de/destiny-2-the-witch-queen.json @@ -0,0 +1,22 @@ +{ + "slug": "destiny-2-the-witch-queen", + "name": "Destiny 2: The Witch Queen", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108532561" + ], + "release_date": "2022-02-22", + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 5", + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "action role-playing game" + ], + "developers": [ + "Bungie" + ] +} diff --git a/data/game/de/destiny-post-release-content.json b/data/game/de/destiny-post-release-content.json new file mode 100644 index 000000000000..5c0fbdf8881c --- /dev/null +++ b/data/game/de/destiny-post-release-content.json @@ -0,0 +1,12 @@ +{ + "slug": "destiny-post-release-content", + "name": "Destiny post-release content", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22682093" + ], + "genres": [ + "science fiction video game", + "post-apocalyptic video game" + ] +} diff --git a/data/game/de/destiny-rise-of-iron.json b/data/game/de/destiny-rise-of-iron.json new file mode 100644 index 000000000000..f1d1dcf93a18 --- /dev/null +++ b/data/game/de/destiny-rise-of-iron.json @@ -0,0 +1,23 @@ +{ + "slug": "destiny-rise-of-iron", + "name": "Destiny: Rise of Iron", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q24952170" + ], + "release_date": "2016-09-20", + "platforms": [ + "PlayStation 4" + ], + "genres": [ + "first-person shooter", + "action role-playing game", + "science fiction video game" + ], + "developers": [ + "Bungie" + ], + "publishers": [ + "Activision" + ] +} diff --git a/data/game/de/destiny-sharefactory-theme.json b/data/game/de/destiny-sharefactory-theme.json new file mode 100644 index 000000000000..061c693ba14c --- /dev/null +++ b/data/game/de/destiny-sharefactory-theme.json @@ -0,0 +1,18 @@ +{ + "slug": "destiny-sharefactory-theme", + "name": "Destiny SHAREfactory Theme", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q61467755" + ], + "release_date": "2015-02-10", + "platforms": [ + "PlayStation 4" + ], + "developers": [ + "Bungie" + ], + "publishers": [ + "Activision" + ] +} diff --git a/data/game/de/destiny-the-taken-king.json b/data/game/de/destiny-the-taken-king.json new file mode 100644 index 000000000000..a7efab065337 --- /dev/null +++ b/data/game/de/destiny-the-taken-king.json @@ -0,0 +1,21 @@ +{ + "slug": "destiny-the-taken-king", + "name": "Destiny: The Taken King", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q20992360" + ], + "release_date": "2015-09-15", + "genres": [ + "first-person shooter", + "action role-playing game", + "science fiction video game", + "post-apocalyptic video game" + ], + "developers": [ + "Bungie" + ], + "publishers": [ + "Activision" + ] +} diff --git a/data/game/de/destroy-all-humans-2-reprobed-single-player.json b/data/game/de/destroy-all-humans-2-reprobed-single-player.json new file mode 100644 index 000000000000..cc1b560e2705 --- /dev/null +++ b/data/game/de/destroy-all-humans-2-reprobed-single-player.json @@ -0,0 +1,22 @@ +{ + "slug": "destroy-all-humans-2-reprobed-single-player", + "name": "Destroy All Humans 2 – Reprobed: Single Player", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117648010" + ], + "release_date": "2023-06-27", + "platforms": [ + "PlayStation 4" + ], + "genres": [ + "action-adventure game", + "third-person shooter" + ], + "developers": [ + "Black Forest Games" + ], + "publishers": [ + "THQ Nordic" + ] +} diff --git a/data/game/de/detective-opera-milky-holmes-td-disappeared-7-and-a-miracle-song.json b/data/game/de/detective-opera-milky-holmes-td-disappeared-7-and-a-miracle-song.json new file mode 100644 index 000000000000..73a8ebf7bdae --- /dev/null +++ b/data/game/de/detective-opera-milky-holmes-td-disappeared-7-and-a-miracle-song.json @@ -0,0 +1,8 @@ +{ + "slug": "detective-opera-milky-holmes-td-disappeared-7-and-a-miracle-song", + "name": "Detective Opera Milky Holmes TD Disappeared 7 and a miracle song", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28777544" + ] +} diff --git a/data/game/de/detroit-become-human-digital-deluxe-edition.json b/data/game/de/detroit-become-human-digital-deluxe-edition.json new file mode 100644 index 000000000000..8eb1c48311a6 --- /dev/null +++ b/data/game/de/detroit-become-human-digital-deluxe-edition.json @@ -0,0 +1,8 @@ +{ + "slug": "detroit-become-human-digital-deluxe-edition", + "name": "Detroit: Become Human - Digital Deluxe Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107413744" + ] +} diff --git a/data/game/de/deus-ex-human-revolution-the-missing-link.json b/data/game/de/deus-ex-human-revolution-the-missing-link.json new file mode 100644 index 000000000000..7a3688d85508 --- /dev/null +++ b/data/game/de/deus-ex-human-revolution-the-missing-link.json @@ -0,0 +1,26 @@ +{ + "slug": "deus-ex-human-revolution-the-missing-link", + "name": "Deus Ex: Human Revolution - The Missing Link", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q26678571" + ], + "release_date": "2011-10-18", + "platforms": [ + "macOS", + "PlayStation 3", + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "stealth game", + "action role-playing game", + "cyberpunk video game" + ], + "developers": [ + "Eidos Montreal" + ], + "publishers": [ + "Square Enix" + ] +} diff --git a/data/game/de/devil-may-cry-5-special-edition.json b/data/game/de/devil-may-cry-5-special-edition.json new file mode 100644 index 000000000000..b2f53380f9f9 --- /dev/null +++ b/data/game/de/devil-may-cry-5-special-edition.json @@ -0,0 +1,23 @@ +{ + "slug": "devil-may-cry-5-special-edition", + "name": "Devil May Cry 5 Special Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q100391176" + ], + "release_date": "2020-11-10", + "platforms": [ + "PlayStation 5", + "Xbox Series X and Series S" + ], + "genres": [ + "action-adventure game", + "hack and slash" + ], + "developers": [ + "Capcom" + ], + "publishers": [ + "Capcom" + ] +} diff --git a/data/game/de/devilman-ii-devil-resurrection.json b/data/game/de/devilman-ii-devil-resurrection.json new file mode 100644 index 000000000000..5c585db3bc9d --- /dev/null +++ b/data/game/de/devilman-ii-devil-resurrection.json @@ -0,0 +1,8 @@ +{ + "slug": "devilman-ii-devil-resurrection", + "name": "Devilman II Devil Resurrection", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11320707" + ] +} diff --git a/data/game/dh/dhewm3.json b/data/game/dh/dhewm3.json new file mode 100644 index 000000000000..440e7636cde8 --- /dev/null +++ b/data/game/dh/dhewm3.json @@ -0,0 +1,8 @@ +{ + "slug": "dhewm3", + "name": "dhewm3", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124469292" + ] +} diff --git a/data/game/di/diablo-hellfire.json b/data/game/di/diablo-hellfire.json new file mode 100644 index 000000000000..92ca47a32cf4 --- /dev/null +++ b/data/game/di/diablo-hellfire.json @@ -0,0 +1,24 @@ +{ + "slug": "diablo-hellfire", + "name": "Diablo: Hellfire", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q669687" + ], + "release_date": "1997-11-24", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "role-playing video game", + "roguelike", + "hack and slash", + "action role-playing game" + ], + "developers": [ + "Synergistic Software" + ], + "publishers": [ + "Sierra Entertainment" + ] +} diff --git a/data/game/di/diablo-ii-lord-of-destruction.json b/data/game/di/diablo-ii-lord-of-destruction.json new file mode 100644 index 000000000000..f4d1b0bbeb97 --- /dev/null +++ b/data/game/di/diablo-ii-lord-of-destruction.json @@ -0,0 +1,24 @@ +{ + "slug": "diablo-ii-lord-of-destruction", + "name": "Diablo II: Lord of Destruction", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q835084" + ], + "release_date": "2001-06-27", + "platforms": [ + "Classic Mac OS", + "macOS", + "Microsoft Windows" + ], + "genres": [ + "role-playing video game", + "action role-playing game" + ], + "developers": [ + "Blizzard North" + ], + "publishers": [ + "Blizzard Entertainment" + ] +} diff --git a/data/game/di/diablo-iii-eternal-collection.json b/data/game/di/diablo-iii-eternal-collection.json new file mode 100644 index 000000000000..ecd014decb79 --- /dev/null +++ b/data/game/di/diablo-iii-eternal-collection.json @@ -0,0 +1,8 @@ +{ + "slug": "diablo-iii-eternal-collection", + "name": "Diablo III: Eternal Collection", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123335605" + ] +} diff --git a/data/game/di/diablo-iii-reaper-of-souls.json b/data/game/di/diablo-iii-reaper-of-souls.json new file mode 100644 index 000000000000..16a068c26442 --- /dev/null +++ b/data/game/di/diablo-iii-reaper-of-souls.json @@ -0,0 +1,24 @@ +{ + "slug": "diablo-iii-reaper-of-souls", + "name": "Diablo III: Reaper of Souls", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q14917711" + ], + "release_date": "2014-03-25", + "platforms": [ + "PlayStation 4", + "macOS", + "PlayStation 3", + "Microsoft Windows" + ], + "genres": [ + "action role-playing game" + ], + "developers": [ + "Blizzard Entertainment" + ], + "publishers": [ + "Blizzard Entertainment" + ] +} diff --git a/data/game/di/diablo-iii-rise-of-the-necromancer.json b/data/game/di/diablo-iii-rise-of-the-necromancer.json new file mode 100644 index 000000000000..4b898e9c0f51 --- /dev/null +++ b/data/game/di/diablo-iii-rise-of-the-necromancer.json @@ -0,0 +1,23 @@ +{ + "slug": "diablo-iii-rise-of-the-necromancer", + "name": "Diablo III: Rise of the Necromancer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q42266768" + ], + "release_date": "2017-06-27", + "platforms": [ + "PlayStation 4", + "macOS", + "Microsoft Windows" + ], + "genres": [ + "action role-playing game" + ], + "developers": [ + "Blizzard Entertainment" + ], + "publishers": [ + "Blizzard Entertainment" + ] +} diff --git a/data/game/di/diamond-bingo.json b/data/game/di/diamond-bingo.json new file mode 100644 index 000000000000..efed463a2be0 --- /dev/null +++ b/data/game/di/diamond-bingo.json @@ -0,0 +1,11 @@ +{ + "slug": "diamond-bingo", + "name": "Diamond Bingo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60614490" + ], + "platforms": [ + "arcade cabinet" + ] +} diff --git a/data/game/di/die-ralf-glau-edition.json b/data/game/di/die-ralf-glau-edition.json new file mode 100644 index 000000000000..b2d92482c812 --- /dev/null +++ b/data/game/di/die-ralf-glau-edition.json @@ -0,0 +1,8 @@ +{ + "slug": "die-ralf-glau-edition", + "name": "Die Ralf Glau Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126040211" + ] +} diff --git a/data/game/di/dig-limited-bundle-1-2020.json b/data/game/di/dig-limited-bundle-1-2020.json new file mode 100644 index 000000000000..b7e1241fdce5 --- /dev/null +++ b/data/game/di/dig-limited-bundle-1-2020.json @@ -0,0 +1,17 @@ +{ + "slug": "dig-limited-bundle-1-2020", + "name": "DIG Limited Bundle 1 (2020)", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121133251" + ], + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "publishers": [ + "MoyBatya" + ] +} diff --git a/data/game/di/dig-weekly-bundle-125.json b/data/game/di/dig-weekly-bundle-125.json new file mode 100644 index 000000000000..9b5d8f648abe --- /dev/null +++ b/data/game/di/dig-weekly-bundle-125.json @@ -0,0 +1,18 @@ +{ + "slug": "dig-weekly-bundle-125", + "name": "DIG Weekly Bundle 125", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121133264" + ], + "release_date": "2020-02-01", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "publishers": [ + "MoyBatya" + ] +} diff --git a/data/game/di/dig-weekly-bundle-127.json b/data/game/di/dig-weekly-bundle-127.json new file mode 100644 index 000000000000..e446745f14ac --- /dev/null +++ b/data/game/di/dig-weekly-bundle-127.json @@ -0,0 +1,17 @@ +{ + "slug": "dig-weekly-bundle-127", + "name": "DIG Weekly Bundle 127", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121302303" + ], + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "publishers": [ + "MoyBatya" + ] +} diff --git a/data/game/di/dig-weekly-bundle-346.json b/data/game/di/dig-weekly-bundle-346.json new file mode 100644 index 000000000000..edc54051e85f --- /dev/null +++ b/data/game/di/dig-weekly-bundle-346.json @@ -0,0 +1,17 @@ +{ + "slug": "dig-weekly-bundle-346", + "name": "DIG Weekly Bundle 346", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121302252" + ], + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "publishers": [ + "MoyBatya" + ] +} diff --git a/data/game/di/digimon-story-cyber-sleuth-complete-edition.json b/data/game/di/digimon-story-cyber-sleuth-complete-edition.json new file mode 100644 index 000000000000..d680cab5704a --- /dev/null +++ b/data/game/di/digimon-story-cyber-sleuth-complete-edition.json @@ -0,0 +1,23 @@ +{ + "slug": "digimon-story-cyber-sleuth-complete-edition", + "name": "Digimon Story Cyber Sleuth: Complete Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q119726642" + ], + "release_date": "2019-10-18", + "platforms": [ + "PlayStation 5", + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "role-playing video game" + ], + "developers": [ + "Media.Vision" + ], + "publishers": [ + "Bandai Namco Entertainment" + ] +} diff --git a/data/game/di/dinamic-5-aniversario.json b/data/game/di/dinamic-5-aniversario.json new file mode 100644 index 000000000000..492dc3fef6a9 --- /dev/null +++ b/data/game/di/dinamic-5-aniversario.json @@ -0,0 +1,15 @@ +{ + "slug": "dinamic-5-aniversario", + "name": "Dinamic 5° Aniversario", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63052769" + ], + "release_date": "1989-01-01", + "platforms": [ + "ZX Spectrum" + ], + "publishers": [ + "Dinamic Software" + ] +} diff --git a/data/game/di/dinamic-hits-collection.json b/data/game/di/dinamic-hits-collection.json new file mode 100644 index 000000000000..24a992c4e3bf --- /dev/null +++ b/data/game/di/dinamic-hits-collection.json @@ -0,0 +1,16 @@ +{ + "slug": "dinamic-hits-collection", + "name": "Dinamic Hits Collection", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62698507" + ], + "release_date": "1988-01-01", + "platforms": [ + "Amstrad CPC", + "ZX Spectrum" + ], + "publishers": [ + "Dinamic Software" + ] +} diff --git a/data/game/di/diner-dash-flo-through-time.json b/data/game/di/diner-dash-flo-through-time.json new file mode 100644 index 000000000000..0f94139f7fdd --- /dev/null +++ b/data/game/di/diner-dash-flo-through-time.json @@ -0,0 +1,8 @@ +{ + "slug": "diner-dash-flo-through-time", + "name": "Diner Dash: Flo Through Time", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28127415" + ] +} diff --git a/data/game/di/dino-crisis-5th-anniversary.json b/data/game/di/dino-crisis-5th-anniversary.json new file mode 100644 index 000000000000..54ca76880459 --- /dev/null +++ b/data/game/di/dino-crisis-5th-anniversary.json @@ -0,0 +1,8 @@ +{ + "slug": "dino-crisis-5th-anniversary", + "name": "Dino Crisis 5th Anniversary", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q133848277" + ] +} diff --git a/data/game/di/dinosaur-planet.json b/data/game/di/dinosaur-planet.json new file mode 100644 index 000000000000..6ee2fad41828 --- /dev/null +++ b/data/game/di/dinosaur-planet.json @@ -0,0 +1,20 @@ +{ + "slug": "dinosaur-planet", + "name": "Dinosaur Planet", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q64620866" + ], + "platforms": [ + "Nintendo 64" + ], + "genres": [ + "action-adventure game" + ], + "developers": [ + "Rare Ltd." + ], + "publishers": [ + "Nintendo" + ] +} diff --git a/data/game/di/dirk-valentine-and-the-fortress-of-steam.json b/data/game/di/dirk-valentine-and-the-fortress-of-steam.json new file mode 100644 index 000000000000..f50fabfcebcc --- /dev/null +++ b/data/game/di/dirk-valentine-and-the-fortress-of-steam.json @@ -0,0 +1,16 @@ +{ + "slug": "dirk-valentine-and-the-fortress-of-steam", + "name": "Dirk Valentine and the Fortress of Steam", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107023295" + ], + "release_date": "2008-01-01", + "genres": [ + "action game", + "side-scrolling video game" + ], + "developers": [ + "Nitrome" + ] +} diff --git a/data/game/di/dirty-harry-q5281019.json b/data/game/di/dirty-harry-q5281019.json new file mode 100644 index 000000000000..615fa586e569 --- /dev/null +++ b/data/game/di/dirty-harry-q5281019.json @@ -0,0 +1,20 @@ +{ + "slug": "dirty-harry-q5281019", + "name": "Dirty Harry", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5281019" + ], + "platforms": [ + "PlayStation 3" + ], + "genres": [ + "action game" + ], + "developers": [ + "The Collective" + ], + "publishers": [ + "Warner Bros. Entertainment" + ] +} diff --git a/data/game/di/disciples-iii-resurrection.json b/data/game/di/disciples-iii-resurrection.json new file mode 100644 index 000000000000..e3f8efc69243 --- /dev/null +++ b/data/game/di/disciples-iii-resurrection.json @@ -0,0 +1,22 @@ +{ + "slug": "disciples-iii-resurrection", + "name": "Disciples III: Resurrection", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110817100" + ], + "release_date": "2011-10-01", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "strategy game" + ], + "developers": [ + ".dat", + "Akella" + ], + "publishers": [ + "Kalypso Media" + ] +} diff --git a/data/game/di/disciples-liberation-digital-deluxe-edition.json b/data/game/di/disciples-liberation-digital-deluxe-edition.json new file mode 100644 index 000000000000..994bab486d0c --- /dev/null +++ b/data/game/di/disciples-liberation-digital-deluxe-edition.json @@ -0,0 +1,21 @@ +{ + "slug": "disciples-liberation-digital-deluxe-edition", + "name": "Disciples: Liberation Digital Deluxe Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109004972" + ], + "release_date": "2021-10-21", + "platforms": [ + "Xbox Series X and Series S" + ], + "genres": [ + "role-playing video game" + ], + "developers": [ + "Frima Studio" + ], + "publishers": [ + "Kalypso Media" + ] +} diff --git a/data/game/di/disenchanted-demo.json b/data/game/di/disenchanted-demo.json new file mode 100644 index 000000000000..f357977c6ec3 --- /dev/null +++ b/data/game/di/disenchanted-demo.json @@ -0,0 +1,8 @@ +{ + "slug": "disenchanted-demo", + "name": "Disenchanted DEMO", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131619624" + ] +} diff --git a/data/game/di/disk-ng.json b/data/game/di/disk-ng.json new file mode 100644 index 000000000000..4d294837cc03 --- /dev/null +++ b/data/game/di/disk-ng.json @@ -0,0 +1,15 @@ +{ + "slug": "disk-ng", + "name": "Disk NG", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17217055" + ], + "release_date": "1990-03-09", + "platforms": [ + "MSX" + ], + "publishers": [ + "Bandai Namco Entertainment" + ] +} diff --git a/data/game/di/disney-coloring-world-q118234977.json b/data/game/di/disney-coloring-world-q118234977.json new file mode 100644 index 000000000000..5e8ba2214e47 --- /dev/null +++ b/data/game/di/disney-coloring-world-q118234977.json @@ -0,0 +1,13 @@ +{ + "slug": "disney-coloring-world-q118234977", + "name": "Disney Coloring World+", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118234977" + ], + "release_date": "2023-05-04", + "platforms": [ + "iPadOS", + "iOS" + ] +} diff --git a/data/game/di/disney-dreamlight-valley-a-rift-in-time.json b/data/game/di/disney-dreamlight-valley-a-rift-in-time.json new file mode 100644 index 000000000000..f8b81a0a571f --- /dev/null +++ b/data/game/di/disney-dreamlight-valley-a-rift-in-time.json @@ -0,0 +1,13 @@ +{ + "slug": "disney-dreamlight-valley-a-rift-in-time", + "name": "Disney Dreamlight Valley: A Rift in Time", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123688687" + ], + "release_date": "2023-12-05", + "platforms": [ + "Xbox Series X and Series S", + "Microsoft Windows" + ] +} diff --git a/data/game/di/disney-dreamlight-valley-arcade-edition.json b/data/game/di/disney-dreamlight-valley-arcade-edition.json new file mode 100644 index 000000000000..9ed2ba54b71d --- /dev/null +++ b/data/game/di/disney-dreamlight-valley-arcade-edition.json @@ -0,0 +1,15 @@ +{ + "slug": "disney-dreamlight-valley-arcade-edition", + "name": "Disney Dreamlight Valley Arcade Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123717295" + ], + "release_date": "2023-12-05", + "platforms": [ + "iPadOS", + "tvOS", + "iOS", + "macOS" + ] +} diff --git a/data/game/di/disney-getaway-blast-q118235078.json b/data/game/di/disney-getaway-blast-q118235078.json new file mode 100644 index 000000000000..ac106b5a7ac5 --- /dev/null +++ b/data/game/di/disney-getaway-blast-q118235078.json @@ -0,0 +1,13 @@ +{ + "slug": "disney-getaway-blast-q118235078", + "name": "Disney Getaway Blast+", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118235078" + ], + "release_date": "2023-05-04", + "platforms": [ + "iPadOS", + "iOS" + ] +} diff --git a/data/game/di/distant-worlds-return-of-the-shakturi.json b/data/game/di/distant-worlds-return-of-the-shakturi.json new file mode 100644 index 000000000000..06403f5269ff --- /dev/null +++ b/data/game/di/distant-worlds-return-of-the-shakturi.json @@ -0,0 +1,8 @@ +{ + "slug": "distant-worlds-return-of-the-shakturi", + "name": "Distant Worlds: Return of the Shakturi", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140471137" + ] +} diff --git a/data/game/di/divination-console-edition.json b/data/game/di/divination-console-edition.json new file mode 100644 index 000000000000..4302f4c2dc5b --- /dev/null +++ b/data/game/di/divination-console-edition.json @@ -0,0 +1,15 @@ +{ + "slug": "divination-console-edition", + "name": "Divination: Console Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112246286" + ], + "release_date": "2022-05-18", + "platforms": [ + "Xbox Series X and Series S" + ], + "publishers": [ + "Eastasiasoft" + ] +} diff --git a/data/game/di/divinity-ii-flames-of-vengeance.json b/data/game/di/divinity-ii-flames-of-vengeance.json new file mode 100644 index 000000000000..32e89de2faac --- /dev/null +++ b/data/game/di/divinity-ii-flames-of-vengeance.json @@ -0,0 +1,8 @@ +{ + "slug": "divinity-ii-flames-of-vengeance", + "name": "Divinity II: Flames of Vengeance", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110155722" + ] +} diff --git a/data/game/di/dizzy-collection.json b/data/game/di/dizzy-collection.json new file mode 100644 index 000000000000..fffd9d7e51e1 --- /dev/null +++ b/data/game/di/dizzy-collection.json @@ -0,0 +1,8 @@ +{ + "slug": "dizzy-collection", + "name": "Dizzy Collection", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126184262" + ] +} diff --git a/data/game/dj/djmax-respect.json b/data/game/dj/djmax-respect.json new file mode 100644 index 000000000000..95f8662cb59c --- /dev/null +++ b/data/game/dj/djmax-respect.json @@ -0,0 +1,25 @@ +{ + "slug": "djmax-respect", + "name": "DJMax Respect", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q24204182" + ], + "release_date": "2017-07-28", + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "music video game", + "rhythm game" + ], + "developers": [ + "Neowiz" + ], + "publishers": [ + "Neowiz", + "Arc System Works" + ] +} diff --git a/data/game/dk/dk-island-emerald-rush.json b/data/game/dk/dk-island-emerald-rush.json new file mode 100644 index 000000000000..1bd3fab89287 --- /dev/null +++ b/data/game/dk/dk-island-emerald-rush.json @@ -0,0 +1,18 @@ +{ + "slug": "dk-island-emerald-rush", + "name": "DK Island & Emerald Rush", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137909392" + ], + "release_date": "2025-09-12", + "genres": [ + "action-adventure game" + ], + "developers": [ + "Nintendo Entertainment Planning & Development" + ], + "publishers": [ + "Nintendo" + ] +} diff --git a/data/game/dm/dmc-devil-may-cry-vergil-s-downfall.json b/data/game/dm/dmc-devil-may-cry-vergil-s-downfall.json new file mode 100644 index 000000000000..7dfca1f90754 --- /dev/null +++ b/data/game/dm/dmc-devil-may-cry-vergil-s-downfall.json @@ -0,0 +1,12 @@ +{ + "slug": "dmc-devil-may-cry-vergil-s-downfall", + "name": "DmC Devil May Cry: Vergil's Downfall", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120809265" + ], + "release_date": "2013-03-05", + "platforms": [ + "Microsoft Windows" + ] +} diff --git a/data/game/dm/dmc-devil-may-cry.json b/data/game/dm/dmc-devil-may-cry.json new file mode 100644 index 000000000000..9d5adec260da --- /dev/null +++ b/data/game/dm/dmc-devil-may-cry.json @@ -0,0 +1,25 @@ +{ + "slug": "dmc-devil-may-cry", + "name": "DmC: Devil May Cry", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1826997" + ], + "release_date": "2013-01-15", + "platforms": [ + "PlayStation 4", + "PlayStation 3", + "Microsoft Windows" + ], + "genres": [ + "action-adventure game", + "hack and slash", + "dark fantasy video game" + ], + "developers": [ + "Ninja Theory" + ], + "publishers": [ + "Capcom" + ] +} diff --git a/data/game/do/doctor-who-the-adventure-games.json b/data/game/do/doctor-who-the-adventure-games.json new file mode 100644 index 000000000000..60d44fab4ebb --- /dev/null +++ b/data/game/do/doctor-who-the-adventure-games.json @@ -0,0 +1,9 @@ +{ + "slug": "doctor-who-the-adventure-games", + "name": "Doctor Who: The Adventure Games", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q65951402" + ], + "release_date": "2010-06-05" +} diff --git a/data/game/do/dogwalk.json b/data/game/do/dogwalk.json new file mode 100644 index 000000000000..72f39633f781 --- /dev/null +++ b/data/game/do/dogwalk.json @@ -0,0 +1,16 @@ +{ + "slug": "dogwalk", + "name": "DogWalk", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134737596" + ], + "release_date": "2025-07-11", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Blender Animation Studio" + ] +} diff --git a/data/game/do/dolbaram-ai.json b/data/game/do/dolbaram-ai.json new file mode 100644 index 000000000000..e591eca7b5b5 --- /dev/null +++ b/data/game/do/dolbaram-ai.json @@ -0,0 +1,8 @@ +{ + "slug": "dolbaram-ai", + "name": "DolBaram AI", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q55729229" + ] +} diff --git a/data/game/do/don-t-buy-this.json b/data/game/do/don-t-buy-this.json new file mode 100644 index 000000000000..5f0fc3a9538a --- /dev/null +++ b/data/game/do/don-t-buy-this.json @@ -0,0 +1,12 @@ +{ + "slug": "don-t-buy-this", + "name": "Don't Buy This", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5291495" + ], + "release_date": "1985-01-01", + "platforms": [ + "ZX Spectrum" + ] +} diff --git a/data/game/do/don-t-escape-trilogy.json b/data/game/do/don-t-escape-trilogy.json new file mode 100644 index 000000000000..f4386288895e --- /dev/null +++ b/data/game/do/don-t-escape-trilogy.json @@ -0,0 +1,21 @@ +{ + "slug": "don-t-escape-trilogy", + "name": "Don't Escape Trilogy", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q101598179" + ], + "release_date": "2019-07-29", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "point-and-click adventure" + ], + "developers": [ + "Scriptwelder Studio" + ], + "publishers": [ + "Armor Games Studios" + ] +} diff --git a/data/game/do/don-t-starve-giant-edition-shipwrecked-expansion.json b/data/game/do/don-t-starve-giant-edition-shipwrecked-expansion.json new file mode 100644 index 000000000000..ebecfca6a56b --- /dev/null +++ b/data/game/do/don-t-starve-giant-edition-shipwrecked-expansion.json @@ -0,0 +1,8 @@ +{ + "slug": "don-t-starve-giant-edition-shipwrecked-expansion", + "name": "Don't Starve: Giant Edition + Shipwrecked Expansion", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q92203940" + ] +} diff --git a/data/game/do/don-t-starve-giant-edition.json b/data/game/do/don-t-starve-giant-edition.json new file mode 100644 index 000000000000..1d87a0806d56 --- /dev/null +++ b/data/game/do/don-t-starve-giant-edition.json @@ -0,0 +1,11 @@ +{ + "slug": "don-t-starve-giant-edition", + "name": "Don't Starve: Giant Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q92204067" + ], + "platforms": [ + "Wii U" + ] +} diff --git a/data/game/do/don-t-starve-pocket-edition.json b/data/game/do/don-t-starve-pocket-edition.json new file mode 100644 index 000000000000..16b6f141f053 --- /dev/null +++ b/data/game/do/don-t-starve-pocket-edition.json @@ -0,0 +1,16 @@ +{ + "slug": "don-t-starve-pocket-edition", + "name": "Don't Starve: Pocket Edition+", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107148158" + ], + "release_date": "2021-04-03", + "platforms": [ + "iPadOS", + "iOS" + ], + "developers": [ + "Klei Entertainment" + ] +} diff --git a/data/game/do/donkey-kong-classics.json b/data/game/do/donkey-kong-classics.json new file mode 100644 index 000000000000..ddd9f730ec8c --- /dev/null +++ b/data/game/do/donkey-kong-classics.json @@ -0,0 +1,19 @@ +{ + "slug": "donkey-kong-classics", + "name": "Donkey Kong Classics", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2606702" + ], + "release_date": "1988-10-01", + "platforms": [ + "Nintendo Entertainment System" + ], + "developers": [ + "Nintendo Entertainment Analysis & Development", + "Nintendo" + ], + "publishers": [ + "Nintendo" + ] +} diff --git a/data/game/do/doodle-champion-island-games.json b/data/game/do/doodle-champion-island-games.json new file mode 100644 index 000000000000..9e3a303eb522 --- /dev/null +++ b/data/game/do/doodle-champion-island-games.json @@ -0,0 +1,23 @@ +{ + "slug": "doodle-champion-island-games", + "name": "Doodle Champion Island Games", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107627602" + ], + "release_date": "2021-07-23", + "platforms": [ + "web browser" + ], + "genres": [ + "role-playing video game", + "athletics video game" + ], + "developers": [ + "Google" + ], + "publishers": [ + "Google", + "Studio 4°C" + ] +} diff --git a/data/game/do/doom-3-mr-smiley-head-s-safari.json b/data/game/do/doom-3-mr-smiley-head-s-safari.json new file mode 100644 index 000000000000..d8720772d70a --- /dev/null +++ b/data/game/do/doom-3-mr-smiley-head-s-safari.json @@ -0,0 +1,12 @@ +{ + "slug": "doom-3-mr-smiley-head-s-safari", + "name": "Doom 3: Mr. Smiley Head's Safari", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q67471576" + ], + "release_date": "1995-01-01", + "genres": [ + "first-person shooter" + ] +} diff --git a/data/game/do/doom-32x-resurrection.json b/data/game/do/doom-32x-resurrection.json new file mode 100644 index 000000000000..e82f9f553d2e --- /dev/null +++ b/data/game/do/doom-32x-resurrection.json @@ -0,0 +1,11 @@ +{ + "slug": "doom-32x-resurrection", + "name": "DOOM 32X: Resurrection", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124414108" + ], + "genres": [ + "first-person shooter" + ] +} diff --git a/data/game/do/doom-eternal-the-ancient-gods-part-one-q106166973.json b/data/game/do/doom-eternal-the-ancient-gods-part-one-q106166973.json new file mode 100644 index 000000000000..f12bc58230d5 --- /dev/null +++ b/data/game/do/doom-eternal-the-ancient-gods-part-one-q106166973.json @@ -0,0 +1,24 @@ +{ + "slug": "doom-eternal-the-ancient-gods-part-one-q106166973", + "name": "Doom Eternal: The Ancient Gods - Part One", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106166973" + ], + "release_date": "2020-10-20", + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 5", + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "first-person shooter" + ], + "developers": [ + "id Software" + ], + "publishers": [ + "Bethesda Softworks" + ] +} diff --git a/data/game/do/doom-eternal-the-ancient-gods-part-two.json b/data/game/do/doom-eternal-the-ancient-gods-part-two.json new file mode 100644 index 000000000000..1e0efaf561db --- /dev/null +++ b/data/game/do/doom-eternal-the-ancient-gods-part-two.json @@ -0,0 +1,24 @@ +{ + "slug": "doom-eternal-the-ancient-gods-part-two", + "name": "Doom Eternal: The Ancient Gods – Part Two", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106167320" + ], + "release_date": "2021-03-18", + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 5", + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "first-person shooter" + ], + "developers": [ + "id Software" + ], + "publishers": [ + "Bethesda Softworks" + ] +} diff --git a/data/game/do/doom-legacy.json b/data/game/do/doom-legacy.json new file mode 100644 index 000000000000..fbd97011aaa3 --- /dev/null +++ b/data/game/do/doom-legacy.json @@ -0,0 +1,11 @@ +{ + "slug": "doom-legacy", + "name": "Doom Legacy", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11856277" + ], + "platforms": [ + "Classic Mac OS" + ] +} diff --git a/data/game/do/doom-q513867.json b/data/game/do/doom-q513867.json new file mode 100644 index 000000000000..6f4ec273a5f0 --- /dev/null +++ b/data/game/do/doom-q513867.json @@ -0,0 +1,23 @@ +{ + "slug": "doom-q513867", + "name": "Doom", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q513867" + ], + "release_date": "2016-05-13", + "platforms": [ + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "first-person shooter" + ], + "developers": [ + "Bethesda Game Studios", + "id Software" + ], + "publishers": [ + "Bethesda Softworks" + ] +} diff --git a/data/game/do/doom-retro.json b/data/game/do/doom-retro.json new file mode 100644 index 000000000000..dbe098fdeaa0 --- /dev/null +++ b/data/game/do/doom-retro.json @@ -0,0 +1,8 @@ +{ + "slug": "doom-retro", + "name": "DOOM Retro", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q67221151" + ] +} diff --git a/data/game/do/doom-utilities.json b/data/game/do/doom-utilities.json new file mode 100644 index 000000000000..03666baa6d86 --- /dev/null +++ b/data/game/do/doom-utilities.json @@ -0,0 +1,15 @@ +{ + "slug": "doom-utilities", + "name": "Doom Utilities", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131406722" + ], + "release_date": "1994-01-01", + "genres": [ + "first-person shooter" + ], + "publishers": [ + "Cobra Computing" + ] +} diff --git a/data/game/do/doom8088.json b/data/game/do/doom8088.json new file mode 100644 index 000000000000..ab08fd601ac6 --- /dev/null +++ b/data/game/do/doom8088.json @@ -0,0 +1,11 @@ +{ + "slug": "doom8088", + "name": "Doom8088", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124473648" + ], + "platforms": [ + "personal computer" + ] +} diff --git a/data/game/do/doomgeneric.json b/data/game/do/doomgeneric.json new file mode 100644 index 000000000000..c81f6bf359f7 --- /dev/null +++ b/data/game/do/doomgeneric.json @@ -0,0 +1,8 @@ +{ + "slug": "doomgeneric", + "name": "doomgeneric", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124473763" + ] +} diff --git a/data/game/do/doomsday-engine.json b/data/game/do/doomsday-engine.json new file mode 100644 index 000000000000..8ca76d421b09 --- /dev/null +++ b/data/game/do/doomsday-engine.json @@ -0,0 +1,8 @@ +{ + "slug": "doomsday-engine", + "name": "Doomsday Engine", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q67196248" + ] +} diff --git a/data/game/do/doors-q116141717.json b/data/game/do/doors-q116141717.json new file mode 100644 index 000000000000..0fcc9c74f2aa --- /dev/null +++ b/data/game/do/doors-q116141717.json @@ -0,0 +1,18 @@ +{ + "slug": "doors-q116141717", + "name": "Doors", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116141717" + ], + "release_date": "2022-08-10", + "platforms": [ + "Xbox Series X and Series S", + "iOS", + "macOS", + "Microsoft Windows" + ], + "genres": [ + "horror video game" + ] +} diff --git a/data/game/do/dosdoom.json b/data/game/do/dosdoom.json new file mode 100644 index 000000000000..b92308aa58b0 --- /dev/null +++ b/data/game/do/dosdoom.json @@ -0,0 +1,9 @@ +{ + "slug": "dosdoom", + "name": "DOSDoom", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q67198934" + ], + "release_date": "1997-12-23" +} diff --git a/data/game/do/double-dragon-neon.json b/data/game/do/double-dragon-neon.json new file mode 100644 index 000000000000..e2bc93c474c5 --- /dev/null +++ b/data/game/do/double-dragon-neon.json @@ -0,0 +1,22 @@ +{ + "slug": "double-dragon-neon", + "name": "Double Dragon Neon", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3037447" + ], + "release_date": "2012-09-11", + "platforms": [ + "PlayStation 3", + "Microsoft Windows" + ], + "genres": [ + "beat 'em up" + ], + "developers": [ + "WayForward Technologies" + ], + "publishers": [ + "Majesco Entertainment" + ] +} diff --git a/data/game/do/downwell-q123295662.json b/data/game/do/downwell-q123295662.json new file mode 100644 index 000000000000..abad031ea298 --- /dev/null +++ b/data/game/do/downwell-q123295662.json @@ -0,0 +1,13 @@ +{ + "slug": "downwell-q123295662", + "name": "Downwell+", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123295662" + ], + "release_date": "2023-11-21", + "platforms": [ + "iPadOS", + "iOS" + ] +} diff --git a/data/game/dr/dracula-q11322942.json b/data/game/dr/dracula-q11322942.json new file mode 100644 index 000000000000..3cfcaca7b65b --- /dev/null +++ b/data/game/dr/dracula-q11322942.json @@ -0,0 +1,8 @@ +{ + "slug": "dracula-q11322942", + "name": "Dracula", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11322942" + ] +} diff --git a/data/game/dr/dragon-age-ii-legacy.json b/data/game/dr/dragon-age-ii-legacy.json new file mode 100644 index 000000000000..ee85e2ec1ba0 --- /dev/null +++ b/data/game/dr/dragon-age-ii-legacy.json @@ -0,0 +1,8 @@ +{ + "slug": "dragon-age-ii-legacy", + "name": "Dragon Age II: Legacy", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113504399" + ] +} diff --git a/data/game/dr/dragon-age-inquisition-jaws-of-hakkon.json b/data/game/dr/dragon-age-inquisition-jaws-of-hakkon.json new file mode 100644 index 000000000000..540d23e2c3dd --- /dev/null +++ b/data/game/dr/dragon-age-inquisition-jaws-of-hakkon.json @@ -0,0 +1,11 @@ +{ + "slug": "dragon-age-inquisition-jaws-of-hakkon", + "name": "Dragon Age: Inquisition – Jaws of Hakkon", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q96376608" + ], + "developers": [ + "BioWare" + ] +} diff --git a/data/game/dr/dragon-age-inquisition-the-descent.json b/data/game/dr/dragon-age-inquisition-the-descent.json new file mode 100644 index 000000000000..6287162212a4 --- /dev/null +++ b/data/game/dr/dragon-age-inquisition-the-descent.json @@ -0,0 +1,8 @@ +{ + "slug": "dragon-age-inquisition-the-descent", + "name": "Dragon Age: Inquisition – The Descent", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105564026" + ] +} diff --git a/data/game/dr/dragon-age-inquisition-trespasser.json b/data/game/dr/dragon-age-inquisition-trespasser.json new file mode 100644 index 000000000000..965498c0e7dd --- /dev/null +++ b/data/game/dr/dragon-age-inquisition-trespasser.json @@ -0,0 +1,22 @@ +{ + "slug": "dragon-age-inquisition-trespasser", + "name": "Dragon Age: Inquisition – Trespasser", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105564044" + ], + "release_date": "2015-09-08", + "platforms": [ + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "action role-playing game" + ], + "developers": [ + "BioWare" + ], + "publishers": [ + "Electronic Arts" + ] +} diff --git a/data/game/dr/dragon-age-origins-awakening.json b/data/game/dr/dragon-age-origins-awakening.json new file mode 100644 index 000000000000..c3360763870a --- /dev/null +++ b/data/game/dr/dragon-age-origins-awakening.json @@ -0,0 +1,23 @@ +{ + "slug": "dragon-age-origins-awakening", + "name": "Dragon Age: Origins – Awakening", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q769833" + ], + "release_date": "2010-03-16", + "platforms": [ + "macOS", + "PlayStation 3", + "Microsoft Windows" + ], + "genres": [ + "role-playing video game" + ], + "developers": [ + "BioWare" + ], + "publishers": [ + "Electronic Arts" + ] +} diff --git a/data/game/dr/dragon-age-origins-leliana-s-song.json b/data/game/dr/dragon-age-origins-leliana-s-song.json new file mode 100644 index 000000000000..03bfa974622a --- /dev/null +++ b/data/game/dr/dragon-age-origins-leliana-s-song.json @@ -0,0 +1,8 @@ +{ + "slug": "dragon-age-origins-leliana-s-song", + "name": "Dragon Age: Origins - Leliana's Song", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110155020" + ] +} diff --git a/data/game/dr/dragon-age-origins-return-to-ostagar.json b/data/game/dr/dragon-age-origins-return-to-ostagar.json new file mode 100644 index 000000000000..f4145f92f1b3 --- /dev/null +++ b/data/game/dr/dragon-age-origins-return-to-ostagar.json @@ -0,0 +1,22 @@ +{ + "slug": "dragon-age-origins-return-to-ostagar", + "name": "Dragon Age: Origins – Return to Ostagar", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106142565" + ], + "release_date": "2010-01-13", + "platforms": [ + "PlayStation 3", + "Microsoft Windows" + ], + "genres": [ + "action role-playing game" + ], + "developers": [ + "BioWare" + ], + "publishers": [ + "Electronic Arts" + ] +} diff --git a/data/game/dr/dragon-age-origins-the-darkspawn-chronicles.json b/data/game/dr/dragon-age-origins-the-darkspawn-chronicles.json new file mode 100644 index 000000000000..585fd7686533 --- /dev/null +++ b/data/game/dr/dragon-age-origins-the-darkspawn-chronicles.json @@ -0,0 +1,8 @@ +{ + "slug": "dragon-age-origins-the-darkspawn-chronicles", + "name": "Dragon Age: Origins - The Darkspawn Chronicles", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110155006" + ] +} diff --git a/data/game/dr/dragon-age-origins-the-golems-of-amgarrak.json b/data/game/dr/dragon-age-origins-the-golems-of-amgarrak.json new file mode 100644 index 000000000000..22907d254bf4 --- /dev/null +++ b/data/game/dr/dragon-age-origins-the-golems-of-amgarrak.json @@ -0,0 +1,8 @@ +{ + "slug": "dragon-age-origins-the-golems-of-amgarrak", + "name": "Dragon Age: Origins – The Golems of Amgarrak", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110155031" + ] +} diff --git a/data/game/dr/dragon-age-origins-the-stone-prisoner.json b/data/game/dr/dragon-age-origins-the-stone-prisoner.json new file mode 100644 index 000000000000..385f778e2ff7 --- /dev/null +++ b/data/game/dr/dragon-age-origins-the-stone-prisoner.json @@ -0,0 +1,8 @@ +{ + "slug": "dragon-age-origins-the-stone-prisoner", + "name": "Dragon Age: Origins – The Stone Prisoner", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110154983" + ] +} diff --git a/data/game/dr/dragon-age-origins-warden-s-keep.json b/data/game/dr/dragon-age-origins-warden-s-keep.json new file mode 100644 index 000000000000..4ad2ec17d178 --- /dev/null +++ b/data/game/dr/dragon-age-origins-warden-s-keep.json @@ -0,0 +1,8 @@ +{ + "slug": "dragon-age-origins-warden-s-keep", + "name": "Dragon Age: Origins – Warden's Keep", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110154964" + ] +} diff --git a/data/game/dr/dragon-age-origins-witch-hunt.json b/data/game/dr/dragon-age-origins-witch-hunt.json new file mode 100644 index 000000000000..83f5f5c0a059 --- /dev/null +++ b/data/game/dr/dragon-age-origins-witch-hunt.json @@ -0,0 +1,8 @@ +{ + "slug": "dragon-age-origins-witch-hunt", + "name": "Dragon Age: Origins - Witch Hunt", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110155043" + ] +} diff --git a/data/game/dr/dragon-cave-q122762545.json b/data/game/dr/dragon-cave-q122762545.json new file mode 100644 index 000000000000..dfcf4abe55fd --- /dev/null +++ b/data/game/dr/dragon-cave-q122762545.json @@ -0,0 +1,8 @@ +{ + "slug": "dragon-cave-q122762545", + "name": "Dragon Cave", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122762545" + ] +} diff --git a/data/game/dr/dragon-crusade.json b/data/game/dr/dragon-crusade.json new file mode 100644 index 000000000000..cadb2a65d481 --- /dev/null +++ b/data/game/dr/dragon-crusade.json @@ -0,0 +1,9 @@ +{ + "slug": "dragon-crusade", + "name": "Dragon Crusade", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11322987" + ], + "release_date": "2009-04-23" +} diff --git a/data/game/dr/dragon-quest-25-sh-nen-kinen-famicom-super-famicom-dragon-quest-i-ii-iii.json b/data/game/dr/dragon-quest-25-sh-nen-kinen-famicom-super-famicom-dragon-quest-i-ii-iii.json new file mode 100644 index 000000000000..06496098d69e --- /dev/null +++ b/data/game/dr/dragon-quest-25-sh-nen-kinen-famicom-super-famicom-dragon-quest-i-ii-iii.json @@ -0,0 +1,18 @@ +{ + "slug": "dragon-quest-25-sh-nen-kinen-famicom-super-famicom-dragon-quest-i-ii-iii", + "name": "Dragon Quest 25 Shūnen Kinen Famicom & Super Famicom Dragon Quest I・II・III", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q406363" + ], + "release_date": "2011-09-15", + "platforms": [ + "Wii" + ], + "developers": [ + "Square Enix" + ], + "publishers": [ + "Square Enix" + ] +} diff --git a/data/game/dr/dragon-quest-25-shuunen-kinen-famicom-super-famicom-dragon-quest-i-ii-iii.json b/data/game/dr/dragon-quest-25-shuunen-kinen-famicom-super-famicom-dragon-quest-i-ii-iii.json new file mode 100644 index 000000000000..5abdc4180dd5 --- /dev/null +++ b/data/game/dr/dragon-quest-25-shuunen-kinen-famicom-super-famicom-dragon-quest-i-ii-iii.json @@ -0,0 +1,18 @@ +{ + "slug": "dragon-quest-25-shuunen-kinen-famicom-super-famicom-dragon-quest-i-ii-iii", + "name": "Dragon Quest 25 Shuunen Kinen: Famicom & Super Famicom Dragon Quest I-II-III", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110414790" + ], + "release_date": "2011-01-01", + "platforms": [ + "Wii" + ], + "developers": [ + "Square Enix" + ], + "publishers": [ + "Square Enix" + ] +} diff --git a/data/game/dr/dragon-quest-x-the-sleeping-hero-and-the-guiding-ally-offline.json b/data/game/dr/dragon-quest-x-the-sleeping-hero-and-the-guiding-ally-offline.json new file mode 100644 index 000000000000..8c8495e2c851 --- /dev/null +++ b/data/game/dr/dragon-quest-x-the-sleeping-hero-and-the-guiding-ally-offline.json @@ -0,0 +1,21 @@ +{ + "slug": "dragon-quest-x-the-sleeping-hero-and-the-guiding-ally-offline", + "name": "Dragon Quest X: The Sleeping Hero and the Guiding Ally Offline", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q114723316" + ], + "release_date": "2023-06-01", + "platforms": [ + "PlayStation 5", + "PlayStation 4", + "personal computer" + ], + "developers": [ + "Bandai Namco Forge Digitals", + "Square Enix" + ], + "publishers": [ + "Square Enix" + ] +} diff --git a/data/game/dr/dragon-sword.json b/data/game/dr/dragon-sword.json new file mode 100644 index 000000000000..882ca82f7b55 --- /dev/null +++ b/data/game/dr/dragon-sword.json @@ -0,0 +1,21 @@ +{ + "slug": "dragon-sword", + "name": "Dragon Sword", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q103820038" + ], + "platforms": [ + "Nintendo 64", + "Microsoft Windows" + ], + "genres": [ + "action role-playing game" + ], + "developers": [ + "Blitz Games" + ], + "publishers": [ + "MGM Interactive" + ] +} diff --git a/data/game/dr/dragoon-episodes.json b/data/game/dr/dragoon-episodes.json new file mode 100644 index 000000000000..ae1e0002f4b1 --- /dev/null +++ b/data/game/dr/dragoon-episodes.json @@ -0,0 +1,14 @@ +{ + "slug": "dragoon-episodes", + "name": "Dragoon Episodes", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110817101" + ], + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "action game" + ] +} diff --git a/data/game/dr/dragoon-the-prussian-war-machine.json b/data/game/dr/dragoon-the-prussian-war-machine.json new file mode 100644 index 000000000000..561129b3a04c --- /dev/null +++ b/data/game/dr/dragoon-the-prussian-war-machine.json @@ -0,0 +1,8 @@ +{ + "slug": "dragoon-the-prussian-war-machine", + "name": "Dragoon: The Prussian War Machine", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140471353" + ] +} diff --git a/data/game/dr/drakensang-phileasson-s-secret.json b/data/game/dr/drakensang-phileasson-s-secret.json new file mode 100644 index 000000000000..221eab27d8ea --- /dev/null +++ b/data/game/dr/drakensang-phileasson-s-secret.json @@ -0,0 +1,11 @@ +{ + "slug": "drakensang-phileasson-s-secret", + "name": "Drakensang: Phileasson's Secret", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16550668" + ], + "platforms": [ + "Microsoft Windows" + ] +} diff --git a/data/game/dr/drawn-to-life-collection.json b/data/game/dr/drawn-to-life-collection.json new file mode 100644 index 000000000000..5683d034da70 --- /dev/null +++ b/data/game/dr/drawn-to-life-collection.json @@ -0,0 +1,12 @@ +{ + "slug": "drawn-to-life-collection", + "name": "Drawn to Life Collection", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q67203893" + ], + "release_date": "2010-11-23", + "platforms": [ + "Nintendo DS" + ] +} diff --git a/data/game/dr/drawrace-2-racing-evolved.json b/data/game/dr/drawrace-2-racing-evolved.json new file mode 100644 index 000000000000..018d65739e21 --- /dev/null +++ b/data/game/dr/drawrace-2-racing-evolved.json @@ -0,0 +1,8 @@ +{ + "slug": "drawrace-2-racing-evolved", + "name": "DrawRace 2: Racing Evolved", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140472167" + ] +} diff --git a/data/game/dr/dread-delusion-demo.json b/data/game/dr/dread-delusion-demo.json new file mode 100644 index 000000000000..cf235e096373 --- /dev/null +++ b/data/game/dr/dread-delusion-demo.json @@ -0,0 +1,23 @@ +{ + "slug": "dread-delusion-demo", + "name": "Dread Delusion (Demo)", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126036981" + ], + "release_date": "2020-02-06", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "action role-playing game", + "Metroidvania", + "soulslike" + ], + "developers": [ + "James Wragg" + ], + "publishers": [ + "DreadXP" + ] +} diff --git a/data/game/dr/dream-team-the.json b/data/game/dr/dream-team-the.json new file mode 100644 index 000000000000..d8f11b51fe3e --- /dev/null +++ b/data/game/dr/dream-team-the.json @@ -0,0 +1,8 @@ +{ + "slug": "dream-team-the", + "name": "Dream Team, The", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126184279" + ] +} diff --git a/data/game/dr/dreamcast-collection.json b/data/game/dr/dreamcast-collection.json new file mode 100644 index 000000000000..d8011d4f1629 --- /dev/null +++ b/data/game/dr/dreamcast-collection.json @@ -0,0 +1,18 @@ +{ + "slug": "dreamcast-collection", + "name": "Dreamcast Collection", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5306537" + ], + "release_date": "2011-02-22", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Sega" + ], + "publishers": [ + "Sega" + ] +} diff --git a/data/game/dr/dredge-the-iron-rig.json b/data/game/dr/dredge-the-iron-rig.json new file mode 100644 index 000000000000..b89f23c4cdb5 --- /dev/null +++ b/data/game/dr/dredge-the-iron-rig.json @@ -0,0 +1,27 @@ +{ + "slug": "dredge-the-iron-rig", + "name": "Dredge: The Iron Rig", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130975373" + ], + "release_date": "2024-08-15", + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 5", + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "adventure video game", + "fishing video game", + "cosmic horror video game", + "role-playing video game" + ], + "developers": [ + "Black Salt Games" + ], + "publishers": [ + "Team17" + ] +} diff --git a/data/game/dr/dredge-the-pale-reach.json b/data/game/dr/dredge-the-pale-reach.json new file mode 100644 index 000000000000..2b6e0d0e78f1 --- /dev/null +++ b/data/game/dr/dredge-the-pale-reach.json @@ -0,0 +1,27 @@ +{ + "slug": "dredge-the-pale-reach", + "name": "Dredge: The Pale Reach", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131147188" + ], + "release_date": "2023-11-16", + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 5", + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "adventure video game", + "fishing video game", + "cosmic horror video game", + "role-playing video game" + ], + "developers": [ + "Black Salt Games" + ], + "publishers": [ + "Team17" + ] +} diff --git a/data/game/dr/dress-to-impress.json b/data/game/dr/dress-to-impress.json new file mode 100644 index 000000000000..dd4cd9dc5e11 --- /dev/null +++ b/data/game/dr/dress-to-impress.json @@ -0,0 +1,11 @@ +{ + "slug": "dress-to-impress", + "name": "Dress to Impress", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130535729" + ], + "genres": [ + "dress-up video game" + ] +} diff --git a/data/game/dr/drunk-or-dead-on-the-road.json b/data/game/dr/drunk-or-dead-on-the-road.json new file mode 100644 index 000000000000..d7b3bae3eb93 --- /dev/null +++ b/data/game/dr/drunk-or-dead-on-the-road.json @@ -0,0 +1,18 @@ +{ + "slug": "drunk-or-dead-on-the-road", + "name": "Drunk or Dead - On the Road", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120965502" + ], + "release_date": "2018-01-10", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "4 I Lab" + ], + "publishers": [ + "4 I Lab" + ] +} diff --git a/data/game/dr/drunk-or-dead-uncensored.json b/data/game/dr/drunk-or-dead-uncensored.json new file mode 100644 index 000000000000..b762bbedcd56 --- /dev/null +++ b/data/game/dr/drunk-or-dead-uncensored.json @@ -0,0 +1,18 @@ +{ + "slug": "drunk-or-dead-uncensored", + "name": "Drunk or Dead - Uncensored", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120965499" + ], + "release_date": "2017-10-20", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "4 I Lab" + ], + "publishers": [ + "4 I Lab" + ] +} diff --git a/data/game/ds/dsda-doom.json b/data/game/ds/dsda-doom.json new file mode 100644 index 000000000000..31b78269176b --- /dev/null +++ b/data/game/ds/dsda-doom.json @@ -0,0 +1,8 @@ +{ + "slug": "dsda-doom", + "name": "DSDA-Doom", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124429100" + ] +} diff --git a/data/game/du/duke-nukem-3d-kill-a-ton-collection.json b/data/game/du/duke-nukem-3d-kill-a-ton-collection.json new file mode 100644 index 000000000000..70e10a66f4aa --- /dev/null +++ b/data/game/du/duke-nukem-3d-kill-a-ton-collection.json @@ -0,0 +1,8 @@ +{ + "slug": "duke-nukem-3d-kill-a-ton-collection", + "name": "Duke Nukem 3D: Kill a Ton Collection", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121083485" + ] +} diff --git a/data/game/du/duke-nukem-3d-plutonium-pak.json b/data/game/du/duke-nukem-3d-plutonium-pak.json new file mode 100644 index 000000000000..196e3748db3e --- /dev/null +++ b/data/game/du/duke-nukem-3d-plutonium-pak.json @@ -0,0 +1,8 @@ +{ + "slug": "duke-nukem-3d-plutonium-pak", + "name": "Duke Nukem 3D: Plutonium Pak", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121083413" + ] +} diff --git a/data/game/du/duke-nukem-3d-reloaded.json b/data/game/du/duke-nukem-3d-reloaded.json new file mode 100644 index 000000000000..bb49e6cea123 --- /dev/null +++ b/data/game/du/duke-nukem-3d-reloaded.json @@ -0,0 +1,21 @@ +{ + "slug": "duke-nukem-3d-reloaded", + "name": "Duke Nukem 3D: Reloaded", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4037670" + ], + "release_date": "2010-10-13", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter" + ], + "developers": [ + "Slipgate Ironworks" + ], + "publishers": [ + "Gearbox Software" + ] +} diff --git a/data/game/du/duke-nukem-kill-a-ton-collection.json b/data/game/du/duke-nukem-kill-a-ton-collection.json new file mode 100644 index 000000000000..8f9a2d8c4942 --- /dev/null +++ b/data/game/du/duke-nukem-kill-a-ton-collection.json @@ -0,0 +1,8 @@ +{ + "slug": "duke-nukem-kill-a-ton-collection", + "name": "Duke Nukem: Kill-A-Ton Collection", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121083494" + ] +} diff --git a/data/game/du/dune-ii-q5314939.json b/data/game/du/dune-ii-q5314939.json new file mode 100644 index 000000000000..7d5c0ec4edc4 --- /dev/null +++ b/data/game/du/dune-ii-q5314939.json @@ -0,0 +1,12 @@ +{ + "slug": "dune-ii-q5314939", + "name": "Dune II", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5314939" + ], + "release_date": "1992-01-01", + "platforms": [ + "cross-platform" + ] +} diff --git a/data/game/du/dungeon-hearts-dx.json b/data/game/du/dungeon-hearts-dx.json new file mode 100644 index 000000000000..22a97c929df3 --- /dev/null +++ b/data/game/du/dungeon-hearts-dx.json @@ -0,0 +1,18 @@ +{ + "slug": "dungeon-hearts-dx", + "name": "Dungeon Hearts DX", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130528066" + ], + "release_date": "2016-11-10", + "platforms": [ + "Wii U" + ], + "developers": [ + "Wolfgame" + ], + "publishers": [ + "Wolfgame" + ] +} diff --git a/data/game/du/dungeon-keeper-3.json b/data/game/du/dungeon-keeper-3.json new file mode 100644 index 000000000000..b916a9c561f1 --- /dev/null +++ b/data/game/du/dungeon-keeper-3.json @@ -0,0 +1,21 @@ +{ + "slug": "dungeon-keeper-3", + "name": "Dungeon Keeper 3", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1402904" + ], + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "real-time strategy", + "god game" + ], + "developers": [ + "Bullfrog Productions" + ], + "publishers": [ + "Electronic Arts" + ] +} diff --git a/data/game/du/dungeon-keeper-gold.json b/data/game/du/dungeon-keeper-gold.json new file mode 100644 index 000000000000..95c8a7160959 --- /dev/null +++ b/data/game/du/dungeon-keeper-gold.json @@ -0,0 +1,8 @@ +{ + "slug": "dungeon-keeper-gold", + "name": "Dungeon Keeper Gold", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120835999" + ] +} diff --git a/data/game/du/dungeon-keeper-the-deeper-dungeons.json b/data/game/du/dungeon-keeper-the-deeper-dungeons.json new file mode 100644 index 000000000000..288c16e95597 --- /dev/null +++ b/data/game/du/dungeon-keeper-the-deeper-dungeons.json @@ -0,0 +1,8 @@ +{ + "slug": "dungeon-keeper-the-deeper-dungeons", + "name": "Dungeon Keeper: The Deeper Dungeons", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125472332" + ] +} diff --git a/data/game/du/dungeon-lords-the-orb-and-the-oracle.json b/data/game/du/dungeon-lords-the-orb-and-the-oracle.json new file mode 100644 index 000000000000..0c2ce59d272f --- /dev/null +++ b/data/game/du/dungeon-lords-the-orb-and-the-oracle.json @@ -0,0 +1,17 @@ +{ + "slug": "dungeon-lords-the-orb-and-the-oracle", + "name": "Dungeon Lords: The Orb and the Oracle", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5315132" + ], + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "role-playing video game" + ], + "developers": [ + "Heuristic Park" + ] +} diff --git a/data/game/du/dungeon-siege-ii-broken-world.json b/data/game/du/dungeon-siege-ii-broken-world.json new file mode 100644 index 000000000000..584a029b2085 --- /dev/null +++ b/data/game/du/dungeon-siege-ii-broken-world.json @@ -0,0 +1,21 @@ +{ + "slug": "dungeon-siege-ii-broken-world", + "name": "Dungeon Siege II: Broken World", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1056878" + ], + "release_date": "2006-08-22", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "action role-playing game" + ], + "developers": [ + "Wargaming Seattle" + ], + "publishers": [ + "2K" + ] +} diff --git a/data/game/du/dungeon-siege-iii-treasures-of-the-sun.json b/data/game/du/dungeon-siege-iii-treasures-of-the-sun.json new file mode 100644 index 000000000000..15bfca4122af --- /dev/null +++ b/data/game/du/dungeon-siege-iii-treasures-of-the-sun.json @@ -0,0 +1,12 @@ +{ + "slug": "dungeon-siege-iii-treasures-of-the-sun", + "name": "Dungeon Siege III: Treasures of the Sun", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5315151" + ], + "release_date": "2011-10-25", + "platforms": [ + "Microsoft Windows" + ] +} diff --git a/data/game/du/dungeon-siege-legends-of-aranna.json b/data/game/du/dungeon-siege-legends-of-aranna.json new file mode 100644 index 000000000000..5c1256f8be86 --- /dev/null +++ b/data/game/du/dungeon-siege-legends-of-aranna.json @@ -0,0 +1,22 @@ +{ + "slug": "dungeon-siege-legends-of-aranna", + "name": "Dungeon Siege: Legends of Aranna", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2668030" + ], + "release_date": "2003-11-11", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "role-playing video game" + ], + "developers": [ + "Wargaming Seattle" + ], + "publishers": [ + "Xbox Game Studios" + ] +} diff --git a/data/game/du/dungeon-slime-collection.json b/data/game/du/dungeon-slime-collection.json new file mode 100644 index 000000000000..fad209cfa096 --- /dev/null +++ b/data/game/du/dungeon-slime-collection.json @@ -0,0 +1,18 @@ +{ + "slug": "dungeon-slime-collection", + "name": "Dungeon Slime Collection", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115299981" + ], + "release_date": "2022-07-22", + "platforms": [ + "Xbox Series X and Series S" + ], + "developers": [ + "Pequi studios" + ], + "publishers": [ + "Ratalaika Games" + ] +} diff --git a/data/game/du/dungeons-dragons-chronicles-of-mystara.json b/data/game/du/dungeons-dragons-chronicles-of-mystara.json new file mode 100644 index 000000000000..0c85bb8f11ff --- /dev/null +++ b/data/game/du/dungeons-dragons-chronicles-of-mystara.json @@ -0,0 +1,22 @@ +{ + "slug": "dungeons-dragons-chronicles-of-mystara", + "name": "Dungeons & Dragons: Chronicles of Mystara", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16267657" + ], + "release_date": "2013-06-18", + "platforms": [ + "PlayStation 3", + "Microsoft Windows" + ], + "genres": [ + "beat 'em up" + ], + "developers": [ + "Capcom" + ], + "publishers": [ + "Capcom" + ] +} diff --git a/data/game/du/dungeons-dragons-collection.json b/data/game/du/dungeons-dragons-collection.json new file mode 100644 index 000000000000..2e1639b413bc --- /dev/null +++ b/data/game/du/dungeons-dragons-collection.json @@ -0,0 +1,16 @@ +{ + "slug": "dungeons-dragons-collection", + "name": "Dungeons & Dragons Collection", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5315172" + ], + "release_date": "1999-03-04", + "genres": [ + "role-playing video game", + "beat 'em up" + ], + "developers": [ + "Capcom" + ] +} diff --git a/data/game/du/dungeons-dragons-dark-sun-series.json b/data/game/du/dungeons-dragons-dark-sun-series.json new file mode 100644 index 000000000000..f95d03dcedd0 --- /dev/null +++ b/data/game/du/dungeons-dragons-dark-sun-series.json @@ -0,0 +1,15 @@ +{ + "slug": "dungeons-dragons-dark-sun-series", + "name": "Dungeons & Dragons: Dark Sun Series", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135021241" + ], + "release_date": "2022-03-29", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "role-playing video game" + ] +} diff --git a/data/game/du/dungeons-dragons-krynn-series.json b/data/game/du/dungeons-dragons-krynn-series.json new file mode 100644 index 000000000000..b6eefc791065 --- /dev/null +++ b/data/game/du/dungeons-dragons-krynn-series.json @@ -0,0 +1,15 @@ +{ + "slug": "dungeons-dragons-krynn-series", + "name": "Dungeons & Dragons: Krynn Series", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134964867" + ], + "release_date": "2022-03-29", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "role-playing video game" + ] +} diff --git a/data/game/du/dungeons-dragons-ravenloft-series.json b/data/game/du/dungeons-dragons-ravenloft-series.json new file mode 100644 index 000000000000..a991237d07d3 --- /dev/null +++ b/data/game/du/dungeons-dragons-ravenloft-series.json @@ -0,0 +1,8 @@ +{ + "slug": "dungeons-dragons-ravenloft-series", + "name": "Dungeons & Dragons: Ravenloft Series", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135491468" + ] +} diff --git a/data/game/du/dunk-star.json b/data/game/du/dunk-star.json new file mode 100644 index 000000000000..f7af8062bfc1 --- /dev/null +++ b/data/game/du/dunk-star.json @@ -0,0 +1,8 @@ +{ + "slug": "dunk-star", + "name": "Dunk Star", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q86253528" + ] +} diff --git a/data/game/du/duolingo.json b/data/game/du/duolingo.json new file mode 100644 index 000000000000..2a6ca7a29778 --- /dev/null +++ b/data/game/du/duolingo.json @@ -0,0 +1,16 @@ +{ + "slug": "duolingo", + "name": "Duolingo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2918660" + ], + "platforms": [ + "iOS", + "Windows Phone", + "web browser" + ], + "genres": [ + "educational game" + ] +} diff --git a/data/game/du/durak-ntr-total-humiliation.json b/data/game/du/durak-ntr-total-humiliation.json new file mode 100644 index 000000000000..f2974bd174a3 --- /dev/null +++ b/data/game/du/durak-ntr-total-humiliation.json @@ -0,0 +1,20 @@ +{ + "slug": "durak-ntr-total-humiliation", + "name": "Durak NTR: Total Humiliation", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136098819" + ], + "release_date": "2025-02-15", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "erotic video game", + "card video game" + ], + "developers": [ + "Swimming Rock", + "Zee Vital" + ] +} diff --git a/data/game/dy/dying-light-2-stay-human-bloody-ties.json b/data/game/dy/dying-light-2-stay-human-bloody-ties.json new file mode 100644 index 000000000000..fafb911b8c18 --- /dev/null +++ b/data/game/dy/dying-light-2-stay-human-bloody-ties.json @@ -0,0 +1,19 @@ +{ + "slug": "dying-light-2-stay-human-bloody-ties", + "name": "Dying Light 2 Stay Human: Bloody Ties", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113585969" + ], + "release_date": "2022-11-10", + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 5", + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "survival horror", + "action role-playing game" + ] +} diff --git a/data/game/dy/dying-light-the-bozak-horde.json b/data/game/dy/dying-light-the-bozak-horde.json new file mode 100644 index 000000000000..ab64c28b543f --- /dev/null +++ b/data/game/dy/dying-light-the-bozak-horde.json @@ -0,0 +1,22 @@ +{ + "slug": "dying-light-the-bozak-horde", + "name": "Dying Light: The Bozak Horde", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q93960909" + ], + "release_date": "2015-05-26", + "platforms": [ + "macOS", + "Microsoft Windows", + "PlayStation 4" + ], + "genres": [ + "first-person shooter", + "survival horror", + "action-adventure game" + ], + "publishers": [ + "Warner Bros. Games" + ] +} diff --git a/data/game/dy/dying-light-the-following.json b/data/game/dy/dying-light-the-following.json new file mode 100644 index 000000000000..7214036bd448 --- /dev/null +++ b/data/game/dy/dying-light-the-following.json @@ -0,0 +1,22 @@ +{ + "slug": "dying-light-the-following", + "name": "Dying Light: The Following", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22662531" + ], + "release_date": "2016-02-08", + "platforms": [ + "PlayStation 4", + "macOS", + "Microsoft Windows" + ], + "genres": [ + "survival horror", + "action role-playing game", + "post-apocalyptic video game" + ], + "publishers": [ + "Warner Bros. Games" + ] +} diff --git a/data/game/dy/dyn-aero-mcr-01ultralight.json b/data/game/dy/dyn-aero-mcr-01ultralight.json new file mode 100644 index 000000000000..d149074d380c --- /dev/null +++ b/data/game/dy/dyn-aero-mcr-01ultralight.json @@ -0,0 +1,8 @@ +{ + "slug": "dyn-aero-mcr-01ultralight", + "name": "Dyn'Aero MCR-01Ultralight", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140458594" + ] +} diff --git a/data/game/dy/dynasty-warriors-9-empires-deluxe-edition.json b/data/game/dy/dynasty-warriors-9-empires-deluxe-edition.json new file mode 100644 index 000000000000..38bc5f1d7d91 --- /dev/null +++ b/data/game/dy/dynasty-warriors-9-empires-deluxe-edition.json @@ -0,0 +1,12 @@ +{ + "slug": "dynasty-warriors-9-empires-deluxe-edition", + "name": "Dynasty Warriors 9 Empires Deluxe Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110975553" + ], + "release_date": "2022-02-15", + "platforms": [ + "Xbox Series X and Series S" + ] +} diff --git a/data/game/ea/ea-classics-mega-collection.json b/data/game/ea/ea-classics-mega-collection.json new file mode 100644 index 000000000000..fce3dfe8dc08 --- /dev/null +++ b/data/game/ea/ea-classics-mega-collection.json @@ -0,0 +1,26 @@ +{ + "slug": "ea-classics-mega-collection", + "name": "EA Classics Mega Collection", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125686490" + ], + "release_date": "2023-05-15", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Spicy Horse", + "Visceral Games", + "Aspyr", + "DICE", + "Maxis", + "BioWare", + "Electronic Arts" + ], + "publishers": [ + "Electronic Arts", + "Aspyr" + ] +} diff --git a/data/game/ea/ea-replay.json b/data/game/ea/ea-replay.json new file mode 100644 index 000000000000..530db7cd5133 --- /dev/null +++ b/data/game/ea/ea-replay.json @@ -0,0 +1,18 @@ +{ + "slug": "ea-replay", + "name": "EA Replay", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5322547" + ], + "release_date": "2006-11-14", + "platforms": [ + "PlayStation Portable" + ], + "developers": [ + "EA Vancouver" + ], + "publishers": [ + "Electronic Arts" + ] +} diff --git a/data/game/ea/ea-sports-06-collection.json b/data/game/ea/ea-sports-06-collection.json new file mode 100644 index 000000000000..e6ed13843960 --- /dev/null +++ b/data/game/ea/ea-sports-06-collection.json @@ -0,0 +1,8 @@ +{ + "slug": "ea-sports-06-collection", + "name": "EA Sports: 06 Collection", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q85758132" + ] +} diff --git a/data/game/ea/ea-sports-07-collection.json b/data/game/ea/ea-sports-07-collection.json new file mode 100644 index 000000000000..865a00348009 --- /dev/null +++ b/data/game/ea/ea-sports-07-collection.json @@ -0,0 +1,8 @@ +{ + "slug": "ea-sports-07-collection", + "name": "EA Sports: 07 Collection", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q85758135" + ] +} diff --git a/data/game/ea/ea-sports-08-collection.json b/data/game/ea/ea-sports-08-collection.json new file mode 100644 index 000000000000..8e37d33e5c5a --- /dev/null +++ b/data/game/ea/ea-sports-08-collection.json @@ -0,0 +1,8 @@ +{ + "slug": "ea-sports-08-collection", + "name": "EA Sports 08 Collection", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q85758137" + ] +} diff --git a/data/game/ea/ea-sports-fc-tactical.json b/data/game/ea/ea-sports-fc-tactical.json new file mode 100644 index 000000000000..969de81337fe --- /dev/null +++ b/data/game/ea/ea-sports-fc-tactical.json @@ -0,0 +1,8 @@ +{ + "slug": "ea-sports-fc-tactical", + "name": "EA Sports FC Tactical", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140471138" + ] +} diff --git a/data/game/ea/ea-sports-fifa-18-nba-live-18-the-one-edition-bundle.json b/data/game/ea/ea-sports-fifa-18-nba-live-18-the-one-edition-bundle.json new file mode 100644 index 000000000000..baef63a48c79 --- /dev/null +++ b/data/game/ea/ea-sports-fifa-18-nba-live-18-the-one-edition-bundle.json @@ -0,0 +1,9 @@ +{ + "slug": "ea-sports-fifa-18-nba-live-18-the-one-edition-bundle", + "name": "EA SPORTS FIFA 18 & NBA LIVE 18 The One Edition Bundle", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q87914646" + ], + "release_date": "2017-11-07" +} diff --git a/data/game/ea/ea-sports-fifa-18-need-for-speed-payback-bundle.json b/data/game/ea/ea-sports-fifa-18-need-for-speed-payback-bundle.json new file mode 100644 index 000000000000..359c1cd81740 --- /dev/null +++ b/data/game/ea/ea-sports-fifa-18-need-for-speed-payback-bundle.json @@ -0,0 +1,9 @@ +{ + "slug": "ea-sports-fifa-18-need-for-speed-payback-bundle", + "name": "EA Sports FIFA 18 & Need for Speed Payback Bundle", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q87914285" + ], + "release_date": "2017-11-14" +} diff --git a/data/game/ea/ea-sports-fifa-18-nhl-18-bundle.json b/data/game/ea/ea-sports-fifa-18-nhl-18-bundle.json new file mode 100644 index 000000000000..4e9515187e44 --- /dev/null +++ b/data/game/ea/ea-sports-fifa-18-nhl-18-bundle.json @@ -0,0 +1,9 @@ +{ + "slug": "ea-sports-fifa-18-nhl-18-bundle", + "name": "EA SPORTS FIFA 18 & NHL 18 Bundle", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q87914774" + ], + "release_date": "2017-11-07" +} diff --git a/data/game/ea/earth-2140-mission-pack-1.json b/data/game/ea/earth-2140-mission-pack-1.json new file mode 100644 index 000000000000..5d2c692e085e --- /dev/null +++ b/data/game/ea/earth-2140-mission-pack-1.json @@ -0,0 +1,9 @@ +{ + "slug": "earth-2140-mission-pack-1", + "name": "Earth 2140: Mission Pack 1", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110154891" + ], + "release_date": "1998-01-01" +} diff --git a/data/game/ea/earth-2140-mission-pack-2-final-conflict.json b/data/game/ea/earth-2140-mission-pack-2-final-conflict.json new file mode 100644 index 000000000000..09e3d00823bf --- /dev/null +++ b/data/game/ea/earth-2140-mission-pack-2-final-conflict.json @@ -0,0 +1,9 @@ +{ + "slug": "earth-2140-mission-pack-2-final-conflict", + "name": "Earth 2140: Mission Pack 2 - Final Conflict", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110154902" + ], + "release_date": "1998-01-01" +} diff --git a/data/game/ea/earth-no-more.json b/data/game/ea/earth-no-more.json new file mode 100644 index 000000000000..9818b85beaff --- /dev/null +++ b/data/game/ea/earth-no-more.json @@ -0,0 +1,20 @@ +{ + "slug": "earth-no-more", + "name": "Earth No More", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4886197" + ], + "platforms": [ + "PlayStation 4", + "PlayStation 3", + "Microsoft Windows" + ], + "genres": [ + "science fiction video game", + "first-person shooter" + ], + "developers": [ + "Radar Group" + ] +} diff --git a/data/game/ea/earth-year-2066.json b/data/game/ea/earth-year-2066.json new file mode 100644 index 000000000000..fade2c69b901 --- /dev/null +++ b/data/game/ea/earth-year-2066.json @@ -0,0 +1,22 @@ +{ + "slug": "earth-year-2066", + "name": "Earth: Year 2066", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60173748" + ], + "release_date": "2014-04-16", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "survival game" + ], + "developers": [ + "Killing Day Studios" + ], + "publishers": [ + "Killing Day Studios" + ] +} diff --git a/data/game/ea/earthblade.json b/data/game/ea/earthblade.json new file mode 100644 index 000000000000..d64447c270d8 --- /dev/null +++ b/data/game/ea/earthblade.json @@ -0,0 +1,21 @@ +{ + "slug": "earthblade", + "name": "Earthblade", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q114881816" + ], + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "action-adventure game", + "platformer" + ], + "developers": [ + "Extremely OK Games" + ], + "publishers": [ + "Extremely OK Games" + ] +} diff --git a/data/game/ea/earthworm-jim-q5327338.json b/data/game/ea/earthworm-jim-q5327338.json new file mode 100644 index 000000000000..9fb34bc9ed0d --- /dev/null +++ b/data/game/ea/earthworm-jim-q5327338.json @@ -0,0 +1,20 @@ +{ + "slug": "earthworm-jim-q5327338", + "name": "Earthworm Jim", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5327338" + ], + "platforms": [ + "PlayStation Portable" + ], + "genres": [ + "platformer" + ], + "developers": [ + "Shiny Entertainment" + ], + "publishers": [ + "Atari" + ] +} diff --git a/data/game/ea/eastward-octopia.json b/data/game/ea/eastward-octopia.json new file mode 100644 index 000000000000..001478a38970 --- /dev/null +++ b/data/game/ea/eastward-octopia.json @@ -0,0 +1,25 @@ +{ + "slug": "eastward-octopia", + "name": "Eastward: Octopia", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124043819" + ], + "release_date": "2024-01-31", + "platforms": [ + "Nintendo 3DS", + "Microsoft Windows" + ], + "genres": [ + "action-adventure game", + "life simulation game", + "farming simulation game", + "post-apocalyptic video game" + ], + "developers": [ + "Pixpil" + ], + "publishers": [ + "Chucklefish" + ] +} diff --git a/data/game/ec/ecco-ii-sentinels-of-the-universe.json b/data/game/ec/ecco-ii-sentinels-of-the-universe.json new file mode 100644 index 000000000000..1b16229d74b7 --- /dev/null +++ b/data/game/ec/ecco-ii-sentinels-of-the-universe.json @@ -0,0 +1,8 @@ +{ + "slug": "ecco-ii-sentinels-of-the-universe", + "name": "Ecco II: Sentinels of the Universe", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116257472" + ] +} diff --git a/data/game/ec/echonox-24-36.json b/data/game/ec/echonox-24-36.json new file mode 100644 index 000000000000..70558b64dea9 --- /dev/null +++ b/data/game/ec/echonox-24-36.json @@ -0,0 +1,15 @@ +{ + "slug": "echonox-24-36", + "name": "Echonox 24/36", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140236984" + ], + "platforms": [ + "iOS" + ], + "genres": [ + "computer wargame", + "anime/gacha game" + ] +} diff --git a/data/game/ec/ecity-q11865428.json b/data/game/ec/ecity-q11865428.json new file mode 100644 index 000000000000..dc37150425dc --- /dev/null +++ b/data/game/ec/ecity-q11865428.json @@ -0,0 +1,8 @@ +{ + "slug": "ecity-q11865428", + "name": "eCity", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11865428" + ] +} diff --git a/data/game/ec/eclipse-q5332996.json b/data/game/ec/eclipse-q5332996.json new file mode 100644 index 000000000000..9d751f66e147 --- /dev/null +++ b/data/game/ec/eclipse-q5332996.json @@ -0,0 +1,16 @@ +{ + "slug": "eclipse-q5332996", + "name": "Eclipse", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5332996" + ], + "release_date": "2005-06-17", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "puzzle video game", + "action-adventure game" + ] +} diff --git a/data/game/ed/edge-classic.json b/data/game/ed/edge-classic.json new file mode 100644 index 000000000000..0259dd44078d --- /dev/null +++ b/data/game/ed/edge-classic.json @@ -0,0 +1,8 @@ +{ + "slug": "edge-classic", + "name": "EDGE-Classic", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124654505" + ] +} diff --git a/data/game/ed/edge-q67196228.json b/data/game/ed/edge-q67196228.json new file mode 100644 index 000000000000..555656c29b99 --- /dev/null +++ b/data/game/ed/edge-q67196228.json @@ -0,0 +1,8 @@ +{ + "slug": "edge-q67196228", + "name": "EDGE", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q67196228" + ] +} diff --git a/data/game/ed/eduke32.json b/data/game/ed/eduke32.json new file mode 100644 index 000000000000..64ed190dbb0a --- /dev/null +++ b/data/game/ed/eduke32.json @@ -0,0 +1,12 @@ +{ + "slug": "eduke32", + "name": "EDuke32", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q64167651" + ], + "release_date": "2004-01-01", + "platforms": [ + "Microsoft Windows" + ] +} diff --git a/data/game/ei/eight-days.json b/data/game/ei/eight-days.json new file mode 100644 index 000000000000..100bdb1bb053 --- /dev/null +++ b/data/game/ei/eight-days.json @@ -0,0 +1,23 @@ +{ + "slug": "eight-days", + "name": "Eight Days", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3720611" + ], + "release_date": "2009-10-02", + "platforms": [ + "PlayStation 3" + ], + "genres": [ + "action game", + "action-adventure game", + "third-person shooter" + ], + "developers": [ + "London Studio" + ], + "publishers": [ + "Sony Interactive Entertainment" + ] +} diff --git a/data/game/el/el-pogo-loco.json b/data/game/el/el-pogo-loco.json new file mode 100644 index 000000000000..18f58b1bed14 --- /dev/null +++ b/data/game/el/el-pogo-loco.json @@ -0,0 +1,8 @@ +{ + "slug": "el-pogo-loco", + "name": "El Pogo Loco", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q41654058" + ] +} diff --git a/data/game/el/elden-ring-nightreign-the-forsaken-hollows.json b/data/game/el/elden-ring-nightreign-the-forsaken-hollows.json new file mode 100644 index 000000000000..566b4596d566 --- /dev/null +++ b/data/game/el/elden-ring-nightreign-the-forsaken-hollows.json @@ -0,0 +1,15 @@ +{ + "slug": "elden-ring-nightreign-the-forsaken-hollows", + "name": "Elden Ring Nightreign: The Forsaken Hollows", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137299371" + ], + "release_date": "2025-12-04", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "FromSoftware" + ] +} diff --git a/data/game/el/elden-ring-shadow-of-the-erdtree-deluxe-edition.json b/data/game/el/elden-ring-shadow-of-the-erdtree-deluxe-edition.json new file mode 100644 index 000000000000..a48c0363e093 --- /dev/null +++ b/data/game/el/elden-ring-shadow-of-the-erdtree-deluxe-edition.json @@ -0,0 +1,23 @@ +{ + "slug": "elden-ring-shadow-of-the-erdtree-deluxe-edition", + "name": "Elden Ring: Shadow of the Erdtree Deluxe Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135767772" + ], + "release_date": "2022-02-24", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "action-adventure game", + "action role-playing game" + ], + "developers": [ + "FromSoftware" + ], + "publishers": [ + "FromSoftware", + "Bandai Namco Entertainment" + ] +} diff --git a/data/game/el/elden-ring-shadow-of-the-erdtree-edition.json b/data/game/el/elden-ring-shadow-of-the-erdtree-edition.json new file mode 100644 index 000000000000..5390737fe519 --- /dev/null +++ b/data/game/el/elden-ring-shadow-of-the-erdtree-edition.json @@ -0,0 +1,24 @@ +{ + "slug": "elden-ring-shadow-of-the-erdtree-edition", + "name": "Elden Ring: Shadow of the Erdtree Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135725592" + ], + "release_date": "2022-02-24", + "platforms": [ + "PlayStation 4", + "PlayStation 5", + "Microsoft Windows" + ], + "genres": [ + "action role-playing game" + ], + "developers": [ + "FromSoftware" + ], + "publishers": [ + "FromSoftware", + "Bandai Namco Entertainment" + ] +} diff --git a/data/game/el/eldritch-horror-mountains-of-madness.json b/data/game/el/eldritch-horror-mountains-of-madness.json new file mode 100644 index 000000000000..d09dcce18572 --- /dev/null +++ b/data/game/el/eldritch-horror-mountains-of-madness.json @@ -0,0 +1,8 @@ +{ + "slug": "eldritch-horror-mountains-of-madness", + "name": "Eldritch Horror: Mountains of Madness", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q31890383" + ] +} diff --git a/data/game/el/elemental-fallen-enchantress-legendary-heroes.json b/data/game/el/elemental-fallen-enchantress-legendary-heroes.json new file mode 100644 index 000000000000..9eb2710b17ec --- /dev/null +++ b/data/game/el/elemental-fallen-enchantress-legendary-heroes.json @@ -0,0 +1,8 @@ +{ + "slug": "elemental-fallen-enchantress-legendary-heroes", + "name": "Elemental: Fallen Enchantress - Legendary Heroes", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140471228" + ] +} diff --git a/data/game/el/elf-bowling-1-2.json b/data/game/el/elf-bowling-1-2.json new file mode 100644 index 000000000000..7143c8056b24 --- /dev/null +++ b/data/game/el/elf-bowling-1-2.json @@ -0,0 +1,22 @@ +{ + "slug": "elf-bowling-1-2", + "name": "Elf Bowling: 1 & 2", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q59616789" + ], + "release_date": "2005-11-28", + "platforms": [ + "Game Boy Advance", + "Nintendo DS" + ], + "genres": [ + "sports video game" + ], + "developers": [ + "NStorm" + ], + "publishers": [ + "Ignition Entertainment Ltd." + ] +} diff --git a/data/game/el/elf-opengo.json b/data/game/el/elf-opengo.json new file mode 100644 index 000000000000..0236ca54bce2 --- /dev/null +++ b/data/game/el/elf-opengo.json @@ -0,0 +1,8 @@ +{ + "slug": "elf-opengo", + "name": "ELF OpenGo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q55715870" + ] +} diff --git a/data/game/el/elite-dangerous-horizons.json b/data/game/el/elite-dangerous-horizons.json new file mode 100644 index 000000000000..833833f2b78a --- /dev/null +++ b/data/game/el/elite-dangerous-horizons.json @@ -0,0 +1,16 @@ +{ + "slug": "elite-dangerous-horizons", + "name": "Elite Dangerous: Horizons", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22344569" + ], + "release_date": "2015-12-15", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Frontier Developments" + ] +} diff --git a/data/game/el/elite-dangerous-odyssey.json b/data/game/el/elite-dangerous-odyssey.json new file mode 100644 index 000000000000..6da41d929119 --- /dev/null +++ b/data/game/el/elite-dangerous-odyssey.json @@ -0,0 +1,18 @@ +{ + "slug": "elite-dangerous-odyssey", + "name": "Elite Dangerous: Odyssey", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107650749" + ], + "release_date": "2021-05-19", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Frontier Developments" + ], + "publishers": [ + "Frontier Developments" + ] +} diff --git a/data/game/el/ellie-theme.json b/data/game/el/ellie-theme.json new file mode 100644 index 000000000000..4e83872d81b9 --- /dev/null +++ b/data/game/el/ellie-theme.json @@ -0,0 +1,18 @@ +{ + "slug": "ellie-theme", + "name": "Ellie Theme", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q84991127" + ], + "release_date": "2018-09-26", + "platforms": [ + "PlayStation 4" + ], + "developers": [ + "Sony Interactive Entertainment" + ], + "publishers": [ + "Sony Interactive Entertainment" + ] +} diff --git a/data/game/el/elven-legacy-magic.json b/data/game/el/elven-legacy-magic.json new file mode 100644 index 000000000000..a34a751839c0 --- /dev/null +++ b/data/game/el/elven-legacy-magic.json @@ -0,0 +1,15 @@ +{ + "slug": "elven-legacy-magic", + "name": "Elven Legacy: Magic", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135081840" + ], + "release_date": "2009-12-03", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "strategy video game" + ] +} diff --git a/data/game/el/elven-legacy-ranger.json b/data/game/el/elven-legacy-ranger.json new file mode 100644 index 000000000000..72d9e9977877 --- /dev/null +++ b/data/game/el/elven-legacy-ranger.json @@ -0,0 +1,12 @@ +{ + "slug": "elven-legacy-ranger", + "name": "Elven Legacy: Ranger", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112263596" + ], + "release_date": "2009-10-20", + "platforms": [ + "Microsoft Windows" + ] +} diff --git a/data/game/el/elven-legacy-siege.json b/data/game/el/elven-legacy-siege.json new file mode 100644 index 000000000000..aeaf1eb9b14b --- /dev/null +++ b/data/game/el/elven-legacy-siege.json @@ -0,0 +1,15 @@ +{ + "slug": "elven-legacy-siege", + "name": "Elven Legacy: Siege", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134965609" + ], + "release_date": "2009-11-17", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "strategy video game" + ] +} diff --git a/data/game/em/emacs-chess.json b/data/game/em/emacs-chess.json new file mode 100644 index 000000000000..251aa847bf0a --- /dev/null +++ b/data/game/em/emacs-chess.json @@ -0,0 +1,11 @@ +{ + "slug": "emacs-chess", + "name": "emacs-chess", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q133935584" + ], + "platforms": [ + "GNU Emacs" + ] +} diff --git a/data/game/em/emergence-q57973884.json b/data/game/em/emergence-q57973884.json new file mode 100644 index 000000000000..9792d6dbbf89 --- /dev/null +++ b/data/game/em/emergence-q57973884.json @@ -0,0 +1,9 @@ +{ + "slug": "emergence-q57973884", + "name": "Emergence", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q57973884" + ], + "release_date": "2017-09-03" +} diff --git a/data/game/em/emet-hunter-medic-class.json b/data/game/em/emet-hunter-medic-class.json new file mode 100644 index 000000000000..63ff82006c1b --- /dev/null +++ b/data/game/em/emet-hunter-medic-class.json @@ -0,0 +1,19 @@ +{ + "slug": "emet-hunter-medic-class", + "name": "Emet - Hunter (Medic Class)", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124637525" + ], + "release_date": "2015-12-16", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "science fiction video game" + ], + "publishers": [ + "2K" + ] +} diff --git a/data/game/em/empire-earth-ii-the-art-of-supremacy.json b/data/game/em/empire-earth-ii-the-art-of-supremacy.json new file mode 100644 index 000000000000..28402638b48d --- /dev/null +++ b/data/game/em/empire-earth-ii-the-art-of-supremacy.json @@ -0,0 +1,18 @@ +{ + "slug": "empire-earth-ii-the-art-of-supremacy", + "name": "Empire Earth II: The Art of Supremacy", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2582988" + ], + "release_date": "2006-02-14", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "real-time strategy" + ], + "developers": [ + "Rockstar New England" + ] +} diff --git a/data/game/em/empire-earth-the-art-of-conquest.json b/data/game/em/empire-earth-the-art-of-conquest.json new file mode 100644 index 000000000000..03c5afe8410e --- /dev/null +++ b/data/game/em/empire-earth-the-art-of-conquest.json @@ -0,0 +1,21 @@ +{ + "slug": "empire-earth-the-art-of-conquest", + "name": "Empire Earth: The Art of Conquest", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2733002" + ], + "release_date": "2002-09-17", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "real-time strategy" + ], + "developers": [ + "Rockstar New England" + ], + "publishers": [ + "Sierra Entertainment" + ] +} diff --git a/data/game/em/empire-of-the-ants-add-on.json b/data/game/em/empire-of-the-ants-add-on.json new file mode 100644 index 000000000000..26511f7d0906 --- /dev/null +++ b/data/game/em/empire-of-the-ants-add-on.json @@ -0,0 +1,15 @@ +{ + "slug": "empire-of-the-ants-add-on", + "name": "Empire of the Ants: Add-on", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3232768" + ], + "release_date": "2000-01-01", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "action game" + ] +} diff --git a/data/game/en/enderal.json b/data/game/en/enderal.json new file mode 100644 index 000000000000..199580af180b --- /dev/null +++ b/data/game/en/enderal.json @@ -0,0 +1,21 @@ +{ + "slug": "enderal", + "name": "Enderal", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q30169921" + ], + "release_date": "2016-07-03", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "action role-playing game" + ], + "developers": [ + "SureAI" + ], + "publishers": [ + "SureAI" + ] +} diff --git a/data/game/en/endless-legend-guardians.json b/data/game/en/endless-legend-guardians.json new file mode 100644 index 000000000000..cfc1b802ade6 --- /dev/null +++ b/data/game/en/endless-legend-guardians.json @@ -0,0 +1,8 @@ +{ + "slug": "endless-legend-guardians", + "name": "Endless Legend: Guardians", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140447252" + ] +} diff --git a/data/game/en/endless-legend-shadows.json b/data/game/en/endless-legend-shadows.json new file mode 100644 index 000000000000..94dafe2bcfd5 --- /dev/null +++ b/data/game/en/endless-legend-shadows.json @@ -0,0 +1,8 @@ +{ + "slug": "endless-legend-shadows", + "name": "Endless Legend: Shadows", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140447202" + ] +} diff --git a/data/game/en/endless-legend-shifters.json b/data/game/en/endless-legend-shifters.json new file mode 100644 index 000000000000..6beb7a975da1 --- /dev/null +++ b/data/game/en/endless-legend-shifters.json @@ -0,0 +1,8 @@ +{ + "slug": "endless-legend-shifters", + "name": "Endless Legend: Shifters", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140447184" + ] +} diff --git a/data/game/en/endless-legend-symbiosis.json b/data/game/en/endless-legend-symbiosis.json new file mode 100644 index 000000000000..8a5849d6a3e3 --- /dev/null +++ b/data/game/en/endless-legend-symbiosis.json @@ -0,0 +1,8 @@ +{ + "slug": "endless-legend-symbiosis", + "name": "Endless Legend: Symbiosis", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140455120" + ] +} diff --git a/data/game/en/endzone-a-world-apart-survivor-edition.json b/data/game/en/endzone-a-world-apart-survivor-edition.json new file mode 100644 index 000000000000..2509263adc6d --- /dev/null +++ b/data/game/en/endzone-a-world-apart-survivor-edition.json @@ -0,0 +1,18 @@ +{ + "slug": "endzone-a-world-apart-survivor-edition", + "name": "Endzone: A World Apart - Survivor Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112926202" + ], + "release_date": "2022-05-19", + "platforms": [ + "Xbox Series X and Series S" + ], + "developers": [ + "Gentlymad Studios" + ], + "publishers": [ + "Assemble Entertainment" + ] +} diff --git a/data/game/en/engalus.json b/data/game/en/engalus.json new file mode 100644 index 000000000000..da709ccf4e6b --- /dev/null +++ b/data/game/en/engalus.json @@ -0,0 +1,8 @@ +{ + "slug": "engalus", + "name": "Engalus", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q12686092" + ] +} diff --git a/data/game/en/enigma-q603040.json b/data/game/en/enigma-q603040.json new file mode 100644 index 000000000000..c978c1e9a717 --- /dev/null +++ b/data/game/en/enigma-q603040.json @@ -0,0 +1,17 @@ +{ + "slug": "enigma-q603040", + "name": "Enigma", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q603040" + ], + "release_date": "2013-04-02", + "platforms": [ + "Mac operating system", + "macOS", + "Microsoft Windows" + ], + "genres": [ + "puzzle video game" + ] +} diff --git a/data/game/en/enter-the-dominatrix-q63849212.json b/data/game/en/enter-the-dominatrix-q63849212.json new file mode 100644 index 000000000000..61755445257d --- /dev/null +++ b/data/game/en/enter-the-dominatrix-q63849212.json @@ -0,0 +1,15 @@ +{ + "slug": "enter-the-dominatrix-q63849212", + "name": "Enter the Dominatrix", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63849212" + ], + "platforms": [ + "PlayStation 3", + "Microsoft Windows" + ], + "publishers": [ + "THQ" + ] +} diff --git a/data/game/en/enter-the-dominatrix.json b/data/game/en/enter-the-dominatrix.json new file mode 100644 index 000000000000..2c1a67459e3e --- /dev/null +++ b/data/game/en/enter-the-dominatrix.json @@ -0,0 +1,18 @@ +{ + "slug": "enter-the-dominatrix", + "name": "Enter the Dominatrix", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17509320" + ], + "release_date": "2013-10-23", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "action-adventure game" + ], + "publishers": [ + "Deep Silver" + ] +} diff --git a/data/game/en/entry-point-freelancer-s-cut.json b/data/game/en/entry-point-freelancer-s-cut.json new file mode 100644 index 000000000000..102b107c9e2a --- /dev/null +++ b/data/game/en/entry-point-freelancer-s-cut.json @@ -0,0 +1,18 @@ +{ + "slug": "entry-point-freelancer-s-cut", + "name": "Entry Point: Freelancer's Cut", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137682690" + ], + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "shooter game", + "theft" + ], + "developers": [ + "Cishshato" + ] +} diff --git a/data/game/en/entry-point.json b/data/game/en/entry-point.json new file mode 100644 index 000000000000..5395f0df3646 --- /dev/null +++ b/data/game/en/entry-point.json @@ -0,0 +1,19 @@ +{ + "slug": "entry-point", + "name": "Entry Point", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126958203" + ], + "release_date": "2017-04-14", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "theft", + "shooter game" + ], + "developers": [ + "Cishshato" + ] +} diff --git a/data/game/ep/episode-1.json b/data/game/ep/episode-1.json new file mode 100644 index 000000000000..ff3cbf6f1c87 --- /dev/null +++ b/data/game/ep/episode-1.json @@ -0,0 +1,8 @@ +{ + "slug": "episode-1", + "name": "Episode 1", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117485897" + ] +} diff --git a/data/game/ep/episode-2.json b/data/game/ep/episode-2.json new file mode 100644 index 000000000000..f1368eac7794 --- /dev/null +++ b/data/game/ep/episode-2.json @@ -0,0 +1,8 @@ +{ + "slug": "episode-2", + "name": "Episode 2", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117487063" + ] +} diff --git a/data/game/ep/episode-3.json b/data/game/ep/episode-3.json new file mode 100644 index 000000000000..7acf9546ce09 --- /dev/null +++ b/data/game/ep/episode-3.json @@ -0,0 +1,8 @@ +{ + "slug": "episode-3", + "name": "Episode 3", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117487065" + ] +} diff --git a/data/game/ep/episode-4.json b/data/game/ep/episode-4.json new file mode 100644 index 000000000000..941d05c1b75e --- /dev/null +++ b/data/game/ep/episode-4.json @@ -0,0 +1,8 @@ +{ + "slug": "episode-4", + "name": "Episode 4", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117487072" + ] +} diff --git a/data/game/ep/episode-shadow.json b/data/game/ep/episode-shadow.json new file mode 100644 index 000000000000..aadbda107782 --- /dev/null +++ b/data/game/ep/episode-shadow.json @@ -0,0 +1,12 @@ +{ + "slug": "episode-shadow", + "name": "Episode Shadow", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q42428903" + ], + "release_date": "2017-11-07", + "platforms": [ + "Microsoft Windows" + ] +} diff --git a/data/game/er/erudite-trivia-games-quiz.json b/data/game/er/erudite-trivia-games-quiz.json new file mode 100644 index 000000000000..2dcf78fbddd5 --- /dev/null +++ b/data/game/er/erudite-trivia-games-quiz.json @@ -0,0 +1,17 @@ +{ + "slug": "erudite-trivia-games-quiz", + "name": "Erudite: Trivia Games & Quiz", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140392719" + ], + "platforms": [ + "iOS" + ], + "genres": [ + "trivia" + ], + "developers": [ + "Mioris" + ] +} diff --git a/data/game/es/escalation-q57973883.json b/data/game/es/escalation-q57973883.json new file mode 100644 index 000000000000..7487893107e9 --- /dev/null +++ b/data/game/es/escalation-q57973883.json @@ -0,0 +1,9 @@ +{ + "slug": "escalation-q57973883", + "name": "Escalation", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q57973883" + ], + "release_date": "2017-04-25" +} diff --git a/data/game/es/escape-from-woomera.json b/data/game/es/escape-from-woomera.json new file mode 100644 index 000000000000..9c7d8c4cfdda --- /dev/null +++ b/data/game/es/escape-from-woomera.json @@ -0,0 +1,16 @@ +{ + "slug": "escape-from-woomera", + "name": "Escape From Woomera", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5396941" + ], + "release_date": "2004-05-07", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "serious game", + "point-and-click adventure" + ] +} diff --git a/data/game/es/escape-the-undertaker.json b/data/game/es/escape-the-undertaker.json new file mode 100644 index 000000000000..876515f328e0 --- /dev/null +++ b/data/game/es/escape-the-undertaker.json @@ -0,0 +1,9 @@ +{ + "slug": "escape-the-undertaker", + "name": "Escape the Undertaker", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108827997" + ], + "release_date": "2021-01-01" +} diff --git a/data/game/es/esp32-doom.json b/data/game/es/esp32-doom.json new file mode 100644 index 000000000000..1882fb8a71ad --- /dev/null +++ b/data/game/es/esp32-doom.json @@ -0,0 +1,11 @@ +{ + "slug": "esp32-doom", + "name": "ESP32-DOOM", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124473487" + ], + "platforms": [ + "ESP32" + ] +} diff --git a/data/game/et/eternal-silence.json b/data/game/et/eternal-silence.json new file mode 100644 index 000000000000..7ff5434a541a --- /dev/null +++ b/data/game/et/eternal-silence.json @@ -0,0 +1,15 @@ +{ + "slug": "eternal-silence", + "name": "Eternal Silence", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5402688" + ], + "release_date": "2006-09-23", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter" + ] +} diff --git a/data/game/et/eternity-engine.json b/data/game/et/eternity-engine.json new file mode 100644 index 000000000000..5339bee384e2 --- /dev/null +++ b/data/game/et/eternity-engine.json @@ -0,0 +1,8 @@ +{ + "slug": "eternity-engine", + "name": "Eternity Engine", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q67219617" + ] +} diff --git a/data/game/et/etrian-odyssey-origins-collection.json b/data/game/et/etrian-odyssey-origins-collection.json new file mode 100644 index 000000000000..dc932359ce36 --- /dev/null +++ b/data/game/et/etrian-odyssey-origins-collection.json @@ -0,0 +1,18 @@ +{ + "slug": "etrian-odyssey-origins-collection", + "name": "Etrian Odyssey Origins Collection", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118213365" + ], + "release_date": "2023-06-01", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "role-playing video game" + ], + "publishers": [ + "Sega" + ] +} diff --git a/data/game/eu/eun-byul.json b/data/game/eu/eun-byul.json new file mode 100644 index 000000000000..fd645b54cf76 --- /dev/null +++ b/data/game/eu/eun-byul.json @@ -0,0 +1,11 @@ +{ + "slug": "eun-byul", + "name": "Eun-Byul", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q23995003" + ], + "developers": [ + "Korea Computer Center" + ] +} diff --git a/data/game/eu/euro-truck-simulator-2-actros-tuning-pack.json b/data/game/eu/euro-truck-simulator-2-actros-tuning-pack.json new file mode 100644 index 000000000000..e2cfc022f6d4 --- /dev/null +++ b/data/game/eu/euro-truck-simulator-2-actros-tuning-pack.json @@ -0,0 +1,19 @@ +{ + "slug": "euro-truck-simulator-2-actros-tuning-pack", + "name": "Euro Truck Simulator 2: Actros Tuning Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113178532" + ], + "release_date": "2019-09-04", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ] +} diff --git a/data/game/eu/euro-truck-simulator-2-australian-paint-jobs-pack.json b/data/game/eu/euro-truck-simulator-2-australian-paint-jobs-pack.json new file mode 100644 index 000000000000..4e5788603ce8 --- /dev/null +++ b/data/game/eu/euro-truck-simulator-2-australian-paint-jobs-pack.json @@ -0,0 +1,19 @@ +{ + "slug": "euro-truck-simulator-2-australian-paint-jobs-pack", + "name": "Euro Truck Simulator 2: Australian Paint Jobs Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113178342" + ], + "release_date": "2017-01-20", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ] +} diff --git a/data/game/eu/euro-truck-simulator-2-austrian-paint-jobs-pack.json b/data/game/eu/euro-truck-simulator-2-austrian-paint-jobs-pack.json new file mode 100644 index 000000000000..bb5c57ac47c3 --- /dev/null +++ b/data/game/eu/euro-truck-simulator-2-austrian-paint-jobs-pack.json @@ -0,0 +1,19 @@ +{ + "slug": "euro-truck-simulator-2-austrian-paint-jobs-pack", + "name": "Euro Truck Simulator 2: Austrian Paint Jobs Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113178105" + ], + "release_date": "2016-07-15", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ] +} diff --git a/data/game/eu/euro-truck-simulator-2-belgian-paint-jobs-pack.json b/data/game/eu/euro-truck-simulator-2-belgian-paint-jobs-pack.json new file mode 100644 index 000000000000..a0760070625f --- /dev/null +++ b/data/game/eu/euro-truck-simulator-2-belgian-paint-jobs-pack.json @@ -0,0 +1,19 @@ +{ + "slug": "euro-truck-simulator-2-belgian-paint-jobs-pack", + "name": "Euro Truck Simulator 2: Belgian Paint Jobs Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113178299" + ], + "release_date": "2016-12-01", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ] +} diff --git a/data/game/eu/euro-truck-simulator-2-beyond-the-baltic-sea.json b/data/game/eu/euro-truck-simulator-2-beyond-the-baltic-sea.json new file mode 100644 index 000000000000..911f581140c8 --- /dev/null +++ b/data/game/eu/euro-truck-simulator-2-beyond-the-baltic-sea.json @@ -0,0 +1,19 @@ +{ + "slug": "euro-truck-simulator-2-beyond-the-baltic-sea", + "name": "Euro Truck Simulator 2: Beyond the Baltic Sea", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113178414" + ], + "release_date": "2018-11-29", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ] +} diff --git a/data/game/eu/euro-truck-simulator-2-brazilian-paint-jobs-pack.json b/data/game/eu/euro-truck-simulator-2-brazilian-paint-jobs-pack.json new file mode 100644 index 000000000000..1637012054e0 --- /dev/null +++ b/data/game/eu/euro-truck-simulator-2-brazilian-paint-jobs-pack.json @@ -0,0 +1,19 @@ +{ + "slug": "euro-truck-simulator-2-brazilian-paint-jobs-pack", + "name": "Euro Truck Simulator 2: Brazilian Paint Jobs Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113177590" + ], + "release_date": "2014-06-11", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ] +} diff --git a/data/game/eu/euro-truck-simulator-2-bulgarian-paint-jobs-pack.json b/data/game/eu/euro-truck-simulator-2-bulgarian-paint-jobs-pack.json new file mode 100644 index 000000000000..98e91ca46773 --- /dev/null +++ b/data/game/eu/euro-truck-simulator-2-bulgarian-paint-jobs-pack.json @@ -0,0 +1,19 @@ +{ + "slug": "euro-truck-simulator-2-bulgarian-paint-jobs-pack", + "name": "Euro Truck Simulator 2: Bulgarian Paint Jobs Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113178580" + ], + "release_date": "2019-12-05", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ] +} diff --git a/data/game/eu/euro-truck-simulator-2-cabin-accessories.json b/data/game/eu/euro-truck-simulator-2-cabin-accessories.json new file mode 100644 index 000000000000..018745950c68 --- /dev/null +++ b/data/game/eu/euro-truck-simulator-2-cabin-accessories.json @@ -0,0 +1,19 @@ +{ + "slug": "euro-truck-simulator-2-cabin-accessories", + "name": "Euro Truck Simulator 2: Cabin Accessories", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113177927" + ], + "release_date": "2015-09-30", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ] +} diff --git a/data/game/eu/euro-truck-simulator-2-canadian-paint-jobs-pack.json b/data/game/eu/euro-truck-simulator-2-canadian-paint-jobs-pack.json new file mode 100644 index 000000000000..b7db5cbd3577 --- /dev/null +++ b/data/game/eu/euro-truck-simulator-2-canadian-paint-jobs-pack.json @@ -0,0 +1,19 @@ +{ + "slug": "euro-truck-simulator-2-canadian-paint-jobs-pack", + "name": "Euro Truck Simulator 2: Canadian Paint Jobs Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113177662" + ], + "release_date": "2014-07-01", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ] +} diff --git a/data/game/eu/euro-truck-simulator-2-chinese-paint-jobs-pack.json b/data/game/eu/euro-truck-simulator-2-chinese-paint-jobs-pack.json new file mode 100644 index 000000000000..a054e188d6bf --- /dev/null +++ b/data/game/eu/euro-truck-simulator-2-chinese-paint-jobs-pack.json @@ -0,0 +1,19 @@ +{ + "slug": "euro-truck-simulator-2-chinese-paint-jobs-pack", + "name": "Euro Truck Simulator 2: Chinese Paint Jobs Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113178202" + ], + "release_date": "2016-06-21", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ] +} diff --git a/data/game/eu/euro-truck-simulator-2-christmas-paint-jobs-pack.json b/data/game/eu/euro-truck-simulator-2-christmas-paint-jobs-pack.json new file mode 100644 index 000000000000..06948cbff857 --- /dev/null +++ b/data/game/eu/euro-truck-simulator-2-christmas-paint-jobs-pack.json @@ -0,0 +1,19 @@ +{ + "slug": "euro-truck-simulator-2-christmas-paint-jobs-pack", + "name": "Euro Truck Simulator 2: Christmas Paint Jobs Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113177765" + ], + "release_date": "2014-12-03", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ] +} diff --git a/data/game/eu/euro-truck-simulator-2-czech-paint-jobs-pack.json b/data/game/eu/euro-truck-simulator-2-czech-paint-jobs-pack.json new file mode 100644 index 000000000000..a9996ddda9fc --- /dev/null +++ b/data/game/eu/euro-truck-simulator-2-czech-paint-jobs-pack.json @@ -0,0 +1,19 @@ +{ + "slug": "euro-truck-simulator-2-czech-paint-jobs-pack", + "name": "Euro Truck Simulator 2: Czech Paint Jobs Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113177745" + ], + "release_date": "2014-10-24", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ] +} diff --git a/data/game/eu/euro-truck-simulator-2-daf-xg-xg.json b/data/game/eu/euro-truck-simulator-2-daf-xg-xg.json new file mode 100644 index 000000000000..535c68d54804 --- /dev/null +++ b/data/game/eu/euro-truck-simulator-2-daf-xg-xg.json @@ -0,0 +1,19 @@ +{ + "slug": "euro-truck-simulator-2-daf-xg-xg", + "name": "Euro Truck Simulator 2: DAF XG/XG+", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113178649" + ], + "release_date": "2021-06-10", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ] +} diff --git a/data/game/eu/euro-truck-simulator-2-danish-paint-jobs-pack.json b/data/game/eu/euro-truck-simulator-2-danish-paint-jobs-pack.json new file mode 100644 index 000000000000..22ebc9a933f0 --- /dev/null +++ b/data/game/eu/euro-truck-simulator-2-danish-paint-jobs-pack.json @@ -0,0 +1,19 @@ +{ + "slug": "euro-truck-simulator-2-danish-paint-jobs-pack", + "name": "Euro Truck Simulator 2: Danish Paint Jobs Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113177843" + ], + "release_date": "2015-05-06", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ] +} diff --git a/data/game/eu/euro-truck-simulator-2-dragon-truck-design-pack.json b/data/game/eu/euro-truck-simulator-2-dragon-truck-design-pack.json new file mode 100644 index 000000000000..67e5c0b2a3a6 --- /dev/null +++ b/data/game/eu/euro-truck-simulator-2-dragon-truck-design-pack.json @@ -0,0 +1,18 @@ +{ + "slug": "euro-truck-simulator-2-dragon-truck-design-pack", + "name": "Euro Truck Simulator 2: Dragon Truck Design Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113178310" + ], + "release_date": "2017-02-01", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ] +} diff --git a/data/game/eu/euro-truck-simulator-2-dutch-paint-jobs-pack.json b/data/game/eu/euro-truck-simulator-2-dutch-paint-jobs-pack.json new file mode 100644 index 000000000000..88c56c39fa11 --- /dev/null +++ b/data/game/eu/euro-truck-simulator-2-dutch-paint-jobs-pack.json @@ -0,0 +1,19 @@ +{ + "slug": "euro-truck-simulator-2-dutch-paint-jobs-pack", + "name": "Euro Truck Simulator 2: Dutch Paint Jobs Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113178403" + ], + "release_date": "2018-07-26", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ] +} diff --git a/data/game/eu/euro-truck-simulator-2-estonian-paint-jobs-pack.json b/data/game/eu/euro-truck-simulator-2-estonian-paint-jobs-pack.json new file mode 100644 index 000000000000..92698fcd0ff6 --- /dev/null +++ b/data/game/eu/euro-truck-simulator-2-estonian-paint-jobs-pack.json @@ -0,0 +1,19 @@ +{ + "slug": "euro-truck-simulator-2-estonian-paint-jobs-pack", + "name": "Euro Truck Simulator 2: Estonian Paint Jobs Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113178458" + ], + "release_date": "2018-11-29", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ] +} diff --git a/data/game/eu/euro-truck-simulator-2-fantasy-paint-jobs-pack.json b/data/game/eu/euro-truck-simulator-2-fantasy-paint-jobs-pack.json new file mode 100644 index 000000000000..3c40bac3be7a --- /dev/null +++ b/data/game/eu/euro-truck-simulator-2-fantasy-paint-jobs-pack.json @@ -0,0 +1,19 @@ +{ + "slug": "euro-truck-simulator-2-fantasy-paint-jobs-pack", + "name": "Euro Truck Simulator 2: Fantasy Paint Jobs Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113177612" + ], + "release_date": "2014-07-15", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ] +} diff --git a/data/game/eu/euro-truck-simulator-2-fh-tuning-pack.json b/data/game/eu/euro-truck-simulator-2-fh-tuning-pack.json new file mode 100644 index 000000000000..9f97ce1b72e0 --- /dev/null +++ b/data/game/eu/euro-truck-simulator-2-fh-tuning-pack.json @@ -0,0 +1,19 @@ +{ + "slug": "euro-truck-simulator-2-fh-tuning-pack", + "name": "Euro Truck Simulator 2: FH Tuning Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113178625" + ], + "release_date": "2020-06-02", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ] +} diff --git a/data/game/eu/euro-truck-simulator-2-finnish-paint-jobs-pack.json b/data/game/eu/euro-truck-simulator-2-finnish-paint-jobs-pack.json new file mode 100644 index 000000000000..6365837b1e3d --- /dev/null +++ b/data/game/eu/euro-truck-simulator-2-finnish-paint-jobs-pack.json @@ -0,0 +1,19 @@ +{ + "slug": "euro-truck-simulator-2-finnish-paint-jobs-pack", + "name": "Euro Truck Simulator 2: Finnish Paint Jobs Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113178287" + ], + "release_date": "2016-12-01", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ] +} diff --git a/data/game/eu/euro-truck-simulator-2-flip-paint-designs.json b/data/game/eu/euro-truck-simulator-2-flip-paint-designs.json new file mode 100644 index 000000000000..9067b72c286f --- /dev/null +++ b/data/game/eu/euro-truck-simulator-2-flip-paint-designs.json @@ -0,0 +1,19 @@ +{ + "slug": "euro-truck-simulator-2-flip-paint-designs", + "name": "Euro Truck Simulator 2: Flip Paint Designs", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113177543" + ], + "release_date": "2014-05-29", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ] +} diff --git a/data/game/eu/euro-truck-simulator-2-force-of-nature-paint-jobs-pack.json b/data/game/eu/euro-truck-simulator-2-force-of-nature-paint-jobs-pack.json new file mode 100644 index 000000000000..8851d8bfea7f --- /dev/null +++ b/data/game/eu/euro-truck-simulator-2-force-of-nature-paint-jobs-pack.json @@ -0,0 +1,19 @@ +{ + "slug": "euro-truck-simulator-2-force-of-nature-paint-jobs-pack", + "name": "Euro Truck Simulator 2: Force of Nature Paint Jobs Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113177419" + ], + "release_date": "2014-04-04", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ] +} diff --git a/data/game/eu/euro-truck-simulator-2-french-paint-jobs-pack.json b/data/game/eu/euro-truck-simulator-2-french-paint-jobs-pack.json new file mode 100644 index 000000000000..1c02550a14af --- /dev/null +++ b/data/game/eu/euro-truck-simulator-2-french-paint-jobs-pack.json @@ -0,0 +1,19 @@ +{ + "slug": "euro-truck-simulator-2-french-paint-jobs-pack", + "name": "Euro Truck Simulator 2: French Paint Jobs Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113177715" + ], + "release_date": "2014-10-10", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ] +} diff --git a/data/game/eu/euro-truck-simulator-2-german-paint-jobs-pack.json b/data/game/eu/euro-truck-simulator-2-german-paint-jobs-pack.json new file mode 100644 index 000000000000..2748eb23f305 --- /dev/null +++ b/data/game/eu/euro-truck-simulator-2-german-paint-jobs-pack.json @@ -0,0 +1,19 @@ +{ + "slug": "euro-truck-simulator-2-german-paint-jobs-pack", + "name": "Euro Truck Simulator 2: German Paint Jobs Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113177695" + ], + "release_date": "2014-10-01", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ] +} diff --git a/data/game/eu/euro-truck-simulator-2-going-east.json b/data/game/eu/euro-truck-simulator-2-going-east.json new file mode 100644 index 000000000000..b6b8d6d4534f --- /dev/null +++ b/data/game/eu/euro-truck-simulator-2-going-east.json @@ -0,0 +1,19 @@ +{ + "slug": "euro-truck-simulator-2-going-east", + "name": "Euro Truck Simulator 2: Going East!", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16946978" + ], + "release_date": "2013-09-19", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ] +} diff --git a/data/game/eu/euro-truck-simulator-2-goodyear-tyres-pack.json b/data/game/eu/euro-truck-simulator-2-goodyear-tyres-pack.json new file mode 100644 index 000000000000..4f0f30a2c856 --- /dev/null +++ b/data/game/eu/euro-truck-simulator-2-goodyear-tyres-pack.json @@ -0,0 +1,19 @@ +{ + "slug": "euro-truck-simulator-2-goodyear-tyres-pack", + "name": "Euro Truck Simulator 2: Goodyear Tyres Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113178569" + ], + "release_date": "2019-08-02", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ] +} diff --git a/data/game/eu/euro-truck-simulator-2-halloween-paint-jobs-pack.json b/data/game/eu/euro-truck-simulator-2-halloween-paint-jobs-pack.json new file mode 100644 index 000000000000..18c220f47714 --- /dev/null +++ b/data/game/eu/euro-truck-simulator-2-halloween-paint-jobs-pack.json @@ -0,0 +1,19 @@ +{ + "slug": "euro-truck-simulator-2-halloween-paint-jobs-pack", + "name": "Euro Truck Simulator 2: Halloween Paint Jobs Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113177342" + ], + "release_date": "2013-10-24", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ] +} diff --git a/data/game/eu/euro-truck-simulator-2-heart-of-russia.json b/data/game/eu/euro-truck-simulator-2-heart-of-russia.json new file mode 100644 index 000000000000..e379e4d54439 --- /dev/null +++ b/data/game/eu/euro-truck-simulator-2-heart-of-russia.json @@ -0,0 +1,18 @@ +{ + "slug": "euro-truck-simulator-2-heart-of-russia", + "name": "Euro Truck Simulator 2: Heart of Russia", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113178636" + ], + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ] +} diff --git a/data/game/eu/euro-truck-simulator-2-heavy-cargo-pack.json b/data/game/eu/euro-truck-simulator-2-heavy-cargo-pack.json new file mode 100644 index 000000000000..db7442e9bc43 --- /dev/null +++ b/data/game/eu/euro-truck-simulator-2-heavy-cargo-pack.json @@ -0,0 +1,19 @@ +{ + "slug": "euro-truck-simulator-2-heavy-cargo-pack", + "name": "Euro Truck Simulator 2: Heavy Cargo Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113178279" + ], + "release_date": "2017-05-12", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ] +} diff --git a/data/game/eu/euro-truck-simulator-2-high-power-cargo-pack.json b/data/game/eu/euro-truck-simulator-2-high-power-cargo-pack.json new file mode 100644 index 000000000000..493cccf8897e --- /dev/null +++ b/data/game/eu/euro-truck-simulator-2-high-power-cargo-pack.json @@ -0,0 +1,19 @@ +{ + "slug": "euro-truck-simulator-2-high-power-cargo-pack", + "name": "Euro Truck Simulator 2: High Power Cargo Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113177679" + ], + "release_date": "2014-08-14", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ] +} diff --git a/data/game/eu/euro-truck-simulator-2-hs-schoch-tuning-pack.json b/data/game/eu/euro-truck-simulator-2-hs-schoch-tuning-pack.json new file mode 100644 index 000000000000..f7f4bc3c3c87 --- /dev/null +++ b/data/game/eu/euro-truck-simulator-2-hs-schoch-tuning-pack.json @@ -0,0 +1,19 @@ +{ + "slug": "euro-truck-simulator-2-hs-schoch-tuning-pack", + "name": "Euro Truck Simulator 2: HS-Schoch Tuning Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113178618" + ], + "release_date": "2020-03-19", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ] +} diff --git a/data/game/eu/euro-truck-simulator-2-hungarian-paint-jobs-pack.json b/data/game/eu/euro-truck-simulator-2-hungarian-paint-jobs-pack.json new file mode 100644 index 000000000000..5d6af8a501cf --- /dev/null +++ b/data/game/eu/euro-truck-simulator-2-hungarian-paint-jobs-pack.json @@ -0,0 +1,19 @@ +{ + "slug": "euro-truck-simulator-2-hungarian-paint-jobs-pack", + "name": "Euro Truck Simulator 2: Hungarian Paint Jobs Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113178041" + ], + "release_date": "2016-04-19", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ] +} diff --git a/data/game/eu/euro-truck-simulator-2-iberia.json b/data/game/eu/euro-truck-simulator-2-iberia.json new file mode 100644 index 000000000000..bed8b820c53a --- /dev/null +++ b/data/game/eu/euro-truck-simulator-2-iberia.json @@ -0,0 +1,19 @@ +{ + "slug": "euro-truck-simulator-2-iberia", + "name": "Euro Truck Simulator 2: Iberia", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113178598" + ], + "release_date": "2021-04-08", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ] +} diff --git a/data/game/eu/euro-truck-simulator-2-ice-cold-paint-jobs-pack.json b/data/game/eu/euro-truck-simulator-2-ice-cold-paint-jobs-pack.json new file mode 100644 index 000000000000..4442d096d4a6 --- /dev/null +++ b/data/game/eu/euro-truck-simulator-2-ice-cold-paint-jobs-pack.json @@ -0,0 +1,19 @@ +{ + "slug": "euro-truck-simulator-2-ice-cold-paint-jobs-pack", + "name": "Euro Truck Simulator 2: Ice Cold Paint Jobs Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113177364" + ], + "release_date": "2013-12-10", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ] +} diff --git a/data/game/eu/euro-truck-simulator-2-irish-paint-jobs-pack.json b/data/game/eu/euro-truck-simulator-2-irish-paint-jobs-pack.json new file mode 100644 index 000000000000..e06ec45858d7 --- /dev/null +++ b/data/game/eu/euro-truck-simulator-2-irish-paint-jobs-pack.json @@ -0,0 +1,19 @@ +{ + "slug": "euro-truck-simulator-2-irish-paint-jobs-pack", + "name": "Euro Truck Simulator 2: Irish Paint Jobs Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113177493" + ], + "release_date": "2014-05-20", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ] +} diff --git a/data/game/eu/euro-truck-simulator-2-italia.json b/data/game/eu/euro-truck-simulator-2-italia.json new file mode 100644 index 000000000000..685940032fb5 --- /dev/null +++ b/data/game/eu/euro-truck-simulator-2-italia.json @@ -0,0 +1,19 @@ +{ + "slug": "euro-truck-simulator-2-italia", + "name": "Euro Truck Simulator 2: Italia", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113178369" + ], + "release_date": "2017-12-05", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ] +} diff --git a/data/game/eu/euro-truck-simulator-2-italian-paint-jobs-pack.json b/data/game/eu/euro-truck-simulator-2-italian-paint-jobs-pack.json new file mode 100644 index 000000000000..f4176f17331c --- /dev/null +++ b/data/game/eu/euro-truck-simulator-2-italian-paint-jobs-pack.json @@ -0,0 +1,19 @@ +{ + "slug": "euro-truck-simulator-2-italian-paint-jobs-pack", + "name": "Euro Truck Simulator 2: Italian Paint Jobs Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113178015" + ], + "release_date": "2016-05-04", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ] +} diff --git a/data/game/eu/euro-truck-simulator-2-japanese-paint-jobs-pack.json b/data/game/eu/euro-truck-simulator-2-japanese-paint-jobs-pack.json new file mode 100644 index 000000000000..d52fbbd0e091 --- /dev/null +++ b/data/game/eu/euro-truck-simulator-2-japanese-paint-jobs-pack.json @@ -0,0 +1,19 @@ +{ + "slug": "euro-truck-simulator-2-japanese-paint-jobs-pack", + "name": "Euro Truck Simulator 2: Japanese Paint Jobs Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113177963" + ], + "release_date": "2015-11-09", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ] +} diff --git a/data/game/eu/euro-truck-simulator-2-krone-trailer-pack.json b/data/game/eu/euro-truck-simulator-2-krone-trailer-pack.json new file mode 100644 index 000000000000..6f9ff2f5ec3f --- /dev/null +++ b/data/game/eu/euro-truck-simulator-2-krone-trailer-pack.json @@ -0,0 +1,19 @@ +{ + "slug": "euro-truck-simulator-2-krone-trailer-pack", + "name": "Euro Truck Simulator 2: Krone Trailer Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113178436" + ], + "release_date": "2018-09-17", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ] +} diff --git a/data/game/eu/euro-truck-simulator-2-latvian-paint-jobs-pack.json b/data/game/eu/euro-truck-simulator-2-latvian-paint-jobs-pack.json new file mode 100644 index 000000000000..05f7f74e8612 --- /dev/null +++ b/data/game/eu/euro-truck-simulator-2-latvian-paint-jobs-pack.json @@ -0,0 +1,19 @@ +{ + "slug": "euro-truck-simulator-2-latvian-paint-jobs-pack", + "name": "Euro Truck Simulator 2: Latvian Paint Jobs Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113178474" + ], + "release_date": "2018-11-29", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ] +} diff --git a/data/game/eu/euro-truck-simulator-2-lithuanian-paint-jobs-pack.json b/data/game/eu/euro-truck-simulator-2-lithuanian-paint-jobs-pack.json new file mode 100644 index 000000000000..43d7026cee84 --- /dev/null +++ b/data/game/eu/euro-truck-simulator-2-lithuanian-paint-jobs-pack.json @@ -0,0 +1,19 @@ +{ + "slug": "euro-truck-simulator-2-lithuanian-paint-jobs-pack", + "name": "Euro Truck Simulator 2: Lithuanian Paint Jobs Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113178490" + ], + "release_date": "2018-11-29", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ] +} diff --git a/data/game/eu/euro-truck-simulator-2-lunar-new-year-pack.json b/data/game/eu/euro-truck-simulator-2-lunar-new-year-pack.json new file mode 100644 index 000000000000..2ca53222097c --- /dev/null +++ b/data/game/eu/euro-truck-simulator-2-lunar-new-year-pack.json @@ -0,0 +1,19 @@ +{ + "slug": "euro-truck-simulator-2-lunar-new-year-pack", + "name": "Euro Truck Simulator 2: Lunar New Year Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113178247" + ], + "release_date": "2021-02-10", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ] +} diff --git a/data/game/eu/euro-truck-simulator-2-metallic-paint-jobs-pack.json b/data/game/eu/euro-truck-simulator-2-metallic-paint-jobs-pack.json new file mode 100644 index 000000000000..7c6b5c259037 --- /dev/null +++ b/data/game/eu/euro-truck-simulator-2-metallic-paint-jobs-pack.json @@ -0,0 +1,19 @@ +{ + "slug": "euro-truck-simulator-2-metallic-paint-jobs-pack", + "name": "Euro Truck Simulator 2: Metallic Paint Jobs Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113177439" + ], + "release_date": "2014-05-19", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ] +} diff --git a/data/game/eu/euro-truck-simulator-2-michelin-fan-pack.json b/data/game/eu/euro-truck-simulator-2-michelin-fan-pack.json new file mode 100644 index 000000000000..2220e51e4c56 --- /dev/null +++ b/data/game/eu/euro-truck-simulator-2-michelin-fan-pack.json @@ -0,0 +1,19 @@ +{ + "slug": "euro-truck-simulator-2-michelin-fan-pack", + "name": "Euro Truck Simulator 2: Michelin Fan Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113177946" + ], + "release_date": "2017-01-10", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ] +} diff --git a/data/game/eu/euro-truck-simulator-2-mighty-griffin-tuning-pack.json b/data/game/eu/euro-truck-simulator-2-mighty-griffin-tuning-pack.json new file mode 100644 index 000000000000..4b621b00bf83 --- /dev/null +++ b/data/game/eu/euro-truck-simulator-2-mighty-griffin-tuning-pack.json @@ -0,0 +1,19 @@ +{ + "slug": "euro-truck-simulator-2-mighty-griffin-tuning-pack", + "name": "Euro Truck Simulator 2: Mighty Griffin Tuning Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113178135" + ], + "release_date": "2016-06-28", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ] +} diff --git a/data/game/eu/euro-truck-simulator-2-nordic-horizons.json b/data/game/eu/euro-truck-simulator-2-nordic-horizons.json new file mode 100644 index 000000000000..3b3815d9efc7 --- /dev/null +++ b/data/game/eu/euro-truck-simulator-2-nordic-horizons.json @@ -0,0 +1,8 @@ +{ + "slug": "euro-truck-simulator-2-nordic-horizons", + "name": "Euro Truck Simulator 2: Nordic Horizons", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140420098" + ] +} diff --git a/data/game/eu/euro-truck-simulator-2-norwegian-paint-jobs-pack.json b/data/game/eu/euro-truck-simulator-2-norwegian-paint-jobs-pack.json new file mode 100644 index 000000000000..cbf83dc957f0 --- /dev/null +++ b/data/game/eu/euro-truck-simulator-2-norwegian-paint-jobs-pack.json @@ -0,0 +1,19 @@ +{ + "slug": "euro-truck-simulator-2-norwegian-paint-jobs-pack", + "name": "Euro Truck Simulator 2: Norwegian Paint Jobs Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113177821" + ], + "release_date": "2015-05-06", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ] +} diff --git a/data/game/eu/euro-truck-simulator-2-pink-ribbon-charity-pack.json b/data/game/eu/euro-truck-simulator-2-pink-ribbon-charity-pack.json new file mode 100644 index 000000000000..77b8f5d0a665 --- /dev/null +++ b/data/game/eu/euro-truck-simulator-2-pink-ribbon-charity-pack.json @@ -0,0 +1,19 @@ +{ + "slug": "euro-truck-simulator-2-pink-ribbon-charity-pack", + "name": "Euro Truck Simulator 2: Pink Ribbon Charity Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113178550" + ], + "release_date": "2019-10-01", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ] +} diff --git a/data/game/eu/euro-truck-simulator-2-pirate-paint-jobs-pack.json b/data/game/eu/euro-truck-simulator-2-pirate-paint-jobs-pack.json new file mode 100644 index 000000000000..f2b181e1c8eb --- /dev/null +++ b/data/game/eu/euro-truck-simulator-2-pirate-paint-jobs-pack.json @@ -0,0 +1,19 @@ +{ + "slug": "euro-truck-simulator-2-pirate-paint-jobs-pack", + "name": "Euro Truck Simulator 2: Pirate Paint Jobs Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113178218" + ], + "release_date": "2016-09-19", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ] +} diff --git a/data/game/eu/euro-truck-simulator-2-polish-paint-jobs-pack.json b/data/game/eu/euro-truck-simulator-2-polish-paint-jobs-pack.json new file mode 100644 index 000000000000..aeaff681ea31 --- /dev/null +++ b/data/game/eu/euro-truck-simulator-2-polish-paint-jobs-pack.json @@ -0,0 +1,19 @@ +{ + "slug": "euro-truck-simulator-2-polish-paint-jobs-pack", + "name": "Euro Truck Simulator 2: Polish Paint Jobs Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113177569" + ], + "release_date": "2014-06-30", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ] +} diff --git a/data/game/eu/euro-truck-simulator-2-portuguese-paint-jobs-pack.json b/data/game/eu/euro-truck-simulator-2-portuguese-paint-jobs-pack.json new file mode 100644 index 000000000000..3c6950618479 --- /dev/null +++ b/data/game/eu/euro-truck-simulator-2-portuguese-paint-jobs-pack.json @@ -0,0 +1,19 @@ +{ + "slug": "euro-truck-simulator-2-portuguese-paint-jobs-pack", + "name": "Euro Truck Simulator 2: Portuguese Paint Jobs Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113178390" + ], + "release_date": "2018-06-08", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ] +} diff --git a/data/game/eu/euro-truck-simulator-2-prehistoric-paint-jobs-pack.json b/data/game/eu/euro-truck-simulator-2-prehistoric-paint-jobs-pack.json new file mode 100644 index 000000000000..3729803d00b9 --- /dev/null +++ b/data/game/eu/euro-truck-simulator-2-prehistoric-paint-jobs-pack.json @@ -0,0 +1,19 @@ +{ + "slug": "euro-truck-simulator-2-prehistoric-paint-jobs-pack", + "name": "Euro Truck Simulator 2: Prehistoric Paint Jobs Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113177392" + ], + "release_date": "2015-07-28", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ] +} diff --git a/data/game/eu/euro-truck-simulator-2-raven-truck-design-pack.json b/data/game/eu/euro-truck-simulator-2-raven-truck-design-pack.json new file mode 100644 index 000000000000..ec0847743a1d --- /dev/null +++ b/data/game/eu/euro-truck-simulator-2-raven-truck-design-pack.json @@ -0,0 +1,19 @@ +{ + "slug": "euro-truck-simulator-2-raven-truck-design-pack", + "name": "Euro Truck Simulator 2: Raven Truck Design Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113177794" + ], + "release_date": "2014-12-08", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ] +} diff --git a/data/game/eu/euro-truck-simulator-2-renault-trucks-t-tuning-pack.json b/data/game/eu/euro-truck-simulator-2-renault-trucks-t-tuning-pack.json new file mode 100644 index 000000000000..74052f07e192 --- /dev/null +++ b/data/game/eu/euro-truck-simulator-2-renault-trucks-t-tuning-pack.json @@ -0,0 +1,19 @@ +{ + "slug": "euro-truck-simulator-2-renault-trucks-t-tuning-pack", + "name": "Euro Truck Simulator 2: Renault Trucks T Tuning Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113178679" + ], + "release_date": "2022-05-25", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ] +} diff --git a/data/game/eu/euro-truck-simulator-2-road-to-the-black-sea.json b/data/game/eu/euro-truck-simulator-2-road-to-the-black-sea.json new file mode 100644 index 000000000000..ed29c1111da5 --- /dev/null +++ b/data/game/eu/euro-truck-simulator-2-road-to-the-black-sea.json @@ -0,0 +1,19 @@ +{ + "slug": "euro-truck-simulator-2-road-to-the-black-sea", + "name": "Euro Truck Simulator 2: Road to the Black Sea", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113178513" + ], + "release_date": "2019-12-05", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ] +} diff --git a/data/game/eu/euro-truck-simulator-2-romanian-paint-jobs-pack.json b/data/game/eu/euro-truck-simulator-2-romanian-paint-jobs-pack.json new file mode 100644 index 000000000000..0df210fa5f31 --- /dev/null +++ b/data/game/eu/euro-truck-simulator-2-romanian-paint-jobs-pack.json @@ -0,0 +1,19 @@ +{ + "slug": "euro-truck-simulator-2-romanian-paint-jobs-pack", + "name": "Euro Truck Simulator 2: Romanian Paint Jobs Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113178322" + ], + "release_date": "2017-01-20", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ] +} diff --git a/data/game/eu/euro-truck-simulator-2-russian-paint-jobs-pack.json b/data/game/eu/euro-truck-simulator-2-russian-paint-jobs-pack.json new file mode 100644 index 000000000000..26051acee41e --- /dev/null +++ b/data/game/eu/euro-truck-simulator-2-russian-paint-jobs-pack.json @@ -0,0 +1,19 @@ +{ + "slug": "euro-truck-simulator-2-russian-paint-jobs-pack", + "name": "Euro Truck Simulator 2: Russian Paint Jobs Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113177908" + ], + "release_date": "2015-03-23", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ] +} diff --git a/data/game/eu/euro-truck-simulator-2-scandinavia.json b/data/game/eu/euro-truck-simulator-2-scandinavia.json new file mode 100644 index 000000000000..1d1e14f79374 --- /dev/null +++ b/data/game/eu/euro-truck-simulator-2-scandinavia.json @@ -0,0 +1,19 @@ +{ + "slug": "euro-truck-simulator-2-scandinavia", + "name": "Euro Truck Simulator 2: Scandinavia", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22262432" + ], + "release_date": "2015-05-06", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ] +} diff --git a/data/game/eu/euro-truck-simulator-2-schwarzm-ller-trailer-pack.json b/data/game/eu/euro-truck-simulator-2-schwarzm-ller-trailer-pack.json new file mode 100644 index 000000000000..17e4549d79bf --- /dev/null +++ b/data/game/eu/euro-truck-simulator-2-schwarzm-ller-trailer-pack.json @@ -0,0 +1,19 @@ +{ + "slug": "euro-truck-simulator-2-schwarzm-ller-trailer-pack", + "name": "Euro Truck Simulator 2: Schwarzmüller Trailer Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113178027" + ], + "release_date": "2016-09-16", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ] +} diff --git a/data/game/eu/euro-truck-simulator-2-scottish-paint-jobs-pack.json b/data/game/eu/euro-truck-simulator-2-scottish-paint-jobs-pack.json new file mode 100644 index 000000000000..514298ae9538 --- /dev/null +++ b/data/game/eu/euro-truck-simulator-2-scottish-paint-jobs-pack.json @@ -0,0 +1,19 @@ +{ + "slug": "euro-truck-simulator-2-scottish-paint-jobs-pack", + "name": "Euro Truck Simulator 2: Scottish Paint Jobs Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113177519" + ], + "release_date": "2014-05-20", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ] +} diff --git a/data/game/eu/euro-truck-simulator-2-slovak-paint-jobs-pack.json b/data/game/eu/euro-truck-simulator-2-slovak-paint-jobs-pack.json new file mode 100644 index 000000000000..4cfb840e36a2 --- /dev/null +++ b/data/game/eu/euro-truck-simulator-2-slovak-paint-jobs-pack.json @@ -0,0 +1,19 @@ +{ + "slug": "euro-truck-simulator-2-slovak-paint-jobs-pack", + "name": "Euro Truck Simulator 2: Slovak Paint Jobs Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113178052" + ], + "release_date": "2016-05-04", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ] +} diff --git a/data/game/eu/euro-truck-simulator-2-south-korean-paint-jobs-pack.json b/data/game/eu/euro-truck-simulator-2-south-korean-paint-jobs-pack.json new file mode 100644 index 000000000000..bf3710783732 --- /dev/null +++ b/data/game/eu/euro-truck-simulator-2-south-korean-paint-jobs-pack.json @@ -0,0 +1,19 @@ +{ + "slug": "euro-truck-simulator-2-south-korean-paint-jobs-pack", + "name": "Euro Truck Simulator 2: South Korean Paint Jobs Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113178157" + ], + "release_date": "2016-06-21", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ] +} diff --git a/data/game/eu/euro-truck-simulator-2-space-paint-jobs-pack.json b/data/game/eu/euro-truck-simulator-2-space-paint-jobs-pack.json new file mode 100644 index 000000000000..9be757ec6101 --- /dev/null +++ b/data/game/eu/euro-truck-simulator-2-space-paint-jobs-pack.json @@ -0,0 +1,19 @@ +{ + "slug": "euro-truck-simulator-2-space-paint-jobs-pack", + "name": "Euro Truck Simulator 2: Space Paint Jobs Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113178423" + ], + "release_date": "2018-08-31", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ] +} diff --git a/data/game/eu/euro-truck-simulator-2-spanish-paint-jobs-pack.json b/data/game/eu/euro-truck-simulator-2-spanish-paint-jobs-pack.json new file mode 100644 index 000000000000..afa546337bb9 --- /dev/null +++ b/data/game/eu/euro-truck-simulator-2-spanish-paint-jobs-pack.json @@ -0,0 +1,19 @@ +{ + "slug": "euro-truck-simulator-2-spanish-paint-jobs-pack", + "name": "Euro Truck Simulator 2: Spanish Paint Jobs Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113178061" + ], + "release_date": "2016-06-01", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ] +} diff --git a/data/game/eu/euro-truck-simulator-2-special-transport.json b/data/game/eu/euro-truck-simulator-2-special-transport.json new file mode 100644 index 000000000000..5beb3dda489c --- /dev/null +++ b/data/game/eu/euro-truck-simulator-2-special-transport.json @@ -0,0 +1,19 @@ +{ + "slug": "euro-truck-simulator-2-special-transport", + "name": "Euro Truck Simulator 2: Special Transport", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113178380" + ], + "release_date": "2017-12-13", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ] +} diff --git a/data/game/eu/euro-truck-simulator-2-super-stripes-paint-jobs-pack.json b/data/game/eu/euro-truck-simulator-2-super-stripes-paint-jobs-pack.json new file mode 100644 index 000000000000..f9724e7c5381 --- /dev/null +++ b/data/game/eu/euro-truck-simulator-2-super-stripes-paint-jobs-pack.json @@ -0,0 +1,19 @@ +{ + "slug": "euro-truck-simulator-2-super-stripes-paint-jobs-pack", + "name": "Euro Truck Simulator 2: Super Stripes Paint Jobs Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113178631" + ], + "release_date": "2020-09-17", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ] +} diff --git a/data/game/eu/euro-truck-simulator-2-swedish-paint-jobs-pack.json b/data/game/eu/euro-truck-simulator-2-swedish-paint-jobs-pack.json new file mode 100644 index 000000000000..bcc3fe803225 --- /dev/null +++ b/data/game/eu/euro-truck-simulator-2-swedish-paint-jobs-pack.json @@ -0,0 +1,19 @@ +{ + "slug": "euro-truck-simulator-2-swedish-paint-jobs-pack", + "name": "Euro Truck Simulator 2: Swedish Paint Jobs Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113177867" + ], + "release_date": "2015-05-06", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ] +} diff --git a/data/game/eu/euro-truck-simulator-2-swiss-paint-jobs-pack.json b/data/game/eu/euro-truck-simulator-2-swiss-paint-jobs-pack.json new file mode 100644 index 000000000000..2232d3163d07 --- /dev/null +++ b/data/game/eu/euro-truck-simulator-2-swiss-paint-jobs-pack.json @@ -0,0 +1,19 @@ +{ + "slug": "euro-truck-simulator-2-swiss-paint-jobs-pack", + "name": "Euro Truck Simulator 2: Swiss Paint Jobs Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113178173" + ], + "release_date": "2016-07-15", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ] +} diff --git a/data/game/eu/euro-truck-simulator-2-turkish-paint-jobs-pack.json b/data/game/eu/euro-truck-simulator-2-turkish-paint-jobs-pack.json new file mode 100644 index 000000000000..89bbee95dbd0 --- /dev/null +++ b/data/game/eu/euro-truck-simulator-2-turkish-paint-jobs-pack.json @@ -0,0 +1,19 @@ +{ + "slug": "euro-truck-simulator-2-turkish-paint-jobs-pack", + "name": "Euro Truck Simulator 2: Turkish Paint Jobs Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113177982" + ], + "release_date": "2016-04-19", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ] +} diff --git a/data/game/eu/euro-truck-simulator-2-uk-paint-jobs-pack.json b/data/game/eu/euro-truck-simulator-2-uk-paint-jobs-pack.json new file mode 100644 index 000000000000..9d48e54a11fb --- /dev/null +++ b/data/game/eu/euro-truck-simulator-2-uk-paint-jobs-pack.json @@ -0,0 +1,19 @@ +{ + "slug": "euro-truck-simulator-2-uk-paint-jobs-pack", + "name": "Euro Truck Simulator 2: UK Paint Jobs Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113177466" + ], + "release_date": "2014-05-20", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ] +} diff --git a/data/game/eu/euro-truck-simulator-2-ukrainian-paint-jobs-pack.json b/data/game/eu/euro-truck-simulator-2-ukrainian-paint-jobs-pack.json new file mode 100644 index 000000000000..ec5bbbc5b8f5 --- /dev/null +++ b/data/game/eu/euro-truck-simulator-2-ukrainian-paint-jobs-pack.json @@ -0,0 +1,19 @@ +{ + "slug": "euro-truck-simulator-2-ukrainian-paint-jobs-pack", + "name": "Euro Truck Simulator 2: Ukrainian Paint Jobs Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113178661" + ], + "release_date": "2022-03-04", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ] +} diff --git a/data/game/eu/euro-truck-simulator-2-usa-paint-jobs-pack.json b/data/game/eu/euro-truck-simulator-2-usa-paint-jobs-pack.json new file mode 100644 index 000000000000..1d579465a37f --- /dev/null +++ b/data/game/eu/euro-truck-simulator-2-usa-paint-jobs-pack.json @@ -0,0 +1,19 @@ +{ + "slug": "euro-truck-simulator-2-usa-paint-jobs-pack", + "name": "Euro Truck Simulator 2: USA Paint Jobs Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113177640" + ], + "release_date": "2014-07-03", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ] +} diff --git a/data/game/eu/euro-truck-simulator-2-valentine-s-paint-jobs-pack.json b/data/game/eu/euro-truck-simulator-2-valentine-s-paint-jobs-pack.json new file mode 100644 index 000000000000..c3acb3abe5a8 --- /dev/null +++ b/data/game/eu/euro-truck-simulator-2-valentine-s-paint-jobs-pack.json @@ -0,0 +1,19 @@ +{ + "slug": "euro-truck-simulator-2-valentine-s-paint-jobs-pack", + "name": "Euro Truck Simulator 2: Valentine's Paint Jobs Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113178354" + ], + "release_date": "2017-02-10", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ] +} diff --git a/data/game/eu/euro-truck-simulator-2-viking-legends.json b/data/game/eu/euro-truck-simulator-2-viking-legends.json new file mode 100644 index 000000000000..85d001ffaee4 --- /dev/null +++ b/data/game/eu/euro-truck-simulator-2-viking-legends.json @@ -0,0 +1,19 @@ +{ + "slug": "euro-truck-simulator-2-viking-legends", + "name": "Euro Truck Simulator 2: Viking Legends", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113177888" + ], + "release_date": "2015-05-06", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ] +} diff --git a/data/game/eu/euro-truck-simulator-2-vive-la-france.json b/data/game/eu/euro-truck-simulator-2-vive-la-france.json new file mode 100644 index 000000000000..b4d26773fce8 --- /dev/null +++ b/data/game/eu/euro-truck-simulator-2-vive-la-france.json @@ -0,0 +1,19 @@ +{ + "slug": "euro-truck-simulator-2-vive-la-france", + "name": "Euro Truck Simulator 2: Vive la France!", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113178263" + ], + "release_date": "2016-12-05", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ] +} diff --git a/data/game/eu/euro-truck-simulator-2-volvo-construction-equipment.json b/data/game/eu/euro-truck-simulator-2-volvo-construction-equipment.json new file mode 100644 index 000000000000..52d7c5bcd42f --- /dev/null +++ b/data/game/eu/euro-truck-simulator-2-volvo-construction-equipment.json @@ -0,0 +1,19 @@ +{ + "slug": "euro-truck-simulator-2-volvo-construction-equipment", + "name": "Euro Truck Simulator 2: Volvo Construction Equipment", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113178652" + ], + "release_date": "2021-09-23", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ] +} diff --git a/data/game/eu/euro-truck-simulator-2-west-balkans.json b/data/game/eu/euro-truck-simulator-2-west-balkans.json new file mode 100644 index 000000000000..ce9f67f5ad73 --- /dev/null +++ b/data/game/eu/euro-truck-simulator-2-west-balkans.json @@ -0,0 +1,19 @@ +{ + "slug": "euro-truck-simulator-2-west-balkans", + "name": "Euro Truck Simulator 2: West Balkans", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113178694" + ], + "release_date": "2023-10-19", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ] +} diff --git a/data/game/eu/euro-truck-simulator-2-wheel-tuning-pack.json b/data/game/eu/euro-truck-simulator-2-wheel-tuning-pack.json new file mode 100644 index 000000000000..40cd43e70992 --- /dev/null +++ b/data/game/eu/euro-truck-simulator-2-wheel-tuning-pack.json @@ -0,0 +1,19 @@ +{ + "slug": "euro-truck-simulator-2-wheel-tuning-pack", + "name": "Euro Truck Simulator 2: Wheel Tuning Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113177996" + ], + "release_date": "2016-04-13", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ] +} diff --git a/data/game/eu/euro-truck-simulator-2-window-flags.json b/data/game/eu/euro-truck-simulator-2-window-flags.json new file mode 100644 index 000000000000..ab362b890ad8 --- /dev/null +++ b/data/game/eu/euro-truck-simulator-2-window-flags.json @@ -0,0 +1,19 @@ +{ + "slug": "euro-truck-simulator-2-window-flags", + "name": "Euro Truck Simulator 2: Window Flags", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113178087" + ], + "release_date": "2016-06-08", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ] +} diff --git a/data/game/eu/euro-truck-simulator-2-xf-tuning-pack.json b/data/game/eu/euro-truck-simulator-2-xf-tuning-pack.json new file mode 100644 index 000000000000..d4f357b64288 --- /dev/null +++ b/data/game/eu/euro-truck-simulator-2-xf-tuning-pack.json @@ -0,0 +1,19 @@ +{ + "slug": "euro-truck-simulator-2-xf-tuning-pack", + "name": "Euro Truck Simulator 2: XF Tuning Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113178231" + ], + "release_date": "2017-08-18", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ] +} diff --git a/data/game/eu/europa-universalis-iii-divine-wind.json b/data/game/eu/europa-universalis-iii-divine-wind.json new file mode 100644 index 000000000000..bcfefc99363f --- /dev/null +++ b/data/game/eu/europa-universalis-iii-divine-wind.json @@ -0,0 +1,21 @@ +{ + "slug": "europa-universalis-iii-divine-wind", + "name": "Europa Universalis III: Divine Wind", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4038317" + ], + "release_date": "2007-12-07", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "grand strategy wargame" + ], + "developers": [ + "Paradox Interactive" + ], + "publishers": [ + "Paradox Interactive" + ] +} diff --git a/data/game/eu/europa-universalis-iii-heir-to-the-throne.json b/data/game/eu/europa-universalis-iii-heir-to-the-throne.json new file mode 100644 index 000000000000..024ce95dded6 --- /dev/null +++ b/data/game/eu/europa-universalis-iii-heir-to-the-throne.json @@ -0,0 +1,21 @@ +{ + "slug": "europa-universalis-iii-heir-to-the-throne", + "name": "Europa Universalis III: Heir to the Throne", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4038316" + ], + "release_date": "2009-12-15", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "grand strategy wargame" + ], + "developers": [ + "Paradox Interactive" + ], + "publishers": [ + "Snowball Studios" + ] +} diff --git a/data/game/eu/europa-universalis-iii-in-nomine.json b/data/game/eu/europa-universalis-iii-in-nomine.json new file mode 100644 index 000000000000..bfb0df13e674 --- /dev/null +++ b/data/game/eu/europa-universalis-iii-in-nomine.json @@ -0,0 +1,21 @@ +{ + "slug": "europa-universalis-iii-in-nomine", + "name": "Europa Universalis III: In Nomine", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4038318" + ], + "release_date": "2008-05-28", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "grand strategy wargame" + ], + "developers": [ + "Paradox Interactive" + ], + "publishers": [ + "Snowball Studios" + ] +} diff --git a/data/game/eu/europa-universalis-iv-art-of-war.json b/data/game/eu/europa-universalis-iv-art-of-war.json new file mode 100644 index 000000000000..5f08a66cf60a --- /dev/null +++ b/data/game/eu/europa-universalis-iv-art-of-war.json @@ -0,0 +1,13 @@ +{ + "slug": "europa-universalis-iv-art-of-war", + "name": "Europa Universalis IV: Art of War", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115701558" + ], + "release_date": "2014-10-30", + "platforms": [ + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/game/eu/europa-universalis-iv-common-sense.json b/data/game/eu/europa-universalis-iv-common-sense.json new file mode 100644 index 000000000000..91f2d433bb60 --- /dev/null +++ b/data/game/eu/europa-universalis-iv-common-sense.json @@ -0,0 +1,13 @@ +{ + "slug": "europa-universalis-iv-common-sense", + "name": "Europa Universalis IV: Common Sense", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115701598" + ], + "release_date": "2015-06-09", + "platforms": [ + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/game/eu/europa-universalis-iv-wealth-of-nations.json b/data/game/eu/europa-universalis-iv-wealth-of-nations.json new file mode 100644 index 000000000000..8ca2a61fec29 --- /dev/null +++ b/data/game/eu/europa-universalis-iv-wealth-of-nations.json @@ -0,0 +1,11 @@ +{ + "slug": "europa-universalis-iv-wealth-of-nations", + "name": "Europa Universalis IV: Wealth of Nations", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125156590" + ], + "platforms": [ + "Microsoft Windows" + ] +} diff --git a/data/game/eu/europa-universalis-rome-vae-victis.json b/data/game/eu/europa-universalis-rome-vae-victis.json new file mode 100644 index 000000000000..07d0f2811197 --- /dev/null +++ b/data/game/eu/europa-universalis-rome-vae-victis.json @@ -0,0 +1,11 @@ +{ + "slug": "europa-universalis-rome-vae-victis", + "name": "Europa Universalis: Rome – Vae Victis", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16544349" + ], + "platforms": [ + "Microsoft Windows" + ] +} diff --git a/data/game/eu/european-release-of-chrono-trigger-for-nintendo-ds.json b/data/game/eu/european-release-of-chrono-trigger-for-nintendo-ds.json new file mode 100644 index 000000000000..9a039d3f4870 --- /dev/null +++ b/data/game/eu/european-release-of-chrono-trigger-for-nintendo-ds.json @@ -0,0 +1,9 @@ +{ + "slug": "european-release-of-chrono-trigger-for-nintendo-ds", + "name": "European Release of Chrono Trigger for Nintendo DS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q15063326" + ], + "release_date": "2009-02-06" +} diff --git a/data/game/ev/ev3doom.json b/data/game/ev/ev3doom.json new file mode 100644 index 000000000000..0c771e0c8857 --- /dev/null +++ b/data/game/ev/ev3doom.json @@ -0,0 +1,11 @@ +{ + "slug": "ev3doom", + "name": "EV3DOOM", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124473734" + ], + "platforms": [ + "Lego Mindstorms EV3" + ] +} diff --git a/data/game/ev/eve-online-incursion.json b/data/game/ev/eve-online-incursion.json new file mode 100644 index 000000000000..44026b6ec1a4 --- /dev/null +++ b/data/game/ev/eve-online-incursion.json @@ -0,0 +1,21 @@ +{ + "slug": "eve-online-incursion", + "name": "EVE Online: Incursion", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110724541" + ], + "release_date": "2010-01-01", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "massively multiplayer online role-playing game" + ], + "developers": [ + "Fenris Creations" + ], + "publishers": [ + "Fenris Creations" + ] +} diff --git a/data/game/ev/eve-online-the-second-genesis.json b/data/game/ev/eve-online-the-second-genesis.json new file mode 100644 index 000000000000..112dc3bace00 --- /dev/null +++ b/data/game/ev/eve-online-the-second-genesis.json @@ -0,0 +1,18 @@ +{ + "slug": "eve-online-the-second-genesis", + "name": "EVE Online: The Second Genesis", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110782681" + ], + "release_date": "2003-01-01", + "genres": [ + "role-playing video game" + ], + "developers": [ + "Fenris Creations" + ], + "publishers": [ + "Fenris Creations" + ] +} diff --git a/data/game/ev/eve-online-trinity.json b/data/game/ev/eve-online-trinity.json new file mode 100644 index 000000000000..fb7c609817ce --- /dev/null +++ b/data/game/ev/eve-online-trinity.json @@ -0,0 +1,8 @@ +{ + "slug": "eve-online-trinity", + "name": "Eve Online: Trinity", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134321880" + ] +} diff --git a/data/game/ev/everland.json b/data/game/ev/everland.json new file mode 100644 index 000000000000..30d307d10f3b --- /dev/null +++ b/data/game/ev/everland.json @@ -0,0 +1,15 @@ +{ + "slug": "everland", + "name": "Everland", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112609316" + ], + "release_date": "2020-05-16", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "massively multiplayer online game" + ] +} diff --git a/data/game/ev/everquest-call-of-the-forsaken.json b/data/game/ev/everquest-call-of-the-forsaken.json new file mode 100644 index 000000000000..735c7c2ed52b --- /dev/null +++ b/data/game/ev/everquest-call-of-the-forsaken.json @@ -0,0 +1,21 @@ +{ + "slug": "everquest-call-of-the-forsaken", + "name": "EverQuest: Call of the Forsaken", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16259498" + ], + "release_date": "2013-10-08", + "platforms": [ + "personal computer" + ], + "genres": [ + "massively multiplayer online role-playing game" + ], + "developers": [ + "Daybreak Game Company" + ], + "publishers": [ + "Daybreak Game Company" + ] +} diff --git a/data/game/ev/everquest-depths-of-darkhollow.json b/data/game/ev/everquest-depths-of-darkhollow.json new file mode 100644 index 000000000000..a3bff1b58269 --- /dev/null +++ b/data/game/ev/everquest-depths-of-darkhollow.json @@ -0,0 +1,21 @@ +{ + "slug": "everquest-depths-of-darkhollow", + "name": "EverQuest: Depths of Darkhollow", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5416807" + ], + "release_date": "2005-09-13", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "massively multiplayer online role-playing game" + ], + "developers": [ + "Daybreak Game Company" + ], + "publishers": [ + "Daybreak Game Company" + ] +} diff --git a/data/game/ev/everquest-dragons-of-norrath.json b/data/game/ev/everquest-dragons-of-norrath.json new file mode 100644 index 000000000000..1cb7c0dc8f13 --- /dev/null +++ b/data/game/ev/everquest-dragons-of-norrath.json @@ -0,0 +1,21 @@ +{ + "slug": "everquest-dragons-of-norrath", + "name": "EverQuest: Dragons of Norrath", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5416806" + ], + "release_date": "2005-02-15", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "massively multiplayer online role-playing game" + ], + "developers": [ + "Daybreak Game Company" + ], + "publishers": [ + "Daybreak Game Company" + ] +} diff --git a/data/game/ev/everquest-empires-of-kunark.json b/data/game/ev/everquest-empires-of-kunark.json new file mode 100644 index 000000000000..79a3ef17c3c3 --- /dev/null +++ b/data/game/ev/everquest-empires-of-kunark.json @@ -0,0 +1,8 @@ +{ + "slug": "everquest-empires-of-kunark", + "name": "EverQuest: Empires of Kunark", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140454933" + ] +} diff --git a/data/game/ev/everquest-gates-of-discord.json b/data/game/ev/everquest-gates-of-discord.json new file mode 100644 index 000000000000..b30fac6b0417 --- /dev/null +++ b/data/game/ev/everquest-gates-of-discord.json @@ -0,0 +1,21 @@ +{ + "slug": "everquest-gates-of-discord", + "name": "EverQuest: Gates of Discord", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3062536" + ], + "release_date": "2004-02-10", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "massively multiplayer online role-playing game" + ], + "developers": [ + "Daybreak Game Company" + ], + "publishers": [ + "Daybreak Game Company" + ] +} diff --git a/data/game/ev/everquest-house-of-thule.json b/data/game/ev/everquest-house-of-thule.json new file mode 100644 index 000000000000..6f0fce062b19 --- /dev/null +++ b/data/game/ev/everquest-house-of-thule.json @@ -0,0 +1,21 @@ +{ + "slug": "everquest-house-of-thule", + "name": "EverQuest: House of Thule", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5416809" + ], + "release_date": "2010-10-12", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "massively multiplayer online role-playing game" + ], + "developers": [ + "Daybreak Game Company" + ], + "publishers": [ + "Daybreak Game Company" + ] +} diff --git a/data/game/ev/everquest-ii-age-of-discovery.json b/data/game/ev/everquest-ii-age-of-discovery.json new file mode 100644 index 000000000000..a05d4a4729eb --- /dev/null +++ b/data/game/ev/everquest-ii-age-of-discovery.json @@ -0,0 +1,18 @@ +{ + "slug": "everquest-ii-age-of-discovery", + "name": "EverQuest II: Age of Discovery", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5416823" + ], + "release_date": "2011-12-06", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "massively multiplayer online role-playing game" + ], + "developers": [ + "Daybreak Game Company" + ] +} diff --git a/data/game/ev/everquest-ii-chains-of-eternity.json b/data/game/ev/everquest-ii-chains-of-eternity.json new file mode 100644 index 000000000000..fcf8aec02938 --- /dev/null +++ b/data/game/ev/everquest-ii-chains-of-eternity.json @@ -0,0 +1,18 @@ +{ + "slug": "everquest-ii-chains-of-eternity", + "name": "EverQuest II: Chains of Eternity", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16259484" + ], + "release_date": "2012-11-13", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "massively multiplayer online role-playing game" + ], + "developers": [ + "Daybreak Game Company" + ] +} diff --git a/data/game/ev/everquest-ii-desert-of-flames.json b/data/game/ev/everquest-ii-desert-of-flames.json new file mode 100644 index 000000000000..4be60211f97e --- /dev/null +++ b/data/game/ev/everquest-ii-desert-of-flames.json @@ -0,0 +1,21 @@ +{ + "slug": "everquest-ii-desert-of-flames", + "name": "EverQuest II: Desert of Flames", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5416824" + ], + "release_date": "2005-09-13", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "massively multiplayer online role-playing game" + ], + "developers": [ + "Daybreak Game Company" + ], + "publishers": [ + "Daybreak Game Company" + ] +} diff --git a/data/game/ev/everquest-ii-destiny-of-velious.json b/data/game/ev/everquest-ii-destiny-of-velious.json new file mode 100644 index 000000000000..4357f6373e8e --- /dev/null +++ b/data/game/ev/everquest-ii-destiny-of-velious.json @@ -0,0 +1,21 @@ +{ + "slug": "everquest-ii-destiny-of-velious", + "name": "EverQuest II: Destiny of Velious", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5416825" + ], + "release_date": "2011-02-22", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "massively multiplayer online role-playing game" + ], + "developers": [ + "Daybreak Game Company" + ], + "publishers": [ + "Daybreak Game Company" + ] +} diff --git a/data/game/ev/everquest-ii-east.json b/data/game/ev/everquest-ii-east.json new file mode 100644 index 000000000000..0b188eaa5589 --- /dev/null +++ b/data/game/ev/everquest-ii-east.json @@ -0,0 +1,21 @@ +{ + "slug": "everquest-ii-east", + "name": "EverQuest II: East", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16255636" + ], + "release_date": "2005-04-01", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "massively multiplayer online role-playing game" + ], + "developers": [ + "Daybreak Game Company" + ], + "publishers": [ + "AGE" + ] +} diff --git a/data/game/ev/everquest-ii-echoes-of-faydwer.json b/data/game/ev/everquest-ii-echoes-of-faydwer.json new file mode 100644 index 000000000000..e91e7faa1142 --- /dev/null +++ b/data/game/ev/everquest-ii-echoes-of-faydwer.json @@ -0,0 +1,18 @@ +{ + "slug": "everquest-ii-echoes-of-faydwer", + "name": "EverQuest II: Echoes of Faydwer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3061444" + ], + "release_date": "2006-11-13", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "massively multiplayer online role-playing game" + ], + "developers": [ + "Daybreak Game Company" + ] +} diff --git a/data/game/ev/everquest-ii-kingdom-of-sky.json b/data/game/ev/everquest-ii-kingdom-of-sky.json new file mode 100644 index 000000000000..38da6f7b2ef7 --- /dev/null +++ b/data/game/ev/everquest-ii-kingdom-of-sky.json @@ -0,0 +1,21 @@ +{ + "slug": "everquest-ii-kingdom-of-sky", + "name": "EverQuest II: Kingdom of Sky", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5416835" + ], + "release_date": "2006-02-21", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "massively multiplayer online role-playing game" + ], + "developers": [ + "Daybreak Game Company" + ], + "publishers": [ + "Daybreak Game Company" + ] +} diff --git a/data/game/ev/everquest-ii-rise-of-kunark.json b/data/game/ev/everquest-ii-rise-of-kunark.json new file mode 100644 index 000000000000..8e0f5e400430 --- /dev/null +++ b/data/game/ev/everquest-ii-rise-of-kunark.json @@ -0,0 +1,21 @@ +{ + "slug": "everquest-ii-rise-of-kunark", + "name": "EverQuest II: Rise of Kunark", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5416826" + ], + "release_date": "2007-11-13", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "massively multiplayer online role-playing game" + ], + "developers": [ + "Daybreak Game Company" + ], + "publishers": [ + "Daybreak Game Company" + ] +} diff --git a/data/game/ev/everquest-ii-sentinel-s-fate.json b/data/game/ev/everquest-ii-sentinel-s-fate.json new file mode 100644 index 000000000000..9b462b96c3c5 --- /dev/null +++ b/data/game/ev/everquest-ii-sentinel-s-fate.json @@ -0,0 +1,21 @@ +{ + "slug": "everquest-ii-sentinel-s-fate", + "name": "EverQuest II: Sentinel's Fate", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5416828" + ], + "release_date": "2010-02-16", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "massively multiplayer online role-playing game" + ], + "developers": [ + "Daybreak Game Company" + ], + "publishers": [ + "Daybreak Game Company" + ] +} diff --git a/data/game/ev/everquest-ii-tears-of-veeshan.json b/data/game/ev/everquest-ii-tears-of-veeshan.json new file mode 100644 index 000000000000..aecd9d17661f --- /dev/null +++ b/data/game/ev/everquest-ii-tears-of-veeshan.json @@ -0,0 +1,21 @@ +{ + "slug": "everquest-ii-tears-of-veeshan", + "name": "EverQuest II: Tears of Veeshan", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16259494" + ], + "release_date": "2013-11-12", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "massively multiplayer online role-playing game" + ], + "developers": [ + "Daybreak Game Company" + ], + "publishers": [ + "Daybreak Game Company" + ] +} diff --git a/data/game/ev/everquest-ii-the-shadow-odyssey.json b/data/game/ev/everquest-ii-the-shadow-odyssey.json new file mode 100644 index 000000000000..4862777328f4 --- /dev/null +++ b/data/game/ev/everquest-ii-the-shadow-odyssey.json @@ -0,0 +1,21 @@ +{ + "slug": "everquest-ii-the-shadow-odyssey", + "name": "EverQuest II: The Shadow Odyssey", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5416829" + ], + "release_date": "2008-11-17", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "massively multiplayer online role-playing game" + ], + "developers": [ + "Daybreak Game Company" + ], + "publishers": [ + "Daybreak Game Company" + ] +} diff --git a/data/game/ev/everquest-lost-dungeons-of-norrath.json b/data/game/ev/everquest-lost-dungeons-of-norrath.json new file mode 100644 index 000000000000..5ece5e13a914 --- /dev/null +++ b/data/game/ev/everquest-lost-dungeons-of-norrath.json @@ -0,0 +1,21 @@ +{ + "slug": "everquest-lost-dungeons-of-norrath", + "name": "EverQuest: Lost Dungeons of Norrath", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16259503" + ], + "release_date": "2003-09-09", + "platforms": [ + "personal computer" + ], + "genres": [ + "massively multiplayer online role-playing game" + ], + "developers": [ + "Daybreak Game Company" + ], + "publishers": [ + "Daybreak Game Company" + ] +} diff --git a/data/game/ev/everquest-omens-of-war.json b/data/game/ev/everquest-omens-of-war.json new file mode 100644 index 000000000000..de22b935d73b --- /dev/null +++ b/data/game/ev/everquest-omens-of-war.json @@ -0,0 +1,21 @@ +{ + "slug": "everquest-omens-of-war", + "name": "EverQuest: Omens of War", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5416810" + ], + "release_date": "2004-09-14", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "massively multiplayer online role-playing game" + ], + "developers": [ + "Daybreak Game Company" + ], + "publishers": [ + "Daybreak Game Company" + ] +} diff --git a/data/game/ev/everquest-prophecy-of-ro.json b/data/game/ev/everquest-prophecy-of-ro.json new file mode 100644 index 000000000000..c985a89f3888 --- /dev/null +++ b/data/game/ev/everquest-prophecy-of-ro.json @@ -0,0 +1,21 @@ +{ + "slug": "everquest-prophecy-of-ro", + "name": "EverQuest: Prophecy of Ro", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5416811" + ], + "release_date": "2006-02-21", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "massively multiplayer online role-playing game" + ], + "developers": [ + "Daybreak Game Company" + ], + "publishers": [ + "Daybreak Game Company" + ] +} diff --git a/data/game/ev/everquest-rain-of-fear.json b/data/game/ev/everquest-rain-of-fear.json new file mode 100644 index 000000000000..081eef590956 --- /dev/null +++ b/data/game/ev/everquest-rain-of-fear.json @@ -0,0 +1,21 @@ +{ + "slug": "everquest-rain-of-fear", + "name": "EverQuest: Rain of Fear", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5416812" + ], + "release_date": "2012-11-28", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "massively multiplayer online role-playing game" + ], + "developers": [ + "Daybreak Game Company" + ], + "publishers": [ + "Daybreak Game Company" + ] +} diff --git a/data/game/ev/everquest-secrets-of-faydwer.json b/data/game/ev/everquest-secrets-of-faydwer.json new file mode 100644 index 000000000000..5e18541bf578 --- /dev/null +++ b/data/game/ev/everquest-secrets-of-faydwer.json @@ -0,0 +1,21 @@ +{ + "slug": "everquest-secrets-of-faydwer", + "name": "EverQuest: Secrets of Faydwer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5416814" + ], + "release_date": "2007-11-13", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "massively multiplayer online role-playing game" + ], + "developers": [ + "Daybreak Game Company" + ], + "publishers": [ + "Daybreak Game Company" + ] +} diff --git a/data/game/ev/everquest-seeds-of-destruction.json b/data/game/ev/everquest-seeds-of-destruction.json new file mode 100644 index 000000000000..a8ae0fb7ed13 --- /dev/null +++ b/data/game/ev/everquest-seeds-of-destruction.json @@ -0,0 +1,21 @@ +{ + "slug": "everquest-seeds-of-destruction", + "name": "EverQuest: Seeds of Destruction", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5416815" + ], + "release_date": "2008-10-21", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "massively multiplayer online role-playing game" + ], + "developers": [ + "Daybreak Game Company" + ], + "publishers": [ + "Daybreak Game Company" + ] +} diff --git a/data/game/ev/everquest-the-buried-sea.json b/data/game/ev/everquest-the-buried-sea.json new file mode 100644 index 000000000000..bc95d52c2757 --- /dev/null +++ b/data/game/ev/everquest-the-buried-sea.json @@ -0,0 +1,21 @@ +{ + "slug": "everquest-the-buried-sea", + "name": "EverQuest: The Buried Sea", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16259507" + ], + "release_date": "2007-02-13", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "massively multiplayer online role-playing game" + ], + "developers": [ + "Daybreak Game Company" + ], + "publishers": [ + "Daybreak Game Company" + ] +} diff --git a/data/game/ev/everquest-the-legacy-of-ykesha.json b/data/game/ev/everquest-the-legacy-of-ykesha.json new file mode 100644 index 000000000000..12e7a5389c3c --- /dev/null +++ b/data/game/ev/everquest-the-legacy-of-ykesha.json @@ -0,0 +1,21 @@ +{ + "slug": "everquest-the-legacy-of-ykesha", + "name": "EverQuest: The Legacy of Ykesha", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16259512" + ], + "release_date": "2003-02-25", + "platforms": [ + "personal computer" + ], + "genres": [ + "massively multiplayer online role-playing game" + ], + "developers": [ + "Daybreak Game Company" + ], + "publishers": [ + "Daybreak Game Company" + ] +} diff --git a/data/game/ev/everquest-the-ruins-of-kunark.json b/data/game/ev/everquest-the-ruins-of-kunark.json new file mode 100644 index 000000000000..4ce1e860478a --- /dev/null +++ b/data/game/ev/everquest-the-ruins-of-kunark.json @@ -0,0 +1,21 @@ +{ + "slug": "everquest-the-ruins-of-kunark", + "name": "EverQuest: The Ruins of Kunark", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16259515" + ], + "release_date": "2000-04-24", + "platforms": [ + "personal computer" + ], + "genres": [ + "massively multiplayer online role-playing game" + ], + "developers": [ + "Daybreak Game Company" + ], + "publishers": [ + "Daybreak Game Company" + ] +} diff --git a/data/game/ev/everquest-the-serpent-s-spine.json b/data/game/ev/everquest-the-serpent-s-spine.json new file mode 100644 index 000000000000..9196a2801618 --- /dev/null +++ b/data/game/ev/everquest-the-serpent-s-spine.json @@ -0,0 +1,21 @@ +{ + "slug": "everquest-the-serpent-s-spine", + "name": "EverQuest: The Serpent's Spine", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5416817" + ], + "release_date": "2006-09-19", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "massively multiplayer online role-playing game" + ], + "developers": [ + "Daybreak Game Company" + ], + "publishers": [ + "Daybreak Game Company" + ] +} diff --git a/data/game/ev/everquest-the-shadows-of-luclin.json b/data/game/ev/everquest-the-shadows-of-luclin.json new file mode 100644 index 000000000000..106be4b78bbe --- /dev/null +++ b/data/game/ev/everquest-the-shadows-of-luclin.json @@ -0,0 +1,21 @@ +{ + "slug": "everquest-the-shadows-of-luclin", + "name": "EverQuest: The Shadows of Luclin", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16259213" + ], + "release_date": "2001-12-04", + "platforms": [ + "personal computer" + ], + "genres": [ + "massively multiplayer online role-playing game" + ], + "developers": [ + "Daybreak Game Company" + ], + "publishers": [ + "Daybreak Game Company" + ] +} diff --git a/data/game/ev/everquest-underfoot.json b/data/game/ev/everquest-underfoot.json new file mode 100644 index 000000000000..c6d9d757e4df --- /dev/null +++ b/data/game/ev/everquest-underfoot.json @@ -0,0 +1,21 @@ +{ + "slug": "everquest-underfoot", + "name": "EverQuest: Underfoot", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5416820" + ], + "release_date": "2009-12-15", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "massively multiplayer online role-playing game" + ], + "developers": [ + "Daybreak Game Company" + ], + "publishers": [ + "Daybreak Game Company" + ] +} diff --git a/data/game/ev/everquest-veil-of-alaris.json b/data/game/ev/everquest-veil-of-alaris.json new file mode 100644 index 000000000000..8508798a439a --- /dev/null +++ b/data/game/ev/everquest-veil-of-alaris.json @@ -0,0 +1,21 @@ +{ + "slug": "everquest-veil-of-alaris", + "name": "EverQuest: Veil of Alaris", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5416822" + ], + "release_date": "2011-11-15", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "massively multiplayer online role-playing game" + ], + "developers": [ + "Daybreak Game Company" + ], + "publishers": [ + "Daybreak Game Company" + ] +} diff --git a/data/game/ev/everspace-encounters.json b/data/game/ev/everspace-encounters.json new file mode 100644 index 000000000000..b0ea84289a92 --- /dev/null +++ b/data/game/ev/everspace-encounters.json @@ -0,0 +1,23 @@ +{ + "slug": "everspace-encounters", + "name": "Everspace: Encounters", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136036309" + ], + "release_date": "2017-10-24", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "space combat simulation game", + "roguelite" + ], + "developers": [ + "ROCKFISH Games" + ], + "publishers": [ + "ROCKFISH Games" + ] +} diff --git a/data/game/ev/everwild.json b/data/game/ev/everwild.json new file mode 100644 index 000000000000..27128e2551e6 --- /dev/null +++ b/data/game/ev/everwild.json @@ -0,0 +1,21 @@ +{ + "slug": "everwild", + "name": "Everwild", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q79420097" + ], + "platforms": [ + "Xbox Series X and Series S", + "Microsoft Windows" + ], + "genres": [ + "action-adventure game" + ], + "developers": [ + "Rare Ltd." + ], + "publishers": [ + "Xbox Game Studios" + ] +} diff --git a/data/game/ev/everything-is-connected.json b/data/game/ev/everything-is-connected.json new file mode 100644 index 000000000000..fe10c9ee395f --- /dev/null +++ b/data/game/ev/everything-is-connected.json @@ -0,0 +1,12 @@ +{ + "slug": "everything-is-connected", + "name": "Everything Is Connected", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63379592" + ], + "genres": [ + "puzzle video game", + "wikigames" + ] +} diff --git a/data/game/ev/evil-dead-the-game-deluxe-edition.json b/data/game/ev/evil-dead-the-game-deluxe-edition.json new file mode 100644 index 000000000000..fb011cf0f278 --- /dev/null +++ b/data/game/ev/evil-dead-the-game-deluxe-edition.json @@ -0,0 +1,19 @@ +{ + "slug": "evil-dead-the-game-deluxe-edition", + "name": "Evil Dead: The Game - Deluxe Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112158336" + ], + "release_date": "2022-05-13", + "platforms": [ + "Xbox Series X and Series S" + ], + "developers": [ + "Saber Interactive" + ], + "publishers": [ + "Boss Team Games", + "Saber Interactive" + ] +} diff --git a/data/game/ev/evil-dead-the-game-game-of-the-year-edition.json b/data/game/ev/evil-dead-the-game-game-of-the-year-edition.json new file mode 100644 index 000000000000..1fcc4f1c23fc --- /dev/null +++ b/data/game/ev/evil-dead-the-game-game-of-the-year-edition.json @@ -0,0 +1,19 @@ +{ + "slug": "evil-dead-the-game-game-of-the-year-edition", + "name": "Evil Dead: The Game - Game of the Year Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123221077" + ], + "release_date": "2023-04-26", + "platforms": [ + "Xbox Series X and Series S" + ], + "developers": [ + "Saber Interactive" + ], + "publishers": [ + "Boss Team Games", + "Saber Interactive" + ] +} diff --git a/data/game/ev/evolve-founder.json b/data/game/ev/evolve-founder.json new file mode 100644 index 000000000000..c06b008fa5de --- /dev/null +++ b/data/game/ev/evolve-founder.json @@ -0,0 +1,19 @@ +{ + "slug": "evolve-founder", + "name": "Evolve Founder", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124635479" + ], + "release_date": "2021-04-06", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "science fiction video game" + ], + "publishers": [ + "2K" + ] +} diff --git a/data/game/ev/evolve-hunters-quest.json b/data/game/ev/evolve-hunters-quest.json new file mode 100644 index 000000000000..09f407dfd67f --- /dev/null +++ b/data/game/ev/evolve-hunters-quest.json @@ -0,0 +1,8 @@ +{ + "slug": "evolve-hunters-quest", + "name": "Evolve: Hunters Quest", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140471128" + ] +} diff --git a/data/game/ev/evolve-hunting-season-2.json b/data/game/ev/evolve-hunting-season-2.json new file mode 100644 index 000000000000..26adc6d7766d --- /dev/null +++ b/data/game/ev/evolve-hunting-season-2.json @@ -0,0 +1,19 @@ +{ + "slug": "evolve-hunting-season-2", + "name": "Evolve Hunting Season 2", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124637419" + ], + "release_date": "2015-06-24", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "science fiction video game" + ], + "publishers": [ + "2K" + ] +} diff --git a/data/game/ev/evolve-stage-2.json b/data/game/ev/evolve-stage-2.json new file mode 100644 index 000000000000..585455ef8828 --- /dev/null +++ b/data/game/ev/evolve-stage-2.json @@ -0,0 +1,19 @@ +{ + "slug": "evolve-stage-2", + "name": "Evolve Stage 2", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124642176" + ], + "release_date": "2016-07-07", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "science fiction video game" + ], + "publishers": [ + "2K" + ] +} diff --git a/data/game/ex/explorer-q11289806.json b/data/game/ex/explorer-q11289806.json new file mode 100644 index 000000000000..abe61639c3f8 --- /dev/null +++ b/data/game/ex/explorer-q11289806.json @@ -0,0 +1,8 @@ +{ + "slug": "explorer-q11289806", + "name": "Explorer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11289806" + ] +} diff --git a/data/game/ex/explosive-combat-pack.json b/data/game/ex/explosive-combat-pack.json new file mode 100644 index 000000000000..0e67b39d38f8 --- /dev/null +++ b/data/game/ex/explosive-combat-pack.json @@ -0,0 +1,12 @@ +{ + "slug": "explosive-combat-pack", + "name": "Explosive Combat Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60586784" + ], + "release_date": "2011-12-09", + "platforms": [ + "Microsoft Windows" + ] +} diff --git a/data/game/ex/exponential-idle.json b/data/game/ex/exponential-idle.json new file mode 100644 index 000000000000..358b124748d0 --- /dev/null +++ b/data/game/ex/exponential-idle.json @@ -0,0 +1,14 @@ +{ + "slug": "exponential-idle", + "name": "Exponential Idle", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113501446" + ], + "platforms": [ + "iOS" + ], + "genres": [ + "incremental game" + ] +} diff --git a/data/game/ez/ezquake.json b/data/game/ez/ezquake.json new file mode 100644 index 000000000000..cca11d7a1e58 --- /dev/null +++ b/data/game/ez/ezquake.json @@ -0,0 +1,8 @@ +{ + "slug": "ezquake", + "name": "ezQuake", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116688195" + ] +} diff --git a/data/game/f-/f-15c-aggressors-bfm-campaign.json b/data/game/f-/f-15c-aggressors-bfm-campaign.json new file mode 100644 index 000000000000..6d30a35df6c6 --- /dev/null +++ b/data/game/f-/f-15c-aggressors-bfm-campaign.json @@ -0,0 +1,15 @@ +{ + "slug": "f-15c-aggressors-bfm-campaign", + "name": "F-15C: Aggressors BFM Campaign", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097572" + ], + "release_date": "2018-08-22", + "platforms": [ + "Microsoft Windows" + ], + "publishers": [ + "Eagle Dynamics" + ] +} diff --git a/data/game/f-/f-15c-for-dcs-world.json b/data/game/f-/f-15c-for-dcs-world.json new file mode 100644 index 000000000000..d4ed55ec42cc --- /dev/null +++ b/data/game/f-/f-15c-for-dcs-world.json @@ -0,0 +1,18 @@ +{ + "slug": "f-15c-for-dcs-world", + "name": "F-15C for DCS World", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097370" + ], + "release_date": "2014-04-30", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Eagle Dynamics" + ], + "publishers": [ + "Eagle Dynamics" + ] +} diff --git a/data/game/f-/f-15c-red-flag-campaign.json b/data/game/f-/f-15c-red-flag-campaign.json new file mode 100644 index 000000000000..4592a3fdd3cc --- /dev/null +++ b/data/game/f-/f-15c-red-flag-campaign.json @@ -0,0 +1,18 @@ +{ + "slug": "f-15c-red-flag-campaign", + "name": "F-15C: Red Flag Campaign", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097419" + ], + "release_date": "2017-08-30", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Eagle Dynamics" + ], + "publishers": [ + "Eagle Dynamics" + ] +} diff --git a/data/game/f-/f-15c-the-georgian-war-campaign.json b/data/game/f-/f-15c-the-georgian-war-campaign.json new file mode 100644 index 000000000000..9cd3f31b67df --- /dev/null +++ b/data/game/f-/f-15c-the-georgian-war-campaign.json @@ -0,0 +1,15 @@ +{ + "slug": "f-15c-the-georgian-war-campaign", + "name": "F-15C: The Georgian War Campaign", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097562" + ], + "release_date": "2018-01-12", + "platforms": [ + "Microsoft Windows" + ], + "publishers": [ + "Eagle Dynamics" + ] +} diff --git a/data/game/f-/f-5e-aggressors-air-combat-maneuver-campaign.json b/data/game/f-/f-5e-aggressors-air-combat-maneuver-campaign.json new file mode 100644 index 000000000000..c2354a4e2b3b --- /dev/null +++ b/data/game/f-/f-5e-aggressors-air-combat-maneuver-campaign.json @@ -0,0 +1,15 @@ +{ + "slug": "f-5e-aggressors-air-combat-maneuver-campaign", + "name": "F-5E: Aggressors Air Combat Maneuver Campaign", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097558" + ], + "release_date": "2017-10-06", + "platforms": [ + "Microsoft Windows" + ], + "publishers": [ + "Eagle Dynamics" + ] +} diff --git a/data/game/f-/f-5e-aggressors-basic-fighter-maneuvers-campaign.json b/data/game/f-/f-5e-aggressors-basic-fighter-maneuvers-campaign.json new file mode 100644 index 000000000000..45b825429882 --- /dev/null +++ b/data/game/f-/f-5e-aggressors-basic-fighter-maneuvers-campaign.json @@ -0,0 +1,15 @@ +{ + "slug": "f-5e-aggressors-basic-fighter-maneuvers-campaign", + "name": "F-5E: Aggressors Basic Fighter Maneuvers Campaign", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097551" + ], + "release_date": "2017-09-08", + "platforms": [ + "Microsoft Windows" + ], + "publishers": [ + "Eagle Dynamics" + ] +} diff --git a/data/game/f-/f-a-18c-aggressors-bfm-campaign.json b/data/game/f-/f-a-18c-aggressors-bfm-campaign.json new file mode 100644 index 000000000000..aa39d221dc63 --- /dev/null +++ b/data/game/f-/f-a-18c-aggressors-bfm-campaign.json @@ -0,0 +1,15 @@ +{ + "slug": "f-a-18c-aggressors-bfm-campaign", + "name": "F/A-18C: Aggressors BFM Campaign", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097584" + ], + "release_date": "2019-11-20", + "platforms": [ + "Microsoft Windows" + ], + "publishers": [ + "Eagle Dynamics" + ] +} diff --git a/data/game/f-/f-e-a-r-2-reborn.json b/data/game/f-/f-e-a-r-2-reborn.json new file mode 100644 index 000000000000..9b2f73ad6567 --- /dev/null +++ b/data/game/f-/f-e-a-r-2-reborn.json @@ -0,0 +1,23 @@ +{ + "slug": "f-e-a-r-2-reborn", + "name": "F.E.A.R. 2: Reborn", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4038490" + ], + "release_date": "2009-09-03", + "platforms": [ + "PlayStation 3", + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "psychological horror fiction" + ], + "developers": [ + "Monolith Productions" + ], + "publishers": [ + "Warner Bros. Games" + ] +} diff --git a/data/game/f-/f-e-a-r-extraction-point.json b/data/game/f-/f-e-a-r-extraction-point.json new file mode 100644 index 000000000000..6d0d5e75de67 --- /dev/null +++ b/data/game/f-/f-e-a-r-extraction-point.json @@ -0,0 +1,22 @@ +{ + "slug": "f-e-a-r-extraction-point", + "name": "F.E.A.R. Extraction Point", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q775655" + ], + "release_date": "2006-10-24", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "psychological horror fiction" + ], + "developers": [ + "TimeGate Studios" + ], + "publishers": [ + "Vivendi" + ] +} diff --git a/data/game/f-/f-e-a-r-files.json b/data/game/f-/f-e-a-r-files.json new file mode 100644 index 000000000000..daa1349f270f --- /dev/null +++ b/data/game/f-/f-e-a-r-files.json @@ -0,0 +1,15 @@ +{ + "slug": "f-e-a-r-files", + "name": "F.E.A.R. Files", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4038491" + ], + "release_date": "2007-11-06", + "genres": [ + "psychological horror fiction" + ], + "publishers": [ + "Sierra Entertainment" + ] +} diff --git a/data/game/f-/f-e-a-r-perseus-mandate.json b/data/game/f-/f-e-a-r-perseus-mandate.json new file mode 100644 index 000000000000..66a21f450d4c --- /dev/null +++ b/data/game/f-/f-e-a-r-perseus-mandate.json @@ -0,0 +1,22 @@ +{ + "slug": "f-e-a-r-perseus-mandate", + "name": "F.E.A.R. Perseus Mandate", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2569879" + ], + "release_date": "2007-11-06", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "psychological horror fiction" + ], + "developers": [ + "TimeGate Studios" + ], + "publishers": [ + "Sierra Entertainment" + ] +} diff --git a/data/game/f-/f-zero-q61598553.json b/data/game/f-/f-zero-q61598553.json new file mode 100644 index 000000000000..64d649851b6a --- /dev/null +++ b/data/game/f-/f-zero-q61598553.json @@ -0,0 +1,15 @@ +{ + "slug": "f-zero-q61598553", + "name": "F - ZERO", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q61598553" + ], + "release_date": "1990-01-01", + "platforms": [ + "Super Nintendo Entertainment System" + ], + "publishers": [ + "Nintendo" + ] +} diff --git a/data/game/f1/f1-game-franchise-bundle.json b/data/game/f1/f1-game-franchise-bundle.json new file mode 100644 index 000000000000..16b91dcbbbcc --- /dev/null +++ b/data/game/f1/f1-game-franchise-bundle.json @@ -0,0 +1,15 @@ +{ + "slug": "f1-game-franchise-bundle", + "name": "F1 Game Franchise Bundle", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q104665565" + ], + "release_date": "2016-06-10", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "racing video game" + ] +} diff --git a/data/game/fa/factorio-space-age.json b/data/game/fa/factorio-space-age.json new file mode 100644 index 000000000000..98cc93d714a9 --- /dev/null +++ b/data/game/fa/factorio-space-age.json @@ -0,0 +1,8 @@ +{ + "slug": "factorio-space-age", + "name": "Factorio: Space Age", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140462911" + ] +} diff --git a/data/game/fa/falcon-collection.json b/data/game/fa/falcon-collection.json new file mode 100644 index 000000000000..b775099b8605 --- /dev/null +++ b/data/game/fa/falcon-collection.json @@ -0,0 +1,8 @@ +{ + "slug": "falcon-collection", + "name": "Falcon: Collection", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125997367" + ] +} diff --git a/data/game/fa/falcon-gold.json b/data/game/fa/falcon-gold.json new file mode 100644 index 000000000000..65e6b8dfeee7 --- /dev/null +++ b/data/game/fa/falcon-gold.json @@ -0,0 +1,16 @@ +{ + "slug": "falcon-gold", + "name": "Falcon Gold", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125997393" + ], + "release_date": "1994-01-01", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game", + "vehicular combat game" + ] +} diff --git a/data/game/fa/fallen-age.json b/data/game/fa/fallen-age.json new file mode 100644 index 000000000000..e5c18cff89e7 --- /dev/null +++ b/data/game/fa/fallen-age.json @@ -0,0 +1,11 @@ +{ + "slug": "fallen-age", + "name": "Fallen Age", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113108990" + ], + "platforms": [ + "Microsoft Windows" + ] +} diff --git a/data/game/fa/fallen-knights.json b/data/game/fa/fallen-knights.json new file mode 100644 index 000000000000..f3bec26a1849 --- /dev/null +++ b/data/game/fa/fallen-knights.json @@ -0,0 +1,22 @@ +{ + "slug": "fallen-knights", + "name": "Fallen Knights", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127225317" + ], + "release_date": "2019-01-01", + "platforms": [ + "PlayStation Vita" + ], + "genres": [ + "dark fantasy video game", + "soulslike" + ], + "developers": [ + "VitaHEX games" + ], + "publishers": [ + "VitaHEX games" + ] +} diff --git a/data/game/fa/fallen-lights-demo.json b/data/game/fa/fallen-lights-demo.json new file mode 100644 index 000000000000..3dd4b677a7ab --- /dev/null +++ b/data/game/fa/fallen-lights-demo.json @@ -0,0 +1,8 @@ +{ + "slug": "fallen-lights-demo", + "name": "Fallen Lights DEMO", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131619548" + ] +} diff --git a/data/game/fa/fallout-1-5-resurrection.json b/data/game/fa/fallout-1-5-resurrection.json new file mode 100644 index 000000000000..b6b0954b53df --- /dev/null +++ b/data/game/fa/fallout-1-5-resurrection.json @@ -0,0 +1,12 @@ +{ + "slug": "fallout-1-5-resurrection", + "name": "Fallout 1.5: Resurrection", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q15089300" + ], + "release_date": "2013-10-03", + "platforms": [ + "Microsoft Windows" + ] +} diff --git a/data/game/fa/fallout-3-broken-steel.json b/data/game/fa/fallout-3-broken-steel.json new file mode 100644 index 000000000000..3c2dfb0def9e --- /dev/null +++ b/data/game/fa/fallout-3-broken-steel.json @@ -0,0 +1,22 @@ +{ + "slug": "fallout-3-broken-steel", + "name": "Fallout 3: Broken Steel", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110713735" + ], + "release_date": "2009-05-05", + "platforms": [ + "PlayStation 3", + "Microsoft Windows" + ], + "genres": [ + "action role-playing game" + ], + "developers": [ + "Bethesda Game Studios" + ], + "publishers": [ + "Bethesda Softworks" + ] +} diff --git a/data/game/fa/fallout-3-game-of-the-year-edition.json b/data/game/fa/fallout-3-game-of-the-year-edition.json new file mode 100644 index 000000000000..fcf7f76b1fcf --- /dev/null +++ b/data/game/fa/fallout-3-game-of-the-year-edition.json @@ -0,0 +1,21 @@ +{ + "slug": "fallout-3-game-of-the-year-edition", + "name": "Fallout 3: Game Of The Year Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108022844" + ], + "release_date": "2009-10-13", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "role-playing video game" + ], + "developers": [ + "Bethesda Game Studios" + ], + "publishers": [ + "Bethesda Softworks" + ] +} diff --git a/data/game/fa/fallout-3-mothership-zeta.json b/data/game/fa/fallout-3-mothership-zeta.json new file mode 100644 index 000000000000..244654ad330e --- /dev/null +++ b/data/game/fa/fallout-3-mothership-zeta.json @@ -0,0 +1,22 @@ +{ + "slug": "fallout-3-mothership-zeta", + "name": "Fallout 3: Mothership Zeta", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110713870" + ], + "release_date": "2009-08-03", + "platforms": [ + "PlayStation 3", + "Microsoft Windows" + ], + "genres": [ + "action role-playing game" + ], + "developers": [ + "Bethesda Game Studios" + ], + "publishers": [ + "Bethesda Softworks" + ] +} diff --git a/data/game/fa/fallout-3-operation-anchorage.json b/data/game/fa/fallout-3-operation-anchorage.json new file mode 100644 index 000000000000..8075c304594d --- /dev/null +++ b/data/game/fa/fallout-3-operation-anchorage.json @@ -0,0 +1,22 @@ +{ + "slug": "fallout-3-operation-anchorage", + "name": "Fallout 3: Operation Anchorage", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110714005" + ], + "release_date": "2009-01-27", + "platforms": [ + "PlayStation 3", + "Microsoft Windows" + ], + "genres": [ + "action role-playing game" + ], + "developers": [ + "Bethesda Game Studios" + ], + "publishers": [ + "Bethesda Softworks" + ] +} diff --git a/data/game/fa/fallout-3-remake.json b/data/game/fa/fallout-3-remake.json new file mode 100644 index 000000000000..32d927038f92 --- /dev/null +++ b/data/game/fa/fallout-3-remake.json @@ -0,0 +1,8 @@ +{ + "slug": "fallout-3-remake", + "name": "Fallout 3 Remake", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140018993" + ] +} diff --git a/data/game/fa/fallout-3-the-pitt.json b/data/game/fa/fallout-3-the-pitt.json new file mode 100644 index 000000000000..5a808885aa41 --- /dev/null +++ b/data/game/fa/fallout-3-the-pitt.json @@ -0,0 +1,8 @@ +{ + "slug": "fallout-3-the-pitt", + "name": "Fallout 3: The Pitt", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126870688" + ] +} diff --git a/data/game/fa/fallout-4-automatron.json b/data/game/fa/fallout-4-automatron.json new file mode 100644 index 000000000000..147dad372eec --- /dev/null +++ b/data/game/fa/fallout-4-automatron.json @@ -0,0 +1,22 @@ +{ + "slug": "fallout-4-automatron", + "name": "Fallout 4: Automatron", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q24807299" + ], + "release_date": "2016-03-22", + "platforms": [ + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "action role-playing game" + ], + "developers": [ + "Bethesda Game Studios" + ], + "publishers": [ + "Bethesda Softworks" + ] +} diff --git a/data/game/fa/fallout-4-contraptions-workshop.json b/data/game/fa/fallout-4-contraptions-workshop.json new file mode 100644 index 000000000000..2d4bae39f141 --- /dev/null +++ b/data/game/fa/fallout-4-contraptions-workshop.json @@ -0,0 +1,8 @@ +{ + "slug": "fallout-4-contraptions-workshop", + "name": "Fallout 4: Contraptions Workshop", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q26658655" + ] +} diff --git a/data/game/fa/fallout-4-far-harbor.json b/data/game/fa/fallout-4-far-harbor.json new file mode 100644 index 000000000000..fd2531bd6b8f --- /dev/null +++ b/data/game/fa/fallout-4-far-harbor.json @@ -0,0 +1,22 @@ +{ + "slug": "fallout-4-far-harbor", + "name": "Fallout 4: Far Harbor", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q24807292" + ], + "release_date": "2016-05-18", + "platforms": [ + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "action role-playing game" + ], + "developers": [ + "Bethesda Game Studios" + ], + "publishers": [ + "Bethesda Softworks" + ] +} diff --git a/data/game/fa/fallout-4-high-resolution-texture-pack.json b/data/game/fa/fallout-4-high-resolution-texture-pack.json new file mode 100644 index 000000000000..fc08661671d5 --- /dev/null +++ b/data/game/fa/fallout-4-high-resolution-texture-pack.json @@ -0,0 +1,12 @@ +{ + "slug": "fallout-4-high-resolution-texture-pack", + "name": "Fallout 4 - High Resolution Texture Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130753459" + ], + "release_date": "2017-02-06", + "platforms": [ + "Microsoft Windows" + ] +} diff --git a/data/game/fa/fallout-4-nuka-world.json b/data/game/fa/fallout-4-nuka-world.json new file mode 100644 index 000000000000..425316a3bcb7 --- /dev/null +++ b/data/game/fa/fallout-4-nuka-world.json @@ -0,0 +1,24 @@ +{ + "slug": "fallout-4-nuka-world", + "name": "Fallout 4: Nuka-World", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q26480005" + ], + "release_date": "2016-08-29", + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 5", + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "action role-playing game" + ], + "developers": [ + "Bethesda Game Studios" + ], + "publishers": [ + "Bethesda Softworks" + ] +} diff --git a/data/game/fa/fallout-4-vault-tec-workshop.json b/data/game/fa/fallout-4-vault-tec-workshop.json new file mode 100644 index 000000000000..79c355587295 --- /dev/null +++ b/data/game/fa/fallout-4-vault-tec-workshop.json @@ -0,0 +1,8 @@ +{ + "slug": "fallout-4-vault-tec-workshop", + "name": "Fallout 4: Vault-Tec Workshop", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q26658739" + ] +} diff --git a/data/game/fa/fallout-4-wasteland-workshop.json b/data/game/fa/fallout-4-wasteland-workshop.json new file mode 100644 index 000000000000..faf553e184dd --- /dev/null +++ b/data/game/fa/fallout-4-wasteland-workshop.json @@ -0,0 +1,8 @@ +{ + "slug": "fallout-4-wasteland-workshop", + "name": "Fallout 4: Wasteland Workshop", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q26658514" + ] +} diff --git a/data/game/fa/fallout-brotherhood-of-steel-2.json b/data/game/fa/fallout-brotherhood-of-steel-2.json new file mode 100644 index 000000000000..7be1f5bdad14 --- /dev/null +++ b/data/game/fa/fallout-brotherhood-of-steel-2.json @@ -0,0 +1,17 @@ +{ + "slug": "fallout-brotherhood-of-steel-2", + "name": "Fallout: Brotherhood of Steel 2", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5432426" + ], + "genres": [ + "post-apocalyptic video game" + ], + "developers": [ + "Interplay Entertainment" + ], + "publishers": [ + "Interplay Entertainment" + ] +} diff --git a/data/game/fa/fallout-london.json b/data/game/fa/fallout-london.json new file mode 100644 index 000000000000..b716529349b4 --- /dev/null +++ b/data/game/fa/fallout-london.json @@ -0,0 +1,11 @@ +{ + "slug": "fallout-london", + "name": "Fallout: London", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112655898" + ], + "platforms": [ + "Microsoft Windows" + ] +} diff --git a/data/game/fa/fallout-new-california.json b/data/game/fa/fallout-new-california.json new file mode 100644 index 000000000000..583ee867ce63 --- /dev/null +++ b/data/game/fa/fallout-new-california.json @@ -0,0 +1,15 @@ +{ + "slug": "fallout-new-california", + "name": "Fallout: New California", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16740993" + ], + "release_date": "2013-05-31", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "action role-playing game" + ] +} diff --git a/data/game/fa/fallout-new-vegas-dead-money.json b/data/game/fa/fallout-new-vegas-dead-money.json new file mode 100644 index 000000000000..5b8243e149a0 --- /dev/null +++ b/data/game/fa/fallout-new-vegas-dead-money.json @@ -0,0 +1,22 @@ +{ + "slug": "fallout-new-vegas-dead-money", + "name": "Fallout: New Vegas – Dead Money", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110714167" + ], + "release_date": "2010-12-21", + "platforms": [ + "PlayStation 3", + "Microsoft Windows" + ], + "genres": [ + "action role-playing game" + ], + "developers": [ + "Obsidian Entertainment" + ], + "publishers": [ + "Bethesda Softworks" + ] +} diff --git a/data/game/fa/fallout-new-vegas-gun-runners-arsenal.json b/data/game/fa/fallout-new-vegas-gun-runners-arsenal.json new file mode 100644 index 000000000000..f343dd696296 --- /dev/null +++ b/data/game/fa/fallout-new-vegas-gun-runners-arsenal.json @@ -0,0 +1,8 @@ +{ + "slug": "fallout-new-vegas-gun-runners-arsenal", + "name": "Fallout - New Vegas: Gun Runners’ Arsenal", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126870767" + ] +} diff --git a/data/game/fa/fallout-new-vegas-honest-hearts.json b/data/game/fa/fallout-new-vegas-honest-hearts.json new file mode 100644 index 000000000000..ca61b4873c7a --- /dev/null +++ b/data/game/fa/fallout-new-vegas-honest-hearts.json @@ -0,0 +1,22 @@ +{ + "slug": "fallout-new-vegas-honest-hearts", + "name": "Fallout: New Vegas – Honest Hearts", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110714316" + ], + "release_date": "2011-05-17", + "platforms": [ + "PlayStation 3", + "Microsoft Windows" + ], + "genres": [ + "action role-playing game" + ], + "developers": [ + "Obsidian Entertainment" + ], + "publishers": [ + "Bethesda Softworks" + ] +} diff --git a/data/game/fa/fallout-new-vegas-old-world-blues.json b/data/game/fa/fallout-new-vegas-old-world-blues.json new file mode 100644 index 000000000000..48ed950864a7 --- /dev/null +++ b/data/game/fa/fallout-new-vegas-old-world-blues.json @@ -0,0 +1,22 @@ +{ + "slug": "fallout-new-vegas-old-world-blues", + "name": "Fallout: New Vegas — Old World Blues", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4045709" + ], + "release_date": "2011-07-19", + "platforms": [ + "PlayStation 3", + "Microsoft Windows" + ], + "genres": [ + "role-playing video game" + ], + "developers": [ + "Obsidian Entertainment" + ], + "publishers": [ + "Bethesda Softworks" + ] +} diff --git a/data/game/fa/fallout-new-vegas-remake.json b/data/game/fa/fallout-new-vegas-remake.json new file mode 100644 index 000000000000..1682b670edbd --- /dev/null +++ b/data/game/fa/fallout-new-vegas-remake.json @@ -0,0 +1,27 @@ +{ + "slug": "fallout-new-vegas-remake", + "name": "Fallout: New Vegas Remake", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140018987" + ], + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "third-person shooter", + "action role-playing game", + "science fiction Western", + "science fiction video game", + "LGBT-themed video game", + "post-apocalyptic video game", + "Western video game" + ], + "developers": [ + "Iron Galaxy Studios" + ], + "publishers": [ + "Bethesda Softworks" + ] +} diff --git a/data/game/fa/fallout-online.json b/data/game/fa/fallout-online.json new file mode 100644 index 000000000000..d0a57c8071f2 --- /dev/null +++ b/data/game/fa/fallout-online.json @@ -0,0 +1,20 @@ +{ + "slug": "fallout-online", + "name": "Fallout Online", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4038606" + ], + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "massively multiplayer online role-playing game" + ], + "developers": [ + "Masthead Studios" + ], + "publishers": [ + "Interplay Entertainment" + ] +} diff --git a/data/game/fa/fallout-pack.json b/data/game/fa/fallout-pack.json new file mode 100644 index 000000000000..b602bae96677 --- /dev/null +++ b/data/game/fa/fallout-pack.json @@ -0,0 +1,22 @@ +{ + "slug": "fallout-pack", + "name": "Fallout Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q69920372" + ], + "release_date": "2011-01-01", + "platforms": [ + "PlayStation 3", + "Microsoft Windows" + ], + "genres": [ + "first-person shooter" + ], + "developers": [ + "Splash Damage" + ], + "publishers": [ + "Bethesda Softworks" + ] +} diff --git a/data/game/fa/fallout-tactics-2.json b/data/game/fa/fallout-tactics-2.json new file mode 100644 index 000000000000..3cba55a0fc1d --- /dev/null +++ b/data/game/fa/fallout-tactics-2.json @@ -0,0 +1,14 @@ +{ + "slug": "fallout-tactics-2", + "name": "Fallout Tactics 2", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q101206175" + ], + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Micro Forté" + ] +} diff --git a/data/game/fa/fantasy-five.json b/data/game/fa/fantasy-five.json new file mode 100644 index 000000000000..5f8f879c81b6 --- /dev/null +++ b/data/game/fa/fantasy-five.json @@ -0,0 +1,9 @@ +{ + "slug": "fantasy-five", + "name": "Fantasy Five", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q54917775" + ], + "release_date": "1985-01-01" +} diff --git a/data/game/fa/far-cry-2-fortunes-pack.json b/data/game/fa/far-cry-2-fortunes-pack.json new file mode 100644 index 000000000000..b96875b57bd1 --- /dev/null +++ b/data/game/fa/far-cry-2-fortunes-pack.json @@ -0,0 +1,8 @@ +{ + "slug": "far-cry-2-fortunes-pack", + "name": "Far Cry 2: Fortunes Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110155965" + ] +} diff --git a/data/game/fa/far-cry-4-gold-edition.json b/data/game/fa/far-cry-4-gold-edition.json new file mode 100644 index 000000000000..65078323b16c --- /dev/null +++ b/data/game/fa/far-cry-4-gold-edition.json @@ -0,0 +1,8 @@ +{ + "slug": "far-cry-4-gold-edition", + "name": "Far Cry 4 Gold Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q92204055" + ] +} diff --git a/data/game/fa/far-cry-5-gold-edition.json b/data/game/fa/far-cry-5-gold-edition.json new file mode 100644 index 000000000000..0e6d239ba180 --- /dev/null +++ b/data/game/fa/far-cry-5-gold-edition.json @@ -0,0 +1,8 @@ +{ + "slug": "far-cry-5-gold-edition", + "name": "Far Cry 5: Gold Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121889081" + ] +} diff --git a/data/game/fa/far-cry-bundle-q126414297.json b/data/game/fa/far-cry-bundle-q126414297.json new file mode 100644 index 000000000000..d6c6454e286f --- /dev/null +++ b/data/game/fa/far-cry-bundle-q126414297.json @@ -0,0 +1,15 @@ +{ + "slug": "far-cry-bundle-q126414297", + "name": "Far Cry Bundle", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126414297" + ], + "release_date": "2017-12-23", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter" + ] +} diff --git a/data/game/fa/far-cry-bundle.json b/data/game/fa/far-cry-bundle.json new file mode 100644 index 000000000000..c847a74e2373 --- /dev/null +++ b/data/game/fa/far-cry-bundle.json @@ -0,0 +1,15 @@ +{ + "slug": "far-cry-bundle", + "name": "Far Cry Bundle", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q104660821" + ], + "release_date": "2022-06-08", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter" + ] +} diff --git a/data/game/fa/far-cry-classic-trial.json b/data/game/fa/far-cry-classic-trial.json new file mode 100644 index 000000000000..4c8b13505755 --- /dev/null +++ b/data/game/fa/far-cry-classic-trial.json @@ -0,0 +1,15 @@ +{ + "slug": "far-cry-classic-trial", + "name": "Far Cry Classic Trial", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130431999" + ], + "platforms": [ + "PlayStation 3" + ], + "genres": [ + "first-person shooter", + "science fiction video game" + ] +} diff --git a/data/game/fa/far-cry-primal-apex-edition.json b/data/game/fa/far-cry-primal-apex-edition.json new file mode 100644 index 000000000000..9c3a66f2c8be --- /dev/null +++ b/data/game/fa/far-cry-primal-apex-edition.json @@ -0,0 +1,8 @@ +{ + "slug": "far-cry-primal-apex-edition", + "name": "Far Cry Primal - Apex Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q92203764" + ] +} diff --git a/data/game/fa/far-cry-wild-expedition.json b/data/game/fa/far-cry-wild-expedition.json new file mode 100644 index 000000000000..f4be3dfac19f --- /dev/null +++ b/data/game/fa/far-cry-wild-expedition.json @@ -0,0 +1,8 @@ +{ + "slug": "far-cry-wild-expedition", + "name": "Far Cry: Wild Expedition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16635860" + ] +} diff --git a/data/game/fa/farming-simulator-20-q118235140.json b/data/game/fa/farming-simulator-20-q118235140.json new file mode 100644 index 000000000000..0a60c417ec4f --- /dev/null +++ b/data/game/fa/farming-simulator-20-q118235140.json @@ -0,0 +1,13 @@ +{ + "slug": "farming-simulator-20-q118235140", + "name": "Farming Simulator 20+", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118235140" + ], + "release_date": "2023-05-04", + "platforms": [ + "iPadOS", + "iOS" + ] +} diff --git a/data/game/fa/fashion-flamb.json b/data/game/fa/fashion-flamb.json new file mode 100644 index 000000000000..fb0a71f5a836 --- /dev/null +++ b/data/game/fa/fashion-flamb.json @@ -0,0 +1,8 @@ +{ + "slug": "fashion-flamb", + "name": "Fashion Flambé", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q128014874" + ] +} diff --git a/data/game/fa/fastdoom.json b/data/game/fa/fastdoom.json new file mode 100644 index 000000000000..c7fcfaae68a6 --- /dev/null +++ b/data/game/fa/fastdoom.json @@ -0,0 +1,8 @@ +{ + "slug": "fastdoom", + "name": "FastDOOM", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124655020" + ] +} diff --git a/data/game/fa/fathammer-classics-pack.json b/data/game/fa/fathammer-classics-pack.json new file mode 100644 index 000000000000..ea77a8ae858b --- /dev/null +++ b/data/game/fa/fathammer-classics-pack.json @@ -0,0 +1,19 @@ +{ + "slug": "fathammer-classics-pack", + "name": "Fathammer Classics Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5437527" + ], + "release_date": "2005-03-19", + "platforms": [ + "Symbian", + "Windows Mobile" + ], + "genres": [ + "puzzle video game" + ], + "publishers": [ + "Gizmondo" + ] +} diff --git a/data/game/fa/faust-q11331939.json b/data/game/fa/faust-q11331939.json new file mode 100644 index 000000000000..95ea1518d340 --- /dev/null +++ b/data/game/fa/faust-q11331939.json @@ -0,0 +1,8 @@ +{ + "slug": "faust-q11331939", + "name": "FAUST", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11331939" + ] +} diff --git a/data/game/fb/fbdoom.json b/data/game/fb/fbdoom.json new file mode 100644 index 000000000000..203ea5870ae5 --- /dev/null +++ b/data/game/fb/fbdoom.json @@ -0,0 +1,8 @@ +{ + "slug": "fbdoom", + "name": "fbDOOM", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124473767" + ] +} diff --git a/data/game/fe/fear-effect-inferno.json b/data/game/fe/fear-effect-inferno.json new file mode 100644 index 000000000000..7a115f60c13c --- /dev/null +++ b/data/game/fe/fear-effect-inferno.json @@ -0,0 +1,11 @@ +{ + "slug": "fear-effect-inferno", + "name": "Fear Effect Inferno", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3740574" + ], + "genres": [ + "action game" + ] +} diff --git a/data/game/fe/feathermuck.json b/data/game/fe/feathermuck.json new file mode 100644 index 000000000000..9e24d4460f9a --- /dev/null +++ b/data/game/fe/feathermuck.json @@ -0,0 +1,8 @@ +{ + "slug": "feathermuck", + "name": "FeatherMuck", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121506714" + ] +} diff --git a/data/game/fe/feed-the-crown-deluxe-edition-movement-demo.json b/data/game/fe/feed-the-crown-deluxe-edition-movement-demo.json new file mode 100644 index 000000000000..e18d14e2e660 --- /dev/null +++ b/data/game/fe/feed-the-crown-deluxe-edition-movement-demo.json @@ -0,0 +1,21 @@ +{ + "slug": "feed-the-crown-deluxe-edition-movement-demo", + "name": "Feed the Crown: Deluxe Edition (Movement Demo)", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124668380" + ], + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "platformer", + "erotic video game" + ], + "developers": [ + "SofterCode" + ], + "publishers": [ + "SofterCode" + ] +} diff --git a/data/game/fe/femdom-game-world-aunt-demo.json b/data/game/fe/femdom-game-world-aunt-demo.json new file mode 100644 index 000000000000..4a9a5a134574 --- /dev/null +++ b/data/game/fe/femdom-game-world-aunt-demo.json @@ -0,0 +1,22 @@ +{ + "slug": "femdom-game-world-aunt-demo", + "name": "Femdom Game World: Aunt Demo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q129548394" + ], + "release_date": "2024-06-22", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "visual novel", + "erotic video game" + ], + "developers": [ + "Femdom Game World" + ], + "publishers": [ + "Femdom Game World" + ] +} diff --git a/data/game/fe/femdom-game-world-stepsister-demo.json b/data/game/fe/femdom-game-world-stepsister-demo.json new file mode 100644 index 000000000000..0312b6fbbe25 --- /dev/null +++ b/data/game/fe/femdom-game-world-stepsister-demo.json @@ -0,0 +1,22 @@ +{ + "slug": "femdom-game-world-stepsister-demo", + "name": "Femdom Game World: Stepsister Demo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q129549260" + ], + "release_date": "2024-03-13", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "visual novel", + "erotic video game" + ], + "developers": [ + "Femdom Game World" + ], + "publishers": [ + "Femdom Game World" + ] +} diff --git a/data/game/fe/femdom-lines-mindbreak.json b/data/game/fe/femdom-lines-mindbreak.json new file mode 100644 index 000000000000..75667f2e641f --- /dev/null +++ b/data/game/fe/femdom-lines-mindbreak.json @@ -0,0 +1,18 @@ +{ + "slug": "femdom-lines-mindbreak", + "name": "Femdom Lines: Mindbreak", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130380898" + ], + "release_date": "2024-08-02", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "erotic video game" + ], + "developers": [ + "Zee Vital" + ] +} diff --git a/data/game/fe/femdom-lines-mistress-akira.json b/data/game/fe/femdom-lines-mistress-akira.json new file mode 100644 index 000000000000..dc6519e11529 --- /dev/null +++ b/data/game/fe/femdom-lines-mistress-akira.json @@ -0,0 +1,18 @@ +{ + "slug": "femdom-lines-mistress-akira", + "name": "Femdom Lines: Mistress Akira", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130380915" + ], + "release_date": "2019-11-05", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "erotic video game" + ], + "developers": [ + "Zee Vital" + ] +} diff --git a/data/game/fe/femdom-lines-mistress-yuki.json b/data/game/fe/femdom-lines-mistress-yuki.json new file mode 100644 index 000000000000..14f31a03a69d --- /dev/null +++ b/data/game/fe/femdom-lines-mistress-yuki.json @@ -0,0 +1,18 @@ +{ + "slug": "femdom-lines-mistress-yuki", + "name": "Femdom Lines: Mistress Yuki", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130380919" + ], + "release_date": "2019-08-06", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "erotic video game" + ], + "developers": [ + "Zee Vital" + ] +} diff --git a/data/game/fe/femdom-lines-total-obedience-pack.json b/data/game/fe/femdom-lines-total-obedience-pack.json new file mode 100644 index 000000000000..b8b638566dd3 --- /dev/null +++ b/data/game/fe/femdom-lines-total-obedience-pack.json @@ -0,0 +1,18 @@ +{ + "slug": "femdom-lines-total-obedience-pack", + "name": "Femdom Lines: Total Obedience Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130380908" + ], + "release_date": "2021-08-04", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "erotic video game" + ], + "developers": [ + "Zee Vital" + ] +} diff --git a/data/game/fe/femdom-waifu-bikini-summer-pack.json b/data/game/fe/femdom-waifu-bikini-summer-pack.json new file mode 100644 index 000000000000..9a896037cb8b --- /dev/null +++ b/data/game/fe/femdom-waifu-bikini-summer-pack.json @@ -0,0 +1,19 @@ +{ + "slug": "femdom-waifu-bikini-summer-pack", + "name": "Femdom Waifu: Bikini Summer Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q129588811" + ], + "release_date": "2021-07-01", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "erotic video game" + ], + "developers": [ + "Zee Vital", + "Marco Marco" + ] +} diff --git a/data/game/fe/femdom-waifu-findom-mode.json b/data/game/fe/femdom-waifu-findom-mode.json new file mode 100644 index 000000000000..80f7ed8dc8bc --- /dev/null +++ b/data/game/fe/femdom-waifu-findom-mode.json @@ -0,0 +1,19 @@ +{ + "slug": "femdom-waifu-findom-mode", + "name": "Femdom Waifu: Findom Mode", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q129588260" + ], + "release_date": "2019-09-03", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "erotic video game" + ], + "developers": [ + "Zee Vital", + "Marco Marco" + ] +} diff --git a/data/game/fe/femdom-waifu-foot-fetish-pack.json b/data/game/fe/femdom-waifu-foot-fetish-pack.json new file mode 100644 index 000000000000..8ddf7923e7ad --- /dev/null +++ b/data/game/fe/femdom-waifu-foot-fetish-pack.json @@ -0,0 +1,19 @@ +{ + "slug": "femdom-waifu-foot-fetish-pack", + "name": "Femdom Waifu: Foot Fetish Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q129586031" + ], + "release_date": "2019-04-08", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "erotic video game" + ], + "developers": [ + "Zee Vital", + "Marco Marco" + ] +} diff --git a/data/game/fe/femdom-waifu-latex-suits-pack.json b/data/game/fe/femdom-waifu-latex-suits-pack.json new file mode 100644 index 000000000000..124721b3b763 --- /dev/null +++ b/data/game/fe/femdom-waifu-latex-suits-pack.json @@ -0,0 +1,19 @@ +{ + "slug": "femdom-waifu-latex-suits-pack", + "name": "Femdom Waifu: Latex Suits Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q129588597" + ], + "release_date": "2019-10-15", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "erotic video game" + ], + "developers": [ + "Zee Vital", + "Marco Marco" + ] +} diff --git a/data/game/fe/femdom-waifu-shorts-and-tops-pack.json b/data/game/fe/femdom-waifu-shorts-and-tops-pack.json new file mode 100644 index 000000000000..9b85a29118ba --- /dev/null +++ b/data/game/fe/femdom-waifu-shorts-and-tops-pack.json @@ -0,0 +1,19 @@ +{ + "slug": "femdom-waifu-shorts-and-tops-pack", + "name": "Femdom Waifu: Shorts and Tops Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q129588728" + ], + "release_date": "2020-06-03", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "erotic video game" + ], + "developers": [ + "Zee Vital", + "Marco Marco" + ] +} diff --git a/data/game/fe/femdom-waifu-swimsuit-pack.json b/data/game/fe/femdom-waifu-swimsuit-pack.json new file mode 100644 index 000000000000..14c003fb264c --- /dev/null +++ b/data/game/fe/femdom-waifu-swimsuit-pack.json @@ -0,0 +1,19 @@ +{ + "slug": "femdom-waifu-swimsuit-pack", + "name": "Femdom Waifu: Swimsuit Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q129586524" + ], + "release_date": "2019-07-09", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "erotic video game" + ], + "developers": [ + "Zee Vital", + "Marco Marco" + ] +} diff --git a/data/game/fe/femdom-waifu-vr-latex-lingerie-pack.json b/data/game/fe/femdom-waifu-vr-latex-lingerie-pack.json new file mode 100644 index 000000000000..cef3863a6840 --- /dev/null +++ b/data/game/fe/femdom-waifu-vr-latex-lingerie-pack.json @@ -0,0 +1,18 @@ +{ + "slug": "femdom-waifu-vr-latex-lingerie-pack", + "name": "Femdom Waifu VR: Latex Lingerie Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q129585278" + ], + "release_date": "2022-06-03", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "erotic video game" + ], + "developers": [ + "Zee Vital" + ] +} diff --git a/data/game/fe/femdom-wife-game-zoe-demo.json b/data/game/fe/femdom-wife-game-zoe-demo.json new file mode 100644 index 000000000000..95eac2e33840 --- /dev/null +++ b/data/game/fe/femdom-wife-game-zoe-demo.json @@ -0,0 +1,22 @@ +{ + "slug": "femdom-wife-game-zoe-demo", + "name": "Femdom Wife Game - Zoe Demo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131545263" + ], + "release_date": "2023-04-21", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "erotic video game" + ], + "developers": [ + "Femdom Wife Game" + ], + "publishers": [ + "Femdom Wife Game" + ] +} diff --git a/data/game/fe/ferion.json b/data/game/fe/ferion.json new file mode 100644 index 000000000000..e483fec1e00e --- /dev/null +++ b/data/game/fe/ferion.json @@ -0,0 +1,11 @@ +{ + "slug": "ferion", + "name": "Ferion", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q13156283" + ], + "genres": [ + "massively multiplayer online role-playing game" + ] +} diff --git a/data/game/fe/fernbus-simulator-poland.json b/data/game/fe/fernbus-simulator-poland.json new file mode 100644 index 000000000000..5931d07b460d --- /dev/null +++ b/data/game/fe/fernbus-simulator-poland.json @@ -0,0 +1,8 @@ +{ + "slug": "fernbus-simulator-poland", + "name": "Fernbus Simulator: Poland", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140400653" + ] +} diff --git a/data/game/fe/fever-all-seven.json b/data/game/fe/fever-all-seven.json new file mode 100644 index 000000000000..12434be3eb44 --- /dev/null +++ b/data/game/fe/fever-all-seven.json @@ -0,0 +1,8 @@ +{ + "slug": "fever-all-seven", + "name": "Fever All Seven", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135236545" + ] +} diff --git a/data/game/fe/fever-girl-s-i.json b/data/game/fe/fever-girl-s-i.json new file mode 100644 index 000000000000..0b4b7fa3e492 --- /dev/null +++ b/data/game/fe/fever-girl-s-i.json @@ -0,0 +1,8 @@ +{ + "slug": "fever-girl-s-i", + "name": "Fever Girl's I", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11332562" + ] +} diff --git a/data/game/fe/fever-powerful.json b/data/game/fe/fever-powerful.json new file mode 100644 index 000000000000..fcae66340ec4 --- /dev/null +++ b/data/game/fe/fever-powerful.json @@ -0,0 +1,8 @@ +{ + "slug": "fever-powerful", + "name": "Fever Powerful", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11332565" + ] +} diff --git a/data/game/fi/fifa-18-ea-access-demo.json b/data/game/fi/fifa-18-ea-access-demo.json new file mode 100644 index 000000000000..5e934a51bbc7 --- /dev/null +++ b/data/game/fi/fifa-18-ea-access-demo.json @@ -0,0 +1,9 @@ +{ + "slug": "fifa-18-ea-access-demo", + "name": "FIFA 18 EA Access Demo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q87914788" + ], + "release_date": "2017-09-29" +} diff --git a/data/game/fi/fifa-18-ronaldo-edition.json b/data/game/fi/fifa-18-ronaldo-edition.json new file mode 100644 index 000000000000..5e7b0814fb39 --- /dev/null +++ b/data/game/fi/fifa-18-ronaldo-edition.json @@ -0,0 +1,9 @@ +{ + "slug": "fifa-18-ronaldo-edition", + "name": "FIFA 18 Ronaldo Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q87915143" + ], + "release_date": "2017-09-26" +} diff --git a/data/game/fi/fifa-21-legacy-edition.json b/data/game/fi/fifa-21-legacy-edition.json new file mode 100644 index 000000000000..938f049fba95 --- /dev/null +++ b/data/game/fi/fifa-21-legacy-edition.json @@ -0,0 +1,22 @@ +{ + "slug": "fifa-21-legacy-edition", + "name": "FIFA 21: Legacy Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q100293163" + ], + "release_date": "2020-10-09", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "association football video game" + ], + "developers": [ + "EA Romania", + "EA Vancouver" + ], + "publishers": [ + "EA Sports" + ] +} diff --git a/data/game/fi/fifa-23-ultimate-edition.json b/data/game/fi/fifa-23-ultimate-edition.json new file mode 100644 index 000000000000..af75de5f9cde --- /dev/null +++ b/data/game/fi/fifa-23-ultimate-edition.json @@ -0,0 +1,23 @@ +{ + "slug": "fifa-23-ultimate-edition", + "name": "FIFA 23 Ultimate Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q114040576" + ], + "release_date": "2022-09-27", + "platforms": [ + "Xbox Series X and Series S", + "Microsoft Windows" + ], + "genres": [ + "association football video game" + ], + "developers": [ + "EA Romania", + "EA Vancouver" + ], + "publishers": [ + "Electronic Arts" + ] +} diff --git a/data/game/fi/fight-my-monster.json b/data/game/fi/fight-my-monster.json new file mode 100644 index 000000000000..5445db5216c2 --- /dev/null +++ b/data/game/fi/fight-my-monster.json @@ -0,0 +1,11 @@ +{ + "slug": "fight-my-monster", + "name": "Fight My Monster", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115266708" + ], + "platforms": [ + "web browser" + ] +} diff --git a/data/game/fi/final-fantasy-collection.json b/data/game/fi/final-fantasy-collection.json new file mode 100644 index 000000000000..b9f9c606e3e9 --- /dev/null +++ b/data/game/fi/final-fantasy-collection.json @@ -0,0 +1,18 @@ +{ + "slug": "final-fantasy-collection", + "name": "Final Fantasy Collection", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18367960" + ], + "release_date": "2001-04-01", + "genres": [ + "Japanese role-playing video game" + ], + "developers": [ + "Square" + ], + "publishers": [ + "Square" + ] +} diff --git a/data/game/fi/final-fantasy-i-vi-collection-anniversary-edition.json b/data/game/fi/final-fantasy-i-vi-collection-anniversary-edition.json new file mode 100644 index 000000000000..a18949e58fa7 --- /dev/null +++ b/data/game/fi/final-fantasy-i-vi-collection-anniversary-edition.json @@ -0,0 +1,19 @@ +{ + "slug": "final-fantasy-i-vi-collection-anniversary-edition", + "name": "Final Fantasy I-VI Collection Anniversary Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131303213" + ], + "release_date": "2024-10-08", + "platforms": [ + "PlayStation 4" + ], + "genres": [ + "Japanese role-playing video game" + ], + "publishers": [ + "Square Enix", + "CRI Middleware" + ] +} diff --git a/data/game/fi/final-fantasy-ii-20th-anniversary-edition.json b/data/game/fi/final-fantasy-ii-20th-anniversary-edition.json new file mode 100644 index 000000000000..226cd4b1dbe9 --- /dev/null +++ b/data/game/fi/final-fantasy-ii-20th-anniversary-edition.json @@ -0,0 +1,18 @@ +{ + "slug": "final-fantasy-ii-20th-anniversary-edition", + "name": "Final Fantasy II: 20th Anniversary Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135405295" + ], + "release_date": "2007-06-07", + "platforms": [ + "PlayStation Portable" + ], + "genres": [ + "role-playing video game" + ], + "publishers": [ + "Square Enix" + ] +} diff --git a/data/game/fi/final-fantasy-iv-the-complete-collection.json b/data/game/fi/final-fantasy-iv-the-complete-collection.json new file mode 100644 index 000000000000..d0c1c7306eb4 --- /dev/null +++ b/data/game/fi/final-fantasy-iv-the-complete-collection.json @@ -0,0 +1,18 @@ +{ + "slug": "final-fantasy-iv-the-complete-collection", + "name": "Final Fantasy IV: The Complete Collection", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5449389" + ], + "release_date": "2011-03-24", + "platforms": [ + "PlayStation Portable" + ], + "genres": [ + "role-playing video game" + ], + "developers": [ + "Square Enix" + ] +} diff --git a/data/game/fi/final-fantasy-origins.json b/data/game/fi/final-fantasy-origins.json new file mode 100644 index 000000000000..7d6380f27713 --- /dev/null +++ b/data/game/fi/final-fantasy-origins.json @@ -0,0 +1,18 @@ +{ + "slug": "final-fantasy-origins", + "name": "Final Fantasy Origins", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2305500" + ], + "release_date": "2002-10-31", + "genres": [ + "role-playing video game" + ], + "developers": [ + "Square" + ], + "publishers": [ + "Square" + ] +} diff --git a/data/game/fi/final-fantasy-vii-remake-episode-intermission.json b/data/game/fi/final-fantasy-vii-remake-episode-intermission.json new file mode 100644 index 000000000000..3ee93f3b9c55 --- /dev/null +++ b/data/game/fi/final-fantasy-vii-remake-episode-intermission.json @@ -0,0 +1,22 @@ +{ + "slug": "final-fantasy-vii-remake-episode-intermission", + "name": "Final Fantasy VII Remake: Episode Intermission", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109690723" + ], + "release_date": "2021-06-10", + "platforms": [ + "PlayStation 5", + "Microsoft Windows" + ], + "genres": [ + "action role-playing game" + ], + "developers": [ + "Square Enix" + ], + "publishers": [ + "Square Enix" + ] +} diff --git a/data/game/fi/final-fantasy-xiii-demo.json b/data/game/fi/final-fantasy-xiii-demo.json new file mode 100644 index 000000000000..898b730b59ce --- /dev/null +++ b/data/game/fi/final-fantasy-xiii-demo.json @@ -0,0 +1,12 @@ +{ + "slug": "final-fantasy-xiii-demo", + "name": "Final Fantasy XIII demo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122852874" + ], + "release_date": "2009-04-16", + "platforms": [ + "PlayStation 3" + ] +} diff --git a/data/game/fi/final-fantasy-xiv-dawntrail.json b/data/game/fi/final-fantasy-xiv-dawntrail.json new file mode 100644 index 000000000000..5511477e427d --- /dev/null +++ b/data/game/fi/final-fantasy-xiv-dawntrail.json @@ -0,0 +1,25 @@ +{ + "slug": "final-fantasy-xiv-dawntrail", + "name": "Final Fantasy XIV: Dawntrail", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125117412" + ], + "release_date": "2024-07-02", + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 5", + "PlayStation 4", + "macOS", + "Microsoft Windows" + ], + "genres": [ + "massively multiplayer online role-playing game" + ], + "developers": [ + "Square Enix" + ], + "publishers": [ + "Square Enix" + ] +} diff --git a/data/game/fi/final-fantasy-xiv-endwalker.json b/data/game/fi/final-fantasy-xiv-endwalker.json new file mode 100644 index 000000000000..9eebfea7e53b --- /dev/null +++ b/data/game/fi/final-fantasy-xiv-endwalker.json @@ -0,0 +1,24 @@ +{ + "slug": "final-fantasy-xiv-endwalker", + "name": "Final Fantasy XIV: Endwalker", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106767005" + ], + "release_date": "2021-12-07", + "platforms": [ + "PlayStation 5", + "PlayStation 4", + "macOS", + "Microsoft Windows" + ], + "genres": [ + "massively multiplayer online role-playing game" + ], + "developers": [ + "Square Enix" + ], + "publishers": [ + "Square Enix" + ] +} diff --git a/data/game/fi/final-fantasy-xiv-evercold.json b/data/game/fi/final-fantasy-xiv-evercold.json new file mode 100644 index 000000000000..627d53b1f534 --- /dev/null +++ b/data/game/fi/final-fantasy-xiv-evercold.json @@ -0,0 +1,15 @@ +{ + "slug": "final-fantasy-xiv-evercold", + "name": "Final Fantasy XIV: Evercold", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139561386" + ], + "release_date": "2027-01-01", + "developers": [ + "Square Enix" + ], + "publishers": [ + "Square Enix" + ] +} diff --git a/data/game/fi/final-fantasy-xiv-shadowbringers.json b/data/game/fi/final-fantasy-xiv-shadowbringers.json new file mode 100644 index 000000000000..0050058e65c3 --- /dev/null +++ b/data/game/fi/final-fantasy-xiv-shadowbringers.json @@ -0,0 +1,17 @@ +{ + "slug": "final-fantasy-xiv-shadowbringers", + "name": "Final Fantasy XIV: Shadowbringers", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q64952865" + ], + "release_date": "2019-07-02", + "platforms": [ + "PlayStation 4", + "macOS", + "Microsoft Windows" + ], + "genres": [ + "massively multiplayer online role-playing game" + ] +} diff --git a/data/game/fi/final-fantasy-xiv-stormblood.json b/data/game/fi/final-fantasy-xiv-stormblood.json new file mode 100644 index 000000000000..200e016bb216 --- /dev/null +++ b/data/game/fi/final-fantasy-xiv-stormblood.json @@ -0,0 +1,23 @@ +{ + "slug": "final-fantasy-xiv-stormblood", + "name": "Final Fantasy XIV: Stormblood", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q27513059" + ], + "release_date": "2017-01-01", + "platforms": [ + "PlayStation 4", + "macOS", + "Microsoft Windows" + ], + "genres": [ + "massively multiplayer online role-playing game" + ], + "developers": [ + "Square Enix" + ], + "publishers": [ + "Square Enix" + ] +} diff --git a/data/game/fi/final-fantasy-xv-episode-duscae.json b/data/game/fi/final-fantasy-xv-episode-duscae.json new file mode 100644 index 000000000000..4abf4d5f84e0 --- /dev/null +++ b/data/game/fi/final-fantasy-xv-episode-duscae.json @@ -0,0 +1,13 @@ +{ + "slug": "final-fantasy-xv-episode-duscae", + "name": "Final Fantasy XV Episode Duscae", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122924998" + ], + "release_date": "2015-03-01", + "platforms": [ + "PlayStation 4", + "Microsoft Windows" + ] +} diff --git a/data/game/fi/final-fantasy-xvi-echoes-of-the-fallen.json b/data/game/fi/final-fantasy-xvi-echoes-of-the-fallen.json new file mode 100644 index 000000000000..22e49ab1a129 --- /dev/null +++ b/data/game/fi/final-fantasy-xvi-echoes-of-the-fallen.json @@ -0,0 +1,8 @@ +{ + "slug": "final-fantasy-xvi-echoes-of-the-fallen", + "name": "Final Fantasy XVI: Echoes of the Fallen", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123785377" + ] +} diff --git a/data/game/fi/final-fantasy-xvi-the-rising-tide.json b/data/game/fi/final-fantasy-xvi-the-rising-tide.json new file mode 100644 index 000000000000..5a0bcdfa3a50 --- /dev/null +++ b/data/game/fi/final-fantasy-xvi-the-rising-tide.json @@ -0,0 +1,8 @@ +{ + "slug": "final-fantasy-xvi-the-rising-tide", + "name": "Final Fantasy XVI: The Rising Tide", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123785382" + ] +} diff --git a/data/game/fi/fine-art.json b/data/game/fi/fine-art.json new file mode 100644 index 000000000000..99058431ae45 --- /dev/null +++ b/data/game/fi/fine-art.json @@ -0,0 +1,11 @@ +{ + "slug": "fine-art", + "name": "Fine Art", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28689952" + ], + "developers": [ + "Tencent" + ] +} diff --git a/data/game/fi/fire-emblem-ankoku-no-miko.json b/data/game/fi/fire-emblem-ankoku-no-miko.json new file mode 100644 index 000000000000..0fbab34420a0 --- /dev/null +++ b/data/game/fi/fire-emblem-ankoku-no-miko.json @@ -0,0 +1,11 @@ +{ + "slug": "fire-emblem-ankoku-no-miko", + "name": "Fire Emblem: Ankoku no Miko", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q74015087" + ], + "genres": [ + "tactical role-playing game" + ] +} diff --git a/data/game/fi/fire-emblem-fates-revelation.json b/data/game/fi/fire-emblem-fates-revelation.json new file mode 100644 index 000000000000..4e045bdcc064 --- /dev/null +++ b/data/game/fi/fire-emblem-fates-revelation.json @@ -0,0 +1,18 @@ +{ + "slug": "fire-emblem-fates-revelation", + "name": "Fire Emblem Fates: Revelation", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123254896" + ], + "release_date": "2015-07-09", + "platforms": [ + "Nintendo 3DS" + ], + "developers": [ + "Intelligent Systems" + ], + "publishers": [ + "Nintendo" + ] +} diff --git a/data/game/fi/fire-emblem-fates-special-edition.json b/data/game/fi/fire-emblem-fates-special-edition.json new file mode 100644 index 000000000000..52bbb77499a3 --- /dev/null +++ b/data/game/fi/fire-emblem-fates-special-edition.json @@ -0,0 +1,18 @@ +{ + "slug": "fire-emblem-fates-special-edition", + "name": "Fire Emblem Fates: Special Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130720338" + ], + "release_date": "2015-06-25", + "platforms": [ + "Nintendo 3DS" + ], + "developers": [ + "Intelligent Systems" + ], + "publishers": [ + "Nintendo" + ] +} diff --git a/data/game/fi/firefly-the-game-blue-sun-expansion.json b/data/game/fi/firefly-the-game-blue-sun-expansion.json new file mode 100644 index 000000000000..bb3cd52d7266 --- /dev/null +++ b/data/game/fi/firefly-the-game-blue-sun-expansion.json @@ -0,0 +1,8 @@ +{ + "slug": "firefly-the-game-blue-sun-expansion", + "name": "Firefly: The Game – Blue Sun Expansion", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q47539274" + ] +} diff --git a/data/game/fi/fisheye-quake.json b/data/game/fi/fisheye-quake.json new file mode 100644 index 000000000000..b03ab695e77f --- /dev/null +++ b/data/game/fi/fisheye-quake.json @@ -0,0 +1,8 @@ +{ + "slug": "fisheye-quake", + "name": "Fisheye Quake", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121409828" + ] +} diff --git a/data/game/fi/fitzquake.json b/data/game/fi/fitzquake.json new file mode 100644 index 000000000000..fb8fd07b2610 --- /dev/null +++ b/data/game/fi/fitzquake.json @@ -0,0 +1,8 @@ +{ + "slug": "fitzquake", + "name": "FitzQuake", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120671240" + ] +} diff --git a/data/game/fi/five-nights-at-freddy-s-security-breach-ruin.json b/data/game/fi/five-nights-at-freddy-s-security-breach-ruin.json new file mode 100644 index 000000000000..9a4c603c4e4a --- /dev/null +++ b/data/game/fi/five-nights-at-freddy-s-security-breach-ruin.json @@ -0,0 +1,17 @@ +{ + "slug": "five-nights-at-freddy-s-security-breach-ruin", + "name": "Five Nights at Freddy's: Security Breach - Ruin", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121318668" + ], + "release_date": "2023-07-25", + "platforms": [ + "PlayStation 4", + "PlayStation 5", + "Microsoft Windows" + ], + "genres": [ + "survival horror" + ] +} diff --git a/data/game/fi/five-nights-at-freddy-s-survival-crew.json b/data/game/fi/five-nights-at-freddy-s-survival-crew.json new file mode 100644 index 000000000000..5eafd058c816 --- /dev/null +++ b/data/game/fi/five-nights-at-freddy-s-survival-crew.json @@ -0,0 +1,8 @@ +{ + "slug": "five-nights-at-freddy-s-survival-crew", + "name": "Five Nights at Freddy's: Survival Crew", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127272617" + ] +} diff --git a/data/game/fi/fivem.json b/data/game/fi/fivem.json new file mode 100644 index 000000000000..1c7c53405b8e --- /dev/null +++ b/data/game/fi/fivem.json @@ -0,0 +1,15 @@ +{ + "slug": "fivem", + "name": "FiveM", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q68206674" + ], + "release_date": "2016-06-30", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "action-adventure game" + ] +} diff --git a/data/game/fl/flashback-legend.json b/data/game/fl/flashback-legend.json new file mode 100644 index 000000000000..7a937e438862 --- /dev/null +++ b/data/game/fl/flashback-legend.json @@ -0,0 +1,8 @@ +{ + "slug": "flashback-legend", + "name": "Flashback Legend", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131632585" + ] +} diff --git a/data/game/fl/flight-of-nova-demo.json b/data/game/fl/flight-of-nova-demo.json new file mode 100644 index 000000000000..99003ec4c70a --- /dev/null +++ b/data/game/fl/flight-of-nova-demo.json @@ -0,0 +1,23 @@ +{ + "slug": "flight-of-nova-demo", + "name": "Flight of Nova Demo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122756330" + ], + "release_date": "2022-02-21", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "space flight simulation game", + "science fiction video game" + ], + "developers": [ + "David Lloyd", + "Aerovery Lab" + ], + "publishers": [ + "Aerovery Lab" + ] +} diff --git a/data/game/fl/flipflop-solitaire.json b/data/game/fl/flipflop-solitaire.json new file mode 100644 index 000000000000..374583b566e5 --- /dev/null +++ b/data/game/fl/flipflop-solitaire.json @@ -0,0 +1,16 @@ +{ + "slug": "flipflop-solitaire", + "name": "Flipflop Solitaire+", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107174439" + ], + "release_date": "2021-04-02", + "platforms": [ + "iPadOS", + "iOS" + ], + "developers": [ + "Zach Gage" + ] +} diff --git a/data/game/fl/flipping-filip.json b/data/game/fl/flipping-filip.json new file mode 100644 index 000000000000..8a2190775d8e --- /dev/null +++ b/data/game/fl/flipping-filip.json @@ -0,0 +1,8 @@ +{ + "slug": "flipping-filip", + "name": "Flipping Filip", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120669795" + ] +} diff --git a/data/game/fl/flipside.json b/data/game/fl/flipside.json new file mode 100644 index 000000000000..835269125348 --- /dev/null +++ b/data/game/fl/flipside.json @@ -0,0 +1,15 @@ +{ + "slug": "flipside", + "name": "Flipside", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5459732" + ], + "release_date": "2007-06-18", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "platformer" + ] +} diff --git a/data/game/fl/fluffy-friends-2-wallpapers-ost.json b/data/game/fl/fluffy-friends-2-wallpapers-ost.json new file mode 100644 index 000000000000..51fddd18eb3a --- /dev/null +++ b/data/game/fl/fluffy-friends-2-wallpapers-ost.json @@ -0,0 +1,19 @@ +{ + "slug": "fluffy-friends-2-wallpapers-ost", + "name": "Fluffy Friends 2 - Wallpapers & OST", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117835908" + ], + "release_date": "2017-11-22", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "For Kids" + ], + "publishers": [ + "For Kids" + ] +} diff --git a/data/game/fl/fluffy-friends-dlc.json b/data/game/fl/fluffy-friends-dlc.json new file mode 100644 index 000000000000..8efecdc2f246 --- /dev/null +++ b/data/game/fl/fluffy-friends-dlc.json @@ -0,0 +1,19 @@ +{ + "slug": "fluffy-friends-dlc", + "name": "Fluffy Friends - DLC", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117835906" + ], + "release_date": "2017-11-29", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "For Kids" + ], + "publishers": [ + "For Kids" + ] +} diff --git a/data/game/fl/flyin-high-data-disk-1.json b/data/game/fl/flyin-high-data-disk-1.json new file mode 100644 index 000000000000..89ac352d72b5 --- /dev/null +++ b/data/game/fl/flyin-high-data-disk-1.json @@ -0,0 +1,8 @@ +{ + "slug": "flyin-high-data-disk-1", + "name": "Flyin' High Data Disk 1", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126184338" + ] +} diff --git a/data/game/fn/fnaf-franchise-bundle.json b/data/game/fn/fnaf-franchise-bundle.json new file mode 100644 index 000000000000..5bd67f31d7e7 --- /dev/null +++ b/data/game/fn/fnaf-franchise-bundle.json @@ -0,0 +1,21 @@ +{ + "slug": "fnaf-franchise-bundle", + "name": "FNaF Franchise Bundle", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q70599351" + ], + "release_date": "2016-10-24", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "survival horror" + ], + "developers": [ + "Scott Cawthon" + ], + "publishers": [ + "Scott Cawthon" + ] +} diff --git a/data/game/fo/football-manager-2021-mobile.json b/data/game/fo/football-manager-2021-mobile.json new file mode 100644 index 000000000000..7db3b38d9997 --- /dev/null +++ b/data/game/fo/football-manager-2021-mobile.json @@ -0,0 +1,11 @@ +{ + "slug": "football-manager-2021-mobile", + "name": "Football Manager 2021 Mobile", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135553269" + ], + "genres": [ + "association football video game" + ] +} diff --git a/data/game/fo/football-manager-2022-mobile.json b/data/game/fo/football-manager-2022-mobile.json new file mode 100644 index 000000000000..b4b59176fd09 --- /dev/null +++ b/data/game/fo/football-manager-2022-mobile.json @@ -0,0 +1,14 @@ +{ + "slug": "football-manager-2022-mobile", + "name": "Football Manager 2022 Mobile", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135553279" + ], + "platforms": [ + "iOS" + ], + "genres": [ + "association football video game" + ] +} diff --git a/data/game/fo/football-manager-2023-console.json b/data/game/fo/football-manager-2023-console.json new file mode 100644 index 000000000000..e8102d9ac798 --- /dev/null +++ b/data/game/fo/football-manager-2023-console.json @@ -0,0 +1,23 @@ +{ + "slug": "football-manager-2023-console", + "name": "Football Manager 2023 Console", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116940065" + ], + "release_date": "2022-11-08", + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 5", + "Microsoft Windows" + ], + "genres": [ + "association football management game" + ], + "developers": [ + "Sports Interactive" + ], + "publishers": [ + "SEGA Europe" + ] +} diff --git a/data/game/fo/football-manager-2023-touch.json b/data/game/fo/football-manager-2023-touch.json new file mode 100644 index 000000000000..25a45258f9de --- /dev/null +++ b/data/game/fo/football-manager-2023-touch.json @@ -0,0 +1,18 @@ +{ + "slug": "football-manager-2023-touch", + "name": "Football Manager 2023 Touch", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113884499" + ], + "release_date": "2022-11-08", + "platforms": [ + "iPadOS", + "macOS", + "tvOS", + "iOS" + ], + "genres": [ + "association football management game" + ] +} diff --git a/data/game/fo/football-manager-2024-mobile.json b/data/game/fo/football-manager-2024-mobile.json new file mode 100644 index 000000000000..a1a1169a659b --- /dev/null +++ b/data/game/fo/football-manager-2024-mobile.json @@ -0,0 +1,16 @@ +{ + "slug": "football-manager-2024-mobile", + "name": "Football Manager 2024 Mobile", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124156731" + ], + "release_date": "2023-11-06", + "platforms": [ + "iPadOS", + "iOS" + ], + "genres": [ + "association football management game" + ] +} diff --git a/data/game/fo/football-manager-2024-touch.json b/data/game/fo/football-manager-2024-touch.json new file mode 100644 index 000000000000..fb6bc67bee0b --- /dev/null +++ b/data/game/fo/football-manager-2024-touch.json @@ -0,0 +1,18 @@ +{ + "slug": "football-manager-2024-touch", + "name": "Football Manager 2024 Touch", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124156559" + ], + "release_date": "2023-11-06", + "platforms": [ + "iPadOS", + "tvOS", + "iOS", + "macOS" + ], + "genres": [ + "association football management game" + ] +} diff --git a/data/game/fo/force.json b/data/game/fo/force.json new file mode 100644 index 000000000000..c65b95bde856 --- /dev/null +++ b/data/game/fo/force.json @@ -0,0 +1,9 @@ +{ + "slug": "force", + "name": "FORCE", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60792607" + ], + "release_date": "1982-01-01" +} diff --git a/data/game/fo/forgotten-hope-q24496.json b/data/game/fo/forgotten-hope-q24496.json new file mode 100644 index 000000000000..7972d27aaffd --- /dev/null +++ b/data/game/fo/forgotten-hope-q24496.json @@ -0,0 +1,22 @@ +{ + "slug": "forgotten-hope-q24496", + "name": "Forgotten Hope", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q24496" + ], + "release_date": "2006-03-14", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "first-person shooter" + ], + "developers": [ + "Forgotten Hope Devs" + ], + "publishers": [ + "Forgotten Hope Devs" + ] +} diff --git a/data/game/fo/forgotten-realms-the-archives-collection-one.json b/data/game/fo/forgotten-realms-the-archives-collection-one.json new file mode 100644 index 000000000000..f289befd4e24 --- /dev/null +++ b/data/game/fo/forgotten-realms-the-archives-collection-one.json @@ -0,0 +1,15 @@ +{ + "slug": "forgotten-realms-the-archives-collection-one", + "name": "Forgotten Realms: The Archives - Collection One", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135020867" + ], + "release_date": "2022-03-29", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "role-playing video game" + ] +} diff --git a/data/game/fo/forgotten-realms-the-archives-collection-three.json b/data/game/fo/forgotten-realms-the-archives-collection-three.json new file mode 100644 index 000000000000..42e8bfccaf47 --- /dev/null +++ b/data/game/fo/forgotten-realms-the-archives-collection-three.json @@ -0,0 +1,19 @@ +{ + "slug": "forgotten-realms-the-archives-collection-three", + "name": "Forgotten Realms: The Archives - Collection Three", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122307050" + ], + "release_date": "2022-03-29", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "action game", + "role-playing video game" + ], + "developers": [ + "DreamForge Intertainment" + ] +} diff --git a/data/game/fo/forgotten-realms-the-archives-collection-two.json b/data/game/fo/forgotten-realms-the-archives-collection-two.json new file mode 100644 index 000000000000..144abe1869bb --- /dev/null +++ b/data/game/fo/forgotten-realms-the-archives-collection-two.json @@ -0,0 +1,15 @@ +{ + "slug": "forgotten-realms-the-archives-collection-two", + "name": "Forgotten Realms: The Archives - Collection Two", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135020869" + ], + "release_date": "2022-03-29", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "role-playing video game" + ] +} diff --git a/data/game/fo/forsaken-patrol.json b/data/game/fo/forsaken-patrol.json new file mode 100644 index 000000000000..5da4a16e429f --- /dev/null +++ b/data/game/fo/forsaken-patrol.json @@ -0,0 +1,8 @@ +{ + "slug": "forsaken-patrol", + "name": "Forsaken Patrol", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140360872" + ] +} diff --git a/data/game/fo/forspoken-in-tanta-we-trust.json b/data/game/fo/forspoken-in-tanta-we-trust.json new file mode 100644 index 000000000000..9539b1da3be8 --- /dev/null +++ b/data/game/fo/forspoken-in-tanta-we-trust.json @@ -0,0 +1,8 @@ +{ + "slug": "forspoken-in-tanta-we-trust", + "name": "Forspoken: In Tanta We Trust", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140447667" + ] +} diff --git a/data/game/fo/fortress-q153070.json b/data/game/fo/fortress-q153070.json new file mode 100644 index 000000000000..0e412d5bcbef --- /dev/null +++ b/data/game/fo/fortress-q153070.json @@ -0,0 +1,21 @@ +{ + "slug": "fortress-q153070", + "name": "Fortress", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q153070" + ], + "platforms": [ + "PlayStation 3", + "Microsoft Windows" + ], + "genres": [ + "action role-playing game" + ], + "developers": [ + "Grin" + ], + "publishers": [ + "Square Enix" + ] +} diff --git a/data/game/fo/forts-high-seas.json b/data/game/fo/forts-high-seas.json new file mode 100644 index 000000000000..7aea8e8c3d4c --- /dev/null +++ b/data/game/fo/forts-high-seas.json @@ -0,0 +1,15 @@ +{ + "slug": "forts-high-seas", + "name": "Forts - High Seas", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111366575" + ], + "release_date": "2022-03-25", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "EarthWork Games" + ] +} diff --git a/data/game/fo/forts-moonshot.json b/data/game/fo/forts-moonshot.json new file mode 100644 index 000000000000..34a93423a2d4 --- /dev/null +++ b/data/game/fo/forts-moonshot.json @@ -0,0 +1,15 @@ +{ + "slug": "forts-moonshot", + "name": "Forts - Moonshot", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111354042" + ], + "release_date": "2019-06-18", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "EarthWork Games" + ] +} diff --git a/data/game/fo/fortune-tiger.json b/data/game/fo/fortune-tiger.json new file mode 100644 index 000000000000..bd30987e01da --- /dev/null +++ b/data/game/fo/fortune-tiger.json @@ -0,0 +1,11 @@ +{ + "slug": "fortune-tiger", + "name": "Fortune Tiger", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126884564" + ], + "genres": [ + "slot machine" + ] +} diff --git a/data/game/fo/forward-escape-the-fold-demo.json b/data/game/fo/forward-escape-the-fold-demo.json new file mode 100644 index 000000000000..85a57a2cca4d --- /dev/null +++ b/data/game/fo/forward-escape-the-fold-demo.json @@ -0,0 +1,23 @@ +{ + "slug": "forward-escape-the-fold-demo", + "name": "Forward: Escape the Fold Demo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125491153" + ], + "release_date": "2022-02-09", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "dungeon crawl", + "roguelike deck-building game" + ], + "developers": [ + "Two Tiny Dice" + ], + "publishers": [ + "Indie Asylum" + ] +} diff --git a/data/game/fo/forza-horizon-5-hot-wheels.json b/data/game/fo/forza-horizon-5-hot-wheels.json new file mode 100644 index 000000000000..03fedfa79cb1 --- /dev/null +++ b/data/game/fo/forza-horizon-5-hot-wheels.json @@ -0,0 +1,8 @@ +{ + "slug": "forza-horizon-5-hot-wheels", + "name": "Forza Horizon 5: Hot Wheels", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140472310" + ] +} diff --git a/data/game/fo/four-seasons-theme.json b/data/game/fo/four-seasons-theme.json new file mode 100644 index 000000000000..b03fb7452d07 --- /dev/null +++ b/data/game/fo/four-seasons-theme.json @@ -0,0 +1,18 @@ +{ + "slug": "four-seasons-theme", + "name": "Four Seasons Theme", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q61517547" + ], + "release_date": "2014-10-02", + "platforms": [ + "PlayStation Vita" + ], + "developers": [ + "Sony Interactive Entertainment" + ], + "publishers": [ + "Sony Interactive Entertainment" + ] +} diff --git a/data/game/fo/fous-du-volant-les.json b/data/game/fo/fous-du-volant-les.json new file mode 100644 index 000000000000..2b06d05975db --- /dev/null +++ b/data/game/fo/fous-du-volant-les.json @@ -0,0 +1,8 @@ +{ + "slug": "fous-du-volant-les", + "name": "Fous Du Volant, Les", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126188325" + ] +} diff --git a/data/game/fr/framed-collection.json b/data/game/fr/framed-collection.json new file mode 100644 index 000000000000..ceadae7ad49a --- /dev/null +++ b/data/game/fr/framed-collection.json @@ -0,0 +1,20 @@ +{ + "slug": "framed-collection", + "name": "Framed Collection", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q102046491" + ], + "release_date": "2018-05-17", + "platforms": [ + "Mac", + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Loveshack Entertainment" + ], + "publishers": [ + "Fellow Traveller" + ] +} diff --git a/data/game/fr/free-internet-chess-server.json b/data/game/fr/free-internet-chess-server.json new file mode 100644 index 000000000000..d99d4a34ccc3 --- /dev/null +++ b/data/game/fr/free-internet-chess-server.json @@ -0,0 +1,8 @@ +{ + "slug": "free-internet-chess-server", + "name": "Free Internet Chess Server", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1198511" + ] +} diff --git a/data/game/fr/freehl.json b/data/game/fr/freehl.json new file mode 100644 index 000000000000..81378afc888d --- /dev/null +++ b/data/game/fr/freehl.json @@ -0,0 +1,8 @@ +{ + "slug": "freehl", + "name": "FreeHL", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122170864" + ] +} diff --git a/data/game/fr/freeze-putt.json b/data/game/fr/freeze-putt.json new file mode 100644 index 000000000000..5fbaa7398ecd --- /dev/null +++ b/data/game/fr/freeze-putt.json @@ -0,0 +1,8 @@ +{ + "slug": "freeze-putt", + "name": "Freeze-Putt", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q128014875" + ] +} diff --git a/data/game/fr/frontlines.json b/data/game/fr/frontlines.json new file mode 100644 index 000000000000..c9d35db8b69f --- /dev/null +++ b/data/game/fr/frontlines.json @@ -0,0 +1,16 @@ +{ + "slug": "frontlines", + "name": "Frontlines", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q119822390" + ], + "release_date": "2022-02-22", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "first-person shooter" + ] +} diff --git a/data/game/fr/frostpunk-on-the-edge.json b/data/game/fr/frostpunk-on-the-edge.json new file mode 100644 index 000000000000..ffa474a5926c --- /dev/null +++ b/data/game/fr/frostpunk-on-the-edge.json @@ -0,0 +1,19 @@ +{ + "slug": "frostpunk-on-the-edge", + "name": "Frostpunk: On The Edge", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113178900" + ], + "release_date": "2020-08-20", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "11 Bit Studios" + ], + "publishers": [ + "11 Bit Studios" + ] +} diff --git a/data/game/fr/frostpunk-the-last-autumn.json b/data/game/fr/frostpunk-the-last-autumn.json new file mode 100644 index 000000000000..ea365842b011 --- /dev/null +++ b/data/game/fr/frostpunk-the-last-autumn.json @@ -0,0 +1,19 @@ +{ + "slug": "frostpunk-the-last-autumn", + "name": "Frostpunk: The Last Autumn", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113178878" + ], + "release_date": "2020-01-21", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "11 Bit Studios" + ], + "publishers": [ + "11 Bit Studios" + ] +} diff --git a/data/game/fr/frostpunk-the-rifts.json b/data/game/fr/frostpunk-the-rifts.json new file mode 100644 index 000000000000..d8087591909a --- /dev/null +++ b/data/game/fr/frostpunk-the-rifts.json @@ -0,0 +1,19 @@ +{ + "slug": "frostpunk-the-rifts", + "name": "Frostpunk: The Rifts", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113178862" + ], + "release_date": "2019-08-27", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "11 Bit Studios" + ], + "publishers": [ + "11 Bit Studios" + ] +} diff --git a/data/game/fr/fruit-couple-extra.json b/data/game/fr/fruit-couple-extra.json new file mode 100644 index 000000000000..e2ab48c4841e --- /dev/null +++ b/data/game/fr/fruit-couple-extra.json @@ -0,0 +1,22 @@ +{ + "slug": "fruit-couple-extra", + "name": "Fruit couple🍉 EXTRA", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q71004552" + ], + "release_date": "2019-04-15", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "match-three video game" + ], + "developers": [ + "Sly" + ], + "publishers": [ + "SlyGames" + ] +} diff --git a/data/game/fr/fruit-ninja-classic.json b/data/game/fr/fruit-ninja-classic.json new file mode 100644 index 000000000000..4dedd863492f --- /dev/null +++ b/data/game/fr/fruit-ninja-classic.json @@ -0,0 +1,19 @@ +{ + "slug": "fruit-ninja-classic", + "name": "Fruit Ninja Classic+", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107174899" + ], + "release_date": "2021-04-02", + "platforms": [ + "iPadOS", + "iOS" + ], + "developers": [ + "Halfbrick Studios" + ], + "publishers": [ + "Australia" + ] +} diff --git a/data/game/fu/full-blast.json b/data/game/fu/full-blast.json new file mode 100644 index 000000000000..4121b1e5dff3 --- /dev/null +++ b/data/game/fu/full-blast.json @@ -0,0 +1,8 @@ +{ + "slug": "full-blast", + "name": "Full Blast", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126185792" + ] +} diff --git a/data/game/fu/full-throttle-hell-on-wheels.json b/data/game/fu/full-throttle-hell-on-wheels.json new file mode 100644 index 000000000000..82e98fd85583 --- /dev/null +++ b/data/game/fu/full-throttle-hell-on-wheels.json @@ -0,0 +1,8 @@ +{ + "slug": "full-throttle-hell-on-wheels", + "name": "Full Throttle: Hell on Wheels", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123572461" + ] +} diff --git a/data/game/fu/full-throttle-payback.json b/data/game/fu/full-throttle-payback.json new file mode 100644 index 000000000000..64cd1bedcc72 --- /dev/null +++ b/data/game/fu/full-throttle-payback.json @@ -0,0 +1,8 @@ +{ + "slug": "full-throttle-payback", + "name": "Full Throttle: Payback", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123572484" + ] +} diff --git a/data/game/fu/fun-radio-la-compil-micro-2-la-passion-du-sport-s-affiche.json b/data/game/fu/fun-radio-la-compil-micro-2-la-passion-du-sport-s-affiche.json new file mode 100644 index 000000000000..84623f181ffa --- /dev/null +++ b/data/game/fu/fun-radio-la-compil-micro-2-la-passion-du-sport-s-affiche.json @@ -0,0 +1,8 @@ +{ + "slug": "fun-radio-la-compil-micro-2-la-passion-du-sport-s-affiche", + "name": "Fun Radio La Compil Micro 2: La Passion Du Sport S'Affiche!", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126185502" + ] +} diff --git a/data/game/fu/funfair-dlc.json b/data/game/fu/funfair-dlc.json new file mode 100644 index 000000000000..74684d380d6c --- /dev/null +++ b/data/game/fu/funfair-dlc.json @@ -0,0 +1,13 @@ +{ + "slug": "funfair-dlc", + "name": "Funfair DLC", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60607938" + ], + "release_date": "2012-10-24", + "platforms": [ + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/game/fu/funtime-pack.json b/data/game/fu/funtime-pack.json new file mode 100644 index 000000000000..b4638900b0ba --- /dev/null +++ b/data/game/fu/funtime-pack.json @@ -0,0 +1,12 @@ +{ + "slug": "funtime-pack", + "name": "FUNTIME! Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60586783" + ], + "release_date": "2012-02-14", + "platforms": [ + "Microsoft Windows" + ] +} diff --git a/data/game/fu/furi-one-more-fight.json b/data/game/fu/furi-one-more-fight.json new file mode 100644 index 000000000000..6014c8f82372 --- /dev/null +++ b/data/game/fu/furi-one-more-fight.json @@ -0,0 +1,12 @@ +{ + "slug": "furi-one-more-fight", + "name": "Furi - One More Fight", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q104417612" + ], + "release_date": "2017-03-15", + "platforms": [ + "Microsoft Windows" + ] +} diff --git a/data/game/fu/future-strike.json b/data/game/fu/future-strike.json new file mode 100644 index 000000000000..6fe11eb54bf2 --- /dev/null +++ b/data/game/fu/future-strike.json @@ -0,0 +1,8 @@ +{ + "slug": "future-strike", + "name": "Future Strike", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110909272" + ] +} diff --git a/data/game/ga/galactic-civilizations-altarian-prophecy.json b/data/game/ga/galactic-civilizations-altarian-prophecy.json new file mode 100644 index 000000000000..34ecec3b6495 --- /dev/null +++ b/data/game/ga/galactic-civilizations-altarian-prophecy.json @@ -0,0 +1,8 @@ +{ + "slug": "galactic-civilizations-altarian-prophecy", + "name": "Galactic Civilizations: Altarian Prophecy", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110155812" + ] +} diff --git a/data/game/ga/galactic-civilizations-ii-dark-avatar.json b/data/game/ga/galactic-civilizations-ii-dark-avatar.json new file mode 100644 index 000000000000..167a33a7d3ad --- /dev/null +++ b/data/game/ga/galactic-civilizations-ii-dark-avatar.json @@ -0,0 +1,21 @@ +{ + "slug": "galactic-civilizations-ii-dark-avatar", + "name": "Galactic Civilizations II: Dark Avatar", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2001887" + ], + "release_date": "2007-02-08", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "turn-based strategy video game" + ], + "developers": [ + "Stardock" + ], + "publishers": [ + "Stardock" + ] +} diff --git a/data/game/ga/galactic-civilizations-ii-twilight-of-the-arnor.json b/data/game/ga/galactic-civilizations-ii-twilight-of-the-arnor.json new file mode 100644 index 000000000000..5c836161aa55 --- /dev/null +++ b/data/game/ga/galactic-civilizations-ii-twilight-of-the-arnor.json @@ -0,0 +1,21 @@ +{ + "slug": "galactic-civilizations-ii-twilight-of-the-arnor", + "name": "Galactic Civilizations II: Twilight of the Arnor", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2090511" + ], + "release_date": "2008-04-30", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "turn-based strategy video game" + ], + "developers": [ + "Stardock" + ], + "publishers": [ + "Stardock" + ] +} diff --git a/data/game/ga/galactic-civilizations-iii-crusade.json b/data/game/ga/galactic-civilizations-iii-crusade.json new file mode 100644 index 000000000000..0a63405915e4 --- /dev/null +++ b/data/game/ga/galactic-civilizations-iii-crusade.json @@ -0,0 +1,18 @@ +{ + "slug": "galactic-civilizations-iii-crusade", + "name": "Galactic Civilizations III: Crusade", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113283487" + ], + "release_date": "2017-05-04", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Stardock" + ], + "publishers": [ + "Stardock" + ] +} diff --git a/data/game/ga/galactic-civilizations-iii-intrigue.json b/data/game/ga/galactic-civilizations-iii-intrigue.json new file mode 100644 index 000000000000..efe3ec53a79e --- /dev/null +++ b/data/game/ga/galactic-civilizations-iii-intrigue.json @@ -0,0 +1,18 @@ +{ + "slug": "galactic-civilizations-iii-intrigue", + "name": "Galactic Civilizations III: Intrigue", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113283493" + ], + "release_date": "2018-04-11", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Stardock" + ], + "publishers": [ + "Stardock" + ] +} diff --git a/data/game/ga/galactic-civilizations-iii-mercenaries.json b/data/game/ga/galactic-civilizations-iii-mercenaries.json new file mode 100644 index 000000000000..86543d038629 --- /dev/null +++ b/data/game/ga/galactic-civilizations-iii-mercenaries.json @@ -0,0 +1,8 @@ +{ + "slug": "galactic-civilizations-iii-mercenaries", + "name": "Galactic Civilizations III: Mercenaries", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127164682" + ] +} diff --git a/data/game/ga/galactic-civilizations-iii-retribution-expansion.json b/data/game/ga/galactic-civilizations-iii-retribution-expansion.json new file mode 100644 index 000000000000..5b0233fbbd88 --- /dev/null +++ b/data/game/ga/galactic-civilizations-iii-retribution-expansion.json @@ -0,0 +1,8 @@ +{ + "slug": "galactic-civilizations-iii-retribution-expansion", + "name": "Galactic Civilizations III: Retribution Expansion", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137859646" + ] +} diff --git a/data/game/ga/galaga-30th-collection.json b/data/game/ga/galaga-30th-collection.json new file mode 100644 index 000000000000..734cebb5c87a --- /dev/null +++ b/data/game/ga/galaga-30th-collection.json @@ -0,0 +1,15 @@ +{ + "slug": "galaga-30th-collection", + "name": "Galaga 30th Collection", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5517860" + ], + "release_date": "2011-07-23", + "platforms": [ + "iOS" + ], + "publishers": [ + "Bandai Namco Holdings" + ] +} diff --git a/data/game/ga/galaga-wars-q109303617.json b/data/game/ga/galaga-wars-q109303617.json new file mode 100644 index 000000000000..ceb83846cfaa --- /dev/null +++ b/data/game/ga/galaga-wars-q109303617.json @@ -0,0 +1,22 @@ +{ + "slug": "galaga-wars-q109303617", + "name": "Galaga Wars+", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109303617" + ], + "release_date": "2021-11-12", + "platforms": [ + "iPadOS", + "iOS" + ], + "genres": [ + "shoot 'em up" + ], + "developers": [ + "Bandai Namco Entertainment" + ], + "publishers": [ + "Bandai Namco Entertainment" + ] +} diff --git a/data/game/ga/galaxy-of-games-201.json b/data/game/ga/galaxy-of-games-201.json new file mode 100644 index 000000000000..cf83dd267435 --- /dev/null +++ b/data/game/ga/galaxy-of-games-201.json @@ -0,0 +1,15 @@ +{ + "slug": "galaxy-of-games-201", + "name": "Galaxy of Games 201", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125526735" + ], + "release_date": "2002-01-01", + "platforms": [ + "Microsoft Windows" + ], + "publishers": [ + "eGames" + ] +} diff --git a/data/game/ga/gambit-q63065589.json b/data/game/ga/gambit-q63065589.json new file mode 100644 index 000000000000..cf362a01d0fa --- /dev/null +++ b/data/game/ga/gambit-q63065589.json @@ -0,0 +1,8 @@ +{ + "slug": "gambit-q63065589", + "name": "Gambit", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065589" + ] +} diff --git a/data/game/ga/game-box-s-rie-corridas.json b/data/game/ga/game-box-s-rie-corridas.json new file mode 100644 index 000000000000..48ef785b9cbf --- /dev/null +++ b/data/game/ga/game-box-s-rie-corridas.json @@ -0,0 +1,8 @@ +{ + "slug": "game-box-s-rie-corridas", + "name": "Game Box Série Corridas", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108037799" + ] +} diff --git a/data/game/ga/game-box-s-rie-esportes-radicais.json b/data/game/ga/game-box-s-rie-esportes-radicais.json new file mode 100644 index 000000000000..14c770577853 --- /dev/null +++ b/data/game/ga/game-box-s-rie-esportes-radicais.json @@ -0,0 +1,8 @@ +{ + "slug": "game-box-s-rie-esportes-radicais", + "name": "Game Box Série Esportes Radicais", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108037778" + ] +} diff --git a/data/game/ga/game-box-s-rie-esportes.json b/data/game/ga/game-box-s-rie-esportes.json new file mode 100644 index 000000000000..808246477985 --- /dev/null +++ b/data/game/ga/game-box-s-rie-esportes.json @@ -0,0 +1,8 @@ +{ + "slug": "game-box-s-rie-esportes", + "name": "Game Box Série Esportes", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108037761" + ] +} diff --git a/data/game/ga/game-box-s-rie-lutas.json b/data/game/ga/game-box-s-rie-lutas.json new file mode 100644 index 000000000000..2cd5befafe6b --- /dev/null +++ b/data/game/ga/game-box-s-rie-lutas.json @@ -0,0 +1,8 @@ +{ + "slug": "game-box-s-rie-lutas", + "name": "Game Box Série Lutas", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q74238390" + ] +} diff --git a/data/game/ga/game-boy-advance-nintendo-classics.json b/data/game/ga/game-boy-advance-nintendo-classics.json new file mode 100644 index 000000000000..85a1ce16ede3 --- /dev/null +++ b/data/game/ga/game-boy-advance-nintendo-classics.json @@ -0,0 +1,11 @@ +{ + "slug": "game-boy-advance-nintendo-classics", + "name": "Game Boy Advance – Nintendo Classics", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120336447" + ], + "publishers": [ + "Nintendo" + ] +} diff --git a/data/game/ga/game-boy-nintendo-classics.json b/data/game/ga/game-boy-nintendo-classics.json new file mode 100644 index 000000000000..4f48723ee27e --- /dev/null +++ b/data/game/ga/game-boy-nintendo-classics.json @@ -0,0 +1,11 @@ +{ + "slug": "game-boy-nintendo-classics", + "name": "Game Boy – Nintendo Classics", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116741356" + ], + "publishers": [ + "Nintendo" + ] +} diff --git a/data/game/ga/game-boy-wars-advance-1-2.json b/data/game/ga/game-boy-wars-advance-1-2.json new file mode 100644 index 000000000000..0346f7403c54 --- /dev/null +++ b/data/game/ga/game-boy-wars-advance-1-2.json @@ -0,0 +1,13 @@ +{ + "slug": "game-boy-wars-advance-1-2", + "name": "Game Boy Wars Advance 1+2", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108744960" + ], + "release_date": "2004-11-25", + "platforms": [ + "Game Boy Advance", + "Wii U" + ] +} diff --git a/data/game/ga/game-dev-story-q107342977.json b/data/game/ga/game-dev-story-q107342977.json new file mode 100644 index 000000000000..24a276f5b552 --- /dev/null +++ b/data/game/ga/game-dev-story-q107342977.json @@ -0,0 +1,19 @@ +{ + "slug": "game-dev-story-q107342977", + "name": "Game Dev Story+", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107342977" + ], + "release_date": "2021-06-17", + "platforms": [ + "iPadOS", + "iOS" + ], + "developers": [ + "Kairosoft" + ], + "publishers": [ + "Kairosoft" + ] +} diff --git a/data/game/ga/game-lab-at-peppermill-reno.json b/data/game/ga/game-lab-at-peppermill-reno.json new file mode 100644 index 000000000000..294a9ee72b0e --- /dev/null +++ b/data/game/ga/game-lab-at-peppermill-reno.json @@ -0,0 +1,8 @@ +{ + "slug": "game-lab-at-peppermill-reno", + "name": "Game Lab at Peppermill Reno", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q64840993" + ] +} diff --git a/data/game/ga/game-watch-collection-2.json b/data/game/ga/game-watch-collection-2.json new file mode 100644 index 000000000000..a730dbd0e768 --- /dev/null +++ b/data/game/ga/game-watch-collection-2.json @@ -0,0 +1,8 @@ +{ + "slug": "game-watch-collection-2", + "name": "Game & Watch Collection 2", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138030819" + ] +} diff --git a/data/game/ga/gameassistant-special-edition.json b/data/game/ga/gameassistant-special-edition.json new file mode 100644 index 000000000000..5ea793b3ed45 --- /dev/null +++ b/data/game/ga/gameassistant-special-edition.json @@ -0,0 +1,18 @@ +{ + "slug": "gameassistant-special-edition", + "name": "GameAssistant - Special Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q87750646" + ], + "release_date": "2020-03-02", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "GameAssistant Team" + ], + "publishers": [ + "GameAssistant Team" + ] +} diff --git a/data/game/ga/gamer-girl.json b/data/game/ga/gamer-girl.json new file mode 100644 index 000000000000..bb72e5a5ff6e --- /dev/null +++ b/data/game/ga/gamer-girl.json @@ -0,0 +1,20 @@ +{ + "slug": "gamer-girl", + "name": "Gamer Girl", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q97475632" + ], + "platforms": [ + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "adventure video game", + "full motion video", + "horror video game" + ], + "publishers": [ + "Wales Interactive" + ] +} diff --git a/data/game/ga/gangstas-in-space.json b/data/game/ga/gangstas-in-space.json new file mode 100644 index 000000000000..057102801d59 --- /dev/null +++ b/data/game/ga/gangstas-in-space.json @@ -0,0 +1,16 @@ +{ + "slug": "gangstas-in-space", + "name": "Gangstas in Space", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60563805" + ], + "release_date": "2012-02-21", + "platforms": [ + "PlayStation 3", + "Microsoft Windows" + ], + "publishers": [ + "Deep Silver" + ] +} diff --git a/data/game/ga/garfield-q2803678.json b/data/game/ga/garfield-q2803678.json new file mode 100644 index 000000000000..66097637b2bb --- /dev/null +++ b/data/game/ga/garfield-q2803678.json @@ -0,0 +1,21 @@ +{ + "slug": "garfield-q2803678", + "name": "Garfield", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2803678" + ], + "release_date": "1984-01-01", + "platforms": [ + "Atari 2600" + ], + "genres": [ + "platformer" + ], + "developers": [ + "Atari" + ], + "publishers": [ + "Atari" + ] +} diff --git a/data/game/ga/gartic.json b/data/game/ga/gartic.json new file mode 100644 index 000000000000..e3db4f1ad1a4 --- /dev/null +++ b/data/game/ga/gartic.json @@ -0,0 +1,15 @@ +{ + "slug": "gartic", + "name": "Gartic", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q80741181" + ], + "release_date": "2008-01-01", + "platforms": [ + "web browser" + ], + "genres": [ + "quiz video game" + ] +} diff --git a/data/game/ga/gast.json b/data/game/ga/gast.json new file mode 100644 index 000000000000..5e99f69cca5b --- /dev/null +++ b/data/game/ga/gast.json @@ -0,0 +1,8 @@ +{ + "slug": "gast", + "name": "Gast", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140471293" + ] +} diff --git a/data/game/ga/gauntlet-the-deeper-dungeons.json b/data/game/ga/gauntlet-the-deeper-dungeons.json new file mode 100644 index 000000000000..a9e98c90b8da --- /dev/null +++ b/data/game/ga/gauntlet-the-deeper-dungeons.json @@ -0,0 +1,8 @@ +{ + "slug": "gauntlet-the-deeper-dungeons", + "name": "Gauntlet: The Deeper Dungeons", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108293389" + ] +} diff --git a/data/game/gb/gbadoom.json b/data/game/gb/gbadoom.json new file mode 100644 index 000000000000..41b2111ef9a4 --- /dev/null +++ b/data/game/gb/gbadoom.json @@ -0,0 +1,11 @@ +{ + "slug": "gbadoom", + "name": "GBADoom", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124473641" + ], + "platforms": [ + "Game Boy Advance" + ] +} diff --git a/data/game/gc/gcompris.json b/data/game/gc/gcompris.json new file mode 100644 index 000000000000..d69485afe582 --- /dev/null +++ b/data/game/gc/gcompris.json @@ -0,0 +1,11 @@ +{ + "slug": "gcompris", + "name": "GCompris", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1147042" + ], + "genres": [ + "educational video game" + ] +} diff --git a/data/game/ge/gear-club-unlimited-2-ultimate-edition.json b/data/game/ge/gear-club-unlimited-2-ultimate-edition.json new file mode 100644 index 000000000000..d88384e2db06 --- /dev/null +++ b/data/game/ge/gear-club-unlimited-2-ultimate-edition.json @@ -0,0 +1,20 @@ +{ + "slug": "gear-club-unlimited-2-ultimate-edition", + "name": "Gear.Club Unlimited 2: Ultimate Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110011520" + ], + "release_date": "2021-12-07", + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 5", + "Microsoft Windows" + ], + "genres": [ + "racing video game" + ], + "developers": [ + "Eden Games" + ] +} diff --git a/data/game/ge/gears-5-hivebusters.json b/data/game/ge/gears-5-hivebusters.json new file mode 100644 index 000000000000..32b04f112100 --- /dev/null +++ b/data/game/ge/gears-5-hivebusters.json @@ -0,0 +1,22 @@ +{ + "slug": "gears-5-hivebusters", + "name": "Gears 5: Hivebusters", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106096435" + ], + "release_date": "2020-12-15", + "platforms": [ + "Xbox Series X and Series S", + "Microsoft Windows" + ], + "genres": [ + "third-person shooter" + ], + "developers": [ + "The Coalition" + ], + "publishers": [ + "Xbox Game Studios" + ] +} diff --git a/data/game/ge/gears-of-war-exile.json b/data/game/ge/gears-of-war-exile.json new file mode 100644 index 000000000000..33a50c277e72 --- /dev/null +++ b/data/game/ge/gears-of-war-exile.json @@ -0,0 +1,11 @@ +{ + "slug": "gears-of-war-exile", + "name": "Gears of War : Exile", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5876552" + ], + "developers": [ + "Epic Games" + ] +} diff --git a/data/game/ge/gears-of-war-ultimate-edition-day-one-version.json b/data/game/ge/gears-of-war-ultimate-edition-day-one-version.json new file mode 100644 index 000000000000..7a8c296dfa4f --- /dev/null +++ b/data/game/ge/gears-of-war-ultimate-edition-day-one-version.json @@ -0,0 +1,8 @@ +{ + "slug": "gears-of-war-ultimate-edition-day-one-version", + "name": "Gears of War: Ultimate Edition - Day One Version", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q90134244" + ] +} diff --git a/data/game/ge/genesis.json b/data/game/ge/genesis.json new file mode 100644 index 000000000000..1c80b10f4347 --- /dev/null +++ b/data/game/ge/genesis.json @@ -0,0 +1,9 @@ +{ + "slug": "genesis", + "name": "Genesis", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q57974037" + ], + "release_date": "2010-12-09" +} diff --git a/data/game/ge/genki-girl-pack.json b/data/game/ge/genki-girl-pack.json new file mode 100644 index 000000000000..c7ad072c4dd5 --- /dev/null +++ b/data/game/ge/genki-girl-pack.json @@ -0,0 +1,12 @@ +{ + "slug": "genki-girl-pack", + "name": "Genki Girl Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60586781" + ], + "release_date": "2012-07-03", + "platforms": [ + "Microsoft Windows" + ] +} diff --git a/data/game/ge/genkibowl-vii.json b/data/game/ge/genkibowl-vii.json new file mode 100644 index 000000000000..2d41b41b952e --- /dev/null +++ b/data/game/ge/genkibowl-vii.json @@ -0,0 +1,13 @@ +{ + "slug": "genkibowl-vii", + "name": "Genkibowl VII", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60563806" + ], + "release_date": "2012-01-17", + "platforms": [ + "PlayStation 3", + "Microsoft Windows" + ] +} diff --git a/data/game/ge/getting-over-it.json b/data/game/ge/getting-over-it.json new file mode 100644 index 000000000000..59a1fe7b38f2 --- /dev/null +++ b/data/game/ge/getting-over-it.json @@ -0,0 +1,13 @@ +{ + "slug": "getting-over-it", + "name": "Getting Over It+", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118234996" + ], + "release_date": "2023-05-04", + "platforms": [ + "iPadOS", + "iOS" + ] +} diff --git a/data/game/gh/ghost-of-tsushima-iki-island.json b/data/game/gh/ghost-of-tsushima-iki-island.json new file mode 100644 index 000000000000..2763c1a47f7b --- /dev/null +++ b/data/game/gh/ghost-of-tsushima-iki-island.json @@ -0,0 +1,20 @@ +{ + "slug": "ghost-of-tsushima-iki-island", + "name": "Ghost of Tsushima: Iki Island", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109690722" + ], + "release_date": "2021-08-20", + "platforms": [ + "PlayStation 5", + "PlayStation 4" + ], + "genres": [ + "action-adventure game", + "stealth game" + ], + "publishers": [ + "Sony Interactive Entertainment" + ] +} diff --git a/data/game/gh/ghosts-of-tabor-care-package-edition-upgrade.json b/data/game/gh/ghosts-of-tabor-care-package-edition-upgrade.json new file mode 100644 index 000000000000..15e04340b2b3 --- /dev/null +++ b/data/game/gh/ghosts-of-tabor-care-package-edition-upgrade.json @@ -0,0 +1,22 @@ +{ + "slug": "ghosts-of-tabor-care-package-edition-upgrade", + "name": "Ghosts of Tabor - Care Package Edition Upgrade", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122197162" + ], + "release_date": "2023-03-21", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "battle royale game" + ], + "developers": [ + "Combat Waffle Studios" + ], + "publishers": [ + "Beyond Frames Entertainment" + ] +} diff --git a/data/game/gh/ghosts-of-tabor-join-or-die-edition-upgrade.json b/data/game/gh/ghosts-of-tabor-join-or-die-edition-upgrade.json new file mode 100644 index 000000000000..da6c7d9d5996 --- /dev/null +++ b/data/game/gh/ghosts-of-tabor-join-or-die-edition-upgrade.json @@ -0,0 +1,22 @@ +{ + "slug": "ghosts-of-tabor-join-or-die-edition-upgrade", + "name": "Ghosts of Tabor - Join or Die Edition Upgrade", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122197159" + ], + "release_date": "2023-03-21", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "battle royale game" + ], + "developers": [ + "Combat Waffle Studios" + ], + "publishers": [ + "Beyond Frames Entertainment" + ] +} diff --git a/data/game/gh/ghosts-of-tabor-nuclear-night-edition-upgrade.json b/data/game/gh/ghosts-of-tabor-nuclear-night-edition-upgrade.json new file mode 100644 index 000000000000..eaaef291d391 --- /dev/null +++ b/data/game/gh/ghosts-of-tabor-nuclear-night-edition-upgrade.json @@ -0,0 +1,22 @@ +{ + "slug": "ghosts-of-tabor-nuclear-night-edition-upgrade", + "name": "Ghosts of Tabor - Nuclear Night Edition Upgrade", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122197146" + ], + "release_date": "2023-03-21", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "battle royale game" + ], + "developers": [ + "Combat Waffle Studios" + ], + "publishers": [ + "Beyond Frames Entertainment" + ] +} diff --git a/data/game/gh/ghosts-of-tabor-starter-pack-bundle.json b/data/game/gh/ghosts-of-tabor-starter-pack-bundle.json new file mode 100644 index 000000000000..c1895297d922 --- /dev/null +++ b/data/game/gh/ghosts-of-tabor-starter-pack-bundle.json @@ -0,0 +1,22 @@ +{ + "slug": "ghosts-of-tabor-starter-pack-bundle", + "name": "Ghosts of Tabor Starter Pack Bundle", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122197166" + ], + "release_date": "2023-06-20", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "battle royale game" + ], + "developers": [ + "Combat Waffle Studios" + ], + "publishers": [ + "Beyond Frames Entertainment" + ] +} diff --git a/data/game/gi/gigalomania.json b/data/game/gi/gigalomania.json new file mode 100644 index 000000000000..9e11277e7f9f --- /dev/null +++ b/data/game/gi/gigalomania.json @@ -0,0 +1,11 @@ +{ + "slug": "gigalomania", + "name": "Gigalomania", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127500663" + ], + "genres": [ + "real-time strategy" + ] +} diff --git a/data/game/gi/gin-rummy-classic.json b/data/game/gi/gin-rummy-classic.json new file mode 100644 index 000000000000..bf8ad4f353dc --- /dev/null +++ b/data/game/gi/gin-rummy-classic.json @@ -0,0 +1,16 @@ +{ + "slug": "gin-rummy-classic", + "name": "Gin Rummy Classic+", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q114840443" + ], + "release_date": "2022-10-07", + "platforms": [ + "iPadOS", + "iOS" + ], + "genres": [ + "card video game" + ] +} diff --git a/data/game/gi/gingira-panic.json b/data/game/gi/gingira-panic.json new file mode 100644 index 000000000000..a8e934695af5 --- /dev/null +++ b/data/game/gi/gingira-panic.json @@ -0,0 +1,8 @@ +{ + "slug": "gingira-panic", + "name": "Gingira Panic", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11298347" + ] +} diff --git a/data/game/gi/gingira-paradise.json b/data/game/gi/gingira-paradise.json new file mode 100644 index 000000000000..723df248ec49 --- /dev/null +++ b/data/game/gi/gingira-paradise.json @@ -0,0 +1,8 @@ +{ + "slug": "gingira-paradise", + "name": "Gingira Paradise", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11298350" + ] +} diff --git a/data/game/gl/gldoom.json b/data/game/gl/gldoom.json new file mode 100644 index 000000000000..73c3a644af61 --- /dev/null +++ b/data/game/gl/gldoom.json @@ -0,0 +1,8 @@ +{ + "slug": "gldoom", + "name": "glDoom", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q67200469" + ] +} diff --git a/data/game/gl/gloomhaven-jaws-of-the-lion.json b/data/game/gl/gloomhaven-jaws-of-the-lion.json new file mode 100644 index 000000000000..2afcb779dd90 --- /dev/null +++ b/data/game/gl/gloomhaven-jaws-of-the-lion.json @@ -0,0 +1,24 @@ +{ + "slug": "gloomhaven-jaws-of-the-lion", + "name": "Gloomhaven: Jaws of the Lion", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111680474" + ], + "release_date": "2022-05-17", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "board video game", + "dungeon crawl", + "tactical role-playing game" + ], + "developers": [ + "Flaming Fowl Studios" + ], + "publishers": [ + "Twin Sails Interactive" + ] +} diff --git a/data/game/gl/glquake.json b/data/game/gl/glquake.json new file mode 100644 index 000000000000..97365bbbab27 --- /dev/null +++ b/data/game/gl/glquake.json @@ -0,0 +1,14 @@ +{ + "slug": "glquake", + "name": "GLQuake", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120671255" + ], + "platforms": [ + "Classic Mac OS" + ], + "developers": [ + "id Software" + ] +} diff --git a/data/game/gn/gnome-chess.json b/data/game/gn/gnome-chess.json new file mode 100644 index 000000000000..e2e5420957b4 --- /dev/null +++ b/data/game/gn/gnome-chess.json @@ -0,0 +1,11 @@ +{ + "slug": "gnome-chess", + "name": "GNOME Chess", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1019252" + ], + "developers": [ + "The GNOME Project" + ] +} diff --git a/data/game/gn/gnu-chess.json b/data/game/gn/gnu-chess.json new file mode 100644 index 000000000000..837562ba1466 --- /dev/null +++ b/data/game/gn/gnu-chess.json @@ -0,0 +1,18 @@ +{ + "slug": "gnu-chess", + "name": "GNU Chess", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q494713" + ], + "platforms": [ + "Intel P6", + "x86-64" + ], + "genres": [ + "chess video game" + ], + "developers": [ + "GNU Project" + ] +} diff --git a/data/game/go/goat-simulator-q112231075.json b/data/game/go/goat-simulator-q112231075.json new file mode 100644 index 000000000000..778a4563cc8d --- /dev/null +++ b/data/game/go/goat-simulator-q112231075.json @@ -0,0 +1,13 @@ +{ + "slug": "goat-simulator-q112231075", + "name": "Goat Simulator+", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112231075" + ], + "release_date": "2022-05-13", + "platforms": [ + "iPadOS", + "iOS" + ] +} diff --git a/data/game/go/god-of-war-collection-q5576061.json b/data/game/go/god-of-war-collection-q5576061.json new file mode 100644 index 000000000000..05d285c3da80 --- /dev/null +++ b/data/game/go/god-of-war-collection-q5576061.json @@ -0,0 +1,23 @@ +{ + "slug": "god-of-war-collection-q5576061", + "name": "God of War Collection", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5576061" + ], + "release_date": "2009-11-17", + "platforms": [ + "PlayStation Vita", + "PlayStation 3" + ], + "genres": [ + "hack and slash" + ], + "developers": [ + "Santa Monica Studio", + "Ready at Dawn" + ], + "publishers": [ + "Sony Interactive Entertainment" + ] +} diff --git a/data/game/go/god-of-war-collection-volume-ii.json b/data/game/go/god-of-war-collection-volume-ii.json new file mode 100644 index 000000000000..3be6f0ed6675 --- /dev/null +++ b/data/game/go/god-of-war-collection-volume-ii.json @@ -0,0 +1,8 @@ +{ + "slug": "god-of-war-collection-volume-ii", + "name": "God Of War Collection: Volume II", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123337770" + ] +} diff --git a/data/game/go/god-of-war-ragnar-k-valhalla.json b/data/game/go/god-of-war-ragnar-k-valhalla.json new file mode 100644 index 000000000000..e242a6d6d050 --- /dev/null +++ b/data/game/go/god-of-war-ragnar-k-valhalla.json @@ -0,0 +1,8 @@ +{ + "slug": "god-of-war-ragnar-k-valhalla", + "name": "God of War Ragnarök: Valhalla", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123698932" + ] +} diff --git a/data/game/go/god-of-war-saga-collection.json b/data/game/go/god-of-war-saga-collection.json new file mode 100644 index 000000000000..8f6fe0be29f4 --- /dev/null +++ b/data/game/go/god-of-war-saga-collection.json @@ -0,0 +1,8 @@ +{ + "slug": "god-of-war-saga-collection", + "name": "God of War: Saga Collection", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11682150" + ] +} diff --git a/data/game/go/godfall-ultimate-edition.json b/data/game/go/godfall-ultimate-edition.json new file mode 100644 index 000000000000..9d5e61a3f7fe --- /dev/null +++ b/data/game/go/godfall-ultimate-edition.json @@ -0,0 +1,25 @@ +{ + "slug": "godfall-ultimate-edition", + "name": "Godfall: Ultimate Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111793372" + ], + "release_date": "2022-04-07", + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 5", + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "action game", + "role-playing video game" + ], + "developers": [ + "Counterplay Games Inc." + ], + "publishers": [ + "Gearbox Publishing" + ] +} diff --git a/data/game/go/godmaster.json b/data/game/go/godmaster.json new file mode 100644 index 000000000000..0eccfe13b565 --- /dev/null +++ b/data/game/go/godmaster.json @@ -0,0 +1,12 @@ +{ + "slug": "godmaster", + "name": "Godmaster", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116592537" + ], + "release_date": "2018-08-23", + "developers": [ + "Team Cherry" + ] +} diff --git a/data/game/go/golaxy.json b/data/game/go/golaxy.json new file mode 100644 index 000000000000..edecf72c8adb --- /dev/null +++ b/data/game/go/golaxy.json @@ -0,0 +1,8 @@ +{ + "slug": "golaxy", + "name": "Golaxy", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q104549592" + ] +} diff --git a/data/game/go/gold-games-2.json b/data/game/go/gold-games-2.json new file mode 100644 index 000000000000..8ec9e0b13f1c --- /dev/null +++ b/data/game/go/gold-games-2.json @@ -0,0 +1,11 @@ +{ + "slug": "gold-games-2", + "name": "Gold Games 2", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125556586" + ], + "publishers": [ + "TopWare Interactive" + ] +} diff --git a/data/game/go/gold-games-3.json b/data/game/go/gold-games-3.json new file mode 100644 index 000000000000..ef68129a9c61 --- /dev/null +++ b/data/game/go/gold-games-3.json @@ -0,0 +1,8 @@ +{ + "slug": "gold-games-3", + "name": "Gold Games 3", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125203089" + ] +} diff --git a/data/game/go/gold-games-4.json b/data/game/go/gold-games-4.json new file mode 100644 index 000000000000..4d1fdb4bbfaf --- /dev/null +++ b/data/game/go/gold-games-4.json @@ -0,0 +1,11 @@ +{ + "slug": "gold-games-4", + "name": "Gold Games 4", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125556571" + ], + "publishers": [ + "TopWare Interactive" + ] +} diff --git a/data/game/go/gold-games.json b/data/game/go/gold-games.json new file mode 100644 index 000000000000..a8960b733b29 --- /dev/null +++ b/data/game/go/gold-games.json @@ -0,0 +1,8 @@ +{ + "slug": "gold-games", + "name": "Gold Games", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125556595" + ] +} diff --git a/data/game/go/gold-miner-q2267917.json b/data/game/go/gold-miner-q2267917.json new file mode 100644 index 000000000000..477c5af7551d --- /dev/null +++ b/data/game/go/gold-miner-q2267917.json @@ -0,0 +1,9 @@ +{ + "slug": "gold-miner-q2267917", + "name": "Gold Miner", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2267917" + ], + "release_date": "2002-01-01" +} diff --git a/data/game/go/golden-axe-beast-rider.json b/data/game/go/golden-axe-beast-rider.json new file mode 100644 index 000000000000..02f361ee4715 --- /dev/null +++ b/data/game/go/golden-axe-beast-rider.json @@ -0,0 +1,21 @@ +{ + "slug": "golden-axe-beast-rider", + "name": "Golden Axe: Beast Rider", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5579170" + ], + "release_date": "2008-10-14", + "platforms": [ + "PlayStation 3" + ], + "genres": [ + "hack and slash" + ], + "developers": [ + "Sega Studios San Francisco" + ], + "publishers": [ + "Sega" + ] +} diff --git a/data/game/go/golden-oldies-volume-1-computer-software-classics.json b/data/game/go/golden-oldies-volume-1-computer-software-classics.json new file mode 100644 index 000000000000..8310077c633b --- /dev/null +++ b/data/game/go/golden-oldies-volume-1-computer-software-classics.json @@ -0,0 +1,11 @@ +{ + "slug": "golden-oldies-volume-1-computer-software-classics", + "name": "Golden Oldies: Volume 1 - Computer Software Classics", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q104855976" + ], + "publishers": [ + "Software Country" + ] +} diff --git a/data/game/go/goldenland-cold-heaven.json b/data/game/go/goldenland-cold-heaven.json new file mode 100644 index 000000000000..c8ff7d6eb7e1 --- /dev/null +++ b/data/game/go/goldenland-cold-heaven.json @@ -0,0 +1,21 @@ +{ + "slug": "goldenland-cold-heaven", + "name": "GoldenLand: Cold Heaven", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4192385" + ], + "release_date": "2004-01-23", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "role-playing video game" + ], + "developers": [ + "Burut CT" + ], + "publishers": [ + "Russobit-M" + ] +} diff --git a/data/game/go/goldrunner-ii-scenery-disk-1.json b/data/game/go/goldrunner-ii-scenery-disk-1.json new file mode 100644 index 000000000000..80cb4b2cabc1 --- /dev/null +++ b/data/game/go/goldrunner-ii-scenery-disk-1.json @@ -0,0 +1,12 @@ +{ + "slug": "goldrunner-ii-scenery-disk-1", + "name": "Goldrunner II: Scenery Disk 1", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126185071" + ], + "platforms": [ + "Atari ST", + "Commodore Amiga" + ] +} diff --git a/data/game/go/goldrunner-ii-scenery-disk-2.json b/data/game/go/goldrunner-ii-scenery-disk-2.json new file mode 100644 index 000000000000..eee96a501025 --- /dev/null +++ b/data/game/go/goldrunner-ii-scenery-disk-2.json @@ -0,0 +1,12 @@ +{ + "slug": "goldrunner-ii-scenery-disk-2", + "name": "Goldrunner II: Scenery Disk 2", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126185073" + ], + "platforms": [ + "Atari ST", + "Commodore Amiga" + ] +} diff --git a/data/game/go/good-sudoku.json b/data/game/go/good-sudoku.json new file mode 100644 index 000000000000..e1b3a4a18156 --- /dev/null +++ b/data/game/go/good-sudoku.json @@ -0,0 +1,19 @@ +{ + "slug": "good-sudoku", + "name": "Good Sudoku+", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107349456" + ], + "release_date": "2021-04-02", + "platforms": [ + "iPadOS", + "iOS" + ], + "genres": [ + "sudoku video game" + ], + "developers": [ + "Zach Gage" + ] +} diff --git a/data/game/go/google-pac-man.json b/data/game/go/google-pac-man.json new file mode 100644 index 000000000000..e98c3000d432 --- /dev/null +++ b/data/game/go/google-pac-man.json @@ -0,0 +1,15 @@ +{ + "slug": "google-pac-man", + "name": "Google Pac-Man", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q52074855" + ], + "release_date": "2010-05-21", + "developers": [ + "Google" + ], + "publishers": [ + "Google" + ] +} diff --git a/data/game/go/gorkamorka.json b/data/game/go/gorkamorka.json new file mode 100644 index 000000000000..8296a1507c6e --- /dev/null +++ b/data/game/go/gorkamorka.json @@ -0,0 +1,20 @@ +{ + "slug": "gorkamorka", + "name": "Gorkamorka", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112063550" + ], + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "vehicular combat game" + ], + "developers": [ + "Realtime Associates" + ], + "publishers": [ + "Ripcord Games" + ] +} diff --git a/data/game/go/gotcha-q65040599.json b/data/game/go/gotcha-q65040599.json new file mode 100644 index 000000000000..72375edeb015 --- /dev/null +++ b/data/game/go/gotcha-q65040599.json @@ -0,0 +1,18 @@ +{ + "slug": "gotcha-q65040599", + "name": "Gotcha!", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q65040599" + ], + "platforms": [ + "IBM Personal Computer", + "Atari Jaguar" + ], + "genres": [ + "action game" + ], + "publishers": [ + "Atari Corporation" + ] +} diff --git a/data/game/go/gothic-3-forsaken-gods.json b/data/game/go/gothic-3-forsaken-gods.json new file mode 100644 index 000000000000..1b1eb646019c --- /dev/null +++ b/data/game/go/gothic-3-forsaken-gods.json @@ -0,0 +1,23 @@ +{ + "slug": "gothic-3-forsaken-gods", + "name": "Gothic 3: Forsaken Gods", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2657755" + ], + "release_date": "2008-11-21", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "role-playing video game" + ], + "developers": [ + "Trine Game Studios", + "Mad Vulture Games" + ], + "publishers": [ + "JoWooD Entertainment", + "THQ Nordic" + ] +} diff --git a/data/game/go/governor-of-poker-2-premium-edition.json b/data/game/go/governor-of-poker-2-premium-edition.json new file mode 100644 index 000000000000..7faa4fdfd5c5 --- /dev/null +++ b/data/game/go/governor-of-poker-2-premium-edition.json @@ -0,0 +1,12 @@ +{ + "slug": "governor-of-poker-2-premium-edition", + "name": "Governor of Poker 2 - Premium Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124066298" + ], + "release_date": "2010-10-11", + "platforms": [ + "Microsoft Windows" + ] +} diff --git a/data/game/gr/grab-a-roni-gondola.json b/data/game/gr/grab-a-roni-gondola.json new file mode 100644 index 000000000000..cc157d441e59 --- /dev/null +++ b/data/game/gr/grab-a-roni-gondola.json @@ -0,0 +1,8 @@ +{ + "slug": "grab-a-roni-gondola", + "name": "Grab-a-Roni Gondola", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q128014877" + ] +} diff --git a/data/game/gr/gradius-collection.json b/data/game/gr/gradius-collection.json new file mode 100644 index 000000000000..85f2f22b68e8 --- /dev/null +++ b/data/game/gr/gradius-collection.json @@ -0,0 +1,21 @@ +{ + "slug": "gradius-collection", + "name": "Gradius Collection", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4387082" + ], + "release_date": "2006-02-09", + "platforms": [ + "PlayStation Portable" + ], + "genres": [ + "shooter game" + ], + "developers": [ + "Konami" + ], + "publishers": [ + "Konami" + ] +} diff --git a/data/game/gr/gradius-the-slot.json b/data/game/gr/gradius-the-slot.json new file mode 100644 index 000000000000..7e1a63e691de --- /dev/null +++ b/data/game/gr/gradius-the-slot.json @@ -0,0 +1,18 @@ +{ + "slug": "gradius-the-slot", + "name": "Gradius: The Slot", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11300196" + ], + "release_date": "2011-07-25", + "genres": [ + "slot machine" + ], + "developers": [ + "KPE" + ], + "publishers": [ + "KPE" + ] +} diff --git a/data/game/gr/gran-turismo-8.json b/data/game/gr/gran-turismo-8.json new file mode 100644 index 000000000000..a2ab4acda86e --- /dev/null +++ b/data/game/gr/gran-turismo-8.json @@ -0,0 +1,17 @@ +{ + "slug": "gran-turismo-8", + "name": "Gran Turismo 8", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116729231" + ], + "genres": [ + "racing video game" + ], + "developers": [ + "Polyphony Digital" + ], + "publishers": [ + "Sony Interactive Entertainment" + ] +} diff --git a/data/game/gr/gran-turismo-for-boys.json b/data/game/gr/gran-turismo-for-boys.json new file mode 100644 index 000000000000..f77fe7f94240 --- /dev/null +++ b/data/game/gr/gran-turismo-for-boys.json @@ -0,0 +1,20 @@ +{ + "slug": "gran-turismo-for-boys", + "name": "Gran Turismo for Boys", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124259186" + ], + "platforms": [ + "PlayStation 3" + ], + "genres": [ + "sim racing" + ], + "developers": [ + "Polyphony Digital" + ], + "publishers": [ + "Sony Interactive Entertainment" + ] +} diff --git a/data/game/gr/grand-mountain-adventure-q118233902.json b/data/game/gr/grand-mountain-adventure-q118233902.json new file mode 100644 index 000000000000..b959f65963a6 --- /dev/null +++ b/data/game/gr/grand-mountain-adventure-q118233902.json @@ -0,0 +1,16 @@ +{ + "slug": "grand-mountain-adventure-q118233902", + "name": "Grand Mountain Adventure+", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118233902" + ], + "release_date": "2023-04-28", + "platforms": [ + "iPadOS", + "iOS" + ], + "developers": [ + "Toppluva" + ] +} diff --git a/data/game/gr/grand-prix-racing-online.json b/data/game/gr/grand-prix-racing-online.json new file mode 100644 index 000000000000..6dadea6993c0 --- /dev/null +++ b/data/game/gr/grand-prix-racing-online.json @@ -0,0 +1,8 @@ +{ + "slug": "grand-prix-racing-online", + "name": "Grand Prix Racing Online", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8964946" + ] +} diff --git a/data/game/gr/grand-theft-auto-collection.json b/data/game/gr/grand-theft-auto-collection.json new file mode 100644 index 000000000000..4fa855ea7a0b --- /dev/null +++ b/data/game/gr/grand-theft-auto-collection.json @@ -0,0 +1,11 @@ +{ + "slug": "grand-theft-auto-collection", + "name": "Grand Theft Auto Collection", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q78669829" + ], + "platforms": [ + "Microsoft Windows" + ] +} diff --git a/data/game/gr/grand-theft-auto-director-s-cut.json b/data/game/gr/grand-theft-auto-director-s-cut.json new file mode 100644 index 000000000000..1ccba6a6caf0 --- /dev/null +++ b/data/game/gr/grand-theft-auto-director-s-cut.json @@ -0,0 +1,19 @@ +{ + "slug": "grand-theft-auto-director-s-cut", + "name": "Grand Theft Auto: Director's Cut", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109931593" + ], + "release_date": "1999-01-01", + "platforms": [ + "DOS", + "Microsoft Windows" + ], + "genres": [ + "top-down shooter" + ], + "developers": [ + "DMA Design" + ] +} diff --git a/data/game/gr/grand-theft-auto-double-pack.json b/data/game/gr/grand-theft-auto-double-pack.json new file mode 100644 index 000000000000..a4a8091fe334 --- /dev/null +++ b/data/game/gr/grand-theft-auto-double-pack.json @@ -0,0 +1,9 @@ +{ + "slug": "grand-theft-auto-double-pack", + "name": "Grand Theft Auto Double Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4039655" + ], + "release_date": "2003-01-01" +} diff --git a/data/game/gr/grand-theft-auto-iv-complete-edition.json b/data/game/gr/grand-theft-auto-iv-complete-edition.json new file mode 100644 index 000000000000..7788d7a996ac --- /dev/null +++ b/data/game/gr/grand-theft-auto-iv-complete-edition.json @@ -0,0 +1,17 @@ +{ + "slug": "grand-theft-auto-iv-complete-edition", + "name": "Grand Theft Auto IV: Complete Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4039657" + ], + "release_date": "2010-10-27", + "platforms": [ + "PlayStation 3", + "Microsoft Windows" + ], + "genres": [ + "action-adventure game", + "third-person shooter" + ] +} diff --git a/data/game/gr/grand-theft-auto-iv-grand-theft-auto-san-andreas.json b/data/game/gr/grand-theft-auto-iv-grand-theft-auto-san-andreas.json new file mode 100644 index 000000000000..5af21a624341 --- /dev/null +++ b/data/game/gr/grand-theft-auto-iv-grand-theft-auto-san-andreas.json @@ -0,0 +1,12 @@ +{ + "slug": "grand-theft-auto-iv-grand-theft-auto-san-andreas", + "name": "Grand Theft Auto IV + Grand Theft Auto: San Andreas", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q78163089" + ], + "release_date": "2018-11-19", + "platforms": [ + "Microsoft Windows" + ] +} diff --git a/data/game/gr/grand-theft-auto-q63284897.json b/data/game/gr/grand-theft-auto-q63284897.json new file mode 100644 index 000000000000..e3106144e301 --- /dev/null +++ b/data/game/gr/grand-theft-auto-q63284897.json @@ -0,0 +1,8 @@ +{ + "slug": "grand-theft-auto-q63284897", + "name": "Grand Theft Auto", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63284897" + ] +} diff --git a/data/game/gr/grand-theft-auto-the-classics-collection.json b/data/game/gr/grand-theft-auto-the-classics-collection.json new file mode 100644 index 000000000000..8715a14a80e8 --- /dev/null +++ b/data/game/gr/grand-theft-auto-the-classics-collection.json @@ -0,0 +1,14 @@ +{ + "slug": "grand-theft-auto-the-classics-collection", + "name": "Grand Theft Auto: The Classics Collection", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4039654" + ], + "platforms": [ + "Microsoft Windows" + ], + "publishers": [ + "Take-Two Interactive" + ] +} diff --git a/data/game/gr/grand-theft-auto-the-trilogy.json b/data/game/gr/grand-theft-auto-the-trilogy.json new file mode 100644 index 000000000000..a506101b4a7e --- /dev/null +++ b/data/game/gr/grand-theft-auto-the-trilogy.json @@ -0,0 +1,15 @@ +{ + "slug": "grand-theft-auto-the-trilogy", + "name": "Grand Theft Auto: The Trilogy", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q888978" + ], + "release_date": "2005-10-17", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "action-adventure game" + ] +} diff --git a/data/game/gr/grand-theft-auto-v-great-white-shark-cash-card.json b/data/game/gr/grand-theft-auto-v-great-white-shark-cash-card.json new file mode 100644 index 000000000000..491ae0378b60 --- /dev/null +++ b/data/game/gr/grand-theft-auto-v-great-white-shark-cash-card.json @@ -0,0 +1,12 @@ +{ + "slug": "grand-theft-auto-v-great-white-shark-cash-card", + "name": "Grand Theft Auto V & Great White Shark Cash Card", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q78664676" + ], + "release_date": "2019-01-04", + "platforms": [ + "Microsoft Windows" + ] +} diff --git a/data/game/gr/grand-theft-auto-v-premium-online-edition-great-white-shark-card-bundle.json b/data/game/gr/grand-theft-auto-v-premium-online-edition-great-white-shark-card-bundle.json new file mode 100644 index 000000000000..774253c12ad4 --- /dev/null +++ b/data/game/gr/grand-theft-auto-v-premium-online-edition-great-white-shark-card-bundle.json @@ -0,0 +1,11 @@ +{ + "slug": "grand-theft-auto-v-premium-online-edition-great-white-shark-card-bundle", + "name": "Grand Theft Auto V: Premium Online Edition & Great White Shark Card Bundle", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q78667259" + ], + "platforms": [ + "Microsoft Windows" + ] +} diff --git a/data/game/gr/grand-theft-auto-v-premium-online-edition-megalodon-shark-card-bundle.json b/data/game/gr/grand-theft-auto-v-premium-online-edition-megalodon-shark-card-bundle.json new file mode 100644 index 000000000000..dce1f466cad4 --- /dev/null +++ b/data/game/gr/grand-theft-auto-v-premium-online-edition-megalodon-shark-card-bundle.json @@ -0,0 +1,11 @@ +{ + "slug": "grand-theft-auto-v-premium-online-edition-megalodon-shark-card-bundle", + "name": "Grand Theft Auto V: Premium Online Edition & Megalodon Shark Card Bundle", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q78667885" + ], + "platforms": [ + "Microsoft Windows" + ] +} diff --git a/data/game/gr/grand-theft-auto-v-premium-online-edition-whale-shark-card-bundle.json b/data/game/gr/grand-theft-auto-v-premium-online-edition-whale-shark-card-bundle.json new file mode 100644 index 000000000000..c56284a85628 --- /dev/null +++ b/data/game/gr/grand-theft-auto-v-premium-online-edition-whale-shark-card-bundle.json @@ -0,0 +1,11 @@ +{ + "slug": "grand-theft-auto-v-premium-online-edition-whale-shark-card-bundle", + "name": "Grand Theft Auto V: Premium Online Edition & Whale Shark Card Bundle", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q78667848" + ], + "platforms": [ + "Microsoft Windows" + ] +} diff --git a/data/game/gr/grand-theft-auto-v-premium-online-edition.json b/data/game/gr/grand-theft-auto-v-premium-online-edition.json new file mode 100644 index 000000000000..0829668f1ab7 --- /dev/null +++ b/data/game/gr/grand-theft-auto-v-premium-online-edition.json @@ -0,0 +1,11 @@ +{ + "slug": "grand-theft-auto-v-premium-online-edition", + "name": "Grand Theft Auto V: Premium Online Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q78667917" + ], + "platforms": [ + "Microsoft Windows" + ] +} diff --git a/data/game/gr/grand-theft-auto.json b/data/game/gr/grand-theft-auto.json new file mode 100644 index 000000000000..37419084cc29 --- /dev/null +++ b/data/game/gr/grand-theft-auto.json @@ -0,0 +1,22 @@ +{ + "slug": "grand-theft-auto", + "name": "Grand Theft Auto", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105265216" + ], + "release_date": "1999-11-22", + "platforms": [ + "Game Boy Color" + ], + "genres": [ + "action-adventure game", + "sandbox game" + ], + "developers": [ + "Rockstar Lincoln" + ], + "publishers": [ + "Take-Two Interactive" + ] +} diff --git a/data/game/gr/grandmaster-chess-cd-rom-edition.json b/data/game/gr/grandmaster-chess-cd-rom-edition.json new file mode 100644 index 000000000000..5fdf82b5b52c --- /dev/null +++ b/data/game/gr/grandmaster-chess-cd-rom-edition.json @@ -0,0 +1,14 @@ +{ + "slug": "grandmaster-chess-cd-rom-edition", + "name": "Grandmaster Chess (CD-ROM Edition)", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126888470" + ], + "platforms": [ + "DOS" + ], + "publishers": [ + "Capstone Software" + ] +} diff --git a/data/game/gr/graveyard-keeper-better-save-soul.json b/data/game/gr/graveyard-keeper-better-save-soul.json new file mode 100644 index 000000000000..b636fe8e42c6 --- /dev/null +++ b/data/game/gr/graveyard-keeper-better-save-soul.json @@ -0,0 +1,13 @@ +{ + "slug": "graveyard-keeper-better-save-soul", + "name": "Graveyard Keeper - Better Save Soul", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115700444" + ], + "release_date": "2021-10-27", + "platforms": [ + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/game/gr/graveyard-keeper-game-of-crone.json b/data/game/gr/graveyard-keeper-game-of-crone.json new file mode 100644 index 000000000000..0b13343532e3 --- /dev/null +++ b/data/game/gr/graveyard-keeper-game-of-crone.json @@ -0,0 +1,13 @@ +{ + "slug": "graveyard-keeper-game-of-crone", + "name": "Graveyard Keeper - Game Of Crone", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115700427" + ], + "release_date": "2020-10-27", + "platforms": [ + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/game/gr/graveyard-keeper-stranger-sins.json b/data/game/gr/graveyard-keeper-stranger-sins.json new file mode 100644 index 000000000000..4591d3f5371d --- /dev/null +++ b/data/game/gr/graveyard-keeper-stranger-sins.json @@ -0,0 +1,13 @@ +{ + "slug": "graveyard-keeper-stranger-sins", + "name": "Graveyard Keeper - Stranger Sins", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115695238" + ], + "release_date": "2019-10-28", + "platforms": [ + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/game/gr/gridlee.json b/data/game/gr/gridlee.json new file mode 100644 index 000000000000..44133fb6c3cb --- /dev/null +++ b/data/game/gr/gridlee.json @@ -0,0 +1,8 @@ +{ + "slug": "gridlee", + "name": "Gridlee", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5608646" + ] +} diff --git a/data/game/gr/griff-the-winged-lion.json b/data/game/gr/griff-the-winged-lion.json new file mode 100644 index 000000000000..b874c07ecaeb --- /dev/null +++ b/data/game/gr/griff-the-winged-lion.json @@ -0,0 +1,11 @@ +{ + "slug": "griff-the-winged-lion", + "name": "Griff the Winged Lion", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q64170683" + ], + "platforms": [ + "PlayStation 4" + ] +} diff --git a/data/game/gr/grim-dawn-ashes-of-malmouth.json b/data/game/gr/grim-dawn-ashes-of-malmouth.json new file mode 100644 index 000000000000..b5c42bdb6aac --- /dev/null +++ b/data/game/gr/grim-dawn-ashes-of-malmouth.json @@ -0,0 +1,8 @@ +{ + "slug": "grim-dawn-ashes-of-malmouth", + "name": "Grim Dawn: Ashes of Malmouth", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140470764" + ] +} diff --git a/data/game/gr/grim-dawn-definitive-edition.json b/data/game/gr/grim-dawn-definitive-edition.json new file mode 100644 index 000000000000..473625af763c --- /dev/null +++ b/data/game/gr/grim-dawn-definitive-edition.json @@ -0,0 +1,18 @@ +{ + "slug": "grim-dawn-definitive-edition", + "name": "Grim Dawn: Definitive Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109978991" + ], + "release_date": "2021-12-03", + "platforms": [ + "Xbox Series X and Series S" + ], + "developers": [ + "Crate Entertainment" + ], + "publishers": [ + "Crate Entertainment" + ] +} diff --git a/data/game/gr/gris-q113660360.json b/data/game/gr/gris-q113660360.json new file mode 100644 index 000000000000..bb18c2aec8d5 --- /dev/null +++ b/data/game/gr/gris-q113660360.json @@ -0,0 +1,15 @@ +{ + "slug": "gris-q113660360", + "name": "GRIS+", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113660360" + ], + "release_date": "2022-09-30", + "platforms": [ + "iPadOS", + "tvOS", + "iOS", + "macOS" + ] +} diff --git a/data/game/gr/ground-control-dark-conspiracy.json b/data/game/gr/ground-control-dark-conspiracy.json new file mode 100644 index 000000000000..27b2a299d3ae --- /dev/null +++ b/data/game/gr/ground-control-dark-conspiracy.json @@ -0,0 +1,18 @@ +{ + "slug": "ground-control-dark-conspiracy", + "name": "Ground Control: Dark Conspiracy", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3777147" + ], + "release_date": "2000-12-14", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "real-time tactics" + ], + "publishers": [ + "Sierra Entertainment" + ] +} diff --git a/data/game/gr/grow-a-garden.json b/data/game/gr/grow-a-garden.json new file mode 100644 index 000000000000..d03423c3c836 --- /dev/null +++ b/data/game/gr/grow-a-garden.json @@ -0,0 +1,20 @@ +{ + "slug": "grow-a-garden", + "name": "Grow a Garden", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134739925" + ], + "release_date": "2025-03-26", + "platforms": [ + "iOS", + "macOS", + "Microsoft Windows", + "Google Chrome" + ], + "genres": [ + "casual game", + "simulation video game", + "incremental game" + ] +} diff --git a/data/game/gr/grunge-theme.json b/data/game/gr/grunge-theme.json new file mode 100644 index 000000000000..261b7285a1db --- /dev/null +++ b/data/game/gr/grunge-theme.json @@ -0,0 +1,18 @@ +{ + "slug": "grunge-theme", + "name": "Grunge Theme", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q85045446" + ], + "release_date": "2019-09-26", + "platforms": [ + "PlayStation 4" + ], + "developers": [ + "Sony Interactive Entertainment" + ], + "publishers": [ + "Sony Interactive Entertainment" + ] +} diff --git a/data/game/gt/gta-online-beach-bum-update.json b/data/game/gt/gta-online-beach-bum-update.json new file mode 100644 index 000000000000..8d55d1faf0dd --- /dev/null +++ b/data/game/gt/gta-online-beach-bum-update.json @@ -0,0 +1,12 @@ +{ + "slug": "gta-online-beach-bum-update", + "name": "GTA Online: Beach Bum Update", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109637197" + ], + "release_date": "2013-11-19", + "publishers": [ + "Take-Two Interactive" + ] +} diff --git a/data/game/gt/gta-online-business-update.json b/data/game/gt/gta-online-business-update.json new file mode 100644 index 000000000000..0a41d99418fc --- /dev/null +++ b/data/game/gt/gta-online-business-update.json @@ -0,0 +1,12 @@ +{ + "slug": "gta-online-business-update", + "name": "GTA Online: Business Update", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109637264" + ], + "release_date": "2014-03-04", + "publishers": [ + "Take-Two Interactive" + ] +} diff --git a/data/game/gt/gta-online-capture-creator.json b/data/game/gt/gta-online-capture-creator.json new file mode 100644 index 000000000000..3fcce54a2289 --- /dev/null +++ b/data/game/gt/gta-online-capture-creator.json @@ -0,0 +1,12 @@ +{ + "slug": "gta-online-capture-creator", + "name": "GTA Online: Capture Creator", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109637280" + ], + "release_date": "2014-04-11", + "publishers": [ + "Take-Two Interactive" + ] +} diff --git a/data/game/gt/gta-online-capture-update.json b/data/game/gt/gta-online-capture-update.json new file mode 100644 index 000000000000..599b4f246216 --- /dev/null +++ b/data/game/gt/gta-online-capture-update.json @@ -0,0 +1,12 @@ +{ + "slug": "gta-online-capture-update", + "name": "GTA Online: Capture Update", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109637228" + ], + "release_date": "2013-12-17", + "publishers": [ + "Take-Two Interactive" + ] +} diff --git a/data/game/gt/gta-online-deathmatch-race-creators.json b/data/game/gt/gta-online-deathmatch-race-creators.json new file mode 100644 index 000000000000..5a13a9693f26 --- /dev/null +++ b/data/game/gt/gta-online-deathmatch-race-creators.json @@ -0,0 +1,12 @@ +{ + "slug": "gta-online-deathmatch-race-creators", + "name": "GTA Online: Deathmatch & Race Creators", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109637213" + ], + "release_date": "2013-12-11", + "publishers": [ + "Take-Two Interactive" + ] +} diff --git a/data/game/gt/gta-online-festive-surprise.json b/data/game/gt/gta-online-festive-surprise.json new file mode 100644 index 000000000000..b14a74827552 --- /dev/null +++ b/data/game/gt/gta-online-festive-surprise.json @@ -0,0 +1,12 @@ +{ + "slug": "gta-online-festive-surprise", + "name": "GTA Online: Festive Surprise", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109637357" + ], + "release_date": "2014-12-18", + "publishers": [ + "Take-Two Interactive" + ] +} diff --git a/data/game/gt/gta-online-heists.json b/data/game/gt/gta-online-heists.json new file mode 100644 index 000000000000..43b7907690f1 --- /dev/null +++ b/data/game/gt/gta-online-heists.json @@ -0,0 +1,12 @@ +{ + "slug": "gta-online-heists", + "name": "GTA Online: Heists", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109637378" + ], + "release_date": "2015-03-10", + "publishers": [ + "Take-Two Interactive" + ] +} diff --git a/data/game/gt/gta-online-high-life-update.json b/data/game/gt/gta-online-high-life-update.json new file mode 100644 index 000000000000..da89edec89ec --- /dev/null +++ b/data/game/gt/gta-online-high-life-update.json @@ -0,0 +1,12 @@ +{ + "slug": "gta-online-high-life-update", + "name": "GTA Online: High Life Update", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109637291" + ], + "release_date": "2014-05-13", + "publishers": [ + "Take-Two Interactive" + ] +} diff --git a/data/game/gt/gta-online-holiday-gifts.json b/data/game/gt/gta-online-holiday-gifts.json new file mode 100644 index 000000000000..a62f27ba795f --- /dev/null +++ b/data/game/gt/gta-online-holiday-gifts.json @@ -0,0 +1,12 @@ +{ + "slug": "gta-online-holiday-gifts", + "name": "GTA Online: Holiday Gifts", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109637235" + ], + "release_date": "2013-12-24", + "publishers": [ + "Take-Two Interactive" + ] +} diff --git a/data/game/gt/gta-online-i-m-not-a-hipster.json b/data/game/gt/gta-online-i-m-not-a-hipster.json new file mode 100644 index 000000000000..9f3478b2a28f --- /dev/null +++ b/data/game/gt/gta-online-i-m-not-a-hipster.json @@ -0,0 +1,12 @@ +{ + "slug": "gta-online-i-m-not-a-hipster", + "name": "GTA Online: I'm Not a Hipster", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109637302" + ], + "release_date": "2014-06-17", + "publishers": [ + "Take-Two Interactive" + ] +} diff --git a/data/game/gt/gta-online-independence-day-special.json b/data/game/gt/gta-online-independence-day-special.json new file mode 100644 index 000000000000..2cb7effe4417 --- /dev/null +++ b/data/game/gt/gta-online-independence-day-special.json @@ -0,0 +1,12 @@ +{ + "slug": "gta-online-independence-day-special", + "name": "GTA Online: Independence Day Special", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109637315" + ], + "release_date": "2014-07-01", + "publishers": [ + "Take-Two Interactive" + ] +} diff --git a/data/game/gt/gta-online-last-team-standing.json b/data/game/gt/gta-online-last-team-standing.json new file mode 100644 index 000000000000..31e3f294c5b7 --- /dev/null +++ b/data/game/gt/gta-online-last-team-standing.json @@ -0,0 +1,12 @@ +{ + "slug": "gta-online-last-team-standing", + "name": "GTA Online: Last Team Standing", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109637345" + ], + "release_date": "2014-10-02", + "publishers": [ + "Take-Two Interactive" + ] +} diff --git a/data/game/gt/gta-online-san-andreas-flight-school.json b/data/game/gt/gta-online-san-andreas-flight-school.json new file mode 100644 index 000000000000..409e37b7a23f --- /dev/null +++ b/data/game/gt/gta-online-san-andreas-flight-school.json @@ -0,0 +1,12 @@ +{ + "slug": "gta-online-san-andreas-flight-school", + "name": "GTA Online: San Andreas Flight School", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109637327" + ], + "release_date": "2014-08-19", + "publishers": [ + "Take-Two Interactive" + ] +} diff --git a/data/game/gt/gta-online-valentine-s-day-massacre-special.json b/data/game/gt/gta-online-valentine-s-day-massacre-special.json new file mode 100644 index 000000000000..0d9eb6c28a50 --- /dev/null +++ b/data/game/gt/gta-online-valentine-s-day-massacre-special.json @@ -0,0 +1,12 @@ +{ + "slug": "gta-online-valentine-s-day-massacre-special", + "name": "GTA Online: Valentine's Day Massacre Special", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109637250" + ], + "release_date": "2014-02-13", + "publishers": [ + "Take-Two Interactive" + ] +} diff --git a/data/game/gt/gtr-evolution.json b/data/game/gt/gtr-evolution.json new file mode 100644 index 000000000000..9fad3bc8836f --- /dev/null +++ b/data/game/gt/gtr-evolution.json @@ -0,0 +1,21 @@ +{ + "slug": "gtr-evolution", + "name": "GTR Evolution", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1487380" + ], + "release_date": "2008-09-01", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "sim racing" + ], + "developers": [ + "SimBin" + ], + "publishers": [ + "Atari" + ] +} diff --git a/data/game/gu/guardians-of-the-ashes-the-lost-memories-r18.json b/data/game/gu/guardians-of-the-ashes-the-lost-memories-r18.json new file mode 100644 index 000000000000..e2050705dc54 --- /dev/null +++ b/data/game/gu/guardians-of-the-ashes-the-lost-memories-r18.json @@ -0,0 +1,23 @@ +{ + "slug": "guardians-of-the-ashes-the-lost-memories-r18", + "name": "Guardians of the Ashes - The Lost Memories (R18)", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q129457347" + ], + "release_date": "2020-02-21", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "action-adventure game", + "role-playing video game", + "erotic video game" + ], + "developers": [ + "Mature Games" + ], + "publishers": [ + "Mature Games" + ] +} diff --git a/data/game/gu/guardians-of-the-galaxy-the-telltale-series-episode-1.json b/data/game/gu/guardians-of-the-galaxy-the-telltale-series-episode-1.json new file mode 100644 index 000000000000..c9b360446898 --- /dev/null +++ b/data/game/gu/guardians-of-the-galaxy-the-telltale-series-episode-1.json @@ -0,0 +1,13 @@ +{ + "slug": "guardians-of-the-galaxy-the-telltale-series-episode-1", + "name": "Guardians of the Galaxy: The Telltale Series - Episode 1", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q90133202" + ], + "release_date": "2017-04-18", + "platforms": [ + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/game/gu/guess-the-correlation.json b/data/game/gu/guess-the-correlation.json new file mode 100644 index 000000000000..a7c5d4d88620 --- /dev/null +++ b/data/game/gu/guess-the-correlation.json @@ -0,0 +1,9 @@ +{ + "slug": "guess-the-correlation", + "name": "Guess the Correlation", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q39056373" + ], + "release_date": "2016-01-01" +} diff --git a/data/game/gu/guild-wars-2-end-of-dragons.json b/data/game/gu/guild-wars-2-end-of-dragons.json new file mode 100644 index 000000000000..e5c67140eabf --- /dev/null +++ b/data/game/gu/guild-wars-2-end-of-dragons.json @@ -0,0 +1,12 @@ +{ + "slug": "guild-wars-2-end-of-dragons", + "name": "Guild Wars 2: End of Dragons", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107676489" + ], + "release_date": "2022-02-01", + "genres": [ + "massively multiplayer online role-playing game" + ] +} diff --git a/data/game/gu/guild-wars-2-heart-of-thorns.json b/data/game/gu/guild-wars-2-heart-of-thorns.json new file mode 100644 index 000000000000..b31b989588d5 --- /dev/null +++ b/data/game/gu/guild-wars-2-heart-of-thorns.json @@ -0,0 +1,22 @@ +{ + "slug": "guild-wars-2-heart-of-thorns", + "name": "Guild Wars 2: Heart of Thorns", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q21198240" + ], + "release_date": "2015-10-23", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "massively multiplayer online role-playing game" + ], + "developers": [ + "ArenaNet" + ], + "publishers": [ + "NC" + ] +} diff --git a/data/game/gu/guild-wars-2-path-of-fire.json b/data/game/gu/guild-wars-2-path-of-fire.json new file mode 100644 index 000000000000..3e084c049f68 --- /dev/null +++ b/data/game/gu/guild-wars-2-path-of-fire.json @@ -0,0 +1,14 @@ +{ + "slug": "guild-wars-2-path-of-fire", + "name": "Guild Wars 2: Path of Fire", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q39057941" + ], + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "ArenaNet" + ] +} diff --git a/data/game/gu/guild-wars-eye-of-the-north.json b/data/game/gu/guild-wars-eye-of-the-north.json new file mode 100644 index 000000000000..d59d20b25250 --- /dev/null +++ b/data/game/gu/guild-wars-eye-of-the-north.json @@ -0,0 +1,21 @@ +{ + "slug": "guild-wars-eye-of-the-north", + "name": "Guild Wars: Eye of the North", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2187062" + ], + "release_date": "2007-08-28", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "action role-playing game" + ], + "developers": [ + "ArenaNet" + ], + "publishers": [ + "NC" + ] +} diff --git a/data/game/gu/guild01.json b/data/game/gu/guild01.json new file mode 100644 index 000000000000..00527e0e97b9 --- /dev/null +++ b/data/game/gu/guild01.json @@ -0,0 +1,18 @@ +{ + "slug": "guild01", + "name": "Guild01", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112706978" + ], + "release_date": "2012-05-31", + "platforms": [ + "Nintendo 3DS" + ], + "developers": [ + "Level-5" + ], + "publishers": [ + "Level-5" + ] +} diff --git a/data/game/gu/guild02.json b/data/game/gu/guild02.json new file mode 100644 index 000000000000..b302cac9340a --- /dev/null +++ b/data/game/gu/guild02.json @@ -0,0 +1,18 @@ +{ + "slug": "guild02", + "name": "Guild02", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112706713" + ], + "release_date": "2013-03-13", + "platforms": [ + "Nintendo 3DS" + ], + "developers": [ + "Level-5" + ], + "publishers": [ + "Level-5" + ] +} diff --git a/data/game/gu/gumboy-demo.json b/data/game/gu/gumboy-demo.json new file mode 100644 index 000000000000..b59294df7018 --- /dev/null +++ b/data/game/gu/gumboy-demo.json @@ -0,0 +1,21 @@ +{ + "slug": "gumboy-demo", + "name": "Gumboy Demo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122706735" + ], + "release_date": "2007-01-25", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "casual game" + ], + "developers": [ + "Cinemax" + ], + "publishers": [ + "Meridian4" + ] +} diff --git a/data/game/gu/gunpoint-extras-pack-1.json b/data/game/gu/gunpoint-extras-pack-1.json new file mode 100644 index 000000000000..b1bb0e57ae23 --- /dev/null +++ b/data/game/gu/gunpoint-extras-pack-1.json @@ -0,0 +1,8 @@ +{ + "slug": "gunpoint-extras-pack-1", + "name": "Gunpoint Extras Pack 1", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131886162" + ] +} diff --git a/data/game/gu/gunship-2000-cd-rom-edition.json b/data/game/gu/gunship-2000-cd-rom-edition.json new file mode 100644 index 000000000000..0e92fb25120e --- /dev/null +++ b/data/game/gu/gunship-2000-cd-rom-edition.json @@ -0,0 +1,8 @@ +{ + "slug": "gunship-2000-cd-rom-edition", + "name": "Gunship 2000 CD-ROM Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126032266" + ] +} diff --git a/data/game/gu/gunship-2000-philippine-islands-antarctica-scenario-disk-with-mission-builder.json b/data/game/gu/gunship-2000-philippine-islands-antarctica-scenario-disk-with-mission-builder.json new file mode 100644 index 000000000000..55247472c6f4 --- /dev/null +++ b/data/game/gu/gunship-2000-philippine-islands-antarctica-scenario-disk-with-mission-builder.json @@ -0,0 +1,8 @@ +{ + "slug": "gunship-2000-philippine-islands-antarctica-scenario-disk-with-mission-builder", + "name": "Gunship 2000: Philippine Islands & Antarctica Scenario Disk With Mission Builder", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126032311" + ] +} diff --git a/data/game/gu/gunvari-collection-time-crisis.json b/data/game/gu/gunvari-collection-time-crisis.json new file mode 100644 index 000000000000..5aaf5a7a99a4 --- /dev/null +++ b/data/game/gu/gunvari-collection-time-crisis.json @@ -0,0 +1,9 @@ +{ + "slug": "gunvari-collection-time-crisis", + "name": "Gunvari Collection + Time Crisis", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5619539" + ], + "release_date": "2002-12-12" +} diff --git a/data/game/gu/guts-blackpowder.json b/data/game/gu/guts-blackpowder.json new file mode 100644 index 000000000000..44fd79358043 --- /dev/null +++ b/data/game/gu/guts-blackpowder.json @@ -0,0 +1,13 @@ +{ + "slug": "guts-blackpowder", + "name": "Guts & Blackpowder", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126958175" + ], + "release_date": "2023-01-31", + "genres": [ + "zombie video game", + "historical video game" + ] +} diff --git a/data/game/gx/gx-games.json b/data/game/gx/gx-games.json new file mode 100644 index 000000000000..686981c6ddd4 --- /dev/null +++ b/data/game/gx/gx-games.json @@ -0,0 +1,8 @@ +{ + "slug": "gx-games", + "name": "GX Games", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127326833" + ] +} diff --git a/data/game/gz/gzdoom.json b/data/game/gz/gzdoom.json new file mode 100644 index 000000000000..aa587d348efe --- /dev/null +++ b/data/game/gz/gzdoom.json @@ -0,0 +1,9 @@ +{ + "slug": "gzdoom", + "name": "GZDoom", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q64223614" + ], + "release_date": "2005-08-30" +} diff --git a/data/game/h-/h-ma-hunter-lime-special-collection-vol-1.json b/data/game/h-/h-ma-hunter-lime-special-collection-vol-1.json new file mode 100644 index 000000000000..2cdbf8103969 --- /dev/null +++ b/data/game/h-/h-ma-hunter-lime-special-collection-vol-1.json @@ -0,0 +1,9 @@ +{ + "slug": "h-ma-hunter-lime-special-collection-vol-1", + "name": "Hōma Hunter Lime: Special Collection Vol. 1", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107319666" + ], + "release_date": "1994-12-22" +} diff --git a/data/game/ha/hacx.json b/data/game/ha/hacx.json new file mode 100644 index 000000000000..a00fb268fe99 --- /dev/null +++ b/data/game/ha/hacx.json @@ -0,0 +1,8 @@ +{ + "slug": "hacx", + "name": "Hacx", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134570987" + ] +} diff --git a/data/game/ha/half-life-1-anthology.json b/data/game/ha/half-life-1-anthology.json new file mode 100644 index 000000000000..397b0e90e52c --- /dev/null +++ b/data/game/ha/half-life-1-anthology.json @@ -0,0 +1,17 @@ +{ + "slug": "half-life-1-anthology", + "name": "Half-Life 1 Anthology", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4040353" + ], + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Valve Corporation" + ], + "publishers": [ + "Valve Corporation" + ] +} diff --git a/data/game/ha/half-life-1-source.json b/data/game/ha/half-life-1-source.json new file mode 100644 index 000000000000..a144a7d8d459 --- /dev/null +++ b/data/game/ha/half-life-1-source.json @@ -0,0 +1,11 @@ +{ + "slug": "half-life-1-source", + "name": "Half-Life 1: Source", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q78781807" + ], + "platforms": [ + "Microsoft Windows" + ] +} diff --git a/data/game/ha/half-life-2-demo.json b/data/game/ha/half-life-2-demo.json new file mode 100644 index 000000000000..b3ebe5fc819d --- /dev/null +++ b/data/game/ha/half-life-2-demo.json @@ -0,0 +1,22 @@ +{ + "slug": "half-life-2-demo", + "name": "Half-Life 2: Demo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122658349" + ], + "release_date": "2004-12-01", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "first-person shooter" + ], + "developers": [ + "Valve Corporation" + ], + "publishers": [ + "Valve Corporation" + ] +} diff --git a/data/game/ha/half-life-2-episode-one-q78782453.json b/data/game/ha/half-life-2-episode-one-q78782453.json new file mode 100644 index 000000000000..df2920847aa4 --- /dev/null +++ b/data/game/ha/half-life-2-episode-one-q78782453.json @@ -0,0 +1,11 @@ +{ + "slug": "half-life-2-episode-one-q78782453", + "name": "Half-Life 2: Episode One", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q78782453" + ], + "platforms": [ + "Microsoft Windows" + ] +} diff --git a/data/game/ha/half-life-2-episode-three.json b/data/game/ha/half-life-2-episode-three.json new file mode 100644 index 000000000000..bbcacd7acddd --- /dev/null +++ b/data/game/ha/half-life-2-episode-three.json @@ -0,0 +1,20 @@ +{ + "slug": "half-life-2-episode-three", + "name": "Half-Life 2: Episode Three", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q913503" + ], + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter" + ], + "developers": [ + "Valve Corporation" + ], + "publishers": [ + "Valve Corporation" + ] +} diff --git a/data/game/ha/half-life-2-ravenholm.json b/data/game/ha/half-life-2-ravenholm.json new file mode 100644 index 000000000000..3bac6dc39192 --- /dev/null +++ b/data/game/ha/half-life-2-ravenholm.json @@ -0,0 +1,14 @@ +{ + "slug": "half-life-2-ravenholm", + "name": "Half-Life 2: Ravenholm", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110722249" + ], + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter" + ] +} diff --git a/data/game/ha/half-life-3.json b/data/game/ha/half-life-3.json new file mode 100644 index 000000000000..4d1a82ad20e7 --- /dev/null +++ b/data/game/ha/half-life-3.json @@ -0,0 +1,14 @@ +{ + "slug": "half-life-3", + "name": "Half-Life 3", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q66809476" + ], + "developers": [ + "Valve Corporation" + ], + "publishers": [ + "Valve Corporation" + ] +} diff --git a/data/game/ha/half-life-a-place-in-the-west-chapter-2.json b/data/game/ha/half-life-a-place-in-the-west-chapter-2.json new file mode 100644 index 000000000000..84632ced5671 --- /dev/null +++ b/data/game/ha/half-life-a-place-in-the-west-chapter-2.json @@ -0,0 +1,13 @@ +{ + "slug": "half-life-a-place-in-the-west-chapter-2", + "name": "Half-Life: A Place in the West - Chapter 2", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113176984" + ], + "release_date": "2017-02-16", + "platforms": [ + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/game/ha/half-life-a-place-in-the-west-chapter-3.json b/data/game/ha/half-life-a-place-in-the-west-chapter-3.json new file mode 100644 index 000000000000..906b9a53bf49 --- /dev/null +++ b/data/game/ha/half-life-a-place-in-the-west-chapter-3.json @@ -0,0 +1,13 @@ +{ + "slug": "half-life-a-place-in-the-west-chapter-3", + "name": "Half-Life: A Place in the West - Chapter 3", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113176993" + ], + "release_date": "2017-07-21", + "platforms": [ + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/game/ha/half-life-a-place-in-the-west-chapter-4.json b/data/game/ha/half-life-a-place-in-the-west-chapter-4.json new file mode 100644 index 000000000000..aea972dcd24d --- /dev/null +++ b/data/game/ha/half-life-a-place-in-the-west-chapter-4.json @@ -0,0 +1,13 @@ +{ + "slug": "half-life-a-place-in-the-west-chapter-4", + "name": "Half-Life: A Place in the West - Chapter 4", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113177001" + ], + "release_date": "2017-11-29", + "platforms": [ + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/game/ha/half-life-a-place-in-the-west-chapter-5.json b/data/game/ha/half-life-a-place-in-the-west-chapter-5.json new file mode 100644 index 000000000000..c94de953c1c6 --- /dev/null +++ b/data/game/ha/half-life-a-place-in-the-west-chapter-5.json @@ -0,0 +1,13 @@ +{ + "slug": "half-life-a-place-in-the-west-chapter-5", + "name": "Half-Life: A Place in the West - Chapter 5", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113177011" + ], + "release_date": "2018-07-23", + "platforms": [ + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/game/ha/half-life-a-place-in-the-west-chapter-6.json b/data/game/ha/half-life-a-place-in-the-west-chapter-6.json new file mode 100644 index 000000000000..1c0dfcac08aa --- /dev/null +++ b/data/game/ha/half-life-a-place-in-the-west-chapter-6.json @@ -0,0 +1,13 @@ +{ + "slug": "half-life-a-place-in-the-west-chapter-6", + "name": "Half-Life: A Place in the West - Chapter 6", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113177020" + ], + "release_date": "2019-06-04", + "platforms": [ + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/game/ha/half-life-a-place-in-the-west-chapter-7.json b/data/game/ha/half-life-a-place-in-the-west-chapter-7.json new file mode 100644 index 000000000000..f3f86ae27a06 --- /dev/null +++ b/data/game/ha/half-life-a-place-in-the-west-chapter-7.json @@ -0,0 +1,13 @@ +{ + "slug": "half-life-a-place-in-the-west-chapter-7", + "name": "Half-Life: A Place in the West - Chapter 7", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113177028" + ], + "release_date": "2021-05-24", + "platforms": [ + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/game/ha/half-life-a-place-in-the-west-chapter-8.json b/data/game/ha/half-life-a-place-in-the-west-chapter-8.json new file mode 100644 index 000000000000..b23ee3fae5b2 --- /dev/null +++ b/data/game/ha/half-life-a-place-in-the-west-chapter-8.json @@ -0,0 +1,13 @@ +{ + "slug": "half-life-a-place-in-the-west-chapter-8", + "name": "Half-Life: A Place in the West - Chapter 8", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113177036" + ], + "release_date": "2022-06-19", + "platforms": [ + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/game/ha/half-life-adrenaline-pack.json b/data/game/ha/half-life-adrenaline-pack.json new file mode 100644 index 000000000000..d54b6ed8ad4d --- /dev/null +++ b/data/game/ha/half-life-adrenaline-pack.json @@ -0,0 +1,8 @@ +{ + "slug": "half-life-adrenaline-pack", + "name": "Half-Life: Adrenaline Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q132129086" + ] +} diff --git a/data/game/ha/half-life-complete.json b/data/game/ha/half-life-complete.json new file mode 100644 index 000000000000..84e7fb541daf --- /dev/null +++ b/data/game/ha/half-life-complete.json @@ -0,0 +1,12 @@ +{ + "slug": "half-life-complete", + "name": "Half-Life Complete", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q78781164" + ], + "platforms": [ + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/game/ha/half-life-day-one.json b/data/game/ha/half-life-day-one.json new file mode 100644 index 000000000000..435d681abac2 --- /dev/null +++ b/data/game/ha/half-life-day-one.json @@ -0,0 +1,8 @@ +{ + "slug": "half-life-day-one", + "name": "Half-Life: Day One", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4040350" + ] +} diff --git a/data/game/ha/half-life-escape-2-0.json b/data/game/ha/half-life-escape-2-0.json new file mode 100644 index 000000000000..44d8ae80954c --- /dev/null +++ b/data/game/ha/half-life-escape-2-0.json @@ -0,0 +1,12 @@ +{ + "slug": "half-life-escape-2-0", + "name": "Half-Life: Escape 2.0", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135164296" + ], + "release_date": "2024-03-13", + "platforms": [ + "Microsoft Windows" + ] +} diff --git a/data/game/ha/half-life-high-definition-pack.json b/data/game/ha/half-life-high-definition-pack.json new file mode 100644 index 000000000000..bf0bb664cd27 --- /dev/null +++ b/data/game/ha/half-life-high-definition-pack.json @@ -0,0 +1,8 @@ +{ + "slug": "half-life-high-definition-pack", + "name": "Half-Life High Definition Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q20917511" + ] +} diff --git a/data/game/ha/half-life-initial-encounter.json b/data/game/ha/half-life-initial-encounter.json new file mode 100644 index 000000000000..3c475d41f97a --- /dev/null +++ b/data/game/ha/half-life-initial-encounter.json @@ -0,0 +1,8 @@ +{ + "slug": "half-life-initial-encounter", + "name": "Half-Life: Initial Encounter", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q133505119" + ] +} diff --git a/data/game/ha/half-life-platinum-collection.json b/data/game/ha/half-life-platinum-collection.json new file mode 100644 index 000000000000..8f8658abada8 --- /dev/null +++ b/data/game/ha/half-life-platinum-collection.json @@ -0,0 +1,8 @@ +{ + "slug": "half-life-platinum-collection", + "name": "Half-Life: Platinum Collection", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q132129074" + ] +} diff --git a/data/game/ha/half-life-platinum.json b/data/game/ha/half-life-platinum.json new file mode 100644 index 000000000000..22ee0e36af0b --- /dev/null +++ b/data/game/ha/half-life-platinum.json @@ -0,0 +1,8 @@ +{ + "slug": "half-life-platinum", + "name": "Half-Life: Platinum", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q132129103" + ] +} diff --git a/data/game/ha/half-life-uplink.json b/data/game/ha/half-life-uplink.json new file mode 100644 index 000000000000..f4cf1ffe32c4 --- /dev/null +++ b/data/game/ha/half-life-uplink.json @@ -0,0 +1,21 @@ +{ + "slug": "half-life-uplink", + "name": "Half-Life: Uplink", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3000988" + ], + "release_date": "1999-01-01", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter" + ], + "developers": [ + "Valve Corporation" + ], + "publishers": [ + "Sierra Entertainment" + ] +} diff --git a/data/game/ha/hallway-hunt.json b/data/game/ha/hallway-hunt.json new file mode 100644 index 000000000000..324fc77c6740 --- /dev/null +++ b/data/game/ha/hallway-hunt.json @@ -0,0 +1,8 @@ +{ + "slug": "hallway-hunt", + "name": "Hallway Hunt", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q128014884" + ] +} diff --git a/data/game/ha/halo-3-odst.json b/data/game/ha/halo-3-odst.json new file mode 100644 index 000000000000..b420f75f3839 --- /dev/null +++ b/data/game/ha/halo-3-odst.json @@ -0,0 +1,18 @@ +{ + "slug": "halo-3-odst", + "name": "Halo 3: ODST", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1628364" + ], + "release_date": "2009-09-22", + "genres": [ + "first-person shooter" + ], + "developers": [ + "Bungie" + ], + "publishers": [ + "Xbox Game Studios" + ] +} diff --git a/data/game/ha/halo-custom-edition.json b/data/game/ha/halo-custom-edition.json new file mode 100644 index 000000000000..a751a958d818 --- /dev/null +++ b/data/game/ha/halo-custom-edition.json @@ -0,0 +1,18 @@ +{ + "slug": "halo-custom-edition", + "name": "Halo Custom Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3782753" + ], + "release_date": "2004-06-09", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Gearbox Software" + ], + "publishers": [ + "Xbox Game Studios" + ] +} diff --git a/data/game/ha/halo-wars-2-awakening-the-nightmare.json b/data/game/ha/halo-wars-2-awakening-the-nightmare.json new file mode 100644 index 000000000000..ad322e8de20e --- /dev/null +++ b/data/game/ha/halo-wars-2-awakening-the-nightmare.json @@ -0,0 +1,16 @@ +{ + "slug": "halo-wars-2-awakening-the-nightmare", + "name": "Halo Wars 2: Awakening the Nightmare", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q64614890" + ], + "release_date": "2017-09-26", + "developers": [ + "Creative Assembly", + "Halo Studios" + ], + "publishers": [ + "Xbox Game Studios" + ] +} diff --git a/data/game/ha/halo-wars-historical-battle-map-pack.json b/data/game/ha/halo-wars-historical-battle-map-pack.json new file mode 100644 index 000000000000..36c1b718db8e --- /dev/null +++ b/data/game/ha/halo-wars-historical-battle-map-pack.json @@ -0,0 +1,8 @@ +{ + "slug": "halo-wars-historical-battle-map-pack", + "name": "Halo Wars: Historical Battle Map Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127464590" + ] +} diff --git a/data/game/ha/halo-wars-strategic-options.json b/data/game/ha/halo-wars-strategic-options.json new file mode 100644 index 000000000000..b9b88e4fe6cb --- /dev/null +++ b/data/game/ha/halo-wars-strategic-options.json @@ -0,0 +1,8 @@ +{ + "slug": "halo-wars-strategic-options", + "name": "Halo Wars: Strategic Options", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127464574" + ] +} diff --git a/data/game/ha/hamulet-demo.json b/data/game/ha/hamulet-demo.json new file mode 100644 index 000000000000..0870c2a8dcdd --- /dev/null +++ b/data/game/ha/hamulet-demo.json @@ -0,0 +1,8 @@ +{ + "slug": "hamulet-demo", + "name": "Hamulet (Demo)", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126188311" + ] +} diff --git a/data/game/ha/handball-q104591944.json b/data/game/ha/handball-q104591944.json new file mode 100644 index 000000000000..34cbb84fb924 --- /dev/null +++ b/data/game/ha/handball-q104591944.json @@ -0,0 +1,12 @@ +{ + "slug": "handball-q104591944", + "name": "Handball", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q104591944" + ], + "release_date": "1974-01-01", + "genres": [ + "handball video game" + ] +} diff --git a/data/game/ha/hannah-montana-pop-star-exclusive.json b/data/game/ha/hannah-montana-pop-star-exclusive.json new file mode 100644 index 000000000000..baecbacdaccd --- /dev/null +++ b/data/game/ha/hannah-montana-pop-star-exclusive.json @@ -0,0 +1,11 @@ +{ + "slug": "hannah-montana-pop-star-exclusive", + "name": "Hannah Montana: Pop Star Exclusive", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106620098" + ], + "platforms": [ + "Nintendo DS" + ] +} diff --git a/data/game/ha/happy-aquarium.json b/data/game/ha/happy-aquarium.json new file mode 100644 index 000000000000..4675da428e05 --- /dev/null +++ b/data/game/ha/happy-aquarium.json @@ -0,0 +1,12 @@ +{ + "slug": "happy-aquarium", + "name": "Happy Aquarium", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5892165" + ], + "release_date": "2009-08-03", + "developers": [ + "Happy Elements" + ] +} diff --git a/data/game/ha/hard-vacuum-q126681220.json b/data/game/ha/hard-vacuum-q126681220.json new file mode 100644 index 000000000000..1289964f12ed --- /dev/null +++ b/data/game/ha/hard-vacuum-q126681220.json @@ -0,0 +1,11 @@ +{ + "slug": "hard-vacuum-q126681220", + "name": "Hard Vacuum", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126681220" + ], + "genres": [ + "real-time strategy" + ] +} diff --git a/data/game/ha/hardcore-pinball.json b/data/game/ha/hardcore-pinball.json new file mode 100644 index 000000000000..6c13522a0056 --- /dev/null +++ b/data/game/ha/hardcore-pinball.json @@ -0,0 +1,8 @@ +{ + "slug": "hardcore-pinball", + "name": "hardcore pinball", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140472099" + ] +} diff --git a/data/game/ha/harvest-moon-home-sweet-home-special-edition.json b/data/game/ha/harvest-moon-home-sweet-home-special-edition.json new file mode 100644 index 000000000000..a0e0ba724827 --- /dev/null +++ b/data/game/ha/harvest-moon-home-sweet-home-special-edition.json @@ -0,0 +1,17 @@ +{ + "slug": "harvest-moon-home-sweet-home-special-edition", + "name": "Harvest Moon: Home Sweet Home Special Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134979822" + ], + "release_date": "2025-10-30", + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 5", + "Microsoft Windows" + ], + "publishers": [ + "Natsume Inc." + ] +} diff --git a/data/game/ha/harvest-moon-q21233492.json b/data/game/ha/harvest-moon-q21233492.json new file mode 100644 index 000000000000..4a6df5d0d066 --- /dev/null +++ b/data/game/ha/harvest-moon-q21233492.json @@ -0,0 +1,13 @@ +{ + "slug": "harvest-moon-q21233492", + "name": "Harvest Moon", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q21233492" + ], + "genres": [ + "role-playing video game", + "construction and management simulation", + "simulation video game" + ] +} diff --git a/data/game/ha/haunted-cities-volume-2-q125024700.json b/data/game/ha/haunted-cities-volume-2-q125024700.json new file mode 100644 index 000000000000..4bee96bd15e9 --- /dev/null +++ b/data/game/ha/haunted-cities-volume-2-q125024700.json @@ -0,0 +1,22 @@ +{ + "slug": "haunted-cities-volume-2-q125024700", + "name": "Haunted Cities Volume 2", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125024700" + ], + "release_date": "2017-10-31", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "adventure video game" + ], + "developers": [ + "Kitty Horrorshow" + ], + "publishers": [ + "Kitty Horrorshow" + ] +} diff --git a/data/game/ha/haunted-cities-volume-3.json b/data/game/ha/haunted-cities-volume-3.json new file mode 100644 index 000000000000..155c4df0bff2 --- /dev/null +++ b/data/game/ha/haunted-cities-volume-3.json @@ -0,0 +1,22 @@ +{ + "slug": "haunted-cities-volume-3", + "name": "Haunted Cities Volume 3", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125024703" + ], + "release_date": "2018-10-20", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "adventure video game" + ], + "developers": [ + "Kitty Horrorshow" + ], + "publishers": [ + "Kitty Horrorshow" + ] +} diff --git a/data/game/ha/haunted-cities-volume-4.json b/data/game/ha/haunted-cities-volume-4.json new file mode 100644 index 000000000000..e6005ac24b3d --- /dev/null +++ b/data/game/ha/haunted-cities-volume-4.json @@ -0,0 +1,22 @@ +{ + "slug": "haunted-cities-volume-4", + "name": "Haunted Cities Volume 4", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125024706" + ], + "release_date": "2020-11-01", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "adventure video game" + ], + "developers": [ + "Kitty Horrorshow" + ], + "publishers": [ + "Kitty Horrorshow" + ] +} diff --git a/data/game/ha/haunted-cities.json b/data/game/ha/haunted-cities.json new file mode 100644 index 000000000000..307a8911478d --- /dev/null +++ b/data/game/ha/haunted-cities.json @@ -0,0 +1,22 @@ +{ + "slug": "haunted-cities", + "name": "Haunted Cities", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125024698" + ], + "release_date": "2016-05-06", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "adventure video game" + ], + "developers": [ + "Kitty Horrorshow" + ], + "publishers": [ + "Kitty Horrorshow" + ] +} diff --git a/data/game/ha/haunted-house-q16975489.json b/data/game/ha/haunted-house-q16975489.json new file mode 100644 index 000000000000..bc6859c97730 --- /dev/null +++ b/data/game/ha/haunted-house-q16975489.json @@ -0,0 +1,9 @@ +{ + "slug": "haunted-house-q16975489", + "name": "Haunted House", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16975489" + ], + "release_date": "1972-01-01" +} diff --git a/data/game/ha/hay-day-pop.json b/data/game/ha/hay-day-pop.json new file mode 100644 index 000000000000..f5ba889850a2 --- /dev/null +++ b/data/game/ha/hay-day-pop.json @@ -0,0 +1,21 @@ +{ + "slug": "hay-day-pop", + "name": "Hay Day Pop", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q87773204" + ], + "release_date": "2020-03-16", + "platforms": [ + "iOS" + ], + "genres": [ + "puzzle video game" + ], + "developers": [ + "Supercell" + ], + "publishers": [ + "Supercell" + ] +} diff --git a/data/game/he/hearthstone-ashes-of-outland.json b/data/game/he/hearthstone-ashes-of-outland.json new file mode 100644 index 000000000000..3f67f467da77 --- /dev/null +++ b/data/game/he/hearthstone-ashes-of-outland.json @@ -0,0 +1,8 @@ +{ + "slug": "hearthstone-ashes-of-outland", + "name": "Hearthstone: Ashes of Outland", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140419740" + ] +} diff --git a/data/game/he/hearthstone-blackrock-mountain.json b/data/game/he/hearthstone-blackrock-mountain.json new file mode 100644 index 000000000000..01d0b4712022 --- /dev/null +++ b/data/game/he/hearthstone-blackrock-mountain.json @@ -0,0 +1,8 @@ +{ + "slug": "hearthstone-blackrock-mountain", + "name": "Hearthstone: Blackrock Mountain", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140419399" + ] +} diff --git a/data/game/he/hearthstone-curse-of-naxxramas.json b/data/game/he/hearthstone-curse-of-naxxramas.json new file mode 100644 index 000000000000..c79f8e3dec96 --- /dev/null +++ b/data/game/he/hearthstone-curse-of-naxxramas.json @@ -0,0 +1,8 @@ +{ + "slug": "hearthstone-curse-of-naxxramas", + "name": "Hearthstone: Curse of Naxxramas", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q31090152" + ] +} diff --git a/data/game/he/hearthstone-descent-of-dragons.json b/data/game/he/hearthstone-descent-of-dragons.json new file mode 100644 index 000000000000..e77fdbe4e610 --- /dev/null +++ b/data/game/he/hearthstone-descent-of-dragons.json @@ -0,0 +1,8 @@ +{ + "slug": "hearthstone-descent-of-dragons", + "name": "Hearthstone: Descent of Dragons", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140419732" + ] +} diff --git a/data/game/he/hearthstone-forged-in-the-barrens.json b/data/game/he/hearthstone-forged-in-the-barrens.json new file mode 100644 index 000000000000..76bfb11f86f3 --- /dev/null +++ b/data/game/he/hearthstone-forged-in-the-barrens.json @@ -0,0 +1,8 @@ +{ + "slug": "hearthstone-forged-in-the-barrens", + "name": "Hearthstone: Forged in the Barrens", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140419763" + ] +} diff --git a/data/game/he/hearthstone-goblins-vs-gnomes.json b/data/game/he/hearthstone-goblins-vs-gnomes.json new file mode 100644 index 000000000000..1119fbf8b2ba --- /dev/null +++ b/data/game/he/hearthstone-goblins-vs-gnomes.json @@ -0,0 +1,8 @@ +{ + "slug": "hearthstone-goblins-vs-gnomes", + "name": "Hearthstone: Goblins vs Gnomes", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140419374" + ] +} diff --git a/data/game/he/hearthstone-journey-to-un-goro.json b/data/game/he/hearthstone-journey-to-un-goro.json new file mode 100644 index 000000000000..938a764c8e80 --- /dev/null +++ b/data/game/he/hearthstone-journey-to-un-goro.json @@ -0,0 +1,8 @@ +{ + "slug": "hearthstone-journey-to-un-goro", + "name": "Hearthstone: Journey to Un'Goro", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140419565" + ] +} diff --git a/data/game/he/hearthstone-knights-of-the-frozen-throne.json b/data/game/he/hearthstone-knights-of-the-frozen-throne.json new file mode 100644 index 000000000000..81d05238f16f --- /dev/null +++ b/data/game/he/hearthstone-knights-of-the-frozen-throne.json @@ -0,0 +1,8 @@ +{ + "slug": "hearthstone-knights-of-the-frozen-throne", + "name": "Hearthstone: Knights of the Frozen Throne", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140419570" + ] +} diff --git a/data/game/he/hearthstone-mean-streets-of-gadgetzan.json b/data/game/he/hearthstone-mean-streets-of-gadgetzan.json new file mode 100644 index 000000000000..0b2be19c29e5 --- /dev/null +++ b/data/game/he/hearthstone-mean-streets-of-gadgetzan.json @@ -0,0 +1,8 @@ +{ + "slug": "hearthstone-mean-streets-of-gadgetzan", + "name": "Hearthstone: Mean Streets of Gadgetzan", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140419544" + ] +} diff --git a/data/game/he/hearthstone-one-night-in-karazhan.json b/data/game/he/hearthstone-one-night-in-karazhan.json new file mode 100644 index 000000000000..c5179b759503 --- /dev/null +++ b/data/game/he/hearthstone-one-night-in-karazhan.json @@ -0,0 +1,8 @@ +{ + "slug": "hearthstone-one-night-in-karazhan", + "name": "Hearthstone: One Night in Karazhan", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140419535" + ] +} diff --git a/data/game/he/hearthstone-rastakhan-s-rumble.json b/data/game/he/hearthstone-rastakhan-s-rumble.json new file mode 100644 index 000000000000..814f687a73cc --- /dev/null +++ b/data/game/he/hearthstone-rastakhan-s-rumble.json @@ -0,0 +1,8 @@ +{ + "slug": "hearthstone-rastakhan-s-rumble", + "name": "Hearthstone: Rastakhan's Rumble", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140419634" + ] +} diff --git a/data/game/he/hearthstone-rise-of-shadows.json b/data/game/he/hearthstone-rise-of-shadows.json new file mode 100644 index 000000000000..281bd20c0684 --- /dev/null +++ b/data/game/he/hearthstone-rise-of-shadows.json @@ -0,0 +1,8 @@ +{ + "slug": "hearthstone-rise-of-shadows", + "name": "Hearthstone: Rise of Shadows", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140419710" + ] +} diff --git a/data/game/he/hearthstone-saviors-of-uldum.json b/data/game/he/hearthstone-saviors-of-uldum.json new file mode 100644 index 000000000000..6e5570bee3e6 --- /dev/null +++ b/data/game/he/hearthstone-saviors-of-uldum.json @@ -0,0 +1,8 @@ +{ + "slug": "hearthstone-saviors-of-uldum", + "name": "Hearthstone: Saviors of Uldum", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140419727" + ] +} diff --git a/data/game/he/hearthstone-scholomance-academy.json b/data/game/he/hearthstone-scholomance-academy.json new file mode 100644 index 000000000000..9c8f083dba09 --- /dev/null +++ b/data/game/he/hearthstone-scholomance-academy.json @@ -0,0 +1,8 @@ +{ + "slug": "hearthstone-scholomance-academy", + "name": "Hearthstone: Scholomance Academy", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140419747" + ] +} diff --git a/data/game/he/hearthstone-showdown-in-the-badlands.json b/data/game/he/hearthstone-showdown-in-the-badlands.json new file mode 100644 index 000000000000..bb70cbec7de8 --- /dev/null +++ b/data/game/he/hearthstone-showdown-in-the-badlands.json @@ -0,0 +1,8 @@ +{ + "slug": "hearthstone-showdown-in-the-badlands", + "name": "Hearthstone: Showdown in the Badlands", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140419877" + ] +} diff --git a/data/game/he/hearthstone-the-boomsday-project.json b/data/game/he/hearthstone-the-boomsday-project.json new file mode 100644 index 000000000000..703710f93829 --- /dev/null +++ b/data/game/he/hearthstone-the-boomsday-project.json @@ -0,0 +1,8 @@ +{ + "slug": "hearthstone-the-boomsday-project", + "name": "Hearthstone: The Boomsday Project", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140419618" + ] +} diff --git a/data/game/he/hearthstone-the-witchwood.json b/data/game/he/hearthstone-the-witchwood.json new file mode 100644 index 000000000000..a09894aa5ea3 --- /dev/null +++ b/data/game/he/hearthstone-the-witchwood.json @@ -0,0 +1,8 @@ +{ + "slug": "hearthstone-the-witchwood", + "name": "Hearthstone: The Witchwood", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140419609" + ] +} diff --git a/data/game/he/hearthstone-titans.json b/data/game/he/hearthstone-titans.json new file mode 100644 index 000000000000..56a2b5807df2 --- /dev/null +++ b/data/game/he/hearthstone-titans.json @@ -0,0 +1,8 @@ +{ + "slug": "hearthstone-titans", + "name": "Hearthstone: Titans", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140419875" + ] +} diff --git a/data/game/he/hearts-card-game-q110453685.json b/data/game/he/hearts-card-game-q110453685.json new file mode 100644 index 000000000000..bb47c02ef57d --- /dev/null +++ b/data/game/he/hearts-card-game-q110453685.json @@ -0,0 +1,13 @@ +{ + "slug": "hearts-card-game-q110453685", + "name": "Hearts: Card Game+", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110453685" + ], + "release_date": "2022-01-07", + "platforms": [ + "iPadOS", + "iOS" + ] +} diff --git a/data/game/he/hearts-of-iron-iv-arms-against-tyranny.json b/data/game/he/hearts-of-iron-iv-arms-against-tyranny.json new file mode 100644 index 000000000000..ff6ed289ba40 --- /dev/null +++ b/data/game/he/hearts-of-iron-iv-arms-against-tyranny.json @@ -0,0 +1,19 @@ +{ + "slug": "hearts-of-iron-iv-arms-against-tyranny", + "name": "Hearts of Iron IV: Arms Against Tyranny", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q119160111" + ], + "release_date": "2023-10-10", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Development Studio" + ], + "publishers": [ + "Paradox Interactive" + ] +} diff --git a/data/game/he/hearts-of-iron-iv-battle-for-the-bosporus.json b/data/game/he/hearts-of-iron-iv-battle-for-the-bosporus.json new file mode 100644 index 000000000000..66ee83244063 --- /dev/null +++ b/data/game/he/hearts-of-iron-iv-battle-for-the-bosporus.json @@ -0,0 +1,19 @@ +{ + "slug": "hearts-of-iron-iv-battle-for-the-bosporus", + "name": "Hearts of Iron IV: Battle for the Bosporus", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107476643" + ], + "release_date": "2020-10-15", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Development Studio" + ], + "publishers": [ + "Paradox Interactive" + ] +} diff --git a/data/game/he/hearts-of-iron-iv-by-blood-alone.json b/data/game/he/hearts-of-iron-iv-by-blood-alone.json new file mode 100644 index 000000000000..dd8883af7d11 --- /dev/null +++ b/data/game/he/hearts-of-iron-iv-by-blood-alone.json @@ -0,0 +1,19 @@ +{ + "slug": "hearts-of-iron-iv-by-blood-alone", + "name": "Hearts of Iron IV: By Blood Alone", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112265733" + ], + "release_date": "2022-09-27", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Development Studio" + ], + "publishers": [ + "Paradox Interactive" + ] +} diff --git a/data/game/he/hearts-of-iron-iv-death-or-dishonor.json b/data/game/he/hearts-of-iron-iv-death-or-dishonor.json new file mode 100644 index 000000000000..cb34a64636f1 --- /dev/null +++ b/data/game/he/hearts-of-iron-iv-death-or-dishonor.json @@ -0,0 +1,19 @@ +{ + "slug": "hearts-of-iron-iv-death-or-dishonor", + "name": "Hearts of Iron IV: Death or Dishonor", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107476639" + ], + "release_date": "2017-06-14", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Development Studio" + ], + "publishers": [ + "Paradox Interactive" + ] +} diff --git a/data/game/he/hearts-of-iron-iv-la-r-sistance.json b/data/game/he/hearts-of-iron-iv-la-r-sistance.json new file mode 100644 index 000000000000..5ada5266248c --- /dev/null +++ b/data/game/he/hearts-of-iron-iv-la-r-sistance.json @@ -0,0 +1,19 @@ +{ + "slug": "hearts-of-iron-iv-la-r-sistance", + "name": "Hearts of Iron IV: La Résistance", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107476642" + ], + "release_date": "2020-02-25", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Development Studio" + ], + "publishers": [ + "Paradox Interactive" + ] +} diff --git a/data/game/he/hearts-of-iron-iv-man-the-guns.json b/data/game/he/hearts-of-iron-iv-man-the-guns.json new file mode 100644 index 000000000000..59581a934b97 --- /dev/null +++ b/data/game/he/hearts-of-iron-iv-man-the-guns.json @@ -0,0 +1,19 @@ +{ + "slug": "hearts-of-iron-iv-man-the-guns", + "name": "Hearts of Iron IV: Man the Guns", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107476638" + ], + "release_date": "2019-02-28", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Development Studio" + ], + "publishers": [ + "Paradox Interactive" + ] +} diff --git a/data/game/he/hearts-of-iron-iv-no-step-back.json b/data/game/he/hearts-of-iron-iv-no-step-back.json new file mode 100644 index 000000000000..f231f0ee9cfb --- /dev/null +++ b/data/game/he/hearts-of-iron-iv-no-step-back.json @@ -0,0 +1,19 @@ +{ + "slug": "hearts-of-iron-iv-no-step-back", + "name": "Hearts of Iron IV: No Step Back", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111586197" + ], + "release_date": "2021-11-23", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Development Studio" + ], + "publishers": [ + "Paradox Interactive" + ] +} diff --git a/data/game/he/hearts-of-iron-iv-together-for-victory.json b/data/game/he/hearts-of-iron-iv-together-for-victory.json new file mode 100644 index 000000000000..a37fae943549 --- /dev/null +++ b/data/game/he/hearts-of-iron-iv-together-for-victory.json @@ -0,0 +1,19 @@ +{ + "slug": "hearts-of-iron-iv-together-for-victory", + "name": "Hearts of Iron IV: Together for Victory", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107476640" + ], + "release_date": "2016-12-15", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Development Studio" + ], + "publishers": [ + "Paradox Interactive" + ] +} diff --git a/data/game/he/hearts-of-iron-iv-waking-the-tiger.json b/data/game/he/hearts-of-iron-iv-waking-the-tiger.json new file mode 100644 index 000000000000..a366e21a61d2 --- /dev/null +++ b/data/game/he/hearts-of-iron-iv-waking-the-tiger.json @@ -0,0 +1,19 @@ +{ + "slug": "hearts-of-iron-iv-waking-the-tiger", + "name": "Hearts of Iron IV: Waking the Tiger", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107476641" + ], + "release_date": "2018-03-08", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Development Studio" + ], + "publishers": [ + "Paradox Interactive" + ] +} diff --git a/data/game/he/heavy-duty.json b/data/game/he/heavy-duty.json new file mode 100644 index 000000000000..b9229c1c26cb --- /dev/null +++ b/data/game/he/heavy-duty.json @@ -0,0 +1,17 @@ +{ + "slug": "heavy-duty", + "name": "Heavy Duty", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110817109" + ], + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "shooter game" + ], + "publishers": [ + "Akella" + ] +} diff --git a/data/game/he/heavyweight-transport-simulator.json b/data/game/he/heavyweight-transport-simulator.json new file mode 100644 index 000000000000..1345f757b91a --- /dev/null +++ b/data/game/he/heavyweight-transport-simulator.json @@ -0,0 +1,8 @@ +{ + "slug": "heavyweight-transport-simulator", + "name": "Heavyweight Transport Simulator", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140472963" + ] +} diff --git a/data/game/he/hell-let-loose-spearhead-edition.json b/data/game/he/hell-let-loose-spearhead-edition.json new file mode 100644 index 000000000000..65977031a9d5 --- /dev/null +++ b/data/game/he/hell-let-loose-spearhead-edition.json @@ -0,0 +1,18 @@ +{ + "slug": "hell-let-loose-spearhead-edition", + "name": "Hell Let Loose: Spearhead Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109985891" + ], + "release_date": "2021-12-03", + "platforms": [ + "Xbox Series X and Series S" + ], + "developers": [ + "Black Matter" + ], + "publishers": [ + "Team17" + ] +} diff --git a/data/game/he/hello-kitty-beauty-salon.json b/data/game/he/hello-kitty-beauty-salon.json new file mode 100644 index 000000000000..11f2b687a9a3 --- /dev/null +++ b/data/game/he/hello-kitty-beauty-salon.json @@ -0,0 +1,8 @@ +{ + "slug": "hello-kitty-beauty-salon", + "name": "Hello Kitty Beauty Salon", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131302508" + ] +} diff --git a/data/game/he/hellpoint-blue-sun.json b/data/game/he/hellpoint-blue-sun.json new file mode 100644 index 000000000000..4066fe0c4741 --- /dev/null +++ b/data/game/he/hellpoint-blue-sun.json @@ -0,0 +1,15 @@ +{ + "slug": "hellpoint-blue-sun", + "name": "Hellpoint: Blue Sun", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q114930424" + ], + "release_date": "2022-07-12", + "platforms": [ + "Xbox Series X and Series S" + ], + "developers": [ + "Cradle Games" + ] +} diff --git a/data/game/he/hellpoint-ultimate-edition.json b/data/game/he/hellpoint-ultimate-edition.json new file mode 100644 index 000000000000..2586f9fba040 --- /dev/null +++ b/data/game/he/hellpoint-ultimate-edition.json @@ -0,0 +1,15 @@ +{ + "slug": "hellpoint-ultimate-edition", + "name": "Hellpoint Ultimate Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q114930346" + ], + "release_date": "2022-07-13", + "platforms": [ + "Xbox Series X and Series S" + ], + "developers": [ + "Cradle Games" + ] +} diff --git a/data/game/he/hellraid.json b/data/game/he/hellraid.json new file mode 100644 index 000000000000..a8a5b62db9f8 --- /dev/null +++ b/data/game/he/hellraid.json @@ -0,0 +1,16 @@ +{ + "slug": "hellraid", + "name": "Hellraid", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q13635768" + ], + "platforms": [ + "PlayStation 4", + "PlayStation 3", + "Microsoft Windows" + ], + "genres": [ + "action game" + ] +} diff --git a/data/game/he/hentai-area-51-adult-patch-18.json b/data/game/he/hentai-area-51-adult-patch-18.json new file mode 100644 index 000000000000..630edee68c5e --- /dev/null +++ b/data/game/he/hentai-area-51-adult-patch-18.json @@ -0,0 +1,23 @@ +{ + "slug": "hentai-area-51-adult-patch-18", + "name": "Hentai Area 51 - Adult Patch 18+", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136116270" + ], + "release_date": "2019-08-19", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "third-person shooter", + "erotic video game" + ], + "developers": [ + "LoveAnime", + "AmagSwag Games" + ], + "publishers": [ + "AmagSwag Games" + ] +} diff --git a/data/game/he/hentai-area-51-soundtrack.json b/data/game/he/hentai-area-51-soundtrack.json new file mode 100644 index 000000000000..57bfb959ea06 --- /dev/null +++ b/data/game/he/hentai-area-51-soundtrack.json @@ -0,0 +1,23 @@ +{ + "slug": "hentai-area-51-soundtrack", + "name": "Hentai Area 51 - Soundtrack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136116257" + ], + "release_date": "2019-08-21", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "third-person shooter", + "erotic video game" + ], + "developers": [ + "LoveAnime", + "AmagSwag Games" + ], + "publishers": [ + "AmagSwag Games" + ] +} diff --git a/data/game/he/hentai-arena-adult-patch-18.json b/data/game/he/hentai-arena-adult-patch-18.json new file mode 100644 index 000000000000..f36606cb4722 --- /dev/null +++ b/data/game/he/hentai-arena-adult-patch-18.json @@ -0,0 +1,24 @@ +{ + "slug": "hentai-arena-adult-patch-18", + "name": "Hentai Arena - Adult Patch 18+", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136098095" + ], + "release_date": "2019-07-16", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "action game", + "erotic video game", + "battle royale game" + ], + "developers": [ + "LoveAnime" + ], + "publishers": [ + "AmagSwag Games" + ] +} diff --git a/data/game/he/hentai-crush-uncensored-18.json b/data/game/he/hentai-crush-uncensored-18.json new file mode 100644 index 000000000000..f0c6364adc3d --- /dev/null +++ b/data/game/he/hentai-crush-uncensored-18.json @@ -0,0 +1,24 @@ +{ + "slug": "hentai-crush-uncensored-18", + "name": "Hentai Crush - Uncensored (18+)", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q129379571" + ], + "release_date": "2019-03-15", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "dating sim", + "casual game", + "erotic video game", + "tile-matching video game" + ], + "developers": [ + "Mature Games" + ], + "publishers": [ + "Mature Games" + ] +} diff --git a/data/game/he/hentai-girl-division-uncensored-18.json b/data/game/he/hentai-girl-division-uncensored-18.json new file mode 100644 index 000000000000..92fb9de41ba8 --- /dev/null +++ b/data/game/he/hentai-girl-division-uncensored-18.json @@ -0,0 +1,26 @@ +{ + "slug": "hentai-girl-division-uncensored-18", + "name": "Hentai Girl Division Uncensored (18+)", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q129380374" + ], + "release_date": "2019-08-23", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "adventure video game", + "dating sim", + "casual game", + "erotic video game", + "tile-matching video game", + "role-playing video game" + ], + "developers": [ + "Mature Games" + ], + "publishers": [ + "Mature Games" + ] +} diff --git a/data/game/he/hentai-jail-dlc.json b/data/game/he/hentai-jail-dlc.json new file mode 100644 index 000000000000..b3f28acfcd9a --- /dev/null +++ b/data/game/he/hentai-jail-dlc.json @@ -0,0 +1,23 @@ +{ + "slug": "hentai-jail-dlc", + "name": "Hentai - Jail DLC", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130320008" + ], + "release_date": "2017-10-25", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "adventure video game", + "action game", + "casual game" + ], + "developers": [ + "PinkySwear" + ], + "publishers": [ + "PinkySwear" + ] +} diff --git a/data/game/he/hentai-nazi-adult-patch-18.json b/data/game/he/hentai-nazi-adult-patch-18.json new file mode 100644 index 000000000000..0ef6bb5557dd --- /dev/null +++ b/data/game/he/hentai-nazi-adult-patch-18.json @@ -0,0 +1,24 @@ +{ + "slug": "hentai-nazi-adult-patch-18", + "name": "Hentai Nazi - Adult Patch 18+", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136174698" + ], + "release_date": "2020-09-08", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "action game", + "third-person shooter", + "erotic video game" + ], + "developers": [ + "LoveAnime", + "AmagSwag Games" + ], + "publishers": [ + "AmagSwag Games" + ] +} diff --git a/data/game/he/hentai-nazi-hitler-is-back-adult-patch-18.json b/data/game/he/hentai-nazi-hitler-is-back-adult-patch-18.json new file mode 100644 index 000000000000..4499fad3baf4 --- /dev/null +++ b/data/game/he/hentai-nazi-hitler-is-back-adult-patch-18.json @@ -0,0 +1,23 @@ +{ + "slug": "hentai-nazi-hitler-is-back-adult-patch-18", + "name": "Hentai Nazi HITLER is Back - Adult Patch 18+", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136174704" + ], + "release_date": "2020-04-01", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "action game", + "erotic video game" + ], + "developers": [ + "LoveAnime", + "AmagSwag Games" + ], + "publishers": [ + "AmagSwag Games" + ] +} diff --git a/data/game/he/hentai-nazi-stalin-edition.json b/data/game/he/hentai-nazi-stalin-edition.json new file mode 100644 index 000000000000..902e983c6ee7 --- /dev/null +++ b/data/game/he/hentai-nazi-stalin-edition.json @@ -0,0 +1,24 @@ +{ + "slug": "hentai-nazi-stalin-edition", + "name": "Hentai Nazi Stalin Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136174697" + ], + "release_date": "2020-09-08", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "action game", + "third-person shooter", + "erotic video game" + ], + "developers": [ + "LoveAnime", + "AmagSwag Games" + ], + "publishers": [ + "AmagSwag Games" + ] +} diff --git a/data/game/he/hentai-neighbors-sweet-summer-18-uncensored.json b/data/game/he/hentai-neighbors-sweet-summer-18-uncensored.json new file mode 100644 index 000000000000..6d1856fc24d7 --- /dev/null +++ b/data/game/he/hentai-neighbors-sweet-summer-18-uncensored.json @@ -0,0 +1,23 @@ +{ + "slug": "hentai-neighbors-sweet-summer-18-uncensored", + "name": "Hentai Neighbors - Sweet Summer (18+ Uncensored)", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q129332108" + ], + "release_date": "2018-11-09", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "casual game", + "erotic video game", + "tile-matching video game" + ], + "developers": [ + "Mature Games" + ], + "publishers": [ + "Mature Games" + ] +} diff --git a/data/game/he/hentai-soundtrack-of-the-year-soty.json b/data/game/he/hentai-soundtrack-of-the-year-soty.json new file mode 100644 index 000000000000..11dd7a5c29f5 --- /dev/null +++ b/data/game/he/hentai-soundtrack-of-the-year-soty.json @@ -0,0 +1,23 @@ +{ + "slug": "hentai-soundtrack-of-the-year-soty", + "name": "Hentai - Soundtrack Of The Year (SOTY)", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130320114" + ], + "release_date": "2017-09-28", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "adventure video game", + "action game", + "casual game" + ], + "developers": [ + "PinkySwear" + ], + "publishers": [ + "PinkySwear" + ] +} diff --git a/data/game/he/her-challenges.json b/data/game/he/her-challenges.json new file mode 100644 index 000000000000..e632228ca623 --- /dev/null +++ b/data/game/he/her-challenges.json @@ -0,0 +1,12 @@ +{ + "slug": "her-challenges", + "name": "Her Challenges", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113686219" + ], + "release_date": "2021-08-31", + "publishers": [ + "QUByte Interactive" + ] +} diff --git a/data/game/he/heretic-hexen-q126186926.json b/data/game/he/heretic-hexen-q126186926.json new file mode 100644 index 000000000000..33f99c8ef006 --- /dev/null +++ b/data/game/he/heretic-hexen-q126186926.json @@ -0,0 +1,8 @@ +{ + "slug": "heretic-hexen-q126186926", + "name": "Heretic & Hexen", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126186926" + ] +} diff --git a/data/game/he/heretic-ii-the-siege.json b/data/game/he/heretic-ii-the-siege.json new file mode 100644 index 000000000000..07b60a52074d --- /dev/null +++ b/data/game/he/heretic-ii-the-siege.json @@ -0,0 +1,8 @@ +{ + "slug": "heretic-ii-the-siege", + "name": "Heretic II: The Siege", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126186095" + ] +} diff --git a/data/game/he/hero-by-chance-lady-man.json b/data/game/he/hero-by-chance-lady-man.json new file mode 100644 index 000000000000..61c1d2b85a05 --- /dev/null +++ b/data/game/he/hero-by-chance-lady-man.json @@ -0,0 +1,18 @@ +{ + "slug": "hero-by-chance-lady-man", + "name": "Hero by Chance: Lady Man", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116152678" + ], + "release_date": "2020-11-30", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Reborn Entertainment" + ], + "publishers": [ + "Reborn Entertainment" + ] +} diff --git a/data/game/he/heroes-chronicles-masters-of-the-elements.json b/data/game/he/heroes-chronicles-masters-of-the-elements.json new file mode 100644 index 000000000000..b9b7cfc5353a --- /dev/null +++ b/data/game/he/heroes-chronicles-masters-of-the-elements.json @@ -0,0 +1,8 @@ +{ + "slug": "heroes-chronicles-masters-of-the-elements", + "name": "Heroes Chronicles: Masters of the Elements", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111008063" + ] +} diff --git a/data/game/he/heroes-chronicles-the-sword-of-frost.json b/data/game/he/heroes-chronicles-the-sword-of-frost.json new file mode 100644 index 000000000000..1c7cb060259f --- /dev/null +++ b/data/game/he/heroes-chronicles-the-sword-of-frost.json @@ -0,0 +1,8 @@ +{ + "slug": "heroes-chronicles-the-sword-of-frost", + "name": "Heroes Chronicles: The Sword of Frost", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140472089" + ] +} diff --git a/data/game/he/heroes-chronicles.json b/data/game/he/heroes-chronicles.json new file mode 100644 index 000000000000..310aa62e201e --- /dev/null +++ b/data/game/he/heroes-chronicles.json @@ -0,0 +1,21 @@ +{ + "slug": "heroes-chronicles", + "name": "Heroes Chronicles", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q747348" + ], + "release_date": "2000-01-01", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "turn-based strategy video game" + ], + "developers": [ + "New World Computing" + ], + "publishers": [ + "The 3DO Company" + ] +} diff --git a/data/game/he/heroes-of-might-and-magic-ii-the-price-of-loyalty.json b/data/game/he/heroes-of-might-and-magic-ii-the-price-of-loyalty.json new file mode 100644 index 000000000000..e5b5a7f3250c --- /dev/null +++ b/data/game/he/heroes-of-might-and-magic-ii-the-price-of-loyalty.json @@ -0,0 +1,21 @@ +{ + "slug": "heroes-of-might-and-magic-ii-the-price-of-loyalty", + "name": "Heroes of Might and Magic II: The Price of Loyalty", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3109545" + ], + "release_date": "1997-04-30", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "turn-based strategy video game" + ], + "developers": [ + "Cyberlore Studios" + ], + "publishers": [ + "The 3DO Company" + ] +} diff --git a/data/game/he/heroes-of-might-and-magic-iii-armageddon-s-blade.json b/data/game/he/heroes-of-might-and-magic-iii-armageddon-s-blade.json new file mode 100644 index 000000000000..f2591a071b79 --- /dev/null +++ b/data/game/he/heroes-of-might-and-magic-iii-armageddon-s-blade.json @@ -0,0 +1,22 @@ +{ + "slug": "heroes-of-might-and-magic-iii-armageddon-s-blade", + "name": "Heroes of Might and Magic III: Armageddon's Blade", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q507074" + ], + "release_date": "1999-09-30", + "platforms": [ + "Classic Mac OS", + "Microsoft Windows" + ], + "genres": [ + "turn-based strategy video game" + ], + "developers": [ + "New World Computing" + ], + "publishers": [ + "The 3DO Company" + ] +} diff --git a/data/game/he/heroes-of-might-and-magic-iii-complete.json b/data/game/he/heroes-of-might-and-magic-iii-complete.json new file mode 100644 index 000000000000..a8eab080bbd8 --- /dev/null +++ b/data/game/he/heroes-of-might-and-magic-iii-complete.json @@ -0,0 +1,11 @@ +{ + "slug": "heroes-of-might-and-magic-iii-complete", + "name": "Heroes of Might and Magic III: Complete", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q132128969" + ], + "platforms": [ + "Classic Mac OS" + ] +} diff --git a/data/game/he/heroes-of-might-and-magic-iv-the-gathering-storm.json b/data/game/he/heroes-of-might-and-magic-iv-the-gathering-storm.json new file mode 100644 index 000000000000..ecdd4349d4a0 --- /dev/null +++ b/data/game/he/heroes-of-might-and-magic-iv-the-gathering-storm.json @@ -0,0 +1,18 @@ +{ + "slug": "heroes-of-might-and-magic-iv-the-gathering-storm", + "name": "Heroes of Might and Magic IV: The Gathering Storm", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2651488" + ], + "release_date": "2002-09-26", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "New World Computing" + ], + "publishers": [ + "The 3DO Company" + ] +} diff --git a/data/game/he/heroes-of-might-and-magic-iv-winds-of-war.json b/data/game/he/heroes-of-might-and-magic-iv-winds-of-war.json new file mode 100644 index 000000000000..da5b09a13a68 --- /dev/null +++ b/data/game/he/heroes-of-might-and-magic-iv-winds-of-war.json @@ -0,0 +1,18 @@ +{ + "slug": "heroes-of-might-and-magic-iv-winds-of-war", + "name": "Heroes of Might and Magic IV: Winds of War", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2652783" + ], + "release_date": "2003-02-23", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "New World Computing" + ], + "publishers": [ + "The 3DO Company" + ] +} diff --git a/data/game/he/heroes-of-might-and-magic-v-hammers-of-fate.json b/data/game/he/heroes-of-might-and-magic-v-hammers-of-fate.json new file mode 100644 index 000000000000..aaefc3ac477e --- /dev/null +++ b/data/game/he/heroes-of-might-and-magic-v-hammers-of-fate.json @@ -0,0 +1,18 @@ +{ + "slug": "heroes-of-might-and-magic-v-hammers-of-fate", + "name": "Heroes of Might and Magic V: Hammers of Fate", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2470" + ], + "release_date": "2006-11-14", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "turn-based strategy video game" + ], + "developers": [ + "Nival" + ] +} diff --git a/data/game/he/heroes-of-might-and-magic-v.json b/data/game/he/heroes-of-might-and-magic-v.json new file mode 100644 index 000000000000..a4f28be1af17 --- /dev/null +++ b/data/game/he/heroes-of-might-and-magic-v.json @@ -0,0 +1,19 @@ +{ + "slug": "heroes-of-might-and-magic-v", + "name": "Heroes of Might and Magic V", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2450" + ], + "release_date": "2006-05-16", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "turn-based strategy video game" + ], + "developers": [ + "Nival" + ] +} diff --git a/data/game/he/heroes-rise-herofall-ad-space.json b/data/game/he/heroes-rise-herofall-ad-space.json new file mode 100644 index 000000000000..374e01a7220d --- /dev/null +++ b/data/game/he/heroes-rise-herofall-ad-space.json @@ -0,0 +1,19 @@ +{ + "slug": "heroes-rise-herofall-ad-space", + "name": "Heroes Rise: HeroFall - Ad Space", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115016111" + ], + "release_date": "2014-07-11", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Choice of Games" + ], + "publishers": [ + "Choice of Games" + ] +} diff --git a/data/game/he/heroes-rise-herofall-perfect-legend-guide.json b/data/game/he/heroes-rise-herofall-perfect-legend-guide.json new file mode 100644 index 000000000000..6a5b358fdfba --- /dev/null +++ b/data/game/he/heroes-rise-herofall-perfect-legend-guide.json @@ -0,0 +1,19 @@ +{ + "slug": "heroes-rise-herofall-perfect-legend-guide", + "name": "Heroes Rise: HeroFall - Perfect Legend Guide", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115016106" + ], + "release_date": "2014-07-11", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Choice of Games" + ], + "publishers": [ + "Choice of Games" + ] +} diff --git a/data/game/he/heroes-rise-herofall-warning-system.json b/data/game/he/heroes-rise-herofall-warning-system.json new file mode 100644 index 000000000000..df8c39478b5f --- /dev/null +++ b/data/game/he/heroes-rise-herofall-warning-system.json @@ -0,0 +1,19 @@ +{ + "slug": "heroes-rise-herofall-warning-system", + "name": "Heroes Rise: HeroFall - Warning System", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115016104" + ], + "release_date": "2014-07-11", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Choice of Games" + ], + "publishers": [ + "Choice of Games" + ] +} diff --git a/data/game/he/heroes-rise-the-hero-project-perfect-legend-guide.json b/data/game/he/heroes-rise-the-hero-project-perfect-legend-guide.json new file mode 100644 index 000000000000..da6797f08d00 --- /dev/null +++ b/data/game/he/heroes-rise-the-hero-project-perfect-legend-guide.json @@ -0,0 +1,19 @@ +{ + "slug": "heroes-rise-the-hero-project-perfect-legend-guide", + "name": "Heroes Rise: The Hero Project - Perfect Legend Guide", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115016097" + ], + "release_date": "2013-09-20", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Choice of Games" + ], + "publishers": [ + "Choice of Games" + ] +} diff --git a/data/game/he/heroes-rise-the-hero-project-warning-system.json b/data/game/he/heroes-rise-the-hero-project-warning-system.json new file mode 100644 index 000000000000..881b95ab852b --- /dev/null +++ b/data/game/he/heroes-rise-the-hero-project-warning-system.json @@ -0,0 +1,19 @@ +{ + "slug": "heroes-rise-the-hero-project-warning-system", + "name": "Heroes Rise: The Hero Project - Warning System", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115016089" + ], + "release_date": "2013-09-20", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Choice of Games" + ], + "publishers": [ + "Choice of Games" + ] +} diff --git a/data/game/he/heroes-rise-the-prodigy-perfect-legend-guide.json b/data/game/he/heroes-rise-the-prodigy-perfect-legend-guide.json new file mode 100644 index 000000000000..3865ac33b272 --- /dev/null +++ b/data/game/he/heroes-rise-the-prodigy-perfect-legend-guide.json @@ -0,0 +1,19 @@ +{ + "slug": "heroes-rise-the-prodigy-perfect-legend-guide", + "name": "Heroes Rise: The Prodigy - Perfect Legend Guide", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115016101" + ], + "release_date": "2012-07-13", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Choice of Games" + ], + "publishers": [ + "Choice of Games" + ] +} diff --git a/data/game/he/hexagon.json b/data/game/he/hexagon.json new file mode 100644 index 000000000000..bf5fa969fbf2 --- /dev/null +++ b/data/game/he/hexagon.json @@ -0,0 +1,12 @@ +{ + "slug": "hexagon", + "name": "Hexagon", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q20873045" + ], + "release_date": "2012-02-26", + "genres": [ + "action game" + ] +} diff --git a/data/game/he/hexen-beyond-heretic-demo.json b/data/game/he/hexen-beyond-heretic-demo.json new file mode 100644 index 000000000000..c8d3445f38f3 --- /dev/null +++ b/data/game/he/hexen-beyond-heretic-demo.json @@ -0,0 +1,8 @@ +{ + "slug": "hexen-beyond-heretic-demo", + "name": "Hexen: Beyond Heretic DEMO", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123003058" + ] +} diff --git a/data/game/he/hexen-ii-portal-of-praevus.json b/data/game/he/hexen-ii-portal-of-praevus.json new file mode 100644 index 000000000000..e17d5d4bdfba --- /dev/null +++ b/data/game/he/hexen-ii-portal-of-praevus.json @@ -0,0 +1,16 @@ +{ + "slug": "hexen-ii-portal-of-praevus", + "name": "Hexen II: Portal of Praevus", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3135056" + ], + "release_date": "1998-04-01", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "first-person shooter" + ] +} diff --git a/data/game/hi/hidden-dangerous-2-sabre-squadron.json b/data/game/hi/hidden-dangerous-2-sabre-squadron.json new file mode 100644 index 000000000000..1ce4650c901c --- /dev/null +++ b/data/game/hi/hidden-dangerous-2-sabre-squadron.json @@ -0,0 +1,9 @@ +{ + "slug": "hidden-dangerous-2-sabre-squadron", + "name": "Hidden & Dangerous 2: Sabre Squadron", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3135241" + ], + "release_date": "2004-01-01" +} diff --git a/data/game/hi/hidden-dangerous-action-pack.json b/data/game/hi/hidden-dangerous-action-pack.json new file mode 100644 index 000000000000..1e40d438ba63 --- /dev/null +++ b/data/game/hi/hidden-dangerous-action-pack.json @@ -0,0 +1,8 @@ +{ + "slug": "hidden-dangerous-action-pack", + "name": "Hidden & Dangerous Action Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131535316" + ] +} diff --git a/data/game/hi/hidden-dangerous-fight-for-freedom.json b/data/game/hi/hidden-dangerous-fight-for-freedom.json new file mode 100644 index 000000000000..3592a5c2752a --- /dev/null +++ b/data/game/hi/hidden-dangerous-fight-for-freedom.json @@ -0,0 +1,8 @@ +{ + "slug": "hidden-dangerous-fight-for-freedom", + "name": "Hidden & Dangerous: Fight For Freedom", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110156662" + ] +} diff --git a/data/game/hi/hidden-dreams.json b/data/game/hi/hidden-dreams.json new file mode 100644 index 000000000000..7b6bce34b9e1 --- /dev/null +++ b/data/game/hi/hidden-dreams.json @@ -0,0 +1,12 @@ +{ + "slug": "hidden-dreams", + "name": "Hidden Dreams", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116592495" + ], + "release_date": "2017-08-03", + "developers": [ + "Team Cherry" + ] +} diff --git a/data/game/hi/hidden-folks-q110453487.json b/data/game/hi/hidden-folks-q110453487.json new file mode 100644 index 000000000000..e3f0a0e0f4ad --- /dev/null +++ b/data/game/hi/hidden-folks-q110453487.json @@ -0,0 +1,15 @@ +{ + "slug": "hidden-folks-q110453487", + "name": "Hidden Folks+", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110453487" + ], + "release_date": "2022-01-28", + "platforms": [ + "iPadOS", + "tvOS", + "iOS", + "macOS" + ] +} diff --git a/data/game/hi/hidden-shapes-animals-lovely-cats.json b/data/game/hi/hidden-shapes-animals-lovely-cats.json new file mode 100644 index 000000000000..6812d9de777b --- /dev/null +++ b/data/game/hi/hidden-shapes-animals-lovely-cats.json @@ -0,0 +1,16 @@ +{ + "slug": "hidden-shapes-animals-lovely-cats", + "name": "Hidden Shapes: Animals + Lovely Cats", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111805002" + ], + "release_date": "2022-04-14", + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 4" + ], + "publishers": [ + "QUByte Interactive" + ] +} diff --git a/data/game/hi/hidden-shapes-black-skull-old-west.json b/data/game/hi/hidden-shapes-black-skull-old-west.json new file mode 100644 index 000000000000..8241bdcb39a8 --- /dev/null +++ b/data/game/hi/hidden-shapes-black-skull-old-west.json @@ -0,0 +1,18 @@ +{ + "slug": "hidden-shapes-black-skull-old-west", + "name": "Hidden Shapes: Black Skull + Old West", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115978612" + ], + "release_date": "2022-08-25", + "platforms": [ + "Xbox Series X and Series S" + ], + "developers": [ + "YAW Studios" + ], + "publishers": [ + "QUByte Interactive" + ] +} diff --git a/data/game/hi/hidden-through-time-aztec-rituals.json b/data/game/hi/hidden-through-time-aztec-rituals.json new file mode 100644 index 000000000000..e091807f4913 --- /dev/null +++ b/data/game/hi/hidden-through-time-aztec-rituals.json @@ -0,0 +1,13 @@ +{ + "slug": "hidden-through-time-aztec-rituals", + "name": "Hidden Through Time - Aztec Rituals", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115201669" + ], + "release_date": "2022-07-21", + "platforms": [ + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/game/hi/hidden-through-time-legends-of-japan.json b/data/game/hi/hidden-through-time-legends-of-japan.json new file mode 100644 index 000000000000..ab41770b50a7 --- /dev/null +++ b/data/game/hi/hidden-through-time-legends-of-japan.json @@ -0,0 +1,13 @@ +{ + "slug": "hidden-through-time-legends-of-japan", + "name": "Hidden Through Time - Legends of Japan", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115201674" + ], + "release_date": "2020-09-10", + "platforms": [ + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/game/hi/hidden-through-time-pirate-treasures.json b/data/game/hi/hidden-through-time-pirate-treasures.json new file mode 100644 index 000000000000..abd4dcd922eb --- /dev/null +++ b/data/game/hi/hidden-through-time-pirate-treasures.json @@ -0,0 +1,13 @@ +{ + "slug": "hidden-through-time-pirate-treasures", + "name": "Hidden Through Time - Pirate Treasures", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115201666" + ], + "release_date": "2022-07-21", + "platforms": [ + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/game/hi/hidden-through-time-road-to-rome.json b/data/game/hi/hidden-through-time-road-to-rome.json new file mode 100644 index 000000000000..0ab9d3b578c2 --- /dev/null +++ b/data/game/hi/hidden-through-time-road-to-rome.json @@ -0,0 +1,13 @@ +{ + "slug": "hidden-through-time-road-to-rome", + "name": "Hidden Through Time - Road to Rome", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115201673" + ], + "release_date": "2021-04-22", + "platforms": [ + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/game/hi/hidden-through-time-viking-tales.json b/data/game/hi/hidden-through-time-viking-tales.json new file mode 100644 index 000000000000..defb6ee060b6 --- /dev/null +++ b/data/game/hi/hidden-through-time-viking-tales.json @@ -0,0 +1,13 @@ +{ + "slug": "hidden-through-time-viking-tales", + "name": "Hidden Through Time - Viking Tales", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115201687" + ], + "release_date": "2020-05-15", + "platforms": [ + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/game/hi/higurashi-no-naku-koro-ni-himatsubushi-hen.json b/data/game/hi/higurashi-no-naku-koro-ni-himatsubushi-hen.json new file mode 100644 index 000000000000..d6a5f11f76ef --- /dev/null +++ b/data/game/hi/higurashi-no-naku-koro-ni-himatsubushi-hen.json @@ -0,0 +1,19 @@ +{ + "slug": "higurashi-no-naku-koro-ni-himatsubushi-hen", + "name": "Higurashi no Naku Koro ni: Himatsubushi-hen", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q104093781" + ], + "release_date": "2004-08-13", + "genres": [ + "sound novel", + "horror video game" + ], + "developers": [ + "07th Expansion" + ], + "publishers": [ + "07th Expansion" + ] +} diff --git a/data/game/hi/higurashi-no-naku-koro-ni-kai-matsuribayashi-hen.json b/data/game/hi/higurashi-no-naku-koro-ni-kai-matsuribayashi-hen.json new file mode 100644 index 000000000000..9d9d76b57d64 --- /dev/null +++ b/data/game/hi/higurashi-no-naku-koro-ni-kai-matsuribayashi-hen.json @@ -0,0 +1,19 @@ +{ + "slug": "higurashi-no-naku-koro-ni-kai-matsuribayashi-hen", + "name": "Higurashi no Naku Koro ni Kai: Matsuribayashi-hen", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5966528" + ], + "release_date": "2006-08-13", + "genres": [ + "sound novel", + "horror video game" + ], + "developers": [ + "07th Expansion" + ], + "publishers": [ + "07th Expansion" + ] +} diff --git a/data/game/hi/higurashi-no-naku-koro-ni-kai-meakashi-hen.json b/data/game/hi/higurashi-no-naku-koro-ni-kai-meakashi-hen.json new file mode 100644 index 000000000000..4113e0a0017e --- /dev/null +++ b/data/game/hi/higurashi-no-naku-koro-ni-kai-meakashi-hen.json @@ -0,0 +1,19 @@ +{ + "slug": "higurashi-no-naku-koro-ni-kai-meakashi-hen", + "name": "Higurashi no Naku Koro ni Kai: Meakashi-hen", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5966408" + ], + "release_date": "2004-12-30", + "genres": [ + "sound novel", + "horror video game" + ], + "developers": [ + "07th Expansion" + ], + "publishers": [ + "07th Expansion" + ] +} diff --git a/data/game/hi/higurashi-no-naku-koro-ni-kai-minagoroshi-hen.json b/data/game/hi/higurashi-no-naku-koro-ni-kai-minagoroshi-hen.json new file mode 100644 index 000000000000..b8ad2e7edb1b --- /dev/null +++ b/data/game/hi/higurashi-no-naku-koro-ni-kai-minagoroshi-hen.json @@ -0,0 +1,19 @@ +{ + "slug": "higurashi-no-naku-koro-ni-kai-minagoroshi-hen", + "name": "Higurashi no Naku Koro ni Kai: Minagoroshi-hen", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5967394" + ], + "release_date": "2005-12-30", + "genres": [ + "sound novel", + "horror video game" + ], + "developers": [ + "07th Expansion" + ], + "publishers": [ + "07th Expansion" + ] +} diff --git a/data/game/hi/higurashi-no-naku-koro-ni-kai-tsumihoroboshi-hen.json b/data/game/hi/higurashi-no-naku-koro-ni-kai-tsumihoroboshi-hen.json new file mode 100644 index 000000000000..7067721ba64a --- /dev/null +++ b/data/game/hi/higurashi-no-naku-koro-ni-kai-tsumihoroboshi-hen.json @@ -0,0 +1,19 @@ +{ + "slug": "higurashi-no-naku-koro-ni-kai-tsumihoroboshi-hen", + "name": "Higurashi no Naku Koro ni Kai: Tsumihoroboshi-hen", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5966807" + ], + "release_date": "2005-08-14", + "genres": [ + "sound novel", + "horror video game" + ], + "developers": [ + "07th Expansion" + ], + "publishers": [ + "07th Expansion" + ] +} diff --git a/data/game/hi/higurashi-no-naku-koro-ni-kai.json b/data/game/hi/higurashi-no-naku-koro-ni-kai.json new file mode 100644 index 000000000000..0aafb484b817 --- /dev/null +++ b/data/game/hi/higurashi-no-naku-koro-ni-kai.json @@ -0,0 +1,19 @@ +{ + "slug": "higurashi-no-naku-koro-ni-kai", + "name": "Higurashi no Naku Koro ni Kai", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11276166" + ], + "release_date": "2006-08-13", + "genres": [ + "sound novel", + "horror video game" + ], + "developers": [ + "07th Expansion" + ], + "publishers": [ + "07th Expansion" + ] +} diff --git a/data/game/hi/higurashi-no-naku-koro-ni-onikakushi-hen.json b/data/game/hi/higurashi-no-naku-koro-ni-onikakushi-hen.json new file mode 100644 index 000000000000..ffea8b679060 --- /dev/null +++ b/data/game/hi/higurashi-no-naku-koro-ni-onikakushi-hen.json @@ -0,0 +1,27 @@ +{ + "slug": "higurashi-no-naku-koro-ni-onikakushi-hen", + "name": "Higurashi no Naku Koro ni: Onikakushi-hen", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11090454" + ], + "release_date": "2002-08-10", + "platforms": [ + "PlayStation 3", + "PlayStation 4", + "PlayStation Vita", + "Nintendo DS", + "macOS", + "Microsoft Windows" + ], + "genres": [ + "kinetic novel" + ], + "developers": [ + "07th Expansion" + ], + "publishers": [ + "07th Expansion", + "MangaGamer" + ] +} diff --git a/data/game/hi/higurashi-no-naku-koro-ni-tatarigoroshi-hen.json b/data/game/hi/higurashi-no-naku-koro-ni-tatarigoroshi-hen.json new file mode 100644 index 000000000000..7a5049adb666 --- /dev/null +++ b/data/game/hi/higurashi-no-naku-koro-ni-tatarigoroshi-hen.json @@ -0,0 +1,19 @@ +{ + "slug": "higurashi-no-naku-koro-ni-tatarigoroshi-hen", + "name": "Higurashi no Naku Koro ni: Tatarigoroshi-hen", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5966459" + ], + "release_date": "2003-08-15", + "genres": [ + "sound novel", + "horror video game" + ], + "developers": [ + "07th Expansion" + ], + "publishers": [ + "07th Expansion" + ] +} diff --git a/data/game/hi/higurashi-no-naku-koro-ni-watanagashi-hen.json b/data/game/hi/higurashi-no-naku-koro-ni-watanagashi-hen.json new file mode 100644 index 000000000000..7b309cdb4ded --- /dev/null +++ b/data/game/hi/higurashi-no-naku-koro-ni-watanagashi-hen.json @@ -0,0 +1,19 @@ +{ + "slug": "higurashi-no-naku-koro-ni-watanagashi-hen", + "name": "Higurashi no Naku Koro ni: Watanagashi-hen", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5966621" + ], + "release_date": "2002-12-29", + "genres": [ + "sound novel", + "horror video game" + ], + "developers": [ + "07th Expansion" + ], + "publishers": [ + "07th Expansion" + ] +} diff --git a/data/game/hi/hill-climb-racing-q118235025.json b/data/game/hi/hill-climb-racing-q118235025.json new file mode 100644 index 000000000000..0bc2ae8571fb --- /dev/null +++ b/data/game/hi/hill-climb-racing-q118235025.json @@ -0,0 +1,13 @@ +{ + "slug": "hill-climb-racing-q118235025", + "name": "Hill Climb Racing+", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118235025" + ], + "release_date": "2023-05-04", + "platforms": [ + "iPadOS", + "iOS" + ] +} diff --git a/data/game/hi/him-her-collection.json b/data/game/hi/him-her-collection.json new file mode 100644 index 000000000000..a922aa98127c --- /dev/null +++ b/data/game/hi/him-her-collection.json @@ -0,0 +1,21 @@ +{ + "slug": "him-her-collection", + "name": "Him & Her Collection", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113686227" + ], + "release_date": "2022-06-23", + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "puzzle-platformer" + ], + "publishers": [ + "QUByte Interactive", + "Game Nacional" + ] +} diff --git a/data/game/hi/hishou-same-same-same.json b/data/game/hi/hishou-same-same-same.json new file mode 100644 index 000000000000..479b47750509 --- /dev/null +++ b/data/game/hi/hishou-same-same-same.json @@ -0,0 +1,19 @@ +{ + "slug": "hishou-same-same-same", + "name": "Hishou Same! Same! Same!", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q129087374" + ], + "release_date": "2022-04-28", + "platforms": [ + "PlayStation 4" + ], + "developers": [ + "Toaplan", + "M2" + ], + "publishers": [ + "M2" + ] +} diff --git a/data/game/hi/hitman-game-of-the-year-edition.json b/data/game/hi/hitman-game-of-the-year-edition.json new file mode 100644 index 000000000000..c72bcc94c3d9 --- /dev/null +++ b/data/game/hi/hitman-game-of-the-year-edition.json @@ -0,0 +1,8 @@ +{ + "slug": "hitman-game-of-the-year-edition", + "name": "Hitman - Game of the Year Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q90135376" + ] +} diff --git a/data/game/hi/hitman-hd-enhanced-collection.json b/data/game/hi/hitman-hd-enhanced-collection.json new file mode 100644 index 000000000000..cf2b577b9540 --- /dev/null +++ b/data/game/hi/hitman-hd-enhanced-collection.json @@ -0,0 +1,12 @@ +{ + "slug": "hitman-hd-enhanced-collection", + "name": "Hitman HD Enhanced Collection", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123337713" + ], + "release_date": "2019-01-11", + "platforms": [ + "PlayStation 4" + ] +} diff --git a/data/game/hi/hitman-hd-trilogy.json b/data/game/hi/hitman-hd-trilogy.json new file mode 100644 index 000000000000..9b5616514e5a --- /dev/null +++ b/data/game/hi/hitman-hd-trilogy.json @@ -0,0 +1,15 @@ +{ + "slug": "hitman-hd-trilogy", + "name": "Hitman: HD Trilogy", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17633848" + ], + "release_date": "2013-01-01", + "platforms": [ + "PlayStation 3" + ], + "genres": [ + "action-adventure game" + ] +} diff --git a/data/game/hi/hitman-trilogy.json b/data/game/hi/hitman-trilogy.json new file mode 100644 index 000000000000..46ad7dcbfaa7 --- /dev/null +++ b/data/game/hi/hitman-trilogy.json @@ -0,0 +1,8 @@ +{ + "slug": "hitman-trilogy", + "name": "Hitman Trilogy", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63049475" + ] +} diff --git a/data/game/hi/hitman-world-of-assassination.json b/data/game/hi/hitman-world-of-assassination.json new file mode 100644 index 000000000000..a9ab9e9cbd3c --- /dev/null +++ b/data/game/hi/hitman-world-of-assassination.json @@ -0,0 +1,20 @@ +{ + "slug": "hitman-world-of-assassination", + "name": "Hitman World of Assassination", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116680138" + ], + "release_date": "2022-01-20", + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 5", + "PlayStation 4", + "iOS", + "Microsoft Windows" + ], + "genres": [ + "stealth game", + "immersive sim" + ] +} diff --git a/data/game/hi/hits-vol-1.json b/data/game/hi/hits-vol-1.json new file mode 100644 index 000000000000..efdb7f24d8f9 --- /dev/null +++ b/data/game/hi/hits-vol-1.json @@ -0,0 +1,15 @@ +{ + "slug": "hits-vol-1", + "name": "Hits! Vol 1", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131564904" + ], + "release_date": "1986-01-01", + "platforms": [ + "Amstrad CPC" + ], + "publishers": [ + "Krome Studios Melbourne" + ] +} diff --git a/data/game/ho/hocus-pocus-doom.json b/data/game/ho/hocus-pocus-doom.json new file mode 100644 index 000000000000..73b7f1af2688 --- /dev/null +++ b/data/game/ho/hocus-pocus-doom.json @@ -0,0 +1,8 @@ +{ + "slug": "hocus-pocus-doom", + "name": "Hocus Pocus Doom", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108027627" + ] +} diff --git a/data/game/ho/hollywood-collection-q124029760.json b/data/game/ho/hollywood-collection-q124029760.json new file mode 100644 index 000000000000..72bfdec4798b --- /dev/null +++ b/data/game/ho/hollywood-collection-q124029760.json @@ -0,0 +1,15 @@ +{ + "slug": "hollywood-collection-q124029760", + "name": "Hollywood Collection", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124029760" + ], + "release_date": "1990-01-01", + "platforms": [ + "Amstrad CPC" + ], + "publishers": [ + "Ocean Software" + ] +} diff --git a/data/game/ho/home-run-derby-q128014886.json b/data/game/ho/home-run-derby-q128014886.json new file mode 100644 index 000000000000..adfe5cc307f4 --- /dev/null +++ b/data/game/ho/home-run-derby-q128014886.json @@ -0,0 +1,8 @@ +{ + "slug": "home-run-derby-q128014886", + "name": "Home Run Derby", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q128014886" + ] +} diff --git a/data/game/ho/homestar-ruiner.json b/data/game/ho/homestar-ruiner.json new file mode 100644 index 000000000000..7ea0d8f26980 --- /dev/null +++ b/data/game/ho/homestar-ruiner.json @@ -0,0 +1,23 @@ +{ + "slug": "homestar-ruiner", + "name": "Homestar Ruiner", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135448928" + ], + "release_date": "2008-08-11", + "platforms": [ + "PlayStation 3", + "Wii", + "Microsoft Windows" + ], + "genres": [ + "graphic adventure game" + ], + "developers": [ + "Telltale Games" + ], + "publishers": [ + "Telltale Games" + ] +} diff --git a/data/game/ho/homeworld-deserts-of-kharak-khaaneph-fleet-pack.json b/data/game/ho/homeworld-deserts-of-kharak-khaaneph-fleet-pack.json new file mode 100644 index 000000000000..851ee51972d9 --- /dev/null +++ b/data/game/ho/homeworld-deserts-of-kharak-khaaneph-fleet-pack.json @@ -0,0 +1,19 @@ +{ + "slug": "homeworld-deserts-of-kharak-khaaneph-fleet-pack", + "name": "Homeworld: Deserts of Kharak - Khaaneph Fleet Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112263305" + ], + "release_date": "2016-04-26", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Blackbird Interactive" + ], + "publishers": [ + "Gearbox Software" + ] +} diff --git a/data/game/ho/homeworld-deserts-of-kharak-soban-fleet-pack.json b/data/game/ho/homeworld-deserts-of-kharak-soban-fleet-pack.json new file mode 100644 index 000000000000..91d43b2d759c --- /dev/null +++ b/data/game/ho/homeworld-deserts-of-kharak-soban-fleet-pack.json @@ -0,0 +1,19 @@ +{ + "slug": "homeworld-deserts-of-kharak-soban-fleet-pack", + "name": "Homeworld: Deserts of Kharak - Soban Fleet Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112263312" + ], + "release_date": "2016-03-22", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Blackbird Interactive" + ], + "publishers": [ + "Gearbox Software" + ] +} diff --git a/data/game/ho/homicipher-demo.json b/data/game/ho/homicipher-demo.json new file mode 100644 index 000000000000..4b53135d2909 --- /dev/null +++ b/data/game/ho/homicipher-demo.json @@ -0,0 +1,16 @@ +{ + "slug": "homicipher-demo", + "name": "Homicipher: Demo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122309759" + ], + "release_date": "2023-05-31", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "adventure video game" + ] +} diff --git a/data/game/ho/homosexuality-in-video-games.json b/data/game/ho/homosexuality-in-video-games.json new file mode 100644 index 000000000000..4c45108a396f --- /dev/null +++ b/data/game/ho/homosexuality-in-video-games.json @@ -0,0 +1,8 @@ +{ + "slug": "homosexuality-in-video-games", + "name": "homosexuality in video games", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134610478" + ] +} diff --git a/data/game/ho/honeymoon.json b/data/game/ho/honeymoon.json new file mode 100644 index 000000000000..951f47eeadf5 --- /dev/null +++ b/data/game/ho/honeymoon.json @@ -0,0 +1,8 @@ +{ + "slug": "honeymoon", + "name": "Honeymoon", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q97342252" + ] +} diff --git a/data/game/ho/honeywood.json b/data/game/ho/honeywood.json new file mode 100644 index 000000000000..9cdcb743e0d5 --- /dev/null +++ b/data/game/ho/honeywood.json @@ -0,0 +1,8 @@ +{ + "slug": "honeywood", + "name": "Honeywood", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116854060" + ] +} diff --git a/data/game/ho/hopkins-fbi-2-don-t-cry-baby.json b/data/game/ho/hopkins-fbi-2-don-t-cry-baby.json new file mode 100644 index 000000000000..d7270b6b84cf --- /dev/null +++ b/data/game/ho/hopkins-fbi-2-don-t-cry-baby.json @@ -0,0 +1,11 @@ +{ + "slug": "hopkins-fbi-2-don-t-cry-baby", + "name": "Hopkins FBI 2: Don't Cry, Baby", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115113761" + ], + "platforms": [ + "Microsoft Windows" + ] +} diff --git a/data/game/ho/horizon-steel-frontiers.json b/data/game/ho/horizon-steel-frontiers.json new file mode 100644 index 000000000000..e84f3fd7864e --- /dev/null +++ b/data/game/ho/horizon-steel-frontiers.json @@ -0,0 +1,18 @@ +{ + "slug": "horizon-steel-frontiers", + "name": "Horizon Steel Frontiers", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136791182" + ], + "platforms": [ + "iOS", + "Microsoft Windows" + ], + "genres": [ + "massively multiplayer online role-playing game" + ], + "developers": [ + "NC" + ] +} diff --git a/data/game/ho/horizon-zero-dawn-complete-edition.json b/data/game/ho/horizon-zero-dawn-complete-edition.json new file mode 100644 index 000000000000..f55b9af261eb --- /dev/null +++ b/data/game/ho/horizon-zero-dawn-complete-edition.json @@ -0,0 +1,19 @@ +{ + "slug": "horizon-zero-dawn-complete-edition", + "name": "Horizon Zero Dawn Complete Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116771326" + ], + "release_date": "2020-08-07", + "platforms": [ + "PlayStation 4", + "Microsoft Windows" + ], + "developers": [ + "Guerrilla Games" + ], + "publishers": [ + "PlayStation PC LLC" + ] +} diff --git a/data/game/ho/horizon-zero-dawn-the-frozen-wilds.json b/data/game/ho/horizon-zero-dawn-the-frozen-wilds.json new file mode 100644 index 000000000000..c4eac9818dc4 --- /dev/null +++ b/data/game/ho/horizon-zero-dawn-the-frozen-wilds.json @@ -0,0 +1,22 @@ +{ + "slug": "horizon-zero-dawn-the-frozen-wilds", + "name": "Horizon Zero Dawn: The Frozen Wilds", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q48790334" + ], + "release_date": "2017-01-01", + "platforms": [ + "PlayStation 4" + ], + "genres": [ + "action-adventure game", + "action role-playing game" + ], + "developers": [ + "Guerrilla Games" + ], + "publishers": [ + "Sony Interactive Entertainment" + ] +} diff --git a/data/game/ho/hornets.json b/data/game/ho/hornets.json new file mode 100644 index 000000000000..f0b04f0c9a67 --- /dev/null +++ b/data/game/ho/hornets.json @@ -0,0 +1,20 @@ +{ + "slug": "hornets", + "name": "Hornets", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125112132" + ], + "release_date": "2015-04-20", + "platforms": [ + "macOS", + "web browser", + "Microsoft Windows" + ], + "developers": [ + "Kitty Horrorshow" + ], + "publishers": [ + "Kitty Horrorshow" + ] +} diff --git a/data/game/ho/horror-pack.json b/data/game/ho/horror-pack.json new file mode 100644 index 000000000000..4ce0cdbc4031 --- /dev/null +++ b/data/game/ho/horror-pack.json @@ -0,0 +1,12 @@ +{ + "slug": "horror-pack", + "name": "Horror Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60586780" + ], + "release_date": "2012-07-24", + "platforms": [ + "Microsoft Windows" + ] +} diff --git a/data/game/ho/horror-sports-pinball.json b/data/game/ho/horror-sports-pinball.json new file mode 100644 index 000000000000..5a446190c6f5 --- /dev/null +++ b/data/game/ho/horror-sports-pinball.json @@ -0,0 +1,15 @@ +{ + "slug": "horror-sports-pinball", + "name": "Horror & Sports Pinball", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110410493" + ], + "release_date": "2021-12-24", + "genres": [ + "pinball video game" + ], + "publishers": [ + "Super PowerUp Games" + ] +} diff --git a/data/game/ho/horror-tales-the-wine.json b/data/game/ho/horror-tales-the-wine.json new file mode 100644 index 000000000000..6b26c302bda3 --- /dev/null +++ b/data/game/ho/horror-tales-the-wine.json @@ -0,0 +1,22 @@ +{ + "slug": "horror-tales-the-wine", + "name": "HORROR TALES: The Wine", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111982645" + ], + "release_date": "2021-07-30", + "platforms": [ + "PlayStation 5", + "Microsoft Windows" + ], + "genres": [ + "adventure video game" + ], + "developers": [ + "Carlos Coronado" + ], + "publishers": [ + "Carlos Coronado" + ] +} diff --git a/data/game/ho/horse-armor-pack.json b/data/game/ho/horse-armor-pack.json new file mode 100644 index 000000000000..6935949d29fa --- /dev/null +++ b/data/game/ho/horse-armor-pack.json @@ -0,0 +1,15 @@ +{ + "slug": "horse-armor-pack", + "name": "Horse Armor Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115051311" + ], + "release_date": "2006-04-03", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Bethesda Softworks" + ] +} diff --git a/data/game/ho/horse-racing-machine.json b/data/game/ho/horse-racing-machine.json new file mode 100644 index 000000000000..be7535938249 --- /dev/null +++ b/data/game/ho/horse-racing-machine.json @@ -0,0 +1,8 @@ +{ + "slug": "horse-racing-machine", + "name": "Horse racing machine", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112889032" + ] +} diff --git a/data/game/ho/hot-coffee.json b/data/game/ho/hot-coffee.json new file mode 100644 index 000000000000..3fdb58721053 --- /dev/null +++ b/data/game/ho/hot-coffee.json @@ -0,0 +1,11 @@ +{ + "slug": "hot-coffee", + "name": "Hot Coffee", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q720367" + ], + "platforms": [ + "Microsoft Windows" + ] +} diff --git a/data/game/ho/hot-shot.json b/data/game/ho/hot-shot.json new file mode 100644 index 000000000000..2df297349b58 --- /dev/null +++ b/data/game/ho/hot-shot.json @@ -0,0 +1,8 @@ +{ + "slug": "hot-shot", + "name": "Hot Shot", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q128014888" + ] +} diff --git a/data/game/ho/hotline-miami-collection.json b/data/game/ho/hotline-miami-collection.json new file mode 100644 index 000000000000..d3103d4dc94b --- /dev/null +++ b/data/game/ho/hotline-miami-collection.json @@ -0,0 +1,8 @@ +{ + "slug": "hotline-miami-collection", + "name": "Hotline Miami Collection", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125208073" + ] +} diff --git a/data/game/ho/howl-q116873461.json b/data/game/ho/howl-q116873461.json new file mode 100644 index 000000000000..3040ec245111 --- /dev/null +++ b/data/game/ho/howl-q116873461.json @@ -0,0 +1,14 @@ +{ + "slug": "howl-q116873461", + "name": "Howl", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116873461" + ], + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "shooter game" + ] +} diff --git a/data/game/hu/human-fall-flat-4-pack.json b/data/game/hu/human-fall-flat-4-pack.json new file mode 100644 index 000000000000..a35fbe0121e8 --- /dev/null +++ b/data/game/hu/human-fall-flat-4-pack.json @@ -0,0 +1,8 @@ +{ + "slug": "human-fall-flat-4-pack", + "name": "Human: Fall Flat 4-Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q78671490" + ] +} diff --git a/data/game/hu/human-fall-flat-q117357432.json b/data/game/hu/human-fall-flat-q117357432.json new file mode 100644 index 000000000000..92cab1880068 --- /dev/null +++ b/data/game/hu/human-fall-flat-q117357432.json @@ -0,0 +1,13 @@ +{ + "slug": "human-fall-flat-q117357432", + "name": "Human: Fall Flat+", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117357432" + ], + "release_date": "2023-03-31", + "platforms": [ + "iPadOS", + "iOS" + ] +} diff --git a/data/game/hu/humankind-cultures-of-africa.json b/data/game/hu/humankind-cultures-of-africa.json new file mode 100644 index 000000000000..a368f760684e --- /dev/null +++ b/data/game/hu/humankind-cultures-of-africa.json @@ -0,0 +1,18 @@ +{ + "slug": "humankind-cultures-of-africa", + "name": "Humankind: Cultures of Africa", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110728520" + ], + "release_date": "2022-01-20", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "strategy video game" + ], + "publishers": [ + "Sega" + ] +} diff --git a/data/game/hu/humble-indie-bundle-2.json b/data/game/hu/humble-indie-bundle-2.json new file mode 100644 index 000000000000..8849350e5957 --- /dev/null +++ b/data/game/hu/humble-indie-bundle-2.json @@ -0,0 +1,11 @@ +{ + "slug": "humble-indie-bundle-2", + "name": "Humble Indie Bundle 2", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q41991546" + ], + "publishers": [ + "Humble Bundle, Inc." + ] +} diff --git a/data/game/hu/humble-indie-bundle.json b/data/game/hu/humble-indie-bundle.json new file mode 100644 index 000000000000..5adf3169d4be --- /dev/null +++ b/data/game/hu/humble-indie-bundle.json @@ -0,0 +1,11 @@ +{ + "slug": "humble-indie-bundle", + "name": "Humble Indie Bundle", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q41972688" + ], + "publishers": [ + "Humble Bundle, Inc." + ] +} diff --git a/data/game/hu/huniepop-deluxe-edition-upgrade.json b/data/game/hu/huniepop-deluxe-edition-upgrade.json new file mode 100644 index 000000000000..103a18aabc4f --- /dev/null +++ b/data/game/hu/huniepop-deluxe-edition-upgrade.json @@ -0,0 +1,24 @@ +{ + "slug": "huniepop-deluxe-edition-upgrade", + "name": "HuniePop - Deluxe Edition Upgrade", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q78162382" + ], + "release_date": "2015-01-19", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "dating sim", + "erotic video game", + "match-three video game" + ], + "developers": [ + "HuniePotDev" + ], + "publishers": [ + "HuniePotDev" + ] +} diff --git a/data/game/hu/huniepop-deluxe-edition.json b/data/game/hu/huniepop-deluxe-edition.json new file mode 100644 index 000000000000..e1a95e57091e --- /dev/null +++ b/data/game/hu/huniepop-deluxe-edition.json @@ -0,0 +1,24 @@ +{ + "slug": "huniepop-deluxe-edition", + "name": "HuniePop Deluxe Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q78163018" + ], + "release_date": "2018-11-01", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "dating sim", + "erotic video game", + "match-three video game" + ], + "developers": [ + "HuniePotDev" + ], + "publishers": [ + "HuniePotDev" + ] +} diff --git a/data/game/hu/huniepop-official-digital-art-collection.json b/data/game/hu/huniepop-official-digital-art-collection.json new file mode 100644 index 000000000000..ae40b4728840 --- /dev/null +++ b/data/game/hu/huniepop-official-digital-art-collection.json @@ -0,0 +1,24 @@ +{ + "slug": "huniepop-official-digital-art-collection", + "name": "HuniePop Official Digital Art Collection", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q78162835" + ], + "release_date": "2015-02-18", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "dating sim", + "erotic video game", + "match-three video game" + ], + "developers": [ + "HuniePotDev" + ], + "publishers": [ + "HuniePotDev" + ] +} diff --git a/data/game/hy/hyper-rush.json b/data/game/hy/hyper-rush.json new file mode 100644 index 000000000000..42e758d0b419 --- /dev/null +++ b/data/game/hy/hyper-rush.json @@ -0,0 +1,8 @@ +{ + "slug": "hyper-rush", + "name": "HYPER RUSH", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11326118" + ] +} diff --git a/data/game/hy/hypertext-hotel.json b/data/game/hy/hypertext-hotel.json new file mode 100644 index 000000000000..f9e798388113 --- /dev/null +++ b/data/game/hy/hypertext-hotel.json @@ -0,0 +1,9 @@ +{ + "slug": "hypertext-hotel", + "name": "Hypertext Hotel", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q132197684" + ], + "release_date": "1992-01-01" +} diff --git a/data/game/i-/i-g-i-origins.json b/data/game/i-/i-g-i-origins.json new file mode 100644 index 000000000000..9a6d947a0492 --- /dev/null +++ b/data/game/i-/i-g-i-origins.json @@ -0,0 +1,17 @@ +{ + "slug": "i-g-i-origins", + "name": "I.G.I. Origins", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120702822" + ], + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "tactical shooter" + ], + "developers": [ + "Antimatter Games" + ] +} diff --git a/data/game/i-/i-gladiator-kolhid-sword.json b/data/game/i-/i-gladiator-kolhid-sword.json new file mode 100644 index 000000000000..2019612c2dc5 --- /dev/null +++ b/data/game/i-/i-gladiator-kolhid-sword.json @@ -0,0 +1,15 @@ +{ + "slug": "i-gladiator-kolhid-sword", + "name": "I, Gladiator - Kolhid Sword", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120983437" + ], + "release_date": "2015-06-02", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Steel Monkeys" + ] +} diff --git a/data/game/i-/i-gladiator-soundtracks.json b/data/game/i-/i-gladiator-soundtracks.json new file mode 100644 index 000000000000..84cadc628eee --- /dev/null +++ b/data/game/i-/i-gladiator-soundtracks.json @@ -0,0 +1,15 @@ +{ + "slug": "i-gladiator-soundtracks", + "name": "I, Gladiator - Soundtracks", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120983440" + ], + "release_date": "2015-04-16", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Steel Monkeys" + ] +} diff --git a/data/game/i-/i-just-want-to-be-single-season-one.json b/data/game/i-/i-just-want-to-be-single-season-one.json new file mode 100644 index 000000000000..788e1c7810dd --- /dev/null +++ b/data/game/i-/i-just-want-to-be-single-season-one.json @@ -0,0 +1,14 @@ +{ + "slug": "i-just-want-to-be-single-season-one", + "name": "I Just Want to be Single!! Season One", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q132731625" + ], + "platforms": [ + "personal computer" + ], + "genres": [ + "dating sim" + ] +} diff --git a/data/game/i-/i-mode-mo-issyo.json b/data/game/i-/i-mode-mo-issyo.json new file mode 100644 index 000000000000..dd564cba662c --- /dev/null +++ b/data/game/i-/i-mode-mo-issyo.json @@ -0,0 +1,9 @@ +{ + "slug": "i-mode-mo-issyo", + "name": "i-mode mo issyo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11224979" + ], + "release_date": "2001-05-27" +} diff --git a/data/game/i-/i-smoke-weed.json b/data/game/i-/i-smoke-weed.json new file mode 100644 index 000000000000..c35d72fd7a41 --- /dev/null +++ b/data/game/i-/i-smoke-weed.json @@ -0,0 +1,23 @@ +{ + "slug": "i-smoke-weed", + "name": "I smoke weed", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130320120" + ], + "release_date": "2017-09-28", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "adventure video game", + "action game", + "casual game" + ], + "developers": [ + "PinkySwear" + ], + "publishers": [ + "PinkySwear" + ] +} diff --git a/data/game/i-/i-will-be-there-demo.json b/data/game/i-/i-will-be-there-demo.json new file mode 100644 index 000000000000..d43642cb2897 --- /dev/null +++ b/data/game/i-/i-will-be-there-demo.json @@ -0,0 +1,23 @@ +{ + "slug": "i-will-be-there-demo", + "name": "I Will Be There Demo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122912569" + ], + "release_date": "2022-07-28", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "role-playing video game", + "zombie video game" + ], + "developers": [ + "Tayfun Tuna" + ], + "publishers": [ + "Tayfun Tuna" + ] +} diff --git a/data/game/i-/i-will-be-there-original-soundtrack.json b/data/game/i-/i-will-be-there-original-soundtrack.json new file mode 100644 index 000000000000..50c6e048c9ff --- /dev/null +++ b/data/game/i-/i-will-be-there-original-soundtrack.json @@ -0,0 +1,16 @@ +{ + "slug": "i-will-be-there-original-soundtrack", + "name": "I WILL BE THERE - Original Soundtrack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122902689" + ], + "release_date": "2023-02-14", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "video game music" + ] +} diff --git a/data/game/i-/i-will-be-there-ost-edition.json b/data/game/i-/i-will-be-there-ost-edition.json new file mode 100644 index 000000000000..07e00759f3b6 --- /dev/null +++ b/data/game/i-/i-will-be-there-ost-edition.json @@ -0,0 +1,23 @@ +{ + "slug": "i-will-be-there-ost-edition", + "name": "I WILL BE THERE - OST Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122912653" + ], + "release_date": "2023-02-15", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "role-playing video game", + "zombie video game" + ], + "developers": [ + "Tayfun Tuna" + ], + "publishers": [ + "Tayfun Tuna" + ] +} diff --git a/data/game/ic/icewind-dale-heart-of-winter-trials-of-the-luremaster.json b/data/game/ic/icewind-dale-heart-of-winter-trials-of-the-luremaster.json new file mode 100644 index 000000000000..66f59bc6a326 --- /dev/null +++ b/data/game/ic/icewind-dale-heart-of-winter-trials-of-the-luremaster.json @@ -0,0 +1,8 @@ +{ + "slug": "icewind-dale-heart-of-winter-trials-of-the-luremaster", + "name": "Icewind Dale: Heart of Winter - Trials of the Luremaster", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120885570" + ] +} diff --git a/data/game/ic/icewind-dale-heart-of-winter.json b/data/game/ic/icewind-dale-heart-of-winter.json new file mode 100644 index 000000000000..ccdf70cd5bef --- /dev/null +++ b/data/game/ic/icewind-dale-heart-of-winter.json @@ -0,0 +1,21 @@ +{ + "slug": "icewind-dale-heart-of-winter", + "name": "Icewind Dale: Heart of Winter", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2634084" + ], + "release_date": "2001-01-01", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "role-playing video game" + ], + "developers": [ + "Black Isle Studios" + ], + "publishers": [ + "Interplay Entertainment" + ] +} diff --git a/data/game/il/il-2-sturmovik-1946.json b/data/game/il/il-2-sturmovik-1946.json new file mode 100644 index 000000000000..1b51afea89ff --- /dev/null +++ b/data/game/il/il-2-sturmovik-1946.json @@ -0,0 +1,18 @@ +{ + "slug": "il-2-sturmovik-1946", + "name": "IL-2 Sturmovik: 1946", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5971671" + ], + "release_date": "2006-12-08", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "combat flight simulator game" + ], + "developers": [ + "1C Company" + ] +} diff --git a/data/game/il/il-2-sturmovik-forgotten-battles-ace-expansion-pack.json b/data/game/il/il-2-sturmovik-forgotten-battles-ace-expansion-pack.json new file mode 100644 index 000000000000..c7016067c625 --- /dev/null +++ b/data/game/il/il-2-sturmovik-forgotten-battles-ace-expansion-pack.json @@ -0,0 +1,8 @@ +{ + "slug": "il-2-sturmovik-forgotten-battles-ace-expansion-pack", + "name": "IL-2 Sturmovik: Forgotten Battles - Ace Expansion Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60677555" + ] +} diff --git a/data/game/im/imperial-saga.json b/data/game/im/imperial-saga.json new file mode 100644 index 000000000000..3032ea086c9a --- /dev/null +++ b/data/game/im/imperial-saga.json @@ -0,0 +1,8 @@ +{ + "slug": "imperial-saga", + "name": "Imperial SaGa", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22127610" + ] +} diff --git a/data/game/in/in-harm-s-way-q17513624.json b/data/game/in/in-harm-s-way-q17513624.json new file mode 100644 index 000000000000..8535aec498bf --- /dev/null +++ b/data/game/in/in-harm-s-way-q17513624.json @@ -0,0 +1,12 @@ +{ + "slug": "in-harm-s-way-q17513624", + "name": "In Harm's Way", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17513624" + ], + "release_date": "2014-05-13", + "platforms": [ + "PlayStation 4" + ] +} diff --git a/data/game/in/in-the-valley-of-gods.json b/data/game/in/in-the-valley-of-gods.json new file mode 100644 index 000000000000..f993b8fca23b --- /dev/null +++ b/data/game/in/in-the-valley-of-gods.json @@ -0,0 +1,21 @@ +{ + "slug": "in-the-valley-of-gods", + "name": "In the Valley of Gods", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q55662705" + ], + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "adventure video game" + ], + "developers": [ + "Campo Santo" + ], + "publishers": [ + "Campo Santo" + ] +} diff --git a/data/game/in/inazuma-eleven-1-2-3-end-mamoru-densetsu.json b/data/game/in/inazuma-eleven-1-2-3-end-mamoru-densetsu.json new file mode 100644 index 000000000000..58f9db1fd4cc --- /dev/null +++ b/data/game/in/inazuma-eleven-1-2-3-end-mamoru-densetsu.json @@ -0,0 +1,22 @@ +{ + "slug": "inazuma-eleven-1-2-3-end-mamoru-densetsu", + "name": "Inazuma Eleven 1-2-3!! Endō Mamoru densetsu", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q539763" + ], + "release_date": "2012-12-27", + "platforms": [ + "Nintendo 3DS" + ], + "genres": [ + "role-playing video game", + "association football video game" + ], + "developers": [ + "Level-5" + ], + "publishers": [ + "Level-5" + ] +} diff --git a/data/game/in/incubation-mission-pack.json b/data/game/in/incubation-mission-pack.json new file mode 100644 index 000000000000..1edd8ab01a96 --- /dev/null +++ b/data/game/in/incubation-mission-pack.json @@ -0,0 +1,8 @@ +{ + "slug": "incubation-mission-pack", + "name": "Incubation: Mission Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q129196946" + ] +} diff --git a/data/game/in/indie-royale.json b/data/game/in/indie-royale.json new file mode 100644 index 000000000000..9048579c3a4e --- /dev/null +++ b/data/game/in/indie-royale.json @@ -0,0 +1,12 @@ +{ + "slug": "indie-royale", + "name": "Indie Royale", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6024495" + ], + "platforms": [ + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/game/in/industry-giant-expansion-set.json b/data/game/in/industry-giant-expansion-set.json new file mode 100644 index 000000000000..35dc15278f60 --- /dev/null +++ b/data/game/in/industry-giant-expansion-set.json @@ -0,0 +1,8 @@ +{ + "slug": "industry-giant-expansion-set", + "name": "Industry Giant: Expansion Set", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q119847853" + ] +} diff --git a/data/game/in/industry-giant-ii-1980-2020.json b/data/game/in/industry-giant-ii-1980-2020.json new file mode 100644 index 000000000000..332248b9f6e7 --- /dev/null +++ b/data/game/in/industry-giant-ii-1980-2020.json @@ -0,0 +1,14 @@ +{ + "slug": "industry-giant-ii-1980-2020", + "name": "Industry Giant II: 1980-2020", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137909408" + ], + "developers": [ + "JoWooD Ebensee" + ], + "publishers": [ + "JoWooD Entertainment" + ] +} diff --git a/data/game/in/infinite-breakout-ds.json b/data/game/in/infinite-breakout-ds.json new file mode 100644 index 000000000000..af9edd2cb2c1 --- /dev/null +++ b/data/game/in/infinite-breakout-ds.json @@ -0,0 +1,20 @@ +{ + "slug": "infinite-breakout-ds", + "name": "Infinite Breakout DS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123177951" + ], + "platforms": [ + "Nintendo DS" + ], + "genres": [ + "Breakout clone" + ], + "developers": [ + "Raúl Bojalil" + ], + "publishers": [ + "Raúl Bojalil" + ] +} diff --git a/data/game/in/infinity-the-quest-for-earth.json b/data/game/in/infinity-the-quest-for-earth.json new file mode 100644 index 000000000000..127bd42053e6 --- /dev/null +++ b/data/game/in/infinity-the-quest-for-earth.json @@ -0,0 +1,21 @@ +{ + "slug": "infinity-the-quest-for-earth", + "name": "Infinity: The Quest for Earth", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q104884455" + ], + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "massively multiplayer online game", + "space trading and combat game" + ], + "developers": [ + "I-Novae Studios" + ], + "publishers": [ + "I-Novae Studios" + ] +} diff --git a/data/game/in/initial-d-arcade-stage-zero.json b/data/game/in/initial-d-arcade-stage-zero.json new file mode 100644 index 000000000000..d826e28b2b6e --- /dev/null +++ b/data/game/in/initial-d-arcade-stage-zero.json @@ -0,0 +1,12 @@ +{ + "slug": "initial-d-arcade-stage-zero", + "name": "Initial D Arcade Stage Zero", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127514753" + ], + "release_date": "2017-03-07", + "genres": [ + "racing video game" + ] +} diff --git a/data/game/in/initial-d-the-arcade.json b/data/game/in/initial-d-the-arcade.json new file mode 100644 index 000000000000..1be53d60349d --- /dev/null +++ b/data/game/in/initial-d-the-arcade.json @@ -0,0 +1,12 @@ +{ + "slug": "initial-d-the-arcade", + "name": "Initial D The Arcade", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127514768" + ], + "release_date": "2021-02-25", + "genres": [ + "racing video game" + ] +} diff --git a/data/game/in/initiation-station.json b/data/game/in/initiation-station.json new file mode 100644 index 000000000000..78c19b4dca84 --- /dev/null +++ b/data/game/in/initiation-station.json @@ -0,0 +1,13 @@ +{ + "slug": "initiation-station", + "name": "Initiation Station", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60607908" + ], + "release_date": "2011-11-01", + "platforms": [ + "PlayStation 3", + "Microsoft Windows" + ] +} diff --git a/data/game/in/inks-q107147746.json b/data/game/in/inks-q107147746.json new file mode 100644 index 000000000000..112c5711ff82 --- /dev/null +++ b/data/game/in/inks-q107147746.json @@ -0,0 +1,22 @@ +{ + "slug": "inks-q107147746", + "name": "INKS.+", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107147746" + ], + "release_date": "2021-06-25", + "platforms": [ + "iPadOS", + "iOS" + ], + "genres": [ + "pinball video game" + ], + "developers": [ + "State of Play" + ], + "publishers": [ + "State of Play" + ] +} diff --git a/data/game/in/instant-indie-collection.json b/data/game/in/instant-indie-collection.json new file mode 100644 index 000000000000..cc7cac272ae7 --- /dev/null +++ b/data/game/in/instant-indie-collection.json @@ -0,0 +1,8 @@ +{ + "slug": "instant-indie-collection", + "name": "Instant Indie Collection", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q90408790" + ] +} diff --git a/data/game/in/insurgency-modern-infantry-combat.json b/data/game/in/insurgency-modern-infantry-combat.json new file mode 100644 index 000000000000..04b65533bc2d --- /dev/null +++ b/data/game/in/insurgency-modern-infantry-combat.json @@ -0,0 +1,19 @@ +{ + "slug": "insurgency-modern-infantry-combat", + "name": "Insurgency: Modern Infantry Combat", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2267797" + ], + "release_date": "2007-07-01", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "first-person shooter" + ], + "publishers": [ + "New World Interactive" + ] +} diff --git a/data/game/in/interactive-web-stories.json b/data/game/in/interactive-web-stories.json new file mode 100644 index 000000000000..2504a4dba85e --- /dev/null +++ b/data/game/in/interactive-web-stories.json @@ -0,0 +1,8 @@ +{ + "slug": "interactive-web-stories", + "name": "Interactive web stories", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6045431" + ] +} diff --git a/data/game/in/international-doom.json b/data/game/in/international-doom.json new file mode 100644 index 000000000000..c45dce73e3ff --- /dev/null +++ b/data/game/in/international-doom.json @@ -0,0 +1,8 @@ +{ + "slug": "international-doom", + "name": "International Doom", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124428999" + ] +} diff --git a/data/game/in/internet-diplomacy.json b/data/game/in/internet-diplomacy.json new file mode 100644 index 000000000000..1cce4f126813 --- /dev/null +++ b/data/game/in/internet-diplomacy.json @@ -0,0 +1,8 @@ +{ + "slug": "internet-diplomacy", + "name": "Internet Diplomacy", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16995030" + ] +} diff --git a/data/game/in/interstate-76-nitro-pack.json b/data/game/in/interstate-76-nitro-pack.json new file mode 100644 index 000000000000..c13e8567f1c8 --- /dev/null +++ b/data/game/in/interstate-76-nitro-pack.json @@ -0,0 +1,18 @@ +{ + "slug": "interstate-76-nitro-pack", + "name": "Interstate '76 Nitro Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6056800" + ], + "release_date": "1997-01-01", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "vehicular combat game" + ], + "developers": [ + "Activision" + ] +} diff --git a/data/game/in/invader-zim-dib-s-nanochase.json b/data/game/in/invader-zim-dib-s-nanochase.json new file mode 100644 index 000000000000..fbcb879b2026 --- /dev/null +++ b/data/game/in/invader-zim-dib-s-nanochase.json @@ -0,0 +1,9 @@ +{ + "slug": "invader-zim-dib-s-nanochase", + "name": "Invader Zim: Dib's Nanochase", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q51248073" + ], + "release_date": "2001-01-01" +} diff --git a/data/game/in/invader-zim-in-sanitation.json b/data/game/in/invader-zim-in-sanitation.json new file mode 100644 index 000000000000..1d7f2e42a822 --- /dev/null +++ b/data/game/in/invader-zim-in-sanitation.json @@ -0,0 +1,9 @@ +{ + "slug": "invader-zim-in-sanitation", + "name": "Invader Zim: In-Sanitation", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q51248279" + ], + "release_date": "2001-01-01" +} diff --git a/data/game/in/invasion-q63247569.json b/data/game/in/invasion-q63247569.json new file mode 100644 index 000000000000..4326a68decea --- /dev/null +++ b/data/game/in/invasion-q63247569.json @@ -0,0 +1,8 @@ +{ + "slug": "invasion-q63247569", + "name": "Invasion", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63247569" + ] +} diff --git a/data/game/in/invincible-pack.json b/data/game/in/invincible-pack.json new file mode 100644 index 000000000000..589f6fa22cc5 --- /dev/null +++ b/data/game/in/invincible-pack.json @@ -0,0 +1,12 @@ +{ + "slug": "invincible-pack", + "name": "Invincible Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60586778" + ], + "release_date": "2011-11-15", + "platforms": [ + "Microsoft Windows" + ] +} diff --git a/data/game/io/io-q122639777.json b/data/game/io/io-q122639777.json new file mode 100644 index 000000000000..127192d73573 --- /dev/null +++ b/data/game/io/io-q122639777.json @@ -0,0 +1,11 @@ +{ + "slug": "io-q122639777", + "name": "Io", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122639777" + ], + "genres": [ + "platformer" + ] +} diff --git a/data/game/io/ioquake3.json b/data/game/io/ioquake3.json new file mode 100644 index 000000000000..7acc88538023 --- /dev/null +++ b/data/game/io/ioquake3.json @@ -0,0 +1,13 @@ +{ + "slug": "ioquake3", + "name": "ioquake3", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q307516" + ], + "platforms": [ + "Classic Mac OS", + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/game/ir/iron-harvest-complete-edition.json b/data/game/ir/iron-harvest-complete-edition.json new file mode 100644 index 000000000000..8742b401b69e --- /dev/null +++ b/data/game/ir/iron-harvest-complete-edition.json @@ -0,0 +1,21 @@ +{ + "slug": "iron-harvest-complete-edition", + "name": "Iron Harvest Complete Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109417802" + ], + "release_date": "2021-10-26", + "platforms": [ + "Xbox Series X and Series S" + ], + "genres": [ + "real-time strategy" + ], + "developers": [ + "King Art Games" + ], + "publishers": [ + "Plaion" + ] +} diff --git a/data/game/ir/iron-marines-q118235269.json b/data/game/ir/iron-marines-q118235269.json new file mode 100644 index 000000000000..5ef0afa4c6be --- /dev/null +++ b/data/game/ir/iron-marines-q118235269.json @@ -0,0 +1,14 @@ +{ + "slug": "iron-marines-q118235269", + "name": "Iron Marines+", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118235269" + ], + "release_date": "2023-05-04", + "platforms": [ + "iPadOS", + "iOS", + "macOS" + ] +} diff --git a/data/game/is/island-royale.json b/data/game/is/island-royale.json new file mode 100644 index 000000000000..ca21d67442d4 --- /dev/null +++ b/data/game/is/island-royale.json @@ -0,0 +1,12 @@ +{ + "slug": "island-royale", + "name": "Island Royale", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q55422138" + ], + "platforms": [ + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/game/is/israeli-palestinian-conflict-in-video-games.json b/data/game/is/israeli-palestinian-conflict-in-video-games.json new file mode 100644 index 000000000000..43c4e8052643 --- /dev/null +++ b/data/game/is/israeli-palestinian-conflict-in-video-games.json @@ -0,0 +1,8 @@ +{ + "slug": "israeli-palestinian-conflict-in-video-games", + "name": "Israeli–Palestinian conflict in video games", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17513864" + ] +} diff --git a/data/game/iv/ivry-driver-for-steamvr-apple-vision-pro-premium-edition.json b/data/game/iv/ivry-driver-for-steamvr-apple-vision-pro-premium-edition.json new file mode 100644 index 000000000000..8fe6150510a3 --- /dev/null +++ b/data/game/iv/ivry-driver-for-steamvr-apple-vision-pro-premium-edition.json @@ -0,0 +1,17 @@ +{ + "slug": "ivry-driver-for-steamvr-apple-vision-pro-premium-edition", + "name": "iVRy Driver for SteamVR (Apple Vision Pro Premium Edition)", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130436737" + ], + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Mediator Software" + ], + "publishers": [ + "Mediator Software" + ] +} diff --git a/data/game/iv/ivry-driver-for-steamvr-gearvr-oculus-premium-edition.json b/data/game/iv/ivry-driver-for-steamvr-gearvr-oculus-premium-edition.json new file mode 100644 index 000000000000..ef73d9dd8105 --- /dev/null +++ b/data/game/iv/ivry-driver-for-steamvr-gearvr-oculus-premium-edition.json @@ -0,0 +1,18 @@ +{ + "slug": "ivry-driver-for-steamvr-gearvr-oculus-premium-edition", + "name": "iVRy Driver for SteamVR (GearVR/Oculus Premium Edition)", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130436863" + ], + "release_date": "2020-12-31", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Mediator Software" + ], + "publishers": [ + "Mediator Software" + ] +} diff --git a/data/game/iv/ivry-driver-for-steamvr-mobile-device-premium-edition.json b/data/game/iv/ivry-driver-for-steamvr-mobile-device-premium-edition.json new file mode 100644 index 000000000000..3de68346f99e --- /dev/null +++ b/data/game/iv/ivry-driver-for-steamvr-mobile-device-premium-edition.json @@ -0,0 +1,18 @@ +{ + "slug": "ivry-driver-for-steamvr-mobile-device-premium-edition", + "name": "iVRy Driver for SteamVR (Mobile Device Premium Edition)", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130436792" + ], + "release_date": "2019-01-23", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Mediator Software" + ], + "publishers": [ + "Mediator Software" + ] +} diff --git a/data/game/iv/ivry-driver-for-steamvr-pico-premium-edition.json b/data/game/iv/ivry-driver-for-steamvr-pico-premium-edition.json new file mode 100644 index 000000000000..1e508fbe64c9 --- /dev/null +++ b/data/game/iv/ivry-driver-for-steamvr-pico-premium-edition.json @@ -0,0 +1,18 @@ +{ + "slug": "ivry-driver-for-steamvr-pico-premium-edition", + "name": "iVRy Driver for SteamVR (Pico Premium Edition)", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130436765" + ], + "release_date": "2023-03-01", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Mediator Software" + ], + "publishers": [ + "Mediator Software" + ] +} diff --git a/data/game/iv/ivry-driver-for-steamvr-psvr-lite-edition.json b/data/game/iv/ivry-driver-for-steamvr-psvr-lite-edition.json new file mode 100644 index 000000000000..61e0d4051fad --- /dev/null +++ b/data/game/iv/ivry-driver-for-steamvr-psvr-lite-edition.json @@ -0,0 +1,18 @@ +{ + "slug": "ivry-driver-for-steamvr-psvr-lite-edition", + "name": "iVRy Driver for SteamVR (PSVR Lite Edition)", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130436777" + ], + "release_date": "2019-01-23", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Mediator Software" + ], + "publishers": [ + "Mediator Software" + ] +} diff --git a/data/game/iv/ivry-driver-for-steamvr-psvr-premium-edition.json b/data/game/iv/ivry-driver-for-steamvr-psvr-premium-edition.json new file mode 100644 index 000000000000..43b4194aefb0 --- /dev/null +++ b/data/game/iv/ivry-driver-for-steamvr-psvr-premium-edition.json @@ -0,0 +1,18 @@ +{ + "slug": "ivry-driver-for-steamvr-psvr-premium-edition", + "name": "iVRy Driver for SteamVR (PSVR Premium Edition)", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130436781" + ], + "release_date": "2019-01-23", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Mediator Software" + ], + "publishers": [ + "Mediator Software" + ] +} diff --git a/data/game/iv/ivry-for-steamvr-android-daydream-app-installer.json b/data/game/iv/ivry-for-steamvr-android-daydream-app-installer.json new file mode 100644 index 000000000000..aa1d7d4f0dd7 --- /dev/null +++ b/data/game/iv/ivry-for-steamvr-android-daydream-app-installer.json @@ -0,0 +1,18 @@ +{ + "slug": "ivry-for-steamvr-android-daydream-app-installer", + "name": "iVRy for SteamVR (Android/Daydream App Installer)", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130436862" + ], + "release_date": "2022-06-10", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Mediator Software" + ], + "publishers": [ + "Mediator Software" + ] +} diff --git a/data/game/iv/ivry-for-steamvr-gearvr-oculus-app-installer.json b/data/game/iv/ivry-for-steamvr-gearvr-oculus-app-installer.json new file mode 100644 index 000000000000..d9ad4f23e7ad --- /dev/null +++ b/data/game/iv/ivry-for-steamvr-gearvr-oculus-app-installer.json @@ -0,0 +1,18 @@ +{ + "slug": "ivry-for-steamvr-gearvr-oculus-app-installer", + "name": "iVRy for SteamVR (GearVR/Oculus App Installer)", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130436860" + ], + "release_date": "2020-12-31", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Mediator Software" + ], + "publishers": [ + "Mediator Software" + ] +} diff --git a/data/game/iv/ivry-for-steamvr-pico-app-installer.json b/data/game/iv/ivry-for-steamvr-pico-app-installer.json new file mode 100644 index 000000000000..1c6ca986a1f5 --- /dev/null +++ b/data/game/iv/ivry-for-steamvr-pico-app-installer.json @@ -0,0 +1,18 @@ +{ + "slug": "ivry-for-steamvr-pico-app-installer", + "name": "iVRy for SteamVR (Pico App Installer)", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130436769" + ], + "release_date": "2023-03-01", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Mediator Software" + ], + "publishers": [ + "Mediator Software" + ] +} diff --git a/data/game/iv/ivry-gearvr-system-files-installer.json b/data/game/iv/ivry-gearvr-system-files-installer.json new file mode 100644 index 000000000000..18281d7cf646 --- /dev/null +++ b/data/game/iv/ivry-gearvr-system-files-installer.json @@ -0,0 +1,18 @@ +{ + "slug": "ivry-gearvr-system-files-installer", + "name": "iVRy GearVR System Files Installer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130443417" + ], + "release_date": "2024-10-06", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Mediator Software" + ], + "publishers": [ + "Mediator Software" + ] +} diff --git a/data/game/iv/ivry-monado-tracker-for-steamvr.json b/data/game/iv/ivry-monado-tracker-for-steamvr.json new file mode 100644 index 000000000000..240fd45b673d --- /dev/null +++ b/data/game/iv/ivry-monado-tracker-for-steamvr.json @@ -0,0 +1,18 @@ +{ + "slug": "ivry-monado-tracker-for-steamvr", + "name": "IVRy Monado Tracker for SteamVR", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130436771" + ], + "release_date": "2023-03-12", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Mediator Software" + ], + "publishers": [ + "Mediator Software" + ] +} diff --git a/data/game/iv/ivry-psmoveservice-driver-for-steamvr.json b/data/game/iv/ivry-psmoveservice-driver-for-steamvr.json new file mode 100644 index 000000000000..8d5f37d02f3c --- /dev/null +++ b/data/game/iv/ivry-psmoveservice-driver-for-steamvr.json @@ -0,0 +1,18 @@ +{ + "slug": "ivry-psmoveservice-driver-for-steamvr", + "name": "iVRy PSMoveService Driver for SteamVR", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130436821" + ], + "release_date": "2020-02-29", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Mediator Software" + ], + "publishers": [ + "Mediator Software" + ] +} diff --git a/data/game/iv/ivy-park.json b/data/game/iv/ivy-park.json new file mode 100644 index 000000000000..545aff6e4e3c --- /dev/null +++ b/data/game/iv/ivy-park.json @@ -0,0 +1,9 @@ +{ + "slug": "ivy-park", + "name": "Ivy Park", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112582102" + ], + "release_date": "2013-04-04" +} diff --git a/data/game/ix/ixion-saga.json b/data/game/ix/ixion-saga.json new file mode 100644 index 000000000000..5b82f5f399f7 --- /dev/null +++ b/data/game/ix/ixion-saga.json @@ -0,0 +1,8 @@ +{ + "slug": "ixion-saga", + "name": "Ixion Saga", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140472087" + ] +} diff --git a/data/game/ja/jack-in-a-castle-demo.json b/data/game/ja/jack-in-a-castle-demo.json new file mode 100644 index 000000000000..80825af39692 --- /dev/null +++ b/data/game/ja/jack-in-a-castle-demo.json @@ -0,0 +1,23 @@ +{ + "slug": "jack-in-a-castle-demo", + "name": "Jack-In-A-Castle Demo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123158329" + ], + "release_date": "2019-05-10", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "visual novel", + "Boys' Love game" + ], + "developers": [ + "Nemlei" + ], + "publishers": [ + "Nemlei" + ] +} diff --git a/data/game/ja/jagged-alliance-1-gold-edition.json b/data/game/ja/jagged-alliance-1-gold-edition.json new file mode 100644 index 000000000000..d05e073cdd5b --- /dev/null +++ b/data/game/ja/jagged-alliance-1-gold-edition.json @@ -0,0 +1,16 @@ +{ + "slug": "jagged-alliance-1-gold-edition", + "name": "Jagged Alliance 1: Gold Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122307685" + ], + "release_date": "1994-06-02", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "publishers": [ + "THQ Nordic" + ] +} diff --git a/data/game/ja/jagged-alliance-2-gold.json b/data/game/ja/jagged-alliance-2-gold.json new file mode 100644 index 000000000000..73aaa8f0e2bd --- /dev/null +++ b/data/game/ja/jagged-alliance-2-gold.json @@ -0,0 +1,8 @@ +{ + "slug": "jagged-alliance-2-gold", + "name": "Jagged Alliance 2: Gold", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130570490" + ] +} diff --git a/data/game/ja/jagged-alliance-world.json b/data/game/ja/jagged-alliance-world.json new file mode 100644 index 000000000000..55781f11a50f --- /dev/null +++ b/data/game/ja/jagged-alliance-world.json @@ -0,0 +1,8 @@ +{ + "slug": "jagged-alliance-world", + "name": "Jagged Alliance World", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130570496" + ] +} diff --git a/data/game/ja/jaguar-doom.json b/data/game/ja/jaguar-doom.json new file mode 100644 index 000000000000..d6a0d3516887 --- /dev/null +++ b/data/game/ja/jaguar-doom.json @@ -0,0 +1,15 @@ +{ + "slug": "jaguar-doom", + "name": "Jaguar Doom", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120689576" + ], + "release_date": "1994-11-28", + "platforms": [ + "Atari Jaguar" + ], + "publishers": [ + "Atari Corporation" + ] +} diff --git a/data/game/ja/jailbreak-q97338690.json b/data/game/ja/jailbreak-q97338690.json new file mode 100644 index 000000000000..f947e64be63d --- /dev/null +++ b/data/game/ja/jailbreak-q97338690.json @@ -0,0 +1,14 @@ +{ + "slug": "jailbreak-q97338690", + "name": "Jailbreak", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q97338690" + ], + "release_date": "2017-01-06", + "platforms": [ + "iOS", + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/game/ja/jak-and-daxter-collection.json b/data/game/ja/jak-and-daxter-collection.json new file mode 100644 index 000000000000..d3982c08c03c --- /dev/null +++ b/data/game/ja/jak-and-daxter-collection.json @@ -0,0 +1,22 @@ +{ + "slug": "jak-and-daxter-collection", + "name": "Jak and Daxter Collection", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q15141672" + ], + "release_date": "2012-02-07", + "platforms": [ + "PlayStation Vita", + "PlayStation 3" + ], + "genres": [ + "platformer" + ], + "developers": [ + "Naughty Dog" + ], + "publishers": [ + "Sony Interactive Entertainment" + ] +} diff --git a/data/game/ja/jampack.json b/data/game/ja/jampack.json new file mode 100644 index 000000000000..765ffbc2859f --- /dev/null +++ b/data/game/ja/jampack.json @@ -0,0 +1,14 @@ +{ + "slug": "jampack", + "name": "Jampack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6148143" + ], + "developers": [ + "Sony Group" + ], + "publishers": [ + "Ingram Entertainment Holdings Inc." + ] +} diff --git a/data/game/ja/japanese-nintendo-ds-release-of-chrono-trigger.json b/data/game/ja/japanese-nintendo-ds-release-of-chrono-trigger.json new file mode 100644 index 000000000000..0bd5b4b64d90 --- /dev/null +++ b/data/game/ja/japanese-nintendo-ds-release-of-chrono-trigger.json @@ -0,0 +1,12 @@ +{ + "slug": "japanese-nintendo-ds-release-of-chrono-trigger", + "name": "Japanese Nintendo DS Release of Chrono Trigger", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q15063311" + ], + "release_date": "2008-11-20", + "platforms": [ + "Nintendo DS" + ] +} diff --git a/data/game/jd/jdoom.json b/data/game/jd/jdoom.json new file mode 100644 index 000000000000..97c6249fb972 --- /dev/null +++ b/data/game/jd/jdoom.json @@ -0,0 +1,8 @@ +{ + "slug": "jdoom", + "name": "JDoom", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11865438" + ] +} diff --git a/data/game/je/jeopardy-world-tour-q122932578.json b/data/game/je/jeopardy-world-tour-q122932578.json new file mode 100644 index 000000000000..1922051cdc0c --- /dev/null +++ b/data/game/je/jeopardy-world-tour-q122932578.json @@ -0,0 +1,13 @@ +{ + "slug": "jeopardy-world-tour-q122932578", + "name": "Jeopardy! World Tour+", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122932578" + ], + "release_date": "2023-10-06", + "platforms": [ + "iPadOS", + "iOS" + ] +} diff --git a/data/game/je/jerez-s-arena-series-bundle.json b/data/game/je/jerez-s-arena-series-bundle.json new file mode 100644 index 000000000000..50800017d39a --- /dev/null +++ b/data/game/je/jerez-s-arena-series-bundle.json @@ -0,0 +1,20 @@ +{ + "slug": "jerez-s-arena-series-bundle", + "name": "Jerez's Arena Series Bundle", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127754136" + ], + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "erotic video game", + "strategy video game", + "role-playing video game" + ], + "publishers": [ + "Eternal Alice Studio" + ] +} diff --git a/data/game/je/jessballds.json b/data/game/je/jessballds.json new file mode 100644 index 000000000000..2d3a5935ee7c --- /dev/null +++ b/data/game/je/jessballds.json @@ -0,0 +1,22 @@ +{ + "slug": "jessballds", + "name": "JessballDS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123177942" + ], + "release_date": "2008-05-29", + "platforms": [ + "Nintendo DS" + ], + "genres": [ + "action game", + "arcade" + ], + "developers": [ + "Raúl Bojalil" + ], + "publishers": [ + "Raúl Bojalil" + ] +} diff --git a/data/game/je/jetpack-joyride-deluxe.json b/data/game/je/jetpack-joyride-deluxe.json new file mode 100644 index 000000000000..b8cabb02e51f --- /dev/null +++ b/data/game/je/jetpack-joyride-deluxe.json @@ -0,0 +1,8 @@ +{ + "slug": "jetpack-joyride-deluxe", + "name": "Jetpack Joyride Deluxe", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107424218" + ] +} diff --git a/data/game/je/jetpack-joyride-q107342969.json b/data/game/je/jetpack-joyride-q107342969.json new file mode 100644 index 000000000000..5f728c04a0b9 --- /dev/null +++ b/data/game/je/jetpack-joyride-q107342969.json @@ -0,0 +1,18 @@ +{ + "slug": "jetpack-joyride-q107342969", + "name": "Jetpack Joyride+", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107342969" + ], + "platforms": [ + "iPadOS", + "iOS" + ], + "developers": [ + "Halfbrick Studios" + ], + "publishers": [ + "Halfbrick Studios" + ] +} diff --git a/data/game/je/jezzball-3ds.json b/data/game/je/jezzball-3ds.json new file mode 100644 index 000000000000..c82ad356598e --- /dev/null +++ b/data/game/je/jezzball-3ds.json @@ -0,0 +1,21 @@ +{ + "slug": "jezzball-3ds", + "name": "Jezzball 3DS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123177939" + ], + "release_date": "2014-07-27", + "platforms": [ + "Nintendo 3DS" + ], + "genres": [ + "arcade" + ], + "developers": [ + "Raúl Bojalil" + ], + "publishers": [ + "Raúl Bojalil" + ] +} diff --git a/data/game/je/jezzballu.json b/data/game/je/jezzballu.json new file mode 100644 index 000000000000..73376c437ec9 --- /dev/null +++ b/data/game/je/jezzballu.json @@ -0,0 +1,21 @@ +{ + "slug": "jezzballu", + "name": "JezzBallU", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123177623" + ], + "release_date": "2021-10-04", + "platforms": [ + "Wii U" + ], + "genres": [ + "arcade" + ], + "developers": [ + "Raúl Bojalil" + ], + "publishers": [ + "Raúl Bojalil" + ] +} diff --git a/data/game/ji/jigsaw-puzzle-by-mobilityware.json b/data/game/ji/jigsaw-puzzle-by-mobilityware.json new file mode 100644 index 000000000000..91ef843399b4 --- /dev/null +++ b/data/game/ji/jigsaw-puzzle-by-mobilityware.json @@ -0,0 +1,16 @@ +{ + "slug": "jigsaw-puzzle-by-mobilityware", + "name": "Jigsaw Puzzle by MobilityWare+", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112230706" + ], + "release_date": "2022-06-10", + "platforms": [ + "iPadOS", + "iOS" + ], + "genres": [ + "jigsaw puzzle video game" + ] +} diff --git a/data/game/ji/jill-of-the-jungle-the-complete-trilogy.json b/data/game/ji/jill-of-the-jungle-the-complete-trilogy.json new file mode 100644 index 000000000000..e3f5b68f0100 --- /dev/null +++ b/data/game/ji/jill-of-the-jungle-the-complete-trilogy.json @@ -0,0 +1,8 @@ +{ + "slug": "jill-of-the-jungle-the-complete-trilogy", + "name": "Jill of the Jungle: The Complete Trilogy", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q78859547" + ] +} diff --git a/data/game/ji/jimmy-s-vendetta.json b/data/game/ji/jimmy-s-vendetta.json new file mode 100644 index 000000000000..03b3b93459a1 --- /dev/null +++ b/data/game/ji/jimmy-s-vendetta.json @@ -0,0 +1,21 @@ +{ + "slug": "jimmy-s-vendetta", + "name": "Jimmy's Vendetta", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q114837811" + ], + "release_date": "2010-09-07", + "platforms": [ + "macOS", + "PlayStation 3", + "Microsoft Windows" + ], + "genres": [ + "action-adventure game", + "third-person shooter" + ], + "publishers": [ + "2K" + ] +} diff --git a/data/game/jo/joe-dever-s-lone-wolf-console-edition.json b/data/game/jo/joe-dever-s-lone-wolf-console-edition.json new file mode 100644 index 000000000000..711288fb457f --- /dev/null +++ b/data/game/jo/joe-dever-s-lone-wolf-console-edition.json @@ -0,0 +1,8 @@ +{ + "slug": "joe-dever-s-lone-wolf-console-edition", + "name": "Joe Dever's Lone Wolf Console Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q90134086" + ] +} diff --git a/data/game/jo/joequake.json b/data/game/jo/joequake.json new file mode 100644 index 000000000000..00fd690e72df --- /dev/null +++ b/data/game/jo/joequake.json @@ -0,0 +1,15 @@ +{ + "slug": "joequake", + "name": "JoeQuake", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124581254" + ], + "release_date": "2006-05-07", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter" + ] +} diff --git a/data/game/jo/joint-operations-escalation.json b/data/game/jo/joint-operations-escalation.json new file mode 100644 index 000000000000..6d979c113375 --- /dev/null +++ b/data/game/jo/joint-operations-escalation.json @@ -0,0 +1,11 @@ +{ + "slug": "joint-operations-escalation", + "name": "Joint Operations: Escalation", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4041867" + ], + "platforms": [ + "Microsoft Windows" + ] +} diff --git a/data/game/jo/jojo-s-bizarre-adventure-all-star-battle-r-deluxe-edition.json b/data/game/jo/jojo-s-bizarre-adventure-all-star-battle-r-deluxe-edition.json new file mode 100644 index 000000000000..97be70d331d9 --- /dev/null +++ b/data/game/jo/jojo-s-bizarre-adventure-all-star-battle-r-deluxe-edition.json @@ -0,0 +1,18 @@ +{ + "slug": "jojo-s-bizarre-adventure-all-star-battle-r-deluxe-edition", + "name": "JoJo's Bizarre Adventure: All-Star Battle R Deluxe Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116160421" + ], + "release_date": "2022-09-02", + "platforms": [ + "Xbox Series X and Series S" + ], + "developers": [ + "CyberConnect2" + ], + "publishers": [ + "Bandai Namco Entertainment" + ] +} diff --git a/data/game/jo/jojo-s-burger-match.json b/data/game/jo/jojo-s-burger-match.json new file mode 100644 index 000000000000..3329cf1682d0 --- /dev/null +++ b/data/game/jo/jojo-s-burger-match.json @@ -0,0 +1,8 @@ +{ + "slug": "jojo-s-burger-match", + "name": "Jojo's Burger Match", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q128014890" + ] +} diff --git a/data/game/jo/jonny-blastoff-and-the-kremling-armada.json b/data/game/jo/jonny-blastoff-and-the-kremling-armada.json new file mode 100644 index 000000000000..005015ea638c --- /dev/null +++ b/data/game/jo/jonny-blastoff-and-the-kremling-armada.json @@ -0,0 +1,8 @@ +{ + "slug": "jonny-blastoff-and-the-kremling-armada", + "name": "Jonny Blastoff and the Kremling Armada", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123492785" + ] +} diff --git a/data/game/jo/journey-to-the-savage-planet-employee-of-the-month.json b/data/game/jo/journey-to-the-savage-planet-employee-of-the-month.json new file mode 100644 index 000000000000..ff7d2f778782 --- /dev/null +++ b/data/game/jo/journey-to-the-savage-planet-employee-of-the-month.json @@ -0,0 +1,18 @@ +{ + "slug": "journey-to-the-savage-planet-employee-of-the-month", + "name": "Journey To The Savage Planet: Employee Of The Month", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120802329" + ], + "release_date": "2023-02-14", + "platforms": [ + "Xbox Series X and Series S" + ], + "developers": [ + "Raccoon Logic" + ], + "publishers": [ + "505 Games" + ] +} diff --git a/data/game/ju/jugame.json b/data/game/ju/jugame.json new file mode 100644 index 000000000000..04042b290e06 --- /dev/null +++ b/data/game/ju/jugame.json @@ -0,0 +1,8 @@ +{ + "slug": "jugame", + "name": "JuGame", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135094741" + ] +} diff --git a/data/game/ju/juggler-q11309718.json b/data/game/ju/juggler-q11309718.json new file mode 100644 index 000000000000..71ed4fcb6cde --- /dev/null +++ b/data/game/ju/juggler-q11309718.json @@ -0,0 +1,11 @@ +{ + "slug": "juggler-q11309718", + "name": "JUGGLER", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11309718" + ], + "developers": [ + "Kita Denshi" + ] +} diff --git a/data/game/ju/juggler-q113518288.json b/data/game/ju/juggler-q113518288.json new file mode 100644 index 000000000000..c0fa06985af5 --- /dev/null +++ b/data/game/ju/juggler-q113518288.json @@ -0,0 +1,15 @@ +{ + "slug": "juggler-q113518288", + "name": "Juggler", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113518288" + ], + "release_date": "1986-11-01", + "platforms": [ + "Commodore Amiga" + ], + "developers": [ + "Eric Graham" + ] +} diff --git a/data/game/ju/jump-and-roll.json b/data/game/ju/jump-and-roll.json new file mode 100644 index 000000000000..a3d391eb2812 --- /dev/null +++ b/data/game/ju/jump-and-roll.json @@ -0,0 +1,18 @@ +{ + "slug": "jump-and-roll", + "name": "Jump and Roll", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109977727" + ], + "release_date": "2021-12-02", + "platforms": [ + "Xbox Series X and Series S" + ], + "developers": [ + "Poor Cat" + ], + "publishers": [ + "Poor Cat" + ] +} diff --git a/data/game/ju/jumpgate-evolution.json b/data/game/ju/jumpgate-evolution.json new file mode 100644 index 000000000000..994373d25711 --- /dev/null +++ b/data/game/ju/jumpgate-evolution.json @@ -0,0 +1,22 @@ +{ + "slug": "jumpgate-evolution", + "name": "Jumpgate Evolution", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6311246" + ], + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "space flight simulation game", + "science fiction video game", + "space trading and combat game" + ], + "developers": [ + "NetDevil" + ], + "publishers": [ + "Codemasters" + ] +} diff --git a/data/game/ju/jumpy-cat.json b/data/game/ju/jumpy-cat.json new file mode 100644 index 000000000000..245c6cc5afda --- /dev/null +++ b/data/game/ju/jumpy-cat.json @@ -0,0 +1,17 @@ +{ + "slug": "jumpy-cat", + "name": "Jumpy Cat", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q129052911" + ], + "platforms": [ + "Wii U" + ], + "genres": [ + "2D platform game" + ], + "publishers": [ + "Ninja Pig Studios" + ] +} diff --git a/data/game/ju/jurassic-park-survival-q123699010.json b/data/game/ju/jurassic-park-survival-q123699010.json new file mode 100644 index 000000000000..2a87311d8870 --- /dev/null +++ b/data/game/ju/jurassic-park-survival-q123699010.json @@ -0,0 +1,22 @@ +{ + "slug": "jurassic-park-survival-q123699010", + "name": "Jurassic Park Survival", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123699010" + ], + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 5", + "Microsoft Windows" + ], + "genres": [ + "action-adventure game" + ], + "developers": [ + "Saber Interactive" + ], + "publishers": [ + "Saber Interactive" + ] +} diff --git a/data/game/ju/jurassic-world-evolution-complete-edition.json b/data/game/ju/jurassic-world-evolution-complete-edition.json new file mode 100644 index 000000000000..8339975dbe6a --- /dev/null +++ b/data/game/ju/jurassic-world-evolution-complete-edition.json @@ -0,0 +1,8 @@ +{ + "slug": "jurassic-world-evolution-complete-edition", + "name": "Jurassic World Evolution: Complete Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127157726" + ] +} diff --git a/data/game/ju/just-cause-3-mech-land-assault.json b/data/game/ju/just-cause-3-mech-land-assault.json new file mode 100644 index 000000000000..56b58296e340 --- /dev/null +++ b/data/game/ju/just-cause-3-mech-land-assault.json @@ -0,0 +1,8 @@ +{ + "slug": "just-cause-3-mech-land-assault", + "name": "Just Cause 3: Mech Land Assault", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127270848" + ] +} diff --git a/data/game/ju/just-cause-demo.json b/data/game/ju/just-cause-demo.json new file mode 100644 index 000000000000..32b69d736bc6 --- /dev/null +++ b/data/game/ju/just-cause-demo.json @@ -0,0 +1,22 @@ +{ + "slug": "just-cause-demo", + "name": "Just Cause Demo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63341536" + ], + "release_date": "2006-01-01", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "third-person shooter" + ], + "developers": [ + "Avalanche Studios Group" + ], + "publishers": [ + "Square Enix", + "Eidos Interactive" + ] +} diff --git a/data/game/ka/kaboom-the-suicide-bombing-game.json b/data/game/ka/kaboom-the-suicide-bombing-game.json new file mode 100644 index 000000000000..a5987190f634 --- /dev/null +++ b/data/game/ka/kaboom-the-suicide-bombing-game.json @@ -0,0 +1,18 @@ +{ + "slug": "kaboom-the-suicide-bombing-game", + "name": "Kaboom: The Suicide Bombing Game", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16259721" + ], + "release_date": "2002-04-17", + "platforms": [ + "personal computer" + ], + "developers": [ + "fabulous999" + ], + "publishers": [ + "fabulous999" + ] +} diff --git a/data/game/ka/kaiju-paradise.json b/data/game/ka/kaiju-paradise.json new file mode 100644 index 000000000000..80275d3e8fcb --- /dev/null +++ b/data/game/ka/kaiju-paradise.json @@ -0,0 +1,9 @@ +{ + "slug": "kaiju-paradise", + "name": "Kaiju Paradise", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137363224" + ], + "release_date": "2021-03-28" +} diff --git a/data/game/ka/kaio-king-of-pirates.json b/data/game/ka/kaio-king-of-pirates.json new file mode 100644 index 000000000000..bff560624a94 --- /dev/null +++ b/data/game/ka/kaio-king-of-pirates.json @@ -0,0 +1,22 @@ +{ + "slug": "kaio-king-of-pirates", + "name": "Kaio: King of Pirates", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6348166" + ], + "platforms": [ + "Nintendo 3DS" + ], + "genres": [ + "adventure video game", + "action game", + "action-adventure game" + ], + "developers": [ + "Level-5 Comcept" + ], + "publishers": [ + "Marvelous" + ] +} diff --git a/data/game/ka/kaiserreich.json b/data/game/ka/kaiserreich.json new file mode 100644 index 000000000000..bef25d2c98ee --- /dev/null +++ b/data/game/ka/kaiserreich.json @@ -0,0 +1,17 @@ +{ + "slug": "kaiserreich", + "name": "Kaiserreich", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q102334825" + ], + "release_date": "2016-12-12", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "alternate history", + "grand strategy wargame" + ] +} diff --git a/data/game/ka/kakuro-q212785.json b/data/game/ka/kakuro-q212785.json new file mode 100644 index 000000000000..5fad7befa473 --- /dev/null +++ b/data/game/ka/kakuro-q212785.json @@ -0,0 +1,9 @@ +{ + "slug": "kakuro-q212785", + "name": "kakuro", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q212785" + ], + "release_date": "1966-01-01" +} diff --git a/data/game/ka/kala-hunter-support-class.json b/data/game/ka/kala-hunter-support-class.json new file mode 100644 index 000000000000..b0b19afa4a3f --- /dev/null +++ b/data/game/ka/kala-hunter-support-class.json @@ -0,0 +1,19 @@ +{ + "slug": "kala-hunter-support-class", + "name": "Kala - Hunter (Support Class)", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124637448" + ], + "release_date": "2016-01-26", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "science fiction video game" + ], + "publishers": [ + "2K" + ] +} diff --git a/data/game/ka/kamen-rider-buttoba-soul.json b/data/game/ka/kamen-rider-buttoba-soul.json new file mode 100644 index 000000000000..86921f14c0f7 --- /dev/null +++ b/data/game/ka/kamen-rider-buttoba-soul.json @@ -0,0 +1,8 @@ +{ + "slug": "kamen-rider-buttoba-soul", + "name": "Kamen Rider Buttoba Soul", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q30935720" + ] +} diff --git a/data/game/ka/kao-the-kangaroo-q110247557.json b/data/game/ka/kao-the-kangaroo-q110247557.json new file mode 100644 index 000000000000..b6bdb712cacc --- /dev/null +++ b/data/game/ka/kao-the-kangaroo-q110247557.json @@ -0,0 +1,24 @@ +{ + "slug": "kao-the-kangaroo-q110247557", + "name": "Kao the Kangaroo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110247557" + ], + "release_date": "2022-05-27", + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 5", + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "platformer" + ], + "developers": [ + "Tate Multimedia" + ], + "publishers": [ + "Tate Multimedia" + ] +} diff --git a/data/game/ka/karamari-hospital-ost.json b/data/game/ka/karamari-hospital-ost.json new file mode 100644 index 000000000000..ce5891ba7d6a --- /dev/null +++ b/data/game/ka/karamari-hospital-ost.json @@ -0,0 +1,12 @@ +{ + "slug": "karamari-hospital-ost", + "name": "Karamari Hospital OST", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q66309435" + ], + "release_date": "2015-12-29", + "genres": [ + "chiptune" + ] +} diff --git a/data/game/ka/karamari-hospital.json b/data/game/ka/karamari-hospital.json new file mode 100644 index 000000000000..a5f330c24f14 --- /dev/null +++ b/data/game/ka/karamari-hospital.json @@ -0,0 +1,21 @@ +{ + "slug": "karamari-hospital", + "name": "Karamari Hospital", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q66226662" + ], + "release_date": "2015-12-29", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "survival horror" + ], + "developers": [ + "Lag Studios" + ], + "publishers": [ + "Lag Studios" + ] +} diff --git a/data/game/ka/katago.json b/data/game/ka/katago.json new file mode 100644 index 000000000000..927d6b1abfd2 --- /dev/null +++ b/data/game/ka/katago.json @@ -0,0 +1,8 @@ +{ + "slug": "katago", + "name": "KataGo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q85872985" + ] +} diff --git a/data/game/ke/kecleon-bazaar.json b/data/game/ke/kecleon-bazaar.json new file mode 100644 index 000000000000..4de90b5b702d --- /dev/null +++ b/data/game/ke/kecleon-bazaar.json @@ -0,0 +1,9 @@ +{ + "slug": "kecleon-bazaar", + "name": "Kecleon Bazaar", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112582108" + ], + "release_date": "2013-04-04" +} diff --git a/data/game/ke/kentucky-route-zero-act-i.json b/data/game/ke/kentucky-route-zero-act-i.json new file mode 100644 index 000000000000..e8072965a236 --- /dev/null +++ b/data/game/ke/kentucky-route-zero-act-i.json @@ -0,0 +1,22 @@ +{ + "slug": "kentucky-route-zero-act-i", + "name": "Kentucky Route Zero: Act I", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136511262" + ], + "release_date": "2013-01-07", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "adventure video game" + ], + "developers": [ + "Cardboard Computer" + ], + "publishers": [ + "Cardboard Computer" + ] +} diff --git a/data/game/ke/kentucky-route-zero-act-ii.json b/data/game/ke/kentucky-route-zero-act-ii.json new file mode 100644 index 000000000000..0e6152e64d6e --- /dev/null +++ b/data/game/ke/kentucky-route-zero-act-ii.json @@ -0,0 +1,22 @@ +{ + "slug": "kentucky-route-zero-act-ii", + "name": "Kentucky Route Zero: Act II", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136511385" + ], + "release_date": "2013-05-31", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "adventure video game" + ], + "developers": [ + "Cardboard Computer" + ], + "publishers": [ + "Cardboard Computer" + ] +} diff --git a/data/game/ke/kentucky-route-zero-act-iii.json b/data/game/ke/kentucky-route-zero-act-iii.json new file mode 100644 index 000000000000..5a2f566e82c2 --- /dev/null +++ b/data/game/ke/kentucky-route-zero-act-iii.json @@ -0,0 +1,22 @@ +{ + "slug": "kentucky-route-zero-act-iii", + "name": "Kentucky Route Zero: Act III", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136511386" + ], + "release_date": "2014-05-06", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "adventure video game" + ], + "developers": [ + "Cardboard Computer" + ], + "publishers": [ + "Cardboard Computer" + ] +} diff --git a/data/game/ke/kentucky-route-zero-act-iv.json b/data/game/ke/kentucky-route-zero-act-iv.json new file mode 100644 index 000000000000..29397f0aee20 --- /dev/null +++ b/data/game/ke/kentucky-route-zero-act-iv.json @@ -0,0 +1,21 @@ +{ + "slug": "kentucky-route-zero-act-iv", + "name": "Kentucky Route Zero: Act IV", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136511387" + ], + "release_date": "2016-07-19", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "adventure video game" + ], + "developers": [ + "Cardboard Computer" + ], + "publishers": [ + "Cardboard Computer" + ] +} diff --git a/data/game/ke/kentucky-route-zero-act-v.json b/data/game/ke/kentucky-route-zero-act-v.json new file mode 100644 index 000000000000..0da1304610eb --- /dev/null +++ b/data/game/ke/kentucky-route-zero-act-v.json @@ -0,0 +1,22 @@ +{ + "slug": "kentucky-route-zero-act-v", + "name": "Kentucky Route Zero: Act V", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136511388" + ], + "release_date": "2020-01-28", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "adventure video game" + ], + "developers": [ + "Cardboard Computer" + ], + "publishers": [ + "Cardboard Computer" + ] +} diff --git a/data/game/ke/kestrel-q110291209.json b/data/game/ke/kestrel-q110291209.json new file mode 100644 index 000000000000..e83af97d3469 --- /dev/null +++ b/data/game/ke/kestrel-q110291209.json @@ -0,0 +1,11 @@ +{ + "slug": "kestrel-q110291209", + "name": "Kestrel", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110291209" + ], + "genres": [ + "first-person shooter" + ] +} diff --git a/data/game/ke/keyball.json b/data/game/ke/keyball.json new file mode 100644 index 000000000000..baf48bc282c4 --- /dev/null +++ b/data/game/ke/keyball.json @@ -0,0 +1,11 @@ +{ + "slug": "keyball", + "name": "Keyball", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q12321754" + ], + "genres": [ + "association football video game" + ] +} diff --git a/data/game/kf/kfmod.json b/data/game/kf/kfmod.json new file mode 100644 index 000000000000..779a6d1f4531 --- /dev/null +++ b/data/game/kf/kfmod.json @@ -0,0 +1,22 @@ +{ + "slug": "kfmod", + "name": "KFMod", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q59398000" + ], + "release_date": "2005-08-31", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "survival horror" + ], + "developers": [ + "Shatterline Productions" + ], + "publishers": [ + "Shatterline Productions" + ] +} diff --git a/data/game/ki/kick-off-2-giants-of-europe.json b/data/game/ki/kick-off-2-giants-of-europe.json new file mode 100644 index 000000000000..0523f6df9cf7 --- /dev/null +++ b/data/game/ki/kick-off-2-giants-of-europe.json @@ -0,0 +1,8 @@ +{ + "slug": "kick-off-2-giants-of-europe", + "name": "Kick Off 2: Giants Of Europe", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126185325" + ] +} diff --git a/data/game/ki/kick-off-2-return-to-europe.json b/data/game/ki/kick-off-2-return-to-europe.json new file mode 100644 index 000000000000..f79846eae9bc --- /dev/null +++ b/data/game/ki/kick-off-2-return-to-europe.json @@ -0,0 +1,8 @@ +{ + "slug": "kick-off-2-return-to-europe", + "name": "Kick Off 2: Return To Europe", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126185007" + ] +} diff --git a/data/game/ki/kick-off-2-the-final-whistle.json b/data/game/ki/kick-off-2-the-final-whistle.json new file mode 100644 index 000000000000..016e6d546fee --- /dev/null +++ b/data/game/ki/kick-off-2-the-final-whistle.json @@ -0,0 +1,8 @@ +{ + "slug": "kick-off-2-the-final-whistle", + "name": "Kick Off 2: The Final Whistle", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q55587234" + ] +} diff --git a/data/game/ki/kickster-online-street-soccer.json b/data/game/ki/kickster-online-street-soccer.json new file mode 100644 index 000000000000..fdeb22847a49 --- /dev/null +++ b/data/game/ki/kickster-online-street-soccer.json @@ -0,0 +1,8 @@ +{ + "slug": "kickster-online-street-soccer", + "name": "Kickster Online Street Soccer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140471251" + ] +} diff --git a/data/game/ki/kid-icarus-uprising.json b/data/game/ki/kid-icarus-uprising.json new file mode 100644 index 000000000000..64892a7b2504 --- /dev/null +++ b/data/game/ki/kid-icarus-uprising.json @@ -0,0 +1,25 @@ +{ + "slug": "kid-icarus-uprising", + "name": "Kid Icarus: Uprising", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1506975" + ], + "release_date": "2012-03-22", + "platforms": [ + "Nintendo 3DS" + ], + "genres": [ + "adventure video game", + "action game", + "action-adventure game", + "third-person shooter" + ], + "developers": [ + "Project Sora", + "Sora Ltd." + ], + "publishers": [ + "Nintendo" + ] +} diff --git a/data/game/ki/kidz-sports-american-football.json b/data/game/ki/kidz-sports-american-football.json new file mode 100644 index 000000000000..019a61dbe577 --- /dev/null +++ b/data/game/ki/kidz-sports-american-football.json @@ -0,0 +1,17 @@ +{ + "slug": "kidz-sports-american-football", + "name": "Kidz Sports: American Football", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q97328070" + ], + "platforms": [ + "Wii" + ], + "genres": [ + "American football video game" + ], + "developers": [ + "Data Design Interactive" + ] +} diff --git a/data/game/ki/kidz-sports-baseball.json b/data/game/ki/kidz-sports-baseball.json new file mode 100644 index 000000000000..77c66585c194 --- /dev/null +++ b/data/game/ki/kidz-sports-baseball.json @@ -0,0 +1,21 @@ +{ + "slug": "kidz-sports-baseball", + "name": "Kidz Sports: Baseball", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q64424654" + ], + "platforms": [ + "Wii" + ], + "genres": [ + "baseball video game" + ], + "developers": [ + "Data Design Interactive" + ], + "publishers": [ + "Data Design Interactive", + "Popcorn Arcade" + ] +} diff --git a/data/game/ki/kill-the-hentai-adult-patch-18.json b/data/game/ki/kill-the-hentai-adult-patch-18.json new file mode 100644 index 000000000000..224e5e04d31f --- /dev/null +++ b/data/game/ki/kill-the-hentai-adult-patch-18.json @@ -0,0 +1,23 @@ +{ + "slug": "kill-the-hentai-adult-patch-18", + "name": "Kill the Hentai - Adult Patch 18+", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136116321" + ], + "release_date": "2019-10-04", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "action game", + "erotic video game" + ], + "developers": [ + "LoveAnime" + ], + "publishers": [ + "AmagSwag Games" + ] +} diff --git a/data/game/ki/killer-instinct-definitive-edition.json b/data/game/ki/killer-instinct-definitive-edition.json new file mode 100644 index 000000000000..97d259a86693 --- /dev/null +++ b/data/game/ki/killer-instinct-definitive-edition.json @@ -0,0 +1,21 @@ +{ + "slug": "killer-instinct-definitive-edition", + "name": "Killer Instinct: Definitive Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q90135931" + ], + "release_date": "2016-09-30", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "fighting game" + ], + "developers": [ + "Iron Galaxy Studios" + ], + "publishers": [ + "Xbox Game Studios" + ] +} diff --git a/data/game/ki/killer-instinct-q13522696.json b/data/game/ki/killer-instinct-q13522696.json new file mode 100644 index 000000000000..4c6da7bc7c6f --- /dev/null +++ b/data/game/ki/killer-instinct-q13522696.json @@ -0,0 +1,22 @@ +{ + "slug": "killer-instinct-q13522696", + "name": "Killer Instinct", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q13522696" + ], + "release_date": "2013-11-22", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "fighting game" + ], + "developers": [ + "Iron Galaxy Studios", + "Double Helix Games" + ], + "publishers": [ + "Xbox Game Studios" + ] +} diff --git a/data/game/ki/killing-day.json b/data/game/ki/killing-day.json new file mode 100644 index 000000000000..9b20cf235085 --- /dev/null +++ b/data/game/ki/killing-day.json @@ -0,0 +1,14 @@ +{ + "slug": "killing-day", + "name": "Killing Day", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6407693" + ], + "platforms": [ + "PlayStation 3" + ], + "genres": [ + "first-person shooter" + ] +} diff --git a/data/game/ki/killing-floor-2-digital-deluxe-edition-upgrade.json b/data/game/ki/killing-floor-2-digital-deluxe-edition-upgrade.json new file mode 100644 index 000000000000..b00c8b81f112 --- /dev/null +++ b/data/game/ki/killing-floor-2-digital-deluxe-edition-upgrade.json @@ -0,0 +1,8 @@ +{ + "slug": "killing-floor-2-digital-deluxe-edition-upgrade", + "name": "Killing Floor 2 Digital Deluxe Edition Upgrade", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108028702" + ] +} diff --git a/data/game/ki/killing-floor-2-digital-deluxe-edition.json b/data/game/ki/killing-floor-2-digital-deluxe-edition.json new file mode 100644 index 000000000000..900ffdbe0006 --- /dev/null +++ b/data/game/ki/killing-floor-2-digital-deluxe-edition.json @@ -0,0 +1,8 @@ +{ + "slug": "killing-floor-2-digital-deluxe-edition", + "name": "Killing Floor 2 Digital Deluxe Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108028698" + ] +} diff --git a/data/game/ki/killing-floor-mod-defence-alliance-2.json b/data/game/ki/killing-floor-mod-defence-alliance-2.json new file mode 100644 index 000000000000..5135878338c6 --- /dev/null +++ b/data/game/ki/killing-floor-mod-defence-alliance-2.json @@ -0,0 +1,18 @@ +{ + "slug": "killing-floor-mod-defence-alliance-2", + "name": "Killing Floor Mod: Defence Alliance 2", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q64225353" + ], + "release_date": "2009-10-22", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Defence Alliance Team" + ], + "publishers": [ + "Tripwire Interactive" + ] +} diff --git a/data/game/ki/killzone-shadow-fall-sharefactory-theme.json b/data/game/ki/killzone-shadow-fall-sharefactory-theme.json new file mode 100644 index 000000000000..fd469b18220c --- /dev/null +++ b/data/game/ki/killzone-shadow-fall-sharefactory-theme.json @@ -0,0 +1,18 @@ +{ + "slug": "killzone-shadow-fall-sharefactory-theme", + "name": "Killzone: Shadow Fall SHAREfactory Theme", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q61474754" + ], + "release_date": "2015-02-10", + "platforms": [ + "PlayStation 4" + ], + "developers": [ + "Sony Interactive Entertainment" + ], + "publishers": [ + "Sony Interactive Entertainment" + ] +} diff --git a/data/game/ki/king-of-avalon-dragon-warfare.json b/data/game/ki/king-of-avalon-dragon-warfare.json new file mode 100644 index 000000000000..2c7a70d77da4 --- /dev/null +++ b/data/game/ki/king-of-avalon-dragon-warfare.json @@ -0,0 +1,8 @@ +{ + "slug": "king-of-avalon-dragon-warfare", + "name": "King of Avalon: Dragon Warfare", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140471221" + ] +} diff --git a/data/game/ki/king-of-kinks-wallpapers.json b/data/game/ki/king-of-kinks-wallpapers.json new file mode 100644 index 000000000000..3238922167fc --- /dev/null +++ b/data/game/ki/king-of-kinks-wallpapers.json @@ -0,0 +1,19 @@ +{ + "slug": "king-of-kinks-wallpapers", + "name": "King of Kinks Wallpapers", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q129328282" + ], + "release_date": "2024-06-28", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "erotic video game", + "role-playing video game" + ], + "developers": [ + "DPH Studio" + ] +} diff --git a/data/game/ki/king-pulsar.json b/data/game/ki/king-pulsar.json new file mode 100644 index 000000000000..127ab9dfee8e --- /dev/null +++ b/data/game/ki/king-pulsar.json @@ -0,0 +1,8 @@ +{ + "slug": "king-pulsar", + "name": "KING PULSAR", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11297909" + ] +} diff --git a/data/game/ki/king-s-bounty-armored-princess-demo.json b/data/game/ki/king-s-bounty-armored-princess-demo.json new file mode 100644 index 000000000000..7cad5091cb63 --- /dev/null +++ b/data/game/ki/king-s-bounty-armored-princess-demo.json @@ -0,0 +1,23 @@ +{ + "slug": "king-s-bounty-armored-princess-demo", + "name": "King's Bounty: Armored Princess - Demo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122760098" + ], + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "role-playing video game", + "turn-based strategy video game", + "fantasy video game" + ], + "developers": [ + "Katauri Interactive" + ], + "publishers": [ + "1C Company", + "Softclub" + ] +} diff --git a/data/game/ki/king-s-bounty-crossworlds.json b/data/game/ki/king-s-bounty-crossworlds.json new file mode 100644 index 000000000000..e1e769c85c44 --- /dev/null +++ b/data/game/ki/king-s-bounty-crossworlds.json @@ -0,0 +1,21 @@ +{ + "slug": "king-s-bounty-crossworlds", + "name": "King's Bounty: Crossworlds", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1076308" + ], + "release_date": "2010-09-17", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "tactical role-playing game" + ], + "developers": [ + "Katauri Interactive" + ], + "publishers": [ + "1C Company" + ] +} diff --git a/data/game/ki/king-s-bounty-warriors-of-the-north-ice-and-fire.json b/data/game/ki/king-s-bounty-warriors-of-the-north-ice-and-fire.json new file mode 100644 index 000000000000..84cd4f36c0bc --- /dev/null +++ b/data/game/ki/king-s-bounty-warriors-of-the-north-ice-and-fire.json @@ -0,0 +1,13 @@ +{ + "slug": "king-s-bounty-warriors-of-the-north-ice-and-fire", + "name": "King's Bounty: Warriors of the North - Ice and Fire", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118279341" + ], + "release_date": "2014-01-30", + "platforms": [ + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/game/ki/king-s-quest-collection.json b/data/game/ki/king-s-quest-collection.json new file mode 100644 index 000000000000..77dc0aa13615 --- /dev/null +++ b/data/game/ki/king-s-quest-collection.json @@ -0,0 +1,18 @@ +{ + "slug": "king-s-quest-collection", + "name": "King's Quest Collection", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113575045" + ], + "release_date": "2006-09-01", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Sierra Entertainment" + ], + "publishers": [ + "Activision" + ] +} diff --git a/data/game/ki/king-s-quest.json b/data/game/ki/king-s-quest.json new file mode 100644 index 000000000000..ad94f8dab189 --- /dev/null +++ b/data/game/ki/king-s-quest.json @@ -0,0 +1,23 @@ +{ + "slug": "king-s-quest", + "name": "King's Quest", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4042212" + ], + "release_date": "2015-07-28", + "platforms": [ + "PlayStation 4", + "PlayStation 3", + "Microsoft Windows" + ], + "genres": [ + "adventure video game" + ], + "developers": [ + "Sierra Entertainment" + ], + "publishers": [ + "Sierra Entertainment" + ] +} diff --git a/data/game/ki/kingdom-come-deliverance-ii-legacy-of-the-forge.json b/data/game/ki/kingdom-come-deliverance-ii-legacy-of-the-forge.json new file mode 100644 index 000000000000..165c67c4b70b --- /dev/null +++ b/data/game/ki/kingdom-come-deliverance-ii-legacy-of-the-forge.json @@ -0,0 +1,8 @@ +{ + "slug": "kingdom-come-deliverance-ii-legacy-of-the-forge", + "name": "Kingdom Come: Deliverance II: Legacy of the Forge", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140470773" + ] +} diff --git a/data/game/ki/kingdom-come-deliverance-ii-mysteria-ecclesiae.json b/data/game/ki/kingdom-come-deliverance-ii-mysteria-ecclesiae.json new file mode 100644 index 000000000000..1df5320a67a2 --- /dev/null +++ b/data/game/ki/kingdom-come-deliverance-ii-mysteria-ecclesiae.json @@ -0,0 +1,8 @@ +{ + "slug": "kingdom-come-deliverance-ii-mysteria-ecclesiae", + "name": "Kingdom Come: Deliverance II - Mysteria Ecclesiae", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140471193" + ] +} diff --git a/data/game/ki/kingdom-hearts-iii-re-mind.json b/data/game/ki/kingdom-hearts-iii-re-mind.json new file mode 100644 index 000000000000..ffae22030df0 --- /dev/null +++ b/data/game/ki/kingdom-hearts-iii-re-mind.json @@ -0,0 +1,15 @@ +{ + "slug": "kingdom-hearts-iii-re-mind", + "name": "Kingdom Hearts III Re Mind", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q78114737" + ], + "release_date": "2020-01-23", + "platforms": [ + "PlayStation 4" + ], + "publishers": [ + "Square Enix" + ] +} diff --git a/data/game/ki/kingdom-hearts-missing-link.json b/data/game/ki/kingdom-hearts-missing-link.json new file mode 100644 index 000000000000..f817dab004b8 --- /dev/null +++ b/data/game/ki/kingdom-hearts-missing-link.json @@ -0,0 +1,20 @@ +{ + "slug": "kingdom-hearts-missing-link", + "name": "Kingdom Hearts Missing-Link", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116216523" + ], + "platforms": [ + "iOS" + ], + "genres": [ + "action role-playing game" + ], + "developers": [ + "Square Enix" + ], + "publishers": [ + "Square Enix" + ] +} diff --git a/data/game/ki/kingdom-rush-frontiers-td.json b/data/game/ki/kingdom-rush-frontiers-td.json new file mode 100644 index 000000000000..941f8db4ef54 --- /dev/null +++ b/data/game/ki/kingdom-rush-frontiers-td.json @@ -0,0 +1,17 @@ +{ + "slug": "kingdom-rush-frontiers-td", + "name": "Kingdom Rush Frontiers TD+", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108901393" + ], + "release_date": "2021-11-12", + "platforms": [ + "iPadOS", + "iOS", + "macOS" + ], + "genres": [ + "tower defense" + ] +} diff --git a/data/game/ki/kingdom-rush-vengeance-td.json b/data/game/ki/kingdom-rush-vengeance-td.json new file mode 100644 index 000000000000..67725b4139f8 --- /dev/null +++ b/data/game/ki/kingdom-rush-vengeance-td.json @@ -0,0 +1,14 @@ +{ + "slug": "kingdom-rush-vengeance-td", + "name": "Kingdom Rush Vengeance TD+", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113655769" + ], + "release_date": "2022-07-29", + "platforms": [ + "iPadOS", + "iOS", + "macOS" + ] +} diff --git a/data/game/ki/kingdom-two-crowns-q118234787.json b/data/game/ki/kingdom-two-crowns-q118234787.json new file mode 100644 index 000000000000..c3e7794d6193 --- /dev/null +++ b/data/game/ki/kingdom-two-crowns-q118234787.json @@ -0,0 +1,13 @@ +{ + "slug": "kingdom-two-crowns-q118234787", + "name": "Kingdom Two Crowns+", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118234787" + ], + "release_date": "2023-05-04", + "platforms": [ + "iPadOS", + "iOS" + ] +} diff --git a/data/game/ki/kirby-and-the-forgotten-land-nintendo-switch-2-edition-star-crossed-world-upgrade-pack.json b/data/game/ki/kirby-and-the-forgotten-land-nintendo-switch-2-edition-star-crossed-world-upgrade-pack.json new file mode 100644 index 000000000000..f08dc1527987 --- /dev/null +++ b/data/game/ki/kirby-and-the-forgotten-land-nintendo-switch-2-edition-star-crossed-world-upgrade-pack.json @@ -0,0 +1,12 @@ +{ + "slug": "kirby-and-the-forgotten-land-nintendo-switch-2-edition-star-crossed-world-upgrade-pack", + "name": "Kirby and the Forgotten Land – Nintendo Switch 2 Edition + Star-Crossed World Upgrade Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137864341" + ], + "release_date": "2025-08-28", + "publishers": [ + "Nintendo" + ] +} diff --git a/data/game/ki/kirby-s-dream-collection.json b/data/game/ki/kirby-s-dream-collection.json new file mode 100644 index 000000000000..6d849456a6fc --- /dev/null +++ b/data/game/ki/kirby-s-dream-collection.json @@ -0,0 +1,21 @@ +{ + "slug": "kirby-s-dream-collection", + "name": "Kirby's Dream Collection", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2785011" + ], + "release_date": "2012-07-19", + "platforms": [ + "Wii" + ], + "genres": [ + "platformer" + ], + "developers": [ + "HAL Laboratory" + ], + "publishers": [ + "Nintendo" + ] +} diff --git a/data/game/ki/kitty-glitter.json b/data/game/ki/kitty-glitter.json new file mode 100644 index 000000000000..fad8d3994914 --- /dev/null +++ b/data/game/ki/kitty-glitter.json @@ -0,0 +1,8 @@ +{ + "slug": "kitty-glitter", + "name": "Kitty Glitter", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q75071310" + ] +} diff --git a/data/game/ki/kittyrace.json b/data/game/ki/kittyrace.json new file mode 100644 index 000000000000..339f293caf55 --- /dev/null +++ b/data/game/ki/kittyrace.json @@ -0,0 +1,8 @@ +{ + "slug": "kittyrace", + "name": "KittyRace", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112939989" + ] +} diff --git a/data/game/kl/klonoa-phantasy-reverie-series.json b/data/game/kl/klonoa-phantasy-reverie-series.json new file mode 100644 index 000000000000..568017f01477 --- /dev/null +++ b/data/game/kl/klonoa-phantasy-reverie-series.json @@ -0,0 +1,24 @@ +{ + "slug": "klonoa-phantasy-reverie-series", + "name": "Klonoa Phantasy Reverie Series", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111161407" + ], + "release_date": "2022-07-07", + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 5", + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "platformer" + ], + "developers": [ + "Monkey Craft" + ], + "publishers": [ + "Bandai Namco Entertainment" + ] +} diff --git a/data/game/kn/knotwords-q123295255.json b/data/game/kn/knotwords-q123295255.json new file mode 100644 index 000000000000..9328d5114d09 --- /dev/null +++ b/data/game/kn/knotwords-q123295255.json @@ -0,0 +1,12 @@ +{ + "slug": "knotwords-q123295255", + "name": "Knotwords+", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123295255" + ], + "platforms": [ + "iPadOS", + "iOS" + ] +} diff --git a/data/game/ko/koala-cafe.json b/data/game/ko/koala-cafe.json new file mode 100644 index 000000000000..14e2db853ecc --- /dev/null +++ b/data/game/ko/koala-cafe.json @@ -0,0 +1,16 @@ +{ + "slug": "koala-cafe", + "name": "Koala Cafe", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q65968866" + ], + "platforms": [ + "iOS", + "macOS", + "Microsoft Windows" + ], + "genres": [ + "role-playing video game" + ] +} diff --git a/data/game/ko/kohan-ahriman-s-gift.json b/data/game/ko/kohan-ahriman-s-gift.json new file mode 100644 index 000000000000..c4556d55165e --- /dev/null +++ b/data/game/ko/kohan-ahriman-s-gift.json @@ -0,0 +1,22 @@ +{ + "slug": "kohan-ahriman-s-gift", + "name": "Kohan: Ahriman's Gift", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110817111" + ], + "release_date": "2001-11-06", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "real-time strategy" + ], + "developers": [ + "TimeGate Studios" + ], + "publishers": [ + "TimeGate Studios", + "Strategy First" + ] +} diff --git a/data/game/ko/kombat-pack-2.json b/data/game/ko/kombat-pack-2.json new file mode 100644 index 000000000000..e41bd8754162 --- /dev/null +++ b/data/game/ko/kombat-pack-2.json @@ -0,0 +1,19 @@ +{ + "slug": "kombat-pack-2", + "name": "Kombat Pack 2", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q64776944" + ], + "release_date": "2016-03-01", + "platforms": [ + "PlayStation 4", + "Microsoft Windows" + ], + "developers": [ + "NetherRealm Studios" + ], + "publishers": [ + "Warner Bros. Games" + ] +} diff --git a/data/game/ko/kombat-pack.json b/data/game/ko/kombat-pack.json new file mode 100644 index 000000000000..6940c645787d --- /dev/null +++ b/data/game/ko/kombat-pack.json @@ -0,0 +1,19 @@ +{ + "slug": "kombat-pack", + "name": "Kombat Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q64776877" + ], + "release_date": "2019-04-01", + "platforms": [ + "PlayStation 4", + "Microsoft Windows" + ], + "developers": [ + "NetherRealm Studios" + ], + "publishers": [ + "Warner Bros. Games" + ] +} diff --git a/data/game/ko/konami-classics.json b/data/game/ko/konami-classics.json new file mode 100644 index 000000000000..385d054f391a --- /dev/null +++ b/data/game/ko/konami-classics.json @@ -0,0 +1,15 @@ +{ + "slug": "konami-classics", + "name": "Konami Classics", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6428749" + ], + "release_date": "2009-12-15", + "genres": [ + "arcade" + ], + "developers": [ + "Konami" + ] +} diff --git a/data/game/ko/koneko-mo-issyo.json b/data/game/ko/koneko-mo-issyo.json new file mode 100644 index 000000000000..a57af9c9d98f --- /dev/null +++ b/data/game/ko/koneko-mo-issyo.json @@ -0,0 +1,15 @@ +{ + "slug": "koneko-mo-issyo", + "name": "Koneko mo Issyo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126118636" + ], + "release_date": "2000-01-27", + "platforms": [ + "PlayStation Vita" + ], + "publishers": [ + "Sony Interactive Entertainment" + ] +} diff --git a/data/game/ko/kororinpa-q104773412.json b/data/game/ko/kororinpa-q104773412.json new file mode 100644 index 000000000000..45345a7293a6 --- /dev/null +++ b/data/game/ko/kororinpa-q104773412.json @@ -0,0 +1,11 @@ +{ + "slug": "kororinpa-q104773412", + "name": "Kororinpa", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q104773412" + ], + "platforms": [ + "Nintendo 3DS" + ] +} diff --git a/data/game/kr/krynea-imperial-wars.json b/data/game/kr/krynea-imperial-wars.json new file mode 100644 index 000000000000..fffe0ae8781c --- /dev/null +++ b/data/game/kr/krynea-imperial-wars.json @@ -0,0 +1,16 @@ +{ + "slug": "krynea-imperial-wars", + "name": "Krynea Imperial Wars", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q9018003" + ], + "release_date": "2010-08-01", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "massively multiplayer online role-playing game", + "strategy video game" + ] +} diff --git a/data/game/kt/ktuberling.json b/data/game/kt/ktuberling.json new file mode 100644 index 000000000000..95f0f41c5482 --- /dev/null +++ b/data/game/kt/ktuberling.json @@ -0,0 +1,8 @@ +{ + "slug": "ktuberling", + "name": "KTuberling", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11929540" + ] +} diff --git a/data/game/ku/kung-fury-street-rage-ultimate-edition.json b/data/game/ku/kung-fury-street-rage-ultimate-edition.json new file mode 100644 index 000000000000..f248aecb6904 --- /dev/null +++ b/data/game/ku/kung-fury-street-rage-ultimate-edition.json @@ -0,0 +1,19 @@ +{ + "slug": "kung-fury-street-rage-ultimate-edition", + "name": "Kung Fury: Street Rage - Ultimate Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122829249" + ], + "release_date": "2023-03-15", + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 4" + ], + "developers": [ + "Hello There Games" + ], + "publishers": [ + "Hello There Games" + ] +} diff --git a/data/game/ky/kyukyoku-tiger-heli.json b/data/game/ky/kyukyoku-tiger-heli.json new file mode 100644 index 000000000000..492135dc6c5d --- /dev/null +++ b/data/game/ky/kyukyoku-tiger-heli.json @@ -0,0 +1,20 @@ +{ + "slug": "kyukyoku-tiger-heli", + "name": "Kyukyoku Tiger-Heli", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q129647247" + ], + "release_date": "2021-10-28", + "platforms": [ + "PlayStation 4" + ], + "developers": [ + "M2", + "Toaplan" + ], + "publishers": [ + "M2", + "Limited Run Games" + ] +} diff --git a/data/game/l-/l-a-noire-reefer-madness.json b/data/game/l-/l-a-noire-reefer-madness.json new file mode 100644 index 000000000000..57a0ae2ad99a --- /dev/null +++ b/data/game/l-/l-a-noire-reefer-madness.json @@ -0,0 +1,8 @@ +{ + "slug": "l-a-noire-reefer-madness", + "name": "L.A. Noire: Reefer Madness", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127156379" + ] +} diff --git a/data/game/l-/l-a-noire-the-complete-edition.json b/data/game/l-/l-a-noire-the-complete-edition.json new file mode 100644 index 000000000000..edd5fd77ec58 --- /dev/null +++ b/data/game/l-/l-a-noire-the-complete-edition.json @@ -0,0 +1,8 @@ +{ + "slug": "l-a-noire-the-complete-edition", + "name": "L.A. Noire: The Complete Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127156486" + ] +} diff --git a/data/game/la/lacuna-prologue.json b/data/game/la/lacuna-prologue.json new file mode 100644 index 000000000000..13e9ed0e2628 --- /dev/null +++ b/data/game/la/lacuna-prologue.json @@ -0,0 +1,12 @@ +{ + "slug": "lacuna-prologue", + "name": "Lacuna: Prologue", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131562290" + ], + "release_date": "2021-04-22", + "platforms": [ + "Microsoft Windows" + ] +} diff --git a/data/game/la/lambdamoo.json b/data/game/la/lambdamoo.json new file mode 100644 index 000000000000..3cd943cc4005 --- /dev/null +++ b/data/game/la/lambdamoo.json @@ -0,0 +1,18 @@ +{ + "slug": "lambdamoo", + "name": "LambdaMOO", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6481091" + ], + "release_date": "1990-01-01", + "platforms": [ + "cross-platform" + ], + "genres": [ + "MUD" + ], + "developers": [ + "Pavel Curtis" + ] +} diff --git a/data/game/la/land-of-dangun.json b/data/game/la/land-of-dangun.json new file mode 100644 index 000000000000..744fa7aa36b8 --- /dev/null +++ b/data/game/la/land-of-dangun.json @@ -0,0 +1,8 @@ +{ + "slug": "land-of-dangun", + "name": "Land of Dangun", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q19349323" + ] +} diff --git a/data/game/la/language-pack.json b/data/game/la/language-pack.json new file mode 100644 index 000000000000..94fbd138e337 --- /dev/null +++ b/data/game/la/language-pack.json @@ -0,0 +1,8 @@ +{ + "slug": "language-pack", + "name": "Language Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126186110" + ] +} diff --git a/data/game/la/laser-squad-kit-1.json b/data/game/la/laser-squad-kit-1.json new file mode 100644 index 000000000000..251870b28be3 --- /dev/null +++ b/data/game/la/laser-squad-kit-1.json @@ -0,0 +1,8 @@ +{ + "slug": "laser-squad-kit-1", + "name": "Laser Squad - Kit 1", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63163709" + ] +} diff --git a/data/game/la/layers-of-fear-inheritance.json b/data/game/la/layers-of-fear-inheritance.json new file mode 100644 index 000000000000..d30cdef9a489 --- /dev/null +++ b/data/game/la/layers-of-fear-inheritance.json @@ -0,0 +1,23 @@ +{ + "slug": "layers-of-fear-inheritance", + "name": "Layers of Fear: Inheritance", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60837414" + ], + "release_date": "2016-01-01", + "platforms": [ + "PlayStation 4", + "macOS", + "Microsoft Windows" + ], + "genres": [ + "psychological horror fiction" + ], + "developers": [ + "Bloober Team" + ], + "publishers": [ + "Aspyr" + ] +} diff --git a/data/game/la/layton-s-mystery-journey.json b/data/game/la/layton-s-mystery-journey.json new file mode 100644 index 000000000000..b66f54f3586b --- /dev/null +++ b/data/game/la/layton-s-mystery-journey.json @@ -0,0 +1,19 @@ +{ + "slug": "layton-s-mystery-journey", + "name": "Layton’s Mystery Journey+", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107983422" + ], + "release_date": "2021-09-03", + "platforms": [ + "iPadOS", + "iOS" + ], + "developers": [ + "Level-5" + ], + "publishers": [ + "Level-5" + ] +} diff --git a/data/game/le/leela-zero.json b/data/game/le/leela-zero.json new file mode 100644 index 000000000000..93f88efe86b0 --- /dev/null +++ b/data/game/le/leela-zero.json @@ -0,0 +1,11 @@ +{ + "slug": "leela-zero", + "name": "Leela Zero", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q48938060" + ], + "developers": [ + "Gian-Carlo Pascutto" + ] +} diff --git a/data/game/le/leela.json b/data/game/le/leela.json new file mode 100644 index 000000000000..6e0f9bc94ae7 --- /dev/null +++ b/data/game/le/leela.json @@ -0,0 +1,11 @@ +{ + "slug": "leela", + "name": "Leela", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q43227078" + ], + "developers": [ + "Gian-Carlo Pascutto" + ] +} diff --git a/data/game/le/left-4-dead-2-demo.json b/data/game/le/left-4-dead-2-demo.json new file mode 100644 index 000000000000..e49a2ebff3b1 --- /dev/null +++ b/data/game/le/left-4-dead-2-demo.json @@ -0,0 +1,21 @@ +{ + "slug": "left-4-dead-2-demo", + "name": "Left 4 Dead 2 Demo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122658430" + ], + "release_date": "2009-10-28", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter" + ], + "developers": [ + "Valve Corporation" + ], + "publishers": [ + "Valve Corporation" + ] +} diff --git a/data/game/le/left-4-dead-2-the-passing.json b/data/game/le/left-4-dead-2-the-passing.json new file mode 100644 index 000000000000..41aef1e6c425 --- /dev/null +++ b/data/game/le/left-4-dead-2-the-passing.json @@ -0,0 +1,8 @@ +{ + "slug": "left-4-dead-2-the-passing", + "name": "Left 4 Dead 2: The Passing", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127156706" + ] +} diff --git a/data/game/le/left-4-dead-3.json b/data/game/le/left-4-dead-3.json new file mode 100644 index 000000000000..015fdc209651 --- /dev/null +++ b/data/game/le/left-4-dead-3.json @@ -0,0 +1,17 @@ +{ + "slug": "left-4-dead-3", + "name": "Left 4 Dead 3", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q89270530" + ], + "genres": [ + "survival horror" + ], + "developers": [ + "Valve Corporation" + ], + "publishers": [ + "Valve Corporation" + ] +} diff --git a/data/game/le/left-4-dead-bundle.json b/data/game/le/left-4-dead-bundle.json new file mode 100644 index 000000000000..4dccab344f81 --- /dev/null +++ b/data/game/le/left-4-dead-bundle.json @@ -0,0 +1,12 @@ +{ + "slug": "left-4-dead-bundle", + "name": "Left 4 Dead Bundle", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q71192586" + ], + "release_date": "2016-06-10", + "platforms": [ + "Microsoft Windows" + ] +} diff --git a/data/game/le/left-4-dead-demo.json b/data/game/le/left-4-dead-demo.json new file mode 100644 index 000000000000..133ff2fe93bf --- /dev/null +++ b/data/game/le/left-4-dead-demo.json @@ -0,0 +1,21 @@ +{ + "slug": "left-4-dead-demo", + "name": "Left 4 Dead Demo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122658398" + ], + "release_date": "2008-11-06", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter" + ], + "developers": [ + "Valve Corporation" + ], + "publishers": [ + "Valve Corporation" + ] +} diff --git a/data/game/le/legacy-of-romulus.json b/data/game/le/legacy-of-romulus.json new file mode 100644 index 000000000000..3240740af200 --- /dev/null +++ b/data/game/le/legacy-of-romulus.json @@ -0,0 +1,9 @@ +{ + "slug": "legacy-of-romulus", + "name": "Legacy of Romulus", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q57973873" + ], + "release_date": "2013-05-21" +} diff --git a/data/game/le/legend-online-ii.json b/data/game/le/legend-online-ii.json new file mode 100644 index 000000000000..fe4bc355885d --- /dev/null +++ b/data/game/le/legend-online-ii.json @@ -0,0 +1,8 @@ +{ + "slug": "legend-online-ii", + "name": "Legend Online II", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18766768" + ] +} diff --git a/data/game/le/legends-of-eisenwald-knight-s-pack.json b/data/game/le/legends-of-eisenwald-knight-s-pack.json new file mode 100644 index 000000000000..2fcd6fc0bb65 --- /dev/null +++ b/data/game/le/legends-of-eisenwald-knight-s-pack.json @@ -0,0 +1,9 @@ +{ + "slug": "legends-of-eisenwald-knight-s-pack", + "name": "Legends of Eisenwald: Knight's Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120965766" + ], + "release_date": "2015-07-02" +} diff --git a/data/game/le/legends-of-eisenwald-road-to-iron-forest.json b/data/game/le/legends-of-eisenwald-road-to-iron-forest.json new file mode 100644 index 000000000000..d2e962f81322 --- /dev/null +++ b/data/game/le/legends-of-eisenwald-road-to-iron-forest.json @@ -0,0 +1,18 @@ +{ + "slug": "legends-of-eisenwald-road-to-iron-forest", + "name": "Legends of Eisenwald: Road to Iron Forest", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120965740" + ], + "release_date": "2015-11-05", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Aterdux Entertainment" + ], + "publishers": [ + "Aterdux Entertainment" + ] +} diff --git a/data/game/le/legends-of-eisenwald-season-pass.json b/data/game/le/legends-of-eisenwald-season-pass.json new file mode 100644 index 000000000000..929801ac247c --- /dev/null +++ b/data/game/le/legends-of-eisenwald-season-pass.json @@ -0,0 +1,18 @@ +{ + "slug": "legends-of-eisenwald-season-pass", + "name": "Legends of Eisenwald Season Pass", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120965734" + ], + "release_date": "2015-11-05", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Aterdux Entertainment" + ], + "publishers": [ + "Aterdux Entertainment" + ] +} diff --git a/data/game/le/lego-duplo-world-q122704734.json b/data/game/le/lego-duplo-world-q122704734.json new file mode 100644 index 000000000000..3e3da80580b2 --- /dev/null +++ b/data/game/le/lego-duplo-world-q122704734.json @@ -0,0 +1,13 @@ +{ + "slug": "lego-duplo-world-q122704734", + "name": "Lego Duplo World+", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122704734" + ], + "release_date": "2023-07-07", + "platforms": [ + "iPadOS", + "iOS" + ] +} diff --git a/data/game/le/lego-marvel-s-avengers-deluxe-edition.json b/data/game/le/lego-marvel-s-avengers-deluxe-edition.json new file mode 100644 index 000000000000..dffed49a0f7c --- /dev/null +++ b/data/game/le/lego-marvel-s-avengers-deluxe-edition.json @@ -0,0 +1,8 @@ +{ + "slug": "lego-marvel-s-avengers-deluxe-edition", + "name": "LEGO Marvel’s Avengers Deluxe Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q92203710" + ] +} diff --git a/data/game/le/lego-star-wars-the-force-awakens-deluxe-edition.json b/data/game/le/lego-star-wars-the-force-awakens-deluxe-edition.json new file mode 100644 index 000000000000..360e099ffe93 --- /dev/null +++ b/data/game/le/lego-star-wars-the-force-awakens-deluxe-edition.json @@ -0,0 +1,8 @@ +{ + "slug": "lego-star-wars-the-force-awakens-deluxe-edition", + "name": "LEGO Star Wars: The Force Awakens Deluxe Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q92203826" + ] +} diff --git a/data/game/le/lego-star-wars-the-skywalker-saga-deluxe-edition.json b/data/game/le/lego-star-wars-the-skywalker-saga-deluxe-edition.json new file mode 100644 index 000000000000..68aef105b5f6 --- /dev/null +++ b/data/game/le/lego-star-wars-the-skywalker-saga-deluxe-edition.json @@ -0,0 +1,21 @@ +{ + "slug": "lego-star-wars-the-skywalker-saga-deluxe-edition", + "name": "Lego Star Wars: The Skywalker Saga Deluxe Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111781304" + ], + "release_date": "2022-04-05", + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 5", + "PlayStation 4", + "Microsoft Windows" + ], + "developers": [ + "TT Games" + ], + "publishers": [ + "Warner Bros. Games" + ] +} diff --git a/data/game/le/leisure-suit-larry-collection.json b/data/game/le/leisure-suit-larry-collection.json new file mode 100644 index 000000000000..4bf6a0095951 --- /dev/null +++ b/data/game/le/leisure-suit-larry-collection.json @@ -0,0 +1,19 @@ +{ + "slug": "leisure-suit-larry-collection", + "name": "Leisure Suit Larry Collection", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q101579746" + ], + "release_date": "2006-09-15", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "erotic video game", + "point-and-click adventure" + ], + "publishers": [ + "Sierra Entertainment" + ] +} diff --git a/data/game/le/leisure-suit-larry-magna-cum-laude-demo.json b/data/game/le/leisure-suit-larry-magna-cum-laude-demo.json new file mode 100644 index 000000000000..92e3f230af3b --- /dev/null +++ b/data/game/le/leisure-suit-larry-magna-cum-laude-demo.json @@ -0,0 +1,14 @@ +{ + "slug": "leisure-suit-larry-magna-cum-laude-demo", + "name": "Leisure Suit Larry: Magna Cum Laude demo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q103015928" + ], + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "High Voltage Software" + ] +} diff --git a/data/game/le/leisure-suit-larry-s-casino-demo.json b/data/game/le/leisure-suit-larry-s-casino-demo.json new file mode 100644 index 000000000000..922def229b91 --- /dev/null +++ b/data/game/le/leisure-suit-larry-s-casino-demo.json @@ -0,0 +1,21 @@ +{ + "slug": "leisure-suit-larry-s-casino-demo", + "name": "Leisure Suit Larry's Casino demo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q103820429" + ], + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "erotic video game", + "gambling video game" + ], + "developers": [ + "Sierra Entertainment" + ], + "publishers": [ + "Sierra Entertainment" + ] +} diff --git a/data/game/le/leisure-suit-larry-vii-love-for-sail-demo.json b/data/game/le/leisure-suit-larry-vii-love-for-sail-demo.json new file mode 100644 index 000000000000..e9f2115fde4b --- /dev/null +++ b/data/game/le/leisure-suit-larry-vii-love-for-sail-demo.json @@ -0,0 +1,11 @@ +{ + "slug": "leisure-suit-larry-vii-love-for-sail-demo", + "name": "Leisure Suit Larry VII: Love for Sail! demo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q104243707" + ], + "platforms": [ + "Microsoft Windows" + ] +} diff --git a/data/game/le/leo-s-fortune-q107147662.json b/data/game/le/leo-s-fortune-q107147662.json new file mode 100644 index 000000000000..2afd98dcd420 --- /dev/null +++ b/data/game/le/leo-s-fortune-q107147662.json @@ -0,0 +1,17 @@ +{ + "slug": "leo-s-fortune-q107147662", + "name": "Leo's Fortune+", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107147662" + ], + "release_date": "2021-06-25", + "platforms": [ + "tvOS", + "iPadOS", + "iOS" + ], + "genres": [ + "platformer" + ] +} diff --git a/data/game/le/let-s-build-a-zoo-dinosaur-island.json b/data/game/le/let-s-build-a-zoo-dinosaur-island.json new file mode 100644 index 000000000000..f2cbde26634e --- /dev/null +++ b/data/game/le/let-s-build-a-zoo-dinosaur-island.json @@ -0,0 +1,18 @@ +{ + "slug": "let-s-build-a-zoo-dinosaur-island", + "name": "Let's Build a Zoo: Dinosaur Island", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112183291" + ], + "release_date": "2022-05-26", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "construction and management simulation" + ], + "publishers": [ + "No More Robots" + ] +} diff --git a/data/game/le/let-s-tv-play-classic.json b/data/game/le/let-s-tv-play-classic.json new file mode 100644 index 000000000000..ae41fb5e92cb --- /dev/null +++ b/data/game/le/let-s-tv-play-classic.json @@ -0,0 +1,8 @@ +{ + "slug": "let-s-tv-play-classic", + "name": "Let's! TV play classic", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6532213" + ] +} diff --git a/data/game/le/lethal-enforcers-i-ii.json b/data/game/le/lethal-enforcers-i-ii.json new file mode 100644 index 000000000000..973ae9dd81ae --- /dev/null +++ b/data/game/le/lethal-enforcers-i-ii.json @@ -0,0 +1,9 @@ +{ + "slug": "lethal-enforcers-i-ii", + "name": "Lethal Enforcers I & II", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109457153" + ], + "release_date": "1997-01-01" +} diff --git a/data/game/lg/lgames.json b/data/game/lg/lgames.json new file mode 100644 index 000000000000..f454f30d18b3 --- /dev/null +++ b/data/game/lg/lgames.json @@ -0,0 +1,8 @@ +{ + "slug": "lgames", + "name": "LGames", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123466569" + ] +} diff --git a/data/game/li/liberated-enhanced-edition.json b/data/game/li/liberated-enhanced-edition.json new file mode 100644 index 000000000000..9d483c59482a --- /dev/null +++ b/data/game/li/liberated-enhanced-edition.json @@ -0,0 +1,15 @@ +{ + "slug": "liberated-enhanced-edition", + "name": "Liberated: Enhanced Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111821055" + ], + "release_date": "2022-04-20", + "platforms": [ + "Xbox Series X and Series S" + ], + "publishers": [ + "Walkabout Games" + ] +} diff --git a/data/game/li/liberty-bell.json b/data/game/li/liberty-bell.json new file mode 100644 index 000000000000..ca6afa304953 --- /dev/null +++ b/data/game/li/liberty-bell.json @@ -0,0 +1,8 @@ +{ + "slug": "liberty-bell", + "name": "Liberty Bell", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16932658" + ] +} diff --git a/data/game/li/lichess.json b/data/game/li/lichess.json new file mode 100644 index 000000000000..7dd207552619 --- /dev/null +++ b/data/game/li/lichess.json @@ -0,0 +1,12 @@ +{ + "slug": "lichess", + "name": "Lichess", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q19831807" + ], + "developers": [ + "Thibault Duplessis", + "Niklas Fiekas" + ] +} diff --git a/data/game/li/lierolibre.json b/data/game/li/lierolibre.json new file mode 100644 index 000000000000..733fb7b5f198 --- /dev/null +++ b/data/game/li/lierolibre.json @@ -0,0 +1,8 @@ +{ + "slug": "lierolibre", + "name": "lierolibre", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120721801" + ] +} diff --git a/data/game/li/life-by-you.json b/data/game/li/life-by-you.json new file mode 100644 index 000000000000..a3ac1519a635 --- /dev/null +++ b/data/game/li/life-by-you.json @@ -0,0 +1,20 @@ +{ + "slug": "life-by-you", + "name": "Life by You", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117004828" + ], + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ], + "developers": [ + "Paradox Tectonic" + ], + "publishers": [ + "Paradox Interactive" + ] +} diff --git a/data/game/li/life-is-strange-2-episode-1-roads.json b/data/game/li/life-is-strange-2-episode-1-roads.json new file mode 100644 index 000000000000..64e85b56cf6d --- /dev/null +++ b/data/game/li/life-is-strange-2-episode-1-roads.json @@ -0,0 +1,22 @@ +{ + "slug": "life-is-strange-2-episode-1-roads", + "name": "Life Is Strange 2: Episode 1 - Roads", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136511443" + ], + "release_date": "2018-09-27", + "platforms": [ + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "adventure video game" + ], + "developers": [ + "Don’t Nod" + ], + "publishers": [ + "Square Enix" + ] +} diff --git a/data/game/li/life-is-strange-remastered-collection.json b/data/game/li/life-is-strange-remastered-collection.json new file mode 100644 index 000000000000..11543ee8869b --- /dev/null +++ b/data/game/li/life-is-strange-remastered-collection.json @@ -0,0 +1,20 @@ +{ + "slug": "life-is-strange-remastered-collection", + "name": "Life is Strange Remastered Collection", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110775460" + ], + "release_date": "2022-02-01", + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 4", + "Microsoft Windows" + ], + "developers": [ + "Deck Nine" + ], + "publishers": [ + "Square Enix" + ] +} diff --git a/data/game/li/lifeblood-q116592516.json b/data/game/li/lifeblood-q116592516.json new file mode 100644 index 000000000000..6c4aedc6c248 --- /dev/null +++ b/data/game/li/lifeblood-q116592516.json @@ -0,0 +1,12 @@ +{ + "slug": "lifeblood-q116592516", + "name": "Lifeblood", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116592516" + ], + "release_date": "2018-04-20", + "developers": [ + "Team Cherry" + ] +} diff --git a/data/game/li/lifeline-q116720201.json b/data/game/li/lifeline-q116720201.json new file mode 100644 index 000000000000..d6940b8fc681 --- /dev/null +++ b/data/game/li/lifeline-q116720201.json @@ -0,0 +1,13 @@ +{ + "slug": "lifeline-q116720201", + "name": "Lifeline+", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116720201" + ], + "release_date": "2023-02-24", + "platforms": [ + "iPadOS", + "iOS" + ] +} diff --git a/data/game/li/lifesaver-donation.json b/data/game/li/lifesaver-donation.json new file mode 100644 index 000000000000..35151d59ed85 --- /dev/null +++ b/data/game/li/lifesaver-donation.json @@ -0,0 +1,22 @@ +{ + "slug": "lifesaver-donation", + "name": "Lifesaver donation", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62027700" + ], + "release_date": "2019-03-11", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "casual game", + "advergame" + ], + "developers": [ + "SS Studios" + ], + "publishers": [ + "SS Studios" + ] +} diff --git a/data/game/li/lilith-izm.json b/data/game/li/lilith-izm.json new file mode 100644 index 000000000000..2db2ffa79d9a --- /dev/null +++ b/data/game/li/lilith-izm.json @@ -0,0 +1,11 @@ +{ + "slug": "lilith-izm", + "name": "LILITH-IZM", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17231388" + ], + "developers": [ + "Lilith" + ] +} diff --git a/data/game/li/limbo-q118234805.json b/data/game/li/limbo-q118234805.json new file mode 100644 index 000000000000..8d836968d38c --- /dev/null +++ b/data/game/li/limbo-q118234805.json @@ -0,0 +1,14 @@ +{ + "slug": "limbo-q118234805", + "name": "Limbo+", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118234805" + ], + "release_date": "2023-05-04", + "platforms": [ + "iPadOS", + "iOS", + "macOS" + ] +} diff --git a/data/game/li/limit-theory.json b/data/game/li/limit-theory.json new file mode 100644 index 000000000000..38a096da88c6 --- /dev/null +++ b/data/game/li/limit-theory.json @@ -0,0 +1,17 @@ +{ + "slug": "limit-theory", + "name": "Limit Theory", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113381288" + ], + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "sandbox game", + "real-time strategy", + "role-playing video game" + ] +} diff --git a/data/game/li/lineage-ii-the-chaotic-throne-the-kamael-the-1st-throne.json b/data/game/li/lineage-ii-the-chaotic-throne-the-kamael-the-1st-throne.json new file mode 100644 index 000000000000..198336f695b2 --- /dev/null +++ b/data/game/li/lineage-ii-the-chaotic-throne-the-kamael-the-1st-throne.json @@ -0,0 +1,15 @@ +{ + "slug": "lineage-ii-the-chaotic-throne-the-kamael-the-1st-throne", + "name": "Lineage II: The Chaotic Throne - The Kamael: The 1st Throne", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130720186" + ], + "release_date": "2007-12-12", + "platforms": [ + "Microsoft Windows" + ], + "publishers": [ + "NC" + ] +} diff --git a/data/game/li/linux-doom.json b/data/game/li/linux-doom.json new file mode 100644 index 000000000000..02051ca377af --- /dev/null +++ b/data/game/li/linux-doom.json @@ -0,0 +1,11 @@ +{ + "slug": "linux-doom", + "name": "Linux Doom", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q67198928" + ], + "developers": [ + "Dave Taylor" + ] +} diff --git a/data/game/li/lips-egao-no-yukue.json b/data/game/li/lips-egao-no-yukue.json new file mode 100644 index 000000000000..ea0f713abb83 --- /dev/null +++ b/data/game/li/lips-egao-no-yukue.json @@ -0,0 +1,15 @@ +{ + "slug": "lips-egao-no-yukue", + "name": "Lips ~Egao no Yukue~", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136334109" + ], + "genres": [ + "eroge", + "simulation video game" + ], + "developers": [ + "I've Sound" + ] +} diff --git a/data/game/li/lisa-the-joyful.json b/data/game/li/lisa-the-joyful.json new file mode 100644 index 000000000000..8de226c1bcb5 --- /dev/null +++ b/data/game/li/lisa-the-joyful.json @@ -0,0 +1,13 @@ +{ + "slug": "lisa-the-joyful", + "name": "LISA the Joyful", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105697098" + ], + "release_date": "2015-08-24", + "platforms": [ + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/game/li/little-kitty-big-city-demo.json b/data/game/li/little-kitty-big-city-demo.json new file mode 100644 index 000000000000..cd6ebfad1294 --- /dev/null +++ b/data/game/li/little-kitty-big-city-demo.json @@ -0,0 +1,22 @@ +{ + "slug": "little-kitty-big-city-demo", + "name": "Little Kitty, Big City Demo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122131059" + ], + "release_date": "2023-06-17", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "adventure video game", + "simulation video game" + ], + "developers": [ + "Double Dagger Studio" + ], + "publishers": [ + "Double Dagger Studio" + ] +} diff --git a/data/game/ll/llamasoft-the-jeff-minter-story.json b/data/game/ll/llamasoft-the-jeff-minter-story.json new file mode 100644 index 000000000000..52c525d41974 --- /dev/null +++ b/data/game/ll/llamasoft-the-jeff-minter-story.json @@ -0,0 +1,24 @@ +{ + "slug": "llamasoft-the-jeff-minter-story", + "name": "Llamasoft: The Jeff Minter Story", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124612851" + ], + "release_date": "2024-03-13", + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 5", + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "arcade" + ], + "developers": [ + "Digital Eclipse" + ], + "publishers": [ + "Digital Eclipse" + ] +} diff --git a/data/game/lm/lmno.json b/data/game/lm/lmno.json new file mode 100644 index 000000000000..ab87b6908374 --- /dev/null +++ b/data/game/lm/lmno.json @@ -0,0 +1,20 @@ +{ + "slug": "lmno", + "name": "LMNO", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6459049" + ], + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter" + ], + "developers": [ + "Electronic Arts" + ], + "publishers": [ + "Electronic Arts" + ] +} diff --git a/data/game/lo/lobotomy-corporation-art-book.json b/data/game/lo/lobotomy-corporation-art-book.json new file mode 100644 index 000000000000..243194e79eb3 --- /dev/null +++ b/data/game/lo/lobotomy-corporation-art-book.json @@ -0,0 +1,15 @@ +{ + "slug": "lobotomy-corporation-art-book", + "name": "Lobotomy Corporation Art Book", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q78788605" + ], + "release_date": "2018-07-13", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ] +} diff --git a/data/game/lo/lode-runner-q65056784.json b/data/game/lo/lode-runner-q65056784.json new file mode 100644 index 000000000000..770361e6fa67 --- /dev/null +++ b/data/game/lo/lode-runner-q65056784.json @@ -0,0 +1,8 @@ +{ + "slug": "lode-runner-q65056784", + "name": "Lode Runner", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q65056784" + ] +} diff --git a/data/game/lo/logistical-2-indonesia-bundle.json b/data/game/lo/logistical-2-indonesia-bundle.json new file mode 100644 index 000000000000..b73a0719ed6f --- /dev/null +++ b/data/game/lo/logistical-2-indonesia-bundle.json @@ -0,0 +1,18 @@ +{ + "slug": "logistical-2-indonesia-bundle", + "name": "LOGistICAL 2: Indonesia - Bundle", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117833432" + ], + "release_date": "2019-09-17", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Sacada" + ], + "publishers": [ + "Sacada" + ] +} diff --git a/data/game/lo/logistical-2-indonesia-sample.json b/data/game/lo/logistical-2-indonesia-sample.json new file mode 100644 index 000000000000..45fa53c68f2e --- /dev/null +++ b/data/game/lo/logistical-2-indonesia-sample.json @@ -0,0 +1,18 @@ +{ + "slug": "logistical-2-indonesia-sample", + "name": "LOGistICAL 2: Indonesia - Sample", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117833428" + ], + "release_date": "2019-08-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Sacada" + ], + "publishers": [ + "Sacada" + ] +} diff --git a/data/game/lo/logistical-2-mall-rats.json b/data/game/lo/logistical-2-mall-rats.json new file mode 100644 index 000000000000..1049efe2138f --- /dev/null +++ b/data/game/lo/logistical-2-mall-rats.json @@ -0,0 +1,18 @@ +{ + "slug": "logistical-2-mall-rats", + "name": "LOGistICAL 2: Mall Rats", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117833450" + ], + "release_date": "2019-12-02", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Sacada" + ], + "publishers": [ + "Sacada" + ] +} diff --git a/data/game/lo/logistical-2-suriname-xmas-2018.json b/data/game/lo/logistical-2-suriname-xmas-2018.json new file mode 100644 index 000000000000..0031cdc4acd2 --- /dev/null +++ b/data/game/lo/logistical-2-suriname-xmas-2018.json @@ -0,0 +1,18 @@ +{ + "slug": "logistical-2-suriname-xmas-2018", + "name": "LOGistICAL 2 - Suriname (Xmas 2018)", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117833427" + ], + "release_date": "2019-08-11", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Sacada" + ], + "publishers": [ + "Sacada" + ] +} diff --git a/data/game/lo/logistical-2-sweden.json b/data/game/lo/logistical-2-sweden.json new file mode 100644 index 000000000000..64591ec03a3c --- /dev/null +++ b/data/game/lo/logistical-2-sweden.json @@ -0,0 +1,18 @@ +{ + "slug": "logistical-2-sweden", + "name": "LOGistICAL 2: Sweden", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117833451" + ], + "release_date": "2020-01-31", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Sacada" + ], + "publishers": [ + "Sacada" + ] +} diff --git a/data/game/lo/logistical-2-usa-texas-bundle.json b/data/game/lo/logistical-2-usa-texas-bundle.json new file mode 100644 index 000000000000..b242063f9e74 --- /dev/null +++ b/data/game/lo/logistical-2-usa-texas-bundle.json @@ -0,0 +1,18 @@ +{ + "slug": "logistical-2-usa-texas-bundle", + "name": "LOGistICAL 2: USA - Texas - Bundle", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117833441" + ], + "release_date": "2019-10-03", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Sacada" + ], + "publishers": [ + "Sacada" + ] +} diff --git a/data/game/lo/logistical-2-usa-texas-sample.json b/data/game/lo/logistical-2-usa-texas-sample.json new file mode 100644 index 000000000000..024c48343374 --- /dev/null +++ b/data/game/lo/logistical-2-usa-texas-sample.json @@ -0,0 +1,18 @@ +{ + "slug": "logistical-2-usa-texas-sample", + "name": "LOGistICAL 2: USA - Texas - Sample", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117833436" + ], + "release_date": "2019-10-03", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Sacada" + ], + "publishers": [ + "Sacada" + ] +} diff --git a/data/game/lo/logistical-2-vampires-bundle.json b/data/game/lo/logistical-2-vampires-bundle.json new file mode 100644 index 000000000000..4d470c4e5846 --- /dev/null +++ b/data/game/lo/logistical-2-vampires-bundle.json @@ -0,0 +1,18 @@ +{ + "slug": "logistical-2-vampires-bundle", + "name": "LOGistICAL 2: Vampires - Bundle", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117833449" + ], + "release_date": "2019-11-06", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Sacada" + ], + "publishers": [ + "Sacada" + ] +} diff --git a/data/game/lo/logistical-2-vampires-sample.json b/data/game/lo/logistical-2-vampires-sample.json new file mode 100644 index 000000000000..20aee7bfae62 --- /dev/null +++ b/data/game/lo/logistical-2-vampires-sample.json @@ -0,0 +1,18 @@ +{ + "slug": "logistical-2-vampires-sample", + "name": "LOGistICAL 2: Vampires - Sample", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117833445" + ], + "release_date": "2019-10-27", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Sacada" + ], + "publishers": [ + "Sacada" + ] +} diff --git a/data/game/lo/logistical-2-washington.json b/data/game/lo/logistical-2-washington.json new file mode 100644 index 000000000000..6b3224a4452b --- /dev/null +++ b/data/game/lo/logistical-2-washington.json @@ -0,0 +1,18 @@ +{ + "slug": "logistical-2-washington", + "name": "LOGistICAL 2: Washington", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117833429" + ], + "release_date": "2019-09-04", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Sacada" + ], + "publishers": [ + "Sacada" + ] +} diff --git a/data/game/lo/logistical-canada.json b/data/game/lo/logistical-canada.json new file mode 100644 index 000000000000..c2e958edb18f --- /dev/null +++ b/data/game/lo/logistical-canada.json @@ -0,0 +1,18 @@ +{ + "slug": "logistical-canada", + "name": "LOGistICAL - Canada", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117833423" + ], + "release_date": "2017-07-10", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Sacada" + ], + "publishers": [ + "Sacada" + ] +} diff --git a/data/game/lo/logistical-egypt.json b/data/game/lo/logistical-egypt.json new file mode 100644 index 000000000000..6f4bfd8274ea --- /dev/null +++ b/data/game/lo/logistical-egypt.json @@ -0,0 +1,18 @@ +{ + "slug": "logistical-egypt", + "name": "LOGistICAL - Egypt", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117833426" + ], + "release_date": "2017-06-30", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Sacada" + ], + "publishers": [ + "Sacada" + ] +} diff --git a/data/game/lo/logistical-germany.json b/data/game/lo/logistical-germany.json new file mode 100644 index 000000000000..36cc9cdc826a --- /dev/null +++ b/data/game/lo/logistical-germany.json @@ -0,0 +1,18 @@ +{ + "slug": "logistical-germany", + "name": "LOGistICAL - Germany", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117833422" + ], + "release_date": "2017-06-15", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Sacada" + ], + "publishers": [ + "Sacada" + ] +} diff --git a/data/game/lo/logistical-new-zealand.json b/data/game/lo/logistical-new-zealand.json new file mode 100644 index 000000000000..b22856aede51 --- /dev/null +++ b/data/game/lo/logistical-new-zealand.json @@ -0,0 +1,18 @@ +{ + "slug": "logistical-new-zealand", + "name": "LOGistICAL - New Zealand", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117833420" + ], + "release_date": "2017-04-25", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Sacada" + ], + "publishers": [ + "Sacada" + ] +} diff --git a/data/game/lo/logistical-the-netherlands.json b/data/game/lo/logistical-the-netherlands.json new file mode 100644 index 000000000000..67b89940c14f --- /dev/null +++ b/data/game/lo/logistical-the-netherlands.json @@ -0,0 +1,18 @@ +{ + "slug": "logistical-the-netherlands", + "name": "LOGistICAL - The Netherlands", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117833421" + ], + "release_date": "2017-05-12", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Sacada" + ], + "publishers": [ + "Sacada" + ] +} diff --git a/data/game/lo/logistical-usa-california.json b/data/game/lo/logistical-usa-california.json new file mode 100644 index 000000000000..9728611c7522 --- /dev/null +++ b/data/game/lo/logistical-usa-california.json @@ -0,0 +1,18 @@ +{ + "slug": "logistical-usa-california", + "name": "LOGistICAL - USA - California", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117833425" + ], + "release_date": "2017-05-26", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Sacada" + ], + "publishers": [ + "Sacada" + ] +} diff --git a/data/game/lo/logistical-usa-hawaii.json b/data/game/lo/logistical-usa-hawaii.json new file mode 100644 index 000000000000..00839601b8ae --- /dev/null +++ b/data/game/lo/logistical-usa-hawaii.json @@ -0,0 +1,18 @@ +{ + "slug": "logistical-usa-hawaii", + "name": "LOGistICAL - USA - Hawaii", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117833424" + ], + "release_date": "2017-06-02", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Sacada" + ], + "publishers": [ + "Sacada" + ] +} diff --git a/data/game/lo/long-road-ahead.json b/data/game/lo/long-road-ahead.json new file mode 100644 index 000000000000..25767e94e482 --- /dev/null +++ b/data/game/lo/long-road-ahead.json @@ -0,0 +1,15 @@ +{ + "slug": "long-road-ahead", + "name": "Long Road Ahead", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16746431" + ], + "release_date": "2012-10-18", + "platforms": [ + "PlayStation 4" + ], + "developers": [ + "Telltale Games" + ] +} diff --git a/data/game/lo/lords-of-magic-legends-of-urak.json b/data/game/lo/lords-of-magic-legends-of-urak.json new file mode 100644 index 000000000000..d40f4459df8b --- /dev/null +++ b/data/game/lo/lords-of-magic-legends-of-urak.json @@ -0,0 +1,8 @@ +{ + "slug": "lords-of-magic-legends-of-urak", + "name": "Lords of Magic: Legends of Urak", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110156426" + ] +} diff --git a/data/game/lo/lords-of-the-earth.json b/data/game/lo/lords-of-the-earth.json new file mode 100644 index 000000000000..c1ce17049089 --- /dev/null +++ b/data/game/lo/lords-of-the-earth.json @@ -0,0 +1,9 @@ +{ + "slug": "lords-of-the-earth", + "name": "Lords of the Earth", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115794209" + ], + "release_date": "1983-01-01" +} diff --git a/data/game/lo/lords-of-the-fallen-ancient-labyrinth.json b/data/game/lo/lords-of-the-fallen-ancient-labyrinth.json new file mode 100644 index 000000000000..147204f21ce1 --- /dev/null +++ b/data/game/lo/lords-of-the-fallen-ancient-labyrinth.json @@ -0,0 +1,8 @@ +{ + "slug": "lords-of-the-fallen-ancient-labyrinth", + "name": "Lords of the Fallen: Ancient Labyrinth", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125156631" + ] +} diff --git a/data/game/lo/lorna-q114027887.json b/data/game/lo/lorna-q114027887.json new file mode 100644 index 000000000000..be682bb0bcd0 --- /dev/null +++ b/data/game/lo/lorna-q114027887.json @@ -0,0 +1,8 @@ +{ + "slug": "lorna-q114027887", + "name": "Lorna", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q114027887" + ] +} diff --git a/data/game/lo/lost-on-island.json b/data/game/lo/lost-on-island.json new file mode 100644 index 000000000000..b32fb6c2f415 --- /dev/null +++ b/data/game/lo/lost-on-island.json @@ -0,0 +1,21 @@ +{ + "slug": "lost-on-island", + "name": "Lost on Island", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124059823" + ], + "release_date": "2021-01-01", + "platforms": [ + "PlayStation Vita" + ], + "genres": [ + "survival game" + ], + "developers": [ + "VitaDev Games" + ], + "publishers": [ + "VitaDev Games" + ] +} diff --git a/data/game/lo/lost-phones-stories.json b/data/game/lo/lost-phones-stories.json new file mode 100644 index 000000000000..38bd295d5569 --- /dev/null +++ b/data/game/lo/lost-phones-stories.json @@ -0,0 +1,20 @@ +{ + "slug": "lost-phones-stories", + "name": "Lost Phones Stories", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q91906107" + ], + "release_date": "2018-07-19", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "puzzle video game", + "casual game" + ], + "developers": [ + "Accidental Queens" + ] +} diff --git a/data/game/lo/love-n-war-warlord-by-chance-sisters-of-castus.json b/data/game/lo/love-n-war-warlord-by-chance-sisters-of-castus.json new file mode 100644 index 000000000000..1eb6b57b73bc --- /dev/null +++ b/data/game/lo/love-n-war-warlord-by-chance-sisters-of-castus.json @@ -0,0 +1,18 @@ +{ + "slug": "love-n-war-warlord-by-chance-sisters-of-castus", + "name": "Love n War: Warlord by Chance - Sisters of Castus", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116152656" + ], + "release_date": "2021-09-19", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Reborn Entertainment" + ], + "publishers": [ + "Reborn Entertainment" + ] +} diff --git a/data/game/lo/love-you-to-bits-q113655200.json b/data/game/lo/love-you-to-bits-q113655200.json new file mode 100644 index 000000000000..c9816703ea53 --- /dev/null +++ b/data/game/lo/love-you-to-bits-q113655200.json @@ -0,0 +1,13 @@ +{ + "slug": "love-you-to-bits-q113655200", + "name": "Love You to Bits+", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113655200" + ], + "release_date": "2022-08-26", + "platforms": [ + "iPadOS", + "iOS" + ] +} diff --git a/data/game/lo/lover-boy.json b/data/game/lo/lover-boy.json new file mode 100644 index 000000000000..c2470a71a848 --- /dev/null +++ b/data/game/lo/lover-boy.json @@ -0,0 +1,12 @@ +{ + "slug": "lover-boy", + "name": "Lover Boy", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1872474" + ], + "release_date": "1983-01-01", + "genres": [ + "maze video game" + ] +} diff --git a/data/game/lo/loving-donation.json b/data/game/lo/loving-donation.json new file mode 100644 index 000000000000..6521ff74ceab --- /dev/null +++ b/data/game/lo/loving-donation.json @@ -0,0 +1,22 @@ +{ + "slug": "loving-donation", + "name": "Loving donation", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62027704" + ], + "release_date": "2019-03-11", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "casual game", + "advergame" + ], + "developers": [ + "SS Studios" + ], + "publishers": [ + "SS Studios" + ] +} diff --git a/data/game/lu/lucasarts-classic-adventures.json b/data/game/lu/lucasarts-classic-adventures.json new file mode 100644 index 000000000000..7f0bdca8af09 --- /dev/null +++ b/data/game/lu/lucasarts-classic-adventures.json @@ -0,0 +1,8 @@ +{ + "slug": "lucasarts-classic-adventures", + "name": "Lucasarts Classic Adventures", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125203108" + ] +} diff --git a/data/game/lu/lula-online.json b/data/game/lu/lula-online.json new file mode 100644 index 000000000000..5d0bd96060f5 --- /dev/null +++ b/data/game/lu/lula-online.json @@ -0,0 +1,22 @@ +{ + "slug": "lula-online", + "name": "Lula Online", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q103061515" + ], + "release_date": "2012-02-07", + "platforms": [ + "web browser" + ], + "genres": [ + "massively multiplayer online role-playing game", + "erotic video game" + ], + "developers": [ + "Lula Online" + ], + "publishers": [ + "Lula Online" + ] +} diff --git a/data/game/lu/lula-s-wet-pack.json b/data/game/lu/lula-s-wet-pack.json new file mode 100644 index 000000000000..0b5cf4cf5052 --- /dev/null +++ b/data/game/lu/lula-s-wet-pack.json @@ -0,0 +1,21 @@ +{ + "slug": "lula-s-wet-pack", + "name": "Lula's Wet Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q103057075" + ], + "release_date": "2001-01-01", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "erotic video game" + ], + "developers": [ + "cdv Software Entertainment" + ], + "publishers": [ + "cdv Software Entertainment" + ] +} diff --git a/data/game/lu/lunar-remastered-collection.json b/data/game/lu/lunar-remastered-collection.json new file mode 100644 index 000000000000..68fc8e851f79 --- /dev/null +++ b/data/game/lu/lunar-remastered-collection.json @@ -0,0 +1,23 @@ +{ + "slug": "lunar-remastered-collection", + "name": "Lunar Remastered Collection", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130360705" + ], + "release_date": "2025-04-18", + "platforms": [ + "PlayStation 5", + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "role-playing video game" + ], + "developers": [ + "GungHo Online Entertainment" + ], + "publishers": [ + "GungHo Online Entertainment" + ] +} diff --git a/data/game/lu/luxy-s-space-adventure.json b/data/game/lu/luxy-s-space-adventure.json new file mode 100644 index 000000000000..0aa4a4f2b10e --- /dev/null +++ b/data/game/lu/luxy-s-space-adventure.json @@ -0,0 +1,8 @@ +{ + "slug": "luxy-s-space-adventure", + "name": "Luxy's Space Adventure", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63248186" + ] +} diff --git a/data/game/lz/lzdoom.json b/data/game/lz/lzdoom.json new file mode 100644 index 000000000000..b6a8bd7b105b --- /dev/null +++ b/data/game/lz/lzdoom.json @@ -0,0 +1,8 @@ +{ + "slug": "lzdoom", + "name": "LZDoom", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124452085" + ] +} diff --git a/data/game/m-/m-a-x-m-a-x-2.json b/data/game/m-/m-a-x-m-a-x-2.json new file mode 100644 index 000000000000..b1fdbd0570ca --- /dev/null +++ b/data/game/m-/m-a-x-m-a-x-2.json @@ -0,0 +1,11 @@ +{ + "slug": "m-a-x-m-a-x-2", + "name": "M.A.X. & M.A.X. 2", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q90145130" + ], + "platforms": [ + "macOS" + ] +} diff --git a/data/game/ma/mad-snake.json b/data/game/ma/mad-snake.json new file mode 100644 index 000000000000..4a13210c0325 --- /dev/null +++ b/data/game/ma/mad-snake.json @@ -0,0 +1,16 @@ +{ + "slug": "mad-snake", + "name": "Mad Snake", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138659246" + ], + "release_date": "2026-03-06", + "platforms": [ + "iOS" + ], + "genres": [ + "casual game", + "arcade game" + ] +} diff --git a/data/game/ma/mad.json b/data/game/ma/mad.json new file mode 100644 index 000000000000..5666cdfdbef1 --- /dev/null +++ b/data/game/ma/mad.json @@ -0,0 +1,8 @@ +{ + "slug": "mad", + "name": "MAD", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6714096" + ] +} diff --git a/data/game/ma/mafago-nft.json b/data/game/ma/mafago-nft.json new file mode 100644 index 000000000000..ff5d9da40e80 --- /dev/null +++ b/data/game/ma/mafago-nft.json @@ -0,0 +1,8 @@ +{ + "slug": "mafago-nft", + "name": "Mafago NFT", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112939868" + ] +} diff --git a/data/game/ma/mafia-2-joe-s-adventures.json b/data/game/ma/mafia-2-joe-s-adventures.json new file mode 100644 index 000000000000..f23b7ccc9cc9 --- /dev/null +++ b/data/game/ma/mafia-2-joe-s-adventures.json @@ -0,0 +1,11 @@ +{ + "slug": "mafia-2-joe-s-adventures", + "name": "Mafia 2: Joe's Adventures", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28759740" + ], + "publishers": [ + "Warner Bros. Games" + ] +} diff --git a/data/game/ma/mafia-ii-the-betrayal-of-jimmy.json b/data/game/ma/mafia-ii-the-betrayal-of-jimmy.json new file mode 100644 index 000000000000..294ad7d8be22 --- /dev/null +++ b/data/game/ma/mafia-ii-the-betrayal-of-jimmy.json @@ -0,0 +1,8 @@ +{ + "slug": "mafia-ii-the-betrayal-of-jimmy", + "name": "Mafia II: The Betrayal of Jimmy", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110160974" + ] +} diff --git a/data/game/ma/mafia-trilogy.json b/data/game/ma/mafia-trilogy.json new file mode 100644 index 000000000000..c04ac666ccfa --- /dev/null +++ b/data/game/ma/mafia-trilogy.json @@ -0,0 +1,20 @@ +{ + "slug": "mafia-trilogy", + "name": "Mafia: Trilogy", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q97096253" + ], + "release_date": "2020-05-19", + "platforms": [ + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "action-adventure game", + "third-person shooter" + ], + "publishers": [ + "2K" + ] +} diff --git a/data/game/ma/mafia-triple-pack.json b/data/game/ma/mafia-triple-pack.json new file mode 100644 index 000000000000..22b59ac97cdf --- /dev/null +++ b/data/game/ma/mafia-triple-pack.json @@ -0,0 +1,16 @@ +{ + "slug": "mafia-triple-pack", + "name": "Mafia Triple Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q71192266" + ], + "release_date": "2017-11-21", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "action-adventure game", + "third-person shooter" + ] +} diff --git a/data/game/ma/magic-tennis.json b/data/game/ma/magic-tennis.json new file mode 100644 index 000000000000..57cf464769ab --- /dev/null +++ b/data/game/ma/magic-tennis.json @@ -0,0 +1,11 @@ +{ + "slug": "magic-tennis", + "name": "Magic Tennis", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105478030" + ], + "developers": [ + "Art & Magic" + ] +} diff --git a/data/game/ma/magical-halloween-2.json b/data/game/ma/magical-halloween-2.json new file mode 100644 index 000000000000..930f35786ad3 --- /dev/null +++ b/data/game/ma/magical-halloween-2.json @@ -0,0 +1,8 @@ +{ + "slug": "magical-halloween-2", + "name": "Magical Halloween 2", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11340197" + ] +} diff --git a/data/game/ma/magicka-vietnam.json b/data/game/ma/magicka-vietnam.json new file mode 100644 index 000000000000..083fe57f7baf --- /dev/null +++ b/data/game/ma/magicka-vietnam.json @@ -0,0 +1,21 @@ +{ + "slug": "magicka-vietnam", + "name": "Magicka: Vietnam", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110817113" + ], + "release_date": "2011-04-12", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "role-playing video game" + ], + "developers": [ + "Arrowhead Game Studios" + ], + "publishers": [ + "Paradox Interactive" + ] +} diff --git a/data/game/ma/mahjong-titan.json b/data/game/ma/mahjong-titan.json new file mode 100644 index 000000000000..5c2a8826b67b --- /dev/null +++ b/data/game/ma/mahjong-titan.json @@ -0,0 +1,19 @@ +{ + "slug": "mahjong-titan", + "name": "Mahjong Titan+", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107349470" + ], + "release_date": "2021-04-02", + "platforms": [ + "iPadOS", + "iOS" + ], + "developers": [ + "Kristanix Games" + ], + "publishers": [ + "Kristanix Games" + ] +} diff --git a/data/game/ma/maimai.json b/data/game/ma/maimai.json new file mode 100644 index 000000000000..b4ad0270bd84 --- /dev/null +++ b/data/game/ma/maimai.json @@ -0,0 +1,18 @@ +{ + "slug": "maimai", + "name": "maimai", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11232688" + ], + "platforms": [ + "arcade video game machine" + ], + "genres": [ + "rhythm game", + "science fiction video game" + ], + "developers": [ + "Sega" + ] +} diff --git a/data/game/ma/majesty-2-battles-of-ardania.json b/data/game/ma/majesty-2-battles-of-ardania.json new file mode 100644 index 000000000000..3760e9eaf83f --- /dev/null +++ b/data/game/ma/majesty-2-battles-of-ardania.json @@ -0,0 +1,18 @@ +{ + "slug": "majesty-2-battles-of-ardania", + "name": "Majesty 2: Battles of Ardania", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110817115" + ], + "release_date": "2010-05-21", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "real-time strategy" + ], + "publishers": [ + "Paradox Interactive" + ] +} diff --git a/data/game/ma/majesty-2-kingmaker.json b/data/game/ma/majesty-2-kingmaker.json new file mode 100644 index 000000000000..adcdf33e0e9c --- /dev/null +++ b/data/game/ma/majesty-2-kingmaker.json @@ -0,0 +1,19 @@ +{ + "slug": "majesty-2-kingmaker", + "name": "Majesty 2: Kingmaker", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110817116" + ], + "release_date": "2010-03-26", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "real-time strategy" + ], + "publishers": [ + "Paradox Interactive" + ] +} diff --git a/data/game/ma/majesty-2-monster-kingdom.json b/data/game/ma/majesty-2-monster-kingdom.json new file mode 100644 index 000000000000..0969c857bab5 --- /dev/null +++ b/data/game/ma/majesty-2-monster-kingdom.json @@ -0,0 +1,19 @@ +{ + "slug": "majesty-2-monster-kingdom", + "name": "Majesty 2: Monster Kingdom", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110817114" + ], + "release_date": "2011-01-11", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "real-time strategy" + ], + "publishers": [ + "Paradox Interactive", + "Softclub" + ] +} diff --git a/data/game/ma/majesty-the-northern-expansion.json b/data/game/ma/majesty-the-northern-expansion.json new file mode 100644 index 000000000000..07c62dc691b5 --- /dev/null +++ b/data/game/ma/majesty-the-northern-expansion.json @@ -0,0 +1,8 @@ +{ + "slug": "majesty-the-northern-expansion", + "name": "Majesty: The Northern Expansion", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110156164" + ] +} diff --git a/data/game/ma/major-minor-complete-edition.json b/data/game/ma/major-minor-complete-edition.json new file mode 100644 index 000000000000..bd07b1e79637 --- /dev/null +++ b/data/game/ma/major-minor-complete-edition.json @@ -0,0 +1,16 @@ +{ + "slug": "major-minor-complete-edition", + "name": "Major\\Minor: Complete Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120769478" + ], + "release_date": "2016-10-11", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "visual novel" + ] +} diff --git a/data/game/ma/mall-tycoon-2-deluxe.json b/data/game/ma/mall-tycoon-2-deluxe.json new file mode 100644 index 000000000000..da6cda6e22e3 --- /dev/null +++ b/data/game/ma/mall-tycoon-2-deluxe.json @@ -0,0 +1,12 @@ +{ + "slug": "mall-tycoon-2-deluxe", + "name": "Mall Tycoon 2 Deluxe", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110211258" + ], + "release_date": "2004-10-05", + "platforms": [ + "Microsoft Windows" + ] +} diff --git a/data/game/ma/managed-doom.json b/data/game/ma/managed-doom.json new file mode 100644 index 000000000000..e8faedef44ff --- /dev/null +++ b/data/game/ma/managed-doom.json @@ -0,0 +1,8 @@ +{ + "slug": "managed-doom", + "name": "Managed Doom", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124654970" + ] +} diff --git a/data/game/ma/maniac-mansion-deluxe.json b/data/game/ma/maniac-mansion-deluxe.json new file mode 100644 index 000000000000..94dfd5213c28 --- /dev/null +++ b/data/game/ma/maniac-mansion-deluxe.json @@ -0,0 +1,8 @@ +{ + "slug": "maniac-mansion-deluxe", + "name": "Maniac Mansion Deluxe", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116681168" + ] +} diff --git a/data/game/ma/map-pack.json b/data/game/ma/map-pack.json new file mode 100644 index 000000000000..d23442cc4814 --- /dev/null +++ b/data/game/ma/map-pack.json @@ -0,0 +1,8 @@ +{ + "slug": "map-pack", + "name": "map pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107636709" + ] +} diff --git a/data/game/ma/maple-shot.json b/data/game/ma/maple-shot.json new file mode 100644 index 000000000000..b0dc43b31410 --- /dev/null +++ b/data/game/ma/maple-shot.json @@ -0,0 +1,8 @@ +{ + "slug": "maple-shot", + "name": "Maple Shot", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q128014892" + ] +} diff --git a/data/game/ma/maplestory-universe.json b/data/game/ma/maplestory-universe.json new file mode 100644 index 000000000000..b5b4cea668a8 --- /dev/null +++ b/data/game/ma/maplestory-universe.json @@ -0,0 +1,8 @@ +{ + "slug": "maplestory-universe", + "name": "MapleStory Universe", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q133455543" + ] +} diff --git a/data/game/ma/mare-nostrum.json b/data/game/ma/mare-nostrum.json new file mode 100644 index 000000000000..48fd9077091a --- /dev/null +++ b/data/game/ma/mare-nostrum.json @@ -0,0 +1,22 @@ +{ + "slug": "mare-nostrum", + "name": "Mare Nostrum", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130670" + ], + "release_date": "2008-03-01", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "first-person shooter" + ], + "developers": [ + "Sandstorm Productions" + ], + "publishers": [ + "Tripwire Interactive" + ] +} diff --git a/data/game/ma/mario-kart-8-deluxe-booster-course-pass.json b/data/game/ma/mario-kart-8-deluxe-booster-course-pass.json new file mode 100644 index 000000000000..915bf338daaf --- /dev/null +++ b/data/game/ma/mario-kart-8-deluxe-booster-course-pass.json @@ -0,0 +1,12 @@ +{ + "slug": "mario-kart-8-deluxe-booster-course-pass", + "name": "Mario Kart 8 Deluxe – Booster Course Pass", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111307774" + ], + "release_date": "2022-03-18", + "publishers": [ + "Nintendo" + ] +} diff --git a/data/game/ma/mario-rabbids-kingdom-battle-donkey-kong-adventure.json b/data/game/ma/mario-rabbids-kingdom-battle-donkey-kong-adventure.json new file mode 100644 index 000000000000..5a125a1f6bdf --- /dev/null +++ b/data/game/ma/mario-rabbids-kingdom-battle-donkey-kong-adventure.json @@ -0,0 +1,12 @@ +{ + "slug": "mario-rabbids-kingdom-battle-donkey-kong-adventure", + "name": "Mario + Rabbids Kingdom Battle: Donkey Kong Adventure", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q129414472" + ], + "release_date": "2018-06-26", + "platforms": [ + "Nintendo Switch Lite" + ] +} diff --git a/data/game/ma/mario-rabbids-kingdom-battle-gold-edition.json b/data/game/ma/mario-rabbids-kingdom-battle-gold-edition.json new file mode 100644 index 000000000000..11f424688edf --- /dev/null +++ b/data/game/ma/mario-rabbids-kingdom-battle-gold-edition.json @@ -0,0 +1,9 @@ +{ + "slug": "mario-rabbids-kingdom-battle-gold-edition", + "name": "Mario + Rabbids: Kingdom Battle - Gold Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q129416260" + ], + "release_date": "2017-11-17" +} diff --git a/data/game/ma/mars-pack.json b/data/game/ma/mars-pack.json new file mode 100644 index 000000000000..dddd46cf1e53 --- /dev/null +++ b/data/game/ma/mars-pack.json @@ -0,0 +1,12 @@ +{ + "slug": "mars-pack", + "name": "Mars Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60607939" + ], + "release_date": "2012-11-07", + "platforms": [ + "Microsoft Windows" + ] +} diff --git a/data/game/ma/mass-effect-2-arrival.json b/data/game/ma/mass-effect-2-arrival.json new file mode 100644 index 000000000000..6ae17ffb89c0 --- /dev/null +++ b/data/game/ma/mass-effect-2-arrival.json @@ -0,0 +1,23 @@ +{ + "slug": "mass-effect-2-arrival", + "name": "Mass Effect 2: Arrival", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6783995" + ], + "release_date": "2011-03-29", + "platforms": [ + "PlayStation 3", + "Microsoft Windows" + ], + "genres": [ + "action role-playing game", + "science fiction video game" + ], + "developers": [ + "BioWare" + ], + "publishers": [ + "Electronic Arts" + ] +} diff --git a/data/game/ma/mass-effect-2-kasumi-stolen-memory.json b/data/game/ma/mass-effect-2-kasumi-stolen-memory.json new file mode 100644 index 000000000000..41227e25153d --- /dev/null +++ b/data/game/ma/mass-effect-2-kasumi-stolen-memory.json @@ -0,0 +1,22 @@ +{ + "slug": "mass-effect-2-kasumi-stolen-memory", + "name": "Mass Effect 2: Kasumi - Stolen Memory", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16267701" + ], + "release_date": "2010-04-06", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "action role-playing game", + "science fiction video game" + ], + "developers": [ + "BioWare" + ], + "publishers": [ + "Electronic Arts" + ] +} diff --git a/data/game/ma/mass-effect-2-lair-of-the-shadow-broker.json b/data/game/ma/mass-effect-2-lair-of-the-shadow-broker.json new file mode 100644 index 000000000000..5606872a24b5 --- /dev/null +++ b/data/game/ma/mass-effect-2-lair-of-the-shadow-broker.json @@ -0,0 +1,22 @@ +{ + "slug": "mass-effect-2-lair-of-the-shadow-broker", + "name": "Mass Effect 2: Lair of the Shadow Broker", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6223902" + ], + "release_date": "2010-09-07", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "action role-playing game", + "science fiction video game" + ], + "developers": [ + "BioWare" + ], + "publishers": [ + "Electronic Arts" + ] +} diff --git a/data/game/ma/mass-effect-2-overlord.json b/data/game/ma/mass-effect-2-overlord.json new file mode 100644 index 000000000000..e545b0c0e16c --- /dev/null +++ b/data/game/ma/mass-effect-2-overlord.json @@ -0,0 +1,22 @@ +{ + "slug": "mass-effect-2-overlord", + "name": "Mass Effect 2: Overlord", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16267640" + ], + "release_date": "2010-06-15", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "action role-playing game", + "science fiction video game" + ], + "developers": [ + "BioWare" + ], + "publishers": [ + "Electronic Arts" + ] +} diff --git a/data/game/ma/mass-effect-2-zaeed-the-price-of-revenge.json b/data/game/ma/mass-effect-2-zaeed-the-price-of-revenge.json new file mode 100644 index 000000000000..9bec3cfeca15 --- /dev/null +++ b/data/game/ma/mass-effect-2-zaeed-the-price-of-revenge.json @@ -0,0 +1,8 @@ +{ + "slug": "mass-effect-2-zaeed-the-price-of-revenge", + "name": "Mass Effect 2: Zaeed - The Price of Revenge", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q96604631" + ] +} diff --git a/data/game/ma/mass-effect-3-citadel.json b/data/game/ma/mass-effect-3-citadel.json new file mode 100644 index 000000000000..05032d6c2ffe --- /dev/null +++ b/data/game/ma/mass-effect-3-citadel.json @@ -0,0 +1,23 @@ +{ + "slug": "mass-effect-3-citadel", + "name": "Mass Effect 3: Citadel", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q51929681" + ], + "release_date": "2013-03-06", + "platforms": [ + "PlayStation 3", + "Microsoft Windows" + ], + "genres": [ + "space opera video game", + "science fiction video game" + ], + "developers": [ + "BioWare" + ], + "publishers": [ + "Electronic Arts" + ] +} diff --git a/data/game/ma/mass-effect-3-extended-cut.json b/data/game/ma/mass-effect-3-extended-cut.json new file mode 100644 index 000000000000..25126c3683b8 --- /dev/null +++ b/data/game/ma/mass-effect-3-extended-cut.json @@ -0,0 +1,16 @@ +{ + "slug": "mass-effect-3-extended-cut", + "name": "Mass Effect 3: Extended Cut", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q51930098" + ], + "release_date": "2012-06-01", + "platforms": [ + "PlayStation 3", + "Microsoft Windows" + ], + "developers": [ + "BioWare" + ] +} diff --git a/data/game/ma/mass-effect-3-from-ashes.json b/data/game/ma/mass-effect-3-from-ashes.json new file mode 100644 index 000000000000..273aca25b2d5 --- /dev/null +++ b/data/game/ma/mass-effect-3-from-ashes.json @@ -0,0 +1,23 @@ +{ + "slug": "mass-effect-3-from-ashes", + "name": "Mass Effect 3: From Ashes", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q51929525" + ], + "release_date": "2012-03-06", + "platforms": [ + "Wii U", + "PlayStation 3" + ], + "genres": [ + "third-person shooter", + "action role-playing game" + ], + "developers": [ + "BioWare" + ], + "publishers": [ + "Electronic Arts" + ] +} diff --git a/data/game/ma/mass-effect-3-leviathan.json b/data/game/ma/mass-effect-3-leviathan.json new file mode 100644 index 000000000000..c7fa352079d7 --- /dev/null +++ b/data/game/ma/mass-effect-3-leviathan.json @@ -0,0 +1,23 @@ +{ + "slug": "mass-effect-3-leviathan", + "name": "Mass Effect 3: Leviathan", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q51929202" + ], + "release_date": "2012-08-01", + "platforms": [ + "PlayStation 3", + "Microsoft Windows" + ], + "genres": [ + "space opera video game", + "science fiction video game" + ], + "developers": [ + "BioWare" + ], + "publishers": [ + "Electronic Arts" + ] +} diff --git a/data/game/ma/mass-effect-3-omega.json b/data/game/ma/mass-effect-3-omega.json new file mode 100644 index 000000000000..59b8afdbbb44 --- /dev/null +++ b/data/game/ma/mass-effect-3-omega.json @@ -0,0 +1,22 @@ +{ + "slug": "mass-effect-3-omega", + "name": "Mass Effect 3: Omega", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q51930253" + ], + "release_date": "2012-11-01", + "platforms": [ + "PlayStation 3" + ], + "genres": [ + "space opera video game", + "science fiction video game" + ], + "developers": [ + "BioWare" + ], + "publishers": [ + "Electronic Arts" + ] +} diff --git a/data/game/ma/mass-effect-pinnacle-station.json b/data/game/ma/mass-effect-pinnacle-station.json new file mode 100644 index 000000000000..0da76d830311 --- /dev/null +++ b/data/game/ma/mass-effect-pinnacle-station.json @@ -0,0 +1,21 @@ +{ + "slug": "mass-effect-pinnacle-station", + "name": "Mass Effect: Pinnacle Station", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q102280642" + ], + "release_date": "2009-08-25", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "third-person shooter", + "action role-playing game", + "science fiction video game", + "space opera video game" + ], + "publishers": [ + "Electronic Arts" + ] +} diff --git a/data/game/ma/mass-effect-trilogy.json b/data/game/ma/mass-effect-trilogy.json new file mode 100644 index 000000000000..46645b63dcef --- /dev/null +++ b/data/game/ma/mass-effect-trilogy.json @@ -0,0 +1,22 @@ +{ + "slug": "mass-effect-trilogy", + "name": "Mass Effect Trilogy", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16267378" + ], + "release_date": "2012-11-06", + "platforms": [ + "PlayStation 3", + "Microsoft Windows" + ], + "genres": [ + "action role-playing game" + ], + "developers": [ + "BioWare" + ], + "publishers": [ + "Electronic Arts" + ] +} diff --git a/data/game/ma/massive-donation.json b/data/game/ma/massive-donation.json new file mode 100644 index 000000000000..2b146e7b347e --- /dev/null +++ b/data/game/ma/massive-donation.json @@ -0,0 +1,22 @@ +{ + "slug": "massive-donation", + "name": "Massive donation", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62027798" + ], + "release_date": "2019-03-11", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "casual game", + "advergame" + ], + "developers": [ + "SS Studios" + ], + "publishers": [ + "SS Studios" + ] +} diff --git a/data/game/ma/master-games-1.json b/data/game/ma/master-games-1.json new file mode 100644 index 000000000000..3e732aea74ff --- /dev/null +++ b/data/game/ma/master-games-1.json @@ -0,0 +1,8 @@ +{ + "slug": "master-games-1", + "name": "Master Games 1", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108057324" + ] +} diff --git a/data/game/ma/master-of-orion-conquer-the-stars.json b/data/game/ma/master-of-orion-conquer-the-stars.json new file mode 100644 index 000000000000..305b014815ac --- /dev/null +++ b/data/game/ma/master-of-orion-conquer-the-stars.json @@ -0,0 +1,24 @@ +{ + "slug": "master-of-orion-conquer-the-stars", + "name": "Master of Orion: Conquer the Stars", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q20064659" + ], + "release_date": "2016-02-26", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "4X", + "turn-based strategy video game", + "grand strategy wargame" + ], + "developers": [ + "Nimble Giant Entertainment" + ], + "publishers": [ + "Wargaming" + ] +} diff --git a/data/game/ma/mastermind-q17286.json b/data/game/ma/mastermind-q17286.json new file mode 100644 index 000000000000..28d32bcd1386 --- /dev/null +++ b/data/game/ma/mastermind-q17286.json @@ -0,0 +1,15 @@ +{ + "slug": "mastermind-q17286", + "name": "Mastermind", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17286" + ], + "release_date": "1970-01-01", + "developers": [ + "Mordecai Meirowitz" + ], + "publishers": [ + "Hasbro" + ] +} diff --git a/data/game/ma/mastertronic-compilation-5.json b/data/game/ma/mastertronic-compilation-5.json new file mode 100644 index 000000000000..3336f56eeb0b --- /dev/null +++ b/data/game/ma/mastertronic-compilation-5.json @@ -0,0 +1,14 @@ +{ + "slug": "mastertronic-compilation-5", + "name": "Mastertronic Compilation 5", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62527872" + ], + "platforms": [ + "ZX Spectrum" + ], + "publishers": [ + "Mastertronic" + ] +} diff --git a/data/game/ma/masyu.json b/data/game/ma/masyu.json new file mode 100644 index 000000000000..ec49702f9095 --- /dev/null +++ b/data/game/ma/masyu.json @@ -0,0 +1,8 @@ +{ + "slug": "masyu", + "name": "Masyu", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q477458" + ] +} diff --git a/data/game/ma/matcho.json b/data/game/ma/matcho.json new file mode 100644 index 000000000000..70aff596d5c9 --- /dev/null +++ b/data/game/ma/matcho.json @@ -0,0 +1,23 @@ +{ + "slug": "matcho", + "name": "Matcho", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118698061" + ], + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 5", + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "match-three video game" + ], + "developers": [ + "FiolaSoft Studio" + ], + "publishers": [ + "FiolaSoft Studio" + ] +} diff --git a/data/game/ma/matter-q6789726.json b/data/game/ma/matter-q6789726.json new file mode 100644 index 000000000000..a1fd37ab3481 --- /dev/null +++ b/data/game/ma/matter-q6789726.json @@ -0,0 +1,14 @@ +{ + "slug": "matter-q6789726", + "name": "Matter", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6789726" + ], + "developers": [ + "Gore Verbinski" + ], + "publishers": [ + "Xbox Game Studios" + ] +} diff --git a/data/game/ma/mavericks-proving-grounds.json b/data/game/ma/mavericks-proving-grounds.json new file mode 100644 index 000000000000..ae3d0800b12f --- /dev/null +++ b/data/game/ma/mavericks-proving-grounds.json @@ -0,0 +1,8 @@ +{ + "slug": "mavericks-proving-grounds", + "name": "Mavericks: Proving Grounds", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q86723597" + ] +} diff --git a/data/game/ma/max-the-curse-of-brotherhood.json b/data/game/ma/max-the-curse-of-brotherhood.json new file mode 100644 index 000000000000..3a6705ecdf1b --- /dev/null +++ b/data/game/ma/max-the-curse-of-brotherhood.json @@ -0,0 +1,23 @@ +{ + "slug": "max-the-curse-of-brotherhood", + "name": "Max: The Curse of Brotherhood", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q13558831" + ], + "release_date": "2013-12-20", + "platforms": [ + "PlayStation 4", + "iOS", + "Microsoft Windows" + ], + "genres": [ + "platformer" + ], + "developers": [ + "Press Play" + ], + "publishers": [ + "Xbox Game Studios" + ] +} diff --git a/data/game/ma/maximum-pleasure-pack.json b/data/game/ma/maximum-pleasure-pack.json new file mode 100644 index 000000000000..d07bea487bc5 --- /dev/null +++ b/data/game/ma/maximum-pleasure-pack.json @@ -0,0 +1,12 @@ +{ + "slug": "maximum-pleasure-pack", + "name": "Maximum Pleasure Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60722673" + ], + "release_date": "2012-06-20", + "platforms": [ + "PlayStation 3" + ] +} diff --git a/data/game/mb/mbf.json b/data/game/mb/mbf.json new file mode 100644 index 000000000000..3ec383fcbcf6 --- /dev/null +++ b/data/game/mb/mbf.json @@ -0,0 +1,8 @@ +{ + "slug": "mbf", + "name": "MBF", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q67219610" + ] +} diff --git a/data/game/me/meantime.json b/data/game/me/meantime.json new file mode 100644 index 000000000000..77a10e0b7532 --- /dev/null +++ b/data/game/me/meantime.json @@ -0,0 +1,17 @@ +{ + "slug": "meantime", + "name": "Meantime", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1175224" + ], + "platforms": [ + "Apple II series" + ], + "genres": [ + "role-playing video game" + ], + "developers": [ + "Interplay Entertainment" + ] +} diff --git a/data/game/me/mech-commander-2-hd.json b/data/game/me/mech-commander-2-hd.json new file mode 100644 index 000000000000..822fa77104e5 --- /dev/null +++ b/data/game/me/mech-commander-2-hd.json @@ -0,0 +1,8 @@ +{ + "slug": "mech-commander-2-hd", + "name": "Mech Commander 2 HD", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122202924" + ] +} diff --git a/data/game/me/mechwarrior-2-ghost-bear-s-legacy.json b/data/game/me/mechwarrior-2-ghost-bear-s-legacy.json new file mode 100644 index 000000000000..747fabf49fd7 --- /dev/null +++ b/data/game/me/mechwarrior-2-ghost-bear-s-legacy.json @@ -0,0 +1,15 @@ +{ + "slug": "mechwarrior-2-ghost-bear-s-legacy", + "name": "MechWarrior 2: Ghost Bear's Legacy", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3853474" + ], + "release_date": "1995-01-01", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ] +} diff --git a/data/game/me/mechwarrior-4-mercenaries.json b/data/game/me/mechwarrior-4-mercenaries.json new file mode 100644 index 000000000000..589ce9730a7b --- /dev/null +++ b/data/game/me/mechwarrior-4-mercenaries.json @@ -0,0 +1,21 @@ +{ + "slug": "mechwarrior-4-mercenaries", + "name": "MechWarrior 4: Mercenaries", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q615716" + ], + "release_date": "2002-01-01", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "mech simulation game" + ], + "developers": [ + "FASA Studio" + ], + "publishers": [ + "Xbox Game Studios" + ] +} diff --git a/data/game/me/mechwarrior-tactics.json b/data/game/me/mechwarrior-tactics.json new file mode 100644 index 000000000000..6661a51559e1 --- /dev/null +++ b/data/game/me/mechwarrior-tactics.json @@ -0,0 +1,17 @@ +{ + "slug": "mechwarrior-tactics", + "name": "MechWarrior Tactics", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6425825" + ], + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "turn-based tactics" + ], + "publishers": [ + "Infinite Game Publishing" + ] +} diff --git a/data/game/me/medal-of-honor-allied-assault-war-chest.json b/data/game/me/medal-of-honor-allied-assault-war-chest.json new file mode 100644 index 000000000000..2cffe50c84c6 --- /dev/null +++ b/data/game/me/medal-of-honor-allied-assault-war-chest.json @@ -0,0 +1,8 @@ +{ + "slug": "medal-of-honor-allied-assault-war-chest", + "name": "Medal of Honor Allied Assault War Chest", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q12746014" + ] +} diff --git a/data/game/me/medic-night-hunter-skin-pack.json b/data/game/me/medic-night-hunter-skin-pack.json new file mode 100644 index 000000000000..cb8e5e62aed8 --- /dev/null +++ b/data/game/me/medic-night-hunter-skin-pack.json @@ -0,0 +1,19 @@ +{ + "slug": "medic-night-hunter-skin-pack", + "name": "Medic Night Hunter Skin Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124643238" + ], + "release_date": "2015-06-09", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "science fiction video game" + ], + "publishers": [ + "2K" + ] +} diff --git a/data/game/me/medic-victory-skin-pack.json b/data/game/me/medic-victory-skin-pack.json new file mode 100644 index 000000000000..06d521544dc6 --- /dev/null +++ b/data/game/me/medic-victory-skin-pack.json @@ -0,0 +1,19 @@ +{ + "slug": "medic-victory-skin-pack", + "name": "Medic Victory Skin Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124637412" + ], + "release_date": "2015-07-28", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "science fiction video game" + ], + "publishers": [ + "2K" + ] +} diff --git a/data/game/me/medieval-ii-total-war-kingdoms.json b/data/game/me/medieval-ii-total-war-kingdoms.json new file mode 100644 index 000000000000..ccaeae24b86b --- /dev/null +++ b/data/game/me/medieval-ii-total-war-kingdoms.json @@ -0,0 +1,23 @@ +{ + "slug": "medieval-ii-total-war-kingdoms", + "name": "Medieval II: Total War: Kingdoms", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2376092" + ], + "release_date": "2007-08-28", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "turn-based strategy video game", + "real-time tactics" + ], + "developers": [ + "Creative Assembly" + ], + "publishers": [ + "Sega" + ] +} diff --git a/data/game/me/medieval-mayor.json b/data/game/me/medieval-mayor.json new file mode 100644 index 000000000000..9dfd2a9f4022 --- /dev/null +++ b/data/game/me/medieval-mayor.json @@ -0,0 +1,17 @@ +{ + "slug": "medieval-mayor", + "name": "Medieval Mayor", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6806827" + ], + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "city-building game" + ], + "developers": [ + "Tilted Mill Entertainment" + ] +} diff --git a/data/game/me/medieval-tales-dlc.json b/data/game/me/medieval-tales-dlc.json new file mode 100644 index 000000000000..eee18fafdc9a --- /dev/null +++ b/data/game/me/medieval-tales-dlc.json @@ -0,0 +1,12 @@ +{ + "slug": "medieval-tales-dlc", + "name": "Medieval Tales DLC", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60607937" + ], + "release_date": "2012-11-21", + "platforms": [ + "Microsoft Windows" + ] +} diff --git a/data/game/me/medieval-total-war-viking-invasion.json b/data/game/me/medieval-total-war-viking-invasion.json new file mode 100644 index 000000000000..84cd2535229d --- /dev/null +++ b/data/game/me/medieval-total-war-viking-invasion.json @@ -0,0 +1,14 @@ +{ + "slug": "medieval-total-war-viking-invasion", + "name": "Medieval: Total War – Viking Invasion", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10328158" + ], + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "real-time tactics" + ] +} diff --git a/data/game/me/mega-man-legacy-collection-1-2-combo-pack.json b/data/game/me/mega-man-legacy-collection-1-2-combo-pack.json new file mode 100644 index 000000000000..5d89fae016b8 --- /dev/null +++ b/data/game/me/mega-man-legacy-collection-1-2-combo-pack.json @@ -0,0 +1,11 @@ +{ + "slug": "mega-man-legacy-collection-1-2-combo-pack", + "name": "Mega Man: Legacy Collection 1 & 2 Combo Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q104717524" + ], + "platforms": [ + "Microsoft Windows" + ] +} diff --git a/data/game/me/mega-man-legacy-collection-2.json b/data/game/me/mega-man-legacy-collection-2.json new file mode 100644 index 000000000000..d7434afcb62e --- /dev/null +++ b/data/game/me/mega-man-legacy-collection-2.json @@ -0,0 +1,23 @@ +{ + "slug": "mega-man-legacy-collection-2", + "name": "Mega Man Legacy Collection 2", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q47392598" + ], + "release_date": "2017-01-01", + "platforms": [ + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "action game", + "platformer" + ], + "developers": [ + "Capcom" + ], + "publishers": [ + "Capcom" + ] +} diff --git a/data/game/me/mega-man-legacy-collection.json b/data/game/me/mega-man-legacy-collection.json new file mode 100644 index 000000000000..f9b91e7e041e --- /dev/null +++ b/data/game/me/mega-man-legacy-collection.json @@ -0,0 +1,25 @@ +{ + "slug": "mega-man-legacy-collection", + "name": "Mega Man Legacy Collection", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q24866529" + ], + "release_date": "2015-01-01", + "platforms": [ + "PlayStation 4", + "Nintendo 3DS", + "IBM PC compatible", + "Microsoft Windows" + ], + "genres": [ + "action game", + "platformer" + ], + "developers": [ + "Capcom" + ], + "publishers": [ + "Capcom" + ] +} diff --git a/data/game/me/mega-man-legends-3.json b/data/game/me/mega-man-legends-3.json new file mode 100644 index 000000000000..fd1ea2b13e37 --- /dev/null +++ b/data/game/me/mega-man-legends-3.json @@ -0,0 +1,20 @@ +{ + "slug": "mega-man-legends-3", + "name": "Mega Man Legends 3", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3041930" + ], + "platforms": [ + "Nintendo 3DS" + ], + "genres": [ + "action role-playing game" + ], + "developers": [ + "Capcom" + ], + "publishers": [ + "Capcom" + ] +} diff --git a/data/game/me/mega-man-mania.json b/data/game/me/mega-man-mania.json new file mode 100644 index 000000000000..bd258b5225a4 --- /dev/null +++ b/data/game/me/mega-man-mania.json @@ -0,0 +1,11 @@ +{ + "slug": "mega-man-mania", + "name": "Mega Man Mania", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11232914" + ], + "platforms": [ + "Game Boy Advance" + ] +} diff --git a/data/game/me/mega-man-the-wily-wars.json b/data/game/me/mega-man-the-wily-wars.json new file mode 100644 index 000000000000..d998c17622a0 --- /dev/null +++ b/data/game/me/mega-man-the-wily-wars.json @@ -0,0 +1,21 @@ +{ + "slug": "mega-man-the-wily-wars", + "name": "Mega Man: The Wily Wars", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q979582" + ], + "release_date": "1994-10-21", + "platforms": [ + "Sega Genesis" + ], + "genres": [ + "action game" + ], + "developers": [ + "Capcom" + ], + "publishers": [ + "Capcom" + ] +} diff --git a/data/game/me/mega-man-universe.json b/data/game/me/mega-man-universe.json new file mode 100644 index 000000000000..cbd95511677d --- /dev/null +++ b/data/game/me/mega-man-universe.json @@ -0,0 +1,14 @@ +{ + "slug": "mega-man-universe", + "name": "Mega Man Universe", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6665587" + ], + "genres": [ + "platformer" + ], + "developers": [ + "Capcom" + ] +} diff --git a/data/game/me/mega-man-x-legacy-collection-1-2.json b/data/game/me/mega-man-x-legacy-collection-1-2.json new file mode 100644 index 000000000000..87ea979c7697 --- /dev/null +++ b/data/game/me/mega-man-x-legacy-collection-1-2.json @@ -0,0 +1,22 @@ +{ + "slug": "mega-man-x-legacy-collection-1-2", + "name": "Mega Man X Legacy Collection 1 + 2", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q56107307" + ], + "release_date": "2018-07-24", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "action game", + "platformer" + ], + "developers": [ + "Capcom" + ], + "publishers": [ + "Capcom" + ] +} diff --git a/data/game/me/mega-man-zero-collection.json b/data/game/me/mega-man-zero-collection.json new file mode 100644 index 000000000000..e0af1878c13f --- /dev/null +++ b/data/game/me/mega-man-zero-collection.json @@ -0,0 +1,21 @@ +{ + "slug": "mega-man-zero-collection", + "name": "Mega Man Zero Collection", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17215546" + ], + "platforms": [ + "Nintendo DS" + ], + "genres": [ + "action game", + "platformer" + ], + "developers": [ + "Inti Creates" + ], + "publishers": [ + "Capcom" + ] +} diff --git a/data/game/me/meme-mayhem-demo.json b/data/game/me/meme-mayhem-demo.json new file mode 100644 index 000000000000..e216e149a9af --- /dev/null +++ b/data/game/me/meme-mayhem-demo.json @@ -0,0 +1,23 @@ +{ + "slug": "meme-mayhem-demo", + "name": "Meme Mayhem Demo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130324033" + ], + "release_date": "2024-04-19", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "casual game", + "auto battler", + "roguelike deck-building game" + ], + "developers": [ + "Cr3 Studio" + ], + "publishers": [ + "Cr3 Studio" + ] +} diff --git a/data/game/me/memorial-series.json b/data/game/me/memorial-series.json new file mode 100644 index 000000000000..c8f8c04408f8 --- /dev/null +++ b/data/game/me/memorial-series.json @@ -0,0 +1,15 @@ +{ + "slug": "memorial-series", + "name": "Memorial Series", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6815507" + ], + "release_date": "2001-01-01", + "developers": [ + "Microvision" + ], + "publishers": [ + "Sun Corporation" + ] +} diff --git a/data/game/me/menacer-6-game-cartridge.json b/data/game/me/menacer-6-game-cartridge.json new file mode 100644 index 000000000000..a712dc7dd49d --- /dev/null +++ b/data/game/me/menacer-6-game-cartridge.json @@ -0,0 +1,12 @@ +{ + "slug": "menacer-6-game-cartridge", + "name": "Menacer 6-game cartridge", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2416324" + ], + "release_date": "1992-01-01", + "platforms": [ + "Sega Genesis" + ] +} diff --git a/data/game/me/mephisto.json b/data/game/me/mephisto.json new file mode 100644 index 000000000000..83ed84d5146c --- /dev/null +++ b/data/game/me/mephisto.json @@ -0,0 +1,8 @@ +{ + "slug": "mephisto", + "name": "Mephisto", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11343949" + ] +} diff --git a/data/game/me/mercenary-of-the-dark-future.json b/data/game/me/mercenary-of-the-dark-future.json new file mode 100644 index 000000000000..0f7c8e101eff --- /dev/null +++ b/data/game/me/mercenary-of-the-dark-future.json @@ -0,0 +1,18 @@ +{ + "slug": "mercenary-of-the-dark-future", + "name": "Mercenary of the Dark Future", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q87348872" + ], + "release_date": "2019-06-25", + "platforms": [ + "PlayStation 4" + ], + "developers": [ + "CD Projekt" + ], + "publishers": [ + "Sony Interactive Entertainment" + ] +} diff --git a/data/game/me/mercs-inc-q6818521.json b/data/game/me/mercs-inc-q6818521.json new file mode 100644 index 000000000000..d961fa56d052 --- /dev/null +++ b/data/game/me/mercs-inc-q6818521.json @@ -0,0 +1,17 @@ +{ + "slug": "mercs-inc-q6818521", + "name": "Mercs Inc", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6818521" + ], + "genres": [ + "third-person shooter" + ], + "developers": [ + "Danger Close Games" + ], + "publishers": [ + "Electronic Arts" + ] +} diff --git a/data/game/me/meren-hengitys.json b/data/game/me/meren-hengitys.json new file mode 100644 index 000000000000..29840e482bc3 --- /dev/null +++ b/data/game/me/meren-hengitys.json @@ -0,0 +1,12 @@ +{ + "slug": "meren-hengitys", + "name": "Meren hengitys", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115919258" + ], + "genres": [ + "digital poetry", + "film poetry" + ] +} diff --git a/data/game/me/metal-gear-rising-revengeance-blade-wolf.json b/data/game/me/metal-gear-rising-revengeance-blade-wolf.json new file mode 100644 index 000000000000..59c2fbd09ea6 --- /dev/null +++ b/data/game/me/metal-gear-rising-revengeance-blade-wolf.json @@ -0,0 +1,8 @@ +{ + "slug": "metal-gear-rising-revengeance-blade-wolf", + "name": "Metal Gear Rising: Revengeance - Blade Wolf", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111439703" + ] +} diff --git a/data/game/me/metal-gear-rising-revengeance-jetstream.json b/data/game/me/metal-gear-rising-revengeance-jetstream.json new file mode 100644 index 000000000000..82458ecbf986 --- /dev/null +++ b/data/game/me/metal-gear-rising-revengeance-jetstream.json @@ -0,0 +1,8 @@ +{ + "slug": "metal-gear-rising-revengeance-jetstream", + "name": "Metal Gear Rising: Revengeance - Jetstream", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111439701" + ] +} diff --git a/data/game/me/metal-gear-rising-revengeance-ultimate-edition.json b/data/game/me/metal-gear-rising-revengeance-ultimate-edition.json new file mode 100644 index 000000000000..363fd5305048 --- /dev/null +++ b/data/game/me/metal-gear-rising-revengeance-ultimate-edition.json @@ -0,0 +1,8 @@ +{ + "slug": "metal-gear-rising-revengeance-ultimate-edition", + "name": "Metal Gear Rising Revengeance Ultimate Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107424226" + ] +} diff --git a/data/game/me/metal-gear-solid-hd-edition.json b/data/game/me/metal-gear-solid-hd-edition.json new file mode 100644 index 000000000000..f303ea60cd83 --- /dev/null +++ b/data/game/me/metal-gear-solid-hd-edition.json @@ -0,0 +1,11 @@ +{ + "slug": "metal-gear-solid-hd-edition", + "name": "Metal Gear Solid: HD Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127164605" + ], + "publishers": [ + "Konami" + ] +} diff --git a/data/game/me/metal-gear-solid-master-collection-vol-1.json b/data/game/me/metal-gear-solid-master-collection-vol-1.json new file mode 100644 index 000000000000..4a21fb8e9806 --- /dev/null +++ b/data/game/me/metal-gear-solid-master-collection-vol-1.json @@ -0,0 +1,25 @@ +{ + "slug": "metal-gear-solid-master-collection-vol-1", + "name": "Metal Gear Solid: Master Collection Vol. 1", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118650385" + ], + "release_date": "2023-10-24", + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 5", + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "action game", + "stealth game" + ], + "developers": [ + "Konami" + ], + "publishers": [ + "Konami" + ] +} diff --git a/data/game/me/metal-gear-solid-the-legacy-collection.json b/data/game/me/metal-gear-solid-the-legacy-collection.json new file mode 100644 index 000000000000..45ac9da514b4 --- /dev/null +++ b/data/game/me/metal-gear-solid-the-legacy-collection.json @@ -0,0 +1,21 @@ +{ + "slug": "metal-gear-solid-the-legacy-collection", + "name": "Metal Gear Solid: The Legacy Collection", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q15199106" + ], + "release_date": "2013-07-09", + "platforms": [ + "PlayStation 3" + ], + "genres": [ + "action-adventure game" + ], + "developers": [ + "Kojima Productions" + ], + "publishers": [ + "Konami" + ] +} diff --git a/data/game/me/metal-knight-dark-front.json b/data/game/me/metal-knight-dark-front.json new file mode 100644 index 000000000000..0867e20b4123 --- /dev/null +++ b/data/game/me/metal-knight-dark-front.json @@ -0,0 +1,23 @@ +{ + "slug": "metal-knight-dark-front", + "name": "Metal Knight: Dark Front", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q132436095" + ], + "release_date": "1998-08-01", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "real-time strategy", + "science fiction video game", + "space opera video game" + ], + "developers": [ + "Object Software" + ], + "publishers": [ + "Object Software" + ] +} diff --git a/data/game/me/metal-max-wild-west.json b/data/game/me/metal-max-wild-west.json new file mode 100644 index 000000000000..831eff617527 --- /dev/null +++ b/data/game/me/metal-max-wild-west.json @@ -0,0 +1,11 @@ +{ + "slug": "metal-max-wild-west", + "name": "Metal Max: Wild West", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q97861265" + ], + "platforms": [ + "PlayStation 4" + ] +} diff --git a/data/game/me/metal-slug-pc-collection.json b/data/game/me/metal-slug-pc-collection.json new file mode 100644 index 000000000000..76c682a6fbe7 --- /dev/null +++ b/data/game/me/metal-slug-pc-collection.json @@ -0,0 +1,15 @@ +{ + "slug": "metal-slug-pc-collection", + "name": "Metal Slug PC Collection", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3307234" + ], + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "shooter game", + "arcade" + ] +} diff --git a/data/game/me/metal-slug-zero-online.json b/data/game/me/metal-slug-zero-online.json new file mode 100644 index 000000000000..b56207a2b0fb --- /dev/null +++ b/data/game/me/metal-slug-zero-online.json @@ -0,0 +1,14 @@ +{ + "slug": "metal-slug-zero-online", + "name": "Metal Slug Zero Online", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q486731" + ], + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "massively multiplayer online game" + ] +} diff --git a/data/game/me/metro-last-light-complete-edition.json b/data/game/me/metro-last-light-complete-edition.json new file mode 100644 index 000000000000..97d98e94167d --- /dev/null +++ b/data/game/me/metro-last-light-complete-edition.json @@ -0,0 +1,8 @@ +{ + "slug": "metro-last-light-complete-edition", + "name": "Metro: Last Light – Complete Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107424227" + ] +} diff --git a/data/game/me/metroid-64.json b/data/game/me/metroid-64.json new file mode 100644 index 000000000000..4f1e9a5ff0d4 --- /dev/null +++ b/data/game/me/metroid-64.json @@ -0,0 +1,11 @@ +{ + "slug": "metroid-64", + "name": "Metroid 64", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135493651" + ], + "platforms": [ + "Nintendo 64" + ] +} diff --git a/data/game/me/metroid-prime-trilogy.json b/data/game/me/metroid-prime-trilogy.json new file mode 100644 index 000000000000..d6ccd2676048 --- /dev/null +++ b/data/game/me/metroid-prime-trilogy.json @@ -0,0 +1,19 @@ +{ + "slug": "metroid-prime-trilogy", + "name": "Metroid Prime: Trilogy", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2539933" + ], + "release_date": "2009-08-24", + "platforms": [ + "Wii", + "Wii U" + ], + "developers": [ + "Retro Studios" + ], + "publishers": [ + "Nintendo" + ] +} diff --git a/data/game/mi/mi-8mtv2-oilfield-campaign.json b/data/game/mi/mi-8mtv2-oilfield-campaign.json new file mode 100644 index 000000000000..6453e32a47c5 --- /dev/null +++ b/data/game/mi/mi-8mtv2-oilfield-campaign.json @@ -0,0 +1,15 @@ +{ + "slug": "mi-8mtv2-oilfield-campaign", + "name": "Mi-8MTV2: Oilfield Campaign", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097563" + ], + "release_date": "2017-12-08", + "platforms": [ + "Microsoft Windows" + ], + "publishers": [ + "Eagle Dynamics" + ] +} diff --git a/data/game/mi/mi-8mtv2-the-border-campaign.json b/data/game/mi/mi-8mtv2-the-border-campaign.json new file mode 100644 index 000000000000..96c06811be17 --- /dev/null +++ b/data/game/mi/mi-8mtv2-the-border-campaign.json @@ -0,0 +1,15 @@ +{ + "slug": "mi-8mtv2-the-border-campaign", + "name": "Mi-8MTV2: The Border Campaign", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097549" + ], + "release_date": "2017-08-25", + "platforms": [ + "Microsoft Windows" + ], + "publishers": [ + "Eagle Dynamics" + ] +} diff --git a/data/game/mi/microsoft-arcade.json b/data/game/mi/microsoft-arcade.json new file mode 100644 index 000000000000..c965ae3c186a --- /dev/null +++ b/data/game/mi/microsoft-arcade.json @@ -0,0 +1,16 @@ +{ + "slug": "microsoft-arcade", + "name": "Microsoft Arcade", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17042551" + ], + "release_date": "1993-01-01", + "platforms": [ + "Classic Mac OS", + "Microsoft Windows" + ], + "genres": [ + "arcade" + ] +} diff --git a/data/game/mi/microsoft-children-s-miracle-network-games-bundle.json b/data/game/mi/microsoft-children-s-miracle-network-games-bundle.json new file mode 100644 index 000000000000..804b3bd794c8 --- /dev/null +++ b/data/game/mi/microsoft-children-s-miracle-network-games-bundle.json @@ -0,0 +1,12 @@ +{ + "slug": "microsoft-children-s-miracle-network-games-bundle", + "name": "Microsoft Children's Miracle Network Games Bundle", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6840095" + ], + "release_date": "2008-10-07", + "publishers": [ + "Xbox Game Studios" + ] +} diff --git a/data/game/mi/microsoft-entertainment-pack-1.json b/data/game/mi/microsoft-entertainment-pack-1.json new file mode 100644 index 000000000000..90dabf818ef2 --- /dev/null +++ b/data/game/mi/microsoft-entertainment-pack-1.json @@ -0,0 +1,12 @@ +{ + "slug": "microsoft-entertainment-pack-1", + "name": "Microsoft Entertainment Pack 1", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q132295659" + ], + "release_date": "1990-01-01", + "platforms": [ + "Microsoft Windows" + ] +} diff --git a/data/game/mi/microsoft-flight-simulator-top-gun-maverick.json b/data/game/mi/microsoft-flight-simulator-top-gun-maverick.json new file mode 100644 index 000000000000..612870b0575b --- /dev/null +++ b/data/game/mi/microsoft-flight-simulator-top-gun-maverick.json @@ -0,0 +1,14 @@ +{ + "slug": "microsoft-flight-simulator-top-gun-maverick", + "name": "Microsoft Flight Simulator: Top Gun Maverick", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136511455" + ], + "release_date": "2022-05-26", + "platforms": [ + "Xbox Series X and Series S", + "Steam", + "Microsoft Windows" + ] +} diff --git a/data/game/mi/microsoft-flight-simulator-x-acceleration.json b/data/game/mi/microsoft-flight-simulator-x-acceleration.json new file mode 100644 index 000000000000..da86a9fc6dee --- /dev/null +++ b/data/game/mi/microsoft-flight-simulator-x-acceleration.json @@ -0,0 +1,21 @@ +{ + "slug": "microsoft-flight-simulator-x-acceleration", + "name": "Microsoft Flight Simulator X: Acceleration", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110716377" + ], + "release_date": "2007-10-23", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "flight simulation video game" + ], + "developers": [ + "Aces Studio" + ], + "publishers": [ + "Microsoft" + ] +} diff --git a/data/game/mi/microsoft-revenge-of-arcade.json b/data/game/mi/microsoft-revenge-of-arcade.json new file mode 100644 index 000000000000..b2032bb681d9 --- /dev/null +++ b/data/game/mi/microsoft-revenge-of-arcade.json @@ -0,0 +1,8 @@ +{ + "slug": "microsoft-revenge-of-arcade", + "name": "Microsoft Revenge of Arcade", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q65089202" + ] +} diff --git a/data/game/mi/mictlan-an-ancient-mythical-tale.json b/data/game/mi/mictlan-an-ancient-mythical-tale.json new file mode 100644 index 000000000000..6c005a4a91ac --- /dev/null +++ b/data/game/mi/mictlan-an-ancient-mythical-tale.json @@ -0,0 +1,15 @@ +{ + "slug": "mictlan-an-ancient-mythical-tale", + "name": "Mictlan: An Ancient Mythical Tale", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107625856" + ], + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "adventure video game", + "action game" + ] +} diff --git a/data/game/mi/middle-earth-shadow-of-mordor-game-of-the-year-edition.json b/data/game/mi/middle-earth-shadow-of-mordor-game-of-the-year-edition.json new file mode 100644 index 000000000000..42e86464a810 --- /dev/null +++ b/data/game/mi/middle-earth-shadow-of-mordor-game-of-the-year-edition.json @@ -0,0 +1,14 @@ +{ + "slug": "middle-earth-shadow-of-mordor-game-of-the-year-edition", + "name": "Middle-earth: Shadow of Mordor - Game of the Year Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q92204212" + ], + "release_date": "2015-05-05", + "platforms": [ + "macOS", + "PlayStation 4", + "Microsoft Windows" + ] +} diff --git a/data/game/mi/middle-earth-shadow-of-mordor-lord-of-the-hunt.json b/data/game/mi/middle-earth-shadow-of-mordor-lord-of-the-hunt.json new file mode 100644 index 000000000000..bef34c7e16d7 --- /dev/null +++ b/data/game/mi/middle-earth-shadow-of-mordor-lord-of-the-hunt.json @@ -0,0 +1,24 @@ +{ + "slug": "middle-earth-shadow-of-mordor-lord-of-the-hunt", + "name": "Middle-earth: Shadow of Mordor - Lord of the Hunt", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109656366" + ], + "release_date": "2014-12-16", + "platforms": [ + "PlayStation 4", + "macOS", + "Microsoft Windows" + ], + "genres": [ + "action role-playing game" + ], + "developers": [ + "Monolith Productions" + ], + "publishers": [ + "Feral Interactive", + "Warner Bros. Games" + ] +} diff --git a/data/game/mi/midnight-animal.json b/data/game/mi/midnight-animal.json new file mode 100644 index 000000000000..1585e18140da --- /dev/null +++ b/data/game/mi/midnight-animal.json @@ -0,0 +1,14 @@ +{ + "slug": "midnight-animal", + "name": "Midnight Animal", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q29907271" + ], + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "role-playing video game" + ] +} diff --git a/data/game/mi/midway-s-greatest-arcade-hits-volume-i.json b/data/game/mi/midway-s-greatest-arcade-hits-volume-i.json new file mode 100644 index 000000000000..977b78f2f11f --- /dev/null +++ b/data/game/mi/midway-s-greatest-arcade-hits-volume-i.json @@ -0,0 +1,11 @@ +{ + "slug": "midway-s-greatest-arcade-hits-volume-i", + "name": "Midway's Greatest Arcade Hits Volume I", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108270202" + ], + "platforms": [ + "Nintendo 64" + ] +} diff --git a/data/game/mi/mig-29-for-dcs-world.json b/data/game/mi/mig-29-for-dcs-world.json new file mode 100644 index 000000000000..94ab7903bbb7 --- /dev/null +++ b/data/game/mi/mig-29-for-dcs-world.json @@ -0,0 +1,18 @@ +{ + "slug": "mig-29-for-dcs-world", + "name": "MiG-29 for DCS World", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097436" + ], + "release_date": "2018-10-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Eagle Dynamics" + ], + "publishers": [ + "Eagle Dynamics" + ] +} diff --git a/data/game/mi/might-and-magic-world-of-xeen.json b/data/game/mi/might-and-magic-world-of-xeen.json new file mode 100644 index 000000000000..ee53a6aa2b29 --- /dev/null +++ b/data/game/mi/might-and-magic-world-of-xeen.json @@ -0,0 +1,11 @@ +{ + "slug": "might-and-magic-world-of-xeen", + "name": "Might and Magic: World of Xeen", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q20726198" + ], + "genres": [ + "role-playing video game" + ] +} diff --git a/data/game/mi/milestones-q126186572.json b/data/game/mi/milestones-q126186572.json new file mode 100644 index 000000000000..32e3d945437e --- /dev/null +++ b/data/game/mi/milestones-q126186572.json @@ -0,0 +1,8 @@ +{ + "slug": "milestones-q126186572", + "name": "Milestones", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126186572" + ] +} diff --git a/data/game/mi/milf-artwork.json b/data/game/mi/milf-artwork.json new file mode 100644 index 000000000000..c4fdb01fb258 --- /dev/null +++ b/data/game/mi/milf-artwork.json @@ -0,0 +1,23 @@ +{ + "slug": "milf-artwork", + "name": "MILF - Artwork", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130320127" + ], + "release_date": "2017-10-25", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "adventure video game", + "action game", + "casual game" + ], + "developers": [ + "PinkySwear" + ], + "publishers": [ + "PinkySwear" + ] +} diff --git a/data/game/mi/millionaire-trivia-tv-game-q122704832.json b/data/game/mi/millionaire-trivia-tv-game-q122704832.json new file mode 100644 index 000000000000..52be9be98916 --- /dev/null +++ b/data/game/mi/millionaire-trivia-tv-game-q122704832.json @@ -0,0 +1,13 @@ +{ + "slug": "millionaire-trivia-tv-game-q122704832", + "name": "Millionaire Trivia: TV Game+", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122704832" + ], + "release_date": "2023-06-30", + "platforms": [ + "iPadOS", + "iOS" + ] +} diff --git a/data/game/mi/minecraft-dungeons-flames-of-the-nether.json b/data/game/mi/minecraft-dungeons-flames-of-the-nether.json new file mode 100644 index 000000000000..024eae747327 --- /dev/null +++ b/data/game/mi/minecraft-dungeons-flames-of-the-nether.json @@ -0,0 +1,8 @@ +{ + "slug": "minecraft-dungeons-flames-of-the-nether", + "name": "Minecraft Dungeons: Flames of the Nether", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140448037" + ] +} diff --git a/data/game/mi/mini-metro-q106750525.json b/data/game/mi/mini-metro-q106750525.json new file mode 100644 index 000000000000..c51476597d05 --- /dev/null +++ b/data/game/mi/mini-metro-q106750525.json @@ -0,0 +1,20 @@ +{ + "slug": "mini-metro-q106750525", + "name": "Mini Metro+", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106750525" + ], + "release_date": "2021-04-02", + "platforms": [ + "iPadOS", + "iOS", + "macOS" + ], + "developers": [ + "Dinosaur Polo Club" + ], + "publishers": [ + "Dinosaur Polo Club" + ] +} diff --git a/data/game/mi/mini-racers.json b/data/game/mi/mini-racers.json new file mode 100644 index 000000000000..dbad277eeff5 --- /dev/null +++ b/data/game/mi/mini-racers.json @@ -0,0 +1,20 @@ +{ + "slug": "mini-racers", + "name": "Mini Racers", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127388614" + ], + "platforms": [ + "Nintendo 64" + ], + "genres": [ + "racing video game" + ], + "developers": [ + "Looking Glass Studios" + ], + "publishers": [ + "Nintendo" + ] +} diff --git a/data/game/mi/minigo.json b/data/game/mi/minigo.json new file mode 100644 index 000000000000..3655247ee27d --- /dev/null +++ b/data/game/mi/minigo.json @@ -0,0 +1,8 @@ +{ + "slug": "minigo", + "name": "Minigo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q48938217" + ] +} diff --git a/data/game/mi/miracle-juggler.json b/data/game/mi/miracle-juggler.json new file mode 100644 index 000000000000..3a1c2c6f9989 --- /dev/null +++ b/data/game/mi/miracle-juggler.json @@ -0,0 +1,8 @@ +{ + "slug": "miracle-juggler", + "name": "Miracle Juggler", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11342792" + ] +} diff --git a/data/game/mi/mirakl.json b/data/game/mi/mirakl.json new file mode 100644 index 000000000000..0052f1588b72 --- /dev/null +++ b/data/game/mi/mirakl.json @@ -0,0 +1,8 @@ +{ + "slug": "mirakl", + "name": "Mirakl", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11342781" + ] +} diff --git a/data/game/mi/mirror-s-edge-catalyst-collector-s-edition.json b/data/game/mi/mirror-s-edge-catalyst-collector-s-edition.json new file mode 100644 index 000000000000..09a2beeaf2e7 --- /dev/null +++ b/data/game/mi/mirror-s-edge-catalyst-collector-s-edition.json @@ -0,0 +1,23 @@ +{ + "slug": "mirror-s-edge-catalyst-collector-s-edition", + "name": "Mirror's Edge: Catalyst (Collector's Edition)", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125884267" + ], + "release_date": "2015-05-25", + "platforms": [ + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "action-adventure game", + "parkour video game" + ], + "developers": [ + "DICE" + ], + "publishers": [ + "Electronic Arts" + ] +} diff --git a/data/game/mi/mirror-s-edge-catalyst-combat-runner-kit.json b/data/game/mi/mirror-s-edge-catalyst-combat-runner-kit.json new file mode 100644 index 000000000000..c8ff76c7c071 --- /dev/null +++ b/data/game/mi/mirror-s-edge-catalyst-combat-runner-kit.json @@ -0,0 +1,22 @@ +{ + "slug": "mirror-s-edge-catalyst-combat-runner-kit", + "name": "Mirror's Edge: Catalyst - Combat Runner Kit", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125697579" + ], + "platforms": [ + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "action-adventure game", + "parkour video game" + ], + "developers": [ + "DICE" + ], + "publishers": [ + "Electronic Arts" + ] +} diff --git a/data/game/mi/mirror-s-edge-catalyst-runner-kit-bundle.json b/data/game/mi/mirror-s-edge-catalyst-runner-kit-bundle.json new file mode 100644 index 000000000000..3017da7c57fb --- /dev/null +++ b/data/game/mi/mirror-s-edge-catalyst-runner-kit-bundle.json @@ -0,0 +1,23 @@ +{ + "slug": "mirror-s-edge-catalyst-runner-kit-bundle", + "name": "Mirror's Edge™ Catalyst Runner Kit Bundle", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125686797" + ], + "release_date": "2015-05-25", + "platforms": [ + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "action-adventure game", + "parkour video game" + ], + "developers": [ + "DICE" + ], + "publishers": [ + "Electronic Arts" + ] +} diff --git a/data/game/mi/mirror-s-edge-catalyst-speed-runner-kit.json b/data/game/mi/mirror-s-edge-catalyst-speed-runner-kit.json new file mode 100644 index 000000000000..12933f28582b --- /dev/null +++ b/data/game/mi/mirror-s-edge-catalyst-speed-runner-kit.json @@ -0,0 +1,23 @@ +{ + "slug": "mirror-s-edge-catalyst-speed-runner-kit", + "name": "Mirror's Edge: Catalyst - Speed Runner Kit", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125697592" + ], + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "action-adventure game", + "parkour video game" + ], + "developers": [ + "DICE" + ], + "publishers": [ + "Electronic Arts" + ] +} diff --git a/data/game/mi/mitch-s-mess.json b/data/game/mi/mitch-s-mess.json new file mode 100644 index 000000000000..e4db2e87667e --- /dev/null +++ b/data/game/mi/mitch-s-mess.json @@ -0,0 +1,8 @@ +{ + "slug": "mitch-s-mess", + "name": "Mitch's Mess", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q128014893" + ] +} diff --git a/data/game/ml/mlb-the-show-22-digital-deluxe-edition.json b/data/game/ml/mlb-the-show-22-digital-deluxe-edition.json new file mode 100644 index 000000000000..ce169fa4d51f --- /dev/null +++ b/data/game/ml/mlb-the-show-22-digital-deluxe-edition.json @@ -0,0 +1,17 @@ +{ + "slug": "mlb-the-show-22-digital-deluxe-edition", + "name": "MLB: The Show 22 Digital Deluxe Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111781398" + ], + "release_date": "2022-04-01", + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 5", + "PlayStation 4" + ], + "developers": [ + "San Diego Studio" + ] +} diff --git a/data/game/ml/mlb-the-show-22-mvp-edition.json b/data/game/ml/mlb-the-show-22-mvp-edition.json new file mode 100644 index 000000000000..b532d9fe3aaa --- /dev/null +++ b/data/game/ml/mlb-the-show-22-mvp-edition.json @@ -0,0 +1,17 @@ +{ + "slug": "mlb-the-show-22-mvp-edition", + "name": "MLB: The Show 22 MVP Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111781432" + ], + "release_date": "2022-04-01", + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 5", + "PlayStation 4" + ], + "developers": [ + "San Diego Studio" + ] +} diff --git a/data/game/mo/mobius-band.json b/data/game/mo/mobius-band.json new file mode 100644 index 000000000000..d20fc8ffad29 --- /dev/null +++ b/data/game/mo/mobius-band.json @@ -0,0 +1,8 @@ +{ + "slug": "mobius-band", + "name": "MOBIUS BAND*", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125649385" + ] +} diff --git a/data/game/mo/mocha-doom.json b/data/game/mo/mocha-doom.json new file mode 100644 index 000000000000..125863f9ade1 --- /dev/null +++ b/data/game/mo/mocha-doom.json @@ -0,0 +1,8 @@ +{ + "slug": "mocha-doom", + "name": "Mocha Doom", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120686226" + ] +} diff --git a/data/game/mo/mochi-mayhem.json b/data/game/mo/mochi-mayhem.json new file mode 100644 index 000000000000..99e725979edd --- /dev/null +++ b/data/game/mo/mochi-mayhem.json @@ -0,0 +1,9 @@ +{ + "slug": "mochi-mayhem", + "name": "Mochi Mayhem", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130331650" + ], + "release_date": "2024-01-11" +} diff --git a/data/game/mo/mole-manor.json b/data/game/mo/mole-manor.json new file mode 100644 index 000000000000..e1818b3f8f39 --- /dev/null +++ b/data/game/mo/mole-manor.json @@ -0,0 +1,11 @@ +{ + "slug": "mole-manor", + "name": "Mole Manor", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11078453" + ], + "developers": [ + "Shanghai Taomee" + ] +} diff --git a/data/game/mo/moneyshot-pack.json b/data/game/mo/moneyshot-pack.json new file mode 100644 index 000000000000..e29da5cbaeda --- /dev/null +++ b/data/game/mo/moneyshot-pack.json @@ -0,0 +1,12 @@ +{ + "slug": "moneyshot-pack", + "name": "Moneyshot Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60602808" + ], + "release_date": "2012-02-14", + "platforms": [ + "Microsoft Windows" + ] +} diff --git a/data/game/mo/monkey-island-madness.json b/data/game/mo/monkey-island-madness.json new file mode 100644 index 000000000000..88aa11d01511 --- /dev/null +++ b/data/game/mo/monkey-island-madness.json @@ -0,0 +1,11 @@ +{ + "slug": "monkey-island-madness", + "name": "Monkey Island Madness", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124807732" + ], + "publishers": [ + "Lucasfilm Games" + ] +} diff --git a/data/game/mo/monkey-island-special.json b/data/game/mo/monkey-island-special.json new file mode 100644 index 000000000000..4e7863a4bc15 --- /dev/null +++ b/data/game/mo/monkey-island-special.json @@ -0,0 +1,8 @@ +{ + "slug": "monkey-island-special", + "name": "Monkey Island Special", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125203030" + ] +} diff --git a/data/game/mo/monolith-q110817192.json b/data/game/mo/monolith-q110817192.json new file mode 100644 index 000000000000..1ff77b441dc9 --- /dev/null +++ b/data/game/mo/monolith-q110817192.json @@ -0,0 +1,18 @@ +{ + "slug": "monolith-q110817192", + "name": "Monolith", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110817192" + ], + "platforms": [ + "personal computer", + "PlayStation 3" + ], + "genres": [ + "action game" + ], + "developers": [ + "Lesta Games" + ] +} diff --git a/data/game/mo/monster-girl-island-prologue.json b/data/game/mo/monster-girl-island-prologue.json new file mode 100644 index 000000000000..bda82fcc29ed --- /dev/null +++ b/data/game/mo/monster-girl-island-prologue.json @@ -0,0 +1,23 @@ +{ + "slug": "monster-girl-island-prologue", + "name": "Monster Girl Island: Prologue", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q84944311" + ], + "release_date": "2019-06-20", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "dating sim", + "erotic video game" + ], + "developers": [ + "Redamz" + ], + "publishers": [ + "Redamz" + ] +} diff --git a/data/game/mo/monster-hunter-freedom-unite.json b/data/game/mo/monster-hunter-freedom-unite.json new file mode 100644 index 000000000000..321ac8981f6d --- /dev/null +++ b/data/game/mo/monster-hunter-freedom-unite.json @@ -0,0 +1,23 @@ +{ + "slug": "monster-hunter-freedom-unite", + "name": "Monster Hunter Freedom Unite", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q378928" + ], + "release_date": "2008-03-27", + "platforms": [ + "PlayStation Portable", + "iOS" + ], + "genres": [ + "role-playing video game", + "action role-playing game" + ], + "developers": [ + "Capcom" + ], + "publishers": [ + "Capcom" + ] +} diff --git a/data/game/mo/monster-hunter-rise-sunbreak.json b/data/game/mo/monster-hunter-rise-sunbreak.json new file mode 100644 index 000000000000..f51c7587ed21 --- /dev/null +++ b/data/game/mo/monster-hunter-rise-sunbreak.json @@ -0,0 +1,12 @@ +{ + "slug": "monster-hunter-rise-sunbreak", + "name": "Monster Hunter Rise: Sunbreak", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113087661" + ], + "release_date": "2022-06-30", + "platforms": [ + "Microsoft Windows" + ] +} diff --git a/data/game/mo/monster-hunter-stories-q107611422.json b/data/game/mo/monster-hunter-stories-q107611422.json new file mode 100644 index 000000000000..9a516c575a55 --- /dev/null +++ b/data/game/mo/monster-hunter-stories-q107611422.json @@ -0,0 +1,19 @@ +{ + "slug": "monster-hunter-stories-q107611422", + "name": "Monster Hunter Stories+", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107611422" + ], + "release_date": "2021-08-06", + "platforms": [ + "iPadOS", + "iOS" + ], + "developers": [ + "Capcom" + ], + "publishers": [ + "Capcom" + ] +} diff --git a/data/game/mo/monster-prom-second-term.json b/data/game/mo/monster-prom-second-term.json new file mode 100644 index 000000000000..32009feb61b0 --- /dev/null +++ b/data/game/mo/monster-prom-second-term.json @@ -0,0 +1,9 @@ +{ + "slug": "monster-prom-second-term", + "name": "Monster Prom: Second Term", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q99647456" + ], + "release_date": "2019-02-14" +} diff --git a/data/game/mo/monument-valley-2-q111154332.json b/data/game/mo/monument-valley-2-q111154332.json new file mode 100644 index 000000000000..044ce7153190 --- /dev/null +++ b/data/game/mo/monument-valley-2-q111154332.json @@ -0,0 +1,13 @@ +{ + "slug": "monument-valley-2-q111154332", + "name": "Monument Valley 2+", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111154332" + ], + "release_date": "2022-03-11", + "platforms": [ + "iPadOS", + "iOS" + ] +} diff --git a/data/game/mo/monument-valley-q107349527.json b/data/game/mo/monument-valley-q107349527.json new file mode 100644 index 000000000000..088e6876fc4b --- /dev/null +++ b/data/game/mo/monument-valley-q107349527.json @@ -0,0 +1,22 @@ +{ + "slug": "monument-valley-q107349527", + "name": "Monument Valley+", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107349527" + ], + "release_date": "2021-04-02", + "platforms": [ + "iPadOS", + "iOS" + ], + "genres": [ + "puzzle video game" + ], + "developers": [ + "ustwo Games" + ], + "publishers": [ + "ustwo Games" + ] +} diff --git a/data/game/mo/mope-io.json b/data/game/mo/mope-io.json new file mode 100644 index 000000000000..4fc852b36fb0 --- /dev/null +++ b/data/game/mo/mope-io.json @@ -0,0 +1,11 @@ +{ + "slug": "mope-io", + "name": "Mope.io", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121346088" + ], + "genres": [ + "strategy video game" + ] +} diff --git a/data/game/mo/more-50-questions-part-1.json b/data/game/mo/more-50-questions-part-1.json new file mode 100644 index 000000000000..4141f19fe282 --- /dev/null +++ b/data/game/mo/more-50-questions-part-1.json @@ -0,0 +1,21 @@ +{ + "slug": "more-50-questions-part-1", + "name": "东方试闻广纪: More 50 Questions Part 1", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125720047" + ], + "release_date": "2018-08-07", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "trivia video game" + ], + "developers": [ + "Bawu Team" + ], + "publishers": [ + "Bawu Team" + ] +} diff --git a/data/game/mo/more-50-questions-part-2.json b/data/game/mo/more-50-questions-part-2.json new file mode 100644 index 000000000000..0cf84a8c8fd6 --- /dev/null +++ b/data/game/mo/more-50-questions-part-2.json @@ -0,0 +1,21 @@ +{ + "slug": "more-50-questions-part-2", + "name": "东方试闻广纪: More 50 Questions Part 2", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125720277" + ], + "release_date": "2018-08-07", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "trivia video game" + ], + "developers": [ + "Bawu Team" + ], + "publishers": [ + "Bawu Team" + ] +} diff --git a/data/game/mo/mortal-kombat-11-ultimate-edition.json b/data/game/mo/mortal-kombat-11-ultimate-edition.json new file mode 100644 index 000000000000..90f5a8220361 --- /dev/null +++ b/data/game/mo/mortal-kombat-11-ultimate-edition.json @@ -0,0 +1,24 @@ +{ + "slug": "mortal-kombat-11-ultimate-edition", + "name": "Mortal Kombat 11: Ultimate Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q104887249" + ], + "release_date": "2020-11-17", + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 5", + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "fighting game" + ], + "developers": [ + "NetherRealm Studios" + ], + "publishers": [ + "Warner Bros. Games" + ] +} diff --git a/data/game/mo/mortal-kombat-12.json b/data/game/mo/mortal-kombat-12.json new file mode 100644 index 000000000000..9ddf8e36dbe5 --- /dev/null +++ b/data/game/mo/mortal-kombat-12.json @@ -0,0 +1,17 @@ +{ + "slug": "mortal-kombat-12", + "name": "Mortal Kombat 12", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111669943" + ], + "genres": [ + "fighting game" + ], + "developers": [ + "NetherRealm Studios" + ], + "publishers": [ + "Warner Bros. Games" + ] +} diff --git a/data/game/mo/mortal-kombat-arcade-kollection.json b/data/game/mo/mortal-kombat-arcade-kollection.json new file mode 100644 index 000000000000..dc1ee9a12b57 --- /dev/null +++ b/data/game/mo/mortal-kombat-arcade-kollection.json @@ -0,0 +1,23 @@ +{ + "slug": "mortal-kombat-arcade-kollection", + "name": "Mortal Kombat Arcade Kollection", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4044539" + ], + "release_date": "2011-08-31", + "platforms": [ + "PlayStation Portable", + "PlayStation 3", + "Microsoft Windows" + ], + "genres": [ + "fighting game" + ], + "developers": [ + "NetherRealm Studios" + ], + "publishers": [ + "Warner Bros. Games" + ] +} diff --git a/data/game/mo/mortal-kombat-legacy-kollection.json b/data/game/mo/mortal-kombat-legacy-kollection.json new file mode 100644 index 000000000000..056fd577502d --- /dev/null +++ b/data/game/mo/mortal-kombat-legacy-kollection.json @@ -0,0 +1,24 @@ +{ + "slug": "mortal-kombat-legacy-kollection", + "name": "Mortal Kombat: Legacy Kollection", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134707692" + ], + "release_date": "2025-10-30", + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 5", + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "2D fighting game" + ], + "developers": [ + "Digital Eclipse" + ], + "publishers": [ + "Atari, Inc." + ] +} diff --git a/data/game/mo/mortal-kombat-xl-pack.json b/data/game/mo/mortal-kombat-xl-pack.json new file mode 100644 index 000000000000..313b973373f4 --- /dev/null +++ b/data/game/mo/mortal-kombat-xl-pack.json @@ -0,0 +1,18 @@ +{ + "slug": "mortal-kombat-xl-pack", + "name": "Mortal Kombat XL Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q64776870" + ], + "release_date": "2016-03-01", + "platforms": [ + "PlayStation 4" + ], + "developers": [ + "NetherRealm Studios" + ], + "publishers": [ + "Warner Bros. Games" + ] +} diff --git a/data/game/mo/mortal-shell-the-virtuous-cycle.json b/data/game/mo/mortal-shell-the-virtuous-cycle.json new file mode 100644 index 000000000000..8e74e5a2bd10 --- /dev/null +++ b/data/game/mo/mortal-shell-the-virtuous-cycle.json @@ -0,0 +1,12 @@ +{ + "slug": "mortal-shell-the-virtuous-cycle", + "name": "Mortal Shell: The Virtuous Cycle", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107697187" + ], + "release_date": "2021-08-18", + "platforms": [ + "Microsoft Windows" + ] +} diff --git a/data/game/mo/mother-1-2.json b/data/game/mo/mother-1-2.json new file mode 100644 index 000000000000..e41030d306ee --- /dev/null +++ b/data/game/mo/mother-1-2.json @@ -0,0 +1,12 @@ +{ + "slug": "mother-1-2", + "name": "Mother 1 + 2", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3108749" + ], + "release_date": "2003-06-20", + "platforms": [ + "Game Boy Advance" + ] +} diff --git a/data/game/mo/mother-of-all-secrets.json b/data/game/mo/mother-of-all-secrets.json new file mode 100644 index 000000000000..7d93f8353e65 --- /dev/null +++ b/data/game/mo/mother-of-all-secrets.json @@ -0,0 +1,17 @@ +{ + "slug": "mother-of-all-secrets", + "name": "Mother of All Secrets", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110740739" + ], + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Sever Studio" + ], + "publishers": [ + "101xp" + ] +} diff --git a/data/game/mo/moto-racer-collection.json b/data/game/mo/moto-racer-collection.json new file mode 100644 index 000000000000..df4aa9508396 --- /dev/null +++ b/data/game/mo/moto-racer-collection.json @@ -0,0 +1,15 @@ +{ + "slug": "moto-racer-collection", + "name": "Moto Racer Collection", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q114284682" + ], + "release_date": "2011-11-30", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "racing video game" + ] +} diff --git a/data/game/mo/mount-blade-with-fire-sword.json b/data/game/mo/mount-blade-with-fire-sword.json new file mode 100644 index 000000000000..58e3ce08b68d --- /dev/null +++ b/data/game/mo/mount-blade-with-fire-sword.json @@ -0,0 +1,21 @@ +{ + "slug": "mount-blade-with-fire-sword", + "name": "Mount & Blade: With Fire & Sword", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2587253" + ], + "release_date": "2011-05-04", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "action role-playing game" + ], + "developers": [ + "TaleWorlds" + ], + "publishers": [ + "Paradox Interactive" + ] +} diff --git a/data/game/mo/mount-tepid.json b/data/game/mo/mount-tepid.json new file mode 100644 index 000000000000..c3fede5a1cc2 --- /dev/null +++ b/data/game/mo/mount-tepid.json @@ -0,0 +1,9 @@ +{ + "slug": "mount-tepid", + "name": "Mount Tepid", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112582105" + ], + "release_date": "2013-04-18" +} diff --git a/data/game/mo/movidle.json b/data/game/mo/movidle.json new file mode 100644 index 000000000000..8c2698befec7 --- /dev/null +++ b/data/game/mo/movidle.json @@ -0,0 +1,14 @@ +{ + "slug": "movidle", + "name": "Movidle", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140285796" + ], + "release_date": "2026-05-17", + "genres": [ + "puzzle video game", + "quiz", + "word game" + ] +} diff --git a/data/game/mo/moviestarplanet.json b/data/game/mo/moviestarplanet.json new file mode 100644 index 000000000000..0511982d3c0c --- /dev/null +++ b/data/game/mo/moviestarplanet.json @@ -0,0 +1,14 @@ +{ + "slug": "moviestarplanet", + "name": "MovieStarPlanet", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3425948" + ], + "release_date": "2009-05-01", + "platforms": [ + "browser game", + "iOS", + "Microsoft Windows" + ] +} diff --git a/data/game/mr/mr-smiley-head-s-safari-2.json b/data/game/mr/mr-smiley-head-s-safari-2.json new file mode 100644 index 000000000000..f2cacd08bc4e --- /dev/null +++ b/data/game/mr/mr-smiley-head-s-safari-2.json @@ -0,0 +1,15 @@ +{ + "slug": "mr-smiley-head-s-safari-2", + "name": "Mr. Smiley Head's Safari 2", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q67471766" + ], + "release_date": "2016-09-29", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter" + ] +} diff --git a/data/game/mt/mt-travail.json b/data/game/mt/mt-travail.json new file mode 100644 index 000000000000..683eb96a85a9 --- /dev/null +++ b/data/game/mt/mt-travail.json @@ -0,0 +1,9 @@ +{ + "slug": "mt-travail", + "name": "Mt. Travail", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112582106" + ], + "release_date": "2013-03-24" +} diff --git a/data/game/mu/mulle-meck-builds-a-boat.json b/data/game/mu/mulle-meck-builds-a-boat.json new file mode 100644 index 000000000000..fb50e8ed47b7 --- /dev/null +++ b/data/game/mu/mulle-meck-builds-a-boat.json @@ -0,0 +1,12 @@ +{ + "slug": "mulle-meck-builds-a-boat", + "name": "Mulle Meck builds a boat", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123083447" + ], + "release_date": "2016-01-01", + "publishers": [ + "Piu-Piu Team" + ] +} diff --git a/data/game/mu/mulle-meck-builds-a-car.json b/data/game/mu/mulle-meck-builds-a-car.json new file mode 100644 index 000000000000..0fc8fbbcf053 --- /dev/null +++ b/data/game/mu/mulle-meck-builds-a-car.json @@ -0,0 +1,12 @@ +{ + "slug": "mulle-meck-builds-a-car", + "name": "Mulle Meck Builds a Car", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123056123" + ], + "release_date": "2016-01-01", + "publishers": [ + "Piu-Piu Team" + ] +} diff --git a/data/game/mu/multi-theft-auto-san-andreas.json b/data/game/mu/multi-theft-auto-san-andreas.json new file mode 100644 index 000000000000..1923f9bf824c --- /dev/null +++ b/data/game/mu/multi-theft-auto-san-andreas.json @@ -0,0 +1,8 @@ +{ + "slug": "multi-theft-auto-san-andreas", + "name": "Multi Theft Auto: San Andreas", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q29364781" + ] +} diff --git a/data/game/mu/multi-theft-auto-vice-city.json b/data/game/mu/multi-theft-auto-vice-city.json new file mode 100644 index 000000000000..8548567149f8 --- /dev/null +++ b/data/game/mu/multi-theft-auto-vice-city.json @@ -0,0 +1,8 @@ +{ + "slug": "multi-theft-auto-vice-city", + "name": "Multi Theft Auto: Vice City", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q29364783" + ] +} diff --git a/data/game/mu/multi-theft-auto.json b/data/game/mu/multi-theft-auto.json new file mode 100644 index 000000000000..cfefdd322417 --- /dev/null +++ b/data/game/mu/multi-theft-auto.json @@ -0,0 +1,15 @@ +{ + "slug": "multi-theft-auto", + "name": "Multi Theft Auto", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q265656" + ], + "release_date": "2006-01-22", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "third-person shooter" + ] +} diff --git a/data/game/mu/multibowl.json b/data/game/mu/multibowl.json new file mode 100644 index 000000000000..5131fedf4db2 --- /dev/null +++ b/data/game/mu/multibowl.json @@ -0,0 +1,8 @@ +{ + "slug": "multibowl", + "name": "Multibowl", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q27536869" + ] +} diff --git a/data/game/mu/multiwinia-demo.json b/data/game/mu/multiwinia-demo.json new file mode 100644 index 000000000000..1ac18a707305 --- /dev/null +++ b/data/game/mu/multiwinia-demo.json @@ -0,0 +1,21 @@ +{ + "slug": "multiwinia-demo", + "name": "Multiwinia Demo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122705458" + ], + "release_date": "2008-09-19", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "real-time strategy" + ], + "developers": [ + "Introversion Software" + ], + "publishers": [ + "Introversion Software" + ] +} diff --git a/data/game/mu/mundo-gaturro.json b/data/game/mu/mundo-gaturro.json new file mode 100644 index 000000000000..535d06a5e297 --- /dev/null +++ b/data/game/mu/mundo-gaturro.json @@ -0,0 +1,21 @@ +{ + "slug": "mundo-gaturro", + "name": "Mundo Gaturro", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q20017260" + ], + "release_date": "2010-01-01", + "platforms": [ + "iOS", + "macOS", + "Microsoft Windows" + ], + "genres": [ + "massively multiplayer online game", + "children's game" + ], + "developers": [ + "QB9 Entertainment" + ] +} diff --git a/data/game/mu/murder-mystery-2-q135721427.json b/data/game/mu/murder-mystery-2-q135721427.json new file mode 100644 index 000000000000..6ccc0665965a --- /dev/null +++ b/data/game/mu/murder-mystery-2-q135721427.json @@ -0,0 +1,16 @@ +{ + "slug": "murder-mystery-2-q135721427", + "name": "Murder Mystery 2", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135721427" + ], + "release_date": "2014-01-18", + "genres": [ + "horror video game", + "mystery video game" + ], + "developers": [ + "Nikilis" + ] +} diff --git a/data/game/mu/murder-mystery-2.json b/data/game/mu/murder-mystery-2.json new file mode 100644 index 000000000000..87297620c79d --- /dev/null +++ b/data/game/mu/murder-mystery-2.json @@ -0,0 +1,16 @@ +{ + "slug": "murder-mystery-2", + "name": "Murder Mystery 2", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126958164" + ], + "release_date": "2014-01-18", + "genres": [ + "mystery fiction", + "mystery video game" + ], + "developers": [ + "Nikilis" + ] +} diff --git a/data/game/mu/muumipappa-kalassa.json b/data/game/mu/muumipappa-kalassa.json new file mode 100644 index 000000000000..83838f419c2e --- /dev/null +++ b/data/game/mu/muumipappa-kalassa.json @@ -0,0 +1,18 @@ +{ + "slug": "muumipappa-kalassa", + "name": "Muumipappa kalassa", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106310534" + ], + "release_date": "2001-01-01", + "platforms": [ + "Java" + ], + "genres": [ + "fishing video game" + ], + "developers": [ + "RedLynx" + ] +} diff --git a/data/game/my/my-bowling-3d-q113660205.json b/data/game/my/my-bowling-3d-q113660205.json new file mode 100644 index 000000000000..bbc0bf709bda --- /dev/null +++ b/data/game/my/my-bowling-3d-q113660205.json @@ -0,0 +1,14 @@ +{ + "slug": "my-bowling-3d-q113660205", + "name": "My Bowling 3D+", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113660205" + ], + "release_date": "2022-07-01", + "platforms": [ + "iPadOS", + "iOS", + "macOS" + ] +} diff --git a/data/game/my/my-friend-peppa-pig-complete-edition.json b/data/game/my/my-friend-peppa-pig-complete-edition.json new file mode 100644 index 000000000000..a6bb8b4e77f8 --- /dev/null +++ b/data/game/my/my-friend-peppa-pig-complete-edition.json @@ -0,0 +1,18 @@ +{ + "slug": "my-friend-peppa-pig-complete-edition", + "name": "My Friend Peppa Pig - Complete Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115988027" + ], + "release_date": "2022-08-26", + "platforms": [ + "Xbox Series X and Series S" + ], + "developers": [ + "Petoons Studio" + ], + "publishers": [ + "Outright Games" + ] +} diff --git a/data/game/my/my-nba-2k23.json b/data/game/my/my-nba-2k23.json new file mode 100644 index 000000000000..0c07ce370481 --- /dev/null +++ b/data/game/my/my-nba-2k23.json @@ -0,0 +1,11 @@ +{ + "slug": "my-nba-2k23", + "name": "My NBA 2K23", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135553338" + ], + "genres": [ + "basketball video game" + ] +} diff --git a/data/game/my/my-talking-angela-2-q122699733.json b/data/game/my/my-talking-angela-2-q122699733.json new file mode 100644 index 000000000000..d70afdfcd2a7 --- /dev/null +++ b/data/game/my/my-talking-angela-2-q122699733.json @@ -0,0 +1,13 @@ +{ + "slug": "my-talking-angela-2-q122699733", + "name": "My Talking Angela 2+", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122699733" + ], + "release_date": "2023-09-08", + "platforms": [ + "iPadOS", + "iOS" + ] +} diff --git a/data/game/my/my-talking-tom-q113509687.json b/data/game/my/my-talking-tom-q113509687.json new file mode 100644 index 000000000000..8b13aab909dd --- /dev/null +++ b/data/game/my/my-talking-tom-q113509687.json @@ -0,0 +1,13 @@ +{ + "slug": "my-talking-tom-q113509687", + "name": "My Talking Tom+", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113509687" + ], + "release_date": "2022-08-12", + "platforms": [ + "iPadOS", + "iOS" + ] +} diff --git a/data/game/my/myminicity.json b/data/game/my/myminicity.json new file mode 100644 index 000000000000..df09a2fdb769 --- /dev/null +++ b/data/game/my/myminicity.json @@ -0,0 +1,8 @@ +{ + "slug": "myminicity", + "name": "MyMiniCity", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q12746122" + ] +} diff --git a/data/game/my/mysims-cozy-bundle.json b/data/game/my/mysims-cozy-bundle.json new file mode 100644 index 000000000000..58c89ef1e257 --- /dev/null +++ b/data/game/my/mysims-cozy-bundle.json @@ -0,0 +1,24 @@ +{ + "slug": "mysims-cozy-bundle", + "name": "MySims: Cozy Bundle", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134316494" + ], + "release_date": "2024-11-19", + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 5", + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ], + "developers": [ + "Visceral Games", + "Sylwestra" + ], + "publishers": [ + "Electronic Arts" + ] +} diff --git a/data/game/my/mysims-social.json b/data/game/my/mysims-social.json new file mode 100644 index 000000000000..05bf7aa02cb8 --- /dev/null +++ b/data/game/my/mysims-social.json @@ -0,0 +1,11 @@ +{ + "slug": "mysims-social", + "name": "MySims Social", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63247559" + ], + "platforms": [ + "Microsoft Windows" + ] +} diff --git a/data/game/my/myst-online-uru-live.json b/data/game/my/myst-online-uru-live.json new file mode 100644 index 000000000000..8853802edfbe --- /dev/null +++ b/data/game/my/myst-online-uru-live.json @@ -0,0 +1,20 @@ +{ + "slug": "myst-online-uru-live", + "name": "Myst Online: Uru Live", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3869157" + ], + "release_date": "2007-02-15", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "adventure video game", + "massively multiplayer online game" + ], + "developers": [ + "Cyan Worlds" + ] +} diff --git a/data/game/n-/n-ppistaituri.json b/data/game/n-/n-ppistaituri.json new file mode 100644 index 000000000000..506ed023bcbd --- /dev/null +++ b/data/game/n-/n-ppistaituri.json @@ -0,0 +1,8 @@ +{ + "slug": "n-ppistaituri", + "name": "NäppisTaituri", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q100701590" + ] +} diff --git a/data/game/na/namco-anthology-1.json b/data/game/na/namco-anthology-1.json new file mode 100644 index 000000000000..6a448a2b7eee --- /dev/null +++ b/data/game/na/namco-anthology-1.json @@ -0,0 +1,18 @@ +{ + "slug": "namco-anthology-1", + "name": "Namco Anthology 1", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q20240918" + ], + "release_date": "1998-06-04", + "genres": [ + "video game compilation" + ], + "developers": [ + "Namco" + ], + "publishers": [ + "Namco" + ] +} diff --git a/data/game/na/namco-anthology-2.json b/data/game/na/namco-anthology-2.json new file mode 100644 index 000000000000..b39b2f2f94cb --- /dev/null +++ b/data/game/na/namco-anthology-2.json @@ -0,0 +1,18 @@ +{ + "slug": "namco-anthology-2", + "name": "Namco Anthology 2", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q20240919" + ], + "release_date": "1998-09-23", + "genres": [ + "video game compilation" + ], + "developers": [ + "Namco" + ], + "publishers": [ + "Namco" + ] +} diff --git a/data/game/na/namco-classic-collection-vol-1.json b/data/game/na/namco-classic-collection-vol-1.json new file mode 100644 index 000000000000..2ac7c0736767 --- /dev/null +++ b/data/game/na/namco-classic-collection-vol-1.json @@ -0,0 +1,21 @@ +{ + "slug": "namco-classic-collection-vol-1", + "name": "Namco Classic Collection Vol. 1", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6961452" + ], + "release_date": "1995-11-01", + "platforms": [ + "arcade video game machine" + ], + "genres": [ + "arcade" + ], + "developers": [ + "Namco" + ], + "publishers": [ + "Namco" + ] +} diff --git a/data/game/na/namco-classic-collection-vol-2.json b/data/game/na/namco-classic-collection-vol-2.json new file mode 100644 index 000000000000..8be1a291aa5b --- /dev/null +++ b/data/game/na/namco-classic-collection-vol-2.json @@ -0,0 +1,21 @@ +{ + "slug": "namco-classic-collection-vol-2", + "name": "Namco Classic Collection Vol. 2", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16266791" + ], + "release_date": "1996-01-01", + "platforms": [ + "arcade video game machine" + ], + "genres": [ + "arcade" + ], + "developers": [ + "Namco" + ], + "publishers": [ + "Namco" + ] +} diff --git a/data/game/na/namco-collection.json b/data/game/na/namco-collection.json new file mode 100644 index 000000000000..064176a2eb8b --- /dev/null +++ b/data/game/na/namco-collection.json @@ -0,0 +1,11 @@ +{ + "slug": "namco-collection", + "name": "Namco Collection", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6961454" + ], + "platforms": [ + "Microsoft Windows" + ] +} diff --git a/data/game/na/namco-museum-encore.json b/data/game/na/namco-museum-encore.json new file mode 100644 index 000000000000..f4f1ff442081 --- /dev/null +++ b/data/game/na/namco-museum-encore.json @@ -0,0 +1,12 @@ +{ + "slug": "namco-museum-encore", + "name": "Namco Museum Encore", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q20240925" + ], + "release_date": "1997-10-30", + "publishers": [ + "Namco" + ] +} diff --git a/data/game/na/namco-museum-q20240929.json b/data/game/na/namco-museum-q20240929.json new file mode 100644 index 000000000000..dd661382873c --- /dev/null +++ b/data/game/na/namco-museum-q20240929.json @@ -0,0 +1,15 @@ +{ + "slug": "namco-museum-q20240929", + "name": "Namco Museum", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q20240929" + ], + "release_date": "2001-01-01", + "platforms": [ + "Game Boy Advance" + ], + "genres": [ + "video game compilation" + ] +} diff --git a/data/game/na/namco-museum-q20240936.json b/data/game/na/namco-museum-q20240936.json new file mode 100644 index 000000000000..677e623fbf77 --- /dev/null +++ b/data/game/na/namco-museum-q20240936.json @@ -0,0 +1,12 @@ +{ + "slug": "namco-museum-q20240936", + "name": "Namco Museum", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q20240936" + ], + "release_date": "2002-10-09", + "platforms": [ + "Nintendo GameCube" + ] +} diff --git a/data/game/na/namco-museum-virtual-arcade.json b/data/game/na/namco-museum-virtual-arcade.json new file mode 100644 index 000000000000..60e71001d83a --- /dev/null +++ b/data/game/na/namco-museum-virtual-arcade.json @@ -0,0 +1,15 @@ +{ + "slug": "namco-museum-virtual-arcade", + "name": "Namco Museum Virtual Arcade", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106522050" + ], + "release_date": "2008-11-04", + "developers": [ + "Bandai Namco Entertainment" + ], + "publishers": [ + "Bandai Namco Entertainment" + ] +} diff --git a/data/game/na/namco-museum-vol-2-q1830261.json b/data/game/na/namco-museum-vol-2-q1830261.json new file mode 100644 index 000000000000..2a7d980bd18a --- /dev/null +++ b/data/game/na/namco-museum-vol-2-q1830261.json @@ -0,0 +1,12 @@ +{ + "slug": "namco-museum-vol-2-q1830261", + "name": "Namco Museum Vol. 2", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1830261" + ], + "release_date": "1996-02-09", + "publishers": [ + "Namco" + ] +} diff --git a/data/game/na/namco-museum-vol-2.json b/data/game/na/namco-museum-vol-2.json new file mode 100644 index 000000000000..e626cd444a57 --- /dev/null +++ b/data/game/na/namco-museum-vol-2.json @@ -0,0 +1,19 @@ +{ + "slug": "namco-museum-vol-2", + "name": "Namco Museum Vol.2", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127419972" + ], + "release_date": "2006-02-23", + "platforms": [ + "PlayStation Portable" + ], + "developers": [ + "Tose Co.", + "Gotch Technology Corp." + ], + "publishers": [ + "Namco" + ] +} diff --git a/data/game/na/namco-museum-vol-3.json b/data/game/na/namco-museum-vol-3.json new file mode 100644 index 000000000000..c59e98d05720 --- /dev/null +++ b/data/game/na/namco-museum-vol-3.json @@ -0,0 +1,12 @@ +{ + "slug": "namco-museum-vol-3", + "name": "Namco Museum Vol. 3", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1833597" + ], + "release_date": "1996-06-21", + "publishers": [ + "Namco" + ] +} diff --git a/data/game/na/namco-museum-vol-4.json b/data/game/na/namco-museum-vol-4.json new file mode 100644 index 000000000000..a7f9bf0ef26c --- /dev/null +++ b/data/game/na/namco-museum-vol-4.json @@ -0,0 +1,12 @@ +{ + "slug": "namco-museum-vol-4", + "name": "Namco Museum Vol. 4", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2377059" + ], + "release_date": "1996-11-08", + "publishers": [ + "Namco" + ] +} diff --git a/data/game/na/namco-museum-vol-5.json b/data/game/na/namco-museum-vol-5.json new file mode 100644 index 000000000000..d6142c061d55 --- /dev/null +++ b/data/game/na/namco-museum-vol-5.json @@ -0,0 +1,12 @@ +{ + "slug": "namco-museum-vol-5", + "name": "Namco Museum Vol. 5", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q13873811" + ], + "release_date": "1997-01-01", + "publishers": [ + "Namco" + ] +} diff --git a/data/game/na/namco-museum.json b/data/game/na/namco-museum.json new file mode 100644 index 000000000000..ea25744a1f01 --- /dev/null +++ b/data/game/na/namco-museum.json @@ -0,0 +1,19 @@ +{ + "slug": "namco-museum", + "name": "Namco Museum", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127419823" + ], + "release_date": "2005-02-24", + "platforms": [ + "PlayStation Portable" + ], + "developers": [ + "Tose Co.", + "Gotch Technology Corp." + ], + "publishers": [ + "Namco" + ] +} diff --git a/data/game/na/nanasy.json b/data/game/na/nanasy.json new file mode 100644 index 000000000000..e8434eb92f31 --- /dev/null +++ b/data/game/na/nanasy.json @@ -0,0 +1,8 @@ +{ + "slug": "nanasy", + "name": "NANASY", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11323924" + ] +} diff --git a/data/game/na/nape-retroverse-collection.json b/data/game/na/nape-retroverse-collection.json new file mode 100644 index 000000000000..b452671589a3 --- /dev/null +++ b/data/game/na/nape-retroverse-collection.json @@ -0,0 +1,18 @@ +{ + "slug": "nape-retroverse-collection", + "name": "Nape Retroverse Collection", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110939018" + ], + "release_date": "2022-02-10", + "platforms": [ + "PlayStation 5" + ], + "developers": [ + "Nape Games" + ], + "publishers": [ + "JanduSoft" + ] +} diff --git a/data/game/na/naruto-shippuden-ultimate-ninja-storm-4-road-to-boruto.json b/data/game/na/naruto-shippuden-ultimate-ninja-storm-4-road-to-boruto.json new file mode 100644 index 000000000000..75588cc1d195 --- /dev/null +++ b/data/game/na/naruto-shippuden-ultimate-ninja-storm-4-road-to-boruto.json @@ -0,0 +1,8 @@ +{ + "slug": "naruto-shippuden-ultimate-ninja-storm-4-road-to-boruto", + "name": "Naruto Shippuden: Ultimate Ninja Storm 4 - Road to Boruto", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140472010" + ] +} diff --git a/data/game/na/national-geographic-of-azeroth.json b/data/game/na/national-geographic-of-azeroth.json new file mode 100644 index 000000000000..26643456d7b9 --- /dev/null +++ b/data/game/na/national-geographic-of-azeroth.json @@ -0,0 +1,8 @@ +{ + "slug": "national-geographic-of-azeroth", + "name": "National Geographic of Azeroth", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q15900307" + ] +} diff --git a/data/game/na/natural-disaster-survival.json b/data/game/na/natural-disaster-survival.json new file mode 100644 index 000000000000..d66236679512 --- /dev/null +++ b/data/game/na/natural-disaster-survival.json @@ -0,0 +1,12 @@ +{ + "slug": "natural-disaster-survival", + "name": "Natural Disaster Survival", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118281148" + ], + "release_date": "2008-03-28", + "genres": [ + "survival game" + ] +} diff --git a/data/game/na/natural-selection.json b/data/game/na/natural-selection.json new file mode 100644 index 000000000000..d16e13553fe7 --- /dev/null +++ b/data/game/na/natural-selection.json @@ -0,0 +1,20 @@ +{ + "slug": "natural-selection", + "name": "Natural Selection", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1809475" + ], + "release_date": "2002-10-31", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "real-time strategy", + "science fiction video game" + ], + "developers": [ + "Unknown Worlds Entertainment" + ] +} diff --git a/data/game/nb/nba-2k21-arcade-edition.json b/data/game/nb/nba-2k21-arcade-edition.json new file mode 100644 index 000000000000..84a5c7e26a75 --- /dev/null +++ b/data/game/nb/nba-2k21-arcade-edition.json @@ -0,0 +1,24 @@ +{ + "slug": "nba-2k21-arcade-edition", + "name": "NBA 2K21 Arcade Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107349537" + ], + "release_date": "2021-04-02", + "platforms": [ + "iPadOS", + "tvOS", + "iOS", + "macOS" + ], + "genres": [ + "basketball video game" + ], + "developers": [ + "Visual Concepts" + ], + "publishers": [ + "2K Sports" + ] +} diff --git a/data/game/nb/nba-2k22-arcade-edition.json b/data/game/nb/nba-2k22-arcade-edition.json new file mode 100644 index 000000000000..51ebc525ee9a --- /dev/null +++ b/data/game/nb/nba-2k22-arcade-edition.json @@ -0,0 +1,21 @@ +{ + "slug": "nba-2k22-arcade-edition", + "name": "NBA 2K22 Arcade Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108553004" + ], + "release_date": "2021-10-19", + "platforms": [ + "tvOS", + "iPadOS", + "iOS", + "macOS" + ], + "genres": [ + "basketball video game" + ], + "publishers": [ + "2K" + ] +} diff --git a/data/game/nb/nba-2k23-arcade-edition.json b/data/game/nb/nba-2k23-arcade-edition.json new file mode 100644 index 000000000000..2983eebd8e6b --- /dev/null +++ b/data/game/nb/nba-2k23-arcade-edition.json @@ -0,0 +1,18 @@ +{ + "slug": "nba-2k23-arcade-edition", + "name": "NBA 2K23 Arcade Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113884475" + ], + "release_date": "2022-10-18", + "platforms": [ + "iPadOS", + "macOS", + "tvOS", + "iOS" + ], + "genres": [ + "basketball video game" + ] +} diff --git a/data/game/nb/nba-2k24-arcade-edition.json b/data/game/nb/nba-2k24-arcade-edition.json new file mode 100644 index 000000000000..35094deb97f2 --- /dev/null +++ b/data/game/nb/nba-2k24-arcade-edition.json @@ -0,0 +1,18 @@ +{ + "slug": "nba-2k24-arcade-edition", + "name": "NBA 2K24 Arcade Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122945872" + ], + "release_date": "2023-10-24", + "platforms": [ + "iPadOS", + "tvOS", + "iOS", + "macOS" + ], + "genres": [ + "basketball video game" + ] +} diff --git a/data/game/nb/nba-2k25-arcade-edition.json b/data/game/nb/nba-2k25-arcade-edition.json new file mode 100644 index 000000000000..77ea0ee9aa39 --- /dev/null +++ b/data/game/nb/nba-2k25-arcade-edition.json @@ -0,0 +1,11 @@ +{ + "slug": "nba-2k25-arcade-edition", + "name": "NBA 2K25 Arcade Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135553238" + ], + "genres": [ + "basketball video game" + ] +} diff --git a/data/game/nb/nba-action-q3334218.json b/data/game/nb/nba-action-q3334218.json new file mode 100644 index 000000000000..a5caf082ed0a --- /dev/null +++ b/data/game/nb/nba-action-q3334218.json @@ -0,0 +1,14 @@ +{ + "slug": "nba-action-q3334218", + "name": "NBA Action", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3334218" + ], + "genres": [ + "basketball video game" + ], + "publishers": [ + "Sega" + ] +} diff --git a/data/game/nc/ncaa-gamebreaker-2002.json b/data/game/nc/ncaa-gamebreaker-2002.json new file mode 100644 index 000000000000..d1998cbe98e0 --- /dev/null +++ b/data/game/nc/ncaa-gamebreaker-2002.json @@ -0,0 +1,8 @@ +{ + "slug": "ncaa-gamebreaker-2002", + "name": "NCAA GameBreaker 2002", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q96632154" + ] +} diff --git a/data/game/ne/necessary-force.json b/data/game/ne/necessary-force.json new file mode 100644 index 000000000000..7a5cb9124b08 --- /dev/null +++ b/data/game/ne/necessary-force.json @@ -0,0 +1,15 @@ +{ + "slug": "necessary-force", + "name": "Necessary Force", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110817118" + ], + "platforms": [ + "PlayStation 3", + "Microsoft Windows" + ], + "developers": [ + "Midway Studios – Newcastle" + ] +} diff --git a/data/game/ne/need-for-speed-most-wanted-complete-dlc-bundle.json b/data/game/ne/need-for-speed-most-wanted-complete-dlc-bundle.json new file mode 100644 index 000000000000..032bd95da339 --- /dev/null +++ b/data/game/ne/need-for-speed-most-wanted-complete-dlc-bundle.json @@ -0,0 +1,23 @@ +{ + "slug": "need-for-speed-most-wanted-complete-dlc-bundle", + "name": "Need for Speed Most Wanted Complete DLC Bundle", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q104786239" + ], + "release_date": "2013-05-21", + "platforms": [ + "PlayStation 3", + "Microsoft Windows" + ], + "genres": [ + "action-adventure game", + "racing video game" + ], + "developers": [ + "Criterion Games" + ], + "publishers": [ + "Electronic Arts" + ] +} diff --git a/data/game/ne/need-for-speed-most-wanted-terminal-velocity.json b/data/game/ne/need-for-speed-most-wanted-terminal-velocity.json new file mode 100644 index 000000000000..b41a27f751e2 --- /dev/null +++ b/data/game/ne/need-for-speed-most-wanted-terminal-velocity.json @@ -0,0 +1,24 @@ +{ + "slug": "need-for-speed-most-wanted-terminal-velocity", + "name": "Need for Speed: Most Wanted - Terminal Velocity", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q104786725" + ], + "release_date": "2013-02-26", + "platforms": [ + "Wii U", + "PlayStation 3", + "Microsoft Windows" + ], + "genres": [ + "action-adventure game", + "racing video game" + ], + "developers": [ + "Criterion Games" + ], + "publishers": [ + "Electronic Arts" + ] +} diff --git a/data/game/ne/need-for-speed-most-wanted-ultimate-speed-pack.json b/data/game/ne/need-for-speed-most-wanted-ultimate-speed-pack.json new file mode 100644 index 000000000000..e7e23d3536ab --- /dev/null +++ b/data/game/ne/need-for-speed-most-wanted-ultimate-speed-pack.json @@ -0,0 +1,24 @@ +{ + "slug": "need-for-speed-most-wanted-ultimate-speed-pack", + "name": "Need for Speed: Most Wanted - Ultimate Speed Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q104786278" + ], + "release_date": "2012-12-18", + "platforms": [ + "Wii U", + "PlayStation 3", + "Microsoft Windows" + ], + "genres": [ + "action-adventure game", + "racing video game" + ], + "developers": [ + "Criterion Games" + ], + "publishers": [ + "Electronic Arts" + ] +} diff --git a/data/game/ne/neighbours-from-hell-compilation.json b/data/game/ne/neighbours-from-hell-compilation.json new file mode 100644 index 000000000000..4a7c88892c2c --- /dev/null +++ b/data/game/ne/neighbours-from-hell-compilation.json @@ -0,0 +1,12 @@ +{ + "slug": "neighbours-from-hell-compilation", + "name": "Neighbours from Hell Compilation", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q90004347" + ], + "release_date": "2004-02-20", + "platforms": [ + "Microsoft Windows" + ] +} diff --git a/data/game/ne/nejicomisimulator-tma01-uncensored-unlock-all-settings-pack.json b/data/game/ne/nejicomisimulator-tma01-uncensored-unlock-all-settings-pack.json new file mode 100644 index 000000000000..86a3ee6f7b17 --- /dev/null +++ b/data/game/ne/nejicomisimulator-tma01-uncensored-unlock-all-settings-pack.json @@ -0,0 +1,22 @@ +{ + "slug": "nejicomisimulator-tma01-uncensored-unlock-all-settings-pack", + "name": "NejicomiSimulator TMA01 -Uncensored & Unlock all settings Pack-", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q129587750" + ], + "release_date": "2023-04-27", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "casual game", + "eroge" + ], + "developers": [ + "Yabukaratang" + ], + "publishers": [ + "Yabukaratang" + ] +} diff --git a/data/game/ne/nejicomisimulator-tma02-dignity-destruction-pack.json b/data/game/ne/nejicomisimulator-tma02-dignity-destruction-pack.json new file mode 100644 index 000000000000..280f920c2ab4 --- /dev/null +++ b/data/game/ne/nejicomisimulator-tma02-dignity-destruction-pack.json @@ -0,0 +1,23 @@ +{ + "slug": "nejicomisimulator-tma02-dignity-destruction-pack", + "name": "NejicomiSimulator TMA02 Dignity Destruction Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q129544471" + ], + "release_date": "2024-08-25", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "casual game", + "eroge" + ], + "developers": [ + "Yabukaratang" + ], + "publishers": [ + "LewdLoco", + "Yabukaratang" + ] +} diff --git a/data/game/ne/nejicomisimulator-tma02-uncensored-unlock-all-settings-pack.json b/data/game/ne/nejicomisimulator-tma02-uncensored-unlock-all-settings-pack.json new file mode 100644 index 000000000000..1483ea3035ee --- /dev/null +++ b/data/game/ne/nejicomisimulator-tma02-uncensored-unlock-all-settings-pack.json @@ -0,0 +1,23 @@ +{ + "slug": "nejicomisimulator-tma02-uncensored-unlock-all-settings-pack", + "name": "NejicomiSimulator TMA02 -Uncensored & Unlock all settings Pack-", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q129459492" + ], + "release_date": "2024-05-23", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "casual game", + "eroge" + ], + "developers": [ + "Yabukaratang" + ], + "publishers": [ + "LewdLoco", + "Yabukaratang" + ] +} diff --git a/data/game/ne/nejicomisimulator-vol-1-demo-gapping-amputee-sex-slave-petrify-time-stop.json b/data/game/ne/nejicomisimulator-vol-1-demo-gapping-amputee-sex-slave-petrify-time-stop.json new file mode 100644 index 000000000000..b1d93be10fce --- /dev/null +++ b/data/game/ne/nejicomisimulator-vol-1-demo-gapping-amputee-sex-slave-petrify-time-stop.json @@ -0,0 +1,22 @@ +{ + "slug": "nejicomisimulator-vol-1-demo-gapping-amputee-sex-slave-petrify-time-stop", + "name": "NejicomiSimulator Vol.1 Demo (Gapping, Amputee sex slave, Petrify, Time Stop)", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130233227" + ], + "release_date": "2021-03-25", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "casual game", + "eroge" + ], + "developers": [ + "Yabukaratang" + ], + "publishers": [ + "Yabukaratang" + ] +} diff --git a/data/game/ne/nejicomisimulator-vol-1-uncensored-pack.json b/data/game/ne/nejicomisimulator-vol-1-uncensored-pack.json new file mode 100644 index 000000000000..f8ce1ac94d62 --- /dev/null +++ b/data/game/ne/nejicomisimulator-vol-1-uncensored-pack.json @@ -0,0 +1,22 @@ +{ + "slug": "nejicomisimulator-vol-1-uncensored-pack", + "name": "NejicomiSimulator Vol.1 -Uncensored Pack-", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130212278" + ], + "release_date": "2021-03-19", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "casual game", + "eroge" + ], + "developers": [ + "Yabukaratang" + ], + "publishers": [ + "Yabukaratang" + ] +} diff --git a/data/game/ne/nejicomisimulator-vol-2-demo.json b/data/game/ne/nejicomisimulator-vol-2-demo.json new file mode 100644 index 000000000000..79461007a6f0 --- /dev/null +++ b/data/game/ne/nejicomisimulator-vol-2-demo.json @@ -0,0 +1,22 @@ +{ + "slug": "nejicomisimulator-vol-2-demo", + "name": "NejicomiSimulator Vol.2 Demo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130233215" + ], + "release_date": "2021-07-12", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "casual game", + "eroge" + ], + "developers": [ + "Yabukaratang" + ], + "publishers": [ + "Yabukaratang" + ] +} diff --git a/data/game/ne/nejicomisimulator-vol-2-unlock-all-settings-pack.json b/data/game/ne/nejicomisimulator-vol-2-unlock-all-settings-pack.json new file mode 100644 index 000000000000..7fd43cd7a3b9 --- /dev/null +++ b/data/game/ne/nejicomisimulator-vol-2-unlock-all-settings-pack.json @@ -0,0 +1,22 @@ +{ + "slug": "nejicomisimulator-vol-2-unlock-all-settings-pack", + "name": "NejicomiSimulator Vol.2 -Unlock All Settings Pack-", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130320137" + ], + "release_date": "2021-06-19", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "casual game", + "eroge" + ], + "developers": [ + "Yabukaratang" + ], + "publishers": [ + "Yabukaratang" + ] +} diff --git a/data/game/ne/nejicomisimulator-vol-4-demo.json b/data/game/ne/nejicomisimulator-vol-4-demo.json new file mode 100644 index 000000000000..162536e37d64 --- /dev/null +++ b/data/game/ne/nejicomisimulator-vol-4-demo.json @@ -0,0 +1,22 @@ +{ + "slug": "nejicomisimulator-vol-4-demo", + "name": "NejicomiSimulator Vol.4 Demo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130233207" + ], + "release_date": "2022-03-19", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "casual game", + "eroge" + ], + "developers": [ + "Yabukaratang" + ], + "publishers": [ + "Yabukaratang" + ] +} diff --git a/data/game/ne/nejicomisimulator-vol-4-unlock-all-settings-pack.json b/data/game/ne/nejicomisimulator-vol-4-unlock-all-settings-pack.json new file mode 100644 index 000000000000..d3aae84f6b32 --- /dev/null +++ b/data/game/ne/nejicomisimulator-vol-4-unlock-all-settings-pack.json @@ -0,0 +1,22 @@ +{ + "slug": "nejicomisimulator-vol-4-unlock-all-settings-pack", + "name": "NejicomiSimulator Vol.4 -Unlock All Settings Pack-", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q129411448" + ], + "release_date": "2022-04-14", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "eroge", + "casual game" + ], + "developers": [ + "Yabukaratang" + ], + "publishers": [ + "Yabukaratang" + ] +} diff --git a/data/game/ne/nejicomisimulator-vol-5-uncensored-unlock-all-settings-pack.json b/data/game/ne/nejicomisimulator-vol-5-uncensored-unlock-all-settings-pack.json new file mode 100644 index 000000000000..4b3ac9a0f9b2 --- /dev/null +++ b/data/game/ne/nejicomisimulator-vol-5-uncensored-unlock-all-settings-pack.json @@ -0,0 +1,22 @@ +{ + "slug": "nejicomisimulator-vol-5-uncensored-unlock-all-settings-pack", + "name": "NejicomiSimulator Vol.5 -Uncensored & Unlock all settings Pack-", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q129382942" + ], + "release_date": "2023-05-25", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "eroge", + "casual game" + ], + "developers": [ + "Yabukaratang" + ], + "publishers": [ + "Yabukaratang" + ] +} diff --git a/data/game/ne/neko-atsume-kitty-collector.json b/data/game/ne/neko-atsume-kitty-collector.json new file mode 100644 index 000000000000..a1552819acad --- /dev/null +++ b/data/game/ne/neko-atsume-kitty-collector.json @@ -0,0 +1,19 @@ +{ + "slug": "neko-atsume-kitty-collector", + "name": "Neko Atsume: Kitty Collector+", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107643030" + ], + "release_date": "2021-07-23", + "platforms": [ + "iPadOS", + "iOS" + ], + "developers": [ + "Hit-Point" + ], + "publishers": [ + "Hit-Point" + ] +} diff --git a/data/game/ne/nekograms-q122704230.json b/data/game/ne/nekograms-q122704230.json new file mode 100644 index 000000000000..eb478fa12783 --- /dev/null +++ b/data/game/ne/nekograms-q122704230.json @@ -0,0 +1,16 @@ +{ + "slug": "nekograms-q122704230", + "name": "Nekograms+", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122704230" + ], + "release_date": "2023-08-11", + "platforms": [ + "iPadOS", + "iOS" + ], + "developers": [ + "Hungry Sky" + ] +} diff --git a/data/game/ne/nekopara-ova-set.json b/data/game/ne/nekopara-ova-set.json new file mode 100644 index 000000000000..841f691e1af8 --- /dev/null +++ b/data/game/ne/nekopara-ova-set.json @@ -0,0 +1,9 @@ +{ + "slug": "nekopara-ova-set", + "name": "NEKOPARA OVA Set", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q66696311" + ], + "release_date": "2018-01-08" +} diff --git a/data/game/ne/nekopara-vol-1-18-dlc.json b/data/game/ne/nekopara-vol-1-18-dlc.json new file mode 100644 index 000000000000..5b83362ada5c --- /dev/null +++ b/data/game/ne/nekopara-vol-1-18-dlc.json @@ -0,0 +1,8 @@ +{ + "slug": "nekopara-vol-1-18-dlc", + "name": "Nekopara Vol. 1 18+ DLC", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q66605745" + ] +} diff --git a/data/game/ne/nekopara-vol-2-18-dlc.json b/data/game/ne/nekopara-vol-2-18-dlc.json new file mode 100644 index 000000000000..759086049ab3 --- /dev/null +++ b/data/game/ne/nekopara-vol-2-18-dlc.json @@ -0,0 +1,8 @@ +{ + "slug": "nekopara-vol-2-18-dlc", + "name": "Nekopara Vol. 2 18+ DLC", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q66605758" + ] +} diff --git a/data/game/ne/nekopara-vol-3-18-dlc.json b/data/game/ne/nekopara-vol-3-18-dlc.json new file mode 100644 index 000000000000..92d32ad57878 --- /dev/null +++ b/data/game/ne/nekopara-vol-3-18-dlc.json @@ -0,0 +1,8 @@ +{ + "slug": "nekopara-vol-3-18-dlc", + "name": "NEKOPARA Vol. 3 18+ DLC", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q66605769" + ] +} diff --git a/data/game/ne/neo-geo-cd-special.json b/data/game/ne/neo-geo-cd-special.json new file mode 100644 index 000000000000..5dd8f2b3196b --- /dev/null +++ b/data/game/ne/neo-geo-cd-special.json @@ -0,0 +1,12 @@ +{ + "slug": "neo-geo-cd-special", + "name": "Neo-Geo CD Special", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17635669" + ], + "release_date": "1995-01-01", + "platforms": [ + "Neo Geo CD" + ] +} diff --git a/data/game/ne/neo-geo-online-collection.json b/data/game/ne/neo-geo-online-collection.json new file mode 100644 index 000000000000..2ab9e50f722a --- /dev/null +++ b/data/game/ne/neo-geo-online-collection.json @@ -0,0 +1,11 @@ +{ + "slug": "neo-geo-online-collection", + "name": "Neo Geo Online Collection", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6991875" + ], + "genres": [ + "fighting game" + ] +} diff --git a/data/game/ne/neo-party.json b/data/game/ne/neo-party.json new file mode 100644 index 000000000000..68dc2c3c8292 --- /dev/null +++ b/data/game/ne/neo-party.json @@ -0,0 +1,8 @@ +{ + "slug": "neo-party", + "name": "Neo Party", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131315792" + ] +} diff --git a/data/game/ne/neopets-metaverse.json b/data/game/ne/neopets-metaverse.json new file mode 100644 index 000000000000..f5ad162fd252 --- /dev/null +++ b/data/game/ne/neopets-metaverse.json @@ -0,0 +1,8 @@ +{ + "slug": "neopets-metaverse", + "name": "Neopets Metaverse", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q114846353" + ] +} diff --git a/data/game/ne/nes-remix.json b/data/game/ne/nes-remix.json new file mode 100644 index 000000000000..ff172ca9c053 --- /dev/null +++ b/data/game/ne/nes-remix.json @@ -0,0 +1,21 @@ +{ + "slug": "nes-remix", + "name": "NES Remix", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q15381821" + ], + "release_date": "2013-12-18", + "platforms": [ + "Wii U" + ], + "genres": [ + "action game" + ], + "developers": [ + "Nintendo Entertainment Analysis & Development" + ], + "publishers": [ + "Nintendo" + ] +} diff --git a/data/game/ne/neurocracy.json b/data/game/ne/neurocracy.json new file mode 100644 index 000000000000..a2aeaa85b51d --- /dev/null +++ b/data/game/ne/neurocracy.json @@ -0,0 +1,12 @@ +{ + "slug": "neurocracy", + "name": "Neurocracy", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108803722" + ], + "release_date": "2021-01-01", + "platforms": [ + "web browser" + ] +} diff --git a/data/game/ne/never-alone-arctic-collection.json b/data/game/ne/never-alone-arctic-collection.json new file mode 100644 index 000000000000..333df90abcb3 --- /dev/null +++ b/data/game/ne/never-alone-arctic-collection.json @@ -0,0 +1,8 @@ +{ + "slug": "never-alone-arctic-collection", + "name": "Never Alone Arctic Collection", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q90005743" + ] +} diff --git a/data/game/ne/never-alone-foxtales.json b/data/game/ne/never-alone-foxtales.json new file mode 100644 index 000000000000..8d1363166834 --- /dev/null +++ b/data/game/ne/never-alone-foxtales.json @@ -0,0 +1,8 @@ +{ + "slug": "never-alone-foxtales", + "name": "Never Alone: Foxtales", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q90005714" + ] +} diff --git a/data/game/ne/neverwinter-nights-2-mask-of-the-betrayer.json b/data/game/ne/neverwinter-nights-2-mask-of-the-betrayer.json new file mode 100644 index 000000000000..58e669e83ee5 --- /dev/null +++ b/data/game/ne/neverwinter-nights-2-mask-of-the-betrayer.json @@ -0,0 +1,21 @@ +{ + "slug": "neverwinter-nights-2-mask-of-the-betrayer", + "name": "Neverwinter Nights 2: Mask of the Betrayer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2278874" + ], + "release_date": "2007-09-27", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "role-playing video game" + ], + "developers": [ + "Obsidian Entertainment" + ], + "publishers": [ + "Atari" + ] +} diff --git a/data/game/ne/neverwinter-nights-2-mysteries-of-westgate.json b/data/game/ne/neverwinter-nights-2-mysteries-of-westgate.json new file mode 100644 index 000000000000..8051c4fd462c --- /dev/null +++ b/data/game/ne/neverwinter-nights-2-mysteries-of-westgate.json @@ -0,0 +1,21 @@ +{ + "slug": "neverwinter-nights-2-mysteries-of-westgate", + "name": "Neverwinter Nights 2: Mysteries of Westgate", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4045286" + ], + "release_date": "2009-04-29", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "role-playing video game" + ], + "developers": [ + "Ossian Studios" + ], + "publishers": [ + "Atari" + ] +} diff --git a/data/game/ne/neverwinter-nights-2-storm-of-zehir.json b/data/game/ne/neverwinter-nights-2-storm-of-zehir.json new file mode 100644 index 000000000000..b8466d759a66 --- /dev/null +++ b/data/game/ne/neverwinter-nights-2-storm-of-zehir.json @@ -0,0 +1,21 @@ +{ + "slug": "neverwinter-nights-2-storm-of-zehir", + "name": "Neverwinter Nights 2: Storm of Zehir", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2465393" + ], + "release_date": "2008-11-18", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "role-playing video game" + ], + "developers": [ + "Obsidian Entertainment" + ], + "publishers": [ + "Atari" + ] +} diff --git a/data/game/ne/neverwinter-nights-darkness-over-daggerford.json b/data/game/ne/neverwinter-nights-darkness-over-daggerford.json new file mode 100644 index 000000000000..2c83729c8b0a --- /dev/null +++ b/data/game/ne/neverwinter-nights-darkness-over-daggerford.json @@ -0,0 +1,19 @@ +{ + "slug": "neverwinter-nights-darkness-over-daggerford", + "name": "Neverwinter Nights: Darkness over Daggerford", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4045283" + ], + "release_date": "2006-08-16", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "role-playing video game" + ], + "developers": [ + "Ossian Studios" + ] +} diff --git a/data/game/ne/neverwinter-nights-hordes-of-the-underdark.json b/data/game/ne/neverwinter-nights-hordes-of-the-underdark.json new file mode 100644 index 000000000000..8d9361181f23 --- /dev/null +++ b/data/game/ne/neverwinter-nights-hordes-of-the-underdark.json @@ -0,0 +1,19 @@ +{ + "slug": "neverwinter-nights-hordes-of-the-underdark", + "name": "Neverwinter Nights: Hordes of the Underdark", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q936423" + ], + "release_date": "2003-12-02", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "role-playing video game" + ], + "developers": [ + "BioWare" + ] +} diff --git a/data/game/ne/neverwinter-nights-infinite-dungeons.json b/data/game/ne/neverwinter-nights-infinite-dungeons.json new file mode 100644 index 000000000000..a1a41976aefd --- /dev/null +++ b/data/game/ne/neverwinter-nights-infinite-dungeons.json @@ -0,0 +1,12 @@ +{ + "slug": "neverwinter-nights-infinite-dungeons", + "name": "Neverwinter Nights: Infinite Dungeons", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7004488" + ], + "release_date": "2006-05-01", + "platforms": [ + "Microsoft Windows" + ] +} diff --git a/data/game/ne/neverwinter-nights-kingmaker.json b/data/game/ne/neverwinter-nights-kingmaker.json new file mode 100644 index 000000000000..5d4e93362ac7 --- /dev/null +++ b/data/game/ne/neverwinter-nights-kingmaker.json @@ -0,0 +1,21 @@ +{ + "slug": "neverwinter-nights-kingmaker", + "name": "Neverwinter Nights: Kingmaker", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7004490" + ], + "release_date": "2005-10-02", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "role-playing video game" + ], + "developers": [ + "BioWare" + ], + "publishers": [ + "Atari" + ] +} diff --git a/data/game/ne/neverwinter-nights-pirates-of-the-sword-coast.json b/data/game/ne/neverwinter-nights-pirates-of-the-sword-coast.json new file mode 100644 index 000000000000..bc4d8e58eaa1 --- /dev/null +++ b/data/game/ne/neverwinter-nights-pirates-of-the-sword-coast.json @@ -0,0 +1,21 @@ +{ + "slug": "neverwinter-nights-pirates-of-the-sword-coast", + "name": "Neverwinter Nights: Pirates of the Sword Coast", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7004492" + ], + "release_date": "2005-09-20", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "role-playing video game" + ], + "developers": [ + "BioWare" + ], + "publishers": [ + "Atari" + ] +} diff --git a/data/game/ne/neverwinter-nights-shadows-of-undrentide.json b/data/game/ne/neverwinter-nights-shadows-of-undrentide.json new file mode 100644 index 000000000000..75fba7e056eb --- /dev/null +++ b/data/game/ne/neverwinter-nights-shadows-of-undrentide.json @@ -0,0 +1,19 @@ +{ + "slug": "neverwinter-nights-shadows-of-undrentide", + "name": "Neverwinter Nights: Shadows of Undrentide", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q305212" + ], + "release_date": "2003-06-21", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "role-playing video game" + ], + "developers": [ + "Floodgate Entertainment" + ] +} diff --git a/data/game/ne/neverwinter-nights-witch-s-wake.json b/data/game/ne/neverwinter-nights-witch-s-wake.json new file mode 100644 index 000000000000..37de5a12d1b5 --- /dev/null +++ b/data/game/ne/neverwinter-nights-witch-s-wake.json @@ -0,0 +1,8 @@ +{ + "slug": "neverwinter-nights-witch-s-wake", + "name": "Neverwinter Nights: Witch's Wake", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q12071915" + ] +} diff --git a/data/game/ne/neverwinter-nights-wyvern-crown-of-cormyr.json b/data/game/ne/neverwinter-nights-wyvern-crown-of-cormyr.json new file mode 100644 index 000000000000..e4596213fd89 --- /dev/null +++ b/data/game/ne/neverwinter-nights-wyvern-crown-of-cormyr.json @@ -0,0 +1,16 @@ +{ + "slug": "neverwinter-nights-wyvern-crown-of-cormyr", + "name": "Neverwinter Nights: Wyvern Crown of Cormyr", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16267372" + ], + "release_date": "2006-09-01", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "role-playing video game" + ] +} diff --git a/data/game/ne/new-dawn-q57973878.json b/data/game/ne/new-dawn-q57973878.json new file mode 100644 index 000000000000..5313cad1b0f2 --- /dev/null +++ b/data/game/ne/new-dawn-q57973878.json @@ -0,0 +1,9 @@ +{ + "slug": "new-dawn-q57973878", + "name": "New Dawn", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q57973878" + ], + "release_date": "2015-09-27" +} diff --git a/data/game/ne/new-romulus.json b/data/game/ne/new-romulus.json new file mode 100644 index 000000000000..a854c5980ee6 --- /dev/null +++ b/data/game/ne/new-romulus.json @@ -0,0 +1,9 @@ +{ + "slug": "new-romulus", + "name": "New Romulus", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q57973872" + ], + "release_date": "2012-11-13" +} diff --git a/data/game/ne/new-super-luigi-u.json b/data/game/ne/new-super-luigi-u.json new file mode 100644 index 000000000000..2d9511399ce9 --- /dev/null +++ b/data/game/ne/new-super-luigi-u.json @@ -0,0 +1,21 @@ +{ + "slug": "new-super-luigi-u", + "name": "New Super Luigi U", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16611324" + ], + "release_date": "2013-06-19", + "platforms": [ + "Wii U" + ], + "genres": [ + "platformer" + ], + "developers": [ + "Nintendo Entertainment Analysis & Development" + ], + "publishers": [ + "Nintendo" + ] +} diff --git a/data/game/ne/nexo-q139505423.json b/data/game/ne/nexo-q139505423.json new file mode 100644 index 000000000000..fb54ee3bda7e --- /dev/null +++ b/data/game/ne/nexo-q139505423.json @@ -0,0 +1,11 @@ +{ + "slug": "nexo-q139505423", + "name": "NEXO", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139505423" + ], + "genres": [ + "serious game" + ] +} diff --git a/data/game/ne/nexomon-nexomon-extinction-complete-collection.json b/data/game/ne/nexomon-nexomon-extinction-complete-collection.json new file mode 100644 index 000000000000..1d244536d1c1 --- /dev/null +++ b/data/game/ne/nexomon-nexomon-extinction-complete-collection.json @@ -0,0 +1,18 @@ +{ + "slug": "nexomon-nexomon-extinction-complete-collection", + "name": "Nexomon + Nexomon: Extinction - Complete Collection", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115988214" + ], + "release_date": "2022-08-26", + "platforms": [ + "Xbox Series X and Series S" + ], + "developers": [ + "Vewo Interactive" + ], + "publishers": [ + "PQube" + ] +} diff --git a/data/game/nf/nfl-blitz-2000-gold-edition.json b/data/game/nf/nfl-blitz-2000-gold-edition.json new file mode 100644 index 000000000000..43e51c539412 --- /dev/null +++ b/data/game/nf/nfl-blitz-2000-gold-edition.json @@ -0,0 +1,8 @@ +{ + "slug": "nfl-blitz-2000-gold-edition", + "name": "NFL Blitz 2000 Gold Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q56757335" + ] +} diff --git a/data/game/nf/nfs-most-wanted-complete.json b/data/game/nf/nfs-most-wanted-complete.json new file mode 100644 index 000000000000..da5ed9e93c0c --- /dev/null +++ b/data/game/nf/nfs-most-wanted-complete.json @@ -0,0 +1,22 @@ +{ + "slug": "nfs-most-wanted-complete", + "name": "NFS Most Wanted Complete", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q104785213" + ], + "release_date": "2020-10-31", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "action-adventure game", + "racing video game" + ], + "developers": [ + "Criterion Games" + ], + "publishers": [ + "Electronic Arts" + ] +} diff --git a/data/game/nh/nhl-faceoff-2002.json b/data/game/nh/nhl-faceoff-2002.json new file mode 100644 index 000000000000..5a6bf1ecb6f1 --- /dev/null +++ b/data/game/nh/nhl-faceoff-2002.json @@ -0,0 +1,11 @@ +{ + "slug": "nhl-faceoff-2002", + "name": "NHL Faceoff 2002", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108653630" + ], + "genres": [ + "ice hockey video game" + ] +} diff --git a/data/game/nh/nhra-championship-drag-racing-speed-for-all-deluxe-edition.json b/data/game/nh/nhra-championship-drag-racing-speed-for-all-deluxe-edition.json new file mode 100644 index 000000000000..ea4f77d5b932 --- /dev/null +++ b/data/game/nh/nhra-championship-drag-racing-speed-for-all-deluxe-edition.json @@ -0,0 +1,18 @@ +{ + "slug": "nhra-championship-drag-racing-speed-for-all-deluxe-edition", + "name": "NHRA Championship Drag Racing: Speed for All - Deluxe Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115987837" + ], + "release_date": "2022-08-26", + "platforms": [ + "Xbox Series X and Series S" + ], + "developers": [ + "Team6 Game Studios" + ], + "publishers": [ + "GameMill Publishing" + ] +} diff --git a/data/game/nh/nhra-championship-drag-racing-speed-for-all-ultimate-edition.json b/data/game/nh/nhra-championship-drag-racing-speed-for-all-ultimate-edition.json new file mode 100644 index 000000000000..88484c398e0c --- /dev/null +++ b/data/game/nh/nhra-championship-drag-racing-speed-for-all-ultimate-edition.json @@ -0,0 +1,18 @@ +{ + "slug": "nhra-championship-drag-racing-speed-for-all-ultimate-edition", + "name": "NHRA Championship Drag Racing: Speed for All - Ultimate Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115988071" + ], + "release_date": "2022-08-26", + "platforms": [ + "Xbox Series X and Series S" + ], + "developers": [ + "Team6 Game Studios" + ], + "publishers": [ + "GameMill Publishing" + ] +} diff --git a/data/game/ni/ni-no-kuni-ii-revenant-kingdom-the-prince-s-edition.json b/data/game/ni/ni-no-kuni-ii-revenant-kingdom-the-prince-s-edition.json new file mode 100644 index 000000000000..93cd7373166a --- /dev/null +++ b/data/game/ni/ni-no-kuni-ii-revenant-kingdom-the-prince-s-edition.json @@ -0,0 +1,19 @@ +{ + "slug": "ni-no-kuni-ii-revenant-kingdom-the-prince-s-edition", + "name": "Ni no Kuni II: Revenant Kingdom - The Prince's Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122884738" + ], + "release_date": "2023-03-21", + "platforms": [ + "Xbox Series X and Series S", + "Microsoft Windows" + ], + "developers": [ + "QLOC" + ], + "publishers": [ + "Bandai Namco Entertainment" + ] +} diff --git a/data/game/ni/nick-kingdoms.json b/data/game/ni/nick-kingdoms.json new file mode 100644 index 000000000000..c6528be6e3cd --- /dev/null +++ b/data/game/ni/nick-kingdoms.json @@ -0,0 +1,9 @@ +{ + "slug": "nick-kingdoms", + "name": "Nick Kingdoms", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q97515047" + ], + "release_date": "2014-08-27" +} diff --git a/data/game/ni/nightmare-frames-demo.json b/data/game/ni/nightmare-frames-demo.json new file mode 100644 index 000000000000..161ae441cb14 --- /dev/null +++ b/data/game/ni/nightmare-frames-demo.json @@ -0,0 +1,8 @@ +{ + "slug": "nightmare-frames-demo", + "name": "Nightmare Frames Demo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124419298" + ] +} diff --git a/data/game/ni/nightmare-frames-prologue.json b/data/game/ni/nightmare-frames-prologue.json new file mode 100644 index 000000000000..239c9a70457b --- /dev/null +++ b/data/game/ni/nightmare-frames-prologue.json @@ -0,0 +1,21 @@ +{ + "slug": "nightmare-frames-prologue", + "name": "Nightmare Frames Prologue", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122912925" + ], + "release_date": "2021-10-01", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "adventure video game" + ], + "developers": [ + "Postmodern Adventures" + ], + "publishers": [ + "Postmodern Adventures" + ] +} diff --git a/data/game/ni/nightmare-house-2.json b/data/game/ni/nightmare-house-2.json new file mode 100644 index 000000000000..3bbd0eb091ad --- /dev/null +++ b/data/game/ni/nightmare-house-2.json @@ -0,0 +1,15 @@ +{ + "slug": "nightmare-house-2", + "name": "Nightmare House 2", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3054390" + ], + "release_date": "2010-01-01", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter" + ] +} diff --git a/data/game/ni/nights.json b/data/game/ni/nights.json new file mode 100644 index 000000000000..54a39d2ec3a6 --- /dev/null +++ b/data/game/ni/nights.json @@ -0,0 +1,8 @@ +{ + "slug": "nights", + "name": "Nights", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11323582" + ] +} diff --git a/data/game/ni/ninja-gaiden-trilogy.json b/data/game/ni/ninja-gaiden-trilogy.json new file mode 100644 index 000000000000..6b64f36041a2 --- /dev/null +++ b/data/game/ni/ninja-gaiden-trilogy.json @@ -0,0 +1,21 @@ +{ + "slug": "ninja-gaiden-trilogy", + "name": "Ninja Gaiden Trilogy", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3342014" + ], + "release_date": "1995-08-01", + "platforms": [ + "Super Nintendo Entertainment System" + ], + "genres": [ + "action game" + ], + "developers": [ + "Team Ninja" + ], + "publishers": [ + "Tecmo" + ] +} diff --git a/data/game/ni/ninja-turtles-the-next-mutation.json b/data/game/ni/ninja-turtles-the-next-mutation.json new file mode 100644 index 000000000000..851a199db219 --- /dev/null +++ b/data/game/ni/ninja-turtles-the-next-mutation.json @@ -0,0 +1,8 @@ +{ + "slug": "ninja-turtles-the-next-mutation", + "name": "Ninja Turtles: The Next Mutation", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125297571" + ] +} diff --git a/data/game/ni/ninjabread-man-2-the-blades-of-fury.json b/data/game/ni/ninjabread-man-2-the-blades-of-fury.json new file mode 100644 index 000000000000..15e5db1b1777 --- /dev/null +++ b/data/game/ni/ninjabread-man-2-the-blades-of-fury.json @@ -0,0 +1,11 @@ +{ + "slug": "ninjabread-man-2-the-blades-of-fury", + "name": "Ninjabread Man 2: The Blades of Fury", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110290861" + ], + "developers": [ + "Data Design Interactive" + ] +} diff --git a/data/game/ni/nintendo-64-nintendo-classics.json b/data/game/ni/nintendo-64-nintendo-classics.json new file mode 100644 index 000000000000..5362194e4860 --- /dev/null +++ b/data/game/ni/nintendo-64-nintendo-classics.json @@ -0,0 +1,11 @@ +{ + "slug": "nintendo-64-nintendo-classics", + "name": "Nintendo 64 – Nintendo Classics", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109594929" + ], + "publishers": [ + "Nintendo" + ] +} diff --git a/data/game/ni/nintendo-entertainment-system-nintendo-classics.json b/data/game/ni/nintendo-entertainment-system-nintendo-classics.json new file mode 100644 index 000000000000..4a8f3f498e9c --- /dev/null +++ b/data/game/ni/nintendo-entertainment-system-nintendo-classics.json @@ -0,0 +1,11 @@ +{ + "slug": "nintendo-entertainment-system-nintendo-classics", + "name": "Nintendo Entertainment System – Nintendo Classics", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60986256" + ], + "publishers": [ + "Nintendo" + ] +} diff --git a/data/game/ni/nintendo-gamecube-nintendo-classics.json b/data/game/ni/nintendo-gamecube-nintendo-classics.json new file mode 100644 index 000000000000..c2f07695da84 --- /dev/null +++ b/data/game/ni/nintendo-gamecube-nintendo-classics.json @@ -0,0 +1,11 @@ +{ + "slug": "nintendo-gamecube-nintendo-classics", + "name": "Nintendo GameCube – Nintendo Classics", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137691259" + ], + "publishers": [ + "Nintendo" + ] +} diff --git a/data/game/no/no-going-back-q18155628.json b/data/game/no/no-going-back-q18155628.json new file mode 100644 index 000000000000..9698b35e955e --- /dev/null +++ b/data/game/no/no-going-back-q18155628.json @@ -0,0 +1,12 @@ +{ + "slug": "no-going-back-q18155628", + "name": "No Going Back", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18155628" + ], + "release_date": "2014-08-26", + "platforms": [ + "PlayStation 4" + ] +} diff --git a/data/game/no/no-time-left.json b/data/game/no/no-time-left.json new file mode 100644 index 000000000000..cfb8c0fac307 --- /dev/null +++ b/data/game/no/no-time-left.json @@ -0,0 +1,15 @@ +{ + "slug": "no-time-left", + "name": "No Time Left", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16170394" + ], + "release_date": "2012-11-20", + "platforms": [ + "PlayStation 4" + ], + "developers": [ + "Telltale Games" + ] +} diff --git a/data/game/no/nonogram.json b/data/game/no/nonogram.json new file mode 100644 index 000000000000..3dee66a0f911 --- /dev/null +++ b/data/game/no/nonogram.json @@ -0,0 +1,8 @@ +{ + "slug": "nonogram", + "name": "Nonogram", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q835894" + ] +} diff --git a/data/game/no/norco-act-one.json b/data/game/no/norco-act-one.json new file mode 100644 index 000000000000..d3ee34ff5912 --- /dev/null +++ b/data/game/no/norco-act-one.json @@ -0,0 +1,8 @@ +{ + "slug": "norco-act-one", + "name": "NORCO Act One", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131562318" + ] +} diff --git a/data/game/no/north-american-release-of-chrono-trigger-for-nintendo-ds.json b/data/game/no/north-american-release-of-chrono-trigger-for-nintendo-ds.json new file mode 100644 index 000000000000..7c89a4237458 --- /dev/null +++ b/data/game/no/north-american-release-of-chrono-trigger-for-nintendo-ds.json @@ -0,0 +1,9 @@ +{ + "slug": "north-american-release-of-chrono-trigger-for-nintendo-ds", + "name": "North American Release of Chrono Trigger for Nintendo DS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q15063320" + ], + "release_date": "2008-11-20" +} diff --git a/data/game/no/not-tonight-one-love.json b/data/game/no/not-tonight-one-love.json new file mode 100644 index 000000000000..e73bd36ed0ad --- /dev/null +++ b/data/game/no/not-tonight-one-love.json @@ -0,0 +1,12 @@ +{ + "slug": "not-tonight-one-love", + "name": "Not Tonight: One Love", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115121395" + ], + "release_date": "2019-06-25", + "platforms": [ + "Microsoft Windows" + ] +} diff --git a/data/game/no/notoriety.json b/data/game/no/notoriety.json new file mode 100644 index 000000000000..6b8795c06e30 --- /dev/null +++ b/data/game/no/notoriety.json @@ -0,0 +1,15 @@ +{ + "slug": "notoriety", + "name": "Notoriety", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135118565" + ], + "release_date": "2010-01-29", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "shooter game" + ] +} diff --git a/data/game/no/nova-online.json b/data/game/no/nova-online.json new file mode 100644 index 000000000000..180fe91e7550 --- /dev/null +++ b/data/game/no/nova-online.json @@ -0,0 +1,14 @@ +{ + "slug": "nova-online", + "name": "Nova Online", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110716923" + ], + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "massively multiplayer online role-playing game" + ] +} diff --git a/data/game/nt/ntrap.json b/data/game/nt/ntrap.json new file mode 100644 index 000000000000..28bd95b5e3d3 --- /dev/null +++ b/data/game/nt/ntrap.json @@ -0,0 +1,8 @@ +{ + "slug": "ntrap", + "name": "nTrap", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140361590" + ] +} diff --git a/data/game/nu/nudoku.json b/data/game/nu/nudoku.json new file mode 100644 index 000000000000..75a35738b90f --- /dev/null +++ b/data/game/nu/nudoku.json @@ -0,0 +1,11 @@ +{ + "slug": "nudoku", + "name": "nudoku", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q133105316" + ], + "genres": [ + "puzzle video game" + ] +} diff --git a/data/game/nu/nugget-doom.json b/data/game/nu/nugget-doom.json new file mode 100644 index 000000000000..bd88848a0455 --- /dev/null +++ b/data/game/nu/nugget-doom.json @@ -0,0 +1,8 @@ +{ + "slug": "nugget-doom", + "name": "Nugget Doom", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124429051" + ] +} diff --git a/data/game/nu/nukicolle-vol-31-oni-chichi-1-2.json b/data/game/nu/nukicolle-vol-31-oni-chichi-1-2.json new file mode 100644 index 000000000000..a33a300e57a3 --- /dev/null +++ b/data/game/nu/nukicolle-vol-31-oni-chichi-1-2.json @@ -0,0 +1,24 @@ +{ + "slug": "nukicolle-vol-31-oni-chichi-1-2", + "name": "Nukicolle vol.31 - Oni Chichi 1 + 2", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125027983" + ], + "release_date": "2023-02-24", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "visual novel", + "harem", + "eroge", + "slice of life" + ], + "developers": [ + "Blue Gale" + ], + "publishers": [ + "Blue Gale" + ] +} diff --git a/data/game/nu/nukicolle-vol-51-tsugunai-1-2.json b/data/game/nu/nukicolle-vol-51-tsugunai-1-2.json new file mode 100644 index 000000000000..f9e0dab22918 --- /dev/null +++ b/data/game/nu/nukicolle-vol-51-tsugunai-1-2.json @@ -0,0 +1,22 @@ +{ + "slug": "nukicolle-vol-51-tsugunai-1-2", + "name": "Nukicolle vol.51 - Tsugunai 1+2", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130280777" + ], + "release_date": "2023-12-22", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "visual novel", + "eroge" + ], + "developers": [ + "Blue Gale" + ], + "publishers": [ + "Blue Gale" + ] +} diff --git a/data/game/nu/nurikabe-q240004.json b/data/game/nu/nurikabe-q240004.json new file mode 100644 index 000000000000..74e455f78f30 --- /dev/null +++ b/data/game/nu/nurikabe-q240004.json @@ -0,0 +1,8 @@ +{ + "slug": "nurikabe-q240004", + "name": "Nurikabe", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q240004" + ] +} diff --git a/data/game/nu/nutaku-love-forever.json b/data/game/nu/nutaku-love-forever.json new file mode 100644 index 000000000000..c6ca95ff1bf6 --- /dev/null +++ b/data/game/nu/nutaku-love-forever.json @@ -0,0 +1,15 @@ +{ + "slug": "nutaku-love-forever", + "name": "Nutaku: Love Forever", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126209508" + ], + "release_date": "2023-06-20", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Funky_Forest" + ] +} diff --git a/data/game/ny/nyte-blayde-pack.json b/data/game/ny/nyte-blayde-pack.json new file mode 100644 index 000000000000..e760e14fece4 --- /dev/null +++ b/data/game/ny/nyte-blayde-pack.json @@ -0,0 +1,12 @@ +{ + "slug": "nyte-blayde-pack", + "name": "Nyte Blayde Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60603627" + ], + "release_date": "2012-04-10", + "platforms": [ + "Microsoft Windows" + ] +} diff --git a/data/game/o-/o-n-g-e-k-i.json b/data/game/o-/o-n-g-e-k-i.json new file mode 100644 index 000000000000..e53e1dd8fa02 --- /dev/null +++ b/data/game/o-/o-n-g-e-k-i.json @@ -0,0 +1,17 @@ +{ + "slug": "o-n-g-e-k-i", + "name": "O.N.G.E.K.I.", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q55525471" + ], + "platforms": [ + "arcade video game machine" + ], + "genres": [ + "rhythm game" + ], + "developers": [ + "Sega" + ] +} diff --git a/data/game/ob/obby-creator.json b/data/game/ob/obby-creator.json new file mode 100644 index 000000000000..d7a58de2e141 --- /dev/null +++ b/data/game/ob/obby-creator.json @@ -0,0 +1,15 @@ +{ + "slug": "obby-creator", + "name": "Obby Creator", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134724661" + ], + "release_date": "2019-03-02", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "sandbox game" + ] +} diff --git a/data/game/oc/octodad-dadliest-catch-q118234877.json b/data/game/oc/octodad-dadliest-catch-q118234877.json new file mode 100644 index 000000000000..2ae92198c997 --- /dev/null +++ b/data/game/oc/octodad-dadliest-catch-q118234877.json @@ -0,0 +1,14 @@ +{ + "slug": "octodad-dadliest-catch-q118234877", + "name": "Octodad: Dadliest Catch+", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118234877" + ], + "release_date": "2023-05-04", + "platforms": [ + "iPadOS", + "tvOS", + "iOS" + ] +} diff --git a/data/game/od/odamex.json b/data/game/od/odamex.json new file mode 100644 index 000000000000..c27af751809a --- /dev/null +++ b/data/game/od/odamex.json @@ -0,0 +1,8 @@ +{ + "slug": "odamex", + "name": "Odamex", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q67221582" + ] +} diff --git a/data/game/od/oddmar-q109413882.json b/data/game/od/oddmar-q109413882.json new file mode 100644 index 000000000000..2b2da47847e4 --- /dev/null +++ b/data/game/od/oddmar-q109413882.json @@ -0,0 +1,15 @@ +{ + "slug": "oddmar-q109413882", + "name": "Oddmar+", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109413882" + ], + "release_date": "2021-12-03", + "platforms": [ + "iPadOS", + "tvOS", + "iOS", + "macOS" + ] +} diff --git a/data/game/od/odyssey-q124361635.json b/data/game/od/odyssey-q124361635.json new file mode 100644 index 000000000000..26dfc27f637d --- /dev/null +++ b/data/game/od/odyssey-q124361635.json @@ -0,0 +1,17 @@ +{ + "slug": "odyssey-q124361635", + "name": "Odyssey", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124361635" + ], + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "survival game" + ], + "developers": [ + "Blizzard Entertainment" + ] +} diff --git a/data/game/of/off-zarken.json b/data/game/of/off-zarken.json new file mode 100644 index 000000000000..f0ca3fe592a7 --- /dev/null +++ b/data/game/of/off-zarken.json @@ -0,0 +1,11 @@ +{ + "slug": "off-zarken", + "name": "Off Zarken", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60987411" + ], + "platforms": [ + "Nintendo Entertainment System" + ] +} diff --git a/data/game/of/offworld-trading-company-almanac-dlc.json b/data/game/of/offworld-trading-company-almanac-dlc.json new file mode 100644 index 000000000000..d2712527a8fb --- /dev/null +++ b/data/game/of/offworld-trading-company-almanac-dlc.json @@ -0,0 +1,18 @@ +{ + "slug": "offworld-trading-company-almanac-dlc", + "name": "Offworld Trading Company - Almanac DLC", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113179024" + ], + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Mohawk Games" + ], + "publishers": [ + "Stardock" + ] +} diff --git a/data/game/of/offworld-trading-company-blue-chip-ventures-dlc.json b/data/game/of/offworld-trading-company-blue-chip-ventures-dlc.json new file mode 100644 index 000000000000..c0dfa7eb19ac --- /dev/null +++ b/data/game/of/offworld-trading-company-blue-chip-ventures-dlc.json @@ -0,0 +1,19 @@ +{ + "slug": "offworld-trading-company-blue-chip-ventures-dlc", + "name": "Offworld Trading Company - Blue Chip Ventures DLC", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113179070" + ], + "release_date": "2017-02-09", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Mohawk Games" + ], + "publishers": [ + "Stardock" + ] +} diff --git a/data/game/of/offworld-trading-company-conspicuous-consumption-dlc.json b/data/game/of/offworld-trading-company-conspicuous-consumption-dlc.json new file mode 100644 index 000000000000..83ce85e98a30 --- /dev/null +++ b/data/game/of/offworld-trading-company-conspicuous-consumption-dlc.json @@ -0,0 +1,19 @@ +{ + "slug": "offworld-trading-company-conspicuous-consumption-dlc", + "name": "Offworld Trading Company - Conspicuous Consumption DLC", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113179097" + ], + "release_date": "2017-10-09", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Mohawk Games" + ], + "publishers": [ + "Stardock" + ] +} diff --git a/data/game/of/offworld-trading-company-interdimensional-dlc.json b/data/game/of/offworld-trading-company-interdimensional-dlc.json new file mode 100644 index 000000000000..7a11f54a8591 --- /dev/null +++ b/data/game/of/offworld-trading-company-interdimensional-dlc.json @@ -0,0 +1,19 @@ +{ + "slug": "offworld-trading-company-interdimensional-dlc", + "name": "Offworld Trading Company - Interdimensional DLC", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113179152" + ], + "release_date": "2021-03-18", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Mohawk Games" + ], + "publishers": [ + "Stardock" + ] +} diff --git a/data/game/of/offworld-trading-company-jupiter-s-forge-expansion-pack.json b/data/game/of/offworld-trading-company-jupiter-s-forge-expansion-pack.json new file mode 100644 index 000000000000..1a03862f391e --- /dev/null +++ b/data/game/of/offworld-trading-company-jupiter-s-forge-expansion-pack.json @@ -0,0 +1,19 @@ +{ + "slug": "offworld-trading-company-jupiter-s-forge-expansion-pack", + "name": "Offworld Trading Company: Jupiter's Forge Expansion Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113179081" + ], + "release_date": "2017-05-18", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Mohawk Games" + ], + "publishers": [ + "Stardock" + ] +} diff --git a/data/game/of/offworld-trading-company-limited-supply-dlc.json b/data/game/of/offworld-trading-company-limited-supply-dlc.json new file mode 100644 index 000000000000..2d6c44fce4db --- /dev/null +++ b/data/game/of/offworld-trading-company-limited-supply-dlc.json @@ -0,0 +1,19 @@ +{ + "slug": "offworld-trading-company-limited-supply-dlc", + "name": "Offworld Trading Company - Limited Supply DLC", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113179115" + ], + "release_date": "2018-01-18", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Mohawk Games" + ], + "publishers": [ + "Stardock" + ] +} diff --git a/data/game/of/offworld-trading-company-market-corrections-dlc.json b/data/game/of/offworld-trading-company-market-corrections-dlc.json new file mode 100644 index 000000000000..b601d2b2734a --- /dev/null +++ b/data/game/of/offworld-trading-company-market-corrections-dlc.json @@ -0,0 +1,19 @@ +{ + "slug": "offworld-trading-company-market-corrections-dlc", + "name": "Offworld Trading Company - Market Corrections DLC", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113179126" + ], + "release_date": "2019-02-28", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Mohawk Games" + ], + "publishers": [ + "Stardock" + ] +} diff --git a/data/game/of/offworld-trading-company-real-mars-map-pack-dlc.json b/data/game/of/offworld-trading-company-real-mars-map-pack-dlc.json new file mode 100644 index 000000000000..5fbc2a365aae --- /dev/null +++ b/data/game/of/offworld-trading-company-real-mars-map-pack-dlc.json @@ -0,0 +1,19 @@ +{ + "slug": "offworld-trading-company-real-mars-map-pack-dlc", + "name": "Offworld Trading Company - Real Mars Map Pack DLC", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113179011" + ], + "release_date": "2016-04-28", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Mohawk Games" + ], + "publishers": [ + "Stardock" + ] +} diff --git a/data/game/of/offworld-trading-company-scenario-toolkit-dlc.json b/data/game/of/offworld-trading-company-scenario-toolkit-dlc.json new file mode 100644 index 000000000000..043f375268da --- /dev/null +++ b/data/game/of/offworld-trading-company-scenario-toolkit-dlc.json @@ -0,0 +1,19 @@ +{ + "slug": "offworld-trading-company-scenario-toolkit-dlc", + "name": "Offworld Trading Company - Scenario Toolkit DLC", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113179034" + ], + "release_date": "2016-06-20", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Mohawk Games" + ], + "publishers": [ + "Stardock" + ] +} diff --git a/data/game/of/offworld-trading-company-the-ceres-initiative-dlc.json b/data/game/of/offworld-trading-company-the-ceres-initiative-dlc.json new file mode 100644 index 000000000000..dddd4017215a --- /dev/null +++ b/data/game/of/offworld-trading-company-the-ceres-initiative-dlc.json @@ -0,0 +1,19 @@ +{ + "slug": "offworld-trading-company-the-ceres-initiative-dlc", + "name": "Offworld Trading Company - The Ceres Initiative DLC", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113179050" + ], + "release_date": "2016-08-22", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Mohawk Games" + ], + "publishers": [ + "Stardock" + ] +} diff --git a/data/game/of/offworld-trading-company-the-europa-wager-expansion.json b/data/game/of/offworld-trading-company-the-europa-wager-expansion.json new file mode 100644 index 000000000000..6e0b0d492fff --- /dev/null +++ b/data/game/of/offworld-trading-company-the-europa-wager-expansion.json @@ -0,0 +1,19 @@ +{ + "slug": "offworld-trading-company-the-europa-wager-expansion", + "name": "Offworld Trading Company: The Europa Wager Expansion", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113179139" + ], + "release_date": "2019-11-21", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Mohawk Games" + ], + "publishers": [ + "Stardock" + ] +} diff --git a/data/game/of/offworld-trading-company-the-patron-and-the-patriot-dlc.json b/data/game/of/offworld-trading-company-the-patron-and-the-patriot-dlc.json new file mode 100644 index 000000000000..8ece9b54dab0 --- /dev/null +++ b/data/game/of/offworld-trading-company-the-patron-and-the-patriot-dlc.json @@ -0,0 +1,19 @@ +{ + "slug": "offworld-trading-company-the-patron-and-the-patriot-dlc", + "name": "Offworld Trading Company - The Patron and the Patriot DLC", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113179059" + ], + "release_date": "2016-10-27", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Mohawk Games" + ], + "publishers": [ + "Stardock" + ] +} diff --git a/data/game/ol/old-man-s-journey-q115240177.json b/data/game/ol/old-man-s-journey-q115240177.json new file mode 100644 index 000000000000..577e598502ed --- /dev/null +++ b/data/game/ol/old-man-s-journey-q115240177.json @@ -0,0 +1,13 @@ +{ + "slug": "old-man-s-journey-q115240177", + "name": "Old Man’s Journey+", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115240177" + ], + "release_date": "2022-11-18", + "platforms": [ + "iPadOS", + "iOS" + ] +} diff --git a/data/game/ol/oldorf-s-revenge.json b/data/game/ol/oldorf-s-revenge.json new file mode 100644 index 000000000000..edc5b2dffae2 --- /dev/null +++ b/data/game/ol/oldorf-s-revenge.json @@ -0,0 +1,16 @@ +{ + "slug": "oldorf-s-revenge", + "name": "Oldorf's Revenge", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140472901" + ], + "release_date": "1980-01-01", + "platforms": [ + "Apple II", + "Atari 8-bit family" + ], + "publishers": [ + "Synergistic Software" + ] +} diff --git a/data/game/on/once-upon-a-time-in-japan-earth.json b/data/game/on/once-upon-a-time-in-japan-earth.json new file mode 100644 index 000000000000..f94a0494f5d9 --- /dev/null +++ b/data/game/on/once-upon-a-time-in-japan-earth.json @@ -0,0 +1,11 @@ +{ + "slug": "once-upon-a-time-in-japan-earth", + "name": "Once Upon a Time in Japan: Earth", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110817119" + ], + "genres": [ + "adventure video game" + ] +} diff --git a/data/game/on/ondeh-ondeh.json b/data/game/on/ondeh-ondeh.json new file mode 100644 index 000000000000..09445d4b5b5c --- /dev/null +++ b/data/game/on/ondeh-ondeh.json @@ -0,0 +1,19 @@ +{ + "slug": "ondeh-ondeh", + "name": "Ondeh Ondeh", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124499906" + ], + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 5", + "Microsoft Windows" + ], + "genres": [ + "rhythm game" + ], + "developers": [ + "Metronomik" + ] +} diff --git a/data/game/on/one-stop-fun-shop.json b/data/game/on/one-stop-fun-shop.json new file mode 100644 index 000000000000..d8e0ad07ed48 --- /dev/null +++ b/data/game/on/one-stop-fun-shop.json @@ -0,0 +1,8 @@ +{ + "slug": "one-stop-fun-shop", + "name": "One-Stop Fun Shop", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q47006199" + ] +} diff --git a/data/game/on/one-unit-whole-blood.json b/data/game/on/one-unit-whole-blood.json new file mode 100644 index 000000000000..12facb2b2e12 --- /dev/null +++ b/data/game/on/one-unit-whole-blood.json @@ -0,0 +1,8 @@ +{ + "slug": "one-unit-whole-blood", + "name": "One Unit Whole Blood", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122587367" + ] +} diff --git a/data/game/oo/oof-simulator.json b/data/game/oo/oof-simulator.json new file mode 100644 index 000000000000..a45d32281b63 --- /dev/null +++ b/data/game/oo/oof-simulator.json @@ -0,0 +1,9 @@ +{ + "slug": "oof-simulator", + "name": "Oof Simulator", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136206157" + ], + "release_date": "2018-02-09" +} diff --git a/data/game/op/openjk.json b/data/game/op/openjk.json new file mode 100644 index 000000000000..a540e0f883c0 --- /dev/null +++ b/data/game/op/openjk.json @@ -0,0 +1,8 @@ +{ + "slug": "openjk", + "name": "OpenJK", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122202395" + ] +} diff --git a/data/game/op/openliero.json b/data/game/op/openliero.json new file mode 100644 index 000000000000..a4352086b332 --- /dev/null +++ b/data/game/op/openliero.json @@ -0,0 +1,13 @@ +{ + "slug": "openliero", + "name": "OpenLiero", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120721656" + ], + "release_date": "2007-01-01", + "genres": [ + "side-scrolling video game", + "shooter game" + ] +} diff --git a/data/game/op/openlierox.json b/data/game/op/openlierox.json new file mode 100644 index 000000000000..bedf9e2849e4 --- /dev/null +++ b/data/game/op/openlierox.json @@ -0,0 +1,13 @@ +{ + "slug": "openlierox", + "name": "OpenLieroX", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6051257" + ], + "release_date": "2006-01-01", + "platforms": [ + "DOS", + "Microsoft Windows" + ] +} diff --git a/data/game/op/opensa.json b/data/game/op/opensa.json new file mode 100644 index 000000000000..451b067c9120 --- /dev/null +++ b/data/game/op/opensa.json @@ -0,0 +1,8 @@ +{ + "slug": "opensa", + "name": "OpenSA", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122202424" + ] +} diff --git a/data/game/op/openspades.json b/data/game/op/openspades.json new file mode 100644 index 000000000000..bcf73199d1dd --- /dev/null +++ b/data/game/op/openspades.json @@ -0,0 +1,8 @@ +{ + "slug": "openspades", + "name": "OpenSpades", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122202498" + ] +} diff --git a/data/game/op/openut.json b/data/game/op/openut.json new file mode 100644 index 000000000000..a38a99b9ab47 --- /dev/null +++ b/data/game/op/openut.json @@ -0,0 +1,8 @@ +{ + "slug": "openut", + "name": "OpenUT", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122202522" + ] +} diff --git a/data/game/op/operation-flashpoint-gold-edition.json b/data/game/op/operation-flashpoint-gold-edition.json new file mode 100644 index 000000000000..06ee4d12fdba --- /dev/null +++ b/data/game/op/operation-flashpoint-gold-edition.json @@ -0,0 +1,8 @@ +{ + "slug": "operation-flashpoint-gold-edition", + "name": "Operation Flashpoint: Gold Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123558399" + ] +} diff --git a/data/game/op/operation-flashpoint-red-hammer.json b/data/game/op/operation-flashpoint-red-hammer.json new file mode 100644 index 000000000000..d278f8200f6d --- /dev/null +++ b/data/game/op/operation-flashpoint-red-hammer.json @@ -0,0 +1,11 @@ +{ + "slug": "operation-flashpoint-red-hammer", + "name": "Operation Flashpoint: Red Hammer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q27627847" + ], + "platforms": [ + "Microsoft Windows" + ] +} diff --git a/data/game/op/operation-flashpoint-resistance.json b/data/game/op/operation-flashpoint-resistance.json new file mode 100644 index 000000000000..988d398620d2 --- /dev/null +++ b/data/game/op/operation-flashpoint-resistance.json @@ -0,0 +1,22 @@ +{ + "slug": "operation-flashpoint-resistance", + "name": "Operation Flashpoint: Resistance", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11155063" + ], + "release_date": "2002-07-10", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "tactical shooter" + ], + "developers": [ + "Bohemia Interactive" + ], + "publishers": [ + "Codemasters" + ] +} diff --git a/data/game/op/operators.json b/data/game/op/operators.json new file mode 100644 index 000000000000..0f4017b554df --- /dev/null +++ b/data/game/op/operators.json @@ -0,0 +1,15 @@ +{ + "slug": "operators", + "name": "Operators", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130487359" + ], + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Cishshato" + ] +} diff --git a/data/game/or/order-of-battle-allies-defiant.json b/data/game/or/order-of-battle-allies-defiant.json new file mode 100644 index 000000000000..bf8842e96613 --- /dev/null +++ b/data/game/or/order-of-battle-allies-defiant.json @@ -0,0 +1,8 @@ +{ + "slug": "order-of-battle-allies-defiant", + "name": "Order of Battle: Allies Defiant", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140390612" + ] +} diff --git a/data/game/or/oretachi-geasen-zoku-sono.json b/data/game/or/oretachi-geasen-zoku-sono.json new file mode 100644 index 000000000000..69008819396b --- /dev/null +++ b/data/game/or/oretachi-geasen-zoku-sono.json @@ -0,0 +1,8 @@ +{ + "slug": "oretachi-geasen-zoku-sono", + "name": "Oretachi Geasen Zoku Sono", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11292871" + ] +} diff --git a/data/game/os/osmos-q117357568.json b/data/game/os/osmos-q117357568.json new file mode 100644 index 000000000000..9e4f9eacee9d --- /dev/null +++ b/data/game/os/osmos-q117357568.json @@ -0,0 +1,13 @@ +{ + "slug": "osmos-q117357568", + "name": "Osmos+", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117357568" + ], + "release_date": "2023-03-17", + "platforms": [ + "iPadOS", + "iOS" + ] +} diff --git a/data/game/os/osomatsu-kun.json b/data/game/os/osomatsu-kun.json new file mode 100644 index 000000000000..32f62aefcf59 --- /dev/null +++ b/data/game/os/osomatsu-kun.json @@ -0,0 +1,8 @@ +{ + "slug": "osomatsu-kun", + "name": "Osomatsu-kun", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11261701" + ] +} diff --git a/data/game/ou/our-life-beginnings-always-voiced-name-expansion.json b/data/game/ou/our-life-beginnings-always-voiced-name-expansion.json new file mode 100644 index 000000000000..927e603f9d31 --- /dev/null +++ b/data/game/ou/our-life-beginnings-always-voiced-name-expansion.json @@ -0,0 +1,13 @@ +{ + "slug": "our-life-beginnings-always-voiced-name-expansion", + "name": "Our Life: Beginnings & Always - Voiced Name Expansion", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130723452" + ], + "release_date": "2020-11-30", + "platforms": [ + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/game/ou/out-of-hell-q4046079.json b/data/game/ou/out-of-hell-q4046079.json new file mode 100644 index 000000000000..40207467ca9d --- /dev/null +++ b/data/game/ou/out-of-hell-q4046079.json @@ -0,0 +1,16 @@ +{ + "slug": "out-of-hell-q4046079", + "name": "Out of Hell", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4046079" + ], + "release_date": "2009-11-02", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "survival horror" + ] +} diff --git a/data/game/ou/outer-wilds-archaeologist-edition.json b/data/game/ou/outer-wilds-archaeologist-edition.json new file mode 100644 index 000000000000..0285cbb1bf6c --- /dev/null +++ b/data/game/ou/outer-wilds-archaeologist-edition.json @@ -0,0 +1,16 @@ +{ + "slug": "outer-wilds-archaeologist-edition", + "name": "Outer Wilds: Archaeologist Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110853997" + ], + "release_date": "2021-09-28", + "platforms": [ + "Microsoft Windows", + "Xbox Series X and Series S" + ], + "developers": [ + "Mobius Digital" + ] +} diff --git a/data/game/ou/outer-wilds-echoes-of-the-eye.json b/data/game/ou/outer-wilds-echoes-of-the-eye.json new file mode 100644 index 000000000000..0e6632e6a1e0 --- /dev/null +++ b/data/game/ou/outer-wilds-echoes-of-the-eye.json @@ -0,0 +1,20 @@ +{ + "slug": "outer-wilds-echoes-of-the-eye", + "name": "Outer Wilds: Echoes of the Eye", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108827615" + ], + "release_date": "2021-09-28", + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "action-adventure game" + ], + "developers": [ + "Mobius Digital" + ] +} diff --git a/data/game/ou/outlast-bundle-of-terror.json b/data/game/ou/outlast-bundle-of-terror.json new file mode 100644 index 000000000000..290c44a95329 --- /dev/null +++ b/data/game/ou/outlast-bundle-of-terror.json @@ -0,0 +1,15 @@ +{ + "slug": "outlast-bundle-of-terror", + "name": "Outlast: Bundle of Terror", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q92203639" + ], + "release_date": "2018-02-27", + "developers": [ + "Red Barrels" + ], + "publishers": [ + "Red Barrels" + ] +} diff --git a/data/game/ou/outlaws-handful-of-missions.json b/data/game/ou/outlaws-handful-of-missions.json new file mode 100644 index 000000000000..2d46a6d1a2f7 --- /dev/null +++ b/data/game/ou/outlaws-handful-of-missions.json @@ -0,0 +1,8 @@ +{ + "slug": "outlaws-handful-of-missions", + "name": "Outlaws: Handful of Missions", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123051110" + ] +} diff --git a/data/game/ou/outward-definitive-edition.json b/data/game/ou/outward-definitive-edition.json new file mode 100644 index 000000000000..81797500eb12 --- /dev/null +++ b/data/game/ou/outward-definitive-edition.json @@ -0,0 +1,16 @@ +{ + "slug": "outward-definitive-edition", + "name": "Outward: Definitive Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112246302" + ], + "release_date": "2022-05-17", + "platforms": [ + "Xbox Series X and Series S", + "Microsoft Windows" + ], + "developers": [ + "Nine Dots Studio" + ] +} diff --git a/data/game/ov/overlord-raising-hell.json b/data/game/ov/overlord-raising-hell.json new file mode 100644 index 000000000000..2c0725a36a6e --- /dev/null +++ b/data/game/ov/overlord-raising-hell.json @@ -0,0 +1,23 @@ +{ + "slug": "overlord-raising-hell", + "name": "Overlord: Raising Hell", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q825346" + ], + "release_date": "2008-02-15", + "platforms": [ + "macOS", + "PlayStation 3", + "Microsoft Windows" + ], + "genres": [ + "action-adventure game" + ], + "developers": [ + "Triumph Studios" + ], + "publishers": [ + "Codemasters" + ] +} diff --git a/data/game/ov/overwatch-2-1000-overwatch-coins.json b/data/game/ov/overwatch-2-1000-overwatch-coins.json new file mode 100644 index 000000000000..a0ca323536a4 --- /dev/null +++ b/data/game/ov/overwatch-2-1000-overwatch-coins.json @@ -0,0 +1,24 @@ +{ + "slug": "overwatch-2-1000-overwatch-coins", + "name": "Overwatch® 2 - 1000 Overwatch Coins", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124658830" + ], + "release_date": "2023-01-01", + "platforms": [ + "PlayStation 5", + "PlayStation 4" + ], + "genres": [ + "first-person shooter", + "science fiction video game", + "hero shooter" + ], + "developers": [ + "Blizzard Entertainment" + ], + "publishers": [ + "Blizzard Entertainment" + ] +} diff --git a/data/game/ov/overwatch-2-10000-5000-bonus-overwatch-coins-limited-time.json b/data/game/ov/overwatch-2-10000-5000-bonus-overwatch-coins-limited-time.json new file mode 100644 index 000000000000..7ae5e6764266 --- /dev/null +++ b/data/game/ov/overwatch-2-10000-5000-bonus-overwatch-coins-limited-time.json @@ -0,0 +1,18 @@ +{ + "slug": "overwatch-2-10000-5000-bonus-overwatch-coins-limited-time", + "name": "Overwatch® 2 - 10000 (+5000 Bonus) Overwatch Coins - Limited Time!", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124637531" + ], + "release_date": "2023-10-31", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Blizzard Entertainment" + ], + "publishers": [ + "Blizzard Entertainment" + ] +} diff --git a/data/game/ov/overwatch-2-2000-200-bonus-overwatch-coins.json b/data/game/ov/overwatch-2-2000-200-bonus-overwatch-coins.json new file mode 100644 index 000000000000..0592e2b32041 --- /dev/null +++ b/data/game/ov/overwatch-2-2000-200-bonus-overwatch-coins.json @@ -0,0 +1,24 @@ +{ + "slug": "overwatch-2-2000-200-bonus-overwatch-coins", + "name": "Overwatch® 2 - 2000 (+200 Bonus) Overwatch Coins", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125610560" + ], + "release_date": "2022-03-10", + "platforms": [ + "PlayStation 5", + "PlayStation 4" + ], + "genres": [ + "first-person shooter", + "science fiction video game", + "hero shooter" + ], + "developers": [ + "Blizzard Entertainment" + ], + "publishers": [ + "Blizzard Entertainment" + ] +} diff --git a/data/game/ov/overwatch-2-500-overwatch-coins.json b/data/game/ov/overwatch-2-500-overwatch-coins.json new file mode 100644 index 000000000000..ed82e04132ee --- /dev/null +++ b/data/game/ov/overwatch-2-500-overwatch-coins.json @@ -0,0 +1,24 @@ +{ + "slug": "overwatch-2-500-overwatch-coins", + "name": "Overwatch® 2 - 500 Overwatch Coins", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125417750" + ], + "release_date": "2022-03-10", + "platforms": [ + "PlayStation 5", + "PlayStation 4" + ], + "genres": [ + "first-person shooter", + "science fiction video game", + "hero shooter" + ], + "developers": [ + "Blizzard Entertainment" + ], + "publishers": [ + "Blizzard Entertainment" + ] +} diff --git a/data/game/ov/overwatch-2-5000-2500-bonus-overwatch-coins-limited-time.json b/data/game/ov/overwatch-2-5000-2500-bonus-overwatch-coins-limited-time.json new file mode 100644 index 000000000000..b387afc07d81 --- /dev/null +++ b/data/game/ov/overwatch-2-5000-2500-bonus-overwatch-coins-limited-time.json @@ -0,0 +1,23 @@ +{ + "slug": "overwatch-2-5000-2500-bonus-overwatch-coins-limited-time", + "name": "Overwatch® 2 - 5000 (+2500 Bonus) Overwatch Coins - Limited Time!", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124657964" + ], + "release_date": "2023-10-31", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "science fiction video game", + "hero shooter" + ], + "developers": [ + "Blizzard Entertainment" + ], + "publishers": [ + "Blizzard Entertainment" + ] +} diff --git a/data/game/ov/overwatch-2-complete-hero-collection-upgrade.json b/data/game/ov/overwatch-2-complete-hero-collection-upgrade.json new file mode 100644 index 000000000000..76f7f1ce6a24 --- /dev/null +++ b/data/game/ov/overwatch-2-complete-hero-collection-upgrade.json @@ -0,0 +1,25 @@ +{ + "slug": "overwatch-2-complete-hero-collection-upgrade", + "name": "Overwatch® 2: Complete Hero Collection Upgrade", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124658733" + ], + "release_date": "2023-08-10", + "platforms": [ + "PlayStation 5", + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "science fiction video game", + "hero shooter" + ], + "developers": [ + "Blizzard Entertainment" + ], + "publishers": [ + "Blizzard Entertainment" + ] +} diff --git a/data/game/ov/overwatch-2-complete-hero-collection.json b/data/game/ov/overwatch-2-complete-hero-collection.json new file mode 100644 index 000000000000..88a67dc2a792 --- /dev/null +++ b/data/game/ov/overwatch-2-complete-hero-collection.json @@ -0,0 +1,23 @@ +{ + "slug": "overwatch-2-complete-hero-collection", + "name": "Overwatch® 2 - Complete Hero Collection", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124658751" + ], + "release_date": "2023-08-10", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "science fiction video game", + "hero shooter" + ], + "developers": [ + "Blizzard Entertainment" + ], + "publishers": [ + "Blizzard Entertainment" + ] +} diff --git a/data/game/ov/overwatch-2-hero-collection.json b/data/game/ov/overwatch-2-hero-collection.json new file mode 100644 index 000000000000..d29169ff2723 --- /dev/null +++ b/data/game/ov/overwatch-2-hero-collection.json @@ -0,0 +1,23 @@ +{ + "slug": "overwatch-2-hero-collection", + "name": "Overwatch® 2 - Hero Collection", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124658742" + ], + "release_date": "2023-08-10", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "science fiction video game", + "hero shooter" + ], + "developers": [ + "Blizzard Entertainment" + ], + "publishers": [ + "Blizzard Entertainment" + ] +} diff --git a/data/game/ov/overwatch-2-invasion-bundle.json b/data/game/ov/overwatch-2-invasion-bundle.json new file mode 100644 index 000000000000..14fa1bcb545a --- /dev/null +++ b/data/game/ov/overwatch-2-invasion-bundle.json @@ -0,0 +1,23 @@ +{ + "slug": "overwatch-2-invasion-bundle", + "name": "Overwatch® 2 - Invasion Bundle", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125417667" + ], + "release_date": "2023-08-10", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "science fiction video game", + "hero shooter" + ], + "developers": [ + "Blizzard Entertainment" + ], + "publishers": [ + "Blizzard Entertainment" + ] +} diff --git a/data/game/ov/overwatch-2-invasion-ultimate-bundle-upgrade.json b/data/game/ov/overwatch-2-invasion-ultimate-bundle-upgrade.json new file mode 100644 index 000000000000..4f1af496bd2c --- /dev/null +++ b/data/game/ov/overwatch-2-invasion-ultimate-bundle-upgrade.json @@ -0,0 +1,23 @@ +{ + "slug": "overwatch-2-invasion-ultimate-bundle-upgrade", + "name": "Overwatch® 2: Invasion Ultimate Bundle Upgrade", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125386673" + ], + "release_date": "2023-08-10", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "science fiction video game", + "hero shooter" + ], + "developers": [ + "Blizzard Entertainment" + ], + "publishers": [ + "Blizzard Entertainment" + ] +} diff --git a/data/game/ov/overwatch-2-invasion-ultimate-bundle.json b/data/game/ov/overwatch-2-invasion-ultimate-bundle.json new file mode 100644 index 000000000000..6fb4f7f97be0 --- /dev/null +++ b/data/game/ov/overwatch-2-invasion-ultimate-bundle.json @@ -0,0 +1,23 @@ +{ + "slug": "overwatch-2-invasion-ultimate-bundle", + "name": "Overwatch® 2 - Invasion Ultimate Bundle", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125417647" + ], + "release_date": "2023-08-10", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "science fiction video game", + "hero shooter" + ], + "developers": [ + "Blizzard Entertainment" + ], + "publishers": [ + "Blizzard Entertainment" + ] +} diff --git a/data/game/ov/overwatch-2-pink-mercy-skin.json b/data/game/ov/overwatch-2-pink-mercy-skin.json new file mode 100644 index 000000000000..57b3831f2d10 --- /dev/null +++ b/data/game/ov/overwatch-2-pink-mercy-skin.json @@ -0,0 +1,25 @@ +{ + "slug": "overwatch-2-pink-mercy-skin", + "name": "Overwatch® 2: Pink Mercy Skin", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126954055" + ], + "release_date": "2024-06-25", + "platforms": [ + "PlayStation 5", + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "science fiction video game", + "hero shooter" + ], + "developers": [ + "Blizzard Entertainment" + ], + "publishers": [ + "Blizzard Entertainment" + ] +} diff --git a/data/game/ov/overwatch-2-playstation-plus-mega-bundle.json b/data/game/ov/overwatch-2-playstation-plus-mega-bundle.json new file mode 100644 index 000000000000..ef2604463e83 --- /dev/null +++ b/data/game/ov/overwatch-2-playstation-plus-mega-bundle.json @@ -0,0 +1,24 @@ +{ + "slug": "overwatch-2-playstation-plus-mega-bundle", + "name": "Overwatch® 2 - PlayStation® Plus Mega Bundle", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125417725" + ], + "release_date": "2024-02-04", + "platforms": [ + "PlayStation 5", + "PlayStation 4" + ], + "genres": [ + "first-person shooter", + "science fiction video game", + "hero shooter" + ], + "developers": [ + "Blizzard Entertainment" + ], + "publishers": [ + "Blizzard Entertainment" + ] +} diff --git a/data/game/ov/overwatch-2-reinhardt-mythic-weapon-skin-bundle.json b/data/game/ov/overwatch-2-reinhardt-mythic-weapon-skin-bundle.json new file mode 100644 index 000000000000..951b99b32088 --- /dev/null +++ b/data/game/ov/overwatch-2-reinhardt-mythic-weapon-skin-bundle.json @@ -0,0 +1,23 @@ +{ + "slug": "overwatch-2-reinhardt-mythic-weapon-skin-bundle", + "name": "Overwatch® 2: Reinhardt Mythic Weapon Skin Bundle", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q128822557" + ], + "release_date": "2024-07-23", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "science fiction video game", + "hero shooter" + ], + "developers": [ + "Blizzard Entertainment" + ], + "publishers": [ + "Blizzard Entertainment" + ] +} diff --git a/data/game/ov/overwatch-2-rose-gold-mercy-bundle.json b/data/game/ov/overwatch-2-rose-gold-mercy-bundle.json new file mode 100644 index 000000000000..f7e461ebc6d0 --- /dev/null +++ b/data/game/ov/overwatch-2-rose-gold-mercy-bundle.json @@ -0,0 +1,25 @@ +{ + "slug": "overwatch-2-rose-gold-mercy-bundle", + "name": "Overwatch® 2: Rose Gold Mercy Bundle", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126954064" + ], + "release_date": "2024-06-25", + "platforms": [ + "PlayStation 5", + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "science fiction video game", + "hero shooter" + ], + "developers": [ + "Blizzard Entertainment" + ], + "publishers": [ + "Blizzard Entertainment" + ] +} diff --git a/data/game/ov/overwatch-2-starter-pack-season-11.json b/data/game/ov/overwatch-2-starter-pack-season-11.json new file mode 100644 index 000000000000..cd43ba855471 --- /dev/null +++ b/data/game/ov/overwatch-2-starter-pack-season-11.json @@ -0,0 +1,25 @@ +{ + "slug": "overwatch-2-starter-pack-season-11", + "name": "Overwatch® 2 Starter Pack: Season 11", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126953983" + ], + "release_date": "2024-06-20", + "platforms": [ + "PlayStation 5", + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "science fiction video game", + "hero shooter" + ], + "developers": [ + "Blizzard Entertainment" + ], + "publishers": [ + "Blizzard Entertainment" + ] +} diff --git a/data/game/ov/overwatch-2-starter-pack-season-8.json b/data/game/ov/overwatch-2-starter-pack-season-8.json new file mode 100644 index 000000000000..638883db982c --- /dev/null +++ b/data/game/ov/overwatch-2-starter-pack-season-8.json @@ -0,0 +1,23 @@ +{ + "slug": "overwatch-2-starter-pack-season-8", + "name": "Overwatch® 2 Starter Pack: Season 8", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124657826" + ], + "release_date": "2023-12-05", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "science fiction video game", + "hero shooter" + ], + "developers": [ + "Blizzard Entertainment" + ], + "publishers": [ + "Blizzard Entertainment" + ] +} diff --git a/data/game/ov/overwatch-2-starter-pack-season-seven.json b/data/game/ov/overwatch-2-starter-pack-season-seven.json new file mode 100644 index 000000000000..e93290a1e287 --- /dev/null +++ b/data/game/ov/overwatch-2-starter-pack-season-seven.json @@ -0,0 +1,23 @@ +{ + "slug": "overwatch-2-starter-pack-season-seven", + "name": "Overwatch® 2 - Starter Pack: Season Seven", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124657985" + ], + "release_date": "2023-10-10", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "science fiction video game", + "hero shooter" + ], + "developers": [ + "Blizzard Entertainment" + ], + "publishers": [ + "Blizzard Entertainment" + ] +} diff --git a/data/game/ov/overwatch-2-ultimate-battle-pass-bundle-season-10.json b/data/game/ov/overwatch-2-ultimate-battle-pass-bundle-season-10.json new file mode 100644 index 000000000000..b41db051b1c8 --- /dev/null +++ b/data/game/ov/overwatch-2-ultimate-battle-pass-bundle-season-10.json @@ -0,0 +1,23 @@ +{ + "slug": "overwatch-2-ultimate-battle-pass-bundle-season-10", + "name": "Overwatch® 2 - Ultimate Battle Pass Bundle: Season 10", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125572608" + ], + "release_date": "2024-04-16", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "science fiction video game", + "hero shooter" + ], + "developers": [ + "Blizzard Entertainment" + ], + "publishers": [ + "Blizzard Entertainment" + ] +} diff --git a/data/game/ov/overwatch-2-ultimate-battle-pass-bundle-season-11.json b/data/game/ov/overwatch-2-ultimate-battle-pass-bundle-season-11.json new file mode 100644 index 000000000000..b37c68f992d5 --- /dev/null +++ b/data/game/ov/overwatch-2-ultimate-battle-pass-bundle-season-11.json @@ -0,0 +1,25 @@ +{ + "slug": "overwatch-2-ultimate-battle-pass-bundle-season-11", + "name": "Overwatch® 2 - Ultimate Battle Pass Bundle: Season 11", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126953951" + ], + "release_date": "2024-06-20", + "platforms": [ + "PlayStation 5", + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "science fiction video game", + "hero shooter" + ], + "developers": [ + "Blizzard Entertainment" + ], + "publishers": [ + "Blizzard Entertainment" + ] +} diff --git a/data/game/ov/overwatch-2-ultimate-battle-pass-bundle-season-8.json b/data/game/ov/overwatch-2-ultimate-battle-pass-bundle-season-8.json new file mode 100644 index 000000000000..5b90f542cf09 --- /dev/null +++ b/data/game/ov/overwatch-2-ultimate-battle-pass-bundle-season-8.json @@ -0,0 +1,23 @@ +{ + "slug": "overwatch-2-ultimate-battle-pass-bundle-season-8", + "name": "Overwatch® 2 - Ultimate Battle Pass Bundle: Season 8", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124637561" + ], + "release_date": "2023-12-05", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "science fiction video game", + "hero shooter" + ], + "developers": [ + "Blizzard Entertainment" + ], + "publishers": [ + "Blizzard Entertainment" + ] +} diff --git a/data/game/ov/overwatch-2-ultimate-battle-pass-bundle-season-9.json b/data/game/ov/overwatch-2-ultimate-battle-pass-bundle-season-9.json new file mode 100644 index 000000000000..a63cc3099dd0 --- /dev/null +++ b/data/game/ov/overwatch-2-ultimate-battle-pass-bundle-season-9.json @@ -0,0 +1,23 @@ +{ + "slug": "overwatch-2-ultimate-battle-pass-bundle-season-9", + "name": "Overwatch® 2 - Ultimate Battle Pass Bundle: Season 9", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124637534" + ], + "release_date": "2024-02-13", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "science fiction video game", + "hero shooter" + ], + "developers": [ + "Blizzard Entertainment" + ], + "publishers": [ + "Blizzard Entertainment" + ] +} diff --git a/data/game/ov/overwatch-2-ultimate-battle-pass-bundle-season-seven.json b/data/game/ov/overwatch-2-ultimate-battle-pass-bundle-season-seven.json new file mode 100644 index 000000000000..41f79b9d0b36 --- /dev/null +++ b/data/game/ov/overwatch-2-ultimate-battle-pass-bundle-season-seven.json @@ -0,0 +1,23 @@ +{ + "slug": "overwatch-2-ultimate-battle-pass-bundle-season-seven", + "name": "Overwatch® 2 - Ultimate Battle Pass Bundle: Season Seven", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124637565" + ], + "release_date": "2023-10-10", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "science fiction video game", + "hero shooter" + ], + "developers": [ + "Blizzard Entertainment" + ], + "publishers": [ + "Blizzard Entertainment" + ] +} diff --git a/data/game/ov/overwatch-2-watchpoint-pack.json b/data/game/ov/overwatch-2-watchpoint-pack.json new file mode 100644 index 000000000000..02ad556616e3 --- /dev/null +++ b/data/game/ov/overwatch-2-watchpoint-pack.json @@ -0,0 +1,26 @@ +{ + "slug": "overwatch-2-watchpoint-pack", + "name": "Overwatch 2: Watchpoint Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125386712" + ], + "release_date": "2022-10-04", + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 5", + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "science fiction video game", + "hero shooter" + ], + "developers": [ + "Blizzard Entertainment" + ], + "publishers": [ + "Blizzard Entertainment" + ] +} diff --git a/data/game/ov/overwatch-collector-s-edition.json b/data/game/ov/overwatch-collector-s-edition.json new file mode 100644 index 000000000000..cf9275955225 --- /dev/null +++ b/data/game/ov/overwatch-collector-s-edition.json @@ -0,0 +1,24 @@ +{ + "slug": "overwatch-collector-s-edition", + "name": "Overwatch: Collector's Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109370611" + ], + "release_date": "2016-05-27", + "platforms": [ + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "science fiction video game", + "hero shooter" + ], + "developers": [ + "Blizzard Entertainment" + ], + "publishers": [ + "Blizzard Entertainment" + ] +} diff --git a/data/game/ov/overwatch-game-of-the-year-edition.json b/data/game/ov/overwatch-game-of-the-year-edition.json new file mode 100644 index 000000000000..e907ae7f18a7 --- /dev/null +++ b/data/game/ov/overwatch-game-of-the-year-edition.json @@ -0,0 +1,24 @@ +{ + "slug": "overwatch-game-of-the-year-edition", + "name": "Overwatch: Game of the Year Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109370520" + ], + "release_date": "2017-05-23", + "platforms": [ + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "science fiction video game", + "hero shooter" + ], + "developers": [ + "Blizzard Entertainment" + ], + "publishers": [ + "Blizzard Entertainment" + ] +} diff --git a/data/game/ov/overwatch-league-100-league-tokens.json b/data/game/ov/overwatch-league-100-league-tokens.json new file mode 100644 index 000000000000..95fd514a4bfa --- /dev/null +++ b/data/game/ov/overwatch-league-100-league-tokens.json @@ -0,0 +1,24 @@ +{ + "slug": "overwatch-league-100-league-tokens", + "name": "Overwatch League™ - 100 League Tokens", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125417765" + ], + "release_date": "2018-09-01", + "platforms": [ + "PlayStation 5", + "PlayStation 4" + ], + "genres": [ + "first-person shooter", + "science fiction video game", + "hero shooter" + ], + "developers": [ + "Blizzard Entertainment" + ], + "publishers": [ + "Blizzard Entertainment" + ] +} diff --git a/data/game/ov/overwatch-legendary-edition.json b/data/game/ov/overwatch-legendary-edition.json new file mode 100644 index 000000000000..662fb39144a9 --- /dev/null +++ b/data/game/ov/overwatch-legendary-edition.json @@ -0,0 +1,24 @@ +{ + "slug": "overwatch-legendary-edition", + "name": "Overwatch: Legendary Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109370559" + ], + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "science fiction video game", + "hero shooter" + ], + "developers": [ + "Blizzard Entertainment" + ], + "publishers": [ + "Blizzard Entertainment" + ] +} diff --git a/data/game/ov/overwatch-origins-edition.json b/data/game/ov/overwatch-origins-edition.json new file mode 100644 index 000000000000..95f164d8c7e7 --- /dev/null +++ b/data/game/ov/overwatch-origins-edition.json @@ -0,0 +1,24 @@ +{ + "slug": "overwatch-origins-edition", + "name": "Overwatch: Origins Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109370542" + ], + "release_date": "2016-05-23", + "platforms": [ + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "science fiction video game", + "hero shooter" + ], + "developers": [ + "Blizzard Entertainment" + ], + "publishers": [ + "Blizzard Entertainment" + ] +} diff --git a/data/game/p-/p-51d-high-stakes-campaign.json b/data/game/p-/p-51d-high-stakes-campaign.json new file mode 100644 index 000000000000..7c73e7126362 --- /dev/null +++ b/data/game/p-/p-51d-high-stakes-campaign.json @@ -0,0 +1,18 @@ +{ + "slug": "p-51d-high-stakes-campaign", + "name": "P-51D: High Stakes Campaign", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097429" + ], + "release_date": "2017-02-10", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Eagle Dynamics" + ], + "publishers": [ + "Eagle Dynamics" + ] +} diff --git a/data/game/p-/p-big-sea-story-5-special.json b/data/game/p-/p-big-sea-story-5-special.json new file mode 100644 index 000000000000..397397e32674 --- /dev/null +++ b/data/game/p-/p-big-sea-story-5-special.json @@ -0,0 +1,8 @@ +{ + "slug": "p-big-sea-story-5-special", + "name": "P Big Sea Story 5 Special", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140191550" + ] +} diff --git a/data/game/p-/p-big-sea-story-5.json b/data/game/p-/p-big-sea-story-5.json new file mode 100644 index 000000000000..62a728ea1afc --- /dev/null +++ b/data/game/p-/p-big-sea-story-5.json @@ -0,0 +1,8 @@ +{ + "slug": "p-big-sea-story-5", + "name": "P Big Sea Story 5", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131122111" + ] +} diff --git a/data/game/p-/p-great-sea-story-4-special.json b/data/game/p-/p-great-sea-story-4-special.json new file mode 100644 index 000000000000..12f8fead1cba --- /dev/null +++ b/data/game/p-/p-great-sea-story-4-special.json @@ -0,0 +1,8 @@ +{ + "slug": "p-great-sea-story-4-special", + "name": "P Great Sea Story 4 Special", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131122048" + ] +} diff --git a/data/game/p-/p-h-a-s-e-of-resurgence.json b/data/game/p-/p-h-a-s-e-of-resurgence.json new file mode 100644 index 000000000000..3425824e9528 --- /dev/null +++ b/data/game/p-/p-h-a-s-e-of-resurgence.json @@ -0,0 +1,11 @@ +{ + "slug": "p-h-a-s-e-of-resurgence", + "name": "P.H.A.S.E. of Resurgence", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110690029" + ], + "developers": [ + "Sibilant Interactive" + ] +} diff --git a/data/game/p-/p-sea-story-kiwami-japan.json b/data/game/p-/p-sea-story-kiwami-japan.json new file mode 100644 index 000000000000..46e5190e99b2 --- /dev/null +++ b/data/game/p-/p-sea-story-kiwami-japan.json @@ -0,0 +1,8 @@ +{ + "slug": "p-sea-story-kiwami-japan", + "name": "P Sea Story Kiwami Japan", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134650546" + ] +} diff --git a/data/game/p-/p-super-sea-story-in-okinawa-5.json b/data/game/p-/p-super-sea-story-in-okinawa-5.json new file mode 100644 index 000000000000..d238bea560d4 --- /dev/null +++ b/data/game/p-/p-super-sea-story-in-okinawa-5.json @@ -0,0 +1,8 @@ +{ + "slug": "p-super-sea-story-in-okinawa-5", + "name": "P Super Sea Story in Okinawa 5", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134393959" + ] +} diff --git a/data/game/p-/p-super-sea-story-in-okinawa-6.json b/data/game/p-/p-super-sea-story-in-okinawa-6.json new file mode 100644 index 000000000000..f822067ba4ee --- /dev/null +++ b/data/game/p-/p-super-sea-story-in-okinawa-6.json @@ -0,0 +1,8 @@ +{ + "slug": "p-super-sea-story-in-okinawa-6", + "name": "P Super Sea Story in Okinawa 6", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140191582" + ] +} diff --git a/data/game/pa/pa-drum-sea-story-in-japan.json b/data/game/pa/pa-drum-sea-story-in-japan.json new file mode 100644 index 000000000000..5904dbdd224e --- /dev/null +++ b/data/game/pa/pa-drum-sea-story-in-japan.json @@ -0,0 +1,8 @@ +{ + "slug": "pa-drum-sea-story-in-japan", + "name": "PA Drum Sea Story in Japan", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131143193" + ] +} diff --git a/data/game/pa/pa-drum-sea-story-in-okinawa.json b/data/game/pa/pa-drum-sea-story-in-okinawa.json new file mode 100644 index 000000000000..06e77d66ced5 --- /dev/null +++ b/data/game/pa/pa-drum-sea-story-in-okinawa.json @@ -0,0 +1,8 @@ +{ + "slug": "pa-drum-sea-story-in-okinawa", + "name": "PA Drum Sea Story in Okinawa", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131143172" + ] +} diff --git a/data/game/pa/pa-new-sea-story.json b/data/game/pa/pa-new-sea-story.json new file mode 100644 index 000000000000..f78a5d611403 --- /dev/null +++ b/data/game/pa/pa-new-sea-story.json @@ -0,0 +1,8 @@ +{ + "slug": "pa-new-sea-story", + "name": "PA New Sea Story", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q132160353" + ] +} diff --git a/data/game/pa/pac-man-anniversary-arcade-machines.json b/data/game/pa/pac-man-anniversary-arcade-machines.json new file mode 100644 index 000000000000..c7f196aff564 --- /dev/null +++ b/data/game/pa/pac-man-anniversary-arcade-machines.json @@ -0,0 +1,8 @@ +{ + "slug": "pac-man-anniversary-arcade-machines", + "name": "Pac-Man anniversary arcade machines", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7121850" + ] +} diff --git a/data/game/pa/pac-man-carnival.json b/data/game/pa/pac-man-carnival.json new file mode 100644 index 000000000000..c9674d8525c8 --- /dev/null +++ b/data/game/pa/pac-man-carnival.json @@ -0,0 +1,11 @@ +{ + "slug": "pac-man-carnival", + "name": "Pac-Man Carnival", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q48889559" + ], + "platforms": [ + "Wii" + ] +} diff --git a/data/game/pa/pac-man-collection.json b/data/game/pa/pac-man-collection.json new file mode 100644 index 000000000000..5f8feb7999fb --- /dev/null +++ b/data/game/pa/pac-man-collection.json @@ -0,0 +1,21 @@ +{ + "slug": "pac-man-collection", + "name": "Pac-Man Collection", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3282468" + ], + "release_date": "2001-07-12", + "platforms": [ + "Game Boy Advance" + ], + "genres": [ + "maze video game" + ], + "developers": [ + "Mass Media Inc." + ], + "publishers": [ + "Namco" + ] +} diff --git a/data/game/pa/pac-man-games.json b/data/game/pa/pac-man-games.json new file mode 100644 index 000000000000..73f64471fc1b --- /dev/null +++ b/data/game/pa/pac-man-games.json @@ -0,0 +1,18 @@ +{ + "slug": "pac-man-games", + "name": "Pac-Man Games", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7121844" + ], + "release_date": "2012-03-29", + "platforms": [ + "iOS" + ], + "developers": [ + "Bandai Namco Entertainment" + ], + "publishers": [ + "Bandai Namco Entertainment" + ] +} diff --git a/data/game/pa/pac-man-ghost-zone.json b/data/game/pa/pac-man-ghost-zone.json new file mode 100644 index 000000000000..3624def56a15 --- /dev/null +++ b/data/game/pa/pac-man-ghost-zone.json @@ -0,0 +1,8 @@ +{ + "slug": "pac-man-ghost-zone", + "name": "Pac-Man Ghost Zone", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109589534" + ] +} diff --git a/data/game/pa/pac-man-museum-q17042687.json b/data/game/pa/pac-man-museum-q17042687.json new file mode 100644 index 000000000000..93af2634fa0e --- /dev/null +++ b/data/game/pa/pac-man-museum-q17042687.json @@ -0,0 +1,15 @@ +{ + "slug": "pac-man-museum-q17042687", + "name": "Pac-Man Museum", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17042687" + ], + "release_date": "2014-02-25", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Bandai Namco Entertainment" + ] +} diff --git a/data/game/pa/pac-man-museum.json b/data/game/pa/pac-man-museum.json new file mode 100644 index 000000000000..a723e306abab --- /dev/null +++ b/data/game/pa/pac-man-museum.json @@ -0,0 +1,26 @@ +{ + "slug": "pac-man-museum", + "name": "Pac-Man Museum+", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109923478" + ], + "release_date": "2022-01-01", + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "puzzle video game", + "platformer", + "arcade" + ], + "developers": [ + "Gotch Technology Corp.", + "Now Production" + ], + "publishers": [ + "Bandai Namco Entertainment" + ] +} diff --git a/data/game/pa/pac-man-vs-pac-man-world-2.json b/data/game/pa/pac-man-vs-pac-man-world-2.json new file mode 100644 index 000000000000..0f5a7bea80b5 --- /dev/null +++ b/data/game/pa/pac-man-vs-pac-man-world-2.json @@ -0,0 +1,11 @@ +{ + "slug": "pac-man-vs-pac-man-world-2", + "name": "Pac-Man Vs. / Pac-Man World 2", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121037474" + ], + "platforms": [ + "Nintendo GameCube" + ] +} diff --git a/data/game/pa/pack-2-jogos.json b/data/game/pa/pack-2-jogos.json new file mode 100644 index 000000000000..36745f407670 --- /dev/null +++ b/data/game/pa/pack-2-jogos.json @@ -0,0 +1,12 @@ +{ + "slug": "pack-2-jogos", + "name": "Pack 2 Jogos", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125934794" + ], + "release_date": "1990-01-01", + "platforms": [ + "Microsoft Windows" + ] +} diff --git a/data/game/pa/painkiller-battle-out-of-hell.json b/data/game/pa/painkiller-battle-out-of-hell.json new file mode 100644 index 000000000000..1575c0c938ab --- /dev/null +++ b/data/game/pa/painkiller-battle-out-of-hell.json @@ -0,0 +1,21 @@ +{ + "slug": "painkiller-battle-out-of-hell", + "name": "Painkiller: Battle out of Hell", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q13424646" + ], + "release_date": "2004-01-01", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter" + ], + "developers": [ + "People Can Fly" + ], + "publishers": [ + "DreamCatcher Interactive" + ] +} diff --git a/data/game/pa/painkiller-demo.json b/data/game/pa/painkiller-demo.json new file mode 100644 index 000000000000..a580b7d42452 --- /dev/null +++ b/data/game/pa/painkiller-demo.json @@ -0,0 +1,21 @@ +{ + "slug": "painkiller-demo", + "name": "Painkiller Demo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122790084" + ], + "release_date": "2007-01-24", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter" + ], + "developers": [ + "People Can Fly" + ], + "publishers": [ + "THQ Nordic" + ] +} diff --git a/data/game/pa/painkiller-overdose-demo.json b/data/game/pa/painkiller-overdose-demo.json new file mode 100644 index 000000000000..bb5256ba9784 --- /dev/null +++ b/data/game/pa/painkiller-overdose-demo.json @@ -0,0 +1,21 @@ +{ + "slug": "painkiller-overdose-demo", + "name": "Painkiller Overdose Demo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122790104" + ], + "release_date": "2007-10-17", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter" + ], + "developers": [ + "Mindware Studios" + ], + "publishers": [ + "THQ Nordic" + ] +} diff --git a/data/game/pa/painkiller-overdose.json b/data/game/pa/painkiller-overdose.json new file mode 100644 index 000000000000..e8a0e770e67b --- /dev/null +++ b/data/game/pa/painkiller-overdose.json @@ -0,0 +1,21 @@ +{ + "slug": "painkiller-overdose", + "name": "Painkiller: Overdose", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q685178" + ], + "release_date": "2007-10-30", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter" + ], + "developers": [ + "Mindware Studios" + ], + "publishers": [ + "DreamCatcher Interactive" + ] +} diff --git a/data/game/pa/panquake.json b/data/game/pa/panquake.json new file mode 100644 index 000000000000..c569b241d1e2 --- /dev/null +++ b/data/game/pa/panquake.json @@ -0,0 +1,8 @@ +{ + "slug": "panquake", + "name": "PanQuake", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121380443" + ] +} diff --git a/data/game/pa/panzer-corps-2-axis-operations-1939.json b/data/game/pa/panzer-corps-2-axis-operations-1939.json new file mode 100644 index 000000000000..1de63aee210b --- /dev/null +++ b/data/game/pa/panzer-corps-2-axis-operations-1939.json @@ -0,0 +1,18 @@ +{ + "slug": "panzer-corps-2-axis-operations-1939", + "name": "Panzer Corps 2: Axis Operations - 1939", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121170284" + ], + "release_date": "2020-08-27", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Flashback Games" + ], + "publishers": [ + "Slitherine Software UK Limited" + ] +} diff --git a/data/game/pa/panzer-corps-2-axis-operations-1940.json b/data/game/pa/panzer-corps-2-axis-operations-1940.json new file mode 100644 index 000000000000..72dcd9107659 --- /dev/null +++ b/data/game/pa/panzer-corps-2-axis-operations-1940.json @@ -0,0 +1,18 @@ +{ + "slug": "panzer-corps-2-axis-operations-1940", + "name": "Panzer Corps 2: Axis Operations - 1940", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121170375" + ], + "release_date": "2020-12-10", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Flashback Games" + ], + "publishers": [ + "Slitherine Software UK Limited" + ] +} diff --git a/data/game/pa/panzer-corps-2-axis-operations-1941.json b/data/game/pa/panzer-corps-2-axis-operations-1941.json new file mode 100644 index 000000000000..e576e7cf9440 --- /dev/null +++ b/data/game/pa/panzer-corps-2-axis-operations-1941.json @@ -0,0 +1,18 @@ +{ + "slug": "panzer-corps-2-axis-operations-1941", + "name": "Panzer Corps 2: Axis Operations - 1941", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121170391" + ], + "release_date": "2021-03-18", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Flashback Games" + ], + "publishers": [ + "Slitherine Software UK Limited" + ] +} diff --git a/data/game/pa/panzer-corps-2-axis-operations-1942.json b/data/game/pa/panzer-corps-2-axis-operations-1942.json new file mode 100644 index 000000000000..7a96b0c6d904 --- /dev/null +++ b/data/game/pa/panzer-corps-2-axis-operations-1942.json @@ -0,0 +1,18 @@ +{ + "slug": "panzer-corps-2-axis-operations-1942", + "name": "Panzer Corps 2: Axis Operations - 1942", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121170434" + ], + "release_date": "2021-07-08", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Flashback Games" + ], + "publishers": [ + "Slitherine Software UK Limited" + ] +} diff --git a/data/game/pa/panzer-corps-2-axis-operations-1943.json b/data/game/pa/panzer-corps-2-axis-operations-1943.json new file mode 100644 index 000000000000..364ea5f1a6bc --- /dev/null +++ b/data/game/pa/panzer-corps-2-axis-operations-1943.json @@ -0,0 +1,18 @@ +{ + "slug": "panzer-corps-2-axis-operations-1943", + "name": "Panzer Corps 2: Axis Operations - 1943", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121170486" + ], + "release_date": "2022-05-26", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Flashback Games" + ], + "publishers": [ + "Slitherine Software UK Limited" + ] +} diff --git a/data/game/pa/panzer-corps-2-axis-operations-1944.json b/data/game/pa/panzer-corps-2-axis-operations-1944.json new file mode 100644 index 000000000000..447745dc6cb0 --- /dev/null +++ b/data/game/pa/panzer-corps-2-axis-operations-1944.json @@ -0,0 +1,18 @@ +{ + "slug": "panzer-corps-2-axis-operations-1944", + "name": "Panzer Corps 2: Axis Operations - 1944", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121170516" + ], + "release_date": "2022-11-08", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Flashback Games" + ], + "publishers": [ + "Slitherine Software UK Limited" + ] +} diff --git a/data/game/pa/panzer-corps-2-axis-operations-1945.json b/data/game/pa/panzer-corps-2-axis-operations-1945.json new file mode 100644 index 000000000000..6bcd3c6af6e8 --- /dev/null +++ b/data/game/pa/panzer-corps-2-axis-operations-1945.json @@ -0,0 +1,18 @@ +{ + "slug": "panzer-corps-2-axis-operations-1945", + "name": "Panzer Corps 2: Axis Operations - 1945", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121170550" + ], + "release_date": "2023-06-22", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Flashback Games" + ], + "publishers": [ + "Slitherine Software UK Limited" + ] +} diff --git a/data/game/pa/panzer-corps-2-axis-operations-spanish-civil-war.json b/data/game/pa/panzer-corps-2-axis-operations-spanish-civil-war.json new file mode 100644 index 000000000000..f7145ada946f --- /dev/null +++ b/data/game/pa/panzer-corps-2-axis-operations-spanish-civil-war.json @@ -0,0 +1,18 @@ +{ + "slug": "panzer-corps-2-axis-operations-spanish-civil-war", + "name": "Panzer Corps 2: Axis Operations - Spanish Civil War", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121170317" + ], + "release_date": "2020-07-16", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Flashback Games" + ], + "publishers": [ + "Slitherine Software UK Limited" + ] +} diff --git a/data/game/pa/papa-s-raceway.json b/data/game/pa/papa-s-raceway.json new file mode 100644 index 000000000000..3ab7b32910ea --- /dev/null +++ b/data/game/pa/papa-s-raceway.json @@ -0,0 +1,8 @@ +{ + "slug": "papa-s-raceway", + "name": "Papa's Raceway", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q128014895" + ] +} diff --git a/data/game/pa/paprium.json b/data/game/pa/paprium.json new file mode 100644 index 000000000000..ae81f260cd95 --- /dev/null +++ b/data/game/pa/paprium.json @@ -0,0 +1,15 @@ +{ + "slug": "paprium", + "name": "Paprium", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107676088" + ], + "release_date": "2020-12-16", + "platforms": [ + "Sega Genesis" + ], + "genres": [ + "post-apocalyptic video game" + ] +} diff --git a/data/game/pa/parabellum.json b/data/game/pa/parabellum.json new file mode 100644 index 000000000000..958ece231bd8 --- /dev/null +++ b/data/game/pa/parabellum.json @@ -0,0 +1,14 @@ +{ + "slug": "parabellum", + "name": "Parabellum", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11239355" + ], + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter" + ] +} diff --git a/data/game/pa/paradox-meta.json b/data/game/pa/paradox-meta.json new file mode 100644 index 000000000000..fdeca4b533b4 --- /dev/null +++ b/data/game/pa/paradox-meta.json @@ -0,0 +1,8 @@ +{ + "slug": "paradox-meta", + "name": "Paradox Meta", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115208631" + ] +} diff --git a/data/game/pa/party-incident-demo.json b/data/game/pa/party-incident-demo.json new file mode 100644 index 000000000000..8be64ec76e5c --- /dev/null +++ b/data/game/pa/party-incident-demo.json @@ -0,0 +1,8 @@ +{ + "slug": "party-incident-demo", + "name": "Party incident Demo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131619383" + ] +} diff --git a/data/game/pa/party-panic-4-pack.json b/data/game/pa/party-panic-4-pack.json new file mode 100644 index 000000000000..ba2dcfb77d82 --- /dev/null +++ b/data/game/pa/party-panic-4-pack.json @@ -0,0 +1,8 @@ +{ + "slug": "party-panic-4-pack", + "name": "Party Panic 4-Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q78671535" + ] +} diff --git a/data/game/pa/pathologic-the-marble-nest.json b/data/game/pa/pathologic-the-marble-nest.json new file mode 100644 index 000000000000..f69d01d413de --- /dev/null +++ b/data/game/pa/pathologic-the-marble-nest.json @@ -0,0 +1,29 @@ +{ + "slug": "pathologic-the-marble-nest", + "name": "Pathologic: The Marble Nest", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63863170" + ], + "release_date": "2016-12-01", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "adventure video game", + "real-time strategy", + "third-person shooter", + "role-playing video game", + "interactive fiction", + "turn-based strategy video game", + "arcade", + "survival game", + "space trading and combat game" + ], + "developers": [ + "Ice-Pick Lodge" + ], + "publishers": [ + "Ice-Pick Lodge" + ] +} diff --git a/data/game/pa/patrician-iv-gold-edition.json b/data/game/pa/patrician-iv-gold-edition.json new file mode 100644 index 000000000000..4294a077edab --- /dev/null +++ b/data/game/pa/patrician-iv-gold-edition.json @@ -0,0 +1,8 @@ +{ + "slug": "patrician-iv-gold-edition", + "name": "Patrician IV: Gold Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121889093" + ] +} diff --git a/data/game/pa/patrician-iv-rise-of-a-dynasty.json b/data/game/pa/patrician-iv-rise-of-a-dynasty.json new file mode 100644 index 000000000000..0e54abb18b1f --- /dev/null +++ b/data/game/pa/patrician-iv-rise-of-a-dynasty.json @@ -0,0 +1,8 @@ +{ + "slug": "patrician-iv-rise-of-a-dynasty", + "name": "Patrician IV: Rise of a Dynasty", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121889105" + ] +} diff --git a/data/game/pa/patterns.json b/data/game/pa/patterns.json new file mode 100644 index 000000000000..e681fab21ef6 --- /dev/null +++ b/data/game/pa/patterns.json @@ -0,0 +1,18 @@ +{ + "slug": "patterns", + "name": "Patterns", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7148404" + ], + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Linden Lab" + ], + "publishers": [ + "Linden Lab" + ] +} diff --git a/data/game/pa/payazzo.json b/data/game/pa/payazzo.json new file mode 100644 index 000000000000..77f6658286ad --- /dev/null +++ b/data/game/pa/payazzo.json @@ -0,0 +1,8 @@ +{ + "slug": "payazzo", + "name": "Payazzo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q804125" + ] +} diff --git a/data/game/pa/payday-2-armored-transport.json b/data/game/pa/payday-2-armored-transport.json new file mode 100644 index 000000000000..826ae88ffe24 --- /dev/null +++ b/data/game/pa/payday-2-armored-transport.json @@ -0,0 +1,8 @@ +{ + "slug": "payday-2-armored-transport", + "name": "PayDay 2: Armored Transport", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125156608" + ] +} diff --git a/data/game/pa/payday-2-gage-shotgun-pack.json b/data/game/pa/payday-2-gage-shotgun-pack.json new file mode 100644 index 000000000000..2b38dad616f6 --- /dev/null +++ b/data/game/pa/payday-2-gage-shotgun-pack.json @@ -0,0 +1,8 @@ +{ + "slug": "payday-2-gage-shotgun-pack", + "name": "PayDay 2: Gage Shotgun Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125156619" + ] +} diff --git a/data/game/pc/pc-arcade.json b/data/game/pc/pc-arcade.json new file mode 100644 index 000000000000..72386fdeefc5 --- /dev/null +++ b/data/game/pc/pc-arcade.json @@ -0,0 +1,9 @@ +{ + "slug": "pc-arcade", + "name": "PC Arcade", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60792906" + ], + "release_date": "1983-01-01" +} diff --git a/data/game/pc/pc-engine-best-collection.json b/data/game/pc/pc-engine-best-collection.json new file mode 100644 index 000000000000..d3bc39c6b4dd --- /dev/null +++ b/data/game/pc/pc-engine-best-collection.json @@ -0,0 +1,8 @@ +{ + "slug": "pc-engine-best-collection", + "name": "PC Engine Best Collection", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11238494" + ] +} diff --git a/data/game/pc/pc-futbol-2000-expansion-pack.json b/data/game/pc/pc-futbol-2000-expansion-pack.json new file mode 100644 index 000000000000..4578fa2ff470 --- /dev/null +++ b/data/game/pc/pc-futbol-2000-expansion-pack.json @@ -0,0 +1,14 @@ +{ + "slug": "pc-futbol-2000-expansion-pack", + "name": "PC Futbol 2000 Expansion pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q9053802" + ], + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "association football video game" + ] +} diff --git a/data/game/pe/peaks-of-yore-demo.json b/data/game/pe/peaks-of-yore-demo.json new file mode 100644 index 000000000000..4e827ce4eccd --- /dev/null +++ b/data/game/pe/peaks-of-yore-demo.json @@ -0,0 +1,19 @@ +{ + "slug": "peaks-of-yore-demo", + "name": "Peaks of Yore DEMO", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134429001" + ], + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "platformer", + "first-person adventure" + ], + "developers": [ + "Anders Grube Jensen" + ] +} diff --git a/data/game/pe/peaks-of-yore-the-great-alps.json b/data/game/pe/peaks-of-yore-the-great-alps.json new file mode 100644 index 000000000000..d6e79dbde95e --- /dev/null +++ b/data/game/pe/peaks-of-yore-the-great-alps.json @@ -0,0 +1,15 @@ +{ + "slug": "peaks-of-yore-the-great-alps", + "name": "Peaks of Yore - The Great Alps", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q132590764" + ], + "release_date": "2024-11-14", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Anders Grube Jensen" + ] +} diff --git a/data/game/pe/pedantle.json b/data/game/pe/pedantle.json new file mode 100644 index 000000000000..fd2cecbd18af --- /dev/null +++ b/data/game/pe/pedantle.json @@ -0,0 +1,8 @@ +{ + "slug": "pedantle", + "name": "pedantle", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125377053" + ] +} diff --git a/data/game/pe/penthouse-pack.json b/data/game/pe/penthouse-pack.json new file mode 100644 index 000000000000..79dc3905477e --- /dev/null +++ b/data/game/pe/penthouse-pack.json @@ -0,0 +1,13 @@ +{ + "slug": "penthouse-pack", + "name": "Penthouse Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60607927" + ], + "release_date": "2012-05-22", + "platforms": [ + "PlayStation 3", + "Microsoft Windows" + ] +} diff --git a/data/game/pe/penumbra-necrologue.json b/data/game/pe/penumbra-necrologue.json new file mode 100644 index 000000000000..1d5910f44649 --- /dev/null +++ b/data/game/pe/penumbra-necrologue.json @@ -0,0 +1,18 @@ +{ + "slug": "penumbra-necrologue", + "name": "Penumbra: Necrologue", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18785914" + ], + "release_date": "2014-10-31", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "survival horror", + "science fiction video game" + ] +} diff --git a/data/game/pe/per-aspera-blue-mars.json b/data/game/pe/per-aspera-blue-mars.json new file mode 100644 index 000000000000..3729a399e1ed --- /dev/null +++ b/data/game/pe/per-aspera-blue-mars.json @@ -0,0 +1,15 @@ +{ + "slug": "per-aspera-blue-mars", + "name": "Per Aspera: Blue Mars", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111605175" + ], + "release_date": "2022-05-02", + "platforms": [ + "Microsoft Windows" + ], + "publishers": [ + "Raw Fury" + ] +} diff --git a/data/game/pe/perfect-dark-q106547243.json b/data/game/pe/perfect-dark-q106547243.json new file mode 100644 index 000000000000..a6eb19e80d16 --- /dev/null +++ b/data/game/pe/perfect-dark-q106547243.json @@ -0,0 +1,20 @@ +{ + "slug": "perfect-dark-q106547243", + "name": "Perfect Dark", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106547243" + ], + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter" + ], + "developers": [ + "The Initiative" + ], + "publishers": [ + "Xbox Game Studios" + ] +} diff --git a/data/game/pe/persona-3-fes.json b/data/game/pe/persona-3-fes.json new file mode 100644 index 000000000000..d59d22666fcf --- /dev/null +++ b/data/game/pe/persona-3-fes.json @@ -0,0 +1,15 @@ +{ + "slug": "persona-3-fes", + "name": "Persona 3 FES", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121368251" + ], + "release_date": "2007-04-19", + "platforms": [ + "PlayStation 3" + ], + "genres": [ + "role-playing video game" + ] +} diff --git a/data/game/pe/pet-simulator-99.json b/data/game/pe/pet-simulator-99.json new file mode 100644 index 000000000000..3842132edfc5 --- /dev/null +++ b/data/game/pe/pet-simulator-99.json @@ -0,0 +1,20 @@ +{ + "slug": "pet-simulator-99", + "name": "Pet Simulator 99", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130232736" + ], + "release_date": "2023-12-01", + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 5", + "PlayStation 4", + "iOS", + "macOS", + "Microsoft Windows" + ], + "genres": [ + "virtual pet video game" + ] +} diff --git a/data/game/pe/petz.json b/data/game/pe/petz.json new file mode 100644 index 000000000000..90d1acd6a3ad --- /dev/null +++ b/data/game/pe/petz.json @@ -0,0 +1,14 @@ +{ + "slug": "petz", + "name": "Petz", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131151624" + ], + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "PF Magic" + ] +} diff --git a/data/game/ph/phantasy-star-collection.json b/data/game/ph/phantasy-star-collection.json new file mode 100644 index 000000000000..ba962d706574 --- /dev/null +++ b/data/game/ph/phantasy-star-collection.json @@ -0,0 +1,21 @@ +{ + "slug": "phantasy-star-collection", + "name": "Phantasy Star Collection", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2078759" + ], + "release_date": "1998-02-04", + "platforms": [ + "Game Boy Advance" + ], + "genres": [ + "role-playing video game" + ], + "developers": [ + "Sega" + ], + "publishers": [ + "Sega" + ] +} diff --git a/data/game/ph/phantom-forces.json b/data/game/ph/phantom-forces.json new file mode 100644 index 000000000000..de65aa9b65f8 --- /dev/null +++ b/data/game/ph/phantom-forces.json @@ -0,0 +1,8 @@ +{ + "slug": "phantom-forces", + "name": "Phantom Forces", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127272615" + ] +} diff --git a/data/game/ph/phoenix-point-kaos-engines.json b/data/game/ph/phoenix-point-kaos-engines.json new file mode 100644 index 000000000000..ebdf48e4869d --- /dev/null +++ b/data/game/ph/phoenix-point-kaos-engines.json @@ -0,0 +1,13 @@ +{ + "slug": "phoenix-point-kaos-engines", + "name": "Phoenix Point: Kaos Engines", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120976442" + ], + "release_date": "2022-03-01", + "platforms": [ + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/game/ph/phoenixgo.json b/data/game/ph/phoenixgo.json new file mode 100644 index 000000000000..5bcb8e6a2565 --- /dev/null +++ b/data/game/ph/phoenixgo.json @@ -0,0 +1,11 @@ +{ + "slug": "phoenixgo", + "name": "PhoenixGo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q55697098" + ], + "developers": [ + "Tencent" + ] +} diff --git a/data/game/ph/photo-play.json b/data/game/ph/photo-play.json new file mode 100644 index 000000000000..016d565ea7e5 --- /dev/null +++ b/data/game/ph/photo-play.json @@ -0,0 +1,8 @@ +{ + "slug": "photo-play", + "name": "Photo Play", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2088836" + ] +} diff --git a/data/game/ph/photoshop-contest.json b/data/game/ph/photoshop-contest.json new file mode 100644 index 000000000000..69fcf71baad1 --- /dev/null +++ b/data/game/ph/photoshop-contest.json @@ -0,0 +1,8 @@ +{ + "slug": "photoshop-contest", + "name": "Photoshop contest", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2176276" + ] +} diff --git a/data/game/pi/piggy.json b/data/game/pi/piggy.json new file mode 100644 index 000000000000..a6e4d4cb2dcd --- /dev/null +++ b/data/game/pi/piggy.json @@ -0,0 +1,11 @@ +{ + "slug": "piggy", + "name": "Piggy", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131756779" + ], + "genres": [ + "horror video game" + ] +} diff --git a/data/game/pi/pika-goro-v.json b/data/game/pi/pika-goro-v.json new file mode 100644 index 000000000000..ebc49f18df93 --- /dev/null +++ b/data/game/pi/pika-goro-v.json @@ -0,0 +1,8 @@ +{ + "slug": "pika-goro-v", + "name": "Pika Goro V", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11331384" + ] +} diff --git a/data/game/pi/pika-land.json b/data/game/pi/pika-land.json new file mode 100644 index 000000000000..cc30a619e042 --- /dev/null +++ b/data/game/pi/pika-land.json @@ -0,0 +1,9 @@ +{ + "slug": "pika-land", + "name": "Pika Land", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112582100" + ], + "release_date": "2013-03-24" +} diff --git a/data/game/pi/pike-operacija-giedi-prime.json b/data/game/pi/pike-operacija-giedi-prime.json new file mode 100644 index 000000000000..637bd3224207 --- /dev/null +++ b/data/game/pi/pike-operacija-giedi-prime.json @@ -0,0 +1,14 @@ +{ + "slug": "pike-operacija-giedi-prime", + "name": "Pike: Operacija Giedi Prime", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124811834" + ], + "genres": [ + "action game" + ], + "developers": [ + "Snowball Studios" + ] +} diff --git a/data/game/pi/pillars-of-eternity-the-white-march.json b/data/game/pi/pillars-of-eternity-the-white-march.json new file mode 100644 index 000000000000..1da6fd378a51 --- /dev/null +++ b/data/game/pi/pillars-of-eternity-the-white-march.json @@ -0,0 +1,20 @@ +{ + "slug": "pillars-of-eternity-the-white-march", + "name": "Pillars of Eternity: The White March", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q21998250" + ], + "platforms": [ + "macOS" + ], + "genres": [ + "role-playing video game" + ], + "developers": [ + "Obsidian Entertainment" + ], + "publishers": [ + "Paradox Interactive" + ] +} diff --git a/data/game/pi/pinball-fx3-aliens-vs-pinball.json b/data/game/pi/pinball-fx3-aliens-vs-pinball.json new file mode 100644 index 000000000000..601ff283e2c3 --- /dev/null +++ b/data/game/pi/pinball-fx3-aliens-vs-pinball.json @@ -0,0 +1,14 @@ +{ + "slug": "pinball-fx3-aliens-vs-pinball", + "name": "Pinball FX3 - Aliens vs Pinball", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127500721" + ], + "release_date": "2017-09-26", + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 4", + "Microsoft Windows" + ] +} diff --git a/data/game/pi/pinball-fx3-portal-pinball.json b/data/game/pi/pinball-fx3-portal-pinball.json new file mode 100644 index 000000000000..e3eb0d68423f --- /dev/null +++ b/data/game/pi/pinball-fx3-portal-pinball.json @@ -0,0 +1,12 @@ +{ + "slug": "pinball-fx3-portal-pinball", + "name": "Pinball FX3 - Portal Pinball", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126477080" + ], + "release_date": "2017-09-26", + "platforms": [ + "Microsoft Windows" + ] +} diff --git a/data/game/pi/pinball-jam-q110572248.json b/data/game/pi/pinball-jam-q110572248.json new file mode 100644 index 000000000000..36a41b1cb2c8 --- /dev/null +++ b/data/game/pi/pinball-jam-q110572248.json @@ -0,0 +1,15 @@ +{ + "slug": "pinball-jam-q110572248", + "name": "Pinball Jam", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110572248" + ], + "release_date": "2022-01-14", + "genres": [ + "pinball video game" + ], + "publishers": [ + "Super PowerUp Games" + ] +} diff --git a/data/game/pi/pinball-m-chucky-s-killer-pinball.json b/data/game/pi/pinball-m-chucky-s-killer-pinball.json new file mode 100644 index 000000000000..d54c27c102e6 --- /dev/null +++ b/data/game/pi/pinball-m-chucky-s-killer-pinball.json @@ -0,0 +1,15 @@ +{ + "slug": "pinball-m-chucky-s-killer-pinball", + "name": "Pinball M - Chucky's Killer Pinball", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123694233" + ], + "release_date": "2023-11-30", + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 4", + "PlayStation 5", + "Microsoft Windows" + ] +} diff --git a/data/game/pi/pinball-m-dead-by-daylight-pinball.json b/data/game/pi/pinball-m-dead-by-daylight-pinball.json new file mode 100644 index 000000000000..815e2f36b541 --- /dev/null +++ b/data/game/pi/pinball-m-dead-by-daylight-pinball.json @@ -0,0 +1,15 @@ +{ + "slug": "pinball-m-dead-by-daylight-pinball", + "name": "Pinball M - Dead by Daylight Pinball", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123694231" + ], + "release_date": "2023-11-30", + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 4", + "PlayStation 5", + "Microsoft Windows" + ] +} diff --git a/data/game/pi/pinball-m-death-save-bundle.json b/data/game/pi/pinball-m-death-save-bundle.json new file mode 100644 index 000000000000..13cd814c77ab --- /dev/null +++ b/data/game/pi/pinball-m-death-save-bundle.json @@ -0,0 +1,11 @@ +{ + "slug": "pinball-m-death-save-bundle", + "name": "Pinball M - Death Save Bundle", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123694217" + ], + "platforms": [ + "Microsoft Windows" + ] +} diff --git a/data/game/pi/pinball-m-duke-nukem-s-big-shot-pinball.json b/data/game/pi/pinball-m-duke-nukem-s-big-shot-pinball.json new file mode 100644 index 000000000000..2ed59829d004 --- /dev/null +++ b/data/game/pi/pinball-m-duke-nukem-s-big-shot-pinball.json @@ -0,0 +1,15 @@ +{ + "slug": "pinball-m-duke-nukem-s-big-shot-pinball", + "name": "Pinball M - Duke Nukem's Big Shot Pinball", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123694227" + ], + "release_date": "2023-11-30", + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 5", + "PlayStation 4", + "Microsoft Windows" + ] +} diff --git a/data/game/pi/pinball-m-the-thing-pinball.json b/data/game/pi/pinball-m-the-thing-pinball.json new file mode 100644 index 000000000000..3a6c13b2097f --- /dev/null +++ b/data/game/pi/pinball-m-the-thing-pinball.json @@ -0,0 +1,15 @@ +{ + "slug": "pinball-m-the-thing-pinball", + "name": "Pinball M - The Thing Pinball", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123694232" + ], + "release_date": "2023-11-30", + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 4", + "PlayStation 5", + "Microsoft Windows" + ] +} diff --git a/data/game/pi/pinballistik.json b/data/game/pi/pinballistik.json new file mode 100644 index 000000000000..6c8c9c5f4461 --- /dev/null +++ b/data/game/pi/pinballistik.json @@ -0,0 +1,8 @@ +{ + "slug": "pinballistik", + "name": "Pinballistik", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140471192" + ] +} diff --git a/data/game/pi/pirates-of-the-caribbean-armada-of-the-damned.json b/data/game/pi/pirates-of-the-caribbean-armada-of-the-damned.json new file mode 100644 index 000000000000..e2a235b067bf --- /dev/null +++ b/data/game/pi/pirates-of-the-caribbean-armada-of-the-damned.json @@ -0,0 +1,22 @@ +{ + "slug": "pirates-of-the-caribbean-armada-of-the-damned", + "name": "Pirates of the Caribbean: Armada of the Damned", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3508801" + ], + "platforms": [ + "PlayStation 3", + "Microsoft Windows" + ], + "genres": [ + "action-adventure game", + "role-playing video game" + ], + "developers": [ + "Propaganda Games" + ], + "publishers": [ + "Disney Interactive Studios" + ] +} diff --git a/data/game/pi/pixeljunk-eden-encore.json b/data/game/pi/pixeljunk-eden-encore.json new file mode 100644 index 000000000000..ebdf008a0f62 --- /dev/null +++ b/data/game/pi/pixeljunk-eden-encore.json @@ -0,0 +1,8 @@ +{ + "slug": "pixeljunk-eden-encore", + "name": "PixelJunk Eden Encore", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107424243" + ] +} diff --git a/data/game/pi/pixelmon.json b/data/game/pi/pixelmon.json new file mode 100644 index 000000000000..9331b570c710 --- /dev/null +++ b/data/game/pi/pixelmon.json @@ -0,0 +1,8 @@ +{ + "slug": "pixelmon", + "name": "Pixelmon", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q114396755" + ] +} diff --git a/data/game/pi/pizza-pachinko.json b/data/game/pi/pizza-pachinko.json new file mode 100644 index 000000000000..94e2524a62d3 --- /dev/null +++ b/data/game/pi/pizza-pachinko.json @@ -0,0 +1,8 @@ +{ + "slug": "pizza-pachinko", + "name": "Pizza Pachinko", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q128014896" + ] +} diff --git a/data/game/pi/pizzatron-3000.json b/data/game/pi/pizzatron-3000.json new file mode 100644 index 000000000000..ab7c1c33b617 --- /dev/null +++ b/data/game/pi/pizzatron-3000.json @@ -0,0 +1,16 @@ +{ + "slug": "pizzatron-3000", + "name": "Pizzatron 3000", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125721888" + ], + "release_date": "2007-02-26", + "platforms": [ + "iOS", + "web browser" + ], + "genres": [ + "cooking simulation video game" + ] +} diff --git a/data/game/pl/planet-coaster-adventure-pack.json b/data/game/pl/planet-coaster-adventure-pack.json new file mode 100644 index 000000000000..bc01a680f0e1 --- /dev/null +++ b/data/game/pl/planet-coaster-adventure-pack.json @@ -0,0 +1,13 @@ +{ + "slug": "planet-coaster-adventure-pack", + "name": "Planet Coaster - Adventure Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113813269" + ], + "release_date": "2017-12-18", + "platforms": [ + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/game/pl/planet-coaster-back-to-the-future-time-machine-construction-kit.json b/data/game/pl/planet-coaster-back-to-the-future-time-machine-construction-kit.json new file mode 100644 index 000000000000..2334ca3ed38d --- /dev/null +++ b/data/game/pl/planet-coaster-back-to-the-future-time-machine-construction-kit.json @@ -0,0 +1,12 @@ +{ + "slug": "planet-coaster-back-to-the-future-time-machine-construction-kit", + "name": "Planet Coaster - Back to the Future Time Machine Construction Kit", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113813402" + ], + "release_date": "2017-07-21", + "platforms": [ + "Microsoft Windows" + ] +} diff --git a/data/game/pl/planet-coaster-classic-rides-collection.json b/data/game/pl/planet-coaster-classic-rides-collection.json new file mode 100644 index 000000000000..f0ecd06b3d74 --- /dev/null +++ b/data/game/pl/planet-coaster-classic-rides-collection.json @@ -0,0 +1,13 @@ +{ + "slug": "planet-coaster-classic-rides-collection", + "name": "Planet Coaster - Classic Rides Collection", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113813363" + ], + "release_date": "2019-04-16", + "platforms": [ + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/game/pl/planet-coaster-ghostbusters.json b/data/game/pl/planet-coaster-ghostbusters.json new file mode 100644 index 000000000000..3263ba262266 --- /dev/null +++ b/data/game/pl/planet-coaster-ghostbusters.json @@ -0,0 +1,13 @@ +{ + "slug": "planet-coaster-ghostbusters", + "name": "Planet Coaster: Ghostbusters", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113813304" + ], + "release_date": "2019-06-04", + "platforms": [ + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/game/pl/planet-coaster-knight-rider-k-i-t-t-construction-kit.json b/data/game/pl/planet-coaster-knight-rider-k-i-t-t-construction-kit.json new file mode 100644 index 000000000000..c052938cce56 --- /dev/null +++ b/data/game/pl/planet-coaster-knight-rider-k-i-t-t-construction-kit.json @@ -0,0 +1,12 @@ +{ + "slug": "planet-coaster-knight-rider-k-i-t-t-construction-kit", + "name": "Planet Coaster - Knight Rider K.I.T.T. Construction Kit", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113813415" + ], + "release_date": "2017-07-21", + "platforms": [ + "Microsoft Windows" + ] +} diff --git a/data/game/pl/planet-coaster-magnificent-rides-collection.json b/data/game/pl/planet-coaster-magnificent-rides-collection.json new file mode 100644 index 000000000000..c2bd25dd114a --- /dev/null +++ b/data/game/pl/planet-coaster-magnificent-rides-collection.json @@ -0,0 +1,13 @@ +{ + "slug": "planet-coaster-magnificent-rides-collection", + "name": "Planet Coaster - Magnificent Rides Collection", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113813352" + ], + "release_date": "2018-12-20", + "platforms": [ + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/game/pl/planet-coaster-quick-draw-interactive-shooting-ride.json b/data/game/pl/planet-coaster-quick-draw-interactive-shooting-ride.json new file mode 100644 index 000000000000..b09770ab98f5 --- /dev/null +++ b/data/game/pl/planet-coaster-quick-draw-interactive-shooting-ride.json @@ -0,0 +1,13 @@ +{ + "slug": "planet-coaster-quick-draw-interactive-shooting-ride", + "name": "Planet Coaster - Quick Draw Interactive Shooting Ride", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113813422" + ], + "release_date": "2019-06-04", + "platforms": [ + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/game/pl/planet-coaster-spooky-pack.json b/data/game/pl/planet-coaster-spooky-pack.json new file mode 100644 index 000000000000..5f8308ae2352 --- /dev/null +++ b/data/game/pl/planet-coaster-spooky-pack.json @@ -0,0 +1,19 @@ +{ + "slug": "planet-coaster-spooky-pack", + "name": "Planet Coaster - Spooky Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109942839" + ], + "release_date": "2017-09-25", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Frontier Developments" + ], + "publishers": [ + "Frontier Developments" + ] +} diff --git a/data/game/pl/planet-coaster-studios-pack.json b/data/game/pl/planet-coaster-studios-pack.json new file mode 100644 index 000000000000..bd77c26ed283 --- /dev/null +++ b/data/game/pl/planet-coaster-studios-pack.json @@ -0,0 +1,13 @@ +{ + "slug": "planet-coaster-studios-pack", + "name": "Planet Coaster - Studios Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113813250" + ], + "release_date": "2018-03-27", + "platforms": [ + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/game/pl/planet-coaster-the-munsters-munster-koach-construction-kit.json b/data/game/pl/planet-coaster-the-munsters-munster-koach-construction-kit.json new file mode 100644 index 000000000000..b3842228917a --- /dev/null +++ b/data/game/pl/planet-coaster-the-munsters-munster-koach-construction-kit.json @@ -0,0 +1,12 @@ +{ + "slug": "planet-coaster-the-munsters-munster-koach-construction-kit", + "name": "Planet Coaster - The Munsters Munster Koach Construction Kit", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113813370" + ], + "release_date": "2017-07-21", + "platforms": [ + "Microsoft Windows" + ] +} diff --git a/data/game/pl/planet-coaster-vintage-pack.json b/data/game/pl/planet-coaster-vintage-pack.json new file mode 100644 index 000000000000..43169dbb7619 --- /dev/null +++ b/data/game/pl/planet-coaster-vintage-pack.json @@ -0,0 +1,13 @@ +{ + "slug": "planet-coaster-vintage-pack", + "name": "Planet Coaster - Vintage Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113813320" + ], + "release_date": "2018-07-10", + "platforms": [ + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/game/pl/planet-coaster-world-s-fair-pack.json b/data/game/pl/planet-coaster-world-s-fair-pack.json new file mode 100644 index 000000000000..e3a857286b25 --- /dev/null +++ b/data/game/pl/planet-coaster-world-s-fair-pack.json @@ -0,0 +1,13 @@ +{ + "slug": "planet-coaster-world-s-fair-pack", + "name": "Planet Coaster - World's Fair Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113813343" + ], + "release_date": "2018-10-16", + "platforms": [ + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/game/pl/planet-saints-pack.json b/data/game/pl/planet-saints-pack.json new file mode 100644 index 000000000000..e6683143e7cf --- /dev/null +++ b/data/game/pl/planet-saints-pack.json @@ -0,0 +1,12 @@ +{ + "slug": "planet-saints-pack", + "name": "Planet Saints Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60722028" + ], + "release_date": "2012-08-22", + "platforms": [ + "PlayStation 3" + ] +} diff --git a/data/game/pl/planet-zoo-africa-pack.json b/data/game/pl/planet-zoo-africa-pack.json new file mode 100644 index 000000000000..fb00e1e5293f --- /dev/null +++ b/data/game/pl/planet-zoo-africa-pack.json @@ -0,0 +1,18 @@ +{ + "slug": "planet-zoo-africa-pack", + "name": "Planet Zoo: Africa Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110822279" + ], + "release_date": "2021-06-22", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Frontier Developments" + ], + "publishers": [ + "Frontier Developments" + ] +} diff --git a/data/game/pl/planet-zoo-aquatic-pack.json b/data/game/pl/planet-zoo-aquatic-pack.json new file mode 100644 index 000000000000..886885300aea --- /dev/null +++ b/data/game/pl/planet-zoo-aquatic-pack.json @@ -0,0 +1,18 @@ +{ + "slug": "planet-zoo-aquatic-pack", + "name": "Planet Zoo: Aquatic Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110817236" + ], + "release_date": "2020-12-08", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Frontier Developments" + ], + "publishers": [ + "Frontier Developments" + ] +} diff --git a/data/game/pl/planet-zoo-arctic-pack.json b/data/game/pl/planet-zoo-arctic-pack.json new file mode 100644 index 000000000000..d4a3e48dc982 --- /dev/null +++ b/data/game/pl/planet-zoo-arctic-pack.json @@ -0,0 +1,18 @@ +{ + "slug": "planet-zoo-arctic-pack", + "name": "Planet Zoo: Arctic Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110817171" + ], + "release_date": "2019-12-17", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Frontier Developments" + ], + "publishers": [ + "Frontier Developments" + ] +} diff --git a/data/game/pl/planet-zoo-australia-pack.json b/data/game/pl/planet-zoo-australia-pack.json new file mode 100644 index 000000000000..4b731287ccfa --- /dev/null +++ b/data/game/pl/planet-zoo-australia-pack.json @@ -0,0 +1,18 @@ +{ + "slug": "planet-zoo-australia-pack", + "name": "Planet Zoo: Australia Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110822161" + ], + "release_date": "2020-08-25", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Frontier Developments" + ], + "publishers": [ + "Frontier Developments" + ] +} diff --git a/data/game/pl/planet-zoo-conservation-pack.json b/data/game/pl/planet-zoo-conservation-pack.json new file mode 100644 index 000000000000..95fbc2eb556f --- /dev/null +++ b/data/game/pl/planet-zoo-conservation-pack.json @@ -0,0 +1,18 @@ +{ + "slug": "planet-zoo-conservation-pack", + "name": "Planet Zoo: Conservation Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112281892" + ], + "release_date": "2022-06-21", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Frontier Developments" + ], + "publishers": [ + "Frontier Developments" + ] +} diff --git a/data/game/pl/planet-zoo-europe-pack.json b/data/game/pl/planet-zoo-europe-pack.json new file mode 100644 index 000000000000..4e25d9502864 --- /dev/null +++ b/data/game/pl/planet-zoo-europe-pack.json @@ -0,0 +1,18 @@ +{ + "slug": "planet-zoo-europe-pack", + "name": "Planet Zoo: Europe Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110822297" + ], + "release_date": "2021-12-14", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Frontier Developments" + ], + "publishers": [ + "Frontier Developments" + ] +} diff --git a/data/game/pl/planet-zoo-grasslands-animal-pack.json b/data/game/pl/planet-zoo-grasslands-animal-pack.json new file mode 100644 index 000000000000..d42bb7888557 --- /dev/null +++ b/data/game/pl/planet-zoo-grasslands-animal-pack.json @@ -0,0 +1,18 @@ +{ + "slug": "planet-zoo-grasslands-animal-pack", + "name": "Planet Zoo: Grasslands Animal Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115731822" + ], + "release_date": "2022-12-13", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Frontier Developments" + ], + "publishers": [ + "Frontier Developments" + ] +} diff --git a/data/game/pl/planet-zoo-north-america-animal-pack.json b/data/game/pl/planet-zoo-north-america-animal-pack.json new file mode 100644 index 000000000000..a21c9b2aadd0 --- /dev/null +++ b/data/game/pl/planet-zoo-north-america-animal-pack.json @@ -0,0 +1,18 @@ +{ + "slug": "planet-zoo-north-america-animal-pack", + "name": "Planet Zoo: North America Animal Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110822336" + ], + "release_date": "2021-10-04", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Frontier Developments" + ], + "publishers": [ + "Frontier Developments" + ] +} diff --git a/data/game/pl/planet-zoo-south-america-pack.json b/data/game/pl/planet-zoo-south-america-pack.json new file mode 100644 index 000000000000..77f4ca900805 --- /dev/null +++ b/data/game/pl/planet-zoo-south-america-pack.json @@ -0,0 +1,18 @@ +{ + "slug": "planet-zoo-south-america-pack", + "name": "Planet Zoo: South America Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110822209" + ], + "release_date": "2020-04-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Frontier Developments" + ], + "publishers": [ + "Frontier Developments" + ] +} diff --git a/data/game/pl/planet-zoo-southeast-asia-animal-pack.json b/data/game/pl/planet-zoo-southeast-asia-animal-pack.json new file mode 100644 index 000000000000..3c36006548c7 --- /dev/null +++ b/data/game/pl/planet-zoo-southeast-asia-animal-pack.json @@ -0,0 +1,18 @@ +{ + "slug": "planet-zoo-southeast-asia-animal-pack", + "name": "Planet Zoo: Southeast Asia Animal Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110822369" + ], + "release_date": "2021-03-30", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Frontier Developments" + ], + "publishers": [ + "Frontier Developments" + ] +} diff --git a/data/game/pl/planet-zoo-twilight-pack.json b/data/game/pl/planet-zoo-twilight-pack.json new file mode 100644 index 000000000000..a4f6dc2a4e4d --- /dev/null +++ b/data/game/pl/planet-zoo-twilight-pack.json @@ -0,0 +1,18 @@ +{ + "slug": "planet-zoo-twilight-pack", + "name": "Planet Zoo: Twilight Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q114788341" + ], + "release_date": "2022-10-18", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Frontier Developments" + ], + "publishers": [ + "Frontier Developments" + ] +} diff --git a/data/game/pl/planet-zoo-wetlands-animal-pack.json b/data/game/pl/planet-zoo-wetlands-animal-pack.json new file mode 100644 index 000000000000..8c89ca04ace4 --- /dev/null +++ b/data/game/pl/planet-zoo-wetlands-animal-pack.json @@ -0,0 +1,18 @@ +{ + "slug": "planet-zoo-wetlands-animal-pack", + "name": "Planet Zoo: Wetlands Animal Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111587103" + ], + "release_date": "2022-04-12", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Frontier Developments" + ], + "publishers": [ + "Frontier Developments" + ] +} diff --git a/data/game/pl/playboy-the-mansion-gold-edition.json b/data/game/pl/playboy-the-mansion-gold-edition.json new file mode 100644 index 000000000000..f17f8f220925 --- /dev/null +++ b/data/game/pl/playboy-the-mansion-gold-edition.json @@ -0,0 +1,23 @@ +{ + "slug": "playboy-the-mansion-gold-edition", + "name": "Playboy: The Mansion - Gold Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q98793059" + ], + "release_date": "2005-01-01", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "business simulation game", + "erotic video game", + "advergame" + ], + "developers": [ + "Cyberlore Studios" + ], + "publishers": [ + "Buka Entertainment" + ] +} diff --git a/data/game/pl/playboy-the-mansion-private-party.json b/data/game/pl/playboy-the-mansion-private-party.json new file mode 100644 index 000000000000..9e7fe7eaf2c6 --- /dev/null +++ b/data/game/pl/playboy-the-mansion-private-party.json @@ -0,0 +1,23 @@ +{ + "slug": "playboy-the-mansion-private-party", + "name": "Playboy the Mansion: Private Party", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q98540723" + ], + "release_date": "2005-12-15", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "business simulation game", + "erotic video game", + "advergame" + ], + "developers": [ + "Cyberlore Studios" + ], + "publishers": [ + "Groove Games" + ] +} diff --git a/data/game/pl/playchoice-10.json b/data/game/pl/playchoice-10.json new file mode 100644 index 000000000000..f45fe82c032e --- /dev/null +++ b/data/game/pl/playchoice-10.json @@ -0,0 +1,15 @@ +{ + "slug": "playchoice-10", + "name": "PlayChoice-10", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q370601" + ], + "release_date": "1986-01-01", + "platforms": [ + "arcade video game machine" + ], + "developers": [ + "Nintendo" + ] +} diff --git a/data/game/pl/playstation-20th-anniversary-theme.json b/data/game/pl/playstation-20th-anniversary-theme.json new file mode 100644 index 000000000000..2b69d9f15ca7 --- /dev/null +++ b/data/game/pl/playstation-20th-anniversary-theme.json @@ -0,0 +1,20 @@ +{ + "slug": "playstation-20th-anniversary-theme", + "name": "PlayStation 20th Anniversary Theme", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q61468034" + ], + "release_date": "2014-12-03", + "platforms": [ + "PlayStation 4", + "PlayStation Vita", + "PlayStation 3" + ], + "developers": [ + "Sony Interactive Entertainment" + ], + "publishers": [ + "Sony Interactive Entertainment" + ] +} diff --git a/data/game/pl/playstation-vr-demo-disc.json b/data/game/pl/playstation-vr-demo-disc.json new file mode 100644 index 000000000000..a51aa5f9c670 --- /dev/null +++ b/data/game/pl/playstation-vr-demo-disc.json @@ -0,0 +1,12 @@ +{ + "slug": "playstation-vr-demo-disc", + "name": "PlayStation VR Demo Disc", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122995499" + ], + "release_date": "2016-01-01", + "platforms": [ + "PlayStation 4" + ] +} diff --git a/data/game/pl/playstation-vr-worlds.json b/data/game/pl/playstation-vr-worlds.json new file mode 100644 index 000000000000..f6295cc16a9c --- /dev/null +++ b/data/game/pl/playstation-vr-worlds.json @@ -0,0 +1,18 @@ +{ + "slug": "playstation-vr-worlds", + "name": "PlayStation VR Worlds", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63563606" + ], + "release_date": "2016-10-13", + "platforms": [ + "PlayStation 4" + ], + "developers": [ + "London Studio" + ], + "publishers": [ + "Sony Interactive Entertainment" + ] +} diff --git a/data/game/po/pocket-build-q111516800.json b/data/game/po/pocket-build-q111516800.json new file mode 100644 index 000000000000..95ac6235e40b --- /dev/null +++ b/data/game/po/pocket-build-q111516800.json @@ -0,0 +1,13 @@ +{ + "slug": "pocket-build-q111516800", + "name": "Pocket Build+", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111516800" + ], + "release_date": "2022-04-01", + "platforms": [ + "iPadOS", + "iOS" + ] +} diff --git a/data/game/po/pocoyo-circuits.json b/data/game/po/pocoyo-circuits.json new file mode 100644 index 000000000000..2357c3098b51 --- /dev/null +++ b/data/game/po/pocoyo-circuits.json @@ -0,0 +1,15 @@ +{ + "slug": "pocoyo-circuits", + "name": "Pocoyo Circuits", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q96694241" + ], + "release_date": "2011-03-19", + "genres": [ + "racing video game" + ], + "publishers": [ + "Zinkia Entertainment" + ] +} diff --git a/data/game/po/poglings.json b/data/game/po/poglings.json new file mode 100644 index 000000000000..1f8af9d4cf25 --- /dev/null +++ b/data/game/po/poglings.json @@ -0,0 +1,15 @@ +{ + "slug": "poglings", + "name": "Poglings", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123734530" + ], + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "monster-taming game", + "virtual pet video game" + ] +} diff --git a/data/game/po/pogo-a-gogo.json b/data/game/po/pogo-a-gogo.json new file mode 100644 index 000000000000..e643d2dafeeb --- /dev/null +++ b/data/game/po/pogo-a-gogo.json @@ -0,0 +1,8 @@ +{ + "slug": "pogo-a-gogo", + "name": "Pogo-a-Gogo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q41653827" + ] +} diff --git a/data/game/po/pogo-padlock.json b/data/game/po/pogo-padlock.json new file mode 100644 index 000000000000..db2c9a80ed18 --- /dev/null +++ b/data/game/po/pogo-padlock.json @@ -0,0 +1,8 @@ +{ + "slug": "pogo-padlock", + "name": "Pogo Padlock", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q41654487" + ] +} diff --git a/data/game/po/pogo-painter.json b/data/game/po/pogo-painter.json new file mode 100644 index 000000000000..d3b16172322a --- /dev/null +++ b/data/game/po/pogo-painter.json @@ -0,0 +1,8 @@ +{ + "slug": "pogo-painter", + "name": "Pogo Painter", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q41636843" + ] +} diff --git a/data/game/po/poietic-generator.json b/data/game/po/poietic-generator.json new file mode 100644 index 000000000000..846bef563a70 --- /dev/null +++ b/data/game/po/poietic-generator.json @@ -0,0 +1,11 @@ +{ + "slug": "poietic-generator", + "name": "Poietic Generator", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3123142" + ], + "genres": [ + "social network game" + ] +} diff --git a/data/game/po/pointman-the-akkadian-wars.json b/data/game/po/pointman-the-akkadian-wars.json new file mode 100644 index 000000000000..624a932a22ca --- /dev/null +++ b/data/game/po/pointman-the-akkadian-wars.json @@ -0,0 +1,17 @@ +{ + "slug": "pointman-the-akkadian-wars", + "name": "Pointman: the Akkadian Wars", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124060164" + ], + "platforms": [ + "PlayStation 3" + ], + "developers": [ + "Condorstrike" + ], + "publishers": [ + "Condorstrike" + ] +} diff --git a/data/game/po/pok-forest.json b/data/game/po/pok-forest.json new file mode 100644 index 000000000000..9494d2062970 --- /dev/null +++ b/data/game/po/pok-forest.json @@ -0,0 +1,9 @@ +{ + "slug": "pok-forest", + "name": "Poké Forest", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112582101" + ], + "release_date": "2013-03-24" +} diff --git a/data/game/po/pok-mon-brick-bronze.json b/data/game/po/pok-mon-brick-bronze.json new file mode 100644 index 000000000000..a4972d476683 --- /dev/null +++ b/data/game/po/pok-mon-brick-bronze.json @@ -0,0 +1,18 @@ +{ + "slug": "pok-mon-brick-bronze", + "name": "Pokémon Brick Bronze", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q102691924" + ], + "release_date": "2015-10-24", + "platforms": [ + "Classic Mac OS", + "iOS", + "macOS", + "Microsoft Windows" + ], + "genres": [ + "role-playing video game" + ] +} diff --git a/data/game/po/pok-mon-legends-z-a-mega-dimension.json b/data/game/po/pok-mon-legends-z-a-mega-dimension.json new file mode 100644 index 000000000000..a714485dfcb3 --- /dev/null +++ b/data/game/po/pok-mon-legends-z-a-mega-dimension.json @@ -0,0 +1,19 @@ +{ + "slug": "pok-mon-legends-z-a-mega-dimension", + "name": "Pokémon Legends: Z-A - Mega Dimension", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136338067" + ], + "release_date": "2025-12-10", + "genres": [ + "action role-playing game" + ], + "developers": [ + "Game Freak" + ], + "publishers": [ + "Nintendo", + "The Pokémon Company" + ] +} diff --git a/data/game/po/pok-mon-mystery-dungeon-gates-to-infinity-demo.json b/data/game/po/pok-mon-mystery-dungeon-gates-to-infinity-demo.json new file mode 100644 index 000000000000..2e0c5d2cd042 --- /dev/null +++ b/data/game/po/pok-mon-mystery-dungeon-gates-to-infinity-demo.json @@ -0,0 +1,11 @@ +{ + "slug": "pok-mon-mystery-dungeon-gates-to-infinity-demo", + "name": "Pokémon Mystery Dungeon: Gates to Infinity demo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112843134" + ], + "platforms": [ + "Nintendo 3DS" + ] +} diff --git a/data/game/po/pok-mon-mystery-dungeon-gold-rescue-team.json b/data/game/po/pok-mon-mystery-dungeon-gold-rescue-team.json new file mode 100644 index 000000000000..d466167fe2de --- /dev/null +++ b/data/game/po/pok-mon-mystery-dungeon-gold-rescue-team.json @@ -0,0 +1,15 @@ +{ + "slug": "pok-mon-mystery-dungeon-gold-rescue-team", + "name": "Pokémon Mystery Dungeon: Gold Rescue Team", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112611718" + ], + "release_date": "2007-08-11", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Spike Chunsoft" + ] +} diff --git a/data/game/po/pok-mon-picross-gbc.json b/data/game/po/pok-mon-picross-gbc.json new file mode 100644 index 000000000000..cffb1db42a1b --- /dev/null +++ b/data/game/po/pok-mon-picross-gbc.json @@ -0,0 +1,11 @@ +{ + "slug": "pok-mon-picross-gbc", + "name": "Pokémon Picross GBC", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108741826" + ], + "genres": [ + "nonogram video game" + ] +} diff --git a/data/game/po/pok-mon-prism.json b/data/game/po/pok-mon-prism.json new file mode 100644 index 000000000000..fc710a528c7b --- /dev/null +++ b/data/game/po/pok-mon-prism.json @@ -0,0 +1,14 @@ +{ + "slug": "pok-mon-prism", + "name": "Pokémon Prism", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120971776" + ], + "platforms": [ + "Game Boy Color" + ], + "genres": [ + "monster-taming game" + ] +} diff --git a/data/game/po/pok-mon-scarlet-and-violet-the-teal-mask.json b/data/game/po/pok-mon-scarlet-and-violet-the-teal-mask.json new file mode 100644 index 000000000000..cfc2d07dd76a --- /dev/null +++ b/data/game/po/pok-mon-scarlet-and-violet-the-teal-mask.json @@ -0,0 +1,8 @@ +{ + "slug": "pok-mon-scarlet-and-violet-the-teal-mask", + "name": "Pokémon Scarlet and Violet: The Teal Mask", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135270402" + ] +} diff --git a/data/game/po/pok-mon-snap-station.json b/data/game/po/pok-mon-snap-station.json new file mode 100644 index 000000000000..f1ce95a059a6 --- /dev/null +++ b/data/game/po/pok-mon-snap-station.json @@ -0,0 +1,8 @@ +{ + "slug": "pok-mon-snap-station", + "name": "Pokémon Snap Station", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18817158" + ] +} diff --git a/data/game/po/pok-mon-sword-and-shield-expansion-pass.json b/data/game/po/pok-mon-sword-and-shield-expansion-pass.json new file mode 100644 index 000000000000..8ac4973a29f2 --- /dev/null +++ b/data/game/po/pok-mon-sword-and-shield-expansion-pass.json @@ -0,0 +1,11 @@ +{ + "slug": "pok-mon-sword-and-shield-expansion-pass", + "name": "Pokémon Sword and Shield Expansion Pass", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q96440106" + ], + "platforms": [ + "Nintendo Switch Lite" + ] +} diff --git a/data/game/po/police-quest-collection.json b/data/game/po/police-quest-collection.json new file mode 100644 index 000000000000..b27cedaa442d --- /dev/null +++ b/data/game/po/police-quest-collection.json @@ -0,0 +1,18 @@ +{ + "slug": "police-quest-collection", + "name": "Police Quest Collection", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q114692107" + ], + "release_date": "1987-09-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Sierra Entertainment" + ], + "publishers": [ + "Activision" + ] +} diff --git a/data/game/po/police-quest-swat-1-2.json b/data/game/po/police-quest-swat-1-2.json new file mode 100644 index 000000000000..a1bf3a8ff5ee --- /dev/null +++ b/data/game/po/police-quest-swat-1-2.json @@ -0,0 +1,11 @@ +{ + "slug": "police-quest-swat-1-2", + "name": "Police Quest: SWAT 1+2", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123412965" + ], + "publishers": [ + "Activision" + ] +} diff --git a/data/game/po/police-simulator-2.json b/data/game/po/police-simulator-2.json new file mode 100644 index 000000000000..15ac1dc6d101 --- /dev/null +++ b/data/game/po/police-simulator-2.json @@ -0,0 +1,8 @@ +{ + "slug": "police-simulator-2", + "name": "Police Simulator 2", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140472008" + ] +} diff --git a/data/game/po/pon-para-and-the-great-southern-labyrinth-love-and-shadows.json b/data/game/po/pon-para-and-the-great-southern-labyrinth-love-and-shadows.json new file mode 100644 index 000000000000..900295ab7ec2 --- /dev/null +++ b/data/game/po/pon-para-and-the-great-southern-labyrinth-love-and-shadows.json @@ -0,0 +1,19 @@ +{ + "slug": "pon-para-and-the-great-southern-labyrinth-love-and-shadows", + "name": "Pon Para and the Great Southern Labyrinth - Love and Shadows", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115016175" + ], + "release_date": "2019-05-09", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Choice of Games" + ], + "publishers": [ + "Choice of Games" + ] +} diff --git a/data/game/po/pop-dart.json b/data/game/po/pop-dart.json new file mode 100644 index 000000000000..ba54796ae3cd --- /dev/null +++ b/data/game/po/pop-dart.json @@ -0,0 +1,8 @@ +{ + "slug": "pop-dart", + "name": "Pop Dart", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q128014898" + ] +} diff --git a/data/game/po/popex.json b/data/game/po/popex.json new file mode 100644 index 000000000000..cb3c99048574 --- /dev/null +++ b/data/game/po/popex.json @@ -0,0 +1,11 @@ +{ + "slug": "popex", + "name": "Popex", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7229278" + ], + "genres": [ + "business simulation game" + ] +} diff --git a/data/game/po/poppy-playtime-chapter-1.json b/data/game/po/poppy-playtime-chapter-1.json new file mode 100644 index 000000000000..762d2f0e6d4b --- /dev/null +++ b/data/game/po/poppy-playtime-chapter-1.json @@ -0,0 +1,27 @@ +{ + "slug": "poppy-playtime-chapter-1", + "name": "Poppy Playtime - Chapter 1", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126045789" + ], + "release_date": "2021-10-13", + "platforms": [ + "PlayStation 5", + "PlayStation 4", + "iOS", + "Microsoft Windows" + ], + "genres": [ + "puzzle video game", + "survival horror", + "episodic video game", + "mascot horror video game" + ], + "developers": [ + "Mob Entertainment" + ], + "publishers": [ + "Mob Entertainment" + ] +} diff --git a/data/game/po/poppy-playtime-chapter-2.json b/data/game/po/poppy-playtime-chapter-2.json new file mode 100644 index 000000000000..93174a9b5a07 --- /dev/null +++ b/data/game/po/poppy-playtime-chapter-2.json @@ -0,0 +1,25 @@ +{ + "slug": "poppy-playtime-chapter-2", + "name": "Poppy Playtime - Chapter 2", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126045643" + ], + "release_date": "2022-05-05", + "platforms": [ + "iOS", + "Microsoft Windows" + ], + "genres": [ + "puzzle video game", + "survival horror", + "episodic video game", + "mascot horror video game" + ], + "developers": [ + "Mob Entertainment" + ], + "publishers": [ + "Mob Entertainment" + ] +} diff --git a/data/game/po/poppy-playtime-chapter-3.json b/data/game/po/poppy-playtime-chapter-3.json new file mode 100644 index 000000000000..bed5d2def215 --- /dev/null +++ b/data/game/po/poppy-playtime-chapter-3.json @@ -0,0 +1,25 @@ +{ + "slug": "poppy-playtime-chapter-3", + "name": "Poppy Playtime - Chapter 3", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126045674" + ], + "release_date": "2024-01-30", + "platforms": [ + "iOS", + "Microsoft Windows" + ], + "genres": [ + "puzzle video game", + "survival horror", + "episodic video game", + "mascot horror video game" + ], + "developers": [ + "Mob Entertainment" + ], + "publishers": [ + "Mob Entertainment" + ] +} diff --git a/data/game/po/poppy-playtime-chapter-4.json b/data/game/po/poppy-playtime-chapter-4.json new file mode 100644 index 000000000000..1a29a44794d7 --- /dev/null +++ b/data/game/po/poppy-playtime-chapter-4.json @@ -0,0 +1,25 @@ +{ + "slug": "poppy-playtime-chapter-4", + "name": "Poppy Playtime - Chapter 4", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130392279" + ], + "release_date": "2025-01-30", + "platforms": [ + "iOS", + "Microsoft Windows" + ], + "genres": [ + "puzzle video game", + "survival horror", + "episodic video game", + "mascot horror video game" + ], + "developers": [ + "Mob Entertainment" + ], + "publishers": [ + "Mob Entertainment" + ] +} diff --git a/data/game/po/populous-world-editor.json b/data/game/po/populous-world-editor.json new file mode 100644 index 000000000000..d75d2c90422e --- /dev/null +++ b/data/game/po/populous-world-editor.json @@ -0,0 +1,11 @@ +{ + "slug": "populous-world-editor", + "name": "Populous: World Editor", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126197158" + ], + "publishers": [ + "Electronic Arts" + ] +} diff --git a/data/game/po/portal-bundle.json b/data/game/po/portal-bundle.json new file mode 100644 index 000000000000..38f2a39dddc9 --- /dev/null +++ b/data/game/po/portal-bundle.json @@ -0,0 +1,23 @@ +{ + "slug": "portal-bundle", + "name": "Portal Bundle", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q71192706" + ], + "release_date": "2018-03-14", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "science fiction", + "first-person shooter", + "puzzle-platformer" + ], + "developers": [ + "Valve Corporation" + ], + "publishers": [ + "Valve Corporation" + ] +} diff --git a/data/game/po/portal-companion-collection.json b/data/game/po/portal-companion-collection.json new file mode 100644 index 000000000000..5b81e4935d34 --- /dev/null +++ b/data/game/po/portal-companion-collection.json @@ -0,0 +1,11 @@ +{ + "slug": "portal-companion-collection", + "name": "Portal Companion Collection", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113572978" + ], + "developers": [ + "NVIDIA Lightspeed Studios" + ] +} diff --git a/data/game/po/portal-the-first-slice.json b/data/game/po/portal-the-first-slice.json new file mode 100644 index 000000000000..1cfdc8955e64 --- /dev/null +++ b/data/game/po/portal-the-first-slice.json @@ -0,0 +1,22 @@ +{ + "slug": "portal-the-first-slice", + "name": "Portal: The First Slice", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122658378" + ], + "release_date": "2008-05-08", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "puzzle video game" + ], + "developers": [ + "Valve Corporation" + ], + "publishers": [ + "Valve Corporation" + ] +} diff --git a/data/game/po/portal-wii-u-edition.json b/data/game/po/portal-wii-u-edition.json new file mode 100644 index 000000000000..298e773fc5e0 --- /dev/null +++ b/data/game/po/portal-wii-u-edition.json @@ -0,0 +1,21 @@ +{ + "slug": "portal-wii-u-edition", + "name": "Portal: Wii U Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123135943" + ], + "release_date": "2023-08-09", + "platforms": [ + "Wii U" + ], + "genres": [ + "puzzle video game" + ], + "developers": [ + "Source Macchiato" + ], + "publishers": [ + "Source Macchiato" + ] +} diff --git a/data/game/po/portugal-virtual.json b/data/game/po/portugal-virtual.json new file mode 100644 index 000000000000..75fa48d2a8b1 --- /dev/null +++ b/data/game/po/portugal-virtual.json @@ -0,0 +1,11 @@ +{ + "slug": "portugal-virtual", + "name": "Portugal Virtual", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10352013" + ], + "platforms": [ + "cross-platform" + ] +} diff --git a/data/game/po/poseidon-master-of-atlantis.json b/data/game/po/poseidon-master-of-atlantis.json new file mode 100644 index 000000000000..8adf0814f8e0 --- /dev/null +++ b/data/game/po/poseidon-master-of-atlantis.json @@ -0,0 +1,21 @@ +{ + "slug": "poseidon-master-of-atlantis", + "name": "Poseidon: Master of Atlantis", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1239599" + ], + "release_date": "2001-06-25", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "city-building game" + ], + "developers": [ + "Impressions Games" + ], + "publishers": [ + "Sierra Entertainment" + ] +} diff --git a/data/game/po/post-apocalyptic-mayhem-chaos-pack.json b/data/game/po/post-apocalyptic-mayhem-chaos-pack.json new file mode 100644 index 000000000000..1f8eaa7ae798 --- /dev/null +++ b/data/game/po/post-apocalyptic-mayhem-chaos-pack.json @@ -0,0 +1,15 @@ +{ + "slug": "post-apocalyptic-mayhem-chaos-pack", + "name": "Post Apocalyptic Mayhem: Chaos Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120983436" + ], + "release_date": "2011-09-29", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Steel Monkeys" + ] +} diff --git a/data/game/po/post-self-muck.json b/data/game/po/post-self-muck.json new file mode 100644 index 000000000000..f6e4deabd3c8 --- /dev/null +++ b/data/game/po/post-self-muck.json @@ -0,0 +1,8 @@ +{ + "slug": "post-self-muck", + "name": "Post-Self MUCK", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122785257" + ] +} diff --git a/data/game/po/postal-10th-anniversary-collector-s-edition.json b/data/game/po/postal-10th-anniversary-collector-s-edition.json new file mode 100644 index 000000000000..64cbb9d10f33 --- /dev/null +++ b/data/game/po/postal-10th-anniversary-collector-s-edition.json @@ -0,0 +1,30 @@ +{ + "slug": "postal-10th-anniversary-collector-s-edition", + "name": "Postal: 10th Anniversary Collector's Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107009929" + ], + "release_date": "2007-10-27", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "black comedy", + "third-person shooter", + "shoot 'em up", + "parody video game", + "satirical video game", + "black comedy video game", + "self-reflexive video game" + ], + "developers": [ + "Running with Scissors" + ], + "publishers": [ + "Akella", + "Running with Scissors" + ] +} diff --git a/data/game/po/postal-2-a-week-in-paradise.json b/data/game/po/postal-2-a-week-in-paradise.json new file mode 100644 index 000000000000..b732d415720d --- /dev/null +++ b/data/game/po/postal-2-a-week-in-paradise.json @@ -0,0 +1,27 @@ +{ + "slug": "postal-2-a-week-in-paradise", + "name": "Postal 2: A Week in Paradise", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q59315077" + ], + "release_date": "2005-12-26", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "black comedy video game", + "self-reflexive video game", + "parody video game", + "satirical video game" + ], + "developers": [ + "Resurrection Studios", + "Running with Scissors" + ], + "publishers": [ + "Running with Scissors", + "Resurrection Studios" + ] +} diff --git a/data/game/po/postal-2-apocalypse-weekend.json b/data/game/po/postal-2-apocalypse-weekend.json new file mode 100644 index 000000000000..547602f922f3 --- /dev/null +++ b/data/game/po/postal-2-apocalypse-weekend.json @@ -0,0 +1,26 @@ +{ + "slug": "postal-2-apocalypse-weekend", + "name": "Postal 2: Apocalypse Weekend", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q59312186" + ], + "release_date": "2005-05-12", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "black comedy video game", + "self-reflexive video game", + "parody video game", + "satirical video game" + ], + "developers": [ + "Running with Scissors" + ], + "publishers": [ + "Running with Scissors" + ] +} diff --git a/data/game/po/postal-2-complete.json b/data/game/po/postal-2-complete.json new file mode 100644 index 000000000000..6cf4f25dab8d --- /dev/null +++ b/data/game/po/postal-2-complete.json @@ -0,0 +1,26 @@ +{ + "slug": "postal-2-complete", + "name": "Postal 2: Complete", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124717664" + ], + "release_date": "2012-11-02", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "self-reflexive video game", + "parody video game", + "satirical video game", + "black comedy video game" + ], + "developers": [ + "Running with Scissors" + ], + "publishers": [ + "Running with Scissors" + ] +} diff --git a/data/game/po/postal-2-corkscrew-rules.json b/data/game/po/postal-2-corkscrew-rules.json new file mode 100644 index 000000000000..b03ee538a6a1 --- /dev/null +++ b/data/game/po/postal-2-corkscrew-rules.json @@ -0,0 +1,22 @@ +{ + "slug": "postal-2-corkscrew-rules", + "name": "Postal 2: Corkscrew Rules!", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4047276" + ], + "release_date": "2005-08-01", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "black comedy video game", + "self-reflexive video game", + "parody video game", + "satirical video game" + ], + "publishers": [ + "Akella" + ] +} diff --git a/data/game/po/postal-2-eternal-damnation.json b/data/game/po/postal-2-eternal-damnation.json new file mode 100644 index 000000000000..5e85b7f96e25 --- /dev/null +++ b/data/game/po/postal-2-eternal-damnation.json @@ -0,0 +1,28 @@ +{ + "slug": "postal-2-eternal-damnation", + "name": "Postal 2: Eternal Damnation", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q59314969" + ], + "release_date": "2006-11-13", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "survival horror", + "black comedy video game", + "self-reflexive video game", + "parody video game", + "satirical video game" + ], + "developers": [ + "Resurrection Studios", + "Revival Games" + ], + "publishers": [ + "Running with Scissors", + "Resurrection Studios" + ] +} diff --git a/data/game/po/postal-2-paradise-lost.json b/data/game/po/postal-2-paradise-lost.json new file mode 100644 index 000000000000..71b3dfec71d0 --- /dev/null +++ b/data/game/po/postal-2-paradise-lost.json @@ -0,0 +1,24 @@ +{ + "slug": "postal-2-paradise-lost", + "name": "Postal 2: Paradise Lost", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q59312244" + ], + "release_date": "2015-04-17", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "self-reflexive video game", + "parody video game" + ], + "developers": [ + "Running with Scissors" + ], + "publishers": [ + "Running with Scissors" + ] +} diff --git a/data/game/po/postal-2-share-the-pain-demo.json b/data/game/po/postal-2-share-the-pain-demo.json new file mode 100644 index 000000000000..ce38b2ded66a --- /dev/null +++ b/data/game/po/postal-2-share-the-pain-demo.json @@ -0,0 +1,17 @@ +{ + "slug": "postal-2-share-the-pain-demo", + "name": "Postal 2: Share the Pain demo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q98352762" + ], + "genres": [ + "first-person shooter" + ], + "developers": [ + "Running with Scissors" + ], + "publishers": [ + "Running with Scissors" + ] +} diff --git a/data/game/po/postal-2-share-the-pain.json b/data/game/po/postal-2-share-the-pain.json new file mode 100644 index 000000000000..ebff484e2398 --- /dev/null +++ b/data/game/po/postal-2-share-the-pain.json @@ -0,0 +1,24 @@ +{ + "slug": "postal-2-share-the-pain", + "name": "Postal 2: Share the Pain", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q59312137" + ], + "release_date": "2003-12-17", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "black comedy video game", + "satirical video game" + ], + "developers": [ + "Resurrection Studios" + ], + "publishers": [ + "Running with Scissors" + ] +} diff --git a/data/game/po/postal-3-catharsis-reborn.json b/data/game/po/postal-3-catharsis-reborn.json new file mode 100644 index 000000000000..5291ec2466e8 --- /dev/null +++ b/data/game/po/postal-3-catharsis-reborn.json @@ -0,0 +1,14 @@ +{ + "slug": "postal-3-catharsis-reborn", + "name": "Postal 3: Catharsis Reborn", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110817123" + ], + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "third-person shooter" + ] +} diff --git a/data/game/po/postal-classic-and-uncut.json b/data/game/po/postal-classic-and-uncut.json new file mode 100644 index 000000000000..279f8f36bf08 --- /dev/null +++ b/data/game/po/postal-classic-and-uncut.json @@ -0,0 +1,25 @@ +{ + "slug": "postal-classic-and-uncut", + "name": "Postal: Classic and Uncut", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113989979" + ], + "release_date": "2003-08-29", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "action game", + "shoot 'em up", + "horror video game" + ], + "developers": [ + "Running with Scissors" + ], + "publishers": [ + "Running with Scissors", + "Whiptail Interactive" + ] +} diff --git a/data/game/po/postal-fudge-pack.json b/data/game/po/postal-fudge-pack.json new file mode 100644 index 000000000000..e0bba68198d3 --- /dev/null +++ b/data/game/po/postal-fudge-pack.json @@ -0,0 +1,26 @@ +{ + "slug": "postal-fudge-pack", + "name": "Postal: Fudge Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q61968603" + ], + "release_date": "2006-11-13", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "parody video game", + "satirical video game", + "black comedy video game", + "self-reflexive video game" + ], + "developers": [ + "Resurrection Studios", + "Running with Scissors" + ], + "publishers": [ + "Running with Scissors" + ] +} diff --git a/data/game/po/postal-plus.json b/data/game/po/postal-plus.json new file mode 100644 index 000000000000..e99b1c657d37 --- /dev/null +++ b/data/game/po/postal-plus.json @@ -0,0 +1,21 @@ +{ + "slug": "postal-plus", + "name": "Postal Plus", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q59646230" + ], + "release_date": "2001-03-01", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "shoot 'em up" + ], + "developers": [ + "Running with Scissors" + ], + "publishers": [ + "Running with Scissors" + ] +} diff --git a/data/game/po/postal-special-delivery.json b/data/game/po/postal-special-delivery.json new file mode 100644 index 000000000000..e5cf0cda4ccd --- /dev/null +++ b/data/game/po/postal-special-delivery.json @@ -0,0 +1,23 @@ +{ + "slug": "postal-special-delivery", + "name": "Postal: Special Delivery", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q59645675" + ], + "release_date": "1998-08-27", + "platforms": [ + "Classic Mac OS", + "Microsoft Windows" + ], + "genres": [ + "shoot 'em up" + ], + "developers": [ + "Running with Scissors" + ], + "publishers": [ + "Running with Scissors", + "Ripcord Games" + ] +} diff --git a/data/game/po/postal-unlimited.json b/data/game/po/postal-unlimited.json new file mode 100644 index 000000000000..5dac75eaec0c --- /dev/null +++ b/data/game/po/postal-unlimited.json @@ -0,0 +1,26 @@ +{ + "slug": "postal-unlimited", + "name": "Postal Unlimited", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q59647082" + ], + "release_date": "2007-01-01", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "shoot 'em up", + "black comedy video game", + "self-reflexive video game", + "parody video game", + "satirical video game" + ], + "developers": [ + "Running with Scissors" + ], + "publishers": [ + "Akella" + ] +} diff --git a/data/game/po/power-drive-2000.json b/data/game/po/power-drive-2000.json new file mode 100644 index 000000000000..9aa0513c35df --- /dev/null +++ b/data/game/po/power-drive-2000.json @@ -0,0 +1,8 @@ +{ + "slug": "power-drive-2000", + "name": "Power Drive 2000", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140471356" + ] +} diff --git a/data/game/po/power-rangers-versus-teenage-mutant-ninja-turtles-ultimate-hero-clash-2.json b/data/game/po/power-rangers-versus-teenage-mutant-ninja-turtles-ultimate-hero-clash-2.json new file mode 100644 index 000000000000..f3776e114586 --- /dev/null +++ b/data/game/po/power-rangers-versus-teenage-mutant-ninja-turtles-ultimate-hero-clash-2.json @@ -0,0 +1,9 @@ +{ + "slug": "power-rangers-versus-teenage-mutant-ninja-turtles-ultimate-hero-clash-2", + "name": "Power Rangers Versus Teenage Mutant Ninja Turtles: Ultimate Hero Clash 2", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q101246881" + ], + "release_date": "2017-01-01" +} diff --git a/data/game/po/power-rangers-vs-teenage-mutant-ninja-turtles-ultimate-hero-clash-2.json b/data/game/po/power-rangers-vs-teenage-mutant-ninja-turtles-ultimate-hero-clash-2.json new file mode 100644 index 000000000000..71eac6076a93 --- /dev/null +++ b/data/game/po/power-rangers-vs-teenage-mutant-ninja-turtles-ultimate-hero-clash-2.json @@ -0,0 +1,9 @@ +{ + "slug": "power-rangers-vs-teenage-mutant-ninja-turtles-ultimate-hero-clash-2", + "name": "Power Rangers vs Teenage Mutant Ninja Turtles: Ultimate Hero Clash 2", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140373196" + ], + "release_date": "2017-02-03" +} diff --git a/data/game/po/power-soft.json b/data/game/po/power-soft.json new file mode 100644 index 000000000000..5fd6a881cf56 --- /dev/null +++ b/data/game/po/power-soft.json @@ -0,0 +1,14 @@ +{ + "slug": "power-soft", + "name": "Power-Soft", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113509965" + ], + "platforms": [ + "Amstrad CPC" + ], + "publishers": [ + "Tronic Verlag GmbH und Co." + ] +} diff --git a/data/game/pp/ppkp-q118235365.json b/data/game/pp/ppkp-q118235365.json new file mode 100644 index 000000000000..f3051afbd487 --- /dev/null +++ b/data/game/pp/ppkp-q118235365.json @@ -0,0 +1,13 @@ +{ + "slug": "ppkp-q118235365", + "name": "PPKP+", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118235365" + ], + "release_date": "2023-05-04", + "platforms": [ + "iPadOS", + "iOS" + ] +} diff --git a/data/game/pr/prboom-q67197321.json b/data/game/pr/prboom-q67197321.json new file mode 100644 index 000000000000..8dad898071f7 --- /dev/null +++ b/data/game/pr/prboom-q67197321.json @@ -0,0 +1,8 @@ +{ + "slug": "prboom-q67197321", + "name": "PrBoom+", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q67197321" + ] +} diff --git a/data/game/pr/prboom.json b/data/game/pr/prboom.json new file mode 100644 index 000000000000..728861b49b12 --- /dev/null +++ b/data/game/pr/prboom.json @@ -0,0 +1,8 @@ +{ + "slug": "prboom", + "name": "PrBoom", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065211" + ] +} diff --git a/data/game/pr/prey-2.json b/data/game/pr/prey-2.json new file mode 100644 index 000000000000..1096350352cf --- /dev/null +++ b/data/game/pr/prey-2.json @@ -0,0 +1,17 @@ +{ + "slug": "prey-2", + "name": "Prey 2", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28489858" + ], + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "science fiction video game" + ], + "developers": [ + "Human Head Studios" + ] +} diff --git a/data/game/pr/prey-mooncrash.json b/data/game/pr/prey-mooncrash.json new file mode 100644 index 000000000000..20495af0ada2 --- /dev/null +++ b/data/game/pr/prey-mooncrash.json @@ -0,0 +1,8 @@ +{ + "slug": "prey-mooncrash", + "name": "Prey - Mooncrash", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63165006" + ] +} diff --git a/data/game/pr/prezident-21.json b/data/game/pr/prezident-21.json new file mode 100644 index 000000000000..7ce3a8613864 --- /dev/null +++ b/data/game/pr/prezident-21.json @@ -0,0 +1,8 @@ +{ + "slug": "prezident-21", + "name": "Prezident 21", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28053437" + ] +} diff --git a/data/game/pr/primitive-link.json b/data/game/pr/primitive-link.json new file mode 100644 index 000000000000..a3d5cb71d338 --- /dev/null +++ b/data/game/pr/primitive-link.json @@ -0,0 +1,8 @@ +{ + "slug": "primitive-link", + "name": "PRIMITIVE LINK", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11335642" + ] +} diff --git a/data/game/pr/prince-of-persia-the-lost-crown-mask-of-darkness.json b/data/game/pr/prince-of-persia-the-lost-crown-mask-of-darkness.json new file mode 100644 index 000000000000..c4b171bb9d3e --- /dev/null +++ b/data/game/pr/prince-of-persia-the-lost-crown-mask-of-darkness.json @@ -0,0 +1,18 @@ +{ + "slug": "prince-of-persia-the-lost-crown-mask-of-darkness", + "name": "Prince of Persia: The Lost Crown - Mask of Darkness", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q132413360" + ], + "release_date": "2024-09-17", + "platforms": [ + "Microsoft Windows", + "PlayStation 5", + "Xbox Series X and Series S", + "PlayStation 4" + ], + "genres": [ + "Metroidvania" + ] +} diff --git a/data/game/pr/prince-of-persia-trilogy.json b/data/game/pr/prince-of-persia-trilogy.json new file mode 100644 index 000000000000..d576b8ebb151 --- /dev/null +++ b/data/game/pr/prince-of-persia-trilogy.json @@ -0,0 +1,12 @@ +{ + "slug": "prince-of-persia-trilogy", + "name": "Prince of Persia Trilogy", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q99543224" + ], + "platforms": [ + "PlayStation 3", + "Microsoft Windows" + ] +} diff --git a/data/game/pr/prince-of-persia.json b/data/game/pr/prince-of-persia.json new file mode 100644 index 000000000000..e9e7c2cc6b26 --- /dev/null +++ b/data/game/pr/prince-of-persia.json @@ -0,0 +1,17 @@ +{ + "slug": "prince-of-persia", + "name": "Prince of Persia", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q852583" + ], + "release_date": "2008-12-02", + "platforms": [ + "macOS", + "PlayStation 3", + "Microsoft Windows" + ], + "genres": [ + "action-adventure game" + ] +} diff --git a/data/game/pr/princess-conquest-additional-characters-1.json b/data/game/pr/princess-conquest-additional-characters-1.json new file mode 100644 index 000000000000..78532f5eb42b --- /dev/null +++ b/data/game/pr/princess-conquest-additional-characters-1.json @@ -0,0 +1,18 @@ +{ + "slug": "princess-conquest-additional-characters-1", + "name": "Princess & Conquest Additional Characters #1", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126027955" + ], + "release_date": "2023-04-15", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Towerfag" + ], + "publishers": [ + "Critical Bliss" + ] +} diff --git a/data/game/pr/princess-conquest-additional-characters-2.json b/data/game/pr/princess-conquest-additional-characters-2.json new file mode 100644 index 000000000000..912af0faeebe --- /dev/null +++ b/data/game/pr/princess-conquest-additional-characters-2.json @@ -0,0 +1,18 @@ +{ + "slug": "princess-conquest-additional-characters-2", + "name": "Princess & Conquest - Additional Characters #2", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126027965" + ], + "release_date": "2024-03-21", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Towerfag" + ], + "publishers": [ + "Critical Bliss" + ] +} diff --git a/data/game/pr/prison-architect-gangs.json b/data/game/pr/prison-architect-gangs.json new file mode 100644 index 000000000000..66a7e09e771c --- /dev/null +++ b/data/game/pr/prison-architect-gangs.json @@ -0,0 +1,19 @@ +{ + "slug": "prison-architect-gangs", + "name": "Prison Architect - Gangs", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112206078" + ], + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Double Eleven", + "Introversion Software" + ], + "publishers": [ + "Paradox Interactive" + ] +} diff --git a/data/game/pr/prison-architect-second-chances.json b/data/game/pr/prison-architect-second-chances.json new file mode 100644 index 000000000000..7e8b61ae0ad5 --- /dev/null +++ b/data/game/pr/prison-architect-second-chances.json @@ -0,0 +1,27 @@ +{ + "slug": "prison-architect-second-chances", + "name": "Prison Architect: Second Chances", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107616040" + ], + "release_date": "2021-06-16", + "platforms": [ + "PlayStation 4", + "iOS", + "macOS", + "Microsoft Windows" + ], + "genres": [ + "strategy video game", + "construction and management simulation", + "simulation video game" + ], + "developers": [ + "Double Eleven", + "Introversion Software" + ], + "publishers": [ + "Paradox Interactive" + ] +} diff --git a/data/game/pr/privateer-cd-rom-edition.json b/data/game/pr/privateer-cd-rom-edition.json new file mode 100644 index 000000000000..cf01aad2cbee --- /dev/null +++ b/data/game/pr/privateer-cd-rom-edition.json @@ -0,0 +1,8 @@ +{ + "slug": "privateer-cd-rom-edition", + "name": "Privateer CD-ROM Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126032096" + ] +} diff --git a/data/game/pr/pro-darts-2022-q112230960.json b/data/game/pr/pro-darts-2022-q112230960.json new file mode 100644 index 000000000000..063cf95df353 --- /dev/null +++ b/data/game/pr/pro-darts-2022-q112230960.json @@ -0,0 +1,20 @@ +{ + "slug": "pro-darts-2022-q112230960", + "name": "Pro Darts 2022+", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112230960" + ], + "release_date": "2022-05-27", + "platforms": [ + "iPadOS", + "iOS", + "macOS" + ], + "genres": [ + "darts video game" + ], + "developers": [ + "iWare Designs" + ] +} diff --git a/data/game/pr/pro-evolution-soccer-2014-blue-samurai-challenge-demo-version.json b/data/game/pr/pro-evolution-soccer-2014-blue-samurai-challenge-demo-version.json new file mode 100644 index 000000000000..06bcea99cf10 --- /dev/null +++ b/data/game/pr/pro-evolution-soccer-2014-blue-samurai-challenge-demo-version.json @@ -0,0 +1,9 @@ +{ + "slug": "pro-evolution-soccer-2014-blue-samurai-challenge-demo-version", + "name": "Pro Evolution Soccer 2014 (Blue Samurai Challenge) Demo Version", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q87831119" + ], + "release_date": "2014-04-24" +} diff --git a/data/game/pr/pro-evolution-soccer-2016-myclub-edition.json b/data/game/pr/pro-evolution-soccer-2016-myclub-edition.json new file mode 100644 index 000000000000..96c6746414d2 --- /dev/null +++ b/data/game/pr/pro-evolution-soccer-2016-myclub-edition.json @@ -0,0 +1,9 @@ +{ + "slug": "pro-evolution-soccer-2016-myclub-edition", + "name": "Pro Evolution Soccer 2016 (myClub edition)", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q87410948" + ], + "release_date": "2015-12-08" +} diff --git a/data/game/pr/pro-evolution-soccer-2018-demo.json b/data/game/pr/pro-evolution-soccer-2018-demo.json new file mode 100644 index 000000000000..0bd52576d98e --- /dev/null +++ b/data/game/pr/pro-evolution-soccer-2018-demo.json @@ -0,0 +1,9 @@ +{ + "slug": "pro-evolution-soccer-2018-demo", + "name": "Pro Evolution Soccer 2018 Demo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q87410735" + ], + "release_date": "2017-08-30" +} diff --git a/data/game/pr/pro-snooker-pool-2022-q112231211.json b/data/game/pr/pro-snooker-pool-2022-q112231211.json new file mode 100644 index 000000000000..81088f3b2148 --- /dev/null +++ b/data/game/pr/pro-snooker-pool-2022-q112231211.json @@ -0,0 +1,23 @@ +{ + "slug": "pro-snooker-pool-2022-q112231211", + "name": "Pro Snooker & Pool 2022+", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112231211" + ], + "release_date": "2022-04-15", + "platforms": [ + "tvOS", + "iOS", + "macOS" + ], + "genres": [ + "cue sports video game" + ], + "developers": [ + "iWare Designs" + ], + "publishers": [ + "iWare Designs" + ] +} diff --git a/data/game/pr/project-basement-dating-demo.json b/data/game/pr/project-basement-dating-demo.json new file mode 100644 index 000000000000..4705e197e126 --- /dev/null +++ b/data/game/pr/project-basement-dating-demo.json @@ -0,0 +1,8 @@ +{ + "slug": "project-basement-dating-demo", + "name": "Project_Basement_Dating: DEMO", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131619255" + ] +} diff --git a/data/game/pr/project-black-sun.json b/data/game/pr/project-black-sun.json new file mode 100644 index 000000000000..dea2df201c6a --- /dev/null +++ b/data/game/pr/project-black-sun.json @@ -0,0 +1,8 @@ +{ + "slug": "project-black-sun", + "name": "Project Black Sun", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140471208" + ] +} diff --git a/data/game/pr/project-copernicus.json b/data/game/pr/project-copernicus.json new file mode 100644 index 000000000000..6ac1571dac58 --- /dev/null +++ b/data/game/pr/project-copernicus.json @@ -0,0 +1,17 @@ +{ + "slug": "project-copernicus", + "name": "Project Copernicus", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116946903" + ], + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "massively multiplayer online role-playing game" + ], + "developers": [ + "38 Studios" + ] +} diff --git a/data/game/pr/project-gotham-racing-5.json b/data/game/pr/project-gotham-racing-5.json new file mode 100644 index 000000000000..d7fb9e945df9 --- /dev/null +++ b/data/game/pr/project-gotham-racing-5.json @@ -0,0 +1,8 @@ +{ + "slug": "project-gotham-racing-5", + "name": "Project Gotham Racing 5", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107359018" + ] +} diff --git a/data/game/pr/project-highrise-las-vegas.json b/data/game/pr/project-highrise-las-vegas.json new file mode 100644 index 000000000000..07034f4fa563 --- /dev/null +++ b/data/game/pr/project-highrise-las-vegas.json @@ -0,0 +1,8 @@ +{ + "slug": "project-highrise-las-vegas", + "name": "Project Highrise: Las Vegas", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q104156910" + ] +} diff --git a/data/game/pr/project-highrise-miami-malls.json b/data/game/pr/project-highrise-miami-malls.json new file mode 100644 index 000000000000..d580cb76a46c --- /dev/null +++ b/data/game/pr/project-highrise-miami-malls.json @@ -0,0 +1,13 @@ +{ + "slug": "project-highrise-miami-malls", + "name": "Project Highrise: Miami Malls", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122307043" + ], + "release_date": "2017-07-13", + "platforms": [ + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/game/pr/project-kv.json b/data/game/pr/project-kv.json new file mode 100644 index 000000000000..bd02691b9d69 --- /dev/null +++ b/data/game/pr/project-kv.json @@ -0,0 +1,11 @@ +{ + "slug": "project-kv", + "name": "Project KV", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136555897" + ], + "developers": [ + "Dynamis One" + ] +} diff --git a/data/game/pr/project-lazarus-q127272613.json b/data/game/pr/project-lazarus-q127272613.json new file mode 100644 index 000000000000..5bea8066ce8e --- /dev/null +++ b/data/game/pr/project-lazarus-q127272613.json @@ -0,0 +1,8 @@ +{ + "slug": "project-lazarus-q127272613", + "name": "Project Lazarus", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127272613" + ] +} diff --git a/data/game/pr/project-milo.json b/data/game/pr/project-milo.json new file mode 100644 index 000000000000..d94cb719df42 --- /dev/null +++ b/data/game/pr/project-milo.json @@ -0,0 +1,11 @@ +{ + "slug": "project-milo", + "name": "Project Milo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3314412" + ], + "developers": [ + "Lionhead Studios" + ] +} diff --git a/data/game/pr/project-socjus.json b/data/game/pr/project-socjus.json new file mode 100644 index 000000000000..8c96284cc72c --- /dev/null +++ b/data/game/pr/project-socjus.json @@ -0,0 +1,21 @@ +{ + "slug": "project-socjus", + "name": "Project SocJus", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107289449" + ], + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "platformer", + "side-scrolling video game" + ], + "developers": [ + "Anomalous Games" + ], + "publishers": [ + "Anomalous Games" + ] +} diff --git a/data/game/pr/propagation-vr-co-op.json b/data/game/pr/propagation-vr-co-op.json new file mode 100644 index 000000000000..857335e029c7 --- /dev/null +++ b/data/game/pr/propagation-vr-co-op.json @@ -0,0 +1,12 @@ +{ + "slug": "propagation-vr-co-op", + "name": "Propagation VR - Co-op", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q114946328" + ], + "release_date": "2021-02-05", + "platforms": [ + "Microsoft Windows" + ] +} diff --git a/data/game/pr/prune-q111516726.json b/data/game/pr/prune-q111516726.json new file mode 100644 index 000000000000..f35d5ce14e87 --- /dev/null +++ b/data/game/pr/prune-q111516726.json @@ -0,0 +1,13 @@ +{ + "slug": "prune-q111516726", + "name": "Prune+", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111516726" + ], + "release_date": "2022-04-29", + "platforms": [ + "iPadOS", + "iOS" + ] +} diff --git a/data/game/ps/ps3-pong.json b/data/game/ps/ps3-pong.json new file mode 100644 index 000000000000..ffb7eeef6b98 --- /dev/null +++ b/data/game/ps/ps3-pong.json @@ -0,0 +1,21 @@ +{ + "slug": "ps3-pong", + "name": "PS3 Pong", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124044206" + ], + "release_date": "2010-09-16", + "platforms": [ + "PlayStation 3" + ], + "genres": [ + "table tennis video game" + ], + "developers": [ + "Lachrymose" + ], + "publishers": [ + "Lachrymose" + ] +} diff --git a/data/game/ps/psdoom.json b/data/game/ps/psdoom.json new file mode 100644 index 000000000000..3942119452a6 --- /dev/null +++ b/data/game/ps/psdoom.json @@ -0,0 +1,11 @@ +{ + "slug": "psdoom", + "name": "psDooM", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124452754" + ], + "developers": [ + "Dennis L Chao" + ] +} diff --git a/data/game/ps/psx-doom.json b/data/game/ps/psx-doom.json new file mode 100644 index 000000000000..e8873e88b389 --- /dev/null +++ b/data/game/ps/psx-doom.json @@ -0,0 +1,8 @@ +{ + "slug": "psx-doom", + "name": "PSX Doom", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120689588" + ] +} diff --git a/data/game/ps/psychic-hearts.json b/data/game/ps/psychic-hearts.json new file mode 100644 index 000000000000..67aa7759fe9c --- /dev/null +++ b/data/game/ps/psychic-hearts.json @@ -0,0 +1,8 @@ +{ + "slug": "psychic-hearts", + "name": "Psychic Hearts", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11304020" + ] +} diff --git a/data/game/ps/psydoom.json b/data/game/ps/psydoom.json new file mode 100644 index 000000000000..672096f7a158 --- /dev/null +++ b/data/game/ps/psydoom.json @@ -0,0 +1,11 @@ +{ + "slug": "psydoom", + "name": "PsyDoom", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120686618" + ], + "platforms": [ + "personal computer" + ] +} diff --git a/data/game/pu/purple-ops-pack.json b/data/game/pu/purple-ops-pack.json new file mode 100644 index 000000000000..320099c004ef --- /dev/null +++ b/data/game/pu/purple-ops-pack.json @@ -0,0 +1,12 @@ +{ + "slug": "purple-ops-pack", + "name": "Purple Ops Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60722400" + ], + "release_date": "2012-06-20", + "platforms": [ + "PlayStation 3" + ] +} diff --git a/data/game/pu/puss-in-book-trapped-in-an-epic-tale.json b/data/game/pu/puss-in-book-trapped-in-an-epic-tale.json new file mode 100644 index 000000000000..7ea25b5ca943 --- /dev/null +++ b/data/game/pu/puss-in-book-trapped-in-an-epic-tale.json @@ -0,0 +1,12 @@ +{ + "slug": "puss-in-book-trapped-in-an-epic-tale", + "name": "Puss in Book: Trapped in an Epic Tale", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q52508891" + ], + "release_date": "2017-06-20", + "genres": [ + "full motion video" + ] +} diff --git a/data/game/py/pyrene-demo.json b/data/game/py/pyrene-demo.json new file mode 100644 index 000000000000..8b6b0b7f7a03 --- /dev/null +++ b/data/game/py/pyrene-demo.json @@ -0,0 +1,24 @@ +{ + "slug": "pyrene-demo", + "name": "Pyrene Demo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125471595" + ], + "release_date": "2024-01-29", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "strategy video game", + "dungeon crawl", + "roguelike deck-building game" + ], + "developers": [ + "Two Tiny Dice" + ], + "publishers": [ + "Indie Asylum" + ] +} diff --git a/data/game/q-/q-zandronum.json b/data/game/q-/q-zandronum.json new file mode 100644 index 000000000000..27ade1996bac --- /dev/null +++ b/data/game/q-/q-zandronum.json @@ -0,0 +1,8 @@ +{ + "slug": "q-zandronum", + "name": "Q-Zandronum", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124452038" + ] +} diff --git a/data/game/q2/q2pro.json b/data/game/q2/q2pro.json new file mode 100644 index 000000000000..d6a9add05e63 --- /dev/null +++ b/data/game/q2/q2pro.json @@ -0,0 +1,8 @@ +{ + "slug": "q2pro", + "name": "Q2Pro", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122193603" + ] +} diff --git a/data/game/qq/qq-pet-fight.json b/data/game/qq/qq-pet-fight.json new file mode 100644 index 000000000000..4b3591d95baf --- /dev/null +++ b/data/game/qq/qq-pet-fight.json @@ -0,0 +1,12 @@ +{ + "slug": "qq-pet-fight", + "name": "QQ Pet Fight", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q48905139" + ], + "release_date": "2010-01-01", + "publishers": [ + "Tencent" + ] +} diff --git a/data/game/qu/quake-4-special-dvd-edition.json b/data/game/qu/quake-4-special-dvd-edition.json new file mode 100644 index 000000000000..1a7fe90c274f --- /dev/null +++ b/data/game/qu/quake-4-special-dvd-edition.json @@ -0,0 +1,18 @@ +{ + "slug": "quake-4-special-dvd-edition", + "name": "Quake 4: Special DVD Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q101086895" + ], + "release_date": "2005-09-13", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter" + ], + "publishers": [ + "Activision" + ] +} diff --git a/data/game/qu/quake-ii-ground-zero.json b/data/game/qu/quake-ii-ground-zero.json new file mode 100644 index 000000000000..63230c7d5d1e --- /dev/null +++ b/data/game/qu/quake-ii-ground-zero.json @@ -0,0 +1,21 @@ +{ + "slug": "quake-ii-ground-zero", + "name": "Quake II: Ground Zero", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2429827" + ], + "release_date": "1998-08-31", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter" + ], + "developers": [ + "Rogue Entertainment" + ], + "publishers": [ + "Activision" + ] +} diff --git a/data/game/qu/quake-ii-rtx.json b/data/game/qu/quake-ii-rtx.json new file mode 100644 index 000000000000..c1f4435d397d --- /dev/null +++ b/data/game/qu/quake-ii-rtx.json @@ -0,0 +1,21 @@ +{ + "slug": "quake-ii-rtx", + "name": "Quake II RTX", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108025640" + ], + "release_date": "2019-06-06", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter" + ], + "developers": [ + "NVIDIA Lightspeed Studios" + ], + "publishers": [ + "Nvidia" + ] +} diff --git a/data/game/qu/quake-ii-the-reckoning.json b/data/game/qu/quake-ii-the-reckoning.json new file mode 100644 index 000000000000..a3a8bd6dbed8 --- /dev/null +++ b/data/game/qu/quake-ii-the-reckoning.json @@ -0,0 +1,18 @@ +{ + "slug": "quake-ii-the-reckoning", + "name": "Quake II: The Reckoning", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4047753" + ], + "release_date": "1998-05-30", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter" + ], + "publishers": [ + "Activision" + ] +} diff --git a/data/game/qu/quake-mission-pack-1-scourge-of-armagon.json b/data/game/qu/quake-mission-pack-1-scourge-of-armagon.json new file mode 100644 index 000000000000..182c28ca6664 --- /dev/null +++ b/data/game/qu/quake-mission-pack-1-scourge-of-armagon.json @@ -0,0 +1,18 @@ +{ + "slug": "quake-mission-pack-1-scourge-of-armagon", + "name": "Quake Mission Pack 1: Scourge of Armagon", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4047751" + ], + "release_date": "1997-01-01", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter" + ], + "publishers": [ + "Activision" + ] +} diff --git a/data/game/qu/quake-mission-pack-2-dissolution-of-eternity.json b/data/game/qu/quake-mission-pack-2-dissolution-of-eternity.json new file mode 100644 index 000000000000..62de3bd3608e --- /dev/null +++ b/data/game/qu/quake-mission-pack-2-dissolution-of-eternity.json @@ -0,0 +1,21 @@ +{ + "slug": "quake-mission-pack-2-dissolution-of-eternity", + "name": "Quake Mission Pack 2: Dissolution of Eternity", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4047747" + ], + "release_date": "1997-01-01", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter" + ], + "developers": [ + "Rogue Entertainment" + ], + "publishers": [ + "Activision" + ] +} diff --git a/data/game/qu/quake-the-fight-for-justice.json b/data/game/qu/quake-the-fight-for-justice.json new file mode 100644 index 000000000000..e50281955c6f --- /dev/null +++ b/data/game/qu/quake-the-fight-for-justice.json @@ -0,0 +1,14 @@ +{ + "slug": "quake-the-fight-for-justice", + "name": "Quake: The Fight for Justice", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115755080" + ], + "genres": [ + "role-playing video game" + ], + "developers": [ + "id Software" + ] +} diff --git a/data/game/qu/quakecon-2020-bundle.json b/data/game/qu/quakecon-2020-bundle.json new file mode 100644 index 000000000000..c3e8f84c7b33 --- /dev/null +++ b/data/game/qu/quakecon-2020-bundle.json @@ -0,0 +1,12 @@ +{ + "slug": "quakecon-2020-bundle", + "name": "Quakecon 2020 Bundle", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q104774702" + ], + "release_date": "2020-08-04", + "platforms": [ + "Microsoft Windows" + ] +} diff --git a/data/game/qu/quakespasm.json b/data/game/qu/quakespasm.json new file mode 100644 index 000000000000..6b1713a015db --- /dev/null +++ b/data/game/qu/quakespasm.json @@ -0,0 +1,8 @@ +{ + "slug": "quakespasm", + "name": "QuakeSpasm", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120671224" + ] +} diff --git a/data/game/qu/qubyte-classics-thunderbolt-collection-by-piko.json b/data/game/qu/qubyte-classics-thunderbolt-collection-by-piko.json new file mode 100644 index 000000000000..d81c6f6d3d68 --- /dev/null +++ b/data/game/qu/qubyte-classics-thunderbolt-collection-by-piko.json @@ -0,0 +1,19 @@ +{ + "slug": "qubyte-classics-thunderbolt-collection-by-piko", + "name": "QUByte Classics: Thunderbolt Collection by PIKO", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115471722" + ], + "release_date": "2022-08-04", + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 4" + ], + "developers": [ + "Piko Interactive" + ], + "publishers": [ + "QUByte Interactive" + ] +} diff --git a/data/game/qu/qubyte-classics-zero-tolerance-collection-by-piko.json b/data/game/qu/qubyte-classics-zero-tolerance-collection-by-piko.json new file mode 100644 index 000000000000..38c0616808fd --- /dev/null +++ b/data/game/qu/qubyte-classics-zero-tolerance-collection-by-piko.json @@ -0,0 +1,18 @@ +{ + "slug": "qubyte-classics-zero-tolerance-collection-by-piko", + "name": "QUByte Classics: Zero Tolerance Collection by PIKO", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113967929" + ], + "release_date": "2022-07-07", + "platforms": [ + "Xbox Series X and Series S" + ], + "developers": [ + "Piko Interactive" + ], + "publishers": [ + "QUByte Interactive" + ] +} diff --git a/data/game/qu/queen-s-blood.json b/data/game/qu/queen-s-blood.json new file mode 100644 index 000000000000..5e88061041a4 --- /dev/null +++ b/data/game/qu/queen-s-blood.json @@ -0,0 +1,8 @@ +{ + "slug": "queen-s-blood", + "name": "Queen's Blood", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136653358" + ] +} diff --git a/data/game/qu/queer-games-bundle-2.json b/data/game/qu/queer-games-bundle-2.json new file mode 100644 index 000000000000..de528b8905fa --- /dev/null +++ b/data/game/qu/queer-games-bundle-2.json @@ -0,0 +1,8 @@ +{ + "slug": "queer-games-bundle-2", + "name": "Queer Games Bundle 2", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q90438175" + ] +} diff --git a/data/game/qu/queer-games-bundle.json b/data/game/qu/queer-games-bundle.json new file mode 100644 index 000000000000..bead014787b1 --- /dev/null +++ b/data/game/qu/queer-games-bundle.json @@ -0,0 +1,12 @@ +{ + "slug": "queer-games-bundle", + "name": "Queer Games Bundle", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q90437164" + ], + "release_date": "2018-08-09", + "platforms": [ + "Microsoft Windows" + ] +} diff --git a/data/game/qu/quest-for-glory-1-5.json b/data/game/qu/quest-for-glory-1-5.json new file mode 100644 index 000000000000..f61d2d00dae9 --- /dev/null +++ b/data/game/qu/quest-for-glory-1-5.json @@ -0,0 +1,18 @@ +{ + "slug": "quest-for-glory-1-5", + "name": "Quest for Glory 1-5", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q114692072" + ], + "release_date": "1989-10-01", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Sierra Entertainment" + ], + "publishers": [ + "Activision" + ] +} diff --git a/data/game/qu/quickdraw-q16267682.json b/data/game/qu/quickdraw-q16267682.json new file mode 100644 index 000000000000..d79f80a1f4af --- /dev/null +++ b/data/game/qu/quickdraw-q16267682.json @@ -0,0 +1,11 @@ +{ + "slug": "quickdraw-q16267682", + "name": "QuickDraw", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16267682" + ], + "platforms": [ + "PlayStation 4" + ] +} diff --git a/data/game/qu/quiet-christmas-demo.json b/data/game/qu/quiet-christmas-demo.json new file mode 100644 index 000000000000..c85d3714181b --- /dev/null +++ b/data/game/qu/quiet-christmas-demo.json @@ -0,0 +1,14 @@ +{ + "slug": "quiet-christmas-demo", + "name": "Quiet Christmas (Demo)", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125877616" + ], + "developers": [ + "Nostatic Software" + ], + "publishers": [ + "Nostatic Software" + ] +} diff --git a/data/game/qu/quiet-please-demo.json b/data/game/qu/quiet-please-demo.json new file mode 100644 index 000000000000..807f993be900 --- /dev/null +++ b/data/game/qu/quiet-please-demo.json @@ -0,0 +1,14 @@ +{ + "slug": "quiet-please-demo", + "name": "Quiet, Please! (Demo)", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125877541" + ], + "developers": [ + "Nostatic Software" + ], + "publishers": [ + "Nostatic Software" + ] +} diff --git a/data/game/qu/quiz-channel-question.json b/data/game/qu/quiz-channel-question.json new file mode 100644 index 000000000000..eff1bf6c2090 --- /dev/null +++ b/data/game/qu/quiz-channel-question.json @@ -0,0 +1,12 @@ +{ + "slug": "quiz-channel-question", + "name": "Quiz Channel Question", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111244779" + ], + "release_date": "1993-01-01", + "genres": [ + "quiz show" + ] +} diff --git a/data/game/r-/r-type-dx.json b/data/game/r-/r-type-dx.json new file mode 100644 index 000000000000..9f7102520843 --- /dev/null +++ b/data/game/r-/r-type-dx.json @@ -0,0 +1,11 @@ +{ + "slug": "r-type-dx", + "name": "R-Type DX", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110662911" + ], + "platforms": [ + "Game Boy Color" + ] +} diff --git a/data/game/ra/raccoin-coin-pusher-roguelike.json b/data/game/ra/raccoin-coin-pusher-roguelike.json new file mode 100644 index 000000000000..ade666d8265a --- /dev/null +++ b/data/game/ra/raccoin-coin-pusher-roguelike.json @@ -0,0 +1,18 @@ +{ + "slug": "raccoin-coin-pusher-roguelike", + "name": "RACCOIN: Coin Pusher Roguelike", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140477817" + ], + "release_date": "2026-03-31", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "roguelike deck-building game" + ], + "publishers": [ + "Playstack" + ] +} diff --git a/data/game/ra/racing-madness.json b/data/game/ra/racing-madness.json new file mode 100644 index 000000000000..2e36a268b653 --- /dev/null +++ b/data/game/ra/racing-madness.json @@ -0,0 +1,8 @@ +{ + "slug": "racing-madness", + "name": "Racing Madness", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q102250817" + ] +} diff --git a/data/game/ra/rag-doll-kung-fu-demo.json b/data/game/ra/rag-doll-kung-fu-demo.json new file mode 100644 index 000000000000..09adc005287b --- /dev/null +++ b/data/game/ra/rag-doll-kung-fu-demo.json @@ -0,0 +1,21 @@ +{ + "slug": "rag-doll-kung-fu-demo", + "name": "Rag Doll Kung Fu Demo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122704142" + ], + "release_date": "2005-10-12", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "fighting game" + ], + "developers": [ + "Mark Healey" + ], + "publishers": [ + "Mark Healey" + ] +} diff --git a/data/game/ra/raiden-ii-q24159643.json b/data/game/ra/raiden-ii-q24159643.json new file mode 100644 index 000000000000..6eee3b86c491 --- /dev/null +++ b/data/game/ra/raiden-ii-q24159643.json @@ -0,0 +1,8 @@ +{ + "slug": "raiden-ii-q24159643", + "name": "Raiden II", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q24159643" + ] +} diff --git a/data/game/ra/raiden-iii-x-mikado-maniax-q121125866.json b/data/game/ra/raiden-iii-x-mikado-maniax-q121125866.json new file mode 100644 index 000000000000..d817f8e62450 --- /dev/null +++ b/data/game/ra/raiden-iii-x-mikado-maniax-q121125866.json @@ -0,0 +1,20 @@ +{ + "slug": "raiden-iii-x-mikado-maniax-q121125866", + "name": "Raiden III x Mikado Maniax", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121125866" + ], + "release_date": "2023-02-23", + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 4", + "PlayStation 5" + ], + "developers": [ + "MOSS" + ], + "publishers": [ + "NIS America" + ] +} diff --git a/data/game/ra/raiders-of-the-lost-ark-q135273090.json b/data/game/ra/raiders-of-the-lost-ark-q135273090.json new file mode 100644 index 000000000000..8a1d9d08cbe6 --- /dev/null +++ b/data/game/ra/raiders-of-the-lost-ark-q135273090.json @@ -0,0 +1,14 @@ +{ + "slug": "raiders-of-the-lost-ark-q135273090", + "name": "Raiders of the Lost Ark", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135273090" + ], + "genres": [ + "point-and-click adventure" + ], + "developers": [ + "Lucasfan Games" + ] +} diff --git a/data/game/ra/railroad-tycoon-ii-gold-edition-q123244367.json b/data/game/ra/railroad-tycoon-ii-gold-edition-q123244367.json new file mode 100644 index 000000000000..415b855bcc21 --- /dev/null +++ b/data/game/ra/railroad-tycoon-ii-gold-edition-q123244367.json @@ -0,0 +1,8 @@ +{ + "slug": "railroad-tycoon-ii-gold-edition-q123244367", + "name": "Railroad Tycoon II: Gold Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123244367" + ] +} diff --git a/data/game/ra/railroad-tycoon-ii-gold-edition.json b/data/game/ra/railroad-tycoon-ii-gold-edition.json new file mode 100644 index 000000000000..691d9cbab34b --- /dev/null +++ b/data/game/ra/railroad-tycoon-ii-gold-edition.json @@ -0,0 +1,11 @@ +{ + "slug": "railroad-tycoon-ii-gold-edition", + "name": "Railroad Tycoon II: Gold Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123244363" + ], + "platforms": [ + "Classic Mac OS" + ] +} diff --git a/data/game/ra/railroad-tycoon-ii-platinum.json b/data/game/ra/railroad-tycoon-ii-platinum.json new file mode 100644 index 000000000000..d2e7087699a0 --- /dev/null +++ b/data/game/ra/railroad-tycoon-ii-platinum.json @@ -0,0 +1,8 @@ +{ + "slug": "railroad-tycoon-ii-platinum", + "name": "Railroad Tycoon II Platinum", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123244353" + ] +} diff --git a/data/game/ra/railroad-tycoon-ii-the-second-century.json b/data/game/ra/railroad-tycoon-ii-the-second-century.json new file mode 100644 index 000000000000..fa61f8315b02 --- /dev/null +++ b/data/game/ra/railroad-tycoon-ii-the-second-century.json @@ -0,0 +1,8 @@ +{ + "slug": "railroad-tycoon-ii-the-second-century", + "name": "Railroad Tycoon II: The Second Century", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110156710" + ] +} diff --git a/data/game/ra/railway-empire-2-high-voltage.json b/data/game/ra/railway-empire-2-high-voltage.json new file mode 100644 index 000000000000..813384180da0 --- /dev/null +++ b/data/game/ra/railway-empire-2-high-voltage.json @@ -0,0 +1,8 @@ +{ + "slug": "railway-empire-2-high-voltage", + "name": "Railway Empire 2: High Voltage", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140472069" + ] +} diff --git a/data/game/ra/rain-world-downpour.json b/data/game/ra/rain-world-downpour.json new file mode 100644 index 000000000000..3a5cfcf291c2 --- /dev/null +++ b/data/game/ra/rain-world-downpour.json @@ -0,0 +1,12 @@ +{ + "slug": "rain-world-downpour", + "name": "Rain World: Downpour", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116590276" + ], + "release_date": "2023-01-19", + "platforms": [ + "Microsoft Windows" + ] +} diff --git a/data/game/ra/ramming-santa.json b/data/game/ra/ramming-santa.json new file mode 100644 index 000000000000..3a7040605b06 --- /dev/null +++ b/data/game/ra/ramming-santa.json @@ -0,0 +1,21 @@ +{ + "slug": "ramming-santa", + "name": "'ramming Santa", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123289626" + ], + "release_date": "2008-01-06", + "platforms": [ + "Nintendo DS" + ], + "genres": [ + "Christmas video game" + ], + "developers": [ + "Jimmy L" + ], + "publishers": [ + "Jimmy L" + ] +} diff --git a/data/game/ra/rampage-q56275027.json b/data/game/ra/rampage-q56275027.json new file mode 100644 index 000000000000..ca5715db0ef0 --- /dev/null +++ b/data/game/ra/rampage-q56275027.json @@ -0,0 +1,9 @@ +{ + "slug": "rampage-q56275027", + "name": "Rampage", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q56275027" + ], + "release_date": "2018-01-01" +} diff --git a/data/game/ra/ratchet-clank-clone-home.json b/data/game/ra/ratchet-clank-clone-home.json new file mode 100644 index 000000000000..9dd254ebc14d --- /dev/null +++ b/data/game/ra/ratchet-clank-clone-home.json @@ -0,0 +1,8 @@ +{ + "slug": "ratchet-clank-clone-home", + "name": "Ratchet & Clank: Clone Home", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3284934" + ] +} diff --git a/data/game/ra/ratchet-clank-collection.json b/data/game/ra/ratchet-clank-collection.json new file mode 100644 index 000000000000..3950bbece88f --- /dev/null +++ b/data/game/ra/ratchet-clank-collection.json @@ -0,0 +1,24 @@ +{ + "slug": "ratchet-clank-collection", + "name": "Ratchet & Clank Collection", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2075684" + ], + "release_date": "2012-06-28", + "platforms": [ + "PlayStation Vita", + "PlayStation 3" + ], + "genres": [ + "platformer" + ], + "developers": [ + "Deck Nine", + "Mass Media Inc.", + "Insomniac Games" + ], + "publishers": [ + "Sony Interactive Entertainment" + ] +} diff --git a/data/game/ra/ratchet-clank-future-a-crack-in-time-ratchet-demo.json b/data/game/ra/ratchet-clank-future-a-crack-in-time-ratchet-demo.json new file mode 100644 index 000000000000..bbcdaf7b3c9d --- /dev/null +++ b/data/game/ra/ratchet-clank-future-a-crack-in-time-ratchet-demo.json @@ -0,0 +1,20 @@ +{ + "slug": "ratchet-clank-future-a-crack-in-time-ratchet-demo", + "name": "Ratchet & Clank Future: A Crack in Time Ratchet (DEMO)", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122905669" + ], + "platforms": [ + "PlayStation 3" + ], + "genres": [ + "platformer" + ], + "developers": [ + "Insomniac Games" + ], + "publishers": [ + "Sony Interactive Entertainment" + ] +} diff --git a/data/game/ra/rayman-adventures-q64170859.json b/data/game/ra/rayman-adventures-q64170859.json new file mode 100644 index 000000000000..0c4aafb2666f --- /dev/null +++ b/data/game/ra/rayman-adventures-q64170859.json @@ -0,0 +1,8 @@ +{ + "slug": "rayman-adventures-q64170859", + "name": "Rayman Adventures", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q64170859" + ] +} diff --git a/data/game/ra/rayman-ducation.json b/data/game/ra/rayman-ducation.json new file mode 100644 index 000000000000..197c48cf66e0 --- /dev/null +++ b/data/game/ra/rayman-ducation.json @@ -0,0 +1,11 @@ +{ + "slug": "rayman-ducation", + "name": "Rayman Éducation", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q64170750" + ], + "platforms": [ + "Nintendo DS" + ] +} diff --git a/data/game/ra/rayman-gold.json b/data/game/ra/rayman-gold.json new file mode 100644 index 000000000000..a97418768b74 --- /dev/null +++ b/data/game/ra/rayman-gold.json @@ -0,0 +1,8 @@ +{ + "slug": "rayman-gold", + "name": "Rayman Gold", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122923412" + ] +} diff --git a/data/game/ra/raze.json b/data/game/ra/raze.json new file mode 100644 index 000000000000..1d6a1e5c09ca --- /dev/null +++ b/data/game/ra/raze.json @@ -0,0 +1,9 @@ +{ + "slug": "raze", + "name": "Raze", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120685811" + ], + "release_date": "2019-11-21" +} diff --git a/data/game/ra/razexr.json b/data/game/ra/razexr.json new file mode 100644 index 000000000000..76b940ec17e6 --- /dev/null +++ b/data/game/ra/razexr.json @@ -0,0 +1,9 @@ +{ + "slug": "razexr", + "name": "RazeXR", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135773241" + ], + "release_date": "2023-09-30" +} diff --git a/data/game/re/re-loaded-carmine.json b/data/game/re/re-loaded-carmine.json new file mode 100644 index 000000000000..8d712230b3be --- /dev/null +++ b/data/game/re/re-loaded-carmine.json @@ -0,0 +1,11 @@ +{ + "slug": "re-loaded-carmine", + "name": "RE:LOADED CARMINE", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139556411" + ], + "genres": [ + "eroge" + ] +} diff --git a/data/game/re/real-sound-2-kiri-no-orgel.json b/data/game/re/real-sound-2-kiri-no-orgel.json new file mode 100644 index 000000000000..f2fec67ad319 --- /dev/null +++ b/data/game/re/real-sound-2-kiri-no-orgel.json @@ -0,0 +1,14 @@ +{ + "slug": "real-sound-2-kiri-no-orgel", + "name": "Real Sound 2: Kiri no Orgel", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113500815" + ], + "developers": [ + "WARP" + ], + "publishers": [ + "WARP" + ] +} diff --git a/data/game/re/real-war-rogue-states.json b/data/game/re/real-war-rogue-states.json new file mode 100644 index 000000000000..c9ac97f645e5 --- /dev/null +++ b/data/game/re/real-war-rogue-states.json @@ -0,0 +1,11 @@ +{ + "slug": "real-war-rogue-states", + "name": "Real War: Rogue States", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125768562" + ], + "genres": [ + "real-time strategy" + ] +} diff --git a/data/game/re/really-bad-chess-q107357074.json b/data/game/re/really-bad-chess-q107357074.json new file mode 100644 index 000000000000..922959831ce4 --- /dev/null +++ b/data/game/re/really-bad-chess-q107357074.json @@ -0,0 +1,19 @@ +{ + "slug": "really-bad-chess-q107357074", + "name": "Really Bad Chess", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107357074" + ], + "release_date": "2021-04-02", + "platforms": [ + "iPadOS", + "iOS" + ], + "genres": [ + "chess video game" + ], + "developers": [ + "Zach Gage" + ] +} diff --git a/data/game/re/realms-of-arkania-blade-of-destiny-for-the-gods.json b/data/game/re/realms-of-arkania-blade-of-destiny-for-the-gods.json new file mode 100644 index 000000000000..4466c07a2ddb --- /dev/null +++ b/data/game/re/realms-of-arkania-blade-of-destiny-for-the-gods.json @@ -0,0 +1,8 @@ +{ + "slug": "realms-of-arkania-blade-of-destiny-for-the-gods", + "name": "Realms of Arkania: Blade of Destiny - For the Gods", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118255690" + ] +} diff --git a/data/game/re/reckoning.json b/data/game/re/reckoning.json new file mode 100644 index 000000000000..4c49326bd244 --- /dev/null +++ b/data/game/re/reckoning.json @@ -0,0 +1,9 @@ +{ + "slug": "reckoning", + "name": "Reckoning", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q57973882" + ], + "release_date": "2017-01-26" +} diff --git a/data/game/re/red-baron-mission-builder.json b/data/game/re/red-baron-mission-builder.json new file mode 100644 index 000000000000..05891bcc0cea --- /dev/null +++ b/data/game/re/red-baron-mission-builder.json @@ -0,0 +1,8 @@ +{ + "slug": "red-baron-mission-builder", + "name": "Red Baron: Mission Builder", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134293700" + ] +} diff --git a/data/game/re/red-baron-pack.json b/data/game/re/red-baron-pack.json new file mode 100644 index 000000000000..f0085bb9b067 --- /dev/null +++ b/data/game/re/red-baron-pack.json @@ -0,0 +1,8 @@ +{ + "slug": "red-baron-pack", + "name": "Red Baron Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134293639" + ] +} diff --git a/data/game/re/red-baron-with-mission-builder.json b/data/game/re/red-baron-with-mission-builder.json new file mode 100644 index 000000000000..165b14a61c99 --- /dev/null +++ b/data/game/re/red-baron-with-mission-builder.json @@ -0,0 +1,8 @@ +{ + "slug": "red-baron-with-mission-builder", + "name": "Red Baron with Mission Builder", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134293754" + ] +} diff --git a/data/game/re/red-dead-redemption-3.json b/data/game/re/red-dead-redemption-3.json new file mode 100644 index 000000000000..190186951090 --- /dev/null +++ b/data/game/re/red-dead-redemption-3.json @@ -0,0 +1,12 @@ +{ + "slug": "red-dead-redemption-3", + "name": "Red Dead Redemption 3", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138416650" + ], + "genres": [ + "action-adventure game", + "third-person shooter" + ] +} diff --git a/data/game/re/red-faction-collection.json b/data/game/re/red-faction-collection.json new file mode 100644 index 000000000000..e71394d0ee3d --- /dev/null +++ b/data/game/re/red-faction-collection.json @@ -0,0 +1,8 @@ +{ + "slug": "red-faction-collection", + "name": "Red Faction Collection", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140469785" + ] +} diff --git a/data/game/re/red-orchestra-2-rising-storm.json b/data/game/re/red-orchestra-2-rising-storm.json new file mode 100644 index 000000000000..d2d099e67563 --- /dev/null +++ b/data/game/re/red-orchestra-2-rising-storm.json @@ -0,0 +1,8 @@ +{ + "slug": "red-orchestra-2-rising-storm", + "name": "Red Orchestra 2: Rising Storm", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131547061" + ] +} diff --git a/data/game/re/redout-lightspeed-edition.json b/data/game/re/redout-lightspeed-edition.json new file mode 100644 index 000000000000..683f30099c37 --- /dev/null +++ b/data/game/re/redout-lightspeed-edition.json @@ -0,0 +1,12 @@ +{ + "slug": "redout-lightspeed-edition", + "name": "Redout: Lightspeed Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q46998091" + ], + "release_date": "2017-08-31", + "platforms": [ + "PlayStation 4" + ] +} diff --git a/data/game/re/refusion.json b/data/game/re/refusion.json new file mode 100644 index 000000000000..0a7e32b20eeb --- /dev/null +++ b/data/game/re/refusion.json @@ -0,0 +1,14 @@ +{ + "slug": "refusion", + "name": "Refusion", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110817126" + ], + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "real-time strategy" + ] +} diff --git a/data/game/re/reigns-q107357083.json b/data/game/re/reigns-q107357083.json new file mode 100644 index 000000000000..ecacec153c51 --- /dev/null +++ b/data/game/re/reigns-q107357083.json @@ -0,0 +1,19 @@ +{ + "slug": "reigns-q107357083", + "name": "Reigns+", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107357083" + ], + "release_date": "2021-04-02", + "platforms": [ + "iPadOS", + "iOS" + ], + "developers": [ + "Nerial" + ], + "publishers": [ + "Devolver Digital" + ] +} diff --git a/data/game/re/ren-stimpy-happy-happy-joy-joy-collection.json b/data/game/re/ren-stimpy-happy-happy-joy-joy-collection.json new file mode 100644 index 000000000000..41e59fe72f28 --- /dev/null +++ b/data/game/re/ren-stimpy-happy-happy-joy-joy-collection.json @@ -0,0 +1,11 @@ +{ + "slug": "ren-stimpy-happy-happy-joy-joy-collection", + "name": "Ren & Stimpy Happy, Happy, Joy, Joy, Collection", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138453314" + ], + "platforms": [ + "Microsoft Windows" + ] +} diff --git a/data/game/re/rendition-guantanamo.json b/data/game/re/rendition-guantanamo.json new file mode 100644 index 000000000000..8e79d0991e69 --- /dev/null +++ b/data/game/re/rendition-guantanamo.json @@ -0,0 +1,20 @@ +{ + "slug": "rendition-guantanamo", + "name": "Rendition: Guantanamo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7312846" + ], + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "action game" + ], + "developers": [ + "T-Enterprise" + ], + "publishers": [ + "T-Enterprise" + ] +} diff --git a/data/game/re/rescue-simulator-2014.json b/data/game/re/rescue-simulator-2014.json new file mode 100644 index 000000000000..94602d506cb4 --- /dev/null +++ b/data/game/re/rescue-simulator-2014.json @@ -0,0 +1,8 @@ +{ + "slug": "rescue-simulator-2014", + "name": "Rescue Simulator 2014", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140471807" + ] +} diff --git a/data/game/re/resident-evil-2-1-shot-demo.json b/data/game/re/resident-evil-2-1-shot-demo.json new file mode 100644 index 000000000000..8ce5b9317d3b --- /dev/null +++ b/data/game/re/resident-evil-2-1-shot-demo.json @@ -0,0 +1,22 @@ +{ + "slug": "resident-evil-2-1-shot-demo", + "name": "Resident Evil 2: 1-Shot Demo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q61448741" + ], + "release_date": "2019-01-11", + "platforms": [ + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "survival horror" + ], + "developers": [ + "Capcom" + ], + "publishers": [ + "Capcom" + ] +} diff --git a/data/game/re/resident-evil-2-sharefactory-theme.json b/data/game/re/resident-evil-2-sharefactory-theme.json new file mode 100644 index 000000000000..af64768b422a --- /dev/null +++ b/data/game/re/resident-evil-2-sharefactory-theme.json @@ -0,0 +1,12 @@ +{ + "slug": "resident-evil-2-sharefactory-theme", + "name": "Resident Evil 2 SHAREfactory Theme", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q61448975" + ], + "release_date": "2019-01-25", + "platforms": [ + "PlayStation 4" + ] +} diff --git a/data/game/re/resident-evil-5-gold-edition.json b/data/game/re/resident-evil-5-gold-edition.json new file mode 100644 index 000000000000..26f88405c253 --- /dev/null +++ b/data/game/re/resident-evil-5-gold-edition.json @@ -0,0 +1,14 @@ +{ + "slug": "resident-evil-5-gold-edition", + "name": "Resident Evil 5: Gold Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107424254" + ], + "platforms": [ + "PlayStation 3" + ], + "developers": [ + "Capcom" + ] +} diff --git a/data/game/re/resident-evil-7-biohazard-end-of-zoe.json b/data/game/re/resident-evil-7-biohazard-end-of-zoe.json new file mode 100644 index 000000000000..2bda6a3958b7 --- /dev/null +++ b/data/game/re/resident-evil-7-biohazard-end-of-zoe.json @@ -0,0 +1,23 @@ +{ + "slug": "resident-evil-7-biohazard-end-of-zoe", + "name": "Resident Evil 7: Biohazard - End of Zoe", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109656599" + ], + "release_date": "2017-12-12", + "platforms": [ + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "survival horror" + ], + "developers": [ + "Capcom" + ], + "publishers": [ + "Capcom" + ] +} diff --git a/data/game/re/resident-evil-chronicles-hd-collection.json b/data/game/re/resident-evil-chronicles-hd-collection.json new file mode 100644 index 000000000000..1b11b7cafc3e --- /dev/null +++ b/data/game/re/resident-evil-chronicles-hd-collection.json @@ -0,0 +1,8 @@ +{ + "slug": "resident-evil-chronicles-hd-collection", + "name": "Resident Evil Chronicles HD Collection", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107424258" + ] +} diff --git a/data/game/re/resident-evil-director-s-cut-dual-shock.json b/data/game/re/resident-evil-director-s-cut-dual-shock.json new file mode 100644 index 000000000000..e617b8e80884 --- /dev/null +++ b/data/game/re/resident-evil-director-s-cut-dual-shock.json @@ -0,0 +1,9 @@ +{ + "slug": "resident-evil-director-s-cut-dual-shock", + "name": "Resident Evil Director's Cut Dual Shock", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112064673" + ], + "release_date": "1998-08-01" +} diff --git a/data/game/re/resident-evil-director-s-cut.json b/data/game/re/resident-evil-director-s-cut.json new file mode 100644 index 000000000000..cfffdc7af05d --- /dev/null +++ b/data/game/re/resident-evil-director-s-cut.json @@ -0,0 +1,9 @@ +{ + "slug": "resident-evil-director-s-cut", + "name": "Resident Evil: Director's Cut", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112064742" + ], + "release_date": "1997-09-25" +} diff --git a/data/game/re/resident-evil-portable.json b/data/game/re/resident-evil-portable.json new file mode 100644 index 000000000000..e8040d806e73 --- /dev/null +++ b/data/game/re/resident-evil-portable.json @@ -0,0 +1,17 @@ +{ + "slug": "resident-evil-portable", + "name": "Resident Evil Portable", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2623306" + ], + "platforms": [ + "PlayStation Portable" + ], + "genres": [ + "horror video game" + ], + "developers": [ + "Capcom" + ] +} diff --git a/data/game/re/resident-evil-village-shadows-of-rose.json b/data/game/re/resident-evil-village-shadows-of-rose.json new file mode 100644 index 000000000000..b6b2d94ab481 --- /dev/null +++ b/data/game/re/resident-evil-village-shadows-of-rose.json @@ -0,0 +1,25 @@ +{ + "slug": "resident-evil-village-shadows-of-rose", + "name": "Resident Evil Village: Shadows of Rose", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115074341" + ], + "release_date": "2022-10-28", + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 5", + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "survival horror", + "third-person shooter" + ], + "developers": [ + "Capcom" + ], + "publishers": [ + "Capcom" + ] +} diff --git a/data/game/re/resogun-defenders.json b/data/game/re/resogun-defenders.json new file mode 100644 index 000000000000..4a8f00529621 --- /dev/null +++ b/data/game/re/resogun-defenders.json @@ -0,0 +1,8 @@ +{ + "slug": "resogun-defenders", + "name": "Resogun: Defenders", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136522381" + ] +} diff --git a/data/game/re/retro-atari-classics.json b/data/game/re/retro-atari-classics.json new file mode 100644 index 000000000000..76ab15593b7d --- /dev/null +++ b/data/game/re/retro-atari-classics.json @@ -0,0 +1,18 @@ +{ + "slug": "retro-atari-classics", + "name": "Retro Atari Classics", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7316978" + ], + "release_date": "2005-03-11", + "platforms": [ + "Nintendo DS" + ], + "developers": [ + "Atari" + ], + "publishers": [ + "Atari, Inc." + ] +} diff --git a/data/game/re/retro-bowl-q119945560.json b/data/game/re/retro-bowl-q119945560.json new file mode 100644 index 000000000000..96a43e51ddff --- /dev/null +++ b/data/game/re/retro-bowl-q119945560.json @@ -0,0 +1,14 @@ +{ + "slug": "retro-bowl-q119945560", + "name": "Retro Bowl+", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q119945560" + ], + "release_date": "2023-06-23", + "platforms": [ + "iPadOS", + "iOS", + "web browser" + ] +} diff --git a/data/game/re/retro-classics.json b/data/game/re/retro-classics.json new file mode 100644 index 000000000000..da63b6ca2c00 --- /dev/null +++ b/data/game/re/retro-classics.json @@ -0,0 +1,19 @@ +{ + "slug": "retro-classics", + "name": "Retro Classics", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134532029" + ], + "release_date": "2025-05-21", + "platforms": [ + "Xbox Series X and Series S", + "Microsoft Windows" + ], + "developers": [ + "Antstream" + ], + "publishers": [ + "Xbox Game Studios" + ] +} diff --git a/data/game/re/retro-goal-q119881505.json b/data/game/re/retro-goal-q119881505.json new file mode 100644 index 000000000000..944d5174f851 --- /dev/null +++ b/data/game/re/retro-goal-q119881505.json @@ -0,0 +1,13 @@ +{ + "slug": "retro-goal-q119881505", + "name": "Retro Goal+", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q119881505" + ], + "release_date": "2023-06-23", + "platforms": [ + "iPadOS", + "iOS" + ] +} diff --git a/data/game/re/return-fire-maps-o-death.json b/data/game/re/return-fire-maps-o-death.json new file mode 100644 index 000000000000..07e957fe1e23 --- /dev/null +++ b/data/game/re/return-fire-maps-o-death.json @@ -0,0 +1,8 @@ +{ + "slug": "return-fire-maps-o-death", + "name": "Return Fire: Maps o' Death", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122974542" + ] +} diff --git a/data/game/re/revenant-hill.json b/data/game/re/revenant-hill.json new file mode 100644 index 000000000000..74e11081fac5 --- /dev/null +++ b/data/game/re/revenant-hill.json @@ -0,0 +1,19 @@ +{ + "slug": "revenant-hill", + "name": "Revenant Hill", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118645573" + ], + "platforms": [ + "PlayStation 5", + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "adventure video game" + ], + "publishers": [ + "Finji" + ] +} diff --git a/data/game/re/rewrite-harvest-festa-q123553191.json b/data/game/re/rewrite-harvest-festa-q123553191.json new file mode 100644 index 000000000000..f7f1e73527a1 --- /dev/null +++ b/data/game/re/rewrite-harvest-festa-q123553191.json @@ -0,0 +1,24 @@ +{ + "slug": "rewrite-harvest-festa-q123553191", + "name": "Rewrite Harvest festa!", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123553191" + ], + "release_date": "2012-07-27", + "platforms": [ + "PlayStation Vita", + "Microsoft Windows" + ], + "genres": [ + "visual novel", + "bishōjo game" + ], + "developers": [ + "Key" + ], + "publishers": [ + "Prototype", + "Visual Arts" + ] +} diff --git a/data/game/re/rewrite-q123553138.json b/data/game/re/rewrite-q123553138.json new file mode 100644 index 000000000000..284787b235a3 --- /dev/null +++ b/data/game/re/rewrite-q123553138.json @@ -0,0 +1,31 @@ +{ + "slug": "rewrite-q123553138", + "name": "Rewrite", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123553138" + ], + "release_date": "2011-06-24", + "platforms": [ + "PlayStation 4", + "PlayStation Portable", + "PlayStation Vita", + "PlayStation 3", + "Microsoft Windows" + ], + "genres": [ + "visual novel", + "drama anime and manga", + "school anime and manga", + "fantasy anime and manga", + "romance anime and manga" + ], + "developers": [ + "Key" + ], + "publishers": [ + "Prototype", + "Sekai Project", + "Visual Arts" + ] +} diff --git a/data/game/re/rez-infinite-digital-deluxe-dlc.json b/data/game/re/rez-infinite-digital-deluxe-dlc.json new file mode 100644 index 000000000000..49d435b75d98 --- /dev/null +++ b/data/game/re/rez-infinite-digital-deluxe-dlc.json @@ -0,0 +1,19 @@ +{ + "slug": "rez-infinite-digital-deluxe-dlc", + "name": "Rez Infinite Digital Deluxe DLC", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q104158640" + ], + "release_date": "2017-08-09", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Resonair", + "Monstars" + ], + "publishers": [ + "Enhance" + ] +} diff --git a/data/game/ri/rico-s-chiliworks.json b/data/game/ri/rico-s-chiliworks.json new file mode 100644 index 000000000000..770522fbb033 --- /dev/null +++ b/data/game/ri/rico-s-chiliworks.json @@ -0,0 +1,8 @@ +{ + "slug": "rico-s-chiliworks", + "name": "Rico's Chiliworks", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q128014904" + ] +} diff --git a/data/game/ri/riki-8bit-game-collection.json b/data/game/ri/riki-8bit-game-collection.json new file mode 100644 index 000000000000..762d2c9e9e6c --- /dev/null +++ b/data/game/ri/riki-8bit-game-collection.json @@ -0,0 +1,12 @@ +{ + "slug": "riki-8bit-game-collection", + "name": "RIKI 8Bit Game Collection", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q128598319" + ], + "release_date": "2024-11-28", + "publishers": [ + "City Connection" + ] +} diff --git a/data/game/ri/rimworld-anomaly.json b/data/game/ri/rimworld-anomaly.json new file mode 100644 index 000000000000..745475f2783d --- /dev/null +++ b/data/game/ri/rimworld-anomaly.json @@ -0,0 +1,16 @@ +{ + "slug": "rimworld-anomaly", + "name": "RimWorld - Anomaly", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135450604" + ], + "release_date": "2024-04-11", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Ludeon Studios" + ] +} diff --git a/data/game/ri/rimworld-biotech.json b/data/game/ri/rimworld-biotech.json new file mode 100644 index 000000000000..28f9c1e44985 --- /dev/null +++ b/data/game/ri/rimworld-biotech.json @@ -0,0 +1,13 @@ +{ + "slug": "rimworld-biotech", + "name": "RimWorld - Biotech", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q114836832" + ], + "release_date": "2022-10-21", + "platforms": [ + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/game/ri/rimworld-console-edition.json b/data/game/ri/rimworld-console-edition.json new file mode 100644 index 000000000000..7f46b8e0159f --- /dev/null +++ b/data/game/ri/rimworld-console-edition.json @@ -0,0 +1,20 @@ +{ + "slug": "rimworld-console-edition", + "name": "RimWorld Console Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115459708" + ], + "release_date": "2022-07-29", + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 4" + ], + "developers": [ + "Ludeon Studios", + "Double Eleven" + ], + "publishers": [ + "Double Eleven" + ] +} diff --git a/data/game/ri/rimworld-ideology.json b/data/game/ri/rimworld-ideology.json new file mode 100644 index 000000000000..0b0614e55053 --- /dev/null +++ b/data/game/ri/rimworld-ideology.json @@ -0,0 +1,23 @@ +{ + "slug": "rimworld-ideology", + "name": "RimWorld - Ideology", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107600965" + ], + "release_date": "2021-07-20", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "real-time strategy", + "simulation video game" + ], + "developers": [ + "Ludeon Studios" + ], + "publishers": [ + "Ludeon Studios" + ] +} diff --git a/data/game/ri/rimworld-odyssey.json b/data/game/ri/rimworld-odyssey.json new file mode 100644 index 000000000000..8a3c5ed558d4 --- /dev/null +++ b/data/game/ri/rimworld-odyssey.json @@ -0,0 +1,16 @@ +{ + "slug": "rimworld-odyssey", + "name": "RimWorld - Odyssey", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135450345" + ], + "release_date": "2025-07-11", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Ludeon Studios" + ] +} diff --git a/data/game/ri/rimworld-royalty.json b/data/game/ri/rimworld-royalty.json new file mode 100644 index 000000000000..c559504ab73e --- /dev/null +++ b/data/game/ri/rimworld-royalty.json @@ -0,0 +1,23 @@ +{ + "slug": "rimworld-royalty", + "name": "RimWorld - Royalty", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107600852" + ], + "release_date": "2020-02-24", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "real-time strategy", + "simulation video game" + ], + "developers": [ + "Ludeon Studios" + ], + "publishers": [ + "Ludeon Studios" + ] +} diff --git a/data/game/ri/rip-3-the-last-hero-demo.json b/data/game/ri/rip-3-the-last-hero-demo.json new file mode 100644 index 000000000000..ed6666c427ba --- /dev/null +++ b/data/game/ri/rip-3-the-last-hero-demo.json @@ -0,0 +1,21 @@ +{ + "slug": "rip-3-the-last-hero-demo", + "name": "RIP 3 - The Last Hero Demo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122706801" + ], + "release_date": "2007-06-01", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "casual game" + ], + "developers": [ + "Elephant Games" + ], + "publishers": [ + "Meridian4" + ] +} diff --git a/data/game/ri/riptide-gp-renegade-q116719952.json b/data/game/ri/riptide-gp-renegade-q116719952.json new file mode 100644 index 000000000000..b6bcbffdb72c --- /dev/null +++ b/data/game/ri/riptide-gp-renegade-q116719952.json @@ -0,0 +1,14 @@ +{ + "slug": "riptide-gp-renegade-q116719952", + "name": "Riptide GP: Renegade+", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116719952" + ], + "release_date": "2023-02-10", + "platforms": [ + "iPadOS", + "tvOS", + "iOS" + ] +} diff --git a/data/game/ri/rise-of-nations-q116142353.json b/data/game/ri/rise-of-nations-q116142353.json new file mode 100644 index 000000000000..e428a68c8d5d --- /dev/null +++ b/data/game/ri/rise-of-nations-q116142353.json @@ -0,0 +1,20 @@ +{ + "slug": "rise-of-nations-q116142353", + "name": "Rise of Nations", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116142353" + ], + "release_date": "2018-11-14", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "real-time strategy", + "strategy video game" + ], + "developers": [ + "Hyperant" + ] +} diff --git a/data/game/ri/rise-of-nations-thrones-and-patriots.json b/data/game/ri/rise-of-nations-thrones-and-patriots.json new file mode 100644 index 000000000000..ee01c545bfb8 --- /dev/null +++ b/data/game/ri/rise-of-nations-thrones-and-patriots.json @@ -0,0 +1,22 @@ +{ + "slug": "rise-of-nations-thrones-and-patriots", + "name": "Rise of Nations: Thrones and Patriots", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q426566" + ], + "release_date": "2004-04-27", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "real-time strategy" + ], + "developers": [ + "Big Huge Games" + ], + "publishers": [ + "Xbox Game Studios" + ] +} diff --git a/data/game/ri/rise-of-the-prim.json b/data/game/ri/rise-of-the-prim.json new file mode 100644 index 000000000000..436bf732fea8 --- /dev/null +++ b/data/game/ri/rise-of-the-prim.json @@ -0,0 +1,8 @@ +{ + "slug": "rise-of-the-prim", + "name": "Rise of the Prim", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121510709" + ] +} diff --git a/data/game/ri/rise-of-the-teenage-mutant-ninja-turtles-city-showdown.json b/data/game/ri/rise-of-the-teenage-mutant-ninja-turtles-city-showdown.json new file mode 100644 index 000000000000..d4e97179f674 --- /dev/null +++ b/data/game/ri/rise-of-the-teenage-mutant-ninja-turtles-city-showdown.json @@ -0,0 +1,12 @@ +{ + "slug": "rise-of-the-teenage-mutant-ninja-turtles-city-showdown", + "name": "Rise of the Teenage Mutant Ninja Turtles: City Showdown", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q97499033" + ], + "release_date": "2018-07-26", + "platforms": [ + "web browser" + ] +} diff --git a/data/game/ri/rise-of-the-tomb-raider-20-year-celebration.json b/data/game/ri/rise-of-the-tomb-raider-20-year-celebration.json new file mode 100644 index 000000000000..cc7d7ff6ab29 --- /dev/null +++ b/data/game/ri/rise-of-the-tomb-raider-20-year-celebration.json @@ -0,0 +1,23 @@ +{ + "slug": "rise-of-the-tomb-raider-20-year-celebration", + "name": "Rise of the Tomb Raider: 20 Year Celebration", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q92204235" + ], + "release_date": "2016-10-11", + "platforms": [ + "macOS", + "PlayStation 4", + "iOS", + "Microsoft Windows" + ], + "developers": [ + "Eidos Montreal", + "Crystal Dynamics" + ], + "publishers": [ + "Square Enix", + "Feral Interactive" + ] +} diff --git a/data/game/ri/rise-of-the-tomb-raider-blood-ties.json b/data/game/ri/rise-of-the-tomb-raider-blood-ties.json new file mode 100644 index 000000000000..d68ff024fd9e --- /dev/null +++ b/data/game/ri/rise-of-the-tomb-raider-blood-ties.json @@ -0,0 +1,8 @@ +{ + "slug": "rise-of-the-tomb-raider-blood-ties", + "name": "Rise of the Tomb Raider: Blood Ties", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140471232" + ] +} diff --git a/data/game/ri/risen-3-titan-lords-enhanced-edition.json b/data/game/ri/risen-3-titan-lords-enhanced-edition.json new file mode 100644 index 000000000000..e1454b3ed50c --- /dev/null +++ b/data/game/ri/risen-3-titan-lords-enhanced-edition.json @@ -0,0 +1,8 @@ +{ + "slug": "risen-3-titan-lords-enhanced-edition", + "name": "Risen 3: Titan Lords – Enhanced Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107424261" + ] +} diff --git a/data/game/ri/risen3d.json b/data/game/ri/risen3d.json new file mode 100644 index 000000000000..a602fe5fcc65 --- /dev/null +++ b/data/game/ri/risen3d.json @@ -0,0 +1,8 @@ +{ + "slug": "risen3d", + "name": "Risen3D", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q67246989" + ] +} diff --git a/data/game/ri/rising-storm.json b/data/game/ri/rising-storm.json new file mode 100644 index 000000000000..3bdbb389fa4f --- /dev/null +++ b/data/game/ri/rising-storm.json @@ -0,0 +1,21 @@ +{ + "slug": "rising-storm", + "name": "Rising Storm", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7336155" + ], + "release_date": "2013-05-30", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter" + ], + "developers": [ + "Tripwire Interactive" + ], + "publishers": [ + "Tripwire Interactive" + ] +} diff --git a/data/game/ri/risk-of-rain-2-survivors-of-the-void.json b/data/game/ri/risk-of-rain-2-survivors-of-the-void.json new file mode 100644 index 000000000000..28d35874455b --- /dev/null +++ b/data/game/ri/risk-of-rain-2-survivors-of-the-void.json @@ -0,0 +1,12 @@ +{ + "slug": "risk-of-rain-2-survivors-of-the-void", + "name": "Risk of Rain 2: Survivors of the Void", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113175749" + ], + "release_date": "2022-03-01", + "platforms": [ + "Microsoft Windows" + ] +} diff --git a/data/game/ro/rocket-cars-vita.json b/data/game/ro/rocket-cars-vita.json new file mode 100644 index 000000000000..bf8a1a6dfc9b --- /dev/null +++ b/data/game/ro/rocket-cars-vita.json @@ -0,0 +1,21 @@ +{ + "slug": "rocket-cars-vita", + "name": "Rocket Cars Vita", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124053146" + ], + "release_date": "2023-01-01", + "platforms": [ + "PlayStation Vita" + ], + "genres": [ + "association football video game" + ], + "developers": [ + "VitaDev Games" + ], + "publishers": [ + "VitaDev Games" + ] +} diff --git a/data/game/ro/rockman-power-battle-fighters.json b/data/game/ro/rockman-power-battle-fighters.json new file mode 100644 index 000000000000..c733e561b41b --- /dev/null +++ b/data/game/ro/rockman-power-battle-fighters.json @@ -0,0 +1,12 @@ +{ + "slug": "rockman-power-battle-fighters", + "name": "Rockman: Power Battle Fighters", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q47461217" + ], + "release_date": "2004-01-01", + "developers": [ + "Capcom" + ] +} diff --git a/data/game/ro/rocksmith-all-new-2014-edition-cake-never-there.json b/data/game/ro/rocksmith-all-new-2014-edition-cake-never-there.json new file mode 100644 index 000000000000..b9978a481270 --- /dev/null +++ b/data/game/ro/rocksmith-all-new-2014-edition-cake-never-there.json @@ -0,0 +1,18 @@ +{ + "slug": "rocksmith-all-new-2014-edition-cake-never-there", + "name": "Rocksmith: All-new 2014 Edition - Cake: Never There", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q51853649" + ], + "release_date": "2014-05-20", + "platforms": [ + "PlayStation 4", + "macOS", + "PlayStation 3", + "Microsoft Windows" + ], + "developers": [ + "Ubisoft San Francisco" + ] +} diff --git a/data/game/ro/rockymud.json b/data/game/ro/rockymud.json new file mode 100644 index 000000000000..cdc82a174b98 --- /dev/null +++ b/data/game/ro/rockymud.json @@ -0,0 +1,8 @@ +{ + "slug": "rockymud", + "name": "RockyMUD", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121543617" + ] +} diff --git a/data/game/ro/rogue-lords-day-one-edition.json b/data/game/ro/rogue-lords-day-one-edition.json new file mode 100644 index 000000000000..2155a707a64d --- /dev/null +++ b/data/game/ro/rogue-lords-day-one-edition.json @@ -0,0 +1,19 @@ +{ + "slug": "rogue-lords-day-one-edition", + "name": "Rogue Lords Day One Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111906657" + ], + "release_date": "2022-04-28", + "platforms": [ + "Xbox Series X and Series S" + ], + "developers": [ + "Leikir Studio", + "Cyanide" + ], + "publishers": [ + "Nacon" + ] +} diff --git a/data/game/ro/rokh.json b/data/game/ro/rokh.json new file mode 100644 index 000000000000..bfbecf97587b --- /dev/null +++ b/data/game/ro/rokh.json @@ -0,0 +1,16 @@ +{ + "slug": "rokh", + "name": "Rokh", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q24060063" + ], + "release_date": "2017-05-16", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "science fiction video game" + ] +} diff --git a/data/game/ro/roller-coaster-tycoon-deluxe.json b/data/game/ro/roller-coaster-tycoon-deluxe.json new file mode 100644 index 000000000000..777c2ec5d49e --- /dev/null +++ b/data/game/ro/roller-coaster-tycoon-deluxe.json @@ -0,0 +1,8 @@ +{ + "slug": "roller-coaster-tycoon-deluxe", + "name": "Roller Coaster Tycoon Deluxe", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121200762" + ] +} diff --git a/data/game/ro/rollercoaster-tycoon-2-combo-park-pack.json b/data/game/ro/rollercoaster-tycoon-2-combo-park-pack.json new file mode 100644 index 000000000000..4a8588b2ca8d --- /dev/null +++ b/data/game/ro/rollercoaster-tycoon-2-combo-park-pack.json @@ -0,0 +1,8 @@ +{ + "slug": "rollercoaster-tycoon-2-combo-park-pack", + "name": "RollerCoaster Tycoon 2: Combo Park Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127417957" + ] +} diff --git a/data/game/ro/rollercoaster-tycoon-2-time-twister.json b/data/game/ro/rollercoaster-tycoon-2-time-twister.json new file mode 100644 index 000000000000..707185141473 --- /dev/null +++ b/data/game/ro/rollercoaster-tycoon-2-time-twister.json @@ -0,0 +1,8 @@ +{ + "slug": "rollercoaster-tycoon-2-time-twister", + "name": "RollerCoaster Tycoon 2: Time Twister", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q9312094" + ] +} diff --git a/data/game/ro/rollercoaster-tycoon-2-triple-thrill-pack.json b/data/game/ro/rollercoaster-tycoon-2-triple-thrill-pack.json new file mode 100644 index 000000000000..049aa9997c85 --- /dev/null +++ b/data/game/ro/rollercoaster-tycoon-2-triple-thrill-pack.json @@ -0,0 +1,8 @@ +{ + "slug": "rollercoaster-tycoon-2-triple-thrill-pack", + "name": "RollerCoaster Tycoon 2: Triple Thrill Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121201675" + ] +} diff --git a/data/game/ro/rollercoaster-tycoon-2-wacky-worlds.json b/data/game/ro/rollercoaster-tycoon-2-wacky-worlds.json new file mode 100644 index 000000000000..0aa7049d3ce6 --- /dev/null +++ b/data/game/ro/rollercoaster-tycoon-2-wacky-worlds.json @@ -0,0 +1,15 @@ +{ + "slug": "rollercoaster-tycoon-2-wacky-worlds", + "name": "RollerCoaster Tycoon 2: Wacky Worlds", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11835185" + ], + "release_date": "2003-01-18", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ] +} diff --git a/data/game/ro/rollercoaster-tycoon-3-complete-edition.json b/data/game/ro/rollercoaster-tycoon-3-complete-edition.json new file mode 100644 index 000000000000..4b8b8080c380 --- /dev/null +++ b/data/game/ro/rollercoaster-tycoon-3-complete-edition.json @@ -0,0 +1,11 @@ +{ + "slug": "rollercoaster-tycoon-3-complete-edition", + "name": "RollerCoaster Tycoon 3: Complete Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126956530" + ], + "platforms": [ + "Microsoft Windows" + ] +} diff --git a/data/game/ro/rollercoaster-tycoon-3-soaked.json b/data/game/ro/rollercoaster-tycoon-3-soaked.json new file mode 100644 index 000000000000..2b700d83a81c --- /dev/null +++ b/data/game/ro/rollercoaster-tycoon-3-soaked.json @@ -0,0 +1,9 @@ +{ + "slug": "rollercoaster-tycoon-3-soaked", + "name": "RollerCoaster Tycoon 3: Soaked!", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3440436" + ], + "release_date": "2005-01-01" +} diff --git a/data/game/ro/rollercoaster-tycoon-3-wild.json b/data/game/ro/rollercoaster-tycoon-3-wild.json new file mode 100644 index 000000000000..0075b88f3f3a --- /dev/null +++ b/data/game/ro/rollercoaster-tycoon-3-wild.json @@ -0,0 +1,8 @@ +{ + "slug": "rollercoaster-tycoon-3-wild", + "name": "RollerCoaster Tycoon 3: Wild!", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3440435" + ] +} diff --git a/data/game/ro/rollercoaster-tycoon-adventures-deluxe.json b/data/game/ro/rollercoaster-tycoon-adventures-deluxe.json new file mode 100644 index 000000000000..377e94175c5f --- /dev/null +++ b/data/game/ro/rollercoaster-tycoon-adventures-deluxe.json @@ -0,0 +1,11 @@ +{ + "slug": "rollercoaster-tycoon-adventures-deluxe", + "name": "Rollercoaster Tycoon Adventures Deluxe", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140472097" + ], + "platforms": [ + "video game" + ] +} diff --git a/data/game/ro/rollercoaster-tycoon-corkscrew-follies.json b/data/game/ro/rollercoaster-tycoon-corkscrew-follies.json new file mode 100644 index 000000000000..bb39d569168c --- /dev/null +++ b/data/game/ro/rollercoaster-tycoon-corkscrew-follies.json @@ -0,0 +1,8 @@ +{ + "slug": "rollercoaster-tycoon-corkscrew-follies", + "name": "RollerCoaster Tycoon: Corkscrew Follies", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q9312099" + ] +} diff --git a/data/game/ro/rollercoaster-tycoon-gold-edition.json b/data/game/ro/rollercoaster-tycoon-gold-edition.json new file mode 100644 index 000000000000..5bc37bc8007e --- /dev/null +++ b/data/game/ro/rollercoaster-tycoon-gold-edition.json @@ -0,0 +1,8 @@ +{ + "slug": "rollercoaster-tycoon-gold-edition", + "name": "RollerCoaster Tycoon: Gold Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121201093" + ] +} diff --git a/data/game/ro/rollercoaster-tycoon-loopy-landscapes-q136522335.json b/data/game/ro/rollercoaster-tycoon-loopy-landscapes-q136522335.json new file mode 100644 index 000000000000..c39caef3138e --- /dev/null +++ b/data/game/ro/rollercoaster-tycoon-loopy-landscapes-q136522335.json @@ -0,0 +1,20 @@ +{ + "slug": "rollercoaster-tycoon-loopy-landscapes-q136522335", + "name": "RollerCoaster Tycoon: Loopy Landscapes", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136522335" + ], + "release_date": "2000-09-30", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "roguelike", + "business simulation game", + "action role-playing game" + ], + "publishers": [ + "Hasbro Interactive" + ] +} diff --git a/data/game/ro/rollercoaster-tycoon-loopy-landscapes.json b/data/game/ro/rollercoaster-tycoon-loopy-landscapes.json new file mode 100644 index 000000000000..d4b9df7b910c --- /dev/null +++ b/data/game/ro/rollercoaster-tycoon-loopy-landscapes.json @@ -0,0 +1,14 @@ +{ + "slug": "rollercoaster-tycoon-loopy-landscapes", + "name": "RollerCoaster Tycoon: Loopy Landscapes", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11835186" + ], + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ] +} diff --git a/data/game/ro/rolling-sky-collection.json b/data/game/ro/rolling-sky-collection.json new file mode 100644 index 000000000000..e8847011f382 --- /dev/null +++ b/data/game/ro/rolling-sky-collection.json @@ -0,0 +1,16 @@ +{ + "slug": "rolling-sky-collection", + "name": "Rolling Sky Collection", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121555599" + ], + "release_date": "2020-07-03", + "genres": [ + "music video game", + "platformer" + ], + "publishers": [ + "Leoful" + ] +} diff --git a/data/game/ro/romance-detective-2.json b/data/game/ro/romance-detective-2.json new file mode 100644 index 000000000000..faf3654ef319 --- /dev/null +++ b/data/game/ro/romance-detective-2.json @@ -0,0 +1,14 @@ +{ + "slug": "romance-detective-2", + "name": "Romance Detective 2", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q92018004" + ], + "genres": [ + "visual novel" + ], + "developers": [ + "NomnomNami" + ] +} diff --git a/data/game/ro/rome-total-war-alexander.json b/data/game/ro/rome-total-war-alexander.json new file mode 100644 index 000000000000..c038c6b6756c --- /dev/null +++ b/data/game/ro/rome-total-war-alexander.json @@ -0,0 +1,26 @@ +{ + "slug": "rome-total-war-alexander", + "name": "Rome: Total War: Alexander", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q864291" + ], + "release_date": "2006-06-19", + "platforms": [ + "iOS", + "macOS", + "Microsoft Windows" + ], + "genres": [ + "turn-based strategy video game", + "real-time tactics", + "historical video game" + ], + "developers": [ + "Feral Interactive", + "Creative Assembly" + ], + "publishers": [ + "Sega" + ] +} diff --git a/data/game/ro/rome-total-war-barbarian-invasion.json b/data/game/ro/rome-total-war-barbarian-invasion.json new file mode 100644 index 000000000000..a908e175a4f0 --- /dev/null +++ b/data/game/ro/rome-total-war-barbarian-invasion.json @@ -0,0 +1,24 @@ +{ + "slug": "rome-total-war-barbarian-invasion", + "name": "Rome: Total War: Barbarian Invasion", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q268505" + ], + "release_date": "2005-09-27", + "platforms": [ + "iOS", + "macOS", + "Microsoft Windows" + ], + "genres": [ + "turn-based strategy video game", + "real-time tactics" + ], + "developers": [ + "Creative Assembly" + ], + "publishers": [ + "Sega" + ] +} diff --git a/data/game/ro/roommate-complete-box.json b/data/game/ro/roommate-complete-box.json new file mode 100644 index 000000000000..8e729d635386 --- /dev/null +++ b/data/game/ro/roommate-complete-box.json @@ -0,0 +1,9 @@ +{ + "slug": "roommate-complete-box", + "name": "Roommate Complete Box", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1848233" + ], + "release_date": "2000-01-01" +} diff --git a/data/game/ro/rordoom.json b/data/game/ro/rordoom.json new file mode 100644 index 000000000000..4c7335859768 --- /dev/null +++ b/data/game/ro/rordoom.json @@ -0,0 +1,8 @@ +{ + "slug": "rordoom", + "name": "RORDoom", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124654963" + ] +} diff --git a/data/game/ro/rosario-vampire-fvn.json b/data/game/ro/rosario-vampire-fvn.json new file mode 100644 index 000000000000..7427640f098f --- /dev/null +++ b/data/game/ro/rosario-vampire-fvn.json @@ -0,0 +1,21 @@ +{ + "slug": "rosario-vampire-fvn", + "name": "Rosario + Vampire FVN", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q104776444" + ], + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "visual novel" + ], + "developers": [ + "Grato Nite" + ], + "publishers": [ + "Grato Nite" + ] +} diff --git a/data/game/ro/rover-mechanic-simulator-perseverance-rover-dlc.json b/data/game/ro/rover-mechanic-simulator-perseverance-rover-dlc.json new file mode 100644 index 000000000000..10398a1f6b65 --- /dev/null +++ b/data/game/ro/rover-mechanic-simulator-perseverance-rover-dlc.json @@ -0,0 +1,15 @@ +{ + "slug": "rover-mechanic-simulator-perseverance-rover-dlc", + "name": "Rover Mechanic Simulator - Perseverance Rover DLC", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108225319" + ], + "release_date": "2021-02-18", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Pyramid Games" + ] +} diff --git a/data/game/ro/royale-high.json b/data/game/ro/royale-high.json new file mode 100644 index 000000000000..f65d28c8e8ff --- /dev/null +++ b/data/game/ro/royale-high.json @@ -0,0 +1,13 @@ +{ + "slug": "royale-high", + "name": "Royale High", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115715586" + ], + "platforms": [ + "iOS", + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/game/rp/rp2040-doom.json b/data/game/rp/rp2040-doom.json new file mode 100644 index 000000000000..2713e5fc354c --- /dev/null +++ b/data/game/rp/rp2040-doom.json @@ -0,0 +1,11 @@ +{ + "slug": "rp2040-doom", + "name": "RP2040 Doom", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124473397" + ], + "platforms": [ + "RP2040" + ] +} diff --git a/data/game/ru/rugby-union-team-manager-2017-season-2017-18-update.json b/data/game/ru/rugby-union-team-manager-2017-season-2017-18-update.json new file mode 100644 index 000000000000..b42fd7843643 --- /dev/null +++ b/data/game/ru/rugby-union-team-manager-2017-season-2017-18-update.json @@ -0,0 +1,13 @@ +{ + "slug": "rugby-union-team-manager-2017-season-2017-18-update", + "name": "Rugby Union Team Manager 2017: Season 2017/18 Update", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76976304" + ], + "release_date": "2017-10-04", + "platforms": [ + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/game/ru/rugrats-retro-rewind-collection.json b/data/game/ru/rugrats-retro-rewind-collection.json new file mode 100644 index 000000000000..a46baddd201c --- /dev/null +++ b/data/game/ru/rugrats-retro-rewind-collection.json @@ -0,0 +1,11 @@ +{ + "slug": "rugrats-retro-rewind-collection", + "name": "Rugrats: Retro Rewind Collection", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140150839" + ], + "platforms": [ + "Microsoft Windows" + ] +} diff --git a/data/game/ru/runemaster.json b/data/game/ru/runemaster.json new file mode 100644 index 000000000000..4ad668f2301c --- /dev/null +++ b/data/game/ru/runemaster.json @@ -0,0 +1,21 @@ +{ + "slug": "runemaster", + "name": "Runemaster", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q15957634" + ], + "platforms": [ + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "role-playing video game" + ], + "developers": [ + "Development Studio" + ], + "publishers": [ + "Paradox Interactive" + ] +} diff --git a/data/game/ru/runner2-good-friends-character-pack.json b/data/game/ru/runner2-good-friends-character-pack.json new file mode 100644 index 000000000000..6f1ab662e0e7 --- /dev/null +++ b/data/game/ru/runner2-good-friends-character-pack.json @@ -0,0 +1,13 @@ +{ + "slug": "runner2-good-friends-character-pack", + "name": "Runner2 - Good Friends Character Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131618651" + ], + "release_date": "2013-07-11", + "platforms": [ + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/game/ru/rush-for-berlin-rush-for-the-bomb.json b/data/game/ru/rush-for-berlin-rush-for-the-bomb.json new file mode 100644 index 000000000000..7a2e75094ae1 --- /dev/null +++ b/data/game/ru/rush-for-berlin-rush-for-the-bomb.json @@ -0,0 +1,9 @@ +{ + "slug": "rush-for-berlin-rush-for-the-bomb", + "name": "Rush for Berlin: Rush for the Bomb", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110160822" + ], + "release_date": "2007-04-24" +} diff --git a/data/game/ru/rush-wars.json b/data/game/ru/rush-wars.json new file mode 100644 index 000000000000..e21bff946df4 --- /dev/null +++ b/data/game/ru/rush-wars.json @@ -0,0 +1,23 @@ +{ + "slug": "rush-wars", + "name": "Rush Wars", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q66763279" + ], + "release_date": "2019-08-26", + "platforms": [ + "iOS" + ], + "genres": [ + "strategy video game", + "tower defense", + "massively multiplayer online real-time strategy game" + ], + "developers": [ + "Supercell" + ], + "publishers": [ + "Supercell" + ] +} diff --git a/data/game/ry/ryse-legendary-edition.json b/data/game/ry/ryse-legendary-edition.json new file mode 100644 index 000000000000..80d30daadc74 --- /dev/null +++ b/data/game/ry/ryse-legendary-edition.json @@ -0,0 +1,8 @@ +{ + "slug": "ryse-legendary-edition", + "name": "Ryse: Legendary Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q92203939" + ] +} diff --git a/data/game/s-/s-t-a-l-k-e-r-legends-of-the-zone-trilogy.json b/data/game/s-/s-t-a-l-k-e-r-legends-of-the-zone-trilogy.json new file mode 100644 index 000000000000..b9e0e9d65f91 --- /dev/null +++ b/data/game/s-/s-t-a-l-k-e-r-legends-of-the-zone-trilogy.json @@ -0,0 +1,21 @@ +{ + "slug": "s-t-a-l-k-e-r-legends-of-the-zone-trilogy", + "name": "S.T.A.L.K.E.R.: Legends of the Zone Trilogy", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124753650" + ], + "release_date": "2024-03-06", + "platforms": [ + "PlayStation 4" + ], + "genres": [ + "first-person shooter" + ], + "developers": [ + "GSC Game World" + ], + "publishers": [ + "GSC Game World" + ] +} diff --git a/data/game/sa/saboteur-q7396310.json b/data/game/sa/saboteur-q7396310.json new file mode 100644 index 000000000000..b9befaa79e1a --- /dev/null +++ b/data/game/sa/saboteur-q7396310.json @@ -0,0 +1,14 @@ +{ + "slug": "saboteur-q7396310", + "name": "Saboteur", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7396310" + ], + "genres": [ + "action game" + ], + "publishers": [ + "Eidos Interactive" + ] +} diff --git a/data/game/sa/sacred-2-ice-blood.json b/data/game/sa/sacred-2-ice-blood.json new file mode 100644 index 000000000000..f17bf42646ba --- /dev/null +++ b/data/game/sa/sacred-2-ice-blood.json @@ -0,0 +1,15 @@ +{ + "slug": "sacred-2-ice-blood", + "name": "Sacred 2: Ice & Blood", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q9332625" + ], + "release_date": "2009-01-01", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "action role-playing game" + ] +} diff --git a/data/game/sa/sacred-3-gold-edition.json b/data/game/sa/sacred-3-gold-edition.json new file mode 100644 index 000000000000..221782c5f272 --- /dev/null +++ b/data/game/sa/sacred-3-gold-edition.json @@ -0,0 +1,8 @@ +{ + "slug": "sacred-3-gold-edition", + "name": "Sacred 3: Gold Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107424262" + ] +} diff --git a/data/game/sa/sacred-plus.json b/data/game/sa/sacred-plus.json new file mode 100644 index 000000000000..068bd3f4acb6 --- /dev/null +++ b/data/game/sa/sacred-plus.json @@ -0,0 +1,8 @@ +{ + "slug": "sacred-plus", + "name": "Sacred Plus", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110155953" + ] +} diff --git a/data/game/sa/sacred-underworld.json b/data/game/sa/sacred-underworld.json new file mode 100644 index 000000000000..b5b913e16d84 --- /dev/null +++ b/data/game/sa/sacred-underworld.json @@ -0,0 +1,18 @@ +{ + "slug": "sacred-underworld", + "name": "Sacred Underworld", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3460996" + ], + "release_date": "2005-01-01", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "action game" + ], + "developers": [ + "Ascaron" + ] +} diff --git a/data/game/sa/sai-q85873373.json b/data/game/sa/sai-q85873373.json new file mode 100644 index 000000000000..86df2b6c7db5 --- /dev/null +++ b/data/game/sa/sai-q85873373.json @@ -0,0 +1,8 @@ +{ + "slug": "sai-q85873373", + "name": "SAI", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q85873373" + ] +} diff --git a/data/game/sa/saints-row-2-corporate-warfare.json b/data/game/sa/saints-row-2-corporate-warfare.json new file mode 100644 index 000000000000..32ca613502c1 --- /dev/null +++ b/data/game/sa/saints-row-2-corporate-warfare.json @@ -0,0 +1,19 @@ +{ + "slug": "saints-row-2-corporate-warfare", + "name": "Saints Row 2: Corporate Warfare", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7402435" + ], + "release_date": "2009-05-28", + "platforms": [ + "PlayStation 3" + ], + "genres": [ + "action-adventure game", + "third-person shooter" + ], + "publishers": [ + "THQ" + ] +} diff --git a/data/game/sa/saints-row-2-ultor-exposed.json b/data/game/sa/saints-row-2-ultor-exposed.json new file mode 100644 index 000000000000..e91ded41d1ec --- /dev/null +++ b/data/game/sa/saints-row-2-ultor-exposed.json @@ -0,0 +1,20 @@ +{ + "slug": "saints-row-2-ultor-exposed", + "name": "Saints Row 2: Ultor Exposed", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7402437" + ], + "release_date": "2009-04-23", + "platforms": [ + "PlayStation 3" + ], + "genres": [ + "action-adventure game", + "third-person shooter", + "nonlinear gameplay" + ], + "publishers": [ + "THQ" + ] +} diff --git a/data/game/sa/saints-row-criminal-customs-editions.json b/data/game/sa/saints-row-criminal-customs-editions.json new file mode 100644 index 000000000000..d7f62a1f72ce --- /dev/null +++ b/data/game/sa/saints-row-criminal-customs-editions.json @@ -0,0 +1,23 @@ +{ + "slug": "saints-row-criminal-customs-editions", + "name": "Saints Row: Criminal Customs Editions", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112965073" + ], + "release_date": "2022-08-23", + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 5", + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "action-adventure game", + "third-person shooter" + ], + "publishers": [ + "Deep Silver", + "THQ Nordic" + ] +} diff --git a/data/game/sa/saints-row-drive-by.json b/data/game/sa/saints-row-drive-by.json new file mode 100644 index 000000000000..4e01562d5235 --- /dev/null +++ b/data/game/sa/saints-row-drive-by.json @@ -0,0 +1,14 @@ +{ + "slug": "saints-row-drive-by", + "name": "Saints Row: Drive-By", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63244121" + ], + "platforms": [ + "Nintendo 3DS" + ], + "genres": [ + "action-adventure game" + ] +} diff --git a/data/game/sa/saints-row-gold-edition.json b/data/game/sa/saints-row-gold-edition.json new file mode 100644 index 000000000000..47d670b12ed5 --- /dev/null +++ b/data/game/sa/saints-row-gold-edition.json @@ -0,0 +1,23 @@ +{ + "slug": "saints-row-gold-edition", + "name": "Saints Row: Gold Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111662708" + ], + "release_date": "2022-08-23", + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 5", + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "action-adventure game", + "third-person shooter" + ], + "publishers": [ + "Deep Silver", + "THQ Nordic" + ] +} diff --git a/data/game/sa/saints-row-iv-online-pass.json b/data/game/sa/saints-row-iv-online-pass.json new file mode 100644 index 000000000000..fc45ae105d0a --- /dev/null +++ b/data/game/sa/saints-row-iv-online-pass.json @@ -0,0 +1,12 @@ +{ + "slug": "saints-row-iv-online-pass", + "name": "Saints Row IV Online Pass", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60607921" + ], + "release_date": "2013-08-20", + "platforms": [ + "PlayStation 3" + ] +} diff --git a/data/game/sa/saints-row-iv-re-elected.json b/data/game/sa/saints-row-iv-re-elected.json new file mode 100644 index 000000000000..cfa14f01ccca --- /dev/null +++ b/data/game/sa/saints-row-iv-re-elected.json @@ -0,0 +1,20 @@ +{ + "slug": "saints-row-iv-re-elected", + "name": "Saints Row IV: Re-Elected", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107424264" + ], + "release_date": "2015-01-20", + "platforms": [ + "PlayStation 5", + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "action-adventure game" + ], + "publishers": [ + "Deep Silver" + ] +} diff --git a/data/game/sa/saints-row-legacy-edition.json b/data/game/sa/saints-row-legacy-edition.json new file mode 100644 index 000000000000..d080a5c1cc43 --- /dev/null +++ b/data/game/sa/saints-row-legacy-edition.json @@ -0,0 +1,23 @@ +{ + "slug": "saints-row-legacy-edition", + "name": "Saints Row: Legacy Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112965388" + ], + "release_date": "2022-08-23", + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 5", + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "action-adventure game", + "third-person shooter" + ], + "publishers": [ + "Deep Silver", + "THQ Nordic" + ] +} diff --git a/data/game/sa/saints-row-money-shot.json b/data/game/sa/saints-row-money-shot.json new file mode 100644 index 000000000000..03cc5d4cd5c7 --- /dev/null +++ b/data/game/sa/saints-row-money-shot.json @@ -0,0 +1,22 @@ +{ + "slug": "saints-row-money-shot", + "name": "Saints Row: Money Shot", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63244000" + ], + "platforms": [ + "PlayStation 3", + "Nintendo 3DS" + ], + "genres": [ + "first-person shooter", + "arcade" + ], + "developers": [ + "THQ" + ], + "publishers": [ + "THQ" + ] +} diff --git a/data/game/sa/saints-row-notorious-edition.json b/data/game/sa/saints-row-notorious-edition.json new file mode 100644 index 000000000000..ea8f0a98b670 --- /dev/null +++ b/data/game/sa/saints-row-notorious-edition.json @@ -0,0 +1,23 @@ +{ + "slug": "saints-row-notorious-edition", + "name": "Saints Row: Notorious Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112965390" + ], + "release_date": "2022-08-23", + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 5", + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "action-adventure game", + "third-person shooter" + ], + "publishers": [ + "Deep Silver", + "THQ Nordic" + ] +} diff --git a/data/game/sa/saints-row-platinum-edition.json b/data/game/sa/saints-row-platinum-edition.json new file mode 100644 index 000000000000..2a6713c10100 --- /dev/null +++ b/data/game/sa/saints-row-platinum-edition.json @@ -0,0 +1,23 @@ +{ + "slug": "saints-row-platinum-edition", + "name": "Saints Row: Platinum Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111662787" + ], + "release_date": "2022-08-23", + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 5", + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "action-adventure game", + "third-person shooter" + ], + "publishers": [ + "Deep Silver", + "THQ Nordic" + ] +} diff --git a/data/game/sa/saints-row-q77472508.json b/data/game/sa/saints-row-q77472508.json new file mode 100644 index 000000000000..495204fdd361 --- /dev/null +++ b/data/game/sa/saints-row-q77472508.json @@ -0,0 +1,21 @@ +{ + "slug": "saints-row-q77472508", + "name": "Saints Row", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q77472508" + ], + "release_date": "2021-01-01", + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 5", + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "action-adventure game" + ], + "publishers": [ + "Deep Silver" + ] +} diff --git a/data/game/sa/saints-row-santo-ileso-pack.json b/data/game/sa/saints-row-santo-ileso-pack.json new file mode 100644 index 000000000000..0226d99cb6a9 --- /dev/null +++ b/data/game/sa/saints-row-santo-ileso-pack.json @@ -0,0 +1,23 @@ +{ + "slug": "saints-row-santo-ileso-pack", + "name": "Saints Row: Santo Ileso Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112965555" + ], + "release_date": "2022-08-23", + "platforms": [ + "PlayStation 5", + "PlayStation 4", + "Xbox Series X and Series S", + "Microsoft Windows" + ], + "genres": [ + "action-adventure game", + "third-person shooter" + ], + "publishers": [ + "Deep Silver", + "THQ Nordic" + ] +} diff --git a/data/game/sa/saints-row-the-cooler.json b/data/game/sa/saints-row-the-cooler.json new file mode 100644 index 000000000000..bdb42a3bda21 --- /dev/null +++ b/data/game/sa/saints-row-the-cooler.json @@ -0,0 +1,14 @@ +{ + "slug": "saints-row-the-cooler", + "name": "Saints Row: The Cooler", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63244009" + ], + "platforms": [ + "PlayStation 3" + ], + "genres": [ + "beat 'em up" + ] +} diff --git a/data/game/sa/saints-row-the-third-online-pass.json b/data/game/sa/saints-row-the-third-online-pass.json new file mode 100644 index 000000000000..d59361941043 --- /dev/null +++ b/data/game/sa/saints-row-the-third-online-pass.json @@ -0,0 +1,12 @@ +{ + "slug": "saints-row-the-third-online-pass", + "name": "Saints Row: The Third Online Pass", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60607894" + ], + "release_date": "2012-11-07", + "platforms": [ + "PlayStation 3" + ] +} diff --git a/data/game/sa/saints-row-the-third-season-pass-dlc-pack.json b/data/game/sa/saints-row-the-third-season-pass-dlc-pack.json new file mode 100644 index 000000000000..4be4f35dfd8e --- /dev/null +++ b/data/game/sa/saints-row-the-third-season-pass-dlc-pack.json @@ -0,0 +1,16 @@ +{ + "slug": "saints-row-the-third-season-pass-dlc-pack", + "name": "Saints Row: The Third Season Pass DLC Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60563802" + ], + "release_date": "2011-11-15", + "platforms": [ + "PlayStation 3", + "Microsoft Windows" + ], + "publishers": [ + "Deep Silver" + ] +} diff --git a/data/game/sa/saints-row-the-third-the-full-package.json b/data/game/sa/saints-row-the-third-the-full-package.json new file mode 100644 index 000000000000..1b59592820d8 --- /dev/null +++ b/data/game/sa/saints-row-the-third-the-full-package.json @@ -0,0 +1,13 @@ +{ + "slug": "saints-row-the-third-the-full-package", + "name": "Saints Row: The Third - The Full Package", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60607899" + ], + "release_date": "2012-11-09", + "platforms": [ + "PlayStation 3", + "Microsoft Windows" + ] +} diff --git a/data/game/sa/saints-row-total-control.json b/data/game/sa/saints-row-total-control.json new file mode 100644 index 000000000000..431603f2ba5f --- /dev/null +++ b/data/game/sa/saints-row-total-control.json @@ -0,0 +1,18 @@ +{ + "slug": "saints-row-total-control", + "name": "Saints Row: Total Control", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63244116" + ], + "release_date": "2011-01-01", + "platforms": [ + "web browser" + ], + "developers": [ + "Punch Entertainment" + ], + "publishers": [ + "THQ" + ] +} diff --git a/data/game/sa/saints-row-undercover.json b/data/game/sa/saints-row-undercover.json new file mode 100644 index 000000000000..3084d611805f --- /dev/null +++ b/data/game/sa/saints-row-undercover.json @@ -0,0 +1,22 @@ +{ + "slug": "saints-row-undercover", + "name": "Saints Row: Undercover", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63241905" + ], + "release_date": "2016-01-29", + "platforms": [ + "PlayStation Portable" + ], + "genres": [ + "action-adventure game" + ], + "developers": [ + "Savage Entertainment", + "Mass Media Inc." + ], + "publishers": [ + "THQ" + ] +} diff --git a/data/game/sa/sam-max-abe-lincoln-must-die.json b/data/game/sa/sam-max-abe-lincoln-must-die.json new file mode 100644 index 000000000000..1bbf78c7ae06 --- /dev/null +++ b/data/game/sa/sam-max-abe-lincoln-must-die.json @@ -0,0 +1,18 @@ +{ + "slug": "sam-max-abe-lincoln-must-die", + "name": "Sam & Max: Abe Lincoln Must Die!", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2744439" + ], + "release_date": "2007-01-01", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "adventure video game" + ], + "developers": [ + "Telltale Games" + ] +} diff --git a/data/game/sa/sam-max-beyond-the-alley-of-the-dolls.json b/data/game/sa/sam-max-beyond-the-alley-of-the-dolls.json new file mode 100644 index 000000000000..ec6caf34394f --- /dev/null +++ b/data/game/sa/sam-max-beyond-the-alley-of-the-dolls.json @@ -0,0 +1,8 @@ +{ + "slug": "sam-max-beyond-the-alley-of-the-dolls", + "name": "Sam & Max: Beyond the Alley of the Dolls", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107424269" + ] +} diff --git a/data/game/sa/sam-max-chariots-of-the-dogs.json b/data/game/sa/sam-max-chariots-of-the-dogs.json new file mode 100644 index 000000000000..0fbb248bbc10 --- /dev/null +++ b/data/game/sa/sam-max-chariots-of-the-dogs.json @@ -0,0 +1,21 @@ +{ + "slug": "sam-max-chariots-of-the-dogs", + "name": "Sam & Max: Chariots of the Dogs", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2957837" + ], + "release_date": "2008-03-13", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "adventure video game" + ], + "developers": [ + "Telltale Games" + ], + "publishers": [ + "GameTap" + ] +} diff --git a/data/game/sa/sam-max-freelance-police.json b/data/game/sa/sam-max-freelance-police.json new file mode 100644 index 000000000000..98f9578b1e0d --- /dev/null +++ b/data/game/sa/sam-max-freelance-police.json @@ -0,0 +1,17 @@ +{ + "slug": "sam-max-freelance-police", + "name": "Sam & Max: Freelance Police", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3470580" + ], + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "adventure video game" + ], + "developers": [ + "Lucasfilm Games" + ] +} diff --git a/data/game/sa/sam-max-ice-station-santa.json b/data/game/sa/sam-max-ice-station-santa.json new file mode 100644 index 000000000000..6793e01edd23 --- /dev/null +++ b/data/game/sa/sam-max-ice-station-santa.json @@ -0,0 +1,23 @@ +{ + "slug": "sam-max-ice-station-santa", + "name": "Sam & Max: Ice Station Santa", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2297485" + ], + "release_date": "2007-11-08", + "platforms": [ + "Wii", + "Microsoft Windows" + ], + "genres": [ + "adventure video game", + "Christmas video game" + ], + "developers": [ + "Telltale Games" + ], + "publishers": [ + "GameTap" + ] +} diff --git a/data/game/sa/sam-max-moai-better-blues.json b/data/game/sa/sam-max-moai-better-blues.json new file mode 100644 index 000000000000..20740e21284c --- /dev/null +++ b/data/game/sa/sam-max-moai-better-blues.json @@ -0,0 +1,21 @@ +{ + "slug": "sam-max-moai-better-blues", + "name": "Sam & Max: Moai Better Blues", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3317556" + ], + "release_date": "2008-01-10", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "adventure video game" + ], + "developers": [ + "Telltale Games" + ], + "publishers": [ + "GameTap" + ] +} diff --git a/data/game/sa/sam-max-night-of-the-raving-dead.json b/data/game/sa/sam-max-night-of-the-raving-dead.json new file mode 100644 index 000000000000..7f819410a54f --- /dev/null +++ b/data/game/sa/sam-max-night-of-the-raving-dead.json @@ -0,0 +1,21 @@ +{ + "slug": "sam-max-night-of-the-raving-dead", + "name": "Sam & Max: Night of the Raving Dead", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3341409" + ], + "release_date": "2008-02-12", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "adventure video game" + ], + "developers": [ + "Telltale Games" + ], + "publishers": [ + "GameTap" + ] +} diff --git a/data/game/sa/sam-max-the-city-that-dares-not-sleep.json b/data/game/sa/sam-max-the-city-that-dares-not-sleep.json new file mode 100644 index 000000000000..37ff94e49e8f --- /dev/null +++ b/data/game/sa/sam-max-the-city-that-dares-not-sleep.json @@ -0,0 +1,8 @@ +{ + "slug": "sam-max-the-city-that-dares-not-sleep", + "name": "Sam & Max: The City That Dares Not Sleep", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107424270" + ] +} diff --git a/data/game/sa/sam-max-the-tomb-of-sammun-mak.json b/data/game/sa/sam-max-the-tomb-of-sammun-mak.json new file mode 100644 index 000000000000..8786ec1d6aeb --- /dev/null +++ b/data/game/sa/sam-max-the-tomb-of-sammun-mak.json @@ -0,0 +1,8 @@ +{ + "slug": "sam-max-the-tomb-of-sammun-mak", + "name": "Sam & Max: The Tomb of Sammun-Mak", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107424266" + ] +} diff --git a/data/game/sa/sam-max-they-stole-max-s-brain.json b/data/game/sa/sam-max-they-stole-max-s-brain.json new file mode 100644 index 000000000000..8720280613cc --- /dev/null +++ b/data/game/sa/sam-max-they-stole-max-s-brain.json @@ -0,0 +1,8 @@ +{ + "slug": "sam-max-they-stole-max-s-brain", + "name": "Sam & Max: They Stole Max’s Brain", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107424267" + ] +} diff --git a/data/game/sa/sam-s-story.json b/data/game/sa/sam-s-story.json new file mode 100644 index 000000000000..8305b10e3c49 --- /dev/null +++ b/data/game/sa/sam-s-story.json @@ -0,0 +1,13 @@ +{ + "slug": "sam-s-story", + "name": "Sam's Story", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q85973054" + ], + "release_date": "2020-02-11", + "platforms": [ + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/game/sa/samorost-3-q113660232.json b/data/game/sa/samorost-3-q113660232.json new file mode 100644 index 000000000000..5738499e551a --- /dev/null +++ b/data/game/sa/samorost-3-q113660232.json @@ -0,0 +1,14 @@ +{ + "slug": "samorost-3-q113660232", + "name": "Samorost 3+", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113660232" + ], + "release_date": "2022-07-08", + "platforms": [ + "iPadOS", + "iOS", + "macOS" + ] +} diff --git a/data/game/sa/samurai-shodown-anthology.json b/data/game/sa/samurai-shodown-anthology.json new file mode 100644 index 000000000000..c428fc91feeb --- /dev/null +++ b/data/game/sa/samurai-shodown-anthology.json @@ -0,0 +1,22 @@ +{ + "slug": "samurai-shodown-anthology", + "name": "Samurai Shodown Anthology", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3122108" + ], + "release_date": "2008-07-24", + "platforms": [ + "PlayStation Portable", + "Wii" + ], + "genres": [ + "fighting game" + ], + "developers": [ + "SNK" + ], + "publishers": [ + "SNK" + ] +} diff --git a/data/game/sa/samurai-shodown-neogeo-collection.json b/data/game/sa/samurai-shodown-neogeo-collection.json new file mode 100644 index 000000000000..7f459bca149b --- /dev/null +++ b/data/game/sa/samurai-shodown-neogeo-collection.json @@ -0,0 +1,22 @@ +{ + "slug": "samurai-shodown-neogeo-collection", + "name": "Samurai Shodown NeoGeo Collection", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q95921242" + ], + "release_date": "2020-06-11", + "platforms": [ + "Microsoft Windows", + "PlayStation 4" + ], + "genres": [ + "fighting game" + ], + "developers": [ + "Digital Eclipse" + ], + "publishers": [ + "SNK" + ] +} diff --git a/data/game/sa/samurai-shodown-q60743293.json b/data/game/sa/samurai-shodown-q60743293.json new file mode 100644 index 000000000000..c4719b7c7f1e --- /dev/null +++ b/data/game/sa/samurai-shodown-q60743293.json @@ -0,0 +1,25 @@ +{ + "slug": "samurai-shodown-q60743293", + "name": "Samurai Shodown", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60743293" + ], + "release_date": "2019-01-01", + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 4", + "arcade video game machine", + "Microsoft Windows" + ], + "genres": [ + "fighting game" + ], + "developers": [ + "SNK", + "Safari Games" + ], + "publishers": [ + "SNK" + ] +} diff --git a/data/game/sa/samurai-warriors-4-empires.json b/data/game/sa/samurai-warriors-4-empires.json new file mode 100644 index 000000000000..912675b105e6 --- /dev/null +++ b/data/game/sa/samurai-warriors-4-empires.json @@ -0,0 +1,14 @@ +{ + "slug": "samurai-warriors-4-empires", + "name": "Samurai Warriors 4: Empires", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q114056772" + ], + "release_date": "2015-09-17", + "platforms": [ + "PlayStation 4", + "PlayStation Vita", + "PlayStation 3" + ] +} diff --git a/data/game/sa/san-andreas-multiplayer.json b/data/game/sa/san-andreas-multiplayer.json new file mode 100644 index 000000000000..fc3b59687746 --- /dev/null +++ b/data/game/sa/san-andreas-multiplayer.json @@ -0,0 +1,15 @@ +{ + "slug": "san-andreas-multiplayer", + "name": "San Andreas Multiplayer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2995713" + ], + "release_date": "2006-05-09", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "third-person shooter" + ] +} diff --git a/data/game/sa/sanatorium.json b/data/game/sa/sanatorium.json new file mode 100644 index 000000000000..2ad52831655b --- /dev/null +++ b/data/game/sa/sanatorium.json @@ -0,0 +1,24 @@ +{ + "slug": "sanatorium", + "name": "Sanatorium", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111084081" + ], + "release_date": "2012-08-12", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "survival horror" + ], + "developers": [ + "Wray Burgess", + "Marc Steene" + ], + "publishers": [ + "Marc Steene", + "Wray Burgess" + ] +} diff --git a/data/game/sa/sara-s-school-life.json b/data/game/sa/sara-s-school-life.json new file mode 100644 index 000000000000..be748900ba54 --- /dev/null +++ b/data/game/sa/sara-s-school-life.json @@ -0,0 +1,18 @@ +{ + "slug": "sara-s-school-life", + "name": "Sara's School Life", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q99568733" + ], + "genres": [ + "stealth game", + "life simulation game" + ], + "developers": [ + "SaraDev" + ], + "publishers": [ + "SaraDev" + ] +} diff --git a/data/game/sa/satebo-s-wordgame.json b/data/game/sa/satebo-s-wordgame.json new file mode 100644 index 000000000000..124ba6072b84 --- /dev/null +++ b/data/game/sa/satebo-s-wordgame.json @@ -0,0 +1,12 @@ +{ + "slug": "satebo-s-wordgame", + "name": "Satebo's Wordgame", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122924861" + ], + "release_date": "2023-07-12", + "platforms": [ + "Satellaview" + ] +} diff --git a/data/game/sa/saucy-shot.json b/data/game/sa/saucy-shot.json new file mode 100644 index 000000000000..b7555878e046 --- /dev/null +++ b/data/game/sa/saucy-shot.json @@ -0,0 +1,8 @@ +{ + "slug": "saucy-shot", + "name": "Saucy Shot", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q128014906" + ] +} diff --git a/data/game/sa/savage-island-series.json b/data/game/sa/savage-island-series.json new file mode 100644 index 000000000000..6de71ab3dc4b --- /dev/null +++ b/data/game/sa/savage-island-series.json @@ -0,0 +1,11 @@ +{ + "slug": "savage-island-series", + "name": "Savage Island Series", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q67718507" + ], + "platforms": [ + "Texas Instruments TI-99/4A" + ] +} diff --git a/data/game/sc/scalchop-beach.json b/data/game/sc/scalchop-beach.json new file mode 100644 index 000000000000..b37628545f84 --- /dev/null +++ b/data/game/sc/scalchop-beach.json @@ -0,0 +1,9 @@ +{ + "slug": "scalchop-beach", + "name": "Scalchop Beach", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112582103" + ], + "release_date": "2013-04-04" +} diff --git a/data/game/sc/scalebound.json b/data/game/sc/scalebound.json new file mode 100644 index 000000000000..f251cec1d40e --- /dev/null +++ b/data/game/sc/scalebound.json @@ -0,0 +1,11 @@ +{ + "slug": "scalebound", + "name": "Scalebound", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17264591" + ], + "publishers": [ + "Xbox Game Studios" + ] +} diff --git a/data/game/sc/scenery-disk-12-flight-simulator-ii-jet.json b/data/game/sc/scenery-disk-12-flight-simulator-ii-jet.json new file mode 100644 index 000000000000..f4597adf0179 --- /dev/null +++ b/data/game/sc/scenery-disk-12-flight-simulator-ii-jet.json @@ -0,0 +1,8 @@ +{ + "slug": "scenery-disk-12-flight-simulator-ii-jet", + "name": "Scenery Disk 12 (Flight Simulator II & Jet)", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126186405" + ] +} diff --git a/data/game/sc/scenery-disk-9-flight-simulator-ii-jet.json b/data/game/sc/scenery-disk-9-flight-simulator-ii-jet.json new file mode 100644 index 000000000000..f31035980dfb --- /dev/null +++ b/data/game/sc/scenery-disk-9-flight-simulator-ii-jet.json @@ -0,0 +1,8 @@ +{ + "slug": "scenery-disk-9-flight-simulator-ii-jet", + "name": "Scenery Disk 9 (Flight Simulator II & Jet)", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126186403" + ] +} diff --git a/data/game/sc/school-shooter-north-american-tour-2012.json b/data/game/sc/school-shooter-north-american-tour-2012.json new file mode 100644 index 000000000000..a937fd200550 --- /dev/null +++ b/data/game/sc/school-shooter-north-american-tour-2012.json @@ -0,0 +1,15 @@ +{ + "slug": "school-shooter-north-american-tour-2012", + "name": "School Shooter: North American Tour 2012", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4992871" + ], + "release_date": "2011-01-01", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter" + ] +} diff --git a/data/game/sc/science-and-industry.json b/data/game/sc/science-and-industry.json new file mode 100644 index 000000000000..bd70b55215e3 --- /dev/null +++ b/data/game/sc/science-and-industry.json @@ -0,0 +1,14 @@ +{ + "slug": "science-and-industry", + "name": "Science and Industry", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q766561" + ], + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter" + ] +} diff --git a/data/game/sc/scp-015-demo.json b/data/game/sc/scp-015-demo.json new file mode 100644 index 000000000000..652623304856 --- /dev/null +++ b/data/game/sc/scp-015-demo.json @@ -0,0 +1,21 @@ +{ + "slug": "scp-015-demo", + "name": "SCP-015 Demo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107458617" + ], + "release_date": "2013-06-25", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "supernatural horror game" + ], + "developers": [ + "AOUProductions" + ], + "publishers": [ + "AOUProductions" + ] +} diff --git a/data/game/sc/scp-015.json b/data/game/sc/scp-015.json new file mode 100644 index 000000000000..e7cd05cd9bea --- /dev/null +++ b/data/game/sc/scp-015.json @@ -0,0 +1,21 @@ +{ + "slug": "scp-015", + "name": "SCP-015", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107426369" + ], + "release_date": "2016-04-05", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "supernatural horror game" + ], + "developers": [ + "AOUProductions" + ], + "publishers": [ + "AOUProductions" + ] +} diff --git a/data/game/sc/scp-610.json b/data/game/sc/scp-610.json new file mode 100644 index 000000000000..3ee9b9b3da8e --- /dev/null +++ b/data/game/sc/scp-610.json @@ -0,0 +1,22 @@ +{ + "slug": "scp-610", + "name": "SCP-610", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110984204" + ], + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "survival horror", + "stealth game", + "horror video game" + ], + "developers": [ + "BJFowLer" + ], + "publishers": [ + "BJFowLer" + ] +} diff --git a/data/game/sc/scp-containment-breach-multiplayer-mod.json b/data/game/sc/scp-containment-breach-multiplayer-mod.json new file mode 100644 index 000000000000..6addecbc3b2c --- /dev/null +++ b/data/game/sc/scp-containment-breach-multiplayer-mod.json @@ -0,0 +1,8 @@ +{ + "slug": "scp-containment-breach-multiplayer-mod", + "name": "SCP - Containment Breach Multiplayer Mod", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107494068" + ] +} diff --git a/data/game/sc/scp-j-lite.json b/data/game/sc/scp-j-lite.json new file mode 100644 index 000000000000..7941b551c105 --- /dev/null +++ b/data/game/sc/scp-j-lite.json @@ -0,0 +1,21 @@ +{ + "slug": "scp-j-lite", + "name": "SCP-____-J Lite", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107372216" + ], + "release_date": "2013-02-08", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "supernatural horror game" + ], + "developers": [ + "luigi123" + ], + "publishers": [ + "luigi123" + ] +} diff --git a/data/game/sc/scp-nightmares.json b/data/game/sc/scp-nightmares.json new file mode 100644 index 000000000000..28fa0d86f186 --- /dev/null +++ b/data/game/sc/scp-nightmares.json @@ -0,0 +1,21 @@ +{ + "slug": "scp-nightmares", + "name": "SCP-Nightmares", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110990385" + ], + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "supernatural horror game" + ], + "developers": [ + "B&W Studios" + ], + "publishers": [ + "B&W Studios" + ] +} diff --git a/data/game/sc/scp-unity.json b/data/game/sc/scp-unity.json new file mode 100644 index 000000000000..e46779d66eea --- /dev/null +++ b/data/game/sc/scp-unity.json @@ -0,0 +1,21 @@ +{ + "slug": "scp-unity", + "name": "SCP Unity", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q59536425" + ], + "release_date": "2016-10-14", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "supernatural horror game" + ], + "developers": [ + "Aerie Gaming Studios" + ], + "publishers": [ + "Aerie Gaming Studios" + ] +} diff --git a/data/game/sc/scp-wander.json b/data/game/sc/scp-wander.json new file mode 100644 index 000000000000..7529e75a74c0 --- /dev/null +++ b/data/game/sc/scp-wander.json @@ -0,0 +1,23 @@ +{ + "slug": "scp-wander", + "name": "SCP: Wander", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q65622031" + ], + "release_date": "2013-08-02", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "role-playing video game", + "horror video game" + ], + "developers": [ + "miroefox" + ], + "publishers": [ + "miroefox" + ] +} diff --git a/data/game/sc/scratches-director-s-cut.json b/data/game/sc/scratches-director-s-cut.json new file mode 100644 index 000000000000..c126980363fa --- /dev/null +++ b/data/game/sc/scratches-director-s-cut.json @@ -0,0 +1,22 @@ +{ + "slug": "scratches-director-s-cut", + "name": "Scratches: Director's Cut", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110817204" + ], + "release_date": "2007-05-23", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "adventure video game" + ], + "developers": [ + "Nucleosys" + ], + "publishers": [ + "Play Ten Interactive", + "Got Game Entertainment" + ] +} diff --git a/data/game/sd/sd-gundam-battle-alliance-deluxe-edition.json b/data/game/sd/sd-gundam-battle-alliance-deluxe-edition.json new file mode 100644 index 000000000000..e2d6a2246980 --- /dev/null +++ b/data/game/sd/sd-gundam-battle-alliance-deluxe-edition.json @@ -0,0 +1,19 @@ +{ + "slug": "sd-gundam-battle-alliance-deluxe-edition", + "name": "SD Gundam Battle Alliance Deluxe Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115973717" + ], + "release_date": "2022-08-25", + "platforms": [ + "Xbox Series X and Series S", + "Microsoft Windows" + ], + "developers": [ + "Artdink" + ], + "publishers": [ + "Bandai Namco Entertainment" + ] +} diff --git a/data/game/sd/sdl-asylum.json b/data/game/sd/sdl-asylum.json new file mode 100644 index 000000000000..54417023feef --- /dev/null +++ b/data/game/sd/sdl-asylum.json @@ -0,0 +1,8 @@ +{ + "slug": "sdl-asylum", + "name": "SDL Asylum", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118367622" + ] +} diff --git a/data/game/sd/sdl-sopwith.json b/data/game/sd/sdl-sopwith.json new file mode 100644 index 000000000000..47ac269d759d --- /dev/null +++ b/data/game/sd/sdl-sopwith.json @@ -0,0 +1,8 @@ +{ + "slug": "sdl-sopwith", + "name": "SDL Sopwith", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q119067399" + ] +} diff --git a/data/game/se/sea-of-sorrow.json b/data/game/se/sea-of-sorrow.json new file mode 100644 index 000000000000..d848d4ec6fc1 --- /dev/null +++ b/data/game/se/sea-of-sorrow.json @@ -0,0 +1,12 @@ +{ + "slug": "sea-of-sorrow", + "name": "Sea of Sorrow", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137398334" + ], + "release_date": "2026-01-01", + "developers": [ + "Team Cherry" + ] +} diff --git a/data/game/se/sea-story.json b/data/game/se/sea-story.json new file mode 100644 index 000000000000..c529d3905a27 --- /dev/null +++ b/data/game/se/sea-story.json @@ -0,0 +1,8 @@ +{ + "slug": "sea-story", + "name": "Sea Story", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11263218" + ] +} diff --git a/data/game/se/season-of-infamy.json b/data/game/se/season-of-infamy.json new file mode 100644 index 000000000000..ef4e336fba48 --- /dev/null +++ b/data/game/se/season-of-infamy.json @@ -0,0 +1,19 @@ +{ + "slug": "season-of-infamy", + "name": "Season of Infamy", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q54809608" + ], + "release_date": "2015-12-22", + "platforms": [ + "PlayStation 4", + "Microsoft Windows" + ], + "developers": [ + "Rocksteady Studios" + ], + "publishers": [ + "Warner Bros. Games" + ] +} diff --git a/data/game/se/secret-garden-q113535713.json b/data/game/se/secret-garden-q113535713.json new file mode 100644 index 000000000000..75d6e4541371 --- /dev/null +++ b/data/game/se/secret-garden-q113535713.json @@ -0,0 +1,11 @@ +{ + "slug": "secret-garden-q113535713", + "name": "Secret Garden", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113535713" + ], + "genres": [ + "site-specific art" + ] +} diff --git a/data/game/se/secrets-of-light-and-shadow.json b/data/game/se/secrets-of-light-and-shadow.json new file mode 100644 index 000000000000..705d3d48cc4f --- /dev/null +++ b/data/game/se/secrets-of-light-and-shadow.json @@ -0,0 +1,15 @@ +{ + "slug": "secrets-of-light-and-shadow", + "name": "Secrets of Light and Shadow", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116192848" + ], + "release_date": "2022-09-09", + "platforms": [ + "Xbox Series X and Series S" + ], + "publishers": [ + "OverGamez" + ] +} diff --git a/data/game/se/seeburg-ray-o-lite.json b/data/game/se/seeburg-ray-o-lite.json new file mode 100644 index 000000000000..fc2ebb910ff4 --- /dev/null +++ b/data/game/se/seeburg-ray-o-lite.json @@ -0,0 +1,11 @@ +{ + "slug": "seeburg-ray-o-lite", + "name": "Seeburg Ray-O-Lite", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3816854" + ], + "genres": [ + "hunting video game" + ] +} diff --git a/data/game/se/seeking-asylum-lionheart-demo.json b/data/game/se/seeking-asylum-lionheart-demo.json new file mode 100644 index 000000000000..d8bafded5784 --- /dev/null +++ b/data/game/se/seeking-asylum-lionheart-demo.json @@ -0,0 +1,12 @@ +{ + "slug": "seeking-asylum-lionheart-demo", + "name": "Seeking Asylum: LionHeart (DEMO)", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122376874" + ], + "release_date": "2022-09-22", + "platforms": [ + "Microsoft Windows" + ] +} diff --git a/data/game/se/sega-3d-reprint-archives-3-final-stage.json b/data/game/se/sega-3d-reprint-archives-3-final-stage.json new file mode 100644 index 000000000000..e2db3dd12036 --- /dev/null +++ b/data/game/se/sega-3d-reprint-archives-3-final-stage.json @@ -0,0 +1,14 @@ +{ + "slug": "sega-3d-reprint-archives-3-final-stage", + "name": "Sega 3D Reprint Archives 3: Final Stage", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28683993" + ], + "platforms": [ + "Nintendo 3DS" + ], + "publishers": [ + "Sega" + ] +} diff --git a/data/game/se/sega-3d-reprint-archives.json b/data/game/se/sega-3d-reprint-archives.json new file mode 100644 index 000000000000..70e2023964d3 --- /dev/null +++ b/data/game/se/sega-3d-reprint-archives.json @@ -0,0 +1,14 @@ +{ + "slug": "sega-3d-reprint-archives", + "name": "Sega 3D Reprint Archives", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105192003" + ], + "platforms": [ + "Nintendo 3DS" + ], + "publishers": [ + "Sega" + ] +} diff --git a/data/game/se/sega-ages-i-love-mickey-mouse.json b/data/game/se/sega-ages-i-love-mickey-mouse.json new file mode 100644 index 000000000000..bac7cd8b7fda --- /dev/null +++ b/data/game/se/sega-ages-i-love-mickey-mouse.json @@ -0,0 +1,15 @@ +{ + "slug": "sega-ages-i-love-mickey-mouse", + "name": "Sega Ages: I Love Mickey Mouse", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16267147" + ], + "release_date": "2003-08-28", + "developers": [ + "Sega" + ], + "publishers": [ + "Sega" + ] +} diff --git a/data/game/se/sega-ages.json b/data/game/se/sega-ages.json new file mode 100644 index 000000000000..66c9a0bccd61 --- /dev/null +++ b/data/game/se/sega-ages.json @@ -0,0 +1,8 @@ +{ + "slug": "sega-ages", + "name": "Sega Ages", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3477710" + ] +} diff --git a/data/game/se/sega-arcade-gallery.json b/data/game/se/sega-arcade-gallery.json new file mode 100644 index 000000000000..fd9da41f1aa5 --- /dev/null +++ b/data/game/se/sega-arcade-gallery.json @@ -0,0 +1,17 @@ +{ + "slug": "sega-arcade-gallery", + "name": "Sega Arcade Gallery", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18928696" + ], + "platforms": [ + "Game Boy Advance" + ], + "developers": [ + "Sega" + ], + "publishers": [ + "Sega" + ] +} diff --git a/data/game/se/sega-classics-collection.json b/data/game/se/sega-classics-collection.json new file mode 100644 index 000000000000..676e3c4b2cff --- /dev/null +++ b/data/game/se/sega-classics-collection.json @@ -0,0 +1,11 @@ +{ + "slug": "sega-classics-collection", + "name": "Sega Classics Collection", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7446145" + ], + "developers": [ + "Sega" + ] +} diff --git a/data/game/se/sega-genesis-nintendo-classics.json b/data/game/se/sega-genesis-nintendo-classics.json new file mode 100644 index 000000000000..010e87493ac2 --- /dev/null +++ b/data/game/se/sega-genesis-nintendo-classics.json @@ -0,0 +1,11 @@ +{ + "slug": "sega-genesis-nintendo-classics", + "name": "Sega Genesis – Nintendo Classics", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109605181" + ], + "publishers": [ + "Nintendo" + ] +} diff --git a/data/game/se/sega-memorial-selection.json b/data/game/se/sega-memorial-selection.json new file mode 100644 index 000000000000..8c21fe83c458 --- /dev/null +++ b/data/game/se/sega-memorial-selection.json @@ -0,0 +1,18 @@ +{ + "slug": "sega-memorial-selection", + "name": "Sega Memorial Selection", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126034797" + ], + "release_date": "1998-10-09", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Sega" + ], + "publishers": [ + "Sega" + ] +} diff --git a/data/game/se/segasonic-bros.json b/data/game/se/segasonic-bros.json new file mode 100644 index 000000000000..a82f0c632ea8 --- /dev/null +++ b/data/game/se/segasonic-bros.json @@ -0,0 +1,8 @@ +{ + "slug": "segasonic-bros", + "name": "SegaSonic Bros.", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60049454" + ] +} diff --git a/data/game/se/seiken-densetsu-the-emergence-of-excalibur.json b/data/game/se/seiken-densetsu-the-emergence-of-excalibur.json new file mode 100644 index 000000000000..957e34c5a84f --- /dev/null +++ b/data/game/se/seiken-densetsu-the-emergence-of-excalibur.json @@ -0,0 +1,11 @@ +{ + "slug": "seiken-densetsu-the-emergence-of-excalibur", + "name": "Seiken Densetsu: The Emergence of Excalibur", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105604111" + ], + "platforms": [ + "Famicom Disk System" + ] +} diff --git a/data/game/se/sengoku-anthology.json b/data/game/se/sengoku-anthology.json new file mode 100644 index 000000000000..acfcaa6502f8 --- /dev/null +++ b/data/game/se/sengoku-anthology.json @@ -0,0 +1,8 @@ +{ + "slug": "sengoku-anthology", + "name": "Sengoku Anthology", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q74126336" + ] +} diff --git a/data/game/se/serious-sam-3-bfe-gold-edition.json b/data/game/se/serious-sam-3-bfe-gold-edition.json new file mode 100644 index 000000000000..471f9f711dba --- /dev/null +++ b/data/game/se/serious-sam-3-bfe-gold-edition.json @@ -0,0 +1,23 @@ +{ + "slug": "serious-sam-3-bfe-gold-edition", + "name": "Serious Sam 3: BFE Gold Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121306976" + ], + "release_date": "2017-06-22", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "action-adventure game" + ], + "developers": [ + "Croteam" + ], + "publishers": [ + "Devolver Digital" + ] +} diff --git a/data/game/se/serious-sam-3-bonus-content-dlc.json b/data/game/se/serious-sam-3-bonus-content-dlc.json new file mode 100644 index 000000000000..085afdeda906 --- /dev/null +++ b/data/game/se/serious-sam-3-bonus-content-dlc.json @@ -0,0 +1,21 @@ +{ + "slug": "serious-sam-3-bonus-content-dlc", + "name": "Serious Sam 3 Bonus Content DLC", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q104673277" + ], + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "first-person shooter" + ], + "developers": [ + "Croteam" + ], + "publishers": [ + "Devolver Digital" + ] +} diff --git a/data/game/se/serious-sam-3-jewel-of-the-nile.json b/data/game/se/serious-sam-3-jewel-of-the-nile.json new file mode 100644 index 000000000000..d00ed46f12e8 --- /dev/null +++ b/data/game/se/serious-sam-3-jewel-of-the-nile.json @@ -0,0 +1,9 @@ +{ + "slug": "serious-sam-3-jewel-of-the-nile", + "name": "Serious Sam 3: Jewel of the Nile", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60559707" + ], + "release_date": "2012-10-16" +} diff --git a/data/game/se/serious-sam-collection.json b/data/game/se/serious-sam-collection.json new file mode 100644 index 000000000000..bede2497147c --- /dev/null +++ b/data/game/se/serious-sam-collection.json @@ -0,0 +1,22 @@ +{ + "slug": "serious-sam-collection", + "name": "Serious Sam Collection", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q70912301" + ], + "release_date": "2020-11-17", + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 4" + ], + "genres": [ + "first-person shooter" + ], + "developers": [ + "Croteam" + ], + "publishers": [ + "Devolver Digital" + ] +} diff --git a/data/game/se/serious-sam-complete-pack.json b/data/game/se/serious-sam-complete-pack.json new file mode 100644 index 000000000000..eb2a756a72d6 --- /dev/null +++ b/data/game/se/serious-sam-complete-pack.json @@ -0,0 +1,26 @@ +{ + "slug": "serious-sam-complete-pack", + "name": "Serious Sam Complete Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121306585" + ], + "release_date": "2012-10-16", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "action-adventure game", + "role-playing video game" + ], + "developers": [ + "Timelock Studio", + "Croteam" + ], + "publishers": [ + "Croteam", + "Devolver Digital" + ] +} diff --git a/data/game/se/serious-sam-double-d-xxl.json b/data/game/se/serious-sam-double-d-xxl.json new file mode 100644 index 000000000000..70d23c94d2d8 --- /dev/null +++ b/data/game/se/serious-sam-double-d-xxl.json @@ -0,0 +1,23 @@ +{ + "slug": "serious-sam-double-d-xxl", + "name": "Serious Sam Double D XXL", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q65948501" + ], + "release_date": "2013-02-20", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "platformer", + "shoot 'em up", + "arcade" + ], + "developers": [ + "Mommy's Best Games" + ], + "publishers": [ + "Devolver Digital" + ] +} diff --git a/data/game/se/serious-sam-fusion-2017.json b/data/game/se/serious-sam-fusion-2017.json new file mode 100644 index 000000000000..1ffa31014b40 --- /dev/null +++ b/data/game/se/serious-sam-fusion-2017.json @@ -0,0 +1,23 @@ +{ + "slug": "serious-sam-fusion-2017", + "name": "Serious Sam Fusion 2017", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60559650" + ], + "release_date": "2017-03-20", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "first-person shooter" + ], + "developers": [ + "Croteam" + ], + "publishers": [ + "Croteam", + "Devolver Digital" + ] +} diff --git a/data/game/se/serious-sam-gold-edition.json b/data/game/se/serious-sam-gold-edition.json new file mode 100644 index 000000000000..4ed8dccdd915 --- /dev/null +++ b/data/game/se/serious-sam-gold-edition.json @@ -0,0 +1,24 @@ +{ + "slug": "serious-sam-gold-edition", + "name": "Serious Sam: Gold Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4049308" + ], + "release_date": "2010-01-01", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter" + ], + "developers": [ + "Alligator Pit", + "Croteam" + ], + "publishers": [ + "Gathering of Developers", + "Croteam", + "Devolver Digital" + ] +} diff --git a/data/game/se/serious-sam-hd-gold-collection.json b/data/game/se/serious-sam-hd-gold-collection.json new file mode 100644 index 000000000000..54abcf5f9625 --- /dev/null +++ b/data/game/se/serious-sam-hd-gold-collection.json @@ -0,0 +1,24 @@ +{ + "slug": "serious-sam-hd-gold-collection", + "name": "Serious Sam HD Gold Collection", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121306922" + ], + "release_date": "2017-03-21", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "action-adventure game" + ], + "developers": [ + "Alligator Pit", + "Croteam" + ], + "publishers": [ + "Croteam", + "Devolver Digital" + ] +} diff --git a/data/game/se/serious-sam-hd-q122204580.json b/data/game/se/serious-sam-hd-q122204580.json new file mode 100644 index 000000000000..2295d3b66590 --- /dev/null +++ b/data/game/se/serious-sam-hd-q122204580.json @@ -0,0 +1,18 @@ +{ + "slug": "serious-sam-hd-q122204580", + "name": "Serious Sam HD", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122204580" + ], + "release_date": "2011-04-08", + "genres": [ + "first-person shooter" + ], + "developers": [ + "Croteam" + ], + "publishers": [ + "Devolver Digital" + ] +} diff --git a/data/game/se/serious-sam-hd-the-second-encounter-legend-of-the-beast.json b/data/game/se/serious-sam-hd-the-second-encounter-legend-of-the-beast.json new file mode 100644 index 000000000000..baaa850cc5e2 --- /dev/null +++ b/data/game/se/serious-sam-hd-the-second-encounter-legend-of-the-beast.json @@ -0,0 +1,12 @@ +{ + "slug": "serious-sam-hd-the-second-encounter-legend-of-the-beast", + "name": "Serious Sam HD: The Second Encounter - Legend of the Beast", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60586964" + ], + "release_date": "2012-05-15", + "platforms": [ + "Microsoft Windows" + ] +} diff --git a/data/game/se/serious-sam-hd-the-second-encounter-serious-8-dlc.json b/data/game/se/serious-sam-hd-the-second-encounter-serious-8-dlc.json new file mode 100644 index 000000000000..c59dfb0ec9e9 --- /dev/null +++ b/data/game/se/serious-sam-hd-the-second-encounter-serious-8-dlc.json @@ -0,0 +1,18 @@ +{ + "slug": "serious-sam-hd-the-second-encounter-serious-8-dlc", + "name": "Serious Sam HD: The Second Encounter - Serious 8 DLC", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60559708" + ], + "release_date": "2011-01-01", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Croteam" + ], + "publishers": [ + "Devolver Digital" + ] +} diff --git a/data/game/se/serious-sam-hd.json b/data/game/se/serious-sam-hd.json new file mode 100644 index 000000000000..78ced784c3ae --- /dev/null +++ b/data/game/se/serious-sam-hd.json @@ -0,0 +1,23 @@ +{ + "slug": "serious-sam-hd", + "name": "Serious Sam HD", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120253523" + ], + "release_date": "2009-11-24", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "first-person shooter" + ], + "developers": [ + "Croteam" + ], + "publishers": [ + "Devolver Digital", + "Croteam" + ] +} diff --git a/data/game/se/serious-sam-siberian-mayhem.json b/data/game/se/serious-sam-siberian-mayhem.json new file mode 100644 index 000000000000..7cdc37a7ad44 --- /dev/null +++ b/data/game/se/serious-sam-siberian-mayhem.json @@ -0,0 +1,23 @@ +{ + "slug": "serious-sam-siberian-mayhem", + "name": "Serious Sam: Siberian Mayhem", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110513677" + ], + "release_date": "2022-01-25", + "platforms": [ + "Xbox Series X and Series S", + "Microsoft Windows" + ], + "genres": [ + "first-person shooter" + ], + "developers": [ + "Timelock Studio", + "Croteam" + ], + "publishers": [ + "Devolver Digital" + ] +} diff --git a/data/game/se/serious-sam-vr-bundle.json b/data/game/se/serious-sam-vr-bundle.json new file mode 100644 index 000000000000..1c1b5d70a681 --- /dev/null +++ b/data/game/se/serious-sam-vr-bundle.json @@ -0,0 +1,25 @@ +{ + "slug": "serious-sam-vr-bundle", + "name": "Serious Sam VR Bundle", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121307029" + ], + "release_date": "2017-03-01", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "action-adventure game" + ], + "developers": [ + "Croteam VR", + "Croteam" + ], + "publishers": [ + "Croteam", + "Devolver Digital", + "Croteam Publishing" + ] +} diff --git a/data/game/se/serious-sam-vr-the-first-encounter-q121307091.json b/data/game/se/serious-sam-vr-the-first-encounter-q121307091.json new file mode 100644 index 000000000000..d34b69c00593 --- /dev/null +++ b/data/game/se/serious-sam-vr-the-first-encounter-q121307091.json @@ -0,0 +1,25 @@ +{ + "slug": "serious-sam-vr-the-first-encounter-q121307091", + "name": "Serious Sam VR: The First Encounter", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121307091" + ], + "release_date": "2017-03-30", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "action-adventure game" + ], + "developers": [ + "Croteam VR", + "Croteam" + ], + "publishers": [ + "Croteam", + "Devolver Digital" + ] +} diff --git a/data/game/se/serious-savings.json b/data/game/se/serious-savings.json new file mode 100644 index 000000000000..9d17d1c49fd8 --- /dev/null +++ b/data/game/se/serious-savings.json @@ -0,0 +1,23 @@ +{ + "slug": "serious-savings", + "name": "Serious Savings", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121306860" + ], + "release_date": "2022-01-11", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "action-adventure game" + ], + "developers": [ + "Timelock Studio", + "Croteam" + ], + "publishers": [ + "Devolver Digital" + ] +} diff --git a/data/game/se/sex-story-cuckold-life-episode-1.json b/data/game/se/sex-story-cuckold-life-episode-1.json new file mode 100644 index 000000000000..8bf877faac56 --- /dev/null +++ b/data/game/se/sex-story-cuckold-life-episode-1.json @@ -0,0 +1,24 @@ +{ + "slug": "sex-story-cuckold-life-episode-1", + "name": "Sex Story - Cuckold Life - Episode 1", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121307164" + ], + "release_date": "2023-08-01", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "visual novel", + "erotic video game", + "episodic video game" + ], + "developers": [ + "EroticGamesClub" + ], + "publishers": [ + "EroticGamesClub" + ] +} diff --git a/data/game/sh/shadow-blade-q111154317.json b/data/game/sh/shadow-blade-q111154317.json new file mode 100644 index 000000000000..929eda6ff6fc --- /dev/null +++ b/data/game/sh/shadow-blade-q111154317.json @@ -0,0 +1,13 @@ +{ + "slug": "shadow-blade-q111154317", + "name": "Shadow Blade+", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111154317" + ], + "release_date": "2022-03-04", + "platforms": [ + "iPadOS", + "iOS" + ] +} diff --git a/data/game/sh/shadow-gambit-zagan-s-ritual.json b/data/game/sh/shadow-gambit-zagan-s-ritual.json new file mode 100644 index 000000000000..b9a9366cdec6 --- /dev/null +++ b/data/game/sh/shadow-gambit-zagan-s-ritual.json @@ -0,0 +1,8 @@ +{ + "slug": "shadow-gambit-zagan-s-ritual", + "name": "Shadow Gambit: Zagan's Ritual", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140401001" + ] +} diff --git a/data/game/sh/shadow-of-the-eternals.json b/data/game/sh/shadow-of-the-eternals.json new file mode 100644 index 000000000000..ffa77334c621 --- /dev/null +++ b/data/game/sh/shadow-of-the-eternals.json @@ -0,0 +1,22 @@ +{ + "slug": "shadow-of-the-eternals", + "name": "Shadow of the Eternals", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q98456218" + ], + "platforms": [ + "Wii U", + "Microsoft Windows" + ], + "genres": [ + "action-adventure game", + "psychological horror fiction" + ], + "developers": [ + "Precursor Games" + ], + "publishers": [ + "Precursor Games" + ] +} diff --git a/data/game/sh/shadow-of-the-tomb-raider-definitive-edition.json b/data/game/sh/shadow-of-the-tomb-raider-definitive-edition.json new file mode 100644 index 000000000000..524c8c6a67d0 --- /dev/null +++ b/data/game/sh/shadow-of-the-tomb-raider-definitive-edition.json @@ -0,0 +1,8 @@ +{ + "slug": "shadow-of-the-tomb-raider-definitive-edition", + "name": "Shadow of the Tomb Raider: Definitive Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105985887" + ] +} diff --git a/data/game/sh/shadow-warrior-twin-dragon.json b/data/game/sh/shadow-warrior-twin-dragon.json new file mode 100644 index 000000000000..2e9833516200 --- /dev/null +++ b/data/game/sh/shadow-warrior-twin-dragon.json @@ -0,0 +1,8 @@ +{ + "slug": "shadow-warrior-twin-dragon", + "name": "Shadow Warrior: Twin Dragon", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122615169" + ] +} diff --git a/data/game/sh/shadow-warrior-wanton-destruction.json b/data/game/sh/shadow-warrior-wanton-destruction.json new file mode 100644 index 000000000000..adbc4a8d8f9b --- /dev/null +++ b/data/game/sh/shadow-warrior-wanton-destruction.json @@ -0,0 +1,11 @@ +{ + "slug": "shadow-warrior-wanton-destruction", + "name": "Shadow Warrior: Wanton Destruction", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122615145" + ], + "publishers": [ + "3D Realms" + ] +} diff --git a/data/game/sh/shadowbane-throne-of-oblivion.json b/data/game/sh/shadowbane-throne-of-oblivion.json new file mode 100644 index 000000000000..988a7776b53b --- /dev/null +++ b/data/game/sh/shadowbane-throne-of-oblivion.json @@ -0,0 +1,8 @@ +{ + "slug": "shadowbane-throne-of-oblivion", + "name": "Shadowbane: Throne of Oblivion", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140390644" + ] +} diff --git a/data/game/sh/shadowgrounds-demo.json b/data/game/sh/shadowgrounds-demo.json new file mode 100644 index 000000000000..c3706893c04c --- /dev/null +++ b/data/game/sh/shadowgrounds-demo.json @@ -0,0 +1,22 @@ +{ + "slug": "shadowgrounds-demo", + "name": "Shadowgrounds Demo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122706428" + ], + "release_date": "2006-05-01", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "science fiction video game", + "top-down shooter" + ], + "developers": [ + "Frozenbyte" + ], + "publishers": [ + "Frozenbyte" + ] +} diff --git a/data/game/sh/shadowrun-dragonfall.json b/data/game/sh/shadowrun-dragonfall.json new file mode 100644 index 000000000000..f1b5afd28a9a --- /dev/null +++ b/data/game/sh/shadowrun-dragonfall.json @@ -0,0 +1,21 @@ +{ + "slug": "shadowrun-dragonfall", + "name": "Shadowrun: Dragonfall", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22019741" + ], + "release_date": "2014-02-27", + "platforms": [ + "macOS", + "Microsoft Windows", + "iOS" + ], + "genres": [ + "role-playing video game", + "cyberpunk video game" + ], + "developers": [ + "Harebrained Schemes" + ] +} diff --git a/data/game/sh/shadows-on-the-vatican-act-1-greed.json b/data/game/sh/shadows-on-the-vatican-act-1-greed.json new file mode 100644 index 000000000000..d29fa9761af2 --- /dev/null +++ b/data/game/sh/shadows-on-the-vatican-act-1-greed.json @@ -0,0 +1,15 @@ +{ + "slug": "shadows-on-the-vatican-act-1-greed", + "name": "Shadows on the Vatican - Act 1: Greed", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q98119313" + ], + "release_date": "2014-06-10", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "adventure video game" + ] +} diff --git a/data/game/sh/shadows-on-the-vatican-act-ii-wrath.json b/data/game/sh/shadows-on-the-vatican-act-ii-wrath.json new file mode 100644 index 000000000000..954c5b45f272 --- /dev/null +++ b/data/game/sh/shadows-on-the-vatican-act-ii-wrath.json @@ -0,0 +1,15 @@ +{ + "slug": "shadows-on-the-vatican-act-ii-wrath", + "name": "Shadows on the Vatican - Act II: Wrath", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q98119331" + ], + "release_date": "2015-10-26", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "adventure video game" + ] +} diff --git a/data/game/sh/shady-o-grady-s-rising-star.json b/data/game/sh/shady-o-grady-s-rising-star.json new file mode 100644 index 000000000000..0a8b4afc7bf5 --- /dev/null +++ b/data/game/sh/shady-o-grady-s-rising-star.json @@ -0,0 +1,8 @@ +{ + "slug": "shady-o-grady-s-rising-star", + "name": "Shady O'Grady's Rising Star", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140471361" + ] +} diff --git a/data/game/sh/shake-ii.json b/data/game/sh/shake-ii.json new file mode 100644 index 000000000000..c0ed737431a2 --- /dev/null +++ b/data/game/sh/shake-ii.json @@ -0,0 +1,8 @@ +{ + "slug": "shake-ii", + "name": "Shake II", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17231795" + ] +} diff --git a/data/game/sh/shake-q11306932.json b/data/game/sh/shake-q11306932.json new file mode 100644 index 000000000000..7a233ec487da --- /dev/null +++ b/data/game/sh/shake-q11306932.json @@ -0,0 +1,8 @@ +{ + "slug": "shake-q11306932", + "name": "Shake", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11306932" + ] +} diff --git a/data/game/sh/shapez-puzzle-dlc.json b/data/game/sh/shapez-puzzle-dlc.json new file mode 100644 index 000000000000..2b0ec11a53c9 --- /dev/null +++ b/data/game/sh/shapez-puzzle-dlc.json @@ -0,0 +1,16 @@ +{ + "slug": "shapez-puzzle-dlc", + "name": "shapez - Puzzle DLC", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124412881" + ], + "release_date": "2021-06-22", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "puzzle video game" + ] +} diff --git a/data/game/sh/shark-attack-pack.json b/data/game/sh/shark-attack-pack.json new file mode 100644 index 000000000000..9d93268e9518 --- /dev/null +++ b/data/game/sh/shark-attack-pack.json @@ -0,0 +1,12 @@ +{ + "slug": "shark-attack-pack", + "name": "Shark Attack Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60616766" + ], + "release_date": "2011-11-15", + "platforms": [ + "Microsoft Windows" + ] +} diff --git a/data/game/sh/sherlock-holmes-the-devil-s-daughter-redux.json b/data/game/sh/sherlock-holmes-the-devil-s-daughter-redux.json new file mode 100644 index 000000000000..836359b8cba6 --- /dev/null +++ b/data/game/sh/sherlock-holmes-the-devil-s-daughter-redux.json @@ -0,0 +1,18 @@ +{ + "slug": "sherlock-holmes-the-devil-s-daughter-redux", + "name": "Sherlock Holmes: The Devil’s Daughter Redux", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111149361" + ], + "release_date": "2022-03-03", + "platforms": [ + "Xbox Series X and Series S" + ], + "developers": [ + "Frogwares" + ], + "publishers": [ + "Frogwares" + ] +} diff --git a/data/game/sh/shi-kong-xing-shou.json b/data/game/sh/shi-kong-xing-shou.json new file mode 100644 index 000000000000..adb48eac9493 --- /dev/null +++ b/data/game/sh/shi-kong-xing-shou.json @@ -0,0 +1,17 @@ +{ + "slug": "shi-kong-xing-shou", + "name": "Shi Kong Xing Shou", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122382416" + ], + "platforms": [ + "Game Boy Color" + ], + "genres": [ + "role-playing video game" + ], + "developers": [ + "Vast Fame" + ] +} diff --git a/data/game/sh/shin-yoshimune.json b/data/game/sh/shin-yoshimune.json new file mode 100644 index 000000000000..ec9f07ac1000 --- /dev/null +++ b/data/game/sh/shin-yoshimune.json @@ -0,0 +1,8 @@ +{ + "slug": "shin-yoshimune", + "name": "Shin-Yoshimune", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11501004" + ] +} diff --git a/data/game/sh/shinobi-q2327011.json b/data/game/sh/shinobi-q2327011.json new file mode 100644 index 000000000000..d7621f400a7d --- /dev/null +++ b/data/game/sh/shinobi-q2327011.json @@ -0,0 +1,19 @@ +{ + "slug": "shinobi-q2327011", + "name": "Shinobi", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2327011" + ], + "release_date": "2002-11-10", + "genres": [ + "action game", + "action-adventure game" + ], + "developers": [ + "Sega Wow" + ], + "publishers": [ + "Sega" + ] +} diff --git a/data/game/sh/shogun-total-war-the-mongol-invasion.json b/data/game/sh/shogun-total-war-the-mongol-invasion.json new file mode 100644 index 000000000000..e4f0a95eb598 --- /dev/null +++ b/data/game/sh/shogun-total-war-the-mongol-invasion.json @@ -0,0 +1,8 @@ +{ + "slug": "shogun-total-war-the-mongol-invasion", + "name": "Shogun: Total War: The Mongol Invasion", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3482437" + ] +} diff --git a/data/game/sh/shogunate.json b/data/game/sh/shogunate.json new file mode 100644 index 000000000000..eab8857004e9 --- /dev/null +++ b/data/game/sh/shogunate.json @@ -0,0 +1,9 @@ +{ + "slug": "shogunate", + "name": "Shogunate", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127280105" + ], + "release_date": "2020-10-10" +} diff --git a/data/game/sh/shovel-knight-king-of-cards.json b/data/game/sh/shovel-knight-king-of-cards.json new file mode 100644 index 000000000000..2061eeaa485d --- /dev/null +++ b/data/game/sh/shovel-knight-king-of-cards.json @@ -0,0 +1,22 @@ +{ + "slug": "shovel-knight-king-of-cards", + "name": "Shovel Knight: King of Cards", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q80947455" + ], + "release_date": "2019-12-10", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "platformer" + ], + "developers": [ + "Yacht Club Games" + ], + "publishers": [ + "Yacht Club Games" + ] +} diff --git a/data/game/sh/shrak-for-quake.json b/data/game/sh/shrak-for-quake.json new file mode 100644 index 000000000000..1777f8f4e218 --- /dev/null +++ b/data/game/sh/shrak-for-quake.json @@ -0,0 +1,8 @@ +{ + "slug": "shrak-for-quake", + "name": "Shrak for Quake", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122923436" + ] +} diff --git a/data/game/sh/shredfest.json b/data/game/sh/shredfest.json new file mode 100644 index 000000000000..12977294c7b1 --- /dev/null +++ b/data/game/sh/shredfest.json @@ -0,0 +1,17 @@ +{ + "slug": "shredfest", + "name": "Shredfest", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q114386361" + ], + "platforms": [ + "3DO" + ], + "developers": [ + "Electronic Arts" + ], + "publishers": [ + "Electronic Arts" + ] +} diff --git a/data/game/sh/shrek-2-team-action.json b/data/game/sh/shrek-2-team-action.json new file mode 100644 index 000000000000..28fd2a80c2f3 --- /dev/null +++ b/data/game/sh/shrek-2-team-action.json @@ -0,0 +1,18 @@ +{ + "slug": "shrek-2-team-action", + "name": "Shrek 2: Team Action", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4049421" + ], + "release_date": "2004-01-01", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Luxoflux" + ], + "publishers": [ + "Activision" + ] +} diff --git a/data/game/si/sid-meier-s-alien-crossfire.json b/data/game/si/sid-meier-s-alien-crossfire.json new file mode 100644 index 000000000000..039a6a703af6 --- /dev/null +++ b/data/game/si/sid-meier-s-alien-crossfire.json @@ -0,0 +1,24 @@ +{ + "slug": "sid-meier-s-alien-crossfire", + "name": "Sid Meier's Alien Crossfire", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1979080" + ], + "release_date": "1999-10-20", + "platforms": [ + "Classic Mac OS", + "DOS", + "Microsoft Windows" + ], + "genres": [ + "4X", + "hard science fiction video game" + ], + "developers": [ + "Firaxis Games" + ], + "publishers": [ + "Electronic Arts" + ] +} diff --git a/data/game/si/sid-meier-s-civil-war-collection.json b/data/game/si/sid-meier-s-civil-war-collection.json new file mode 100644 index 000000000000..45985e959457 --- /dev/null +++ b/data/game/si/sid-meier-s-civil-war-collection.json @@ -0,0 +1,8 @@ +{ + "slug": "sid-meier-s-civil-war-collection", + "name": "Sid Meier's Civil War Collection", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131935215" + ] +} diff --git a/data/game/si/sid-meier-s-civilization-iii-complete.json b/data/game/si/sid-meier-s-civilization-iii-complete.json new file mode 100644 index 000000000000..38bf9663e24a --- /dev/null +++ b/data/game/si/sid-meier-s-civilization-iii-complete.json @@ -0,0 +1,8 @@ +{ + "slug": "sid-meier-s-civilization-iii-complete", + "name": "Sid Meier's Civilization III Complete", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138847514" + ] +} diff --git a/data/game/si/sierra-sports-nfl-football-pro-2000.json b/data/game/si/sierra-sports-nfl-football-pro-2000.json new file mode 100644 index 000000000000..dd3e99c582e3 --- /dev/null +++ b/data/game/si/sierra-sports-nfl-football-pro-2000.json @@ -0,0 +1,8 @@ +{ + "slug": "sierra-sports-nfl-football-pro-2000", + "name": "Sierra Sports NFL Football Pro 2000", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q102165249" + ] +} diff --git a/data/game/si/sigil.json b/data/game/si/sigil.json new file mode 100644 index 000000000000..3b71bb4303b4 --- /dev/null +++ b/data/game/si/sigil.json @@ -0,0 +1,23 @@ +{ + "slug": "sigil", + "name": "Sigil", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63171171" + ], + "release_date": "2019-05-31", + "platforms": [ + "Classic Mac OS", + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "first-person shooter" + ], + "developers": [ + "John Romero" + ], + "publishers": [ + "Romero Games" + ] +} diff --git a/data/game/si/silent-hill-2-restless-dreams.json b/data/game/si/silent-hill-2-restless-dreams.json new file mode 100644 index 000000000000..b75071e4473a --- /dev/null +++ b/data/game/si/silent-hill-2-restless-dreams.json @@ -0,0 +1,14 @@ +{ + "slug": "silent-hill-2-restless-dreams", + "name": "Silent Hill 2: Restless Dreams", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q61314193" + ], + "platforms": [ + "Microsoft Windows" + ], + "publishers": [ + "Konami" + ] +} diff --git a/data/game/si/silent-hill-collection.json b/data/game/si/silent-hill-collection.json new file mode 100644 index 000000000000..27e2413a8a50 --- /dev/null +++ b/data/game/si/silent-hill-collection.json @@ -0,0 +1,8 @@ +{ + "slug": "silent-hill-collection", + "name": "Silent Hill Collection", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10371476" + ] +} diff --git a/data/game/si/silent-hill-hd-collection.json b/data/game/si/silent-hill-hd-collection.json new file mode 100644 index 000000000000..ded678bba7a4 --- /dev/null +++ b/data/game/si/silent-hill-hd-collection.json @@ -0,0 +1,20 @@ +{ + "slug": "silent-hill-hd-collection", + "name": "Silent Hill HD Collection", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6128329" + ], + "platforms": [ + "PlayStation 3" + ], + "genres": [ + "survival horror" + ], + "developers": [ + "Hijinx Studios" + ], + "publishers": [ + "Konami" + ] +} diff --git a/data/game/si/silent-hunter-4-wolves-of-the-pacific-u-boat-missions.json b/data/game/si/silent-hunter-4-wolves-of-the-pacific-u-boat-missions.json new file mode 100644 index 000000000000..1e0119cb60d8 --- /dev/null +++ b/data/game/si/silent-hunter-4-wolves-of-the-pacific-u-boat-missions.json @@ -0,0 +1,15 @@ +{ + "slug": "silent-hunter-4-wolves-of-the-pacific-u-boat-missions", + "name": "Silent Hunter 4: Wolves of the Pacific U-Boat Missions", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3960496" + ], + "release_date": "2008-02-29", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Ubisoft Romania" + ] +} diff --git a/data/game/si/silent-scope-complete.json b/data/game/si/silent-scope-complete.json new file mode 100644 index 000000000000..a5f43c3f1815 --- /dev/null +++ b/data/game/si/silent-scope-complete.json @@ -0,0 +1,8 @@ +{ + "slug": "silent-scope-complete", + "name": "Silent Scope Complete", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q55086506" + ] +} diff --git a/data/game/si/silent-space.json b/data/game/si/silent-space.json new file mode 100644 index 000000000000..dc8a83462e8e --- /dev/null +++ b/data/game/si/silent-space.json @@ -0,0 +1,14 @@ +{ + "slug": "silent-space", + "name": "Silent Space", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4049481" + ], + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "real-time strategy" + ] +} diff --git a/data/game/si/silver-box-classics.json b/data/game/si/silver-box-classics.json new file mode 100644 index 000000000000..be022c642691 --- /dev/null +++ b/data/game/si/silver-box-classics.json @@ -0,0 +1,17 @@ +{ + "slug": "silver-box-classics", + "name": "Silver Box Classics", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135027735" + ], + "release_date": "2023-03-27", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "adventure video game", + "action game", + "role-playing video game" + ] +} diff --git a/data/game/si/silver-falls-survive.json b/data/game/si/silver-falls-survive.json new file mode 100644 index 000000000000..22a9f2e8eac6 --- /dev/null +++ b/data/game/si/silver-falls-survive.json @@ -0,0 +1,21 @@ +{ + "slug": "silver-falls-survive", + "name": "Silver Falls Survive", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124358433" + ], + "release_date": "2023-10-25", + "platforms": [ + "PlayStation Vita" + ], + "genres": [ + "horror video game" + ], + "developers": [ + "Sungrand Studios" + ], + "publishers": [ + "Sungrand Studios" + ] +} diff --git a/data/game/si/silver-star-go.json b/data/game/si/silver-star-go.json new file mode 100644 index 000000000000..ea3b7d06fe94 --- /dev/null +++ b/data/game/si/silver-star-go.json @@ -0,0 +1,11 @@ +{ + "slug": "silver-star-go", + "name": "Silver Star Go", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11650013" + ], + "publishers": [ + "SilverStarJapan Co., Ltd." + ] +} diff --git a/data/game/si/silverfall-earth-awakening.json b/data/game/si/silverfall-earth-awakening.json new file mode 100644 index 000000000000..d47c7b8d9bfa --- /dev/null +++ b/data/game/si/silverfall-earth-awakening.json @@ -0,0 +1,22 @@ +{ + "slug": "silverfall-earth-awakening", + "name": "Silverfall: Earth Awakening", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110817128" + ], + "release_date": "2008-01-01", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "role-playing video game" + ], + "developers": [ + "Monte Cristo" + ], + "publishers": [ + "Akella", + "Monte Cristo" + ] +} diff --git a/data/game/si/sim-city-2000-cd-collection.json b/data/game/si/sim-city-2000-cd-collection.json new file mode 100644 index 000000000000..efbcf2f7b621 --- /dev/null +++ b/data/game/si/sim-city-2000-cd-collection.json @@ -0,0 +1,8 @@ +{ + "slug": "sim-city-2000-cd-collection", + "name": "Sim City 2000 - CD Collection", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124005868" + ] +} diff --git a/data/game/si/sim-city-2000-urban-renewal-kit.json b/data/game/si/sim-city-2000-urban-renewal-kit.json new file mode 100644 index 000000000000..7f4bb30defcc --- /dev/null +++ b/data/game/si/sim-city-2000-urban-renewal-kit.json @@ -0,0 +1,8 @@ +{ + "slug": "sim-city-2000-urban-renewal-kit", + "name": "Sim City 2000: Urban Renewal Kit", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124720513" + ] +} diff --git a/data/game/si/sim-city-architecture-1-future-cities.json b/data/game/si/sim-city-architecture-1-future-cities.json new file mode 100644 index 000000000000..77df31408767 --- /dev/null +++ b/data/game/si/sim-city-architecture-1-future-cities.json @@ -0,0 +1,11 @@ +{ + "slug": "sim-city-architecture-1-future-cities", + "name": "Sim City Architecture 1: Future Cities", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124002338" + ], + "developers": [ + "Maxis" + ] +} diff --git a/data/game/si/sim-city-classic-the-original-city-simulator.json b/data/game/si/sim-city-classic-the-original-city-simulator.json new file mode 100644 index 000000000000..858db905a438 --- /dev/null +++ b/data/game/si/sim-city-classic-the-original-city-simulator.json @@ -0,0 +1,8 @@ +{ + "slug": "sim-city-classic-the-original-city-simulator", + "name": "Sim City Classic: The Original City Simulator", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126186004" + ] +} diff --git a/data/game/si/sim-city-deluxe.json b/data/game/si/sim-city-deluxe.json new file mode 100644 index 000000000000..5e5606627f0f --- /dev/null +++ b/data/game/si/sim-city-deluxe.json @@ -0,0 +1,8 @@ +{ + "slug": "sim-city-deluxe", + "name": "Sim City Deluxe", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124001766" + ] +} diff --git a/data/game/si/sim-city-terrain-editor.json b/data/game/si/sim-city-terrain-editor.json new file mode 100644 index 000000000000..bab5f5aeddf5 --- /dev/null +++ b/data/game/si/sim-city-terrain-editor.json @@ -0,0 +1,8 @@ +{ + "slug": "sim-city-terrain-editor", + "name": "Sim City: Terrain Editor", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110990986" + ] +} diff --git a/data/game/si/simcity-2000-scenarios-volume-i-great-disasters.json b/data/game/si/simcity-2000-scenarios-volume-i-great-disasters.json new file mode 100644 index 000000000000..e985b3c45608 --- /dev/null +++ b/data/game/si/simcity-2000-scenarios-volume-i-great-disasters.json @@ -0,0 +1,23 @@ +{ + "slug": "simcity-2000-scenarios-volume-i-great-disasters", + "name": "SimCity 2000: Scenarios Volume I: Great Disasters", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110910366" + ], + "platforms": [ + "Classic Mac OS", + "NEC PC-9800 series", + "DOS", + "Microsoft Windows" + ], + "genres": [ + "city-building game" + ], + "developers": [ + "Maxis" + ], + "publishers": [ + "Maxis" + ] +} diff --git a/data/game/si/simcity-4-deluxe-edition.json b/data/game/si/simcity-4-deluxe-edition.json new file mode 100644 index 000000000000..c9ef93a22749 --- /dev/null +++ b/data/game/si/simcity-4-deluxe-edition.json @@ -0,0 +1,9 @@ +{ + "slug": "simcity-4-deluxe-edition", + "name": "SimCity 4 Deluxe Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124002393" + ], + "release_date": "2003-09-22" +} diff --git a/data/game/si/simcity-4-rush-hour.json b/data/game/si/simcity-4-rush-hour.json new file mode 100644 index 000000000000..c11633c67836 --- /dev/null +++ b/data/game/si/simcity-4-rush-hour.json @@ -0,0 +1,22 @@ +{ + "slug": "simcity-4-rush-hour", + "name": "SimCity 4: Rush Hour", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q951915" + ], + "release_date": "2003-09-22", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "city-building game" + ], + "developers": [ + "Maxis" + ], + "publishers": [ + "Electronic Arts" + ] +} diff --git a/data/game/si/simcity-cities-of-tomorrow.json b/data/game/si/simcity-cities-of-tomorrow.json new file mode 100644 index 000000000000..081920176013 --- /dev/null +++ b/data/game/si/simcity-cities-of-tomorrow.json @@ -0,0 +1,12 @@ +{ + "slug": "simcity-cities-of-tomorrow", + "name": "SimCity: Cities Of Tomorrow", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108028619" + ], + "release_date": "2013-11-12", + "platforms": [ + "Microsoft Windows" + ] +} diff --git a/data/game/si/simcity-classic.json b/data/game/si/simcity-classic.json new file mode 100644 index 000000000000..047b0940ec88 --- /dev/null +++ b/data/game/si/simcity-classic.json @@ -0,0 +1,8 @@ +{ + "slug": "simcity-classic", + "name": "SimCity Classic", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126902335" + ] +} diff --git a/data/game/si/simcity-de-luxe.json b/data/game/si/simcity-de-luxe.json new file mode 100644 index 000000000000..aebc6a940679 --- /dev/null +++ b/data/game/si/simcity-de-luxe.json @@ -0,0 +1,8 @@ +{ + "slug": "simcity-de-luxe", + "name": "SimCity De Luxe", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126870480" + ] +} diff --git a/data/game/si/simcity-graphics-set-2-future-cities.json b/data/game/si/simcity-graphics-set-2-future-cities.json new file mode 100644 index 000000000000..d899152316f8 --- /dev/null +++ b/data/game/si/simcity-graphics-set-2-future-cities.json @@ -0,0 +1,11 @@ +{ + "slug": "simcity-graphics-set-2-future-cities", + "name": "SimCity Graphics Set 2: Future Cities", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126870485" + ], + "platforms": [ + "Commodore Amiga" + ] +} diff --git a/data/game/si/simcity-societies-destinations.json b/data/game/si/simcity-societies-destinations.json new file mode 100644 index 000000000000..4161ff8afb52 --- /dev/null +++ b/data/game/si/simcity-societies-destinations.json @@ -0,0 +1,21 @@ +{ + "slug": "simcity-societies-destinations", + "name": "SimCity Societies: Destinations", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q660550" + ], + "release_date": "2008-06-23", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "city-building game" + ], + "developers": [ + "Tilted Mill Entertainment" + ], + "publishers": [ + "Electronic Arts" + ] +} diff --git a/data/game/si/simmars.json b/data/game/si/simmars.json new file mode 100644 index 000000000000..2d4e2340eef8 --- /dev/null +++ b/data/game/si/simmars.json @@ -0,0 +1,17 @@ +{ + "slug": "simmars", + "name": "SimMars", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2718402" + ], + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "city-building game" + ], + "developers": [ + "Maxis" + ] +} diff --git a/data/game/si/simsville.json b/data/game/si/simsville.json new file mode 100644 index 000000000000..bf67a68e7719 --- /dev/null +++ b/data/game/si/simsville.json @@ -0,0 +1,20 @@ +{ + "slug": "simsville", + "name": "SimsVille", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1994996" + ], + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ], + "developers": [ + "Maxis" + ], + "publishers": [ + "Electronic Arts" + ] +} diff --git a/data/game/si/simulators-of-our-life.json b/data/game/si/simulators-of-our-life.json new file mode 100644 index 000000000000..f86f692e0c45 --- /dev/null +++ b/data/game/si/simulators-of-our-life.json @@ -0,0 +1,18 @@ +{ + "slug": "simulators-of-our-life", + "name": "Simulators of our life", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121133168" + ], + "release_date": "2019-10-13", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "publishers": [ + "MoyBatya" + ] +} diff --git a/data/game/si/sin-episodes-emergence-german.json b/data/game/si/sin-episodes-emergence-german.json new file mode 100644 index 000000000000..8f4602a1b1c7 --- /dev/null +++ b/data/game/si/sin-episodes-emergence-german.json @@ -0,0 +1,21 @@ +{ + "slug": "sin-episodes-emergence-german", + "name": "SiN Episodes: Emergence German", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122704968" + ], + "release_date": "2006-01-01", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter" + ], + "developers": [ + "Ritual Entertainment" + ], + "publishers": [ + "Ritual Entertainment" + ] +} diff --git a/data/game/si/sin-gold.json b/data/game/si/sin-gold.json new file mode 100644 index 000000000000..e5fee8f59064 --- /dev/null +++ b/data/game/si/sin-gold.json @@ -0,0 +1,11 @@ +{ + "slug": "sin-gold", + "name": "SiN Gold", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q133165501" + ], + "platforms": [ + "Classic Mac OS" + ] +} diff --git a/data/game/si/sin-wages-of-sin.json b/data/game/si/sin-wages-of-sin.json new file mode 100644 index 000000000000..dc7a9471465a --- /dev/null +++ b/data/game/si/sin-wages-of-sin.json @@ -0,0 +1,23 @@ +{ + "slug": "sin-wages-of-sin", + "name": "SiN: Wages of Sin", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4049429" + ], + "release_date": "1999-02-26", + "platforms": [ + "Mac operating system", + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "biopunk" + ], + "developers": [ + "2015, Inc." + ], + "publishers": [ + "Activision" + ] +} diff --git a/data/game/si/sins-of-a-solar-empire-diplomacy.json b/data/game/si/sins-of-a-solar-empire-diplomacy.json new file mode 100644 index 000000000000..206ff87bb247 --- /dev/null +++ b/data/game/si/sins-of-a-solar-empire-diplomacy.json @@ -0,0 +1,8 @@ +{ + "slug": "sins-of-a-solar-empire-diplomacy", + "name": "Sins of a Solar Empire: Diplomacy", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110156008" + ] +} diff --git a/data/game/si/sins-of-a-solar-empire-entrenchment.json b/data/game/si/sins-of-a-solar-empire-entrenchment.json new file mode 100644 index 000000000000..a8c3757098f0 --- /dev/null +++ b/data/game/si/sins-of-a-solar-empire-entrenchment.json @@ -0,0 +1,8 @@ +{ + "slug": "sins-of-a-solar-empire-entrenchment", + "name": "Sins of a Solar Empire: Entrenchment", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110155972" + ] +} diff --git a/data/game/si/sister-sonic.json b/data/game/si/sister-sonic.json new file mode 100644 index 000000000000..4e17dc1c09cd --- /dev/null +++ b/data/game/si/sister-sonic.json @@ -0,0 +1,18 @@ +{ + "slug": "sister-sonic", + "name": "Sister Sonic", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17265321" + ], + "genres": [ + "role-playing video game" + ], + "developers": [ + "Nihon Falcom", + "Sonic Team" + ], + "publishers": [ + "Sega" + ] +} diff --git a/data/game/si/sisyphus-simulator.json b/data/game/si/sisyphus-simulator.json new file mode 100644 index 000000000000..dfa102dacdc4 --- /dev/null +++ b/data/game/si/sisyphus-simulator.json @@ -0,0 +1,12 @@ +{ + "slug": "sisyphus-simulator", + "name": "Sisyphus Simulator", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126958213" + ], + "release_date": "2023-10-13", + "genres": [ + "clicker game" + ] +} diff --git a/data/game/si/six-eight-two.json b/data/game/si/six-eight-two.json new file mode 100644 index 000000000000..dfe272db20a6 --- /dev/null +++ b/data/game/si/six-eight-two.json @@ -0,0 +1,22 @@ +{ + "slug": "six-eight-two", + "name": "Six-Eight-Two", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q61755646" + ], + "release_date": "2012-07-18", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "horror video game" + ], + "developers": [ + "Divinity Studios" + ], + "publishers": [ + "Divinity Studios" + ] +} diff --git a/data/game/sk/skill-treasury.json b/data/game/sk/skill-treasury.json new file mode 100644 index 000000000000..efe1e81d0a5d --- /dev/null +++ b/data/game/sk/skill-treasury.json @@ -0,0 +1,9 @@ +{ + "slug": "skill-treasury", + "name": "Skill Treasury", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112582107" + ], + "release_date": "2013-03-24" +} diff --git a/data/game/sk/skip-barber-racing.json b/data/game/sk/skip-barber-racing.json new file mode 100644 index 000000000000..ac003277721a --- /dev/null +++ b/data/game/sk/skip-barber-racing.json @@ -0,0 +1,11 @@ +{ + "slug": "skip-barber-racing", + "name": "Skip Barber Racing", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111432816" + ], + "platforms": [ + "Microsoft Windows" + ] +} diff --git a/data/game/sk/skullgirls-2nd-encore.json b/data/game/sk/skullgirls-2nd-encore.json new file mode 100644 index 000000000000..9016fb22c0e0 --- /dev/null +++ b/data/game/sk/skullgirls-2nd-encore.json @@ -0,0 +1,32 @@ +{ + "slug": "skullgirls-2nd-encore", + "name": "Skullgirls: 2nd Encore", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131864013" + ], + "release_date": "2015-07-07", + "platforms": [ + "Xbox Series X and Series S", + "arcade video game machine", + "PlayStation Vita", + "PlayStation 4", + "macOS", + "Microsoft Windows" + ], + "genres": [ + "2D fighting game" + ], + "developers": [ + "Hidden Variable Studios", + "Lab Zero Games", + "M2" + ], + "publishers": [ + "Autumn Games", + "Skybound Games", + "Hidden Variable Studios", + "Marvelous", + "Arc System Works" + ] +} diff --git a/data/game/sk/skulltag.json b/data/game/sk/skulltag.json new file mode 100644 index 000000000000..852b5ff0a0b0 --- /dev/null +++ b/data/game/sk/skulltag.json @@ -0,0 +1,8 @@ +{ + "slug": "skulltag", + "name": "Skulltag", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q9078258" + ] +} diff --git a/data/game/sk/skyblivion.json b/data/game/sk/skyblivion.json new file mode 100644 index 000000000000..c04ed82b36cf --- /dev/null +++ b/data/game/sk/skyblivion.json @@ -0,0 +1,20 @@ +{ + "slug": "skyblivion", + "name": "Skyblivion", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116475018" + ], + "release_date": "2026-01-01", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "action-adventure game", + "role-playing video game", + "fantasy video game" + ], + "developers": [ + "The Elder Scrolls Renewal Project" + ] +} diff --git a/data/game/sk/skyrama.json b/data/game/sk/skyrama.json new file mode 100644 index 000000000000..b56cddfad756 --- /dev/null +++ b/data/game/sk/skyrama.json @@ -0,0 +1,13 @@ +{ + "slug": "skyrama", + "name": "Skyrama", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11893875" + ], + "release_date": "2011-01-01", + "genres": [ + "business simulation game", + "massively multiplayer online game" + ] +} diff --git a/data/game/sl/slavehack.json b/data/game/sl/slavehack.json new file mode 100644 index 000000000000..956bf9e7c4a2 --- /dev/null +++ b/data/game/sl/slavehack.json @@ -0,0 +1,15 @@ +{ + "slug": "slavehack", + "name": "SlaveHack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1849870" + ], + "release_date": "2006-01-01", + "platforms": [ + "web browser" + ], + "developers": [ + "M2H" + ] +} diff --git a/data/game/sl/slay-the-princess-demo.json b/data/game/sl/slay-the-princess-demo.json new file mode 100644 index 000000000000..f2b5bb234260 --- /dev/null +++ b/data/game/sl/slay-the-princess-demo.json @@ -0,0 +1,36 @@ +{ + "slug": "slay-the-princess-demo", + "name": "Slay the Princess Demo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122766298" + ], + "release_date": "2022-08-01", + "platforms": [ + "macOS", + "PlayStation 5", + "Xbox Series X and Series S", + "Microsoft Windows", + "PlayStation 4" + ], + "genres": [ + "adventure video game", + "visual novel", + "role-playing video game", + "dating sim", + "romance video game", + "dark fantasy video game", + "body horror video game", + "cosmic horror video game", + "psychological horror video game", + "apocalyptic video game", + "existentialist video game" + ], + "developers": [ + "Black Tabby Games" + ], + "publishers": [ + "Serenity Forge", + "Black Tabby Games" + ] +} diff --git a/data/game/sl/slay-the-princess-supporters-pack.json b/data/game/sl/slay-the-princess-supporters-pack.json new file mode 100644 index 000000000000..a90dd87ec416 --- /dev/null +++ b/data/game/sl/slay-the-princess-supporters-pack.json @@ -0,0 +1,30 @@ +{ + "slug": "slay-the-princess-supporters-pack", + "name": "Slay the Princess - Supporters Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130728650" + ], + "release_date": "2023-10-27", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "adventure video game", + "visual novel", + "romance video game", + "apocalyptic video game", + "existentialist video game", + "dark fantasy video game", + "body horror video game", + "cosmic horror video game", + "psychological horror video game" + ], + "developers": [ + "Black Tabby Games" + ], + "publishers": [ + "Black Tabby Games" + ] +} diff --git a/data/game/sl/slay-the-princess-the-pristine-cut.json b/data/game/sl/slay-the-princess-the-pristine-cut.json new file mode 100644 index 000000000000..d9d87b353725 --- /dev/null +++ b/data/game/sl/slay-the-princess-the-pristine-cut.json @@ -0,0 +1,34 @@ +{ + "slug": "slay-the-princess-the-pristine-cut", + "name": "Slay the Princess - The Pristine Cut", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130728048" + ], + "release_date": "2024-10-24", + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 5", + "PlayStation 4", + "macOS", + "Microsoft Windows" + ], + "genres": [ + "adventure video game", + "visual novel", + "romance video game", + "apocalyptic video game", + "existentialist video game", + "dark fantasy video game", + "body horror video game", + "cosmic horror video game", + "psychological horror video game" + ], + "developers": [ + "Black Tabby Games" + ], + "publishers": [ + "Serenity Forge", + "Black Tabby Games" + ] +} diff --git a/data/game/sl/slay-the-spire-q122704798.json b/data/game/sl/slay-the-spire-q122704798.json new file mode 100644 index 000000000000..ebfe937a6ffb --- /dev/null +++ b/data/game/sl/slay-the-spire-q122704798.json @@ -0,0 +1,13 @@ +{ + "slug": "slay-the-spire-q122704798", + "name": "Slay the Spire+", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122704798" + ], + "release_date": "2023-07-07", + "platforms": [ + "iPadOS", + "iOS" + ] +} diff --git a/data/game/sl/sleepin-guy-deluxe-edition.json b/data/game/sl/sleepin-guy-deluxe-edition.json new file mode 100644 index 000000000000..f326837679b3 --- /dev/null +++ b/data/game/sl/sleepin-guy-deluxe-edition.json @@ -0,0 +1,19 @@ +{ + "slug": "sleepin-guy-deluxe-edition", + "name": "Sleepin' Guy Deluxe Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109996781" + ], + "release_date": "2021-12-03", + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 5" + ], + "developers": [ + "Fabio Ferrara" + ], + "publishers": [ + "Chubby Pixel" + ] +} diff --git a/data/game/sl/slenderman-eyes.json b/data/game/sl/slenderman-eyes.json new file mode 100644 index 000000000000..7a383c689541 --- /dev/null +++ b/data/game/sl/slenderman-eyes.json @@ -0,0 +1,16 @@ +{ + "slug": "slenderman-eyes", + "name": "Slenderman Eyes", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111084100" + ], + "platforms": [ + "macOS", + "iOS", + "Microsoft Windows" + ], + "genres": [ + "survival horror" + ] +} diff --git a/data/game/sl/slider-escape.json b/data/game/sl/slider-escape.json new file mode 100644 index 000000000000..edd5b1fc1060 --- /dev/null +++ b/data/game/sl/slider-escape.json @@ -0,0 +1,8 @@ +{ + "slug": "slider-escape", + "name": "Slider Escape", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q128014908" + ] +} diff --git a/data/game/sl/slime-san-superslime-edition.json b/data/game/sl/slime-san-superslime-edition.json new file mode 100644 index 000000000000..a9d25dd03e65 --- /dev/null +++ b/data/game/sl/slime-san-superslime-edition.json @@ -0,0 +1,8 @@ +{ + "slug": "slime-san-superslime-edition", + "name": "Slime-san Superslime Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107424303" + ] +} diff --git a/data/game/sl/slitherlink.json b/data/game/sl/slitherlink.json new file mode 100644 index 000000000000..5536a4fafcf0 --- /dev/null +++ b/data/game/sl/slitherlink.json @@ -0,0 +1,8 @@ +{ + "slug": "slitherlink", + "name": "Slitherlink", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2120242" + ] +} diff --git a/data/game/sl/sly-2-band-of-thieves-demo.json b/data/game/sl/sly-2-band-of-thieves-demo.json new file mode 100644 index 000000000000..088510936f5d --- /dev/null +++ b/data/game/sl/sly-2-band-of-thieves-demo.json @@ -0,0 +1,12 @@ +{ + "slug": "sly-2-band-of-thieves-demo", + "name": "Sly 2: Band of Thieves demo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122926028" + ], + "release_date": "2004-11-03", + "publishers": [ + "Sony Interactive Entertainment" + ] +} diff --git a/data/game/sm/smash-boats-waterlogged-edition.json b/data/game/sm/smash-boats-waterlogged-edition.json new file mode 100644 index 000000000000..c084ab50db34 --- /dev/null +++ b/data/game/sm/smash-boats-waterlogged-edition.json @@ -0,0 +1,18 @@ +{ + "slug": "smash-boats-waterlogged-edition", + "name": "Smash Boats Waterlogged Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115553947" + ], + "release_date": "2022-08-17", + "platforms": [ + "Xbox Series X and Series S" + ], + "developers": [ + "Smash House Games" + ], + "publishers": [ + "Smash House Games" + ] +} diff --git a/data/game/sm/smile-for-today.json b/data/game/sm/smile-for-today.json new file mode 100644 index 000000000000..bbdb62d44ca4 --- /dev/null +++ b/data/game/sm/smile-for-today.json @@ -0,0 +1,8 @@ +{ + "slug": "smile-for-today", + "name": "Smile For Today", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116434910" + ] +} diff --git a/data/game/sm/smmu.json b/data/game/sm/smmu.json new file mode 100644 index 000000000000..60a03ceee84b --- /dev/null +++ b/data/game/sm/smmu.json @@ -0,0 +1,8 @@ +{ + "slug": "smmu", + "name": "SMMU", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q67219614" + ] +} diff --git a/data/game/sn/snake-io-q118235248.json b/data/game/sn/snake-io-q118235248.json new file mode 100644 index 000000000000..115822a9356e --- /dev/null +++ b/data/game/sn/snake-io-q118235248.json @@ -0,0 +1,13 @@ +{ + "slug": "snake-io-q118235248", + "name": "Snake.io+", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118235248" + ], + "release_date": "2023-05-04", + "platforms": [ + "iPadOS", + "iOS" + ] +} diff --git a/data/game/sn/snappy-v.json b/data/game/sn/snappy-v.json new file mode 100644 index 000000000000..2e719d14912e --- /dev/null +++ b/data/game/sn/snappy-v.json @@ -0,0 +1,17 @@ +{ + "slug": "snappy-v", + "name": "Snappy v", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124060103" + ], + "platforms": [ + "PlayStation 3" + ], + "developers": [ + "RetroXMB" + ], + "publishers": [ + "RetroXMB" + ] +} diff --git a/data/game/sn/sniper-elite-3-ultimate-edition.json b/data/game/sn/sniper-elite-3-ultimate-edition.json new file mode 100644 index 000000000000..2dcec0f74e8e --- /dev/null +++ b/data/game/sn/sniper-elite-3-ultimate-edition.json @@ -0,0 +1,8 @@ +{ + "slug": "sniper-elite-3-ultimate-edition", + "name": "Sniper Elite 3 Ultimate Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q92204148" + ] +} diff --git a/data/game/sn/sniper-elite-5-deluxe-edition.json b/data/game/sn/sniper-elite-5-deluxe-edition.json new file mode 100644 index 000000000000..bde1b59c98b4 --- /dev/null +++ b/data/game/sn/sniper-elite-5-deluxe-edition.json @@ -0,0 +1,19 @@ +{ + "slug": "sniper-elite-5-deluxe-edition", + "name": "Sniper Elite 5 Deluxe Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112943544" + ], + "release_date": "2022-05-26", + "platforms": [ + "Xbox Series X and Series S", + "Microsoft Windows" + ], + "developers": [ + "Rebellion Developments" + ], + "publishers": [ + "Rebellion Developments" + ] +} diff --git a/data/game/sn/sniper-elite-complete-pack.json b/data/game/sn/sniper-elite-complete-pack.json new file mode 100644 index 000000000000..0547a2fd26f9 --- /dev/null +++ b/data/game/sn/sniper-elite-complete-pack.json @@ -0,0 +1,12 @@ +{ + "slug": "sniper-elite-complete-pack", + "name": "Sniper Elite Complete Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q71482127" + ], + "release_date": "2017-04-27", + "platforms": [ + "Microsoft Windows" + ] +} diff --git a/data/game/sn/sniper-ghost-warrior-contracts-2-complete-edition.json b/data/game/sn/sniper-ghost-warrior-contracts-2-complete-edition.json new file mode 100644 index 000000000000..773a3ae4caf0 --- /dev/null +++ b/data/game/sn/sniper-ghost-warrior-contracts-2-complete-edition.json @@ -0,0 +1,15 @@ +{ + "slug": "sniper-ghost-warrior-contracts-2-complete-edition", + "name": "Sniper Ghost Warrior Contracts 2 Complete Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111795825" + ], + "release_date": "2022-04-11", + "platforms": [ + "Xbox Series X and Series S" + ], + "publishers": [ + "CI Games S.A." + ] +} diff --git a/data/game/sn/sniper-ghost-warrior-contracts-full-arsenal-edition.json b/data/game/sn/sniper-ghost-warrior-contracts-full-arsenal-edition.json new file mode 100644 index 000000000000..ee2e05912685 --- /dev/null +++ b/data/game/sn/sniper-ghost-warrior-contracts-full-arsenal-edition.json @@ -0,0 +1,15 @@ +{ + "slug": "sniper-ghost-warrior-contracts-full-arsenal-edition", + "name": "Sniper Ghost Warrior Contracts Full Arsenal Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111821128" + ], + "release_date": "2022-04-21", + "platforms": [ + "Xbox Series X and Series S" + ], + "publishers": [ + "CI Games S.A." + ] +} diff --git a/data/game/sn/snk-40th-anniversary-collection.json b/data/game/sn/snk-40th-anniversary-collection.json new file mode 100644 index 000000000000..675d80f63cbc --- /dev/null +++ b/data/game/sn/snk-40th-anniversary-collection.json @@ -0,0 +1,16 @@ +{ + "slug": "snk-40th-anniversary-collection", + "name": "SNK 40th Anniversary Collection", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q65040546" + ], + "release_date": "2018-01-01", + "platforms": [ + "PlayStation 4", + "Microsoft Windows" + ], + "publishers": [ + "SNK" + ] +} diff --git a/data/game/sn/snk-arcade-classics-vol-1.json b/data/game/sn/snk-arcade-classics-vol-1.json new file mode 100644 index 000000000000..2b204e0b1447 --- /dev/null +++ b/data/game/sn/snk-arcade-classics-vol-1.json @@ -0,0 +1,18 @@ +{ + "slug": "snk-arcade-classics-vol-1", + "name": "SNK Arcade Classics Vol. 1", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7391853" + ], + "release_date": "2008-04-29", + "platforms": [ + "Wii" + ], + "developers": [ + "Terminal Reality" + ], + "publishers": [ + "SNK" + ] +} diff --git a/data/game/so/soda-shot.json b/data/game/so/soda-shot.json new file mode 100644 index 000000000000..d0ae897379fd --- /dev/null +++ b/data/game/so/soda-shot.json @@ -0,0 +1,8 @@ +{ + "slug": "soda-shot", + "name": "Soda Shot", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q128014910" + ] +} diff --git a/data/game/so/sokocat-combo.json b/data/game/so/sokocat-combo.json new file mode 100644 index 000000000000..bc981da2e273 --- /dev/null +++ b/data/game/so/sokocat-combo.json @@ -0,0 +1,18 @@ +{ + "slug": "sokocat-combo", + "name": "Sokocat: Combo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113638785" + ], + "release_date": "2022-06-09", + "platforms": [ + "Xbox Series X and Series S" + ], + "genres": [ + "puzzle video game" + ], + "publishers": [ + "QUByte Interactive" + ] +} diff --git a/data/game/so/soldier-of-fortune-platinum-edition.json b/data/game/so/soldier-of-fortune-platinum-edition.json new file mode 100644 index 000000000000..7c0043dd61a0 --- /dev/null +++ b/data/game/so/soldier-of-fortune-platinum-edition.json @@ -0,0 +1,8 @@ +{ + "slug": "soldier-of-fortune-platinum-edition", + "name": "Soldier of Fortune: Platinum Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127527181" + ] +} diff --git a/data/game/so/solitaire-by-mobilityware.json b/data/game/so/solitaire-by-mobilityware.json new file mode 100644 index 000000000000..730ab2f795e3 --- /dev/null +++ b/data/game/so/solitaire-by-mobilityware.json @@ -0,0 +1,19 @@ +{ + "slug": "solitaire-by-mobilityware", + "name": "Solitaire by MobilityWare+", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107358174" + ], + "release_date": "2021-04-02", + "platforms": [ + "iPadOS", + "iOS" + ], + "developers": [ + "MobilityWare" + ], + "publishers": [ + "MobilityWare" + ] +} diff --git a/data/game/so/song-of-horror-complete-edition.json b/data/game/so/song-of-horror-complete-edition.json new file mode 100644 index 000000000000..08fa6dc30807 --- /dev/null +++ b/data/game/so/song-of-horror-complete-edition.json @@ -0,0 +1,19 @@ +{ + "slug": "song-of-horror-complete-edition", + "name": "SONG OF HORROR COMPLETE EDITION", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122823614" + ], + "release_date": "2019-10-31", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "adventure video game", + "survival horror" + ], + "publishers": [ + "Raiser Games" + ] +} diff --git a/data/game/so/sonic-2-in-1.json b/data/game/so/sonic-2-in-1.json new file mode 100644 index 000000000000..1203d58af442 --- /dev/null +++ b/data/game/so/sonic-2-in-1.json @@ -0,0 +1,9 @@ +{ + "slug": "sonic-2-in-1", + "name": "Sonic 2 in 1", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q88323379" + ], + "release_date": "1995-10-01" +} diff --git a/data/game/so/sonic-classic-collection.json b/data/game/so/sonic-classic-collection.json new file mode 100644 index 000000000000..b4fef0f2e697 --- /dev/null +++ b/data/game/so/sonic-classic-collection.json @@ -0,0 +1,21 @@ +{ + "slug": "sonic-classic-collection", + "name": "Sonic Classic Collection", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3048781" + ], + "release_date": "2010-03-02", + "platforms": [ + "Nintendo DS" + ], + "genres": [ + "2D platform game" + ], + "developers": [ + "Creative Assembly" + ], + "publishers": [ + "Sega" + ] +} diff --git a/data/game/so/sonic-compilation.json b/data/game/so/sonic-compilation.json new file mode 100644 index 000000000000..0b8c9308afe1 --- /dev/null +++ b/data/game/so/sonic-compilation.json @@ -0,0 +1,18 @@ +{ + "slug": "sonic-compilation", + "name": "Sonic Compilation", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7514182" + ], + "release_date": "1995-07-01", + "platforms": [ + "Sega Genesis" + ], + "developers": [ + "Sega" + ], + "publishers": [ + "Sega" + ] +} diff --git a/data/game/so/sonic-dash-q111516771.json b/data/game/so/sonic-dash-q111516771.json new file mode 100644 index 000000000000..9c8f95a889f4 --- /dev/null +++ b/data/game/so/sonic-dash-q111516771.json @@ -0,0 +1,13 @@ +{ + "slug": "sonic-dash-q111516771", + "name": "Sonic Dash+", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111516771" + ], + "release_date": "2022-04-08", + "platforms": [ + "iPadOS", + "iOS" + ] +} diff --git a/data/game/so/sonic-dreams-collection.json b/data/game/so/sonic-dreams-collection.json new file mode 100644 index 000000000000..fe2e832a838b --- /dev/null +++ b/data/game/so/sonic-dreams-collection.json @@ -0,0 +1,19 @@ +{ + "slug": "sonic-dreams-collection", + "name": "Sonic Dreams Collection", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q20899594" + ], + "release_date": "2015-08-10", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "parody" + ], + "developers": [ + "Arcane Kids" + ] +} diff --git a/data/game/so/sonic-extreme.json b/data/game/so/sonic-extreme.json new file mode 100644 index 000000000000..51e0d30133be --- /dev/null +++ b/data/game/so/sonic-extreme.json @@ -0,0 +1,14 @@ +{ + "slug": "sonic-extreme", + "name": "Sonic Extreme", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16204845" + ], + "genres": [ + "sports video game" + ], + "publishers": [ + "Sega" + ] +} diff --git a/data/game/so/sonic-gems-collection.json b/data/game/so/sonic-gems-collection.json new file mode 100644 index 000000000000..7f8b095c975f --- /dev/null +++ b/data/game/so/sonic-gems-collection.json @@ -0,0 +1,28 @@ +{ + "slug": "sonic-gems-collection", + "name": "Sonic Gems Collection", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2571793" + ], + "release_date": "2005-08-11", + "platforms": [ + "Nintendo GameCube" + ], + "genres": [ + "puzzle video game", + "beat 'em up", + "platformer", + "fighting game", + "racing video game", + "shooter game", + "pinball video game", + "run and gun" + ], + "developers": [ + "Sonic Team" + ], + "publishers": [ + "Sega" + ] +} diff --git a/data/game/so/sonic-generations-casino-night-pinball.json b/data/game/so/sonic-generations-casino-night-pinball.json new file mode 100644 index 000000000000..408a8e8dac5c --- /dev/null +++ b/data/game/so/sonic-generations-casino-night-pinball.json @@ -0,0 +1,20 @@ +{ + "slug": "sonic-generations-casino-night-pinball", + "name": "Sonic Generations ‘Casino Night’ Pinball", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106918636" + ], + "release_date": "2011-10-19", + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 3", + "Microsoft Windows" + ], + "developers": [ + "Sega" + ], + "publishers": [ + "Sega" + ] +} diff --git a/data/game/so/sonic-hits-collection.json b/data/game/so/sonic-hits-collection.json new file mode 100644 index 000000000000..ee57b33d956b --- /dev/null +++ b/data/game/so/sonic-hits-collection.json @@ -0,0 +1,12 @@ +{ + "slug": "sonic-hits-collection", + "name": "Sonic Hits Collection", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q19991031" + ], + "release_date": "2013-01-01", + "genres": [ + "video game compilation" + ] +} diff --git a/data/game/so/sonic-jam.json b/data/game/so/sonic-jam.json new file mode 100644 index 000000000000..b989887332f2 --- /dev/null +++ b/data/game/so/sonic-jam.json @@ -0,0 +1,18 @@ +{ + "slug": "sonic-jam", + "name": "Sonic Jam", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q672172" + ], + "release_date": "1997-06-20", + "genres": [ + "platformer" + ], + "developers": [ + "Sonic Team" + ], + "publishers": [ + "Sega" + ] +} diff --git a/data/game/so/sonic-knuckles-collection.json b/data/game/so/sonic-knuckles-collection.json new file mode 100644 index 000000000000..94fc04827aba --- /dev/null +++ b/data/game/so/sonic-knuckles-collection.json @@ -0,0 +1,18 @@ +{ + "slug": "sonic-knuckles-collection", + "name": "Sonic & Knuckles Collection", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3964784" + ], + "release_date": "1997-01-01", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "platformer" + ], + "publishers": [ + "Sega" + ] +} diff --git a/data/game/so/sonic-mega-collection-plus.json b/data/game/so/sonic-mega-collection-plus.json new file mode 100644 index 000000000000..1eeed1e589b5 --- /dev/null +++ b/data/game/so/sonic-mega-collection-plus.json @@ -0,0 +1,20 @@ +{ + "slug": "sonic-mega-collection-plus", + "name": "Sonic Mega Collection Plus", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q88323752" + ], + "release_date": "2004-11-02", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "puzzle video game", + "action game", + "beat 'em up", + "platformer", + "kart racing game", + "pinball video game" + ] +} diff --git a/data/game/so/sonic-mega-collection.json b/data/game/so/sonic-mega-collection.json new file mode 100644 index 000000000000..1e949335ea58 --- /dev/null +++ b/data/game/so/sonic-mega-collection.json @@ -0,0 +1,26 @@ +{ + "slug": "sonic-mega-collection", + "name": "Sonic Mega Collection", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2422173" + ], + "release_date": "2002-11-12", + "platforms": [ + "Nintendo GameCube", + "Microsoft Windows" + ], + "genres": [ + "puzzle video game", + "action game", + "beat 'em up", + "platformer", + "pinball video game" + ], + "developers": [ + "Sonic Team" + ], + "publishers": [ + "Sega" + ] +} diff --git a/data/game/so/sonic-origins.json b/data/game/so/sonic-origins.json new file mode 100644 index 000000000000..703909f3bca1 --- /dev/null +++ b/data/game/so/sonic-origins.json @@ -0,0 +1,25 @@ +{ + "slug": "sonic-origins", + "name": "Sonic Origins", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111667582" + ], + "release_date": "2022-06-23", + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 5", + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "platformer" + ], + "developers": [ + "Sonic Team", + "Sega" + ], + "publishers": [ + "Sega" + ] +} diff --git a/data/game/so/sonic-pc-collection.json b/data/game/so/sonic-pc-collection.json new file mode 100644 index 000000000000..f51daf10e08b --- /dev/null +++ b/data/game/so/sonic-pc-collection.json @@ -0,0 +1,12 @@ +{ + "slug": "sonic-pc-collection", + "name": "Sonic PC Collection", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q90027436" + ], + "release_date": "2009-01-01", + "platforms": [ + "Microsoft Windows" + ] +} diff --git a/data/game/so/sonic-s-ultimate-genesis-collection.json b/data/game/so/sonic-s-ultimate-genesis-collection.json new file mode 100644 index 000000000000..2e82de445a5a --- /dev/null +++ b/data/game/so/sonic-s-ultimate-genesis-collection.json @@ -0,0 +1,18 @@ +{ + "slug": "sonic-s-ultimate-genesis-collection", + "name": "Sonic's Ultimate Genesis Collection", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2573699" + ], + "release_date": "2009-02-10", + "platforms": [ + "PlayStation 3" + ], + "genres": [ + "video game music" + ], + "publishers": [ + "Sega" + ] +} diff --git a/data/game/so/sonic-saturn.json b/data/game/so/sonic-saturn.json new file mode 100644 index 000000000000..d0ada2b89d5e --- /dev/null +++ b/data/game/so/sonic-saturn.json @@ -0,0 +1,14 @@ +{ + "slug": "sonic-saturn", + "name": "Sonic Saturn", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122733088" + ], + "developers": [ + "Sega Technical Institute Burbank" + ], + "publishers": [ + "Sega" + ] +} diff --git a/data/game/so/sonic-speed-simulator.json b/data/game/so/sonic-speed-simulator.json new file mode 100644 index 000000000000..2c6f637630ed --- /dev/null +++ b/data/game/so/sonic-speed-simulator.json @@ -0,0 +1,28 @@ +{ + "slug": "sonic-speed-simulator", + "name": "Sonic Speed Simulator", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118947279" + ], + "release_date": "2022-04-16", + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 5", + "PlayStation 4", + "iOS", + "macOS", + "Microsoft Windows" + ], + "genres": [ + "platformer", + "massively multiplayer online game", + "incremental game" + ], + "developers": [ + "Gamefam" + ], + "publishers": [ + "Gamefam" + ] +} diff --git a/data/game/so/sonic-the-hedgehog-4-episode-iii.json b/data/game/so/sonic-the-hedgehog-4-episode-iii.json new file mode 100644 index 000000000000..18f22422381b --- /dev/null +++ b/data/game/so/sonic-the-hedgehog-4-episode-iii.json @@ -0,0 +1,8 @@ +{ + "slug": "sonic-the-hedgehog-4-episode-iii", + "name": "Sonic the Hedgehog 4: Episode III", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136303283" + ] +} diff --git a/data/game/so/sonic-world.json b/data/game/so/sonic-world.json new file mode 100644 index 000000000000..d46b4e023225 --- /dev/null +++ b/data/game/so/sonic-world.json @@ -0,0 +1,8 @@ +{ + "slug": "sonic-world", + "name": "Sonic World", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115475596" + ] +} diff --git a/data/game/so/soul-gambler-artbook-soundtrack.json b/data/game/so/soul-gambler-artbook-soundtrack.json new file mode 100644 index 000000000000..bfb544b67a30 --- /dev/null +++ b/data/game/so/soul-gambler-artbook-soundtrack.json @@ -0,0 +1,24 @@ +{ + "slug": "soul-gambler-artbook-soundtrack", + "name": "Soul Gambler: Artbook & Soundtrack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q85744046" + ], + "release_date": "2013-08-01", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "classical music", + "instrumental music", + "video game music", + "stage and screen" + ], + "developers": [ + "Ilex Games" + ], + "publishers": [ + "Gamestorming" + ] +} diff --git a/data/game/so/soul-gambler-dark-arts-edition.json b/data/game/so/soul-gambler-dark-arts-edition.json new file mode 100644 index 000000000000..8a5ba48b706b --- /dev/null +++ b/data/game/so/soul-gambler-dark-arts-edition.json @@ -0,0 +1,15 @@ +{ + "slug": "soul-gambler-dark-arts-edition", + "name": "Soul Gambler: Dark Arts Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q96965134" + ], + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "role-playing video game", + "visual novel" + ] +} diff --git a/data/game/so/soul-sacrifice-2.json b/data/game/so/soul-sacrifice-2.json new file mode 100644 index 000000000000..054de2a051f7 --- /dev/null +++ b/data/game/so/soul-sacrifice-2.json @@ -0,0 +1,11 @@ +{ + "slug": "soul-sacrifice-2", + "name": "Soul Sacrifice 2", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110147482" + ], + "platforms": [ + "PlayStation 4" + ] +} diff --git a/data/game/so/soundtrack-and-wallpaper-bonus-pack.json b/data/game/so/soundtrack-and-wallpaper-bonus-pack.json new file mode 100644 index 000000000000..08f097c9fbf0 --- /dev/null +++ b/data/game/so/soundtrack-and-wallpaper-bonus-pack.json @@ -0,0 +1,15 @@ +{ + "slug": "soundtrack-and-wallpaper-bonus-pack", + "name": "Soundtrack and Wallpaper Bonus Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q83743074" + ], + "release_date": "2016-04-20", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "video game music" + ] +} diff --git a/data/game/so/source-multiplayer-pack.json b/data/game/so/source-multiplayer-pack.json new file mode 100644 index 000000000000..172ab301003b --- /dev/null +++ b/data/game/so/source-multiplayer-pack.json @@ -0,0 +1,19 @@ +{ + "slug": "source-multiplayer-pack", + "name": "Source Multiplayer Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q82500884" + ], + "release_date": "2010-01-01", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Valve Corporation" + ], + "publishers": [ + "Valve Corporation" + ] +} diff --git a/data/game/sp/space-invaders-invincible-collection.json b/data/game/sp/space-invaders-invincible-collection.json new file mode 100644 index 000000000000..624bf0ed15c4 --- /dev/null +++ b/data/game/sp/space-invaders-invincible-collection.json @@ -0,0 +1,16 @@ +{ + "slug": "space-invaders-invincible-collection", + "name": "Space Invaders Invincible Collection", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q96603713" + ], + "release_date": "2020-03-26", + "developers": [ + "Gotch Technology Corp." + ], + "publishers": [ + "Inin Games", + "Taito" + ] +} diff --git a/data/game/sp/space-raiders.json b/data/game/sp/space-raiders.json new file mode 100644 index 000000000000..37f0d741c9e1 --- /dev/null +++ b/data/game/sp/space-raiders.json @@ -0,0 +1,23 @@ +{ + "slug": "space-raiders", + "name": "Space Raiders", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3965809" + ], + "release_date": "2002-12-19", + "platforms": [ + "Nintendo GameCube" + ], + "genres": [ + "third-person shooter" + ], + "developers": [ + "Taito" + ], + "publishers": [ + "Taito", + "Sammy Corporation", + "Mastiff" + ] +} diff --git a/data/game/sp/space-rangers-2-reboot.json b/data/game/sp/space-rangers-2-reboot.json new file mode 100644 index 000000000000..1a31472d561e --- /dev/null +++ b/data/game/sp/space-rangers-2-reboot.json @@ -0,0 +1,20 @@ +{ + "slug": "space-rangers-2-reboot", + "name": "Space Rangers 2: Reboot", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110760141" + ], + "release_date": "2007-09-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "SNK-Games", + "Katauri Interactive", + "Elemental Games" + ], + "publishers": [ + "1C Company" + ] +} diff --git a/data/game/sp/space-tail-every-journey-leads-home-ultimate-edition.json b/data/game/sp/space-tail-every-journey-leads-home-ultimate-edition.json new file mode 100644 index 000000000000..d5afad40e092 --- /dev/null +++ b/data/game/sp/space-tail-every-journey-leads-home-ultimate-edition.json @@ -0,0 +1,19 @@ +{ + "slug": "space-tail-every-journey-leads-home-ultimate-edition", + "name": "Space Tail: Every Journey Leads Home Ultimate Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122670173" + ], + "release_date": "2023-03-09", + "platforms": [ + "Xbox Series X and Series S" + ], + "developers": [ + "Enjoy Studio", + "Longterm Games" + ], + "publishers": [ + "Longterm Games" + ] +} diff --git a/data/game/sp/space-war-2000.json b/data/game/sp/space-war-2000.json new file mode 100644 index 000000000000..11f1dda31d42 --- /dev/null +++ b/data/game/sp/space-war-2000.json @@ -0,0 +1,11 @@ +{ + "slug": "space-war-2000", + "name": "Space War 2000", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q98831206" + ], + "genres": [ + "science fiction video game" + ] +} diff --git a/data/game/sp/spades-card-game-q110453652.json b/data/game/sp/spades-card-game-q110453652.json new file mode 100644 index 000000000000..3bc731167217 --- /dev/null +++ b/data/game/sp/spades-card-game-q110453652.json @@ -0,0 +1,13 @@ +{ + "slug": "spades-card-game-q110453652", + "name": "Spades: Card Game+", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110453652" + ], + "release_date": "2022-01-07", + "platforms": [ + "iPadOS", + "iOS" + ] +} diff --git a/data/game/sp/spear-of-destiny-mission-2-return-to-danger.json b/data/game/sp/spear-of-destiny-mission-2-return-to-danger.json new file mode 100644 index 000000000000..0266806f0aff --- /dev/null +++ b/data/game/sp/spear-of-destiny-mission-2-return-to-danger.json @@ -0,0 +1,8 @@ +{ + "slug": "spear-of-destiny-mission-2-return-to-danger", + "name": "Spear of Destiny: Mission 2 Return to Danger", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110155075" + ] +} diff --git a/data/game/sp/spear-of-destiny-mission-3-ultimate-challenge.json b/data/game/sp/spear-of-destiny-mission-3-ultimate-challenge.json new file mode 100644 index 000000000000..4df568d5de1d --- /dev/null +++ b/data/game/sp/spear-of-destiny-mission-3-ultimate-challenge.json @@ -0,0 +1,8 @@ +{ + "slug": "spear-of-destiny-mission-3-ultimate-challenge", + "name": "Spear of Destiny: Mission 3: Ultimate Challenge", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110155065" + ] +} diff --git a/data/game/sp/special-ops-vehicle-pack.json b/data/game/sp/special-ops-vehicle-pack.json new file mode 100644 index 000000000000..c4667a45723c --- /dev/null +++ b/data/game/sp/special-ops-vehicle-pack.json @@ -0,0 +1,12 @@ +{ + "slug": "special-ops-vehicle-pack", + "name": "Special Ops Vehicle Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60616767" + ], + "release_date": "2013-04-10", + "platforms": [ + "Microsoft Windows" + ] +} diff --git a/data/game/sp/special-permit-the-expansion-pack-for-cabela-s-big-game-hunter.json b/data/game/sp/special-permit-the-expansion-pack-for-cabela-s-big-game-hunter.json new file mode 100644 index 000000000000..a000c9b6d92d --- /dev/null +++ b/data/game/sp/special-permit-the-expansion-pack-for-cabela-s-big-game-hunter.json @@ -0,0 +1,21 @@ +{ + "slug": "special-permit-the-expansion-pack-for-cabela-s-big-game-hunter", + "name": "Special Permit: The Expansion Pack for Cabela's Big Game Hunter", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7574681" + ], + "release_date": "1998-01-01", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "sports video game" + ], + "developers": [ + "Activision" + ], + "publishers": [ + "Activision" + ] +} diff --git a/data/game/sp/special-s-forces.json b/data/game/sp/special-s-forces.json new file mode 100644 index 000000000000..be0f23d512cf --- /dev/null +++ b/data/game/sp/special-s-forces.json @@ -0,0 +1,11 @@ +{ + "slug": "special-s-forces", + "name": "Special\"S\"Forces", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122200405" + ], + "platforms": [ + "Microsoft Windows" + ] +} diff --git a/data/game/sp/spellcasting-collection.json b/data/game/sp/spellcasting-collection.json new file mode 100644 index 000000000000..7e932cdd3a7d --- /dev/null +++ b/data/game/sp/spellcasting-collection.json @@ -0,0 +1,18 @@ +{ + "slug": "spellcasting-collection", + "name": "Spellcasting Collection", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113575147" + ], + "release_date": "2019-03-18", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Legend Entertainment" + ], + "publishers": [ + "Ziggurat Interactive" + ] +} diff --git a/data/game/sp/spellforce-2-demons-of-the-past.json b/data/game/sp/spellforce-2-demons-of-the-past.json new file mode 100644 index 000000000000..9b1d29068d59 --- /dev/null +++ b/data/game/sp/spellforce-2-demons-of-the-past.json @@ -0,0 +1,19 @@ +{ + "slug": "spellforce-2-demons-of-the-past", + "name": "SpellForce 2: Demons of the Past", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107649647" + ], + "release_date": "2014-01-01", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "real-time strategy", + "role-playing video game" + ], + "publishers": [ + "THQ Nordic" + ] +} diff --git a/data/game/sp/spellforce-2-dragon-storm.json b/data/game/sp/spellforce-2-dragon-storm.json new file mode 100644 index 000000000000..6482613832f3 --- /dev/null +++ b/data/game/sp/spellforce-2-dragon-storm.json @@ -0,0 +1,21 @@ +{ + "slug": "spellforce-2-dragon-storm", + "name": "Spellforce 2: Dragon Storm", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7575886" + ], + "release_date": "2007-03-23", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "role-playing video game" + ], + "developers": [ + "EA Phenomic" + ], + "publishers": [ + "JoWooD Entertainment" + ] +} diff --git a/data/game/sp/spellforce-2-faith-in-destiny.json b/data/game/sp/spellforce-2-faith-in-destiny.json new file mode 100644 index 000000000000..ff09ed15d421 --- /dev/null +++ b/data/game/sp/spellforce-2-faith-in-destiny.json @@ -0,0 +1,18 @@ +{ + "slug": "spellforce-2-faith-in-destiny", + "name": "Spellforce 2: Faith in Destiny", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7575887" + ], + "release_date": "2012-06-19", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "role-playing video game" + ], + "publishers": [ + "THQ Nordic" + ] +} diff --git a/data/game/sp/spellforce-3-fallen-god.json b/data/game/sp/spellforce-3-fallen-god.json new file mode 100644 index 000000000000..7a72155ecac1 --- /dev/null +++ b/data/game/sp/spellforce-3-fallen-god.json @@ -0,0 +1,22 @@ +{ + "slug": "spellforce-3-fallen-god", + "name": "SpellForce 3: Fallen God", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111272747" + ], + "release_date": "2020-11-03", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "strategy video game", + "role-playing video game" + ], + "developers": [ + "Grimlore Games" + ], + "publishers": [ + "THQ Nordic" + ] +} diff --git a/data/game/sp/spellforce-conquest-of-eo-children-of-nor.json b/data/game/sp/spellforce-conquest-of-eo-children-of-nor.json new file mode 100644 index 000000000000..c67ec297fc94 --- /dev/null +++ b/data/game/sp/spellforce-conquest-of-eo-children-of-nor.json @@ -0,0 +1,8 @@ +{ + "slug": "spellforce-conquest-of-eo-children-of-nor", + "name": "Spellforce: Conquest of Eo - Children of Nor", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140456774" + ] +} diff --git a/data/game/sp/spellforce-iii-reforced-complete-edition.json b/data/game/sp/spellforce-iii-reforced-complete-edition.json new file mode 100644 index 000000000000..20e59e5b2bea --- /dev/null +++ b/data/game/sp/spellforce-iii-reforced-complete-edition.json @@ -0,0 +1,18 @@ +{ + "slug": "spellforce-iii-reforced-complete-edition", + "name": "SpellForce III Reforced: Complete Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112998985" + ], + "release_date": "2022-06-07", + "platforms": [ + "Xbox Series X and Series S" + ], + "developers": [ + "Grimlore Games" + ], + "publishers": [ + "THQ Nordic" + ] +} diff --git a/data/game/sp/spellforce-shadow-of-the-phoenix.json b/data/game/sp/spellforce-shadow-of-the-phoenix.json new file mode 100644 index 000000000000..b8eb38e3c81b --- /dev/null +++ b/data/game/sp/spellforce-shadow-of-the-phoenix.json @@ -0,0 +1,9 @@ +{ + "slug": "spellforce-shadow-of-the-phoenix", + "name": "SpellForce: Shadow of the Phoenix", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110160659" + ], + "release_date": "2004-11-12" +} diff --git a/data/game/sp/spellforce-the-breath-of-winter.json b/data/game/sp/spellforce-the-breath-of-winter.json new file mode 100644 index 000000000000..8c49dda26fc1 --- /dev/null +++ b/data/game/sp/spellforce-the-breath-of-winter.json @@ -0,0 +1,8 @@ +{ + "slug": "spellforce-the-breath-of-winter", + "name": "SpellForce: The Breath of Winter", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110160641" + ] +} diff --git a/data/game/sp/spellsinger.json b/data/game/sp/spellsinger.json new file mode 100644 index 000000000000..b4bf60cbb815 --- /dev/null +++ b/data/game/sp/spellsinger.json @@ -0,0 +1,14 @@ +{ + "slug": "spellsinger", + "name": "Spellsinger", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105479508" + ], + "platforms": [ + "arcade video game machine" + ], + "developers": [ + "Art & Magic" + ] +} diff --git a/data/game/sp/spelltower-q107539541.json b/data/game/sp/spelltower-q107539541.json new file mode 100644 index 000000000000..8b79764c2c86 --- /dev/null +++ b/data/game/sp/spelltower-q107539541.json @@ -0,0 +1,16 @@ +{ + "slug": "spelltower-q107539541", + "name": "SpellTower+", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107539541" + ], + "release_date": "2021-04-02", + "platforms": [ + "iPadOS", + "iOS" + ], + "developers": [ + "Zach Gage" + ] +} diff --git a/data/game/sp/spheroid-demo.json b/data/game/sp/spheroid-demo.json new file mode 100644 index 000000000000..6fab80c0b686 --- /dev/null +++ b/data/game/sp/spheroid-demo.json @@ -0,0 +1,8 @@ +{ + "slug": "spheroid-demo", + "name": "Spheroid Demo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126187849" + ] +} diff --git a/data/game/sp/spider-man-the-city-that-never-sleeps.json b/data/game/sp/spider-man-the-city-that-never-sleeps.json new file mode 100644 index 000000000000..02aa69ac33d7 --- /dev/null +++ b/data/game/sp/spider-man-the-city-that-never-sleeps.json @@ -0,0 +1,20 @@ +{ + "slug": "spider-man-the-city-that-never-sleeps", + "name": "Spider-Man: The City That Never Sleeps", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q65040551" + ], + "genres": [ + "action-adventure game", + "science fiction video game", + "superhero video game" + ], + "developers": [ + "Nixxes Software", + "Insomniac Games" + ], + "publishers": [ + "Sony Interactive Entertainment" + ] +} diff --git a/data/game/sp/spider-solitaire-card-game.json b/data/game/sp/spider-solitaire-card-game.json new file mode 100644 index 000000000000..eaadc666b57b --- /dev/null +++ b/data/game/sp/spider-solitaire-card-game.json @@ -0,0 +1,13 @@ +{ + "slug": "spider-solitaire-card-game", + "name": "Spider Solitaire: Card Game+", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q114840473" + ], + "release_date": "2022-10-07", + "platforms": [ + "iPadOS", + "iOS" + ] +} diff --git a/data/game/sp/spin-n-sauce.json b/data/game/sp/spin-n-sauce.json new file mode 100644 index 000000000000..60d305c8f3d6 --- /dev/null +++ b/data/game/sp/spin-n-sauce.json @@ -0,0 +1,8 @@ +{ + "slug": "spin-n-sauce", + "name": "Spin N' Sauce", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q128014912" + ] +} diff --git a/data/game/sp/spirit-riding-free-ride-along-adventure.json b/data/game/sp/spirit-riding-free-ride-along-adventure.json new file mode 100644 index 000000000000..946311041390 --- /dev/null +++ b/data/game/sp/spirit-riding-free-ride-along-adventure.json @@ -0,0 +1,9 @@ +{ + "slug": "spirit-riding-free-ride-along-adventure", + "name": "Spirit Riding Free: Ride Along Adventure", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q104622584" + ], + "release_date": "2020-12-08" +} diff --git a/data/game/sp/spitfire-epsom-campaign.json b/data/game/sp/spitfire-epsom-campaign.json new file mode 100644 index 000000000000..41f0b69ada23 --- /dev/null +++ b/data/game/sp/spitfire-epsom-campaign.json @@ -0,0 +1,15 @@ +{ + "slug": "spitfire-epsom-campaign", + "name": "Spitfire: Epsom Campaign", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097560" + ], + "release_date": "2017-11-23", + "platforms": [ + "Microsoft Windows" + ], + "publishers": [ + "Eagle Dynamics" + ] +} diff --git a/data/game/sp/splatoon-2-octo-expansion.json b/data/game/sp/splatoon-2-octo-expansion.json new file mode 100644 index 000000000000..8fc15247d90b --- /dev/null +++ b/data/game/sp/splatoon-2-octo-expansion.json @@ -0,0 +1,18 @@ +{ + "slug": "splatoon-2-octo-expansion", + "name": "Splatoon 2: Octo Expansion", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q65040609" + ], + "release_date": "2018-06-13", + "genres": [ + "third-person shooter" + ], + "developers": [ + "Nintendo Entertainment Planning & Development" + ], + "publishers": [ + "Nintendo" + ] +} diff --git a/data/game/sp/splatoon-3-side-order.json b/data/game/sp/splatoon-3-side-order.json new file mode 100644 index 000000000000..60bbd45305c7 --- /dev/null +++ b/data/game/sp/splatoon-3-side-order.json @@ -0,0 +1,9 @@ +{ + "slug": "splatoon-3-side-order", + "name": "Splatoon 3: Side Order", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124656859" + ], + "release_date": "2024-02-22" +} diff --git a/data/game/sp/spleef.json b/data/game/sp/spleef.json new file mode 100644 index 000000000000..2b509de1759b --- /dev/null +++ b/data/game/sp/spleef.json @@ -0,0 +1,8 @@ +{ + "slug": "spleef", + "name": "Spleef", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q114362835" + ] +} diff --git a/data/game/sp/splinter-cell-trilogy.json b/data/game/sp/splinter-cell-trilogy.json new file mode 100644 index 000000000000..0e9336ae8db2 --- /dev/null +++ b/data/game/sp/splinter-cell-trilogy.json @@ -0,0 +1,12 @@ +{ + "slug": "splinter-cell-trilogy", + "name": "Splinter Cell Trilogy", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125658866" + ], + "release_date": "2011-08-02", + "platforms": [ + "PlayStation 3" + ] +} diff --git a/data/game/sp/splitter-critters-q109562484.json b/data/game/sp/splitter-critters-q109562484.json new file mode 100644 index 000000000000..490d7e123091 --- /dev/null +++ b/data/game/sp/splitter-critters-q109562484.json @@ -0,0 +1,13 @@ +{ + "slug": "splitter-critters-q109562484", + "name": "Splitter Critters+", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109562484" + ], + "release_date": "2021-12-10", + "platforms": [ + "iPadOS", + "iOS" + ] +} diff --git a/data/game/sp/spooky-shot.json b/data/game/sp/spooky-shot.json new file mode 100644 index 000000000000..3910467ed12d --- /dev/null +++ b/data/game/sp/spooky-shot.json @@ -0,0 +1,8 @@ +{ + "slug": "spooky-shot", + "name": "Spooky Shot", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q128014913" + ] +} diff --git a/data/game/sp/spore-bot-parts-pack.json b/data/game/sp/spore-bot-parts-pack.json new file mode 100644 index 000000000000..53bcb2437bf8 --- /dev/null +++ b/data/game/sp/spore-bot-parts-pack.json @@ -0,0 +1,18 @@ +{ + "slug": "spore-bot-parts-pack", + "name": "Spore Bot Parts Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112762601" + ], + "release_date": "2010-01-01", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Maxis" + ], + "publishers": [ + "Electronic Arts" + ] +} diff --git a/data/game/sp/spore-complete-pack.json b/data/game/sp/spore-complete-pack.json new file mode 100644 index 000000000000..ef075a37c0a0 --- /dev/null +++ b/data/game/sp/spore-complete-pack.json @@ -0,0 +1,11 @@ +{ + "slug": "spore-complete-pack", + "name": "Spore Complete Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126884220" + ], + "platforms": [ + "Microsoft Windows" + ] +} diff --git a/data/game/sp/spore-creature-creator.json b/data/game/sp/spore-creature-creator.json new file mode 100644 index 000000000000..181fa661bf41 --- /dev/null +++ b/data/game/sp/spore-creature-creator.json @@ -0,0 +1,24 @@ +{ + "slug": "spore-creature-creator", + "name": "Spore Creature Creator", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3659345" + ], + "release_date": "2008-06-18", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "god game", + "science fiction video game", + "biological simulation video game" + ], + "developers": [ + "Maxis" + ], + "publishers": [ + "Electronic Arts" + ] +} diff --git a/data/game/sp/spore-creature-keeper.json b/data/game/sp/spore-creature-keeper.json new file mode 100644 index 000000000000..d924a8dd7acb --- /dev/null +++ b/data/game/sp/spore-creature-keeper.json @@ -0,0 +1,21 @@ +{ + "slug": "spore-creature-keeper", + "name": "Spore Creature Keeper", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7579212" + ], + "platforms": [ + "Nintendo DS", + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Maxis" + ], + "publishers": [ + "Electronic Arts" + ] +} diff --git a/data/game/sp/spore-creepy-cute.json b/data/game/sp/spore-creepy-cute.json new file mode 100644 index 000000000000..355326b299f3 --- /dev/null +++ b/data/game/sp/spore-creepy-cute.json @@ -0,0 +1,24 @@ +{ + "slug": "spore-creepy-cute", + "name": "Spore: Creepy & Cute", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4049977" + ], + "release_date": "2008-12-19", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "real-time strategy", + "god game", + "life simulation game" + ], + "developers": [ + "Maxis" + ], + "publishers": [ + "Electronic Arts" + ] +} diff --git a/data/game/sp/spore-galactic-adventures.json b/data/game/sp/spore-galactic-adventures.json new file mode 100644 index 000000000000..0a89994905d2 --- /dev/null +++ b/data/game/sp/spore-galactic-adventures.json @@ -0,0 +1,25 @@ +{ + "slug": "spore-galactic-adventures", + "name": "Spore Galactic Adventures", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q641801" + ], + "release_date": "2009-06-23", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "real-time strategy", + "life simulation game", + "science fiction video game", + "biological simulation video game" + ], + "developers": [ + "Maxis" + ], + "publishers": [ + "Electronic Arts" + ] +} diff --git a/data/game/sp/spore-galactic-edition.json b/data/game/sp/spore-galactic-edition.json new file mode 100644 index 000000000000..85a09521b1bd --- /dev/null +++ b/data/game/sp/spore-galactic-edition.json @@ -0,0 +1,8 @@ +{ + "slug": "spore-galactic-edition", + "name": "Spore Galactic Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q12336701" + ] +} diff --git a/data/game/sp/sports-collection-q7579711.json b/data/game/sp/sports-collection-q7579711.json new file mode 100644 index 000000000000..22d81429e3c3 --- /dev/null +++ b/data/game/sp/sports-collection-q7579711.json @@ -0,0 +1,21 @@ +{ + "slug": "sports-collection-q7579711", + "name": "Sports Collection", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7579711" + ], + "release_date": "1996-09-27", + "platforms": [ + "Game Boy" + ], + "genres": [ + "sports video game" + ], + "developers": [ + "Tose Co." + ], + "publishers": [ + "Tonkin House" + ] +} diff --git a/data/game/sp/spy-hunter-nowhere-to-run.json b/data/game/sp/spy-hunter-nowhere-to-run.json new file mode 100644 index 000000000000..297d9d176ae7 --- /dev/null +++ b/data/game/sp/spy-hunter-nowhere-to-run.json @@ -0,0 +1,21 @@ +{ + "slug": "spy-hunter-nowhere-to-run", + "name": "Spy Hunter: Nowhere to Run", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16266983" + ], + "release_date": "2006-09-05", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "action game" + ], + "developers": [ + "Terminal Reality" + ], + "publishers": [ + "Midway Games" + ] +} diff --git a/data/game/sp/spy-hunter-q3967325.json b/data/game/sp/spy-hunter-q3967325.json new file mode 100644 index 000000000000..793d38a80ce4 --- /dev/null +++ b/data/game/sp/spy-hunter-q3967325.json @@ -0,0 +1,22 @@ +{ + "slug": "spy-hunter-q3967325", + "name": "Spy Hunter", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3967325" + ], + "release_date": "2012-10-09", + "platforms": [ + "PlayStation Vita", + "Nintendo 3DS" + ], + "genres": [ + "vehicular combat game" + ], + "developers": [ + "TT Fusion" + ], + "publishers": [ + "Warner Bros. Games" + ] +} diff --git a/data/game/sp/spyhunter-nowhere-to-run-terrorist-takedown-3.json b/data/game/sp/spyhunter-nowhere-to-run-terrorist-takedown-3.json new file mode 100644 index 000000000000..557382147e85 --- /dev/null +++ b/data/game/sp/spyhunter-nowhere-to-run-terrorist-takedown-3.json @@ -0,0 +1,8 @@ +{ + "slug": "spyhunter-nowhere-to-run-terrorist-takedown-3", + "name": "SpyHunter: Nowhere to Run / Terrorist Takedown 3", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62482597" + ] +} diff --git a/data/game/st/star-rangers-vr-free-demo.json b/data/game/st/star-rangers-vr-free-demo.json new file mode 100644 index 000000000000..76d1d999151f --- /dev/null +++ b/data/game/st/star-rangers-vr-free-demo.json @@ -0,0 +1,12 @@ +{ + "slug": "star-rangers-vr-free-demo", + "name": "Star Rangers VR - Free Demo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122370423" + ], + "release_date": "2017-09-15", + "platforms": [ + "Microsoft Windows" + ] +} diff --git a/data/game/st/star-trek-first-contact-q78326985.json b/data/game/st/star-trek-first-contact-q78326985.json new file mode 100644 index 000000000000..9a5e53095799 --- /dev/null +++ b/data/game/st/star-trek-first-contact-q78326985.json @@ -0,0 +1,11 @@ +{ + "slug": "star-trek-first-contact-q78326985", + "name": "Star Trek: First Contact", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q78326985" + ], + "publishers": [ + "MicroProse" + ] +} diff --git a/data/game/st/star-trek-infinite-designing-the-galaxy.json b/data/game/st/star-trek-infinite-designing-the-galaxy.json new file mode 100644 index 000000000000..2ecf676a5a8d --- /dev/null +++ b/data/game/st/star-trek-infinite-designing-the-galaxy.json @@ -0,0 +1,8 @@ +{ + "slug": "star-trek-infinite-designing-the-galaxy", + "name": "Star Trek: Infinite – Designing the Galaxy", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125342393" + ] +} diff --git a/data/game/st/star-trek-the-next-generation-interactive-vcr-board-game-a-klingon-challenge.json b/data/game/st/star-trek-the-next-generation-interactive-vcr-board-game-a-klingon-challenge.json new file mode 100644 index 000000000000..04bcabfdf1b8 --- /dev/null +++ b/data/game/st/star-trek-the-next-generation-interactive-vcr-board-game-a-klingon-challenge.json @@ -0,0 +1,11 @@ +{ + "slug": "star-trek-the-next-generation-interactive-vcr-board-game-a-klingon-challenge", + "name": "Star Trek: The Next Generation Interactive VCR Board Game – A Klingon Challenge", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7601019" + ], + "publishers": [ + "Milton Bradley Company" + ] +} diff --git a/data/game/st/star-trek-v-the-final-frontier-q90573432.json b/data/game/st/star-trek-v-the-final-frontier-q90573432.json new file mode 100644 index 000000000000..bf1bbbec0181 --- /dev/null +++ b/data/game/st/star-trek-v-the-final-frontier-q90573432.json @@ -0,0 +1,8 @@ +{ + "slug": "star-trek-v-the-final-frontier-q90573432", + "name": "Star Trek V: The Final Frontier", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q90573432" + ] +} diff --git a/data/game/st/star-wars-1313.json b/data/game/st/star-wars-1313.json new file mode 100644 index 000000000000..08c9e170ba2b --- /dev/null +++ b/data/game/st/star-wars-1313.json @@ -0,0 +1,24 @@ +{ + "slug": "star-wars-1313", + "name": "Star Wars 1313", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2615234" + ], + "platforms": [ + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "action-adventure game" + ], + "developers": [ + "Skywalker Sound", + "Lucasfilm Animation", + "Industrial Light & Magic", + "Lucasfilm Games" + ], + "publishers": [ + "Lucasfilm Games" + ] +} diff --git a/data/game/st/star-wars-battle-of-the-sith-lords.json b/data/game/st/star-wars-battle-of-the-sith-lords.json new file mode 100644 index 000000000000..ce0bd5d3dfd6 --- /dev/null +++ b/data/game/st/star-wars-battle-of-the-sith-lords.json @@ -0,0 +1,8 @@ +{ + "slug": "star-wars-battle-of-the-sith-lords", + "name": "Star Wars: Battle of the Sith Lords", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140454740" + ] +} diff --git a/data/game/st/star-wars-battlefront-classic-collection.json b/data/game/st/star-wars-battlefront-classic-collection.json new file mode 100644 index 000000000000..930813a865d7 --- /dev/null +++ b/data/game/st/star-wars-battlefront-classic-collection.json @@ -0,0 +1,24 @@ +{ + "slug": "star-wars-battlefront-classic-collection", + "name": "Star Wars: Battlefront Classic Collection", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124629292" + ], + "release_date": "2024-03-14", + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 5", + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "third-person shooter" + ], + "developers": [ + "Aspyr" + ], + "publishers": [ + "Aspyr" + ] +} diff --git a/data/game/st/star-wars-battlefront-iii.json b/data/game/st/star-wars-battlefront-iii.json new file mode 100644 index 000000000000..31ed5f823e20 --- /dev/null +++ b/data/game/st/star-wars-battlefront-iii.json @@ -0,0 +1,11 @@ +{ + "slug": "star-wars-battlefront-iii", + "name": "Star Wars: Battlefront III", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123578682" + ], + "developers": [ + "Crytek UK" + ] +} diff --git a/data/game/st/star-wars-battlefront.json b/data/game/st/star-wars-battlefront.json new file mode 100644 index 000000000000..ad08d3801ad7 --- /dev/null +++ b/data/game/st/star-wars-battlefront.json @@ -0,0 +1,25 @@ +{ + "slug": "star-wars-battlefront", + "name": "Star Wars Battlefront", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q54862" + ], + "release_date": "2015-11-17", + "platforms": [ + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "third-person shooter", + "science fiction video game", + "space opera video game" + ], + "developers": [ + "DICE" + ], + "publishers": [ + "Electronic Arts" + ] +} diff --git a/data/game/st/star-wars-empire-at-war-forces-of-corruption.json b/data/game/st/star-wars-empire-at-war-forces-of-corruption.json new file mode 100644 index 000000000000..95959518a742 --- /dev/null +++ b/data/game/st/star-wars-empire-at-war-forces-of-corruption.json @@ -0,0 +1,21 @@ +{ + "slug": "star-wars-empire-at-war-forces-of-corruption", + "name": "Star Wars: Empire at War: Forces of Corruption", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1300773" + ], + "release_date": "2006-10-24", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "real-time strategy" + ], + "developers": [ + "Petroglyph Games" + ], + "publishers": [ + "Lucasfilm Games" + ] +} diff --git a/data/game/st/star-wars-galactic-battlegrounds-clone-campaigns.json b/data/game/st/star-wars-galactic-battlegrounds-clone-campaigns.json new file mode 100644 index 000000000000..af08612aa029 --- /dev/null +++ b/data/game/st/star-wars-galactic-battlegrounds-clone-campaigns.json @@ -0,0 +1,15 @@ +{ + "slug": "star-wars-galactic-battlegrounds-clone-campaigns", + "name": "Star Wars: Galactic Battlegrounds: Clone Campaigns", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3968345" + ], + "release_date": "2002-01-01", + "platforms": [ + "Microsoft Windows" + ], + "publishers": [ + "Lucasfilm Games" + ] +} diff --git a/data/game/st/star-wars-galaxies-episode-iii-rage-of-the-wookiees.json b/data/game/st/star-wars-galaxies-episode-iii-rage-of-the-wookiees.json new file mode 100644 index 000000000000..06ad133d92be --- /dev/null +++ b/data/game/st/star-wars-galaxies-episode-iii-rage-of-the-wookiees.json @@ -0,0 +1,21 @@ +{ + "slug": "star-wars-galaxies-episode-iii-rage-of-the-wookiees", + "name": "Star Wars Galaxies: Episode III Rage of the Wookiees", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q55281" + ], + "release_date": "2005-05-05", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "massively multiplayer online role-playing game" + ], + "developers": [ + "Daybreak Game Company" + ], + "publishers": [ + "Lucasfilm Games" + ] +} diff --git a/data/game/st/star-wars-galaxies-jump-to-lightspeed.json b/data/game/st/star-wars-galaxies-jump-to-lightspeed.json new file mode 100644 index 000000000000..6864fcff534f --- /dev/null +++ b/data/game/st/star-wars-galaxies-jump-to-lightspeed.json @@ -0,0 +1,21 @@ +{ + "slug": "star-wars-galaxies-jump-to-lightspeed", + "name": "Star Wars Galaxies: Jump to Lightspeed", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q55278" + ], + "release_date": "2004-10-27", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "massively multiplayer online role-playing game" + ], + "developers": [ + "Daybreak Game Company" + ], + "publishers": [ + "Lucasfilm Games" + ] +} diff --git a/data/game/st/star-wars-galaxies-the-complete-online-adventures.json b/data/game/st/star-wars-galaxies-the-complete-online-adventures.json new file mode 100644 index 000000000000..782a5a028370 --- /dev/null +++ b/data/game/st/star-wars-galaxies-the-complete-online-adventures.json @@ -0,0 +1,15 @@ +{ + "slug": "star-wars-galaxies-the-complete-online-adventures", + "name": "Star Wars Galaxies: The Complete Online Adventures", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110817132" + ], + "release_date": "2006-11-14", + "genres": [ + "massively multiplayer online role-playing game" + ], + "publishers": [ + "Lucasfilm Games" + ] +} diff --git a/data/game/st/star-wars-galaxies-trials-of-obi-wan.json b/data/game/st/star-wars-galaxies-trials-of-obi-wan.json new file mode 100644 index 000000000000..460cb501fc2b --- /dev/null +++ b/data/game/st/star-wars-galaxies-trials-of-obi-wan.json @@ -0,0 +1,12 @@ +{ + "slug": "star-wars-galaxies-trials-of-obi-wan", + "name": "Star Wars Galaxies: Trials of Obi-Wan", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q21190230" + ], + "release_date": "2005-01-01", + "platforms": [ + "Microsoft Windows" + ] +} diff --git a/data/game/st/star-wars-jedi-knight-mysteries-of-the-sith.json b/data/game/st/star-wars-jedi-knight-mysteries-of-the-sith.json new file mode 100644 index 000000000000..483872a8944a --- /dev/null +++ b/data/game/st/star-wars-jedi-knight-mysteries-of-the-sith.json @@ -0,0 +1,21 @@ +{ + "slug": "star-wars-jedi-knight-mysteries-of-the-sith", + "name": "Star Wars Jedi Knight: Mysteries of the Sith", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q55301" + ], + "release_date": "1998-02-24", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter" + ], + "developers": [ + "Lucasfilm Games" + ], + "publishers": [ + "Lucasfilm Games" + ] +} diff --git a/data/game/st/star-wars-rebel-assault-ii-the-hidden-empire-rebel-assault.json b/data/game/st/star-wars-rebel-assault-ii-the-hidden-empire-rebel-assault.json new file mode 100644 index 000000000000..730d22b223ba --- /dev/null +++ b/data/game/st/star-wars-rebel-assault-ii-the-hidden-empire-rebel-assault.json @@ -0,0 +1,25 @@ +{ + "slug": "star-wars-rebel-assault-ii-the-hidden-empire-rebel-assault", + "name": "Star Wars Rebel Assault II: The Hidden Empire / Rebel Assault", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q29582645" + ], + "release_date": "1996-01-01", + "platforms": [ + "IBM PC compatible", + "macOS", + "Microsoft Windows" + ], + "genres": [ + "action game", + "rail shooter" + ], + "developers": [ + "Factor 5", + "Lucasfilm Games" + ], + "publishers": [ + "Lucasfilm Games" + ] +} diff --git a/data/game/st/star-wars-return-of-the-jedi-ewok-adventure.json b/data/game/st/star-wars-return-of-the-jedi-ewok-adventure.json new file mode 100644 index 000000000000..d69f8ff57d6a --- /dev/null +++ b/data/game/st/star-wars-return-of-the-jedi-ewok-adventure.json @@ -0,0 +1,17 @@ +{ + "slug": "star-wars-return-of-the-jedi-ewok-adventure", + "name": "Star Wars: Return of the Jedi: Ewok Adventure", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q54332" + ], + "platforms": [ + "Atari 2600" + ], + "genres": [ + "shoot 'em up" + ], + "developers": [ + "Atari Games" + ] +} diff --git a/data/game/st/star-wars-the-force-unleashed-ultimate-sith-edition.json b/data/game/st/star-wars-the-force-unleashed-ultimate-sith-edition.json new file mode 100644 index 000000000000..1fc1a38c5a3e --- /dev/null +++ b/data/game/st/star-wars-the-force-unleashed-ultimate-sith-edition.json @@ -0,0 +1,13 @@ +{ + "slug": "star-wars-the-force-unleashed-ultimate-sith-edition", + "name": "Star Wars: The Force Unleashed - Ultimate Sith Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q12072563" + ], + "release_date": "2009-11-03", + "platforms": [ + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/game/st/star-wars-the-interactive-video-board-game.json b/data/game/st/star-wars-the-interactive-video-board-game.json new file mode 100644 index 000000000000..13a2fb1fc1aa --- /dev/null +++ b/data/game/st/star-wars-the-interactive-video-board-game.json @@ -0,0 +1,12 @@ +{ + "slug": "star-wars-the-interactive-video-board-game", + "name": "Star Wars: The Interactive Video Board Game", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7601107" + ], + "release_date": "1996-01-01", + "publishers": [ + "Parker Brothers" + ] +} diff --git a/data/game/st/star-wars-the-old-republic-galactic-starfighter.json b/data/game/st/star-wars-the-old-republic-galactic-starfighter.json new file mode 100644 index 000000000000..56a1916cca17 --- /dev/null +++ b/data/game/st/star-wars-the-old-republic-galactic-starfighter.json @@ -0,0 +1,22 @@ +{ + "slug": "star-wars-the-old-republic-galactic-starfighter", + "name": "Star Wars: The Old Republic: Galactic Starfighter", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q102209235" + ], + "release_date": "2014-02-04", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "massively multiplayer online role-playing game" + ], + "developers": [ + "BioWare" + ], + "publishers": [ + "Electronic Arts", + "Lucasfilm Games" + ] +} diff --git a/data/game/st/star-wars-the-old-republic-galactic-strongholds.json b/data/game/st/star-wars-the-old-republic-galactic-strongholds.json new file mode 100644 index 000000000000..baaf513f8916 --- /dev/null +++ b/data/game/st/star-wars-the-old-republic-galactic-strongholds.json @@ -0,0 +1,22 @@ +{ + "slug": "star-wars-the-old-republic-galactic-strongholds", + "name": "Star Wars: The Old Republic: Galactic Strongholds", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q102209255" + ], + "release_date": "2014-10-14", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "massively multiplayer online role-playing game" + ], + "developers": [ + "BioWare" + ], + "publishers": [ + "Electronic Arts", + "Lucasfilm Games" + ] +} diff --git a/data/game/st/star-wars-the-old-republic-knights-of-the-eternal-throne.json b/data/game/st/star-wars-the-old-republic-knights-of-the-eternal-throne.json new file mode 100644 index 000000000000..100426668a57 --- /dev/null +++ b/data/game/st/star-wars-the-old-republic-knights-of-the-eternal-throne.json @@ -0,0 +1,22 @@ +{ + "slug": "star-wars-the-old-republic-knights-of-the-eternal-throne", + "name": "Star Wars: The Old Republic: Knights of the Eternal Throne", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q102209331" + ], + "release_date": "2016-12-02", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "massively multiplayer online role-playing game" + ], + "developers": [ + "BioWare" + ], + "publishers": [ + "Electronic Arts", + "Lucasfilm Games" + ] +} diff --git a/data/game/st/star-wars-the-old-republic-knights-of-the-fallen-empire.json b/data/game/st/star-wars-the-old-republic-knights-of-the-fallen-empire.json new file mode 100644 index 000000000000..fac5f3d5e361 --- /dev/null +++ b/data/game/st/star-wars-the-old-republic-knights-of-the-fallen-empire.json @@ -0,0 +1,22 @@ +{ + "slug": "star-wars-the-old-republic-knights-of-the-fallen-empire", + "name": "Star Wars: The Old Republic: Knights of the Fallen Empire", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q102209322" + ], + "release_date": "2015-10-27", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "massively multiplayer online role-playing game" + ], + "developers": [ + "BioWare" + ], + "publishers": [ + "Electronic Arts", + "Lucasfilm Games" + ] +} diff --git a/data/game/st/star-wars-the-old-republic-onslaught.json b/data/game/st/star-wars-the-old-republic-onslaught.json new file mode 100644 index 000000000000..8ea46278fa61 --- /dev/null +++ b/data/game/st/star-wars-the-old-republic-onslaught.json @@ -0,0 +1,22 @@ +{ + "slug": "star-wars-the-old-republic-onslaught", + "name": "Star Wars: The Old Republic: Onslaught", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q102209345" + ], + "release_date": "2019-10-22", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "massively multiplayer online role-playing game" + ], + "developers": [ + "BioWare" + ], + "publishers": [ + "Electronic Arts", + "Lucasfilm Games" + ] +} diff --git a/data/game/st/star-wars-the-old-republic-rise-of-the-hutt-cartel.json b/data/game/st/star-wars-the-old-republic-rise-of-the-hutt-cartel.json new file mode 100644 index 000000000000..3c09bd148f46 --- /dev/null +++ b/data/game/st/star-wars-the-old-republic-rise-of-the-hutt-cartel.json @@ -0,0 +1,23 @@ +{ + "slug": "star-wars-the-old-republic-rise-of-the-hutt-cartel", + "name": "Star Wars: The Old Republic: Rise of the Hutt Cartel", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q102208645" + ], + "release_date": "2013-04-14", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "massively multiplayer online role-playing game", + "space opera video game" + ], + "developers": [ + "BioWare" + ], + "publishers": [ + "Electronic Arts", + "Lucasfilm Games" + ] +} diff --git a/data/game/st/star-wars-the-old-republic-shadow-of-revan.json b/data/game/st/star-wars-the-old-republic-shadow-of-revan.json new file mode 100644 index 000000000000..666d83f0d128 --- /dev/null +++ b/data/game/st/star-wars-the-old-republic-shadow-of-revan.json @@ -0,0 +1,22 @@ +{ + "slug": "star-wars-the-old-republic-shadow-of-revan", + "name": "Star Wars: The Old Republic: Shadow of Revan", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q102209286" + ], + "release_date": "2014-12-09", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "massively multiplayer online role-playing game" + ], + "developers": [ + "BioWare" + ], + "publishers": [ + "Electronic Arts", + "Lucasfilm Games" + ] +} diff --git a/data/game/st/star-wars-tie-fighter-collector-s-cd-rom.json b/data/game/st/star-wars-tie-fighter-collector-s-cd-rom.json new file mode 100644 index 000000000000..e8baab00a9f4 --- /dev/null +++ b/data/game/st/star-wars-tie-fighter-collector-s-cd-rom.json @@ -0,0 +1,21 @@ +{ + "slug": "star-wars-tie-fighter-collector-s-cd-rom", + "name": "Star Wars: TIE Fighter - Collector's CD-ROM", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q29646863" + ], + "release_date": "1995-01-01", + "platforms": [ + "IBM PC compatible" + ], + "genres": [ + "space combat simulation game" + ], + "developers": [ + "Totally Games" + ], + "publishers": [ + "Lucasfilm Games" + ] +} diff --git a/data/game/st/star-wars-tie-fighter-special-edition.json b/data/game/st/star-wars-tie-fighter-special-edition.json new file mode 100644 index 000000000000..696180991690 --- /dev/null +++ b/data/game/st/star-wars-tie-fighter-special-edition.json @@ -0,0 +1,22 @@ +{ + "slug": "star-wars-tie-fighter-special-edition", + "name": "Star Wars: TIE Fighter - Special Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q29646926" + ], + "release_date": "2014-10-28", + "platforms": [ + "IBM PC compatible", + "Mac" + ], + "genres": [ + "space combat simulation game" + ], + "developers": [ + "Totally Games" + ], + "publishers": [ + "Disney Interactive Studios" + ] +} diff --git a/data/game/st/star-wars-x-wing-collector-series.json b/data/game/st/star-wars-x-wing-collector-series.json new file mode 100644 index 000000000000..1eff8cf7f3f7 --- /dev/null +++ b/data/game/st/star-wars-x-wing-collector-series.json @@ -0,0 +1,22 @@ +{ + "slug": "star-wars-x-wing-collector-series", + "name": "Star Wars: X-Wing - Collector Series", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q29649749" + ], + "release_date": "1998-01-01", + "platforms": [ + "IBM PC compatible", + "Mac" + ], + "genres": [ + "space combat simulation game" + ], + "developers": [ + "Totally Games" + ], + "publishers": [ + "Lucasfilm Games" + ] +} diff --git a/data/game/st/star-wars-x-wing-tour-of-duty-imperial-pursuit.json b/data/game/st/star-wars-x-wing-tour-of-duty-imperial-pursuit.json new file mode 100644 index 000000000000..288811e1b23f --- /dev/null +++ b/data/game/st/star-wars-x-wing-tour-of-duty-imperial-pursuit.json @@ -0,0 +1,19 @@ +{ + "slug": "star-wars-x-wing-tour-of-duty-imperial-pursuit", + "name": "Star Wars X-Wing: Tour of Duty – Imperial Pursuit", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q29645143" + ], + "platforms": [ + "IBM PC compatible", + "Mac" + ], + "genres": [ + "space combat simulation game" + ], + "publishers": [ + "Lucasfilm Games", + "Disney Interactive Studios" + ] +} diff --git a/data/game/st/star-wars-x-wing-vs-tie-fighter-balance-of-power-campaigns.json b/data/game/st/star-wars-x-wing-vs-tie-fighter-balance-of-power-campaigns.json new file mode 100644 index 000000000000..7d0c385ab18c --- /dev/null +++ b/data/game/st/star-wars-x-wing-vs-tie-fighter-balance-of-power-campaigns.json @@ -0,0 +1,22 @@ +{ + "slug": "star-wars-x-wing-vs-tie-fighter-balance-of-power-campaigns", + "name": "Star Wars: X-Wing vs. TIE Fighter - Balance of Power Campaigns", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q29649653" + ], + "release_date": "1997-01-01", + "platforms": [ + "Classic Mac OS", + "IBM PC compatible" + ], + "genres": [ + "space combat simulation game" + ], + "developers": [ + "Totally Games" + ], + "publishers": [ + "Lucasfilm Games" + ] +} diff --git a/data/game/st/star-wars-x-wing-vs-tie-fighter-balance-of-power.json b/data/game/st/star-wars-x-wing-vs-tie-fighter-balance-of-power.json new file mode 100644 index 000000000000..2be1fdaf5daa --- /dev/null +++ b/data/game/st/star-wars-x-wing-vs-tie-fighter-balance-of-power.json @@ -0,0 +1,22 @@ +{ + "slug": "star-wars-x-wing-vs-tie-fighter-balance-of-power", + "name": "Star Wars: X-Wing vs. TIE Fighter - Balance of Power", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q29649947" + ], + "release_date": "2014-10-28", + "platforms": [ + "IBM PC compatible", + "Microsoft Windows" + ], + "genres": [ + "space combat simulation game" + ], + "developers": [ + "Totally Games" + ], + "publishers": [ + "Disney Interactive Studios" + ] +} diff --git a/data/game/st/star-wolves-3-ashes-of-victory.json b/data/game/st/star-wolves-3-ashes-of-victory.json new file mode 100644 index 000000000000..8930805725c2 --- /dev/null +++ b/data/game/st/star-wolves-3-ashes-of-victory.json @@ -0,0 +1,8 @@ +{ + "slug": "star-wolves-3-ashes-of-victory", + "name": "Star Wolves 3: Ashes of Victory", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120800608" + ] +} diff --git a/data/game/st/star-worlds-arcade.json b/data/game/st/star-worlds-arcade.json new file mode 100644 index 000000000000..94eeacb9b783 --- /dev/null +++ b/data/game/st/star-worlds-arcade.json @@ -0,0 +1,8 @@ +{ + "slug": "star-worlds-arcade", + "name": "Star Worlds Arcade", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q30589410" + ] +} diff --git a/data/game/st/starblazer-q105703007.json b/data/game/st/starblazer-q105703007.json new file mode 100644 index 000000000000..dfb6e54ed001 --- /dev/null +++ b/data/game/st/starblazer-q105703007.json @@ -0,0 +1,14 @@ +{ + "slug": "starblazer-q105703007", + "name": "Starblazer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105703007" + ], + "genres": [ + "science fiction video game" + ], + "publishers": [ + "Sega" + ] +} diff --git a/data/game/st/starcraft-brood-war.json b/data/game/st/starcraft-brood-war.json new file mode 100644 index 000000000000..718fe9a24bc6 --- /dev/null +++ b/data/game/st/starcraft-brood-war.json @@ -0,0 +1,26 @@ +{ + "slug": "starcraft-brood-war", + "name": "StarCraft: Brood War", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q840409" + ], + "release_date": "1998-11-30", + "platforms": [ + "Classic Mac OS", + "personal computer", + "macOS", + "Microsoft Windows" + ], + "genres": [ + "real-time strategy" + ], + "developers": [ + "Saffire", + "Blizzard Entertainment" + ], + "publishers": [ + "Blizzard Entertainment", + "Sierra Entertainment" + ] +} diff --git a/data/game/st/starcraft-ghost.json b/data/game/st/starcraft-ghost.json new file mode 100644 index 000000000000..9714471d40eb --- /dev/null +++ b/data/game/st/starcraft-ghost.json @@ -0,0 +1,18 @@ +{ + "slug": "starcraft-ghost", + "name": "StarCraft: Ghost", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q605211" + ], + "genres": [ + "action game", + "third-person shooter" + ], + "developers": [ + "Blizzard Entertainment" + ], + "publishers": [ + "Blizzard Entertainment" + ] +} diff --git a/data/game/st/starcraft-ii-heart-of-the-swarm.json b/data/game/st/starcraft-ii-heart-of-the-swarm.json new file mode 100644 index 000000000000..04ce978686da --- /dev/null +++ b/data/game/st/starcraft-ii-heart-of-the-swarm.json @@ -0,0 +1,22 @@ +{ + "slug": "starcraft-ii-heart-of-the-swarm", + "name": "StarCraft II: Heart of the Swarm", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1207938" + ], + "release_date": "2013-03-12", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "real-time strategy" + ], + "developers": [ + "Blizzard Entertainment" + ], + "publishers": [ + "Activision Blizzard" + ] +} diff --git a/data/game/st/starcraft-insurrection.json b/data/game/st/starcraft-insurrection.json new file mode 100644 index 000000000000..d51f15d842ab --- /dev/null +++ b/data/game/st/starcraft-insurrection.json @@ -0,0 +1,16 @@ +{ + "slug": "starcraft-insurrection", + "name": "StarCraft: Insurrection", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3496925" + ], + "release_date": "1998-07-31", + "platforms": [ + "Classic Mac OS", + "Microsoft Windows" + ], + "genres": [ + "real-time strategy" + ] +} diff --git a/data/game/st/starcraft-retribution.json b/data/game/st/starcraft-retribution.json new file mode 100644 index 000000000000..c8fb9cdd8b26 --- /dev/null +++ b/data/game/st/starcraft-retribution.json @@ -0,0 +1,22 @@ +{ + "slug": "starcraft-retribution", + "name": "StarCraft: Retribution", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4050028" + ], + "release_date": "1998-01-01", + "platforms": [ + "Classic Mac OS", + "Microsoft Windows" + ], + "genres": [ + "real-time strategy" + ], + "developers": [ + "Stardock" + ], + "publishers": [ + "WizardWorks Software" + ] +} diff --git a/data/game/st/starcraft.json b/data/game/st/starcraft.json new file mode 100644 index 000000000000..9b9c0d88d729 --- /dev/null +++ b/data/game/st/starcraft.json @@ -0,0 +1,22 @@ +{ + "slug": "starcraft", + "name": "StarCraft", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122860706" + ], + "release_date": "1998-06-23", + "platforms": [ + "Classic Mac OS", + "Microsoft Windows" + ], + "genres": [ + "real-time strategy" + ], + "developers": [ + "Blizzard Entertainment" + ], + "publishers": [ + "Blizzard Entertainment" + ] +} diff --git a/data/game/st/stardew-valley-q122704284.json b/data/game/st/stardew-valley-q122704284.json new file mode 100644 index 000000000000..a6d10e24b79d --- /dev/null +++ b/data/game/st/stardew-valley-q122704284.json @@ -0,0 +1,13 @@ +{ + "slug": "stardew-valley-q122704284", + "name": "Stardew Valley+", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122704284" + ], + "release_date": "2023-07-21", + "platforms": [ + "iPadOS", + "iOS" + ] +} diff --git a/data/game/st/starfield-constellation-edition.json b/data/game/st/starfield-constellation-edition.json new file mode 100644 index 000000000000..b1fe6db8186a --- /dev/null +++ b/data/game/st/starfield-constellation-edition.json @@ -0,0 +1,9 @@ +{ + "slug": "starfield-constellation-edition", + "name": "Starfield Constellation Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122216733" + ], + "release_date": "2023-09-01" +} diff --git a/data/game/st/starfield-premium-edition.json b/data/game/st/starfield-premium-edition.json new file mode 100644 index 000000000000..4d76816e1873 --- /dev/null +++ b/data/game/st/starfield-premium-edition.json @@ -0,0 +1,9 @@ +{ + "slug": "starfield-premium-edition", + "name": "Starfield Premium Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122216723" + ], + "release_date": "2023-09-01" +} diff --git a/data/game/st/starfield-shattered-space.json b/data/game/st/starfield-shattered-space.json new file mode 100644 index 000000000000..41b6a8baf89f --- /dev/null +++ b/data/game/st/starfield-shattered-space.json @@ -0,0 +1,12 @@ +{ + "slug": "starfield-shattered-space", + "name": "Starfield: Shattered Space", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q129641427" + ], + "release_date": "2024-09-30", + "platforms": [ + "Microsoft Windows" + ] +} diff --git a/data/game/st/starfield-standard-edition.json b/data/game/st/starfield-standard-edition.json new file mode 100644 index 000000000000..f5233d14cd49 --- /dev/null +++ b/data/game/st/starfield-standard-edition.json @@ -0,0 +1,9 @@ +{ + "slug": "starfield-standard-edition", + "name": "Starfield Standard Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122216646" + ], + "release_date": "2023-09-06" +} diff --git a/data/game/st/stargate-sg-1-the-alliance.json b/data/game/st/stargate-sg-1-the-alliance.json new file mode 100644 index 000000000000..1ade8195dc00 --- /dev/null +++ b/data/game/st/stargate-sg-1-the-alliance.json @@ -0,0 +1,17 @@ +{ + "slug": "stargate-sg-1-the-alliance", + "name": "Stargate SG-1: The Alliance", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1055943" + ], + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter" + ], + "publishers": [ + "JoWooD Entertainment" + ] +} diff --git a/data/game/st/stargate-worlds.json b/data/game/st/stargate-worlds.json new file mode 100644 index 000000000000..bc479b9ef4b9 --- /dev/null +++ b/data/game/st/stargate-worlds.json @@ -0,0 +1,14 @@ +{ + "slug": "stargate-worlds", + "name": "Stargate Worlds", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2348044" + ], + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "massively multiplayer online role-playing game" + ] +} diff --git a/data/game/st/starry-moon-island-2-break-out-mp01.json b/data/game/st/starry-moon-island-2-break-out-mp01.json new file mode 100644 index 000000000000..eb26c849508c --- /dev/null +++ b/data/game/st/starry-moon-island-2-break-out-mp01.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-2-break-out-mp01", + "name": "Starry Moon Island 2 Break Out MP01", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116201755" + ], + "release_date": "2021-11-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-2-break-out-mp02.json b/data/game/st/starry-moon-island-2-break-out-mp02.json new file mode 100644 index 000000000000..a911231d3c62 --- /dev/null +++ b/data/game/st/starry-moon-island-2-break-out-mp02.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-2-break-out-mp02", + "name": "Starry Moon Island 2 Break Out MP02", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116201756" + ], + "release_date": "2021-11-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-2-break-out-mp03.json b/data/game/st/starry-moon-island-2-break-out-mp03.json new file mode 100644 index 000000000000..9a36ad003c7e --- /dev/null +++ b/data/game/st/starry-moon-island-2-break-out-mp03.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-2-break-out-mp03", + "name": "Starry Moon Island 2 Break Out MP03", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116201757" + ], + "release_date": "2021-11-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-2-break-out-mp04.json b/data/game/st/starry-moon-island-2-break-out-mp04.json new file mode 100644 index 000000000000..3fc162e6da00 --- /dev/null +++ b/data/game/st/starry-moon-island-2-break-out-mp04.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-2-break-out-mp04", + "name": "Starry Moon Island 2 Break Out MP04", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116201758" + ], + "release_date": "2021-11-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-2-break-out-mp05.json b/data/game/st/starry-moon-island-2-break-out-mp05.json new file mode 100644 index 000000000000..e14ceb60ee2a --- /dev/null +++ b/data/game/st/starry-moon-island-2-break-out-mp05.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-2-break-out-mp05", + "name": "Starry Moon Island 2 Break Out MP05", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116201760" + ], + "release_date": "2021-11-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-2-break-out-mp06.json b/data/game/st/starry-moon-island-2-break-out-mp06.json new file mode 100644 index 000000000000..da8599be779c --- /dev/null +++ b/data/game/st/starry-moon-island-2-break-out-mp06.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-2-break-out-mp06", + "name": "Starry Moon Island 2 Break Out MP06", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116201761" + ], + "release_date": "2021-11-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-2-break-out-mp07.json b/data/game/st/starry-moon-island-2-break-out-mp07.json new file mode 100644 index 000000000000..a53933fcab2a --- /dev/null +++ b/data/game/st/starry-moon-island-2-break-out-mp07.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-2-break-out-mp07", + "name": "Starry Moon Island 2 Break Out MP07", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116201762" + ], + "release_date": "2021-11-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-2-break-out-mp08.json b/data/game/st/starry-moon-island-2-break-out-mp08.json new file mode 100644 index 000000000000..c9bf8928b2e4 --- /dev/null +++ b/data/game/st/starry-moon-island-2-break-out-mp08.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-2-break-out-mp08", + "name": "Starry Moon Island 2 Break Out MP08", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116201763" + ], + "release_date": "2021-11-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-2-break-out-mp09.json b/data/game/st/starry-moon-island-2-break-out-mp09.json new file mode 100644 index 000000000000..cf1b54399418 --- /dev/null +++ b/data/game/st/starry-moon-island-2-break-out-mp09.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-2-break-out-mp09", + "name": "Starry Moon Island 2 Break Out MP09", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116201764" + ], + "release_date": "2021-11-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-2-break-out-mp10.json b/data/game/st/starry-moon-island-2-break-out-mp10.json new file mode 100644 index 000000000000..d76d2549ff2e --- /dev/null +++ b/data/game/st/starry-moon-island-2-break-out-mp10.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-2-break-out-mp10", + "name": "Starry Moon Island 2 Break Out MP10", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116201766" + ], + "release_date": "2021-11-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-2-cannon-war-mp01.json b/data/game/st/starry-moon-island-2-cannon-war-mp01.json new file mode 100644 index 000000000000..0f5096a317a2 --- /dev/null +++ b/data/game/st/starry-moon-island-2-cannon-war-mp01.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-2-cannon-war-mp01", + "name": "Starry Moon Island 2 Cannon War MP01", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116201768" + ], + "release_date": "2021-11-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-2-cannon-war-mp02.json b/data/game/st/starry-moon-island-2-cannon-war-mp02.json new file mode 100644 index 000000000000..81900d450767 --- /dev/null +++ b/data/game/st/starry-moon-island-2-cannon-war-mp02.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-2-cannon-war-mp02", + "name": "Starry Moon Island 2 Cannon War MP02", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116201769" + ], + "release_date": "2021-11-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-2-cannon-war-mp03.json b/data/game/st/starry-moon-island-2-cannon-war-mp03.json new file mode 100644 index 000000000000..2b1cbf3846e2 --- /dev/null +++ b/data/game/st/starry-moon-island-2-cannon-war-mp03.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-2-cannon-war-mp03", + "name": "Starry Moon Island 2 Cannon War MP03", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116201772" + ], + "release_date": "2021-11-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-2-cannon-war-mp04.json b/data/game/st/starry-moon-island-2-cannon-war-mp04.json new file mode 100644 index 000000000000..f26772478b07 --- /dev/null +++ b/data/game/st/starry-moon-island-2-cannon-war-mp04.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-2-cannon-war-mp04", + "name": "Starry Moon Island 2 Cannon War MP04", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116201773" + ], + "release_date": "2021-11-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-2-cannon-war-mp05.json b/data/game/st/starry-moon-island-2-cannon-war-mp05.json new file mode 100644 index 000000000000..392c4b0750d7 --- /dev/null +++ b/data/game/st/starry-moon-island-2-cannon-war-mp05.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-2-cannon-war-mp05", + "name": "Starry Moon Island 2 Cannon War MP05", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116201774" + ], + "release_date": "2021-11-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-2-cannon-war-mp06.json b/data/game/st/starry-moon-island-2-cannon-war-mp06.json new file mode 100644 index 000000000000..7b5f8ead51bf --- /dev/null +++ b/data/game/st/starry-moon-island-2-cannon-war-mp06.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-2-cannon-war-mp06", + "name": "Starry Moon Island 2 Cannon War MP06", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116201775" + ], + "release_date": "2021-11-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-2-cannon-war-mp07.json b/data/game/st/starry-moon-island-2-cannon-war-mp07.json new file mode 100644 index 000000000000..e9dffe7eca8f --- /dev/null +++ b/data/game/st/starry-moon-island-2-cannon-war-mp07.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-2-cannon-war-mp07", + "name": "Starry Moon Island 2 Cannon War MP07", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116201777" + ], + "release_date": "2021-11-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-2-cannon-war-mp08.json b/data/game/st/starry-moon-island-2-cannon-war-mp08.json new file mode 100644 index 000000000000..229d7143b652 --- /dev/null +++ b/data/game/st/starry-moon-island-2-cannon-war-mp08.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-2-cannon-war-mp08", + "name": "Starry Moon Island 2 Cannon War MP08", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116201781" + ], + "release_date": "2021-11-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-2-cannon-war-mp09.json b/data/game/st/starry-moon-island-2-cannon-war-mp09.json new file mode 100644 index 000000000000..2c9732161c25 --- /dev/null +++ b/data/game/st/starry-moon-island-2-cannon-war-mp09.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-2-cannon-war-mp09", + "name": "Starry Moon Island 2 Cannon War MP09", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116201782" + ], + "release_date": "2021-11-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-2-cannon-war-mp10.json b/data/game/st/starry-moon-island-2-cannon-war-mp10.json new file mode 100644 index 000000000000..6a88fbb1d216 --- /dev/null +++ b/data/game/st/starry-moon-island-2-cannon-war-mp10.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-2-cannon-war-mp10", + "name": "Starry Moon Island 2 Cannon War MP10", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116201783" + ], + "release_date": "2021-11-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-2-cannonade-mp01.json b/data/game/st/starry-moon-island-2-cannonade-mp01.json new file mode 100644 index 000000000000..b12bc6b1fdb6 --- /dev/null +++ b/data/game/st/starry-moon-island-2-cannonade-mp01.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-2-cannonade-mp01", + "name": "Starry Moon Island 2 Cannonade MP01", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116201785" + ], + "release_date": "2021-11-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-2-cannonade-mp02.json b/data/game/st/starry-moon-island-2-cannonade-mp02.json new file mode 100644 index 000000000000..643c2b797850 --- /dev/null +++ b/data/game/st/starry-moon-island-2-cannonade-mp02.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-2-cannonade-mp02", + "name": "Starry Moon Island 2 Cannonade MP02", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116201787" + ], + "release_date": "2021-11-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-2-cannonade-mp03.json b/data/game/st/starry-moon-island-2-cannonade-mp03.json new file mode 100644 index 000000000000..9d062cfcd9ee --- /dev/null +++ b/data/game/st/starry-moon-island-2-cannonade-mp03.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-2-cannonade-mp03", + "name": "Starry Moon Island 2 Cannonade MP03", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116201788" + ], + "release_date": "2021-11-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-2-cannonade-mp04.json b/data/game/st/starry-moon-island-2-cannonade-mp04.json new file mode 100644 index 000000000000..935844f32d10 --- /dev/null +++ b/data/game/st/starry-moon-island-2-cannonade-mp04.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-2-cannonade-mp04", + "name": "Starry Moon Island 2 Cannonade MP04", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116201789" + ], + "release_date": "2021-11-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-2-cannonade-mp05.json b/data/game/st/starry-moon-island-2-cannonade-mp05.json new file mode 100644 index 000000000000..50b43e9d4751 --- /dev/null +++ b/data/game/st/starry-moon-island-2-cannonade-mp05.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-2-cannonade-mp05", + "name": "Starry Moon Island 2 Cannonade MP05", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116201803" + ], + "release_date": "2021-11-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-2-cannonade-mp06.json b/data/game/st/starry-moon-island-2-cannonade-mp06.json new file mode 100644 index 000000000000..11d83ca18ab6 --- /dev/null +++ b/data/game/st/starry-moon-island-2-cannonade-mp06.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-2-cannonade-mp06", + "name": "Starry Moon Island 2 Cannonade MP06", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116201822" + ], + "release_date": "2021-11-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-2-cannonade-mp07.json b/data/game/st/starry-moon-island-2-cannonade-mp07.json new file mode 100644 index 000000000000..9ab5a562948c --- /dev/null +++ b/data/game/st/starry-moon-island-2-cannonade-mp07.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-2-cannonade-mp07", + "name": "Starry Moon Island 2 Cannonade MP07", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116201843" + ], + "release_date": "2021-11-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-2-cannonade-mp08.json b/data/game/st/starry-moon-island-2-cannonade-mp08.json new file mode 100644 index 000000000000..26cd9bd55657 --- /dev/null +++ b/data/game/st/starry-moon-island-2-cannonade-mp08.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-2-cannonade-mp08", + "name": "Starry Moon Island 2 Cannonade MP08", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116201861" + ], + "release_date": "2021-11-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-2-cannonade-mp09.json b/data/game/st/starry-moon-island-2-cannonade-mp09.json new file mode 100644 index 000000000000..0274bffd5999 --- /dev/null +++ b/data/game/st/starry-moon-island-2-cannonade-mp09.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-2-cannonade-mp09", + "name": "Starry Moon Island 2 Cannonade MP09", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116201866" + ], + "release_date": "2021-11-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-2-cannonade-mp10.json b/data/game/st/starry-moon-island-2-cannonade-mp10.json new file mode 100644 index 000000000000..492f799baa62 --- /dev/null +++ b/data/game/st/starry-moon-island-2-cannonade-mp10.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-2-cannonade-mp10", + "name": "Starry Moon Island 2 Cannonade MP10", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116201867" + ], + "release_date": "2021-11-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-2-dna-war-mp01.json b/data/game/st/starry-moon-island-2-dna-war-mp01.json new file mode 100644 index 000000000000..aeff6b072868 --- /dev/null +++ b/data/game/st/starry-moon-island-2-dna-war-mp01.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-2-dna-war-mp01", + "name": "Starry Moon Island 2 DNA War MP01", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116201868" + ], + "release_date": "2021-11-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-2-dna-war-mp02.json b/data/game/st/starry-moon-island-2-dna-war-mp02.json new file mode 100644 index 000000000000..ec13e6319ec0 --- /dev/null +++ b/data/game/st/starry-moon-island-2-dna-war-mp02.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-2-dna-war-mp02", + "name": "Starry Moon Island 2 DNA War MP02", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116201872" + ], + "release_date": "2021-11-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-2-dna-war-mp03.json b/data/game/st/starry-moon-island-2-dna-war-mp03.json new file mode 100644 index 000000000000..ad9fa745e0e2 --- /dev/null +++ b/data/game/st/starry-moon-island-2-dna-war-mp03.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-2-dna-war-mp03", + "name": "Starry Moon Island 2 DNA War MP03", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116201893" + ], + "release_date": "2021-11-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-2-dna-war-mp04.json b/data/game/st/starry-moon-island-2-dna-war-mp04.json new file mode 100644 index 000000000000..9688859bbdc5 --- /dev/null +++ b/data/game/st/starry-moon-island-2-dna-war-mp04.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-2-dna-war-mp04", + "name": "Starry Moon Island 2 DNA War MP04", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116201913" + ], + "release_date": "2021-11-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-2-dna-war-mp05.json b/data/game/st/starry-moon-island-2-dna-war-mp05.json new file mode 100644 index 000000000000..313a974c1d09 --- /dev/null +++ b/data/game/st/starry-moon-island-2-dna-war-mp05.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-2-dna-war-mp05", + "name": "Starry Moon Island 2 DNA War MP05", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116201931" + ], + "release_date": "2021-11-14", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-2-dna-war-mp06.json b/data/game/st/starry-moon-island-2-dna-war-mp06.json new file mode 100644 index 000000000000..52c0c3d8d4d3 --- /dev/null +++ b/data/game/st/starry-moon-island-2-dna-war-mp06.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-2-dna-war-mp06", + "name": "Starry Moon Island 2 DNA War MP06", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116201951" + ], + "release_date": "2021-11-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-2-dna-war-mp07.json b/data/game/st/starry-moon-island-2-dna-war-mp07.json new file mode 100644 index 000000000000..f38b348d69bd --- /dev/null +++ b/data/game/st/starry-moon-island-2-dna-war-mp07.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-2-dna-war-mp07", + "name": "Starry Moon Island 2 DNA War MP07", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116201966" + ], + "release_date": "2021-11-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-2-dna-war-mp08.json b/data/game/st/starry-moon-island-2-dna-war-mp08.json new file mode 100644 index 000000000000..b35f0e17e788 --- /dev/null +++ b/data/game/st/starry-moon-island-2-dna-war-mp08.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-2-dna-war-mp08", + "name": "Starry Moon Island 2 DNA War MP08", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116201967" + ], + "release_date": "2021-11-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-2-dna-war-mp09.json b/data/game/st/starry-moon-island-2-dna-war-mp09.json new file mode 100644 index 000000000000..a2f6a24ffafe --- /dev/null +++ b/data/game/st/starry-moon-island-2-dna-war-mp09.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-2-dna-war-mp09", + "name": "Starry Moon Island 2 DNA War MP09", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116201969" + ], + "release_date": "2021-11-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-2-dna-war-mp10.json b/data/game/st/starry-moon-island-2-dna-war-mp10.json new file mode 100644 index 000000000000..392f48deb8f3 --- /dev/null +++ b/data/game/st/starry-moon-island-2-dna-war-mp10.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-2-dna-war-mp10", + "name": "Starry Moon Island 2 DNA War MP10", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116201973" + ], + "release_date": "2021-11-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-2-mobile-stronghold-mp01.json b/data/game/st/starry-moon-island-2-mobile-stronghold-mp01.json new file mode 100644 index 000000000000..c901e0afe4ff --- /dev/null +++ b/data/game/st/starry-moon-island-2-mobile-stronghold-mp01.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-2-mobile-stronghold-mp01", + "name": "Starry Moon Island 2 Mobile Stronghold MP01", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116201992" + ], + "release_date": "2021-11-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-2-mobile-stronghold-mp02.json b/data/game/st/starry-moon-island-2-mobile-stronghold-mp02.json new file mode 100644 index 000000000000..96149bb0b1ae --- /dev/null +++ b/data/game/st/starry-moon-island-2-mobile-stronghold-mp02.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-2-mobile-stronghold-mp02", + "name": "Starry Moon Island 2 Mobile Stronghold MP02", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202010" + ], + "release_date": "2021-11-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-2-mobile-stronghold-mp03.json b/data/game/st/starry-moon-island-2-mobile-stronghold-mp03.json new file mode 100644 index 000000000000..fdb0e1091445 --- /dev/null +++ b/data/game/st/starry-moon-island-2-mobile-stronghold-mp03.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-2-mobile-stronghold-mp03", + "name": "Starry Moon Island 2 Mobile Stronghold MP03", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202014" + ], + "release_date": "2021-11-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-2-mobile-stronghold-mp04.json b/data/game/st/starry-moon-island-2-mobile-stronghold-mp04.json new file mode 100644 index 000000000000..55fdb08b7f3c --- /dev/null +++ b/data/game/st/starry-moon-island-2-mobile-stronghold-mp04.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-2-mobile-stronghold-mp04", + "name": "Starry Moon Island 2 Mobile Stronghold MP04", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202015" + ], + "release_date": "2021-11-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-2-mobile-stronghold-mp05.json b/data/game/st/starry-moon-island-2-mobile-stronghold-mp05.json new file mode 100644 index 000000000000..cf785e3a9796 --- /dev/null +++ b/data/game/st/starry-moon-island-2-mobile-stronghold-mp05.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-2-mobile-stronghold-mp05", + "name": "Starry Moon Island 2 Mobile Stronghold MP05", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202016" + ], + "release_date": "2021-11-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-2-mobile-stronghold-mp06.json b/data/game/st/starry-moon-island-2-mobile-stronghold-mp06.json new file mode 100644 index 000000000000..45568ecfb8da --- /dev/null +++ b/data/game/st/starry-moon-island-2-mobile-stronghold-mp06.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-2-mobile-stronghold-mp06", + "name": "Starry Moon Island 2 Mobile Stronghold MP06", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202017" + ], + "release_date": "2021-11-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-2-mobile-stronghold-mp07.json b/data/game/st/starry-moon-island-2-mobile-stronghold-mp07.json new file mode 100644 index 000000000000..a74ed53bbf85 --- /dev/null +++ b/data/game/st/starry-moon-island-2-mobile-stronghold-mp07.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-2-mobile-stronghold-mp07", + "name": "Starry Moon Island 2 Mobile Stronghold MP07", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202032" + ], + "release_date": "2021-11-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-2-mobile-stronghold-mp08.json b/data/game/st/starry-moon-island-2-mobile-stronghold-mp08.json new file mode 100644 index 000000000000..f75ce6e5bd7d --- /dev/null +++ b/data/game/st/starry-moon-island-2-mobile-stronghold-mp08.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-2-mobile-stronghold-mp08", + "name": "Starry Moon Island 2 Mobile Stronghold MP08", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202048" + ], + "release_date": "2021-11-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-2-mobile-stronghold-mp09.json b/data/game/st/starry-moon-island-2-mobile-stronghold-mp09.json new file mode 100644 index 000000000000..a1891ec6ed6f --- /dev/null +++ b/data/game/st/starry-moon-island-2-mobile-stronghold-mp09.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-2-mobile-stronghold-mp09", + "name": "Starry Moon Island 2 Mobile Stronghold MP09", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202060" + ], + "release_date": "2021-11-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-2-mobile-stronghold-mp10.json b/data/game/st/starry-moon-island-2-mobile-stronghold-mp10.json new file mode 100644 index 000000000000..89db0bd7c9d7 --- /dev/null +++ b/data/game/st/starry-moon-island-2-mobile-stronghold-mp10.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-2-mobile-stronghold-mp10", + "name": "Starry Moon Island 2 Mobile Stronghold MP10", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202062" + ], + "release_date": "2021-11-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-2-out-of-control-mp01.json b/data/game/st/starry-moon-island-2-out-of-control-mp01.json new file mode 100644 index 000000000000..00ce871500a5 --- /dev/null +++ b/data/game/st/starry-moon-island-2-out-of-control-mp01.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-2-out-of-control-mp01", + "name": "Starry Moon Island 2 Out Of Control MP01", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202063" + ], + "release_date": "2021-11-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-2-out-of-control-mp02.json b/data/game/st/starry-moon-island-2-out-of-control-mp02.json new file mode 100644 index 000000000000..4f7898c49dbd --- /dev/null +++ b/data/game/st/starry-moon-island-2-out-of-control-mp02.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-2-out-of-control-mp02", + "name": "Starry Moon Island 2 Out Of Control MP02", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202066" + ], + "release_date": "2021-11-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-2-out-of-control-mp03.json b/data/game/st/starry-moon-island-2-out-of-control-mp03.json new file mode 100644 index 000000000000..7b6cf9b0ed06 --- /dev/null +++ b/data/game/st/starry-moon-island-2-out-of-control-mp03.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-2-out-of-control-mp03", + "name": "Starry Moon Island 2 Out Of Control MP03", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202067" + ], + "release_date": "2021-11-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-2-out-of-control-mp04.json b/data/game/st/starry-moon-island-2-out-of-control-mp04.json new file mode 100644 index 000000000000..21326aca48bc --- /dev/null +++ b/data/game/st/starry-moon-island-2-out-of-control-mp04.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-2-out-of-control-mp04", + "name": "Starry Moon Island 2 Out Of Control MP04", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202069" + ], + "release_date": "2021-11-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-2-out-of-control-mp05.json b/data/game/st/starry-moon-island-2-out-of-control-mp05.json new file mode 100644 index 000000000000..741f51fc6c23 --- /dev/null +++ b/data/game/st/starry-moon-island-2-out-of-control-mp05.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-2-out-of-control-mp05", + "name": "Starry Moon Island 2 Out Of Control MP05", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202071" + ], + "release_date": "2021-11-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-2-out-of-control-mp06.json b/data/game/st/starry-moon-island-2-out-of-control-mp06.json new file mode 100644 index 000000000000..4b6517e7ea61 --- /dev/null +++ b/data/game/st/starry-moon-island-2-out-of-control-mp06.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-2-out-of-control-mp06", + "name": "Starry Moon Island 2 Out Of Control MP06", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202072" + ], + "release_date": "2021-11-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-2-out-of-control-mp07.json b/data/game/st/starry-moon-island-2-out-of-control-mp07.json new file mode 100644 index 000000000000..7da89f70aee0 --- /dev/null +++ b/data/game/st/starry-moon-island-2-out-of-control-mp07.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-2-out-of-control-mp07", + "name": "Starry Moon Island 2 Out Of Control MP07", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202073" + ], + "release_date": "2021-11-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-2-out-of-control-mp08.json b/data/game/st/starry-moon-island-2-out-of-control-mp08.json new file mode 100644 index 000000000000..c17104860897 --- /dev/null +++ b/data/game/st/starry-moon-island-2-out-of-control-mp08.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-2-out-of-control-mp08", + "name": "Starry Moon Island 2 Out Of Control MP08", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202074" + ], + "release_date": "2021-11-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-2-out-of-control-mp09.json b/data/game/st/starry-moon-island-2-out-of-control-mp09.json new file mode 100644 index 000000000000..ee2861f4bbfe --- /dev/null +++ b/data/game/st/starry-moon-island-2-out-of-control-mp09.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-2-out-of-control-mp09", + "name": "Starry Moon Island 2 Out Of Control MP09", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202075" + ], + "release_date": "2021-11-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-2-out-of-control-mp10.json b/data/game/st/starry-moon-island-2-out-of-control-mp10.json new file mode 100644 index 000000000000..da5183841c82 --- /dev/null +++ b/data/game/st/starry-moon-island-2-out-of-control-mp10.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-2-out-of-control-mp10", + "name": "Starry Moon Island 2 Out Of Control MP10", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202076" + ], + "release_date": "2021-11-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-2-perimeter-mp01.json b/data/game/st/starry-moon-island-2-perimeter-mp01.json new file mode 100644 index 000000000000..42a61c5ec63a --- /dev/null +++ b/data/game/st/starry-moon-island-2-perimeter-mp01.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-2-perimeter-mp01", + "name": "Starry Moon Island 2 Perimeter MP01", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202078" + ], + "release_date": "2021-11-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-2-perimeter-mp02.json b/data/game/st/starry-moon-island-2-perimeter-mp02.json new file mode 100644 index 000000000000..3e72d207b686 --- /dev/null +++ b/data/game/st/starry-moon-island-2-perimeter-mp02.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-2-perimeter-mp02", + "name": "Starry Moon Island 2 Perimeter MP02", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202080" + ], + "release_date": "2021-11-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-2-perimeter-mp03.json b/data/game/st/starry-moon-island-2-perimeter-mp03.json new file mode 100644 index 000000000000..e0b6ffd93a3a --- /dev/null +++ b/data/game/st/starry-moon-island-2-perimeter-mp03.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-2-perimeter-mp03", + "name": "Starry Moon Island 2 Perimeter MP03", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202081" + ], + "release_date": "2021-11-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-2-perimeter-mp04.json b/data/game/st/starry-moon-island-2-perimeter-mp04.json new file mode 100644 index 000000000000..29b22c23c915 --- /dev/null +++ b/data/game/st/starry-moon-island-2-perimeter-mp04.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-2-perimeter-mp04", + "name": "Starry Moon Island 2 Perimeter MP04", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202082" + ], + "release_date": "2021-11-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-2-perimeter-mp05.json b/data/game/st/starry-moon-island-2-perimeter-mp05.json new file mode 100644 index 000000000000..591ccc72cfb2 --- /dev/null +++ b/data/game/st/starry-moon-island-2-perimeter-mp05.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-2-perimeter-mp05", + "name": "Starry Moon Island 2 Perimeter MP05", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202083" + ], + "release_date": "2021-11-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-2-perimeter-mp06.json b/data/game/st/starry-moon-island-2-perimeter-mp06.json new file mode 100644 index 000000000000..21c21cb757a3 --- /dev/null +++ b/data/game/st/starry-moon-island-2-perimeter-mp06.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-2-perimeter-mp06", + "name": "Starry Moon Island 2 Perimeter MP06", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202084" + ], + "release_date": "2021-11-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-2-perimeter-mp07.json b/data/game/st/starry-moon-island-2-perimeter-mp07.json new file mode 100644 index 000000000000..a0d269d495e7 --- /dev/null +++ b/data/game/st/starry-moon-island-2-perimeter-mp07.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-2-perimeter-mp07", + "name": "Starry Moon Island 2 Perimeter MP07", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202085" + ], + "release_date": "2021-11-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-2-perimeter-mp08.json b/data/game/st/starry-moon-island-2-perimeter-mp08.json new file mode 100644 index 000000000000..6a5cc832326f --- /dev/null +++ b/data/game/st/starry-moon-island-2-perimeter-mp08.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-2-perimeter-mp08", + "name": "Starry Moon Island 2 Perimeter MP08", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202086" + ], + "release_date": "2021-11-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-2-perimeter-mp09.json b/data/game/st/starry-moon-island-2-perimeter-mp09.json new file mode 100644 index 000000000000..f07aec4cd60a --- /dev/null +++ b/data/game/st/starry-moon-island-2-perimeter-mp09.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-2-perimeter-mp09", + "name": "Starry Moon Island 2 Perimeter MP09", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202087" + ], + "release_date": "2021-11-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-2-perimeter-mp10.json b/data/game/st/starry-moon-island-2-perimeter-mp10.json new file mode 100644 index 000000000000..9442767562cc --- /dev/null +++ b/data/game/st/starry-moon-island-2-perimeter-mp10.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-2-perimeter-mp10", + "name": "Starry Moon Island 2 Perimeter MP10", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202088" + ], + "release_date": "2021-11-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-2-red-snake-mp01.json b/data/game/st/starry-moon-island-2-red-snake-mp01.json new file mode 100644 index 000000000000..dd052acced0f --- /dev/null +++ b/data/game/st/starry-moon-island-2-red-snake-mp01.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-2-red-snake-mp01", + "name": "Starry Moon Island 2 Red Snake MP01", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202091" + ], + "release_date": "2021-11-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-2-red-snake-mp02.json b/data/game/st/starry-moon-island-2-red-snake-mp02.json new file mode 100644 index 000000000000..3cb513d37527 --- /dev/null +++ b/data/game/st/starry-moon-island-2-red-snake-mp02.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-2-red-snake-mp02", + "name": "Starry Moon Island 2 Red Snake MP02", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202092" + ], + "release_date": "2021-11-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-2-red-snake-mp03.json b/data/game/st/starry-moon-island-2-red-snake-mp03.json new file mode 100644 index 000000000000..85892c12f57f --- /dev/null +++ b/data/game/st/starry-moon-island-2-red-snake-mp03.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-2-red-snake-mp03", + "name": "Starry Moon Island 2 Red Snake MP03", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202093" + ], + "release_date": "2021-11-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-2-red-snake-mp04.json b/data/game/st/starry-moon-island-2-red-snake-mp04.json new file mode 100644 index 000000000000..8694c8c4ab07 --- /dev/null +++ b/data/game/st/starry-moon-island-2-red-snake-mp04.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-2-red-snake-mp04", + "name": "Starry Moon Island 2 Red Snake MP04", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202094" + ], + "release_date": "2021-11-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-2-red-snake-mp05.json b/data/game/st/starry-moon-island-2-red-snake-mp05.json new file mode 100644 index 000000000000..7faafaadb281 --- /dev/null +++ b/data/game/st/starry-moon-island-2-red-snake-mp05.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-2-red-snake-mp05", + "name": "Starry Moon Island 2 Red Snake MP05", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202095" + ], + "release_date": "2021-11-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-2-red-snake-mp06.json b/data/game/st/starry-moon-island-2-red-snake-mp06.json new file mode 100644 index 000000000000..df67a4439fe0 --- /dev/null +++ b/data/game/st/starry-moon-island-2-red-snake-mp06.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-2-red-snake-mp06", + "name": "Starry Moon Island 2 Red Snake MP06", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202097" + ], + "release_date": "2021-11-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-2-red-snake-mp07.json b/data/game/st/starry-moon-island-2-red-snake-mp07.json new file mode 100644 index 000000000000..5479ea735f95 --- /dev/null +++ b/data/game/st/starry-moon-island-2-red-snake-mp07.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-2-red-snake-mp07", + "name": "Starry Moon Island 2 Red Snake MP07", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202098" + ], + "release_date": "2021-11-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-2-red-snake-mp08.json b/data/game/st/starry-moon-island-2-red-snake-mp08.json new file mode 100644 index 000000000000..20da83d61e8c --- /dev/null +++ b/data/game/st/starry-moon-island-2-red-snake-mp08.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-2-red-snake-mp08", + "name": "Starry Moon Island 2 Red Snake MP08", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202100" + ], + "release_date": "2021-11-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-2-red-snake-mp09.json b/data/game/st/starry-moon-island-2-red-snake-mp09.json new file mode 100644 index 000000000000..e92a95a78410 --- /dev/null +++ b/data/game/st/starry-moon-island-2-red-snake-mp09.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-2-red-snake-mp09", + "name": "Starry Moon Island 2 Red Snake MP09", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202101" + ], + "release_date": "2021-11-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-2-red-snake-mp10.json b/data/game/st/starry-moon-island-2-red-snake-mp10.json new file mode 100644 index 000000000000..0ddf83377660 --- /dev/null +++ b/data/game/st/starry-moon-island-2-red-snake-mp10.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-2-red-snake-mp10", + "name": "Starry Moon Island 2 Red Snake MP10", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202102" + ], + "release_date": "2021-11-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-2-star-ocean-mp01.json b/data/game/st/starry-moon-island-2-star-ocean-mp01.json new file mode 100644 index 000000000000..867bbbdd7a0f --- /dev/null +++ b/data/game/st/starry-moon-island-2-star-ocean-mp01.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-2-star-ocean-mp01", + "name": "Starry Moon Island 2 Star Ocean MP01", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202103" + ], + "release_date": "2021-11-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-2-star-ocean-mp02.json b/data/game/st/starry-moon-island-2-star-ocean-mp02.json new file mode 100644 index 000000000000..5cef770cf243 --- /dev/null +++ b/data/game/st/starry-moon-island-2-star-ocean-mp02.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-2-star-ocean-mp02", + "name": "Starry Moon Island 2 Star Ocean MP02", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202104" + ], + "release_date": "2021-11-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-2-star-ocean-mp03.json b/data/game/st/starry-moon-island-2-star-ocean-mp03.json new file mode 100644 index 000000000000..5d13ce6c0033 --- /dev/null +++ b/data/game/st/starry-moon-island-2-star-ocean-mp03.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-2-star-ocean-mp03", + "name": "Starry Moon Island 2 Star Ocean MP03", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202105" + ], + "release_date": "2021-11-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-2-star-ocean-mp04.json b/data/game/st/starry-moon-island-2-star-ocean-mp04.json new file mode 100644 index 000000000000..0551197749a3 --- /dev/null +++ b/data/game/st/starry-moon-island-2-star-ocean-mp04.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-2-star-ocean-mp04", + "name": "Starry Moon Island 2 Star Ocean MP04", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202106" + ], + "release_date": "2021-11-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-2-star-ocean-mp05.json b/data/game/st/starry-moon-island-2-star-ocean-mp05.json new file mode 100644 index 000000000000..13eaee972fc3 --- /dev/null +++ b/data/game/st/starry-moon-island-2-star-ocean-mp05.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-2-star-ocean-mp05", + "name": "Starry Moon Island 2 Star Ocean MP05", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202108" + ], + "release_date": "2021-11-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-2-star-ocean-mp06.json b/data/game/st/starry-moon-island-2-star-ocean-mp06.json new file mode 100644 index 000000000000..584f6672fb8a --- /dev/null +++ b/data/game/st/starry-moon-island-2-star-ocean-mp06.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-2-star-ocean-mp06", + "name": "Starry Moon Island 2 Star Ocean MP06", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202109" + ], + "release_date": "2021-11-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-2-star-ocean-mp07.json b/data/game/st/starry-moon-island-2-star-ocean-mp07.json new file mode 100644 index 000000000000..b1420780361b --- /dev/null +++ b/data/game/st/starry-moon-island-2-star-ocean-mp07.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-2-star-ocean-mp07", + "name": "Starry Moon Island 2 Star Ocean MP07", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202110" + ], + "release_date": "2021-11-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-2-star-ocean-mp08.json b/data/game/st/starry-moon-island-2-star-ocean-mp08.json new file mode 100644 index 000000000000..e0c785c5269a --- /dev/null +++ b/data/game/st/starry-moon-island-2-star-ocean-mp08.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-2-star-ocean-mp08", + "name": "Starry Moon Island 2 Star Ocean MP08", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202111" + ], + "release_date": "2021-11-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-2-star-ocean-mp09.json b/data/game/st/starry-moon-island-2-star-ocean-mp09.json new file mode 100644 index 000000000000..9e56c57694dc --- /dev/null +++ b/data/game/st/starry-moon-island-2-star-ocean-mp09.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-2-star-ocean-mp09", + "name": "Starry Moon Island 2 Star Ocean MP09", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202112" + ], + "release_date": "2021-11-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-2-star-ocean-mp10.json b/data/game/st/starry-moon-island-2-star-ocean-mp10.json new file mode 100644 index 000000000000..12acfb2d6e85 --- /dev/null +++ b/data/game/st/starry-moon-island-2-star-ocean-mp10.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-2-star-ocean-mp10", + "name": "Starry Moon Island 2 Star Ocean MP10", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202113" + ], + "release_date": "2021-11-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-2-tank-advance-mp01.json b/data/game/st/starry-moon-island-2-tank-advance-mp01.json new file mode 100644 index 000000000000..83c389a79555 --- /dev/null +++ b/data/game/st/starry-moon-island-2-tank-advance-mp01.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-2-tank-advance-mp01", + "name": "Starry Moon Island 2 Tank Advance MP01", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202115" + ], + "release_date": "2021-11-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-2-tank-advance-mp02.json b/data/game/st/starry-moon-island-2-tank-advance-mp02.json new file mode 100644 index 000000000000..4d9701a241d8 --- /dev/null +++ b/data/game/st/starry-moon-island-2-tank-advance-mp02.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-2-tank-advance-mp02", + "name": "Starry Moon Island 2 Tank Advance MP02", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202117" + ], + "release_date": "2021-11-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-2-tank-advance-mp03.json b/data/game/st/starry-moon-island-2-tank-advance-mp03.json new file mode 100644 index 000000000000..3398480309d1 --- /dev/null +++ b/data/game/st/starry-moon-island-2-tank-advance-mp03.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-2-tank-advance-mp03", + "name": "Starry Moon Island 2 Tank Advance MP03", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202119" + ], + "release_date": "2021-11-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-2-tank-advance-mp04.json b/data/game/st/starry-moon-island-2-tank-advance-mp04.json new file mode 100644 index 000000000000..e5e05612248b --- /dev/null +++ b/data/game/st/starry-moon-island-2-tank-advance-mp04.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-2-tank-advance-mp04", + "name": "Starry Moon Island 2 Tank Advance MP04", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202125" + ], + "release_date": "2021-11-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-2-tank-advance-mp05.json b/data/game/st/starry-moon-island-2-tank-advance-mp05.json new file mode 100644 index 000000000000..30a2f5fd74e8 --- /dev/null +++ b/data/game/st/starry-moon-island-2-tank-advance-mp05.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-2-tank-advance-mp05", + "name": "Starry Moon Island 2 Tank Advance MP05", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202126" + ], + "release_date": "2021-11-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-2-tank-advance-mp06.json b/data/game/st/starry-moon-island-2-tank-advance-mp06.json new file mode 100644 index 000000000000..02cd42ca72bd --- /dev/null +++ b/data/game/st/starry-moon-island-2-tank-advance-mp06.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-2-tank-advance-mp06", + "name": "Starry Moon Island 2 Tank Advance MP06", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202127" + ], + "release_date": "2021-11-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-2-tank-advance-mp07.json b/data/game/st/starry-moon-island-2-tank-advance-mp07.json new file mode 100644 index 000000000000..54e777a1f736 --- /dev/null +++ b/data/game/st/starry-moon-island-2-tank-advance-mp07.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-2-tank-advance-mp07", + "name": "Starry Moon Island 2 Tank Advance MP07", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202128" + ], + "release_date": "2021-11-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-2-tank-advance-mp08.json b/data/game/st/starry-moon-island-2-tank-advance-mp08.json new file mode 100644 index 000000000000..282370077743 --- /dev/null +++ b/data/game/st/starry-moon-island-2-tank-advance-mp08.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-2-tank-advance-mp08", + "name": "Starry Moon Island 2 Tank Advance MP08", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202129" + ], + "release_date": "2021-11-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-2-tank-advance-mp09.json b/data/game/st/starry-moon-island-2-tank-advance-mp09.json new file mode 100644 index 000000000000..b43c8c8bbcb6 --- /dev/null +++ b/data/game/st/starry-moon-island-2-tank-advance-mp09.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-2-tank-advance-mp09", + "name": "Starry Moon Island 2 Tank Advance MP09", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202130" + ], + "release_date": "2021-11-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-2-tank-advance-mp10.json b/data/game/st/starry-moon-island-2-tank-advance-mp10.json new file mode 100644 index 000000000000..458344590407 --- /dev/null +++ b/data/game/st/starry-moon-island-2-tank-advance-mp10.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-2-tank-advance-mp10", + "name": "Starry Moon Island 2 Tank Advance MP10", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202132" + ], + "release_date": "2021-11-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-break-out-mp01.json b/data/game/st/starry-moon-island-break-out-mp01.json new file mode 100644 index 000000000000..f74711c9c765 --- /dev/null +++ b/data/game/st/starry-moon-island-break-out-mp01.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-break-out-mp01", + "name": "Starry Moon Island Break Out MP01", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202133" + ], + "release_date": "2021-10-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-break-out-mp02.json b/data/game/st/starry-moon-island-break-out-mp02.json new file mode 100644 index 000000000000..390cda2ddb07 --- /dev/null +++ b/data/game/st/starry-moon-island-break-out-mp02.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-break-out-mp02", + "name": "Starry Moon Island Break Out MP02", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202134" + ], + "release_date": "2021-10-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-break-out-mp03.json b/data/game/st/starry-moon-island-break-out-mp03.json new file mode 100644 index 000000000000..b8a22f8272b7 --- /dev/null +++ b/data/game/st/starry-moon-island-break-out-mp03.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-break-out-mp03", + "name": "Starry Moon Island Break Out MP03", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202135" + ], + "release_date": "2021-10-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-break-out-mp04.json b/data/game/st/starry-moon-island-break-out-mp04.json new file mode 100644 index 000000000000..b8bd422dcaeb --- /dev/null +++ b/data/game/st/starry-moon-island-break-out-mp04.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-break-out-mp04", + "name": "Starry Moon Island Break Out MP04", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202136" + ], + "release_date": "2021-10-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-break-out-mp05.json b/data/game/st/starry-moon-island-break-out-mp05.json new file mode 100644 index 000000000000..06ef856dda7a --- /dev/null +++ b/data/game/st/starry-moon-island-break-out-mp05.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-break-out-mp05", + "name": "Starry Moon Island Break Out MP05", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202138" + ], + "release_date": "2021-10-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-break-out-mp06.json b/data/game/st/starry-moon-island-break-out-mp06.json new file mode 100644 index 000000000000..067fa7bf28a0 --- /dev/null +++ b/data/game/st/starry-moon-island-break-out-mp06.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-break-out-mp06", + "name": "Starry Moon Island Break Out MP06", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202139" + ], + "release_date": "2021-10-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-break-out-mp07.json b/data/game/st/starry-moon-island-break-out-mp07.json new file mode 100644 index 000000000000..47cf9fb5caaf --- /dev/null +++ b/data/game/st/starry-moon-island-break-out-mp07.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-break-out-mp07", + "name": "Starry Moon Island Break Out MP07", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202141" + ], + "release_date": "2021-10-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-break-out-mp08.json b/data/game/st/starry-moon-island-break-out-mp08.json new file mode 100644 index 000000000000..3c58afa6148e --- /dev/null +++ b/data/game/st/starry-moon-island-break-out-mp08.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-break-out-mp08", + "name": "Starry Moon Island Break Out MP08", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202143" + ], + "release_date": "2021-10-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-break-out-mp09.json b/data/game/st/starry-moon-island-break-out-mp09.json new file mode 100644 index 000000000000..9d88181c0e9f --- /dev/null +++ b/data/game/st/starry-moon-island-break-out-mp09.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-break-out-mp09", + "name": "Starry Moon Island Break Out MP09", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202144" + ], + "release_date": "2021-10-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-break-out-mp10.json b/data/game/st/starry-moon-island-break-out-mp10.json new file mode 100644 index 000000000000..28e7ad3f13c8 --- /dev/null +++ b/data/game/st/starry-moon-island-break-out-mp10.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-break-out-mp10", + "name": "Starry Moon Island Break Out MP10", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202146" + ], + "release_date": "2021-10-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-cannon-war-mp01.json b/data/game/st/starry-moon-island-cannon-war-mp01.json new file mode 100644 index 000000000000..8a20119039a3 --- /dev/null +++ b/data/game/st/starry-moon-island-cannon-war-mp01.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-cannon-war-mp01", + "name": "Starry Moon Island Cannon War MP01", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202148" + ], + "release_date": "2021-10-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-cannon-war-mp02.json b/data/game/st/starry-moon-island-cannon-war-mp02.json new file mode 100644 index 000000000000..a65c8d8d4cd7 --- /dev/null +++ b/data/game/st/starry-moon-island-cannon-war-mp02.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-cannon-war-mp02", + "name": "Starry Moon Island Cannon War MP02", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202150" + ], + "release_date": "2021-10-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-cannon-war-mp03.json b/data/game/st/starry-moon-island-cannon-war-mp03.json new file mode 100644 index 000000000000..abd1f9c2d7c8 --- /dev/null +++ b/data/game/st/starry-moon-island-cannon-war-mp03.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-cannon-war-mp03", + "name": "Starry Moon Island Cannon War MP03", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202151" + ], + "release_date": "2021-10-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-cannon-war-mp04.json b/data/game/st/starry-moon-island-cannon-war-mp04.json new file mode 100644 index 000000000000..4c4f4574ca24 --- /dev/null +++ b/data/game/st/starry-moon-island-cannon-war-mp04.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-cannon-war-mp04", + "name": "Starry Moon Island Cannon War MP04", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202153" + ], + "release_date": "2021-10-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-cannon-war-mp05.json b/data/game/st/starry-moon-island-cannon-war-mp05.json new file mode 100644 index 000000000000..2019e1ec6c75 --- /dev/null +++ b/data/game/st/starry-moon-island-cannon-war-mp05.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-cannon-war-mp05", + "name": "Starry Moon Island Cannon War MP05", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202154" + ], + "release_date": "2021-10-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-cannon-war-mp06.json b/data/game/st/starry-moon-island-cannon-war-mp06.json new file mode 100644 index 000000000000..75b73f536fc0 --- /dev/null +++ b/data/game/st/starry-moon-island-cannon-war-mp06.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-cannon-war-mp06", + "name": "Starry Moon Island Cannon War MP06", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202158" + ], + "release_date": "2021-10-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-cannon-war-mp07.json b/data/game/st/starry-moon-island-cannon-war-mp07.json new file mode 100644 index 000000000000..ea052cf43c29 --- /dev/null +++ b/data/game/st/starry-moon-island-cannon-war-mp07.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-cannon-war-mp07", + "name": "Starry Moon Island Cannon War MP07", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202161" + ], + "release_date": "2021-10-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-cannon-war-mp08.json b/data/game/st/starry-moon-island-cannon-war-mp08.json new file mode 100644 index 000000000000..c5f9273cb665 --- /dev/null +++ b/data/game/st/starry-moon-island-cannon-war-mp08.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-cannon-war-mp08", + "name": "Starry Moon Island Cannon War MP08", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202162" + ], + "release_date": "2021-10-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-cannon-war-mp09.json b/data/game/st/starry-moon-island-cannon-war-mp09.json new file mode 100644 index 000000000000..d7315f98454f --- /dev/null +++ b/data/game/st/starry-moon-island-cannon-war-mp09.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-cannon-war-mp09", + "name": "Starry Moon Island Cannon War MP09", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202163" + ], + "release_date": "2021-10-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-cannon-war-mp10.json b/data/game/st/starry-moon-island-cannon-war-mp10.json new file mode 100644 index 000000000000..d824f1e7ab66 --- /dev/null +++ b/data/game/st/starry-moon-island-cannon-war-mp10.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-cannon-war-mp10", + "name": "Starry Moon Island Cannon War MP10", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202165" + ], + "release_date": "2021-10-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-cannonade-mp01.json b/data/game/st/starry-moon-island-cannonade-mp01.json new file mode 100644 index 000000000000..f0ada4d96ba9 --- /dev/null +++ b/data/game/st/starry-moon-island-cannonade-mp01.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-cannonade-mp01", + "name": "Starry Moon Island Cannonade MP01", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202166" + ], + "release_date": "2021-10-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-cannonade-mp02.json b/data/game/st/starry-moon-island-cannonade-mp02.json new file mode 100644 index 000000000000..10f009d99d16 --- /dev/null +++ b/data/game/st/starry-moon-island-cannonade-mp02.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-cannonade-mp02", + "name": "Starry Moon Island Cannonade MP02", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202167" + ], + "release_date": "2021-10-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-cannonade-mp03.json b/data/game/st/starry-moon-island-cannonade-mp03.json new file mode 100644 index 000000000000..73281f5a5951 --- /dev/null +++ b/data/game/st/starry-moon-island-cannonade-mp03.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-cannonade-mp03", + "name": "Starry Moon Island Cannonade MP03", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202170" + ], + "release_date": "2021-10-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-cannonade-mp04.json b/data/game/st/starry-moon-island-cannonade-mp04.json new file mode 100644 index 000000000000..bfc2b5655223 --- /dev/null +++ b/data/game/st/starry-moon-island-cannonade-mp04.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-cannonade-mp04", + "name": "Starry Moon Island Cannonade MP04", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202171" + ], + "release_date": "2021-10-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-cannonade-mp05.json b/data/game/st/starry-moon-island-cannonade-mp05.json new file mode 100644 index 000000000000..9c19ce890d1c --- /dev/null +++ b/data/game/st/starry-moon-island-cannonade-mp05.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-cannonade-mp05", + "name": "Starry Moon Island Cannonade MP05", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202172" + ], + "release_date": "2021-10-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-cannonade-mp06.json b/data/game/st/starry-moon-island-cannonade-mp06.json new file mode 100644 index 000000000000..eb07d8184fd4 --- /dev/null +++ b/data/game/st/starry-moon-island-cannonade-mp06.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-cannonade-mp06", + "name": "Starry Moon Island Cannonade MP06", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202177" + ], + "release_date": "2021-10-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-cannonade-mp07.json b/data/game/st/starry-moon-island-cannonade-mp07.json new file mode 100644 index 000000000000..561223277314 --- /dev/null +++ b/data/game/st/starry-moon-island-cannonade-mp07.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-cannonade-mp07", + "name": "Starry Moon Island Cannonade MP07", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202178" + ], + "release_date": "2021-10-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-cannonade-mp08.json b/data/game/st/starry-moon-island-cannonade-mp08.json new file mode 100644 index 000000000000..bb113c2c4ddb --- /dev/null +++ b/data/game/st/starry-moon-island-cannonade-mp08.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-cannonade-mp08", + "name": "Starry Moon Island Cannonade MP08", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202181" + ], + "release_date": "2021-10-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-cannonade-mp09.json b/data/game/st/starry-moon-island-cannonade-mp09.json new file mode 100644 index 000000000000..075485264a5e --- /dev/null +++ b/data/game/st/starry-moon-island-cannonade-mp09.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-cannonade-mp09", + "name": "Starry Moon Island Cannonade MP09", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202184" + ], + "release_date": "2021-10-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-cannonade-mp10.json b/data/game/st/starry-moon-island-cannonade-mp10.json new file mode 100644 index 000000000000..236c49d7b796 --- /dev/null +++ b/data/game/st/starry-moon-island-cannonade-mp10.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-cannonade-mp10", + "name": "Starry Moon Island Cannonade MP10", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202185" + ], + "release_date": "2021-10-30", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-dna-war-mp01.json b/data/game/st/starry-moon-island-dna-war-mp01.json new file mode 100644 index 000000000000..eeb5889941ca --- /dev/null +++ b/data/game/st/starry-moon-island-dna-war-mp01.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-dna-war-mp01", + "name": "Starry Moon Island DNA War MP01", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202187" + ], + "release_date": "2021-10-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-dna-war-mp02.json b/data/game/st/starry-moon-island-dna-war-mp02.json new file mode 100644 index 000000000000..07b1b9e0d1a2 --- /dev/null +++ b/data/game/st/starry-moon-island-dna-war-mp02.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-dna-war-mp02", + "name": "Starry Moon Island DNA War MP02", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202188" + ], + "release_date": "2021-10-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-dna-war-mp03.json b/data/game/st/starry-moon-island-dna-war-mp03.json new file mode 100644 index 000000000000..2008ff2ead09 --- /dev/null +++ b/data/game/st/starry-moon-island-dna-war-mp03.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-dna-war-mp03", + "name": "Starry Moon Island DNA War MP03", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202189" + ], + "release_date": "2021-10-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-dna-war-mp04.json b/data/game/st/starry-moon-island-dna-war-mp04.json new file mode 100644 index 000000000000..0384fac6ac9a --- /dev/null +++ b/data/game/st/starry-moon-island-dna-war-mp04.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-dna-war-mp04", + "name": "Starry Moon Island DNA War MP04", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202190" + ], + "release_date": "2021-10-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-dna-war-mp05.json b/data/game/st/starry-moon-island-dna-war-mp05.json new file mode 100644 index 000000000000..329127d4faff --- /dev/null +++ b/data/game/st/starry-moon-island-dna-war-mp05.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-dna-war-mp05", + "name": "Starry Moon Island DNA War MP05", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202192" + ], + "release_date": "2021-10-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-dna-war-mp06.json b/data/game/st/starry-moon-island-dna-war-mp06.json new file mode 100644 index 000000000000..f9928d3fb6e9 --- /dev/null +++ b/data/game/st/starry-moon-island-dna-war-mp06.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-dna-war-mp06", + "name": "Starry Moon Island DNA War MP06", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202194" + ], + "release_date": "2021-10-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-dna-war-mp07.json b/data/game/st/starry-moon-island-dna-war-mp07.json new file mode 100644 index 000000000000..be312acfbaca --- /dev/null +++ b/data/game/st/starry-moon-island-dna-war-mp07.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-dna-war-mp07", + "name": "Starry Moon Island DNA War MP07", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202195" + ], + "release_date": "2021-10-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-dna-war-mp08.json b/data/game/st/starry-moon-island-dna-war-mp08.json new file mode 100644 index 000000000000..43de43dd5677 --- /dev/null +++ b/data/game/st/starry-moon-island-dna-war-mp08.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-dna-war-mp08", + "name": "Starry Moon Island DNA War MP08", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202196" + ], + "release_date": "2021-10-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-dna-war-mp09.json b/data/game/st/starry-moon-island-dna-war-mp09.json new file mode 100644 index 000000000000..04400f9c4b24 --- /dev/null +++ b/data/game/st/starry-moon-island-dna-war-mp09.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-dna-war-mp09", + "name": "Starry Moon Island DNA War MP09", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202197" + ], + "release_date": "2021-10-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-dna-war-mp10.json b/data/game/st/starry-moon-island-dna-war-mp10.json new file mode 100644 index 000000000000..1aed31775122 --- /dev/null +++ b/data/game/st/starry-moon-island-dna-war-mp10.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-dna-war-mp10", + "name": "Starry Moon Island DNA War MP10", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202199" + ], + "release_date": "2021-10-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-mobile-stronghold-mp01.json b/data/game/st/starry-moon-island-mobile-stronghold-mp01.json new file mode 100644 index 000000000000..3ff18abb5570 --- /dev/null +++ b/data/game/st/starry-moon-island-mobile-stronghold-mp01.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-mobile-stronghold-mp01", + "name": "Starry Moon Island Mobile Stronghold MP01", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202201" + ], + "release_date": "2021-10-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-mobile-stronghold-mp02.json b/data/game/st/starry-moon-island-mobile-stronghold-mp02.json new file mode 100644 index 000000000000..7684266ee36d --- /dev/null +++ b/data/game/st/starry-moon-island-mobile-stronghold-mp02.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-mobile-stronghold-mp02", + "name": "Starry Moon Island Mobile Stronghold MP02", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202203" + ], + "release_date": "2021-10-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-mobile-stronghold-mp03.json b/data/game/st/starry-moon-island-mobile-stronghold-mp03.json new file mode 100644 index 000000000000..176fe089142c --- /dev/null +++ b/data/game/st/starry-moon-island-mobile-stronghold-mp03.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-mobile-stronghold-mp03", + "name": "Starry Moon Island Mobile Stronghold MP03", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202206" + ], + "release_date": "2021-10-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-mobile-stronghold-mp04.json b/data/game/st/starry-moon-island-mobile-stronghold-mp04.json new file mode 100644 index 000000000000..f0b22a12570c --- /dev/null +++ b/data/game/st/starry-moon-island-mobile-stronghold-mp04.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-mobile-stronghold-mp04", + "name": "Starry Moon Island Mobile Stronghold MP04", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202208" + ], + "release_date": "2021-10-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-mobile-stronghold-mp05.json b/data/game/st/starry-moon-island-mobile-stronghold-mp05.json new file mode 100644 index 000000000000..fbb1fc93ac01 --- /dev/null +++ b/data/game/st/starry-moon-island-mobile-stronghold-mp05.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-mobile-stronghold-mp05", + "name": "Starry Moon Island Mobile Stronghold MP05", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202212" + ], + "release_date": "2021-10-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-mobile-stronghold-mp06.json b/data/game/st/starry-moon-island-mobile-stronghold-mp06.json new file mode 100644 index 000000000000..fdfcc70c2137 --- /dev/null +++ b/data/game/st/starry-moon-island-mobile-stronghold-mp06.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-mobile-stronghold-mp06", + "name": "Starry Moon Island Mobile Stronghold MP06", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202213" + ], + "release_date": "2021-10-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-mobile-stronghold-mp07.json b/data/game/st/starry-moon-island-mobile-stronghold-mp07.json new file mode 100644 index 000000000000..870a8c54413b --- /dev/null +++ b/data/game/st/starry-moon-island-mobile-stronghold-mp07.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-mobile-stronghold-mp07", + "name": "Starry Moon Island Mobile Stronghold MP07", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202214" + ], + "release_date": "2021-10-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-mobile-stronghold-mp08.json b/data/game/st/starry-moon-island-mobile-stronghold-mp08.json new file mode 100644 index 000000000000..33640f1c0ca3 --- /dev/null +++ b/data/game/st/starry-moon-island-mobile-stronghold-mp08.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-mobile-stronghold-mp08", + "name": "Starry Moon Island Mobile Stronghold MP08", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202215" + ], + "release_date": "2021-10-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-mobile-stronghold-mp09.json b/data/game/st/starry-moon-island-mobile-stronghold-mp09.json new file mode 100644 index 000000000000..bac7b9a55821 --- /dev/null +++ b/data/game/st/starry-moon-island-mobile-stronghold-mp09.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-mobile-stronghold-mp09", + "name": "Starry Moon Island Mobile Stronghold MP09", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202216" + ], + "release_date": "2021-10-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-mobile-stronghold-mp10.json b/data/game/st/starry-moon-island-mobile-stronghold-mp10.json new file mode 100644 index 000000000000..94199751e15d --- /dev/null +++ b/data/game/st/starry-moon-island-mobile-stronghold-mp10.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-mobile-stronghold-mp10", + "name": "Starry Moon Island Mobile Stronghold MP10", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202218" + ], + "release_date": "2021-10-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-out-of-control-mp01.json b/data/game/st/starry-moon-island-out-of-control-mp01.json new file mode 100644 index 000000000000..9ba0c824688d --- /dev/null +++ b/data/game/st/starry-moon-island-out-of-control-mp01.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-out-of-control-mp01", + "name": "Starry Moon Island Out Of Control MP01", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202219" + ], + "release_date": "2021-10-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-out-of-control-mp02.json b/data/game/st/starry-moon-island-out-of-control-mp02.json new file mode 100644 index 000000000000..f45d941f6165 --- /dev/null +++ b/data/game/st/starry-moon-island-out-of-control-mp02.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-out-of-control-mp02", + "name": "Starry Moon Island Out Of Control MP02", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202221" + ], + "release_date": "2021-10-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-out-of-control-mp03.json b/data/game/st/starry-moon-island-out-of-control-mp03.json new file mode 100644 index 000000000000..82fefa78aadc --- /dev/null +++ b/data/game/st/starry-moon-island-out-of-control-mp03.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-out-of-control-mp03", + "name": "Starry Moon Island Out Of Control MP03", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202222" + ], + "release_date": "2021-10-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-out-of-control-mp04.json b/data/game/st/starry-moon-island-out-of-control-mp04.json new file mode 100644 index 000000000000..6a49021beef0 --- /dev/null +++ b/data/game/st/starry-moon-island-out-of-control-mp04.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-out-of-control-mp04", + "name": "Starry Moon Island Out Of Control MP04", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202223" + ], + "release_date": "2021-10-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-out-of-control-mp05.json b/data/game/st/starry-moon-island-out-of-control-mp05.json new file mode 100644 index 000000000000..abbfaffae7aa --- /dev/null +++ b/data/game/st/starry-moon-island-out-of-control-mp05.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-out-of-control-mp05", + "name": "Starry Moon Island Out Of Control MP05", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202224" + ], + "release_date": "2021-10-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-out-of-control-mp06.json b/data/game/st/starry-moon-island-out-of-control-mp06.json new file mode 100644 index 000000000000..c7e90195d3b6 --- /dev/null +++ b/data/game/st/starry-moon-island-out-of-control-mp06.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-out-of-control-mp06", + "name": "Starry Moon Island Out Of Control MP06", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202227" + ], + "release_date": "2021-10-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-out-of-control-mp07.json b/data/game/st/starry-moon-island-out-of-control-mp07.json new file mode 100644 index 000000000000..db4d836a0c0b --- /dev/null +++ b/data/game/st/starry-moon-island-out-of-control-mp07.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-out-of-control-mp07", + "name": "Starry Moon Island Out Of Control MP07", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202228" + ], + "release_date": "2021-10-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-out-of-control-mp08.json b/data/game/st/starry-moon-island-out-of-control-mp08.json new file mode 100644 index 000000000000..b08726e7f217 --- /dev/null +++ b/data/game/st/starry-moon-island-out-of-control-mp08.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-out-of-control-mp08", + "name": "Starry Moon Island Out Of Control MP08", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202231" + ], + "release_date": "2021-10-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-out-of-control-mp09.json b/data/game/st/starry-moon-island-out-of-control-mp09.json new file mode 100644 index 000000000000..ccb0dc680b5d --- /dev/null +++ b/data/game/st/starry-moon-island-out-of-control-mp09.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-out-of-control-mp09", + "name": "Starry Moon Island Out Of Control MP09", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202233" + ], + "release_date": "2021-10-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-out-of-control-mp10.json b/data/game/st/starry-moon-island-out-of-control-mp10.json new file mode 100644 index 000000000000..d3f18afd4a13 --- /dev/null +++ b/data/game/st/starry-moon-island-out-of-control-mp10.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-out-of-control-mp10", + "name": "Starry Moon Island Out Of Control MP10", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202234" + ], + "release_date": "2021-10-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-perimeter-mp01.json b/data/game/st/starry-moon-island-perimeter-mp01.json new file mode 100644 index 000000000000..fbf4ab0111c4 --- /dev/null +++ b/data/game/st/starry-moon-island-perimeter-mp01.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-perimeter-mp01", + "name": "Starry Moon Island Perimeter MP01", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202235" + ], + "release_date": "2021-10-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-perimeter-mp02.json b/data/game/st/starry-moon-island-perimeter-mp02.json new file mode 100644 index 000000000000..e232a2f4c642 --- /dev/null +++ b/data/game/st/starry-moon-island-perimeter-mp02.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-perimeter-mp02", + "name": "Starry Moon Island Perimeter MP02", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202236" + ], + "release_date": "2021-10-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-perimeter-mp03.json b/data/game/st/starry-moon-island-perimeter-mp03.json new file mode 100644 index 000000000000..2f3b89ac9dc6 --- /dev/null +++ b/data/game/st/starry-moon-island-perimeter-mp03.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-perimeter-mp03", + "name": "Starry Moon Island Perimeter MP03", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202238" + ], + "release_date": "2021-10-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-perimeter-mp04.json b/data/game/st/starry-moon-island-perimeter-mp04.json new file mode 100644 index 000000000000..c5965dd7198d --- /dev/null +++ b/data/game/st/starry-moon-island-perimeter-mp04.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-perimeter-mp04", + "name": "Starry Moon Island Perimeter MP04", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202239" + ], + "release_date": "2021-10-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-perimeter-mp05.json b/data/game/st/starry-moon-island-perimeter-mp05.json new file mode 100644 index 000000000000..acf3bcfc666d --- /dev/null +++ b/data/game/st/starry-moon-island-perimeter-mp05.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-perimeter-mp05", + "name": "Starry Moon Island Perimeter MP05", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202241" + ], + "release_date": "2021-10-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-perimeter-mp06.json b/data/game/st/starry-moon-island-perimeter-mp06.json new file mode 100644 index 000000000000..0f392a55472b --- /dev/null +++ b/data/game/st/starry-moon-island-perimeter-mp06.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-perimeter-mp06", + "name": "Starry Moon Island Perimeter MP06", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202242" + ], + "release_date": "2021-10-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-perimeter-mp07.json b/data/game/st/starry-moon-island-perimeter-mp07.json new file mode 100644 index 000000000000..162d3e45f4bb --- /dev/null +++ b/data/game/st/starry-moon-island-perimeter-mp07.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-perimeter-mp07", + "name": "Starry Moon Island Perimeter MP07", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202244" + ], + "release_date": "2021-10-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-perimeter-mp08.json b/data/game/st/starry-moon-island-perimeter-mp08.json new file mode 100644 index 000000000000..623d60c12d87 --- /dev/null +++ b/data/game/st/starry-moon-island-perimeter-mp08.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-perimeter-mp08", + "name": "Starry Moon Island Perimeter MP08", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202246" + ], + "release_date": "2021-10-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-perimeter-mp09.json b/data/game/st/starry-moon-island-perimeter-mp09.json new file mode 100644 index 000000000000..49906a36ed70 --- /dev/null +++ b/data/game/st/starry-moon-island-perimeter-mp09.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-perimeter-mp09", + "name": "Starry Moon Island Perimeter MP09", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202247" + ], + "release_date": "2021-10-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-perimeter-mp10.json b/data/game/st/starry-moon-island-perimeter-mp10.json new file mode 100644 index 000000000000..860d8c7cbc30 --- /dev/null +++ b/data/game/st/starry-moon-island-perimeter-mp10.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-perimeter-mp10", + "name": "Starry Moon Island Perimeter MP10", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202248" + ], + "release_date": "2021-10-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-red-snake-mp01.json b/data/game/st/starry-moon-island-red-snake-mp01.json new file mode 100644 index 000000000000..150e95edce1e --- /dev/null +++ b/data/game/st/starry-moon-island-red-snake-mp01.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-red-snake-mp01", + "name": "Starry Moon Island Red Snake MP01", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202249" + ], + "release_date": "2021-10-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-red-snake-mp02.json b/data/game/st/starry-moon-island-red-snake-mp02.json new file mode 100644 index 000000000000..dac7cee97f3c --- /dev/null +++ b/data/game/st/starry-moon-island-red-snake-mp02.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-red-snake-mp02", + "name": "Starry Moon Island Red Snake MP02", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202250" + ], + "release_date": "2021-10-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-red-snake-mp03.json b/data/game/st/starry-moon-island-red-snake-mp03.json new file mode 100644 index 000000000000..98d492ed0988 --- /dev/null +++ b/data/game/st/starry-moon-island-red-snake-mp03.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-red-snake-mp03", + "name": "Starry Moon Island Red Snake MP03", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202253" + ], + "release_date": "2021-10-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-red-snake-mp04.json b/data/game/st/starry-moon-island-red-snake-mp04.json new file mode 100644 index 000000000000..3648f34448f1 --- /dev/null +++ b/data/game/st/starry-moon-island-red-snake-mp04.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-red-snake-mp04", + "name": "Starry Moon Island Red Snake MP04", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202256" + ], + "release_date": "2021-10-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-red-snake-mp05.json b/data/game/st/starry-moon-island-red-snake-mp05.json new file mode 100644 index 000000000000..ce9fdb7b051b --- /dev/null +++ b/data/game/st/starry-moon-island-red-snake-mp05.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-red-snake-mp05", + "name": "Starry Moon Island Red Snake MP05", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202260" + ], + "release_date": "2021-10-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-red-snake-mp06.json b/data/game/st/starry-moon-island-red-snake-mp06.json new file mode 100644 index 000000000000..66f26d89f546 --- /dev/null +++ b/data/game/st/starry-moon-island-red-snake-mp06.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-red-snake-mp06", + "name": "Starry Moon Island Red Snake MP06", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202262" + ], + "release_date": "2021-10-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-red-snake-mp07.json b/data/game/st/starry-moon-island-red-snake-mp07.json new file mode 100644 index 000000000000..4234e64b2a90 --- /dev/null +++ b/data/game/st/starry-moon-island-red-snake-mp07.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-red-snake-mp07", + "name": "Starry Moon Island Red Snake MP07", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202263" + ], + "release_date": "2021-10-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-red-snake-mp08.json b/data/game/st/starry-moon-island-red-snake-mp08.json new file mode 100644 index 000000000000..c4b22eb17749 --- /dev/null +++ b/data/game/st/starry-moon-island-red-snake-mp08.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-red-snake-mp08", + "name": "Starry Moon Island Red Snake MP08", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202264" + ], + "release_date": "2021-10-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-red-snake-mp09.json b/data/game/st/starry-moon-island-red-snake-mp09.json new file mode 100644 index 000000000000..3dba5c172c12 --- /dev/null +++ b/data/game/st/starry-moon-island-red-snake-mp09.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-red-snake-mp09", + "name": "Starry Moon Island Red Snake MP09", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202266" + ], + "release_date": "2021-10-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-red-snake-mp10.json b/data/game/st/starry-moon-island-red-snake-mp10.json new file mode 100644 index 000000000000..4de0e6066cde --- /dev/null +++ b/data/game/st/starry-moon-island-red-snake-mp10.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-red-snake-mp10", + "name": "Starry Moon Island Red Snake MP10", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202267" + ], + "release_date": "2021-10-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-star-ocean-mp01.json b/data/game/st/starry-moon-island-star-ocean-mp01.json new file mode 100644 index 000000000000..224677913421 --- /dev/null +++ b/data/game/st/starry-moon-island-star-ocean-mp01.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-star-ocean-mp01", + "name": "Starry Moon Island Star Ocean MP01", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202268" + ], + "release_date": "2021-10-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-star-ocean-mp02.json b/data/game/st/starry-moon-island-star-ocean-mp02.json new file mode 100644 index 000000000000..eb2abada2d22 --- /dev/null +++ b/data/game/st/starry-moon-island-star-ocean-mp02.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-star-ocean-mp02", + "name": "Starry Moon Island Star Ocean MP02", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202270" + ], + "release_date": "2021-10-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-star-ocean-mp03.json b/data/game/st/starry-moon-island-star-ocean-mp03.json new file mode 100644 index 000000000000..37bf317b6969 --- /dev/null +++ b/data/game/st/starry-moon-island-star-ocean-mp03.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-star-ocean-mp03", + "name": "Starry Moon Island Star Ocean MP03", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202272" + ], + "release_date": "2021-10-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-star-ocean-mp04.json b/data/game/st/starry-moon-island-star-ocean-mp04.json new file mode 100644 index 000000000000..2580f6ab16b1 --- /dev/null +++ b/data/game/st/starry-moon-island-star-ocean-mp04.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-star-ocean-mp04", + "name": "Starry Moon Island Star Ocean MP04", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202273" + ], + "release_date": "2021-10-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-star-ocean-mp05.json b/data/game/st/starry-moon-island-star-ocean-mp05.json new file mode 100644 index 000000000000..aac6060d5aed --- /dev/null +++ b/data/game/st/starry-moon-island-star-ocean-mp05.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-star-ocean-mp05", + "name": "Starry Moon Island Star Ocean MP05", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202274" + ], + "release_date": "2021-10-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-star-ocean-mp06.json b/data/game/st/starry-moon-island-star-ocean-mp06.json new file mode 100644 index 000000000000..39ec633a9585 --- /dev/null +++ b/data/game/st/starry-moon-island-star-ocean-mp06.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-star-ocean-mp06", + "name": "Starry Moon Island Star Ocean MP06", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202275" + ], + "release_date": "2021-10-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-star-ocean-mp07.json b/data/game/st/starry-moon-island-star-ocean-mp07.json new file mode 100644 index 000000000000..f6dfa448b375 --- /dev/null +++ b/data/game/st/starry-moon-island-star-ocean-mp07.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-star-ocean-mp07", + "name": "Starry Moon Island Star Ocean MP07", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202277" + ], + "release_date": "2021-10-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-star-ocean-mp08.json b/data/game/st/starry-moon-island-star-ocean-mp08.json new file mode 100644 index 000000000000..ffcc04777e6e --- /dev/null +++ b/data/game/st/starry-moon-island-star-ocean-mp08.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-star-ocean-mp08", + "name": "Starry Moon Island Star Ocean MP08", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202278" + ], + "release_date": "2021-10-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-star-ocean-mp09.json b/data/game/st/starry-moon-island-star-ocean-mp09.json new file mode 100644 index 000000000000..3e2d15ad9d55 --- /dev/null +++ b/data/game/st/starry-moon-island-star-ocean-mp09.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-star-ocean-mp09", + "name": "Starry Moon Island Star Ocean MP09", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202279" + ], + "release_date": "2021-10-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-star-ocean-mp10.json b/data/game/st/starry-moon-island-star-ocean-mp10.json new file mode 100644 index 000000000000..cc3a63d092cd --- /dev/null +++ b/data/game/st/starry-moon-island-star-ocean-mp10.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-star-ocean-mp10", + "name": "Starry Moon Island Star Ocean MP10", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202280" + ], + "release_date": "2021-10-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-tank-advance-mp01.json b/data/game/st/starry-moon-island-tank-advance-mp01.json new file mode 100644 index 000000000000..9f08807d994f --- /dev/null +++ b/data/game/st/starry-moon-island-tank-advance-mp01.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-tank-advance-mp01", + "name": "Starry Moon Island Tank Advance MP01", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202281" + ], + "release_date": "2021-10-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-tank-advance-mp02.json b/data/game/st/starry-moon-island-tank-advance-mp02.json new file mode 100644 index 000000000000..b8b79ac1df21 --- /dev/null +++ b/data/game/st/starry-moon-island-tank-advance-mp02.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-tank-advance-mp02", + "name": "Starry Moon Island Tank Advance MP02", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202282" + ], + "release_date": "2021-10-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-tank-advance-mp03.json b/data/game/st/starry-moon-island-tank-advance-mp03.json new file mode 100644 index 000000000000..5ebbe9b2b8ab --- /dev/null +++ b/data/game/st/starry-moon-island-tank-advance-mp03.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-tank-advance-mp03", + "name": "Starry Moon Island Tank Advance MP03", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202284" + ], + "release_date": "2021-10-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-tank-advance-mp04.json b/data/game/st/starry-moon-island-tank-advance-mp04.json new file mode 100644 index 000000000000..d3a4732f9ade --- /dev/null +++ b/data/game/st/starry-moon-island-tank-advance-mp04.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-tank-advance-mp04", + "name": "Starry Moon Island Tank Advance MP04", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202286" + ], + "release_date": "2021-10-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-tank-advance-mp05.json b/data/game/st/starry-moon-island-tank-advance-mp05.json new file mode 100644 index 000000000000..8e2f82369e4f --- /dev/null +++ b/data/game/st/starry-moon-island-tank-advance-mp05.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-tank-advance-mp05", + "name": "Starry Moon Island Tank Advance MP05", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202287" + ], + "release_date": "2021-10-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-tank-advance-mp06.json b/data/game/st/starry-moon-island-tank-advance-mp06.json new file mode 100644 index 000000000000..2d0dd1250b58 --- /dev/null +++ b/data/game/st/starry-moon-island-tank-advance-mp06.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-tank-advance-mp06", + "name": "Starry Moon Island Tank Advance MP06", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202288" + ], + "release_date": "2021-10-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-tank-advance-mp07.json b/data/game/st/starry-moon-island-tank-advance-mp07.json new file mode 100644 index 000000000000..18ce0da47794 --- /dev/null +++ b/data/game/st/starry-moon-island-tank-advance-mp07.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-tank-advance-mp07", + "name": "Starry Moon Island Tank Advance MP07", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202289" + ], + "release_date": "2021-10-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-tank-advance-mp08.json b/data/game/st/starry-moon-island-tank-advance-mp08.json new file mode 100644 index 000000000000..1e5e002957a6 --- /dev/null +++ b/data/game/st/starry-moon-island-tank-advance-mp08.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-tank-advance-mp08", + "name": "Starry Moon Island Tank Advance MP08", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202290" + ], + "release_date": "2021-10-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-tank-advance-mp09.json b/data/game/st/starry-moon-island-tank-advance-mp09.json new file mode 100644 index 000000000000..807ebc05eeca --- /dev/null +++ b/data/game/st/starry-moon-island-tank-advance-mp09.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-tank-advance-mp09", + "name": "Starry Moon Island Tank Advance MP09", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202291" + ], + "release_date": "2021-10-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/starry-moon-island-tank-advance-mp10.json b/data/game/st/starry-moon-island-tank-advance-mp10.json new file mode 100644 index 000000000000..b57a1cefb330 --- /dev/null +++ b/data/game/st/starry-moon-island-tank-advance-mp10.json @@ -0,0 +1,18 @@ +{ + "slug": "starry-moon-island-tank-advance-mp10", + "name": "Starry Moon Island Tank Advance MP10", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202292" + ], + "release_date": "2021-10-30", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/st/stars-beyond-reach.json b/data/game/st/stars-beyond-reach.json new file mode 100644 index 000000000000..8656ff2864c5 --- /dev/null +++ b/data/game/st/stars-beyond-reach.json @@ -0,0 +1,12 @@ +{ + "slug": "stars-beyond-reach", + "name": "Stars Beyond Reach", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q26252697" + ], + "platforms": [ + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/game/st/startup-company-console-edition.json b/data/game/st/startup-company-console-edition.json new file mode 100644 index 000000000000..a46aaf119013 --- /dev/null +++ b/data/game/st/startup-company-console-edition.json @@ -0,0 +1,19 @@ +{ + "slug": "startup-company-console-edition", + "name": "Startup Company Console Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q119458683" + ], + "release_date": "2023-01-26", + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 4" + ], + "developers": [ + "Hovgaard Games" + ], + "publishers": [ + "2Awesome Studio" + ] +} diff --git a/data/game/st/starved-for-help.json b/data/game/st/starved-for-help.json new file mode 100644 index 000000000000..c3a9713e3834 --- /dev/null +++ b/data/game/st/starved-for-help.json @@ -0,0 +1,12 @@ +{ + "slug": "starved-for-help", + "name": "Starved for Help", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16170408" + ], + "release_date": "2012-08-29", + "platforms": [ + "PlayStation 4" + ] +} diff --git a/data/game/st/starvoid.json b/data/game/st/starvoid.json new file mode 100644 index 000000000000..a163a2d1e356 --- /dev/null +++ b/data/game/st/starvoid.json @@ -0,0 +1,8 @@ +{ + "slug": "starvoid", + "name": "Starvoid", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140473921" + ] +} diff --git a/data/game/st/stcc-the-game.json b/data/game/st/stcc-the-game.json new file mode 100644 index 000000000000..af488e757351 --- /dev/null +++ b/data/game/st/stcc-the-game.json @@ -0,0 +1,21 @@ +{ + "slug": "stcc-the-game", + "name": "STCC – The Game", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10659665" + ], + "release_date": "2008-01-01", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "sim racing" + ], + "developers": [ + "SimBin" + ], + "publishers": [ + "Atari" + ] +} diff --git a/data/game/st/steal-a-brainrot.json b/data/game/st/steal-a-brainrot.json new file mode 100644 index 000000000000..3a661387bbcd --- /dev/null +++ b/data/game/st/steal-a-brainrot.json @@ -0,0 +1,18 @@ +{ + "slug": "steal-a-brainrot", + "name": "Steal a Brainrot", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135921344" + ], + "release_date": "2025-05-16", + "platforms": [ + "macOS", + "iOS", + "Microsoft Windows", + "Google Chrome" + ], + "genres": [ + "incremental game" + ] +} diff --git a/data/game/st/steal-a-country.json b/data/game/st/steal-a-country.json new file mode 100644 index 000000000000..cbd5efe50dae --- /dev/null +++ b/data/game/st/steal-a-country.json @@ -0,0 +1,16 @@ +{ + "slug": "steal-a-country", + "name": "Steal a Country", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136186253" + ], + "platforms": [ + "iOS", + "macOS", + "Microsoft Windows" + ], + "genres": [ + "incremental game" + ] +} diff --git a/data/game/st/steamworld-headhunter.json b/data/game/st/steamworld-headhunter.json new file mode 100644 index 000000000000..076531e49764 --- /dev/null +++ b/data/game/st/steamworld-headhunter.json @@ -0,0 +1,22 @@ +{ + "slug": "steamworld-headhunter", + "name": "SteamWorld Headhunter", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126011373" + ], + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 5", + "Microsoft Windows" + ], + "genres": [ + "action-adventure game" + ], + "developers": [ + "Image & Form" + ], + "publishers": [ + "Thunderful" + ] +} diff --git a/data/game/st/steel-division-2-black-sunday.json b/data/game/st/steel-division-2-black-sunday.json new file mode 100644 index 000000000000..adc54b228492 --- /dev/null +++ b/data/game/st/steel-division-2-black-sunday.json @@ -0,0 +1,8 @@ +{ + "slug": "steel-division-2-black-sunday", + "name": "Steel Division 2: Black Sunday", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131912748" + ] +} diff --git a/data/game/st/steel-division-2-death-on-the-vistula.json b/data/game/st/steel-division-2-death-on-the-vistula.json new file mode 100644 index 000000000000..1af3244a1b3b --- /dev/null +++ b/data/game/st/steel-division-2-death-on-the-vistula.json @@ -0,0 +1,12 @@ +{ + "slug": "steel-division-2-death-on-the-vistula", + "name": "Steel Division 2 - Death on the Vistula", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115651817" + ], + "release_date": "2019-10-17", + "platforms": [ + "Microsoft Windows" + ] +} diff --git a/data/game/st/steel-division-2-the-fate-of-finland.json b/data/game/st/steel-division-2-the-fate-of-finland.json new file mode 100644 index 000000000000..97f9ecab405b --- /dev/null +++ b/data/game/st/steel-division-2-the-fate-of-finland.json @@ -0,0 +1,12 @@ +{ + "slug": "steel-division-2-the-fate-of-finland", + "name": "Steel Division 2 - The Fate of Finland", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115651837" + ], + "release_date": "2020-03-03", + "platforms": [ + "Microsoft Windows" + ] +} diff --git a/data/game/st/steel-division-normandy-44-back-to-hell.json b/data/game/st/steel-division-normandy-44-back-to-hell.json new file mode 100644 index 000000000000..1a3abaa0ce5c --- /dev/null +++ b/data/game/st/steel-division-normandy-44-back-to-hell.json @@ -0,0 +1,12 @@ +{ + "slug": "steel-division-normandy-44-back-to-hell", + "name": "Steel Division: Normandy 44 - Back to Hell", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115651861" + ], + "release_date": "2018-02-13", + "platforms": [ + "Microsoft Windows" + ] +} diff --git a/data/game/st/steel-division-normandy-44-second-wave.json b/data/game/st/steel-division-normandy-44-second-wave.json new file mode 100644 index 000000000000..e205f8dde751 --- /dev/null +++ b/data/game/st/steel-division-normandy-44-second-wave.json @@ -0,0 +1,15 @@ +{ + "slug": "steel-division-normandy-44-second-wave", + "name": "Steel Division: Normandy 44 - Second Wave", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131912721" + ], + "release_date": "2017-01-01", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Eugen Systems" + ] +} diff --git a/data/game/st/steel-storm-forgotten-prison-dlc.json b/data/game/st/steel-storm-forgotten-prison-dlc.json new file mode 100644 index 000000000000..54b1407d3328 --- /dev/null +++ b/data/game/st/steel-storm-forgotten-prison-dlc.json @@ -0,0 +1,12 @@ +{ + "slug": "steel-storm-forgotten-prison-dlc", + "name": "Steel Storm: Forgotten Prison DLC", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115651888" + ], + "release_date": "2013-09-24", + "platforms": [ + "Microsoft Windows" + ] +} diff --git a/data/game/st/steelport-gangs-pack.json b/data/game/st/steelport-gangs-pack.json new file mode 100644 index 000000000000..1779dab745e3 --- /dev/null +++ b/data/game/st/steelport-gangs-pack.json @@ -0,0 +1,12 @@ +{ + "slug": "steelport-gangs-pack", + "name": "Steelport Gangs Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60616768" + ], + "release_date": "2012-05-01", + "platforms": [ + "Microsoft Windows" + ] +} diff --git a/data/game/st/steelrising-bastille-edition.json b/data/game/st/steelrising-bastille-edition.json new file mode 100644 index 000000000000..1064763c8533 --- /dev/null +++ b/data/game/st/steelrising-bastille-edition.json @@ -0,0 +1,15 @@ +{ + "slug": "steelrising-bastille-edition", + "name": "Steelrising - Bastille Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116192762" + ], + "release_date": "2022-09-08", + "platforms": [ + "Xbox Series X and Series S" + ], + "publishers": [ + "Nacon" + ] +} diff --git a/data/game/st/stellar-blade-x-goddess-of-victory-nikke.json b/data/game/st/stellar-blade-x-goddess-of-victory-nikke.json new file mode 100644 index 000000000000..894d00221d85 --- /dev/null +++ b/data/game/st/stellar-blade-x-goddess-of-victory-nikke.json @@ -0,0 +1,22 @@ +{ + "slug": "stellar-blade-x-goddess-of-victory-nikke", + "name": "Stellar Blade x Goddess of Victory: Nikke", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134879331" + ], + "release_date": "2025-06-11", + "platforms": [ + "PlayStation 5", + "Microsoft Windows" + ], + "genres": [ + "crossover fiction" + ], + "developers": [ + "Shift Up" + ], + "publishers": [ + "Sony Interactive Entertainment" + ] +} diff --git a/data/game/st/stellar-blade-x-nier-automata.json b/data/game/st/stellar-blade-x-nier-automata.json new file mode 100644 index 000000000000..9137b6b9a4fb --- /dev/null +++ b/data/game/st/stellar-blade-x-nier-automata.json @@ -0,0 +1,22 @@ +{ + "slug": "stellar-blade-x-nier-automata", + "name": "Stellar Blade x NieR:Automata", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131323219" + ], + "release_date": "2024-11-19", + "platforms": [ + "PlayStation 5", + "Microsoft Windows" + ], + "genres": [ + "crossover fiction" + ], + "developers": [ + "Shift Up" + ], + "publishers": [ + "Sony Interactive Entertainment" + ] +} diff --git a/data/game/st/stellar-dawn.json b/data/game/st/stellar-dawn.json new file mode 100644 index 000000000000..913cd50edb2b --- /dev/null +++ b/data/game/st/stellar-dawn.json @@ -0,0 +1,21 @@ +{ + "slug": "stellar-dawn", + "name": "Stellar Dawn", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3286475" + ], + "platforms": [ + "Java platform" + ], + "genres": [ + "science fiction", + "massively multiplayer online role-playing game" + ], + "developers": [ + "Jagex" + ], + "publishers": [ + "Jagex" + ] +} diff --git a/data/game/st/stellarace-demo.json b/data/game/st/stellarace-demo.json new file mode 100644 index 000000000000..8ec346e428b9 --- /dev/null +++ b/data/game/st/stellarace-demo.json @@ -0,0 +1,12 @@ +{ + "slug": "stellarace-demo", + "name": "Stellarace (Demo)", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122384288" + ], + "release_date": "2023-04-17", + "platforms": [ + "Microsoft Windows" + ] +} diff --git a/data/game/st/stellaris-ancient-relics-story-pack.json b/data/game/st/stellaris-ancient-relics-story-pack.json new file mode 100644 index 000000000000..c17bd43b3056 --- /dev/null +++ b/data/game/st/stellaris-ancient-relics-story-pack.json @@ -0,0 +1,19 @@ +{ + "slug": "stellaris-ancient-relics-story-pack", + "name": "Stellaris: Ancient Relics Story Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107474067" + ], + "release_date": "2019-06-04", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Development Studio" + ], + "publishers": [ + "Paradox Interactive" + ] +} diff --git a/data/game/st/stellaris-apocalypse.json b/data/game/st/stellaris-apocalypse.json new file mode 100644 index 000000000000..d118dcf6dd1e --- /dev/null +++ b/data/game/st/stellaris-apocalypse.json @@ -0,0 +1,19 @@ +{ + "slug": "stellaris-apocalypse", + "name": "Stellaris: Apocalypse", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107474065" + ], + "release_date": "2018-02-22", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Development Studio" + ], + "publishers": [ + "Paradox Interactive" + ] +} diff --git a/data/game/st/stellaris-aquatics-species-pack.json b/data/game/st/stellaris-aquatics-species-pack.json new file mode 100644 index 000000000000..08bb0f426b0a --- /dev/null +++ b/data/game/st/stellaris-aquatics-species-pack.json @@ -0,0 +1,19 @@ +{ + "slug": "stellaris-aquatics-species-pack", + "name": "Stellaris: Aquatics Species Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110826597" + ], + "release_date": "2021-11-22", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Development Studio" + ], + "publishers": [ + "Paradox Interactive" + ] +} diff --git a/data/game/st/stellaris-astral-planes.json b/data/game/st/stellaris-astral-planes.json new file mode 100644 index 000000000000..81ff102a268f --- /dev/null +++ b/data/game/st/stellaris-astral-planes.json @@ -0,0 +1,8 @@ +{ + "slug": "stellaris-astral-planes", + "name": "Stellaris: Astral Planes", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140413270" + ] +} diff --git a/data/game/st/stellaris-distant-stars-story-pack.json b/data/game/st/stellaris-distant-stars-story-pack.json new file mode 100644 index 000000000000..3e9df50a267f --- /dev/null +++ b/data/game/st/stellaris-distant-stars-story-pack.json @@ -0,0 +1,19 @@ +{ + "slug": "stellaris-distant-stars-story-pack", + "name": "Stellaris: Distant Stars Story Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107474069" + ], + "release_date": "2018-05-22", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Development Studio" + ], + "publishers": [ + "Paradox Interactive" + ] +} diff --git a/data/game/st/stellaris-federations.json b/data/game/st/stellaris-federations.json new file mode 100644 index 000000000000..5c8e01e93013 --- /dev/null +++ b/data/game/st/stellaris-federations.json @@ -0,0 +1,19 @@ +{ + "slug": "stellaris-federations", + "name": "Stellaris: Federations", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107474073" + ], + "release_date": "2020-03-17", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Development Studio" + ], + "publishers": [ + "Paradox Interactive" + ] +} diff --git a/data/game/st/stellaris-galactic-paragons.json b/data/game/st/stellaris-galactic-paragons.json new file mode 100644 index 000000000000..3012a0cc7237 --- /dev/null +++ b/data/game/st/stellaris-galactic-paragons.json @@ -0,0 +1,14 @@ +{ + "slug": "stellaris-galactic-paragons", + "name": "Stellaris: Galactic Paragons", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123676711" + ], + "release_date": "2023-05-09", + "platforms": [ + "Xbox Series X and Series S", + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/game/st/stellaris-humanoids-species-pack.json b/data/game/st/stellaris-humanoids-species-pack.json new file mode 100644 index 000000000000..0e9f0d9172d9 --- /dev/null +++ b/data/game/st/stellaris-humanoids-species-pack.json @@ -0,0 +1,19 @@ +{ + "slug": "stellaris-humanoids-species-pack", + "name": "Stellaris: Humanoids Species Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107474068" + ], + "release_date": "2017-12-07", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Development Studio" + ], + "publishers": [ + "Paradox Interactive" + ] +} diff --git a/data/game/st/stellaris-leviathans-story-pack.json b/data/game/st/stellaris-leviathans-story-pack.json new file mode 100644 index 000000000000..19a0b4ec7c54 --- /dev/null +++ b/data/game/st/stellaris-leviathans-story-pack.json @@ -0,0 +1,19 @@ +{ + "slug": "stellaris-leviathans-story-pack", + "name": "Stellaris: Leviathans Story Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110826714" + ], + "release_date": "2016-10-20", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Development Studio" + ], + "publishers": [ + "Paradox Interactive" + ] +} diff --git a/data/game/st/stellaris-lithoids-species-pack.json b/data/game/st/stellaris-lithoids-species-pack.json new file mode 100644 index 000000000000..bdafb206f5a5 --- /dev/null +++ b/data/game/st/stellaris-lithoids-species-pack.json @@ -0,0 +1,19 @@ +{ + "slug": "stellaris-lithoids-species-pack", + "name": "Stellaris: Lithoids Species Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107474071" + ], + "release_date": "2019-10-24", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Development Studio" + ], + "publishers": [ + "Paradox Interactive" + ] +} diff --git a/data/game/st/stellaris-megacorp.json b/data/game/st/stellaris-megacorp.json new file mode 100644 index 000000000000..e508520c0ec3 --- /dev/null +++ b/data/game/st/stellaris-megacorp.json @@ -0,0 +1,19 @@ +{ + "slug": "stellaris-megacorp", + "name": "Stellaris: MegaCorp", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107474064" + ], + "release_date": "2018-12-06", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Development Studio" + ], + "publishers": [ + "Paradox Interactive" + ] +} diff --git a/data/game/st/stellaris-necroids-species-pack.json b/data/game/st/stellaris-necroids-species-pack.json new file mode 100644 index 000000000000..5a77b413280c --- /dev/null +++ b/data/game/st/stellaris-necroids-species-pack.json @@ -0,0 +1,19 @@ +{ + "slug": "stellaris-necroids-species-pack", + "name": "Stellaris: Necroids Species Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107474074" + ], + "release_date": "2020-10-29", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Development Studio" + ], + "publishers": [ + "Paradox Interactive" + ] +} diff --git a/data/game/st/stellaris-nemesis.json b/data/game/st/stellaris-nemesis.json new file mode 100644 index 000000000000..e97d67e1e647 --- /dev/null +++ b/data/game/st/stellaris-nemesis.json @@ -0,0 +1,19 @@ +{ + "slug": "stellaris-nemesis", + "name": "Stellaris: Nemesis", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107474072" + ], + "release_date": "2021-04-15", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Development Studio" + ], + "publishers": [ + "Paradox Interactive" + ] +} diff --git a/data/game/st/stellaris-overlord.json b/data/game/st/stellaris-overlord.json new file mode 100644 index 000000000000..64b19ff1db90 --- /dev/null +++ b/data/game/st/stellaris-overlord.json @@ -0,0 +1,19 @@ +{ + "slug": "stellaris-overlord", + "name": "Stellaris: Overlord", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111291991" + ], + "release_date": "2022-05-12", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Development Studio" + ], + "publishers": [ + "Paradox Interactive" + ] +} diff --git a/data/game/st/stellaris-plantoids-species-pack.json b/data/game/st/stellaris-plantoids-species-pack.json new file mode 100644 index 000000000000..4d8d40fdbd21 --- /dev/null +++ b/data/game/st/stellaris-plantoids-species-pack.json @@ -0,0 +1,19 @@ +{ + "slug": "stellaris-plantoids-species-pack", + "name": "Stellaris: Plantoids Species Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107474066" + ], + "release_date": "2016-08-04", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Development Studio" + ], + "publishers": [ + "Paradox Interactive" + ] +} diff --git a/data/game/st/stellaris-shadows-of-the-shroud.json b/data/game/st/stellaris-shadows-of-the-shroud.json new file mode 100644 index 000000000000..3fbd2d16e72c --- /dev/null +++ b/data/game/st/stellaris-shadows-of-the-shroud.json @@ -0,0 +1,8 @@ +{ + "slug": "stellaris-shadows-of-the-shroud", + "name": "Stellaris: Shadows of the Shroud", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140417171" + ] +} diff --git a/data/game/st/stellaris-synthetic-dawn-story-pack.json b/data/game/st/stellaris-synthetic-dawn-story-pack.json new file mode 100644 index 000000000000..4b2c156e9e02 --- /dev/null +++ b/data/game/st/stellaris-synthetic-dawn-story-pack.json @@ -0,0 +1,19 @@ +{ + "slug": "stellaris-synthetic-dawn-story-pack", + "name": "Stellaris: Synthetic Dawn Story Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107474070" + ], + "release_date": "2017-09-21", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Development Studio" + ], + "publishers": [ + "Paradox Interactive" + ] +} diff --git a/data/game/st/stellaris-the-machine-age.json b/data/game/st/stellaris-the-machine-age.json new file mode 100644 index 000000000000..391912954fb8 --- /dev/null +++ b/data/game/st/stellaris-the-machine-age.json @@ -0,0 +1,8 @@ +{ + "slug": "stellaris-the-machine-age", + "name": "Stellaris: The Machine Age", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140417111" + ] +} diff --git a/data/game/st/stellaris-toxoids-species-pack.json b/data/game/st/stellaris-toxoids-species-pack.json new file mode 100644 index 000000000000..dfe55b487542 --- /dev/null +++ b/data/game/st/stellaris-toxoids-species-pack.json @@ -0,0 +1,13 @@ +{ + "slug": "stellaris-toxoids-species-pack", + "name": "Stellaris: Toxoids Species Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q114074981" + ], + "release_date": "2022-09-20", + "platforms": [ + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/game/st/stellaris-utopia.json b/data/game/st/stellaris-utopia.json new file mode 100644 index 000000000000..e2d638026928 --- /dev/null +++ b/data/game/st/stellaris-utopia.json @@ -0,0 +1,19 @@ +{ + "slug": "stellaris-utopia", + "name": "Stellaris: Utopia", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107473916" + ], + "release_date": "2017-04-06", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Development Studio" + ], + "publishers": [ + "Paradox Interactive" + ] +} diff --git a/data/game/st/steve-jackson-s-sorcery.json b/data/game/st/steve-jackson-s-sorcery.json new file mode 100644 index 000000000000..0d3f056ad5e2 --- /dev/null +++ b/data/game/st/steve-jackson-s-sorcery.json @@ -0,0 +1,19 @@ +{ + "slug": "steve-jackson-s-sorcery", + "name": "Steve Jackson's Sorcery!", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113680705" + ], + "release_date": "2022-06-23", + "platforms": [ + "Xbox Series X and Series S", + "Microsoft Windows" + ], + "developers": [ + "Inkle" + ], + "publishers": [ + "No Gravity Games" + ] +} diff --git a/data/game/st/stick-fight-the-game-4-pack.json b/data/game/st/stick-fight-the-game-4-pack.json new file mode 100644 index 000000000000..a08a90b7c720 --- /dev/null +++ b/data/game/st/stick-fight-the-game-4-pack.json @@ -0,0 +1,8 @@ +{ + "slug": "stick-fight-the-game-4-pack", + "name": "Stick Fight: The Game 4-Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q78671466" + ] +} diff --git a/data/game/st/still-wakes-the-deep-siren-s-rest.json b/data/game/st/still-wakes-the-deep-siren-s-rest.json new file mode 100644 index 000000000000..46cf8a6ac4b2 --- /dev/null +++ b/data/game/st/still-wakes-the-deep-siren-s-rest.json @@ -0,0 +1,11 @@ +{ + "slug": "still-wakes-the-deep-siren-s-rest", + "name": "Still Wakes the Deep: Siren's Rest", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136817770" + ], + "platforms": [ + "Microsoft Windows" + ] +} diff --git a/data/game/st/stitching-theme.json b/data/game/st/stitching-theme.json new file mode 100644 index 000000000000..15bb6e300209 --- /dev/null +++ b/data/game/st/stitching-theme.json @@ -0,0 +1,18 @@ +{ + "slug": "stitching-theme", + "name": "Stitching Theme", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q61517006" + ], + "release_date": "2014-10-02", + "platforms": [ + "PlayStation Vita" + ], + "developers": [ + "Sony Interactive Entertainment" + ], + "publishers": [ + "Sony Interactive Entertainment" + ] +} diff --git a/data/game/st/stm32doom.json b/data/game/st/stm32doom.json new file mode 100644 index 000000000000..97d6987473ff --- /dev/null +++ b/data/game/st/stm32doom.json @@ -0,0 +1,11 @@ +{ + "slug": "stm32doom", + "name": "STM32Doom", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124473442" + ], + "platforms": [ + "STM32" + ] +} diff --git a/data/game/st/stonia.json b/data/game/st/stonia.json new file mode 100644 index 000000000000..dd69c0d7467e --- /dev/null +++ b/data/game/st/stonia.json @@ -0,0 +1,8 @@ +{ + "slug": "stonia", + "name": "Stonia", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121540772" + ] +} diff --git a/data/game/st/stop-sign-theme.json b/data/game/st/stop-sign-theme.json new file mode 100644 index 000000000000..41398b599ba5 --- /dev/null +++ b/data/game/st/stop-sign-theme.json @@ -0,0 +1,18 @@ +{ + "slug": "stop-sign-theme", + "name": "Stop Sign Theme", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q64995018" + ], + "release_date": "2017-09-26", + "platforms": [ + "PlayStation 4" + ], + "developers": [ + "Sony Interactive Entertainment" + ], + "publishers": [ + "Sony Interactive Entertainment" + ] +} diff --git a/data/game/st/stormbirds.json b/data/game/st/stormbirds.json new file mode 100644 index 000000000000..b036cf94039e --- /dev/null +++ b/data/game/st/stormbirds.json @@ -0,0 +1,18 @@ +{ + "slug": "stormbirds", + "name": "Stormbirds", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4050209" + ], + "platforms": [ + "PlayStation 3", + "Microsoft Windows" + ], + "developers": [ + "THQ Digital Studios UK" + ], + "publishers": [ + "THQ" + ] +} diff --git a/data/game/st/stranger-of-paradise-final-fantasy-origin-digital-deluxe-edition.json b/data/game/st/stranger-of-paradise-final-fantasy-origin-digital-deluxe-edition.json new file mode 100644 index 000000000000..4c1583042208 --- /dev/null +++ b/data/game/st/stranger-of-paradise-final-fantasy-origin-digital-deluxe-edition.json @@ -0,0 +1,18 @@ +{ + "slug": "stranger-of-paradise-final-fantasy-origin-digital-deluxe-edition", + "name": "Stranger of Paradise: Final Fantasy Origin Digital Deluxe Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111812573" + ], + "release_date": "2022-04-19", + "platforms": [ + "Xbox Series X and Series S" + ], + "developers": [ + "Koei Tecmo Games" + ], + "publishers": [ + "Square Enix" + ] +} diff --git a/data/game/st/strategic-command-2-patton-drives-east.json b/data/game/st/strategic-command-2-patton-drives-east.json new file mode 100644 index 000000000000..c7854cb94b8f --- /dev/null +++ b/data/game/st/strategic-command-2-patton-drives-east.json @@ -0,0 +1,8 @@ +{ + "slug": "strategic-command-2-patton-drives-east", + "name": "Strategic Command 2: Patton Drives East", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1291872" + ] +} diff --git a/data/game/st/straw-hat-samurai-duels.json b/data/game/st/straw-hat-samurai-duels.json new file mode 100644 index 000000000000..e7ded24ce8f7 --- /dev/null +++ b/data/game/st/straw-hat-samurai-duels.json @@ -0,0 +1,12 @@ +{ + "slug": "straw-hat-samurai-duels", + "name": "Straw Hat Samurai: Duels", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130190624" + ], + "release_date": "2011-01-04", + "genres": [ + "fighting game" + ] +} diff --git a/data/game/st/stray-souls-dollhouse-story-collector-s-edition.json b/data/game/st/stray-souls-dollhouse-story-collector-s-edition.json new file mode 100644 index 000000000000..0e99b4502558 --- /dev/null +++ b/data/game/st/stray-souls-dollhouse-story-collector-s-edition.json @@ -0,0 +1,20 @@ +{ + "slug": "stray-souls-dollhouse-story-collector-s-edition", + "name": "Stray Souls: Dollhouse Story Collector's Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q100293835" + ], + "release_date": "2011-01-01", + "platforms": [ + "iOS", + "macOS", + "Microsoft Windows" + ], + "genres": [ + "hidden object game" + ], + "publishers": [ + "Focus Multimedia Limited" + ] +} diff --git a/data/game/st/street-fighter-3-third-strike-online-edition.json b/data/game/st/street-fighter-3-third-strike-online-edition.json new file mode 100644 index 000000000000..abd9847f4f84 --- /dev/null +++ b/data/game/st/street-fighter-3-third-strike-online-edition.json @@ -0,0 +1,8 @@ +{ + "slug": "street-fighter-3-third-strike-online-edition", + "name": "Street Fighter 3 Third-Strike Online Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107424309" + ] +} diff --git a/data/game/st/street-fighter-30th-anniversary-collection.json b/data/game/st/street-fighter-30th-anniversary-collection.json new file mode 100644 index 000000000000..a081f5421f82 --- /dev/null +++ b/data/game/st/street-fighter-30th-anniversary-collection.json @@ -0,0 +1,19 @@ +{ + "slug": "street-fighter-30th-anniversary-collection", + "name": "Street Fighter 30th Anniversary Collection", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q47474004" + ], + "release_date": "2018-05-29", + "platforms": [ + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "fighting game" + ], + "publishers": [ + "Capcom" + ] +} diff --git a/data/game/st/street-fighter-anniversary-collection.json b/data/game/st/street-fighter-anniversary-collection.json new file mode 100644 index 000000000000..c4c84acf7d0c --- /dev/null +++ b/data/game/st/street-fighter-anniversary-collection.json @@ -0,0 +1,18 @@ +{ + "slug": "street-fighter-anniversary-collection", + "name": "Street Fighter Anniversary Collection", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7622839" + ], + "release_date": "2004-08-31", + "genres": [ + "fighting game" + ], + "developers": [ + "Capcom" + ], + "publishers": [ + "Capcom" + ] +} diff --git a/data/game/st/street-fighter-collection-2.json b/data/game/st/street-fighter-collection-2.json new file mode 100644 index 000000000000..3c631d9cc665 --- /dev/null +++ b/data/game/st/street-fighter-collection-2.json @@ -0,0 +1,8 @@ +{ + "slug": "street-fighter-collection-2", + "name": "Street Fighter Collection 2", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6134505" + ] +} diff --git a/data/game/st/street-fighter-collection.json b/data/game/st/street-fighter-collection.json new file mode 100644 index 000000000000..65cff2033330 --- /dev/null +++ b/data/game/st/street-fighter-collection.json @@ -0,0 +1,18 @@ +{ + "slug": "street-fighter-collection", + "name": "Street Fighter Collection", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q658412" + ], + "release_date": "1997-09-18", + "genres": [ + "fighting game" + ], + "developers": [ + "Capcom" + ], + "publishers": [ + "Capcom" + ] +} diff --git a/data/game/st/street-fighter-ii-special-champion-edition.json b/data/game/st/street-fighter-ii-special-champion-edition.json new file mode 100644 index 000000000000..2e5fc15021b1 --- /dev/null +++ b/data/game/st/street-fighter-ii-special-champion-edition.json @@ -0,0 +1,12 @@ +{ + "slug": "street-fighter-ii-special-champion-edition", + "name": "Street Fighter II': Special Champion Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113451506" + ], + "release_date": "1993-01-01", + "platforms": [ + "Sega Genesis" + ] +} diff --git a/data/game/st/streets-of-moscow.json b/data/game/st/streets-of-moscow.json new file mode 100644 index 000000000000..3f45f7e4db9d --- /dev/null +++ b/data/game/st/streets-of-moscow.json @@ -0,0 +1,21 @@ +{ + "slug": "streets-of-moscow", + "name": "Streets of Moscow", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116787780" + ], + "release_date": "2008-02-15", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "racing video game" + ], + "developers": [ + "Gaijin Entertainment" + ], + "publishers": [ + "1C Company" + ] +} diff --git a/data/game/st/streets-of-rage-4-mr-x-nightmare.json b/data/game/st/streets-of-rage-4-mr-x-nightmare.json new file mode 100644 index 000000000000..649015cd2319 --- /dev/null +++ b/data/game/st/streets-of-rage-4-mr-x-nightmare.json @@ -0,0 +1,13 @@ +{ + "slug": "streets-of-rage-4-mr-x-nightmare", + "name": "Streets of Rage 4: Mr. X Nightmare", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109449587" + ], + "release_date": "2021-07-15", + "platforms": [ + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/game/st/stretch-armstrong-the-breakout.json b/data/game/st/stretch-armstrong-the-breakout.json new file mode 100644 index 000000000000..b40c8e5c40cd --- /dev/null +++ b/data/game/st/stretch-armstrong-the-breakout.json @@ -0,0 +1,12 @@ +{ + "slug": "stretch-armstrong-the-breakout", + "name": "Stretch Armstrong: The Breakout", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q50575835" + ], + "release_date": "2018-01-01", + "genres": [ + "full motion video" + ] +} diff --git a/data/game/st/strider-q14928351.json b/data/game/st/strider-q14928351.json new file mode 100644 index 000000000000..1a9ff0a283cd --- /dev/null +++ b/data/game/st/strider-q14928351.json @@ -0,0 +1,24 @@ +{ + "slug": "strider-q14928351", + "name": "Strider", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q14928351" + ], + "release_date": "2014-02-18", + "platforms": [ + "PlayStation 4", + "PlayStation 3", + "Microsoft Windows" + ], + "genres": [ + "Metroidvania", + "cyberpunk video game" + ], + "developers": [ + "Double Helix Games" + ], + "publishers": [ + "Capcom" + ] +} diff --git a/data/game/st/strike-out.json b/data/game/st/strike-out.json new file mode 100644 index 000000000000..5c51ba283b6c --- /dev/null +++ b/data/game/st/strike-out.json @@ -0,0 +1,8 @@ +{ + "slug": "strike-out", + "name": "Strike Out!", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q128014915" + ] +} diff --git a/data/game/st/strinova-q131897555.json b/data/game/st/strinova-q131897555.json new file mode 100644 index 000000000000..a4d7aa06a492 --- /dev/null +++ b/data/game/st/strinova-q131897555.json @@ -0,0 +1,8 @@ +{ + "slug": "strinova-q131897555", + "name": "Strinova", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131897555" + ] +} diff --git a/data/game/st/strip-poker-night-at-the-inventory.json b/data/game/st/strip-poker-night-at-the-inventory.json new file mode 100644 index 000000000000..9149bf9c4a6e --- /dev/null +++ b/data/game/st/strip-poker-night-at-the-inventory.json @@ -0,0 +1,18 @@ +{ + "slug": "strip-poker-night-at-the-inventory", + "name": "Strip Poker Night at the Inventory", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q64372387" + ], + "release_date": "2023-03-14", + "platforms": [ + "web browser" + ], + "genres": [ + "erotic video game", + "gambling video game", + "crossover fiction", + "LGBT-themed video game" + ] +} diff --git a/data/game/st/strong-badia-the-free.json b/data/game/st/strong-badia-the-free.json new file mode 100644 index 000000000000..1da100864e2f --- /dev/null +++ b/data/game/st/strong-badia-the-free.json @@ -0,0 +1,23 @@ +{ + "slug": "strong-badia-the-free", + "name": "Strong Badia the Free", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135448929" + ], + "release_date": "2008-09-15", + "platforms": [ + "PlayStation 3", + "Wii", + "Microsoft Windows" + ], + "genres": [ + "graphic adventure game" + ], + "developers": [ + "Telltale Games" + ], + "publishers": [ + "Telltale Games" + ] +} diff --git a/data/game/st/strongest-trail.json b/data/game/st/strongest-trail.json new file mode 100644 index 000000000000..b618cc0cd640 --- /dev/null +++ b/data/game/st/strongest-trail.json @@ -0,0 +1,9 @@ +{ + "slug": "strongest-trail", + "name": "Strongest Trail", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112582111" + ], + "release_date": "2013-04-18" +} diff --git a/data/game/st/stuntfest.json b/data/game/st/stuntfest.json new file mode 100644 index 000000000000..c104e6d50e1d --- /dev/null +++ b/data/game/st/stuntfest.json @@ -0,0 +1,8 @@ +{ + "slug": "stuntfest", + "name": "Stuntfest", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139918001" + ] +} diff --git a/data/game/st/sturmoviks-over-manchuria.json b/data/game/st/sturmoviks-over-manchuria.json new file mode 100644 index 000000000000..f67136ba6d00 --- /dev/null +++ b/data/game/st/sturmoviks-over-manchuria.json @@ -0,0 +1,18 @@ +{ + "slug": "sturmoviks-over-manchuria", + "name": "Sturmoviks over Manchuria", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110817205" + ], + "release_date": "2006-12-15", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "publishers": [ + "1C Company" + ] +} diff --git a/data/game/su/su-25-for-dcs-world.json b/data/game/su/su-25-for-dcs-world.json new file mode 100644 index 000000000000..620a351cd381 --- /dev/null +++ b/data/game/su/su-25-for-dcs-world.json @@ -0,0 +1,18 @@ +{ + "slug": "su-25-for-dcs-world", + "name": "Su-25 for DCS World", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097352" + ], + "release_date": "2013-07-26", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Eagle Dynamics" + ], + "publishers": [ + "Eagle Dynamics" + ] +} diff --git a/data/game/su/su-27-for-dcs-world.json b/data/game/su/su-27-for-dcs-world.json new file mode 100644 index 000000000000..7b2d7df3da39 --- /dev/null +++ b/data/game/su/su-27-for-dcs-world.json @@ -0,0 +1,18 @@ +{ + "slug": "su-27-for-dcs-world", + "name": "Su-27 for DCS World", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097375" + ], + "release_date": "2014-11-10", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Eagle Dynamics" + ], + "publishers": [ + "Eagle Dynamics" + ] +} diff --git a/data/game/su/su-27-the-ultimate-argument-campaign.json b/data/game/su/su-27-the-ultimate-argument-campaign.json new file mode 100644 index 000000000000..006e4f1f3662 --- /dev/null +++ b/data/game/su/su-27-the-ultimate-argument-campaign.json @@ -0,0 +1,18 @@ +{ + "slug": "su-27-the-ultimate-argument-campaign", + "name": "Su-27: The Ultimate Argument Campaign", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097410" + ], + "release_date": "2015-01-12", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Eagle Dynamics" + ], + "publishers": [ + "Eagle Dynamics" + ] +} diff --git a/data/game/su/su-33-for-dcs-world.json b/data/game/su/su-33-for-dcs-world.json new file mode 100644 index 000000000000..a368f097a7aa --- /dev/null +++ b/data/game/su/su-33-for-dcs-world.json @@ -0,0 +1,18 @@ +{ + "slug": "su-33-for-dcs-world", + "name": "Su-33 for DCS World", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097432" + ], + "release_date": "2017-12-15", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Eagle Dynamics" + ], + "publishers": [ + "Eagle Dynamics" + ] +} diff --git a/data/game/su/sub-hunter-premium-edition.json b/data/game/su/sub-hunter-premium-edition.json new file mode 100644 index 000000000000..1f449b936e5b --- /dev/null +++ b/data/game/su/sub-hunter-premium-edition.json @@ -0,0 +1,18 @@ +{ + "slug": "sub-hunter-premium-edition", + "name": "Sub Hunter (Premium Edition)", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q97657818" + ], + "release_date": "2008-01-01", + "platforms": [ + "Commodore 64" + ], + "developers": [ + "The New Dimension" + ], + "publishers": [ + "Psytronik Software" + ] +} diff --git a/data/game/su/subside.json b/data/game/su/subside.json new file mode 100644 index 000000000000..a7c5b93ca01c --- /dev/null +++ b/data/game/su/subside.json @@ -0,0 +1,12 @@ +{ + "slug": "subside", + "name": "Subside", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130356820" + ], + "release_date": "2024-09-17", + "platforms": [ + "Microsoft Windows" + ] +} diff --git a/data/game/su/subwar-2050-the-plot-deepens.json b/data/game/su/subwar-2050-the-plot-deepens.json new file mode 100644 index 000000000000..4466d65cb9b3 --- /dev/null +++ b/data/game/su/subwar-2050-the-plot-deepens.json @@ -0,0 +1,8 @@ +{ + "slug": "subwar-2050-the-plot-deepens", + "name": "Subwar 2050: The Plot Deepens", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110156534" + ] +} diff --git a/data/game/su/sudden-strike-gold-edition.json b/data/game/su/sudden-strike-gold-edition.json new file mode 100644 index 000000000000..4d6d020cb297 --- /dev/null +++ b/data/game/su/sudden-strike-gold-edition.json @@ -0,0 +1,8 @@ +{ + "slug": "sudden-strike-gold-edition", + "name": "Sudden Strike: Gold Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122189791" + ] +} diff --git a/data/game/su/sudden-strike-gold.json b/data/game/su/sudden-strike-gold.json new file mode 100644 index 000000000000..fe7da5d2680d --- /dev/null +++ b/data/game/su/sudden-strike-gold.json @@ -0,0 +1,8 @@ +{ + "slug": "sudden-strike-gold", + "name": "Sudden Strike: Gold", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122189322" + ] +} diff --git a/data/game/su/sudden-strike-ii-gold.json b/data/game/su/sudden-strike-ii-gold.json new file mode 100644 index 000000000000..066ab886829f --- /dev/null +++ b/data/game/su/sudden-strike-ii-gold.json @@ -0,0 +1,8 @@ +{ + "slug": "sudden-strike-ii-gold", + "name": "Sudden Strike II Gold", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122189803" + ] +} diff --git a/data/game/su/sudden-strike-the-last-stand.json b/data/game/su/sudden-strike-the-last-stand.json new file mode 100644 index 000000000000..b5c951bdde75 --- /dev/null +++ b/data/game/su/sudden-strike-the-last-stand.json @@ -0,0 +1,21 @@ +{ + "slug": "sudden-strike-the-last-stand", + "name": "Sudden Strike: The Last Stand", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110817139" + ], + "release_date": "2009-03-20", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "real-time strategy" + ], + "developers": [ + "Fireglow Games" + ], + "publishers": [ + "cdv Software Entertainment" + ] +} diff --git a/data/game/su/sudden-strike-total-war.json b/data/game/su/sudden-strike-total-war.json new file mode 100644 index 000000000000..f4a5f5c931ae --- /dev/null +++ b/data/game/su/sudden-strike-total-war.json @@ -0,0 +1,8 @@ +{ + "slug": "sudden-strike-total-war", + "name": "Sudden Strike: Total War", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122189385" + ] +} diff --git a/data/game/su/sudocats-paper.json b/data/game/su/sudocats-paper.json new file mode 100644 index 000000000000..40181673040a --- /dev/null +++ b/data/game/su/sudocats-paper.json @@ -0,0 +1,18 @@ +{ + "slug": "sudocats-paper", + "name": "Sudocats Paper", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117713309" + ], + "release_date": "2022-04-11", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Devcats" + ], + "publishers": [ + "Devcats" + ] +} diff --git a/data/game/su/sudoku-and-3-puzzles.json b/data/game/su/sudoku-and-3-puzzles.json new file mode 100644 index 000000000000..525577e98c71 --- /dev/null +++ b/data/game/su/sudoku-and-3-puzzles.json @@ -0,0 +1,11 @@ +{ + "slug": "sudoku-and-3-puzzles", + "name": "Sudoku and 3 Puzzles", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17201971" + ], + "platforms": [ + "Nintendo 3DS" + ] +} diff --git a/data/game/su/suicide-guy-bundle.json b/data/game/su/suicide-guy-bundle.json new file mode 100644 index 000000000000..0e8fab9d2000 --- /dev/null +++ b/data/game/su/suicide-guy-bundle.json @@ -0,0 +1,14 @@ +{ + "slug": "suicide-guy-bundle", + "name": "Suicide Guy Bundle", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q128303425" + ], + "platforms": [ + "PlayStation 4" + ], + "publishers": [ + "Sony Interactive Entertainment" + ] +} diff --git a/data/game/su/suicide-guy-collection.json b/data/game/su/suicide-guy-collection.json new file mode 100644 index 000000000000..286df3067887 --- /dev/null +++ b/data/game/su/suicide-guy-collection.json @@ -0,0 +1,12 @@ +{ + "slug": "suicide-guy-collection", + "name": "Suicide Guy Collection", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q128301831" + ], + "release_date": "2020-12-03", + "publishers": [ + "Nintendo" + ] +} diff --git a/data/game/su/suikoden-i-ii.json b/data/game/su/suikoden-i-ii.json new file mode 100644 index 000000000000..5be3a86a6bd4 --- /dev/null +++ b/data/game/su/suikoden-i-ii.json @@ -0,0 +1,18 @@ +{ + "slug": "suikoden-i-ii", + "name": "Suikoden I & II", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5533572" + ], + "release_date": "2006-02-23", + "platforms": [ + "PlayStation Portable" + ], + "genres": [ + "role-playing video game" + ], + "developers": [ + "Konami" + ] +} diff --git a/data/game/su/sundae-shot.json b/data/game/su/sundae-shot.json new file mode 100644 index 000000000000..f2523a663eb0 --- /dev/null +++ b/data/game/su/sundae-shot.json @@ -0,0 +1,8 @@ +{ + "slug": "sundae-shot", + "name": "Sundae Shot", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q128014916" + ] +} diff --git a/data/game/su/sundered-eldritch-edition.json b/data/game/su/sundered-eldritch-edition.json new file mode 100644 index 000000000000..a16818824432 --- /dev/null +++ b/data/game/su/sundered-eldritch-edition.json @@ -0,0 +1,18 @@ +{ + "slug": "sundered-eldritch-edition", + "name": "Sundered: Eldritch Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136720919" + ], + "release_date": "2018-12-21", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "Metroidvania" + ], + "developers": [ + "Thunder Lotus Games" + ] +} diff --git a/data/game/su/sunless-sea-zubmariner.json b/data/game/su/sunless-sea-zubmariner.json new file mode 100644 index 000000000000..d0000516ec8d --- /dev/null +++ b/data/game/su/sunless-sea-zubmariner.json @@ -0,0 +1,22 @@ +{ + "slug": "sunless-sea-zubmariner", + "name": "Sunless Sea: Zubmariner", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136522336" + ], + "release_date": "2016-10-11", + "platforms": [ + "PlayStation 4", + "iOS", + "macOS", + "Microsoft Windows" + ], + "genres": [ + "adventure video game", + "roguelike" + ], + "publishers": [ + "Failbetter Games" + ] +} diff --git a/data/game/su/sunset-overdrive-deluxe-edition.json b/data/game/su/sunset-overdrive-deluxe-edition.json new file mode 100644 index 000000000000..c57edef7cb3a --- /dev/null +++ b/data/game/su/sunset-overdrive-deluxe-edition.json @@ -0,0 +1,8 @@ +{ + "slug": "sunset-overdrive-deluxe-edition", + "name": "Sunset Overdrive Deluxe Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q92204160" + ] +} diff --git a/data/game/su/super-bomberman-collection.json b/data/game/su/super-bomberman-collection.json new file mode 100644 index 000000000000..c64fee1d0328 --- /dev/null +++ b/data/game/su/super-bomberman-collection.json @@ -0,0 +1,18 @@ +{ + "slug": "super-bomberman-collection", + "name": "Super Bomberman Collection", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138018343" + ], + "release_date": "2026-02-05", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Red Art Games" + ], + "publishers": [ + "Konami" + ] +} diff --git a/data/game/su/super-brawl-showdown.json b/data/game/su/super-brawl-showdown.json new file mode 100644 index 000000000000..6d1464a5af10 --- /dev/null +++ b/data/game/su/super-brawl-showdown.json @@ -0,0 +1,8 @@ +{ + "slug": "super-brawl-showdown", + "name": "Super Brawl Showdown!", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q129352825" + ] +} diff --git a/data/game/su/super-frog.json b/data/game/su/super-frog.json new file mode 100644 index 000000000000..70e0d373f70b --- /dev/null +++ b/data/game/su/super-frog.json @@ -0,0 +1,11 @@ +{ + "slug": "super-frog", + "name": "Super Frog", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122783729" + ], + "publishers": [ + "Sega" + ] +} diff --git a/data/game/su/super-gravitron.json b/data/game/su/super-gravitron.json new file mode 100644 index 000000000000..04b04881f3e1 --- /dev/null +++ b/data/game/su/super-gravitron.json @@ -0,0 +1,8 @@ +{ + "slug": "super-gravitron", + "name": "Super Gravitron", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122731770" + ] +} diff --git a/data/game/su/super-house-of-dead-ninjas-true-ninja-pack.json b/data/game/su/super-house-of-dead-ninjas-true-ninja-pack.json new file mode 100644 index 000000000000..7e253a300026 --- /dev/null +++ b/data/game/su/super-house-of-dead-ninjas-true-ninja-pack.json @@ -0,0 +1,12 @@ +{ + "slug": "super-house-of-dead-ninjas-true-ninja-pack", + "name": "Super House of Dead Ninjas: True Ninja Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116163838" + ], + "release_date": "2013-08-06", + "platforms": [ + "Microsoft Windows" + ] +} diff --git a/data/game/su/super-mario-128.json b/data/game/su/super-mario-128.json new file mode 100644 index 000000000000..fd590d72819d --- /dev/null +++ b/data/game/su/super-mario-128.json @@ -0,0 +1,22 @@ +{ + "slug": "super-mario-128", + "name": "Super Mario 128", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7642571" + ], + "platforms": [ + "Nintendo GameCube", + "Wii" + ], + "genres": [ + "adventure video game", + "platformer" + ], + "developers": [ + "Nintendo Entertainment Analysis & Development" + ], + "publishers": [ + "Nintendo" + ] +} diff --git a/data/game/su/super-mario-3d-all-stars.json b/data/game/su/super-mario-3d-all-stars.json new file mode 100644 index 000000000000..076eb77ba3cf --- /dev/null +++ b/data/game/su/super-mario-3d-all-stars.json @@ -0,0 +1,18 @@ +{ + "slug": "super-mario-3d-all-stars", + "name": "Super Mario 3D All-Stars", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q98844677" + ], + "release_date": "2020-09-18", + "genres": [ + "platformer" + ], + "developers": [ + "Nintendo" + ], + "publishers": [ + "Nintendo" + ] +} diff --git a/data/game/su/super-mario-64-2.json b/data/game/su/super-mario-64-2.json new file mode 100644 index 000000000000..738cc67bb75c --- /dev/null +++ b/data/game/su/super-mario-64-2.json @@ -0,0 +1,8 @@ +{ + "slug": "super-mario-64-2", + "name": "Super Mario 64 2", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17630799" + ] +} diff --git a/data/game/su/super-mario-all-stars-25th-anniversary-edition.json b/data/game/su/super-mario-all-stars-25th-anniversary-edition.json new file mode 100644 index 000000000000..0de0d2486f8b --- /dev/null +++ b/data/game/su/super-mario-all-stars-25th-anniversary-edition.json @@ -0,0 +1,21 @@ +{ + "slug": "super-mario-all-stars-25th-anniversary-edition", + "name": "Super Mario All-Stars 25th Anniversary Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6135714" + ], + "release_date": "2010-10-21", + "platforms": [ + "Wii" + ], + "genres": [ + "platformer" + ], + "developers": [ + "Nintendo Entertainment Analysis & Development" + ], + "publishers": [ + "Nintendo" + ] +} diff --git a/data/game/su/super-mario-all-stars-super-mario-world.json b/data/game/su/super-mario-all-stars-super-mario-world.json new file mode 100644 index 000000000000..719244c058a7 --- /dev/null +++ b/data/game/su/super-mario-all-stars-super-mario-world.json @@ -0,0 +1,12 @@ +{ + "slug": "super-mario-all-stars-super-mario-world", + "name": "Super Mario All-Stars + Super Mario World", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q104889895" + ], + "release_date": "1994-12-01", + "platforms": [ + "Super Nintendo Entertainment System" + ] +} diff --git a/data/game/su/super-mario-bros-duck-hunt-world-class-track-meet.json b/data/game/su/super-mario-bros-duck-hunt-world-class-track-meet.json new file mode 100644 index 000000000000..463ead056b69 --- /dev/null +++ b/data/game/su/super-mario-bros-duck-hunt-world-class-track-meet.json @@ -0,0 +1,18 @@ +{ + "slug": "super-mario-bros-duck-hunt-world-class-track-meet", + "name": "Super Mario Bros. / Duck Hunt / World Class Track Meet", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q97137162" + ], + "release_date": "1988-01-01", + "platforms": [ + "Nintendo Entertainment System" + ], + "developers": [ + "Nintendo" + ], + "publishers": [ + "Nintendo" + ] +} diff --git a/data/game/su/super-mario-bros-duck-hunt.json b/data/game/su/super-mario-bros-duck-hunt.json new file mode 100644 index 000000000000..01191097cf1c --- /dev/null +++ b/data/game/su/super-mario-bros-duck-hunt.json @@ -0,0 +1,18 @@ +{ + "slug": "super-mario-bros-duck-hunt", + "name": "Super Mario Bros./Duck Hunt", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1955712" + ], + "release_date": "1986-01-01", + "platforms": [ + "Nintendo Entertainment System" + ], + "developers": [ + "Nintendo" + ], + "publishers": [ + "Nintendo" + ] +} diff --git a/data/game/su/super-mario-bros-tetris-nintendo-world-cup.json b/data/game/su/super-mario-bros-tetris-nintendo-world-cup.json new file mode 100644 index 000000000000..30a962642f1c --- /dev/null +++ b/data/game/su/super-mario-bros-tetris-nintendo-world-cup.json @@ -0,0 +1,21 @@ +{ + "slug": "super-mario-bros-tetris-nintendo-world-cup", + "name": "Super Mario Bros./Tetris/Nintendo World Cup", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3504227" + ], + "release_date": "1988-01-01", + "platforms": [ + "Nintendo Entertainment System" + ], + "genres": [ + "platformer" + ], + "developers": [ + "Nintendo" + ], + "publishers": [ + "Nintendo" + ] +} diff --git a/data/game/su/super-mario-s-wacky-worlds.json b/data/game/su/super-mario-s-wacky-worlds.json new file mode 100644 index 000000000000..9162271d91f5 --- /dev/null +++ b/data/game/su/super-mario-s-wacky-worlds.json @@ -0,0 +1,18 @@ +{ + "slug": "super-mario-s-wacky-worlds", + "name": "Super Mario's Wacky Worlds", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7642568" + ], + "platforms": [ + "Philips CD-i" + ], + "genres": [ + "adventure video game", + "platformer" + ], + "publishers": [ + "Koninklijke Philips NV" + ] +} diff --git a/data/game/su/super-mario-spikers.json b/data/game/su/super-mario-spikers.json new file mode 100644 index 000000000000..3b2ca02baf58 --- /dev/null +++ b/data/game/su/super-mario-spikers.json @@ -0,0 +1,8 @@ +{ + "slug": "super-mario-spikers", + "name": "Super Mario Spikers", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18386428" + ] +} diff --git a/data/game/su/super-nintendo-entertainment-system-nintendo-classics.json b/data/game/su/super-nintendo-entertainment-system-nintendo-classics.json new file mode 100644 index 000000000000..252f77719594 --- /dev/null +++ b/data/game/su/super-nintendo-entertainment-system-nintendo-classics.json @@ -0,0 +1,11 @@ +{ + "slug": "super-nintendo-entertainment-system-nintendo-classics", + "name": "Super Nintendo Entertainment System – Nintendo Classics", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q85871945" + ], + "publishers": [ + "Nintendo" + ] +} diff --git a/data/game/su/super-postal.json b/data/game/su/super-postal.json new file mode 100644 index 000000000000..486ca46b3c87 --- /dev/null +++ b/data/game/su/super-postal.json @@ -0,0 +1,21 @@ +{ + "slug": "super-postal", + "name": "Super Postal", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q64007262" + ], + "release_date": "1998-01-23", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "shoot 'em up" + ], + "developers": [ + "Running with Scissors" + ], + "publishers": [ + "Micromouse" + ] +} diff --git a/data/game/su/super-real-mahjong-p7.json b/data/game/su/super-real-mahjong-p7.json new file mode 100644 index 000000000000..eddd1d00349c --- /dev/null +++ b/data/game/su/super-real-mahjong-p7.json @@ -0,0 +1,12 @@ +{ + "slug": "super-real-mahjong-p7", + "name": "Super Real Mahjong P7", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134903053" + ], + "release_date": "1997-01-01", + "genres": [ + "mahjong video game" + ] +} diff --git a/data/game/su/super-real-mahjong-pi.json b/data/game/su/super-real-mahjong-pi.json new file mode 100644 index 000000000000..8e28353ee678 --- /dev/null +++ b/data/game/su/super-real-mahjong-pi.json @@ -0,0 +1,8 @@ +{ + "slug": "super-real-mahjong-pi", + "name": "Super Real Mahjong PI", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134879100" + ] +} diff --git a/data/game/su/super-real-mahjong-pii.json b/data/game/su/super-real-mahjong-pii.json new file mode 100644 index 000000000000..678d21a4c9aa --- /dev/null +++ b/data/game/su/super-real-mahjong-pii.json @@ -0,0 +1,12 @@ +{ + "slug": "super-real-mahjong-pii", + "name": "Super Real Mahjong PII", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134890787" + ], + "release_date": "1987-01-01", + "genres": [ + "mahjong video game" + ] +} diff --git a/data/game/su/super-real-mahjong-piii.json b/data/game/su/super-real-mahjong-piii.json new file mode 100644 index 000000000000..f0eb87045ff4 --- /dev/null +++ b/data/game/su/super-real-mahjong-piii.json @@ -0,0 +1,12 @@ +{ + "slug": "super-real-mahjong-piii", + "name": "Super Real Mahjong PIII", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134902582" + ], + "release_date": "1988-01-01", + "genres": [ + "mahjong video game" + ] +} diff --git a/data/game/su/super-real-mahjong-piv.json b/data/game/su/super-real-mahjong-piv.json new file mode 100644 index 000000000000..6f8914608471 --- /dev/null +++ b/data/game/su/super-real-mahjong-piv.json @@ -0,0 +1,14 @@ +{ + "slug": "super-real-mahjong-piv", + "name": "Super Real Mahjong PIV", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109313156" + ], + "genres": [ + "mahjong video game" + ], + "developers": [ + "SETA Corporation" + ] +} diff --git a/data/game/su/super-real-mahjong-pv.json b/data/game/su/super-real-mahjong-pv.json new file mode 100644 index 000000000000..45f9115e37b2 --- /dev/null +++ b/data/game/su/super-real-mahjong-pv.json @@ -0,0 +1,14 @@ +{ + "slug": "super-real-mahjong-pv", + "name": "Super Real Mahjong PV", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q85878019" + ], + "genres": [ + "mahjong video game" + ], + "developers": [ + "SETA Corporation" + ] +} diff --git a/data/game/su/super-real-mahjong-pvi.json b/data/game/su/super-real-mahjong-pvi.json new file mode 100644 index 000000000000..8f5dad2b60fd --- /dev/null +++ b/data/game/su/super-real-mahjong-pvi.json @@ -0,0 +1,14 @@ +{ + "slug": "super-real-mahjong-pvi", + "name": "Super Real Mahjong PVI", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q85878023" + ], + "genres": [ + "mahjong video game" + ], + "developers": [ + "SETA Corporation" + ] +} diff --git a/data/game/su/super-real-mahjong.json b/data/game/su/super-real-mahjong.json new file mode 100644 index 000000000000..59d912b1617c --- /dev/null +++ b/data/game/su/super-real-mahjong.json @@ -0,0 +1,8 @@ +{ + "slug": "super-real-mahjong", + "name": "Super Real Mahjong", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11313911" + ] +} diff --git a/data/game/su/super-stickman-golf-3-q107452141.json b/data/game/su/super-stickman-golf-3-q107452141.json new file mode 100644 index 000000000000..6ccdaccdc499 --- /dev/null +++ b/data/game/su/super-stickman-golf-3-q107452141.json @@ -0,0 +1,23 @@ +{ + "slug": "super-stickman-golf-3-q107452141", + "name": "Super Stickman Golf 3+", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107452141" + ], + "release_date": "2021-08-06", + "platforms": [ + "iPadOS", + "iOS", + "macOS" + ], + "genres": [ + "golf video game" + ], + "developers": [ + "Noodlecake" + ], + "publishers": [ + "Noodlecake" + ] +} diff --git a/data/game/su/super-toy-cars-collection.json b/data/game/su/super-toy-cars-collection.json new file mode 100644 index 000000000000..0a14d0db0071 --- /dev/null +++ b/data/game/su/super-toy-cars-collection.json @@ -0,0 +1,18 @@ +{ + "slug": "super-toy-cars-collection", + "name": "Super Toy Cars Collection", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112987852" + ], + "release_date": "2022-06-03", + "platforms": [ + "Xbox Series X and Series S" + ], + "developers": [ + "Eclipse Games" + ], + "publishers": [ + "Eclipse Games" + ] +} diff --git a/data/game/su/support-victory-skin-pack.json b/data/game/su/support-victory-skin-pack.json new file mode 100644 index 000000000000..587a937561be --- /dev/null +++ b/data/game/su/support-victory-skin-pack.json @@ -0,0 +1,19 @@ +{ + "slug": "support-victory-skin-pack", + "name": "Support Victory Skin Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124636195" + ], + "release_date": "2015-07-14", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "science fiction video game" + ], + "publishers": [ + "2K" + ] +} diff --git a/data/game/su/supraland-crash.json b/data/game/su/supraland-crash.json new file mode 100644 index 000000000000..92caf4bacc6d --- /dev/null +++ b/data/game/su/supraland-crash.json @@ -0,0 +1,18 @@ +{ + "slug": "supraland-crash", + "name": "Supraland Crash", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124541022" + ], + "release_date": "2020-07-03", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Supra Games" + ], + "publishers": [ + "Supra Games" + ] +} diff --git a/data/game/su/supreme-ruler-trump-rising.json b/data/game/su/supreme-ruler-trump-rising.json new file mode 100644 index 000000000000..1dee460bdfd1 --- /dev/null +++ b/data/game/su/supreme-ruler-trump-rising.json @@ -0,0 +1,8 @@ +{ + "slug": "supreme-ruler-trump-rising", + "name": "Supreme Ruler: Trump Rising", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107975139" + ] +} diff --git a/data/game/su/surface-tension-q124370513.json b/data/game/su/surface-tension-q124370513.json new file mode 100644 index 000000000000..d7ae660ffafc --- /dev/null +++ b/data/game/su/surface-tension-q124370513.json @@ -0,0 +1,8 @@ +{ + "slug": "surface-tension-q124370513", + "name": "Surface Tension", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124370513" + ] +} diff --git a/data/game/su/surgeon-simulator-anniversary-edition.json b/data/game/su/surgeon-simulator-anniversary-edition.json new file mode 100644 index 000000000000..bc9667e61c46 --- /dev/null +++ b/data/game/su/surgeon-simulator-anniversary-edition.json @@ -0,0 +1,8 @@ +{ + "slug": "surgeon-simulator-anniversary-edition", + "name": "Surgeon Simulator: Anniversary Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107424315" + ] +} diff --git a/data/game/su/survivor-q7647257.json b/data/game/su/survivor-q7647257.json new file mode 100644 index 000000000000..bd9adc2817ee --- /dev/null +++ b/data/game/su/survivor-q7647257.json @@ -0,0 +1,18 @@ +{ + "slug": "survivor-q7647257", + "name": "Survivor", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7647257" + ], + "platforms": [ + "PlayStation 3", + "Microsoft Windows" + ], + "genres": [ + "action game" + ], + "developers": [ + "Replay Studios" + ] +} diff --git a/data/game/sw/swargame.json b/data/game/sw/swargame.json new file mode 100644 index 000000000000..ad7077769e26 --- /dev/null +++ b/data/game/sw/swargame.json @@ -0,0 +1,12 @@ +{ + "slug": "swargame", + "name": "Swargame", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q12741771" + ], + "release_date": "2007-08-14", + "genres": [ + "massively multiplayer online role-playing game" + ] +} diff --git a/data/game/sw/swat-3-close-quarters-battle-elite-edition.json b/data/game/sw/swat-3-close-quarters-battle-elite-edition.json new file mode 100644 index 000000000000..2fd831c92018 --- /dev/null +++ b/data/game/sw/swat-3-close-quarters-battle-elite-edition.json @@ -0,0 +1,12 @@ +{ + "slug": "swat-3-close-quarters-battle-elite-edition", + "name": "SWAT 3: Close Quarters Battle: Elite Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110156372" + ], + "release_date": "2000-10-18", + "platforms": [ + "Microsoft Windows" + ] +} diff --git a/data/game/sw/swat-3-tactical-game-of-the-year-edition.json b/data/game/sw/swat-3-tactical-game-of-the-year-edition.json new file mode 100644 index 000000000000..904e0f32a522 --- /dev/null +++ b/data/game/sw/swat-3-tactical-game-of-the-year-edition.json @@ -0,0 +1,12 @@ +{ + "slug": "swat-3-tactical-game-of-the-year-edition", + "name": "SWAT 3: Tactical Game of the Year Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126942408" + ], + "release_date": "1999-01-01", + "platforms": [ + "Microsoft Windows" + ] +} diff --git a/data/game/sw/swat-4-the-stetchkov-syndicate.json b/data/game/sw/swat-4-the-stetchkov-syndicate.json new file mode 100644 index 000000000000..64c6a3d28475 --- /dev/null +++ b/data/game/sw/swat-4-the-stetchkov-syndicate.json @@ -0,0 +1,21 @@ +{ + "slug": "swat-4-the-stetchkov-syndicate", + "name": "SWAT 4: The Stetchkov Syndicate", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2718380" + ], + "release_date": "2006-03-10", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "tactical shooter" + ], + "developers": [ + "Irrational Games" + ], + "publishers": [ + "Vivendi" + ] +} diff --git a/data/game/sw/swoon-exe.json b/data/game/sw/swoon-exe.json new file mode 100644 index 000000000000..6f8cd7b11598 --- /dev/null +++ b/data/game/sw/swoon-exe.json @@ -0,0 +1,8 @@ +{ + "slug": "swoon-exe", + "name": "Swoon.exe", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136700594" + ] +} diff --git a/data/game/sw/sword-and-magic.json b/data/game/sw/sword-and-magic.json new file mode 100644 index 000000000000..a91b58df8cea --- /dev/null +++ b/data/game/sw/sword-and-magic.json @@ -0,0 +1,8 @@ +{ + "slug": "sword-and-magic", + "name": "Sword And Magic", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126186125" + ] +} diff --git a/data/game/sw/sword-of-the-stars-argos-naval-yard.json b/data/game/sw/sword-of-the-stars-argos-naval-yard.json new file mode 100644 index 000000000000..88bb439fabf2 --- /dev/null +++ b/data/game/sw/sword-of-the-stars-argos-naval-yard.json @@ -0,0 +1,9 @@ +{ + "slug": "sword-of-the-stars-argos-naval-yard", + "name": "Sword of the Stars: Argos Naval Yard", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110154816" + ], + "release_date": "2009-06-17" +} diff --git a/data/game/sw/sword-of-the-stars-born-of-blood.json b/data/game/sw/sword-of-the-stars-born-of-blood.json new file mode 100644 index 000000000000..2ab81552199c --- /dev/null +++ b/data/game/sw/sword-of-the-stars-born-of-blood.json @@ -0,0 +1,22 @@ +{ + "slug": "sword-of-the-stars-born-of-blood", + "name": "Sword of the Stars: Born of Blood", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3506714" + ], + "release_date": "2007-06-01", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "turn-based strategy video game", + "real-time tactics" + ], + "developers": [ + "Kerberos Productions" + ], + "publishers": [ + "Paradox Interactive" + ] +} diff --git a/data/game/sy/syndicate-american-revolt.json b/data/game/sy/syndicate-american-revolt.json new file mode 100644 index 000000000000..5b42a86af309 --- /dev/null +++ b/data/game/sy/syndicate-american-revolt.json @@ -0,0 +1,24 @@ +{ + "slug": "syndicate-american-revolt", + "name": "Syndicate: American Revolt", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3979130" + ], + "release_date": "1993-01-01", + "platforms": [ + "DOS", + "Microsoft Windows" + ], + "genres": [ + "shoot 'em up", + "real-time tactics", + "cyberpunk video game" + ], + "developers": [ + "Bullfrog Productions" + ], + "publishers": [ + "Electronic Arts" + ] +} diff --git a/data/game/sy/syndicate-plus.json b/data/game/sy/syndicate-plus.json new file mode 100644 index 000000000000..2ccc6efe7e3d --- /dev/null +++ b/data/game/sy/syndicate-plus.json @@ -0,0 +1,8 @@ +{ + "slug": "syndicate-plus", + "name": "Syndicate Plus", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121345120" + ] +} diff --git a/data/game/sy/syphon-filter-4.json b/data/game/sy/syphon-filter-4.json new file mode 100644 index 000000000000..fd349d80a50b --- /dev/null +++ b/data/game/sy/syphon-filter-4.json @@ -0,0 +1,11 @@ +{ + "slug": "syphon-filter-4", + "name": "Syphon Filter 4", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q99542990" + ], + "platforms": [ + "PlayStation 3" + ] +} diff --git a/data/game/sy/system-flaw-q61601987.json b/data/game/sy/system-flaw-q61601987.json new file mode 100644 index 000000000000..9e780a131e7c --- /dev/null +++ b/data/game/sy/system-flaw-q61601987.json @@ -0,0 +1,15 @@ +{ + "slug": "system-flaw-q61601987", + "name": "System Flaw", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q61601987" + ], + "release_date": "2009-01-01", + "platforms": [ + "Nintendo DSi" + ], + "publishers": [ + "Storm City Entertainment, Inc." + ] +} diff --git a/data/game/sy/system-shock-3.json b/data/game/sy/system-shock-3.json new file mode 100644 index 000000000000..d3f04d84a8c4 --- /dev/null +++ b/data/game/sy/system-shock-3.json @@ -0,0 +1,18 @@ +{ + "slug": "system-shock-3", + "name": "System Shock 3", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111279541" + ], + "platforms": [ + "PlayStation 4", + "Microsoft Windows" + ], + "developers": [ + "Tencent" + ], + "publishers": [ + "Tencent" + ] +} diff --git a/data/game/t2/t2002.json b/data/game/t2/t2002.json new file mode 100644 index 000000000000..c3054f969fc2 --- /dev/null +++ b/data/game/t2/t2002.json @@ -0,0 +1,8 @@ +{ + "slug": "t2002", + "name": "T2002", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121029451" + ] +} diff --git a/data/game/ta/taiko-no-tatsujin-rhythmic-adventure-pack.json b/data/game/ta/taiko-no-tatsujin-rhythmic-adventure-pack.json new file mode 100644 index 000000000000..f30c885e9cad --- /dev/null +++ b/data/game/ta/taiko-no-tatsujin-rhythmic-adventure-pack.json @@ -0,0 +1,15 @@ +{ + "slug": "taiko-no-tatsujin-rhythmic-adventure-pack", + "name": "Taiko no Tatsujin: Rhythmic Adventure Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q99526854" + ], + "release_date": "2020-11-26", + "genres": [ + "music video game" + ], + "publishers": [ + "Bandai Namco Entertainment" + ] +} diff --git a/data/game/ta/taimanin-asagi-1-trial.json b/data/game/ta/taimanin-asagi-1-trial.json new file mode 100644 index 000000000000..15df492d1ddd --- /dev/null +++ b/data/game/ta/taimanin-asagi-1-trial.json @@ -0,0 +1,21 @@ +{ + "slug": "taimanin-asagi-1-trial", + "name": "Taimanin Asagi 1: Trial", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122840006" + ], + "release_date": "2019-12-09", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "visual novel" + ], + "developers": [ + "Lilith" + ], + "publishers": [ + "Infini-Brain Inc." + ] +} diff --git a/data/game/ta/taimanin-yukikaze-1-trial.json b/data/game/ta/taimanin-yukikaze-1-trial.json new file mode 100644 index 000000000000..8e83247212f8 --- /dev/null +++ b/data/game/ta/taimanin-yukikaze-1-trial.json @@ -0,0 +1,21 @@ +{ + "slug": "taimanin-yukikaze-1-trial", + "name": "Taimanin Yukikaze 1: Trial", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122841011" + ], + "release_date": "2020-07-08", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "visual novel" + ], + "developers": [ + "Lilith" + ], + "publishers": [ + "Infini-Brain Inc." + ] +} diff --git a/data/game/ta/taisen-tanto-r-sashissu.json b/data/game/ta/taisen-tanto-r-sashissu.json new file mode 100644 index 000000000000..1413d99f8fb9 --- /dev/null +++ b/data/game/ta/taisen-tanto-r-sashissu.json @@ -0,0 +1,15 @@ +{ + "slug": "taisen-tanto-r-sashissu", + "name": "Taisen Tanto-R Sashissu!!", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16167778" + ], + "release_date": "1998-02-16", + "genres": [ + "tabletop game" + ], + "developers": [ + "Sega" + ] +} diff --git a/data/game/ta/taito-memories-gekan.json b/data/game/ta/taito-memories-gekan.json new file mode 100644 index 000000000000..6416faa4a67d --- /dev/null +++ b/data/game/ta/taito-memories-gekan.json @@ -0,0 +1,12 @@ +{ + "slug": "taito-memories-gekan", + "name": "Taito Memories: Gekan", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q129177350" + ], + "release_date": "2005-08-25", + "publishers": [ + "Taito" + ] +} diff --git a/data/game/ta/taito-memories-ii-gekan.json b/data/game/ta/taito-memories-ii-gekan.json new file mode 100644 index 000000000000..e58790b94c9a --- /dev/null +++ b/data/game/ta/taito-memories-ii-gekan.json @@ -0,0 +1,12 @@ +{ + "slug": "taito-memories-ii-gekan", + "name": "Taito Memories II: Gekan", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q129178079" + ], + "release_date": "2007-03-29", + "publishers": [ + "Taito" + ] +} diff --git a/data/game/ta/taito-memories-ii-joukan.json b/data/game/ta/taito-memories-ii-joukan.json new file mode 100644 index 000000000000..2fc30fd6aed7 --- /dev/null +++ b/data/game/ta/taito-memories-ii-joukan.json @@ -0,0 +1,12 @@ +{ + "slug": "taito-memories-ii-joukan", + "name": "Taito Memories II: Joukan", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q129177539" + ], + "release_date": "2007-01-25", + "publishers": [ + "Taito" + ] +} diff --git a/data/game/ta/taito-memories-joukan.json b/data/game/ta/taito-memories-joukan.json new file mode 100644 index 000000000000..2a36150bbb6e --- /dev/null +++ b/data/game/ta/taito-memories-joukan.json @@ -0,0 +1,12 @@ +{ + "slug": "taito-memories-joukan", + "name": "Taito Memories: Joukan", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q129177036" + ], + "release_date": "2005-07-28", + "publishers": [ + "Taito" + ] +} diff --git a/data/game/ta/taito-memories-pocket.json b/data/game/ta/taito-memories-pocket.json new file mode 100644 index 000000000000..b0e45eb4794e --- /dev/null +++ b/data/game/ta/taito-memories-pocket.json @@ -0,0 +1,15 @@ +{ + "slug": "taito-memories-pocket", + "name": "Taito Memories Pocket", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q129177193" + ], + "release_date": "2006-01-05", + "platforms": [ + "PlayStation Portable" + ], + "publishers": [ + "Taito" + ] +} diff --git a/data/game/ta/taito-memories.json b/data/game/ta/taito-memories.json new file mode 100644 index 000000000000..073e698b9988 --- /dev/null +++ b/data/game/ta/taito-memories.json @@ -0,0 +1,14 @@ +{ + "slug": "taito-memories", + "name": "Taito Memories", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q129181472" + ], + "platforms": [ + "N-Gage" + ], + "publishers": [ + "Taito" + ] +} diff --git a/data/game/ta/taito-milestones-2.json b/data/game/ta/taito-milestones-2.json new file mode 100644 index 000000000000..6148c4832931 --- /dev/null +++ b/data/game/ta/taito-milestones-2.json @@ -0,0 +1,17 @@ +{ + "slug": "taito-milestones-2", + "name": "Taito Milestones 2", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126740696" + ], + "release_date": "2023-08-31", + "developers": [ + "Hamster Corporation" + ], + "publishers": [ + "Taito", + "Arc System Works", + "Inin Games" + ] +} diff --git a/data/game/ta/taito-milestones-3.json b/data/game/ta/taito-milestones-3.json new file mode 100644 index 000000000000..4d0bbb561697 --- /dev/null +++ b/data/game/ta/taito-milestones-3.json @@ -0,0 +1,15 @@ +{ + "slug": "taito-milestones-3", + "name": "Taito Milestones 3", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127275138" + ], + "release_date": "2024-11-28", + "developers": [ + "Hamster Corporation" + ], + "publishers": [ + "Taito" + ] +} diff --git a/data/game/ta/taito-milestones.json b/data/game/ta/taito-milestones.json new file mode 100644 index 000000000000..ea2874f999da --- /dev/null +++ b/data/game/ta/taito-milestones.json @@ -0,0 +1,17 @@ +{ + "slug": "taito-milestones", + "name": "Taito Milestones", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126740520" + ], + "release_date": "2022-02-24", + "developers": [ + "Hamster Corporation" + ], + "publishers": [ + "Taito", + "Arc System Works", + "Inin Games" + ] +} diff --git a/data/game/ta/tales-of-arise-beyond-the-dawn-expansion.json b/data/game/ta/tales-of-arise-beyond-the-dawn-expansion.json new file mode 100644 index 000000000000..b4f55ebb3319 --- /dev/null +++ b/data/game/ta/tales-of-arise-beyond-the-dawn-expansion.json @@ -0,0 +1,15 @@ +{ + "slug": "tales-of-arise-beyond-the-dawn-expansion", + "name": "Tales of Arise - Beyond the Dawn Expansion", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123916001" + ], + "release_date": "2023-11-08", + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 5", + "PlayStation 4", + "Microsoft Windows" + ] +} diff --git a/data/game/ta/tales-of-monkey-island-chapter-1-launch-of-the-screaming-narwhal.json b/data/game/ta/tales-of-monkey-island-chapter-1-launch-of-the-screaming-narwhal.json new file mode 100644 index 000000000000..9f262db0bde7 --- /dev/null +++ b/data/game/ta/tales-of-monkey-island-chapter-1-launch-of-the-screaming-narwhal.json @@ -0,0 +1,25 @@ +{ + "slug": "tales-of-monkey-island-chapter-1-launch-of-the-screaming-narwhal", + "name": "Tales of Monkey Island Chapter 1: Launch of the Screaming Narwhal", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110817143" + ], + "release_date": "2009-07-07", + "platforms": [ + "iOS", + "PlayStation 3", + "Wii", + "Microsoft Windows" + ], + "genres": [ + "adventure video game" + ], + "developers": [ + "Telltale Games" + ], + "publishers": [ + "Telltale Games", + "Buka Entertainment" + ] +} diff --git a/data/game/ta/tales-of-monkey-island-chapter-3-lair-of-the-leviathan.json b/data/game/ta/tales-of-monkey-island-chapter-3-lair-of-the-leviathan.json new file mode 100644 index 000000000000..0688f9e53a96 --- /dev/null +++ b/data/game/ta/tales-of-monkey-island-chapter-3-lair-of-the-leviathan.json @@ -0,0 +1,24 @@ +{ + "slug": "tales-of-monkey-island-chapter-3-lair-of-the-leviathan", + "name": "Tales of Monkey Island Chapter 3: Lair of the Leviathan", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110817142" + ], + "release_date": "2009-09-29", + "platforms": [ + "iOS", + "Wii", + "Microsoft Windows" + ], + "genres": [ + "adventure video game" + ], + "developers": [ + "Telltale Games" + ], + "publishers": [ + "Lucasfilm Games", + "Buka Entertainment" + ] +} diff --git a/data/game/ta/tales-of-monkey-island-chapter-5-rise-of-the-pirate-god.json b/data/game/ta/tales-of-monkey-island-chapter-5-rise-of-the-pirate-god.json new file mode 100644 index 000000000000..a8b424de7155 --- /dev/null +++ b/data/game/ta/tales-of-monkey-island-chapter-5-rise-of-the-pirate-god.json @@ -0,0 +1,25 @@ +{ + "slug": "tales-of-monkey-island-chapter-5-rise-of-the-pirate-god", + "name": "Tales of Monkey Island Chapter 5: Rise of the Pirate God", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110817144" + ], + "release_date": "2009-12-08", + "platforms": [ + "iOS", + "Wii", + "Microsoft Windows" + ], + "genres": [ + "adventure video game" + ], + "developers": [ + "Telltale Games" + ], + "publishers": [ + "Lucasfilm Games", + "Telltale Games", + "Buka Entertainment" + ] +} diff --git a/data/game/ta/talisman-dungeon.json b/data/game/ta/talisman-dungeon.json new file mode 100644 index 000000000000..ffcef5025e1a --- /dev/null +++ b/data/game/ta/talisman-dungeon.json @@ -0,0 +1,11 @@ +{ + "slug": "talisman-dungeon", + "name": "Talisman Dungeon", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q96316155" + ], + "genres": [ + "fantasy" + ] +} diff --git a/data/game/ta/talisman-q97290219.json b/data/game/ta/talisman-q97290219.json new file mode 100644 index 000000000000..4bb86efb7b0e --- /dev/null +++ b/data/game/ta/talisman-q97290219.json @@ -0,0 +1,18 @@ +{ + "slug": "talisman-q97290219", + "name": "Talisman", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q97290219" + ], + "genres": [ + "role-playing video game", + "turn-based strategy video game" + ], + "developers": [ + "Nomad Games" + ], + "publishers": [ + "Games Workshop" + ] +} diff --git a/data/game/ta/tartar.json b/data/game/ta/tartar.json new file mode 100644 index 000000000000..e238529f8158 --- /dev/null +++ b/data/game/ta/tartar.json @@ -0,0 +1,8 @@ +{ + "slug": "tartar", + "name": "Tartar", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124658388" + ] +} diff --git a/data/game/ta/tayfun-tuna-games.json b/data/game/ta/tayfun-tuna-games.json new file mode 100644 index 000000000000..a50c0d2b7e0d --- /dev/null +++ b/data/game/ta/tayfun-tuna-games.json @@ -0,0 +1,23 @@ +{ + "slug": "tayfun-tuna-games", + "name": "Tayfun Tuna Games", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122912714" + ], + "release_date": "2019-01-04", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "role-playing video game", + "zombie video game" + ], + "developers": [ + "Tayfun Tuna" + ], + "publishers": [ + "Tayfun Tuna" + ] +} diff --git a/data/game/te/team-17-collection-volume-1.json b/data/game/te/team-17-collection-volume-1.json new file mode 100644 index 000000000000..1dbcb07d0d04 --- /dev/null +++ b/data/game/te/team-17-collection-volume-1.json @@ -0,0 +1,8 @@ +{ + "slug": "team-17-collection-volume-1", + "name": "Team 17 Collection Volume 1", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126184556" + ] +} diff --git a/data/game/te/team-fortress-2-brotherhood-of-arms.json b/data/game/te/team-fortress-2-brotherhood-of-arms.json new file mode 100644 index 000000000000..5ce54fdebc5b --- /dev/null +++ b/data/game/te/team-fortress-2-brotherhood-of-arms.json @@ -0,0 +1,17 @@ +{ + "slug": "team-fortress-2-brotherhood-of-arms", + "name": "Team Fortress 2: Brotherhood of Arms", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q56378546" + ], + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "tactical shooter" + ], + "developers": [ + "Valve Corporation" + ] +} diff --git a/data/game/te/team-fortress-source-2.json b/data/game/te/team-fortress-source-2.json new file mode 100644 index 000000000000..55f2f4d9db0b --- /dev/null +++ b/data/game/te/team-fortress-source-2.json @@ -0,0 +1,8 @@ +{ + "slug": "team-fortress-source-2", + "name": "Team Fortress: Source 2", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108032450" + ] +} diff --git a/data/game/te/team-sneed-megapack.json b/data/game/te/team-sneed-megapack.json new file mode 100644 index 000000000000..27b03a2b5c63 --- /dev/null +++ b/data/game/te/team-sneed-megapack.json @@ -0,0 +1,19 @@ +{ + "slug": "team-sneed-megapack", + "name": "Team SNEED Megapack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120189922" + ], + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "action game", + "third-person shooter", + "casual game", + "satirical video game", + "black comedy video game" + ] +} diff --git a/data/game/te/tecmo-cup-football-game.json b/data/game/te/tecmo-cup-football-game.json new file mode 100644 index 000000000000..e4e011e51243 --- /dev/null +++ b/data/game/te/tecmo-cup-football-game.json @@ -0,0 +1,18 @@ +{ + "slug": "tecmo-cup-football-game", + "name": "Tecmo Cup Football Game", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7692728" + ], + "release_date": "1993-01-01", + "platforms": [ + "Sega Genesis" + ], + "genres": [ + "association football video game" + ], + "developers": [ + "Tecmo" + ] +} diff --git a/data/game/te/teenage-mutant-ninja-turtles-dark-horizons.json b/data/game/te/teenage-mutant-ninja-turtles-dark-horizons.json new file mode 100644 index 000000000000..1bfa7c571d4d --- /dev/null +++ b/data/game/te/teenage-mutant-ninja-turtles-dark-horizons.json @@ -0,0 +1,9 @@ +{ + "slug": "teenage-mutant-ninja-turtles-dark-horizons", + "name": "Teenage Mutant Ninja Turtles: Dark Horizons", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q97500576" + ], + "release_date": "2012-06-01" +} diff --git a/data/game/te/teenage-mutant-ninja-turtles-deep-space-april.json b/data/game/te/teenage-mutant-ninja-turtles-deep-space-april.json new file mode 100644 index 000000000000..146bfac82c5b --- /dev/null +++ b/data/game/te/teenage-mutant-ninja-turtles-deep-space-april.json @@ -0,0 +1,9 @@ +{ + "slug": "teenage-mutant-ninja-turtles-deep-space-april", + "name": "Teenage Mutant Ninja Turtles: Deep Space April", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q98966840" + ], + "release_date": "2016-01-01" +} diff --git a/data/game/te/teenage-mutant-ninja-turtles-double-pack.json b/data/game/te/teenage-mutant-ninja-turtles-double-pack.json new file mode 100644 index 000000000000..49fa81dc4ded --- /dev/null +++ b/data/game/te/teenage-mutant-ninja-turtles-double-pack.json @@ -0,0 +1,21 @@ +{ + "slug": "teenage-mutant-ninja-turtles-double-pack", + "name": "Teenage Mutant Ninja Turtles Double Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q97123502" + ], + "release_date": "2006-03-17", + "platforms": [ + "Game Boy Advance" + ], + "genres": [ + "action game" + ], + "developers": [ + "Konami" + ], + "publishers": [ + "Konami" + ] +} diff --git a/data/game/te/teenage-mutant-ninja-turtles-heist-in-a-half-shell.json b/data/game/te/teenage-mutant-ninja-turtles-heist-in-a-half-shell.json new file mode 100644 index 000000000000..e5690c61bdde --- /dev/null +++ b/data/game/te/teenage-mutant-ninja-turtles-heist-in-a-half-shell.json @@ -0,0 +1,9 @@ +{ + "slug": "teenage-mutant-ninja-turtles-heist-in-a-half-shell", + "name": "Teenage Mutant Ninja Turtles: Heist in a Half Shell", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q98970061" + ], + "release_date": "2013-01-01" +} diff --git a/data/game/te/teenage-mutant-ninja-turtles-the-cowabunga-collection.json b/data/game/te/teenage-mutant-ninja-turtles-the-cowabunga-collection.json new file mode 100644 index 000000000000..bb5c0561ac32 --- /dev/null +++ b/data/game/te/teenage-mutant-ninja-turtles-the-cowabunga-collection.json @@ -0,0 +1,29 @@ +{ + "slug": "teenage-mutant-ninja-turtles-the-cowabunga-collection", + "name": "Teenage Mutant Ninja Turtles: The Cowabunga Collection", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111186763" + ], + "release_date": "2022-08-30", + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 5", + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "action game", + "beat 'em up", + "fighting game", + "Metroidvania" + ], + "developers": [ + "Digital Eclipse" + ], + "publishers": [ + "Konami", + "Nickelodeon", + "Konami Digital Entertainment, Inc." + ] +} diff --git a/data/game/te/teenage-mutant-ninja-turtles-vs-power-rangers-ultimate-hero-clash.json b/data/game/te/teenage-mutant-ninja-turtles-vs-power-rangers-ultimate-hero-clash.json new file mode 100644 index 000000000000..635e00db10ed --- /dev/null +++ b/data/game/te/teenage-mutant-ninja-turtles-vs-power-rangers-ultimate-hero-clash.json @@ -0,0 +1,9 @@ +{ + "slug": "teenage-mutant-ninja-turtles-vs-power-rangers-ultimate-hero-clash", + "name": "Teenage Mutant Ninja Turtles VS Power Rangers: Ultimate Hero Clash", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140373182" + ], + "release_date": "2016-02-12" +} diff --git a/data/game/te/tekken-x-street-fighter.json b/data/game/te/tekken-x-street-fighter.json new file mode 100644 index 000000000000..08381d8abd56 --- /dev/null +++ b/data/game/te/tekken-x-street-fighter.json @@ -0,0 +1,22 @@ +{ + "slug": "tekken-x-street-fighter", + "name": "Tekken X Street Fighter", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1194203" + ], + "platforms": [ + "PlayStation 3", + "Microsoft Windows" + ], + "genres": [ + "crossover fiction", + "fighting game" + ], + "developers": [ + "Bandai Namco Entertainment" + ], + "publishers": [ + "Bandai Namco Entertainment" + ] +} diff --git a/data/game/te/telenet-shooting-collection.json b/data/game/te/telenet-shooting-collection.json new file mode 100644 index 000000000000..38da3d3cee94 --- /dev/null +++ b/data/game/te/telenet-shooting-collection.json @@ -0,0 +1,18 @@ +{ + "slug": "telenet-shooting-collection", + "name": "Telenet Shooting Collection", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116763146" + ], + "release_date": "2023-06-08", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "shoot 'em up" + ], + "publishers": [ + "Edia" + ] +} diff --git a/data/game/te/telsport-302.json b/data/game/te/telsport-302.json new file mode 100644 index 000000000000..025acb73e72e --- /dev/null +++ b/data/game/te/telsport-302.json @@ -0,0 +1,8 @@ +{ + "slug": "telsport-302", + "name": "Telsport 302", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121493790" + ] +} diff --git a/data/game/te/temple-run.json b/data/game/te/temple-run.json new file mode 100644 index 000000000000..8e641c28db54 --- /dev/null +++ b/data/game/te/temple-run.json @@ -0,0 +1,15 @@ +{ + "slug": "temple-run", + "name": "Temple Run+", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118235380" + ], + "release_date": "2023-05-04", + "platforms": [ + "iPadOS", + "tvOS", + "iOS", + "macOS" + ] +} diff --git a/data/game/te/temtem-deluxe-edition.json b/data/game/te/temtem-deluxe-edition.json new file mode 100644 index 000000000000..412d124e569e --- /dev/null +++ b/data/game/te/temtem-deluxe-edition.json @@ -0,0 +1,18 @@ +{ + "slug": "temtem-deluxe-edition", + "name": "Temtem - Deluxe Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181277" + ], + "release_date": "2022-09-06", + "platforms": [ + "Xbox Series X and Series S" + ], + "developers": [ + "Crema" + ], + "publishers": [ + "Humble Games" + ] +} diff --git a/data/game/te/ten-great-games.json b/data/game/te/ten-great-games.json new file mode 100644 index 000000000000..8b9d6411a2d6 --- /dev/null +++ b/data/game/te/ten-great-games.json @@ -0,0 +1,15 @@ +{ + "slug": "ten-great-games", + "name": "Ten Great Games", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121758962" + ], + "release_date": "1987-01-01", + "platforms": [ + "Amstrad CPC" + ], + "publishers": [ + "Gremlin Interactive" + ] +} diff --git a/data/game/te/terraria-2.json b/data/game/te/terraria-2.json new file mode 100644 index 000000000000..bb9c3ca9e050 --- /dev/null +++ b/data/game/te/terraria-2.json @@ -0,0 +1,8 @@ +{ + "slug": "terraria-2", + "name": "Terraria 2", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121814668" + ] +} diff --git a/data/game/te/terraria-otherworld.json b/data/game/te/terraria-otherworld.json new file mode 100644 index 000000000000..889ba51d3c85 --- /dev/null +++ b/data/game/te/terraria-otherworld.json @@ -0,0 +1,20 @@ +{ + "slug": "terraria-otherworld", + "name": "Terraria: Otherworld", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123700555" + ], + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "action-adventure game", + "sandbox game" + ], + "developers": [ + "Re-Logic", + "Pipeworks Software", + "Engine Software" + ] +} diff --git a/data/game/te/tetris-dr-mario.json b/data/game/te/tetris-dr-mario.json new file mode 100644 index 000000000000..e3f08a2002f9 --- /dev/null +++ b/data/game/te/tetris-dr-mario.json @@ -0,0 +1,15 @@ +{ + "slug": "tetris-dr-mario", + "name": "Tetris & Dr. Mario", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3519190" + ], + "release_date": "1994-01-01", + "platforms": [ + "Super Nintendo Entertainment System" + ], + "developers": [ + "Intelligent Systems" + ] +} diff --git a/data/game/te/tetris-online-inc.json b/data/game/te/tetris-online-inc.json new file mode 100644 index 000000000000..94bb0436498b --- /dev/null +++ b/data/game/te/tetris-online-inc.json @@ -0,0 +1,8 @@ +{ + "slug": "tetris-online-inc", + "name": "Tetris Online, Inc.", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q14947375" + ] +} diff --git a/data/game/te/tetris-the-grand-master-4-the-masters-of-round.json b/data/game/te/tetris-the-grand-master-4-the-masters-of-round.json new file mode 100644 index 000000000000..0a29ae6bb001 --- /dev/null +++ b/data/game/te/tetris-the-grand-master-4-the-masters-of-round.json @@ -0,0 +1,8 @@ +{ + "slug": "tetris-the-grand-master-4-the-masters-of-round", + "name": "Tetris: The Grand Master 4 - The Masters of Round", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11319322" + ] +} diff --git a/data/game/th/the-agency-covert-ops.json b/data/game/th/the-agency-covert-ops.json new file mode 100644 index 000000000000..5d59adfffbf8 --- /dev/null +++ b/data/game/th/the-agency-covert-ops.json @@ -0,0 +1,22 @@ +{ + "slug": "the-agency-covert-ops", + "name": "The Agency: Covert Ops", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1163706" + ], + "platforms": [ + "PlayStation 3" + ], + "genres": [ + "stealth game", + "massively multiplayer online game", + "shooter game" + ], + "developers": [ + "Daybreak Game Company" + ], + "publishers": [ + "Daybreak Game Company" + ] +} diff --git a/data/game/th/the-alto-collection.json b/data/game/th/the-alto-collection.json new file mode 100644 index 000000000000..f84abb5d3184 --- /dev/null +++ b/data/game/th/the-alto-collection.json @@ -0,0 +1,16 @@ +{ + "slug": "the-alto-collection", + "name": "The Alto Collection", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q103865294" + ], + "release_date": "2020-08-13", + "platforms": [ + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "endless runner game" + ] +} diff --git a/data/game/th/the-amazing-eternals.json b/data/game/th/the-amazing-eternals.json new file mode 100644 index 000000000000..0f46ef4a0d76 --- /dev/null +++ b/data/game/th/the-amazing-eternals.json @@ -0,0 +1,14 @@ +{ + "slug": "the-amazing-eternals", + "name": "The Amazing Eternals", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q37712375" + ], + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Digital Extremes" + ] +} diff --git a/data/game/th/the-assassin.json b/data/game/th/the-assassin.json new file mode 100644 index 000000000000..da8434c09ed8 --- /dev/null +++ b/data/game/th/the-assassin.json @@ -0,0 +1,12 @@ +{ + "slug": "the-assassin", + "name": "The Assassin", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60754765" + ], + "genres": [ + "action role-playing game", + "cyberpunk video game" + ] +} diff --git a/data/game/th/the-avengers.json b/data/game/th/the-avengers.json new file mode 100644 index 000000000000..b27d8c13b663 --- /dev/null +++ b/data/game/th/the-avengers.json @@ -0,0 +1,15 @@ +{ + "slug": "the-avengers", + "name": "The Avengers", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28134322" + ], + "genres": [ + "beat 'em up" + ], + "developers": [ + "THQ Studio Australia", + "Blue Tongue Entertainment" + ] +} diff --git a/data/game/th/the-backrooms-game-support-this-game.json b/data/game/th/the-backrooms-game-support-this-game.json new file mode 100644 index 000000000000..f45070d17b77 --- /dev/null +++ b/data/game/th/the-backrooms-game-support-this-game.json @@ -0,0 +1,22 @@ +{ + "slug": "the-backrooms-game-support-this-game", + "name": "The Backrooms Game - Support This Game! 😎👉👉", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q114833792" + ], + "release_date": "2019-07-29", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "cosmic horror video game", + "psychological horror video game" + ], + "developers": [ + "Pie On A Plate Productions" + ], + "publishers": [ + "Pie On A Plate Productions" + ] +} diff --git a/data/game/th/the-basement-collection.json b/data/game/th/the-basement-collection.json new file mode 100644 index 000000000000..0108926c2c67 --- /dev/null +++ b/data/game/th/the-basement-collection.json @@ -0,0 +1,20 @@ +{ + "slug": "the-basement-collection", + "name": "The Basement Collection", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2320926" + ], + "release_date": "2012-08-31", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Edmund McMillen", + "Tyler Glaiel" + ], + "publishers": [ + "Edmund McMillen" + ] +} diff --git a/data/game/th/the-berlin-wall.json b/data/game/th/the-berlin-wall.json new file mode 100644 index 000000000000..ec8943606eac --- /dev/null +++ b/data/game/th/the-berlin-wall.json @@ -0,0 +1,16 @@ +{ + "slug": "the-berlin-wall", + "name": "The Berlin Wall", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7716567" + ], + "release_date": "1991-11-29", + "genres": [ + "platformer", + "arcade" + ], + "publishers": [ + "Kaneko" + ] +} diff --git a/data/game/th/the-big-con-and-rainbow-billy-wholesome-bundle.json b/data/game/th/the-big-con-and-rainbow-billy-wholesome-bundle.json new file mode 100644 index 000000000000..555b5eca5c79 --- /dev/null +++ b/data/game/th/the-big-con-and-rainbow-billy-wholesome-bundle.json @@ -0,0 +1,18 @@ +{ + "slug": "the-big-con-and-rainbow-billy-wholesome-bundle", + "name": "The Big Con and Rainbow Billy Wholesome Bundle", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109996835" + ], + "release_date": "2021-12-03", + "platforms": [ + "Xbox Series X and Series S" + ], + "developers": [ + "Skybound Games" + ], + "publishers": [ + "Skybound Games" + ] +} diff --git a/data/game/th/the-binding-of-isaac-afterbirth-bundle.json b/data/game/th/the-binding-of-isaac-afterbirth-bundle.json new file mode 100644 index 000000000000..b0a0ac103043 --- /dev/null +++ b/data/game/th/the-binding-of-isaac-afterbirth-bundle.json @@ -0,0 +1,15 @@ +{ + "slug": "the-binding-of-isaac-afterbirth-bundle", + "name": "The Binding of Isaac: Afterbirth+ Bundle", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121302344" + ], + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "roguelite" + ] +} diff --git a/data/game/th/the-binding-of-isaac-afterbirth-q61009986.json b/data/game/th/the-binding-of-isaac-afterbirth-q61009986.json new file mode 100644 index 000000000000..280fe3aa695d --- /dev/null +++ b/data/game/th/the-binding-of-isaac-afterbirth-q61009986.json @@ -0,0 +1,17 @@ +{ + "slug": "the-binding-of-isaac-afterbirth-q61009986", + "name": "The Binding of Isaac: Afterbirth", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q61009986" + ], + "release_date": "2015-10-30", + "platforms": [ + "PlayStation 4", + "macOS", + "Microsoft Windows" + ], + "genres": [ + "roguelite" + ] +} diff --git a/data/game/th/the-binding-of-isaac-afterbirth.json b/data/game/th/the-binding-of-isaac-afterbirth.json new file mode 100644 index 000000000000..2c8ab9cc7d25 --- /dev/null +++ b/data/game/th/the-binding-of-isaac-afterbirth.json @@ -0,0 +1,20 @@ +{ + "slug": "the-binding-of-isaac-afterbirth", + "name": "The Binding of Isaac: Afterbirth+", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q61009987" + ], + "release_date": "2017-01-03", + "platforms": [ + "PlayStation 4", + "macOS", + "Microsoft Windows" + ], + "genres": [ + "roguelite" + ], + "publishers": [ + "Nicalis" + ] +} diff --git a/data/game/th/the-binding-of-isaac-collection.json b/data/game/th/the-binding-of-isaac-collection.json new file mode 100644 index 000000000000..84243490e27f --- /dev/null +++ b/data/game/th/the-binding-of-isaac-collection.json @@ -0,0 +1,25 @@ +{ + "slug": "the-binding-of-isaac-collection", + "name": "The Binding of Isaac Collection", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q61000923" + ], + "release_date": "2012-07-12", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "roguelite", + "twin-stick shooter" + ], + "developers": [ + "Edmund McMillen", + "Florian Himsl" + ], + "publishers": [ + "Edmund McMillen", + "Florian Himsl" + ] +} diff --git a/data/game/th/the-binding-of-isaac-demo.json b/data/game/th/the-binding-of-isaac-demo.json new file mode 100644 index 000000000000..2cd87dc3fb49 --- /dev/null +++ b/data/game/th/the-binding-of-isaac-demo.json @@ -0,0 +1,21 @@ +{ + "slug": "the-binding-of-isaac-demo", + "name": "The Binding of Isaac demo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136260178" + ], + "release_date": "2011-10-08", + "platforms": [ + "web browser" + ], + "genres": [ + "roguelite" + ], + "developers": [ + "Edmund McMillen" + ], + "publishers": [ + "Edmund McMillen" + ] +} diff --git a/data/game/th/the-binding-of-isaac-rebirth-complete-bundle.json b/data/game/th/the-binding-of-isaac-rebirth-complete-bundle.json new file mode 100644 index 000000000000..db86a60e2605 --- /dev/null +++ b/data/game/th/the-binding-of-isaac-rebirth-complete-bundle.json @@ -0,0 +1,16 @@ +{ + "slug": "the-binding-of-isaac-rebirth-complete-bundle", + "name": "The Binding of Isaac: Rebirth Complete Bundle", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q61009988" + ], + "release_date": "2017-01-05", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "roguelite" + ] +} diff --git a/data/game/th/the-binding-of-isaac-repentance.json b/data/game/th/the-binding-of-isaac-repentance.json new file mode 100644 index 000000000000..e2738fdbe3c2 --- /dev/null +++ b/data/game/th/the-binding-of-isaac-repentance.json @@ -0,0 +1,24 @@ +{ + "slug": "the-binding-of-isaac-repentance", + "name": "The Binding of Isaac: Repentance", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105548777" + ], + "release_date": "2021-03-31", + "platforms": [ + "PlayStation 5", + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "roguelite" + ], + "developers": [ + "Edmund McMillen", + "Nicalis" + ], + "publishers": [ + "Nicalis" + ] +} diff --git a/data/game/th/the-binding-of-isaac-unholy-edition.json b/data/game/th/the-binding-of-isaac-unholy-edition.json new file mode 100644 index 000000000000..3ede301afd81 --- /dev/null +++ b/data/game/th/the-binding-of-isaac-unholy-edition.json @@ -0,0 +1,12 @@ +{ + "slug": "the-binding-of-isaac-unholy-edition", + "name": "The Binding of Isaac (Unholy Edition)", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60997648" + ], + "release_date": "2012-01-01", + "genres": [ + "roguelite" + ] +} diff --git a/data/game/th/the-bishibashi.json b/data/game/th/the-bishibashi.json new file mode 100644 index 000000000000..a2365b03051f --- /dev/null +++ b/data/game/th/the-bishibashi.json @@ -0,0 +1,12 @@ +{ + "slug": "the-bishibashi", + "name": "THE★BishiBashi", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q26298692" + ], + "release_date": "2009-07-29", + "developers": [ + "Konami" + ] +} diff --git a/data/game/th/the-bitmap-brothers-compilation.json b/data/game/th/the-bitmap-brothers-compilation.json new file mode 100644 index 000000000000..567c4c4b3677 --- /dev/null +++ b/data/game/th/the-bitmap-brothers-compilation.json @@ -0,0 +1,8 @@ +{ + "slug": "the-bitmap-brothers-compilation", + "name": "The Bitmap Brothers Compilation", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125208060" + ] +} diff --git a/data/game/th/the-blair-witch-project.json b/data/game/th/the-blair-witch-project.json new file mode 100644 index 000000000000..91c497f93b95 --- /dev/null +++ b/data/game/th/the-blair-witch-project.json @@ -0,0 +1,23 @@ +{ + "slug": "the-blair-witch-project", + "name": "The Blair Witch Project", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4035184" + ], + "release_date": "2000-01-01", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "action-adventure game" + ], + "developers": [ + "Human Head Studios", + "Terminal Reality", + "Ritual Entertainment" + ], + "publishers": [ + "Gathering of Developers" + ] +} diff --git a/data/game/th/the-book-of-unwritten-tales-the-critter-chronicles.json b/data/game/th/the-book-of-unwritten-tales-the-critter-chronicles.json new file mode 100644 index 000000000000..6894e0f1e37a --- /dev/null +++ b/data/game/th/the-book-of-unwritten-tales-the-critter-chronicles.json @@ -0,0 +1,22 @@ +{ + "slug": "the-book-of-unwritten-tales-the-critter-chronicles", + "name": "The Book of Unwritten Tales: The Critter Chronicles", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16259318" + ], + "release_date": "2012-12-05", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "adventure video game" + ], + "developers": [ + "King Art Games" + ], + "publishers": [ + "THQ Nordic" + ] +} diff --git a/data/game/th/the-boss-baby-get-that-baby.json b/data/game/th/the-boss-baby-get-that-baby.json new file mode 100644 index 000000000000..e37c766c22b1 --- /dev/null +++ b/data/game/th/the-boss-baby-get-that-baby.json @@ -0,0 +1,12 @@ +{ + "slug": "the-boss-baby-get-that-baby", + "name": "The Boss Baby: Get That Baby!", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q99515218" + ], + "release_date": "2020-09-01", + "genres": [ + "comedy" + ] +} diff --git a/data/game/th/the-cd-games-pack.json b/data/game/th/the-cd-games-pack.json new file mode 100644 index 000000000000..d98efde3616c --- /dev/null +++ b/data/game/th/the-cd-games-pack.json @@ -0,0 +1,12 @@ +{ + "slug": "the-cd-games-pack", + "name": "The CD Games Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111466195" + ], + "platforms": [ + "Commodore 64", + "ZX Spectrum" + ] +} diff --git a/data/game/th/the-cheetahmen.json b/data/game/th/the-cheetahmen.json new file mode 100644 index 000000000000..d0de21ab61ae --- /dev/null +++ b/data/game/th/the-cheetahmen.json @@ -0,0 +1,11 @@ +{ + "slug": "the-cheetahmen", + "name": "The Cheetahmen", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6140149" + ], + "genres": [ + "action game" + ] +} diff --git a/data/game/th/the-chronicles-of-myrtana-archolos.json b/data/game/th/the-chronicles-of-myrtana-archolos.json new file mode 100644 index 000000000000..40ba7fbd1933 --- /dev/null +++ b/data/game/th/the-chronicles-of-myrtana-archolos.json @@ -0,0 +1,15 @@ +{ + "slug": "the-chronicles-of-myrtana-archolos", + "name": "The Chronicles Of Myrtana: Archolos", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110389182" + ], + "release_date": "2021-12-10", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "action role-playing game" + ] +} diff --git a/data/game/th/the-chronicles-of-riddick-escape-from-butcher-bay-developer-s-cut.json b/data/game/th/the-chronicles-of-riddick-escape-from-butcher-bay-developer-s-cut.json new file mode 100644 index 000000000000..f61c4bb68fff --- /dev/null +++ b/data/game/th/the-chronicles-of-riddick-escape-from-butcher-bay-developer-s-cut.json @@ -0,0 +1,19 @@ +{ + "slug": "the-chronicles-of-riddick-escape-from-butcher-bay-developer-s-cut", + "name": "The Chronicles of Riddick: Escape from Butcher Bay – Developer's Cut", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110817210" + ], + "release_date": "2004-12-08", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "action game" + ], + "publishers": [ + "Starbreeze Studios", + "Tigon Studios" + ] +} diff --git a/data/game/th/the-city-of-metronome.json b/data/game/th/the-city-of-metronome.json new file mode 100644 index 000000000000..6f4fc623905c --- /dev/null +++ b/data/game/th/the-city-of-metronome.json @@ -0,0 +1,18 @@ +{ + "slug": "the-city-of-metronome", + "name": "The City of Metronome", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4051000" + ], + "release_date": "2009-06-26", + "platforms": [ + "PlayStation 3" + ], + "genres": [ + "adventure video game" + ], + "developers": [ + "Tarsier Studios" + ] +} diff --git a/data/game/th/the-coffin-of-andy-and-leyley-demo.json b/data/game/th/the-coffin-of-andy-and-leyley-demo.json new file mode 100644 index 000000000000..0eb908e159d6 --- /dev/null +++ b/data/game/th/the-coffin-of-andy-and-leyley-demo.json @@ -0,0 +1,27 @@ +{ + "slug": "the-coffin-of-andy-and-leyley-demo", + "name": "The Coffin of Andy and Leyley Demo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123145896" + ], + "release_date": "2023-03-25", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "adventure video game", + "puzzle video game", + "visual novel", + "role-playing video game", + "psychological horror video game" + ], + "developers": [ + "Kit9 Studio", + "Nemlei" + ], + "publishers": [ + "Nemlei", + "Kit9 Studio" + ] +} diff --git a/data/game/th/the-complete-doom-accessory-pack-volume-ii.json b/data/game/th/the-complete-doom-accessory-pack-volume-ii.json new file mode 100644 index 000000000000..c4438509beb0 --- /dev/null +++ b/data/game/th/the-complete-doom-accessory-pack-volume-ii.json @@ -0,0 +1,15 @@ +{ + "slug": "the-complete-doom-accessory-pack-volume-ii", + "name": "The Complete Doom Accessory Pack, Volume II", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131406855" + ], + "release_date": "1994-01-01", + "genres": [ + "first-person shooter" + ], + "publishers": [ + "Modern Microware" + ] +} diff --git a/data/game/th/the-complete-doom-accessory-pack-volume-iii.json b/data/game/th/the-complete-doom-accessory-pack-volume-iii.json new file mode 100644 index 000000000000..de6fc32bd5cb --- /dev/null +++ b/data/game/th/the-complete-doom-accessory-pack-volume-iii.json @@ -0,0 +1,15 @@ +{ + "slug": "the-complete-doom-accessory-pack-volume-iii", + "name": "The Complete Doom Accessory Pack, Volume III", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131406858" + ], + "release_date": "1994-01-01", + "genres": [ + "first-person shooter" + ], + "publishers": [ + "Modern Microware" + ] +} diff --git a/data/game/th/the-complete-doom-accessory-pack.json b/data/game/th/the-complete-doom-accessory-pack.json new file mode 100644 index 000000000000..c2be40a3a070 --- /dev/null +++ b/data/game/th/the-complete-doom-accessory-pack.json @@ -0,0 +1,15 @@ +{ + "slug": "the-complete-doom-accessory-pack", + "name": "The Complete Doom Accessory Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131406829" + ], + "release_date": "1994-01-01", + "genres": [ + "first-person shooter" + ], + "publishers": [ + "Modern Microware" + ] +} diff --git a/data/game/th/the-count-of-monster-disco.json b/data/game/th/the-count-of-monster-disco.json new file mode 100644 index 000000000000..bc82a9af6291 --- /dev/null +++ b/data/game/th/the-count-of-monster-disco.json @@ -0,0 +1,18 @@ +{ + "slug": "the-count-of-monster-disco", + "name": "The Count of Monster Disco", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106138" + ], + "release_date": "2014-10-24", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/th/the-crew-wild-run.json b/data/game/th/the-crew-wild-run.json new file mode 100644 index 000000000000..d857cba1c9d5 --- /dev/null +++ b/data/game/th/the-crew-wild-run.json @@ -0,0 +1,8 @@ +{ + "slug": "the-crew-wild-run", + "name": "The Crew: Wild Run", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q21039874" + ] +} diff --git a/data/game/th/the-crown-of-leaves-chapter-2.json b/data/game/th/the-crown-of-leaves-chapter-2.json new file mode 100644 index 000000000000..8fabb984fb62 --- /dev/null +++ b/data/game/th/the-crown-of-leaves-chapter-2.json @@ -0,0 +1,12 @@ +{ + "slug": "the-crown-of-leaves-chapter-2", + "name": "The Crown of Leaves: Chapter 2", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123937897" + ], + "release_date": "2021-03-29", + "platforms": [ + "Microsoft Windows" + ] +} diff --git a/data/game/th/the-crown-tundra.json b/data/game/th/the-crown-tundra.json new file mode 100644 index 000000000000..bddabb891000 --- /dev/null +++ b/data/game/th/the-crown-tundra.json @@ -0,0 +1,14 @@ +{ + "slug": "the-crown-tundra", + "name": "The Crown Tundra", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q96336612" + ], + "platforms": [ + "Nintendo Switch Lite" + ], + "genres": [ + "role-playing video game" + ] +} diff --git a/data/game/th/the-cures-of-monkey-island-demo.json b/data/game/th/the-cures-of-monkey-island-demo.json new file mode 100644 index 000000000000..4c9549897384 --- /dev/null +++ b/data/game/th/the-cures-of-monkey-island-demo.json @@ -0,0 +1,11 @@ +{ + "slug": "the-cures-of-monkey-island-demo", + "name": "The Cures of Monkey Island Demo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125203060" + ], + "publishers": [ + "Lucasfilm Games" + ] +} diff --git a/data/game/th/the-dark-knight.json b/data/game/th/the-dark-knight.json new file mode 100644 index 000000000000..fff89ba3a189 --- /dev/null +++ b/data/game/th/the-dark-knight.json @@ -0,0 +1,20 @@ +{ + "slug": "the-dark-knight", + "name": "The Dark Knight", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q246649" + ], + "platforms": [ + "PlayStation 3" + ], + "genres": [ + "action game" + ], + "developers": [ + "Pandemic Studios" + ], + "publishers": [ + "Warner Bros. Games" + ] +} diff --git a/data/game/th/the-devil-s-men.json b/data/game/th/the-devil-s-men.json new file mode 100644 index 000000000000..e8213aa32dbe --- /dev/null +++ b/data/game/th/the-devil-s-men.json @@ -0,0 +1,17 @@ +{ + "slug": "the-devil-s-men", + "name": "The Devil's Men", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18389556" + ], + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "adventure video game" + ], + "developers": [ + "Daedalic Entertainment" + ] +} diff --git a/data/game/th/the-disney-afternoon-collection.json b/data/game/th/the-disney-afternoon-collection.json new file mode 100644 index 000000000000..b8ba17edaa3c --- /dev/null +++ b/data/game/th/the-disney-afternoon-collection.json @@ -0,0 +1,21 @@ +{ + "slug": "the-disney-afternoon-collection", + "name": "The Disney Afternoon Collection", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q29097946" + ], + "release_date": "2017-04-18", + "platforms": [ + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "action game", + "platformer" + ], + "publishers": [ + "Capcom", + "Disney Interactive Studios" + ] +} diff --git a/data/game/th/the-drifter-demo.json b/data/game/th/the-drifter-demo.json new file mode 100644 index 000000000000..79fd6d065ab8 --- /dev/null +++ b/data/game/th/the-drifter-demo.json @@ -0,0 +1,11 @@ +{ + "slug": "the-drifter-demo", + "name": "The Drifter Demo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137478342" + ], + "genres": [ + "point-and-click adventure" + ] +} diff --git a/data/game/th/the-ea-sports-collection.json b/data/game/th/the-ea-sports-collection.json new file mode 100644 index 000000000000..590372e008d8 --- /dev/null +++ b/data/game/th/the-ea-sports-collection.json @@ -0,0 +1,8 @@ +{ + "slug": "the-ea-sports-collection", + "name": "The EA Sports Collection", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q96408647" + ] +} diff --git a/data/game/th/the-elder-scrolls-iii-bloodmoon.json b/data/game/th/the-elder-scrolls-iii-bloodmoon.json new file mode 100644 index 000000000000..cda8ecb4eecb --- /dev/null +++ b/data/game/th/the-elder-scrolls-iii-bloodmoon.json @@ -0,0 +1,21 @@ +{ + "slug": "the-elder-scrolls-iii-bloodmoon", + "name": "The Elder Scrolls III: Bloodmoon", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1393129" + ], + "release_date": "2003-06-03", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "action role-playing game" + ], + "developers": [ + "Bethesda Game Studios" + ], + "publishers": [ + "Bethesda Softworks" + ] +} diff --git a/data/game/th/the-elder-scrolls-iii-tribunal.json b/data/game/th/the-elder-scrolls-iii-tribunal.json new file mode 100644 index 000000000000..7b35237c9850 --- /dev/null +++ b/data/game/th/the-elder-scrolls-iii-tribunal.json @@ -0,0 +1,21 @@ +{ + "slug": "the-elder-scrolls-iii-tribunal", + "name": "The Elder Scrolls III: Tribunal", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q523133" + ], + "release_date": "2002-11-06", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "action role-playing game" + ], + "developers": [ + "Bethesda Game Studios" + ], + "publishers": [ + "Bethesda Softworks" + ] +} diff --git a/data/game/th/the-elder-scrolls-iv-knights-of-the-nine.json b/data/game/th/the-elder-scrolls-iv-knights-of-the-nine.json new file mode 100644 index 000000000000..fe42a631c171 --- /dev/null +++ b/data/game/th/the-elder-scrolls-iv-knights-of-the-nine.json @@ -0,0 +1,20 @@ +{ + "slug": "the-elder-scrolls-iv-knights-of-the-nine", + "name": "The Elder Scrolls IV: Knights of the Nine", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q49608" + ], + "release_date": "2006-11-21", + "platforms": [ + "PlayStation 3", + "Microsoft Windows" + ], + "genres": [ + "role-playing video game", + "action role-playing game" + ], + "developers": [ + "Bethesda Softworks" + ] +} diff --git a/data/game/th/the-elder-scrolls-iv-shivering-isles.json b/data/game/th/the-elder-scrolls-iv-shivering-isles.json new file mode 100644 index 000000000000..2d2cab31ad77 --- /dev/null +++ b/data/game/th/the-elder-scrolls-iv-shivering-isles.json @@ -0,0 +1,23 @@ +{ + "slug": "the-elder-scrolls-iv-shivering-isles", + "name": "The Elder Scrolls IV: Shivering Isles", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q49610" + ], + "release_date": "2007-10-16", + "platforms": [ + "PlayStation 3", + "Microsoft Windows" + ], + "genres": [ + "role-playing video game", + "action role-playing game" + ], + "developers": [ + "Bethesda Game Studios" + ], + "publishers": [ + "2K" + ] +} diff --git a/data/game/th/the-elder-scrolls-legends-moons-of-elsweyr.json b/data/game/th/the-elder-scrolls-legends-moons-of-elsweyr.json new file mode 100644 index 000000000000..2039a9c04946 --- /dev/null +++ b/data/game/th/the-elder-scrolls-legends-moons-of-elsweyr.json @@ -0,0 +1,8 @@ +{ + "slug": "the-elder-scrolls-legends-moons-of-elsweyr", + "name": "The Elder Scrolls Legends: Moons of Elsweyr", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140470734" + ] +} diff --git a/data/game/th/the-elder-scrolls-online-ascending-tide.json b/data/game/th/the-elder-scrolls-online-ascending-tide.json new file mode 100644 index 000000000000..82ff15ed5bfe --- /dev/null +++ b/data/game/th/the-elder-scrolls-online-ascending-tide.json @@ -0,0 +1,8 @@ +{ + "slug": "the-elder-scrolls-online-ascending-tide", + "name": "The Elder Scrolls Online: Ascending Tide", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140420044" + ] +} diff --git a/data/game/th/the-elder-scrolls-online-blackwood-q108871621.json b/data/game/th/the-elder-scrolls-online-blackwood-q108871621.json new file mode 100644 index 000000000000..4149c963cedf --- /dev/null +++ b/data/game/th/the-elder-scrolls-online-blackwood-q108871621.json @@ -0,0 +1,25 @@ +{ + "slug": "the-elder-scrolls-online-blackwood-q108871621", + "name": "The Elder Scrolls Online: Blackwood", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108871621" + ], + "release_date": "2021-06-01", + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 5", + "PlayStation 4", + "macOS", + "Microsoft Windows" + ], + "genres": [ + "massively multiplayer online role-playing game" + ], + "developers": [ + "ZeniMax Online Studios" + ], + "publishers": [ + "Bethesda Softworks" + ] +} diff --git a/data/game/th/the-elder-scrolls-online-clockwork-city.json b/data/game/th/the-elder-scrolls-online-clockwork-city.json new file mode 100644 index 000000000000..cb0b67d08f2a --- /dev/null +++ b/data/game/th/the-elder-scrolls-online-clockwork-city.json @@ -0,0 +1,8 @@ +{ + "slug": "the-elder-scrolls-online-clockwork-city", + "name": "The Elder Scrolls Online: Clockwork City", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140420019" + ] +} diff --git a/data/game/th/the-elder-scrolls-online-dark-brotherhood.json b/data/game/th/the-elder-scrolls-online-dark-brotherhood.json new file mode 100644 index 000000000000..52b758cbdcd8 --- /dev/null +++ b/data/game/th/the-elder-scrolls-online-dark-brotherhood.json @@ -0,0 +1,8 @@ +{ + "slug": "the-elder-scrolls-online-dark-brotherhood", + "name": "The Elder Scrolls Online: Dark Brotherhood", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140420008" + ] +} diff --git a/data/game/th/the-elder-scrolls-online-deadlands.json b/data/game/th/the-elder-scrolls-online-deadlands.json new file mode 100644 index 000000000000..f0adcc7f6f9f --- /dev/null +++ b/data/game/th/the-elder-scrolls-online-deadlands.json @@ -0,0 +1,8 @@ +{ + "slug": "the-elder-scrolls-online-deadlands", + "name": "The Elder Scrolls Online: Deadlands", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140420051" + ] +} diff --git a/data/game/th/the-elder-scrolls-online-dragon-bones.json b/data/game/th/the-elder-scrolls-online-dragon-bones.json new file mode 100644 index 000000000000..49daab6a2a7b --- /dev/null +++ b/data/game/th/the-elder-scrolls-online-dragon-bones.json @@ -0,0 +1,8 @@ +{ + "slug": "the-elder-scrolls-online-dragon-bones", + "name": "The Elder Scrolls Online: Dragon Bones", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140420027" + ] +} diff --git a/data/game/th/the-elder-scrolls-online-dragonhold.json b/data/game/th/the-elder-scrolls-online-dragonhold.json new file mode 100644 index 000000000000..1624e87f5fef --- /dev/null +++ b/data/game/th/the-elder-scrolls-online-dragonhold.json @@ -0,0 +1,8 @@ +{ + "slug": "the-elder-scrolls-online-dragonhold", + "name": "The Elder Scrolls Online: Dragonhold", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140420037" + ] +} diff --git a/data/game/th/the-elder-scrolls-online-elsweyr-q108871641.json b/data/game/th/the-elder-scrolls-online-elsweyr-q108871641.json new file mode 100644 index 000000000000..22b1d917a426 --- /dev/null +++ b/data/game/th/the-elder-scrolls-online-elsweyr-q108871641.json @@ -0,0 +1,25 @@ +{ + "slug": "the-elder-scrolls-online-elsweyr-q108871641", + "name": "The Elder Scrolls Online: Elsweyr", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108871641" + ], + "release_date": "2019-06-04", + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 5", + "PlayStation 4", + "macOS", + "Microsoft Windows" + ], + "genres": [ + "massively multiplayer online role-playing game" + ], + "developers": [ + "ZeniMax Online Studios" + ], + "publishers": [ + "Bethesda Softworks" + ] +} diff --git a/data/game/th/the-elder-scrolls-online-fallen-banners.json b/data/game/th/the-elder-scrolls-online-fallen-banners.json new file mode 100644 index 000000000000..326363c8060c --- /dev/null +++ b/data/game/th/the-elder-scrolls-online-fallen-banners.json @@ -0,0 +1,8 @@ +{ + "slug": "the-elder-scrolls-online-fallen-banners", + "name": "The Elder Scrolls Online: Fallen Banners", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140420070" + ] +} diff --git a/data/game/th/the-elder-scrolls-online-firesong.json b/data/game/th/the-elder-scrolls-online-firesong.json new file mode 100644 index 000000000000..2bf2b836d4bc --- /dev/null +++ b/data/game/th/the-elder-scrolls-online-firesong.json @@ -0,0 +1,8 @@ +{ + "slug": "the-elder-scrolls-online-firesong", + "name": "The Elder Scrolls Online: Firesong", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140420060" + ] +} diff --git a/data/game/th/the-elder-scrolls-online-flames-of-ambition.json b/data/game/th/the-elder-scrolls-online-flames-of-ambition.json new file mode 100644 index 000000000000..9bcece357097 --- /dev/null +++ b/data/game/th/the-elder-scrolls-online-flames-of-ambition.json @@ -0,0 +1,25 @@ +{ + "slug": "the-elder-scrolls-online-flames-of-ambition", + "name": "The Elder Scrolls Online: Flames of Ambition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105826196" + ], + "release_date": "2021-03-08", + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 5", + "PlayStation 4", + "macOS", + "Microsoft Windows" + ], + "genres": [ + "massively multiplayer online role-playing game" + ], + "developers": [ + "ZeniMax Online Studios" + ], + "publishers": [ + "Bethesda Softworks" + ] +} diff --git a/data/game/th/the-elder-scrolls-online-gold-road.json b/data/game/th/the-elder-scrolls-online-gold-road.json new file mode 100644 index 000000000000..e311aaa4d1bb --- /dev/null +++ b/data/game/th/the-elder-scrolls-online-gold-road.json @@ -0,0 +1,25 @@ +{ + "slug": "the-elder-scrolls-online-gold-road", + "name": "The Elder Scrolls Online: Gold Road", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124371848" + ], + "release_date": "2024-06-03", + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 5", + "PlayStation 4", + "macOS", + "Microsoft Windows" + ], + "genres": [ + "massively multiplayer online role-playing game" + ], + "developers": [ + "ZeniMax Online Studios" + ], + "publishers": [ + "Bethesda Softworks" + ] +} diff --git a/data/game/th/the-elder-scrolls-online-harrowstorm.json b/data/game/th/the-elder-scrolls-online-harrowstorm.json new file mode 100644 index 000000000000..f720c36ed115 --- /dev/null +++ b/data/game/th/the-elder-scrolls-online-harrowstorm.json @@ -0,0 +1,8 @@ +{ + "slug": "the-elder-scrolls-online-harrowstorm", + "name": "The Elder Scrolls Online: Harrowstorm", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140420039" + ] +} diff --git a/data/game/th/the-elder-scrolls-online-high-isle.json b/data/game/th/the-elder-scrolls-online-high-isle.json new file mode 100644 index 000000000000..87670de73a97 --- /dev/null +++ b/data/game/th/the-elder-scrolls-online-high-isle.json @@ -0,0 +1,25 @@ +{ + "slug": "the-elder-scrolls-online-high-isle", + "name": "The Elder Scrolls Online: High Isle", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110730357" + ], + "release_date": "2022-06-06", + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 5", + "PlayStation 4", + "macOS", + "Microsoft Windows" + ], + "genres": [ + "massively multiplayer online role-playing game" + ], + "developers": [ + "ZeniMax Online Studios" + ], + "publishers": [ + "Bethesda Softworks" + ] +} diff --git a/data/game/th/the-elder-scrolls-online-horns-of-the-reach.json b/data/game/th/the-elder-scrolls-online-horns-of-the-reach.json new file mode 100644 index 000000000000..755fabae4e98 --- /dev/null +++ b/data/game/th/the-elder-scrolls-online-horns-of-the-reach.json @@ -0,0 +1,8 @@ +{ + "slug": "the-elder-scrolls-online-horns-of-the-reach", + "name": "The Elder Scrolls Online: Horns of the Reach", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140420016" + ] +} diff --git a/data/game/th/the-elder-scrolls-online-imperial-city.json b/data/game/th/the-elder-scrolls-online-imperial-city.json new file mode 100644 index 000000000000..314c938a112a --- /dev/null +++ b/data/game/th/the-elder-scrolls-online-imperial-city.json @@ -0,0 +1,8 @@ +{ + "slug": "the-elder-scrolls-online-imperial-city", + "name": "The Elder Scrolls Online: Imperial City", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140419898" + ] +} diff --git a/data/game/th/the-elder-scrolls-online-lost-depths.json b/data/game/th/the-elder-scrolls-online-lost-depths.json new file mode 100644 index 000000000000..a181d4caf265 --- /dev/null +++ b/data/game/th/the-elder-scrolls-online-lost-depths.json @@ -0,0 +1,8 @@ +{ + "slug": "the-elder-scrolls-online-lost-depths", + "name": "The Elder Scrolls Online: Lost Depths", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140420055" + ] +} diff --git a/data/game/th/the-elder-scrolls-online-markarth.json b/data/game/th/the-elder-scrolls-online-markarth.json new file mode 100644 index 000000000000..c0a6bc05789b --- /dev/null +++ b/data/game/th/the-elder-scrolls-online-markarth.json @@ -0,0 +1,8 @@ +{ + "slug": "the-elder-scrolls-online-markarth", + "name": "The Elder Scrolls Online: Markarth", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140420047" + ] +} diff --git a/data/game/th/the-elder-scrolls-online-morrowind.json b/data/game/th/the-elder-scrolls-online-morrowind.json new file mode 100644 index 000000000000..fc2a71447dbe --- /dev/null +++ b/data/game/th/the-elder-scrolls-online-morrowind.json @@ -0,0 +1,25 @@ +{ + "slug": "the-elder-scrolls-online-morrowind", + "name": "The Elder Scrolls Online: Morrowind", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108862892" + ], + "release_date": "2016-06-06", + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 5", + "PlayStation 4", + "macOS", + "Microsoft Windows" + ], + "genres": [ + "massively multiplayer online role-playing game" + ], + "developers": [ + "ZeniMax Online Studios" + ], + "publishers": [ + "Bethesda Softworks" + ] +} diff --git a/data/game/th/the-elder-scrolls-online-murkmire.json b/data/game/th/the-elder-scrolls-online-murkmire.json new file mode 100644 index 000000000000..85c1ea45a100 --- /dev/null +++ b/data/game/th/the-elder-scrolls-online-murkmire.json @@ -0,0 +1,8 @@ +{ + "slug": "the-elder-scrolls-online-murkmire", + "name": "The Elder Scrolls Online: Murkmire", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140420030" + ] +} diff --git a/data/game/th/the-elder-scrolls-online-necrom.json b/data/game/th/the-elder-scrolls-online-necrom.json new file mode 100644 index 000000000000..6d3772c02a48 --- /dev/null +++ b/data/game/th/the-elder-scrolls-online-necrom.json @@ -0,0 +1,25 @@ +{ + "slug": "the-elder-scrolls-online-necrom", + "name": "The Elder Scrolls Online: Necrom", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116448691" + ], + "release_date": "2023-06-05", + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 5", + "PlayStation 4", + "macOS", + "Microsoft Windows" + ], + "genres": [ + "massively multiplayer online role-playing game" + ], + "developers": [ + "ZeniMax Online Studios" + ], + "publishers": [ + "Bethesda Softworks" + ] +} diff --git a/data/game/th/the-elder-scrolls-online-orsinium.json b/data/game/th/the-elder-scrolls-online-orsinium.json new file mode 100644 index 000000000000..f00314e667a5 --- /dev/null +++ b/data/game/th/the-elder-scrolls-online-orsinium.json @@ -0,0 +1,8 @@ +{ + "slug": "the-elder-scrolls-online-orsinium", + "name": "The Elder Scrolls Online: Orsinium", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140419990" + ] +} diff --git a/data/game/th/the-elder-scrolls-online-scalebreaker.json b/data/game/th/the-elder-scrolls-online-scalebreaker.json new file mode 100644 index 000000000000..f7444a5fde4b --- /dev/null +++ b/data/game/th/the-elder-scrolls-online-scalebreaker.json @@ -0,0 +1,8 @@ +{ + "slug": "the-elder-scrolls-online-scalebreaker", + "name": "The Elder Scrolls Online: Scalebreaker", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140420036" + ] +} diff --git a/data/game/th/the-elder-scrolls-online-scions-of-ithelia.json b/data/game/th/the-elder-scrolls-online-scions-of-ithelia.json new file mode 100644 index 000000000000..7e021edcb3fc --- /dev/null +++ b/data/game/th/the-elder-scrolls-online-scions-of-ithelia.json @@ -0,0 +1,8 @@ +{ + "slug": "the-elder-scrolls-online-scions-of-ithelia", + "name": "The Elder Scrolls Online: Scions of Ithelia", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140420073" + ] +} diff --git a/data/game/th/the-elder-scrolls-online-scribes-of-fate.json b/data/game/th/the-elder-scrolls-online-scribes-of-fate.json new file mode 100644 index 000000000000..21e6c6901db8 --- /dev/null +++ b/data/game/th/the-elder-scrolls-online-scribes-of-fate.json @@ -0,0 +1,8 @@ +{ + "slug": "the-elder-scrolls-online-scribes-of-fate", + "name": "The Elder Scrolls Online: Scribes of Fate", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140420068" + ] +} diff --git a/data/game/th/the-elder-scrolls-online-seasons-of-the-worm-cult.json b/data/game/th/the-elder-scrolls-online-seasons-of-the-worm-cult.json new file mode 100644 index 000000000000..e9e462a0284e --- /dev/null +++ b/data/game/th/the-elder-scrolls-online-seasons-of-the-worm-cult.json @@ -0,0 +1,8 @@ +{ + "slug": "the-elder-scrolls-online-seasons-of-the-worm-cult", + "name": "The Elder Scrolls Online: Seasons of the Worm Cult", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140420064" + ] +} diff --git a/data/game/th/the-elder-scrolls-online-shadows-of-the-hist.json b/data/game/th/the-elder-scrolls-online-shadows-of-the-hist.json new file mode 100644 index 000000000000..bebcaa11e5b2 --- /dev/null +++ b/data/game/th/the-elder-scrolls-online-shadows-of-the-hist.json @@ -0,0 +1,8 @@ +{ + "slug": "the-elder-scrolls-online-shadows-of-the-hist", + "name": "The Elder Scrolls Online: Shadows of the Hist", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140420024" + ] +} diff --git a/data/game/th/the-elder-scrolls-online-stonethorn.json b/data/game/th/the-elder-scrolls-online-stonethorn.json new file mode 100644 index 000000000000..68da19a77d28 --- /dev/null +++ b/data/game/th/the-elder-scrolls-online-stonethorn.json @@ -0,0 +1,8 @@ +{ + "slug": "the-elder-scrolls-online-stonethorn", + "name": "The Elder Scrolls Online: Stonethorn", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140420040" + ] +} diff --git a/data/game/th/the-elder-scrolls-online-summerset.json b/data/game/th/the-elder-scrolls-online-summerset.json new file mode 100644 index 000000000000..199cd30ea3bc --- /dev/null +++ b/data/game/th/the-elder-scrolls-online-summerset.json @@ -0,0 +1,25 @@ +{ + "slug": "the-elder-scrolls-online-summerset", + "name": "The Elder Scrolls Online: Summerset", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108871552" + ], + "release_date": "2018-05-21", + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 5", + "PlayStation 4", + "macOS", + "Microsoft Windows" + ], + "genres": [ + "massively multiplayer online role-playing game" + ], + "developers": [ + "ZeniMax Online Studios" + ], + "publishers": [ + "Bethesda Softworks" + ] +} diff --git a/data/game/th/the-elder-scrolls-online-thieves-guild.json b/data/game/th/the-elder-scrolls-online-thieves-guild.json new file mode 100644 index 000000000000..fd7d05d4c3f5 --- /dev/null +++ b/data/game/th/the-elder-scrolls-online-thieves-guild.json @@ -0,0 +1,8 @@ +{ + "slug": "the-elder-scrolls-online-thieves-guild", + "name": "The Elder Scrolls Online: Thieves Guild", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140419938" + ] +} diff --git a/data/game/th/the-elder-scrolls-online-waking-flame.json b/data/game/th/the-elder-scrolls-online-waking-flame.json new file mode 100644 index 000000000000..3cca3b49e831 --- /dev/null +++ b/data/game/th/the-elder-scrolls-online-waking-flame.json @@ -0,0 +1,8 @@ +{ + "slug": "the-elder-scrolls-online-waking-flame", + "name": "The Elder Scrolls Online: Waking Flame", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140420041" + ] +} diff --git a/data/game/th/the-elder-scrolls-online-wolfhunter.json b/data/game/th/the-elder-scrolls-online-wolfhunter.json new file mode 100644 index 000000000000..7342c4651e6f --- /dev/null +++ b/data/game/th/the-elder-scrolls-online-wolfhunter.json @@ -0,0 +1,8 @@ +{ + "slug": "the-elder-scrolls-online-wolfhunter", + "name": "The Elder Scrolls Online: Wolfhunter", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q133846514" + ] +} diff --git a/data/game/th/the-elder-scrolls-travels-oblivion.json b/data/game/th/the-elder-scrolls-travels-oblivion.json new file mode 100644 index 000000000000..da1fc44fbed2 --- /dev/null +++ b/data/game/th/the-elder-scrolls-travels-oblivion.json @@ -0,0 +1,14 @@ +{ + "slug": "the-elder-scrolls-travels-oblivion", + "name": "The Elder Scrolls Travels: Oblivion", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111171550" + ], + "platforms": [ + "PlayStation Portable" + ], + "publishers": [ + "Bethesda Softworks" + ] +} diff --git a/data/game/th/the-elder-scrolls-v-skyrim-anniversary-edition.json b/data/game/th/the-elder-scrolls-v-skyrim-anniversary-edition.json new file mode 100644 index 000000000000..fec1735169fb --- /dev/null +++ b/data/game/th/the-elder-scrolls-v-skyrim-anniversary-edition.json @@ -0,0 +1,18 @@ +{ + "slug": "the-elder-scrolls-v-skyrim-anniversary-edition", + "name": "The Elder Scrolls V: Skyrim Anniversary Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109708349" + ], + "release_date": "2021-11-11", + "platforms": [ + "Xbox Series X and Series S" + ], + "developers": [ + "Bethesda Game Studios" + ], + "publishers": [ + "Bethesda Softworks" + ] +} diff --git a/data/game/th/the-elder-scrolls-v-skyrim-dawnguard.json b/data/game/th/the-elder-scrolls-v-skyrim-dawnguard.json new file mode 100644 index 000000000000..b8cd10f96d1d --- /dev/null +++ b/data/game/th/the-elder-scrolls-v-skyrim-dawnguard.json @@ -0,0 +1,22 @@ +{ + "slug": "the-elder-scrolls-v-skyrim-dawnguard", + "name": "The Elder Scrolls V: Skyrim – Dawnguard", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1593353" + ], + "release_date": "2012-06-26", + "platforms": [ + "PlayStation 3", + "Microsoft Windows" + ], + "genres": [ + "action role-playing game" + ], + "developers": [ + "Bethesda Game Studios" + ], + "publishers": [ + "Bethesda Softworks" + ] +} diff --git a/data/game/th/the-elder-scrolls-v-skyrim-dragonborn.json b/data/game/th/the-elder-scrolls-v-skyrim-dragonborn.json new file mode 100644 index 000000000000..d68185a28061 --- /dev/null +++ b/data/game/th/the-elder-scrolls-v-skyrim-dragonborn.json @@ -0,0 +1,22 @@ +{ + "slug": "the-elder-scrolls-v-skyrim-dragonborn", + "name": "The Elder Scrolls V: Skyrim – Dragonborn", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3798561" + ], + "release_date": "2012-12-04", + "platforms": [ + "PlayStation 3", + "Microsoft Windows" + ], + "genres": [ + "action role-playing game" + ], + "developers": [ + "Bethesda Game Studios" + ], + "publishers": [ + "Bethesda Softworks" + ] +} diff --git a/data/game/th/the-elder-scrolls-v-skyrim-hearthfire.json b/data/game/th/the-elder-scrolls-v-skyrim-hearthfire.json new file mode 100644 index 000000000000..12a0c8c21405 --- /dev/null +++ b/data/game/th/the-elder-scrolls-v-skyrim-hearthfire.json @@ -0,0 +1,22 @@ +{ + "slug": "the-elder-scrolls-v-skyrim-hearthfire", + "name": "The Elder Scrolls V: Skyrim – Hearthfire", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q13422452" + ], + "release_date": "2012-09-04", + "platforms": [ + "PlayStation 3", + "Microsoft Windows" + ], + "genres": [ + "action role-playing game" + ], + "developers": [ + "Bethesda Game Studios" + ], + "publishers": [ + "Bethesda Softworks" + ] +} diff --git a/data/game/th/the-er-patient-typhon-being-a-monster.json b/data/game/th/the-er-patient-typhon-being-a-monster.json new file mode 100644 index 000000000000..de8dd07039ee --- /dev/null +++ b/data/game/th/the-er-patient-typhon-being-a-monster.json @@ -0,0 +1,18 @@ +{ + "slug": "the-er-patient-typhon-being-a-monster", + "name": "The ER: Patient Typhon - Being a monster", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121084313" + ], + "release_date": "2021-07-15", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Professional Villains" + ], + "publishers": [ + "Professional Villains" + ] +} diff --git a/data/game/th/the-er-patient-typhon-sos.json b/data/game/th/the-er-patient-typhon-sos.json new file mode 100644 index 000000000000..351a09bae64f --- /dev/null +++ b/data/game/th/the-er-patient-typhon-sos.json @@ -0,0 +1,18 @@ +{ + "slug": "the-er-patient-typhon-sos", + "name": "The ER: Patient Typhon - SOS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121084314" + ], + "release_date": "2022-04-20", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Professional Villains" + ], + "publishers": [ + "Professional Villains" + ] +} diff --git a/data/game/th/the-evil-within-the-assignment.json b/data/game/th/the-evil-within-the-assignment.json new file mode 100644 index 000000000000..99ac59029702 --- /dev/null +++ b/data/game/th/the-evil-within-the-assignment.json @@ -0,0 +1,24 @@ +{ + "slug": "the-evil-within-the-assignment", + "name": "The Evil Within: The Assignment", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115754967" + ], + "release_date": "2015-03-10", + "platforms": [ + "PlayStation 4", + "PlayStation 3", + "Microsoft Windows" + ], + "genres": [ + "survival horror", + "stealth game" + ], + "developers": [ + "Tango Gameworks" + ], + "publishers": [ + "Bethesda Softworks" + ] +} diff --git a/data/game/th/the-evil-within-the-executioner.json b/data/game/th/the-evil-within-the-executioner.json new file mode 100644 index 000000000000..2a75e1ecbfaa --- /dev/null +++ b/data/game/th/the-evil-within-the-executioner.json @@ -0,0 +1,24 @@ +{ + "slug": "the-evil-within-the-executioner", + "name": "The Evil Within: The Executioner", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115753497" + ], + "release_date": "2015-05-26", + "platforms": [ + "PlayStation 4", + "PlayStation 3", + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "survival horror" + ], + "developers": [ + "Tango Gameworks" + ], + "publishers": [ + "Bethesda Softworks" + ] +} diff --git a/data/game/th/the-excellent-dizzy-collection.json b/data/game/th/the-excellent-dizzy-collection.json new file mode 100644 index 000000000000..310e477e151e --- /dev/null +++ b/data/game/th/the-excellent-dizzy-collection.json @@ -0,0 +1,18 @@ +{ + "slug": "the-excellent-dizzy-collection", + "name": "The Excellent Dizzy Collection", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7732742" + ], + "release_date": "1993-11-01", + "genres": [ + "action game" + ], + "developers": [ + "Blitz Games" + ], + "publishers": [ + "Codemasters" + ] +} diff --git a/data/game/th/the-fall-mutant-city.json b/data/game/th/the-fall-mutant-city.json new file mode 100644 index 000000000000..94734ecb9374 --- /dev/null +++ b/data/game/th/the-fall-mutant-city.json @@ -0,0 +1,8 @@ +{ + "slug": "the-fall-mutant-city", + "name": "The Fall - Mutant City", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135225965" + ] +} diff --git a/data/game/th/the-finals-1150-multibucks.json b/data/game/th/the-finals-1150-multibucks.json new file mode 100644 index 000000000000..457cb630c424 --- /dev/null +++ b/data/game/th/the-finals-1150-multibucks.json @@ -0,0 +1,21 @@ +{ + "slug": "the-finals-1150-multibucks", + "name": "THE FINALS - 1150 Multibucks", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124658896" + ], + "release_date": "2023-01-01", + "platforms": [ + "PlayStation 5" + ], + "genres": [ + "first-person shooter" + ], + "developers": [ + "Embark Studios" + ], + "publishers": [ + "Embark Studios" + ] +} diff --git a/data/game/th/the-finals-13-000-multibucks.json b/data/game/th/the-finals-13-000-multibucks.json new file mode 100644 index 000000000000..407d19d40795 --- /dev/null +++ b/data/game/th/the-finals-13-000-multibucks.json @@ -0,0 +1,21 @@ +{ + "slug": "the-finals-13-000-multibucks", + "name": "THE FINALS - 13 000 Multibucks", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124668429" + ], + "release_date": "2023-01-01", + "platforms": [ + "PlayStation 5" + ], + "genres": [ + "first-person shooter" + ], + "developers": [ + "Embark Studios" + ], + "publishers": [ + "Embark Studios" + ] +} diff --git a/data/game/th/the-finals-2-400-multibucks.json b/data/game/th/the-finals-2-400-multibucks.json new file mode 100644 index 000000000000..06a46c7b0501 --- /dev/null +++ b/data/game/th/the-finals-2-400-multibucks.json @@ -0,0 +1,21 @@ +{ + "slug": "the-finals-2-400-multibucks", + "name": "THE FINALS - 2 400 Multibucks", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124668431" + ], + "release_date": "2023-01-01", + "platforms": [ + "PlayStation 5" + ], + "genres": [ + "first-person shooter" + ], + "developers": [ + "Embark Studios" + ], + "publishers": [ + "Embark Studios" + ] +} diff --git a/data/game/th/the-finals-500-multibucks.json b/data/game/th/the-finals-500-multibucks.json new file mode 100644 index 000000000000..37b051d4f463 --- /dev/null +++ b/data/game/th/the-finals-500-multibucks.json @@ -0,0 +1,21 @@ +{ + "slug": "the-finals-500-multibucks", + "name": "THE FINALS - 500 Multibucks", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124668426" + ], + "release_date": "2023-01-01", + "platforms": [ + "PlayStation 5" + ], + "genres": [ + "first-person shooter" + ], + "developers": [ + "Embark Studios" + ], + "publishers": [ + "Embark Studios" + ] +} diff --git a/data/game/th/the-finals-6-250-multibucks.json b/data/game/th/the-finals-6-250-multibucks.json new file mode 100644 index 000000000000..d483ae4eb2bc --- /dev/null +++ b/data/game/th/the-finals-6-250-multibucks.json @@ -0,0 +1,21 @@ +{ + "slug": "the-finals-6-250-multibucks", + "name": "THE FINALS - 6 250 Multibucks", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124668419" + ], + "release_date": "2023-01-01", + "platforms": [ + "PlayStation 5" + ], + "genres": [ + "first-person shooter" + ], + "developers": [ + "Embark Studios" + ], + "publishers": [ + "Embark Studios" + ] +} diff --git a/data/game/th/the-finals-bank-rabbit-set.json b/data/game/th/the-finals-bank-rabbit-set.json new file mode 100644 index 000000000000..549c1ef51349 --- /dev/null +++ b/data/game/th/the-finals-bank-rabbit-set.json @@ -0,0 +1,21 @@ +{ + "slug": "the-finals-bank-rabbit-set", + "name": "THE FINALS - Bank Rabbit Set", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125386655" + ], + "release_date": "2024-03-27", + "platforms": [ + "PlayStation 5" + ], + "genres": [ + "first-person shooter" + ], + "developers": [ + "Embark Studios" + ], + "publishers": [ + "Embark Studios" + ] +} diff --git a/data/game/th/the-finals-s-o-sleek-bundle.json b/data/game/th/the-finals-s-o-sleek-bundle.json new file mode 100644 index 000000000000..48ec30fee524 --- /dev/null +++ b/data/game/th/the-finals-s-o-sleek-bundle.json @@ -0,0 +1,21 @@ +{ + "slug": "the-finals-s-o-sleek-bundle", + "name": "THE FINALS - S.O Sleek Bundle", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124877575" + ], + "release_date": "2023-01-01", + "platforms": [ + "PlayStation 5" + ], + "genres": [ + "first-person shooter" + ], + "developers": [ + "Embark Studios" + ], + "publishers": [ + "Embark Studios" + ] +} diff --git a/data/game/th/the-finals-volpe-immersion-bundle.json b/data/game/th/the-finals-volpe-immersion-bundle.json new file mode 100644 index 000000000000..9779cb728de9 --- /dev/null +++ b/data/game/th/the-finals-volpe-immersion-bundle.json @@ -0,0 +1,21 @@ +{ + "slug": "the-finals-volpe-immersion-bundle", + "name": "THE FINALS - VOLPE Immersion Bundle", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124668421" + ], + "release_date": "2023-01-01", + "platforms": [ + "PlayStation 5" + ], + "genres": [ + "first-person shooter" + ], + "developers": [ + "Embark Studios" + ], + "publishers": [ + "Embark Studios" + ] +} diff --git a/data/game/th/the-forest-song.json b/data/game/th/the-forest-song.json new file mode 100644 index 000000000000..fe6f93501b25 --- /dev/null +++ b/data/game/th/the-forest-song.json @@ -0,0 +1,8 @@ +{ + "slug": "the-forest-song", + "name": "The Forest Song", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25442177" + ] +} diff --git a/data/game/th/the-fountain-of-youth.json b/data/game/th/the-fountain-of-youth.json new file mode 100644 index 000000000000..5907cc1babaa --- /dev/null +++ b/data/game/th/the-fountain-of-youth.json @@ -0,0 +1,11 @@ +{ + "slug": "the-fountain-of-youth", + "name": "The Fountain of Youth", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124419254" + ], + "genres": [ + "point-and-click adventure" + ] +} diff --git a/data/game/th/the-francy-droo-friends-collection.json b/data/game/th/the-francy-droo-friends-collection.json new file mode 100644 index 000000000000..7217e2f971c6 --- /dev/null +++ b/data/game/th/the-francy-droo-friends-collection.json @@ -0,0 +1,22 @@ +{ + "slug": "the-francy-droo-friends-collection", + "name": "The Francy Droo & Friends Collection", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60619710" + ], + "release_date": "2017-12-05", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "adventure video game" + ], + "developers": [ + "Oh, a Rock! Studios" + ], + "publishers": [ + "Oh, a Rock! Studios" + ] +} diff --git a/data/game/th/the-game-of-gnomes.json b/data/game/th/the-game-of-gnomes.json new file mode 100644 index 000000000000..246054296a8c --- /dev/null +++ b/data/game/th/the-game-of-gnomes.json @@ -0,0 +1,21 @@ +{ + "slug": "the-game-of-gnomes", + "name": "The Game of Gnomes", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106181" + ], + "release_date": "2014-12-11", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/th/the-gardens-between-q114840396.json b/data/game/th/the-gardens-between-q114840396.json new file mode 100644 index 000000000000..ae74f308485a --- /dev/null +++ b/data/game/th/the-gardens-between-q114840396.json @@ -0,0 +1,13 @@ +{ + "slug": "the-gardens-between-q114840396", + "name": "The Gardens Between+", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q114840396" + ], + "release_date": "2022-10-14", + "platforms": [ + "iPadOS", + "iOS" + ] +} diff --git a/data/game/th/the-getaway-3.json b/data/game/th/the-getaway-3.json new file mode 100644 index 000000000000..3423077acd30 --- /dev/null +++ b/data/game/th/the-getaway-3.json @@ -0,0 +1,14 @@ +{ + "slug": "the-getaway-3", + "name": "The Getaway 3", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1133259" + ], + "platforms": [ + "PlayStation 3" + ], + "genres": [ + "action game" + ] +} diff --git a/data/game/th/the-great-ace-attorney-chronicles.json b/data/game/th/the-great-ace-attorney-chronicles.json new file mode 100644 index 000000000000..be7d87cf66cc --- /dev/null +++ b/data/game/th/the-great-ace-attorney-chronicles.json @@ -0,0 +1,22 @@ +{ + "slug": "the-great-ace-attorney-chronicles", + "name": "The Great Ace Attorney Chronicles", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107234728" + ], + "release_date": "2021-07-27", + "platforms": [ + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "adventure video game" + ], + "developers": [ + "Capcom" + ], + "publishers": [ + "Capcom" + ] +} diff --git a/data/game/th/the-grimm-troupe.json b/data/game/th/the-grimm-troupe.json new file mode 100644 index 000000000000..c8d34788ac42 --- /dev/null +++ b/data/game/th/the-grimm-troupe.json @@ -0,0 +1,12 @@ +{ + "slug": "the-grimm-troupe", + "name": "The Grimm Troupe", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116592506" + ], + "release_date": "2017-10-26", + "developers": [ + "Team Cherry" + ] +} diff --git a/data/game/th/the-guild-2-venice.json b/data/game/th/the-guild-2-venice.json new file mode 100644 index 000000000000..99fcd780d415 --- /dev/null +++ b/data/game/th/the-guild-2-venice.json @@ -0,0 +1,8 @@ +{ + "slug": "the-guild-2-venice", + "name": "The Guild 2: Venice", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q9358017" + ] +} diff --git a/data/game/th/the-hero-project-open-season-mechip-warning-system-9-0.json b/data/game/th/the-hero-project-open-season-mechip-warning-system-9-0.json new file mode 100644 index 000000000000..9729a73abdeb --- /dev/null +++ b/data/game/th/the-hero-project-open-season-mechip-warning-system-9-0.json @@ -0,0 +1,19 @@ +{ + "slug": "the-hero-project-open-season-mechip-warning-system-9-0", + "name": "The Hero Project: Open Season - MeChip Warning System 9.0", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115016166" + ], + "release_date": "2018-04-05", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Choice of Games" + ], + "publishers": [ + "Choice of Games" + ] +} diff --git a/data/game/th/the-hero-project-open-season-prodigal-s-database-for-powereds.json b/data/game/th/the-hero-project-open-season-prodigal-s-database-for-powereds.json new file mode 100644 index 000000000000..daf586ca59c7 --- /dev/null +++ b/data/game/th/the-hero-project-open-season-prodigal-s-database-for-powereds.json @@ -0,0 +1,19 @@ +{ + "slug": "the-hero-project-open-season-prodigal-s-database-for-powereds", + "name": "The Hero Project: Open Season - Prodigal's Database for Powereds", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115016170" + ], + "release_date": "2018-04-05", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Choice of Games" + ], + "publishers": [ + "Choice of Games" + ] +} diff --git a/data/game/th/the-hero-project-redemption-season-mechip-warning-system.json b/data/game/th/the-hero-project-redemption-season-mechip-warning-system.json new file mode 100644 index 000000000000..6209381a25fb --- /dev/null +++ b/data/game/th/the-hero-project-redemption-season-mechip-warning-system.json @@ -0,0 +1,19 @@ +{ + "slug": "the-hero-project-redemption-season-mechip-warning-system", + "name": "The Hero Project: Redemption Season - MeChip Warning System", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115016125" + ], + "release_date": "2016-04-08", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Choice of Games" + ], + "publishers": [ + "Choice of Games" + ] +} diff --git a/data/game/th/the-hero-project-redemption-season-the-youpower-project.json b/data/game/th/the-hero-project-redemption-season-the-youpower-project.json new file mode 100644 index 000000000000..38f90a9b17ce --- /dev/null +++ b/data/game/th/the-hero-project-redemption-season-the-youpower-project.json @@ -0,0 +1,19 @@ +{ + "slug": "the-hero-project-redemption-season-the-youpower-project", + "name": "The Hero Project: Redemption Season - The YouPower Project", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115016164" + ], + "release_date": "2017-09-14", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Choice of Games" + ], + "publishers": [ + "Choice of Games" + ] +} diff --git a/data/game/th/the-hidden-treasure-of-area-zero.json b/data/game/th/the-hidden-treasure-of-area-zero.json new file mode 100644 index 000000000000..7fa54f577c62 --- /dev/null +++ b/data/game/th/the-hidden-treasure-of-area-zero.json @@ -0,0 +1,15 @@ +{ + "slug": "the-hidden-treasure-of-area-zero", + "name": "The Hidden Treasure of Area Zero", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122755874" + ], + "release_date": "2023-02-27", + "developers": [ + "Game Freak" + ], + "publishers": [ + "Nintendo" + ] +} diff --git a/data/game/th/the-holiday-express.json b/data/game/th/the-holiday-express.json new file mode 100644 index 000000000000..e53bf15334d8 --- /dev/null +++ b/data/game/th/the-holiday-express.json @@ -0,0 +1,21 @@ +{ + "slug": "the-holiday-express", + "name": "The Holiday Express", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106207" + ], + "release_date": "2013-12-04", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/th/the-house-of-the-dead-2-3-return.json b/data/game/th/the-house-of-the-dead-2-3-return.json new file mode 100644 index 000000000000..c0bf3ffa2090 --- /dev/null +++ b/data/game/th/the-house-of-the-dead-2-3-return.json @@ -0,0 +1,21 @@ +{ + "slug": "the-house-of-the-dead-2-3-return", + "name": "The House of the Dead 2 & 3 Return", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3283528" + ], + "release_date": "2008-03-11", + "platforms": [ + "Wii" + ], + "genres": [ + "light-gun shooter" + ], + "developers": [ + "Sega" + ], + "publishers": [ + "Sega" + ] +} diff --git a/data/game/th/the-house-of-the-dead-overkill-extended-cut.json b/data/game/th/the-house-of-the-dead-overkill-extended-cut.json new file mode 100644 index 000000000000..ce80f7cdb621 --- /dev/null +++ b/data/game/th/the-house-of-the-dead-overkill-extended-cut.json @@ -0,0 +1,21 @@ +{ + "slug": "the-house-of-the-dead-overkill-extended-cut", + "name": "The House of the Dead: Overkill – Extended Cut", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107424317" + ], + "release_date": "2011-10-25", + "platforms": [ + "PlayStation 3" + ], + "genres": [ + "rail shooter" + ], + "developers": [ + "Headstrong Games" + ], + "publishers": [ + "Sega" + ] +} diff --git a/data/game/th/the-hunger-games-panem-rising.json b/data/game/th/the-hunger-games-panem-rising.json new file mode 100644 index 000000000000..5173162f8257 --- /dev/null +++ b/data/game/th/the-hunger-games-panem-rising.json @@ -0,0 +1,8 @@ +{ + "slug": "the-hunger-games-panem-rising", + "name": "The Hunger Games: Panem Rising", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140471205" + ] +} diff --git a/data/game/th/the-ico-shadow-of-the-colossus-collection.json b/data/game/th/the-ico-shadow-of-the-colossus-collection.json new file mode 100644 index 000000000000..620dcf56c493 --- /dev/null +++ b/data/game/th/the-ico-shadow-of-the-colossus-collection.json @@ -0,0 +1,21 @@ +{ + "slug": "the-ico-shadow-of-the-colossus-collection", + "name": "The Ico & Shadow of the Colossus Collection", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7741308" + ], + "release_date": "2011-09-22", + "platforms": [ + "PlayStation 3" + ], + "genres": [ + "action-adventure game" + ], + "developers": [ + "Team Ico" + ], + "publishers": [ + "Sony Interactive Entertainment" + ] +} diff --git a/data/game/th/the-iconian-war.json b/data/game/th/the-iconian-war.json new file mode 100644 index 000000000000..7caf79b9be5f --- /dev/null +++ b/data/game/th/the-iconian-war.json @@ -0,0 +1,9 @@ +{ + "slug": "the-iconian-war", + "name": "The Iconian War", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q57973877" + ], + "release_date": "2015-04-21" +} diff --git a/data/game/th/the-incredible-machine-mega-pack.json b/data/game/th/the-incredible-machine-mega-pack.json new file mode 100644 index 000000000000..0434ed1c39d7 --- /dev/null +++ b/data/game/th/the-incredible-machine-mega-pack.json @@ -0,0 +1,8 @@ +{ + "slug": "the-incredible-machine-mega-pack", + "name": "The Incredible Machine Mega Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136385693" + ] +} diff --git a/data/game/th/the-indigo-disk.json b/data/game/th/the-indigo-disk.json new file mode 100644 index 000000000000..4ab9adb0b0e1 --- /dev/null +++ b/data/game/th/the-indigo-disk.json @@ -0,0 +1,12 @@ +{ + "slug": "the-indigo-disk", + "name": "The Indigo Disk", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130331621" + ], + "release_date": "2023-12-14", + "platforms": [ + "Nintendo Switch Lite" + ] +} diff --git a/data/game/th/the-internet-hunt.json b/data/game/th/the-internet-hunt.json new file mode 100644 index 000000000000..51c185eb9801 --- /dev/null +++ b/data/game/th/the-internet-hunt.json @@ -0,0 +1,8 @@ +{ + "slug": "the-internet-hunt", + "name": "The Internet Hunt", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7742346" + ] +} diff --git a/data/game/th/the-isle-of-armor.json b/data/game/th/the-isle-of-armor.json new file mode 100644 index 000000000000..62da7325e400 --- /dev/null +++ b/data/game/th/the-isle-of-armor.json @@ -0,0 +1,15 @@ +{ + "slug": "the-isle-of-armor", + "name": "The Isle of Armor", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q96335562" + ], + "release_date": "2020-06-17", + "platforms": [ + "Nintendo Switch Lite" + ], + "genres": [ + "role-playing video game" + ] +} diff --git a/data/game/th/the-last-kids-on-earth-happy-apocalypse-to-you.json b/data/game/th/the-last-kids-on-earth-happy-apocalypse-to-you.json new file mode 100644 index 000000000000..fcfdbd6a6308 --- /dev/null +++ b/data/game/th/the-last-kids-on-earth-happy-apocalypse-to-you.json @@ -0,0 +1,9 @@ +{ + "slug": "the-last-kids-on-earth-happy-apocalypse-to-you", + "name": "The Last Kids on Earth: Happy Apocalypse to You", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106469851" + ], + "release_date": "2021-04-06" +} diff --git a/data/game/th/the-last-of-us-online.json b/data/game/th/the-last-of-us-online.json new file mode 100644 index 000000000000..851803142ae4 --- /dev/null +++ b/data/game/th/the-last-of-us-online.json @@ -0,0 +1,19 @@ +{ + "slug": "the-last-of-us-online", + "name": "The Last of Us Online", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113751770" + ], + "genres": [ + "action-adventure game", + "third-person shooter", + "stealth game" + ], + "developers": [ + "Naughty Dog" + ], + "publishers": [ + "Sony Interactive Entertainment" + ] +} diff --git a/data/game/th/the-last-of-us-part-i-digital-deluxe-edition.json b/data/game/th/the-last-of-us-part-i-digital-deluxe-edition.json new file mode 100644 index 000000000000..574f41cc76d2 --- /dev/null +++ b/data/game/th/the-last-of-us-part-i-digital-deluxe-edition.json @@ -0,0 +1,24 @@ +{ + "slug": "the-last-of-us-part-i-digital-deluxe-edition", + "name": "The Last of Us Part I (Digital Deluxe Edition)", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113681980" + ], + "release_date": "2022-09-02", + "platforms": [ + "PlayStation 5", + "Microsoft Windows" + ], + "genres": [ + "survival horror", + "action-adventure game", + "stealth game" + ], + "developers": [ + "Naughty Dog" + ], + "publishers": [ + "Sony Interactive Entertainment" + ] +} diff --git a/data/game/th/the-last-of-us-part-i-firefly-edition.json b/data/game/th/the-last-of-us-part-i-firefly-edition.json new file mode 100644 index 000000000000..b4720add100f --- /dev/null +++ b/data/game/th/the-last-of-us-part-i-firefly-edition.json @@ -0,0 +1,23 @@ +{ + "slug": "the-last-of-us-part-i-firefly-edition", + "name": "The Last of Us Part I (Firefly Edition)", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113681987" + ], + "release_date": "2022-09-02", + "platforms": [ + "PlayStation 5" + ], + "genres": [ + "survival horror", + "action-adventure game", + "stealth game" + ], + "developers": [ + "Naughty Dog" + ], + "publishers": [ + "Sony Interactive Entertainment" + ] +} diff --git a/data/game/th/the-last-of-us-part-ii-collector-s-edition.json b/data/game/th/the-last-of-us-part-ii-collector-s-edition.json new file mode 100644 index 000000000000..080a8437b9c7 --- /dev/null +++ b/data/game/th/the-last-of-us-part-ii-collector-s-edition.json @@ -0,0 +1,23 @@ +{ + "slug": "the-last-of-us-part-ii-collector-s-edition", + "name": "The Last of Us Part II (Collector's Edition)", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q88310599" + ], + "release_date": "2020-06-19", + "platforms": [ + "PlayStation 4" + ], + "genres": [ + "survival horror", + "action-adventure game", + "stealth game" + ], + "developers": [ + "Naughty Dog" + ], + "publishers": [ + "Sony Interactive Entertainment" + ] +} diff --git a/data/game/th/the-last-of-us-part-ii-digital-deluxe-edition.json b/data/game/th/the-last-of-us-part-ii-digital-deluxe-edition.json new file mode 100644 index 000000000000..9926e1d79825 --- /dev/null +++ b/data/game/th/the-last-of-us-part-ii-digital-deluxe-edition.json @@ -0,0 +1,23 @@ +{ + "slug": "the-last-of-us-part-ii-digital-deluxe-edition", + "name": "The Last of Us Part II (Digital Deluxe Edition)", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q88291753" + ], + "release_date": "2020-06-19", + "platforms": [ + "PlayStation 4" + ], + "genres": [ + "survival horror", + "action-adventure game", + "stealth game" + ], + "developers": [ + "Naughty Dog" + ], + "publishers": [ + "Sony Interactive Entertainment" + ] +} diff --git a/data/game/th/the-last-of-us-part-ii-ellie-edition.json b/data/game/th/the-last-of-us-part-ii-ellie-edition.json new file mode 100644 index 000000000000..1d2dad2bfa20 --- /dev/null +++ b/data/game/th/the-last-of-us-part-ii-ellie-edition.json @@ -0,0 +1,23 @@ +{ + "slug": "the-last-of-us-part-ii-ellie-edition", + "name": "The Last of Us Part II (Ellie Edition)", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q88311456" + ], + "release_date": "2020-06-19", + "platforms": [ + "PlayStation 4" + ], + "genres": [ + "survival horror", + "action-adventure game", + "stealth game" + ], + "developers": [ + "Naughty Dog" + ], + "publishers": [ + "Sony Interactive Entertainment" + ] +} diff --git a/data/game/th/the-last-of-us-part-ii-special-edition.json b/data/game/th/the-last-of-us-part-ii-special-edition.json new file mode 100644 index 000000000000..428bdd59fa14 --- /dev/null +++ b/data/game/th/the-last-of-us-part-ii-special-edition.json @@ -0,0 +1,23 @@ +{ + "slug": "the-last-of-us-part-ii-special-edition", + "name": "The Last of Us Part II (Special Edition)", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q88305796" + ], + "release_date": "2020-06-19", + "platforms": [ + "PlayStation 4" + ], + "genres": [ + "survival horror", + "action-adventure game", + "stealth game" + ], + "developers": [ + "Naughty Dog" + ], + "publishers": [ + "Sony Interactive Entertainment" + ] +} diff --git a/data/game/th/the-last-of-us-part-iii.json b/data/game/th/the-last-of-us-part-iii.json new file mode 100644 index 000000000000..45e1a65314e8 --- /dev/null +++ b/data/game/th/the-last-of-us-part-iii.json @@ -0,0 +1,11 @@ +{ + "slug": "the-last-of-us-part-iii", + "name": "The Last of Us Part III", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113774985" + ], + "genres": [ + "action-adventure game" + ] +} diff --git a/data/game/th/the-legend-of-spyro-a-new-beginning.json b/data/game/th/the-legend-of-spyro-a-new-beginning.json new file mode 100644 index 000000000000..221c9246edfa --- /dev/null +++ b/data/game/th/the-legend-of-spyro-a-new-beginning.json @@ -0,0 +1,26 @@ +{ + "slug": "the-legend-of-spyro-a-new-beginning", + "name": "The Legend of Spyro: A New Beginning", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2578009" + ], + "release_date": "2006-10-10", + "platforms": [ + "Java Platform, Micro Edition", + "Nintendo GameCube", + "Game Boy Advance", + "Nintendo DS" + ], + "genres": [ + "action-adventure game" + ], + "developers": [ + "The Mighty Troglodytes", + "Krome Studios", + "Amaze Entertainment" + ], + "publishers": [ + "Sierra Entertainment" + ] +} diff --git a/data/game/th/the-legend-of-zelda-breath-of-the-wild-nintendo-switch-2-edition.json b/data/game/th/the-legend-of-zelda-breath-of-the-wild-nintendo-switch-2-edition.json new file mode 100644 index 000000000000..b69933f9533c --- /dev/null +++ b/data/game/th/the-legend-of-zelda-breath-of-the-wild-nintendo-switch-2-edition.json @@ -0,0 +1,8 @@ +{ + "slug": "the-legend-of-zelda-breath-of-the-wild-nintendo-switch-2-edition", + "name": "The Legend of Zelda: Breath of the Wild Nintendo Switch 2 Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134726586" + ] +} diff --git a/data/game/th/the-legend-of-zelda-breath-of-the-wild-the-champions-ballad.json b/data/game/th/the-legend-of-zelda-breath-of-the-wild-the-champions-ballad.json new file mode 100644 index 000000000000..32669d6538b6 --- /dev/null +++ b/data/game/th/the-legend-of-zelda-breath-of-the-wild-the-champions-ballad.json @@ -0,0 +1,9 @@ +{ + "slug": "the-legend-of-zelda-breath-of-the-wild-the-champions-ballad", + "name": "The Legend of Zelda: Breath of the Wild – The Champions' Ballad", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116855305" + ], + "release_date": "2017-12-07" +} diff --git a/data/game/th/the-legend-of-zelda-breath-of-the-wild-the-master-trials.json b/data/game/th/the-legend-of-zelda-breath-of-the-wild-the-master-trials.json new file mode 100644 index 000000000000..4ca1d711f2a7 --- /dev/null +++ b/data/game/th/the-legend-of-zelda-breath-of-the-wild-the-master-trials.json @@ -0,0 +1,9 @@ +{ + "slug": "the-legend-of-zelda-breath-of-the-wild-the-master-trials", + "name": "The Legend of Zelda: Breath of the Wild – The Master Trials", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116855235" + ], + "release_date": "2017-06-30" +} diff --git a/data/game/th/the-legend-of-zelda-collector-s-edition.json b/data/game/th/the-legend-of-zelda-collector-s-edition.json new file mode 100644 index 000000000000..355f19031de9 --- /dev/null +++ b/data/game/th/the-legend-of-zelda-collector-s-edition.json @@ -0,0 +1,21 @@ +{ + "slug": "the-legend-of-zelda-collector-s-edition", + "name": "The Legend of Zelda: Collector's Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1339084" + ], + "release_date": "2003-11-14", + "platforms": [ + "Nintendo GameCube" + ], + "genres": [ + "action-adventure game" + ], + "developers": [ + "Nintendo" + ], + "publishers": [ + "Nintendo" + ] +} diff --git a/data/game/th/the-legend-of-zelda-mystical-seed-of-courage.json b/data/game/th/the-legend-of-zelda-mystical-seed-of-courage.json new file mode 100644 index 000000000000..988aff1434b6 --- /dev/null +++ b/data/game/th/the-legend-of-zelda-mystical-seed-of-courage.json @@ -0,0 +1,8 @@ +{ + "slug": "the-legend-of-zelda-mystical-seed-of-courage", + "name": "The Legend of Zelda: Mystical Seed of Courage", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11897233" + ] +} diff --git a/data/game/th/the-legend-of-zelda-oracle-of-seasons-and-oracle-of-ages.json b/data/game/th/the-legend-of-zelda-oracle-of-seasons-and-oracle-of-ages.json new file mode 100644 index 000000000000..981df0c505fa --- /dev/null +++ b/data/game/th/the-legend-of-zelda-oracle-of-seasons-and-oracle-of-ages.json @@ -0,0 +1,22 @@ +{ + "slug": "the-legend-of-zelda-oracle-of-seasons-and-oracle-of-ages", + "name": "The Legend of Zelda: Oracle of Seasons and Oracle of Ages", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q889739" + ], + "release_date": "2001-02-27", + "platforms": [ + "Game Boy Color" + ], + "genres": [ + "action-adventure game" + ], + "developers": [ + "Flagship", + "Capcom" + ], + "publishers": [ + "Nintendo" + ] +} diff --git a/data/game/th/the-legend-of-zelda-tears-of-the-kingdom-nintendo-switch-2-edition.json b/data/game/th/the-legend-of-zelda-tears-of-the-kingdom-nintendo-switch-2-edition.json new file mode 100644 index 000000000000..4363b9617e62 --- /dev/null +++ b/data/game/th/the-legend-of-zelda-tears-of-the-kingdom-nintendo-switch-2-edition.json @@ -0,0 +1,9 @@ +{ + "slug": "the-legend-of-zelda-tears-of-the-kingdom-nintendo-switch-2-edition", + "name": "The Legend of Zelda: Tears of the Kingdom Nintendo Switch 2 Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134726574" + ], + "release_date": "2025-06-05" +} diff --git a/data/game/th/the-long-siege.json b/data/game/th/the-long-siege.json new file mode 100644 index 000000000000..e115ed73fead --- /dev/null +++ b/data/game/th/the-long-siege.json @@ -0,0 +1,8 @@ +{ + "slug": "the-long-siege", + "name": "The Long Siege", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140472965" + ] +} diff --git a/data/game/th/the-lord-of-the-rings-online-before-the-shadow.json b/data/game/th/the-lord-of-the-rings-online-before-the-shadow.json new file mode 100644 index 000000000000..99ad30722296 --- /dev/null +++ b/data/game/th/the-lord-of-the-rings-online-before-the-shadow.json @@ -0,0 +1,12 @@ +{ + "slug": "the-lord-of-the-rings-online-before-the-shadow", + "name": "The Lord of the Rings Online: Before the Shadow", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116470798" + ], + "release_date": "2022-11-15", + "platforms": [ + "Microsoft Windows" + ] +} diff --git a/data/game/th/the-lord-of-the-rings-online-fate-of-gundabad.json b/data/game/th/the-lord-of-the-rings-online-fate-of-gundabad.json new file mode 100644 index 000000000000..e5f3c76f7a6f --- /dev/null +++ b/data/game/th/the-lord-of-the-rings-online-fate-of-gundabad.json @@ -0,0 +1,12 @@ +{ + "slug": "the-lord-of-the-rings-online-fate-of-gundabad", + "name": "The Lord of the Rings Online: Fate of Gundabad", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116470896" + ], + "release_date": "2021-11-10", + "platforms": [ + "Microsoft Windows" + ] +} diff --git a/data/game/th/the-lord-of-the-rings-online-helm-s-deep.json b/data/game/th/the-lord-of-the-rings-online-helm-s-deep.json new file mode 100644 index 000000000000..2f51309c3dd0 --- /dev/null +++ b/data/game/th/the-lord-of-the-rings-online-helm-s-deep.json @@ -0,0 +1,19 @@ +{ + "slug": "the-lord-of-the-rings-online-helm-s-deep", + "name": "The Lord of the Rings Online: Helm's Deep", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16386759" + ], + "release_date": "2013-11-20", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "massively multiplayer online role-playing game" + ], + "developers": [ + "WB Games Boston" + ] +} diff --git a/data/game/th/the-lord-of-the-rings-online-mines-of-moria.json b/data/game/th/the-lord-of-the-rings-online-mines-of-moria.json new file mode 100644 index 000000000000..ae63f72e659b --- /dev/null +++ b/data/game/th/the-lord-of-the-rings-online-mines-of-moria.json @@ -0,0 +1,21 @@ +{ + "slug": "the-lord-of-the-rings-online-mines-of-moria", + "name": "The Lord of the Rings Online: Mines of Moria", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7748486" + ], + "release_date": "2008-11-18", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "massively multiplayer online role-playing game" + ], + "developers": [ + "WB Games Boston" + ], + "publishers": [ + "WB Games Boston" + ] +} diff --git a/data/game/th/the-lord-of-the-rings-online-riders-of-rohan.json b/data/game/th/the-lord-of-the-rings-online-riders-of-rohan.json new file mode 100644 index 000000000000..d67b5f16f49a --- /dev/null +++ b/data/game/th/the-lord-of-the-rings-online-riders-of-rohan.json @@ -0,0 +1,18 @@ +{ + "slug": "the-lord-of-the-rings-online-riders-of-rohan", + "name": "The Lord of the Rings Online: Riders of Rohan", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2107015" + ], + "release_date": "2012-10-15", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "massively multiplayer online role-playing game" + ], + "developers": [ + "WB Games Boston" + ] +} diff --git a/data/game/th/the-lord-of-the-rings-online-rise-of-isengard.json b/data/game/th/the-lord-of-the-rings-online-rise-of-isengard.json new file mode 100644 index 000000000000..590f27356a9e --- /dev/null +++ b/data/game/th/the-lord-of-the-rings-online-rise-of-isengard.json @@ -0,0 +1,18 @@ +{ + "slug": "the-lord-of-the-rings-online-rise-of-isengard", + "name": "The Lord of the Rings Online: Rise of Isengard", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2106978" + ], + "release_date": "2011-09-27", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "massively multiplayer online role-playing game" + ], + "developers": [ + "WB Games Boston" + ] +} diff --git a/data/game/th/the-lord-of-the-rings-online-siege-of-mirkwood.json b/data/game/th/the-lord-of-the-rings-online-siege-of-mirkwood.json new file mode 100644 index 000000000000..22c5204e522c --- /dev/null +++ b/data/game/th/the-lord-of-the-rings-online-siege-of-mirkwood.json @@ -0,0 +1,18 @@ +{ + "slug": "the-lord-of-the-rings-online-siege-of-mirkwood", + "name": "The Lord of the Rings Online: Siege of Mirkwood", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7748471" + ], + "release_date": "2009-12-01", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "massively multiplayer online role-playing game" + ], + "developers": [ + "WB Games Boston" + ] +} diff --git a/data/game/th/the-lord-of-the-rings-online-war-of-three-peaks.json b/data/game/th/the-lord-of-the-rings-online-war-of-three-peaks.json new file mode 100644 index 000000000000..51ad146c461c --- /dev/null +++ b/data/game/th/the-lord-of-the-rings-online-war-of-three-peaks.json @@ -0,0 +1,9 @@ +{ + "slug": "the-lord-of-the-rings-online-war-of-three-peaks", + "name": "The Lord of the Rings Online: War of Three Peaks", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105786603" + ], + "release_date": "2020-10-20" +} diff --git a/data/game/th/the-lord-of-the-rings-the-battle-for-middle-earth-ii-the-rise-of-the-witch-king.json b/data/game/th/the-lord-of-the-rings-the-battle-for-middle-earth-ii-the-rise-of-the-witch-king.json new file mode 100644 index 000000000000..dd956606ffb6 --- /dev/null +++ b/data/game/th/the-lord-of-the-rings-the-battle-for-middle-earth-ii-the-rise-of-the-witch-king.json @@ -0,0 +1,21 @@ +{ + "slug": "the-lord-of-the-rings-the-battle-for-middle-earth-ii-the-rise-of-the-witch-king", + "name": "The Lord of the Rings: The Battle for Middle-earth II: The Rise of the Witch-king", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1754787" + ], + "release_date": "2006-11-28", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "real-time strategy" + ], + "developers": [ + "Danger Close Games" + ], + "publishers": [ + "Electronic Arts" + ] +} diff --git a/data/game/th/the-lord-of-the-rings-the-white-council.json b/data/game/th/the-lord-of-the-rings-the-white-council.json new file mode 100644 index 000000000000..bacbf966dd1b --- /dev/null +++ b/data/game/th/the-lord-of-the-rings-the-white-council.json @@ -0,0 +1,22 @@ +{ + "slug": "the-lord-of-the-rings-the-white-council", + "name": "The Lord of the Rings: The White Council", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4583322" + ], + "platforms": [ + "PlayStation 3", + "Microsoft Windows" + ], + "genres": [ + "role-playing video game", + "fantasy video game" + ], + "developers": [ + "Visceral Games" + ], + "publishers": [ + "Electronic Arts" + ] +} diff --git a/data/game/th/the-lost-treasures-of-infocom-q7748761.json b/data/game/th/the-lost-treasures-of-infocom-q7748761.json new file mode 100644 index 000000000000..00e6d46f6ddd --- /dev/null +++ b/data/game/th/the-lost-treasures-of-infocom-q7748761.json @@ -0,0 +1,24 @@ +{ + "slug": "the-lost-treasures-of-infocom-q7748761", + "name": "The Lost Treasures of Infocom", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7748761" + ], + "release_date": "1991-01-01", + "platforms": [ + "Classic Mac OS", + "Apple IIGS", + "DOS", + "iOS" + ], + "genres": [ + "interactive fiction" + ], + "developers": [ + "Infocom" + ], + "publishers": [ + "Activision" + ] +} diff --git a/data/game/th/the-lucasarts-archives-vol-iii.json b/data/game/th/the-lucasarts-archives-vol-iii.json new file mode 100644 index 000000000000..abe298dc3dfd --- /dev/null +++ b/data/game/th/the-lucasarts-archives-vol-iii.json @@ -0,0 +1,8 @@ +{ + "slug": "the-lucasarts-archives-vol-iii", + "name": "The LucasArts Archives vol. III", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125208078" + ] +} diff --git a/data/game/th/the-lucasarts-archives.json b/data/game/th/the-lucasarts-archives.json new file mode 100644 index 000000000000..f711af15e629 --- /dev/null +++ b/data/game/th/the-lucasarts-archives.json @@ -0,0 +1,11 @@ +{ + "slug": "the-lucasarts-archives", + "name": "The LucasArts Archives", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17019278" + ], + "publishers": [ + "Lucasfilm Games" + ] +} diff --git a/data/game/th/the-magnetic-scrolls-collection.json b/data/game/th/the-magnetic-scrolls-collection.json new file mode 100644 index 000000000000..70dd065046ca --- /dev/null +++ b/data/game/th/the-magnetic-scrolls-collection.json @@ -0,0 +1,18 @@ +{ + "slug": "the-magnetic-scrolls-collection", + "name": "The Magnetic Scrolls Collection", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112860684" + ], + "release_date": "1991-01-01", + "platforms": [ + "Atari ST", + "DOS", + "Acorn Archimedes", + "Commodore Amiga" + ], + "developers": [ + "Magnetic Scrolls" + ] +} diff --git a/data/game/th/the-martian-bring-him-home.json b/data/game/th/the-martian-bring-him-home.json new file mode 100644 index 000000000000..9f30c08ad6cf --- /dev/null +++ b/data/game/th/the-martian-bring-him-home.json @@ -0,0 +1,8 @@ +{ + "slug": "the-martian-bring-him-home", + "name": "The Martian: Bring Him Home", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140471218" + ] +} diff --git a/data/game/th/the-messenger-picnic-panic.json b/data/game/th/the-messenger-picnic-panic.json new file mode 100644 index 000000000000..0ed33a37a0ec --- /dev/null +++ b/data/game/th/the-messenger-picnic-panic.json @@ -0,0 +1,21 @@ +{ + "slug": "the-messenger-picnic-panic", + "name": "The Messenger: Picnic Panic", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135424534" + ], + "release_date": "2019-07-11", + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 5", + "PlayStation 4", + "Microsoft Windows" + ], + "developers": [ + "Sabotage Studio" + ], + "publishers": [ + "Devolver Digital" + ] +} diff --git a/data/game/th/the-mimic-q133283755.json b/data/game/th/the-mimic-q133283755.json new file mode 100644 index 000000000000..32112207e379 --- /dev/null +++ b/data/game/th/the-mimic-q133283755.json @@ -0,0 +1,11 @@ +{ + "slug": "the-mimic-q133283755", + "name": "The Mimic", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q133283755" + ], + "genres": [ + "horror video game" + ] +} diff --git a/data/game/th/the-museum-relic-campaign.json b/data/game/th/the-museum-relic-campaign.json new file mode 100644 index 000000000000..a73b9b2fe042 --- /dev/null +++ b/data/game/th/the-museum-relic-campaign.json @@ -0,0 +1,15 @@ +{ + "slug": "the-museum-relic-campaign", + "name": "The Museum Relic Campaign", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097552" + ], + "release_date": "2017-07-14", + "platforms": [ + "Microsoft Windows" + ], + "publishers": [ + "Eagle Dynamics" + ] +} diff --git a/data/game/th/the-night-games-collection.json b/data/game/th/the-night-games-collection.json new file mode 100644 index 000000000000..9b6aef024545 --- /dev/null +++ b/data/game/th/the-night-games-collection.json @@ -0,0 +1,18 @@ +{ + "slug": "the-night-games-collection", + "name": "The Night Games Collection", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135066326" + ], + "release_date": "2024-12-16", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "adventure video game", + "action game", + "action-adventure game", + "simulation video game" + ] +} diff --git a/data/game/th/the-only-traitor.json b/data/game/th/the-only-traitor.json new file mode 100644 index 000000000000..9890c731f433 --- /dev/null +++ b/data/game/th/the-only-traitor.json @@ -0,0 +1,13 @@ +{ + "slug": "the-only-traitor", + "name": "The Only Traitor", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q91333442" + ], + "release_date": "2017-04-19", + "platforms": [ + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/game/th/the-orange-box.json b/data/game/th/the-orange-box.json new file mode 100644 index 000000000000..0b6589795fbd --- /dev/null +++ b/data/game/th/the-orange-box.json @@ -0,0 +1,22 @@ +{ + "slug": "the-orange-box", + "name": "The Orange Box", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q374556" + ], + "release_date": "2007-10-10", + "platforms": [ + "PlayStation 3", + "Microsoft Windows" + ], + "genres": [ + "first-person shooter" + ], + "developers": [ + "Valve Corporation" + ], + "publishers": [ + "Valve Corporation" + ] +} diff --git a/data/game/th/the-outer-worlds-murder-on-eridanos.json b/data/game/th/the-outer-worlds-murder-on-eridanos.json new file mode 100644 index 000000000000..362b93a35de3 --- /dev/null +++ b/data/game/th/the-outer-worlds-murder-on-eridanos.json @@ -0,0 +1,23 @@ +{ + "slug": "the-outer-worlds-murder-on-eridanos", + "name": "The Outer Worlds: Murder on Eridanos", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109690724" + ], + "release_date": "2021-03-17", + "platforms": [ + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "action role-playing game" + ], + "developers": [ + "Virtuos", + "Obsidian Entertainment" + ], + "publishers": [ + "Private Division" + ] +} diff --git a/data/game/th/the-outer-worlds-peril-on-gorgon.json b/data/game/th/the-outer-worlds-peril-on-gorgon.json new file mode 100644 index 000000000000..639882631f35 --- /dev/null +++ b/data/game/th/the-outer-worlds-peril-on-gorgon.json @@ -0,0 +1,12 @@ +{ + "slug": "the-outer-worlds-peril-on-gorgon", + "name": "The Outer Worlds: Peril on Gorgon", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115470965" + ], + "release_date": "2020-10-23", + "platforms": [ + "Microsoft Windows" + ] +} diff --git a/data/game/th/the-outer-worlds-spacer-s-choice-edition.json b/data/game/th/the-outer-worlds-spacer-s-choice-edition.json new file mode 100644 index 000000000000..defe04b90bb5 --- /dev/null +++ b/data/game/th/the-outer-worlds-spacer-s-choice-edition.json @@ -0,0 +1,23 @@ +{ + "slug": "the-outer-worlds-spacer-s-choice-edition", + "name": "The Outer Worlds: Spacer’s Choice Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117316999" + ], + "release_date": "2023-03-07", + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 5", + "Microsoft Windows" + ], + "genres": [ + "action role-playing game" + ], + "developers": [ + "Obsidian Entertainment" + ], + "publishers": [ + "Private Division" + ] +} diff --git a/data/game/th/the-outsider.json b/data/game/th/the-outsider.json new file mode 100644 index 000000000000..fad7443d5c6d --- /dev/null +++ b/data/game/th/the-outsider.json @@ -0,0 +1,18 @@ +{ + "slug": "the-outsider", + "name": "The Outsider", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3988606" + ], + "platforms": [ + "PlayStation 3", + "Microsoft Windows" + ], + "genres": [ + "action-adventure game" + ], + "developers": [ + "Frontier Developments" + ] +} diff --git a/data/game/th/the-passengers-vr.json b/data/game/th/the-passengers-vr.json new file mode 100644 index 000000000000..dda7e8d7c521 --- /dev/null +++ b/data/game/th/the-passengers-vr.json @@ -0,0 +1,8 @@ +{ + "slug": "the-passengers-vr", + "name": "The Passengers (VR)", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127050356" + ] +} diff --git a/data/game/th/the-political-machine-express-2008.json b/data/game/th/the-political-machine-express-2008.json new file mode 100644 index 000000000000..23c1f8638f64 --- /dev/null +++ b/data/game/th/the-political-machine-express-2008.json @@ -0,0 +1,15 @@ +{ + "slug": "the-political-machine-express-2008", + "name": "The Political Machine Express 2008", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123436664" + ], + "release_date": "2008-09-17", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Stardock" + ] +} diff --git a/data/game/th/the-postal-2-collection.json b/data/game/th/the-postal-2-collection.json new file mode 100644 index 000000000000..7c9eb052897c --- /dev/null +++ b/data/game/th/the-postal-2-collection.json @@ -0,0 +1,12 @@ +{ + "slug": "the-postal-2-collection", + "name": "The POSTAL 2 Collection", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q95692094" + ], + "platforms": [ + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/game/th/the-postal-package-curated-classics.json b/data/game/th/the-postal-package-curated-classics.json new file mode 100644 index 000000000000..02e6aa107eda --- /dev/null +++ b/data/game/th/the-postal-package-curated-classics.json @@ -0,0 +1,19 @@ +{ + "slug": "the-postal-package-curated-classics", + "name": "The POSTAL Package: Curated Classics", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q95692373" + ], + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "parody video game", + "satirical video game", + "black comedy video game", + "self-reflexive video game" + ] +} diff --git a/data/game/th/the-quarry-deluxe-edition.json b/data/game/th/the-quarry-deluxe-edition.json new file mode 100644 index 000000000000..23821f993c09 --- /dev/null +++ b/data/game/th/the-quarry-deluxe-edition.json @@ -0,0 +1,15 @@ +{ + "slug": "the-quarry-deluxe-edition", + "name": "The Quarry: Deluxe Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113639241" + ], + "release_date": "2022-06-10", + "platforms": [ + "Xbox Series X and Series S" + ], + "publishers": [ + "2K" + ] +} diff --git a/data/game/th/the-quiet-please-collection.json b/data/game/th/the-quiet-please-collection.json new file mode 100644 index 000000000000..6b55ec6ab0c4 --- /dev/null +++ b/data/game/th/the-quiet-please-collection.json @@ -0,0 +1,21 @@ +{ + "slug": "the-quiet-please-collection", + "name": "The \"Quiet, Please!\" Collection", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122370764" + ], + "release_date": "2015-07-23", + "platforms": [ + "Nintendo 3DS", + "PlayStation Vita", + "Wii U", + "Microsoft Windows" + ], + "developers": [ + "Nostatic Software" + ], + "publishers": [ + "Nostatic Software" + ] +} diff --git a/data/game/th/the-raiden-project.json b/data/game/th/the-raiden-project.json new file mode 100644 index 000000000000..553667cb840a --- /dev/null +++ b/data/game/th/the-raiden-project.json @@ -0,0 +1,15 @@ +{ + "slug": "the-raiden-project", + "name": "The Raiden Project", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3522411" + ], + "release_date": "1995-01-27", + "developers": [ + "Seibu Kaihatsu" + ], + "publishers": [ + "Seibu Kaihatsu" + ] +} diff --git a/data/game/th/the-ripper.json b/data/game/th/the-ripper.json new file mode 100644 index 000000000000..445369a20485 --- /dev/null +++ b/data/game/th/the-ripper.json @@ -0,0 +1,21 @@ +{ + "slug": "the-ripper", + "name": "The Ripper", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7760834" + ], + "platforms": [ + "PlayStation 3" + ], + "genres": [ + "role-playing video game", + "horror video game" + ], + "developers": [ + "Visceral Games" + ], + "publishers": [ + "Electronic Arts" + ] +} diff --git a/data/game/th/the-roberta-williams-anthology.json b/data/game/th/the-roberta-williams-anthology.json new file mode 100644 index 000000000000..ac668b84ce7b --- /dev/null +++ b/data/game/th/the-roberta-williams-anthology.json @@ -0,0 +1,15 @@ +{ + "slug": "the-roberta-williams-anthology", + "name": "The Roberta Williams Anthology", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2413943" + ], + "platforms": [ + "DOS", + "Microsoft Windows" + ], + "genres": [ + "adventure video game" + ] +} diff --git a/data/game/th/the-room-two-q124080278.json b/data/game/th/the-room-two-q124080278.json new file mode 100644 index 000000000000..567a524addc9 --- /dev/null +++ b/data/game/th/the-room-two-q124080278.json @@ -0,0 +1,21 @@ +{ + "slug": "the-room-two-q124080278", + "name": "The Room Two+", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124080278" + ], + "release_date": "2021-04-02", + "platforms": [ + "iOS" + ], + "genres": [ + "puzzle video game" + ], + "developers": [ + "Fireproof Studios" + ], + "publishers": [ + "Fireproof Studios" + ] +} diff --git a/data/game/th/the-scriptwelder-collection.json b/data/game/th/the-scriptwelder-collection.json new file mode 100644 index 000000000000..0f632e14fe5d --- /dev/null +++ b/data/game/th/the-scriptwelder-collection.json @@ -0,0 +1,17 @@ +{ + "slug": "the-scriptwelder-collection", + "name": "The Scriptwelder Collection", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q101603279" + ], + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Scriptwelder Studio" + ], + "publishers": [ + "Armor Games Studios" + ] +} diff --git a/data/game/th/the-settlers-7-paths-to-a-kingdom-gold-edition.json b/data/game/th/the-settlers-7-paths-to-a-kingdom-gold-edition.json new file mode 100644 index 000000000000..f959ae7230a9 --- /dev/null +++ b/data/game/th/the-settlers-7-paths-to-a-kingdom-gold-edition.json @@ -0,0 +1,8 @@ +{ + "slug": "the-settlers-7-paths-to-a-kingdom-gold-edition", + "name": "The Settlers 7: Paths to a Kingdom - Gold Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125148765" + ] +} diff --git a/data/game/th/the-settlers-heritage-of-kings-expansion-disc.json b/data/game/th/the-settlers-heritage-of-kings-expansion-disc.json new file mode 100644 index 000000000000..5af9f72dc772 --- /dev/null +++ b/data/game/th/the-settlers-heritage-of-kings-expansion-disc.json @@ -0,0 +1,8 @@ +{ + "slug": "the-settlers-heritage-of-kings-expansion-disc", + "name": "The Settlers: Heritage of Kings - Expansion Disc", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130518879" + ] +} diff --git a/data/game/th/the-settlers-heritage-of-kings-gold-edition.json b/data/game/th/the-settlers-heritage-of-kings-gold-edition.json new file mode 100644 index 000000000000..a21fde5f0cad --- /dev/null +++ b/data/game/th/the-settlers-heritage-of-kings-gold-edition.json @@ -0,0 +1,8 @@ +{ + "slug": "the-settlers-heritage-of-kings-gold-edition", + "name": "The Settlers: Heritage of Kings - Gold Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125148713" + ] +} diff --git a/data/game/th/the-settlers-heritage-of-kings-legends-expansion-disc.json b/data/game/th/the-settlers-heritage-of-kings-legends-expansion-disc.json new file mode 100644 index 000000000000..c648c64f5bf4 --- /dev/null +++ b/data/game/th/the-settlers-heritage-of-kings-legends-expansion-disc.json @@ -0,0 +1,8 @@ +{ + "slug": "the-settlers-heritage-of-kings-legends-expansion-disc", + "name": "The Settlers: Heritage of Kings - Legends Expansion Disc", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130518904" + ] +} diff --git a/data/game/th/the-settlers-history-collection.json b/data/game/th/the-settlers-history-collection.json new file mode 100644 index 000000000000..ccfb03836129 --- /dev/null +++ b/data/game/th/the-settlers-history-collection.json @@ -0,0 +1,15 @@ +{ + "slug": "the-settlers-history-collection", + "name": "The Settlers: History Collection", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q61087714" + ], + "release_date": "2018-11-15", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Ubisoft Blue Byte" + ] +} diff --git a/data/game/th/the-settlers-ii-10th-anniversary-gold-edition.json b/data/game/th/the-settlers-ii-10th-anniversary-gold-edition.json new file mode 100644 index 000000000000..b9e5619967c8 --- /dev/null +++ b/data/game/th/the-settlers-ii-10th-anniversary-gold-edition.json @@ -0,0 +1,8 @@ +{ + "slug": "the-settlers-ii-10th-anniversary-gold-edition", + "name": "The Settlers II (10th Anniversary) Gold Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125148577" + ] +} diff --git a/data/game/th/the-settlers-ii-10th-anniversary-vikings.json b/data/game/th/the-settlers-ii-10th-anniversary-vikings.json new file mode 100644 index 000000000000..6d1b03c53c20 --- /dev/null +++ b/data/game/th/the-settlers-ii-10th-anniversary-vikings.json @@ -0,0 +1,12 @@ +{ + "slug": "the-settlers-ii-10th-anniversary-vikings", + "name": "The Settlers II: 10th Anniversary - Vikings", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125148618" + ], + "developers": [ + "Funatics Software", + "Ubisoft Blue Byte" + ] +} diff --git a/data/game/th/the-settlers-ii-gold-edition.json b/data/game/th/the-settlers-ii-gold-edition.json new file mode 100644 index 000000000000..f4c596cd034b --- /dev/null +++ b/data/game/th/the-settlers-ii-gold-edition.json @@ -0,0 +1,12 @@ +{ + "slug": "the-settlers-ii-gold-edition", + "name": "The Settlers II: Gold Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121094015" + ], + "platforms": [ + "Classic Mac OS", + "DOS" + ] +} diff --git a/data/game/th/the-settlers-ii-mission-cd.json b/data/game/th/the-settlers-ii-mission-cd.json new file mode 100644 index 000000000000..c38269a78aaf --- /dev/null +++ b/data/game/th/the-settlers-ii-mission-cd.json @@ -0,0 +1,8 @@ +{ + "slug": "the-settlers-ii-mission-cd", + "name": "The Settlers II: Mission CD", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121094074" + ] +} diff --git a/data/game/th/the-settlers-iii-gold-edition.json b/data/game/th/the-settlers-iii-gold-edition.json new file mode 100644 index 000000000000..92c073910c57 --- /dev/null +++ b/data/game/th/the-settlers-iii-gold-edition.json @@ -0,0 +1,11 @@ +{ + "slug": "the-settlers-iii-gold-edition", + "name": "The Settlers III: Gold Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125148627" + ], + "developers": [ + "Ubisoft Blue Byte" + ] +} diff --git a/data/game/th/the-settlers-iii-mission-cd.json b/data/game/th/the-settlers-iii-mission-cd.json new file mode 100644 index 000000000000..d1dfdd2975e3 --- /dev/null +++ b/data/game/th/the-settlers-iii-mission-cd.json @@ -0,0 +1,8 @@ +{ + "slug": "the-settlers-iii-mission-cd", + "name": "The Settlers III: Mission CD", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125156729" + ] +} diff --git a/data/game/th/the-settlers-iii-quest-of-the-amazons.json b/data/game/th/the-settlers-iii-quest-of-the-amazons.json new file mode 100644 index 000000000000..808a87a9d1e3 --- /dev/null +++ b/data/game/th/the-settlers-iii-quest-of-the-amazons.json @@ -0,0 +1,8 @@ +{ + "slug": "the-settlers-iii-quest-of-the-amazons", + "name": "The Settlers III: Quest of the Amazons", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125148631" + ] +} diff --git a/data/game/th/the-settlers-iv-gold-edition.json b/data/game/th/the-settlers-iv-gold-edition.json new file mode 100644 index 000000000000..6e3b3b932d5d --- /dev/null +++ b/data/game/th/the-settlers-iv-gold-edition.json @@ -0,0 +1,8 @@ +{ + "slug": "the-settlers-iv-gold-edition", + "name": "The Settlers IV: Gold Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125148698" + ] +} diff --git a/data/game/th/the-settlers-iv-mission-cd.json b/data/game/th/the-settlers-iv-mission-cd.json new file mode 100644 index 000000000000..b866a6d29196 --- /dev/null +++ b/data/game/th/the-settlers-iv-mission-cd.json @@ -0,0 +1,8 @@ +{ + "slug": "the-settlers-iv-mission-cd", + "name": "The Settlers IV Mission CD", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125156672" + ] +} diff --git a/data/game/th/the-settlers-rise-of-an-empire-empire-of-the-east.json b/data/game/th/the-settlers-rise-of-an-empire-empire-of-the-east.json new file mode 100644 index 000000000000..f5075734a8eb --- /dev/null +++ b/data/game/th/the-settlers-rise-of-an-empire-empire-of-the-east.json @@ -0,0 +1,14 @@ +{ + "slug": "the-settlers-rise-of-an-empire-empire-of-the-east", + "name": "The Settlers: Rise of An Empire – Empire of the East", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110817149" + ], + "genres": [ + "real-time strategy" + ], + "developers": [ + "Ubisoft Blue Byte" + ] +} diff --git a/data/game/th/the-settlers-rise-of-an-empire-the-eastern-realm.json b/data/game/th/the-settlers-rise-of-an-empire-the-eastern-realm.json new file mode 100644 index 000000000000..32b59af421fd --- /dev/null +++ b/data/game/th/the-settlers-rise-of-an-empire-the-eastern-realm.json @@ -0,0 +1,19 @@ +{ + "slug": "the-settlers-rise-of-an-empire-the-eastern-realm", + "name": "The Settlers: Rise of an Empire - The Eastern Realm", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q9358210" + ], + "release_date": "2008-03-27", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "real-time strategy", + "city-building game" + ], + "developers": [ + "Ubisoft Blue Byte" + ] +} diff --git a/data/game/th/the-simcity-box.json b/data/game/th/the-simcity-box.json new file mode 100644 index 000000000000..6b9aff902e0c --- /dev/null +++ b/data/game/th/the-simcity-box.json @@ -0,0 +1,20 @@ +{ + "slug": "the-simcity-box", + "name": "The SimCity Box", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7764326" + ], + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "city-building game" + ], + "developers": [ + "Maxis" + ], + "publishers": [ + "Electronic Arts" + ] +} diff --git a/data/game/th/the-simpsons-hit-run-2.json b/data/game/th/the-simpsons-hit-run-2.json new file mode 100644 index 000000000000..bcd1e1fcb465 --- /dev/null +++ b/data/game/th/the-simpsons-hit-run-2.json @@ -0,0 +1,8 @@ +{ + "slug": "the-simpsons-hit-run-2", + "name": "The Simpsons: Hit & Run 2", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q100758280" + ] +} diff --git a/data/game/th/the-sims-2-apartment-life.json b/data/game/th/the-sims-2-apartment-life.json new file mode 100644 index 000000000000..b81906e2e141 --- /dev/null +++ b/data/game/th/the-sims-2-apartment-life.json @@ -0,0 +1,22 @@ +{ + "slug": "the-sims-2-apartment-life", + "name": "The Sims 2: Apartment Life", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1763067" + ], + "release_date": "2008-08-25", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "life simulation game", + "social simulation game" + ], + "developers": [ + "Electronic Arts" + ], + "publishers": [ + "Electronic Arts" + ] +} diff --git a/data/game/th/the-sims-2-bon-voyage.json b/data/game/th/the-sims-2-bon-voyage.json new file mode 100644 index 000000000000..b74254a3d18e --- /dev/null +++ b/data/game/th/the-sims-2-bon-voyage.json @@ -0,0 +1,22 @@ +{ + "slug": "the-sims-2-bon-voyage", + "name": "The Sims 2: Bon Voyage", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q751338" + ], + "release_date": "2007-09-04", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ], + "developers": [ + "Electronic Arts" + ], + "publishers": [ + "Electronic Arts" + ] +} diff --git a/data/game/th/the-sims-2-celebration-stuff.json b/data/game/th/the-sims-2-celebration-stuff.json new file mode 100644 index 000000000000..d65f1bb551c3 --- /dev/null +++ b/data/game/th/the-sims-2-celebration-stuff.json @@ -0,0 +1,15 @@ +{ + "slug": "the-sims-2-celebration-stuff", + "name": "The Sims 2: Celebration! Stuff", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10381786" + ], + "release_date": "2007-04-03", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ] +} diff --git a/data/game/th/the-sims-2-christmas-party-pack.json b/data/game/th/the-sims-2-christmas-party-pack.json new file mode 100644 index 000000000000..61696a6c20b8 --- /dev/null +++ b/data/game/th/the-sims-2-christmas-party-pack.json @@ -0,0 +1,22 @@ +{ + "slug": "the-sims-2-christmas-party-pack", + "name": "The Sims 2: Christmas Party Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10381789" + ], + "release_date": "2005-11-17", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ], + "developers": [ + "Maxis" + ], + "publishers": [ + "Electronic Arts" + ] +} diff --git a/data/game/th/the-sims-2-family-fun-stuff.json b/data/game/th/the-sims-2-family-fun-stuff.json new file mode 100644 index 000000000000..57fae1ec7a6d --- /dev/null +++ b/data/game/th/the-sims-2-family-fun-stuff.json @@ -0,0 +1,22 @@ +{ + "slug": "the-sims-2-family-fun-stuff", + "name": "The Sims 2: Family Fun Stuff", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5407971" + ], + "release_date": "2006-04-14", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ], + "developers": [ + "Maxis" + ], + "publishers": [ + "Electronic Arts" + ] +} diff --git a/data/game/th/the-sims-2-freetime.json b/data/game/th/the-sims-2-freetime.json new file mode 100644 index 000000000000..a6fcec12eef2 --- /dev/null +++ b/data/game/th/the-sims-2-freetime.json @@ -0,0 +1,23 @@ +{ + "slug": "the-sims-2-freetime", + "name": "The Sims 2: FreeTime", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1622210" + ], + "release_date": "2008-02-22", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "strategy video game", + "life simulation game" + ], + "developers": [ + "Maxis", + "Electronic Arts" + ], + "publishers": [ + "Electronic Arts" + ] +} diff --git a/data/game/th/the-sims-2-glamour-life-stuff.json b/data/game/th/the-sims-2-glamour-life-stuff.json new file mode 100644 index 000000000000..67ce3647a1df --- /dev/null +++ b/data/game/th/the-sims-2-glamour-life-stuff.json @@ -0,0 +1,22 @@ +{ + "slug": "the-sims-2-glamour-life-stuff", + "name": "The Sims 2: Glamour Life Stuff", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3279823" + ], + "release_date": "2006-08-31", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ], + "developers": [ + "Maxis" + ], + "publishers": [ + "Electronic Arts" + ] +} diff --git a/data/game/th/the-sims-2-h-m-fashion-stuff.json b/data/game/th/the-sims-2-h-m-fashion-stuff.json new file mode 100644 index 000000000000..cfb5706d5585 --- /dev/null +++ b/data/game/th/the-sims-2-h-m-fashion-stuff.json @@ -0,0 +1,15 @@ +{ + "slug": "the-sims-2-h-m-fashion-stuff", + "name": "The Sims 2: H&M Fashion Stuff", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3279257" + ], + "release_date": "2007-06-05", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ] +} diff --git a/data/game/th/the-sims-2-happy-holiday-stuff.json b/data/game/th/the-sims-2-happy-holiday-stuff.json new file mode 100644 index 000000000000..195166747189 --- /dev/null +++ b/data/game/th/the-sims-2-happy-holiday-stuff.json @@ -0,0 +1,16 @@ +{ + "slug": "the-sims-2-happy-holiday-stuff", + "name": "The Sims 2: Happy Holiday Stuff", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10381790" + ], + "release_date": "2006-11-06", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ] +} diff --git a/data/game/th/the-sims-2-holiday-edition-2006.json b/data/game/th/the-sims-2-holiday-edition-2006.json new file mode 100644 index 000000000000..d79f26a82264 --- /dev/null +++ b/data/game/th/the-sims-2-holiday-edition-2006.json @@ -0,0 +1,12 @@ +{ + "slug": "the-sims-2-holiday-edition-2006", + "name": "The Sims 2: Holiday Edition (2006)", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q12339116" + ], + "release_date": "2005-11-15", + "genres": [ + "life simulation game" + ] +} diff --git a/data/game/th/the-sims-2-holiday-party-pack.json b/data/game/th/the-sims-2-holiday-party-pack.json new file mode 100644 index 000000000000..fcd1bab9c258 --- /dev/null +++ b/data/game/th/the-sims-2-holiday-party-pack.json @@ -0,0 +1,16 @@ +{ + "slug": "the-sims-2-holiday-party-pack", + "name": "The Sims 2: Holiday Party Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q12343057" + ], + "release_date": "2005-11-17", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ] +} diff --git a/data/game/th/the-sims-2-ikea-home-stuff.json b/data/game/th/the-sims-2-ikea-home-stuff.json new file mode 100644 index 000000000000..4bafa16a0bc8 --- /dev/null +++ b/data/game/th/the-sims-2-ikea-home-stuff.json @@ -0,0 +1,15 @@ +{ + "slug": "the-sims-2-ikea-home-stuff", + "name": "The Sims 2: IKEA Home Stuff", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18281073" + ], + "release_date": "2008-06-24", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ] +} diff --git a/data/game/th/the-sims-2-kitchen-bath-interior-design-stuff.json b/data/game/th/the-sims-2-kitchen-bath-interior-design-stuff.json new file mode 100644 index 000000000000..3abb98ca7c36 --- /dev/null +++ b/data/game/th/the-sims-2-kitchen-bath-interior-design-stuff.json @@ -0,0 +1,15 @@ +{ + "slug": "the-sims-2-kitchen-bath-interior-design-stuff", + "name": "The Sims 2: Kitchen & Bath Interior Design Stuff", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17187310" + ], + "release_date": "2007-11-05", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ] +} diff --git a/data/game/th/the-sims-2-mansion-garden-stuff.json b/data/game/th/the-sims-2-mansion-garden-stuff.json new file mode 100644 index 000000000000..0a2b02b40718 --- /dev/null +++ b/data/game/th/the-sims-2-mansion-garden-stuff.json @@ -0,0 +1,15 @@ +{ + "slug": "the-sims-2-mansion-garden-stuff", + "name": "The Sims 2: Mansion & Garden Stuff", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3281673" + ], + "release_date": "2008-11-17", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ] +} diff --git a/data/game/th/the-sims-2-nightlife.json b/data/game/th/the-sims-2-nightlife.json new file mode 100644 index 000000000000..394a4f4885a6 --- /dev/null +++ b/data/game/th/the-sims-2-nightlife.json @@ -0,0 +1,22 @@ +{ + "slug": "the-sims-2-nightlife", + "name": "The Sims 2: Nightlife", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q754709" + ], + "release_date": "2005-09-13", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ], + "developers": [ + "Maxis" + ], + "publishers": [ + "Electronic Arts" + ] +} diff --git a/data/game/th/the-sims-2-open-for-business.json b/data/game/th/the-sims-2-open-for-business.json new file mode 100644 index 000000000000..e9f29b000adb --- /dev/null +++ b/data/game/th/the-sims-2-open-for-business.json @@ -0,0 +1,23 @@ +{ + "slug": "the-sims-2-open-for-business", + "name": "The Sims 2: Open for Business", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q751422" + ], + "release_date": "2006-03-02", + "platforms": [ + "personal computer", + "macOS", + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ], + "developers": [ + "Maxis" + ], + "publishers": [ + "Electronic Arts" + ] +} diff --git a/data/game/th/the-sims-2-pets-q751329.json b/data/game/th/the-sims-2-pets-q751329.json new file mode 100644 index 000000000000..2c5dd7a9050b --- /dev/null +++ b/data/game/th/the-sims-2-pets-q751329.json @@ -0,0 +1,29 @@ +{ + "slug": "the-sims-2-pets-q751329", + "name": "The Sims 2: Pets", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q751329" + ], + "release_date": "2006-10-17", + "platforms": [ + "N-Gage", + "Game Boy Advance", + "Nintendo GameCube", + "PlayStation Portable", + "Nintendo DS", + "macOS", + "Wii", + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ], + "developers": [ + "Visceral Games", + "Maxis" + ], + "publishers": [ + "Electronic Arts" + ] +} diff --git a/data/game/th/the-sims-2-seasons.json b/data/game/th/the-sims-2-seasons.json new file mode 100644 index 000000000000..05f7e60a59dd --- /dev/null +++ b/data/game/th/the-sims-2-seasons.json @@ -0,0 +1,22 @@ +{ + "slug": "the-sims-2-seasons", + "name": "The Sims 2: Seasons", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q530290" + ], + "release_date": "2007-03-01", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ], + "developers": [ + "Maxis" + ], + "publishers": [ + "Electronic Arts" + ] +} diff --git a/data/game/th/the-sims-2-stuff-packs.json b/data/game/th/the-sims-2-stuff-packs.json new file mode 100644 index 000000000000..b26fec48f9de --- /dev/null +++ b/data/game/th/the-sims-2-stuff-packs.json @@ -0,0 +1,21 @@ +{ + "slug": "the-sims-2-stuff-packs", + "name": "The Sims 2 Stuff packs", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2290121" + ], + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ], + "developers": [ + "Maxis" + ], + "publishers": [ + "Electronic Arts" + ] +} diff --git a/data/game/th/the-sims-2-teen-style-stuff.json b/data/game/th/the-sims-2-teen-style-stuff.json new file mode 100644 index 000000000000..ef6df80872b2 --- /dev/null +++ b/data/game/th/the-sims-2-teen-style-stuff.json @@ -0,0 +1,15 @@ +{ + "slug": "the-sims-2-teen-style-stuff", + "name": "The Sims 2: Teen Style Stuff", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5980365" + ], + "release_date": "2007-06-05", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ] +} diff --git a/data/game/th/the-sims-2-ultimate-collection.json b/data/game/th/the-sims-2-ultimate-collection.json new file mode 100644 index 000000000000..bdabbe8729e5 --- /dev/null +++ b/data/game/th/the-sims-2-ultimate-collection.json @@ -0,0 +1,22 @@ +{ + "slug": "the-sims-2-ultimate-collection", + "name": "The Sims 2: Ultimate Collection", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18281075" + ], + "release_date": "2014-07-16", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ], + "developers": [ + "Maxis" + ], + "publishers": [ + "Electronic Arts" + ] +} diff --git a/data/game/th/the-sims-2-university.json b/data/game/th/the-sims-2-university.json new file mode 100644 index 000000000000..997e94557e0d --- /dev/null +++ b/data/game/th/the-sims-2-university.json @@ -0,0 +1,22 @@ +{ + "slug": "the-sims-2-university", + "name": "The Sims 2: University", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q727092" + ], + "release_date": "2005-03-11", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ], + "developers": [ + "Maxis" + ], + "publishers": [ + "Electronic Arts" + ] +} diff --git a/data/game/th/the-sims-3-70s-80s-90s-stuff.json b/data/game/th/the-sims-3-70s-80s-90s-stuff.json new file mode 100644 index 000000000000..390c0ab83dc5 --- /dev/null +++ b/data/game/th/the-sims-3-70s-80s-90s-stuff.json @@ -0,0 +1,15 @@ +{ + "slug": "the-sims-3-70s-80s-90s-stuff", + "name": "The Sims 3: 70s, 80s, & 90s Stuff", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q56331450" + ], + "release_date": "2013-01-22", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ] +} diff --git a/data/game/th/the-sims-3-ambitions.json b/data/game/th/the-sims-3-ambitions.json new file mode 100644 index 000000000000..751a338e86ad --- /dev/null +++ b/data/game/th/the-sims-3-ambitions.json @@ -0,0 +1,23 @@ +{ + "slug": "the-sims-3-ambitions", + "name": "The Sims 3: Ambitions", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q923973" + ], + "release_date": "2010-06-01", + "platforms": [ + "macOS", + "iOS", + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ], + "developers": [ + "Electronic Arts" + ], + "publishers": [ + "Electronic Arts" + ] +} diff --git a/data/game/th/the-sims-3-diesel-stuff.json b/data/game/th/the-sims-3-diesel-stuff.json new file mode 100644 index 000000000000..bd679d904eb6 --- /dev/null +++ b/data/game/th/the-sims-3-diesel-stuff.json @@ -0,0 +1,15 @@ +{ + "slug": "the-sims-3-diesel-stuff", + "name": "The Sims 3: Diesel Stuff", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10381794" + ], + "release_date": "2012-07-10", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ] +} diff --git a/data/game/th/the-sims-3-fast-lane-stuff.json b/data/game/th/the-sims-3-fast-lane-stuff.json new file mode 100644 index 000000000000..1bf73093d9d5 --- /dev/null +++ b/data/game/th/the-sims-3-fast-lane-stuff.json @@ -0,0 +1,19 @@ +{ + "slug": "the-sims-3-fast-lane-stuff", + "name": "The Sims 3: Fast Lane Stuff", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10381795" + ], + "release_date": "2010-09-07", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ], + "publishers": [ + "Electronic Arts" + ] +} diff --git a/data/game/th/the-sims-3-generations.json b/data/game/th/the-sims-3-generations.json new file mode 100644 index 000000000000..ffc19bb5d1e6 --- /dev/null +++ b/data/game/th/the-sims-3-generations.json @@ -0,0 +1,22 @@ +{ + "slug": "the-sims-3-generations", + "name": "The Sims 3: Generations", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1987738" + ], + "release_date": "2011-05-31", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ], + "developers": [ + "Electronic Arts" + ], + "publishers": [ + "Electronic Arts" + ] +} diff --git a/data/game/th/the-sims-3-high-end-loft-stuff.json b/data/game/th/the-sims-3-high-end-loft-stuff.json new file mode 100644 index 000000000000..b8a5ffeb583e --- /dev/null +++ b/data/game/th/the-sims-3-high-end-loft-stuff.json @@ -0,0 +1,22 @@ +{ + "slug": "the-sims-3-high-end-loft-stuff", + "name": "The Sims 3: High-End Loft Stuff", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5980378" + ], + "release_date": "2010-02-02", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ], + "developers": [ + "EA Montreal" + ], + "publishers": [ + "Electronic Arts" + ] +} diff --git a/data/game/th/the-sims-3-into-the-future.json b/data/game/th/the-sims-3-into-the-future.json new file mode 100644 index 000000000000..ecbf3b7e542a --- /dev/null +++ b/data/game/th/the-sims-3-into-the-future.json @@ -0,0 +1,23 @@ +{ + "slug": "the-sims-3-into-the-future", + "name": "The Sims 3: Into the Future", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q14539718" + ], + "release_date": "2013-10-22", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "life simulation game", + "science fiction video game" + ], + "developers": [ + "Maxis" + ], + "publishers": [ + "Electronic Arts" + ] +} diff --git a/data/game/th/the-sims-3-island-paradise.json b/data/game/th/the-sims-3-island-paradise.json new file mode 100644 index 000000000000..4e94513f3d0f --- /dev/null +++ b/data/game/th/the-sims-3-island-paradise.json @@ -0,0 +1,22 @@ +{ + "slug": "the-sims-3-island-paradise", + "name": "The Sims 3: Island Paradise", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3912863" + ], + "release_date": "2013-06-25", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ], + "developers": [ + "Maxis" + ], + "publishers": [ + "Electronic Arts" + ] +} diff --git a/data/game/th/the-sims-3-katy-perry-s-sweet-treats.json b/data/game/th/the-sims-3-katy-perry-s-sweet-treats.json new file mode 100644 index 000000000000..4859b5f782b8 --- /dev/null +++ b/data/game/th/the-sims-3-katy-perry-s-sweet-treats.json @@ -0,0 +1,15 @@ +{ + "slug": "the-sims-3-katy-perry-s-sweet-treats", + "name": "The Sims 3: Katy Perry's Sweet Treats", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10381796" + ], + "release_date": "2012-06-05", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ] +} diff --git a/data/game/th/the-sims-3-late-night.json b/data/game/th/the-sims-3-late-night.json new file mode 100644 index 000000000000..95ad81e6eda5 --- /dev/null +++ b/data/game/th/the-sims-3-late-night.json @@ -0,0 +1,22 @@ +{ + "slug": "the-sims-3-late-night", + "name": "The Sims 3: Late Night", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1754128" + ], + "release_date": "2010-10-26", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ], + "developers": [ + "Electronic Arts" + ], + "publishers": [ + "Electronic Arts" + ] +} diff --git a/data/game/th/the-sims-3-master-suite-stuff.json b/data/game/th/the-sims-3-master-suite-stuff.json new file mode 100644 index 000000000000..2ff35d6fefb7 --- /dev/null +++ b/data/game/th/the-sims-3-master-suite-stuff.json @@ -0,0 +1,15 @@ +{ + "slug": "the-sims-3-master-suite-stuff", + "name": "The Sims 3: Master Suite Stuff", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q56331205" + ], + "release_date": "2012-01-24", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ] +} diff --git a/data/game/th/the-sims-3-movie-stuff.json b/data/game/th/the-sims-3-movie-stuff.json new file mode 100644 index 000000000000..0ef7a29a9b7e --- /dev/null +++ b/data/game/th/the-sims-3-movie-stuff.json @@ -0,0 +1,15 @@ +{ + "slug": "the-sims-3-movie-stuff", + "name": "The Sims 3: Movie Stuff", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q56331455" + ], + "release_date": "2013-09-10", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ] +} diff --git a/data/game/th/the-sims-3-outdoor-living-stuff.json b/data/game/th/the-sims-3-outdoor-living-stuff.json new file mode 100644 index 000000000000..0e8a25c71c34 --- /dev/null +++ b/data/game/th/the-sims-3-outdoor-living-stuff.json @@ -0,0 +1,19 @@ +{ + "slug": "the-sims-3-outdoor-living-stuff", + "name": "The Sims 3: Outdoor Living Stuff", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10381797" + ], + "release_date": "2011-02-01", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ], + "publishers": [ + "Electronic Arts" + ] +} diff --git a/data/game/th/the-sims-3-pets-q2072073.json b/data/game/th/the-sims-3-pets-q2072073.json new file mode 100644 index 000000000000..c734a75c1018 --- /dev/null +++ b/data/game/th/the-sims-3-pets-q2072073.json @@ -0,0 +1,23 @@ +{ + "slug": "the-sims-3-pets-q2072073", + "name": "The Sims 3: Pets", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2072073" + ], + "release_date": "2011-10-21", + "platforms": [ + "macOS", + "PlayStation 3", + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ], + "developers": [ + "Electronic Arts" + ], + "publishers": [ + "Electronic Arts" + ] +} diff --git a/data/game/th/the-sims-3-seasons.json b/data/game/th/the-sims-3-seasons.json new file mode 100644 index 000000000000..53099a84d94b --- /dev/null +++ b/data/game/th/the-sims-3-seasons.json @@ -0,0 +1,23 @@ +{ + "slug": "the-sims-3-seasons", + "name": "The Sims 3: Seasons", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q159739" + ], + "release_date": "2012-11-13", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "life simulation game", + "simulation video game" + ], + "developers": [ + "Electronic Arts" + ], + "publishers": [ + "Electronic Arts" + ] +} diff --git a/data/game/th/the-sims-3-showtime.json b/data/game/th/the-sims-3-showtime.json new file mode 100644 index 000000000000..ce579d705947 --- /dev/null +++ b/data/game/th/the-sims-3-showtime.json @@ -0,0 +1,23 @@ +{ + "slug": "the-sims-3-showtime", + "name": "The Sims 3: Showtime", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1813229" + ], + "release_date": "2012-03-06", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "life simulation game", + "simulation video game" + ], + "developers": [ + "Electronic Arts" + ], + "publishers": [ + "Electronic Arts" + ] +} diff --git a/data/game/th/the-sims-3-stuff-packs.json b/data/game/th/the-sims-3-stuff-packs.json new file mode 100644 index 000000000000..f3e51a278a61 --- /dev/null +++ b/data/game/th/the-sims-3-stuff-packs.json @@ -0,0 +1,21 @@ +{ + "slug": "the-sims-3-stuff-packs", + "name": "The Sims 3 Stuff packs", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2478016" + ], + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ], + "developers": [ + "The Sims Studio" + ], + "publishers": [ + "Electronic Arts" + ] +} diff --git a/data/game/th/the-sims-3-supernatural.json b/data/game/th/the-sims-3-supernatural.json new file mode 100644 index 000000000000..3978b5ef7148 --- /dev/null +++ b/data/game/th/the-sims-3-supernatural.json @@ -0,0 +1,22 @@ +{ + "slug": "the-sims-3-supernatural", + "name": "The Sims 3: Supernatural", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2180005" + ], + "release_date": "2012-09-04", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ], + "developers": [ + "Electronic Arts" + ], + "publishers": [ + "Electronic Arts" + ] +} diff --git a/data/game/th/the-sims-3-town-life-stuff.json b/data/game/th/the-sims-3-town-life-stuff.json new file mode 100644 index 000000000000..9a1faac827c4 --- /dev/null +++ b/data/game/th/the-sims-3-town-life-stuff.json @@ -0,0 +1,19 @@ +{ + "slug": "the-sims-3-town-life-stuff", + "name": "The Sims 3: Town Life Stuff", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10381800" + ], + "release_date": "2011-07-26", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ], + "publishers": [ + "Electronic Arts" + ] +} diff --git a/data/game/th/the-sims-3-ultimate-bundle.json b/data/game/th/the-sims-3-ultimate-bundle.json new file mode 100644 index 000000000000..d5deb627ac22 --- /dev/null +++ b/data/game/th/the-sims-3-ultimate-bundle.json @@ -0,0 +1,8 @@ +{ + "slug": "the-sims-3-ultimate-bundle", + "name": "The Sims 3 Ultimate Bundle", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108028464" + ] +} diff --git a/data/game/th/the-sims-3-university-life.json b/data/game/th/the-sims-3-university-life.json new file mode 100644 index 000000000000..b642701923e0 --- /dev/null +++ b/data/game/th/the-sims-3-university-life.json @@ -0,0 +1,22 @@ +{ + "slug": "the-sims-3-university-life", + "name": "The Sims 3: University Life", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2805535" + ], + "release_date": "2013-03-05", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ], + "developers": [ + "Maxis" + ], + "publishers": [ + "Electronic Arts" + ] +} diff --git a/data/game/th/the-sims-3-world-adventures.json b/data/game/th/the-sims-3-world-adventures.json new file mode 100644 index 000000000000..ce4975de9aae --- /dev/null +++ b/data/game/th/the-sims-3-world-adventures.json @@ -0,0 +1,23 @@ +{ + "slug": "the-sims-3-world-adventures", + "name": "The Sims 3: World Adventures", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1451266" + ], + "release_date": "2009-11-18", + "platforms": [ + "iOS", + "macOS", + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ], + "developers": [ + "Electronic Arts" + ], + "publishers": [ + "Electronic Arts" + ] +} diff --git a/data/game/th/the-sims-4-adventure-awaits.json b/data/game/th/the-sims-4-adventure-awaits.json new file mode 100644 index 000000000000..77351f75a7a4 --- /dev/null +++ b/data/game/th/the-sims-4-adventure-awaits.json @@ -0,0 +1,24 @@ +{ + "slug": "the-sims-4-adventure-awaits", + "name": "The Sims 4: Adventure Awaits", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136484302" + ], + "release_date": "2025-10-02", + "platforms": [ + "PlayStation 5", + "PlayStation 4", + "macOS", + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ], + "developers": [ + "Maxis" + ], + "publishers": [ + "Electronic Arts" + ] +} diff --git a/data/game/th/the-sims-4-backyard-stuff.json b/data/game/th/the-sims-4-backyard-stuff.json new file mode 100644 index 000000000000..9ae59586fd27 --- /dev/null +++ b/data/game/th/the-sims-4-backyard-stuff.json @@ -0,0 +1,15 @@ +{ + "slug": "the-sims-4-backyard-stuff", + "name": "The Sims 4: Backyard Stuff", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q56332663" + ], + "release_date": "2016-07-19", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ] +} diff --git a/data/game/th/the-sims-4-bowling-night-stuff.json b/data/game/th/the-sims-4-bowling-night-stuff.json new file mode 100644 index 000000000000..ed0c6cc189e7 --- /dev/null +++ b/data/game/th/the-sims-4-bowling-night-stuff.json @@ -0,0 +1,15 @@ +{ + "slug": "the-sims-4-bowling-night-stuff", + "name": "The Sims 4: Bowling Night Stuff", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q56332680" + ], + "release_date": "2017-03-29", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ] +} diff --git a/data/game/th/the-sims-4-businesses-hobbies.json b/data/game/th/the-sims-4-businesses-hobbies.json new file mode 100644 index 000000000000..aaab52650632 --- /dev/null +++ b/data/game/th/the-sims-4-businesses-hobbies.json @@ -0,0 +1,23 @@ +{ + "slug": "the-sims-4-businesses-hobbies", + "name": "The Sims 4: Businesses & Hobbies", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q132183132" + ], + "release_date": "2025-03-06", + "platforms": [ + "PlayStation 4", + "macOS", + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ], + "developers": [ + "The Sims Studio" + ], + "publishers": [ + "Electronic Arts" + ] +} diff --git a/data/game/th/the-sims-4-bust-the-dust-kit.json b/data/game/th/the-sims-4-bust-the-dust-kit.json new file mode 100644 index 000000000000..ffba2ff6f6bf --- /dev/null +++ b/data/game/th/the-sims-4-bust-the-dust-kit.json @@ -0,0 +1,26 @@ +{ + "slug": "the-sims-4-bust-the-dust-kit", + "name": "The Sims 4: Bust the Dust Kit", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113773801" + ], + "release_date": "2021-03-02", + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 5", + "PlayStation 4", + "macOS", + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ], + "developers": [ + "The Sims Studio", + "Maxis" + ], + "publishers": [ + "Electronic Arts" + ] +} diff --git a/data/game/th/the-sims-4-cats-dogs.json b/data/game/th/the-sims-4-cats-dogs.json new file mode 100644 index 000000000000..2b3c0a8ecfd5 --- /dev/null +++ b/data/game/th/the-sims-4-cats-dogs.json @@ -0,0 +1,24 @@ +{ + "slug": "the-sims-4-cats-dogs", + "name": "The Sims 4: Cats & Dogs", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q42317354" + ], + "release_date": "2017-11-10", + "platforms": [ + "PlayStation 4", + "macOS", + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ], + "developers": [ + "The Sims Studio", + "Maxis" + ], + "publishers": [ + "Electronic Arts" + ] +} diff --git a/data/game/th/the-sims-4-city-living.json b/data/game/th/the-sims-4-city-living.json new file mode 100644 index 000000000000..77a154598ce1 --- /dev/null +++ b/data/game/th/the-sims-4-city-living.json @@ -0,0 +1,24 @@ +{ + "slug": "the-sims-4-city-living", + "name": "The Sims 4: City Living", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28859228" + ], + "release_date": "2016-11-01", + "platforms": [ + "PlayStation 4", + "macOS", + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ], + "developers": [ + "The Sims Studio", + "Maxis" + ], + "publishers": [ + "Electronic Arts" + ] +} diff --git a/data/game/th/the-sims-4-cool-kitchen-stuff.json b/data/game/th/the-sims-4-cool-kitchen-stuff.json new file mode 100644 index 000000000000..5774ea75be21 --- /dev/null +++ b/data/game/th/the-sims-4-cool-kitchen-stuff.json @@ -0,0 +1,15 @@ +{ + "slug": "the-sims-4-cool-kitchen-stuff", + "name": "The Sims 4: Cool Kitchen Stuff", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q56332600" + ], + "release_date": "2015-08-11", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ] +} diff --git a/data/game/th/the-sims-4-cottage-living.json b/data/game/th/the-sims-4-cottage-living.json new file mode 100644 index 000000000000..fc71c9ddcbca --- /dev/null +++ b/data/game/th/the-sims-4-cottage-living.json @@ -0,0 +1,24 @@ +{ + "slug": "the-sims-4-cottage-living", + "name": "The Sims 4: Cottage Living", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107192361" + ], + "release_date": "2021-07-22", + "platforms": [ + "PlayStation 4", + "macOS", + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ], + "developers": [ + "The Sims Studio", + "Maxis" + ], + "publishers": [ + "Electronic Arts" + ] +} diff --git a/data/game/th/the-sims-4-country-kitchen-kit.json b/data/game/th/the-sims-4-country-kitchen-kit.json new file mode 100644 index 000000000000..7f0549b17832 --- /dev/null +++ b/data/game/th/the-sims-4-country-kitchen-kit.json @@ -0,0 +1,26 @@ +{ + "slug": "the-sims-4-country-kitchen-kit", + "name": "The Sims 4: Country Kitchen Kit", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113784823" + ], + "release_date": "2021-03-02", + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 5", + "PlayStation 4", + "macOS", + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ], + "developers": [ + "The Sims Studio", + "Maxis" + ], + "publishers": [ + "Electronic Arts" + ] +} diff --git a/data/game/th/the-sims-4-crystal-creations-stuff.json b/data/game/th/the-sims-4-crystal-creations-stuff.json new file mode 100644 index 000000000000..da15d2474c46 --- /dev/null +++ b/data/game/th/the-sims-4-crystal-creations-stuff.json @@ -0,0 +1,15 @@ +{ + "slug": "the-sims-4-crystal-creations-stuff", + "name": "The Sims 4: Crystal Creations Stuff", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124711262" + ], + "release_date": "2024-02-29", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ] +} diff --git a/data/game/th/the-sims-4-dine-out.json b/data/game/th/the-sims-4-dine-out.json new file mode 100644 index 000000000000..2d4237fe764e --- /dev/null +++ b/data/game/th/the-sims-4-dine-out.json @@ -0,0 +1,24 @@ +{ + "slug": "the-sims-4-dine-out", + "name": "The Sims 4: Dine Out", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q24514702" + ], + "release_date": "2016-06-07", + "platforms": [ + "PlayStation 4", + "macOS", + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ], + "developers": [ + "The Sims Studio", + "Maxis" + ], + "publishers": [ + "Electronic Arts" + ] +} diff --git a/data/game/th/the-sims-4-discover-university.json b/data/game/th/the-sims-4-discover-university.json new file mode 100644 index 000000000000..457c3b0c5e72 --- /dev/null +++ b/data/game/th/the-sims-4-discover-university.json @@ -0,0 +1,24 @@ +{ + "slug": "the-sims-4-discover-university", + "name": "The Sims 4: Discover University", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q81611409" + ], + "release_date": "2019-11-15", + "platforms": [ + "PlayStation 4", + "macOS", + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ], + "developers": [ + "The Sims Studio", + "Maxis" + ], + "publishers": [ + "Electronic Arts" + ] +} diff --git a/data/game/th/the-sims-4-dream-home-decorator.json b/data/game/th/the-sims-4-dream-home-decorator.json new file mode 100644 index 000000000000..f69b061603a3 --- /dev/null +++ b/data/game/th/the-sims-4-dream-home-decorator.json @@ -0,0 +1,23 @@ +{ + "slug": "the-sims-4-dream-home-decorator", + "name": "The Sims 4: Dream Home Decorator", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106977777" + ], + "release_date": "2021-06-01", + "platforms": [ + "PlayStation 4", + "macOS", + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ], + "developers": [ + "The Sims Studio" + ], + "publishers": [ + "Electronic Arts" + ] +} diff --git a/data/game/th/the-sims-4-eco-lifestyle.json b/data/game/th/the-sims-4-eco-lifestyle.json new file mode 100644 index 000000000000..36a11a443ae8 --- /dev/null +++ b/data/game/th/the-sims-4-eco-lifestyle.json @@ -0,0 +1,24 @@ +{ + "slug": "the-sims-4-eco-lifestyle", + "name": "The Sims 4: Eco Lifestyle", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q96310157" + ], + "release_date": "2020-06-05", + "platforms": [ + "macOS", + "Microsoft Windows", + "PlayStation 4" + ], + "genres": [ + "life simulation game" + ], + "developers": [ + "The Sims Studio", + "Maxis" + ], + "publishers": [ + "Electronic Arts" + ] +} diff --git a/data/game/th/the-sims-4-enchanted-by-nature.json b/data/game/th/the-sims-4-enchanted-by-nature.json new file mode 100644 index 000000000000..b8852e9a38aa --- /dev/null +++ b/data/game/th/the-sims-4-enchanted-by-nature.json @@ -0,0 +1,21 @@ +{ + "slug": "the-sims-4-enchanted-by-nature", + "name": "The Sims 4: Enchanted by Nature", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134932792" + ], + "release_date": "2025-07-10", + "platforms": [ + "PlayStation 5", + "PlayStation 4", + "macOS", + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ], + "publishers": [ + "Electronic Arts" + ] +} diff --git a/data/game/th/the-sims-4-fitness-stuff.json b/data/game/th/the-sims-4-fitness-stuff.json new file mode 100644 index 000000000000..f2b00af0aa14 --- /dev/null +++ b/data/game/th/the-sims-4-fitness-stuff.json @@ -0,0 +1,15 @@ +{ + "slug": "the-sims-4-fitness-stuff", + "name": "The Sims 4: Fitness Stuff", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q56332683" + ], + "release_date": "2017-06-20", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ] +} diff --git a/data/game/th/the-sims-4-for-rent.json b/data/game/th/the-sims-4-for-rent.json new file mode 100644 index 000000000000..96602a16eef8 --- /dev/null +++ b/data/game/th/the-sims-4-for-rent.json @@ -0,0 +1,23 @@ +{ + "slug": "the-sims-4-for-rent", + "name": "The Sims 4: For Rent", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123308963" + ], + "release_date": "2023-12-07", + "platforms": [ + "PlayStation 4", + "macOS", + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ], + "developers": [ + "Maxis" + ], + "publishers": [ + "Electronic Arts" + ] +} diff --git a/data/game/th/the-sims-4-get-famous.json b/data/game/th/the-sims-4-get-famous.json new file mode 100644 index 000000000000..1dbc3ed4be85 --- /dev/null +++ b/data/game/th/the-sims-4-get-famous.json @@ -0,0 +1,24 @@ +{ + "slug": "the-sims-4-get-famous", + "name": "The Sims 4: Get Famous", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q57195853" + ], + "release_date": "2018-11-16", + "platforms": [ + "PlayStation 4", + "macOS", + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ], + "developers": [ + "The Sims Studio", + "Maxis" + ], + "publishers": [ + "Electronic Arts" + ] +} diff --git a/data/game/th/the-sims-4-get-to-work.json b/data/game/th/the-sims-4-get-to-work.json new file mode 100644 index 000000000000..b11ba9e27562 --- /dev/null +++ b/data/game/th/the-sims-4-get-to-work.json @@ -0,0 +1,22 @@ +{ + "slug": "the-sims-4-get-to-work", + "name": "The Sims 4: Get to Work", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q19316870" + ], + "release_date": "2015-03-31", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ], + "developers": [ + "Maxis" + ], + "publishers": [ + "Electronic Arts" + ] +} diff --git a/data/game/th/the-sims-4-get-together.json b/data/game/th/the-sims-4-get-together.json new file mode 100644 index 000000000000..fc449ed9b192 --- /dev/null +++ b/data/game/th/the-sims-4-get-together.json @@ -0,0 +1,23 @@ +{ + "slug": "the-sims-4-get-together", + "name": "The Sims 4: Get Together", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q20772593" + ], + "release_date": "2015-12-08", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ], + "developers": [ + "The Sims Studio", + "Maxis" + ], + "publishers": [ + "Electronic Arts" + ] +} diff --git a/data/game/th/the-sims-4-growing-together.json b/data/game/th/the-sims-4-growing-together.json new file mode 100644 index 000000000000..8d1e3ac4152f --- /dev/null +++ b/data/game/th/the-sims-4-growing-together.json @@ -0,0 +1,24 @@ +{ + "slug": "the-sims-4-growing-together", + "name": "The Sims 4: Growing Together", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116672191" + ], + "release_date": "2023-03-16", + "platforms": [ + "PlayStation 4", + "macOS", + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ], + "developers": [ + "The Sims Studio", + "Maxis" + ], + "publishers": [ + "Electronic Arts" + ] +} diff --git a/data/game/th/the-sims-4-high-school-years.json b/data/game/th/the-sims-4-high-school-years.json new file mode 100644 index 000000000000..a7ec717752e9 --- /dev/null +++ b/data/game/th/the-sims-4-high-school-years.json @@ -0,0 +1,15 @@ +{ + "slug": "the-sims-4-high-school-years", + "name": "The Sims 4: High School Years", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q55698371" + ], + "release_date": "2022-07-28", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ] +} diff --git a/data/game/th/the-sims-4-home-chef-hustle-stuff.json b/data/game/th/the-sims-4-home-chef-hustle-stuff.json new file mode 100644 index 000000000000..e6351a1b1116 --- /dev/null +++ b/data/game/th/the-sims-4-home-chef-hustle-stuff.json @@ -0,0 +1,15 @@ +{ + "slug": "the-sims-4-home-chef-hustle-stuff", + "name": "The Sims 4: Home Chef Hustle Stuff", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124718820" + ], + "release_date": "2023-09-28", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ] +} diff --git a/data/game/th/the-sims-4-horse-ranch.json b/data/game/th/the-sims-4-horse-ranch.json new file mode 100644 index 000000000000..fb15fafe3b97 --- /dev/null +++ b/data/game/th/the-sims-4-horse-ranch.json @@ -0,0 +1,23 @@ +{ + "slug": "the-sims-4-horse-ranch", + "name": "The Sims 4: Horse Ranch", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q119865172" + ], + "release_date": "2023-07-20", + "platforms": [ + "PlayStation 4", + "macOS", + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ], + "developers": [ + "Maxis" + ], + "publishers": [ + "Electronic Arts" + ] +} diff --git a/data/game/th/the-sims-4-island-living.json b/data/game/th/the-sims-4-island-living.json new file mode 100644 index 000000000000..037e9409465b --- /dev/null +++ b/data/game/th/the-sims-4-island-living.json @@ -0,0 +1,24 @@ +{ + "slug": "the-sims-4-island-living", + "name": "The Sims 4: Island Living", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q65163548" + ], + "release_date": "2019-06-21", + "platforms": [ + "PlayStation 4", + "macOS", + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ], + "developers": [ + "The Sims Studio", + "Maxis" + ], + "publishers": [ + "Electronic Arts" + ] +} diff --git a/data/game/th/the-sims-4-jungle-adventure.json b/data/game/th/the-sims-4-jungle-adventure.json new file mode 100644 index 000000000000..d16880e3adc7 --- /dev/null +++ b/data/game/th/the-sims-4-jungle-adventure.json @@ -0,0 +1,24 @@ +{ + "slug": "the-sims-4-jungle-adventure", + "name": "The Sims 4: Jungle Adventure", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q50295643" + ], + "release_date": "2018-02-27", + "platforms": [ + "PlayStation 4", + "Microsoft Windows", + "macOS" + ], + "genres": [ + "life simulation game" + ], + "developers": [ + "The Sims Studio", + "Maxis" + ], + "publishers": [ + "Electronic Arts" + ] +} diff --git a/data/game/th/the-sims-4-kids-room-stuff.json b/data/game/th/the-sims-4-kids-room-stuff.json new file mode 100644 index 000000000000..9d0ed3616b8d --- /dev/null +++ b/data/game/th/the-sims-4-kids-room-stuff.json @@ -0,0 +1,15 @@ +{ + "slug": "the-sims-4-kids-room-stuff", + "name": "The Sims 4: Kids Room Stuff", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q56332654" + ], + "release_date": "2016-06-28", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ] +} diff --git a/data/game/th/the-sims-4-laundry-day-stuff.json b/data/game/th/the-sims-4-laundry-day-stuff.json new file mode 100644 index 000000000000..5b8b459b10ca --- /dev/null +++ b/data/game/th/the-sims-4-laundry-day-stuff.json @@ -0,0 +1,15 @@ +{ + "slug": "the-sims-4-laundry-day-stuff", + "name": "The Sims 4: Laundry Day Stuff", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q56332705" + ], + "release_date": "2018-01-16", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ] +} diff --git a/data/game/th/the-sims-4-life-death.json b/data/game/th/the-sims-4-life-death.json new file mode 100644 index 000000000000..d364ca820893 --- /dev/null +++ b/data/game/th/the-sims-4-life-death.json @@ -0,0 +1,25 @@ +{ + "slug": "the-sims-4-life-death", + "name": "The Sims 4: Life & Death", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130438178" + ], + "release_date": "2024-10-31", + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 5", + "PlayStation 4", + "macOS", + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ], + "developers": [ + "Maxis" + ], + "publishers": [ + "Electronic Arts" + ] +} diff --git a/data/game/th/the-sims-4-luxury-party-stuff.json b/data/game/th/the-sims-4-luxury-party-stuff.json new file mode 100644 index 000000000000..e21028c4217d --- /dev/null +++ b/data/game/th/the-sims-4-luxury-party-stuff.json @@ -0,0 +1,12 @@ +{ + "slug": "the-sims-4-luxury-party-stuff", + "name": "The Sims 4: Luxury Party Stuff", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q56332555" + ], + "release_date": "2015-05-19", + "genres": [ + "life simulation game" + ] +} diff --git a/data/game/th/the-sims-4-moschino-stuff.json b/data/game/th/the-sims-4-moschino-stuff.json new file mode 100644 index 000000000000..5b0c7856a74e --- /dev/null +++ b/data/game/th/the-sims-4-moschino-stuff.json @@ -0,0 +1,15 @@ +{ + "slug": "the-sims-4-moschino-stuff", + "name": "The Sims 4: Moschino Stuff", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124718044" + ], + "release_date": "2019-08-13", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ] +} diff --git a/data/game/th/the-sims-4-movie-hangout-stuff.json b/data/game/th/the-sims-4-movie-hangout-stuff.json new file mode 100644 index 000000000000..62a060b1e9f6 --- /dev/null +++ b/data/game/th/the-sims-4-movie-hangout-stuff.json @@ -0,0 +1,15 @@ +{ + "slug": "the-sims-4-movie-hangout-stuff", + "name": "The Sims 4: Movie Hangout Stuff", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q56332634" + ], + "release_date": "2016-01-12", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ] +} diff --git a/data/game/th/the-sims-4-my-first-pet-stuff.json b/data/game/th/the-sims-4-my-first-pet-stuff.json new file mode 100644 index 000000000000..deb49a0d1ac7 --- /dev/null +++ b/data/game/th/the-sims-4-my-first-pet-stuff.json @@ -0,0 +1,15 @@ +{ + "slug": "the-sims-4-my-first-pet-stuff", + "name": "The Sims 4: My First Pet Stuff", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q56332710" + ], + "release_date": "2018-03-13", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ] +} diff --git a/data/game/th/the-sims-4-my-wedding-stories.json b/data/game/th/the-sims-4-my-wedding-stories.json new file mode 100644 index 000000000000..ffb01df573c6 --- /dev/null +++ b/data/game/th/the-sims-4-my-wedding-stories.json @@ -0,0 +1,24 @@ +{ + "slug": "the-sims-4-my-wedding-stories", + "name": "The Sims 4: My Wedding Stories", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110866914" + ], + "release_date": "2022-02-17", + "platforms": [ + "PlayStation 4", + "macOS", + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ], + "developers": [ + "The Sims Studio", + "Maxis" + ], + "publishers": [ + "Electronic Arts" + ] +} diff --git a/data/game/th/the-sims-4-nifty-knitting-stuff.json b/data/game/th/the-sims-4-nifty-knitting-stuff.json new file mode 100644 index 000000000000..658baaf6aeaf --- /dev/null +++ b/data/game/th/the-sims-4-nifty-knitting-stuff.json @@ -0,0 +1,15 @@ +{ + "slug": "the-sims-4-nifty-knitting-stuff", + "name": "The Sims 4: Nifty Knitting Stuff", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124718773" + ], + "release_date": "2020-07-28", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ] +} diff --git a/data/game/th/the-sims-4-outdoor-retreat.json b/data/game/th/the-sims-4-outdoor-retreat.json new file mode 100644 index 000000000000..3c265d69da9f --- /dev/null +++ b/data/game/th/the-sims-4-outdoor-retreat.json @@ -0,0 +1,22 @@ +{ + "slug": "the-sims-4-outdoor-retreat", + "name": "The Sims 4: Outdoor Retreat", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18808215" + ], + "release_date": "2015-01-13", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ], + "developers": [ + "Maxis" + ], + "publishers": [ + "Electronic Arts" + ] +} diff --git a/data/game/th/the-sims-4-paranormal-stuff.json b/data/game/th/the-sims-4-paranormal-stuff.json new file mode 100644 index 000000000000..e21fc2f0c921 --- /dev/null +++ b/data/game/th/the-sims-4-paranormal-stuff.json @@ -0,0 +1,15 @@ +{ + "slug": "the-sims-4-paranormal-stuff", + "name": "The Sims 4: Paranormal Stuff", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124718787" + ], + "release_date": "2021-01-26", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ] +} diff --git a/data/game/th/the-sims-4-parenthood.json b/data/game/th/the-sims-4-parenthood.json new file mode 100644 index 000000000000..0211b3430423 --- /dev/null +++ b/data/game/th/the-sims-4-parenthood.json @@ -0,0 +1,25 @@ +{ + "slug": "the-sims-4-parenthood", + "name": "The Sims 4: Parenthood", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q30641763" + ], + "release_date": "2017-05-30", + "platforms": [ + "PlayStation 4", + "macOS", + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ], + "developers": [ + "The Sims Studio", + "Maxis", + "Electronic Arts" + ], + "publishers": [ + "Electronic Arts" + ] +} diff --git a/data/game/th/the-sims-4-perfect-patio-stuff.json b/data/game/th/the-sims-4-perfect-patio-stuff.json new file mode 100644 index 000000000000..f820cf1d38f4 --- /dev/null +++ b/data/game/th/the-sims-4-perfect-patio-stuff.json @@ -0,0 +1,24 @@ +{ + "slug": "the-sims-4-perfect-patio-stuff", + "name": "The Sims 4: Perfect Patio Stuff", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q56332573" + ], + "release_date": "2015-06-16", + "platforms": [ + "PlayStation 4", + "macOS", + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ], + "developers": [ + "The Sims Studio", + "Maxis" + ], + "publishers": [ + "Electronic Arts" + ] +} diff --git a/data/game/th/the-sims-4-realm-of-magic.json b/data/game/th/the-sims-4-realm-of-magic.json new file mode 100644 index 000000000000..a7b04798113c --- /dev/null +++ b/data/game/th/the-sims-4-realm-of-magic.json @@ -0,0 +1,24 @@ +{ + "slug": "the-sims-4-realm-of-magic", + "name": "The Sims 4: Realm of Magic", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q81604750" + ], + "release_date": "2019-09-10", + "platforms": [ + "PlayStation 4", + "macOS", + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ], + "developers": [ + "The Sims Studio", + "Maxis" + ], + "publishers": [ + "Electronic Arts" + ] +} diff --git a/data/game/th/the-sims-4-romantic-garden-stuff.json b/data/game/th/the-sims-4-romantic-garden-stuff.json new file mode 100644 index 000000000000..01909c6f9950 --- /dev/null +++ b/data/game/th/the-sims-4-romantic-garden-stuff.json @@ -0,0 +1,15 @@ +{ + "slug": "the-sims-4-romantic-garden-stuff", + "name": "The Sims 4: Romantic Garden Stuff", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q56332647" + ], + "release_date": "2016-02-09", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ] +} diff --git a/data/game/th/the-sims-4-royalty-and-legacy.json b/data/game/th/the-sims-4-royalty-and-legacy.json new file mode 100644 index 000000000000..743cf413b3b2 --- /dev/null +++ b/data/game/th/the-sims-4-royalty-and-legacy.json @@ -0,0 +1,21 @@ +{ + "slug": "the-sims-4-royalty-and-legacy", + "name": "The Sims 4: Royalty and Legacy", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137824017" + ], + "release_date": "2026-02-12", + "platforms": [ + "PlayStation 5", + "PlayStation 4", + "macOS", + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ], + "developers": [ + "Maxis" + ] +} diff --git a/data/game/th/the-sims-4-seasons.json b/data/game/th/the-sims-4-seasons.json new file mode 100644 index 000000000000..0b26dd41f080 --- /dev/null +++ b/data/game/th/the-sims-4-seasons.json @@ -0,0 +1,24 @@ +{ + "slug": "the-sims-4-seasons", + "name": "The Sims 4: Seasons", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q54935284" + ], + "release_date": "2018-06-22", + "platforms": [ + "PlayStation 4", + "macOS", + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ], + "developers": [ + "The Sims Studio", + "Maxis" + ], + "publishers": [ + "Electronic Arts" + ] +} diff --git a/data/game/th/the-sims-4-snowy-escape.json b/data/game/th/the-sims-4-snowy-escape.json new file mode 100644 index 000000000000..002af5c4b811 --- /dev/null +++ b/data/game/th/the-sims-4-snowy-escape.json @@ -0,0 +1,24 @@ +{ + "slug": "the-sims-4-snowy-escape", + "name": "The Sims 4: Snowy Escape", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q100708490" + ], + "release_date": "2020-11-13", + "platforms": [ + "PlayStation 4", + "macOS", + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ], + "developers": [ + "The Sims Studio", + "Maxis" + ], + "publishers": [ + "Electronic Arts" + ] +} diff --git a/data/game/th/the-sims-4-spa-day.json b/data/game/th/the-sims-4-spa-day.json new file mode 100644 index 000000000000..843e63d2638b --- /dev/null +++ b/data/game/th/the-sims-4-spa-day.json @@ -0,0 +1,22 @@ +{ + "slug": "the-sims-4-spa-day", + "name": "The Sims 4: Spa Day", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q20772014" + ], + "release_date": "2015-07-14", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ], + "developers": [ + "Maxis" + ], + "publishers": [ + "Electronic Arts" + ] +} diff --git a/data/game/th/the-sims-4-spooky-stuff.json b/data/game/th/the-sims-4-spooky-stuff.json new file mode 100644 index 000000000000..95a41e2c7a12 --- /dev/null +++ b/data/game/th/the-sims-4-spooky-stuff.json @@ -0,0 +1,15 @@ +{ + "slug": "the-sims-4-spooky-stuff", + "name": "The Sims 4: Spooky Stuff", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q56332622" + ], + "release_date": "2015-09-29", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ] +} diff --git a/data/game/th/the-sims-4-star-wars-journey-to-batuu-bundle.json b/data/game/th/the-sims-4-star-wars-journey-to-batuu-bundle.json new file mode 100644 index 000000000000..a17a0d0ca900 --- /dev/null +++ b/data/game/th/the-sims-4-star-wars-journey-to-batuu-bundle.json @@ -0,0 +1,23 @@ +{ + "slug": "the-sims-4-star-wars-journey-to-batuu-bundle", + "name": "The Sims 4 + Star Wars: Journey to Batuu Bundle", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q104660602" + ], + "release_date": "2020-09-08", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "life simulation game", + "casual game" + ], + "developers": [ + "The Sims Studio", + "Maxis" + ], + "publishers": [ + "Electronic Arts" + ] +} diff --git a/data/game/th/the-sims-4-star-wars-journey-to-batuu.json b/data/game/th/the-sims-4-star-wars-journey-to-batuu.json new file mode 100644 index 000000000000..511b30fe32b2 --- /dev/null +++ b/data/game/th/the-sims-4-star-wars-journey-to-batuu.json @@ -0,0 +1,24 @@ +{ + "slug": "the-sims-4-star-wars-journey-to-batuu", + "name": "The Sims 4 Star Wars: Journey to Batuu", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q98937581" + ], + "release_date": "2020-09-08", + "platforms": [ + "PlayStation 4", + "macOS", + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ], + "developers": [ + "The Sims Studio", + "Maxis" + ], + "publishers": [ + "Electronic Arts" + ] +} diff --git a/data/game/th/the-sims-4-strangerville.json b/data/game/th/the-sims-4-strangerville.json new file mode 100644 index 000000000000..d9c6ded7eab3 --- /dev/null +++ b/data/game/th/the-sims-4-strangerville.json @@ -0,0 +1,24 @@ +{ + "slug": "the-sims-4-strangerville", + "name": "The Sims 4: StrangerVille", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q61811865" + ], + "release_date": "2019-02-26", + "platforms": [ + "PlayStation 4", + "macOS", + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ], + "developers": [ + "The Sims Studio", + "Maxis" + ], + "publishers": [ + "Electronic Arts" + ] +} diff --git a/data/game/th/the-sims-4-stuff-bundle-fitness-cool-kitchen-laundry-day-perfect-patio.json b/data/game/th/the-sims-4-stuff-bundle-fitness-cool-kitchen-laundry-day-perfect-patio.json new file mode 100644 index 000000000000..5c76250de60b --- /dev/null +++ b/data/game/th/the-sims-4-stuff-bundle-fitness-cool-kitchen-laundry-day-perfect-patio.json @@ -0,0 +1,23 @@ +{ + "slug": "the-sims-4-stuff-bundle-fitness-cool-kitchen-laundry-day-perfect-patio", + "name": "The Sims 4 Stuff Bundle - Fitness, Cool Kitchen, Laundry Day, Perfect Patio", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q104665607" + ], + "release_date": "2020-07-27", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "life simulation game", + "casual game" + ], + "developers": [ + "The Sims Studio", + "Maxis" + ], + "publishers": [ + "Electronic Arts" + ] +} diff --git a/data/game/th/the-sims-4-stuff-packs.json b/data/game/th/the-sims-4-stuff-packs.json new file mode 100644 index 000000000000..419df8a3c577 --- /dev/null +++ b/data/game/th/the-sims-4-stuff-packs.json @@ -0,0 +1,20 @@ +{ + "slug": "the-sims-4-stuff-packs", + "name": "The Sims 4 Stuff packs", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q20860344" + ], + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ], + "developers": [ + "Maxis" + ], + "publishers": [ + "Electronic Arts" + ] +} diff --git a/data/game/th/the-sims-4-throwback-fit-kit.json b/data/game/th/the-sims-4-throwback-fit-kit.json new file mode 100644 index 000000000000..158c8a844687 --- /dev/null +++ b/data/game/th/the-sims-4-throwback-fit-kit.json @@ -0,0 +1,26 @@ +{ + "slug": "the-sims-4-throwback-fit-kit", + "name": "The Sims 4: Throwback Fit Kit", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113785383" + ], + "release_date": "2021-03-02", + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 5", + "PlayStation 4", + "macOS", + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ], + "developers": [ + "The Sims Studio", + "Maxis" + ], + "publishers": [ + "Electronic Arts" + ] +} diff --git a/data/game/th/the-sims-4-tiny-living-stuff.json b/data/game/th/the-sims-4-tiny-living-stuff.json new file mode 100644 index 000000000000..33e3d697044f --- /dev/null +++ b/data/game/th/the-sims-4-tiny-living-stuff.json @@ -0,0 +1,15 @@ +{ + "slug": "the-sims-4-tiny-living-stuff", + "name": "The Sims 4: Tiny Living Stuff", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124718578" + ], + "release_date": "2020-01-21", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ] +} diff --git a/data/game/th/the-sims-4-toddler-stuff.json b/data/game/th/the-sims-4-toddler-stuff.json new file mode 100644 index 000000000000..b66aa5c9767a --- /dev/null +++ b/data/game/th/the-sims-4-toddler-stuff.json @@ -0,0 +1,15 @@ +{ + "slug": "the-sims-4-toddler-stuff", + "name": "The Sims 4: Toddler Stuff", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q56332691" + ], + "release_date": "2017-08-24", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ] +} diff --git a/data/game/th/the-sims-4-vampires.json b/data/game/th/the-sims-4-vampires.json new file mode 100644 index 000000000000..f86f236760a9 --- /dev/null +++ b/data/game/th/the-sims-4-vampires.json @@ -0,0 +1,24 @@ +{ + "slug": "the-sims-4-vampires", + "name": "The Sims 4: Vampires", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28532739" + ], + "release_date": "2017-01-24", + "platforms": [ + "PlayStation 4", + "macOS", + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ], + "developers": [ + "The Sims Studio", + "Maxis" + ], + "publishers": [ + "Electronic Arts" + ] +} diff --git a/data/game/th/the-sims-4-vintage-glamour-stuff.json b/data/game/th/the-sims-4-vintage-glamour-stuff.json new file mode 100644 index 000000000000..ccea8bcd4ca1 --- /dev/null +++ b/data/game/th/the-sims-4-vintage-glamour-stuff.json @@ -0,0 +1,15 @@ +{ + "slug": "the-sims-4-vintage-glamour-stuff", + "name": "The Sims 4: Vintage Glamour Stuff", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q56332670" + ], + "release_date": "2016-12-06", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ] +} diff --git a/data/game/th/the-sims-4-werewolves-q136511463.json b/data/game/th/the-sims-4-werewolves-q136511463.json new file mode 100644 index 000000000000..b3b61989cb62 --- /dev/null +++ b/data/game/th/the-sims-4-werewolves-q136511463.json @@ -0,0 +1,22 @@ +{ + "slug": "the-sims-4-werewolves-q136511463", + "name": "The Sims 4: Werewolves", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136511463" + ], + "release_date": "2022-06-16", + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 5", + "PlayStation 4", + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Maxis" + ], + "publishers": [ + "Electronic Arts" + ] +} diff --git a/data/game/th/the-sims-4-werewolves.json b/data/game/th/the-sims-4-werewolves.json new file mode 100644 index 000000000000..3c18033e56ea --- /dev/null +++ b/data/game/th/the-sims-4-werewolves.json @@ -0,0 +1,24 @@ +{ + "slug": "the-sims-4-werewolves", + "name": "The Sims 4: Werewolves", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113403454" + ], + "release_date": "2022-06-16", + "platforms": [ + "PlayStation 4", + "macOS", + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ], + "developers": [ + "The Sims Studio", + "Maxis" + ], + "publishers": [ + "Electronic Arts" + ] +} diff --git a/data/game/th/the-sims-5.json b/data/game/th/the-sims-5.json new file mode 100644 index 000000000000..10bc33d152c4 --- /dev/null +++ b/data/game/th/the-sims-5.json @@ -0,0 +1,21 @@ +{ + "slug": "the-sims-5", + "name": "The Sims 5", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q99609650" + ], + "platforms": [ + "iOS", + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ], + "developers": [ + "The Sims Studio" + ], + "publishers": [ + "Electronic Arts" + ] +} diff --git a/data/game/th/the-sims-hot-date.json b/data/game/th/the-sims-hot-date.json new file mode 100644 index 000000000000..9f0fcd7fb2dd --- /dev/null +++ b/data/game/th/the-sims-hot-date.json @@ -0,0 +1,22 @@ +{ + "slug": "the-sims-hot-date", + "name": "The Sims: Hot Date", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1991302" + ], + "release_date": "2001-11-14", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ], + "developers": [ + "Maxis" + ], + "publishers": [ + "Electronic Arts" + ] +} diff --git a/data/game/th/the-sims-house-party.json b/data/game/th/the-sims-house-party.json new file mode 100644 index 000000000000..3a9e797713aa --- /dev/null +++ b/data/game/th/the-sims-house-party.json @@ -0,0 +1,21 @@ +{ + "slug": "the-sims-house-party", + "name": "The Sims: House Party", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2082124" + ], + "release_date": "2001-03-28", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ], + "developers": [ + "Maxis" + ], + "publishers": [ + "Electronic Arts" + ] +} diff --git a/data/game/th/the-sims-livin-large.json b/data/game/th/the-sims-livin-large.json new file mode 100644 index 000000000000..8b0719819335 --- /dev/null +++ b/data/game/th/the-sims-livin-large.json @@ -0,0 +1,23 @@ +{ + "slug": "the-sims-livin-large", + "name": "The Sims: Livin' Large", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1764439" + ], + "release_date": "2000-08-27", + "platforms": [ + "Classic Mac OS", + "macOS", + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ], + "developers": [ + "Maxis" + ], + "publishers": [ + "Electronic Arts" + ] +} diff --git a/data/game/th/the-sims-makin-magic.json b/data/game/th/the-sims-makin-magic.json new file mode 100644 index 000000000000..11cd7a93770c --- /dev/null +++ b/data/game/th/the-sims-makin-magic.json @@ -0,0 +1,21 @@ +{ + "slug": "the-sims-makin-magic", + "name": "The Sims: Makin' Magic", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2017466" + ], + "release_date": "2003-10-28", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ], + "developers": [ + "Maxis" + ], + "publishers": [ + "Electronic Arts" + ] +} diff --git a/data/game/th/the-sims-medieval-pirates-and-nobles.json b/data/game/th/the-sims-medieval-pirates-and-nobles.json new file mode 100644 index 000000000000..027a07ba6b87 --- /dev/null +++ b/data/game/th/the-sims-medieval-pirates-and-nobles.json @@ -0,0 +1,23 @@ +{ + "slug": "the-sims-medieval-pirates-and-nobles", + "name": "The Sims Medieval: Pirates and Nobles", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2745327" + ], + "release_date": "2011-08-30", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "adventure video game", + "life simulation game" + ], + "developers": [ + "The Sims Studio" + ], + "publishers": [ + "Electronic Arts" + ] +} diff --git a/data/game/th/the-sims-olympus.json b/data/game/th/the-sims-olympus.json new file mode 100644 index 000000000000..ec1ae1c99369 --- /dev/null +++ b/data/game/th/the-sims-olympus.json @@ -0,0 +1,11 @@ +{ + "slug": "the-sims-olympus", + "name": "The Sims Olympus", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63243990" + ], + "platforms": [ + "Microsoft Windows" + ] +} diff --git a/data/game/th/the-sims-superstar.json b/data/game/th/the-sims-superstar.json new file mode 100644 index 000000000000..54b4633e00fd --- /dev/null +++ b/data/game/th/the-sims-superstar.json @@ -0,0 +1,22 @@ +{ + "slug": "the-sims-superstar", + "name": "The Sims: Superstar", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q768964" + ], + "release_date": "2003-05-15", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "life simulation game", + "simulation video game" + ], + "developers": [ + "Maxis" + ], + "publishers": [ + "Electronic Arts" + ] +} diff --git a/data/game/th/the-sims-vacation.json b/data/game/th/the-sims-vacation.json new file mode 100644 index 000000000000..930a82c95b44 --- /dev/null +++ b/data/game/th/the-sims-vacation.json @@ -0,0 +1,21 @@ +{ + "slug": "the-sims-vacation", + "name": "The Sims: Vacation", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2177599" + ], + "release_date": "2002-03-25", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ], + "developers": [ + "Maxis" + ], + "publishers": [ + "Electronic Arts" + ] +} diff --git a/data/game/th/the-sphere.json b/data/game/th/the-sphere.json new file mode 100644 index 000000000000..2cfc7e45a6f6 --- /dev/null +++ b/data/game/th/the-sphere.json @@ -0,0 +1,9 @@ +{ + "slug": "the-sphere", + "name": "The Sphere", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q57973874" + ], + "release_date": "2013-11-12" +} diff --git a/data/game/th/the-stanley-parable-q116683903.json b/data/game/th/the-stanley-parable-q116683903.json new file mode 100644 index 000000000000..e89fc7d06f54 --- /dev/null +++ b/data/game/th/the-stanley-parable-q116683903.json @@ -0,0 +1,12 @@ +{ + "slug": "the-stanley-parable-q116683903", + "name": "The Stanley Parable", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116683903" + ], + "release_date": "2011-07-31", + "platforms": [ + "Microsoft Windows" + ] +} diff --git a/data/game/th/the-star-wars-trilogy.json b/data/game/th/the-star-wars-trilogy.json new file mode 100644 index 000000000000..5e7ca669c506 --- /dev/null +++ b/data/game/th/the-star-wars-trilogy.json @@ -0,0 +1,28 @@ +{ + "slug": "the-star-wars-trilogy", + "name": "The Star Wars Trilogy", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q29577951" + ], + "release_date": "1989-01-01", + "platforms": [ + "Atari ST", + "Amstrad CPC", + "Commodore Amiga", + "Commodore 64", + "ZX Spectrum" + ], + "genres": [ + "racing video game", + "shoot 'em up", + "shooter game" + ], + "developers": [ + "Atari, Inc.", + "Vektor Grafix" + ], + "publishers": [ + "Domark Software" + ] +} diff --git a/data/game/th/the-surge-a-walk-in-the-park.json b/data/game/th/the-surge-a-walk-in-the-park.json new file mode 100644 index 000000000000..d2afaa43c0a0 --- /dev/null +++ b/data/game/th/the-surge-a-walk-in-the-park.json @@ -0,0 +1,8 @@ +{ + "slug": "the-surge-a-walk-in-the-park", + "name": "The Surge: A Walk in the Park", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140461504" + ] +} diff --git a/data/game/th/the-talos-principle-road-to-gehenna.json b/data/game/th/the-talos-principle-road-to-gehenna.json new file mode 100644 index 000000000000..66c10ea51620 --- /dev/null +++ b/data/game/th/the-talos-principle-road-to-gehenna.json @@ -0,0 +1,19 @@ +{ + "slug": "the-talos-principle-road-to-gehenna", + "name": "The Talos Principle: Road To Gehenna", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110252934" + ], + "release_date": "2015-07-23", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Croteam" + ], + "publishers": [ + "Devolver Digital" + ] +} diff --git a/data/game/th/the-teal-mask.json b/data/game/th/the-teal-mask.json new file mode 100644 index 000000000000..f961c2534a1f --- /dev/null +++ b/data/game/th/the-teal-mask.json @@ -0,0 +1,12 @@ +{ + "slug": "the-teal-mask", + "name": "The Teal Mask", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130331588" + ], + "release_date": "2023-09-13", + "platforms": [ + "Nintendo Switch Lite" + ] +} diff --git a/data/game/th/the-telltale-batman-shadows-edition.json b/data/game/th/the-telltale-batman-shadows-edition.json new file mode 100644 index 000000000000..73175460bb21 --- /dev/null +++ b/data/game/th/the-telltale-batman-shadows-edition.json @@ -0,0 +1,22 @@ +{ + "slug": "the-telltale-batman-shadows-edition", + "name": "The Telltale Batman: Shadows Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106548072" + ], + "platforms": [ + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "graphic adventure game", + "episodic video game" + ], + "developers": [ + "Telltale Games" + ], + "publishers": [ + "Telltale Games" + ] +} diff --git a/data/game/th/the-telltale-games-collection.json b/data/game/th/the-telltale-games-collection.json new file mode 100644 index 000000000000..c18606cda680 --- /dev/null +++ b/data/game/th/the-telltale-games-collection.json @@ -0,0 +1,21 @@ +{ + "slug": "the-telltale-games-collection", + "name": "The Telltale Games Collection", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q92204099" + ], + "release_date": "2014-12-21", + "platforms": [ + "PlayStation 4" + ], + "genres": [ + "episodic video game" + ], + "developers": [ + "Telltale Games" + ], + "publishers": [ + "Telltale Games" + ] +} diff --git a/data/game/th/the-terminator-2029-operation-scour.json b/data/game/th/the-terminator-2029-operation-scour.json new file mode 100644 index 000000000000..0701c88a16c5 --- /dev/null +++ b/data/game/th/the-terminator-2029-operation-scour.json @@ -0,0 +1,11 @@ +{ + "slug": "the-terminator-2029-operation-scour", + "name": "The Terminator 2029: Operation Scour", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124718899" + ], + "platforms": [ + "DOS" + ] +} diff --git a/data/game/th/the-toll.json b/data/game/th/the-toll.json new file mode 100644 index 000000000000..cbf2a0b63267 --- /dev/null +++ b/data/game/th/the-toll.json @@ -0,0 +1,8 @@ +{ + "slug": "the-toll", + "name": "The Toll", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121093623" + ] +} diff --git a/data/game/th/the-tower-of-tigerqiuqiu-4-way-dodge-the-ball.json b/data/game/th/the-tower-of-tigerqiuqiu-4-way-dodge-the-ball.json new file mode 100644 index 000000000000..fa797e6dee20 --- /dev/null +++ b/data/game/th/the-tower-of-tigerqiuqiu-4-way-dodge-the-ball.json @@ -0,0 +1,18 @@ +{ + "slug": "the-tower-of-tigerqiuqiu-4-way-dodge-the-ball", + "name": "The Tower Of TigerQiuQiu 4-way Dodge the ball", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202293" + ], + "release_date": "2020-11-10", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/th/the-tower-of-tigerqiuqiu-armored-fighter-arena.json b/data/game/th/the-tower-of-tigerqiuqiu-armored-fighter-arena.json new file mode 100644 index 000000000000..09d1f4c34937 --- /dev/null +++ b/data/game/th/the-tower-of-tigerqiuqiu-armored-fighter-arena.json @@ -0,0 +1,18 @@ +{ + "slug": "the-tower-of-tigerqiuqiu-armored-fighter-arena", + "name": "The Tower Of TigerQiuQiu Armored Fighter Arena", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202295" + ], + "release_date": "2020-10-04", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/th/the-tower-of-tigerqiuqiu-axe-sword-bow.json b/data/game/th/the-tower-of-tigerqiuqiu-axe-sword-bow.json new file mode 100644 index 000000000000..8075beaac9da --- /dev/null +++ b/data/game/th/the-tower-of-tigerqiuqiu-axe-sword-bow.json @@ -0,0 +1,18 @@ +{ + "slug": "the-tower-of-tigerqiuqiu-axe-sword-bow", + "name": "The Tower Of TigerQiuQiu Axe Sword Bow", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202297" + ], + "release_date": "2020-12-08", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/th/the-tower-of-tigerqiuqiu-ball-war.json b/data/game/th/the-tower-of-tigerqiuqiu-ball-war.json new file mode 100644 index 000000000000..776225ad9a3b --- /dev/null +++ b/data/game/th/the-tower-of-tigerqiuqiu-ball-war.json @@ -0,0 +1,18 @@ +{ + "slug": "the-tower-of-tigerqiuqiu-ball-war", + "name": "The Tower Of TigerQiuQiu Ball War", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202299" + ], + "release_date": "2020-10-20", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/th/the-tower-of-tigerqiuqiu-battleship-defense.json b/data/game/th/the-tower-of-tigerqiuqiu-battleship-defense.json new file mode 100644 index 000000000000..c2077327c63c --- /dev/null +++ b/data/game/th/the-tower-of-tigerqiuqiu-battleship-defense.json @@ -0,0 +1,18 @@ +{ + "slug": "the-tower-of-tigerqiuqiu-battleship-defense", + "name": "The Tower Of TigerQiuQiu Battleship Defense", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202302" + ], + "release_date": "2020-11-12", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/th/the-tower-of-tigerqiuqiu-birds-cave.json b/data/game/th/the-tower-of-tigerqiuqiu-birds-cave.json new file mode 100644 index 000000000000..1ac018a1a43d --- /dev/null +++ b/data/game/th/the-tower-of-tigerqiuqiu-birds-cave.json @@ -0,0 +1,18 @@ +{ + "slug": "the-tower-of-tigerqiuqiu-birds-cave", + "name": "The Tower Of TigerQiuQiu Birds Cave", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202303" + ], + "release_date": "2020-10-20", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/th/the-tower-of-tigerqiuqiu-bomber-level-up.json b/data/game/th/the-tower-of-tigerqiuqiu-bomber-level-up.json new file mode 100644 index 000000000000..8ff9bd3eede7 --- /dev/null +++ b/data/game/th/the-tower-of-tigerqiuqiu-bomber-level-up.json @@ -0,0 +1,18 @@ +{ + "slug": "the-tower-of-tigerqiuqiu-bomber-level-up", + "name": "The Tower Of TigerQiuQiu Bomber Level Up", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202304" + ], + "release_date": "2020-11-17", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/th/the-tower-of-tigerqiuqiu-bomber-the-falling-stone.json b/data/game/th/the-tower-of-tigerqiuqiu-bomber-the-falling-stone.json new file mode 100644 index 000000000000..77fe54ab5e66 --- /dev/null +++ b/data/game/th/the-tower-of-tigerqiuqiu-bomber-the-falling-stone.json @@ -0,0 +1,18 @@ +{ + "slug": "the-tower-of-tigerqiuqiu-bomber-the-falling-stone", + "name": "The Tower of TigerQiuQiu BOMBER The Falling Stone", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202305" + ], + "release_date": "2020-11-21", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/th/the-tower-of-tigerqiuqiu-bomber-the-rolling-stone.json b/data/game/th/the-tower-of-tigerqiuqiu-bomber-the-rolling-stone.json new file mode 100644 index 000000000000..5ce9577e3440 --- /dev/null +++ b/data/game/th/the-tower-of-tigerqiuqiu-bomber-the-rolling-stone.json @@ -0,0 +1,18 @@ +{ + "slug": "the-tower-of-tigerqiuqiu-bomber-the-rolling-stone", + "name": "The Tower Of TigerQiuQiu Bomber The Rolling Stone", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202307" + ], + "release_date": "2020-11-21", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/th/the-tower-of-tigerqiuqiu-bomber-the-ruby-magic.json b/data/game/th/the-tower-of-tigerqiuqiu-bomber-the-ruby-magic.json new file mode 100644 index 000000000000..7d1dff39c765 --- /dev/null +++ b/data/game/th/the-tower-of-tigerqiuqiu-bomber-the-ruby-magic.json @@ -0,0 +1,18 @@ +{ + "slug": "the-tower-of-tigerqiuqiu-bomber-the-ruby-magic", + "name": "The Tower of TigerQiuQiu Bomber The Ruby Magic", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202309" + ], + "release_date": "2020-11-21", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/th/the-tower-of-tigerqiuqiu-bomber-the-ruby-sword.json b/data/game/th/the-tower-of-tigerqiuqiu-bomber-the-ruby-sword.json new file mode 100644 index 000000000000..3e47496e6b7f --- /dev/null +++ b/data/game/th/the-tower-of-tigerqiuqiu-bomber-the-ruby-sword.json @@ -0,0 +1,18 @@ +{ + "slug": "the-tower-of-tigerqiuqiu-bomber-the-ruby-sword", + "name": "The Tower Of TigerQiuQiu Bomber The Ruby Sword", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202310" + ], + "release_date": "2020-11-23", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/th/the-tower-of-tigerqiuqiu-bomber-tiger.json b/data/game/th/the-tower-of-tigerqiuqiu-bomber-tiger.json new file mode 100644 index 000000000000..3492a2248582 --- /dev/null +++ b/data/game/th/the-tower-of-tigerqiuqiu-bomber-tiger.json @@ -0,0 +1,18 @@ +{ + "slug": "the-tower-of-tigerqiuqiu-bomber-tiger", + "name": "The Tower Of TigerQiuQiu Bomber Tiger", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202311" + ], + "release_date": "2020-09-01", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/th/the-tower-of-tigerqiuqiu-bomber-treasure.json b/data/game/th/the-tower-of-tigerqiuqiu-bomber-treasure.json new file mode 100644 index 000000000000..bc962f04b929 --- /dev/null +++ b/data/game/th/the-tower-of-tigerqiuqiu-bomber-treasure.json @@ -0,0 +1,18 @@ +{ + "slug": "the-tower-of-tigerqiuqiu-bomber-treasure", + "name": "The Tower Of TigerQiuQiu Bomber Treasure", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202313" + ], + "release_date": "2020-11-18", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/th/the-tower-of-tigerqiuqiu-brick-breaker.json b/data/game/th/the-tower-of-tigerqiuqiu-brick-breaker.json new file mode 100644 index 000000000000..7925e288cc10 --- /dev/null +++ b/data/game/th/the-tower-of-tigerqiuqiu-brick-breaker.json @@ -0,0 +1,18 @@ +{ + "slug": "the-tower-of-tigerqiuqiu-brick-breaker", + "name": "The Tower Of TigerQiuQiu Brick Breaker", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202314" + ], + "release_date": "2020-12-15", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/th/the-tower-of-tigerqiuqiu-bubble-gun.json b/data/game/th/the-tower-of-tigerqiuqiu-bubble-gun.json new file mode 100644 index 000000000000..d834eb342527 --- /dev/null +++ b/data/game/th/the-tower-of-tigerqiuqiu-bubble-gun.json @@ -0,0 +1,18 @@ +{ + "slug": "the-tower-of-tigerqiuqiu-bubble-gun", + "name": "The Tower Of TigerQiuQiu Bubble Gun", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202316" + ], + "release_date": "2020-10-30", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/th/the-tower-of-tigerqiuqiu-deepwater-bomb.json b/data/game/th/the-tower-of-tigerqiuqiu-deepwater-bomb.json new file mode 100644 index 000000000000..529fb790c2f2 --- /dev/null +++ b/data/game/th/the-tower-of-tigerqiuqiu-deepwater-bomb.json @@ -0,0 +1,18 @@ +{ + "slug": "the-tower-of-tigerqiuqiu-deepwater-bomb", + "name": "The Tower Of TigerQiuQiu Deepwater Bomb", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202318" + ], + "release_date": "2020-10-19", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/th/the-tower-of-tigerqiuqiu-dodge-the-ball.json b/data/game/th/the-tower-of-tigerqiuqiu-dodge-the-ball.json new file mode 100644 index 000000000000..c374466dba85 --- /dev/null +++ b/data/game/th/the-tower-of-tigerqiuqiu-dodge-the-ball.json @@ -0,0 +1,18 @@ +{ + "slug": "the-tower-of-tigerqiuqiu-dodge-the-ball", + "name": "The Tower Of TigerQiuQiu Dodge the ball", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202319" + ], + "release_date": "2020-11-09", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/th/the-tower-of-tigerqiuqiu-down-to-hole.json b/data/game/th/the-tower-of-tigerqiuqiu-down-to-hole.json new file mode 100644 index 000000000000..a13703a72948 --- /dev/null +++ b/data/game/th/the-tower-of-tigerqiuqiu-down-to-hole.json @@ -0,0 +1,18 @@ +{ + "slug": "the-tower-of-tigerqiuqiu-down-to-hole", + "name": "The Tower Of TigerQiuQiu Down To Hole", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202320" + ], + "release_date": "2020-10-23", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/th/the-tower-of-tigerqiuqiu-drop-balls.json b/data/game/th/the-tower-of-tigerqiuqiu-drop-balls.json new file mode 100644 index 000000000000..b0a8c3a29572 --- /dev/null +++ b/data/game/th/the-tower-of-tigerqiuqiu-drop-balls.json @@ -0,0 +1,18 @@ +{ + "slug": "the-tower-of-tigerqiuqiu-drop-balls", + "name": "The Tower Of TigerQiuQiu Drop Balls", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202323" + ], + "release_date": "2020-11-12", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/th/the-tower-of-tigerqiuqiu-duck-war.json b/data/game/th/the-tower-of-tigerqiuqiu-duck-war.json new file mode 100644 index 000000000000..afc7fdd7ea57 --- /dev/null +++ b/data/game/th/the-tower-of-tigerqiuqiu-duck-war.json @@ -0,0 +1,18 @@ +{ + "slug": "the-tower-of-tigerqiuqiu-duck-war", + "name": "The Tower Of TigerQiuQiu Duck War", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202324" + ], + "release_date": "2020-10-16", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/th/the-tower-of-tigerqiuqiu-elevators-war.json b/data/game/th/the-tower-of-tigerqiuqiu-elevators-war.json new file mode 100644 index 000000000000..1a9ba85cbade --- /dev/null +++ b/data/game/th/the-tower-of-tigerqiuqiu-elevators-war.json @@ -0,0 +1,18 @@ +{ + "slug": "the-tower-of-tigerqiuqiu-elevators-war", + "name": "The Tower Of TigerQiuQiu Elevators War", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202325" + ], + "release_date": "2020-10-31", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/th/the-tower-of-tigerqiuqiu-falling-stone.json b/data/game/th/the-tower-of-tigerqiuqiu-falling-stone.json new file mode 100644 index 000000000000..c73c19d8ab2a --- /dev/null +++ b/data/game/th/the-tower-of-tigerqiuqiu-falling-stone.json @@ -0,0 +1,18 @@ +{ + "slug": "the-tower-of-tigerqiuqiu-falling-stone", + "name": "The Tower Of TigerQiuQiu Falling Stone", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202326" + ], + "release_date": "2020-11-02", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/th/the-tower-of-tigerqiuqiu-girl-breaker-alice.json b/data/game/th/the-tower-of-tigerqiuqiu-girl-breaker-alice.json new file mode 100644 index 000000000000..47e7ef96d37d --- /dev/null +++ b/data/game/th/the-tower-of-tigerqiuqiu-girl-breaker-alice.json @@ -0,0 +1,18 @@ +{ + "slug": "the-tower-of-tigerqiuqiu-girl-breaker-alice", + "name": "The Tower Of TigerQiuQiu Girl Breaker Alice", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202327" + ], + "release_date": "2020-12-22", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/th/the-tower-of-tigerqiuqiu-girl-breaker-anna.json b/data/game/th/the-tower-of-tigerqiuqiu-girl-breaker-anna.json new file mode 100644 index 000000000000..2adbaa67b959 --- /dev/null +++ b/data/game/th/the-tower-of-tigerqiuqiu-girl-breaker-anna.json @@ -0,0 +1,18 @@ +{ + "slug": "the-tower-of-tigerqiuqiu-girl-breaker-anna", + "name": "The Tower Of TigerQiuQiu Girl Breaker Anna", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202329" + ], + "release_date": "2020-12-22", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/th/the-tower-of-tigerqiuqiu-girl-breaker-ava.json b/data/game/th/the-tower-of-tigerqiuqiu-girl-breaker-ava.json new file mode 100644 index 000000000000..61d8cf66f7b3 --- /dev/null +++ b/data/game/th/the-tower-of-tigerqiuqiu-girl-breaker-ava.json @@ -0,0 +1,18 @@ +{ + "slug": "the-tower-of-tigerqiuqiu-girl-breaker-ava", + "name": "The Tower Of TigerQiuQiu Girl Breaker Ava", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202332" + ], + "release_date": "2020-12-22", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/th/the-tower-of-tigerqiuqiu-girl-breaker-chloe.json b/data/game/th/the-tower-of-tigerqiuqiu-girl-breaker-chloe.json new file mode 100644 index 000000000000..943ae8303fa8 --- /dev/null +++ b/data/game/th/the-tower-of-tigerqiuqiu-girl-breaker-chloe.json @@ -0,0 +1,18 @@ +{ + "slug": "the-tower-of-tigerqiuqiu-girl-breaker-chloe", + "name": "The Tower Of TigerQiuQiu Girl Breaker Chloe", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202335" + ], + "release_date": "2020-12-22", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/th/the-tower-of-tigerqiuqiu-girl-breaker-elizabeth.json b/data/game/th/the-tower-of-tigerqiuqiu-girl-breaker-elizabeth.json new file mode 100644 index 000000000000..099fb06b89e0 --- /dev/null +++ b/data/game/th/the-tower-of-tigerqiuqiu-girl-breaker-elizabeth.json @@ -0,0 +1,18 @@ +{ + "slug": "the-tower-of-tigerqiuqiu-girl-breaker-elizabeth", + "name": "The Tower Of TigerQiuQiu Girl Breaker Elizabeth", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202336" + ], + "release_date": "2020-12-22", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/th/the-tower-of-tigerqiuqiu-girl-breaker-emily.json b/data/game/th/the-tower-of-tigerqiuqiu-girl-breaker-emily.json new file mode 100644 index 000000000000..b03ed8733580 --- /dev/null +++ b/data/game/th/the-tower-of-tigerqiuqiu-girl-breaker-emily.json @@ -0,0 +1,18 @@ +{ + "slug": "the-tower-of-tigerqiuqiu-girl-breaker-emily", + "name": "The Tower Of TigerQiuQiu Girl Breaker Emily", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202338" + ], + "release_date": "2020-12-22", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/th/the-tower-of-tigerqiuqiu-girl-breaker-emma.json b/data/game/th/the-tower-of-tigerqiuqiu-girl-breaker-emma.json new file mode 100644 index 000000000000..1a5271714714 --- /dev/null +++ b/data/game/th/the-tower-of-tigerqiuqiu-girl-breaker-emma.json @@ -0,0 +1,18 @@ +{ + "slug": "the-tower-of-tigerqiuqiu-girl-breaker-emma", + "name": "The Tower Of TigerQiuQiu Girl Breaker Emma", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202340" + ], + "release_date": "2020-12-22", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/th/the-tower-of-tigerqiuqiu-girl-breaker-fang.json b/data/game/th/the-tower-of-tigerqiuqiu-girl-breaker-fang.json new file mode 100644 index 000000000000..c371365a8f93 --- /dev/null +++ b/data/game/th/the-tower-of-tigerqiuqiu-girl-breaker-fang.json @@ -0,0 +1,18 @@ +{ + "slug": "the-tower-of-tigerqiuqiu-girl-breaker-fang", + "name": "The Tower Of TigerQiuQiu Girl Breaker Fang", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202341" + ], + "release_date": "2020-12-22", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/th/the-tower-of-tigerqiuqiu-girl-breaker-grace.json b/data/game/th/the-tower-of-tigerqiuqiu-girl-breaker-grace.json new file mode 100644 index 000000000000..5fc4d2e2cbc7 --- /dev/null +++ b/data/game/th/the-tower-of-tigerqiuqiu-girl-breaker-grace.json @@ -0,0 +1,18 @@ +{ + "slug": "the-tower-of-tigerqiuqiu-girl-breaker-grace", + "name": "The Tower Of TigerQiuQiu Girl Breaker Grace", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202342" + ], + "release_date": "2020-12-30", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/th/the-tower-of-tigerqiuqiu-girl-breaker-hannah.json b/data/game/th/the-tower-of-tigerqiuqiu-girl-breaker-hannah.json new file mode 100644 index 000000000000..0554d0901211 --- /dev/null +++ b/data/game/th/the-tower-of-tigerqiuqiu-girl-breaker-hannah.json @@ -0,0 +1,18 @@ +{ + "slug": "the-tower-of-tigerqiuqiu-girl-breaker-hannah", + "name": "The Tower Of TigerQiuQiu Girl Breaker Hannah", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202344" + ], + "release_date": "2020-12-22", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/th/the-tower-of-tigerqiuqiu-girl-breaker-isabella.json b/data/game/th/the-tower-of-tigerqiuqiu-girl-breaker-isabella.json new file mode 100644 index 000000000000..1eaafe29f808 --- /dev/null +++ b/data/game/th/the-tower-of-tigerqiuqiu-girl-breaker-isabella.json @@ -0,0 +1,18 @@ +{ + "slug": "the-tower-of-tigerqiuqiu-girl-breaker-isabella", + "name": "The Tower Of TigerQiuQiu Girl Breaker Isabella", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202346" + ], + "release_date": "2020-12-30", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/th/the-tower-of-tigerqiuqiu-girl-breaker-lily.json b/data/game/th/the-tower-of-tigerqiuqiu-girl-breaker-lily.json new file mode 100644 index 000000000000..f73f8ed8f5eb --- /dev/null +++ b/data/game/th/the-tower-of-tigerqiuqiu-girl-breaker-lily.json @@ -0,0 +1,18 @@ +{ + "slug": "the-tower-of-tigerqiuqiu-girl-breaker-lily", + "name": "The Tower Of TigerQiuQiu Girl Breaker Lily", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202347" + ], + "release_date": "2020-12-22", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/th/the-tower-of-tigerqiuqiu-girl-breaker-lucy.json b/data/game/th/the-tower-of-tigerqiuqiu-girl-breaker-lucy.json new file mode 100644 index 000000000000..e3a5298a9065 --- /dev/null +++ b/data/game/th/the-tower-of-tigerqiuqiu-girl-breaker-lucy.json @@ -0,0 +1,18 @@ +{ + "slug": "the-tower-of-tigerqiuqiu-girl-breaker-lucy", + "name": "The Tower Of TigerQiuQiu Girl Breaker Lucy", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202349" + ], + "release_date": "2020-12-22", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/th/the-tower-of-tigerqiuqiu-girl-breaker-madison.json b/data/game/th/the-tower-of-tigerqiuqiu-girl-breaker-madison.json new file mode 100644 index 000000000000..7ff88d8be1ba --- /dev/null +++ b/data/game/th/the-tower-of-tigerqiuqiu-girl-breaker-madison.json @@ -0,0 +1,18 @@ +{ + "slug": "the-tower-of-tigerqiuqiu-girl-breaker-madison", + "name": "The Tower Of TigerQiuQiu Girl Breaker Madison", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202351" + ], + "release_date": "2020-12-22", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/th/the-tower-of-tigerqiuqiu-girl-breaker-mairy.json b/data/game/th/the-tower-of-tigerqiuqiu-girl-breaker-mairy.json new file mode 100644 index 000000000000..35f7944de0e4 --- /dev/null +++ b/data/game/th/the-tower-of-tigerqiuqiu-girl-breaker-mairy.json @@ -0,0 +1,18 @@ +{ + "slug": "the-tower-of-tigerqiuqiu-girl-breaker-mairy", + "name": "The Tower Of TigerQiuQiu Girl Breaker Mairy", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202352" + ], + "release_date": "2020-12-22", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/th/the-tower-of-tigerqiuqiu-girl-breaker-nana.json b/data/game/th/the-tower-of-tigerqiuqiu-girl-breaker-nana.json new file mode 100644 index 000000000000..f340c03448f9 --- /dev/null +++ b/data/game/th/the-tower-of-tigerqiuqiu-girl-breaker-nana.json @@ -0,0 +1,18 @@ +{ + "slug": "the-tower-of-tigerqiuqiu-girl-breaker-nana", + "name": "The Tower Of TigerQiuQiu Girl Breaker NaNa", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202354" + ], + "release_date": "2020-12-22", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/th/the-tower-of-tigerqiuqiu-girl-breaker-olivia.json b/data/game/th/the-tower-of-tigerqiuqiu-girl-breaker-olivia.json new file mode 100644 index 000000000000..e70ae8198852 --- /dev/null +++ b/data/game/th/the-tower-of-tigerqiuqiu-girl-breaker-olivia.json @@ -0,0 +1,18 @@ +{ + "slug": "the-tower-of-tigerqiuqiu-girl-breaker-olivia", + "name": "The Tower Of TigerQiuQiu Girl Breaker Olivia", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202355" + ], + "release_date": "2020-12-22", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/th/the-tower-of-tigerqiuqiu-girl-breaker-sophia.json b/data/game/th/the-tower-of-tigerqiuqiu-girl-breaker-sophia.json new file mode 100644 index 000000000000..24e3775ab4ee --- /dev/null +++ b/data/game/th/the-tower-of-tigerqiuqiu-girl-breaker-sophia.json @@ -0,0 +1,18 @@ +{ + "slug": "the-tower-of-tigerqiuqiu-girl-breaker-sophia", + "name": "The Tower Of TigerQiuQiu Girl Breaker Sophia", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202357" + ], + "release_date": "2020-12-22", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/th/the-tower-of-tigerqiuqiu-guardian.json b/data/game/th/the-tower-of-tigerqiuqiu-guardian.json new file mode 100644 index 000000000000..f09c0981e120 --- /dev/null +++ b/data/game/th/the-tower-of-tigerqiuqiu-guardian.json @@ -0,0 +1,18 @@ +{ + "slug": "the-tower-of-tigerqiuqiu-guardian", + "name": "The Tower Of TigerQiuQiu Guardian", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202358" + ], + "release_date": "2020-10-13", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/th/the-tower-of-tigerqiuqiu-hit-balls.json b/data/game/th/the-tower-of-tigerqiuqiu-hit-balls.json new file mode 100644 index 000000000000..cd084b3829bd --- /dev/null +++ b/data/game/th/the-tower-of-tigerqiuqiu-hit-balls.json @@ -0,0 +1,18 @@ +{ + "slug": "the-tower-of-tigerqiuqiu-hit-balls", + "name": "The Tower Of TigerQiuQiu Hit Balls", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202360" + ], + "release_date": "2020-11-10", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/th/the-tower-of-tigerqiuqiu-image-breaker.json b/data/game/th/the-tower-of-tigerqiuqiu-image-breaker.json new file mode 100644 index 000000000000..37a9166e8272 --- /dev/null +++ b/data/game/th/the-tower-of-tigerqiuqiu-image-breaker.json @@ -0,0 +1,18 @@ +{ + "slug": "the-tower-of-tigerqiuqiu-image-breaker", + "name": "The Tower Of TigerQiuQiu Image Breaker", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202361" + ], + "release_date": "2020-12-15", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/th/the-tower-of-tigerqiuqiu-insect-invade-2.json b/data/game/th/the-tower-of-tigerqiuqiu-insect-invade-2.json new file mode 100644 index 000000000000..ba82ec873a53 --- /dev/null +++ b/data/game/th/the-tower-of-tigerqiuqiu-insect-invade-2.json @@ -0,0 +1,18 @@ +{ + "slug": "the-tower-of-tigerqiuqiu-insect-invade-2", + "name": "The Tower Of TigerQiuQiu Insect Invade 2", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202365" + ], + "release_date": "2020-11-02", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/th/the-tower-of-tigerqiuqiu-insect-invade.json b/data/game/th/the-tower-of-tigerqiuqiu-insect-invade.json new file mode 100644 index 000000000000..9fb5e8e0a712 --- /dev/null +++ b/data/game/th/the-tower-of-tigerqiuqiu-insect-invade.json @@ -0,0 +1,18 @@ +{ + "slug": "the-tower-of-tigerqiuqiu-insect-invade", + "name": "The Tower Of TigerQiuQiu Insect Invade", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202362" + ], + "release_date": "2020-11-02", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/th/the-tower-of-tigerqiuqiu-into-the-blue.json b/data/game/th/the-tower-of-tigerqiuqiu-into-the-blue.json new file mode 100644 index 000000000000..8f7424218726 --- /dev/null +++ b/data/game/th/the-tower-of-tigerqiuqiu-into-the-blue.json @@ -0,0 +1,18 @@ +{ + "slug": "the-tower-of-tigerqiuqiu-into-the-blue", + "name": "The Tower Of TigerQiuQiu Into The Blue", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202366" + ], + "release_date": "2020-10-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/th/the-tower-of-tigerqiuqiu-kamov-kv-51.json b/data/game/th/the-tower-of-tigerqiuqiu-kamov-kv-51.json new file mode 100644 index 000000000000..ba484e384376 --- /dev/null +++ b/data/game/th/the-tower-of-tigerqiuqiu-kamov-kv-51.json @@ -0,0 +1,18 @@ +{ + "slug": "the-tower-of-tigerqiuqiu-kamov-kv-51", + "name": "The Tower Of TigerQiuQiu Kamov Kv-51", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202367" + ], + "release_date": "2020-09-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/th/the-tower-of-tigerqiuqiu-knife-darts.json b/data/game/th/the-tower-of-tigerqiuqiu-knife-darts.json new file mode 100644 index 000000000000..9ad2a0ed8715 --- /dev/null +++ b/data/game/th/the-tower-of-tigerqiuqiu-knife-darts.json @@ -0,0 +1,18 @@ +{ + "slug": "the-tower-of-tigerqiuqiu-knife-darts", + "name": "The Tower Of TigerQiuQiu Knife Darts", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202368" + ], + "release_date": "2020-12-08", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/th/the-tower-of-tigerqiuqiu-ladder.json b/data/game/th/the-tower-of-tigerqiuqiu-ladder.json new file mode 100644 index 000000000000..3f8943ed2650 --- /dev/null +++ b/data/game/th/the-tower-of-tigerqiuqiu-ladder.json @@ -0,0 +1,18 @@ +{ + "slug": "the-tower-of-tigerqiuqiu-ladder", + "name": "The Tower Of TigerQiuQiu Ladder", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202369" + ], + "release_date": "2020-12-08", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/th/the-tower-of-tigerqiuqiu-match-3.json b/data/game/th/the-tower-of-tigerqiuqiu-match-3.json new file mode 100644 index 000000000000..817396cf30b8 --- /dev/null +++ b/data/game/th/the-tower-of-tigerqiuqiu-match-3.json @@ -0,0 +1,18 @@ +{ + "slug": "the-tower-of-tigerqiuqiu-match-3", + "name": "The Tower Of TigerQiuQiu Match 3", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202370" + ], + "release_date": "2020-12-08", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/th/the-tower-of-tigerqiuqiu-moth-snake.json b/data/game/th/the-tower-of-tigerqiuqiu-moth-snake.json new file mode 100644 index 000000000000..34ffb2840689 --- /dev/null +++ b/data/game/th/the-tower-of-tigerqiuqiu-moth-snake.json @@ -0,0 +1,18 @@ +{ + "slug": "the-tower-of-tigerqiuqiu-moth-snake", + "name": "The Tower Of TigerQiuQiu Moth Snake", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202374" + ], + "release_date": "2020-11-02", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/th/the-tower-of-tigerqiuqiu-ninja-alpha.json b/data/game/th/the-tower-of-tigerqiuqiu-ninja-alpha.json new file mode 100644 index 000000000000..6c1de7aaa59d --- /dev/null +++ b/data/game/th/the-tower-of-tigerqiuqiu-ninja-alpha.json @@ -0,0 +1,18 @@ +{ + "slug": "the-tower-of-tigerqiuqiu-ninja-alpha", + "name": "The Tower Of TigerQiuQiu Ninja Alpha", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202376" + ], + "release_date": "2020-11-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/th/the-tower-of-tigerqiuqiu-ninja-beta.json b/data/game/th/the-tower-of-tigerqiuqiu-ninja-beta.json new file mode 100644 index 000000000000..6cd685e8321a --- /dev/null +++ b/data/game/th/the-tower-of-tigerqiuqiu-ninja-beta.json @@ -0,0 +1,18 @@ +{ + "slug": "the-tower-of-tigerqiuqiu-ninja-beta", + "name": "The Tower Of TigerQiuQiu Ninja Beta", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202377" + ], + "release_date": "2020-11-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/th/the-tower-of-tigerqiuqiu-ninja-delta.json b/data/game/th/the-tower-of-tigerqiuqiu-ninja-delta.json new file mode 100644 index 000000000000..f7098240c1ff --- /dev/null +++ b/data/game/th/the-tower-of-tigerqiuqiu-ninja-delta.json @@ -0,0 +1,18 @@ +{ + "slug": "the-tower-of-tigerqiuqiu-ninja-delta", + "name": "The Tower Of TigerQiuQiu Ninja Delta", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202379" + ], + "release_date": "2020-11-26", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/th/the-tower-of-tigerqiuqiu-ninja-epsilon.json b/data/game/th/the-tower-of-tigerqiuqiu-ninja-epsilon.json new file mode 100644 index 000000000000..1e8dbdb849f6 --- /dev/null +++ b/data/game/th/the-tower-of-tigerqiuqiu-ninja-epsilon.json @@ -0,0 +1,18 @@ +{ + "slug": "the-tower-of-tigerqiuqiu-ninja-epsilon", + "name": "The Tower Of TigerQiuQiu Ninja Epsilon", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202380" + ], + "release_date": "2020-11-26", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/th/the-tower-of-tigerqiuqiu-ninja-eta.json b/data/game/th/the-tower-of-tigerqiuqiu-ninja-eta.json new file mode 100644 index 000000000000..29d88e7cd33a --- /dev/null +++ b/data/game/th/the-tower-of-tigerqiuqiu-ninja-eta.json @@ -0,0 +1,18 @@ +{ + "slug": "the-tower-of-tigerqiuqiu-ninja-eta", + "name": "The Tower Of TigerQiuQiu Ninja Eta", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202381" + ], + "release_date": "2020-11-27", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/th/the-tower-of-tigerqiuqiu-ninja-gamma.json b/data/game/th/the-tower-of-tigerqiuqiu-ninja-gamma.json new file mode 100644 index 000000000000..9926e0428987 --- /dev/null +++ b/data/game/th/the-tower-of-tigerqiuqiu-ninja-gamma.json @@ -0,0 +1,18 @@ +{ + "slug": "the-tower-of-tigerqiuqiu-ninja-gamma", + "name": "The Tower Of TigerQiuQiu Ninja Gamma", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202382" + ], + "release_date": "2020-11-25", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/th/the-tower-of-tigerqiuqiu-ninja-one.json b/data/game/th/the-tower-of-tigerqiuqiu-ninja-one.json new file mode 100644 index 000000000000..b1ea01810360 --- /dev/null +++ b/data/game/th/the-tower-of-tigerqiuqiu-ninja-one.json @@ -0,0 +1,18 @@ +{ + "slug": "the-tower-of-tigerqiuqiu-ninja-one", + "name": "The Tower Of TigerQiuQiu Ninja One", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202383" + ], + "release_date": "2020-12-01", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/th/the-tower-of-tigerqiuqiu-ninja-plus.json b/data/game/th/the-tower-of-tigerqiuqiu-ninja-plus.json new file mode 100644 index 000000000000..1a13529774ce --- /dev/null +++ b/data/game/th/the-tower-of-tigerqiuqiu-ninja-plus.json @@ -0,0 +1,18 @@ +{ + "slug": "the-tower-of-tigerqiuqiu-ninja-plus", + "name": "The Tower Of TigerQiuQiu Ninja Plus", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202385" + ], + "release_date": "2020-12-02", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/th/the-tower-of-tigerqiuqiu-ninja-s.json b/data/game/th/the-tower-of-tigerqiuqiu-ninja-s.json new file mode 100644 index 000000000000..8cad6f2968cf --- /dev/null +++ b/data/game/th/the-tower-of-tigerqiuqiu-ninja-s.json @@ -0,0 +1,18 @@ +{ + "slug": "the-tower-of-tigerqiuqiu-ninja-s", + "name": "The Tower Of TigerQiuQiu Ninja S", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202386" + ], + "release_date": "2020-12-04", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/th/the-tower-of-tigerqiuqiu-ninja-the-wind.json b/data/game/th/the-tower-of-tigerqiuqiu-ninja-the-wind.json new file mode 100644 index 000000000000..08fb244e3427 --- /dev/null +++ b/data/game/th/the-tower-of-tigerqiuqiu-ninja-the-wind.json @@ -0,0 +1,18 @@ +{ + "slug": "the-tower-of-tigerqiuqiu-ninja-the-wind", + "name": "The Tower Of TigerQiuQiu Ninja The Wind", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202387" + ], + "release_date": "2020-12-12", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/th/the-tower-of-tigerqiuqiu-ninja-thet.json b/data/game/th/the-tower-of-tigerqiuqiu-ninja-thet.json new file mode 100644 index 000000000000..2055a53e0542 --- /dev/null +++ b/data/game/th/the-tower-of-tigerqiuqiu-ninja-thet.json @@ -0,0 +1,18 @@ +{ + "slug": "the-tower-of-tigerqiuqiu-ninja-thet", + "name": "The Tower Of TigerQiuQiu Ninja Thet", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202388" + ], + "release_date": "2020-12-01", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/th/the-tower-of-tigerqiuqiu-ninja-tiger-qiuqiu.json b/data/game/th/the-tower-of-tigerqiuqiu-ninja-tiger-qiuqiu.json new file mode 100644 index 000000000000..f0450fc6ee74 --- /dev/null +++ b/data/game/th/the-tower-of-tigerqiuqiu-ninja-tiger-qiuqiu.json @@ -0,0 +1,18 @@ +{ + "slug": "the-tower-of-tigerqiuqiu-ninja-tiger-qiuqiu", + "name": "The Tower Of TigerQiuQiu Ninja Tiger:QiuQiu", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202391" + ], + "release_date": "2020-09-01", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/th/the-tower-of-tigerqiuqiu-ninja-w.json b/data/game/th/the-tower-of-tigerqiuqiu-ninja-w.json new file mode 100644 index 000000000000..0da4d24c3526 --- /dev/null +++ b/data/game/th/the-tower-of-tigerqiuqiu-ninja-w.json @@ -0,0 +1,18 @@ +{ + "slug": "the-tower-of-tigerqiuqiu-ninja-w", + "name": "The Tower Of TigerQiuQiu Ninja W", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202392" + ], + "release_date": "2020-11-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/th/the-tower-of-tigerqiuqiu-ninja-zeta.json b/data/game/th/the-tower-of-tigerqiuqiu-ninja-zeta.json new file mode 100644 index 000000000000..cf89689cd952 --- /dev/null +++ b/data/game/th/the-tower-of-tigerqiuqiu-ninja-zeta.json @@ -0,0 +1,18 @@ +{ + "slug": "the-tower-of-tigerqiuqiu-ninja-zeta", + "name": "The Tower Of TigerQiuQiu Ninja Zeta", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202393" + ], + "release_date": "2020-11-26", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/th/the-tower-of-tigerqiuqiu-nyaa-invaders-1.json b/data/game/th/the-tower-of-tigerqiuqiu-nyaa-invaders-1.json new file mode 100644 index 000000000000..d5aaaf327f9e --- /dev/null +++ b/data/game/th/the-tower-of-tigerqiuqiu-nyaa-invaders-1.json @@ -0,0 +1,18 @@ +{ + "slug": "the-tower-of-tigerqiuqiu-nyaa-invaders-1", + "name": "The Tower Of TigerQiuQiu Nyaa Invaders 1", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202394" + ], + "release_date": "2020-09-15", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/th/the-tower-of-tigerqiuqiu-nyaa-invaders-2.json b/data/game/th/the-tower-of-tigerqiuqiu-nyaa-invaders-2.json new file mode 100644 index 000000000000..ffe1a496893f --- /dev/null +++ b/data/game/th/the-tower-of-tigerqiuqiu-nyaa-invaders-2.json @@ -0,0 +1,18 @@ +{ + "slug": "the-tower-of-tigerqiuqiu-nyaa-invaders-2", + "name": "The Tower Of TigerQiuQiu Nyaa Invaders 2", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202395" + ], + "release_date": "2020-09-15", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/th/the-tower-of-tigerqiuqiu-nyaa-invaders-3.json b/data/game/th/the-tower-of-tigerqiuqiu-nyaa-invaders-3.json new file mode 100644 index 000000000000..1b69c6b692e6 --- /dev/null +++ b/data/game/th/the-tower-of-tigerqiuqiu-nyaa-invaders-3.json @@ -0,0 +1,18 @@ +{ + "slug": "the-tower-of-tigerqiuqiu-nyaa-invaders-3", + "name": "The Tower Of TigerQiuQiu Nyaa Invaders 3", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202396" + ], + "release_date": "2020-09-15", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/th/the-tower-of-tigerqiuqiu-nyaa-invaders-4.json b/data/game/th/the-tower-of-tigerqiuqiu-nyaa-invaders-4.json new file mode 100644 index 000000000000..bc8fba3499a8 --- /dev/null +++ b/data/game/th/the-tower-of-tigerqiuqiu-nyaa-invaders-4.json @@ -0,0 +1,18 @@ +{ + "slug": "the-tower-of-tigerqiuqiu-nyaa-invaders-4", + "name": "The Tower Of TigerQiuQiu Nyaa Invaders 4", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202397" + ], + "release_date": "2020-09-15", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/th/the-tower-of-tigerqiuqiu-pinball-killer.json b/data/game/th/the-tower-of-tigerqiuqiu-pinball-killer.json new file mode 100644 index 000000000000..5f5f1078b5c3 --- /dev/null +++ b/data/game/th/the-tower-of-tigerqiuqiu-pinball-killer.json @@ -0,0 +1,18 @@ +{ + "slug": "the-tower-of-tigerqiuqiu-pinball-killer", + "name": "The Tower of TigerqiuQiu Pinball killer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202398" + ], + "release_date": "2020-11-13", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/th/the-tower-of-tigerqiuqiu-police-cat.json b/data/game/th/the-tower-of-tigerqiuqiu-police-cat.json new file mode 100644 index 000000000000..ee2b60c81eb0 --- /dev/null +++ b/data/game/th/the-tower-of-tigerqiuqiu-police-cat.json @@ -0,0 +1,18 @@ +{ + "slug": "the-tower-of-tigerqiuqiu-police-cat", + "name": "The Tower Of TigerQiuQiu Police Cat", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202399" + ], + "release_date": "2020-10-26", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/th/the-tower-of-tigerqiuqiu-raid-on-sea.json b/data/game/th/the-tower-of-tigerqiuqiu-raid-on-sea.json new file mode 100644 index 000000000000..f573b75a9d7a --- /dev/null +++ b/data/game/th/the-tower-of-tigerqiuqiu-raid-on-sea.json @@ -0,0 +1,18 @@ +{ + "slug": "the-tower-of-tigerqiuqiu-raid-on-sea", + "name": "The Tower Of TigerQiuQiu Raid On Sea", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202403" + ], + "release_date": "2020-09-17", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/th/the-tower-of-tigerqiuqiu-road-race.json b/data/game/th/the-tower-of-tigerqiuqiu-road-race.json new file mode 100644 index 000000000000..d33233f32290 --- /dev/null +++ b/data/game/th/the-tower-of-tigerqiuqiu-road-race.json @@ -0,0 +1,18 @@ +{ + "slug": "the-tower-of-tigerqiuqiu-road-race", + "name": "The Tower Of TigerQiuQiu Road Race", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202405" + ], + "release_date": "2020-10-29", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/th/the-tower-of-tigerqiuqiu-sneak.json b/data/game/th/the-tower-of-tigerqiuqiu-sneak.json new file mode 100644 index 000000000000..78c911eebed5 --- /dev/null +++ b/data/game/th/the-tower-of-tigerqiuqiu-sneak.json @@ -0,0 +1,18 @@ +{ + "slug": "the-tower-of-tigerqiuqiu-sneak", + "name": "The Tower Of TigerQiuQiu Sneak", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202406" + ], + "release_date": "2020-11-04", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/th/the-tower-of-tigerqiuqiu-sniper.json b/data/game/th/the-tower-of-tigerqiuqiu-sniper.json new file mode 100644 index 000000000000..6f2e0072d30f --- /dev/null +++ b/data/game/th/the-tower-of-tigerqiuqiu-sniper.json @@ -0,0 +1,18 @@ +{ + "slug": "the-tower-of-tigerqiuqiu-sniper", + "name": "The Tower Of TigerQiuQiu Sniper", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202408" + ], + "release_date": "2020-11-04", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/th/the-tower-of-tigerqiuqiu-soapbubble.json b/data/game/th/the-tower-of-tigerqiuqiu-soapbubble.json new file mode 100644 index 000000000000..d268af4a3078 --- /dev/null +++ b/data/game/th/the-tower-of-tigerqiuqiu-soapbubble.json @@ -0,0 +1,18 @@ +{ + "slug": "the-tower-of-tigerqiuqiu-soapbubble", + "name": "The Tower Of TigerQiuQiu Soapbubble", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202410" + ], + "release_date": "2020-10-23", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/th/the-tower-of-tigerqiuqiu-space-bubble-and-bricks.json b/data/game/th/the-tower-of-tigerqiuqiu-space-bubble-and-bricks.json new file mode 100644 index 000000000000..c10cb658d380 --- /dev/null +++ b/data/game/th/the-tower-of-tigerqiuqiu-space-bubble-and-bricks.json @@ -0,0 +1,18 @@ +{ + "slug": "the-tower-of-tigerqiuqiu-space-bubble-and-bricks", + "name": "The Tower Of TigerQiuQiu Space Bubble And Bricks", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202411" + ], + "release_date": "2020-10-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/th/the-tower-of-tigerqiuqiu-space-force.json b/data/game/th/the-tower-of-tigerqiuqiu-space-force.json new file mode 100644 index 000000000000..70d464fb105c --- /dev/null +++ b/data/game/th/the-tower-of-tigerqiuqiu-space-force.json @@ -0,0 +1,18 @@ +{ + "slug": "the-tower-of-tigerqiuqiu-space-force", + "name": "The Tower Of TigerQiuQiu Space Force", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202412" + ], + "release_date": "2020-09-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/th/the-tower-of-tigerqiuqiu-spot-the-difference.json b/data/game/th/the-tower-of-tigerqiuqiu-spot-the-difference.json new file mode 100644 index 000000000000..2f7231985492 --- /dev/null +++ b/data/game/th/the-tower-of-tigerqiuqiu-spot-the-difference.json @@ -0,0 +1,18 @@ +{ + "slug": "the-tower-of-tigerqiuqiu-spot-the-difference", + "name": "The Tower Of TigerQiuQiu Spot The Difference", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202414" + ], + "release_date": "2020-12-02", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/th/the-tower-of-tigerqiuqiu-square-snake.json b/data/game/th/the-tower-of-tigerqiuqiu-square-snake.json new file mode 100644 index 000000000000..1065d5d371fe --- /dev/null +++ b/data/game/th/the-tower-of-tigerqiuqiu-square-snake.json @@ -0,0 +1,18 @@ +{ + "slug": "the-tower-of-tigerqiuqiu-square-snake", + "name": "The Tower of Tigerqiuqiu Square Snake", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202416" + ], + "release_date": "2020-12-04", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/th/the-tower-of-tigerqiuqiu-super-tigerio.json b/data/game/th/the-tower-of-tigerqiuqiu-super-tigerio.json new file mode 100644 index 000000000000..47bfa222280c --- /dev/null +++ b/data/game/th/the-tower-of-tigerqiuqiu-super-tigerio.json @@ -0,0 +1,18 @@ +{ + "slug": "the-tower-of-tigerqiuqiu-super-tigerio", + "name": "The Tower Of TigerQiuQiu Super Tigerio", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202417" + ], + "release_date": "2020-09-05", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/th/the-tower-of-tigerqiuqiu-the-deep-the-hill.json b/data/game/th/the-tower-of-tigerqiuqiu-the-deep-the-hill.json new file mode 100644 index 000000000000..a99300582286 --- /dev/null +++ b/data/game/th/the-tower-of-tigerqiuqiu-the-deep-the-hill.json @@ -0,0 +1,18 @@ +{ + "slug": "the-tower-of-tigerqiuqiu-the-deep-the-hill", + "name": "The Tower Of TigerQiuQiu The Deep The Hill", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202419" + ], + "release_date": "2020-12-09", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/th/the-tower-of-tigerqiuqiu-the-grenadier.json b/data/game/th/the-tower-of-tigerqiuqiu-the-grenadier.json new file mode 100644 index 000000000000..5cb369692c74 --- /dev/null +++ b/data/game/th/the-tower-of-tigerqiuqiu-the-grenadier.json @@ -0,0 +1,18 @@ +{ + "slug": "the-tower-of-tigerqiuqiu-the-grenadier", + "name": "The Tower Of TigerQiuQiu The Grenadier", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202422" + ], + "release_date": "2020-10-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/th/the-tower-of-tigerqiuqiu-the-wind.json b/data/game/th/the-tower-of-tigerqiuqiu-the-wind.json new file mode 100644 index 000000000000..95990048c8c6 --- /dev/null +++ b/data/game/th/the-tower-of-tigerqiuqiu-the-wind.json @@ -0,0 +1,18 @@ +{ + "slug": "the-tower-of-tigerqiuqiu-the-wind", + "name": "The Tower Of TigerQiuQiu The Wind", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202423" + ], + "release_date": "2020-12-10", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/th/the-tower-of-tigerqiuqiu-thief-mouse.json b/data/game/th/the-tower-of-tigerqiuqiu-thief-mouse.json new file mode 100644 index 000000000000..6a7cb8751474 --- /dev/null +++ b/data/game/th/the-tower-of-tigerqiuqiu-thief-mouse.json @@ -0,0 +1,18 @@ +{ + "slug": "the-tower-of-tigerqiuqiu-thief-mouse", + "name": "The Tower Of TigerQiuQiu Thief Mouse", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202424" + ], + "release_date": "2020-10-26", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/th/the-tower-of-tigerqiuqiu-tiger-1952.json b/data/game/th/the-tower-of-tigerqiuqiu-tiger-1952.json new file mode 100644 index 000000000000..442f4bf40524 --- /dev/null +++ b/data/game/th/the-tower-of-tigerqiuqiu-tiger-1952.json @@ -0,0 +1,18 @@ +{ + "slug": "the-tower-of-tigerqiuqiu-tiger-1952", + "name": "The Tower Of TigerQiuQiu Tiger 1952", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202425" + ], + "release_date": "2020-09-01", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/th/the-tower-of-tigerqiuqiu-tiger-bomber.json b/data/game/th/the-tower-of-tigerqiuqiu-tiger-bomber.json new file mode 100644 index 000000000000..916f98ce2742 --- /dev/null +++ b/data/game/th/the-tower-of-tigerqiuqiu-tiger-bomber.json @@ -0,0 +1,18 @@ +{ + "slug": "the-tower-of-tigerqiuqiu-tiger-bomber", + "name": "The Tower Of TigerQiuQiu Tiger Bomber", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202426" + ], + "release_date": "2020-11-17", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/th/the-tower-of-tigerqiuqiu-tiger-tank-60.json b/data/game/th/the-tower-of-tigerqiuqiu-tiger-tank-60.json new file mode 100644 index 000000000000..de144f7f58f6 --- /dev/null +++ b/data/game/th/the-tower-of-tigerqiuqiu-tiger-tank-60.json @@ -0,0 +1,18 @@ +{ + "slug": "the-tower-of-tigerqiuqiu-tiger-tank-60", + "name": "The Tower Of TigerQiuQiu Tiger Tank 60", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202427" + ], + "release_date": "2020-11-14", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/th/the-tower-of-tigerqiuqiu-tiger-tank-61.json b/data/game/th/the-tower-of-tigerqiuqiu-tiger-tank-61.json new file mode 100644 index 000000000000..003e27524654 --- /dev/null +++ b/data/game/th/the-tower-of-tigerqiuqiu-tiger-tank-61.json @@ -0,0 +1,18 @@ +{ + "slug": "the-tower-of-tigerqiuqiu-tiger-tank-61", + "name": "The Tower Of TigerQiuQiu Tiger Tank 61", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202429" + ], + "release_date": "2020-11-16", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/th/the-tower-of-tigerqiuqiu-tiger-tank-63.json b/data/game/th/the-tower-of-tigerqiuqiu-tiger-tank-63.json new file mode 100644 index 000000000000..6854e32045f2 --- /dev/null +++ b/data/game/th/the-tower-of-tigerqiuqiu-tiger-tank-63.json @@ -0,0 +1,18 @@ +{ + "slug": "the-tower-of-tigerqiuqiu-tiger-tank-63", + "name": "The Tower Of TigerQiuQiu Tiger Tank 63", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202431" + ], + "release_date": "2020-11-17", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/th/the-tower-of-tigerqiuqiu-tiger-tank-64.json b/data/game/th/the-tower-of-tigerqiuqiu-tiger-tank-64.json new file mode 100644 index 000000000000..0341db3e8dd7 --- /dev/null +++ b/data/game/th/the-tower-of-tigerqiuqiu-tiger-tank-64.json @@ -0,0 +1,18 @@ +{ + "slug": "the-tower-of-tigerqiuqiu-tiger-tank-64", + "name": "The Tower Of TigerQiuQiu Tiger Tank 64", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202433" + ], + "release_date": "2020-11-17", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/th/the-tower-of-tigerqiuqiu-tiger-tank-65.json b/data/game/th/the-tower-of-tigerqiuqiu-tiger-tank-65.json new file mode 100644 index 000000000000..9766b1f5f5e0 --- /dev/null +++ b/data/game/th/the-tower-of-tigerqiuqiu-tiger-tank-65.json @@ -0,0 +1,18 @@ +{ + "slug": "the-tower-of-tigerqiuqiu-tiger-tank-65", + "name": "The Tower Of TigerQiuQiu Tiger Tank 65", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202434" + ], + "release_date": "2020-11-17", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/th/the-tower-of-tigerqiuqiu-tiger-tank-defense-s.json b/data/game/th/the-tower-of-tigerqiuqiu-tiger-tank-defense-s.json new file mode 100644 index 000000000000..489c07687747 --- /dev/null +++ b/data/game/th/the-tower-of-tigerqiuqiu-tiger-tank-defense-s.json @@ -0,0 +1,18 @@ +{ + "slug": "the-tower-of-tigerqiuqiu-tiger-tank-defense-s", + "name": "The Tower Of TigerQiuQiu Tiger Tank Defense S", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202437" + ], + "release_date": "2020-12-15", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/th/the-tower-of-tigerqiuqiu-tiger-tank-defense.json b/data/game/th/the-tower-of-tigerqiuqiu-tiger-tank-defense.json new file mode 100644 index 000000000000..ebae66454f31 --- /dev/null +++ b/data/game/th/the-tower-of-tigerqiuqiu-tiger-tank-defense.json @@ -0,0 +1,18 @@ +{ + "slug": "the-tower-of-tigerqiuqiu-tiger-tank-defense", + "name": "The Tower Of TigerQiuQiu Tiger Tank Defense", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202436" + ], + "release_date": "2020-12-12", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/th/the-tower-of-tigerqiuqiu-tiger-tank-g.json b/data/game/th/the-tower-of-tigerqiuqiu-tiger-tank-g.json new file mode 100644 index 000000000000..6058c139ac93 --- /dev/null +++ b/data/game/th/the-tower-of-tigerqiuqiu-tiger-tank-g.json @@ -0,0 +1,18 @@ +{ + "slug": "the-tower-of-tigerqiuqiu-tiger-tank-g", + "name": "The Tower Of TigerQiuQiu Tiger Tank G", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202439" + ], + "release_date": "2020-09-05", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/th/the-tower-of-tigerqiuqiu-tigscores.json b/data/game/th/the-tower-of-tigerqiuqiu-tigscores.json new file mode 100644 index 000000000000..9dd11ce07f96 --- /dev/null +++ b/data/game/th/the-tower-of-tigerqiuqiu-tigscores.json @@ -0,0 +1,18 @@ +{ + "slug": "the-tower-of-tigerqiuqiu-tigscores", + "name": "The Tower Of TigerQiuQiu Tigscores", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202440" + ], + "release_date": "2020-11-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/th/the-tower-of-tigerqiuqiu-war-combat.json b/data/game/th/the-tower-of-tigerqiuqiu-war-combat.json new file mode 100644 index 000000000000..1f32dc4f676e --- /dev/null +++ b/data/game/th/the-tower-of-tigerqiuqiu-war-combat.json @@ -0,0 +1,18 @@ +{ + "slug": "the-tower-of-tigerqiuqiu-war-combat", + "name": "The Tower Of TigerQiuQiu War Combat", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202441" + ], + "release_date": "2020-10-22", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/th/the-tower-of-tigerqiuqiu-warp-tiger.json b/data/game/th/the-tower-of-tigerqiuqiu-warp-tiger.json new file mode 100644 index 000000000000..e9d3b57bfa07 --- /dev/null +++ b/data/game/th/the-tower-of-tigerqiuqiu-warp-tiger.json @@ -0,0 +1,18 @@ +{ + "slug": "the-tower-of-tigerqiuqiu-warp-tiger", + "name": "The Tower Of TigerQiuQiu Warp Tiger", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202442" + ], + "release_date": "2020-10-20", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/th/the-trouble-with-clones.json b/data/game/th/the-trouble-with-clones.json new file mode 100644 index 000000000000..1b844be5c480 --- /dev/null +++ b/data/game/th/the-trouble-with-clones.json @@ -0,0 +1,13 @@ +{ + "slug": "the-trouble-with-clones", + "name": "The Trouble with Clones", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60563804" + ], + "release_date": "2012-03-20", + "platforms": [ + "PlayStation 3", + "Microsoft Windows" + ] +} diff --git a/data/game/th/the-urbz-2.json b/data/game/th/the-urbz-2.json new file mode 100644 index 000000000000..cec43db081ea --- /dev/null +++ b/data/game/th/the-urbz-2.json @@ -0,0 +1,8 @@ +{ + "slug": "the-urbz-2", + "name": "The Urbz 2", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63247560" + ] +} diff --git a/data/game/th/the-walking-dead-season-1-and-season-2-bundle.json b/data/game/th/the-walking-dead-season-1-and-season-2-bundle.json new file mode 100644 index 000000000000..a81b841a166e --- /dev/null +++ b/data/game/th/the-walking-dead-season-1-and-season-2-bundle.json @@ -0,0 +1,8 @@ +{ + "slug": "the-walking-dead-season-1-and-season-2-bundle", + "name": "The Walking Dead: Season 1 and Season 2 - Bundle", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q92203649" + ] +} diff --git a/data/game/th/the-walking-dead-season-two-episode-1-all-that-remains.json b/data/game/th/the-walking-dead-season-two-episode-1-all-that-remains.json new file mode 100644 index 000000000000..119a1bb742bf --- /dev/null +++ b/data/game/th/the-walking-dead-season-two-episode-1-all-that-remains.json @@ -0,0 +1,29 @@ +{ + "slug": "the-walking-dead-season-two-episode-1-all-that-remains", + "name": "The Walking Dead: Season Two Episode 1 - All That Remains", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16746357" + ], + "release_date": "2013-12-17", + "platforms": [ + "PlayStation 3", + "Microsoft Windows", + "PlayStation 4", + "Ouya", + "PlayStation Vita", + "iOS", + "macOS" + ], + "genres": [ + "zombie apocalyptic video game", + "point-and-click adventure", + "episodic video game" + ], + "developers": [ + "Telltale Games" + ], + "publishers": [ + "Telltale Games" + ] +} diff --git a/data/game/th/the-walking-dead-the-complete-first-season.json b/data/game/th/the-walking-dead-the-complete-first-season.json new file mode 100644 index 000000000000..157e6bd8cf26 --- /dev/null +++ b/data/game/th/the-walking-dead-the-complete-first-season.json @@ -0,0 +1,13 @@ +{ + "slug": "the-walking-dead-the-complete-first-season", + "name": "The Walking Dead: The Complete First Season", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q92203618" + ], + "release_date": "2012-04-24", + "platforms": [ + "PlayStation Vita", + "PlayStation 4" + ] +} diff --git a/data/game/th/the-witch-and-the-hundred-knight-revival-edition.json b/data/game/th/the-witch-and-the-hundred-knight-revival-edition.json new file mode 100644 index 000000000000..9e210e6a37e3 --- /dev/null +++ b/data/game/th/the-witch-and-the-hundred-knight-revival-edition.json @@ -0,0 +1,8 @@ +{ + "slug": "the-witch-and-the-hundred-knight-revival-edition", + "name": "The Witch and the Hundred Knight: Revival Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107424320" + ] +} diff --git a/data/game/th/the-witcher-2-assassins-of-kings-enhanced-edition.json b/data/game/th/the-witcher-2-assassins-of-kings-enhanced-edition.json new file mode 100644 index 000000000000..337c34c5d0d1 --- /dev/null +++ b/data/game/th/the-witcher-2-assassins-of-kings-enhanced-edition.json @@ -0,0 +1,24 @@ +{ + "slug": "the-witcher-2-assassins-of-kings-enhanced-edition", + "name": "The Witcher 2: Assassins of Kings Enhanced Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q100984696" + ], + "release_date": "2012-04-17", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "action role-playing game" + ], + "developers": [ + "CD Projekt RED" + ], + "publishers": [ + "Warner Bros. Entertainment", + "CD Projekt RED", + "Bandai Namco Entertainment" + ] +} diff --git a/data/game/th/the-witcher-3-wild-hunt-blood-and-wine.json b/data/game/th/the-witcher-3-wild-hunt-blood-and-wine.json new file mode 100644 index 000000000000..e23d66d7dda8 --- /dev/null +++ b/data/game/th/the-witcher-3-wild-hunt-blood-and-wine.json @@ -0,0 +1,27 @@ +{ + "slug": "the-witcher-3-wild-hunt-blood-and-wine", + "name": "The Witcher 3: Wild Hunt – Blood and Wine", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q24807230" + ], + "release_date": "2016-05-31", + "platforms": [ + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "action role-playing game", + "fantasy video game" + ], + "developers": [ + "CD Projekt", + "CD Projekt RED" + ], + "publishers": [ + "1C Company", + "Namco", + "cdp.pl", + "CD Projekt" + ] +} diff --git a/data/game/th/the-witcher-3-wild-hunt-hearts-of-stone.json b/data/game/th/the-witcher-3-wild-hunt-hearts-of-stone.json new file mode 100644 index 000000000000..8f3d64b53fd9 --- /dev/null +++ b/data/game/th/the-witcher-3-wild-hunt-hearts-of-stone.json @@ -0,0 +1,21 @@ +{ + "slug": "the-witcher-3-wild-hunt-hearts-of-stone", + "name": "The Witcher 3: Wild Hunt – Hearts of Stone", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q24807225" + ], + "release_date": "2015-10-12", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "action role-playing game" + ], + "developers": [ + "CD Projekt RED" + ], + "publishers": [ + "CD Projekt RED" + ] +} diff --git a/data/game/th/the-witcher-3-wild-hunt-songs-of-the-past.json b/data/game/th/the-witcher-3-wild-hunt-songs-of-the-past.json new file mode 100644 index 000000000000..a5d8f72c836b --- /dev/null +++ b/data/game/th/the-witcher-3-wild-hunt-songs-of-the-past.json @@ -0,0 +1,21 @@ +{ + "slug": "the-witcher-3-wild-hunt-songs-of-the-past", + "name": "The Witcher 3: Wild Hunt – Songs of the Past", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139942913" + ], + "release_date": "2027-01-01", + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 5", + "Microsoft Windows" + ], + "genres": [ + "action role-playing game" + ], + "developers": [ + "CD Projekt RED", + "Fool's Theory" + ] +} diff --git a/data/game/th/the-witcher-iv.json b/data/game/th/the-witcher-iv.json new file mode 100644 index 000000000000..d30900ba2097 --- /dev/null +++ b/data/game/th/the-witcher-iv.json @@ -0,0 +1,22 @@ +{ + "slug": "the-witcher-iv", + "name": "The Witcher IV", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111023388" + ], + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 5", + "Microsoft Windows" + ], + "genres": [ + "action role-playing game" + ], + "developers": [ + "CD Projekt RED" + ], + "publishers": [ + "CD Projekt" + ] +} diff --git a/data/game/th/the-witcher-side-effects.json b/data/game/th/the-witcher-side-effects.json new file mode 100644 index 000000000000..5d8093d6995f --- /dev/null +++ b/data/game/th/the-witcher-side-effects.json @@ -0,0 +1,18 @@ +{ + "slug": "the-witcher-side-effects", + "name": "The Witcher: Side Effects", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110752509" + ], + "release_date": "2008-01-01", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "role-playing video game" + ], + "developers": [ + "CD Projekt RED" + ] +} diff --git a/data/game/th/the-witcher-the-price-of-neutrality.json b/data/game/th/the-witcher-the-price-of-neutrality.json new file mode 100644 index 000000000000..32662873b719 --- /dev/null +++ b/data/game/th/the-witcher-the-price-of-neutrality.json @@ -0,0 +1,21 @@ +{ + "slug": "the-witcher-the-price-of-neutrality", + "name": "The Witcher: The Price of Neutrality", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110754687" + ], + "release_date": "2008-04-01", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "role-playing video game" + ], + "developers": [ + "CD Projekt RED" + ], + "publishers": [ + "Atari" + ] +} diff --git a/data/game/th/the-wolf-among-us-episode-2-smoke-and-mirrors.json b/data/game/th/the-wolf-among-us-episode-2-smoke-and-mirrors.json new file mode 100644 index 000000000000..51acebcf2fd0 --- /dev/null +++ b/data/game/th/the-wolf-among-us-episode-2-smoke-and-mirrors.json @@ -0,0 +1,8 @@ +{ + "slug": "the-wolf-among-us-episode-2-smoke-and-mirrors", + "name": "The Wolf Among Us: Episode 2 - Smoke and Mirrors", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126948120" + ] +} diff --git a/data/game/th/the-world-drowns.json b/data/game/th/the-world-drowns.json new file mode 100644 index 000000000000..dc00916c9ab0 --- /dev/null +++ b/data/game/th/the-world-drowns.json @@ -0,0 +1,21 @@ +{ + "slug": "the-world-drowns", + "name": "The World Drowns", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124053152" + ], + "release_date": "2010-10-19", + "platforms": [ + "PlayStation 3" + ], + "genres": [ + "role-playing video game" + ], + "developers": [ + "ThatOtherPerson" + ], + "publishers": [ + "ThatOtherPerson" + ] +} diff --git a/data/game/th/the-yakuza-remastered-collection.json b/data/game/th/the-yakuza-remastered-collection.json new file mode 100644 index 000000000000..1bae3dea9411 --- /dev/null +++ b/data/game/th/the-yakuza-remastered-collection.json @@ -0,0 +1,8 @@ +{ + "slug": "the-yakuza-remastered-collection", + "name": "The Yakuza Remastered Collection", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125768654" + ] +} diff --git a/data/game/th/theseis.json b/data/game/th/theseis.json new file mode 100644 index 000000000000..ec45d8491eac --- /dev/null +++ b/data/game/th/theseis.json @@ -0,0 +1,11 @@ +{ + "slug": "theseis", + "name": "Theseis", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q39435061" + ], + "platforms": [ + "Microsoft Windows" + ] +} diff --git a/data/game/th/they-hunger-lost-souls.json b/data/game/th/they-hunger-lost-souls.json new file mode 100644 index 000000000000..c3ea96c121c0 --- /dev/null +++ b/data/game/th/they-hunger-lost-souls.json @@ -0,0 +1,11 @@ +{ + "slug": "they-hunger-lost-souls", + "name": "They Hunger: Lost Souls", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110727996" + ], + "genres": [ + "first-person shooter" + ] +} diff --git a/data/game/th/thief-the-bank-heist.json b/data/game/th/thief-the-bank-heist.json new file mode 100644 index 000000000000..7ba72e36344e --- /dev/null +++ b/data/game/th/thief-the-bank-heist.json @@ -0,0 +1,8 @@ +{ + "slug": "thief-the-bank-heist", + "name": "Thief: The Bank Heist", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135675982" + ] +} diff --git a/data/game/th/thin-ice-q9778010.json b/data/game/th/thin-ice-q9778010.json new file mode 100644 index 000000000000..5a216036777c --- /dev/null +++ b/data/game/th/thin-ice-q9778010.json @@ -0,0 +1,13 @@ +{ + "slug": "thin-ice-q9778010", + "name": "Thin Ice", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q9778010" + ], + "release_date": "2006-12-19", + "genres": [ + "puzzle video game", + "maze video game" + ] +} diff --git a/data/game/th/third-world.json b/data/game/th/third-world.json new file mode 100644 index 000000000000..4cf842e27fb6 --- /dev/null +++ b/data/game/th/third-world.json @@ -0,0 +1,8 @@ +{ + "slug": "third-world", + "name": "Third World", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115804093" + ] +} diff --git a/data/game/th/this-is-vegas.json b/data/game/th/this-is-vegas.json new file mode 100644 index 000000000000..fe86660aa03c --- /dev/null +++ b/data/game/th/this-is-vegas.json @@ -0,0 +1,21 @@ +{ + "slug": "this-is-vegas", + "name": "This is Vegas", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1168597" + ], + "platforms": [ + "PlayStation 3", + "Microsoft Windows" + ], + "genres": [ + "action-adventure game" + ], + "developers": [ + "Surreal Software" + ], + "publishers": [ + "Warner Bros. Games" + ] +} diff --git a/data/game/th/this-war-of-mine-complete-edition.json b/data/game/th/this-war-of-mine-complete-edition.json new file mode 100644 index 000000000000..b7455cde7ebb --- /dev/null +++ b/data/game/th/this-war-of-mine-complete-edition.json @@ -0,0 +1,19 @@ +{ + "slug": "this-war-of-mine-complete-edition", + "name": "This War of Mine: Complete Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112116122" + ], + "release_date": "2022-05-10", + "platforms": [ + "Xbox Series X and Series S", + "Microsoft Windows" + ], + "developers": [ + "11 Bit Studios" + ], + "publishers": [ + "11 Bit Studios" + ] +} diff --git a/data/game/th/this-war-of-mine-the-little-ones.json b/data/game/th/this-war-of-mine-the-little-ones.json new file mode 100644 index 000000000000..7fd0823f584f --- /dev/null +++ b/data/game/th/this-war-of-mine-the-little-ones.json @@ -0,0 +1,11 @@ +{ + "slug": "this-war-of-mine-the-little-ones", + "name": "This War of Mine: The Little Ones", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107424321" + ], + "platforms": [ + "PlayStation 4" + ] +} diff --git a/data/game/th/threadspace-hyperbol-demo.json b/data/game/th/threadspace-hyperbol-demo.json new file mode 100644 index 000000000000..989983111aff --- /dev/null +++ b/data/game/th/threadspace-hyperbol-demo.json @@ -0,0 +1,15 @@ +{ + "slug": "threadspace-hyperbol-demo", + "name": "ThreadSpace: Hyperbol Demo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122710316" + ], + "release_date": "2007-07-06", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "real-time strategy" + ] +} diff --git a/data/game/th/threes-q124080274.json b/data/game/th/threes-q124080274.json new file mode 100644 index 000000000000..6f956ba1c0e7 --- /dev/null +++ b/data/game/th/threes-q124080274.json @@ -0,0 +1,12 @@ +{ + "slug": "threes-q124080274", + "name": "Threes!+", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124080274" + ], + "release_date": "2021-04-02", + "platforms": [ + "iOS" + ] +} diff --git a/data/game/th/thrill-kill.json b/data/game/th/thrill-kill.json new file mode 100644 index 000000000000..33e9daf54efe --- /dev/null +++ b/data/game/th/thrill-kill.json @@ -0,0 +1,17 @@ +{ + "slug": "thrill-kill", + "name": "Thrill Kill", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1129959" + ], + "genres": [ + "fighting game" + ], + "developers": [ + "Midway Studios – Los Angeles" + ], + "publishers": [ + "Virgin Interactive" + ] +} diff --git a/data/game/th/thrust-shot.json b/data/game/th/thrust-shot.json new file mode 100644 index 000000000000..bb4cec676840 --- /dev/null +++ b/data/game/th/thrust-shot.json @@ -0,0 +1,21 @@ +{ + "slug": "thrust-shot", + "name": "Thrust Shot", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124028852" + ], + "release_date": "2021-05-29", + "platforms": [ + "PlayStation Vita" + ], + "genres": [ + "third-person shooter" + ], + "developers": [ + "VitaHEX games" + ], + "publishers": [ + "VitaHEX games" + ] +} diff --git a/data/game/th/thug-pro.json b/data/game/th/thug-pro.json new file mode 100644 index 000000000000..6c790f4b0807 --- /dev/null +++ b/data/game/th/thug-pro.json @@ -0,0 +1,15 @@ +{ + "slug": "thug-pro", + "name": "THUG Pro", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16267857" + ], + "release_date": "2013-08-10", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "sports video game" + ] +} diff --git a/data/game/th/thumper-pocket-edition.json b/data/game/th/thumper-pocket-edition.json new file mode 100644 index 000000000000..57e843268327 --- /dev/null +++ b/data/game/th/thumper-pocket-edition.json @@ -0,0 +1,16 @@ +{ + "slug": "thumper-pocket-edition", + "name": "Thumper: Pocket Edition+", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108457109" + ], + "release_date": "2021-10-01", + "platforms": [ + "iPadOS", + "iOS" + ], + "developers": [ + "Drool" + ] +} diff --git a/data/game/th/thunder-force-gold-pack-1.json b/data/game/th/thunder-force-gold-pack-1.json new file mode 100644 index 000000000000..024aa5f237dc --- /dev/null +++ b/data/game/th/thunder-force-gold-pack-1.json @@ -0,0 +1,18 @@ +{ + "slug": "thunder-force-gold-pack-1", + "name": "Thunder Force Gold Pack 1", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106047435" + ], + "release_date": "1996-09-27", + "genres": [ + "scrolling shooter" + ], + "developers": [ + "Technosoft" + ], + "publishers": [ + "Technosoft" + ] +} diff --git a/data/game/th/thunder-force-gold-pack-2.json b/data/game/th/thunder-force-gold-pack-2.json new file mode 100644 index 000000000000..ce533347558f --- /dev/null +++ b/data/game/th/thunder-force-gold-pack-2.json @@ -0,0 +1,18 @@ +{ + "slug": "thunder-force-gold-pack-2", + "name": "Thunder Force Gold Pack 2", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106047855" + ], + "release_date": "1996-12-06", + "genres": [ + "scrolling shooter" + ], + "developers": [ + "Technosoft" + ], + "publishers": [ + "Technosoft" + ] +} diff --git a/data/game/th/thunder-storm-lx-3-roadblaster.json b/data/game/th/thunder-storm-lx-3-roadblaster.json new file mode 100644 index 000000000000..b2c1780e381b --- /dev/null +++ b/data/game/th/thunder-storm-lx-3-roadblaster.json @@ -0,0 +1,9 @@ +{ + "slug": "thunder-storm-lx-3-roadblaster", + "name": "Thunder Storm LX-3 & Roadblaster", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108002033" + ], + "release_date": "1995-10-20" +} diff --git a/data/game/ti/tianrang.json b/data/game/ti/tianrang.json new file mode 100644 index 000000000000..dd126731e50d --- /dev/null +++ b/data/game/ti/tianrang.json @@ -0,0 +1,8 @@ +{ + "slug": "tianrang", + "name": "Tianrang", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q104549569" + ] +} diff --git a/data/game/ti/tiberium.json b/data/game/ti/tiberium.json new file mode 100644 index 000000000000..57bed9e6ca64 --- /dev/null +++ b/data/game/ti/tiberium.json @@ -0,0 +1,11 @@ +{ + "slug": "tiberium", + "name": "Tiberium", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q14414270" + ], + "publishers": [ + "Electronic Arts" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-mp001.json b/data/game/ti/tiger-fighter-1931-mp001.json new file mode 100644 index 000000000000..83eb6f0809a0 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-mp001.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-mp001", + "name": "Tiger Fighter 1931 MP001", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180570" + ], + "release_date": "2021-07-22", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-mp002.json b/data/game/ti/tiger-fighter-1931-mp002.json new file mode 100644 index 000000000000..1f9fbf1b1127 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-mp002.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-mp002", + "name": "Tiger Fighter 1931 MP002", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180572" + ], + "release_date": "2021-07-22", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-mp003.json b/data/game/ti/tiger-fighter-1931-mp003.json new file mode 100644 index 000000000000..757d3418b03e --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-mp003.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-mp003", + "name": "Tiger Fighter 1931 MP003", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180573" + ], + "release_date": "2021-07-22", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-mp004.json b/data/game/ti/tiger-fighter-1931-mp004.json new file mode 100644 index 000000000000..e82d46f3ff4c --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-mp004.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-mp004", + "name": "Tiger Fighter 1931 MP004", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180576" + ], + "release_date": "2021-07-22", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-mp005.json b/data/game/ti/tiger-fighter-1931-mp005.json new file mode 100644 index 000000000000..4a3e16e63a1d --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-mp005.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-mp005", + "name": "Tiger Fighter 1931 MP005", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180577" + ], + "release_date": "2021-07-22", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-mp006.json b/data/game/ti/tiger-fighter-1931-mp006.json new file mode 100644 index 000000000000..d3bad6d20b12 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-mp006.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-mp006", + "name": "Tiger Fighter 1931 MP006", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180579" + ], + "release_date": "2021-07-22", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-mp007.json b/data/game/ti/tiger-fighter-1931-mp007.json new file mode 100644 index 000000000000..afdae3d01b81 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-mp007.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-mp007", + "name": "Tiger Fighter 1931 MP007", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180581" + ], + "release_date": "2021-07-22", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-mp008.json b/data/game/ti/tiger-fighter-1931-mp008.json new file mode 100644 index 000000000000..6f282ff791e7 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-mp008.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-mp008", + "name": "Tiger Fighter 1931 MP008", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180583" + ], + "release_date": "2021-07-22", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-mp009.json b/data/game/ti/tiger-fighter-1931-mp009.json new file mode 100644 index 000000000000..3918c316403c --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-mp009.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-mp009", + "name": "Tiger Fighter 1931 MP009", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180584" + ], + "release_date": "2021-07-22", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-mp010.json b/data/game/ti/tiger-fighter-1931-mp010.json new file mode 100644 index 000000000000..4f1713e5d87d --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-mp010.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-mp010", + "name": "Tiger Fighter 1931 MP010", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180585" + ], + "release_date": "2021-07-22", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-mp011.json b/data/game/ti/tiger-fighter-1931-mp011.json new file mode 100644 index 000000000000..1aa3418f181c --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-mp011.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-mp011", + "name": "Tiger Fighter 1931 MP011", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180588" + ], + "release_date": "2021-07-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-mp012.json b/data/game/ti/tiger-fighter-1931-mp012.json new file mode 100644 index 000000000000..dec1271f2cf5 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-mp012.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-mp012", + "name": "Tiger Fighter 1931 MP012", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180589" + ], + "release_date": "2021-07-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-mp013.json b/data/game/ti/tiger-fighter-1931-mp013.json new file mode 100644 index 000000000000..a4d10ea8fde0 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-mp013.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-mp013", + "name": "Tiger Fighter 1931 MP013", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180590" + ], + "release_date": "2021-07-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-mp014.json b/data/game/ti/tiger-fighter-1931-mp014.json new file mode 100644 index 000000000000..c68c4b383d3a --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-mp014.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-mp014", + "name": "Tiger Fighter 1931 MP014", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180591" + ], + "release_date": "2021-07-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-mp015.json b/data/game/ti/tiger-fighter-1931-mp015.json new file mode 100644 index 000000000000..f563c193002c --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-mp015.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-mp015", + "name": "Tiger Fighter 1931 MP015", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180592" + ], + "release_date": "2021-07-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-mp016.json b/data/game/ti/tiger-fighter-1931-mp016.json new file mode 100644 index 000000000000..e9760daa7eb9 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-mp016.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-mp016", + "name": "Tiger Fighter 1931 MP016", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180595" + ], + "release_date": "2021-07-25", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-mp017.json b/data/game/ti/tiger-fighter-1931-mp017.json new file mode 100644 index 000000000000..2aa3369e5d4d --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-mp017.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-mp017", + "name": "Tiger Fighter 1931 MP017", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180596" + ], + "release_date": "2021-07-25", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-mp018.json b/data/game/ti/tiger-fighter-1931-mp018.json new file mode 100644 index 000000000000..afc7662b933e --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-mp018.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-mp018", + "name": "Tiger Fighter 1931 MP018", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180597" + ], + "release_date": "2021-07-25", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-mp019.json b/data/game/ti/tiger-fighter-1931-mp019.json new file mode 100644 index 000000000000..ec62ef9364e6 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-mp019.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-mp019", + "name": "Tiger Fighter 1931 MP019", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180598" + ], + "release_date": "2021-07-25", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-mp020.json b/data/game/ti/tiger-fighter-1931-mp020.json new file mode 100644 index 000000000000..a47f787ae908 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-mp020.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-mp020", + "name": "Tiger Fighter 1931 MP020", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180599" + ], + "release_date": "2021-07-25", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-mp021.json b/data/game/ti/tiger-fighter-1931-mp021.json new file mode 100644 index 000000000000..327d8cc27254 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-mp021.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-mp021", + "name": "Tiger Fighter 1931 MP021", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180600" + ], + "release_date": "2021-07-25", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-mp022.json b/data/game/ti/tiger-fighter-1931-mp022.json new file mode 100644 index 000000000000..81bc0c1b9898 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-mp022.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-mp022", + "name": "Tiger Fighter 1931 MP022", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180602" + ], + "release_date": "2021-07-25", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-mp023.json b/data/game/ti/tiger-fighter-1931-mp023.json new file mode 100644 index 000000000000..6a676249015d --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-mp023.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-mp023", + "name": "Tiger Fighter 1931 MP023", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180603" + ], + "release_date": "2021-07-25", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-mp024.json b/data/game/ti/tiger-fighter-1931-mp024.json new file mode 100644 index 000000000000..d72242bbfa2a --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-mp024.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-mp024", + "name": "Tiger Fighter 1931 MP024", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180605" + ], + "release_date": "2021-07-25", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-mp025.json b/data/game/ti/tiger-fighter-1931-mp025.json new file mode 100644 index 000000000000..f2f90c11ebc1 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-mp025.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-mp025", + "name": "Tiger Fighter 1931 MP025", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180606" + ], + "release_date": "2021-07-25", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-mp026.json b/data/game/ti/tiger-fighter-1931-mp026.json new file mode 100644 index 000000000000..ed454fffd3a2 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-mp026.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-mp026", + "name": "Tiger Fighter 1931 MP026", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180608" + ], + "release_date": "2021-07-27", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-mp027.json b/data/game/ti/tiger-fighter-1931-mp027.json new file mode 100644 index 000000000000..0240d82b3593 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-mp027.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-mp027", + "name": "Tiger Fighter 1931 MP027", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180611" + ], + "release_date": "2021-07-27", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-mp028.json b/data/game/ti/tiger-fighter-1931-mp028.json new file mode 100644 index 000000000000..94445046ffd9 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-mp028.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-mp028", + "name": "Tiger Fighter 1931 MP028", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180613" + ], + "release_date": "2021-07-27", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-mp029.json b/data/game/ti/tiger-fighter-1931-mp029.json new file mode 100644 index 000000000000..2ada2ddd4ae2 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-mp029.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-mp029", + "name": "Tiger Fighter 1931 MP029", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180616" + ], + "release_date": "2021-07-27", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-mp030.json b/data/game/ti/tiger-fighter-1931-mp030.json new file mode 100644 index 000000000000..900f4d362782 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-mp030.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-mp030", + "name": "Tiger Fighter 1931 MP030", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180618" + ], + "release_date": "2021-07-27", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-mp031.json b/data/game/ti/tiger-fighter-1931-mp031.json new file mode 100644 index 000000000000..6f35583f142a --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-mp031.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-mp031", + "name": "Tiger Fighter 1931 MP031", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180619" + ], + "release_date": "2021-07-27", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-mp032.json b/data/game/ti/tiger-fighter-1931-mp032.json new file mode 100644 index 000000000000..8513c6dff48b --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-mp032.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-mp032", + "name": "Tiger Fighter 1931 MP032", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180620" + ], + "release_date": "2021-07-27", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-mp033.json b/data/game/ti/tiger-fighter-1931-mp033.json new file mode 100644 index 000000000000..f7abc4aecafb --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-mp033.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-mp033", + "name": "Tiger Fighter 1931 MP033", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180622" + ], + "release_date": "2021-07-27", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-mp034.json b/data/game/ti/tiger-fighter-1931-mp034.json new file mode 100644 index 000000000000..a0ceaf3bed2a --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-mp034.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-mp034", + "name": "Tiger Fighter 1931 MP034", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180624" + ], + "release_date": "2021-07-27", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-mp035.json b/data/game/ti/tiger-fighter-1931-mp035.json new file mode 100644 index 000000000000..1f80a9c6524a --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-mp035.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-mp035", + "name": "Tiger Fighter 1931 MP035", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180627" + ], + "release_date": "2021-07-27", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-mp036.json b/data/game/ti/tiger-fighter-1931-mp036.json new file mode 100644 index 000000000000..057c30277b99 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-mp036.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-mp036", + "name": "Tiger Fighter 1931 MP036", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180629" + ], + "release_date": "2021-07-31", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-mp037.json b/data/game/ti/tiger-fighter-1931-mp037.json new file mode 100644 index 000000000000..c910d725245a --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-mp037.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-mp037", + "name": "Tiger Fighter 1931 MP037", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180630" + ], + "release_date": "2021-07-31", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-mp038.json b/data/game/ti/tiger-fighter-1931-mp038.json new file mode 100644 index 000000000000..20a1e4b3bd9d --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-mp038.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-mp038", + "name": "Tiger Fighter 1931 MP038", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180632" + ], + "release_date": "2021-07-31", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-mp039.json b/data/game/ti/tiger-fighter-1931-mp039.json new file mode 100644 index 000000000000..ed7f85a3a9f2 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-mp039.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-mp039", + "name": "Tiger Fighter 1931 MP039", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180635" + ], + "release_date": "2021-07-31", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-mp040.json b/data/game/ti/tiger-fighter-1931-mp040.json new file mode 100644 index 000000000000..95bb6290fc8e --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-mp040.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-mp040", + "name": "Tiger Fighter 1931 MP040", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180636" + ], + "release_date": "2021-07-31", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-mp041.json b/data/game/ti/tiger-fighter-1931-mp041.json new file mode 100644 index 000000000000..15c2a67fa1a5 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-mp041.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-mp041", + "name": "Tiger Fighter 1931 MP041", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180638" + ], + "release_date": "2021-07-31", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-mp042.json b/data/game/ti/tiger-fighter-1931-mp042.json new file mode 100644 index 000000000000..431e75ca8503 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-mp042.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-mp042", + "name": "Tiger Fighter 1931 MP042", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180639" + ], + "release_date": "2021-07-31", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-mp043.json b/data/game/ti/tiger-fighter-1931-mp043.json new file mode 100644 index 000000000000..16d661864f38 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-mp043.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-mp043", + "name": "Tiger Fighter 1931 MP043", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180640" + ], + "release_date": "2021-07-31", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-mp044.json b/data/game/ti/tiger-fighter-1931-mp044.json new file mode 100644 index 000000000000..2095cc1e20cf --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-mp044.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-mp044", + "name": "Tiger Fighter 1931 MP044", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180641" + ], + "release_date": "2021-07-31", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-mp045.json b/data/game/ti/tiger-fighter-1931-mp045.json new file mode 100644 index 000000000000..1766e3afe868 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-mp045.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-mp045", + "name": "Tiger Fighter 1931 MP045", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180645" + ], + "release_date": "2021-07-31", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-mp046.json b/data/game/ti/tiger-fighter-1931-mp046.json new file mode 100644 index 000000000000..6673b787917f --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-mp046.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-mp046", + "name": "Tiger Fighter 1931 MP046", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180648" + ], + "release_date": "2021-08-04", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-mp047.json b/data/game/ti/tiger-fighter-1931-mp047.json new file mode 100644 index 000000000000..a434286ac926 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-mp047.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-mp047", + "name": "Tiger Fighter 1931 MP047", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180653" + ], + "release_date": "2021-08-04", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-mp048.json b/data/game/ti/tiger-fighter-1931-mp048.json new file mode 100644 index 000000000000..fc521e90aa19 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-mp048.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-mp048", + "name": "Tiger Fighter 1931 MP048", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180655" + ], + "release_date": "2021-08-04", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-mp049.json b/data/game/ti/tiger-fighter-1931-mp049.json new file mode 100644 index 000000000000..b4d1f65a51fd --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-mp049.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-mp049", + "name": "Tiger Fighter 1931 MP049", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180656" + ], + "release_date": "2021-08-04", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-mp050.json b/data/game/ti/tiger-fighter-1931-mp050.json new file mode 100644 index 000000000000..1662b864300d --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-mp050.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-mp050", + "name": "Tiger Fighter 1931 MP050", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180660" + ], + "release_date": "2021-08-04", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-mp051.json b/data/game/ti/tiger-fighter-1931-mp051.json new file mode 100644 index 000000000000..65184777f5a0 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-mp051.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-mp051", + "name": "Tiger Fighter 1931 MP051", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180661" + ], + "release_date": "2021-08-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-mp052.json b/data/game/ti/tiger-fighter-1931-mp052.json new file mode 100644 index 000000000000..cb48d35c691c --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-mp052.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-mp052", + "name": "Tiger Fighter 1931 MP052", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180662" + ], + "release_date": "2021-08-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-mp053.json b/data/game/ti/tiger-fighter-1931-mp053.json new file mode 100644 index 000000000000..732caffaa611 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-mp053.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-mp053", + "name": "Tiger Fighter 1931 MP053", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180672" + ], + "release_date": "2021-08-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-mp054.json b/data/game/ti/tiger-fighter-1931-mp054.json new file mode 100644 index 000000000000..e826bd363e9d --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-mp054.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-mp054", + "name": "Tiger Fighter 1931 MP054", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180677" + ], + "release_date": "2021-08-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-mp055.json b/data/game/ti/tiger-fighter-1931-mp055.json new file mode 100644 index 000000000000..6802310027ac --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-mp055.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-mp055", + "name": "Tiger Fighter 1931 MP055", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180681" + ], + "release_date": "2021-08-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-mp056.json b/data/game/ti/tiger-fighter-1931-mp056.json new file mode 100644 index 000000000000..f716fc1f4d59 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-mp056.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-mp056", + "name": "Tiger Fighter 1931 MP056", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180682" + ], + "release_date": "2021-08-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-mp057.json b/data/game/ti/tiger-fighter-1931-mp057.json new file mode 100644 index 000000000000..783b0d755977 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-mp057.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-mp057", + "name": "Tiger Fighter 1931 MP057", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180693" + ], + "release_date": "2021-08-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-mp058.json b/data/game/ti/tiger-fighter-1931-mp058.json new file mode 100644 index 000000000000..fd993c128165 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-mp058.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-mp058", + "name": "Tiger Fighter 1931 MP058", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180703" + ], + "release_date": "2021-08-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-mp059.json b/data/game/ti/tiger-fighter-1931-mp059.json new file mode 100644 index 000000000000..cc66cf61b4db --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-mp059.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-mp059", + "name": "Tiger Fighter 1931 MP059", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180713" + ], + "release_date": "2021-08-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-mp060.json b/data/game/ti/tiger-fighter-1931-mp060.json new file mode 100644 index 000000000000..0725348259b4 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-mp060.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-mp060", + "name": "Tiger Fighter 1931 MP060", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180719" + ], + "release_date": "2021-08-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-mp061.json b/data/game/ti/tiger-fighter-1931-mp061.json new file mode 100644 index 000000000000..c17b943f60a6 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-mp061.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-mp061", + "name": "Tiger Fighter 1931 MP061", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180724" + ], + "release_date": "2021-08-14", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-mp062.json b/data/game/ti/tiger-fighter-1931-mp062.json new file mode 100644 index 000000000000..87fa31d6d434 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-mp062.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-mp062", + "name": "Tiger Fighter 1931 MP062", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180733" + ], + "release_date": "2021-08-14", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-mp063.json b/data/game/ti/tiger-fighter-1931-mp063.json new file mode 100644 index 000000000000..02edb7995286 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-mp063.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-mp063", + "name": "Tiger Fighter 1931 MP063", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180745" + ], + "release_date": "2021-08-14", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-mp064.json b/data/game/ti/tiger-fighter-1931-mp064.json new file mode 100644 index 000000000000..ba2c7883ece5 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-mp064.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-mp064", + "name": "Tiger Fighter 1931 MP064", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180749" + ], + "release_date": "2021-08-14", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-mp065.json b/data/game/ti/tiger-fighter-1931-mp065.json new file mode 100644 index 000000000000..a1475a9b0be0 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-mp065.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-mp065", + "name": "Tiger Fighter 1931 MP065", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180750" + ], + "release_date": "2021-08-14", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-mp066.json b/data/game/ti/tiger-fighter-1931-mp066.json new file mode 100644 index 000000000000..ab9f890fd175 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-mp066.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-mp066", + "name": "Tiger Fighter 1931 MP066", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180752" + ], + "release_date": "2021-08-14", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-mp067.json b/data/game/ti/tiger-fighter-1931-mp067.json new file mode 100644 index 000000000000..c052543ffaab --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-mp067.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-mp067", + "name": "Tiger Fighter 1931 MP067", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180754" + ], + "release_date": "2021-08-14", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-mp068.json b/data/game/ti/tiger-fighter-1931-mp068.json new file mode 100644 index 000000000000..df4a76c1f76f --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-mp068.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-mp068", + "name": "Tiger Fighter 1931 MP068", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180758" + ], + "release_date": "2021-08-14", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-mp069.json b/data/game/ti/tiger-fighter-1931-mp069.json new file mode 100644 index 000000000000..2a51de03c4b2 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-mp069.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-mp069", + "name": "Tiger Fighter 1931 MP069", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180763" + ], + "release_date": "2021-08-14", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-mp070.json b/data/game/ti/tiger-fighter-1931-mp070.json new file mode 100644 index 000000000000..97a27ca1f7b0 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-mp070.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-mp070", + "name": "Tiger Fighter 1931 MP070", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180764" + ], + "release_date": "2021-08-14", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-mp071.json b/data/game/ti/tiger-fighter-1931-mp071.json new file mode 100644 index 000000000000..2e1263bcda2f --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-mp071.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-mp071", + "name": "Tiger Fighter 1931 MP071", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180774" + ], + "release_date": "2021-08-19", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-mp072.json b/data/game/ti/tiger-fighter-1931-mp072.json new file mode 100644 index 000000000000..f8015bea928a --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-mp072.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-mp072", + "name": "Tiger Fighter 1931 MP072", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180784" + ], + "release_date": "2021-08-19", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-mp073.json b/data/game/ti/tiger-fighter-1931-mp073.json new file mode 100644 index 000000000000..334ab908ad3a --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-mp073.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-mp073", + "name": "Tiger Fighter 1931 MP073", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180790" + ], + "release_date": "2021-08-19", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-mp074.json b/data/game/ti/tiger-fighter-1931-mp074.json new file mode 100644 index 000000000000..763a7c43b933 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-mp074.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-mp074", + "name": "Tiger Fighter 1931 MP074", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180792" + ], + "release_date": "2021-08-19", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-mp075.json b/data/game/ti/tiger-fighter-1931-mp075.json new file mode 100644 index 000000000000..b44a2db1f4de --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-mp075.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-mp075", + "name": "Tiger Fighter 1931 MP075", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180798" + ], + "release_date": "2021-08-19", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-mp076.json b/data/game/ti/tiger-fighter-1931-mp076.json new file mode 100644 index 000000000000..beae161eeaca --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-mp076.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-mp076", + "name": "Tiger Fighter 1931 MP076", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180805" + ], + "release_date": "2021-08-19", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-mp077.json b/data/game/ti/tiger-fighter-1931-mp077.json new file mode 100644 index 000000000000..82798a9c0231 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-mp077.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-mp077", + "name": "Tiger Fighter 1931 MP077", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180807" + ], + "release_date": "2021-08-19", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-mp078.json b/data/game/ti/tiger-fighter-1931-mp078.json new file mode 100644 index 000000000000..03f08641c086 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-mp078.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-mp078", + "name": "Tiger Fighter 1931 MP078", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180809" + ], + "release_date": "2021-08-19", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-mp079.json b/data/game/ti/tiger-fighter-1931-mp079.json new file mode 100644 index 000000000000..41c088a64f44 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-mp079.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-mp079", + "name": "Tiger Fighter 1931 MP079", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180815" + ], + "release_date": "2021-08-19", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-mp080.json b/data/game/ti/tiger-fighter-1931-mp080.json new file mode 100644 index 000000000000..5951f08a3c35 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-mp080.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-mp080", + "name": "Tiger Fighter 1931 MP080", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180823" + ], + "release_date": "2021-08-19", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-mp081.json b/data/game/ti/tiger-fighter-1931-mp081.json new file mode 100644 index 000000000000..beb32540c89a --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-mp081.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-mp081", + "name": "Tiger Fighter 1931 MP081", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180824" + ], + "release_date": "2021-08-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-mp082.json b/data/game/ti/tiger-fighter-1931-mp082.json new file mode 100644 index 000000000000..3149ef7cd539 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-mp082.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-mp082", + "name": "Tiger Fighter 1931 MP082", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180825" + ], + "release_date": "2021-08-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-mp083.json b/data/game/ti/tiger-fighter-1931-mp083.json new file mode 100644 index 000000000000..77750a2a76f4 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-mp083.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-mp083", + "name": "Tiger Fighter 1931 MP083", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180826" + ], + "release_date": "2021-08-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-mp084.json b/data/game/ti/tiger-fighter-1931-mp084.json new file mode 100644 index 000000000000..55ff65cf0036 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-mp084.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-mp084", + "name": "Tiger Fighter 1931 MP084", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180828" + ], + "release_date": "2021-08-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-mp085.json b/data/game/ti/tiger-fighter-1931-mp085.json new file mode 100644 index 000000000000..b29d71e03e64 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-mp085.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-mp085", + "name": "Tiger Fighter 1931 MP085", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180829" + ], + "release_date": "2021-08-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-mp086.json b/data/game/ti/tiger-fighter-1931-mp086.json new file mode 100644 index 000000000000..4f1576045c07 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-mp086.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-mp086", + "name": "Tiger Fighter 1931 MP086", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180830" + ], + "release_date": "2021-08-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-mp087.json b/data/game/ti/tiger-fighter-1931-mp087.json new file mode 100644 index 000000000000..8898dbcf6147 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-mp087.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-mp087", + "name": "Tiger Fighter 1931 MP087", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180833" + ], + "release_date": "2021-08-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-mp088.json b/data/game/ti/tiger-fighter-1931-mp088.json new file mode 100644 index 000000000000..0977acd70707 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-mp088.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-mp088", + "name": "Tiger Fighter 1931 MP088", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180836" + ], + "release_date": "2021-08-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-mp089.json b/data/game/ti/tiger-fighter-1931-mp089.json new file mode 100644 index 000000000000..dd6d4042c42f --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-mp089.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-mp089", + "name": "Tiger Fighter 1931 MP089", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180837" + ], + "release_date": "2021-08-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-mp090.json b/data/game/ti/tiger-fighter-1931-mp090.json new file mode 100644 index 000000000000..23f4cf5cfb64 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-mp090.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-mp090", + "name": "Tiger Fighter 1931 MP090", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180839" + ], + "release_date": "2021-08-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-mp091.json b/data/game/ti/tiger-fighter-1931-mp091.json new file mode 100644 index 000000000000..f3bcc9dde772 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-mp091.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-mp091", + "name": "Tiger Fighter 1931 MP091", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180841" + ], + "release_date": "2021-08-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-mp092.json b/data/game/ti/tiger-fighter-1931-mp092.json new file mode 100644 index 000000000000..25f98c851e9a --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-mp092.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-mp092", + "name": "Tiger Fighter 1931 MP092", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180844" + ], + "release_date": "2021-08-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-mp093.json b/data/game/ti/tiger-fighter-1931-mp093.json new file mode 100644 index 000000000000..e61258531c63 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-mp093.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-mp093", + "name": "Tiger Fighter 1931 MP093", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180849" + ], + "release_date": "2021-08-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-mp094.json b/data/game/ti/tiger-fighter-1931-mp094.json new file mode 100644 index 000000000000..d3b533f5c775 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-mp094.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-mp094", + "name": "Tiger Fighter 1931 MP094", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180854" + ], + "release_date": "2021-08-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-mp095.json b/data/game/ti/tiger-fighter-1931-mp095.json new file mode 100644 index 000000000000..2e83bbc371ac --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-mp095.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-mp095", + "name": "Tiger Fighter 1931 MP095", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180856" + ], + "release_date": "2021-08-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-mp096.json b/data/game/ti/tiger-fighter-1931-mp096.json new file mode 100644 index 000000000000..b86ee3504fc7 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-mp096.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-mp096", + "name": "Tiger Fighter 1931 MP096", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180861" + ], + "release_date": "2021-08-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-mp097.json b/data/game/ti/tiger-fighter-1931-mp097.json new file mode 100644 index 000000000000..58df8a522e32 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-mp097.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-mp097", + "name": "Tiger Fighter 1931 MP097", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180867" + ], + "release_date": "2021-08-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-mp098.json b/data/game/ti/tiger-fighter-1931-mp098.json new file mode 100644 index 000000000000..31e3421b5191 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-mp098.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-mp098", + "name": "Tiger Fighter 1931 MP098", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180870" + ], + "release_date": "2021-08-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-mp099.json b/data/game/ti/tiger-fighter-1931-mp099.json new file mode 100644 index 000000000000..3a3b73b7decc --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-mp099.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-mp099", + "name": "Tiger Fighter 1931 MP099", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180874" + ], + "release_date": "2021-08-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-mp100.json b/data/game/ti/tiger-fighter-1931-mp100.json new file mode 100644 index 000000000000..46e355ed6826 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-mp100.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-mp100", + "name": "Tiger Fighter 1931 MP100", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180877" + ], + "release_date": "2021-08-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-sunset-mp001.json b/data/game/ti/tiger-fighter-1931-sunset-mp001.json new file mode 100644 index 000000000000..2dedc2e0ee14 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-sunset-mp001.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-sunset-mp001", + "name": "Tiger Fighter 1931 Sunset MP001", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180944" + ], + "release_date": "2021-07-27", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-sunset-mp002.json b/data/game/ti/tiger-fighter-1931-sunset-mp002.json new file mode 100644 index 000000000000..c8c958ed8ac1 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-sunset-mp002.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-sunset-mp002", + "name": "Tiger Fighter 1931 Sunset MP002", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180946" + ], + "release_date": "2021-07-27", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-sunset-mp003.json b/data/game/ti/tiger-fighter-1931-sunset-mp003.json new file mode 100644 index 000000000000..2defbf49a3fc --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-sunset-mp003.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-sunset-mp003", + "name": "Tiger Fighter 1931 Sunset MP003", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180949" + ], + "release_date": "2021-07-27", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-sunset-mp004.json b/data/game/ti/tiger-fighter-1931-sunset-mp004.json new file mode 100644 index 000000000000..d5074ccfc1f7 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-sunset-mp004.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-sunset-mp004", + "name": "Tiger Fighter 1931 Sunset MP004", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180951" + ], + "release_date": "2021-07-27", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-sunset-mp005.json b/data/game/ti/tiger-fighter-1931-sunset-mp005.json new file mode 100644 index 000000000000..9ace7b8289c6 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-sunset-mp005.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-sunset-mp005", + "name": "Tiger Fighter 1931 Sunset MP005", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180954" + ], + "release_date": "2021-07-27", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-sunset-mp006.json b/data/game/ti/tiger-fighter-1931-sunset-mp006.json new file mode 100644 index 000000000000..2fd4d18b514b --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-sunset-mp006.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-sunset-mp006", + "name": "Tiger Fighter 1931 Sunset MP006", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180955" + ], + "release_date": "2021-07-27", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-sunset-mp007.json b/data/game/ti/tiger-fighter-1931-sunset-mp007.json new file mode 100644 index 000000000000..53148cefa585 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-sunset-mp007.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-sunset-mp007", + "name": "Tiger Fighter 1931 Sunset MP007", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180957" + ], + "release_date": "2021-07-27", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-sunset-mp008.json b/data/game/ti/tiger-fighter-1931-sunset-mp008.json new file mode 100644 index 000000000000..e96e7bdc7653 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-sunset-mp008.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-sunset-mp008", + "name": "Tiger Fighter 1931 Sunset MP008", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180960" + ], + "release_date": "2021-07-27", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-sunset-mp009.json b/data/game/ti/tiger-fighter-1931-sunset-mp009.json new file mode 100644 index 000000000000..7d0c4968641d --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-sunset-mp009.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-sunset-mp009", + "name": "Tiger Fighter 1931 Sunset MP009", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180963" + ], + "release_date": "2021-07-27", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-sunset-mp010.json b/data/game/ti/tiger-fighter-1931-sunset-mp010.json new file mode 100644 index 000000000000..182475d0f091 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-sunset-mp010.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-sunset-mp010", + "name": "Tiger Fighter 1931 Sunset MP010", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180965" + ], + "release_date": "2021-07-27", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-sunset-mp011.json b/data/game/ti/tiger-fighter-1931-sunset-mp011.json new file mode 100644 index 000000000000..62b714d21cab --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-sunset-mp011.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-sunset-mp011", + "name": "Tiger Fighter 1931 Sunset MP011", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180968" + ], + "release_date": "2021-07-31", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-sunset-mp012.json b/data/game/ti/tiger-fighter-1931-sunset-mp012.json new file mode 100644 index 000000000000..fbdb9414a452 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-sunset-mp012.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-sunset-mp012", + "name": "Tiger Fighter 1931 Sunset MP012", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180970" + ], + "release_date": "2021-07-31", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-sunset-mp013.json b/data/game/ti/tiger-fighter-1931-sunset-mp013.json new file mode 100644 index 000000000000..cb47651bf962 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-sunset-mp013.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-sunset-mp013", + "name": "Tiger Fighter 1931 Sunset MP013", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180971" + ], + "release_date": "2021-07-31", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-sunset-mp014.json b/data/game/ti/tiger-fighter-1931-sunset-mp014.json new file mode 100644 index 000000000000..818de555fb8d --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-sunset-mp014.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-sunset-mp014", + "name": "Tiger Fighter 1931 Sunset MP014", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180973" + ], + "release_date": "2021-07-31", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-sunset-mp015.json b/data/game/ti/tiger-fighter-1931-sunset-mp015.json new file mode 100644 index 000000000000..dce5e3695b5a --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-sunset-mp015.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-sunset-mp015", + "name": "Tiger Fighter 1931 Sunset MP015", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180976" + ], + "release_date": "2021-07-31", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-sunset-mp016.json b/data/game/ti/tiger-fighter-1931-sunset-mp016.json new file mode 100644 index 000000000000..df3cb19bc913 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-sunset-mp016.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-sunset-mp016", + "name": "Tiger Fighter 1931 Sunset MP016", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180978" + ], + "release_date": "2021-07-31", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-sunset-mp017.json b/data/game/ti/tiger-fighter-1931-sunset-mp017.json new file mode 100644 index 000000000000..47c79dfc573c --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-sunset-mp017.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-sunset-mp017", + "name": "Tiger Fighter 1931 Sunset MP017", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180984" + ], + "release_date": "2021-07-31", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-sunset-mp018.json b/data/game/ti/tiger-fighter-1931-sunset-mp018.json new file mode 100644 index 000000000000..2620b94169bc --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-sunset-mp018.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-sunset-mp018", + "name": "Tiger Fighter 1931 Sunset MP018", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180995" + ], + "release_date": "2021-07-31", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-sunset-mp019.json b/data/game/ti/tiger-fighter-1931-sunset-mp019.json new file mode 100644 index 000000000000..c960dd89c203 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-sunset-mp019.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-sunset-mp019", + "name": "Tiger Fighter 1931 Sunset MP019", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181005" + ], + "release_date": "2021-07-31", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-sunset-mp020.json b/data/game/ti/tiger-fighter-1931-sunset-mp020.json new file mode 100644 index 000000000000..abc6c5c28838 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-sunset-mp020.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-sunset-mp020", + "name": "Tiger Fighter 1931 Sunset MP020", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181008" + ], + "release_date": "2021-07-31", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-sunset-mp021.json b/data/game/ti/tiger-fighter-1931-sunset-mp021.json new file mode 100644 index 000000000000..f07df257630e --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-sunset-mp021.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-sunset-mp021", + "name": "Tiger Fighter 1931 Sunset MP021", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181015" + ], + "release_date": "2021-08-14", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-sunset-mp022.json b/data/game/ti/tiger-fighter-1931-sunset-mp022.json new file mode 100644 index 000000000000..0265d6feab65 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-sunset-mp022.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-sunset-mp022", + "name": "Tiger Fighter 1931 Sunset MP022", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181025" + ], + "release_date": "2021-08-14", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-sunset-mp023.json b/data/game/ti/tiger-fighter-1931-sunset-mp023.json new file mode 100644 index 000000000000..e6187ff86529 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-sunset-mp023.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-sunset-mp023", + "name": "Tiger Fighter 1931 Sunset MP023", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181027" + ], + "release_date": "2021-08-14", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-sunset-mp024.json b/data/game/ti/tiger-fighter-1931-sunset-mp024.json new file mode 100644 index 000000000000..790fe1ead805 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-sunset-mp024.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-sunset-mp024", + "name": "Tiger Fighter 1931 Sunset MP024", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181029" + ], + "release_date": "2021-08-14", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-sunset-mp025.json b/data/game/ti/tiger-fighter-1931-sunset-mp025.json new file mode 100644 index 000000000000..9e99cfaafccc --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-sunset-mp025.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-sunset-mp025", + "name": "Tiger Fighter 1931 Sunset MP025", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181030" + ], + "release_date": "2021-08-14", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-sunset-mp026.json b/data/game/ti/tiger-fighter-1931-sunset-mp026.json new file mode 100644 index 000000000000..cdee2e12e1eb --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-sunset-mp026.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-sunset-mp026", + "name": "Tiger Fighter 1931 Sunset MP026", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181031" + ], + "release_date": "2021-08-14", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-sunset-mp027.json b/data/game/ti/tiger-fighter-1931-sunset-mp027.json new file mode 100644 index 000000000000..0d7e6cf0abca --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-sunset-mp027.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-sunset-mp027", + "name": "Tiger Fighter 1931 Sunset MP027", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181032" + ], + "release_date": "2021-08-14", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-sunset-mp028.json b/data/game/ti/tiger-fighter-1931-sunset-mp028.json new file mode 100644 index 000000000000..8599d9b1f82e --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-sunset-mp028.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-sunset-mp028", + "name": "Tiger Fighter 1931 Sunset MP028", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181035" + ], + "release_date": "2021-08-14", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-sunset-mp029.json b/data/game/ti/tiger-fighter-1931-sunset-mp029.json new file mode 100644 index 000000000000..8162495e8b5e --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-sunset-mp029.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-sunset-mp029", + "name": "Tiger Fighter 1931 Sunset MP029", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181038" + ], + "release_date": "2021-08-14", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-sunset-mp030.json b/data/game/ti/tiger-fighter-1931-sunset-mp030.json new file mode 100644 index 000000000000..0d76b5d4af5b --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-sunset-mp030.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-sunset-mp030", + "name": "Tiger Fighter 1931 Sunset MP030", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181040" + ], + "release_date": "2021-08-14", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-sunset-mp031.json b/data/game/ti/tiger-fighter-1931-sunset-mp031.json new file mode 100644 index 000000000000..10e8253e10a9 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-sunset-mp031.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-sunset-mp031", + "name": "Tiger Fighter 1931 Sunset MP031", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181041" + ], + "release_date": "2021-08-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-sunset-mp032.json b/data/game/ti/tiger-fighter-1931-sunset-mp032.json new file mode 100644 index 000000000000..7bc11aa01625 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-sunset-mp032.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-sunset-mp032", + "name": "Tiger Fighter 1931 Sunset MP032", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181044" + ], + "release_date": "2021-08-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-sunset-mp033.json b/data/game/ti/tiger-fighter-1931-sunset-mp033.json new file mode 100644 index 000000000000..e9817b074187 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-sunset-mp033.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-sunset-mp033", + "name": "Tiger Fighter 1931 Sunset MP033", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181045" + ], + "release_date": "2021-08-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-sunset-mp034.json b/data/game/ti/tiger-fighter-1931-sunset-mp034.json new file mode 100644 index 000000000000..5ccca8bd2159 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-sunset-mp034.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-sunset-mp034", + "name": "Tiger Fighter 1931 Sunset MP034", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181048" + ], + "release_date": "2021-08-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-sunset-mp035.json b/data/game/ti/tiger-fighter-1931-sunset-mp035.json new file mode 100644 index 000000000000..a24e505074d8 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-sunset-mp035.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-sunset-mp035", + "name": "Tiger Fighter 1931 Sunset MP035", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181049" + ], + "release_date": "2021-08-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-sunset-mp036.json b/data/game/ti/tiger-fighter-1931-sunset-mp036.json new file mode 100644 index 000000000000..9a0335616f43 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-sunset-mp036.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-sunset-mp036", + "name": "Tiger Fighter 1931 Sunset MP036", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181050" + ], + "release_date": "2021-08-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-sunset-mp037.json b/data/game/ti/tiger-fighter-1931-sunset-mp037.json new file mode 100644 index 000000000000..e37a6dffdbad --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-sunset-mp037.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-sunset-mp037", + "name": "Tiger Fighter 1931 Sunset MP037", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181052" + ], + "release_date": "2021-08-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-sunset-mp038.json b/data/game/ti/tiger-fighter-1931-sunset-mp038.json new file mode 100644 index 000000000000..9c03a1ebe8f8 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-sunset-mp038.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-sunset-mp038", + "name": "Tiger Fighter 1931 Sunset MP038", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181053" + ], + "release_date": "2021-08-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-sunset-mp039.json b/data/game/ti/tiger-fighter-1931-sunset-mp039.json new file mode 100644 index 000000000000..3fd5aab592d8 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-sunset-mp039.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-sunset-mp039", + "name": "Tiger Fighter 1931 Sunset MP039", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181056" + ], + "release_date": "2021-08-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-sunset-mp040.json b/data/game/ti/tiger-fighter-1931-sunset-mp040.json new file mode 100644 index 000000000000..e8315d71bc01 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-sunset-mp040.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-sunset-mp040", + "name": "Tiger Fighter 1931 Sunset MP040", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181057" + ], + "release_date": "2021-08-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-sunset-mp041.json b/data/game/ti/tiger-fighter-1931-sunset-mp041.json new file mode 100644 index 000000000000..3944bb0fea2f --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-sunset-mp041.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-sunset-mp041", + "name": "Tiger Fighter 1931 Sunset MP041", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181060" + ], + "release_date": "2021-08-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-sunset-mp042.json b/data/game/ti/tiger-fighter-1931-sunset-mp042.json new file mode 100644 index 000000000000..66490e55bd8f --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-sunset-mp042.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-sunset-mp042", + "name": "Tiger Fighter 1931 Sunset MP042", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181061" + ], + "release_date": "2021-08-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-sunset-mp043.json b/data/game/ti/tiger-fighter-1931-sunset-mp043.json new file mode 100644 index 000000000000..f8e7b7fe3ef5 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-sunset-mp043.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-sunset-mp043", + "name": "Tiger Fighter 1931 Sunset MP043", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181062" + ], + "release_date": "2021-08-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-sunset-mp044.json b/data/game/ti/tiger-fighter-1931-sunset-mp044.json new file mode 100644 index 000000000000..981796d44db9 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-sunset-mp044.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-sunset-mp044", + "name": "Tiger Fighter 1931 Sunset MP044", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181063" + ], + "release_date": "2021-08-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-sunset-mp045.json b/data/game/ti/tiger-fighter-1931-sunset-mp045.json new file mode 100644 index 000000000000..24ef086c0d89 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-sunset-mp045.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-sunset-mp045", + "name": "Tiger Fighter 1931 Sunset MP045", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181065" + ], + "release_date": "2021-08-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-sunset-mp046.json b/data/game/ti/tiger-fighter-1931-sunset-mp046.json new file mode 100644 index 000000000000..6a50b80bc4b0 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-sunset-mp046.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-sunset-mp046", + "name": "Tiger Fighter 1931 Sunset MP046", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181068" + ], + "release_date": "2021-09-01", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-sunset-mp047.json b/data/game/ti/tiger-fighter-1931-sunset-mp047.json new file mode 100644 index 000000000000..f98cb5c3ddb0 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-sunset-mp047.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-sunset-mp047", + "name": "Tiger Fighter 1931 Sunset MP047", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181071" + ], + "release_date": "2021-09-01", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-sunset-mp048.json b/data/game/ti/tiger-fighter-1931-sunset-mp048.json new file mode 100644 index 000000000000..b669e05d0b84 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-sunset-mp048.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-sunset-mp048", + "name": "Tiger Fighter 1931 Sunset MP048", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181073" + ], + "release_date": "2021-09-01", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-sunset-mp049.json b/data/game/ti/tiger-fighter-1931-sunset-mp049.json new file mode 100644 index 000000000000..b2d854964424 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-sunset-mp049.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-sunset-mp049", + "name": "Tiger Fighter 1931 Sunset MP049", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181075" + ], + "release_date": "2021-09-01", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-sunset-mp050.json b/data/game/ti/tiger-fighter-1931-sunset-mp050.json new file mode 100644 index 000000000000..fc32a1b568e9 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-sunset-mp050.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-sunset-mp050", + "name": "Tiger Fighter 1931 Sunset MP050", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181078" + ], + "release_date": "2021-09-01", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-sunset-mp051.json b/data/game/ti/tiger-fighter-1931-sunset-mp051.json new file mode 100644 index 000000000000..fad286b18cf4 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-sunset-mp051.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-sunset-mp051", + "name": "Tiger Fighter 1931 Sunset MP051", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181080" + ], + "release_date": "2021-09-01", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-sunset-mp052.json b/data/game/ti/tiger-fighter-1931-sunset-mp052.json new file mode 100644 index 000000000000..1426cf78efae --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-sunset-mp052.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-sunset-mp052", + "name": "Tiger Fighter 1931 Sunset MP052", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181082" + ], + "release_date": "2021-09-01", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-sunset-mp053.json b/data/game/ti/tiger-fighter-1931-sunset-mp053.json new file mode 100644 index 000000000000..aaaf576a377d --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-sunset-mp053.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-sunset-mp053", + "name": "Tiger Fighter 1931 Sunset MP053", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181083" + ], + "release_date": "2021-09-01", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-sunset-mp054.json b/data/game/ti/tiger-fighter-1931-sunset-mp054.json new file mode 100644 index 000000000000..35c60c965d8b --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-sunset-mp054.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-sunset-mp054", + "name": "Tiger Fighter 1931 Sunset MP054", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181085" + ], + "release_date": "2021-09-01", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-sunset-mp055.json b/data/game/ti/tiger-fighter-1931-sunset-mp055.json new file mode 100644 index 000000000000..bd6485fc81c3 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-sunset-mp055.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-sunset-mp055", + "name": "Tiger Fighter 1931 Sunset MP055", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181086" + ], + "release_date": "2021-09-01", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-sunset-mp056.json b/data/game/ti/tiger-fighter-1931-sunset-mp056.json new file mode 100644 index 000000000000..839ed78f8e4e --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-sunset-mp056.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-sunset-mp056", + "name": "Tiger Fighter 1931 Sunset MP056", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181088" + ], + "release_date": "2021-09-01", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-sunset-mp057.json b/data/game/ti/tiger-fighter-1931-sunset-mp057.json new file mode 100644 index 000000000000..a64828890499 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-sunset-mp057.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-sunset-mp057", + "name": "Tiger Fighter 1931 Sunset MP057", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181089" + ], + "release_date": "2021-09-01", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-sunset-mp058.json b/data/game/ti/tiger-fighter-1931-sunset-mp058.json new file mode 100644 index 000000000000..b1c42435b3f4 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-sunset-mp058.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-sunset-mp058", + "name": "Tiger Fighter 1931 Sunset MP058", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181091" + ], + "release_date": "2021-09-01", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-sunset-mp059.json b/data/game/ti/tiger-fighter-1931-sunset-mp059.json new file mode 100644 index 000000000000..0f3368c3b3cd --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-sunset-mp059.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-sunset-mp059", + "name": "Tiger Fighter 1931 Sunset MP059", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181093" + ], + "release_date": "2021-09-01", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-sunset-mp060.json b/data/game/ti/tiger-fighter-1931-sunset-mp060.json new file mode 100644 index 000000000000..bab24df5cf75 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-sunset-mp060.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-sunset-mp060", + "name": "Tiger Fighter 1931 Sunset MP060", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181096" + ], + "release_date": "2021-09-01", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-sunset-mp061.json b/data/game/ti/tiger-fighter-1931-sunset-mp061.json new file mode 100644 index 000000000000..41562e71882c --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-sunset-mp061.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-sunset-mp061", + "name": "Tiger Fighter 1931 Sunset MP061", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181098" + ], + "release_date": "2021-09-09", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-sunset-mp062.json b/data/game/ti/tiger-fighter-1931-sunset-mp062.json new file mode 100644 index 000000000000..3ca68f9bbebc --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-sunset-mp062.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-sunset-mp062", + "name": "Tiger Fighter 1931 Sunset MP062", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181100" + ], + "release_date": "2021-09-09", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-sunset-mp063.json b/data/game/ti/tiger-fighter-1931-sunset-mp063.json new file mode 100644 index 000000000000..db1b52f8e2dd --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-sunset-mp063.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-sunset-mp063", + "name": "Tiger Fighter 1931 Sunset MP063", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181101" + ], + "release_date": "2021-09-09", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-sunset-mp064.json b/data/game/ti/tiger-fighter-1931-sunset-mp064.json new file mode 100644 index 000000000000..01370755b43a --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-sunset-mp064.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-sunset-mp064", + "name": "Tiger Fighter 1931 Sunset MP064", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181103" + ], + "release_date": "2021-09-09", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-sunset-mp065.json b/data/game/ti/tiger-fighter-1931-sunset-mp065.json new file mode 100644 index 000000000000..cd68a8ae745c --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-sunset-mp065.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-sunset-mp065", + "name": "Tiger Fighter 1931 Sunset MP065", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181105" + ], + "release_date": "2021-09-09", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-sunset-mp066.json b/data/game/ti/tiger-fighter-1931-sunset-mp066.json new file mode 100644 index 000000000000..4a29e99f1b09 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-sunset-mp066.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-sunset-mp066", + "name": "Tiger Fighter 1931 Sunset MP066", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181107" + ], + "release_date": "2021-09-09", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-sunset-mp067.json b/data/game/ti/tiger-fighter-1931-sunset-mp067.json new file mode 100644 index 000000000000..aa334b9d7c1a --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-sunset-mp067.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-sunset-mp067", + "name": "Tiger Fighter 1931 Sunset MP067", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181108" + ], + "release_date": "2021-09-09", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-sunset-mp068.json b/data/game/ti/tiger-fighter-1931-sunset-mp068.json new file mode 100644 index 000000000000..beb0e001bf10 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-sunset-mp068.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-sunset-mp068", + "name": "Tiger Fighter 1931 Sunset MP068", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181110" + ], + "release_date": "2021-09-09", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-sunset-mp069.json b/data/game/ti/tiger-fighter-1931-sunset-mp069.json new file mode 100644 index 000000000000..a09a2676b9ae --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-sunset-mp069.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-sunset-mp069", + "name": "Tiger Fighter 1931 Sunset MP069", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181113" + ], + "release_date": "2021-09-09", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-sunset-mp070.json b/data/game/ti/tiger-fighter-1931-sunset-mp070.json new file mode 100644 index 000000000000..8731ef419983 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-sunset-mp070.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-sunset-mp070", + "name": "Tiger Fighter 1931 Sunset MP070", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181116" + ], + "release_date": "2021-09-09", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-sunset-mp071.json b/data/game/ti/tiger-fighter-1931-sunset-mp071.json new file mode 100644 index 000000000000..a5ed38cedc44 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-sunset-mp071.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-sunset-mp071", + "name": "Tiger Fighter 1931 Sunset MP071", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181117" + ], + "release_date": "2021-09-11", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-sunset-mp072.json b/data/game/ti/tiger-fighter-1931-sunset-mp072.json new file mode 100644 index 000000000000..7d6a1f9adb1b --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-sunset-mp072.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-sunset-mp072", + "name": "Tiger Fighter 1931 Sunset MP072", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181118" + ], + "release_date": "2021-09-11", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-sunset-mp073.json b/data/game/ti/tiger-fighter-1931-sunset-mp073.json new file mode 100644 index 000000000000..836c11b7e5b5 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-sunset-mp073.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-sunset-mp073", + "name": "Tiger Fighter 1931 Sunset MP073", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181123" + ], + "release_date": "2021-09-11", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-sunset-mp074.json b/data/game/ti/tiger-fighter-1931-sunset-mp074.json new file mode 100644 index 000000000000..92b3ef7f9891 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-sunset-mp074.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-sunset-mp074", + "name": "Tiger Fighter 1931 Sunset MP074", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181125" + ], + "release_date": "2021-09-11", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-sunset-mp075.json b/data/game/ti/tiger-fighter-1931-sunset-mp075.json new file mode 100644 index 000000000000..52260c5503dc --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-sunset-mp075.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-sunset-mp075", + "name": "Tiger Fighter 1931 Sunset MP075", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181127" + ], + "release_date": "2021-09-11", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-sunset-mp076.json b/data/game/ti/tiger-fighter-1931-sunset-mp076.json new file mode 100644 index 000000000000..c54ce7fa62e1 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-sunset-mp076.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-sunset-mp076", + "name": "Tiger Fighter 1931 Sunset MP076", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181130" + ], + "release_date": "2021-09-11", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-sunset-mp077.json b/data/game/ti/tiger-fighter-1931-sunset-mp077.json new file mode 100644 index 000000000000..051568137a45 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-sunset-mp077.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-sunset-mp077", + "name": "Tiger Fighter 1931 Sunset MP077", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181135" + ], + "release_date": "2021-09-11", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-sunset-mp078.json b/data/game/ti/tiger-fighter-1931-sunset-mp078.json new file mode 100644 index 000000000000..63c676f74c3c --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-sunset-mp078.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-sunset-mp078", + "name": "Tiger Fighter 1931 Sunset MP078", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181137" + ], + "release_date": "2021-09-11", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-sunset-mp079.json b/data/game/ti/tiger-fighter-1931-sunset-mp079.json new file mode 100644 index 000000000000..1d9137a7f011 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-sunset-mp079.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-sunset-mp079", + "name": "Tiger Fighter 1931 Sunset MP079", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181138" + ], + "release_date": "2021-09-11", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-sunset-mp080.json b/data/game/ti/tiger-fighter-1931-sunset-mp080.json new file mode 100644 index 000000000000..77ffd85da6cd --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-sunset-mp080.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-sunset-mp080", + "name": "Tiger Fighter 1931 Sunset MP080", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181146" + ], + "release_date": "2021-09-11", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-sunset-mp081.json b/data/game/ti/tiger-fighter-1931-sunset-mp081.json new file mode 100644 index 000000000000..f808dd08ee73 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-sunset-mp081.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-sunset-mp081", + "name": "Tiger Fighter 1931 Sunset MP081", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181148" + ], + "release_date": "2021-09-12", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-sunset-mp082.json b/data/game/ti/tiger-fighter-1931-sunset-mp082.json new file mode 100644 index 000000000000..70069041ebc3 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-sunset-mp082.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-sunset-mp082", + "name": "Tiger Fighter 1931 Sunset MP082", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181150" + ], + "release_date": "2021-09-12", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-sunset-mp083.json b/data/game/ti/tiger-fighter-1931-sunset-mp083.json new file mode 100644 index 000000000000..73da366646fd --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-sunset-mp083.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-sunset-mp083", + "name": "Tiger Fighter 1931 Sunset MP083", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181151" + ], + "release_date": "2021-09-12", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-sunset-mp084.json b/data/game/ti/tiger-fighter-1931-sunset-mp084.json new file mode 100644 index 000000000000..11197a721bca --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-sunset-mp084.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-sunset-mp084", + "name": "Tiger Fighter 1931 Sunset MP084", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181153" + ], + "release_date": "2021-09-12", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-sunset-mp085.json b/data/game/ti/tiger-fighter-1931-sunset-mp085.json new file mode 100644 index 000000000000..8ad2a8e80f12 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-sunset-mp085.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-sunset-mp085", + "name": "Tiger Fighter 1931 Sunset MP085", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181155" + ], + "release_date": "2021-09-12", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-sunset-mp086.json b/data/game/ti/tiger-fighter-1931-sunset-mp086.json new file mode 100644 index 000000000000..19eb9a7f006e --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-sunset-mp086.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-sunset-mp086", + "name": "Tiger Fighter 1931 Sunset MP086", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181157" + ], + "release_date": "2021-09-12", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-sunset-mp087.json b/data/game/ti/tiger-fighter-1931-sunset-mp087.json new file mode 100644 index 000000000000..f6adc75cb77d --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-sunset-mp087.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-sunset-mp087", + "name": "Tiger Fighter 1931 Sunset MP087", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181159" + ], + "release_date": "2021-09-12", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-sunset-mp088.json b/data/game/ti/tiger-fighter-1931-sunset-mp088.json new file mode 100644 index 000000000000..f7517197a64f --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-sunset-mp088.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-sunset-mp088", + "name": "Tiger Fighter 1931 Sunset MP088", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181161" + ], + "release_date": "2021-09-12", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-sunset-mp089.json b/data/game/ti/tiger-fighter-1931-sunset-mp089.json new file mode 100644 index 000000000000..0fef64040e2e --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-sunset-mp089.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-sunset-mp089", + "name": "Tiger Fighter 1931 Sunset MP089", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181164" + ], + "release_date": "2021-09-12", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-sunset-mp090.json b/data/game/ti/tiger-fighter-1931-sunset-mp090.json new file mode 100644 index 000000000000..cce8908d567b --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-sunset-mp090.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-sunset-mp090", + "name": "Tiger Fighter 1931 Sunset MP090", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181166" + ], + "release_date": "2021-09-12", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-sunset-mp091.json b/data/game/ti/tiger-fighter-1931-sunset-mp091.json new file mode 100644 index 000000000000..6c03824eb580 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-sunset-mp091.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-sunset-mp091", + "name": "Tiger Fighter 1931 Sunset MP091", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181167" + ], + "release_date": "2021-09-12", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-sunset-mp092.json b/data/game/ti/tiger-fighter-1931-sunset-mp092.json new file mode 100644 index 000000000000..e8d1cdaba121 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-sunset-mp092.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-sunset-mp092", + "name": "Tiger Fighter 1931 Sunset MP092", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181169" + ], + "release_date": "2021-09-12", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-sunset-mp093.json b/data/game/ti/tiger-fighter-1931-sunset-mp093.json new file mode 100644 index 000000000000..130fed0fdecd --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-sunset-mp093.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-sunset-mp093", + "name": "Tiger Fighter 1931 Sunset MP093", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181170" + ], + "release_date": "2021-09-12", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-sunset-mp094.json b/data/game/ti/tiger-fighter-1931-sunset-mp094.json new file mode 100644 index 000000000000..7037a9a6d3cb --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-sunset-mp094.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-sunset-mp094", + "name": "Tiger Fighter 1931 Sunset MP094", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181171" + ], + "release_date": "2021-09-12", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-sunset-mp095.json b/data/game/ti/tiger-fighter-1931-sunset-mp095.json new file mode 100644 index 000000000000..d360ff854281 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-sunset-mp095.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-sunset-mp095", + "name": "Tiger Fighter 1931 Sunset MP095", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181173" + ], + "release_date": "2021-09-12", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-sunset-mp096.json b/data/game/ti/tiger-fighter-1931-sunset-mp096.json new file mode 100644 index 000000000000..eaef1aaa0528 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-sunset-mp096.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-sunset-mp096", + "name": "Tiger Fighter 1931 Sunset MP096", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181175" + ], + "release_date": "2021-09-12", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-sunset-mp097.json b/data/game/ti/tiger-fighter-1931-sunset-mp097.json new file mode 100644 index 000000000000..9240bfffb9a1 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-sunset-mp097.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-sunset-mp097", + "name": "Tiger Fighter 1931 Sunset MP097", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181176" + ], + "release_date": "2021-09-12", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-sunset-mp098.json b/data/game/ti/tiger-fighter-1931-sunset-mp098.json new file mode 100644 index 000000000000..93e2559e7f6b --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-sunset-mp098.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-sunset-mp098", + "name": "Tiger Fighter 1931 Sunset MP098", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181178" + ], + "release_date": "2021-09-12", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-sunset-mp099.json b/data/game/ti/tiger-fighter-1931-sunset-mp099.json new file mode 100644 index 000000000000..d189e98734ca --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-sunset-mp099.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-sunset-mp099", + "name": "Tiger Fighter 1931 Sunset MP099", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181179" + ], + "release_date": "2021-09-12", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-sunset-mp100.json b/data/game/ti/tiger-fighter-1931-sunset-mp100.json new file mode 100644 index 000000000000..ac25590ce7c1 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-sunset-mp100.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-sunset-mp100", + "name": "Tiger Fighter 1931 Sunset MP100", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181181" + ], + "release_date": "2021-09-12", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-mp001.json b/data/game/ti/tiger-fighter-1931-tora-mp001.json new file mode 100644 index 000000000000..c7452b2fc95c --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-mp001.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-mp001", + "name": "Tiger Fighter 1931 Tora! MP001", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181182" + ], + "release_date": "2021-07-31", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-mp002.json b/data/game/ti/tiger-fighter-1931-tora-mp002.json new file mode 100644 index 000000000000..6a11325e79f8 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-mp002.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-mp002", + "name": "Tiger Fighter 1931 Tora! MP002", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181186" + ], + "release_date": "2021-07-31", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-mp003.json b/data/game/ti/tiger-fighter-1931-tora-mp003.json new file mode 100644 index 000000000000..9a7765d53c53 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-mp003.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-mp003", + "name": "Tiger Fighter 1931 Tora! MP003", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181195" + ], + "release_date": "2021-07-31", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-mp004.json b/data/game/ti/tiger-fighter-1931-tora-mp004.json new file mode 100644 index 000000000000..4544f964552b --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-mp004.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-mp004", + "name": "Tiger Fighter 1931 Tora! MP004", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181196" + ], + "release_date": "2021-07-31", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-mp005.json b/data/game/ti/tiger-fighter-1931-tora-mp005.json new file mode 100644 index 000000000000..f609ac692bf2 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-mp005.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-mp005", + "name": "Tiger Fighter 1931 Tora! MP005", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181198" + ], + "release_date": "2021-07-31", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-mp006.json b/data/game/ti/tiger-fighter-1931-tora-mp006.json new file mode 100644 index 000000000000..ef6d52d2f753 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-mp006.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-mp006", + "name": "Tiger Fighter 1931 Tora! MP006", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181201" + ], + "release_date": "2021-07-31", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-mp007.json b/data/game/ti/tiger-fighter-1931-tora-mp007.json new file mode 100644 index 000000000000..8040a1850d11 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-mp007.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-mp007", + "name": "Tiger Fighter 1931 Tora! MP007", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181203" + ], + "release_date": "2021-07-31", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-mp008.json b/data/game/ti/tiger-fighter-1931-tora-mp008.json new file mode 100644 index 000000000000..e52e8a7db837 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-mp008.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-mp008", + "name": "Tiger Fighter 1931 Tora! MP008", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181205" + ], + "release_date": "2021-07-31", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-mp009.json b/data/game/ti/tiger-fighter-1931-tora-mp009.json new file mode 100644 index 000000000000..315d4d36c87d --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-mp009.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-mp009", + "name": "Tiger Fighter 1931 Tora! MP009", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181208" + ], + "release_date": "2021-07-31", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-mp010.json b/data/game/ti/tiger-fighter-1931-tora-mp010.json new file mode 100644 index 000000000000..526d547f7b9d --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-mp010.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-mp010", + "name": "Tiger Fighter 1931 Tora! MP010", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181209" + ], + "release_date": "2021-07-31", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-mp011.json b/data/game/ti/tiger-fighter-1931-tora-mp011.json new file mode 100644 index 000000000000..635a4243d094 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-mp011.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-mp011", + "name": "Tiger Fighter 1931 Tora! MP011", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181210" + ], + "release_date": "2021-08-14", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-mp012.json b/data/game/ti/tiger-fighter-1931-tora-mp012.json new file mode 100644 index 000000000000..f06af6ec9040 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-mp012.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-mp012", + "name": "Tiger Fighter 1931 Tora! MP012", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181212" + ], + "release_date": "2021-08-14", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-mp013.json b/data/game/ti/tiger-fighter-1931-tora-mp013.json new file mode 100644 index 000000000000..eb84f7613fd6 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-mp013.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-mp013", + "name": "Tiger Fighter 1931 Tora! MP013", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181213" + ], + "release_date": "2021-08-14", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-mp014.json b/data/game/ti/tiger-fighter-1931-tora-mp014.json new file mode 100644 index 000000000000..2e503d613bea --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-mp014.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-mp014", + "name": "Tiger Fighter 1931 Tora! MP014", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181215" + ], + "release_date": "2021-08-14", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-mp015.json b/data/game/ti/tiger-fighter-1931-tora-mp015.json new file mode 100644 index 000000000000..d6e823baced2 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-mp015.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-mp015", + "name": "Tiger Fighter 1931 Tora! MP015", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181216" + ], + "release_date": "2021-08-14", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-mp016.json b/data/game/ti/tiger-fighter-1931-tora-mp016.json new file mode 100644 index 000000000000..fe585adc519d --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-mp016.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-mp016", + "name": "Tiger Fighter 1931 Tora! MP016", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181224" + ], + "release_date": "2021-08-14", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-mp017.json b/data/game/ti/tiger-fighter-1931-tora-mp017.json new file mode 100644 index 000000000000..e1b9b304f8b8 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-mp017.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-mp017", + "name": "Tiger Fighter 1931 Tora! MP017", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181229" + ], + "release_date": "2021-08-14", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-mp018.json b/data/game/ti/tiger-fighter-1931-tora-mp018.json new file mode 100644 index 000000000000..672f8e3c057e --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-mp018.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-mp018", + "name": "Tiger Fighter 1931 Tora! MP018", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181230" + ], + "release_date": "2021-08-14", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-mp019.json b/data/game/ti/tiger-fighter-1931-tora-mp019.json new file mode 100644 index 000000000000..b4af31b9060a --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-mp019.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-mp019", + "name": "Tiger Fighter 1931 Tora! MP019", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181232" + ], + "release_date": "2021-08-14", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-mp020.json b/data/game/ti/tiger-fighter-1931-tora-mp020.json new file mode 100644 index 000000000000..68c679dc218a --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-mp020.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-mp020", + "name": "Tiger Fighter 1931 Tora! MP020", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181233" + ], + "release_date": "2021-08-14", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-mp021.json b/data/game/ti/tiger-fighter-1931-tora-mp021.json new file mode 100644 index 000000000000..c0ee78e5e68a --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-mp021.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-mp021", + "name": "Tiger Fighter 1931 Tora! MP021", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181235" + ], + "release_date": "2021-08-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-mp022.json b/data/game/ti/tiger-fighter-1931-tora-mp022.json new file mode 100644 index 000000000000..8f297b71f077 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-mp022.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-mp022", + "name": "Tiger Fighter 1931 Tora! MP022", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181237" + ], + "release_date": "2021-08-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-mp023.json b/data/game/ti/tiger-fighter-1931-tora-mp023.json new file mode 100644 index 000000000000..8df8ed7e7d31 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-mp023.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-mp023", + "name": "Tiger Fighter 1931 Tora! MP023", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181246" + ], + "release_date": "2021-08-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-mp024.json b/data/game/ti/tiger-fighter-1931-tora-mp024.json new file mode 100644 index 000000000000..01ae5f948241 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-mp024.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-mp024", + "name": "Tiger Fighter 1931 Tora! MP024", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181256" + ], + "release_date": "2021-08-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-mp025.json b/data/game/ti/tiger-fighter-1931-tora-mp025.json new file mode 100644 index 000000000000..89cb16c65739 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-mp025.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-mp025", + "name": "Tiger Fighter 1931 Tora! MP025", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181257" + ], + "release_date": "2021-08-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-mp026.json b/data/game/ti/tiger-fighter-1931-tora-mp026.json new file mode 100644 index 000000000000..33acc889cdb7 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-mp026.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-mp026", + "name": "Tiger Fighter 1931 Tora! MP026", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181260" + ], + "release_date": "2021-08-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-mp027.json b/data/game/ti/tiger-fighter-1931-tora-mp027.json new file mode 100644 index 000000000000..a7a012167d7b --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-mp027.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-mp027", + "name": "Tiger Fighter 1931 Tora! MP027", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181265" + ], + "release_date": "2021-08-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-mp028.json b/data/game/ti/tiger-fighter-1931-tora-mp028.json new file mode 100644 index 000000000000..bb9c858f0454 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-mp028.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-mp028", + "name": "Tiger Fighter 1931 Tora! MP028", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181268" + ], + "release_date": "2021-08-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-mp029.json b/data/game/ti/tiger-fighter-1931-tora-mp029.json new file mode 100644 index 000000000000..02fe9c0bc4e5 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-mp029.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-mp029", + "name": "Tiger Fighter 1931 Tora! MP029", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181271" + ], + "release_date": "2021-08-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-mp030.json b/data/game/ti/tiger-fighter-1931-tora-mp030.json new file mode 100644 index 000000000000..dcf6eea488ab --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-mp030.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-mp030", + "name": "Tiger Fighter 1931 Tora! MP030", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181273" + ], + "release_date": "2021-08-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-mp031.json b/data/game/ti/tiger-fighter-1931-tora-mp031.json new file mode 100644 index 000000000000..5bdb98591869 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-mp031.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-mp031", + "name": "Tiger Fighter 1931 Tora! MP031", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181276" + ], + "release_date": "2021-08-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-mp032.json b/data/game/ti/tiger-fighter-1931-tora-mp032.json new file mode 100644 index 000000000000..8cf2698585d6 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-mp032.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-mp032", + "name": "Tiger Fighter 1931 Tora! MP032", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181278" + ], + "release_date": "2021-08-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-mp033.json b/data/game/ti/tiger-fighter-1931-tora-mp033.json new file mode 100644 index 000000000000..f418c50ce94e --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-mp033.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-mp033", + "name": "Tiger Fighter 1931 Tora! MP033", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181280" + ], + "release_date": "2021-08-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-mp034.json b/data/game/ti/tiger-fighter-1931-tora-mp034.json new file mode 100644 index 000000000000..02962894a02b --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-mp034.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-mp034", + "name": "Tiger Fighter 1931 Tora! MP034", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181281" + ], + "release_date": "2021-08-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-mp035.json b/data/game/ti/tiger-fighter-1931-tora-mp035.json new file mode 100644 index 000000000000..a3fe394409af --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-mp035.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-mp035", + "name": "Tiger Fighter 1931 Tora! MP035", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181282" + ], + "release_date": "2021-08-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-mp036.json b/data/game/ti/tiger-fighter-1931-tora-mp036.json new file mode 100644 index 000000000000..6f709941eae3 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-mp036.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-mp036", + "name": "Tiger Fighter 1931 Tora! MP036", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181283" + ], + "release_date": "2021-09-01", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-mp037.json b/data/game/ti/tiger-fighter-1931-tora-mp037.json new file mode 100644 index 000000000000..0d6ea1ac2dd9 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-mp037.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-mp037", + "name": "Tiger Fighter 1931 Tora! MP037", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181285" + ], + "release_date": "2021-09-01", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-mp038.json b/data/game/ti/tiger-fighter-1931-tora-mp038.json new file mode 100644 index 000000000000..38760b5fa26d --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-mp038.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-mp038", + "name": "Tiger Fighter 1931 Tora! MP038", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181286" + ], + "release_date": "2021-09-01", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-mp039.json b/data/game/ti/tiger-fighter-1931-tora-mp039.json new file mode 100644 index 000000000000..1508a1845e44 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-mp039.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-mp039", + "name": "Tiger Fighter 1931 Tora! MP039", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181290" + ], + "release_date": "2021-09-01", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-mp040.json b/data/game/ti/tiger-fighter-1931-tora-mp040.json new file mode 100644 index 000000000000..342467e2cb9f --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-mp040.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-mp040", + "name": "Tiger Fighter 1931 Tora! MP040", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181292" + ], + "release_date": "2021-09-01", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-mp041.json b/data/game/ti/tiger-fighter-1931-tora-mp041.json new file mode 100644 index 000000000000..589313858f10 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-mp041.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-mp041", + "name": "Tiger Fighter 1931 Tora! MP041", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181294" + ], + "release_date": "2021-09-01", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-mp042.json b/data/game/ti/tiger-fighter-1931-tora-mp042.json new file mode 100644 index 000000000000..ce8cfe1eae0a --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-mp042.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-mp042", + "name": "Tiger Fighter 1931 Tora! MP042", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181295" + ], + "release_date": "2021-09-01", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-mp043.json b/data/game/ti/tiger-fighter-1931-tora-mp043.json new file mode 100644 index 000000000000..a4942f9eefd0 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-mp043.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-mp043", + "name": "Tiger Fighter 1931 Tora! MP043", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181298" + ], + "release_date": "2021-09-01", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-mp044.json b/data/game/ti/tiger-fighter-1931-tora-mp044.json new file mode 100644 index 000000000000..b71610040163 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-mp044.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-mp044", + "name": "Tiger Fighter 1931 Tora! MP044", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181299" + ], + "release_date": "2021-09-01", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-mp045.json b/data/game/ti/tiger-fighter-1931-tora-mp045.json new file mode 100644 index 000000000000..2c7cc1db037d --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-mp045.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-mp045", + "name": "Tiger Fighter 1931 Tora! MP045", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181304" + ], + "release_date": "2021-09-01", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-mp046.json b/data/game/ti/tiger-fighter-1931-tora-mp046.json new file mode 100644 index 000000000000..94ff2d2b492f --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-mp046.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-mp046", + "name": "Tiger Fighter 1931 Tora! MP046", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181306" + ], + "release_date": "2021-09-01", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-mp047.json b/data/game/ti/tiger-fighter-1931-tora-mp047.json new file mode 100644 index 000000000000..8032359ab891 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-mp047.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-mp047", + "name": "Tiger Fighter 1931 Tora! MP047", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181309" + ], + "release_date": "2021-09-01", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-mp048.json b/data/game/ti/tiger-fighter-1931-tora-mp048.json new file mode 100644 index 000000000000..bc7ae5989e41 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-mp048.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-mp048", + "name": "Tiger Fighter 1931 Tora! MP048", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181314" + ], + "release_date": "2021-09-01", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-mp049.json b/data/game/ti/tiger-fighter-1931-tora-mp049.json new file mode 100644 index 000000000000..f81afca2e43a --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-mp049.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-mp049", + "name": "Tiger Fighter 1931 Tora! MP049", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181319" + ], + "release_date": "2021-09-01", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-mp050.json b/data/game/ti/tiger-fighter-1931-tora-mp050.json new file mode 100644 index 000000000000..7e5febf9b155 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-mp050.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-mp050", + "name": "Tiger Fighter 1931 Tora! MP050", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181321" + ], + "release_date": "2021-09-01", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-mp051.json b/data/game/ti/tiger-fighter-1931-tora-mp051.json new file mode 100644 index 000000000000..7a3ad4b725fc --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-mp051.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-mp051", + "name": "Tiger Fighter 1931 Tora! MP051", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181322" + ], + "release_date": "2021-09-09", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-mp052.json b/data/game/ti/tiger-fighter-1931-tora-mp052.json new file mode 100644 index 000000000000..5fdbb8aa61b7 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-mp052.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-mp052", + "name": "Tiger Fighter 1931 Tora! MP052", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181324" + ], + "release_date": "2021-09-09", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-mp053.json b/data/game/ti/tiger-fighter-1931-tora-mp053.json new file mode 100644 index 000000000000..1b31cb48448e --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-mp053.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-mp053", + "name": "Tiger Fighter 1931 Tora! MP053", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181325" + ], + "release_date": "2021-09-09", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-mp054.json b/data/game/ti/tiger-fighter-1931-tora-mp054.json new file mode 100644 index 000000000000..222caafbfc2b --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-mp054.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-mp054", + "name": "Tiger Fighter 1931 Tora! MP054", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181326" + ], + "release_date": "2021-09-09", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-mp055.json b/data/game/ti/tiger-fighter-1931-tora-mp055.json new file mode 100644 index 000000000000..51229b459473 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-mp055.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-mp055", + "name": "Tiger Fighter 1931 Tora! MP055", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181327" + ], + "release_date": "2021-09-09", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-mp056.json b/data/game/ti/tiger-fighter-1931-tora-mp056.json new file mode 100644 index 000000000000..c9b9f314095c --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-mp056.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-mp056", + "name": "Tiger Fighter 1931 Tora! MP056", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181328" + ], + "release_date": "2021-09-09", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-mp057.json b/data/game/ti/tiger-fighter-1931-tora-mp057.json new file mode 100644 index 000000000000..b6a282195b03 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-mp057.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-mp057", + "name": "Tiger Fighter 1931 Tora! MP057", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181331" + ], + "release_date": "2021-09-09", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-mp058.json b/data/game/ti/tiger-fighter-1931-tora-mp058.json new file mode 100644 index 000000000000..d1a030f4cdf2 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-mp058.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-mp058", + "name": "Tiger Fighter 1931 Tora! MP058", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181333" + ], + "release_date": "2021-09-09", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-mp059.json b/data/game/ti/tiger-fighter-1931-tora-mp059.json new file mode 100644 index 000000000000..a2a082da0bc8 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-mp059.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-mp059", + "name": "Tiger Fighter 1931 Tora! MP059", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181335" + ], + "release_date": "2021-09-09", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-mp060.json b/data/game/ti/tiger-fighter-1931-tora-mp060.json new file mode 100644 index 000000000000..2ab18a659ad4 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-mp060.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-mp060", + "name": "Tiger Fighter 1931 Tora! MP060", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181339" + ], + "release_date": "2021-09-09", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-mp061.json b/data/game/ti/tiger-fighter-1931-tora-mp061.json new file mode 100644 index 000000000000..d15f2a862435 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-mp061.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-mp061", + "name": "Tiger Fighter 1931 Tora! MP061", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181340" + ], + "release_date": "2021-09-11", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-mp062.json b/data/game/ti/tiger-fighter-1931-tora-mp062.json new file mode 100644 index 000000000000..07a6abbd6644 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-mp062.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-mp062", + "name": "Tiger Fighter 1931 Tora! MP062", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181342" + ], + "release_date": "2021-09-11", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-mp063.json b/data/game/ti/tiger-fighter-1931-tora-mp063.json new file mode 100644 index 000000000000..1c714742514c --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-mp063.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-mp063", + "name": "Tiger Fighter 1931 Tora! MP063", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181344" + ], + "release_date": "2021-09-11", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-mp064.json b/data/game/ti/tiger-fighter-1931-tora-mp064.json new file mode 100644 index 000000000000..a65734979dfb --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-mp064.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-mp064", + "name": "Tiger Fighter 1931 Tora! MP064", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181346" + ], + "release_date": "2021-09-11", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-mp065.json b/data/game/ti/tiger-fighter-1931-tora-mp065.json new file mode 100644 index 000000000000..3c0b934b1e13 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-mp065.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-mp065", + "name": "Tiger Fighter 1931 Tora! MP065", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181348" + ], + "release_date": "2021-09-11", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-mp066.json b/data/game/ti/tiger-fighter-1931-tora-mp066.json new file mode 100644 index 000000000000..ff3d5350cd73 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-mp066.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-mp066", + "name": "Tiger Fighter 1931 Tora! MP066", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181350" + ], + "release_date": "2021-09-11", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-mp067.json b/data/game/ti/tiger-fighter-1931-tora-mp067.json new file mode 100644 index 000000000000..26435ff3998e --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-mp067.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-mp067", + "name": "Tiger Fighter 1931 Tora! MP067", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181351" + ], + "release_date": "2021-09-11", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-mp068.json b/data/game/ti/tiger-fighter-1931-tora-mp068.json new file mode 100644 index 000000000000..fef58b2c42a0 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-mp068.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-mp068", + "name": "Tiger Fighter 1931 Tora! MP068", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181352" + ], + "release_date": "2021-09-11", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-mp069.json b/data/game/ti/tiger-fighter-1931-tora-mp069.json new file mode 100644 index 000000000000..85c477f2db7f --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-mp069.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-mp069", + "name": "Tiger Fighter 1931 Tora! MP069", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181353" + ], + "release_date": "2021-09-11", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-mp070.json b/data/game/ti/tiger-fighter-1931-tora-mp070.json new file mode 100644 index 000000000000..d01019a80e1b --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-mp070.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-mp070", + "name": "Tiger Fighter 1931 Tora! MP070", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181355" + ], + "release_date": "2021-09-11", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-mp071.json b/data/game/ti/tiger-fighter-1931-tora-mp071.json new file mode 100644 index 000000000000..51321532116d --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-mp071.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-mp071", + "name": "Tiger Fighter 1931 Tora! MP071", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181356" + ], + "release_date": "2021-09-12", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-mp072.json b/data/game/ti/tiger-fighter-1931-tora-mp072.json new file mode 100644 index 000000000000..e377890fed06 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-mp072.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-mp072", + "name": "Tiger Fighter 1931 Tora! MP072", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181357" + ], + "release_date": "2021-09-12", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-mp073.json b/data/game/ti/tiger-fighter-1931-tora-mp073.json new file mode 100644 index 000000000000..e683d966589b --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-mp073.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-mp073", + "name": "Tiger Fighter 1931 Tora! MP073", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181361" + ], + "release_date": "2021-09-12", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-mp074.json b/data/game/ti/tiger-fighter-1931-tora-mp074.json new file mode 100644 index 000000000000..0a9c4155470c --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-mp074.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-mp074", + "name": "Tiger Fighter 1931 Tora! MP074", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181363" + ], + "release_date": "2021-09-12", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-mp075.json b/data/game/ti/tiger-fighter-1931-tora-mp075.json new file mode 100644 index 000000000000..04a1d2769542 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-mp075.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-mp075", + "name": "Tiger Fighter 1931 Tora! MP075", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181364" + ], + "release_date": "2021-09-12", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-mp076.json b/data/game/ti/tiger-fighter-1931-tora-mp076.json new file mode 100644 index 000000000000..e691ed995d74 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-mp076.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-mp076", + "name": "Tiger Fighter 1931 Tora! MP076", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181367" + ], + "release_date": "2021-09-12", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-mp077.json b/data/game/ti/tiger-fighter-1931-tora-mp077.json new file mode 100644 index 000000000000..bdf2068ffa32 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-mp077.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-mp077", + "name": "Tiger Fighter 1931 Tora! MP077", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181369" + ], + "release_date": "2021-09-12", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-mp078.json b/data/game/ti/tiger-fighter-1931-tora-mp078.json new file mode 100644 index 000000000000..8053c201fd9c --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-mp078.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-mp078", + "name": "Tiger Fighter 1931 Tora! MP078", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181372" + ], + "release_date": "2021-09-12", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-mp079.json b/data/game/ti/tiger-fighter-1931-tora-mp079.json new file mode 100644 index 000000000000..6082ee1519c7 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-mp079.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-mp079", + "name": "Tiger Fighter 1931 Tora! MP079", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181374" + ], + "release_date": "2021-09-12", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-mp080.json b/data/game/ti/tiger-fighter-1931-tora-mp080.json new file mode 100644 index 000000000000..611384b80403 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-mp080.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-mp080", + "name": "Tiger Fighter 1931 Tora! MP080", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181378" + ], + "release_date": "2021-09-12", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-mp081.json b/data/game/ti/tiger-fighter-1931-tora-mp081.json new file mode 100644 index 000000000000..c9fc79103952 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-mp081.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-mp081", + "name": "Tiger Fighter 1931 Tora! MP081", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181381" + ], + "release_date": "2021-09-12", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-mp082.json b/data/game/ti/tiger-fighter-1931-tora-mp082.json new file mode 100644 index 000000000000..a04d54f9ef1a --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-mp082.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-mp082", + "name": "Tiger Fighter 1931 Tora! MP082", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181393" + ], + "release_date": "2021-09-12", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-mp083.json b/data/game/ti/tiger-fighter-1931-tora-mp083.json new file mode 100644 index 000000000000..d025a75bb974 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-mp083.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-mp083", + "name": "Tiger Fighter 1931 Tora! MP083", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181395" + ], + "release_date": "2021-09-12", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-mp084.json b/data/game/ti/tiger-fighter-1931-tora-mp084.json new file mode 100644 index 000000000000..80eaf8b52327 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-mp084.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-mp084", + "name": "Tiger Fighter 1931 Tora! MP084", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181397" + ], + "release_date": "2021-09-12", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-mp085.json b/data/game/ti/tiger-fighter-1931-tora-mp085.json new file mode 100644 index 000000000000..bcc46e3e01c1 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-mp085.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-mp085", + "name": "Tiger Fighter 1931 Tora! MP085", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181398" + ], + "release_date": "2021-09-12", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-mp086.json b/data/game/ti/tiger-fighter-1931-tora-mp086.json new file mode 100644 index 000000000000..54f0863fb8d5 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-mp086.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-mp086", + "name": "Tiger Fighter 1931 Tora! MP086", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181401" + ], + "release_date": "2021-09-12", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-mp087.json b/data/game/ti/tiger-fighter-1931-tora-mp087.json new file mode 100644 index 000000000000..79bbe3fc8c62 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-mp087.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-mp087", + "name": "Tiger Fighter 1931 Tora! MP087", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181403" + ], + "release_date": "2021-09-12", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-mp088.json b/data/game/ti/tiger-fighter-1931-tora-mp088.json new file mode 100644 index 000000000000..a455d0891a71 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-mp088.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-mp088", + "name": "Tiger Fighter 1931 Tora! MP088", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181404" + ], + "release_date": "2021-09-12", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-mp089.json b/data/game/ti/tiger-fighter-1931-tora-mp089.json new file mode 100644 index 000000000000..177f12994f07 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-mp089.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-mp089", + "name": "Tiger Fighter 1931 Tora! MP089", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181407" + ], + "release_date": "2021-09-12", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-mp090.json b/data/game/ti/tiger-fighter-1931-tora-mp090.json new file mode 100644 index 000000000000..8175c0e6db7c --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-mp090.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-mp090", + "name": "Tiger Fighter 1931 Tora! MP090", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181409" + ], + "release_date": "2021-09-12", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-mp091.json b/data/game/ti/tiger-fighter-1931-tora-mp091.json new file mode 100644 index 000000000000..f2502fea29a6 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-mp091.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-mp091", + "name": "Tiger Fighter 1931 Tora! MP091", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181411" + ], + "release_date": "2021-09-12", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-mp092.json b/data/game/ti/tiger-fighter-1931-tora-mp092.json new file mode 100644 index 000000000000..decf009681ed --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-mp092.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-mp092", + "name": "Tiger Fighter 1931 Tora! MP092", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181413" + ], + "release_date": "2021-09-12", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-mp093.json b/data/game/ti/tiger-fighter-1931-tora-mp093.json new file mode 100644 index 000000000000..0a743f3f4572 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-mp093.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-mp093", + "name": "Tiger Fighter 1931 Tora! MP093", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181416" + ], + "release_date": "2021-09-12", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-mp094.json b/data/game/ti/tiger-fighter-1931-tora-mp094.json new file mode 100644 index 000000000000..9fef4aa46b34 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-mp094.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-mp094", + "name": "Tiger Fighter 1931 Tora! MP094", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181418" + ], + "release_date": "2021-09-12", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-mp095.json b/data/game/ti/tiger-fighter-1931-tora-mp095.json new file mode 100644 index 000000000000..3b9c8c30d080 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-mp095.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-mp095", + "name": "Tiger Fighter 1931 Tora! MP095", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181419" + ], + "release_date": "2021-09-12", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-mp096.json b/data/game/ti/tiger-fighter-1931-tora-mp096.json new file mode 100644 index 000000000000..cf5b7e6b314d --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-mp096.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-mp096", + "name": "Tiger Fighter 1931 Tora! MP096", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181421" + ], + "release_date": "2021-09-12", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-mp097.json b/data/game/ti/tiger-fighter-1931-tora-mp097.json new file mode 100644 index 000000000000..68f4ba6684a8 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-mp097.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-mp097", + "name": "Tiger Fighter 1931 Tora! MP097", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181422" + ], + "release_date": "2021-09-12", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-mp098.json b/data/game/ti/tiger-fighter-1931-tora-mp098.json new file mode 100644 index 000000000000..000b3491ad51 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-mp098.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-mp098", + "name": "Tiger Fighter 1931 Tora! MP098", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181423" + ], + "release_date": "2021-09-12", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-mp099.json b/data/game/ti/tiger-fighter-1931-tora-mp099.json new file mode 100644 index 000000000000..773a7ad81d7e --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-mp099.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-mp099", + "name": "Tiger Fighter 1931 Tora! MP099", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181424" + ], + "release_date": "2021-09-12", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-mp100.json b/data/game/ti/tiger-fighter-1931-tora-mp100.json new file mode 100644 index 000000000000..d28ce6bfecce --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-mp100.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-mp100", + "name": "Tiger Fighter 1931 Tora! MP100", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181425" + ], + "release_date": "2021-09-12", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-mp001.json b/data/game/ti/tiger-fighter-1931-tora-tora-mp001.json new file mode 100644 index 000000000000..31013686a10b --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-mp001.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-mp001", + "name": "Tiger Fighter 1931 Tora!Tora! MP001", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181433" + ], + "release_date": "2021-08-04", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-mp002.json b/data/game/ti/tiger-fighter-1931-tora-tora-mp002.json new file mode 100644 index 000000000000..8ca24ad24d19 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-mp002.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-mp002", + "name": "Tiger Fighter 1931 Tora!Tora! MP002", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181437" + ], + "release_date": "2021-08-04", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-mp003.json b/data/game/ti/tiger-fighter-1931-tora-tora-mp003.json new file mode 100644 index 000000000000..340653e34f0d --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-mp003.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-mp003", + "name": "Tiger Fighter 1931 Tora!Tora! MP003", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181438" + ], + "release_date": "2021-08-04", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-mp004.json b/data/game/ti/tiger-fighter-1931-tora-tora-mp004.json new file mode 100644 index 000000000000..a07279da285f --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-mp004.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-mp004", + "name": "Tiger Fighter 1931 Tora!Tora! MP004", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181439" + ], + "release_date": "2021-08-04", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-mp005.json b/data/game/ti/tiger-fighter-1931-tora-tora-mp005.json new file mode 100644 index 000000000000..b931c055c23c --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-mp005.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-mp005", + "name": "Tiger Fighter 1931 Tora!Tora! MP005", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181441" + ], + "release_date": "2021-08-04", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-mp006.json b/data/game/ti/tiger-fighter-1931-tora-tora-mp006.json new file mode 100644 index 000000000000..f08a376e3b5a --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-mp006.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-mp006", + "name": "Tiger Fighter 1931 Tora!Tora! MP006", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181443" + ], + "release_date": "2021-08-14", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-mp007.json b/data/game/ti/tiger-fighter-1931-tora-tora-mp007.json new file mode 100644 index 000000000000..c6d6be9094e1 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-mp007.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-mp007", + "name": "Tiger Fighter 1931 Tora!Tora! MP007", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181444" + ], + "release_date": "2021-08-14", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-mp008.json b/data/game/ti/tiger-fighter-1931-tora-tora-mp008.json new file mode 100644 index 000000000000..136839ea9db5 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-mp008.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-mp008", + "name": "Tiger Fighter 1931 Tora!Tora! MP008", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181446" + ], + "release_date": "2021-08-14", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-mp009.json b/data/game/ti/tiger-fighter-1931-tora-tora-mp009.json new file mode 100644 index 000000000000..d305e8339d8e --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-mp009.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-mp009", + "name": "Tiger Fighter 1931 Tora!Tora! MP009", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181448" + ], + "release_date": "2021-08-14", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-mp010.json b/data/game/ti/tiger-fighter-1931-tora-tora-mp010.json new file mode 100644 index 000000000000..2a0a7301d716 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-mp010.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-mp010", + "name": "Tiger Fighter 1931 Tora!Tora! MP010", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181450" + ], + "release_date": "2021-08-14", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-mp011.json b/data/game/ti/tiger-fighter-1931-tora-tora-mp011.json new file mode 100644 index 000000000000..397026b3725c --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-mp011.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-mp011", + "name": "Tiger Fighter 1931 Tora!Tora! MP011", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181451" + ], + "release_date": "2021-08-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-mp012.json b/data/game/ti/tiger-fighter-1931-tora-tora-mp012.json new file mode 100644 index 000000000000..d23a097ce7d6 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-mp012.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-mp012", + "name": "Tiger Fighter 1931 Tora!Tora! MP012", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181453" + ], + "release_date": "2021-08-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-mp013.json b/data/game/ti/tiger-fighter-1931-tora-tora-mp013.json new file mode 100644 index 000000000000..4b503e36728e --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-mp013.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-mp013", + "name": "Tiger Fighter 1931 Tora!Tora! MP013", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181455" + ], + "release_date": "2021-08-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-mp014.json b/data/game/ti/tiger-fighter-1931-tora-tora-mp014.json new file mode 100644 index 000000000000..ba00a01135bb --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-mp014.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-mp014", + "name": "Tiger Fighter 1931 Tora!Tora! MP014", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181456" + ], + "release_date": "2021-08-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-mp015.json b/data/game/ti/tiger-fighter-1931-tora-tora-mp015.json new file mode 100644 index 000000000000..92cbdf5e4e89 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-mp015.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-mp015", + "name": "Tiger Fighter 1931 Tora!Tora! MP015", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181457" + ], + "release_date": "2021-08-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-mp016.json b/data/game/ti/tiger-fighter-1931-tora-tora-mp016.json new file mode 100644 index 000000000000..7c19c372047f --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-mp016.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-mp016", + "name": "Tiger Fighter 1931 Tora!Tora! MP016", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181460" + ], + "release_date": "2021-08-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-mp017.json b/data/game/ti/tiger-fighter-1931-tora-tora-mp017.json new file mode 100644 index 000000000000..86478ce4657e --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-mp017.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-mp017", + "name": "Tiger Fighter 1931 Tora!Tora! MP017", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181462" + ], + "release_date": "2021-08-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-mp018.json b/data/game/ti/tiger-fighter-1931-tora-tora-mp018.json new file mode 100644 index 000000000000..fb06dde100d2 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-mp018.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-mp018", + "name": "Tiger Fighter 1931 Tora!Tora! MP018", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181464" + ], + "release_date": "2021-08-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-mp019.json b/data/game/ti/tiger-fighter-1931-tora-tora-mp019.json new file mode 100644 index 000000000000..179ea13954f5 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-mp019.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-mp019", + "name": "Tiger Fighter 1931 Tora!Tora! MP019", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181465" + ], + "release_date": "2021-08-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-mp020.json b/data/game/ti/tiger-fighter-1931-tora-tora-mp020.json new file mode 100644 index 000000000000..7cdb66fbcb86 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-mp020.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-mp020", + "name": "Tiger Fighter 1931 Tora!Tora! MP020", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181466" + ], + "release_date": "2021-08-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-mp021.json b/data/game/ti/tiger-fighter-1931-tora-tora-mp021.json new file mode 100644 index 000000000000..df74f49364a5 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-mp021.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-mp021", + "name": "Tiger Fighter 1931 Tora!Tora! MP021", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181467" + ], + "release_date": "2021-08-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-mp022.json b/data/game/ti/tiger-fighter-1931-tora-tora-mp022.json new file mode 100644 index 000000000000..b6ee2313f56e --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-mp022.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-mp022", + "name": "Tiger Fighter 1931 Tora!Tora! MP022", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181468" + ], + "release_date": "2021-08-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-mp023.json b/data/game/ti/tiger-fighter-1931-tora-tora-mp023.json new file mode 100644 index 000000000000..7d2951324157 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-mp023.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-mp023", + "name": "Tiger Fighter 1931 Tora!Tora! MP023", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181471" + ], + "release_date": "2021-08-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-mp024.json b/data/game/ti/tiger-fighter-1931-tora-tora-mp024.json new file mode 100644 index 000000000000..a261916dc855 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-mp024.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-mp024", + "name": "Tiger Fighter 1931 Tora!Tora! MP024", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181473" + ], + "release_date": "2021-08-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-mp025.json b/data/game/ti/tiger-fighter-1931-tora-tora-mp025.json new file mode 100644 index 000000000000..2d20fde8f0da --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-mp025.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-mp025", + "name": "Tiger Fighter 1931 Tora!Tora! MP025", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181474" + ], + "release_date": "2021-08-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-mp026.json b/data/game/ti/tiger-fighter-1931-tora-tora-mp026.json new file mode 100644 index 000000000000..edb8dbb62df8 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-mp026.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-mp026", + "name": "Tiger Fighter 1931 Tora!Tora! MP026", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181476" + ], + "release_date": "2021-09-01", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-mp027.json b/data/game/ti/tiger-fighter-1931-tora-tora-mp027.json new file mode 100644 index 000000000000..c9e95028b241 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-mp027.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-mp027", + "name": "Tiger Fighter 1931 Tora!Tora! MP027", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181477" + ], + "release_date": "2021-09-01", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-mp028.json b/data/game/ti/tiger-fighter-1931-tora-tora-mp028.json new file mode 100644 index 000000000000..a4306c0776e8 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-mp028.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-mp028", + "name": "Tiger Fighter 1931 Tora!Tora! MP028", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181478" + ], + "release_date": "2021-09-01", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-mp029.json b/data/game/ti/tiger-fighter-1931-tora-tora-mp029.json new file mode 100644 index 000000000000..d45f650be6dc --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-mp029.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-mp029", + "name": "Tiger Fighter 1931 Tora!Tora! MP029", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181484" + ], + "release_date": "2021-09-01", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-mp030.json b/data/game/ti/tiger-fighter-1931-tora-tora-mp030.json new file mode 100644 index 000000000000..10c285fc74b8 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-mp030.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-mp030", + "name": "Tiger Fighter 1931 Tora!Tora! MP030", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181489" + ], + "release_date": "2021-09-01", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-mp031.json b/data/game/ti/tiger-fighter-1931-tora-tora-mp031.json new file mode 100644 index 000000000000..e383b5a779e4 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-mp031.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-mp031", + "name": "Tiger Fighter 1931 Tora!Tora! MP031", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181490" + ], + "release_date": "2021-09-01", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-mp032.json b/data/game/ti/tiger-fighter-1931-tora-tora-mp032.json new file mode 100644 index 000000000000..cad3b7ca1d28 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-mp032.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-mp032", + "name": "Tiger Fighter 1931 Tora!Tora! MP032", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181492" + ], + "release_date": "2021-09-01", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-mp033.json b/data/game/ti/tiger-fighter-1931-tora-tora-mp033.json new file mode 100644 index 000000000000..d771aad0f44d --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-mp033.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-mp033", + "name": "Tiger Fighter 1931 Tora!Tora! MP033", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181494" + ], + "release_date": "2021-09-01", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-mp034.json b/data/game/ti/tiger-fighter-1931-tora-tora-mp034.json new file mode 100644 index 000000000000..d83ad0e2d550 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-mp034.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-mp034", + "name": "Tiger Fighter 1931 Tora!Tora! MP034", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181501" + ], + "release_date": "2021-09-01", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-mp035.json b/data/game/ti/tiger-fighter-1931-tora-tora-mp035.json new file mode 100644 index 000000000000..c59062f0fdb8 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-mp035.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-mp035", + "name": "Tiger Fighter 1931 Tora!Tora! MP035", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181514" + ], + "release_date": "2021-09-01", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-mp036.json b/data/game/ti/tiger-fighter-1931-tora-tora-mp036.json new file mode 100644 index 000000000000..cf354bab3e76 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-mp036.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-mp036", + "name": "Tiger Fighter 1931 Tora!Tora! MP036", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181519" + ], + "release_date": "2021-09-01", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-mp037.json b/data/game/ti/tiger-fighter-1931-tora-tora-mp037.json new file mode 100644 index 000000000000..87b62086f664 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-mp037.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-mp037", + "name": "Tiger Fighter 1931 Tora!Tora! MP037", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181526" + ], + "release_date": "2021-09-01", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-mp038.json b/data/game/ti/tiger-fighter-1931-tora-tora-mp038.json new file mode 100644 index 000000000000..05b19cba3f98 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-mp038.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-mp038", + "name": "Tiger Fighter 1931 Tora!Tora! MP038", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181533" + ], + "release_date": "2021-09-01", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-mp039.json b/data/game/ti/tiger-fighter-1931-tora-tora-mp039.json new file mode 100644 index 000000000000..e7851e8611c2 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-mp039.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-mp039", + "name": "Tiger Fighter 1931 Tora!Tora! MP039", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181538" + ], + "release_date": "2021-09-01", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-mp040.json b/data/game/ti/tiger-fighter-1931-tora-tora-mp040.json new file mode 100644 index 000000000000..e55a88de887f --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-mp040.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-mp040", + "name": "Tiger Fighter 1931 Tora!Tora! MP040", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181540" + ], + "release_date": "2021-09-01", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-mp041.json b/data/game/ti/tiger-fighter-1931-tora-tora-mp041.json new file mode 100644 index 000000000000..d39a228e6531 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-mp041.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-mp041", + "name": "Tiger Fighter 1931 Tora!Tora! MP041", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181542" + ], + "release_date": "2021-09-09", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-mp042.json b/data/game/ti/tiger-fighter-1931-tora-tora-mp042.json new file mode 100644 index 000000000000..706a211d2810 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-mp042.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-mp042", + "name": "Tiger Fighter 1931 Tora!Tora! MP042", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181544" + ], + "release_date": "2021-09-09", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-mp043.json b/data/game/ti/tiger-fighter-1931-tora-tora-mp043.json new file mode 100644 index 000000000000..c14ae575a023 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-mp043.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-mp043", + "name": "Tiger Fighter 1931 Tora!Tora! MP043", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181545" + ], + "release_date": "2021-09-09", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-mp044.json b/data/game/ti/tiger-fighter-1931-tora-tora-mp044.json new file mode 100644 index 000000000000..42113a522c98 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-mp044.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-mp044", + "name": "Tiger Fighter 1931 Tora!Tora! MP044", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181547" + ], + "release_date": "2021-09-09", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-mp045.json b/data/game/ti/tiger-fighter-1931-tora-tora-mp045.json new file mode 100644 index 000000000000..45eab9860569 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-mp045.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-mp045", + "name": "Tiger Fighter 1931 Tora!Tora! MP045", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181549" + ], + "release_date": "2021-09-09", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-mp046.json b/data/game/ti/tiger-fighter-1931-tora-tora-mp046.json new file mode 100644 index 000000000000..43873cff8e69 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-mp046.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-mp046", + "name": "Tiger Fighter 1931 Tora!Tora! MP046", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181551" + ], + "release_date": "2021-09-09", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-mp047.json b/data/game/ti/tiger-fighter-1931-tora-tora-mp047.json new file mode 100644 index 000000000000..735f0dee8267 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-mp047.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-mp047", + "name": "Tiger Fighter 1931 Tora!Tora! MP047", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181554" + ], + "release_date": "2021-09-09", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-mp048.json b/data/game/ti/tiger-fighter-1931-tora-tora-mp048.json new file mode 100644 index 000000000000..acac219f8a9e --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-mp048.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-mp048", + "name": "Tiger Fighter 1931 Tora!Tora! MP048", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181556" + ], + "release_date": "2021-09-09", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-mp049.json b/data/game/ti/tiger-fighter-1931-tora-tora-mp049.json new file mode 100644 index 000000000000..d87663eb4db1 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-mp049.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-mp049", + "name": "Tiger Fighter 1931 Tora!Tora! MP049", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181557" + ], + "release_date": "2021-09-09", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-mp050.json b/data/game/ti/tiger-fighter-1931-tora-tora-mp050.json new file mode 100644 index 000000000000..742bd5c0d917 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-mp050.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-mp050", + "name": "Tiger Fighter 1931 Tora!Tora! MP050", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181560" + ], + "release_date": "2021-09-09", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-mp051.json b/data/game/ti/tiger-fighter-1931-tora-tora-mp051.json new file mode 100644 index 000000000000..f4bdd35a4655 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-mp051.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-mp051", + "name": "Tiger Fighter 1931 Tora!Tora! MP051", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181562" + ], + "release_date": "2021-09-11", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-mp052.json b/data/game/ti/tiger-fighter-1931-tora-tora-mp052.json new file mode 100644 index 000000000000..6f0ca4e4262c --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-mp052.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-mp052", + "name": "Tiger Fighter 1931 Tora!Tora! MP052", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181563" + ], + "release_date": "2021-09-11", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-mp053.json b/data/game/ti/tiger-fighter-1931-tora-tora-mp053.json new file mode 100644 index 000000000000..32284b2a768f --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-mp053.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-mp053", + "name": "Tiger Fighter 1931 Tora!Tora! MP053", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181566" + ], + "release_date": "2021-09-11", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-mp054.json b/data/game/ti/tiger-fighter-1931-tora-tora-mp054.json new file mode 100644 index 000000000000..e455726502dd --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-mp054.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-mp054", + "name": "Tiger Fighter 1931 Tora!Tora! MP054", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181568" + ], + "release_date": "2021-09-11", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-mp055.json b/data/game/ti/tiger-fighter-1931-tora-tora-mp055.json new file mode 100644 index 000000000000..98240cd49d26 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-mp055.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-mp055", + "name": "Tiger Fighter 1931 Tora!Tora! MP055", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181570" + ], + "release_date": "2021-09-11", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-mp056.json b/data/game/ti/tiger-fighter-1931-tora-tora-mp056.json new file mode 100644 index 000000000000..dd6c1a5988c2 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-mp056.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-mp056", + "name": "Tiger Fighter 1931 Tora!Tora! MP056", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181571" + ], + "release_date": "2021-09-11", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-mp057.json b/data/game/ti/tiger-fighter-1931-tora-tora-mp057.json new file mode 100644 index 000000000000..909f2ef4487d --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-mp057.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-mp057", + "name": "Tiger Fighter 1931 Tora!Tora! MP057", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181573" + ], + "release_date": "2021-09-11", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-mp058.json b/data/game/ti/tiger-fighter-1931-tora-tora-mp058.json new file mode 100644 index 000000000000..fa33ecb5484e --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-mp058.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-mp058", + "name": "Tiger Fighter 1931 Tora!Tora! MP058", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181575" + ], + "release_date": "2021-09-11", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-mp059.json b/data/game/ti/tiger-fighter-1931-tora-tora-mp059.json new file mode 100644 index 000000000000..12f26c5e3b86 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-mp059.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-mp059", + "name": "Tiger Fighter 1931 Tora!Tora! MP059", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181580" + ], + "release_date": "2021-09-11", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-mp060.json b/data/game/ti/tiger-fighter-1931-tora-tora-mp060.json new file mode 100644 index 000000000000..97db9bd55e05 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-mp060.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-mp060", + "name": "Tiger Fighter 1931 Tora!Tora! MP060", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181582" + ], + "release_date": "2021-09-11", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-mp061.json b/data/game/ti/tiger-fighter-1931-tora-tora-mp061.json new file mode 100644 index 000000000000..f67df8f96fc5 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-mp061.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-mp061", + "name": "Tiger Fighter 1931 Tora!Tora! MP061", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181583" + ], + "release_date": "2021-09-12", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-mp062.json b/data/game/ti/tiger-fighter-1931-tora-tora-mp062.json new file mode 100644 index 000000000000..8a56b505cb2e --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-mp062.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-mp062", + "name": "Tiger Fighter 1931 Tora!Tora! MP062", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181584" + ], + "release_date": "2021-09-12", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-mp063.json b/data/game/ti/tiger-fighter-1931-tora-tora-mp063.json new file mode 100644 index 000000000000..e3549f2f5415 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-mp063.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-mp063", + "name": "Tiger Fighter 1931 Tora!Tora! MP063", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181587" + ], + "release_date": "2021-09-12", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-mp064.json b/data/game/ti/tiger-fighter-1931-tora-tora-mp064.json new file mode 100644 index 000000000000..a22ff5dafe0c --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-mp064.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-mp064", + "name": "Tiger Fighter 1931 Tora!Tora! MP064", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181603" + ], + "release_date": "2021-09-12", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-mp065.json b/data/game/ti/tiger-fighter-1931-tora-tora-mp065.json new file mode 100644 index 000000000000..ad73c727dae8 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-mp065.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-mp065", + "name": "Tiger Fighter 1931 Tora!Tora! MP065", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181604" + ], + "release_date": "2021-09-12", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-mp066.json b/data/game/ti/tiger-fighter-1931-tora-tora-mp066.json new file mode 100644 index 000000000000..8cf65491cbc0 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-mp066.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-mp066", + "name": "Tiger Fighter 1931 Tora!Tora! MP066", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181607" + ], + "release_date": "2021-09-12", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-mp067.json b/data/game/ti/tiger-fighter-1931-tora-tora-mp067.json new file mode 100644 index 000000000000..4b00cf225009 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-mp067.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-mp067", + "name": "Tiger Fighter 1931 Tora!Tora! MP067", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181609" + ], + "release_date": "2021-09-12", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-mp068.json b/data/game/ti/tiger-fighter-1931-tora-tora-mp068.json new file mode 100644 index 000000000000..2e849f34519d --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-mp068.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-mp068", + "name": "Tiger Fighter 1931 Tora!Tora! MP068", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181611" + ], + "release_date": "2021-09-12", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-mp069.json b/data/game/ti/tiger-fighter-1931-tora-tora-mp069.json new file mode 100644 index 000000000000..56267bf2acd0 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-mp069.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-mp069", + "name": "Tiger Fighter 1931 Tora!Tora! MP069", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181613" + ], + "release_date": "2021-09-12", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-mp070.json b/data/game/ti/tiger-fighter-1931-tora-tora-mp070.json new file mode 100644 index 000000000000..40066b6c6ed8 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-mp070.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-mp070", + "name": "Tiger Fighter 1931 Tora!Tora! MP070", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181617" + ], + "release_date": "2021-09-12", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-mp071.json b/data/game/ti/tiger-fighter-1931-tora-tora-mp071.json new file mode 100644 index 000000000000..fe942f9cb9a7 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-mp071.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-mp071", + "name": "Tiger Fighter 1931 Tora!Tora! MP071", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181619" + ], + "release_date": "2021-09-12", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-mp072.json b/data/game/ti/tiger-fighter-1931-tora-tora-mp072.json new file mode 100644 index 000000000000..7a3415cde65b --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-mp072.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-mp072", + "name": "Tiger Fighter 1931 Tora!Tora! MP072", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181622" + ], + "release_date": "2021-09-12", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-mp073.json b/data/game/ti/tiger-fighter-1931-tora-tora-mp073.json new file mode 100644 index 000000000000..23673284ef6f --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-mp073.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-mp073", + "name": "Tiger Fighter 1931 Tora!Tora! MP073", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181623" + ], + "release_date": "2021-09-12", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-mp074.json b/data/game/ti/tiger-fighter-1931-tora-tora-mp074.json new file mode 100644 index 000000000000..096e41cb8fa6 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-mp074.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-mp074", + "name": "Tiger Fighter 1931 Tora!Tora! MP074", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181624" + ], + "release_date": "2021-09-12", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-mp075.json b/data/game/ti/tiger-fighter-1931-tora-tora-mp075.json new file mode 100644 index 000000000000..2cec019b2228 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-mp075.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-mp075", + "name": "Tiger Fighter 1931 Tora!Tora! MP075", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181627" + ], + "release_date": "2021-09-12", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-mp076.json b/data/game/ti/tiger-fighter-1931-tora-tora-mp076.json new file mode 100644 index 000000000000..f00ae59ffce3 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-mp076.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-mp076", + "name": "Tiger Fighter 1931 Tora!Tora! MP076", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181629" + ], + "release_date": "2021-09-12", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-mp077.json b/data/game/ti/tiger-fighter-1931-tora-tora-mp077.json new file mode 100644 index 000000000000..dd947315e566 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-mp077.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-mp077", + "name": "Tiger Fighter 1931 Tora!Tora! MP077", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181630" + ], + "release_date": "2021-09-12", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-mp078.json b/data/game/ti/tiger-fighter-1931-tora-tora-mp078.json new file mode 100644 index 000000000000..fdbc272fe390 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-mp078.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-mp078", + "name": "Tiger Fighter 1931 Tora!Tora! MP078", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181632" + ], + "release_date": "2021-09-12", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-mp079.json b/data/game/ti/tiger-fighter-1931-tora-tora-mp079.json new file mode 100644 index 000000000000..9f944ab890bf --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-mp079.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-mp079", + "name": "Tiger Fighter 1931 Tora!Tora! MP079", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181634" + ], + "release_date": "2021-09-12", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-mp080.json b/data/game/ti/tiger-fighter-1931-tora-tora-mp080.json new file mode 100644 index 000000000000..75685637f1e6 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-mp080.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-mp080", + "name": "Tiger Fighter 1931 Tora!Tora! MP080", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181635" + ], + "release_date": "2021-09-12", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-mp081.json b/data/game/ti/tiger-fighter-1931-tora-tora-mp081.json new file mode 100644 index 000000000000..90db1991ad61 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-mp081.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-mp081", + "name": "Tiger Fighter 1931 Tora!Tora! MP081", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181636" + ], + "release_date": "2021-09-12", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-mp082.json b/data/game/ti/tiger-fighter-1931-tora-tora-mp082.json new file mode 100644 index 000000000000..cf44820ead14 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-mp082.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-mp082", + "name": "Tiger Fighter 1931 Tora!Tora! MP082", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181637" + ], + "release_date": "2021-09-12", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-mp083.json b/data/game/ti/tiger-fighter-1931-tora-tora-mp083.json new file mode 100644 index 000000000000..1346266b62f3 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-mp083.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-mp083", + "name": "Tiger Fighter 1931 Tora!Tora! MP083", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181641" + ], + "release_date": "2021-09-12", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-mp084.json b/data/game/ti/tiger-fighter-1931-tora-tora-mp084.json new file mode 100644 index 000000000000..d34d503f3f91 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-mp084.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-mp084", + "name": "Tiger Fighter 1931 Tora!Tora! MP084", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181642" + ], + "release_date": "2021-09-12", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-mp085.json b/data/game/ti/tiger-fighter-1931-tora-tora-mp085.json new file mode 100644 index 000000000000..276ccd5fe0f1 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-mp085.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-mp085", + "name": "Tiger Fighter 1931 Tora!Tora! MP085", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181643" + ], + "release_date": "2021-09-12", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-mp086.json b/data/game/ti/tiger-fighter-1931-tora-tora-mp086.json new file mode 100644 index 000000000000..1f371e511546 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-mp086.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-mp086", + "name": "Tiger Fighter 1931 Tora!Tora! MP086", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181644" + ], + "release_date": "2021-09-12", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-mp087.json b/data/game/ti/tiger-fighter-1931-tora-tora-mp087.json new file mode 100644 index 000000000000..140f2f0d1e39 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-mp087.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-mp087", + "name": "Tiger Fighter 1931 Tora!Tora! MP087", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181648" + ], + "release_date": "2021-09-12", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-mp088.json b/data/game/ti/tiger-fighter-1931-tora-tora-mp088.json new file mode 100644 index 000000000000..ab8d71c31c8a --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-mp088.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-mp088", + "name": "Tiger Fighter 1931 Tora!Tora! MP088", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181651" + ], + "release_date": "2021-09-12", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-mp089.json b/data/game/ti/tiger-fighter-1931-tora-tora-mp089.json new file mode 100644 index 000000000000..1022e537bdff --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-mp089.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-mp089", + "name": "Tiger Fighter 1931 Tora!Tora! MP089", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181653" + ], + "release_date": "2021-09-12", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-mp090.json b/data/game/ti/tiger-fighter-1931-tora-tora-mp090.json new file mode 100644 index 000000000000..4150def51fd7 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-mp090.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-mp090", + "name": "Tiger Fighter 1931 Tora!Tora! MP090", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181663" + ], + "release_date": "2021-09-12", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-mp091.json b/data/game/ti/tiger-fighter-1931-tora-tora-mp091.json new file mode 100644 index 000000000000..960b2a21b43d --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-mp091.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-mp091", + "name": "Tiger Fighter 1931 Tora!Tora! MP091", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181676" + ], + "release_date": "2021-09-12", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-mp092.json b/data/game/ti/tiger-fighter-1931-tora-tora-mp092.json new file mode 100644 index 000000000000..4d2dd2f97c4f --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-mp092.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-mp092", + "name": "Tiger Fighter 1931 Tora!Tora! MP092", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181678" + ], + "release_date": "2021-09-12", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-mp093.json b/data/game/ti/tiger-fighter-1931-tora-tora-mp093.json new file mode 100644 index 000000000000..82dc7ebed59a --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-mp093.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-mp093", + "name": "Tiger Fighter 1931 Tora!Tora! MP093", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181681" + ], + "release_date": "2021-09-12", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-mp094.json b/data/game/ti/tiger-fighter-1931-tora-tora-mp094.json new file mode 100644 index 000000000000..ae6859514190 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-mp094.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-mp094", + "name": "Tiger Fighter 1931 Tora!Tora! MP094", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181683" + ], + "release_date": "2021-09-12", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-mp095.json b/data/game/ti/tiger-fighter-1931-tora-tora-mp095.json new file mode 100644 index 000000000000..b1609918d9f3 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-mp095.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-mp095", + "name": "Tiger Fighter 1931 Tora!Tora! MP095", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181691" + ], + "release_date": "2021-09-12", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-mp096.json b/data/game/ti/tiger-fighter-1931-tora-tora-mp096.json new file mode 100644 index 000000000000..0295879b82ba --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-mp096.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-mp096", + "name": "Tiger Fighter 1931 Tora!Tora! MP096", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181692" + ], + "release_date": "2021-09-12", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-mp097.json b/data/game/ti/tiger-fighter-1931-tora-tora-mp097.json new file mode 100644 index 000000000000..8e9051c586b9 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-mp097.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-mp097", + "name": "Tiger Fighter 1931 Tora!Tora! MP097", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181693" + ], + "release_date": "2021-09-12", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-mp098.json b/data/game/ti/tiger-fighter-1931-tora-tora-mp098.json new file mode 100644 index 000000000000..7775614bd3e8 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-mp098.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-mp098", + "name": "Tiger Fighter 1931 Tora!Tora! MP098", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181695" + ], + "release_date": "2021-09-12", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-mp099.json b/data/game/ti/tiger-fighter-1931-tora-tora-mp099.json new file mode 100644 index 000000000000..1981829e6100 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-mp099.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-mp099", + "name": "Tiger Fighter 1931 Tora!Tora! MP099", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181697" + ], + "release_date": "2021-09-12", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-mp100.json b/data/game/ti/tiger-fighter-1931-tora-tora-mp100.json new file mode 100644 index 000000000000..8261c2eaa440 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-mp100.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-mp100", + "name": "Tiger Fighter 1931 Tora!Tora! MP100", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181698" + ], + "release_date": "2021-09-12", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp001.json b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp001.json new file mode 100644 index 000000000000..1858a4ee21e3 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp001.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-tora-mp001", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP001", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181699" + ], + "release_date": "2021-08-04", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp002.json b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp002.json new file mode 100644 index 000000000000..9faf55c49869 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp002.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-tora-mp002", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP002", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181700" + ], + "release_date": "2021-08-04", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp003.json b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp003.json new file mode 100644 index 000000000000..68ba3bf30fa1 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp003.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-tora-mp003", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP003", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181701" + ], + "release_date": "2021-08-04", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp004.json b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp004.json new file mode 100644 index 000000000000..fbf32e16062d --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp004.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-tora-mp004", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP004", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181702" + ], + "release_date": "2021-08-04", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp005.json b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp005.json new file mode 100644 index 000000000000..2f97548d54fc --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp005.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-tora-mp005", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP005", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181704" + ], + "release_date": "2021-08-04", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp006.json b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp006.json new file mode 100644 index 000000000000..3c8b64814e1f --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp006.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-tora-mp006", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP006", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181705" + ], + "release_date": "2021-08-14", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp007.json b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp007.json new file mode 100644 index 000000000000..68ee5b8dbfe7 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp007.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-tora-mp007", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP007", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181708" + ], + "release_date": "2021-08-14", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp008.json b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp008.json new file mode 100644 index 000000000000..20102dfc2406 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp008.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-tora-mp008", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP008", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181711" + ], + "release_date": "2021-08-14", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp009.json b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp009.json new file mode 100644 index 000000000000..e57ad062e623 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp009.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-tora-mp009", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP009", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181712" + ], + "release_date": "2021-08-14", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp010.json b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp010.json new file mode 100644 index 000000000000..c4ed22b6ec92 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp010.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-tora-mp010", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP010", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181714" + ], + "release_date": "2021-08-14", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp011.json b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp011.json new file mode 100644 index 000000000000..c1e8c61bef2c --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp011.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-tora-mp011", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP011", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181716" + ], + "release_date": "2021-08-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp012.json b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp012.json new file mode 100644 index 000000000000..0d625b5720df --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp012.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-tora-mp012", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP012", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181717" + ], + "release_date": "2021-08-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp013.json b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp013.json new file mode 100644 index 000000000000..bd4e01c51c8c --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp013.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-tora-mp013", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP013", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181719" + ], + "release_date": "2021-08-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp014.json b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp014.json new file mode 100644 index 000000000000..4e17470111ca --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp014.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-tora-mp014", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP014", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181722" + ], + "release_date": "2021-08-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp015.json b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp015.json new file mode 100644 index 000000000000..42dd9653433c --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp015.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-tora-mp015", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP015", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181724" + ], + "release_date": "2021-08-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp016.json b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp016.json new file mode 100644 index 000000000000..33af20ef6d22 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp016.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-tora-mp016", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP016", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181725" + ], + "release_date": "2021-08-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp017.json b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp017.json new file mode 100644 index 000000000000..09c9c3d2e231 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp017.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-tora-mp017", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP017", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181727" + ], + "release_date": "2021-08-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp018.json b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp018.json new file mode 100644 index 000000000000..07db302ed99e --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp018.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-tora-mp018", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP018", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181730" + ], + "release_date": "2021-08-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp019.json b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp019.json new file mode 100644 index 000000000000..d002dec87d16 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp019.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-tora-mp019", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP019", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181732" + ], + "release_date": "2021-08-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp020.json b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp020.json new file mode 100644 index 000000000000..f9e3829bf02e --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp020.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-tora-mp020", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP020", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181734" + ], + "release_date": "2021-08-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp021.json b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp021.json new file mode 100644 index 000000000000..b682f5a0b3a8 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp021.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-tora-mp021", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP021", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181739" + ], + "release_date": "2021-08-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp022.json b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp022.json new file mode 100644 index 000000000000..c8da9366871d --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp022.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-tora-mp022", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP022", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181740" + ], + "release_date": "2021-08-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp023.json b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp023.json new file mode 100644 index 000000000000..f2b3fbeb44c2 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp023.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-tora-mp023", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP023", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181741" + ], + "release_date": "2021-08-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp024.json b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp024.json new file mode 100644 index 000000000000..52117b9f0281 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp024.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-tora-mp024", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP024", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181742" + ], + "release_date": "2021-08-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp025.json b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp025.json new file mode 100644 index 000000000000..7b6ac3daa35d --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp025.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-tora-mp025", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP025", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181744" + ], + "release_date": "2021-08-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp026.json b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp026.json new file mode 100644 index 000000000000..768c1e239b81 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp026.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-tora-mp026", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP026", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181746" + ], + "release_date": "2021-09-01", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp027.json b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp027.json new file mode 100644 index 000000000000..56c8d70d6a65 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp027.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-tora-mp027", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP027", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181748" + ], + "release_date": "2021-09-01", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp028.json b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp028.json new file mode 100644 index 000000000000..9790b9fa8c5c --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp028.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-tora-mp028", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP028", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181751" + ], + "release_date": "2021-09-01", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp029.json b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp029.json new file mode 100644 index 000000000000..5bb217482075 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp029.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-tora-mp029", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP029", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181752" + ], + "release_date": "2021-09-01", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp030.json b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp030.json new file mode 100644 index 000000000000..5a4b579d832a --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp030.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-tora-mp030", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP030", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181754" + ], + "release_date": "2021-09-01", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp031.json b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp031.json new file mode 100644 index 000000000000..b24206250620 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp031.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-tora-mp031", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP031", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181755" + ], + "release_date": "2021-09-01", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp032.json b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp032.json new file mode 100644 index 000000000000..b691ea2008ce --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp032.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-tora-mp032", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP032", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181756" + ], + "release_date": "2021-09-01", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp033.json b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp033.json new file mode 100644 index 000000000000..521bde1a02b5 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp033.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-tora-mp033", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP033", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181758" + ], + "release_date": "2021-09-01", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp034.json b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp034.json new file mode 100644 index 000000000000..78eeb57356e6 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp034.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-tora-mp034", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP034", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181761" + ], + "release_date": "2021-09-01", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp035.json b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp035.json new file mode 100644 index 000000000000..b7b384391a0d --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp035.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-tora-mp035", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP035", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181762" + ], + "release_date": "2021-09-01", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp036.json b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp036.json new file mode 100644 index 000000000000..e45d81301a55 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp036.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-tora-mp036", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP036", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181764" + ], + "release_date": "2021-09-01", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp037.json b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp037.json new file mode 100644 index 000000000000..de093b394370 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp037.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-tora-mp037", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP037", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181765" + ], + "release_date": "2021-09-01", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp038.json b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp038.json new file mode 100644 index 000000000000..76ef378f6731 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp038.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-tora-mp038", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP038", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181767" + ], + "release_date": "2021-09-01", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp039.json b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp039.json new file mode 100644 index 000000000000..88232094200e --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp039.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-tora-mp039", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP039", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181768" + ], + "release_date": "2021-09-01", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp040.json b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp040.json new file mode 100644 index 000000000000..068d58f945f8 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp040.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-tora-mp040", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP040", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181771" + ], + "release_date": "2021-09-01", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp041.json b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp041.json new file mode 100644 index 000000000000..a5d49373af10 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp041.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-tora-mp041", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP041", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181772" + ], + "release_date": "2021-09-09", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp042.json b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp042.json new file mode 100644 index 000000000000..a1cca46d29a1 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp042.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-tora-mp042", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP042", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181775" + ], + "release_date": "2021-09-09", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp043.json b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp043.json new file mode 100644 index 000000000000..1eae66e80796 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp043.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-tora-mp043", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP043", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181778" + ], + "release_date": "2021-09-09", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp044.json b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp044.json new file mode 100644 index 000000000000..fd0756a79c97 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp044.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-tora-mp044", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP044", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181780" + ], + "release_date": "2021-09-09", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp045.json b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp045.json new file mode 100644 index 000000000000..220fe85ebb58 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp045.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-tora-mp045", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP045", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181781" + ], + "release_date": "2021-09-09", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp046.json b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp046.json new file mode 100644 index 000000000000..56d4f3752fc0 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp046.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-tora-mp046", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP046", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181782" + ], + "release_date": "2021-09-09", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp047.json b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp047.json new file mode 100644 index 000000000000..d1463e6a9e09 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp047.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-tora-mp047", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP047", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181784" + ], + "release_date": "2021-09-09", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp048.json b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp048.json new file mode 100644 index 000000000000..85ba80e03918 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp048.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-tora-mp048", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP048", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181786" + ], + "release_date": "2021-09-09", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp049.json b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp049.json new file mode 100644 index 000000000000..6751dcf46ae3 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp049.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-tora-mp049", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP049", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181790" + ], + "release_date": "2021-09-09", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp050.json b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp050.json new file mode 100644 index 000000000000..e8d2b0bbab5b --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp050.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-tora-mp050", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP050", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181791" + ], + "release_date": "2021-09-09", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp051.json b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp051.json new file mode 100644 index 000000000000..57b62dccdaaa --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp051.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-tora-mp051", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP051", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181795" + ], + "release_date": "2021-09-11", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp052.json b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp052.json new file mode 100644 index 000000000000..7e98633c21a5 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp052.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-tora-mp052", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP052", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181796" + ], + "release_date": "2021-09-11", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp053.json b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp053.json new file mode 100644 index 000000000000..152b2ea2ccc4 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp053.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-tora-mp053", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP053", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181798" + ], + "release_date": "2021-09-11", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp054.json b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp054.json new file mode 100644 index 000000000000..1737c0f63a45 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp054.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-tora-mp054", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP054", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181800" + ], + "release_date": "2021-09-11", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp055.json b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp055.json new file mode 100644 index 000000000000..5f2937300051 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp055.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-tora-mp055", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP055", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181802" + ], + "release_date": "2021-09-11", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp056.json b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp056.json new file mode 100644 index 000000000000..359b1038e419 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp056.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-tora-mp056", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP056", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181805" + ], + "release_date": "2021-09-11", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp057.json b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp057.json new file mode 100644 index 000000000000..d880a50e0a2f --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp057.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-tora-mp057", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP057", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181807" + ], + "release_date": "2021-09-11", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp058.json b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp058.json new file mode 100644 index 000000000000..e29c99492774 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp058.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-tora-mp058", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP058", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181809" + ], + "release_date": "2021-09-11", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp059.json b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp059.json new file mode 100644 index 000000000000..c393a3d55e34 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp059.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-tora-mp059", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP059", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181811" + ], + "release_date": "2021-09-11", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp060.json b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp060.json new file mode 100644 index 000000000000..effe33288c66 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp060.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-tora-mp060", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP060", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181814" + ], + "release_date": "2021-09-11", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp061.json b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp061.json new file mode 100644 index 000000000000..21eb9dd262b2 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp061.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-tora-mp061", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP061", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181816" + ], + "release_date": "2021-09-12", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp062.json b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp062.json new file mode 100644 index 000000000000..ce23d5edf5b9 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp062.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-tora-mp062", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP062", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181817" + ], + "release_date": "2021-09-12", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp063.json b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp063.json new file mode 100644 index 000000000000..ee7da6964739 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp063.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-tora-mp063", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP063", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181819" + ], + "release_date": "2021-09-12", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp064.json b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp064.json new file mode 100644 index 000000000000..f96c382269e9 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp064.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-tora-mp064", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP064", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181820" + ], + "release_date": "2021-09-12", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp065.json b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp065.json new file mode 100644 index 000000000000..6bdf6ced3e64 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp065.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-tora-mp065", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP065", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181822" + ], + "release_date": "2021-09-12", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp066.json b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp066.json new file mode 100644 index 000000000000..68aff95c8636 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp066.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-tora-mp066", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP066", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181823" + ], + "release_date": "2021-09-12", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp067.json b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp067.json new file mode 100644 index 000000000000..dd1622eab67a --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp067.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-tora-mp067", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP067", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181826" + ], + "release_date": "2021-09-12", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp068.json b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp068.json new file mode 100644 index 000000000000..51cb55d19434 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp068.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-tora-mp068", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP068", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181828" + ], + "release_date": "2021-09-12", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp069.json b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp069.json new file mode 100644 index 000000000000..69a83e959522 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp069.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-tora-mp069", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP069", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181829" + ], + "release_date": "2021-09-12", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp070.json b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp070.json new file mode 100644 index 000000000000..5ddaccde0b4e --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp070.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-tora-mp070", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP070", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181830" + ], + "release_date": "2021-09-12", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp071.json b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp071.json new file mode 100644 index 000000000000..6bba17865a9d --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp071.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-tora-mp071", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP071", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181833" + ], + "release_date": "2021-09-12", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp072.json b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp072.json new file mode 100644 index 000000000000..64a3ab9cf8e7 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp072.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-tora-mp072", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP072", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181835" + ], + "release_date": "2021-09-12", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp073.json b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp073.json new file mode 100644 index 000000000000..b5b40bc68ff8 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp073.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-tora-mp073", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP073", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181836" + ], + "release_date": "2021-09-12", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp074.json b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp074.json new file mode 100644 index 000000000000..9b1ac98a9dff --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp074.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-tora-mp074", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP074", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181837" + ], + "release_date": "2021-09-12", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp075.json b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp075.json new file mode 100644 index 000000000000..a02e3ccfc69d --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp075.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-tora-mp075", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP075", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181838" + ], + "release_date": "2021-09-12", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp076.json b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp076.json new file mode 100644 index 000000000000..39fbf6814487 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp076.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-tora-mp076", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP076", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181840" + ], + "release_date": "2021-09-12", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp077.json b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp077.json new file mode 100644 index 000000000000..061ba9b4f7be --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp077.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-tora-mp077", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP077", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181844" + ], + "release_date": "2021-09-12", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp078.json b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp078.json new file mode 100644 index 000000000000..b81766bcdb27 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp078.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-tora-mp078", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP078", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181845" + ], + "release_date": "2021-09-12", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp079.json b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp079.json new file mode 100644 index 000000000000..1b0112a46b46 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp079.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-tora-mp079", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP079", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181849" + ], + "release_date": "2021-09-12", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp080.json b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp080.json new file mode 100644 index 000000000000..ef2f80494777 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp080.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-tora-mp080", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP080", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181851" + ], + "release_date": "2021-09-12", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp081.json b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp081.json new file mode 100644 index 000000000000..7b043f696b4e --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp081.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-tora-mp081", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP081", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181854" + ], + "release_date": "2021-09-12", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp082.json b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp082.json new file mode 100644 index 000000000000..ee40e6646898 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp082.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-tora-mp082", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP082", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181857" + ], + "release_date": "2021-09-12", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp083.json b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp083.json new file mode 100644 index 000000000000..4e8b602c57ca --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp083.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-tora-mp083", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP083", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181858" + ], + "release_date": "2021-09-12", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp084.json b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp084.json new file mode 100644 index 000000000000..77e35181d713 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp084.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-tora-mp084", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP084", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181873" + ], + "release_date": "2021-09-12", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp085.json b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp085.json new file mode 100644 index 000000000000..030a5535cc1d --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp085.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-tora-mp085", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP085", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181893" + ], + "release_date": "2021-09-12", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp086.json b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp086.json new file mode 100644 index 000000000000..0677c3130559 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp086.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-tora-mp086", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP086", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181913" + ], + "release_date": "2021-09-12", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp087.json b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp087.json new file mode 100644 index 000000000000..9a62fbefabdb --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp087.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-tora-mp087", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP087", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181935" + ], + "release_date": "2021-09-12", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp088.json b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp088.json new file mode 100644 index 000000000000..6c9f712cea76 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp088.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-tora-mp088", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP088", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181940" + ], + "release_date": "2021-09-12", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp089.json b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp089.json new file mode 100644 index 000000000000..baf08b1d285b --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp089.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-tora-mp089", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP089", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181944" + ], + "release_date": "2021-09-12", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp090.json b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp090.json new file mode 100644 index 000000000000..d43cbcebba67 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp090.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-tora-mp090", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP090", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181946" + ], + "release_date": "2021-09-12", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp091.json b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp091.json new file mode 100644 index 000000000000..ecb449f22778 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp091.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-tora-mp091", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP091", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181951" + ], + "release_date": "2021-09-12", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp092.json b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp092.json new file mode 100644 index 000000000000..951672be4ea0 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp092.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-tora-mp092", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP092", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181962" + ], + "release_date": "2021-09-12", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp093.json b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp093.json new file mode 100644 index 000000000000..cd88aa73a929 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp093.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-tora-mp093", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP093", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181985" + ], + "release_date": "2021-09-12", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp094.json b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp094.json new file mode 100644 index 000000000000..3667a3e3c1b9 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp094.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-tora-mp094", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP094", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182004" + ], + "release_date": "2021-09-12", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp095.json b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp095.json new file mode 100644 index 000000000000..60378236478c --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp095.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-tora-mp095", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP095", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182008" + ], + "release_date": "2021-09-12", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp096.json b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp096.json new file mode 100644 index 000000000000..b1b3f2843b74 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp096.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-tora-mp096", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP096", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182011" + ], + "release_date": "2021-09-12", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp097.json b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp097.json new file mode 100644 index 000000000000..023c618d072d --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp097.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-tora-mp097", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP097", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182013" + ], + "release_date": "2021-09-12", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp098.json b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp098.json new file mode 100644 index 000000000000..f8b15db534cb --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp098.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-tora-mp098", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP098", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182014" + ], + "release_date": "2021-09-12", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp099.json b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp099.json new file mode 100644 index 000000000000..984ddb59fb55 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp099.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-tora-mp099", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP099", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182016" + ], + "release_date": "2021-09-12", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp100.json b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp100.json new file mode 100644 index 000000000000..bc27dbbbca01 --- /dev/null +++ b/data/game/ti/tiger-fighter-1931-tora-tora-tora-mp100.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-fighter-1931-tora-tora-tora-mp100", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP100", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182020" + ], + "release_date": "2021-09-12", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-soldier-mp001.json b/data/game/ti/tiger-soldier-mp001.json new file mode 100644 index 000000000000..a6d33e563974 --- /dev/null +++ b/data/game/ti/tiger-soldier-mp001.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-soldier-mp001", + "name": "Tiger Soldier Ⅰ MP001", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182259" + ], + "release_date": "2021-08-04", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-soldier-mp002.json b/data/game/ti/tiger-soldier-mp002.json new file mode 100644 index 000000000000..b035ec18a89c --- /dev/null +++ b/data/game/ti/tiger-soldier-mp002.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-soldier-mp002", + "name": "Tiger Soldier Ⅰ MP002", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182263" + ], + "release_date": "2021-08-04", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-soldier-mp003.json b/data/game/ti/tiger-soldier-mp003.json new file mode 100644 index 000000000000..07f3aa205163 --- /dev/null +++ b/data/game/ti/tiger-soldier-mp003.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-soldier-mp003", + "name": "Tiger Soldier Ⅰ MP003", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182264" + ], + "release_date": "2021-08-04", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-soldier-mp004.json b/data/game/ti/tiger-soldier-mp004.json new file mode 100644 index 000000000000..98cf6138571d --- /dev/null +++ b/data/game/ti/tiger-soldier-mp004.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-soldier-mp004", + "name": "Tiger Soldier Ⅰ MP004", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182266" + ], + "release_date": "2021-08-04", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-soldier-mp005.json b/data/game/ti/tiger-soldier-mp005.json new file mode 100644 index 000000000000..af1f4d442ffb --- /dev/null +++ b/data/game/ti/tiger-soldier-mp005.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-soldier-mp005", + "name": "Tiger Soldier Ⅰ MP005", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182268" + ], + "release_date": "2021-08-04", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-soldier-mp006.json b/data/game/ti/tiger-soldier-mp006.json new file mode 100644 index 000000000000..4c5044504a0c --- /dev/null +++ b/data/game/ti/tiger-soldier-mp006.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-soldier-mp006", + "name": "Tiger Soldier Ⅰ MP006", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182270" + ], + "release_date": "2021-08-14", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-soldier-mp007.json b/data/game/ti/tiger-soldier-mp007.json new file mode 100644 index 000000000000..a16d2435ec61 --- /dev/null +++ b/data/game/ti/tiger-soldier-mp007.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-soldier-mp007", + "name": "Tiger Soldier Ⅰ MP007", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182274" + ], + "release_date": "2021-08-14", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-soldier-mp008.json b/data/game/ti/tiger-soldier-mp008.json new file mode 100644 index 000000000000..fb3fde994959 --- /dev/null +++ b/data/game/ti/tiger-soldier-mp008.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-soldier-mp008", + "name": "Tiger Soldier Ⅰ MP008", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182275" + ], + "release_date": "2021-08-14", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-soldier-mp009.json b/data/game/ti/tiger-soldier-mp009.json new file mode 100644 index 000000000000..fe4efb425e05 --- /dev/null +++ b/data/game/ti/tiger-soldier-mp009.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-soldier-mp009", + "name": "Tiger Soldier Ⅰ MP009", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182276" + ], + "release_date": "2021-08-14", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-soldier-mp010.json b/data/game/ti/tiger-soldier-mp010.json new file mode 100644 index 000000000000..b5f21e8251d2 --- /dev/null +++ b/data/game/ti/tiger-soldier-mp010.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-soldier-mp010", + "name": "Tiger Soldier Ⅰ MP010", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182277" + ], + "release_date": "2021-08-14", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-soldier-mp011.json b/data/game/ti/tiger-soldier-mp011.json new file mode 100644 index 000000000000..46cdaf065499 --- /dev/null +++ b/data/game/ti/tiger-soldier-mp011.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-soldier-mp011", + "name": "Tiger Soldier Ⅰ MP011", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182281" + ], + "release_date": "2021-08-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-soldier-mp012.json b/data/game/ti/tiger-soldier-mp012.json new file mode 100644 index 000000000000..532df3241a45 --- /dev/null +++ b/data/game/ti/tiger-soldier-mp012.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-soldier-mp012", + "name": "Tiger Soldier Ⅰ MP012", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182284" + ], + "release_date": "2021-08-19", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-soldier-mp013.json b/data/game/ti/tiger-soldier-mp013.json new file mode 100644 index 000000000000..ad4fbf65e5c7 --- /dev/null +++ b/data/game/ti/tiger-soldier-mp013.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-soldier-mp013", + "name": "Tiger Soldier Ⅰ MP013", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182295" + ], + "release_date": "2021-08-19", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-soldier-mp014.json b/data/game/ti/tiger-soldier-mp014.json new file mode 100644 index 000000000000..d0dbb114dccd --- /dev/null +++ b/data/game/ti/tiger-soldier-mp014.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-soldier-mp014", + "name": "Tiger Soldier Ⅰ MP014", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182319" + ], + "release_date": "2021-08-19", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-soldier-mp015.json b/data/game/ti/tiger-soldier-mp015.json new file mode 100644 index 000000000000..c8afe642b820 --- /dev/null +++ b/data/game/ti/tiger-soldier-mp015.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-soldier-mp015", + "name": "Tiger Soldier Ⅰ MP015", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182324" + ], + "release_date": "2021-08-19", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-soldier-mp016.json b/data/game/ti/tiger-soldier-mp016.json new file mode 100644 index 000000000000..dc8959e2d661 --- /dev/null +++ b/data/game/ti/tiger-soldier-mp016.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-soldier-mp016", + "name": "Tiger Soldier Ⅰ MP016", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182325" + ], + "release_date": "2021-08-19", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-soldier-mp017.json b/data/game/ti/tiger-soldier-mp017.json new file mode 100644 index 000000000000..88f84b2e02b5 --- /dev/null +++ b/data/game/ti/tiger-soldier-mp017.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-soldier-mp017", + "name": "Tiger Soldier Ⅰ MP017", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182328" + ], + "release_date": "2021-08-19", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-soldier-mp018.json b/data/game/ti/tiger-soldier-mp018.json new file mode 100644 index 000000000000..78bd2ded3009 --- /dev/null +++ b/data/game/ti/tiger-soldier-mp018.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-soldier-mp018", + "name": "Tiger Soldier Ⅰ MP018", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182331" + ], + "release_date": "2021-08-19", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-soldier-mp019.json b/data/game/ti/tiger-soldier-mp019.json new file mode 100644 index 000000000000..f934332bb315 --- /dev/null +++ b/data/game/ti/tiger-soldier-mp019.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-soldier-mp019", + "name": "Tiger Soldier Ⅰ MP019", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182334" + ], + "release_date": "2021-08-19", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-soldier-mp020.json b/data/game/ti/tiger-soldier-mp020.json new file mode 100644 index 000000000000..024c769dfc07 --- /dev/null +++ b/data/game/ti/tiger-soldier-mp020.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-soldier-mp020", + "name": "Tiger Soldier Ⅰ MP020", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182335" + ], + "release_date": "2021-08-19", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-soldier-mp021.json b/data/game/ti/tiger-soldier-mp021.json new file mode 100644 index 000000000000..02f4ed44f6b0 --- /dev/null +++ b/data/game/ti/tiger-soldier-mp021.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-soldier-mp021", + "name": "Tiger Soldier Ⅰ MP021", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182336" + ], + "release_date": "2021-08-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-soldier-mp022.json b/data/game/ti/tiger-soldier-mp022.json new file mode 100644 index 000000000000..4a0265ec6226 --- /dev/null +++ b/data/game/ti/tiger-soldier-mp022.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-soldier-mp022", + "name": "Tiger Soldier Ⅰ MP022", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182339" + ], + "release_date": "2021-08-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-soldier-mp023.json b/data/game/ti/tiger-soldier-mp023.json new file mode 100644 index 000000000000..8b2443338421 --- /dev/null +++ b/data/game/ti/tiger-soldier-mp023.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-soldier-mp023", + "name": "Tiger Soldier Ⅰ MP023", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182340" + ], + "release_date": "2021-08-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-soldier-mp024.json b/data/game/ti/tiger-soldier-mp024.json new file mode 100644 index 000000000000..6e38742ef7a7 --- /dev/null +++ b/data/game/ti/tiger-soldier-mp024.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-soldier-mp024", + "name": "Tiger Soldier Ⅰ MP024", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182349" + ], + "release_date": "2021-08-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-soldier-mp025.json b/data/game/ti/tiger-soldier-mp025.json new file mode 100644 index 000000000000..5b2454ea3864 --- /dev/null +++ b/data/game/ti/tiger-soldier-mp025.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-soldier-mp025", + "name": "Tiger Soldier Ⅰ MP025", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182354" + ], + "release_date": "2021-08-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-soldier-mp026.json b/data/game/ti/tiger-soldier-mp026.json new file mode 100644 index 000000000000..880bdfa9d32c --- /dev/null +++ b/data/game/ti/tiger-soldier-mp026.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-soldier-mp026", + "name": "Tiger Soldier Ⅰ MP026", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182358" + ], + "release_date": "2021-08-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-soldier-mp027.json b/data/game/ti/tiger-soldier-mp027.json new file mode 100644 index 000000000000..a922e78a0e80 --- /dev/null +++ b/data/game/ti/tiger-soldier-mp027.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-soldier-mp027", + "name": "Tiger Soldier Ⅰ MP027", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182361" + ], + "release_date": "2021-08-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-soldier-mp028.json b/data/game/ti/tiger-soldier-mp028.json new file mode 100644 index 000000000000..307ff7104125 --- /dev/null +++ b/data/game/ti/tiger-soldier-mp028.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-soldier-mp028", + "name": "Tiger Soldier Ⅰ MP028", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182363" + ], + "release_date": "2021-08-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-soldier-mp029.json b/data/game/ti/tiger-soldier-mp029.json new file mode 100644 index 000000000000..1e535e5f35b5 --- /dev/null +++ b/data/game/ti/tiger-soldier-mp029.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-soldier-mp029", + "name": "Tiger Soldier Ⅰ MP029", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182364" + ], + "release_date": "2021-08-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-soldier-mp030.json b/data/game/ti/tiger-soldier-mp030.json new file mode 100644 index 000000000000..b6a7c85d3be2 --- /dev/null +++ b/data/game/ti/tiger-soldier-mp030.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-soldier-mp030", + "name": "Tiger Soldier Ⅰ MP030", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182365" + ], + "release_date": "2021-08-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-soldier-mp031.json b/data/game/ti/tiger-soldier-mp031.json new file mode 100644 index 000000000000..39134999b869 --- /dev/null +++ b/data/game/ti/tiger-soldier-mp031.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-soldier-mp031", + "name": "Tiger Soldier Ⅰ MP031", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182369" + ], + "release_date": "2021-08-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-soldier-mp032.json b/data/game/ti/tiger-soldier-mp032.json new file mode 100644 index 000000000000..023a2e43075d --- /dev/null +++ b/data/game/ti/tiger-soldier-mp032.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-soldier-mp032", + "name": "Tiger Soldier Ⅰ MP032", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182371" + ], + "release_date": "2021-08-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-soldier-mp033.json b/data/game/ti/tiger-soldier-mp033.json new file mode 100644 index 000000000000..05110783cf6a --- /dev/null +++ b/data/game/ti/tiger-soldier-mp033.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-soldier-mp033", + "name": "Tiger Soldier Ⅰ MP033", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182372" + ], + "release_date": "2021-08-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-soldier-mp034.json b/data/game/ti/tiger-soldier-mp034.json new file mode 100644 index 000000000000..244c35907bd0 --- /dev/null +++ b/data/game/ti/tiger-soldier-mp034.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-soldier-mp034", + "name": "Tiger Soldier Ⅰ MP034", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182373" + ], + "release_date": "2021-08-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-soldier-mp035.json b/data/game/ti/tiger-soldier-mp035.json new file mode 100644 index 000000000000..2d0429480588 --- /dev/null +++ b/data/game/ti/tiger-soldier-mp035.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-soldier-mp035", + "name": "Tiger Soldier Ⅰ MP035", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182374" + ], + "release_date": "2021-08-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-soldier-mp036.json b/data/game/ti/tiger-soldier-mp036.json new file mode 100644 index 000000000000..40c4bdb41a48 --- /dev/null +++ b/data/game/ti/tiger-soldier-mp036.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-soldier-mp036", + "name": "Tiger Soldier Ⅰ MP036", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182375" + ], + "release_date": "2021-09-01", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-soldier-mp037.json b/data/game/ti/tiger-soldier-mp037.json new file mode 100644 index 000000000000..2ae3a43b350a --- /dev/null +++ b/data/game/ti/tiger-soldier-mp037.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-soldier-mp037", + "name": "Tiger Soldier Ⅰ MP037", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182377" + ], + "release_date": "2021-09-01", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-soldier-mp038.json b/data/game/ti/tiger-soldier-mp038.json new file mode 100644 index 000000000000..9ede26fe32f0 --- /dev/null +++ b/data/game/ti/tiger-soldier-mp038.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-soldier-mp038", + "name": "Tiger Soldier Ⅰ MP038", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182379" + ], + "release_date": "2021-09-01", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-soldier-mp039.json b/data/game/ti/tiger-soldier-mp039.json new file mode 100644 index 000000000000..2b430bd57887 --- /dev/null +++ b/data/game/ti/tiger-soldier-mp039.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-soldier-mp039", + "name": "Tiger Soldier Ⅰ MP039", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182382" + ], + "release_date": "2021-09-01", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-soldier-mp040.json b/data/game/ti/tiger-soldier-mp040.json new file mode 100644 index 000000000000..e349b4094c56 --- /dev/null +++ b/data/game/ti/tiger-soldier-mp040.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-soldier-mp040", + "name": "Tiger Soldier Ⅰ MP040", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182383" + ], + "release_date": "2021-09-01", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-soldier-mp041.json b/data/game/ti/tiger-soldier-mp041.json new file mode 100644 index 000000000000..67233845afdc --- /dev/null +++ b/data/game/ti/tiger-soldier-mp041.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-soldier-mp041", + "name": "Tiger Soldier Ⅰ MP041", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182384" + ], + "release_date": "2021-09-01", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-soldier-mp042.json b/data/game/ti/tiger-soldier-mp042.json new file mode 100644 index 000000000000..9120a6f79531 --- /dev/null +++ b/data/game/ti/tiger-soldier-mp042.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-soldier-mp042", + "name": "Tiger Soldier Ⅰ MP042", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182386" + ], + "release_date": "2021-09-01", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-soldier-mp043.json b/data/game/ti/tiger-soldier-mp043.json new file mode 100644 index 000000000000..276d704c3893 --- /dev/null +++ b/data/game/ti/tiger-soldier-mp043.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-soldier-mp043", + "name": "Tiger Soldier Ⅰ MP043", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182390" + ], + "release_date": "2021-09-01", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-soldier-mp044.json b/data/game/ti/tiger-soldier-mp044.json new file mode 100644 index 000000000000..cb91abe54583 --- /dev/null +++ b/data/game/ti/tiger-soldier-mp044.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-soldier-mp044", + "name": "Tiger Soldier Ⅰ MP044", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182392" + ], + "release_date": "2021-09-01", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-soldier-mp045.json b/data/game/ti/tiger-soldier-mp045.json new file mode 100644 index 000000000000..424b0caf0984 --- /dev/null +++ b/data/game/ti/tiger-soldier-mp045.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-soldier-mp045", + "name": "Tiger Soldier Ⅰ MP045", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182394" + ], + "release_date": "2021-09-01", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-soldier-mp046.json b/data/game/ti/tiger-soldier-mp046.json new file mode 100644 index 000000000000..025f663c4a44 --- /dev/null +++ b/data/game/ti/tiger-soldier-mp046.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-soldier-mp046", + "name": "Tiger Soldier Ⅰ MP046", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182395" + ], + "release_date": "2021-09-01", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-soldier-mp047.json b/data/game/ti/tiger-soldier-mp047.json new file mode 100644 index 000000000000..5dc827aae045 --- /dev/null +++ b/data/game/ti/tiger-soldier-mp047.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-soldier-mp047", + "name": "Tiger Soldier Ⅰ MP047", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182397" + ], + "release_date": "2021-09-01", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-soldier-mp048.json b/data/game/ti/tiger-soldier-mp048.json new file mode 100644 index 000000000000..0e2e156425bc --- /dev/null +++ b/data/game/ti/tiger-soldier-mp048.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-soldier-mp048", + "name": "Tiger Soldier Ⅰ MP048", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182399" + ], + "release_date": "2021-09-01", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-soldier-mp049.json b/data/game/ti/tiger-soldier-mp049.json new file mode 100644 index 000000000000..7b0485f087ec --- /dev/null +++ b/data/game/ti/tiger-soldier-mp049.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-soldier-mp049", + "name": "Tiger Soldier Ⅰ MP049", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182400" + ], + "release_date": "2021-09-01", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-soldier-mp050.json b/data/game/ti/tiger-soldier-mp050.json new file mode 100644 index 000000000000..c5fc855f69cb --- /dev/null +++ b/data/game/ti/tiger-soldier-mp050.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-soldier-mp050", + "name": "Tiger Soldier Ⅰ MP050", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182402" + ], + "release_date": "2021-09-01", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-soldier-mp051.json b/data/game/ti/tiger-soldier-mp051.json new file mode 100644 index 000000000000..00eab7b69793 --- /dev/null +++ b/data/game/ti/tiger-soldier-mp051.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-soldier-mp051", + "name": "Tiger Soldier Ⅰ MP051", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182403" + ], + "release_date": "2021-09-09", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-soldier-mp052.json b/data/game/ti/tiger-soldier-mp052.json new file mode 100644 index 000000000000..1a776eb093ed --- /dev/null +++ b/data/game/ti/tiger-soldier-mp052.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-soldier-mp052", + "name": "Tiger Soldier Ⅰ MP052", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182405" + ], + "release_date": "2021-09-09", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-soldier-mp053.json b/data/game/ti/tiger-soldier-mp053.json new file mode 100644 index 000000000000..ae8c915beefb --- /dev/null +++ b/data/game/ti/tiger-soldier-mp053.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-soldier-mp053", + "name": "Tiger Soldier Ⅰ MP053", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182406" + ], + "release_date": "2021-09-09", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-soldier-mp054.json b/data/game/ti/tiger-soldier-mp054.json new file mode 100644 index 000000000000..7d81e17e21b3 --- /dev/null +++ b/data/game/ti/tiger-soldier-mp054.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-soldier-mp054", + "name": "Tiger Soldier Ⅰ MP054", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182408" + ], + "release_date": "2021-09-09", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-soldier-mp055.json b/data/game/ti/tiger-soldier-mp055.json new file mode 100644 index 000000000000..9b7cb0ee5840 --- /dev/null +++ b/data/game/ti/tiger-soldier-mp055.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-soldier-mp055", + "name": "Tiger Soldier Ⅰ MP055", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182409" + ], + "release_date": "2021-09-09", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-soldier-mp056.json b/data/game/ti/tiger-soldier-mp056.json new file mode 100644 index 000000000000..23675320048c --- /dev/null +++ b/data/game/ti/tiger-soldier-mp056.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-soldier-mp056", + "name": "Tiger Soldier Ⅰ MP056", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182411" + ], + "release_date": "2021-09-09", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-soldier-mp057.json b/data/game/ti/tiger-soldier-mp057.json new file mode 100644 index 000000000000..3366f4f0b6b7 --- /dev/null +++ b/data/game/ti/tiger-soldier-mp057.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-soldier-mp057", + "name": "Tiger Soldier Ⅰ MP057", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182413" + ], + "release_date": "2021-09-09", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-soldier-mp058.json b/data/game/ti/tiger-soldier-mp058.json new file mode 100644 index 000000000000..e9b593793db0 --- /dev/null +++ b/data/game/ti/tiger-soldier-mp058.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-soldier-mp058", + "name": "Tiger Soldier Ⅰ MP058", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182415" + ], + "release_date": "2021-09-09", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-soldier-mp059.json b/data/game/ti/tiger-soldier-mp059.json new file mode 100644 index 000000000000..46a99fe09b39 --- /dev/null +++ b/data/game/ti/tiger-soldier-mp059.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-soldier-mp059", + "name": "Tiger Soldier Ⅰ MP059", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182417" + ], + "release_date": "2021-09-09", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-soldier-mp060.json b/data/game/ti/tiger-soldier-mp060.json new file mode 100644 index 000000000000..d2b12fdac1af --- /dev/null +++ b/data/game/ti/tiger-soldier-mp060.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-soldier-mp060", + "name": "Tiger Soldier Ⅰ MP060", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182420" + ], + "release_date": "2021-09-09", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-soldier-mp061.json b/data/game/ti/tiger-soldier-mp061.json new file mode 100644 index 000000000000..4e6be03341aa --- /dev/null +++ b/data/game/ti/tiger-soldier-mp061.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-soldier-mp061", + "name": "Tiger Soldier Ⅰ MP061", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182423" + ], + "release_date": "2021-09-11", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-soldier-mp062.json b/data/game/ti/tiger-soldier-mp062.json new file mode 100644 index 000000000000..1d4589c7c590 --- /dev/null +++ b/data/game/ti/tiger-soldier-mp062.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-soldier-mp062", + "name": "Tiger Soldier Ⅰ MP062", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182430" + ], + "release_date": "2021-09-11", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-soldier-mp063.json b/data/game/ti/tiger-soldier-mp063.json new file mode 100644 index 000000000000..ba45c3164eb8 --- /dev/null +++ b/data/game/ti/tiger-soldier-mp063.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-soldier-mp063", + "name": "Tiger Soldier Ⅰ MP063", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182434" + ], + "release_date": "2021-09-11", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-soldier-mp064.json b/data/game/ti/tiger-soldier-mp064.json new file mode 100644 index 000000000000..b442c0df8b5a --- /dev/null +++ b/data/game/ti/tiger-soldier-mp064.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-soldier-mp064", + "name": "Tiger Soldier Ⅰ MP064", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182436" + ], + "release_date": "2021-09-11", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-soldier-mp065.json b/data/game/ti/tiger-soldier-mp065.json new file mode 100644 index 000000000000..6b4bd11c990e --- /dev/null +++ b/data/game/ti/tiger-soldier-mp065.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-soldier-mp065", + "name": "Tiger Soldier Ⅰ MP065", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182438" + ], + "release_date": "2021-09-11", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-soldier-mp066.json b/data/game/ti/tiger-soldier-mp066.json new file mode 100644 index 000000000000..6582cb1fc033 --- /dev/null +++ b/data/game/ti/tiger-soldier-mp066.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-soldier-mp066", + "name": "Tiger Soldier Ⅰ MP066", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182442" + ], + "release_date": "2021-09-11", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-soldier-mp067.json b/data/game/ti/tiger-soldier-mp067.json new file mode 100644 index 000000000000..3ad39c636ffe --- /dev/null +++ b/data/game/ti/tiger-soldier-mp067.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-soldier-mp067", + "name": "Tiger Soldier Ⅰ MP067", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182446" + ], + "release_date": "2021-09-11", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-soldier-mp068.json b/data/game/ti/tiger-soldier-mp068.json new file mode 100644 index 000000000000..ef9f7d77763b --- /dev/null +++ b/data/game/ti/tiger-soldier-mp068.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-soldier-mp068", + "name": "Tiger Soldier Ⅰ MP068", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182449" + ], + "release_date": "2021-09-11", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-soldier-mp069.json b/data/game/ti/tiger-soldier-mp069.json new file mode 100644 index 000000000000..85330cefb555 --- /dev/null +++ b/data/game/ti/tiger-soldier-mp069.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-soldier-mp069", + "name": "Tiger Soldier Ⅰ MP069", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182457" + ], + "release_date": "2021-09-11", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-soldier-mp070.json b/data/game/ti/tiger-soldier-mp070.json new file mode 100644 index 000000000000..04885cce2fc7 --- /dev/null +++ b/data/game/ti/tiger-soldier-mp070.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-soldier-mp070", + "name": "Tiger Soldier Ⅰ MP070", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182460" + ], + "release_date": "2021-09-11", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-soldier-mp071.json b/data/game/ti/tiger-soldier-mp071.json new file mode 100644 index 000000000000..e6c0641b3583 --- /dev/null +++ b/data/game/ti/tiger-soldier-mp071.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-soldier-mp071", + "name": "Tiger Soldier Ⅰ MP071", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182462" + ], + "release_date": "2021-09-12", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-soldier-mp072.json b/data/game/ti/tiger-soldier-mp072.json new file mode 100644 index 000000000000..6788003863d2 --- /dev/null +++ b/data/game/ti/tiger-soldier-mp072.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-soldier-mp072", + "name": "Tiger Soldier Ⅰ MP072", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182464" + ], + "release_date": "2021-09-12", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-soldier-mp073.json b/data/game/ti/tiger-soldier-mp073.json new file mode 100644 index 000000000000..f98c1e16a4f2 --- /dev/null +++ b/data/game/ti/tiger-soldier-mp073.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-soldier-mp073", + "name": "Tiger Soldier Ⅰ MP073", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182465" + ], + "release_date": "2021-09-12", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-soldier-mp074.json b/data/game/ti/tiger-soldier-mp074.json new file mode 100644 index 000000000000..50aff52ddea1 --- /dev/null +++ b/data/game/ti/tiger-soldier-mp074.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-soldier-mp074", + "name": "Tiger Soldier Ⅰ MP074", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182469" + ], + "release_date": "2021-09-12", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-soldier-mp075.json b/data/game/ti/tiger-soldier-mp075.json new file mode 100644 index 000000000000..951430ce9a5b --- /dev/null +++ b/data/game/ti/tiger-soldier-mp075.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-soldier-mp075", + "name": "Tiger Soldier Ⅰ MP075", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182471" + ], + "release_date": "2021-09-12", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-soldier-mp076.json b/data/game/ti/tiger-soldier-mp076.json new file mode 100644 index 000000000000..b1ebd9bba6df --- /dev/null +++ b/data/game/ti/tiger-soldier-mp076.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-soldier-mp076", + "name": "Tiger Soldier Ⅰ MP076", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182474" + ], + "release_date": "2021-09-12", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-soldier-mp077.json b/data/game/ti/tiger-soldier-mp077.json new file mode 100644 index 000000000000..485f90b723af --- /dev/null +++ b/data/game/ti/tiger-soldier-mp077.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-soldier-mp077", + "name": "Tiger Soldier Ⅰ MP077", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182479" + ], + "release_date": "2021-09-12", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-soldier-mp078.json b/data/game/ti/tiger-soldier-mp078.json new file mode 100644 index 000000000000..245a74a03665 --- /dev/null +++ b/data/game/ti/tiger-soldier-mp078.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-soldier-mp078", + "name": "Tiger Soldier Ⅰ MP078", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182480" + ], + "release_date": "2021-09-12", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-soldier-mp079.json b/data/game/ti/tiger-soldier-mp079.json new file mode 100644 index 000000000000..58f13ab699a0 --- /dev/null +++ b/data/game/ti/tiger-soldier-mp079.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-soldier-mp079", + "name": "Tiger Soldier Ⅰ MP079", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182484" + ], + "release_date": "2021-09-12", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-soldier-mp080.json b/data/game/ti/tiger-soldier-mp080.json new file mode 100644 index 000000000000..d6c371c22a86 --- /dev/null +++ b/data/game/ti/tiger-soldier-mp080.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-soldier-mp080", + "name": "Tiger Soldier Ⅰ MP080", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182486" + ], + "release_date": "2021-09-12", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-soldier-mp081.json b/data/game/ti/tiger-soldier-mp081.json new file mode 100644 index 000000000000..f7efa46a435d --- /dev/null +++ b/data/game/ti/tiger-soldier-mp081.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-soldier-mp081", + "name": "Tiger Soldier Ⅰ MP081", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182488" + ], + "release_date": "2021-09-12", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-soldier-mp082.json b/data/game/ti/tiger-soldier-mp082.json new file mode 100644 index 000000000000..51495a39bc25 --- /dev/null +++ b/data/game/ti/tiger-soldier-mp082.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-soldier-mp082", + "name": "Tiger Soldier Ⅰ MP082", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182490" + ], + "release_date": "2021-09-12", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-soldier-mp083.json b/data/game/ti/tiger-soldier-mp083.json new file mode 100644 index 000000000000..c84c61d655c0 --- /dev/null +++ b/data/game/ti/tiger-soldier-mp083.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-soldier-mp083", + "name": "Tiger Soldier Ⅰ MP083", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182495" + ], + "release_date": "2021-09-12", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-soldier-mp084.json b/data/game/ti/tiger-soldier-mp084.json new file mode 100644 index 000000000000..4b79c231776b --- /dev/null +++ b/data/game/ti/tiger-soldier-mp084.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-soldier-mp084", + "name": "Tiger Soldier Ⅰ MP084", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182501" + ], + "release_date": "2021-09-12", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-soldier-mp085.json b/data/game/ti/tiger-soldier-mp085.json new file mode 100644 index 000000000000..534d4ef74e98 --- /dev/null +++ b/data/game/ti/tiger-soldier-mp085.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-soldier-mp085", + "name": "Tiger Soldier Ⅰ MP085", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182505" + ], + "release_date": "2021-09-12", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-soldier-mp086.json b/data/game/ti/tiger-soldier-mp086.json new file mode 100644 index 000000000000..bab820ed7089 --- /dev/null +++ b/data/game/ti/tiger-soldier-mp086.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-soldier-mp086", + "name": "Tiger Soldier Ⅰ MP086", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182507" + ], + "release_date": "2021-09-12", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-soldier-mp087.json b/data/game/ti/tiger-soldier-mp087.json new file mode 100644 index 000000000000..81990333f61a --- /dev/null +++ b/data/game/ti/tiger-soldier-mp087.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-soldier-mp087", + "name": "Tiger Soldier Ⅰ MP087", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182510" + ], + "release_date": "2021-09-12", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-soldier-mp088.json b/data/game/ti/tiger-soldier-mp088.json new file mode 100644 index 000000000000..793d68e1a42c --- /dev/null +++ b/data/game/ti/tiger-soldier-mp088.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-soldier-mp088", + "name": "Tiger Soldier Ⅰ MP088", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182513" + ], + "release_date": "2021-09-12", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-soldier-mp089.json b/data/game/ti/tiger-soldier-mp089.json new file mode 100644 index 000000000000..a85e25c0d111 --- /dev/null +++ b/data/game/ti/tiger-soldier-mp089.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-soldier-mp089", + "name": "Tiger Soldier Ⅰ MP089", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182516" + ], + "release_date": "2021-09-12", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-soldier-mp090.json b/data/game/ti/tiger-soldier-mp090.json new file mode 100644 index 000000000000..4443128a35d3 --- /dev/null +++ b/data/game/ti/tiger-soldier-mp090.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-soldier-mp090", + "name": "Tiger Soldier Ⅰ MP090", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182517" + ], + "release_date": "2021-09-12", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-soldier-mp091.json b/data/game/ti/tiger-soldier-mp091.json new file mode 100644 index 000000000000..eea3052e4884 --- /dev/null +++ b/data/game/ti/tiger-soldier-mp091.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-soldier-mp091", + "name": "Tiger Soldier Ⅰ MP091", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182518" + ], + "release_date": "2021-09-12", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-soldier-mp092.json b/data/game/ti/tiger-soldier-mp092.json new file mode 100644 index 000000000000..9573315ab865 --- /dev/null +++ b/data/game/ti/tiger-soldier-mp092.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-soldier-mp092", + "name": "Tiger Soldier Ⅰ MP092", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182520" + ], + "release_date": "2021-09-12", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-soldier-mp093.json b/data/game/ti/tiger-soldier-mp093.json new file mode 100644 index 000000000000..3a0621adb811 --- /dev/null +++ b/data/game/ti/tiger-soldier-mp093.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-soldier-mp093", + "name": "Tiger Soldier Ⅰ MP093", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182522" + ], + "release_date": "2021-09-12", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-soldier-mp094.json b/data/game/ti/tiger-soldier-mp094.json new file mode 100644 index 000000000000..1f2a3d565ac0 --- /dev/null +++ b/data/game/ti/tiger-soldier-mp094.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-soldier-mp094", + "name": "Tiger Soldier Ⅰ MP094", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182523" + ], + "release_date": "2021-09-12", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-soldier-mp095.json b/data/game/ti/tiger-soldier-mp095.json new file mode 100644 index 000000000000..2c954e5c03d1 --- /dev/null +++ b/data/game/ti/tiger-soldier-mp095.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-soldier-mp095", + "name": "Tiger Soldier Ⅰ MP095", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182524" + ], + "release_date": "2021-09-12", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-soldier-mp096.json b/data/game/ti/tiger-soldier-mp096.json new file mode 100644 index 000000000000..a3f6a307920c --- /dev/null +++ b/data/game/ti/tiger-soldier-mp096.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-soldier-mp096", + "name": "Tiger Soldier Ⅰ MP096", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182525" + ], + "release_date": "2021-09-12", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-soldier-mp097.json b/data/game/ti/tiger-soldier-mp097.json new file mode 100644 index 000000000000..1d1c9687f426 --- /dev/null +++ b/data/game/ti/tiger-soldier-mp097.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-soldier-mp097", + "name": "Tiger Soldier Ⅰ MP097", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182529" + ], + "release_date": "2021-09-12", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-soldier-mp098.json b/data/game/ti/tiger-soldier-mp098.json new file mode 100644 index 000000000000..1fa01dd1c7bb --- /dev/null +++ b/data/game/ti/tiger-soldier-mp098.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-soldier-mp098", + "name": "Tiger Soldier Ⅰ MP098", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182531" + ], + "release_date": "2021-09-12", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-soldier-mp099.json b/data/game/ti/tiger-soldier-mp099.json new file mode 100644 index 000000000000..7e2695c27eac --- /dev/null +++ b/data/game/ti/tiger-soldier-mp099.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-soldier-mp099", + "name": "Tiger Soldier Ⅰ MP099", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182533" + ], + "release_date": "2021-09-12", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-soldier-mp100.json b/data/game/ti/tiger-soldier-mp100.json new file mode 100644 index 000000000000..289addc2b509 --- /dev/null +++ b/data/game/ti/tiger-soldier-mp100.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-soldier-mp100", + "name": "Tiger Soldier Ⅰ MP100", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182534" + ], + "release_date": "2021-09-12", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-striker-mp001.json b/data/game/ti/tiger-striker-mp001.json new file mode 100644 index 000000000000..99b40b714659 --- /dev/null +++ b/data/game/ti/tiger-striker-mp001.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-striker-mp001", + "name": "Tiger Striker MP001", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182536" + ], + "release_date": "2021-07-27", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-striker-mp002.json b/data/game/ti/tiger-striker-mp002.json new file mode 100644 index 000000000000..945e69c7c86a --- /dev/null +++ b/data/game/ti/tiger-striker-mp002.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-striker-mp002", + "name": "Tiger Striker MP002", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182537" + ], + "release_date": "2021-07-27", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-striker-mp003.json b/data/game/ti/tiger-striker-mp003.json new file mode 100644 index 000000000000..f4acfe83f5f6 --- /dev/null +++ b/data/game/ti/tiger-striker-mp003.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-striker-mp003", + "name": "Tiger Striker MP003", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182539" + ], + "release_date": "2021-07-27", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-striker-mp004.json b/data/game/ti/tiger-striker-mp004.json new file mode 100644 index 000000000000..0254b7b4a621 --- /dev/null +++ b/data/game/ti/tiger-striker-mp004.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-striker-mp004", + "name": "Tiger Striker MP004", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182540" + ], + "release_date": "2021-07-27", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-striker-mp005.json b/data/game/ti/tiger-striker-mp005.json new file mode 100644 index 000000000000..c3db0eeee332 --- /dev/null +++ b/data/game/ti/tiger-striker-mp005.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-striker-mp005", + "name": "Tiger Striker MP005", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182542" + ], + "release_date": "2021-07-27", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-striker-mp006.json b/data/game/ti/tiger-striker-mp006.json new file mode 100644 index 000000000000..8f28757171a7 --- /dev/null +++ b/data/game/ti/tiger-striker-mp006.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-striker-mp006", + "name": "Tiger Striker MP006", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182544" + ], + "release_date": "2021-07-27", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-striker-mp007.json b/data/game/ti/tiger-striker-mp007.json new file mode 100644 index 000000000000..6825089dc910 --- /dev/null +++ b/data/game/ti/tiger-striker-mp007.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-striker-mp007", + "name": "Tiger Striker MP007", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182545" + ], + "release_date": "2021-07-27", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-striker-mp008.json b/data/game/ti/tiger-striker-mp008.json new file mode 100644 index 000000000000..e4abee71523d --- /dev/null +++ b/data/game/ti/tiger-striker-mp008.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-striker-mp008", + "name": "Tiger Striker MP008", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182546" + ], + "release_date": "2021-07-27", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-striker-mp009.json b/data/game/ti/tiger-striker-mp009.json new file mode 100644 index 000000000000..a376d08beb0a --- /dev/null +++ b/data/game/ti/tiger-striker-mp009.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-striker-mp009", + "name": "Tiger Striker MP009", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182547" + ], + "release_date": "2021-07-27", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-striker-mp010.json b/data/game/ti/tiger-striker-mp010.json new file mode 100644 index 000000000000..9273b3eaf339 --- /dev/null +++ b/data/game/ti/tiger-striker-mp010.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-striker-mp010", + "name": "Tiger Striker MP010", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182549" + ], + "release_date": "2021-07-27", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-striker-mp011.json b/data/game/ti/tiger-striker-mp011.json new file mode 100644 index 000000000000..9be6b5d8fb5f --- /dev/null +++ b/data/game/ti/tiger-striker-mp011.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-striker-mp011", + "name": "Tiger Striker MP011", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182551" + ], + "release_date": "2021-07-31", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-striker-mp012.json b/data/game/ti/tiger-striker-mp012.json new file mode 100644 index 000000000000..419231529a88 --- /dev/null +++ b/data/game/ti/tiger-striker-mp012.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-striker-mp012", + "name": "Tiger Striker MP012", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182553" + ], + "release_date": "2021-07-31", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-striker-mp013.json b/data/game/ti/tiger-striker-mp013.json new file mode 100644 index 000000000000..9918d385b4d8 --- /dev/null +++ b/data/game/ti/tiger-striker-mp013.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-striker-mp013", + "name": "Tiger Striker MP013", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182555" + ], + "release_date": "2021-07-31", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-striker-mp014.json b/data/game/ti/tiger-striker-mp014.json new file mode 100644 index 000000000000..5423887d71cd --- /dev/null +++ b/data/game/ti/tiger-striker-mp014.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-striker-mp014", + "name": "Tiger Striker MP014", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182557" + ], + "release_date": "2021-07-31", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-striker-mp015.json b/data/game/ti/tiger-striker-mp015.json new file mode 100644 index 000000000000..5d05f1264165 --- /dev/null +++ b/data/game/ti/tiger-striker-mp015.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-striker-mp015", + "name": "Tiger Striker MP015", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182559" + ], + "release_date": "2021-07-31", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-striker-mp016.json b/data/game/ti/tiger-striker-mp016.json new file mode 100644 index 000000000000..5434092ddccc --- /dev/null +++ b/data/game/ti/tiger-striker-mp016.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-striker-mp016", + "name": "Tiger Striker MP016", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182562" + ], + "release_date": "2021-07-31", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-striker-mp017.json b/data/game/ti/tiger-striker-mp017.json new file mode 100644 index 000000000000..69724fe539c3 --- /dev/null +++ b/data/game/ti/tiger-striker-mp017.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-striker-mp017", + "name": "Tiger Striker MP017", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182565" + ], + "release_date": "2021-07-31", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-striker-mp018.json b/data/game/ti/tiger-striker-mp018.json new file mode 100644 index 000000000000..e6e308728abd --- /dev/null +++ b/data/game/ti/tiger-striker-mp018.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-striker-mp018", + "name": "Tiger Striker MP018", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182568" + ], + "release_date": "2021-07-31", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-striker-mp019.json b/data/game/ti/tiger-striker-mp019.json new file mode 100644 index 000000000000..9bc60c96554a --- /dev/null +++ b/data/game/ti/tiger-striker-mp019.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-striker-mp019", + "name": "Tiger Striker MP019", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182571" + ], + "release_date": "2021-07-31", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-striker-mp020.json b/data/game/ti/tiger-striker-mp020.json new file mode 100644 index 000000000000..4e9bb2c4fb4d --- /dev/null +++ b/data/game/ti/tiger-striker-mp020.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-striker-mp020", + "name": "Tiger Striker MP020", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182581" + ], + "release_date": "2021-07-31", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-striker-mp021.json b/data/game/ti/tiger-striker-mp021.json new file mode 100644 index 000000000000..febdfb0c56c1 --- /dev/null +++ b/data/game/ti/tiger-striker-mp021.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-striker-mp021", + "name": "Tiger Striker MP021", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182591" + ], + "release_date": "2021-08-04", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-striker-mp022.json b/data/game/ti/tiger-striker-mp022.json new file mode 100644 index 000000000000..a8cf9a6aa547 --- /dev/null +++ b/data/game/ti/tiger-striker-mp022.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-striker-mp022", + "name": "Tiger Striker MP022", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182601" + ], + "release_date": "2021-08-04", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-striker-mp023.json b/data/game/ti/tiger-striker-mp023.json new file mode 100644 index 000000000000..38210ae1b49b --- /dev/null +++ b/data/game/ti/tiger-striker-mp023.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-striker-mp023", + "name": "Tiger Striker MP023", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182610" + ], + "release_date": "2021-08-04", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-striker-mp024.json b/data/game/ti/tiger-striker-mp024.json new file mode 100644 index 000000000000..da5eba9f7f2a --- /dev/null +++ b/data/game/ti/tiger-striker-mp024.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-striker-mp024", + "name": "Tiger Striker MP024", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182615" + ], + "release_date": "2021-08-04", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-striker-mp025.json b/data/game/ti/tiger-striker-mp025.json new file mode 100644 index 000000000000..8b7569c53086 --- /dev/null +++ b/data/game/ti/tiger-striker-mp025.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-striker-mp025", + "name": "Tiger Striker MP025", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182626" + ], + "release_date": "2021-08-04", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-striker-mp026.json b/data/game/ti/tiger-striker-mp026.json new file mode 100644 index 000000000000..99e31891f6f5 --- /dev/null +++ b/data/game/ti/tiger-striker-mp026.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-striker-mp026", + "name": "Tiger Striker MP026", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182632" + ], + "release_date": "2021-08-04", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-striker-mp027.json b/data/game/ti/tiger-striker-mp027.json new file mode 100644 index 000000000000..c03a8539155c --- /dev/null +++ b/data/game/ti/tiger-striker-mp027.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-striker-mp027", + "name": "Tiger Striker MP027", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182640" + ], + "release_date": "2021-08-04", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-striker-mp028.json b/data/game/ti/tiger-striker-mp028.json new file mode 100644 index 000000000000..07f120c2e4f7 --- /dev/null +++ b/data/game/ti/tiger-striker-mp028.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-striker-mp028", + "name": "Tiger Striker MP028", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182649" + ], + "release_date": "2021-08-04", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-striker-mp029.json b/data/game/ti/tiger-striker-mp029.json new file mode 100644 index 000000000000..11f88aba7dcb --- /dev/null +++ b/data/game/ti/tiger-striker-mp029.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-striker-mp029", + "name": "Tiger Striker MP029", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182651" + ], + "release_date": "2021-08-04", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-striker-mp030.json b/data/game/ti/tiger-striker-mp030.json new file mode 100644 index 000000000000..e31dbb138aed --- /dev/null +++ b/data/game/ti/tiger-striker-mp030.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-striker-mp030", + "name": "Tiger Striker MP030", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182653" + ], + "release_date": "2021-08-04", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-striker-mp031.json b/data/game/ti/tiger-striker-mp031.json new file mode 100644 index 000000000000..742be320d9cb --- /dev/null +++ b/data/game/ti/tiger-striker-mp031.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-striker-mp031", + "name": "Tiger Striker MP031", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182657" + ], + "release_date": "2021-08-14", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-striker-mp032.json b/data/game/ti/tiger-striker-mp032.json new file mode 100644 index 000000000000..e80df33ace75 --- /dev/null +++ b/data/game/ti/tiger-striker-mp032.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-striker-mp032", + "name": "Tiger Striker MP032", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182664" + ], + "release_date": "2021-08-14", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-striker-mp033.json b/data/game/ti/tiger-striker-mp033.json new file mode 100644 index 000000000000..ec6922cabf48 --- /dev/null +++ b/data/game/ti/tiger-striker-mp033.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-striker-mp033", + "name": "Tiger Striker MP033", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182677" + ], + "release_date": "2021-08-14", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-striker-mp034.json b/data/game/ti/tiger-striker-mp034.json new file mode 100644 index 000000000000..c12c5b465024 --- /dev/null +++ b/data/game/ti/tiger-striker-mp034.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-striker-mp034", + "name": "Tiger Striker MP034", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182680" + ], + "release_date": "2021-08-14", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-striker-mp035.json b/data/game/ti/tiger-striker-mp035.json new file mode 100644 index 000000000000..4c5ac596f457 --- /dev/null +++ b/data/game/ti/tiger-striker-mp035.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-striker-mp035", + "name": "Tiger Striker MP035", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182688" + ], + "release_date": "2021-08-14", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-striker-mp036.json b/data/game/ti/tiger-striker-mp036.json new file mode 100644 index 000000000000..5c694086a00e --- /dev/null +++ b/data/game/ti/tiger-striker-mp036.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-striker-mp036", + "name": "Tiger Striker MP036", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182701" + ], + "release_date": "2021-08-14", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-striker-mp037.json b/data/game/ti/tiger-striker-mp037.json new file mode 100644 index 000000000000..4a37debe9d0c --- /dev/null +++ b/data/game/ti/tiger-striker-mp037.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-striker-mp037", + "name": "Tiger Striker MP037", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182712" + ], + "release_date": "2021-08-14", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-striker-mp038.json b/data/game/ti/tiger-striker-mp038.json new file mode 100644 index 000000000000..adb932f39309 --- /dev/null +++ b/data/game/ti/tiger-striker-mp038.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-striker-mp038", + "name": "Tiger Striker MP038", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182721" + ], + "release_date": "2021-08-14", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-striker-mp039.json b/data/game/ti/tiger-striker-mp039.json new file mode 100644 index 000000000000..58b971bf105f --- /dev/null +++ b/data/game/ti/tiger-striker-mp039.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-striker-mp039", + "name": "Tiger Striker MP039", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182725" + ], + "release_date": "2021-08-14", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-striker-mp040.json b/data/game/ti/tiger-striker-mp040.json new file mode 100644 index 000000000000..e6dc1fedc6f2 --- /dev/null +++ b/data/game/ti/tiger-striker-mp040.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-striker-mp040", + "name": "Tiger Striker MP040", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182737" + ], + "release_date": "2021-08-14", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-striker-mp041.json b/data/game/ti/tiger-striker-mp041.json new file mode 100644 index 000000000000..ca205943d615 --- /dev/null +++ b/data/game/ti/tiger-striker-mp041.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-striker-mp041", + "name": "Tiger Striker MP041", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182748" + ], + "release_date": "2021-08-19", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-striker-mp042.json b/data/game/ti/tiger-striker-mp042.json new file mode 100644 index 000000000000..9cf2211fca5a --- /dev/null +++ b/data/game/ti/tiger-striker-mp042.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-striker-mp042", + "name": "Tiger Striker MP042", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182761" + ], + "release_date": "2021-08-19", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-striker-mp043.json b/data/game/ti/tiger-striker-mp043.json new file mode 100644 index 000000000000..9098cda0ca5b --- /dev/null +++ b/data/game/ti/tiger-striker-mp043.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-striker-mp043", + "name": "Tiger Striker MP043", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182765" + ], + "release_date": "2021-08-19", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-striker-mp044.json b/data/game/ti/tiger-striker-mp044.json new file mode 100644 index 000000000000..b7f34427480e --- /dev/null +++ b/data/game/ti/tiger-striker-mp044.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-striker-mp044", + "name": "Tiger Striker MP044", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182769" + ], + "release_date": "2021-08-19", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-striker-mp045.json b/data/game/ti/tiger-striker-mp045.json new file mode 100644 index 000000000000..008962f48af4 --- /dev/null +++ b/data/game/ti/tiger-striker-mp045.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-striker-mp045", + "name": "Tiger Striker MP045", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182774" + ], + "release_date": "2021-08-19", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-striker-mp046.json b/data/game/ti/tiger-striker-mp046.json new file mode 100644 index 000000000000..2386c2a46102 --- /dev/null +++ b/data/game/ti/tiger-striker-mp046.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-striker-mp046", + "name": "Tiger Striker MP046", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182776" + ], + "release_date": "2021-08-19", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-striker-mp047.json b/data/game/ti/tiger-striker-mp047.json new file mode 100644 index 000000000000..25e5217d3bbf --- /dev/null +++ b/data/game/ti/tiger-striker-mp047.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-striker-mp047", + "name": "Tiger Striker MP047", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182780" + ], + "release_date": "2021-08-19", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-striker-mp048.json b/data/game/ti/tiger-striker-mp048.json new file mode 100644 index 000000000000..5f73d7b56130 --- /dev/null +++ b/data/game/ti/tiger-striker-mp048.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-striker-mp048", + "name": "Tiger Striker MP048", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182783" + ], + "release_date": "2021-08-19", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-striker-mp049.json b/data/game/ti/tiger-striker-mp049.json new file mode 100644 index 000000000000..5cc7a3711228 --- /dev/null +++ b/data/game/ti/tiger-striker-mp049.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-striker-mp049", + "name": "Tiger Striker MP049", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182786" + ], + "release_date": "2021-08-19", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-striker-mp050.json b/data/game/ti/tiger-striker-mp050.json new file mode 100644 index 000000000000..6745e2562563 --- /dev/null +++ b/data/game/ti/tiger-striker-mp050.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-striker-mp050", + "name": "Tiger Striker MP050", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182790" + ], + "release_date": "2021-08-19", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-striker-mp051.json b/data/game/ti/tiger-striker-mp051.json new file mode 100644 index 000000000000..550d68c4b2d4 --- /dev/null +++ b/data/game/ti/tiger-striker-mp051.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-striker-mp051", + "name": "Tiger Striker MP051", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182794" + ], + "release_date": "2021-08-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-striker-mp052.json b/data/game/ti/tiger-striker-mp052.json new file mode 100644 index 000000000000..50249c4dd0e3 --- /dev/null +++ b/data/game/ti/tiger-striker-mp052.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-striker-mp052", + "name": "Tiger Striker MP052", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182796" + ], + "release_date": "2021-08-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-striker-mp053.json b/data/game/ti/tiger-striker-mp053.json new file mode 100644 index 000000000000..b8f1bd46e698 --- /dev/null +++ b/data/game/ti/tiger-striker-mp053.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-striker-mp053", + "name": "Tiger Striker MP053", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182799" + ], + "release_date": "2021-08-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-striker-mp054.json b/data/game/ti/tiger-striker-mp054.json new file mode 100644 index 000000000000..bd87592deb67 --- /dev/null +++ b/data/game/ti/tiger-striker-mp054.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-striker-mp054", + "name": "Tiger Striker MP054", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182800" + ], + "release_date": "2021-08-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-striker-mp055.json b/data/game/ti/tiger-striker-mp055.json new file mode 100644 index 000000000000..6625ce6a7a95 --- /dev/null +++ b/data/game/ti/tiger-striker-mp055.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-striker-mp055", + "name": "Tiger Striker MP055", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182804" + ], + "release_date": "2021-08-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-striker-mp056.json b/data/game/ti/tiger-striker-mp056.json new file mode 100644 index 000000000000..d47dc7de6940 --- /dev/null +++ b/data/game/ti/tiger-striker-mp056.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-striker-mp056", + "name": "Tiger Striker MP056", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182809" + ], + "release_date": "2021-08-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-striker-mp057.json b/data/game/ti/tiger-striker-mp057.json new file mode 100644 index 000000000000..da9a29db0c83 --- /dev/null +++ b/data/game/ti/tiger-striker-mp057.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-striker-mp057", + "name": "Tiger Striker MP057", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182813" + ], + "release_date": "2021-08-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-striker-mp058.json b/data/game/ti/tiger-striker-mp058.json new file mode 100644 index 000000000000..3399b831e82c --- /dev/null +++ b/data/game/ti/tiger-striker-mp058.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-striker-mp058", + "name": "Tiger Striker MP058", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182816" + ], + "release_date": "2021-08-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-striker-mp059.json b/data/game/ti/tiger-striker-mp059.json new file mode 100644 index 000000000000..bf7eb6532ec2 --- /dev/null +++ b/data/game/ti/tiger-striker-mp059.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-striker-mp059", + "name": "Tiger Striker MP059", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182818" + ], + "release_date": "2021-08-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-striker-mp060.json b/data/game/ti/tiger-striker-mp060.json new file mode 100644 index 000000000000..44f2245ac661 --- /dev/null +++ b/data/game/ti/tiger-striker-mp060.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-striker-mp060", + "name": "Tiger Striker MP060", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182820" + ], + "release_date": "2021-08-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-striker-mp061.json b/data/game/ti/tiger-striker-mp061.json new file mode 100644 index 000000000000..d17a5c790eb9 --- /dev/null +++ b/data/game/ti/tiger-striker-mp061.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-striker-mp061", + "name": "Tiger Striker MP061", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182824" + ], + "release_date": "2021-08-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-striker-mp062.json b/data/game/ti/tiger-striker-mp062.json new file mode 100644 index 000000000000..d82762df634e --- /dev/null +++ b/data/game/ti/tiger-striker-mp062.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-striker-mp062", + "name": "Tiger Striker MP062", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182827" + ], + "release_date": "2021-08-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-striker-mp063.json b/data/game/ti/tiger-striker-mp063.json new file mode 100644 index 000000000000..106d4dc8e044 --- /dev/null +++ b/data/game/ti/tiger-striker-mp063.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-striker-mp063", + "name": "Tiger Striker MP063", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182829" + ], + "release_date": "2021-08-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-striker-mp064.json b/data/game/ti/tiger-striker-mp064.json new file mode 100644 index 000000000000..36a34b99a175 --- /dev/null +++ b/data/game/ti/tiger-striker-mp064.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-striker-mp064", + "name": "Tiger Striker MP064", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182833" + ], + "release_date": "2021-08-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-striker-mp065.json b/data/game/ti/tiger-striker-mp065.json new file mode 100644 index 000000000000..5c25fe216f0f --- /dev/null +++ b/data/game/ti/tiger-striker-mp065.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-striker-mp065", + "name": "Tiger Striker MP065", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182834" + ], + "release_date": "2021-08-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-striker-mp066.json b/data/game/ti/tiger-striker-mp066.json new file mode 100644 index 000000000000..62184a4efe43 --- /dev/null +++ b/data/game/ti/tiger-striker-mp066.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-striker-mp066", + "name": "Tiger Striker MP066", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182838" + ], + "release_date": "2021-08-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-striker-mp067.json b/data/game/ti/tiger-striker-mp067.json new file mode 100644 index 000000000000..ea6ca20f5d16 --- /dev/null +++ b/data/game/ti/tiger-striker-mp067.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-striker-mp067", + "name": "Tiger Striker MP067", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182840" + ], + "release_date": "2021-08-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-striker-mp068.json b/data/game/ti/tiger-striker-mp068.json new file mode 100644 index 000000000000..f256dc521c1a --- /dev/null +++ b/data/game/ti/tiger-striker-mp068.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-striker-mp068", + "name": "Tiger Striker MP068", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182842" + ], + "release_date": "2021-08-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-striker-mp069.json b/data/game/ti/tiger-striker-mp069.json new file mode 100644 index 000000000000..28636db6f776 --- /dev/null +++ b/data/game/ti/tiger-striker-mp069.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-striker-mp069", + "name": "Tiger Striker MP069", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182844" + ], + "release_date": "2021-08-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-striker-mp070.json b/data/game/ti/tiger-striker-mp070.json new file mode 100644 index 000000000000..2d6a31973b85 --- /dev/null +++ b/data/game/ti/tiger-striker-mp070.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-striker-mp070", + "name": "Tiger Striker MP070", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182846" + ], + "release_date": "2021-08-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-striker-mp071.json b/data/game/ti/tiger-striker-mp071.json new file mode 100644 index 000000000000..04060d0d07ad --- /dev/null +++ b/data/game/ti/tiger-striker-mp071.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-striker-mp071", + "name": "Tiger Striker MP071", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182848" + ], + "release_date": "2021-09-01", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-striker-mp072.json b/data/game/ti/tiger-striker-mp072.json new file mode 100644 index 000000000000..04196535eaf4 --- /dev/null +++ b/data/game/ti/tiger-striker-mp072.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-striker-mp072", + "name": "Tiger Striker MP072", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182851" + ], + "release_date": "2021-09-01", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-striker-mp073.json b/data/game/ti/tiger-striker-mp073.json new file mode 100644 index 000000000000..cfc484d3261f --- /dev/null +++ b/data/game/ti/tiger-striker-mp073.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-striker-mp073", + "name": "Tiger Striker MP073", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182856" + ], + "release_date": "2021-09-01", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-striker-mp074.json b/data/game/ti/tiger-striker-mp074.json new file mode 100644 index 000000000000..5e943adacb23 --- /dev/null +++ b/data/game/ti/tiger-striker-mp074.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-striker-mp074", + "name": "Tiger Striker MP074", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182860" + ], + "release_date": "2021-09-01", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-striker-mp075.json b/data/game/ti/tiger-striker-mp075.json new file mode 100644 index 000000000000..adb2374cb724 --- /dev/null +++ b/data/game/ti/tiger-striker-mp075.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-striker-mp075", + "name": "Tiger Striker MP075", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182862" + ], + "release_date": "2021-09-01", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-striker-mp076.json b/data/game/ti/tiger-striker-mp076.json new file mode 100644 index 000000000000..56bc43bdaafc --- /dev/null +++ b/data/game/ti/tiger-striker-mp076.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-striker-mp076", + "name": "Tiger Striker MP076", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182864" + ], + "release_date": "2021-09-01", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-striker-mp077.json b/data/game/ti/tiger-striker-mp077.json new file mode 100644 index 000000000000..f175d4fd9662 --- /dev/null +++ b/data/game/ti/tiger-striker-mp077.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-striker-mp077", + "name": "Tiger Striker MP077", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182866" + ], + "release_date": "2021-09-01", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-striker-mp078.json b/data/game/ti/tiger-striker-mp078.json new file mode 100644 index 000000000000..541f22c40112 --- /dev/null +++ b/data/game/ti/tiger-striker-mp078.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-striker-mp078", + "name": "Tiger Striker MP078", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182868" + ], + "release_date": "2021-09-01", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-striker-mp079.json b/data/game/ti/tiger-striker-mp079.json new file mode 100644 index 000000000000..25a29b64cbf8 --- /dev/null +++ b/data/game/ti/tiger-striker-mp079.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-striker-mp079", + "name": "Tiger Striker MP079", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182870" + ], + "release_date": "2021-09-01", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-striker-mp080.json b/data/game/ti/tiger-striker-mp080.json new file mode 100644 index 000000000000..a8c7b8804991 --- /dev/null +++ b/data/game/ti/tiger-striker-mp080.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-striker-mp080", + "name": "Tiger Striker MP080", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182871" + ], + "release_date": "2021-09-01", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-striker-mp081.json b/data/game/ti/tiger-striker-mp081.json new file mode 100644 index 000000000000..bd2b08d0eea9 --- /dev/null +++ b/data/game/ti/tiger-striker-mp081.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-striker-mp081", + "name": "Tiger Striker MP081", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182873" + ], + "release_date": "2021-09-09", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-striker-mp082.json b/data/game/ti/tiger-striker-mp082.json new file mode 100644 index 000000000000..5db78baf5de7 --- /dev/null +++ b/data/game/ti/tiger-striker-mp082.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-striker-mp082", + "name": "Tiger Striker MP082", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182880" + ], + "release_date": "2021-09-09", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-striker-mp083.json b/data/game/ti/tiger-striker-mp083.json new file mode 100644 index 000000000000..5a984ef3b60e --- /dev/null +++ b/data/game/ti/tiger-striker-mp083.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-striker-mp083", + "name": "Tiger Striker MP083", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182884" + ], + "release_date": "2021-09-09", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-striker-mp084.json b/data/game/ti/tiger-striker-mp084.json new file mode 100644 index 000000000000..699cbab66b43 --- /dev/null +++ b/data/game/ti/tiger-striker-mp084.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-striker-mp084", + "name": "Tiger Striker MP084", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182886" + ], + "release_date": "2021-09-09", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-striker-mp085.json b/data/game/ti/tiger-striker-mp085.json new file mode 100644 index 000000000000..dad1942d3dff --- /dev/null +++ b/data/game/ti/tiger-striker-mp085.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-striker-mp085", + "name": "Tiger Striker MP085", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182890" + ], + "release_date": "2021-09-09", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-striker-mp086.json b/data/game/ti/tiger-striker-mp086.json new file mode 100644 index 000000000000..43091e5cf488 --- /dev/null +++ b/data/game/ti/tiger-striker-mp086.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-striker-mp086", + "name": "Tiger Striker MP086", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182900" + ], + "release_date": "2021-09-09", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-striker-mp087.json b/data/game/ti/tiger-striker-mp087.json new file mode 100644 index 000000000000..b3ad489813b1 --- /dev/null +++ b/data/game/ti/tiger-striker-mp087.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-striker-mp087", + "name": "Tiger Striker MP087", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182906" + ], + "release_date": "2021-09-09", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-striker-mp088.json b/data/game/ti/tiger-striker-mp088.json new file mode 100644 index 000000000000..7703fbb6428a --- /dev/null +++ b/data/game/ti/tiger-striker-mp088.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-striker-mp088", + "name": "Tiger Striker MP088", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182913" + ], + "release_date": "2021-09-09", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-striker-mp089.json b/data/game/ti/tiger-striker-mp089.json new file mode 100644 index 000000000000..1b9ed87db43a --- /dev/null +++ b/data/game/ti/tiger-striker-mp089.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-striker-mp089", + "name": "Tiger Striker MP089", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182918" + ], + "release_date": "2021-09-09", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-striker-mp090.json b/data/game/ti/tiger-striker-mp090.json new file mode 100644 index 000000000000..a67f97fbd4f1 --- /dev/null +++ b/data/game/ti/tiger-striker-mp090.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-striker-mp090", + "name": "Tiger Striker MP090", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182920" + ], + "release_date": "2021-09-09", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-striker-mp091.json b/data/game/ti/tiger-striker-mp091.json new file mode 100644 index 000000000000..8add61b08e0a --- /dev/null +++ b/data/game/ti/tiger-striker-mp091.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-striker-mp091", + "name": "Tiger Striker MP091", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182926" + ], + "release_date": "2021-09-11", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-striker-mp092.json b/data/game/ti/tiger-striker-mp092.json new file mode 100644 index 000000000000..77d99821d566 --- /dev/null +++ b/data/game/ti/tiger-striker-mp092.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-striker-mp092", + "name": "Tiger Striker MP092", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182929" + ], + "release_date": "2021-09-11", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-striker-mp093.json b/data/game/ti/tiger-striker-mp093.json new file mode 100644 index 000000000000..e610a61dbda4 --- /dev/null +++ b/data/game/ti/tiger-striker-mp093.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-striker-mp093", + "name": "Tiger Striker MP093", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182931" + ], + "release_date": "2021-09-11", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-striker-mp094.json b/data/game/ti/tiger-striker-mp094.json new file mode 100644 index 000000000000..6d9f04b01670 --- /dev/null +++ b/data/game/ti/tiger-striker-mp094.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-striker-mp094", + "name": "Tiger Striker MP094", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182935" + ], + "release_date": "2021-09-11", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-striker-mp095.json b/data/game/ti/tiger-striker-mp095.json new file mode 100644 index 000000000000..dab111e5bc27 --- /dev/null +++ b/data/game/ti/tiger-striker-mp095.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-striker-mp095", + "name": "Tiger Striker MP095", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182936" + ], + "release_date": "2021-09-11", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-striker-mp096.json b/data/game/ti/tiger-striker-mp096.json new file mode 100644 index 000000000000..3d33c8ed57f2 --- /dev/null +++ b/data/game/ti/tiger-striker-mp096.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-striker-mp096", + "name": "Tiger Striker MP096", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182937" + ], + "release_date": "2021-09-11", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-striker-mp097.json b/data/game/ti/tiger-striker-mp097.json new file mode 100644 index 000000000000..4824ba29a3b5 --- /dev/null +++ b/data/game/ti/tiger-striker-mp097.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-striker-mp097", + "name": "Tiger Striker MP097", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182941" + ], + "release_date": "2021-09-11", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-striker-mp098.json b/data/game/ti/tiger-striker-mp098.json new file mode 100644 index 000000000000..fd3143b08269 --- /dev/null +++ b/data/game/ti/tiger-striker-mp098.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-striker-mp098", + "name": "Tiger Striker MP098", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182943" + ], + "release_date": "2021-09-11", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-striker-mp099.json b/data/game/ti/tiger-striker-mp099.json new file mode 100644 index 000000000000..d746333c1308 --- /dev/null +++ b/data/game/ti/tiger-striker-mp099.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-striker-mp099", + "name": "Tiger Striker MP099", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182944" + ], + "release_date": "2021-09-11", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-striker-mp100.json b/data/game/ti/tiger-striker-mp100.json new file mode 100644 index 000000000000..0edd8ada50eb --- /dev/null +++ b/data/game/ti/tiger-striker-mp100.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-striker-mp100", + "name": "Tiger Striker MP100", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182945" + ], + "release_date": "2021-09-11", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-a-gun-mp001.json b/data/game/ti/tiger-tank-59-a-gun-mp001.json new file mode 100644 index 000000000000..6a394a2b5857 --- /dev/null +++ b/data/game/ti/tiger-tank-59-a-gun-mp001.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-a-gun-mp001", + "name": "Tiger Tank 59 Ⅰ A-Gun MP001", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182949" + ], + "release_date": "2021-06-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-a-gun-mp002.json b/data/game/ti/tiger-tank-59-a-gun-mp002.json new file mode 100644 index 000000000000..950346db624a --- /dev/null +++ b/data/game/ti/tiger-tank-59-a-gun-mp002.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-a-gun-mp002", + "name": "Tiger Tank 59 Ⅰ A-Gun MP002", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182959" + ], + "release_date": "2021-06-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-a-gun-mp003.json b/data/game/ti/tiger-tank-59-a-gun-mp003.json new file mode 100644 index 000000000000..e41dc0fcb963 --- /dev/null +++ b/data/game/ti/tiger-tank-59-a-gun-mp003.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-a-gun-mp003", + "name": "Tiger Tank 59 Ⅰ A-Gun MP003", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182967" + ], + "release_date": "2021-06-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-a-gun-mp004.json b/data/game/ti/tiger-tank-59-a-gun-mp004.json new file mode 100644 index 000000000000..92b76661150d --- /dev/null +++ b/data/game/ti/tiger-tank-59-a-gun-mp004.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-a-gun-mp004", + "name": "Tiger Tank 59 Ⅰ A-Gun MP004", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182975" + ], + "release_date": "2021-06-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-a-gun-mp005.json b/data/game/ti/tiger-tank-59-a-gun-mp005.json new file mode 100644 index 000000000000..920b1bce8230 --- /dev/null +++ b/data/game/ti/tiger-tank-59-a-gun-mp005.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-a-gun-mp005", + "name": "Tiger Tank 59 Ⅰ A-Gun MP005", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182984" + ], + "release_date": "2021-06-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-a-gun-mp006.json b/data/game/ti/tiger-tank-59-a-gun-mp006.json new file mode 100644 index 000000000000..01d51601fabb --- /dev/null +++ b/data/game/ti/tiger-tank-59-a-gun-mp006.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-a-gun-mp006", + "name": "Tiger Tank 59 Ⅰ A-Gun MP006", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182988" + ], + "release_date": "2021-06-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-a-gun-mp007.json b/data/game/ti/tiger-tank-59-a-gun-mp007.json new file mode 100644 index 000000000000..55bf003cb18e --- /dev/null +++ b/data/game/ti/tiger-tank-59-a-gun-mp007.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-a-gun-mp007", + "name": "Tiger Tank 59 Ⅰ A-Gun MP007", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182996" + ], + "release_date": "2021-06-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-a-gun-mp008.json b/data/game/ti/tiger-tank-59-a-gun-mp008.json new file mode 100644 index 000000000000..e03be7a96263 --- /dev/null +++ b/data/game/ti/tiger-tank-59-a-gun-mp008.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-a-gun-mp008", + "name": "Tiger Tank 59 Ⅰ A-Gun MP008", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182998" + ], + "release_date": "2021-06-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-a-gun-mp009.json b/data/game/ti/tiger-tank-59-a-gun-mp009.json new file mode 100644 index 000000000000..9767c9a514ba --- /dev/null +++ b/data/game/ti/tiger-tank-59-a-gun-mp009.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-a-gun-mp009", + "name": "Tiger Tank 59 Ⅰ A-Gun MP009", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183007" + ], + "release_date": "2021-06-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-a-gun-mp010.json b/data/game/ti/tiger-tank-59-a-gun-mp010.json new file mode 100644 index 000000000000..b48ee159bb4a --- /dev/null +++ b/data/game/ti/tiger-tank-59-a-gun-mp010.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-a-gun-mp010", + "name": "Tiger Tank 59 Ⅰ A-Gun MP010", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183008" + ], + "release_date": "2021-06-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-a-gun-mp011.json b/data/game/ti/tiger-tank-59-a-gun-mp011.json new file mode 100644 index 000000000000..8d267f9e5636 --- /dev/null +++ b/data/game/ti/tiger-tank-59-a-gun-mp011.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-a-gun-mp011", + "name": "Tiger Tank 59 Ⅰ A-Gun MP011", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183012" + ], + "release_date": "2021-06-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-a-gun-mp012.json b/data/game/ti/tiger-tank-59-a-gun-mp012.json new file mode 100644 index 000000000000..fced81fe7373 --- /dev/null +++ b/data/game/ti/tiger-tank-59-a-gun-mp012.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-a-gun-mp012", + "name": "Tiger Tank 59 Ⅰ A-Gun MP012", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183020" + ], + "release_date": "2021-06-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-a-gun-mp013.json b/data/game/ti/tiger-tank-59-a-gun-mp013.json new file mode 100644 index 000000000000..f30742793d9f --- /dev/null +++ b/data/game/ti/tiger-tank-59-a-gun-mp013.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-a-gun-mp013", + "name": "Tiger Tank 59 Ⅰ A-Gun MP013", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183028" + ], + "release_date": "2021-06-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-a-gun-mp014.json b/data/game/ti/tiger-tank-59-a-gun-mp014.json new file mode 100644 index 000000000000..c973a8afe599 --- /dev/null +++ b/data/game/ti/tiger-tank-59-a-gun-mp014.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-a-gun-mp014", + "name": "Tiger Tank 59 Ⅰ A-Gun MP014", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183031" + ], + "release_date": "2021-06-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-a-gun-mp015.json b/data/game/ti/tiger-tank-59-a-gun-mp015.json new file mode 100644 index 000000000000..dc835c4d37b5 --- /dev/null +++ b/data/game/ti/tiger-tank-59-a-gun-mp015.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-a-gun-mp015", + "name": "Tiger Tank 59 Ⅰ A-Gun MP015", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183039" + ], + "release_date": "2021-06-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-a-gun-mp016.json b/data/game/ti/tiger-tank-59-a-gun-mp016.json new file mode 100644 index 000000000000..25293c7908cc --- /dev/null +++ b/data/game/ti/tiger-tank-59-a-gun-mp016.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-a-gun-mp016", + "name": "Tiger Tank 59 Ⅰ A-Gun MP016", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183049" + ], + "release_date": "2021-06-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-a-gun-mp017.json b/data/game/ti/tiger-tank-59-a-gun-mp017.json new file mode 100644 index 000000000000..1147a84d336a --- /dev/null +++ b/data/game/ti/tiger-tank-59-a-gun-mp017.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-a-gun-mp017", + "name": "Tiger Tank 59 Ⅰ A-Gun MP017", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183059" + ], + "release_date": "2021-06-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-a-gun-mp018.json b/data/game/ti/tiger-tank-59-a-gun-mp018.json new file mode 100644 index 000000000000..a6b0dfb70097 --- /dev/null +++ b/data/game/ti/tiger-tank-59-a-gun-mp018.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-a-gun-mp018", + "name": "Tiger Tank 59 Ⅰ A-Gun MP018", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183066" + ], + "release_date": "2021-06-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-a-gun-mp019.json b/data/game/ti/tiger-tank-59-a-gun-mp019.json new file mode 100644 index 000000000000..5ba11b5f1356 --- /dev/null +++ b/data/game/ti/tiger-tank-59-a-gun-mp019.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-a-gun-mp019", + "name": "Tiger Tank 59 Ⅰ A-Gun MP019", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183068" + ], + "release_date": "2021-06-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-a-gun-mp020.json b/data/game/ti/tiger-tank-59-a-gun-mp020.json new file mode 100644 index 000000000000..8bfb6dd1a305 --- /dev/null +++ b/data/game/ti/tiger-tank-59-a-gun-mp020.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-a-gun-mp020", + "name": "Tiger Tank 59 Ⅰ A-Gun MP020", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183076" + ], + "release_date": "2021-06-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-a-gun-mp021.json b/data/game/ti/tiger-tank-59-a-gun-mp021.json new file mode 100644 index 000000000000..b12fb866b3da --- /dev/null +++ b/data/game/ti/tiger-tank-59-a-gun-mp021.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-a-gun-mp021", + "name": "Tiger Tank 59 Ⅰ A-Gun MP021", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183085" + ], + "release_date": "2021-06-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-a-gun-mp022.json b/data/game/ti/tiger-tank-59-a-gun-mp022.json new file mode 100644 index 000000000000..c39bbc16b105 --- /dev/null +++ b/data/game/ti/tiger-tank-59-a-gun-mp022.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-a-gun-mp022", + "name": "Tiger Tank 59 Ⅰ A-Gun MP022", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183095" + ], + "release_date": "2021-06-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-a-gun-mp023.json b/data/game/ti/tiger-tank-59-a-gun-mp023.json new file mode 100644 index 000000000000..0e55e3e233f9 --- /dev/null +++ b/data/game/ti/tiger-tank-59-a-gun-mp023.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-a-gun-mp023", + "name": "Tiger Tank 59 Ⅰ A-Gun MP023", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183103" + ], + "release_date": "2021-06-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-a-gun-mp024.json b/data/game/ti/tiger-tank-59-a-gun-mp024.json new file mode 100644 index 000000000000..b67a9465ea92 --- /dev/null +++ b/data/game/ti/tiger-tank-59-a-gun-mp024.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-a-gun-mp024", + "name": "Tiger Tank 59 Ⅰ A-Gun MP024", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183104" + ], + "release_date": "2021-06-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-a-gun-mp025.json b/data/game/ti/tiger-tank-59-a-gun-mp025.json new file mode 100644 index 000000000000..ff026021d7d8 --- /dev/null +++ b/data/game/ti/tiger-tank-59-a-gun-mp025.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-a-gun-mp025", + "name": "Tiger Tank 59 Ⅰ A-Gun MP025", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183113" + ], + "release_date": "2021-06-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-a-gun-mp026.json b/data/game/ti/tiger-tank-59-a-gun-mp026.json new file mode 100644 index 000000000000..ce902f80373f --- /dev/null +++ b/data/game/ti/tiger-tank-59-a-gun-mp026.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-a-gun-mp026", + "name": "Tiger Tank 59 Ⅰ A-Gun MP026", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183123" + ], + "release_date": "2021-06-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-a-gun-mp027.json b/data/game/ti/tiger-tank-59-a-gun-mp027.json new file mode 100644 index 000000000000..2c81370d298f --- /dev/null +++ b/data/game/ti/tiger-tank-59-a-gun-mp027.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-a-gun-mp027", + "name": "Tiger Tank 59 Ⅰ A-Gun MP027", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183124" + ], + "release_date": "2021-06-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-a-gun-mp028.json b/data/game/ti/tiger-tank-59-a-gun-mp028.json new file mode 100644 index 000000000000..27d8d7c2f833 --- /dev/null +++ b/data/game/ti/tiger-tank-59-a-gun-mp028.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-a-gun-mp028", + "name": "Tiger Tank 59 Ⅰ A-Gun MP028", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183125" + ], + "release_date": "2021-06-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-a-gun-mp029.json b/data/game/ti/tiger-tank-59-a-gun-mp029.json new file mode 100644 index 000000000000..a28d0a07f306 --- /dev/null +++ b/data/game/ti/tiger-tank-59-a-gun-mp029.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-a-gun-mp029", + "name": "Tiger Tank 59 Ⅰ A-Gun MP029", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183126" + ], + "release_date": "2021-06-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-a-gun-mp030.json b/data/game/ti/tiger-tank-59-a-gun-mp030.json new file mode 100644 index 000000000000..ee0e42648200 --- /dev/null +++ b/data/game/ti/tiger-tank-59-a-gun-mp030.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-a-gun-mp030", + "name": "Tiger Tank 59 Ⅰ A-Gun MP030", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183131" + ], + "release_date": "2021-06-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-a-gun-mp031.json b/data/game/ti/tiger-tank-59-a-gun-mp031.json new file mode 100644 index 000000000000..07252ea02af9 --- /dev/null +++ b/data/game/ti/tiger-tank-59-a-gun-mp031.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-a-gun-mp031", + "name": "Tiger Tank 59 Ⅰ A-Gun MP031", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183140" + ], + "release_date": "2021-06-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-a-gun-mp032.json b/data/game/ti/tiger-tank-59-a-gun-mp032.json new file mode 100644 index 000000000000..69bcedf1d9a4 --- /dev/null +++ b/data/game/ti/tiger-tank-59-a-gun-mp032.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-a-gun-mp032", + "name": "Tiger Tank 59 Ⅰ A-Gun MP032", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183144" + ], + "release_date": "2021-06-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-a-gun-mp033.json b/data/game/ti/tiger-tank-59-a-gun-mp033.json new file mode 100644 index 000000000000..d94f2b26fc3d --- /dev/null +++ b/data/game/ti/tiger-tank-59-a-gun-mp033.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-a-gun-mp033", + "name": "Tiger Tank 59 Ⅰ A-Gun MP033", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183146" + ], + "release_date": "2021-06-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-a-gun-mp034.json b/data/game/ti/tiger-tank-59-a-gun-mp034.json new file mode 100644 index 000000000000..8abf834b76a1 --- /dev/null +++ b/data/game/ti/tiger-tank-59-a-gun-mp034.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-a-gun-mp034", + "name": "Tiger Tank 59 Ⅰ A-Gun MP034", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183150" + ], + "release_date": "2021-06-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-a-gun-mp035.json b/data/game/ti/tiger-tank-59-a-gun-mp035.json new file mode 100644 index 000000000000..9591744725bd --- /dev/null +++ b/data/game/ti/tiger-tank-59-a-gun-mp035.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-a-gun-mp035", + "name": "Tiger Tank 59 Ⅰ A-Gun MP035", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183151" + ], + "release_date": "2021-06-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-a-gun-mp036.json b/data/game/ti/tiger-tank-59-a-gun-mp036.json new file mode 100644 index 000000000000..980778c089fc --- /dev/null +++ b/data/game/ti/tiger-tank-59-a-gun-mp036.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-a-gun-mp036", + "name": "Tiger Tank 59 Ⅰ A-Gun MP036", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183152" + ], + "release_date": "2021-06-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-a-gun-mp037.json b/data/game/ti/tiger-tank-59-a-gun-mp037.json new file mode 100644 index 000000000000..afb3b0e26e06 --- /dev/null +++ b/data/game/ti/tiger-tank-59-a-gun-mp037.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-a-gun-mp037", + "name": "Tiger Tank 59 Ⅰ A-Gun MP037", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183154" + ], + "release_date": "2021-06-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-a-gun-mp038.json b/data/game/ti/tiger-tank-59-a-gun-mp038.json new file mode 100644 index 000000000000..2c638e8df5f9 --- /dev/null +++ b/data/game/ti/tiger-tank-59-a-gun-mp038.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-a-gun-mp038", + "name": "Tiger Tank 59 Ⅰ A-Gun MP038", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183155" + ], + "release_date": "2021-06-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-a-gun-mp039.json b/data/game/ti/tiger-tank-59-a-gun-mp039.json new file mode 100644 index 000000000000..bcd2cd75e502 --- /dev/null +++ b/data/game/ti/tiger-tank-59-a-gun-mp039.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-a-gun-mp039", + "name": "Tiger Tank 59 Ⅰ A-Gun MP039", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183161" + ], + "release_date": "2021-06-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-a-gun-mp040.json b/data/game/ti/tiger-tank-59-a-gun-mp040.json new file mode 100644 index 000000000000..b3e5dbf0bda7 --- /dev/null +++ b/data/game/ti/tiger-tank-59-a-gun-mp040.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-a-gun-mp040", + "name": "Tiger Tank 59 Ⅰ A-Gun MP040", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183163" + ], + "release_date": "2021-06-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-a-gun-mp041.json b/data/game/ti/tiger-tank-59-a-gun-mp041.json new file mode 100644 index 000000000000..25213a5aa11d --- /dev/null +++ b/data/game/ti/tiger-tank-59-a-gun-mp041.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-a-gun-mp041", + "name": "Tiger Tank 59 Ⅰ A-Gun MP041", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116207258" + ], + "release_date": "2021-06-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-a-gun-mp042.json b/data/game/ti/tiger-tank-59-a-gun-mp042.json new file mode 100644 index 000000000000..26dd6d7c4fa9 --- /dev/null +++ b/data/game/ti/tiger-tank-59-a-gun-mp042.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-a-gun-mp042", + "name": "Tiger Tank 59 Ⅰ A-Gun MP042", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183173" + ], + "release_date": "2021-06-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-a-gun-mp043.json b/data/game/ti/tiger-tank-59-a-gun-mp043.json new file mode 100644 index 000000000000..a47455a80f0f --- /dev/null +++ b/data/game/ti/tiger-tank-59-a-gun-mp043.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-a-gun-mp043", + "name": "Tiger Tank 59 Ⅰ A-Gun MP043", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183180" + ], + "release_date": "2021-06-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-a-gun-mp044.json b/data/game/ti/tiger-tank-59-a-gun-mp044.json new file mode 100644 index 000000000000..77324b0015fb --- /dev/null +++ b/data/game/ti/tiger-tank-59-a-gun-mp044.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-a-gun-mp044", + "name": "Tiger Tank 59 Ⅰ A-Gun MP044", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183189" + ], + "release_date": "2021-06-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-a-gun-mp045.json b/data/game/ti/tiger-tank-59-a-gun-mp045.json new file mode 100644 index 000000000000..921790f7845a --- /dev/null +++ b/data/game/ti/tiger-tank-59-a-gun-mp045.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-a-gun-mp045", + "name": "Tiger Tank 59 Ⅰ A-Gun MP045", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183195" + ], + "release_date": "2021-06-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-a-gun-mp046.json b/data/game/ti/tiger-tank-59-a-gun-mp046.json new file mode 100644 index 000000000000..b16c9b558162 --- /dev/null +++ b/data/game/ti/tiger-tank-59-a-gun-mp046.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-a-gun-mp046", + "name": "Tiger Tank 59 Ⅰ A-Gun MP046", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183197" + ], + "release_date": "2021-06-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-a-gun-mp047.json b/data/game/ti/tiger-tank-59-a-gun-mp047.json new file mode 100644 index 000000000000..07ea7fcdb1a3 --- /dev/null +++ b/data/game/ti/tiger-tank-59-a-gun-mp047.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-a-gun-mp047", + "name": "Tiger Tank 59 Ⅰ A-Gun MP047", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183200" + ], + "release_date": "2021-06-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-a-gun-mp048.json b/data/game/ti/tiger-tank-59-a-gun-mp048.json new file mode 100644 index 000000000000..17bc5a865bbc --- /dev/null +++ b/data/game/ti/tiger-tank-59-a-gun-mp048.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-a-gun-mp048", + "name": "Tiger Tank 59 Ⅰ A-Gun MP048", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183202" + ], + "release_date": "2021-06-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-a-gun-mp049.json b/data/game/ti/tiger-tank-59-a-gun-mp049.json new file mode 100644 index 000000000000..d8117892ea9c --- /dev/null +++ b/data/game/ti/tiger-tank-59-a-gun-mp049.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-a-gun-mp049", + "name": "Tiger Tank 59 Ⅰ A-Gun MP049", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183204" + ], + "release_date": "2021-06-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-a-gun-mp050.json b/data/game/ti/tiger-tank-59-a-gun-mp050.json new file mode 100644 index 000000000000..24aa79a3cd05 --- /dev/null +++ b/data/game/ti/tiger-tank-59-a-gun-mp050.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-a-gun-mp050", + "name": "Tiger Tank 59 Ⅰ A-Gun MP050", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183206" + ], + "release_date": "2021-06-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-a-gun-mp051.json b/data/game/ti/tiger-tank-59-a-gun-mp051.json new file mode 100644 index 000000000000..aad20aa77e6e --- /dev/null +++ b/data/game/ti/tiger-tank-59-a-gun-mp051.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-a-gun-mp051", + "name": "Tiger Tank 59 Ⅰ A-Gun MP051", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183207" + ], + "release_date": "2021-06-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-a-gun-mp052.json b/data/game/ti/tiger-tank-59-a-gun-mp052.json new file mode 100644 index 000000000000..3e4843302b7f --- /dev/null +++ b/data/game/ti/tiger-tank-59-a-gun-mp052.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-a-gun-mp052", + "name": "Tiger Tank 59 Ⅰ A-Gun MP052", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183208" + ], + "release_date": "2021-06-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-a-gun-mp053.json b/data/game/ti/tiger-tank-59-a-gun-mp053.json new file mode 100644 index 000000000000..d33921bcbffe --- /dev/null +++ b/data/game/ti/tiger-tank-59-a-gun-mp053.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-a-gun-mp053", + "name": "Tiger Tank 59 Ⅰ A-Gun MP053", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183209" + ], + "release_date": "2021-06-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-a-gun-mp054.json b/data/game/ti/tiger-tank-59-a-gun-mp054.json new file mode 100644 index 000000000000..3366a9db6be0 --- /dev/null +++ b/data/game/ti/tiger-tank-59-a-gun-mp054.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-a-gun-mp054", + "name": "Tiger Tank 59 Ⅰ A-Gun MP054", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183210" + ], + "release_date": "2021-06-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-a-gun-mp055.json b/data/game/ti/tiger-tank-59-a-gun-mp055.json new file mode 100644 index 000000000000..72004e045a10 --- /dev/null +++ b/data/game/ti/tiger-tank-59-a-gun-mp055.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-a-gun-mp055", + "name": "Tiger Tank 59 Ⅰ A-Gun MP055", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183211" + ], + "release_date": "2021-06-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-a-gun-mp056.json b/data/game/ti/tiger-tank-59-a-gun-mp056.json new file mode 100644 index 000000000000..ccf75ced2df4 --- /dev/null +++ b/data/game/ti/tiger-tank-59-a-gun-mp056.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-a-gun-mp056", + "name": "Tiger Tank 59 Ⅰ A-Gun MP056", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183214" + ], + "release_date": "2021-06-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-a-gun-mp057.json b/data/game/ti/tiger-tank-59-a-gun-mp057.json new file mode 100644 index 000000000000..76e73d1046fc --- /dev/null +++ b/data/game/ti/tiger-tank-59-a-gun-mp057.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-a-gun-mp057", + "name": "Tiger Tank 59 Ⅰ A-Gun MP057", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183215" + ], + "release_date": "2021-06-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-a-gun-mp058.json b/data/game/ti/tiger-tank-59-a-gun-mp058.json new file mode 100644 index 000000000000..99b0d8a4abe8 --- /dev/null +++ b/data/game/ti/tiger-tank-59-a-gun-mp058.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-a-gun-mp058", + "name": "Tiger Tank 59 Ⅰ A-Gun MP058", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183219" + ], + "release_date": "2021-06-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-a-gun-mp059.json b/data/game/ti/tiger-tank-59-a-gun-mp059.json new file mode 100644 index 000000000000..3f8b2917d630 --- /dev/null +++ b/data/game/ti/tiger-tank-59-a-gun-mp059.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-a-gun-mp059", + "name": "Tiger Tank 59 Ⅰ A-Gun MP059", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183224" + ], + "release_date": "2021-06-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-a-gun-mp060.json b/data/game/ti/tiger-tank-59-a-gun-mp060.json new file mode 100644 index 000000000000..9138042e3421 --- /dev/null +++ b/data/game/ti/tiger-tank-59-a-gun-mp060.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-a-gun-mp060", + "name": "Tiger Tank 59 Ⅰ A-Gun MP060", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183233" + ], + "release_date": "2021-06-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-a-gun-mp061.json b/data/game/ti/tiger-tank-59-a-gun-mp061.json new file mode 100644 index 000000000000..849aa315eff6 --- /dev/null +++ b/data/game/ti/tiger-tank-59-a-gun-mp061.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-a-gun-mp061", + "name": "Tiger Tank 59 Ⅰ A-Gun MP061", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183245" + ], + "release_date": "2021-06-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-a-gun-mp062.json b/data/game/ti/tiger-tank-59-a-gun-mp062.json new file mode 100644 index 000000000000..752d5b8ecdb6 --- /dev/null +++ b/data/game/ti/tiger-tank-59-a-gun-mp062.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-a-gun-mp062", + "name": "Tiger Tank 59 Ⅰ A-Gun MP062", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183256" + ], + "release_date": "2021-06-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-a-gun-mp063.json b/data/game/ti/tiger-tank-59-a-gun-mp063.json new file mode 100644 index 000000000000..c43a84ec8ae1 --- /dev/null +++ b/data/game/ti/tiger-tank-59-a-gun-mp063.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-a-gun-mp063", + "name": "Tiger Tank 59 Ⅰ A-Gun MP063", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183266" + ], + "release_date": "2021-06-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-a-gun-mp064.json b/data/game/ti/tiger-tank-59-a-gun-mp064.json new file mode 100644 index 000000000000..c90359d626c6 --- /dev/null +++ b/data/game/ti/tiger-tank-59-a-gun-mp064.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-a-gun-mp064", + "name": "Tiger Tank 59 Ⅰ A-Gun MP064", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183267" + ], + "release_date": "2021-06-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-a-gun-mp065.json b/data/game/ti/tiger-tank-59-a-gun-mp065.json new file mode 100644 index 000000000000..5b4291798c68 --- /dev/null +++ b/data/game/ti/tiger-tank-59-a-gun-mp065.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-a-gun-mp065", + "name": "Tiger Tank 59 Ⅰ A-Gun MP065", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183273" + ], + "release_date": "2021-06-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-a-gun-mp066.json b/data/game/ti/tiger-tank-59-a-gun-mp066.json new file mode 100644 index 000000000000..a51ee66f4a55 --- /dev/null +++ b/data/game/ti/tiger-tank-59-a-gun-mp066.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-a-gun-mp066", + "name": "Tiger Tank 59 Ⅰ A-Gun MP066", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183279" + ], + "release_date": "2021-06-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-a-gun-mp067.json b/data/game/ti/tiger-tank-59-a-gun-mp067.json new file mode 100644 index 000000000000..8a47bca3ccf6 --- /dev/null +++ b/data/game/ti/tiger-tank-59-a-gun-mp067.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-a-gun-mp067", + "name": "Tiger Tank 59 Ⅰ A-Gun MP067", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183283" + ], + "release_date": "2021-06-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-a-gun-mp068.json b/data/game/ti/tiger-tank-59-a-gun-mp068.json new file mode 100644 index 000000000000..4f5a940e6621 --- /dev/null +++ b/data/game/ti/tiger-tank-59-a-gun-mp068.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-a-gun-mp068", + "name": "Tiger Tank 59 Ⅰ A-Gun MP068", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183284" + ], + "release_date": "2021-06-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-a-gun-mp069.json b/data/game/ti/tiger-tank-59-a-gun-mp069.json new file mode 100644 index 000000000000..99b6531fb6b9 --- /dev/null +++ b/data/game/ti/tiger-tank-59-a-gun-mp069.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-a-gun-mp069", + "name": "Tiger Tank 59 Ⅰ A-Gun MP069", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183285" + ], + "release_date": "2021-06-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-a-gun-mp070.json b/data/game/ti/tiger-tank-59-a-gun-mp070.json new file mode 100644 index 000000000000..4fe742cdc0d5 --- /dev/null +++ b/data/game/ti/tiger-tank-59-a-gun-mp070.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-a-gun-mp070", + "name": "Tiger Tank 59 Ⅰ A-Gun MP070", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183287" + ], + "release_date": "2021-06-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-a-gun-mp071.json b/data/game/ti/tiger-tank-59-a-gun-mp071.json new file mode 100644 index 000000000000..ab1ea3ce2431 --- /dev/null +++ b/data/game/ti/tiger-tank-59-a-gun-mp071.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-a-gun-mp071", + "name": "Tiger Tank 59 Ⅰ A-Gun MP071", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183289" + ], + "release_date": "2021-06-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-a-gun-mp072.json b/data/game/ti/tiger-tank-59-a-gun-mp072.json new file mode 100644 index 000000000000..23adbcb48217 --- /dev/null +++ b/data/game/ti/tiger-tank-59-a-gun-mp072.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-a-gun-mp072", + "name": "Tiger Tank 59 Ⅰ A-Gun MP072", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183291" + ], + "release_date": "2021-06-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-a-gun-mp073.json b/data/game/ti/tiger-tank-59-a-gun-mp073.json new file mode 100644 index 000000000000..598ca9b66d45 --- /dev/null +++ b/data/game/ti/tiger-tank-59-a-gun-mp073.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-a-gun-mp073", + "name": "Tiger Tank 59 Ⅰ A-Gun MP073", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183293" + ], + "release_date": "2021-06-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-a-gun-mp074.json b/data/game/ti/tiger-tank-59-a-gun-mp074.json new file mode 100644 index 000000000000..76744df7f5ca --- /dev/null +++ b/data/game/ti/tiger-tank-59-a-gun-mp074.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-a-gun-mp074", + "name": "Tiger Tank 59 Ⅰ A-Gun MP074", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183295" + ], + "release_date": "2021-06-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-a-gun-mp075.json b/data/game/ti/tiger-tank-59-a-gun-mp075.json new file mode 100644 index 000000000000..0ee88a8c6203 --- /dev/null +++ b/data/game/ti/tiger-tank-59-a-gun-mp075.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-a-gun-mp075", + "name": "Tiger Tank 59 Ⅰ A-Gun MP075", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183298" + ], + "release_date": "2021-06-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-a-gun-mp076.json b/data/game/ti/tiger-tank-59-a-gun-mp076.json new file mode 100644 index 000000000000..8139f3996d1d --- /dev/null +++ b/data/game/ti/tiger-tank-59-a-gun-mp076.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-a-gun-mp076", + "name": "Tiger Tank 59 Ⅰ A-Gun MP076", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183309" + ], + "release_date": "2021-06-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-a-gun-mp077.json b/data/game/ti/tiger-tank-59-a-gun-mp077.json new file mode 100644 index 000000000000..0876b363039b --- /dev/null +++ b/data/game/ti/tiger-tank-59-a-gun-mp077.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-a-gun-mp077", + "name": "Tiger Tank 59 Ⅰ A-Gun MP077", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183321" + ], + "release_date": "2021-06-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-a-gun-mp078.json b/data/game/ti/tiger-tank-59-a-gun-mp078.json new file mode 100644 index 000000000000..b485af58896d --- /dev/null +++ b/data/game/ti/tiger-tank-59-a-gun-mp078.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-a-gun-mp078", + "name": "Tiger Tank 59 Ⅰ A-Gun MP078", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183331" + ], + "release_date": "2021-06-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-a-gun-mp079.json b/data/game/ti/tiger-tank-59-a-gun-mp079.json new file mode 100644 index 000000000000..f82b699fb8c7 --- /dev/null +++ b/data/game/ti/tiger-tank-59-a-gun-mp079.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-a-gun-mp079", + "name": "Tiger Tank 59 Ⅰ A-Gun MP079", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183336" + ], + "release_date": "2021-06-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-a-gun-mp080.json b/data/game/ti/tiger-tank-59-a-gun-mp080.json new file mode 100644 index 000000000000..15386839759d --- /dev/null +++ b/data/game/ti/tiger-tank-59-a-gun-mp080.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-a-gun-mp080", + "name": "Tiger Tank 59 Ⅰ A-Gun MP080", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183346" + ], + "release_date": "2021-06-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-a-gun-mp081.json b/data/game/ti/tiger-tank-59-a-gun-mp081.json new file mode 100644 index 000000000000..5b974370967d --- /dev/null +++ b/data/game/ti/tiger-tank-59-a-gun-mp081.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-a-gun-mp081", + "name": "Tiger Tank 59 Ⅰ A-Gun MP081", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183353" + ], + "release_date": "2021-06-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-a-gun-mp082.json b/data/game/ti/tiger-tank-59-a-gun-mp082.json new file mode 100644 index 000000000000..1f972fcf20f3 --- /dev/null +++ b/data/game/ti/tiger-tank-59-a-gun-mp082.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-a-gun-mp082", + "name": "Tiger Tank 59 Ⅰ A-Gun MP082", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183360" + ], + "release_date": "2021-06-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-a-gun-mp083.json b/data/game/ti/tiger-tank-59-a-gun-mp083.json new file mode 100644 index 000000000000..737fc54bf805 --- /dev/null +++ b/data/game/ti/tiger-tank-59-a-gun-mp083.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-a-gun-mp083", + "name": "Tiger Tank 59 Ⅰ A-Gun MP083", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183362" + ], + "release_date": "2021-06-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-a-gun-mp084.json b/data/game/ti/tiger-tank-59-a-gun-mp084.json new file mode 100644 index 000000000000..689afe799609 --- /dev/null +++ b/data/game/ti/tiger-tank-59-a-gun-mp084.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-a-gun-mp084", + "name": "Tiger Tank 59 Ⅰ A-Gun MP084", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183364" + ], + "release_date": "2021-06-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-a-gun-mp085.json b/data/game/ti/tiger-tank-59-a-gun-mp085.json new file mode 100644 index 000000000000..ab8c7ee81590 --- /dev/null +++ b/data/game/ti/tiger-tank-59-a-gun-mp085.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-a-gun-mp085", + "name": "Tiger Tank 59 Ⅰ A-Gun MP085", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183367" + ], + "release_date": "2021-06-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-a-gun-mp086.json b/data/game/ti/tiger-tank-59-a-gun-mp086.json new file mode 100644 index 000000000000..afb6732b315d --- /dev/null +++ b/data/game/ti/tiger-tank-59-a-gun-mp086.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-a-gun-mp086", + "name": "Tiger Tank 59 Ⅰ A-Gun MP086", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183375" + ], + "release_date": "2021-06-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-a-gun-mp087.json b/data/game/ti/tiger-tank-59-a-gun-mp087.json new file mode 100644 index 000000000000..879eea354539 --- /dev/null +++ b/data/game/ti/tiger-tank-59-a-gun-mp087.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-a-gun-mp087", + "name": "Tiger Tank 59 Ⅰ A-Gun MP087", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183384" + ], + "release_date": "2021-06-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-a-gun-mp088.json b/data/game/ti/tiger-tank-59-a-gun-mp088.json new file mode 100644 index 000000000000..6cb840db02bf --- /dev/null +++ b/data/game/ti/tiger-tank-59-a-gun-mp088.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-a-gun-mp088", + "name": "Tiger Tank 59 Ⅰ A-Gun MP088", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183393" + ], + "release_date": "2021-06-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-a-gun-mp089.json b/data/game/ti/tiger-tank-59-a-gun-mp089.json new file mode 100644 index 000000000000..a0f6e9f583cb --- /dev/null +++ b/data/game/ti/tiger-tank-59-a-gun-mp089.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-a-gun-mp089", + "name": "Tiger Tank 59 Ⅰ A-Gun MP089", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183399" + ], + "release_date": "2021-06-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-a-gun-mp090.json b/data/game/ti/tiger-tank-59-a-gun-mp090.json new file mode 100644 index 000000000000..576deb3f21a0 --- /dev/null +++ b/data/game/ti/tiger-tank-59-a-gun-mp090.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-a-gun-mp090", + "name": "Tiger Tank 59 Ⅰ A-Gun MP090", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183403" + ], + "release_date": "2021-06-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-a-gun-mp091.json b/data/game/ti/tiger-tank-59-a-gun-mp091.json new file mode 100644 index 000000000000..48ded3cfbaf3 --- /dev/null +++ b/data/game/ti/tiger-tank-59-a-gun-mp091.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-a-gun-mp091", + "name": "Tiger Tank 59 Ⅰ A-Gun MP091", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183410" + ], + "release_date": "2021-06-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-a-gun-mp092.json b/data/game/ti/tiger-tank-59-a-gun-mp092.json new file mode 100644 index 000000000000..a5664edea32f --- /dev/null +++ b/data/game/ti/tiger-tank-59-a-gun-mp092.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-a-gun-mp092", + "name": "Tiger Tank 59 Ⅰ A-Gun MP092", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183412" + ], + "release_date": "2021-06-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-a-gun-mp093.json b/data/game/ti/tiger-tank-59-a-gun-mp093.json new file mode 100644 index 000000000000..9174a72ee55b --- /dev/null +++ b/data/game/ti/tiger-tank-59-a-gun-mp093.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-a-gun-mp093", + "name": "Tiger Tank 59 Ⅰ A-Gun MP093", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183415" + ], + "release_date": "2021-06-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-a-gun-mp094.json b/data/game/ti/tiger-tank-59-a-gun-mp094.json new file mode 100644 index 000000000000..077a51662f40 --- /dev/null +++ b/data/game/ti/tiger-tank-59-a-gun-mp094.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-a-gun-mp094", + "name": "Tiger Tank 59 Ⅰ A-Gun MP094", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183420" + ], + "release_date": "2021-06-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-a-gun-mp095.json b/data/game/ti/tiger-tank-59-a-gun-mp095.json new file mode 100644 index 000000000000..4e56ab83b736 --- /dev/null +++ b/data/game/ti/tiger-tank-59-a-gun-mp095.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-a-gun-mp095", + "name": "Tiger Tank 59 Ⅰ A-Gun MP095", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183424" + ], + "release_date": "2021-06-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-a-gun-mp096.json b/data/game/ti/tiger-tank-59-a-gun-mp096.json new file mode 100644 index 000000000000..8317b37803d8 --- /dev/null +++ b/data/game/ti/tiger-tank-59-a-gun-mp096.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-a-gun-mp096", + "name": "Tiger Tank 59 Ⅰ A-Gun MP096", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183426" + ], + "release_date": "2021-06-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-a-gun-mp097.json b/data/game/ti/tiger-tank-59-a-gun-mp097.json new file mode 100644 index 000000000000..f7a570ad1b75 --- /dev/null +++ b/data/game/ti/tiger-tank-59-a-gun-mp097.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-a-gun-mp097", + "name": "Tiger Tank 59 Ⅰ A-Gun MP097", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183429" + ], + "release_date": "2021-06-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-a-gun-mp098.json b/data/game/ti/tiger-tank-59-a-gun-mp098.json new file mode 100644 index 000000000000..a6762ad5059d --- /dev/null +++ b/data/game/ti/tiger-tank-59-a-gun-mp098.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-a-gun-mp098", + "name": "Tiger Tank 59 Ⅰ A-Gun MP098", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183430" + ], + "release_date": "2021-06-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-a-gun-mp099.json b/data/game/ti/tiger-tank-59-a-gun-mp099.json new file mode 100644 index 000000000000..a1b2f620854a --- /dev/null +++ b/data/game/ti/tiger-tank-59-a-gun-mp099.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-a-gun-mp099", + "name": "Tiger Tank 59 Ⅰ A-Gun MP099", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183433" + ], + "release_date": "2021-06-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-a-gun-mp100.json b/data/game/ti/tiger-tank-59-a-gun-mp100.json new file mode 100644 index 000000000000..2d85eb650bd3 --- /dev/null +++ b/data/game/ti/tiger-tank-59-a-gun-mp100.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-a-gun-mp100", + "name": "Tiger Tank 59 Ⅰ A-Gun MP100", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183434" + ], + "release_date": "2021-06-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-air-strike-mp001.json b/data/game/ti/tiger-tank-59-air-strike-mp001.json new file mode 100644 index 000000000000..ef39d6afc19f --- /dev/null +++ b/data/game/ti/tiger-tank-59-air-strike-mp001.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-air-strike-mp001", + "name": "Tiger Tank 59 Ⅰ Air Strike MP001", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183438" + ], + "release_date": "2021-06-29", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-air-strike-mp002.json b/data/game/ti/tiger-tank-59-air-strike-mp002.json new file mode 100644 index 000000000000..6aeb9db07149 --- /dev/null +++ b/data/game/ti/tiger-tank-59-air-strike-mp002.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-air-strike-mp002", + "name": "Tiger Tank 59 Ⅰ Air Strike MP002", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183439" + ], + "release_date": "2021-06-30", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-air-strike-mp003.json b/data/game/ti/tiger-tank-59-air-strike-mp003.json new file mode 100644 index 000000000000..c5d3dac79226 --- /dev/null +++ b/data/game/ti/tiger-tank-59-air-strike-mp003.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-air-strike-mp003", + "name": "Tiger Tank 59 Ⅰ Air Strike MP003", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183440" + ], + "release_date": "2021-06-29", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-air-strike-mp004.json b/data/game/ti/tiger-tank-59-air-strike-mp004.json new file mode 100644 index 000000000000..b6b1bc4b3b4e --- /dev/null +++ b/data/game/ti/tiger-tank-59-air-strike-mp004.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-air-strike-mp004", + "name": "Tiger Tank 59 Ⅰ Air Strike MP004", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183441" + ], + "release_date": "2021-06-29", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-air-strike-mp005.json b/data/game/ti/tiger-tank-59-air-strike-mp005.json new file mode 100644 index 000000000000..8465966c8e9f --- /dev/null +++ b/data/game/ti/tiger-tank-59-air-strike-mp005.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-air-strike-mp005", + "name": "Tiger Tank 59 Ⅰ Air Strike MP005", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183442" + ], + "release_date": "2021-06-29", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-air-strike-mp006.json b/data/game/ti/tiger-tank-59-air-strike-mp006.json new file mode 100644 index 000000000000..79b9f3eba3e9 --- /dev/null +++ b/data/game/ti/tiger-tank-59-air-strike-mp006.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-air-strike-mp006", + "name": "Tiger Tank 59 Ⅰ Air Strike MP006", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183444" + ], + "release_date": "2021-06-29", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-air-strike-mp007.json b/data/game/ti/tiger-tank-59-air-strike-mp007.json new file mode 100644 index 000000000000..965c2bcf5fa6 --- /dev/null +++ b/data/game/ti/tiger-tank-59-air-strike-mp007.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-air-strike-mp007", + "name": "Tiger Tank 59 Ⅰ Air Strike MP007", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183446" + ], + "release_date": "2021-06-29", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-air-strike-mp008.json b/data/game/ti/tiger-tank-59-air-strike-mp008.json new file mode 100644 index 000000000000..8c0a355b10d9 --- /dev/null +++ b/data/game/ti/tiger-tank-59-air-strike-mp008.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-air-strike-mp008", + "name": "Tiger Tank 59 Ⅰ Air Strike MP008", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183447" + ], + "release_date": "2021-06-29", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-air-strike-mp009.json b/data/game/ti/tiger-tank-59-air-strike-mp009.json new file mode 100644 index 000000000000..7d71bcbc8601 --- /dev/null +++ b/data/game/ti/tiger-tank-59-air-strike-mp009.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-air-strike-mp009", + "name": "Tiger Tank 59 Ⅰ Air Strike MP009", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183450" + ], + "release_date": "2021-06-29", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-air-strike-mp010.json b/data/game/ti/tiger-tank-59-air-strike-mp010.json new file mode 100644 index 000000000000..1d44cbaf3eb4 --- /dev/null +++ b/data/game/ti/tiger-tank-59-air-strike-mp010.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-air-strike-mp010", + "name": "Tiger Tank 59 Ⅰ Air Strike MP010", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183452" + ], + "release_date": "2021-06-29", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-air-strike-mp011.json b/data/game/ti/tiger-tank-59-air-strike-mp011.json new file mode 100644 index 000000000000..f9e92a839dab --- /dev/null +++ b/data/game/ti/tiger-tank-59-air-strike-mp011.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-air-strike-mp011", + "name": "Tiger Tank 59 Ⅰ Air Strike MP011", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183455" + ], + "release_date": "2021-06-29", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-air-strike-mp012.json b/data/game/ti/tiger-tank-59-air-strike-mp012.json new file mode 100644 index 000000000000..0072a6bdadbc --- /dev/null +++ b/data/game/ti/tiger-tank-59-air-strike-mp012.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-air-strike-mp012", + "name": "Tiger Tank 59 Ⅰ Air Strike MP012", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183458" + ], + "release_date": "2021-06-29", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-air-strike-mp013.json b/data/game/ti/tiger-tank-59-air-strike-mp013.json new file mode 100644 index 000000000000..9c69d869acb9 --- /dev/null +++ b/data/game/ti/tiger-tank-59-air-strike-mp013.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-air-strike-mp013", + "name": "Tiger Tank 59 Ⅰ Air Strike MP013", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183460" + ], + "release_date": "2021-06-29", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-air-strike-mp014.json b/data/game/ti/tiger-tank-59-air-strike-mp014.json new file mode 100644 index 000000000000..c923c66b18a0 --- /dev/null +++ b/data/game/ti/tiger-tank-59-air-strike-mp014.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-air-strike-mp014", + "name": "Tiger Tank 59 Ⅰ Air Strike MP014", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183463" + ], + "release_date": "2021-06-29", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-air-strike-mp015.json b/data/game/ti/tiger-tank-59-air-strike-mp015.json new file mode 100644 index 000000000000..4e5026ee8cc1 --- /dev/null +++ b/data/game/ti/tiger-tank-59-air-strike-mp015.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-air-strike-mp015", + "name": "Tiger Tank 59 Ⅰ Air Strike MP015", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183464" + ], + "release_date": "2021-06-29", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-air-strike-mp016.json b/data/game/ti/tiger-tank-59-air-strike-mp016.json new file mode 100644 index 000000000000..e2d18e077aef --- /dev/null +++ b/data/game/ti/tiger-tank-59-air-strike-mp016.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-air-strike-mp016", + "name": "Tiger Tank 59 Ⅰ Air Strike MP016", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183466" + ], + "release_date": "2021-06-29", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-air-strike-mp017.json b/data/game/ti/tiger-tank-59-air-strike-mp017.json new file mode 100644 index 000000000000..be01651a9db8 --- /dev/null +++ b/data/game/ti/tiger-tank-59-air-strike-mp017.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-air-strike-mp017", + "name": "Tiger Tank 59 Ⅰ Air Strike MP017", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183467" + ], + "release_date": "2021-06-29", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-air-strike-mp018.json b/data/game/ti/tiger-tank-59-air-strike-mp018.json new file mode 100644 index 000000000000..1634e7f98f8b --- /dev/null +++ b/data/game/ti/tiger-tank-59-air-strike-mp018.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-air-strike-mp018", + "name": "Tiger Tank 59 Ⅰ Air Strike MP018", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183468" + ], + "release_date": "2021-06-29", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-air-strike-mp019.json b/data/game/ti/tiger-tank-59-air-strike-mp019.json new file mode 100644 index 000000000000..2536908b8e53 --- /dev/null +++ b/data/game/ti/tiger-tank-59-air-strike-mp019.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-air-strike-mp019", + "name": "Tiger Tank 59 Ⅰ Air Strike MP019", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183469" + ], + "release_date": "2021-06-29", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-air-strike-mp020.json b/data/game/ti/tiger-tank-59-air-strike-mp020.json new file mode 100644 index 000000000000..cffa29657bb8 --- /dev/null +++ b/data/game/ti/tiger-tank-59-air-strike-mp020.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-air-strike-mp020", + "name": "Tiger Tank 59 Ⅰ Air Strike MP020", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183470" + ], + "release_date": "2021-06-29", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-air-strike-mp021.json b/data/game/ti/tiger-tank-59-air-strike-mp021.json new file mode 100644 index 000000000000..8e5cdf4ec33c --- /dev/null +++ b/data/game/ti/tiger-tank-59-air-strike-mp021.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-air-strike-mp021", + "name": "Tiger Tank 59 Ⅰ Air Strike MP021", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183472" + ], + "release_date": "2021-06-29", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-air-strike-mp022.json b/data/game/ti/tiger-tank-59-air-strike-mp022.json new file mode 100644 index 000000000000..9da8ca26f346 --- /dev/null +++ b/data/game/ti/tiger-tank-59-air-strike-mp022.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-air-strike-mp022", + "name": "Tiger Tank 59 Ⅰ Air Strike MP022", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183473" + ], + "release_date": "2021-06-29", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-air-strike-mp023.json b/data/game/ti/tiger-tank-59-air-strike-mp023.json new file mode 100644 index 000000000000..7d60d574d2a3 --- /dev/null +++ b/data/game/ti/tiger-tank-59-air-strike-mp023.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-air-strike-mp023", + "name": "Tiger Tank 59 Ⅰ Air Strike MP023", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183476" + ], + "release_date": "2021-06-29", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-air-strike-mp024.json b/data/game/ti/tiger-tank-59-air-strike-mp024.json new file mode 100644 index 000000000000..b64849882d45 --- /dev/null +++ b/data/game/ti/tiger-tank-59-air-strike-mp024.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-air-strike-mp024", + "name": "Tiger Tank 59 Ⅰ Air Strike MP024", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183478" + ], + "release_date": "2021-06-29", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-air-strike-mp025.json b/data/game/ti/tiger-tank-59-air-strike-mp025.json new file mode 100644 index 000000000000..acdebea634fb --- /dev/null +++ b/data/game/ti/tiger-tank-59-air-strike-mp025.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-air-strike-mp025", + "name": "Tiger Tank 59 Ⅰ Air Strike MP025", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183482" + ], + "release_date": "2021-06-29", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-air-strike-mp026.json b/data/game/ti/tiger-tank-59-air-strike-mp026.json new file mode 100644 index 000000000000..ddea237b18b9 --- /dev/null +++ b/data/game/ti/tiger-tank-59-air-strike-mp026.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-air-strike-mp026", + "name": "Tiger Tank 59 Ⅰ Air Strike MP026", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183483" + ], + "release_date": "2021-06-29", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-air-strike-mp027.json b/data/game/ti/tiger-tank-59-air-strike-mp027.json new file mode 100644 index 000000000000..665d53441812 --- /dev/null +++ b/data/game/ti/tiger-tank-59-air-strike-mp027.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-air-strike-mp027", + "name": "Tiger Tank 59 Ⅰ Air Strike MP027", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183486" + ], + "release_date": "2021-06-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-air-strike-mp028.json b/data/game/ti/tiger-tank-59-air-strike-mp028.json new file mode 100644 index 000000000000..ee44e9460a12 --- /dev/null +++ b/data/game/ti/tiger-tank-59-air-strike-mp028.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-air-strike-mp028", + "name": "Tiger Tank 59 Ⅰ Air Strike MP028", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183495" + ], + "release_date": "2021-06-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-air-strike-mp029.json b/data/game/ti/tiger-tank-59-air-strike-mp029.json new file mode 100644 index 000000000000..99424287b831 --- /dev/null +++ b/data/game/ti/tiger-tank-59-air-strike-mp029.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-air-strike-mp029", + "name": "Tiger Tank 59 Ⅰ Air Strike MP029", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183501" + ], + "release_date": "2021-06-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-air-strike-mp030.json b/data/game/ti/tiger-tank-59-air-strike-mp030.json new file mode 100644 index 000000000000..1c6f9fc0cb0e --- /dev/null +++ b/data/game/ti/tiger-tank-59-air-strike-mp030.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-air-strike-mp030", + "name": "Tiger Tank 59 Ⅰ Air Strike MP030", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183513" + ], + "release_date": "2021-06-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-air-strike-mp031.json b/data/game/ti/tiger-tank-59-air-strike-mp031.json new file mode 100644 index 000000000000..2e60578ac2e7 --- /dev/null +++ b/data/game/ti/tiger-tank-59-air-strike-mp031.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-air-strike-mp031", + "name": "Tiger Tank 59 Ⅰ Air Strike MP031", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183521" + ], + "release_date": "2021-06-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-air-strike-mp032.json b/data/game/ti/tiger-tank-59-air-strike-mp032.json new file mode 100644 index 000000000000..22b18ed72509 --- /dev/null +++ b/data/game/ti/tiger-tank-59-air-strike-mp032.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-air-strike-mp032", + "name": "Tiger Tank 59 Ⅰ Air Strike MP032", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183528" + ], + "release_date": "2021-06-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-air-strike-mp033.json b/data/game/ti/tiger-tank-59-air-strike-mp033.json new file mode 100644 index 000000000000..55e6c76611bc --- /dev/null +++ b/data/game/ti/tiger-tank-59-air-strike-mp033.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-air-strike-mp033", + "name": "Tiger Tank 59 Ⅰ Air Strike MP033", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183532" + ], + "release_date": "2021-06-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-air-strike-mp034.json b/data/game/ti/tiger-tank-59-air-strike-mp034.json new file mode 100644 index 000000000000..30ba1e12b24b --- /dev/null +++ b/data/game/ti/tiger-tank-59-air-strike-mp034.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-air-strike-mp034", + "name": "Tiger Tank 59 Ⅰ Air Strike MP034", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183533" + ], + "release_date": "2021-06-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-air-strike-mp035.json b/data/game/ti/tiger-tank-59-air-strike-mp035.json new file mode 100644 index 000000000000..94064419ed9a --- /dev/null +++ b/data/game/ti/tiger-tank-59-air-strike-mp035.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-air-strike-mp035", + "name": "Tiger Tank 59 Ⅰ Air Strike MP035", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183534" + ], + "release_date": "2021-06-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-air-strike-mp036.json b/data/game/ti/tiger-tank-59-air-strike-mp036.json new file mode 100644 index 000000000000..e0dcc90fad96 --- /dev/null +++ b/data/game/ti/tiger-tank-59-air-strike-mp036.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-air-strike-mp036", + "name": "Tiger Tank 59 Ⅰ Air Strike MP036", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183535" + ], + "release_date": "2021-06-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-air-strike-mp037.json b/data/game/ti/tiger-tank-59-air-strike-mp037.json new file mode 100644 index 000000000000..9394b08af16f --- /dev/null +++ b/data/game/ti/tiger-tank-59-air-strike-mp037.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-air-strike-mp037", + "name": "Tiger Tank 59 Ⅰ Air Strike MP037", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183537" + ], + "release_date": "2021-06-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-air-strike-mp038.json b/data/game/ti/tiger-tank-59-air-strike-mp038.json new file mode 100644 index 000000000000..4b5ed6d7b4e1 --- /dev/null +++ b/data/game/ti/tiger-tank-59-air-strike-mp038.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-air-strike-mp038", + "name": "Tiger Tank 59 Ⅰ Air Strike MP038", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183538" + ], + "release_date": "2021-06-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-air-strike-mp039.json b/data/game/ti/tiger-tank-59-air-strike-mp039.json new file mode 100644 index 000000000000..831e239f95f5 --- /dev/null +++ b/data/game/ti/tiger-tank-59-air-strike-mp039.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-air-strike-mp039", + "name": "Tiger Tank 59 Ⅰ Air Strike MP039", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183545" + ], + "release_date": "2021-06-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-air-strike-mp040.json b/data/game/ti/tiger-tank-59-air-strike-mp040.json new file mode 100644 index 000000000000..87af89ecd987 --- /dev/null +++ b/data/game/ti/tiger-tank-59-air-strike-mp040.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-air-strike-mp040", + "name": "Tiger Tank 59 Ⅰ Air Strike MP040", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183546" + ], + "release_date": "2021-06-29", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-air-strike-mp041.json b/data/game/ti/tiger-tank-59-air-strike-mp041.json new file mode 100644 index 000000000000..a3a272fc87d1 --- /dev/null +++ b/data/game/ti/tiger-tank-59-air-strike-mp041.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-air-strike-mp041", + "name": "Tiger Tank 59 Ⅰ Air Strike MP041", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183550" + ], + "release_date": "2021-06-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-air-strike-mp042.json b/data/game/ti/tiger-tank-59-air-strike-mp042.json new file mode 100644 index 000000000000..5401dbc56967 --- /dev/null +++ b/data/game/ti/tiger-tank-59-air-strike-mp042.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-air-strike-mp042", + "name": "Tiger Tank 59 Ⅰ Air Strike MP042", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183554" + ], + "release_date": "2021-06-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-air-strike-mp043.json b/data/game/ti/tiger-tank-59-air-strike-mp043.json new file mode 100644 index 000000000000..2bf8e9aff597 --- /dev/null +++ b/data/game/ti/tiger-tank-59-air-strike-mp043.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-air-strike-mp043", + "name": "Tiger Tank 59 Ⅰ Air Strike MP043", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183562" + ], + "release_date": "2021-06-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-air-strike-mp044.json b/data/game/ti/tiger-tank-59-air-strike-mp044.json new file mode 100644 index 000000000000..bfb49590c90e --- /dev/null +++ b/data/game/ti/tiger-tank-59-air-strike-mp044.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-air-strike-mp044", + "name": "Tiger Tank 59 Ⅰ Air Strike MP044", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183566" + ], + "release_date": "2021-06-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-air-strike-mp045.json b/data/game/ti/tiger-tank-59-air-strike-mp045.json new file mode 100644 index 000000000000..08f8f5c8b24c --- /dev/null +++ b/data/game/ti/tiger-tank-59-air-strike-mp045.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-air-strike-mp045", + "name": "Tiger Tank 59 Ⅰ Air Strike MP045", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183570" + ], + "release_date": "2021-06-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-air-strike-mp046.json b/data/game/ti/tiger-tank-59-air-strike-mp046.json new file mode 100644 index 000000000000..9eeb0a5e0794 --- /dev/null +++ b/data/game/ti/tiger-tank-59-air-strike-mp046.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-air-strike-mp046", + "name": "Tiger Tank 59 Ⅰ Air Strike MP046", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183571" + ], + "release_date": "2021-06-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-air-strike-mp047.json b/data/game/ti/tiger-tank-59-air-strike-mp047.json new file mode 100644 index 000000000000..9b6e608080b2 --- /dev/null +++ b/data/game/ti/tiger-tank-59-air-strike-mp047.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-air-strike-mp047", + "name": "Tiger Tank 59 Ⅰ Air Strike MP047", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183577" + ], + "release_date": "2021-06-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-air-strike-mp048.json b/data/game/ti/tiger-tank-59-air-strike-mp048.json new file mode 100644 index 000000000000..b01db8a3b9f0 --- /dev/null +++ b/data/game/ti/tiger-tank-59-air-strike-mp048.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-air-strike-mp048", + "name": "Tiger Tank 59 Ⅰ Air Strike MP048", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183581" + ], + "release_date": "2021-06-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-air-strike-mp049.json b/data/game/ti/tiger-tank-59-air-strike-mp049.json new file mode 100644 index 000000000000..0700c40acdb0 --- /dev/null +++ b/data/game/ti/tiger-tank-59-air-strike-mp049.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-air-strike-mp049", + "name": "Tiger Tank 59 Ⅰ Air Strike MP049", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183587" + ], + "release_date": "2021-06-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-air-strike-mp050.json b/data/game/ti/tiger-tank-59-air-strike-mp050.json new file mode 100644 index 000000000000..fad38a4b6426 --- /dev/null +++ b/data/game/ti/tiger-tank-59-air-strike-mp050.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-air-strike-mp050", + "name": "Tiger Tank 59 Ⅰ Air Strike MP050", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183597" + ], + "release_date": "2021-06-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-air-strike-mp051.json b/data/game/ti/tiger-tank-59-air-strike-mp051.json new file mode 100644 index 000000000000..e2ce374045f0 --- /dev/null +++ b/data/game/ti/tiger-tank-59-air-strike-mp051.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-air-strike-mp051", + "name": "Tiger Tank 59 Ⅰ Air Strike MP051", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183606" + ], + "release_date": "2021-06-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-air-strike-mp052.json b/data/game/ti/tiger-tank-59-air-strike-mp052.json new file mode 100644 index 000000000000..2c40802e6e62 --- /dev/null +++ b/data/game/ti/tiger-tank-59-air-strike-mp052.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-air-strike-mp052", + "name": "Tiger Tank 59 Ⅰ Air Strike MP052", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183616" + ], + "release_date": "2021-06-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-air-strike-mp053.json b/data/game/ti/tiger-tank-59-air-strike-mp053.json new file mode 100644 index 000000000000..5a7ef4ee011b --- /dev/null +++ b/data/game/ti/tiger-tank-59-air-strike-mp053.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-air-strike-mp053", + "name": "Tiger Tank 59 Ⅰ Air Strike MP053", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183621" + ], + "release_date": "2021-06-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-air-strike-mp054.json b/data/game/ti/tiger-tank-59-air-strike-mp054.json new file mode 100644 index 000000000000..a7c7581d0e40 --- /dev/null +++ b/data/game/ti/tiger-tank-59-air-strike-mp054.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-air-strike-mp054", + "name": "Tiger Tank 59 Ⅰ Air Strike MP054", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183623" + ], + "release_date": "2021-06-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-air-strike-mp055.json b/data/game/ti/tiger-tank-59-air-strike-mp055.json new file mode 100644 index 000000000000..1f0469061f81 --- /dev/null +++ b/data/game/ti/tiger-tank-59-air-strike-mp055.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-air-strike-mp055", + "name": "Tiger Tank 59 Ⅰ Air Strike MP055", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183624" + ], + "release_date": "2021-06-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-air-strike-mp056.json b/data/game/ti/tiger-tank-59-air-strike-mp056.json new file mode 100644 index 000000000000..3534adc7607a --- /dev/null +++ b/data/game/ti/tiger-tank-59-air-strike-mp056.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-air-strike-mp056", + "name": "Tiger Tank 59 Ⅰ Air Strike MP056", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183627" + ], + "release_date": "2021-06-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-air-strike-mp057.json b/data/game/ti/tiger-tank-59-air-strike-mp057.json new file mode 100644 index 000000000000..590f4d592d78 --- /dev/null +++ b/data/game/ti/tiger-tank-59-air-strike-mp057.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-air-strike-mp057", + "name": "Tiger Tank 59 Ⅰ Air Strike MP057", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183637" + ], + "release_date": "2021-06-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-air-strike-mp058.json b/data/game/ti/tiger-tank-59-air-strike-mp058.json new file mode 100644 index 000000000000..b6dc63e59488 --- /dev/null +++ b/data/game/ti/tiger-tank-59-air-strike-mp058.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-air-strike-mp058", + "name": "Tiger Tank 59 Ⅰ Air Strike MP058", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183639" + ], + "release_date": "2021-06-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-air-strike-mp059.json b/data/game/ti/tiger-tank-59-air-strike-mp059.json new file mode 100644 index 000000000000..b1251c47f600 --- /dev/null +++ b/data/game/ti/tiger-tank-59-air-strike-mp059.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-air-strike-mp059", + "name": "Tiger Tank 59 Ⅰ Air Strike MP059", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183642" + ], + "release_date": "2021-06-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-air-strike-mp060.json b/data/game/ti/tiger-tank-59-air-strike-mp060.json new file mode 100644 index 000000000000..9184894357a7 --- /dev/null +++ b/data/game/ti/tiger-tank-59-air-strike-mp060.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-air-strike-mp060", + "name": "Tiger Tank 59 Ⅰ Air Strike MP060", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183645" + ], + "release_date": "2021-06-29", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-air-strike-mp061.json b/data/game/ti/tiger-tank-59-air-strike-mp061.json new file mode 100644 index 000000000000..2aa390a476ee --- /dev/null +++ b/data/game/ti/tiger-tank-59-air-strike-mp061.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-air-strike-mp061", + "name": "Tiger Tank 59 Ⅰ Air Strike MP061", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183646" + ], + "release_date": "2021-06-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-air-strike-mp062.json b/data/game/ti/tiger-tank-59-air-strike-mp062.json new file mode 100644 index 000000000000..1d1fb887327c --- /dev/null +++ b/data/game/ti/tiger-tank-59-air-strike-mp062.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-air-strike-mp062", + "name": "Tiger Tank 59 Ⅰ Air Strike MP062", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183647" + ], + "release_date": "2021-06-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-air-strike-mp063.json b/data/game/ti/tiger-tank-59-air-strike-mp063.json new file mode 100644 index 000000000000..11f0bd10bba0 --- /dev/null +++ b/data/game/ti/tiger-tank-59-air-strike-mp063.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-air-strike-mp063", + "name": "Tiger Tank 59 Ⅰ Air Strike MP063", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183650" + ], + "release_date": "2021-06-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-air-strike-mp064.json b/data/game/ti/tiger-tank-59-air-strike-mp064.json new file mode 100644 index 000000000000..0ccfd544fa49 --- /dev/null +++ b/data/game/ti/tiger-tank-59-air-strike-mp064.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-air-strike-mp064", + "name": "Tiger Tank 59 Ⅰ Air Strike MP064", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183651" + ], + "release_date": "2021-06-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-air-strike-mp065.json b/data/game/ti/tiger-tank-59-air-strike-mp065.json new file mode 100644 index 000000000000..415e8a3fe03a --- /dev/null +++ b/data/game/ti/tiger-tank-59-air-strike-mp065.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-air-strike-mp065", + "name": "Tiger Tank 59 Ⅰ Air Strike MP065", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183653" + ], + "release_date": "2021-06-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-air-strike-mp066.json b/data/game/ti/tiger-tank-59-air-strike-mp066.json new file mode 100644 index 000000000000..877cf7858d90 --- /dev/null +++ b/data/game/ti/tiger-tank-59-air-strike-mp066.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-air-strike-mp066", + "name": "Tiger Tank 59 Ⅰ Air Strike MP066", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183658" + ], + "release_date": "2021-06-29", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-air-strike-mp067.json b/data/game/ti/tiger-tank-59-air-strike-mp067.json new file mode 100644 index 000000000000..02475172e360 --- /dev/null +++ b/data/game/ti/tiger-tank-59-air-strike-mp067.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-air-strike-mp067", + "name": "Tiger Tank 59 Ⅰ Air Strike MP067", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183662" + ], + "release_date": "2021-06-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-air-strike-mp068.json b/data/game/ti/tiger-tank-59-air-strike-mp068.json new file mode 100644 index 000000000000..696ad6ffa2f4 --- /dev/null +++ b/data/game/ti/tiger-tank-59-air-strike-mp068.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-air-strike-mp068", + "name": "Tiger Tank 59 Ⅰ Air Strike MP068", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183665" + ], + "release_date": "2021-06-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-air-strike-mp069.json b/data/game/ti/tiger-tank-59-air-strike-mp069.json new file mode 100644 index 000000000000..a3dbee1a2f95 --- /dev/null +++ b/data/game/ti/tiger-tank-59-air-strike-mp069.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-air-strike-mp069", + "name": "Tiger Tank 59 Ⅰ Air Strike MP069", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183666" + ], + "release_date": "2021-06-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-air-strike-mp070.json b/data/game/ti/tiger-tank-59-air-strike-mp070.json new file mode 100644 index 000000000000..9acf6825b744 --- /dev/null +++ b/data/game/ti/tiger-tank-59-air-strike-mp070.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-air-strike-mp070", + "name": "Tiger Tank 59 Ⅰ Air Strike MP070", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183667" + ], + "release_date": "2021-06-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-air-strike-mp071.json b/data/game/ti/tiger-tank-59-air-strike-mp071.json new file mode 100644 index 000000000000..3eaa1a11817c --- /dev/null +++ b/data/game/ti/tiger-tank-59-air-strike-mp071.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-air-strike-mp071", + "name": "Tiger Tank 59 Ⅰ Air Strike MP071", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183670" + ], + "release_date": "2021-06-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-air-strike-mp072.json b/data/game/ti/tiger-tank-59-air-strike-mp072.json new file mode 100644 index 000000000000..db89ee19d0b8 --- /dev/null +++ b/data/game/ti/tiger-tank-59-air-strike-mp072.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-air-strike-mp072", + "name": "Tiger Tank 59 Ⅰ Air Strike MP072", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183673" + ], + "release_date": "2021-06-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-air-strike-mp073.json b/data/game/ti/tiger-tank-59-air-strike-mp073.json new file mode 100644 index 000000000000..5c06f1da0ada --- /dev/null +++ b/data/game/ti/tiger-tank-59-air-strike-mp073.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-air-strike-mp073", + "name": "Tiger Tank 59 Ⅰ Air Strike MP073", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183675" + ], + "release_date": "2021-06-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-air-strike-mp074.json b/data/game/ti/tiger-tank-59-air-strike-mp074.json new file mode 100644 index 000000000000..00d8dcb8ba21 --- /dev/null +++ b/data/game/ti/tiger-tank-59-air-strike-mp074.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-air-strike-mp074", + "name": "Tiger Tank 59 Ⅰ Air Strike MP074", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183678" + ], + "release_date": "2021-06-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-air-strike-mp075.json b/data/game/ti/tiger-tank-59-air-strike-mp075.json new file mode 100644 index 000000000000..736c87d483a3 --- /dev/null +++ b/data/game/ti/tiger-tank-59-air-strike-mp075.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-air-strike-mp075", + "name": "Tiger Tank 59 Ⅰ Air Strike MP075", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183683" + ], + "release_date": "2021-06-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-air-strike-mp076.json b/data/game/ti/tiger-tank-59-air-strike-mp076.json new file mode 100644 index 000000000000..9673f5c00173 --- /dev/null +++ b/data/game/ti/tiger-tank-59-air-strike-mp076.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-air-strike-mp076", + "name": "Tiger Tank 59 Ⅰ Air Strike MP076", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183688" + ], + "release_date": "2021-06-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-air-strike-mp077.json b/data/game/ti/tiger-tank-59-air-strike-mp077.json new file mode 100644 index 000000000000..93ebe18075fe --- /dev/null +++ b/data/game/ti/tiger-tank-59-air-strike-mp077.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-air-strike-mp077", + "name": "Tiger Tank 59 Ⅰ Air Strike MP077", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183689" + ], + "release_date": "2021-06-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-air-strike-mp078.json b/data/game/ti/tiger-tank-59-air-strike-mp078.json new file mode 100644 index 000000000000..26e7de5154d3 --- /dev/null +++ b/data/game/ti/tiger-tank-59-air-strike-mp078.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-air-strike-mp078", + "name": "Tiger Tank 59 Ⅰ Air Strike MP078", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183693" + ], + "release_date": "2021-06-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-air-strike-mp079.json b/data/game/ti/tiger-tank-59-air-strike-mp079.json new file mode 100644 index 000000000000..0234ee6230dd --- /dev/null +++ b/data/game/ti/tiger-tank-59-air-strike-mp079.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-air-strike-mp079", + "name": "Tiger Tank 59 Ⅰ Air Strike MP079", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183696" + ], + "release_date": "2021-06-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-air-strike-mp080.json b/data/game/ti/tiger-tank-59-air-strike-mp080.json new file mode 100644 index 000000000000..7a15569c0a83 --- /dev/null +++ b/data/game/ti/tiger-tank-59-air-strike-mp080.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-air-strike-mp080", + "name": "Tiger Tank 59 Ⅰ Air Strike MP080", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183698" + ], + "release_date": "2021-06-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-air-strike-mp081.json b/data/game/ti/tiger-tank-59-air-strike-mp081.json new file mode 100644 index 000000000000..f34063c2f80f --- /dev/null +++ b/data/game/ti/tiger-tank-59-air-strike-mp081.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-air-strike-mp081", + "name": "Tiger Tank 59 Ⅰ Air Strike MP081", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183702" + ], + "release_date": "2021-06-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-air-strike-mp082.json b/data/game/ti/tiger-tank-59-air-strike-mp082.json new file mode 100644 index 000000000000..266075e9d626 --- /dev/null +++ b/data/game/ti/tiger-tank-59-air-strike-mp082.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-air-strike-mp082", + "name": "Tiger Tank 59 Ⅰ Air Strike MP082", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183707" + ], + "release_date": "2021-06-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-air-strike-mp083.json b/data/game/ti/tiger-tank-59-air-strike-mp083.json new file mode 100644 index 000000000000..bfc6339a0415 --- /dev/null +++ b/data/game/ti/tiger-tank-59-air-strike-mp083.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-air-strike-mp083", + "name": "Tiger Tank 59 Ⅰ Air Strike MP083", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183711" + ], + "release_date": "2021-06-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-air-strike-mp084.json b/data/game/ti/tiger-tank-59-air-strike-mp084.json new file mode 100644 index 000000000000..9486b0ef1988 --- /dev/null +++ b/data/game/ti/tiger-tank-59-air-strike-mp084.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-air-strike-mp084", + "name": "Tiger Tank 59 Ⅰ Air Strike MP084", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183714" + ], + "release_date": "2021-06-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-air-strike-mp085.json b/data/game/ti/tiger-tank-59-air-strike-mp085.json new file mode 100644 index 000000000000..3fe14e15a098 --- /dev/null +++ b/data/game/ti/tiger-tank-59-air-strike-mp085.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-air-strike-mp085", + "name": "Tiger Tank 59 Ⅰ Air Strike MP085", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183716" + ], + "release_date": "2021-06-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-air-strike-mp086.json b/data/game/ti/tiger-tank-59-air-strike-mp086.json new file mode 100644 index 000000000000..4fcb2054bde3 --- /dev/null +++ b/data/game/ti/tiger-tank-59-air-strike-mp086.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-air-strike-mp086", + "name": "Tiger Tank 59 Ⅰ Air Strike MP086", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183717" + ], + "release_date": "2021-06-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-air-strike-mp087.json b/data/game/ti/tiger-tank-59-air-strike-mp087.json new file mode 100644 index 000000000000..24b0e6ee501f --- /dev/null +++ b/data/game/ti/tiger-tank-59-air-strike-mp087.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-air-strike-mp087", + "name": "Tiger Tank 59 Ⅰ Air Strike MP087", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183718" + ], + "release_date": "2021-06-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-air-strike-mp088.json b/data/game/ti/tiger-tank-59-air-strike-mp088.json new file mode 100644 index 000000000000..1f7a5abd5b11 --- /dev/null +++ b/data/game/ti/tiger-tank-59-air-strike-mp088.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-air-strike-mp088", + "name": "Tiger Tank 59 Ⅰ Air Strike MP088", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183720" + ], + "release_date": "2021-06-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-air-strike-mp089.json b/data/game/ti/tiger-tank-59-air-strike-mp089.json new file mode 100644 index 000000000000..68bf8bc76bcc --- /dev/null +++ b/data/game/ti/tiger-tank-59-air-strike-mp089.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-air-strike-mp089", + "name": "Tiger Tank 59 Ⅰ Air Strike MP089", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183722" + ], + "release_date": "2021-06-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-air-strike-mp090.json b/data/game/ti/tiger-tank-59-air-strike-mp090.json new file mode 100644 index 000000000000..75f6156058bb --- /dev/null +++ b/data/game/ti/tiger-tank-59-air-strike-mp090.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-air-strike-mp090", + "name": "Tiger Tank 59 Ⅰ Air Strike MP090", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183725" + ], + "release_date": "2021-06-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-air-strike-mp091.json b/data/game/ti/tiger-tank-59-air-strike-mp091.json new file mode 100644 index 000000000000..c75af6e3d1fe --- /dev/null +++ b/data/game/ti/tiger-tank-59-air-strike-mp091.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-air-strike-mp091", + "name": "Tiger Tank 59 Ⅰ Air Strike MP091", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183726" + ], + "release_date": "2021-06-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-air-strike-mp092.json b/data/game/ti/tiger-tank-59-air-strike-mp092.json new file mode 100644 index 000000000000..611abc3502ce --- /dev/null +++ b/data/game/ti/tiger-tank-59-air-strike-mp092.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-air-strike-mp092", + "name": "Tiger Tank 59 Ⅰ Air Strike MP092", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183730" + ], + "release_date": "2021-06-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-air-strike-mp093.json b/data/game/ti/tiger-tank-59-air-strike-mp093.json new file mode 100644 index 000000000000..daaf5994632e --- /dev/null +++ b/data/game/ti/tiger-tank-59-air-strike-mp093.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-air-strike-mp093", + "name": "Tiger Tank 59 Ⅰ Air Strike MP093", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183732" + ], + "release_date": "2021-06-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-air-strike-mp094.json b/data/game/ti/tiger-tank-59-air-strike-mp094.json new file mode 100644 index 000000000000..be0256f2c921 --- /dev/null +++ b/data/game/ti/tiger-tank-59-air-strike-mp094.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-air-strike-mp094", + "name": "Tiger Tank 59 Ⅰ Air Strike MP094", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183733" + ], + "release_date": "2021-06-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-air-strike-mp095.json b/data/game/ti/tiger-tank-59-air-strike-mp095.json new file mode 100644 index 000000000000..9a07dfc00381 --- /dev/null +++ b/data/game/ti/tiger-tank-59-air-strike-mp095.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-air-strike-mp095", + "name": "Tiger Tank 59 Ⅰ Air Strike MP095", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183736" + ], + "release_date": "2021-06-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-air-strike-mp096.json b/data/game/ti/tiger-tank-59-air-strike-mp096.json new file mode 100644 index 000000000000..f00ee14804be --- /dev/null +++ b/data/game/ti/tiger-tank-59-air-strike-mp096.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-air-strike-mp096", + "name": "Tiger Tank 59 Ⅰ Air Strike MP096", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183737" + ], + "release_date": "2021-06-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-air-strike-mp097.json b/data/game/ti/tiger-tank-59-air-strike-mp097.json new file mode 100644 index 000000000000..3cdcb32fb7f0 --- /dev/null +++ b/data/game/ti/tiger-tank-59-air-strike-mp097.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-air-strike-mp097", + "name": "Tiger Tank 59 Ⅰ Air Strike MP097", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183739" + ], + "release_date": "2021-06-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-air-strike-mp098.json b/data/game/ti/tiger-tank-59-air-strike-mp098.json new file mode 100644 index 000000000000..7ca2fd64dc94 --- /dev/null +++ b/data/game/ti/tiger-tank-59-air-strike-mp098.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-air-strike-mp098", + "name": "Tiger Tank 59 Ⅰ Air Strike MP098", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183742" + ], + "release_date": "2021-06-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-air-strike-mp099.json b/data/game/ti/tiger-tank-59-air-strike-mp099.json new file mode 100644 index 000000000000..242b2df050fc --- /dev/null +++ b/data/game/ti/tiger-tank-59-air-strike-mp099.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-air-strike-mp099", + "name": "Tiger Tank 59 Ⅰ Air Strike MP099", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183744" + ], + "release_date": "2021-06-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-air-strike-mp100.json b/data/game/ti/tiger-tank-59-air-strike-mp100.json new file mode 100644 index 000000000000..bcb403693217 --- /dev/null +++ b/data/game/ti/tiger-tank-59-air-strike-mp100.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-air-strike-mp100", + "name": "Tiger Tank 59 Ⅰ Air Strike MP100", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183746" + ], + "release_date": "2021-06-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-battleship-mp001.json b/data/game/ti/tiger-tank-59-battleship-mp001.json new file mode 100644 index 000000000000..9007e33b8884 --- /dev/null +++ b/data/game/ti/tiger-tank-59-battleship-mp001.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-battleship-mp001", + "name": "Tiger Tank 59 Ⅰ Battleship MP001", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183747" + ], + "release_date": "2021-06-30", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-battleship-mp002.json b/data/game/ti/tiger-tank-59-battleship-mp002.json new file mode 100644 index 000000000000..19cfb69b2af1 --- /dev/null +++ b/data/game/ti/tiger-tank-59-battleship-mp002.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-battleship-mp002", + "name": "Tiger Tank 59 Ⅰ Battleship MP002", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183751" + ], + "release_date": "2021-06-30", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-battleship-mp003.json b/data/game/ti/tiger-tank-59-battleship-mp003.json new file mode 100644 index 000000000000..ba055754c3bc --- /dev/null +++ b/data/game/ti/tiger-tank-59-battleship-mp003.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-battleship-mp003", + "name": "Tiger Tank 59 Ⅰ Battleship MP003", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183753" + ], + "release_date": "2021-06-30", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-battleship-mp004.json b/data/game/ti/tiger-tank-59-battleship-mp004.json new file mode 100644 index 000000000000..0b9f5340fda3 --- /dev/null +++ b/data/game/ti/tiger-tank-59-battleship-mp004.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-battleship-mp004", + "name": "Tiger Tank 59 Ⅰ Battleship MP004", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183755" + ], + "release_date": "2021-06-30", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-battleship-mp005.json b/data/game/ti/tiger-tank-59-battleship-mp005.json new file mode 100644 index 000000000000..b1516bc1e859 --- /dev/null +++ b/data/game/ti/tiger-tank-59-battleship-mp005.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-battleship-mp005", + "name": "Tiger Tank 59 Ⅰ Battleship MP005", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183760" + ], + "release_date": "2021-06-30", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-battleship-mp006.json b/data/game/ti/tiger-tank-59-battleship-mp006.json new file mode 100644 index 000000000000..361b40d6a43b --- /dev/null +++ b/data/game/ti/tiger-tank-59-battleship-mp006.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-battleship-mp006", + "name": "Tiger Tank 59 Ⅰ Battleship MP006", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183761" + ], + "release_date": "2021-06-30", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-battleship-mp007.json b/data/game/ti/tiger-tank-59-battleship-mp007.json new file mode 100644 index 000000000000..ba7c6b11b854 --- /dev/null +++ b/data/game/ti/tiger-tank-59-battleship-mp007.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-battleship-mp007", + "name": "Tiger Tank 59 Ⅰ Battleship MP007", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183764" + ], + "release_date": "2021-06-30", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-battleship-mp008.json b/data/game/ti/tiger-tank-59-battleship-mp008.json new file mode 100644 index 000000000000..c5b83de8fe90 --- /dev/null +++ b/data/game/ti/tiger-tank-59-battleship-mp008.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-battleship-mp008", + "name": "Tiger Tank 59 Ⅰ Battleship MP008", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183766" + ], + "release_date": "2021-06-30", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-battleship-mp009.json b/data/game/ti/tiger-tank-59-battleship-mp009.json new file mode 100644 index 000000000000..67a0cf3a4c13 --- /dev/null +++ b/data/game/ti/tiger-tank-59-battleship-mp009.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-battleship-mp009", + "name": "Tiger Tank 59 Ⅰ Battleship MP009", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183769" + ], + "release_date": "2021-06-30", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-battleship-mp010.json b/data/game/ti/tiger-tank-59-battleship-mp010.json new file mode 100644 index 000000000000..3a1421ae60ee --- /dev/null +++ b/data/game/ti/tiger-tank-59-battleship-mp010.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-battleship-mp010", + "name": "Tiger Tank 59 Ⅰ Battleship MP010", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183772" + ], + "release_date": "2021-06-30", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-battleship-mp011.json b/data/game/ti/tiger-tank-59-battleship-mp011.json new file mode 100644 index 000000000000..95a1083f08ce --- /dev/null +++ b/data/game/ti/tiger-tank-59-battleship-mp011.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-battleship-mp011", + "name": "Tiger Tank 59 Ⅰ Battleship MP011", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183774" + ], + "release_date": "2021-06-30", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-battleship-mp012.json b/data/game/ti/tiger-tank-59-battleship-mp012.json new file mode 100644 index 000000000000..6aba15538341 --- /dev/null +++ b/data/game/ti/tiger-tank-59-battleship-mp012.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-battleship-mp012", + "name": "Tiger Tank 59 Ⅰ Battleship MP012", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183776" + ], + "release_date": "2021-06-30", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-battleship-mp013.json b/data/game/ti/tiger-tank-59-battleship-mp013.json new file mode 100644 index 000000000000..cf9ba3802375 --- /dev/null +++ b/data/game/ti/tiger-tank-59-battleship-mp013.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-battleship-mp013", + "name": "Tiger Tank 59 Ⅰ Battleship MP013", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183777" + ], + "release_date": "2021-06-30", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-battleship-mp014.json b/data/game/ti/tiger-tank-59-battleship-mp014.json new file mode 100644 index 000000000000..fbda5afe2c93 --- /dev/null +++ b/data/game/ti/tiger-tank-59-battleship-mp014.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-battleship-mp014", + "name": "Tiger Tank 59 Ⅰ Battleship MP014", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183780" + ], + "release_date": "2021-06-30", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-battleship-mp015.json b/data/game/ti/tiger-tank-59-battleship-mp015.json new file mode 100644 index 000000000000..e7f0ab91a415 --- /dev/null +++ b/data/game/ti/tiger-tank-59-battleship-mp015.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-battleship-mp015", + "name": "Tiger Tank 59 Ⅰ Battleship MP015", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183781" + ], + "release_date": "2021-06-30", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-battleship-mp016.json b/data/game/ti/tiger-tank-59-battleship-mp016.json new file mode 100644 index 000000000000..366eb2887752 --- /dev/null +++ b/data/game/ti/tiger-tank-59-battleship-mp016.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-battleship-mp016", + "name": "Tiger Tank 59 Ⅰ Battleship MP016", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183784" + ], + "release_date": "2021-06-30", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-battleship-mp017.json b/data/game/ti/tiger-tank-59-battleship-mp017.json new file mode 100644 index 000000000000..373b8c868c7d --- /dev/null +++ b/data/game/ti/tiger-tank-59-battleship-mp017.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-battleship-mp017", + "name": "Tiger Tank 59 Ⅰ Battleship MP017", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183786" + ], + "release_date": "2021-06-30", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-battleship-mp018.json b/data/game/ti/tiger-tank-59-battleship-mp018.json new file mode 100644 index 000000000000..6e23ce2536a8 --- /dev/null +++ b/data/game/ti/tiger-tank-59-battleship-mp018.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-battleship-mp018", + "name": "Tiger Tank 59 Ⅰ Battleship MP018", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183787" + ], + "release_date": "2021-06-30", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-battleship-mp019.json b/data/game/ti/tiger-tank-59-battleship-mp019.json new file mode 100644 index 000000000000..eaed05bd9476 --- /dev/null +++ b/data/game/ti/tiger-tank-59-battleship-mp019.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-battleship-mp019", + "name": "Tiger Tank 59 Ⅰ Battleship MP019", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183789" + ], + "release_date": "2021-06-30", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-battleship-mp020.json b/data/game/ti/tiger-tank-59-battleship-mp020.json new file mode 100644 index 000000000000..927a8b3453f2 --- /dev/null +++ b/data/game/ti/tiger-tank-59-battleship-mp020.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-battleship-mp020", + "name": "Tiger Tank 59 Ⅰ Battleship MP020", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183791" + ], + "release_date": "2021-06-30", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-battleship-mp021.json b/data/game/ti/tiger-tank-59-battleship-mp021.json new file mode 100644 index 000000000000..ee1e5f577d1e --- /dev/null +++ b/data/game/ti/tiger-tank-59-battleship-mp021.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-battleship-mp021", + "name": "Tiger Tank 59 Ⅰ Battleship MP021", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183792" + ], + "release_date": "2021-06-30", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-battleship-mp022.json b/data/game/ti/tiger-tank-59-battleship-mp022.json new file mode 100644 index 000000000000..6551a8975dbb --- /dev/null +++ b/data/game/ti/tiger-tank-59-battleship-mp022.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-battleship-mp022", + "name": "Tiger Tank 59 Ⅰ Battleship MP022", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183793" + ], + "release_date": "2021-06-30", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-battleship-mp023.json b/data/game/ti/tiger-tank-59-battleship-mp023.json new file mode 100644 index 000000000000..3766d94727c2 --- /dev/null +++ b/data/game/ti/tiger-tank-59-battleship-mp023.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-battleship-mp023", + "name": "Tiger Tank 59 Ⅰ Battleship MP023", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183794" + ], + "release_date": "2021-06-30", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-battleship-mp024.json b/data/game/ti/tiger-tank-59-battleship-mp024.json new file mode 100644 index 000000000000..116d19c8d9e0 --- /dev/null +++ b/data/game/ti/tiger-tank-59-battleship-mp024.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-battleship-mp024", + "name": "Tiger Tank 59 Ⅰ Battleship MP024", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183795" + ], + "release_date": "2021-06-30", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-battleship-mp025.json b/data/game/ti/tiger-tank-59-battleship-mp025.json new file mode 100644 index 000000000000..29c7ec3481c9 --- /dev/null +++ b/data/game/ti/tiger-tank-59-battleship-mp025.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-battleship-mp025", + "name": "Tiger Tank 59 Ⅰ Battleship MP025", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183796" + ], + "release_date": "2021-06-30", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-battleship-mp026.json b/data/game/ti/tiger-tank-59-battleship-mp026.json new file mode 100644 index 000000000000..a3f105428caa --- /dev/null +++ b/data/game/ti/tiger-tank-59-battleship-mp026.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-battleship-mp026", + "name": "Tiger Tank 59 Ⅰ Battleship MP026", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183799" + ], + "release_date": "2021-06-30", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-battleship-mp027.json b/data/game/ti/tiger-tank-59-battleship-mp027.json new file mode 100644 index 000000000000..cf0ab55c17d1 --- /dev/null +++ b/data/game/ti/tiger-tank-59-battleship-mp027.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-battleship-mp027", + "name": "Tiger Tank 59 Ⅰ Battleship MP027", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183802" + ], + "release_date": "2021-06-30", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-battleship-mp028.json b/data/game/ti/tiger-tank-59-battleship-mp028.json new file mode 100644 index 000000000000..b434691063ea --- /dev/null +++ b/data/game/ti/tiger-tank-59-battleship-mp028.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-battleship-mp028", + "name": "Tiger Tank 59 Ⅰ Battleship MP028", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183804" + ], + "release_date": "2021-06-30", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-battleship-mp029.json b/data/game/ti/tiger-tank-59-battleship-mp029.json new file mode 100644 index 000000000000..a9f79b7b158b --- /dev/null +++ b/data/game/ti/tiger-tank-59-battleship-mp029.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-battleship-mp029", + "name": "Tiger Tank 59 Ⅰ Battleship MP029", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183806" + ], + "release_date": "2021-06-30", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-battleship-mp030.json b/data/game/ti/tiger-tank-59-battleship-mp030.json new file mode 100644 index 000000000000..04ffe292e0ff --- /dev/null +++ b/data/game/ti/tiger-tank-59-battleship-mp030.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-battleship-mp030", + "name": "Tiger Tank 59 Ⅰ Battleship MP030", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183807" + ], + "release_date": "2021-06-30", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-battleship-mp031.json b/data/game/ti/tiger-tank-59-battleship-mp031.json new file mode 100644 index 000000000000..88f369937b0c --- /dev/null +++ b/data/game/ti/tiger-tank-59-battleship-mp031.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-battleship-mp031", + "name": "Tiger Tank 59 Ⅰ Battleship MP031", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183809" + ], + "release_date": "2021-06-30", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-battleship-mp032.json b/data/game/ti/tiger-tank-59-battleship-mp032.json new file mode 100644 index 000000000000..dcbe6867819d --- /dev/null +++ b/data/game/ti/tiger-tank-59-battleship-mp032.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-battleship-mp032", + "name": "Tiger Tank 59 Ⅰ Battleship MP032", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183810" + ], + "release_date": "2021-06-30", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-battleship-mp033.json b/data/game/ti/tiger-tank-59-battleship-mp033.json new file mode 100644 index 000000000000..ac25a8206f5e --- /dev/null +++ b/data/game/ti/tiger-tank-59-battleship-mp033.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-battleship-mp033", + "name": "Tiger Tank 59 Ⅰ Battleship MP033", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183811" + ], + "release_date": "2021-06-30", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-battleship-mp034.json b/data/game/ti/tiger-tank-59-battleship-mp034.json new file mode 100644 index 000000000000..4e8cb89df56c --- /dev/null +++ b/data/game/ti/tiger-tank-59-battleship-mp034.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-battleship-mp034", + "name": "Tiger Tank 59 Ⅰ Battleship MP034", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183812" + ], + "release_date": "2021-06-30", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-battleship-mp035.json b/data/game/ti/tiger-tank-59-battleship-mp035.json new file mode 100644 index 000000000000..6a922aa28705 --- /dev/null +++ b/data/game/ti/tiger-tank-59-battleship-mp035.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-battleship-mp035", + "name": "Tiger Tank 59 Ⅰ Battleship MP035", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183814" + ], + "release_date": "2021-06-30", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-battleship-mp036.json b/data/game/ti/tiger-tank-59-battleship-mp036.json new file mode 100644 index 000000000000..48613502e1fd --- /dev/null +++ b/data/game/ti/tiger-tank-59-battleship-mp036.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-battleship-mp036", + "name": "Tiger Tank 59 Ⅰ Battleship MP036", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183815" + ], + "release_date": "2021-06-30", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-battleship-mp037.json b/data/game/ti/tiger-tank-59-battleship-mp037.json new file mode 100644 index 000000000000..fe987ed7e7e9 --- /dev/null +++ b/data/game/ti/tiger-tank-59-battleship-mp037.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-battleship-mp037", + "name": "Tiger Tank 59 Ⅰ Battleship MP037", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183816" + ], + "release_date": "2021-06-30", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-battleship-mp038.json b/data/game/ti/tiger-tank-59-battleship-mp038.json new file mode 100644 index 000000000000..77820c2f879f --- /dev/null +++ b/data/game/ti/tiger-tank-59-battleship-mp038.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-battleship-mp038", + "name": "Tiger Tank 59 Ⅰ Battleship MP038", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183820" + ], + "release_date": "2021-06-30", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-battleship-mp039.json b/data/game/ti/tiger-tank-59-battleship-mp039.json new file mode 100644 index 000000000000..710df4b431fc --- /dev/null +++ b/data/game/ti/tiger-tank-59-battleship-mp039.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-battleship-mp039", + "name": "Tiger Tank 59 Ⅰ Battleship MP039", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183824" + ], + "release_date": "2021-06-30", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-battleship-mp040.json b/data/game/ti/tiger-tank-59-battleship-mp040.json new file mode 100644 index 000000000000..e85a329422fd --- /dev/null +++ b/data/game/ti/tiger-tank-59-battleship-mp040.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-battleship-mp040", + "name": "Tiger Tank 59 Ⅰ Battleship MP040", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183827" + ], + "release_date": "2021-06-30", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-battleship-mp041.json b/data/game/ti/tiger-tank-59-battleship-mp041.json new file mode 100644 index 000000000000..b576a8c47ac3 --- /dev/null +++ b/data/game/ti/tiger-tank-59-battleship-mp041.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-battleship-mp041", + "name": "Tiger Tank 59 Ⅰ Battleship MP041", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183835" + ], + "release_date": "2021-06-30", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-battleship-mp042.json b/data/game/ti/tiger-tank-59-battleship-mp042.json new file mode 100644 index 000000000000..d9e4b8159e18 --- /dev/null +++ b/data/game/ti/tiger-tank-59-battleship-mp042.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-battleship-mp042", + "name": "Tiger Tank 59 Ⅰ Battleship MP042", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183840" + ], + "release_date": "2021-06-30", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-battleship-mp043.json b/data/game/ti/tiger-tank-59-battleship-mp043.json new file mode 100644 index 000000000000..285542ac8cba --- /dev/null +++ b/data/game/ti/tiger-tank-59-battleship-mp043.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-battleship-mp043", + "name": "Tiger Tank 59 Ⅰ Battleship MP043", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183842" + ], + "release_date": "2021-06-30", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-battleship-mp044.json b/data/game/ti/tiger-tank-59-battleship-mp044.json new file mode 100644 index 000000000000..46d3b30221be --- /dev/null +++ b/data/game/ti/tiger-tank-59-battleship-mp044.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-battleship-mp044", + "name": "Tiger Tank 59 Ⅰ Battleship MP044", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183843" + ], + "release_date": "2021-06-30", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-battleship-mp045.json b/data/game/ti/tiger-tank-59-battleship-mp045.json new file mode 100644 index 000000000000..755c1d83eb2a --- /dev/null +++ b/data/game/ti/tiger-tank-59-battleship-mp045.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-battleship-mp045", + "name": "Tiger Tank 59 Ⅰ Battleship MP045", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183844" + ], + "release_date": "2021-06-30", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-battleship-mp046.json b/data/game/ti/tiger-tank-59-battleship-mp046.json new file mode 100644 index 000000000000..434670684d66 --- /dev/null +++ b/data/game/ti/tiger-tank-59-battleship-mp046.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-battleship-mp046", + "name": "Tiger Tank 59 Ⅰ Battleship MP046", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183845" + ], + "release_date": "2021-06-30", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-battleship-mp047.json b/data/game/ti/tiger-tank-59-battleship-mp047.json new file mode 100644 index 000000000000..7d0c0e738eea --- /dev/null +++ b/data/game/ti/tiger-tank-59-battleship-mp047.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-battleship-mp047", + "name": "Tiger Tank 59 Ⅰ Battleship MP047", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183849" + ], + "release_date": "2021-06-30", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-battleship-mp048.json b/data/game/ti/tiger-tank-59-battleship-mp048.json new file mode 100644 index 000000000000..90aa67b392e7 --- /dev/null +++ b/data/game/ti/tiger-tank-59-battleship-mp048.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-battleship-mp048", + "name": "Tiger Tank 59 Ⅰ Battleship MP048", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183852" + ], + "release_date": "2021-06-30", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-battleship-mp049.json b/data/game/ti/tiger-tank-59-battleship-mp049.json new file mode 100644 index 000000000000..7f834e4d4cd1 --- /dev/null +++ b/data/game/ti/tiger-tank-59-battleship-mp049.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-battleship-mp049", + "name": "Tiger Tank 59 Ⅰ Battleship MP049", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183854" + ], + "release_date": "2021-06-30", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-battleship-mp050.json b/data/game/ti/tiger-tank-59-battleship-mp050.json new file mode 100644 index 000000000000..17020e15a8cb --- /dev/null +++ b/data/game/ti/tiger-tank-59-battleship-mp050.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-battleship-mp050", + "name": "Tiger Tank 59 Ⅰ Battleship MP050", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183856" + ], + "release_date": "2021-06-30", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-battleship-mp051.json b/data/game/ti/tiger-tank-59-battleship-mp051.json new file mode 100644 index 000000000000..d3c26d1f0277 --- /dev/null +++ b/data/game/ti/tiger-tank-59-battleship-mp051.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-battleship-mp051", + "name": "Tiger Tank 59 Ⅰ Battleship MP051", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183859" + ], + "release_date": "2021-07-01", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-battleship-mp052.json b/data/game/ti/tiger-tank-59-battleship-mp052.json new file mode 100644 index 000000000000..93fc03a217b6 --- /dev/null +++ b/data/game/ti/tiger-tank-59-battleship-mp052.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-battleship-mp052", + "name": "Tiger Tank 59 Ⅰ Battleship MP052", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183860" + ], + "release_date": "2021-07-01", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-battleship-mp053.json b/data/game/ti/tiger-tank-59-battleship-mp053.json new file mode 100644 index 000000000000..0dfc6d057dba --- /dev/null +++ b/data/game/ti/tiger-tank-59-battleship-mp053.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-battleship-mp053", + "name": "Tiger Tank 59 Ⅰ Battleship MP053", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183866" + ], + "release_date": "2021-07-01", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-battleship-mp054.json b/data/game/ti/tiger-tank-59-battleship-mp054.json new file mode 100644 index 000000000000..44315d426909 --- /dev/null +++ b/data/game/ti/tiger-tank-59-battleship-mp054.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-battleship-mp054", + "name": "Tiger Tank 59 Ⅰ Battleship MP054", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183871" + ], + "release_date": "2021-07-01", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-battleship-mp055.json b/data/game/ti/tiger-tank-59-battleship-mp055.json new file mode 100644 index 000000000000..7417abf1f7de --- /dev/null +++ b/data/game/ti/tiger-tank-59-battleship-mp055.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-battleship-mp055", + "name": "Tiger Tank 59 Ⅰ Battleship MP055", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183873" + ], + "release_date": "2021-07-01", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-battleship-mp056.json b/data/game/ti/tiger-tank-59-battleship-mp056.json new file mode 100644 index 000000000000..bc2b2e229546 --- /dev/null +++ b/data/game/ti/tiger-tank-59-battleship-mp056.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-battleship-mp056", + "name": "Tiger Tank 59 Ⅰ Battleship MP056", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183875" + ], + "release_date": "2021-07-01", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-battleship-mp057.json b/data/game/ti/tiger-tank-59-battleship-mp057.json new file mode 100644 index 000000000000..fa51bdd96608 --- /dev/null +++ b/data/game/ti/tiger-tank-59-battleship-mp057.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-battleship-mp057", + "name": "Tiger Tank 59 Ⅰ Battleship MP057", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183879" + ], + "release_date": "2021-07-01", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-battleship-mp058.json b/data/game/ti/tiger-tank-59-battleship-mp058.json new file mode 100644 index 000000000000..b13dfcbfe311 --- /dev/null +++ b/data/game/ti/tiger-tank-59-battleship-mp058.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-battleship-mp058", + "name": "Tiger Tank 59 Ⅰ Battleship MP058", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183887" + ], + "release_date": "2021-07-01", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-battleship-mp059.json b/data/game/ti/tiger-tank-59-battleship-mp059.json new file mode 100644 index 000000000000..69ed88c3bb69 --- /dev/null +++ b/data/game/ti/tiger-tank-59-battleship-mp059.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-battleship-mp059", + "name": "Tiger Tank 59 Ⅰ Battleship MP059", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183888" + ], + "release_date": "2021-07-01", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-battleship-mp060.json b/data/game/ti/tiger-tank-59-battleship-mp060.json new file mode 100644 index 000000000000..f619cac01b9b --- /dev/null +++ b/data/game/ti/tiger-tank-59-battleship-mp060.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-battleship-mp060", + "name": "Tiger Tank 59 Ⅰ Battleship MP060", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183891" + ], + "release_date": "2021-07-01", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-battleship-mp061.json b/data/game/ti/tiger-tank-59-battleship-mp061.json new file mode 100644 index 000000000000..bf1b0b2b478a --- /dev/null +++ b/data/game/ti/tiger-tank-59-battleship-mp061.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-battleship-mp061", + "name": "Tiger Tank 59 Ⅰ Battleship MP061", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183896" + ], + "release_date": "2021-07-01", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-battleship-mp062.json b/data/game/ti/tiger-tank-59-battleship-mp062.json new file mode 100644 index 000000000000..dde18be175cb --- /dev/null +++ b/data/game/ti/tiger-tank-59-battleship-mp062.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-battleship-mp062", + "name": "Tiger Tank 59 Ⅰ Battleship MP062", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183899" + ], + "release_date": "2021-07-01", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-battleship-mp063.json b/data/game/ti/tiger-tank-59-battleship-mp063.json new file mode 100644 index 000000000000..d60dfca670cc --- /dev/null +++ b/data/game/ti/tiger-tank-59-battleship-mp063.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-battleship-mp063", + "name": "Tiger Tank 59 Ⅰ Battleship MP063", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183900" + ], + "release_date": "2021-07-01", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-battleship-mp064.json b/data/game/ti/tiger-tank-59-battleship-mp064.json new file mode 100644 index 000000000000..259f64f92301 --- /dev/null +++ b/data/game/ti/tiger-tank-59-battleship-mp064.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-battleship-mp064", + "name": "Tiger Tank 59 Ⅰ Battleship MP064", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183903" + ], + "release_date": "2021-07-01", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-battleship-mp065.json b/data/game/ti/tiger-tank-59-battleship-mp065.json new file mode 100644 index 000000000000..ee5896fb765a --- /dev/null +++ b/data/game/ti/tiger-tank-59-battleship-mp065.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-battleship-mp065", + "name": "Tiger Tank 59 Ⅰ Battleship MP065", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183905" + ], + "release_date": "2021-07-01", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-battleship-mp066.json b/data/game/ti/tiger-tank-59-battleship-mp066.json new file mode 100644 index 000000000000..de89e40ac113 --- /dev/null +++ b/data/game/ti/tiger-tank-59-battleship-mp066.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-battleship-mp066", + "name": "Tiger Tank 59 Ⅰ Battleship MP066", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183907" + ], + "release_date": "2021-07-01", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-battleship-mp067.json b/data/game/ti/tiger-tank-59-battleship-mp067.json new file mode 100644 index 000000000000..217e359b4b68 --- /dev/null +++ b/data/game/ti/tiger-tank-59-battleship-mp067.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-battleship-mp067", + "name": "Tiger Tank 59 Ⅰ Battleship MP067", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183909" + ], + "release_date": "2021-07-01", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-battleship-mp068.json b/data/game/ti/tiger-tank-59-battleship-mp068.json new file mode 100644 index 000000000000..b2ea860be9d8 --- /dev/null +++ b/data/game/ti/tiger-tank-59-battleship-mp068.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-battleship-mp068", + "name": "Tiger Tank 59 Ⅰ Battleship MP068", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183910" + ], + "release_date": "2021-07-01", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-battleship-mp069.json b/data/game/ti/tiger-tank-59-battleship-mp069.json new file mode 100644 index 000000000000..8d7e47da55b9 --- /dev/null +++ b/data/game/ti/tiger-tank-59-battleship-mp069.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-battleship-mp069", + "name": "Tiger Tank 59 Ⅰ Battleship MP069", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183912" + ], + "release_date": "2021-07-01", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-battleship-mp070.json b/data/game/ti/tiger-tank-59-battleship-mp070.json new file mode 100644 index 000000000000..20c9c8533741 --- /dev/null +++ b/data/game/ti/tiger-tank-59-battleship-mp070.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-battleship-mp070", + "name": "Tiger Tank 59 Ⅰ Battleship MP070", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183915" + ], + "release_date": "2021-07-01", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-battleship-mp071.json b/data/game/ti/tiger-tank-59-battleship-mp071.json new file mode 100644 index 000000000000..fc298db6c8b8 --- /dev/null +++ b/data/game/ti/tiger-tank-59-battleship-mp071.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-battleship-mp071", + "name": "Tiger Tank 59 Ⅰ Battleship MP071", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183922" + ], + "release_date": "2021-07-01", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-battleship-mp072.json b/data/game/ti/tiger-tank-59-battleship-mp072.json new file mode 100644 index 000000000000..76fdbfc6e8b7 --- /dev/null +++ b/data/game/ti/tiger-tank-59-battleship-mp072.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-battleship-mp072", + "name": "Tiger Tank 59 Ⅰ Battleship MP072", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183931" + ], + "release_date": "2021-07-01", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-battleship-mp073.json b/data/game/ti/tiger-tank-59-battleship-mp073.json new file mode 100644 index 000000000000..8573eccb318c --- /dev/null +++ b/data/game/ti/tiger-tank-59-battleship-mp073.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-battleship-mp073", + "name": "Tiger Tank 59 Ⅰ Battleship MP073", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183937" + ], + "release_date": "2021-07-01", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-battleship-mp074.json b/data/game/ti/tiger-tank-59-battleship-mp074.json new file mode 100644 index 000000000000..a57a4cbd9a58 --- /dev/null +++ b/data/game/ti/tiger-tank-59-battleship-mp074.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-battleship-mp074", + "name": "Tiger Tank 59 Ⅰ Battleship MP074", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183940" + ], + "release_date": "2021-07-01", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-battleship-mp075.json b/data/game/ti/tiger-tank-59-battleship-mp075.json new file mode 100644 index 000000000000..98be944d91b6 --- /dev/null +++ b/data/game/ti/tiger-tank-59-battleship-mp075.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-battleship-mp075", + "name": "Tiger Tank 59 Ⅰ Battleship MP075", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183942" + ], + "release_date": "2021-07-01", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-battleship-mp076.json b/data/game/ti/tiger-tank-59-battleship-mp076.json new file mode 100644 index 000000000000..31fed4a644b4 --- /dev/null +++ b/data/game/ti/tiger-tank-59-battleship-mp076.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-battleship-mp076", + "name": "Tiger Tank 59 Ⅰ Battleship MP076", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183945" + ], + "release_date": "2021-07-01", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-battleship-mp077.json b/data/game/ti/tiger-tank-59-battleship-mp077.json new file mode 100644 index 000000000000..82baef6dde4b --- /dev/null +++ b/data/game/ti/tiger-tank-59-battleship-mp077.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-battleship-mp077", + "name": "Tiger Tank 59 Ⅰ Battleship MP077", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183948" + ], + "release_date": "2021-07-01", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-battleship-mp078.json b/data/game/ti/tiger-tank-59-battleship-mp078.json new file mode 100644 index 000000000000..f0a2d7e96bcb --- /dev/null +++ b/data/game/ti/tiger-tank-59-battleship-mp078.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-battleship-mp078", + "name": "Tiger Tank 59 Ⅰ Battleship MP078", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183951" + ], + "release_date": "2021-07-01", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-battleship-mp079.json b/data/game/ti/tiger-tank-59-battleship-mp079.json new file mode 100644 index 000000000000..bf3ee05668a3 --- /dev/null +++ b/data/game/ti/tiger-tank-59-battleship-mp079.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-battleship-mp079", + "name": "Tiger Tank 59 Ⅰ Battleship MP079", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183953" + ], + "release_date": "2021-07-01", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-battleship-mp080.json b/data/game/ti/tiger-tank-59-battleship-mp080.json new file mode 100644 index 000000000000..801c9c7c8384 --- /dev/null +++ b/data/game/ti/tiger-tank-59-battleship-mp080.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-battleship-mp080", + "name": "Tiger Tank 59 Ⅰ Battleship MP080", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183957" + ], + "release_date": "2021-07-01", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-battleship-mp081.json b/data/game/ti/tiger-tank-59-battleship-mp081.json new file mode 100644 index 000000000000..efb0cc2f90bf --- /dev/null +++ b/data/game/ti/tiger-tank-59-battleship-mp081.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-battleship-mp081", + "name": "Tiger Tank 59 Ⅰ Battleship MP081", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183963" + ], + "release_date": "2021-07-01", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-battleship-mp082.json b/data/game/ti/tiger-tank-59-battleship-mp082.json new file mode 100644 index 000000000000..3df8c8401c27 --- /dev/null +++ b/data/game/ti/tiger-tank-59-battleship-mp082.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-battleship-mp082", + "name": "Tiger Tank 59 Ⅰ Battleship MP082", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183967" + ], + "release_date": "2021-07-01", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-battleship-mp083.json b/data/game/ti/tiger-tank-59-battleship-mp083.json new file mode 100644 index 000000000000..b6e470210732 --- /dev/null +++ b/data/game/ti/tiger-tank-59-battleship-mp083.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-battleship-mp083", + "name": "Tiger Tank 59 Ⅰ Battleship MP083", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183979" + ], + "release_date": "2021-07-01", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-battleship-mp084.json b/data/game/ti/tiger-tank-59-battleship-mp084.json new file mode 100644 index 000000000000..7197888ff3d7 --- /dev/null +++ b/data/game/ti/tiger-tank-59-battleship-mp084.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-battleship-mp084", + "name": "Tiger Tank 59 Ⅰ Battleship MP084", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183984" + ], + "release_date": "2021-07-01", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-battleship-mp085.json b/data/game/ti/tiger-tank-59-battleship-mp085.json new file mode 100644 index 000000000000..2bdc885d4324 --- /dev/null +++ b/data/game/ti/tiger-tank-59-battleship-mp085.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-battleship-mp085", + "name": "Tiger Tank 59 Ⅰ Battleship MP085", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183987" + ], + "release_date": "2021-07-01", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-battleship-mp086.json b/data/game/ti/tiger-tank-59-battleship-mp086.json new file mode 100644 index 000000000000..b89c85d57d56 --- /dev/null +++ b/data/game/ti/tiger-tank-59-battleship-mp086.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-battleship-mp086", + "name": "Tiger Tank 59 Ⅰ Battleship MP086", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183989" + ], + "release_date": "2021-07-01", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-battleship-mp087.json b/data/game/ti/tiger-tank-59-battleship-mp087.json new file mode 100644 index 000000000000..a18108b97ef0 --- /dev/null +++ b/data/game/ti/tiger-tank-59-battleship-mp087.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-battleship-mp087", + "name": "Tiger Tank 59 Ⅰ Battleship MP087", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183991" + ], + "release_date": "2021-07-01", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-battleship-mp088.json b/data/game/ti/tiger-tank-59-battleship-mp088.json new file mode 100644 index 000000000000..cccc4c258221 --- /dev/null +++ b/data/game/ti/tiger-tank-59-battleship-mp088.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-battleship-mp088", + "name": "Tiger Tank 59 Ⅰ Battleship MP088", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183997" + ], + "release_date": "2021-07-01", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-battleship-mp089.json b/data/game/ti/tiger-tank-59-battleship-mp089.json new file mode 100644 index 000000000000..8fbd2a17ecdf --- /dev/null +++ b/data/game/ti/tiger-tank-59-battleship-mp089.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-battleship-mp089", + "name": "Tiger Tank 59 Ⅰ Battleship MP089", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183999" + ], + "release_date": "2021-07-01", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-battleship-mp090.json b/data/game/ti/tiger-tank-59-battleship-mp090.json new file mode 100644 index 000000000000..9c2f056f2d9e --- /dev/null +++ b/data/game/ti/tiger-tank-59-battleship-mp090.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-battleship-mp090", + "name": "Tiger Tank 59 Ⅰ Battleship MP090", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184003" + ], + "release_date": "2021-07-01", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-battleship-mp091.json b/data/game/ti/tiger-tank-59-battleship-mp091.json new file mode 100644 index 000000000000..91b64b406123 --- /dev/null +++ b/data/game/ti/tiger-tank-59-battleship-mp091.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-battleship-mp091", + "name": "Tiger Tank 59 Ⅰ Battleship MP091", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184005" + ], + "release_date": "2021-07-01", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-battleship-mp092.json b/data/game/ti/tiger-tank-59-battleship-mp092.json new file mode 100644 index 000000000000..9c7bc45c83e9 --- /dev/null +++ b/data/game/ti/tiger-tank-59-battleship-mp092.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-battleship-mp092", + "name": "Tiger Tank 59 Ⅰ Battleship MP092", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184006" + ], + "release_date": "2021-07-01", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-battleship-mp093.json b/data/game/ti/tiger-tank-59-battleship-mp093.json new file mode 100644 index 000000000000..2f52832ce0dc --- /dev/null +++ b/data/game/ti/tiger-tank-59-battleship-mp093.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-battleship-mp093", + "name": "Tiger Tank 59 Ⅰ Battleship MP093", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184007" + ], + "release_date": "2021-07-01", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-battleship-mp094.json b/data/game/ti/tiger-tank-59-battleship-mp094.json new file mode 100644 index 000000000000..269c25f36466 --- /dev/null +++ b/data/game/ti/tiger-tank-59-battleship-mp094.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-battleship-mp094", + "name": "Tiger Tank 59 Ⅰ Battleship MP094", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184010" + ], + "release_date": "2021-07-01", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-battleship-mp095.json b/data/game/ti/tiger-tank-59-battleship-mp095.json new file mode 100644 index 000000000000..d104848ef8fc --- /dev/null +++ b/data/game/ti/tiger-tank-59-battleship-mp095.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-battleship-mp095", + "name": "Tiger Tank 59 Ⅰ Battleship MP095", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184012" + ], + "release_date": "2021-07-01", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-battleship-mp096.json b/data/game/ti/tiger-tank-59-battleship-mp096.json new file mode 100644 index 000000000000..49108bb29ab4 --- /dev/null +++ b/data/game/ti/tiger-tank-59-battleship-mp096.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-battleship-mp096", + "name": "Tiger Tank 59 Ⅰ Battleship MP096", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184013" + ], + "release_date": "2021-07-01", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-battleship-mp097.json b/data/game/ti/tiger-tank-59-battleship-mp097.json new file mode 100644 index 000000000000..49cb7377dc01 --- /dev/null +++ b/data/game/ti/tiger-tank-59-battleship-mp097.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-battleship-mp097", + "name": "Tiger Tank 59 Ⅰ Battleship MP097", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184015" + ], + "release_date": "2021-07-01", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-battleship-mp098.json b/data/game/ti/tiger-tank-59-battleship-mp098.json new file mode 100644 index 000000000000..4dfdf3a24c59 --- /dev/null +++ b/data/game/ti/tiger-tank-59-battleship-mp098.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-battleship-mp098", + "name": "Tiger Tank 59 Ⅰ Battleship MP098", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184017" + ], + "release_date": "2021-07-01", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-battleship-mp099.json b/data/game/ti/tiger-tank-59-battleship-mp099.json new file mode 100644 index 000000000000..a95cfbb0928e --- /dev/null +++ b/data/game/ti/tiger-tank-59-battleship-mp099.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-battleship-mp099", + "name": "Tiger Tank 59 Ⅰ Battleship MP099", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184019" + ], + "release_date": "2021-07-01", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-battleship-mp100.json b/data/game/ti/tiger-tank-59-battleship-mp100.json new file mode 100644 index 000000000000..bbbb55ca80ab --- /dev/null +++ b/data/game/ti/tiger-tank-59-battleship-mp100.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-battleship-mp100", + "name": "Tiger Tank 59 Ⅰ Battleship MP100", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184021" + ], + "release_date": "2021-07-01", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-black-hill-fortress-mp001.json b/data/game/ti/tiger-tank-59-black-hill-fortress-mp001.json new file mode 100644 index 000000000000..91e615084065 --- /dev/null +++ b/data/game/ti/tiger-tank-59-black-hill-fortress-mp001.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-black-hill-fortress-mp001", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP001", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184022" + ], + "release_date": "2021-07-05", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-black-hill-fortress-mp002.json b/data/game/ti/tiger-tank-59-black-hill-fortress-mp002.json new file mode 100644 index 000000000000..d343e01f9e1f --- /dev/null +++ b/data/game/ti/tiger-tank-59-black-hill-fortress-mp002.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-black-hill-fortress-mp002", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP002", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184025" + ], + "release_date": "2021-07-05", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-black-hill-fortress-mp003.json b/data/game/ti/tiger-tank-59-black-hill-fortress-mp003.json new file mode 100644 index 000000000000..f1a424be1174 --- /dev/null +++ b/data/game/ti/tiger-tank-59-black-hill-fortress-mp003.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-black-hill-fortress-mp003", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP003", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184027" + ], + "release_date": "2021-07-05", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-black-hill-fortress-mp004.json b/data/game/ti/tiger-tank-59-black-hill-fortress-mp004.json new file mode 100644 index 000000000000..fa28ed73eede --- /dev/null +++ b/data/game/ti/tiger-tank-59-black-hill-fortress-mp004.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-black-hill-fortress-mp004", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP004", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184029" + ], + "release_date": "2021-07-05", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-black-hill-fortress-mp005.json b/data/game/ti/tiger-tank-59-black-hill-fortress-mp005.json new file mode 100644 index 000000000000..869b93277025 --- /dev/null +++ b/data/game/ti/tiger-tank-59-black-hill-fortress-mp005.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-black-hill-fortress-mp005", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP005", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184032" + ], + "release_date": "2021-07-05", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-black-hill-fortress-mp006.json b/data/game/ti/tiger-tank-59-black-hill-fortress-mp006.json new file mode 100644 index 000000000000..bf25d22fe3b6 --- /dev/null +++ b/data/game/ti/tiger-tank-59-black-hill-fortress-mp006.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-black-hill-fortress-mp006", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP006", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184034" + ], + "release_date": "2021-07-05", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-black-hill-fortress-mp007.json b/data/game/ti/tiger-tank-59-black-hill-fortress-mp007.json new file mode 100644 index 000000000000..8499d41fea1a --- /dev/null +++ b/data/game/ti/tiger-tank-59-black-hill-fortress-mp007.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-black-hill-fortress-mp007", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP007", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184039" + ], + "release_date": "2021-07-05", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-black-hill-fortress-mp008.json b/data/game/ti/tiger-tank-59-black-hill-fortress-mp008.json new file mode 100644 index 000000000000..1c3725ef44b0 --- /dev/null +++ b/data/game/ti/tiger-tank-59-black-hill-fortress-mp008.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-black-hill-fortress-mp008", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP008", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184042" + ], + "release_date": "2021-07-05", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-black-hill-fortress-mp009.json b/data/game/ti/tiger-tank-59-black-hill-fortress-mp009.json new file mode 100644 index 000000000000..de9baffc8d6c --- /dev/null +++ b/data/game/ti/tiger-tank-59-black-hill-fortress-mp009.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-black-hill-fortress-mp009", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP009", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184044" + ], + "release_date": "2021-07-05", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-black-hill-fortress-mp010.json b/data/game/ti/tiger-tank-59-black-hill-fortress-mp010.json new file mode 100644 index 000000000000..9697b051d40d --- /dev/null +++ b/data/game/ti/tiger-tank-59-black-hill-fortress-mp010.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-black-hill-fortress-mp010", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP010", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184049" + ], + "release_date": "2021-07-05", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-black-hill-fortress-mp011.json b/data/game/ti/tiger-tank-59-black-hill-fortress-mp011.json new file mode 100644 index 000000000000..8701a8dcdeb4 --- /dev/null +++ b/data/game/ti/tiger-tank-59-black-hill-fortress-mp011.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-black-hill-fortress-mp011", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP011", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184050" + ], + "release_date": "2021-07-05", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-black-hill-fortress-mp012.json b/data/game/ti/tiger-tank-59-black-hill-fortress-mp012.json new file mode 100644 index 000000000000..133e6196637d --- /dev/null +++ b/data/game/ti/tiger-tank-59-black-hill-fortress-mp012.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-black-hill-fortress-mp012", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP012", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184052" + ], + "release_date": "2021-07-05", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-black-hill-fortress-mp013.json b/data/game/ti/tiger-tank-59-black-hill-fortress-mp013.json new file mode 100644 index 000000000000..6ab4fa992514 --- /dev/null +++ b/data/game/ti/tiger-tank-59-black-hill-fortress-mp013.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-black-hill-fortress-mp013", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP013", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184056" + ], + "release_date": "2021-07-05", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-black-hill-fortress-mp014.json b/data/game/ti/tiger-tank-59-black-hill-fortress-mp014.json new file mode 100644 index 000000000000..15f4ea5b5c52 --- /dev/null +++ b/data/game/ti/tiger-tank-59-black-hill-fortress-mp014.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-black-hill-fortress-mp014", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP014", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184057" + ], + "release_date": "2021-07-05", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-black-hill-fortress-mp015.json b/data/game/ti/tiger-tank-59-black-hill-fortress-mp015.json new file mode 100644 index 000000000000..ccd17bc52885 --- /dev/null +++ b/data/game/ti/tiger-tank-59-black-hill-fortress-mp015.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-black-hill-fortress-mp015", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP015", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184059" + ], + "release_date": "2021-07-05", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-black-hill-fortress-mp016.json b/data/game/ti/tiger-tank-59-black-hill-fortress-mp016.json new file mode 100644 index 000000000000..4938a36119e6 --- /dev/null +++ b/data/game/ti/tiger-tank-59-black-hill-fortress-mp016.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-black-hill-fortress-mp016", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP016", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184061" + ], + "release_date": "2021-07-05", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-black-hill-fortress-mp017.json b/data/game/ti/tiger-tank-59-black-hill-fortress-mp017.json new file mode 100644 index 000000000000..32aecd09249b --- /dev/null +++ b/data/game/ti/tiger-tank-59-black-hill-fortress-mp017.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-black-hill-fortress-mp017", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP017", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184065" + ], + "release_date": "2021-07-05", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-black-hill-fortress-mp018.json b/data/game/ti/tiger-tank-59-black-hill-fortress-mp018.json new file mode 100644 index 000000000000..97b0d0084552 --- /dev/null +++ b/data/game/ti/tiger-tank-59-black-hill-fortress-mp018.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-black-hill-fortress-mp018", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP018", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184067" + ], + "release_date": "2021-07-05", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-black-hill-fortress-mp019.json b/data/game/ti/tiger-tank-59-black-hill-fortress-mp019.json new file mode 100644 index 000000000000..1a6d3005fae5 --- /dev/null +++ b/data/game/ti/tiger-tank-59-black-hill-fortress-mp019.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-black-hill-fortress-mp019", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP019", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184071" + ], + "release_date": "2021-07-05", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-black-hill-fortress-mp020.json b/data/game/ti/tiger-tank-59-black-hill-fortress-mp020.json new file mode 100644 index 000000000000..c50e0a666f77 --- /dev/null +++ b/data/game/ti/tiger-tank-59-black-hill-fortress-mp020.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-black-hill-fortress-mp020", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP020", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184073" + ], + "release_date": "2021-07-05", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-black-hill-fortress-mp021.json b/data/game/ti/tiger-tank-59-black-hill-fortress-mp021.json new file mode 100644 index 000000000000..78a1b06c2d41 --- /dev/null +++ b/data/game/ti/tiger-tank-59-black-hill-fortress-mp021.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-black-hill-fortress-mp021", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP021", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184076" + ], + "release_date": "2021-07-05", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-black-hill-fortress-mp022.json b/data/game/ti/tiger-tank-59-black-hill-fortress-mp022.json new file mode 100644 index 000000000000..f7862a5e911d --- /dev/null +++ b/data/game/ti/tiger-tank-59-black-hill-fortress-mp022.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-black-hill-fortress-mp022", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP022", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184078" + ], + "release_date": "2021-07-05", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-black-hill-fortress-mp023.json b/data/game/ti/tiger-tank-59-black-hill-fortress-mp023.json new file mode 100644 index 000000000000..dde82614c12e --- /dev/null +++ b/data/game/ti/tiger-tank-59-black-hill-fortress-mp023.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-black-hill-fortress-mp023", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP023", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184081" + ], + "release_date": "2021-07-05", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-black-hill-fortress-mp024.json b/data/game/ti/tiger-tank-59-black-hill-fortress-mp024.json new file mode 100644 index 000000000000..63d5af4ae387 --- /dev/null +++ b/data/game/ti/tiger-tank-59-black-hill-fortress-mp024.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-black-hill-fortress-mp024", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP024", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184083" + ], + "release_date": "2021-07-05", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-black-hill-fortress-mp025.json b/data/game/ti/tiger-tank-59-black-hill-fortress-mp025.json new file mode 100644 index 000000000000..36014e030034 --- /dev/null +++ b/data/game/ti/tiger-tank-59-black-hill-fortress-mp025.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-black-hill-fortress-mp025", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP025", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184085" + ], + "release_date": "2021-07-05", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-black-hill-fortress-mp026.json b/data/game/ti/tiger-tank-59-black-hill-fortress-mp026.json new file mode 100644 index 000000000000..4af03ea8c260 --- /dev/null +++ b/data/game/ti/tiger-tank-59-black-hill-fortress-mp026.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-black-hill-fortress-mp026", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP026", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184092" + ], + "release_date": "2021-07-05", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-black-hill-fortress-mp027.json b/data/game/ti/tiger-tank-59-black-hill-fortress-mp027.json new file mode 100644 index 000000000000..6c626795703e --- /dev/null +++ b/data/game/ti/tiger-tank-59-black-hill-fortress-mp027.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-black-hill-fortress-mp027", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP027", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184098" + ], + "release_date": "2021-07-05", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-black-hill-fortress-mp028.json b/data/game/ti/tiger-tank-59-black-hill-fortress-mp028.json new file mode 100644 index 000000000000..3c2e438582b2 --- /dev/null +++ b/data/game/ti/tiger-tank-59-black-hill-fortress-mp028.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-black-hill-fortress-mp028", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP028", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184103" + ], + "release_date": "2021-07-05", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-black-hill-fortress-mp029.json b/data/game/ti/tiger-tank-59-black-hill-fortress-mp029.json new file mode 100644 index 000000000000..1cf9bbf09461 --- /dev/null +++ b/data/game/ti/tiger-tank-59-black-hill-fortress-mp029.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-black-hill-fortress-mp029", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP029", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184108" + ], + "release_date": "2021-07-05", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-black-hill-fortress-mp030.json b/data/game/ti/tiger-tank-59-black-hill-fortress-mp030.json new file mode 100644 index 000000000000..99aec105029d --- /dev/null +++ b/data/game/ti/tiger-tank-59-black-hill-fortress-mp030.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-black-hill-fortress-mp030", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP030", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184109" + ], + "release_date": "2021-07-05", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-black-hill-fortress-mp031.json b/data/game/ti/tiger-tank-59-black-hill-fortress-mp031.json new file mode 100644 index 000000000000..a992419e2bfe --- /dev/null +++ b/data/game/ti/tiger-tank-59-black-hill-fortress-mp031.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-black-hill-fortress-mp031", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP031", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184111" + ], + "release_date": "2021-07-05", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-black-hill-fortress-mp032.json b/data/game/ti/tiger-tank-59-black-hill-fortress-mp032.json new file mode 100644 index 000000000000..efab40e33a6d --- /dev/null +++ b/data/game/ti/tiger-tank-59-black-hill-fortress-mp032.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-black-hill-fortress-mp032", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP032", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184112" + ], + "release_date": "2021-07-05", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-black-hill-fortress-mp033.json b/data/game/ti/tiger-tank-59-black-hill-fortress-mp033.json new file mode 100644 index 000000000000..7da37bdc1834 --- /dev/null +++ b/data/game/ti/tiger-tank-59-black-hill-fortress-mp033.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-black-hill-fortress-mp033", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP033", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184115" + ], + "release_date": "2021-07-05", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-black-hill-fortress-mp034.json b/data/game/ti/tiger-tank-59-black-hill-fortress-mp034.json new file mode 100644 index 000000000000..1b1eba8ba362 --- /dev/null +++ b/data/game/ti/tiger-tank-59-black-hill-fortress-mp034.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-black-hill-fortress-mp034", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP034", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184116" + ], + "release_date": "2021-07-05", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-black-hill-fortress-mp035.json b/data/game/ti/tiger-tank-59-black-hill-fortress-mp035.json new file mode 100644 index 000000000000..d749a825e26c --- /dev/null +++ b/data/game/ti/tiger-tank-59-black-hill-fortress-mp035.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-black-hill-fortress-mp035", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP035", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184120" + ], + "release_date": "2021-07-05", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-black-hill-fortress-mp036.json b/data/game/ti/tiger-tank-59-black-hill-fortress-mp036.json new file mode 100644 index 000000000000..ccd21fb0822c --- /dev/null +++ b/data/game/ti/tiger-tank-59-black-hill-fortress-mp036.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-black-hill-fortress-mp036", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP036", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184122" + ], + "release_date": "2021-07-05", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-black-hill-fortress-mp037.json b/data/game/ti/tiger-tank-59-black-hill-fortress-mp037.json new file mode 100644 index 000000000000..c2ca01a5d116 --- /dev/null +++ b/data/game/ti/tiger-tank-59-black-hill-fortress-mp037.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-black-hill-fortress-mp037", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP037", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184124" + ], + "release_date": "2021-07-05", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-black-hill-fortress-mp038.json b/data/game/ti/tiger-tank-59-black-hill-fortress-mp038.json new file mode 100644 index 000000000000..713a9d76ab36 --- /dev/null +++ b/data/game/ti/tiger-tank-59-black-hill-fortress-mp038.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-black-hill-fortress-mp038", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP038", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184133" + ], + "release_date": "2021-07-05", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-black-hill-fortress-mp039.json b/data/game/ti/tiger-tank-59-black-hill-fortress-mp039.json new file mode 100644 index 000000000000..4adcc1417097 --- /dev/null +++ b/data/game/ti/tiger-tank-59-black-hill-fortress-mp039.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-black-hill-fortress-mp039", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP039", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184145" + ], + "release_date": "2021-07-05", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-black-hill-fortress-mp040.json b/data/game/ti/tiger-tank-59-black-hill-fortress-mp040.json new file mode 100644 index 000000000000..8f89a7ed5b7c --- /dev/null +++ b/data/game/ti/tiger-tank-59-black-hill-fortress-mp040.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-black-hill-fortress-mp040", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP040", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184151" + ], + "release_date": "2021-07-05", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-black-hill-fortress-mp041.json b/data/game/ti/tiger-tank-59-black-hill-fortress-mp041.json new file mode 100644 index 000000000000..fbf7042a9a96 --- /dev/null +++ b/data/game/ti/tiger-tank-59-black-hill-fortress-mp041.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-black-hill-fortress-mp041", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP041", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184154" + ], + "release_date": "2021-07-05", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-black-hill-fortress-mp042.json b/data/game/ti/tiger-tank-59-black-hill-fortress-mp042.json new file mode 100644 index 000000000000..fec9239b8df6 --- /dev/null +++ b/data/game/ti/tiger-tank-59-black-hill-fortress-mp042.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-black-hill-fortress-mp042", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP042", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184156" + ], + "release_date": "2021-07-05", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-black-hill-fortress-mp043.json b/data/game/ti/tiger-tank-59-black-hill-fortress-mp043.json new file mode 100644 index 000000000000..100f3bcbf0bb --- /dev/null +++ b/data/game/ti/tiger-tank-59-black-hill-fortress-mp043.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-black-hill-fortress-mp043", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP043", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184158" + ], + "release_date": "2021-07-05", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-black-hill-fortress-mp044.json b/data/game/ti/tiger-tank-59-black-hill-fortress-mp044.json new file mode 100644 index 000000000000..572083902064 --- /dev/null +++ b/data/game/ti/tiger-tank-59-black-hill-fortress-mp044.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-black-hill-fortress-mp044", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP044", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184161" + ], + "release_date": "2021-07-05", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-black-hill-fortress-mp045.json b/data/game/ti/tiger-tank-59-black-hill-fortress-mp045.json new file mode 100644 index 000000000000..675ed5355ef9 --- /dev/null +++ b/data/game/ti/tiger-tank-59-black-hill-fortress-mp045.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-black-hill-fortress-mp045", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP045", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184165" + ], + "release_date": "2021-07-05", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-black-hill-fortress-mp046.json b/data/game/ti/tiger-tank-59-black-hill-fortress-mp046.json new file mode 100644 index 000000000000..35a9bf231135 --- /dev/null +++ b/data/game/ti/tiger-tank-59-black-hill-fortress-mp046.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-black-hill-fortress-mp046", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP046", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184168" + ], + "release_date": "2021-07-05", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-black-hill-fortress-mp047.json b/data/game/ti/tiger-tank-59-black-hill-fortress-mp047.json new file mode 100644 index 000000000000..ce04945b5386 --- /dev/null +++ b/data/game/ti/tiger-tank-59-black-hill-fortress-mp047.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-black-hill-fortress-mp047", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP047", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184171" + ], + "release_date": "2021-07-05", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-black-hill-fortress-mp048.json b/data/game/ti/tiger-tank-59-black-hill-fortress-mp048.json new file mode 100644 index 000000000000..f468451bb7d8 --- /dev/null +++ b/data/game/ti/tiger-tank-59-black-hill-fortress-mp048.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-black-hill-fortress-mp048", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP048", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184176" + ], + "release_date": "2021-07-05", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-black-hill-fortress-mp049.json b/data/game/ti/tiger-tank-59-black-hill-fortress-mp049.json new file mode 100644 index 000000000000..bddd800e1acc --- /dev/null +++ b/data/game/ti/tiger-tank-59-black-hill-fortress-mp049.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-black-hill-fortress-mp049", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP049", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184178" + ], + "release_date": "2021-07-05", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-black-hill-fortress-mp050.json b/data/game/ti/tiger-tank-59-black-hill-fortress-mp050.json new file mode 100644 index 000000000000..ea1b8644ad8d --- /dev/null +++ b/data/game/ti/tiger-tank-59-black-hill-fortress-mp050.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-black-hill-fortress-mp050", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP050", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184182" + ], + "release_date": "2021-07-05", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-black-hill-fortress-mp051.json b/data/game/ti/tiger-tank-59-black-hill-fortress-mp051.json new file mode 100644 index 000000000000..5f0331cd2f46 --- /dev/null +++ b/data/game/ti/tiger-tank-59-black-hill-fortress-mp051.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-black-hill-fortress-mp051", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP051", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184188" + ], + "release_date": "2021-07-05", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-black-hill-fortress-mp052.json b/data/game/ti/tiger-tank-59-black-hill-fortress-mp052.json new file mode 100644 index 000000000000..a5a3454a42e5 --- /dev/null +++ b/data/game/ti/tiger-tank-59-black-hill-fortress-mp052.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-black-hill-fortress-mp052", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP052", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184195" + ], + "release_date": "2021-07-05", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-black-hill-fortress-mp053.json b/data/game/ti/tiger-tank-59-black-hill-fortress-mp053.json new file mode 100644 index 000000000000..88293da86943 --- /dev/null +++ b/data/game/ti/tiger-tank-59-black-hill-fortress-mp053.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-black-hill-fortress-mp053", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP053", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184197" + ], + "release_date": "2021-07-05", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-black-hill-fortress-mp054.json b/data/game/ti/tiger-tank-59-black-hill-fortress-mp054.json new file mode 100644 index 000000000000..ef3d6ced0f18 --- /dev/null +++ b/data/game/ti/tiger-tank-59-black-hill-fortress-mp054.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-black-hill-fortress-mp054", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP054", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184199" + ], + "release_date": "2021-07-05", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-black-hill-fortress-mp055.json b/data/game/ti/tiger-tank-59-black-hill-fortress-mp055.json new file mode 100644 index 000000000000..e67237f79a3e --- /dev/null +++ b/data/game/ti/tiger-tank-59-black-hill-fortress-mp055.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-black-hill-fortress-mp055", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP055", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184202" + ], + "release_date": "2021-07-05", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-black-hill-fortress-mp056.json b/data/game/ti/tiger-tank-59-black-hill-fortress-mp056.json new file mode 100644 index 000000000000..79387c1df585 --- /dev/null +++ b/data/game/ti/tiger-tank-59-black-hill-fortress-mp056.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-black-hill-fortress-mp056", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP056", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184207" + ], + "release_date": "2021-07-05", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-black-hill-fortress-mp057.json b/data/game/ti/tiger-tank-59-black-hill-fortress-mp057.json new file mode 100644 index 000000000000..9c251c53e8aa --- /dev/null +++ b/data/game/ti/tiger-tank-59-black-hill-fortress-mp057.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-black-hill-fortress-mp057", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP057", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184213" + ], + "release_date": "2021-07-05", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-black-hill-fortress-mp058.json b/data/game/ti/tiger-tank-59-black-hill-fortress-mp058.json new file mode 100644 index 000000000000..bc5a633f2b6d --- /dev/null +++ b/data/game/ti/tiger-tank-59-black-hill-fortress-mp058.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-black-hill-fortress-mp058", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP058", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184220" + ], + "release_date": "2021-07-05", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-black-hill-fortress-mp059.json b/data/game/ti/tiger-tank-59-black-hill-fortress-mp059.json new file mode 100644 index 000000000000..83d3d789c291 --- /dev/null +++ b/data/game/ti/tiger-tank-59-black-hill-fortress-mp059.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-black-hill-fortress-mp059", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP059", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184222" + ], + "release_date": "2021-07-05", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-black-hill-fortress-mp060.json b/data/game/ti/tiger-tank-59-black-hill-fortress-mp060.json new file mode 100644 index 000000000000..d5c92e768168 --- /dev/null +++ b/data/game/ti/tiger-tank-59-black-hill-fortress-mp060.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-black-hill-fortress-mp060", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP060", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184225" + ], + "release_date": "2021-07-05", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-black-hill-fortress-mp061.json b/data/game/ti/tiger-tank-59-black-hill-fortress-mp061.json new file mode 100644 index 000000000000..a1a19311d2d8 --- /dev/null +++ b/data/game/ti/tiger-tank-59-black-hill-fortress-mp061.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-black-hill-fortress-mp061", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP061", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184230" + ], + "release_date": "2021-07-05", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-black-hill-fortress-mp062.json b/data/game/ti/tiger-tank-59-black-hill-fortress-mp062.json new file mode 100644 index 000000000000..e136f77773a6 --- /dev/null +++ b/data/game/ti/tiger-tank-59-black-hill-fortress-mp062.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-black-hill-fortress-mp062", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP062", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184237" + ], + "release_date": "2021-07-05", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-black-hill-fortress-mp063.json b/data/game/ti/tiger-tank-59-black-hill-fortress-mp063.json new file mode 100644 index 000000000000..eb4066166b05 --- /dev/null +++ b/data/game/ti/tiger-tank-59-black-hill-fortress-mp063.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-black-hill-fortress-mp063", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP063", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184241" + ], + "release_date": "2021-07-05", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-black-hill-fortress-mp064.json b/data/game/ti/tiger-tank-59-black-hill-fortress-mp064.json new file mode 100644 index 000000000000..8f8864e78ba2 --- /dev/null +++ b/data/game/ti/tiger-tank-59-black-hill-fortress-mp064.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-black-hill-fortress-mp064", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP064", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184247" + ], + "release_date": "2021-07-05", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-black-hill-fortress-mp065.json b/data/game/ti/tiger-tank-59-black-hill-fortress-mp065.json new file mode 100644 index 000000000000..8d2aa6b7b4e0 --- /dev/null +++ b/data/game/ti/tiger-tank-59-black-hill-fortress-mp065.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-black-hill-fortress-mp065", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP065", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184250" + ], + "release_date": "2021-07-05", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-black-hill-fortress-mp066.json b/data/game/ti/tiger-tank-59-black-hill-fortress-mp066.json new file mode 100644 index 000000000000..f2adfe324d88 --- /dev/null +++ b/data/game/ti/tiger-tank-59-black-hill-fortress-mp066.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-black-hill-fortress-mp066", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP066", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184252" + ], + "release_date": "2021-07-05", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-black-hill-fortress-mp067.json b/data/game/ti/tiger-tank-59-black-hill-fortress-mp067.json new file mode 100644 index 000000000000..ec558b8ccc60 --- /dev/null +++ b/data/game/ti/tiger-tank-59-black-hill-fortress-mp067.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-black-hill-fortress-mp067", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP067", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184254" + ], + "release_date": "2021-07-05", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-black-hill-fortress-mp068.json b/data/game/ti/tiger-tank-59-black-hill-fortress-mp068.json new file mode 100644 index 000000000000..7c3a05efbf82 --- /dev/null +++ b/data/game/ti/tiger-tank-59-black-hill-fortress-mp068.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-black-hill-fortress-mp068", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP068", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184258" + ], + "release_date": "2021-07-05", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-black-hill-fortress-mp069.json b/data/game/ti/tiger-tank-59-black-hill-fortress-mp069.json new file mode 100644 index 000000000000..96d88eddbbfb --- /dev/null +++ b/data/game/ti/tiger-tank-59-black-hill-fortress-mp069.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-black-hill-fortress-mp069", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP069", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184260" + ], + "release_date": "2021-07-05", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-black-hill-fortress-mp070.json b/data/game/ti/tiger-tank-59-black-hill-fortress-mp070.json new file mode 100644 index 000000000000..4ae2d0266c85 --- /dev/null +++ b/data/game/ti/tiger-tank-59-black-hill-fortress-mp070.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-black-hill-fortress-mp070", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP070", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184265" + ], + "release_date": "2021-07-05", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-black-hill-fortress-mp071.json b/data/game/ti/tiger-tank-59-black-hill-fortress-mp071.json new file mode 100644 index 000000000000..0567194f81aa --- /dev/null +++ b/data/game/ti/tiger-tank-59-black-hill-fortress-mp071.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-black-hill-fortress-mp071", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP071", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184273" + ], + "release_date": "2021-07-05", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-black-hill-fortress-mp072.json b/data/game/ti/tiger-tank-59-black-hill-fortress-mp072.json new file mode 100644 index 000000000000..3a8493fe175e --- /dev/null +++ b/data/game/ti/tiger-tank-59-black-hill-fortress-mp072.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-black-hill-fortress-mp072", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP072", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184278" + ], + "release_date": "2021-07-05", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-black-hill-fortress-mp073.json b/data/game/ti/tiger-tank-59-black-hill-fortress-mp073.json new file mode 100644 index 000000000000..0d0839dea179 --- /dev/null +++ b/data/game/ti/tiger-tank-59-black-hill-fortress-mp073.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-black-hill-fortress-mp073", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP073", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184281" + ], + "release_date": "2021-07-05", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-black-hill-fortress-mp074.json b/data/game/ti/tiger-tank-59-black-hill-fortress-mp074.json new file mode 100644 index 000000000000..34a2aade1ac9 --- /dev/null +++ b/data/game/ti/tiger-tank-59-black-hill-fortress-mp074.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-black-hill-fortress-mp074", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP074", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184285" + ], + "release_date": "2021-07-05", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-black-hill-fortress-mp075.json b/data/game/ti/tiger-tank-59-black-hill-fortress-mp075.json new file mode 100644 index 000000000000..c1725765b4b4 --- /dev/null +++ b/data/game/ti/tiger-tank-59-black-hill-fortress-mp075.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-black-hill-fortress-mp075", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP075", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184288" + ], + "release_date": "2021-07-05", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-black-hill-fortress-mp076.json b/data/game/ti/tiger-tank-59-black-hill-fortress-mp076.json new file mode 100644 index 000000000000..1b8979fa3e92 --- /dev/null +++ b/data/game/ti/tiger-tank-59-black-hill-fortress-mp076.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-black-hill-fortress-mp076", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP076", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184290" + ], + "release_date": "2021-07-05", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-black-hill-fortress-mp077.json b/data/game/ti/tiger-tank-59-black-hill-fortress-mp077.json new file mode 100644 index 000000000000..6657655e41d9 --- /dev/null +++ b/data/game/ti/tiger-tank-59-black-hill-fortress-mp077.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-black-hill-fortress-mp077", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP077", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184294" + ], + "release_date": "2021-07-05", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-black-hill-fortress-mp078.json b/data/game/ti/tiger-tank-59-black-hill-fortress-mp078.json new file mode 100644 index 000000000000..1c2bd87194c1 --- /dev/null +++ b/data/game/ti/tiger-tank-59-black-hill-fortress-mp078.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-black-hill-fortress-mp078", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP078", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184297" + ], + "release_date": "2021-07-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-black-hill-fortress-mp079.json b/data/game/ti/tiger-tank-59-black-hill-fortress-mp079.json new file mode 100644 index 000000000000..fcaa11ccc241 --- /dev/null +++ b/data/game/ti/tiger-tank-59-black-hill-fortress-mp079.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-black-hill-fortress-mp079", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP079", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184299" + ], + "release_date": "2021-07-05", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-black-hill-fortress-mp080.json b/data/game/ti/tiger-tank-59-black-hill-fortress-mp080.json new file mode 100644 index 000000000000..7e92f84c0701 --- /dev/null +++ b/data/game/ti/tiger-tank-59-black-hill-fortress-mp080.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-black-hill-fortress-mp080", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP080", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184305" + ], + "release_date": "2021-07-05", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-black-hill-fortress-mp081.json b/data/game/ti/tiger-tank-59-black-hill-fortress-mp081.json new file mode 100644 index 000000000000..43e60df742ff --- /dev/null +++ b/data/game/ti/tiger-tank-59-black-hill-fortress-mp081.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-black-hill-fortress-mp081", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP081", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184315" + ], + "release_date": "2021-07-05", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-black-hill-fortress-mp082.json b/data/game/ti/tiger-tank-59-black-hill-fortress-mp082.json new file mode 100644 index 000000000000..156411acaad6 --- /dev/null +++ b/data/game/ti/tiger-tank-59-black-hill-fortress-mp082.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-black-hill-fortress-mp082", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP082", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184320" + ], + "release_date": "2021-07-05", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-black-hill-fortress-mp083.json b/data/game/ti/tiger-tank-59-black-hill-fortress-mp083.json new file mode 100644 index 000000000000..37a369327be0 --- /dev/null +++ b/data/game/ti/tiger-tank-59-black-hill-fortress-mp083.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-black-hill-fortress-mp083", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP083", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184322" + ], + "release_date": "2021-07-05", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-black-hill-fortress-mp084.json b/data/game/ti/tiger-tank-59-black-hill-fortress-mp084.json new file mode 100644 index 000000000000..a1b03e5ccf8f --- /dev/null +++ b/data/game/ti/tiger-tank-59-black-hill-fortress-mp084.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-black-hill-fortress-mp084", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP084", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184327" + ], + "release_date": "2021-07-05", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-black-hill-fortress-mp085.json b/data/game/ti/tiger-tank-59-black-hill-fortress-mp085.json new file mode 100644 index 000000000000..c86cfda6a510 --- /dev/null +++ b/data/game/ti/tiger-tank-59-black-hill-fortress-mp085.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-black-hill-fortress-mp085", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP085", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184335" + ], + "release_date": "2021-07-05", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-black-hill-fortress-mp086.json b/data/game/ti/tiger-tank-59-black-hill-fortress-mp086.json new file mode 100644 index 000000000000..39f7cb795817 --- /dev/null +++ b/data/game/ti/tiger-tank-59-black-hill-fortress-mp086.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-black-hill-fortress-mp086", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP086", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184342" + ], + "release_date": "2021-07-05", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-black-hill-fortress-mp087.json b/data/game/ti/tiger-tank-59-black-hill-fortress-mp087.json new file mode 100644 index 000000000000..f88ba450a1da --- /dev/null +++ b/data/game/ti/tiger-tank-59-black-hill-fortress-mp087.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-black-hill-fortress-mp087", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP087", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184345" + ], + "release_date": "2021-07-05", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-black-hill-fortress-mp088.json b/data/game/ti/tiger-tank-59-black-hill-fortress-mp088.json new file mode 100644 index 000000000000..fdf2e2f313f1 --- /dev/null +++ b/data/game/ti/tiger-tank-59-black-hill-fortress-mp088.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-black-hill-fortress-mp088", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP088", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184347" + ], + "release_date": "2021-07-05", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-black-hill-fortress-mp089.json b/data/game/ti/tiger-tank-59-black-hill-fortress-mp089.json new file mode 100644 index 000000000000..8b03a06af4ad --- /dev/null +++ b/data/game/ti/tiger-tank-59-black-hill-fortress-mp089.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-black-hill-fortress-mp089", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP089", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184351" + ], + "release_date": "2021-07-05", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-black-hill-fortress-mp090.json b/data/game/ti/tiger-tank-59-black-hill-fortress-mp090.json new file mode 100644 index 000000000000..b6721087cf09 --- /dev/null +++ b/data/game/ti/tiger-tank-59-black-hill-fortress-mp090.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-black-hill-fortress-mp090", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP090", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184354" + ], + "release_date": "2021-07-05", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-black-hill-fortress-mp091.json b/data/game/ti/tiger-tank-59-black-hill-fortress-mp091.json new file mode 100644 index 000000000000..a013ea8e0afb --- /dev/null +++ b/data/game/ti/tiger-tank-59-black-hill-fortress-mp091.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-black-hill-fortress-mp091", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP091", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184359" + ], + "release_date": "2021-07-05", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-black-hill-fortress-mp092.json b/data/game/ti/tiger-tank-59-black-hill-fortress-mp092.json new file mode 100644 index 000000000000..c1b5fa045f70 --- /dev/null +++ b/data/game/ti/tiger-tank-59-black-hill-fortress-mp092.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-black-hill-fortress-mp092", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP092", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184360" + ], + "release_date": "2021-07-05", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-black-hill-fortress-mp093.json b/data/game/ti/tiger-tank-59-black-hill-fortress-mp093.json new file mode 100644 index 000000000000..27994be263bb --- /dev/null +++ b/data/game/ti/tiger-tank-59-black-hill-fortress-mp093.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-black-hill-fortress-mp093", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP093", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184361" + ], + "release_date": "2021-07-05", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-black-hill-fortress-mp094.json b/data/game/ti/tiger-tank-59-black-hill-fortress-mp094.json new file mode 100644 index 000000000000..ec5e11f0b1ba --- /dev/null +++ b/data/game/ti/tiger-tank-59-black-hill-fortress-mp094.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-black-hill-fortress-mp094", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP094", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184364" + ], + "release_date": "2021-07-05", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-black-hill-fortress-mp095.json b/data/game/ti/tiger-tank-59-black-hill-fortress-mp095.json new file mode 100644 index 000000000000..8e6b186184ee --- /dev/null +++ b/data/game/ti/tiger-tank-59-black-hill-fortress-mp095.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-black-hill-fortress-mp095", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP095", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184368" + ], + "release_date": "2021-07-05", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-black-hill-fortress-mp096.json b/data/game/ti/tiger-tank-59-black-hill-fortress-mp096.json new file mode 100644 index 000000000000..3109e5108392 --- /dev/null +++ b/data/game/ti/tiger-tank-59-black-hill-fortress-mp096.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-black-hill-fortress-mp096", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP096", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184372" + ], + "release_date": "2021-07-05", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-black-hill-fortress-mp097.json b/data/game/ti/tiger-tank-59-black-hill-fortress-mp097.json new file mode 100644 index 000000000000..1685a612751d --- /dev/null +++ b/data/game/ti/tiger-tank-59-black-hill-fortress-mp097.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-black-hill-fortress-mp097", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP097", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184375" + ], + "release_date": "2021-07-05", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-black-hill-fortress-mp098.json b/data/game/ti/tiger-tank-59-black-hill-fortress-mp098.json new file mode 100644 index 000000000000..740657292fd0 --- /dev/null +++ b/data/game/ti/tiger-tank-59-black-hill-fortress-mp098.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-black-hill-fortress-mp098", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP098", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184379" + ], + "release_date": "2021-07-05", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-black-hill-fortress-mp099.json b/data/game/ti/tiger-tank-59-black-hill-fortress-mp099.json new file mode 100644 index 000000000000..64fe13b7a26c --- /dev/null +++ b/data/game/ti/tiger-tank-59-black-hill-fortress-mp099.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-black-hill-fortress-mp099", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP099", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184381" + ], + "release_date": "2021-07-05", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-black-hill-fortress-mp100.json b/data/game/ti/tiger-tank-59-black-hill-fortress-mp100.json new file mode 100644 index 000000000000..afd211175be7 --- /dev/null +++ b/data/game/ti/tiger-tank-59-black-hill-fortress-mp100.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-black-hill-fortress-mp100", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP100", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184386" + ], + "release_date": "2021-07-05", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-break-the-fog-mp001.json b/data/game/ti/tiger-tank-59-break-the-fog-mp001.json new file mode 100644 index 000000000000..e8adee941a26 --- /dev/null +++ b/data/game/ti/tiger-tank-59-break-the-fog-mp001.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-break-the-fog-mp001", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP001", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184388" + ], + "release_date": "2021-07-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-break-the-fog-mp002.json b/data/game/ti/tiger-tank-59-break-the-fog-mp002.json new file mode 100644 index 000000000000..31d9f26b6f56 --- /dev/null +++ b/data/game/ti/tiger-tank-59-break-the-fog-mp002.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-break-the-fog-mp002", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP002", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184391" + ], + "release_date": "2021-07-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-break-the-fog-mp003.json b/data/game/ti/tiger-tank-59-break-the-fog-mp003.json new file mode 100644 index 000000000000..5b92fb5e395f --- /dev/null +++ b/data/game/ti/tiger-tank-59-break-the-fog-mp003.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-break-the-fog-mp003", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP003", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184395" + ], + "release_date": "2021-07-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-break-the-fog-mp004.json b/data/game/ti/tiger-tank-59-break-the-fog-mp004.json new file mode 100644 index 000000000000..bfd71feffc03 --- /dev/null +++ b/data/game/ti/tiger-tank-59-break-the-fog-mp004.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-break-the-fog-mp004", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP004", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184397" + ], + "release_date": "2021-07-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-break-the-fog-mp005.json b/data/game/ti/tiger-tank-59-break-the-fog-mp005.json new file mode 100644 index 000000000000..3bfdcf9aeb9d --- /dev/null +++ b/data/game/ti/tiger-tank-59-break-the-fog-mp005.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-break-the-fog-mp005", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP005", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184403" + ], + "release_date": "2021-07-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-break-the-fog-mp006.json b/data/game/ti/tiger-tank-59-break-the-fog-mp006.json new file mode 100644 index 000000000000..eea04cbfd4fa --- /dev/null +++ b/data/game/ti/tiger-tank-59-break-the-fog-mp006.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-break-the-fog-mp006", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP006", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184407" + ], + "release_date": "2021-07-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-break-the-fog-mp007.json b/data/game/ti/tiger-tank-59-break-the-fog-mp007.json new file mode 100644 index 000000000000..bb570adc5f36 --- /dev/null +++ b/data/game/ti/tiger-tank-59-break-the-fog-mp007.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-break-the-fog-mp007", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP007", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184413" + ], + "release_date": "2021-07-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-break-the-fog-mp008.json b/data/game/ti/tiger-tank-59-break-the-fog-mp008.json new file mode 100644 index 000000000000..5e75b8807f2e --- /dev/null +++ b/data/game/ti/tiger-tank-59-break-the-fog-mp008.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-break-the-fog-mp008", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP008", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184415" + ], + "release_date": "2021-07-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-break-the-fog-mp009.json b/data/game/ti/tiger-tank-59-break-the-fog-mp009.json new file mode 100644 index 000000000000..e77cf00c7671 --- /dev/null +++ b/data/game/ti/tiger-tank-59-break-the-fog-mp009.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-break-the-fog-mp009", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP009", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184418" + ], + "release_date": "2021-07-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-break-the-fog-mp010.json b/data/game/ti/tiger-tank-59-break-the-fog-mp010.json new file mode 100644 index 000000000000..fb127739be7a --- /dev/null +++ b/data/game/ti/tiger-tank-59-break-the-fog-mp010.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-break-the-fog-mp010", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP010", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184420" + ], + "release_date": "2021-07-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-break-the-fog-mp011.json b/data/game/ti/tiger-tank-59-break-the-fog-mp011.json new file mode 100644 index 000000000000..ab2e6b3e2641 --- /dev/null +++ b/data/game/ti/tiger-tank-59-break-the-fog-mp011.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-break-the-fog-mp011", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP011", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184424" + ], + "release_date": "2021-07-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-break-the-fog-mp012.json b/data/game/ti/tiger-tank-59-break-the-fog-mp012.json new file mode 100644 index 000000000000..6a189e9fdc66 --- /dev/null +++ b/data/game/ti/tiger-tank-59-break-the-fog-mp012.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-break-the-fog-mp012", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP012", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184426" + ], + "release_date": "2021-07-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-break-the-fog-mp013.json b/data/game/ti/tiger-tank-59-break-the-fog-mp013.json new file mode 100644 index 000000000000..91773b43c9c5 --- /dev/null +++ b/data/game/ti/tiger-tank-59-break-the-fog-mp013.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-break-the-fog-mp013", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP013", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184431" + ], + "release_date": "2021-07-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-break-the-fog-mp014.json b/data/game/ti/tiger-tank-59-break-the-fog-mp014.json new file mode 100644 index 000000000000..a971a8da3120 --- /dev/null +++ b/data/game/ti/tiger-tank-59-break-the-fog-mp014.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-break-the-fog-mp014", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP014", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184433" + ], + "release_date": "2021-07-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-break-the-fog-mp015.json b/data/game/ti/tiger-tank-59-break-the-fog-mp015.json new file mode 100644 index 000000000000..7fafd1b9ef86 --- /dev/null +++ b/data/game/ti/tiger-tank-59-break-the-fog-mp015.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-break-the-fog-mp015", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP015", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184436" + ], + "release_date": "2021-07-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-break-the-fog-mp016.json b/data/game/ti/tiger-tank-59-break-the-fog-mp016.json new file mode 100644 index 000000000000..c9880086bd2b --- /dev/null +++ b/data/game/ti/tiger-tank-59-break-the-fog-mp016.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-break-the-fog-mp016", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP016", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184440" + ], + "release_date": "2021-07-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-break-the-fog-mp017.json b/data/game/ti/tiger-tank-59-break-the-fog-mp017.json new file mode 100644 index 000000000000..7bb5e40a1de3 --- /dev/null +++ b/data/game/ti/tiger-tank-59-break-the-fog-mp017.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-break-the-fog-mp017", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP017", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184442" + ], + "release_date": "2021-07-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-break-the-fog-mp018.json b/data/game/ti/tiger-tank-59-break-the-fog-mp018.json new file mode 100644 index 000000000000..a974d03be26c --- /dev/null +++ b/data/game/ti/tiger-tank-59-break-the-fog-mp018.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-break-the-fog-mp018", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP018", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184445" + ], + "release_date": "2021-07-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-break-the-fog-mp019.json b/data/game/ti/tiger-tank-59-break-the-fog-mp019.json new file mode 100644 index 000000000000..47f524ee77af --- /dev/null +++ b/data/game/ti/tiger-tank-59-break-the-fog-mp019.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-break-the-fog-mp019", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP019", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184450" + ], + "release_date": "2021-07-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-break-the-fog-mp020.json b/data/game/ti/tiger-tank-59-break-the-fog-mp020.json new file mode 100644 index 000000000000..7c4c53c5d47c --- /dev/null +++ b/data/game/ti/tiger-tank-59-break-the-fog-mp020.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-break-the-fog-mp020", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP020", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184455" + ], + "release_date": "2021-07-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-break-the-fog-mp021.json b/data/game/ti/tiger-tank-59-break-the-fog-mp021.json new file mode 100644 index 000000000000..aad178538a1b --- /dev/null +++ b/data/game/ti/tiger-tank-59-break-the-fog-mp021.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-break-the-fog-mp021", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP021", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184459" + ], + "release_date": "2021-07-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-break-the-fog-mp022.json b/data/game/ti/tiger-tank-59-break-the-fog-mp022.json new file mode 100644 index 000000000000..87b5c80410ee --- /dev/null +++ b/data/game/ti/tiger-tank-59-break-the-fog-mp022.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-break-the-fog-mp022", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP022", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184462" + ], + "release_date": "2021-07-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-break-the-fog-mp023.json b/data/game/ti/tiger-tank-59-break-the-fog-mp023.json new file mode 100644 index 000000000000..b5e365a7de38 --- /dev/null +++ b/data/game/ti/tiger-tank-59-break-the-fog-mp023.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-break-the-fog-mp023", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP023", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184468" + ], + "release_date": "2021-07-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-break-the-fog-mp024.json b/data/game/ti/tiger-tank-59-break-the-fog-mp024.json new file mode 100644 index 000000000000..2675b88c86ee --- /dev/null +++ b/data/game/ti/tiger-tank-59-break-the-fog-mp024.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-break-the-fog-mp024", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP024", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184473" + ], + "release_date": "2021-07-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-break-the-fog-mp025.json b/data/game/ti/tiger-tank-59-break-the-fog-mp025.json new file mode 100644 index 000000000000..502bcda16139 --- /dev/null +++ b/data/game/ti/tiger-tank-59-break-the-fog-mp025.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-break-the-fog-mp025", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP025", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184476" + ], + "release_date": "2021-07-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-break-the-fog-mp026.json b/data/game/ti/tiger-tank-59-break-the-fog-mp026.json new file mode 100644 index 000000000000..1b5f9dbe0db9 --- /dev/null +++ b/data/game/ti/tiger-tank-59-break-the-fog-mp026.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-break-the-fog-mp026", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP026", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184485" + ], + "release_date": "2021-07-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-break-the-fog-mp027.json b/data/game/ti/tiger-tank-59-break-the-fog-mp027.json new file mode 100644 index 000000000000..1ad6c37e8b87 --- /dev/null +++ b/data/game/ti/tiger-tank-59-break-the-fog-mp027.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-break-the-fog-mp027", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP027", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184489" + ], + "release_date": "2021-07-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-break-the-fog-mp028.json b/data/game/ti/tiger-tank-59-break-the-fog-mp028.json new file mode 100644 index 000000000000..51692954b661 --- /dev/null +++ b/data/game/ti/tiger-tank-59-break-the-fog-mp028.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-break-the-fog-mp028", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP028", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184491" + ], + "release_date": "2021-07-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-break-the-fog-mp029.json b/data/game/ti/tiger-tank-59-break-the-fog-mp029.json new file mode 100644 index 000000000000..55060f2a4836 --- /dev/null +++ b/data/game/ti/tiger-tank-59-break-the-fog-mp029.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-break-the-fog-mp029", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP029", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184498" + ], + "release_date": "2021-07-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-break-the-fog-mp030.json b/data/game/ti/tiger-tank-59-break-the-fog-mp030.json new file mode 100644 index 000000000000..8528dc72a2cb --- /dev/null +++ b/data/game/ti/tiger-tank-59-break-the-fog-mp030.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-break-the-fog-mp030", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP030", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184502" + ], + "release_date": "2021-07-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-break-the-fog-mp031.json b/data/game/ti/tiger-tank-59-break-the-fog-mp031.json new file mode 100644 index 000000000000..b24cdbf73fd5 --- /dev/null +++ b/data/game/ti/tiger-tank-59-break-the-fog-mp031.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-break-the-fog-mp031", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP031", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184505" + ], + "release_date": "2021-07-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-break-the-fog-mp032.json b/data/game/ti/tiger-tank-59-break-the-fog-mp032.json new file mode 100644 index 000000000000..ab602f77b29b --- /dev/null +++ b/data/game/ti/tiger-tank-59-break-the-fog-mp032.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-break-the-fog-mp032", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP032", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184509" + ], + "release_date": "2021-07-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-break-the-fog-mp033.json b/data/game/ti/tiger-tank-59-break-the-fog-mp033.json new file mode 100644 index 000000000000..d2e1c97f25bd --- /dev/null +++ b/data/game/ti/tiger-tank-59-break-the-fog-mp033.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-break-the-fog-mp033", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP033", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184514" + ], + "release_date": "2021-07-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-break-the-fog-mp034.json b/data/game/ti/tiger-tank-59-break-the-fog-mp034.json new file mode 100644 index 000000000000..0df81453b5f0 --- /dev/null +++ b/data/game/ti/tiger-tank-59-break-the-fog-mp034.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-break-the-fog-mp034", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP034", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184521" + ], + "release_date": "2021-07-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-break-the-fog-mp035.json b/data/game/ti/tiger-tank-59-break-the-fog-mp035.json new file mode 100644 index 000000000000..d9f9769efc23 --- /dev/null +++ b/data/game/ti/tiger-tank-59-break-the-fog-mp035.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-break-the-fog-mp035", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP035", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184523" + ], + "release_date": "2021-07-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-break-the-fog-mp036.json b/data/game/ti/tiger-tank-59-break-the-fog-mp036.json new file mode 100644 index 000000000000..06be1dd07b8c --- /dev/null +++ b/data/game/ti/tiger-tank-59-break-the-fog-mp036.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-break-the-fog-mp036", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP036", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184526" + ], + "release_date": "2021-07-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-break-the-fog-mp037.json b/data/game/ti/tiger-tank-59-break-the-fog-mp037.json new file mode 100644 index 000000000000..daeb802b9a74 --- /dev/null +++ b/data/game/ti/tiger-tank-59-break-the-fog-mp037.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-break-the-fog-mp037", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP037", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184532" + ], + "release_date": "2021-07-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-break-the-fog-mp038.json b/data/game/ti/tiger-tank-59-break-the-fog-mp038.json new file mode 100644 index 000000000000..3d5bca67e981 --- /dev/null +++ b/data/game/ti/tiger-tank-59-break-the-fog-mp038.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-break-the-fog-mp038", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP038", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184546" + ], + "release_date": "2021-07-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-break-the-fog-mp039.json b/data/game/ti/tiger-tank-59-break-the-fog-mp039.json new file mode 100644 index 000000000000..e34d205e383e --- /dev/null +++ b/data/game/ti/tiger-tank-59-break-the-fog-mp039.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-break-the-fog-mp039", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP039", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184555" + ], + "release_date": "2021-07-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-break-the-fog-mp040.json b/data/game/ti/tiger-tank-59-break-the-fog-mp040.json new file mode 100644 index 000000000000..00c9b24965ba --- /dev/null +++ b/data/game/ti/tiger-tank-59-break-the-fog-mp040.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-break-the-fog-mp040", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP040", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184566" + ], + "release_date": "2021-07-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-break-the-fog-mp041.json b/data/game/ti/tiger-tank-59-break-the-fog-mp041.json new file mode 100644 index 000000000000..aa02344cbbf0 --- /dev/null +++ b/data/game/ti/tiger-tank-59-break-the-fog-mp041.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-break-the-fog-mp041", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP041", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184572" + ], + "release_date": "2021-07-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-break-the-fog-mp042.json b/data/game/ti/tiger-tank-59-break-the-fog-mp042.json new file mode 100644 index 000000000000..1c06d266e687 --- /dev/null +++ b/data/game/ti/tiger-tank-59-break-the-fog-mp042.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-break-the-fog-mp042", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP042", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184580" + ], + "release_date": "2021-07-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-break-the-fog-mp043.json b/data/game/ti/tiger-tank-59-break-the-fog-mp043.json new file mode 100644 index 000000000000..0c1b47f7db49 --- /dev/null +++ b/data/game/ti/tiger-tank-59-break-the-fog-mp043.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-break-the-fog-mp043", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP043", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184591" + ], + "release_date": "2021-07-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-break-the-fog-mp044.json b/data/game/ti/tiger-tank-59-break-the-fog-mp044.json new file mode 100644 index 000000000000..3c0d7b225597 --- /dev/null +++ b/data/game/ti/tiger-tank-59-break-the-fog-mp044.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-break-the-fog-mp044", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP044", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184600" + ], + "release_date": "2021-07-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-break-the-fog-mp045.json b/data/game/ti/tiger-tank-59-break-the-fog-mp045.json new file mode 100644 index 000000000000..09011ea64627 --- /dev/null +++ b/data/game/ti/tiger-tank-59-break-the-fog-mp045.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-break-the-fog-mp045", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP045", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184604" + ], + "release_date": "2021-07-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-break-the-fog-mp046.json b/data/game/ti/tiger-tank-59-break-the-fog-mp046.json new file mode 100644 index 000000000000..230c6125b398 --- /dev/null +++ b/data/game/ti/tiger-tank-59-break-the-fog-mp046.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-break-the-fog-mp046", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP046", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184608" + ], + "release_date": "2021-07-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-break-the-fog-mp047.json b/data/game/ti/tiger-tank-59-break-the-fog-mp047.json new file mode 100644 index 000000000000..79c4938d0005 --- /dev/null +++ b/data/game/ti/tiger-tank-59-break-the-fog-mp047.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-break-the-fog-mp047", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP047", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184612" + ], + "release_date": "2021-07-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-break-the-fog-mp048.json b/data/game/ti/tiger-tank-59-break-the-fog-mp048.json new file mode 100644 index 000000000000..1b389d1e6107 --- /dev/null +++ b/data/game/ti/tiger-tank-59-break-the-fog-mp048.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-break-the-fog-mp048", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP048", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184616" + ], + "release_date": "2021-07-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-break-the-fog-mp049.json b/data/game/ti/tiger-tank-59-break-the-fog-mp049.json new file mode 100644 index 000000000000..19794ab6e63a --- /dev/null +++ b/data/game/ti/tiger-tank-59-break-the-fog-mp049.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-break-the-fog-mp049", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP049", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184619" + ], + "release_date": "2021-07-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-break-the-fog-mp050.json b/data/game/ti/tiger-tank-59-break-the-fog-mp050.json new file mode 100644 index 000000000000..f87f1d92a8dc --- /dev/null +++ b/data/game/ti/tiger-tank-59-break-the-fog-mp050.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-break-the-fog-mp050", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP050", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184623" + ], + "release_date": "2021-07-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-break-the-fog-mp051.json b/data/game/ti/tiger-tank-59-break-the-fog-mp051.json new file mode 100644 index 000000000000..3c4a43188dae --- /dev/null +++ b/data/game/ti/tiger-tank-59-break-the-fog-mp051.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-break-the-fog-mp051", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP051", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184628" + ], + "release_date": "2021-07-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-break-the-fog-mp052.json b/data/game/ti/tiger-tank-59-break-the-fog-mp052.json new file mode 100644 index 000000000000..b25019e19b96 --- /dev/null +++ b/data/game/ti/tiger-tank-59-break-the-fog-mp052.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-break-the-fog-mp052", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP052", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184631" + ], + "release_date": "2021-07-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-break-the-fog-mp053.json b/data/game/ti/tiger-tank-59-break-the-fog-mp053.json new file mode 100644 index 000000000000..da3a7e9cd466 --- /dev/null +++ b/data/game/ti/tiger-tank-59-break-the-fog-mp053.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-break-the-fog-mp053", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP053", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184633" + ], + "release_date": "2021-07-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-break-the-fog-mp054.json b/data/game/ti/tiger-tank-59-break-the-fog-mp054.json new file mode 100644 index 000000000000..e0b88e3722f6 --- /dev/null +++ b/data/game/ti/tiger-tank-59-break-the-fog-mp054.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-break-the-fog-mp054", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP054", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184642" + ], + "release_date": "2021-07-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-break-the-fog-mp055.json b/data/game/ti/tiger-tank-59-break-the-fog-mp055.json new file mode 100644 index 000000000000..d61b93fa00b2 --- /dev/null +++ b/data/game/ti/tiger-tank-59-break-the-fog-mp055.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-break-the-fog-mp055", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP055", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184648" + ], + "release_date": "2021-07-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-break-the-fog-mp056.json b/data/game/ti/tiger-tank-59-break-the-fog-mp056.json new file mode 100644 index 000000000000..01b4404f99f0 --- /dev/null +++ b/data/game/ti/tiger-tank-59-break-the-fog-mp056.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-break-the-fog-mp056", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP056", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184654" + ], + "release_date": "2021-07-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-break-the-fog-mp057.json b/data/game/ti/tiger-tank-59-break-the-fog-mp057.json new file mode 100644 index 000000000000..2f7961ff7d86 --- /dev/null +++ b/data/game/ti/tiger-tank-59-break-the-fog-mp057.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-break-the-fog-mp057", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP057", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184664" + ], + "release_date": "2021-07-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-break-the-fog-mp058.json b/data/game/ti/tiger-tank-59-break-the-fog-mp058.json new file mode 100644 index 000000000000..37de18fff458 --- /dev/null +++ b/data/game/ti/tiger-tank-59-break-the-fog-mp058.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-break-the-fog-mp058", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP058", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184673" + ], + "release_date": "2021-07-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-break-the-fog-mp059.json b/data/game/ti/tiger-tank-59-break-the-fog-mp059.json new file mode 100644 index 000000000000..c2ec3b04b8c7 --- /dev/null +++ b/data/game/ti/tiger-tank-59-break-the-fog-mp059.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-break-the-fog-mp059", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP059", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184683" + ], + "release_date": "2021-07-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-break-the-fog-mp060.json b/data/game/ti/tiger-tank-59-break-the-fog-mp060.json new file mode 100644 index 000000000000..7688fbb1c912 --- /dev/null +++ b/data/game/ti/tiger-tank-59-break-the-fog-mp060.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-break-the-fog-mp060", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP060", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184686" + ], + "release_date": "2021-07-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-break-the-fog-mp061.json b/data/game/ti/tiger-tank-59-break-the-fog-mp061.json new file mode 100644 index 000000000000..06260593d4dd --- /dev/null +++ b/data/game/ti/tiger-tank-59-break-the-fog-mp061.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-break-the-fog-mp061", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP061", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184689" + ], + "release_date": "2021-07-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-break-the-fog-mp062.json b/data/game/ti/tiger-tank-59-break-the-fog-mp062.json new file mode 100644 index 000000000000..26ac4e71067b --- /dev/null +++ b/data/game/ti/tiger-tank-59-break-the-fog-mp062.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-break-the-fog-mp062", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP062", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184692" + ], + "release_date": "2021-07-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-break-the-fog-mp063.json b/data/game/ti/tiger-tank-59-break-the-fog-mp063.json new file mode 100644 index 000000000000..63e7f01286d1 --- /dev/null +++ b/data/game/ti/tiger-tank-59-break-the-fog-mp063.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-break-the-fog-mp063", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP063", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184699" + ], + "release_date": "2021-07-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-break-the-fog-mp064.json b/data/game/ti/tiger-tank-59-break-the-fog-mp064.json new file mode 100644 index 000000000000..ab538decb1f6 --- /dev/null +++ b/data/game/ti/tiger-tank-59-break-the-fog-mp064.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-break-the-fog-mp064", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP064", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184704" + ], + "release_date": "2021-07-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-break-the-fog-mp065.json b/data/game/ti/tiger-tank-59-break-the-fog-mp065.json new file mode 100644 index 000000000000..642b505dea57 --- /dev/null +++ b/data/game/ti/tiger-tank-59-break-the-fog-mp065.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-break-the-fog-mp065", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP065", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184707" + ], + "release_date": "2021-07-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-break-the-fog-mp066.json b/data/game/ti/tiger-tank-59-break-the-fog-mp066.json new file mode 100644 index 000000000000..66ee8ba2ba98 --- /dev/null +++ b/data/game/ti/tiger-tank-59-break-the-fog-mp066.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-break-the-fog-mp066", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP066", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184710" + ], + "release_date": "2021-07-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-break-the-fog-mp067.json b/data/game/ti/tiger-tank-59-break-the-fog-mp067.json new file mode 100644 index 000000000000..528d4fc759ca --- /dev/null +++ b/data/game/ti/tiger-tank-59-break-the-fog-mp067.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-break-the-fog-mp067", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP067", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184714" + ], + "release_date": "2021-07-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-break-the-fog-mp068.json b/data/game/ti/tiger-tank-59-break-the-fog-mp068.json new file mode 100644 index 000000000000..7d4c45fe7a34 --- /dev/null +++ b/data/game/ti/tiger-tank-59-break-the-fog-mp068.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-break-the-fog-mp068", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP068", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184717" + ], + "release_date": "2021-07-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-break-the-fog-mp069.json b/data/game/ti/tiger-tank-59-break-the-fog-mp069.json new file mode 100644 index 000000000000..39684af93eac --- /dev/null +++ b/data/game/ti/tiger-tank-59-break-the-fog-mp069.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-break-the-fog-mp069", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP069", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184719" + ], + "release_date": "2021-07-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-break-the-fog-mp070.json b/data/game/ti/tiger-tank-59-break-the-fog-mp070.json new file mode 100644 index 000000000000..783857e33a16 --- /dev/null +++ b/data/game/ti/tiger-tank-59-break-the-fog-mp070.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-break-the-fog-mp070", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP070", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184722" + ], + "release_date": "2021-07-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-break-the-fog-mp071.json b/data/game/ti/tiger-tank-59-break-the-fog-mp071.json new file mode 100644 index 000000000000..956a5f708c1e --- /dev/null +++ b/data/game/ti/tiger-tank-59-break-the-fog-mp071.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-break-the-fog-mp071", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP071", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184726" + ], + "release_date": "2021-07-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-break-the-fog-mp072.json b/data/game/ti/tiger-tank-59-break-the-fog-mp072.json new file mode 100644 index 000000000000..92610ef65ec6 --- /dev/null +++ b/data/game/ti/tiger-tank-59-break-the-fog-mp072.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-break-the-fog-mp072", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP072", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184729" + ], + "release_date": "2021-07-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-break-the-fog-mp073.json b/data/game/ti/tiger-tank-59-break-the-fog-mp073.json new file mode 100644 index 000000000000..003aeac43e8b --- /dev/null +++ b/data/game/ti/tiger-tank-59-break-the-fog-mp073.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-break-the-fog-mp073", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP073", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184732" + ], + "release_date": "2021-07-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-break-the-fog-mp074.json b/data/game/ti/tiger-tank-59-break-the-fog-mp074.json new file mode 100644 index 000000000000..744ad8f6cde6 --- /dev/null +++ b/data/game/ti/tiger-tank-59-break-the-fog-mp074.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-break-the-fog-mp074", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP074", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184736" + ], + "release_date": "2021-07-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-break-the-fog-mp075.json b/data/game/ti/tiger-tank-59-break-the-fog-mp075.json new file mode 100644 index 000000000000..4ad0ee9ec6cd --- /dev/null +++ b/data/game/ti/tiger-tank-59-break-the-fog-mp075.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-break-the-fog-mp075", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP075", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184739" + ], + "release_date": "2021-07-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-break-the-fog-mp076.json b/data/game/ti/tiger-tank-59-break-the-fog-mp076.json new file mode 100644 index 000000000000..4ffdf1ab709c --- /dev/null +++ b/data/game/ti/tiger-tank-59-break-the-fog-mp076.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-break-the-fog-mp076", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP076", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184743" + ], + "release_date": "2021-07-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-break-the-fog-mp077.json b/data/game/ti/tiger-tank-59-break-the-fog-mp077.json new file mode 100644 index 000000000000..43cb5ae7e875 --- /dev/null +++ b/data/game/ti/tiger-tank-59-break-the-fog-mp077.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-break-the-fog-mp077", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP077", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184746" + ], + "release_date": "2021-07-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-break-the-fog-mp078.json b/data/game/ti/tiger-tank-59-break-the-fog-mp078.json new file mode 100644 index 000000000000..29cfbfd2f5c5 --- /dev/null +++ b/data/game/ti/tiger-tank-59-break-the-fog-mp078.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-break-the-fog-mp078", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP078", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184749" + ], + "release_date": "2021-07-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-break-the-fog-mp079.json b/data/game/ti/tiger-tank-59-break-the-fog-mp079.json new file mode 100644 index 000000000000..2428021b8736 --- /dev/null +++ b/data/game/ti/tiger-tank-59-break-the-fog-mp079.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-break-the-fog-mp079", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP079", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184751" + ], + "release_date": "2021-07-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-break-the-fog-mp080.json b/data/game/ti/tiger-tank-59-break-the-fog-mp080.json new file mode 100644 index 000000000000..3dcad02b1a4d --- /dev/null +++ b/data/game/ti/tiger-tank-59-break-the-fog-mp080.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-break-the-fog-mp080", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP080", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184754" + ], + "release_date": "2021-07-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-break-the-fog-mp081.json b/data/game/ti/tiger-tank-59-break-the-fog-mp081.json new file mode 100644 index 000000000000..d2773fe82966 --- /dev/null +++ b/data/game/ti/tiger-tank-59-break-the-fog-mp081.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-break-the-fog-mp081", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP081", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184758" + ], + "release_date": "2021-07-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-break-the-fog-mp082.json b/data/game/ti/tiger-tank-59-break-the-fog-mp082.json new file mode 100644 index 000000000000..2fe732e99668 --- /dev/null +++ b/data/game/ti/tiger-tank-59-break-the-fog-mp082.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-break-the-fog-mp082", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP082", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184761" + ], + "release_date": "2021-07-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-break-the-fog-mp083.json b/data/game/ti/tiger-tank-59-break-the-fog-mp083.json new file mode 100644 index 000000000000..f5a6dcfda412 --- /dev/null +++ b/data/game/ti/tiger-tank-59-break-the-fog-mp083.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-break-the-fog-mp083", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP083", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184763" + ], + "release_date": "2021-07-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-break-the-fog-mp084.json b/data/game/ti/tiger-tank-59-break-the-fog-mp084.json new file mode 100644 index 000000000000..27196aaedf84 --- /dev/null +++ b/data/game/ti/tiger-tank-59-break-the-fog-mp084.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-break-the-fog-mp084", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP084", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184766" + ], + "release_date": "2021-07-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-break-the-fog-mp085.json b/data/game/ti/tiger-tank-59-break-the-fog-mp085.json new file mode 100644 index 000000000000..f73e722e3e78 --- /dev/null +++ b/data/game/ti/tiger-tank-59-break-the-fog-mp085.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-break-the-fog-mp085", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP085", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184769" + ], + "release_date": "2021-07-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-break-the-fog-mp086.json b/data/game/ti/tiger-tank-59-break-the-fog-mp086.json new file mode 100644 index 000000000000..e9437b26b8c0 --- /dev/null +++ b/data/game/ti/tiger-tank-59-break-the-fog-mp086.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-break-the-fog-mp086", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP086", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184772" + ], + "release_date": "2021-07-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-break-the-fog-mp087.json b/data/game/ti/tiger-tank-59-break-the-fog-mp087.json new file mode 100644 index 000000000000..48781fc41b76 --- /dev/null +++ b/data/game/ti/tiger-tank-59-break-the-fog-mp087.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-break-the-fog-mp087", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP087", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184775" + ], + "release_date": "2021-07-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-break-the-fog-mp088.json b/data/game/ti/tiger-tank-59-break-the-fog-mp088.json new file mode 100644 index 000000000000..d969fb71be84 --- /dev/null +++ b/data/game/ti/tiger-tank-59-break-the-fog-mp088.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-break-the-fog-mp088", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP088", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184777" + ], + "release_date": "2021-07-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-break-the-fog-mp089.json b/data/game/ti/tiger-tank-59-break-the-fog-mp089.json new file mode 100644 index 000000000000..4dde4e05ad21 --- /dev/null +++ b/data/game/ti/tiger-tank-59-break-the-fog-mp089.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-break-the-fog-mp089", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP089", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184781" + ], + "release_date": "2021-07-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-break-the-fog-mp090.json b/data/game/ti/tiger-tank-59-break-the-fog-mp090.json new file mode 100644 index 000000000000..37671b19a805 --- /dev/null +++ b/data/game/ti/tiger-tank-59-break-the-fog-mp090.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-break-the-fog-mp090", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP090", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184785" + ], + "release_date": "2021-07-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-break-the-fog-mp091.json b/data/game/ti/tiger-tank-59-break-the-fog-mp091.json new file mode 100644 index 000000000000..ce6a8b30592d --- /dev/null +++ b/data/game/ti/tiger-tank-59-break-the-fog-mp091.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-break-the-fog-mp091", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP091", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184787" + ], + "release_date": "2021-07-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-break-the-fog-mp092.json b/data/game/ti/tiger-tank-59-break-the-fog-mp092.json new file mode 100644 index 000000000000..931eeafcac59 --- /dev/null +++ b/data/game/ti/tiger-tank-59-break-the-fog-mp092.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-break-the-fog-mp092", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP092", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184790" + ], + "release_date": "2021-07-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-break-the-fog-mp093.json b/data/game/ti/tiger-tank-59-break-the-fog-mp093.json new file mode 100644 index 000000000000..1f8fa353b022 --- /dev/null +++ b/data/game/ti/tiger-tank-59-break-the-fog-mp093.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-break-the-fog-mp093", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP093", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184792" + ], + "release_date": "2021-07-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-break-the-fog-mp094.json b/data/game/ti/tiger-tank-59-break-the-fog-mp094.json new file mode 100644 index 000000000000..ce04a04a26e8 --- /dev/null +++ b/data/game/ti/tiger-tank-59-break-the-fog-mp094.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-break-the-fog-mp094", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP094", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184794" + ], + "release_date": "2021-07-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-break-the-fog-mp095.json b/data/game/ti/tiger-tank-59-break-the-fog-mp095.json new file mode 100644 index 000000000000..32d56389ab2f --- /dev/null +++ b/data/game/ti/tiger-tank-59-break-the-fog-mp095.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-break-the-fog-mp095", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP095", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184797" + ], + "release_date": "2021-07-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-break-the-fog-mp096.json b/data/game/ti/tiger-tank-59-break-the-fog-mp096.json new file mode 100644 index 000000000000..bbc666dfa70b --- /dev/null +++ b/data/game/ti/tiger-tank-59-break-the-fog-mp096.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-break-the-fog-mp096", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP096", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184802" + ], + "release_date": "2021-07-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-break-the-fog-mp097.json b/data/game/ti/tiger-tank-59-break-the-fog-mp097.json new file mode 100644 index 000000000000..90c58468e9ba --- /dev/null +++ b/data/game/ti/tiger-tank-59-break-the-fog-mp097.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-break-the-fog-mp097", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP097", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184805" + ], + "release_date": "2021-07-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-break-the-fog-mp098.json b/data/game/ti/tiger-tank-59-break-the-fog-mp098.json new file mode 100644 index 000000000000..4d12fbb62208 --- /dev/null +++ b/data/game/ti/tiger-tank-59-break-the-fog-mp098.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-break-the-fog-mp098", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP098", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184810" + ], + "release_date": "2021-07-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-break-the-fog-mp099.json b/data/game/ti/tiger-tank-59-break-the-fog-mp099.json new file mode 100644 index 000000000000..f80dceee4758 --- /dev/null +++ b/data/game/ti/tiger-tank-59-break-the-fog-mp099.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-break-the-fog-mp099", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP099", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184813" + ], + "release_date": "2021-07-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-break-the-fog-mp100.json b/data/game/ti/tiger-tank-59-break-the-fog-mp100.json new file mode 100644 index 000000000000..40e8f2e33217 --- /dev/null +++ b/data/game/ti/tiger-tank-59-break-the-fog-mp100.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-break-the-fog-mp100", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP100", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184818" + ], + "release_date": "2021-07-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-mission-pack-001.json b/data/game/ti/tiger-tank-59-mission-pack-001.json new file mode 100644 index 000000000000..58ccd331d348 --- /dev/null +++ b/data/game/ti/tiger-tank-59-mission-pack-001.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-mission-pack-001", + "name": "Tiger Tank 59 Ⅰ Mission Pack 001", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184822" + ], + "release_date": "2021-06-04", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-mission-pack-002.json b/data/game/ti/tiger-tank-59-mission-pack-002.json new file mode 100644 index 000000000000..b6146c82ed17 --- /dev/null +++ b/data/game/ti/tiger-tank-59-mission-pack-002.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-mission-pack-002", + "name": "Tiger Tank 59 Ⅰ Mission Pack 002", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184824" + ], + "release_date": "2021-06-04", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-mission-pack-003.json b/data/game/ti/tiger-tank-59-mission-pack-003.json new file mode 100644 index 000000000000..22193f68faa6 --- /dev/null +++ b/data/game/ti/tiger-tank-59-mission-pack-003.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-mission-pack-003", + "name": "Tiger Tank 59 Ⅰ Mission Pack 003", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184827" + ], + "release_date": "2021-06-04", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-mission-pack-004.json b/data/game/ti/tiger-tank-59-mission-pack-004.json new file mode 100644 index 000000000000..e253e237e893 --- /dev/null +++ b/data/game/ti/tiger-tank-59-mission-pack-004.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-mission-pack-004", + "name": "Tiger Tank 59 Ⅰ Mission Pack 004", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184830" + ], + "release_date": "2021-06-04", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-mission-pack-005.json b/data/game/ti/tiger-tank-59-mission-pack-005.json new file mode 100644 index 000000000000..9760abcb968b --- /dev/null +++ b/data/game/ti/tiger-tank-59-mission-pack-005.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-mission-pack-005", + "name": "Tiger Tank 59 Ⅰ Mission Pack 005", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184831" + ], + "release_date": "2021-06-04", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-mission-pack-006.json b/data/game/ti/tiger-tank-59-mission-pack-006.json new file mode 100644 index 000000000000..0971e3059fee --- /dev/null +++ b/data/game/ti/tiger-tank-59-mission-pack-006.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-mission-pack-006", + "name": "Tiger Tank 59 Ⅰ Mission Pack 006", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184832" + ], + "release_date": "2021-06-04", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-mission-pack-007.json b/data/game/ti/tiger-tank-59-mission-pack-007.json new file mode 100644 index 000000000000..301cd6cff4a8 --- /dev/null +++ b/data/game/ti/tiger-tank-59-mission-pack-007.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-mission-pack-007", + "name": "Tiger Tank 59 Ⅰ Mission Pack 007", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184833" + ], + "release_date": "2021-06-04", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-mission-pack-008.json b/data/game/ti/tiger-tank-59-mission-pack-008.json new file mode 100644 index 000000000000..95717a225984 --- /dev/null +++ b/data/game/ti/tiger-tank-59-mission-pack-008.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-mission-pack-008", + "name": "Tiger Tank 59 Ⅰ Mission Pack 008", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184837" + ], + "release_date": "2021-06-04", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-mission-pack-009.json b/data/game/ti/tiger-tank-59-mission-pack-009.json new file mode 100644 index 000000000000..465615bf09d2 --- /dev/null +++ b/data/game/ti/tiger-tank-59-mission-pack-009.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-mission-pack-009", + "name": "Tiger Tank 59 Ⅰ Mission Pack 009", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184838" + ], + "release_date": "2021-06-04", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-mission-pack-010.json b/data/game/ti/tiger-tank-59-mission-pack-010.json new file mode 100644 index 000000000000..1ec741546ac0 --- /dev/null +++ b/data/game/ti/tiger-tank-59-mission-pack-010.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-mission-pack-010", + "name": "Tiger Tank 59 Ⅰ Mission Pack 010", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184839" + ], + "release_date": "2021-06-04", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-mission-pack-011.json b/data/game/ti/tiger-tank-59-mission-pack-011.json new file mode 100644 index 000000000000..870cd5a06d05 --- /dev/null +++ b/data/game/ti/tiger-tank-59-mission-pack-011.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-mission-pack-011", + "name": "Tiger Tank 59 Ⅰ Mission Pack 011", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184842" + ], + "release_date": "2021-06-04", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-mission-pack-012.json b/data/game/ti/tiger-tank-59-mission-pack-012.json new file mode 100644 index 000000000000..19740f1b5221 --- /dev/null +++ b/data/game/ti/tiger-tank-59-mission-pack-012.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-mission-pack-012", + "name": "Tiger Tank 59 Ⅰ Mission Pack 012", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184843" + ], + "release_date": "2021-06-04", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-mission-pack-013.json b/data/game/ti/tiger-tank-59-mission-pack-013.json new file mode 100644 index 000000000000..ca69c2a8c1f2 --- /dev/null +++ b/data/game/ti/tiger-tank-59-mission-pack-013.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-mission-pack-013", + "name": "Tiger Tank 59 Ⅰ Mission Pack 013", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184844" + ], + "release_date": "2021-06-04", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-mission-pack-014.json b/data/game/ti/tiger-tank-59-mission-pack-014.json new file mode 100644 index 000000000000..87334338607a --- /dev/null +++ b/data/game/ti/tiger-tank-59-mission-pack-014.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-mission-pack-014", + "name": "Tiger Tank 59 Ⅰ Mission Pack 014", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184847" + ], + "release_date": "2021-06-04", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-mission-pack-015.json b/data/game/ti/tiger-tank-59-mission-pack-015.json new file mode 100644 index 000000000000..f37fb652e653 --- /dev/null +++ b/data/game/ti/tiger-tank-59-mission-pack-015.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-mission-pack-015", + "name": "Tiger Tank 59 Ⅰ Mission Pack 015", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184848" + ], + "release_date": "2021-06-04", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-mission-pack-016.json b/data/game/ti/tiger-tank-59-mission-pack-016.json new file mode 100644 index 000000000000..0f7b8ae46de9 --- /dev/null +++ b/data/game/ti/tiger-tank-59-mission-pack-016.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-mission-pack-016", + "name": "Tiger Tank 59 Ⅰ Mission Pack 016", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184849" + ], + "release_date": "2021-06-04", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-mission-pack-017.json b/data/game/ti/tiger-tank-59-mission-pack-017.json new file mode 100644 index 000000000000..30b210ff3bb4 --- /dev/null +++ b/data/game/ti/tiger-tank-59-mission-pack-017.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-mission-pack-017", + "name": "Tiger Tank 59 Ⅰ Mission Pack 017", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184850" + ], + "release_date": "2021-06-04", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-mission-pack-018.json b/data/game/ti/tiger-tank-59-mission-pack-018.json new file mode 100644 index 000000000000..a816241e47ab --- /dev/null +++ b/data/game/ti/tiger-tank-59-mission-pack-018.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-mission-pack-018", + "name": "Tiger Tank 59 Ⅰ Mission Pack 018", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184852" + ], + "release_date": "2021-06-04", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-mission-pack-019.json b/data/game/ti/tiger-tank-59-mission-pack-019.json new file mode 100644 index 000000000000..af28820654bf --- /dev/null +++ b/data/game/ti/tiger-tank-59-mission-pack-019.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-mission-pack-019", + "name": "Tiger Tank 59 Ⅰ Mission Pack 019", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184854" + ], + "release_date": "2021-06-04", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-mission-pack-020.json b/data/game/ti/tiger-tank-59-mission-pack-020.json new file mode 100644 index 000000000000..45b2c27e36da --- /dev/null +++ b/data/game/ti/tiger-tank-59-mission-pack-020.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-mission-pack-020", + "name": "Tiger Tank 59 Ⅰ Mission Pack 020", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184855" + ], + "release_date": "2021-06-04", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-mission-pack-021.json b/data/game/ti/tiger-tank-59-mission-pack-021.json new file mode 100644 index 000000000000..cf0cee39802f --- /dev/null +++ b/data/game/ti/tiger-tank-59-mission-pack-021.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-mission-pack-021", + "name": "Tiger Tank 59 Ⅰ Mission Pack 021", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184857" + ], + "release_date": "2021-06-04", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-mission-pack-022.json b/data/game/ti/tiger-tank-59-mission-pack-022.json new file mode 100644 index 000000000000..e731fa0d598a --- /dev/null +++ b/data/game/ti/tiger-tank-59-mission-pack-022.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-mission-pack-022", + "name": "Tiger Tank 59 Ⅰ Mission Pack 022", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184859" + ], + "release_date": "2021-06-04", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-mission-pack-023.json b/data/game/ti/tiger-tank-59-mission-pack-023.json new file mode 100644 index 000000000000..d008f0f46ff9 --- /dev/null +++ b/data/game/ti/tiger-tank-59-mission-pack-023.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-mission-pack-023", + "name": "Tiger Tank 59 Ⅰ Mission Pack 023", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184862" + ], + "release_date": "2021-06-04", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-mission-pack-024.json b/data/game/ti/tiger-tank-59-mission-pack-024.json new file mode 100644 index 000000000000..c2986fa6eb77 --- /dev/null +++ b/data/game/ti/tiger-tank-59-mission-pack-024.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-mission-pack-024", + "name": "Tiger Tank 59 Ⅰ Mission Pack 024", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184863" + ], + "release_date": "2021-06-04", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-mission-pack-025.json b/data/game/ti/tiger-tank-59-mission-pack-025.json new file mode 100644 index 000000000000..495efc7e56c7 --- /dev/null +++ b/data/game/ti/tiger-tank-59-mission-pack-025.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-mission-pack-025", + "name": "Tiger Tank 59 Ⅰ Mission Pack 025", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184865" + ], + "release_date": "2021-06-04", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-mission-pack-026.json b/data/game/ti/tiger-tank-59-mission-pack-026.json new file mode 100644 index 000000000000..ba12f36eedec --- /dev/null +++ b/data/game/ti/tiger-tank-59-mission-pack-026.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-mission-pack-026", + "name": "Tiger Tank 59 Ⅰ Mission Pack 026", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184866" + ], + "release_date": "2021-06-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-mission-pack-027.json b/data/game/ti/tiger-tank-59-mission-pack-027.json new file mode 100644 index 000000000000..7fc4a8eb818e --- /dev/null +++ b/data/game/ti/tiger-tank-59-mission-pack-027.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-mission-pack-027", + "name": "Tiger Tank 59 Ⅰ Mission Pack 027", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184868" + ], + "release_date": "2021-06-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-mission-pack-028.json b/data/game/ti/tiger-tank-59-mission-pack-028.json new file mode 100644 index 000000000000..7f72d357ec51 --- /dev/null +++ b/data/game/ti/tiger-tank-59-mission-pack-028.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-mission-pack-028", + "name": "Tiger Tank 59 Ⅰ Mission Pack 028", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184872" + ], + "release_date": "2021-06-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-mission-pack-029.json b/data/game/ti/tiger-tank-59-mission-pack-029.json new file mode 100644 index 000000000000..43cf0c00d5f0 --- /dev/null +++ b/data/game/ti/tiger-tank-59-mission-pack-029.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-mission-pack-029", + "name": "Tiger Tank 59 Ⅰ Mission Pack 029", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184873" + ], + "release_date": "2021-06-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-mission-pack-030.json b/data/game/ti/tiger-tank-59-mission-pack-030.json new file mode 100644 index 000000000000..5441520604ad --- /dev/null +++ b/data/game/ti/tiger-tank-59-mission-pack-030.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-mission-pack-030", + "name": "Tiger Tank 59 Ⅰ Mission Pack 030", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184874" + ], + "release_date": "2021-06-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-mission-pack-031.json b/data/game/ti/tiger-tank-59-mission-pack-031.json new file mode 100644 index 000000000000..38a78f1c91ec --- /dev/null +++ b/data/game/ti/tiger-tank-59-mission-pack-031.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-mission-pack-031", + "name": "Tiger Tank 59 Ⅰ Mission Pack 031", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184884" + ], + "release_date": "2021-06-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-mission-pack-032.json b/data/game/ti/tiger-tank-59-mission-pack-032.json new file mode 100644 index 000000000000..d6544db7e3bd --- /dev/null +++ b/data/game/ti/tiger-tank-59-mission-pack-032.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-mission-pack-032", + "name": "Tiger Tank 59 Ⅰ Mission Pack 032", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184885" + ], + "release_date": "2021-06-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-mission-pack-033.json b/data/game/ti/tiger-tank-59-mission-pack-033.json new file mode 100644 index 000000000000..7e77e4104715 --- /dev/null +++ b/data/game/ti/tiger-tank-59-mission-pack-033.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-mission-pack-033", + "name": "Tiger Tank 59 Ⅰ Mission Pack 033", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184891" + ], + "release_date": "2021-06-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-mission-pack-034.json b/data/game/ti/tiger-tank-59-mission-pack-034.json new file mode 100644 index 000000000000..a41c0031b49c --- /dev/null +++ b/data/game/ti/tiger-tank-59-mission-pack-034.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-mission-pack-034", + "name": "Tiger Tank 59 Ⅰ Mission Pack 034", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184898" + ], + "release_date": "2021-06-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-mission-pack-035.json b/data/game/ti/tiger-tank-59-mission-pack-035.json new file mode 100644 index 000000000000..be8d701db034 --- /dev/null +++ b/data/game/ti/tiger-tank-59-mission-pack-035.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-mission-pack-035", + "name": "Tiger Tank 59 Ⅰ Mission Pack 035", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184902" + ], + "release_date": "2021-06-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-mission-pack-036.json b/data/game/ti/tiger-tank-59-mission-pack-036.json new file mode 100644 index 000000000000..c6fed9587b77 --- /dev/null +++ b/data/game/ti/tiger-tank-59-mission-pack-036.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-mission-pack-036", + "name": "Tiger Tank 59 Ⅰ Mission Pack 036", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184913" + ], + "release_date": "2021-06-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-mission-pack-037.json b/data/game/ti/tiger-tank-59-mission-pack-037.json new file mode 100644 index 000000000000..ddb4c8d1d727 --- /dev/null +++ b/data/game/ti/tiger-tank-59-mission-pack-037.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-mission-pack-037", + "name": "Tiger Tank 59 Ⅰ Mission Pack 037", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184916" + ], + "release_date": "2021-06-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-mission-pack-038.json b/data/game/ti/tiger-tank-59-mission-pack-038.json new file mode 100644 index 000000000000..25505d5367a3 --- /dev/null +++ b/data/game/ti/tiger-tank-59-mission-pack-038.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-mission-pack-038", + "name": "Tiger Tank 59 Ⅰ Mission Pack 038", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184919" + ], + "release_date": "2021-06-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-mission-pack-039.json b/data/game/ti/tiger-tank-59-mission-pack-039.json new file mode 100644 index 000000000000..e93c5f631a69 --- /dev/null +++ b/data/game/ti/tiger-tank-59-mission-pack-039.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-mission-pack-039", + "name": "Tiger Tank 59 Ⅰ Mission Pack 039", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184921" + ], + "release_date": "2021-06-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-mission-pack-040.json b/data/game/ti/tiger-tank-59-mission-pack-040.json new file mode 100644 index 000000000000..f070cf48e649 --- /dev/null +++ b/data/game/ti/tiger-tank-59-mission-pack-040.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-mission-pack-040", + "name": "Tiger Tank 59 Ⅰ Mission Pack 040", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184922" + ], + "release_date": "2021-06-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-mission-pack-041.json b/data/game/ti/tiger-tank-59-mission-pack-041.json new file mode 100644 index 000000000000..f079ba8fd925 --- /dev/null +++ b/data/game/ti/tiger-tank-59-mission-pack-041.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-mission-pack-041", + "name": "Tiger Tank 59 Ⅰ Mission Pack 041", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184923" + ], + "release_date": "2021-06-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-mission-pack-042.json b/data/game/ti/tiger-tank-59-mission-pack-042.json new file mode 100644 index 000000000000..07b02d303cef --- /dev/null +++ b/data/game/ti/tiger-tank-59-mission-pack-042.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-mission-pack-042", + "name": "Tiger Tank 59 Ⅰ Mission Pack 042", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184924" + ], + "release_date": "2021-06-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-mission-pack-043.json b/data/game/ti/tiger-tank-59-mission-pack-043.json new file mode 100644 index 000000000000..7671585d3327 --- /dev/null +++ b/data/game/ti/tiger-tank-59-mission-pack-043.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-mission-pack-043", + "name": "Tiger Tank 59 Ⅰ Mission Pack 043", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184925" + ], + "release_date": "2021-06-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-mission-pack-044.json b/data/game/ti/tiger-tank-59-mission-pack-044.json new file mode 100644 index 000000000000..fe132f16a8c9 --- /dev/null +++ b/data/game/ti/tiger-tank-59-mission-pack-044.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-mission-pack-044", + "name": "Tiger Tank 59 Ⅰ Mission Pack 044", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184926" + ], + "release_date": "2021-06-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-mission-pack-045.json b/data/game/ti/tiger-tank-59-mission-pack-045.json new file mode 100644 index 000000000000..cdc5a6e21ce9 --- /dev/null +++ b/data/game/ti/tiger-tank-59-mission-pack-045.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-mission-pack-045", + "name": "Tiger Tank 59 Ⅰ Mission Pack 045", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184927" + ], + "release_date": "2021-06-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-mission-pack-046.json b/data/game/ti/tiger-tank-59-mission-pack-046.json new file mode 100644 index 000000000000..56f66282ed94 --- /dev/null +++ b/data/game/ti/tiger-tank-59-mission-pack-046.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-mission-pack-046", + "name": "Tiger Tank 59 Ⅰ Mission Pack 046", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184928" + ], + "release_date": "2021-06-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-mission-pack-047.json b/data/game/ti/tiger-tank-59-mission-pack-047.json new file mode 100644 index 000000000000..33461c7ee9a8 --- /dev/null +++ b/data/game/ti/tiger-tank-59-mission-pack-047.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-mission-pack-047", + "name": "Tiger Tank 59 Ⅰ Mission Pack 047", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184933" + ], + "release_date": "2021-06-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-mission-pack-048.json b/data/game/ti/tiger-tank-59-mission-pack-048.json new file mode 100644 index 000000000000..5c740c2989bd --- /dev/null +++ b/data/game/ti/tiger-tank-59-mission-pack-048.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-mission-pack-048", + "name": "Tiger Tank 59 Ⅰ Mission Pack 048", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184935" + ], + "release_date": "2021-06-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-mission-pack-049.json b/data/game/ti/tiger-tank-59-mission-pack-049.json new file mode 100644 index 000000000000..08f2477dd9fa --- /dev/null +++ b/data/game/ti/tiger-tank-59-mission-pack-049.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-mission-pack-049", + "name": "Tiger Tank 59 Ⅰ Mission Pack 049", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184937" + ], + "release_date": "2021-06-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-mission-pack-050.json b/data/game/ti/tiger-tank-59-mission-pack-050.json new file mode 100644 index 000000000000..5bf543ac6047 --- /dev/null +++ b/data/game/ti/tiger-tank-59-mission-pack-050.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-mission-pack-050", + "name": "Tiger Tank 59 Ⅰ Mission Pack 050", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184938" + ], + "release_date": "2021-06-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-mission-pack-051.json b/data/game/ti/tiger-tank-59-mission-pack-051.json new file mode 100644 index 000000000000..ed3fcdb78d07 --- /dev/null +++ b/data/game/ti/tiger-tank-59-mission-pack-051.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-mission-pack-051", + "name": "Tiger Tank 59 Ⅰ Mission Pack 051", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184939" + ], + "release_date": "2021-06-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-mission-pack-053.json b/data/game/ti/tiger-tank-59-mission-pack-053.json new file mode 100644 index 000000000000..d375e06d9342 --- /dev/null +++ b/data/game/ti/tiger-tank-59-mission-pack-053.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-mission-pack-053", + "name": "Tiger Tank 59 Ⅰ Mission Pack 053", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184940" + ], + "release_date": "2021-06-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-mission-pack-054.json b/data/game/ti/tiger-tank-59-mission-pack-054.json new file mode 100644 index 000000000000..0c163574074a --- /dev/null +++ b/data/game/ti/tiger-tank-59-mission-pack-054.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-mission-pack-054", + "name": "Tiger Tank 59 Ⅰ Mission Pack 054", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184941" + ], + "release_date": "2021-06-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-mission-pack-055.json b/data/game/ti/tiger-tank-59-mission-pack-055.json new file mode 100644 index 000000000000..b6b409367d8b --- /dev/null +++ b/data/game/ti/tiger-tank-59-mission-pack-055.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-mission-pack-055", + "name": "Tiger Tank 59 Ⅰ Mission Pack 055", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184942" + ], + "release_date": "2021-06-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-mission-pack-056.json b/data/game/ti/tiger-tank-59-mission-pack-056.json new file mode 100644 index 000000000000..0589782a6d29 --- /dev/null +++ b/data/game/ti/tiger-tank-59-mission-pack-056.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-mission-pack-056", + "name": "Tiger Tank 59 Ⅰ Mission Pack 056", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184943" + ], + "release_date": "2021-06-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-mission-pack-057.json b/data/game/ti/tiger-tank-59-mission-pack-057.json new file mode 100644 index 000000000000..d915c3842c2a --- /dev/null +++ b/data/game/ti/tiger-tank-59-mission-pack-057.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-mission-pack-057", + "name": "Tiger Tank 59 Ⅰ Mission Pack 057", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184944" + ], + "release_date": "2021-06-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-mission-pack-058.json b/data/game/ti/tiger-tank-59-mission-pack-058.json new file mode 100644 index 000000000000..cc1aa5275e39 --- /dev/null +++ b/data/game/ti/tiger-tank-59-mission-pack-058.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-mission-pack-058", + "name": "Tiger Tank 59 Ⅰ Mission Pack 058", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184946" + ], + "release_date": "2021-06-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-mission-pack-059.json b/data/game/ti/tiger-tank-59-mission-pack-059.json new file mode 100644 index 000000000000..1cc1b9e93c87 --- /dev/null +++ b/data/game/ti/tiger-tank-59-mission-pack-059.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-mission-pack-059", + "name": "Tiger Tank 59 Ⅰ Mission Pack 059", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184947" + ], + "release_date": "2021-06-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-mission-pack-060.json b/data/game/ti/tiger-tank-59-mission-pack-060.json new file mode 100644 index 000000000000..ef7eeb679197 --- /dev/null +++ b/data/game/ti/tiger-tank-59-mission-pack-060.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-mission-pack-060", + "name": "Tiger Tank 59 Ⅰ Mission Pack 060", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184949" + ], + "release_date": "2021-06-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-mission-pack-062.json b/data/game/ti/tiger-tank-59-mission-pack-062.json new file mode 100644 index 000000000000..71a16e160745 --- /dev/null +++ b/data/game/ti/tiger-tank-59-mission-pack-062.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-mission-pack-062", + "name": "Tiger Tank 59 Ⅰ Mission Pack 062", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184950" + ], + "release_date": "2021-06-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-mission-pack-063.json b/data/game/ti/tiger-tank-59-mission-pack-063.json new file mode 100644 index 000000000000..ef9e86f5d560 --- /dev/null +++ b/data/game/ti/tiger-tank-59-mission-pack-063.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-mission-pack-063", + "name": "Tiger Tank 59 Ⅰ Mission Pack 063", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184952" + ], + "release_date": "2021-06-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-mission-pack-064.json b/data/game/ti/tiger-tank-59-mission-pack-064.json new file mode 100644 index 000000000000..58e92e4b0da0 --- /dev/null +++ b/data/game/ti/tiger-tank-59-mission-pack-064.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-mission-pack-064", + "name": "Tiger Tank 59 Ⅰ Mission Pack 064", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184953" + ], + "release_date": "2021-06-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-mission-pack-065.json b/data/game/ti/tiger-tank-59-mission-pack-065.json new file mode 100644 index 000000000000..8c84d8287865 --- /dev/null +++ b/data/game/ti/tiger-tank-59-mission-pack-065.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-mission-pack-065", + "name": "Tiger Tank 59 Ⅰ Mission Pack 065", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184955" + ], + "release_date": "2021-06-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-mission-pack-066.json b/data/game/ti/tiger-tank-59-mission-pack-066.json new file mode 100644 index 000000000000..030f31f2f53c --- /dev/null +++ b/data/game/ti/tiger-tank-59-mission-pack-066.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-mission-pack-066", + "name": "Tiger Tank 59 Ⅰ Mission Pack 066", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184957" + ], + "release_date": "2021-06-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-mission-pack-067.json b/data/game/ti/tiger-tank-59-mission-pack-067.json new file mode 100644 index 000000000000..55ab4ffddb78 --- /dev/null +++ b/data/game/ti/tiger-tank-59-mission-pack-067.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-mission-pack-067", + "name": "Tiger Tank 59 Ⅰ Mission Pack 067", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184959" + ], + "release_date": "2021-06-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-mission-pack-068.json b/data/game/ti/tiger-tank-59-mission-pack-068.json new file mode 100644 index 000000000000..854ae9856223 --- /dev/null +++ b/data/game/ti/tiger-tank-59-mission-pack-068.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-mission-pack-068", + "name": "Tiger Tank 59 Ⅰ Mission Pack 068", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184960" + ], + "release_date": "2021-06-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-mission-pack-069.json b/data/game/ti/tiger-tank-59-mission-pack-069.json new file mode 100644 index 000000000000..01c1bcd38a09 --- /dev/null +++ b/data/game/ti/tiger-tank-59-mission-pack-069.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-mission-pack-069", + "name": "Tiger Tank 59 Ⅰ Mission Pack 069", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184961" + ], + "release_date": "2021-06-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-mission-pack-071.json b/data/game/ti/tiger-tank-59-mission-pack-071.json new file mode 100644 index 000000000000..b3647bb05b3e --- /dev/null +++ b/data/game/ti/tiger-tank-59-mission-pack-071.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-mission-pack-071", + "name": "Tiger Tank 59 Ⅰ Mission Pack 071", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184964" + ], + "release_date": "2021-06-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-mission-pack-072.json b/data/game/ti/tiger-tank-59-mission-pack-072.json new file mode 100644 index 000000000000..b56ae87cafbb --- /dev/null +++ b/data/game/ti/tiger-tank-59-mission-pack-072.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-mission-pack-072", + "name": "Tiger Tank 59 Ⅰ Mission Pack 072", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184966" + ], + "release_date": "2021-06-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-mission-pack-073.json b/data/game/ti/tiger-tank-59-mission-pack-073.json new file mode 100644 index 000000000000..52e2eedac49c --- /dev/null +++ b/data/game/ti/tiger-tank-59-mission-pack-073.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-mission-pack-073", + "name": "Tiger Tank 59 Ⅰ Mission Pack 073", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184967" + ], + "release_date": "2021-06-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-mission-pack-074.json b/data/game/ti/tiger-tank-59-mission-pack-074.json new file mode 100644 index 000000000000..b24aeac3485a --- /dev/null +++ b/data/game/ti/tiger-tank-59-mission-pack-074.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-mission-pack-074", + "name": "Tiger Tank 59 Ⅰ Mission Pack 074", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184969" + ], + "release_date": "2021-06-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-mission-pack-075.json b/data/game/ti/tiger-tank-59-mission-pack-075.json new file mode 100644 index 000000000000..efa0cb9fe5e4 --- /dev/null +++ b/data/game/ti/tiger-tank-59-mission-pack-075.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-mission-pack-075", + "name": "Tiger Tank 59 Ⅰ Mission Pack 075", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184971" + ], + "release_date": "2021-06-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-mission-pack-076.json b/data/game/ti/tiger-tank-59-mission-pack-076.json new file mode 100644 index 000000000000..f447c079ce2d --- /dev/null +++ b/data/game/ti/tiger-tank-59-mission-pack-076.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-mission-pack-076", + "name": "Tiger Tank 59 Ⅰ Mission Pack 076", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184973" + ], + "release_date": "2021-06-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-mission-pack-077.json b/data/game/ti/tiger-tank-59-mission-pack-077.json new file mode 100644 index 000000000000..c568933327b1 --- /dev/null +++ b/data/game/ti/tiger-tank-59-mission-pack-077.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-mission-pack-077", + "name": "Tiger Tank 59 Ⅰ Mission Pack 077", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184975" + ], + "release_date": "2021-06-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-mission-pack-078.json b/data/game/ti/tiger-tank-59-mission-pack-078.json new file mode 100644 index 000000000000..281acebe1aa1 --- /dev/null +++ b/data/game/ti/tiger-tank-59-mission-pack-078.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-mission-pack-078", + "name": "Tiger Tank 59 Ⅰ Mission Pack 078", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184979" + ], + "release_date": "2021-06-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-mission-pack-079.json b/data/game/ti/tiger-tank-59-mission-pack-079.json new file mode 100644 index 000000000000..ed8845c55c38 --- /dev/null +++ b/data/game/ti/tiger-tank-59-mission-pack-079.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-mission-pack-079", + "name": "Tiger Tank 59 Ⅰ Mission Pack 079", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184983" + ], + "release_date": "2021-06-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-mission-pack-080.json b/data/game/ti/tiger-tank-59-mission-pack-080.json new file mode 100644 index 000000000000..fb80659a3552 --- /dev/null +++ b/data/game/ti/tiger-tank-59-mission-pack-080.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-mission-pack-080", + "name": "Tiger Tank 59 Ⅰ Mission Pack 080", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184992" + ], + "release_date": "2021-06-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-mission-pack-081.json b/data/game/ti/tiger-tank-59-mission-pack-081.json new file mode 100644 index 000000000000..2541b58f9afa --- /dev/null +++ b/data/game/ti/tiger-tank-59-mission-pack-081.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-mission-pack-081", + "name": "Tiger Tank 59 Ⅰ Mission Pack 081", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185003" + ], + "release_date": "2021-06-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-mission-pack-082.json b/data/game/ti/tiger-tank-59-mission-pack-082.json new file mode 100644 index 000000000000..deb506023e55 --- /dev/null +++ b/data/game/ti/tiger-tank-59-mission-pack-082.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-mission-pack-082", + "name": "Tiger Tank 59 Ⅰ Mission Pack 082", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185010" + ], + "release_date": "2021-06-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-mission-pack-083.json b/data/game/ti/tiger-tank-59-mission-pack-083.json new file mode 100644 index 000000000000..16b1508a1943 --- /dev/null +++ b/data/game/ti/tiger-tank-59-mission-pack-083.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-mission-pack-083", + "name": "Tiger Tank 59 Ⅰ Mission Pack 083", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185015" + ], + "release_date": "2021-06-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-mission-pack-084.json b/data/game/ti/tiger-tank-59-mission-pack-084.json new file mode 100644 index 000000000000..a74a7432c209 --- /dev/null +++ b/data/game/ti/tiger-tank-59-mission-pack-084.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-mission-pack-084", + "name": "Tiger Tank 59 Ⅰ Mission Pack 084", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185020" + ], + "release_date": "2021-06-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-mission-pack-085.json b/data/game/ti/tiger-tank-59-mission-pack-085.json new file mode 100644 index 000000000000..8461105bdaa5 --- /dev/null +++ b/data/game/ti/tiger-tank-59-mission-pack-085.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-mission-pack-085", + "name": "Tiger Tank 59 Ⅰ Mission Pack 085", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185029" + ], + "release_date": "2021-06-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-mission-pack-086.json b/data/game/ti/tiger-tank-59-mission-pack-086.json new file mode 100644 index 000000000000..d75a64e9faf5 --- /dev/null +++ b/data/game/ti/tiger-tank-59-mission-pack-086.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-mission-pack-086", + "name": "Tiger Tank 59 Ⅰ Mission Pack 086", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185030" + ], + "release_date": "2021-06-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-mission-pack-087.json b/data/game/ti/tiger-tank-59-mission-pack-087.json new file mode 100644 index 000000000000..b36c1ba7fabb --- /dev/null +++ b/data/game/ti/tiger-tank-59-mission-pack-087.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-mission-pack-087", + "name": "Tiger Tank 59 Ⅰ Mission Pack 087", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185031" + ], + "release_date": "2021-06-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-mission-pack-088.json b/data/game/ti/tiger-tank-59-mission-pack-088.json new file mode 100644 index 000000000000..d8a11a466fda --- /dev/null +++ b/data/game/ti/tiger-tank-59-mission-pack-088.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-mission-pack-088", + "name": "Tiger Tank 59 Ⅰ Mission Pack 088", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185033" + ], + "release_date": "2021-06-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-mission-pack-090.json b/data/game/ti/tiger-tank-59-mission-pack-090.json new file mode 100644 index 000000000000..17759b248002 --- /dev/null +++ b/data/game/ti/tiger-tank-59-mission-pack-090.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-mission-pack-090", + "name": "Tiger Tank 59 Ⅰ Mission Pack 090", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185034" + ], + "release_date": "2021-06-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-mission-pack-091.json b/data/game/ti/tiger-tank-59-mission-pack-091.json new file mode 100644 index 000000000000..b125f198b551 --- /dev/null +++ b/data/game/ti/tiger-tank-59-mission-pack-091.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-mission-pack-091", + "name": "Tiger Tank 59 Ⅰ Mission Pack 091", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185036" + ], + "release_date": "2021-06-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-mission-pack-092.json b/data/game/ti/tiger-tank-59-mission-pack-092.json new file mode 100644 index 000000000000..3e118dafa2e9 --- /dev/null +++ b/data/game/ti/tiger-tank-59-mission-pack-092.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-mission-pack-092", + "name": "Tiger Tank 59 Ⅰ Mission Pack 092", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185037" + ], + "release_date": "2021-06-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-mission-pack-093.json b/data/game/ti/tiger-tank-59-mission-pack-093.json new file mode 100644 index 000000000000..a8523528113f --- /dev/null +++ b/data/game/ti/tiger-tank-59-mission-pack-093.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-mission-pack-093", + "name": "Tiger Tank 59 Ⅰ Mission Pack 093", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185038" + ], + "release_date": "2021-06-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-mission-pack-094.json b/data/game/ti/tiger-tank-59-mission-pack-094.json new file mode 100644 index 000000000000..412929d28cac --- /dev/null +++ b/data/game/ti/tiger-tank-59-mission-pack-094.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-mission-pack-094", + "name": "Tiger Tank 59 Ⅰ Mission Pack 094", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185039" + ], + "release_date": "2021-06-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-mission-pack-095.json b/data/game/ti/tiger-tank-59-mission-pack-095.json new file mode 100644 index 000000000000..c05d9eedc80d --- /dev/null +++ b/data/game/ti/tiger-tank-59-mission-pack-095.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-mission-pack-095", + "name": "Tiger Tank 59 Ⅰ Mission Pack 095", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185041" + ], + "release_date": "2021-06-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-mission-pack-096.json b/data/game/ti/tiger-tank-59-mission-pack-096.json new file mode 100644 index 000000000000..3b8596264a15 --- /dev/null +++ b/data/game/ti/tiger-tank-59-mission-pack-096.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-mission-pack-096", + "name": "Tiger Tank 59 Ⅰ Mission Pack 096", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185043" + ], + "release_date": "2021-06-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-mission-pack-097.json b/data/game/ti/tiger-tank-59-mission-pack-097.json new file mode 100644 index 000000000000..95139e3b815c --- /dev/null +++ b/data/game/ti/tiger-tank-59-mission-pack-097.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-mission-pack-097", + "name": "Tiger Tank 59 Ⅰ Mission Pack 097", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185045" + ], + "release_date": "2021-06-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-mission-pack-098.json b/data/game/ti/tiger-tank-59-mission-pack-098.json new file mode 100644 index 000000000000..d16dcbf9ede8 --- /dev/null +++ b/data/game/ti/tiger-tank-59-mission-pack-098.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-mission-pack-098", + "name": "Tiger Tank 59 Ⅰ Mission Pack 098", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185046" + ], + "release_date": "2021-06-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-mission-pack-099.json b/data/game/ti/tiger-tank-59-mission-pack-099.json new file mode 100644 index 000000000000..2fcd0579cc76 --- /dev/null +++ b/data/game/ti/tiger-tank-59-mission-pack-099.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-mission-pack-099", + "name": "Tiger Tank 59 Ⅰ Mission Pack 099", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185047" + ], + "release_date": "2021-06-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-mission-pack-100.json b/data/game/ti/tiger-tank-59-mission-pack-100.json new file mode 100644 index 000000000000..cdcf7ebb3b64 --- /dev/null +++ b/data/game/ti/tiger-tank-59-mission-pack-100.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-mission-pack-100", + "name": "Tiger Tank 59 Ⅰ Mission Pack 100", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185048" + ], + "release_date": "2021-06-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-rainstorm-mp001.json b/data/game/ti/tiger-tank-59-rainstorm-mp001.json new file mode 100644 index 000000000000..bc3b5dc85466 --- /dev/null +++ b/data/game/ti/tiger-tank-59-rainstorm-mp001.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-rainstorm-mp001", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP001", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185058" + ], + "release_date": "2021-07-13", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-rainstorm-mp002.json b/data/game/ti/tiger-tank-59-rainstorm-mp002.json new file mode 100644 index 000000000000..9b4703d072dc --- /dev/null +++ b/data/game/ti/tiger-tank-59-rainstorm-mp002.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-rainstorm-mp002", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP002", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185059" + ], + "release_date": "2021-07-13", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-rainstorm-mp003.json b/data/game/ti/tiger-tank-59-rainstorm-mp003.json new file mode 100644 index 000000000000..b6825fd41546 --- /dev/null +++ b/data/game/ti/tiger-tank-59-rainstorm-mp003.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-rainstorm-mp003", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP003", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185060" + ], + "release_date": "2021-07-13", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-rainstorm-mp004.json b/data/game/ti/tiger-tank-59-rainstorm-mp004.json new file mode 100644 index 000000000000..d620697ac48b --- /dev/null +++ b/data/game/ti/tiger-tank-59-rainstorm-mp004.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-rainstorm-mp004", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP004", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185062" + ], + "release_date": "2021-07-13", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-rainstorm-mp005.json b/data/game/ti/tiger-tank-59-rainstorm-mp005.json new file mode 100644 index 000000000000..ff43956c148e --- /dev/null +++ b/data/game/ti/tiger-tank-59-rainstorm-mp005.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-rainstorm-mp005", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP005", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185065" + ], + "release_date": "2021-07-13", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-rainstorm-mp006.json b/data/game/ti/tiger-tank-59-rainstorm-mp006.json new file mode 100644 index 000000000000..d98acd6cb6be --- /dev/null +++ b/data/game/ti/tiger-tank-59-rainstorm-mp006.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-rainstorm-mp006", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP006", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185066" + ], + "release_date": "2021-07-13", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-rainstorm-mp007.json b/data/game/ti/tiger-tank-59-rainstorm-mp007.json new file mode 100644 index 000000000000..a7997172e153 --- /dev/null +++ b/data/game/ti/tiger-tank-59-rainstorm-mp007.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-rainstorm-mp007", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP007", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185074" + ], + "release_date": "2021-07-13", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-rainstorm-mp008.json b/data/game/ti/tiger-tank-59-rainstorm-mp008.json new file mode 100644 index 000000000000..d9e0d78b2c03 --- /dev/null +++ b/data/game/ti/tiger-tank-59-rainstorm-mp008.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-rainstorm-mp008", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP008", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185076" + ], + "release_date": "2021-07-13", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-rainstorm-mp009.json b/data/game/ti/tiger-tank-59-rainstorm-mp009.json new file mode 100644 index 000000000000..bf71135197ff --- /dev/null +++ b/data/game/ti/tiger-tank-59-rainstorm-mp009.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-rainstorm-mp009", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP009", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185077" + ], + "release_date": "2021-07-13", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-rainstorm-mp010.json b/data/game/ti/tiger-tank-59-rainstorm-mp010.json new file mode 100644 index 000000000000..b9b9b0a54864 --- /dev/null +++ b/data/game/ti/tiger-tank-59-rainstorm-mp010.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-rainstorm-mp010", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP010", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185079" + ], + "release_date": "2021-07-13", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-rainstorm-mp011.json b/data/game/ti/tiger-tank-59-rainstorm-mp011.json new file mode 100644 index 000000000000..85ac16d06ea5 --- /dev/null +++ b/data/game/ti/tiger-tank-59-rainstorm-mp011.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-rainstorm-mp011", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP011", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185081" + ], + "release_date": "2021-07-13", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-rainstorm-mp012.json b/data/game/ti/tiger-tank-59-rainstorm-mp012.json new file mode 100644 index 000000000000..186559aedb98 --- /dev/null +++ b/data/game/ti/tiger-tank-59-rainstorm-mp012.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-rainstorm-mp012", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP012", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185082" + ], + "release_date": "2021-07-13", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-rainstorm-mp013.json b/data/game/ti/tiger-tank-59-rainstorm-mp013.json new file mode 100644 index 000000000000..7f0bdb5eb3e5 --- /dev/null +++ b/data/game/ti/tiger-tank-59-rainstorm-mp013.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-rainstorm-mp013", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP013", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185084" + ], + "release_date": "2021-07-13", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-rainstorm-mp014.json b/data/game/ti/tiger-tank-59-rainstorm-mp014.json new file mode 100644 index 000000000000..ed100b4fa989 --- /dev/null +++ b/data/game/ti/tiger-tank-59-rainstorm-mp014.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-rainstorm-mp014", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP014", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185087" + ], + "release_date": "2021-07-13", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-rainstorm-mp015.json b/data/game/ti/tiger-tank-59-rainstorm-mp015.json new file mode 100644 index 000000000000..7c44b8b4326a --- /dev/null +++ b/data/game/ti/tiger-tank-59-rainstorm-mp015.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-rainstorm-mp015", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP015", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185105" + ], + "release_date": "2021-07-13", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-rainstorm-mp016.json b/data/game/ti/tiger-tank-59-rainstorm-mp016.json new file mode 100644 index 000000000000..f52a3bd22cb0 --- /dev/null +++ b/data/game/ti/tiger-tank-59-rainstorm-mp016.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-rainstorm-mp016", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP016", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185106" + ], + "release_date": "2021-07-13", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-rainstorm-mp017.json b/data/game/ti/tiger-tank-59-rainstorm-mp017.json new file mode 100644 index 000000000000..4ed999efd502 --- /dev/null +++ b/data/game/ti/tiger-tank-59-rainstorm-mp017.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-rainstorm-mp017", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP017", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185109" + ], + "release_date": "2021-07-13", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-rainstorm-mp018.json b/data/game/ti/tiger-tank-59-rainstorm-mp018.json new file mode 100644 index 000000000000..b323ecc8480b --- /dev/null +++ b/data/game/ti/tiger-tank-59-rainstorm-mp018.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-rainstorm-mp018", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP018", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185116" + ], + "release_date": "2021-07-13", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-rainstorm-mp019.json b/data/game/ti/tiger-tank-59-rainstorm-mp019.json new file mode 100644 index 000000000000..504f69234314 --- /dev/null +++ b/data/game/ti/tiger-tank-59-rainstorm-mp019.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-rainstorm-mp019", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP019", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185123" + ], + "release_date": "2021-07-13", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-rainstorm-mp020.json b/data/game/ti/tiger-tank-59-rainstorm-mp020.json new file mode 100644 index 000000000000..ed7a0bbd0285 --- /dev/null +++ b/data/game/ti/tiger-tank-59-rainstorm-mp020.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-rainstorm-mp020", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP020", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185124" + ], + "release_date": "2021-07-13", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-rainstorm-mp021.json b/data/game/ti/tiger-tank-59-rainstorm-mp021.json new file mode 100644 index 000000000000..3fe22abbf6db --- /dev/null +++ b/data/game/ti/tiger-tank-59-rainstorm-mp021.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-rainstorm-mp021", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP021", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185125" + ], + "release_date": "2021-07-13", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-rainstorm-mp022.json b/data/game/ti/tiger-tank-59-rainstorm-mp022.json new file mode 100644 index 000000000000..1e5a95a76ccc --- /dev/null +++ b/data/game/ti/tiger-tank-59-rainstorm-mp022.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-rainstorm-mp022", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP022", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185126" + ], + "release_date": "2021-07-13", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-rainstorm-mp023.json b/data/game/ti/tiger-tank-59-rainstorm-mp023.json new file mode 100644 index 000000000000..233ed97d27bb --- /dev/null +++ b/data/game/ti/tiger-tank-59-rainstorm-mp023.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-rainstorm-mp023", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP023", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185127" + ], + "release_date": "2021-07-13", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-rainstorm-mp024.json b/data/game/ti/tiger-tank-59-rainstorm-mp024.json new file mode 100644 index 000000000000..4d8de2031afd --- /dev/null +++ b/data/game/ti/tiger-tank-59-rainstorm-mp024.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-rainstorm-mp024", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP024", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185129" + ], + "release_date": "2021-07-13", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-rainstorm-mp025.json b/data/game/ti/tiger-tank-59-rainstorm-mp025.json new file mode 100644 index 000000000000..022481120f9a --- /dev/null +++ b/data/game/ti/tiger-tank-59-rainstorm-mp025.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-rainstorm-mp025", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP025", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185130" + ], + "release_date": "2021-07-13", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-rainstorm-mp026.json b/data/game/ti/tiger-tank-59-rainstorm-mp026.json new file mode 100644 index 000000000000..20b16a0c645e --- /dev/null +++ b/data/game/ti/tiger-tank-59-rainstorm-mp026.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-rainstorm-mp026", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP026", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185131" + ], + "release_date": "2021-07-13", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-rainstorm-mp027.json b/data/game/ti/tiger-tank-59-rainstorm-mp027.json new file mode 100644 index 000000000000..9a5797d62114 --- /dev/null +++ b/data/game/ti/tiger-tank-59-rainstorm-mp027.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-rainstorm-mp027", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP027", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185133" + ], + "release_date": "2021-07-13", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-rainstorm-mp028.json b/data/game/ti/tiger-tank-59-rainstorm-mp028.json new file mode 100644 index 000000000000..44ae2700b263 --- /dev/null +++ b/data/game/ti/tiger-tank-59-rainstorm-mp028.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-rainstorm-mp028", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP028", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185134" + ], + "release_date": "2021-07-13", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-rainstorm-mp029.json b/data/game/ti/tiger-tank-59-rainstorm-mp029.json new file mode 100644 index 000000000000..4128373c1f43 --- /dev/null +++ b/data/game/ti/tiger-tank-59-rainstorm-mp029.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-rainstorm-mp029", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP029", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185135" + ], + "release_date": "2021-07-13", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-rainstorm-mp030.json b/data/game/ti/tiger-tank-59-rainstorm-mp030.json new file mode 100644 index 000000000000..50e09205fe64 --- /dev/null +++ b/data/game/ti/tiger-tank-59-rainstorm-mp030.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-rainstorm-mp030", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP030", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185137" + ], + "release_date": "2021-07-13", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-rainstorm-mp031.json b/data/game/ti/tiger-tank-59-rainstorm-mp031.json new file mode 100644 index 000000000000..8ee43e75aa75 --- /dev/null +++ b/data/game/ti/tiger-tank-59-rainstorm-mp031.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-rainstorm-mp031", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP031", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185140" + ], + "release_date": "2021-07-13", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-rainstorm-mp032.json b/data/game/ti/tiger-tank-59-rainstorm-mp032.json new file mode 100644 index 000000000000..7d8b4f1371e7 --- /dev/null +++ b/data/game/ti/tiger-tank-59-rainstorm-mp032.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-rainstorm-mp032", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP032", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185141" + ], + "release_date": "2021-07-13", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-rainstorm-mp033.json b/data/game/ti/tiger-tank-59-rainstorm-mp033.json new file mode 100644 index 000000000000..088372d68c72 --- /dev/null +++ b/data/game/ti/tiger-tank-59-rainstorm-mp033.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-rainstorm-mp033", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP033", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185143" + ], + "release_date": "2021-07-13", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-rainstorm-mp034.json b/data/game/ti/tiger-tank-59-rainstorm-mp034.json new file mode 100644 index 000000000000..daf648ff111a --- /dev/null +++ b/data/game/ti/tiger-tank-59-rainstorm-mp034.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-rainstorm-mp034", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP034", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185144" + ], + "release_date": "2021-07-13", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-rainstorm-mp035.json b/data/game/ti/tiger-tank-59-rainstorm-mp035.json new file mode 100644 index 000000000000..78605e0c6b62 --- /dev/null +++ b/data/game/ti/tiger-tank-59-rainstorm-mp035.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-rainstorm-mp035", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP035", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185145" + ], + "release_date": "2021-07-13", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-rainstorm-mp036.json b/data/game/ti/tiger-tank-59-rainstorm-mp036.json new file mode 100644 index 000000000000..794cd9a47eec --- /dev/null +++ b/data/game/ti/tiger-tank-59-rainstorm-mp036.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-rainstorm-mp036", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP036", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185147" + ], + "release_date": "2021-07-13", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-rainstorm-mp037.json b/data/game/ti/tiger-tank-59-rainstorm-mp037.json new file mode 100644 index 000000000000..73f94bff6c93 --- /dev/null +++ b/data/game/ti/tiger-tank-59-rainstorm-mp037.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-rainstorm-mp037", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP037", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185148" + ], + "release_date": "2021-07-13", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-rainstorm-mp038.json b/data/game/ti/tiger-tank-59-rainstorm-mp038.json new file mode 100644 index 000000000000..fa750e7b68fa --- /dev/null +++ b/data/game/ti/tiger-tank-59-rainstorm-mp038.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-rainstorm-mp038", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP038", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185150" + ], + "release_date": "2021-07-13", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-rainstorm-mp039.json b/data/game/ti/tiger-tank-59-rainstorm-mp039.json new file mode 100644 index 000000000000..0affae9d20e6 --- /dev/null +++ b/data/game/ti/tiger-tank-59-rainstorm-mp039.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-rainstorm-mp039", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP039", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185151" + ], + "release_date": "2021-07-13", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-rainstorm-mp040.json b/data/game/ti/tiger-tank-59-rainstorm-mp040.json new file mode 100644 index 000000000000..0bb2171b79b2 --- /dev/null +++ b/data/game/ti/tiger-tank-59-rainstorm-mp040.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-rainstorm-mp040", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP040", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185152" + ], + "release_date": "2021-07-13", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-rainstorm-mp041.json b/data/game/ti/tiger-tank-59-rainstorm-mp041.json new file mode 100644 index 000000000000..41c4877b7640 --- /dev/null +++ b/data/game/ti/tiger-tank-59-rainstorm-mp041.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-rainstorm-mp041", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP041", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185153" + ], + "release_date": "2021-07-13", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-rainstorm-mp042.json b/data/game/ti/tiger-tank-59-rainstorm-mp042.json new file mode 100644 index 000000000000..c8d5bbb09960 --- /dev/null +++ b/data/game/ti/tiger-tank-59-rainstorm-mp042.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-rainstorm-mp042", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP042", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185155" + ], + "release_date": "2021-07-13", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-rainstorm-mp043.json b/data/game/ti/tiger-tank-59-rainstorm-mp043.json new file mode 100644 index 000000000000..c926a1a18d21 --- /dev/null +++ b/data/game/ti/tiger-tank-59-rainstorm-mp043.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-rainstorm-mp043", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP043", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185159" + ], + "release_date": "2021-07-13", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-rainstorm-mp044.json b/data/game/ti/tiger-tank-59-rainstorm-mp044.json new file mode 100644 index 000000000000..3e397921c868 --- /dev/null +++ b/data/game/ti/tiger-tank-59-rainstorm-mp044.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-rainstorm-mp044", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP044", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185162" + ], + "release_date": "2021-07-13", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-rainstorm-mp045.json b/data/game/ti/tiger-tank-59-rainstorm-mp045.json new file mode 100644 index 000000000000..4527eff66c22 --- /dev/null +++ b/data/game/ti/tiger-tank-59-rainstorm-mp045.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-rainstorm-mp045", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP045", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185164" + ], + "release_date": "2021-07-13", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-rainstorm-mp046.json b/data/game/ti/tiger-tank-59-rainstorm-mp046.json new file mode 100644 index 000000000000..b9b43a7fccaf --- /dev/null +++ b/data/game/ti/tiger-tank-59-rainstorm-mp046.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-rainstorm-mp046", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP046", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185166" + ], + "release_date": "2021-07-13", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-rainstorm-mp047.json b/data/game/ti/tiger-tank-59-rainstorm-mp047.json new file mode 100644 index 000000000000..9d1ef7503853 --- /dev/null +++ b/data/game/ti/tiger-tank-59-rainstorm-mp047.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-rainstorm-mp047", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP047", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185168" + ], + "release_date": "2021-07-13", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-rainstorm-mp048.json b/data/game/ti/tiger-tank-59-rainstorm-mp048.json new file mode 100644 index 000000000000..dc5910933712 --- /dev/null +++ b/data/game/ti/tiger-tank-59-rainstorm-mp048.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-rainstorm-mp048", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP048", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185170" + ], + "release_date": "2021-07-13", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-rainstorm-mp049.json b/data/game/ti/tiger-tank-59-rainstorm-mp049.json new file mode 100644 index 000000000000..db05b7b99004 --- /dev/null +++ b/data/game/ti/tiger-tank-59-rainstorm-mp049.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-rainstorm-mp049", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP049", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185171" + ], + "release_date": "2021-07-13", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-rainstorm-mp050.json b/data/game/ti/tiger-tank-59-rainstorm-mp050.json new file mode 100644 index 000000000000..7808866999a3 --- /dev/null +++ b/data/game/ti/tiger-tank-59-rainstorm-mp050.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-rainstorm-mp050", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP050", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185172" + ], + "release_date": "2021-07-13", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-rainstorm-mp051.json b/data/game/ti/tiger-tank-59-rainstorm-mp051.json new file mode 100644 index 000000000000..aa6d6c00ce5b --- /dev/null +++ b/data/game/ti/tiger-tank-59-rainstorm-mp051.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-rainstorm-mp051", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP051", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185173" + ], + "release_date": "2021-07-13", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-rainstorm-mp052.json b/data/game/ti/tiger-tank-59-rainstorm-mp052.json new file mode 100644 index 000000000000..29ff4a3bc9b9 --- /dev/null +++ b/data/game/ti/tiger-tank-59-rainstorm-mp052.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-rainstorm-mp052", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP052", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185174" + ], + "release_date": "2021-07-13", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-rainstorm-mp053.json b/data/game/ti/tiger-tank-59-rainstorm-mp053.json new file mode 100644 index 000000000000..d59fa5980bb7 --- /dev/null +++ b/data/game/ti/tiger-tank-59-rainstorm-mp053.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-rainstorm-mp053", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP053", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185175" + ], + "release_date": "2021-07-13", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-rainstorm-mp054.json b/data/game/ti/tiger-tank-59-rainstorm-mp054.json new file mode 100644 index 000000000000..3506ebd7f0d3 --- /dev/null +++ b/data/game/ti/tiger-tank-59-rainstorm-mp054.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-rainstorm-mp054", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP054", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185177" + ], + "release_date": "2021-07-13", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-rainstorm-mp055.json b/data/game/ti/tiger-tank-59-rainstorm-mp055.json new file mode 100644 index 000000000000..2cef18d221bf --- /dev/null +++ b/data/game/ti/tiger-tank-59-rainstorm-mp055.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-rainstorm-mp055", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP055", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185178" + ], + "release_date": "2021-07-13", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-rainstorm-mp056.json b/data/game/ti/tiger-tank-59-rainstorm-mp056.json new file mode 100644 index 000000000000..4a770d3b1345 --- /dev/null +++ b/data/game/ti/tiger-tank-59-rainstorm-mp056.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-rainstorm-mp056", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP056", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185179" + ], + "release_date": "2021-07-13", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-rainstorm-mp057.json b/data/game/ti/tiger-tank-59-rainstorm-mp057.json new file mode 100644 index 000000000000..28919f91d095 --- /dev/null +++ b/data/game/ti/tiger-tank-59-rainstorm-mp057.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-rainstorm-mp057", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP057", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185180" + ], + "release_date": "2021-07-13", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-rainstorm-mp058.json b/data/game/ti/tiger-tank-59-rainstorm-mp058.json new file mode 100644 index 000000000000..a1b0d602b30b --- /dev/null +++ b/data/game/ti/tiger-tank-59-rainstorm-mp058.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-rainstorm-mp058", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP058", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185181" + ], + "release_date": "2021-07-13", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-rainstorm-mp059.json b/data/game/ti/tiger-tank-59-rainstorm-mp059.json new file mode 100644 index 000000000000..5210b157b2cd --- /dev/null +++ b/data/game/ti/tiger-tank-59-rainstorm-mp059.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-rainstorm-mp059", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP059", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185183" + ], + "release_date": "2021-07-13", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-rainstorm-mp060.json b/data/game/ti/tiger-tank-59-rainstorm-mp060.json new file mode 100644 index 000000000000..ebec95f1c9fd --- /dev/null +++ b/data/game/ti/tiger-tank-59-rainstorm-mp060.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-rainstorm-mp060", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP060", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185185" + ], + "release_date": "2021-07-13", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-rainstorm-mp061.json b/data/game/ti/tiger-tank-59-rainstorm-mp061.json new file mode 100644 index 000000000000..e118d83b88c2 --- /dev/null +++ b/data/game/ti/tiger-tank-59-rainstorm-mp061.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-rainstorm-mp061", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP061", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185188" + ], + "release_date": "2021-07-13", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-rainstorm-mp062.json b/data/game/ti/tiger-tank-59-rainstorm-mp062.json new file mode 100644 index 000000000000..52ecf706975c --- /dev/null +++ b/data/game/ti/tiger-tank-59-rainstorm-mp062.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-rainstorm-mp062", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP062", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185190" + ], + "release_date": "2021-07-13", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-rainstorm-mp063.json b/data/game/ti/tiger-tank-59-rainstorm-mp063.json new file mode 100644 index 000000000000..2b9d6ab8d061 --- /dev/null +++ b/data/game/ti/tiger-tank-59-rainstorm-mp063.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-rainstorm-mp063", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP063", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185191" + ], + "release_date": "2021-07-13", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-rainstorm-mp064.json b/data/game/ti/tiger-tank-59-rainstorm-mp064.json new file mode 100644 index 000000000000..12a1921d7d39 --- /dev/null +++ b/data/game/ti/tiger-tank-59-rainstorm-mp064.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-rainstorm-mp064", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP064", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185193" + ], + "release_date": "2021-07-13", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-rainstorm-mp065.json b/data/game/ti/tiger-tank-59-rainstorm-mp065.json new file mode 100644 index 000000000000..7a587559fa9e --- /dev/null +++ b/data/game/ti/tiger-tank-59-rainstorm-mp065.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-rainstorm-mp065", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP065", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185194" + ], + "release_date": "2021-07-13", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-rainstorm-mp066.json b/data/game/ti/tiger-tank-59-rainstorm-mp066.json new file mode 100644 index 000000000000..35b9f7752a25 --- /dev/null +++ b/data/game/ti/tiger-tank-59-rainstorm-mp066.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-rainstorm-mp066", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP066", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185198" + ], + "release_date": "2021-07-13", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-rainstorm-mp067.json b/data/game/ti/tiger-tank-59-rainstorm-mp067.json new file mode 100644 index 000000000000..62a1686988e7 --- /dev/null +++ b/data/game/ti/tiger-tank-59-rainstorm-mp067.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-rainstorm-mp067", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP067", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185199" + ], + "release_date": "2021-07-13", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-rainstorm-mp068.json b/data/game/ti/tiger-tank-59-rainstorm-mp068.json new file mode 100644 index 000000000000..9c56e7c9b082 --- /dev/null +++ b/data/game/ti/tiger-tank-59-rainstorm-mp068.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-rainstorm-mp068", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP068", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185201" + ], + "release_date": "2021-07-13", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-rainstorm-mp069.json b/data/game/ti/tiger-tank-59-rainstorm-mp069.json new file mode 100644 index 000000000000..3100012f2489 --- /dev/null +++ b/data/game/ti/tiger-tank-59-rainstorm-mp069.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-rainstorm-mp069", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP069", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185202" + ], + "release_date": "2021-07-13", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-rainstorm-mp070.json b/data/game/ti/tiger-tank-59-rainstorm-mp070.json new file mode 100644 index 000000000000..43996eaab204 --- /dev/null +++ b/data/game/ti/tiger-tank-59-rainstorm-mp070.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-rainstorm-mp070", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP070", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185203" + ], + "release_date": "2021-07-13", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-rainstorm-mp071.json b/data/game/ti/tiger-tank-59-rainstorm-mp071.json new file mode 100644 index 000000000000..9d47ec3f2f94 --- /dev/null +++ b/data/game/ti/tiger-tank-59-rainstorm-mp071.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-rainstorm-mp071", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP071", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185206" + ], + "release_date": "2021-07-13", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-rainstorm-mp072.json b/data/game/ti/tiger-tank-59-rainstorm-mp072.json new file mode 100644 index 000000000000..eaf7988abf2e --- /dev/null +++ b/data/game/ti/tiger-tank-59-rainstorm-mp072.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-rainstorm-mp072", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP072", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185208" + ], + "release_date": "2021-07-13", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-rainstorm-mp073.json b/data/game/ti/tiger-tank-59-rainstorm-mp073.json new file mode 100644 index 000000000000..079fabd6f0b5 --- /dev/null +++ b/data/game/ti/tiger-tank-59-rainstorm-mp073.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-rainstorm-mp073", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP073", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185210" + ], + "release_date": "2021-07-13", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-rainstorm-mp074.json b/data/game/ti/tiger-tank-59-rainstorm-mp074.json new file mode 100644 index 000000000000..0b91dc011ef7 --- /dev/null +++ b/data/game/ti/tiger-tank-59-rainstorm-mp074.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-rainstorm-mp074", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP074", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185211" + ], + "release_date": "2021-07-13", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-rainstorm-mp075.json b/data/game/ti/tiger-tank-59-rainstorm-mp075.json new file mode 100644 index 000000000000..f9fd5b56d75e --- /dev/null +++ b/data/game/ti/tiger-tank-59-rainstorm-mp075.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-rainstorm-mp075", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP075", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185214" + ], + "release_date": "2021-07-13", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-rainstorm-mp076.json b/data/game/ti/tiger-tank-59-rainstorm-mp076.json new file mode 100644 index 000000000000..2228a5900dfb --- /dev/null +++ b/data/game/ti/tiger-tank-59-rainstorm-mp076.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-rainstorm-mp076", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP076", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185215" + ], + "release_date": "2021-07-13", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-rainstorm-mp077.json b/data/game/ti/tiger-tank-59-rainstorm-mp077.json new file mode 100644 index 000000000000..19b576621ac1 --- /dev/null +++ b/data/game/ti/tiger-tank-59-rainstorm-mp077.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-rainstorm-mp077", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP077", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185217" + ], + "release_date": "2021-07-13", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-rainstorm-mp078.json b/data/game/ti/tiger-tank-59-rainstorm-mp078.json new file mode 100644 index 000000000000..290606246214 --- /dev/null +++ b/data/game/ti/tiger-tank-59-rainstorm-mp078.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-rainstorm-mp078", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP078", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185222" + ], + "release_date": "2021-07-13", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-rainstorm-mp079.json b/data/game/ti/tiger-tank-59-rainstorm-mp079.json new file mode 100644 index 000000000000..ffc38a196987 --- /dev/null +++ b/data/game/ti/tiger-tank-59-rainstorm-mp079.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-rainstorm-mp079", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP079", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185225" + ], + "release_date": "2021-07-13", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-rainstorm-mp080.json b/data/game/ti/tiger-tank-59-rainstorm-mp080.json new file mode 100644 index 000000000000..62f7a3f76cc7 --- /dev/null +++ b/data/game/ti/tiger-tank-59-rainstorm-mp080.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-rainstorm-mp080", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP080", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185226" + ], + "release_date": "2021-07-13", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-rainstorm-mp081.json b/data/game/ti/tiger-tank-59-rainstorm-mp081.json new file mode 100644 index 000000000000..4c8edda2a6b2 --- /dev/null +++ b/data/game/ti/tiger-tank-59-rainstorm-mp081.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-rainstorm-mp081", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP081", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185228" + ], + "release_date": "2021-07-13", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-rainstorm-mp082.json b/data/game/ti/tiger-tank-59-rainstorm-mp082.json new file mode 100644 index 000000000000..e27afb6f4bf8 --- /dev/null +++ b/data/game/ti/tiger-tank-59-rainstorm-mp082.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-rainstorm-mp082", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP082", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185230" + ], + "release_date": "2021-07-13", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-rainstorm-mp083.json b/data/game/ti/tiger-tank-59-rainstorm-mp083.json new file mode 100644 index 000000000000..f8c1198d3539 --- /dev/null +++ b/data/game/ti/tiger-tank-59-rainstorm-mp083.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-rainstorm-mp083", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP083", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185231" + ], + "release_date": "2021-07-13", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-rainstorm-mp084.json b/data/game/ti/tiger-tank-59-rainstorm-mp084.json new file mode 100644 index 000000000000..52fb815da9cd --- /dev/null +++ b/data/game/ti/tiger-tank-59-rainstorm-mp084.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-rainstorm-mp084", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP084", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185232" + ], + "release_date": "2021-07-13", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-rainstorm-mp085.json b/data/game/ti/tiger-tank-59-rainstorm-mp085.json new file mode 100644 index 000000000000..5816bad60408 --- /dev/null +++ b/data/game/ti/tiger-tank-59-rainstorm-mp085.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-rainstorm-mp085", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP085", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185233" + ], + "release_date": "2021-07-13", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-rainstorm-mp086.json b/data/game/ti/tiger-tank-59-rainstorm-mp086.json new file mode 100644 index 000000000000..0555470b0288 --- /dev/null +++ b/data/game/ti/tiger-tank-59-rainstorm-mp086.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-rainstorm-mp086", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP086", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185234" + ], + "release_date": "2021-07-13", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-rainstorm-mp087.json b/data/game/ti/tiger-tank-59-rainstorm-mp087.json new file mode 100644 index 000000000000..cb4d2cf47ad9 --- /dev/null +++ b/data/game/ti/tiger-tank-59-rainstorm-mp087.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-rainstorm-mp087", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP087", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185235" + ], + "release_date": "2021-07-13", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-rainstorm-mp088.json b/data/game/ti/tiger-tank-59-rainstorm-mp088.json new file mode 100644 index 000000000000..74f201f33342 --- /dev/null +++ b/data/game/ti/tiger-tank-59-rainstorm-mp088.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-rainstorm-mp088", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP088", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185236" + ], + "release_date": "2021-07-13", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-rainstorm-mp089.json b/data/game/ti/tiger-tank-59-rainstorm-mp089.json new file mode 100644 index 000000000000..78510a555579 --- /dev/null +++ b/data/game/ti/tiger-tank-59-rainstorm-mp089.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-rainstorm-mp089", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP089", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185237" + ], + "release_date": "2021-07-13", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-rainstorm-mp090.json b/data/game/ti/tiger-tank-59-rainstorm-mp090.json new file mode 100644 index 000000000000..e656b70e480f --- /dev/null +++ b/data/game/ti/tiger-tank-59-rainstorm-mp090.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-rainstorm-mp090", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP090", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185239" + ], + "release_date": "2021-07-13", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-rainstorm-mp091.json b/data/game/ti/tiger-tank-59-rainstorm-mp091.json new file mode 100644 index 000000000000..d83628bb7775 --- /dev/null +++ b/data/game/ti/tiger-tank-59-rainstorm-mp091.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-rainstorm-mp091", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP091", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185241" + ], + "release_date": "2021-07-13", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-rainstorm-mp092.json b/data/game/ti/tiger-tank-59-rainstorm-mp092.json new file mode 100644 index 000000000000..426ebd1b9d77 --- /dev/null +++ b/data/game/ti/tiger-tank-59-rainstorm-mp092.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-rainstorm-mp092", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP092", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185243" + ], + "release_date": "2021-07-13", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-rainstorm-mp093.json b/data/game/ti/tiger-tank-59-rainstorm-mp093.json new file mode 100644 index 000000000000..dae19e5ab164 --- /dev/null +++ b/data/game/ti/tiger-tank-59-rainstorm-mp093.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-rainstorm-mp093", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP093", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185244" + ], + "release_date": "2021-07-13", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-rainstorm-mp094.json b/data/game/ti/tiger-tank-59-rainstorm-mp094.json new file mode 100644 index 000000000000..1f01c3555b93 --- /dev/null +++ b/data/game/ti/tiger-tank-59-rainstorm-mp094.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-rainstorm-mp094", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP094", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185248" + ], + "release_date": "2021-07-13", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-rainstorm-mp095.json b/data/game/ti/tiger-tank-59-rainstorm-mp095.json new file mode 100644 index 000000000000..74f8d6c8c04d --- /dev/null +++ b/data/game/ti/tiger-tank-59-rainstorm-mp095.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-rainstorm-mp095", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP095", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185250" + ], + "release_date": "2021-07-13", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-rainstorm-mp096.json b/data/game/ti/tiger-tank-59-rainstorm-mp096.json new file mode 100644 index 000000000000..986ef07f2c7d --- /dev/null +++ b/data/game/ti/tiger-tank-59-rainstorm-mp096.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-rainstorm-mp096", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP096", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185251" + ], + "release_date": "2021-07-13", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-rainstorm-mp097.json b/data/game/ti/tiger-tank-59-rainstorm-mp097.json new file mode 100644 index 000000000000..b6808ff3f460 --- /dev/null +++ b/data/game/ti/tiger-tank-59-rainstorm-mp097.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-rainstorm-mp097", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP097", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185252" + ], + "release_date": "2021-07-13", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-rainstorm-mp098.json b/data/game/ti/tiger-tank-59-rainstorm-mp098.json new file mode 100644 index 000000000000..6356904b0acc --- /dev/null +++ b/data/game/ti/tiger-tank-59-rainstorm-mp098.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-rainstorm-mp098", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP098", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185254" + ], + "release_date": "2021-07-13", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-rainstorm-mp099.json b/data/game/ti/tiger-tank-59-rainstorm-mp099.json new file mode 100644 index 000000000000..0ed0b6347508 --- /dev/null +++ b/data/game/ti/tiger-tank-59-rainstorm-mp099.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-rainstorm-mp099", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP099", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185257" + ], + "release_date": "2021-07-13", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-rainstorm-mp100.json b/data/game/ti/tiger-tank-59-rainstorm-mp100.json new file mode 100644 index 000000000000..661b40509254 --- /dev/null +++ b/data/game/ti/tiger-tank-59-rainstorm-mp100.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-rainstorm-mp100", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP100", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185258" + ], + "release_date": "2021-07-13", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-super-tank-mp001.json b/data/game/ti/tiger-tank-59-super-tank-mp001.json new file mode 100644 index 000000000000..15b796ec0376 --- /dev/null +++ b/data/game/ti/tiger-tank-59-super-tank-mp001.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-super-tank-mp001", + "name": "Tiger Tank 59 Ⅰ Super Tank MP001", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185261" + ], + "release_date": "2021-07-18", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-super-tank-mp002.json b/data/game/ti/tiger-tank-59-super-tank-mp002.json new file mode 100644 index 000000000000..b687ce705ffa --- /dev/null +++ b/data/game/ti/tiger-tank-59-super-tank-mp002.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-super-tank-mp002", + "name": "Tiger Tank 59 Ⅰ Super Tank MP002", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185262" + ], + "release_date": "2021-07-18", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-super-tank-mp003.json b/data/game/ti/tiger-tank-59-super-tank-mp003.json new file mode 100644 index 000000000000..851b105ea889 --- /dev/null +++ b/data/game/ti/tiger-tank-59-super-tank-mp003.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-super-tank-mp003", + "name": "Tiger Tank 59 Ⅰ Super Tank MP003", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185264" + ], + "release_date": "2021-07-18", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-super-tank-mp004.json b/data/game/ti/tiger-tank-59-super-tank-mp004.json new file mode 100644 index 000000000000..6e943f237cb1 --- /dev/null +++ b/data/game/ti/tiger-tank-59-super-tank-mp004.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-super-tank-mp004", + "name": "Tiger Tank 59 Ⅰ Super Tank MP004", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185265" + ], + "release_date": "2021-07-18", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-super-tank-mp005.json b/data/game/ti/tiger-tank-59-super-tank-mp005.json new file mode 100644 index 000000000000..7a3954dea93c --- /dev/null +++ b/data/game/ti/tiger-tank-59-super-tank-mp005.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-super-tank-mp005", + "name": "Tiger Tank 59 Ⅰ Super Tank MP005", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185266" + ], + "release_date": "2021-07-18", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-super-tank-mp006.json b/data/game/ti/tiger-tank-59-super-tank-mp006.json new file mode 100644 index 000000000000..1405cd93f7ce --- /dev/null +++ b/data/game/ti/tiger-tank-59-super-tank-mp006.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-super-tank-mp006", + "name": "Tiger Tank 59 Ⅰ Super Tank MP006", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185268" + ], + "release_date": "2021-07-18", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-super-tank-mp007.json b/data/game/ti/tiger-tank-59-super-tank-mp007.json new file mode 100644 index 000000000000..61c644d97389 --- /dev/null +++ b/data/game/ti/tiger-tank-59-super-tank-mp007.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-super-tank-mp007", + "name": "Tiger Tank 59 Ⅰ Super Tank MP007", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185271" + ], + "release_date": "2021-07-18", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-super-tank-mp008.json b/data/game/ti/tiger-tank-59-super-tank-mp008.json new file mode 100644 index 000000000000..1c0f2551b473 --- /dev/null +++ b/data/game/ti/tiger-tank-59-super-tank-mp008.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-super-tank-mp008", + "name": "Tiger Tank 59 Ⅰ Super Tank MP008", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185272" + ], + "release_date": "2021-07-18", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-super-tank-mp009.json b/data/game/ti/tiger-tank-59-super-tank-mp009.json new file mode 100644 index 000000000000..ca21773cfce3 --- /dev/null +++ b/data/game/ti/tiger-tank-59-super-tank-mp009.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-super-tank-mp009", + "name": "Tiger Tank 59 Ⅰ Super Tank MP009", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185274" + ], + "release_date": "2021-07-18", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-super-tank-mp010.json b/data/game/ti/tiger-tank-59-super-tank-mp010.json new file mode 100644 index 000000000000..1ce8d442191a --- /dev/null +++ b/data/game/ti/tiger-tank-59-super-tank-mp010.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-super-tank-mp010", + "name": "Tiger Tank 59 Ⅰ Super Tank MP010", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185275" + ], + "release_date": "2021-07-18", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-super-tank-mp011.json b/data/game/ti/tiger-tank-59-super-tank-mp011.json new file mode 100644 index 000000000000..29e917a9d15d --- /dev/null +++ b/data/game/ti/tiger-tank-59-super-tank-mp011.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-super-tank-mp011", + "name": "Tiger Tank 59 Ⅰ Super Tank MP011", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185277" + ], + "release_date": "2021-07-18", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-super-tank-mp012.json b/data/game/ti/tiger-tank-59-super-tank-mp012.json new file mode 100644 index 000000000000..9c04430e7fd7 --- /dev/null +++ b/data/game/ti/tiger-tank-59-super-tank-mp012.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-super-tank-mp012", + "name": "Tiger Tank 59 Ⅰ Super Tank MP012", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185278" + ], + "release_date": "2021-07-18", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-super-tank-mp013.json b/data/game/ti/tiger-tank-59-super-tank-mp013.json new file mode 100644 index 000000000000..32665b068d08 --- /dev/null +++ b/data/game/ti/tiger-tank-59-super-tank-mp013.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-super-tank-mp013", + "name": "Tiger Tank 59 Ⅰ Super Tank MP013", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185280" + ], + "release_date": "2021-07-18", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-super-tank-mp014.json b/data/game/ti/tiger-tank-59-super-tank-mp014.json new file mode 100644 index 000000000000..650f09db70d6 --- /dev/null +++ b/data/game/ti/tiger-tank-59-super-tank-mp014.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-super-tank-mp014", + "name": "Tiger Tank 59 Ⅰ Super Tank MP014", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185281" + ], + "release_date": "2021-07-18", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-super-tank-mp015.json b/data/game/ti/tiger-tank-59-super-tank-mp015.json new file mode 100644 index 000000000000..6dbadaeb1de2 --- /dev/null +++ b/data/game/ti/tiger-tank-59-super-tank-mp015.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-super-tank-mp015", + "name": "Tiger Tank 59 Ⅰ Super Tank MP015", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185282" + ], + "release_date": "2021-07-18", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-super-tank-mp016.json b/data/game/ti/tiger-tank-59-super-tank-mp016.json new file mode 100644 index 000000000000..af55def39a1b --- /dev/null +++ b/data/game/ti/tiger-tank-59-super-tank-mp016.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-super-tank-mp016", + "name": "Tiger Tank 59 Ⅰ Super Tank MP016", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185284" + ], + "release_date": "2021-07-18", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-super-tank-mp017.json b/data/game/ti/tiger-tank-59-super-tank-mp017.json new file mode 100644 index 000000000000..6b88d37c3db5 --- /dev/null +++ b/data/game/ti/tiger-tank-59-super-tank-mp017.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-super-tank-mp017", + "name": "Tiger Tank 59 Ⅰ Super Tank MP017", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185286" + ], + "release_date": "2021-07-18", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-super-tank-mp018.json b/data/game/ti/tiger-tank-59-super-tank-mp018.json new file mode 100644 index 000000000000..3965cc6648f8 --- /dev/null +++ b/data/game/ti/tiger-tank-59-super-tank-mp018.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-super-tank-mp018", + "name": "Tiger Tank 59 Ⅰ Super Tank MP018", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185287" + ], + "release_date": "2021-07-18", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-super-tank-mp019.json b/data/game/ti/tiger-tank-59-super-tank-mp019.json new file mode 100644 index 000000000000..db62eea82397 --- /dev/null +++ b/data/game/ti/tiger-tank-59-super-tank-mp019.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-super-tank-mp019", + "name": "Tiger Tank 59 Ⅰ Super Tank MP019", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185290" + ], + "release_date": "2021-07-18", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-super-tank-mp020.json b/data/game/ti/tiger-tank-59-super-tank-mp020.json new file mode 100644 index 000000000000..a1aa85d49e82 --- /dev/null +++ b/data/game/ti/tiger-tank-59-super-tank-mp020.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-super-tank-mp020", + "name": "Tiger Tank 59 Ⅰ Super Tank MP020", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185291" + ], + "release_date": "2021-07-18", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-super-tank-mp021.json b/data/game/ti/tiger-tank-59-super-tank-mp021.json new file mode 100644 index 000000000000..b9d9c07f12df --- /dev/null +++ b/data/game/ti/tiger-tank-59-super-tank-mp021.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-super-tank-mp021", + "name": "Tiger Tank 59 Ⅰ Super Tank MP021", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185293" + ], + "release_date": "2021-07-18", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-super-tank-mp022.json b/data/game/ti/tiger-tank-59-super-tank-mp022.json new file mode 100644 index 000000000000..7ad1bac0e283 --- /dev/null +++ b/data/game/ti/tiger-tank-59-super-tank-mp022.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-super-tank-mp022", + "name": "Tiger Tank 59 Ⅰ Super Tank MP022", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185295" + ], + "release_date": "2021-07-18", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-super-tank-mp023.json b/data/game/ti/tiger-tank-59-super-tank-mp023.json new file mode 100644 index 000000000000..dc81fe7e78e4 --- /dev/null +++ b/data/game/ti/tiger-tank-59-super-tank-mp023.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-super-tank-mp023", + "name": "Tiger Tank 59 Ⅰ Super Tank MP023", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185297" + ], + "release_date": "2021-07-18", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-super-tank-mp024.json b/data/game/ti/tiger-tank-59-super-tank-mp024.json new file mode 100644 index 000000000000..52a5d599b9d9 --- /dev/null +++ b/data/game/ti/tiger-tank-59-super-tank-mp024.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-super-tank-mp024", + "name": "Tiger Tank 59 Ⅰ Super Tank MP024", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185298" + ], + "release_date": "2021-07-18", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-super-tank-mp025.json b/data/game/ti/tiger-tank-59-super-tank-mp025.json new file mode 100644 index 000000000000..4bb5200f2403 --- /dev/null +++ b/data/game/ti/tiger-tank-59-super-tank-mp025.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-super-tank-mp025", + "name": "Tiger Tank 59 Ⅰ Super Tank MP025", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185300" + ], + "release_date": "2021-07-18", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-super-tank-mp026.json b/data/game/ti/tiger-tank-59-super-tank-mp026.json new file mode 100644 index 000000000000..66e7e6d2bab8 --- /dev/null +++ b/data/game/ti/tiger-tank-59-super-tank-mp026.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-super-tank-mp026", + "name": "Tiger Tank 59 Ⅰ Super Tank MP026", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185301" + ], + "release_date": "2021-07-18", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-super-tank-mp027.json b/data/game/ti/tiger-tank-59-super-tank-mp027.json new file mode 100644 index 000000000000..5dbd7b94d463 --- /dev/null +++ b/data/game/ti/tiger-tank-59-super-tank-mp027.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-super-tank-mp027", + "name": "Tiger Tank 59 Ⅰ Super Tank MP027", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185303" + ], + "release_date": "2021-07-18", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-super-tank-mp028.json b/data/game/ti/tiger-tank-59-super-tank-mp028.json new file mode 100644 index 000000000000..cc16047fc471 --- /dev/null +++ b/data/game/ti/tiger-tank-59-super-tank-mp028.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-super-tank-mp028", + "name": "Tiger Tank 59 Ⅰ Super Tank MP028", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185304" + ], + "release_date": "2021-07-27", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-super-tank-mp029.json b/data/game/ti/tiger-tank-59-super-tank-mp029.json new file mode 100644 index 000000000000..cfb040b3b5da --- /dev/null +++ b/data/game/ti/tiger-tank-59-super-tank-mp029.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-super-tank-mp029", + "name": "Tiger Tank 59 Ⅰ Super Tank MP029", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185305" + ], + "release_date": "2021-07-18", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-super-tank-mp030.json b/data/game/ti/tiger-tank-59-super-tank-mp030.json new file mode 100644 index 000000000000..31ff1a28b4c2 --- /dev/null +++ b/data/game/ti/tiger-tank-59-super-tank-mp030.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-super-tank-mp030", + "name": "Tiger Tank 59 Ⅰ Super Tank MP030", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185306" + ], + "release_date": "2021-07-18", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-super-tank-mp031.json b/data/game/ti/tiger-tank-59-super-tank-mp031.json new file mode 100644 index 000000000000..be576cc23d1f --- /dev/null +++ b/data/game/ti/tiger-tank-59-super-tank-mp031.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-super-tank-mp031", + "name": "Tiger Tank 59 Ⅰ Super Tank MP031", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185307" + ], + "release_date": "2021-07-18", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-super-tank-mp032.json b/data/game/ti/tiger-tank-59-super-tank-mp032.json new file mode 100644 index 000000000000..687b9df9733a --- /dev/null +++ b/data/game/ti/tiger-tank-59-super-tank-mp032.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-super-tank-mp032", + "name": "Tiger Tank 59 Ⅰ Super Tank MP032", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185308" + ], + "release_date": "2021-07-18", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-super-tank-mp033.json b/data/game/ti/tiger-tank-59-super-tank-mp033.json new file mode 100644 index 000000000000..a6fbbfbfe3cd --- /dev/null +++ b/data/game/ti/tiger-tank-59-super-tank-mp033.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-super-tank-mp033", + "name": "Tiger Tank 59 Ⅰ Super Tank MP033", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185309" + ], + "release_date": "2021-07-18", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-super-tank-mp034.json b/data/game/ti/tiger-tank-59-super-tank-mp034.json new file mode 100644 index 000000000000..880c4989a8ac --- /dev/null +++ b/data/game/ti/tiger-tank-59-super-tank-mp034.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-super-tank-mp034", + "name": "Tiger Tank 59 Ⅰ Super Tank MP034", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185311" + ], + "release_date": "2021-07-18", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-super-tank-mp035.json b/data/game/ti/tiger-tank-59-super-tank-mp035.json new file mode 100644 index 000000000000..835709729fd4 --- /dev/null +++ b/data/game/ti/tiger-tank-59-super-tank-mp035.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-super-tank-mp035", + "name": "Tiger Tank 59 Ⅰ Super Tank MP035", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185312" + ], + "release_date": "2021-07-18", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-super-tank-mp036.json b/data/game/ti/tiger-tank-59-super-tank-mp036.json new file mode 100644 index 000000000000..e4d9f2dfa5a4 --- /dev/null +++ b/data/game/ti/tiger-tank-59-super-tank-mp036.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-super-tank-mp036", + "name": "Tiger Tank 59 Ⅰ Super Tank MP036", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185313" + ], + "release_date": "2021-07-18", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-super-tank-mp037.json b/data/game/ti/tiger-tank-59-super-tank-mp037.json new file mode 100644 index 000000000000..3be4a3c7a4f3 --- /dev/null +++ b/data/game/ti/tiger-tank-59-super-tank-mp037.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-super-tank-mp037", + "name": "Tiger Tank 59 Ⅰ Super Tank MP037", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185315" + ], + "release_date": "2021-07-18", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-super-tank-mp038.json b/data/game/ti/tiger-tank-59-super-tank-mp038.json new file mode 100644 index 000000000000..604012d9d79d --- /dev/null +++ b/data/game/ti/tiger-tank-59-super-tank-mp038.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-super-tank-mp038", + "name": "Tiger Tank 59 Ⅰ Super Tank MP038", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185316" + ], + "release_date": "2021-07-18", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-super-tank-mp039.json b/data/game/ti/tiger-tank-59-super-tank-mp039.json new file mode 100644 index 000000000000..d6156598a19b --- /dev/null +++ b/data/game/ti/tiger-tank-59-super-tank-mp039.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-super-tank-mp039", + "name": "Tiger Tank 59 Ⅰ Super Tank MP039", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185318" + ], + "release_date": "2021-07-18", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-super-tank-mp040.json b/data/game/ti/tiger-tank-59-super-tank-mp040.json new file mode 100644 index 000000000000..4fa2b468d5d9 --- /dev/null +++ b/data/game/ti/tiger-tank-59-super-tank-mp040.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-super-tank-mp040", + "name": "Tiger Tank 59 Ⅰ Super Tank MP040", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185322" + ], + "release_date": "2021-07-18", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-super-tank-mp041.json b/data/game/ti/tiger-tank-59-super-tank-mp041.json new file mode 100644 index 000000000000..2cb77901a75c --- /dev/null +++ b/data/game/ti/tiger-tank-59-super-tank-mp041.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-super-tank-mp041", + "name": "Tiger Tank 59 Ⅰ Super Tank MP041", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185324" + ], + "release_date": "2021-07-18", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-super-tank-mp042.json b/data/game/ti/tiger-tank-59-super-tank-mp042.json new file mode 100644 index 000000000000..84dc13733ddd --- /dev/null +++ b/data/game/ti/tiger-tank-59-super-tank-mp042.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-super-tank-mp042", + "name": "Tiger Tank 59 Ⅰ Super Tank MP042", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185327" + ], + "release_date": "2021-07-18", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-super-tank-mp043.json b/data/game/ti/tiger-tank-59-super-tank-mp043.json new file mode 100644 index 000000000000..83c2960f6817 --- /dev/null +++ b/data/game/ti/tiger-tank-59-super-tank-mp043.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-super-tank-mp043", + "name": "Tiger Tank 59 Ⅰ Super Tank MP043", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185328" + ], + "release_date": "2021-07-18", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-super-tank-mp044.json b/data/game/ti/tiger-tank-59-super-tank-mp044.json new file mode 100644 index 000000000000..12c0613b92ff --- /dev/null +++ b/data/game/ti/tiger-tank-59-super-tank-mp044.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-super-tank-mp044", + "name": "Tiger Tank 59 Ⅰ Super Tank MP044", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185329" + ], + "release_date": "2021-07-18", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-super-tank-mp045.json b/data/game/ti/tiger-tank-59-super-tank-mp045.json new file mode 100644 index 000000000000..251f0681c107 --- /dev/null +++ b/data/game/ti/tiger-tank-59-super-tank-mp045.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-super-tank-mp045", + "name": "Tiger Tank 59 Ⅰ Super Tank MP045", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185331" + ], + "release_date": "2021-07-18", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-super-tank-mp046.json b/data/game/ti/tiger-tank-59-super-tank-mp046.json new file mode 100644 index 000000000000..748358260799 --- /dev/null +++ b/data/game/ti/tiger-tank-59-super-tank-mp046.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-super-tank-mp046", + "name": "Tiger Tank 59 Ⅰ Super Tank MP046", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185334" + ], + "release_date": "2021-07-18", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-super-tank-mp047.json b/data/game/ti/tiger-tank-59-super-tank-mp047.json new file mode 100644 index 000000000000..ec46873d4a04 --- /dev/null +++ b/data/game/ti/tiger-tank-59-super-tank-mp047.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-super-tank-mp047", + "name": "Tiger Tank 59 Ⅰ Super Tank MP047", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185335" + ], + "release_date": "2021-07-18", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-super-tank-mp048.json b/data/game/ti/tiger-tank-59-super-tank-mp048.json new file mode 100644 index 000000000000..cf45a4ed7c29 --- /dev/null +++ b/data/game/ti/tiger-tank-59-super-tank-mp048.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-super-tank-mp048", + "name": "Tiger Tank 59 Ⅰ Super Tank MP048", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185337" + ], + "release_date": "2021-07-18", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-super-tank-mp049.json b/data/game/ti/tiger-tank-59-super-tank-mp049.json new file mode 100644 index 000000000000..ac65fe99ae19 --- /dev/null +++ b/data/game/ti/tiger-tank-59-super-tank-mp049.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-super-tank-mp049", + "name": "Tiger Tank 59 Ⅰ Super Tank MP049", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185340" + ], + "release_date": "2021-07-18", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-super-tank-mp050.json b/data/game/ti/tiger-tank-59-super-tank-mp050.json new file mode 100644 index 000000000000..65d2cec6bbb5 --- /dev/null +++ b/data/game/ti/tiger-tank-59-super-tank-mp050.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-super-tank-mp050", + "name": "Tiger Tank 59 Ⅰ Super Tank MP050", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185341" + ], + "release_date": "2021-07-18", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-super-tank-mp051.json b/data/game/ti/tiger-tank-59-super-tank-mp051.json new file mode 100644 index 000000000000..0cc6ee084aec --- /dev/null +++ b/data/game/ti/tiger-tank-59-super-tank-mp051.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-super-tank-mp051", + "name": "Tiger Tank 59 Ⅰ Super Tank MP051", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185342" + ], + "release_date": "2021-07-18", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-super-tank-mp052.json b/data/game/ti/tiger-tank-59-super-tank-mp052.json new file mode 100644 index 000000000000..da9f812a2913 --- /dev/null +++ b/data/game/ti/tiger-tank-59-super-tank-mp052.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-super-tank-mp052", + "name": "Tiger Tank 59 Ⅰ Super Tank MP052", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185343" + ], + "release_date": "2021-07-18", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-super-tank-mp053.json b/data/game/ti/tiger-tank-59-super-tank-mp053.json new file mode 100644 index 000000000000..e9d27bf58b50 --- /dev/null +++ b/data/game/ti/tiger-tank-59-super-tank-mp053.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-super-tank-mp053", + "name": "Tiger Tank 59 Ⅰ Super Tank MP053", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185344" + ], + "release_date": "2021-07-18", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-super-tank-mp054.json b/data/game/ti/tiger-tank-59-super-tank-mp054.json new file mode 100644 index 000000000000..d9b18e2a5f7b --- /dev/null +++ b/data/game/ti/tiger-tank-59-super-tank-mp054.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-super-tank-mp054", + "name": "Tiger Tank 59 Ⅰ Super Tank MP054", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185345" + ], + "release_date": "2021-07-18", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-super-tank-mp055.json b/data/game/ti/tiger-tank-59-super-tank-mp055.json new file mode 100644 index 000000000000..7674784307fe --- /dev/null +++ b/data/game/ti/tiger-tank-59-super-tank-mp055.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-super-tank-mp055", + "name": "Tiger Tank 59 Ⅰ Super Tank MP055", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185346" + ], + "release_date": "2021-07-18", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-super-tank-mp056.json b/data/game/ti/tiger-tank-59-super-tank-mp056.json new file mode 100644 index 000000000000..a52a8ffec7ca --- /dev/null +++ b/data/game/ti/tiger-tank-59-super-tank-mp056.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-super-tank-mp056", + "name": "Tiger Tank 59 Ⅰ Super Tank MP056", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185349" + ], + "release_date": "2021-07-18", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-super-tank-mp057.json b/data/game/ti/tiger-tank-59-super-tank-mp057.json new file mode 100644 index 000000000000..14cae1bc79e4 --- /dev/null +++ b/data/game/ti/tiger-tank-59-super-tank-mp057.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-super-tank-mp057", + "name": "Tiger Tank 59 Ⅰ Super Tank MP057", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185350" + ], + "release_date": "2021-07-18", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-super-tank-mp058.json b/data/game/ti/tiger-tank-59-super-tank-mp058.json new file mode 100644 index 000000000000..dbf19f296b50 --- /dev/null +++ b/data/game/ti/tiger-tank-59-super-tank-mp058.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-super-tank-mp058", + "name": "Tiger Tank 59 Ⅰ Super Tank MP058", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185352" + ], + "release_date": "2021-07-18", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-super-tank-mp059.json b/data/game/ti/tiger-tank-59-super-tank-mp059.json new file mode 100644 index 000000000000..b5bde913a540 --- /dev/null +++ b/data/game/ti/tiger-tank-59-super-tank-mp059.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-super-tank-mp059", + "name": "Tiger Tank 59 Ⅰ Super Tank MP059", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185353" + ], + "release_date": "2021-07-18", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-super-tank-mp060.json b/data/game/ti/tiger-tank-59-super-tank-mp060.json new file mode 100644 index 000000000000..5eed1f7d5094 --- /dev/null +++ b/data/game/ti/tiger-tank-59-super-tank-mp060.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-super-tank-mp060", + "name": "Tiger Tank 59 Ⅰ Super Tank MP060", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185354" + ], + "release_date": "2021-07-18", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-super-tank-mp061.json b/data/game/ti/tiger-tank-59-super-tank-mp061.json new file mode 100644 index 000000000000..1ea1631fb6eb --- /dev/null +++ b/data/game/ti/tiger-tank-59-super-tank-mp061.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-super-tank-mp061", + "name": "Tiger Tank 59 Ⅰ Super Tank MP061", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185355" + ], + "release_date": "2021-07-18", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-super-tank-mp062.json b/data/game/ti/tiger-tank-59-super-tank-mp062.json new file mode 100644 index 000000000000..f9af34c7f83d --- /dev/null +++ b/data/game/ti/tiger-tank-59-super-tank-mp062.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-super-tank-mp062", + "name": "Tiger Tank 59 Ⅰ Super Tank MP062", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185357" + ], + "release_date": "2021-07-18", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-super-tank-mp063.json b/data/game/ti/tiger-tank-59-super-tank-mp063.json new file mode 100644 index 000000000000..567b8d482a98 --- /dev/null +++ b/data/game/ti/tiger-tank-59-super-tank-mp063.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-super-tank-mp063", + "name": "Tiger Tank 59 Ⅰ Super Tank MP063", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185358" + ], + "release_date": "2021-07-18", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-super-tank-mp064.json b/data/game/ti/tiger-tank-59-super-tank-mp064.json new file mode 100644 index 000000000000..b920bc59010e --- /dev/null +++ b/data/game/ti/tiger-tank-59-super-tank-mp064.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-super-tank-mp064", + "name": "Tiger Tank 59 Ⅰ Super Tank MP064", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185360" + ], + "release_date": "2021-07-18", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-super-tank-mp065.json b/data/game/ti/tiger-tank-59-super-tank-mp065.json new file mode 100644 index 000000000000..627c56ece70c --- /dev/null +++ b/data/game/ti/tiger-tank-59-super-tank-mp065.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-super-tank-mp065", + "name": "Tiger Tank 59 Ⅰ Super Tank MP065", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185362" + ], + "release_date": "2021-07-18", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-super-tank-mp066.json b/data/game/ti/tiger-tank-59-super-tank-mp066.json new file mode 100644 index 000000000000..d2e15396648c --- /dev/null +++ b/data/game/ti/tiger-tank-59-super-tank-mp066.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-super-tank-mp066", + "name": "Tiger Tank 59 Ⅰ Super Tank MP066", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185363" + ], + "release_date": "2021-07-18", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-super-tank-mp067.json b/data/game/ti/tiger-tank-59-super-tank-mp067.json new file mode 100644 index 000000000000..c4f0c5c6de6f --- /dev/null +++ b/data/game/ti/tiger-tank-59-super-tank-mp067.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-super-tank-mp067", + "name": "Tiger Tank 59 Ⅰ Super Tank MP067", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185366" + ], + "release_date": "2021-07-18", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-super-tank-mp068.json b/data/game/ti/tiger-tank-59-super-tank-mp068.json new file mode 100644 index 000000000000..2b0cd3858141 --- /dev/null +++ b/data/game/ti/tiger-tank-59-super-tank-mp068.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-super-tank-mp068", + "name": "Tiger Tank 59 Ⅰ Super Tank MP068", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185369" + ], + "release_date": "2021-07-18", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-super-tank-mp069.json b/data/game/ti/tiger-tank-59-super-tank-mp069.json new file mode 100644 index 000000000000..3c403844e504 --- /dev/null +++ b/data/game/ti/tiger-tank-59-super-tank-mp069.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-super-tank-mp069", + "name": "Tiger Tank 59 Ⅰ Super Tank MP069", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185371" + ], + "release_date": "2021-07-18", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-super-tank-mp070.json b/data/game/ti/tiger-tank-59-super-tank-mp070.json new file mode 100644 index 000000000000..1e818c4ac97b --- /dev/null +++ b/data/game/ti/tiger-tank-59-super-tank-mp070.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-super-tank-mp070", + "name": "Tiger Tank 59 Ⅰ Super Tank MP070", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185372" + ], + "release_date": "2021-07-18", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-super-tank-mp071.json b/data/game/ti/tiger-tank-59-super-tank-mp071.json new file mode 100644 index 000000000000..2840bd661eca --- /dev/null +++ b/data/game/ti/tiger-tank-59-super-tank-mp071.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-super-tank-mp071", + "name": "Tiger Tank 59 Ⅰ Super Tank MP071", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185373" + ], + "release_date": "2021-07-18", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-super-tank-mp072.json b/data/game/ti/tiger-tank-59-super-tank-mp072.json new file mode 100644 index 000000000000..3a4b3dd63b16 --- /dev/null +++ b/data/game/ti/tiger-tank-59-super-tank-mp072.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-super-tank-mp072", + "name": "Tiger Tank 59 Ⅰ Super Tank MP072", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185375" + ], + "release_date": "2021-07-18", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-super-tank-mp073.json b/data/game/ti/tiger-tank-59-super-tank-mp073.json new file mode 100644 index 000000000000..76a09051a0d5 --- /dev/null +++ b/data/game/ti/tiger-tank-59-super-tank-mp073.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-super-tank-mp073", + "name": "Tiger Tank 59 Ⅰ Super Tank MP073", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185376" + ], + "release_date": "2021-07-18", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-super-tank-mp074.json b/data/game/ti/tiger-tank-59-super-tank-mp074.json new file mode 100644 index 000000000000..97e76f18c3d5 --- /dev/null +++ b/data/game/ti/tiger-tank-59-super-tank-mp074.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-super-tank-mp074", + "name": "Tiger Tank 59 Ⅰ Super Tank MP074", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185377" + ], + "release_date": "2021-07-18", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-super-tank-mp075.json b/data/game/ti/tiger-tank-59-super-tank-mp075.json new file mode 100644 index 000000000000..b98930fb2cf7 --- /dev/null +++ b/data/game/ti/tiger-tank-59-super-tank-mp075.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-super-tank-mp075", + "name": "Tiger Tank 59 Ⅰ Super Tank MP075", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185378" + ], + "release_date": "2021-07-18", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-super-tank-mp076.json b/data/game/ti/tiger-tank-59-super-tank-mp076.json new file mode 100644 index 000000000000..9904827a5eb2 --- /dev/null +++ b/data/game/ti/tiger-tank-59-super-tank-mp076.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-super-tank-mp076", + "name": "Tiger Tank 59 Ⅰ Super Tank MP076", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185380" + ], + "release_date": "2021-07-18", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-super-tank-mp077.json b/data/game/ti/tiger-tank-59-super-tank-mp077.json new file mode 100644 index 000000000000..a3314770d391 --- /dev/null +++ b/data/game/ti/tiger-tank-59-super-tank-mp077.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-super-tank-mp077", + "name": "Tiger Tank 59 Ⅰ Super Tank MP077", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185383" + ], + "release_date": "2021-07-18", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-super-tank-mp078.json b/data/game/ti/tiger-tank-59-super-tank-mp078.json new file mode 100644 index 000000000000..7d51622442c4 --- /dev/null +++ b/data/game/ti/tiger-tank-59-super-tank-mp078.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-super-tank-mp078", + "name": "Tiger Tank 59 Ⅰ Super Tank MP078", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185385" + ], + "release_date": "2021-07-18", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-super-tank-mp079.json b/data/game/ti/tiger-tank-59-super-tank-mp079.json new file mode 100644 index 000000000000..92659f5238b0 --- /dev/null +++ b/data/game/ti/tiger-tank-59-super-tank-mp079.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-super-tank-mp079", + "name": "Tiger Tank 59 Ⅰ Super Tank MP079", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185390" + ], + "release_date": "2021-07-18", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-super-tank-mp080.json b/data/game/ti/tiger-tank-59-super-tank-mp080.json new file mode 100644 index 000000000000..3774d05b63bf --- /dev/null +++ b/data/game/ti/tiger-tank-59-super-tank-mp080.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-super-tank-mp080", + "name": "Tiger Tank 59 Ⅰ Super Tank MP080", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185396" + ], + "release_date": "2021-07-18", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-super-tank-mp081.json b/data/game/ti/tiger-tank-59-super-tank-mp081.json new file mode 100644 index 000000000000..f03a053430ed --- /dev/null +++ b/data/game/ti/tiger-tank-59-super-tank-mp081.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-super-tank-mp081", + "name": "Tiger Tank 59 Ⅰ Super Tank MP081", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185397" + ], + "release_date": "2021-07-18", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-super-tank-mp082.json b/data/game/ti/tiger-tank-59-super-tank-mp082.json new file mode 100644 index 000000000000..b471ec2e4676 --- /dev/null +++ b/data/game/ti/tiger-tank-59-super-tank-mp082.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-super-tank-mp082", + "name": "Tiger Tank 59 Ⅰ Super Tank MP082", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185398" + ], + "release_date": "2021-07-18", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-super-tank-mp083.json b/data/game/ti/tiger-tank-59-super-tank-mp083.json new file mode 100644 index 000000000000..4c62e10f9d14 --- /dev/null +++ b/data/game/ti/tiger-tank-59-super-tank-mp083.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-super-tank-mp083", + "name": "Tiger Tank 59 Ⅰ Super Tank MP083", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185400" + ], + "release_date": "2021-07-18", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-super-tank-mp084.json b/data/game/ti/tiger-tank-59-super-tank-mp084.json new file mode 100644 index 000000000000..0cff950bd963 --- /dev/null +++ b/data/game/ti/tiger-tank-59-super-tank-mp084.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-super-tank-mp084", + "name": "Tiger Tank 59 Ⅰ Super Tank MP084", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185402" + ], + "release_date": "2021-07-18", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-super-tank-mp085.json b/data/game/ti/tiger-tank-59-super-tank-mp085.json new file mode 100644 index 000000000000..41a23c6433a1 --- /dev/null +++ b/data/game/ti/tiger-tank-59-super-tank-mp085.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-super-tank-mp085", + "name": "Tiger Tank 59 Ⅰ Super Tank MP085", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185403" + ], + "release_date": "2021-07-18", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-super-tank-mp086.json b/data/game/ti/tiger-tank-59-super-tank-mp086.json new file mode 100644 index 000000000000..71b71993e2eb --- /dev/null +++ b/data/game/ti/tiger-tank-59-super-tank-mp086.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-super-tank-mp086", + "name": "Tiger Tank 59 Ⅰ Super Tank MP086", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185404" + ], + "release_date": "2021-07-18", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-super-tank-mp087.json b/data/game/ti/tiger-tank-59-super-tank-mp087.json new file mode 100644 index 000000000000..76afc84235cf --- /dev/null +++ b/data/game/ti/tiger-tank-59-super-tank-mp087.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-super-tank-mp087", + "name": "Tiger Tank 59 Ⅰ Super Tank MP087", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185405" + ], + "release_date": "2021-07-18", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-super-tank-mp088.json b/data/game/ti/tiger-tank-59-super-tank-mp088.json new file mode 100644 index 000000000000..b7281d739909 --- /dev/null +++ b/data/game/ti/tiger-tank-59-super-tank-mp088.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-super-tank-mp088", + "name": "Tiger Tank 59 Ⅰ Super Tank MP088", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185409" + ], + "release_date": "2021-07-18", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-super-tank-mp089.json b/data/game/ti/tiger-tank-59-super-tank-mp089.json new file mode 100644 index 000000000000..98d29ec13417 --- /dev/null +++ b/data/game/ti/tiger-tank-59-super-tank-mp089.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-super-tank-mp089", + "name": "Tiger Tank 59 Ⅰ Super Tank MP089", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185412" + ], + "release_date": "2021-07-18", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-super-tank-mp090.json b/data/game/ti/tiger-tank-59-super-tank-mp090.json new file mode 100644 index 000000000000..baeab92334f6 --- /dev/null +++ b/data/game/ti/tiger-tank-59-super-tank-mp090.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-super-tank-mp090", + "name": "Tiger Tank 59 Ⅰ Super Tank MP090", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185426" + ], + "release_date": "2021-07-18", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-super-tank-mp091.json b/data/game/ti/tiger-tank-59-super-tank-mp091.json new file mode 100644 index 000000000000..b1ba688e823d --- /dev/null +++ b/data/game/ti/tiger-tank-59-super-tank-mp091.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-super-tank-mp091", + "name": "Tiger Tank 59 Ⅰ Super Tank MP091", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185436" + ], + "release_date": "2021-07-18", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-super-tank-mp092.json b/data/game/ti/tiger-tank-59-super-tank-mp092.json new file mode 100644 index 000000000000..700b8bd1317d --- /dev/null +++ b/data/game/ti/tiger-tank-59-super-tank-mp092.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-super-tank-mp092", + "name": "Tiger Tank 59 Ⅰ Super Tank MP092", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185438" + ], + "release_date": "2021-07-18", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-super-tank-mp093.json b/data/game/ti/tiger-tank-59-super-tank-mp093.json new file mode 100644 index 000000000000..78061b3cf80f --- /dev/null +++ b/data/game/ti/tiger-tank-59-super-tank-mp093.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-super-tank-mp093", + "name": "Tiger Tank 59 Ⅰ Super Tank MP093", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185439" + ], + "release_date": "2021-07-18", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-super-tank-mp094.json b/data/game/ti/tiger-tank-59-super-tank-mp094.json new file mode 100644 index 000000000000..2027bd9f1da5 --- /dev/null +++ b/data/game/ti/tiger-tank-59-super-tank-mp094.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-super-tank-mp094", + "name": "Tiger Tank 59 Ⅰ Super Tank MP094", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185441" + ], + "release_date": "2021-07-18", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-super-tank-mp095.json b/data/game/ti/tiger-tank-59-super-tank-mp095.json new file mode 100644 index 000000000000..9d2ab65509b4 --- /dev/null +++ b/data/game/ti/tiger-tank-59-super-tank-mp095.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-super-tank-mp095", + "name": "Tiger Tank 59 Ⅰ Super Tank MP095", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185455" + ], + "release_date": "2021-07-18", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-super-tank-mp096.json b/data/game/ti/tiger-tank-59-super-tank-mp096.json new file mode 100644 index 000000000000..bd0692e4f8f3 --- /dev/null +++ b/data/game/ti/tiger-tank-59-super-tank-mp096.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-super-tank-mp096", + "name": "Tiger Tank 59 Ⅰ Super Tank MP096", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185468" + ], + "release_date": "2021-07-18", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-super-tank-mp097.json b/data/game/ti/tiger-tank-59-super-tank-mp097.json new file mode 100644 index 000000000000..a3a857529682 --- /dev/null +++ b/data/game/ti/tiger-tank-59-super-tank-mp097.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-super-tank-mp097", + "name": "Tiger Tank 59 Ⅰ Super Tank MP097", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185469" + ], + "release_date": "2021-07-18", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-super-tank-mp098.json b/data/game/ti/tiger-tank-59-super-tank-mp098.json new file mode 100644 index 000000000000..639c4cc536d7 --- /dev/null +++ b/data/game/ti/tiger-tank-59-super-tank-mp098.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-super-tank-mp098", + "name": "Tiger Tank 59 Ⅰ Super Tank MP098", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185470" + ], + "release_date": "2021-07-18", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-super-tank-mp099.json b/data/game/ti/tiger-tank-59-super-tank-mp099.json new file mode 100644 index 000000000000..04a789ec3c74 --- /dev/null +++ b/data/game/ti/tiger-tank-59-super-tank-mp099.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-super-tank-mp099", + "name": "Tiger Tank 59 Ⅰ Super Tank MP099", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185472" + ], + "release_date": "2021-07-18", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-super-tank-mp100.json b/data/game/ti/tiger-tank-59-super-tank-mp100.json new file mode 100644 index 000000000000..490a2d9afba0 --- /dev/null +++ b/data/game/ti/tiger-tank-59-super-tank-mp100.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-super-tank-mp100", + "name": "Tiger Tank 59 Ⅰ Super Tank MP100", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185474" + ], + "release_date": "2021-07-18", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-volcano-mp001.json b/data/game/ti/tiger-tank-59-volcano-mp001.json new file mode 100644 index 000000000000..20c8b76834f3 --- /dev/null +++ b/data/game/ti/tiger-tank-59-volcano-mp001.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-volcano-mp001", + "name": "Tiger Tank 59 Ⅰ Volcano MP001", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185475" + ], + "release_date": "2021-07-22", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-volcano-mp002.json b/data/game/ti/tiger-tank-59-volcano-mp002.json new file mode 100644 index 000000000000..d5f20cf6922e --- /dev/null +++ b/data/game/ti/tiger-tank-59-volcano-mp002.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-volcano-mp002", + "name": "Tiger Tank 59 Ⅰ Volcano MP002", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185478" + ], + "release_date": "2021-07-22", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-volcano-mp003.json b/data/game/ti/tiger-tank-59-volcano-mp003.json new file mode 100644 index 000000000000..7a76d9df7f51 --- /dev/null +++ b/data/game/ti/tiger-tank-59-volcano-mp003.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-volcano-mp003", + "name": "Tiger Tank 59 Ⅰ Volcano MP003", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185479" + ], + "release_date": "2021-07-22", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-volcano-mp004.json b/data/game/ti/tiger-tank-59-volcano-mp004.json new file mode 100644 index 000000000000..7605589186ce --- /dev/null +++ b/data/game/ti/tiger-tank-59-volcano-mp004.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-volcano-mp004", + "name": "Tiger Tank 59 Ⅰ Volcano MP004", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185482" + ], + "release_date": "2021-07-22", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-volcano-mp005.json b/data/game/ti/tiger-tank-59-volcano-mp005.json new file mode 100644 index 000000000000..15745d431aa4 --- /dev/null +++ b/data/game/ti/tiger-tank-59-volcano-mp005.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-volcano-mp005", + "name": "Tiger Tank 59 Ⅰ Volcano MP005", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185483" + ], + "release_date": "2021-07-22", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-volcano-mp006.json b/data/game/ti/tiger-tank-59-volcano-mp006.json new file mode 100644 index 000000000000..f857bbfa57f4 --- /dev/null +++ b/data/game/ti/tiger-tank-59-volcano-mp006.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-volcano-mp006", + "name": "Tiger Tank 59 Ⅰ Volcano MP006", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185484" + ], + "release_date": "2021-07-22", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-volcano-mp007.json b/data/game/ti/tiger-tank-59-volcano-mp007.json new file mode 100644 index 000000000000..9b83c491f4f4 --- /dev/null +++ b/data/game/ti/tiger-tank-59-volcano-mp007.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-volcano-mp007", + "name": "Tiger Tank 59 Ⅰ Volcano MP007", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185485" + ], + "release_date": "2021-07-22", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-volcano-mp008.json b/data/game/ti/tiger-tank-59-volcano-mp008.json new file mode 100644 index 000000000000..0f75bb05bcf6 --- /dev/null +++ b/data/game/ti/tiger-tank-59-volcano-mp008.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-volcano-mp008", + "name": "Tiger Tank 59 Ⅰ Volcano MP008", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185486" + ], + "release_date": "2021-07-22", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-volcano-mp009.json b/data/game/ti/tiger-tank-59-volcano-mp009.json new file mode 100644 index 000000000000..73ef25cc642f --- /dev/null +++ b/data/game/ti/tiger-tank-59-volcano-mp009.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-volcano-mp009", + "name": "Tiger Tank 59 Ⅰ Volcano MP009", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185487" + ], + "release_date": "2021-07-22", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-volcano-mp010.json b/data/game/ti/tiger-tank-59-volcano-mp010.json new file mode 100644 index 000000000000..f90ea7d80178 --- /dev/null +++ b/data/game/ti/tiger-tank-59-volcano-mp010.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-volcano-mp010", + "name": "Tiger Tank 59 Ⅰ Volcano MP010", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185488" + ], + "release_date": "2021-07-22", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-volcano-mp011.json b/data/game/ti/tiger-tank-59-volcano-mp011.json new file mode 100644 index 000000000000..a20402394ca0 --- /dev/null +++ b/data/game/ti/tiger-tank-59-volcano-mp011.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-volcano-mp011", + "name": "Tiger Tank 59 Ⅰ Volcano MP011", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185490" + ], + "release_date": "2021-07-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-volcano-mp012.json b/data/game/ti/tiger-tank-59-volcano-mp012.json new file mode 100644 index 000000000000..926c37327f92 --- /dev/null +++ b/data/game/ti/tiger-tank-59-volcano-mp012.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-volcano-mp012", + "name": "Tiger Tank 59 Ⅰ Volcano MP012", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185491" + ], + "release_date": "2021-07-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-volcano-mp013.json b/data/game/ti/tiger-tank-59-volcano-mp013.json new file mode 100644 index 000000000000..c023ee5c0eb2 --- /dev/null +++ b/data/game/ti/tiger-tank-59-volcano-mp013.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-volcano-mp013", + "name": "Tiger Tank 59 Ⅰ Volcano MP013", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185492" + ], + "release_date": "2021-07-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-volcano-mp014.json b/data/game/ti/tiger-tank-59-volcano-mp014.json new file mode 100644 index 000000000000..02ce2ae6ad12 --- /dev/null +++ b/data/game/ti/tiger-tank-59-volcano-mp014.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-volcano-mp014", + "name": "Tiger Tank 59 Ⅰ Volcano MP014", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185493" + ], + "release_date": "2021-07-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-volcano-mp015.json b/data/game/ti/tiger-tank-59-volcano-mp015.json new file mode 100644 index 000000000000..8c6c0d67615c --- /dev/null +++ b/data/game/ti/tiger-tank-59-volcano-mp015.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-volcano-mp015", + "name": "Tiger Tank 59 Ⅰ Volcano MP015", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185494" + ], + "release_date": "2021-07-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-volcano-mp016.json b/data/game/ti/tiger-tank-59-volcano-mp016.json new file mode 100644 index 000000000000..b7dc7b01556c --- /dev/null +++ b/data/game/ti/tiger-tank-59-volcano-mp016.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-volcano-mp016", + "name": "Tiger Tank 59 Ⅰ Volcano MP016", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185496" + ], + "release_date": "2021-07-25", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-volcano-mp017.json b/data/game/ti/tiger-tank-59-volcano-mp017.json new file mode 100644 index 000000000000..406ac9ad626b --- /dev/null +++ b/data/game/ti/tiger-tank-59-volcano-mp017.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-volcano-mp017", + "name": "Tiger Tank 59 Ⅰ Volcano MP017", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185497" + ], + "release_date": "2021-07-25", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-volcano-mp018.json b/data/game/ti/tiger-tank-59-volcano-mp018.json new file mode 100644 index 000000000000..e2c5ff04509d --- /dev/null +++ b/data/game/ti/tiger-tank-59-volcano-mp018.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-volcano-mp018", + "name": "Tiger Tank 59 Ⅰ Volcano MP018", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185500" + ], + "release_date": "2021-07-25", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-volcano-mp019.json b/data/game/ti/tiger-tank-59-volcano-mp019.json new file mode 100644 index 000000000000..a5e5e19c7aa5 --- /dev/null +++ b/data/game/ti/tiger-tank-59-volcano-mp019.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-volcano-mp019", + "name": "Tiger Tank 59 Ⅰ Volcano MP019", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185502" + ], + "release_date": "2021-07-25", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-volcano-mp020.json b/data/game/ti/tiger-tank-59-volcano-mp020.json new file mode 100644 index 000000000000..156df71cd402 --- /dev/null +++ b/data/game/ti/tiger-tank-59-volcano-mp020.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-volcano-mp020", + "name": "Tiger Tank 59 Ⅰ Volcano MP020", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185512" + ], + "release_date": "2021-07-25", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-volcano-mp021.json b/data/game/ti/tiger-tank-59-volcano-mp021.json new file mode 100644 index 000000000000..a4879f6389d4 --- /dev/null +++ b/data/game/ti/tiger-tank-59-volcano-mp021.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-volcano-mp021", + "name": "Tiger Tank 59 Ⅰ Volcano MP021", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185513" + ], + "release_date": "2021-07-25", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-volcano-mp022.json b/data/game/ti/tiger-tank-59-volcano-mp022.json new file mode 100644 index 000000000000..2e023889693c --- /dev/null +++ b/data/game/ti/tiger-tank-59-volcano-mp022.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-volcano-mp022", + "name": "Tiger Tank 59 Ⅰ Volcano MP022", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185514" + ], + "release_date": "2021-07-25", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-volcano-mp023.json b/data/game/ti/tiger-tank-59-volcano-mp023.json new file mode 100644 index 000000000000..b1dd451ab18e --- /dev/null +++ b/data/game/ti/tiger-tank-59-volcano-mp023.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-volcano-mp023", + "name": "Tiger Tank 59 Ⅰ Volcano MP023", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185515" + ], + "release_date": "2021-07-25", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-volcano-mp024.json b/data/game/ti/tiger-tank-59-volcano-mp024.json new file mode 100644 index 000000000000..eb38913d0429 --- /dev/null +++ b/data/game/ti/tiger-tank-59-volcano-mp024.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-volcano-mp024", + "name": "Tiger Tank 59 Ⅰ Volcano MP024", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185517" + ], + "release_date": "2021-07-25", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-volcano-mp025.json b/data/game/ti/tiger-tank-59-volcano-mp025.json new file mode 100644 index 000000000000..3d20751ff054 --- /dev/null +++ b/data/game/ti/tiger-tank-59-volcano-mp025.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-volcano-mp025", + "name": "Tiger Tank 59 Ⅰ Volcano MP025", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185518" + ], + "release_date": "2021-07-25", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-volcano-mp026.json b/data/game/ti/tiger-tank-59-volcano-mp026.json new file mode 100644 index 000000000000..66ef5d21711d --- /dev/null +++ b/data/game/ti/tiger-tank-59-volcano-mp026.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-volcano-mp026", + "name": "Tiger Tank 59 Ⅰ Volcano MP026", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185519" + ], + "release_date": "2021-07-27", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-volcano-mp027.json b/data/game/ti/tiger-tank-59-volcano-mp027.json new file mode 100644 index 000000000000..7d10a994f9a7 --- /dev/null +++ b/data/game/ti/tiger-tank-59-volcano-mp027.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-volcano-mp027", + "name": "Tiger Tank 59 Ⅰ Volcano MP027", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185522" + ], + "release_date": "2021-07-27", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-volcano-mp028.json b/data/game/ti/tiger-tank-59-volcano-mp028.json new file mode 100644 index 000000000000..2878a73960d8 --- /dev/null +++ b/data/game/ti/tiger-tank-59-volcano-mp028.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-volcano-mp028", + "name": "Tiger Tank 59 Ⅰ Volcano MP028", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185523" + ], + "release_date": "2021-07-27", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-volcano-mp029.json b/data/game/ti/tiger-tank-59-volcano-mp029.json new file mode 100644 index 000000000000..8b0c7f92a92a --- /dev/null +++ b/data/game/ti/tiger-tank-59-volcano-mp029.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-volcano-mp029", + "name": "Tiger Tank 59 Ⅰ Volcano MP029", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185524" + ], + "release_date": "2021-07-27", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-volcano-mp030.json b/data/game/ti/tiger-tank-59-volcano-mp030.json new file mode 100644 index 000000000000..6a9ff1c75e32 --- /dev/null +++ b/data/game/ti/tiger-tank-59-volcano-mp030.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-volcano-mp030", + "name": "Tiger Tank 59 Ⅰ Volcano MP030", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185526" + ], + "release_date": "2021-07-27", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-volcano-mp031.json b/data/game/ti/tiger-tank-59-volcano-mp031.json new file mode 100644 index 000000000000..dfb8a8e58b5a --- /dev/null +++ b/data/game/ti/tiger-tank-59-volcano-mp031.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-volcano-mp031", + "name": "Tiger Tank 59 Ⅰ Volcano MP031", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185528" + ], + "release_date": "2021-07-27", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-volcano-mp032.json b/data/game/ti/tiger-tank-59-volcano-mp032.json new file mode 100644 index 000000000000..d6c0dfba06ba --- /dev/null +++ b/data/game/ti/tiger-tank-59-volcano-mp032.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-volcano-mp032", + "name": "Tiger Tank 59 Ⅰ Volcano MP032", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185529" + ], + "release_date": "2021-07-27", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-volcano-mp033.json b/data/game/ti/tiger-tank-59-volcano-mp033.json new file mode 100644 index 000000000000..2325364f316c --- /dev/null +++ b/data/game/ti/tiger-tank-59-volcano-mp033.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-volcano-mp033", + "name": "Tiger Tank 59 Ⅰ Volcano MP033", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185530" + ], + "release_date": "2021-07-27", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-volcano-mp034.json b/data/game/ti/tiger-tank-59-volcano-mp034.json new file mode 100644 index 000000000000..3b20bbd35ddb --- /dev/null +++ b/data/game/ti/tiger-tank-59-volcano-mp034.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-volcano-mp034", + "name": "Tiger Tank 59 Ⅰ Volcano MP034", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185531" + ], + "release_date": "2021-07-27", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-volcano-mp035.json b/data/game/ti/tiger-tank-59-volcano-mp035.json new file mode 100644 index 000000000000..fb791b0c7dd9 --- /dev/null +++ b/data/game/ti/tiger-tank-59-volcano-mp035.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-volcano-mp035", + "name": "Tiger Tank 59 Ⅰ Volcano MP035", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185532" + ], + "release_date": "2021-07-27", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-volcano-mp036.json b/data/game/ti/tiger-tank-59-volcano-mp036.json new file mode 100644 index 000000000000..a3c11362049d --- /dev/null +++ b/data/game/ti/tiger-tank-59-volcano-mp036.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-volcano-mp036", + "name": "Tiger Tank 59 Ⅰ Volcano MP036", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185534" + ], + "release_date": "2021-07-31", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-volcano-mp037.json b/data/game/ti/tiger-tank-59-volcano-mp037.json new file mode 100644 index 000000000000..d2c591366b30 --- /dev/null +++ b/data/game/ti/tiger-tank-59-volcano-mp037.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-volcano-mp037", + "name": "Tiger Tank 59 Ⅰ Volcano MP037", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185536" + ], + "release_date": "2021-07-31", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-volcano-mp038.json b/data/game/ti/tiger-tank-59-volcano-mp038.json new file mode 100644 index 000000000000..2d465f8dd3d2 --- /dev/null +++ b/data/game/ti/tiger-tank-59-volcano-mp038.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-volcano-mp038", + "name": "Tiger Tank 59 Ⅰ Volcano MP038", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185542" + ], + "release_date": "2021-07-31", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-volcano-mp039.json b/data/game/ti/tiger-tank-59-volcano-mp039.json new file mode 100644 index 000000000000..059bf8b452fb --- /dev/null +++ b/data/game/ti/tiger-tank-59-volcano-mp039.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-volcano-mp039", + "name": "Tiger Tank 59 Ⅰ Volcano MP039", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185545" + ], + "release_date": "2021-07-31", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-volcano-mp040.json b/data/game/ti/tiger-tank-59-volcano-mp040.json new file mode 100644 index 000000000000..ebd48d3a42ed --- /dev/null +++ b/data/game/ti/tiger-tank-59-volcano-mp040.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-volcano-mp040", + "name": "Tiger Tank 59 Ⅰ Volcano MP040", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185548" + ], + "release_date": "2021-07-31", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-volcano-mp041.json b/data/game/ti/tiger-tank-59-volcano-mp041.json new file mode 100644 index 000000000000..919e5de48b5f --- /dev/null +++ b/data/game/ti/tiger-tank-59-volcano-mp041.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-volcano-mp041", + "name": "Tiger Tank 59 Ⅰ Volcano MP041", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185549" + ], + "release_date": "2021-07-31", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-volcano-mp042.json b/data/game/ti/tiger-tank-59-volcano-mp042.json new file mode 100644 index 000000000000..0f8edc9bc652 --- /dev/null +++ b/data/game/ti/tiger-tank-59-volcano-mp042.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-volcano-mp042", + "name": "Tiger Tank 59 Ⅰ Volcano MP042", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185550" + ], + "release_date": "2021-07-31", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-volcano-mp043.json b/data/game/ti/tiger-tank-59-volcano-mp043.json new file mode 100644 index 000000000000..6e0a38fe3896 --- /dev/null +++ b/data/game/ti/tiger-tank-59-volcano-mp043.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-volcano-mp043", + "name": "Tiger Tank 59 Ⅰ Volcano MP043", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185552" + ], + "release_date": "2021-07-31", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-volcano-mp044.json b/data/game/ti/tiger-tank-59-volcano-mp044.json new file mode 100644 index 000000000000..7b1c41383cc7 --- /dev/null +++ b/data/game/ti/tiger-tank-59-volcano-mp044.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-volcano-mp044", + "name": "Tiger Tank 59 Ⅰ Volcano MP044", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185554" + ], + "release_date": "2021-08-04", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-volcano-mp045.json b/data/game/ti/tiger-tank-59-volcano-mp045.json new file mode 100644 index 000000000000..dc82ef2e6dde --- /dev/null +++ b/data/game/ti/tiger-tank-59-volcano-mp045.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-volcano-mp045", + "name": "Tiger Tank 59 Ⅰ Volcano MP045", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185555" + ], + "release_date": "2021-07-31", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-volcano-mp046.json b/data/game/ti/tiger-tank-59-volcano-mp046.json new file mode 100644 index 000000000000..7f54a1ba5622 --- /dev/null +++ b/data/game/ti/tiger-tank-59-volcano-mp046.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-volcano-mp046", + "name": "Tiger Tank 59 Ⅰ Volcano MP046", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185556" + ], + "release_date": "2021-08-04", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-volcano-mp047.json b/data/game/ti/tiger-tank-59-volcano-mp047.json new file mode 100644 index 000000000000..88372ab0e55c --- /dev/null +++ b/data/game/ti/tiger-tank-59-volcano-mp047.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-volcano-mp047", + "name": "Tiger Tank 59 Ⅰ Volcano MP047", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185557" + ], + "release_date": "2021-08-04", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-volcano-mp048.json b/data/game/ti/tiger-tank-59-volcano-mp048.json new file mode 100644 index 000000000000..7b807fffcafa --- /dev/null +++ b/data/game/ti/tiger-tank-59-volcano-mp048.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-volcano-mp048", + "name": "Tiger Tank 59 Ⅰ Volcano MP048", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185558" + ], + "release_date": "2021-08-04", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-volcano-mp049.json b/data/game/ti/tiger-tank-59-volcano-mp049.json new file mode 100644 index 000000000000..9cc3886d281b --- /dev/null +++ b/data/game/ti/tiger-tank-59-volcano-mp049.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-volcano-mp049", + "name": "Tiger Tank 59 Ⅰ Volcano MP049", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185559" + ], + "release_date": "2021-08-04", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-volcano-mp050.json b/data/game/ti/tiger-tank-59-volcano-mp050.json new file mode 100644 index 000000000000..f38711e319e9 --- /dev/null +++ b/data/game/ti/tiger-tank-59-volcano-mp050.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-volcano-mp050", + "name": "Tiger Tank 59 Ⅰ Volcano MP050", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185560" + ], + "release_date": "2021-08-04", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-volcano-mp051.json b/data/game/ti/tiger-tank-59-volcano-mp051.json new file mode 100644 index 000000000000..3f154af89e97 --- /dev/null +++ b/data/game/ti/tiger-tank-59-volcano-mp051.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-volcano-mp051", + "name": "Tiger Tank 59 Ⅰ Volcano MP051", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185563" + ], + "release_date": "2021-08-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-volcano-mp052.json b/data/game/ti/tiger-tank-59-volcano-mp052.json new file mode 100644 index 000000000000..509514537134 --- /dev/null +++ b/data/game/ti/tiger-tank-59-volcano-mp052.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-volcano-mp052", + "name": "Tiger Tank 59 Ⅰ Volcano MP052", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185564" + ], + "release_date": "2021-08-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-volcano-mp053.json b/data/game/ti/tiger-tank-59-volcano-mp053.json new file mode 100644 index 000000000000..77d19ad4d9b6 --- /dev/null +++ b/data/game/ti/tiger-tank-59-volcano-mp053.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-volcano-mp053", + "name": "Tiger Tank 59 Ⅰ Volcano MP053", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185566" + ], + "release_date": "2021-08-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-volcano-mp054.json b/data/game/ti/tiger-tank-59-volcano-mp054.json new file mode 100644 index 000000000000..311c1ac6f69b --- /dev/null +++ b/data/game/ti/tiger-tank-59-volcano-mp054.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-volcano-mp054", + "name": "Tiger Tank 59 Ⅰ Volcano MP054", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185568" + ], + "release_date": "2021-08-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-volcano-mp055.json b/data/game/ti/tiger-tank-59-volcano-mp055.json new file mode 100644 index 000000000000..e27bb2b65f78 --- /dev/null +++ b/data/game/ti/tiger-tank-59-volcano-mp055.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-volcano-mp055", + "name": "Tiger Tank 59 Ⅰ Volcano MP055", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185569" + ], + "release_date": "2021-08-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-volcano-mp056.json b/data/game/ti/tiger-tank-59-volcano-mp056.json new file mode 100644 index 000000000000..0f1aa1ea946e --- /dev/null +++ b/data/game/ti/tiger-tank-59-volcano-mp056.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-volcano-mp056", + "name": "Tiger Tank 59 Ⅰ Volcano MP056", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185571" + ], + "release_date": "2021-08-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-volcano-mp057.json b/data/game/ti/tiger-tank-59-volcano-mp057.json new file mode 100644 index 000000000000..46bd9e4f84e4 --- /dev/null +++ b/data/game/ti/tiger-tank-59-volcano-mp057.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-volcano-mp057", + "name": "Tiger Tank 59 Ⅰ Volcano MP057", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185575" + ], + "release_date": "2021-08-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-volcano-mp058.json b/data/game/ti/tiger-tank-59-volcano-mp058.json new file mode 100644 index 000000000000..2662b5be76e1 --- /dev/null +++ b/data/game/ti/tiger-tank-59-volcano-mp058.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-volcano-mp058", + "name": "Tiger Tank 59 Ⅰ Volcano MP058", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185576" + ], + "release_date": "2021-08-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-volcano-mp059.json b/data/game/ti/tiger-tank-59-volcano-mp059.json new file mode 100644 index 000000000000..928c59472c6f --- /dev/null +++ b/data/game/ti/tiger-tank-59-volcano-mp059.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-volcano-mp059", + "name": "Tiger Tank 59 Ⅰ Volcano MP059", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185577" + ], + "release_date": "2021-08-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-volcano-mp060.json b/data/game/ti/tiger-tank-59-volcano-mp060.json new file mode 100644 index 000000000000..9b9bb061fc9f --- /dev/null +++ b/data/game/ti/tiger-tank-59-volcano-mp060.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-volcano-mp060", + "name": "Tiger Tank 59 Ⅰ Volcano MP060", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185579" + ], + "release_date": "2021-08-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-volcano-mp061.json b/data/game/ti/tiger-tank-59-volcano-mp061.json new file mode 100644 index 000000000000..8054a2f90265 --- /dev/null +++ b/data/game/ti/tiger-tank-59-volcano-mp061.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-volcano-mp061", + "name": "Tiger Tank 59 Ⅰ Volcano MP061", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185581" + ], + "release_date": "2021-08-14", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-volcano-mp062.json b/data/game/ti/tiger-tank-59-volcano-mp062.json new file mode 100644 index 000000000000..a41cd4a542ba --- /dev/null +++ b/data/game/ti/tiger-tank-59-volcano-mp062.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-volcano-mp062", + "name": "Tiger Tank 59 Ⅰ Volcano MP062", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185584" + ], + "release_date": "2021-08-14", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-volcano-mp063.json b/data/game/ti/tiger-tank-59-volcano-mp063.json new file mode 100644 index 000000000000..b28268a7abe2 --- /dev/null +++ b/data/game/ti/tiger-tank-59-volcano-mp063.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-volcano-mp063", + "name": "Tiger Tank 59 Ⅰ Volcano MP063", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185585" + ], + "release_date": "2021-08-14", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-volcano-mp064.json b/data/game/ti/tiger-tank-59-volcano-mp064.json new file mode 100644 index 000000000000..674d45a202b8 --- /dev/null +++ b/data/game/ti/tiger-tank-59-volcano-mp064.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-volcano-mp064", + "name": "Tiger Tank 59 Ⅰ Volcano MP064", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185588" + ], + "release_date": "2021-08-14", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-volcano-mp065.json b/data/game/ti/tiger-tank-59-volcano-mp065.json new file mode 100644 index 000000000000..82118eaaf3d4 --- /dev/null +++ b/data/game/ti/tiger-tank-59-volcano-mp065.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-volcano-mp065", + "name": "Tiger Tank 59 Ⅰ Volcano MP065", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185589" + ], + "release_date": "2021-08-14", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-volcano-mp066.json b/data/game/ti/tiger-tank-59-volcano-mp066.json new file mode 100644 index 000000000000..5a9b4c23ee4a --- /dev/null +++ b/data/game/ti/tiger-tank-59-volcano-mp066.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-volcano-mp066", + "name": "Tiger Tank 59 Ⅰ Volcano MP066", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185591" + ], + "release_date": "2021-08-14", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-volcano-mp067.json b/data/game/ti/tiger-tank-59-volcano-mp067.json new file mode 100644 index 000000000000..a5375495b9aa --- /dev/null +++ b/data/game/ti/tiger-tank-59-volcano-mp067.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-volcano-mp067", + "name": "Tiger Tank 59 Ⅰ Volcano MP067", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185593" + ], + "release_date": "2021-08-14", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-volcano-mp068.json b/data/game/ti/tiger-tank-59-volcano-mp068.json new file mode 100644 index 000000000000..0d3511931628 --- /dev/null +++ b/data/game/ti/tiger-tank-59-volcano-mp068.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-volcano-mp068", + "name": "Tiger Tank 59 Ⅰ Volcano MP068", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185596" + ], + "release_date": "2021-08-14", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-volcano-mp069.json b/data/game/ti/tiger-tank-59-volcano-mp069.json new file mode 100644 index 000000000000..d343708caee2 --- /dev/null +++ b/data/game/ti/tiger-tank-59-volcano-mp069.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-volcano-mp069", + "name": "Tiger Tank 59 Ⅰ Volcano MP069", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185597" + ], + "release_date": "2021-08-14", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-volcano-mp070.json b/data/game/ti/tiger-tank-59-volcano-mp070.json new file mode 100644 index 000000000000..8b2ac206b9a5 --- /dev/null +++ b/data/game/ti/tiger-tank-59-volcano-mp070.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-volcano-mp070", + "name": "Tiger Tank 59 Ⅰ Volcano MP070", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185598" + ], + "release_date": "2021-08-14", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-volcano-mp071.json b/data/game/ti/tiger-tank-59-volcano-mp071.json new file mode 100644 index 000000000000..84963680c9db --- /dev/null +++ b/data/game/ti/tiger-tank-59-volcano-mp071.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-volcano-mp071", + "name": "Tiger Tank 59 Ⅰ Volcano MP071", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185599" + ], + "release_date": "2021-08-19", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-volcano-mp072.json b/data/game/ti/tiger-tank-59-volcano-mp072.json new file mode 100644 index 000000000000..4118ced4a889 --- /dev/null +++ b/data/game/ti/tiger-tank-59-volcano-mp072.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-volcano-mp072", + "name": "Tiger Tank 59 Ⅰ Volcano MP072", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185601" + ], + "release_date": "2021-08-19", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-volcano-mp073.json b/data/game/ti/tiger-tank-59-volcano-mp073.json new file mode 100644 index 000000000000..cb14f180cd77 --- /dev/null +++ b/data/game/ti/tiger-tank-59-volcano-mp073.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-volcano-mp073", + "name": "Tiger Tank 59 Ⅰ Volcano MP073", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185602" + ], + "release_date": "2021-08-19", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-volcano-mp074.json b/data/game/ti/tiger-tank-59-volcano-mp074.json new file mode 100644 index 000000000000..6f6131b324d8 --- /dev/null +++ b/data/game/ti/tiger-tank-59-volcano-mp074.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-volcano-mp074", + "name": "Tiger Tank 59 Ⅰ Volcano MP074", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185603" + ], + "release_date": "2021-08-19", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-volcano-mp075.json b/data/game/ti/tiger-tank-59-volcano-mp075.json new file mode 100644 index 000000000000..a72e9f0e9865 --- /dev/null +++ b/data/game/ti/tiger-tank-59-volcano-mp075.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-volcano-mp075", + "name": "Tiger Tank 59 Ⅰ Volcano MP075", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185605" + ], + "release_date": "2021-08-19", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-volcano-mp076.json b/data/game/ti/tiger-tank-59-volcano-mp076.json new file mode 100644 index 000000000000..8096dbb9a96a --- /dev/null +++ b/data/game/ti/tiger-tank-59-volcano-mp076.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-volcano-mp076", + "name": "Tiger Tank 59 Ⅰ Volcano MP076", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185606" + ], + "release_date": "2021-08-19", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-volcano-mp077.json b/data/game/ti/tiger-tank-59-volcano-mp077.json new file mode 100644 index 000000000000..413ef5232262 --- /dev/null +++ b/data/game/ti/tiger-tank-59-volcano-mp077.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-volcano-mp077", + "name": "Tiger Tank 59 Ⅰ Volcano MP077", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185607" + ], + "release_date": "2021-08-19", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-volcano-mp078.json b/data/game/ti/tiger-tank-59-volcano-mp078.json new file mode 100644 index 000000000000..579ca3321ac3 --- /dev/null +++ b/data/game/ti/tiger-tank-59-volcano-mp078.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-volcano-mp078", + "name": "Tiger Tank 59 Ⅰ Volcano MP078", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185609" + ], + "release_date": "2021-08-19", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-volcano-mp079.json b/data/game/ti/tiger-tank-59-volcano-mp079.json new file mode 100644 index 000000000000..766d34751378 --- /dev/null +++ b/data/game/ti/tiger-tank-59-volcano-mp079.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-volcano-mp079", + "name": "Tiger Tank 59 Ⅰ Volcano MP079", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185611" + ], + "release_date": "2021-08-19", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-volcano-mp080.json b/data/game/ti/tiger-tank-59-volcano-mp080.json new file mode 100644 index 000000000000..cae670be4c7a --- /dev/null +++ b/data/game/ti/tiger-tank-59-volcano-mp080.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-volcano-mp080", + "name": "Tiger Tank 59 Ⅰ Volcano MP080", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185612" + ], + "release_date": "2021-08-19", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-volcano-mp081.json b/data/game/ti/tiger-tank-59-volcano-mp081.json new file mode 100644 index 000000000000..d4051773ace3 --- /dev/null +++ b/data/game/ti/tiger-tank-59-volcano-mp081.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-volcano-mp081", + "name": "Tiger Tank 59 Ⅰ Volcano MP081", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185613" + ], + "release_date": "2021-08-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-volcano-mp082.json b/data/game/ti/tiger-tank-59-volcano-mp082.json new file mode 100644 index 000000000000..0213085ffcdf --- /dev/null +++ b/data/game/ti/tiger-tank-59-volcano-mp082.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-volcano-mp082", + "name": "Tiger Tank 59 Ⅰ Volcano MP082", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185615" + ], + "release_date": "2021-08-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-volcano-mp083.json b/data/game/ti/tiger-tank-59-volcano-mp083.json new file mode 100644 index 000000000000..f5df113b649b --- /dev/null +++ b/data/game/ti/tiger-tank-59-volcano-mp083.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-volcano-mp083", + "name": "Tiger Tank 59 Ⅰ Volcano MP083", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185616" + ], + "release_date": "2021-08-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-volcano-mp084.json b/data/game/ti/tiger-tank-59-volcano-mp084.json new file mode 100644 index 000000000000..812ac42147f8 --- /dev/null +++ b/data/game/ti/tiger-tank-59-volcano-mp084.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-volcano-mp084", + "name": "Tiger Tank 59 Ⅰ Volcano MP084", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185617" + ], + "release_date": "2021-08-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-volcano-mp085.json b/data/game/ti/tiger-tank-59-volcano-mp085.json new file mode 100644 index 000000000000..5c9ba5976445 --- /dev/null +++ b/data/game/ti/tiger-tank-59-volcano-mp085.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-volcano-mp085", + "name": "Tiger Tank 59 Ⅰ Volcano MP085", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185619" + ], + "release_date": "2021-08-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-volcano-mp086.json b/data/game/ti/tiger-tank-59-volcano-mp086.json new file mode 100644 index 000000000000..45a58f3be89e --- /dev/null +++ b/data/game/ti/tiger-tank-59-volcano-mp086.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-volcano-mp086", + "name": "Tiger Tank 59 Ⅰ Volcano MP086", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185620" + ], + "release_date": "2021-08-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-volcano-mp087.json b/data/game/ti/tiger-tank-59-volcano-mp087.json new file mode 100644 index 000000000000..dd018709fee5 --- /dev/null +++ b/data/game/ti/tiger-tank-59-volcano-mp087.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-volcano-mp087", + "name": "Tiger Tank 59 Ⅰ Volcano MP087", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185622" + ], + "release_date": "2021-08-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-volcano-mp088.json b/data/game/ti/tiger-tank-59-volcano-mp088.json new file mode 100644 index 000000000000..0eda42cfed70 --- /dev/null +++ b/data/game/ti/tiger-tank-59-volcano-mp088.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-volcano-mp088", + "name": "Tiger Tank 59 Ⅰ Volcano MP088", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185624" + ], + "release_date": "2021-08-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-volcano-mp089.json b/data/game/ti/tiger-tank-59-volcano-mp089.json new file mode 100644 index 000000000000..3dc39535fb51 --- /dev/null +++ b/data/game/ti/tiger-tank-59-volcano-mp089.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-volcano-mp089", + "name": "Tiger Tank 59 Ⅰ Volcano MP089", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185627" + ], + "release_date": "2021-08-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-volcano-mp090.json b/data/game/ti/tiger-tank-59-volcano-mp090.json new file mode 100644 index 000000000000..2296bc01be32 --- /dev/null +++ b/data/game/ti/tiger-tank-59-volcano-mp090.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-volcano-mp090", + "name": "Tiger Tank 59 Ⅰ Volcano MP090", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185628" + ], + "release_date": "2021-08-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-volcano-mp091.json b/data/game/ti/tiger-tank-59-volcano-mp091.json new file mode 100644 index 000000000000..2461c227a02b --- /dev/null +++ b/data/game/ti/tiger-tank-59-volcano-mp091.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-volcano-mp091", + "name": "Tiger Tank 59 Ⅰ Volcano MP091", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185629" + ], + "release_date": "2021-09-01", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-volcano-mp092.json b/data/game/ti/tiger-tank-59-volcano-mp092.json new file mode 100644 index 000000000000..fae06813662c --- /dev/null +++ b/data/game/ti/tiger-tank-59-volcano-mp092.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-volcano-mp092", + "name": "Tiger Tank 59 Ⅰ Volcano MP092", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185631" + ], + "release_date": "2021-09-01", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-volcano-mp093.json b/data/game/ti/tiger-tank-59-volcano-mp093.json new file mode 100644 index 000000000000..1e80e64c85f3 --- /dev/null +++ b/data/game/ti/tiger-tank-59-volcano-mp093.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-volcano-mp093", + "name": "Tiger Tank 59 Ⅰ Volcano MP093", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185632" + ], + "release_date": "2021-09-01", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-volcano-mp094.json b/data/game/ti/tiger-tank-59-volcano-mp094.json new file mode 100644 index 000000000000..385c23143ff5 --- /dev/null +++ b/data/game/ti/tiger-tank-59-volcano-mp094.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-volcano-mp094", + "name": "Tiger Tank 59 Ⅰ Volcano MP094", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185633" + ], + "release_date": "2021-09-01", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-volcano-mp095.json b/data/game/ti/tiger-tank-59-volcano-mp095.json new file mode 100644 index 000000000000..886d76442c09 --- /dev/null +++ b/data/game/ti/tiger-tank-59-volcano-mp095.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-volcano-mp095", + "name": "Tiger Tank 59 Ⅰ Volcano MP095", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185635" + ], + "release_date": "2021-09-01", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-volcano-mp096.json b/data/game/ti/tiger-tank-59-volcano-mp096.json new file mode 100644 index 000000000000..0c06333add32 --- /dev/null +++ b/data/game/ti/tiger-tank-59-volcano-mp096.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-volcano-mp096", + "name": "Tiger Tank 59 Ⅰ Volcano MP096", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185637" + ], + "release_date": "2021-09-01", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-volcano-mp097.json b/data/game/ti/tiger-tank-59-volcano-mp097.json new file mode 100644 index 000000000000..ddff544c0e69 --- /dev/null +++ b/data/game/ti/tiger-tank-59-volcano-mp097.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-volcano-mp097", + "name": "Tiger Tank 59 Ⅰ Volcano MP097", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185639" + ], + "release_date": "2021-09-01", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-volcano-mp098.json b/data/game/ti/tiger-tank-59-volcano-mp098.json new file mode 100644 index 000000000000..1b001fb27780 --- /dev/null +++ b/data/game/ti/tiger-tank-59-volcano-mp098.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-volcano-mp098", + "name": "Tiger Tank 59 Ⅰ Volcano MP098", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185643" + ], + "release_date": "2021-09-01", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-volcano-mp099.json b/data/game/ti/tiger-tank-59-volcano-mp099.json new file mode 100644 index 000000000000..ce58ec4475c4 --- /dev/null +++ b/data/game/ti/tiger-tank-59-volcano-mp099.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-volcano-mp099", + "name": "Tiger Tank 59 Ⅰ Volcano MP099", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185645" + ], + "release_date": "2021-09-01", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-volcano-mp100.json b/data/game/ti/tiger-tank-59-volcano-mp100.json new file mode 100644 index 000000000000..cb42bf1cdddf --- /dev/null +++ b/data/game/ti/tiger-tank-59-volcano-mp100.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-volcano-mp100", + "name": "Tiger Tank 59 Ⅰ Volcano MP100", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185647" + ], + "release_date": "2021-09-01", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-winter-assault-mp001.json b/data/game/ti/tiger-tank-59-winter-assault-mp001.json new file mode 100644 index 000000000000..9e8535748046 --- /dev/null +++ b/data/game/ti/tiger-tank-59-winter-assault-mp001.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-winter-assault-mp001", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP001", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185649" + ], + "release_date": "2021-07-22", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-winter-assault-mp002.json b/data/game/ti/tiger-tank-59-winter-assault-mp002.json new file mode 100644 index 000000000000..36b0f82de500 --- /dev/null +++ b/data/game/ti/tiger-tank-59-winter-assault-mp002.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-winter-assault-mp002", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP002", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185650" + ], + "release_date": "2021-07-22", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-winter-assault-mp003.json b/data/game/ti/tiger-tank-59-winter-assault-mp003.json new file mode 100644 index 000000000000..bc2d483343fd --- /dev/null +++ b/data/game/ti/tiger-tank-59-winter-assault-mp003.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-winter-assault-mp003", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP003", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185653" + ], + "release_date": "2021-07-22", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-winter-assault-mp004.json b/data/game/ti/tiger-tank-59-winter-assault-mp004.json new file mode 100644 index 000000000000..f5f71621241b --- /dev/null +++ b/data/game/ti/tiger-tank-59-winter-assault-mp004.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-winter-assault-mp004", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP004", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185654" + ], + "release_date": "2021-07-22", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-winter-assault-mp005.json b/data/game/ti/tiger-tank-59-winter-assault-mp005.json new file mode 100644 index 000000000000..fbcce6302e03 --- /dev/null +++ b/data/game/ti/tiger-tank-59-winter-assault-mp005.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-winter-assault-mp005", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP005", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185656" + ], + "release_date": "2021-07-22", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-winter-assault-mp006.json b/data/game/ti/tiger-tank-59-winter-assault-mp006.json new file mode 100644 index 000000000000..1b087ffcbf9e --- /dev/null +++ b/data/game/ti/tiger-tank-59-winter-assault-mp006.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-winter-assault-mp006", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP006", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185657" + ], + "release_date": "2021-07-22", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-winter-assault-mp007.json b/data/game/ti/tiger-tank-59-winter-assault-mp007.json new file mode 100644 index 000000000000..41bf6e606b25 --- /dev/null +++ b/data/game/ti/tiger-tank-59-winter-assault-mp007.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-winter-assault-mp007", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP007", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185659" + ], + "release_date": "2021-07-22", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-winter-assault-mp008.json b/data/game/ti/tiger-tank-59-winter-assault-mp008.json new file mode 100644 index 000000000000..7fe423af250b --- /dev/null +++ b/data/game/ti/tiger-tank-59-winter-assault-mp008.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-winter-assault-mp008", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP008", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185661" + ], + "release_date": "2021-07-22", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-winter-assault-mp009.json b/data/game/ti/tiger-tank-59-winter-assault-mp009.json new file mode 100644 index 000000000000..4c1a72d78a83 --- /dev/null +++ b/data/game/ti/tiger-tank-59-winter-assault-mp009.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-winter-assault-mp009", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP009", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185662" + ], + "release_date": "2021-07-22", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-winter-assault-mp010.json b/data/game/ti/tiger-tank-59-winter-assault-mp010.json new file mode 100644 index 000000000000..9423b71c4047 --- /dev/null +++ b/data/game/ti/tiger-tank-59-winter-assault-mp010.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-winter-assault-mp010", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP010", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185663" + ], + "release_date": "2021-07-22", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-winter-assault-mp011.json b/data/game/ti/tiger-tank-59-winter-assault-mp011.json new file mode 100644 index 000000000000..bee5604f89cb --- /dev/null +++ b/data/game/ti/tiger-tank-59-winter-assault-mp011.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-winter-assault-mp011", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP011", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185670" + ], + "release_date": "2021-07-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-winter-assault-mp012.json b/data/game/ti/tiger-tank-59-winter-assault-mp012.json new file mode 100644 index 000000000000..bfe8512deab7 --- /dev/null +++ b/data/game/ti/tiger-tank-59-winter-assault-mp012.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-winter-assault-mp012", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP012", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185671" + ], + "release_date": "2021-07-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-winter-assault-mp013.json b/data/game/ti/tiger-tank-59-winter-assault-mp013.json new file mode 100644 index 000000000000..1f0b0045770d --- /dev/null +++ b/data/game/ti/tiger-tank-59-winter-assault-mp013.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-winter-assault-mp013", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP013", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185672" + ], + "release_date": "2021-07-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-winter-assault-mp014.json b/data/game/ti/tiger-tank-59-winter-assault-mp014.json new file mode 100644 index 000000000000..fc640575c9a5 --- /dev/null +++ b/data/game/ti/tiger-tank-59-winter-assault-mp014.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-winter-assault-mp014", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP014", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185673" + ], + "release_date": "2021-07-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-winter-assault-mp015.json b/data/game/ti/tiger-tank-59-winter-assault-mp015.json new file mode 100644 index 000000000000..5bfb3566fe26 --- /dev/null +++ b/data/game/ti/tiger-tank-59-winter-assault-mp015.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-winter-assault-mp015", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP015", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185676" + ], + "release_date": "2021-07-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-winter-assault-mp016.json b/data/game/ti/tiger-tank-59-winter-assault-mp016.json new file mode 100644 index 000000000000..746bdc5d4cd4 --- /dev/null +++ b/data/game/ti/tiger-tank-59-winter-assault-mp016.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-winter-assault-mp016", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP016", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185678" + ], + "release_date": "2021-07-25", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-winter-assault-mp017.json b/data/game/ti/tiger-tank-59-winter-assault-mp017.json new file mode 100644 index 000000000000..97626a585eaf --- /dev/null +++ b/data/game/ti/tiger-tank-59-winter-assault-mp017.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-winter-assault-mp017", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP017", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185680" + ], + "release_date": "2021-07-25", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-winter-assault-mp018.json b/data/game/ti/tiger-tank-59-winter-assault-mp018.json new file mode 100644 index 000000000000..a9e412422dd1 --- /dev/null +++ b/data/game/ti/tiger-tank-59-winter-assault-mp018.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-winter-assault-mp018", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP018", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185684" + ], + "release_date": "2021-07-25", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-winter-assault-mp019.json b/data/game/ti/tiger-tank-59-winter-assault-mp019.json new file mode 100644 index 000000000000..3a8192a6b50e --- /dev/null +++ b/data/game/ti/tiger-tank-59-winter-assault-mp019.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-winter-assault-mp019", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP019", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185686" + ], + "release_date": "2021-07-25", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-winter-assault-mp020.json b/data/game/ti/tiger-tank-59-winter-assault-mp020.json new file mode 100644 index 000000000000..9361d526ae56 --- /dev/null +++ b/data/game/ti/tiger-tank-59-winter-assault-mp020.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-winter-assault-mp020", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP020", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185688" + ], + "release_date": "2021-07-25", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-winter-assault-mp021.json b/data/game/ti/tiger-tank-59-winter-assault-mp021.json new file mode 100644 index 000000000000..9f44a0d5dc99 --- /dev/null +++ b/data/game/ti/tiger-tank-59-winter-assault-mp021.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-winter-assault-mp021", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP021", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185690" + ], + "release_date": "2021-07-25", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-winter-assault-mp022.json b/data/game/ti/tiger-tank-59-winter-assault-mp022.json new file mode 100644 index 000000000000..fb27fa555f08 --- /dev/null +++ b/data/game/ti/tiger-tank-59-winter-assault-mp022.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-winter-assault-mp022", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP022", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185692" + ], + "release_date": "2021-07-25", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-winter-assault-mp023.json b/data/game/ti/tiger-tank-59-winter-assault-mp023.json new file mode 100644 index 000000000000..8191ffc3736b --- /dev/null +++ b/data/game/ti/tiger-tank-59-winter-assault-mp023.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-winter-assault-mp023", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP023", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185695" + ], + "release_date": "2021-07-25", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-winter-assault-mp024.json b/data/game/ti/tiger-tank-59-winter-assault-mp024.json new file mode 100644 index 000000000000..8dfe6a086bda --- /dev/null +++ b/data/game/ti/tiger-tank-59-winter-assault-mp024.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-winter-assault-mp024", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP024", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185696" + ], + "release_date": "2021-07-25", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-winter-assault-mp025.json b/data/game/ti/tiger-tank-59-winter-assault-mp025.json new file mode 100644 index 000000000000..01ec14555493 --- /dev/null +++ b/data/game/ti/tiger-tank-59-winter-assault-mp025.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-winter-assault-mp025", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP025", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185698" + ], + "release_date": "2021-07-25", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-winter-assault-mp026.json b/data/game/ti/tiger-tank-59-winter-assault-mp026.json new file mode 100644 index 000000000000..fbb08bf132dd --- /dev/null +++ b/data/game/ti/tiger-tank-59-winter-assault-mp026.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-winter-assault-mp026", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP026", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185701" + ], + "release_date": "2021-07-27", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-winter-assault-mp027.json b/data/game/ti/tiger-tank-59-winter-assault-mp027.json new file mode 100644 index 000000000000..c8203fc3600d --- /dev/null +++ b/data/game/ti/tiger-tank-59-winter-assault-mp027.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-winter-assault-mp027", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP027", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185702" + ], + "release_date": "2021-07-27", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-winter-assault-mp028.json b/data/game/ti/tiger-tank-59-winter-assault-mp028.json new file mode 100644 index 000000000000..f53ab6772d74 --- /dev/null +++ b/data/game/ti/tiger-tank-59-winter-assault-mp028.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-winter-assault-mp028", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP028", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185704" + ], + "release_date": "2021-07-27", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-winter-assault-mp029.json b/data/game/ti/tiger-tank-59-winter-assault-mp029.json new file mode 100644 index 000000000000..6e33a60810c7 --- /dev/null +++ b/data/game/ti/tiger-tank-59-winter-assault-mp029.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-winter-assault-mp029", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP029", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185706" + ], + "release_date": "2021-07-27", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-winter-assault-mp030.json b/data/game/ti/tiger-tank-59-winter-assault-mp030.json new file mode 100644 index 000000000000..b7b69686e2c3 --- /dev/null +++ b/data/game/ti/tiger-tank-59-winter-assault-mp030.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-winter-assault-mp030", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP030", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185707" + ], + "release_date": "2021-07-27", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-winter-assault-mp031.json b/data/game/ti/tiger-tank-59-winter-assault-mp031.json new file mode 100644 index 000000000000..3afeec584398 --- /dev/null +++ b/data/game/ti/tiger-tank-59-winter-assault-mp031.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-winter-assault-mp031", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP031", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185708" + ], + "release_date": "2021-07-27", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-winter-assault-mp032.json b/data/game/ti/tiger-tank-59-winter-assault-mp032.json new file mode 100644 index 000000000000..38d299dde47f --- /dev/null +++ b/data/game/ti/tiger-tank-59-winter-assault-mp032.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-winter-assault-mp032", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP032", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185710" + ], + "release_date": "2021-07-27", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-winter-assault-mp033.json b/data/game/ti/tiger-tank-59-winter-assault-mp033.json new file mode 100644 index 000000000000..930ea2e6ac2a --- /dev/null +++ b/data/game/ti/tiger-tank-59-winter-assault-mp033.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-winter-assault-mp033", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP033", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185712" + ], + "release_date": "2021-07-27", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-winter-assault-mp034.json b/data/game/ti/tiger-tank-59-winter-assault-mp034.json new file mode 100644 index 000000000000..189d3ba416f7 --- /dev/null +++ b/data/game/ti/tiger-tank-59-winter-assault-mp034.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-winter-assault-mp034", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP034", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185714" + ], + "release_date": "2021-07-27", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-winter-assault-mp035.json b/data/game/ti/tiger-tank-59-winter-assault-mp035.json new file mode 100644 index 000000000000..3009a1fd3173 --- /dev/null +++ b/data/game/ti/tiger-tank-59-winter-assault-mp035.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-winter-assault-mp035", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP035", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185715" + ], + "release_date": "2021-07-27", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-winter-assault-mp036.json b/data/game/ti/tiger-tank-59-winter-assault-mp036.json new file mode 100644 index 000000000000..d3dd4b729257 --- /dev/null +++ b/data/game/ti/tiger-tank-59-winter-assault-mp036.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-winter-assault-mp036", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP036", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185716" + ], + "release_date": "2021-07-31", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-winter-assault-mp037.json b/data/game/ti/tiger-tank-59-winter-assault-mp037.json new file mode 100644 index 000000000000..b35a510452f1 --- /dev/null +++ b/data/game/ti/tiger-tank-59-winter-assault-mp037.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-winter-assault-mp037", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP037", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185718" + ], + "release_date": "2021-07-31", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-winter-assault-mp038.json b/data/game/ti/tiger-tank-59-winter-assault-mp038.json new file mode 100644 index 000000000000..6b66118b42e6 --- /dev/null +++ b/data/game/ti/tiger-tank-59-winter-assault-mp038.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-winter-assault-mp038", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP038", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185719" + ], + "release_date": "2021-07-31", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-winter-assault-mp039.json b/data/game/ti/tiger-tank-59-winter-assault-mp039.json new file mode 100644 index 000000000000..b9b324af827f --- /dev/null +++ b/data/game/ti/tiger-tank-59-winter-assault-mp039.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-winter-assault-mp039", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP039", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185720" + ], + "release_date": "2021-07-31", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-winter-assault-mp040.json b/data/game/ti/tiger-tank-59-winter-assault-mp040.json new file mode 100644 index 000000000000..9dace1e7606c --- /dev/null +++ b/data/game/ti/tiger-tank-59-winter-assault-mp040.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-winter-assault-mp040", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP040", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185722" + ], + "release_date": "2021-07-31", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-winter-assault-mp041.json b/data/game/ti/tiger-tank-59-winter-assault-mp041.json new file mode 100644 index 000000000000..484de3af59e9 --- /dev/null +++ b/data/game/ti/tiger-tank-59-winter-assault-mp041.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-winter-assault-mp041", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP041", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185724" + ], + "release_date": "2021-07-31", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-winter-assault-mp042.json b/data/game/ti/tiger-tank-59-winter-assault-mp042.json new file mode 100644 index 000000000000..f1b4347a92e1 --- /dev/null +++ b/data/game/ti/tiger-tank-59-winter-assault-mp042.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-winter-assault-mp042", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP042", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185726" + ], + "release_date": "2021-07-31", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-winter-assault-mp043.json b/data/game/ti/tiger-tank-59-winter-assault-mp043.json new file mode 100644 index 000000000000..a0e69dac9bb0 --- /dev/null +++ b/data/game/ti/tiger-tank-59-winter-assault-mp043.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-winter-assault-mp043", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP043", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185730" + ], + "release_date": "2021-07-31", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-winter-assault-mp044.json b/data/game/ti/tiger-tank-59-winter-assault-mp044.json new file mode 100644 index 000000000000..41f575cd9480 --- /dev/null +++ b/data/game/ti/tiger-tank-59-winter-assault-mp044.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-winter-assault-mp044", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP044", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185733" + ], + "release_date": "2021-08-04", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-winter-assault-mp045.json b/data/game/ti/tiger-tank-59-winter-assault-mp045.json new file mode 100644 index 000000000000..81ee8b4f43d0 --- /dev/null +++ b/data/game/ti/tiger-tank-59-winter-assault-mp045.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-winter-assault-mp045", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP045", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185735" + ], + "release_date": "2021-07-31", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-winter-assault-mp046.json b/data/game/ti/tiger-tank-59-winter-assault-mp046.json new file mode 100644 index 000000000000..41224687aeb5 --- /dev/null +++ b/data/game/ti/tiger-tank-59-winter-assault-mp046.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-winter-assault-mp046", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP046", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185737" + ], + "release_date": "2021-08-04", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-winter-assault-mp047.json b/data/game/ti/tiger-tank-59-winter-assault-mp047.json new file mode 100644 index 000000000000..b59e2da19a45 --- /dev/null +++ b/data/game/ti/tiger-tank-59-winter-assault-mp047.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-winter-assault-mp047", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP047", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185738" + ], + "release_date": "2021-08-04", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-winter-assault-mp048.json b/data/game/ti/tiger-tank-59-winter-assault-mp048.json new file mode 100644 index 000000000000..c19c8be5513a --- /dev/null +++ b/data/game/ti/tiger-tank-59-winter-assault-mp048.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-winter-assault-mp048", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP048", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185742" + ], + "release_date": "2021-08-04", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-winter-assault-mp049.json b/data/game/ti/tiger-tank-59-winter-assault-mp049.json new file mode 100644 index 000000000000..1d4dff074259 --- /dev/null +++ b/data/game/ti/tiger-tank-59-winter-assault-mp049.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-winter-assault-mp049", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP049", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185744" + ], + "release_date": "2021-08-04", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-winter-assault-mp050.json b/data/game/ti/tiger-tank-59-winter-assault-mp050.json new file mode 100644 index 000000000000..c8d43cb6fd2b --- /dev/null +++ b/data/game/ti/tiger-tank-59-winter-assault-mp050.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-winter-assault-mp050", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP050", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185745" + ], + "release_date": "2021-08-04", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-winter-assault-mp051.json b/data/game/ti/tiger-tank-59-winter-assault-mp051.json new file mode 100644 index 000000000000..c2277f79fb79 --- /dev/null +++ b/data/game/ti/tiger-tank-59-winter-assault-mp051.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-winter-assault-mp051", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP051", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185747" + ], + "release_date": "2021-08-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-winter-assault-mp052.json b/data/game/ti/tiger-tank-59-winter-assault-mp052.json new file mode 100644 index 000000000000..a6becdcfa745 --- /dev/null +++ b/data/game/ti/tiger-tank-59-winter-assault-mp052.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-winter-assault-mp052", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP052", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185749" + ], + "release_date": "2021-08-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-winter-assault-mp053.json b/data/game/ti/tiger-tank-59-winter-assault-mp053.json new file mode 100644 index 000000000000..608660dd8247 --- /dev/null +++ b/data/game/ti/tiger-tank-59-winter-assault-mp053.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-winter-assault-mp053", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP053", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185752" + ], + "release_date": "2021-08-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-winter-assault-mp054.json b/data/game/ti/tiger-tank-59-winter-assault-mp054.json new file mode 100644 index 000000000000..7f929235728d --- /dev/null +++ b/data/game/ti/tiger-tank-59-winter-assault-mp054.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-winter-assault-mp054", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP054", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185753" + ], + "release_date": "2021-08-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-winter-assault-mp055.json b/data/game/ti/tiger-tank-59-winter-assault-mp055.json new file mode 100644 index 000000000000..9cba9787c821 --- /dev/null +++ b/data/game/ti/tiger-tank-59-winter-assault-mp055.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-winter-assault-mp055", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP055", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185754" + ], + "release_date": "2021-08-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-winter-assault-mp056.json b/data/game/ti/tiger-tank-59-winter-assault-mp056.json new file mode 100644 index 000000000000..5969d66c9170 --- /dev/null +++ b/data/game/ti/tiger-tank-59-winter-assault-mp056.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-winter-assault-mp056", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP056", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185755" + ], + "release_date": "2021-08-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-winter-assault-mp057.json b/data/game/ti/tiger-tank-59-winter-assault-mp057.json new file mode 100644 index 000000000000..7c4bbcca76e6 --- /dev/null +++ b/data/game/ti/tiger-tank-59-winter-assault-mp057.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-winter-assault-mp057", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP057", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185756" + ], + "release_date": "2021-08-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-winter-assault-mp058.json b/data/game/ti/tiger-tank-59-winter-assault-mp058.json new file mode 100644 index 000000000000..9ab6233765f5 --- /dev/null +++ b/data/game/ti/tiger-tank-59-winter-assault-mp058.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-winter-assault-mp058", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP058", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185758" + ], + "release_date": "2021-08-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-winter-assault-mp059.json b/data/game/ti/tiger-tank-59-winter-assault-mp059.json new file mode 100644 index 000000000000..9681a0be9430 --- /dev/null +++ b/data/game/ti/tiger-tank-59-winter-assault-mp059.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-winter-assault-mp059", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP059", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185761" + ], + "release_date": "2021-08-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-winter-assault-mp060.json b/data/game/ti/tiger-tank-59-winter-assault-mp060.json new file mode 100644 index 000000000000..7ce8db1bf731 --- /dev/null +++ b/data/game/ti/tiger-tank-59-winter-assault-mp060.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-winter-assault-mp060", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP060", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185763" + ], + "release_date": "2021-08-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-winter-assault-mp061.json b/data/game/ti/tiger-tank-59-winter-assault-mp061.json new file mode 100644 index 000000000000..aebccaf8772c --- /dev/null +++ b/data/game/ti/tiger-tank-59-winter-assault-mp061.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-winter-assault-mp061", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP061", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185764" + ], + "release_date": "2021-08-14", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-winter-assault-mp062.json b/data/game/ti/tiger-tank-59-winter-assault-mp062.json new file mode 100644 index 000000000000..74132ea2d8b6 --- /dev/null +++ b/data/game/ti/tiger-tank-59-winter-assault-mp062.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-winter-assault-mp062", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP062", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185765" + ], + "release_date": "2021-08-14", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-winter-assault-mp063.json b/data/game/ti/tiger-tank-59-winter-assault-mp063.json new file mode 100644 index 000000000000..812efad3b120 --- /dev/null +++ b/data/game/ti/tiger-tank-59-winter-assault-mp063.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-winter-assault-mp063", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP063", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185768" + ], + "release_date": "2021-08-14", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-winter-assault-mp064.json b/data/game/ti/tiger-tank-59-winter-assault-mp064.json new file mode 100644 index 000000000000..ffa8660deea2 --- /dev/null +++ b/data/game/ti/tiger-tank-59-winter-assault-mp064.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-winter-assault-mp064", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP064", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185769" + ], + "release_date": "2021-08-14", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-winter-assault-mp065.json b/data/game/ti/tiger-tank-59-winter-assault-mp065.json new file mode 100644 index 000000000000..5f31fa7affc6 --- /dev/null +++ b/data/game/ti/tiger-tank-59-winter-assault-mp065.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-winter-assault-mp065", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP065", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185772" + ], + "release_date": "2021-08-14", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-winter-assault-mp066.json b/data/game/ti/tiger-tank-59-winter-assault-mp066.json new file mode 100644 index 000000000000..35c0b7b28a9d --- /dev/null +++ b/data/game/ti/tiger-tank-59-winter-assault-mp066.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-winter-assault-mp066", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP066", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185773" + ], + "release_date": "2021-08-14", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-winter-assault-mp067.json b/data/game/ti/tiger-tank-59-winter-assault-mp067.json new file mode 100644 index 000000000000..7bb327c5129b --- /dev/null +++ b/data/game/ti/tiger-tank-59-winter-assault-mp067.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-winter-assault-mp067", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP067", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185774" + ], + "release_date": "2021-08-14", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-winter-assault-mp068.json b/data/game/ti/tiger-tank-59-winter-assault-mp068.json new file mode 100644 index 000000000000..48a86876dcda --- /dev/null +++ b/data/game/ti/tiger-tank-59-winter-assault-mp068.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-winter-assault-mp068", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP068", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185776" + ], + "release_date": "2021-08-14", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-winter-assault-mp069.json b/data/game/ti/tiger-tank-59-winter-assault-mp069.json new file mode 100644 index 000000000000..e0ab168a7249 --- /dev/null +++ b/data/game/ti/tiger-tank-59-winter-assault-mp069.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-winter-assault-mp069", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP069", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185777" + ], + "release_date": "2021-08-14", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-winter-assault-mp070.json b/data/game/ti/tiger-tank-59-winter-assault-mp070.json new file mode 100644 index 000000000000..a6db1e8b4fd5 --- /dev/null +++ b/data/game/ti/tiger-tank-59-winter-assault-mp070.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-winter-assault-mp070", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP070", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185780" + ], + "release_date": "2021-08-14", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-winter-assault-mp071.json b/data/game/ti/tiger-tank-59-winter-assault-mp071.json new file mode 100644 index 000000000000..c5790cea840c --- /dev/null +++ b/data/game/ti/tiger-tank-59-winter-assault-mp071.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-winter-assault-mp071", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP071", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185781" + ], + "release_date": "2021-08-19", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-winter-assault-mp072.json b/data/game/ti/tiger-tank-59-winter-assault-mp072.json new file mode 100644 index 000000000000..a586f6a1eeee --- /dev/null +++ b/data/game/ti/tiger-tank-59-winter-assault-mp072.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-winter-assault-mp072", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP072", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185783" + ], + "release_date": "2021-08-19", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-winter-assault-mp073.json b/data/game/ti/tiger-tank-59-winter-assault-mp073.json new file mode 100644 index 000000000000..0d865fe6cdd4 --- /dev/null +++ b/data/game/ti/tiger-tank-59-winter-assault-mp073.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-winter-assault-mp073", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP073", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185784" + ], + "release_date": "2021-08-19", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-winter-assault-mp074.json b/data/game/ti/tiger-tank-59-winter-assault-mp074.json new file mode 100644 index 000000000000..043502c0c5c5 --- /dev/null +++ b/data/game/ti/tiger-tank-59-winter-assault-mp074.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-winter-assault-mp074", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP074", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185788" + ], + "release_date": "2021-08-19", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-winter-assault-mp075.json b/data/game/ti/tiger-tank-59-winter-assault-mp075.json new file mode 100644 index 000000000000..fac4e8a41eeb --- /dev/null +++ b/data/game/ti/tiger-tank-59-winter-assault-mp075.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-winter-assault-mp075", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP075", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185789" + ], + "release_date": "2021-08-19", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-winter-assault-mp076.json b/data/game/ti/tiger-tank-59-winter-assault-mp076.json new file mode 100644 index 000000000000..7d4ff070e2bf --- /dev/null +++ b/data/game/ti/tiger-tank-59-winter-assault-mp076.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-winter-assault-mp076", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP076", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185790" + ], + "release_date": "2021-08-19", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-winter-assault-mp077.json b/data/game/ti/tiger-tank-59-winter-assault-mp077.json new file mode 100644 index 000000000000..a6462a974973 --- /dev/null +++ b/data/game/ti/tiger-tank-59-winter-assault-mp077.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-winter-assault-mp077", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP077", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185792" + ], + "release_date": "2021-08-19", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-winter-assault-mp078.json b/data/game/ti/tiger-tank-59-winter-assault-mp078.json new file mode 100644 index 000000000000..79578f09a71f --- /dev/null +++ b/data/game/ti/tiger-tank-59-winter-assault-mp078.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-winter-assault-mp078", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP078", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185793" + ], + "release_date": "2021-08-19", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-winter-assault-mp079.json b/data/game/ti/tiger-tank-59-winter-assault-mp079.json new file mode 100644 index 000000000000..c047b89ef7b6 --- /dev/null +++ b/data/game/ti/tiger-tank-59-winter-assault-mp079.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-winter-assault-mp079", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP079", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185795" + ], + "release_date": "2021-08-19", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-winter-assault-mp080.json b/data/game/ti/tiger-tank-59-winter-assault-mp080.json new file mode 100644 index 000000000000..0bc4ccfa58ca --- /dev/null +++ b/data/game/ti/tiger-tank-59-winter-assault-mp080.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-winter-assault-mp080", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP080", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185797" + ], + "release_date": "2021-08-19", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-winter-assault-mp081.json b/data/game/ti/tiger-tank-59-winter-assault-mp081.json new file mode 100644 index 000000000000..cf88e14bab34 --- /dev/null +++ b/data/game/ti/tiger-tank-59-winter-assault-mp081.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-winter-assault-mp081", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP081", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185798" + ], + "release_date": "2021-08-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-winter-assault-mp082.json b/data/game/ti/tiger-tank-59-winter-assault-mp082.json new file mode 100644 index 000000000000..3c0fdf6f501e --- /dev/null +++ b/data/game/ti/tiger-tank-59-winter-assault-mp082.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-winter-assault-mp082", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP082", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185800" + ], + "release_date": "2021-08-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-winter-assault-mp083.json b/data/game/ti/tiger-tank-59-winter-assault-mp083.json new file mode 100644 index 000000000000..17d1091d7760 --- /dev/null +++ b/data/game/ti/tiger-tank-59-winter-assault-mp083.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-winter-assault-mp083", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP083", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185801" + ], + "release_date": "2021-08-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-winter-assault-mp084.json b/data/game/ti/tiger-tank-59-winter-assault-mp084.json new file mode 100644 index 000000000000..e6f6b0c121c0 --- /dev/null +++ b/data/game/ti/tiger-tank-59-winter-assault-mp084.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-winter-assault-mp084", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP084", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185802" + ], + "release_date": "2021-08-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-winter-assault-mp085.json b/data/game/ti/tiger-tank-59-winter-assault-mp085.json new file mode 100644 index 000000000000..38fbd6109150 --- /dev/null +++ b/data/game/ti/tiger-tank-59-winter-assault-mp085.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-winter-assault-mp085", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP085", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185803" + ], + "release_date": "2021-08-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-winter-assault-mp086.json b/data/game/ti/tiger-tank-59-winter-assault-mp086.json new file mode 100644 index 000000000000..0c017570fc43 --- /dev/null +++ b/data/game/ti/tiger-tank-59-winter-assault-mp086.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-winter-assault-mp086", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP086", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185804" + ], + "release_date": "2021-08-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-winter-assault-mp087.json b/data/game/ti/tiger-tank-59-winter-assault-mp087.json new file mode 100644 index 000000000000..b41956822053 --- /dev/null +++ b/data/game/ti/tiger-tank-59-winter-assault-mp087.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-winter-assault-mp087", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP087", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185806" + ], + "release_date": "2021-08-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-winter-assault-mp088.json b/data/game/ti/tiger-tank-59-winter-assault-mp088.json new file mode 100644 index 000000000000..7550189748ef --- /dev/null +++ b/data/game/ti/tiger-tank-59-winter-assault-mp088.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-winter-assault-mp088", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP088", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185808" + ], + "release_date": "2021-08-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-winter-assault-mp089.json b/data/game/ti/tiger-tank-59-winter-assault-mp089.json new file mode 100644 index 000000000000..f30b91426890 --- /dev/null +++ b/data/game/ti/tiger-tank-59-winter-assault-mp089.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-winter-assault-mp089", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP089", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185810" + ], + "release_date": "2021-08-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-winter-assault-mp090.json b/data/game/ti/tiger-tank-59-winter-assault-mp090.json new file mode 100644 index 000000000000..289aad910dba --- /dev/null +++ b/data/game/ti/tiger-tank-59-winter-assault-mp090.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-winter-assault-mp090", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP090", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185811" + ], + "release_date": "2021-08-24", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-winter-assault-mp091.json b/data/game/ti/tiger-tank-59-winter-assault-mp091.json new file mode 100644 index 000000000000..6762d24729d5 --- /dev/null +++ b/data/game/ti/tiger-tank-59-winter-assault-mp091.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-winter-assault-mp091", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP091", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185812" + ], + "release_date": "2021-09-04", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-winter-assault-mp092.json b/data/game/ti/tiger-tank-59-winter-assault-mp092.json new file mode 100644 index 000000000000..fe81333327f8 --- /dev/null +++ b/data/game/ti/tiger-tank-59-winter-assault-mp092.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-winter-assault-mp092", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP092", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185814" + ], + "release_date": "2021-09-04", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-winter-assault-mp093.json b/data/game/ti/tiger-tank-59-winter-assault-mp093.json new file mode 100644 index 000000000000..3b6c1dc0a895 --- /dev/null +++ b/data/game/ti/tiger-tank-59-winter-assault-mp093.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-winter-assault-mp093", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP093", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185816" + ], + "release_date": "2021-09-04", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-winter-assault-mp094.json b/data/game/ti/tiger-tank-59-winter-assault-mp094.json new file mode 100644 index 000000000000..aa33bcc500ef --- /dev/null +++ b/data/game/ti/tiger-tank-59-winter-assault-mp094.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-winter-assault-mp094", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP094", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185820" + ], + "release_date": "2021-09-04", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-winter-assault-mp095.json b/data/game/ti/tiger-tank-59-winter-assault-mp095.json new file mode 100644 index 000000000000..b4d689b0420d --- /dev/null +++ b/data/game/ti/tiger-tank-59-winter-assault-mp095.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-winter-assault-mp095", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP095", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185823" + ], + "release_date": "2021-09-04", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-winter-assault-mp096.json b/data/game/ti/tiger-tank-59-winter-assault-mp096.json new file mode 100644 index 000000000000..7f41a0fd5b0c --- /dev/null +++ b/data/game/ti/tiger-tank-59-winter-assault-mp096.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-winter-assault-mp096", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP096", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185824" + ], + "release_date": "2021-09-04", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-winter-assault-mp097.json b/data/game/ti/tiger-tank-59-winter-assault-mp097.json new file mode 100644 index 000000000000..f45ce9fccfce --- /dev/null +++ b/data/game/ti/tiger-tank-59-winter-assault-mp097.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-winter-assault-mp097", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP097", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185825" + ], + "release_date": "2021-09-04", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-winter-assault-mp098.json b/data/game/ti/tiger-tank-59-winter-assault-mp098.json new file mode 100644 index 000000000000..64f2547124d2 --- /dev/null +++ b/data/game/ti/tiger-tank-59-winter-assault-mp098.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-winter-assault-mp098", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP098", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185826" + ], + "release_date": "2021-09-04", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-winter-assault-mp099.json b/data/game/ti/tiger-tank-59-winter-assault-mp099.json new file mode 100644 index 000000000000..898006ad662e --- /dev/null +++ b/data/game/ti/tiger-tank-59-winter-assault-mp099.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-winter-assault-mp099", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP099", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185827" + ], + "release_date": "2021-09-04", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/tiger-tank-59-winter-assault-mp100.json b/data/game/ti/tiger-tank-59-winter-assault-mp100.json new file mode 100644 index 000000000000..fd10dcd02ad2 --- /dev/null +++ b/data/game/ti/tiger-tank-59-winter-assault-mp100.json @@ -0,0 +1,18 @@ +{ + "slug": "tiger-tank-59-winter-assault-mp100", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP100", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185828" + ], + "release_date": "2021-09-04", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ] +} diff --git a/data/game/ti/time-and-magik-the-trilogy.json b/data/game/ti/time-and-magik-the-trilogy.json new file mode 100644 index 000000000000..72e62efaa786 --- /dev/null +++ b/data/game/ti/time-and-magik-the-trilogy.json @@ -0,0 +1,22 @@ +{ + "slug": "time-and-magik-the-trilogy", + "name": "Time and Magik: The Trilogy", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7805248" + ], + "release_date": "1988-01-01", + "platforms": [ + "Classic Mac OS", + "Amstrad PCW", + "Amstrad CPC", + "DOS", + "ZX Spectrum" + ], + "developers": [ + "Level 9 Computing" + ], + "publishers": [ + "Europress" + ] +} diff --git a/data/game/ti/time-locker-q118235323.json b/data/game/ti/time-locker-q118235323.json new file mode 100644 index 000000000000..bfa60a57f5fd --- /dev/null +++ b/data/game/ti/time-locker-q118235323.json @@ -0,0 +1,13 @@ +{ + "slug": "time-locker-q118235323", + "name": "Time Locker+", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118235323" + ], + "release_date": "2023-05-04", + "platforms": [ + "iPadOS", + "iOS" + ] +} diff --git a/data/game/ti/timekeepers-expansion-disk.json b/data/game/ti/timekeepers-expansion-disk.json new file mode 100644 index 000000000000..07244cc7e1b4 --- /dev/null +++ b/data/game/ti/timekeepers-expansion-disk.json @@ -0,0 +1,8 @@ +{ + "slug": "timekeepers-expansion-disk", + "name": "Timekeepers Expansion Disk", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126184622" + ] +} diff --git a/data/game/ti/timesplitters-4.json b/data/game/ti/timesplitters-4.json new file mode 100644 index 000000000000..44016f0ec760 --- /dev/null +++ b/data/game/ti/timesplitters-4.json @@ -0,0 +1,14 @@ +{ + "slug": "timesplitters-4", + "name": "TimeSplitters 4", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3110644" + ], + "genres": [ + "first-person shooter" + ], + "developers": [ + "Crytek UK" + ] +} diff --git a/data/game/ti/tiny-wings-q108559414.json b/data/game/ti/tiny-wings-q108559414.json new file mode 100644 index 000000000000..eddef07cf473 --- /dev/null +++ b/data/game/ti/tiny-wings-q108559414.json @@ -0,0 +1,17 @@ +{ + "slug": "tiny-wings-q108559414", + "name": "Tiny Wings+", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108559414" + ], + "release_date": "2021-10-15", + "platforms": [ + "tvOS", + "iPadOS", + "iOS" + ], + "developers": [ + "Andreas Illiger" + ] +} diff --git a/data/game/ti/titan-brawl.json b/data/game/ti/titan-brawl.json new file mode 100644 index 000000000000..1ea525fc65a8 --- /dev/null +++ b/data/game/ti/titan-brawl.json @@ -0,0 +1,8 @@ +{ + "slug": "titan-brawl", + "name": "Titan Brawl", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140472976" + ] +} diff --git a/data/game/ti/titan-q4350984.json b/data/game/ti/titan-q4350984.json new file mode 100644 index 000000000000..1930f3ad9957 --- /dev/null +++ b/data/game/ti/titan-q4350984.json @@ -0,0 +1,22 @@ +{ + "slug": "titan-q4350984", + "name": "Titan", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4350984" + ], + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "massively multiplayer online role-playing game", + "shooter game", + "science fiction video game" + ], + "developers": [ + "Blizzard Entertainment" + ], + "publishers": [ + "Blizzard Entertainment" + ] +} diff --git a/data/game/ti/titan-quest-anniversary-edition.json b/data/game/ti/titan-quest-anniversary-edition.json new file mode 100644 index 000000000000..b5d4e019bac0 --- /dev/null +++ b/data/game/ti/titan-quest-anniversary-edition.json @@ -0,0 +1,18 @@ +{ + "slug": "titan-quest-anniversary-edition", + "name": "Titan Quest Anniversary Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118905576" + ], + "release_date": "2016-08-31", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "action role-playing game" + ], + "publishers": [ + "THQ Nordic" + ] +} diff --git a/data/game/ti/titan-quest-immortal-throne.json b/data/game/ti/titan-quest-immortal-throne.json new file mode 100644 index 000000000000..e4b4f4e7c1eb --- /dev/null +++ b/data/game/ti/titan-quest-immortal-throne.json @@ -0,0 +1,21 @@ +{ + "slug": "titan-quest-immortal-throne", + "name": "Titan Quest: Immortal Throne", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2569838" + ], + "release_date": "2007-03-30", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "action role-playing game" + ], + "developers": [ + "Iron Lore Entertainment" + ], + "publishers": [ + "THQ" + ] +} diff --git a/data/game/ti/titanfall-2-ultimate-edition.json b/data/game/ti/titanfall-2-ultimate-edition.json new file mode 100644 index 000000000000..20cc4d0e02d2 --- /dev/null +++ b/data/game/ti/titanfall-2-ultimate-edition.json @@ -0,0 +1,8 @@ +{ + "slug": "titanfall-2-ultimate-edition", + "name": "Titanfall 2: Ultimate Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q92203823" + ] +} diff --git a/data/game/ti/titanfall-3.json b/data/game/ti/titanfall-3.json new file mode 100644 index 000000000000..3cf039bcc90b --- /dev/null +++ b/data/game/ti/titanfall-3.json @@ -0,0 +1,11 @@ +{ + "slug": "titanfall-3", + "name": "Titanfall 3", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q96745436" + ], + "developers": [ + "Respawn Entertainment" + ] +} diff --git a/data/game/ti/titanfall-deluxe-edition.json b/data/game/ti/titanfall-deluxe-edition.json new file mode 100644 index 000000000000..5900f44ea016 --- /dev/null +++ b/data/game/ti/titanfall-deluxe-edition.json @@ -0,0 +1,8 @@ +{ + "slug": "titanfall-deluxe-edition", + "name": "Titanfall Deluxe Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q92203660" + ] +} diff --git a/data/game/ti/titanfall-expedition.json b/data/game/ti/titanfall-expedition.json new file mode 100644 index 000000000000..14df0913e89f --- /dev/null +++ b/data/game/ti/titanfall-expedition.json @@ -0,0 +1,8 @@ +{ + "slug": "titanfall-expedition", + "name": "Titanfall: Expedition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125156652" + ] +} diff --git a/data/game/ti/titanfall-imc-rising.json b/data/game/ti/titanfall-imc-rising.json new file mode 100644 index 000000000000..ab2ffbb4f845 --- /dev/null +++ b/data/game/ti/titanfall-imc-rising.json @@ -0,0 +1,8 @@ +{ + "slug": "titanfall-imc-rising", + "name": "Titanfall: IMC Rising", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125156663" + ] +} diff --git a/data/game/ti/titanfall-online.json b/data/game/ti/titanfall-online.json new file mode 100644 index 000000000000..1c63dd284a78 --- /dev/null +++ b/data/game/ti/titanfall-online.json @@ -0,0 +1,8 @@ +{ + "slug": "titanfall-online", + "name": "Titanfall Online", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q98067406" + ] +} diff --git a/data/game/ti/titanreach.json b/data/game/ti/titanreach.json new file mode 100644 index 000000000000..4cbfb238c66d --- /dev/null +++ b/data/game/ti/titanreach.json @@ -0,0 +1,14 @@ +{ + "slug": "titanreach", + "name": "TitanReach", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110914344" + ], + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "massively multiplayer online role-playing game" + ] +} diff --git a/data/game/tm/tmnt-ninja-adventures.json b/data/game/tm/tmnt-ninja-adventures.json new file mode 100644 index 000000000000..6a246c02aabb --- /dev/null +++ b/data/game/tm/tmnt-ninja-adventures.json @@ -0,0 +1,9 @@ +{ + "slug": "tmnt-ninja-adventures", + "name": "TMNT: Ninja Adventures", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q97499006" + ], + "release_date": "2007-05-01" +} diff --git a/data/game/to/toaplan-arcade-shoot-em-up-collection-vol-1.json b/data/game/to/toaplan-arcade-shoot-em-up-collection-vol-1.json new file mode 100644 index 000000000000..7f225c3a59ec --- /dev/null +++ b/data/game/to/toaplan-arcade-shoot-em-up-collection-vol-1.json @@ -0,0 +1,23 @@ +{ + "slug": "toaplan-arcade-shoot-em-up-collection-vol-1", + "name": "Toaplan Arcade Shoot 'Em Up Collection Vol. 1", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q128493225" + ], + "release_date": "2023-02-14", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "shoot 'em up" + ], + "developers": [ + "Toaplan", + "Bitwave Games" + ], + "publishers": [ + "Bitwave Games" + ] +} diff --git a/data/game/to/toaplan-arcade-shoot-em-up-collection-vol-2.json b/data/game/to/toaplan-arcade-shoot-em-up-collection-vol-2.json new file mode 100644 index 000000000000..f1cab280cd63 --- /dev/null +++ b/data/game/to/toaplan-arcade-shoot-em-up-collection-vol-2.json @@ -0,0 +1,23 @@ +{ + "slug": "toaplan-arcade-shoot-em-up-collection-vol-2", + "name": "Toaplan Arcade Shoot 'Em Up Collection Vol. 2", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q128494414" + ], + "release_date": "2023-08-24", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "shoot 'em up" + ], + "developers": [ + "Toaplan", + "Bitwave Games" + ], + "publishers": [ + "Bitwave Games" + ] +} diff --git a/data/game/to/toaplan-arcade-shoot-em-up-collection-vol-3.json b/data/game/to/toaplan-arcade-shoot-em-up-collection-vol-3.json new file mode 100644 index 000000000000..6499df03957d --- /dev/null +++ b/data/game/to/toaplan-arcade-shoot-em-up-collection-vol-3.json @@ -0,0 +1,23 @@ +{ + "slug": "toaplan-arcade-shoot-em-up-collection-vol-3", + "name": "Toaplan Arcade Shoot 'Em Up Collection Vol. 3", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q128495801" + ], + "release_date": "2024-02-01", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "shoot 'em up" + ], + "developers": [ + "Toaplan", + "Bitwave Games" + ], + "publishers": [ + "Bitwave Games" + ] +} diff --git a/data/game/to/toaplan-arcade-shoot-em-up-collection-vol-4.json b/data/game/to/toaplan-arcade-shoot-em-up-collection-vol-4.json new file mode 100644 index 000000000000..f3edec30c026 --- /dev/null +++ b/data/game/to/toaplan-arcade-shoot-em-up-collection-vol-4.json @@ -0,0 +1,23 @@ +{ + "slug": "toaplan-arcade-shoot-em-up-collection-vol-4", + "name": "Toaplan Arcade Shoot 'Em Up Collection Vol. 4", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q128497599" + ], + "release_date": "2024-04-08", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "shoot 'em up" + ], + "developers": [ + "Toaplan", + "Bitwave Games" + ], + "publishers": [ + "Bitwave Games" + ] +} diff --git a/data/game/to/toaplan-arcade-shoot-em-up-ultimate-collection.json b/data/game/to/toaplan-arcade-shoot-em-up-ultimate-collection.json new file mode 100644 index 000000000000..466a67ebde05 --- /dev/null +++ b/data/game/to/toaplan-arcade-shoot-em-up-ultimate-collection.json @@ -0,0 +1,23 @@ +{ + "slug": "toaplan-arcade-shoot-em-up-ultimate-collection", + "name": "Toaplan Arcade Shoot 'Em Up Ultimate Collection", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q128499891" + ], + "release_date": "2024-04-08", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "shoot 'em up" + ], + "developers": [ + "Toaplan", + "Bitwave Games" + ], + "publishers": [ + "Bitwave Games" + ] +} diff --git a/data/game/to/toaplan-shooting-battle-1.json b/data/game/to/toaplan-shooting-battle-1.json new file mode 100644 index 000000000000..b60ca2486197 --- /dev/null +++ b/data/game/to/toaplan-shooting-battle-1.json @@ -0,0 +1,19 @@ +{ + "slug": "toaplan-shooting-battle-1", + "name": "Toaplan Shooting Battle 1", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q129649616" + ], + "release_date": "1996-08-30", + "genres": [ + "shoot 'em up" + ], + "developers": [ + "Gazelle", + "Toaplan" + ], + "publishers": [ + "Banpresto" + ] +} diff --git a/data/game/to/tom-clancy-s-ghost-recon-desert-siege.json b/data/game/to/tom-clancy-s-ghost-recon-desert-siege.json new file mode 100644 index 000000000000..e350639e0a35 --- /dev/null +++ b/data/game/to/tom-clancy-s-ghost-recon-desert-siege.json @@ -0,0 +1,19 @@ +{ + "slug": "tom-clancy-s-ghost-recon-desert-siege", + "name": "Tom Clancy's Ghost Recon: Desert Siege", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2604001" + ], + "release_date": "2002-03-27", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "tactical shooter" + ], + "developers": [ + "Red Storm Entertainment" + ] +} diff --git a/data/game/to/tom-clancy-s-ghost-recon-frontline.json b/data/game/to/tom-clancy-s-ghost-recon-frontline.json new file mode 100644 index 000000000000..cd4ca2f0db4f --- /dev/null +++ b/data/game/to/tom-clancy-s-ghost-recon-frontline.json @@ -0,0 +1,17 @@ +{ + "slug": "tom-clancy-s-ghost-recon-frontline", + "name": "Tom Clancy's Ghost Recon Frontline", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108809770" + ], + "platforms": [ + "PlayStation 4", + "Xbox Series X and Series S", + "PlayStation 5", + "Microsoft Windows" + ], + "developers": [ + "Ubisoft Romania" + ] +} diff --git a/data/game/to/tom-clancy-s-ghost-recon-island-thunder.json b/data/game/to/tom-clancy-s-ghost-recon-island-thunder.json new file mode 100644 index 000000000000..746d42346d38 --- /dev/null +++ b/data/game/to/tom-clancy-s-ghost-recon-island-thunder.json @@ -0,0 +1,18 @@ +{ + "slug": "tom-clancy-s-ghost-recon-island-thunder", + "name": "Tom Clancy's Ghost Recon: Island Thunder", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1826994" + ], + "release_date": "2002-09-25", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter" + ], + "developers": [ + "Red Storm Entertainment" + ] +} diff --git a/data/game/to/tom-clancy-s-ghost-recon-jungle-storm.json b/data/game/to/tom-clancy-s-ghost-recon-jungle-storm.json new file mode 100644 index 000000000000..1f564b9d8558 --- /dev/null +++ b/data/game/to/tom-clancy-s-ghost-recon-jungle-storm.json @@ -0,0 +1,18 @@ +{ + "slug": "tom-clancy-s-ghost-recon-jungle-storm", + "name": "Tom Clancy's Ghost Recon: Jungle Storm", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1828342" + ], + "release_date": "2004-03-12", + "platforms": [ + "N-Gage" + ], + "genres": [ + "first-person shooter" + ], + "developers": [ + "Red Storm Entertainment" + ] +} diff --git a/data/game/to/tom-clancy-s-rainbow-6-patriots.json b/data/game/to/tom-clancy-s-rainbow-6-patriots.json new file mode 100644 index 000000000000..b175ed1a2afb --- /dev/null +++ b/data/game/to/tom-clancy-s-rainbow-6-patriots.json @@ -0,0 +1,15 @@ +{ + "slug": "tom-clancy-s-rainbow-6-patriots", + "name": "Tom Clancy's Rainbow 6: Patriots", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1756100" + ], + "platforms": [ + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "tactical shooter" + ] +} diff --git a/data/game/to/tom-clancy-s-splinter-cell-mission-pack.json b/data/game/to/tom-clancy-s-splinter-cell-mission-pack.json new file mode 100644 index 000000000000..fb05af1f992f --- /dev/null +++ b/data/game/to/tom-clancy-s-splinter-cell-mission-pack.json @@ -0,0 +1,15 @@ +{ + "slug": "tom-clancy-s-splinter-cell-mission-pack", + "name": "Tom Clancy's Splinter Cell: Mission Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110817131" + ], + "release_date": "2004-02-14", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "action game" + ] +} diff --git a/data/game/to/tom-clancy-s-the-division-heartland.json b/data/game/to/tom-clancy-s-the-division-heartland.json new file mode 100644 index 000000000000..b77f25361694 --- /dev/null +++ b/data/game/to/tom-clancy-s-the-division-heartland.json @@ -0,0 +1,20 @@ +{ + "slug": "tom-clancy-s-the-division-heartland", + "name": "Tom Clancy's The Division Heartland", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108488461" + ], + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 5", + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "third-person shooter" + ], + "developers": [ + "Red Storm Entertainment" + ] +} diff --git a/data/game/to/tomazquake.json b/data/game/to/tomazquake.json new file mode 100644 index 000000000000..0688db52f087 --- /dev/null +++ b/data/game/to/tomazquake.json @@ -0,0 +1,8 @@ +{ + "slug": "tomazquake", + "name": "TomazQuake", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124652526" + ] +} diff --git a/data/game/to/tomb-raider-definitive-edition.json b/data/game/to/tomb-raider-definitive-edition.json new file mode 100644 index 000000000000..3e487f58cf6f --- /dev/null +++ b/data/game/to/tomb-raider-definitive-edition.json @@ -0,0 +1,13 @@ +{ + "slug": "tomb-raider-definitive-edition", + "name": "Tomb Raider: Definitive Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105985883" + ], + "release_date": "2014-01-28", + "platforms": [ + "PlayStation 4", + "Microsoft Windows" + ] +} diff --git a/data/game/to/tomb-raider-definitive-survivor-trilogy.json b/data/game/to/tomb-raider-definitive-survivor-trilogy.json new file mode 100644 index 000000000000..ad47af96bf84 --- /dev/null +++ b/data/game/to/tomb-raider-definitive-survivor-trilogy.json @@ -0,0 +1,11 @@ +{ + "slug": "tomb-raider-definitive-survivor-trilogy", + "name": "Tomb Raider: Definitive Survivor Trilogy", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105985875" + ], + "platforms": [ + "Microsoft Windows" + ] +} diff --git a/data/game/to/tomb-raider-i-iii-remastered.json b/data/game/to/tomb-raider-i-iii-remastered.json new file mode 100644 index 000000000000..545161555426 --- /dev/null +++ b/data/game/to/tomb-raider-i-iii-remastered.json @@ -0,0 +1,28 @@ +{ + "slug": "tomb-raider-i-iii-remastered", + "name": "Tomb Raider I-III Remastered", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123272433" + ], + "release_date": "2024-02-14", + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 5", + "PlayStation 4", + "iOS", + "Microsoft Windows" + ], + "genres": [ + "adventure video game", + "puzzle video game", + "action game", + "action-adventure game" + ], + "developers": [ + "Aspyr" + ], + "publishers": [ + "Aspyr" + ] +} diff --git a/data/game/to/tomb-raider-ii-golden-mask.json b/data/game/to/tomb-raider-ii-golden-mask.json new file mode 100644 index 000000000000..b9ba1f37b31a --- /dev/null +++ b/data/game/to/tomb-raider-ii-golden-mask.json @@ -0,0 +1,17 @@ +{ + "slug": "tomb-raider-ii-golden-mask", + "name": "Tomb Raider II: Golden Mask", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3531019" + ], + "release_date": "1999-01-01", + "platforms": [ + "iPadOS", + "iOS", + "Microsoft Windows" + ], + "genres": [ + "action-adventure game" + ] +} diff --git a/data/game/to/tomb-raider-the-lost-artifact.json b/data/game/to/tomb-raider-the-lost-artifact.json new file mode 100644 index 000000000000..34777b97673d --- /dev/null +++ b/data/game/to/tomb-raider-the-lost-artifact.json @@ -0,0 +1,19 @@ +{ + "slug": "tomb-raider-the-lost-artifact", + "name": "Tomb Raider: The Lost Artifact", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q12343253" + ], + "release_date": "2000-01-01", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "action-adventure game" + ], + "publishers": [ + "Eidos Interactive" + ] +} diff --git a/data/game/to/tomb-raider-trilogy.json b/data/game/to/tomb-raider-trilogy.json new file mode 100644 index 000000000000..67d44cac8ae1 --- /dev/null +++ b/data/game/to/tomb-raider-trilogy.json @@ -0,0 +1,15 @@ +{ + "slug": "tomb-raider-trilogy", + "name": "Tomb Raider Trilogy", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18281126" + ], + "platforms": [ + "PlayStation 3", + "Microsoft Windows" + ], + "developers": [ + "Crystal Dynamics" + ] +} diff --git a/data/game/to/tomb-raider-underworld-beneath-the-ashes.json b/data/game/to/tomb-raider-underworld-beneath-the-ashes.json new file mode 100644 index 000000000000..0e9e34385d77 --- /dev/null +++ b/data/game/to/tomb-raider-underworld-beneath-the-ashes.json @@ -0,0 +1,8 @@ +{ + "slug": "tomb-raider-underworld-beneath-the-ashes", + "name": "Tomb Raider Underworld: Beneath the Ashes", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126948082" + ] +} diff --git a/data/game/to/tomb-raider-underworld-lara-s-shadow.json b/data/game/to/tomb-raider-underworld-lara-s-shadow.json new file mode 100644 index 000000000000..ef06e35cec14 --- /dev/null +++ b/data/game/to/tomb-raider-underworld-lara-s-shadow.json @@ -0,0 +1,8 @@ +{ + "slug": "tomb-raider-underworld-lara-s-shadow", + "name": "Tomb Raider Underworld: Lara's Shadow", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126948087" + ] +} diff --git a/data/game/to/tonic-trouble-2.json b/data/game/to/tonic-trouble-2.json new file mode 100644 index 000000000000..f81471c616b3 --- /dev/null +++ b/data/game/to/tonic-trouble-2.json @@ -0,0 +1,8 @@ +{ + "slug": "tonic-trouble-2", + "name": "Tonic Trouble 2", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72709026" + ] +} diff --git a/data/game/to/tony-hawk-s-american-wasteland-collector-s-edition.json b/data/game/to/tony-hawk-s-american-wasteland-collector-s-edition.json new file mode 100644 index 000000000000..9837c6a7a424 --- /dev/null +++ b/data/game/to/tony-hawk-s-american-wasteland-collector-s-edition.json @@ -0,0 +1,15 @@ +{ + "slug": "tony-hawk-s-american-wasteland-collector-s-edition", + "name": "Tony Hawk's American Wasteland: Collector's Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135263782" + ], + "release_date": "2005-10-18", + "developers": [ + "Neversoft" + ], + "publishers": [ + "Activision" + ] +} diff --git a/data/game/to/top-trumps-adventures.json b/data/game/to/top-trumps-adventures.json new file mode 100644 index 000000000000..ee4535aa435f --- /dev/null +++ b/data/game/to/top-trumps-adventures.json @@ -0,0 +1,12 @@ +{ + "slug": "top-trumps-adventures", + "name": "Top Trumps Adventures", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7824645" + ], + "release_date": "2007-07-12", + "platforms": [ + "Wii" + ] +} diff --git a/data/game/to/toree-s-3d-platformer-collection.json b/data/game/to/toree-s-3d-platformer-collection.json new file mode 100644 index 000000000000..fc24b2919a91 --- /dev/null +++ b/data/game/to/toree-s-3d-platformer-collection.json @@ -0,0 +1,15 @@ +{ + "slug": "toree-s-3d-platformer-collection", + "name": "Toree's 3D Platformer Collection", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115257334" + ], + "release_date": "2022-07-15", + "platforms": [ + "Xbox Series X and Series S" + ], + "publishers": [ + "Diplodocus Games" + ] +} diff --git a/data/game/to/tornado-operation-desert-storm.json b/data/game/to/tornado-operation-desert-storm.json new file mode 100644 index 000000000000..95f70886dcd1 --- /dev/null +++ b/data/game/to/tornado-operation-desert-storm.json @@ -0,0 +1,8 @@ +{ + "slug": "tornado-operation-desert-storm", + "name": "Tornado: Operation Desert Storm", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135012432" + ] +} diff --git a/data/game/to/tornado-q122822233.json b/data/game/to/tornado-q122822233.json new file mode 100644 index 000000000000..853fecde6c7b --- /dev/null +++ b/data/game/to/tornado-q122822233.json @@ -0,0 +1,17 @@ +{ + "slug": "tornado-q122822233", + "name": "Tornado", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122822233" + ], + "release_date": "2023-09-17", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "action game", + "simulation video game" + ] +} diff --git a/data/game/to/toro-station.json b/data/game/to/toro-station.json new file mode 100644 index 000000000000..ace73f4de80c --- /dev/null +++ b/data/game/to/toro-station.json @@ -0,0 +1,8 @@ +{ + "slug": "toro-station", + "name": "Toro Station", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11322208" + ] +} diff --git a/data/game/to/total-annihilation-2.json b/data/game/to/total-annihilation-2.json new file mode 100644 index 000000000000..e50279302377 --- /dev/null +++ b/data/game/to/total-annihilation-2.json @@ -0,0 +1,8 @@ +{ + "slug": "total-annihilation-2", + "name": "Total Annihilation 2", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137848303" + ] +} diff --git a/data/game/to/total-annihilation-battle-tactics.json b/data/game/to/total-annihilation-battle-tactics.json new file mode 100644 index 000000000000..39ad6f4610c1 --- /dev/null +++ b/data/game/to/total-annihilation-battle-tactics.json @@ -0,0 +1,21 @@ +{ + "slug": "total-annihilation-battle-tactics", + "name": "Total Annihilation: Battle Tactics", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3532665" + ], + "release_date": "1998-06-30", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "real-time strategy" + ], + "developers": [ + "Cavedog Entertainment" + ], + "publishers": [ + "Atari, Inc." + ] +} diff --git a/data/game/to/total-annihilation-the-core-contingency.json b/data/game/to/total-annihilation-the-core-contingency.json new file mode 100644 index 000000000000..5cf572c10c4b --- /dev/null +++ b/data/game/to/total-annihilation-the-core-contingency.json @@ -0,0 +1,22 @@ +{ + "slug": "total-annihilation-the-core-contingency", + "name": "Total Annihilation: The Core Contingency", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4357791" + ], + "release_date": "1998-04-30", + "platforms": [ + "Classic Mac OS", + "Microsoft Windows" + ], + "genres": [ + "real-time strategy" + ], + "developers": [ + "Cavedog Entertainment" + ], + "publishers": [ + "Atari, Inc." + ] +} diff --git a/data/game/to/total-heaven.json b/data/game/to/total-heaven.json new file mode 100644 index 000000000000..ba616911d4a9 --- /dev/null +++ b/data/game/to/total-heaven.json @@ -0,0 +1,12 @@ +{ + "slug": "total-heaven", + "name": "Total Heaven", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q97924364" + ], + "release_date": "1998-05-01", + "platforms": [ + "Microsoft Windows" + ] +} diff --git a/data/game/to/total-overdose-2-tequila-gunrise.json b/data/game/to/total-overdose-2-tequila-gunrise.json new file mode 100644 index 000000000000..986225b07fd8 --- /dev/null +++ b/data/game/to/total-overdose-2-tequila-gunrise.json @@ -0,0 +1,11 @@ +{ + "slug": "total-overdose-2-tequila-gunrise", + "name": "Total Overdose 2: Tequila Gunrise", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10383835" + ], + "platforms": [ + "PlayStation 3" + ] +} diff --git a/data/game/to/total-victory-victory-or-defeat.json b/data/game/to/total-victory-victory-or-defeat.json new file mode 100644 index 000000000000..2b984781dde3 --- /dev/null +++ b/data/game/to/total-victory-victory-or-defeat.json @@ -0,0 +1,8 @@ +{ + "slug": "total-victory-victory-or-defeat", + "name": "Total Victory: Victory or Defeat", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122189811" + ] +} diff --git a/data/game/to/total-war-eras.json b/data/game/to/total-war-eras.json new file mode 100644 index 000000000000..08649c777cd8 --- /dev/null +++ b/data/game/to/total-war-eras.json @@ -0,0 +1,8 @@ +{ + "slug": "total-war-eras", + "name": "Total War: Eras", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q133796163" + ] +} diff --git a/data/game/to/total-war-rome-ii-desert-kingdoms-culture-pack.json b/data/game/to/total-war-rome-ii-desert-kingdoms-culture-pack.json new file mode 100644 index 000000000000..ed0cba20f07c --- /dev/null +++ b/data/game/to/total-war-rome-ii-desert-kingdoms-culture-pack.json @@ -0,0 +1,12 @@ +{ + "slug": "total-war-rome-ii-desert-kingdoms-culture-pack", + "name": "Total War: ROME II - Desert Kingdoms Culture Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115284062" + ], + "release_date": "2018-03-08", + "platforms": [ + "Microsoft Windows" + ] +} diff --git a/data/game/to/total-war-rome-ii-empire-divided-campaign-pack.json b/data/game/to/total-war-rome-ii-empire-divided-campaign-pack.json new file mode 100644 index 000000000000..6e142bd2b9fc --- /dev/null +++ b/data/game/to/total-war-rome-ii-empire-divided-campaign-pack.json @@ -0,0 +1,18 @@ +{ + "slug": "total-war-rome-ii-empire-divided-campaign-pack", + "name": "Total War: ROME II - Empire Divided Campaign Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115284037" + ], + "release_date": "2017-11-30", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Creative Assembly" + ], + "publishers": [ + "Sega" + ] +} diff --git a/data/game/to/total-war-three-kingdoms-a-world-betrayed.json b/data/game/to/total-war-three-kingdoms-a-world-betrayed.json new file mode 100644 index 000000000000..0dd6508c4cb7 --- /dev/null +++ b/data/game/to/total-war-three-kingdoms-a-world-betrayed.json @@ -0,0 +1,8 @@ +{ + "slug": "total-war-three-kingdoms-a-world-betrayed", + "name": "Total War: Three Kingdoms - A World Betrayed", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140448379" + ] +} diff --git a/data/game/to/total-war-warhammer-ii-mortal-empires.json b/data/game/to/total-war-warhammer-ii-mortal-empires.json new file mode 100644 index 000000000000..fae1d143b419 --- /dev/null +++ b/data/game/to/total-war-warhammer-ii-mortal-empires.json @@ -0,0 +1,8 @@ +{ + "slug": "total-war-warhammer-ii-mortal-empires", + "name": "Total War: Warhammer II - Mortal Empires", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140420155" + ] +} diff --git a/data/game/to/touch-striker.json b/data/game/to/touch-striker.json new file mode 100644 index 000000000000..7e9547cd4668 --- /dev/null +++ b/data/game/to/touch-striker.json @@ -0,0 +1,11 @@ +{ + "slug": "touch-striker", + "name": "Touch Striker", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122956448" + ], + "developers": [ + "Sega" + ] +} diff --git a/data/game/to/tour-golf-online.json b/data/game/to/tour-golf-online.json new file mode 100644 index 000000000000..3cc8d420c9b2 --- /dev/null +++ b/data/game/to/tour-golf-online.json @@ -0,0 +1,8 @@ +{ + "slug": "tour-golf-online", + "name": "Tour Golf Online", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140471234" + ] +} diff --git a/data/game/to/tower-battles.json b/data/game/to/tower-battles.json new file mode 100644 index 000000000000..ce73ca929b6f --- /dev/null +++ b/data/game/to/tower-battles.json @@ -0,0 +1,15 @@ +{ + "slug": "tower-battles", + "name": "Tower Battles", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131919646" + ], + "release_date": "2017-08-12", + "genres": [ + "tower defense" + ], + "developers": [ + "Planet3arth" + ] +} diff --git a/data/game/to/tower-defenders.json b/data/game/to/tower-defenders.json new file mode 100644 index 000000000000..01f73a00e51b --- /dev/null +++ b/data/game/to/tower-defenders.json @@ -0,0 +1,12 @@ +{ + "slug": "tower-defenders", + "name": "Tower Defenders", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131934425" + ], + "genres": [ + "fantasy", + "tower defense" + ] +} diff --git a/data/game/to/tower-defense-simulator.json b/data/game/to/tower-defense-simulator.json new file mode 100644 index 000000000000..a016953b414f --- /dev/null +++ b/data/game/to/tower-defense-simulator.json @@ -0,0 +1,11 @@ +{ + "slug": "tower-defense-simulator", + "name": "Tower Defense Simulator", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131934402" + ], + "genres": [ + "tower defense" + ] +} diff --git a/data/game/to/tower-defense-x.json b/data/game/to/tower-defense-x.json new file mode 100644 index 000000000000..0eff4a468d10 --- /dev/null +++ b/data/game/to/tower-defense-x.json @@ -0,0 +1,8 @@ +{ + "slug": "tower-defense-x", + "name": "Tower Defense X", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131934413" + ] +} diff --git a/data/game/to/town-of-sins-demo.json b/data/game/to/town-of-sins-demo.json new file mode 100644 index 000000000000..055ffc1bd04f --- /dev/null +++ b/data/game/to/town-of-sins-demo.json @@ -0,0 +1,22 @@ +{ + "slug": "town-of-sins-demo", + "name": "Town of Sins Demo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126156160" + ], + "release_date": "2022-06-27", + "platforms": [ + "browser game", + "Microsoft Windows" + ], + "genres": [ + "strategy video game", + "erotic video game", + "futanari", + "card video game" + ], + "developers": [ + "Hooligapps" + ] +} diff --git a/data/game/to/toy-soldiers-war-chest-hall-of-fame-edition.json b/data/game/to/toy-soldiers-war-chest-hall-of-fame-edition.json new file mode 100644 index 000000000000..8218a5ba372d --- /dev/null +++ b/data/game/to/toy-soldiers-war-chest-hall-of-fame-edition.json @@ -0,0 +1,8 @@ +{ + "slug": "toy-soldiers-war-chest-hall-of-fame-edition", + "name": "Toy Soldiers: War Chest - Hall of Fame Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q90132602" + ] +} diff --git a/data/game/to/toy-story-retro-roundup.json b/data/game/to/toy-story-retro-roundup.json new file mode 100644 index 000000000000..da216c5dc2ce --- /dev/null +++ b/data/game/to/toy-story-retro-roundup.json @@ -0,0 +1,11 @@ +{ + "slug": "toy-story-retro-roundup", + "name": "Toy Story: Retro Roundup!", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140035299" + ], + "platforms": [ + "Microsoft Windows" + ] +} diff --git a/data/game/tr/trackmania-power-up.json b/data/game/tr/trackmania-power-up.json new file mode 100644 index 000000000000..52d7fe9fe439 --- /dev/null +++ b/data/game/tr/trackmania-power-up.json @@ -0,0 +1,15 @@ +{ + "slug": "trackmania-power-up", + "name": "TrackMania: Power Up!", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q24934806" + ], + "release_date": "2004-01-01", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Nadeo" + ] +} diff --git a/data/game/tr/trackmania-sunrise-extreme.json b/data/game/tr/trackmania-sunrise-extreme.json new file mode 100644 index 000000000000..136ce336dfdb --- /dev/null +++ b/data/game/tr/trackmania-sunrise-extreme.json @@ -0,0 +1,20 @@ +{ + "slug": "trackmania-sunrise-extreme", + "name": "TrackMania Sunrise eXtreme", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q53673309" + ], + "release_date": "2005-11-15", + "platforms": [ + "IBM PC compatible", + "Microsoft Windows" + ], + "genres": [ + "online game", + "racing video game" + ], + "developers": [ + "Nadeo" + ] +} diff --git a/data/game/tr/tracon-ii-canadian-region-data.json b/data/game/tr/tracon-ii-canadian-region-data.json new file mode 100644 index 000000000000..e4fb36851ca8 --- /dev/null +++ b/data/game/tr/tracon-ii-canadian-region-data.json @@ -0,0 +1,8 @@ +{ + "slug": "tracon-ii-canadian-region-data", + "name": "Tracon II: Canadian Region Data", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126185924" + ] +} diff --git a/data/game/tr/tracon-ii-western-region-data.json b/data/game/tr/tracon-ii-western-region-data.json new file mode 100644 index 000000000000..f4d56a25abf7 --- /dev/null +++ b/data/game/tr/tracon-ii-western-region-data.json @@ -0,0 +1,8 @@ +{ + "slug": "tracon-ii-western-region-data", + "name": "Tracon II: Western Region Data", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126185929" + ] +} diff --git a/data/game/tr/traffic-giant-expansion.json b/data/game/tr/traffic-giant-expansion.json new file mode 100644 index 000000000000..99fd54df248d --- /dev/null +++ b/data/game/tr/traffic-giant-expansion.json @@ -0,0 +1,15 @@ +{ + "slug": "traffic-giant-expansion", + "name": "Traffic Giant: Expansion", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q114453689" + ], + "release_date": "2000-01-01", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "JoWooD Entertainment" + ] +} diff --git a/data/game/tr/train-simulator-aerotrain-streamlined-train-add-on.json b/data/game/tr/train-simulator-aerotrain-streamlined-train-add-on.json new file mode 100644 index 000000000000..5cbcc54ece60 --- /dev/null +++ b/data/game/tr/train-simulator-aerotrain-streamlined-train-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-aerotrain-streamlined-train-add-on", + "name": "Train Simulator: Aerotrain Streamlined Train Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105927" + ], + "release_date": "2017-07-13", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Digital Train Model" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-albula-line-st-moritz-thusis-route-add-on.json b/data/game/tr/train-simulator-albula-line-st-moritz-thusis-route-add-on.json new file mode 100644 index 000000000000..dd740d0a8dea --- /dev/null +++ b/data/game/tr/train-simulator-albula-line-st-moritz-thusis-route-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-albula-line-st-moritz-thusis-route-add-on", + "name": "Train Simulator: Albula Line: St Moritz - Thusis Route Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105796" + ], + "release_date": "2016-09-01", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Thomson Interactive" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-allg-ubahn-kempten-lindau-immenstadt-oberstdorf-route-add-on.json b/data/game/tr/train-simulator-allg-ubahn-kempten-lindau-immenstadt-oberstdorf-route-add-on.json new file mode 100644 index 000000000000..21b85123f00c --- /dev/null +++ b/data/game/tr/train-simulator-allg-ubahn-kempten-lindau-immenstadt-oberstdorf-route-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-allg-ubahn-kempten-lindau-immenstadt-oberstdorf-route-add-on", + "name": "Train Simulator: Allgäubahn: Kempten - Lindau & Immenstadt - Oberstdorf Route Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106431" + ], + "release_date": "2018-04-19", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "RSSLO" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-amtrak-acela-express-emu-add-on.json b/data/game/tr/train-simulator-amtrak-acela-express-emu-add-on.json new file mode 100644 index 000000000000..21626a0c7e42 --- /dev/null +++ b/data/game/tr/train-simulator-amtrak-acela-express-emu-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-amtrak-acela-express-emu-add-on", + "name": "Train Simulator: Amtrak Acela Express EMU Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105516" + ], + "release_date": "2011-10-13", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-amtrak-dash-8-32bwh-loco-add-on.json b/data/game/tr/train-simulator-amtrak-dash-8-32bwh-loco-add-on.json new file mode 100644 index 000000000000..34dd12543974 --- /dev/null +++ b/data/game/tr/train-simulator-amtrak-dash-8-32bwh-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-amtrak-dash-8-32bwh-loco-add-on", + "name": "Train Simulator: Amtrak® Dash 8-32BWH Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105628" + ], + "release_date": "2016-03-01", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-amtrak-e8-loco-add-on.json b/data/game/tr/train-simulator-amtrak-e8-loco-add-on.json new file mode 100644 index 000000000000..b4a42a422879 --- /dev/null +++ b/data/game/tr/train-simulator-amtrak-e8-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-amtrak-e8-loco-add-on", + "name": "Train Simulator: Amtrak E8 Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105617" + ], + "release_date": "2018-03-22", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-amtrak-f40ph-california-zephyr-loco-add-on.json b/data/game/tr/train-simulator-amtrak-f40ph-california-zephyr-loco-add-on.json new file mode 100644 index 000000000000..4776ce037133 --- /dev/null +++ b/data/game/tr/train-simulator-amtrak-f40ph-california-zephyr-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-amtrak-f40ph-california-zephyr-loco-add-on", + "name": "Train Simulator: Amtrak F40PH ‘California Zephyr’ Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105759" + ], + "release_date": "2012-10-04", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-amtrak-hhp-8-loco-add-on.json b/data/game/tr/train-simulator-amtrak-hhp-8-loco-add-on.json new file mode 100644 index 000000000000..052395ef5682 --- /dev/null +++ b/data/game/tr/train-simulator-amtrak-hhp-8-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-amtrak-hhp-8-loco-add-on", + "name": "Train Simulator: Amtrak HHP-8 Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105560" + ], + "release_date": "2014-04-10", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-amtrak-p30ch-loco-add-on.json b/data/game/tr/train-simulator-amtrak-p30ch-loco-add-on.json new file mode 100644 index 000000000000..b97e449b4cc8 --- /dev/null +++ b/data/game/tr/train-simulator-amtrak-p30ch-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-amtrak-p30ch-loco-add-on", + "name": "Train Simulator: Amtrak P30CH Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105865" + ], + "release_date": "2015-04-29", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-amtrak-p42-dc-empire-builder-loco-add-on.json b/data/game/tr/train-simulator-amtrak-p42-dc-empire-builder-loco-add-on.json new file mode 100644 index 000000000000..d00b870166af --- /dev/null +++ b/data/game/tr/train-simulator-amtrak-p42-dc-empire-builder-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-amtrak-p42-dc-empire-builder-loco-add-on", + "name": "Train Simulator: Amtrak P42 DC 'Empire Builder' Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105517" + ], + "release_date": "2014-01-30", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-amtrak-sdp40f-loco-add-on.json b/data/game/tr/train-simulator-amtrak-sdp40f-loco-add-on.json new file mode 100644 index 000000000000..2afd9a139ca1 --- /dev/null +++ b/data/game/tr/train-simulator-amtrak-sdp40f-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-amtrak-sdp40f-loco-add-on", + "name": "Train Simulator: Amtrak SDP40F Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105690" + ], + "release_date": "2018-09-13", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Digital Train Model" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-arizona-divide-winslow-williams-route-add-on.json b/data/game/tr/train-simulator-arizona-divide-winslow-williams-route-add-on.json new file mode 100644 index 000000000000..bfdd22269b31 --- /dev/null +++ b/data/game/tr/train-simulator-arizona-divide-winslow-williams-route-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-arizona-divide-winslow-williams-route-add-on", + "name": "Train Simulator: Arizona Divide: Winslow - Williams Route Add-on", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105577" + ], + "release_date": "2021-03-26", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Milepost Simulations" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-arlbergbahn-innsbruck-bludenz-route-add-on.json b/data/game/tr/train-simulator-arlbergbahn-innsbruck-bludenz-route-add-on.json new file mode 100644 index 000000000000..7a9d5e1fcdce --- /dev/null +++ b/data/game/tr/train-simulator-arlbergbahn-innsbruck-bludenz-route-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-arlbergbahn-innsbruck-bludenz-route-add-on", + "name": "Train Simulator: Arlbergbahn: Innsbruck - Bludenz Route Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105509" + ], + "release_date": "2020-09-11", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "RSSLO" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-arosa-line-route-add-on.json b/data/game/tr/train-simulator-arosa-line-route-add-on.json new file mode 100644 index 000000000000..7b35a435e541 --- /dev/null +++ b/data/game/tr/train-simulator-arosa-line-route-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-arosa-line-route-add-on", + "name": "Train Simulator: Arosa Line Route Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105674" + ], + "release_date": "2017-08-17", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Thomson Interactive" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-at-n-consolidation-class-280-157-loco-add-on.json b/data/game/tr/train-simulator-at-n-consolidation-class-280-157-loco-add-on.json new file mode 100644 index 000000000000..27e7559831e7 --- /dev/null +++ b/data/game/tr/train-simulator-at-n-consolidation-class-280-157-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-at-n-consolidation-class-280-157-loco-add-on", + "name": "Train Simulator: AT&N Consolidation Class 280-157 Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105885" + ], + "release_date": "2013-03-14", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Smokebox" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-at-sf-sd45-2-loco-add-on.json b/data/game/tr/train-simulator-at-sf-sd45-2-loco-add-on.json new file mode 100644 index 000000000000..32ee54d9945e --- /dev/null +++ b/data/game/tr/train-simulator-at-sf-sd45-2-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-at-sf-sd45-2-loco-add-on", + "name": "Train Simulator: AT&SF SD45-2 Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106140" + ], + "release_date": "2017-06-01", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Digital Train Model" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-b-o-kingwood-branch-tunnelton-kingwood-route-add-on.json b/data/game/tr/train-simulator-b-o-kingwood-branch-tunnelton-kingwood-route-add-on.json new file mode 100644 index 000000000000..fa0fb56191be --- /dev/null +++ b/data/game/tr/train-simulator-b-o-kingwood-branch-tunnelton-kingwood-route-add-on.json @@ -0,0 +1,18 @@ +{ + "slug": "train-simulator-b-o-kingwood-branch-tunnelton-kingwood-route-add-on", + "name": "Train Simulator: B&O Kingwood Branch: Tunnelton - Kingwood Route Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106144" + ], + "release_date": "2017-05-18", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-bahnstrecke-riesa-dresden-route-add-on.json b/data/game/tr/train-simulator-bahnstrecke-riesa-dresden-route-add-on.json new file mode 100644 index 000000000000..9dab69f82983 --- /dev/null +++ b/data/game/tr/train-simulator-bahnstrecke-riesa-dresden-route-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-bahnstrecke-riesa-dresden-route-add-on", + "name": "Train Simulator: Bahnstrecke Riesa - Dresden Route Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105474" + ], + "release_date": "2021-02-11", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-battle-for-sherman-hill-add-on.json b/data/game/tr/train-simulator-battle-for-sherman-hill-add-on.json new file mode 100644 index 000000000000..90b928a7809d --- /dev/null +++ b/data/game/tr/train-simulator-battle-for-sherman-hill-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-battle-for-sherman-hill-add-on", + "name": "Train Simulator: Battle For Sherman Hill Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105692" + ], + "release_date": "2020-05-14", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-bb-1014-loco-add-on.json b/data/game/tr/train-simulator-bb-1014-loco-add-on.json new file mode 100644 index 000000000000..4f84035451cd --- /dev/null +++ b/data/game/tr/train-simulator-bb-1014-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-bb-1014-loco-add-on", + "name": "Train Simulator: ÖBB 1014 Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106030" + ], + "release_date": "2018-07-19", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Skyhook Games Studio" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-bb-1044-loco-add-on.json b/data/game/tr/train-simulator-bb-1044-loco-add-on.json new file mode 100644 index 000000000000..86a4d4bd475c --- /dev/null +++ b/data/game/tr/train-simulator-bb-1044-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-bb-1044-loco-add-on", + "name": "Train Simulator: ÖBB 1044 Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106165" + ], + "release_date": "2016-06-02", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Skyhook Games Studio" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-bb-1142-loco-add-on.json b/data/game/tr/train-simulator-bb-1142-loco-add-on.json new file mode 100644 index 000000000000..77141bdc37b1 --- /dev/null +++ b/data/game/tr/train-simulator-bb-1142-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-bb-1142-loco-add-on", + "name": "Train Simulator: ÖBB 1142 Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105939" + ], + "release_date": "2019-05-10", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Skyhook Games Studio" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-bb-1144-cityshuttle-wiesel-loco-add-on.json b/data/game/tr/train-simulator-bb-1144-cityshuttle-wiesel-loco-add-on.json new file mode 100644 index 000000000000..ced4e905ac43 --- /dev/null +++ b/data/game/tr/train-simulator-bb-1144-cityshuttle-wiesel-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-bb-1144-cityshuttle-wiesel-loco-add-on", + "name": "Train Simulator: ÖBB 1144 & CityShuttle Wiesel Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105962" + ], + "release_date": "2018-11-01", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Skyhook Games Studio" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-bb-1293-loco-add-on.json b/data/game/tr/train-simulator-bb-1293-loco-add-on.json new file mode 100644 index 000000000000..abdc6edf3e33 --- /dev/null +++ b/data/game/tr/train-simulator-bb-1293-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-bb-1293-loco-add-on", + "name": "Train Simulator: ÖBB 1293 Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105944" + ], + "release_date": "2019-04-12", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "RSSLO" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-bb-1822-loco-add-on.json b/data/game/tr/train-simulator-bb-1822-loco-add-on.json new file mode 100644 index 000000000000..2e2c2c0d2a0c --- /dev/null +++ b/data/game/tr/train-simulator-bb-1822-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-bb-1822-loco-add-on", + "name": "Train Simulator: ÖBB 1822 Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105797" + ], + "release_date": "2020-07-30", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "RSSLO" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-bb-4010-emu-add-on.json b/data/game/tr/train-simulator-bb-4010-emu-add-on.json new file mode 100644 index 000000000000..6448dd0a643b --- /dev/null +++ b/data/game/tr/train-simulator-bb-4010-emu-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-bb-4010-emu-add-on", + "name": "Train Simulator: ÖBB 4010 EMU Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105886" + ], + "release_date": "2018-03-08", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "RSSLO" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-bb-4020-emu-add-on.json b/data/game/tr/train-simulator-bb-4020-emu-add-on.json new file mode 100644 index 000000000000..50faa008623c --- /dev/null +++ b/data/game/tr/train-simulator-bb-4020-emu-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-bb-4020-emu-add-on", + "name": "Train Simulator: ÖBB 4020 EMU Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105618" + ], + "release_date": "2017-02-16", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-bb-4023-talent-emu-add-on.json b/data/game/tr/train-simulator-bb-4023-talent-emu-add-on.json new file mode 100644 index 000000000000..8bbf0065091e --- /dev/null +++ b/data/game/tr/train-simulator-bb-4023-talent-emu-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-bb-4023-talent-emu-add-on", + "name": "Train Simulator: ÖBB 4023 ‘Talent' EMU Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106131" + ], + "release_date": "2016-08-09", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "RSSLO" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-bb-4744-cityjet-emu-add-on.json b/data/game/tr/train-simulator-bb-4744-cityjet-emu-add-on.json new file mode 100644 index 000000000000..c371c3853652 --- /dev/null +++ b/data/game/tr/train-simulator-bb-4744-cityjet-emu-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-bb-4744-cityjet-emu-add-on", + "name": "Train Simulator: ÖBB 4744 ‘Cityjet’ EMU Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105958" + ], + "release_date": "2019-08-23", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Skyhook Games Studio" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-bb-5047-dmu-add-on.json b/data/game/tr/train-simulator-bb-5047-dmu-add-on.json new file mode 100644 index 000000000000..629aedad7073 --- /dev/null +++ b/data/game/tr/train-simulator-bb-5047-dmu-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-bb-5047-dmu-add-on", + "name": "Train Simulator: ÖBB 5047 DMU Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105852" + ], + "release_date": "2020-01-09", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Skyhook Games Studio" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-berlin-leipzig-route-add-on.json b/data/game/tr/train-simulator-berlin-leipzig-route-add-on.json new file mode 100644 index 000000000000..dec90ccc33a1 --- /dev/null +++ b/data/game/tr/train-simulator-berlin-leipzig-route-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-berlin-leipzig-route-add-on", + "name": "Train Simulator: Berlin - Leipzig Route Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105682" + ], + "release_date": "2016-08-11", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Aerosoft" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-berlin-wittenberg-route-add-on.json b/data/game/tr/train-simulator-berlin-wittenberg-route-add-on.json new file mode 100644 index 000000000000..09070f0bf2ac --- /dev/null +++ b/data/game/tr/train-simulator-berlin-wittenberg-route-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-berlin-wittenberg-route-add-on", + "name": "Train Simulator: Berlin-Wittenberg Route Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105971" + ], + "release_date": "2013-11-07", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Aerosoft" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-bernina-line-poschiavo-tirano-route-add-on.json b/data/game/tr/train-simulator-bernina-line-poschiavo-tirano-route-add-on.json new file mode 100644 index 000000000000..e7f360085102 --- /dev/null +++ b/data/game/tr/train-simulator-bernina-line-poschiavo-tirano-route-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-bernina-line-poschiavo-tirano-route-add-on", + "name": "Train Simulator: Bernina Line: Poschiavo - Tirano Route Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105788" + ], + "release_date": "2019-11-28", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Rivet Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-bernina-pass-st-moritz-poschiavo-route-add-on.json b/data/game/tr/train-simulator-bernina-pass-st-moritz-poschiavo-route-add-on.json new file mode 100644 index 000000000000..fe2805f369e5 --- /dev/null +++ b/data/game/tr/train-simulator-bernina-pass-st-moritz-poschiavo-route-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-bernina-pass-st-moritz-poschiavo-route-add-on", + "name": "Train Simulator: Bernina Pass: St Moritz – Poschiavo Route Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105794" + ], + "release_date": "2018-09-20", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Thomson Interactive" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-birmingham-cross-city-line-lichfield-bromsgrove-redditch-route-add-on.json b/data/game/tr/train-simulator-birmingham-cross-city-line-lichfield-bromsgrove-redditch-route-add-on.json new file mode 100644 index 000000000000..15ea08d23680 --- /dev/null +++ b/data/game/tr/train-simulator-birmingham-cross-city-line-lichfield-bromsgrove-redditch-route-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-birmingham-cross-city-line-lichfield-bromsgrove-redditch-route-add-on", + "name": "Train Simulator: Birmingham Cross City Line: Lichfield - Bromsgrove & Redditch Route Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105473" + ], + "release_date": "2021-03-19", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-black-forest-journeys-freiburg-hausach-route-add-on.json b/data/game/tr/train-simulator-black-forest-journeys-freiburg-hausach-route-add-on.json new file mode 100644 index 000000000000..9ac78573ba21 --- /dev/null +++ b/data/game/tr/train-simulator-black-forest-journeys-freiburg-hausach-route-add-on.json @@ -0,0 +1,18 @@ +{ + "slug": "train-simulator-black-forest-journeys-freiburg-hausach-route-add-on", + "name": "Train Simulator: Black Forest Journeys: Freiburg-Hausach Route Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106057" + ], + "release_date": "2016-04-14", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-boston-maine-ge-44-loco-add-on.json b/data/game/tr/train-simulator-boston-maine-ge-44-loco-add-on.json new file mode 100644 index 000000000000..e19a5391a1e9 --- /dev/null +++ b/data/game/tr/train-simulator-boston-maine-ge-44-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-boston-maine-ge-44-loco-add-on", + "name": "Train Simulator: Boston & Maine GE 44 Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106022" + ], + "release_date": "2013-01-17", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Digital Train Model" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-br-266-loco-add-on.json b/data/game/tr/train-simulator-br-266-loco-add-on.json new file mode 100644 index 000000000000..432141f38761 --- /dev/null +++ b/data/game/tr/train-simulator-br-266-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-br-266-loco-add-on", + "name": "Train Simulator: BR 266 Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105934" + ], + "release_date": "2014-12-05", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-br-6mt-clan-class-loco-add-on.json b/data/game/tr/train-simulator-br-6mt-clan-class-loco-add-on.json new file mode 100644 index 000000000000..5131e06494c7 --- /dev/null +++ b/data/game/tr/train-simulator-br-6mt-clan-class-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-br-6mt-clan-class-loco-add-on", + "name": "Train Simulator: BR 6MT Clan Class Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106215" + ], + "release_date": "2014-11-25", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-br-9f-loco-add-on.json b/data/game/tr/train-simulator-br-9f-loco-add-on.json new file mode 100644 index 000000000000..25fb9e99c21e --- /dev/null +++ b/data/game/tr/train-simulator-br-9f-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-br-9f-loco-add-on", + "name": "Train Simulator: BR 9F Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106182" + ], + "release_date": "2014-11-19", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-br-blue-diesel-electric-pack-loco-add-on.json b/data/game/tr/train-simulator-br-blue-diesel-electric-pack-loco-add-on.json new file mode 100644 index 000000000000..23b0fad1dfee --- /dev/null +++ b/data/game/tr/train-simulator-br-blue-diesel-electric-pack-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-br-blue-diesel-electric-pack-loco-add-on", + "name": "Train Simulator: BR Blue Diesel Electric Pack Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105623" + ], + "release_date": "2016-05-19", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-br-blue-pack-loco-add-on.json b/data/game/tr/train-simulator-br-blue-pack-loco-add-on.json new file mode 100644 index 000000000000..93ce41fa2a31 --- /dev/null +++ b/data/game/tr/train-simulator-br-blue-pack-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-br-blue-pack-loco-add-on", + "name": "Train Simulator: BR Blue Pack Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105634" + ], + "release_date": "2015-10-29", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-br-castle-class-loco-add-on.json b/data/game/tr/train-simulator-br-castle-class-loco-add-on.json new file mode 100644 index 000000000000..e52aed92c2df --- /dev/null +++ b/data/game/tr/train-simulator-br-castle-class-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-br-castle-class-loco-add-on", + "name": "Train Simulator: BR Castle Class Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106129" + ], + "release_date": "2014-07-03", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-br-class-07-loco-add-on.json b/data/game/tr/train-simulator-br-class-07-loco-add-on.json new file mode 100644 index 000000000000..836a5d317624 --- /dev/null +++ b/data/game/tr/train-simulator-br-class-07-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-br-class-07-loco-add-on", + "name": "Train Simulator: BR Class 07 Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106177" + ], + "release_date": "2015-04-22", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Skyhook Games Studio" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-br-class-101-dmu-add-on.json b/data/game/tr/train-simulator-br-class-101-dmu-add-on.json new file mode 100644 index 000000000000..1ece99fc052c --- /dev/null +++ b/data/game/tr/train-simulator-br-class-101-dmu-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-br-class-101-dmu-add-on", + "name": "Train Simulator: BR Class 101 DMU Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105563" + ], + "release_date": "2013-05-02", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-br-class-105-dmu-add-on.json b/data/game/tr/train-simulator-br-class-105-dmu-add-on.json new file mode 100644 index 000000000000..161f8be888ef --- /dev/null +++ b/data/game/tr/train-simulator-br-class-105-dmu-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-br-class-105-dmu-add-on", + "name": "Train Simulator: BR Class 105 DMU Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105645" + ], + "release_date": "2015-06-25", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-br-class-14-loco-add-on.json b/data/game/tr/train-simulator-br-class-14-loco-add-on.json new file mode 100644 index 000000000000..24e8076fffc3 --- /dev/null +++ b/data/game/tr/train-simulator-br-class-14-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-br-class-14-loco-add-on", + "name": "Train Simulator: BR Class 14 Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105651" + ], + "release_date": "2014-04-03", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-br-class-150-1-dmu-add-on.json b/data/game/tr/train-simulator-br-class-150-1-dmu-add-on.json new file mode 100644 index 000000000000..2c2c9f06251d --- /dev/null +++ b/data/game/tr/train-simulator-br-class-150-1-dmu-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-br-class-150-1-dmu-add-on", + "name": "Train Simulator: BR Class 150/1 DMU Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105869" + ], + "release_date": "2016-11-30", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-br-class-170-turbostar-dmu-add-on.json b/data/game/tr/train-simulator-br-class-170-turbostar-dmu-add-on.json new file mode 100644 index 000000000000..73883cb9478f --- /dev/null +++ b/data/game/tr/train-simulator-br-class-170-turbostar-dmu-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-br-class-170-turbostar-dmu-add-on", + "name": "Train Simulator: BR Class 170 ‘Turbostar’ DMU Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105565" + ], + "release_date": "2012-08-01", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-br-class-20-loco-add-on.json b/data/game/tr/train-simulator-br-class-20-loco-add-on.json new file mode 100644 index 000000000000..f62a4d87e417 --- /dev/null +++ b/data/game/tr/train-simulator-br-class-20-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-br-class-20-loco-add-on", + "name": "Train Simulator: BR Class 20 Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105652" + ], + "release_date": "2014-05-01", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-br-class-24-loco-add-on.json b/data/game/tr/train-simulator-br-class-24-loco-add-on.json new file mode 100644 index 000000000000..7eaa5b09766b --- /dev/null +++ b/data/game/tr/train-simulator-br-class-24-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-br-class-24-loco-add-on", + "name": "Train Simulator: BR Class 24 Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105633" + ], + "release_date": "2015-11-05", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-br-class-27-loco-add-on.json b/data/game/tr/train-simulator-br-class-27-loco-add-on.json new file mode 100644 index 000000000000..283b2e4ae922 --- /dev/null +++ b/data/game/tr/train-simulator-br-class-27-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-br-class-27-loco-add-on", + "name": "Train Simulator: BR Class 27 Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105672" + ], + "release_date": "2014-06-12", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-br-class-303-emu-add-on.json b/data/game/tr/train-simulator-br-class-303-emu-add-on.json new file mode 100644 index 000000000000..41c963d1404b --- /dev/null +++ b/data/game/tr/train-simulator-br-class-303-emu-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-br-class-303-emu-add-on", + "name": "Train Simulator: BR Class 303 EMU Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106218" + ], + "release_date": "2015-01-22", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-br-class-31-freight-loco-add-on.json b/data/game/tr/train-simulator-br-class-31-freight-loco-add-on.json new file mode 100644 index 000000000000..cda2ac4a38e6 --- /dev/null +++ b/data/game/tr/train-simulator-br-class-31-freight-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-br-class-31-freight-loco-add-on", + "name": "Train Simulator: BR Class 31 Freight Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106020" + ], + "release_date": "2012-08-16", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-br-class-31-loco-add-on.json b/data/game/tr/train-simulator-br-class-31-loco-add-on.json new file mode 100644 index 000000000000..128e8f801237 --- /dev/null +++ b/data/game/tr/train-simulator-br-class-31-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-br-class-31-loco-add-on", + "name": "Train Simulator: BR Class 31 Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105783" + ], + "release_date": "2013-05-23", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-br-class-33-loco-add-on.json b/data/game/tr/train-simulator-br-class-33-loco-add-on.json new file mode 100644 index 000000000000..af254001ecbd --- /dev/null +++ b/data/game/tr/train-simulator-br-class-33-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-br-class-33-loco-add-on", + "name": "Train Simulator: BR Class 33 Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105762" + ], + "release_date": "2012-08-01", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-br-class-35-loco-add-on.json b/data/game/tr/train-simulator-br-class-35-loco-add-on.json new file mode 100644 index 000000000000..de5acfa1fcba --- /dev/null +++ b/data/game/tr/train-simulator-br-class-35-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-br-class-35-loco-add-on", + "name": "Train Simulator: BR Class 35 Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106209" + ], + "release_date": "2014-08-21", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-br-class-40-40145-loco-add-on.json b/data/game/tr/train-simulator-br-class-40-40145-loco-add-on.json new file mode 100644 index 000000000000..f38e4cba03cc --- /dev/null +++ b/data/game/tr/train-simulator-br-class-40-40145-loco-add-on.json @@ -0,0 +1,18 @@ +{ + "slug": "train-simulator-br-class-40-40145-loco-add-on", + "name": "Train Simulator: BR Class 40 '40145' Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106172" + ], + "release_date": "2016-01-14", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-br-class-402-2-hal-emu-add-on.json b/data/game/tr/train-simulator-br-class-402-2-hal-emu-add-on.json new file mode 100644 index 000000000000..035c94a6e486 --- /dev/null +++ b/data/game/tr/train-simulator-br-class-402-2-hal-emu-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-br-class-402-2-hal-emu-add-on", + "name": "Train Simulator: BR Class 402 '2-HAL' EMU Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106134" + ], + "release_date": "2017-10-19", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-br-class-419-mlv-bemu-add-on.json b/data/game/tr/train-simulator-br-class-419-mlv-bemu-add-on.json new file mode 100644 index 000000000000..5fe5cb81aad0 --- /dev/null +++ b/data/game/tr/train-simulator-br-class-419-mlv-bemu-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-br-class-419-mlv-bemu-add-on", + "name": "Train Simulator: BR Class 419 MLV BEMU Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106133" + ], + "release_date": "2017-09-21", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-br-class-421-4cig-loco.json b/data/game/tr/train-simulator-br-class-421-4cig-loco.json new file mode 100644 index 000000000000..cfadb8a0e9a4 --- /dev/null +++ b/data/game/tr/train-simulator-br-class-421-4cig-loco.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-br-class-421-4cig-loco", + "name": "Train Simulator: BR Class 421 '4CIG' Loco", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105768" + ], + "release_date": "2011-07-19", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-br-class-422-4big-emu-add-on.json b/data/game/tr/train-simulator-br-class-422-4big-emu-add-on.json new file mode 100644 index 000000000000..67703e1e0b53 --- /dev/null +++ b/data/game/tr/train-simulator-br-class-422-4big-emu-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-br-class-422-4big-emu-add-on", + "name": "Train Simulator: BR Class 422 ‘4BIG’ EMU Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106228" + ], + "release_date": "2013-01-17", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-br-class-423-4vep-emu-add-on.json b/data/game/tr/train-simulator-br-class-423-4vep-emu-add-on.json new file mode 100644 index 000000000000..e32a5e843a61 --- /dev/null +++ b/data/game/tr/train-simulator-br-class-423-4vep-emu-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-br-class-423-4vep-emu-add-on", + "name": "Train Simulator: BR Class 423 ‘4VEP’ EMU Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105551" + ], + "release_date": "2012-05-17", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-br-class-45-peak-loco-add-on.json b/data/game/tr/train-simulator-br-class-45-peak-loco-add-on.json new file mode 100644 index 000000000000..3ea89609ba2f --- /dev/null +++ b/data/game/tr/train-simulator-br-class-45-peak-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-br-class-45-peak-loco-add-on", + "name": "Train Simulator: BR Class 45 'Peak' Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105536" + ], + "release_date": "2014-10-29", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-br-class-50-loco-add-on.json b/data/game/tr/train-simulator-br-class-50-loco-add-on.json new file mode 100644 index 000000000000..8443e63f7d4c --- /dev/null +++ b/data/game/tr/train-simulator-br-class-50-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-br-class-50-loco-add-on", + "name": "Train Simulator: BR Class 50 Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106251" + ], + "release_date": "2013-06-13", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "MeshTools" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-br-class-52-loco-add-on.json b/data/game/tr/train-simulator-br-class-52-loco-add-on.json new file mode 100644 index 000000000000..156ae54629eb --- /dev/null +++ b/data/game/tr/train-simulator-br-class-52-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-br-class-52-loco-add-on", + "name": "Train Simulator: BR Class 52 Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105571" + ], + "release_date": "2014-04-17", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-br-class-58-loco-add-on.json b/data/game/tr/train-simulator-br-class-58-loco-add-on.json new file mode 100644 index 000000000000..5e629fa2e3c1 --- /dev/null +++ b/data/game/tr/train-simulator-br-class-58-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-br-class-58-loco-add-on", + "name": "Train Simulator: BR Class 58 Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106171" + ], + "release_date": "2016-03-11", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Skyhook Games Studio" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-br-class-73-gatwick-express-loco-add-on.json b/data/game/tr/train-simulator-br-class-73-gatwick-express-loco-add-on.json new file mode 100644 index 000000000000..c7e42a6b2b53 --- /dev/null +++ b/data/game/tr/train-simulator-br-class-73-gatwick-express-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-br-class-73-gatwick-express-loco-add-on", + "name": "Train Simulator: BR Class 73 'Gatwick Express' Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105673" + ], + "release_date": "2016-02-18", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-br-class-76-77-loco-add-on.json b/data/game/tr/train-simulator-br-class-76-77-loco-add-on.json new file mode 100644 index 000000000000..0d2e3cc83ed0 --- /dev/null +++ b/data/game/tr/train-simulator-br-class-76-77-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-br-class-76-77-loco-add-on", + "name": "Train Simulator: BR Class 76 & 77 Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105766" + ], + "release_date": "2012-02-23", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-br-class-87-loco-add-on.json b/data/game/tr/train-simulator-br-class-87-loco-add-on.json new file mode 100644 index 000000000000..f847b46d0aa2 --- /dev/null +++ b/data/game/tr/train-simulator-br-class-87-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-br-class-87-loco-add-on", + "name": "Train Simulator: BR Class 87 Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105748" + ], + "release_date": "2013-06-20", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-br-dp1-deltic-loco-add-on.json b/data/game/tr/train-simulator-br-dp1-deltic-loco-add-on.json new file mode 100644 index 000000000000..73ef9bb54f95 --- /dev/null +++ b/data/game/tr/train-simulator-br-dp1-deltic-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-br-dp1-deltic-loco-add-on", + "name": "Train Simulator: BR DP1 Deltic Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106250" + ], + "release_date": "2013-08-28", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-br-gt3-turbine-loco-add-on.json b/data/game/tr/train-simulator-br-gt3-turbine-loco-add-on.json new file mode 100644 index 000000000000..f169d96a98dd --- /dev/null +++ b/data/game/tr/train-simulator-br-gt3-turbine-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-br-gt3-turbine-loco-add-on", + "name": "Train Simulator: BR GT3 Turbine Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106231" + ], + "release_date": "2015-07-02", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Victory Works" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-br-lner-class-j50-loco-add-on.json b/data/game/tr/train-simulator-br-lner-class-j50-loco-add-on.json new file mode 100644 index 000000000000..e3c143a0f43a --- /dev/null +++ b/data/game/tr/train-simulator-br-lner-class-j50-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-br-lner-class-j50-loco-add-on", + "name": "Train Simulator: BR/LNER Class J50 Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106245" + ], + "release_date": "2013-10-31", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "MeshTools" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-br-rebuilt-west-country-battle-of-britain-class-steam-loco-add-on.json b/data/game/tr/train-simulator-br-rebuilt-west-country-battle-of-britain-class-steam-loco-add-on.json new file mode 100644 index 000000000000..39dee5633938 --- /dev/null +++ b/data/game/tr/train-simulator-br-rebuilt-west-country-battle-of-britain-class-steam-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-br-rebuilt-west-country-battle-of-britain-class-steam-loco-add-on", + "name": "Train Simulator: BR Rebuilt West Country & Battle of Britain Class Steam Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105616" + ], + "release_date": "2021-02-05", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Bossman Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-br-regional-railways-class-101-dmu-add-on.json b/data/game/tr/train-simulator-br-regional-railways-class-101-dmu-add-on.json new file mode 100644 index 000000000000..49b96e31a234 --- /dev/null +++ b/data/game/tr/train-simulator-br-regional-railways-class-101-dmu-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-br-regional-railways-class-101-dmu-add-on", + "name": "Train Simulator: BR Regional Railways Class 101 DMU Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105755" + ], + "release_date": "2014-08-14", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-br-robinson-class-o4-loco-add-on.json b/data/game/tr/train-simulator-br-robinson-class-o4-loco-add-on.json new file mode 100644 index 000000000000..ae7ecf997579 --- /dev/null +++ b/data/game/tr/train-simulator-br-robinson-class-o4-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-br-robinson-class-o4-loco-add-on", + "name": "Train Simulator: BR Robinson Class O4 Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105574" + ], + "release_date": "2012-10-19", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-br-sectors-class-56-loco-add-on.json b/data/game/tr/train-simulator-br-sectors-class-56-loco-add-on.json new file mode 100644 index 000000000000..d4541f7ad71d --- /dev/null +++ b/data/game/tr/train-simulator-br-sectors-class-56-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-br-sectors-class-56-loco-add-on", + "name": "Train Simulator: BR Sectors Class 56 Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106240" + ], + "release_date": "2014-05-22", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-br-standard-class-2mt-loco-add-on.json b/data/game/tr/train-simulator-br-standard-class-2mt-loco-add-on.json new file mode 100644 index 000000000000..e917d280bee9 --- /dev/null +++ b/data/game/tr/train-simulator-br-standard-class-2mt-loco-add-on.json @@ -0,0 +1,18 @@ +{ + "slug": "train-simulator-br-standard-class-2mt-loco-add-on", + "name": "Train Simulator: BR Standard Class 2MT Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106241" + ], + "release_date": "2013-04-04", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-br-standard-class-4mt.json b/data/game/tr/train-simulator-br-standard-class-4mt.json new file mode 100644 index 000000000000..82910d359559 --- /dev/null +++ b/data/game/tr/train-simulator-br-standard-class-4mt.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-br-standard-class-4mt", + "name": "Train Simulator: BR Standard Class 4MT", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106277" + ], + "release_date": "2019-05-24", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Just Trains" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-br-standard-class-6-clan-class-steam-loco-add-on.json b/data/game/tr/train-simulator-br-standard-class-6-clan-class-steam-loco-add-on.json new file mode 100644 index 000000000000..1605df026824 --- /dev/null +++ b/data/game/tr/train-simulator-br-standard-class-6-clan-class-steam-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-br-standard-class-6-clan-class-steam-loco-add-on", + "name": "Train Simulator: BR Standard Class 6 ‘Clan Class’ Steam Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106148" + ], + "release_date": "2017-05-04", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Just Trains" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-br-standard-class-7-britannia-class-steam-loco-add-on.json b/data/game/tr/train-simulator-br-standard-class-7-britannia-class-steam-loco-add-on.json new file mode 100644 index 000000000000..bc893573fce1 --- /dev/null +++ b/data/game/tr/train-simulator-br-standard-class-7-britannia-class-steam-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-br-standard-class-7-britannia-class-steam-loco-add-on", + "name": "Train Simulator: BR Standard Class 7 ‘Britannia Class’ Steam Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106432" + ], + "release_date": "2020-01-16", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Just Trains" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-bristol-exeter-route-add-on.json b/data/game/tr/train-simulator-bristol-exeter-route-add-on.json new file mode 100644 index 000000000000..676ff9dceeca --- /dev/null +++ b/data/game/tr/train-simulator-bristol-exeter-route-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-bristol-exeter-route-add-on", + "name": "Train Simulator: Bristol-Exeter Route Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106050" + ], + "release_date": "2011-06-10", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Just Trains" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-bulleid-q1-class-loco-add-on.json b/data/game/tr/train-simulator-bulleid-q1-class-loco-add-on.json new file mode 100644 index 000000000000..8bf8b70866b3 --- /dev/null +++ b/data/game/tr/train-simulator-bulleid-q1-class-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-bulleid-q1-class-loco-add-on", + "name": "Train Simulator: Bulleid Q1 Class Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106239" + ], + "release_date": "2014-07-03", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Victory Works" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-canadian-mountain-passes-revelstoke-lake-louise.json b/data/game/tr/train-simulator-canadian-mountain-passes-revelstoke-lake-louise.json new file mode 100644 index 000000000000..2910675ecf11 --- /dev/null +++ b/data/game/tr/train-simulator-canadian-mountain-passes-revelstoke-lake-louise.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-canadian-mountain-passes-revelstoke-lake-louise", + "name": "Train Simulator: Canadian Mountain Passes: Revelstoke-Lake Louise", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106010" + ], + "release_date": "2014-02-14", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Milepost Simulations" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-canadian-national-peace-river-route-add-on.json b/data/game/tr/train-simulator-canadian-national-peace-river-route-add-on.json new file mode 100644 index 000000000000..6d7aa8e0bc24 --- /dev/null +++ b/data/game/tr/train-simulator-canadian-national-peace-river-route-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-canadian-national-peace-river-route-add-on", + "name": "Train Simulator: Canadian National Peace River Route Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105972" + ], + "release_date": "2017-12-07", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Milepost Simulations" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-canadian-national-sd60-loco-add-on.json b/data/game/tr/train-simulator-canadian-national-sd60-loco-add-on.json new file mode 100644 index 000000000000..60872cc53807 --- /dev/null +++ b/data/game/tr/train-simulator-canadian-national-sd60-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-canadian-national-sd60-loco-add-on", + "name": "Train Simulator: Canadian National SD60 Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105614" + ], + "release_date": "2020-12-04", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Travel by Train" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-canadian-national-sd70-loco-add-on.json b/data/game/tr/train-simulator-canadian-national-sd70-loco-add-on.json new file mode 100644 index 000000000000..bc86e56679bf --- /dev/null +++ b/data/game/tr/train-simulator-canadian-national-sd70-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-canadian-national-sd70-loco-add-on", + "name": "Train Simulator: Canadian National SD70 Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105631" + ], + "release_date": "2019-09-13", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Travel by Train" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-canadian-pacific-ac4400cw-loco-add-on.json b/data/game/tr/train-simulator-canadian-pacific-ac4400cw-loco-add-on.json new file mode 100644 index 000000000000..ba2ed1bcccd1 --- /dev/null +++ b/data/game/tr/train-simulator-canadian-pacific-ac4400cw-loco-add-on.json @@ -0,0 +1,18 @@ +{ + "slug": "train-simulator-canadian-pacific-ac4400cw-loco-add-on", + "name": "Train Simulator: Canadian Pacific AC4400CW Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105642" + ], + "release_date": "2020-10-08", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-chatham-main-line-london-gillingham-route-add-on.json b/data/game/tr/train-simulator-chatham-main-line-london-gillingham-route-add-on.json new file mode 100644 index 000000000000..7d42e754ac4d --- /dev/null +++ b/data/game/tr/train-simulator-chatham-main-line-london-gillingham-route-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-chatham-main-line-london-gillingham-route-add-on", + "name": "Train Simulator: Chatham Main Line - London-Gillingham Route Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105627" + ], + "release_date": "2016-05-19", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-chatham-main-medway-valley-lines-route-add-on.json b/data/game/tr/train-simulator-chatham-main-medway-valley-lines-route-add-on.json new file mode 100644 index 000000000000..f7c526352fbb --- /dev/null +++ b/data/game/tr/train-simulator-chatham-main-medway-valley-lines-route-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-chatham-main-medway-valley-lines-route-add-on", + "name": "Train Simulator: Chatham Main & Medway Valley Lines Route Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105478" + ], + "release_date": "2018-02-01", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-chengdu-suining-high-speed-route-add-on.json b/data/game/tr/train-simulator-chengdu-suining-high-speed-route-add-on.json new file mode 100644 index 000000000000..3ab44f40cbb6 --- /dev/null +++ b/data/game/tr/train-simulator-chengdu-suining-high-speed-route-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-chengdu-suining-high-speed-route-add-on", + "name": "Train Simulator: Chengdu - Suining High Speed Route Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105711" + ], + "release_date": "2015-02-27", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Just Trains" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-chengkun-railway-hanyuan-puxiong-route-add-on.json b/data/game/tr/train-simulator-chengkun-railway-hanyuan-puxiong-route-add-on.json new file mode 100644 index 000000000000..7f5f09417342 --- /dev/null +++ b/data/game/tr/train-simulator-chengkun-railway-hanyuan-puxiong-route-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-chengkun-railway-hanyuan-puxiong-route-add-on", + "name": "Train Simulator: Chengkun Railway: Hanyuan – Puxiong Route Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105710" + ], + "release_date": "2019-08-30", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "SimTech Vision" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-chessie-system-retro-pack.json b/data/game/tr/train-simulator-chessie-system-retro-pack.json new file mode 100644 index 000000000000..3a1a6304aa03 --- /dev/null +++ b/data/game/tr/train-simulator-chessie-system-retro-pack.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-chessie-system-retro-pack", + "name": "Train Simulator: Chessie System Retro Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105602" + ], + "release_date": "2021-05-14", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "High Iron Simulations" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-chessie-system-u30c-loco-add-on.json b/data/game/tr/train-simulator-chessie-system-u30c-loco-add-on.json new file mode 100644 index 000000000000..d66796c3e68b --- /dev/null +++ b/data/game/tr/train-simulator-chessie-system-u30c-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-chessie-system-u30c-loco-add-on", + "name": "Train Simulator: Chessie System U30C Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106160" + ], + "release_date": "2016-11-03", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Virtual Rail Creations" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-chiltern-main-line-london-birmingham-route-add-on.json b/data/game/tr/train-simulator-chiltern-main-line-london-birmingham-route-add-on.json new file mode 100644 index 000000000000..fe29a0a02d9f --- /dev/null +++ b/data/game/tr/train-simulator-chiltern-main-line-london-birmingham-route-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-chiltern-main-line-london-birmingham-route-add-on", + "name": "Train Simulator: Chiltern Main Line: London - Birmingham Route Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105834" + ], + "release_date": "2020-05-21", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Just Trains" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-china-clay-for-export-route-add-on.json b/data/game/tr/train-simulator-china-clay-for-export-route-add-on.json new file mode 100644 index 000000000000..c1565ff908a2 --- /dev/null +++ b/data/game/tr/train-simulator-china-clay-for-export-route-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-china-clay-for-export-route-add-on", + "name": "Train Simulator: China Clay for Export Route Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106060" + ], + "release_date": "2015-08-20", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Creative Rail" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-class-111-dmu-add-on.json b/data/game/tr/train-simulator-class-111-dmu-add-on.json new file mode 100644 index 000000000000..1bc4be613587 --- /dev/null +++ b/data/game/tr/train-simulator-class-111-dmu-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-class-111-dmu-add-on", + "name": "Train Simulator: Class 111 DMU Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105782" + ], + "release_date": "2012-08-16", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-class-156-loco-add-on.json b/data/game/tr/train-simulator-class-156-loco-add-on.json new file mode 100644 index 000000000000..45cda5642eda --- /dev/null +++ b/data/game/tr/train-simulator-class-156-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-class-156-loco-add-on", + "name": "Train Simulator: Class 156 Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106170" + ], + "release_date": "2016-04-05", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Oovee® Game Studios" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-class-158-dmu-add-on.json b/data/game/tr/train-simulator-class-158-dmu-add-on.json new file mode 100644 index 000000000000..833fe04d61a1 --- /dev/null +++ b/data/game/tr/train-simulator-class-158-dmu-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-class-158-dmu-add-on", + "name": "Train Simulator: Class 158 DMU Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105781" + ], + "release_date": "2012-08-16", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-class-2f-dock-tank-loco-add-on.json b/data/game/tr/train-simulator-class-2f-dock-tank-loco-add-on.json new file mode 100644 index 000000000000..1ae1cb674b6b --- /dev/null +++ b/data/game/tr/train-simulator-class-2f-dock-tank-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-class-2f-dock-tank-loco-add-on", + "name": "Train Simulator: Class 2F Dock Tank Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106275" + ], + "release_date": "2014-07-10", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "MeshTools" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-class-325-emu-add-on.json b/data/game/tr/train-simulator-class-325-emu-add-on.json new file mode 100644 index 000000000000..963c5aa489cd --- /dev/null +++ b/data/game/tr/train-simulator-class-325-emu-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-class-325-emu-add-on", + "name": "Train Simulator: Class 325 EMU Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106039" + ], + "release_date": "2012-08-01", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-class-390-emu-add-on.json b/data/game/tr/train-simulator-class-390-emu-add-on.json new file mode 100644 index 000000000000..6158951163d8 --- /dev/null +++ b/data/game/tr/train-simulator-class-390-emu-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-class-390-emu-add-on", + "name": "Train Simulator: Class 390 EMU Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106130" + ], + "release_date": "2012-08-01", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-class-455-emu-add-on.json b/data/game/tr/train-simulator-class-455-emu-add-on.json new file mode 100644 index 000000000000..90d049315e6b --- /dev/null +++ b/data/game/tr/train-simulator-class-455-emu-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-class-455-emu-add-on", + "name": "Train Simulator: Class 455 EMU Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106257" + ], + "release_date": "2011-07-28", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Thomson Interactive" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-class-57-rail-tour-loco-add-on.json b/data/game/tr/train-simulator-class-57-rail-tour-loco-add-on.json new file mode 100644 index 000000000000..0422ca78acd1 --- /dev/null +++ b/data/game/tr/train-simulator-class-57-rail-tour-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-class-57-rail-tour-loco-add-on", + "name": "Train Simulator: Class 57 Rail Tour Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106254" + ], + "release_date": "2012-11-08", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Oovee® Game Studios" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-class-67-diamond-jubilee-loco-add-on.json b/data/game/tr/train-simulator-class-67-diamond-jubilee-loco-add-on.json new file mode 100644 index 000000000000..a79d40bd1084 --- /dev/null +++ b/data/game/tr/train-simulator-class-67-diamond-jubilee-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-class-67-diamond-jubilee-loco-add-on", + "name": "Train Simulator: Class 67 Diamond Jubilee Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105935" + ], + "release_date": "2012-05-31", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-class-86-loco-add-on.json b/data/game/tr/train-simulator-class-86-loco-add-on.json new file mode 100644 index 000000000000..ea2629e5f4ab --- /dev/null +++ b/data/game/tr/train-simulator-class-86-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-class-86-loco-add-on", + "name": "Train Simulator: Class 86 Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105749" + ], + "release_date": "2012-08-01", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-class-a4-pacifics-loco-add-on.json b/data/game/tr/train-simulator-class-a4-pacifics-loco-add-on.json new file mode 100644 index 000000000000..5f42099deeaf --- /dev/null +++ b/data/game/tr/train-simulator-class-a4-pacifics-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-class-a4-pacifics-loco-add-on", + "name": "Train Simulator: Class A4 Pacifics Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105851" + ], + "release_date": "2013-05-29", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-class-j94-memories-of-maerdy-loco-add-on.json b/data/game/tr/train-simulator-class-j94-memories-of-maerdy-loco-add-on.json new file mode 100644 index 000000000000..a5499a5b3a4e --- /dev/null +++ b/data/game/tr/train-simulator-class-j94-memories-of-maerdy-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-class-j94-memories-of-maerdy-loco-add-on", + "name": "Train Simulator: Class J94 ‘Memories of Maerdy’ Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106255" + ], + "release_date": "2012-11-01", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "MeshTools" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-clear-creek-log-lumber-expansion-pack-add-on.json b/data/game/tr/train-simulator-clear-creek-log-lumber-expansion-pack-add-on.json new file mode 100644 index 000000000000..071539d1ae22 --- /dev/null +++ b/data/game/tr/train-simulator-clear-creek-log-lumber-expansion-pack-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-clear-creek-log-lumber-expansion-pack-add-on", + "name": "Train Simulator: Clear Creek Log & Lumber Expansion Pack Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106155" + ], + "release_date": "2017-02-08", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Romantic Railroads" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-clear-creek-narrow-gauge-route-add-on.json b/data/game/tr/train-simulator-clear-creek-narrow-gauge-route-add-on.json new file mode 100644 index 000000000000..8709de22ff58 --- /dev/null +++ b/data/game/tr/train-simulator-clear-creek-narrow-gauge-route-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-clear-creek-narrow-gauge-route-add-on", + "name": "Train Simulator: Clear Creek Narrow Gauge Route Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106166" + ], + "release_date": "2016-05-12", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Milepost Simulations" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-clear-creek-old-timer-rolling-stock-pack-add-on.json b/data/game/tr/train-simulator-clear-creek-old-timer-rolling-stock-pack-add-on.json new file mode 100644 index 000000000000..f1228403f73d --- /dev/null +++ b/data/game/tr/train-simulator-clear-creek-old-timer-rolling-stock-pack-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-clear-creek-old-timer-rolling-stock-pack-add-on", + "name": "Train Simulator: Clear Creek Old Timer Rolling Stock Pack Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106149" + ], + "release_date": "2017-04-26", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Milepost Simulations" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-clinchfield-railroad-elkhorn-city-st-paul-route-add-on.json b/data/game/tr/train-simulator-clinchfield-railroad-elkhorn-city-st-paul-route-add-on.json new file mode 100644 index 000000000000..18c8cd9352b2 --- /dev/null +++ b/data/game/tr/train-simulator-clinchfield-railroad-elkhorn-city-st-paul-route-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-clinchfield-railroad-elkhorn-city-st-paul-route-add-on", + "name": "Train Simulator: Clinchfield Railroad: Elkhorn City - St. Paul Route Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105838" + ], + "release_date": "2020-05-07", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-clinchfield-railroad-u36c-loco-add-on.json b/data/game/tr/train-simulator-clinchfield-railroad-u36c-loco-add-on.json new file mode 100644 index 000000000000..ccd82b6a5682 --- /dev/null +++ b/data/game/tr/train-simulator-clinchfield-railroad-u36c-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-clinchfield-railroad-u36c-loco-add-on", + "name": "Train Simulator: Clinchfield Railroad U36C Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105698" + ], + "release_date": "2020-07-23", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-cn-sd40-2-wide-nose-loco-add-on.json b/data/game/tr/train-simulator-cn-sd40-2-wide-nose-loco-add-on.json new file mode 100644 index 000000000000..c935d007666e --- /dev/null +++ b/data/game/tr/train-simulator-cn-sd40-2-wide-nose-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-cn-sd40-2-wide-nose-loco-add-on", + "name": "Train Simulator: CN SD40-2 Wide Nose Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105686" + ], + "release_date": "2012-08-03", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-cologne-dusseldorf-route-add-on.json b/data/game/tr/train-simulator-cologne-dusseldorf-route-add-on.json new file mode 100644 index 000000000000..70c6c12b4da3 --- /dev/null +++ b/data/game/tr/train-simulator-cologne-dusseldorf-route-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-cologne-dusseldorf-route-add-on", + "name": "Train Simulator: Cologne-Dusseldorf Route Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106042" + ], + "release_date": "2012-03-08", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Aerosoft" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-colton-northern-route-add-on.json b/data/game/tr/train-simulator-colton-northern-route-add-on.json new file mode 100644 index 000000000000..0177755128d5 --- /dev/null +++ b/data/game/tr/train-simulator-colton-northern-route-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-colton-northern-route-add-on", + "name": "Train Simulator: Colton & Northern Route Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106259" + ], + "release_date": "2009-09-25", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "All Aboard" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-cornish-main-line-plymouth-penzance-route-add-on.json b/data/game/tr/train-simulator-cornish-main-line-plymouth-penzance-route-add-on.json new file mode 100644 index 000000000000..c4cb9e6d1ac4 --- /dev/null +++ b/data/game/tr/train-simulator-cornish-main-line-plymouth-penzance-route-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-cornish-main-line-plymouth-penzance-route-add-on", + "name": "Train Simulator: Cornish Main Line: Plymouth – Penzance Route Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105612" + ], + "release_date": "2021-01-07", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Just Trains" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-corris-railway-expansion-pack-loco-add-on.json b/data/game/tr/train-simulator-corris-railway-expansion-pack-loco-add-on.json new file mode 100644 index 000000000000..9ae474f8adfe --- /dev/null +++ b/data/game/tr/train-simulator-corris-railway-expansion-pack-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-corris-railway-expansion-pack-loco-add-on", + "name": "Train Simulator: Corris Railway Expansion Pack Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106154" + ], + "release_date": "2017-12-06", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Skyhook Games Studio" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-corris-railway-route-add-on.json b/data/game/tr/train-simulator-corris-railway-route-add-on.json new file mode 100644 index 000000000000..9a7a5f594019 --- /dev/null +++ b/data/game/tr/train-simulator-corris-railway-route-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-corris-railway-route-add-on", + "name": "Train Simulator: Corris Railway Route Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106055" + ], + "release_date": "2016-07-26", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Skyhook Games Studio" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-cprr-4-4-0-no-60-jupiter-steam-loco-add-on.json b/data/game/tr/train-simulator-cprr-4-4-0-no-60-jupiter-steam-loco-add-on.json new file mode 100644 index 000000000000..0b380bb9b8bf --- /dev/null +++ b/data/game/tr/train-simulator-cprr-4-4-0-no-60-jupiter-steam-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-cprr-4-4-0-no-60-jupiter-steam-loco-add-on", + "name": "Train Simulator: CPRR 4-4-0 No. 60 ‘Jupiter’ Steam Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106145" + ], + "release_date": "2017-05-10", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Smokebox" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-cprr-4-6-0-buffalo-steam-loco-add-on.json b/data/game/tr/train-simulator-cprr-4-6-0-buffalo-steam-loco-add-on.json new file mode 100644 index 000000000000..779622150296 --- /dev/null +++ b/data/game/tr/train-simulator-cprr-4-6-0-buffalo-steam-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-cprr-4-6-0-buffalo-steam-loco-add-on", + "name": "Train Simulator: CPRR 4-6-0 Buffalo Steam Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106015" + ], + "release_date": "2018-10-04", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Smokebox" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-crh-380a-high-speed-train-add-on.json b/data/game/tr/train-simulator-crh-380a-high-speed-train-add-on.json new file mode 100644 index 000000000000..6d4b799cd201 --- /dev/null +++ b/data/game/tr/train-simulator-crh-380a-high-speed-train-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-crh-380a-high-speed-train-add-on", + "name": "Train Simulator: CRH 380A High Speed Train Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106433" + ], + "release_date": "2017-04-06", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Just Trains" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-crh2a-emu-add-on.json b/data/game/tr/train-simulator-crh2a-emu-add-on.json new file mode 100644 index 000000000000..c2f0bd9ca6ac --- /dev/null +++ b/data/game/tr/train-simulator-crh2a-emu-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-crh2a-emu-add-on", + "name": "Train Simulator: CRH2A EMU Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105713" + ], + "release_date": "2018-01-18", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Just Trains" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-crh380d-emu-add-on.json b/data/game/tr/train-simulator-crh380d-emu-add-on.json new file mode 100644 index 000000000000..a2e77bf6ef49 --- /dev/null +++ b/data/game/tr/train-simulator-crh380d-emu-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-crh380d-emu-add-on", + "name": "Train Simulator: CRH380D EMU Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105712" + ], + "release_date": "2015-05-06", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Just Trains" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-csx-ac6000cw-loco-add-on.json b/data/game/tr/train-simulator-csx-ac6000cw-loco-add-on.json new file mode 100644 index 000000000000..c492b32a01cd --- /dev/null +++ b/data/game/tr/train-simulator-csx-ac6000cw-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-csx-ac6000cw-loco-add-on", + "name": "Train Simulator: CSX AC6000CW Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105707" + ], + "release_date": "2015-04-16", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-csx-c30-7-loco-add-on.json b/data/game/tr/train-simulator-csx-c30-7-loco-add-on.json new file mode 100644 index 000000000000..625c32126b1e --- /dev/null +++ b/data/game/tr/train-simulator-csx-c30-7-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-csx-c30-7-loco-add-on", + "name": "Train Simulator: CSX C30-7 Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105878" + ], + "release_date": "2017-02-01", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Virtual Rail Creations" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-csx-hanover-subdivision-hanover-hagerstown-route-add-on.json b/data/game/tr/train-simulator-csx-hanover-subdivision-hanover-hagerstown-route-add-on.json new file mode 100644 index 000000000000..4dfe7a90eac4 --- /dev/null +++ b/data/game/tr/train-simulator-csx-hanover-subdivision-hanover-hagerstown-route-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-csx-hanover-subdivision-hanover-hagerstown-route-add-on", + "name": "Train Simulator: CSX Hanover Subdivision: Hanover - Hagerstown Route Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105504" + ], + "release_date": "2020-09-03", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "High Iron Simulations" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-csx-nre-3gs-21b-genset-loco-add-on.json b/data/game/tr/train-simulator-csx-nre-3gs-21b-genset-loco-add-on.json new file mode 100644 index 000000000000..0e14a619b5e3 --- /dev/null +++ b/data/game/tr/train-simulator-csx-nre-3gs-21b-genset-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-csx-nre-3gs-21b-genset-loco-add-on", + "name": "Train Simulator: CSX NRE 3GS-21B 'Genset' Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106225" + ], + "release_date": "2015-03-05", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-csx-sd80mac-loco-add-on.json b/data/game/tr/train-simulator-csx-sd80mac-loco-add-on.json new file mode 100644 index 000000000000..19f8cb06f36f --- /dev/null +++ b/data/game/tr/train-simulator-csx-sd80mac-loco-add-on.json @@ -0,0 +1,18 @@ +{ + "slug": "train-simulator-csx-sd80mac-loco-add-on", + "name": "Train Simulator: CSX SD80MAC Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105930" + ], + "release_date": "2014-07-31", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-d-rgw-sd50-loco-add-on.json b/data/game/tr/train-simulator-d-rgw-sd50-loco-add-on.json new file mode 100644 index 000000000000..4d783c7c06ab --- /dev/null +++ b/data/game/tr/train-simulator-d-rgw-sd50-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-d-rgw-sd50-loco-add-on", + "name": "Train Simulator: D&RGW SD50 Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106047" + ], + "release_date": "2015-08-06", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Digital Train Model" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-d-rgw-sd9-loco-add-on.json b/data/game/tr/train-simulator-d-rgw-sd9-loco-add-on.json new file mode 100644 index 000000000000..7b41a5f805be --- /dev/null +++ b/data/game/tr/train-simulator-d-rgw-sd9-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-d-rgw-sd9-loco-add-on", + "name": "Train Simulator: D&RGW SD9 Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106211" + ], + "release_date": "2015-07-16", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-d-rgw-sw1200-loco-add-on.json b/data/game/tr/train-simulator-d-rgw-sw1200-loco-add-on.json new file mode 100644 index 000000000000..86ca76bbd512 --- /dev/null +++ b/data/game/tr/train-simulator-d-rgw-sw1200-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-d-rgw-sw1200-loco-add-on", + "name": "Train Simulator: D&RGW SW1200 Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105549" + ], + "release_date": "2019-08-08", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Digital Train Model" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-db-br-10-steam-loco-add-on.json b/data/game/tr/train-simulator-db-br-10-steam-loco-add-on.json new file mode 100644 index 000000000000..5e222813ba8f --- /dev/null +++ b/data/game/tr/train-simulator-db-br-10-steam-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-db-br-10-steam-loco-add-on", + "name": "Train Simulator: DB BR 10 Steam Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106156" + ], + "release_date": "2016-12-08", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Romantic Railroads" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-db-br-101-loco-add-on.json b/data/game/tr/train-simulator-db-br-101-loco-add-on.json new file mode 100644 index 000000000000..7a8dc38958f4 --- /dev/null +++ b/data/game/tr/train-simulator-db-br-101-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-db-br-101-loco-add-on", + "name": "Train Simulator: DB BR 101 Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105877" + ], + "release_date": "2017-06-08", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "virtualRailroads" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-db-br-103-tee-loco-add-on.json b/data/game/tr/train-simulator-db-br-103-tee-loco-add-on.json new file mode 100644 index 000000000000..52cfb2858059 --- /dev/null +++ b/data/game/tr/train-simulator-db-br-103-tee-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-db-br-103-tee-loco-add-on", + "name": "Train Simulator: DB BR 103 TEE Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105875" + ], + "release_date": "2014-10-09", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "virtualRailroads" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-db-br-112-1-loco-add-on.json b/data/game/tr/train-simulator-db-br-112-1-loco-add-on.json new file mode 100644 index 000000000000..75be0549cd3b --- /dev/null +++ b/data/game/tr/train-simulator-db-br-112-1-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-db-br-112-1-loco-add-on", + "name": "Train Simulator: DB BR 112.1 Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105873" + ], + "release_date": "2016-10-20", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "virtualRailroads" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-db-br-114-loco-add-on.json b/data/game/tr/train-simulator-db-br-114-loco-add-on.json new file mode 100644 index 000000000000..c110b4ba83a7 --- /dev/null +++ b/data/game/tr/train-simulator-db-br-114-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-db-br-114-loco-add-on", + "name": "Train Simulator: DB BR 114 Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105518" + ], + "release_date": "2016-11-10", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-db-br-120-loco-add-on.json b/data/game/tr/train-simulator-db-br-120-loco-add-on.json new file mode 100644 index 000000000000..c8b48e480ea6 --- /dev/null +++ b/data/game/tr/train-simulator-db-br-120-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-db-br-120-loco-add-on", + "name": "Train Simulator: DB BR 120 Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105573" + ], + "release_date": "2015-06-23", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-db-br-145-loco-add-on.json b/data/game/tr/train-simulator-db-br-145-loco-add-on.json new file mode 100644 index 000000000000..429a4815860c --- /dev/null +++ b/data/game/tr/train-simulator-db-br-145-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-db-br-145-loco-add-on", + "name": "Train Simulator: DB BR 145 Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105548" + ], + "release_date": "2014-03-20", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-db-br-146-5-br-668-2-intercity-2-loco-add-on.json b/data/game/tr/train-simulator-db-br-146-5-br-668-2-intercity-2-loco-add-on.json new file mode 100644 index 000000000000..f3b5093d8e1c --- /dev/null +++ b/data/game/tr/train-simulator-db-br-146-5-br-668-2-intercity-2-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-db-br-146-5-br-668-2-intercity-2-loco-add-on", + "name": "Train Simulator: DB BR 146.5 & BR 668.2 ‘Intercity 2’ Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105578" + ], + "release_date": "2019-11-28", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-db-br-151-loco-add-on.json b/data/game/tr/train-simulator-db-br-151-loco-add-on.json new file mode 100644 index 000000000000..4de1c4f0bdf7 --- /dev/null +++ b/data/game/tr/train-simulator-db-br-151-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-db-br-151-loco-add-on", + "name": "Train Simulator: DB BR 151 Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106126" + ], + "release_date": "2017-11-10", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "virtualRailroads" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-db-br-152-loco-add-on.json b/data/game/tr/train-simulator-db-br-152-loco-add-on.json new file mode 100644 index 000000000000..41627373f5db --- /dev/null +++ b/data/game/tr/train-simulator-db-br-152-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-db-br-152-loco-add-on", + "name": "Train Simulator: DB BR 152 Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105493" + ], + "release_date": "2015-07-23", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-db-br-18-steam-loco-add-on.json b/data/game/tr/train-simulator-db-br-18-steam-loco-add-on.json new file mode 100644 index 000000000000..469b61e67fa0 --- /dev/null +++ b/data/game/tr/train-simulator-db-br-18-steam-loco-add-on.json @@ -0,0 +1,18 @@ +{ + "slug": "train-simulator-db-br-18-steam-loco-add-on", + "name": "Train Simulator: DB BR 18 Steam Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105891" + ], + "release_date": "2017-01-12", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-db-br-181-2-loco-add-on.json b/data/game/tr/train-simulator-db-br-181-2-loco-add-on.json new file mode 100644 index 000000000000..2e2c5fb9a75f --- /dev/null +++ b/data/game/tr/train-simulator-db-br-181-2-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-db-br-181-2-loco-add-on", + "name": "Train Simulator: DB BR 181.2 Loco Add-on", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105949" + ], + "release_date": "2019-01-10", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "virtualRailroads" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-db-br-204-loco-add-on.json b/data/game/tr/train-simulator-db-br-204-loco-add-on.json new file mode 100644 index 000000000000..5ddf6fb4dae0 --- /dev/null +++ b/data/game/tr/train-simulator-db-br-204-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-db-br-204-loco-add-on", + "name": "Train Simulator: DB BR 204 Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105704" + ], + "release_date": "2019-08-22", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-db-br-218-loco-add-on.json b/data/game/tr/train-simulator-db-br-218-loco-add-on.json new file mode 100644 index 000000000000..97875890abf2 --- /dev/null +++ b/data/game/tr/train-simulator-db-br-218-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-db-br-218-loco-add-on", + "name": "Train Simulator: DB BR 218 Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105936" + ], + "release_date": "2015-01-22", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-db-br-261-voith-gravita-loco-add-on.json b/data/game/tr/train-simulator-db-br-261-voith-gravita-loco-add-on.json new file mode 100644 index 000000000000..81c06ea9a16d --- /dev/null +++ b/data/game/tr/train-simulator-db-br-261-voith-gravita-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-db-br-261-voith-gravita-loco-add-on", + "name": "Train Simulator: DB BR 261 'Voith Gravita' Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106127" + ], + "release_date": "2015-09-02", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-db-br-361-loco-add-on.json b/data/game/tr/train-simulator-db-br-361-loco-add-on.json new file mode 100644 index 000000000000..ecd5528016b1 --- /dev/null +++ b/data/game/tr/train-simulator-db-br-361-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-db-br-361-loco-add-on", + "name": "Train Simulator: DB BR 361 Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106219" + ], + "release_date": "2015-12-18", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-db-br-407-new-ice-3-emu-add-on.json b/data/game/tr/train-simulator-db-br-407-new-ice-3-emu-add-on.json new file mode 100644 index 000000000000..e09a2bdb678a --- /dev/null +++ b/data/game/tr/train-simulator-db-br-407-new-ice-3-emu-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-db-br-407-new-ice-3-emu-add-on", + "name": "Train Simulator: DB BR 407 ‘New ICE 3’ EMU Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105484" + ], + "release_date": "2018-11-08", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-db-br-411-ice-t-emu-add-on.json b/data/game/tr/train-simulator-db-br-411-ice-t-emu-add-on.json new file mode 100644 index 000000000000..53d68b0a46b1 --- /dev/null +++ b/data/game/tr/train-simulator-db-br-411-ice-t-emu-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-db-br-411-ice-t-emu-add-on", + "name": "Train Simulator: DB BR 411 'ICE-T' EMU Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105490" + ], + "release_date": "2013-11-07", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-db-br-425-emu-add-on.json b/data/game/tr/train-simulator-db-br-425-emu-add-on.json new file mode 100644 index 000000000000..7c7c3289e481 --- /dev/null +++ b/data/game/tr/train-simulator-db-br-425-emu-add-on.json @@ -0,0 +1,18 @@ +{ + "slug": "train-simulator-db-br-425-emu-add-on", + "name": "Train Simulator: DB BR 425 EMU Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105959" + ], + "release_date": "2019-09-05", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-db-br-440-coradia-continental-loco-add-on.json b/data/game/tr/train-simulator-db-br-440-coradia-continental-loco-add-on.json new file mode 100644 index 000000000000..1b1edfd6e158 --- /dev/null +++ b/data/game/tr/train-simulator-db-br-440-coradia-continental-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-db-br-440-coradia-continental-loco-add-on", + "name": "Train Simulator: DB BR 440 ‘Coradia Continental’ Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105491" + ], + "release_date": "2016-06-17", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-db-br-442-talent-2-emu-add-on.json b/data/game/tr/train-simulator-db-br-442-talent-2-emu-add-on.json new file mode 100644 index 000000000000..a884b53878d6 --- /dev/null +++ b/data/game/tr/train-simulator-db-br-442-talent-2-emu-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-db-br-442-talent-2-emu-add-on", + "name": "Train Simulator: DB BR 442 'Talent 2' EMU Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105676" + ], + "release_date": "2014-10-20", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-db-br-474-3-emu-add-on.json b/data/game/tr/train-simulator-db-br-474-3-emu-add-on.json new file mode 100644 index 000000000000..f8649d85f58a --- /dev/null +++ b/data/game/tr/train-simulator-db-br-474-3-emu-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-db-br-474-3-emu-add-on", + "name": "Train Simulator: DB BR 474.3 EMU Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105632" + ], + "release_date": "2016-01-07", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-db-br-605-ice-td-add-on.json b/data/game/tr/train-simulator-db-br-605-ice-td-add-on.json new file mode 100644 index 000000000000..0da7c2e50580 --- /dev/null +++ b/data/game/tr/train-simulator-db-br-605-ice-td-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-db-br-605-ice-td-add-on", + "name": "Train Simulator: DB BR 605 ICE TD Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105648" + ], + "release_date": "2015-01-30", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-db-br-612-dmu-add-on.json b/data/game/tr/train-simulator-db-br-612-dmu-add-on.json new file mode 100644 index 000000000000..b737f84277e0 --- /dev/null +++ b/data/game/tr/train-simulator-db-br-612-dmu-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-db-br-612-dmu-add-on", + "name": "Train Simulator: DB BR 612 DMU Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105977" + ], + "release_date": "2018-02-08", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "RSSLO" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-db-br-642-dmu-add-on.json b/data/game/tr/train-simulator-db-br-642-dmu-add-on.json new file mode 100644 index 000000000000..724f0cbd8ad0 --- /dev/null +++ b/data/game/tr/train-simulator-db-br-642-dmu-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-db-br-642-dmu-add-on", + "name": "Train Simulator: DB BR 642 DMU Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105964" + ], + "release_date": "2017-08-03", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "RSSLO" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-db-br-643-dmu-add-on.json b/data/game/tr/train-simulator-db-br-643-dmu-add-on.json new file mode 100644 index 000000000000..502ac91acb56 --- /dev/null +++ b/data/game/tr/train-simulator-db-br-643-dmu-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-db-br-643-dmu-add-on", + "name": "Train Simulator: DB BR 643 DMU Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105810" + ], + "release_date": "2018-12-13", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "RSSLO" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-db-br-648-loco-add-on.json b/data/game/tr/train-simulator-db-br-648-loco-add-on.json new file mode 100644 index 000000000000..4f54f8293558 --- /dev/null +++ b/data/game/tr/train-simulator-db-br-648-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-db-br-648-loco-add-on", + "name": "Train Simulator: DB BR 648 Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105866" + ], + "release_date": "2016-04-28", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-db-br111-loco-add-on.json b/data/game/tr/train-simulator-db-br111-loco-add-on.json new file mode 100644 index 000000000000..15ed90a419b4 --- /dev/null +++ b/data/game/tr/train-simulator-db-br111-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-db-br111-loco-add-on", + "name": "Train Simulator: DB BR111 Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105876" + ], + "release_date": "2014-01-08", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "virtualRailroads" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-db-br143-loco-add-on.json b/data/game/tr/train-simulator-db-br143-loco-add-on.json new file mode 100644 index 000000000000..c856c58cf0c0 --- /dev/null +++ b/data/game/tr/train-simulator-db-br143-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-db-br143-loco-add-on", + "name": "Train Simulator: DB BR143 Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106232" + ], + "release_date": "2012-05-24", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "virtualRailroads" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-db-br232-loco-add-on.json b/data/game/tr/train-simulator-db-br232-loco-add-on.json new file mode 100644 index 000000000000..dc5ce033c8b3 --- /dev/null +++ b/data/game/tr/train-simulator-db-br232-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-db-br232-loco-add-on", + "name": "Train Simulator: DB BR232 Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105858" + ], + "release_date": "2013-06-27", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-db-br420-emu-add-on.json b/data/game/tr/train-simulator-db-br420-emu-add-on.json new file mode 100644 index 000000000000..4a15c1ce7d76 --- /dev/null +++ b/data/game/tr/train-simulator-db-br420-emu-add-on.json @@ -0,0 +1,18 @@ +{ + "slug": "train-simulator-db-br420-emu-add-on", + "name": "Train Simulator: DB BR420 EMU Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106247" + ], + "release_date": "2013-10-10", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-db-br423-emu-add-on.json b/data/game/tr/train-simulator-db-br423-emu-add-on.json new file mode 100644 index 000000000000..bb6fff3dfe96 --- /dev/null +++ b/data/game/tr/train-simulator-db-br423-emu-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-db-br423-emu-add-on", + "name": "Train Simulator: DB BR423 EMU Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106040" + ], + "release_date": "2013-05-09", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-db-br424-emu-add-on.json b/data/game/tr/train-simulator-db-br424-emu-add-on.json new file mode 100644 index 000000000000..1c17d6741656 --- /dev/null +++ b/data/game/tr/train-simulator-db-br424-emu-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-db-br424-emu-add-on", + "name": "Train Simulator: DB BR424 EMU Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105550" + ], + "release_date": "2013-09-25", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-db-freight-1970s-loco-add-on.json b/data/game/tr/train-simulator-db-freight-1970s-loco-add-on.json new file mode 100644 index 000000000000..4e61426ec5ab --- /dev/null +++ b/data/game/tr/train-simulator-db-freight-1970s-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-db-freight-1970s-loco-add-on", + "name": "Train Simulator: DB Freight: 1970s Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106233" + ], + "release_date": "2012-03-01", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "virtualRailroads" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-db-ice-1-emu-add-on.json b/data/game/tr/train-simulator-db-ice-1-emu-add-on.json new file mode 100644 index 000000000000..b4b3ddb5bb49 --- /dev/null +++ b/data/game/tr/train-simulator-db-ice-1-emu-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-db-ice-1-emu-add-on", + "name": "Train Simulator: DB ICE 1 EMU Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106026" + ], + "release_date": "2012-08-03", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-db-ice-2-emu-add-on.json b/data/game/tr/train-simulator-db-ice-2-emu-add-on.json new file mode 100644 index 000000000000..e64eef6f0c01 --- /dev/null +++ b/data/game/tr/train-simulator-db-ice-2-emu-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-db-ice-2-emu-add-on", + "name": "Train Simulator: DB ICE 2 EMU Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105931" + ], + "release_date": "2013-01-10", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-db-ice-3-emu-add-on.json b/data/game/tr/train-simulator-db-ice-3-emu-add-on.json new file mode 100644 index 000000000000..f47f4c8040ef --- /dev/null +++ b/data/game/tr/train-simulator-db-ice-3-emu-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-db-ice-3-emu-add-on", + "name": "Train Simulator: DB ICE 3 EMU Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105757" + ], + "release_date": "2012-08-09", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-db-schenker-class-59-2-loco-add-on.json b/data/game/tr/train-simulator-db-schenker-class-59-2-loco-add-on.json new file mode 100644 index 000000000000..576227659b7b --- /dev/null +++ b/data/game/tr/train-simulator-db-schenker-class-59-2-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-db-schenker-class-59-2-loco-add-on", + "name": "Train Simulator: DB Schenker Class 59/2 Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105636" + ], + "release_date": "2015-10-22", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-dispolok-br-189-loco-add-on.json b/data/game/tr/train-simulator-dispolok-br-189-loco-add-on.json new file mode 100644 index 000000000000..a409701054dd --- /dev/null +++ b/data/game/tr/train-simulator-dispolok-br-189-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-dispolok-br-189-loco-add-on", + "name": "Train Simulator: Dispolok BR 189 Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105868" + ], + "release_date": "2014-03-27", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-doncaster-works-route-add-on.json b/data/game/tr/train-simulator-doncaster-works-route-add-on.json new file mode 100644 index 000000000000..61778f07b3d6 --- /dev/null +++ b/data/game/tr/train-simulator-doncaster-works-route-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-doncaster-works-route-add-on", + "name": "Train Simulator: Doncaster Works Route Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106062" + ], + "release_date": "2010-12-01", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-donner-pass-southern-pacific-route-add-on.json b/data/game/tr/train-simulator-donner-pass-southern-pacific-route-add-on.json new file mode 100644 index 000000000000..3b56c64b5a36 --- /dev/null +++ b/data/game/tr/train-simulator-donner-pass-southern-pacific-route-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-donner-pass-southern-pacific-route-add-on", + "name": "Train Simulator: Donner Pass: Southern Pacific Route Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105539" + ], + "release_date": "2012-12-21", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-dr-br-24-loco-add-on.json b/data/game/tr/train-simulator-dr-br-24-loco-add-on.json new file mode 100644 index 000000000000..10f70b746e22 --- /dev/null +++ b/data/game/tr/train-simulator-dr-br-24-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-dr-br-24-loco-add-on", + "name": "Train Simulator: DR BR 24 Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106174" + ], + "release_date": "2015-11-12", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Romantic Railroads" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-dr-br-44-loco-add-on.json b/data/game/tr/train-simulator-dr-br-44-loco-add-on.json new file mode 100644 index 000000000000..e51c6014062a --- /dev/null +++ b/data/game/tr/train-simulator-dr-br-44-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-dr-br-44-loco-add-on", + "name": "Train Simulator: DR BR 44 Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105948" + ], + "release_date": "2019-01-24", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Romantic Railroads" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-dr-br-86-loco-add-on.json b/data/game/tr/train-simulator-dr-br-86-loco-add-on.json new file mode 100644 index 000000000000..c1f2930aec9b --- /dev/null +++ b/data/game/tr/train-simulator-dr-br-86-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-dr-br-86-loco-add-on", + "name": "Train Simulator: DR BR 86 Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105552" + ], + "release_date": "2015-10-20", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-duchess-of-sutherland-loco-add-on.json b/data/game/tr/train-simulator-duchess-of-sutherland-loco-add-on.json new file mode 100644 index 000000000000..c2fd05b601ea --- /dev/null +++ b/data/game/tr/train-simulator-duchess-of-sutherland-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-duchess-of-sutherland-loco-add-on", + "name": "Train Simulator: Duchess of Sutherland Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105497" + ], + "release_date": "2014-08-07", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-e18-loco-add-on.json b/data/game/tr/train-simulator-e18-loco-add-on.json new file mode 100644 index 000000000000..54c60c0b7067 --- /dev/null +++ b/data/game/tr/train-simulator-e18-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-e18-loco-add-on", + "name": "Train Simulator: E18 Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106235" + ], + "release_date": "2012-04-12", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "virtualRailroads" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-east-coast-main-line-london-peterborough-route-add-on.json b/data/game/tr/train-simulator-east-coast-main-line-london-peterborough-route-add-on.json new file mode 100644 index 000000000000..9aaf39405d5a --- /dev/null +++ b/data/game/tr/train-simulator-east-coast-main-line-london-peterborough-route-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-east-coast-main-line-london-peterborough-route-add-on", + "name": "Train Simulator: East Coast Main Line London-Peterborough Route Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105655" + ], + "release_date": "2013-12-05", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-east-coast-main-line-modern-york-peterborough-route-add-on.json b/data/game/tr/train-simulator-east-coast-main-line-modern-york-peterborough-route-add-on.json new file mode 100644 index 000000000000..e17ff5c4a062 --- /dev/null +++ b/data/game/tr/train-simulator-east-coast-main-line-modern-york-peterborough-route-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-east-coast-main-line-modern-york-peterborough-route-add-on", + "name": "Train Simulator: East Coast Main Line Modern: York - Peterborough Route Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105753" + ], + "release_date": "2018-04-06", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Creative Rail" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-east-coast-main-line-route-add-on.json b/data/game/tr/train-simulator-east-coast-main-line-route-add-on.json new file mode 100644 index 000000000000..8894f40e2cb1 --- /dev/null +++ b/data/game/tr/train-simulator-east-coast-main-line-route-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-east-coast-main-line-route-add-on", + "name": "Train Simulator: East Coast Main Line Route Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105764" + ], + "release_date": "2012-09-18", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-east-midlands-br-class-222-demu-add-on.json b/data/game/tr/train-simulator-east-midlands-br-class-222-demu-add-on.json new file mode 100644 index 000000000000..5e9c31ef7592 --- /dev/null +++ b/data/game/tr/train-simulator-east-midlands-br-class-222-demu-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-east-midlands-br-class-222-demu-add-on", + "name": "Train Simulator: East Midlands BR Class 222 DEMU Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105881" + ], + "release_date": "2020-03-05", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Just Trains" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-east-midlands-coal-sherwood-high-marnham-route-add-on.json b/data/game/tr/train-simulator-east-midlands-coal-sherwood-high-marnham-route-add-on.json new file mode 100644 index 000000000000..061eba8823c7 --- /dev/null +++ b/data/game/tr/train-simulator-east-midlands-coal-sherwood-high-marnham-route-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-east-midlands-coal-sherwood-high-marnham-route-add-on", + "name": "Train Simulator: East Midlands Coal: Sherwood - High Marnham Route Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105953" + ], + "release_date": "2019-09-27", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Creative Rail" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-ecml-north-newcastle-edinburgh-route-add-on.json b/data/game/tr/train-simulator-ecml-north-newcastle-edinburgh-route-add-on.json new file mode 100644 index 000000000000..c43ffd68f713 --- /dev/null +++ b/data/game/tr/train-simulator-ecml-north-newcastle-edinburgh-route-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-ecml-north-newcastle-edinburgh-route-add-on", + "name": "Train Simulator: ECML North: Newcastle - Edinburgh Route Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105839" + ], + "release_date": "2020-05-07", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Just Trains" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-edinburgh-glasgow-route-add-on.json b/data/game/tr/train-simulator-edinburgh-glasgow-route-add-on.json new file mode 100644 index 000000000000..038d1ca2a240 --- /dev/null +++ b/data/game/tr/train-simulator-edinburgh-glasgow-route-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-edinburgh-glasgow-route-add-on", + "name": "Train Simulator: Edinburgh-Glasgow Route Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105754" + ], + "release_date": "2012-12-13", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Thomson Interactive" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-engadin-linie-pontresina-scuol-tarasp-route-add-on.json b/data/game/tr/train-simulator-engadin-linie-pontresina-scuol-tarasp-route-add-on.json new file mode 100644 index 000000000000..c366936ab407 --- /dev/null +++ b/data/game/tr/train-simulator-engadin-linie-pontresina-scuol-tarasp-route-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-engadin-linie-pontresina-scuol-tarasp-route-add-on", + "name": "Train Simulator: Engadin Linie: Pontresina - Scuol-Tarasp Route Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105503" + ], + "release_date": "2020-06-25", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Rivet Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-ennstalbahn-bishofshofen-selzthal-route-add-on.json b/data/game/tr/train-simulator-ennstalbahn-bishofshofen-selzthal-route-add-on.json new file mode 100644 index 000000000000..5e60e3d5a24d --- /dev/null +++ b/data/game/tr/train-simulator-ennstalbahn-bishofshofen-selzthal-route-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-ennstalbahn-bishofshofen-selzthal-route-add-on", + "name": "Train Simulator: Ennstalbahn: Bishofshofen - Selzthal Route Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105853" + ], + "release_date": "2019-11-15", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "RSSLO" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-european-loco-asset-pack.json b/data/game/tr/train-simulator-european-loco-asset-pack.json new file mode 100644 index 000000000000..f3a01d349ce2 --- /dev/null +++ b/data/game/tr/train-simulator-european-loco-asset-pack.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-european-loco-asset-pack", + "name": "Train Simulator: European Loco & Asset Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105961" + ], + "release_date": "2009-10-01", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-ews-class-66-v2-0-loco-add-on.json b/data/game/tr/train-simulator-ews-class-66-v2-0-loco-add-on.json new file mode 100644 index 000000000000..a8fb50feccf7 --- /dev/null +++ b/data/game/tr/train-simulator-ews-class-66-v2-0-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-ews-class-66-v2-0-loco-add-on", + "name": "Train Simulator: EWS Class 66 v2.0 Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106252" + ], + "release_date": "2013-02-28", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-ews-class-67-loco-add-on.json b/data/game/tr/train-simulator-ews-class-67-loco-add-on.json new file mode 100644 index 000000000000..e8d618d83203 --- /dev/null +++ b/data/game/tr/train-simulator-ews-class-67-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-ews-class-67-loco-add-on", + "name": "Train Simulator: EWS Class 67 Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105779" + ], + "release_date": "2012-08-01", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-ews-class-92-loco-add-on.json b/data/game/tr/train-simulator-ews-class-92-loco-add-on.json new file mode 100644 index 000000000000..42642fe5079f --- /dev/null +++ b/data/game/tr/train-simulator-ews-class-92-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-ews-class-92-loco-add-on", + "name": "Train Simulator: EWS Class 92 Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105639" + ], + "release_date": "2014-03-06", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-ews-freightliner-class-08s-loco-add-on.json b/data/game/tr/train-simulator-ews-freightliner-class-08s-loco-add-on.json new file mode 100644 index 000000000000..29a8d63f302a --- /dev/null +++ b/data/game/tr/train-simulator-ews-freightliner-class-08s-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-ews-freightliner-class-08s-loco-add-on", + "name": "Train Simulator: EWS & Freightliner Class 08s Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105778" + ], + "release_date": "2013-04-25", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-falmouth-branch-route-add-on.json b/data/game/tr/train-simulator-falmouth-branch-route-add-on.json new file mode 100644 index 000000000000..b5e9cdd8deb2 --- /dev/null +++ b/data/game/tr/train-simulator-falmouth-branch-route-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-falmouth-branch-route-add-on", + "name": "Train Simulator: Falmouth Branch Route Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105687" + ], + "release_date": "2010-12-17", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-feather-river-canyon-route-add-on.json b/data/game/tr/train-simulator-feather-river-canyon-route-add-on.json new file mode 100644 index 000000000000..1b2f1aee2b17 --- /dev/null +++ b/data/game/tr/train-simulator-feather-river-canyon-route-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-feather-river-canyon-route-add-on", + "name": "Train Simulator: Feather River Canyon Route Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106012" + ], + "release_date": "2016-02-15", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-fife-circle-line-edinburgh-dunfermline-route-add-on.json b/data/game/tr/train-simulator-fife-circle-line-edinburgh-dunfermline-route-add-on.json new file mode 100644 index 000000000000..26104b0f2f7b --- /dev/null +++ b/data/game/tr/train-simulator-fife-circle-line-edinburgh-dunfermline-route-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-fife-circle-line-edinburgh-dunfermline-route-add-on", + "name": "Train Simulator: Fife Circle Line: Edinburgh - Dunfermline Route Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105803" + ], + "release_date": "2020-02-07", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-first-capital-connect-class-319-emu-add-on.json b/data/game/tr/train-simulator-first-capital-connect-class-319-emu-add-on.json new file mode 100644 index 000000000000..7ecfc56f767e --- /dev/null +++ b/data/game/tr/train-simulator-first-capital-connect-class-319-emu-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-first-capital-connect-class-319-emu-add-on", + "name": "Train Simulator: First Capital Connect Class 319 EMU Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105489" + ], + "release_date": "2014-03-14", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-first-capital-connect-class-321-emu-add-on.json b/data/game/tr/train-simulator-first-capital-connect-class-321-emu-add-on.json new file mode 100644 index 000000000000..3bed0a5b9786 --- /dev/null +++ b/data/game/tr/train-simulator-first-capital-connect-class-321-emu-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-first-capital-connect-class-321-emu-add-on", + "name": "Train Simulator: First Capital Connect Class 321 EMU Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106226" + ], + "release_date": "2013-12-05", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-first-capital-connect-class-377-emu-add-on.json b/data/game/tr/train-simulator-first-capital-connect-class-377-emu-add-on.json new file mode 100644 index 000000000000..033c8bcbca2a --- /dev/null +++ b/data/game/tr/train-simulator-first-capital-connect-class-377-emu-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-first-capital-connect-class-377-emu-add-on", + "name": "Train Simulator: First Capital Connect Class 377 EMU Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105872" + ], + "release_date": "2013-01-17", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-fort-kent-to-eagle-lake-route-add-on.json b/data/game/tr/train-simulator-fort-kent-to-eagle-lake-route-add-on.json new file mode 100644 index 000000000000..9dcc48fbc3a1 --- /dev/null +++ b/data/game/tr/train-simulator-fort-kent-to-eagle-lake-route-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-fort-kent-to-eagle-lake-route-add-on", + "name": "Train Simulator: Fort Kent to Eagle Lake Route Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106256" + ], + "release_date": "2010-03-19", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "All Aboard" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-fowler-4f-loco-add-on.json b/data/game/tr/train-simulator-fowler-4f-loco-add-on.json new file mode 100644 index 000000000000..82c18a6bde3d --- /dev/null +++ b/data/game/tr/train-simulator-fowler-4f-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-fowler-4f-loco-add-on", + "name": "Train Simulator: Fowler 4F Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105725" + ], + "release_date": "2010-06-28", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-frankfurt-high-speed-frankfurt-karlsruhe-route-extension-add-on.json b/data/game/tr/train-simulator-frankfurt-high-speed-frankfurt-karlsruhe-route-extension-add-on.json new file mode 100644 index 000000000000..f701bdc53173 --- /dev/null +++ b/data/game/tr/train-simulator-frankfurt-high-speed-frankfurt-karlsruhe-route-extension-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-frankfurt-high-speed-frankfurt-karlsruhe-route-extension-add-on", + "name": "Train Simulator: Frankfurt High Speed: Frankfurt – Karlsruhe Route Extension Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105543" + ], + "release_date": "2018-09-06", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-frankfurt-koblenz-route-add-on.json b/data/game/tr/train-simulator-frankfurt-koblenz-route-add-on.json new file mode 100644 index 000000000000..021b6c541061 --- /dev/null +++ b/data/game/tr/train-simulator-frankfurt-koblenz-route-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-frankfurt-koblenz-route-add-on", + "name": "Train Simulator: Frankfurt - Koblenz Route Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105482" + ], + "release_date": "2020-08-27", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-frankfurt-s-bahn-rhein-main-route-add-on.json b/data/game/tr/train-simulator-frankfurt-s-bahn-rhein-main-route-add-on.json new file mode 100644 index 000000000000..48397e4741de --- /dev/null +++ b/data/game/tr/train-simulator-frankfurt-s-bahn-rhein-main-route-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-frankfurt-s-bahn-rhein-main-route-add-on", + "name": "Train Simulator: Frankfurt S-Bahn Rhein Main Route Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105850" + ], + "release_date": "2018-10-25", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Just Trains" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-frankfurt-u-bahn-route-add-on.json b/data/game/tr/train-simulator-frankfurt-u-bahn-route-add-on.json new file mode 100644 index 000000000000..57617acf30fe --- /dev/null +++ b/data/game/tr/train-simulator-frankfurt-u-bahn-route-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-frankfurt-u-bahn-route-add-on", + "name": "Train Simulator: Frankfurt U-Bahn Route Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105847" + ], + "release_date": "2019-03-15", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Just Trains" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-freightliner-class-57-0-loco-add-on.json b/data/game/tr/train-simulator-freightliner-class-57-0-loco-add-on.json new file mode 100644 index 000000000000..09e196711401 --- /dev/null +++ b/data/game/tr/train-simulator-freightliner-class-57-0-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-freightliner-class-57-0-loco-add-on", + "name": "Train Simulator: Freightliner Class 57/0 Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106043" + ], + "release_date": "2013-02-14", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Oovee® Game Studios" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-freightliner-class-66-v2-0-loco-add-on.json b/data/game/tr/train-simulator-freightliner-class-66-v2-0-loco-add-on.json new file mode 100644 index 000000000000..ae132e2f0d8d --- /dev/null +++ b/data/game/tr/train-simulator-freightliner-class-66-v2-0-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-freightliner-class-66-v2-0-loco-add-on", + "name": "Train Simulator: Freightliner Class 66 v2.0 Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105777" + ], + "release_date": "2012-12-12", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-freightliner-class-70-loco-add-on.json b/data/game/tr/train-simulator-freightliner-class-70-loco-add-on.json new file mode 100644 index 000000000000..96913d7586f9 --- /dev/null +++ b/data/game/tr/train-simulator-freightliner-class-70-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-freightliner-class-70-loco-add-on", + "name": "Train Simulator: Freightliner Class 70 Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106214" + ], + "release_date": "2012-03-29", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-gatwick-express-br-class-460-juniper-emu-add-on.json b/data/game/tr/train-simulator-gatwick-express-br-class-460-juniper-emu-add-on.json new file mode 100644 index 000000000000..e3449106d1ae --- /dev/null +++ b/data/game/tr/train-simulator-gatwick-express-br-class-460-juniper-emu-add-on.json @@ -0,0 +1,18 @@ +{ + "slug": "train-simulator-gatwick-express-br-class-460-juniper-emu-add-on", + "name": "Train Simulator: Gatwick Express BR Class 460 'Juniper' EMU Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106027" + ], + "release_date": "2017-09-28", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-gatwick-express-class-442-wessex-emu-add-on.json b/data/game/tr/train-simulator-gatwick-express-class-442-wessex-emu-add-on.json new file mode 100644 index 000000000000..52abf5823060 --- /dev/null +++ b/data/game/tr/train-simulator-gatwick-express-class-442-wessex-emu-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-gatwick-express-class-442-wessex-emu-add-on", + "name": "Train Simulator: Gatwick Express Class 442 'Wessex' EMU Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105646" + ], + "release_date": "2015-05-28", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-geml-br-class-315-emu-add-on.json b/data/game/tr/train-simulator-geml-br-class-315-emu-add-on.json new file mode 100644 index 000000000000..8e0eb9ccd846 --- /dev/null +++ b/data/game/tr/train-simulator-geml-br-class-315-emu-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-geml-br-class-315-emu-add-on", + "name": "Train Simulator: GEML BR Class 315 EMU Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106064" + ], + "release_date": "2018-08-02", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Armstrong Powerhouse" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-geml-class-90-loco-add-on.json b/data/game/tr/train-simulator-geml-class-90-loco-add-on.json new file mode 100644 index 000000000000..54d6689707d1 --- /dev/null +++ b/data/game/tr/train-simulator-geml-class-90-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-geml-class-90-loco-add-on", + "name": "Train Simulator: GEML Class 90 Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106246" + ], + "release_date": "2013-10-24", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Armstrong Powerhouse" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-giselabahn-saalfelden-w-rgl-route-add-on.json b/data/game/tr/train-simulator-giselabahn-saalfelden-w-rgl-route-add-on.json new file mode 100644 index 000000000000..79040ce63256 --- /dev/null +++ b/data/game/tr/train-simulator-giselabahn-saalfelden-w-rgl-route-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-giselabahn-saalfelden-w-rgl-route-add-on", + "name": "Train Simulator: Giselabahn: Saalfelden - Wörgl Route Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105624" + ], + "release_date": "2021-04-09", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "RSSLO" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-glasgow-airport-rail-link-route-add-on.json b/data/game/tr/train-simulator-glasgow-airport-rail-link-route-add-on.json new file mode 100644 index 000000000000..5f670ed134bd --- /dev/null +++ b/data/game/tr/train-simulator-glasgow-airport-rail-link-route-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-glasgow-airport-rail-link-route-add-on", + "name": "Train Simulator: Glasgow Airport Rail Link Route Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105799" + ], + "release_date": "2012-02-16", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Thomson Interactive" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-gotthardbahn-alpine-classic-erstfeld-bellinzona-route-add-on.json b/data/game/tr/train-simulator-gotthardbahn-alpine-classic-erstfeld-bellinzona-route-add-on.json new file mode 100644 index 000000000000..a7a63ce7b337 --- /dev/null +++ b/data/game/tr/train-simulator-gotthardbahn-alpine-classic-erstfeld-bellinzona-route-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-gotthardbahn-alpine-classic-erstfeld-bellinzona-route-add-on", + "name": "Train Simulator: Gotthardbahn Alpine Classic: Erstfeld – Bellinzona Route Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105520" + ], + "release_date": "2019-08-01", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Rivet Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-gp40-2-loco-pack-add-on.json b/data/game/tr/train-simulator-gp40-2-loco-pack-add-on.json new file mode 100644 index 000000000000..709be5b60761 --- /dev/null +++ b/data/game/tr/train-simulator-gp40-2-loco-pack-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-gp40-2-loco-pack-add-on", + "name": "Train Simulator: GP40-2 Loco Pack Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105843" + ], + "release_date": "2018-06-21", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-grand-central-class-180-adelante-dmu-add-on.json b/data/game/tr/train-simulator-grand-central-class-180-adelante-dmu-add-on.json new file mode 100644 index 000000000000..b16ee8263f09 --- /dev/null +++ b/data/game/tr/train-simulator-grand-central-class-180-adelante-dmu-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-grand-central-class-180-adelante-dmu-add-on", + "name": "Train Simulator: Grand Central Class 180 'Adelante' DMU Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106178" + ], + "release_date": "2015-03-26", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-granger-heartland-kansas-city-topeka-route-add-on.json b/data/game/tr/train-simulator-granger-heartland-kansas-city-topeka-route-add-on.json new file mode 100644 index 000000000000..820326cc3814 --- /dev/null +++ b/data/game/tr/train-simulator-granger-heartland-kansas-city-topeka-route-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-granger-heartland-kansas-city-topeka-route-add-on", + "name": "Train Simulator: Granger Heartland: Kansas City – Topeka Route Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105476" + ], + "release_date": "2019-10-31", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-great-eastern-main-line-london-ipswich-route-add-on.json b/data/game/tr/train-simulator-great-eastern-main-line-london-ipswich-route-add-on.json new file mode 100644 index 000000000000..0be2d2bd2ac2 --- /dev/null +++ b/data/game/tr/train-simulator-great-eastern-main-line-london-ipswich-route-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-great-eastern-main-line-london-ipswich-route-add-on", + "name": "Train Simulator: Great Eastern Main Line London-Ipswich Route Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105770" + ], + "release_date": "2013-08-23", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-great-western-main-line-route-add-on.json b/data/game/tr/train-simulator-great-western-main-line-route-add-on.json new file mode 100644 index 000000000000..7a0d0ede8c55 --- /dev/null +++ b/data/game/tr/train-simulator-great-western-main-line-route-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-great-western-main-line-route-add-on", + "name": "Train Simulator: Great Western Main Line Route Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105769" + ], + "release_date": "2012-09-18", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-green-gold-hst-dmu-add-on.json b/data/game/tr/train-simulator-green-gold-hst-dmu-add-on.json new file mode 100644 index 000000000000..e5b91603be77 --- /dev/null +++ b/data/game/tr/train-simulator-green-gold-hst-dmu-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-green-gold-hst-dmu-add-on", + "name": "Train Simulator: Green & Gold HST DMU Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106271" + ], + "release_date": "2010-09-17", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-guiguang-high-speed-railway-guilin-hezhou-route-add-on.json b/data/game/tr/train-simulator-guiguang-high-speed-railway-guilin-hezhou-route-add-on.json new file mode 100644 index 000000000000..337b8dd28a13 --- /dev/null +++ b/data/game/tr/train-simulator-guiguang-high-speed-railway-guilin-hezhou-route-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-guiguang-high-speed-railway-guilin-hezhou-route-add-on", + "name": "Train Simulator: Guiguang High Speed Railway: Guilin - Hezhou Route Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105722" + ], + "release_date": "2019-06-19", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Union Workshop" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-gwr-1000-class-county-class-steam-loco-add-on.json b/data/game/tr/train-simulator-gwr-1000-class-county-class-steam-loco-add-on.json new file mode 100644 index 000000000000..830d263be02a --- /dev/null +++ b/data/game/tr/train-simulator-gwr-1000-class-county-class-steam-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-gwr-1000-class-county-class-steam-loco-add-on", + "name": "Train Simulator: GWR 1000 Class 'County Class' Steam Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106028" + ], + "release_date": "2018-06-15", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Victory Works" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-gwr-4200-5205-7200-2-8-0t-pack.json b/data/game/tr/train-simulator-gwr-4200-5205-7200-2-8-0t-pack.json new file mode 100644 index 000000000000..e8f0cec02d2d --- /dev/null +++ b/data/game/tr/train-simulator-gwr-4200-5205-7200-2-8-0t-pack.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-gwr-4200-5205-7200-2-8-0t-pack", + "name": "Train Simulator: GWR 4200/5205/7200 2-8-0T Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105752" + ], + "release_date": "2021-02-25", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Victory Works" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-gwr-56xx-loco-add-on.json b/data/game/tr/train-simulator-gwr-56xx-loco-add-on.json new file mode 100644 index 000000000000..b990f71138fc --- /dev/null +++ b/data/game/tr/train-simulator-gwr-56xx-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-gwr-56xx-loco-add-on", + "name": "Train Simulator: GWR 56XX Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106244" + ], + "release_date": "2013-11-21", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Victory Works" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-gwr-7800-manor-class-add-on.json b/data/game/tr/train-simulator-gwr-7800-manor-class-add-on.json new file mode 100644 index 000000000000..97662e864994 --- /dev/null +++ b/data/game/tr/train-simulator-gwr-7800-manor-class-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-gwr-7800-manor-class-add-on", + "name": "Train Simulator: GWR 7800 'Manor' class Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106434" + ], + "release_date": "2020-04-02", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Just Trains" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-gwr-class-14xx-loco-add-on.json b/data/game/tr/train-simulator-gwr-class-14xx-loco-add-on.json new file mode 100644 index 000000000000..e8978364b2d4 --- /dev/null +++ b/data/game/tr/train-simulator-gwr-class-14xx-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-gwr-class-14xx-loco-add-on", + "name": "Train Simulator: GWR Class 14XX Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106072" + ], + "release_date": "2014-10-09", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Victory Works" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-gwr-large-prairies-steam-loco-add-on.json b/data/game/tr/train-simulator-gwr-large-prairies-steam-loco-add-on.json new file mode 100644 index 000000000000..fb04f1d35007 --- /dev/null +++ b/data/game/tr/train-simulator-gwr-large-prairies-steam-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-gwr-large-prairies-steam-loco-add-on", + "name": "Train Simulator: GWR Large Prairies Steam Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106123" + ], + "release_date": "2017-10-12", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Victory Works" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-gwr-nunney-castle-steam-loco-add-on.json b/data/game/tr/train-simulator-gwr-nunney-castle-steam-loco-add-on.json new file mode 100644 index 000000000000..a5e2e059da68 --- /dev/null +++ b/data/game/tr/train-simulator-gwr-nunney-castle-steam-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-gwr-nunney-castle-steam-loco-add-on", + "name": "Train Simulator: GWR Nunney Castle Steam Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106274" + ], + "release_date": "2017-03-09", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Bossman Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-gwr-pannier-tank-pack-add-on.json b/data/game/tr/train-simulator-gwr-pannier-tank-pack-add-on.json new file mode 100644 index 000000000000..f7c8dd16a77f --- /dev/null +++ b/data/game/tr/train-simulator-gwr-pannier-tank-pack-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-gwr-pannier-tank-pack-add-on", + "name": "Train Simulator: GWR Pannier Tank Pack Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105950" + ], + "release_date": "2019-01-08", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Victory Works" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-gwr-saint-class-travelling-post-office-loco-add-on.json b/data/game/tr/train-simulator-gwr-saint-class-travelling-post-office-loco-add-on.json new file mode 100644 index 000000000000..9b8d4550be87 --- /dev/null +++ b/data/game/tr/train-simulator-gwr-saint-class-travelling-post-office-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-gwr-saint-class-travelling-post-office-loco-add-on", + "name": "Train Simulator: GWR Saint Class & Travelling Post Office Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106071" + ], + "release_date": "2016-09-08", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Victory Works" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-gwr-small-prairies-loco-add-on.json b/data/game/tr/train-simulator-gwr-small-prairies-loco-add-on.json new file mode 100644 index 000000000000..50164cfce084 --- /dev/null +++ b/data/game/tr/train-simulator-gwr-small-prairies-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-gwr-small-prairies-loco-add-on", + "name": "Train Simulator: GWR Small Prairies Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106069" + ], + "release_date": "2014-12-10", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Victory Works" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-gwr-star-loco-add-on.json b/data/game/tr/train-simulator-gwr-star-loco-add-on.json new file mode 100644 index 000000000000..17f16124eaed --- /dev/null +++ b/data/game/tr/train-simulator-gwr-star-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-gwr-star-loco-add-on", + "name": "Train Simulator: GWR Star Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106162" + ], + "release_date": "2016-07-13", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Skyhook Games Studio" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-gwr-steam-railmotor-loco-add-on.json b/data/game/tr/train-simulator-gwr-steam-railmotor-loco-add-on.json new file mode 100644 index 000000000000..44fb97a71fcf --- /dev/null +++ b/data/game/tr/train-simulator-gwr-steam-railmotor-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-gwr-steam-railmotor-loco-add-on", + "name": "Train Simulator: GWR Steam Railmotor Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106273" + ], + "release_date": "2014-02-06", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Victory Works" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-hamburg-hanover-route-add-on.json b/data/game/tr/train-simulator-hamburg-hanover-route-add-on.json new file mode 100644 index 000000000000..750f2c08d271 --- /dev/null +++ b/data/game/tr/train-simulator-hamburg-hanover-route-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-hamburg-hanover-route-add-on", + "name": "Train Simulator: Hamburg-Hanover Route Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105521" + ], + "release_date": "2013-07-24", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-hamburg-l-beck-railway-route-add-on.json b/data/game/tr/train-simulator-hamburg-l-beck-railway-route-add-on.json new file mode 100644 index 000000000000..28d1a270bd1b --- /dev/null +++ b/data/game/tr/train-simulator-hamburg-l-beck-railway-route-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-hamburg-l-beck-railway-route-add-on", + "name": "Train Simulator: Hamburg-Lübeck Railway Route Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105630" + ], + "release_date": "2016-01-07", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-hamburg-s1-s-bahn-route-add-on.json b/data/game/tr/train-simulator-hamburg-s1-s-bahn-route-add-on.json new file mode 100644 index 000000000000..06c6c5b872da --- /dev/null +++ b/data/game/tr/train-simulator-hamburg-s1-s-bahn-route-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-hamburg-s1-s-bahn-route-add-on", + "name": "Train Simulator: Hamburg S1 S-Bahn Route Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105621" + ], + "release_date": "2016-11-10", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-hidaka-main-line-tomakomai-hidaka-mombetsu-route-add-on.json b/data/game/tr/train-simulator-hidaka-main-line-tomakomai-hidaka-mombetsu-route-add-on.json new file mode 100644 index 000000000000..55897651ac65 --- /dev/null +++ b/data/game/tr/train-simulator-hidaka-main-line-tomakomai-hidaka-mombetsu-route-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-hidaka-main-line-tomakomai-hidaka-mombetsu-route-add-on", + "name": "Train Simulator: Hidaka Main Line: Tomakomai - Hidaka-Mombetsu Route Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105720" + ], + "release_date": "2017-10-05", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Union Workshop" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-horseshoe-curve-route-add-on.json b/data/game/tr/train-simulator-horseshoe-curve-route-add-on.json new file mode 100644 index 000000000000..c3f6e0f8dd5b --- /dev/null +++ b/data/game/tr/train-simulator-horseshoe-curve-route-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-horseshoe-curve-route-add-on", + "name": "Train Simulator: Horseshoe Curve Route Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105522" + ], + "release_date": "2011-09-23", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-hudson-line-new-york-croton-harmon-route-add-on.json b/data/game/tr/train-simulator-hudson-line-new-york-croton-harmon-route-add-on.json new file mode 100644 index 000000000000..1e3d334569c2 --- /dev/null +++ b/data/game/tr/train-simulator-hudson-line-new-york-croton-harmon-route-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-hudson-line-new-york-croton-harmon-route-add-on", + "name": "Train Simulator: Hudson Line: New York – Croton-Harmon Route Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105514" + ], + "release_date": "2019-03-07", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-im-k-blitzer-bergland-route-add-on.json b/data/game/tr/train-simulator-im-k-blitzer-bergland-route-add-on.json new file mode 100644 index 000000000000..0969553c9670 --- /dev/null +++ b/data/game/tr/train-simulator-im-k-blitzer-bergland-route-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-im-k-blitzer-bergland-route-add-on", + "name": "Train Simulator: Im Köblitzer Bergland Route Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105807" + ], + "release_date": "2020-02-28", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Aerosoft" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-inselbahn-stralsund-sassnitz-route-add-on.json b/data/game/tr/train-simulator-inselbahn-stralsund-sassnitz-route-add-on.json new file mode 100644 index 000000000000..e029f626b245 --- /dev/null +++ b/data/game/tr/train-simulator-inselbahn-stralsund-sassnitz-route-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-inselbahn-stralsund-sassnitz-route-add-on", + "name": "Train Simulator: Inselbahn: Stralsund – Sassnitz Route Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105570" + ], + "release_date": "2019-04-18", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-intercity-br-class-370-apt-p-loco-add-on.json b/data/game/tr/train-simulator-intercity-br-class-370-apt-p-loco-add-on.json new file mode 100644 index 000000000000..f7fb1b01a0d6 --- /dev/null +++ b/data/game/tr/train-simulator-intercity-br-class-370-apt-p-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-intercity-br-class-370-apt-p-loco-add-on", + "name": "Train Simulator: InterCity BR Class 370 ‘APT-P’ Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105483" + ], + "release_date": "2017-12-15", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-intercity-br-class-89-badger-loco-add-on.json b/data/game/tr/train-simulator-intercity-br-class-89-badger-loco-add-on.json new file mode 100644 index 000000000000..297df9e86b47 --- /dev/null +++ b/data/game/tr/train-simulator-intercity-br-class-89-badger-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-intercity-br-class-89-badger-loco-add-on", + "name": "Train Simulator: InterCity BR Class 89 ‘Badger’ Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105696" + ], + "release_date": "2020-03-19", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-intercity-class-91-loco-add-on.json b/data/game/tr/train-simulator-intercity-class-91-loco-add-on.json new file mode 100644 index 000000000000..a9c0d2d03ee0 --- /dev/null +++ b/data/game/tr/train-simulator-intercity-class-91-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-intercity-class-91-loco-add-on", + "name": "Train Simulator: InterCity Class 91 Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106124" + ], + "release_date": "2014-02-26", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-isle-of-wight-route-add-on.json b/data/game/tr/train-simulator-isle-of-wight-route-add-on.json new file mode 100644 index 000000000000..b9ba9f6d71a5 --- /dev/null +++ b/data/game/tr/train-simulator-isle-of-wight-route-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-isle-of-wight-route-add-on", + "name": "Train Simulator: Isle of Wight Route Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105689" + ], + "release_date": "2012-06-07", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-k-ln-airport-link-route-extension-add-on.json b/data/game/tr/train-simulator-k-ln-airport-link-route-extension-add-on.json new file mode 100644 index 000000000000..3c567457381f --- /dev/null +++ b/data/game/tr/train-simulator-k-ln-airport-link-route-extension-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-k-ln-airport-link-route-extension-add-on", + "name": "Train Simulator: Köln Airport Link Route Extension Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105581" + ], + "release_date": "2018-05-03", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-karawankenbahn-ljubljana-villach-tarvisio-route-add-on.json b/data/game/tr/train-simulator-karawankenbahn-ljubljana-villach-tarvisio-route-add-on.json new file mode 100644 index 000000000000..dfae08c2824e --- /dev/null +++ b/data/game/tr/train-simulator-karawankenbahn-ljubljana-villach-tarvisio-route-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-karawankenbahn-ljubljana-villach-tarvisio-route-add-on", + "name": "Train Simulator: Karawankenbahn: Ljubljana, Villach & Tarvisio Route Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105702" + ], + "release_date": "2020-11-19", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "RSSLO" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-konstanz-villingen-route-add-on.json b/data/game/tr/train-simulator-konstanz-villingen-route-add-on.json new file mode 100644 index 000000000000..938f6dd394cd --- /dev/null +++ b/data/game/tr/train-simulator-konstanz-villingen-route-add-on.json @@ -0,0 +1,18 @@ +{ + "slug": "train-simulator-konstanz-villingen-route-add-on", + "name": "Train Simulator: Konstanz-Villingen Route Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105965" + ], + "release_date": "2017-11-02", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-konstanz-villingen-route-extension-villingen-hausach-add-on.json b/data/game/tr/train-simulator-konstanz-villingen-route-extension-villingen-hausach-add-on.json new file mode 100644 index 000000000000..65c04f7ffff2 --- /dev/null +++ b/data/game/tr/train-simulator-konstanz-villingen-route-extension-villingen-hausach-add-on.json @@ -0,0 +1,18 @@ +{ + "slug": "train-simulator-konstanz-villingen-route-extension-villingen-hausach-add-on", + "name": "Train Simulator: Konstanz - Villingen Route Extension: Villingen - Hausach Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105833" + ], + "release_date": "2020-04-09", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-kwazulu-natal-corridor-pietermaritzburg-ladysmith-add-on.json b/data/game/tr/train-simulator-kwazulu-natal-corridor-pietermaritzburg-ladysmith-add-on.json new file mode 100644 index 000000000000..16de0b3d0829 --- /dev/null +++ b/data/game/tr/train-simulator-kwazulu-natal-corridor-pietermaritzburg-ladysmith-add-on.json @@ -0,0 +1,18 @@ +{ + "slug": "train-simulator-kwazulu-natal-corridor-pietermaritzburg-ladysmith-add-on", + "name": "Train Simulator: KwaZulu-Natal Corridor: Pietermaritzburg-Ladysmith Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106237" + ], + "release_date": "2014-07-10", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-lake-constance-schaffhausen-kreuzlingen-route-add-on.json b/data/game/tr/train-simulator-lake-constance-schaffhausen-kreuzlingen-route-add-on.json new file mode 100644 index 000000000000..310946eab95d --- /dev/null +++ b/data/game/tr/train-simulator-lake-constance-schaffhausen-kreuzlingen-route-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-lake-constance-schaffhausen-kreuzlingen-route-add-on", + "name": "Train Simulator: Lake Constance: Schaffhausen – Kreuzlingen Route Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105590" + ], + "release_date": "2020-03-20", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Rivet Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-lgv-marseille-avignon-route-add-on.json b/data/game/tr/train-simulator-lgv-marseille-avignon-route-add-on.json new file mode 100644 index 000000000000..d2355606c02a --- /dev/null +++ b/data/game/tr/train-simulator-lgv-marseille-avignon-route-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-lgv-marseille-avignon-route-add-on", + "name": "Train Simulator: LGV: Marseille - Avignon Route Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105579" + ], + "release_date": "2016-04-21", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-lgv-rh-ne-alpes-m-diterran-e-route-extension-add-on.json b/data/game/tr/train-simulator-lgv-rh-ne-alpes-m-diterran-e-route-extension-add-on.json new file mode 100644 index 000000000000..ca91378b1b90 --- /dev/null +++ b/data/game/tr/train-simulator-lgv-rh-ne-alpes-m-diterran-e-route-extension-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-lgv-rh-ne-alpes-m-diterran-e-route-extension-add-on", + "name": "Train Simulator: LGV Rhône-Alpes & Méditerranée Route Extension Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105580" + ], + "release_date": "2018-12-06", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-liverpool-manchester-route-add-on.json b/data/game/tr/train-simulator-liverpool-manchester-route-add-on.json new file mode 100644 index 000000000000..86450717e1af --- /dev/null +++ b/data/game/tr/train-simulator-liverpool-manchester-route-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-liverpool-manchester-route-add-on", + "name": "Train Simulator: Liverpool-Manchester Route Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105562" + ], + "release_date": "2014-08-14", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-livonia-division-monroe-subdivision-route-add-on.json b/data/game/tr/train-simulator-livonia-division-monroe-subdivision-route-add-on.json new file mode 100644 index 000000000000..4b3b94086c38 --- /dev/null +++ b/data/game/tr/train-simulator-livonia-division-monroe-subdivision-route-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-livonia-division-monroe-subdivision-route-add-on", + "name": "Train Simulator: Livonia Division: Monroe - Subdivision Route Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106045" + ], + "release_date": "2020-02-21", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Skyhook Games Studio" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-lms-5xp-jubilee-class-steam-loco-add-on.json b/data/game/tr/train-simulator-lms-5xp-jubilee-class-steam-loco-add-on.json new file mode 100644 index 000000000000..6b46cf0d2a36 --- /dev/null +++ b/data/game/tr/train-simulator-lms-5xp-jubilee-class-steam-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-lms-5xp-jubilee-class-steam-loco-add-on", + "name": "Train Simulator: LMS 5XP Jubilee Class Steam Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106014" + ], + "release_date": "2018-11-29", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Bossman Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-lms-class-3f-jinty-loco-add-on.json b/data/game/tr/train-simulator-lms-class-3f-jinty-loco-add-on.json new file mode 100644 index 000000000000..60ceaaa7dfa6 --- /dev/null +++ b/data/game/tr/train-simulator-lms-class-3f-jinty-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-lms-class-3f-jinty-loco-add-on", + "name": "Train Simulator: LMS Class 3F ‘Jinty’ Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105888" + ], + "release_date": "2013-05-16", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "MeshTools" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-lms-coronation-class-duchess-of-hamilton-loco-add-on.json b/data/game/tr/train-simulator-lms-coronation-class-duchess-of-hamilton-loco-add-on.json new file mode 100644 index 000000000000..8010f8d8ed9a --- /dev/null +++ b/data/game/tr/train-simulator-lms-coronation-class-duchess-of-hamilton-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-lms-coronation-class-duchess-of-hamilton-loco-add-on", + "name": "Train Simulator: LMS Coronation Class \"Duchess of Hamilton\" Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106213" + ], + "release_date": "2015-11-19", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-lms-rebuilt-patriot-class-steam-loco-add-on.json b/data/game/tr/train-simulator-lms-rebuilt-patriot-class-steam-loco-add-on.json new file mode 100644 index 000000000000..1ef6007e6b8b --- /dev/null +++ b/data/game/tr/train-simulator-lms-rebuilt-patriot-class-steam-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-lms-rebuilt-patriot-class-steam-loco-add-on", + "name": "Train Simulator: LMS Rebuilt Patriot Class Steam Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105657" + ], + "release_date": "2019-04-26", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Bossman Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-lms-rebuilt-royal-scot-steam-loco-add-on.json b/data/game/tr/train-simulator-lms-rebuilt-royal-scot-steam-loco-add-on.json new file mode 100644 index 000000000000..dcf0a058b115 --- /dev/null +++ b/data/game/tr/train-simulator-lms-rebuilt-royal-scot-steam-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-lms-rebuilt-royal-scot-steam-loco-add-on", + "name": "Train Simulator: LMS Rebuilt Royal Scot Steam Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105658" + ], + "release_date": "2019-01-30", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Bossman Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-lms-stanier-class-5-black-five-steam-loco-add-on.json b/data/game/tr/train-simulator-lms-stanier-class-5-black-five-steam-loco-add-on.json new file mode 100644 index 000000000000..0c7377c154f8 --- /dev/null +++ b/data/game/tr/train-simulator-lms-stanier-class-5-black-five-steam-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-lms-stanier-class-5-black-five-steam-loco-add-on", + "name": "Train Simulator: LMS Stanier Class 5 'Black Five' Steam Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105974" + ], + "release_date": "2018-05-17", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Bossman Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-lms-stanier-class-8f-steam-loco-add-on.json b/data/game/tr/train-simulator-lms-stanier-class-8f-steam-loco-add-on.json new file mode 100644 index 000000000000..99d7a158c882 --- /dev/null +++ b/data/game/tr/train-simulator-lms-stanier-class-8f-steam-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-lms-stanier-class-8f-steam-loco-add-on", + "name": "Train Simulator: LMS Stanier Class 8F Steam Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105955" + ], + "release_date": "2019-08-29", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Bossman Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-lms-stanier-mogul-steam-loco-add-on.json b/data/game/tr/train-simulator-lms-stanier-mogul-steam-loco-add-on.json new file mode 100644 index 000000000000..a98af71aa4e1 --- /dev/null +++ b/data/game/tr/train-simulator-lms-stanier-mogul-steam-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-lms-stanier-mogul-steam-loco-add-on", + "name": "Train Simulator: LMS Stanier Mogul Steam Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105576" + ], + "release_date": "2021-04-01", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Bossman Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-lner-black-class-a3-flying-scotsman-loco-add-on.json b/data/game/tr/train-simulator-lner-black-class-a3-flying-scotsman-loco-add-on.json new file mode 100644 index 000000000000..1563b0995bca --- /dev/null +++ b/data/game/tr/train-simulator-lner-black-class-a3-flying-scotsman-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-lner-black-class-a3-flying-scotsman-loco-add-on", + "name": "Train Simulator: LNER Black Class A3 ‘Flying Scotsman’ Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105492" + ], + "release_date": "2012-12-13", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-lner-br-class-43-high-speed-train-remastered-loco-add-on.json b/data/game/tr/train-simulator-lner-br-class-43-high-speed-train-remastered-loco-add-on.json new file mode 100644 index 000000000000..2012a4d92496 --- /dev/null +++ b/data/game/tr/train-simulator-lner-br-class-43-high-speed-train-remastered-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-lner-br-class-43-high-speed-train-remastered-loco-add-on", + "name": "Train Simulator: LNER BR Class 43 ‘High Speed Train’ Remastered Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105697" + ], + "release_date": "2020-06-04", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-lner-br-class-a1-tornado-loco-add-on.json b/data/game/tr/train-simulator-lner-br-class-a1-tornado-loco-add-on.json new file mode 100644 index 000000000000..8604279238e8 --- /dev/null +++ b/data/game/tr/train-simulator-lner-br-class-a1-tornado-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-lner-br-class-a1-tornado-loco-add-on", + "name": "Train Simulator: LNER/BR Class A1 ‘Tornado’ Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105773" + ], + "release_date": "2012-08-16", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-lner-br-class-j94-loco-add-on.json b/data/game/tr/train-simulator-lner-br-class-j94-loco-add-on.json new file mode 100644 index 000000000000..ea88ac53e7c7 --- /dev/null +++ b/data/game/tr/train-simulator-lner-br-class-j94-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-lner-br-class-j94-loco-add-on", + "name": "Train Simulator: LNER/BR Class J94 Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106242" + ], + "release_date": "2012-11-15", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "MeshTools" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-lner-class-a3-flying-scotsman-loco-add-on.json b/data/game/tr/train-simulator-lner-class-a3-flying-scotsman-loco-add-on.json new file mode 100644 index 000000000000..399c33b45b56 --- /dev/null +++ b/data/game/tr/train-simulator-lner-class-a3-flying-scotsman-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-lner-class-a3-flying-scotsman-loco-add-on", + "name": "Train Simulator: LNER Class A3 ‘Flying Scotsman’ Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105772" + ], + "release_date": "2012-08-01", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-lner-class-v2-steam-loco-add-on.json b/data/game/tr/train-simulator-lner-class-v2-steam-loco-add-on.json new file mode 100644 index 000000000000..20ac3d865146 --- /dev/null +++ b/data/game/tr/train-simulator-lner-class-v2-steam-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-lner-class-v2-steam-loco-add-on", + "name": "Train Simulator: LNER Class V2 Steam Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106435" + ], + "release_date": "2020-02-27", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Just Trains" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-lner-peppercorn-class-a2-blue-peter-loco-add-on.json b/data/game/tr/train-simulator-lner-peppercorn-class-a2-blue-peter-loco-add-on.json new file mode 100644 index 000000000000..02093e62e763 --- /dev/null +++ b/data/game/tr/train-simulator-lner-peppercorn-class-a2-blue-peter-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-lner-peppercorn-class-a2-blue-peter-loco-add-on", + "name": "Train Simulator: LNER Peppercorn Class A2 'Blue Peter' Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105647" + ], + "release_date": "2015-05-14", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-lner-peppercorn-class-k1-loco-add-on.json b/data/game/tr/train-simulator-lner-peppercorn-class-k1-loco-add-on.json new file mode 100644 index 000000000000..fd88c28c851c --- /dev/null +++ b/data/game/tr/train-simulator-lner-peppercorn-class-k1-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-lner-peppercorn-class-k1-loco-add-on", + "name": "Train Simulator: LNER Peppercorn Class K1 Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105883" + ], + "release_date": "2015-10-01", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Victory Works" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-lner-raven-q6-steam-loco-add-on.json b/data/game/tr/train-simulator-lner-raven-q6-steam-loco-add-on.json new file mode 100644 index 000000000000..bdd0af114d6a --- /dev/null +++ b/data/game/tr/train-simulator-lner-raven-q6-steam-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-lner-raven-q6-steam-loco-add-on", + "name": "Train Simulator: LNER Raven Q6 Steam Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105882" + ], + "release_date": "2018-03-01", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Victory Works" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-lnwr-g2-super-d-steam-loco-add-on.json b/data/game/tr/train-simulator-lnwr-g2-super-d-steam-loco-add-on.json new file mode 100644 index 000000000000..7f0a39da832f --- /dev/null +++ b/data/game/tr/train-simulator-lnwr-g2-super-d-steam-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-lnwr-g2-super-d-steam-loco-add-on", + "name": "Train Simulator: LNWR G2 Super D Steam Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105889" + ], + "release_date": "2017-03-08", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "MeshTools" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-london-faversham-high-speed-route-add-on.json b/data/game/tr/train-simulator-london-faversham-high-speed-route-add-on.json new file mode 100644 index 000000000000..11fde99401b1 --- /dev/null +++ b/data/game/tr/train-simulator-london-faversham-high-speed-route-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-london-faversham-high-speed-route-add-on", + "name": "Train Simulator: London-Faversham High Speed Route Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105524" + ], + "release_date": "2013-02-21", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-london-marylebone-aylesbury-route-add-on.json b/data/game/tr/train-simulator-london-marylebone-aylesbury-route-add-on.json new file mode 100644 index 000000000000..48528a4f7918 --- /dev/null +++ b/data/game/tr/train-simulator-london-marylebone-aylesbury-route-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-london-marylebone-aylesbury-route-add-on", + "name": "Train Simulator: London Marylebone - Aylesbury Route Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105625" + ], + "release_date": "2019-12-19", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Just Trains" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-london-overground-br-class-313-emu-add-on.json b/data/game/tr/train-simulator-london-overground-br-class-313-emu-add-on.json new file mode 100644 index 000000000000..16862e2977a1 --- /dev/null +++ b/data/game/tr/train-simulator-london-overground-br-class-313-emu-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-london-overground-br-class-313-emu-add-on", + "name": "Train Simulator: London Overground BR Class 313 EMU Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105952" + ], + "release_date": "2017-02-23", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Armstrong Powerhouse" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-london-overground-class-378-capitalstar-emu-add-on.json b/data/game/tr/train-simulator-london-overground-class-378-capitalstar-emu-add-on.json new file mode 100644 index 000000000000..78b99cfba8ca --- /dev/null +++ b/data/game/tr/train-simulator-london-overground-class-378-capitalstar-emu-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-london-overground-class-378-capitalstar-emu-add-on", + "name": "Train Simulator: London Overground Class 378 'Capitalstar' EMU Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105671" + ], + "release_date": "2015-01-08", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-london-to-brighton-route-add-on.json b/data/game/tr/train-simulator-london-to-brighton-route-add-on.json new file mode 100644 index 000000000000..a545ca8fc0b0 --- /dev/null +++ b/data/game/tr/train-simulator-london-to-brighton-route-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-london-to-brighton-route-add-on", + "name": "Train Simulator: London to Brighton Route Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105494" + ], + "release_date": "2012-06-07", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-london-transport-heritage-collection.json b/data/game/tr/train-simulator-london-transport-heritage-collection.json new file mode 100644 index 000000000000..f612287bf43d --- /dev/null +++ b/data/game/tr/train-simulator-london-transport-heritage-collection.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-london-transport-heritage-collection", + "name": "Train Simulator: London Transport Heritage Collection", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106147" + ], + "release_date": "2017-05-04", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-london-underground-s7-1-emu-add-on.json b/data/game/tr/train-simulator-london-underground-s7-1-emu-add-on.json new file mode 100644 index 000000000000..cb57890e0006 --- /dev/null +++ b/data/game/tr/train-simulator-london-underground-s7-1-emu-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-london-underground-s7-1-emu-add-on", + "name": "Train Simulator: London Underground S7+1 EMU Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105784" + ], + "release_date": "2020-08-13", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Just Trains" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-london-underground-s8-emu-add-on.json b/data/game/tr/train-simulator-london-underground-s8-emu-add-on.json new file mode 100644 index 000000000000..305c1f38ac97 --- /dev/null +++ b/data/game/tr/train-simulator-london-underground-s8-emu-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-london-underground-s8-emu-add-on", + "name": "Train Simulator: London Underground S8 EMU Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105804" + ], + "release_date": "2020-01-31", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Just Trains" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-longhai-railway-lingbao-mianchi-route-add-on.json b/data/game/tr/train-simulator-longhai-railway-lingbao-mianchi-route-add-on.json new file mode 100644 index 000000000000..bfd9611dc203 --- /dev/null +++ b/data/game/tr/train-simulator-longhai-railway-lingbao-mianchi-route-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-longhai-railway-lingbao-mianchi-route-add-on", + "name": "Train Simulator: Longhai Railway: Lingbao - Mianchi Route Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105709" + ], + "release_date": "2018-06-14", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "SimTech Vision" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-los-angeles-commuter-rail-f59ph-loco-add-on.json b/data/game/tr/train-simulator-los-angeles-commuter-rail-f59ph-loco-add-on.json new file mode 100644 index 000000000000..f8ad1673688a --- /dev/null +++ b/data/game/tr/train-simulator-los-angeles-commuter-rail-f59ph-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-los-angeles-commuter-rail-f59ph-loco-add-on", + "name": "Train Simulator: Los Angeles Commuter Rail F59PH Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105649" + ], + "release_date": "2014-09-18", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-m-nster-bremen-route-add-on.json b/data/game/tr/train-simulator-m-nster-bremen-route-add-on.json new file mode 100644 index 000000000000..cac7a86a74ca --- /dev/null +++ b/data/game/tr/train-simulator-m-nster-bremen-route-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-m-nster-bremen-route-add-on", + "name": "Train Simulator: Münster - Bremen Route Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105848" + ], + "release_date": "2019-05-03", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Aerosoft" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-malmesbury-branch-route-add-on.json b/data/game/tr/train-simulator-malmesbury-branch-route-add-on.json new file mode 100644 index 000000000000..8782b7c0c78a --- /dev/null +++ b/data/game/tr/train-simulator-malmesbury-branch-route-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-malmesbury-branch-route-add-on", + "name": "Train Simulator: Malmesbury Branch Route Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106136" + ], + "release_date": "2017-07-06", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Just Trains" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-marsdonshire-route-add-on.json b/data/game/tr/train-simulator-marsdonshire-route-add-on.json new file mode 100644 index 000000000000..3d10fc4e15eb --- /dev/null +++ b/data/game/tr/train-simulator-marsdonshire-route-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-marsdonshire-route-add-on", + "name": "Train Simulator: Marsdonshire Route Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105723" + ], + "release_date": "2020-10-16", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Just Trains" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-merchant-navy-class-35028-clan-line-steam-loco-add-on.json b/data/game/tr/train-simulator-merchant-navy-class-35028-clan-line-steam-loco-add-on.json new file mode 100644 index 000000000000..ebe25bb1f186 --- /dev/null +++ b/data/game/tr/train-simulator-merchant-navy-class-35028-clan-line-steam-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-merchant-navy-class-35028-clan-line-steam-loco-add-on", + "name": "Train Simulator: Merchant Navy Class 35028 ‘Clan Line’ Steam Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105706" + ], + "release_date": "2020-09-24", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Bossman Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-metro-north-kawasaki-m8-emu-add-on.json b/data/game/tr/train-simulator-metro-north-kawasaki-m8-emu-add-on.json new file mode 100644 index 000000000000..24e9d823b976 --- /dev/null +++ b/data/game/tr/train-simulator-metro-north-kawasaki-m8-emu-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-metro-north-kawasaki-m8-emu-add-on", + "name": "Train Simulator: Metro-North Kawasaki M8 EMU Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105937" + ], + "release_date": "2014-04-24", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-metro-north-m2-emu-add-on.json b/data/game/tr/train-simulator-metro-north-m2-emu-add-on.json new file mode 100644 index 000000000000..42e21e8cac0c --- /dev/null +++ b/data/game/tr/train-simulator-metro-north-m2-emu-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-metro-north-m2-emu-add-on", + "name": "Train Simulator: Metro North M2 EMU Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105699" + ], + "release_date": "2020-02-06", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Reppo" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-metro-north-p32-ac-dm-genesis-loco-add-on.json b/data/game/tr/train-simulator-metro-north-p32-ac-dm-genesis-loco-add-on.json new file mode 100644 index 000000000000..028350ac8edc --- /dev/null +++ b/data/game/tr/train-simulator-metro-north-p32-ac-dm-genesis-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-metro-north-p32-ac-dm-genesis-loco-add-on", + "name": "Train Simulator: Metro-North P32 AC-DM 'Genesis' Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106426" + ], + "release_date": "2014-07-10", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-metronom-me-146-loco-add-on.json b/data/game/tr/train-simulator-metronom-me-146-loco-add-on.json new file mode 100644 index 000000000000..eba60fe6bb0e --- /dev/null +++ b/data/game/tr/train-simulator-metronom-me-146-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-metronom-me-146-loco-add-on", + "name": "Train Simulator: Metronom ME 146 Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106261" + ], + "release_date": "2013-08-15", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-metropolitan-line-aldgate-uxbridge-amersham-route-add-on.json b/data/game/tr/train-simulator-metropolitan-line-aldgate-uxbridge-amersham-route-add-on.json new file mode 100644 index 000000000000..734e5ff39aea --- /dev/null +++ b/data/game/tr/train-simulator-metropolitan-line-aldgate-uxbridge-amersham-route-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-metropolitan-line-aldgate-uxbridge-amersham-route-add-on", + "name": "Train Simulator: Metropolitan Line: Aldgate - Uxbridge & Amersham Route Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105511" + ], + "release_date": "2020-08-13", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Just Trains" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-miami-commuter-rail-f40phl-2-loco-add-on.json b/data/game/tr/train-simulator-miami-commuter-rail-f40phl-2-loco-add-on.json new file mode 100644 index 000000000000..d686f46cdfe3 --- /dev/null +++ b/data/game/tr/train-simulator-miami-commuter-rail-f40phl-2-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-miami-commuter-rail-f40phl-2-loco-add-on", + "name": "Train Simulator: Miami Commuter Rail F40PHL-2 Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105486" + ], + "release_date": "2015-02-26", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-miami-west-palm-beach-route-add-on.json b/data/game/tr/train-simulator-miami-west-palm-beach-route-add-on.json new file mode 100644 index 000000000000..e074e029a867 --- /dev/null +++ b/data/game/tr/train-simulator-miami-west-palm-beach-route-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-miami-west-palm-beach-route-add-on", + "name": "Train Simulator: Miami - West Palm Beach Route Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105485" + ], + "release_date": "2014-12-18", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-midland-line-aickens-springfield-route-add-on.json b/data/game/tr/train-simulator-midland-line-aickens-springfield-route-add-on.json new file mode 100644 index 000000000000..317255832611 --- /dev/null +++ b/data/game/tr/train-simulator-midland-line-aickens-springfield-route-add-on.json @@ -0,0 +1,18 @@ +{ + "slug": "train-simulator-midland-line-aickens-springfield-route-add-on", + "name": "Train Simulator: Midland Line: Aickens - Springfield Route Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105606" + ], + "release_date": "2021-01-28", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-midland-main-line-leicester-derby-nottingham-route-add-on.json b/data/game/tr/train-simulator-midland-main-line-leicester-derby-nottingham-route-add-on.json new file mode 100644 index 000000000000..92eb4cbab551 --- /dev/null +++ b/data/game/tr/train-simulator-midland-main-line-leicester-derby-nottingham-route-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-midland-main-line-leicester-derby-nottingham-route-add-on", + "name": "Train Simulator: Midland Main Line: Leicester - Derby & Nottingham Route Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105605" + ], + "release_date": "2021-04-29", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Just Trains" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-midland-main-line-sheffield-derby-route-add-on.json b/data/game/tr/train-simulator-midland-main-line-sheffield-derby-route-add-on.json new file mode 100644 index 000000000000..5dce2be67395 --- /dev/null +++ b/data/game/tr/train-simulator-midland-main-line-sheffield-derby-route-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-midland-main-line-sheffield-derby-route-add-on", + "name": "Train Simulator: Midland Main Line: Sheffield - Derby Route Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105615" + ], + "release_date": "2020-12-03", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Just Trains" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-mighty-seddin-freight-route-add-on.json b/data/game/tr/train-simulator-mighty-seddin-freight-route-add-on.json new file mode 100644 index 000000000000..935765bf3c74 --- /dev/null +++ b/data/game/tr/train-simulator-mighty-seddin-freight-route-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-mighty-seddin-freight-route-add-on", + "name": "Train Simulator: Mighty Seddin Freight Route Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105980" + ], + "release_date": "2017-07-13", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Aerosoft" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-mittenwaldbahn-garmisch-partenkirchen-innsbruck-route-add-on.json b/data/game/tr/train-simulator-mittenwaldbahn-garmisch-partenkirchen-innsbruck-route-add-on.json new file mode 100644 index 000000000000..3b1a0e4b2b44 --- /dev/null +++ b/data/game/tr/train-simulator-mittenwaldbahn-garmisch-partenkirchen-innsbruck-route-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-mittenwaldbahn-garmisch-partenkirchen-innsbruck-route-add-on", + "name": "Train Simulator: Mittenwaldbahn: Garmisch-Partenkirchen - Innsbruck Route Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105479" + ], + "release_date": "2017-02-16", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-montana-hi-line-shelby-havre-route-add-on.json b/data/game/tr/train-simulator-montana-hi-line-shelby-havre-route-add-on.json new file mode 100644 index 000000000000..f571d66bfbb4 --- /dev/null +++ b/data/game/tr/train-simulator-montana-hi-line-shelby-havre-route-add-on.json @@ -0,0 +1,18 @@ +{ + "slug": "train-simulator-montana-hi-line-shelby-havre-route-add-on", + "name": "Train Simulator: Montana Hi-Line: Shelby - Havre Route Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106067" + ], + "release_date": "2019-12-19", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-mosel-valley-koblenz-trier-route-add-on.json b/data/game/tr/train-simulator-mosel-valley-koblenz-trier-route-add-on.json new file mode 100644 index 000000000000..3d3d2cbf4983 --- /dev/null +++ b/data/game/tr/train-simulator-mosel-valley-koblenz-trier-route-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-mosel-valley-koblenz-trier-route-add-on", + "name": "Train Simulator: Mosel Valley: Koblenz - Trier Route Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105681" + ], + "release_date": "2015-12-21", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Aerosoft" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-mrce-br-185-5-loco-add-on.json b/data/game/tr/train-simulator-mrce-br-185-5-loco-add-on.json new file mode 100644 index 000000000000..ecc25075f11e --- /dev/null +++ b/data/game/tr/train-simulator-mrce-br-185-5-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-mrce-br-185-5-loco-add-on", + "name": "Train Simulator: MRCE BR 185.5 Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106153" + ], + "release_date": "2015-03-12", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-mrce-dispolok-pack-loco-add-on.json b/data/game/tr/train-simulator-mrce-dispolok-pack-loco-add-on.json new file mode 100644 index 000000000000..accb15eff12d --- /dev/null +++ b/data/game/tr/train-simulator-mrce-dispolok-pack-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-mrce-dispolok-pack-loco-add-on", + "name": "Train Simulator: MRCE Dispolok Pack Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106436" + ], + "release_date": "2018-01-25", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-mrce-er20-eurorunner-loco-add-on.json b/data/game/tr/train-simulator-mrce-er20-eurorunner-loco-add-on.json new file mode 100644 index 000000000000..020544965eec --- /dev/null +++ b/data/game/tr/train-simulator-mrce-er20-eurorunner-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-mrce-er20-eurorunner-loco-add-on", + "name": "Train Simulator: MRCE ER20 Eurorunner Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105867" + ], + "release_date": "2013-10-24", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-mrce-es-64-u2-taurus-loco-add-on.json b/data/game/tr/train-simulator-mrce-es-64-u2-taurus-loco-add-on.json new file mode 100644 index 000000000000..accf2f26eb30 --- /dev/null +++ b/data/game/tr/train-simulator-mrce-es-64-u2-taurus-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-mrce-es-64-u2-taurus-loco-add-on", + "name": "Train Simulator: MRCE ES 64 U2 'Taurus' Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105546" + ], + "release_date": "2013-11-21", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-munich-augsburg-route-add-on.json b/data/game/tr/train-simulator-munich-augsburg-route-add-on.json new file mode 100644 index 000000000000..47d366b5cd52 --- /dev/null +++ b/data/game/tr/train-simulator-munich-augsburg-route-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-munich-augsburg-route-add-on", + "name": "Train Simulator: Munich-Augsburg Route Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105683" + ], + "release_date": "2012-10-10", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-munich-garmisch-partenkirchen-route-add-on.json b/data/game/tr/train-simulator-munich-garmisch-partenkirchen-route-add-on.json new file mode 100644 index 000000000000..7540ab13e37b --- /dev/null +++ b/data/game/tr/train-simulator-munich-garmisch-partenkirchen-route-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-munich-garmisch-partenkirchen-route-add-on", + "name": "Train Simulator: Munich - Garmisch-Partenkirchen Route Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105592" + ], + "release_date": "2014-05-15", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-munich-rosenheim-route-add-on.json b/data/game/tr/train-simulator-munich-rosenheim-route-add-on.json new file mode 100644 index 000000000000..a137c76bb263 --- /dev/null +++ b/data/game/tr/train-simulator-munich-rosenheim-route-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-munich-rosenheim-route-add-on", + "name": "Train Simulator: Munich - Rosenheim Route Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105488" + ], + "release_date": "2015-07-23", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-n15-king-arthur-class-sir-lamiel-loco-add-on.json b/data/game/tr/train-simulator-n15-king-arthur-class-sir-lamiel-loco-add-on.json new file mode 100644 index 000000000000..f7e968380fcc --- /dev/null +++ b/data/game/tr/train-simulator-n15-king-arthur-class-sir-lamiel-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-n15-king-arthur-class-sir-lamiel-loco-add-on", + "name": "Train Simulator: N15 King Arthur Class ‘Sir Lamiel’ Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106210" + ], + "release_date": "2014-12-04", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-nec-new-york-new-haven-route-add-on.json b/data/game/tr/train-simulator-nec-new-york-new-haven-route-add-on.json new file mode 100644 index 000000000000..b134e6f96ecb --- /dev/null +++ b/data/game/tr/train-simulator-nec-new-york-new-haven-route-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-nec-new-york-new-haven-route-add-on", + "name": "Train Simulator: NEC: New York-New Haven Route Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105679" + ], + "release_date": "2014-04-10", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-netherfield-nottingham-network-route-add-on.json b/data/game/tr/train-simulator-netherfield-nottingham-network-route-add-on.json new file mode 100644 index 000000000000..179f3dd1db3b --- /dev/null +++ b/data/game/tr/train-simulator-netherfield-nottingham-network-route-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-netherfield-nottingham-network-route-add-on", + "name": "Train Simulator: Netherfield: Nottingham Network Route Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105564" + ], + "release_date": "2017-06-02", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-network-southeast-class-121-dmu-add-on.json b/data/game/tr/train-simulator-network-southeast-class-121-dmu-add-on.json new file mode 100644 index 000000000000..fdd9b99d283e --- /dev/null +++ b/data/game/tr/train-simulator-network-southeast-class-121-dmu-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-network-southeast-class-121-dmu-add-on", + "name": "Train Simulator: Network SouthEast Class 121 DMU Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105800" + ], + "release_date": "2014-06-05", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-network-southeast-class-159-dmu-add-on.json b/data/game/tr/train-simulator-network-southeast-class-159-dmu-add-on.json new file mode 100644 index 000000000000..4f1e076e39a0 --- /dev/null +++ b/data/game/tr/train-simulator-network-southeast-class-159-dmu-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-network-southeast-class-159-dmu-add-on", + "name": "Train Simulator: Network SouthEast Class 159 DMU Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105654" + ], + "release_date": "2015-04-09", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-network-southeast-class-205-thumper-demu-add-on.json b/data/game/tr/train-simulator-network-southeast-class-205-thumper-demu-add-on.json new file mode 100644 index 000000000000..5ec4be0d4a1b --- /dev/null +++ b/data/game/tr/train-simulator-network-southeast-class-205-thumper-demu-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-network-southeast-class-205-thumper-demu-add-on", + "name": "Train Simulator: Network Southeast Class 205 ‘Thumper’ DEMU Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105928" + ], + "release_date": "2017-07-21", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Armstrong Powerhouse" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-network-southeast-class-415-4epb-emu-add-on.json b/data/game/tr/train-simulator-network-southeast-class-415-4epb-emu-add-on.json new file mode 100644 index 000000000000..55de34f4be24 --- /dev/null +++ b/data/game/tr/train-simulator-network-southeast-class-415-4epb-emu-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-network-southeast-class-415-4epb-emu-add-on", + "name": "Train Simulator: Network SouthEast Class 415 '4EPB' EMU Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106158" + ], + "release_date": "2015-04-02", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-network-southeast-class-47-loco-add-on.json b/data/game/tr/train-simulator-network-southeast-class-47-loco-add-on.json new file mode 100644 index 000000000000..568529e8a189 --- /dev/null +++ b/data/game/tr/train-simulator-network-southeast-class-47-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-network-southeast-class-47-loco-add-on", + "name": "Train Simulator: Network Southeast Class 47 Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105535" + ], + "release_date": "2010-08-06", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-new-haven-dl-109-loco-add-on.json b/data/game/tr/train-simulator-new-haven-dl-109-loco-add-on.json new file mode 100644 index 000000000000..0ff2d1a0dcc4 --- /dev/null +++ b/data/game/tr/train-simulator-new-haven-dl-109-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-new-haven-dl-109-loco-add-on", + "name": "Train Simulator: New Haven DL-109 Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105584" + ], + "release_date": "2021-04-15", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Digital Train Model" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-new-haven-e-33-loco-add-on.json b/data/game/tr/train-simulator-new-haven-e-33-loco-add-on.json new file mode 100644 index 000000000000..fd86edd115e7 --- /dev/null +++ b/data/game/tr/train-simulator-new-haven-e-33-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-new-haven-e-33-loco-add-on", + "name": "Train Simulator: New Haven E-33 Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106438" + ], + "release_date": "2017-08-25", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Reppo" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-new-haven-fl9-loco-add-on.json b/data/game/tr/train-simulator-new-haven-fl9-loco-add-on.json new file mode 100644 index 000000000000..a62504565640 --- /dev/null +++ b/data/game/tr/train-simulator-new-haven-fl9-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-new-haven-fl9-loco-add-on", + "name": "Train Simulator: New Haven FL9 Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105680" + ], + "release_date": "2015-02-19", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-nj-transit-alp-46-loco-add-on.json b/data/game/tr/train-simulator-nj-transit-alp-46-loco-add-on.json new file mode 100644 index 000000000000..666cc833213c --- /dev/null +++ b/data/game/tr/train-simulator-nj-transit-alp-46-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-nj-transit-alp-46-loco-add-on", + "name": "Train Simulator: NJ TRANSIT® ALP-46 Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105675" + ], + "release_date": "2015-10-15", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-nj-transit-arrow-iii-emu-add-on.json b/data/game/tr/train-simulator-nj-transit-arrow-iii-emu-add-on.json new file mode 100644 index 000000000000..bb3411fa8150 --- /dev/null +++ b/data/game/tr/train-simulator-nj-transit-arrow-iii-emu-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-nj-transit-arrow-iii-emu-add-on", + "name": "Train Simulator: NJ TRANSIT® Arrow III EMU Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106151" + ], + "release_date": "2017-04-12", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-nj-transit-f40ph-2cat-loco-add-on.json b/data/game/tr/train-simulator-nj-transit-f40ph-2cat-loco-add-on.json new file mode 100644 index 000000000000..7d197e83d0ce --- /dev/null +++ b/data/game/tr/train-simulator-nj-transit-f40ph-2cat-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-nj-transit-f40ph-2cat-loco-add-on", + "name": "Train Simulator: NJ TRANSIT® F40PH -2CAT Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105862" + ], + "release_date": "2015-10-07", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-nj-transit-gp40ph-2b-loco-add-on.json b/data/game/tr/train-simulator-nj-transit-gp40ph-2b-loco-add-on.json new file mode 100644 index 000000000000..cb95f247c014 --- /dev/null +++ b/data/game/tr/train-simulator-nj-transit-gp40ph-2b-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-nj-transit-gp40ph-2b-loco-add-on", + "name": "Train Simulator: NJ TRANSIT® GP40PH-2B Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105860" + ], + "release_date": "2015-12-10", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-nj-transit-u34ch-loco-add-on.json b/data/game/tr/train-simulator-nj-transit-u34ch-loco-add-on.json new file mode 100644 index 000000000000..73623a75765b --- /dev/null +++ b/data/game/tr/train-simulator-nj-transit-u34ch-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-nj-transit-u34ch-loco-add-on", + "name": "Train Simulator: NJ TRANSIT® U34CH Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105844" + ], + "release_date": "2020-04-03", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Digital Train Model" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-nkp-s-2-class-berkshire-loco-add-on.json b/data/game/tr/train-simulator-nkp-s-2-class-berkshire-loco-add-on.json new file mode 100644 index 000000000000..8d9f48b305bc --- /dev/null +++ b/data/game/tr/train-simulator-nkp-s-2-class-berkshire-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-nkp-s-2-class-berkshire-loco-add-on", + "name": "Train Simulator: NKP S-2 Class 'Berkshire' Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106220" + ], + "release_date": "2013-06-13", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "G-TraX Simulations" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-norddeutsche-bahn-kiel-l-beck-route-add-on.json b/data/game/tr/train-simulator-norddeutsche-bahn-kiel-l-beck-route-add-on.json new file mode 100644 index 000000000000..ab080dfa9e6f --- /dev/null +++ b/data/game/tr/train-simulator-norddeutsche-bahn-kiel-l-beck-route-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-norddeutsche-bahn-kiel-l-beck-route-add-on", + "name": "Train Simulator: Norddeutsche-Bahn: Kiel - Lübeck Route Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105802" + ], + "release_date": "2019-12-12", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-norfolk-southern-big-7s-loco-add-on.json b/data/game/tr/train-simulator-norfolk-southern-big-7s-loco-add-on.json new file mode 100644 index 000000000000..a59f97d12e9b --- /dev/null +++ b/data/game/tr/train-simulator-norfolk-southern-big-7s-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-norfolk-southern-big-7s-loco-add-on", + "name": "Train Simulator: Norfolk Southern Big 7s Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106173" + ], + "release_date": "2015-12-18", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Digital Train Model" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-norfolk-southern-c39-8-loco-add-on.json b/data/game/tr/train-simulator-norfolk-southern-c39-8-loco-add-on.json new file mode 100644 index 000000000000..e067f9dfb112 --- /dev/null +++ b/data/game/tr/train-simulator-norfolk-southern-c39-8-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-norfolk-southern-c39-8-loco-add-on", + "name": "Train Simulator: Norfolk Southern C39-8 Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105879" + ], + "release_date": "2018-03-15", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Virtual Rail Creations" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-norfolk-southern-coal-district-route-add-on.json b/data/game/tr/train-simulator-norfolk-southern-coal-district-route-add-on.json new file mode 100644 index 000000000000..02a1d8a0e40c --- /dev/null +++ b/data/game/tr/train-simulator-norfolk-southern-coal-district-route-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-norfolk-southern-coal-district-route-add-on", + "name": "Train Simulator: Norfolk Southern Coal District Route Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105677" + ], + "release_date": "2014-07-17", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-norfolk-southern-dash8-40c-loco-add-on.json b/data/game/tr/train-simulator-norfolk-southern-dash8-40c-loco-add-on.json new file mode 100644 index 000000000000..cc19d6b8f210 --- /dev/null +++ b/data/game/tr/train-simulator-norfolk-southern-dash8-40c-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-norfolk-southern-dash8-40c-loco-add-on", + "name": "Train Simulator: Norfolk Southern Dash8-40C Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105929" + ], + "release_date": "2014-09-11", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-norfolk-southern-gp33-eco-loco-add-on.json b/data/game/tr/train-simulator-norfolk-southern-gp33-eco-loco-add-on.json new file mode 100644 index 000000000000..f0a15adeaca0 --- /dev/null +++ b/data/game/tr/train-simulator-norfolk-southern-gp33-eco-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-norfolk-southern-gp33-eco-loco-add-on", + "name": "Train Simulator: Norfolk Southern GP33 ECO Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105726" + ], + "release_date": "2020-09-10", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Travel by Train" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-norfolk-southern-gp38-2-high-hood-loco-add-on.json b/data/game/tr/train-simulator-norfolk-southern-gp38-2-high-hood-loco-add-on.json new file mode 100644 index 000000000000..9632a11ebc35 --- /dev/null +++ b/data/game/tr/train-simulator-norfolk-southern-gp38-2-high-hood-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-norfolk-southern-gp38-2-high-hood-loco-add-on", + "name": "Train Simulator: Norfolk Southern GP38-2 High Hood Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106429" + ], + "release_date": "2014-07-24", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-norfolk-southern-gp50hh-loco-add-on.json b/data/game/tr/train-simulator-norfolk-southern-gp50hh-loco-add-on.json new file mode 100644 index 000000000000..36e1bdb38f56 --- /dev/null +++ b/data/game/tr/train-simulator-norfolk-southern-gp50hh-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-norfolk-southern-gp50hh-loco-add-on", + "name": "Train Simulator: Norfolk Southern GP50HH Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105728" + ], + "release_date": "2020-08-28", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Travel by Train" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-norfolk-southern-gp60-loco-add-on.json b/data/game/tr/train-simulator-norfolk-southern-gp60-loco-add-on.json new file mode 100644 index 000000000000..69b0dc49d193 --- /dev/null +++ b/data/game/tr/train-simulator-norfolk-southern-gp60-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-norfolk-southern-gp60-loco-add-on", + "name": "Train Simulator: Norfolk Southern GP60 Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105856" + ], + "release_date": "2019-07-04", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-norfolk-southern-heritage-sd70aces-loco-add-on.json b/data/game/tr/train-simulator-norfolk-southern-heritage-sd70aces-loco-add-on.json new file mode 100644 index 000000000000..99549b81e7d9 --- /dev/null +++ b/data/game/tr/train-simulator-norfolk-southern-heritage-sd70aces-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-norfolk-southern-heritage-sd70aces-loco-add-on", + "name": "Train Simulator: Norfolk Southern Heritage SD70ACes Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106227" + ], + "release_date": "2013-02-07", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-norfolk-southern-n-line-route-add-on.json b/data/game/tr/train-simulator-norfolk-southern-n-line-route-add-on.json new file mode 100644 index 000000000000..d059e249e763 --- /dev/null +++ b/data/game/tr/train-simulator-norfolk-southern-n-line-route-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-norfolk-southern-n-line-route-add-on", + "name": "Train Simulator: Norfolk Southern N-Line Route Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105480" + ], + "release_date": "2019-06-07", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-norfolk-southern-sd40-2-high-nose-loco-add-on.json b/data/game/tr/train-simulator-norfolk-southern-sd40-2-high-nose-loco-add-on.json new file mode 100644 index 000000000000..29544d6c5c20 --- /dev/null +++ b/data/game/tr/train-simulator-norfolk-southern-sd40-2-high-nose-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-norfolk-southern-sd40-2-high-nose-loco-add-on", + "name": "Train Simulator: Norfolk Southern SD40-2 High Nose Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105685" + ], + "release_date": "2012-08-03", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-norfolk-southern-sd40-2-high-nose-long-hood-forward-loco-add-on.json b/data/game/tr/train-simulator-norfolk-southern-sd40-2-high-nose-long-hood-forward-loco-add-on.json new file mode 100644 index 000000000000..36cbdf2aa037 --- /dev/null +++ b/data/game/tr/train-simulator-norfolk-southern-sd40-2-high-nose-long-hood-forward-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-norfolk-southern-sd40-2-high-nose-long-hood-forward-loco-add-on", + "name": "Train Simulator: Norfolk Southern SD40-2 High Nose Long Hood Forward Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106427" + ], + "release_date": "2014-07-17", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-norfolk-southern-sd45-high-hoods-loco-add-on.json b/data/game/tr/train-simulator-norfolk-southern-sd45-high-hoods-loco-add-on.json new file mode 100644 index 000000000000..3e88f8ec848d --- /dev/null +++ b/data/game/tr/train-simulator-norfolk-southern-sd45-high-hoods-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-norfolk-southern-sd45-high-hoods-loco-add-on", + "name": "Train Simulator: Norfolk Southern SD45 High Hoods Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106019" + ], + "release_date": "2013-09-12", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Digital Train Model" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-norfolk-southern-sd60e-loco-add-on.json b/data/game/tr/train-simulator-norfolk-southern-sd60e-loco-add-on.json new file mode 100644 index 000000000000..9fd1463d5768 --- /dev/null +++ b/data/game/tr/train-simulator-norfolk-southern-sd60e-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-norfolk-southern-sd60e-loco-add-on", + "name": "Train Simulator: Norfolk Southern SD60E Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105945" + ], + "release_date": "2019-03-28", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "The Loco Shop" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-north-jersey-coast-line-route-add-on.json b/data/game/tr/train-simulator-north-jersey-coast-line-route-add-on.json new file mode 100644 index 000000000000..6f5bbdd77583 --- /dev/null +++ b/data/game/tr/train-simulator-north-jersey-coast-line-route-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-north-jersey-coast-line-route-add-on", + "name": "Train Simulator: North Jersey Coast Line Route Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105864" + ], + "release_date": "2015-10-07", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-north-jersey-coast-morristown-lines-route-add-on.json b/data/game/tr/train-simulator-north-jersey-coast-morristown-lines-route-add-on.json new file mode 100644 index 000000000000..7fca83612710 --- /dev/null +++ b/data/game/tr/train-simulator-north-jersey-coast-morristown-lines-route-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-north-jersey-coast-morristown-lines-route-add-on", + "name": "Train Simulator: North Jersey Coast & Morristown Lines Route Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105966" + ], + "release_date": "2017-04-12", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-north-london-goblin-lines-add-on.json b/data/game/tr/train-simulator-north-london-goblin-lines-add-on.json new file mode 100644 index 000000000000..32e43ff2c589 --- /dev/null +++ b/data/game/tr/train-simulator-north-london-goblin-lines-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-north-london-goblin-lines-add-on", + "name": "Train Simulator: North London & Goblin Lines Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105968" + ], + "release_date": "2017-03-01", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-north-london-line-route-add-on.json b/data/game/tr/train-simulator-north-london-line-route-add-on.json new file mode 100644 index 000000000000..3484174480d1 --- /dev/null +++ b/data/game/tr/train-simulator-north-london-line-route-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-north-london-line-route-add-on", + "name": "Train Simulator: North London Line Route Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105554" + ], + "release_date": "2015-10-22", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-north-somerset-railway-route-add-on.json b/data/game/tr/train-simulator-north-somerset-railway-route-add-on.json new file mode 100644 index 000000000000..25f36ae3fefa --- /dev/null +++ b/data/game/tr/train-simulator-north-somerset-railway-route-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-north-somerset-railway-route-add-on", + "name": "Train Simulator: North Somerset Railway Route Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106054" + ], + "release_date": "2016-03-01", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-northeast-corridor-new-york-philadelphia-route-add-on.json b/data/game/tr/train-simulator-northeast-corridor-new-york-philadelphia-route-add-on.json new file mode 100644 index 000000000000..5ba031545f2b --- /dev/null +++ b/data/game/tr/train-simulator-northeast-corridor-new-york-philadelphia-route-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-northeast-corridor-new-york-philadelphia-route-add-on", + "name": "Train Simulator: Northeast Corridor: New York - Philadelphia Route Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105544" + ], + "release_date": "2012-06-07", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-northeast-corridor-washington-dc-baltimore-route-add-on.json b/data/game/tr/train-simulator-northeast-corridor-washington-dc-baltimore-route-add-on.json new file mode 100644 index 000000000000..7f0a85a7cffe --- /dev/null +++ b/data/game/tr/train-simulator-northeast-corridor-washington-dc-baltimore-route-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-northeast-corridor-washington-dc-baltimore-route-add-on", + "name": "Train Simulator: Northeast Corridor: Washington DC - Baltimore Route Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105500" + ], + "release_date": "2020-12-22", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-nuremberg-regensburg-bahn.json b/data/game/tr/train-simulator-nuremberg-regensburg-bahn.json new file mode 100644 index 000000000000..917a2901521f --- /dev/null +++ b/data/game/tr/train-simulator-nuremberg-regensburg-bahn.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-nuremberg-regensburg-bahn", + "name": "Train Simulator: Nuremberg & Regensburg Bahn", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105591" + ], + "release_date": "2020-09-17", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-ohio-steel-2-route-add-on.json b/data/game/tr/train-simulator-ohio-steel-2-route-add-on.json new file mode 100644 index 000000000000..f05e56282753 --- /dev/null +++ b/data/game/tr/train-simulator-ohio-steel-2-route-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-ohio-steel-2-route-add-on", + "name": "Train Simulator: Ohio Steel 2 Route Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106046" + ], + "release_date": "2012-01-12", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "All Aboard" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-outeniqua-choo-tjoe-route-add-on.json b/data/game/tr/train-simulator-outeniqua-choo-tjoe-route-add-on.json new file mode 100644 index 000000000000..34ecf0d5c07b --- /dev/null +++ b/data/game/tr/train-simulator-outeniqua-choo-tjoe-route-add-on.json @@ -0,0 +1,18 @@ +{ + "slug": "train-simulator-outeniqua-choo-tjoe-route-add-on", + "name": "Train Simulator: Outeniqua Choo Tjoe Route Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105984" + ], + "release_date": "2016-09-22", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-peninsula-corridor-san-francisco-gilroy-route-add-on.json b/data/game/tr/train-simulator-peninsula-corridor-san-francisco-gilroy-route-add-on.json new file mode 100644 index 000000000000..184664f77db9 --- /dev/null +++ b/data/game/tr/train-simulator-peninsula-corridor-san-francisco-gilroy-route-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-peninsula-corridor-san-francisco-gilroy-route-add-on", + "name": "Train Simulator: Peninsula Corridor: San Francisco - Gilroy Route Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105978" + ], + "release_date": "2017-12-20", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-peninsula-corridor-san-francisco-san-jose-route-add-on.json b/data/game/tr/train-simulator-peninsula-corridor-san-francisco-san-jose-route-add-on.json new file mode 100644 index 000000000000..7d4a92a6c963 --- /dev/null +++ b/data/game/tr/train-simulator-peninsula-corridor-san-francisco-san-jose-route-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-peninsula-corridor-san-francisco-san-jose-route-add-on", + "name": "Train Simulator: Peninsula Corridor: San Francisco – San Jose Route Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105619" + ], + "release_date": "2016-12-15", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-portsmouth-direct-line-london-waterloo-portsmouth-route-add-on.json b/data/game/tr/train-simulator-portsmouth-direct-line-london-waterloo-portsmouth-route-add-on.json new file mode 100644 index 000000000000..90e5eec2c01f --- /dev/null +++ b/data/game/tr/train-simulator-portsmouth-direct-line-london-waterloo-portsmouth-route-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-portsmouth-direct-line-london-waterloo-portsmouth-route-add-on", + "name": "Train Simulator: Portsmouth Direct Line: London Waterloo - Portsmouth Route Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105746" + ], + "release_date": "2018-07-13", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-portsmouth-direct-line-route-add-on.json b/data/game/tr/train-simulator-portsmouth-direct-line-route-add-on.json new file mode 100644 index 000000000000..9b3aa5505331 --- /dev/null +++ b/data/game/tr/train-simulator-portsmouth-direct-line-route-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-portsmouth-direct-line-route-add-on", + "name": "Train Simulator: Portsmouth Direct Line Route Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105542" + ], + "release_date": "2012-05-17", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-powerhaul-class-66-v2-0-loco-add-on.json b/data/game/tr/train-simulator-powerhaul-class-66-v2-0-loco-add-on.json new file mode 100644 index 000000000000..632a0bcaec13 --- /dev/null +++ b/data/game/tr/train-simulator-powerhaul-class-66-v2-0-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-powerhaul-class-66-v2-0-loco-add-on", + "name": "Train Simulator: Powerhaul Class 66 V2.0 Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106073" + ], + "release_date": "2013-08-23", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-promontory-summit-route-add-on.json b/data/game/tr/train-simulator-promontory-summit-route-add-on.json new file mode 100644 index 000000000000..5683904b7efa --- /dev/null +++ b/data/game/tr/train-simulator-promontory-summit-route-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-promontory-summit-route-add-on", + "name": "Train Simulator: Promontory Summit Route Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105855" + ], + "release_date": "2019-03-21", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Smokebox" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-prr-alco-rs11-loco-add-on.json b/data/game/tr/train-simulator-prr-alco-rs11-loco-add-on.json new file mode 100644 index 000000000000..e7b2fe4b5da5 --- /dev/null +++ b/data/game/tr/train-simulator-prr-alco-rs11-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-prr-alco-rs11-loco-add-on", + "name": "Train Simulator: PRR Alco RS11 Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106243" + ], + "release_date": "2013-04-04", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "virtualRailroads" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-prr-baldwin-centipede-loco-add-on.json b/data/game/tr/train-simulator-prr-baldwin-centipede-loco-add-on.json new file mode 100644 index 000000000000..ae47decf3f6a --- /dev/null +++ b/data/game/tr/train-simulator-prr-baldwin-centipede-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-prr-baldwin-centipede-loco-add-on", + "name": "Train Simulator: PRR Baldwin Centipede Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105887" + ], + "release_date": "2012-11-29", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Reppo" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-prr-dr6-4-2000-broadway-limited-loco-add-on.json b/data/game/tr/train-simulator-prr-dr6-4-2000-broadway-limited-loco-add-on.json new file mode 100644 index 000000000000..c84cc0576278 --- /dev/null +++ b/data/game/tr/train-simulator-prr-dr6-4-2000-broadway-limited-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-prr-dr6-4-2000-broadway-limited-loco-add-on", + "name": "Train Simulator: PRR DR6-4-2000 & Broadway Limited Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105691" + ], + "release_date": "2019-05-16", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Digital Train Model" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-prr-fa-1-fa-2-loco-add-on.json b/data/game/tr/train-simulator-prr-fa-1-fa-2-loco-add-on.json new file mode 100644 index 000000000000..9630970e5b9e --- /dev/null +++ b/data/game/tr/train-simulator-prr-fa-1-fa-2-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-prr-fa-1-fa-2-loco-add-on", + "name": "Train Simulator: PRR FA-1 & FA-2 Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105963" + ], + "release_date": "2019-11-07", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Digital Train Model" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-prr-ge-44-loco-add-on.json b/data/game/tr/train-simulator-prr-ge-44-loco-add-on.json new file mode 100644 index 000000000000..c5b0531ebb6b --- /dev/null +++ b/data/game/tr/train-simulator-prr-ge-44-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-prr-ge-44-loco-add-on", + "name": "Train Simulator: PRR GE 44 Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106018" + ], + "release_date": "2012-08-23", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Digital Train Model" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-prr-gg1-loco-add-on.json b/data/game/tr/train-simulator-prr-gg1-loco-add-on.json new file mode 100644 index 000000000000..c36f01f3246c --- /dev/null +++ b/data/game/tr/train-simulator-prr-gg1-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-prr-gg1-loco-add-on", + "name": "Train Simulator: PRR GG1 Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106023" + ], + "release_date": "2011-12-09", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-prr-k4-loco-add-on.json b/data/game/tr/train-simulator-prr-k4-loco-add-on.json new file mode 100644 index 000000000000..eb05a5fd16b9 --- /dev/null +++ b/data/game/tr/train-simulator-prr-k4-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-prr-k4-loco-add-on", + "name": "Train Simulator: PRR K4 Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105765" + ], + "release_date": "2012-02-09", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-prr-rf-16-sharknose-loco-add-on.json b/data/game/tr/train-simulator-prr-rf-16-sharknose-loco-add-on.json new file mode 100644 index 000000000000..ff755d54a5fa --- /dev/null +++ b/data/game/tr/train-simulator-prr-rf-16-sharknose-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-prr-rf-16-sharknose-loco-add-on", + "name": "Train Simulator: PRR RF-16 'Sharknose' Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105892" + ], + "release_date": "2015-07-02", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Digital Train Model" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-rascal-cottonwood-route-add-on.json b/data/game/tr/train-simulator-rascal-cottonwood-route-add-on.json new file mode 100644 index 000000000000..7ec3f499aaaa --- /dev/null +++ b/data/game/tr/train-simulator-rascal-cottonwood-route-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-rascal-cottonwood-route-add-on", + "name": "Train Simulator: Rascal & Cottonwood Route Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106258" + ], + "release_date": "2009-09-04", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "All Aboard" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-raton-pass-trinidad-raton-route-add-on.json b/data/game/tr/train-simulator-raton-pass-trinidad-raton-route-add-on.json new file mode 100644 index 000000000000..4cf7815685ce --- /dev/null +++ b/data/game/tr/train-simulator-raton-pass-trinidad-raton-route-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-raton-pass-trinidad-raton-route-add-on", + "name": "Train Simulator: Raton Pass: Trinidad - Raton Route Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105985" + ], + "release_date": "2018-08-09", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Milepost Simulations" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-rebuilt-bulleid-light-pacific-steam-loco-add-on.json b/data/game/tr/train-simulator-rebuilt-bulleid-light-pacific-steam-loco-add-on.json new file mode 100644 index 000000000000..9bf259d90549 --- /dev/null +++ b/data/game/tr/train-simulator-rebuilt-bulleid-light-pacific-steam-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-rebuilt-bulleid-light-pacific-steam-loco-add-on", + "name": "Train Simulator: Rebuilt Bulleid Light Pacific Steam Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106135" + ], + "release_date": "2017-07-27", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Just Trains" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-regional-railways-br-class-142-pacer-dmu.json b/data/game/tr/train-simulator-regional-railways-br-class-142-pacer-dmu.json new file mode 100644 index 000000000000..e29bd49ca71d --- /dev/null +++ b/data/game/tr/train-simulator-regional-railways-br-class-142-pacer-dmu.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-regional-railways-br-class-142-pacer-dmu", + "name": "Train Simulator: Regional Railways BR Class 142 'Pacer' DMU", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105512" + ], + "release_date": "2019-10-03", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-return-to-maerdy-loco-add-on.json b/data/game/tr/train-simulator-return-to-maerdy-loco-add-on.json new file mode 100644 index 000000000000..af3a35b2e861 --- /dev/null +++ b/data/game/tr/train-simulator-return-to-maerdy-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-return-to-maerdy-loco-add-on", + "name": "Train Simulator: Return to Maerdy Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106058" + ], + "release_date": "2015-12-04", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "MeshTools" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-rhb-enhancement-pack-01.json b/data/game/tr/train-simulator-rhb-enhancement-pack-01.json new file mode 100644 index 000000000000..f0b1641c133a --- /dev/null +++ b/data/game/tr/train-simulator-rhb-enhancement-pack-01.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-rhb-enhancement-pack-01", + "name": "Train Simulator: RhB Enhancement Pack 01", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105791" + ], + "release_date": "2016-11-17", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Thomson Interactive" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-rhb-enhancement-pack-02-add-on.json b/data/game/tr/train-simulator-rhb-enhancement-pack-02-add-on.json new file mode 100644 index 000000000000..d66c83a9bcbb --- /dev/null +++ b/data/game/tr/train-simulator-rhb-enhancement-pack-02-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-rhb-enhancement-pack-02-add-on", + "name": "Train Simulator: RhB Enhancement Pack 02 Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105792" + ], + "release_date": "2018-01-11", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Thomson Interactive" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-rhb-enhancement-pack-03-add-on.json b/data/game/tr/train-simulator-rhb-enhancement-pack-03-add-on.json new file mode 100644 index 000000000000..c7c0edba602c --- /dev/null +++ b/data/game/tr/train-simulator-rhb-enhancement-pack-03-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-rhb-enhancement-pack-03-add-on", + "name": "Train Simulator: RhB Enhancement Pack 03 Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105793" + ], + "release_date": "2019-01-31", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Thomson Interactive" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-rhb-enhancement-pack-04-add-on.json b/data/game/tr/train-simulator-rhb-enhancement-pack-04-add-on.json new file mode 100644 index 000000000000..dcb5fe3c3f78 --- /dev/null +++ b/data/game/tr/train-simulator-rhb-enhancement-pack-04-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-rhb-enhancement-pack-04-add-on", + "name": "Train Simulator: RhB Enhancement Pack 04 Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105789" + ], + "release_date": "2019-12-13", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Rivet Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-rhb-enhancement-pack-05-add-on.json b/data/game/tr/train-simulator-rhb-enhancement-pack-05-add-on.json new file mode 100644 index 000000000000..12808e2fb58d --- /dev/null +++ b/data/game/tr/train-simulator-rhb-enhancement-pack-05-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-rhb-enhancement-pack-05-add-on", + "name": "Train Simulator: RhB Enhancement Pack 05 Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105790" + ], + "release_date": "2020-01-23", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Rivet Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-rhine-valley-freiburg-basel-route-add-on.json b/data/game/tr/train-simulator-rhine-valley-freiburg-basel-route-add-on.json new file mode 100644 index 000000000000..5bfd173bfab5 --- /dev/null +++ b/data/game/tr/train-simulator-rhine-valley-freiburg-basel-route-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-rhine-valley-freiburg-basel-route-add-on", + "name": "Train Simulator: Rhine Valley: Freiburg - Basel Route Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105854" + ], + "release_date": "2018-11-15", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Aerosoft" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-riviera-line-in-the-fifties-exeter-kingswear-route-add-on.json b/data/game/tr/train-simulator-riviera-line-in-the-fifties-exeter-kingswear-route-add-on.json new file mode 100644 index 000000000000..493bee6f6a38 --- /dev/null +++ b/data/game/tr/train-simulator-riviera-line-in-the-fifties-exeter-kingswear-route-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-riviera-line-in-the-fifties-exeter-kingswear-route-add-on", + "name": "Train Simulator: Riviera Line in the Fifties: Exeter - Kingswear Route Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105523" + ], + "release_date": "2015-09-17", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-ruhr-sieg-route-add-on.json b/data/game/tr/train-simulator-ruhr-sieg-route-add-on.json new file mode 100644 index 000000000000..3028396d6ea9 --- /dev/null +++ b/data/game/tr/train-simulator-ruhr-sieg-route-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-ruhr-sieg-route-add-on", + "name": "Train Simulator: Ruhr-Sieg Route Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105567" + ], + "release_date": "2012-09-18", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-s-dbahn-bruck-an-der-mur-maribor-route-add-on.json b/data/game/tr/train-simulator-s-dbahn-bruck-an-der-mur-maribor-route-add-on.json new file mode 100644 index 000000000000..f84510ae22fd --- /dev/null +++ b/data/game/tr/train-simulator-s-dbahn-bruck-an-der-mur-maribor-route-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-s-dbahn-bruck-an-der-mur-maribor-route-add-on", + "name": "Train Simulator: Südbahn: Bruck an der Mur - Maribor Route Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105857" + ], + "release_date": "2019-06-27", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "RSSLO" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-s-series-363-loco-add-on.json b/data/game/tr/train-simulator-s-series-363-loco-add-on.json new file mode 100644 index 000000000000..c59815244b59 --- /dev/null +++ b/data/game/tr/train-simulator-s-series-363-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-s-series-363-loco-add-on", + "name": "Train Simulator: SŽ Series 363 Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105956" + ], + "release_date": "2019-09-27", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "RSSLO" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-s25-heart-of-berlin-hennigsdorf-teltow-route-add-on.json b/data/game/tr/train-simulator-s25-heart-of-berlin-hennigsdorf-teltow-route-add-on.json new file mode 100644 index 000000000000..9923721f0a9f --- /dev/null +++ b/data/game/tr/train-simulator-s25-heart-of-berlin-hennigsdorf-teltow-route-add-on.json @@ -0,0 +1,18 @@ +{ + "slug": "train-simulator-s25-heart-of-berlin-hennigsdorf-teltow-route-add-on", + "name": "Train Simulator: S25 Heart of Berlin: Hennigsdorf - Teltow Route Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105506" + ], + "release_date": "2021-01-29", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-sacramento-northern-suisun-bay-san-francisco-route-add-on.json b/data/game/tr/train-simulator-sacramento-northern-suisun-bay-san-francisco-route-add-on.json new file mode 100644 index 000000000000..11dcf32d998c --- /dev/null +++ b/data/game/tr/train-simulator-sacramento-northern-suisun-bay-san-francisco-route-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-sacramento-northern-suisun-bay-san-francisco-route-add-on", + "name": "Train Simulator: Sacramento Northern: Suisun Bay – San Francisco Route Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105969" + ], + "release_date": "2017-01-19", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "G-TraX Simulations" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-salt-lake-city-route-extension-add-on.json b/data/game/tr/train-simulator-salt-lake-city-route-extension-add-on.json new file mode 100644 index 000000000000..93527186e455 --- /dev/null +++ b/data/game/tr/train-simulator-salt-lake-city-route-extension-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-salt-lake-city-route-extension-add-on", + "name": "Train Simulator: Salt Lake City Route Extension Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105587" + ], + "release_date": "2018-05-17", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-san-diego-commuter-rail-f59phi-loco-add-on.json b/data/game/tr/train-simulator-san-diego-commuter-rail-f59phi-loco-add-on.json new file mode 100644 index 000000000000..ef214ae3c31c --- /dev/null +++ b/data/game/tr/train-simulator-san-diego-commuter-rail-f59phi-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-san-diego-commuter-rail-f59phi-loco-add-on", + "name": "Train Simulator: San Diego Commuter Rail F59PHI Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105637" + ], + "release_date": "2014-09-18", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-sbb-rabe-523-emu-add-on.json b/data/game/tr/train-simulator-sbb-rabe-523-emu-add-on.json new file mode 100644 index 000000000000..e79d17755850 --- /dev/null +++ b/data/game/tr/train-simulator-sbb-rabe-523-emu-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-sbb-rabe-523-emu-add-on", + "name": "Train Simulator: SBB RABe 523 EMU Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105787" + ], + "release_date": "2020-05-28", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Rivet Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-scotrail-class-380-emu-add-on.json b/data/game/tr/train-simulator-scotrail-class-380-emu-add-on.json new file mode 100644 index 000000000000..6412f76285d1 --- /dev/null +++ b/data/game/tr/train-simulator-scotrail-class-380-emu-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-scotrail-class-380-emu-add-on", + "name": "Train Simulator: ScotRail Class 380 EMU Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106272" + ], + "release_date": "2012-08-01", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Thomson Interactive" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-scotrail-class-68-loco-add-on.json b/data/game/tr/train-simulator-scotrail-class-68-loco-add-on.json new file mode 100644 index 000000000000..ca97ba8c7c8e --- /dev/null +++ b/data/game/tr/train-simulator-scotrail-class-68-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-scotrail-class-68-loco-add-on", + "name": "Train Simulator: ScotRail Class 68 Loco Add-on", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106163" + ], + "release_date": "2016-07-07", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-sd40-2-independence-loco-add-on.json b/data/game/tr/train-simulator-sd40-2-independence-loco-add-on.json new file mode 100644 index 000000000000..57940b36cf43 --- /dev/null +++ b/data/game/tr/train-simulator-sd40-2-independence-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-sd40-2-independence-loco-add-on", + "name": "Train Simulator: SD40-2 Independence Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106051" + ], + "release_date": "2013-07-04", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-seaboard-ge-u36b-loco-add-on.json b/data/game/tr/train-simulator-seaboard-ge-u36b-loco-add-on.json new file mode 100644 index 000000000000..ddae00dc8e8e --- /dev/null +++ b/data/game/tr/train-simulator-seaboard-ge-u36b-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-seaboard-ge-u36b-loco-add-on", + "name": "Train Simulator: Seaboard GE U36B Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105498" + ], + "release_date": "2015-02-26", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-semmeringbahn-m-rzzuschlag-to-gloggnitz-route-add-on.json b/data/game/tr/train-simulator-semmeringbahn-m-rzzuschlag-to-gloggnitz-route-add-on.json new file mode 100644 index 000000000000..90d9f89b5778 --- /dev/null +++ b/data/game/tr/train-simulator-semmeringbahn-m-rzzuschlag-to-gloggnitz-route-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-semmeringbahn-m-rzzuschlag-to-gloggnitz-route-add-on", + "name": "Train Simulator: Semmeringbahn - Mürzzuschlag to Gloggnitz Route Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105629" + ], + "release_date": "2015-12-11", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-settle-carlisle-specials-add-on.json b/data/game/tr/train-simulator-settle-carlisle-specials-add-on.json new file mode 100644 index 000000000000..17a206f03157 --- /dev/null +++ b/data/game/tr/train-simulator-settle-carlisle-specials-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-settle-carlisle-specials-add-on", + "name": "Train Simulator: Settle Carlisle Specials Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105496" + ], + "release_date": "2012-05-03", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-settle-to-carlisle-route-add-on.json b/data/game/tr/train-simulator-settle-to-carlisle-route-add-on.json new file mode 100644 index 000000000000..e63517b66f5e --- /dev/null +++ b/data/game/tr/train-simulator-settle-to-carlisle-route-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-settle-to-carlisle-route-add-on", + "name": "Train Simulator: Settle to Carlisle Route Add-on", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105495" + ], + "release_date": "2012-04-05", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-shanghai-maglev-route-add-on.json b/data/game/tr/train-simulator-shanghai-maglev-route-add-on.json new file mode 100644 index 000000000000..70346697ed5b --- /dev/null +++ b/data/game/tr/train-simulator-shanghai-maglev-route-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-shanghai-maglev-route-add-on", + "name": "Train Simulator: Shanghai Maglev Route Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105717" + ], + "release_date": "2016-02-23", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Union Workshop" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-sheerness-branch-extension-route-add-on.json b/data/game/tr/train-simulator-sheerness-branch-extension-route-add-on.json new file mode 100644 index 000000000000..343453a2d378 --- /dev/null +++ b/data/game/tr/train-simulator-sheerness-branch-extension-route-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-sheerness-branch-extension-route-add-on", + "name": "Train Simulator: Sheerness Branch Extension Route Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105537" + ], + "release_date": "2013-09-30", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-sherman-hill-route-add-on.json b/data/game/tr/train-simulator-sherman-hill-route-add-on.json new file mode 100644 index 000000000000..3d0fad776f5b --- /dev/null +++ b/data/game/tr/train-simulator-sherman-hill-route-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-sherman-hill-route-add-on", + "name": "Train Simulator: Sherman Hill Route Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106439" + ], + "release_date": "2012-09-20", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-soldier-summit-route-add-on.json b/data/game/tr/train-simulator-soldier-summit-route-add-on.json new file mode 100644 index 000000000000..56ad06263363 --- /dev/null +++ b/data/game/tr/train-simulator-soldier-summit-route-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-soldier-summit-route-add-on", + "name": "Train Simulator: Soldier Summit Route Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105572" + ], + "release_date": "2015-05-21", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-somerset-dorset-railway-route-add-on.json b/data/game/tr/train-simulator-somerset-dorset-railway-route-add-on.json new file mode 100644 index 000000000000..3c0b868d4a2e --- /dev/null +++ b/data/game/tr/train-simulator-somerset-dorset-railway-route-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-somerset-dorset-railway-route-add-on", + "name": "Train Simulator: Somerset & Dorset Railway Route Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105760" + ], + "release_date": "2012-09-18", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-south-devon-main-line-highbridge-and-burnham-plymouth-route-add-on.json b/data/game/tr/train-simulator-south-devon-main-line-highbridge-and-burnham-plymouth-route-add-on.json new file mode 100644 index 000000000000..38a753a56ad2 --- /dev/null +++ b/data/game/tr/train-simulator-south-devon-main-line-highbridge-and-burnham-plymouth-route-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-south-devon-main-line-highbridge-and-burnham-plymouth-route-add-on", + "name": "Train Simulator: South Devon Main Line: Highbridge and Burnham - Plymouth Route Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105583" + ], + "release_date": "2021-06-03", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Just Trains" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-south-london-network-route-add-on.json b/data/game/tr/train-simulator-south-london-network-route-add-on.json new file mode 100644 index 000000000000..7d8db846d9e5 --- /dev/null +++ b/data/game/tr/train-simulator-south-london-network-route-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-south-london-network-route-add-on", + "name": "Train Simulator: South London Network Route Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105849" + ], + "release_date": "2014-11-13", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-south-wales-coastal-bristol-swansea-route-add-on.json b/data/game/tr/train-simulator-south-wales-coastal-bristol-swansea-route-add-on.json new file mode 100644 index 000000000000..6189de6fe954 --- /dev/null +++ b/data/game/tr/train-simulator-south-wales-coastal-bristol-swansea-route-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-south-wales-coastal-bristol-swansea-route-add-on", + "name": "Train Simulator: South Wales Coastal: Bristol - Swansea Route Add-on", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105477" + ], + "release_date": "2020-11-27", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-south-wales-coastal-trainload-br-class-60-twin-pack.json b/data/game/tr/train-simulator-south-wales-coastal-trainload-br-class-60-twin-pack.json new file mode 100644 index 000000000000..ad9d906d9ba5 --- /dev/null +++ b/data/game/tr/train-simulator-south-wales-coastal-trainload-br-class-60-twin-pack.json @@ -0,0 +1,20 @@ +{ + "slug": "train-simulator-south-wales-coastal-trainload-br-class-60-twin-pack", + "name": "Train Simulator: South Wales Coastal & Trainload BR Class 60 Twin Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111670084" + ], + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-south-west-china-high-speed-route-add-on.json b/data/game/tr/train-simulator-south-west-china-high-speed-route-add-on.json new file mode 100644 index 000000000000..28da700bc5ce --- /dev/null +++ b/data/game/tr/train-simulator-south-west-china-high-speed-route-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-south-west-china-high-speed-route-add-on", + "name": "Train Simulator: South West China High Speed Route Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106440" + ], + "release_date": "2017-04-06", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Just Trains" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-south-west-trains-class-444-emu-add-on.json b/data/game/tr/train-simulator-south-west-trains-class-444-emu-add-on.json new file mode 100644 index 000000000000..c3896a6368ef --- /dev/null +++ b/data/game/tr/train-simulator-south-west-trains-class-444-emu-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-south-west-trains-class-444-emu-add-on", + "name": "Train Simulator: South West Trains Class 444 EMU Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105561" + ], + "release_date": "2012-03-08", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-south-western-main-line-southampton-bournemouth-route-add-on.json b/data/game/tr/train-simulator-south-western-main-line-southampton-bournemouth-route-add-on.json new file mode 100644 index 000000000000..8e3ddff0d1ef --- /dev/null +++ b/data/game/tr/train-simulator-south-western-main-line-southampton-bournemouth-route-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-south-western-main-line-southampton-bournemouth-route-add-on", + "name": "Train Simulator: South Western Main Line: Southampton - Bournemouth Route Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105582" + ], + "release_date": "2019-07-18", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-southeastern-class-465-emu-add-on.json b/data/game/tr/train-simulator-southeastern-class-465-emu-add-on.json new file mode 100644 index 000000000000..c565b6ba5fc0 --- /dev/null +++ b/data/game/tr/train-simulator-southeastern-class-465-emu-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-southeastern-class-465-emu-add-on", + "name": "Train Simulator: Southeastern Class 465 EMU Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105556" + ], + "release_date": "2013-04-17", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-southern-class-421-4cig-emu-add-on.json b/data/game/tr/train-simulator-southern-class-421-4cig-emu-add-on.json new file mode 100644 index 000000000000..7e59402f8ea1 --- /dev/null +++ b/data/game/tr/train-simulator-southern-class-421-4cig-emu-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-southern-class-421-4cig-emu-add-on", + "name": "Train Simulator: Southern Class 421 ‘4CIG’ EMU Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105767" + ], + "release_date": "2012-06-07", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-southern-class-455-8-emu-add-on.json b/data/game/tr/train-simulator-southern-class-455-8-emu-add-on.json new file mode 100644 index 000000000000..0eed820d4b6f --- /dev/null +++ b/data/game/tr/train-simulator-southern-class-455-8-emu-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-southern-class-455-8-emu-add-on", + "name": "Train Simulator: Southern Class 455/8 EMU Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106175" + ], + "release_date": "2015-08-20", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-southern-pacific-cab-forward-loco-add-on.json b/data/game/tr/train-simulator-southern-pacific-cab-forward-loco-add-on.json new file mode 100644 index 000000000000..3feb9b7ef06f --- /dev/null +++ b/data/game/tr/train-simulator-southern-pacific-cab-forward-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-southern-pacific-cab-forward-loco-add-on", + "name": "Train Simulator: Southern Pacific Cab Forward Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105557" + ], + "release_date": "2012-08-23", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-southern-pacific-ge-44-loco-add-on.json b/data/game/tr/train-simulator-southern-pacific-ge-44-loco-add-on.json new file mode 100644 index 000000000000..497f888eff92 --- /dev/null +++ b/data/game/tr/train-simulator-southern-pacific-ge-44-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-southern-pacific-ge-44-loco-add-on", + "name": "Train Simulator: Southern Pacific GE 44 Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106021" + ], + "release_date": "2013-01-31", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Digital Train Model" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-southern-pacific-gp20-loco-add-on.json b/data/game/tr/train-simulator-southern-pacific-gp20-loco-add-on.json new file mode 100644 index 000000000000..6957012df731 --- /dev/null +++ b/data/game/tr/train-simulator-southern-pacific-gp20-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-southern-pacific-gp20-loco-add-on", + "name": "Train Simulator: Southern Pacific GP20 Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106248" + ], + "release_date": "2013-09-18", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Reppo" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-southern-pacific-gs-4-loco-add-on.json b/data/game/tr/train-simulator-southern-pacific-gs-4-loco-add-on.json new file mode 100644 index 000000000000..dc09ca5fb9f0 --- /dev/null +++ b/data/game/tr/train-simulator-southern-pacific-gs-4-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-southern-pacific-gs-4-loco-add-on", + "name": "Train Simulator: Southern Pacific GS-4 Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106253" + ], + "release_date": "2013-02-14", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "G-TraX Simulations" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-southern-pacific-sd45-loco-add-on.json b/data/game/tr/train-simulator-southern-pacific-sd45-loco-add-on.json new file mode 100644 index 000000000000..bed99715fd0c --- /dev/null +++ b/data/game/tr/train-simulator-southern-pacific-sd45-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-southern-pacific-sd45-loco-add-on", + "name": "Train Simulator: Southern Pacific SD45 Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106017" + ], + "release_date": "2013-02-14", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Digital Train Model" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-southern-pacific-sd45t-2-loco-add-on.json b/data/game/tr/train-simulator-southern-pacific-sd45t-2-loco-add-on.json new file mode 100644 index 000000000000..621628506063 --- /dev/null +++ b/data/game/tr/train-simulator-southern-pacific-sd45t-2-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-southern-pacific-sd45t-2-loco-add-on", + "name": "Train Simulator: Southern Pacific SD45T-2 Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106125" + ], + "release_date": "2017-10-26", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Digital Train Model" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-southern-pacific-sd70m-loco-add-on.json b/data/game/tr/train-simulator-southern-pacific-sd70m-loco-add-on.json new file mode 100644 index 000000000000..5b2ac012257c --- /dev/null +++ b/data/game/tr/train-simulator-southern-pacific-sd70m-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-southern-pacific-sd70m-loco-add-on", + "name": "Train Simulator: Southern Pacific SD70M Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105555" + ], + "release_date": "2013-09-30", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-southern-pacific-u33c-loco-add-on.json b/data/game/tr/train-simulator-southern-pacific-u33c-loco-add-on.json new file mode 100644 index 000000000000..355490582cea --- /dev/null +++ b/data/game/tr/train-simulator-southern-pacific-u33c-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-southern-pacific-u33c-loco-add-on", + "name": "Train Simulator: Southern Pacific U33C Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105585" + ], + "release_date": "2021-06-11", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Digital Train Model" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-southern-railway-s15-class-steam-loco-add-on.json b/data/game/tr/train-simulator-southern-railway-s15-class-steam-loco-add-on.json new file mode 100644 index 000000000000..430c535b6c92 --- /dev/null +++ b/data/game/tr/train-simulator-southern-railway-s15-class-steam-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-southern-railway-s15-class-steam-loco-add-on", + "name": "Train Simulator: Southern Railway S15 Class Steam Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106150" + ], + "release_date": "2017-04-20", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Bossman Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-southwestern-expressways-reading-exeter-route-add-on.json b/data/game/tr/train-simulator-southwestern-expressways-reading-exeter-route-add-on.json new file mode 100644 index 000000000000..15a77f86c20d --- /dev/null +++ b/data/game/tr/train-simulator-southwestern-expressways-reading-exeter-route-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-southwestern-expressways-reading-exeter-route-add-on", + "name": "Train Simulator: Southwestern Expressways: Reading - Exeter Route Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105471" + ], + "release_date": "2021-07-23", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Just Trains" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-springfield-line-springfield-new-haven-route-add-on.json b/data/game/tr/train-simulator-springfield-line-springfield-new-haven-route-add-on.json new file mode 100644 index 000000000000..f5faac1c4bf1 --- /dev/null +++ b/data/game/tr/train-simulator-springfield-line-springfield-new-haven-route-add-on.json @@ -0,0 +1,18 @@ +{ + "slug": "train-simulator-springfield-line-springfield-new-haven-route-add-on", + "name": "Train Simulator: Springfield Line: Springfield – New Haven Route Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106013" + ], + "release_date": "2016-08-25", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-strathclyde-class-101-dmu-add-on.json b/data/game/tr/train-simulator-strathclyde-class-101-dmu-add-on.json new file mode 100644 index 000000000000..73d438599ca8 --- /dev/null +++ b/data/game/tr/train-simulator-strathclyde-class-101-dmu-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-strathclyde-class-101-dmu-add-on", + "name": "Train Simulator: Strathclyde Class 101 DMU Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105776" + ], + "release_date": "2012-12-06", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-stroudley-a1-a1x-class-terrier-steam-loco-add-on.json b/data/game/tr/train-simulator-stroudley-a1-a1x-class-terrier-steam-loco-add-on.json new file mode 100644 index 000000000000..39765dd04258 --- /dev/null +++ b/data/game/tr/train-simulator-stroudley-a1-a1x-class-terrier-steam-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-stroudley-a1-a1x-class-terrier-steam-loco-add-on", + "name": "Train Simulator: Stroudley A1/A1X Class 'Terrier' Steam Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106142" + ], + "release_date": "2017-05-25", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Victory Works" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-suburban-glasgow-northwest-springburn-helensburgh-route-add-on.json b/data/game/tr/train-simulator-suburban-glasgow-northwest-springburn-helensburgh-route-add-on.json new file mode 100644 index 000000000000..3eb982cd2f7f --- /dev/null +++ b/data/game/tr/train-simulator-suburban-glasgow-northwest-springburn-helensburgh-route-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-suburban-glasgow-northwest-springburn-helensburgh-route-add-on", + "name": "Train Simulator: Suburban Glasgow Northwest: Springburn - Helensburgh Route Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105505" + ], + "release_date": "2020-10-29", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Rivet Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-surselva-line-reichenau-tamins-disentis-must-r-route-add-on.json b/data/game/tr/train-simulator-surselva-line-reichenau-tamins-disentis-must-r-route-add-on.json new file mode 100644 index 000000000000..ce0791e65ed9 --- /dev/null +++ b/data/game/tr/train-simulator-surselva-line-reichenau-tamins-disentis-must-r-route-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-surselva-line-reichenau-tamins-disentis-must-r-route-add-on", + "name": "Train Simulator: Surselva Line: Reichenau-Tamins - Disentis/Mustér Route Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105643" + ], + "release_date": "2019-10-24", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Rivet Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-tadami-line-aizu-wakamatsu-tadami-route-add-on.json b/data/game/tr/train-simulator-tadami-line-aizu-wakamatsu-tadami-route-add-on.json new file mode 100644 index 000000000000..74b3475318ae --- /dev/null +++ b/data/game/tr/train-simulator-tadami-line-aizu-wakamatsu-tadami-route-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-tadami-line-aizu-wakamatsu-tadami-route-add-on", + "name": "Train Simulator: Tadami Line: Aizu-Wakamatsu - Tadami Route Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105501" + ], + "release_date": "2020-07-24", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Union Workshop" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-tauernbahn-schwarzach-sankt-veit-spittal-an-der-drau-route-add-on.json b/data/game/tr/train-simulator-tauernbahn-schwarzach-sankt-veit-spittal-an-der-drau-route-add-on.json new file mode 100644 index 000000000000..f7db6a5f5254 --- /dev/null +++ b/data/game/tr/train-simulator-tauernbahn-schwarzach-sankt-veit-spittal-an-der-drau-route-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-tauernbahn-schwarzach-sankt-veit-spittal-an-der-drau-route-add-on", + "name": "Train Simulator: Tauernbahn: Schwarzach-Sankt Veit - Spittal an der Drau Route Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105510" + ], + "release_date": "2021-06-17", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "RSSLO" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-tehachapi-pass-mojave-bakersfield-route-add-on.json b/data/game/tr/train-simulator-tehachapi-pass-mojave-bakersfield-route-add-on.json new file mode 100644 index 000000000000..b7d92b9a8ec2 --- /dev/null +++ b/data/game/tr/train-simulator-tehachapi-pass-mojave-bakersfield-route-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-tehachapi-pass-mojave-bakersfield-route-add-on", + "name": "Train Simulator: Tehachapi Pass: Mojave - Bakersfield Route Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105499" + ], + "release_date": "2021-06-24", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-the-alaska-railroad-anchorage-seward-route-add-on.json b/data/game/tr/train-simulator-the-alaska-railroad-anchorage-seward-route-add-on.json new file mode 100644 index 000000000000..08cd49ad3aad --- /dev/null +++ b/data/game/tr/train-simulator-the-alaska-railroad-anchorage-seward-route-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-the-alaska-railroad-anchorage-seward-route-add-on", + "name": "Train Simulator: The Alaska Railroad: Anchorage - Seward Route Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105982" + ], + "release_date": "2017-10-12", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Trains & Drivers" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-the-kyle-line-inverness-kyle-of-lochalsh-route-add-on.json b/data/game/tr/train-simulator-the-kyle-line-inverness-kyle-of-lochalsh-route-add-on.json new file mode 100644 index 000000000000..992b4f873fca --- /dev/null +++ b/data/game/tr/train-simulator-the-kyle-line-inverness-kyle-of-lochalsh-route-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-the-kyle-line-inverness-kyle-of-lochalsh-route-add-on", + "name": "Train Simulator: The Kyle Line: Inverness - Kyle of Lochalsh Route Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105973" + ], + "release_date": "2018-06-07", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Just Trains" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-the-pump-car-add-on.json b/data/game/tr/train-simulator-the-pump-car-add-on.json new file mode 100644 index 000000000000..ff0ad6b41961 --- /dev/null +++ b/data/game/tr/train-simulator-the-pump-car-add-on.json @@ -0,0 +1,20 @@ +{ + "slug": "train-simulator-the-pump-car-add-on", + "name": "Train Simulator: The Pump Car Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106288" + ], + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-the-racetrack-aurora-chicago-route-add-on.json b/data/game/tr/train-simulator-the-racetrack-aurora-chicago-route-add-on.json new file mode 100644 index 000000000000..c907e8066ad6 --- /dev/null +++ b/data/game/tr/train-simulator-the-racetrack-aurora-chicago-route-add-on.json @@ -0,0 +1,18 @@ +{ + "slug": "train-simulator-the-racetrack-aurora-chicago-route-add-on", + "name": "Train Simulator: The Racetrack: Aurora - Chicago Route Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106061" + ], + "release_date": "2015-08-13", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-the-rhine-railway-mannheim-karlsruhe-route-add-on.json b/data/game/tr/train-simulator-the-rhine-railway-mannheim-karlsruhe-route-add-on.json new file mode 100644 index 000000000000..f72f24129ce4 --- /dev/null +++ b/data/game/tr/train-simulator-the-rhine-railway-mannheim-karlsruhe-route-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-the-rhine-railway-mannheim-karlsruhe-route-add-on", + "name": "Train Simulator: The Rhine Railway: Mannheim - Karlsruhe Route Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105540" + ], + "release_date": "2015-03-19", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-the-riviera-line-exeter-paignton-route-add-on.json b/data/game/tr/train-simulator-the-riviera-line-exeter-paignton-route-add-on.json new file mode 100644 index 000000000000..a818633e5635 --- /dev/null +++ b/data/game/tr/train-simulator-the-riviera-line-exeter-paignton-route-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-the-riviera-line-exeter-paignton-route-add-on", + "name": "Train Simulator: The Riviera Line: Exeter-Paignton Route Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105519" + ], + "release_date": "2014-02-20", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-the-story-of-forest-rail-route-add-on.json b/data/game/tr/train-simulator-the-story-of-forest-rail-route-add-on.json new file mode 100644 index 000000000000..0523631c52ee --- /dev/null +++ b/data/game/tr/train-simulator-the-story-of-forest-rail-route-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-the-story-of-forest-rail-route-add-on", + "name": "Train Simulator: The Story of Forest Rail Route Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105716" + ], + "release_date": "2015-01-19", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Union Workshop" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-thompson-class-b1-loco-add-on.json b/data/game/tr/train-simulator-thompson-class-b1-loco-add-on.json new file mode 100644 index 000000000000..2df4736ce62f --- /dev/null +++ b/data/game/tr/train-simulator-thompson-class-b1-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-thompson-class-b1-loco-add-on", + "name": "Train Simulator: Thompson Class B1 Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105774" + ], + "release_date": "2012-11-08", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-three-country-corner-route-add-on.json b/data/game/tr/train-simulator-three-country-corner-route-add-on.json new file mode 100644 index 000000000000..88241dc42f07 --- /dev/null +++ b/data/game/tr/train-simulator-three-country-corner-route-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-three-country-corner-route-add-on", + "name": "Train Simulator: Three Country Corner Route Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105976" + ], + "release_date": "2015-08-27", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Just Trains" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-tirol-brenner-kufstein-route-add-on.json b/data/game/tr/train-simulator-tirol-brenner-kufstein-route-add-on.json new file mode 100644 index 000000000000..73bd0f983f51 --- /dev/null +++ b/data/game/tr/train-simulator-tirol-brenner-kufstein-route-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-tirol-brenner-kufstein-route-add-on", + "name": "Train Simulator: Tirol: Brenner - Kufstein Route Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105653" + ], + "release_date": "2019-02-15", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "RSSLO" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-totham-passengers-power-freight-route-add-on.json b/data/game/tr/train-simulator-totham-passengers-power-freight-route-add-on.json new file mode 100644 index 000000000000..e201345a5f66 --- /dev/null +++ b/data/game/tr/train-simulator-totham-passengers-power-freight-route-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-totham-passengers-power-freight-route-add-on", + "name": "Train Simulator: Totham – Passengers, Power & Freight Route Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105700" + ], + "release_date": "2020-01-02", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Just Trains" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-trainload-br-class-60-loco-add-on.json b/data/game/tr/train-simulator-trainload-br-class-60-loco-add-on.json new file mode 100644 index 000000000000..05d7a3eb1178 --- /dev/null +++ b/data/game/tr/train-simulator-trainload-br-class-60-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-trainload-br-class-60-loco-add-on", + "name": "Train Simulator: Trainload BR Class 60 Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105638" + ], + "release_date": "2021-02-18", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-uk-military-wagon-pack-add-on.json b/data/game/tr/train-simulator-uk-military-wagon-pack-add-on.json new file mode 100644 index 000000000000..02002141edaa --- /dev/null +++ b/data/game/tr/train-simulator-uk-military-wagon-pack-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-uk-military-wagon-pack-add-on", + "name": "Train Simulator: UK Military Wagon Pack Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106441" + ], + "release_date": "2020-04-29", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Just Trains" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-union-pacific-big-boy-loco-add-on.json b/data/game/tr/train-simulator-union-pacific-big-boy-loco-add-on.json new file mode 100644 index 000000000000..cd5f8ea25172 --- /dev/null +++ b/data/game/tr/train-simulator-union-pacific-big-boy-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-union-pacific-big-boy-loco-add-on", + "name": "Train Simulator: Union Pacific Big Boy Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105541" + ], + "release_date": "2012-11-23", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-union-pacific-big-boy-steam-loco-add-on.json b/data/game/tr/train-simulator-union-pacific-big-boy-steam-loco-add-on.json new file mode 100644 index 000000000000..e64bdd9ecf2e --- /dev/null +++ b/data/game/tr/train-simulator-union-pacific-big-boy-steam-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-union-pacific-big-boy-steam-loco-add-on", + "name": "Train Simulator: Union Pacific Big Boy Steam Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105586" + ], + "release_date": "2021-05-27", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Smokebox" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-union-pacific-challenger-loco-add-on.json b/data/game/tr/train-simulator-union-pacific-challenger-loco-add-on.json new file mode 100644 index 000000000000..67aef994bcad --- /dev/null +++ b/data/game/tr/train-simulator-union-pacific-challenger-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-union-pacific-challenger-loco-add-on", + "name": "Train Simulator: Union Pacific Challenger Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105559" + ], + "release_date": "2012-11-23", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-union-pacific-dd35-add-on.json b/data/game/tr/train-simulator-union-pacific-dd35-add-on.json new file mode 100644 index 000000000000..225d50907aa9 --- /dev/null +++ b/data/game/tr/train-simulator-union-pacific-dd35-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-union-pacific-dd35-add-on", + "name": "Train Simulator: Union Pacific DD35 Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106168" + ], + "release_date": "2016-04-19", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Digital Train Model" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-union-pacific-dda40x-centennial-loco-add-on.json b/data/game/tr/train-simulator-union-pacific-dda40x-centennial-loco-add-on.json new file mode 100644 index 000000000000..2ebfda61f921 --- /dev/null +++ b/data/game/tr/train-simulator-union-pacific-dda40x-centennial-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-union-pacific-dda40x-centennial-loco-add-on", + "name": "Train Simulator: Union Pacific DDA40X Centennial Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106212" + ], + "release_date": "2014-01-08", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Digital Train Model" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-union-pacific-fef-3-loco-add-on.json b/data/game/tr/train-simulator-union-pacific-fef-3-loco-add-on.json new file mode 100644 index 000000000000..27b6de8fbfef --- /dev/null +++ b/data/game/tr/train-simulator-union-pacific-fef-3-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-union-pacific-fef-3-loco-add-on", + "name": "Train Simulator: Union Pacific FEF-3 Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106183" + ], + "release_date": "2014-11-06", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Smokebox" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-union-pacific-gas-turbine-electric-loco-add-on.json b/data/game/tr/train-simulator-union-pacific-gas-turbine-electric-loco-add-on.json new file mode 100644 index 000000000000..685e83fe4553 --- /dev/null +++ b/data/game/tr/train-simulator-union-pacific-gas-turbine-electric-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-union-pacific-gas-turbine-electric-loco-add-on", + "name": "Train Simulator: Union Pacific Gas Turbine-Electric Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105613" + ], + "release_date": "2020-12-18", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Digital Train Model" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-union-pacific-gp30-loco-add-on.json b/data/game/tr/train-simulator-union-pacific-gp30-loco-add-on.json new file mode 100644 index 000000000000..05c2b0b49c59 --- /dev/null +++ b/data/game/tr/train-simulator-union-pacific-gp30-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-union-pacific-gp30-loco-add-on", + "name": "Train Simulator: Union Pacific GP30 Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106180" + ], + "release_date": "2015-02-05", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Digital Train Model" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-union-pacific-gp40x-loco-add-on.json b/data/game/tr/train-simulator-union-pacific-gp40x-loco-add-on.json new file mode 100644 index 000000000000..c0655834e047 --- /dev/null +++ b/data/game/tr/train-simulator-union-pacific-gp40x-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-union-pacific-gp40x-loco-add-on", + "name": "Train Simulator: Union Pacific GP40X Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105947" + ], + "release_date": "2019-10-17", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Travel by Train" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-union-pacific-gp50-loco-add-on.json b/data/game/tr/train-simulator-union-pacific-gp50-loco-add-on.json new file mode 100644 index 000000000000..d176be8fdf71 --- /dev/null +++ b/data/game/tr/train-simulator-union-pacific-gp50-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-union-pacific-gp50-loco-add-on", + "name": "Train Simulator: Union Pacific GP50 Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106208" + ], + "release_date": "2014-09-04", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Digital Train Model" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-union-pacific-heritage-sd70aces-loco-add-on.json b/data/game/tr/train-simulator-union-pacific-heritage-sd70aces-loco-add-on.json new file mode 100644 index 000000000000..de0ffcbdd895 --- /dev/null +++ b/data/game/tr/train-simulator-union-pacific-heritage-sd70aces-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-union-pacific-heritage-sd70aces-loco-add-on", + "name": "Train Simulator: Union Pacific Heritage SD70ACes Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106249" + ], + "release_date": "2013-09-04", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-union-pacific-no-119-steam-loco-add-on.json b/data/game/tr/train-simulator-union-pacific-no-119-steam-loco-add-on.json new file mode 100644 index 000000000000..e112428cf737 --- /dev/null +++ b/data/game/tr/train-simulator-union-pacific-no-119-steam-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-union-pacific-no-119-steam-loco-add-on", + "name": "Train Simulator: Union Pacific No. 119 Steam Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105986" + ], + "release_date": "2018-04-26", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Smokebox" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-union-pacific-sd45-loco-add-on.json b/data/game/tr/train-simulator-union-pacific-sd45-loco-add-on.json new file mode 100644 index 000000000000..0df7d4ef5ca8 --- /dev/null +++ b/data/game/tr/train-simulator-union-pacific-sd45-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-union-pacific-sd45-loco-add-on", + "name": "Train Simulator: Union Pacific SD45 Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106016" + ], + "release_date": "2012-12-06", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Digital Train Model" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-union-pacific-sd70ace-loco-add-on.json b/data/game/tr/train-simulator-union-pacific-sd70ace-loco-add-on.json new file mode 100644 index 000000000000..93d22bc24daf --- /dev/null +++ b/data/game/tr/train-simulator-union-pacific-sd70ace-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-union-pacific-sd70ace-loco-add-on", + "name": "Train Simulator: Union Pacific SD70Ace Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105684" + ], + "release_date": "2012-08-03", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-union-pacific-sd9043mac-loco-add-on.json b/data/game/tr/train-simulator-union-pacific-sd9043mac-loco-add-on.json new file mode 100644 index 000000000000..1ee515f6b502 --- /dev/null +++ b/data/game/tr/train-simulator-union-pacific-sd9043mac-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-union-pacific-sd9043mac-loco-add-on", + "name": "Train Simulator: Union Pacific SD9043MAC Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105724" + ], + "release_date": "2019-11-21", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-union-pacific-u50-loco-add-on.json b/data/game/tr/train-simulator-union-pacific-u50-loco-add-on.json new file mode 100644 index 000000000000..4b316592b289 --- /dev/null +++ b/data/game/tr/train-simulator-union-pacific-u50-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-union-pacific-u50-loco-add-on", + "name": "Train Simulator: Union Pacific U50 Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106036" + ], + "release_date": "2018-05-31", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Digital Train Model" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-union-pacific-wasatch-grade-ogden-evanston-route-add-on.json b/data/game/tr/train-simulator-union-pacific-wasatch-grade-ogden-evanston-route-add-on.json new file mode 100644 index 000000000000..25f2dc50cda2 --- /dev/null +++ b/data/game/tr/train-simulator-union-pacific-wasatch-grade-ogden-evanston-route-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-union-pacific-wasatch-grade-ogden-evanston-route-add-on", + "name": "Train Simulator: Union Pacific Wasatch Grade: Ogden - Evanston Route Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105608" + ], + "release_date": "2019-09-26", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Milepost Simulations" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-up-ge-44-loco-add-on.json b/data/game/tr/train-simulator-up-ge-44-loco-add-on.json new file mode 100644 index 000000000000..98c9f477a8ed --- /dev/null +++ b/data/game/tr/train-simulator-up-ge-44-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-up-ge-44-loco-add-on", + "name": "Train Simulator: UP GE 44 Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106234" + ], + "release_date": "2012-08-23", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Digital Train Model" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-uprr-idaho-omaha-steam-loco-add-on.json b/data/game/tr/train-simulator-uprr-idaho-omaha-steam-loco-add-on.json new file mode 100644 index 000000000000..3f5eb3c347ea --- /dev/null +++ b/data/game/tr/train-simulator-uprr-idaho-omaha-steam-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-uprr-idaho-omaha-steam-loco-add-on", + "name": "Train Simulator: UPRR Idaho & Omaha Steam Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105678" + ], + "release_date": "2019-05-31", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Smokebox" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-us-loco-asset-pack.json b/data/game/tr/train-simulator-us-loco-asset-pack.json new file mode 100644 index 000000000000..0e94be37f4e6 --- /dev/null +++ b/data/game/tr/train-simulator-us-loco-asset-pack.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-us-loco-asset-pack", + "name": "Train Simulator: US Loco & Asset Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105960" + ], + "release_date": "2009-10-01", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-usatc-s160-loco-add-on.json b/data/game/tr/train-simulator-usatc-s160-loco-add-on.json new file mode 100644 index 000000000000..e1b523372531 --- /dev/null +++ b/data/game/tr/train-simulator-usatc-s160-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-usatc-s160-loco-add-on", + "name": "Train Simulator: USATC S160 Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106068" + ], + "release_date": "2016-06-07", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Victory Works" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-valley-corridor-route-add-on.json b/data/game/tr/train-simulator-valley-corridor-route-add-on.json new file mode 100644 index 000000000000..13125d51d895 --- /dev/null +++ b/data/game/tr/train-simulator-valley-corridor-route-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-valley-corridor-route-add-on", + "name": "Train Simulator: Valley Corridor Route Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105626" + ], + "release_date": "2020-01-30", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Just Trains" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-wakayama-sakurai-lines-route-add-on.json b/data/game/tr/train-simulator-wakayama-sakurai-lines-route-add-on.json new file mode 100644 index 000000000000..a2aa59c54f12 --- /dev/null +++ b/data/game/tr/train-simulator-wakayama-sakurai-lines-route-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-wakayama-sakurai-lines-route-add-on", + "name": "Train Simulator: Wakayama & Sakurai Lines Route Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105718" + ], + "release_date": "2016-07-22", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Union Workshop" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-wcml-south-london-euston-birmingham-route-add-on.json b/data/game/tr/train-simulator-wcml-south-london-euston-birmingham-route-add-on.json new file mode 100644 index 000000000000..f0a146eede51 --- /dev/null +++ b/data/game/tr/train-simulator-wcml-south-london-euston-birmingham-route-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-wcml-south-london-euston-birmingham-route-add-on", + "name": "Train Simulator: WCML South: London Euston - Birmingham Route Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105475" + ], + "release_date": "2020-09-17", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-wcml-trent-valley-route-add-on.json b/data/game/tr/train-simulator-wcml-trent-valley-route-add-on.json new file mode 100644 index 000000000000..8e40fa552cde --- /dev/null +++ b/data/game/tr/train-simulator-wcml-trent-valley-route-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-wcml-trent-valley-route-add-on", + "name": "Train Simulator: WCML Trent Valley Route Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105975" + ], + "release_date": "2015-07-08", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Thomson Interactive" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-weardale-teesdale-network-route-add-on.json b/data/game/tr/train-simulator-weardale-teesdale-network-route-add-on.json new file mode 100644 index 000000000000..edb68aabd514 --- /dev/null +++ b/data/game/tr/train-simulator-weardale-teesdale-network-route-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-weardale-teesdale-network-route-add-on", + "name": "Train Simulator: Weardale & Teesdale Network Route Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105871" + ], + "release_date": "2015-06-25", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-welsh-marches-newport-shrewsbury-route-add-on.json b/data/game/tr/train-simulator-welsh-marches-newport-shrewsbury-route-add-on.json new file mode 100644 index 000000000000..9eaea52bf39d --- /dev/null +++ b/data/game/tr/train-simulator-welsh-marches-newport-shrewsbury-route-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-welsh-marches-newport-shrewsbury-route-add-on", + "name": "Train Simulator: Welsh Marches: Newport - Shrewsbury Route Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105507" + ], + "release_date": "2020-08-06", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Bossman Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-west-coast-main-line-north-route-add-on.json b/data/game/tr/train-simulator-west-coast-main-line-north-route-add-on.json new file mode 100644 index 000000000000..e977b82f0bb6 --- /dev/null +++ b/data/game/tr/train-simulator-west-coast-main-line-north-route-add-on.json @@ -0,0 +1,18 @@ +{ + "slug": "train-simulator-west-coast-main-line-north-route-add-on", + "name": "Train Simulator: West Coast Main Line North Route Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105688" + ], + "release_date": "2011-12-01", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-west-coast-main-line-over-shap-route-add-on.json b/data/game/tr/train-simulator-west-coast-main-line-over-shap-route-add-on.json new file mode 100644 index 000000000000..955e90536a09 --- /dev/null +++ b/data/game/tr/train-simulator-west-coast-main-line-over-shap-route-add-on.json @@ -0,0 +1,18 @@ +{ + "slug": "train-simulator-west-coast-main-line-over-shap-route-add-on", + "name": "Train Simulator: West Coast Main Line Over Shap Route Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105481" + ], + "release_date": "2014-01-16", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-west-highland-line-extension-route-add-on.json b/data/game/tr/train-simulator-west-highland-line-extension-route-add-on.json new file mode 100644 index 000000000000..6ddc59969a32 --- /dev/null +++ b/data/game/tr/train-simulator-west-highland-line-extension-route-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-west-highland-line-extension-route-add-on", + "name": "Train Simulator: West Highland Line Extension Route Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106031" + ], + "release_date": "2014-10-02", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Thomson Interactive" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-west-highland-line-south-route-add-on.json b/data/game/tr/train-simulator-west-highland-line-south-route-add-on.json new file mode 100644 index 000000000000..6b0e19461e4b --- /dev/null +++ b/data/game/tr/train-simulator-west-highland-line-south-route-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-west-highland-line-south-route-add-on", + "name": "Train Simulator: West Highland Line (South) Route Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106230" + ], + "release_date": "2015-08-06", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Milepost Simulations" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-west-rhine-k-ln-koblenz-route-add-on.json b/data/game/tr/train-simulator-west-rhine-k-ln-koblenz-route-add-on.json new file mode 100644 index 000000000000..843e62db1aae --- /dev/null +++ b/data/game/tr/train-simulator-west-rhine-k-ln-koblenz-route-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-west-rhine-k-ln-koblenz-route-add-on", + "name": "Train Simulator: West Rhine: Köln - Koblenz Route Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105515" + ], + "release_date": "2014-12-05", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-western-hydraulics-pack-add-on.json b/data/game/tr/train-simulator-western-hydraulics-pack-add-on.json new file mode 100644 index 000000000000..f70fb1cd5ac6 --- /dev/null +++ b/data/game/tr/train-simulator-western-hydraulics-pack-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-western-hydraulics-pack-add-on", + "name": "Train Simulator: Western Hydraulics Pack Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105705" + ], + "release_date": "2017-08-31", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-western-lines-of-scotland-route-add-on.json b/data/game/tr/train-simulator-western-lines-of-scotland-route-add-on.json new file mode 100644 index 000000000000..d3dd7d0d7c79 --- /dev/null +++ b/data/game/tr/train-simulator-western-lines-of-scotland-route-add-on.json @@ -0,0 +1,18 @@ +{ + "slug": "train-simulator-western-lines-of-scotland-route-add-on", + "name": "Train Simulator: Western Lines of Scotland Route Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105890" + ], + "release_date": "2013-03-21", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-western-maryland-railway-retro-pack.json b/data/game/tr/train-simulator-western-maryland-railway-retro-pack.json new file mode 100644 index 000000000000..cf38f40d4f28 --- /dev/null +++ b/data/game/tr/train-simulator-western-maryland-railway-retro-pack.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-western-maryland-railway-retro-pack", + "name": "Train Simulator: Western Maryland Railway Retro Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105703" + ], + "release_date": "2020-11-13", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "High Iron Simulations" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-western-pacific-fp7-california-zephyr-loco-add-on.json b/data/game/tr/train-simulator-western-pacific-fp7-california-zephyr-loco-add-on.json new file mode 100644 index 000000000000..7132d63a89a1 --- /dev/null +++ b/data/game/tr/train-simulator-western-pacific-fp7-california-zephyr-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-western-pacific-fp7-california-zephyr-loco-add-on", + "name": "Train Simulator: Western Pacific FP7 ‘California Zephyr’ Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105622" + ], + "release_date": "2016-06-10", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-western-pacific-gp20-high-nose-loco-add-on.json b/data/game/tr/train-simulator-western-pacific-gp20-high-nose-loco-add-on.json new file mode 100644 index 000000000000..fd5468d17d40 --- /dev/null +++ b/data/game/tr/train-simulator-western-pacific-gp20-high-nose-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-western-pacific-gp20-high-nose-loco-add-on", + "name": "Train Simulator: Western Pacific GP20 High Nose Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106167" + ], + "release_date": "2016-04-28", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Reppo" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-western-pacific-gp35-add-on.json b/data/game/tr/train-simulator-western-pacific-gp35-add-on.json new file mode 100644 index 000000000000..5250bcae3699 --- /dev/null +++ b/data/game/tr/train-simulator-western-pacific-gp35-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-western-pacific-gp35-add-on", + "name": "Train Simulator: Western Pacific GP35 Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106034" + ], + "release_date": "2017-06-15", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Digital Train Model" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-western-sichuan-pass-dujiangyan-maoxian-mashancun-route-add-on.json b/data/game/tr/train-simulator-western-sichuan-pass-dujiangyan-maoxian-mashancun-route-add-on.json new file mode 100644 index 000000000000..ababb3279b53 --- /dev/null +++ b/data/game/tr/train-simulator-western-sichuan-pass-dujiangyan-maoxian-mashancun-route-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-western-sichuan-pass-dujiangyan-maoxian-mashancun-route-add-on", + "name": "Train Simulator: Western Sichuan Pass: Dujiangyan - Maoxian & Mashancun Route Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105708" + ], + "release_date": "2017-06-21", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "SimTech Vision" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-wherry-lines-norwich-great-yarmouth-lowestoft-route-add-on.json b/data/game/tr/train-simulator-wherry-lines-norwich-great-yarmouth-lowestoft-route-add-on.json new file mode 100644 index 000000000000..48530065e6fd --- /dev/null +++ b/data/game/tr/train-simulator-wherry-lines-norwich-great-yarmouth-lowestoft-route-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-wherry-lines-norwich-great-yarmouth-lowestoft-route-add-on", + "name": "Train Simulator: Wherry Lines: Norwich – Great Yarmouth & Lowestoft Route Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105635" + ], + "release_date": "2016-10-27", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Armstrong Powerhouse" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-woodhead-electric-railway-in-blue-route-add-on.json b/data/game/tr/train-simulator-woodhead-electric-railway-in-blue-route-add-on.json new file mode 100644 index 000000000000..747e0dd24c1e --- /dev/null +++ b/data/game/tr/train-simulator-woodhead-electric-railway-in-blue-route-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-woodhead-electric-railway-in-blue-route-add-on", + "name": "Train Simulator: Woodhead Electric Railway in Blue Route Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105575" + ], + "release_date": "2018-02-27", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-woodhead-route-add-on.json b/data/game/tr/train-simulator-woodhead-route-add-on.json new file mode 100644 index 000000000000..a140f627429f --- /dev/null +++ b/data/game/tr/train-simulator-woodhead-route-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-woodhead-route-add-on", + "name": "Train Simulator: Woodhead Route Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105756" + ], + "release_date": "2012-01-26", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-worcester-mossel-bay-railway-route-add-on.json b/data/game/tr/train-simulator-worcester-mossel-bay-railway-route-add-on.json new file mode 100644 index 000000000000..7e6c2e9a9c43 --- /dev/null +++ b/data/game/tr/train-simulator-worcester-mossel-bay-railway-route-add-on.json @@ -0,0 +1,18 @@ +{ + "slug": "train-simulator-worcester-mossel-bay-railway-route-add-on", + "name": "Train Simulator: Worcester - Mossel Bay Railway Route Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106238" + ], + "release_date": "2020-02-14", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-wsr-diesels-loco-add-on.json b/data/game/tr/train-simulator-wsr-diesels-loco-add-on.json new file mode 100644 index 000000000000..ca4a2dc35620 --- /dev/null +++ b/data/game/tr/train-simulator-wsr-diesels-loco-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-wsr-diesels-loco-add-on", + "name": "Train Simulator: WSR Diesels Loco Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105656" + ], + "release_date": "2013-11-14", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-wutachtalbahn-lauchringen-immendingen-route-add-on.json b/data/game/tr/train-simulator-wutachtalbahn-lauchringen-immendingen-route-add-on.json new file mode 100644 index 000000000000..155997056e1b --- /dev/null +++ b/data/game/tr/train-simulator-wutachtalbahn-lauchringen-immendingen-route-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-wutachtalbahn-lauchringen-immendingen-route-add-on", + "name": "Train Simulator: Wutachtalbahn: Lauchringen – Immendingen Route Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105568" + ], + "release_date": "2017-09-08", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-simulator-yellowhead-pass-jasper-valemount-route-add-on.json b/data/game/tr/train-simulator-yellowhead-pass-jasper-valemount-route-add-on.json new file mode 100644 index 000000000000..fdded1c927ac --- /dev/null +++ b/data/game/tr/train-simulator-yellowhead-pass-jasper-valemount-route-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "train-simulator-yellowhead-pass-jasper-valemount-route-add-on", + "name": "Train Simulator: Yellowhead Pass: Jasper - Valemount Route Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105798" + ], + "release_date": "2020-07-09", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Milepost Simulations" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/train-valley-console-edition.json b/data/game/tr/train-valley-console-edition.json new file mode 100644 index 000000000000..1c0d36441b6c --- /dev/null +++ b/data/game/tr/train-valley-console-edition.json @@ -0,0 +1,15 @@ +{ + "slug": "train-valley-console-edition", + "name": "Train Valley: Console Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115300669" + ], + "release_date": "2022-07-27", + "platforms": [ + "Xbox Series X and Series S" + ], + "developers": [ + "Flazm" + ] +} diff --git a/data/game/tr/tramsim-console-edition.json b/data/game/tr/tramsim-console-edition.json new file mode 100644 index 000000000000..57df73cd631c --- /dev/null +++ b/data/game/tr/tramsim-console-edition.json @@ -0,0 +1,19 @@ +{ + "slug": "tramsim-console-edition", + "name": "TramSim: Console Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123206652" + ], + "release_date": "2023-04-25", + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 4" + ], + "developers": [ + "ViewApp" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tr/transformers-reactivate.json b/data/game/tr/transformers-reactivate.json new file mode 100644 index 000000000000..bff96284326a --- /dev/null +++ b/data/game/tr/transformers-reactivate.json @@ -0,0 +1,8 @@ +{ + "slug": "transformers-reactivate", + "name": "Transformers: Reactivate", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115641827" + ] +} diff --git a/data/game/tr/transport-fever-2-console-edition.json b/data/game/tr/transport-fever-2-console-edition.json new file mode 100644 index 000000000000..ff8fcb327666 --- /dev/null +++ b/data/game/tr/transport-fever-2-console-edition.json @@ -0,0 +1,19 @@ +{ + "slug": "transport-fever-2-console-edition", + "name": "Transport Fever 2: Console Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122668965" + ], + "release_date": "2023-03-09", + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 4" + ], + "developers": [ + "Urban Games" + ], + "publishers": [ + "Nacon" + ] +} diff --git a/data/game/tr/transport-gigant-down-under.json b/data/game/tr/transport-gigant-down-under.json new file mode 100644 index 000000000000..5100de7d55a2 --- /dev/null +++ b/data/game/tr/transport-gigant-down-under.json @@ -0,0 +1,8 @@ +{ + "slug": "transport-gigant-down-under", + "name": "Transport Gigant: Down Under", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124720760" + ] +} diff --git a/data/game/tr/transport-tycoon-world-editor.json b/data/game/tr/transport-tycoon-world-editor.json new file mode 100644 index 000000000000..dc6633739286 --- /dev/null +++ b/data/game/tr/transport-tycoon-world-editor.json @@ -0,0 +1,8 @@ +{ + "slug": "transport-tycoon-world-editor", + "name": "Transport Tycoon: World Editor", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124720713" + ] +} diff --git a/data/game/tr/trapper-night-hunter-skin-pack.json b/data/game/tr/trapper-night-hunter-skin-pack.json new file mode 100644 index 000000000000..c67ac5695f49 --- /dev/null +++ b/data/game/tr/trapper-night-hunter-skin-pack.json @@ -0,0 +1,19 @@ +{ + "slug": "trapper-night-hunter-skin-pack", + "name": "Trapper Night Hunter Skin Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124637528" + ], + "release_date": "2015-06-02", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "science fiction video game" + ], + "publishers": [ + "2K" + ] +} diff --git a/data/game/tr/trapper-victory-skin-pack.json b/data/game/tr/trapper-victory-skin-pack.json new file mode 100644 index 000000000000..461225144080 --- /dev/null +++ b/data/game/tr/trapper-victory-skin-pack.json @@ -0,0 +1,19 @@ +{ + "slug": "trapper-victory-skin-pack", + "name": "Trapper Victory Skin Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124637416" + ], + "release_date": "2015-07-01", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "science fiction video game" + ], + "publishers": [ + "2K" + ] +} diff --git a/data/game/tr/treat-road.json b/data/game/tr/treat-road.json new file mode 100644 index 000000000000..a5f0430bbc00 --- /dev/null +++ b/data/game/tr/treat-road.json @@ -0,0 +1,9 @@ +{ + "slug": "treat-road", + "name": "Treat Road", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112582109" + ], + "release_date": "2013-04-18" +} diff --git a/data/game/tr/tremor-for-quake.json b/data/game/tr/tremor-for-quake.json new file mode 100644 index 000000000000..d8b681a8a1da --- /dev/null +++ b/data/game/tr/tremor-for-quake.json @@ -0,0 +1,8 @@ +{ + "slug": "tremor-for-quake", + "name": "Tremor for quake", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122923510" + ] +} diff --git a/data/game/tr/tremors-the-game.json b/data/game/tr/tremors-the-game.json new file mode 100644 index 000000000000..4c116f10fcf9 --- /dev/null +++ b/data/game/tr/tremors-the-game.json @@ -0,0 +1,15 @@ +{ + "slug": "tremors-the-game", + "name": "Tremors: The Game", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16267721" + ], + "platforms": [ + "Nintendo GameCube", + "Microsoft Windows" + ], + "genres": [ + "survival horror" + ] +} diff --git a/data/game/tr/triad-wars.json b/data/game/tr/triad-wars.json new file mode 100644 index 000000000000..a53a71fd8aea --- /dev/null +++ b/data/game/tr/triad-wars.json @@ -0,0 +1,21 @@ +{ + "slug": "triad-wars", + "name": "Triad Wars", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16267802" + ], + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "action-adventure game", + "third-person shooter" + ], + "developers": [ + "United Front Games" + ], + "publishers": [ + "Square Enix" + ] +} diff --git a/data/game/tr/tribes-of-midgard-deluxe-edition.json b/data/game/tr/tribes-of-midgard-deluxe-edition.json new file mode 100644 index 000000000000..da84468f007d --- /dev/null +++ b/data/game/tr/tribes-of-midgard-deluxe-edition.json @@ -0,0 +1,12 @@ +{ + "slug": "tribes-of-midgard-deluxe-edition", + "name": "Tribes of Midgard Deluxe Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115525996" + ], + "release_date": "2022-08-16", + "publishers": [ + "Gearbox Publishing" + ] +} diff --git a/data/game/tr/trine-2-goblin-menace.json b/data/game/tr/trine-2-goblin-menace.json new file mode 100644 index 000000000000..fb53f8ee5fa8 --- /dev/null +++ b/data/game/tr/trine-2-goblin-menace.json @@ -0,0 +1,8 @@ +{ + "slug": "trine-2-goblin-menace", + "name": "Trine 2: Goblin Menace", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110156547" + ] +} diff --git a/data/game/tr/trine-4-melody-of-mystery.json b/data/game/tr/trine-4-melody-of-mystery.json new file mode 100644 index 000000000000..5dc6d036faae --- /dev/null +++ b/data/game/tr/trine-4-melody-of-mystery.json @@ -0,0 +1,8 @@ +{ + "slug": "trine-4-melody-of-mystery", + "name": "Trine 4: Melody of Mystery", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140454722" + ] +} diff --git a/data/game/tr/trivia-vault.json b/data/game/tr/trivia-vault.json new file mode 100644 index 000000000000..dd6fae29a5f3 --- /dev/null +++ b/data/game/tr/trivia-vault.json @@ -0,0 +1,14 @@ +{ + "slug": "trivia-vault", + "name": "Trivia Vault", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118351623" + ], + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "trivia video game" + ] +} diff --git a/data/game/tr/tropical-island.json b/data/game/tr/tropical-island.json new file mode 100644 index 000000000000..e0056df65adb --- /dev/null +++ b/data/game/tr/tropical-island.json @@ -0,0 +1,21 @@ +{ + "slug": "tropical-island", + "name": "Tropical Island", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123997311" + ], + "release_date": "2021-01-11", + "platforms": [ + "PlayStation Vita" + ], + "genres": [ + "first-person shooter" + ], + "developers": [ + "VitaHEX games" + ], + "publishers": [ + "VitaHEX games" + ] +} diff --git a/data/game/tr/tropico-3-absolute-power.json b/data/game/tr/tropico-3-absolute-power.json new file mode 100644 index 000000000000..4a45fe8d0be7 --- /dev/null +++ b/data/game/tr/tropico-3-absolute-power.json @@ -0,0 +1,8 @@ +{ + "slug": "tropico-3-absolute-power", + "name": "Tropico 3: Absolute Power", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121889156" + ] +} diff --git a/data/game/tr/tropico-3-gold-edition.json b/data/game/tr/tropico-3-gold-edition.json new file mode 100644 index 000000000000..245883989c1d --- /dev/null +++ b/data/game/tr/tropico-3-gold-edition.json @@ -0,0 +1,11 @@ +{ + "slug": "tropico-3-gold-edition", + "name": "Tropico 3 Gold Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121889147" + ], + "platforms": [ + "Classic Mac OS" + ] +} diff --git a/data/game/tr/tropico-4-gold-edition.json b/data/game/tr/tropico-4-gold-edition.json new file mode 100644 index 000000000000..70ba703d8087 --- /dev/null +++ b/data/game/tr/tropico-4-gold-edition.json @@ -0,0 +1,8 @@ +{ + "slug": "tropico-4-gold-edition", + "name": "Tropico 4: Gold Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121889188" + ] +} diff --git a/data/game/tr/tropico-4-modern-times.json b/data/game/tr/tropico-4-modern-times.json new file mode 100644 index 000000000000..f08f6892873c --- /dev/null +++ b/data/game/tr/tropico-4-modern-times.json @@ -0,0 +1,21 @@ +{ + "slug": "tropico-4-modern-times", + "name": "Tropico 4: Modern Times", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q45367151" + ], + "release_date": "2012-03-29", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Feral Interactive", + "Haemimont Games" + ], + "publishers": [ + "Kalypso Media", + "Feral Interactive" + ] +} diff --git a/data/game/tr/tropico-5-waterborne.json b/data/game/tr/tropico-5-waterborne.json new file mode 100644 index 000000000000..c986fc54203c --- /dev/null +++ b/data/game/tr/tropico-5-waterborne.json @@ -0,0 +1,8 @@ +{ + "slug": "tropico-5-waterborne", + "name": "Tropico 5: Waterborne", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140447959" + ] +} diff --git a/data/game/tr/tropico-6-next-gen-edition.json b/data/game/tr/tropico-6-next-gen-edition.json new file mode 100644 index 000000000000..afaffaf3a6dc --- /dev/null +++ b/data/game/tr/tropico-6-next-gen-edition.json @@ -0,0 +1,18 @@ +{ + "slug": "tropico-6-next-gen-edition", + "name": "Tropico 6: Next Gen Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111755723" + ], + "release_date": "2022-03-31", + "platforms": [ + "Xbox Series X and Series S" + ], + "developers": [ + "Realmforge Studios" + ], + "publishers": [ + "Kalypso Media" + ] +} diff --git a/data/game/tr/tropico-mucho-macho-edition.json b/data/game/tr/tropico-mucho-macho-edition.json new file mode 100644 index 000000000000..2ac3774fcea2 --- /dev/null +++ b/data/game/tr/tropico-mucho-macho-edition.json @@ -0,0 +1,11 @@ +{ + "slug": "tropico-mucho-macho-edition", + "name": "Tropico: Mucho Macho Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121889216" + ], + "platforms": [ + "Classic Mac OS" + ] +} diff --git a/data/game/tr/tropico-paradise-island.json b/data/game/tr/tropico-paradise-island.json new file mode 100644 index 000000000000..14fc87183632 --- /dev/null +++ b/data/game/tr/tropico-paradise-island.json @@ -0,0 +1,9 @@ +{ + "slug": "tropico-paradise-island", + "name": "Tropico: Paradise Island", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q12059765" + ], + "release_date": "2002-01-01" +} diff --git a/data/game/tr/tropico-reloaded.json b/data/game/tr/tropico-reloaded.json new file mode 100644 index 000000000000..2e7b6c87dd1d --- /dev/null +++ b/data/game/tr/tropico-reloaded.json @@ -0,0 +1,12 @@ +{ + "slug": "tropico-reloaded", + "name": "Tropico Reloaded", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118364195" + ], + "release_date": "2009-07-24", + "platforms": [ + "Microsoft Windows" + ] +} diff --git a/data/game/tr/truck-stop.json b/data/game/tr/truck-stop.json new file mode 100644 index 000000000000..7faf3689bcef --- /dev/null +++ b/data/game/tr/truck-stop.json @@ -0,0 +1,11 @@ +{ + "slug": "truck-stop", + "name": "Truck Stop", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60792453" + ], + "publishers": [ + "Steve Jackson Games" + ] +} diff --git a/data/game/ts/ts-marketplace-1800s-rolling-stock-pack-01-add-on.json b/data/game/ts/ts-marketplace-1800s-rolling-stock-pack-01-add-on.json new file mode 100644 index 000000000000..79a8a04c603e --- /dev/null +++ b/data/game/ts/ts-marketplace-1800s-rolling-stock-pack-01-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "ts-marketplace-1800s-rolling-stock-pack-01-add-on", + "name": "TS Marketplace: 1800s Rolling Stock Pack 01 Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105941" + ], + "release_date": "2019-05-08", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Smokebox" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/ts/ts-marketplace-1800s-rolling-stock-pack-02-add-on.json b/data/game/ts/ts-marketplace-1800s-rolling-stock-pack-02-add-on.json new file mode 100644 index 000000000000..cca5757f8095 --- /dev/null +++ b/data/game/ts/ts-marketplace-1800s-rolling-stock-pack-02-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "ts-marketplace-1800s-rolling-stock-pack-02-add-on", + "name": "TS Marketplace: 1800s Rolling Stock Pack 02 Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105940" + ], + "release_date": "2019-05-08", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Smokebox" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/ts/ts-marketplace-alaska-railroad-scenario-pack-01.json b/data/game/ts/ts-marketplace-alaska-railroad-scenario-pack-01.json new file mode 100644 index 000000000000..efabd8c53004 --- /dev/null +++ b/data/game/ts/ts-marketplace-alaska-railroad-scenario-pack-01.json @@ -0,0 +1,21 @@ +{ + "slug": "ts-marketplace-alaska-railroad-scenario-pack-01", + "name": "TS Marketplace: Alaska Railroad Scenario Pack 01", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105938" + ], + "release_date": "2019-06-12", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Trains & Drivers" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/ts/ts-marketplace-amtrak-e8-scenario-pack-01-add-on.json b/data/game/ts/ts-marketplace-amtrak-e8-scenario-pack-01-add-on.json new file mode 100644 index 000000000000..37b78a9582a7 --- /dev/null +++ b/data/game/ts/ts-marketplace-amtrak-e8-scenario-pack-01-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "ts-marketplace-amtrak-e8-scenario-pack-01-add-on", + "name": "TS Marketplace: Amtrak E8 Scenario Pack 01 Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106025" + ], + "release_date": "2018-06-20", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "High Iron Simulations" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/ts/ts-marketplace-baltimore-and-ohio-ge-44-add-on.json b/data/game/ts/ts-marketplace-baltimore-and-ohio-ge-44-add-on.json new file mode 100644 index 000000000000..4ac76f51c6da --- /dev/null +++ b/data/game/ts/ts-marketplace-baltimore-and-ohio-ge-44-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "ts-marketplace-baltimore-and-ohio-ge-44-add-on", + "name": "TS Marketplace: Baltimore and Ohio GE 44 Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106365" + ], + "release_date": "2017-06-21", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Digital Train Model" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/ts/ts-marketplace-baltimore-and-ohio-gp30-liveries-add-on.json b/data/game/ts/ts-marketplace-baltimore-and-ohio-gp30-liveries-add-on.json new file mode 100644 index 000000000000..da419576e193 --- /dev/null +++ b/data/game/ts/ts-marketplace-baltimore-and-ohio-gp30-liveries-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "ts-marketplace-baltimore-and-ohio-gp30-liveries-add-on", + "name": "TS Marketplace: Baltimore and Ohio GP30 Liveries Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106278" + ], + "release_date": "2017-12-08", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Digital Train Model" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/ts/ts-marketplace-baltimore-ohio-rf-16-livery-pack.json b/data/game/ts/ts-marketplace-baltimore-ohio-rf-16-livery-pack.json new file mode 100644 index 000000000000..d5a4412100db --- /dev/null +++ b/data/game/ts/ts-marketplace-baltimore-ohio-rf-16-livery-pack.json @@ -0,0 +1,21 @@ +{ + "slug": "ts-marketplace-baltimore-ohio-rf-16-livery-pack", + "name": "TS Marketplace: Baltimore & Ohio RF-16 Livery Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105808" + ], + "release_date": "2020-05-27", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "The Loco Shop" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/ts/ts-marketplace-barnum-coaches-pack-01-add-on.json b/data/game/ts/ts-marketplace-barnum-coaches-pack-01-add-on.json new file mode 100644 index 000000000000..bf5c217ce6f6 --- /dev/null +++ b/data/game/ts/ts-marketplace-barnum-coaches-pack-01-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "ts-marketplace-barnum-coaches-pack-01-add-on", + "name": "TS Marketplace: Barnum Coaches Pack 01 Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106314" + ], + "release_date": "2016-11-22", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "MatrixTrains" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/ts/ts-marketplace-bb-1044-100-livery-add-on.json b/data/game/ts/ts-marketplace-bb-1044-100-livery-add-on.json new file mode 100644 index 000000000000..de145ab1e28d --- /dev/null +++ b/data/game/ts/ts-marketplace-bb-1044-100-livery-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "ts-marketplace-bb-1044-100-livery-add-on", + "name": "TS Marketplace: ÖBB 1044 '100' Livery Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106366" + ], + "release_date": "2017-08-04", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Skyhook Games Studio" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/ts/ts-marketplace-bb-1144-livery-pack-add-on.json b/data/game/ts/ts-marketplace-bb-1144-livery-pack-add-on.json new file mode 100644 index 000000000000..71e5d6e9b56f --- /dev/null +++ b/data/game/ts/ts-marketplace-bb-1144-livery-pack-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "ts-marketplace-bb-1144-livery-pack-add-on", + "name": "TS Marketplace: ÖBB 1144 Livery Pack Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105942" + ], + "release_date": "2019-05-03", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Skyhook Games Studio" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/ts/ts-marketplace-bb-rnoos-wagon-pack-add-on.json b/data/game/ts/ts-marketplace-bb-rnoos-wagon-pack-add-on.json new file mode 100644 index 000000000000..362200413f6b --- /dev/null +++ b/data/game/ts/ts-marketplace-bb-rnoos-wagon-pack-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "ts-marketplace-bb-rnoos-wagon-pack-add-on", + "name": "TS Marketplace: ÖBB Rnoos Wagon Pack Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106297" + ], + "release_date": "2016-11-02", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Skyhook Games Studio" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/ts/ts-marketplace-bb-sgns-container-wagon-pack.json b/data/game/ts/ts-marketplace-bb-sgns-container-wagon-pack.json new file mode 100644 index 000000000000..bf7c4c502726 --- /dev/null +++ b/data/game/ts/ts-marketplace-bb-sgns-container-wagon-pack.json @@ -0,0 +1,21 @@ +{ + "slug": "ts-marketplace-bb-sgns-container-wagon-pack", + "name": "TS Marketplace: ÖBB Sgns Container Wagon Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106311" + ], + "release_date": "2016-11-11", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Skyhook Games Studio" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/ts/ts-marketplace-bb-sgns-hopper-pack.json b/data/game/ts/ts-marketplace-bb-sgns-hopper-pack.json new file mode 100644 index 000000000000..b3c53a7e8efc --- /dev/null +++ b/data/game/ts/ts-marketplace-bb-sgns-hopper-pack.json @@ -0,0 +1,21 @@ +{ + "slug": "ts-marketplace-bb-sgns-hopper-pack", + "name": "TS Marketplace: ÖBB Sgns Hopper Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106315" + ], + "release_date": "2016-11-02", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Skyhook Games Studio" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/ts/ts-marketplace-br-hawksworth-coach-pack-01-add-on.json b/data/game/ts/ts-marketplace-br-hawksworth-coach-pack-01-add-on.json new file mode 100644 index 000000000000..0350b2c85914 --- /dev/null +++ b/data/game/ts/ts-marketplace-br-hawksworth-coach-pack-01-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "ts-marketplace-br-hawksworth-coach-pack-01-add-on", + "name": "TS Marketplace: BR Hawksworth Coach Pack 01 Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106294" + ], + "release_date": "2017-05-05", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "MatrixTrains" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/ts/ts-marketplace-br-hawksworth-coach-pack-02-add-on.json b/data/game/ts/ts-marketplace-br-hawksworth-coach-pack-02-add-on.json new file mode 100644 index 000000000000..1e354bc53767 --- /dev/null +++ b/data/game/ts/ts-marketplace-br-hawksworth-coach-pack-02-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "ts-marketplace-br-hawksworth-coach-pack-02-add-on", + "name": "TS Marketplace: BR Hawksworth Coach Pack 02 Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106295" + ], + "release_date": "2017-05-05", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "MatrixTrains" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/ts/ts-marketplace-br-porthole-coach-pack-01-add-on.json b/data/game/ts/ts-marketplace-br-porthole-coach-pack-01-add-on.json new file mode 100644 index 000000000000..7e063ac00e61 --- /dev/null +++ b/data/game/ts/ts-marketplace-br-porthole-coach-pack-01-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "ts-marketplace-br-porthole-coach-pack-01-add-on", + "name": "TS Marketplace: BR Porthole Coach Pack 01 Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106309" + ], + "release_date": "2017-01-27", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "MatrixTrains" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/ts/ts-marketplace-br-porthole-coach-pack-02-add-on.json b/data/game/ts/ts-marketplace-br-porthole-coach-pack-02-add-on.json new file mode 100644 index 000000000000..974f193d7661 --- /dev/null +++ b/data/game/ts/ts-marketplace-br-porthole-coach-pack-02-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "ts-marketplace-br-porthole-coach-pack-02-add-on", + "name": "TS Marketplace: BR Porthole Coach Pack 02 Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106310" + ], + "release_date": "2017-01-27", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "MatrixTrains" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/ts/ts-marketplace-br-saint-tpo-livery-pack-add-on.json b/data/game/ts/ts-marketplace-br-saint-tpo-livery-pack-add-on.json new file mode 100644 index 000000000000..cb4c98152c97 --- /dev/null +++ b/data/game/ts/ts-marketplace-br-saint-tpo-livery-pack-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "ts-marketplace-br-saint-tpo-livery-pack-add-on", + "name": "TS Marketplace: BR Saint & TPO Livery Pack Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106296" + ], + "release_date": "2016-10-12", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Victory Works" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/ts/ts-marketplace-british-railways-class-a2-livery-pack-add-on.json b/data/game/ts/ts-marketplace-british-railways-class-a2-livery-pack-add-on.json new file mode 100644 index 000000000000..d443dc724525 --- /dev/null +++ b/data/game/ts/ts-marketplace-british-railways-class-a2-livery-pack-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "ts-marketplace-british-railways-class-a2-livery-pack-add-on", + "name": "TS Marketplace: British Railways Class A2 Livery Pack Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106317" + ], + "release_date": "2016-12-07", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Bossman Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/ts/ts-marketplace-british-railways-s15-livery-pack-add-on.json b/data/game/ts/ts-marketplace-british-railways-s15-livery-pack-add-on.json new file mode 100644 index 000000000000..90c2787d329d --- /dev/null +++ b/data/game/ts/ts-marketplace-british-railways-s15-livery-pack-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "ts-marketplace-british-railways-s15-livery-pack-add-on", + "name": "TS Marketplace: British Railways S15 Livery Pack Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106354" + ], + "release_date": "2017-05-17", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Bossman Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/ts/ts-marketplace-bulleid-coach-pack-01-add-on.json b/data/game/ts/ts-marketplace-bulleid-coach-pack-01-add-on.json new file mode 100644 index 000000000000..49e35ff0382b --- /dev/null +++ b/data/game/ts/ts-marketplace-bulleid-coach-pack-01-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "ts-marketplace-bulleid-coach-pack-01-add-on", + "name": "TS Marketplace: Bulleid Coach Pack 01 Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106286" + ], + "release_date": "2017-02-24", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "MatrixTrains" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/ts/ts-marketplace-bulleid-coach-pack-02-add-on.json b/data/game/ts/ts-marketplace-bulleid-coach-pack-02-add-on.json new file mode 100644 index 000000000000..e5c40b50bc9f --- /dev/null +++ b/data/game/ts/ts-marketplace-bulleid-coach-pack-02-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "ts-marketplace-bulleid-coach-pack-02-add-on", + "name": "TS Marketplace: Bulleid Coach Pack 02 Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106287" + ], + "release_date": "2017-02-24", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "MatrixTrains" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/ts/ts-marketplace-bulleid-coach-pack-03-add-on.json b/data/game/ts/ts-marketplace-bulleid-coach-pack-03-add-on.json new file mode 100644 index 000000000000..912e4243a9cb --- /dev/null +++ b/data/game/ts/ts-marketplace-bulleid-coach-pack-03-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "ts-marketplace-bulleid-coach-pack-03-add-on", + "name": "TS Marketplace: Bulleid Coach Pack 03 Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106293" + ], + "release_date": "2017-02-24", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "MatrixTrains" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/ts/ts-marketplace-caledonian-railway-45ft-non-corridor-caledonian-railway-add-on.json b/data/game/ts/ts-marketplace-caledonian-railway-45ft-non-corridor-caledonian-railway-add-on.json new file mode 100644 index 000000000000..9fa1a13cf3c1 --- /dev/null +++ b/data/game/ts/ts-marketplace-caledonian-railway-45ft-non-corridor-caledonian-railway-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "ts-marketplace-caledonian-railway-45ft-non-corridor-caledonian-railway-add-on", + "name": "TS Marketplace: Caledonian Railway 45ft Non-Corridor - Caledonian Railway Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106386" + ], + "release_date": "2018-07-11", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "MatrixTrains" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/ts/ts-marketplace-caledonian-railway-45ft-non-corridor-lms-period-1-add-on.json b/data/game/ts/ts-marketplace-caledonian-railway-45ft-non-corridor-lms-period-1-add-on.json new file mode 100644 index 000000000000..8b96f89ada5f --- /dev/null +++ b/data/game/ts/ts-marketplace-caledonian-railway-45ft-non-corridor-lms-period-1-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "ts-marketplace-caledonian-railway-45ft-non-corridor-lms-period-1-add-on", + "name": "TS Marketplace: Caledonian Railway 45ft Non-Corridor - LMS Period 1 Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106388" + ], + "release_date": "2018-07-11", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "MatrixTrains" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/ts/ts-marketplace-caledonian-railway-65ft-grampian-br-crimson-cream-coach-pack-add-on.json b/data/game/ts/ts-marketplace-caledonian-railway-65ft-grampian-br-crimson-cream-coach-pack-add-on.json new file mode 100644 index 000000000000..5389403b544c --- /dev/null +++ b/data/game/ts/ts-marketplace-caledonian-railway-65ft-grampian-br-crimson-cream-coach-pack-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "ts-marketplace-caledonian-railway-65ft-grampian-br-crimson-cream-coach-pack-add-on", + "name": "TS Marketplace: Caledonian Railway 65ft Grampian BR Crimson & Cream Coach Pack Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106394" + ], + "release_date": "2018-12-14", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "MatrixTrains" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/ts/ts-marketplace-caledonian-railway-65ft-grampian-coach-pack-add-on.json b/data/game/ts/ts-marketplace-caledonian-railway-65ft-grampian-coach-pack-add-on.json new file mode 100644 index 000000000000..10c3504b847d --- /dev/null +++ b/data/game/ts/ts-marketplace-caledonian-railway-65ft-grampian-coach-pack-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "ts-marketplace-caledonian-railway-65ft-grampian-coach-pack-add-on", + "name": "TS Marketplace: Caledonian Railway 65ft Grampian Coach Pack Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106398" + ], + "release_date": "2018-12-14", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "MatrixTrains" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/ts/ts-marketplace-caledonian-railway-65ft-grampian-lms-period-1-coach-pack.json b/data/game/ts/ts-marketplace-caledonian-railway-65ft-grampian-lms-period-1-coach-pack.json new file mode 100644 index 000000000000..6462232c72ab --- /dev/null +++ b/data/game/ts/ts-marketplace-caledonian-railway-65ft-grampian-lms-period-1-coach-pack.json @@ -0,0 +1,21 @@ +{ + "slug": "ts-marketplace-caledonian-railway-65ft-grampian-lms-period-1-coach-pack", + "name": "TS Marketplace: Caledonian Railway 65ft Grampian LMS Period 1 Coach Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106395" + ], + "release_date": "2018-11-29", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "MatrixTrains" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/ts/ts-marketplace-caledonian-railway-65ft-grampian-lms-period-3-coach-pack.json b/data/game/ts/ts-marketplace-caledonian-railway-65ft-grampian-lms-period-3-coach-pack.json new file mode 100644 index 000000000000..a0d5b4d4f761 --- /dev/null +++ b/data/game/ts/ts-marketplace-caledonian-railway-65ft-grampian-lms-period-3-coach-pack.json @@ -0,0 +1,21 @@ +{ + "slug": "ts-marketplace-caledonian-railway-65ft-grampian-lms-period-3-coach-pack", + "name": "TS Marketplace: Caledonian Railway 65ft Grampian LMS Period 3 Coach Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106397" + ], + "release_date": "2018-11-29", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "MatrixTrains" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/ts/ts-marketplace-chatham-main-line-scenario-pack-01-add-on.json b/data/game/ts/ts-marketplace-chatham-main-line-scenario-pack-01-add-on.json new file mode 100644 index 000000000000..fd241ff9ffe2 --- /dev/null +++ b/data/game/ts/ts-marketplace-chatham-main-line-scenario-pack-01-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "ts-marketplace-chatham-main-line-scenario-pack-01-add-on", + "name": "TS Marketplace: Chatham Main Line Scenario Pack 01 Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106137" + ], + "release_date": "2017-10-19", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Trains & Drivers" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/ts/ts-marketplace-chessie-systems-gp30-livery-add-on.json b/data/game/ts/ts-marketplace-chessie-systems-gp30-livery-add-on.json new file mode 100644 index 000000000000..7970a490b949 --- /dev/null +++ b/data/game/ts/ts-marketplace-chessie-systems-gp30-livery-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "ts-marketplace-chessie-systems-gp30-livery-add-on", + "name": "TS Marketplace: Chessie Systems GP30 Livery Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106122" + ], + "release_date": "2017-12-08", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Digital Train Model" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/ts/ts-marketplace-class-465-southeastern-livery-pack-add-on.json b/data/game/ts/ts-marketplace-class-465-southeastern-livery-pack-add-on.json new file mode 100644 index 000000000000..4b9c022d1439 --- /dev/null +++ b/data/game/ts/ts-marketplace-class-465-southeastern-livery-pack-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "ts-marketplace-class-465-southeastern-livery-pack-add-on", + "name": "TS Marketplace: Class 465 Southeastern Livery Pack Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106280" + ], + "release_date": "2016-10-26", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/ts/ts-marketplace-clinchfield-railroad-scenario-pack-01.json b/data/game/ts/ts-marketplace-clinchfield-railroad-scenario-pack-01.json new file mode 100644 index 000000000000..1289c0b8ad54 --- /dev/null +++ b/data/game/ts/ts-marketplace-clinchfield-railroad-scenario-pack-01.json @@ -0,0 +1,21 @@ +{ + "slug": "ts-marketplace-clinchfield-railroad-scenario-pack-01", + "name": "TS Marketplace: Clinchfield Railroad Scenario Pack 01", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105589" + ], + "release_date": "2020-07-01", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "High Iron Simulations" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/ts/ts-marketplace-collet-coaches-pack-02.json b/data/game/ts/ts-marketplace-collet-coaches-pack-02.json new file mode 100644 index 000000000000..3114803b062c --- /dev/null +++ b/data/game/ts/ts-marketplace-collet-coaches-pack-02.json @@ -0,0 +1,21 @@ +{ + "slug": "ts-marketplace-collet-coaches-pack-02", + "name": "TS Marketplace: Collet Coaches Pack 02", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106281" + ], + "release_date": "2016-07-19", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "MatrixTrains" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/ts/ts-marketplace-csx-hanover-subdivision-scenario-pack-01.json b/data/game/ts/ts-marketplace-csx-hanover-subdivision-scenario-pack-01.json new file mode 100644 index 000000000000..9143ad2dff67 --- /dev/null +++ b/data/game/ts/ts-marketplace-csx-hanover-subdivision-scenario-pack-01.json @@ -0,0 +1,21 @@ +{ + "slug": "ts-marketplace-csx-hanover-subdivision-scenario-pack-01", + "name": "TS Marketplace: CSX Hanover Subdivision Scenario Pack 01", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105607" + ], + "release_date": "2020-09-03", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "High Iron Simulations" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/ts/ts-marketplace-csx-scenario-pack-01.json b/data/game/ts/ts-marketplace-csx-scenario-pack-01.json new file mode 100644 index 000000000000..2431b9c277af --- /dev/null +++ b/data/game/ts/ts-marketplace-csx-scenario-pack-01.json @@ -0,0 +1,21 @@ +{ + "slug": "ts-marketplace-csx-scenario-pack-01", + "name": "TS Marketplace: CSX Scenario Pack 01", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105641" + ], + "release_date": "2021-02-12", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "High Iron Simulations" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/ts/ts-marketplace-csx-sd50-livery-add-on.json b/data/game/ts/ts-marketplace-csx-sd50-livery-add-on.json new file mode 100644 index 000000000000..c78f75a9a4b3 --- /dev/null +++ b/data/game/ts/ts-marketplace-csx-sd50-livery-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "ts-marketplace-csx-sd50-livery-add-on", + "name": "TS Marketplace: CSX SD50 Livery Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106290" + ], + "release_date": "2018-05-30", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "The Loco Shop" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/ts/ts-marketplace-db-sgns-container-wagon-pack.json b/data/game/ts/ts-marketplace-db-sgns-container-wagon-pack.json new file mode 100644 index 000000000000..8c783fe20590 --- /dev/null +++ b/data/game/ts/ts-marketplace-db-sgns-container-wagon-pack.json @@ -0,0 +1,21 @@ +{ + "slug": "ts-marketplace-db-sgns-container-wagon-pack", + "name": "TS Marketplace: DB Sgns Container Wagon Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106312" + ], + "release_date": "2016-11-11", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Skyhook Games Studio" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/ts/ts-marketplace-db-sgns-hopper-pack.json b/data/game/ts/ts-marketplace-db-sgns-hopper-pack.json new file mode 100644 index 000000000000..1bf3dc8ad577 --- /dev/null +++ b/data/game/ts/ts-marketplace-db-sgns-hopper-pack.json @@ -0,0 +1,21 @@ +{ + "slug": "ts-marketplace-db-sgns-hopper-pack", + "name": "TS Marketplace: DB Sgns Hopper Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106316" + ], + "release_date": "2016-11-02", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Skyhook Games Studio" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/ts/ts-marketplace-dd35-demonstrator-add-on.json b/data/game/ts/ts-marketplace-dd35-demonstrator-add-on.json new file mode 100644 index 000000000000..96ce01e4484d --- /dev/null +++ b/data/game/ts/ts-marketplace-dd35-demonstrator-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "ts-marketplace-dd35-demonstrator-add-on", + "name": "TS Marketplace: DD35 Demonstrator Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106355" + ], + "release_date": "2017-06-15", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Digital Train Model" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/ts/ts-marketplace-donner-pass-scenario-pack-01-add-on.json b/data/game/ts/ts-marketplace-donner-pass-scenario-pack-01-add-on.json new file mode 100644 index 000000000000..eb9081ebbf62 --- /dev/null +++ b/data/game/ts/ts-marketplace-donner-pass-scenario-pack-01-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "ts-marketplace-donner-pass-scenario-pack-01-add-on", + "name": "TS Marketplace: Donner Pass Scenario Pack 01 Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106291" + ], + "release_date": "2016-11-09", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "High Iron Simulations" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/ts/ts-marketplace-drg-br-86-grey-livery-pack-add-on.json b/data/game/ts/ts-marketplace-drg-br-86-grey-livery-pack-add-on.json new file mode 100644 index 000000000000..158b1e55746b --- /dev/null +++ b/data/game/ts/ts-marketplace-drg-br-86-grey-livery-pack-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "ts-marketplace-drg-br-86-grey-livery-pack-add-on", + "name": "TS Marketplace: DRG BR 86 Grey Livery Pack Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106319" + ], + "release_date": "2017-03-08", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Bossman Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/ts/ts-marketplace-ecml-peterborough-york-modern-scenario-pack-01.json b/data/game/ts/ts-marketplace-ecml-peterborough-york-modern-scenario-pack-01.json new file mode 100644 index 000000000000..a2b55c7692bb --- /dev/null +++ b/data/game/ts/ts-marketplace-ecml-peterborough-york-modern-scenario-pack-01.json @@ -0,0 +1,21 @@ +{ + "slug": "ts-marketplace-ecml-peterborough-york-modern-scenario-pack-01", + "name": "TS Marketplace: ECML Peterborough York Modern Scenario Pack 01", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105801" + ], + "release_date": "2019-08-07", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Seven Hills Simulations" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/ts/ts-marketplace-ews-class-58-add-on-livery.json b/data/game/ts/ts-marketplace-ews-class-58-add-on-livery.json new file mode 100644 index 000000000000..0bb528df14af --- /dev/null +++ b/data/game/ts/ts-marketplace-ews-class-58-add-on-livery.json @@ -0,0 +1,21 @@ +{ + "slug": "ts-marketplace-ews-class-58-add-on-livery", + "name": "TS Marketplace: EWS Class 58 Add-On Livery", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106285" + ], + "release_date": "2016-09-28", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Skyhook Games Studio" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/ts/ts-marketplace-fads-177-wagon-pack-add-on.json b/data/game/ts/ts-marketplace-fads-177-wagon-pack-add-on.json new file mode 100644 index 000000000000..3be7f4e51421 --- /dev/null +++ b/data/game/ts/ts-marketplace-fads-177-wagon-pack-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "ts-marketplace-fads-177-wagon-pack-add-on", + "name": "TS Marketplace: Fads 177 Wagon Pack Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106323" + ], + "release_date": "2017-04-28", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "virtualRailroads" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/ts/ts-marketplace-falns-121-wagon-pack-add-on.json b/data/game/ts/ts-marketplace-falns-121-wagon-pack-add-on.json new file mode 100644 index 000000000000..027b5cafd574 --- /dev/null +++ b/data/game/ts/ts-marketplace-falns-121-wagon-pack-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "ts-marketplace-falns-121-wagon-pack-add-on", + "name": "TS Marketplace: Falns 121 Wagon Pack Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106325" + ], + "release_date": "2017-02-15", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "virtualRailroads" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/ts/ts-marketplace-feather-river-canyon-scenario-pack-01.json b/data/game/ts/ts-marketplace-feather-river-canyon-scenario-pack-01.json new file mode 100644 index 000000000000..2b8b2f9b6c3f --- /dev/null +++ b/data/game/ts/ts-marketplace-feather-river-canyon-scenario-pack-01.json @@ -0,0 +1,21 @@ +{ + "slug": "ts-marketplace-feather-river-canyon-scenario-pack-01", + "name": "TS Marketplace: Feather River Canyon Scenario Pack 01", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106224" + ], + "release_date": "2016-07-07", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "High Iron Simulations" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/ts/ts-marketplace-feather-river-canyon-scenario-pack-02.json b/data/game/ts/ts-marketplace-feather-river-canyon-scenario-pack-02.json new file mode 100644 index 000000000000..a82af8b8a662 --- /dev/null +++ b/data/game/ts/ts-marketplace-feather-river-canyon-scenario-pack-02.json @@ -0,0 +1,21 @@ +{ + "slug": "ts-marketplace-feather-river-canyon-scenario-pack-02", + "name": "TS Marketplace: Feather River Canyon Scenario Pack 02", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106041" + ], + "release_date": "2018-05-09", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "High Iron Simulations" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/ts/ts-marketplace-gp40-2-mini-scenario-pack-01-add-on.json b/data/game/ts/ts-marketplace-gp40-2-mini-scenario-pack-01-add-on.json new file mode 100644 index 000000000000..26be3977c05f --- /dev/null +++ b/data/game/ts/ts-marketplace-gp40-2-mini-scenario-pack-01-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "ts-marketplace-gp40-2-mini-scenario-pack-01-add-on", + "name": "TS Marketplace: GP40-2 Mini Scenario Pack 01 Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106405" + ], + "release_date": "2018-10-03", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "High Iron Simulations" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/ts/ts-marketplace-gp40-2-mini-scenario-pack-02-add-on.json b/data/game/ts/ts-marketplace-gp40-2-mini-scenario-pack-02-add-on.json new file mode 100644 index 000000000000..bc3f29d28fbc --- /dev/null +++ b/data/game/ts/ts-marketplace-gp40-2-mini-scenario-pack-02-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "ts-marketplace-gp40-2-mini-scenario-pack-02-add-on", + "name": "TS Marketplace: GP40-2 Mini Scenario Pack 02 Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106424" + ], + "release_date": "2018-10-03", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "High Iron Simulations" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/ts/ts-marketplace-granger-heartland-scenario-pack-01.json b/data/game/ts/ts-marketplace-granger-heartland-scenario-pack-01.json new file mode 100644 index 000000000000..9c287014351f --- /dev/null +++ b/data/game/ts/ts-marketplace-granger-heartland-scenario-pack-01.json @@ -0,0 +1,21 @@ +{ + "slug": "ts-marketplace-granger-heartland-scenario-pack-01", + "name": "TS Marketplace: Granger Heartland Scenario Pack 01", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105846" + ], + "release_date": "2020-03-19", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "High Iron Simulations" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/ts/ts-marketplace-gresley-coach-pack-01.json b/data/game/ts/ts-marketplace-gresley-coach-pack-01.json new file mode 100644 index 000000000000..e4f5cda3d1cd --- /dev/null +++ b/data/game/ts/ts-marketplace-gresley-coach-pack-01.json @@ -0,0 +1,21 @@ +{ + "slug": "ts-marketplace-gresley-coach-pack-01", + "name": "TS Marketplace: Gresley Coach Pack 01", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106282" + ], + "release_date": "2016-08-19", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "MatrixTrains" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/ts/ts-marketplace-gresley-coach-pack-02.json b/data/game/ts/ts-marketplace-gresley-coach-pack-02.json new file mode 100644 index 000000000000..cad1b8cb1a71 --- /dev/null +++ b/data/game/ts/ts-marketplace-gresley-coach-pack-02.json @@ -0,0 +1,21 @@ +{ + "slug": "ts-marketplace-gresley-coach-pack-02", + "name": "TS Marketplace: Gresley Coach Pack 02", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106283" + ], + "release_date": "2016-08-19", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "MatrixTrains" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/ts/ts-marketplace-gresley-coach-pack-03.json b/data/game/ts/ts-marketplace-gresley-coach-pack-03.json new file mode 100644 index 000000000000..6e252bc0e27f --- /dev/null +++ b/data/game/ts/ts-marketplace-gresley-coach-pack-03.json @@ -0,0 +1,21 @@ +{ + "slug": "ts-marketplace-gresley-coach-pack-03", + "name": "TS Marketplace: Gresley Coach Pack 03", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106284" + ], + "release_date": "2016-08-19", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "MatrixTrains" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/ts/ts-marketplace-gresley-coach-pack-04-add-on.json b/data/game/ts/ts-marketplace-gresley-coach-pack-04-add-on.json new file mode 100644 index 000000000000..4405663f0423 --- /dev/null +++ b/data/game/ts/ts-marketplace-gresley-coach-pack-04-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "ts-marketplace-gresley-coach-pack-04-add-on", + "name": "TS Marketplace: Gresley Coach Pack 04 Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106313" + ], + "release_date": "2017-04-21", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "MatrixTrains" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/ts/ts-marketplace-gwr-churchward-panelled-toplights-pack-01-add-on.json b/data/game/ts/ts-marketplace-gwr-churchward-panelled-toplights-pack-01-add-on.json new file mode 100644 index 000000000000..43e539809340 --- /dev/null +++ b/data/game/ts/ts-marketplace-gwr-churchward-panelled-toplights-pack-01-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "ts-marketplace-gwr-churchward-panelled-toplights-pack-01-add-on", + "name": "TS Marketplace: GWR Churchward Panelled Toplights Pack 01 Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106358" + ], + "release_date": "2017-07-07", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "MatrixTrains" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/ts/ts-marketplace-gwr-churchward-panelled-toplights-pack-02-add-on.json b/data/game/ts/ts-marketplace-gwr-churchward-panelled-toplights-pack-02-add-on.json new file mode 100644 index 000000000000..87d2f0b8ed11 --- /dev/null +++ b/data/game/ts/ts-marketplace-gwr-churchward-panelled-toplights-pack-02-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "ts-marketplace-gwr-churchward-panelled-toplights-pack-02-add-on", + "name": "TS Marketplace: GWR Churchward Panelled Toplights Pack 02 Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106364" + ], + "release_date": "2017-07-07", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "MatrixTrains" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/ts/ts-marketplace-gwr-churchward-panelled-toplights-pack-03-add-on.json b/data/game/ts/ts-marketplace-gwr-churchward-panelled-toplights-pack-03-add-on.json new file mode 100644 index 000000000000..4f6f0c0342e6 --- /dev/null +++ b/data/game/ts/ts-marketplace-gwr-churchward-panelled-toplights-pack-03-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "ts-marketplace-gwr-churchward-panelled-toplights-pack-03-add-on", + "name": "TS Marketplace: GWR Churchward Panelled Toplights Pack 03 Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106382" + ], + "release_date": "2018-05-02", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "MatrixTrains" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/ts/ts-marketplace-gwr-churchward-panelled-toplights-pack-04-add-on.json b/data/game/ts/ts-marketplace-gwr-churchward-panelled-toplights-pack-04-add-on.json new file mode 100644 index 000000000000..363d30cb2dbd --- /dev/null +++ b/data/game/ts/ts-marketplace-gwr-churchward-panelled-toplights-pack-04-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "ts-marketplace-gwr-churchward-panelled-toplights-pack-04-add-on", + "name": "TS Marketplace: GWR Churchward Panelled Toplights Pack 04 Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106383" + ], + "release_date": "2018-05-02", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "MatrixTrains" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/ts/ts-marketplace-gwr-churchward-panelled-toplights-pack-05-add-on.json b/data/game/ts/ts-marketplace-gwr-churchward-panelled-toplights-pack-05-add-on.json new file mode 100644 index 000000000000..3931797d2301 --- /dev/null +++ b/data/game/ts/ts-marketplace-gwr-churchward-panelled-toplights-pack-05-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "ts-marketplace-gwr-churchward-panelled-toplights-pack-05-add-on", + "name": "TS Marketplace: GWR Churchward Panelled Toplights Pack 05 Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106384" + ], + "release_date": "2018-05-16", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "MatrixTrains" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/ts/ts-marketplace-gwr-churchward-panelled-toplights-pack-06-add-on.json b/data/game/ts/ts-marketplace-gwr-churchward-panelled-toplights-pack-06-add-on.json new file mode 100644 index 000000000000..b7171a9ed5c1 --- /dev/null +++ b/data/game/ts/ts-marketplace-gwr-churchward-panelled-toplights-pack-06-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "ts-marketplace-gwr-churchward-panelled-toplights-pack-06-add-on", + "name": "TS Marketplace: GWR Churchward Panelled Toplights Pack 06 Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106385" + ], + "release_date": "2018-05-16", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Matrix Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/ts/ts-marketplace-gwr-high-waist-collett-coaches-pack-01-add-on.json b/data/game/ts/ts-marketplace-gwr-high-waist-collett-coaches-pack-01-add-on.json new file mode 100644 index 000000000000..5f974f60e7e8 --- /dev/null +++ b/data/game/ts/ts-marketplace-gwr-high-waist-collett-coaches-pack-01-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "ts-marketplace-gwr-high-waist-collett-coaches-pack-01-add-on", + "name": "TS Marketplace: GWR High Waist Collett Coaches Pack 01 Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106320" + ], + "release_date": "2017-04-21", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "MatrixTrains" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/ts/ts-marketplace-gwr-high-waist-collett-coaches-pack-02-add-on.json b/data/game/ts/ts-marketplace-gwr-high-waist-collett-coaches-pack-02-add-on.json new file mode 100644 index 000000000000..df582d11123a --- /dev/null +++ b/data/game/ts/ts-marketplace-gwr-high-waist-collett-coaches-pack-02-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "ts-marketplace-gwr-high-waist-collett-coaches-pack-02-add-on", + "name": "TS Marketplace: GWR High Waist Collett Coaches Pack 02 Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106321" + ], + "release_date": "2017-04-21", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "MatrixTrains" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/ts/ts-marketplace-gwr-high-waist-collett-coaches-pack-03-add-on.json b/data/game/ts/ts-marketplace-gwr-high-waist-collett-coaches-pack-03-add-on.json new file mode 100644 index 000000000000..35daeb78de6c --- /dev/null +++ b/data/game/ts/ts-marketplace-gwr-high-waist-collett-coaches-pack-03-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "ts-marketplace-gwr-high-waist-collett-coaches-pack-03-add-on", + "name": "TS Marketplace: GWR High Waist Collett Coaches Pack 03 Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106322" + ], + "release_date": "2017-04-21", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "MatrixTrains" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/ts/ts-marketplace-gwr-large-prairies-lined-liveries-add-on.json b/data/game/ts/ts-marketplace-gwr-large-prairies-lined-liveries-add-on.json new file mode 100644 index 000000000000..824485744dbf --- /dev/null +++ b/data/game/ts/ts-marketplace-gwr-large-prairies-lined-liveries-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "ts-marketplace-gwr-large-prairies-lined-liveries-add-on", + "name": "TS Marketplace: GWR Large Prairies Lined Liveries Add-on", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106121" + ], + "release_date": "2017-11-22", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Victory Works" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/ts/ts-marketplace-gwr-toplight-coaches-pack-01.json b/data/game/ts/ts-marketplace-gwr-toplight-coaches-pack-01.json new file mode 100644 index 000000000000..f97acd1d75f1 --- /dev/null +++ b/data/game/ts/ts-marketplace-gwr-toplight-coaches-pack-01.json @@ -0,0 +1,21 @@ +{ + "slug": "ts-marketplace-gwr-toplight-coaches-pack-01", + "name": "TS Marketplace: GWR Toplight Coaches Pack 01", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106300" + ], + "release_date": "2016-11-30", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "MatrixTrains" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/ts/ts-marketplace-gwr-toplight-coaches-pack-02.json b/data/game/ts/ts-marketplace-gwr-toplight-coaches-pack-02.json new file mode 100644 index 000000000000..8ce2b64ce22b --- /dev/null +++ b/data/game/ts/ts-marketplace-gwr-toplight-coaches-pack-02.json @@ -0,0 +1,21 @@ +{ + "slug": "ts-marketplace-gwr-toplight-coaches-pack-02", + "name": "TS Marketplace: GWR Toplight Coaches Pack 02", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106301" + ], + "release_date": "2016-11-30", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "MatrixTrains" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/ts/ts-marketplace-hbillns-303-wagon-pack-add-on.json b/data/game/ts/ts-marketplace-hbillns-303-wagon-pack-add-on.json new file mode 100644 index 000000000000..a769835a2c1f --- /dev/null +++ b/data/game/ts/ts-marketplace-hbillns-303-wagon-pack-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "ts-marketplace-hbillns-303-wagon-pack-add-on", + "name": "TS Marketplace: Hbillns 303 Wagon Pack Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106338" + ], + "release_date": "2017-02-15", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "virtualRailroads" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/ts/ts-marketplace-horseshoe-curve-scenario-pack-01-add-on.json b/data/game/ts/ts-marketplace-horseshoe-curve-scenario-pack-01-add-on.json new file mode 100644 index 000000000000..a6ab328d9acf --- /dev/null +++ b/data/game/ts/ts-marketplace-horseshoe-curve-scenario-pack-01-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "ts-marketplace-horseshoe-curve-scenario-pack-01-add-on", + "name": "TS Marketplace: Horseshoe Curve Scenario Pack 01 Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106048" + ], + "release_date": "2018-02-21", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "High Iron Simulations" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/ts/ts-marketplace-hudson-line-scenario-pack-01.json b/data/game/ts/ts-marketplace-hudson-line-scenario-pack-01.json new file mode 100644 index 000000000000..ca0aad51f68a --- /dev/null +++ b/data/game/ts/ts-marketplace-hudson-line-scenario-pack-01.json @@ -0,0 +1,21 @@ +{ + "slug": "ts-marketplace-hudson-line-scenario-pack-01", + "name": "TS Marketplace: Hudson Line Scenario Pack 01", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105842" + ], + "release_date": "2019-06-19", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "High Iron Simulations" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/ts/ts-marketplace-hxd3d-electric-locomotive-add-on.json b/data/game/ts/ts-marketplace-hxd3d-electric-locomotive-add-on.json new file mode 100644 index 000000000000..cdcf7adcec38 --- /dev/null +++ b/data/game/ts/ts-marketplace-hxd3d-electric-locomotive-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "ts-marketplace-hxd3d-electric-locomotive-add-on", + "name": "TS Marketplace: HXD3D Electric Locomotive Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105715" + ], + "release_date": "2018-05-30", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Just Trains" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/ts/ts-marketplace-k-ln-koblenz-scenario-pack-01-add-on.json b/data/game/ts/ts-marketplace-k-ln-koblenz-scenario-pack-01-add-on.json new file mode 100644 index 000000000000..2145fc4b31ca --- /dev/null +++ b/data/game/ts/ts-marketplace-k-ln-koblenz-scenario-pack-01-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "ts-marketplace-k-ln-koblenz-scenario-pack-01-add-on", + "name": "TS Marketplace: Köln Koblenz Scenario Pack 01 Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106303" + ], + "release_date": "2017-04-13", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Skyhook Games Studio" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/ts/ts-marketplace-lms-p1-p2-br-crimson-cream-coach-pack-add-on.json b/data/game/ts/ts-marketplace-lms-p1-p2-br-crimson-cream-coach-pack-add-on.json new file mode 100644 index 000000000000..0e19020e4eb0 --- /dev/null +++ b/data/game/ts/ts-marketplace-lms-p1-p2-br-crimson-cream-coach-pack-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "ts-marketplace-lms-p1-p2-br-crimson-cream-coach-pack-add-on", + "name": "TS Marketplace: LMS P1&P2 BR Crimson & Cream Coach Pack Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106350" + ], + "release_date": "2017-05-24", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "MatrixTrains" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/ts/ts-marketplace-lms-p1-p2-br-maroon-coach-pack-add-on.json b/data/game/ts/ts-marketplace-lms-p1-p2-br-maroon-coach-pack-add-on.json new file mode 100644 index 000000000000..7bcf7fe548f4 --- /dev/null +++ b/data/game/ts/ts-marketplace-lms-p1-p2-br-maroon-coach-pack-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "ts-marketplace-lms-p1-p2-br-maroon-coach-pack-add-on", + "name": "TS Marketplace: LMS P1&P2 BR Maroon Coach Pack Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106351" + ], + "release_date": "2017-05-24", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "MatrixTrains" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/ts/ts-marketplace-lms-p1-p2-lms-early-coach-pack-add-on.json b/data/game/ts/ts-marketplace-lms-p1-p2-lms-early-coach-pack-add-on.json new file mode 100644 index 000000000000..ad86d2f0a7fd --- /dev/null +++ b/data/game/ts/ts-marketplace-lms-p1-p2-lms-early-coach-pack-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "ts-marketplace-lms-p1-p2-lms-early-coach-pack-add-on", + "name": "TS Marketplace: LMS P1&P2 LMS Early Coach Pack Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106349" + ], + "release_date": "2017-05-24", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "MatrixTrains" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/ts/ts-marketplace-lms-p1-p2-lms-late-coach-pack-add-on.json b/data/game/ts/ts-marketplace-lms-p1-p2-lms-late-coach-pack-add-on.json new file mode 100644 index 000000000000..fbf82ddaaf5d --- /dev/null +++ b/data/game/ts/ts-marketplace-lms-p1-p2-lms-late-coach-pack-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "ts-marketplace-lms-p1-p2-lms-late-coach-pack-add-on", + "name": "TS Marketplace: LMS P1&P2 LMS Late Coach Pack Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106353" + ], + "release_date": "2017-05-24", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "MatrixTrains" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/ts/ts-marketplace-lms-p3-coaches-pack-03-add-on.json b/data/game/ts/ts-marketplace-lms-p3-coaches-pack-03-add-on.json new file mode 100644 index 000000000000..1a54b7874ef5 --- /dev/null +++ b/data/game/ts/ts-marketplace-lms-p3-coaches-pack-03-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "ts-marketplace-lms-p3-coaches-pack-03-add-on", + "name": "TS Marketplace: LMS P3 Coaches Pack 03 Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106302" + ], + "release_date": "2016-12-07", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "MatrixTrains" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/ts/ts-marketplace-lms-p3-coaches-pack-04-add-on.json b/data/game/ts/ts-marketplace-lms-p3-coaches-pack-04-add-on.json new file mode 100644 index 000000000000..f619bfb3d5b0 --- /dev/null +++ b/data/game/ts/ts-marketplace-lms-p3-coaches-pack-04-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "ts-marketplace-lms-p3-coaches-pack-04-add-on", + "name": "TS Marketplace: LMS P3 Coaches Pack 04 Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106308" + ], + "release_date": "2016-12-07", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "MatrixTrains" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/ts/ts-marketplace-lms-period-1-non-corridor-coach-pack-br-crimson.json b/data/game/ts/ts-marketplace-lms-period-1-non-corridor-coach-pack-br-crimson.json new file mode 100644 index 000000000000..1d27495d2c27 --- /dev/null +++ b/data/game/ts/ts-marketplace-lms-period-1-non-corridor-coach-pack-br-crimson.json @@ -0,0 +1,21 @@ +{ + "slug": "ts-marketplace-lms-period-1-non-corridor-coach-pack-br-crimson", + "name": "TS Marketplace: LMS Period 1 Non-Corridor Coach Pack BR Crimson", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106399" + ], + "release_date": "2019-05-22", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "MatrixTrains" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/ts/ts-marketplace-lms-period-1-non-corridor-coach-pack-br-maroon.json b/data/game/ts/ts-marketplace-lms-period-1-non-corridor-coach-pack-br-maroon.json new file mode 100644 index 000000000000..b874b948729f --- /dev/null +++ b/data/game/ts/ts-marketplace-lms-period-1-non-corridor-coach-pack-br-maroon.json @@ -0,0 +1,21 @@ +{ + "slug": "ts-marketplace-lms-period-1-non-corridor-coach-pack-br-maroon", + "name": "TS Marketplace: LMS Period 1 Non-Corridor Coach Pack BR Maroon", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106400" + ], + "release_date": "2019-05-22", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "MatrixTrains" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/ts/ts-marketplace-lms-period-1-non-corridor-coach-pack-early-add-on.json b/data/game/ts/ts-marketplace-lms-period-1-non-corridor-coach-pack-early-add-on.json new file mode 100644 index 000000000000..ba4ac7abbe88 --- /dev/null +++ b/data/game/ts/ts-marketplace-lms-period-1-non-corridor-coach-pack-early-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "ts-marketplace-lms-period-1-non-corridor-coach-pack-early-add-on", + "name": "TS Marketplace: LMS Period 1 Non-Corridor Coach Pack Early Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106402" + ], + "release_date": "2019-04-10", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "MatrixTrains" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/ts/ts-marketplace-lms-period-1-non-corridor-coach-pack-late-add-on.json b/data/game/ts/ts-marketplace-lms-period-1-non-corridor-coach-pack-late-add-on.json new file mode 100644 index 000000000000..389928068daa --- /dev/null +++ b/data/game/ts/ts-marketplace-lms-period-1-non-corridor-coach-pack-late-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "ts-marketplace-lms-period-1-non-corridor-coach-pack-late-add-on", + "name": "TS Marketplace: LMS Period 1 Non-Corridor Coach Pack Late Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106403" + ], + "release_date": "2019-04-10", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "MatrixTrains" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/ts/ts-marketplace-london-brighton-reigate-expansion-add-on.json b/data/game/ts/ts-marketplace-london-brighton-reigate-expansion-add-on.json new file mode 100644 index 000000000000..8f89f0827d7d --- /dev/null +++ b/data/game/ts/ts-marketplace-london-brighton-reigate-expansion-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "ts-marketplace-london-brighton-reigate-expansion-add-on", + "name": "TS Marketplace: London - Brighton Reigate Expansion Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105472" + ], + "release_date": "2021-07-15", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Rivet Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/ts/ts-marketplace-maunsell-59ft-low-window-corridor-coach-pack-br-green.json b/data/game/ts/ts-marketplace-maunsell-59ft-low-window-corridor-coach-pack-br-green.json new file mode 100644 index 000000000000..213d1a91f528 --- /dev/null +++ b/data/game/ts/ts-marketplace-maunsell-59ft-low-window-corridor-coach-pack-br-green.json @@ -0,0 +1,21 @@ +{ + "slug": "ts-marketplace-maunsell-59ft-low-window-corridor-coach-pack-br-green", + "name": "TS Marketplace: Maunsell 59ft Low Window Corridor Coach Pack BR Green", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106375" + ], + "release_date": "2018-04-12", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "MatrixTrains" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/ts/ts-marketplace-maunsell-59ft-low-window-corridor-coach-pack-crimson-cream.json b/data/game/ts/ts-marketplace-maunsell-59ft-low-window-corridor-coach-pack-crimson-cream.json new file mode 100644 index 000000000000..ba2ab102f5de --- /dev/null +++ b/data/game/ts/ts-marketplace-maunsell-59ft-low-window-corridor-coach-pack-crimson-cream.json @@ -0,0 +1,21 @@ +{ + "slug": "ts-marketplace-maunsell-59ft-low-window-corridor-coach-pack-crimson-cream", + "name": "TS Marketplace: Maunsell 59ft Low Window Corridor Coach Pack Crimson Cream", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106377" + ], + "release_date": "2018-04-12", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "MatrixTrains" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/ts/ts-marketplace-maunsell-59ft-low-window-corridor-coach-pack-southern-malachite-green.json b/data/game/ts/ts-marketplace-maunsell-59ft-low-window-corridor-coach-pack-southern-malachite-green.json new file mode 100644 index 000000000000..bc76f992a034 --- /dev/null +++ b/data/game/ts/ts-marketplace-maunsell-59ft-low-window-corridor-coach-pack-southern-malachite-green.json @@ -0,0 +1,21 @@ +{ + "slug": "ts-marketplace-maunsell-59ft-low-window-corridor-coach-pack-southern-malachite-green", + "name": "TS Marketplace: Maunsell 59ft Low Window Corridor Coach Pack Southern Malachite Green", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106378" + ], + "release_date": "2018-04-18", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "MatrixTrains" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/ts/ts-marketplace-maunsell-59ft-low-window-corridor-coach-pack-southern-olive-green.json b/data/game/ts/ts-marketplace-maunsell-59ft-low-window-corridor-coach-pack-southern-olive-green.json new file mode 100644 index 000000000000..8e5f2d669b98 --- /dev/null +++ b/data/game/ts/ts-marketplace-maunsell-59ft-low-window-corridor-coach-pack-southern-olive-green.json @@ -0,0 +1,21 @@ +{ + "slug": "ts-marketplace-maunsell-59ft-low-window-corridor-coach-pack-southern-olive-green", + "name": "TS Marketplace: Maunsell 59ft Low Window Corridor Coach Pack Southern Olive Green", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106379" + ], + "release_date": "2018-04-18", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "MatrixTrains" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/ts/ts-marketplace-metro-north-scenario-pack-01.json b/data/game/ts/ts-marketplace-metro-north-scenario-pack-01.json new file mode 100644 index 000000000000..eec6af1a60bd --- /dev/null +++ b/data/game/ts/ts-marketplace-metro-north-scenario-pack-01.json @@ -0,0 +1,21 @@ +{ + "slug": "ts-marketplace-metro-north-scenario-pack-01", + "name": "TS Marketplace: Metro-North Scenario Pack 01", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105840" + ], + "release_date": "2020-05-06", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "High Iron Simulations" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/ts/ts-marketplace-miami-west-palm-beach-scenario-pack-01-add-on.json b/data/game/ts/ts-marketplace-miami-west-palm-beach-scenario-pack-01-add-on.json new file mode 100644 index 000000000000..5de78a3291fd --- /dev/null +++ b/data/game/ts/ts-marketplace-miami-west-palm-beach-scenario-pack-01-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "ts-marketplace-miami-west-palm-beach-scenario-pack-01-add-on", + "name": "TS Marketplace: Miami – West Palm Beach Scenario Pack 01 Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106038" + ], + "release_date": "2017-07-07", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "High Iron Simulations" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/ts/ts-marketplace-mittenwaldbahn-scenario-pack-01-add-on.json b/data/game/ts/ts-marketplace-mittenwaldbahn-scenario-pack-01-add-on.json new file mode 100644 index 000000000000..b9a5acb91a52 --- /dev/null +++ b/data/game/ts/ts-marketplace-mittenwaldbahn-scenario-pack-01-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "ts-marketplace-mittenwaldbahn-scenario-pack-01-add-on", + "name": "TS Marketplace: Mittenwaldbahn Scenario Pack 01 Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106139" + ], + "release_date": "2018-01-10", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Skyhook Games Studio" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/ts/ts-marketplace-montana-hi-line-scenario-pack-01-add-on.json b/data/game/ts/ts-marketplace-montana-hi-line-scenario-pack-01-add-on.json new file mode 100644 index 000000000000..bb346dc35a2f --- /dev/null +++ b/data/game/ts/ts-marketplace-montana-hi-line-scenario-pack-01-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "ts-marketplace-montana-hi-line-scenario-pack-01-add-on", + "name": "TS Marketplace: Montana Hi-Line Scenario Pack 01 Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106279" + ], + "release_date": "2020-01-29", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "High Iron Simulations" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/ts/ts-marketplace-munich-augsburg-scenario-pack-01.json b/data/game/ts/ts-marketplace-munich-augsburg-scenario-pack-01.json new file mode 100644 index 000000000000..4ba33ca2478f --- /dev/null +++ b/data/game/ts/ts-marketplace-munich-augsburg-scenario-pack-01.json @@ -0,0 +1,21 @@ +{ + "slug": "ts-marketplace-munich-augsburg-scenario-pack-01", + "name": "TS Marketplace: Munich-Augsburg Scenario Pack 01", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106029" + ], + "release_date": "2018-04-25", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Trains & Drivers" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/ts/ts-marketplace-munich-to-garmisch-scenario-pack-01-add-on.json b/data/game/ts/ts-marketplace-munich-to-garmisch-scenario-pack-01-add-on.json new file mode 100644 index 000000000000..ec46b4b0eac8 --- /dev/null +++ b/data/game/ts/ts-marketplace-munich-to-garmisch-scenario-pack-01-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "ts-marketplace-munich-to-garmisch-scenario-pack-01-add-on", + "name": "TS Marketplace: Munich to Garmisch Scenario Pack 01 Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106304" + ], + "release_date": "2017-04-13", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Skyhook Games Studio" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/ts/ts-marketplace-ner-gnr-non-corridor-br-pack.json b/data/game/ts/ts-marketplace-ner-gnr-non-corridor-br-pack.json new file mode 100644 index 000000000000..50dcb247675a --- /dev/null +++ b/data/game/ts/ts-marketplace-ner-gnr-non-corridor-br-pack.json @@ -0,0 +1,21 @@ +{ + "slug": "ts-marketplace-ner-gnr-non-corridor-br-pack", + "name": "TS Marketplace: NER/GNR Non-Corridor BR Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106373" + ], + "release_date": "2018-01-24", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "MatrixTrains" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/ts/ts-marketplace-ner-gnr-non-corridor-lner-pack.json b/data/game/ts/ts-marketplace-ner-gnr-non-corridor-lner-pack.json new file mode 100644 index 000000000000..acd61c8b668b --- /dev/null +++ b/data/game/ts/ts-marketplace-ner-gnr-non-corridor-lner-pack.json @@ -0,0 +1,21 @@ +{ + "slug": "ts-marketplace-ner-gnr-non-corridor-lner-pack", + "name": "TS Marketplace: NER/GNR Non-Corridor LNER Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106374" + ], + "release_date": "2018-01-24", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "MatrixTrains" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/ts/ts-marketplace-network-southeast-br-class-313-livery-pack.json b/data/game/ts/ts-marketplace-network-southeast-br-class-313-livery-pack.json new file mode 100644 index 000000000000..6770d238e529 --- /dev/null +++ b/data/game/ts/ts-marketplace-network-southeast-br-class-313-livery-pack.json @@ -0,0 +1,21 @@ +{ + "slug": "ts-marketplace-network-southeast-br-class-313-livery-pack", + "name": "TS Marketplace: Network Southeast BR Class 313 Livery Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106318" + ], + "release_date": "2017-03-08", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Armstrong Powerhouse" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/ts/ts-marketplace-new-york-central-rf-16-livery-add-on.json b/data/game/ts/ts-marketplace-new-york-central-rf-16-livery-add-on.json new file mode 100644 index 000000000000..1cf134991a0b --- /dev/null +++ b/data/game/ts/ts-marketplace-new-york-central-rf-16-livery-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "ts-marketplace-new-york-central-rf-16-livery-add-on", + "name": "TS Marketplace: New York Central RF-16 Livery Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106380" + ], + "release_date": "2018-09-05", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "The Loco Shop" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/ts/ts-marketplace-new-york-new-haven-scenario-pack-01-add-on.json b/data/game/ts/ts-marketplace-new-york-new-haven-scenario-pack-01-add-on.json new file mode 100644 index 000000000000..16394dccf86e --- /dev/null +++ b/data/game/ts/ts-marketplace-new-york-new-haven-scenario-pack-01-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "ts-marketplace-new-york-new-haven-scenario-pack-01-add-on", + "name": "TS Marketplace: New York – New Haven Scenario Pack 01 Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106222" + ], + "release_date": "2016-09-28", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "High Iron Simulations" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/ts/ts-marketplace-new-york-new-haven-scenario-pack-02-add-on.json b/data/game/ts/ts-marketplace-new-york-new-haven-scenario-pack-02-add-on.json new file mode 100644 index 000000000000..cf6b254c4286 --- /dev/null +++ b/data/game/ts/ts-marketplace-new-york-new-haven-scenario-pack-02-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "ts-marketplace-new-york-new-haven-scenario-pack-02-add-on", + "name": "TS Marketplace: New York – New Haven Scenario Pack 02 Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106306" + ], + "release_date": "2017-05-11", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "High Iron Simulations" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/ts/ts-marketplace-norfolk-southern-coal-district-scenario-pack-01-add-on.json b/data/game/ts/ts-marketplace-norfolk-southern-coal-district-scenario-pack-01-add-on.json new file mode 100644 index 000000000000..689bf5b96934 --- /dev/null +++ b/data/game/ts/ts-marketplace-norfolk-southern-coal-district-scenario-pack-01-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "ts-marketplace-norfolk-southern-coal-district-scenario-pack-01-add-on", + "name": "TS Marketplace: Norfolk Southern Coal District Scenario Pack 01 Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106404" + ], + "release_date": "2018-09-13", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "High Iron Simulations" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/ts/ts-marketplace-norfolk-southern-n-line-scenario-pack-01.json b/data/game/ts/ts-marketplace-norfolk-southern-n-line-scenario-pack-01.json new file mode 100644 index 000000000000..740c316e8b9b --- /dev/null +++ b/data/game/ts/ts-marketplace-norfolk-southern-n-line-scenario-pack-01.json @@ -0,0 +1,21 @@ +{ + "slug": "ts-marketplace-norfolk-southern-n-line-scenario-pack-01", + "name": "TS Marketplace: Norfolk Southern N-Line Scenario Pack 01", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105946" + ], + "release_date": "2019-10-16", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "High Iron Simulations" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/ts/ts-marketplace-norfolk-southern-sd60e-livery-pack-01.json b/data/game/ts/ts-marketplace-norfolk-southern-sd60e-livery-pack-01.json new file mode 100644 index 000000000000..60bbdb2dfa81 --- /dev/null +++ b/data/game/ts/ts-marketplace-norfolk-southern-sd60e-livery-pack-01.json @@ -0,0 +1,21 @@ +{ + "slug": "ts-marketplace-norfolk-southern-sd60e-livery-pack-01", + "name": "TS Marketplace: Norfolk Southern SD60E Livery Pack 01", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106229" + ], + "release_date": "2020-02-26", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "The Loco Shop" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/ts/ts-marketplace-north-jersey-coast-line-scenario-pack-01-add-on.json b/data/game/ts/ts-marketplace-north-jersey-coast-line-scenario-pack-01-add-on.json new file mode 100644 index 000000000000..9f92188e97e2 --- /dev/null +++ b/data/game/ts/ts-marketplace-north-jersey-coast-line-scenario-pack-01-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "ts-marketplace-north-jersey-coast-line-scenario-pack-01-add-on", + "name": "TS Marketplace: North Jersey Coast Line Scenario Pack 01 Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106223" + ], + "release_date": "2016-07-28", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "High Iron Simulations" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/ts/ts-marketplace-north-jersey-coast-morristown-lines-scenario-pack-01-add-on.json b/data/game/ts/ts-marketplace-north-jersey-coast-morristown-lines-scenario-pack-01-add-on.json new file mode 100644 index 000000000000..6b858288b8b6 --- /dev/null +++ b/data/game/ts/ts-marketplace-north-jersey-coast-morristown-lines-scenario-pack-01-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "ts-marketplace-north-jersey-coast-morristown-lines-scenario-pack-01-add-on", + "name": "TS Marketplace: North Jersey Coast & Morristown Lines Scenario Pack 01 Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106362" + ], + "release_date": "2017-09-06", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "High Iron Simulations" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/ts/ts-marketplace-northeast-corridor-scenario-pack-01-add-on.json b/data/game/ts/ts-marketplace-northeast-corridor-scenario-pack-01-add-on.json new file mode 100644 index 000000000000..3e15940705b4 --- /dev/null +++ b/data/game/ts/ts-marketplace-northeast-corridor-scenario-pack-01-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "ts-marketplace-northeast-corridor-scenario-pack-01-add-on", + "name": "TS Marketplace: Northeast Corridor Scenario Pack 01 Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106442" + ], + "release_date": "2019-07-17", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "High Iron Simulations" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/ts/ts-marketplace-ootz-42-wagon-pack-add-on.json b/data/game/ts/ts-marketplace-ootz-42-wagon-pack-add-on.json new file mode 100644 index 000000000000..c6149849f745 --- /dev/null +++ b/data/game/ts/ts-marketplace-ootz-42-wagon-pack-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "ts-marketplace-ootz-42-wagon-pack-add-on", + "name": "TS Marketplace: Ootz 42 Wagon Pack Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106339" + ], + "release_date": "2017-04-28", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "virtualRailroads" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/ts/ts-marketplace-peninsula-corridor-san-francisco-gilroy-scenario-mini-pack-01-add-on.json b/data/game/ts/ts-marketplace-peninsula-corridor-san-francisco-gilroy-scenario-mini-pack-01-add-on.json new file mode 100644 index 000000000000..d80dd76b72c0 --- /dev/null +++ b/data/game/ts/ts-marketplace-peninsula-corridor-san-francisco-gilroy-scenario-mini-pack-01-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "ts-marketplace-peninsula-corridor-san-francisco-gilroy-scenario-mini-pack-01-add-on", + "name": "TS Marketplace: Peninsula Corridor: San Francisco - Gilroy Scenario Mini-Pack 01 Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106065" + ], + "release_date": "2018-07-27", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "High Iron Simulations" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/ts/ts-marketplace-peninsula-corridor-san-francisco-gilroy-scenario-mini-pack-02-add-on.json b/data/game/ts/ts-marketplace-peninsula-corridor-san-francisco-gilroy-scenario-mini-pack-02-add-on.json new file mode 100644 index 000000000000..029bb438d166 --- /dev/null +++ b/data/game/ts/ts-marketplace-peninsula-corridor-san-francisco-gilroy-scenario-mini-pack-02-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "ts-marketplace-peninsula-corridor-san-francisco-gilroy-scenario-mini-pack-02-add-on", + "name": "TS Marketplace: Peninsula Corridor: San Francisco - Gilroy Scenario Mini-Pack 02 Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106066" + ], + "release_date": "2018-07-27", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "High Iron Simulations" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/ts/ts-marketplace-prr-x23-boxcar-wagon-pack-add-on.json b/data/game/ts/ts-marketplace-prr-x23-boxcar-wagon-pack-add-on.json new file mode 100644 index 000000000000..7fe98be385cc --- /dev/null +++ b/data/game/ts/ts-marketplace-prr-x23-boxcar-wagon-pack-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "ts-marketplace-prr-x23-boxcar-wagon-pack-add-on", + "name": "TS Marketplace: PRR X23 Boxcar Wagon Pack Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106381" + ], + "release_date": "2018-06-13", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Trains & Drivers" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/ts/ts-marketplace-sahimms-901-wagon-pack-add-on.json b/data/game/ts/ts-marketplace-sahimms-901-wagon-pack-add-on.json new file mode 100644 index 000000000000..e679791f3f4b --- /dev/null +++ b/data/game/ts/ts-marketplace-sahimms-901-wagon-pack-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "ts-marketplace-sahimms-901-wagon-pack-add-on", + "name": "TS Marketplace: Sahimms 901 Wagon Pack Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106340" + ], + "release_date": "2017-02-15", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "virtualRailroads" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/ts/ts-marketplace-seaboard-sd50-livery-pack.json b/data/game/ts/ts-marketplace-seaboard-sd50-livery-pack.json new file mode 100644 index 000000000000..9192bdf10ede --- /dev/null +++ b/data/game/ts/ts-marketplace-seaboard-sd50-livery-pack.json @@ -0,0 +1,21 @@ +{ + "slug": "ts-marketplace-seaboard-sd50-livery-pack", + "name": "TS Marketplace: Seaboard SD50 Livery Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105836" + ], + "release_date": "2020-05-20", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "The Loco Shop" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/ts/ts-marketplace-seacow-wagon-pack-add-on.json b/data/game/ts/ts-marketplace-seacow-wagon-pack-add-on.json new file mode 100644 index 000000000000..c9f2ae0e3c9b --- /dev/null +++ b/data/game/ts/ts-marketplace-seacow-wagon-pack-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "ts-marketplace-seacow-wagon-pack-add-on", + "name": "TS Marketplace: Seacow Wagon Pack Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106443" + ], + "release_date": "2017-02-10", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Just Trains" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/ts/ts-marketplace-secr-60ft-birdcage-br-crimson-add-on.json b/data/game/ts/ts-marketplace-secr-60ft-birdcage-br-crimson-add-on.json new file mode 100644 index 000000000000..310159959d8c --- /dev/null +++ b/data/game/ts/ts-marketplace-secr-60ft-birdcage-br-crimson-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "ts-marketplace-secr-60ft-birdcage-br-crimson-add-on", + "name": "TS Marketplace: SECR 60FT Birdcage BR Crimson Add-on", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106367" + ], + "release_date": "2017-09-22", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "MatrixTrains" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/ts/ts-marketplace-secr-60ft-birdcage-secr-crimson-lake-add-on.json b/data/game/ts/ts-marketplace-secr-60ft-birdcage-secr-crimson-lake-add-on.json new file mode 100644 index 000000000000..2268f54583e0 --- /dev/null +++ b/data/game/ts/ts-marketplace-secr-60ft-birdcage-secr-crimson-lake-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "ts-marketplace-secr-60ft-birdcage-secr-crimson-lake-add-on", + "name": "TS Marketplace: SECR 60FT Birdcage SECR Crimson Lake Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106369" + ], + "release_date": "2017-09-22", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "MatrixTrains" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/ts/ts-marketplace-secr-60ft-birdcage-sr-green-add-on.json b/data/game/ts/ts-marketplace-secr-60ft-birdcage-sr-green-add-on.json new file mode 100644 index 000000000000..5a743efb48fe --- /dev/null +++ b/data/game/ts/ts-marketplace-secr-60ft-birdcage-sr-green-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "ts-marketplace-secr-60ft-birdcage-sr-green-add-on", + "name": "TS Marketplace: SECR 60FT Birdcage SR Green Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106371" + ], + "release_date": "2017-09-22", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "MatrixTrains" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/ts/ts-marketplace-sherman-hill-scenario-pack-01-add-on.json b/data/game/ts/ts-marketplace-sherman-hill-scenario-pack-01-add-on.json new file mode 100644 index 000000000000..9c43253bdd86 --- /dev/null +++ b/data/game/ts/ts-marketplace-sherman-hill-scenario-pack-01-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "ts-marketplace-sherman-hill-scenario-pack-01-add-on", + "name": "TS Marketplace: Sherman Hill Scenario Pack 01 Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106445" + ], + "release_date": "2017-01-31", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "High Iron Simulations" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/ts/ts-marketplace-soldier-summit-salt-lake-city-scenario-pack-01-add-on.json b/data/game/ts/ts-marketplace-soldier-summit-salt-lake-city-scenario-pack-01-add-on.json new file mode 100644 index 000000000000..7d906a842f98 --- /dev/null +++ b/data/game/ts/ts-marketplace-soldier-summit-salt-lake-city-scenario-pack-01-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "ts-marketplace-soldier-summit-salt-lake-city-scenario-pack-01-add-on", + "name": "TS Marketplace: Soldier Summit & Salt Lake City Scenario Pack 01 Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106447" + ], + "release_date": "2018-10-24", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "High Iron Simulations" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/ts/ts-marketplace-soldier-summit-salt-lake-city-scenario-pack-02-add-on.json b/data/game/ts/ts-marketplace-soldier-summit-salt-lake-city-scenario-pack-02-add-on.json new file mode 100644 index 000000000000..d4b7bbd5583e --- /dev/null +++ b/data/game/ts/ts-marketplace-soldier-summit-salt-lake-city-scenario-pack-02-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "ts-marketplace-soldier-summit-salt-lake-city-scenario-pack-02-add-on", + "name": "TS Marketplace: Soldier Summit & Salt Lake City Scenario Pack 02 Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106448" + ], + "release_date": "2018-12-05", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "High Iron Simulations" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/ts/ts-marketplace-soldier-summit-scenario-pack-01-add-on.json b/data/game/ts/ts-marketplace-soldier-summit-scenario-pack-01-add-on.json new file mode 100644 index 000000000000..2d044f9cc4d6 --- /dev/null +++ b/data/game/ts/ts-marketplace-soldier-summit-scenario-pack-01-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "ts-marketplace-soldier-summit-scenario-pack-01-add-on", + "name": "TS Marketplace: Soldier Summit Scenario Pack 01 Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106449" + ], + "release_date": "2017-11-08", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "High Iron Simulations" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/ts/ts-marketplace-south-london-network-scenario-pack-01.json b/data/game/ts/ts-marketplace-south-london-network-scenario-pack-01.json new file mode 100644 index 000000000000..fa80094e8c93 --- /dev/null +++ b/data/game/ts/ts-marketplace-south-london-network-scenario-pack-01.json @@ -0,0 +1,18 @@ +{ + "slug": "ts-marketplace-south-london-network-scenario-pack-01", + "name": "TS Marketplace: South London Network Scenario Pack 01", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105610" + ], + "release_date": "2021-01-14", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/ts/ts-marketplace-southern-pacific-cotton-belt-gp30-livery-add-on.json b/data/game/ts/ts-marketplace-southern-pacific-cotton-belt-gp30-livery-add-on.json new file mode 100644 index 000000000000..340e075125c6 --- /dev/null +++ b/data/game/ts/ts-marketplace-southern-pacific-cotton-belt-gp30-livery-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "ts-marketplace-southern-pacific-cotton-belt-gp30-livery-add-on", + "name": "TS Marketplace: Southern Pacific/Cotton Belt GP30 Livery Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106389" + ], + "release_date": "2018-12-05", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Digital Train Model" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/ts/ts-marketplace-springfield-line-scenario-pack-01.json b/data/game/ts/ts-marketplace-springfield-line-scenario-pack-01.json new file mode 100644 index 000000000000..6b3e999b204b --- /dev/null +++ b/data/game/ts/ts-marketplace-springfield-line-scenario-pack-01.json @@ -0,0 +1,21 @@ +{ + "slug": "ts-marketplace-springfield-line-scenario-pack-01", + "name": "TS Marketplace: Springfield Line Scenario Pack 01", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105954" + ], + "release_date": "2019-09-04", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "High Iron Simulations" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/ts/ts-marketplace-surselva-line-christmas-scenario-pack.json b/data/game/ts/ts-marketplace-surselva-line-christmas-scenario-pack.json new file mode 100644 index 000000000000..2a58f9419ffd --- /dev/null +++ b/data/game/ts/ts-marketplace-surselva-line-christmas-scenario-pack.json @@ -0,0 +1,21 @@ +{ + "slug": "ts-marketplace-surselva-line-christmas-scenario-pack", + "name": "TS Marketplace: Surselva Line Christmas Scenario Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105644" + ], + "release_date": "2019-12-18", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Rivet Games" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/ts/ts-marketplace-tagnoos-898-wagon-pack-add-on.json b/data/game/ts/ts-marketplace-tagnoos-898-wagon-pack-add-on.json new file mode 100644 index 000000000000..96598042dc6c --- /dev/null +++ b/data/game/ts/ts-marketplace-tagnoos-898-wagon-pack-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "ts-marketplace-tagnoos-898-wagon-pack-add-on", + "name": "TS Marketplace: Tagnoos 898 Wagon Pack Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106342" + ], + "release_date": "2017-04-28", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "virtualRailroads" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/ts/ts-marketplace-tamns-893-wagon-pack-add-on.json b/data/game/ts/ts-marketplace-tamns-893-wagon-pack-add-on.json new file mode 100644 index 000000000000..59366ff7a3c8 --- /dev/null +++ b/data/game/ts/ts-marketplace-tamns-893-wagon-pack-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "ts-marketplace-tamns-893-wagon-pack-add-on", + "name": "TS Marketplace: Tamns 893 Wagon Pack Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106343" + ], + "release_date": "2017-01-31", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "virtualRailroads" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/ts/ts-marketplace-tfl-rail-br-class-315-emu-livery-add-on.json b/data/game/ts/ts-marketplace-tfl-rail-br-class-315-emu-livery-add-on.json new file mode 100644 index 000000000000..524b63768593 --- /dev/null +++ b/data/game/ts/ts-marketplace-tfl-rail-br-class-315-emu-livery-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "ts-marketplace-tfl-rail-br-class-315-emu-livery-add-on", + "name": "TS Marketplace: TfL Rail BR Class 315 EMU Livery Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106391" + ], + "release_date": "2018-08-02", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Armstrong Powerhouse" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/ts/ts-marketplace-thompson-corridor-coaches-pack-03-add-on.json b/data/game/ts/ts-marketplace-thompson-corridor-coaches-pack-03-add-on.json new file mode 100644 index 000000000000..c74cf4397b89 --- /dev/null +++ b/data/game/ts/ts-marketplace-thompson-corridor-coaches-pack-03-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "ts-marketplace-thompson-corridor-coaches-pack-03-add-on", + "name": "TS Marketplace: Thompson Corridor Coaches Pack 03 Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106393" + ], + "release_date": "2018-08-29", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "MatrixTrains" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/ts/ts-marketplace-thompson-suburban-coaches-pack-01-add-on.json b/data/game/ts/ts-marketplace-thompson-suburban-coaches-pack-01-add-on.json new file mode 100644 index 000000000000..e690fe08f14f --- /dev/null +++ b/data/game/ts/ts-marketplace-thompson-suburban-coaches-pack-01-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "ts-marketplace-thompson-suburban-coaches-pack-01-add-on", + "name": "TS Marketplace: Thompson Suburban Coaches Pack 01 Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106298" + ], + "release_date": "2016-11-22", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "MatrixTrains" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/ts/ts-marketplace-thompson-suburban-coaches-pack-02-add-on.json b/data/game/ts/ts-marketplace-thompson-suburban-coaches-pack-02-add-on.json new file mode 100644 index 000000000000..f6b67db9a292 --- /dev/null +++ b/data/game/ts/ts-marketplace-thompson-suburban-coaches-pack-02-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "ts-marketplace-thompson-suburban-coaches-pack-02-add-on", + "name": "TS Marketplace: Thompson Suburban Coaches Pack 02 Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106299" + ], + "release_date": "2016-11-22", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "MatrixTrains" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/ts/ts-marketplace-three-country-corner-scenario-pack-01-add-on.json b/data/game/ts/ts-marketplace-three-country-corner-scenario-pack-01-add-on.json new file mode 100644 index 000000000000..c31e720c2b24 --- /dev/null +++ b/data/game/ts/ts-marketplace-three-country-corner-scenario-pack-01-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "ts-marketplace-three-country-corner-scenario-pack-01-add-on", + "name": "TS Marketplace: Three Country Corner Scenario Pack 01 Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106292" + ], + "release_date": "2016-12-07", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Skyhook Games Studio" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/ts/ts-marketplace-union-pacific-scenario-pack-01-add-on.json b/data/game/ts/ts-marketplace-union-pacific-scenario-pack-01-add-on.json new file mode 100644 index 000000000000..b0a5a5db2a0b --- /dev/null +++ b/data/game/ts/ts-marketplace-union-pacific-scenario-pack-01-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "ts-marketplace-union-pacific-scenario-pack-01-add-on", + "name": "TS Marketplace: Union Pacific Scenario Pack 01 Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106452" + ], + "release_date": "2019-02-13", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "High Iron Simulations" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/ts/ts-marketplace-union-pacific-scenario-pack-02-add-on.json b/data/game/ts/ts-marketplace-union-pacific-scenario-pack-02-add-on.json new file mode 100644 index 000000000000..cdd31aa69c14 --- /dev/null +++ b/data/game/ts/ts-marketplace-union-pacific-scenario-pack-02-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "ts-marketplace-union-pacific-scenario-pack-02-add-on", + "name": "TS Marketplace: Union Pacific Scenario Pack 02 Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106453" + ], + "release_date": "2019-04-17", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "High Iron Simulations" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/ts/ts-marketplace-vga-vka-wagon-pack-add-on.json b/data/game/ts/ts-marketplace-vga-vka-wagon-pack-add-on.json new file mode 100644 index 000000000000..ff7d40168c31 --- /dev/null +++ b/data/game/ts/ts-marketplace-vga-vka-wagon-pack-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "ts-marketplace-vga-vka-wagon-pack-add-on", + "name": "TS Marketplace: VGA/VKA Wagon Pack Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106454" + ], + "release_date": "2017-02-10", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Just Trains" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/ts/ts-marketplace-weardale-teesdale-scenario-pack-01.json b/data/game/ts/ts-marketplace-weardale-teesdale-scenario-pack-01.json new file mode 100644 index 000000000000..a6117dc2ab61 --- /dev/null +++ b/data/game/ts/ts-marketplace-weardale-teesdale-scenario-pack-01.json @@ -0,0 +1,18 @@ +{ + "slug": "ts-marketplace-weardale-teesdale-scenario-pack-01", + "name": "TS Marketplace: Weardale & Teesdale Scenario Pack 01", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105845" + ], + "release_date": "2020-03-25", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/ts/ts-marketplace-woodhead-electric-railway-in-blue-scenario-pack-01.json b/data/game/ts/ts-marketplace-woodhead-electric-railway-in-blue-scenario-pack-01.json new file mode 100644 index 000000000000..0adc2cacdce8 --- /dev/null +++ b/data/game/ts/ts-marketplace-woodhead-electric-railway-in-blue-scenario-pack-01.json @@ -0,0 +1,21 @@ +{ + "slug": "ts-marketplace-woodhead-electric-railway-in-blue-scenario-pack-01", + "name": "TS Marketplace: Woodhead Electric Railway in Blue Scenario Pack 01", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106456" + ], + "release_date": "2019-06-05", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Seven Hills Simulations" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/ts/ts-marketplace-zacns-wagon-pack-01-add-on.json b/data/game/ts/ts-marketplace-zacns-wagon-pack-01-add-on.json new file mode 100644 index 000000000000..7c871675e200 --- /dev/null +++ b/data/game/ts/ts-marketplace-zacns-wagon-pack-01-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "ts-marketplace-zacns-wagon-pack-01-add-on", + "name": "TS Marketplace: Zacns Wagon Pack 01 Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106356" + ], + "release_date": "2017-06-08", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Skyhook Games Studio" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/ts/ts-marketplace-zacns-wagon-pack-02-add-on.json b/data/game/ts/ts-marketplace-zacns-wagon-pack-02-add-on.json new file mode 100644 index 000000000000..1cb6298a7e74 --- /dev/null +++ b/data/game/ts/ts-marketplace-zacns-wagon-pack-02-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "ts-marketplace-zacns-wagon-pack-02-add-on", + "name": "TS Marketplace: Zacns Wagon Pack 02 Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106357" + ], + "release_date": "2017-06-08", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Skyhook Games Studio" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/ts/ts-marketplace-zags-pack-01-add-on.json b/data/game/ts/ts-marketplace-zags-pack-01-add-on.json new file mode 100644 index 000000000000..08b6b7347ca4 --- /dev/null +++ b/data/game/ts/ts-marketplace-zags-pack-01-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "ts-marketplace-zags-pack-01-add-on", + "name": "TS Marketplace: Zags Pack 01 Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106347" + ], + "release_date": "2017-04-05", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Skyhook Games Studio" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/ts/ts-marketplace-zags-pack-02-add-on.json b/data/game/ts/ts-marketplace-zags-pack-02-add-on.json new file mode 100644 index 000000000000..a818f79a92cf --- /dev/null +++ b/data/game/ts/ts-marketplace-zags-pack-02-add-on.json @@ -0,0 +1,21 @@ +{ + "slug": "ts-marketplace-zags-pack-02-add-on", + "name": "TS Marketplace: Zags Pack 02 Add-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106348" + ], + "release_date": "2017-04-05", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Skyhook Games Studio" + ], + "publishers": [ + "Dovetail Games" + ] +} diff --git a/data/game/tu/tunche-arena.json b/data/game/tu/tunche-arena.json new file mode 100644 index 000000000000..5b56b1ab1005 --- /dev/null +++ b/data/game/tu/tunche-arena.json @@ -0,0 +1,12 @@ +{ + "slug": "tunche-arena", + "name": "Tunche: Arena", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q114945084" + ], + "release_date": "2019-01-18", + "platforms": [ + "Microsoft Windows" + ] +} diff --git a/data/game/tu/tuper-tario-tros.json b/data/game/tu/tuper-tario-tros.json new file mode 100644 index 000000000000..b9533a0736c4 --- /dev/null +++ b/data/game/tu/tuper-tario-tros.json @@ -0,0 +1,21 @@ +{ + "slug": "tuper-tario-tros", + "name": "Tuper Tario Tros.", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q15693851" + ], + "release_date": "2009-12-24", + "platforms": [ + "web browser" + ], + "genres": [ + "platformer" + ], + "developers": [ + "Swing Swing Submarine" + ], + "publishers": [ + "Newgrounds" + ] +} diff --git a/data/game/tu/turbo-1000.json b/data/game/tu/turbo-1000.json new file mode 100644 index 000000000000..d1ad9ac166be --- /dev/null +++ b/data/game/tu/turbo-1000.json @@ -0,0 +1,8 @@ +{ + "slug": "turbo-1000", + "name": "Turbo 1000", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11316578" + ] +} diff --git a/data/game/tu/turbo-trio.json b/data/game/tu/turbo-trio.json new file mode 100644 index 000000000000..39a520c9cdcb --- /dev/null +++ b/data/game/tu/turbo-trio.json @@ -0,0 +1,12 @@ +{ + "slug": "turbo-trio", + "name": "Turbo Trio", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125589387" + ], + "release_date": "2009-01-01", + "publishers": [ + "Oberon Media" + ] +} diff --git a/data/game/tu/turmoil-q123283103.json b/data/game/tu/turmoil-q123283103.json new file mode 100644 index 000000000000..9b0e25fa4f44 --- /dev/null +++ b/data/game/tu/turmoil-q123283103.json @@ -0,0 +1,13 @@ +{ + "slug": "turmoil-q123283103", + "name": "Turmoil+", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123283103" + ], + "release_date": "2023-12-05", + "platforms": [ + "iPadOS", + "iOS" + ] +} diff --git a/data/game/tu/turmoil-the-heat-is-on.json b/data/game/tu/turmoil-the-heat-is-on.json new file mode 100644 index 000000000000..c38543aa4de5 --- /dev/null +++ b/data/game/tu/turmoil-the-heat-is-on.json @@ -0,0 +1,13 @@ +{ + "slug": "turmoil-the-heat-is-on", + "name": "Turmoil - The Heat Is On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113525357" + ], + "release_date": "2018-03-21", + "platforms": [ + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/game/tu/turnabout-reclaimed.json b/data/game/tu/turnabout-reclaimed.json new file mode 100644 index 000000000000..7af2113b61c7 --- /dev/null +++ b/data/game/tu/turnabout-reclaimed.json @@ -0,0 +1,15 @@ +{ + "slug": "turnabout-reclaimed", + "name": "Turnabout Reclaimed", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18449504" + ], + "release_date": "2013-01-01", + "platforms": [ + "Nintendo 3DS" + ], + "genres": [ + "visual novel" + ] +} diff --git a/data/game/tu/tuxdash.json b/data/game/tu/tuxdash.json new file mode 100644 index 000000000000..9450e139049e --- /dev/null +++ b/data/game/tu/tuxdash.json @@ -0,0 +1,12 @@ +{ + "slug": "tuxdash", + "name": "tuxdash", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065334" + ], + "release_date": "2003-01-01", + "genres": [ + "puzzle video game" + ] +} diff --git a/data/game/tv/tv-sports-football-1989-nfl-season.json b/data/game/tv/tv-sports-football-1989-nfl-season.json new file mode 100644 index 000000000000..63bb50ea3c44 --- /dev/null +++ b/data/game/tv/tv-sports-football-1989-nfl-season.json @@ -0,0 +1,15 @@ +{ + "slug": "tv-sports-football-1989-nfl-season", + "name": "TV Sports: Football - 1989 NFL Season", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131406087" + ], + "release_date": "1990-01-01", + "genres": [ + "American football video game" + ], + "publishers": [ + "Freedom Productions" + ] +} diff --git a/data/game/tw/two-worlds-ii-call-of-the-tenebrae.json b/data/game/tw/two-worlds-ii-call-of-the-tenebrae.json new file mode 100644 index 000000000000..19e83e280ec0 --- /dev/null +++ b/data/game/tw/two-worlds-ii-call-of-the-tenebrae.json @@ -0,0 +1,12 @@ +{ + "slug": "two-worlds-ii-call-of-the-tenebrae", + "name": "Two Worlds II: Call of the Tenebrae", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q69522985" + ], + "genres": [ + "role-playing video game", + "action role-playing game" + ] +} diff --git a/data/game/tw/two-worlds-tainted-blood.json b/data/game/tw/two-worlds-tainted-blood.json new file mode 100644 index 000000000000..2ae67956d8c3 --- /dev/null +++ b/data/game/tw/two-worlds-tainted-blood.json @@ -0,0 +1,8 @@ +{ + "slug": "two-worlds-tainted-blood", + "name": "Two Worlds: Tainted Blood", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110156360" + ] +} diff --git a/data/game/tw/two-worlds-the-temptation.json b/data/game/tw/two-worlds-the-temptation.json new file mode 100644 index 000000000000..0c8897fc49fc --- /dev/null +++ b/data/game/tw/two-worlds-the-temptation.json @@ -0,0 +1,21 @@ +{ + "slug": "two-worlds-the-temptation", + "name": "Two Worlds: The Temptation", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110817157" + ], + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "role-playing video game" + ], + "developers": [ + "Reality Pump Studios" + ], + "publishers": [ + "Akella", + "Zuxxez Entertainment" + ] +} diff --git a/data/game/ty/tyrone-soulz-bitch-ass-pussy-mode.json b/data/game/ty/tyrone-soulz-bitch-ass-pussy-mode.json new file mode 100644 index 000000000000..27ae6aa28254 --- /dev/null +++ b/data/game/ty/tyrone-soulz-bitch-ass-pussy-mode.json @@ -0,0 +1,18 @@ +{ + "slug": "tyrone-soulz-bitch-ass-pussy-mode", + "name": "TYRONE SOULZ: Bitch Ass Pussy Mode", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124719228" + ], + "release_date": "2024-01-12", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "third-person shooter", + "soulslike", + "satirical video game", + "black comedy video game" + ] +} diff --git a/data/game/ty/tyrone-vs-cops-golden-blicky.json b/data/game/ty/tyrone-vs-cops-golden-blicky.json new file mode 100644 index 000000000000..46233deb53ad --- /dev/null +++ b/data/game/ty/tyrone-vs-cops-golden-blicky.json @@ -0,0 +1,18 @@ +{ + "slug": "tyrone-vs-cops-golden-blicky", + "name": "Tyrone vs Cops: Golden Blicky", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120174790" + ], + "release_date": "2022-02-12", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "action game", + "third-person shooter", + "satirical video game", + "black comedy video game" + ] +} diff --git a/data/game/ty/tyrquake.json b/data/game/ty/tyrquake.json new file mode 100644 index 000000000000..f20d1c270f76 --- /dev/null +++ b/data/game/ty/tyrquake.json @@ -0,0 +1,8 @@ +{ + "slug": "tyrquake", + "name": "TyrQuake", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121409813" + ] +} diff --git a/data/game/u-/u-play-online.json b/data/game/u-/u-play-online.json new file mode 100644 index 000000000000..bf51c5e5331f --- /dev/null +++ b/data/game/u-/u-play-online.json @@ -0,0 +1,8 @@ +{ + "slug": "u-play-online", + "name": "U-Play Online", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q24228237" + ] +} diff --git a/data/game/ue/uefa-euro-2012.json b/data/game/ue/uefa-euro-2012.json new file mode 100644 index 000000000000..8dd885439839 --- /dev/null +++ b/data/game/ue/uefa-euro-2012.json @@ -0,0 +1,23 @@ +{ + "slug": "uefa-euro-2012", + "name": "UEFA Euro 2012", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1066943" + ], + "release_date": "2012-04-24", + "platforms": [ + "PlayStation Portable", + "PlayStation 3", + "Microsoft Windows" + ], + "genres": [ + "association football video game" + ], + "developers": [ + "EA Vancouver" + ], + "publishers": [ + "EA Sports" + ] +} diff --git a/data/game/ue/uefa-euro-2016-pro-evolution-soccer-2016.json b/data/game/ue/uefa-euro-2016-pro-evolution-soccer-2016.json new file mode 100644 index 000000000000..0655e594187f --- /dev/null +++ b/data/game/ue/uefa-euro-2016-pro-evolution-soccer-2016.json @@ -0,0 +1,12 @@ +{ + "slug": "uefa-euro-2016-pro-evolution-soccer-2016", + "name": "UEFA EURO 2016 / Pro Evolution Soccer 2016", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q87410947" + ], + "release_date": "2016-04-21", + "genres": [ + "association football video game" + ] +} diff --git a/data/game/uf/ufo-50.json b/data/game/uf/ufo-50.json new file mode 100644 index 000000000000..2cb1ed4f4516 --- /dev/null +++ b/data/game/uf/ufo-50.json @@ -0,0 +1,18 @@ +{ + "slug": "ufo-50", + "name": "UFO 50", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116986156" + ], + "release_date": "2024-09-18", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Mossmouth" + ], + "publishers": [ + "Mossmouth" + ] +} diff --git a/data/game/uf/ufo-enemy-unknown-x-com-terror-from-the-deep.json b/data/game/uf/ufo-enemy-unknown-x-com-terror-from-the-deep.json new file mode 100644 index 000000000000..cec9676192d5 --- /dev/null +++ b/data/game/uf/ufo-enemy-unknown-x-com-terror-from-the-deep.json @@ -0,0 +1,8 @@ +{ + "slug": "ufo-enemy-unknown-x-com-terror-from-the-deep", + "name": "UFO: Enemy Unknown / X-COM: Terror from the Deep", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136437185" + ] +} diff --git a/data/game/ug/uganda-know-de-way-photo-album.json b/data/game/ug/uganda-know-de-way-photo-album.json new file mode 100644 index 000000000000..62442b27a44c --- /dev/null +++ b/data/game/ug/uganda-know-de-way-photo-album.json @@ -0,0 +1,22 @@ +{ + "slug": "uganda-know-de-way-photo-album", + "name": "Uganda know de way – Photo Album", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q129664847" + ], + "release_date": "2018-04-26", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "action-adventure game", + "casual game" + ], + "developers": [ + "Selo tech.corp." + ], + "publishers": [ + "Selo tech.corp." + ] +} diff --git a/data/game/uh/uh-1h-argo-campaign.json b/data/game/uh/uh-1h-argo-campaign.json new file mode 100644 index 000000000000..d9d04175a149 --- /dev/null +++ b/data/game/uh/uh-1h-argo-campaign.json @@ -0,0 +1,15 @@ +{ + "slug": "uh-1h-argo-campaign", + "name": "UH-1H: Argo Campaign", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097565" + ], + "release_date": "2017-10-20", + "platforms": [ + "Microsoft Windows" + ], + "publishers": [ + "Eagle Dynamics" + ] +} diff --git a/data/game/ul/ultima-collection.json b/data/game/ul/ultima-collection.json new file mode 100644 index 000000000000..84d60c0d652e --- /dev/null +++ b/data/game/ul/ultima-collection.json @@ -0,0 +1,8 @@ +{ + "slug": "ultima-collection", + "name": "Ultima Collection", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124877802" + ] +} diff --git a/data/game/ul/ultima-online-age-of-shadows.json b/data/game/ul/ultima-online-age-of-shadows.json new file mode 100644 index 000000000000..69bd445ac2bb --- /dev/null +++ b/data/game/ul/ultima-online-age-of-shadows.json @@ -0,0 +1,21 @@ +{ + "slug": "ultima-online-age-of-shadows", + "name": "Ultima Online: Age of Shadows", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3547990" + ], + "release_date": "2003-02-11", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "massively multiplayer online role-playing game" + ], + "developers": [ + "Origin Systems" + ], + "publishers": [ + "Electronic Arts" + ] +} diff --git a/data/game/ul/ultima-online-high-seas.json b/data/game/ul/ultima-online-high-seas.json new file mode 100644 index 000000000000..3ddd7189069a --- /dev/null +++ b/data/game/ul/ultima-online-high-seas.json @@ -0,0 +1,21 @@ +{ + "slug": "ultima-online-high-seas", + "name": "Ultima Online: High Seas", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2375763" + ], + "release_date": "2010-10-12", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "massively multiplayer online role-playing game" + ], + "developers": [ + "Electronic Arts" + ], + "publishers": [ + "Electronic Arts" + ] +} diff --git a/data/game/ul/ultima-online-lord-blackthorn-s-revenge.json b/data/game/ul/ultima-online-lord-blackthorn-s-revenge.json new file mode 100644 index 000000000000..c969c0ca9e17 --- /dev/null +++ b/data/game/ul/ultima-online-lord-blackthorn-s-revenge.json @@ -0,0 +1,21 @@ +{ + "slug": "ultima-online-lord-blackthorn-s-revenge", + "name": "Ultima Online: Lord Blackthorn's Revenge", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3547992" + ], + "release_date": "2002-02-24", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "massively multiplayer online role-playing game" + ], + "developers": [ + "Origin Systems" + ], + "publishers": [ + "Electronic Arts" + ] +} diff --git a/data/game/ul/ultima-online-mondain-s-legacy.json b/data/game/ul/ultima-online-mondain-s-legacy.json new file mode 100644 index 000000000000..7b69e228c875 --- /dev/null +++ b/data/game/ul/ultima-online-mondain-s-legacy.json @@ -0,0 +1,21 @@ +{ + "slug": "ultima-online-mondain-s-legacy", + "name": "Ultima Online: Mondain's Legacy", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3547991" + ], + "release_date": "2005-08-30", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "massively multiplayer online role-playing game" + ], + "developers": [ + "Electronic Arts" + ], + "publishers": [ + "Electronic Arts" + ] +} diff --git a/data/game/ul/ultima-online-renaissance.json b/data/game/ul/ultima-online-renaissance.json new file mode 100644 index 000000000000..9c0eb265dde4 --- /dev/null +++ b/data/game/ul/ultima-online-renaissance.json @@ -0,0 +1,21 @@ +{ + "slug": "ultima-online-renaissance", + "name": "Ultima Online: Renaissance", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3547993" + ], + "release_date": "2000-04-03", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "massively multiplayer online role-playing game" + ], + "developers": [ + "Origin Systems" + ], + "publishers": [ + "Electronic Arts" + ] +} diff --git a/data/game/ul/ultima-online-samurai-empire.json b/data/game/ul/ultima-online-samurai-empire.json new file mode 100644 index 000000000000..50cab0bc458f --- /dev/null +++ b/data/game/ul/ultima-online-samurai-empire.json @@ -0,0 +1,21 @@ +{ + "slug": "ultima-online-samurai-empire", + "name": "Ultima Online: Samurai Empire", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q929319" + ], + "release_date": "2004-11-02", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "massively multiplayer online role-playing game" + ], + "developers": [ + "Electronic Arts" + ], + "publishers": [ + "Electronic Arts" + ] +} diff --git a/data/game/ul/ultima-online-stygian-abyss.json b/data/game/ul/ultima-online-stygian-abyss.json new file mode 100644 index 000000000000..bcde1b29aaf7 --- /dev/null +++ b/data/game/ul/ultima-online-stygian-abyss.json @@ -0,0 +1,21 @@ +{ + "slug": "ultima-online-stygian-abyss", + "name": "Ultima Online: Stygian Abyss", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3548000" + ], + "release_date": "2009-09-08", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "massively multiplayer online role-playing game" + ], + "developers": [ + "Electronic Arts" + ], + "publishers": [ + "Electronic Arts" + ] +} diff --git a/data/game/ul/ultima-online-the-second-age.json b/data/game/ul/ultima-online-the-second-age.json new file mode 100644 index 000000000000..c91f4c62c8c2 --- /dev/null +++ b/data/game/ul/ultima-online-the-second-age.json @@ -0,0 +1,21 @@ +{ + "slug": "ultima-online-the-second-age", + "name": "Ultima Online: The Second Age", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3548001" + ], + "release_date": "1998-10-31", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "massively multiplayer online role-playing game" + ], + "developers": [ + "Origin Systems" + ], + "publishers": [ + "Electronic Arts" + ] +} diff --git a/data/game/ul/ultima-online-third-dawn.json b/data/game/ul/ultima-online-third-dawn.json new file mode 100644 index 000000000000..3e301ba270e2 --- /dev/null +++ b/data/game/ul/ultima-online-third-dawn.json @@ -0,0 +1,21 @@ +{ + "slug": "ultima-online-third-dawn", + "name": "Ultima Online: Third Dawn", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3547999" + ], + "release_date": "2001-03-26", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "massively multiplayer online role-playing game" + ], + "developers": [ + "Origin Systems" + ], + "publishers": [ + "Electronic Arts" + ] +} diff --git a/data/game/ul/ultimate-brain-games-q64427726.json b/data/game/ul/ultimate-brain-games-q64427726.json new file mode 100644 index 000000000000..fadbc9cccbf2 --- /dev/null +++ b/data/game/ul/ultimate-brain-games-q64427726.json @@ -0,0 +1,11 @@ +{ + "slug": "ultimate-brain-games-q64427726", + "name": "Ultimate Brain Games", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q64427726" + ], + "platforms": [ + "Atari Jaguar" + ] +} diff --git a/data/game/ul/ultimate-chicken-horse-4-pack.json b/data/game/ul/ultimate-chicken-horse-4-pack.json new file mode 100644 index 000000000000..75337ca4a0f1 --- /dev/null +++ b/data/game/ul/ultimate-chicken-horse-4-pack.json @@ -0,0 +1,8 @@ +{ + "slug": "ultimate-chicken-horse-4-pack", + "name": "Ultimate Chicken Horse 4 Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q78671516" + ] +} diff --git a/data/game/ul/ultimate-nes-remix.json b/data/game/ul/ultimate-nes-remix.json new file mode 100644 index 000000000000..ecf0974021ce --- /dev/null +++ b/data/game/ul/ultimate-nes-remix.json @@ -0,0 +1,12 @@ +{ + "slug": "ultimate-nes-remix", + "name": "Ultimate NES Remix", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q21086294" + ], + "release_date": "2014-01-01", + "platforms": [ + "Nintendo 3DS" + ] +} diff --git a/data/game/ul/ultimate-quiz-ii-the-movies-data-disk.json b/data/game/ul/ultimate-quiz-ii-the-movies-data-disk.json new file mode 100644 index 000000000000..1be431b0564e --- /dev/null +++ b/data/game/ul/ultimate-quiz-ii-the-movies-data-disk.json @@ -0,0 +1,8 @@ +{ + "slug": "ultimate-quiz-ii-the-movies-data-disk", + "name": "Ultimate Quiz II, The: Movies Data Disk", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126185470" + ] +} diff --git a/data/game/ul/ultimate-quiz-ii-the-pop-music-data-disk.json b/data/game/ul/ultimate-quiz-ii-the-pop-music-data-disk.json new file mode 100644 index 000000000000..de1fff9b0115 --- /dev/null +++ b/data/game/ul/ultimate-quiz-ii-the-pop-music-data-disk.json @@ -0,0 +1,8 @@ +{ + "slug": "ultimate-quiz-ii-the-pop-music-data-disk", + "name": "Ultimate Quiz II, The: Pop Music Data Disk", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126185933" + ] +} diff --git a/data/game/ul/ultimate-quiz-ii-the-pot-luck-data-disk-1.json b/data/game/ul/ultimate-quiz-ii-the-pot-luck-data-disk-1.json new file mode 100644 index 000000000000..443fc3c0df3f --- /dev/null +++ b/data/game/ul/ultimate-quiz-ii-the-pot-luck-data-disk-1.json @@ -0,0 +1,8 @@ +{ + "slug": "ultimate-quiz-ii-the-pot-luck-data-disk-1", + "name": "Ultimate Quiz II, The: Pot Luck Data Disk 1", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126185471" + ] +} diff --git a/data/game/ul/ultimate-quiz-ii-the-pot-luck-data-disk-2.json b/data/game/ul/ultimate-quiz-ii-the-pot-luck-data-disk-2.json new file mode 100644 index 000000000000..665a4ccbf573 --- /dev/null +++ b/data/game/ul/ultimate-quiz-ii-the-pot-luck-data-disk-2.json @@ -0,0 +1,8 @@ +{ + "slug": "ultimate-quiz-ii-the-pot-luck-data-disk-2", + "name": "Ultimate Quiz II, The: Pot Luck Data Disk 2", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126185472" + ] +} diff --git a/data/game/ul/ultimate-quiz-ii-the-sports-data-disk.json b/data/game/ul/ultimate-quiz-ii-the-sports-data-disk.json new file mode 100644 index 000000000000..cddb3d4a288e --- /dev/null +++ b/data/game/ul/ultimate-quiz-ii-the-sports-data-disk.json @@ -0,0 +1,8 @@ +{ + "slug": "ultimate-quiz-ii-the-sports-data-disk", + "name": "Ultimate Quiz II, The: Sports Data Disk", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126185473" + ] +} diff --git a/data/game/ul/ultimate-shooting-collection.json b/data/game/ul/ultimate-shooting-collection.json new file mode 100644 index 000000000000..7713cdac147f --- /dev/null +++ b/data/game/ul/ultimate-shooting-collection.json @@ -0,0 +1,21 @@ +{ + "slug": "ultimate-shooting-collection", + "name": "Ultimate Shooting Collection", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7880242" + ], + "release_date": "2008-04-10", + "platforms": [ + "Wii" + ], + "genres": [ + "shoot 'em up" + ], + "developers": [ + "Milestone" + ], + "publishers": [ + "Milestone" + ] +} diff --git a/data/game/ul/ultimate-wilds.json b/data/game/ul/ultimate-wilds.json new file mode 100644 index 000000000000..0f4d49155ede --- /dev/null +++ b/data/game/ul/ultimate-wilds.json @@ -0,0 +1,9 @@ +{ + "slug": "ultimate-wilds", + "name": "Ultimate Wilds", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112582110" + ], + "release_date": "2013-04-04" +} diff --git a/data/game/ul/ultrakill-prelude.json b/data/game/ul/ultrakill-prelude.json new file mode 100644 index 000000000000..755493690fec --- /dev/null +++ b/data/game/ul/ultrakill-prelude.json @@ -0,0 +1,12 @@ +{ + "slug": "ultrakill-prelude", + "name": "ULTRAKILL Prelude", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130723153" + ], + "release_date": "2019-08-30", + "platforms": [ + "Microsoft Windows" + ] +} diff --git a/data/game/um/umineko-no-naku-koro-ni-chiru-episode-5-end-of-the-golden-witch.json b/data/game/um/umineko-no-naku-koro-ni-chiru-episode-5-end-of-the-golden-witch.json new file mode 100644 index 000000000000..ba4b1b7e8cfc --- /dev/null +++ b/data/game/um/umineko-no-naku-koro-ni-chiru-episode-5-end-of-the-golden-witch.json @@ -0,0 +1,18 @@ +{ + "slug": "umineko-no-naku-koro-ni-chiru-episode-5-end-of-the-golden-witch", + "name": "Umineko no Naku Koro ni Chiru Episode 5: End of the Golden Witch", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11151334" + ], + "release_date": "2009-08-15", + "genres": [ + "sound novel" + ], + "developers": [ + "07th Expansion" + ], + "publishers": [ + "07th Expansion" + ] +} diff --git a/data/game/um/umineko-no-naku-koro-ni-chiru-episode-6-dawn-of-the-golden-witch.json b/data/game/um/umineko-no-naku-koro-ni-chiru-episode-6-dawn-of-the-golden-witch.json new file mode 100644 index 000000000000..14dcba9ed078 --- /dev/null +++ b/data/game/um/umineko-no-naku-koro-ni-chiru-episode-6-dawn-of-the-golden-witch.json @@ -0,0 +1,18 @@ +{ + "slug": "umineko-no-naku-koro-ni-chiru-episode-6-dawn-of-the-golden-witch", + "name": "Umineko no Naku Koro ni Chiru Episode 6: Dawn of the Golden Witch", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11151336" + ], + "release_date": "2009-12-31", + "genres": [ + "sound novel" + ], + "developers": [ + "07th Expansion" + ], + "publishers": [ + "07th Expansion" + ] +} diff --git a/data/game/um/umineko-no-naku-koro-ni-chiru-episode-7-requiem-of-the-golden-witch.json b/data/game/um/umineko-no-naku-koro-ni-chiru-episode-7-requiem-of-the-golden-witch.json new file mode 100644 index 000000000000..80603ac23ce7 --- /dev/null +++ b/data/game/um/umineko-no-naku-koro-ni-chiru-episode-7-requiem-of-the-golden-witch.json @@ -0,0 +1,18 @@ +{ + "slug": "umineko-no-naku-koro-ni-chiru-episode-7-requiem-of-the-golden-witch", + "name": "Umineko no Naku Koro ni Chiru Episode 7: Requiem of the Golden Witch", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11151340" + ], + "release_date": "2010-08-14", + "genres": [ + "sound novel" + ], + "developers": [ + "07th Expansion" + ], + "publishers": [ + "07th Expansion" + ] +} diff --git a/data/game/um/umineko-no-naku-koro-ni-chiru-episode-8-twilight-of-the-golden-witch.json b/data/game/um/umineko-no-naku-koro-ni-chiru-episode-8-twilight-of-the-golden-witch.json new file mode 100644 index 000000000000..d00d2b641458 --- /dev/null +++ b/data/game/um/umineko-no-naku-koro-ni-chiru-episode-8-twilight-of-the-golden-witch.json @@ -0,0 +1,18 @@ +{ + "slug": "umineko-no-naku-koro-ni-chiru-episode-8-twilight-of-the-golden-witch", + "name": "Umineko no Naku Koro ni Chiru Episode 8: Twilight of the Golden Witch", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11151341" + ], + "release_date": "2010-12-31", + "genres": [ + "sound novel" + ], + "developers": [ + "07th Expansion" + ], + "publishers": [ + "07th Expansion" + ] +} diff --git a/data/game/um/umineko-no-naku-koro-ni-chiru.json b/data/game/um/umineko-no-naku-koro-ni-chiru.json new file mode 100644 index 000000000000..51963d01cbfc --- /dev/null +++ b/data/game/um/umineko-no-naku-koro-ni-chiru.json @@ -0,0 +1,12 @@ +{ + "slug": "umineko-no-naku-koro-ni-chiru", + "name": "Umineko no Naku Koro ni Chiru", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11260738" + ], + "release_date": "2010-12-31", + "genres": [ + "sound novel" + ] +} diff --git a/data/game/um/umineko-no-naku-koro-ni-episode-1-legend-of-the-golden-witch.json b/data/game/um/umineko-no-naku-koro-ni-episode-1-legend-of-the-golden-witch.json new file mode 100644 index 000000000000..73c187133400 --- /dev/null +++ b/data/game/um/umineko-no-naku-koro-ni-episode-1-legend-of-the-golden-witch.json @@ -0,0 +1,18 @@ +{ + "slug": "umineko-no-naku-koro-ni-episode-1-legend-of-the-golden-witch", + "name": "Umineko no Naku Koro ni Episode 1: Legend of the Golden Witch", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11260736" + ], + "release_date": "2007-08-17", + "genres": [ + "sound novel" + ], + "developers": [ + "07th Expansion" + ], + "publishers": [ + "07th Expansion" + ] +} diff --git a/data/game/um/umineko-no-naku-koro-ni-episode-2-turn-of-the-golden-witch.json b/data/game/um/umineko-no-naku-koro-ni-episode-2-turn-of-the-golden-witch.json new file mode 100644 index 000000000000..74a7b9864e00 --- /dev/null +++ b/data/game/um/umineko-no-naku-koro-ni-episode-2-turn-of-the-golden-witch.json @@ -0,0 +1,18 @@ +{ + "slug": "umineko-no-naku-koro-ni-episode-2-turn-of-the-golden-witch", + "name": "Umineko no Naku Koro ni Episode 2: Turn of the Golden Witch", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11151135" + ], + "release_date": "2007-12-31", + "genres": [ + "sound novel" + ], + "developers": [ + "07th Expansion" + ], + "publishers": [ + "07th Expansion" + ] +} diff --git a/data/game/um/umineko-no-naku-koro-ni-episode-3-banquet-of-the-golden-witch.json b/data/game/um/umineko-no-naku-koro-ni-episode-3-banquet-of-the-golden-witch.json new file mode 100644 index 000000000000..f108d2d652c1 --- /dev/null +++ b/data/game/um/umineko-no-naku-koro-ni-episode-3-banquet-of-the-golden-witch.json @@ -0,0 +1,18 @@ +{ + "slug": "umineko-no-naku-koro-ni-episode-3-banquet-of-the-golden-witch", + "name": "Umineko no Naku Koro ni Episode 3: Banquet of the Golden Witch", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11151136" + ], + "release_date": "2008-08-16", + "genres": [ + "sound novel" + ], + "developers": [ + "07th Expansion" + ], + "publishers": [ + "07th Expansion" + ] +} diff --git a/data/game/um/umineko-no-naku-koro-ni-episode-4-alliance-of-the-golden-witch.json b/data/game/um/umineko-no-naku-koro-ni-episode-4-alliance-of-the-golden-witch.json new file mode 100644 index 000000000000..f8e44f3c6689 --- /dev/null +++ b/data/game/um/umineko-no-naku-koro-ni-episode-4-alliance-of-the-golden-witch.json @@ -0,0 +1,18 @@ +{ + "slug": "umineko-no-naku-koro-ni-episode-4-alliance-of-the-golden-witch", + "name": "Umineko no Naku Koro ni Episode 4: Alliance of the Golden Witch", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11151332" + ], + "release_date": "2008-12-29", + "genres": [ + "sound novel" + ], + "developers": [ + "07th Expansion" + ], + "publishers": [ + "07th Expansion" + ] +} diff --git a/data/game/um/umurangi-generation-special-edition.json b/data/game/um/umurangi-generation-special-edition.json new file mode 100644 index 000000000000..68b6a3e00adc --- /dev/null +++ b/data/game/um/umurangi-generation-special-edition.json @@ -0,0 +1,19 @@ +{ + "slug": "umurangi-generation-special-edition", + "name": "Umurangi Generation: Special Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112246310" + ], + "release_date": "2022-05-17", + "platforms": [ + "Xbox Series X and Series S", + "Microsoft Windows" + ], + "developers": [ + "Origame Digital" + ], + "publishers": [ + "Playism" + ] +} diff --git a/data/game/un/unbreakable-kimmy-schmidt-kimmy-vs-the-reverend.json b/data/game/un/unbreakable-kimmy-schmidt-kimmy-vs-the-reverend.json new file mode 100644 index 000000000000..9ff88e976a6b --- /dev/null +++ b/data/game/un/unbreakable-kimmy-schmidt-kimmy-vs-the-reverend.json @@ -0,0 +1,13 @@ +{ + "slug": "unbreakable-kimmy-schmidt-kimmy-vs-the-reverend", + "name": "Unbreakable Kimmy Schmidt: Kimmy vs. the Reverend", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q98708760" + ], + "release_date": "2020-05-12", + "genres": [ + "comedy film", + "interactive film" + ] +} diff --git a/data/game/un/uncharted-3-drake-s-deception-game-of-the-year-edition.json b/data/game/un/uncharted-3-drake-s-deception-game-of-the-year-edition.json new file mode 100644 index 000000000000..bfd257ed9db7 --- /dev/null +++ b/data/game/un/uncharted-3-drake-s-deception-game-of-the-year-edition.json @@ -0,0 +1,8 @@ +{ + "slug": "uncharted-3-drake-s-deception-game-of-the-year-edition", + "name": "Uncharted 3: Drake's Deception - Game of the Year Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107424329" + ] +} diff --git a/data/game/un/uncharted-legacy-of-thieves-collection.json b/data/game/un/uncharted-legacy-of-thieves-collection.json new file mode 100644 index 000000000000..20d6b084fa3d --- /dev/null +++ b/data/game/un/uncharted-legacy-of-thieves-collection.json @@ -0,0 +1,24 @@ +{ + "slug": "uncharted-legacy-of-thieves-collection", + "name": "Uncharted: Legacy of Thieves Collection", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108482649" + ], + "release_date": "2022-01-28", + "platforms": [ + "PlayStation 5", + "Microsoft Windows" + ], + "genres": [ + "action-adventure game" + ], + "developers": [ + "Iron Galaxy Studios", + "Naughty Dog" + ], + "publishers": [ + "Sony Interactive Entertainment", + "PlayStation PC LLC" + ] +} diff --git a/data/game/un/under-siege-q57974041.json b/data/game/un/under-siege-q57974041.json new file mode 100644 index 000000000000..c33e0ff24cb4 --- /dev/null +++ b/data/game/un/under-siege-q57974041.json @@ -0,0 +1,9 @@ +{ + "slug": "under-siege-q57974041", + "name": "Under Siege", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q57974041" + ], + "release_date": "2012-08-12" +} diff --git a/data/game/un/under-the-jolly-roger-complete-edition.json b/data/game/un/under-the-jolly-roger-complete-edition.json new file mode 100644 index 000000000000..7dd467dc561a --- /dev/null +++ b/data/game/un/under-the-jolly-roger-complete-edition.json @@ -0,0 +1,18 @@ +{ + "slug": "under-the-jolly-roger-complete-edition", + "name": "Under the Jolly Roger Complete Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112943212" + ], + "release_date": "2022-05-23", + "platforms": [ + "Xbox Series X and Series S" + ], + "developers": [ + "Lion's Shade" + ], + "publishers": [ + "HeroCraft" + ] +} diff --git a/data/game/un/unfinished-sarge-game-demo.json b/data/game/un/unfinished-sarge-game-demo.json new file mode 100644 index 000000000000..d3bd9b5e96b2 --- /dev/null +++ b/data/game/un/unfinished-sarge-game-demo.json @@ -0,0 +1,18 @@ +{ + "slug": "unfinished-sarge-game-demo", + "name": "Unfinished Sarge Game Demo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125506000" + ], + "release_date": "2019-05-15", + "platforms": [ + "web browser" + ], + "genres": [ + "platformer" + ], + "developers": [ + "Flipline Studios" + ] +} diff --git a/data/game/un/univers-1-la-compil-universelle.json b/data/game/un/univers-1-la-compil-universelle.json new file mode 100644 index 000000000000..51dfcfd8672a --- /dev/null +++ b/data/game/un/univers-1-la-compil-universelle.json @@ -0,0 +1,8 @@ +{ + "slug": "univers-1-la-compil-universelle", + "name": "Univers 1 - La Compil' Universelle", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126188266" + ] +} diff --git a/data/game/un/unlimited-saga-collector-s-edition.json b/data/game/un/unlimited-saga-collector-s-edition.json new file mode 100644 index 000000000000..e1116c8ad63a --- /dev/null +++ b/data/game/un/unlimited-saga-collector-s-edition.json @@ -0,0 +1,8 @@ +{ + "slug": "unlimited-saga-collector-s-edition", + "name": "Unlimited Saga: Collector's Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q101552182" + ] +} diff --git a/data/game/un/unlockable-downloadable-content.json b/data/game/un/unlockable-downloadable-content.json new file mode 100644 index 000000000000..17e3df75dd74 --- /dev/null +++ b/data/game/un/unlockable-downloadable-content.json @@ -0,0 +1,8 @@ +{ + "slug": "unlockable-downloadable-content", + "name": "unlockable downloadable content", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131405925" + ] +} diff --git a/data/game/un/unlockable-pack.json b/data/game/un/unlockable-pack.json new file mode 100644 index 000000000000..6f8a2650f654 --- /dev/null +++ b/data/game/un/unlockable-pack.json @@ -0,0 +1,12 @@ +{ + "slug": "unlockable-pack", + "name": "Unlockable Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60616769" + ], + "release_date": "2012-08-14", + "platforms": [ + "Microsoft Windows" + ] +} diff --git a/data/game/un/unnamed-half-life-alyx-sequel.json b/data/game/un/unnamed-half-life-alyx-sequel.json new file mode 100644 index 000000000000..529aedeb9ae6 --- /dev/null +++ b/data/game/un/unnamed-half-life-alyx-sequel.json @@ -0,0 +1,8 @@ +{ + "slug": "unnamed-half-life-alyx-sequel", + "name": "Unnamed Half-Life Alyx sequel", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111165120" + ] +} diff --git a/data/game/un/unreal-mission-pack-return-to-na-pali.json b/data/game/un/unreal-mission-pack-return-to-na-pali.json new file mode 100644 index 000000000000..60528d1c6b2f --- /dev/null +++ b/data/game/un/unreal-mission-pack-return-to-na-pali.json @@ -0,0 +1,21 @@ +{ + "slug": "unreal-mission-pack-return-to-na-pali", + "name": "Unreal Mission Pack: Return to Na Pali", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4052427" + ], + "release_date": "1999-05-31", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter" + ], + "developers": [ + "Legend Entertainment" + ], + "publishers": [ + "Atari, Inc." + ] +} diff --git a/data/game/un/unreal-tournament-game-of-the-year-edition.json b/data/game/un/unreal-tournament-game-of-the-year-edition.json new file mode 100644 index 000000000000..98fab1365bdf --- /dev/null +++ b/data/game/un/unreal-tournament-game-of-the-year-edition.json @@ -0,0 +1,9 @@ +{ + "slug": "unreal-tournament-game-of-the-year-edition", + "name": "Unreal Tournament: Game of the Year Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131934954" + ], + "release_date": "2000-01-01" +} diff --git a/data/game/un/unreal-tournament-q16796730.json b/data/game/un/unreal-tournament-q16796730.json new file mode 100644 index 000000000000..25bccbb21a05 --- /dev/null +++ b/data/game/un/unreal-tournament-q16796730.json @@ -0,0 +1,22 @@ +{ + "slug": "unreal-tournament-q16796730", + "name": "Unreal Tournament", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16796730" + ], + "platforms": [ + "Mac", + "macOS", + "Microsoft Windows" + ], + "genres": [ + "first-person shooter" + ], + "developers": [ + "Epic Games" + ], + "publishers": [ + "Epic Games" + ] +} diff --git a/data/game/un/unsolved-riddles.json b/data/game/un/unsolved-riddles.json new file mode 100644 index 000000000000..dc9782ca059d --- /dev/null +++ b/data/game/un/unsolved-riddles.json @@ -0,0 +1,18 @@ +{ + "slug": "unsolved-riddles", + "name": "Unsolved Riddles", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111805019" + ], + "release_date": "2022-04-15", + "platforms": [ + "Xbox Series X and Series S" + ], + "developers": [ + "Artifex Mundi" + ], + "publishers": [ + "Artifex Mundi" + ] +} diff --git a/data/game/un/untitled-black-panther-video-game.json b/data/game/un/untitled-black-panther-video-game.json new file mode 100644 index 000000000000..bc718cfc71a8 --- /dev/null +++ b/data/game/un/untitled-black-panther-video-game.json @@ -0,0 +1,14 @@ +{ + "slug": "untitled-black-panther-video-game", + "name": "untitled Black Panther video game", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120524352" + ], + "genres": [ + "action-adventure game" + ], + "publishers": [ + "Electronic Arts" + ] +} diff --git a/data/game/un/untitled-cuphead-sequel.json b/data/game/un/untitled-cuphead-sequel.json new file mode 100644 index 000000000000..60eedcf123b6 --- /dev/null +++ b/data/game/un/untitled-cuphead-sequel.json @@ -0,0 +1,8 @@ +{ + "slug": "untitled-cuphead-sequel", + "name": "untitled Cuphead Sequel", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140073675" + ] +} diff --git a/data/game/un/untitled-half-life-or-half-life-2-mod.json b/data/game/un/untitled-half-life-or-half-life-2-mod.json new file mode 100644 index 000000000000..96b63d9e9643 --- /dev/null +++ b/data/game/un/untitled-half-life-or-half-life-2-mod.json @@ -0,0 +1,11 @@ +{ + "slug": "untitled-half-life-or-half-life-2-mod", + "name": "untitled Half-Life or Half-Life 2 mod", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q132527859" + ], + "platforms": [ + "Microsoft Windows" + ] +} diff --git a/data/game/un/untitled-iron-man-video-game.json b/data/game/un/untitled-iron-man-video-game.json new file mode 100644 index 000000000000..049b0011a2af --- /dev/null +++ b/data/game/un/untitled-iron-man-video-game.json @@ -0,0 +1,17 @@ +{ + "slug": "untitled-iron-man-video-game", + "name": "untitled Iron Man video game", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120480126" + ], + "genres": [ + "action-adventure game" + ], + "developers": [ + "Motive Studio" + ], + "publishers": [ + "Electronic Arts" + ] +} diff --git a/data/game/un/untitled-mass-effect-video-game.json b/data/game/un/untitled-mass-effect-video-game.json new file mode 100644 index 000000000000..1ee79eef014b --- /dev/null +++ b/data/game/un/untitled-mass-effect-video-game.json @@ -0,0 +1,14 @@ +{ + "slug": "untitled-mass-effect-video-game", + "name": "untitled Mass Effect video game", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q101246534" + ], + "developers": [ + "BioWare" + ], + "publishers": [ + "Electronic Arts" + ] +} diff --git a/data/game/ur/ura-zelda.json b/data/game/ur/ura-zelda.json new file mode 100644 index 000000000000..85ae5bd5761f --- /dev/null +++ b/data/game/ur/ura-zelda.json @@ -0,0 +1,8 @@ +{ + "slug": "ura-zelda", + "name": "Ura Zelda", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6144778" + ] +} diff --git a/data/game/ur/uru-the-complete-chronicles.json b/data/game/ur/uru-the-complete-chronicles.json new file mode 100644 index 000000000000..4200544733e1 --- /dev/null +++ b/data/game/ur/uru-the-complete-chronicles.json @@ -0,0 +1,8 @@ +{ + "slug": "uru-the-complete-chronicles", + "name": "Uru: The Complete Chronicles", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137589815" + ] +} diff --git a/data/game/ut/utilities-for-doom-doom-ii.json b/data/game/ut/utilities-for-doom-doom-ii.json new file mode 100644 index 000000000000..471eed9e6110 --- /dev/null +++ b/data/game/ut/utilities-for-doom-doom-ii.json @@ -0,0 +1,15 @@ +{ + "slug": "utilities-for-doom-doom-ii", + "name": "Utilities for Doom & Doom II", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131416879" + ], + "release_date": "1994-01-01", + "genres": [ + "first-person shooter" + ], + "publishers": [ + "Cobra Computing" + ] +} diff --git a/data/game/uz/uzdoom.json b/data/game/uz/uzdoom.json new file mode 100644 index 000000000000..38940cf9012c --- /dev/null +++ b/data/game/uz/uzdoom.json @@ -0,0 +1,9 @@ +{ + "slug": "uzdoom", + "name": "Uzdoom", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136907286" + ], + "release_date": "2025-11-08" +} diff --git a/data/game/va/vaas-insanity.json b/data/game/va/vaas-insanity.json new file mode 100644 index 000000000000..bdf10f2c87fe --- /dev/null +++ b/data/game/va/vaas-insanity.json @@ -0,0 +1,9 @@ +{ + "slug": "vaas-insanity", + "name": "Vaas: Insanity", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113502405" + ], + "release_date": "2021-01-01" +} diff --git a/data/game/va/vader-immortal-a-star-wars-vr-series-episode-i.json b/data/game/va/vader-immortal-a-star-wars-vr-series-episode-i.json new file mode 100644 index 000000000000..0be08293ed03 --- /dev/null +++ b/data/game/va/vader-immortal-a-star-wars-vr-series-episode-i.json @@ -0,0 +1,18 @@ +{ + "slug": "vader-immortal-a-star-wars-vr-series-episode-i", + "name": "Vader Immortal: A Star Wars VR Series – Episode I", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63614786" + ], + "release_date": "2019-05-21", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "ILMxLAB" + ], + "publishers": [ + "Disney Electronic Content" + ] +} diff --git a/data/game/va/vader-immortal-a-star-wars-vr-series-episode-ii.json b/data/game/va/vader-immortal-a-star-wars-vr-series-episode-ii.json new file mode 100644 index 000000000000..d983c0415fb0 --- /dev/null +++ b/data/game/va/vader-immortal-a-star-wars-vr-series-episode-ii.json @@ -0,0 +1,15 @@ +{ + "slug": "vader-immortal-a-star-wars-vr-series-episode-ii", + "name": "Vader Immortal: A Star Wars VR Series – Episode II", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q79146770" + ], + "release_date": "2019-09-25", + "developers": [ + "ILMxLAB" + ], + "publishers": [ + "Disney Electronic Content" + ] +} diff --git a/data/game/va/vader-immortal-a-star-wars-vr-series-episode-iii.json b/data/game/va/vader-immortal-a-star-wars-vr-series-episode-iii.json new file mode 100644 index 000000000000..d33d3f890c6a --- /dev/null +++ b/data/game/va/vader-immortal-a-star-wars-vr-series-episode-iii.json @@ -0,0 +1,15 @@ +{ + "slug": "vader-immortal-a-star-wars-vr-series-episode-iii", + "name": "Vader Immortal: A Star Wars VR Series – Episode III", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q79147298" + ], + "release_date": "2019-11-21", + "developers": [ + "ILMxLAB" + ], + "publishers": [ + "Disney Electronic Content" + ] +} diff --git a/data/game/va/valkyrie-tune-synthesis-of-souls.json b/data/game/va/valkyrie-tune-synthesis-of-souls.json new file mode 100644 index 000000000000..d59ba1ff64bc --- /dev/null +++ b/data/game/va/valkyrie-tune-synthesis-of-souls.json @@ -0,0 +1,18 @@ +{ + "slug": "valkyrie-tune-synthesis-of-souls", + "name": "Valkyrie Tune: Synthesis of Souls", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138571679" + ], + "release_date": "2026-07-23", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "visual novel" + ], + "developers": [ + "Front Wing" + ] +} diff --git a/data/game/va/valor-victory-shield-of-cholm.json b/data/game/va/valor-victory-shield-of-cholm.json new file mode 100644 index 000000000000..50ba85c9551f --- /dev/null +++ b/data/game/va/valor-victory-shield-of-cholm.json @@ -0,0 +1,18 @@ +{ + "slug": "valor-victory-shield-of-cholm", + "name": "Valor & Victory: Shield of Cholm", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113866922" + ], + "release_date": "2022-07-07", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Yobowargames" + ], + "publishers": [ + "Slitherine Software UK Limited" + ] +} diff --git a/data/game/va/valor-victory-stalingrad.json b/data/game/va/valor-victory-stalingrad.json new file mode 100644 index 000000000000..f3e809946e71 --- /dev/null +++ b/data/game/va/valor-victory-stalingrad.json @@ -0,0 +1,18 @@ +{ + "slug": "valor-victory-stalingrad", + "name": "Valor & Victory: Stalingrad", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113866918" + ], + "release_date": "2022-02-03", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Yobowargames" + ], + "publishers": [ + "Slitherine Software UK Limited" + ] +} diff --git a/data/game/va/valve-clothing-pack.json b/data/game/va/valve-clothing-pack.json new file mode 100644 index 000000000000..68d8c5d8d963 --- /dev/null +++ b/data/game/va/valve-clothing-pack.json @@ -0,0 +1,12 @@ +{ + "slug": "valve-clothing-pack", + "name": "Valve Clothing Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60616770" + ], + "release_date": "2012-01-17", + "platforms": [ + "Microsoft Windows" + ] +} diff --git a/data/game/va/valve-complete-pack.json b/data/game/va/valve-complete-pack.json new file mode 100644 index 000000000000..155b274b7fd1 --- /dev/null +++ b/data/game/va/valve-complete-pack.json @@ -0,0 +1,19 @@ +{ + "slug": "valve-complete-pack", + "name": "Valve Complete Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q56695783" + ], + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Gearbox Software", + "Valve Corporation" + ], + "publishers": [ + "Valve Corporation" + ] +} diff --git a/data/game/va/valve-s-team-fortress.json b/data/game/va/valve-s-team-fortress.json new file mode 100644 index 000000000000..8f7dd2d6cc7c --- /dev/null +++ b/data/game/va/valve-s-team-fortress.json @@ -0,0 +1,11 @@ +{ + "slug": "valve-s-team-fortress", + "name": "Valve's Team Fortress", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63247565" + ], + "platforms": [ + "Microsoft Windows" + ] +} diff --git a/data/game/va/vampire-survivors-legacy-of-the-moonspell.json b/data/game/va/vampire-survivors-legacy-of-the-moonspell.json new file mode 100644 index 000000000000..0babca5ddc3c --- /dev/null +++ b/data/game/va/vampire-survivors-legacy-of-the-moonspell.json @@ -0,0 +1,19 @@ +{ + "slug": "vampire-survivors-legacy-of-the-moonspell", + "name": "Vampire Survivors: Legacy of the Moonspell", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115715264" + ], + "release_date": "2022-12-15", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Poncle" + ], + "publishers": [ + "Poncle" + ] +} diff --git a/data/game/va/vampire-survivors-ode-to-castlevania.json b/data/game/va/vampire-survivors-ode-to-castlevania.json new file mode 100644 index 000000000000..aa888f34568c --- /dev/null +++ b/data/game/va/vampire-survivors-ode-to-castlevania.json @@ -0,0 +1,26 @@ +{ + "slug": "vampire-survivors-ode-to-castlevania", + "name": "Vampire Survivors: Ode to Castlevania", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131308434" + ], + "release_date": "2024-10-31", + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 5", + "PlayStation 4", + "iOS", + "macOS", + "Microsoft Windows" + ], + "genres": [ + "bullet heaven" + ], + "developers": [ + "Poncle" + ], + "publishers": [ + "Poncle" + ] +} diff --git a/data/game/va/vampire-the-masquerade-shadows-of-new-york.json b/data/game/va/vampire-the-masquerade-shadows-of-new-york.json new file mode 100644 index 000000000000..5f4db1d9b990 --- /dev/null +++ b/data/game/va/vampire-the-masquerade-shadows-of-new-york.json @@ -0,0 +1,23 @@ +{ + "slug": "vampire-the-masquerade-shadows-of-new-york", + "name": "Vampire: The Masquerade – Shadows of New York", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q89909591" + ], + "release_date": "2020-09-10", + "platforms": [ + "macOS", + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "visual novel" + ], + "developers": [ + "Draw Distance" + ], + "publishers": [ + "Draw Distance" + ] +} diff --git a/data/game/va/vampires-wallpapers-ost.json b/data/game/va/vampires-wallpapers-ost.json new file mode 100644 index 000000000000..a82ca1394249 --- /dev/null +++ b/data/game/va/vampires-wallpapers-ost.json @@ -0,0 +1,19 @@ +{ + "slug": "vampires-wallpapers-ost", + "name": "Vampires! - Wallpapers & OST", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117835902" + ], + "release_date": "2017-10-11", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "For Kids" + ], + "publishers": [ + "For Kids" + ] +} diff --git a/data/game/va/van-buren.json b/data/game/va/van-buren.json new file mode 100644 index 000000000000..e585c07b2614 --- /dev/null +++ b/data/game/va/van-buren.json @@ -0,0 +1,21 @@ +{ + "slug": "van-buren", + "name": "Van Buren", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q946381" + ], + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "role-playing video game", + "science fiction video game" + ], + "developers": [ + "Black Isle Studios" + ], + "publishers": [ + "Interplay Entertainment" + ] +} diff --git a/data/game/va/vanilla-conquer.json b/data/game/va/vanilla-conquer.json new file mode 100644 index 000000000000..97ff379cd20e --- /dev/null +++ b/data/game/va/vanilla-conquer.json @@ -0,0 +1,8 @@ +{ + "slug": "vanilla-conquer", + "name": "Vanilla Conquer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121501954" + ] +} diff --git a/data/game/va/varuna-s-forces.json b/data/game/va/varuna-s-forces.json new file mode 100644 index 000000000000..2fd59087a6bb --- /dev/null +++ b/data/game/va/varuna-s-forces.json @@ -0,0 +1,12 @@ +{ + "slug": "varuna-s-forces", + "name": "Varuna's Forces", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60755612" + ], + "genres": [ + "first-person shooter", + "science fiction video game" + ] +} diff --git a/data/game/va/vavoom.json b/data/game/va/vavoom.json new file mode 100644 index 000000000000..fdbd307c2477 --- /dev/null +++ b/data/game/va/vavoom.json @@ -0,0 +1,8 @@ +{ + "slug": "vavoom", + "name": "Vavoom", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q67250309" + ] +} diff --git a/data/game/ve/vectorman-3.json b/data/game/ve/vectorman-3.json new file mode 100644 index 000000000000..34f900f27198 --- /dev/null +++ b/data/game/ve/vectorman-3.json @@ -0,0 +1,8 @@ +{ + "slug": "vectorman-3", + "name": "Vectorman 3", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123475192" + ] +} diff --git a/data/game/ve/venapro.json b/data/game/ve/venapro.json new file mode 100644 index 000000000000..9b1b34dc5c3e --- /dev/null +++ b/data/game/ve/venapro.json @@ -0,0 +1,8 @@ +{ + "slug": "venapro", + "name": "Venapro", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q59282120" + ] +} diff --git a/data/game/ve/versus-the-elite-trials-worningbird-hints.json b/data/game/ve/versus-the-elite-trials-worningbird-hints.json new file mode 100644 index 000000000000..dee2f07f15f5 --- /dev/null +++ b/data/game/ve/versus-the-elite-trials-worningbird-hints.json @@ -0,0 +1,19 @@ +{ + "slug": "versus-the-elite-trials-worningbird-hints", + "name": "VERSUS: The Elite Trials - WorningBird Hints", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115016147" + ], + "release_date": "2016-12-16", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Choice of Games" + ], + "publishers": [ + "Choice of Games" + ] +} diff --git a/data/game/ve/versus-the-lost-ones-worningbird-hints.json b/data/game/ve/versus-the-lost-ones-worningbird-hints.json new file mode 100644 index 000000000000..fe8422a6fe22 --- /dev/null +++ b/data/game/ve/versus-the-lost-ones-worningbird-hints.json @@ -0,0 +1,19 @@ +{ + "slug": "versus-the-lost-ones-worningbird-hints", + "name": "VERSUS: The Lost Ones - WorningBird Hints", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115016120" + ], + "release_date": "2015-08-21", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Choice of Games" + ], + "publishers": [ + "Choice of Games" + ] +} diff --git a/data/game/ve/very-little-nightmares-q118235287.json b/data/game/ve/very-little-nightmares-q118235287.json new file mode 100644 index 000000000000..f95ab2b67da7 --- /dev/null +++ b/data/game/ve/very-little-nightmares-q118235287.json @@ -0,0 +1,13 @@ +{ + "slug": "very-little-nightmares-q118235287", + "name": "Very Little Nightmares+", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118235287" + ], + "release_date": "2023-05-04", + "platforms": [ + "iPadOS", + "iOS" + ] +} diff --git a/data/game/vi/victoria-3-voice-of-the-people.json b/data/game/vi/victoria-3-voice-of-the-people.json new file mode 100644 index 000000000000..4d9d26403a25 --- /dev/null +++ b/data/game/vi/victoria-3-voice-of-the-people.json @@ -0,0 +1,8 @@ +{ + "slug": "victoria-3-voice-of-the-people", + "name": "Victoria 3: Voice of the People", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140471226" + ] +} diff --git a/data/game/vi/victoria-ii-heart-of-darkness.json b/data/game/vi/victoria-ii-heart-of-darkness.json new file mode 100644 index 000000000000..07852514a10c --- /dev/null +++ b/data/game/vi/victoria-ii-heart-of-darkness.json @@ -0,0 +1,8 @@ +{ + "slug": "victoria-ii-heart-of-darkness", + "name": "Victoria II: Heart of Darkness", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140448045" + ] +} diff --git a/data/game/vi/victory-is-life.json b/data/game/vi/victory-is-life.json new file mode 100644 index 000000000000..1618d1e54e83 --- /dev/null +++ b/data/game/vi/victory-is-life.json @@ -0,0 +1,9 @@ +{ + "slug": "victory-is-life", + "name": "Victory is Life", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q57973885" + ], + "release_date": "2018-06-05" +} diff --git a/data/game/vi/video-pinball-q65951933.json b/data/game/vi/video-pinball-q65951933.json new file mode 100644 index 000000000000..dc3c39ae0425 --- /dev/null +++ b/data/game/vi/video-pinball-q65951933.json @@ -0,0 +1,14 @@ +{ + "slug": "video-pinball-q65951933", + "name": "Video Pinball", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q65951933" + ], + "genres": [ + "pinball machine game" + ], + "developers": [ + "Atari, Inc." + ] +} diff --git a/data/game/vi/vietcong-fist-alpha.json b/data/game/vi/vietcong-fist-alpha.json new file mode 100644 index 000000000000..1347cbcce14a --- /dev/null +++ b/data/game/vi/vietcong-fist-alpha.json @@ -0,0 +1,21 @@ +{ + "slug": "vietcong-fist-alpha", + "name": "Vietcong: Fist Alpha", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3501712" + ], + "release_date": "2004-01-30", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter" + ], + "developers": [ + "Pterodon" + ], + "publishers": [ + "Gathering of Developers" + ] +} diff --git a/data/game/vi/vietcong-red-dawn.json b/data/game/vi/vietcong-red-dawn.json new file mode 100644 index 000000000000..e6fa7fa5e953 --- /dev/null +++ b/data/game/vi/vietcong-red-dawn.json @@ -0,0 +1,8 @@ +{ + "slug": "vietcong-red-dawn", + "name": "Vietcong: Red Dawn", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11896107" + ] +} diff --git a/data/game/vi/viewer-pack-the-first.json b/data/game/vi/viewer-pack-the-first.json new file mode 100644 index 000000000000..2712ec46e30c --- /dev/null +++ b/data/game/vi/viewer-pack-the-first.json @@ -0,0 +1,9 @@ +{ + "slug": "viewer-pack-the-first", + "name": "Viewer Pack The First", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60617368" + ], + "release_date": "2012-01-05" +} diff --git a/data/game/vi/viewer-pack-the-second.json b/data/game/vi/viewer-pack-the-second.json new file mode 100644 index 000000000000..cb04e6f14928 --- /dev/null +++ b/data/game/vi/viewer-pack-the-second.json @@ -0,0 +1,9 @@ +{ + "slug": "viewer-pack-the-second", + "name": "Viewer Pack The Second", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60617369" + ], + "release_date": "2012-02-21" +} diff --git a/data/game/vi/viewer-pack-the-third.json b/data/game/vi/viewer-pack-the-third.json new file mode 100644 index 000000000000..0495d3299c85 --- /dev/null +++ b/data/game/vi/viewer-pack-the-third.json @@ -0,0 +1,9 @@ +{ + "slug": "viewer-pack-the-third", + "name": "Viewer Pack The Third", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60617370" + ], + "release_date": "2012-03-14" +} diff --git a/data/game/vi/vigil-blood-bitterness-demo.json b/data/game/vi/vigil-blood-bitterness-demo.json new file mode 100644 index 000000000000..de1c0540e8bf --- /dev/null +++ b/data/game/vi/vigil-blood-bitterness-demo.json @@ -0,0 +1,22 @@ +{ + "slug": "vigil-blood-bitterness-demo", + "name": "Vigil: Blood Bitterness Demo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122708378" + ], + "release_date": "2007-06-29", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "puzzle video game", + "role-playing video game" + ], + "developers": [ + "Freegamer" + ], + "publishers": [ + "Meridian4" + ] +} diff --git a/data/game/vi/vilse-i-vintergatan.json b/data/game/vi/vilse-i-vintergatan.json new file mode 100644 index 000000000000..d4c6071317fd --- /dev/null +++ b/data/game/vi/vilse-i-vintergatan.json @@ -0,0 +1,18 @@ +{ + "slug": "vilse-i-vintergatan", + "name": "Vilse i Vintergatan", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q100318788" + ], + "release_date": "2009-01-01", + "platforms": [ + "web browser" + ], + "genres": [ + "platformer" + ], + "publishers": [ + "Sveriges Television" + ] +} diff --git a/data/game/vi/virtua-fighter-q61601911.json b/data/game/vi/virtua-fighter-q61601911.json new file mode 100644 index 000000000000..e7503dbfd9c6 --- /dev/null +++ b/data/game/vi/virtua-fighter-q61601911.json @@ -0,0 +1,12 @@ +{ + "slug": "virtua-fighter-q61601911", + "name": "Virtua Fighter", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q61601911" + ], + "release_date": "1994-01-01", + "publishers": [ + "Sega" + ] +} diff --git a/data/game/vi/virtual-reality-volume-2.json b/data/game/vi/virtual-reality-volume-2.json new file mode 100644 index 000000000000..94de621966fe --- /dev/null +++ b/data/game/vi/virtual-reality-volume-2.json @@ -0,0 +1,12 @@ +{ + "slug": "virtual-reality-volume-2", + "name": "Virtual Reality, Volume 2", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1993119" + ], + "release_date": "1991-01-01", + "platforms": [ + "Atari ST" + ] +} diff --git a/data/game/vi/viscera-cleanup-detail-house-of-horror.json b/data/game/vi/viscera-cleanup-detail-house-of-horror.json new file mode 100644 index 000000000000..79c1314ba482 --- /dev/null +++ b/data/game/vi/viscera-cleanup-detail-house-of-horror.json @@ -0,0 +1,19 @@ +{ + "slug": "viscera-cleanup-detail-house-of-horror", + "name": "Viscera Cleanup Detail: House of Horror", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q74213702" + ], + "release_date": "2015-10-29", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "RuneStorm" + ], + "publishers": [ + "RuneStorm" + ] +} diff --git a/data/game/vi/viscera-cleanup-detail-the-vulcan-affair.json b/data/game/vi/viscera-cleanup-detail-the-vulcan-affair.json new file mode 100644 index 000000000000..e540d5c48f91 --- /dev/null +++ b/data/game/vi/viscera-cleanup-detail-the-vulcan-affair.json @@ -0,0 +1,19 @@ +{ + "slug": "viscera-cleanup-detail-the-vulcan-affair", + "name": "Viscera Cleanup Detail - The Vulcan Affair", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q74215905" + ], + "release_date": "2018-12-10", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "RuneStorm" + ], + "publishers": [ + "RuneStorm" + ] +} diff --git a/data/game/vi/vita-stacks.json b/data/game/vi/vita-stacks.json new file mode 100644 index 000000000000..40b905d9b819 --- /dev/null +++ b/data/game/vi/vita-stacks.json @@ -0,0 +1,21 @@ +{ + "slug": "vita-stacks", + "name": "Vita Stacks", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124024682" + ], + "release_date": "2020-08-15", + "platforms": [ + "PlayStation Vita" + ], + "genres": [ + "puzzle video game" + ], + "developers": [ + "VitaHEX games" + ], + "publishers": [ + "VitaHEX games" + ] +} diff --git a/data/game/vi/vitahot.json b/data/game/vi/vitahot.json new file mode 100644 index 000000000000..675eff78646f --- /dev/null +++ b/data/game/vi/vitahot.json @@ -0,0 +1,23 @@ +{ + "slug": "vitahot", + "name": "VitaHot", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124060084" + ], + "release_date": "2023-08-30", + "platforms": [ + "PlayStation Vita" + ], + "genres": [ + "first-person shooter" + ], + "developers": [ + "digradi", + "MRKane" + ], + "publishers": [ + "MRKane", + "digradi" + ] +} diff --git a/data/game/vi/vitamon-go.json b/data/game/vi/vitamon-go.json new file mode 100644 index 000000000000..bd71b74f1d37 --- /dev/null +++ b/data/game/vi/vitamon-go.json @@ -0,0 +1,18 @@ +{ + "slug": "vitamon-go", + "name": "Vitamon GO", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124004150" + ], + "release_date": "2017-11-30", + "platforms": [ + "PlayStation Vita" + ], + "developers": [ + "VitaHEX games" + ], + "publishers": [ + "VitaHEX games" + ] +} diff --git a/data/game/vk/vkquake.json b/data/game/vk/vkquake.json new file mode 100644 index 000000000000..aeeba4626668 --- /dev/null +++ b/data/game/vk/vkquake.json @@ -0,0 +1,8 @@ +{ + "slug": "vkquake", + "name": "vkQuake", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120671329" + ] +} diff --git a/data/game/vo/voss-turbo-demo.json b/data/game/vo/voss-turbo-demo.json new file mode 100644 index 000000000000..3e57f1b9e6bb --- /dev/null +++ b/data/game/vo/voss-turbo-demo.json @@ -0,0 +1,13 @@ +{ + "slug": "voss-turbo-demo", + "name": "VOSS Turbo Demo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111524084" + ], + "release_date": "2022-04-07", + "platforms": [ + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/game/vo/voyage-xbox-edition.json b/data/game/vo/voyage-xbox-edition.json new file mode 100644 index 000000000000..83a7a36e7d70 --- /dev/null +++ b/data/game/vo/voyage-xbox-edition.json @@ -0,0 +1,18 @@ +{ + "slug": "voyage-xbox-edition", + "name": "Voyage: Xbox Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115525795" + ], + "release_date": "2022-08-12", + "platforms": [ + "Xbox Series X and Series S" + ], + "developers": [ + "Venturous" + ], + "publishers": [ + "Ratalaika Games" + ] +} diff --git a/data/game/vq/vquake.json b/data/game/vq/vquake.json new file mode 100644 index 000000000000..04e8f1dc72a3 --- /dev/null +++ b/data/game/vq/vquake.json @@ -0,0 +1,14 @@ +{ + "slug": "vquake", + "name": "VQuake", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120671295" + ], + "platforms": [ + "Rendition Vérité V1000" + ], + "developers": [ + "id Software" + ] +} diff --git a/data/game/vr/vr-fitness-demo.json b/data/game/vr/vr-fitness-demo.json new file mode 100644 index 000000000000..f6947d436ecf --- /dev/null +++ b/data/game/vr/vr-fitness-demo.json @@ -0,0 +1,22 @@ +{ + "slug": "vr-fitness-demo", + "name": "VR Fitness Demo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131322145" + ], + "release_date": "2023-07-17", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "eroge", + "fitness video game" + ], + "developers": [ + "SK Soft" + ], + "publishers": [ + "SK Soft" + ] +} diff --git a/data/game/vr/vr-fitness-r18-dlc.json b/data/game/vr/vr-fitness-r18-dlc.json new file mode 100644 index 000000000000..292f32d4eec3 --- /dev/null +++ b/data/game/vr/vr-fitness-r18-dlc.json @@ -0,0 +1,22 @@ +{ + "slug": "vr-fitness-r18-dlc", + "name": "VR Fitness - R18 DLC", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131315238" + ], + "release_date": "2024-01-02", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "eroge", + "harem" + ], + "developers": [ + "SK Soft" + ], + "publishers": [ + "SK Soft" + ] +} diff --git a/data/game/vr/vr-harem-sex-fucking-the-all-girls-around-me-demo.json b/data/game/vr/vr-harem-sex-fucking-the-all-girls-around-me-demo.json new file mode 100644 index 000000000000..7ced9062e0a6 --- /dev/null +++ b/data/game/vr/vr-harem-sex-fucking-the-all-girls-around-me-demo.json @@ -0,0 +1,23 @@ +{ + "slug": "vr-harem-sex-fucking-the-all-girls-around-me-demo", + "name": "VR Harem Sex ~Fucking the All Girls Around Me~ Demo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130380735" + ], + "release_date": "2024-02-10", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "harem", + "simulation video game", + "eroge" + ], + "developers": [ + "SK Soft" + ], + "publishers": [ + "SK Soft" + ] +} diff --git a/data/game/w-/w-e-l-l-online.json b/data/game/w-/w-e-l-l-online.json new file mode 100644 index 000000000000..d8b160f76788 --- /dev/null +++ b/data/game/w-/w-e-l-l-online.json @@ -0,0 +1,17 @@ +{ + "slug": "w-e-l-l-online", + "name": "W.E.L.L. Online", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110716217" + ], + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "massively multiplayer online role-playing game" + ], + "developers": [ + "Sibilant Interactive" + ] +} diff --git a/data/game/wa/wagic-the-homebrew.json b/data/game/wa/wagic-the-homebrew.json new file mode 100644 index 000000000000..19c25de22a33 --- /dev/null +++ b/data/game/wa/wagic-the-homebrew.json @@ -0,0 +1,16 @@ +{ + "slug": "wagic-the-homebrew", + "name": "Wagic, The Homebrew ?!", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q100722100" + ], + "platforms": [ + "Nokia N900", + "Nokia N9", + "Ouya", + "PlayStation Portable", + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/game/wa/wait-what-s-that.json b/data/game/wa/wait-what-s-that.json new file mode 100644 index 000000000000..3488e486a16e --- /dev/null +++ b/data/game/wa/wait-what-s-that.json @@ -0,0 +1,8 @@ +{ + "slug": "wait-what-s-that", + "name": "Wait What's That", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137298449" + ] +} diff --git a/data/game/wa/warcraft-2000.json b/data/game/wa/warcraft-2000.json new file mode 100644 index 000000000000..7d78eeebd0ab --- /dev/null +++ b/data/game/wa/warcraft-2000.json @@ -0,0 +1,21 @@ +{ + "slug": "warcraft-2000", + "name": "Warcraft 2000", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112107336" + ], + "release_date": "1998-01-01", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "real-time strategy" + ], + "developers": [ + "GSC Game World" + ], + "publishers": [ + "GSC Game World" + ] +} diff --git a/data/game/wa/warcraft-3-the-frozen-throne-nature-s-call-spider-queen.json b/data/game/wa/warcraft-3-the-frozen-throne-nature-s-call-spider-queen.json new file mode 100644 index 000000000000..bc2e245de406 --- /dev/null +++ b/data/game/wa/warcraft-3-the-frozen-throne-nature-s-call-spider-queen.json @@ -0,0 +1,14 @@ +{ + "slug": "warcraft-3-the-frozen-throne-nature-s-call-spider-queen", + "name": "Warcraft 3: The Frozen Throne: Nature's Call: Spider Queen", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110817162" + ], + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "strategy game" + ] +} diff --git a/data/game/wa/warcraft-adventures-lord-of-the-clans.json b/data/game/wa/warcraft-adventures-lord-of-the-clans.json new file mode 100644 index 000000000000..cff8b2951b7a --- /dev/null +++ b/data/game/wa/warcraft-adventures-lord-of-the-clans.json @@ -0,0 +1,17 @@ +{ + "slug": "warcraft-adventures-lord-of-the-clans", + "name": "Warcraft Adventures: Lord of the Clans", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q859958" + ], + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "point-and-click adventure" + ], + "developers": [ + "Blizzard Entertainment" + ] +} diff --git a/data/game/wa/warcraft-ii-beyond-the-dark-portal.json b/data/game/wa/warcraft-ii-beyond-the-dark-portal.json new file mode 100644 index 000000000000..e02b508adaa5 --- /dev/null +++ b/data/game/wa/warcraft-ii-beyond-the-dark-portal.json @@ -0,0 +1,24 @@ +{ + "slug": "warcraft-ii-beyond-the-dark-portal", + "name": "Warcraft II: Beyond the Dark Portal", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q860291" + ], + "release_date": "1996-04-30", + "platforms": [ + "Classic Mac OS", + "DOS", + "Microsoft Windows" + ], + "genres": [ + "real-time strategy", + "fantasy video game" + ], + "developers": [ + "Cyberlore Studios" + ], + "publishers": [ + "Blizzard Entertainment" + ] +} diff --git a/data/game/wa/warcraft-ii-the-dark-saga.json b/data/game/wa/warcraft-ii-the-dark-saga.json new file mode 100644 index 000000000000..9b823a5e5031 --- /dev/null +++ b/data/game/wa/warcraft-ii-the-dark-saga.json @@ -0,0 +1,18 @@ +{ + "slug": "warcraft-ii-the-dark-saga", + "name": "Warcraft II: The Dark Saga", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2742840" + ], + "release_date": "1997-01-01", + "genres": [ + "real-time strategy" + ], + "developers": [ + "Blizzard Entertainment" + ], + "publishers": [ + "Electronic Arts" + ] +} diff --git a/data/game/wa/warcraft-ii-tides-of-darkness-q122890940.json b/data/game/wa/warcraft-ii-tides-of-darkness-q122890940.json new file mode 100644 index 000000000000..d132291201bf --- /dev/null +++ b/data/game/wa/warcraft-ii-tides-of-darkness-q122890940.json @@ -0,0 +1,21 @@ +{ + "slug": "warcraft-ii-tides-of-darkness-q122890940", + "name": "WarCraft II: Tides of Darkness", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122890940" + ], + "release_date": "1996-01-28", + "platforms": [ + "Classic Mac OS" + ], + "genres": [ + "real-time strategy" + ], + "developers": [ + "Blizzard Entertainment" + ], + "publishers": [ + "Blizzard Entertainment" + ] +} diff --git a/data/game/wa/warcraft-iii-gold-edition.json b/data/game/wa/warcraft-iii-gold-edition.json new file mode 100644 index 000000000000..5d8c81d7bf9e --- /dev/null +++ b/data/game/wa/warcraft-iii-gold-edition.json @@ -0,0 +1,8 @@ +{ + "slug": "warcraft-iii-gold-edition", + "name": "Warcraft III: Gold Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125795786" + ] +} diff --git a/data/game/wa/warcraft-iii-reign-of-chaos-demo-version.json b/data/game/wa/warcraft-iii-reign-of-chaos-demo-version.json new file mode 100644 index 000000000000..287967f0a7ec --- /dev/null +++ b/data/game/wa/warcraft-iii-reign-of-chaos-demo-version.json @@ -0,0 +1,8 @@ +{ + "slug": "warcraft-iii-reign-of-chaos-demo-version", + "name": "Warcraft III: Reign of Chaos Demo Version", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125795526" + ] +} diff --git a/data/game/wa/warhammer-40-000-dark-heresy.json b/data/game/wa/warhammer-40-000-dark-heresy.json new file mode 100644 index 000000000000..f1ae3b9f78d8 --- /dev/null +++ b/data/game/wa/warhammer-40-000-dark-heresy.json @@ -0,0 +1,16 @@ +{ + "slug": "warhammer-40-000-dark-heresy", + "name": "Warhammer 40,000: Dark Heresy", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134545609" + ], + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 5", + "Microsoft Windows" + ], + "genres": [ + "role-playing video game" + ] +} diff --git a/data/game/wa/warhammer-40-000-dawn-of-war-dark-crusade.json b/data/game/wa/warhammer-40-000-dawn-of-war-dark-crusade.json new file mode 100644 index 000000000000..fface41279e1 --- /dev/null +++ b/data/game/wa/warhammer-40-000-dawn-of-war-dark-crusade.json @@ -0,0 +1,18 @@ +{ + "slug": "warhammer-40-000-dawn-of-war-dark-crusade", + "name": "Warhammer 40,000: Dawn of War – Dark Crusade", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1330808" + ], + "release_date": "2006-10-09", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "real-time strategy" + ], + "publishers": [ + "THQ" + ] +} diff --git a/data/game/wa/warhammer-40-000-dawn-of-war-dowpro.json b/data/game/wa/warhammer-40-000-dawn-of-war-dowpro.json new file mode 100644 index 000000000000..63b1b61af23d --- /dev/null +++ b/data/game/wa/warhammer-40-000-dawn-of-war-dowpro.json @@ -0,0 +1,19 @@ +{ + "slug": "warhammer-40-000-dawn-of-war-dowpro", + "name": "Warhammer 40,000: Dawn of War – DowPro", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110817164" + ], + "release_date": "2005-09-01", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "real-time strategy" + ], + "publishers": [ + "THQ", + "Russobit-M" + ] +} diff --git a/data/game/wa/warhammer-40-000-dawn-of-war-ii-chaos-rising.json b/data/game/wa/warhammer-40-000-dawn-of-war-ii-chaos-rising.json new file mode 100644 index 000000000000..b15e39b8e89e --- /dev/null +++ b/data/game/wa/warhammer-40-000-dawn-of-war-ii-chaos-rising.json @@ -0,0 +1,20 @@ +{ + "slug": "warhammer-40-000-dawn-of-war-ii-chaos-rising", + "name": "Warhammer 40,000: Dawn of War II – Chaos Rising", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1051585" + ], + "release_date": "2010-03-10", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "real-time strategy", + "science fiction video game" + ], + "publishers": [ + "THQ" + ] +} diff --git a/data/game/wa/warhammer-40-000-dawn-of-war-ii-retribution.json b/data/game/wa/warhammer-40-000-dawn-of-war-ii-retribution.json new file mode 100644 index 000000000000..e8279c8e39e8 --- /dev/null +++ b/data/game/wa/warhammer-40-000-dawn-of-war-ii-retribution.json @@ -0,0 +1,21 @@ +{ + "slug": "warhammer-40-000-dawn-of-war-ii-retribution", + "name": "Warhammer 40,000: Dawn of War II – Retribution", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1086249" + ], + "release_date": "2011-02-28", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "real-time strategy", + "tactical role-playing game", + "real-time tactics" + ], + "publishers": [ + "THQ" + ] +} diff --git a/data/game/wa/warhammer-40-000-dawn-of-war-soulstorm.json b/data/game/wa/warhammer-40-000-dawn-of-war-soulstorm.json new file mode 100644 index 000000000000..f6f7086fa4ff --- /dev/null +++ b/data/game/wa/warhammer-40-000-dawn-of-war-soulstorm.json @@ -0,0 +1,21 @@ +{ + "slug": "warhammer-40-000-dawn-of-war-soulstorm", + "name": "Warhammer 40,000: Dawn of War – Soulstorm", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1367520" + ], + "release_date": "2008-03-04", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "real-time strategy" + ], + "developers": [ + "Iron Lore Entertainment" + ], + "publishers": [ + "THQ" + ] +} diff --git a/data/game/wa/warhammer-40-000-dawn-of-war-winter-assault.json b/data/game/wa/warhammer-40-000-dawn-of-war-winter-assault.json new file mode 100644 index 000000000000..21eb102c789c --- /dev/null +++ b/data/game/wa/warhammer-40-000-dawn-of-war-winter-assault.json @@ -0,0 +1,19 @@ +{ + "slug": "warhammer-40-000-dawn-of-war-winter-assault", + "name": "Warhammer 40,000: Dawn of War – Winter Assault", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1154938" + ], + "release_date": "2005-09-23", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "real-time strategy", + "science fiction video game" + ], + "publishers": [ + "THQ" + ] +} diff --git a/data/game/wa/warhammer-40-000-inquisitor-prophecy-q130721078.json b/data/game/wa/warhammer-40-000-inquisitor-prophecy-q130721078.json new file mode 100644 index 000000000000..252620dbec74 --- /dev/null +++ b/data/game/wa/warhammer-40-000-inquisitor-prophecy-q130721078.json @@ -0,0 +1,8 @@ +{ + "slug": "warhammer-40-000-inquisitor-prophecy-q130721078", + "name": "Warhammer 40,000: Inquisitor - Prophecy", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130721078" + ] +} diff --git a/data/game/wa/warhammer-online-age-of-reckoning-call-to-arms.json b/data/game/wa/warhammer-online-age-of-reckoning-call-to-arms.json new file mode 100644 index 000000000000..3b33b18932ab --- /dev/null +++ b/data/game/wa/warhammer-online-age-of-reckoning-call-to-arms.json @@ -0,0 +1,17 @@ +{ + "slug": "warhammer-online-age-of-reckoning-call-to-arms", + "name": "Warhammer Online: Age of Reckoning – Call to Arms", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110817165" + ], + "genres": [ + "massively multiplayer online role-playing game" + ], + "developers": [ + "Mythic Entertainment" + ], + "publishers": [ + "Electronic Arts" + ] +} diff --git a/data/game/wa/warhammer-vermintide-2-back-to-ubersreik.json b/data/game/wa/warhammer-vermintide-2-back-to-ubersreik.json new file mode 100644 index 000000000000..9e614a27c4aa --- /dev/null +++ b/data/game/wa/warhammer-vermintide-2-back-to-ubersreik.json @@ -0,0 +1,18 @@ +{ + "slug": "warhammer-vermintide-2-back-to-ubersreik", + "name": "Warhammer: Vermintide 2 - Back to Ubersreik", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113179420" + ], + "release_date": "2018-12-10", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Fatshark" + ], + "publishers": [ + "Fatshark" + ] +} diff --git a/data/game/wa/warhammer-vermintide-2-collector-s-edition-upgrade.json b/data/game/wa/warhammer-vermintide-2-collector-s-edition-upgrade.json new file mode 100644 index 000000000000..80010c9880cc --- /dev/null +++ b/data/game/wa/warhammer-vermintide-2-collector-s-edition-upgrade.json @@ -0,0 +1,18 @@ +{ + "slug": "warhammer-vermintide-2-collector-s-edition-upgrade", + "name": "Warhammer: Vermintide 2 - Collector's Edition Upgrade", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113179403" + ], + "release_date": "2018-03-08", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Fatshark" + ], + "publishers": [ + "Fatshark" + ] +} diff --git a/data/game/wa/warhammer-vermintide-2-forgotten-relics-pack.json b/data/game/wa/warhammer-vermintide-2-forgotten-relics-pack.json new file mode 100644 index 000000000000..c39d5c8c51aa --- /dev/null +++ b/data/game/wa/warhammer-vermintide-2-forgotten-relics-pack.json @@ -0,0 +1,18 @@ +{ + "slug": "warhammer-vermintide-2-forgotten-relics-pack", + "name": "Warhammer: Vermintide 2 - Forgotten Relics Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113179548" + ], + "release_date": "2021-04-20", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Fatshark" + ], + "publishers": [ + "Fatshark" + ] +} diff --git a/data/game/wa/warhammer-vermintide-2-grail-knight-career.json b/data/game/wa/warhammer-vermintide-2-grail-knight-career.json new file mode 100644 index 000000000000..fa3f6483adbd --- /dev/null +++ b/data/game/wa/warhammer-vermintide-2-grail-knight-career.json @@ -0,0 +1,18 @@ +{ + "slug": "warhammer-vermintide-2-grail-knight-career", + "name": "Warhammer: Vermintide 2 - Grail Knight Career", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113179437" + ], + "release_date": "2020-06-23", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Fatshark" + ], + "publishers": [ + "Fatshark" + ] +} diff --git a/data/game/wa/warhammer-vermintide-2-grail-knight-cosmetic-upgrade.json b/data/game/wa/warhammer-vermintide-2-grail-knight-cosmetic-upgrade.json new file mode 100644 index 000000000000..e9208589e9d8 --- /dev/null +++ b/data/game/wa/warhammer-vermintide-2-grail-knight-cosmetic-upgrade.json @@ -0,0 +1,18 @@ +{ + "slug": "warhammer-vermintide-2-grail-knight-cosmetic-upgrade", + "name": "Warhammer: Vermintide 2 - Grail Knight Cosmetic Upgrade", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113179443" + ], + "release_date": "2020-06-23", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Fatshark" + ], + "publishers": [ + "Fatshark" + ] +} diff --git a/data/game/wa/warhammer-vermintide-2-outcast-engineer-career.json b/data/game/wa/warhammer-vermintide-2-outcast-engineer-career.json new file mode 100644 index 000000000000..a9038b5983c9 --- /dev/null +++ b/data/game/wa/warhammer-vermintide-2-outcast-engineer-career.json @@ -0,0 +1,18 @@ +{ + "slug": "warhammer-vermintide-2-outcast-engineer-career", + "name": "Warhammer: Vermintide 2 - Outcast Engineer Career", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113179463" + ], + "release_date": "2020-11-19", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Fatshark" + ], + "publishers": [ + "Fatshark" + ] +} diff --git a/data/game/wa/warhammer-vermintide-2-outcast-engineer-cosmetic-upgrade.json b/data/game/wa/warhammer-vermintide-2-outcast-engineer-cosmetic-upgrade.json new file mode 100644 index 000000000000..55ebe7a4c1f5 --- /dev/null +++ b/data/game/wa/warhammer-vermintide-2-outcast-engineer-cosmetic-upgrade.json @@ -0,0 +1,18 @@ +{ + "slug": "warhammer-vermintide-2-outcast-engineer-cosmetic-upgrade", + "name": "Warhammer: Vermintide 2 - Outcast Engineer Cosmetic Upgrade", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113179507" + ], + "release_date": "2020-11-19", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Fatshark" + ], + "publishers": [ + "Fatshark" + ] +} diff --git a/data/game/wa/warhammer-vermintide-2-shadows-over-b-genhafen.json b/data/game/wa/warhammer-vermintide-2-shadows-over-b-genhafen.json new file mode 100644 index 000000000000..8ebf872c8ca8 --- /dev/null +++ b/data/game/wa/warhammer-vermintide-2-shadows-over-b-genhafen.json @@ -0,0 +1,18 @@ +{ + "slug": "warhammer-vermintide-2-shadows-over-b-genhafen", + "name": "Warhammer: Vermintide 2 - Shadows Over Bögenhafen", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113179411" + ], + "release_date": "2018-08-28", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Fatshark" + ], + "publishers": [ + "Fatshark" + ] +} diff --git a/data/game/wa/warhammer-vermintide-2-sister-of-the-thorn-cosmetic-upgrade.json b/data/game/wa/warhammer-vermintide-2-sister-of-the-thorn-cosmetic-upgrade.json new file mode 100644 index 000000000000..8bb5430c5569 --- /dev/null +++ b/data/game/wa/warhammer-vermintide-2-sister-of-the-thorn-cosmetic-upgrade.json @@ -0,0 +1,18 @@ +{ + "slug": "warhammer-vermintide-2-sister-of-the-thorn-cosmetic-upgrade", + "name": "Warhammer: Vermintide 2 - Sister of the Thorn Cosmetic Upgrade", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113179654" + ], + "release_date": "2021-06-03", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Fatshark" + ], + "publishers": [ + "Fatshark" + ] +} diff --git a/data/game/wa/warhammer-vermintide-2-sister-of-the-thorn.json b/data/game/wa/warhammer-vermintide-2-sister-of-the-thorn.json new file mode 100644 index 000000000000..8f145a5b4004 --- /dev/null +++ b/data/game/wa/warhammer-vermintide-2-sister-of-the-thorn.json @@ -0,0 +1,18 @@ +{ + "slug": "warhammer-vermintide-2-sister-of-the-thorn", + "name": "Warhammer: Vermintide 2 - Sister of the Thorn", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113179597" + ], + "release_date": "2021-06-03", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Fatshark" + ], + "publishers": [ + "Fatshark" + ] +} diff --git a/data/game/wa/warhammer-vermintide-2-winds-of-magic.json b/data/game/wa/warhammer-vermintide-2-winds-of-magic.json new file mode 100644 index 000000000000..2ad3a1d968be --- /dev/null +++ b/data/game/wa/warhammer-vermintide-2-winds-of-magic.json @@ -0,0 +1,18 @@ +{ + "slug": "warhammer-vermintide-2-winds-of-magic", + "name": "Warhammer: Vermintide 2 - Winds of Magic", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113179430" + ], + "release_date": "2019-08-13", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Fatshark" + ], + "publishers": [ + "Fatshark" + ] +} diff --git a/data/game/wa/warhound.json b/data/game/wa/warhound.json new file mode 100644 index 000000000000..a99c1524c3c6 --- /dev/null +++ b/data/game/wa/warhound.json @@ -0,0 +1,15 @@ +{ + "slug": "warhound", + "name": "Warhound", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110727465" + ], + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "action game" + ] +} diff --git a/data/game/wa/warlords-ds.json b/data/game/wa/warlords-ds.json new file mode 100644 index 000000000000..cb6248a5fa3f --- /dev/null +++ b/data/game/wa/warlords-ds.json @@ -0,0 +1,11 @@ +{ + "slug": "warlords-ds", + "name": "Warlords DS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4052956" + ], + "platforms": [ + "Nintendo DS" + ] +} diff --git a/data/game/wa/warlords-i-ii.json b/data/game/wa/warlords-i-ii.json new file mode 100644 index 000000000000..1c2b09e1b784 --- /dev/null +++ b/data/game/wa/warlords-i-ii.json @@ -0,0 +1,15 @@ +{ + "slug": "warlords-i-ii", + "name": "Warlords I + II", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135453284" + ], + "release_date": "2024-05-15", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "strategy video game" + ] +} diff --git a/data/game/wa/warno-northag.json b/data/game/wa/warno-northag.json new file mode 100644 index 000000000000..2dd24bb3e3d8 --- /dev/null +++ b/data/game/wa/warno-northag.json @@ -0,0 +1,8 @@ +{ + "slug": "warno-northag", + "name": "Warno: Northag", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140472070" + ] +} diff --git a/data/game/wa/warrior-pack.json b/data/game/wa/warrior-pack.json new file mode 100644 index 000000000000..568102d32a3a --- /dev/null +++ b/data/game/wa/warrior-pack.json @@ -0,0 +1,13 @@ +{ + "slug": "warrior-pack", + "name": "Warrior Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60617371" + ], + "release_date": "2011-12-20", + "platforms": [ + "PlayStation 3", + "Microsoft Windows" + ] +} diff --git a/data/game/wa/wars-across-the-world-agathocles-312.json b/data/game/wa/wars-across-the-world-agathocles-312.json new file mode 100644 index 000000000000..5502e485f2dc --- /dev/null +++ b/data/game/wa/wars-across-the-world-agathocles-312.json @@ -0,0 +1,16 @@ +{ + "slug": "wars-across-the-world-agathocles-312", + "name": "Wars Across the World: Agathocles 312", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118135148" + ], + "release_date": "2022-02-21", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Strategiae" + ] +} diff --git a/data/game/wa/wars-across-the-world-armada-1588.json b/data/game/wa/wars-across-the-world-armada-1588.json new file mode 100644 index 000000000000..ba886d6ea7cf --- /dev/null +++ b/data/game/wa/wars-across-the-world-armada-1588.json @@ -0,0 +1,19 @@ +{ + "slug": "wars-across-the-world-armada-1588", + "name": "Wars Across the World: Armada 1588", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118135199" + ], + "release_date": "2018-11-27", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Strategiae" + ], + "publishers": [ + "Strategiae" + ] +} diff --git a/data/game/wa/wars-across-the-world-austerlitz-1805.json b/data/game/wa/wars-across-the-world-austerlitz-1805.json new file mode 100644 index 000000000000..93c0f423ec6d --- /dev/null +++ b/data/game/wa/wars-across-the-world-austerlitz-1805.json @@ -0,0 +1,16 @@ +{ + "slug": "wars-across-the-world-austerlitz-1805", + "name": "Wars Across the World: Austerlitz 1805", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118134767" + ], + "release_date": "2017-05-04", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Strategiae" + ] +} diff --git a/data/game/wa/wars-across-the-world-bosworth-1485.json b/data/game/wa/wars-across-the-world-bosworth-1485.json new file mode 100644 index 000000000000..0a81808cbab3 --- /dev/null +++ b/data/game/wa/wars-across-the-world-bosworth-1485.json @@ -0,0 +1,16 @@ +{ + "slug": "wars-across-the-world-bosworth-1485", + "name": "Wars Across The World: Bosworth 1485", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118134821" + ], + "release_date": "2020-01-29", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Strategiae" + ] +} diff --git a/data/game/wa/wars-across-the-world-bouvines-1214.json b/data/game/wa/wars-across-the-world-bouvines-1214.json new file mode 100644 index 000000000000..3c0160ec2a9f --- /dev/null +++ b/data/game/wa/wars-across-the-world-bouvines-1214.json @@ -0,0 +1,16 @@ +{ + "slug": "wars-across-the-world-bouvines-1214", + "name": "Wars Across The World: Bouvines 1214", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118134843" + ], + "release_date": "2021-02-11", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Strategiae" + ] +} diff --git a/data/game/wa/wars-across-the-world-bulge-1944.json b/data/game/wa/wars-across-the-world-bulge-1944.json new file mode 100644 index 000000000000..b79e3e784397 --- /dev/null +++ b/data/game/wa/wars-across-the-world-bulge-1944.json @@ -0,0 +1,16 @@ +{ + "slug": "wars-across-the-world-bulge-1944", + "name": "Wars across the World: Bulge 1944", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118134802" + ], + "release_date": "2017-05-04", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Strategiae" + ] +} diff --git a/data/game/wa/wars-across-the-world-bull-run-1861.json b/data/game/wa/wars-across-the-world-bull-run-1861.json new file mode 100644 index 000000000000..50445047f124 --- /dev/null +++ b/data/game/wa/wars-across-the-world-bull-run-1861.json @@ -0,0 +1,16 @@ +{ + "slug": "wars-across-the-world-bull-run-1861", + "name": "Wars Across the World: Bull Run 1861", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118134772" + ], + "release_date": "2017-05-04", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Strategiae" + ] +} diff --git a/data/game/wa/wars-across-the-world-burma-1942.json b/data/game/wa/wars-across-the-world-burma-1942.json new file mode 100644 index 000000000000..2c8ec31e9939 --- /dev/null +++ b/data/game/wa/wars-across-the-world-burma-1942.json @@ -0,0 +1,16 @@ +{ + "slug": "wars-across-the-world-burma-1942", + "name": "Wars Across The World: Burma 1942", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118135178" + ], + "release_date": "2019-10-28", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Strategiae" + ] +} diff --git a/data/game/wa/wars-across-the-world-byzantium-1116.json b/data/game/wa/wars-across-the-world-byzantium-1116.json new file mode 100644 index 000000000000..62a68ca30285 --- /dev/null +++ b/data/game/wa/wars-across-the-world-byzantium-1116.json @@ -0,0 +1,16 @@ +{ + "slug": "wars-across-the-world-byzantium-1116", + "name": "Wars Across the World: Byzantium 1116", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118134815" + ], + "release_date": "2018-07-31", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Strategiae" + ] +} diff --git a/data/game/wa/wars-across-the-world-caesar-54.json b/data/game/wa/wars-across-the-world-caesar-54.json new file mode 100644 index 000000000000..3dc809ccadff --- /dev/null +++ b/data/game/wa/wars-across-the-world-caesar-54.json @@ -0,0 +1,16 @@ +{ + "slug": "wars-across-the-world-caesar-54", + "name": "Wars Across the World: Caesar 54", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118134832" + ], + "release_date": "2020-12-15", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Strategiae" + ] +} diff --git a/data/game/wa/wars-across-the-world-caesar-56.json b/data/game/wa/wars-across-the-world-caesar-56.json new file mode 100644 index 000000000000..0384e39eb892 --- /dev/null +++ b/data/game/wa/wars-across-the-world-caesar-56.json @@ -0,0 +1,16 @@ +{ + "slug": "wars-across-the-world-caesar-56", + "name": "Wars Across the World: Caesar 56", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118134829" + ], + "release_date": "2020-08-27", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Strategiae" + ] +} diff --git a/data/game/wa/wars-across-the-world-caesar-57.json b/data/game/wa/wars-across-the-world-caesar-57.json new file mode 100644 index 000000000000..a8f38487f726 --- /dev/null +++ b/data/game/wa/wars-across-the-world-caesar-57.json @@ -0,0 +1,16 @@ +{ + "slug": "wars-across-the-world-caesar-57", + "name": "Wars Across the World: Caesar 57", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118134813" + ], + "release_date": "2020-06-10", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Strategiae" + ] +} diff --git a/data/game/wa/wars-across-the-world-caesar-58.json b/data/game/wa/wars-across-the-world-caesar-58.json new file mode 100644 index 000000000000..c4f475504f56 --- /dev/null +++ b/data/game/wa/wars-across-the-world-caesar-58.json @@ -0,0 +1,16 @@ +{ + "slug": "wars-across-the-world-caesar-58", + "name": "Wars Across the World: Caesar 58", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118134810" + ], + "release_date": "2020-04-30", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Strategiae" + ] +} diff --git a/data/game/wa/wars-across-the-world-carrhae-53.json b/data/game/wa/wars-across-the-world-carrhae-53.json new file mode 100644 index 000000000000..0ab68c563c32 --- /dev/null +++ b/data/game/wa/wars-across-the-world-carrhae-53.json @@ -0,0 +1,16 @@ +{ + "slug": "wars-across-the-world-carrhae-53", + "name": "Wars Across the World: Carrhae 53", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118134789" + ], + "release_date": "2017-05-04", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Strategiae" + ] +} diff --git a/data/game/wa/wars-across-the-world-columbus-1492.json b/data/game/wa/wars-across-the-world-columbus-1492.json new file mode 100644 index 000000000000..ccf50159a99a --- /dev/null +++ b/data/game/wa/wars-across-the-world-columbus-1492.json @@ -0,0 +1,16 @@ +{ + "slug": "wars-across-the-world-columbus-1492", + "name": "Wars Across The World: Columbus 1492", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118134822" + ], + "release_date": "2020-09-29", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Strategiae" + ] +} diff --git a/data/game/wa/wars-across-the-world-congo-1964.json b/data/game/wa/wars-across-the-world-congo-1964.json new file mode 100644 index 000000000000..375f409d9961 --- /dev/null +++ b/data/game/wa/wars-across-the-world-congo-1964.json @@ -0,0 +1,16 @@ +{ + "slug": "wars-across-the-world-congo-1964", + "name": "Wars Across the World: Congo 1964", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118134782" + ], + "release_date": "2017-06-21", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Strategiae" + ] +} diff --git a/data/game/wa/wars-across-the-world-coral-sea-1942.json b/data/game/wa/wars-across-the-world-coral-sea-1942.json new file mode 100644 index 000000000000..c998c7bdfd1e --- /dev/null +++ b/data/game/wa/wars-across-the-world-coral-sea-1942.json @@ -0,0 +1,19 @@ +{ + "slug": "wars-across-the-world-coral-sea-1942", + "name": "Wars Across The World: Coral Sea 1942", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118135190" + ], + "release_date": "2020-05-26", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Strategiae" + ], + "publishers": [ + "Strategiae" + ] +} diff --git a/data/game/wa/wars-across-the-world-cortenuova-1237.json b/data/game/wa/wars-across-the-world-cortenuova-1237.json new file mode 100644 index 000000000000..ec0045692932 --- /dev/null +++ b/data/game/wa/wars-across-the-world-cortenuova-1237.json @@ -0,0 +1,16 @@ +{ + "slug": "wars-across-the-world-cortenuova-1237", + "name": "Wars Across The World: Cortenuova 1237", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118134853" + ], + "release_date": "2021-09-30", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Strategiae" + ] +} diff --git a/data/game/wa/wars-across-the-world-curupayti-1866.json b/data/game/wa/wars-across-the-world-curupayti-1866.json new file mode 100644 index 000000000000..8f5d571aca67 --- /dev/null +++ b/data/game/wa/wars-across-the-world-curupayti-1866.json @@ -0,0 +1,16 @@ +{ + "slug": "wars-across-the-world-curupayti-1866", + "name": "Wars Across The World: Curupayti 1866", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118134855" + ], + "release_date": "2022-05-25", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Strategiae" + ] +} diff --git a/data/game/wa/wars-across-the-world-dublin-1916.json b/data/game/wa/wars-across-the-world-dublin-1916.json new file mode 100644 index 000000000000..94d82b3bb1d9 --- /dev/null +++ b/data/game/wa/wars-across-the-world-dublin-1916.json @@ -0,0 +1,16 @@ +{ + "slug": "wars-across-the-world-dublin-1916", + "name": "Wars Across The World: Dublin 1916", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118135182" + ], + "release_date": "2021-11-24", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Strategiae" + ] +} diff --git a/data/game/wa/wars-across-the-world-estonia-1918.json b/data/game/wa/wars-across-the-world-estonia-1918.json new file mode 100644 index 000000000000..69a010385f99 --- /dev/null +++ b/data/game/wa/wars-across-the-world-estonia-1918.json @@ -0,0 +1,16 @@ +{ + "slug": "wars-across-the-world-estonia-1918", + "name": "Wars Across the World: Estonia 1918", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118135164" + ], + "release_date": "2018-02-28", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Strategiae" + ] +} diff --git a/data/game/wa/wars-across-the-world-eunus-133.json b/data/game/wa/wars-across-the-world-eunus-133.json new file mode 100644 index 000000000000..75d0ae5211ba --- /dev/null +++ b/data/game/wa/wars-across-the-world-eunus-133.json @@ -0,0 +1,16 @@ +{ + "slug": "wars-across-the-world-eunus-133", + "name": "Wars Across The World: Eunus 133", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118135183" + ], + "release_date": "2022-06-21", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Strategiae" + ] +} diff --git a/data/game/wa/wars-across-the-world-finland-1808.json b/data/game/wa/wars-across-the-world-finland-1808.json new file mode 100644 index 000000000000..2851d848ce31 --- /dev/null +++ b/data/game/wa/wars-across-the-world-finland-1808.json @@ -0,0 +1,16 @@ +{ + "slug": "wars-across-the-world-finland-1808", + "name": "Wars Across The World: Finland 1808", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118135185" + ], + "release_date": "2022-11-18", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Strategiae" + ] +} diff --git a/data/game/wa/wars-across-the-world-finland-1918.json b/data/game/wa/wars-across-the-world-finland-1918.json new file mode 100644 index 000000000000..7ab8ffe061d3 --- /dev/null +++ b/data/game/wa/wars-across-the-world-finland-1918.json @@ -0,0 +1,16 @@ +{ + "slug": "wars-across-the-world-finland-1918", + "name": "Wars Across the World: Finland 1918", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118134796" + ], + "release_date": "2017-09-15", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Strategiae" + ] +} diff --git a/data/game/wa/wars-across-the-world-fornovo-1495.json b/data/game/wa/wars-across-the-world-fornovo-1495.json new file mode 100644 index 000000000000..ddc29dd98910 --- /dev/null +++ b/data/game/wa/wars-across-the-world-fornovo-1495.json @@ -0,0 +1,16 @@ +{ + "slug": "wars-across-the-world-fornovo-1495", + "name": "Wars Across the World: Fornovo 1495", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118134803" + ], + "release_date": "2019-04-23", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Strategiae" + ] +} diff --git a/data/game/wa/wars-across-the-world-franche-comt-1636.json b/data/game/wa/wars-across-the-world-franche-comt-1636.json new file mode 100644 index 000000000000..d6a40598731b --- /dev/null +++ b/data/game/wa/wars-across-the-world-franche-comt-1636.json @@ -0,0 +1,16 @@ +{ + "slug": "wars-across-the-world-franche-comt-1636", + "name": "Wars Across The World: Franche-Comté 1636", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118134824" + ], + "release_date": "2020-02-27", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Strategiae" + ] +} diff --git a/data/game/wa/wars-across-the-world-galicia-1914.json b/data/game/wa/wars-across-the-world-galicia-1914.json new file mode 100644 index 000000000000..3dbe6a909b64 --- /dev/null +++ b/data/game/wa/wars-across-the-world-galicia-1914.json @@ -0,0 +1,16 @@ +{ + "slug": "wars-across-the-world-galicia-1914", + "name": "Wars Across The World: Galicia 1914", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118134839" + ], + "release_date": "2020-08-04", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Strategiae" + ] +} diff --git a/data/game/wa/wars-across-the-world-gandamak1842.json b/data/game/wa/wars-across-the-world-gandamak1842.json new file mode 100644 index 000000000000..4e58b1cee78b --- /dev/null +++ b/data/game/wa/wars-across-the-world-gandamak1842.json @@ -0,0 +1,16 @@ +{ + "slug": "wars-across-the-world-gandamak1842", + "name": "Wars Across the World: Gandamak1842", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118134809" + ], + "release_date": "2019-06-03", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Strategiae" + ] +} diff --git a/data/game/wa/wars-across-the-world-gulf-1990.json b/data/game/wa/wars-across-the-world-gulf-1990.json new file mode 100644 index 000000000000..c16b5536f9a3 --- /dev/null +++ b/data/game/wa/wars-across-the-world-gulf-1990.json @@ -0,0 +1,16 @@ +{ + "slug": "wars-across-the-world-gulf-1990", + "name": "Wars Across the World: Gulf 1990", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118134794" + ], + "release_date": "2018-11-27", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Strategiae" + ] +} diff --git a/data/game/wa/wars-across-the-world-hamilkar-264.json b/data/game/wa/wars-across-the-world-hamilkar-264.json new file mode 100644 index 000000000000..0c620f97ac1c --- /dev/null +++ b/data/game/wa/wars-across-the-world-hamilkar-264.json @@ -0,0 +1,16 @@ +{ + "slug": "wars-across-the-world-hamilkar-264", + "name": "Wars Across the World: Hamilkar 264", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118134780" + ], + "release_date": "2017-05-04", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Strategiae" + ] +} diff --git a/data/game/wa/wars-across-the-world-illyria-229.json b/data/game/wa/wars-across-the-world-illyria-229.json new file mode 100644 index 000000000000..90c0acdd9657 --- /dev/null +++ b/data/game/wa/wars-across-the-world-illyria-229.json @@ -0,0 +1,16 @@ +{ + "slug": "wars-across-the-world-illyria-229", + "name": "Wars Across The World: Illyria 229", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118134838" + ], + "release_date": "2019-08-09", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Strategiae" + ] +} diff --git a/data/game/wa/wars-across-the-world-innsmouth-1928.json b/data/game/wa/wars-across-the-world-innsmouth-1928.json new file mode 100644 index 000000000000..fee399f1b062 --- /dev/null +++ b/data/game/wa/wars-across-the-world-innsmouth-1928.json @@ -0,0 +1,16 @@ +{ + "slug": "wars-across-the-world-innsmouth-1928", + "name": "Wars Across The World: Innsmouth 1928", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118134820" + ], + "release_date": "2018-11-27", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Strategiae" + ] +} diff --git a/data/game/wa/wars-across-the-world-kavkaz-1804.json b/data/game/wa/wars-across-the-world-kavkaz-1804.json new file mode 100644 index 000000000000..8e67a7979baa --- /dev/null +++ b/data/game/wa/wars-across-the-world-kavkaz-1804.json @@ -0,0 +1,16 @@ +{ + "slug": "wars-across-the-world-kavkaz-1804", + "name": "Wars Across the World: Kavkaz 1804", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118134797" + ], + "release_date": "2017-10-20", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Strategiae" + ] +} diff --git a/data/game/wa/wars-across-the-world-kentucky-1861.json b/data/game/wa/wars-across-the-world-kentucky-1861.json new file mode 100644 index 000000000000..bf9e9d335e5f --- /dev/null +++ b/data/game/wa/wars-across-the-world-kentucky-1861.json @@ -0,0 +1,16 @@ +{ + "slug": "wars-across-the-world-kentucky-1861", + "name": "Wars Across the World: Kentucky 1861", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118134774" + ], + "release_date": "2017-05-04", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Strategiae" + ] +} diff --git a/data/game/wa/wars-across-the-world-kippur-1973.json b/data/game/wa/wars-across-the-world-kippur-1973.json new file mode 100644 index 000000000000..a7a1f4a40b9e --- /dev/null +++ b/data/game/wa/wars-across-the-world-kippur-1973.json @@ -0,0 +1,16 @@ +{ + "slug": "wars-across-the-world-kippur-1973", + "name": "Wars Across The World: Kippur 1973", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118134834" + ], + "release_date": "2020-10-06", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Strategiae" + ] +} diff --git a/data/game/wa/wars-across-the-world-koenigsberg-1945.json b/data/game/wa/wars-across-the-world-koenigsberg-1945.json new file mode 100644 index 000000000000..e0df241bd765 --- /dev/null +++ b/data/game/wa/wars-across-the-world-koenigsberg-1945.json @@ -0,0 +1,16 @@ +{ + "slug": "wars-across-the-world-koenigsberg-1945", + "name": "Wars Across the World: Koenigsberg 1945", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118135169" + ], + "release_date": "2018-06-01", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Strategiae" + ] +} diff --git a/data/game/wa/wars-across-the-world-korea-1592.json b/data/game/wa/wars-across-the-world-korea-1592.json new file mode 100644 index 000000000000..0263ec5af799 --- /dev/null +++ b/data/game/wa/wars-across-the-world-korea-1592.json @@ -0,0 +1,16 @@ +{ + "slug": "wars-across-the-world-korea-1592", + "name": "Wars Across The World: Korea 1592", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118134846" + ], + "release_date": "2021-01-14", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Strategiae" + ] +} diff --git a/data/game/wa/wars-across-the-world-korea-1950.json b/data/game/wa/wars-across-the-world-korea-1950.json new file mode 100644 index 000000000000..6e6b34f2b90c --- /dev/null +++ b/data/game/wa/wars-across-the-world-korea-1950.json @@ -0,0 +1,16 @@ +{ + "slug": "wars-across-the-world-korea-1950", + "name": "Wars Across the World: Korea 1950", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118134768" + ], + "release_date": "2017-05-04", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Strategiae" + ] +} diff --git a/data/game/wa/wars-across-the-world-levant-1941.json b/data/game/wa/wars-across-the-world-levant-1941.json new file mode 100644 index 000000000000..40a38e73a573 --- /dev/null +++ b/data/game/wa/wars-across-the-world-levant-1941.json @@ -0,0 +1,16 @@ +{ + "slug": "wars-across-the-world-levant-1941", + "name": "Wars Across The World: Levant 1941", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118134850" + ], + "release_date": "2021-06-16", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Strategiae" + ] +} diff --git a/data/game/wa/wars-across-the-world-malaya-1941.json b/data/game/wa/wars-across-the-world-malaya-1941.json new file mode 100644 index 000000000000..e1e004e42f91 --- /dev/null +++ b/data/game/wa/wars-across-the-world-malaya-1941.json @@ -0,0 +1,16 @@ +{ + "slug": "wars-across-the-world-malaya-1941", + "name": "Wars Across the World: Malaya 1941", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118134806" + ], + "release_date": "2018-03-29", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Strategiae" + ] +} diff --git a/data/game/wa/wars-across-the-world-mali-2012.json b/data/game/wa/wars-across-the-world-mali-2012.json new file mode 100644 index 000000000000..500f233db406 --- /dev/null +++ b/data/game/wa/wars-across-the-world-mali-2012.json @@ -0,0 +1,16 @@ +{ + "slug": "wars-across-the-world-mali-2012", + "name": "Wars Across the World: Mali 2012", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118134785" + ], + "release_date": "2017-05-04", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Strategiae" + ] +} diff --git a/data/game/wa/wars-across-the-world-manchuria-1945.json b/data/game/wa/wars-across-the-world-manchuria-1945.json new file mode 100644 index 000000000000..0f6fa977c088 --- /dev/null +++ b/data/game/wa/wars-across-the-world-manchuria-1945.json @@ -0,0 +1,16 @@ +{ + "slug": "wars-across-the-world-manchuria-1945", + "name": "Wars Across The World: Manchuria 1945", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118135180" + ], + "release_date": "2021-08-12", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Strategiae" + ] +} diff --git a/data/game/wa/wars-across-the-world-mexico-1519.json b/data/game/wa/wars-across-the-world-mexico-1519.json new file mode 100644 index 000000000000..804aa98ef6de --- /dev/null +++ b/data/game/wa/wars-across-the-world-mexico-1519.json @@ -0,0 +1,16 @@ +{ + "slug": "wars-across-the-world-mexico-1519", + "name": "Wars Across The World: Mexico 1519", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118135171" + ], + "release_date": "2018-12-28", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Strategiae" + ] +} diff --git a/data/game/wa/wars-across-the-world-missouri-1861.json b/data/game/wa/wars-across-the-world-missouri-1861.json new file mode 100644 index 000000000000..9850fa81b6f3 --- /dev/null +++ b/data/game/wa/wars-across-the-world-missouri-1861.json @@ -0,0 +1,16 @@ +{ + "slug": "wars-across-the-world-missouri-1861", + "name": "Wars Across the World: Missouri 1861", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118134775" + ], + "release_date": "2017-05-04", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Strategiae" + ] +} diff --git a/data/game/wa/wars-across-the-world-morat-1476.json b/data/game/wa/wars-across-the-world-morat-1476.json new file mode 100644 index 000000000000..917bd0848f11 --- /dev/null +++ b/data/game/wa/wars-across-the-world-morat-1476.json @@ -0,0 +1,16 @@ +{ + "slug": "wars-across-the-world-morat-1476", + "name": "Wars Across the World: Morat 1476", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118134816" + ], + "release_date": "2017-11-30", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Strategiae" + ] +} diff --git a/data/game/wa/wars-across-the-world-nordwind-1945.json b/data/game/wa/wars-across-the-world-nordwind-1945.json new file mode 100644 index 000000000000..396ac9b815e2 --- /dev/null +++ b/data/game/wa/wars-across-the-world-nordwind-1945.json @@ -0,0 +1,16 @@ +{ + "slug": "wars-across-the-world-nordwind-1945", + "name": "Wars Across The World: Nordwind 1945", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118134825" + ], + "release_date": "2019-12-18", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Strategiae" + ] +} diff --git a/data/game/wa/wars-across-the-world-normandy-1944.json b/data/game/wa/wars-across-the-world-normandy-1944.json new file mode 100644 index 000000000000..d82c1c7dac15 --- /dev/null +++ b/data/game/wa/wars-across-the-world-normandy-1944.json @@ -0,0 +1,16 @@ +{ + "slug": "wars-across-the-world-normandy-1944", + "name": "Wars Across the World: Normandy 1944", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118134770" + ], + "release_date": "2017-05-04", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Strategiae" + ] +} diff --git a/data/game/wa/wars-across-the-world-persia-1856.json b/data/game/wa/wars-across-the-world-persia-1856.json new file mode 100644 index 000000000000..2dfb7fb76d29 --- /dev/null +++ b/data/game/wa/wars-across-the-world-persia-1856.json @@ -0,0 +1,16 @@ +{ + "slug": "wars-across-the-world-persia-1856", + "name": "Wars Across the World: Persia 1856", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118134799" + ], + "release_date": "2018-01-31", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Strategiae" + ] +} diff --git a/data/game/wa/wars-across-the-world-rhodesia-1972.json b/data/game/wa/wars-across-the-world-rhodesia-1972.json new file mode 100644 index 000000000000..426b9635d5c5 --- /dev/null +++ b/data/game/wa/wars-across-the-world-rhodesia-1972.json @@ -0,0 +1,16 @@ +{ + "slug": "wars-across-the-world-rhodesia-1972", + "name": "Wars Across the World: Rhodesia 1972", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118134808" + ], + "release_date": "2018-12-06", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Strategiae" + ] +} diff --git a/data/game/wa/wars-across-the-world-sepoy-1857.json b/data/game/wa/wars-across-the-world-sepoy-1857.json new file mode 100644 index 000000000000..4236525f11fd --- /dev/null +++ b/data/game/wa/wars-across-the-world-sepoy-1857.json @@ -0,0 +1,16 @@ +{ + "slug": "wars-across-the-world-sepoy-1857", + "name": "Wars Across the World: Sepoy 1857", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118135149" + ], + "release_date": "2022-07-28", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Strategiae" + ] +} diff --git a/data/game/wa/wars-across-the-world-serbia-1914.json b/data/game/wa/wars-across-the-world-serbia-1914.json new file mode 100644 index 000000000000..c863168ab8d7 --- /dev/null +++ b/data/game/wa/wars-across-the-world-serbia-1914.json @@ -0,0 +1,16 @@ +{ + "slug": "wars-across-the-world-serbia-1914", + "name": "Wars Across The World: Serbia 1914", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118135177" + ], + "release_date": "2021-04-29", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Strategiae" + ] +} diff --git a/data/game/wa/wars-across-the-world-sicily-1943.json b/data/game/wa/wars-across-the-world-sicily-1943.json new file mode 100644 index 000000000000..b118f0af0a11 --- /dev/null +++ b/data/game/wa/wars-across-the-world-sicily-1943.json @@ -0,0 +1,16 @@ +{ + "slug": "wars-across-the-world-sicily-1943", + "name": "Wars Across the World: Sicily 1943", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118135168" + ], + "release_date": "2019-02-01", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Strategiae" + ] +} diff --git a/data/game/wa/wars-across-the-world-soccer-1969.json b/data/game/wa/wars-across-the-world-soccer-1969.json new file mode 100644 index 000000000000..bff70f319ccf --- /dev/null +++ b/data/game/wa/wars-across-the-world-soccer-1969.json @@ -0,0 +1,16 @@ +{ + "slug": "wars-across-the-world-soccer-1969", + "name": "Wars Across The World: Soccer 1969", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118134827" + ], + "release_date": "2020-03-30", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Strategiae" + ] +} diff --git a/data/game/wa/wars-across-the-world-spain-1936.json b/data/game/wa/wars-across-the-world-spain-1936.json new file mode 100644 index 000000000000..8cc74a43adb5 --- /dev/null +++ b/data/game/wa/wars-across-the-world-spain-1936.json @@ -0,0 +1,16 @@ +{ + "slug": "wars-across-the-world-spain-1936", + "name": "Wars Across the World: Spain 1936", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118135165" + ], + "release_date": "2019-03-21", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Strategiae" + ] +} diff --git a/data/game/wa/wars-across-the-world-switzerland-1937.json b/data/game/wa/wars-across-the-world-switzerland-1937.json new file mode 100644 index 000000000000..d7af9f0b2023 --- /dev/null +++ b/data/game/wa/wars-across-the-world-switzerland-1937.json @@ -0,0 +1,16 @@ +{ + "slug": "wars-across-the-world-switzerland-1937", + "name": "Wars Across The World: Switzerland 1937", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118135173" + ], + "release_date": "2019-02-21", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Strategiae" + ] +} diff --git a/data/game/wa/wars-across-the-world-tannenberg-1914.json b/data/game/wa/wars-across-the-world-tannenberg-1914.json new file mode 100644 index 000000000000..b0f2fad182d2 --- /dev/null +++ b/data/game/wa/wars-across-the-world-tannenberg-1914.json @@ -0,0 +1,16 @@ +{ + "slug": "wars-across-the-world-tannenberg-1914", + "name": "Wars Across the World: Tannenberg 1914", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118134791" + ], + "release_date": "2017-05-04", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Strategiae" + ] +} diff --git a/data/game/wa/wars-across-the-world-uganda-1979.json b/data/game/wa/wars-across-the-world-uganda-1979.json new file mode 100644 index 000000000000..1101ce71434f --- /dev/null +++ b/data/game/wa/wars-across-the-world-uganda-1979.json @@ -0,0 +1,16 @@ +{ + "slug": "wars-across-the-world-uganda-1979", + "name": "Wars Across The World: Uganda 1979", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118135175" + ], + "release_date": "2019-09-26", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Strategiae" + ] +} diff --git a/data/game/wa/wars-across-the-world-waterloo-1815.json b/data/game/wa/wars-across-the-world-waterloo-1815.json new file mode 100644 index 000000000000..76dbaebe07af --- /dev/null +++ b/data/game/wa/wars-across-the-world-waterloo-1815.json @@ -0,0 +1,16 @@ +{ + "slug": "wars-across-the-world-waterloo-1815", + "name": "Wars Across the World: Waterloo 1815", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118134787" + ], + "release_date": "2017-05-04", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Strategiae" + ] +} diff --git a/data/game/wa/wars-across-the-world-west-virginia-1861.json b/data/game/wa/wars-across-the-world-west-virginia-1861.json new file mode 100644 index 000000000000..eb531bea9453 --- /dev/null +++ b/data/game/wa/wars-across-the-world-west-virginia-1861.json @@ -0,0 +1,16 @@ +{ + "slug": "wars-across-the-world-west-virginia-1861", + "name": "Wars Across the World: West Virginia 1861", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118134777" + ], + "release_date": "2017-05-04", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Strategiae" + ] +} diff --git a/data/game/wa/wars-across-the-world-zulu-1879.json b/data/game/wa/wars-across-the-world-zulu-1879.json new file mode 100644 index 000000000000..23e6222f0d71 --- /dev/null +++ b/data/game/wa/wars-across-the-world-zulu-1879.json @@ -0,0 +1,19 @@ +{ + "slug": "wars-across-the-world-zulu-1879", + "name": "Wars Across The World: Zulu 1879", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118135204" + ], + "release_date": "2023-03-24", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Strategiae" + ], + "publishers": [ + "Avalon Digital" + ] +} diff --git a/data/game/wa/wash-simulator-cash-boost-dlc.json b/data/game/wa/wash-simulator-cash-boost-dlc.json new file mode 100644 index 000000000000..839e0c17dee1 --- /dev/null +++ b/data/game/wa/wash-simulator-cash-boost-dlc.json @@ -0,0 +1,18 @@ +{ + "slug": "wash-simulator-cash-boost-dlc", + "name": "Wash Simulator - Cash Boost DLC", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131405846" + ], + "release_date": "2024-09-10", + "genres": [ + "simulation video game" + ], + "developers": [ + "Dezvolt Games" + ], + "publishers": [ + "Dezvolt Games" + ] +} diff --git a/data/game/wa/watch-dogs-bad-blood.json b/data/game/wa/watch-dogs-bad-blood.json new file mode 100644 index 000000000000..a7e8b4ef82ce --- /dev/null +++ b/data/game/wa/watch-dogs-bad-blood.json @@ -0,0 +1,8 @@ +{ + "slug": "watch-dogs-bad-blood", + "name": "Watch Dogs: Bad Blood", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q64577202" + ] +} diff --git a/data/game/wa/watch-dogs-complete-edition.json b/data/game/wa/watch-dogs-complete-edition.json new file mode 100644 index 000000000000..6fa4879a7e00 --- /dev/null +++ b/data/game/wa/watch-dogs-complete-edition.json @@ -0,0 +1,8 @@ +{ + "slug": "watch-dogs-complete-edition", + "name": "Watch Dogs Complete Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131407203" + ] +} diff --git a/data/game/wa/watch-dogs-legion-bloodline.json b/data/game/wa/watch-dogs-legion-bloodline.json new file mode 100644 index 000000000000..61fd61daadd3 --- /dev/null +++ b/data/game/wa/watch-dogs-legion-bloodline.json @@ -0,0 +1,8 @@ +{ + "slug": "watch-dogs-legion-bloodline", + "name": "Watch Dogs: Legion - Bloodline", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135920989" + ] +} diff --git a/data/game/wa/waxweb.json b/data/game/wa/waxweb.json new file mode 100644 index 000000000000..373538ddd302 --- /dev/null +++ b/data/game/wa/waxweb.json @@ -0,0 +1,9 @@ +{ + "slug": "waxweb", + "name": "Waxweb", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7975726" + ], + "release_date": "1994-01-01" +} diff --git a/data/game/wa/way-of-the-hunter-elite-edition.json b/data/game/wa/way-of-the-hunter-elite-edition.json new file mode 100644 index 000000000000..0766118e1ccd --- /dev/null +++ b/data/game/wa/way-of-the-hunter-elite-edition.json @@ -0,0 +1,18 @@ +{ + "slug": "way-of-the-hunter-elite-edition", + "name": "Way of the Hunter: Elite Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115525968" + ], + "release_date": "2022-08-16", + "platforms": [ + "Xbox Series X and Series S" + ], + "developers": [ + "Nine Rocks Games" + ], + "publishers": [ + "THQ Nordic" + ] +} diff --git a/data/game/we/we-happy-few-we-all-fall-down.json b/data/game/we/we-happy-few-we-all-fall-down.json new file mode 100644 index 000000000000..7a69076b0f96 --- /dev/null +++ b/data/game/we/we-happy-few-we-all-fall-down.json @@ -0,0 +1,8 @@ +{ + "slug": "we-happy-few-we-all-fall-down", + "name": "We Happy Few: We All Fall Down", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140448083" + ] +} diff --git a/data/game/we/westward-collection.json b/data/game/we/westward-collection.json new file mode 100644 index 000000000000..1029cc87e359 --- /dev/null +++ b/data/game/we/westward-collection.json @@ -0,0 +1,17 @@ +{ + "slug": "westward-collection", + "name": "Westward Collection", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120795108" + ], + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Sandlot Games" + ], + "publishers": [ + "Sandlot Games" + ] +} diff --git a/data/game/wh/whale-s-voyage-2-cd.json b/data/game/wh/whale-s-voyage-2-cd.json new file mode 100644 index 000000000000..c703f253ab27 --- /dev/null +++ b/data/game/wh/whale-s-voyage-2-cd.json @@ -0,0 +1,8 @@ +{ + "slug": "whale-s-voyage-2-cd", + "name": "Whale's Voyage 2 CD", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126184710" + ] +} diff --git a/data/game/wh/where-s-the-baby.json b/data/game/wh/where-s-the-baby.json new file mode 100644 index 000000000000..cb1c0dc520d9 --- /dev/null +++ b/data/game/wh/where-s-the-baby.json @@ -0,0 +1,9 @@ +{ + "slug": "where-s-the-baby", + "name": "Where's the Baby!", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126958216" + ], + "release_date": "2016-03-12" +} diff --git a/data/game/wh/white-album2-extended-edition.json b/data/game/wh/white-album2-extended-edition.json new file mode 100644 index 000000000000..45f849b9db2e --- /dev/null +++ b/data/game/wh/white-album2-extended-edition.json @@ -0,0 +1,15 @@ +{ + "slug": "white-album2-extended-edition", + "name": "WHITE ALBUM2 EXTENDED EDITION", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123510978" + ], + "release_date": "2018-02-14", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Leaf" + ] +} diff --git a/data/game/wh/white-knuckle-demo.json b/data/game/wh/white-knuckle-demo.json new file mode 100644 index 000000000000..1cf5035a937f --- /dev/null +++ b/data/game/wh/white-knuckle-demo.json @@ -0,0 +1,19 @@ +{ + "slug": "white-knuckle-demo", + "name": "White Knuckle Demo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137697986" + ], + "release_date": "2024-10-24", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "platformer", + "first-person adventure" + ], + "publishers": [ + "DreadXP" + ] +} diff --git a/data/game/wi/wikidata-game.json b/data/game/wi/wikidata-game.json new file mode 100644 index 000000000000..614f7559f45e --- /dev/null +++ b/data/game/wi/wikidata-game.json @@ -0,0 +1,11 @@ +{ + "slug": "wikidata-game", + "name": "Wikidata Game", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17595556" + ], + "genres": [ + "wikigames" + ] +} diff --git a/data/game/wi/wild-adventure-pinball.json b/data/game/wi/wild-adventure-pinball.json new file mode 100644 index 000000000000..a042573a2bf9 --- /dev/null +++ b/data/game/wi/wild-adventure-pinball.json @@ -0,0 +1,18 @@ +{ + "slug": "wild-adventure-pinball", + "name": "Wild & Adventure Pinball", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110060809" + ], + "release_date": "2021-12-10", + "genres": [ + "pinball video game" + ], + "developers": [ + "Super PowerUp Games" + ], + "publishers": [ + "Super PowerUp Games" + ] +} diff --git a/data/game/wi/williams-arcade-s-greatest-hits.json b/data/game/wi/williams-arcade-s-greatest-hits.json new file mode 100644 index 000000000000..b0c949b05c91 --- /dev/null +++ b/data/game/wi/williams-arcade-s-greatest-hits.json @@ -0,0 +1,18 @@ +{ + "slug": "williams-arcade-s-greatest-hits", + "name": "Williams Arcade's Greatest Hits", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8020976" + ], + "release_date": "1996-01-01", + "platforms": [ + "Super Nintendo Entertainment System" + ], + "genres": [ + "action game" + ], + "publishers": [ + "WMS Industries" + ] +} diff --git a/data/game/wi/windoom-q67221120.json b/data/game/wi/windoom-q67221120.json new file mode 100644 index 000000000000..96e49a82e6eb --- /dev/null +++ b/data/game/wi/windoom-q67221120.json @@ -0,0 +1,11 @@ +{ + "slug": "windoom-q67221120", + "name": "WinDoom", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q67221120" + ], + "developers": [ + "Gabe Newell" + ] +} diff --git a/data/game/wi/windoom.json b/data/game/wi/windoom.json new file mode 100644 index 000000000000..e5fa8be8d5a3 --- /dev/null +++ b/data/game/wi/windoom.json @@ -0,0 +1,8 @@ +{ + "slug": "windoom", + "name": "WinDoom", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q67200475" + ] +} diff --git a/data/game/wi/wing-commander-deluxe-edition.json b/data/game/wi/wing-commander-deluxe-edition.json new file mode 100644 index 000000000000..78894dce37a2 --- /dev/null +++ b/data/game/wi/wing-commander-deluxe-edition.json @@ -0,0 +1,8 @@ +{ + "slug": "wing-commander-deluxe-edition", + "name": "Wing Commander: Deluxe Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124151018" + ] +} diff --git a/data/game/wi/wing-commander-ii-deluxe-edition.json b/data/game/wi/wing-commander-ii-deluxe-edition.json new file mode 100644 index 000000000000..dc544b6328c9 --- /dev/null +++ b/data/game/wi/wing-commander-ii-deluxe-edition.json @@ -0,0 +1,8 @@ +{ + "slug": "wing-commander-ii-deluxe-edition", + "name": "Wing Commander II: Deluxe Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124151021" + ] +} diff --git a/data/game/wi/wing-commander-privateer-speech-pack.json b/data/game/wi/wing-commander-privateer-speech-pack.json new file mode 100644 index 000000000000..b3036526f6c1 --- /dev/null +++ b/data/game/wi/wing-commander-privateer-speech-pack.json @@ -0,0 +1,8 @@ +{ + "slug": "wing-commander-privateer-speech-pack", + "name": "Wing Commander: Privateer - Speech Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126032131" + ] +} diff --git a/data/game/wi/wing-commander-the-kilrathi-saga.json b/data/game/wi/wing-commander-the-kilrathi-saga.json new file mode 100644 index 000000000000..7a7aec814fd6 --- /dev/null +++ b/data/game/wi/wing-commander-the-kilrathi-saga.json @@ -0,0 +1,11 @@ +{ + "slug": "wing-commander-the-kilrathi-saga", + "name": "Wing Commander: The Kilrathi Saga", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123697478" + ], + "platforms": [ + "Microsoft Windows" + ] +} diff --git a/data/game/wi/wings-of-power-ii-wwii-fighters-special-edition.json b/data/game/wi/wings-of-power-ii-wwii-fighters-special-edition.json new file mode 100644 index 000000000000..7b78b695d648 --- /dev/null +++ b/data/game/wi/wings-of-power-ii-wwii-fighters-special-edition.json @@ -0,0 +1,14 @@ +{ + "slug": "wings-of-power-ii-wwii-fighters-special-edition", + "name": "Wings of Power II: WWII Fighters Special Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110817166" + ], + "genres": [ + "simulation video game" + ], + "publishers": [ + "Excalibur Games" + ] +} diff --git a/data/game/wi/winmbf.json b/data/game/wi/winmbf.json new file mode 100644 index 000000000000..efa1428d6744 --- /dev/null +++ b/data/game/wi/winmbf.json @@ -0,0 +1,8 @@ +{ + "slug": "winmbf", + "name": "WinMBF", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124429016" + ] +} diff --git a/data/game/wi/winquake.json b/data/game/wi/winquake.json new file mode 100644 index 000000000000..67a07617219b --- /dev/null +++ b/data/game/wi/winquake.json @@ -0,0 +1,8 @@ +{ + "slug": "winquake", + "name": "WinQuake", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120671314" + ] +} diff --git a/data/game/wi/wipeout-hd-fury.json b/data/game/wi/wipeout-hd-fury.json new file mode 100644 index 000000000000..d2f5a51b96f6 --- /dev/null +++ b/data/game/wi/wipeout-hd-fury.json @@ -0,0 +1,11 @@ +{ + "slug": "wipeout-hd-fury", + "name": "Wipeout HD Fury", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q103866416" + ], + "platforms": [ + "PlayStation 3" + ] +} diff --git a/data/game/wi/wipeout-omega-collection.json b/data/game/wi/wipeout-omega-collection.json new file mode 100644 index 000000000000..245765693c32 --- /dev/null +++ b/data/game/wi/wipeout-omega-collection.json @@ -0,0 +1,15 @@ +{ + "slug": "wipeout-omega-collection", + "name": "Wipeout Omega Collection", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28406508" + ], + "release_date": "2017-06-06", + "platforms": [ + "PlayStation 4" + ], + "genres": [ + "racing video game" + ] +} diff --git a/data/game/wi/wipeout-pure-stealth-edition.json b/data/game/wi/wipeout-pure-stealth-edition.json new file mode 100644 index 000000000000..d3ed11d82869 --- /dev/null +++ b/data/game/wi/wipeout-pure-stealth-edition.json @@ -0,0 +1,21 @@ +{ + "slug": "wipeout-pure-stealth-edition", + "name": "WipEout Pure: Stealth Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q101977368" + ], + "release_date": "2005-11-15", + "platforms": [ + "PlayStation Portable" + ], + "genres": [ + "racing video game" + ], + "developers": [ + "SCE Studio Liverpool" + ], + "publishers": [ + "Sony Computer Entertainment America" + ] +} diff --git a/data/game/wi/witches-and-wieners-pack.json b/data/game/wi/witches-and-wieners-pack.json new file mode 100644 index 000000000000..3e0bf183d4e9 --- /dev/null +++ b/data/game/wi/witches-and-wieners-pack.json @@ -0,0 +1,13 @@ +{ + "slug": "witches-and-wieners-pack", + "name": "Witches and Wieners Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60617372" + ], + "release_date": "2012-06-12", + "platforms": [ + "PlayStation 3", + "Microsoft Windows" + ] +} diff --git a/data/game/wo/wo-long-fallen-dynasty-digital-deluxe-edition.json b/data/game/wo/wo-long-fallen-dynasty-digital-deluxe-edition.json new file mode 100644 index 000000000000..b2f7401dcda8 --- /dev/null +++ b/data/game/wo/wo-long-fallen-dynasty-digital-deluxe-edition.json @@ -0,0 +1,20 @@ +{ + "slug": "wo-long-fallen-dynasty-digital-deluxe-edition", + "name": "Wo Long: Fallen Dynasty Digital Deluxe Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122437288" + ], + "release_date": "2023-03-03", + "platforms": [ + "Xbox Series X and Series S", + "Microsoft Windows" + ], + "developers": [ + "Koei Tecmo Games" + ], + "publishers": [ + "Koei Tecmo America", + "Koei Tecmo Europe" + ] +} diff --git a/data/game/wo/wolf-pack.json b/data/game/wo/wolf-pack.json new file mode 100644 index 000000000000..a61e0910e0b3 --- /dev/null +++ b/data/game/wo/wolf-pack.json @@ -0,0 +1,11 @@ +{ + "slug": "wolf-pack", + "name": "Wolf Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q104774696" + ], + "platforms": [ + "Microsoft Windows" + ] +} diff --git a/data/game/wo/wolfenstein-resistance-bundle.json b/data/game/wo/wolfenstein-resistance-bundle.json new file mode 100644 index 000000000000..d79d2d933f7b --- /dev/null +++ b/data/game/wo/wolfenstein-resistance-bundle.json @@ -0,0 +1,12 @@ +{ + "slug": "wolfenstein-resistance-bundle", + "name": "Wolfenstein: Resistance Bundle", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q79463385" + ], + "platforms": [ + "PlayStation 4", + "Microsoft Windows" + ] +} diff --git a/data/game/wo/wolfenstein-the-two-pack.json b/data/game/wo/wolfenstein-the-two-pack.json new file mode 100644 index 000000000000..a16b01f4eb68 --- /dev/null +++ b/data/game/wo/wolfenstein-the-two-pack.json @@ -0,0 +1,23 @@ +{ + "slug": "wolfenstein-the-two-pack", + "name": "Wolfenstein: The Two-Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q92203796" + ], + "release_date": "2014-05-20", + "platforms": [ + "PlayStation 5", + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "action game", + "alternate history", + "science fiction video game" + ], + "developers": [ + "Bethesda Softworks" + ] +} diff --git a/data/game/wo/wolfenstein.json b/data/game/wo/wolfenstein.json new file mode 100644 index 000000000000..0062f5e1f5ae --- /dev/null +++ b/data/game/wo/wolfenstein.json @@ -0,0 +1,22 @@ +{ + "slug": "wolfenstein", + "name": "Wolfenstein", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1165728" + ], + "release_date": "2009-08-18", + "platforms": [ + "PlayStation 3", + "Microsoft Windows" + ], + "genres": [ + "first-person shooter" + ], + "developers": [ + "Raven Software" + ], + "publishers": [ + "Activision" + ] +} diff --git a/data/game/wo/wolfstone-3d.json b/data/game/wo/wolfstone-3d.json new file mode 100644 index 000000000000..e364e6eead84 --- /dev/null +++ b/data/game/wo/wolfstone-3d.json @@ -0,0 +1,8 @@ +{ + "slug": "wolfstone-3d", + "name": "Wolfstone 3D", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q97502964" + ] +} diff --git a/data/game/wo/wonder-woman.json b/data/game/wo/wonder-woman.json new file mode 100644 index 000000000000..923b1de89572 --- /dev/null +++ b/data/game/wo/wonder-woman.json @@ -0,0 +1,17 @@ +{ + "slug": "wonder-woman", + "name": "Wonder Woman", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110027969" + ], + "genres": [ + "action-adventure game" + ], + "developers": [ + "Monolith Productions" + ], + "publishers": [ + "Warner Bros. Games" + ] +} diff --git a/data/game/wo/woof.json b/data/game/wo/woof.json new file mode 100644 index 000000000000..2fe9a181a17b --- /dev/null +++ b/data/game/wo/woof.json @@ -0,0 +1,8 @@ +{ + "slug": "woof", + "name": "Woof!", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124429011" + ] +} diff --git a/data/game/wo/work-at-a-pizza-place.json b/data/game/wo/work-at-a-pizza-place.json new file mode 100644 index 000000000000..385a978cffad --- /dev/null +++ b/data/game/wo/work-at-a-pizza-place.json @@ -0,0 +1,13 @@ +{ + "slug": "work-at-a-pizza-place", + "name": "Work at a Pizza Place", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131621003" + ], + "release_date": "2008-03-28", + "genres": [ + "cooking simulation video game", + "job simulation video game" + ] +} diff --git a/data/game/wo/world-heroes-anthology.json b/data/game/wo/world-heroes-anthology.json new file mode 100644 index 000000000000..f9b1d3383e62 --- /dev/null +++ b/data/game/wo/world-heroes-anthology.json @@ -0,0 +1,15 @@ +{ + "slug": "world-heroes-anthology", + "name": "World Heroes Anthology", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11052088" + ], + "release_date": "2007-10-18", + "genres": [ + "fighting game" + ], + "publishers": [ + "SNK" + ] +} diff --git a/data/game/wo/world-in-conflict-soviet-assault.json b/data/game/wo/world-in-conflict-soviet-assault.json new file mode 100644 index 000000000000..f7d6bfdfb488 --- /dev/null +++ b/data/game/wo/world-in-conflict-soviet-assault.json @@ -0,0 +1,16 @@ +{ + "slug": "world-in-conflict-soviet-assault", + "name": "World in Conflict: Soviet Assault", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2624373" + ], + "release_date": "2009-03-10", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "real-time strategy", + "real-time tactics" + ] +} diff --git a/data/game/wo/world-of-darkness-online.json b/data/game/wo/world-of-darkness-online.json new file mode 100644 index 000000000000..d8f2f3ee3e58 --- /dev/null +++ b/data/game/wo/world-of-darkness-online.json @@ -0,0 +1,20 @@ +{ + "slug": "world-of-darkness-online", + "name": "World of Darkness Online", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4053247" + ], + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "massively multiplayer online role-playing game" + ], + "developers": [ + "Fenris Creations" + ], + "publishers": [ + "Fenris Creations" + ] +} diff --git a/data/game/wo/world-of-rollercoaster-tycoon.json b/data/game/wo/world-of-rollercoaster-tycoon.json new file mode 100644 index 000000000000..819d2f18eb83 --- /dev/null +++ b/data/game/wo/world-of-rollercoaster-tycoon.json @@ -0,0 +1,11 @@ +{ + "slug": "world-of-rollercoaster-tycoon", + "name": "World of RollerCoaster Tycoon", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127417939" + ], + "publishers": [ + "Atari Interactive" + ] +} diff --git a/data/game/wo/world-of-tides.json b/data/game/wo/world-of-tides.json new file mode 100644 index 000000000000..f5e6a6392b34 --- /dev/null +++ b/data/game/wo/world-of-tides.json @@ -0,0 +1,17 @@ +{ + "slug": "world-of-tides", + "name": "World of Tides", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110817169" + ], + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "massively multiplayer online role-playing game" + ], + "developers": [ + "GDTeam" + ] +} diff --git a/data/game/wo/world-of-warcraft-cataclysm.json b/data/game/wo/world-of-warcraft-cataclysm.json new file mode 100644 index 000000000000..c7d7300f8f91 --- /dev/null +++ b/data/game/wo/world-of-warcraft-cataclysm.json @@ -0,0 +1,22 @@ +{ + "slug": "world-of-warcraft-cataclysm", + "name": "World of Warcraft: Cataclysm", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q737619" + ], + "release_date": "2010-12-07", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "massively multiplayer online role-playing game" + ], + "developers": [ + "Blizzard Entertainment" + ], + "publishers": [ + "Blizzard Entertainment" + ] +} diff --git a/data/game/wo/world-of-warcraft-dragonflight.json b/data/game/wo/world-of-warcraft-dragonflight.json new file mode 100644 index 000000000000..a82f0a26ce6a --- /dev/null +++ b/data/game/wo/world-of-warcraft-dragonflight.json @@ -0,0 +1,22 @@ +{ + "slug": "world-of-warcraft-dragonflight", + "name": "World of Warcraft: Dragonflight", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111660190" + ], + "release_date": "2022-11-28", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "massively multiplayer online role-playing game" + ], + "developers": [ + "Blizzard Entertainment" + ], + "publishers": [ + "Blizzard Entertainment" + ] +} diff --git a/data/game/wo/world-of-warcraft-free-trial.json b/data/game/wo/world-of-warcraft-free-trial.json new file mode 100644 index 000000000000..f0567367b068 --- /dev/null +++ b/data/game/wo/world-of-warcraft-free-trial.json @@ -0,0 +1,21 @@ +{ + "slug": "world-of-warcraft-free-trial", + "name": "World of Warcraft: Free Trial", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131406401" + ], + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "massively multiplayer online role-playing game" + ], + "developers": [ + "Blizzard Entertainment" + ], + "publishers": [ + "Blizzard Entertainment" + ] +} diff --git a/data/game/wo/world-of-warcraft-legion.json b/data/game/wo/world-of-warcraft-legion.json new file mode 100644 index 000000000000..3e97080d9d77 --- /dev/null +++ b/data/game/wo/world-of-warcraft-legion.json @@ -0,0 +1,22 @@ +{ + "slug": "world-of-warcraft-legion", + "name": "World of Warcraft: Legion", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q20754818" + ], + "release_date": "2016-08-30", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "massively multiplayer online role-playing game" + ], + "developers": [ + "Blizzard Entertainment" + ], + "publishers": [ + "Blizzard Entertainment" + ] +} diff --git a/data/game/wo/world-of-warcraft-midnight.json b/data/game/wo/world-of-warcraft-midnight.json new file mode 100644 index 000000000000..36a529847db1 --- /dev/null +++ b/data/game/wo/world-of-warcraft-midnight.json @@ -0,0 +1,18 @@ +{ + "slug": "world-of-warcraft-midnight", + "name": "World of Warcraft: Midnight", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123301448" + ], + "release_date": "2026-03-02", + "genres": [ + "massively multiplayer online role-playing game" + ], + "developers": [ + "Blizzard Entertainment" + ], + "publishers": [ + "Blizzard Entertainment" + ] +} diff --git a/data/game/wo/world-of-warcraft-mists-of-pandaria.json b/data/game/wo/world-of-warcraft-mists-of-pandaria.json new file mode 100644 index 000000000000..00d6a9bef2f6 --- /dev/null +++ b/data/game/wo/world-of-warcraft-mists-of-pandaria.json @@ -0,0 +1,22 @@ +{ + "slug": "world-of-warcraft-mists-of-pandaria", + "name": "World of Warcraft: Mists of Pandaria", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q841953" + ], + "release_date": "2012-09-25", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "massively multiplayer online role-playing game" + ], + "developers": [ + "Blizzard Entertainment" + ], + "publishers": [ + "Blizzard Entertainment" + ] +} diff --git a/data/game/wo/world-of-warcraft-shadowlands.json b/data/game/wo/world-of-warcraft-shadowlands.json new file mode 100644 index 000000000000..28090bbb53dd --- /dev/null +++ b/data/game/wo/world-of-warcraft-shadowlands.json @@ -0,0 +1,22 @@ +{ + "slug": "world-of-warcraft-shadowlands", + "name": "World of Warcraft: Shadowlands", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q73160580" + ], + "release_date": "2020-11-23", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "massively multiplayer online role-playing game" + ], + "developers": [ + "Blizzard Entertainment" + ], + "publishers": [ + "Blizzard Entertainment" + ] +} diff --git a/data/game/wo/world-of-warcraft-the-burning-crusade.json b/data/game/wo/world-of-warcraft-the-burning-crusade.json new file mode 100644 index 000000000000..d3f43a506e1e --- /dev/null +++ b/data/game/wo/world-of-warcraft-the-burning-crusade.json @@ -0,0 +1,22 @@ +{ + "slug": "world-of-warcraft-the-burning-crusade", + "name": "World of Warcraft: The Burning Crusade", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q719643" + ], + "release_date": "2007-01-15", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "massively multiplayer online role-playing game" + ], + "developers": [ + "Blizzard Entertainment" + ], + "publishers": [ + "Blizzard Entertainment" + ] +} diff --git a/data/game/wo/world-of-warcraft-the-last-titan.json b/data/game/wo/world-of-warcraft-the-last-titan.json new file mode 100644 index 000000000000..e645695de792 --- /dev/null +++ b/data/game/wo/world-of-warcraft-the-last-titan.json @@ -0,0 +1,11 @@ +{ + "slug": "world-of-warcraft-the-last-titan", + "name": "World of Warcraft: The Last Titan", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123301458" + ], + "developers": [ + "Blizzard Entertainment" + ] +} diff --git a/data/game/wo/world-of-warcraft-the-war-within.json b/data/game/wo/world-of-warcraft-the-war-within.json new file mode 100644 index 000000000000..915caf265410 --- /dev/null +++ b/data/game/wo/world-of-warcraft-the-war-within.json @@ -0,0 +1,22 @@ +{ + "slug": "world-of-warcraft-the-war-within", + "name": "World of Warcraft: The War Within", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123301425" + ], + "release_date": "2024-08-26", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "massively multiplayer online role-playing game" + ], + "developers": [ + "Blizzard Entertainment" + ], + "publishers": [ + "Blizzard Entertainment" + ] +} diff --git a/data/game/wo/world-of-warcraft-warlords-of-draenor.json b/data/game/wo/world-of-warcraft-warlords-of-draenor.json new file mode 100644 index 000000000000..a93a2d9ffb3e --- /dev/null +++ b/data/game/wo/world-of-warcraft-warlords-of-draenor.json @@ -0,0 +1,22 @@ +{ + "slug": "world-of-warcraft-warlords-of-draenor", + "name": "World of Warcraft: Warlords of Draenor", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q15139238" + ], + "release_date": "2014-11-13", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "massively multiplayer online role-playing game" + ], + "developers": [ + "Blizzard Entertainment" + ], + "publishers": [ + "Blizzard Entertainment" + ] +} diff --git a/data/game/wo/world-of-warcraft-wrath-of-the-lich-king.json b/data/game/wo/world-of-warcraft-wrath-of-the-lich-king.json new file mode 100644 index 000000000000..9c62b44e4b19 --- /dev/null +++ b/data/game/wo/world-of-warcraft-wrath-of-the-lich-king.json @@ -0,0 +1,22 @@ +{ + "slug": "world-of-warcraft-wrath-of-the-lich-king", + "name": "World of Warcraft: Wrath of the Lich King", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q715719" + ], + "release_date": "2008-11-13", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "massively multiplayer online role-playing game" + ], + "developers": [ + "Blizzard Entertainment" + ], + "publishers": [ + "Blizzard Entertainment" + ] +} diff --git a/data/game/wo/world-war-2-road-to-victory.json b/data/game/wo/world-war-2-road-to-victory.json new file mode 100644 index 000000000000..1bdbcc86ae8f --- /dev/null +++ b/data/game/wo/world-war-2-road-to-victory.json @@ -0,0 +1,8 @@ +{ + "slug": "world-war-2-road-to-victory", + "name": "World War 2: Road to Victory", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140471209" + ] +} diff --git a/data/game/wo/world-war-online.json b/data/game/wo/world-war-online.json new file mode 100644 index 000000000000..364bab36ccf8 --- /dev/null +++ b/data/game/wo/world-war-online.json @@ -0,0 +1,8 @@ +{ + "slug": "world-war-online", + "name": "World War Online", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28449915" + ] +} diff --git a/data/game/wo/worms-clan-wars-4-pack.json b/data/game/wo/worms-clan-wars-4-pack.json new file mode 100644 index 000000000000..7993b06bf684 --- /dev/null +++ b/data/game/wo/worms-clan-wars-4-pack.json @@ -0,0 +1,11 @@ +{ + "slug": "worms-clan-wars-4-pack", + "name": "Worms Clan Wars 4-Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q78670086" + ], + "platforms": [ + "Microsoft Windows" + ] +} diff --git a/data/game/wo/worms-collection.json b/data/game/wo/worms-collection.json new file mode 100644 index 000000000000..466ce2198634 --- /dev/null +++ b/data/game/wo/worms-collection.json @@ -0,0 +1,18 @@ +{ + "slug": "worms-collection", + "name": "Worms Collection", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17040592" + ], + "release_date": "2012-08-31", + "genres": [ + "artillery game" + ], + "developers": [ + "Team17" + ], + "publishers": [ + "Maximum Games" + ] +} diff --git a/data/game/wo/worms-reloaded-game-of-the-year-edition.json b/data/game/wo/worms-reloaded-game-of-the-year-edition.json new file mode 100644 index 000000000000..dcd3d62d5eef --- /dev/null +++ b/data/game/wo/worms-reloaded-game-of-the-year-edition.json @@ -0,0 +1,11 @@ +{ + "slug": "worms-reloaded-game-of-the-year-edition", + "name": "Worms Reloaded: Game of the Year Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q78670011" + ], + "platforms": [ + "Microsoft Windows" + ] +} diff --git a/data/game/wo/worms-revolution-4-pack.json b/data/game/wo/worms-revolution-4-pack.json new file mode 100644 index 000000000000..9989913c38e1 --- /dev/null +++ b/data/game/wo/worms-revolution-4-pack.json @@ -0,0 +1,11 @@ +{ + "slug": "worms-revolution-4-pack", + "name": "Worms Revolution 4-pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q78670102" + ], + "platforms": [ + "Microsoft Windows" + ] +} diff --git a/data/game/wo/worms-revolution-gold-edition.json b/data/game/wo/worms-revolution-gold-edition.json new file mode 100644 index 000000000000..6389e1ea9325 --- /dev/null +++ b/data/game/wo/worms-revolution-gold-edition.json @@ -0,0 +1,12 @@ +{ + "slug": "worms-revolution-gold-edition", + "name": "Worms Revolution: Gold Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60607966" + ], + "release_date": "2013-01-01", + "platforms": [ + "Microsoft Windows" + ] +} diff --git a/data/game/wo/worms-ultimate-mayhem-deluxe-edition.json b/data/game/wo/worms-ultimate-mayhem-deluxe-edition.json new file mode 100644 index 000000000000..6e5f34930801 --- /dev/null +++ b/data/game/wo/worms-ultimate-mayhem-deluxe-edition.json @@ -0,0 +1,11 @@ +{ + "slug": "worms-ultimate-mayhem-deluxe-edition", + "name": "Worms Ultimate Mayhem - Deluxe Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q78670068" + ], + "platforms": [ + "Microsoft Windows" + ] +} diff --git a/data/game/wo/worms-ultimate-mayhem-four-pack.json b/data/game/wo/worms-ultimate-mayhem-four-pack.json new file mode 100644 index 000000000000..29f184c656ee --- /dev/null +++ b/data/game/wo/worms-ultimate-mayhem-four-pack.json @@ -0,0 +1,11 @@ +{ + "slug": "worms-ultimate-mayhem-four-pack", + "name": "Worms Ultimate Mayhem - Four Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q78670045" + ], + "platforms": [ + "Microsoft Windows" + ] +} diff --git a/data/game/wo/worms-united.json b/data/game/wo/worms-united.json new file mode 100644 index 000000000000..564033f3e261 --- /dev/null +++ b/data/game/wo/worms-united.json @@ -0,0 +1,8 @@ +{ + "slug": "worms-united", + "name": "Worms United", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121084908" + ] +} diff --git a/data/game/wo/wotam.json b/data/game/wo/wotam.json new file mode 100644 index 000000000000..1868fb4af4ba --- /dev/null +++ b/data/game/wo/wotam.json @@ -0,0 +1,8 @@ +{ + "slug": "wotam", + "name": "Wotam", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q12806386" + ] +} diff --git a/data/game/wr/wrestle-angels-2-top-eventer-omake-disk.json b/data/game/wr/wrestle-angels-2-top-eventer-omake-disk.json new file mode 100644 index 000000000000..bbe5ae560bff --- /dev/null +++ b/data/game/wr/wrestle-angels-2-top-eventer-omake-disk.json @@ -0,0 +1,8 @@ +{ + "slug": "wrestle-angels-2-top-eventer-omake-disk", + "name": "Wrestle Angels 2 - Top Eventer Omake Disk", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113004590" + ] +} diff --git a/data/game/wr/wrestle-angels-3-omake-disk.json b/data/game/wr/wrestle-angels-3-omake-disk.json new file mode 100644 index 000000000000..60f9027e00c1 --- /dev/null +++ b/data/game/wr/wrestle-angels-3-omake-disk.json @@ -0,0 +1,8 @@ +{ + "slug": "wrestle-angels-3-omake-disk", + "name": "Wrestle Angels 3 Omake Disk", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113004591" + ] +} diff --git a/data/game/wr/wrestle-angels-omake-disk.json b/data/game/wr/wrestle-angels-omake-disk.json new file mode 100644 index 000000000000..5c9e715167cc --- /dev/null +++ b/data/game/wr/wrestle-angels-omake-disk.json @@ -0,0 +1,8 @@ +{ + "slug": "wrestle-angels-omake-disk", + "name": "Wrestle Angels Omake Disk", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113004604" + ] +} diff --git a/data/game/wu/wurmz.json b/data/game/wu/wurmz.json new file mode 100644 index 000000000000..d2949322e59b --- /dev/null +++ b/data/game/wu/wurmz.json @@ -0,0 +1,15 @@ +{ + "slug": "wurmz", + "name": "Wurmz", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120729313" + ], + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "side-scrolling video game", + "shooter game" + ] +} diff --git a/data/game/ww/wwe-2k15-digital-deluxe-edition.json b/data/game/ww/wwe-2k15-digital-deluxe-edition.json new file mode 100644 index 000000000000..986d66d659a8 --- /dev/null +++ b/data/game/ww/wwe-2k15-digital-deluxe-edition.json @@ -0,0 +1,8 @@ +{ + "slug": "wwe-2k15-digital-deluxe-edition", + "name": "WWE 2K15 Digital Deluxe Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q90132617" + ] +} diff --git a/data/game/ww/wwe-2k23-deluxe-edition.json b/data/game/ww/wwe-2k23-deluxe-edition.json new file mode 100644 index 000000000000..a958ac5cd250 --- /dev/null +++ b/data/game/ww/wwe-2k23-deluxe-edition.json @@ -0,0 +1,18 @@ +{ + "slug": "wwe-2k23-deluxe-edition", + "name": "WWE 2K23 Deluxe Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122732454" + ], + "release_date": "2023-03-14", + "platforms": [ + "Xbox Series X and Series S" + ], + "developers": [ + "Visual Concepts" + ], + "publishers": [ + "2K" + ] +} diff --git a/data/game/ww/wwe-2k23-icon-edition.json b/data/game/ww/wwe-2k23-icon-edition.json new file mode 100644 index 000000000000..bfea627f0dc8 --- /dev/null +++ b/data/game/ww/wwe-2k23-icon-edition.json @@ -0,0 +1,18 @@ +{ + "slug": "wwe-2k23-icon-edition", + "name": "WWE 2K23 Icon Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122732467" + ], + "release_date": "2023-03-14", + "platforms": [ + "Xbox Series X and Series S" + ], + "developers": [ + "Visual Concepts" + ], + "publishers": [ + "2K" + ] +} diff --git a/data/game/ww/wwe-smackdown-vs-raw-online.json b/data/game/ww/wwe-smackdown-vs-raw-online.json new file mode 100644 index 000000000000..d9c84f19fc9b --- /dev/null +++ b/data/game/ww/wwe-smackdown-vs-raw-online.json @@ -0,0 +1,20 @@ +{ + "slug": "wwe-smackdown-vs-raw-online", + "name": "WWE SmackDown vs. Raw Online", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q487245" + ], + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "professional wrestling video game" + ], + "developers": [ + "Vertigo Games" + ], + "publishers": [ + "THQ" + ] +} diff --git a/data/game/x-/x-albion-prelude.json b/data/game/x-/x-albion-prelude.json new file mode 100644 index 000000000000..079a8f411775 --- /dev/null +++ b/data/game/x-/x-albion-prelude.json @@ -0,0 +1,24 @@ +{ + "slug": "x-albion-prelude", + "name": "X³: Albion Prelude", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q14124718" + ], + "release_date": "2011-12-15", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "space flight simulation game", + "space opera video game", + "space trading and combat game" + ], + "developers": [ + "Egosoft" + ], + "publishers": [ + "Deep Silver" + ] +} diff --git a/data/game/x-/x-com-alliance.json b/data/game/x-/x-com-alliance.json new file mode 100644 index 000000000000..6f858d460a96 --- /dev/null +++ b/data/game/x-/x-com-alliance.json @@ -0,0 +1,20 @@ +{ + "slug": "x-com-alliance", + "name": "X-COM: Alliance", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8041427" + ], + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "role-playing game", + "real-time strategy", + "strategy video game", + "tactical shooter" + ], + "developers": [ + "MicroProse" + ] +} diff --git a/data/game/x-/x-com-collection.json b/data/game/x-/x-com-collection.json new file mode 100644 index 000000000000..c12848195f4d --- /dev/null +++ b/data/game/x-/x-com-collection.json @@ -0,0 +1,8 @@ +{ + "slug": "x-com-collection", + "name": "X-COM Collection", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125657183" + ] +} diff --git a/data/game/x-/x-gold.json b/data/game/x-/x-gold.json new file mode 100644 index 000000000000..79cb42ecdd3f --- /dev/null +++ b/data/game/x-/x-gold.json @@ -0,0 +1,8 @@ +{ + "slug": "x-gold", + "name": "X: Gold", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125997350" + ] +} diff --git a/data/game/x4/x4-cradle-of-humanity.json b/data/game/x4/x4-cradle-of-humanity.json new file mode 100644 index 000000000000..bae6b85c533e --- /dev/null +++ b/data/game/x4/x4-cradle-of-humanity.json @@ -0,0 +1,18 @@ +{ + "slug": "x4-cradle-of-humanity", + "name": "X4: Cradle of Humanity", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111605206" + ], + "release_date": "2021-03-16", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Egosoft" + ], + "publishers": [ + "Egosoft" + ] +} diff --git a/data/game/x4/x4-split-vendetta.json b/data/game/x4/x4-split-vendetta.json new file mode 100644 index 000000000000..b4c47d0b034c --- /dev/null +++ b/data/game/x4/x4-split-vendetta.json @@ -0,0 +1,18 @@ +{ + "slug": "x4-split-vendetta", + "name": "X4: Split Vendetta", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111605189" + ], + "release_date": "2020-03-31", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Egosoft" + ], + "publishers": [ + "Egosoft" + ] +} diff --git a/data/game/x4/x4-tides-of-avarice.json b/data/game/x4/x4-tides-of-avarice.json new file mode 100644 index 000000000000..684e60780fc6 --- /dev/null +++ b/data/game/x4/x4-tides-of-avarice.json @@ -0,0 +1,18 @@ +{ + "slug": "x4-tides-of-avarice", + "name": "X4: Tides of Avarice", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111605223" + ], + "release_date": "2022-03-14", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Egosoft" + ], + "publishers": [ + "Egosoft" + ] +} diff --git a/data/game/xa/xanadu-scenario-ii.json b/data/game/xa/xanadu-scenario-ii.json new file mode 100644 index 000000000000..94ce1942927b --- /dev/null +++ b/data/game/xa/xanadu-scenario-ii.json @@ -0,0 +1,24 @@ +{ + "slug": "xanadu-scenario-ii", + "name": "Xanadu Scenario II", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105697999" + ], + "release_date": "1986-01-01", + "platforms": [ + "PC-8000 series", + "Sharp X1", + "FM-7", + "NEC PC-8800 series" + ], + "genres": [ + "action role-playing game" + ], + "developers": [ + "Nihon Falcom" + ], + "publishers": [ + "Nihon Falcom" + ] +} diff --git a/data/game/xa/xash3d-fwgs.json b/data/game/xa/xash3d-fwgs.json new file mode 100644 index 000000000000..065588ae708c --- /dev/null +++ b/data/game/xa/xash3d-fwgs.json @@ -0,0 +1,8 @@ +{ + "slug": "xash3d-fwgs", + "name": "Xash3D FWGS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120720828" + ] +} diff --git a/data/game/xb/xbox-exhibition-disks.json b/data/game/xb/xbox-exhibition-disks.json new file mode 100644 index 000000000000..0e12431c0da8 --- /dev/null +++ b/data/game/xb/xbox-exhibition-disks.json @@ -0,0 +1,12 @@ +{ + "slug": "xbox-exhibition-disks", + "name": "Xbox Exhibition disks", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8043361" + ], + "release_date": "2002-01-01", + "publishers": [ + "Xbox Game Studios" + ] +} diff --git a/data/game/xc/xcom-2-collection.json b/data/game/xc/xcom-2-collection.json new file mode 100644 index 000000000000..bdde7587caba --- /dev/null +++ b/data/game/xc/xcom-2-collection.json @@ -0,0 +1,8 @@ +{ + "slug": "xcom-2-collection", + "name": "XCOM 2 Collection", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123337695" + ] +} diff --git a/data/game/xc/xcom-2-digital-deluxe-edition.json b/data/game/xc/xcom-2-digital-deluxe-edition.json new file mode 100644 index 000000000000..f9f5f6838bfb --- /dev/null +++ b/data/game/xc/xcom-2-digital-deluxe-edition.json @@ -0,0 +1,8 @@ +{ + "slug": "xcom-2-digital-deluxe-edition", + "name": "XCOM 2: Digital Deluxe Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131407059" + ] +} diff --git a/data/game/xc/xcom-2-reinforcement-pack.json b/data/game/xc/xcom-2-reinforcement-pack.json new file mode 100644 index 000000000000..27805ff821f6 --- /dev/null +++ b/data/game/xc/xcom-2-reinforcement-pack.json @@ -0,0 +1,8 @@ +{ + "slug": "xcom-2-reinforcement-pack", + "name": "XCOM 2: Reinforcement Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131407075" + ] +} diff --git a/data/game/xc/xcom-2-war-of-the-chosen.json b/data/game/xc/xcom-2-war-of-the-chosen.json new file mode 100644 index 000000000000..686ab77a7750 --- /dev/null +++ b/data/game/xc/xcom-2-war-of-the-chosen.json @@ -0,0 +1,16 @@ +{ + "slug": "xcom-2-war-of-the-chosen", + "name": "XCOM 2: War of the Chosen", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q39052928" + ], + "release_date": "2017-08-29", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "developers": [ + "Firaxis Games" + ] +} diff --git a/data/game/xc/xcom-enemy-unknown-complete-pack.json b/data/game/xc/xcom-enemy-unknown-complete-pack.json new file mode 100644 index 000000000000..0ae8f5343541 --- /dev/null +++ b/data/game/xc/xcom-enemy-unknown-complete-pack.json @@ -0,0 +1,8 @@ +{ + "slug": "xcom-enemy-unknown-complete-pack", + "name": "XCOM: Enemy Unknown Complete Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124819587" + ] +} diff --git a/data/game/xd/xd-8001.json b/data/game/xd/xd-8001.json new file mode 100644 index 000000000000..11bcbb650c20 --- /dev/null +++ b/data/game/xd/xd-8001.json @@ -0,0 +1,8 @@ +{ + "slug": "xd-8001", + "name": "XD 8001", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121493810" + ] +} diff --git a/data/game/xd/xdoom.json b/data/game/xd/xdoom.json new file mode 100644 index 000000000000..048d4cf54e57 --- /dev/null +++ b/data/game/xd/xdoom.json @@ -0,0 +1,8 @@ +{ + "slug": "xdoom", + "name": "XDoom", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124452738" + ] +} diff --git a/data/game/xe/xenoblade-chronicles-2-nintendo-switch-2-edition-upgrade-pack.json b/data/game/xe/xenoblade-chronicles-2-nintendo-switch-2-edition-upgrade-pack.json new file mode 100644 index 000000000000..9e81f17f94fb --- /dev/null +++ b/data/game/xe/xenoblade-chronicles-2-nintendo-switch-2-edition-upgrade-pack.json @@ -0,0 +1,12 @@ +{ + "slug": "xenoblade-chronicles-2-nintendo-switch-2-edition-upgrade-pack", + "name": "Xenoblade Chronicles 2 – Nintendo Switch 2 Edition Upgrade Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140179852" + ], + "release_date": "2026-07-30", + "publishers": [ + "Nintendo" + ] +} diff --git a/data/game/xe/xenoblade-chronicles-3-nintendo-switch-2-edition-upgrade-pack.json b/data/game/xe/xenoblade-chronicles-3-nintendo-switch-2-edition-upgrade-pack.json new file mode 100644 index 000000000000..6389b0a8a84c --- /dev/null +++ b/data/game/xe/xenoblade-chronicles-3-nintendo-switch-2-edition-upgrade-pack.json @@ -0,0 +1,12 @@ +{ + "slug": "xenoblade-chronicles-3-nintendo-switch-2-edition-upgrade-pack", + "name": "Xenoblade Chronicles 3 – Nintendo Switch 2 Edition Upgrade Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140179885" + ], + "release_date": "2026-12-03", + "publishers": [ + "Nintendo" + ] +} diff --git a/data/game/xe/xenoblade-chronicles-definitive-edition-nintendo-switch-2-edition-upgrade-pack.json b/data/game/xe/xenoblade-chronicles-definitive-edition-nintendo-switch-2-edition-upgrade-pack.json new file mode 100644 index 000000000000..d97bf4170efa --- /dev/null +++ b/data/game/xe/xenoblade-chronicles-definitive-edition-nintendo-switch-2-edition-upgrade-pack.json @@ -0,0 +1,12 @@ +{ + "slug": "xenoblade-chronicles-definitive-edition-nintendo-switch-2-edition-upgrade-pack", + "name": "Xenoblade Chronicles: Definitive Edition – Nintendo Switch 2 Edition Upgrade Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140179789" + ], + "release_date": "2026-06-09", + "publishers": [ + "Nintendo" + ] +} diff --git a/data/game/ya/yamagi-quake-ii.json b/data/game/ya/yamagi-quake-ii.json new file mode 100644 index 000000000000..2ebedc2d6f62 --- /dev/null +++ b/data/game/ya/yamagi-quake-ii.json @@ -0,0 +1,8 @@ +{ + "slug": "yamagi-quake-ii", + "name": "Yamagi Quake II", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122208240" + ] +} diff --git a/data/game/ye/yeti3ds.json b/data/game/ye/yeti3ds.json new file mode 100644 index 000000000000..c978e3e4013e --- /dev/null +++ b/data/game/ye/yeti3ds.json @@ -0,0 +1,17 @@ +{ + "slug": "yeti3ds", + "name": "Yeti3DS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123139931" + ], + "platforms": [ + "Nintendo 3DS" + ], + "developers": [ + "smealum" + ], + "publishers": [ + "smealum" + ] +} diff --git a/data/game/yo/yo-frankie.json b/data/game/yo/yo-frankie.json new file mode 100644 index 000000000000..492b98b97a43 --- /dev/null +++ b/data/game/yo/yo-frankie.json @@ -0,0 +1,22 @@ +{ + "slug": "yo-frankie", + "name": "Yo Frankie!", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1631459" + ], + "release_date": "2008-12-09", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "platformer" + ], + "developers": [ + "Blender Foundation" + ], + "publishers": [ + "Blender Foundation" + ] +} diff --git a/data/game/yo/yogventures.json b/data/game/yo/yogventures.json new file mode 100644 index 000000000000..42d6ff985d25 --- /dev/null +++ b/data/game/yo/yogventures.json @@ -0,0 +1,8 @@ +{ + "slug": "yogventures", + "name": "Yogventures!", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107999478" + ] +} diff --git a/data/game/yo/you-don-t-know-jack-jumbo.json b/data/game/yo/you-don-t-know-jack-jumbo.json new file mode 100644 index 000000000000..c087ad6a87db --- /dev/null +++ b/data/game/yo/you-don-t-know-jack-jumbo.json @@ -0,0 +1,8 @@ +{ + "slug": "you-don-t-know-jack-jumbo", + "name": "You Don't Know Jack: Jumbo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q85129312" + ] +} diff --git a/data/game/yo/you-don-t-know-jack-the-irreverent-collection.json b/data/game/yo/you-don-t-know-jack-the-irreverent-collection.json new file mode 100644 index 000000000000..1ffb3ba8ee66 --- /dev/null +++ b/data/game/yo/you-don-t-know-jack-the-irreverent-collection.json @@ -0,0 +1,8 @@ +{ + "slug": "you-don-t-know-jack-the-irreverent-collection", + "name": "You Don't Know Jack: The Irreverent Collection", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125140475" + ] +} diff --git a/data/game/yo/you-don-t-know-jack-xxl-x-tra-x-tra-large.json b/data/game/yo/you-don-t-know-jack-xxl-x-tra-x-tra-large.json new file mode 100644 index 000000000000..f6bfb4fe00d4 --- /dev/null +++ b/data/game/yo/you-don-t-know-jack-xxl-x-tra-x-tra-large.json @@ -0,0 +1,8 @@ +{ + "slug": "you-don-t-know-jack-xxl-x-tra-x-tra-large", + "name": "You Don’t Know Jack XXL: X-Tra X-Tra Large", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126689826" + ] +} diff --git a/data/game/yo/you-re-under-arrest.json b/data/game/yo/you-re-under-arrest.json new file mode 100644 index 000000000000..3425ec954ea7 --- /dev/null +++ b/data/game/yo/you-re-under-arrest.json @@ -0,0 +1,8 @@ +{ + "slug": "you-re-under-arrest", + "name": "You're Under Arrest!", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11639952" + ] +} diff --git a/data/game/ys/ys-i-ii.json b/data/game/ys/ys-i-ii.json new file mode 100644 index 000000000000..03968e6d5c9c --- /dev/null +++ b/data/game/ys/ys-i-ii.json @@ -0,0 +1,26 @@ +{ + "slug": "ys-i-ii", + "name": "Ys I & II", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3262153" + ], + "release_date": "1989-12-21", + "platforms": [ + "TurboGrafx-16", + "Sharp X68000", + "Nintendo DS", + "PlayStation Portable", + "iOS", + "Microsoft Windows" + ], + "genres": [ + "action role-playing game" + ], + "developers": [ + "Nihon Falcom" + ], + "publishers": [ + "Nihon Falcom" + ] +} diff --git a/data/game/z-/z-style-pack.json b/data/game/z-/z-style-pack.json new file mode 100644 index 000000000000..317618d05337 --- /dev/null +++ b/data/game/z-/z-style-pack.json @@ -0,0 +1,13 @@ +{ + "slug": "z-style-pack", + "name": "Z Style Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60617373" + ], + "release_date": "2011-12-09", + "platforms": [ + "PlayStation 3", + "Microsoft Windows" + ] +} diff --git a/data/game/za/zaark-and-the-night-team.json b/data/game/za/zaark-and-the-night-team.json new file mode 100644 index 000000000000..0c046d80e280 --- /dev/null +++ b/data/game/za/zaark-and-the-night-team.json @@ -0,0 +1,8 @@ +{ + "slug": "zaark-and-the-night-team", + "name": "Zaark and the Night Team", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q74119094" + ] +} diff --git a/data/game/za/zairo-il-primo-giorno.json b/data/game/za/zairo-il-primo-giorno.json new file mode 100644 index 000000000000..5343b84cabcb --- /dev/null +++ b/data/game/za/zairo-il-primo-giorno.json @@ -0,0 +1,9 @@ +{ + "slug": "zairo-il-primo-giorno", + "name": "Zairo - Il primo giorno", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4023732" + ], + "release_date": "2009-01-01" +} diff --git a/data/game/za/zak-mckracken-and-the-alien-rockstars.json b/data/game/za/zak-mckracken-and-the-alien-rockstars.json new file mode 100644 index 000000000000..62c7cfd2d215 --- /dev/null +++ b/data/game/za/zak-mckracken-and-the-alien-rockstars.json @@ -0,0 +1,8 @@ +{ + "slug": "zak-mckracken-and-the-alien-rockstars", + "name": "Zak McKracken and the Alien Rockstars", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120986269" + ] +} diff --git a/data/game/za/zak-repixeled.json b/data/game/za/zak-repixeled.json new file mode 100644 index 000000000000..d712ecb45346 --- /dev/null +++ b/data/game/za/zak-repixeled.json @@ -0,0 +1,11 @@ +{ + "slug": "zak-repixeled", + "name": "Zak - Repixeled", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120801256" + ], + "genres": [ + "point-and-click adventure" + ] +} diff --git a/data/game/za/zandronum.json b/data/game/za/zandronum.json new file mode 100644 index 000000000000..6675e6adcb32 --- /dev/null +++ b/data/game/za/zandronum.json @@ -0,0 +1,8 @@ +{ + "slug": "zandronum", + "name": "Zandronum", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10724164" + ] +} diff --git a/data/game/za/zarta.json b/data/game/za/zarta.json new file mode 100644 index 000000000000..6e1952a2ee10 --- /dev/null +++ b/data/game/za/zarta.json @@ -0,0 +1,8 @@ +{ + "slug": "zarta", + "name": "Zarta", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138912022" + ] +} diff --git a/data/game/zd/zdaemon.json b/data/game/zd/zdaemon.json new file mode 100644 index 000000000000..28f4cf3ba370 --- /dev/null +++ b/data/game/zd/zdaemon.json @@ -0,0 +1,8 @@ +{ + "slug": "zdaemon", + "name": "ZDaemon", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q9097590" + ] +} diff --git a/data/game/zd/zdoom.json b/data/game/zd/zdoom.json new file mode 100644 index 000000000000..5c82db140df2 --- /dev/null +++ b/data/game/zd/zdoom.json @@ -0,0 +1,11 @@ +{ + "slug": "zdoom", + "name": "ZDoom", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2881936" + ], + "platforms": [ + "Classic Mac OS" + ] +} diff --git a/data/game/ze/zelda-notes.json b/data/game/ze/zelda-notes.json new file mode 100644 index 000000000000..62580379b2ea --- /dev/null +++ b/data/game/ze/zelda-notes.json @@ -0,0 +1,8 @@ +{ + "slug": "zelda-notes", + "name": "ZELDA NOTES", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134731673" + ] +} diff --git a/data/game/ze/zen-pinball-2-zen-pinball-classics.json b/data/game/ze/zen-pinball-2-zen-pinball-classics.json new file mode 100644 index 000000000000..fa073b993101 --- /dev/null +++ b/data/game/ze/zen-pinball-2-zen-pinball-classics.json @@ -0,0 +1,8 @@ +{ + "slug": "zen-pinball-2-zen-pinball-classics", + "name": "Zen Pinball 2: Zen Pinball Classics", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107424335" + ] +} diff --git a/data/game/ze/zen-q17218591.json b/data/game/ze/zen-q17218591.json new file mode 100644 index 000000000000..c63c8dad8e4f --- /dev/null +++ b/data/game/ze/zen-q17218591.json @@ -0,0 +1,17 @@ +{ + "slug": "zen-q17218591", + "name": "Zen", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17218591" + ], + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "go video game" + ], + "developers": [ + "Mynavi Corporation" + ] +} diff --git a/data/game/ze/zero-escape-the-nonary-games.json b/data/game/ze/zero-escape-the-nonary-games.json new file mode 100644 index 000000000000..35c9e08f7bb1 --- /dev/null +++ b/data/game/ze/zero-escape-the-nonary-games.json @@ -0,0 +1,26 @@ +{ + "slug": "zero-escape-the-nonary-games", + "name": "Zero Escape: The Nonary Games", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q31970991" + ], + "release_date": "2017-03-24", + "platforms": [ + "PlayStation 4", + "PlayStation Vita", + "Xbox Series X and Series S", + "Microsoft Windows" + ], + "genres": [ + "adventure video game", + "visual novel", + "escape room video game" + ], + "developers": [ + "Spike Chunsoft" + ], + "publishers": [ + "Spike Chunsoft" + ] +} diff --git a/data/game/ze/zero-racers.json b/data/game/ze/zero-racers.json new file mode 100644 index 000000000000..ff3d53e15481 --- /dev/null +++ b/data/game/ze/zero-racers.json @@ -0,0 +1,14 @@ +{ + "slug": "zero-racers", + "name": "Zero Racers", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q96416037" + ], + "platforms": [ + "Virtual Boy" + ], + "genres": [ + "racing video game" + ] +} diff --git a/data/game/ze/zezam.json b/data/game/ze/zezam.json new file mode 100644 index 000000000000..e9eb996f2e69 --- /dev/null +++ b/data/game/ze/zezam.json @@ -0,0 +1,8 @@ +{ + "slug": "zezam", + "name": "Zezam", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q12344248" + ] +} diff --git a/data/game/zi/zid-journey-q117087191.json b/data/game/zi/zid-journey-q117087191.json new file mode 100644 index 000000000000..0868c6dd3d80 --- /dev/null +++ b/data/game/zi/zid-journey-q117087191.json @@ -0,0 +1,11 @@ +{ + "slug": "zid-journey-q117087191", + "name": "Zid Journey", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117087191" + ], + "genres": [ + "adventure video game" + ] +} diff --git a/data/game/zo/zodiacats-supporter-pack.json b/data/game/zo/zodiacats-supporter-pack.json new file mode 100644 index 000000000000..7c497041706b --- /dev/null +++ b/data/game/zo/zodiacats-supporter-pack.json @@ -0,0 +1,18 @@ +{ + "slug": "zodiacats-supporter-pack", + "name": "Zodiacats - Supporter Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117713312" + ], + "release_date": "2022-03-31", + "platforms": [ + "Microsoft Windows" + ], + "developers": [ + "Devcats" + ], + "publishers": [ + "Devcats" + ] +} diff --git a/data/game/zo/zombie-army-trilogy.json b/data/game/zo/zombie-army-trilogy.json new file mode 100644 index 000000000000..eb86a87f3f71 --- /dev/null +++ b/data/game/zo/zombie-army-trilogy.json @@ -0,0 +1,23 @@ +{ + "slug": "zombie-army-trilogy", + "name": "Zombie Army Trilogy", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18750616" + ], + "release_date": "2015-03-06", + "platforms": [ + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "third-person shooter", + "tactical shooter" + ], + "developers": [ + "Rebellion Developments" + ], + "publishers": [ + "Rebellion Developments" + ] +} diff --git a/data/game/zo/zombie-driver-hd-complete-edition.json b/data/game/zo/zombie-driver-hd-complete-edition.json new file mode 100644 index 000000000000..8f06089b8d0b --- /dev/null +++ b/data/game/zo/zombie-driver-hd-complete-edition.json @@ -0,0 +1,11 @@ +{ + "slug": "zombie-driver-hd-complete-edition", + "name": "Zombie Driver HD Complete Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108050001" + ], + "platforms": [ + "Microsoft Windows" + ] +} diff --git a/data/game/zo/zombie-driver-immortal-edition.json b/data/game/zo/zombie-driver-immortal-edition.json new file mode 100644 index 000000000000..8404ccbefcbc --- /dev/null +++ b/data/game/zo/zombie-driver-immortal-edition.json @@ -0,0 +1,8 @@ +{ + "slug": "zombie-driver-immortal-edition", + "name": "Zombie Driver: Immortal Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108050278" + ] +} diff --git a/data/game/zo/zombie-driver-ultimate-edition.json b/data/game/zo/zombie-driver-ultimate-edition.json new file mode 100644 index 000000000000..2677782d89d5 --- /dev/null +++ b/data/game/zo/zombie-driver-ultimate-edition.json @@ -0,0 +1,8 @@ +{ + "slug": "zombie-driver-ultimate-edition", + "name": "Zombie Driver Ultimate Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108050275" + ] +} diff --git a/data/game/zo/zombie-panic.json b/data/game/zo/zombie-panic.json new file mode 100644 index 000000000000..79b6a8403f4a --- /dev/null +++ b/data/game/zo/zombie-panic.json @@ -0,0 +1,21 @@ +{ + "slug": "zombie-panic", + "name": "Zombie Panic!", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63571490" + ], + "release_date": "2004-10-31", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter" + ], + "developers": [ + "Zombie Panic Team" + ], + "publishers": [ + "Zombie Panic Team" + ] +} diff --git a/data/game/zo/zombiebound-reloaded.json b/data/game/zo/zombiebound-reloaded.json new file mode 100644 index 000000000000..c2a27416b755 --- /dev/null +++ b/data/game/zo/zombiebound-reloaded.json @@ -0,0 +1,22 @@ +{ + "slug": "zombiebound-reloaded", + "name": "Zombiebound Reloaded", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124013993" + ], + "release_date": "2019-02-06", + "platforms": [ + "PlayStation Vita" + ], + "genres": [ + "first-person shooter", + "zombie video game" + ], + "developers": [ + "VitaHEX games" + ], + "publishers": [ + "VitaHEX games" + ] +} diff --git a/data/game/zo/zombiebound.json b/data/game/zo/zombiebound.json new file mode 100644 index 000000000000..0115bb9fded5 --- /dev/null +++ b/data/game/zo/zombiebound.json @@ -0,0 +1,22 @@ +{ + "slug": "zombiebound", + "name": "Zombiebound", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123290206" + ], + "release_date": "2017-09-30", + "platforms": [ + "PlayStation Vita" + ], + "genres": [ + "first-person shooter", + "zombie apocalyptic video game" + ], + "developers": [ + "VitaHEX games" + ], + "publishers": [ + "VitaHEX games" + ] +} diff --git a/data/game/zo/zone-of-the-enders-hd-collection.json b/data/game/zo/zone-of-the-enders-hd-collection.json new file mode 100644 index 000000000000..c55a813b4824 --- /dev/null +++ b/data/game/zo/zone-of-the-enders-hd-collection.json @@ -0,0 +1,14 @@ +{ + "slug": "zone-of-the-enders-hd-collection", + "name": "Zone of the Enders HD Collection", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q40889213" + ], + "platforms": [ + "PlayStation 3" + ], + "developers": [ + "High Voltage Software" + ] +} diff --git a/data/game/zo/zoo-tycoon-2-african-adventure.json b/data/game/zo/zoo-tycoon-2-african-adventure.json new file mode 100644 index 000000000000..d375ad5c6ed4 --- /dev/null +++ b/data/game/zo/zoo-tycoon-2-african-adventure.json @@ -0,0 +1,21 @@ +{ + "slug": "zoo-tycoon-2-african-adventure", + "name": "Zoo Tycoon 2: African Adventure", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2312929" + ], + "release_date": "2006-05-01", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Blue Fang Games" + ], + "publishers": [ + "Xbox Game Studios" + ] +} diff --git a/data/game/zo/zoo-tycoon-2-dino-danger-pack.json b/data/game/zo/zoo-tycoon-2-dino-danger-pack.json new file mode 100644 index 000000000000..857ade8f0b8b --- /dev/null +++ b/data/game/zo/zoo-tycoon-2-dino-danger-pack.json @@ -0,0 +1,21 @@ +{ + "slug": "zoo-tycoon-2-dino-danger-pack", + "name": "Zoo Tycoon 2: Dino Danger Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3285811" + ], + "release_date": "2006-07-01", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "business simulation game" + ], + "developers": [ + "Blue Fang Games" + ], + "publishers": [ + "Oberon Media" + ] +} diff --git a/data/game/zo/zoo-tycoon-2-endangered-species.json b/data/game/zo/zoo-tycoon-2-endangered-species.json new file mode 100644 index 000000000000..d72fad76ca88 --- /dev/null +++ b/data/game/zo/zoo-tycoon-2-endangered-species.json @@ -0,0 +1,21 @@ +{ + "slug": "zoo-tycoon-2-endangered-species", + "name": "Zoo Tycoon 2: Endangered Species", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3302867" + ], + "release_date": "2005-10-01", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Blue Fang Games" + ], + "publishers": [ + "Xbox Game Studios" + ] +} diff --git a/data/game/zo/zoo-tycoon-2-extinct-animals.json b/data/game/zo/zoo-tycoon-2-extinct-animals.json new file mode 100644 index 000000000000..f442518fb866 --- /dev/null +++ b/data/game/zo/zoo-tycoon-2-extinct-animals.json @@ -0,0 +1,22 @@ +{ + "slug": "zoo-tycoon-2-extinct-animals", + "name": "Zoo Tycoon 2: Extinct Animals", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2738356" + ], + "release_date": "2007-10-17", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "simulation video game" + ], + "developers": [ + "Blue Fang Games" + ], + "publishers": [ + "Xbox Game Studios" + ] +} diff --git a/data/game/zo/zoo-tycoon-2-marine-mania.json b/data/game/zo/zoo-tycoon-2-marine-mania.json new file mode 100644 index 000000000000..a2cac222eebf --- /dev/null +++ b/data/game/zo/zoo-tycoon-2-marine-mania.json @@ -0,0 +1,21 @@ +{ + "slug": "zoo-tycoon-2-marine-mania", + "name": "Zoo Tycoon 2: Marine Mania", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3062534" + ], + "release_date": "2006-10-17", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "developers": [ + "Blue Fang Games" + ], + "publishers": [ + "Xbox Game Studios" + ] +} diff --git a/data/game/zo/zoo-tycoon-dinosaur-digs.json b/data/game/zo/zoo-tycoon-dinosaur-digs.json new file mode 100644 index 000000000000..b8e7bb1ee484 --- /dev/null +++ b/data/game/zo/zoo-tycoon-dinosaur-digs.json @@ -0,0 +1,22 @@ +{ + "slug": "zoo-tycoon-dinosaur-digs", + "name": "Zoo Tycoon: Dinosaur Digs", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q911542" + ], + "release_date": "2002-05-19", + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "business simulation game" + ], + "developers": [ + "Blue Fang Games" + ], + "publishers": [ + "Xbox Game Studios" + ] +} diff --git a/data/game/zo/zoo-tycoon-marine-mania.json b/data/game/zo/zoo-tycoon-marine-mania.json new file mode 100644 index 000000000000..25a0347da0ee --- /dev/null +++ b/data/game/zo/zoo-tycoon-marine-mania.json @@ -0,0 +1,21 @@ +{ + "slug": "zoo-tycoon-marine-mania", + "name": "Zoo Tycoon: Marine Mania", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q9391986" + ], + "release_date": "2002-10-17", + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "business simulation game" + ], + "developers": [ + "Blue Fang Games" + ], + "publishers": [ + "Xbox Game Studios" + ] +} diff --git a/data/game/zo/zork-anthology.json b/data/game/zo/zork-anthology.json new file mode 100644 index 000000000000..e322c6c54bef --- /dev/null +++ b/data/game/zo/zork-anthology.json @@ -0,0 +1,20 @@ +{ + "slug": "zork-anthology", + "name": "Zork Anthology", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q55638265" + ], + "release_date": "1994-01-01", + "platforms": [ + "Classic Mac OS", + "DOS", + "Microsoft Windows" + ], + "developers": [ + "Infocom" + ], + "publishers": [ + "Activision" + ] +} diff --git a/data/software/1-/1-second-everyday.json b/data/software/1-/1-second-everyday.json new file mode 100644 index 000000000000..0ced14ecb38e --- /dev/null +++ b/data/software/1-/1-second-everyday.json @@ -0,0 +1,14 @@ +{ + "slug": "1-second-everyday", + "name": "1 Second Everyday", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16927587" + ], + "developers": [ + "Cesar Kuriyama" + ], + "programming_languages": [ + "Swift" + ] +} diff --git a/data/software/10/10.json b/data/software/10/10.json new file mode 100644 index 000000000000..733fe7ba3706 --- /dev/null +++ b/data/software/10/10.json @@ -0,0 +1,11 @@ +{ + "slug": "10", + "name": "10", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22080661" + ], + "developers": [ + "Network 10" + ] +} diff --git a/data/software/10/1000minds.json b/data/software/10/1000minds.json new file mode 100644 index 000000000000..89a7a80b00a6 --- /dev/null +++ b/data/software/10/1000minds.json @@ -0,0 +1,8 @@ +{ + "slug": "1000minds", + "name": "1000minds", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4546002" + ] +} diff --git a/data/software/10/1099-nec-form-generator.json b/data/software/10/1099-nec-form-generator.json new file mode 100644 index 000000000000..0ba918f0d7bb --- /dev/null +++ b/data/software/10/1099-nec-form-generator.json @@ -0,0 +1,8 @@ +{ + "slug": "1099-nec-form-generator", + "name": "1099-NEC form generator", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140051554" + ] +} diff --git a/data/software/14/140kit.json b/data/software/14/140kit.json new file mode 100644 index 000000000000..303a9f0746f4 --- /dev/null +++ b/data/software/14/140kit.json @@ -0,0 +1,8 @@ +{ + "slug": "140kit", + "name": "140kit", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084266" + ] +} diff --git a/data/software/17/17live.json b/data/software/17/17live.json new file mode 100644 index 000000000000..283dc2453d3e --- /dev/null +++ b/data/software/17/17live.json @@ -0,0 +1,8 @@ +{ + "slug": "17live", + "name": "17LIVE", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q21042804" + ] +} diff --git a/data/software/1c/1c-accounting.json b/data/software/1c/1c-accounting.json new file mode 100644 index 000000000000..7c75e8a7790a --- /dev/null +++ b/data/software/1c/1c-accounting.json @@ -0,0 +1,20 @@ +{ + "slug": "1c-accounting", + "name": "1C:Accounting", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4345795" + ], + "developers": [ + "1C Company" + ], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [ + "1C:Enterprise programming language" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/1c/1c-enterprise.json b/data/software/1c/1c-enterprise.json new file mode 100644 index 000000000000..f252869de197 --- /dev/null +++ b/data/software/1c/1c-enterprise.json @@ -0,0 +1,19 @@ +{ + "slug": "1c-enterprise", + "name": "1C:Enterprise", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4029747" + ], + "developers": [ + "1C Company" + ], + "operating_systems": [ + "iOS", + "macOS", + "Microsoft Windows" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/1d/1daylater.json b/data/software/1d/1daylater.json new file mode 100644 index 000000000000..07d480731395 --- /dev/null +++ b/data/software/1d/1daylater.json @@ -0,0 +1,8 @@ +{ + "slug": "1daylater", + "name": "1DayLater", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4595880" + ] +} diff --git a/data/software/1l/1legcall.json b/data/software/1l/1legcall.json new file mode 100644 index 000000000000..159fb56c3ea7 --- /dev/null +++ b/data/software/1l/1legcall.json @@ -0,0 +1,15 @@ +{ + "slug": "1legcall", + "name": "1legcall", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4596059" + ], + "release_date": "2009-01-01", + "developers": [ + "TalkFree, Inc" + ], + "operating_systems": [ + "Symbian" + ] +} diff --git a/data/software/1s/1st-word-1st-word-plus.json b/data/software/1s/1st-word-1st-word-plus.json new file mode 100644 index 000000000000..308bb22feb45 --- /dev/null +++ b/data/software/1s/1st-word-1st-word-plus.json @@ -0,0 +1,12 @@ +{ + "slug": "1st-word-1st-word-plus", + "name": "1st Word/1st Word Plus", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2631384" + ], + "release_date": "1985-01-01", + "developers": [ + "GST Computer Systems" + ] +} diff --git a/data/software/1t/1tik.json b/data/software/1t/1tik.json new file mode 100644 index 000000000000..25f8505fc799 --- /dev/null +++ b/data/software/1t/1tik.json @@ -0,0 +1,8 @@ +{ + "slug": "1tik", + "name": "1tik", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138849869" + ] +} diff --git a/data/software/20/20-20.json b/data/software/20/20-20.json new file mode 100644 index 000000000000..d12447f20cf8 --- /dev/null +++ b/data/software/20/20-20.json @@ -0,0 +1,8 @@ +{ + "slug": "20-20", + "name": "20/20", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25832186" + ] +} diff --git a/data/software/20/20-sim.json b/data/software/20/20-sim.json new file mode 100644 index 000000000000..93de4481b5c2 --- /dev/null +++ b/data/software/20/20-sim.json @@ -0,0 +1,8 @@ +{ + "slug": "20-sim", + "name": "20-sim", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q15154026" + ] +} diff --git a/data/software/20/2000-fonts-by-fantazia.json b/data/software/20/2000-fonts-by-fantazia.json new file mode 100644 index 000000000000..b2c52a1851bd --- /dev/null +++ b/data/software/20/2000-fonts-by-fantazia.json @@ -0,0 +1,14 @@ +{ + "slug": "2000-fonts-by-fantazia", + "name": "2000 Fonts by Fantazia", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126010402" + ], + "publishers": [ + "Sirius Publishing" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/20/2029-online.json b/data/software/20/2029-online.json new file mode 100644 index 000000000000..37c09f39155b --- /dev/null +++ b/data/software/20/2029-online.json @@ -0,0 +1,8 @@ +{ + "slug": "2029-online", + "name": "2029 Online", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122208405" + ] +} diff --git a/data/software/20/20th-century-video-almanac.json b/data/software/20/20th-century-video-almanac.json new file mode 100644 index 000000000000..eed1e5edf33b --- /dev/null +++ b/data/software/20/20th-century-video-almanac.json @@ -0,0 +1,8 @@ +{ + "slug": "20th-century-video-almanac", + "name": "20th Century Video Almanac", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137217537" + ] +} diff --git a/data/software/24/24six.json b/data/software/24/24six.json new file mode 100644 index 000000000000..40831b0b28a5 --- /dev/null +++ b/data/software/24/24six.json @@ -0,0 +1,8 @@ +{ + "slug": "24six", + "name": "24Six", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q132175165" + ] +} diff --git a/data/software/2g/2geom.json b/data/software/2g/2geom.json new file mode 100644 index 000000000000..6e8acf080a5c --- /dev/null +++ b/data/software/2g/2geom.json @@ -0,0 +1,8 @@ +{ + "slug": "2geom", + "name": "2Geom", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4633121" + ] +} diff --git a/data/software/35/350pages.json b/data/software/35/350pages.json new file mode 100644 index 000000000000..3f1a76d84dc6 --- /dev/null +++ b/data/software/35/350pages.json @@ -0,0 +1,8 @@ +{ + "slug": "350pages", + "name": "350pages", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4635477" + ] +} diff --git a/data/software/36/360-clean-droid.json b/data/software/36/360-clean-droid.json new file mode 100644 index 000000000000..ef721ffd3299 --- /dev/null +++ b/data/software/36/360-clean-droid.json @@ -0,0 +1,8 @@ +{ + "slug": "360-clean-droid", + "name": "360 Clean Droid", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18651095" + ] +} diff --git a/data/software/36/360-extreme-browser.json b/data/software/36/360-extreme-browser.json new file mode 100644 index 000000000000..fda31612cd2b --- /dev/null +++ b/data/software/36/360-extreme-browser.json @@ -0,0 +1,8 @@ +{ + "slug": "360-extreme-browser", + "name": "360 Extreme Browser", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q24841151" + ] +} diff --git a/data/software/36/360-safeguard.json b/data/software/36/360-safeguard.json new file mode 100644 index 000000000000..5a5fd3e4e065 --- /dev/null +++ b/data/software/36/360-safeguard.json @@ -0,0 +1,18 @@ +{ + "slug": "360-safeguard", + "name": "360 Safeguard", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q24841467" + ], + "release_date": "2008-07-17", + "developers": [ + "Qihoo 360" + ], + "operating_systems": [ + "Microsoft Windows" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/36/360-yunpan.json b/data/software/36/360-yunpan.json new file mode 100644 index 000000000000..0fd8118a7590 --- /dev/null +++ b/data/software/36/360-yunpan.json @@ -0,0 +1,15 @@ +{ + "slug": "360-yunpan", + "name": "360 Yunpan", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q24834774" + ], + "developers": [ + "Qihoo 360" + ], + "operating_systems": [ + "iOS", + "Microsoft Windows" + ] +} diff --git a/data/software/36/360softmanager.json b/data/software/36/360softmanager.json new file mode 100644 index 000000000000..11275b627492 --- /dev/null +++ b/data/software/36/360softmanager.json @@ -0,0 +1,18 @@ +{ + "slug": "360softmanager", + "name": "360softmanager", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q50490184" + ], + "release_date": "2008-07-17", + "developers": [ + "Qihoo 360" + ], + "operating_systems": [ + "Microsoft Windows" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/36/3615-telecharge.json b/data/software/36/3615-telecharge.json new file mode 100644 index 000000000000..d7c691bdf82e --- /dev/null +++ b/data/software/36/3615-telecharge.json @@ -0,0 +1,12 @@ +{ + "slug": "3615-telecharge", + "name": "3615 Telecharge", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124030189" + ], + "release_date": "1991-01-01", + "genres": [ + "download manager" + ] +} diff --git a/data/software/3d/3d-artist.json b/data/software/3d/3d-artist.json new file mode 100644 index 000000000000..f28986b5d471 --- /dev/null +++ b/data/software/3d/3d-artist.json @@ -0,0 +1,8 @@ +{ + "slug": "3d-artist", + "name": "3D Artist", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4636274" + ] +} diff --git a/data/software/3d/3d-builder-q111936153.json b/data/software/3d/3d-builder-q111936153.json new file mode 100644 index 000000000000..bc5cb424946a --- /dev/null +++ b/data/software/3d/3d-builder-q111936153.json @@ -0,0 +1,14 @@ +{ + "slug": "3d-builder-q111936153", + "name": "3D Builder", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111936153" + ], + "developers": [ + "Microsoft" + ], + "operating_systems": [ + "Windows 8.1" + ] +} diff --git a/data/software/3d/3d-builder.json b/data/software/3d/3d-builder.json new file mode 100644 index 000000000000..b4b66fca93ab --- /dev/null +++ b/data/software/3d/3d-builder.json @@ -0,0 +1,8 @@ +{ + "slug": "3d-builder", + "name": "3D Builder", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28545390" + ] +} diff --git a/data/software/3d/3d-calc.json b/data/software/3d/3d-calc.json new file mode 100644 index 000000000000..9a70163c46fa --- /dev/null +++ b/data/software/3d/3d-calc.json @@ -0,0 +1,11 @@ +{ + "slug": "3d-calc", + "name": "3D-Calc", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1934448" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/3d/3d-cube-hopper.json b/data/software/3d/3d-cube-hopper.json new file mode 100644 index 000000000000..e491cd62788d --- /dev/null +++ b/data/software/3d/3d-cube-hopper.json @@ -0,0 +1,8 @@ +{ + "slug": "3d-cube-hopper", + "name": "3D Cube Hopper", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122208410" + ] +} diff --git a/data/software/3d/3d-home-architect.json b/data/software/3d/3d-home-architect.json new file mode 100644 index 000000000000..d167b1fb2046 --- /dev/null +++ b/data/software/3d/3d-home-architect.json @@ -0,0 +1,8 @@ +{ + "slug": "3d-home-architect", + "name": "3D Home Architect", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135111982" + ] +} diff --git a/data/software/3d/3d-kitchen.json b/data/software/3d/3d-kitchen.json new file mode 100644 index 000000000000..082f91834559 --- /dev/null +++ b/data/software/3d/3d-kitchen.json @@ -0,0 +1,8 @@ +{ + "slug": "3d-kitchen", + "name": "3D Kitchen", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135012795" + ] +} diff --git a/data/software/3d/3d-slash.json b/data/software/3d/3d-slash.json new file mode 100644 index 000000000000..56c661d5712e --- /dev/null +++ b/data/software/3d/3d-slash.json @@ -0,0 +1,8 @@ +{ + "slug": "3d-slash", + "name": "3D Slash", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25113059" + ] +} diff --git a/data/software/3d/3d-topicscape.json b/data/software/3d/3d-topicscape.json new file mode 100644 index 000000000000..06b0db2fe6bd --- /dev/null +++ b/data/software/3d/3d-topicscape.json @@ -0,0 +1,8 @@ +{ + "slug": "3d-topicscape", + "name": "3D Topicscape", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4636304" + ] +} diff --git a/data/software/3d/3d-utilities.json b/data/software/3d/3d-utilities.json new file mode 100644 index 000000000000..1f1f258c4ea0 --- /dev/null +++ b/data/software/3d/3d-utilities.json @@ -0,0 +1,14 @@ +{ + "slug": "3d-utilities", + "name": "3D Utilities", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q44594425" + ], + "developers": [ + "Innovative Software and Data Analysis" + ], + "programming_languages": [ + "Java" + ] +} diff --git a/data/software/3d/3d-wayfinder.json b/data/software/3d/3d-wayfinder.json new file mode 100644 index 000000000000..1cb1f345cb8c --- /dev/null +++ b/data/software/3d/3d-wayfinder.json @@ -0,0 +1,11 @@ +{ + "slug": "3d-wayfinder", + "name": "3D Wayfinder", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4636309" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/3d/3d-world-atlas.json b/data/software/3d/3d-world-atlas.json new file mode 100644 index 000000000000..158216e13f6c --- /dev/null +++ b/data/software/3d/3d-world-atlas.json @@ -0,0 +1,11 @@ +{ + "slug": "3d-world-atlas", + "name": "3D World Atlas", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4636311" + ], + "developers": [ + "Cosmi Corporation" + ] +} diff --git a/data/software/3d/3dcart.json b/data/software/3d/3dcart.json new file mode 100644 index 000000000000..afb902eaa67d --- /dev/null +++ b/data/software/3d/3dcart.json @@ -0,0 +1,8 @@ +{ + "slug": "3dcart", + "name": "3dcart", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q39073359" + ] +} diff --git a/data/software/3d/3dcrafter.json b/data/software/3d/3dcrafter.json new file mode 100644 index 000000000000..e46385ac3e60 --- /dev/null +++ b/data/software/3d/3dcrafter.json @@ -0,0 +1,8 @@ +{ + "slug": "3dcrafter", + "name": "3DCrafter", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4636261" + ] +} diff --git a/data/software/3d/3delight.json b/data/software/3d/3delight.json new file mode 100644 index 000000000000..4222c5edbf07 --- /dev/null +++ b/data/software/3d/3delight.json @@ -0,0 +1,11 @@ +{ + "slug": "3delight", + "name": "3Delight", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4636335" + ], + "developers": [ + "Illumination Research" + ] +} diff --git a/data/software/3d/3df-zephyr.json b/data/software/3d/3df-zephyr.json new file mode 100644 index 000000000000..5757f4d1b15e --- /dev/null +++ b/data/software/3d/3df-zephyr.json @@ -0,0 +1,14 @@ +{ + "slug": "3df-zephyr", + "name": "3DF Zephyr", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q39059924" + ], + "developers": [ + "3DFLOW" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/3d/3dmark.json b/data/software/3d/3dmark.json new file mode 100644 index 000000000000..14910923b743 --- /dev/null +++ b/data/software/3d/3dmark.json @@ -0,0 +1,8 @@ +{ + "slug": "3dmark", + "name": "3DMark", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q229414" + ] +} diff --git a/data/software/3d/3dmix.json b/data/software/3d/3dmix.json new file mode 100644 index 000000000000..7277bb64e49f --- /dev/null +++ b/data/software/3d/3dmix.json @@ -0,0 +1,8 @@ +{ + "slug": "3dmix", + "name": "3dmiX", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4636607" + ] +} diff --git a/data/software/3d/3dreshaper.json b/data/software/3d/3dreshaper.json new file mode 100644 index 000000000000..4b0204458e35 --- /dev/null +++ b/data/software/3d/3dreshaper.json @@ -0,0 +1,8 @@ +{ + "slug": "3dreshaper", + "name": "3DReshaper", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2816469" + ] +} diff --git a/data/software/3d/3dsurvey.json b/data/software/3d/3dsurvey.json new file mode 100644 index 000000000000..422696bad712 --- /dev/null +++ b/data/software/3d/3dsurvey.json @@ -0,0 +1,8 @@ +{ + "slug": "3dsurvey", + "name": "3Dsurvey", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130220976" + ] +} diff --git a/data/software/3p/3player.json b/data/software/3p/3player.json new file mode 100644 index 000000000000..21b62db39835 --- /dev/null +++ b/data/software/3p/3player.json @@ -0,0 +1,11 @@ +{ + "slug": "3player", + "name": "3Player", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4636389" + ], + "developers": [ + "Virgin Media One" + ] +} diff --git a/data/software/4-/4-paws-of-crab.json b/data/software/4-/4-paws-of-crab.json new file mode 100644 index 000000000000..6345639231e0 --- /dev/null +++ b/data/software/4-/4-paws-of-crab.json @@ -0,0 +1,8 @@ +{ + "slug": "4-paws-of-crab", + "name": "4 Paws of Crab", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135583780" + ] +} diff --git a/data/software/40/40tude-dialog.json b/data/software/40/40tude-dialog.json new file mode 100644 index 000000000000..02495578086b --- /dev/null +++ b/data/software/40/40tude-dialog.json @@ -0,0 +1,8 @@ +{ + "slug": "40tude-dialog", + "name": "40tude Dialog", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q173948" + ] +} diff --git a/data/software/4d/4d-explorer.json b/data/software/4d/4d-explorer.json new file mode 100644 index 000000000000..4fe02f3b585a --- /dev/null +++ b/data/software/4d/4d-explorer.json @@ -0,0 +1,11 @@ +{ + "slug": "4d-explorer", + "name": "4D-Explorer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121224262" + ], + "licenses": [ + "GNU General Public License" + ] +} diff --git a/data/software/4k/4kdownload.json b/data/software/4k/4kdownload.json new file mode 100644 index 000000000000..028d0be4acef --- /dev/null +++ b/data/software/4k/4kdownload.json @@ -0,0 +1,8 @@ +{ + "slug": "4kdownload", + "name": "4KDownload", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16971117" + ] +} diff --git a/data/software/4p/4peaks.json b/data/software/4p/4peaks.json new file mode 100644 index 000000000000..9c776f00d69f --- /dev/null +++ b/data/software/4p/4peaks.json @@ -0,0 +1,8 @@ +{ + "slug": "4peaks", + "name": "4Peaks", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131367116" + ] +} diff --git a/data/software/4p/4pm.json b/data/software/4p/4pm.json new file mode 100644 index 000000000000..de3695381de5 --- /dev/null +++ b/data/software/4p/4pm.json @@ -0,0 +1,8 @@ +{ + "slug": "4pm", + "name": "4PM", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q12783274" + ] +} diff --git a/data/software/4s/4sync.json b/data/software/4s/4sync.json new file mode 100644 index 000000000000..da2e88856bdd --- /dev/null +++ b/data/software/4s/4sync.json @@ -0,0 +1,8 @@ +{ + "slug": "4sync", + "name": "4sync", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4031577" + ] +} diff --git a/data/software/4t/4th-dimension.json b/data/software/4t/4th-dimension.json new file mode 100644 index 000000000000..cb9fd0f01605 --- /dev/null +++ b/data/software/4t/4th-dimension.json @@ -0,0 +1,8 @@ +{ + "slug": "4th-dimension", + "name": "4th Dimension", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084373" + ] +} diff --git a/data/software/5-/5-tiles.json b/data/software/5-/5-tiles.json new file mode 100644 index 000000000000..3c9fe674eafa --- /dev/null +++ b/data/software/5-/5-tiles.json @@ -0,0 +1,8 @@ +{ + "slug": "5-tiles", + "name": "5-Tiles", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q21041178" + ] +} diff --git a/data/software/50/50x-impact.json b/data/software/50/50x-impact.json new file mode 100644 index 000000000000..2501d6a8dfb4 --- /dev/null +++ b/data/software/50/50x-impact.json @@ -0,0 +1,11 @@ +{ + "slug": "50x-impact", + "name": "50X Impact", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138756838" + ], + "developers": [ + "50X Labs" + ] +} diff --git a/data/software/51/51-forth.json b/data/software/51/51-forth.json new file mode 100644 index 000000000000..e933fb4c6045 --- /dev/null +++ b/data/software/51/51-forth.json @@ -0,0 +1,11 @@ +{ + "slug": "51-forth", + "name": "51-FORTH", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4639984" + ], + "programming_languages": [ + "assembly language" + ] +} diff --git a/data/software/60/602pc-suite.json b/data/software/60/602pc-suite.json new file mode 100644 index 000000000000..b9d49a4a0687 --- /dev/null +++ b/data/software/60/602pc-suite.json @@ -0,0 +1,14 @@ +{ + "slug": "602pc-suite", + "name": "602PC Suite", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q9134955" + ], + "developers": [ + "Software602" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/75/75-seasons-the-history-of-the-nfl.json b/data/software/75/75-seasons-the-history-of-the-nfl.json new file mode 100644 index 000000000000..558ba2a059ed --- /dev/null +++ b/data/software/75/75-seasons-the-history-of-the-nfl.json @@ -0,0 +1,8 @@ +{ + "slug": "75-seasons-the-history-of-the-nfl", + "name": "75 Seasons: The History of the NFL", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131400051" + ] +} diff --git a/data/software/75/755.json b/data/software/75/755.json new file mode 100644 index 000000000000..bfadb9255eba --- /dev/null +++ b/data/software/75/755.json @@ -0,0 +1,11 @@ +{ + "slug": "755", + "name": "755", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q19803047" + ], + "operating_systems": [ + "iOS" + ] +} diff --git a/data/software/95/95buddy.json b/data/software/95/95buddy.json new file mode 100644 index 000000000000..847097663c23 --- /dev/null +++ b/data/software/95/95buddy.json @@ -0,0 +1,8 @@ +{ + "slug": "95buddy", + "name": "95Buddy", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121631699" + ] +} diff --git a/data/software/98/98lite.json b/data/software/98/98lite.json new file mode 100644 index 000000000000..f2b9d8da3dee --- /dev/null +++ b/data/software/98/98lite.json @@ -0,0 +1,8 @@ +{ + "slug": "98lite", + "name": "98Lite", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4178858" + ] +} diff --git a/data/software/9a/9apps.json b/data/software/9a/9apps.json new file mode 100644 index 000000000000..94b9d91e42b9 --- /dev/null +++ b/data/software/9a/9apps.json @@ -0,0 +1,8 @@ +{ + "slug": "9apps", + "name": "9Apps", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q24698165" + ] +} diff --git a/data/software/9n/9now.json b/data/software/9n/9now.json new file mode 100644 index 000000000000..6c717cea8249 --- /dev/null +++ b/data/software/9n/9now.json @@ -0,0 +1,12 @@ +{ + "slug": "9now", + "name": "9Now", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22080281" + ], + "release_date": "2016-01-27", + "developers": [ + "Nine Network" + ] +} diff --git a/data/software/a-/a-nnotate.json b/data/software/a-/a-nnotate.json new file mode 100644 index 000000000000..129c895c55a6 --- /dev/null +++ b/data/software/a-/a-nnotate.json @@ -0,0 +1,8 @@ +{ + "slug": "a-nnotate", + "name": "A.nnotate", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4648761" + ] +} diff --git a/data/software/a-/a-oli-platform.json b/data/software/a-/a-oli-platform.json new file mode 100644 index 000000000000..b13c49dc39b9 --- /dev/null +++ b/data/software/a-/a-oli-platform.json @@ -0,0 +1,8 @@ +{ + "slug": "a-oli-platform", + "name": "Aïoli platform", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084380" + ] +} diff --git a/data/software/a-/a-parser.json b/data/software/a-/a-parser.json new file mode 100644 index 000000000000..1acbcabd8d51 --- /dev/null +++ b/data/software/a-/a-parser.json @@ -0,0 +1,15 @@ +{ + "slug": "a-parser", + "name": "A-Parser", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140399242" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/a-/a-poke-in-the-ear-with-a-sharp-stick.json b/data/software/a-/a-poke-in-the-ear-with-a-sharp-stick.json new file mode 100644 index 000000000000..572c92bc8909 --- /dev/null +++ b/data/software/a-/a-poke-in-the-ear-with-a-sharp-stick.json @@ -0,0 +1,12 @@ +{ + "slug": "a-poke-in-the-ear-with-a-sharp-stick", + "name": "A Poke in the Ear with a Sharp Stick", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135494376" + ], + "release_date": "1991-01-01", + "publishers": [ + "OSC" + ] +} diff --git a/data/software/a-/a-virtual-file-system.json b/data/software/a-/a-virtual-file-system.json new file mode 100644 index 000000000000..632971f73695 --- /dev/null +++ b/data/software/a-/a-virtual-file-system.json @@ -0,0 +1,8 @@ +{ + "slug": "a-virtual-file-system", + "name": "A Virtual File System", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28600423" + ] +} diff --git a/data/software/a3/a3d.json b/data/software/a3/a3d.json new file mode 100644 index 000000000000..dcac96d1e792 --- /dev/null +++ b/data/software/a3/a3d.json @@ -0,0 +1,11 @@ +{ + "slug": "a3d", + "name": "A3D", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q444196" + ], + "developers": [ + "Creative Technology" + ] +} diff --git a/data/software/a8/a86.json b/data/software/a8/a86.json new file mode 100644 index 000000000000..cbbdb5c375f8 --- /dev/null +++ b/data/software/a8/a86.json @@ -0,0 +1,8 @@ +{ + "slug": "a86", + "name": "A86", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4649654" + ] +} diff --git a/data/software/a9/a9cad.json b/data/software/a9/a9cad.json new file mode 100644 index 000000000000..3b7c3aec388f --- /dev/null +++ b/data/software/a9/a9cad.json @@ -0,0 +1,14 @@ +{ + "slug": "a9cad", + "name": "A9CAD", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q9137004" + ], + "operating_systems": [ + "Microsoft Windows" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/aa/aaa-map-n-go.json b/data/software/aa/aaa-map-n-go.json new file mode 100644 index 000000000000..a64d02174d54 --- /dev/null +++ b/data/software/aa/aaa-map-n-go.json @@ -0,0 +1,8 @@ +{ + "slug": "aaa-map-n-go", + "name": "AAA Map 'n' Go", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q133837305" + ] +} diff --git a/data/software/aa/aacplusenc.json b/data/software/aa/aacplusenc.json new file mode 100644 index 000000000000..0ae961149679 --- /dev/null +++ b/data/software/aa/aacplusenc.json @@ -0,0 +1,8 @@ +{ + "slug": "aacplusenc", + "name": "aacplusenc", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065162" + ] +} diff --git a/data/software/aa/aakhy-n.json b/data/software/aa/aakhy-n.json new file mode 100644 index 000000000000..4787711f479f --- /dev/null +++ b/data/software/aa/aakhy-n.json @@ -0,0 +1,15 @@ +{ + "slug": "aakhy-n", + "name": "Aakhyān", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139376153" + ], + "operating_systems": [ + "web browser" + ], + "programming_languages": [ + "Python", + "TypeScript" + ] +} diff --git a/data/software/aa/aanval.json b/data/software/aa/aanval.json new file mode 100644 index 000000000000..b6e96bb46995 --- /dev/null +++ b/data/software/aa/aanval.json @@ -0,0 +1,11 @@ +{ + "slug": "aanval", + "name": "Aanval", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4661610" + ], + "operating_systems": [ + "macOS" + ] +} diff --git a/data/software/aa/aapanel.json b/data/software/aa/aapanel.json new file mode 100644 index 000000000000..12e786ec3b99 --- /dev/null +++ b/data/software/aa/aapanel.json @@ -0,0 +1,8 @@ +{ + "slug": "aapanel", + "name": "AaPanel", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q133796036" + ] +} diff --git a/data/software/aa/aarogya-setu.json b/data/software/aa/aarogya-setu.json new file mode 100644 index 000000000000..cb38d613e95e --- /dev/null +++ b/data/software/aa/aarogya-setu.json @@ -0,0 +1,19 @@ +{ + "slug": "aarogya-setu", + "name": "Aarogya Setu", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q90565214" + ], + "release_date": "2020-04-01", + "publishers": [ + "Government of India" + ], + "operating_systems": [ + "iOS" + ], + "programming_languages": [ + "Java", + "Kotlin" + ] +} diff --git a/data/software/ab/abalone.json b/data/software/ab/abalone.json new file mode 100644 index 000000000000..8e96c9d0c7b1 --- /dev/null +++ b/data/software/ab/abalone.json @@ -0,0 +1,11 @@ +{ + "slug": "abalone", + "name": "Abalone", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4663323" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/ab/abasic.json b/data/software/ab/abasic.json new file mode 100644 index 000000000000..432e43f45485 --- /dev/null +++ b/data/software/ab/abasic.json @@ -0,0 +1,15 @@ +{ + "slug": "abasic", + "name": "ABasiC", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120547277" + ], + "release_date": "1985-01-01", + "developers": [ + "MetaComCo" + ], + "publishers": [ + "Commodore International" + ] +} diff --git a/data/software/ab/abbot.json b/data/software/ab/abbot.json new file mode 100644 index 000000000000..65c562d57d21 --- /dev/null +++ b/data/software/ab/abbot.json @@ -0,0 +1,8 @@ +{ + "slug": "abbot", + "name": "Abbot", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084374" + ] +} diff --git a/data/software/ab/abbyy-pdf-transformer.json b/data/software/ab/abbyy-pdf-transformer.json new file mode 100644 index 000000000000..bd967bc02101 --- /dev/null +++ b/data/software/ab/abbyy-pdf-transformer.json @@ -0,0 +1,17 @@ +{ + "slug": "abbyy-pdf-transformer", + "name": "ABBYY PDF Transformer+", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q12062331" + ], + "developers": [ + "ABBYY" + ], + "operating_systems": [ + "Microsoft Windows" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/ab/abc-home.json b/data/software/ab/abc-home.json new file mode 100644 index 000000000000..641df262dc6c --- /dev/null +++ b/data/software/ab/abc-home.json @@ -0,0 +1,11 @@ +{ + "slug": "abc-home", + "name": "ABC@Home", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q287009" + ], + "developers": [ + "Leiden University" + ] +} diff --git a/data/software/ab/abc-iview.json b/data/software/ab/abc-iview.json new file mode 100644 index 000000000000..9f080a082da2 --- /dev/null +++ b/data/software/ab/abc-iview.json @@ -0,0 +1,12 @@ +{ + "slug": "abc-iview", + "name": "ABC iview", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4650276" + ], + "release_date": "2008-07-24", + "developers": [ + "Australian Broadcasting Corporation" + ] +} diff --git a/data/software/ab/abc-lx.json b/data/software/ab/abc-lx.json new file mode 100644 index 000000000000..3a89d386c0e9 --- /dev/null +++ b/data/software/ab/abc-lx.json @@ -0,0 +1,14 @@ +{ + "slug": "abc-lx", + "name": "ABC/LX", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121672440" + ], + "developers": [ + "D&A Software" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/ab/abc-media-manager.json b/data/software/ab/abc-media-manager.json new file mode 100644 index 000000000000..1b001ff90448 --- /dev/null +++ b/data/software/ab/abc-media-manager.json @@ -0,0 +1,11 @@ +{ + "slug": "abc-media-manager", + "name": "ABC Media Manager", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q82065556" + ], + "developers": [ + "Micrografx" + ] +} diff --git a/data/software/ab/abc-newslinks.json b/data/software/ab/abc-newslinks.json new file mode 100644 index 000000000000..a1faa651b1cc --- /dev/null +++ b/data/software/ab/abc-newslinks.json @@ -0,0 +1,8 @@ +{ + "slug": "abc-newslinks", + "name": "ABC NewsLinks", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140026913" + ] +} diff --git a/data/software/ab/abcmidi.json b/data/software/ab/abcmidi.json new file mode 100644 index 000000000000..d7ae2219ec58 --- /dev/null +++ b/data/software/ab/abcmidi.json @@ -0,0 +1,14 @@ +{ + "slug": "abcmidi", + "name": "abcmidi", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60500134" + ], + "operating_systems": [ + "macOS" + ], + "licenses": [ + "GNU General Public License, version 2.0 or later" + ] +} diff --git a/data/software/ab/aber.json b/data/software/ab/aber.json new file mode 100644 index 000000000000..850f9b5192bd --- /dev/null +++ b/data/software/ab/aber.json @@ -0,0 +1,8 @@ +{ + "slug": "aber", + "name": "Aber", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136406166" + ] +} diff --git a/data/software/ab/abfreq.json b/data/software/ab/abfreq.json new file mode 100644 index 000000000000..6034ac6d7f42 --- /dev/null +++ b/data/software/ab/abfreq.json @@ -0,0 +1,8 @@ +{ + "slug": "abfreq", + "name": "ABFREQ", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087684" + ] +} diff --git a/data/software/ab/abicheck.json b/data/software/ab/abicheck.json new file mode 100644 index 000000000000..37b637514d55 --- /dev/null +++ b/data/software/ab/abicheck.json @@ -0,0 +1,8 @@ +{ + "slug": "abicheck", + "name": "abicheck", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q96971788" + ] +} diff --git a/data/software/ab/abigail-tools.json b/data/software/ab/abigail-tools.json new file mode 100644 index 000000000000..ee85394d655a --- /dev/null +++ b/data/software/ab/abigail-tools.json @@ -0,0 +1,8 @@ +{ + "slug": "abigail-tools", + "name": "abigail-tools", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q96971789" + ] +} diff --git a/data/software/ab/ability-office.json b/data/software/ab/ability-office.json new file mode 100644 index 000000000000..1f65ed170595 --- /dev/null +++ b/data/software/ab/ability-office.json @@ -0,0 +1,11 @@ +{ + "slug": "ability-office", + "name": "Ability Office", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q321295" + ], + "developers": [ + "Ability Plus Software" + ] +} diff --git a/data/software/ab/abills.json b/data/software/ab/abills.json new file mode 100644 index 000000000000..a73114c41f4f --- /dev/null +++ b/data/software/ab/abills.json @@ -0,0 +1,8 @@ +{ + "slug": "abills", + "name": "Abills", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4033168" + ] +} diff --git a/data/software/ab/abiquo.json b/data/software/ab/abiquo.json new file mode 100644 index 000000000000..dfa7e8d9a987 --- /dev/null +++ b/data/software/ab/abiquo.json @@ -0,0 +1,11 @@ +{ + "slug": "abiquo", + "name": "Abiquo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4667901" + ], + "programming_languages": [ + "Java" + ] +} diff --git a/data/software/ab/able2extract.json b/data/software/ab/able2extract.json new file mode 100644 index 000000000000..12a2c6b39c20 --- /dev/null +++ b/data/software/ab/able2extract.json @@ -0,0 +1,8 @@ +{ + "slug": "able2extract", + "name": "Able2extract", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4668064" + ] +} diff --git a/data/software/ab/ableton-link-utils.json b/data/software/ab/ableton-link-utils.json new file mode 100644 index 000000000000..e596150a386b --- /dev/null +++ b/data/software/ab/ableton-link-utils.json @@ -0,0 +1,8 @@ +{ + "slug": "ableton-link-utils", + "name": "ableton-link-utils", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q96971791" + ] +} diff --git a/data/software/ab/ableton-operator.json b/data/software/ab/ableton-operator.json new file mode 100644 index 000000000000..49ce12fd97fe --- /dev/null +++ b/data/software/ab/ableton-operator.json @@ -0,0 +1,11 @@ +{ + "slug": "ableton-operator", + "name": "Ableton Operator", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4668093" + ], + "developers": [ + "Ableton" + ] +} diff --git a/data/software/ab/about-distro.json b/data/software/ab/about-distro.json new file mode 100644 index 000000000000..197861e2b886 --- /dev/null +++ b/data/software/ab/about-distro.json @@ -0,0 +1,8 @@ +{ + "slug": "about-distro", + "name": "about-distro", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28941597" + ] +} diff --git a/data/software/ab/abra-academy-returning-cast.json b/data/software/ab/abra-academy-returning-cast.json new file mode 100644 index 000000000000..03412c68c87c --- /dev/null +++ b/data/software/ab/abra-academy-returning-cast.json @@ -0,0 +1,8 @@ +{ + "slug": "abra-academy-returning-cast", + "name": "Abra Academy: Returning Cast", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122208532" + ] +} diff --git a/data/software/ab/abrowse.json b/data/software/ab/abrowse.json new file mode 100644 index 000000000000..81f31d700e9c --- /dev/null +++ b/data/software/ab/abrowse.json @@ -0,0 +1,11 @@ +{ + "slug": "abrowse", + "name": "ABrowse", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2494998" + ], + "operating_systems": [ + "Syllable Desktop" + ] +} diff --git a/data/software/ab/abseil.json b/data/software/ab/abseil.json new file mode 100644 index 000000000000..1ea811fcf249 --- /dev/null +++ b/data/software/ab/abseil.json @@ -0,0 +1,8 @@ +{ + "slug": "abseil", + "name": "Abseil", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139892393" + ] +} diff --git a/data/software/ab/absolute-manage.json b/data/software/ab/absolute-manage.json new file mode 100644 index 000000000000..803afb787c63 --- /dev/null +++ b/data/software/ab/absolute-manage.json @@ -0,0 +1,8 @@ +{ + "slug": "absolute-manage", + "name": "Absolute Manage", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4669779" + ] +} diff --git a/data/software/ab/absolute-poker.json b/data/software/ab/absolute-poker.json new file mode 100644 index 000000000000..a6bc39e08b78 --- /dev/null +++ b/data/software/ab/absolute-poker.json @@ -0,0 +1,8 @@ +{ + "slug": "absolute-poker", + "name": "Absolute Poker", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122208535" + ] +} diff --git a/data/software/ab/abviewer.json b/data/software/ab/abviewer.json new file mode 100644 index 000000000000..f23bed416fd7 --- /dev/null +++ b/data/software/ab/abviewer.json @@ -0,0 +1,8 @@ +{ + "slug": "abviewer", + "name": "ABViewer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16525094" + ] +} diff --git a/data/software/ac/ac3d.json b/data/software/ac/ac3d.json new file mode 100644 index 000000000000..103777ca1b46 --- /dev/null +++ b/data/software/ac/ac3d.json @@ -0,0 +1,8 @@ +{ + "slug": "ac3d", + "name": "AC3D", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4650477" + ] +} diff --git a/data/software/ac/academic-meta-tool.json b/data/software/ac/academic-meta-tool.json new file mode 100644 index 000000000000..0091c79f54c9 --- /dev/null +++ b/data/software/ac/academic-meta-tool.json @@ -0,0 +1,21 @@ +{ + "slug": "academic-meta-tool", + "name": "Academic Meta Tool", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q74003194" + ], + "developers": [ + "mainzed", + "Florian Thiery" + ], + "licenses": [ + "MIT License" + ], + "genres": [ + "SPARQL", + "vagueness", + "linked data", + "graph database" + ] +} diff --git a/data/software/ac/acado-toolkit.json b/data/software/ac/acado-toolkit.json new file mode 100644 index 000000000000..c6dd7a6f1801 --- /dev/null +++ b/data/software/ac/acado-toolkit.json @@ -0,0 +1,15 @@ +{ + "slug": "acado-toolkit", + "name": "ACADO Toolkit", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134452070" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "licenses": [ + "GNU General Public License, version 3.0" + ] +} diff --git a/data/software/ac/acados.json b/data/software/ac/acados.json new file mode 100644 index 000000000000..3125eb947e72 --- /dev/null +++ b/data/software/ac/acados.json @@ -0,0 +1,11 @@ +{ + "slug": "acados", + "name": "acados", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134285753" + ], + "licenses": [ + "2-clause BSD License" + ] +} diff --git a/data/software/ac/acarm-ng.json b/data/software/ac/acarm-ng.json new file mode 100644 index 000000000000..1df1e8ab6cf0 --- /dev/null +++ b/data/software/ac/acarm-ng.json @@ -0,0 +1,8 @@ +{ + "slug": "acarm-ng", + "name": "ACARM-ng", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4650501" + ] +} diff --git a/data/software/ac/acaso.json b/data/software/ac/acaso.json new file mode 100644 index 000000000000..69ef5f277f59 --- /dev/null +++ b/data/software/ac/acaso.json @@ -0,0 +1,8 @@ +{ + "slug": "acaso", + "name": "ACASO", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125523409" + ] +} diff --git a/data/software/ac/accel-ppp.json b/data/software/ac/accel-ppp.json new file mode 100644 index 000000000000..b7d4225b7fdf --- /dev/null +++ b/data/software/ac/accel-ppp.json @@ -0,0 +1,11 @@ +{ + "slug": "accel-ppp", + "name": "accel-ppp", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28941598" + ], + "licenses": [ + "GNU General Public License, version 2.0" + ] +} diff --git a/data/software/ac/accelerated-linear-algebra.json b/data/software/ac/accelerated-linear-algebra.json new file mode 100644 index 000000000000..10891cff94d2 --- /dev/null +++ b/data/software/ac/accelerated-linear-algebra.json @@ -0,0 +1,8 @@ +{ + "slug": "accelerated-linear-algebra", + "name": "Accelerated Linear Algebra", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124096700" + ] +} diff --git a/data/software/ac/accelerated-math.json b/data/software/ac/accelerated-math.json new file mode 100644 index 000000000000..274d20aaa3e4 --- /dev/null +++ b/data/software/ac/accelerated-math.json @@ -0,0 +1,14 @@ +{ + "slug": "accelerated-math", + "name": "Accelerated Math", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4672273" + ], + "developers": [ + "Renaissance Learning" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/ac/accelerated-reader.json b/data/software/ac/accelerated-reader.json new file mode 100644 index 000000000000..9089ee1a4ec1 --- /dev/null +++ b/data/software/ac/accelerated-reader.json @@ -0,0 +1,11 @@ +{ + "slug": "accelerated-reader", + "name": "Accelerated Reader", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4672275" + ], + "developers": [ + "Renaissance Learning" + ] +} diff --git a/data/software/ac/accelerator-physics-codes.json b/data/software/ac/accelerator-physics-codes.json new file mode 100644 index 000000000000..df920431a912 --- /dev/null +++ b/data/software/ac/accelerator-physics-codes.json @@ -0,0 +1,8 @@ +{ + "slug": "accelerator-physics-codes", + "name": "Accelerator Physics Codes", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16001525" + ] +} diff --git a/data/software/ac/accesdata-ftk.json b/data/software/ac/accesdata-ftk.json new file mode 100644 index 000000000000..142dc47b149d --- /dev/null +++ b/data/software/ac/accesdata-ftk.json @@ -0,0 +1,9 @@ +{ + "slug": "accesdata-ftk", + "name": "AccesData FTK", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117774815" + ], + "release_date": "2013-01-01" +} diff --git a/data/software/ac/access-software.json b/data/software/ac/access-software.json new file mode 100644 index 000000000000..486945b3d2fc --- /dev/null +++ b/data/software/ac/access-software.json @@ -0,0 +1,8 @@ +{ + "slug": "access-software", + "name": "access software", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q228331" + ] +} diff --git a/data/software/ac/accessibility-software.json b/data/software/ac/accessibility-software.json new file mode 100644 index 000000000000..cfe6a64d6dd5 --- /dev/null +++ b/data/software/ac/accessibility-software.json @@ -0,0 +1,8 @@ +{ + "slug": "accessibility-software", + "name": "accessibility software", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136207022" + ] +} diff --git a/data/software/ac/accis-sm.json b/data/software/ac/accis-sm.json new file mode 100644 index 000000000000..2b4f91e97265 --- /dev/null +++ b/data/software/ac/accis-sm.json @@ -0,0 +1,8 @@ +{ + "slug": "accis-sm", + "name": "acCIS/SM", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121631724" + ] +} diff --git a/data/software/ac/accurev-scm.json b/data/software/ac/accurev-scm.json new file mode 100644 index 000000000000..b68e5af25a67 --- /dev/null +++ b/data/software/ac/accurev-scm.json @@ -0,0 +1,11 @@ +{ + "slug": "accurev-scm", + "name": "AccuRev SCM", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4672895" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/ac/acd-labs-percepta.json b/data/software/ac/acd-labs-percepta.json new file mode 100644 index 000000000000..efbc7ed64770 --- /dev/null +++ b/data/software/ac/acd-labs-percepta.json @@ -0,0 +1,11 @@ +{ + "slug": "acd-labs-percepta", + "name": "ACD/Labs Percepta", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136437727" + ], + "developers": [ + "Advanced Chemistry Development" + ] +} diff --git a/data/software/ac/acerules.json b/data/software/ac/acerules.json new file mode 100644 index 000000000000..8889730032a4 --- /dev/null +++ b/data/software/ac/acerules.json @@ -0,0 +1,11 @@ +{ + "slug": "acerules", + "name": "AceRules", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122911356" + ], + "developers": [ + "Tobias Kuhn" + ] +} diff --git a/data/software/ac/acid-pro.json b/data/software/ac/acid-pro.json new file mode 100644 index 000000000000..832b783436a6 --- /dev/null +++ b/data/software/ac/acid-pro.json @@ -0,0 +1,8 @@ +{ + "slug": "acid-pro", + "name": "Acid Pro", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2552023" + ] +} diff --git a/data/software/ac/acif.json b/data/software/ac/acif.json new file mode 100644 index 000000000000..4b946b88af13 --- /dev/null +++ b/data/software/ac/acif.json @@ -0,0 +1,11 @@ +{ + "slug": "acif", + "name": "ACIF", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4650675" + ], + "genres": [ + "data management" + ] +} diff --git a/data/software/ac/acme.json b/data/software/ac/acme.json new file mode 100644 index 000000000000..cf4e6b2db983 --- /dev/null +++ b/data/software/ac/acme.json @@ -0,0 +1,11 @@ +{ + "slug": "acme", + "name": "acme", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28941601" + ], + "licenses": [ + "Apache Software License 2.0" + ] +} diff --git a/data/software/ac/acodis.json b/data/software/ac/acodis.json new file mode 100644 index 000000000000..49dc287610fe --- /dev/null +++ b/data/software/ac/acodis.json @@ -0,0 +1,8 @@ +{ + "slug": "acodis", + "name": "Acodis", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111236589" + ] +} diff --git a/data/software/ac/acorn-c-c.json b/data/software/ac/acorn-c-c.json new file mode 100644 index 000000000000..c49fd55e86bf --- /dev/null +++ b/data/software/ac/acorn-c-c.json @@ -0,0 +1,14 @@ +{ + "slug": "acorn-c-c", + "name": "Acorn C/C++", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4674544" + ], + "developers": [ + "RISC OS Open" + ], + "operating_systems": [ + "RISC OS" + ] +} diff --git a/data/software/ac/acornsoft-lisp.json b/data/software/ac/acornsoft-lisp.json new file mode 100644 index 000000000000..04304adfc992 --- /dev/null +++ b/data/software/ac/acornsoft-lisp.json @@ -0,0 +1,12 @@ +{ + "slug": "acornsoft-lisp", + "name": "Acornsoft LISP", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4674579" + ], + "release_date": "1982-01-01", + "developers": [ + "Acornsoft" + ] +} diff --git a/data/software/ac/acornsoft-logo.json b/data/software/ac/acornsoft-logo.json new file mode 100644 index 000000000000..8962441f4e7e --- /dev/null +++ b/data/software/ac/acornsoft-logo.json @@ -0,0 +1,11 @@ +{ + "slug": "acornsoft-logo", + "name": "Acornsoft Logo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4674578" + ], + "developers": [ + "Acornsoft" + ] +} diff --git a/data/software/ac/acrolinx.json b/data/software/ac/acrolinx.json new file mode 100644 index 000000000000..c3097a8ac253 --- /dev/null +++ b/data/software/ac/acrolinx.json @@ -0,0 +1,8 @@ +{ + "slug": "acrolinx", + "name": "Acrolinx", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108525266" + ] +} diff --git a/data/software/ac/acronis-backup-recovery.json b/data/software/ac/acronis-backup-recovery.json new file mode 100644 index 000000000000..2f7ee9da4151 --- /dev/null +++ b/data/software/ac/acronis-backup-recovery.json @@ -0,0 +1,11 @@ +{ + "slug": "acronis-backup-recovery", + "name": "Acronis Backup & Recovery", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11189985" + ], + "developers": [ + "Acronis" + ] +} diff --git a/data/software/ac/across-language-server.json b/data/software/ac/across-language-server.json new file mode 100644 index 000000000000..ba2ba52f9aa9 --- /dev/null +++ b/data/software/ac/across-language-server.json @@ -0,0 +1,8 @@ +{ + "slug": "across-language-server", + "name": "Across Language Server", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q342845" + ] +} diff --git a/data/software/ac/act-on.json b/data/software/ac/act-on.json new file mode 100644 index 000000000000..67c80d9a69eb --- /dev/null +++ b/data/software/ac/act-on.json @@ -0,0 +1,8 @@ +{ + "slug": "act-on", + "name": "Act-On", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4676587" + ] +} diff --git a/data/software/ac/act.json b/data/software/ac/act.json new file mode 100644 index 000000000000..9d62942dcaee --- /dev/null +++ b/data/software/ac/act.json @@ -0,0 +1,14 @@ +{ + "slug": "act", + "name": "Act!", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q288749" + ], + "developers": [ + "ACT!" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/ac/actapro.json b/data/software/ac/actapro.json new file mode 100644 index 000000000000..eea1a0cb7139 --- /dev/null +++ b/data/software/ac/actapro.json @@ -0,0 +1,8 @@ +{ + "slug": "actapro", + "name": "ACTApro", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q15781181" + ] +} diff --git a/data/software/ac/actcad.json b/data/software/ac/actcad.json new file mode 100644 index 000000000000..81fab01cf083 --- /dev/null +++ b/data/software/ac/actcad.json @@ -0,0 +1,8 @@ +{ + "slug": "actcad", + "name": "ActCAD", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q91300663" + ] +} diff --git a/data/software/ac/actifsource.json b/data/software/ac/actifsource.json new file mode 100644 index 000000000000..30b6ac1406de --- /dev/null +++ b/data/software/ac/actifsource.json @@ -0,0 +1,8 @@ +{ + "slug": "actifsource", + "name": "Actifsource", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4676826" + ] +} diff --git a/data/software/ac/action-center.json b/data/software/ac/action-center.json new file mode 100644 index 000000000000..9734f5aa66fd --- /dev/null +++ b/data/software/ac/action-center.json @@ -0,0 +1,8 @@ +{ + "slug": "action-center", + "name": "Action Center", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q21041422" + ] +} diff --git a/data/software/ac/actionoutline.json b/data/software/ac/actionoutline.json new file mode 100644 index 000000000000..dd119661528d --- /dev/null +++ b/data/software/ac/actionoutline.json @@ -0,0 +1,14 @@ +{ + "slug": "actionoutline", + "name": "ActionOutline", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106143543" + ], + "operating_systems": [ + "Microsoft Windows" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/ac/active-desktop.json b/data/software/ac/active-desktop.json new file mode 100644 index 000000000000..f3acf64f45f4 --- /dev/null +++ b/data/software/ac/active-desktop.json @@ -0,0 +1,8 @@ +{ + "slug": "active-desktop", + "name": "Active Desktop", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q177314" + ] +} diff --git a/data/software/ac/activecho.json b/data/software/ac/activecho.json new file mode 100644 index 000000000000..1c8703fcfc8a --- /dev/null +++ b/data/software/ac/activecho.json @@ -0,0 +1,11 @@ +{ + "slug": "activecho", + "name": "ActivEcho", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4677447" + ], + "developers": [ + "GroupLogic" + ] +} diff --git a/data/software/ac/activecollab.json b/data/software/ac/activecollab.json new file mode 100644 index 000000000000..308b495fc5e5 --- /dev/null +++ b/data/software/ac/activecollab.json @@ -0,0 +1,8 @@ +{ + "slug": "activecollab", + "name": "ActiveCollab", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q20309970" + ] +} diff --git a/data/software/ac/activefile.json b/data/software/ac/activefile.json new file mode 100644 index 000000000000..3b6fa1876adb --- /dev/null +++ b/data/software/ac/activefile.json @@ -0,0 +1,8 @@ +{ + "slug": "activefile", + "name": "ActiveFile", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4033358" + ] +} diff --git a/data/software/ac/activepresentation.json b/data/software/ac/activepresentation.json new file mode 100644 index 000000000000..9e8087fa1c7d --- /dev/null +++ b/data/software/ac/activepresentation.json @@ -0,0 +1,8 @@ +{ + "slug": "activepresentation", + "name": "ActivePresentation", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4677474" + ] +} diff --git a/data/software/ac/activepresenter.json b/data/software/ac/activepresenter.json new file mode 100644 index 000000000000..98ceb199dd1e --- /dev/null +++ b/data/software/ac/activepresenter.json @@ -0,0 +1,14 @@ +{ + "slug": "activepresenter", + "name": "ActivePresenter", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4677477" + ], + "operating_systems": [ + "Microsoft Windows" + ], + "genres": [ + "screencasting software" + ] +} diff --git a/data/software/ac/activepython.json b/data/software/ac/activepython.json new file mode 100644 index 000000000000..73e776ae2af1 --- /dev/null +++ b/data/software/ac/activepython.json @@ -0,0 +1,11 @@ +{ + "slug": "activepython", + "name": "ActivePython", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4033361" + ], + "developers": [ + "ActiveState" + ] +} diff --git a/data/software/ac/activeshare.json b/data/software/ac/activeshare.json new file mode 100644 index 000000000000..0938766fbc32 --- /dev/null +++ b/data/software/ac/activeshare.json @@ -0,0 +1,11 @@ +{ + "slug": "activeshare", + "name": "ActiveShare", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q66458642" + ], + "developers": [ + "Adobe" + ] +} diff --git a/data/software/ac/activesync.json b/data/software/ac/activesync.json new file mode 100644 index 000000000000..948be8a8b941 --- /dev/null +++ b/data/software/ac/activesync.json @@ -0,0 +1,17 @@ +{ + "slug": "activesync", + "name": "ActiveSync", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q343961" + ], + "developers": [ + "Microsoft" + ], + "operating_systems": [ + "Windows 95", + "Windows Whistler", + "Windows Longhorn", + "Windows NT 4.0" + ] +} diff --git a/data/software/ac/activevos.json b/data/software/ac/activevos.json new file mode 100644 index 000000000000..3fabd0aa7970 --- /dev/null +++ b/data/software/ac/activevos.json @@ -0,0 +1,8 @@ +{ + "slug": "activevos", + "name": "ActiveVOS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16245498" + ] +} diff --git a/data/software/ac/activeweave.json b/data/software/ac/activeweave.json new file mode 100644 index 000000000000..d39f9af67e6e --- /dev/null +++ b/data/software/ac/activeweave.json @@ -0,0 +1,14 @@ +{ + "slug": "activeweave", + "name": "Activeweave", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4677601" + ], + "developers": [ + "Activeweave" + ], + "operating_systems": [ + "cross-platform" + ] +} diff --git a/data/software/ac/activity-monitor.json b/data/software/ac/activity-monitor.json new file mode 100644 index 000000000000..68a2833e83f1 --- /dev/null +++ b/data/software/ac/activity-monitor.json @@ -0,0 +1,14 @@ +{ + "slug": "activity-monitor", + "name": "Activity Monitor", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1054964" + ], + "developers": [ + "Apple Inc." + ], + "operating_systems": [ + "macOS" + ] +} diff --git a/data/software/ac/actran.json b/data/software/ac/actran.json new file mode 100644 index 000000000000..13b3aca0bcba --- /dev/null +++ b/data/software/ac/actran.json @@ -0,0 +1,8 @@ +{ + "slug": "actran", + "name": "Actran", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q19871539" + ] +} diff --git a/data/software/ac/acumbamail.json b/data/software/ac/acumbamail.json new file mode 100644 index 000000000000..6d607a02af0a --- /dev/null +++ b/data/software/ac/acumbamail.json @@ -0,0 +1,8 @@ +{ + "slug": "acumbamail", + "name": "Acumbamail", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108552721" + ] +} diff --git a/data/software/ac/acunetix.json b/data/software/ac/acunetix.json new file mode 100644 index 000000000000..33fb80f6e931 --- /dev/null +++ b/data/software/ac/acunetix.json @@ -0,0 +1,11 @@ +{ + "slug": "acunetix", + "name": "Acunetix", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60168780" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/ad/adabas-d.json b/data/software/ad/adabas-d.json new file mode 100644 index 000000000000..044bd15519fc --- /dev/null +++ b/data/software/ad/adabas-d.json @@ -0,0 +1,11 @@ +{ + "slug": "adabas-d", + "name": "Adabas D", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q346441" + ], + "developers": [ + "Software AG" + ] +} diff --git a/data/software/ad/adabas.json b/data/software/ad/adabas.json new file mode 100644 index 000000000000..22919dd4d13f --- /dev/null +++ b/data/software/ad/adabas.json @@ -0,0 +1,15 @@ +{ + "slug": "adabas", + "name": "ADABAS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q346434" + ], + "developers": [ + "Software AG" + ], + "operating_systems": [ + "IBM mainframe", + "Microsoft Windows" + ] +} diff --git a/data/software/ad/adacontrol.json b/data/software/ad/adacontrol.json new file mode 100644 index 000000000000..c8fb6cff127e --- /dev/null +++ b/data/software/ad/adacontrol.json @@ -0,0 +1,15 @@ +{ + "slug": "adacontrol", + "name": "AdaControl", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4678212" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "licenses": [ + "GNAT Modified General Public License" + ] +} diff --git a/data/software/ad/adaptable-input-output-system-version-2.json b/data/software/ad/adaptable-input-output-system-version-2.json new file mode 100644 index 000000000000..9a5a5f80b23b --- /dev/null +++ b/data/software/ad/adaptable-input-output-system-version-2.json @@ -0,0 +1,15 @@ +{ + "slug": "adaptable-input-output-system-version-2", + "name": "Adaptable Input Output System version 2", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q119841201" + ], + "developers": [ + "Norbert Podhorszki", + "William Godoy" + ], + "licenses": [ + "Apache Software License 2.0" + ] +} diff --git a/data/software/ad/adaptation-kit-upgrade.json b/data/software/ad/adaptation-kit-upgrade.json new file mode 100644 index 000000000000..1fa2d737a9fb --- /dev/null +++ b/data/software/ad/adaptation-kit-upgrade.json @@ -0,0 +1,8 @@ +{ + "slug": "adaptation-kit-upgrade", + "name": "Adaptation kit upgrade", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4032925" + ] +} diff --git a/data/software/ad/adapter.json b/data/software/ad/adapter.json new file mode 100644 index 000000000000..e3c67ba3f2b1 --- /dev/null +++ b/data/software/ad/adapter.json @@ -0,0 +1,8 @@ +{ + "slug": "adapter", + "name": "Adapter", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5657412" + ] +} diff --git a/data/software/ad/adaptive-domain-environment-for-operating-systems.json b/data/software/ad/adaptive-domain-environment-for-operating-systems.json new file mode 100644 index 000000000000..d69d57cb0dd2 --- /dev/null +++ b/data/software/ad/adaptive-domain-environment-for-operating-systems.json @@ -0,0 +1,8 @@ +{ + "slug": "adaptive-domain-environment-for-operating-systems", + "name": "Adaptive Domain Environment for Operating Systems", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2824314" + ] +} diff --git a/data/software/ad/adaptive-modeler.json b/data/software/ad/adaptive-modeler.json new file mode 100644 index 000000000000..aa222a4ec605 --- /dev/null +++ b/data/software/ad/adaptive-modeler.json @@ -0,0 +1,8 @@ +{ + "slug": "adaptive-modeler", + "name": "Adaptive Modeler", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4680706" + ] +} diff --git a/data/software/ad/adaware-antivirus.json b/data/software/ad/adaware-antivirus.json new file mode 100644 index 000000000000..3b0b80fb253a --- /dev/null +++ b/data/software/ad/adaware-antivirus.json @@ -0,0 +1,14 @@ +{ + "slug": "adaware-antivirus", + "name": "Adaware Antivirus", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q345174" + ], + "developers": [ + "Lavasoft" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/ad/address-book.json b/data/software/ad/address-book.json new file mode 100644 index 000000000000..ae8b9d81cf83 --- /dev/null +++ b/data/software/ad/address-book.json @@ -0,0 +1,11 @@ +{ + "slug": "address-book", + "name": "Address Book", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25210858" + ], + "developers": [ + "Apple Inc." + ] +} diff --git a/data/software/ad/adesklets.json b/data/software/ad/adesklets.json new file mode 100644 index 000000000000..237fa558ac7c --- /dev/null +++ b/data/software/ad/adesklets.json @@ -0,0 +1,8 @@ +{ + "slug": "adesklets", + "name": "Adesklets", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2819128" + ] +} diff --git a/data/software/ad/adibou.json b/data/software/ad/adibou.json new file mode 100644 index 000000000000..4c76a5d1e52e --- /dev/null +++ b/data/software/ad/adibou.json @@ -0,0 +1,22 @@ +{ + "slug": "adibou", + "name": "Adibou", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2824371" + ], + "developers": [ + "Eko Software", + "Coktel Vision", + "Mindscape", + "Kalisto Entertainment" + ], + "publishers": [ + "Coktel Vision", + "Sierra Entertainment", + "Mindscape" + ], + "genres": [ + "educational video game" + ] +} diff --git a/data/software/ad/adic.json b/data/software/ad/adic.json new file mode 100644 index 000000000000..55374c1aeb04 --- /dev/null +++ b/data/software/ad/adic.json @@ -0,0 +1,8 @@ +{ + "slug": "adic", + "name": "ADIC", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123191698" + ] +} diff --git a/data/software/ad/adiirc.json b/data/software/ad/adiirc.json new file mode 100644 index 000000000000..9294ea5decf7 --- /dev/null +++ b/data/software/ad/adiirc.json @@ -0,0 +1,8 @@ +{ + "slug": "adiirc", + "name": "AdiIRC", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q56316318" + ] +} diff --git a/data/software/ad/adios.json b/data/software/ad/adios.json new file mode 100644 index 000000000000..2deab0378f31 --- /dev/null +++ b/data/software/ad/adios.json @@ -0,0 +1,14 @@ +{ + "slug": "adios", + "name": "AdiOS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139501276" + ], + "developers": [ + "AdiOS" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/ad/adisyo.json b/data/software/ad/adisyo.json new file mode 100644 index 000000000000..9634b87ec0e1 --- /dev/null +++ b/data/software/ad/adisyo.json @@ -0,0 +1,8 @@ +{ + "slug": "adisyo", + "name": "Adisyo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138857208" + ] +} diff --git a/data/software/ad/adlib-archive.json b/data/software/ad/adlib-archive.json new file mode 100644 index 000000000000..8fc3e5fcdf2b --- /dev/null +++ b/data/software/ad/adlib-archive.json @@ -0,0 +1,8 @@ +{ + "slug": "adlib-archive", + "name": "Adlib Archive", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084375" + ] +} diff --git a/data/software/ad/admar.json b/data/software/ad/admar.json new file mode 100644 index 000000000000..24e78fcde2f7 --- /dev/null +++ b/data/software/ad/admar.json @@ -0,0 +1,8 @@ +{ + "slug": "admar", + "name": "ADMAR", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q290409" + ] +} diff --git a/data/software/ad/admixtools.json b/data/software/ad/admixtools.json new file mode 100644 index 000000000000..8c4a6d85b2e7 --- /dev/null +++ b/data/software/ad/admixtools.json @@ -0,0 +1,15 @@ +{ + "slug": "admixtools", + "name": "ADMIXTOOLS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112064761" + ], + "developers": [ + "David E. Reich", + "Nick Patterson" + ], + "programming_languages": [ + "R" + ] +} diff --git a/data/software/ad/adobe-account-access.json b/data/software/ad/adobe-account-access.json new file mode 100644 index 000000000000..e345ef1a4a3e --- /dev/null +++ b/data/software/ad/adobe-account-access.json @@ -0,0 +1,8 @@ +{ + "slug": "adobe-account-access", + "name": "Adobe Account Access", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109595344" + ] +} diff --git a/data/software/ad/adobe-acrobat-capture-3-0.json b/data/software/ad/adobe-acrobat-capture-3-0.json new file mode 100644 index 000000000000..7c6718509270 --- /dev/null +++ b/data/software/ad/adobe-acrobat-capture-3-0.json @@ -0,0 +1,11 @@ +{ + "slug": "adobe-acrobat-capture-3-0", + "name": "Adobe Acrobat Capture 3.0", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18471852" + ], + "developers": [ + "Adobe" + ] +} diff --git a/data/software/ad/adobe-acrobat-reader-dc-2017.json b/data/software/ad/adobe-acrobat-reader-dc-2017.json new file mode 100644 index 000000000000..defd1e353cea --- /dev/null +++ b/data/software/ad/adobe-acrobat-reader-dc-2017.json @@ -0,0 +1,17 @@ +{ + "slug": "adobe-acrobat-reader-dc-2017", + "name": "Adobe Acrobat Reader DC 2017", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60693427" + ], + "release_date": "2017-04-11", + "developers": [ + "Adobe" + ], + "operating_systems": [ + "Windows Server 2016", + "Windows Server 2012 R2", + "Windows 8.1" + ] +} diff --git a/data/software/ad/adobe-acrobat-reader-dc.json b/data/software/ad/adobe-acrobat-reader-dc.json new file mode 100644 index 000000000000..d97109d9eb94 --- /dev/null +++ b/data/software/ad/adobe-acrobat-reader-dc.json @@ -0,0 +1,16 @@ +{ + "slug": "adobe-acrobat-reader-dc", + "name": "Adobe Acrobat Reader DC", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2634567" + ], + "release_date": "2015-04-06", + "developers": [ + "Adobe" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/software/ad/adobe-air.json b/data/software/ad/adobe-air.json new file mode 100644 index 000000000000..710a9923a32b --- /dev/null +++ b/data/software/ad/adobe-air.json @@ -0,0 +1,21 @@ +{ + "slug": "adobe-air", + "name": "Adobe AIR", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q360310" + ], + "developers": [ + "Harman International Industries", + "Adobe" + ], + "operating_systems": [ + "iOS", + "BlackBerry Tablet OS", + "macOS", + "Microsoft Windows" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/ad/adobe-browserlab.json b/data/software/ad/adobe-browserlab.json new file mode 100644 index 000000000000..66f48e60a027 --- /dev/null +++ b/data/software/ad/adobe-browserlab.json @@ -0,0 +1,11 @@ +{ + "slug": "adobe-browserlab", + "name": "Adobe BrowserLab", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4683970" + ], + "developers": [ + "Adobe" + ] +} diff --git a/data/software/ad/adobe-character-animator.json b/data/software/ad/adobe-character-animator.json new file mode 100644 index 000000000000..38f3362db868 --- /dev/null +++ b/data/software/ad/adobe-character-animator.json @@ -0,0 +1,14 @@ +{ + "slug": "adobe-character-animator", + "name": "Adobe Character Animator", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q21539836" + ], + "developers": [ + "Adobe" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/ad/adobe-color.json b/data/software/ad/adobe-color.json new file mode 100644 index 000000000000..24ab0cfec1b8 --- /dev/null +++ b/data/software/ad/adobe-color.json @@ -0,0 +1,11 @@ +{ + "slug": "adobe-color", + "name": "Adobe Color", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109360871" + ], + "developers": [ + "Adobe" + ] +} diff --git a/data/software/ad/adobe-device-central.json b/data/software/ad/adobe-device-central.json new file mode 100644 index 000000000000..a5d9aefa1de1 --- /dev/null +++ b/data/software/ad/adobe-device-central.json @@ -0,0 +1,11 @@ +{ + "slug": "adobe-device-central", + "name": "Adobe Device Central", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q795920" + ], + "developers": [ + "Adobe" + ] +} diff --git a/data/software/ad/adobe-digital-editions.json b/data/software/ad/adobe-digital-editions.json new file mode 100644 index 000000000000..76ab33356aa6 --- /dev/null +++ b/data/software/ad/adobe-digital-editions.json @@ -0,0 +1,17 @@ +{ + "slug": "adobe-digital-editions", + "name": "Adobe Digital Editions", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q144858" + ], + "developers": [ + "Adobe" + ], + "operating_systems": [ + "macOS" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/ad/adobe-dimensions.json b/data/software/ad/adobe-dimensions.json new file mode 100644 index 000000000000..d2c92213e4b5 --- /dev/null +++ b/data/software/ad/adobe-dimensions.json @@ -0,0 +1,11 @@ +{ + "slug": "adobe-dimensions", + "name": "Adobe Dimensions", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11190003" + ], + "developers": [ + "Adobe" + ] +} diff --git a/data/software/ad/adobe-edge-animate.json b/data/software/ad/adobe-edge-animate.json new file mode 100644 index 000000000000..0fb2e1ea9f29 --- /dev/null +++ b/data/software/ad/adobe-edge-animate.json @@ -0,0 +1,17 @@ +{ + "slug": "adobe-edge-animate", + "name": "Adobe Edge Animate", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q360119" + ], + "developers": [ + "Adobe" + ], + "operating_systems": [ + "Microsoft Windows" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/ad/adobe-edge.json b/data/software/ad/adobe-edge.json new file mode 100644 index 000000000000..5c70b591d059 --- /dev/null +++ b/data/software/ad/adobe-edge.json @@ -0,0 +1,11 @@ +{ + "slug": "adobe-edge", + "name": "Adobe Edge", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q14073847" + ], + "developers": [ + "Adobe" + ] +} diff --git a/data/software/ad/adobe-elearning-suite.json b/data/software/ad/adobe-elearning-suite.json new file mode 100644 index 000000000000..cdb5abb3c9a6 --- /dev/null +++ b/data/software/ad/adobe-elearning-suite.json @@ -0,0 +1,15 @@ +{ + "slug": "adobe-elearning-suite", + "name": "Adobe eLearning Suite", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4684017" + ], + "developers": [ + "Adobe" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/software/ad/adobe-express.json b/data/software/ad/adobe-express.json new file mode 100644 index 000000000000..1577455f352e --- /dev/null +++ b/data/software/ad/adobe-express.json @@ -0,0 +1,12 @@ +{ + "slug": "adobe-express", + "name": "Adobe Express", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28446850" + ], + "release_date": "2016-05-19", + "developers": [ + "Adobe" + ] +} diff --git a/data/software/ad/adobe-flash-catalyst.json b/data/software/ad/adobe-flash-catalyst.json new file mode 100644 index 000000000000..eb8765515cb2 --- /dev/null +++ b/data/software/ad/adobe-flash-catalyst.json @@ -0,0 +1,11 @@ +{ + "slug": "adobe-flash-catalyst", + "name": "Adobe Flash Catalyst", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q360199" + ], + "developers": [ + "Adobe" + ] +} diff --git a/data/software/ad/adobe-flash-lite.json b/data/software/ad/adobe-flash-lite.json new file mode 100644 index 000000000000..62e0606e707d --- /dev/null +++ b/data/software/ad/adobe-flash-lite.json @@ -0,0 +1,14 @@ +{ + "slug": "adobe-flash-lite", + "name": "Adobe Flash Lite", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q384622" + ], + "developers": [ + "Macromedia" + ], + "operating_systems": [ + "Symbian" + ] +} diff --git a/data/software/ad/adobe-flash-media-live-encoder.json b/data/software/ad/adobe-flash-media-live-encoder.json new file mode 100644 index 000000000000..eb9545d373d1 --- /dev/null +++ b/data/software/ad/adobe-flash-media-live-encoder.json @@ -0,0 +1,14 @@ +{ + "slug": "adobe-flash-media-live-encoder", + "name": "Adobe Flash Media Live Encoder", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4683980" + ], + "developers": [ + "Adobe" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/ad/adobe-font-folio.json b/data/software/ad/adobe-font-folio.json new file mode 100644 index 000000000000..a5299b2bb7d1 --- /dev/null +++ b/data/software/ad/adobe-font-folio.json @@ -0,0 +1,11 @@ +{ + "slug": "adobe-font-folio", + "name": "Adobe Font Folio", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4683983" + ], + "developers": [ + "Adobe" + ] +} diff --git a/data/software/ad/adobe-fresco.json b/data/software/ad/adobe-fresco.json new file mode 100644 index 000000000000..7801461e0b62 --- /dev/null +++ b/data/software/ad/adobe-fresco.json @@ -0,0 +1,8 @@ +{ + "slug": "adobe-fresco", + "name": "Adobe Fresco", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107108049" + ] +} diff --git a/data/software/ad/adobe-illustrator-9-0.json b/data/software/ad/adobe-illustrator-9-0.json new file mode 100644 index 000000000000..cc444a1f8e1d --- /dev/null +++ b/data/software/ad/adobe-illustrator-9-0.json @@ -0,0 +1,16 @@ +{ + "slug": "adobe-illustrator-9-0", + "name": "Adobe Illustrator 9.0", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q61976294" + ], + "release_date": "2000-01-01", + "developers": [ + "Adobe" + ], + "operating_systems": [ + "Windows 95", + "Windows NT 4.0" + ] +} diff --git a/data/software/ad/adobe-indesign.json b/data/software/ad/adobe-indesign.json new file mode 100644 index 000000000000..eb94022cd583 --- /dev/null +++ b/data/software/ad/adobe-indesign.json @@ -0,0 +1,15 @@ +{ + "slug": "adobe-indesign", + "name": "Adobe InDesign", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q218924" + ], + "release_date": "1999-08-31", + "developers": [ + "Adobe" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/ad/adobe-jrun.json b/data/software/ad/adobe-jrun.json new file mode 100644 index 000000000000..cbb3c965454c --- /dev/null +++ b/data/software/ad/adobe-jrun.json @@ -0,0 +1,12 @@ +{ + "slug": "adobe-jrun", + "name": "Adobe JRun", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2912004" + ], + "developers": [ + "Live Software", + "Adobe" + ] +} diff --git a/data/software/ad/adobe-livecycle-designer.json b/data/software/ad/adobe-livecycle-designer.json new file mode 100644 index 000000000000..e32f77aefe44 --- /dev/null +++ b/data/software/ad/adobe-livecycle-designer.json @@ -0,0 +1,11 @@ +{ + "slug": "adobe-livecycle-designer", + "name": "Adobe LiveCycle Designer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1045967" + ], + "developers": [ + "Adobe" + ] +} diff --git a/data/software/ad/adobe-media-player.json b/data/software/ad/adobe-media-player.json new file mode 100644 index 000000000000..f8e7dfb9a532 --- /dev/null +++ b/data/software/ad/adobe-media-player.json @@ -0,0 +1,14 @@ +{ + "slug": "adobe-media-player", + "name": "Adobe Media Player", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q360295" + ], + "developers": [ + "Adobe" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/ad/adobe-media-server.json b/data/software/ad/adobe-media-server.json new file mode 100644 index 000000000000..18ed4accf9a6 --- /dev/null +++ b/data/software/ad/adobe-media-server.json @@ -0,0 +1,14 @@ +{ + "slug": "adobe-media-server", + "name": "Adobe Media Server", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2663740" + ], + "developers": [ + "Adobe" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/ad/adobe-muse.json b/data/software/ad/adobe-muse.json new file mode 100644 index 000000000000..87cc00c2af4f --- /dev/null +++ b/data/software/ad/adobe-muse.json @@ -0,0 +1,20 @@ +{ + "slug": "adobe-muse", + "name": "Adobe Muse", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q360299" + ], + "developers": [ + "Adobe" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [ + "Adobe Flash", + "Adobe AIR", + "Apache Flex" + ] +} diff --git a/data/software/ad/adobe-onlocation.json b/data/software/ad/adobe-onlocation.json new file mode 100644 index 000000000000..7b477ec880b1 --- /dev/null +++ b/data/software/ad/adobe-onlocation.json @@ -0,0 +1,11 @@ +{ + "slug": "adobe-onlocation", + "name": "Adobe OnLocation", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q769946" + ], + "developers": [ + "Adobe" + ] +} diff --git a/data/software/ad/adobe-ovation.json b/data/software/ad/adobe-ovation.json new file mode 100644 index 000000000000..0f5126ee95eb --- /dev/null +++ b/data/software/ad/adobe-ovation.json @@ -0,0 +1,14 @@ +{ + "slug": "adobe-ovation", + "name": "Adobe Ovation", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4683995" + ], + "developers": [ + "Adobe" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/ad/adobe-pagemaker.json b/data/software/ad/adobe-pagemaker.json new file mode 100644 index 000000000000..176adb7c5e94 --- /dev/null +++ b/data/software/ad/adobe-pagemaker.json @@ -0,0 +1,15 @@ +{ + "slug": "adobe-pagemaker", + "name": "Adobe PageMaker", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q360355" + ], + "developers": [ + "Aldus", + "Adobe" + ], + "operating_systems": [ + "Mac operating system" + ] +} diff --git a/data/software/ad/adobe-pagemill-3-0.json b/data/software/ad/adobe-pagemill-3-0.json new file mode 100644 index 000000000000..69ee65b3ce19 --- /dev/null +++ b/data/software/ad/adobe-pagemill-3-0.json @@ -0,0 +1,12 @@ +{ + "slug": "adobe-pagemill-3-0", + "name": "Adobe PageMill 3.0", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q66088315" + ], + "release_date": "1999-01-01", + "developers": [ + "Adobe" + ] +} diff --git a/data/software/ad/adobe-pdf-print-engine.json b/data/software/ad/adobe-pdf-print-engine.json new file mode 100644 index 000000000000..e73aabf652f0 --- /dev/null +++ b/data/software/ad/adobe-pdf-print-engine.json @@ -0,0 +1,8 @@ +{ + "slug": "adobe-pdf-print-engine", + "name": "Adobe PDF Print Engine", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q360302" + ] +} diff --git a/data/software/ad/adobe-persuasion.json b/data/software/ad/adobe-persuasion.json new file mode 100644 index 000000000000..caa9c0bb66da --- /dev/null +++ b/data/software/ad/adobe-persuasion.json @@ -0,0 +1,15 @@ +{ + "slug": "adobe-persuasion", + "name": "Adobe Persuasion", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3780669" + ], + "developers": [ + "Aldus", + "Adobe" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/ad/adobe-photoshop-express.json b/data/software/ad/adobe-photoshop-express.json new file mode 100644 index 000000000000..216a49378015 --- /dev/null +++ b/data/software/ad/adobe-photoshop-express.json @@ -0,0 +1,11 @@ +{ + "slug": "adobe-photoshop-express", + "name": "Adobe Photoshop Express", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q360363" + ], + "developers": [ + "Adobe" + ] +} diff --git a/data/software/ad/adobe-pixel-bender.json b/data/software/ad/adobe-pixel-bender.json new file mode 100644 index 000000000000..7707138e953c --- /dev/null +++ b/data/software/ad/adobe-pixel-bender.json @@ -0,0 +1,11 @@ +{ + "slug": "adobe-pixel-bender", + "name": "Adobe Pixel Bender", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4683998" + ], + "developers": [ + "Adobe" + ] +} diff --git a/data/software/ad/adobe-premiere-express.json b/data/software/ad/adobe-premiere-express.json new file mode 100644 index 000000000000..8e76444236e9 --- /dev/null +++ b/data/software/ad/adobe-premiere-express.json @@ -0,0 +1,11 @@ +{ + "slug": "adobe-premiere-express", + "name": "Adobe Premiere Express", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4683999" + ], + "developers": [ + "Adobe" + ] +} diff --git a/data/software/ad/adobe-presenter-video-express.json b/data/software/ad/adobe-presenter-video-express.json new file mode 100644 index 000000000000..b69712213a0f --- /dev/null +++ b/data/software/ad/adobe-presenter-video-express.json @@ -0,0 +1,17 @@ +{ + "slug": "adobe-presenter-video-express", + "name": "Adobe Presenter Video Express", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25000364" + ], + "developers": [ + "Adobe" + ], + "operating_systems": [ + "Microsoft Windows" + ], + "genres": [ + "screencasting software" + ] +} diff --git a/data/software/ad/adobe-reader-1-0.json b/data/software/ad/adobe-reader-1-0.json new file mode 100644 index 000000000000..bd9b5f4297be --- /dev/null +++ b/data/software/ad/adobe-reader-1-0.json @@ -0,0 +1,12 @@ +{ + "slug": "adobe-reader-1-0", + "name": "Adobe Reader 1.0", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60690545" + ], + "release_date": "1993-06-01", + "developers": [ + "Adobe" + ] +} diff --git a/data/software/ad/adobe-reader-2-0.json b/data/software/ad/adobe-reader-2-0.json new file mode 100644 index 000000000000..c15d43e458c1 --- /dev/null +++ b/data/software/ad/adobe-reader-2-0.json @@ -0,0 +1,18 @@ +{ + "slug": "adobe-reader-2-0", + "name": "Adobe Reader 2.0", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q47450901" + ], + "release_date": "1994-10-15", + "developers": [ + "Adobe" + ], + "operating_systems": [ + "Windows NT 4.0", + "Windows NT 3.5", + "Windows 95", + "Windows Server 2003" + ] +} diff --git a/data/software/ad/adobe-reader-3-0.json b/data/software/ad/adobe-reader-3-0.json new file mode 100644 index 000000000000..f69609e1dddb --- /dev/null +++ b/data/software/ad/adobe-reader-3-0.json @@ -0,0 +1,16 @@ +{ + "slug": "adobe-reader-3-0", + "name": "Adobe Reader 3.0", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q47450909" + ], + "release_date": "1997-05-30", + "developers": [ + "Adobe" + ], + "operating_systems": [ + "Windows NT 3.5", + "Windows 95" + ] +} diff --git a/data/software/ad/adobe-reader-4-0.json b/data/software/ad/adobe-reader-4-0.json new file mode 100644 index 000000000000..2efdaed14145 --- /dev/null +++ b/data/software/ad/adobe-reader-4-0.json @@ -0,0 +1,16 @@ +{ + "slug": "adobe-reader-4-0", + "name": "Adobe Reader 4.0", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q47450950" + ], + "release_date": "1999-03-31", + "developers": [ + "Adobe" + ], + "operating_systems": [ + "Windows NT 3.5", + "Windows 95" + ] +} diff --git a/data/software/ad/adobe-reader-6-0.json b/data/software/ad/adobe-reader-6-0.json new file mode 100644 index 000000000000..b511f7af3b68 --- /dev/null +++ b/data/software/ad/adobe-reader-6-0.json @@ -0,0 +1,12 @@ +{ + "slug": "adobe-reader-6-0", + "name": "Adobe Reader 6.0", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q47450957" + ], + "release_date": "2003-11-02", + "developers": [ + "Adobe" + ] +} diff --git a/data/software/ad/adobe-reader-7-0.json b/data/software/ad/adobe-reader-7-0.json new file mode 100644 index 000000000000..bc2ff73a08fb --- /dev/null +++ b/data/software/ad/adobe-reader-7-0.json @@ -0,0 +1,12 @@ +{ + "slug": "adobe-reader-7-0", + "name": "Adobe Reader 7.0", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q47450988" + ], + "release_date": "2004-12-13", + "developers": [ + "Adobe" + ] +} diff --git a/data/software/ad/adobe-reader-8-0.json b/data/software/ad/adobe-reader-8-0.json new file mode 100644 index 000000000000..8f2860a1b2cb --- /dev/null +++ b/data/software/ad/adobe-reader-8-0.json @@ -0,0 +1,15 @@ +{ + "slug": "adobe-reader-8-0", + "name": "Adobe Reader 8.0", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60690675" + ], + "release_date": "2006-10-26", + "developers": [ + "Adobe" + ], + "operating_systems": [ + "Windows 7" + ] +} diff --git a/data/software/ad/adobe-reader-9-0.json b/data/software/ad/adobe-reader-9-0.json new file mode 100644 index 000000000000..be9c8f338b7e --- /dev/null +++ b/data/software/ad/adobe-reader-9-0.json @@ -0,0 +1,15 @@ +{ + "slug": "adobe-reader-9-0", + "name": "Adobe Reader 9.0", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60690780" + ], + "release_date": "2008-12-06", + "developers": [ + "Adobe" + ], + "operating_systems": [ + "Windows 7" + ] +} diff --git a/data/software/ad/adobe-reader-version-9-2.json b/data/software/ad/adobe-reader-version-9-2.json new file mode 100644 index 000000000000..1e86678fb859 --- /dev/null +++ b/data/software/ad/adobe-reader-version-9-2.json @@ -0,0 +1,16 @@ +{ + "slug": "adobe-reader-version-9-2", + "name": "Adobe Reader, version 9.2", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60521777" + ], + "release_date": "2009-10-03", + "developers": [ + "Adobe" + ], + "operating_systems": [ + "Windows 95", + "Windows 7" + ] +} diff --git a/data/software/ad/adobe-reader-x.json b/data/software/ad/adobe-reader-x.json new file mode 100644 index 000000000000..a73fcd60138e --- /dev/null +++ b/data/software/ad/adobe-reader-x.json @@ -0,0 +1,15 @@ +{ + "slug": "adobe-reader-x", + "name": "Adobe Reader X", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60690886" + ], + "release_date": "2010-11-18", + "developers": [ + "Adobe" + ], + "operating_systems": [ + "Windows 7" + ] +} diff --git a/data/software/ad/adobe-reader-xi.json b/data/software/ad/adobe-reader-xi.json new file mode 100644 index 000000000000..9eff279148a0 --- /dev/null +++ b/data/software/ad/adobe-reader-xi.json @@ -0,0 +1,15 @@ +{ + "slug": "adobe-reader-xi", + "name": "Adobe Reader XI", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60691254" + ], + "release_date": "2012-10-15", + "developers": [ + "Adobe" + ], + "operating_systems": [ + "Windows 7" + ] +} diff --git a/data/software/ad/adobe-revel.json b/data/software/ad/adobe-revel.json new file mode 100644 index 000000000000..17c5c1981b73 --- /dev/null +++ b/data/software/ad/adobe-revel.json @@ -0,0 +1,8 @@ +{ + "slug": "adobe-revel", + "name": "Adobe Revel", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109363504" + ] +} diff --git a/data/software/ad/adobe-robohelp.json b/data/software/ad/adobe-robohelp.json new file mode 100644 index 000000000000..303e72ab166f --- /dev/null +++ b/data/software/ad/adobe-robohelp.json @@ -0,0 +1,11 @@ +{ + "slug": "adobe-robohelp", + "name": "Adobe RoboHelp", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4684006" + ], + "developers": [ + "Adobe" + ] +} diff --git a/data/software/ad/adobe-shockwave-player.json b/data/software/ad/adobe-shockwave-player.json new file mode 100644 index 000000000000..a904aa442384 --- /dev/null +++ b/data/software/ad/adobe-shockwave-player.json @@ -0,0 +1,18 @@ +{ + "slug": "adobe-shockwave-player", + "name": "Adobe Shockwave Player", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28955963" + ], + "developers": [ + "Adobe" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/ad/adobe-source-libraries.json b/data/software/ad/adobe-source-libraries.json new file mode 100644 index 000000000000..ffdcb9445747 --- /dev/null +++ b/data/software/ad/adobe-source-libraries.json @@ -0,0 +1,11 @@ +{ + "slug": "adobe-source-libraries", + "name": "Adobe Source Libraries", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2824688" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/ad/adobe-spark-video.json b/data/software/ad/adobe-spark-video.json new file mode 100644 index 000000000000..9416d63a4a34 --- /dev/null +++ b/data/software/ad/adobe-spark-video.json @@ -0,0 +1,12 @@ +{ + "slug": "adobe-spark-video", + "name": "Adobe Spark Video", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25005365" + ], + "release_date": "2014-05-08", + "developers": [ + "Adobe" + ] +} diff --git a/data/software/ad/adobe-stock.json b/data/software/ad/adobe-stock.json new file mode 100644 index 000000000000..c4400734fe83 --- /dev/null +++ b/data/software/ad/adobe-stock.json @@ -0,0 +1,11 @@ +{ + "slug": "adobe-stock", + "name": "Adobe Stock", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5977430" + ], + "developers": [ + "Adobe" + ] +} diff --git a/data/software/ad/adobe-streamline.json b/data/software/ad/adobe-streamline.json new file mode 100644 index 000000000000..c15286e458be --- /dev/null +++ b/data/software/ad/adobe-streamline.json @@ -0,0 +1,11 @@ +{ + "slug": "adobe-streamline", + "name": "Adobe Streamline", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q360432" + ], + "developers": [ + "Adobe" + ] +} diff --git a/data/software/ad/adobe-type-manager-version-3-02.json b/data/software/ad/adobe-type-manager-version-3-02.json new file mode 100644 index 000000000000..cba78442b74b --- /dev/null +++ b/data/software/ad/adobe-type-manager-version-3-02.json @@ -0,0 +1,12 @@ +{ + "slug": "adobe-type-manager-version-3-02", + "name": "Adobe Type Manager, version 3.02", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q66763429" + ], + "release_date": "1994-01-01", + "developers": [ + "Adobe" + ] +} diff --git a/data/software/ad/adobe-version-cue.json b/data/software/ad/adobe-version-cue.json new file mode 100644 index 000000000000..44477e3222e4 --- /dev/null +++ b/data/software/ad/adobe-version-cue.json @@ -0,0 +1,11 @@ +{ + "slug": "adobe-version-cue", + "name": "Adobe Version Cue", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2663056" + ], + "developers": [ + "Adobe" + ] +} diff --git a/data/software/ad/adobe-voco.json b/data/software/ad/adobe-voco.json new file mode 100644 index 000000000000..a7a7cd8f3b60 --- /dev/null +++ b/data/software/ad/adobe-voco.json @@ -0,0 +1,14 @@ +{ + "slug": "adobe-voco", + "name": "Adobe VoCo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q27926176" + ], + "developers": [ + "Adobe" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/ad/adrift.json b/data/software/ad/adrift.json new file mode 100644 index 000000000000..70fa31678327 --- /dev/null +++ b/data/software/ad/adrift.json @@ -0,0 +1,14 @@ +{ + "slug": "adrift", + "name": "ADRIFT", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3600603" + ], + "programming_languages": [ + "Visual Basic" + ], + "licenses": [ + "donationware" + ] +} diff --git a/data/software/ad/adscockpit.json b/data/software/ad/adscockpit.json new file mode 100644 index 000000000000..6b6022351af7 --- /dev/null +++ b/data/software/ad/adscockpit.json @@ -0,0 +1,8 @@ +{ + "slug": "adscockpit", + "name": "AdsCockpit", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138873700" + ] +} diff --git a/data/software/ad/advance-steel.json b/data/software/ad/advance-steel.json new file mode 100644 index 000000000000..b518b94f36da --- /dev/null +++ b/data/software/ad/advance-steel.json @@ -0,0 +1,11 @@ +{ + "slug": "advance-steel", + "name": "Advance Steel", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4686079" + ], + "developers": [ + "GRAITEC" + ] +} diff --git a/data/software/ad/advanced-automation-functions.json b/data/software/ad/advanced-automation-functions.json new file mode 100644 index 000000000000..0dde3bea4329 --- /dev/null +++ b/data/software/ad/advanced-automation-functions.json @@ -0,0 +1,8 @@ +{ + "slug": "advanced-automation-functions", + "name": "Advanced automation functions", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28136177" + ] +} diff --git a/data/software/ad/advanced-design-system.json b/data/software/ad/advanced-design-system.json new file mode 100644 index 000000000000..662ed8ba42d6 --- /dev/null +++ b/data/software/ad/advanced-design-system.json @@ -0,0 +1,9 @@ +{ + "slug": "advanced-design-system", + "name": "Advanced Design System", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q302392" + ], + "release_date": "1985-01-01" +} diff --git a/data/software/ad/advanced-dungeons-dragons-cd-rom-core-rules.json b/data/software/ad/advanced-dungeons-dragons-cd-rom-core-rules.json new file mode 100644 index 000000000000..65fec136e91d --- /dev/null +++ b/data/software/ad/advanced-dungeons-dragons-cd-rom-core-rules.json @@ -0,0 +1,12 @@ +{ + "slug": "advanced-dungeons-dragons-cd-rom-core-rules", + "name": "Advanced Dungeons & Dragons CD-ROM Core Rules", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16245054" + ], + "release_date": "1996-01-01", + "developers": [ + "TSR" + ] +} diff --git a/data/software/ad/advanced-manufacturing-software.json b/data/software/ad/advanced-manufacturing-software.json new file mode 100644 index 000000000000..536a204ae9dd --- /dev/null +++ b/data/software/ad/advanced-manufacturing-software.json @@ -0,0 +1,11 @@ +{ + "slug": "advanced-manufacturing-software", + "name": "Advanced Manufacturing Software", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4686230" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/ad/advanced-multi-mission-operations-system.json b/data/software/ad/advanced-multi-mission-operations-system.json new file mode 100644 index 000000000000..0afd39c9778e --- /dev/null +++ b/data/software/ad/advanced-multi-mission-operations-system.json @@ -0,0 +1,8 @@ +{ + "slug": "advanced-multi-mission-operations-system", + "name": "Advanced Multi-Mission Operations System", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4686240" + ] +} diff --git a/data/software/ad/advanced-renamer.json b/data/software/ad/advanced-renamer.json new file mode 100644 index 000000000000..57e6998ef4b6 --- /dev/null +++ b/data/software/ad/advanced-renamer.json @@ -0,0 +1,14 @@ +{ + "slug": "advanced-renamer", + "name": "Advanced Renamer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17509903" + ], + "operating_systems": [ + "Windows 7" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/ad/advanced-resource-connector.json b/data/software/ad/advanced-resource-connector.json new file mode 100644 index 000000000000..f057f31d0883 --- /dev/null +++ b/data/software/ad/advanced-resource-connector.json @@ -0,0 +1,14 @@ +{ + "slug": "advanced-resource-connector", + "name": "Advanced Resource Connector", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q20089046" + ], + "developers": [ + "NorduGrid" + ], + "licenses": [ + "Apache License" + ] +} diff --git a/data/software/ad/advanced-systemcare.json b/data/software/ad/advanced-systemcare.json new file mode 100644 index 000000000000..88de208f1a51 --- /dev/null +++ b/data/software/ad/advanced-systemcare.json @@ -0,0 +1,14 @@ +{ + "slug": "advanced-systemcare", + "name": "Advanced SystemCare", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2648230" + ], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [ + "Delphi" + ] +} diff --git a/data/software/ad/advanced-systems-analysis-program.json b/data/software/ad/advanced-systems-analysis-program.json new file mode 100644 index 000000000000..bccb71d89d9f --- /dev/null +++ b/data/software/ad/advanced-systems-analysis-program.json @@ -0,0 +1,8 @@ +{ + "slug": "advanced-systems-analysis-program", + "name": "Advanced Systems Analysis Program", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4686284" + ] +} diff --git a/data/software/ad/advanced-weather-interactive-processing-system.json b/data/software/ad/advanced-weather-interactive-processing-system.json new file mode 100644 index 000000000000..f5c2ee6ab589 --- /dev/null +++ b/data/software/ad/advanced-weather-interactive-processing-system.json @@ -0,0 +1,12 @@ +{ + "slug": "advanced-weather-interactive-processing-system", + "name": "Advanced Weather Interactive Processing System", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4686330" + ], + "developers": [ + "Northrop Grumman Corporation", + "Raytheon" + ] +} diff --git a/data/software/ad/advantage-database-server.json b/data/software/ad/advantage-database-server.json new file mode 100644 index 000000000000..dfc93ec1a4bf --- /dev/null +++ b/data/software/ad/advantage-database-server.json @@ -0,0 +1,11 @@ +{ + "slug": "advantage-database-server", + "name": "Advantage Database Server", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4686410" + ], + "developers": [ + "Sybase" + ] +} diff --git a/data/software/ad/advantage-framework.json b/data/software/ad/advantage-framework.json new file mode 100644 index 000000000000..a0e437807d10 --- /dev/null +++ b/data/software/ad/advantage-framework.json @@ -0,0 +1,8 @@ +{ + "slug": "advantage-framework", + "name": "ADvantage Framework", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4651252" + ] +} diff --git a/data/software/ad/advene.json b/data/software/ad/advene.json new file mode 100644 index 000000000000..be77669adfd2 --- /dev/null +++ b/data/software/ad/advene.json @@ -0,0 +1,21 @@ +{ + "slug": "advene", + "name": "Advene", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105848625" + ], + "developers": [ + "Olivier Aubert" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [ + "Python" + ], + "licenses": [ + "GNU General Public License, version 2.0" + ] +} diff --git a/data/software/ad/adventure-game-studio.json b/data/software/ad/adventure-game-studio.json new file mode 100644 index 000000000000..b7b5652b7a48 --- /dev/null +++ b/data/software/ad/adventure-game-studio.json @@ -0,0 +1,17 @@ +{ + "slug": "adventure-game-studio", + "name": "Adventure Game Studio", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q379950" + ], + "developers": [ + "Chris Jones" + ], + "operating_systems": [ + "Microsoft Windows" + ], + "licenses": [ + "Artistic License" + ] +} diff --git a/data/software/ad/adventure-game-toolkit.json b/data/software/ad/adventure-game-toolkit.json new file mode 100644 index 000000000000..b1558698335d --- /dev/null +++ b/data/software/ad/adventure-game-toolkit.json @@ -0,0 +1,8 @@ +{ + "slug": "adventure-game-toolkit", + "name": "Adventure Game Toolkit", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4686503" + ] +} diff --git a/data/software/ad/adwcleaner.json b/data/software/ad/adwcleaner.json new file mode 100644 index 000000000000..881bcf771985 --- /dev/null +++ b/data/software/ad/adwcleaner.json @@ -0,0 +1,11 @@ +{ + "slug": "adwcleaner", + "name": "AdwCleaner", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q19952796" + ], + "developers": [ + "Malwarebytes" + ] +} diff --git a/data/software/ae/aelfred.json b/data/software/ae/aelfred.json new file mode 100644 index 000000000000..c5cca098742f --- /dev/null +++ b/data/software/ae/aelfred.json @@ -0,0 +1,8 @@ +{ + "slug": "aelfred", + "name": "Aelfred", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084376" + ] +} diff --git a/data/software/ae/aeo-audit-pro.json b/data/software/ae/aeo-audit-pro.json new file mode 100644 index 000000000000..328ed5adafd9 --- /dev/null +++ b/data/software/ae/aeo-audit-pro.json @@ -0,0 +1,11 @@ +{ + "slug": "aeo-audit-pro", + "name": "AEO Audit Pro", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140136146" + ], + "developers": [ + "Nino Herenda" + ] +} diff --git a/data/software/ae/aeon-timeline.json b/data/software/ae/aeon-timeline.json new file mode 100644 index 000000000000..629cc66f665d --- /dev/null +++ b/data/software/ae/aeon-timeline.json @@ -0,0 +1,8 @@ +{ + "slug": "aeon-timeline", + "name": "Aeon Timeline", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084377" + ] +} diff --git a/data/software/ae/aeqi-software.json b/data/software/ae/aeqi-software.json new file mode 100644 index 000000000000..63a8e48fe485 --- /dev/null +++ b/data/software/ae/aeqi-software.json @@ -0,0 +1,17 @@ +{ + "slug": "aeqi-software", + "name": "aeqi (software)", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139066263" + ], + "developers": [ + "aeqi" + ], + "operating_systems": [ + "macOS" + ], + "programming_languages": [ + "TypeScript" + ] +} diff --git a/data/software/ae/aerogear.json b/data/software/ae/aerogear.json new file mode 100644 index 000000000000..a74e98f9502f --- /dev/null +++ b/data/software/ae/aerogear.json @@ -0,0 +1,8 @@ +{ + "slug": "aerogear", + "name": "AeroGear", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q24884339" + ] +} diff --git a/data/software/ae/aerospike-database-server.json b/data/software/ae/aerospike-database-server.json new file mode 100644 index 000000000000..d414a0875f70 --- /dev/null +++ b/data/software/ae/aerospike-database-server.json @@ -0,0 +1,8 @@ +{ + "slug": "aerospike-database-server", + "name": "Aerospike Database Server", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28941605" + ] +} diff --git a/data/software/ae/aeskulap.json b/data/software/ae/aeskulap.json new file mode 100644 index 000000000000..d4b1e3613b45 --- /dev/null +++ b/data/software/ae/aeskulap.json @@ -0,0 +1,8 @@ +{ + "slug": "aeskulap", + "name": "aeskulap", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q29364768" + ] +} diff --git a/data/software/ae/aetherpal.json b/data/software/ae/aetherpal.json new file mode 100644 index 000000000000..dc0d7db90658 --- /dev/null +++ b/data/software/ae/aetherpal.json @@ -0,0 +1,8 @@ +{ + "slug": "aetherpal", + "name": "AetherPal", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4688676" + ] +} diff --git a/data/software/ae/aewm.json b/data/software/ae/aewm.json new file mode 100644 index 000000000000..44e9e0cd3201 --- /dev/null +++ b/data/software/ae/aewm.json @@ -0,0 +1,8 @@ +{ + "slug": "aewm", + "name": "aewm++", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065313" + ] +} diff --git a/data/software/af/afcaa-revic.json b/data/software/af/afcaa-revic.json new file mode 100644 index 000000000000..aeae4bc9c385 --- /dev/null +++ b/data/software/af/afcaa-revic.json @@ -0,0 +1,11 @@ +{ + "slug": "afcaa-revic", + "name": "AFCAA REVIC", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4651425" + ], + "developers": [ + "Air Force Cost Analysis Agency" + ] +} diff --git a/data/software/af/affidario.json b/data/software/af/affidario.json new file mode 100644 index 000000000000..71b6d97845d8 --- /dev/null +++ b/data/software/af/affidario.json @@ -0,0 +1,11 @@ +{ + "slug": "affidario", + "name": "Affidario", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139541157" + ], + "developers": [ + "Exssa" + ] +} diff --git a/data/software/af/affinity-photo.json b/data/software/af/affinity-photo.json new file mode 100644 index 000000000000..9bb2ad80be82 --- /dev/null +++ b/data/software/af/affinity-photo.json @@ -0,0 +1,8 @@ +{ + "slug": "affinity-photo", + "name": "Affinity Photo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q23302620" + ] +} diff --git a/data/software/af/affinity.json b/data/software/af/affinity.json new file mode 100644 index 000000000000..69d6210d23c6 --- /dev/null +++ b/data/software/af/affinity.json @@ -0,0 +1,16 @@ +{ + "slug": "affinity", + "name": "Affinity", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136679398" + ], + "release_date": "2025-01-01", + "developers": [ + "Canva" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/software/af/affymetrix-genechip-operating-software.json b/data/software/af/affymetrix-genechip-operating-software.json new file mode 100644 index 000000000000..06a71b3a452d --- /dev/null +++ b/data/software/af/affymetrix-genechip-operating-software.json @@ -0,0 +1,11 @@ +{ + "slug": "affymetrix-genechip-operating-software", + "name": "Affymetrix GeneChip Operating Software", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4689043" + ], + "developers": [ + "Affymetrix" + ] +} diff --git a/data/software/af/afloat.json b/data/software/af/afloat.json new file mode 100644 index 000000000000..ffbeb39d6ddd --- /dev/null +++ b/data/software/af/afloat.json @@ -0,0 +1,8 @@ +{ + "slug": "afloat", + "name": "Afloat", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084378" + ] +} diff --git a/data/software/af/afrinolly.json b/data/software/af/afrinolly.json new file mode 100644 index 000000000000..fdb7c21849be --- /dev/null +++ b/data/software/af/afrinolly.json @@ -0,0 +1,8 @@ +{ + "slug": "afrinolly", + "name": "Afrinolly", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16927594" + ] +} diff --git a/data/software/af/afrivid-studio.json b/data/software/af/afrivid-studio.json new file mode 100644 index 000000000000..657e25620e25 --- /dev/null +++ b/data/software/af/afrivid-studio.json @@ -0,0 +1,11 @@ +{ + "slug": "afrivid-studio", + "name": "Afrivid Studio", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140194899" + ], + "operating_systems": [ + "web application" + ] +} diff --git a/data/software/ag/agantty.json b/data/software/ag/agantty.json new file mode 100644 index 000000000000..78c3863c98e4 --- /dev/null +++ b/data/software/ag/agantty.json @@ -0,0 +1,8 @@ +{ + "slug": "agantty", + "name": "Agantty", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q24964685" + ] +} diff --git a/data/software/ag/age.json b/data/software/ag/age.json new file mode 100644 index 000000000000..19fc98d1e742 --- /dev/null +++ b/data/software/ag/age.json @@ -0,0 +1,18 @@ +{ + "slug": "age", + "name": "age", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108451484" + ], + "operating_systems": [ + "Unix-like operating system", + "Microsoft Windows" + ], + "programming_languages": [ + "Go" + ], + "licenses": [ + "3-clause BSD License" + ] +} diff --git a/data/software/ag/agency-os.json b/data/software/ag/agency-os.json new file mode 100644 index 000000000000..89862b3546b3 --- /dev/null +++ b/data/software/ag/agency-os.json @@ -0,0 +1,17 @@ +{ + "slug": "agency-os", + "name": "agency-os", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139962059" + ], + "developers": [ + "AutomateLab" + ], + "programming_languages": [ + "Python" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/ag/agent-attribution-practice-architectural-decision-records-and-four-business-ai-quadrants-o.json b/data/software/ag/agent-attribution-practice-architectural-decision-records-and-four-business-ai-quadrants-o.json new file mode 100644 index 000000000000..acdd6426078b --- /dev/null +++ b/data/software/ag/agent-attribution-practice-architectural-decision-records-and-four-business-ai-quadrants-o.json @@ -0,0 +1,15 @@ +{ + "slug": "agent-attribution-practice-architectural-decision-records-and-four-business-ai-quadrants-o", + "name": "Agent Attribution Practice: Architectural Decision Records and Four Business AI Quadrants on Accountability Distribution in Autonomous AI Agents", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140090188" + ], + "release_date": "2026-04-19", + "developers": [ + "Tatsuya Shimomoto" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/ag/agent-based-modelling-for-archaeologists-tutorials.json b/data/software/ag/agent-based-modelling-for-archaeologists-tutorials.json new file mode 100644 index 000000000000..51c717ec8031 --- /dev/null +++ b/data/software/ag/agent-based-modelling-for-archaeologists-tutorials.json @@ -0,0 +1,9 @@ +{ + "slug": "agent-based-modelling-for-archaeologists-tutorials", + "name": "Agent Based Modelling for Archaeologists: Tutorials", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131358162" + ], + "release_date": "2024-04-15" +} diff --git a/data/software/ag/agent-knowledge-cycle-akc.json b/data/software/ag/agent-knowledge-cycle-akc.json new file mode 100644 index 000000000000..6dad59124ab2 --- /dev/null +++ b/data/software/ag/agent-knowledge-cycle-akc.json @@ -0,0 +1,15 @@ +{ + "slug": "agent-knowledge-cycle-akc", + "name": "Agent Knowledge Cycle (AKC)", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140090186" + ], + "release_date": "2026-03-24", + "developers": [ + "Tatsuya Shimomoto" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/ag/agentflow.json b/data/software/ag/agentflow.json new file mode 100644 index 000000000000..c24f5bd4e250 --- /dev/null +++ b/data/software/ag/agentflow.json @@ -0,0 +1,11 @@ +{ + "slug": "agentflow", + "name": "AgentFlow", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140387261" + ], + "developers": [ + "Multimodal" + ] +} diff --git a/data/software/ag/agentic-identity.json b/data/software/ag/agentic-identity.json new file mode 100644 index 000000000000..1c44bdd8695c --- /dev/null +++ b/data/software/ag/agentic-identity.json @@ -0,0 +1,11 @@ +{ + "slug": "agentic-identity", + "name": "Agentic Identity", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138859698" + ], + "developers": [ + "Incode" + ] +} diff --git a/data/software/ag/agenticassure.json b/data/software/ag/agenticassure.json new file mode 100644 index 000000000000..1a2faba7df7d --- /dev/null +++ b/data/software/ag/agenticassure.json @@ -0,0 +1,11 @@ +{ + "slug": "agenticassure", + "name": "AgenticAssure", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139846340" + ], + "developers": [ + "AgenticAssure" + ] +} diff --git a/data/software/ag/agfa-impax-6.json b/data/software/ag/agfa-impax-6.json new file mode 100644 index 000000000000..04d67067e4fc --- /dev/null +++ b/data/software/ag/agfa-impax-6.json @@ -0,0 +1,11 @@ +{ + "slug": "agfa-impax-6", + "name": "Agfa impax 6", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4692169" + ], + "developers": [ + "Agfa-Gevaert" + ] +} diff --git a/data/software/ag/agi32.json b/data/software/ag/agi32.json new file mode 100644 index 000000000000..b3398ffb196f --- /dev/null +++ b/data/software/ag/agi32.json @@ -0,0 +1,8 @@ +{ + "slug": "agi32", + "name": "AGi32", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4651722" + ] +} diff --git a/data/software/ag/agile-architecture.json b/data/software/ag/agile-architecture.json new file mode 100644 index 000000000000..98c159998d0e --- /dev/null +++ b/data/software/ag/agile-architecture.json @@ -0,0 +1,8 @@ +{ + "slug": "agile-architecture", + "name": "Agile Architecture", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28458052" + ] +} diff --git a/data/software/ag/agile-uml.json b/data/software/ag/agile-uml.json new file mode 100644 index 000000000000..2fde5e2c2715 --- /dev/null +++ b/data/software/ag/agile-uml.json @@ -0,0 +1,8 @@ +{ + "slug": "agile-uml", + "name": "Agile UML", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76169862" + ] +} diff --git a/data/software/ag/aglets.json b/data/software/ag/aglets.json new file mode 100644 index 000000000000..a89b438f341f --- /dev/null +++ b/data/software/ag/aglets.json @@ -0,0 +1,8 @@ +{ + "slug": "aglets", + "name": "Aglets", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4692878" + ] +} diff --git a/data/software/ag/agora-multi-agent-research-system.json b/data/software/ag/agora-multi-agent-research-system.json new file mode 100644 index 000000000000..bd909175cbe0 --- /dev/null +++ b/data/software/ag/agora-multi-agent-research-system.json @@ -0,0 +1,11 @@ +{ + "slug": "agora-multi-agent-research-system", + "name": "AGORA Multi-Agent Research System", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139581487" + ], + "developers": [ + "XOps360 LLC" + ] +} diff --git a/data/software/ag/agrep.json b/data/software/ag/agrep.json new file mode 100644 index 000000000000..bce6a1c41c90 --- /dev/null +++ b/data/software/ag/agrep.json @@ -0,0 +1,8 @@ +{ + "slug": "agrep", + "name": "agrep", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4693816" + ] +} diff --git a/data/software/ag/aguapey.json b/data/software/ag/aguapey.json new file mode 100644 index 000000000000..c0a31a781565 --- /dev/null +++ b/data/software/ag/aguapey.json @@ -0,0 +1,14 @@ +{ + "slug": "aguapey", + "name": "Aguapey", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q99600256" + ], + "developers": [ + "National Library of Teachers" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/ah/ahi.json b/data/software/ah/ahi.json new file mode 100644 index 000000000000..8644ea28126b --- /dev/null +++ b/data/software/ah/ahi.json @@ -0,0 +1,8 @@ +{ + "slug": "ahi", + "name": "AHI", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4651764" + ] +} diff --git a/data/software/ah/ahk2exe.json b/data/software/ah/ahk2exe.json new file mode 100644 index 000000000000..39c25063359f --- /dev/null +++ b/data/software/ah/ahk2exe.json @@ -0,0 +1,8 @@ +{ + "slug": "ahk2exe", + "name": "ahk2exe", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q39189442" + ] +} diff --git a/data/software/ai/ai-citation-toolkit.json b/data/software/ai/ai-citation-toolkit.json new file mode 100644 index 000000000000..c9f859f364bf --- /dev/null +++ b/data/software/ai/ai-citation-toolkit.json @@ -0,0 +1,17 @@ +{ + "slug": "ai-citation-toolkit", + "name": "AI Citation Toolkit", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139962034" + ], + "developers": [ + "AutomateLab" + ], + "programming_languages": [ + "TypeScript" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/ai/ai-cofounder.json b/data/software/ai/ai-cofounder.json new file mode 100644 index 000000000000..bf8027d15252 --- /dev/null +++ b/data/software/ai/ai-cofounder.json @@ -0,0 +1,8 @@ +{ + "slug": "ai-cofounder", + "name": "ai cofounder", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139694183" + ] +} diff --git a/data/software/ai/ai-endurance.json b/data/software/ai/ai-endurance.json new file mode 100644 index 000000000000..61291257f125 --- /dev/null +++ b/data/software/ai/ai-endurance.json @@ -0,0 +1,17 @@ +{ + "slug": "ai-endurance", + "name": "AI Endurance", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134700883" + ], + "developers": [ + "Markus Rummel" + ], + "operating_systems": [ + "iOS" + ], + "programming_languages": [ + "TypeScript" + ] +} diff --git a/data/software/ai/ai-platform-for-contract-redlining-due-diligence-questionnaires-and-security-questionnaire.json b/data/software/ai/ai-platform-for-contract-redlining-due-diligence-questionnaires-and-security-questionnaire.json new file mode 100644 index 000000000000..8f75f81f57f1 --- /dev/null +++ b/data/software/ai/ai-platform-for-contract-redlining-due-diligence-questionnaires-and-security-questionnaire.json @@ -0,0 +1,8 @@ +{ + "slug": "ai-platform-for-contract-redlining-due-diligence-questionnaires-and-security-questionnaire", + "name": "AI Platform for Contract Redlining, Due Diligence Questionnaires, and Security Questionnaire Automation", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138456258" + ] +} diff --git a/data/software/ai/ai-sales-development-representative-software.json b/data/software/ai/ai-sales-development-representative-software.json new file mode 100644 index 000000000000..3032d8651cde --- /dev/null +++ b/data/software/ai/ai-sales-development-representative-software.json @@ -0,0 +1,8 @@ +{ + "slug": "ai-sales-development-representative-software", + "name": "AI sales development representative software", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137176361" + ] +} diff --git a/data/software/ai/ai-site-builder.json b/data/software/ai/ai-site-builder.json new file mode 100644 index 000000000000..f6bb7c7413e0 --- /dev/null +++ b/data/software/ai/ai-site-builder.json @@ -0,0 +1,8 @@ +{ + "slug": "ai-site-builder", + "name": "AI Site Builder", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139856686" + ] +} diff --git a/data/software/ai/ai-sql-tuner-studio.json b/data/software/ai/ai-sql-tuner-studio.json new file mode 100644 index 000000000000..3b8588b47ef8 --- /dev/null +++ b/data/software/ai/ai-sql-tuner-studio.json @@ -0,0 +1,21 @@ +{ + "slug": "ai-sql-tuner-studio", + "name": "AI SQL Tuner Studio", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138783432" + ], + "developers": [ + "Kevin A. Feit", + "AI SQL Tuner LLC" + ], + "publishers": [ + "AI SQL Tuner LLC" + ], + "operating_systems": [ + "Microsoft Windows" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/ai/aid4mail.json b/data/software/ai/aid4mail.json new file mode 100644 index 000000000000..90993ee30492 --- /dev/null +++ b/data/software/ai/aid4mail.json @@ -0,0 +1,8 @@ +{ + "slug": "aid4mail", + "name": "Aid4Mail", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q41095930" + ] +} diff --git a/data/software/ai/aidbox.json b/data/software/ai/aidbox.json new file mode 100644 index 000000000000..c71264500c07 --- /dev/null +++ b/data/software/ai/aidbox.json @@ -0,0 +1,14 @@ +{ + "slug": "aidbox", + "name": "Aidbox", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140066672" + ], + "developers": [ + "Health Samurai" + ], + "programming_languages": [ + "Clojure" + ] +} diff --git a/data/software/ai/aideliv.json b/data/software/ai/aideliv.json new file mode 100644 index 000000000000..626171a4fc14 --- /dev/null +++ b/data/software/ai/aideliv.json @@ -0,0 +1,8 @@ +{ + "slug": "aideliv", + "name": "AiDeliv", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139494123" + ] +} diff --git a/data/software/ai/aidstest.json b/data/software/ai/aidstest.json new file mode 100644 index 000000000000..c955b3b34eaf --- /dev/null +++ b/data/software/ai/aidstest.json @@ -0,0 +1,18 @@ +{ + "slug": "aidstest", + "name": "Aidstest", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4033605" + ], + "release_date": "1988-11-17", + "developers": [ + "Dmitry Lozinsky" + ], + "operating_systems": [ + "DOS" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/ai/aiiaco.json b/data/software/ai/aiiaco.json new file mode 100644 index 000000000000..5d50bb439acf --- /dev/null +++ b/data/software/ai/aiiaco.json @@ -0,0 +1,8 @@ +{ + "slug": "aiiaco", + "name": "AiiACo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138638897" + ] +} diff --git a/data/software/ai/aiko.json b/data/software/ai/aiko.json new file mode 100644 index 000000000000..68d2f7046d29 --- /dev/null +++ b/data/software/ai/aiko.json @@ -0,0 +1,11 @@ +{ + "slug": "aiko", + "name": "AiKO", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138686046" + ], + "developers": [ + "Animen" + ] +} diff --git a/data/software/ai/aim-ad-hack.json b/data/software/ai/aim-ad-hack.json new file mode 100644 index 000000000000..96d85f07f236 --- /dev/null +++ b/data/software/ai/aim-ad-hack.json @@ -0,0 +1,14 @@ +{ + "slug": "aim-ad-hack", + "name": "AIM Ad Hack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4651955" + ], + "operating_systems": [ + "Microsoft Windows" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/ai/aim-phoneline.json b/data/software/ai/aim-phoneline.json new file mode 100644 index 000000000000..f2f52834168a --- /dev/null +++ b/data/software/ai/aim-phoneline.json @@ -0,0 +1,11 @@ +{ + "slug": "aim-phoneline", + "name": "AIM Phoneline", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4651965" + ], + "developers": [ + "AOL" + ] +} diff --git a/data/software/ai/aimall.json b/data/software/ai/aimall.json new file mode 100644 index 000000000000..de48d889cdbf --- /dev/null +++ b/data/software/ai/aimall.json @@ -0,0 +1,15 @@ +{ + "slug": "aimall", + "name": "AIMAll", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4651945" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/ai/aimeos.json b/data/software/ai/aimeos.json new file mode 100644 index 000000000000..9120a86fb084 --- /dev/null +++ b/data/software/ai/aimeos.json @@ -0,0 +1,8 @@ +{ + "slug": "aimeos", + "name": "Aimeos", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22937341" + ] +} diff --git a/data/software/ai/aimstor.json b/data/software/ai/aimstor.json new file mode 100644 index 000000000000..408eb74a947a --- /dev/null +++ b/data/software/ai/aimstor.json @@ -0,0 +1,8 @@ +{ + "slug": "aimstor", + "name": "AIMstor", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4651971" + ] +} diff --git a/data/software/ai/aimsun-live.json b/data/software/ai/aimsun-live.json new file mode 100644 index 000000000000..dfed1c906c2e --- /dev/null +++ b/data/software/ai/aimsun-live.json @@ -0,0 +1,14 @@ +{ + "slug": "aimsun-live", + "name": "Aimsun Live", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4697184" + ], + "developers": [ + "TSS – Transport Simulation Systems" + ], + "licenses": [ + "end-user license agreement" + ] +} diff --git a/data/software/ai/ainot.json b/data/software/ai/ainot.json new file mode 100644 index 000000000000..1b65a2a60f49 --- /dev/null +++ b/data/software/ai/ainot.json @@ -0,0 +1,11 @@ +{ + "slug": "ainot", + "name": "AINOT", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140069725" + ], + "developers": [ + "Omm Prakash Swain" + ] +} diff --git a/data/software/ai/aiohttp-cors.json b/data/software/ai/aiohttp-cors.json new file mode 100644 index 000000000000..aa56d67b60cc --- /dev/null +++ b/data/software/ai/aiohttp-cors.json @@ -0,0 +1,11 @@ +{ + "slug": "aiohttp-cors", + "name": "aiohttp-cors", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28941610" + ], + "licenses": [ + "Apache License" + ] +} diff --git a/data/software/ai/aiohttp.json b/data/software/ai/aiohttp.json new file mode 100644 index 000000000000..03b3c00a780c --- /dev/null +++ b/data/software/ai/aiohttp.json @@ -0,0 +1,11 @@ +{ + "slug": "aiohttp", + "name": "aiohttp", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28941607" + ], + "licenses": [ + "Apache Software License 2.0" + ] +} diff --git a/data/software/ai/aioncalls-ai-voice-agent.json b/data/software/ai/aioncalls-ai-voice-agent.json new file mode 100644 index 000000000000..54870cdac849 --- /dev/null +++ b/data/software/ai/aioncalls-ai-voice-agent.json @@ -0,0 +1,11 @@ +{ + "slug": "aioncalls-ai-voice-agent", + "name": "AIOnCalls AI Voice Agent", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138611796" + ], + "developers": [ + "technovedaai" + ] +} diff --git a/data/software/ai/air-q41795204.json b/data/software/ai/air-q41795204.json new file mode 100644 index 000000000000..e6ff3e06a408 --- /dev/null +++ b/data/software/ai/air-q41795204.json @@ -0,0 +1,11 @@ +{ + "slug": "air-q41795204", + "name": "AIR", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q41795204" + ], + "developers": [ + "Roger P. Woods" + ] +} diff --git a/data/software/ai/air-sharing.json b/data/software/ai/air-sharing.json new file mode 100644 index 000000000000..2442cc1abb05 --- /dev/null +++ b/data/software/ai/air-sharing.json @@ -0,0 +1,12 @@ +{ + "slug": "air-sharing", + "name": "Air Sharing", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4698187" + ], + "release_date": "2009-01-01", + "operating_systems": [ + "iOS" + ] +} diff --git a/data/software/ai/air.json b/data/software/ai/air.json new file mode 100644 index 000000000000..402445e5218e --- /dev/null +++ b/data/software/ai/air.json @@ -0,0 +1,8 @@ +{ + "slug": "air", + "name": "AIR", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4651990" + ] +} diff --git a/data/software/ai/airdroid.json b/data/software/ai/airdroid.json new file mode 100644 index 000000000000..5637d3f10a34 --- /dev/null +++ b/data/software/ai/airdroid.json @@ -0,0 +1,12 @@ +{ + "slug": "airdroid", + "name": "AirDroid", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10846423" + ], + "operating_systems": [ + "iOS", + "Microsoft Windows" + ] +} diff --git a/data/software/ai/airfair.json b/data/software/ai/airfair.json new file mode 100644 index 000000000000..5a874afe9abb --- /dev/null +++ b/data/software/ai/airfair.json @@ -0,0 +1,8 @@ +{ + "slug": "airfair", + "name": "Airfair", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q30609899" + ] +} diff --git a/data/software/ai/airgram.json b/data/software/ai/airgram.json new file mode 100644 index 000000000000..4fd5416970de --- /dev/null +++ b/data/software/ai/airgram.json @@ -0,0 +1,8 @@ +{ + "slug": "airgram", + "name": "airgram", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4698702" + ] +} diff --git a/data/software/ai/airhelp.json b/data/software/ai/airhelp.json new file mode 100644 index 000000000000..26dd7d985c47 --- /dev/null +++ b/data/software/ai/airhelp.json @@ -0,0 +1,8 @@ +{ + "slug": "airhelp", + "name": "AirHelp", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17108237" + ] +} diff --git a/data/software/ai/airline-themes.json b/data/software/ai/airline-themes.json new file mode 100644 index 000000000000..692db7a11cc5 --- /dev/null +++ b/data/software/ai/airline-themes.json @@ -0,0 +1,11 @@ +{ + "slug": "airline-themes", + "name": "airline-themes", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28941614" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/ai/airline.json b/data/software/ai/airline.json new file mode 100644 index 000000000000..f0274a3e9f6d --- /dev/null +++ b/data/software/ai/airline.json @@ -0,0 +1,11 @@ +{ + "slug": "airline", + "name": "airline", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28941612" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/ai/airmail.json b/data/software/ai/airmail.json new file mode 100644 index 000000000000..78552016b9af --- /dev/null +++ b/data/software/ai/airmail.json @@ -0,0 +1,14 @@ +{ + "slug": "airmail", + "name": "Airmail", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22906259" + ], + "operating_systems": [ + "watchOS", + "iPadOS", + "iOS", + "macOS" + ] +} diff --git a/data/software/ai/airman.json b/data/software/ai/airman.json new file mode 100644 index 000000000000..268309c78b70 --- /dev/null +++ b/data/software/ai/airman.json @@ -0,0 +1,12 @@ +{ + "slug": "airman", + "name": "AIRMAN", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q293871" + ], + "release_date": "2000-01-01", + "developers": [ + "Airbus Commercial Aircraft" + ] +} diff --git a/data/software/ai/airnovel.json b/data/software/ai/airnovel.json new file mode 100644 index 000000000000..72937f471b1e --- /dev/null +++ b/data/software/ai/airnovel.json @@ -0,0 +1,8 @@ +{ + "slug": "airnovel", + "name": "AIRNovel", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11189066" + ] +} diff --git a/data/software/ai/airport-utility.json b/data/software/ai/airport-utility.json new file mode 100644 index 000000000000..83cdd69f4832 --- /dev/null +++ b/data/software/ai/airport-utility.json @@ -0,0 +1,16 @@ +{ + "slug": "airport-utility", + "name": "AirPort Utility", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1188053" + ], + "developers": [ + "Apple Inc." + ], + "operating_systems": [ + "iOS", + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/software/ai/airq.json b/data/software/ai/airq.json new file mode 100644 index 000000000000..613c2fe2768c --- /dev/null +++ b/data/software/ai/airq.json @@ -0,0 +1,8 @@ +{ + "slug": "airq", + "name": "AirQ+", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q85740199" + ] +} diff --git a/data/software/ai/airy.json b/data/software/ai/airy.json new file mode 100644 index 000000000000..268858cba81c --- /dev/null +++ b/data/software/ai/airy.json @@ -0,0 +1,8 @@ +{ + "slug": "airy", + "name": "Airy", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22095117" + ] +} diff --git a/data/software/ai/aisee.json b/data/software/ai/aisee.json new file mode 100644 index 000000000000..84efbec1775b --- /dev/null +++ b/data/software/ai/aisee.json @@ -0,0 +1,11 @@ +{ + "slug": "aisee", + "name": "aiSee", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125399570" + ], + "developers": [ + "AbsInt" + ] +} diff --git a/data/software/ai/aitalk.json b/data/software/ai/aitalk.json new file mode 100644 index 000000000000..8aee5d099c45 --- /dev/null +++ b/data/software/ai/aitalk.json @@ -0,0 +1,11 @@ +{ + "slug": "aitalk", + "name": "Aitalk", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q97185033" + ], + "developers": [ + "Ai" + ] +} diff --git a/data/software/ai/aitc-homes.json b/data/software/ai/aitc-homes.json new file mode 100644 index 000000000000..05bfa0ace24d --- /dev/null +++ b/data/software/ai/aitc-homes.json @@ -0,0 +1,11 @@ +{ + "slug": "aitc-homes", + "name": "AITC Homes", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139701533" + ], + "operating_systems": [ + "cross-platform" + ] +} diff --git a/data/software/aj/ajaxsketch.json b/data/software/aj/ajaxsketch.json new file mode 100644 index 000000000000..0b69cb486c12 --- /dev/null +++ b/data/software/aj/ajaxsketch.json @@ -0,0 +1,8 @@ +{ + "slug": "ajaxsketch", + "name": "AjaxSketch", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q412207" + ] +} diff --git a/data/software/aj/ajaxwrite.json b/data/software/aj/ajaxwrite.json new file mode 100644 index 000000000000..96b20fa650ba --- /dev/null +++ b/data/software/aj/ajaxwrite.json @@ -0,0 +1,8 @@ +{ + "slug": "ajaxwrite", + "name": "AjaxWrite", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q412211" + ] +} diff --git a/data/software/aj/ajenti.json b/data/software/aj/ajenti.json new file mode 100644 index 000000000000..4ac88a051984 --- /dev/null +++ b/data/software/aj/ajenti.json @@ -0,0 +1,14 @@ +{ + "slug": "ajenti", + "name": "Ajenti", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q128034290" + ], + "programming_languages": [ + "Python" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/ak/akonadi-ews.json b/data/software/ak/akonadi-ews.json new file mode 100644 index 000000000000..374396107c73 --- /dev/null +++ b/data/software/ak/akonadi-ews.json @@ -0,0 +1,8 @@ +{ + "slug": "akonadi-ews", + "name": "akonadi-ews", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28941616" + ] +} diff --git a/data/software/al/alarms-clock.json b/data/software/al/alarms-clock.json new file mode 100644 index 000000000000..462ec8d6aa1b --- /dev/null +++ b/data/software/al/alarms-clock.json @@ -0,0 +1,17 @@ +{ + "slug": "alarms-clock", + "name": "Alarms & Clock", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28450700" + ], + "release_date": "2013-09-12", + "developers": [ + "Microsoft" + ], + "operating_systems": [ + "Windows Mobile", + "Xbox One and Xbox Series X/S system software", + "Microsoft Windows" + ] +} diff --git a/data/software/al/albert-library-search-engine.json b/data/software/al/albert-library-search-engine.json new file mode 100644 index 000000000000..67c108b71015 --- /dev/null +++ b/data/software/al/albert-library-search-engine.json @@ -0,0 +1,11 @@ +{ + "slug": "albert-library-search-engine", + "name": "ALBERT - Library Search Engine", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q99209375" + ], + "developers": [ + "Cooperative Library Network Berlin-Brandenburg" + ] +} diff --git a/data/software/al/albumentations.json b/data/software/al/albumentations.json new file mode 100644 index 000000000000..ee85774b0929 --- /dev/null +++ b/data/software/al/albumentations.json @@ -0,0 +1,8 @@ +{ + "slug": "albumentations", + "name": "Albumentations", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117406959" + ] +} diff --git a/data/software/al/albumforge.json b/data/software/al/albumforge.json new file mode 100644 index 000000000000..f540e49bb650 --- /dev/null +++ b/data/software/al/albumforge.json @@ -0,0 +1,11 @@ +{ + "slug": "albumforge", + "name": "AlbumForge", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135900722" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/al/alcapture.json b/data/software/al/alcapture.json new file mode 100644 index 000000000000..811b98520ec1 --- /dev/null +++ b/data/software/al/alcapture.json @@ -0,0 +1,11 @@ +{ + "slug": "alcapture", + "name": "ALCapture", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q12605935" + ], + "developers": [ + "ESTsoft" + ] +} diff --git a/data/software/al/alchemy-catalyst.json b/data/software/al/alchemy-catalyst.json new file mode 100644 index 000000000000..14f3f2ab41e5 --- /dev/null +++ b/data/software/al/alchemy-catalyst.json @@ -0,0 +1,8 @@ +{ + "slug": "alchemy-catalyst", + "name": "Alchemy Catalyst", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4713032" + ] +} diff --git a/data/software/al/aldfaer.json b/data/software/al/aldfaer.json new file mode 100644 index 000000000000..1f2b67dd464c --- /dev/null +++ b/data/software/al/aldfaer.json @@ -0,0 +1,14 @@ +{ + "slug": "aldfaer", + "name": "Aldfaer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2315754" + ], + "operating_systems": [ + "Microsoft Windows" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/al/aldrive.json b/data/software/al/aldrive.json new file mode 100644 index 000000000000..44b6ca27b10d --- /dev/null +++ b/data/software/al/aldrive.json @@ -0,0 +1,14 @@ +{ + "slug": "aldrive", + "name": "ALDrive", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4652340" + ], + "developers": [ + "ESTsoft" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/al/aleatory-engine.json b/data/software/al/aleatory-engine.json new file mode 100644 index 000000000000..09c333722b9c --- /dev/null +++ b/data/software/al/aleatory-engine.json @@ -0,0 +1,14 @@ +{ + "slug": "aleatory-engine", + "name": "aleatory-engine", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137719932" + ], + "programming_languages": [ + "Python" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/al/alegra.json b/data/software/al/alegra.json new file mode 100644 index 000000000000..649236824270 --- /dev/null +++ b/data/software/al/alegra.json @@ -0,0 +1,11 @@ +{ + "slug": "alegra", + "name": "ALEGRA", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4652323" + ], + "developers": [ + "Sandia National Laboratories" + ] +} diff --git a/data/software/al/aleksis.json b/data/software/al/aleksis.json new file mode 100644 index 000000000000..712ba5c5ecbf --- /dev/null +++ b/data/software/al/aleksis.json @@ -0,0 +1,19 @@ +{ + "slug": "aleksis", + "name": "AlekSIS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122508529" + ], + "developers": [ + "velocitux", + "Teckids community", + "Katharineum" + ], + "programming_languages": [ + "Python" + ], + "licenses": [ + "European Union Public Licence" + ] +} diff --git a/data/software/al/aleph.json b/data/software/al/aleph.json new file mode 100644 index 000000000000..0251b8bc8b81 --- /dev/null +++ b/data/software/al/aleph.json @@ -0,0 +1,8 @@ +{ + "slug": "aleph", + "name": "Aleph", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123846258" + ] +} diff --git a/data/software/al/alerta-chart.json b/data/software/al/alerta-chart.json new file mode 100644 index 000000000000..1714b5a15b78 --- /dev/null +++ b/data/software/al/alerta-chart.json @@ -0,0 +1,9 @@ +{ + "slug": "alerta-chart", + "name": "Alerta Chart", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140469304" + ], + "release_date": "2025-01-01" +} diff --git a/data/software/al/alertforge.json b/data/software/al/alertforge.json new file mode 100644 index 000000000000..827c1329bf84 --- /dev/null +++ b/data/software/al/alertforge.json @@ -0,0 +1,20 @@ +{ + "slug": "alertforge", + "name": "AlertForge", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139308045" + ], + "developers": [ + "AlertForge" + ], + "operating_systems": [ + "cross-platform" + ], + "programming_languages": [ + "TypeScript" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/al/alerts-in-ua.json b/data/software/al/alerts-in-ua.json new file mode 100644 index 000000000000..4043780b789a --- /dev/null +++ b/data/software/al/alerts-in-ua.json @@ -0,0 +1,8 @@ +{ + "slug": "alerts-in-ua", + "name": "Alerts.in.ua", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116668790" + ] +} diff --git a/data/software/al/alex-the-allegator-4.json b/data/software/al/alex-the-allegator-4.json new file mode 100644 index 000000000000..0c0b5b27efbc --- /dev/null +++ b/data/software/al/alex-the-allegator-4.json @@ -0,0 +1,12 @@ +{ + "slug": "alex-the-allegator-4", + "name": "Alex the Allegator 4", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108535960" + ], + "release_date": "2003-01-01", + "genres": [ + "platformer" + ] +} diff --git a/data/software/al/alexa-toolbar.json b/data/software/al/alexa-toolbar.json new file mode 100644 index 000000000000..d2a8b1ffce19 --- /dev/null +++ b/data/software/al/alexa-toolbar.json @@ -0,0 +1,11 @@ +{ + "slug": "alexa-toolbar", + "name": "Alexa Toolbar", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2569188" + ], + "developers": [ + "Alexa Internet" + ] +} diff --git a/data/software/al/alexandria.json b/data/software/al/alexandria.json new file mode 100644 index 000000000000..b35355fa1819 --- /dev/null +++ b/data/software/al/alexandria.json @@ -0,0 +1,8 @@ +{ + "slug": "alexandria", + "name": "Alexandria", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4720933" + ] +} diff --git a/data/software/al/alexis-spectral-data.json b/data/software/al/alexis-spectral-data.json new file mode 100644 index 000000000000..685fc3403686 --- /dev/null +++ b/data/software/al/alexis-spectral-data.json @@ -0,0 +1,8 @@ +{ + "slug": "alexis-spectral-data", + "name": "Alexis Spectral Data", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4721531" + ] +} diff --git a/data/software/al/alexnet.json b/data/software/al/alexnet.json new file mode 100644 index 000000000000..4aadcb85ecb4 --- /dev/null +++ b/data/software/al/alexnet.json @@ -0,0 +1,8 @@ +{ + "slug": "alexnet", + "name": "AlexNet", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28325009" + ] +} diff --git a/data/software/al/alfa-ebooks-manager.json b/data/software/al/alfa-ebooks-manager.json new file mode 100644 index 000000000000..25ffd3535a38 --- /dev/null +++ b/data/software/al/alfa-ebooks-manager.json @@ -0,0 +1,14 @@ +{ + "slug": "alfa-ebooks-manager", + "name": "Alfa Ebooks Manager", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q86663346" + ], + "operating_systems": [ + "Microsoft Windows" + ], + "licenses": [ + "shareware" + ] +} diff --git a/data/software/al/alfaview-video-conferencing-systems.json b/data/software/al/alfaview-video-conferencing-systems.json new file mode 100644 index 000000000000..b2d6d3fe33bc --- /dev/null +++ b/data/software/al/alfaview-video-conferencing-systems.json @@ -0,0 +1,12 @@ +{ + "slug": "alfaview-video-conferencing-systems", + "name": "Alfaview Video Conferencing Systems", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q97961737" + ], + "release_date": "2016-01-01", + "operating_systems": [ + "macOS" + ] +} diff --git a/data/software/al/alflow-ocr.json b/data/software/al/alflow-ocr.json new file mode 100644 index 000000000000..4524e6d70242 --- /dev/null +++ b/data/software/al/alflow-ocr.json @@ -0,0 +1,8 @@ +{ + "slug": "alflow-ocr", + "name": "Alflow OCR", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139322840" + ] +} diff --git a/data/software/al/alfred.json b/data/software/al/alfred.json new file mode 100644 index 000000000000..bd50510081ff --- /dev/null +++ b/data/software/al/alfred.json @@ -0,0 +1,11 @@ +{ + "slug": "alfred", + "name": "Alfred", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4722181" + ], + "operating_systems": [ + "macOS" + ] +} diff --git a/data/software/al/algoneer-app.json b/data/software/al/algoneer-app.json new file mode 100644 index 000000000000..896bce04fa53 --- /dev/null +++ b/data/software/al/algoneer-app.json @@ -0,0 +1,11 @@ +{ + "slug": "algoneer-app", + "name": "Algoneer App", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72069809" + ], + "developers": [ + "KIProtect GmbH" + ] +} diff --git a/data/software/al/algoneer.json b/data/software/al/algoneer.json new file mode 100644 index 000000000000..eec42fc7cfe8 --- /dev/null +++ b/data/software/al/algoneer.json @@ -0,0 +1,17 @@ +{ + "slug": "algoneer", + "name": "Algoneer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76452810" + ], + "developers": [ + "KIProtect GmbH" + ], + "programming_languages": [ + "Python" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/al/algor.json b/data/software/al/algor.json new file mode 100644 index 000000000000..9f69f9086b72 --- /dev/null +++ b/data/software/al/algor.json @@ -0,0 +1,8 @@ +{ + "slug": "algor", + "name": "ALGOR", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4652364" + ] +} diff --git a/data/software/al/algorithm-builder.json b/data/software/al/algorithm-builder.json new file mode 100644 index 000000000000..05b2e468137b --- /dev/null +++ b/data/software/al/algorithm-builder.json @@ -0,0 +1,8 @@ +{ + "slug": "algorithm-builder", + "name": "Algorithm Builder", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1706966" + ] +} diff --git a/data/software/al/alias-eclipse.json b/data/software/al/alias-eclipse.json new file mode 100644 index 000000000000..410140492b41 --- /dev/null +++ b/data/software/al/alias-eclipse.json @@ -0,0 +1,8 @@ +{ + "slug": "alias-eclipse", + "name": "Alias Eclipse", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4725592" + ] +} diff --git a/data/software/al/alice-q126888621.json b/data/software/al/alice-q126888621.json new file mode 100644 index 000000000000..489dfd3321d7 --- /dev/null +++ b/data/software/al/alice-q126888621.json @@ -0,0 +1,8 @@ +{ + "slug": "alice-q126888621", + "name": "Alice", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126888621" + ] +} diff --git a/data/software/al/alice.json b/data/software/al/alice.json new file mode 100644 index 000000000000..c5e45137873f --- /dev/null +++ b/data/software/al/alice.json @@ -0,0 +1,14 @@ +{ + "slug": "alice", + "name": "Alice", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1335388" + ], + "developers": [ + "Carnegie Mellon University" + ], + "programming_languages": [ + "Java" + ] +} diff --git a/data/software/al/alicevision-meshroom.json b/data/software/al/alicevision-meshroom.json new file mode 100644 index 000000000000..bf9af8d0bc27 --- /dev/null +++ b/data/software/al/alicevision-meshroom.json @@ -0,0 +1,16 @@ +{ + "slug": "alicevision-meshroom", + "name": "AliceVision Meshroom", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109132097" + ], + "developers": [ + "Grégoire De Lillo", + "Fabien Castan", + "Pierre Moulon" + ], + "licenses": [ + "Mozilla Public License, version 2.0" + ] +} diff --git a/data/software/al/alien-blue.json b/data/software/al/alien-blue.json new file mode 100644 index 000000000000..bc6997eac572 --- /dev/null +++ b/data/software/al/alien-blue.json @@ -0,0 +1,17 @@ +{ + "slug": "alien-blue", + "name": "Alien Blue", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18754907" + ], + "developers": [ + "Reddit Inc." + ], + "operating_systems": [ + "iOS" + ], + "programming_languages": [ + "Objective-C" + ] +} diff --git a/data/software/al/alien.json b/data/software/al/alien.json new file mode 100644 index 000000000000..c552de1f686e --- /dev/null +++ b/data/software/al/alien.json @@ -0,0 +1,11 @@ +{ + "slug": "alien", + "name": "AliEn", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4724511" + ], + "developers": [ + "CERN" + ] +} diff --git a/data/software/al/alienbrain.json b/data/software/al/alienbrain.json new file mode 100644 index 000000000000..4d422aa31ee2 --- /dev/null +++ b/data/software/al/alienbrain.json @@ -0,0 +1,8 @@ +{ + "slug": "alienbrain", + "name": "Alienbrain", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q974914" + ] +} diff --git a/data/software/al/aliyun-drive.json b/data/software/al/aliyun-drive.json new file mode 100644 index 000000000000..50dded0b6516 --- /dev/null +++ b/data/software/al/aliyun-drive.json @@ -0,0 +1,17 @@ +{ + "slug": "aliyun-drive", + "name": "ALiYun Drive", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106515066" + ], + "developers": [ + "Alibaba Group" + ], + "operating_systems": [ + "HarmonyOS NEXT", + "iPadOS", + "iOS", + "Microsoft Windows" + ] +} diff --git a/data/software/al/all-in-one-sidebar.json b/data/software/al/all-in-one-sidebar.json new file mode 100644 index 000000000000..73c54bfeb145 --- /dev/null +++ b/data/software/al/all-in-one-sidebar.json @@ -0,0 +1,8 @@ +{ + "slug": "all-in-one-sidebar", + "name": "All-in-One Sidebar", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3652272" + ] +} diff --git a/data/software/al/all-our-ideas.json b/data/software/al/all-our-ideas.json new file mode 100644 index 000000000000..19392dcff348 --- /dev/null +++ b/data/software/al/all-our-ideas.json @@ -0,0 +1,8 @@ +{ + "slug": "all-our-ideas", + "name": "All Our Ideas", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084381" + ] +} diff --git a/data/software/al/alladdin.json b/data/software/al/alladdin.json new file mode 100644 index 000000000000..e0102624826b --- /dev/null +++ b/data/software/al/alladdin.json @@ -0,0 +1,20 @@ +{ + "slug": "alladdin", + "name": "AllAddin", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139742451" + ], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [ + "Python" + ], + "licenses": [ + "proprietary license" + ], + "genres": [ + "building information modeling" + ] +} diff --git a/data/software/al/alleleid.json b/data/software/al/alleleid.json new file mode 100644 index 000000000000..5074c4a82c17 --- /dev/null +++ b/data/software/al/alleleid.json @@ -0,0 +1,12 @@ +{ + "slug": "alleleid", + "name": "AlleleID", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16335176" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/software/al/alligator-allen-transformer.json b/data/software/al/alligator-allen-transformer.json new file mode 100644 index 000000000000..1fdf0710dfe3 --- /dev/null +++ b/data/software/al/alligator-allen-transformer.json @@ -0,0 +1,20 @@ +{ + "slug": "alligator-allen-transformer", + "name": "Alligator - Allen Transformer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q74004218" + ], + "developers": [ + "Römisch-Germanisches Zentralmuseum", + "Florian Thiery" + ], + "licenses": [ + "MIT License" + ], + "genres": [ + "SPARQL", + "archaeology", + "chronology" + ] +} diff --git a/data/software/al/allinea-map.json b/data/software/al/allinea-map.json new file mode 100644 index 000000000000..d317d850b4c5 --- /dev/null +++ b/data/software/al/allinea-map.json @@ -0,0 +1,9 @@ +{ + "slug": "allinea-map", + "name": "Allinea MAP", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18351380" + ], + "release_date": "2013-01-01" +} diff --git a/data/software/al/allmymovies.json b/data/software/al/allmymovies.json new file mode 100644 index 000000000000..3a945df4a80a --- /dev/null +++ b/data/software/al/allmymovies.json @@ -0,0 +1,11 @@ +{ + "slug": "allmymovies", + "name": "AllMyMovies", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4033745" + ], + "developers": [ + "BolideSoft" + ] +} diff --git a/data/software/al/allmynotes-organizer.json b/data/software/al/allmynotes-organizer.json new file mode 100644 index 000000000000..c32af0892508 --- /dev/null +++ b/data/software/al/allmynotes-organizer.json @@ -0,0 +1,8 @@ +{ + "slug": "allmynotes-organizer", + "name": "AllMyNotes Organizer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2837441" + ] +} diff --git a/data/software/al/allmyvideodownloader.json b/data/software/al/allmyvideodownloader.json new file mode 100644 index 000000000000..d3a7f96f4290 --- /dev/null +++ b/data/software/al/allmyvideodownloader.json @@ -0,0 +1,8 @@ +{ + "slug": "allmyvideodownloader", + "name": "Allmyvideodownloader", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140329130" + ] +} diff --git a/data/software/al/allsign.json b/data/software/al/allsign.json new file mode 100644 index 000000000000..6ad620049a78 --- /dev/null +++ b/data/software/al/allsign.json @@ -0,0 +1,8 @@ +{ + "slug": "allsign", + "name": "AllSign", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139074057" + ] +} diff --git a/data/software/al/allvideodownloader.json b/data/software/al/allvideodownloader.json new file mode 100644 index 000000000000..54b8754fcfce --- /dev/null +++ b/data/software/al/allvideodownloader.json @@ -0,0 +1,8 @@ +{ + "slug": "allvideodownloader", + "name": "AllVideoDownloader", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140420059" + ] +} diff --git a/data/software/al/allycad.json b/data/software/al/allycad.json new file mode 100644 index 000000000000..d09997d7f7bb --- /dev/null +++ b/data/software/al/allycad.json @@ -0,0 +1,8 @@ +{ + "slug": "allycad", + "name": "AllyCAD", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4733391" + ] +} diff --git a/data/software/al/alpakalent.json b/data/software/al/alpakalent.json new file mode 100644 index 000000000000..0c01290fca80 --- /dev/null +++ b/data/software/al/alpakalent.json @@ -0,0 +1,8 @@ +{ + "slug": "alpakalent", + "name": "Alpakalent", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134612381" + ] +} diff --git a/data/software/al/alpha-five.json b/data/software/al/alpha-five.json new file mode 100644 index 000000000000..5f7650204206 --- /dev/null +++ b/data/software/al/alpha-five.json @@ -0,0 +1,11 @@ +{ + "slug": "alpha-five", + "name": "Alpha Five", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4735032" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/al/alphabasic.json b/data/software/al/alphabasic.json new file mode 100644 index 000000000000..518124c366ac --- /dev/null +++ b/data/software/al/alphabasic.json @@ -0,0 +1,12 @@ +{ + "slug": "alphabasic", + "name": "AlphaBasic", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4734946" + ], + "release_date": "1976-01-01", + "programming_languages": [ + "assembly language" + ] +} diff --git a/data/software/al/alphafold.json b/data/software/al/alphafold.json new file mode 100644 index 000000000000..8652091b0596 --- /dev/null +++ b/data/software/al/alphafold.json @@ -0,0 +1,17 @@ +{ + "slug": "alphafold", + "name": "AlphaFold", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60827595" + ], + "developers": [ + "Google DeepMind" + ], + "programming_languages": [ + "Python" + ], + "licenses": [ + "Apache Software License 2.0" + ] +} diff --git a/data/software/al/alphafold2.json b/data/software/al/alphafold2.json new file mode 100644 index 000000000000..ac61daa1564c --- /dev/null +++ b/data/software/al/alphafold2.json @@ -0,0 +1,8 @@ +{ + "slug": "alphafold2", + "name": "AlphaFold2", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107711739" + ] +} diff --git a/data/software/al/alphastar.json b/data/software/al/alphastar.json new file mode 100644 index 000000000000..07d883ff1709 --- /dev/null +++ b/data/software/al/alphastar.json @@ -0,0 +1,14 @@ +{ + "slug": "alphastar", + "name": "AlphaStar", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q86749460" + ], + "developers": [ + "Google DeepMind" + ], + "licenses": [ + "Apache Software License 2.0" + ] +} diff --git a/data/software/al/alpheios.json b/data/software/al/alpheios.json new file mode 100644 index 000000000000..6640ddadc2f1 --- /dev/null +++ b/data/software/al/alpheios.json @@ -0,0 +1,8 @@ +{ + "slug": "alpheios", + "name": "Alpheios", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134885802" + ] +} diff --git a/data/software/al/alreader.json b/data/software/al/alreader.json new file mode 100644 index 000000000000..a5f3b7f3737f --- /dev/null +++ b/data/software/al/alreader.json @@ -0,0 +1,8 @@ +{ + "slug": "alreader", + "name": "AlReader", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q27941726" + ] +} diff --git a/data/software/al/alsee.json b/data/software/al/alsee.json new file mode 100644 index 000000000000..06e0ef91ce54 --- /dev/null +++ b/data/software/al/alsee.json @@ -0,0 +1,11 @@ +{ + "slug": "alsee", + "name": "ALSee", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q12605926" + ], + "developers": [ + "ESTsoft" + ] +} diff --git a/data/software/al/alsong.json b/data/software/al/alsong.json new file mode 100644 index 000000000000..e0d173c9689f --- /dev/null +++ b/data/software/al/alsong.json @@ -0,0 +1,11 @@ +{ + "slug": "alsong", + "name": "ALSong", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11257853" + ], + "developers": [ + "ESTsoft" + ] +} diff --git a/data/software/al/alt-text.json b/data/software/al/alt-text.json new file mode 100644 index 000000000000..df290b9aa111 --- /dev/null +++ b/data/software/al/alt-text.json @@ -0,0 +1,8 @@ +{ + "slug": "alt-text", + "name": "Alt.Text", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084383" + ] +} diff --git a/data/software/al/alta-lista.json b/data/software/al/alta-lista.json new file mode 100644 index 000000000000..1d6ee272abf7 --- /dev/null +++ b/data/software/al/alta-lista.json @@ -0,0 +1,11 @@ +{ + "slug": "alta-lista", + "name": "Alta Lista", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122733490" + ], + "developers": [ + "Matthias Jaap" + ] +} diff --git a/data/software/al/alter-ego.json b/data/software/al/alter-ego.json new file mode 100644 index 000000000000..3880db2fcc44 --- /dev/null +++ b/data/software/al/alter-ego.json @@ -0,0 +1,8 @@ +{ + "slug": "alter-ego", + "name": "Alter/Ego", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22906306" + ] +} diff --git a/data/software/al/altermime.json b/data/software/al/altermime.json new file mode 100644 index 000000000000..2b048f50f226 --- /dev/null +++ b/data/software/al/altermime.json @@ -0,0 +1,8 @@ +{ + "slug": "altermime", + "name": "alterMIME", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62845816" + ] +} diff --git a/data/software/al/alternativa3d.json b/data/software/al/alternativa3d.json new file mode 100644 index 000000000000..7d672facad74 --- /dev/null +++ b/data/software/al/alternativa3d.json @@ -0,0 +1,11 @@ +{ + "slug": "alternativa3d", + "name": "Alternativa3D", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4033832" + ], + "developers": [ + "AlternativaPlatform" + ] +} diff --git a/data/software/al/alternative-girls.json b/data/software/al/alternative-girls.json new file mode 100644 index 000000000000..0cbfec30ac6c --- /dev/null +++ b/data/software/al/alternative-girls.json @@ -0,0 +1,13 @@ +{ + "slug": "alternative-girls", + "name": "Alternative Girls", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28193376" + ], + "release_date": "2016-01-01", + "operating_systems": [ + "iOS", + "Microsoft Windows" + ] +} diff --git a/data/software/al/alternative-software-build-for-compatibility-with-an-older-platform.json b/data/software/al/alternative-software-build-for-compatibility-with-an-older-platform.json new file mode 100644 index 000000000000..2de18375563d --- /dev/null +++ b/data/software/al/alternative-software-build-for-compatibility-with-an-older-platform.json @@ -0,0 +1,8 @@ +{ + "slug": "alternative-software-build-for-compatibility-with-an-older-platform", + "name": "alternative software build for compatibility with an older platform", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138055453" + ] +} diff --git a/data/software/al/alternative-software-build-for-performance.json b/data/software/al/alternative-software-build-for-performance.json new file mode 100644 index 000000000000..3922a6c02707 --- /dev/null +++ b/data/software/al/alternative-software-build-for-performance.json @@ -0,0 +1,8 @@ +{ + "slug": "alternative-software-build-for-performance", + "name": "alternative software build for performance", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138358934" + ] +} diff --git a/data/software/al/altius.json b/data/software/al/altius.json new file mode 100644 index 000000000000..af64386b814b --- /dev/null +++ b/data/software/al/altius.json @@ -0,0 +1,11 @@ +{ + "slug": "altius", + "name": "Altius", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140469863" + ], + "developers": [ + "A Degree Above" + ] +} diff --git a/data/software/al/altmetric.json b/data/software/al/altmetric.json new file mode 100644 index 000000000000..5cd7683cdff9 --- /dev/null +++ b/data/software/al/altmetric.json @@ -0,0 +1,8 @@ +{ + "slug": "altmetric", + "name": "Altmetric", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087685" + ] +} diff --git a/data/software/al/alto-mail.json b/data/software/al/alto-mail.json new file mode 100644 index 000000000000..538abb97d5f1 --- /dev/null +++ b/data/software/al/alto-mail.json @@ -0,0 +1,11 @@ +{ + "slug": "alto-mail", + "name": "Alto Mail", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22906312" + ], + "developers": [ + "AOL" + ] +} diff --git a/data/software/al/altoolbar.json b/data/software/al/altoolbar.json new file mode 100644 index 000000000000..bf453f47571e --- /dev/null +++ b/data/software/al/altoolbar.json @@ -0,0 +1,11 @@ +{ + "slug": "altoolbar", + "name": "ALToolbar", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16170510" + ], + "developers": [ + "ESTsoft" + ] +} diff --git a/data/software/al/alureon.json b/data/software/al/alureon.json new file mode 100644 index 000000000000..db11f355ec2f --- /dev/null +++ b/data/software/al/alureon.json @@ -0,0 +1,8 @@ +{ + "slug": "alureon", + "name": "Alureon", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3290595" + ] +} diff --git a/data/software/al/alvadesc.json b/data/software/al/alvadesc.json new file mode 100644 index 000000000000..be2ba493a508 --- /dev/null +++ b/data/software/al/alvadesc.json @@ -0,0 +1,8 @@ +{ + "slug": "alvadesc", + "name": "AlvaDesc", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q132126693" + ] +} diff --git a/data/software/al/alveo-virtual-laboratory.json b/data/software/al/alveo-virtual-laboratory.json new file mode 100644 index 000000000000..919bad5258f6 --- /dev/null +++ b/data/software/al/alveo-virtual-laboratory.json @@ -0,0 +1,8 @@ +{ + "slug": "alveo-virtual-laboratory", + "name": "Alveo Virtual Laboratory", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087686" + ] +} diff --git a/data/software/al/alveo.json b/data/software/al/alveo.json new file mode 100644 index 000000000000..6f8ccb3a1ec9 --- /dev/null +++ b/data/software/al/alveo.json @@ -0,0 +1,8 @@ +{ + "slug": "alveo", + "name": "Alveo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084384" + ] +} diff --git a/data/software/al/alyac.json b/data/software/al/alyac.json new file mode 100644 index 000000000000..5792e1ba23f8 --- /dev/null +++ b/data/software/al/alyac.json @@ -0,0 +1,8 @@ +{ + "slug": "alyac", + "name": "ALYac", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q12605928" + ] +} diff --git a/data/software/am/amadeus-alt-a.json b/data/software/am/amadeus-alt-a.json new file mode 100644 index 000000000000..2ddbb9b64ad0 --- /dev/null +++ b/data/software/am/amadeus-alt-a.json @@ -0,0 +1,8 @@ +{ + "slug": "amadeus-alt-a", + "name": "Amadeus Altéa", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q68444502" + ] +} diff --git a/data/software/am/amado-online.json b/data/software/am/amado-online.json new file mode 100644 index 000000000000..e4b701e7e1d8 --- /dev/null +++ b/data/software/am/amado-online.json @@ -0,0 +1,8 @@ +{ + "slug": "amado-online", + "name": "AMADO-online", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084385" + ] +} diff --git a/data/software/am/amap.json b/data/software/am/amap.json new file mode 100644 index 000000000000..ee1ae7025c78 --- /dev/null +++ b/data/software/am/amap.json @@ -0,0 +1,15 @@ +{ + "slug": "amap", + "name": "amap", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q15927531" + ], + "release_date": "2012-01-01", + "developers": [ + "AutoNavi Holdings Limited" + ], + "publishers": [ + "AutoNavi Holdings Limited" + ] +} diff --git a/data/software/am/amavisd-milter.json b/data/software/am/amavisd-milter.json new file mode 100644 index 000000000000..9e3594849a4b --- /dev/null +++ b/data/software/am/amavisd-milter.json @@ -0,0 +1,8 @@ +{ + "slug": "amavisd-milter", + "name": "amavisd-milter", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62845824" + ] +} diff --git a/data/software/am/amavisd-new.json b/data/software/am/amavisd-new.json new file mode 100644 index 000000000000..18b0d498cfa8 --- /dev/null +++ b/data/software/am/amavisd-new.json @@ -0,0 +1,8 @@ +{ + "slug": "amavisd-new", + "name": "amavisd-new", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62845832" + ] +} diff --git a/data/software/am/amaze.json b/data/software/am/amaze.json new file mode 100644 index 000000000000..a28ddc02847b --- /dev/null +++ b/data/software/am/amaze.json @@ -0,0 +1,11 @@ +{ + "slug": "amaze", + "name": "Amaze", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16002791" + ], + "developers": [ + "Deque Systems" + ] +} diff --git a/data/software/am/amazon-corretto.json b/data/software/am/amazon-corretto.json new file mode 100644 index 000000000000..b461e957cd20 --- /dev/null +++ b/data/software/am/amazon-corretto.json @@ -0,0 +1,21 @@ +{ + "slug": "amazon-corretto", + "name": "Amazon Corretto", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110705735" + ], + "developers": [ + "Amazon" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [ + "Java" + ], + "licenses": [ + "GNU General Public License, version 2.0" + ] +} diff --git a/data/software/am/amazon-digital-software-video-games.json b/data/software/am/amazon-digital-software-video-games.json new file mode 100644 index 000000000000..4536387555ca --- /dev/null +++ b/data/software/am/amazon-digital-software-video-games.json @@ -0,0 +1,8 @@ +{ + "slug": "amazon-digital-software-video-games", + "name": "Amazon Digital Software & Video Games", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108749491" + ] +} diff --git a/data/software/am/amazon-documentdb.json b/data/software/am/amazon-documentdb.json new file mode 100644 index 000000000000..83ed6e3a2812 --- /dev/null +++ b/data/software/am/amazon-documentdb.json @@ -0,0 +1,8 @@ +{ + "slug": "amazon-documentdb", + "name": "Amazon DocumentDB", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60787643" + ] +} diff --git a/data/software/am/amazon-elastic-file-system.json b/data/software/am/amazon-elastic-file-system.json new file mode 100644 index 000000000000..0dbda320ca4f --- /dev/null +++ b/data/software/am/amazon-elastic-file-system.json @@ -0,0 +1,8 @@ +{ + "slug": "amazon-elastic-file-system", + "name": "Amazon Elastic File System", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q55603775" + ] +} diff --git a/data/software/am/amazon-kinesis.json b/data/software/am/amazon-kinesis.json new file mode 100644 index 000000000000..1053ac8033a2 --- /dev/null +++ b/data/software/am/amazon-kinesis.json @@ -0,0 +1,11 @@ +{ + "slug": "amazon-kinesis", + "name": "Amazon Kinesis", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q56358285" + ], + "developers": [ + "Amazon Web Services" + ] +} diff --git a/data/software/am/amazon-music-for-artists.json b/data/software/am/amazon-music-for-artists.json new file mode 100644 index 000000000000..e5c70cde64f5 --- /dev/null +++ b/data/software/am/amazon-music-for-artists.json @@ -0,0 +1,16 @@ +{ + "slug": "amazon-music-for-artists", + "name": "Amazon Music for Artists", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q88046860" + ], + "release_date": "2020-03-11", + "developers": [ + "Amazon" + ], + "operating_systems": [ + "webOS", + "iOS" + ] +} diff --git a/data/software/am/amazonface-ecosystem-model-ensemble-analysis.json b/data/software/am/amazonface-ecosystem-model-ensemble-analysis.json new file mode 100644 index 000000000000..8e3074404533 --- /dev/null +++ b/data/software/am/amazonface-ecosystem-model-ensemble-analysis.json @@ -0,0 +1,11 @@ +{ + "slug": "amazonface-ecosystem-model-ensemble-analysis", + "name": "AmazonFACE ecosystem model ensemble analysis", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118610755" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/am/amazonface-ethnobotanical-dashboard.json b/data/software/am/amazonface-ethnobotanical-dashboard.json new file mode 100644 index 000000000000..0558689872f4 --- /dev/null +++ b/data/software/am/amazonface-ethnobotanical-dashboard.json @@ -0,0 +1,15 @@ +{ + "slug": "amazonface-ethnobotanical-dashboard", + "name": "AmazonFACE Ethnobotanical Dashboard", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140456516" + ], + "release_date": "2026-01-01", + "developers": [ + "Felipe Mammoli Andrade" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/am/amber-smalltalk.json b/data/software/am/amber-smalltalk.json new file mode 100644 index 000000000000..fc6e3753f94f --- /dev/null +++ b/data/software/am/amber-smalltalk.json @@ -0,0 +1,11 @@ +{ + "slug": "amber-smalltalk", + "name": "Amber Smalltalk", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4741309" + ], + "programming_languages": [ + "Smalltalk" + ] +} diff --git a/data/software/am/amber.json b/data/software/am/amber.json new file mode 100644 index 000000000000..abfae8093aa9 --- /dev/null +++ b/data/software/am/amber.json @@ -0,0 +1,14 @@ +{ + "slug": "amber", + "name": "AMBER", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2458963" + ], + "developers": [ + "University of California, San Francisco" + ], + "programming_languages": [ + "Fortran" + ] +} diff --git a/data/software/am/ambiguous-restraints-for-iterative-assignment.json b/data/software/am/ambiguous-restraints-for-iterative-assignment.json new file mode 100644 index 000000000000..c3bd16a04e1e --- /dev/null +++ b/data/software/am/ambiguous-restraints-for-iterative-assignment.json @@ -0,0 +1,8 @@ +{ + "slug": "ambiguous-restraints-for-iterative-assignment", + "name": "Ambiguous Restraints for Iterative Assignment", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109499967" + ] +} diff --git a/data/software/am/ambulatory-glucose-profile.json b/data/software/am/ambulatory-glucose-profile.json new file mode 100644 index 000000000000..87dd43a606a4 --- /dev/null +++ b/data/software/am/ambulatory-glucose-profile.json @@ -0,0 +1,8 @@ +{ + "slug": "ambulatory-glucose-profile", + "name": "Ambulatory Glucose Profile", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22906324" + ] +} diff --git a/data/software/am/amcharge-version-2.json b/data/software/am/amcharge-version-2.json new file mode 100644 index 000000000000..0214fb2b6bf9 --- /dev/null +++ b/data/software/am/amcharge-version-2.json @@ -0,0 +1,12 @@ +{ + "slug": "amcharge-version-2", + "name": "Amcharge version 2", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124036946" + ], + "release_date": "1990-01-01", + "genres": [ + "download manager" + ] +} diff --git a/data/software/am/amcharge.json b/data/software/am/amcharge.json new file mode 100644 index 000000000000..3378511920f5 --- /dev/null +++ b/data/software/am/amcharge.json @@ -0,0 +1,12 @@ +{ + "slug": "amcharge", + "name": "Amcharge", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124030072" + ], + "release_date": "1988-01-01", + "genres": [ + "download manager" + ] +} diff --git a/data/software/am/amd-700-chipset-series.json b/data/software/am/amd-700-chipset-series.json new file mode 100644 index 000000000000..04676eddbe58 --- /dev/null +++ b/data/software/am/amd-700-chipset-series.json @@ -0,0 +1,11 @@ +{ + "slug": "amd-700-chipset-series", + "name": "AMD 700 chipset series", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q294730" + ], + "developers": [ + "AMD" + ] +} diff --git a/data/software/am/amd-app.json b/data/software/am/amd-app.json new file mode 100644 index 000000000000..98912e3105d8 --- /dev/null +++ b/data/software/am/amd-app.json @@ -0,0 +1,8 @@ +{ + "slug": "amd-app", + "name": "AMD APP", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22126927" + ] +} diff --git a/data/software/am/amd-codexl.json b/data/software/am/amd-codexl.json new file mode 100644 index 000000000000..498152a9e9e4 --- /dev/null +++ b/data/software/am/amd-codexl.json @@ -0,0 +1,17 @@ +{ + "slug": "amd-codexl", + "name": "AMD CodeXL", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16974786" + ], + "developers": [ + "AMD" + ], + "operating_systems": [ + "Microsoft Windows" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/am/amd-ryzen-master.json b/data/software/am/amd-ryzen-master.json new file mode 100644 index 000000000000..e163d5fb9594 --- /dev/null +++ b/data/software/am/amd-ryzen-master.json @@ -0,0 +1,14 @@ +{ + "slug": "amd-ryzen-master", + "name": "AMD Ryzen Master", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125657043" + ], + "developers": [ + "AMD" + ], + "licenses": [ + "end-user license agreement" + ] +} diff --git a/data/software/am/ame-accounting-software.json b/data/software/am/ame-accounting-software.json new file mode 100644 index 000000000000..cfc85880fa83 --- /dev/null +++ b/data/software/am/ame-accounting-software.json @@ -0,0 +1,15 @@ +{ + "slug": "ame-accounting-software", + "name": "AME Accounting Software", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4652606" + ], + "release_date": "2004-01-01", + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [ + "Visual Basic" + ] +} diff --git a/data/software/am/amelica-xml.json b/data/software/am/amelica-xml.json new file mode 100644 index 000000000000..b5cd19bdab65 --- /dev/null +++ b/data/software/am/amelica-xml.json @@ -0,0 +1,8 @@ +{ + "slug": "amelica-xml", + "name": "AmeliCA XML", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109478562" + ] +} diff --git a/data/software/am/ametek-crank.json b/data/software/am/ametek-crank.json new file mode 100644 index 000000000000..e45ace2b9363 --- /dev/null +++ b/data/software/am/ametek-crank.json @@ -0,0 +1,11 @@ +{ + "slug": "ametek-crank", + "name": "AMETEK Crank", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110702295" + ], + "programming_languages": [ + "Lua" + ] +} diff --git a/data/software/am/amiexpress.json b/data/software/am/amiexpress.json new file mode 100644 index 000000000000..a133d6f60ac2 --- /dev/null +++ b/data/software/am/amiexpress.json @@ -0,0 +1,8 @@ +{ + "slug": "amiexpress", + "name": "Amiexpress", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4746183" + ] +} diff --git a/data/software/am/amiga-basic.json b/data/software/am/amiga-basic.json new file mode 100644 index 000000000000..63ba6d67574c --- /dev/null +++ b/data/software/am/amiga-basic.json @@ -0,0 +1,15 @@ +{ + "slug": "amiga-basic", + "name": "Amiga Basic", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q426038" + ], + "developers": [ + "MetaComCo", + "Microsoft" + ], + "operating_systems": [ + "AmigaOS" + ] +} diff --git a/data/software/am/amiga-forever.json b/data/software/am/amiga-forever.json new file mode 100644 index 000000000000..80a0b5197448 --- /dev/null +++ b/data/software/am/amiga-forever.json @@ -0,0 +1,11 @@ +{ + "slug": "amiga-forever", + "name": "Amiga Forever", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4746194" + ], + "developers": [ + "Cloanto" + ] +} diff --git a/data/software/am/amigatex.json b/data/software/am/amigatex.json new file mode 100644 index 000000000000..4b67141b84fc --- /dev/null +++ b/data/software/am/amigatex.json @@ -0,0 +1,8 @@ +{ + "slug": "amigatex", + "name": "AmigaTeX", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q30636831" + ] +} diff --git a/data/software/am/amir.json b/data/software/am/amir.json new file mode 100644 index 000000000000..8b5b92dcf246 --- /dev/null +++ b/data/software/am/amir.json @@ -0,0 +1,8 @@ +{ + "slug": "amir", + "name": "AMIR", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q41795719" + ] +} diff --git a/data/software/am/amira.json b/data/software/am/amira.json new file mode 100644 index 000000000000..07c2986e20c1 --- /dev/null +++ b/data/software/am/amira.json @@ -0,0 +1,12 @@ +{ + "slug": "amira", + "name": "Amira", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4746668" + ], + "developers": [ + "Zuse Institute Berlin", + "Thermo Fisher Scientific Inc." + ] +} diff --git a/data/software/am/amiro-cms.json b/data/software/am/amiro-cms.json new file mode 100644 index 000000000000..aa1a0ba79c93 --- /dev/null +++ b/data/software/am/amiro-cms.json @@ -0,0 +1,11 @@ +{ + "slug": "amiro-cms", + "name": "Amiro.CMS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4033918" + ], + "programming_languages": [ + "PHP" + ] +} diff --git a/data/software/am/amitcp.json b/data/software/am/amitcp.json new file mode 100644 index 000000000000..a2b0aee46e52 --- /dev/null +++ b/data/software/am/amitcp.json @@ -0,0 +1,12 @@ +{ + "slug": "amitcp", + "name": "AmiTCP", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2652011" + ], + "release_date": "1993-01-01", + "licenses": [ + "GNU General Public License" + ] +} diff --git a/data/software/am/amithlon.json b/data/software/am/amithlon.json new file mode 100644 index 000000000000..3c8c53122c99 --- /dev/null +++ b/data/software/am/amithlon.json @@ -0,0 +1,8 @@ +{ + "slug": "amithlon", + "name": "Amithlon", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8197470" + ] +} diff --git a/data/software/am/amiwm.json b/data/software/am/amiwm.json new file mode 100644 index 000000000000..8067157a1ee8 --- /dev/null +++ b/data/software/am/amiwm.json @@ -0,0 +1,8 @@ +{ + "slug": "amiwm", + "name": "Amiwm", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4746990" + ] +} diff --git a/data/software/am/ammyy.json b/data/software/am/ammyy.json new file mode 100644 index 000000000000..40b7b4a7ac24 --- /dev/null +++ b/data/software/am/ammyy.json @@ -0,0 +1,8 @@ +{ + "slug": "ammyy", + "name": "Ammyy", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4033927" + ] +} diff --git a/data/software/am/amoebax.json b/data/software/am/amoebax.json new file mode 100644 index 000000000000..bda30a02f0e1 --- /dev/null +++ b/data/software/am/amoebax.json @@ -0,0 +1,8 @@ +{ + "slug": "amoebax", + "name": "Amoebax", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62854952" + ] +} diff --git a/data/software/am/amortization.json b/data/software/am/amortization.json new file mode 100644 index 000000000000..085777d2d29d --- /dev/null +++ b/data/software/am/amortization.json @@ -0,0 +1,8 @@ +{ + "slug": "amortization", + "name": "Amortization", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121631736" + ] +} diff --git a/data/software/am/amos-q112594634.json b/data/software/am/amos-q112594634.json new file mode 100644 index 000000000000..daf1bf3f5ebc --- /dev/null +++ b/data/software/am/amos-q112594634.json @@ -0,0 +1,8 @@ +{ + "slug": "amos-q112594634", + "name": "AMOS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112594634" + ] +} diff --git a/data/software/am/amos.json b/data/software/am/amos.json new file mode 100644 index 000000000000..6c83539be2f0 --- /dev/null +++ b/data/software/am/amos.json @@ -0,0 +1,18 @@ +{ + "slug": "amos", + "name": "AMOS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q38911792" + ], + "developers": [ + "Swiss AviationSoftware" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/am/amosaic.json b/data/software/am/amosaic.json new file mode 100644 index 000000000000..abf11e4a637f --- /dev/null +++ b/data/software/am/amosaic.json @@ -0,0 +1,15 @@ +{ + "slug": "amosaic", + "name": "AMosaic", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2430200" + ], + "release_date": "1993-12-25", + "developers": [ + "Michael Fischer" + ], + "operating_systems": [ + "AmigaOS" + ] +} diff --git a/data/software/am/amplitube.json b/data/software/am/amplitube.json new file mode 100644 index 000000000000..d61dc4b4b43b --- /dev/null +++ b/data/software/am/amplitube.json @@ -0,0 +1,11 @@ +{ + "slug": "amplitube", + "name": "AmpliTube", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4748479" + ], + "developers": [ + "IK Multimedia Production srl" + ] +} diff --git a/data/software/am/amr.json b/data/software/am/amr.json new file mode 100644 index 000000000000..8e549367da52 --- /dev/null +++ b/data/software/am/amr.json @@ -0,0 +1,8 @@ +{ + "slug": "amr", + "name": "AMR", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139073239" + ] +} diff --git a/data/software/am/amrfinderplus.json b/data/software/am/amrfinderplus.json new file mode 100644 index 000000000000..3821461ea5aa --- /dev/null +++ b/data/software/am/amrfinderplus.json @@ -0,0 +1,8 @@ +{ + "slug": "amrfinderplus", + "name": "AMRFinderPlus", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110235670" + ] +} diff --git a/data/software/am/ams-device-manager.json b/data/software/am/ams-device-manager.json new file mode 100644 index 000000000000..e6be7f5c91b6 --- /dev/null +++ b/data/software/am/ams-device-manager.json @@ -0,0 +1,11 @@ +{ + "slug": "ams-device-manager", + "name": "AMS Device Manager", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4652727" + ], + "developers": [ + "Emerson Electric" + ] +} diff --git a/data/software/am/amsterdam-density-functional.json b/data/software/am/amsterdam-density-functional.json new file mode 100644 index 000000000000..da6f8c156614 --- /dev/null +++ b/data/software/am/amsterdam-density-functional.json @@ -0,0 +1,8 @@ +{ + "slug": "amsterdam-density-functional", + "name": "Amsterdam Density Functional", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4748832" + ] +} diff --git a/data/software/am/amtk.json b/data/software/am/amtk.json new file mode 100644 index 000000000000..9010caf1e301 --- /dev/null +++ b/data/software/am/amtk.json @@ -0,0 +1,11 @@ +{ + "slug": "amtk", + "name": "Amtk", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q68089911" + ], + "licenses": [ + "GNU Lesser General Public License, version 2.1 or later" + ] +} diff --git a/data/software/an/an-introduction-to-hdf5.json b/data/software/an/an-introduction-to-hdf5.json new file mode 100644 index 000000000000..91daffe4b1b5 --- /dev/null +++ b/data/software/an/an-introduction-to-hdf5.json @@ -0,0 +1,12 @@ +{ + "slug": "an-introduction-to-hdf5", + "name": "An Introduction to HDF5", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127599311" + ], + "release_date": "2023-08-18", + "licenses": [ + "3-clause BSD License" + ] +} diff --git a/data/software/an/analyse-it-method-validation-edition.json b/data/software/an/analyse-it-method-validation-edition.json new file mode 100644 index 000000000000..1dac89897325 --- /dev/null +++ b/data/software/an/analyse-it-method-validation-edition.json @@ -0,0 +1,8 @@ +{ + "slug": "analyse-it-method-validation-edition", + "name": "Analyse-it Method Validation Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084386" + ] +} diff --git a/data/software/an/analyse-it-standard-edition.json b/data/software/an/analyse-it-standard-edition.json new file mode 100644 index 000000000000..0ff49abc05f9 --- /dev/null +++ b/data/software/an/analyse-it-standard-edition.json @@ -0,0 +1,8 @@ +{ + "slug": "analyse-it-standard-edition", + "name": "Analyse-it Standard Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084387" + ] +} diff --git a/data/software/an/analyse-it.json b/data/software/an/analyse-it.json new file mode 100644 index 000000000000..f09e41730557 --- /dev/null +++ b/data/software/an/analyse-it.json @@ -0,0 +1,8 @@ +{ + "slug": "analyse-it", + "name": "Analyse-it", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4751088" + ] +} diff --git a/data/software/an/analyst-s-notebook.json b/data/software/an/analyst-s-notebook.json new file mode 100644 index 000000000000..1e1e777c9aa3 --- /dev/null +++ b/data/software/an/analyst-s-notebook.json @@ -0,0 +1,11 @@ +{ + "slug": "analyst-s-notebook", + "name": "Analyst's Notebook", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4751111" + ], + "developers": [ + "IBM" + ] +} diff --git a/data/software/an/analyze.json b/data/software/an/analyze.json new file mode 100644 index 000000000000..4fa90c2c654e --- /dev/null +++ b/data/software/an/analyze.json @@ -0,0 +1,11 @@ +{ + "slug": "analyze", + "name": "Analyze", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2845288" + ], + "developers": [ + "Mayo Clinic" + ] +} diff --git a/data/software/an/andcards.json b/data/software/an/andcards.json new file mode 100644 index 000000000000..fcf85e66d985 --- /dev/null +++ b/data/software/an/andcards.json @@ -0,0 +1,15 @@ +{ + "slug": "andcards", + "name": "andcards", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q47161712" + ], + "release_date": "2018-01-01", + "operating_systems": [ + "iOS" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/an/andchat.json b/data/software/an/andchat.json new file mode 100644 index 000000000000..39a4e0a48ab3 --- /dev/null +++ b/data/software/an/andchat.json @@ -0,0 +1,11 @@ +{ + "slug": "andchat", + "name": "Andchat", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4034003" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/an/andengine.json b/data/software/an/andengine.json new file mode 100644 index 000000000000..c8c4aad2e1cb --- /dev/null +++ b/data/software/an/andengine.json @@ -0,0 +1,8 @@ +{ + "slug": "andengine", + "name": "AndEngine", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q20312927" + ] +} diff --git a/data/software/an/android-alpha.json b/data/software/an/android-alpha.json new file mode 100644 index 000000000000..25878f5c1414 --- /dev/null +++ b/data/software/an/android-alpha.json @@ -0,0 +1,8 @@ +{ + "slug": "android-alpha", + "name": "Android Alpha", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q89700698" + ] +} diff --git a/data/software/an/android-ndk.json b/data/software/an/android-ndk.json new file mode 100644 index 000000000000..7d98ed98c825 --- /dev/null +++ b/data/software/an/android-ndk.json @@ -0,0 +1,8 @@ +{ + "slug": "android-ndk", + "name": "Android NDK", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110745757" + ] +} diff --git a/data/software/an/android-pay.json b/data/software/an/android-pay.json new file mode 100644 index 000000000000..d2ac31ec9623 --- /dev/null +++ b/data/software/an/android-pay.json @@ -0,0 +1,15 @@ +{ + "slug": "android-pay", + "name": "Android Pay", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q42417874" + ], + "release_date": "2015-09-11", + "developers": [ + "Google" + ], + "operating_systems": [ + "Android KitKat" + ] +} diff --git a/data/software/an/android-privacy-guard.json b/data/software/an/android-privacy-guard.json new file mode 100644 index 000000000000..1b5282957244 --- /dev/null +++ b/data/software/an/android-privacy-guard.json @@ -0,0 +1,14 @@ +{ + "slug": "android-privacy-guard", + "name": "Android Privacy Guard", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4759460" + ], + "programming_languages": [ + "Java" + ], + "licenses": [ + "Apache License" + ] +} diff --git a/data/software/an/android-sdk.json b/data/software/an/android-sdk.json new file mode 100644 index 000000000000..aa26ed9a05b8 --- /dev/null +++ b/data/software/an/android-sdk.json @@ -0,0 +1,15 @@ +{ + "slug": "android-sdk", + "name": "Android SDK", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q29364625" + ], + "release_date": "2009-10-01", + "developers": [ + "Google" + ], + "programming_languages": [ + "Java" + ] +} diff --git a/data/software/an/androidify.json b/data/software/an/androidify.json new file mode 100644 index 000000000000..71bf95eed59a --- /dev/null +++ b/data/software/an/androidify.json @@ -0,0 +1,14 @@ +{ + "slug": "androidify", + "name": "Androidify", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108040158" + ], + "developers": [ + "Google" + ], + "publishers": [ + "Google" + ] +} diff --git a/data/software/an/andromda.json b/data/software/an/andromda.json new file mode 100644 index 000000000000..8fe9d616df29 --- /dev/null +++ b/data/software/an/andromda.json @@ -0,0 +1,8 @@ +{ + "slug": "andromda", + "name": "AndroMDA", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5675380" + ] +} diff --git a/data/software/an/anglonas.json b/data/software/an/anglonas.json new file mode 100644 index 000000000000..e337450e074d --- /dev/null +++ b/data/software/an/anglonas.json @@ -0,0 +1,8 @@ +{ + "slug": "anglonas", + "name": "Anglonas", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11184371" + ] +} diff --git a/data/software/an/animal-behaviour-pro.json b/data/software/an/animal-behaviour-pro.json new file mode 100644 index 000000000000..fc6eccc5a759 --- /dev/null +++ b/data/software/an/animal-behaviour-pro.json @@ -0,0 +1,11 @@ +{ + "slug": "animal-behaviour-pro", + "name": "Animal Behaviour Pro", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106998604" + ], + "operating_systems": [ + "iOS" + ] +} diff --git a/data/software/an/animal-crossing-new-horizons-island-transfer-tool.json b/data/software/an/animal-crossing-new-horizons-island-transfer-tool.json new file mode 100644 index 000000000000..73adb166913b --- /dev/null +++ b/data/software/an/animal-crossing-new-horizons-island-transfer-tool.json @@ -0,0 +1,15 @@ +{ + "slug": "animal-crossing-new-horizons-island-transfer-tool", + "name": "Animal Crossing: New Horizons Island Transfer Tool", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q114281608" + ], + "release_date": "2020-11-18", + "developers": [ + "Nintendo" + ], + "publishers": [ + "Nintendo" + ] +} diff --git a/data/software/an/animal-observer.json b/data/software/an/animal-observer.json new file mode 100644 index 000000000000..1ee02b195cf0 --- /dev/null +++ b/data/software/an/animal-observer.json @@ -0,0 +1,11 @@ +{ + "slug": "animal-observer", + "name": "Animal Observer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106998644" + ], + "operating_systems": [ + "iOS" + ] +} diff --git a/data/software/an/animation-master.json b/data/software/an/animation-master.json new file mode 100644 index 000000000000..896606690292 --- /dev/null +++ b/data/software/an/animation-master.json @@ -0,0 +1,8 @@ +{ + "slug": "animation-master", + "name": "Animation:Master", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2653036" + ] +} diff --git a/data/software/an/animation-shop.json b/data/software/an/animation-shop.json new file mode 100644 index 000000000000..736c592cce10 --- /dev/null +++ b/data/software/an/animation-shop.json @@ -0,0 +1,11 @@ +{ + "slug": "animation-shop", + "name": "Animation Shop", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q9154770" + ], + "developers": [ + "Jasc Software" + ] +} diff --git a/data/software/an/animatlab.json b/data/software/an/animatlab.json new file mode 100644 index 000000000000..34ee0f83e114 --- /dev/null +++ b/data/software/an/animatlab.json @@ -0,0 +1,8 @@ +{ + "slug": "animatlab", + "name": "AnimatLab", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17003956" + ] +} diff --git a/data/software/an/animl.json b/data/software/an/animl.json new file mode 100644 index 000000000000..54a52a4f79d7 --- /dev/null +++ b/data/software/an/animl.json @@ -0,0 +1,11 @@ +{ + "slug": "animl", + "name": "AniML", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124579100" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/an/animoji.json b/data/software/an/animoji.json new file mode 100644 index 000000000000..15ea9fa36d76 --- /dev/null +++ b/data/software/an/animoji.json @@ -0,0 +1,11 @@ +{ + "slug": "animoji", + "name": "Animoji", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q48937918" + ], + "developers": [ + "Apple Inc." + ] +} diff --git a/data/software/an/animoog.json b/data/software/an/animoog.json new file mode 100644 index 000000000000..4f96a4c6830e --- /dev/null +++ b/data/software/an/animoog.json @@ -0,0 +1,8 @@ +{ + "slug": "animoog", + "name": "Animoog", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4765196" + ] +} diff --git a/data/software/an/aniuta.json b/data/software/an/aniuta.json new file mode 100644 index 000000000000..62ff9a7e688a --- /dev/null +++ b/data/software/an/aniuta.json @@ -0,0 +1,11 @@ +{ + "slug": "aniuta", + "name": "ANiUTa", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q30929789" + ], + "operating_systems": [ + "iOS" + ] +} diff --git a/data/software/an/annotation-graph-toolkit.json b/data/software/an/annotation-graph-toolkit.json new file mode 100644 index 000000000000..e9a172772d5e --- /dev/null +++ b/data/software/an/annotation-graph-toolkit.json @@ -0,0 +1,15 @@ +{ + "slug": "annotation-graph-toolkit", + "name": "Annotation Graph Toolkit", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q104891173" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "licenses": [ + "Common Public License" + ] +} diff --git a/data/software/an/annotation-studio.json b/data/software/an/annotation-studio.json new file mode 100644 index 000000000000..d5d41de5cb24 --- /dev/null +++ b/data/software/an/annotation-studio.json @@ -0,0 +1,8 @@ +{ + "slug": "annotation-studio", + "name": "Annotation Studio", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084389" + ] +} diff --git a/data/software/an/annotationdbi.json b/data/software/an/annotationdbi.json new file mode 100644 index 000000000000..5cf0d276a6fd --- /dev/null +++ b/data/software/an/annotationdbi.json @@ -0,0 +1,8 @@ +{ + "slug": "annotationdbi", + "name": "AnnotationDbi", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123192307" + ] +} diff --git a/data/software/an/annotations-for-mac.json b/data/software/an/annotations-for-mac.json new file mode 100644 index 000000000000..dfdc7cb342d5 --- /dev/null +++ b/data/software/an/annotations-for-mac.json @@ -0,0 +1,14 @@ +{ + "slug": "annotations-for-mac", + "name": "Annotations for Mac", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105229735" + ], + "operating_systems": [ + "macOS" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/an/annotator-s-workbench.json b/data/software/an/annotator-s-workbench.json new file mode 100644 index 000000000000..9eae227f5bfa --- /dev/null +++ b/data/software/an/annotator-s-workbench.json @@ -0,0 +1,8 @@ +{ + "slug": "annotator-s-workbench", + "name": "Annotator's Workbench", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084390" + ] +} diff --git a/data/software/an/annotorious.json b/data/software/an/annotorious.json new file mode 100644 index 000000000000..1b7e33dcf6fe --- /dev/null +++ b/data/software/an/annotorious.json @@ -0,0 +1,11 @@ +{ + "slug": "annotorious", + "name": "Annotorious", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110088633" + ], + "licenses": [ + "3-clause BSD License" + ] +} diff --git a/data/software/an/annotum.json b/data/software/an/annotum.json new file mode 100644 index 000000000000..8cc7ce483920 --- /dev/null +++ b/data/software/an/annotum.json @@ -0,0 +1,8 @@ +{ + "slug": "annotum", + "name": "Annotum", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084391" + ] +} diff --git a/data/software/an/annozilla-annotea-on-mozilla.json b/data/software/an/annozilla-annotea-on-mozilla.json new file mode 100644 index 000000000000..15bb4e56512e --- /dev/null +++ b/data/software/an/annozilla-annotea-on-mozilla.json @@ -0,0 +1,8 @@ +{ + "slug": "annozilla-annotea-on-mozilla", + "name": "Annozilla (Annotea on Mozilla)", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084392" + ] +} diff --git a/data/software/an/anomaly-detection-at-multiple-scales.json b/data/software/an/anomaly-detection-at-multiple-scales.json new file mode 100644 index 000000000000..51537acc113a --- /dev/null +++ b/data/software/an/anomaly-detection-at-multiple-scales.json @@ -0,0 +1,8 @@ +{ + "slug": "anomaly-detection-at-multiple-scales", + "name": "Anomaly Detection at Multiple Scales", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4769945" + ] +} diff --git a/data/software/an/anonet-q4991384.json b/data/software/an/anonet-q4991384.json new file mode 100644 index 000000000000..0673fd7b4ea0 --- /dev/null +++ b/data/software/an/anonet-q4991384.json @@ -0,0 +1,8 @@ +{ + "slug": "anonet-q4991384", + "name": "AnoNet", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4991384" + ] +} diff --git a/data/software/an/anonet.json b/data/software/an/anonet.json new file mode 100644 index 000000000000..402d7e3a07f5 --- /dev/null +++ b/data/software/an/anonet.json @@ -0,0 +1,8 @@ +{ + "slug": "anonet", + "name": "anoNet", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1052285" + ] +} diff --git a/data/software/an/another-haskell-compiler.json b/data/software/an/another-haskell-compiler.json new file mode 100644 index 000000000000..1e92f46fa25b --- /dev/null +++ b/data/software/an/another-haskell-compiler.json @@ -0,0 +1,8 @@ +{ + "slug": "another-haskell-compiler", + "name": "Another Haskell Compiler", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4034085" + ] +} diff --git a/data/software/an/anqer-ai.json b/data/software/an/anqer-ai.json new file mode 100644 index 000000000000..eb66484119c9 --- /dev/null +++ b/data/software/an/anqer-ai.json @@ -0,0 +1,8 @@ +{ + "slug": "anqer-ai", + "name": "anqer.ai", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140322320" + ] +} diff --git a/data/software/an/ansa-pre-processor.json b/data/software/an/ansa-pre-processor.json new file mode 100644 index 000000000000..9c5fddffd1b9 --- /dev/null +++ b/data/software/an/ansa-pre-processor.json @@ -0,0 +1,8 @@ +{ + "slug": "ansa-pre-processor", + "name": "ANSA Pre-processor", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4653026" + ] +} diff --git a/data/software/an/answr.json b/data/software/an/answr.json new file mode 100644 index 000000000000..21f1fa6066c9 --- /dev/null +++ b/data/software/an/answr.json @@ -0,0 +1,14 @@ +{ + "slug": "answr", + "name": "AnSWR", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105229737" + ], + "operating_systems": [ + "Microsoft Windows" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/an/ansys.json b/data/software/an/ansys.json new file mode 100644 index 000000000000..f21479ca86c0 --- /dev/null +++ b/data/software/an/ansys.json @@ -0,0 +1,8 @@ +{ + "slug": "ansys", + "name": "ANSYS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q14930378" + ] +} diff --git a/data/software/an/ant-fortune.json b/data/software/an/ant-fortune.json new file mode 100644 index 000000000000..f2e4b2c4b564 --- /dev/null +++ b/data/software/an/ant-fortune.json @@ -0,0 +1,17 @@ +{ + "slug": "ant-fortune", + "name": "Ant Fortune", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60995570" + ], + "developers": [ + "Ant Group" + ], + "programming_languages": [ + "Java" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/an/antconc.json b/data/software/an/antconc.json new file mode 100644 index 000000000000..b89967a8ce72 --- /dev/null +++ b/data/software/an/antconc.json @@ -0,0 +1,12 @@ +{ + "slug": "antconc", + "name": "AntConc", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q104878038" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/software/an/antenna-house-formatter.json b/data/software/an/antenna-house-formatter.json new file mode 100644 index 000000000000..f74daa0178b9 --- /dev/null +++ b/data/software/an/antenna-house-formatter.json @@ -0,0 +1,8 @@ +{ + "slug": "antenna-house-formatter", + "name": "Antenna House Formatter", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11254814" + ] +} diff --git a/data/software/an/antescofo.json b/data/software/an/antescofo.json new file mode 100644 index 000000000000..73763929399f --- /dev/null +++ b/data/software/an/antescofo.json @@ -0,0 +1,8 @@ +{ + "slug": "antescofo", + "name": "Antescofo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4771439" + ] +} diff --git a/data/software/an/anthologize.json b/data/software/an/anthologize.json new file mode 100644 index 000000000000..bb98bd28c351 --- /dev/null +++ b/data/software/an/anthologize.json @@ -0,0 +1,8 @@ +{ + "slug": "anthologize", + "name": "Anthologize", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084394" + ] +} diff --git a/data/software/an/anthropac.json b/data/software/an/anthropac.json new file mode 100644 index 000000000000..0ede152adfec --- /dev/null +++ b/data/software/an/anthropac.json @@ -0,0 +1,8 @@ +{ + "slug": "anthropac", + "name": "ANTHROPAC", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084395" + ] +} diff --git a/data/software/an/anti-virus-comodo.json b/data/software/an/anti-virus-comodo.json new file mode 100644 index 000000000000..ac5c7342d83a --- /dev/null +++ b/data/software/an/anti-virus-comodo.json @@ -0,0 +1,16 @@ +{ + "slug": "anti-virus-comodo", + "name": "Anti Virus Comodo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4036457" + ], + "developers": [ + "Comodo Group" + ], + "operating_systems": [ + "Windows 8.1", + "macOS", + "Windows 7" + ] +} diff --git a/data/software/an/antics3d.json b/data/software/an/antics3d.json new file mode 100644 index 000000000000..361720e577c9 --- /dev/null +++ b/data/software/an/antics3d.json @@ -0,0 +1,11 @@ +{ + "slug": "antics3d", + "name": "Antics3D", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4774661" + ], + "developers": [ + "Antics Technologies" + ] +} diff --git a/data/software/an/antivirus-gold.json b/data/software/an/antivirus-gold.json new file mode 100644 index 000000000000..125907e13066 --- /dev/null +++ b/data/software/an/antivirus-gold.json @@ -0,0 +1,8 @@ +{ + "slug": "antivirus-gold", + "name": "AntiVirus Gold", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4774507" + ] +} diff --git a/data/software/an/antlr-studio.json b/data/software/an/antlr-studio.json new file mode 100644 index 000000000000..8c0c543fc85a --- /dev/null +++ b/data/software/an/antlr-studio.json @@ -0,0 +1,8 @@ +{ + "slug": "antlr-studio", + "name": "ANTLR Studio", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4653066" + ] +} diff --git a/data/software/an/anton.json b/data/software/an/anton.json new file mode 100644 index 000000000000..fb741d7a4409 --- /dev/null +++ b/data/software/an/anton.json @@ -0,0 +1,8 @@ +{ + "slug": "anton", + "name": "ANTON", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123485776" + ] +} diff --git a/data/software/an/antwordprofiler.json b/data/software/an/antwordprofiler.json new file mode 100644 index 000000000000..b798f3dfc2a0 --- /dev/null +++ b/data/software/an/antwordprofiler.json @@ -0,0 +1,8 @@ +{ + "slug": "antwordprofiler", + "name": "AntWordProfiler", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084396" + ] +} diff --git a/data/software/an/anuvaad.json b/data/software/an/anuvaad.json new file mode 100644 index 000000000000..d69b6afa2cbb --- /dev/null +++ b/data/software/an/anuvaad.json @@ -0,0 +1,8 @@ +{ + "slug": "anuvaad", + "name": "Anuvaad", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123190434" + ] +} diff --git a/data/software/an/anvevoice.json b/data/software/an/anvevoice.json new file mode 100644 index 000000000000..bff66aa317dc --- /dev/null +++ b/data/software/an/anvevoice.json @@ -0,0 +1,11 @@ +{ + "slug": "anvevoice", + "name": "AnveVoice", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139846317" + ], + "licenses": [ + "Creative Commons Attribution 4.0 International" + ] +} diff --git a/data/software/an/anvil-studio.json b/data/software/an/anvil-studio.json new file mode 100644 index 000000000000..52d1c8affe41 --- /dev/null +++ b/data/software/an/anvil-studio.json @@ -0,0 +1,12 @@ +{ + "slug": "anvil-studio", + "name": "Anvil Studio", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6047137" + ], + "release_date": "1998-10-10", + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/an/anvil.json b/data/software/an/anvil.json new file mode 100644 index 000000000000..42d845aa4698 --- /dev/null +++ b/data/software/an/anvil.json @@ -0,0 +1,18 @@ +{ + "slug": "anvil", + "name": "Anvil", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084397" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [ + "Java" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/an/any-do.json b/data/software/an/any-do.json new file mode 100644 index 000000000000..6621f6219cfb --- /dev/null +++ b/data/software/an/any-do.json @@ -0,0 +1,8 @@ +{ + "slug": "any-do", + "name": "Any.do", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16128534" + ] +} diff --git a/data/software/an/any-run.json b/data/software/an/any-run.json new file mode 100644 index 000000000000..baeff3521df7 --- /dev/null +++ b/data/software/an/any-run.json @@ -0,0 +1,8 @@ +{ + "slug": "any-run", + "name": "ANY.RUN", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131345223" + ] +} diff --git a/data/software/an/anydesk.json b/data/software/an/anydesk.json new file mode 100644 index 000000000000..cd024134f63e --- /dev/null +++ b/data/software/an/anydesk.json @@ -0,0 +1,16 @@ +{ + "slug": "anydesk", + "name": "AnyDesk", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q27926810" + ], + "operating_systems": [ + "tvOS", + "iOS", + "FreeBSD", + "macOS", + "Microsoft Windows", + "Raspberry Pi" + ] +} diff --git a/data/software/an/anydvd.json b/data/software/an/anydvd.json new file mode 100644 index 000000000000..345397b1579d --- /dev/null +++ b/data/software/an/anydvd.json @@ -0,0 +1,17 @@ +{ + "slug": "anydvd", + "name": "AnyDVD", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q613715" + ], + "developers": [ + "RedFox" + ], + "operating_systems": [ + "Microsoft Windows" + ], + "licenses": [ + "end-user license agreement" + ] +} diff --git a/data/software/an/anykode-marilou.json b/data/software/an/anykode-marilou.json new file mode 100644 index 000000000000..64d56bea2c46 --- /dev/null +++ b/data/software/an/anykode-marilou.json @@ -0,0 +1,8 @@ +{ + "slug": "anykode-marilou", + "name": "AnyKode Marilou", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4778125" + ] +} diff --git a/data/software/an/anylogic.json b/data/software/an/anylogic.json new file mode 100644 index 000000000000..e3c58bd04818 --- /dev/null +++ b/data/software/an/anylogic.json @@ -0,0 +1,14 @@ +{ + "slug": "anylogic", + "name": "AnyLogic", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q613749" + ], + "operating_systems": [ + "cross-platform" + ], + "programming_languages": [ + "Java" + ] +} diff --git a/data/software/an/anyplace-control.json b/data/software/an/anyplace-control.json new file mode 100644 index 000000000000..9d2f5f400a44 --- /dev/null +++ b/data/software/an/anyplace-control.json @@ -0,0 +1,8 @@ +{ + "slug": "anyplace-control", + "name": "Anyplace Control", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4034160" + ] +} diff --git a/data/software/an/anyrec-screen-recorder.json b/data/software/an/anyrec-screen-recorder.json new file mode 100644 index 000000000000..cd1f10c453c7 --- /dev/null +++ b/data/software/an/anyrec-screen-recorder.json @@ -0,0 +1,12 @@ +{ + "slug": "anyrec-screen-recorder", + "name": "AnyRec Screen Recorder", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116964176" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/software/an/anyremote.json b/data/software/an/anyremote.json new file mode 100644 index 000000000000..5f19ffbf4e10 --- /dev/null +++ b/data/software/an/anyremote.json @@ -0,0 +1,8 @@ +{ + "slug": "anyremote", + "name": "anyremote", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60916469" + ] +} diff --git a/data/software/ao/ao.json b/data/software/ao/ao.json new file mode 100644 index 000000000000..9713c5190cc5 --- /dev/null +++ b/data/software/ao/ao.json @@ -0,0 +1,11 @@ +{ + "slug": "ao", + "name": "ao", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q88666756" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/ao/aoki-lapis.json b/data/software/ao/aoki-lapis.json new file mode 100644 index 000000000000..be8f130bffe4 --- /dev/null +++ b/data/software/ao/aoki-lapis.json @@ -0,0 +1,8 @@ +{ + "slug": "aoki-lapis", + "name": "Aoki Lapis", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q24914505" + ] +} diff --git a/data/software/ao/aol-desktop.json b/data/software/ao/aol-desktop.json new file mode 100644 index 000000000000..a3d42ff62229 --- /dev/null +++ b/data/software/ao/aol-desktop.json @@ -0,0 +1,8 @@ +{ + "slug": "aol-desktop", + "name": "AOL Desktop", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4033041" + ] +} diff --git a/data/software/ao/aol-explorer.json b/data/software/ao/aol-explorer.json new file mode 100644 index 000000000000..43c541cfca67 --- /dev/null +++ b/data/software/ao/aol-explorer.json @@ -0,0 +1,14 @@ +{ + "slug": "aol-explorer", + "name": "AOL Explorer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2819312" + ], + "developers": [ + "AOL" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/ao/aol-openride.json b/data/software/ao/aol-openride.json new file mode 100644 index 000000000000..bb320ea84d46 --- /dev/null +++ b/data/software/ao/aol-openride.json @@ -0,0 +1,11 @@ +{ + "slug": "aol-openride", + "name": "AOL OpenRide", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4033043" + ], + "developers": [ + "AOL" + ] +} diff --git a/data/software/ao/aona-ai.json b/data/software/ao/aona-ai.json new file mode 100644 index 000000000000..5165a922ae29 --- /dev/null +++ b/data/software/ao/aona-ai.json @@ -0,0 +1,8 @@ +{ + "slug": "aona-ai", + "name": "Aona AI", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138856916" + ] +} diff --git a/data/software/ap/apache-ldap-api.json b/data/software/ap/apache-ldap-api.json new file mode 100644 index 000000000000..c94108c74e4b --- /dev/null +++ b/data/software/ap/apache-ldap-api.json @@ -0,0 +1,20 @@ +{ + "slug": "apache-ldap-api", + "name": "Apache LDAP API", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28407572" + ], + "developers": [ + "Apache Software Foundation" + ], + "operating_systems": [ + "cross-platform" + ], + "programming_languages": [ + "Java" + ], + "licenses": [ + "Apache License" + ] +} diff --git a/data/software/ap/apache-module.json b/data/software/ap/apache-module.json new file mode 100644 index 000000000000..50784bcc1496 --- /dev/null +++ b/data/software/ap/apache-module.json @@ -0,0 +1,8 @@ +{ + "slug": "apache-module", + "name": "Apache module", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q39690758" + ] +} diff --git a/data/software/ap/apache-sedona.json b/data/software/ap/apache-sedona.json new file mode 100644 index 000000000000..b8effeab9030 --- /dev/null +++ b/data/software/ap/apache-sedona.json @@ -0,0 +1,8 @@ +{ + "slug": "apache-sedona", + "name": "Apache Sedona", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137186909" + ] +} diff --git a/data/software/ap/apama.json b/data/software/ap/apama.json new file mode 100644 index 000000000000..0f0110c51571 --- /dev/null +++ b/data/software/ap/apama.json @@ -0,0 +1,8 @@ +{ + "slug": "apama", + "name": "Apama", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q48989930" + ] +} diff --git a/data/software/ap/apatar.json b/data/software/ap/apatar.json new file mode 100644 index 000000000000..2b3e75dd6027 --- /dev/null +++ b/data/software/ap/apatar.json @@ -0,0 +1,8 @@ +{ + "slug": "apatar", + "name": "Apatar", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4779214" + ] +} diff --git a/data/software/ap/apbs.json b/data/software/ap/apbs.json new file mode 100644 index 000000000000..14918c2ec032 --- /dev/null +++ b/data/software/ap/apbs.json @@ -0,0 +1,11 @@ +{ + "slug": "apbs", + "name": "APBS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q65072984" + ], + "programming_languages": [ + "Python" + ] +} diff --git a/data/software/ap/apertus.json b/data/software/ap/apertus.json new file mode 100644 index 000000000000..92dffd9f1da7 --- /dev/null +++ b/data/software/ap/apertus.json @@ -0,0 +1,17 @@ +{ + "slug": "apertus", + "name": "Apertus", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136087176" + ], + "developers": [ + "Swiss National Supercomputing Centre", + "Swiss AI", + "Swiss Federal Institute of Technology in Lausanne", + "ETH Zurich" + ], + "programming_languages": [ + "Python" + ] +} diff --git a/data/software/ap/apex-stoke-intel.json b/data/software/ap/apex-stoke-intel.json new file mode 100644 index 000000000000..2135fd37732b --- /dev/null +++ b/data/software/ap/apex-stoke-intel.json @@ -0,0 +1,11 @@ +{ + "slug": "apex-stoke-intel", + "name": "APEX Stoke Intel", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140050311" + ], + "programming_languages": [ + "TypeScript" + ] +} diff --git a/data/software/ap/aphelion.json b/data/software/ap/aphelion.json new file mode 100644 index 000000000000..650e99413bfe --- /dev/null +++ b/data/software/ap/aphelion.json @@ -0,0 +1,11 @@ +{ + "slug": "aphelion", + "name": "Aphelion", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22945480" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/ap/api-analytics.json b/data/software/ap/api-analytics.json new file mode 100644 index 000000000000..27f42e3d90a8 --- /dev/null +++ b/data/software/ap/api-analytics.json @@ -0,0 +1,11 @@ +{ + "slug": "api-analytics", + "name": "API Analytics", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60021416" + ], + "developers": [ + "Google" + ] +} diff --git a/data/software/ap/api-monetization.json b/data/software/ap/api-monetization.json new file mode 100644 index 000000000000..82c48edaaa13 --- /dev/null +++ b/data/software/ap/api-monetization.json @@ -0,0 +1,11 @@ +{ + "slug": "api-monetization", + "name": "API Monetization", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60021353" + ], + "developers": [ + "Google" + ] +} diff --git a/data/software/ap/apidog.json b/data/software/ap/apidog.json new file mode 100644 index 000000000000..2ed59a52f70a --- /dev/null +++ b/data/software/ap/apidog.json @@ -0,0 +1,8 @@ +{ + "slug": "apidog", + "name": "Apidog", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135456517" + ] +} diff --git a/data/software/ap/apigee-api-platform.json b/data/software/ap/apigee-api-platform.json new file mode 100644 index 000000000000..9f72254e6ccf --- /dev/null +++ b/data/software/ap/apigee-api-platform.json @@ -0,0 +1,8 @@ +{ + "slug": "apigee-api-platform", + "name": "Apigee API Platform", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q59947328" + ] +} diff --git a/data/software/ap/apigee-open-banking-apix.json b/data/software/ap/apigee-open-banking-apix.json new file mode 100644 index 000000000000..4fd302ab9a7d --- /dev/null +++ b/data/software/ap/apigee-open-banking-apix.json @@ -0,0 +1,8 @@ +{ + "slug": "apigee-open-banking-apix", + "name": "Apigee Open Banking APIx", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q59958909" + ] +} diff --git a/data/software/ap/apktool.json b/data/software/ap/apktool.json new file mode 100644 index 000000000000..818b8e234fbf --- /dev/null +++ b/data/software/ap/apktool.json @@ -0,0 +1,11 @@ +{ + "slug": "apktool", + "name": "apktool", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q97579605" + ], + "licenses": [ + "Apache Software License 2.0" + ] +} diff --git a/data/software/ap/aplac.json b/data/software/ap/aplac.json new file mode 100644 index 000000000000..8893475c88a6 --- /dev/null +++ b/data/software/ap/aplac.json @@ -0,0 +1,11 @@ +{ + "slug": "aplac", + "name": "APLAC", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6460547" + ], + "developers": [ + "Martti Valtonen" + ] +} diff --git a/data/software/ap/apollo-genome-annotation-editor.json b/data/software/ap/apollo-genome-annotation-editor.json new file mode 100644 index 000000000000..2fbe4ab3a1c7 --- /dev/null +++ b/data/software/ap/apollo-genome-annotation-editor.json @@ -0,0 +1,8 @@ +{ + "slug": "apollo-genome-annotation-editor", + "name": "Apollo Genome Annotation Editor", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113047967" + ] +} diff --git a/data/software/ap/apollo.json b/data/software/ap/apollo.json new file mode 100644 index 000000000000..9338c039cd39 --- /dev/null +++ b/data/software/ap/apollo.json @@ -0,0 +1,8 @@ +{ + "slug": "apollo", + "name": "Apollo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4780272" + ] +} diff --git a/data/software/ap/app-clips.json b/data/software/ap/app-clips.json new file mode 100644 index 000000000000..ff2b291209d0 --- /dev/null +++ b/data/software/ap/app-clips.json @@ -0,0 +1,8 @@ +{ + "slug": "app-clips", + "name": "App Clips", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125899094" + ] +} diff --git a/data/software/ap/app-game-kit.json b/data/software/ap/app-game-kit.json new file mode 100644 index 000000000000..213e81544fdd --- /dev/null +++ b/data/software/ap/app-game-kit.json @@ -0,0 +1,8 @@ +{ + "slug": "app-game-kit", + "name": "App Game Kit", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4780806" + ] +} diff --git a/data/software/ap/app-installer.json b/data/software/ap/app-installer.json new file mode 100644 index 000000000000..30a89983d794 --- /dev/null +++ b/data/software/ap/app-installer.json @@ -0,0 +1,11 @@ +{ + "slug": "app-installer", + "name": "App Installer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28956974" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/ap/app-maker.json b/data/software/ap/app-maker.json new file mode 100644 index 000000000000..0cbb7c5dd005 --- /dev/null +++ b/data/software/ap/app-maker.json @@ -0,0 +1,11 @@ +{ + "slug": "app-maker", + "name": "App Maker", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q55029528" + ], + "developers": [ + "Google" + ] +} diff --git a/data/software/ap/apparix.json b/data/software/ap/apparix.json new file mode 100644 index 000000000000..736f904d1a19 --- /dev/null +++ b/data/software/ap/apparix.json @@ -0,0 +1,14 @@ +{ + "slug": "apparix", + "name": "apparix", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q104978357" + ], + "operating_systems": [ + "Unix-like operating system" + ], + "licenses": [ + "GNU General Public License, version 3.0" + ] +} diff --git a/data/software/ap/appblock.json b/data/software/ap/appblock.json new file mode 100644 index 000000000000..a05b66d875f5 --- /dev/null +++ b/data/software/ap/appblock.json @@ -0,0 +1,8 @@ +{ + "slug": "appblock", + "name": "AppBlock", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137557495" + ] +} diff --git a/data/software/ap/appbox-pro.json b/data/software/ap/appbox-pro.json new file mode 100644 index 000000000000..7217cb2f9de5 --- /dev/null +++ b/data/software/ap/appbox-pro.json @@ -0,0 +1,12 @@ +{ + "slug": "appbox-pro", + "name": "Appbox Pro", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4780953" + ], + "release_date": "2009-09-18", + "operating_systems": [ + "iOS" + ] +} diff --git a/data/software/ap/appery-io.json b/data/software/ap/appery-io.json new file mode 100644 index 000000000000..cd49a699b936 --- /dev/null +++ b/data/software/ap/appery-io.json @@ -0,0 +1,8 @@ +{ + "slug": "appery-io", + "name": "Appery.io", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107354898" + ] +} diff --git a/data/software/ap/appium.json b/data/software/ap/appium.json new file mode 100644 index 000000000000..a8c6a5a2804c --- /dev/null +++ b/data/software/ap/appium.json @@ -0,0 +1,11 @@ +{ + "slug": "appium", + "name": "Appium", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q27208114" + ], + "licenses": [ + "Apache Software License 2.0" + ] +} diff --git a/data/software/ap/appjar.json b/data/software/ap/appjar.json new file mode 100644 index 000000000000..88c19cb6ef8c --- /dev/null +++ b/data/software/ap/appjar.json @@ -0,0 +1,15 @@ +{ + "slug": "appjar", + "name": "appJar", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q29364614" + ], + "programming_languages": [ + "Python" + ], + "licenses": [ + "Apache Software License 2.0", + "GNU General Public License, version 3.0" + ] +} diff --git a/data/software/ap/apple-advanced-typography.json b/data/software/ap/apple-advanced-typography.json new file mode 100644 index 000000000000..115d8a55553a --- /dev/null +++ b/data/software/ap/apple-advanced-typography.json @@ -0,0 +1,11 @@ +{ + "slug": "apple-advanced-typography", + "name": "Apple Advanced Typography", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q621218" + ], + "developers": [ + "Apple Inc." + ] +} diff --git a/data/software/ap/apple-business-basic.json b/data/software/ap/apple-business-basic.json new file mode 100644 index 000000000000..054f98e86d5f --- /dev/null +++ b/data/software/ap/apple-business-basic.json @@ -0,0 +1,8 @@ +{ + "slug": "apple-business-basic", + "name": "Apple Business BASIC", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131764636" + ] +} diff --git a/data/software/ap/apple-chooser.json b/data/software/ap/apple-chooser.json new file mode 100644 index 000000000000..d1515a7c03f6 --- /dev/null +++ b/data/software/ap/apple-chooser.json @@ -0,0 +1,11 @@ +{ + "slug": "apple-chooser", + "name": "Apple Chooser", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4781144" + ], + "developers": [ + "Apple Inc." + ] +} diff --git a/data/software/ap/apple-configurator.json b/data/software/ap/apple-configurator.json new file mode 100644 index 000000000000..78f75f25ed6f --- /dev/null +++ b/data/software/ap/apple-configurator.json @@ -0,0 +1,11 @@ +{ + "slug": "apple-configurator", + "name": "Apple Configurator", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q15733937" + ], + "developers": [ + "Apple Inc." + ] +} diff --git a/data/software/ap/apple-console.json b/data/software/ap/apple-console.json new file mode 100644 index 000000000000..bad6efdac3fc --- /dev/null +++ b/data/software/ap/apple-console.json @@ -0,0 +1,11 @@ +{ + "slug": "apple-console", + "name": "Apple Console", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q85857892" + ], + "developers": [ + "Apple Inc." + ] +} diff --git a/data/software/ap/apple-container.json b/data/software/ap/apple-container.json new file mode 100644 index 000000000000..9a835fd5f0cb --- /dev/null +++ b/data/software/ap/apple-container.json @@ -0,0 +1,8 @@ +{ + "slug": "apple-container", + "name": "Apple container", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139553022" + ] +} diff --git a/data/software/ap/apple-creator-studio.json b/data/software/ap/apple-creator-studio.json new file mode 100644 index 000000000000..deb8f58a2995 --- /dev/null +++ b/data/software/ap/apple-creator-studio.json @@ -0,0 +1,11 @@ +{ + "slug": "apple-creator-studio", + "name": "Apple Creator Studio", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137791387" + ], + "developers": [ + "Apple Inc." + ] +} diff --git a/data/software/ap/apple-devices.json b/data/software/ap/apple-devices.json new file mode 100644 index 000000000000..54d3fa137431 --- /dev/null +++ b/data/software/ap/apple-devices.json @@ -0,0 +1,8 @@ +{ + "slug": "apple-devices", + "name": "Apple Devices", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137798819" + ] +} diff --git a/data/software/ap/apple-games.json b/data/software/ap/apple-games.json new file mode 100644 index 000000000000..1745a341022c --- /dev/null +++ b/data/software/ap/apple-games.json @@ -0,0 +1,16 @@ +{ + "slug": "apple-games", + "name": "Apple Games", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136308155" + ], + "developers": [ + "Apple Inc." + ], + "operating_systems": [ + "iPadOS", + "iOS", + "macOS" + ] +} diff --git a/data/software/ap/apple-hd-sc-setup.json b/data/software/ap/apple-hd-sc-setup.json new file mode 100644 index 000000000000..f90d03656bcd --- /dev/null +++ b/data/software/ap/apple-hd-sc-setup.json @@ -0,0 +1,16 @@ +{ + "slug": "apple-hd-sc-setup", + "name": "Apple HD SC Setup", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4781169" + ], + "release_date": "1986-09-01", + "developers": [ + "Apple Inc." + ], + "operating_systems": [ + "A/UX", + "macOS" + ] +} diff --git a/data/software/ap/apple-help-viewer.json b/data/software/ap/apple-help-viewer.json new file mode 100644 index 000000000000..a1aecec72849 --- /dev/null +++ b/data/software/ap/apple-help-viewer.json @@ -0,0 +1,14 @@ +{ + "slug": "apple-help-viewer", + "name": "Apple Help Viewer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4014822" + ], + "developers": [ + "Apple Inc." + ], + "operating_systems": [ + "macOS" + ] +} diff --git a/data/software/ap/apple-homekit.json b/data/software/ap/apple-homekit.json new file mode 100644 index 000000000000..5ecbfe325527 --- /dev/null +++ b/data/software/ap/apple-homekit.json @@ -0,0 +1,22 @@ +{ + "slug": "apple-homekit", + "name": "Apple HomeKit", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q45319394" + ], + "release_date": "2014-01-01", + "developers": [ + "Apple Inc." + ], + "publishers": [ + "Apple Inc." + ], + "operating_systems": [ + "tvOS", + "watchOS", + "iPadOS", + "iOS", + "macOS" + ] +} diff --git a/data/software/ap/apple-invites.json b/data/software/ap/apple-invites.json new file mode 100644 index 000000000000..28ff8d68d005 --- /dev/null +++ b/data/software/ap/apple-invites.json @@ -0,0 +1,14 @@ +{ + "slug": "apple-invites", + "name": "Apple Invites", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q132529117" + ], + "developers": [ + "Apple Inc." + ], + "operating_systems": [ + "iOS" + ] +} diff --git a/data/software/ap/apple-menu.json b/data/software/ap/apple-menu.json new file mode 100644 index 000000000000..3d0d19e20380 --- /dev/null +++ b/data/software/ap/apple-menu.json @@ -0,0 +1,8 @@ +{ + "slug": "apple-menu", + "name": "Apple menu", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4781275" + ] +} diff --git a/data/software/ap/apple-open-directory.json b/data/software/ap/apple-open-directory.json new file mode 100644 index 000000000000..b56f6e7c7e5d --- /dev/null +++ b/data/software/ap/apple-open-directory.json @@ -0,0 +1,11 @@ +{ + "slug": "apple-open-directory", + "name": "Apple Open Directory", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q615095" + ], + "developers": [ + "Apple Inc." + ] +} diff --git a/data/software/ap/apple-pie-parser.json b/data/software/ap/apple-pie-parser.json new file mode 100644 index 000000000000..7abd3a13ff3b --- /dev/null +++ b/data/software/ap/apple-pie-parser.json @@ -0,0 +1,8 @@ +{ + "slug": "apple-pie-parser", + "name": "Apple Pie Parser", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084398" + ] +} diff --git a/data/software/ap/apple-qadministrator.json b/data/software/ap/apple-qadministrator.json new file mode 100644 index 000000000000..c54701fa2040 --- /dev/null +++ b/data/software/ap/apple-qadministrator.json @@ -0,0 +1,11 @@ +{ + "slug": "apple-qadministrator", + "name": "Apple Qadministrator", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4781219" + ], + "developers": [ + "Apple Inc." + ] +} diff --git a/data/software/ap/apple-qmaster.json b/data/software/ap/apple-qmaster.json new file mode 100644 index 000000000000..4970f60f468b --- /dev/null +++ b/data/software/ap/apple-qmaster.json @@ -0,0 +1,11 @@ +{ + "slug": "apple-qmaster", + "name": "Apple Qmaster", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4781220" + ], + "developers": [ + "Apple Inc." + ] +} diff --git a/data/software/ap/apple-remote-desktop.json b/data/software/ap/apple-remote-desktop.json new file mode 100644 index 000000000000..fe3481813ee3 --- /dev/null +++ b/data/software/ap/apple-remote-desktop.json @@ -0,0 +1,14 @@ +{ + "slug": "apple-remote-desktop", + "name": "Apple Remote Desktop", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q621338" + ], + "developers": [ + "Apple Inc." + ], + "operating_systems": [ + "macOS" + ] +} diff --git a/data/software/ap/apple-sandbox.json b/data/software/ap/apple-sandbox.json new file mode 100644 index 000000000000..301650440846 --- /dev/null +++ b/data/software/ap/apple-sandbox.json @@ -0,0 +1,14 @@ +{ + "slug": "apple-sandbox", + "name": "Apple Sandbox", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135434681" + ], + "developers": [ + "Apple Inc." + ], + "operating_systems": [ + "macOS" + ] +} diff --git a/data/software/ap/apple-software-restore.json b/data/software/ap/apple-software-restore.json new file mode 100644 index 000000000000..1d68ba89b9b4 --- /dev/null +++ b/data/software/ap/apple-software-restore.json @@ -0,0 +1,14 @@ +{ + "slug": "apple-software-restore", + "name": "Apple Software Restore", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4781231" + ], + "developers": [ + "Apple Inc." + ], + "operating_systems": [ + "macOS" + ] +} diff --git a/data/software/ap/apple-tv-channels.json b/data/software/ap/apple-tv-channels.json new file mode 100644 index 000000000000..72b611bd719d --- /dev/null +++ b/data/software/ap/apple-tv-channels.json @@ -0,0 +1,8 @@ +{ + "slug": "apple-tv-channels", + "name": "Apple TV Channels", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109016876" + ] +} diff --git a/data/software/ap/apple-tv-remote.json b/data/software/ap/apple-tv-remote.json new file mode 100644 index 000000000000..805ac363ef11 --- /dev/null +++ b/data/software/ap/apple-tv-remote.json @@ -0,0 +1,8 @@ +{ + "slug": "apple-tv-remote", + "name": "Apple TV Remote", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q29364679" + ] +} diff --git a/data/software/ap/apple-type-services-for-unicode-imaging.json b/data/software/ap/apple-type-services-for-unicode-imaging.json new file mode 100644 index 000000000000..d11930d9b4f0 --- /dev/null +++ b/data/software/ap/apple-type-services-for-unicode-imaging.json @@ -0,0 +1,11 @@ +{ + "slug": "apple-type-services-for-unicode-imaging", + "name": "Apple Type Services for Unicode Imaging", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4781247" + ], + "developers": [ + "Apple Inc." + ] +} diff --git a/data/software/ap/apple-watch.json b/data/software/ap/apple-watch.json new file mode 100644 index 000000000000..551a5ad19c7a --- /dev/null +++ b/data/software/ap/apple-watch.json @@ -0,0 +1,14 @@ +{ + "slug": "apple-watch", + "name": "Apple Watch", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q70820895" + ], + "developers": [ + "Apple Inc." + ], + "operating_systems": [ + "iOS" + ] +} diff --git a/data/software/ap/apple-zhushou.json b/data/software/ap/apple-zhushou.json new file mode 100644 index 000000000000..092d9e476a90 --- /dev/null +++ b/data/software/ap/apple-zhushou.json @@ -0,0 +1,14 @@ +{ + "slug": "apple-zhushou", + "name": "apple zhushou", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q24839807" + ], + "operating_systems": [ + "Windows 7" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/ap/appleshare-ip-migration.json b/data/software/ap/appleshare-ip-migration.json new file mode 100644 index 000000000000..a3463d746d3b --- /dev/null +++ b/data/software/ap/appleshare-ip-migration.json @@ -0,0 +1,11 @@ +{ + "slug": "appleshare-ip-migration", + "name": "AppleShare IP Migration", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3620911" + ], + "developers": [ + "Apple Inc." + ] +} diff --git a/data/software/ap/appletviewer.json b/data/software/ap/appletviewer.json new file mode 100644 index 000000000000..512bfef417e3 --- /dev/null +++ b/data/software/ap/appletviewer.json @@ -0,0 +1,8 @@ +{ + "slug": "appletviewer", + "name": "AppletViewer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q601487" + ] +} diff --git a/data/software/ap/application-mapper.json b/data/software/ap/application-mapper.json new file mode 100644 index 000000000000..4339d8e9bac8 --- /dev/null +++ b/data/software/ap/application-mapper.json @@ -0,0 +1,8 @@ +{ + "slug": "application-mapper", + "name": "Application Mapper", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4652523" + ] +} diff --git a/data/software/ap/application-release-automation.json b/data/software/ap/application-release-automation.json new file mode 100644 index 000000000000..a667e7bb2297 --- /dev/null +++ b/data/software/ap/application-release-automation.json @@ -0,0 +1,8 @@ +{ + "slug": "application-release-automation", + "name": "application release automation", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4781496" + ] +} diff --git a/data/software/ap/application-request-routing.json b/data/software/ap/application-request-routing.json new file mode 100644 index 000000000000..1fb3d6dadc50 --- /dev/null +++ b/data/software/ap/application-request-routing.json @@ -0,0 +1,11 @@ +{ + "slug": "application-request-routing", + "name": "Application Request Routing", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16987674" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/ap/applixware.json b/data/software/ap/applixware.json new file mode 100644 index 000000000000..de64ce3834b7 --- /dev/null +++ b/data/software/ap/applixware.json @@ -0,0 +1,18 @@ +{ + "slug": "applixware", + "name": "Applixware", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q621644" + ], + "developers": [ + "Applix" + ], + "operating_systems": [ + "Solaris", + "Microsoft Windows" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/ap/apprentice.json b/data/software/ap/apprentice.json new file mode 100644 index 000000000000..75a7b47aeb0e --- /dev/null +++ b/data/software/ap/apprentice.json @@ -0,0 +1,11 @@ +{ + "slug": "apprentice", + "name": "Apprentice", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4781697" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/ap/approvalmax.json b/data/software/ap/approvalmax.json new file mode 100644 index 000000000000..bd98d8c6e9cf --- /dev/null +++ b/data/software/ap/approvalmax.json @@ -0,0 +1,11 @@ +{ + "slug": "approvalmax", + "name": "ApprovalMax", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140129014" + ], + "developers": [ + "ApprovalMax" + ] +} diff --git a/data/software/ap/appsheet.json b/data/software/ap/appsheet.json new file mode 100644 index 000000000000..c3c856be4983 --- /dev/null +++ b/data/software/ap/appsheet.json @@ -0,0 +1,8 @@ +{ + "slug": "appsheet", + "name": "AppSheet", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q65121923" + ] +} diff --git a/data/software/ap/appzapper.json b/data/software/ap/appzapper.json new file mode 100644 index 000000000000..af2fac95c498 --- /dev/null +++ b/data/software/ap/appzapper.json @@ -0,0 +1,8 @@ +{ + "slug": "appzapper", + "name": "AppZapper", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4780807" + ] +} diff --git a/data/software/ap/april-apl.json b/data/software/ap/april-apl.json new file mode 100644 index 000000000000..5e29d168724d --- /dev/null +++ b/data/software/ap/april-apl.json @@ -0,0 +1,14 @@ +{ + "slug": "april-apl", + "name": "April APL", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106520170" + ], + "programming_languages": [ + "Common Lisp" + ], + "licenses": [ + "Apache Software License 2.0" + ] +} diff --git a/data/software/ap/apriltag.json b/data/software/ap/apriltag.json new file mode 100644 index 000000000000..c8b06c652020 --- /dev/null +++ b/data/software/ap/apriltag.json @@ -0,0 +1,11 @@ +{ + "slug": "apriltag", + "name": "AprilTag", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138573016" + ], + "licenses": [ + "2-clause BSD License" + ] +} diff --git a/data/software/ap/apsfilter.json b/data/software/ap/apsfilter.json new file mode 100644 index 000000000000..d6a7764969e8 --- /dev/null +++ b/data/software/ap/apsfilter.json @@ -0,0 +1,8 @@ +{ + "slug": "apsfilter", + "name": "apsfilter", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62851068" + ] +} diff --git a/data/software/ap/apt-cacher-ng.json b/data/software/ap/apt-cacher-ng.json new file mode 100644 index 000000000000..f1d524978f90 --- /dev/null +++ b/data/software/ap/apt-cacher-ng.json @@ -0,0 +1,8 @@ +{ + "slug": "apt-cacher-ng", + "name": "Apt-Cacher-NG", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62851063" + ] +} diff --git a/data/software/ap/apt-mirror.json b/data/software/ap/apt-mirror.json new file mode 100644 index 000000000000..e9400ce7c39b --- /dev/null +++ b/data/software/ap/apt-mirror.json @@ -0,0 +1,8 @@ +{ + "slug": "apt-mirror", + "name": "Apt-Mirror", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62845930" + ] +} diff --git a/data/software/ap/aptos.json b/data/software/ap/aptos.json new file mode 100644 index 000000000000..7e72543b4d1e --- /dev/null +++ b/data/software/ap/aptos.json @@ -0,0 +1,11 @@ +{ + "slug": "aptos", + "name": "APTOS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11189501" + ], + "developers": [ + "Ad-Sol Nissin Corporation" + ] +} diff --git a/data/software/ap/apus-group.json b/data/software/ap/apus-group.json new file mode 100644 index 000000000000..df49c7e10caf --- /dev/null +++ b/data/software/ap/apus-group.json @@ -0,0 +1,8 @@ +{ + "slug": "apus-group", + "name": "APUS Group", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q19839868" + ] +} diff --git a/data/software/ap/apus-launcher.json b/data/software/ap/apus-launcher.json new file mode 100644 index 000000000000..63fc14c5a491 --- /dev/null +++ b/data/software/ap/apus-launcher.json @@ -0,0 +1,8 @@ +{ + "slug": "apus-launcher", + "name": "APUS Launcher", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q21703797" + ] +} diff --git a/data/software/ap/apwal.json b/data/software/ap/apwal.json new file mode 100644 index 000000000000..f04c416b8aa5 --- /dev/null +++ b/data/software/ap/apwal.json @@ -0,0 +1,8 @@ +{ + "slug": "apwal", + "name": "Apwal", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62856477" + ] +} diff --git a/data/software/aq/aqemu.json b/data/software/aq/aqemu.json new file mode 100644 index 000000000000..a15de26cdde9 --- /dev/null +++ b/data/software/aq/aqemu.json @@ -0,0 +1,8 @@ +{ + "slug": "aqemu", + "name": "AQEMU", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62851077" + ] +} diff --git a/data/software/aq/aqion.json b/data/software/aq/aqion.json new file mode 100644 index 000000000000..bd8bdc1a5918 --- /dev/null +++ b/data/software/aq/aqion.json @@ -0,0 +1,14 @@ +{ + "slug": "aqion", + "name": "Aqion", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4782540" + ], + "operating_systems": [ + "Microsoft Windows" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/aq/aqtime.json b/data/software/aq/aqtime.json new file mode 100644 index 000000000000..fbd8edeb5fe9 --- /dev/null +++ b/data/software/aq/aqtime.json @@ -0,0 +1,11 @@ +{ + "slug": "aqtime", + "name": "AQtime", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4033051" + ], + "developers": [ + "SmartBear Software" + ] +} diff --git a/data/software/aq/aqua-data-studio.json b/data/software/aq/aqua-data-studio.json new file mode 100644 index 000000000000..8c3df877f908 --- /dev/null +++ b/data/software/aq/aqua-data-studio.json @@ -0,0 +1,11 @@ +{ + "slug": "aqua-data-studio", + "name": "Aqua Data Studio", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q622921" + ], + "programming_languages": [ + "Java" + ] +} diff --git a/data/software/aq/aqua-home.json b/data/software/aq/aqua-home.json new file mode 100644 index 000000000000..8f1135d74467 --- /dev/null +++ b/data/software/aq/aqua-home.json @@ -0,0 +1,11 @@ +{ + "slug": "aqua-home", + "name": "AQUA@home", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2499878" + ], + "developers": [ + "D-Wave Systems" + ] +} diff --git a/data/software/ar/ar-models.json b/data/software/ar/ar-models.json new file mode 100644 index 000000000000..42f4790b74ec --- /dev/null +++ b/data/software/ar/ar-models.json @@ -0,0 +1,8 @@ +{ + "slug": "ar-models", + "name": "AR Models", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106515723" + ] +} diff --git a/data/software/ar/ar-zone.json b/data/software/ar/ar-zone.json new file mode 100644 index 000000000000..7489d64632bb --- /dev/null +++ b/data/software/ar/ar-zone.json @@ -0,0 +1,8 @@ +{ + "slug": "ar-zone", + "name": "AR Zone", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123134490" + ] +} diff --git a/data/software/ar/ara-audio-random-access.json b/data/software/ar/ara-audio-random-access.json new file mode 100644 index 000000000000..3215387f5b74 --- /dev/null +++ b/data/software/ar/ara-audio-random-access.json @@ -0,0 +1,8 @@ +{ + "slug": "ara-audio-random-access", + "name": "ARA Audio Random Access", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q758850" + ] +} diff --git a/data/software/ar/arc.json b/data/software/ar/arc.json new file mode 100644 index 000000000000..b82346d7871b --- /dev/null +++ b/data/software/ar/arc.json @@ -0,0 +1,11 @@ +{ + "slug": "arc", + "name": "ARC", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q128210928" + ], + "developers": [ + "BigChillGhost" + ] +} diff --git a/data/software/ar/arcady.json b/data/software/ar/arcady.json new file mode 100644 index 000000000000..bacb9a9bd703 --- /dev/null +++ b/data/software/ar/arcady.json @@ -0,0 +1,11 @@ +{ + "slug": "arcady", + "name": "ARCADY", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4653589" + ], + "developers": [ + "Transport Research Laboratory" + ] +} diff --git a/data/software/ar/arccatalog.json b/data/software/ar/arccatalog.json new file mode 100644 index 000000000000..e2379c5200ed --- /dev/null +++ b/data/software/ar/arccatalog.json @@ -0,0 +1,11 @@ +{ + "slug": "arccatalog", + "name": "ArcCatalog", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121547902" + ], + "developers": [ + "Esri" + ] +} diff --git a/data/software/ar/arceditor.json b/data/software/ar/arceditor.json new file mode 100644 index 000000000000..2afbe037f79f --- /dev/null +++ b/data/software/ar/arceditor.json @@ -0,0 +1,16 @@ +{ + "slug": "arceditor", + "name": "ArcEditor", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4784989" + ], + "developers": [ + "Esri" + ], + "operating_systems": [ + "Tru64 UNIX", + "Solaris", + "Microsoft Windows" + ] +} diff --git a/data/software/ar/arcgis-engine.json b/data/software/ar/arcgis-engine.json new file mode 100644 index 000000000000..28e8698d7302 --- /dev/null +++ b/data/software/ar/arcgis-engine.json @@ -0,0 +1,11 @@ +{ + "slug": "arcgis-engine", + "name": "ArcGIS Engine", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4784988" + ], + "developers": [ + "Esri" + ] +} diff --git a/data/software/ar/arcgis-hub.json b/data/software/ar/arcgis-hub.json new file mode 100644 index 000000000000..8d39df6d04d1 --- /dev/null +++ b/data/software/ar/arcgis-hub.json @@ -0,0 +1,11 @@ +{ + "slug": "arcgis-hub", + "name": "ArcGIS Hub", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q104696214" + ], + "developers": [ + "Esri" + ] +} diff --git a/data/software/ar/arcgis-server.json b/data/software/ar/arcgis-server.json new file mode 100644 index 000000000000..d1dead983d26 --- /dev/null +++ b/data/software/ar/arcgis-server.json @@ -0,0 +1,11 @@ +{ + "slug": "arcgis-server", + "name": "ArcGIS Server", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4784987" + ], + "developers": [ + "Esri" + ] +} diff --git a/data/software/ar/archeblade.json b/data/software/ar/archeblade.json new file mode 100644 index 000000000000..a9bef38dd104 --- /dev/null +++ b/data/software/ar/archeblade.json @@ -0,0 +1,9 @@ +{ + "slug": "archeblade", + "name": "Archeblade", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q87490672" + ], + "release_date": "2014-04-25" +} diff --git a/data/software/ar/archi.json b/data/software/ar/archi.json new file mode 100644 index 000000000000..44c373df3f14 --- /dev/null +++ b/data/software/ar/archi.json @@ -0,0 +1,8 @@ +{ + "slug": "archi", + "name": "Archi", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q19595928" + ] +} diff --git a/data/software/ar/archibus.json b/data/software/ar/archibus.json new file mode 100644 index 000000000000..d931bc90b774 --- /dev/null +++ b/data/software/ar/archibus.json @@ -0,0 +1,8 @@ +{ + "slug": "archibus", + "name": "Archibus", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2860097" + ] +} diff --git a/data/software/ar/archimedes-geo3d.json b/data/software/ar/archimedes-geo3d.json new file mode 100644 index 000000000000..74657fb7beb1 --- /dev/null +++ b/data/software/ar/archimedes-geo3d.json @@ -0,0 +1,8 @@ +{ + "slug": "archimedes-geo3d", + "name": "Archimedes Geo3D", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4786889" + ] +} diff --git a/data/software/ar/archipelago.json b/data/software/ar/archipelago.json new file mode 100644 index 000000000000..d7151ff2b669 --- /dev/null +++ b/data/software/ar/archipelago.json @@ -0,0 +1,11 @@ +{ + "slug": "archipelago", + "name": "Archipelago", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138736938" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/ar/architect.json b/data/software/ar/architect.json new file mode 100644 index 000000000000..357d51748e4a --- /dev/null +++ b/data/software/ar/architect.json @@ -0,0 +1,8 @@ +{ + "slug": "architect", + "name": "Architect", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25345903" + ] +} diff --git a/data/software/ar/architecture-of-integrated-information-systems.json b/data/software/ar/architecture-of-integrated-information-systems.json new file mode 100644 index 000000000000..877d59d0ab35 --- /dev/null +++ b/data/software/ar/architecture-of-integrated-information-systems.json @@ -0,0 +1,18 @@ +{ + "slug": "architecture-of-integrated-information-systems", + "name": "Architecture of Integrated Information Systems", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q296674" + ], + "release_date": "1994-01-01", + "developers": [ + "August-Wilhelm Scheer" + ], + "operating_systems": [ + "Microsoft Windows" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/ar/architrave.json b/data/software/ar/architrave.json new file mode 100644 index 000000000000..10ee0a14f75c --- /dev/null +++ b/data/software/ar/architrave.json @@ -0,0 +1,8 @@ +{ + "slug": "architrave", + "name": "Architrave", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16532173" + ] +} diff --git a/data/software/ar/architxt.json b/data/software/ar/architxt.json new file mode 100644 index 000000000000..9fab455cd8dc --- /dev/null +++ b/data/software/ar/architxt.json @@ -0,0 +1,22 @@ +{ + "slug": "architxt", + "name": "ArchiTXT", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138654681" + ], + "release_date": "2026-02-11", + "developers": [ + "Mirian Halfeld Ferrari", + "Jacques Chabin" + ], + "operating_systems": [ + "cross-platform" + ], + "programming_languages": [ + "Python" + ], + "licenses": [ + "GNU General Public License, version 3.0" + ] +} diff --git a/data/software/ar/archive-in-a-box.json b/data/software/ar/archive-in-a-box.json new file mode 100644 index 000000000000..46b747725f71 --- /dev/null +++ b/data/software/ar/archive-in-a-box.json @@ -0,0 +1,8 @@ +{ + "slug": "archive-in-a-box", + "name": "Archive in a Box", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084399" + ] +} diff --git a/data/software/ar/archive-it.json b/data/software/ar/archive-it.json new file mode 100644 index 000000000000..fa0353006cdb --- /dev/null +++ b/data/software/ar/archive-it.json @@ -0,0 +1,11 @@ +{ + "slug": "archive-it", + "name": "Archive-It", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q44623728" + ], + "developers": [ + "Internet Archive" + ] +} diff --git a/data/software/ar/archivebox.json b/data/software/ar/archivebox.json new file mode 100644 index 000000000000..a50d39a583a4 --- /dev/null +++ b/data/software/ar/archivebox.json @@ -0,0 +1,14 @@ +{ + "slug": "archivebox", + "name": "ArchiveBox", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63097629" + ], + "programming_languages": [ + "Python" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/ar/archivemail.json b/data/software/ar/archivemail.json new file mode 100644 index 000000000000..4452e26abb17 --- /dev/null +++ b/data/software/ar/archivemail.json @@ -0,0 +1,8 @@ +{ + "slug": "archivemail", + "name": "archivemail", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62845941" + ] +} diff --git a/data/software/ar/archivematica.json b/data/software/ar/archivematica.json new file mode 100644 index 000000000000..870306b19e06 --- /dev/null +++ b/data/software/ar/archivematica.json @@ -0,0 +1,14 @@ +{ + "slug": "archivematica", + "name": "Archivematica", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q37610516" + ], + "developers": [ + "Artefactual" + ], + "operating_systems": [ + "cross-platform" + ] +} diff --git a/data/software/ar/archiveweb-page.json b/data/software/ar/archiveweb-page.json new file mode 100644 index 000000000000..2431012d9803 --- /dev/null +++ b/data/software/ar/archiveweb-page.json @@ -0,0 +1,11 @@ +{ + "slug": "archiveweb-page", + "name": "ArchiveWeb.page", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131672943" + ], + "developers": [ + "Webrecorder" + ] +} diff --git a/data/software/ar/archline-xp.json b/data/software/ar/archline-xp.json new file mode 100644 index 000000000000..c7d1d2c187cf --- /dev/null +++ b/data/software/ar/archline-xp.json @@ -0,0 +1,8 @@ +{ + "slug": "archline-xp", + "name": "ARCHline.XP", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q433266" + ] +} diff --git a/data/software/ar/arcims.json b/data/software/ar/arcims.json new file mode 100644 index 000000000000..f43baf47af5b --- /dev/null +++ b/data/software/ar/arcims.json @@ -0,0 +1,11 @@ +{ + "slug": "arcims", + "name": "ArcIMS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4784986" + ], + "developers": [ + "Esri" + ] +} diff --git a/data/software/ar/arcinfo.json b/data/software/ar/arcinfo.json new file mode 100644 index 000000000000..83854851e1d6 --- /dev/null +++ b/data/software/ar/arcinfo.json @@ -0,0 +1,16 @@ +{ + "slug": "arcinfo", + "name": "ArcInfo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2062851" + ], + "developers": [ + "Esri" + ], + "operating_systems": [ + "Solaris", + "Tru64 UNIX", + "Microsoft Windows" + ] +} diff --git a/data/software/ar/arcinsys.json b/data/software/ar/arcinsys.json new file mode 100644 index 000000000000..a41081eeac3c --- /dev/null +++ b/data/software/ar/arcinsys.json @@ -0,0 +1,8 @@ +{ + "slug": "arcinsys", + "name": "Arcinsys", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q57795270" + ] +} diff --git a/data/software/ar/arcmap.json b/data/software/ar/arcmap.json new file mode 100644 index 000000000000..35e84196afc0 --- /dev/null +++ b/data/software/ar/arcmap.json @@ -0,0 +1,11 @@ +{ + "slug": "arcmap", + "name": "ArcMap", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4784993" + ], + "developers": [ + "Esri" + ] +} diff --git a/data/software/ar/arcplan.json b/data/software/ar/arcplan.json new file mode 100644 index 000000000000..db7a9ab01593 --- /dev/null +++ b/data/software/ar/arcplan.json @@ -0,0 +1,8 @@ +{ + "slug": "arcplan", + "name": "Arcplan", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17521344" + ] +} diff --git a/data/software/ar/arcsoft-totalmedia-theatre.json b/data/software/ar/arcsoft-totalmedia-theatre.json new file mode 100644 index 000000000000..a94bf0a427b2 --- /dev/null +++ b/data/software/ar/arcsoft-totalmedia-theatre.json @@ -0,0 +1,8 @@ +{ + "slug": "arcsoft-totalmedia-theatre", + "name": "Arcsoft TotalMedia Theatre", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4034294" + ] +} diff --git a/data/software/ar/arctos.json b/data/software/ar/arctos.json new file mode 100644 index 000000000000..4669a009bdd0 --- /dev/null +++ b/data/software/ar/arctos.json @@ -0,0 +1,11 @@ +{ + "slug": "arctos", + "name": "Arctos", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q89590918" + ], + "licenses": [ + "Apache Software License 2.0" + ] +} diff --git a/data/software/ar/arcview.json b/data/software/ar/arcview.json new file mode 100644 index 000000000000..adfc8f02c756 --- /dev/null +++ b/data/software/ar/arcview.json @@ -0,0 +1,22 @@ +{ + "slug": "arcview", + "name": "ArcView", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q631011" + ], + "release_date": "1995-10-05", + "developers": [ + "Esri" + ], + "operating_systems": [ + "HP-UX", + "IBM AIX", + "Solaris", + "Tru64 UNIX", + "Microsoft Windows" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/ar/arduino-programming.json b/data/software/ar/arduino-programming.json new file mode 100644 index 000000000000..81e4387b8167 --- /dev/null +++ b/data/software/ar/arduino-programming.json @@ -0,0 +1,8 @@ +{ + "slug": "arduino-programming", + "name": "Arduino programming", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q21059171" + ] +} diff --git a/data/software/ar/arena.json b/data/software/ar/arena.json new file mode 100644 index 000000000000..608dabd809e5 --- /dev/null +++ b/data/software/ar/arena.json @@ -0,0 +1,8 @@ +{ + "slug": "arena", + "name": "Arena", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4788873" + ] +} diff --git a/data/software/ar/ares-cad.json b/data/software/ar/ares-cad.json new file mode 100644 index 000000000000..55d0e52a590b --- /dev/null +++ b/data/software/ar/ares-cad.json @@ -0,0 +1,15 @@ +{ + "slug": "ares-cad", + "name": "ARES CAD", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q100706127" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/ar/arexx.json b/data/software/ar/arexx.json new file mode 100644 index 000000000000..d59109e8454b --- /dev/null +++ b/data/software/ar/arexx.json @@ -0,0 +1,11 @@ +{ + "slug": "arexx", + "name": "ARexx", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q296959" + ], + "programming_languages": [ + "assembly language" + ] +} diff --git a/data/software/ar/arges-erp.json b/data/software/ar/arges-erp.json new file mode 100644 index 000000000000..4e18ae2a83f5 --- /dev/null +++ b/data/software/ar/arges-erp.json @@ -0,0 +1,24 @@ +{ + "slug": "arges-erp", + "name": "Arges ERP", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139802008" + ], + "release_date": "2021-01-01", + "developers": [ + "Arges d.o.o.", + "RedCode Web Design" + ], + "publishers": [ + "Arges d.o.o." + ], + "operating_systems": [ + "iOS", + "iPadOS", + "cross-platform" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/ar/argobots.json b/data/software/ar/argobots.json new file mode 100644 index 000000000000..b05fbd60356f --- /dev/null +++ b/data/software/ar/argobots.json @@ -0,0 +1,11 @@ +{ + "slug": "argobots", + "name": "Argobots", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115618754" + ], + "developers": [ + "Shintaro Iwasaki" + ] +} diff --git a/data/software/ar/argus.json b/data/software/ar/argus.json new file mode 100644 index 000000000000..d4c2950b1a75 --- /dev/null +++ b/data/software/ar/argus.json @@ -0,0 +1,11 @@ +{ + "slug": "argus", + "name": "Argus", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16833630" + ], + "licenses": [ + "Artistic License" + ] +} diff --git a/data/software/ar/argusmonitor.json b/data/software/ar/argusmonitor.json new file mode 100644 index 000000000000..7d2ce93d3472 --- /dev/null +++ b/data/software/ar/argusmonitor.json @@ -0,0 +1,9 @@ +{ + "slug": "argusmonitor", + "name": "ArgusMonitor", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4789774" + ], + "release_date": "2009-01-01" +} diff --git a/data/software/ar/argyll-cms.json b/data/software/ar/argyll-cms.json new file mode 100644 index 000000000000..8fd0b9d82de7 --- /dev/null +++ b/data/software/ar/argyll-cms.json @@ -0,0 +1,8 @@ +{ + "slug": "argyll-cms", + "name": "Argyll CMS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17620818" + ] +} diff --git a/data/software/ar/aria-systems.json b/data/software/ar/aria-systems.json new file mode 100644 index 000000000000..990281d4a7ec --- /dev/null +++ b/data/software/ar/aria-systems.json @@ -0,0 +1,8 @@ +{ + "slug": "aria-systems", + "name": "Aria Systems", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135742206" + ] +} diff --git a/data/software/ar/ariadne-portal.json b/data/software/ar/ariadne-portal.json new file mode 100644 index 000000000000..8ef76d1b7df3 --- /dev/null +++ b/data/software/ar/ariadne-portal.json @@ -0,0 +1,8 @@ +{ + "slug": "ariadne-portal", + "name": "ARIADNE Portal", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084401" + ] +} diff --git a/data/software/ar/arianis.json b/data/software/ar/arianis.json new file mode 100644 index 000000000000..83ef0d8169ca --- /dev/null +++ b/data/software/ar/arianis.json @@ -0,0 +1,8 @@ +{ + "slug": "arianis", + "name": "Arianis", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139499481" + ] +} diff --git a/data/software/ar/aries-leads.json b/data/software/ar/aries-leads.json new file mode 100644 index 000000000000..8232b77ef607 --- /dev/null +++ b/data/software/ar/aries-leads.json @@ -0,0 +1,12 @@ +{ + "slug": "aries-leads", + "name": "Aries Leads", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138722367" + ], + "operating_systems": [ + "cross-platform", + "web browser" + ] +} diff --git a/data/software/ar/aris-mashzone.json b/data/software/ar/aris-mashzone.json new file mode 100644 index 000000000000..369088ee3d7a --- /dev/null +++ b/data/software/ar/aris-mashzone.json @@ -0,0 +1,21 @@ +{ + "slug": "aris-mashzone", + "name": "ARIS MashZone", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q296677" + ], + "release_date": "2010-01-18", + "developers": [ + "Software AG", + "IDS Scheer" + ], + "programming_languages": [ + "Java", + "Adobe Flash" + ], + "licenses": [ + "proprietary license", + "freeware" + ] +} diff --git a/data/software/ar/aristotle-metadata-registry.json b/data/software/ar/aristotle-metadata-registry.json new file mode 100644 index 000000000000..c2dc57d2c15b --- /dev/null +++ b/data/software/ar/aristotle-metadata-registry.json @@ -0,0 +1,11 @@ +{ + "slug": "aristotle-metadata-registry", + "name": "Aristotle Metadata Registry", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q24589713" + ], + "programming_languages": [ + "Python" + ] +} diff --git a/data/software/ar/ark-compiler.json b/data/software/ar/ark-compiler.json new file mode 100644 index 000000000000..e8f6002c1f6c --- /dev/null +++ b/data/software/ar/ark-compiler.json @@ -0,0 +1,8 @@ +{ + "slug": "ark-compiler", + "name": "Ark Compiler", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126720999" + ] +} diff --git a/data/software/ar/arkaos.json b/data/software/ar/arkaos.json new file mode 100644 index 000000000000..8a81acd52658 --- /dev/null +++ b/data/software/ar/arkaos.json @@ -0,0 +1,8 @@ +{ + "slug": "arkaos", + "name": "ArKaos", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4783026" + ] +} diff --git a/data/software/ar/arkivum.json b/data/software/ar/arkivum.json new file mode 100644 index 000000000000..4c7cc4a894dc --- /dev/null +++ b/data/software/ar/arkivum.json @@ -0,0 +1,11 @@ +{ + "slug": "arkivum", + "name": "Arkivum", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123002516" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/ar/arlequin.json b/data/software/ar/arlequin.json new file mode 100644 index 000000000000..4a9f03c60b48 --- /dev/null +++ b/data/software/ar/arlequin.json @@ -0,0 +1,11 @@ +{ + "slug": "arlequin", + "name": "Arlequin", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4792191" + ], + "developers": [ + "SIB Swiss Institute of Bioinformatics" + ] +} diff --git a/data/software/ar/arm.json b/data/software/ar/arm.json new file mode 100644 index 000000000000..4a1e4adae865 --- /dev/null +++ b/data/software/ar/arm.json @@ -0,0 +1,8 @@ +{ + "slug": "arm", + "name": "arm", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4792457" + ] +} diff --git a/data/software/ar/armed-bear-common-lisp.json b/data/software/ar/armed-bear-common-lisp.json new file mode 100644 index 000000000000..77d831673207 --- /dev/null +++ b/data/software/ar/armed-bear-common-lisp.json @@ -0,0 +1,15 @@ +{ + "slug": "armed-bear-common-lisp", + "name": "Armed Bear Common Lisp", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106606463" + ], + "programming_languages": [ + "Java", + "Common Lisp" + ], + "licenses": [ + "GNU General Public License, version 2.0" + ] +} diff --git a/data/software/ar/arnis-mc.json b/data/software/ar/arnis-mc.json new file mode 100644 index 000000000000..44ce5827cb80 --- /dev/null +++ b/data/software/ar/arnis-mc.json @@ -0,0 +1,11 @@ +{ + "slug": "arnis-mc", + "name": "Arnis MC", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138749655" + ], + "licenses": [ + "Apache Software License 2.0" + ] +} diff --git a/data/software/ar/aroundme.json b/data/software/ar/aroundme.json new file mode 100644 index 000000000000..9259a66c4dd3 --- /dev/null +++ b/data/software/ar/aroundme.json @@ -0,0 +1,12 @@ +{ + "slug": "aroundme", + "name": "AroundMe", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4795608" + ], + "release_date": "2008-09-01", + "licenses": [ + "freeware" + ] +} diff --git a/data/software/ar/arp-scan.json b/data/software/ar/arp-scan.json new file mode 100644 index 000000000000..e879a32473c3 --- /dev/null +++ b/data/software/ar/arp-scan.json @@ -0,0 +1,8 @@ +{ + "slug": "arp-scan", + "name": "arp-scan", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62851085" + ] +} diff --git a/data/software/ar/arras.json b/data/software/ar/arras.json new file mode 100644 index 000000000000..f5b1cdb67167 --- /dev/null +++ b/data/software/ar/arras.json @@ -0,0 +1,8 @@ +{ + "slug": "arras", + "name": "ARRAS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084404" + ] +} diff --git a/data/software/ar/arraytrack.json b/data/software/ar/arraytrack.json new file mode 100644 index 000000000000..55a06413c64d --- /dev/null +++ b/data/software/ar/arraytrack.json @@ -0,0 +1,11 @@ +{ + "slug": "arraytrack", + "name": "ArrayTrack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4795870" + ], + "developers": [ + "United States Food and Drug Administration" + ] +} diff --git a/data/software/ar/arrivecan.json b/data/software/ar/arrivecan.json new file mode 100644 index 000000000000..26dccff3f6dd --- /dev/null +++ b/data/software/ar/arrivecan.json @@ -0,0 +1,11 @@ +{ + "slug": "arrivecan", + "name": "ArriveCAN", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124727457" + ], + "developers": [ + "Canada Border Services Agency" + ] +} diff --git a/data/software/ar/arsdigita-community-system.json b/data/software/ar/arsdigita-community-system.json new file mode 100644 index 000000000000..6c065adea7d1 --- /dev/null +++ b/data/software/ar/arsdigita-community-system.json @@ -0,0 +1,14 @@ +{ + "slug": "arsdigita-community-system", + "name": "ArsDigita Community System", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1718320" + ], + "developers": [ + "ArsDigita" + ], + "licenses": [ + "GNU General Public License" + ] +} diff --git a/data/software/ar/arsloid.json b/data/software/ar/arsloid.json new file mode 100644 index 000000000000..3a3e7cfd1e4d --- /dev/null +++ b/data/software/ar/arsloid.json @@ -0,0 +1,12 @@ +{ + "slug": "arsloid", + "name": "ARSloid", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q24908110" + ], + "release_date": "2015-09-23", + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/ar/arswp.json b/data/software/ar/arswp.json new file mode 100644 index 000000000000..ada6315be6ba --- /dev/null +++ b/data/software/ar/arswp.json @@ -0,0 +1,8 @@ +{ + "slug": "arswp", + "name": "ARSwp", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10853335" + ] +} diff --git a/data/software/ar/art-authority.json b/data/software/ar/art-authority.json new file mode 100644 index 000000000000..b827da984bff --- /dev/null +++ b/data/software/ar/art-authority.json @@ -0,0 +1,8 @@ +{ + "slug": "art-authority", + "name": "Art Authority", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4796683" + ] +} diff --git a/data/software/ar/art.json b/data/software/ar/art.json new file mode 100644 index 000000000000..1c53b6d11d9f --- /dev/null +++ b/data/software/ar/art.json @@ -0,0 +1,17 @@ +{ + "slug": "art", + "name": "ART", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112079993" + ], + "operating_systems": [ + "cross-platform" + ], + "programming_languages": [ + "Java" + ], + "licenses": [ + "GNU General Public License" + ] +} diff --git a/data/software/ar/artas.json b/data/software/ar/artas.json new file mode 100644 index 000000000000..11ada6c69ee4 --- /dev/null +++ b/data/software/ar/artas.json @@ -0,0 +1,8 @@ +{ + "slug": "artas", + "name": "ARTAS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4653933" + ] +} diff --git a/data/software/ar/artcam.json b/data/software/ar/artcam.json new file mode 100644 index 000000000000..e9a25a47a840 --- /dev/null +++ b/data/software/ar/artcam.json @@ -0,0 +1,8 @@ +{ + "slug": "artcam", + "name": "ArtCAM", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4034408" + ] +} diff --git a/data/software/ar/arti.json b/data/software/ar/arti.json new file mode 100644 index 000000000000..71e01ea17754 --- /dev/null +++ b/data/software/ar/arti.json @@ -0,0 +1,18 @@ +{ + "slug": "arti", + "name": "Arti", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117037659" + ], + "developers": [ + "The Tor Project, Inc" + ], + "operating_systems": [ + "cross-platform" + ], + "licenses": [ + "Apache Software License 2.0", + "MIT License" + ] +} diff --git a/data/software/ar/artifex-press.json b/data/software/ar/artifex-press.json new file mode 100644 index 000000000000..9f7e4bceaa8e --- /dev/null +++ b/data/software/ar/artifex-press.json @@ -0,0 +1,8 @@ +{ + "slug": "artifex-press", + "name": "Artifex Press", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084405" + ] +} diff --git a/data/software/ar/artificial-intuition.json b/data/software/ar/artificial-intuition.json new file mode 100644 index 000000000000..90cef03b4b9f --- /dev/null +++ b/data/software/ar/artificial-intuition.json @@ -0,0 +1,8 @@ +{ + "slug": "artificial-intuition", + "name": "artificial intuition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4801082" + ] +} diff --git a/data/software/ar/artioscad.json b/data/software/ar/artioscad.json new file mode 100644 index 000000000000..79c539ef88dd --- /dev/null +++ b/data/software/ar/artioscad.json @@ -0,0 +1,11 @@ +{ + "slug": "artioscad", + "name": "ArtiosCAD", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4801187" + ], + "developers": [ + "Esko" + ] +} diff --git a/data/software/ar/artipic.json b/data/software/ar/artipic.json new file mode 100644 index 000000000000..28ab9d9b566a --- /dev/null +++ b/data/software/ar/artipic.json @@ -0,0 +1,12 @@ +{ + "slug": "artipic", + "name": "Artipic", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q24067032" + ], + "operating_systems": [ + "Windows 8", + "Windows 7" + ] +} diff --git a/data/software/ar/artisteer.json b/data/software/ar/artisteer.json new file mode 100644 index 000000000000..671116dbb82b --- /dev/null +++ b/data/software/ar/artisteer.json @@ -0,0 +1,11 @@ +{ + "slug": "artisteer", + "name": "Artisteer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4801249" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/ar/artisto.json b/data/software/ar/artisto.json new file mode 100644 index 000000000000..7f60a9ec4335 --- /dev/null +++ b/data/software/ar/artisto.json @@ -0,0 +1,18 @@ +{ + "slug": "artisto", + "name": "Artisto", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q26689913" + ], + "release_date": "2016-07-29", + "developers": [ + "Mail.ru" + ], + "operating_systems": [ + "iOS" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/ar/artlantis.json b/data/software/ar/artlantis.json new file mode 100644 index 000000000000..fc09271c584a --- /dev/null +++ b/data/software/ar/artlantis.json @@ -0,0 +1,8 @@ +{ + "slug": "artlantis", + "name": "Artlantis", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5707051" + ] +} diff --git a/data/software/ar/artlas-geomap.json b/data/software/ar/artlas-geomap.json new file mode 100644 index 000000000000..650e9201bdb8 --- /dev/null +++ b/data/software/ar/artlas-geomap.json @@ -0,0 +1,8 @@ +{ + "slug": "artlas-geomap", + "name": "Artlas / Geomap", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087687" + ] +} diff --git a/data/software/ar/artmoney.json b/data/software/ar/artmoney.json new file mode 100644 index 000000000000..fdd32330978c --- /dev/null +++ b/data/software/ar/artmoney.json @@ -0,0 +1,16 @@ +{ + "slug": "artmoney", + "name": "ArtMoney", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4034409" + ], + "release_date": "1996-01-01", + "operating_systems": [ + "DOS", + "Microsoft Windows" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/ar/artool-project.json b/data/software/ar/artool-project.json new file mode 100644 index 000000000000..e8920bc1b816 --- /dev/null +++ b/data/software/ar/artool-project.json @@ -0,0 +1,12 @@ +{ + "slug": "artool-project", + "name": "ARTool-project", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q44080565" + ], + "programming_languages": [ + "PHP", + "Symfony" + ] +} diff --git a/data/software/ar/artoolkit.json b/data/software/ar/artoolkit.json new file mode 100644 index 000000000000..43edfa948c88 --- /dev/null +++ b/data/software/ar/artoolkit.json @@ -0,0 +1,8 @@ +{ + "slug": "artoolkit", + "name": "ARToolKit", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3269011" + ] +} diff --git a/data/software/ar/aruspix.json b/data/software/ar/aruspix.json new file mode 100644 index 000000000000..20ca147b3652 --- /dev/null +++ b/data/software/ar/aruspix.json @@ -0,0 +1,8 @@ +{ + "slug": "aruspix", + "name": "Aruspix", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084407" + ] +} diff --git a/data/software/as/as-400-automated-message-paging.json b/data/software/as/as-400-automated-message-paging.json new file mode 100644 index 000000000000..f6cf3a5c26a2 --- /dev/null +++ b/data/software/as/as-400-automated-message-paging.json @@ -0,0 +1,8 @@ +{ + "slug": "as-400-automated-message-paging", + "name": "AS/400 Automated Message Paging", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121631722" + ] +} diff --git a/data/software/as/asagi.json b/data/software/as/asagi.json new file mode 100644 index 000000000000..7b7391c61915 --- /dev/null +++ b/data/software/as/asagi.json @@ -0,0 +1,11 @@ +{ + "slug": "asagi", + "name": "Asagi", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q77420922" + ], + "programming_languages": [ + "Java" + ] +} diff --git a/data/software/as/ascertain.json b/data/software/as/ascertain.json new file mode 100644 index 000000000000..578a8e9b806e --- /dev/null +++ b/data/software/as/ascertain.json @@ -0,0 +1,9 @@ +{ + "slug": "ascertain", + "name": "ASCERTain", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121631733" + ], + "release_date": "1993-03-01" +} diff --git a/data/software/as/ascet.json b/data/software/as/ascet.json new file mode 100644 index 000000000000..010829f66887 --- /dev/null +++ b/data/software/as/ascet.json @@ -0,0 +1,8 @@ +{ + "slug": "ascet", + "name": "ASCET", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q297262" + ] +} diff --git a/data/software/as/ascii-express.json b/data/software/as/ascii-express.json new file mode 100644 index 000000000000..6cf4c1336056 --- /dev/null +++ b/data/software/as/ascii-express.json @@ -0,0 +1,8 @@ +{ + "slug": "ascii-express", + "name": "ASCII Express", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4654112" + ] +} diff --git a/data/software/as/asciinema.json b/data/software/as/asciinema.json new file mode 100644 index 000000000000..e38cfd97747c --- /dev/null +++ b/data/software/as/asciinema.json @@ -0,0 +1,14 @@ +{ + "slug": "asciinema", + "name": "asciinema", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124365996" + ], + "operating_systems": [ + "Unix-like operating system" + ], + "licenses": [ + "GNU General Public License, version 3.0" + ] +} diff --git a/data/software/as/asf-sdf-meta-environment.json b/data/software/as/asf-sdf-meta-environment.json new file mode 100644 index 000000000000..2c2a2e12ee95 --- /dev/null +++ b/data/software/as/asf-sdf-meta-environment.json @@ -0,0 +1,8 @@ +{ + "slug": "asf-sdf-meta-environment", + "name": "ASF+SDF Meta Environment", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4654216" + ] +} diff --git a/data/software/as/ash.json b/data/software/as/ash.json new file mode 100644 index 000000000000..7aa5c4246264 --- /dev/null +++ b/data/software/as/ash.json @@ -0,0 +1,11 @@ +{ + "slug": "ash", + "name": "ASH", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q128210931" + ], + "developers": [ + "BigChillGhost" + ] +} diff --git a/data/software/as/ashampoo-core-tuner.json b/data/software/as/ashampoo-core-tuner.json new file mode 100644 index 000000000000..acad9e655a83 --- /dev/null +++ b/data/software/as/ashampoo-core-tuner.json @@ -0,0 +1,11 @@ +{ + "slug": "ashampoo-core-tuner", + "name": "Ashampoo Core Tuner", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4034445" + ], + "developers": [ + "Ashampoo" + ] +} diff --git a/data/software/as/ashampoo-snap.json b/data/software/as/ashampoo-snap.json new file mode 100644 index 000000000000..620b8d715c19 --- /dev/null +++ b/data/software/as/ashampoo-snap.json @@ -0,0 +1,17 @@ +{ + "slug": "ashampoo-snap", + "name": "Ashampoo Snap", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q77227930" + ], + "developers": [ + "Ashampoo" + ], + "operating_systems": [ + "Windows 11" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/as/asic.json b/data/software/as/asic.json new file mode 100644 index 000000000000..d1f2ed31c948 --- /dev/null +++ b/data/software/as/asic.json @@ -0,0 +1,19 @@ +{ + "slug": "asic", + "name": "ASIC", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q297730" + ], + "release_date": "1993-01-01", + "operating_systems": [ + "DOS" + ], + "programming_languages": [ + "Microsoft Macro Assembler", + "Borland Turbo C" + ], + "licenses": [ + "shareware" + ] +} diff --git a/data/software/as/asio-eduerp.json b/data/software/as/asio-eduerp.json new file mode 100644 index 000000000000..8d521dea8fba --- /dev/null +++ b/data/software/as/asio-eduerp.json @@ -0,0 +1,8 @@ +{ + "slug": "asio-eduerp", + "name": "Asio EduERP", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4807018" + ] +} diff --git a/data/software/as/ask-bignews.json b/data/software/as/ask-bignews.json new file mode 100644 index 000000000000..bbc812f30ea4 --- /dev/null +++ b/data/software/as/ask-bignews.json @@ -0,0 +1,8 @@ +{ + "slug": "ask-bignews", + "name": "Ask BigNews", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4807061" + ] +} diff --git a/data/software/as/asmail.json b/data/software/as/asmail.json new file mode 100644 index 000000000000..b25e2bde6f93 --- /dev/null +++ b/data/software/as/asmail.json @@ -0,0 +1,8 @@ +{ + "slug": "asmail", + "name": "asmail", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62851097" + ] +} diff --git a/data/software/as/asmon.json b/data/software/as/asmon.json new file mode 100644 index 000000000000..a6c87bb6f374 --- /dev/null +++ b/data/software/as/asmon.json @@ -0,0 +1,8 @@ +{ + "slug": "asmon", + "name": "asmon", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62851170" + ] +} diff --git a/data/software/as/asp-net-dynamic-data.json b/data/software/as/asp-net-dynamic-data.json new file mode 100644 index 000000000000..b93b8f8b33f6 --- /dev/null +++ b/data/software/as/asp-net-dynamic-data.json @@ -0,0 +1,8 @@ +{ + "slug": "asp-net-dynamic-data", + "name": "ASP.NET Dynamic Data", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q580684" + ] +} diff --git a/data/software/as/asp-net-web-forms.json b/data/software/as/asp-net-web-forms.json new file mode 100644 index 000000000000..9abae0960c5a --- /dev/null +++ b/data/software/as/asp-net-web-forms.json @@ -0,0 +1,8 @@ +{ + "slug": "asp-net-web-forms", + "name": "ASP.NET Web Forms", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q55602973" + ] +} diff --git a/data/software/as/asp-net-web-site-administration-tool.json b/data/software/as/asp-net-web-site-administration-tool.json new file mode 100644 index 000000000000..1ce264845385 --- /dev/null +++ b/data/software/as/asp-net-web-site-administration-tool.json @@ -0,0 +1,8 @@ +{ + "slug": "asp-net-web-site-administration-tool", + "name": "ASP.NET Web Site Administration Tool", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4654312" + ] +} diff --git a/data/software/as/aspell-da.json b/data/software/as/aspell-da.json new file mode 100644 index 000000000000..e8a49710695a --- /dev/null +++ b/data/software/as/aspell-da.json @@ -0,0 +1,8 @@ +{ + "slug": "aspell-da", + "name": "aspell-da", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62846001" + ] +} diff --git a/data/software/as/aspell-la.json b/data/software/as/aspell-la.json new file mode 100644 index 000000000000..1f771aee2974 --- /dev/null +++ b/data/software/as/aspell-la.json @@ -0,0 +1,8 @@ +{ + "slug": "aspell-la", + "name": "aspell-la", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106101991" + ] +} diff --git a/data/software/as/aspera.json b/data/software/as/aspera.json new file mode 100644 index 000000000000..fda05f1793e8 --- /dev/null +++ b/data/software/as/aspera.json @@ -0,0 +1,8 @@ +{ + "slug": "aspera", + "name": "Aspera", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q55593547" + ] +} diff --git a/data/software/as/asprise-ocr.json b/data/software/as/asprise-ocr.json new file mode 100644 index 000000000000..1f3637c5f511 --- /dev/null +++ b/data/software/as/asprise-ocr.json @@ -0,0 +1,11 @@ +{ + "slug": "asprise-ocr", + "name": "Asprise OCR", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q20707736" + ], + "programming_languages": [ + "Java" + ] +} diff --git a/data/software/as/asreml.json b/data/software/as/asreml.json new file mode 100644 index 000000000000..13f9af3d115b --- /dev/null +++ b/data/software/as/asreml.json @@ -0,0 +1,11 @@ +{ + "slug": "asreml", + "name": "ASReml", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4654344" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/as/asset-bank.json b/data/software/as/asset-bank.json new file mode 100644 index 000000000000..54d0f89bf2e1 --- /dev/null +++ b/data/software/as/asset-bank.json @@ -0,0 +1,8 @@ +{ + "slug": "asset-bank", + "name": "Asset Bank", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084408" + ] +} diff --git a/data/software/as/astah.json b/data/software/as/astah.json new file mode 100644 index 000000000000..648c9a9d9695 --- /dev/null +++ b/data/software/as/astah.json @@ -0,0 +1,8 @@ +{ + "slug": "astah", + "name": "Astah*", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3187939" + ] +} diff --git a/data/software/as/astar-network.json b/data/software/as/astar-network.json new file mode 100644 index 000000000000..00ec0d765d8a --- /dev/null +++ b/data/software/as/astar-network.json @@ -0,0 +1,8 @@ +{ + "slug": "astar-network", + "name": "Astar Network", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q114229342" + ] +} diff --git a/data/software/as/asterisk-gateway-interface.json b/data/software/as/asterisk-gateway-interface.json new file mode 100644 index 000000000000..f4076f0d8fb5 --- /dev/null +++ b/data/software/as/asterisk-gateway-interface.json @@ -0,0 +1,8 @@ +{ + "slug": "asterisk-gateway-interface", + "name": "Asterisk Gateway Interface", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4032906" + ] +} diff --git a/data/software/as/astos.json b/data/software/as/astos.json new file mode 100644 index 000000000000..69fcc10afbc3 --- /dev/null +++ b/data/software/as/astos.json @@ -0,0 +1,11 @@ +{ + "slug": "astos", + "name": "ASTOS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3601270" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/as/astpp.json b/data/software/as/astpp.json new file mode 100644 index 000000000000..834d3df1d781 --- /dev/null +++ b/data/software/as/astpp.json @@ -0,0 +1,8 @@ +{ + "slug": "astpp", + "name": "ASTPP", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140321943" + ] +} diff --git a/data/software/as/astr-e.json b/data/software/as/astr-e.json new file mode 100644 index 000000000000..7b8efb476d94 --- /dev/null +++ b/data/software/as/astr-e.json @@ -0,0 +1,14 @@ +{ + "slug": "astr-e", + "name": "Astrée", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4811752" + ], + "developers": [ + "Antoine Miné", + "Jérôme Feret", + "David Monniaux", + "AbsInt" + ] +} diff --git a/data/software/as/astra.json b/data/software/as/astra.json new file mode 100644 index 000000000000..74a11b31e96c --- /dev/null +++ b/data/software/as/astra.json @@ -0,0 +1,8 @@ +{ + "slug": "astra", + "name": "Astra", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q39069650" + ] +} diff --git a/data/software/as/astra32.json b/data/software/as/astra32.json new file mode 100644 index 000000000000..f3a7e642b46b --- /dev/null +++ b/data/software/as/astra32.json @@ -0,0 +1,8 @@ +{ + "slug": "astra32", + "name": "ASTRA32", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4033087" + ] +} diff --git a/data/software/as/astroml.json b/data/software/as/astroml.json new file mode 100644 index 000000000000..1581541a8234 --- /dev/null +++ b/data/software/as/astroml.json @@ -0,0 +1,8 @@ +{ + "slug": "astroml", + "name": "astroml", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065113" + ] +} diff --git a/data/software/as/asus-gpu-tweak.json b/data/software/as/asus-gpu-tweak.json new file mode 100644 index 000000000000..cb0a3e5fbd99 --- /dev/null +++ b/data/software/as/asus-gpu-tweak.json @@ -0,0 +1,8 @@ +{ + "slug": "asus-gpu-tweak", + "name": "ASUS GPU Tweak", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131465713" + ] +} diff --git a/data/software/as/asus-webstorage.json b/data/software/as/asus-webstorage.json new file mode 100644 index 000000000000..fbb674a0c997 --- /dev/null +++ b/data/software/as/asus-webstorage.json @@ -0,0 +1,8 @@ +{ + "slug": "asus-webstorage", + "name": "Asus WebStorage", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q967308" + ] +} diff --git a/data/software/as/asus-zenui.json b/data/software/as/asus-zenui.json new file mode 100644 index 000000000000..f94348f11ef5 --- /dev/null +++ b/data/software/as/asus-zenui.json @@ -0,0 +1,11 @@ +{ + "slug": "asus-zenui", + "name": "ASUS ZenUI", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18209661" + ], + "developers": [ + "ASUS" + ] +} diff --git a/data/software/as/asv-online-toolbox.json b/data/software/as/asv-online-toolbox.json new file mode 100644 index 000000000000..f1a34ba63009 --- /dev/null +++ b/data/software/as/asv-online-toolbox.json @@ -0,0 +1,8 @@ +{ + "slug": "asv-online-toolbox", + "name": "ASV Online Toolbox", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084409" + ] +} diff --git a/data/software/at/at-calc.json b/data/software/at/at-calc.json new file mode 100644 index 000000000000..c938ec4390b7 --- /dev/null +++ b/data/software/at/at-calc.json @@ -0,0 +1,8 @@ +{ + "slug": "at-calc", + "name": "AT Calc", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3825315" + ] +} diff --git a/data/software/at/at-t-natural-voices.json b/data/software/at/at-t-natural-voices.json new file mode 100644 index 000000000000..eaae762db691 --- /dev/null +++ b/data/software/at/at-t-natural-voices.json @@ -0,0 +1,12 @@ +{ + "slug": "at-t-natural-voices", + "name": "AT&T Natural Voices", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125535717" + ], + "release_date": "1996-01-01", + "developers": [ + "AT&T Laboratories" + ] +} diff --git a/data/software/at/atari-assembler-editor.json b/data/software/at/atari-assembler-editor.json new file mode 100644 index 000000000000..03b02db5dbe8 --- /dev/null +++ b/data/software/at/atari-assembler-editor.json @@ -0,0 +1,11 @@ +{ + "slug": "atari-assembler-editor", + "name": "Atari Assembler Editor", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4812828" + ], + "developers": [ + "Shepardson Microsystems" + ] +} diff --git a/data/software/at/atari-calculator.json b/data/software/at/atari-calculator.json new file mode 100644 index 000000000000..accb74587114 --- /dev/null +++ b/data/software/at/atari-calculator.json @@ -0,0 +1,8 @@ +{ + "slug": "atari-calculator", + "name": "Atari Calculator", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130295978" + ] +} diff --git a/data/software/at/atari-message-information-system.json b/data/software/at/atari-message-information-system.json new file mode 100644 index 000000000000..2a956b4be161 --- /dev/null +++ b/data/software/at/atari-message-information-system.json @@ -0,0 +1,12 @@ +{ + "slug": "atari-message-information-system", + "name": "Atari Message Information System", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4812836" + ], + "release_date": "1983-01-01", + "programming_languages": [ + "Atari BASIC" + ] +} diff --git a/data/software/at/atari-st-basic.json b/data/software/at/atari-st-basic.json new file mode 100644 index 000000000000..dc03769ec2ad --- /dev/null +++ b/data/software/at/atari-st-basic.json @@ -0,0 +1,11 @@ +{ + "slug": "atari-st-basic", + "name": "Atari ST BASIC", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3627876" + ], + "developers": [ + "MetaComCo" + ] +} diff --git a/data/software/at/atari-word-processor.json b/data/software/at/atari-word-processor.json new file mode 100644 index 000000000000..7175286dcf13 --- /dev/null +++ b/data/software/at/atari-word-processor.json @@ -0,0 +1,11 @@ +{ + "slug": "atari-word-processor", + "name": "Atari Word Processor", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115821244" + ], + "developers": [ + "Atari, Inc." + ] +} diff --git a/data/software/at/atarilab.json b/data/software/at/atarilab.json new file mode 100644 index 000000000000..fb8ffbb4ac0d --- /dev/null +++ b/data/software/at/atarilab.json @@ -0,0 +1,12 @@ +{ + "slug": "atarilab", + "name": "AtariLab", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22906510" + ], + "release_date": "1983-01-01", + "developers": [ + "Dickinson College" + ] +} diff --git a/data/software/at/atatool.json b/data/software/at/atatool.json new file mode 100644 index 000000000000..9e0d3962b2fd --- /dev/null +++ b/data/software/at/atatool.json @@ -0,0 +1,11 @@ +{ + "slug": "atatool", + "name": "ATATool", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28956976" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/at/atera-networks.json b/data/software/at/atera-networks.json new file mode 100644 index 000000000000..4e2ba416e0d0 --- /dev/null +++ b/data/software/at/atera-networks.json @@ -0,0 +1,8 @@ +{ + "slug": "atera-networks", + "name": "Atera Networks", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126934859" + ] +} diff --git a/data/software/at/atheme-services.json b/data/software/at/atheme-services.json new file mode 100644 index 000000000000..b29107960195 --- /dev/null +++ b/data/software/at/atheme-services.json @@ -0,0 +1,11 @@ +{ + "slug": "atheme-services", + "name": "atheme-services", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28941620" + ], + "operating_systems": [ + "Unix-like operating system" + ] +} diff --git a/data/software/at/athenaplus.json b/data/software/at/athenaplus.json new file mode 100644 index 000000000000..709e86ff5373 --- /dev/null +++ b/data/software/at/athenaplus.json @@ -0,0 +1,8 @@ +{ + "slug": "athenaplus", + "name": "AthenaPlus", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16112557" + ] +} diff --git a/data/software/at/ati-avivo.json b/data/software/at/ati-avivo.json new file mode 100644 index 000000000000..dd04f38ebd01 --- /dev/null +++ b/data/software/at/ati-avivo.json @@ -0,0 +1,12 @@ +{ + "slug": "ati-avivo", + "name": "ATI Avivo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q298929" + ], + "release_date": "2005-01-01", + "developers": [ + "ATI Technologies" + ] +} diff --git a/data/software/at/ati-tray-tools.json b/data/software/at/ati-tray-tools.json new file mode 100644 index 000000000000..14f8c992e196 --- /dev/null +++ b/data/software/at/ati-tray-tools.json @@ -0,0 +1,14 @@ +{ + "slug": "ati-tray-tools", + "name": "ATI Tray Tools", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q375904" + ], + "developers": [ + "Ray Adams" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/at/atila.json b/data/software/at/atila.json new file mode 100644 index 000000000000..59eaeac0b158 --- /dev/null +++ b/data/software/at/atila.json @@ -0,0 +1,8 @@ +{ + "slug": "atila", + "name": "ATILA", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25110671" + ] +} diff --git a/data/software/at/atis-cloud.json b/data/software/at/atis-cloud.json new file mode 100644 index 000000000000..1ecb9d7e1cb7 --- /dev/null +++ b/data/software/at/atis-cloud.json @@ -0,0 +1,14 @@ +{ + "slug": "atis-cloud", + "name": "ATIS.cloud", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139960149" + ], + "developers": [ + "CYDIS" + ], + "publishers": [ + "CYDIS" + ] +} diff --git a/data/software/at/atlas-ti.json b/data/software/at/atlas-ti.json new file mode 100644 index 000000000000..c81f18d57b90 --- /dev/null +++ b/data/software/at/atlas-ti.json @@ -0,0 +1,18 @@ +{ + "slug": "atlas-ti", + "name": "ATLAS.ti", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3628244" + ], + "developers": [ + "Thomas Muhr" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/at/atlas-vpn.json b/data/software/at/atlas-vpn.json new file mode 100644 index 000000000000..53feee2be379 --- /dev/null +++ b/data/software/at/atlas-vpn.json @@ -0,0 +1,13 @@ +{ + "slug": "atlas-vpn", + "name": "Atlas VPN", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123144281" + ], + "operating_systems": [ + "iOS", + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/software/at/atlasify.json b/data/software/at/atlasify.json new file mode 100644 index 000000000000..0722b3a49729 --- /dev/null +++ b/data/software/at/atlasify.json @@ -0,0 +1,9 @@ +{ + "slug": "atlasify", + "name": "Atlasify", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q20764175" + ], + "release_date": "2015-01-01" +} diff --git a/data/software/at/atlensa.json b/data/software/at/atlensa.json new file mode 100644 index 000000000000..6a5fcd17c9df --- /dev/null +++ b/data/software/at/atlensa.json @@ -0,0 +1,11 @@ +{ + "slug": "atlensa", + "name": "Atlensa", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140030286" + ], + "operating_systems": [ + "web application" + ] +} diff --git a/data/software/at/atom.json b/data/software/at/atom.json new file mode 100644 index 000000000000..3a3a91e1cf4f --- /dev/null +++ b/data/software/at/atom.json @@ -0,0 +1,8 @@ +{ + "slug": "atom", + "name": "Atom", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084410" + ] +} diff --git a/data/software/at/atomicparsley.json b/data/software/at/atomicparsley.json new file mode 100644 index 000000000000..6833d47fac80 --- /dev/null +++ b/data/software/at/atomicparsley.json @@ -0,0 +1,8 @@ +{ + "slug": "atomicparsley", + "name": "AtomicParsley", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q133042610" + ] +} diff --git a/data/software/at/atomistix-virtual-nanolab.json b/data/software/at/atomistix-virtual-nanolab.json new file mode 100644 index 000000000000..96c8ce4cff02 --- /dev/null +++ b/data/software/at/atomistix-virtual-nanolab.json @@ -0,0 +1,8 @@ +{ + "slug": "atomistix-virtual-nanolab", + "name": "Atomistix Virtual NanoLab", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4817372" + ] +} diff --git a/data/software/at/atos.json b/data/software/at/atos.json new file mode 100644 index 000000000000..4c061cefcfcc --- /dev/null +++ b/data/software/at/atos.json @@ -0,0 +1,8 @@ +{ + "slug": "atos", + "name": "ATOS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1306665" + ] +} diff --git a/data/software/at/atrain.json b/data/software/at/atrain.json new file mode 100644 index 000000000000..fd964ddf952c --- /dev/null +++ b/data/software/at/atrain.json @@ -0,0 +1,14 @@ +{ + "slug": "atrain", + "name": "aTrain", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123185993" + ], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [ + "Python" + ] +} diff --git a/data/software/at/attack-surface-analyzer.json b/data/software/at/attack-surface-analyzer.json new file mode 100644 index 000000000000..3d970872da03 --- /dev/null +++ b/data/software/at/attack-surface-analyzer.json @@ -0,0 +1,11 @@ +{ + "slug": "attack-surface-analyzer", + "name": "Attack Surface Analyzer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4817929" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/at/attensity.json b/data/software/at/attensity.json new file mode 100644 index 000000000000..b483d7c26f9a --- /dev/null +++ b/data/software/at/attensity.json @@ -0,0 +1,8 @@ +{ + "slug": "attensity", + "name": "Attensity", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087688" + ] +} diff --git a/data/software/at/attr.json b/data/software/at/attr.json new file mode 100644 index 000000000000..e16f53c8ce29 --- /dev/null +++ b/data/software/at/attr.json @@ -0,0 +1,11 @@ +{ + "slug": "attr", + "name": "attr", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q64495827" + ], + "licenses": [ + "GNU General Public License, version 2.0 or later" + ] +} diff --git a/data/software/at/atube-catcher.json b/data/software/at/atube-catcher.json new file mode 100644 index 000000000000..4a7578a1c8d6 --- /dev/null +++ b/data/software/at/atube-catcher.json @@ -0,0 +1,8 @@ +{ + "slug": "atube-catcher", + "name": "aTube Catcher", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3541764" + ] +} diff --git a/data/software/au/aua-framework.json b/data/software/au/aua-framework.json new file mode 100644 index 000000000000..9f9e8212d953 --- /dev/null +++ b/data/software/au/aua-framework.json @@ -0,0 +1,8 @@ +{ + "slug": "aua-framework", + "name": "AUA Framework", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112131421" + ] +} diff --git a/data/software/au/auction-sniping.json b/data/software/au/auction-sniping.json new file mode 100644 index 000000000000..75c07130ceba --- /dev/null +++ b/data/software/au/auction-sniping.json @@ -0,0 +1,8 @@ +{ + "slug": "auction-sniping", + "name": "auction sniping", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1474178" + ] +} diff --git a/data/software/au/audex.json b/data/software/au/audex.json new file mode 100644 index 000000000000..e5fe34f7c5a0 --- /dev/null +++ b/data/software/au/audex.json @@ -0,0 +1,8 @@ +{ + "slug": "audex", + "name": "Audex", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q20057011" + ] +} diff --git a/data/software/au/audials-one.json b/data/software/au/audials-one.json new file mode 100644 index 000000000000..146ede057661 --- /dev/null +++ b/data/software/au/audials-one.json @@ -0,0 +1,8 @@ +{ + "slug": "audials-one", + "name": "Audials One", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118129101" + ] +} diff --git a/data/software/au/audio-midi-setup.json b/data/software/au/audio-midi-setup.json new file mode 100644 index 000000000000..774ca6aac4cd --- /dev/null +++ b/data/software/au/audio-midi-setup.json @@ -0,0 +1,8 @@ +{ + "slug": "audio-midi-setup", + "name": "Audio MIDI Setup", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2253358" + ] +} diff --git a/data/software/au/audio-overload.json b/data/software/au/audio-overload.json new file mode 100644 index 000000000000..58b3c81ede8e --- /dev/null +++ b/data/software/au/audio-overload.json @@ -0,0 +1,8 @@ +{ + "slug": "audio-overload", + "name": "Audio Overload", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11190546" + ] +} diff --git a/data/software/au/audiobook-cutter-free-edition.json b/data/software/au/audiobook-cutter-free-edition.json new file mode 100644 index 000000000000..1e5fab6f09ff --- /dev/null +++ b/data/software/au/audiobook-cutter-free-edition.json @@ -0,0 +1,11 @@ +{ + "slug": "audiobook-cutter-free-edition", + "name": "Audiobook Cutter Free Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4819898" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/au/audiograbber.json b/data/software/au/audiograbber.json new file mode 100644 index 000000000000..f9af68c9ce32 --- /dev/null +++ b/data/software/au/audiograbber.json @@ -0,0 +1,11 @@ +{ + "slug": "audiograbber", + "name": "Audiograbber", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q448485" + ], + "licenses": [ + "adware" + ] +} diff --git a/data/software/au/audiostreamerscrobbler.json b/data/software/au/audiostreamerscrobbler.json new file mode 100644 index 000000000000..0774d6d5242e --- /dev/null +++ b/data/software/au/audiostreamerscrobbler.json @@ -0,0 +1,11 @@ +{ + "slug": "audiostreamerscrobbler", + "name": "AudioStreamerScrobbler", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63101044" + ], + "developers": [ + "Vincent van der Leun" + ] +} diff --git a/data/software/au/audiotool.json b/data/software/au/audiotool.json new file mode 100644 index 000000000000..466d249d6c12 --- /dev/null +++ b/data/software/au/audiotool.json @@ -0,0 +1,8 @@ +{ + "slug": "audiotool", + "name": "Audiotool", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084411" + ] +} diff --git a/data/software/au/audit-record-generation-and-utilization-system.json b/data/software/au/audit-record-generation-and-utilization-system.json new file mode 100644 index 000000000000..c5392e95a8ed --- /dev/null +++ b/data/software/au/audit-record-generation-and-utilization-system.json @@ -0,0 +1,8 @@ +{ + "slug": "audit-record-generation-and-utilization-system", + "name": "Audit Record Generation and Utilization System", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4819951" + ] +} diff --git a/data/software/au/auditspark.json b/data/software/au/auditspark.json new file mode 100644 index 000000000000..cb85119579fb --- /dev/null +++ b/data/software/au/auditspark.json @@ -0,0 +1,8 @@ +{ + "slug": "auditspark", + "name": "AuditSpark", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140363163" + ] +} diff --git a/data/software/au/audix.json b/data/software/au/audix.json new file mode 100644 index 000000000000..e218f71d78b9 --- /dev/null +++ b/data/software/au/audix.json @@ -0,0 +1,11 @@ +{ + "slug": "audix", + "name": "AUDIX", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4654973" + ], + "operating_systems": [ + "Unix-like operating system" + ] +} diff --git a/data/software/au/aufs-util.json b/data/software/au/aufs-util.json new file mode 100644 index 000000000000..c11eaf5a5700 --- /dev/null +++ b/data/software/au/aufs-util.json @@ -0,0 +1,8 @@ +{ + "slug": "aufs-util", + "name": "aufs-util", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60864770" + ] +} diff --git a/data/software/au/augur.json b/data/software/au/augur.json new file mode 100644 index 000000000000..46c27b4f467d --- /dev/null +++ b/data/software/au/augur.json @@ -0,0 +1,11 @@ +{ + "slug": "augur", + "name": "Augur", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q19892024" + ], + "programming_languages": [ + "Solidity" + ] +} diff --git a/data/software/au/aumix.json b/data/software/au/aumix.json new file mode 100644 index 000000000000..32d9ff398fff --- /dev/null +++ b/data/software/au/aumix.json @@ -0,0 +1,8 @@ +{ + "slug": "aumix", + "name": "aumix", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62846008" + ] +} diff --git a/data/software/au/aunit.json b/data/software/au/aunit.json new file mode 100644 index 000000000000..3c771b6c02b1 --- /dev/null +++ b/data/software/au/aunit.json @@ -0,0 +1,8 @@ +{ + "slug": "aunit", + "name": "AUnit", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q20891884" + ] +} diff --git a/data/software/au/aura-sync.json b/data/software/au/aura-sync.json new file mode 100644 index 000000000000..a3923da4fc94 --- /dev/null +++ b/data/software/au/aura-sync.json @@ -0,0 +1,8 @@ +{ + "slug": "aura-sync", + "name": "Aura Sync", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110908181" + ] +} diff --git a/data/software/au/aurora-borealis.json b/data/software/au/aurora-borealis.json new file mode 100644 index 000000000000..613f14583c90 --- /dev/null +++ b/data/software/au/aurora-borealis.json @@ -0,0 +1,8 @@ +{ + "slug": "aurora-borealis", + "name": "Aurora Borealis", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4056065" + ] +} diff --git a/data/software/au/aurora-center.json b/data/software/au/aurora-center.json new file mode 100644 index 000000000000..da950de14e12 --- /dev/null +++ b/data/software/au/aurora-center.json @@ -0,0 +1,14 @@ +{ + "slug": "aurora-center", + "name": "Aurora Center", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139385536" + ], + "operating_systems": [ + "Aurora OS", + "Astra Linux", + "ALT Linux", + "cross-platform" + ] +} diff --git a/data/software/au/aurora-hdr.json b/data/software/au/aurora-hdr.json new file mode 100644 index 000000000000..da3d2d555d51 --- /dev/null +++ b/data/software/au/aurora-hdr.json @@ -0,0 +1,8 @@ +{ + "slug": "aurora-hdr", + "name": "Aurora HDR", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25055056" + ] +} diff --git a/data/software/au/auroracoin.json b/data/software/au/auroracoin.json new file mode 100644 index 000000000000..f841a8413814 --- /dev/null +++ b/data/software/au/auroracoin.json @@ -0,0 +1,11 @@ +{ + "slug": "auroracoin", + "name": "Auroracoin", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q15981447" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/au/aurous.json b/data/software/au/aurous.json new file mode 100644 index 000000000000..c9b023ff16a1 --- /dev/null +++ b/data/software/au/aurous.json @@ -0,0 +1,8 @@ +{ + "slug": "aurous", + "name": "Aurous", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q21090032" + ] +} diff --git a/data/software/au/austal.json b/data/software/au/austal.json new file mode 100644 index 000000000000..5c795f74035a --- /dev/null +++ b/data/software/au/austal.json @@ -0,0 +1,8 @@ +{ + "slug": "austal", + "name": "AUSTAL", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118104818" + ] +} diff --git a/data/software/au/australian-integrated-forecast-system.json b/data/software/au/australian-integrated-forecast-system.json new file mode 100644 index 000000000000..de66a4b65814 --- /dev/null +++ b/data/software/au/australian-integrated-forecast-system.json @@ -0,0 +1,8 @@ +{ + "slug": "australian-integrated-forecast-system", + "name": "Australian Integrated Forecast System", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4824324" + ] +} diff --git a/data/software/au/ausweisapp-q20828705.json b/data/software/au/ausweisapp-q20828705.json new file mode 100644 index 000000000000..f3f53fae9e64 --- /dev/null +++ b/data/software/au/ausweisapp-q20828705.json @@ -0,0 +1,14 @@ +{ + "slug": "ausweisapp-q20828705", + "name": "AusweisApp", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q20828705" + ], + "developers": [ + "Governikus KG" + ], + "licenses": [ + "European Union Public Licence" + ] +} diff --git a/data/software/au/ausweisapp.json b/data/software/au/ausweisapp.json new file mode 100644 index 000000000000..30c75c3eaa59 --- /dev/null +++ b/data/software/au/ausweisapp.json @@ -0,0 +1,8 @@ +{ + "slug": "ausweisapp", + "name": "AusweisApp", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q784165" + ] +} diff --git a/data/software/au/auth-sister.json b/data/software/au/auth-sister.json new file mode 100644 index 000000000000..bf32f27cdbdb --- /dev/null +++ b/data/software/au/auth-sister.json @@ -0,0 +1,11 @@ +{ + "slug": "auth-sister", + "name": "auth sister", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11447157" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/au/authentilens.json b/data/software/au/authentilens.json new file mode 100644 index 000000000000..2a482c1173b0 --- /dev/null +++ b/data/software/au/authentilens.json @@ -0,0 +1,8 @@ +{ + "slug": "authentilens", + "name": "AuthentiLens", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139545623" + ] +} diff --git a/data/software/au/author.json b/data/software/au/author.json new file mode 100644 index 000000000000..4e4041a9717b --- /dev/null +++ b/data/software/au/author.json @@ -0,0 +1,8 @@ +{ + "slug": "author", + "name": "AUTHOR", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087774" + ] +} diff --git a/data/software/au/authorized-steinway-virtual-concert-grand-piano.json b/data/software/au/authorized-steinway-virtual-concert-grand-piano.json new file mode 100644 index 000000000000..195e1dc1a32e --- /dev/null +++ b/data/software/au/authorized-steinway-virtual-concert-grand-piano.json @@ -0,0 +1,8 @@ +{ + "slug": "authorized-steinway-virtual-concert-grand-piano", + "name": "Authorized Steinway Virtual Concert Grand Piano", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4825961" + ] +} diff --git a/data/software/au/authorship-strategy-a-normative-framework-and-tactical-catalog-for-ai-era-authenticity-inv.json b/data/software/au/authorship-strategy-a-normative-framework-and-tactical-catalog-for-ai-era-authenticity-inv.json new file mode 100644 index 000000000000..8c6aec249244 --- /dev/null +++ b/data/software/au/authorship-strategy-a-normative-framework-and-tactical-catalog-for-ai-era-authenticity-inv.json @@ -0,0 +1,15 @@ +{ + "slug": "authorship-strategy-a-normative-framework-and-tactical-catalog-for-ai-era-authenticity-inv", + "name": "Authorship Strategy: A Normative Framework and Tactical Catalog for AI-Era Authenticity Inversion, with Empirical Grounding from a Four-Repository Research Ecosystem", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140090190" + ], + "release_date": "2026-05-18", + "developers": [ + "Tatsuya Shimomoto" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/au/auto-latex-equations.json b/data/software/au/auto-latex-equations.json new file mode 100644 index 000000000000..f64494706771 --- /dev/null +++ b/data/software/au/auto-latex-equations.json @@ -0,0 +1,8 @@ +{ + "slug": "auto-latex-equations", + "name": "Auto-Latex Equations", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22906574" + ] +} diff --git a/data/software/au/autocad-architecture.json b/data/software/au/autocad-architecture.json new file mode 100644 index 000000000000..4cddfef0cda6 --- /dev/null +++ b/data/software/au/autocad-architecture.json @@ -0,0 +1,14 @@ +{ + "slug": "autocad-architecture", + "name": "AutoCAD Architecture", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2872477" + ], + "developers": [ + "Autodesk" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/au/autochem.json b/data/software/au/autochem.json new file mode 100644 index 000000000000..fcbd50317fb9 --- /dev/null +++ b/data/software/au/autochem.json @@ -0,0 +1,14 @@ +{ + "slug": "autochem", + "name": "Autochem", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16240810" + ], + "developers": [ + "David Lary" + ], + "programming_languages": [ + "Fortran 90" + ] +} diff --git a/data/software/au/autocollage-2008.json b/data/software/au/autocollage-2008.json new file mode 100644 index 000000000000..810f8ae5877e --- /dev/null +++ b/data/software/au/autocollage-2008.json @@ -0,0 +1,15 @@ +{ + "slug": "autocollage-2008", + "name": "AutoCollage 2008", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4826056" + ], + "release_date": "2008-09-04", + "developers": [ + "Microsoft Research" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/au/autocorrection.json b/data/software/au/autocorrection.json new file mode 100644 index 000000000000..e23b43d92633 --- /dev/null +++ b/data/software/au/autocorrection.json @@ -0,0 +1,8 @@ +{ + "slug": "autocorrection", + "name": "autocorrection", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q789205" + ] +} diff --git a/data/software/au/autodesk-123d.json b/data/software/au/autodesk-123d.json new file mode 100644 index 000000000000..1c9abacfcee8 --- /dev/null +++ b/data/software/au/autodesk-123d.json @@ -0,0 +1,18 @@ +{ + "slug": "autodesk-123d", + "name": "Autodesk 123D", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4826235" + ], + "release_date": "2009-01-01", + "developers": [ + "Autodesk" + ], + "operating_systems": [ + "Windows 7" + ], + "licenses": [ + "end-user license agreement" + ] +} diff --git a/data/software/au/autodesk-aliasstudio.json b/data/software/au/autodesk-aliasstudio.json new file mode 100644 index 000000000000..0a205113940c --- /dev/null +++ b/data/software/au/autodesk-aliasstudio.json @@ -0,0 +1,11 @@ +{ + "slug": "autodesk-aliasstudio", + "name": "Autodesk AliasStudio", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3500946" + ], + "developers": [ + "Autodesk" + ] +} diff --git a/data/software/au/autodesk-ecotect-analysis.json b/data/software/au/autodesk-ecotect-analysis.json new file mode 100644 index 000000000000..3b0afd9e95b7 --- /dev/null +++ b/data/software/au/autodesk-ecotect-analysis.json @@ -0,0 +1,11 @@ +{ + "slug": "autodesk-ecotect-analysis", + "name": "Autodesk Ecotect Analysis", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16835936" + ], + "developers": [ + "Autodesk" + ] +} diff --git a/data/software/au/autodesk-motionbuilder.json b/data/software/au/autodesk-motionbuilder.json new file mode 100644 index 000000000000..12c62460d2a7 --- /dev/null +++ b/data/software/au/autodesk-motionbuilder.json @@ -0,0 +1,11 @@ +{ + "slug": "autodesk-motionbuilder", + "name": "Autodesk MotionBuilder", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3325183" + ], + "developers": [ + "Autodesk" + ] +} diff --git a/data/software/au/autodesk-smoke.json b/data/software/au/autodesk-smoke.json new file mode 100644 index 000000000000..6b18fe981d1f --- /dev/null +++ b/data/software/au/autodesk-smoke.json @@ -0,0 +1,8 @@ +{ + "slug": "autodesk-smoke", + "name": "Autodesk Smoke", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2668845" + ] +} diff --git a/data/software/au/autodesk-toxik.json b/data/software/au/autodesk-toxik.json new file mode 100644 index 000000000000..43b2a2cd1a12 --- /dev/null +++ b/data/software/au/autodesk-toxik.json @@ -0,0 +1,12 @@ +{ + "slug": "autodesk-toxik", + "name": "Autodesk Toxik", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4826242" + ], + "release_date": "2007-01-01", + "developers": [ + "Autodesk Media and Entertainment" + ] +} diff --git a/data/software/au/autoflow.json b/data/software/au/autoflow.json new file mode 100644 index 000000000000..e688cfd56702 --- /dev/null +++ b/data/software/au/autoflow.json @@ -0,0 +1,8 @@ +{ + "slug": "autoflow", + "name": "Autoflow", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131933285" + ] +} diff --git a/data/software/au/autofs.json b/data/software/au/autofs.json new file mode 100644 index 000000000000..62b8c2c6062c --- /dev/null +++ b/data/software/au/autofs.json @@ -0,0 +1,8 @@ +{ + "slug": "autofs", + "name": "Autofs", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62846070" + ] +} diff --git a/data/software/au/autoit.json b/data/software/au/autoit.json new file mode 100644 index 000000000000..6b98621917c6 --- /dev/null +++ b/data/software/au/autoit.json @@ -0,0 +1,14 @@ +{ + "slug": "autoit", + "name": "AutoIt", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q784845" + ], + "operating_systems": [ + "Microsoft Windows" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/au/autojump.json b/data/software/au/autojump.json new file mode 100644 index 000000000000..e4f6e36ce5a5 --- /dev/null +++ b/data/software/au/autojump.json @@ -0,0 +1,8 @@ +{ + "slug": "autojump", + "name": "Autojump", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62851178" + ] +} diff --git a/data/software/au/autokon.json b/data/software/au/autokon.json new file mode 100644 index 000000000000..32f41c9ad7fb --- /dev/null +++ b/data/software/au/autokon.json @@ -0,0 +1,11 @@ +{ + "slug": "autokon", + "name": "AUTOKON", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111370021" + ], + "developers": [ + "Thomas Hysing" + ] +} diff --git a/data/software/au/automap.json b/data/software/au/automap.json new file mode 100644 index 000000000000..cd0d43f16cd1 --- /dev/null +++ b/data/software/au/automap.json @@ -0,0 +1,11 @@ +{ + "slug": "automap", + "name": "AutoMap", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106323235" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/au/automapa.json b/data/software/au/automapa.json new file mode 100644 index 000000000000..6cc5a523b37e --- /dev/null +++ b/data/software/au/automapa.json @@ -0,0 +1,8 @@ +{ + "slug": "automapa", + "name": "Automapa", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11687041" + ] +} diff --git a/data/software/au/automate-the-schools.json b/data/software/au/automate-the-schools.json new file mode 100644 index 000000000000..b838497bcca5 --- /dev/null +++ b/data/software/au/automate-the-schools.json @@ -0,0 +1,9 @@ +{ + "slug": "automate-the-schools", + "name": "Automate the Schools", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4826395" + ], + "release_date": "1988-01-01" +} diff --git a/data/software/au/automated-anatomical-labeling.json b/data/software/au/automated-anatomical-labeling.json new file mode 100644 index 000000000000..194d892f5f4b --- /dev/null +++ b/data/software/au/automated-anatomical-labeling.json @@ -0,0 +1,11 @@ +{ + "slug": "automated-anatomical-labeling", + "name": "Automated Anatomical Labeling", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4826400" + ], + "programming_languages": [ + "MATLAB" + ] +} diff --git a/data/software/au/automated-customer-account-transfer-service.json b/data/software/au/automated-customer-account-transfer-service.json new file mode 100644 index 000000000000..dc72d224fb24 --- /dev/null +++ b/data/software/au/automated-customer-account-transfer-service.json @@ -0,0 +1,8 @@ +{ + "slug": "automated-customer-account-transfer-service", + "name": "Automated Customer Account Transfer Service", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16835957" + ] +} diff --git a/data/software/au/automated-data-inquiry-for-oil-spills.json b/data/software/au/automated-data-inquiry-for-oil-spills.json new file mode 100644 index 000000000000..940a73254ca3 --- /dev/null +++ b/data/software/au/automated-data-inquiry-for-oil-spills.json @@ -0,0 +1,15 @@ +{ + "slug": "automated-data-inquiry-for-oil-spills", + "name": "Automated Data Inquiry for Oil Spills", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4826407" + ], + "developers": [ + "National Oceanic and Atmospheric Administration" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/software/au/automated-sales-suppression-device.json b/data/software/au/automated-sales-suppression-device.json new file mode 100644 index 000000000000..ead1b3b0928d --- /dev/null +++ b/data/software/au/automated-sales-suppression-device.json @@ -0,0 +1,8 @@ +{ + "slug": "automated-sales-suppression-device", + "name": "Automated sales suppression device", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q147483" + ] +} diff --git a/data/software/au/automatedoctor.json b/data/software/au/automatedoctor.json new file mode 100644 index 000000000000..f35130e99220 --- /dev/null +++ b/data/software/au/automatedoctor.json @@ -0,0 +1,8 @@ +{ + "slug": "automatedoctor", + "name": "automatedoctor", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136893182" + ] +} diff --git a/data/software/au/automatic-storage-management.json b/data/software/au/automatic-storage-management.json new file mode 100644 index 000000000000..2b86fa4bbfd9 --- /dev/null +++ b/data/software/au/automatic-storage-management.json @@ -0,0 +1,11 @@ +{ + "slug": "automatic-storage-management", + "name": "Automatic Storage Management", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2872616" + ], + "developers": [ + "Oracle Corporation" + ] +} diff --git a/data/software/au/automatic-verification-tool-avt.json b/data/software/au/automatic-verification-tool-avt.json new file mode 100644 index 000000000000..4711b797a1c5 --- /dev/null +++ b/data/software/au/automatic-verification-tool-avt.json @@ -0,0 +1,8 @@ +{ + "slug": "automatic-verification-tool-avt", + "name": "Automatic Verification Tool (AVT)", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084795" + ] +} diff --git a/data/software/au/automatik-text-reader.json b/data/software/au/automatik-text-reader.json new file mode 100644 index 000000000000..8a0fa6345165 --- /dev/null +++ b/data/software/au/automatik-text-reader.json @@ -0,0 +1,11 @@ +{ + "slug": "automatik-text-reader", + "name": "Automatik Text Reader", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22906577" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/au/automation-anywhere.json b/data/software/au/automation-anywhere.json new file mode 100644 index 000000000000..64d624508fde --- /dev/null +++ b/data/software/au/automation-anywhere.json @@ -0,0 +1,8 @@ +{ + "slug": "automation-anywhere", + "name": "Automation Anywhere", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4826627" + ] +} diff --git a/data/software/au/automation-studio.json b/data/software/au/automation-studio.json new file mode 100644 index 000000000000..dfab58f4ae53 --- /dev/null +++ b/data/software/au/automation-studio.json @@ -0,0 +1,8 @@ +{ + "slug": "automation-studio", + "name": "Automation Studio", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2872619" + ] +} diff --git a/data/software/au/automatix.json b/data/software/au/automatix.json new file mode 100644 index 000000000000..2d184dceb1ac --- /dev/null +++ b/data/software/au/automatix.json @@ -0,0 +1,14 @@ +{ + "slug": "automatix", + "name": "Automatix", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2567245" + ], + "operating_systems": [ + "MEPIS" + ], + "programming_languages": [ + "Python" + ] +} diff --git a/data/software/au/autonom.json b/data/software/au/autonom.json new file mode 100644 index 000000000000..46d3e753944c --- /dev/null +++ b/data/software/au/autonom.json @@ -0,0 +1,8 @@ +{ + "slug": "autonom", + "name": "AUTONOM", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134737176" + ] +} diff --git a/data/software/au/autopano.json b/data/software/au/autopano.json new file mode 100644 index 000000000000..ea8901718caf --- /dev/null +++ b/data/software/au/autopano.json @@ -0,0 +1,11 @@ +{ + "slug": "autopano", + "name": "Autopano", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10423429" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/au/autopatcher.json b/data/software/au/autopatcher.json new file mode 100644 index 000000000000..76f9a700b8fc --- /dev/null +++ b/data/software/au/autopatcher.json @@ -0,0 +1,11 @@ +{ + "slug": "autopatcher", + "name": "AutoPatcher", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3535827" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/au/autoscan.json b/data/software/au/autoscan.json new file mode 100644 index 000000000000..9996eaca20ab --- /dev/null +++ b/data/software/au/autoscan.json @@ -0,0 +1,11 @@ +{ + "slug": "autoscan", + "name": "Autoscan", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2873034" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/au/autoshade.json b/data/software/au/autoshade.json new file mode 100644 index 000000000000..44f6d8bf38f1 --- /dev/null +++ b/data/software/au/autoshade.json @@ -0,0 +1,15 @@ +{ + "slug": "autoshade", + "name": "AutoShade", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4826077" + ], + "release_date": "1987-01-01", + "developers": [ + "Autodesk" + ], + "operating_systems": [ + "DOS" + ] +} diff --git a/data/software/au/autosketch.json b/data/software/au/autosketch.json new file mode 100644 index 000000000000..f8958f54f93f --- /dev/null +++ b/data/software/au/autosketch.json @@ -0,0 +1,11 @@ +{ + "slug": "autosketch", + "name": "AutoSketch", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q786376" + ], + "developers": [ + "Autodesk" + ] +} diff --git a/data/software/au/autossh.json b/data/software/au/autossh.json new file mode 100644 index 000000000000..601a30c55e41 --- /dev/null +++ b/data/software/au/autossh.json @@ -0,0 +1,8 @@ +{ + "slug": "autossh", + "name": "Autossh", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62846077" + ] +} diff --git a/data/software/au/autostitch.json b/data/software/au/autostitch.json new file mode 100644 index 000000000000..137c494f3472 --- /dev/null +++ b/data/software/au/autostitch.json @@ -0,0 +1,8 @@ +{ + "slug": "autostitch", + "name": "AutoStitch", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q784815" + ] +} diff --git a/data/software/au/autostyl.json b/data/software/au/autostyl.json new file mode 100644 index 000000000000..b3c300dcbcf5 --- /dev/null +++ b/data/software/au/autostyl.json @@ -0,0 +1,8 @@ +{ + "slug": "autostyl", + "name": "AUTOSTYL", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087775" + ] +} diff --git a/data/software/au/autotrack.json b/data/software/au/autotrack.json new file mode 100644 index 000000000000..6dc30a5d4b7e --- /dev/null +++ b/data/software/au/autotrack.json @@ -0,0 +1,11 @@ +{ + "slug": "autotrack", + "name": "AutoTrack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16245933" + ], + "licenses": [ + "end-user license agreement" + ] +} diff --git a/data/software/au/autotrax.json b/data/software/au/autotrax.json new file mode 100644 index 000000000000..4d33d1a4c1dd --- /dev/null +++ b/data/software/au/autotrax.json @@ -0,0 +1,12 @@ +{ + "slug": "autotrax", + "name": "Autotrax", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4827031" + ], + "release_date": "1985-01-01", + "operating_systems": [ + "DOS" + ] +} diff --git a/data/software/au/autoturn.json b/data/software/au/autoturn.json new file mode 100644 index 000000000000..3b40ddd6a63a --- /dev/null +++ b/data/software/au/autoturn.json @@ -0,0 +1,12 @@ +{ + "slug": "autoturn", + "name": "AutoTURN", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4826080" + ], + "release_date": "1991-01-01", + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/au/autotutor.json b/data/software/au/autotutor.json new file mode 100644 index 000000000000..c6aeedf8a3ea --- /dev/null +++ b/data/software/au/autotutor.json @@ -0,0 +1,8 @@ +{ + "slug": "autotutor", + "name": "AutoTutor", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4826085" + ] +} diff --git a/data/software/au/autoupnp.json b/data/software/au/autoupnp.json new file mode 100644 index 000000000000..8319657d82fe --- /dev/null +++ b/data/software/au/autoupnp.json @@ -0,0 +1,11 @@ +{ + "slug": "autoupnp", + "name": "autoupnp", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28941625" + ], + "licenses": [ + "3-clause BSD License" + ] +} diff --git a/data/software/au/auxora-ai.json b/data/software/au/auxora-ai.json new file mode 100644 index 000000000000..d9ce9ecd51d4 --- /dev/null +++ b/data/software/au/auxora-ai.json @@ -0,0 +1,8 @@ +{ + "slug": "auxora-ai", + "name": "Auxora.ai", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139658790" + ] +} diff --git a/data/software/au/auxy-beat-studio.json b/data/software/au/auxy-beat-studio.json new file mode 100644 index 000000000000..b534f6533e28 --- /dev/null +++ b/data/software/au/auxy-beat-studio.json @@ -0,0 +1,8 @@ +{ + "slug": "auxy-beat-studio", + "name": "Auxy: Beat Studio", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q20311547" + ] +} diff --git a/data/software/av/av-comparatives.json b/data/software/av/av-comparatives.json new file mode 100644 index 000000000000..124dee2d257d --- /dev/null +++ b/data/software/av/av-comparatives.json @@ -0,0 +1,8 @@ +{ + "slug": "av-comparatives", + "name": "AV-Comparatives", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4655021" + ] +} diff --git a/data/software/av/ava-advanced-video-annotations.json b/data/software/av/ava-advanced-video-annotations.json new file mode 100644 index 000000000000..67ed4dfa6ecd --- /dev/null +++ b/data/software/av/ava-advanced-video-annotations.json @@ -0,0 +1,8 @@ +{ + "slug": "ava-advanced-video-annotations", + "name": "AVA (Advanced Video Annotations)", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084796" + ] +} diff --git a/data/software/av/avalon-the-legend-lives.json b/data/software/av/avalon-the-legend-lives.json new file mode 100644 index 000000000000..3495f0188ff2 --- /dev/null +++ b/data/software/av/avalon-the-legend-lives.json @@ -0,0 +1,9 @@ +{ + "slug": "avalon-the-legend-lives", + "name": "Avalon: The Legend Lives", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18589136" + ], + "release_date": "1989-01-01" +} diff --git a/data/software/av/avalonia.json b/data/software/av/avalonia.json new file mode 100644 index 000000000000..35aeaf570e7b --- /dev/null +++ b/data/software/av/avalonia.json @@ -0,0 +1,15 @@ +{ + "slug": "avalonia", + "name": "Avalonia", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q97658489" + ], + "programming_languages": [ + "Visual Basic", + "F#" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/av/avanna.json b/data/software/av/avanna.json new file mode 100644 index 000000000000..49471a0b8803 --- /dev/null +++ b/data/software/av/avanna.json @@ -0,0 +1,9 @@ +{ + "slug": "avanna", + "name": "Avanna", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q24910756" + ], + "release_date": "2012-12-22" +} diff --git a/data/software/av/avare.json b/data/software/av/avare.json new file mode 100644 index 000000000000..3760caadd714 --- /dev/null +++ b/data/software/av/avare.json @@ -0,0 +1,11 @@ +{ + "slug": "avare", + "name": "Avare", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17049755" + ], + "licenses": [ + "Apache License" + ] +} diff --git a/data/software/av/avast.json b/data/software/av/avast.json new file mode 100644 index 000000000000..9b9edf6a97f6 --- /dev/null +++ b/data/software/av/avast.json @@ -0,0 +1,12 @@ +{ + "slug": "avast", + "name": "Avast", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136007681" + ], + "release_date": "1988-01-01", + "developers": [ + "Avast Software" + ] +} diff --git a/data/software/av/avedesk.json b/data/software/av/avedesk.json new file mode 100644 index 000000000000..4dd70bd42714 --- /dev/null +++ b/data/software/av/avedesk.json @@ -0,0 +1,11 @@ +{ + "slug": "avedesk", + "name": "AveDesk", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4827928" + ], + "licenses": [ + "donationware" + ] +} diff --git a/data/software/av/aventus-protocol.json b/data/software/av/aventus-protocol.json new file mode 100644 index 000000000000..82c21ddf42eb --- /dev/null +++ b/data/software/av/aventus-protocol.json @@ -0,0 +1,8 @@ +{ + "slug": "aventus-protocol", + "name": "Aventus Protocol", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q55390900" + ] +} diff --git a/data/software/av/avg.json b/data/software/av/avg.json new file mode 100644 index 000000000000..a3acc6d0b54f --- /dev/null +++ b/data/software/av/avg.json @@ -0,0 +1,12 @@ +{ + "slug": "avg", + "name": "AVG", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q51987760" + ], + "release_date": "1992-01-01", + "developers": [ + "AVG Technologies" + ] +} diff --git a/data/software/av/aviary.json b/data/software/av/aviary.json new file mode 100644 index 000000000000..75cdc9d4bbb5 --- /dev/null +++ b/data/software/av/aviary.json @@ -0,0 +1,8 @@ +{ + "slug": "aviary", + "name": "Aviary", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4828592" + ] +} diff --git a/data/software/av/aviatrix3d.json b/data/software/av/aviatrix3d.json new file mode 100644 index 000000000000..5d588eed8c1b --- /dev/null +++ b/data/software/av/aviatrix3d.json @@ -0,0 +1,8 @@ +{ + "slug": "aviatrix3d", + "name": "Aviatrix3D", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2427817" + ] +} diff --git a/data/software/av/avid-ds.json b/data/software/av/avid-ds.json new file mode 100644 index 000000000000..eded30b209d2 --- /dev/null +++ b/data/software/av/avid-ds.json @@ -0,0 +1,14 @@ +{ + "slug": "avid-ds", + "name": "Avid DS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4828777" + ], + "developers": [ + "Avid Technology" + ], + "operating_systems": [ + "Windows 7" + ] +} diff --git a/data/software/av/avidemux-core.json b/data/software/av/avidemux-core.json new file mode 100644 index 000000000000..d45a63a35b79 --- /dev/null +++ b/data/software/av/avidemux-core.json @@ -0,0 +1,11 @@ +{ + "slug": "avidemux-core", + "name": "avidemux-core", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28941627" + ], + "licenses": [ + "GNU General Public License, version 2.0" + ] +} diff --git a/data/software/av/avidemux-plugins.json b/data/software/av/avidemux-plugins.json new file mode 100644 index 000000000000..7827d028e687 --- /dev/null +++ b/data/software/av/avidemux-plugins.json @@ -0,0 +1,11 @@ +{ + "slug": "avidemux-plugins", + "name": "avidemux-plugins", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28941629" + ], + "licenses": [ + "GNU General Public License, version 2.0" + ] +} diff --git a/data/software/av/aview.json b/data/software/av/aview.json new file mode 100644 index 000000000000..be939934aaa4 --- /dev/null +++ b/data/software/av/aview.json @@ -0,0 +1,8 @@ +{ + "slug": "aview", + "name": "aview", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62854986" + ] +} diff --git a/data/software/av/avira.json b/data/software/av/avira.json new file mode 100644 index 000000000000..7cc54abcd2fa --- /dev/null +++ b/data/software/av/avira.json @@ -0,0 +1,12 @@ +{ + "slug": "avira", + "name": "Avira", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q53679753" + ], + "release_date": "1986-01-01", + "developers": [ + "Avira" + ] +} diff --git a/data/software/av/avizo.json b/data/software/av/avizo.json new file mode 100644 index 000000000000..b1cc7318c750 --- /dev/null +++ b/data/software/av/avizo.json @@ -0,0 +1,8 @@ +{ + "slug": "avizo", + "name": "Avizo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4829059" + ] +} diff --git a/data/software/av/avobmat.json b/data/software/av/avobmat.json new file mode 100644 index 000000000000..38b4fbb28e7f --- /dev/null +++ b/data/software/av/avobmat.json @@ -0,0 +1,8 @@ +{ + "slug": "avobmat", + "name": "AVOBMAT", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087776" + ] +} diff --git a/data/software/av/avro-keyboard.json b/data/software/av/avro-keyboard.json new file mode 100644 index 000000000000..c3bb7693e8c8 --- /dev/null +++ b/data/software/av/avro-keyboard.json @@ -0,0 +1,15 @@ +{ + "slug": "avro-keyboard", + "name": "Avro Keyboard", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4829493" + ], + "release_date": "2003-03-26", + "developers": [ + "OmicronLab" + ], + "licenses": [ + "Mozilla Public License" + ] +} diff --git a/data/software/av/avs-video-converter.json b/data/software/av/avs-video-converter.json new file mode 100644 index 000000000000..cb3502b6874f --- /dev/null +++ b/data/software/av/avs-video-converter.json @@ -0,0 +1,12 @@ +{ + "slug": "avs-video-converter", + "name": "AVS Video Converter", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2819587" + ], + "release_date": "1996-06-12", + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/av/avsnap.json b/data/software/av/avsnap.json new file mode 100644 index 000000000000..892a722c696b --- /dev/null +++ b/data/software/av/avsnap.json @@ -0,0 +1,14 @@ +{ + "slug": "avsnap", + "name": "AVSnap", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4655069" + ], + "operating_systems": [ + "Microsoft Windows" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/aw/awomo.json b/data/software/aw/awomo.json new file mode 100644 index 000000000000..bd4f12a88c0b --- /dev/null +++ b/data/software/aw/awomo.json @@ -0,0 +1,8 @@ +{ + "slug": "awomo", + "name": "Awomo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4830118" + ] +} diff --git a/data/software/aw/aws-app-runner.json b/data/software/aw/aws-app-runner.json new file mode 100644 index 000000000000..dff8f5f9c13a --- /dev/null +++ b/data/software/aw/aws-app-runner.json @@ -0,0 +1,8 @@ +{ + "slug": "aws-app-runner", + "name": "AWS App Runner", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117475503" + ] +} diff --git a/data/software/aw/aws-cloud-development-kit.json b/data/software/aw/aws-cloud-development-kit.json new file mode 100644 index 000000000000..54fe6e37ca97 --- /dev/null +++ b/data/software/aw/aws-cloud-development-kit.json @@ -0,0 +1,8 @@ +{ + "slug": "aws-cloud-development-kit", + "name": "AWS Cloud Development Kit", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117390959" + ] +} diff --git a/data/software/aw/aws-cloudformation.json b/data/software/aw/aws-cloudformation.json new file mode 100644 index 000000000000..87c1f737b5e5 --- /dev/null +++ b/data/software/aw/aws-cloudformation.json @@ -0,0 +1,9 @@ +{ + "slug": "aws-cloudformation", + "name": "AWS CloudFormation", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117272797" + ], + "release_date": "2011-02-25" +} diff --git a/data/software/aw/aws-elastic-beanstalk.json b/data/software/aw/aws-elastic-beanstalk.json new file mode 100644 index 000000000000..9fb8be81511b --- /dev/null +++ b/data/software/aw/aws-elastic-beanstalk.json @@ -0,0 +1,9 @@ +{ + "slug": "aws-elastic-beanstalk", + "name": "AWS Elastic Beanstalk", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4655150" + ], + "release_date": "2011-01-19" +} diff --git a/data/software/aw/aws-sdk.json b/data/software/aw/aws-sdk.json new file mode 100644 index 000000000000..86c4ca237e63 --- /dev/null +++ b/data/software/aw/aws-sdk.json @@ -0,0 +1,14 @@ +{ + "slug": "aws-sdk", + "name": "AWS SDK", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130167569" + ], + "developers": [ + "Jonathan M. Henson" + ], + "licenses": [ + "Apache Software License 2.0" + ] +} diff --git a/data/software/ax/ax25-apps.json b/data/software/ax/ax25-apps.json new file mode 100644 index 000000000000..2e8af03cb42b --- /dev/null +++ b/data/software/ax/ax25-apps.json @@ -0,0 +1,8 @@ +{ + "slug": "ax25-apps", + "name": "ax25-apps", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62846091" + ] +} diff --git a/data/software/ax/ax25-tools.json b/data/software/ax/ax25-tools.json new file mode 100644 index 000000000000..6925be180c71 --- /dev/null +++ b/data/software/ax/ax25-tools.json @@ -0,0 +1,8 @@ +{ + "slug": "ax25-tools", + "name": "ax25-tools", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62846084" + ] +} diff --git a/data/software/ax/axe-spectral-extraction.json b/data/software/ax/axe-spectral-extraction.json new file mode 100644 index 000000000000..2b8c56409e50 --- /dev/null +++ b/data/software/ax/axe-spectral-extraction.json @@ -0,0 +1,11 @@ +{ + "slug": "axe-spectral-extraction", + "name": "aXe Spectral Extraction", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4655216" + ], + "developers": [ + "European Space Agency" + ] +} diff --git a/data/software/ax/axe.json b/data/software/ax/axe.json new file mode 100644 index 000000000000..1d1fd8a26725 --- /dev/null +++ b/data/software/ax/axe.json @@ -0,0 +1,11 @@ +{ + "slug": "axe", + "name": "AXE", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q128210932" + ], + "developers": [ + "BigChillGhost" + ] +} diff --git a/data/software/ax/axial.json b/data/software/ax/axial.json new file mode 100644 index 000000000000..f83cd200d6cd --- /dev/null +++ b/data/software/ax/axial.json @@ -0,0 +1,14 @@ +{ + "slug": "axial", + "name": "Axial", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139779962" + ], + "developers": [ + "Axial" + ], + "operating_systems": [ + "web application" + ] +} diff --git a/data/software/ax/axigen.json b/data/software/ax/axigen.json new file mode 100644 index 000000000000..d38cdd0ad5b9 --- /dev/null +++ b/data/software/ax/axigen.json @@ -0,0 +1,8 @@ +{ + "slug": "axigen", + "name": "Axigen", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q792501" + ] +} diff --git a/data/software/ax/axon-perform.json b/data/software/ax/axon-perform.json new file mode 100644 index 000000000000..30ad85fe82aa --- /dev/null +++ b/data/software/ax/axon-perform.json @@ -0,0 +1,8 @@ +{ + "slug": "axon-perform", + "name": "Axon Perform", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138657188" + ] +} diff --git a/data/software/ax/axon2013.json b/data/software/ax/axon2013.json new file mode 100644 index 000000000000..fcab48f2b7ba --- /dev/null +++ b/data/software/ax/axon2013.json @@ -0,0 +1,11 @@ +{ + "slug": "axon2013", + "name": "Axon2013", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106143054" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/ax/axosyslog.json b/data/software/ax/axosyslog.json new file mode 100644 index 000000000000..566b8e4d6ad9 --- /dev/null +++ b/data/software/ax/axosyslog.json @@ -0,0 +1,11 @@ +{ + "slug": "axosyslog", + "name": "axosyslog", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134394205" + ], + "licenses": [ + "GNU Library General Public License, version 2.0" + ] +} diff --git a/data/software/ax/axsjax.json b/data/software/ax/axsjax.json new file mode 100644 index 000000000000..925740d3cbf2 --- /dev/null +++ b/data/software/ax/axsjax.json @@ -0,0 +1,8 @@ +{ + "slug": "axsjax", + "name": "AxsJAX", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q533976" + ] +} diff --git a/data/software/ay/aya-space.json b/data/software/ay/aya-space.json new file mode 100644 index 000000000000..65ad96566702 --- /dev/null +++ b/data/software/ay/aya-space.json @@ -0,0 +1,12 @@ +{ + "slug": "aya-space", + "name": "AYA Space", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q114356058" + ], + "release_date": "2021-08-01", + "developers": [ + "AYANEO" + ] +} diff --git a/data/software/ay/ayoba.json b/data/software/ay/ayoba.json new file mode 100644 index 000000000000..4ec37bd3f3c8 --- /dev/null +++ b/data/software/ay/ayoba.json @@ -0,0 +1,8 @@ +{ + "slug": "ayoba", + "name": "Ayoba", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121365401" + ] +} diff --git a/data/software/az/azar.json b/data/software/az/azar.json new file mode 100644 index 000000000000..54e54274fb3f --- /dev/null +++ b/data/software/az/azar.json @@ -0,0 +1,11 @@ +{ + "slug": "azar", + "name": "Azar", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q19349591" + ], + "developers": [ + "Hyperconnect LLC." + ] +} diff --git a/data/software/az/azendoo.json b/data/software/az/azendoo.json new file mode 100644 index 000000000000..ae4f972bee6c --- /dev/null +++ b/data/software/az/azendoo.json @@ -0,0 +1,8 @@ +{ + "slug": "azendoo", + "name": "Azendoo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2875115" + ] +} diff --git a/data/software/az/azure-virtual-desktop.json b/data/software/az/azure-virtual-desktop.json new file mode 100644 index 000000000000..dd818d9a66c0 --- /dev/null +++ b/data/software/az/azure-virtual-desktop.json @@ -0,0 +1,17 @@ +{ + "slug": "azure-virtual-desktop", + "name": "Azure Virtual Desktop", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q85815871" + ], + "release_date": "2019-09-01", + "developers": [ + "Microsoft" + ], + "operating_systems": [ + "macOS", + "HTML5", + "Microsoft Windows" + ] +} diff --git a/data/software/b-/b-step-sequencer.json b/data/software/b-/b-step-sequencer.json new file mode 100644 index 000000000000..03e58730ea5a --- /dev/null +++ b/data/software/b-/b-step-sequencer.json @@ -0,0 +1,8 @@ +{ + "slug": "b-step-sequencer", + "name": "B-Step Sequencer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q20311849" + ] +} diff --git a/data/software/b3/b3bib.json b/data/software/b3/b3bib.json new file mode 100644 index 000000000000..dcdff9fdc91b --- /dev/null +++ b/data/software/b3/b3bib.json @@ -0,0 +1,15 @@ +{ + "slug": "b3bib", + "name": "b3bib", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105748767" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "licenses": [ + "GNU General Public License, version 2.0 or later" + ] +} diff --git a/data/software/b4/b4-organ-ii.json b/data/software/b4/b4-organ-ii.json new file mode 100644 index 000000000000..70f5ca737415 --- /dev/null +++ b/data/software/b4/b4-organ-ii.json @@ -0,0 +1,11 @@ +{ + "slug": "b4-organ-ii", + "name": "B4 Organ II", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4834442" + ], + "developers": [ + "Native Instruments" + ] +} diff --git a/data/software/b4/b4x.json b/data/software/b4/b4x.json new file mode 100644 index 000000000000..f281fc006800 --- /dev/null +++ b/data/software/b4/b4x.json @@ -0,0 +1,18 @@ +{ + "slug": "b4x", + "name": "B4X", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25111997" + ], + "operating_systems": [ + "Raspberry Pi OS", + "iOS", + "macOS", + "Microsoft Windows" + ], + "licenses": [ + "shareware", + "freeware" + ] +} diff --git a/data/software/ba/babelfy.json b/data/software/ba/babelfy.json new file mode 100644 index 000000000000..d5225825515f --- /dev/null +++ b/data/software/ba/babelfy.json @@ -0,0 +1,11 @@ +{ + "slug": "babelfy", + "name": "Babelfy", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17488762" + ], + "licenses": [ + "Creative Commons Attribution-NonCommercial-ShareAlike 3.0 Unported" + ] +} diff --git a/data/software/ba/babelgum.json b/data/software/ba/babelgum.json new file mode 100644 index 000000000000..ba8d70f6d17d --- /dev/null +++ b/data/software/ba/babelgum.json @@ -0,0 +1,12 @@ +{ + "slug": "babelgum", + "name": "Babelgum", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4837701" + ], + "release_date": "2007-03-07", + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/ba/babeltrace.json b/data/software/ba/babeltrace.json new file mode 100644 index 000000000000..9a3b91635241 --- /dev/null +++ b/data/software/ba/babeltrace.json @@ -0,0 +1,11 @@ +{ + "slug": "babeltrace", + "name": "Babeltrace", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116620785" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/ba/baby-food-allergy-tracker.json b/data/software/ba/baby-food-allergy-tracker.json new file mode 100644 index 000000000000..c12b640112e4 --- /dev/null +++ b/data/software/ba/baby-food-allergy-tracker.json @@ -0,0 +1,14 @@ +{ + "slug": "baby-food-allergy-tracker", + "name": "Baby Food & Allergy Tracker", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139997256" + ], + "operating_systems": [ + "iOS" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/ba/babylon.json b/data/software/ba/babylon.json new file mode 100644 index 000000000000..042fd2c8face --- /dev/null +++ b/data/software/ba/babylon.json @@ -0,0 +1,8 @@ +{ + "slug": "babylon", + "name": "Babylon", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q797941" + ] +} diff --git a/data/software/ba/backblaze.json b/data/software/ba/backblaze.json new file mode 100644 index 000000000000..6232f58a66da --- /dev/null +++ b/data/software/ba/backblaze.json @@ -0,0 +1,8 @@ +{ + "slug": "backblaze", + "name": "Backblaze", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4839566" + ] +} diff --git a/data/software/ba/backbone-one.json b/data/software/ba/backbone-one.json new file mode 100644 index 000000000000..071d1061c9b7 --- /dev/null +++ b/data/software/ba/backbone-one.json @@ -0,0 +1,8 @@ +{ + "slug": "backbone-one", + "name": "Backbone One", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107272294" + ] +} diff --git a/data/software/ba/backgammon.json b/data/software/ba/backgammon.json new file mode 100644 index 000000000000..0e7f0b4deafc --- /dev/null +++ b/data/software/ba/backgammon.json @@ -0,0 +1,8 @@ +{ + "slug": "backgammon", + "name": "Backgammon", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q90819942" + ] +} diff --git a/data/software/ba/backpack-for-parents.json b/data/software/ba/backpack-for-parents.json new file mode 100644 index 000000000000..40e7a27b55c9 --- /dev/null +++ b/data/software/ba/backpack-for-parents.json @@ -0,0 +1,12 @@ +{ + "slug": "backpack-for-parents", + "name": "backpack for parents", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125501093" + ], + "release_date": "2014-01-01", + "developers": [ + "Greenville County School District" + ] +} diff --git a/data/software/ba/backpack.json b/data/software/ba/backpack.json new file mode 100644 index 000000000000..2e3b8e77a598 --- /dev/null +++ b/data/software/ba/backpack.json @@ -0,0 +1,12 @@ +{ + "slug": "backpack", + "name": "backpack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125501072" + ], + "release_date": "2014-01-01", + "developers": [ + "Greenville County School District" + ] +} diff --git a/data/software/ba/backtrack.json b/data/software/ba/backtrack.json new file mode 100644 index 000000000000..5424b5c716eb --- /dev/null +++ b/data/software/ba/backtrack.json @@ -0,0 +1,14 @@ +{ + "slug": "backtrack", + "name": "Backtrack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135992085" + ], + "developers": [ + "Yac" + ], + "publishers": [ + "Yac" + ] +} diff --git a/data/software/ba/backup-express.json b/data/software/ba/backup-express.json new file mode 100644 index 000000000000..4d2436842949 --- /dev/null +++ b/data/software/ba/backup-express.json @@ -0,0 +1,8 @@ +{ + "slug": "backup-express", + "name": "Backup Express", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4839797" + ] +} diff --git a/data/software/ba/backupbluray.json b/data/software/ba/backupbluray.json new file mode 100644 index 000000000000..033d3d16bef0 --- /dev/null +++ b/data/software/ba/backupbluray.json @@ -0,0 +1,14 @@ +{ + "slug": "backupbluray", + "name": "BackupBluRay", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3632659" + ], + "programming_languages": [ + "Java" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/ba/backupninja.json b/data/software/ba/backupninja.json new file mode 100644 index 000000000000..ea6e3aba4847 --- /dev/null +++ b/data/software/ba/backupninja.json @@ -0,0 +1,8 @@ +{ + "slug": "backupninja", + "name": "backupninja", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62854991" + ] +} diff --git a/data/software/ba/baicizhan.json b/data/software/ba/baicizhan.json new file mode 100644 index 000000000000..89bb3fdcfca1 --- /dev/null +++ b/data/software/ba/baicizhan.json @@ -0,0 +1,11 @@ +{ + "slug": "baicizhan", + "name": "Baicizhan", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28410483" + ], + "operating_systems": [ + "iOS" + ] +} diff --git a/data/software/ba/baidu-browser.json b/data/software/ba/baidu-browser.json new file mode 100644 index 000000000000..352f1b9051fc --- /dev/null +++ b/data/software/ba/baidu-browser.json @@ -0,0 +1,12 @@ +{ + "slug": "baidu-browser", + "name": "Baidu Browser", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22773828" + ], + "release_date": "2011-01-01", + "developers": [ + "Baidu" + ] +} diff --git a/data/software/ba/bakeprofit.json b/data/software/ba/bakeprofit.json new file mode 100644 index 000000000000..90d8a953ea9e --- /dev/null +++ b/data/software/ba/bakeprofit.json @@ -0,0 +1,8 @@ +{ + "slug": "bakeprofit", + "name": "BakeProfit", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138972908" + ] +} diff --git a/data/software/ba/bakesale.json b/data/software/ba/bakesale.json new file mode 100644 index 000000000000..da4238331129 --- /dev/null +++ b/data/software/ba/bakesale.json @@ -0,0 +1,8 @@ +{ + "slug": "bakesale", + "name": "BakeSale", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4849050" + ] +} diff --git a/data/software/ba/bale.json b/data/software/ba/bale.json new file mode 100644 index 000000000000..3820a9d24ae6 --- /dev/null +++ b/data/software/ba/bale.json @@ -0,0 +1,11 @@ +{ + "slug": "bale", + "name": "Bale", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122781807" + ], + "operating_systems": [ + "iOS" + ] +} diff --git a/data/software/ba/bali-phy.json b/data/software/ba/bali-phy.json new file mode 100644 index 000000000000..3ed9141d40cd --- /dev/null +++ b/data/software/ba/bali-phy.json @@ -0,0 +1,8 @@ +{ + "slug": "bali-phy", + "name": "BAli-Phy", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q15637686" + ] +} diff --git a/data/software/ba/baloo-kcmadv.json b/data/software/ba/baloo-kcmadv.json new file mode 100644 index 000000000000..3c9a5bc4df02 --- /dev/null +++ b/data/software/ba/baloo-kcmadv.json @@ -0,0 +1,8 @@ +{ + "slug": "baloo-kcmadv", + "name": "baloo-kcmadv", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28941646" + ] +} diff --git a/data/software/ba/balsamiq.json b/data/software/ba/balsamiq.json new file mode 100644 index 000000000000..03131a03d758 --- /dev/null +++ b/data/software/ba/balsamiq.json @@ -0,0 +1,8 @@ +{ + "slug": "balsamiq", + "name": "Balsamiq", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4852549" + ] +} diff --git a/data/software/ba/bambi.json b/data/software/ba/bambi.json new file mode 100644 index 000000000000..dffc12366c79 --- /dev/null +++ b/data/software/ba/bambi.json @@ -0,0 +1,8 @@ +{ + "slug": "bambi", + "name": "Bambi", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127502331" + ] +} diff --git a/data/software/ba/bank-statement-pdf-converter.json b/data/software/ba/bank-statement-pdf-converter.json new file mode 100644 index 000000000000..9069ba5c5bc1 --- /dev/null +++ b/data/software/ba/bank-statement-pdf-converter.json @@ -0,0 +1,14 @@ +{ + "slug": "bank-statement-pdf-converter", + "name": "Bank Statement PDF Converter", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138472137" + ], + "developers": [ + "C. M. Leal Ltda" + ], + "operating_systems": [ + "macOS" + ] +} diff --git a/data/software/ba/bank-street-music-writer.json b/data/software/ba/bank-street-music-writer.json new file mode 100644 index 000000000000..2d25ee706c9a --- /dev/null +++ b/data/software/ba/bank-street-music-writer.json @@ -0,0 +1,11 @@ +{ + "slug": "bank-street-music-writer", + "name": "Bank Street Music Writer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4855984" + ], + "developers": [ + "Mindscape" + ] +} diff --git a/data/software/ba/banktivity.json b/data/software/ba/banktivity.json new file mode 100644 index 000000000000..56316155b00e --- /dev/null +++ b/data/software/ba/banktivity.json @@ -0,0 +1,8 @@ +{ + "slug": "banktivity", + "name": "Banktivity", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q55263591" + ] +} diff --git a/data/software/ba/banner-mania.json b/data/software/ba/banner-mania.json new file mode 100644 index 000000000000..527157a155c4 --- /dev/null +++ b/data/software/ba/banner-mania.json @@ -0,0 +1,12 @@ +{ + "slug": "banner-mania", + "name": "Banner Mania", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17150438" + ], + "operating_systems": [ + "Apple II", + "macOS" + ] +} diff --git a/data/software/ba/baob-xia.json b/data/software/ba/baob-xia.json new file mode 100644 index 000000000000..3a8305770674 --- /dev/null +++ b/data/software/ba/baob-xia.json @@ -0,0 +1,14 @@ +{ + "slug": "baob-xia", + "name": "Baobáxia", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140453434" + ], + "developers": [ + "Vince Tozzi" + ], + "licenses": [ + "GNU General Public License, version 3.0" + ] +} diff --git a/data/software/ba/barbie-mermaid-adventure.json b/data/software/ba/barbie-mermaid-adventure.json new file mode 100644 index 000000000000..30743d5ff40f --- /dev/null +++ b/data/software/ba/barbie-mermaid-adventure.json @@ -0,0 +1,8 @@ +{ + "slug": "barbie-mermaid-adventure", + "name": "Barbie Mermaid Adventure", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140462013" + ] +} diff --git a/data/software/ba/baron.json b/data/software/ba/baron.json new file mode 100644 index 000000000000..9ac13915d69f --- /dev/null +++ b/data/software/ba/baron.json @@ -0,0 +1,8 @@ +{ + "slug": "baron", + "name": "BARON", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4834638" + ] +} diff --git a/data/software/ba/bartok.json b/data/software/ba/bartok.json new file mode 100644 index 000000000000..876e78d5d232 --- /dev/null +++ b/data/software/ba/bartok.json @@ -0,0 +1,8 @@ +{ + "slug": "bartok", + "name": "Bartok", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4865479" + ] +} diff --git a/data/software/ba/bartpe.json b/data/software/ba/bartpe.json new file mode 100644 index 000000000000..44422e20f10d --- /dev/null +++ b/data/software/ba/bartpe.json @@ -0,0 +1,11 @@ +{ + "slug": "bartpe", + "name": "BartPE", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q773342" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/ba/bas-bayesian-variable-selection-and-model-averaging-using-bayesian-adaptive-sampling.json b/data/software/ba/bas-bayesian-variable-selection-and-model-averaging-using-bayesian-adaptive-sampling.json new file mode 100644 index 000000000000..ed929e8bc284 --- /dev/null +++ b/data/software/ba/bas-bayesian-variable-selection-and-model-averaging-using-bayesian-adaptive-sampling.json @@ -0,0 +1,14 @@ +{ + "slug": "bas-bayesian-variable-selection-and-model-averaging-using-bayesian-adaptive-sampling", + "name": "BAS: Bayesian Variable Selection and Model Averaging using Bayesian Adaptive Sampling", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q98974089" + ], + "programming_languages": [ + "R" + ], + "licenses": [ + "GNU General Public License" + ] +} diff --git a/data/software/ba/bas-business-automation-software.json b/data/software/ba/bas-business-automation-software.json new file mode 100644 index 000000000000..06e79bf99b03 --- /dev/null +++ b/data/software/ba/bas-business-automation-software.json @@ -0,0 +1,11 @@ +{ + "slug": "bas-business-automation-software", + "name": "BAS (Business automation software)", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105763677" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/ba/base4.json b/data/software/ba/base4.json new file mode 100644 index 000000000000..83b850082939 --- /dev/null +++ b/data/software/ba/base4.json @@ -0,0 +1,8 @@ +{ + "slug": "base4", + "name": "Base4", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4866353" + ] +} diff --git a/data/software/ba/basecamp-classic.json b/data/software/ba/basecamp-classic.json new file mode 100644 index 000000000000..ea3fa3e27139 --- /dev/null +++ b/data/software/ba/basecamp-classic.json @@ -0,0 +1,11 @@ +{ + "slug": "basecamp-classic", + "name": "Basecamp Classic", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2507535" + ], + "developers": [ + "Basecamp" + ] +} diff --git a/data/software/ba/basercms.json b/data/software/ba/basercms.json new file mode 100644 index 000000000000..41554d704e0b --- /dev/null +++ b/data/software/ba/basercms.json @@ -0,0 +1,11 @@ +{ + "slug": "basercms", + "name": "baserCMS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11192040" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/ba/baserow.json b/data/software/ba/baserow.json new file mode 100644 index 000000000000..670c4d7e0f32 --- /dev/null +++ b/data/software/ba/baserow.json @@ -0,0 +1,8 @@ +{ + "slug": "baserow", + "name": "Baserow", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107454027" + ] +} diff --git a/data/software/ba/bashburn.json b/data/software/ba/bashburn.json new file mode 100644 index 000000000000..b333d43487a0 --- /dev/null +++ b/data/software/ba/bashburn.json @@ -0,0 +1,8 @@ +{ + "slug": "bashburn", + "name": "BashBurn", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5721706" + ] +} diff --git a/data/software/ba/bashlite.json b/data/software/ba/bashlite.json new file mode 100644 index 000000000000..6c13b9c1a540 --- /dev/null +++ b/data/software/ba/bashlite.json @@ -0,0 +1,8 @@ +{ + "slug": "bashlite", + "name": "BASHLITE", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28135507" + ] +} diff --git a/data/software/ba/basic-11.json b/data/software/ba/basic-11.json new file mode 100644 index 000000000000..4ca9624facc4 --- /dev/null +++ b/data/software/ba/basic-11.json @@ -0,0 +1,11 @@ +{ + "slug": "basic-11", + "name": "BASIC-11", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4834659" + ], + "developers": [ + "Digital Equipment Corporation" + ] +} diff --git a/data/software/ba/basic-a.json b/data/software/ba/basic-a.json new file mode 100644 index 000000000000..335132a98f23 --- /dev/null +++ b/data/software/ba/basic-a.json @@ -0,0 +1,14 @@ +{ + "slug": "basic-a", + "name": "BASIC A+", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q465747" + ], + "developers": [ + "Optimized Systems Software" + ], + "operating_systems": [ + "Atari 8-bit family" + ] +} diff --git a/data/software/ba/basic-f.json b/data/software/ba/basic-f.json new file mode 100644 index 000000000000..b62b7f397876 --- /dev/null +++ b/data/software/ba/basic-f.json @@ -0,0 +1,8 @@ +{ + "slug": "basic-f", + "name": "BASIC-F", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121462477" + ] +} diff --git a/data/software/ba/basic-g.json b/data/software/ba/basic-g.json new file mode 100644 index 000000000000..05ba421aee5c --- /dev/null +++ b/data/software/ba/basic-g.json @@ -0,0 +1,8 @@ +{ + "slug": "basic-g", + "name": "BASIC-G", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121461913" + ] +} diff --git a/data/software/ba/basic-i.json b/data/software/ba/basic-i.json new file mode 100644 index 000000000000..fcc56a84e0ae --- /dev/null +++ b/data/software/ba/basic-i.json @@ -0,0 +1,8 @@ +{ + "slug": "basic-i", + "name": "BASIC-I", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121462451" + ] +} diff --git a/data/software/ba/basic-support-for-cooperative-work.json b/data/software/ba/basic-support-for-cooperative-work.json new file mode 100644 index 000000000000..1bbf380a2b6c --- /dev/null +++ b/data/software/ba/basic-support-for-cooperative-work.json @@ -0,0 +1,8 @@ +{ + "slug": "basic-support-for-cooperative-work", + "name": "Basic Support for Cooperative Work", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q352216" + ] +} diff --git a/data/software/ba/basis.json b/data/software/ba/basis.json new file mode 100644 index 000000000000..ada02c9ae861 --- /dev/null +++ b/data/software/ba/basis.json @@ -0,0 +1,8 @@ +{ + "slug": "basis", + "name": "Basis", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q58905107" + ] +} diff --git a/data/software/ba/bass.json b/data/software/ba/bass.json new file mode 100644 index 000000000000..ca1478ab5260 --- /dev/null +++ b/data/software/ba/bass.json @@ -0,0 +1,8 @@ +{ + "slug": "bass", + "name": "BASS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4034669" + ] +} diff --git a/data/software/ba/basset.json b/data/software/ba/basset.json new file mode 100644 index 000000000000..60f431e974b9 --- /dev/null +++ b/data/software/ba/basset.json @@ -0,0 +1,8 @@ +{ + "slug": "basset", + "name": "basset", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q74005540" + ] +} diff --git a/data/software/ba/bastille.json b/data/software/ba/bastille.json new file mode 100644 index 000000000000..cf90fc5a48ab --- /dev/null +++ b/data/software/ba/bastille.json @@ -0,0 +1,8 @@ +{ + "slug": "bastille", + "name": "bastille", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q88506467" + ] +} diff --git a/data/software/ba/batch-monitor.json b/data/software/ba/batch-monitor.json new file mode 100644 index 000000000000..74336c33c2e0 --- /dev/null +++ b/data/software/ba/batch-monitor.json @@ -0,0 +1,11 @@ +{ + "slug": "batch-monitor", + "name": "Batch Monitor", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4868708" + ], + "developers": [ + "Apple Inc." + ] +} diff --git a/data/software/ba/batchgeo.json b/data/software/ba/batchgeo.json new file mode 100644 index 000000000000..e3a7242b81d5 --- /dev/null +++ b/data/software/ba/batchgeo.json @@ -0,0 +1,8 @@ +{ + "slug": "batchgeo", + "name": "BatchGeo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084798" + ] +} diff --git a/data/software/ba/batchpipes.json b/data/software/ba/batchpipes.json new file mode 100644 index 000000000000..a3a3caf7bab6 --- /dev/null +++ b/data/software/ba/batchpipes.json @@ -0,0 +1,11 @@ +{ + "slug": "batchpipes", + "name": "BatchPipes", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4868701" + ], + "developers": [ + "IBM" + ] +} diff --git a/data/software/ba/batchpipeworks.json b/data/software/ba/batchpipeworks.json new file mode 100644 index 000000000000..f0fabbff2234 --- /dev/null +++ b/data/software/ba/batchpipeworks.json @@ -0,0 +1,11 @@ +{ + "slug": "batchpipeworks", + "name": "BatchPipeWorks", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28922399" + ], + "developers": [ + "IBM" + ] +} diff --git a/data/software/ba/battlezone-98-redux.json b/data/software/ba/battlezone-98-redux.json new file mode 100644 index 000000000000..53f0919a487a --- /dev/null +++ b/data/software/ba/battlezone-98-redux.json @@ -0,0 +1,20 @@ +{ + "slug": "battlezone-98-redux", + "name": "Battlezone 98 Redux", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q89288127" + ], + "release_date": "2016-04-18", + "developers": [ + "Big Boat Interactive" + ], + "publishers": [ + "Rebellion Developments" + ], + "genres": [ + "real-time strategy", + "strategy video game", + "shooter game" + ] +} diff --git a/data/software/ba/battmo.json b/data/software/ba/battmo.json new file mode 100644 index 000000000000..65253fc2bf99 --- /dev/null +++ b/data/software/ba/battmo.json @@ -0,0 +1,16 @@ +{ + "slug": "battmo", + "name": "BattMo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120764444" + ], + "developers": [ + "August Johansson", + "Xavier Raynaud", + "Halvor Møll Nilsen", + "Simon Clark", + "Eibar Flores", + "Francesca Watson" + ] +} diff --git a/data/software/ba/baudline.json b/data/software/ba/baudline.json new file mode 100644 index 000000000000..f0c014c043a8 --- /dev/null +++ b/data/software/ba/baudline.json @@ -0,0 +1,14 @@ +{ + "slug": "baudline", + "name": "Baudline", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q301272" + ], + "release_date": "2000-09-01", + "operating_systems": [ + "Solaris", + "FreeBSD", + "macOS" + ] +} diff --git a/data/software/ba/bavar-t.json b/data/software/ba/bavar-t.json new file mode 100644 index 000000000000..1e5176460524 --- /dev/null +++ b/data/software/ba/bavar-t.json @@ -0,0 +1,11 @@ +{ + "slug": "bavar-t", + "name": "BavAR[t]", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139492974" + ], + "developers": [ + "AR[t] Studio" + ] +} diff --git a/data/software/ba/baypoint-ai.json b/data/software/ba/baypoint-ai.json new file mode 100644 index 000000000000..6ddd5171f358 --- /dev/null +++ b/data/software/ba/baypoint-ai.json @@ -0,0 +1,8 @@ +{ + "slug": "baypoint-ai", + "name": "BayPoint AI", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139548244" + ] +} diff --git a/data/software/bb/bbc-fdc.json b/data/software/bb/bbc-fdc.json new file mode 100644 index 000000000000..ffefd817dc3e --- /dev/null +++ b/data/software/bb/bbc-fdc.json @@ -0,0 +1,11 @@ +{ + "slug": "bbc-fdc", + "name": "bbc-fdc", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q83883726" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/bb/bbc-radio-explorer.json b/data/software/bb/bbc-radio-explorer.json new file mode 100644 index 000000000000..df376e0741b3 --- /dev/null +++ b/data/software/bb/bbc-radio-explorer.json @@ -0,0 +1,8 @@ +{ + "slug": "bbc-radio-explorer", + "name": "BBC Radio Explorer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q65083773" + ] +} diff --git a/data/software/bb/bbc-store.json b/data/software/bb/bbc-store.json new file mode 100644 index 000000000000..0c2e0d051756 --- /dev/null +++ b/data/software/bb/bbc-store.json @@ -0,0 +1,12 @@ +{ + "slug": "bbc-store", + "name": "BBC Store", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q20313081" + ], + "release_date": "2015-11-05", + "developers": [ + "BBC Worldwide" + ] +} diff --git a/data/software/bb/bbedit-lite.json b/data/software/bb/bbedit-lite.json new file mode 100644 index 000000000000..3f21e2ae62b7 --- /dev/null +++ b/data/software/bb/bbedit-lite.json @@ -0,0 +1,8 @@ +{ + "slug": "bbedit-lite", + "name": "BBEdit Lite", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4835035" + ] +} diff --git a/data/software/bb/bbm-enterprise.json b/data/software/bb/bbm-enterprise.json new file mode 100644 index 000000000000..c0f3866d4036 --- /dev/null +++ b/data/software/bb/bbm-enterprise.json @@ -0,0 +1,8 @@ +{ + "slug": "bbm-enterprise", + "name": "BBM Enterprise", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108770071" + ] +} diff --git a/data/software/bb/bbt-backbone-thesaurus.json b/data/software/bb/bbt-backbone-thesaurus.json new file mode 100644 index 000000000000..6a81a5a64bb0 --- /dev/null +++ b/data/software/bb/bbt-backbone-thesaurus.json @@ -0,0 +1,8 @@ +{ + "slug": "bbt-backbone-thesaurus", + "name": "BBT - BackBone Thesaurus", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084799" + ] +} diff --git a/data/software/bb/bbtime.json b/data/software/bb/bbtime.json new file mode 100644 index 000000000000..3edf8aab28d3 --- /dev/null +++ b/data/software/bb/bbtime.json @@ -0,0 +1,8 @@ +{ + "slug": "bbtime", + "name": "bbtime", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065518" + ] +} diff --git a/data/software/bc/bcbio-nextgen.json b/data/software/bc/bcbio-nextgen.json new file mode 100644 index 000000000000..bb51905c90f5 --- /dev/null +++ b/data/software/bc/bcbio-nextgen.json @@ -0,0 +1,14 @@ +{ + "slug": "bcbio-nextgen", + "name": "bcbio-nextgen", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113046676" + ], + "programming_languages": [ + "Python" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/bc/bcdedit.json b/data/software/bc/bcdedit.json new file mode 100644 index 000000000000..4e616c49752e --- /dev/null +++ b/data/software/bc/bcdedit.json @@ -0,0 +1,11 @@ +{ + "slug": "bcdedit", + "name": "BCDEdit", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q94329642" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/bd/bdelta.json b/data/software/bd/bdelta.json new file mode 100644 index 000000000000..032cf059c440 --- /dev/null +++ b/data/software/bd/bdelta.json @@ -0,0 +1,17 @@ +{ + "slug": "bdelta", + "name": "bdelta", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28941650" + ], + "operating_systems": [ + "cross-platform" + ], + "programming_languages": [ + "Python" + ], + "licenses": [ + "Mozilla Public License" + ] +} diff --git a/data/software/bd/bdii.json b/data/software/bd/bdii.json new file mode 100644 index 000000000000..015aa79dbef3 --- /dev/null +++ b/data/software/bd/bdii.json @@ -0,0 +1,8 @@ +{ + "slug": "bdii", + "name": "BDII", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4835367" + ] +} diff --git a/data/software/bd/bdv-notepad.json b/data/software/bd/bdv-notepad.json new file mode 100644 index 000000000000..aad961315e6f --- /dev/null +++ b/data/software/bd/bdv-notepad.json @@ -0,0 +1,8 @@ +{ + "slug": "bdv-notepad", + "name": "BDV Notepad", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q12062559" + ] +} diff --git a/data/software/be/beacon-designer.json b/data/software/be/beacon-designer.json new file mode 100644 index 000000000000..748adb4aa952 --- /dev/null +++ b/data/software/be/beacon-designer.json @@ -0,0 +1,11 @@ +{ + "slug": "beacon-designer", + "name": "Beacon designer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4876002" + ], + "developers": [ + "Premier Biosoft" + ] +} diff --git a/data/software/be/bearnie.json b/data/software/be/bearnie.json new file mode 100644 index 000000000000..c3d464a13b78 --- /dev/null +++ b/data/software/be/bearnie.json @@ -0,0 +1,11 @@ +{ + "slug": "bearnie", + "name": "Bearnie", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140378005" + ], + "developers": [ + "Michael Andreuzza" + ] +} diff --git a/data/software/be/bearshare.json b/data/software/be/bearshare.json new file mode 100644 index 000000000000..f4276b651a1c --- /dev/null +++ b/data/software/be/bearshare.json @@ -0,0 +1,14 @@ +{ + "slug": "bearshare", + "name": "BearShare", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q596031" + ], + "developers": [ + "Vinnie Falco" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/be/beartooth-radio.json b/data/software/be/beartooth-radio.json new file mode 100644 index 000000000000..01fe5b42a4c8 --- /dev/null +++ b/data/software/be/beartooth-radio.json @@ -0,0 +1,9 @@ +{ + "slug": "beartooth-radio", + "name": "Beartooth Radio", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25324212" + ], + "release_date": "2017-05-01" +} diff --git a/data/software/be/beast-2.json b/data/software/be/beast-2.json new file mode 100644 index 000000000000..35c0037b821a --- /dev/null +++ b/data/software/be/beast-2.json @@ -0,0 +1,11 @@ +{ + "slug": "beast-2", + "name": "BEAST 2", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112030069" + ], + "programming_languages": [ + "Java" + ] +} diff --git a/data/software/be/beast.json b/data/software/be/beast.json new file mode 100644 index 000000000000..9db10dfaf531 --- /dev/null +++ b/data/software/be/beast.json @@ -0,0 +1,11 @@ +{ + "slug": "beast", + "name": "Beast", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4876841" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/be/beatroot.json b/data/software/be/beatroot.json new file mode 100644 index 000000000000..7d4a5539e787 --- /dev/null +++ b/data/software/be/beatroot.json @@ -0,0 +1,8 @@ +{ + "slug": "beatroot", + "name": "BeatRoot", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q20313156" + ] +} diff --git a/data/software/be/bedoma.json b/data/software/be/bedoma.json new file mode 100644 index 000000000000..bd4aaa3a50a0 --- /dev/null +++ b/data/software/be/bedoma.json @@ -0,0 +1,11 @@ +{ + "slug": "bedoma", + "name": "Bedoma", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139681244" + ], + "genres": [ + "educational software" + ] +} diff --git a/data/software/be/bedpostx.json b/data/software/be/bedpostx.json new file mode 100644 index 000000000000..7201575d348b --- /dev/null +++ b/data/software/be/bedpostx.json @@ -0,0 +1,8 @@ +{ + "slug": "bedpostx", + "name": "BEDPOSTX", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108716903" + ] +} diff --git a/data/software/be/bedtools.json b/data/software/be/bedtools.json new file mode 100644 index 000000000000..6a990e9bd480 --- /dev/null +++ b/data/software/be/bedtools.json @@ -0,0 +1,8 @@ +{ + "slug": "bedtools", + "name": "BEDtools", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113017825" + ] +} diff --git a/data/software/be/beebole.json b/data/software/be/beebole.json new file mode 100644 index 000000000000..993200218092 --- /dev/null +++ b/data/software/be/beebole.json @@ -0,0 +1,14 @@ +{ + "slug": "beebole", + "name": "Beebole", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135156306" + ], + "developers": [ + "Beebole" + ], + "operating_systems": [ + "cross-platform" + ] +} diff --git a/data/software/be/beeceptor.json b/data/software/be/beeceptor.json new file mode 100644 index 000000000000..1532933083c5 --- /dev/null +++ b/data/software/be/beeceptor.json @@ -0,0 +1,11 @@ +{ + "slug": "beeceptor", + "name": "Beeceptor", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136688633" + ], + "developers": [ + "Ankit Jain" + ] +} diff --git a/data/software/be/beegfs.json b/data/software/be/beegfs.json new file mode 100644 index 000000000000..48e72a0bb1ec --- /dev/null +++ b/data/software/be/beegfs.json @@ -0,0 +1,11 @@ +{ + "slug": "beegfs", + "name": "BeeGFS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1418202" + ], + "developers": [ + "Fraunhofer Society" + ] +} diff --git a/data/software/be/beepcar.json b/data/software/be/beepcar.json new file mode 100644 index 000000000000..7bfeb3bc4810 --- /dev/null +++ b/data/software/be/beepcar.json @@ -0,0 +1,15 @@ +{ + "slug": "beepcar", + "name": "BeepCar", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28866020" + ], + "release_date": "2017-02-06", + "operating_systems": [ + "iOS" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/be/beerwin-s-plainhtml.json b/data/software/be/beerwin-s-plainhtml.json new file mode 100644 index 000000000000..937772e24c2e --- /dev/null +++ b/data/software/be/beerwin-s-plainhtml.json @@ -0,0 +1,8 @@ +{ + "slug": "beerwin-s-plainhtml", + "name": "Beerwin’s PlainHTML", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q791965" + ] +} diff --git a/data/software/be/beesafe.json b/data/software/be/beesafe.json new file mode 100644 index 000000000000..1326fb110bc0 --- /dev/null +++ b/data/software/be/beesafe.json @@ -0,0 +1,11 @@ +{ + "slug": "beesafe", + "name": "BeeSafe", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q26793405" + ], + "operating_systems": [ + "iOS" + ] +} diff --git a/data/software/be/beetalk.json b/data/software/be/beetalk.json new file mode 100644 index 000000000000..4415d68218dd --- /dev/null +++ b/data/software/be/beetalk.json @@ -0,0 +1,8 @@ +{ + "slug": "beetalk", + "name": "BeeTalk", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q19892049" + ] +} diff --git a/data/software/be/beetle-buggin.json b/data/software/be/beetle-buggin.json new file mode 100644 index 000000000000..029d5d5d0d45 --- /dev/null +++ b/data/software/be/beetle-buggin.json @@ -0,0 +1,8 @@ +{ + "slug": "beetle-buggin", + "name": "Beetle Buggin", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140390658" + ] +} diff --git a/data/software/be/behafizh.json b/data/software/be/behafizh.json new file mode 100644 index 000000000000..a938933df061 --- /dev/null +++ b/data/software/be/behafizh.json @@ -0,0 +1,8 @@ +{ + "slug": "behafizh", + "name": "BeHafizh", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28725391" + ] +} diff --git a/data/software/be/beli.json b/data/software/be/beli.json new file mode 100644 index 000000000000..b5134b5cad7c --- /dev/null +++ b/data/software/be/beli.json @@ -0,0 +1,8 @@ +{ + "slug": "beli", + "name": "Beli", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136106866" + ] +} diff --git a/data/software/be/belkart-pay.json b/data/software/be/belkart-pay.json new file mode 100644 index 000000000000..4e4223d13152 --- /dev/null +++ b/data/software/be/belkart-pay.json @@ -0,0 +1,11 @@ +{ + "slug": "belkart-pay", + "name": "Belkart Pay", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124378011" + ], + "developers": [ + "Bankawski pracesinhavy centar" + ] +} diff --git a/data/software/be/bellerophon.json b/data/software/be/bellerophon.json new file mode 100644 index 000000000000..5a747eaddb27 --- /dev/null +++ b/data/software/be/bellerophon.json @@ -0,0 +1,8 @@ +{ + "slug": "bellerophon", + "name": "Bellerophon", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4883812" + ] +} diff --git a/data/software/be/ben-and-ed.json b/data/software/be/ben-and-ed.json new file mode 100644 index 000000000000..6e681b19293b --- /dev/null +++ b/data/software/be/ben-and-ed.json @@ -0,0 +1,18 @@ +{ + "slug": "ben-and-ed", + "name": "Ben and Ed", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q98971784" + ], + "release_date": "2015-12-08", + "developers": [ + "Sluggerfly" + ], + "publishers": [ + "Sluggerfly" + ], + "genres": [ + "platformer" + ] +} diff --git a/data/software/be/benchit.json b/data/software/be/benchit.json new file mode 100644 index 000000000000..5e2977b625df --- /dev/null +++ b/data/software/be/benchit.json @@ -0,0 +1,8 @@ +{ + "slug": "benchit", + "name": "BenchIT", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q816711" + ] +} diff --git a/data/software/be/benmap.json b/data/software/be/benmap.json new file mode 100644 index 000000000000..3426a6d30509 --- /dev/null +++ b/data/software/be/benmap.json @@ -0,0 +1,8 @@ +{ + "slug": "benmap", + "name": "Benmap", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4889575" + ] +} diff --git a/data/software/be/berkeley-madonna.json b/data/software/be/berkeley-madonna.json new file mode 100644 index 000000000000..c2e1b0e21a02 --- /dev/null +++ b/data/software/be/berkeley-madonna.json @@ -0,0 +1,18 @@ +{ + "slug": "berkeley-madonna", + "name": "Berkeley Madonna", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18357603" + ], + "developers": [ + "George Oster" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [ + "Java" + ] +} diff --git a/data/software/be/berkeley-parser.json b/data/software/be/berkeley-parser.json new file mode 100644 index 000000000000..054ea2db5bdf --- /dev/null +++ b/data/software/be/berkeley-parser.json @@ -0,0 +1,8 @@ +{ + "slug": "berkeley-parser", + "name": "Berkeley Parser", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084800" + ] +} diff --git a/data/software/be/berta-rudi.json b/data/software/be/berta-rudi.json new file mode 100644 index 000000000000..8ace21f67cb1 --- /dev/null +++ b/data/software/be/berta-rudi.json @@ -0,0 +1,8 @@ +{ + "slug": "berta-rudi", + "name": "berta & rudi", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140043513" + ] +} diff --git a/data/software/be/bespokesynth.json b/data/software/be/bespokesynth.json new file mode 100644 index 000000000000..5664546df2e3 --- /dev/null +++ b/data/software/be/bespokesynth.json @@ -0,0 +1,8 @@ +{ + "slug": "bespokesynth", + "name": "BespokeSynth", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124022556" + ] +} diff --git a/data/software/be/bestmarc.json b/data/software/be/bestmarc.json new file mode 100644 index 000000000000..bafd07505d43 --- /dev/null +++ b/data/software/be/bestmarc.json @@ -0,0 +1,8 @@ +{ + "slug": "bestmarc", + "name": "BestMARC", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q78358769" + ] +} diff --git a/data/software/be/better-safe-than-sorry.json b/data/software/be/better-safe-than-sorry.json new file mode 100644 index 000000000000..3cfb25f11dcf --- /dev/null +++ b/data/software/be/better-safe-than-sorry.json @@ -0,0 +1,11 @@ +{ + "slug": "better-safe-than-sorry", + "name": "Better-Safe-Than-Sorry", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127485253" + ], + "licenses": [ + "Apache Software License 2.0" + ] +} diff --git a/data/software/be/beyond-compare.json b/data/software/be/beyond-compare.json new file mode 100644 index 000000000000..6d4b184ea54b --- /dev/null +++ b/data/software/be/beyond-compare.json @@ -0,0 +1,9 @@ +{ + "slug": "beyond-compare", + "name": "Beyond Compare", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4899956" + ], + "release_date": "1996-01-01" +} diff --git a/data/software/be/beyond-english.json b/data/software/be/beyond-english.json new file mode 100644 index 000000000000..a39250c42d4f --- /dev/null +++ b/data/software/be/beyond-english.json @@ -0,0 +1,8 @@ +{ + "slug": "beyond-english", + "name": "Beyond English", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106515669" + ] +} diff --git a/data/software/be/beyond-maths.json b/data/software/be/beyond-maths.json new file mode 100644 index 000000000000..74061c42361f --- /dev/null +++ b/data/software/be/beyond-maths.json @@ -0,0 +1,8 @@ +{ + "slug": "beyond-maths", + "name": "Beyond Maths", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106515696" + ] +} diff --git a/data/software/be/beyond-science.json b/data/software/be/beyond-science.json new file mode 100644 index 000000000000..205a33491b96 --- /dev/null +++ b/data/software/be/beyond-science.json @@ -0,0 +1,8 @@ +{ + "slug": "beyond-science", + "name": "Beyond Science", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106515718" + ] +} diff --git a/data/software/be/beyond-tv.json b/data/software/be/beyond-tv.json new file mode 100644 index 000000000000..4d56c2f6511f --- /dev/null +++ b/data/software/be/beyond-tv.json @@ -0,0 +1,9 @@ +{ + "slug": "beyond-tv", + "name": "Beyond TV", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4900032" + ], + "release_date": "2000-01-01" +} diff --git a/data/software/be/beyz.json b/data/software/be/beyz.json new file mode 100644 index 000000000000..e774d1cb174c --- /dev/null +++ b/data/software/be/beyz.json @@ -0,0 +1,14 @@ +{ + "slug": "beyz", + "name": "Beyz", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140144398" + ], + "operating_systems": [ + "web application", + "Google Play", + "iOS", + "cross-platform" + ] +} diff --git a/data/software/bg/bgs-groundhog-desktop.json b/data/software/bg/bgs-groundhog-desktop.json new file mode 100644 index 000000000000..957c1426e4f4 --- /dev/null +++ b/data/software/bg/bgs-groundhog-desktop.json @@ -0,0 +1,8 @@ +{ + "slug": "bgs-groundhog-desktop", + "name": "BGS Groundhog Desktop", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q65082637" + ] +} diff --git a/data/software/bh/bhuvan.json b/data/software/bh/bhuvan.json new file mode 100644 index 000000000000..f81097911ac3 --- /dev/null +++ b/data/software/bh/bhuvan.json @@ -0,0 +1,11 @@ +{ + "slug": "bhuvan", + "name": "Bhuvan", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2900724" + ], + "developers": [ + "Indian Space Research Organisation" + ] +} diff --git a/data/software/bi/biasly.json b/data/software/bi/biasly.json new file mode 100644 index 000000000000..a18dbf95e98a --- /dev/null +++ b/data/software/bi/biasly.json @@ -0,0 +1,8 @@ +{ + "slug": "biasly", + "name": "Biasly", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125210523" + ] +} diff --git a/data/software/bi/bibapp.json b/data/software/bi/bibapp.json new file mode 100644 index 000000000000..486dbd41e835 --- /dev/null +++ b/data/software/bi/bibapp.json @@ -0,0 +1,8 @@ +{ + "slug": "bibapp", + "name": "BibApp", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084801" + ] +} diff --git a/data/software/bi/bibcon.json b/data/software/bi/bibcon.json new file mode 100644 index 000000000000..06612ea9064e --- /dev/null +++ b/data/software/bi/bibcon.json @@ -0,0 +1,8 @@ +{ + "slug": "bibcon", + "name": "BIBCON", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087777" + ] +} diff --git a/data/software/bi/biber.json b/data/software/bi/biber.json new file mode 100644 index 000000000000..fb89ad6a726a --- /dev/null +++ b/data/software/bi/biber.json @@ -0,0 +1,14 @@ +{ + "slug": "biber", + "name": "Biber", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4902993" + ], + "operating_systems": [ + "cross-platform" + ], + "licenses": [ + "Artistic License 2.0" + ] +} diff --git a/data/software/bi/bibexcel.json b/data/software/bi/bibexcel.json new file mode 100644 index 000000000000..477110f6d6e1 --- /dev/null +++ b/data/software/bi/bibexcel.json @@ -0,0 +1,8 @@ +{ + "slug": "bibexcel", + "name": "BibExcel", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084803" + ] +} diff --git a/data/software/bi/bibi.json b/data/software/bi/bibi.json new file mode 100644 index 000000000000..c8ee48d372c1 --- /dev/null +++ b/data/software/bi/bibi.json @@ -0,0 +1,8 @@ +{ + "slug": "bibi", + "name": "BiBi", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q12303372" + ] +} diff --git a/data/software/bi/bibliogo.json b/data/software/bi/bibliogo.json new file mode 100644 index 000000000000..412ad12f1f32 --- /dev/null +++ b/data/software/bi/bibliogo.json @@ -0,0 +1,8 @@ +{ + "slug": "bibliogo", + "name": "Bibliogo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084804" + ] +} diff --git a/data/software/bi/bibliography-doing-digital-humanities.json b/data/software/bi/bibliography-doing-digital-humanities.json new file mode 100644 index 000000000000..adbc2909fe4d --- /dev/null +++ b/data/software/bi/bibliography-doing-digital-humanities.json @@ -0,0 +1,8 @@ +{ + "slug": "bibliography-doing-digital-humanities", + "name": "Bibliography Doing Digital Humanities", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084805" + ] +} diff --git a/data/software/bi/bibliometrix.json b/data/software/bi/bibliometrix.json new file mode 100644 index 000000000000..e85a0b248c75 --- /dev/null +++ b/data/software/bi/bibliometrix.json @@ -0,0 +1,14 @@ +{ + "slug": "bibliometrix", + "name": "Bibliometrix", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28404211" + ], + "programming_languages": [ + "R" + ], + "licenses": [ + "GNU General Public License, version 2.0 or later" + ] +} diff --git a/data/software/bi/biblioteca-anatomica.json b/data/software/bi/biblioteca-anatomica.json new file mode 100644 index 000000000000..0b6eb41a904e --- /dev/null +++ b/data/software/bi/biblioteca-anatomica.json @@ -0,0 +1,8 @@ +{ + "slug": "biblioteca-anatomica", + "name": "Biblioteca anatomica", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084806" + ] +} diff --git a/data/software/bi/bibtex.json b/data/software/bi/bibtex.json new file mode 100644 index 000000000000..c7faa467affa --- /dev/null +++ b/data/software/bi/bibtex.json @@ -0,0 +1,18 @@ +{ + "slug": "bibtex", + "name": "BibTeX", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8029" + ], + "developers": [ + "Oren Patashnik" + ], + "operating_systems": [ + "Unix-like operating system", + "Microsoft Windows" + ], + "programming_languages": [ + "WEB" + ] +} diff --git a/data/software/bi/bibtex2html.json b/data/software/bi/bibtex2html.json new file mode 100644 index 000000000000..2ad2ad421477 --- /dev/null +++ b/data/software/bi/bibtex2html.json @@ -0,0 +1,8 @@ +{ + "slug": "bibtex2html", + "name": "bibtex2html", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60918182" + ] +} diff --git a/data/software/bi/bibtex4word.json b/data/software/bi/bibtex4word.json new file mode 100644 index 000000000000..35dcfd619d05 --- /dev/null +++ b/data/software/bi/bibtex4word.json @@ -0,0 +1,8 @@ +{ + "slug": "bibtex4word", + "name": "BibTeX4Word", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q856017" + ] +} diff --git a/data/software/bi/bibwiki.json b/data/software/bi/bibwiki.json new file mode 100644 index 000000000000..90929ebd8788 --- /dev/null +++ b/data/software/bi/bibwiki.json @@ -0,0 +1,15 @@ +{ + "slug": "bibwiki", + "name": "BibWiki", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105748768" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "licenses": [ + "GNU General Public License, version 2.0" + ] +} diff --git a/data/software/bi/bic-platform.json b/data/software/bi/bic-platform.json new file mode 100644 index 000000000000..e7a45a585c03 --- /dev/null +++ b/data/software/bi/bic-platform.json @@ -0,0 +1,8 @@ +{ + "slug": "bic-platform", + "name": "BIC Platform", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q66768685" + ] +} diff --git a/data/software/bi/bicom-systems.json b/data/software/bi/bicom-systems.json new file mode 100644 index 000000000000..21e745d3958b --- /dev/null +++ b/data/software/bi/bicom-systems.json @@ -0,0 +1,11 @@ +{ + "slug": "bicom-systems", + "name": "Bicom Systems", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q24884170" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/bi/bielik.json b/data/software/bi/bielik.json new file mode 100644 index 000000000000..88903a1d4220 --- /dev/null +++ b/data/software/bi/bielik.json @@ -0,0 +1,11 @@ +{ + "slug": "bielik", + "name": "Bielik", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q133696013" + ], + "licenses": [ + "Apache Software License 2.0" + ] +} diff --git a/data/software/bi/bifrost.json b/data/software/bi/bifrost.json new file mode 100644 index 000000000000..d7707601ab94 --- /dev/null +++ b/data/software/bi/bifrost.json @@ -0,0 +1,12 @@ +{ + "slug": "bifrost", + "name": "Bifrost", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110943457" + ], + "release_date": "2019-01-01", + "developers": [ + "Autodesk" + ] +} diff --git a/data/software/bi/big-al-software.json b/data/software/bi/big-al-software.json new file mode 100644 index 000000000000..da65987f4041 --- /dev/null +++ b/data/software/bi/big-al-software.json @@ -0,0 +1,12 @@ +{ + "slug": "big-al-software", + "name": "Big Al (software)", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q23297255" + ], + "release_date": "2009-12-22", + "developers": [ + "PowerFX" + ] +} diff --git a/data/software/bi/big-brother.json b/data/software/bi/big-brother.json new file mode 100644 index 000000000000..c131f66a8d6f --- /dev/null +++ b/data/software/bi/big-brother.json @@ -0,0 +1,9 @@ +{ + "slug": "big-brother", + "name": "Big Brother", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q858585" + ], + "release_date": "1996-11-01" +} diff --git a/data/software/bi/big-sister.json b/data/software/bi/big-sister.json new file mode 100644 index 000000000000..e23e04252b3e --- /dev/null +++ b/data/software/bi/big-sister.json @@ -0,0 +1,8 @@ +{ + "slug": "big-sister", + "name": "Big Sister", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q858386" + ] +} diff --git a/data/software/bi/bigcouch.json b/data/software/bi/bigcouch.json new file mode 100644 index 000000000000..1abac123c4f3 --- /dev/null +++ b/data/software/bi/bigcouch.json @@ -0,0 +1,17 @@ +{ + "slug": "bigcouch", + "name": "BigCouch", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4904859" + ], + "developers": [ + "Cloudant" + ], + "operating_systems": [ + "cross-platform" + ], + "licenses": [ + "Apache License" + ] +} diff --git a/data/software/bi/bigdataviewer.json b/data/software/bi/bigdataviewer.json new file mode 100644 index 000000000000..c86f687fa6d7 --- /dev/null +++ b/data/software/bi/bigdataviewer.json @@ -0,0 +1,8 @@ +{ + "slug": "bigdataviewer", + "name": "BigDataViewer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113050269" + ] +} diff --git a/data/software/bi/bigdl.json b/data/software/bi/bigdl.json new file mode 100644 index 000000000000..65d09d096f42 --- /dev/null +++ b/data/software/bi/bigdl.json @@ -0,0 +1,8 @@ +{ + "slug": "bigdl", + "name": "BigDL", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q39059716" + ] +} diff --git a/data/software/bi/bigmarker.json b/data/software/bi/bigmarker.json new file mode 100644 index 000000000000..11302b2f08e3 --- /dev/null +++ b/data/software/bi/bigmarker.json @@ -0,0 +1,11 @@ +{ + "slug": "bigmarker", + "name": "BigMarker", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q20313316" + ], + "developers": [ + "BigMarker" + ] +} diff --git a/data/software/bi/bigquery-data-transfer-service.json b/data/software/bi/bigquery-data-transfer-service.json new file mode 100644 index 000000000000..a34f537401ce --- /dev/null +++ b/data/software/bi/bigquery-data-transfer-service.json @@ -0,0 +1,11 @@ +{ + "slug": "bigquery-data-transfer-service", + "name": "BigQuery Data Transfer Service", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60022847" + ], + "developers": [ + "Google" + ] +} diff --git a/data/software/bi/bigquery.json b/data/software/bi/bigquery.json new file mode 100644 index 000000000000..37251e2c5eeb --- /dev/null +++ b/data/software/bi/bigquery.json @@ -0,0 +1,12 @@ +{ + "slug": "bigquery", + "name": "BigQuery", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4904867" + ], + "release_date": "2010-05-19", + "developers": [ + "Google" + ] +} diff --git a/data/software/bi/bijoy-keyboard.json b/data/software/bi/bijoy-keyboard.json new file mode 100644 index 000000000000..2652e22a5eba --- /dev/null +++ b/data/software/bi/bijoy-keyboard.json @@ -0,0 +1,8 @@ +{ + "slug": "bijoy-keyboard", + "name": "Bijoy Keyboard", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106574784" + ] +} diff --git a/data/software/bi/bilbao-crystallographic-server.json b/data/software/bi/bilbao-crystallographic-server.json new file mode 100644 index 000000000000..fbe96536a345 --- /dev/null +++ b/data/software/bi/bilbao-crystallographic-server.json @@ -0,0 +1,8 @@ +{ + "slug": "bilbao-crystallographic-server", + "name": "Bilbao Crystallographic Server", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4907601" + ] +} diff --git a/data/software/bi/bilby.json b/data/software/bi/bilby.json new file mode 100644 index 000000000000..af044513a5df --- /dev/null +++ b/data/software/bi/bilby.json @@ -0,0 +1,17 @@ +{ + "slug": "bilby", + "name": "Bilby", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63968347" + ], + "developers": [ + "LIGO Scientific Collaboration" + ], + "programming_languages": [ + "Python" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/bi/bimx.json b/data/software/bi/bimx.json new file mode 100644 index 000000000000..bb6949bf42a5 --- /dev/null +++ b/data/software/bi/bimx.json @@ -0,0 +1,14 @@ +{ + "slug": "bimx", + "name": "BIMx", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q129636" + ], + "developers": [ + "Graphisoft SE" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/bi/bin2svg.json b/data/software/bi/bin2svg.json new file mode 100644 index 000000000000..ff5408027249 --- /dev/null +++ b/data/software/bi/bin2svg.json @@ -0,0 +1,12 @@ +{ + "slug": "bin2svg", + "name": "bin2svg", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137602880" + ], + "programming_languages": [ + "Python", + "MATLAB" + ] +} diff --git a/data/software/bi/bin86.json b/data/software/bi/bin86.json new file mode 100644 index 000000000000..55c4bea85c85 --- /dev/null +++ b/data/software/bi/bin86.json @@ -0,0 +1,8 @@ +{ + "slug": "bin86", + "name": "bin86", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62846162" + ] +} diff --git a/data/software/bi/binary-ninja.json b/data/software/bi/binary-ninja.json new file mode 100644 index 000000000000..7737ae79412e --- /dev/null +++ b/data/software/bi/binary-ninja.json @@ -0,0 +1,11 @@ +{ + "slug": "binary-ninja", + "name": "Binary Ninja", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q97738360" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/bi/bing-maps-platform.json b/data/software/bi/bing-maps-platform.json new file mode 100644 index 000000000000..11cad00a152b --- /dev/null +++ b/data/software/bi/bing-maps-platform.json @@ -0,0 +1,14 @@ +{ + "slug": "bing-maps-platform", + "name": "Bing Maps Platform", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q151524" + ], + "developers": [ + "Microsoft" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/bi/bing-mobile.json b/data/software/bi/bing-mobile.json new file mode 100644 index 000000000000..ef736bcb5b5f --- /dev/null +++ b/data/software/bi/bing-mobile.json @@ -0,0 +1,14 @@ +{ + "slug": "bing-mobile", + "name": "Bing Mobile", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4914139" + ], + "developers": [ + "Microsoft" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/bi/bing-product-upload.json b/data/software/bi/bing-product-upload.json new file mode 100644 index 000000000000..e8a2d0d771b6 --- /dev/null +++ b/data/software/bi/bing-product-upload.json @@ -0,0 +1,11 @@ +{ + "slug": "bing-product-upload", + "name": "Bing Product Upload", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4914143" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/bi/bing-shopping.json b/data/software/bi/bing-shopping.json new file mode 100644 index 000000000000..2191fe94bd3e --- /dev/null +++ b/data/software/bi/bing-shopping.json @@ -0,0 +1,11 @@ +{ + "slug": "bing-shopping", + "name": "Bing Shopping", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2903932" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/bi/bing-vision.json b/data/software/bi/bing-vision.json new file mode 100644 index 000000000000..ca6ea4d04fd0 --- /dev/null +++ b/data/software/bi/bing-vision.json @@ -0,0 +1,8 @@ +{ + "slug": "bing-vision", + "name": "Bing Vision", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16976498" + ] +} diff --git a/data/software/bi/bing-xrank.json b/data/software/bi/bing-xrank.json new file mode 100644 index 000000000000..98aa2c5b8f88 --- /dev/null +++ b/data/software/bi/bing-xrank.json @@ -0,0 +1,11 @@ +{ + "slug": "bing-xrank", + "name": "Bing xRank", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4914162" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/bi/bintube.json b/data/software/bi/bintube.json new file mode 100644 index 000000000000..fc4999521579 --- /dev/null +++ b/data/software/bi/bintube.json @@ -0,0 +1,12 @@ +{ + "slug": "bintube", + "name": "BinTube", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4913763" + ], + "release_date": "2007-01-01", + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/bi/biobike.json b/data/software/bi/biobike.json new file mode 100644 index 000000000000..fbbd6c3e1761 --- /dev/null +++ b/data/software/bi/biobike.json @@ -0,0 +1,14 @@ +{ + "slug": "biobike", + "name": "BioBIKE", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17018761" + ], + "programming_languages": [ + "Common Lisp" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/bi/biocompute.json b/data/software/bi/biocompute.json new file mode 100644 index 000000000000..caa5a452912a --- /dev/null +++ b/data/software/bi/biocompute.json @@ -0,0 +1,11 @@ +{ + "slug": "biocompute", + "name": "BioCompute", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139255637" + ], + "developers": [ + "iTmethods Inc." + ] +} diff --git a/data/software/bi/bioconductor-build-system.json b/data/software/bi/bioconductor-build-system.json new file mode 100644 index 000000000000..d39cd2a9a197 --- /dev/null +++ b/data/software/bi/bioconductor-build-system.json @@ -0,0 +1,8 @@ +{ + "slug": "bioconductor-build-system", + "name": "Bioconductor Build System", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112236535" + ] +} diff --git a/data/software/bi/bioconductor.json b/data/software/bi/bioconductor.json new file mode 100644 index 000000000000..f49f0c6c97dd --- /dev/null +++ b/data/software/bi/bioconductor.json @@ -0,0 +1,18 @@ +{ + "slug": "bioconductor", + "name": "Bioconductor", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2888953" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [ + "R" + ], + "licenses": [ + "Artistic License" + ] +} diff --git a/data/software/bi/biocypher.json b/data/software/bi/biocypher.json new file mode 100644 index 000000000000..6b81f4993c98 --- /dev/null +++ b/data/software/bi/biocypher.json @@ -0,0 +1,14 @@ +{ + "slug": "biocypher", + "name": "biocypher", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135641346" + ], + "programming_languages": [ + "Python" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/bi/bioextract.json b/data/software/bi/bioextract.json new file mode 100644 index 000000000000..8c677cbfd145 --- /dev/null +++ b/data/software/bi/bioextract.json @@ -0,0 +1,8 @@ +{ + "slug": "bioextract", + "name": "BioExtract", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4914615" + ] +} diff --git a/data/software/bi/bioinformatic-harvester.json b/data/software/bi/bioinformatic-harvester.json new file mode 100644 index 000000000000..015a85c3ad83 --- /dev/null +++ b/data/software/bi/bioinformatic-harvester.json @@ -0,0 +1,8 @@ +{ + "slug": "bioinformatic-harvester", + "name": "Bioinformatic Harvester", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q864402" + ] +} diff --git a/data/software/bi/biolinux.json b/data/software/bi/biolinux.json new file mode 100644 index 000000000000..62d269a9cc86 --- /dev/null +++ b/data/software/bi/biolinux.json @@ -0,0 +1,8 @@ +{ + "slug": "biolinux", + "name": "BioLinux", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4914629" + ] +} diff --git a/data/software/bi/biomappings.json b/data/software/bi/biomappings.json new file mode 100644 index 000000000000..aa2a839b2615 --- /dev/null +++ b/data/software/bi/biomappings.json @@ -0,0 +1,14 @@ +{ + "slug": "biomappings", + "name": "Biomappings", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111239110" + ], + "programming_languages": [ + "Python" + ], + "licenses": [ + "Creative Commons CC0 License" + ] +} diff --git a/data/software/bi/biomate-ai.json b/data/software/bi/biomate-ai.json new file mode 100644 index 000000000000..c2f5fe1d0af1 --- /dev/null +++ b/data/software/bi/biomate-ai.json @@ -0,0 +1,14 @@ +{ + "slug": "biomate-ai", + "name": "BioMate AI", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140074014" + ], + "licenses": [ + "proprietary license" + ], + "genres": [ + "software as a service" + ] +} diff --git a/data/software/bi/biomodels-database.json b/data/software/bi/biomodels-database.json new file mode 100644 index 000000000000..ea787c945d8a --- /dev/null +++ b/data/software/bi/biomodels-database.json @@ -0,0 +1,16 @@ +{ + "slug": "biomodels-database", + "name": "BioModels Database", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4914638" + ], + "developers": [ + "Babraham Institute", + "California Institute of Technology", + "EMBL's European Bioinformatics Institute" + ], + "licenses": [ + "Creative Commons CC0 License" + ] +} diff --git a/data/software/bi/biomolecular-object-network-databank.json b/data/software/bi/biomolecular-object-network-databank.json new file mode 100644 index 000000000000..bb25db266f1c --- /dev/null +++ b/data/software/bi/biomolecular-object-network-databank.json @@ -0,0 +1,8 @@ +{ + "slug": "biomolecular-object-network-databank", + "name": "Biomolecular Object Network Databank", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4915148" + ] +} diff --git a/data/software/bi/bionerds.json b/data/software/bi/bionerds.json new file mode 100644 index 000000000000..b912f1c561ee --- /dev/null +++ b/data/software/bi/bionerds.json @@ -0,0 +1,12 @@ +{ + "slug": "bionerds", + "name": "bioNerDS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111095540" + ], + "release_date": "2012-01-01", + "licenses": [ + "2-clause BSD License" + ] +} diff --git a/data/software/bi/bionty.json b/data/software/bi/bionty.json new file mode 100644 index 000000000000..de6a05ae0546 --- /dev/null +++ b/data/software/bi/bionty.json @@ -0,0 +1,11 @@ +{ + "slug": "bionty", + "name": "bionty", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135641301" + ], + "programming_languages": [ + "Python" + ] +} diff --git a/data/software/bi/bionumerics.json b/data/software/bi/bionumerics.json new file mode 100644 index 000000000000..c9e97a5cc6d3 --- /dev/null +++ b/data/software/bi/bionumerics.json @@ -0,0 +1,14 @@ +{ + "slug": "bionumerics", + "name": "BioNumerics", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4914637" + ], + "developers": [ + "Applied Maths" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/bi/bioperl-db.json b/data/software/bi/bioperl-db.json new file mode 100644 index 000000000000..abdfbf780aeb --- /dev/null +++ b/data/software/bi/bioperl-db.json @@ -0,0 +1,8 @@ +{ + "slug": "bioperl-db", + "name": "bioperl-db", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28941654" + ] +} diff --git a/data/software/bi/bioperl-network.json b/data/software/bi/bioperl-network.json new file mode 100644 index 000000000000..013d7a8728b2 --- /dev/null +++ b/data/software/bi/bioperl-network.json @@ -0,0 +1,8 @@ +{ + "slug": "bioperl-network", + "name": "bioperl-network", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28941655" + ] +} diff --git a/data/software/bi/bioperl-run.json b/data/software/bi/bioperl-run.json new file mode 100644 index 000000000000..c68fa87a2ed3 --- /dev/null +++ b/data/software/bi/bioperl-run.json @@ -0,0 +1,8 @@ +{ + "slug": "bioperl-run", + "name": "bioperl-run", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28941657" + ] +} diff --git a/data/software/bi/bioperl.json b/data/software/bi/bioperl.json new file mode 100644 index 000000000000..f104ba29dd02 --- /dev/null +++ b/data/software/bi/bioperl.json @@ -0,0 +1,11 @@ +{ + "slug": "bioperl", + "name": "BioPerl", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q912162" + ], + "licenses": [ + "Artistic License" + ] +} diff --git a/data/software/bi/biophp.json b/data/software/bi/biophp.json new file mode 100644 index 000000000000..fa5ba7144a02 --- /dev/null +++ b/data/software/bi/biophp.json @@ -0,0 +1,11 @@ +{ + "slug": "biophp", + "name": "BioPHP", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4914642" + ], + "programming_languages": [ + "PHP" + ] +} diff --git a/data/software/bi/bios.json b/data/software/bi/bios.json new file mode 100644 index 000000000000..ca9663e0979b --- /dev/null +++ b/data/software/bi/bios.json @@ -0,0 +1,8 @@ +{ + "slug": "bios", + "name": "BIOS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q226264" + ] +} diff --git a/data/software/bi/bioscope.json b/data/software/bi/bioscope.json new file mode 100644 index 000000000000..bfd19eec3398 --- /dev/null +++ b/data/software/bi/bioscope.json @@ -0,0 +1,8 @@ +{ + "slug": "bioscope", + "name": "Bioscope+", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135742213" + ] +} diff --git a/data/software/bi/bioszen.json b/data/software/bi/bioszen.json new file mode 100644 index 000000000000..95cc41ff7f50 --- /dev/null +++ b/data/software/bi/bioszen.json @@ -0,0 +1,18 @@ +{ + "slug": "bioszen", + "name": "BIOSZEN", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137772062" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [ + "R" + ], + "licenses": [ + "GNU General Public License, version 3.0" + ] +} diff --git a/data/software/bi/bird-internet-routing-daemon.json b/data/software/bi/bird-internet-routing-daemon.json new file mode 100644 index 000000000000..832212f82367 --- /dev/null +++ b/data/software/bi/bird-internet-routing-daemon.json @@ -0,0 +1,14 @@ +{ + "slug": "bird-internet-routing-daemon", + "name": "BIRD Internet Routing Daemon", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4915863" + ], + "operating_systems": [ + "Unix-like operating system" + ], + "licenses": [ + "GNU General Public License" + ] +} diff --git a/data/software/bi/bird.json b/data/software/bi/bird.json new file mode 100644 index 000000000000..4f58da219e0f --- /dev/null +++ b/data/software/bi/bird.json @@ -0,0 +1,8 @@ +{ + "slug": "bird", + "name": "Bird", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q55639320" + ] +} diff --git a/data/software/bi/bisque.json b/data/software/bi/bisque.json new file mode 100644 index 000000000000..be1d6c219145 --- /dev/null +++ b/data/software/bi/bisque.json @@ -0,0 +1,19 @@ +{ + "slug": "bisque", + "name": "BisQue", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25339488" + ], + "developers": [ + "Santa Barbara", + "University of California" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [ + "Python" + ] +} diff --git a/data/software/bi/bitalino.json b/data/software/bi/bitalino.json new file mode 100644 index 000000000000..83147a07510d --- /dev/null +++ b/data/software/bi/bitalino.json @@ -0,0 +1,8 @@ +{ + "slug": "bitalino", + "name": "BITalino", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28691117" + ] +} diff --git a/data/software/bi/bitblinder.json b/data/software/bi/bitblinder.json new file mode 100644 index 000000000000..9f8e933d4348 --- /dev/null +++ b/data/software/bi/bitblinder.json @@ -0,0 +1,15 @@ +{ + "slug": "bitblinder", + "name": "Bitblinder", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4918761" + ], + "release_date": "2009-01-01", + "programming_languages": [ + "Python" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/bi/bitbucket-data-center.json b/data/software/bi/bitbucket-data-center.json new file mode 100644 index 000000000000..dfa06267e8eb --- /dev/null +++ b/data/software/bi/bitbucket-data-center.json @@ -0,0 +1,21 @@ +{ + "slug": "bitbucket-data-center", + "name": "Bitbucket Data Center", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18392894" + ], + "developers": [ + "Atlassian" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [ + "Java" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/bi/bitcache.json b/data/software/bi/bitcache.json new file mode 100644 index 000000000000..4d5e1e7f0f78 --- /dev/null +++ b/data/software/bi/bitcache.json @@ -0,0 +1,9 @@ +{ + "slug": "bitcache", + "name": "Bitcache", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28127107" + ], + "release_date": "2018-01-01" +} diff --git a/data/software/bi/bitcasa.json b/data/software/bi/bitcasa.json new file mode 100644 index 000000000000..b707bc44ef01 --- /dev/null +++ b/data/software/bi/bitcasa.json @@ -0,0 +1,8 @@ +{ + "slug": "bitcasa", + "name": "Bitcasa", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4189715" + ] +} diff --git a/data/software/bi/bitcoin-classic.json b/data/software/bi/bitcoin-classic.json new file mode 100644 index 000000000000..f364f169c49a --- /dev/null +++ b/data/software/bi/bitcoin-classic.json @@ -0,0 +1,11 @@ +{ + "slug": "bitcoin-classic", + "name": "Bitcoin Classic", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22906775" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/bi/bitcoin-unlimited.json b/data/software/bi/bitcoin-unlimited.json new file mode 100644 index 000000000000..edb0f59224a8 --- /dev/null +++ b/data/software/bi/bitcoin-unlimited.json @@ -0,0 +1,9 @@ +{ + "slug": "bitcoin-unlimited", + "name": "Bitcoin Unlimited", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28445948" + ], + "release_date": "2015-12-01" +} diff --git a/data/software/bi/bitcoin-xt.json b/data/software/bi/bitcoin-xt.json new file mode 100644 index 000000000000..b5dd36a12f14 --- /dev/null +++ b/data/software/bi/bitcoin-xt.json @@ -0,0 +1,9 @@ +{ + "slug": "bitcoin-xt", + "name": "Bitcoin XT", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q20856847" + ], + "release_date": "2015-08-15" +} diff --git a/data/software/bi/bitdefender-antivirus.json b/data/software/bi/bitdefender-antivirus.json new file mode 100644 index 000000000000..c70f22f03b57 --- /dev/null +++ b/data/software/bi/bitdefender-antivirus.json @@ -0,0 +1,11 @@ +{ + "slug": "bitdefender-antivirus", + "name": "Bitdefender Antivirus", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q15788824" + ], + "developers": [ + "Bitdefender" + ] +} diff --git a/data/software/bi/bitdefender-internet-security.json b/data/software/bi/bitdefender-internet-security.json new file mode 100644 index 000000000000..dac40d762895 --- /dev/null +++ b/data/software/bi/bitdefender-internet-security.json @@ -0,0 +1,11 @@ +{ + "slug": "bitdefender-internet-security", + "name": "Bitdefender Internet Security", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10740239" + ], + "developers": [ + "Bitdefender" + ] +} diff --git a/data/software/bi/bitdefender-trafficlight.json b/data/software/bi/bitdefender-trafficlight.json new file mode 100644 index 000000000000..7490abe0fa75 --- /dev/null +++ b/data/software/bi/bitdefender-trafficlight.json @@ -0,0 +1,11 @@ +{ + "slug": "bitdefender-trafficlight", + "name": "BitDefender TrafficLight", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3536421" + ], + "developers": [ + "Bitdefender" + ] +} diff --git a/data/software/bi/bitext.json b/data/software/bi/bitext.json new file mode 100644 index 000000000000..7fcd3372ddb6 --- /dev/null +++ b/data/software/bi/bitext.json @@ -0,0 +1,8 @@ +{ + "slug": "bitext", + "name": "BITEXT", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084809" + ] +} diff --git a/data/software/bi/bitextor.json b/data/software/bi/bitextor.json new file mode 100644 index 000000000000..48ffecbcf81f --- /dev/null +++ b/data/software/bi/bitextor.json @@ -0,0 +1,8 @@ +{ + "slug": "bitextor", + "name": "Bitextor", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2619312" + ] +} diff --git a/data/software/bi/bitfunnel.json b/data/software/bi/bitfunnel.json new file mode 100644 index 000000000000..bffaf0c45c3b --- /dev/null +++ b/data/software/bi/bitfunnel.json @@ -0,0 +1,11 @@ +{ + "slug": "bitfunnel", + "name": "BitFunnel", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q96373630" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/bi/bitlbee-steam.json b/data/software/bi/bitlbee-steam.json new file mode 100644 index 000000000000..0e019b0bb4e6 --- /dev/null +++ b/data/software/bi/bitlbee-steam.json @@ -0,0 +1,11 @@ +{ + "slug": "bitlbee-steam", + "name": "bitlbee-steam", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28941659" + ], + "licenses": [ + "GNU General Public License, version 2.0" + ] +} diff --git a/data/software/bi/bitmarkets.json b/data/software/bi/bitmarkets.json new file mode 100644 index 000000000000..2dcd04b1981a --- /dev/null +++ b/data/software/bi/bitmarkets.json @@ -0,0 +1,18 @@ +{ + "slug": "bitmarkets", + "name": "Bitmarkets", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q19892083" + ], + "release_date": "2014-01-01", + "operating_systems": [ + "macOS" + ], + "programming_languages": [ + "Objective-C" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/bi/bitmask.json b/data/software/bi/bitmask.json new file mode 100644 index 000000000000..66c7293076bc --- /dev/null +++ b/data/software/bi/bitmask.json @@ -0,0 +1,11 @@ +{ + "slug": "bitmask", + "name": "Bitmask", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117455964" + ], + "licenses": [ + "GNU General Public License, version 3.0" + ] +} diff --git a/data/software/bi/bitmoji.json b/data/software/bi/bitmoji.json new file mode 100644 index 000000000000..e8d17fdde49d --- /dev/null +++ b/data/software/bi/bitmoji.json @@ -0,0 +1,8 @@ +{ + "slug": "bitmoji", + "name": "Bitmoji", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136760098" + ] +} diff --git a/data/software/bi/bitport.json b/data/software/bi/bitport.json new file mode 100644 index 000000000000..997cf087de2d --- /dev/null +++ b/data/software/bi/bitport.json @@ -0,0 +1,9 @@ +{ + "slug": "bitport", + "name": "Bitport", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28956420" + ], + "release_date": "2014-11-01" +} diff --git a/data/software/bi/bitrocket.json b/data/software/bi/bitrocket.json new file mode 100644 index 000000000000..dcbad029c941 --- /dev/null +++ b/data/software/bi/bitrocket.json @@ -0,0 +1,8 @@ +{ + "slug": "bitrocket", + "name": "BitRocket", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17187233" + ] +} diff --git a/data/software/bi/bits-on-wheels.json b/data/software/bi/bits-on-wheels.json new file mode 100644 index 000000000000..cd8b0e5cb387 --- /dev/null +++ b/data/software/bi/bits-on-wheels.json @@ -0,0 +1,8 @@ +{ + "slug": "bits-on-wheels", + "name": "Bits on Wheels", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4918948" + ] +} diff --git a/data/software/bi/bitshares.json b/data/software/bi/bitshares.json new file mode 100644 index 000000000000..d7b89e19ab0c --- /dev/null +++ b/data/software/bi/bitshares.json @@ -0,0 +1,11 @@ +{ + "slug": "bitshares", + "name": "BitShares", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q44268550" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/bi/bittorious.json b/data/software/bi/bittorious.json new file mode 100644 index 000000000000..8ea524b9138a --- /dev/null +++ b/data/software/bi/bittorious.json @@ -0,0 +1,8 @@ +{ + "slug": "bittorious", + "name": "BitTorious", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25305290" + ] +} diff --git a/data/software/bi/bixby-vision.json b/data/software/bi/bixby-vision.json new file mode 100644 index 000000000000..3c110812b9d9 --- /dev/null +++ b/data/software/bi/bixby-vision.json @@ -0,0 +1,11 @@ +{ + "slug": "bixby-vision", + "name": "Bixby Vision", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136704415" + ], + "developers": [ + "Samsung Electronics" + ] +} diff --git a/data/software/bi/bizagi.json b/data/software/bi/bizagi.json new file mode 100644 index 000000000000..37f0221d880c --- /dev/null +++ b/data/software/bi/bizagi.json @@ -0,0 +1,11 @@ +{ + "slug": "bizagi", + "name": "Bizagi", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4919356" + ], + "programming_languages": [ + "Java" + ] +} diff --git a/data/software/bi/bizhard.json b/data/software/bi/bizhard.json new file mode 100644 index 000000000000..4388c802ae8e --- /dev/null +++ b/data/software/bi/bizhard.json @@ -0,0 +1,8 @@ +{ + "slug": "bizhard", + "name": "BIZHARD", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16161031" + ] +} diff --git a/data/software/bi/bizzdesign-architect.json b/data/software/bi/bizzdesign-architect.json new file mode 100644 index 000000000000..5dc4ee156bc2 --- /dev/null +++ b/data/software/bi/bizzdesign-architect.json @@ -0,0 +1,11 @@ +{ + "slug": "bizzdesign-architect", + "name": "Bizzdesign Architect", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16842567" + ], + "developers": [ + "Bizzdesign" + ] +} diff --git a/data/software/bk/bkav.json b/data/software/bk/bkav.json new file mode 100644 index 000000000000..28ba4e6d9da7 --- /dev/null +++ b/data/software/bk/bkav.json @@ -0,0 +1,8 @@ +{ + "slug": "bkav", + "name": "Bkav", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10740313" + ] +} diff --git a/data/software/bl/bl-ock.json b/data/software/bl/bl-ock.json new file mode 100644 index 000000000000..ff71471bc93c --- /dev/null +++ b/data/software/bl/bl-ock.json @@ -0,0 +1,8 @@ +{ + "slug": "bl-ock", + "name": "bl.ock", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084812" + ] +} diff --git a/data/software/bl/blackberry-enterprise-server.json b/data/software/bl/blackberry-enterprise-server.json new file mode 100644 index 000000000000..124cfa890f23 --- /dev/null +++ b/data/software/bl/blackberry-enterprise-server.json @@ -0,0 +1,11 @@ +{ + "slug": "blackberry-enterprise-server", + "name": "BlackBerry Enterprise Server", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2613503" + ], + "developers": [ + "BlackBerry" + ] +} diff --git a/data/software/bl/blackberry-world.json b/data/software/bl/blackberry-world.json new file mode 100644 index 000000000000..82c3fce237b5 --- /dev/null +++ b/data/software/bl/blackberry-world.json @@ -0,0 +1,14 @@ +{ + "slug": "blackberry-world", + "name": "BlackBerry World", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122381" + ], + "developers": [ + "BlackBerry" + ], + "programming_languages": [ + "Java" + ] +} diff --git a/data/software/bl/blackbird.json b/data/software/bl/blackbird.json new file mode 100644 index 000000000000..c52dd80831a6 --- /dev/null +++ b/data/software/bl/blackbird.json @@ -0,0 +1,8 @@ +{ + "slug": "blackbird", + "name": "Blackbird", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124838573" + ] +} diff --git a/data/software/bl/blackboard-scholar.json b/data/software/bl/blackboard-scholar.json new file mode 100644 index 000000000000..db130dc069b5 --- /dev/null +++ b/data/software/bl/blackboard-scholar.json @@ -0,0 +1,8 @@ +{ + "slug": "blackboard-scholar", + "name": "Blackboard Scholar", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084810" + ] +} diff --git a/data/software/bl/blackfire-profiler.json b/data/software/bl/blackfire-profiler.json new file mode 100644 index 000000000000..1e61b2c7f31d --- /dev/null +++ b/data/software/bl/blackfire-profiler.json @@ -0,0 +1,14 @@ +{ + "slug": "blackfire-profiler", + "name": "Blackfire Profiler", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25312823" + ], + "developers": [ + "SensioLabs" + ], + "programming_languages": [ + "Go" + ] +} diff --git a/data/software/bl/blackhole.json b/data/software/bl/blackhole.json new file mode 100644 index 000000000000..845b327e5a72 --- /dev/null +++ b/data/software/bl/blackhole.json @@ -0,0 +1,17 @@ +{ + "slug": "blackhole", + "name": "BlackHole", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125807721" + ], + "developers": [ + "Existential Audio" + ], + "operating_systems": [ + "macOS" + ], + "licenses": [ + "GNU General Public License, version 3.0" + ] +} diff --git a/data/software/bl/blackpixel-ai.json b/data/software/bl/blackpixel-ai.json new file mode 100644 index 000000000000..88e305aa4e5a --- /dev/null +++ b/data/software/bl/blackpixel-ai.json @@ -0,0 +1,14 @@ +{ + "slug": "blackpixel-ai", + "name": "BlackPixel AI", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139679696" + ], + "developers": [ + "Black Pixel AI Inc" + ], + "publishers": [ + "Black Pixel AI Inc" + ] +} diff --git a/data/software/bl/blackra1n.json b/data/software/bl/blackra1n.json new file mode 100644 index 000000000000..29ad778e8e72 --- /dev/null +++ b/data/software/bl/blackra1n.json @@ -0,0 +1,14 @@ +{ + "slug": "blackra1n", + "name": "blackra1n", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4923298" + ], + "developers": [ + "George Hotz" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/bl/bladerf.json b/data/software/bl/bladerf.json new file mode 100644 index 000000000000..939efed81668 --- /dev/null +++ b/data/software/bl/bladerf.json @@ -0,0 +1,11 @@ +{ + "slug": "bladerf", + "name": "bladerf", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28941661" + ], + "programming_languages": [ + "VHDL" + ] +} diff --git a/data/software/bl/blake3.json b/data/software/bl/blake3.json new file mode 100644 index 000000000000..0fece10d0744 --- /dev/null +++ b/data/software/bl/blake3.json @@ -0,0 +1,21 @@ +{ + "slug": "blake3", + "name": "BLAKE3", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111191355" + ], + "release_date": "2019-01-09", + "developers": [ + "Jack O'Connor" + ], + "operating_systems": [ + "BSD", + "macOS", + "Microsoft Windows" + ], + "licenses": [ + "Creative Commons CC0 License", + "Apache Software License 2.0" + ] +} diff --git a/data/software/bl/blasfeo.json b/data/software/bl/blasfeo.json new file mode 100644 index 000000000000..eb534fc0d749 --- /dev/null +++ b/data/software/bl/blasfeo.json @@ -0,0 +1,14 @@ +{ + "slug": "blasfeo", + "name": "BLASFEO", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134347773" + ], + "programming_languages": [ + "assembly language" + ], + "licenses": [ + "2-clause BSD License" + ] +} diff --git a/data/software/bl/blast-model-checker.json b/data/software/bl/blast-model-checker.json new file mode 100644 index 000000000000..2c79beb333e7 --- /dev/null +++ b/data/software/bl/blast-model-checker.json @@ -0,0 +1,14 @@ +{ + "slug": "blast-model-checker", + "name": "BLAST model checker", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4034701" + ], + "programming_languages": [ + "OCaml" + ], + "licenses": [ + "Apache License" + ] +} diff --git a/data/software/bl/blast2go.json b/data/software/bl/blast2go.json new file mode 100644 index 000000000000..2f19e63464b3 --- /dev/null +++ b/data/software/bl/blast2go.json @@ -0,0 +1,14 @@ +{ + "slug": "blast2go", + "name": "Blast2GO", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16335220" + ], + "developers": [ + "BioBam Bioinformatics" + ], + "programming_languages": [ + "Java" + ] +} diff --git a/data/software/bl/blat.json b/data/software/bl/blat.json new file mode 100644 index 000000000000..1688549481b3 --- /dev/null +++ b/data/software/bl/blat.json @@ -0,0 +1,11 @@ +{ + "slug": "blat", + "name": "BLAT", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4835846" + ], + "developers": [ + "Jim Kent" + ] +} diff --git a/data/software/bl/blazeblogger.json b/data/software/bl/blazeblogger.json new file mode 100644 index 000000000000..cdb3b14b6f86 --- /dev/null +++ b/data/software/bl/blazeblogger.json @@ -0,0 +1,8 @@ +{ + "slug": "blazeblogger", + "name": "BlazeBlogger", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q104978439" + ] +} diff --git a/data/software/bl/blazemeter.json b/data/software/bl/blazemeter.json new file mode 100644 index 000000000000..8228d58f4933 --- /dev/null +++ b/data/software/bl/blazemeter.json @@ -0,0 +1,11 @@ +{ + "slug": "blazemeter", + "name": "BlazeMeter", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4925590" + ], + "developers": [ + "Perforce Software" + ] +} diff --git a/data/software/bl/bleemcast.json b/data/software/bl/bleemcast.json new file mode 100644 index 000000000000..0fac1cc0a2ac --- /dev/null +++ b/data/software/bl/bleemcast.json @@ -0,0 +1,8 @@ +{ + "slug": "bleemcast", + "name": "Bleemcast!", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4925933" + ] +} diff --git a/data/software/bl/blender-3-0-0.json b/data/software/bl/blender-3-0-0.json new file mode 100644 index 000000000000..e77f87400ee1 --- /dev/null +++ b/data/software/bl/blender-3-0-0.json @@ -0,0 +1,8 @@ +{ + "slug": "blender-3-0-0", + "name": "Blender 3.0.0", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110041665" + ] +} diff --git a/data/software/bl/blender-osm.json b/data/software/bl/blender-osm.json new file mode 100644 index 000000000000..2994a1b43b61 --- /dev/null +++ b/data/software/bl/blender-osm.json @@ -0,0 +1,8 @@ +{ + "slug": "blender-osm", + "name": "blender-osm", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q104783553" + ] +} diff --git a/data/software/bl/blender-publisher.json b/data/software/bl/blender-publisher.json new file mode 100644 index 000000000000..4f014cc98f95 --- /dev/null +++ b/data/software/bl/blender-publisher.json @@ -0,0 +1,8 @@ +{ + "slug": "blender-publisher", + "name": "Blender Publisher", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q9659116" + ] +} diff --git a/data/software/bl/blendr.json b/data/software/bl/blendr.json new file mode 100644 index 000000000000..6d8502f94f81 --- /dev/null +++ b/data/software/bl/blendr.json @@ -0,0 +1,11 @@ +{ + "slug": "blendr", + "name": "Blendr", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4926023" + ], + "operating_systems": [ + "iOS" + ] +} diff --git a/data/software/bl/blindspot.json b/data/software/bl/blindspot.json new file mode 100644 index 000000000000..b7849a0b4ac2 --- /dev/null +++ b/data/software/bl/blindspot.json @@ -0,0 +1,8 @@ +{ + "slug": "blindspot", + "name": "BLINDSPOT", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q29364641" + ] +} diff --git a/data/software/bl/blinkentools.json b/data/software/bl/blinkentools.json new file mode 100644 index 000000000000..d8f1509b0427 --- /dev/null +++ b/data/software/bl/blinkentools.json @@ -0,0 +1,8 @@ +{ + "slug": "blinkentools", + "name": "blinkentools", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065500" + ] +} diff --git a/data/software/bl/blis.json b/data/software/bl/blis.json new file mode 100644 index 000000000000..58be8118d32f --- /dev/null +++ b/data/software/bl/blis.json @@ -0,0 +1,11 @@ +{ + "slug": "blis", + "name": "BLIS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q65087866" + ], + "developers": [ + "Field Garritt Van Zee" + ] +} diff --git a/data/software/bl/blixnex.json b/data/software/bl/blixnex.json new file mode 100644 index 000000000000..7bbb3a76bc1d --- /dev/null +++ b/data/software/bl/blixnex.json @@ -0,0 +1,8 @@ +{ + "slug": "blixnex", + "name": "BlixNex", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139831117" + ] +} diff --git a/data/software/bl/blktrace.json b/data/software/bl/blktrace.json new file mode 100644 index 000000000000..a1de7b83228c --- /dev/null +++ b/data/software/bl/blktrace.json @@ -0,0 +1,8 @@ +{ + "slug": "blktrace", + "name": "blktrace", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60916917" + ] +} diff --git a/data/software/bl/bllip-parser.json b/data/software/bl/bllip-parser.json new file mode 100644 index 000000000000..129af9882a3c --- /dev/null +++ b/data/software/bl/bllip-parser.json @@ -0,0 +1,8 @@ +{ + "slug": "bllip-parser", + "name": "BLLIP Parser", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084811" + ] +} diff --git a/data/software/bl/blocks.json b/data/software/bl/blocks.json new file mode 100644 index 000000000000..24802b87fee5 --- /dev/null +++ b/data/software/bl/blocks.json @@ -0,0 +1,8 @@ +{ + "slug": "blocks", + "name": "blocks", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28941664" + ] +} diff --git a/data/software/bl/blockstack.json b/data/software/bl/blockstack.json new file mode 100644 index 000000000000..0029ad918f12 --- /dev/null +++ b/data/software/bl/blockstack.json @@ -0,0 +1,8 @@ +{ + "slug": "blockstack", + "name": "Blockstack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q23680087" + ] +} diff --git a/data/software/bl/blocul-meu.json b/data/software/bl/blocul-meu.json new file mode 100644 index 000000000000..1e7d9bd0faab --- /dev/null +++ b/data/software/bl/blocul-meu.json @@ -0,0 +1,8 @@ +{ + "slug": "blocul-meu", + "name": "Blocul Meu", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139859932" + ] +} diff --git a/data/software/bl/blog-analysis-toolkit-bat.json b/data/software/bl/blog-analysis-toolkit-bat.json new file mode 100644 index 000000000000..695888cfe822 --- /dev/null +++ b/data/software/bl/blog-analysis-toolkit-bat.json @@ -0,0 +1,8 @@ +{ + "slug": "blog-analysis-toolkit-bat", + "name": "Blog Analysis Toolkit (BAT)", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084813" + ] +} diff --git a/data/software/bl/bloglovin.json b/data/software/bl/bloglovin.json new file mode 100644 index 000000000000..bd2ccc82d3c4 --- /dev/null +++ b/data/software/bl/bloglovin.json @@ -0,0 +1,8 @@ +{ + "slug": "bloglovin", + "name": "Bloglovin'", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11961607" + ] +} diff --git a/data/software/bl/blogtk.json b/data/software/bl/blogtk.json new file mode 100644 index 000000000000..ae0143f7d523 --- /dev/null +++ b/data/software/bl/blogtk.json @@ -0,0 +1,8 @@ +{ + "slug": "blogtk", + "name": "BloGTK", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5730274" + ] +} diff --git a/data/software/bl/blohg-tumblelog.json b/data/software/bl/blohg-tumblelog.json new file mode 100644 index 000000000000..1d67877a522e --- /dev/null +++ b/data/software/bl/blohg-tumblelog.json @@ -0,0 +1,11 @@ +{ + "slug": "blohg-tumblelog", + "name": "blohg-tumblelog", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28941670" + ], + "licenses": [ + "GNU General Public License, version 2.0" + ] +} diff --git a/data/software/bl/blohg.json b/data/software/bl/blohg.json new file mode 100644 index 000000000000..382c93de2277 --- /dev/null +++ b/data/software/bl/blohg.json @@ -0,0 +1,11 @@ +{ + "slug": "blohg", + "name": "blohg", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28941668" + ], + "licenses": [ + "GNU General Public License, version 2.0" + ] +} diff --git a/data/software/bl/bloodspilot-client.json b/data/software/bl/bloodspilot-client.json new file mode 100644 index 000000000000..70a6b3abdfeb --- /dev/null +++ b/data/software/bl/bloodspilot-client.json @@ -0,0 +1,8 @@ +{ + "slug": "bloodspilot-client", + "name": "BloodsPilot Client", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136562911" + ] +} diff --git a/data/software/bl/bloodspilot-xpilot-fxi-server.json b/data/software/bl/bloodspilot-xpilot-fxi-server.json new file mode 100644 index 000000000000..11ad95db46e4 --- /dev/null +++ b/data/software/bl/bloodspilot-xpilot-fxi-server.json @@ -0,0 +1,8 @@ +{ + "slug": "bloodspilot-xpilot-fxi-server", + "name": "BloodsPilot XPilot fxi Server", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136562915" + ] +} diff --git a/data/software/bl/bloom-fm.json b/data/software/bl/bloom-fm.json new file mode 100644 index 000000000000..b587403614e3 --- /dev/null +++ b/data/software/bl/bloom-fm.json @@ -0,0 +1,11 @@ +{ + "slug": "bloom-fm", + "name": "Bloom.fm", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4928136" + ], + "operating_systems": [ + "iOS" + ] +} diff --git a/data/software/bl/bloom.json b/data/software/bl/bloom.json new file mode 100644 index 000000000000..39e64f5671ab --- /dev/null +++ b/data/software/bl/bloom.json @@ -0,0 +1,12 @@ +{ + "slug": "bloom", + "name": "Bloom", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4928152" + ], + "release_date": "2008-10-07", + "developers": [ + "Brian Eno" + ] +} diff --git a/data/software/bl/bloomba.json b/data/software/bl/bloomba.json new file mode 100644 index 000000000000..671651ebf246 --- /dev/null +++ b/data/software/bl/bloomba.json @@ -0,0 +1,11 @@ +{ + "slug": "bloomba", + "name": "Bloomba", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4928184" + ], + "developers": [ + "Stata Labs" + ] +} diff --git a/data/software/bl/blosc-2.json b/data/software/bl/blosc-2.json new file mode 100644 index 000000000000..c69fc4ef6174 --- /dev/null +++ b/data/software/bl/blosc-2.json @@ -0,0 +1,11 @@ +{ + "slug": "blosc-2", + "name": "blosc-2", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q119786053" + ], + "developers": [ + "Francesc Alted" + ] +} diff --git a/data/software/bl/blue-moon-rendering-tools.json b/data/software/bl/blue-moon-rendering-tools.json new file mode 100644 index 000000000000..a260443f97f3 --- /dev/null +++ b/data/software/bl/blue-moon-rendering-tools.json @@ -0,0 +1,11 @@ +{ + "slug": "blue-moon-rendering-tools", + "name": "Blue Moon Rendering Tools", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q885785" + ], + "developers": [ + "Larry Israel Gritz" + ] +} diff --git a/data/software/bl/bluebeam-revu.json b/data/software/bl/bluebeam-revu.json new file mode 100644 index 000000000000..e144312d7654 --- /dev/null +++ b/data/software/bl/bluebeam-revu.json @@ -0,0 +1,11 @@ +{ + "slug": "bluebeam-revu", + "name": "Bluebeam Revu", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16843510" + ], + "developers": [ + "Bluebeam Software, Inc." + ] +} diff --git a/data/software/bl/bluedevil.json b/data/software/bl/bluedevil.json new file mode 100644 index 000000000000..e1ccf7f62997 --- /dev/null +++ b/data/software/bl/bluedevil.json @@ -0,0 +1,8 @@ +{ + "slug": "bluedevil", + "name": "bluedevil", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131147686" + ] +} diff --git a/data/software/bl/bluedragon.json b/data/software/bl/bluedragon.json new file mode 100644 index 000000000000..4f93a98d3330 --- /dev/null +++ b/data/software/bl/bluedragon.json @@ -0,0 +1,8 @@ +{ + "slug": "bluedragon", + "name": "BlueDragon", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4928753" + ] +} diff --git a/data/software/bl/blueinvoice.json b/data/software/bl/blueinvoice.json new file mode 100644 index 000000000000..f06ca55a8cfd --- /dev/null +++ b/data/software/bl/blueinvoice.json @@ -0,0 +1,8 @@ +{ + "slug": "blueinvoice", + "name": "BlueInvoice", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140051724" + ] +} diff --git a/data/software/bl/bluenog.json b/data/software/bl/bluenog.json new file mode 100644 index 000000000000..1cbec119fc2b --- /dev/null +++ b/data/software/bl/bluenog.json @@ -0,0 +1,8 @@ +{ + "slug": "bluenog", + "name": "Bluenog", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4930386" + ] +} diff --git a/data/software/bl/bluesky-statistics.json b/data/software/bl/bluesky-statistics.json new file mode 100644 index 000000000000..674ab93db09d --- /dev/null +++ b/data/software/bl/bluesky-statistics.json @@ -0,0 +1,14 @@ +{ + "slug": "bluesky-statistics", + "name": "BlueSky Statistics", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117034585" + ], + "operating_systems": [ + "macOS" + ], + "programming_languages": [ + "R" + ] +} diff --git a/data/software/bl/bluesoleil.json b/data/software/bl/bluesoleil.json new file mode 100644 index 000000000000..9e8620df8ff4 --- /dev/null +++ b/data/software/bl/bluesoleil.json @@ -0,0 +1,11 @@ +{ + "slug": "bluesoleil", + "name": "BlueSoleil", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1749530" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/bl/bluetail.json b/data/software/bl/bluetail.json new file mode 100644 index 000000000000..9bdf57a67d95 --- /dev/null +++ b/data/software/bl/bluetail.json @@ -0,0 +1,8 @@ +{ + "slug": "bluetail", + "name": "Bluetail", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139494334" + ] +} diff --git a/data/software/bl/bluetooth-file-exchange.json b/data/software/bl/bluetooth-file-exchange.json new file mode 100644 index 000000000000..3b6358ced67d --- /dev/null +++ b/data/software/bl/bluetooth-file-exchange.json @@ -0,0 +1,8 @@ +{ + "slug": "bluetooth-file-exchange", + "name": "Bluetooth File Exchange", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q420959" + ] +} diff --git a/data/software/bl/bluez-alsa.json b/data/software/bl/bluez-alsa.json new file mode 100644 index 000000000000..54530a5c14a7 --- /dev/null +++ b/data/software/bl/bluez-alsa.json @@ -0,0 +1,11 @@ +{ + "slug": "bluez-alsa", + "name": "bluez-alsa", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28941672" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/bm/bmake.json b/data/software/bm/bmake.json new file mode 100644 index 000000000000..e696df41a269 --- /dev/null +++ b/data/software/bm/bmake.json @@ -0,0 +1,8 @@ +{ + "slug": "bmake", + "name": "bmake", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62851379" + ] +} diff --git a/data/software/bm/bmc-control-m.json b/data/software/bm/bmc-control-m.json new file mode 100644 index 000000000000..61d85af3a7fc --- /dev/null +++ b/data/software/bm/bmc-control-m.json @@ -0,0 +1,8 @@ +{ + "slug": "bmc-control-m", + "name": "BMC Control-M", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4835944" + ] +} diff --git a/data/software/bm/bmc-remedy-action-request-system.json b/data/software/bm/bmc-remedy-action-request-system.json new file mode 100644 index 000000000000..4713b96a7db0 --- /dev/null +++ b/data/software/bm/bmc-remedy-action-request-system.json @@ -0,0 +1,12 @@ +{ + "slug": "bmc-remedy-action-request-system", + "name": "BMC Remedy Action Request System", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q492344" + ], + "developers": [ + "Remedy Corp", + "BMC Software" + ] +} diff --git a/data/software/bm/bmdfm.json b/data/software/bm/bmdfm.json new file mode 100644 index 000000000000..749ad2021842 --- /dev/null +++ b/data/software/bm/bmdfm.json @@ -0,0 +1,8 @@ +{ + "slug": "bmdfm", + "name": "BMDFM", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4835952" + ] +} diff --git a/data/software/bm/bmdp.json b/data/software/bm/bmdp.json new file mode 100644 index 000000000000..62b5ef2ce579 --- /dev/null +++ b/data/software/bm/bmdp.json @@ -0,0 +1,8 @@ +{ + "slug": "bmdp", + "name": "BMDP", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2468467" + ] +} diff --git a/data/software/bn/bnaber.json b/data/software/bn/bnaber.json new file mode 100644 index 000000000000..bcd073e2b4b8 --- /dev/null +++ b/data/software/bn/bnaber.json @@ -0,0 +1,11 @@ +{ + "slug": "bnaber", + "name": "BNAber", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16335155" + ], + "developers": [ + "Sanford Burnham Prebys Medical Discovery Institute" + ] +} diff --git a/data/software/bn/bny-nexen.json b/data/software/bn/bny-nexen.json new file mode 100644 index 000000000000..939030ac3d16 --- /dev/null +++ b/data/software/bn/bny-nexen.json @@ -0,0 +1,8 @@ +{ + "slug": "bny-nexen", + "name": "BNY NEXEN", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q30608106" + ] +} diff --git a/data/software/bo/boats-animator.json b/data/software/bo/boats-animator.json new file mode 100644 index 000000000000..b8a1868c20db --- /dev/null +++ b/data/software/bo/boats-animator.json @@ -0,0 +1,17 @@ +{ + "slug": "boats-animator", + "name": "Boats Animator", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120006002" + ], + "operating_systems": [ + "macOS", + "Linux distribution", + "Mac operating system", + "Microsoft Windows" + ], + "licenses": [ + "GNU General Public License, version 3.0" + ] +} diff --git a/data/software/bo/bob-came-in-pieces.json b/data/software/bo/bob-came-in-pieces.json new file mode 100644 index 000000000000..1a666a5a2bfc --- /dev/null +++ b/data/software/bo/bob-came-in-pieces.json @@ -0,0 +1,13 @@ +{ + "slug": "bob-came-in-pieces", + "name": "Bob Came in Pieces", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q119952229" + ], + "release_date": "2010-01-22", + "genres": [ + "puzzle video game", + "action game" + ] +} diff --git a/data/software/bo/bodypaint-3d.json b/data/software/bo/bodypaint-3d.json new file mode 100644 index 000000000000..779fc1455972 --- /dev/null +++ b/data/software/bo/bodypaint-3d.json @@ -0,0 +1,8 @@ +{ + "slug": "bodypaint-3d", + "name": "BodyPaint 3D", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4035255" + ] +} diff --git a/data/software/bo/bolt-q28452141.json b/data/software/bo/bolt-q28452141.json new file mode 100644 index 000000000000..2b4eda42d0d4 --- /dev/null +++ b/data/software/bo/bolt-q28452141.json @@ -0,0 +1,11 @@ +{ + "slug": "bolt-q28452141", + "name": "Bolt", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28452141" + ], + "licenses": [ + "Creative Commons license" + ] +} diff --git a/data/software/bo/bolt.json b/data/software/bo/bolt.json new file mode 100644 index 000000000000..b83593c06121 --- /dev/null +++ b/data/software/bo/bolt.json @@ -0,0 +1,11 @@ +{ + "slug": "bolt", + "name": "Bolt", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2558647" + ], + "programming_languages": [ + "Java" + ] +} diff --git a/data/software/bo/bombusmod.json b/data/software/bo/bombusmod.json new file mode 100644 index 000000000000..90bcfdaaba3d --- /dev/null +++ b/data/software/bo/bombusmod.json @@ -0,0 +1,11 @@ +{ + "slug": "bombusmod", + "name": "Bombusmod", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2173499" + ], + "programming_languages": [ + "Java" + ] +} diff --git a/data/software/bo/bomgar.json b/data/software/bo/bomgar.json new file mode 100644 index 000000000000..13da3e7adf09 --- /dev/null +++ b/data/software/bo/bomgar.json @@ -0,0 +1,9 @@ +{ + "slug": "bomgar", + "name": "Bomgar", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4940859" + ], + "release_date": "2003-01-01" +} diff --git a/data/software/bo/bonanza.json b/data/software/bo/bonanza.json new file mode 100644 index 000000000000..83c214f3e6d3 --- /dev/null +++ b/data/software/bo/bonanza.json @@ -0,0 +1,11 @@ +{ + "slug": "bonanza", + "name": "Bonanza", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11192571" + ], + "developers": [ + "Kunihito Hoki" + ] +} diff --git a/data/software/bo/bonapart.json b/data/software/bo/bonapart.json new file mode 100644 index 000000000000..aa2162a85427 --- /dev/null +++ b/data/software/bo/bonapart.json @@ -0,0 +1,8 @@ +{ + "slug": "bonapart", + "name": "Bonapart", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q892091" + ] +} diff --git a/data/software/bo/bondi.json b/data/software/bo/bondi.json new file mode 100644 index 000000000000..2b04ee0cc925 --- /dev/null +++ b/data/software/bo/bondi.json @@ -0,0 +1,15 @@ +{ + "slug": "bondi", + "name": "BONDI", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4836212" + ], + "release_date": "2009-01-01", + "developers": [ + "Open Mobile Terminal Platform" + ], + "licenses": [ + "Apache License" + ] +} diff --git a/data/software/bo/bonjour.json b/data/software/bo/bonjour.json new file mode 100644 index 000000000000..bd18b4381bc1 --- /dev/null +++ b/data/software/bo/bonjour.json @@ -0,0 +1,18 @@ +{ + "slug": "bonjour", + "name": "Bonjour", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q892647" + ], + "developers": [ + "Apple Inc." + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "licenses": [ + "Apache Software License 2.0" + ] +} diff --git a/data/software/bo/bonobo-software.json b/data/software/bo/bonobo-software.json new file mode 100644 index 000000000000..c8ed0c1eb34e --- /dev/null +++ b/data/software/bo/bonobo-software.json @@ -0,0 +1,11 @@ +{ + "slug": "bonobo-software", + "name": "bonobo (software)", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q67173588" + ], + "licenses": [ + "Apache Software License 2.0" + ] +} diff --git a/data/software/bo/bonpatron.json b/data/software/bo/bonpatron.json new file mode 100644 index 000000000000..f59a3ad15269 --- /dev/null +++ b/data/software/bo/bonpatron.json @@ -0,0 +1,8 @@ +{ + "slug": "bonpatron", + "name": "BonPatron", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q55605725" + ] +} diff --git a/data/software/bo/bontq.json b/data/software/bo/bontq.json new file mode 100644 index 000000000000..1767d622f90f --- /dev/null +++ b/data/software/bo/bontq.json @@ -0,0 +1,8 @@ +{ + "slug": "bontq", + "name": "Bontq", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2910377" + ] +} diff --git a/data/software/bo/bonzi-buddy.json b/data/software/bo/bonzi-buddy.json new file mode 100644 index 000000000000..11c92b9d53a0 --- /dev/null +++ b/data/software/bo/bonzi-buddy.json @@ -0,0 +1,11 @@ +{ + "slug": "bonzi-buddy", + "name": "Bonzi Buddy", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3304472" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/bo/bookdoc.json b/data/software/bo/bookdoc.json new file mode 100644 index 000000000000..f064dcee57d4 --- /dev/null +++ b/data/software/bo/bookdoc.json @@ -0,0 +1,9 @@ +{ + "slug": "bookdoc", + "name": "BookDoc", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22906857" + ], + "release_date": "2015-10-01" +} diff --git a/data/software/bo/bookit.json b/data/software/bo/bookit.json new file mode 100644 index 000000000000..8e13ab8feedf --- /dev/null +++ b/data/software/bo/bookit.json @@ -0,0 +1,8 @@ +{ + "slug": "bookit", + "name": "BOOKIT", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4836216" + ] +} diff --git a/data/software/bo/booklamp-labs-sentiment-viewer.json b/data/software/bo/booklamp-labs-sentiment-viewer.json new file mode 100644 index 000000000000..873ebe9502ba --- /dev/null +++ b/data/software/bo/booklamp-labs-sentiment-viewer.json @@ -0,0 +1,8 @@ +{ + "slug": "booklamp-labs-sentiment-viewer", + "name": "BookLamp Labs: Sentiment Viewer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084815" + ] +} diff --git a/data/software/bo/booklamp-labs-storydna-viewer.json b/data/software/bo/booklamp-labs-storydna-viewer.json new file mode 100644 index 000000000000..69a2fb505227 --- /dev/null +++ b/data/software/bo/booklamp-labs-storydna-viewer.json @@ -0,0 +1,8 @@ +{ + "slug": "booklamp-labs-storydna-viewer", + "name": "BookLamp Labs: StoryDNA Viewer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084816" + ] +} diff --git a/data/software/bo/booklamp-labs-stream-graph-viewer.json b/data/software/bo/booklamp-labs-stream-graph-viewer.json new file mode 100644 index 000000000000..14a49e30f6fc --- /dev/null +++ b/data/software/bo/booklamp-labs-stream-graph-viewer.json @@ -0,0 +1,8 @@ +{ + "slug": "booklamp-labs-stream-graph-viewer", + "name": "BookLamp Labs: Stream Graph Viewer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084817" + ] +} diff --git a/data/software/bo/booklamp-labs-suggestion-viewer.json b/data/software/bo/booklamp-labs-suggestion-viewer.json new file mode 100644 index 000000000000..292911acfda8 --- /dev/null +++ b/data/software/bo/booklamp-labs-suggestion-viewer.json @@ -0,0 +1,8 @@ +{ + "slug": "booklamp-labs-suggestion-viewer", + "name": "BookLamp Labs: Suggestion Viewer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084818" + ] +} diff --git a/data/software/bo/booklamp.json b/data/software/bo/booklamp.json new file mode 100644 index 000000000000..790e678d8131 --- /dev/null +++ b/data/software/bo/booklamp.json @@ -0,0 +1,8 @@ +{ + "slug": "booklamp", + "name": "BookLamp", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084814" + ] +} diff --git a/data/software/bo/bookly.json b/data/software/bo/bookly.json new file mode 100644 index 000000000000..f8d69ed7d8e0 --- /dev/null +++ b/data/software/bo/bookly.json @@ -0,0 +1,14 @@ +{ + "slug": "bookly", + "name": "Bookly", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139710048" + ], + "developers": [ + "NOTA-INFO S.R.L." + ], + "licenses": [ + "GNU General Public License, version 2.0 or later" + ] +} diff --git a/data/software/bo/bookmaker.json b/data/software/bo/bookmaker.json new file mode 100644 index 000000000000..3c04d203a98e --- /dev/null +++ b/data/software/bo/bookmaker.json @@ -0,0 +1,8 @@ +{ + "slug": "bookmaker", + "name": "Bookmaker", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134125879" + ] +} diff --git a/data/software/bo/bookmarksync.json b/data/software/bo/bookmarksync.json new file mode 100644 index 000000000000..b493652e6d00 --- /dev/null +++ b/data/software/bo/bookmarksync.json @@ -0,0 +1,8 @@ +{ + "slug": "bookmarksync", + "name": "BookmarkSync", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4943253" + ] +} diff --git a/data/software/bo/booksmart.json b/data/software/bo/booksmart.json new file mode 100644 index 000000000000..7ce745ac8c5a --- /dev/null +++ b/data/software/bo/booksmart.json @@ -0,0 +1,11 @@ +{ + "slug": "booksmart", + "name": "BookSmart", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4942919" + ], + "developers": [ + "Blurb, Inc." + ] +} diff --git a/data/software/bo/bookworm.json b/data/software/bo/bookworm.json new file mode 100644 index 000000000000..475b59acec83 --- /dev/null +++ b/data/software/bo/bookworm.json @@ -0,0 +1,8 @@ +{ + "slug": "bookworm", + "name": "Bookworm", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084819" + ] +} diff --git a/data/software/bo/booky.json b/data/software/bo/booky.json new file mode 100644 index 000000000000..809563faeadd --- /dev/null +++ b/data/software/bo/booky.json @@ -0,0 +1,8 @@ +{ + "slug": "booky", + "name": "booky", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116788198" + ] +} diff --git a/data/software/bo/boomerang.json b/data/software/bo/boomerang.json new file mode 100644 index 000000000000..519abe0afd32 --- /dev/null +++ b/data/software/bo/boomerang.json @@ -0,0 +1,14 @@ +{ + "slug": "boomerang", + "name": "Boomerang", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4943501" + ], + "developers": [ + "Benjamin C. Pierce" + ], + "programming_languages": [ + "OCaml" + ] +} diff --git a/data/software/bo/boost-json.json b/data/software/bo/boost-json.json new file mode 100644 index 000000000000..2ffa3345d2cb --- /dev/null +++ b/data/software/bo/boost-json.json @@ -0,0 +1,14 @@ +{ + "slug": "boost-json", + "name": "Boost.JSON", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123116374" + ], + "developers": [ + "Vinnie Falco" + ], + "licenses": [ + "Boost Software License" + ] +} diff --git a/data/software/bo/boot-camp.json b/data/software/bo/boot-camp.json new file mode 100644 index 000000000000..adac30d4ab69 --- /dev/null +++ b/data/software/bo/boot-camp.json @@ -0,0 +1,14 @@ +{ + "slug": "boot-camp", + "name": "Boot Camp", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q402799" + ], + "developers": [ + "Apple Inc." + ], + "operating_systems": [ + "macOS" + ] +} diff --git a/data/software/bo/bootman.json b/data/software/bo/bootman.json new file mode 100644 index 000000000000..38461ccfe4e3 --- /dev/null +++ b/data/software/bo/bootman.json @@ -0,0 +1,17 @@ +{ + "slug": "bootman", + "name": "Bootman", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4035320" + ], + "operating_systems": [ + "BeOS" + ], + "programming_languages": [ + "assembly language" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/bo/bootstrapcdn.json b/data/software/bo/bootstrapcdn.json new file mode 100644 index 000000000000..1ab6a35f40f4 --- /dev/null +++ b/data/software/bo/bootstrapcdn.json @@ -0,0 +1,9 @@ +{ + "slug": "bootstrapcdn", + "name": "BootstrapCDN", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17085830" + ], + "release_date": "2012-01-01" +} diff --git a/data/software/bo/bootvis.json b/data/software/bo/bootvis.json new file mode 100644 index 000000000000..38f75b221408 --- /dev/null +++ b/data/software/bo/bootvis.json @@ -0,0 +1,11 @@ +{ + "slug": "bootvis", + "name": "BootVis", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4035321" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/bo/bop-a-bet.json b/data/software/bo/bop-a-bet.json new file mode 100644 index 000000000000..3e27b01f6a5d --- /dev/null +++ b/data/software/bo/bop-a-bet.json @@ -0,0 +1,14 @@ +{ + "slug": "bop-a-bet", + "name": "Bop-A-Bet", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4944148" + ], + "developers": [ + "Al Lowe" + ], + "operating_systems": [ + "Apple DOS" + ] +} diff --git a/data/software/bo/borg-ai-platform.json b/data/software/bo/borg-ai-platform.json new file mode 100644 index 000000000000..feec892a1df6 --- /dev/null +++ b/data/software/bo/borg-ai-platform.json @@ -0,0 +1,11 @@ +{ + "slug": "borg-ai-platform", + "name": "BORG (AI platform)", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140460091" + ], + "developers": [ + "Magnús Smári Smárason" + ] +} diff --git a/data/software/bo/borgmatic.json b/data/software/bo/borgmatic.json new file mode 100644 index 000000000000..db811035a740 --- /dev/null +++ b/data/software/bo/borgmatic.json @@ -0,0 +1,8 @@ +{ + "slug": "borgmatic", + "name": "borgmatic", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127425567" + ] +} diff --git a/data/software/bo/borgweb.json b/data/software/bo/borgweb.json new file mode 100644 index 000000000000..737716c109e7 --- /dev/null +++ b/data/software/bo/borgweb.json @@ -0,0 +1,8 @@ +{ + "slug": "borgweb", + "name": "borgweb", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065647" + ] +} diff --git a/data/software/bo/boris.json b/data/software/bo/boris.json new file mode 100644 index 000000000000..694dd300492d --- /dev/null +++ b/data/software/bo/boris.json @@ -0,0 +1,18 @@ +{ + "slug": "boris", + "name": "BORIS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105229787" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [ + "Python" + ], + "licenses": [ + "GNU General Public License, version 3.0" + ] +} diff --git a/data/software/bo/borland-enterprise-server.json b/data/software/bo/borland-enterprise-server.json new file mode 100644 index 000000000000..3983c3be12d8 --- /dev/null +++ b/data/software/bo/borland-enterprise-server.json @@ -0,0 +1,8 @@ +{ + "slug": "borland-enterprise-server", + "name": "Borland Enterprise Server", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4945730" + ] +} diff --git a/data/software/bo/borland-reflex.json b/data/software/bo/borland-reflex.json new file mode 100644 index 000000000000..811377fe8c44 --- /dev/null +++ b/data/software/bo/borland-reflex.json @@ -0,0 +1,11 @@ +{ + "slug": "borland-reflex", + "name": "Borland Reflex", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4945732" + ], + "developers": [ + "Borland" + ] +} diff --git a/data/software/bo/boss.json b/data/software/bo/boss.json new file mode 100644 index 000000000000..8a2736ae157e --- /dev/null +++ b/data/software/bo/boss.json @@ -0,0 +1,11 @@ +{ + "slug": "boss", + "name": "BOSS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4836232" + ], + "programming_languages": [ + "Fortran" + ] +} diff --git a/data/software/bo/bossware.json b/data/software/bo/bossware.json new file mode 100644 index 000000000000..5d9ec73a900e --- /dev/null +++ b/data/software/bo/bossware.json @@ -0,0 +1,8 @@ +{ + "slug": "bossware", + "name": "Bossware", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110269244" + ] +} diff --git a/data/software/bo/bothunter.json b/data/software/bo/bothunter.json new file mode 100644 index 000000000000..b9d5b56cbfc8 --- /dev/null +++ b/data/software/bo/bothunter.json @@ -0,0 +1,11 @@ +{ + "slug": "bothunter", + "name": "Bothunter", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4948699" + ], + "developers": [ + "SRI International" + ] +} diff --git a/data/software/bo/botster.json b/data/software/bo/botster.json new file mode 100644 index 000000000000..63ce4209c2f5 --- /dev/null +++ b/data/software/bo/botster.json @@ -0,0 +1,11 @@ +{ + "slug": "botster", + "name": "Botster", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140447567" + ], + "developers": [ + "Caprilytics" + ] +} diff --git a/data/software/bo/botw-cross-platform-mod-loader.json b/data/software/bo/botw-cross-platform-mod-loader.json new file mode 100644 index 000000000000..4742303c6459 --- /dev/null +++ b/data/software/bo/botw-cross-platform-mod-loader.json @@ -0,0 +1,11 @@ +{ + "slug": "botw-cross-platform-mod-loader", + "name": "BOTW Cross-Platform Mod Loader", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q129677620" + ], + "programming_languages": [ + "Python" + ] +} diff --git a/data/software/bo/boundschecker.json b/data/software/bo/boundschecker.json new file mode 100644 index 000000000000..06639c1c9b06 --- /dev/null +++ b/data/software/bo/boundschecker.json @@ -0,0 +1,11 @@ +{ + "slug": "boundschecker", + "name": "BoundsChecker", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4950003" + ], + "developers": [ + "Micro Focus International" + ] +} diff --git a/data/software/bo/boxely.json b/data/software/bo/boxely.json new file mode 100644 index 000000000000..e5cc8812c665 --- /dev/null +++ b/data/software/bo/boxely.json @@ -0,0 +1,11 @@ +{ + "slug": "boxely", + "name": "Boxely", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q848637" + ], + "developers": [ + "AOL" + ] +} diff --git a/data/software/bo/boxful.json b/data/software/bo/boxful.json new file mode 100644 index 000000000000..65aba290ab4c --- /dev/null +++ b/data/software/bo/boxful.json @@ -0,0 +1,8 @@ +{ + "slug": "boxful", + "name": "Boxful", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q19854793" + ] +} diff --git a/data/software/bo/boycottadvance.json b/data/software/bo/boycottadvance.json new file mode 100644 index 000000000000..b16fbf56791d --- /dev/null +++ b/data/software/bo/boycottadvance.json @@ -0,0 +1,8 @@ +{ + "slug": "boycottadvance", + "name": "BoycottAdvance", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4952273" + ] +} diff --git a/data/software/bp/bpjscan.json b/data/software/bp/bpjscan.json new file mode 100644 index 000000000000..5823e96c1857 --- /dev/null +++ b/data/software/bp/bpjscan.json @@ -0,0 +1,11 @@ +{ + "slug": "bpjscan", + "name": "BPJScan", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140305549" + ], + "developers": [ + "Imperial Healthtech" + ] +} diff --git a/data/software/bp/bps-biodiversity-performance-score.json b/data/software/bp/bps-biodiversity-performance-score.json new file mode 100644 index 000000000000..5a26c9808cb1 --- /dev/null +++ b/data/software/bp/bps-biodiversity-performance-score.json @@ -0,0 +1,11 @@ +{ + "slug": "bps-biodiversity-performance-score", + "name": "BPS — Biodiversity Performance Score", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139554618" + ], + "developers": [ + "IRICE" + ] +} diff --git a/data/software/br/brainflow-ai.json b/data/software/br/brainflow-ai.json new file mode 100644 index 000000000000..9113e42ac4a5 --- /dev/null +++ b/data/software/br/brainflow-ai.json @@ -0,0 +1,8 @@ +{ + "slug": "brainflow-ai", + "name": "BrainFlow AI", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139659917" + ] +} diff --git a/data/software/br/brainflow.json b/data/software/br/brainflow.json new file mode 100644 index 000000000000..98b7e3c062ee --- /dev/null +++ b/data/software/br/brainflow.json @@ -0,0 +1,11 @@ +{ + "slug": "brainflow", + "name": "brainflow", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121539113" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/br/brainstorm.json b/data/software/br/brainstorm.json new file mode 100644 index 000000000000..3fcbd10818a2 --- /dev/null +++ b/data/software/br/brainstorm.json @@ -0,0 +1,17 @@ +{ + "slug": "brainstorm", + "name": "Brainstorm", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q64816680" + ], + "developers": [ + "MIT Computer Science and Artificial Intelligence Laboratory" + ], + "programming_languages": [ + "Python" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/br/brainvoyager.json b/data/software/br/brainvoyager.json new file mode 100644 index 000000000000..b0aaf0f911b0 --- /dev/null +++ b/data/software/br/brainvoyager.json @@ -0,0 +1,11 @@ +{ + "slug": "brainvoyager", + "name": "BrainVoyager", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q41793788" + ], + "developers": [ + "Rainer Goebel" + ] +} diff --git a/data/software/br/brakeman.json b/data/software/br/brakeman.json new file mode 100644 index 000000000000..b2f61c083190 --- /dev/null +++ b/data/software/br/brakeman.json @@ -0,0 +1,11 @@ +{ + "slug": "brakeman", + "name": "Brakeman", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q54886541" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/br/branch-metrics.json b/data/software/br/branch-metrics.json new file mode 100644 index 000000000000..2ecef87d7e2c --- /dev/null +++ b/data/software/br/branch-metrics.json @@ -0,0 +1,8 @@ +{ + "slug": "branch-metrics", + "name": "Branch Metrics", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q20800435" + ] +} diff --git a/data/software/br/brat-rapid-annotation-tool.json b/data/software/br/brat-rapid-annotation-tool.json new file mode 100644 index 000000000000..10ed1c95f998 --- /dev/null +++ b/data/software/br/brat-rapid-annotation-tool.json @@ -0,0 +1,12 @@ +{ + "slug": "brat-rapid-annotation-tool", + "name": "brat rapid annotation tool", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084820" + ], + "licenses": [ + "Creative Commons Attribution 3.0 Unported", + "MIT License" + ] +} diff --git a/data/software/br/braveheart.json b/data/software/br/braveheart.json new file mode 100644 index 000000000000..d101f6f36433 --- /dev/null +++ b/data/software/br/braveheart.json @@ -0,0 +1,8 @@ +{ + "slug": "braveheart", + "name": "Braveheart", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140390614" + ] +} diff --git a/data/software/br/bravo.json b/data/software/br/bravo.json new file mode 100644 index 000000000000..c850c1e443af --- /dev/null +++ b/data/software/br/bravo.json @@ -0,0 +1,11 @@ +{ + "slug": "bravo", + "name": "BRAVO", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18754143" + ], + "developers": [ + "Genesis Gaming Solutions" + ] +} diff --git a/data/software/br/brazil-r-s.json b/data/software/br/brazil-r-s.json new file mode 100644 index 000000000000..82b8d2655603 --- /dev/null +++ b/data/software/br/brazil-r-s.json @@ -0,0 +1,11 @@ +{ + "slug": "brazil-r-s", + "name": "Brazil R/S", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q958018" + ], + "developers": [ + "Imagination Technologies" + ] +} diff --git a/data/software/br/brcks.json b/data/software/br/brcks.json new file mode 100644 index 000000000000..591037837db6 --- /dev/null +++ b/data/software/br/brcks.json @@ -0,0 +1,11 @@ +{ + "slug": "brcks", + "name": "BRCKS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138054080" + ], + "developers": [ + "BRCKS" + ] +} diff --git a/data/software/br/breakdown.json b/data/software/br/breakdown.json new file mode 100644 index 000000000000..20f1885d57b3 --- /dev/null +++ b/data/software/br/breakdown.json @@ -0,0 +1,11 @@ +{ + "slug": "breakdown", + "name": "Breakdown", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125523450" + ], + "programming_languages": [ + "Turbo Pascal" + ] +} diff --git a/data/software/br/breezi.json b/data/software/br/breezi.json new file mode 100644 index 000000000000..0571d1f2ea37 --- /dev/null +++ b/data/software/br/breezi.json @@ -0,0 +1,8 @@ +{ + "slug": "breezi", + "name": "Breezi", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22906907" + ] +} diff --git a/data/software/br/brekeke-pbx.json b/data/software/br/brekeke-pbx.json new file mode 100644 index 000000000000..97679b7977a2 --- /dev/null +++ b/data/software/br/brekeke-pbx.json @@ -0,0 +1,12 @@ +{ + "slug": "brekeke-pbx", + "name": "Brekeke PBX", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4960478" + ], + "release_date": "2004-01-01", + "developers": [ + "Brekeke Software" + ] +} diff --git a/data/software/br/brekeke-sip-server.json b/data/software/br/brekeke-sip-server.json new file mode 100644 index 000000000000..8e6eea9ee513 --- /dev/null +++ b/data/software/br/brekeke-sip-server.json @@ -0,0 +1,17 @@ +{ + "slug": "brekeke-sip-server", + "name": "Brekeke SIP Server", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4960480" + ], + "release_date": "2003-01-01", + "developers": [ + "Brekeke Software" + ], + "operating_systems": [ + "Solaris", + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/software/br/brewmaxx.json b/data/software/br/brewmaxx.json new file mode 100644 index 000000000000..c07c1e16e09c --- /dev/null +++ b/data/software/br/brewmaxx.json @@ -0,0 +1,8 @@ +{ + "slug": "brewmaxx", + "name": "Brewmaxx", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q911403" + ] +} diff --git a/data/software/br/brfplus.json b/data/software/br/brfplus.json new file mode 100644 index 000000000000..440eec922f25 --- /dev/null +++ b/data/software/br/brfplus.json @@ -0,0 +1,11 @@ +{ + "slug": "brfplus", + "name": "BRFplus", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q796935" + ], + "developers": [ + "SAP" + ] +} diff --git a/data/software/br/bricklink-studio.json b/data/software/br/bricklink-studio.json new file mode 100644 index 000000000000..49aad71270a1 --- /dev/null +++ b/data/software/br/bricklink-studio.json @@ -0,0 +1,8 @@ +{ + "slug": "bricklink-studio", + "name": "BrickLink Studio", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137783554" + ] +} diff --git a/data/software/br/bridge-lms.json b/data/software/br/bridge-lms.json new file mode 100644 index 000000000000..b6031f47f5d9 --- /dev/null +++ b/data/software/br/bridge-lms.json @@ -0,0 +1,8 @@ +{ + "slug": "bridge-lms", + "name": "Bridge LMS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136410017" + ] +} diff --git a/data/software/br/bridgedb.json b/data/software/br/bridgedb.json new file mode 100644 index 000000000000..920a24e43072 --- /dev/null +++ b/data/software/br/bridgedb.json @@ -0,0 +1,8 @@ +{ + "slug": "bridgedb", + "name": "BridgeDb", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q55582517" + ] +} diff --git a/data/software/br/brightwheel.json b/data/software/br/brightwheel.json new file mode 100644 index 000000000000..b9ec746d84e8 --- /dev/null +++ b/data/software/br/brightwheel.json @@ -0,0 +1,11 @@ +{ + "slug": "brightwheel", + "name": "Brightwheel", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139328792" + ], + "operating_systems": [ + "iOS" + ] +} diff --git a/data/software/br/bristlr.json b/data/software/br/bristlr.json new file mode 100644 index 000000000000..7481fdbdf2f0 --- /dev/null +++ b/data/software/br/bristlr.json @@ -0,0 +1,11 @@ +{ + "slug": "bristlr", + "name": "Bristlr", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q42417805" + ], + "operating_systems": [ + "iOS" + ] +} diff --git a/data/software/br/britflix.json b/data/software/br/britflix.json new file mode 100644 index 000000000000..9ea8e494f6a7 --- /dev/null +++ b/data/software/br/britflix.json @@ -0,0 +1,8 @@ +{ + "slug": "britflix", + "name": "Britflix", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q24993854" + ] +} diff --git a/data/software/br/brmsx.json b/data/software/br/brmsx.json new file mode 100644 index 000000000000..b972a268841e --- /dev/null +++ b/data/software/br/brmsx.json @@ -0,0 +1,8 @@ +{ + "slug": "brmsx", + "name": "BrMSX", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1975741" + ] +} diff --git a/data/software/br/broken-picture-telephone.json b/data/software/br/broken-picture-telephone.json new file mode 100644 index 000000000000..40c765cfc60b --- /dev/null +++ b/data/software/br/broken-picture-telephone.json @@ -0,0 +1,14 @@ +{ + "slug": "broken-picture-telephone", + "name": "Broken Picture Telephone", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22019700" + ], + "operating_systems": [ + "iOS" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/br/browsec.json b/data/software/br/browsec.json new file mode 100644 index 000000000000..dcc3b6ad6ac6 --- /dev/null +++ b/data/software/br/browsec.json @@ -0,0 +1,13 @@ +{ + "slug": "browsec", + "name": "Browsec", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139386864" + ], + "operating_systems": [ + "iOS", + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/software/br/browsertrix.json b/data/software/br/browsertrix.json new file mode 100644 index 000000000000..3cebe8ecfc35 --- /dev/null +++ b/data/software/br/browsertrix.json @@ -0,0 +1,16 @@ +{ + "slug": "browsertrix", + "name": "Browsertrix", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112795579" + ], + "release_date": "2019-01-01", + "developers": [ + "Webrecorder" + ], + "programming_languages": [ + "Python", + "TypeScript" + ] +} diff --git a/data/software/bs/bs-7925-1.json b/data/software/bs/bs-7925-1.json new file mode 100644 index 000000000000..58048f9f5171 --- /dev/null +++ b/data/software/bs/bs-7925-1.json @@ -0,0 +1,8 @@ +{ + "slug": "bs-7925-1", + "name": "BS 7925-1", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4836648" + ] +} diff --git a/data/software/bs/bs-7925-2.json b/data/software/bs/bs-7925-2.json new file mode 100644 index 000000000000..cdd00a39865c --- /dev/null +++ b/data/software/bs/bs-7925-2.json @@ -0,0 +1,8 @@ +{ + "slug": "bs-7925-2", + "name": "BS 7925-2", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4836646" + ] +} diff --git a/data/software/bs/bsch.json b/data/software/bs/bsch.json new file mode 100644 index 000000000000..c6e650a13177 --- /dev/null +++ b/data/software/bs/bsch.json @@ -0,0 +1,15 @@ +{ + "slug": "bsch", + "name": "BSch", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11191767" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [ + "Visual C++" + ] +} diff --git a/data/software/bs/bsdutils.json b/data/software/bs/bsdutils.json new file mode 100644 index 000000000000..ac204ca3926e --- /dev/null +++ b/data/software/bs/bsdutils.json @@ -0,0 +1,14 @@ +{ + "slug": "bsdutils", + "name": "bsdutils", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116695406" + ], + "developers": [ + "David L. Cantrell" + ], + "licenses": [ + "3-clause BSD License" + ] +} diff --git a/data/software/bs/bsoft.json b/data/software/bs/bsoft.json new file mode 100644 index 000000000000..b7176ab4b7cb --- /dev/null +++ b/data/software/bs/bsoft.json @@ -0,0 +1,8 @@ +{ + "slug": "bsoft", + "name": "Bsoft", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4982024" + ] +} diff --git a/data/software/bt/btcrack.json b/data/software/bt/btcrack.json new file mode 100644 index 000000000000..61ce3deebdb3 --- /dev/null +++ b/data/software/bt/btcrack.json @@ -0,0 +1,11 @@ +{ + "slug": "btcrack", + "name": "btcrack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28941679" + ], + "licenses": [ + "GNU General Public License, version 3.0" + ] +} diff --git a/data/software/bt/btfs.json b/data/software/bt/btfs.json new file mode 100644 index 000000000000..0cb345cb7ea6 --- /dev/null +++ b/data/software/bt/btfs.json @@ -0,0 +1,8 @@ +{ + "slug": "btfs", + "name": "btfs", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62846203" + ] +} diff --git a/data/software/bt/btguard.json b/data/software/bt/btguard.json new file mode 100644 index 000000000000..c5f92fbc39aa --- /dev/null +++ b/data/software/bt/btguard.json @@ -0,0 +1,11 @@ +{ + "slug": "btguard", + "name": "BTGuard", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22906943" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/bu/bubble-plan.json b/data/software/bu/bubble-plan.json new file mode 100644 index 000000000000..cd12602ed19d --- /dev/null +++ b/data/software/bu/bubble-plan.json @@ -0,0 +1,8 @@ +{ + "slug": "bubble-plan", + "name": "Bubble Plan", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140312631" + ] +} diff --git a/data/software/bu/bubbleupnp.json b/data/software/bu/bubbleupnp.json new file mode 100644 index 000000000000..d0edf00d0e14 --- /dev/null +++ b/data/software/bu/bubbleupnp.json @@ -0,0 +1,8 @@ +{ + "slug": "bubbleupnp", + "name": "BubbleUPnP", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123221324" + ] +} diff --git a/data/software/bu/bubbly.json b/data/software/bu/bubbly.json new file mode 100644 index 000000000000..7a042c846ca8 --- /dev/null +++ b/data/software/bu/bubbly.json @@ -0,0 +1,8 @@ +{ + "slug": "bubbly", + "name": "Bubbly", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16828407" + ] +} diff --git a/data/software/bu/budapest-reference-connectome.json b/data/software/bu/budapest-reference-connectome.json new file mode 100644 index 000000000000..8a18158c8f68 --- /dev/null +++ b/data/software/bu/budapest-reference-connectome.json @@ -0,0 +1,8 @@ +{ + "slug": "budapest-reference-connectome", + "name": "Budapest Reference Connectome", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q20970339" + ] +} diff --git a/data/software/bu/buffer.json b/data/software/bu/buffer.json new file mode 100644 index 000000000000..6cbd184e19fd --- /dev/null +++ b/data/software/bu/buffer.json @@ -0,0 +1,9 @@ +{ + "slug": "buffer", + "name": "Buffer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q15633715" + ], + "release_date": "2010-11-30" +} diff --git a/data/software/bu/bugtrap.json b/data/software/bu/bugtrap.json new file mode 100644 index 000000000000..2e40b53101fb --- /dev/null +++ b/data/software/bu/bugtrap.json @@ -0,0 +1,11 @@ +{ + "slug": "bugtrap", + "name": "BugTrap", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q133288368" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/bu/build-a-bird.json b/data/software/bu/build-a-bird.json new file mode 100644 index 000000000000..cce33c407eee --- /dev/null +++ b/data/software/bu/build-a-bird.json @@ -0,0 +1,8 @@ +{ + "slug": "build-a-bird", + "name": "Build-A-Bird", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4986376" + ] +} diff --git a/data/software/bu/build.json b/data/software/bu/build.json new file mode 100644 index 000000000000..b7a07ed3a96a --- /dev/null +++ b/data/software/bu/build.json @@ -0,0 +1,8 @@ +{ + "slug": "build", + "name": "build", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60916765" + ] +} diff --git a/data/software/bu/buka.json b/data/software/bu/buka.json new file mode 100644 index 000000000000..22ad4129f192 --- /dev/null +++ b/data/software/bu/buka.json @@ -0,0 +1,8 @@ +{ + "slug": "buka", + "name": "buka", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q59771340" + ] +} diff --git a/data/software/bu/bulkhead-pattern.json b/data/software/bu/bulkhead-pattern.json new file mode 100644 index 000000000000..23482e386add --- /dev/null +++ b/data/software/bu/bulkhead-pattern.json @@ -0,0 +1,8 @@ +{ + "slug": "bulkhead-pattern", + "name": "Bulkhead pattern", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139855622" + ] +} diff --git a/data/software/bu/bullzip-pdf-printer.json b/data/software/bu/bullzip-pdf-printer.json new file mode 100644 index 000000000000..b2ecdad81c42 --- /dev/null +++ b/data/software/bu/bullzip-pdf-printer.json @@ -0,0 +1,8 @@ +{ + "slug": "bullzip-pdf-printer", + "name": "Bullzip PDF Printer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4997111" + ] +} diff --git a/data/software/bu/bump.json b/data/software/bu/bump.json new file mode 100644 index 000000000000..f047dd20c8bc --- /dev/null +++ b/data/software/bu/bump.json @@ -0,0 +1,11 @@ +{ + "slug": "bump", + "name": "Bump", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4997299" + ], + "operating_systems": [ + "iOS" + ] +} diff --git a/data/software/bu/bumpercar.json b/data/software/bu/bumpercar.json new file mode 100644 index 000000000000..10e667a7febc --- /dev/null +++ b/data/software/bu/bumpercar.json @@ -0,0 +1,15 @@ +{ + "slug": "bumpercar", + "name": "BumperCar", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4997325" + ], + "release_date": "2004-01-01", + "developers": [ + "Freeverse" + ], + "operating_systems": [ + "macOS" + ] +} diff --git a/data/software/bu/bundestrip.json b/data/software/bu/bundestrip.json new file mode 100644 index 000000000000..8f600e9ad32b --- /dev/null +++ b/data/software/bu/bundestrip.json @@ -0,0 +1,12 @@ +{ + "slug": "bundestrip", + "name": "BundesTrip", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139604866" + ], + "programming_languages": [ + "Python", + "TypeScript" + ] +} diff --git a/data/software/bu/bundled-software.json b/data/software/bu/bundled-software.json new file mode 100644 index 000000000000..842bdafbfda3 --- /dev/null +++ b/data/software/bu/bundled-software.json @@ -0,0 +1,8 @@ +{ + "slug": "bundled-software", + "name": "bundled software", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4997553" + ] +} diff --git a/data/software/bu/bunkatopics.json b/data/software/bu/bunkatopics.json new file mode 100644 index 000000000000..c00d6aca6047 --- /dev/null +++ b/data/software/bu/bunkatopics.json @@ -0,0 +1,14 @@ +{ + "slug": "bunkatopics", + "name": "BunkaTopics", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123348468" + ], + "programming_languages": [ + "Python" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/bu/bunkerweb.json b/data/software/bu/bunkerweb.json new file mode 100644 index 000000000000..54447eb2e6f1 --- /dev/null +++ b/data/software/bu/bunkerweb.json @@ -0,0 +1,8 @@ +{ + "slug": "bunkerweb", + "name": "BunkerWeb", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122929604" + ] +} diff --git a/data/software/bu/bunqdesktop.json b/data/software/bu/bunqdesktop.json new file mode 100644 index 000000000000..d43f54739526 --- /dev/null +++ b/data/software/bu/bunqdesktop.json @@ -0,0 +1,11 @@ +{ + "slug": "bunqdesktop", + "name": "bunqdesktop", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q59771332" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/bu/burn-proof.json b/data/software/bu/burn-proof.json new file mode 100644 index 000000000000..c727ececff77 --- /dev/null +++ b/data/software/bu/burn-proof.json @@ -0,0 +1,11 @@ +{ + "slug": "burn-proof", + "name": "Burn-Proof", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q9182223" + ], + "developers": [ + "Sanyo" + ] +} diff --git a/data/software/bu/burncase-3d.json b/data/software/bu/burncase-3d.json new file mode 100644 index 000000000000..56b723779d1e --- /dev/null +++ b/data/software/bu/burncase-3d.json @@ -0,0 +1,11 @@ +{ + "slug": "burncase-3d", + "name": "BurnCase 3D", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1016713" + ], + "developers": [ + "Johannes Kepler University Linz" + ] +} diff --git a/data/software/bu/burp-suite.json b/data/software/bu/burp-suite.json new file mode 100644 index 000000000000..d3cf0f8d9366 --- /dev/null +++ b/data/software/bu/burp-suite.json @@ -0,0 +1,12 @@ +{ + "slug": "burp-suite", + "name": "Burp Suite", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2324584" + ], + "release_date": "2004-01-01", + "programming_languages": [ + "Java" + ] +} diff --git a/data/software/bu/burrows-wheeler-aligner.json b/data/software/bu/burrows-wheeler-aligner.json new file mode 100644 index 000000000000..903cf1cbb262 --- /dev/null +++ b/data/software/bu/burrows-wheeler-aligner.json @@ -0,0 +1,8 @@ +{ + "slug": "burrows-wheeler-aligner", + "name": "Burrows-Wheeler Aligner", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25395193" + ] +} diff --git a/data/software/bu/burstcoin.json b/data/software/bu/burstcoin.json new file mode 100644 index 000000000000..d30f0b140751 --- /dev/null +++ b/data/software/bu/burstcoin.json @@ -0,0 +1,11 @@ +{ + "slug": "burstcoin", + "name": "Burstcoin", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28765889" + ], + "licenses": [ + "GNU General Public License, version 3.0" + ] +} diff --git a/data/software/bu/business-catalyst.json b/data/software/bu/business-catalyst.json new file mode 100644 index 000000000000..7ac9e3ffc383 --- /dev/null +++ b/data/software/bu/business-catalyst.json @@ -0,0 +1,11 @@ +{ + "slug": "business-catalyst", + "name": "Business Catalyst", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5001687" + ], + "developers": [ + "Adobe" + ] +} diff --git a/data/software/bu/business-intelligence-software.json b/data/software/bu/business-intelligence-software.json new file mode 100644 index 000000000000..940574e57288 --- /dev/null +++ b/data/software/bu/business-intelligence-software.json @@ -0,0 +1,8 @@ +{ + "slug": "business-intelligence-software", + "name": "business intelligence software", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5001888" + ] +} diff --git a/data/software/bu/businessobjects-web-intelligence.json b/data/software/bu/businessobjects-web-intelligence.json new file mode 100644 index 000000000000..a7571a48eb52 --- /dev/null +++ b/data/software/bu/businessobjects-web-intelligence.json @@ -0,0 +1,8 @@ +{ + "slug": "businessobjects-web-intelligence", + "name": "BusinessObjects Web Intelligence", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122782808" + ] +} diff --git a/data/software/bu/butler.json b/data/software/bu/butler.json new file mode 100644 index 000000000000..677f480926d1 --- /dev/null +++ b/data/software/bu/butler.json @@ -0,0 +1,11 @@ +{ + "slug": "butler", + "name": "Butler", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5002565" + ], + "licenses": [ + "donationware" + ] +} diff --git a/data/software/bu/buttondown.json b/data/software/bu/buttondown.json new file mode 100644 index 000000000000..34f2b5c66050 --- /dev/null +++ b/data/software/bu/buttondown.json @@ -0,0 +1,8 @@ +{ + "slug": "buttondown", + "name": "Buttondown", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131583934" + ] +} diff --git a/data/software/bu/buzan-s-imindmap.json b/data/software/bu/buzan-s-imindmap.json new file mode 100644 index 000000000000..fcce9ff95740 --- /dev/null +++ b/data/software/bu/buzan-s-imindmap.json @@ -0,0 +1,12 @@ +{ + "slug": "buzan-s-imindmap", + "name": "Buzan's iMindMap", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3266380" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/software/bu/buzzdata.json b/data/software/bu/buzzdata.json new file mode 100644 index 000000000000..eb7dffacf35a --- /dev/null +++ b/data/software/bu/buzzdata.json @@ -0,0 +1,8 @@ +{ + "slug": "buzzdata", + "name": "BuzzData", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084821" + ] +} diff --git a/data/software/bv/bv4-1.json b/data/software/bv/bv4-1.json new file mode 100644 index 000000000000..93d823d5a632 --- /dev/null +++ b/data/software/bv/bv4-1.json @@ -0,0 +1,14 @@ +{ + "slug": "bv4-1", + "name": "BV4.1", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q797100" + ], + "developers": [ + "Federal Statistical Office of Germany" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/bw/bwfla-emulation-as-a-service.json b/data/software/bw/bwfla-emulation-as-a-service.json new file mode 100644 index 000000000000..2ba9bfca290d --- /dev/null +++ b/data/software/bw/bwfla-emulation-as-a-service.json @@ -0,0 +1,15 @@ +{ + "slug": "bwfla-emulation-as-a-service", + "name": "bwFLA Emulation as a Service", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q34489794" + ], + "developers": [ + "University of Freiburg" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/software/by/byfl.json b/data/software/by/byfl.json new file mode 100644 index 000000000000..6bda5b0183d5 --- /dev/null +++ b/data/software/by/byfl.json @@ -0,0 +1,8 @@ +{ + "slug": "byfl", + "name": "byfl", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28941702" + ] +} diff --git a/data/software/by/byggdox.json b/data/software/by/byggdox.json new file mode 100644 index 000000000000..b69d3009ff51 --- /dev/null +++ b/data/software/by/byggdox.json @@ -0,0 +1,8 @@ +{ + "slug": "byggdox", + "name": "Byggdox", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139591403" + ] +} diff --git a/data/software/by/bytemarc.json b/data/software/by/bytemarc.json new file mode 100644 index 000000000000..6c278d415239 --- /dev/null +++ b/data/software/by/bytemarc.json @@ -0,0 +1,9 @@ +{ + "slug": "bytemarc", + "name": "ByteMARC", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62128990" + ], + "release_date": "2002-01-01" +} diff --git a/data/software/by/byteplant.json b/data/software/by/byteplant.json new file mode 100644 index 000000000000..361804f387c3 --- /dev/null +++ b/data/software/by/byteplant.json @@ -0,0 +1,8 @@ +{ + "slug": "byteplant", + "name": "Byteplant", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126722374" + ] +} diff --git a/data/software/by/bytetren.json b/data/software/by/bytetren.json new file mode 100644 index 000000000000..d7651140862c --- /dev/null +++ b/data/software/by/bytetren.json @@ -0,0 +1,8 @@ +{ + "slug": "bytetren", + "name": "ByteTren", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139660623" + ] +} diff --git a/data/software/c-/c-access.json b/data/software/c-/c-access.json new file mode 100644 index 000000000000..3e81987c9bf4 --- /dev/null +++ b/data/software/c-/c-access.json @@ -0,0 +1,11 @@ +{ + "slug": "c-access", + "name": "C-Access", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q97307599" + ], + "developers": [ + "KAI Commuter" + ] +} diff --git a/data/software/c-/c-amp.json b/data/software/c-/c-amp.json new file mode 100644 index 000000000000..2be68d96a121 --- /dev/null +++ b/data/software/c-/c-amp.json @@ -0,0 +1,11 @@ +{ + "slug": "c-amp", + "name": "C++ AMP", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q722084" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/c-/c-client.json b/data/software/c-/c-client.json new file mode 100644 index 000000000000..8698763b35f9 --- /dev/null +++ b/data/software/c-/c-client.json @@ -0,0 +1,8 @@ +{ + "slug": "c-client", + "name": "c-client", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065463" + ] +} diff --git a/data/software/c2/c2call-gmbh.json b/data/software/c2/c2call-gmbh.json new file mode 100644 index 000000000000..4ee8679db9ce --- /dev/null +++ b/data/software/c2/c2call-gmbh.json @@ -0,0 +1,8 @@ +{ + "slug": "c2call-gmbh", + "name": "C2Call GmbH", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5008078" + ] +} diff --git a/data/software/c2/c2talk.json b/data/software/c2/c2talk.json new file mode 100644 index 000000000000..22888efa683a --- /dev/null +++ b/data/software/c2/c2talk.json @@ -0,0 +1,8 @@ +{ + "slug": "c2talk", + "name": "c2talk", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18455528" + ] +} diff --git a/data/software/c6/c6-multichat.json b/data/software/c6/c6-multichat.json new file mode 100644 index 000000000000..f3da3762ba91 --- /dev/null +++ b/data/software/c6/c6-multichat.json @@ -0,0 +1,11 @@ +{ + "slug": "c6-multichat", + "name": "C6 Multichat", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3648445" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/ca/ca-anti-spyware.json b/data/software/ca/ca-anti-spyware.json new file mode 100644 index 000000000000..d39efccfaf81 --- /dev/null +++ b/data/software/ca/ca-anti-spyware.json @@ -0,0 +1,11 @@ +{ + "slug": "ca-anti-spyware", + "name": "CA Anti-Spyware", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5008934" + ], + "developers": [ + "CA Technologies" + ] +} diff --git a/data/software/ca/ca-it-process-automation-manager.json b/data/software/ca/ca-it-process-automation-manager.json new file mode 100644 index 000000000000..057d644e64fb --- /dev/null +++ b/data/software/ca/ca-it-process-automation-manager.json @@ -0,0 +1,11 @@ +{ + "slug": "ca-it-process-automation-manager", + "name": "CA IT Process Automation Manager", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5008944" + ], + "developers": [ + "CA Technologies" + ] +} diff --git a/data/software/ca/ca-spectrum.json b/data/software/ca/ca-spectrum.json new file mode 100644 index 000000000000..ea6f62983c6c --- /dev/null +++ b/data/software/ca/ca-spectrum.json @@ -0,0 +1,8 @@ +{ + "slug": "ca-spectrum", + "name": "CA Spectrum", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1493480" + ] +} diff --git a/data/software/ca/ca-workload-automation-ae.json b/data/software/ca/ca-workload-automation-ae.json new file mode 100644 index 000000000000..a1a6f2a316b9 --- /dev/null +++ b/data/software/ca/ca-workload-automation-ae.json @@ -0,0 +1,11 @@ +{ + "slug": "ca-workload-automation-ae", + "name": "CA Workload Automation AE", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2931005" + ], + "developers": [ + "CA Technologies" + ] +} diff --git a/data/software/ca/cacao.json b/data/software/ca/cacao.json new file mode 100644 index 000000000000..87dcdd03fa5f --- /dev/null +++ b/data/software/ca/cacao.json @@ -0,0 +1,11 @@ +{ + "slug": "cacao", + "name": "CACAO", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122818615" + ], + "developers": [ + "CyVerse" + ] +} diff --git a/data/software/ca/cachix.json b/data/software/ca/cachix.json new file mode 100644 index 000000000000..c01c68617500 --- /dev/null +++ b/data/software/ca/cachix.json @@ -0,0 +1,8 @@ +{ + "slug": "cachix", + "name": "Cachix", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130217155" + ] +} diff --git a/data/software/ca/cad-e.json b/data/software/ca/cad-e.json new file mode 100644 index 000000000000..51edd76e9a77 --- /dev/null +++ b/data/software/ca/cad-e.json @@ -0,0 +1,8 @@ +{ + "slug": "cad-e", + "name": "CAD-e", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18619872" + ] +} diff --git a/data/software/ca/cad-overlay.json b/data/software/ca/cad-overlay.json new file mode 100644 index 000000000000..fc631640f7c8 --- /dev/null +++ b/data/software/ca/cad-overlay.json @@ -0,0 +1,9 @@ +{ + "slug": "cad-overlay", + "name": "CAD Overlay", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28446216" + ], + "release_date": "1989-01-01" +} diff --git a/data/software/ca/caddie.json b/data/software/ca/caddie.json new file mode 100644 index 000000000000..3f50b2295f4d --- /dev/null +++ b/data/software/ca/caddie.json @@ -0,0 +1,9 @@ +{ + "slug": "caddie", + "name": "Caddie", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5016296" + ], + "release_date": "1986-01-01" +} diff --git a/data/software/ca/cadec.json b/data/software/ca/cadec.json new file mode 100644 index 000000000000..29c25c03e331 --- /dev/null +++ b/data/software/ca/cadec.json @@ -0,0 +1,8 @@ +{ + "slug": "cadec", + "name": "CADEC", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5016344" + ] +} diff --git a/data/software/ca/cadkey.json b/data/software/ca/cadkey.json new file mode 100644 index 000000000000..d83020fa35c6 --- /dev/null +++ b/data/software/ca/cadkey.json @@ -0,0 +1,13 @@ +{ + "slug": "cadkey", + "name": "CADKEY", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5008558" + ], + "release_date": "1984-12-01", + "operating_systems": [ + "DOS", + "Microsoft Windows" + ] +} diff --git a/data/software/ca/cadstar.json b/data/software/ca/cadstar.json new file mode 100644 index 000000000000..33dc4aac56fe --- /dev/null +++ b/data/software/ca/cadstar.json @@ -0,0 +1,8 @@ +{ + "slug": "cadstar", + "name": "CADSTAR", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5008572" + ] +} diff --git a/data/software/ca/cadview.json b/data/software/ca/cadview.json new file mode 100644 index 000000000000..253980b0e1bf --- /dev/null +++ b/data/software/ca/cadview.json @@ -0,0 +1,8 @@ +{ + "slug": "cadview", + "name": "CADView", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q89465394" + ] +} diff --git a/data/software/ca/cagrid.json b/data/software/ca/cagrid.json new file mode 100644 index 000000000000..07baed6cdfd7 --- /dev/null +++ b/data/software/ca/cagrid.json @@ -0,0 +1,8 @@ +{ + "slug": "cagrid", + "name": "CaGrid", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5015151" + ] +} diff --git a/data/software/ca/cai-format.json b/data/software/ca/cai-format.json new file mode 100644 index 000000000000..6eb41c4edb90 --- /dev/null +++ b/data/software/ca/cai-format.json @@ -0,0 +1,8 @@ +{ + "slug": "cai-format", + "name": "CAI Format", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16954806" + ] +} diff --git a/data/software/ca/cainiao.json b/data/software/ca/cainiao.json new file mode 100644 index 000000000000..f07269545223 --- /dev/null +++ b/data/software/ca/cainiao.json @@ -0,0 +1,8 @@ +{ + "slug": "cainiao", + "name": "Cainiao", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16947973" + ] +} diff --git a/data/software/ca/cakewalk-by-bandlab.json b/data/software/ca/cakewalk-by-bandlab.json new file mode 100644 index 000000000000..6f88d15fa8ff --- /dev/null +++ b/data/software/ca/cakewalk-by-bandlab.json @@ -0,0 +1,8 @@ +{ + "slug": "cakewalk-by-bandlab", + "name": "Cakewalk by BandLab", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110913753" + ] +} diff --git a/data/software/ca/calamari.json b/data/software/ca/calamari.json new file mode 100644 index 000000000000..7ef0ce48d3fa --- /dev/null +++ b/data/software/ca/calamari.json @@ -0,0 +1,14 @@ +{ + "slug": "calamari", + "name": "Calamari", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124348079" + ], + "programming_languages": [ + "Python" + ], + "licenses": [ + "Apache Software License 2.0" + ] +} diff --git a/data/software/ca/calamus.json b/data/software/ca/calamus.json new file mode 100644 index 000000000000..fa89f637a969 --- /dev/null +++ b/data/software/ca/calamus.json @@ -0,0 +1,8 @@ +{ + "slug": "calamus", + "name": "Calamus", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1026230" + ] +} diff --git a/data/software/ca/calcpad.json b/data/software/ca/calcpad.json new file mode 100644 index 000000000000..edefcb4f521b --- /dev/null +++ b/data/software/ca/calcpad.json @@ -0,0 +1,8 @@ +{ + "slug": "calcpad", + "name": "Calcpad", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137727794" + ] +} diff --git a/data/software/ca/calcufloor.json b/data/software/ca/calcufloor.json new file mode 100644 index 000000000000..3dc834080c4d --- /dev/null +++ b/data/software/ca/calcufloor.json @@ -0,0 +1,8 @@ +{ + "slug": "calcufloor", + "name": "Calcufloor", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137794393" + ] +} diff --git a/data/software/ca/calcurates.json b/data/software/ca/calcurates.json new file mode 100644 index 000000000000..e894aa5b2883 --- /dev/null +++ b/data/software/ca/calcurates.json @@ -0,0 +1,8 @@ +{ + "slug": "calcurates", + "name": "Calcurates", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140042122" + ] +} diff --git a/data/software/ca/calcurse.json b/data/software/ca/calcurse.json new file mode 100644 index 000000000000..4ce9a5be43c4 --- /dev/null +++ b/data/software/ca/calcurse.json @@ -0,0 +1,11 @@ +{ + "slug": "calcurse", + "name": "Calcurse", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62851771" + ], + "licenses": [ + "2-clause BSD License" + ] +} diff --git a/data/software/ca/calen-dash.json b/data/software/ca/calen-dash.json new file mode 100644 index 000000000000..b3cb8133a2cb --- /dev/null +++ b/data/software/ca/calen-dash.json @@ -0,0 +1,8 @@ +{ + "slug": "calen-dash", + "name": "Calen Dash", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138735614" + ] +} diff --git a/data/software/ca/calenda.json b/data/software/ca/calenda.json new file mode 100644 index 000000000000..2875aab38428 --- /dev/null +++ b/data/software/ca/calenda.json @@ -0,0 +1,8 @@ +{ + "slug": "calenda", + "name": "Calenda", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084823" + ] +} diff --git a/data/software/ca/calendar-exporter.json b/data/software/ca/calendar-exporter.json new file mode 100644 index 000000000000..653509a2350c --- /dev/null +++ b/data/software/ca/calendar-exporter.json @@ -0,0 +1,14 @@ +{ + "slug": "calendar-exporter", + "name": "Calendar Exporter", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138472614" + ], + "developers": [ + "C. M. Leal Ltda" + ], + "operating_systems": [ + "macOS" + ] +} diff --git a/data/software/ca/calendar.json b/data/software/ca/calendar.json new file mode 100644 index 000000000000..a9fdf97e031b --- /dev/null +++ b/data/software/ca/calendar.json @@ -0,0 +1,13 @@ +{ + "slug": "calendar", + "name": "Calendar", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q27928931" + ], + "operating_systems": [ + "Windows 10 Mobile", + "Windows Phone 8.1", + "Windows Phone 8" + ] +} diff --git a/data/software/ca/calest.json b/data/software/ca/calest.json new file mode 100644 index 000000000000..5c22f4d88233 --- /dev/null +++ b/data/software/ca/calest.json @@ -0,0 +1,8 @@ +{ + "slug": "calest", + "name": "CalEst", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5018102" + ] +} diff --git a/data/software/ca/calfile.json b/data/software/ca/calfile.json new file mode 100644 index 000000000000..81fdc29ea3ee --- /dev/null +++ b/data/software/ca/calfile.json @@ -0,0 +1,8 @@ +{ + "slug": "calfile", + "name": "CalFile", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q97179364" + ] +} diff --git a/data/software/ca/callapp.json b/data/software/ca/callapp.json new file mode 100644 index 000000000000..655aa9144bf6 --- /dev/null +++ b/data/software/ca/callapp.json @@ -0,0 +1,8 @@ +{ + "slug": "callapp", + "name": "CallApp", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105834335" + ] +} diff --git a/data/software/ca/calligra-suite.json b/data/software/ca/calligra-suite.json new file mode 100644 index 000000000000..1018caaed441 --- /dev/null +++ b/data/software/ca/calligra-suite.json @@ -0,0 +1,17 @@ +{ + "slug": "calligra-suite", + "name": "Calligra Suite", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q864680" + ], + "release_date": "2000-01-01", + "operating_systems": [ + "Unix-like operating system", + "Microsoft Windows" + ], + "licenses": [ + "GNU Lesser General Public License", + "GNU General Public License" + ] +} diff --git a/data/software/ca/cambridge-algebra-system.json b/data/software/ca/cambridge-algebra-system.json new file mode 100644 index 000000000000..5ab5367a8124 --- /dev/null +++ b/data/software/ca/cambridge-algebra-system.json @@ -0,0 +1,16 @@ +{ + "slug": "cambridge-algebra-system", + "name": "Cambridge Algebra System", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16247009" + ], + "developers": [ + "John Fitch", + "Stephen R. Bourne" + ], + "programming_languages": [ + "ALGOL 68C", + "BCPL" + ] +} diff --git a/data/software/ca/cambridge-animation-systems.json b/data/software/ca/cambridge-animation-systems.json new file mode 100644 index 000000000000..7b62b216cb78 --- /dev/null +++ b/data/software/ca/cambridge-animation-systems.json @@ -0,0 +1,13 @@ +{ + "slug": "cambridge-animation-systems", + "name": "Cambridge Animation Systems", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q24915332" + ], + "operating_systems": [ + "SGI O2", + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/software/ca/camel-view-testrig.json b/data/software/ca/camel-view-testrig.json new file mode 100644 index 000000000000..50418ceb9f16 --- /dev/null +++ b/data/software/ca/camel-view-testrig.json @@ -0,0 +1,8 @@ +{ + "slug": "camel-view-testrig", + "name": "CAMeL-View TestRig", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q428975" + ] +} diff --git a/data/software/ca/cameleon.json b/data/software/ca/cameleon.json new file mode 100644 index 000000000000..88a68032c662 --- /dev/null +++ b/data/software/ca/cameleon.json @@ -0,0 +1,8 @@ +{ + "slug": "cameleon", + "name": "Cameleon", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5025884" + ] +} diff --git a/data/software/ca/camera-42.json b/data/software/ca/camera-42.json new file mode 100644 index 000000000000..67989e687054 --- /dev/null +++ b/data/software/ca/camera-42.json @@ -0,0 +1,8 @@ +{ + "slug": "camera-42", + "name": "Camera 42", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q15919088" + ] +} diff --git a/data/software/ca/camerton.json b/data/software/ca/camerton.json new file mode 100644 index 000000000000..dfb0173cf17e --- /dev/null +++ b/data/software/ca/camerton.json @@ -0,0 +1,8 @@ +{ + "slug": "camerton", + "name": "CAMERTON", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109524341" + ] +} diff --git a/data/software/ca/camfind.json b/data/software/ca/camfind.json new file mode 100644 index 000000000000..c8e29de88073 --- /dev/null +++ b/data/software/ca/camfind.json @@ -0,0 +1,11 @@ +{ + "slug": "camfind", + "name": "CamFind", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q19877655" + ], + "operating_systems": [ + "iOS" + ] +} diff --git a/data/software/ca/camo.json b/data/software/ca/camo.json new file mode 100644 index 000000000000..9ae8c8863b04 --- /dev/null +++ b/data/software/ca/camo.json @@ -0,0 +1,8 @@ +{ + "slug": "camo", + "name": "Camo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116701161" + ] +} diff --git a/data/software/ca/campfire.json b/data/software/ca/campfire.json new file mode 100644 index 000000000000..95fd4df4a05b --- /dev/null +++ b/data/software/ca/campfire.json @@ -0,0 +1,8 @@ +{ + "slug": "campfire", + "name": "Campfire", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139807949" + ] +} diff --git a/data/software/ca/campus-maps.json b/data/software/ca/campus-maps.json new file mode 100644 index 000000000000..2e34dbce2866 --- /dev/null +++ b/data/software/ca/campus-maps.json @@ -0,0 +1,8 @@ +{ + "slug": "campus-maps", + "name": "Campus Maps", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q19877665" + ] +} diff --git a/data/software/ca/canalyzer.json b/data/software/ca/canalyzer.json new file mode 100644 index 000000000000..ce560e5793af --- /dev/null +++ b/data/software/ca/canalyzer.json @@ -0,0 +1,12 @@ +{ + "slug": "canalyzer", + "name": "CANalyzer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1022805" + ], + "release_date": "1992-01-01", + "developers": [ + "Vector Informatik" + ] +} diff --git a/data/software/ca/candid.json b/data/software/ca/candid.json new file mode 100644 index 000000000000..e05fce5bd821 --- /dev/null +++ b/data/software/ca/candid.json @@ -0,0 +1,8 @@ +{ + "slug": "candid", + "name": "Candid", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28453032" + ] +} diff --git a/data/software/ca/cannon-brawl.json b/data/software/ca/cannon-brawl.json new file mode 100644 index 000000000000..e8adf803ecb8 --- /dev/null +++ b/data/software/ca/cannon-brawl.json @@ -0,0 +1,15 @@ +{ + "slug": "cannon-brawl", + "name": "Cannon Brawl", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q64915829" + ], + "release_date": "2014-09-19", + "genres": [ + "action-adventure game", + "strategy video game", + "adventure video game", + "action game" + ] +} diff --git a/data/software/ca/canoe.json b/data/software/ca/canoe.json new file mode 100644 index 000000000000..afeb3632f07a --- /dev/null +++ b/data/software/ca/canoe.json @@ -0,0 +1,11 @@ +{ + "slug": "canoe", + "name": "CANoe", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1022808" + ], + "developers": [ + "Vector Informatik" + ] +} diff --git a/data/software/ca/canoma.json b/data/software/ca/canoma.json new file mode 100644 index 000000000000..b2efec170db7 --- /dev/null +++ b/data/software/ca/canoma.json @@ -0,0 +1,8 @@ +{ + "slug": "canoma", + "name": "Canoma", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5033167" + ] +} diff --git a/data/software/ca/cantor.json b/data/software/ca/cantor.json new file mode 100644 index 000000000000..b040b8b31080 --- /dev/null +++ b/data/software/ca/cantor.json @@ -0,0 +1,15 @@ +{ + "slug": "cantor", + "name": "Cantor", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5034027" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/ca/canvas-x.json b/data/software/ca/canvas-x.json new file mode 100644 index 000000000000..c92fc55d1908 --- /dev/null +++ b/data/software/ca/canvas-x.json @@ -0,0 +1,11 @@ +{ + "slug": "canvas-x", + "name": "Canvas X", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q75929129" + ], + "developers": [ + "Deneba Software" + ] +} diff --git a/data/software/ca/cap-communication-access-point.json b/data/software/ca/cap-communication-access-point.json new file mode 100644 index 000000000000..7c3fd57ef6f4 --- /dev/null +++ b/data/software/ca/cap-communication-access-point.json @@ -0,0 +1,16 @@ +{ + "slug": "cap-communication-access-point", + "name": "CAP (Communication Access Point)", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q104666726" + ], + "developers": [ + "Messenger2050 Technologies" + ], + "operating_systems": [ + "iOS", + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/software/ca/capella-q21965864.json b/data/software/ca/capella-q21965864.json new file mode 100644 index 000000000000..3141ddc1b558 --- /dev/null +++ b/data/software/ca/capella-q21965864.json @@ -0,0 +1,18 @@ +{ + "slug": "capella-q21965864", + "name": "Capella", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q21965864" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [ + "Java" + ], + "licenses": [ + "Eclipse Public License 1.0" + ] +} diff --git a/data/software/ca/capella.json b/data/software/ca/capella.json new file mode 100644 index 000000000000..3a9955ca6bc2 --- /dev/null +++ b/data/software/ca/capella.json @@ -0,0 +1,15 @@ +{ + "slug": "capella", + "name": "Capella", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2937543" + ], + "release_date": "1998-01-01", + "operating_systems": [ + "Microsoft Windows" + ], + "genres": [ + "dubbing" + ] +} diff --git a/data/software/ca/capital-one-auto-navigator.json b/data/software/ca/capital-one-auto-navigator.json new file mode 100644 index 000000000000..627980ea1be0 --- /dev/null +++ b/data/software/ca/capital-one-auto-navigator.json @@ -0,0 +1,8 @@ +{ + "slug": "capital-one-auto-navigator", + "name": "Capital One Auto Navigator", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140241224" + ] +} diff --git a/data/software/ca/capital-one-navigator-platform.json b/data/software/ca/capital-one-navigator-platform.json new file mode 100644 index 000000000000..5e5db1782819 --- /dev/null +++ b/data/software/ca/capital-one-navigator-platform.json @@ -0,0 +1,8 @@ +{ + "slug": "capital-one-navigator-platform", + "name": "Capital One Navigator Platform", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140253310" + ] +} diff --git a/data/software/ca/capito-digital.json b/data/software/ca/capito-digital.json new file mode 100644 index 000000000000..c614cf994dac --- /dev/null +++ b/data/software/ca/capito-digital.json @@ -0,0 +1,8 @@ +{ + "slug": "capito-digital", + "name": "Capito Digital", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108516755" + ] +} diff --git a/data/software/ca/captio.json b/data/software/ca/captio.json new file mode 100644 index 000000000000..499d98432b1f --- /dev/null +++ b/data/software/ca/captio.json @@ -0,0 +1,13 @@ +{ + "slug": "captio", + "name": "Captio", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q19722049" + ], + "operating_systems": [ + "BlackBerry OS", + "Windows Phone", + "iOS" + ] +} diff --git a/data/software/ca/captricity.json b/data/software/ca/captricity.json new file mode 100644 index 000000000000..581ecc95cf15 --- /dev/null +++ b/data/software/ca/captricity.json @@ -0,0 +1,8 @@ +{ + "slug": "captricity", + "name": "Captricity", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17082759" + ] +} diff --git a/data/software/ca/capture-nx.json b/data/software/ca/capture-nx.json new file mode 100644 index 000000000000..fd1d06098ef1 --- /dev/null +++ b/data/software/ca/capture-nx.json @@ -0,0 +1,12 @@ +{ + "slug": "capture-nx", + "name": "Capture NX", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1989988" + ], + "operating_systems": [ + "Mac operating system", + "Microsoft Windows" + ] +} diff --git a/data/software/ca/capture-one.json b/data/software/ca/capture-one.json new file mode 100644 index 000000000000..32a536f78968 --- /dev/null +++ b/data/software/ca/capture-one.json @@ -0,0 +1,19 @@ +{ + "slug": "capture-one", + "name": "Capture One", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3658057" + ], + "developers": [ + "Phase One" + ], + "operating_systems": [ + "iOS", + "macOS", + "Microsoft Windows" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/ca/caramba-switcher.json b/data/software/ca/caramba-switcher.json new file mode 100644 index 000000000000..724f18528976 --- /dev/null +++ b/data/software/ca/caramba-switcher.json @@ -0,0 +1,13 @@ +{ + "slug": "caramba-switcher", + "name": "Caramba Switcher", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115773738" + ], + "release_date": "2018-06-01", + "operating_systems": [ + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/software/ca/carbon-copy-cloner.json b/data/software/ca/carbon-copy-cloner.json new file mode 100644 index 000000000000..7d9cec1873d5 --- /dev/null +++ b/data/software/ca/carbon-copy-cloner.json @@ -0,0 +1,8 @@ +{ + "slug": "carbon-copy-cloner", + "name": "Carbon Copy Cloner", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2937932" + ] +} diff --git a/data/software/ca/carbon-design-system.json b/data/software/ca/carbon-design-system.json new file mode 100644 index 000000000000..da9eb4c1a3e8 --- /dev/null +++ b/data/software/ca/carbon-design-system.json @@ -0,0 +1,17 @@ +{ + "slug": "carbon-design-system", + "name": "Carbon Design System", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106070551" + ], + "developers": [ + "IBM" + ], + "programming_languages": [ + "Vue.js" + ], + "licenses": [ + "Apache Software License 2.0" + ] +} diff --git a/data/software/ca/carbon.json b/data/software/ca/carbon.json new file mode 100644 index 000000000000..9aaf4b12f5ee --- /dev/null +++ b/data/software/ca/carbon.json @@ -0,0 +1,15 @@ +{ + "slug": "carbon", + "name": "Carbon", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1035519" + ], + "developers": [ + "Apple Inc." + ], + "operating_systems": [ + "Mac operating system", + "macOS" + ] +} diff --git a/data/software/ca/carbonado.json b/data/software/ca/carbonado.json new file mode 100644 index 000000000000..f8f9ee8fde04 --- /dev/null +++ b/data/software/ca/carbonado.json @@ -0,0 +1,17 @@ +{ + "slug": "carbonado", + "name": "Carbonado", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5038005" + ], + "developers": [ + "Amazon" + ], + "programming_languages": [ + "Java" + ], + "licenses": [ + "Apache License" + ] +} diff --git a/data/software/ca/carbonite.json b/data/software/ca/carbonite.json new file mode 100644 index 000000000000..5cd7e63794c6 --- /dev/null +++ b/data/software/ca/carbonite.json @@ -0,0 +1,8 @@ +{ + "slug": "carbonite", + "name": "Carbonite", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5038056" + ] +} diff --git a/data/software/ca/carceo-pro.json b/data/software/ca/carceo-pro.json new file mode 100644 index 000000000000..dbd5ad15bf03 --- /dev/null +++ b/data/software/ca/carceo-pro.json @@ -0,0 +1,14 @@ +{ + "slug": "carceo-pro", + "name": "CarCEO PRO", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139782547" + ], + "operating_systems": [ + "web browser" + ], + "genres": [ + "fleet management" + ] +} diff --git a/data/software/ca/cards.json b/data/software/ca/cards.json new file mode 100644 index 000000000000..dd4bfef22e96 --- /dev/null +++ b/data/software/ca/cards.json @@ -0,0 +1,14 @@ +{ + "slug": "cards", + "name": "Cards", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3658513" + ], + "developers": [ + "Apple Inc." + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/ca/cardup.json b/data/software/ca/cardup.json new file mode 100644 index 000000000000..0166f19d0459 --- /dev/null +++ b/data/software/ca/cardup.json @@ -0,0 +1,8 @@ +{ + "slug": "cardup", + "name": "CardUP", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q104849391" + ] +} diff --git a/data/software/ca/career-ops.json b/data/software/ca/career-ops.json new file mode 100644 index 000000000000..f128a811caf8 --- /dev/null +++ b/data/software/ca/career-ops.json @@ -0,0 +1,20 @@ +{ + "slug": "career-ops", + "name": "career-ops", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139007988" + ], + "developers": [ + "Santiago Fernández de Valderrama" + ], + "programming_languages": [ + "Python", + "TypeScript", + "Go", + "GNU Bash" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/ca/carefiji.json b/data/software/ca/carefiji.json new file mode 100644 index 000000000000..ca080915947b --- /dev/null +++ b/data/software/ca/carefiji.json @@ -0,0 +1,8 @@ +{ + "slug": "carefiji", + "name": "CareFIJI", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q104628416" + ] +} diff --git a/data/software/ca/carestack.json b/data/software/ca/carestack.json new file mode 100644 index 000000000000..ccc64f3ee8c4 --- /dev/null +++ b/data/software/ca/carestack.json @@ -0,0 +1,11 @@ +{ + "slug": "carestack", + "name": "CareStack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140085746" + ], + "operating_systems": [ + "web application" + ] +} diff --git a/data/software/ca/caret.json b/data/software/ca/caret.json new file mode 100644 index 000000000000..c606a0f9f5bb --- /dev/null +++ b/data/software/ca/caret.json @@ -0,0 +1,8 @@ +{ + "slug": "caret", + "name": "CARET", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5008798" + ] +} diff --git a/data/software/ca/cargomax.json b/data/software/ca/cargomax.json new file mode 100644 index 000000000000..6db7cd08346d --- /dev/null +++ b/data/software/ca/cargomax.json @@ -0,0 +1,12 @@ +{ + "slug": "cargomax", + "name": "CargoMax", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5039262" + ], + "release_date": "1979-12-01", + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/ca/carnap.json b/data/software/ca/carnap.json new file mode 100644 index 000000000000..7868a1906517 --- /dev/null +++ b/data/software/ca/carnap.json @@ -0,0 +1,8 @@ +{ + "slug": "carnap", + "name": "Carnap", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122841160" + ] +} diff --git a/data/software/ca/carnivore.json b/data/software/ca/carnivore.json new file mode 100644 index 000000000000..db45dc9fa5f1 --- /dev/null +++ b/data/software/ca/carnivore.json @@ -0,0 +1,11 @@ +{ + "slug": "carnivore", + "name": "Carnivore", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q594062" + ], + "developers": [ + "Federal Bureau of Investigation" + ] +} diff --git a/data/software/ca/carplay.json b/data/software/ca/carplay.json new file mode 100644 index 000000000000..05dd52592f3f --- /dev/null +++ b/data/software/ca/carplay.json @@ -0,0 +1,14 @@ +{ + "slug": "carplay", + "name": "CarPlay", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q15940106" + ], + "developers": [ + "Apple Inc." + ], + "operating_systems": [ + "iOS" + ] +} diff --git a/data/software/ca/carrier-grade-linux.json b/data/software/ca/carrier-grade-linux.json new file mode 100644 index 000000000000..dfb19952dd9e --- /dev/null +++ b/data/software/ca/carrier-grade-linux.json @@ -0,0 +1,11 @@ +{ + "slug": "carrier-grade-linux", + "name": "Carrier Grade Linux", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5046349" + ], + "developers": [ + "Linux Foundation" + ] +} diff --git a/data/software/ca/cartographer.json b/data/software/ca/cartographer.json new file mode 100644 index 000000000000..03fc445699c4 --- /dev/null +++ b/data/software/ca/cartographer.json @@ -0,0 +1,11 @@ +{ + "slug": "cartographer", + "name": "Cartographer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122765716" + ], + "licenses": [ + "Apache Software License 2.0" + ] +} diff --git a/data/software/ca/cartooners.json b/data/software/ca/cartooners.json new file mode 100644 index 000000000000..7a361964c27e --- /dev/null +++ b/data/software/ca/cartooners.json @@ -0,0 +1,14 @@ +{ + "slug": "cartooners", + "name": "Cartooners", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q90046932" + ], + "developers": [ + "ITDA" + ], + "publishers": [ + "Electronic Arts" + ] +} diff --git a/data/software/ca/cartopedia.json b/data/software/ca/cartopedia.json new file mode 100644 index 000000000000..7bc4c92d4d3c --- /dev/null +++ b/data/software/ca/cartopedia.json @@ -0,0 +1,11 @@ +{ + "slug": "cartopedia", + "name": "Cartopedia", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5047431" + ], + "publishers": [ + "DK" + ] +} diff --git a/data/software/ca/cas-home.json b/data/software/ca/cas-home.json new file mode 100644 index 000000000000..814809b7d75b --- /dev/null +++ b/data/software/ca/cas-home.json @@ -0,0 +1,8 @@ +{ + "slug": "cas-home", + "name": "CAS@home", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10846657" + ] +} diff --git a/data/software/ca/casecomplete.json b/data/software/ca/casecomplete.json new file mode 100644 index 000000000000..a9b04d201468 --- /dev/null +++ b/data/software/ca/casecomplete.json @@ -0,0 +1,8 @@ +{ + "slug": "casecomplete", + "name": "CaseComplete", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5048280" + ] +} diff --git a/data/software/ca/caseparity.json b/data/software/ca/caseparity.json new file mode 100644 index 000000000000..c84b736fae5b --- /dev/null +++ b/data/software/ca/caseparity.json @@ -0,0 +1,8 @@ +{ + "slug": "caseparity", + "name": "CaseParity", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140374607" + ] +} diff --git a/data/software/ca/casino.json b/data/software/ca/casino.json new file mode 100644 index 000000000000..cf9ffe2effa2 --- /dev/null +++ b/data/software/ca/casino.json @@ -0,0 +1,11 @@ +{ + "slug": "casino", + "name": "CASINO", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5008866" + ], + "developers": [ + "Theory of Condensed Matter group" + ] +} diff --git a/data/software/ca/cassandre-software.json b/data/software/ca/cassandre-software.json new file mode 100644 index 000000000000..ac23af0c9913 --- /dev/null +++ b/data/software/ca/cassandre-software.json @@ -0,0 +1,15 @@ +{ + "slug": "cassandre-software", + "name": "Cassandre software", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28956978" + ], + "developers": [ + "Christophe Lejeune" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/software/ca/casskai.json b/data/software/ca/casskai.json new file mode 100644 index 000000000000..17940b488c7f --- /dev/null +++ b/data/software/ca/casskai.json @@ -0,0 +1,8 @@ +{ + "slug": "casskai", + "name": "CassKai", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140403596" + ] +} diff --git a/data/software/ca/casting-process-simulation.json b/data/software/ca/casting-process-simulation.json new file mode 100644 index 000000000000..c5660cc547ad --- /dev/null +++ b/data/software/ca/casting-process-simulation.json @@ -0,0 +1,8 @@ +{ + "slug": "casting-process-simulation", + "name": "Casting process simulation", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124900581" + ] +} diff --git a/data/software/ca/castor.json b/data/software/ca/castor.json new file mode 100644 index 000000000000..ab85e0e0e7e3 --- /dev/null +++ b/data/software/ca/castor.json @@ -0,0 +1,14 @@ +{ + "slug": "castor", + "name": "Castor", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22907101" + ], + "programming_languages": [ + "Java" + ], + "licenses": [ + "Apache License" + ] +} diff --git a/data/software/ca/castp.json b/data/software/ca/castp.json new file mode 100644 index 000000000000..f45f33071721 --- /dev/null +++ b/data/software/ca/castp.json @@ -0,0 +1,8 @@ +{ + "slug": "castp", + "name": "CASTp", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17007097" + ] +} diff --git a/data/software/ca/casual.json b/data/software/ca/casual.json new file mode 100644 index 000000000000..02c801092216 --- /dev/null +++ b/data/software/ca/casual.json @@ -0,0 +1,8 @@ +{ + "slug": "casual", + "name": "Casual", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084824" + ] +} diff --git a/data/software/ca/casualconc.json b/data/software/ca/casualconc.json new file mode 100644 index 000000000000..307a51bb0223 --- /dev/null +++ b/data/software/ca/casualconc.json @@ -0,0 +1,8 @@ +{ + "slug": "casualconc", + "name": "CasualConc", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087778" + ] +} diff --git a/data/software/ca/casualtranscriber.json b/data/software/ca/casualtranscriber.json new file mode 100644 index 000000000000..27f06f9ae3d2 --- /dev/null +++ b/data/software/ca/casualtranscriber.json @@ -0,0 +1,14 @@ +{ + "slug": "casualtranscriber", + "name": "casualtranscriber", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105076381" + ], + "operating_systems": [ + "macOS" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/ca/catalyst.json b/data/software/ca/catalyst.json new file mode 100644 index 000000000000..702021ab6067 --- /dev/null +++ b/data/software/ca/catalyst.json @@ -0,0 +1,8 @@ +{ + "slug": "catalyst", + "name": "catalyst", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974754" + ] +} diff --git a/data/software/ca/catdoc.json b/data/software/ca/catdoc.json new file mode 100644 index 000000000000..3d3a4b4aad87 --- /dev/null +++ b/data/software/ca/catdoc.json @@ -0,0 +1,8 @@ +{ + "slug": "catdoc", + "name": "catdoc", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127418919" + ] +} diff --git a/data/software/ca/catkin-pkg.json b/data/software/ca/catkin-pkg.json new file mode 100644 index 000000000000..43c421e080c4 --- /dev/null +++ b/data/software/ca/catkin-pkg.json @@ -0,0 +1,11 @@ +{ + "slug": "catkin-pkg", + "name": "catkin_pkg", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974757" + ], + "licenses": [ + "3-clause BSD License" + ] +} diff --git a/data/software/ca/catma.json b/data/software/ca/catma.json new file mode 100644 index 000000000000..fadaa1bd23e5 --- /dev/null +++ b/data/software/ca/catma.json @@ -0,0 +1,18 @@ +{ + "slug": "catma", + "name": "CATMA", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106323236" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [ + "Java" + ], + "licenses": [ + "GNU General Public License, version 3.0" + ] +} diff --git a/data/software/ca/catnip.json b/data/software/ca/catnip.json new file mode 100644 index 000000000000..14939e65cf8a --- /dev/null +++ b/data/software/ca/catnip.json @@ -0,0 +1,8 @@ +{ + "slug": "catnip", + "name": "catnip", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127485505" + ] +} diff --git a/data/software/cb/cb-simulator.json b/data/software/cb/cb-simulator.json new file mode 100644 index 000000000000..86ea44b6a2e6 --- /dev/null +++ b/data/software/cb/cb-simulator.json @@ -0,0 +1,8 @@ +{ + "slug": "cb-simulator", + "name": "CB Simulator", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5009386" + ] +} diff --git a/data/software/cb/cbecon.json b/data/software/cb/cbecon.json new file mode 100644 index 000000000000..1148c1cc2d7d --- /dev/null +++ b/data/software/cb/cbecon.json @@ -0,0 +1,8 @@ +{ + "slug": "cbecon", + "name": "CBEcon", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17006248" + ] +} diff --git a/data/software/cb/cbsd.json b/data/software/cb/cbsd.json new file mode 100644 index 000000000000..3e26663113a4 --- /dev/null +++ b/data/software/cb/cbsd.json @@ -0,0 +1,8 @@ +{ + "slug": "cbsd", + "name": "cbsd", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127947590" + ] +} diff --git a/data/software/cc/cc-mail.json b/data/software/cc/cc-mail.json new file mode 100644 index 000000000000..d9740b69dc54 --- /dev/null +++ b/data/software/cc/cc-mail.json @@ -0,0 +1,8 @@ +{ + "slug": "cc-mail", + "name": "cc:Mail", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5055632" + ] +} diff --git a/data/software/cc/cced.json b/data/software/cc/cced.json new file mode 100644 index 000000000000..8a9e0a37a6e2 --- /dev/null +++ b/data/software/cc/cced.json @@ -0,0 +1,11 @@ +{ + "slug": "cced", + "name": "CCED", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17159414" + ], + "operating_systems": [ + "DOS" + ] +} diff --git a/data/software/cc/ccextractor.json b/data/software/cc/ccextractor.json new file mode 100644 index 000000000000..c910a9e1af8c --- /dev/null +++ b/data/software/cc/ccextractor.json @@ -0,0 +1,8 @@ +{ + "slug": "ccextractor", + "name": "ccextractor", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065339" + ] +} diff --git a/data/software/cc/ccleaner-cloud.json b/data/software/cc/ccleaner-cloud.json new file mode 100644 index 000000000000..90a97616ddc5 --- /dev/null +++ b/data/software/cc/ccleaner-cloud.json @@ -0,0 +1,11 @@ +{ + "slug": "ccleaner-cloud", + "name": "CCleaner Cloud", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17122129" + ], + "developers": [ + "Piriform" + ] +} diff --git a/data/software/cc/ccp1gui.json b/data/software/cc/ccp1gui.json new file mode 100644 index 000000000000..0b42d581b354 --- /dev/null +++ b/data/software/cc/ccp1gui.json @@ -0,0 +1,11 @@ +{ + "slug": "ccp1gui", + "name": "CCP1GUI", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125096586" + ], + "licenses": [ + "GNU General Public License, version 2.0" + ] +} diff --git a/data/software/cd/cd3wd.json b/data/software/cd/cd3wd.json new file mode 100644 index 000000000000..38b52c37fe90 --- /dev/null +++ b/data/software/cd/cd3wd.json @@ -0,0 +1,8 @@ +{ + "slug": "cd3wd", + "name": "CD3WD", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q24590060" + ] +} diff --git a/data/software/cd/cdbackup.json b/data/software/cd/cdbackup.json new file mode 100644 index 000000000000..eba91fc73c63 --- /dev/null +++ b/data/software/cd/cdbackup.json @@ -0,0 +1,8 @@ +{ + "slug": "cdbackup", + "name": "cdbackup", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62851476" + ] +} diff --git a/data/software/cd/cdc-ez-text.json b/data/software/cd/cdc-ez-text.json new file mode 100644 index 000000000000..f272e22348cb --- /dev/null +++ b/data/software/cd/cdc-ez-text.json @@ -0,0 +1,11 @@ +{ + "slug": "cdc-ez-text", + "name": "CDC EZ-Text", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105229742" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/cd/cdcat.json b/data/software/cd/cdcat.json new file mode 100644 index 000000000000..6cdff7b5e477 --- /dev/null +++ b/data/software/cd/cdcat.json @@ -0,0 +1,8 @@ +{ + "slug": "cdcat", + "name": "cdcat", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62851472" + ] +} diff --git a/data/software/cd/cdcd.json b/data/software/cd/cdcd.json new file mode 100644 index 000000000000..e1ee70b8d025 --- /dev/null +++ b/data/software/cd/cdcd.json @@ -0,0 +1,8 @@ +{ + "slug": "cdcd", + "name": "cdcd", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62851473" + ] +} diff --git a/data/software/cd/cdck.json b/data/software/cd/cdck.json new file mode 100644 index 000000000000..1ce2d6755c7a --- /dev/null +++ b/data/software/cd/cdck.json @@ -0,0 +1,8 @@ +{ + "slug": "cdck", + "name": "cdck", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62851775" + ] +} diff --git a/data/software/cd/cdf-player.json b/data/software/cd/cdf-player.json new file mode 100644 index 000000000000..099283158cf4 --- /dev/null +++ b/data/software/cd/cdf-player.json @@ -0,0 +1,11 @@ +{ + "slug": "cdf-player", + "name": "CDF Player", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1023112" + ], + "developers": [ + "Wolfram Research" + ] +} diff --git a/data/software/cd/cdfinder.json b/data/software/cd/cdfinder.json new file mode 100644 index 000000000000..125e07a8519b --- /dev/null +++ b/data/software/cd/cdfinder.json @@ -0,0 +1,8 @@ +{ + "slug": "cdfinder", + "name": "CDFinder", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5009924" + ] +} diff --git a/data/software/cd/cdiff.json b/data/software/cd/cdiff.json new file mode 100644 index 000000000000..80c5e7f596b0 --- /dev/null +++ b/data/software/cd/cdiff.json @@ -0,0 +1,11 @@ +{ + "slug": "cdiff", + "name": "cdiff", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974759" + ], + "licenses": [ + "3-clause BSD License" + ] +} diff --git a/data/software/cd/cdigix.json b/data/software/cd/cdigix.json new file mode 100644 index 000000000000..65443070583a --- /dev/null +++ b/data/software/cd/cdigix.json @@ -0,0 +1,8 @@ +{ + "slug": "cdigix", + "name": "Cdigix", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5055659" + ] +} diff --git a/data/software/cd/cdisplayex.json b/data/software/cd/cdisplayex.json new file mode 100644 index 000000000000..a0e4625b2424 --- /dev/null +++ b/data/software/cd/cdisplayex.json @@ -0,0 +1,14 @@ +{ + "slug": "cdisplayex", + "name": "CDisplayEx", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8254045" + ], + "programming_languages": [ + "Object Pascal" + ], + "licenses": [ + "Mozilla Public License, version 1.1" + ] +} diff --git a/data/software/cd/cdpedia.json b/data/software/cd/cdpedia.json new file mode 100644 index 000000000000..f016fb83e514 --- /dev/null +++ b/data/software/cd/cdpedia.json @@ -0,0 +1,8 @@ +{ + "slug": "cdpedia", + "name": "CDPedia", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5736948" + ] +} diff --git a/data/software/cd/cdroller.json b/data/software/cd/cdroller.json new file mode 100644 index 000000000000..a4d7ca74a316 --- /dev/null +++ b/data/software/cd/cdroller.json @@ -0,0 +1,8 @@ +{ + "slug": "cdroller", + "name": "CDRoller", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5010005" + ] +} diff --git a/data/software/cd/cdrwin.json b/data/software/cd/cdrwin.json new file mode 100644 index 000000000000..8d99c880cbee --- /dev/null +++ b/data/software/cd/cdrwin.json @@ -0,0 +1,11 @@ +{ + "slug": "cdrwin", + "name": "CDRWIN", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5010001" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/cd/cdwinder.json b/data/software/cd/cdwinder.json new file mode 100644 index 000000000000..faf4aa9e0b98 --- /dev/null +++ b/data/software/cd/cdwinder.json @@ -0,0 +1,8 @@ +{ + "slug": "cdwinder", + "name": "CDWinder", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5010015" + ] +} diff --git a/data/software/ce/ceedo.json b/data/software/ce/ceedo.json new file mode 100644 index 000000000000..e909ce9d84d2 --- /dev/null +++ b/data/software/ce/ceedo.json @@ -0,0 +1,8 @@ +{ + "slug": "ceedo", + "name": "Ceedo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4035945" + ] +} diff --git a/data/software/ce/ceiton-workflow-system.json b/data/software/ce/ceiton-workflow-system.json new file mode 100644 index 000000000000..fd011a8fc844 --- /dev/null +++ b/data/software/ce/ceiton-workflow-system.json @@ -0,0 +1,15 @@ +{ + "slug": "ceiton-workflow-system", + "name": "Ceiton workflow system", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q15956419" + ], + "release_date": "2001-01-01", + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [ + "ASP.NET" + ] +} diff --git a/data/software/ce/cellebrite-ufed.json b/data/software/ce/cellebrite-ufed.json new file mode 100644 index 000000000000..6eeb111eadbf --- /dev/null +++ b/data/software/ce/cellebrite-ufed.json @@ -0,0 +1,11 @@ +{ + "slug": "cellebrite-ufed", + "name": "Cellebrite UFED", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108649702" + ], + "developers": [ + "Cellebrite" + ] +} diff --git a/data/software/ce/cellular-automata-lab.json b/data/software/ce/cellular-automata-lab.json new file mode 100644 index 000000000000..a2b64ff74490 --- /dev/null +++ b/data/software/ce/cellular-automata-lab.json @@ -0,0 +1,12 @@ +{ + "slug": "cellular-automata-lab", + "name": "Cellular Automata Lab", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125762825" + ], + "release_date": "1989-01-01", + "publishers": [ + "Autodesk" + ] +} diff --git a/data/software/ce/celpip-simulator.json b/data/software/ce/celpip-simulator.json new file mode 100644 index 000000000000..d121bc5c320e --- /dev/null +++ b/data/software/ce/celpip-simulator.json @@ -0,0 +1,8 @@ +{ + "slug": "celpip-simulator", + "name": "CELPIP Simulator", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139761574" + ] +} diff --git a/data/software/ce/celstart.json b/data/software/ce/celstart.json new file mode 100644 index 000000000000..b4541e4f3ff8 --- /dev/null +++ b/data/software/ce/celstart.json @@ -0,0 +1,8 @@ +{ + "slug": "celstart", + "name": "CELstart", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5010263" + ] +} diff --git a/data/software/ce/centennial-discovery.json b/data/software/ce/centennial-discovery.json new file mode 100644 index 000000000000..bd2de99c2186 --- /dev/null +++ b/data/software/ce/centennial-discovery.json @@ -0,0 +1,8 @@ +{ + "slug": "centennial-discovery", + "name": "Centennial Discovery", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5059138" + ] +} diff --git a/data/software/ce/central-authentication-service.json b/data/software/ce/central-authentication-service.json new file mode 100644 index 000000000000..5a0218d78fc9 --- /dev/null +++ b/data/software/ce/central-authentication-service.json @@ -0,0 +1,8 @@ +{ + "slug": "central-authentication-service", + "name": "Central Authentication Service", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q628566" + ] +} diff --git a/data/software/ce/central-point-anti-virus.json b/data/software/ce/central-point-anti-virus.json new file mode 100644 index 000000000000..3e90b2ebd899 --- /dev/null +++ b/data/software/ce/central-point-anti-virus.json @@ -0,0 +1,8 @@ +{ + "slug": "central-point-anti-virus", + "name": "Central Point Anti-Virus", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1053952" + ] +} diff --git a/data/software/ce/central-venous-catheter-simulation.json b/data/software/ce/central-venous-catheter-simulation.json new file mode 100644 index 000000000000..9bee6bcfdc1b --- /dev/null +++ b/data/software/ce/central-venous-catheter-simulation.json @@ -0,0 +1,8 @@ +{ + "slug": "central-venous-catheter-simulation", + "name": "Central Venous Catheter Simulation", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115336602" + ] +} diff --git a/data/software/ce/centricity.json b/data/software/ce/centricity.json new file mode 100644 index 000000000000..ac6cb6043c3d --- /dev/null +++ b/data/software/ce/centricity.json @@ -0,0 +1,11 @@ +{ + "slug": "centricity", + "name": "Centricity", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5062743" + ], + "developers": [ + "GE HealthCare" + ] +} diff --git a/data/software/ce/cepteteb.json b/data/software/ce/cepteteb.json new file mode 100644 index 000000000000..f221c0d90815 --- /dev/null +++ b/data/software/ce/cepteteb.json @@ -0,0 +1,9 @@ +{ + "slug": "cepteteb", + "name": "CEPTETEB", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q26709566" + ], + "release_date": "2008-09-25" +} diff --git a/data/software/ce/cerberus-ftp-server.json b/data/software/ce/cerberus-ftp-server.json new file mode 100644 index 000000000000..c7a4c01d6a82 --- /dev/null +++ b/data/software/ce/cerberus-ftp-server.json @@ -0,0 +1,11 @@ +{ + "slug": "cerberus-ftp-server", + "name": "Cerberus FTP Server", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5063912" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/ce/cerbos.json b/data/software/ce/cerbos.json new file mode 100644 index 000000000000..b6bd7df64c5e --- /dev/null +++ b/data/software/ce/cerbos.json @@ -0,0 +1,8 @@ +{ + "slug": "cerbos", + "name": "Cerbos", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137211704" + ] +} diff --git a/data/software/ce/cereproc.json b/data/software/ce/cereproc.json new file mode 100644 index 000000000000..8c2f387221f3 --- /dev/null +++ b/data/software/ce/cereproc.json @@ -0,0 +1,11 @@ +{ + "slug": "cereproc", + "name": "CereProc", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5064047" + ], + "operating_systems": [ + "cross-platform" + ] +} diff --git a/data/software/ce/certbot.json b/data/software/ce/certbot.json new file mode 100644 index 000000000000..83913aacc896 --- /dev/null +++ b/data/software/ce/certbot.json @@ -0,0 +1,17 @@ +{ + "slug": "certbot", + "name": "certbot", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974761" + ], + "operating_systems": [ + "cross-platform" + ], + "programming_languages": [ + "Python" + ], + "licenses": [ + "Apache Software License 2.0" + ] +} diff --git a/data/software/ce/cesiumjs.json b/data/software/ce/cesiumjs.json new file mode 100644 index 000000000000..092eedb0e9d9 --- /dev/null +++ b/data/software/ce/cesiumjs.json @@ -0,0 +1,15 @@ +{ + "slug": "cesiumjs", + "name": "CesiumJS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116465523" + ], + "developers": [ + "Cesium", + "Patrick Cozzi" + ], + "licenses": [ + "Apache Software License 2.0" + ] +} diff --git a/data/software/ce/cestagi.json b/data/software/ce/cestagi.json new file mode 100644 index 000000000000..8d8b21b49d1b --- /dev/null +++ b/data/software/ce/cestagi.json @@ -0,0 +1,8 @@ +{ + "slug": "cestagi", + "name": "Cestagi", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084825" + ] +} diff --git a/data/software/ce/ceta-parser.json b/data/software/ce/ceta-parser.json new file mode 100644 index 000000000000..f8ef5877e04b --- /dev/null +++ b/data/software/ce/ceta-parser.json @@ -0,0 +1,8 @@ +{ + "slug": "ceta-parser", + "name": "CETA Parser", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084826" + ] +} diff --git a/data/software/cf/cfd-ace.json b/data/software/cf/cfd-ace.json new file mode 100644 index 000000000000..8613be25f134 --- /dev/null +++ b/data/software/cf/cfd-ace.json @@ -0,0 +1,11 @@ +{ + "slug": "cfd-ace", + "name": "CFD-ACE+", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5010594" + ], + "developers": [ + "ESI Group" + ] +} diff --git a/data/software/cf/cfd-fastran.json b/data/software/cf/cfd-fastran.json new file mode 100644 index 000000000000..0cfc6521b8b6 --- /dev/null +++ b/data/software/cf/cfd-fastran.json @@ -0,0 +1,11 @@ +{ + "slug": "cfd-fastran", + "name": "CFD-FASTRAN", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5010596" + ], + "developers": [ + "ESI Group" + ] +} diff --git a/data/software/cf/cfosspeed.json b/data/software/cf/cfosspeed.json new file mode 100644 index 000000000000..27ecc03e9baa --- /dev/null +++ b/data/software/cf/cfosspeed.json @@ -0,0 +1,11 @@ +{ + "slug": "cfosspeed", + "name": "CFosSpeed", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q306106" + ], + "developers": [ + "CFosSpeed" + ] +} diff --git a/data/software/cf/cfssl.json b/data/software/cf/cfssl.json new file mode 100644 index 000000000000..2362ebac48ea --- /dev/null +++ b/data/software/cf/cfssl.json @@ -0,0 +1,8 @@ +{ + "slug": "cfssl", + "name": "cfssl", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60918039" + ] +} diff --git a/data/software/cg/cgilib.json b/data/software/cg/cgilib.json new file mode 100644 index 000000000000..068db7b48eb8 --- /dev/null +++ b/data/software/cg/cgilib.json @@ -0,0 +1,8 @@ +{ + "slug": "cgilib", + "name": "cgilib", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62851773" + ] +} diff --git a/data/software/cg/cgiproxy.json b/data/software/cg/cgiproxy.json new file mode 100644 index 000000000000..927f958987a0 --- /dev/null +++ b/data/software/cg/cgiproxy.json @@ -0,0 +1,11 @@ +{ + "slug": "cgiproxy", + "name": "CGIProxy", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5010971" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/cg/cgoban.json b/data/software/cg/cgoban.json new file mode 100644 index 000000000000..f358459bfde2 --- /dev/null +++ b/data/software/cg/cgoban.json @@ -0,0 +1,8 @@ +{ + "slug": "cgoban", + "name": "CGoban", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62851471" + ] +} diff --git a/data/software/cg/cgram-software.json b/data/software/cg/cgram-software.json new file mode 100644 index 000000000000..ee56563f17ad --- /dev/null +++ b/data/software/cg/cgram-software.json @@ -0,0 +1,8 @@ +{ + "slug": "cgram-software", + "name": "CGram Software", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5011013" + ] +} diff --git a/data/software/cg/cgvg.json b/data/software/cg/cgvg.json new file mode 100644 index 000000000000..8ca338799344 --- /dev/null +++ b/data/software/cg/cgvg.json @@ -0,0 +1,8 @@ +{ + "slug": "cgvg", + "name": "cgvg", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62851468" + ] +} diff --git a/data/software/ch/chainlink.json b/data/software/ch/chainlink.json new file mode 100644 index 000000000000..eacbe3bdcc4d --- /dev/null +++ b/data/software/ch/chainlink.json @@ -0,0 +1,15 @@ +{ + "slug": "chainlink", + "name": "Chainlink", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q100804984" + ], + "programming_languages": [ + "Go", + "Solidity" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/ch/chalk.json b/data/software/ch/chalk.json new file mode 100644 index 000000000000..a8ae643acc64 --- /dev/null +++ b/data/software/ch/chalk.json @@ -0,0 +1,14 @@ +{ + "slug": "chalk", + "name": "Chalk", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q61687348" + ], + "programming_languages": [ + "Objective-C" + ], + "licenses": [ + "CeCILL" + ] +} diff --git a/data/software/ch/changa.json b/data/software/ch/changa.json new file mode 100644 index 000000000000..e689880bd1c5 --- /dev/null +++ b/data/software/ch/changa.json @@ -0,0 +1,8 @@ +{ + "slug": "changa", + "name": "ChaNGa", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5065916" + ] +} diff --git a/data/software/ch/changebeadsthreader.json b/data/software/ch/changebeadsthreader.json new file mode 100644 index 000000000000..1203722ebb41 --- /dev/null +++ b/data/software/ch/changebeadsthreader.json @@ -0,0 +1,11 @@ +{ + "slug": "changebeadsthreader", + "name": "ChangeBeadsThreader", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127485891" + ], + "licenses": [ + "Apache Software License 2.0" + ] +} diff --git a/data/software/ch/chankast.json b/data/software/ch/chankast.json new file mode 100644 index 000000000000..f78160a33ace --- /dev/null +++ b/data/software/ch/chankast.json @@ -0,0 +1,8 @@ +{ + "slug": "chankast", + "name": "Chankast", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3277266" + ] +} diff --git a/data/software/ch/channel-4.json b/data/software/ch/channel-4.json new file mode 100644 index 000000000000..20260aeee1a9 --- /dev/null +++ b/data/software/ch/channel-4.json @@ -0,0 +1,15 @@ +{ + "slug": "channel-4", + "name": "Channel 4", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4639144" + ], + "release_date": "2006-11-16", + "developers": [ + "Channel Four Television Corporation" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/ch/chaos-corona.json b/data/software/ch/chaos-corona.json new file mode 100644 index 000000000000..702d86af83f7 --- /dev/null +++ b/data/software/ch/chaos-corona.json @@ -0,0 +1,11 @@ +{ + "slug": "chaos-corona", + "name": "Chaos Corona", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115518473" + ], + "developers": [ + "Chaos Group" + ] +} diff --git a/data/software/ch/chaos-heroes-online.json b/data/software/ch/chaos-heroes-online.json new file mode 100644 index 000000000000..fee209e0c83f --- /dev/null +++ b/data/software/ch/chaos-heroes-online.json @@ -0,0 +1,8 @@ +{ + "slug": "chaos-heroes-online", + "name": "Chaos Heroes Online", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140391199" + ] +} diff --git a/data/software/ch/chaotica.json b/data/software/ch/chaotica.json new file mode 100644 index 000000000000..55d5384624f7 --- /dev/null +++ b/data/software/ch/chaotica.json @@ -0,0 +1,8 @@ +{ + "slug": "chaotica", + "name": "Chaotica", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18205923" + ] +} diff --git a/data/software/ch/character-generator.json b/data/software/ch/character-generator.json new file mode 100644 index 000000000000..214ebbc72e51 --- /dev/null +++ b/data/software/ch/character-generator.json @@ -0,0 +1,8 @@ +{ + "slug": "character-generator", + "name": "character generator", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q184736" + ] +} diff --git a/data/software/ch/character-studio.json b/data/software/ch/character-studio.json new file mode 100644 index 000000000000..2123a26ff61f --- /dev/null +++ b/data/software/ch/character-studio.json @@ -0,0 +1,8 @@ +{ + "slug": "character-studio", + "name": "Character Studio", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5073726" + ] +} diff --git a/data/software/ch/charmm.json b/data/software/ch/charmm.json new file mode 100644 index 000000000000..aa83b1efbd71 --- /dev/null +++ b/data/software/ch/charmm.json @@ -0,0 +1,14 @@ +{ + "slug": "charmm", + "name": "CHARMM", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q902642" + ], + "developers": [ + "Martin Karplus" + ], + "programming_languages": [ + "Fortran" + ] +} diff --git a/data/software/ch/charter-for-innovation-creativity-and-access-to-knowledge.json b/data/software/ch/charter-for-innovation-creativity-and-access-to-knowledge.json new file mode 100644 index 000000000000..ad4b58f4016e --- /dev/null +++ b/data/software/ch/charter-for-innovation-creativity-and-access-to-knowledge.json @@ -0,0 +1,8 @@ +{ + "slug": "charter-for-innovation-creativity-and-access-to-knowledge", + "name": "Charter for Innovation, Creativity and Access to Knowledge", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5086759" + ] +} diff --git a/data/software/ch/chartle.json b/data/software/ch/chartle.json new file mode 100644 index 000000000000..64ba42c3930c --- /dev/null +++ b/data/software/ch/chartle.json @@ -0,0 +1,8 @@ +{ + "slug": "chartle", + "name": "Chartle", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084827" + ] +} diff --git a/data/software/ch/chat-80.json b/data/software/ch/chat-80.json new file mode 100644 index 000000000000..6da960c9a8d4 --- /dev/null +++ b/data/software/ch/chat-80.json @@ -0,0 +1,8 @@ +{ + "slug": "chat-80", + "name": "Chat-80", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q32160626" + ] +} diff --git a/data/software/ch/chatbot.json b/data/software/ch/chatbot.json new file mode 100644 index 000000000000..8a4a1c7036b6 --- /dev/null +++ b/data/software/ch/chatbot.json @@ -0,0 +1,22 @@ +{ + "slug": "chatbot", + "name": "ChatBot", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113127602" + ], + "developers": [ + "Text, Inc.", + "Text" + ], + "publishers": [ + "Text", + "Text, Inc." + ], + "operating_systems": [ + "web browser" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/ch/chatbotkit.json b/data/software/ch/chatbotkit.json new file mode 100644 index 000000000000..ff4cd761ab5a --- /dev/null +++ b/data/software/ch/chatbotkit.json @@ -0,0 +1,8 @@ +{ + "slug": "chatbotkit", + "name": "ChatBotKit", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140443886" + ] +} diff --git a/data/software/ch/chatsku.json b/data/software/ch/chatsku.json new file mode 100644 index 000000000000..07935fa9f6b5 --- /dev/null +++ b/data/software/ch/chatsku.json @@ -0,0 +1,8 @@ +{ + "slug": "chatsku", + "name": "ChatSKU", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140353523" + ] +} diff --git a/data/software/ch/cheat.json b/data/software/ch/cheat.json new file mode 100644 index 000000000000..06d1f7b06c1d --- /dev/null +++ b/data/software/ch/cheat.json @@ -0,0 +1,23 @@ +{ + "slug": "cheat", + "name": "cheat", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117427798" + ], + "operating_systems": [ + "illumos", + "DragonFly BSD", + "Plan 9", + "IBM AIX", + "OpenBSD", + "Solaris", + "Microsoft Windows" + ], + "programming_languages": [ + "Go" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/ch/check-mii-out-channel.json b/data/software/ch/check-mii-out-channel.json new file mode 100644 index 000000000000..c44105c7037a --- /dev/null +++ b/data/software/ch/check-mii-out-channel.json @@ -0,0 +1,8 @@ +{ + "slug": "check-mii-out-channel", + "name": "Check Mii Out Channel", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3283969" + ] +} diff --git a/data/software/ch/check-point-vpn-1.json b/data/software/ch/check-point-vpn-1.json new file mode 100644 index 000000000000..d18f0558990c --- /dev/null +++ b/data/software/ch/check-point-vpn-1.json @@ -0,0 +1,11 @@ +{ + "slug": "check-point-vpn-1", + "name": "Check Point VPN-1", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q751519" + ], + "developers": [ + "Check Point" + ] +} diff --git a/data/software/ch/checkin-safe.json b/data/software/ch/checkin-safe.json new file mode 100644 index 000000000000..b947a8c4fb80 --- /dev/null +++ b/data/software/ch/checkin-safe.json @@ -0,0 +1,8 @@ +{ + "slug": "checkin-safe", + "name": "CheckIn Safe", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139548993" + ] +} diff --git a/data/software/ch/checkpolicy.json b/data/software/ch/checkpolicy.json new file mode 100644 index 000000000000..e6aa6e7ac944 --- /dev/null +++ b/data/software/ch/checkpolicy.json @@ -0,0 +1,8 @@ +{ + "slug": "checkpolicy", + "name": "checkpolicy", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974766" + ] +} diff --git a/data/software/ch/checktext.json b/data/software/ch/checktext.json new file mode 100644 index 000000000000..1e68f8f6a9a4 --- /dev/null +++ b/data/software/ch/checktext.json @@ -0,0 +1,8 @@ +{ + "slug": "checktext", + "name": "CheckText", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087779" + ] +} diff --git a/data/software/ch/cheeppy.json b/data/software/ch/cheeppy.json new file mode 100644 index 000000000000..e8818efeffb4 --- /dev/null +++ b/data/software/ch/cheeppy.json @@ -0,0 +1,8 @@ +{ + "slug": "cheeppy", + "name": "Cheeppy", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139801229" + ] +} diff --git a/data/software/ch/cheetah-security-browser.json b/data/software/ch/cheetah-security-browser.json new file mode 100644 index 000000000000..2108fa21d78e --- /dev/null +++ b/data/software/ch/cheetah-security-browser.json @@ -0,0 +1,14 @@ +{ + "slug": "cheetah-security-browser", + "name": "Cheetah Security Browser", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q15904677" + ], + "developers": [ + "Cheetah Mobile" + ], + "publishers": [ + "Cheetah Mobile" + ] +} diff --git a/data/software/ch/cheetah3d.json b/data/software/ch/cheetah3d.json new file mode 100644 index 000000000000..a5c972364cb4 --- /dev/null +++ b/data/software/ch/cheetah3d.json @@ -0,0 +1,8 @@ +{ + "slug": "cheetah3d", + "name": "Cheetah3D", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5089450" + ] +} diff --git a/data/software/ch/chemdoodle-web-components.json b/data/software/ch/chemdoodle-web-components.json new file mode 100644 index 000000000000..7951d02757b4 --- /dev/null +++ b/data/software/ch/chemdoodle-web-components.json @@ -0,0 +1,8 @@ +{ + "slug": "chemdoodle-web-components", + "name": "ChemDoodle Web Components", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123585903" + ] +} diff --git a/data/software/ch/chemdraw.json b/data/software/ch/chemdraw.json new file mode 100644 index 000000000000..ca2fb941320b --- /dev/null +++ b/data/software/ch/chemdraw.json @@ -0,0 +1,16 @@ +{ + "slug": "chemdraw", + "name": "ChemDraw", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q898716" + ], + "developers": [ + "PerkinElmer" + ], + "operating_systems": [ + "iOS", + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/software/ch/chemical-mime-data.json b/data/software/ch/chemical-mime-data.json new file mode 100644 index 000000000000..5b2246621aab --- /dev/null +++ b/data/software/ch/chemical-mime-data.json @@ -0,0 +1,8 @@ +{ + "slug": "chemical-mime-data", + "name": "chemical-mime-data", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62851466" + ] +} diff --git a/data/software/ch/chemical-workbench.json b/data/software/ch/chemical-workbench.json new file mode 100644 index 000000000000..405e79e0791d --- /dev/null +++ b/data/software/ch/chemical-workbench.json @@ -0,0 +1,8 @@ +{ + "slug": "chemical-workbench", + "name": "Chemical WorkBench", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5090436" + ] +} diff --git a/data/software/ch/chemicalize-org.json b/data/software/ch/chemicalize-org.json new file mode 100644 index 000000000000..9a1491b5ff2e --- /dev/null +++ b/data/software/ch/chemicalize-org.json @@ -0,0 +1,8 @@ +{ + "slug": "chemicalize-org", + "name": "Chemicalize.org", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5090512" + ] +} diff --git a/data/software/ch/chemminer.json b/data/software/ch/chemminer.json new file mode 100644 index 000000000000..872d932f1b37 --- /dev/null +++ b/data/software/ch/chemminer.json @@ -0,0 +1,14 @@ +{ + "slug": "chemminer", + "name": "ChemmineR", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112338622" + ], + "programming_languages": [ + "R" + ], + "licenses": [ + "Artistic License 2.0" + ] +} diff --git a/data/software/ch/chemwindow.json b/data/software/ch/chemwindow.json new file mode 100644 index 000000000000..53bb1f8b6597 --- /dev/null +++ b/data/software/ch/chemwindow.json @@ -0,0 +1,11 @@ +{ + "slug": "chemwindow", + "name": "ChemWindow", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22907190" + ], + "developers": [ + "Bio-Rad Laboratories" + ] +} diff --git a/data/software/ch/cheqin.json b/data/software/ch/cheqin.json new file mode 100644 index 000000000000..09fcd370b253 --- /dev/null +++ b/data/software/ch/cheqin.json @@ -0,0 +1,9 @@ +{ + "slug": "cheqin", + "name": "CHEQIN", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121631738" + ], + "release_date": "1993-03-01" +} diff --git a/data/software/ch/cherryos.json b/data/software/ch/cherryos.json new file mode 100644 index 000000000000..ba7c761081bb --- /dev/null +++ b/data/software/ch/cherryos.json @@ -0,0 +1,11 @@ +{ + "slug": "cherryos", + "name": "CherryOS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3306008" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/ch/chess-assistant.json b/data/software/ch/chess-assistant.json new file mode 100644 index 000000000000..1143d010524b --- /dev/null +++ b/data/software/ch/chess-assistant.json @@ -0,0 +1,8 @@ +{ + "slug": "chess-assistant", + "name": "Chess Assistant", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120337" + ] +} diff --git a/data/software/ch/chess-tiger.json b/data/software/ch/chess-tiger.json new file mode 100644 index 000000000000..4d9f2f1e9c7b --- /dev/null +++ b/data/software/ch/chess-tiger.json @@ -0,0 +1,11 @@ +{ + "slug": "chess-tiger", + "name": "Chess Tiger", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2157532" + ], + "operating_systems": [ + "iOS" + ] +} diff --git a/data/software/ch/chess960-home.json b/data/software/ch/chess960-home.json new file mode 100644 index 000000000000..609f04c80af1 --- /dev/null +++ b/data/software/ch/chess960-home.json @@ -0,0 +1,8 @@ +{ + "slug": "chess960-home", + "name": "Chess960@home", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3667263" + ] +} diff --git a/data/software/ch/chessgenius.json b/data/software/ch/chessgenius.json new file mode 100644 index 000000000000..38165e3e60b1 --- /dev/null +++ b/data/software/ch/chessgenius.json @@ -0,0 +1,8 @@ +{ + "slug": "chessgenius", + "name": "ChessGenius", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2962838" + ] +} diff --git a/data/software/ch/chessx.json b/data/software/ch/chessx.json new file mode 100644 index 000000000000..f77242e5657d --- /dev/null +++ b/data/software/ch/chessx.json @@ -0,0 +1,8 @@ +{ + "slug": "chessx", + "name": "ChessX", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62851465" + ] +} diff --git a/data/software/ch/chet-c.json b/data/software/ch/chet-c.json new file mode 100644 index 000000000000..7943323e46ec --- /dev/null +++ b/data/software/ch/chet-c.json @@ -0,0 +1,8 @@ +{ + "slug": "chet-c", + "name": "CHET-C", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084828" + ] +} diff --git a/data/software/ch/chiasmus.json b/data/software/ch/chiasmus.json new file mode 100644 index 000000000000..5a298020a1a8 --- /dev/null +++ b/data/software/ch/chiasmus.json @@ -0,0 +1,17 @@ +{ + "slug": "chiasmus", + "name": "Chiasmus", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1071695" + ], + "developers": [ + "Federal Office for Information Security" + ], + "operating_systems": [ + "Microsoft Windows" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/ch/chika.json b/data/software/ch/chika.json new file mode 100644 index 000000000000..cad1a4d33e60 --- /dev/null +++ b/data/software/ch/chika.json @@ -0,0 +1,15 @@ +{ + "slug": "chika", + "name": "Chika", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25205745" + ], + "release_date": "2014-10-16", + "developers": [ + "Internet Co." + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/ch/childsplay.json b/data/software/ch/childsplay.json new file mode 100644 index 000000000000..813abb5b75d9 --- /dev/null +++ b/data/software/ch/childsplay.json @@ -0,0 +1,8 @@ +{ + "slug": "childsplay", + "name": "Childsplay", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11913677" + ] +} diff --git a/data/software/ch/chillispot.json b/data/software/ch/chillispot.json new file mode 100644 index 000000000000..ebdf55c1fdcf --- /dev/null +++ b/data/software/ch/chillispot.json @@ -0,0 +1,8 @@ +{ + "slug": "chillispot", + "name": "ChilliSpot", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5099041" + ] +} diff --git a/data/software/ch/chimera-kernel-module-system.json b/data/software/ch/chimera-kernel-module-system.json new file mode 100644 index 000000000000..aa3231202ce1 --- /dev/null +++ b/data/software/ch/chimera-kernel-module-system.json @@ -0,0 +1,11 @@ +{ + "slug": "chimera-kernel-module-system", + "name": "Chimera Kernel Module System", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116695529" + ], + "licenses": [ + "2-clause BSD License" + ] +} diff --git a/data/software/ch/chinook.json b/data/software/ch/chinook.json new file mode 100644 index 000000000000..960827af3d84 --- /dev/null +++ b/data/software/ch/chinook.json @@ -0,0 +1,14 @@ +{ + "slug": "chinook", + "name": "Chinook", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q537261" + ], + "developers": [ + "Jonathan Schaeffer" + ], + "genres": [ + "puzzle video game" + ] +} diff --git a/data/software/ch/chipspeech.json b/data/software/ch/chipspeech.json new file mode 100644 index 000000000000..68ae646d0ba2 --- /dev/null +++ b/data/software/ch/chipspeech.json @@ -0,0 +1,8 @@ +{ + "slug": "chipspeech", + "name": "Chipspeech", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22907211" + ] +} diff --git a/data/software/ch/chitbase.json b/data/software/ch/chitbase.json new file mode 100644 index 000000000000..3c3a0eaf4c8b --- /dev/null +++ b/data/software/ch/chitbase.json @@ -0,0 +1,11 @@ +{ + "slug": "chitbase", + "name": "ChitBase", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139971152" + ], + "operating_systems": [ + "iOS" + ] +} diff --git a/data/software/ch/chitchat.json b/data/software/ch/chitchat.json new file mode 100644 index 000000000000..7c805baeb391 --- /dev/null +++ b/data/software/ch/chitchat.json @@ -0,0 +1,11 @@ +{ + "slug": "chitchat", + "name": "ChitChat", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5102173" + ], + "licenses": [ + "donationware" + ] +} diff --git a/data/software/ch/chkdsk.json b/data/software/ch/chkdsk.json new file mode 100644 index 000000000000..8c9aedb0b695 --- /dev/null +++ b/data/software/ch/chkdsk.json @@ -0,0 +1,11 @@ +{ + "slug": "chkdsk", + "name": "CHKDSK", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11689311" + ], + "operating_systems": [ + "CP/J" + ] +} diff --git a/data/software/ch/choremonster.json b/data/software/ch/choremonster.json new file mode 100644 index 000000000000..490eb785fdba --- /dev/null +++ b/data/software/ch/choremonster.json @@ -0,0 +1,8 @@ +{ + "slug": "choremonster", + "name": "ChoreMonster", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17050842" + ] +} diff --git a/data/software/ch/chorus.json b/data/software/ch/chorus.json new file mode 100644 index 000000000000..4690bc38a24b --- /dev/null +++ b/data/software/ch/chorus.json @@ -0,0 +1,8 @@ +{ + "slug": "chorus", + "name": "Chorus", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084829" + ] +} diff --git a/data/software/ch/chous.json b/data/software/ch/chous.json new file mode 100644 index 000000000000..1d8095c6aa07 --- /dev/null +++ b/data/software/ch/chous.json @@ -0,0 +1,8 @@ +{ + "slug": "chous", + "name": "Chous", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137782083" + ] +} diff --git a/data/software/ch/chromas.json b/data/software/ch/chromas.json new file mode 100644 index 000000000000..197f66bb21bc --- /dev/null +++ b/data/software/ch/chromas.json @@ -0,0 +1,8 @@ +{ + "slug": "chromas", + "name": "Chromas", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131367123" + ] +} diff --git a/data/software/ch/chrome-engine.json b/data/software/ch/chrome-engine.json new file mode 100644 index 000000000000..0990f7413386 --- /dev/null +++ b/data/software/ch/chrome-engine.json @@ -0,0 +1,8 @@ +{ + "slug": "chrome-engine", + "name": "Chrome Engine", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2497805" + ] +} diff --git a/data/software/ch/chronojump-boscosystem.json b/data/software/ch/chronojump-boscosystem.json new file mode 100644 index 000000000000..72eedf395238 --- /dev/null +++ b/data/software/ch/chronojump-boscosystem.json @@ -0,0 +1,8 @@ +{ + "slug": "chronojump-boscosystem", + "name": "Chronojump Boscosystem", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5562017" + ] +} diff --git a/data/software/ch/chronos-timeline.json b/data/software/ch/chronos-timeline.json new file mode 100644 index 000000000000..1f8e780fe60b --- /dev/null +++ b/data/software/ch/chronos-timeline.json @@ -0,0 +1,8 @@ +{ + "slug": "chronos-timeline", + "name": "Chronos Timeline", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084830" + ] +} diff --git a/data/software/ch/chuchel.json b/data/software/ch/chuchel.json new file mode 100644 index 000000000000..70215a0e68a4 --- /dev/null +++ b/data/software/ch/chuchel.json @@ -0,0 +1,26 @@ +{ + "slug": "chuchel", + "name": "Chuchel", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q50414488" + ], + "release_date": "2018-03-07", + "developers": [ + "Amanita Design" + ], + "publishers": [ + "Amanita Design" + ], + "operating_systems": [ + "iOS", + "Mac operating system", + "Microsoft Windows" + ], + "genres": [ + "art game", + "point-and-click adventure", + "puzzle video game", + "graphic adventure game" + ] +} diff --git a/data/software/ch/chunked-data.json b/data/software/ch/chunked-data.json new file mode 100644 index 000000000000..f09dca19942b --- /dev/null +++ b/data/software/ch/chunked-data.json @@ -0,0 +1,8 @@ +{ + "slug": "chunked-data", + "name": "chunked-data", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q88501124" + ] +} diff --git a/data/software/ci/cib-pdf-brewer.json b/data/software/ci/cib-pdf-brewer.json new file mode 100644 index 000000000000..e50dab90b184 --- /dev/null +++ b/data/software/ci/cib-pdf-brewer.json @@ -0,0 +1,11 @@ +{ + "slug": "cib-pdf-brewer", + "name": "CIB pdf brewer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1023694" + ], + "developers": [ + "CIB" + ] +} diff --git a/data/software/ci/cietmap.json b/data/software/ci/cietmap.json new file mode 100644 index 000000000000..a6741850d03d --- /dev/null +++ b/data/software/ci/cietmap.json @@ -0,0 +1,8 @@ +{ + "slug": "cietmap", + "name": "CIETmap", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5011637" + ] +} diff --git a/data/software/ci/cifs-utils.json b/data/software/ci/cifs-utils.json new file mode 100644 index 000000000000..7b2e0882fbdd --- /dev/null +++ b/data/software/ci/cifs-utils.json @@ -0,0 +1,14 @@ +{ + "slug": "cifs-utils", + "name": "cifs-utils", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62846243" + ], + "release_date": "2010-03-03", + "licenses": [ + "GNU General Public License, version 2.0 or later", + "GNU Lesser General Public License, version 3.0 or later", + "GNU Lesser General Public License, version 2.1 or later" + ] +} diff --git a/data/software/ci/cimact.json b/data/software/ci/cimact.json new file mode 100644 index 000000000000..f88fc0e2cc88 --- /dev/null +++ b/data/software/ci/cimact.json @@ -0,0 +1,8 @@ +{ + "slug": "cimact", + "name": "CIMACT", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1023728" + ] +} diff --git a/data/software/ci/cinco.json b/data/software/ci/cinco.json new file mode 100644 index 000000000000..2b5f818a2dc9 --- /dev/null +++ b/data/software/ci/cinco.json @@ -0,0 +1,8 @@ +{ + "slug": "cinco", + "name": "Cinco", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084831" + ] +} diff --git a/data/software/ci/cinder.json b/data/software/ci/cinder.json new file mode 100644 index 000000000000..00489c1bc3ab --- /dev/null +++ b/data/software/ci/cinder.json @@ -0,0 +1,11 @@ +{ + "slug": "cinder", + "name": "cinder", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974768" + ], + "licenses": [ + "Apache License" + ] +} diff --git a/data/software/ci/cinema-craft-encoder.json b/data/software/ci/cinema-craft-encoder.json new file mode 100644 index 000000000000..42799b33a302 --- /dev/null +++ b/data/software/ci/cinema-craft-encoder.json @@ -0,0 +1,8 @@ +{ + "slug": "cinema-craft-encoder", + "name": "Cinema Craft Encoder", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5120715" + ] +} diff --git a/data/software/ci/cinema-tools.json b/data/software/ci/cinema-tools.json new file mode 100644 index 000000000000..f4becaba9a9b --- /dev/null +++ b/data/software/ci/cinema-tools.json @@ -0,0 +1,11 @@ +{ + "slug": "cinema-tools", + "name": "Cinema Tools", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5120762" + ], + "developers": [ + "Apple Inc." + ] +} diff --git a/data/software/ci/cinemagraph.json b/data/software/ci/cinemagraph.json new file mode 100644 index 000000000000..58b78ae07f00 --- /dev/null +++ b/data/software/ci/cinemagraph.json @@ -0,0 +1,11 @@ +{ + "slug": "cinemagraph", + "name": "Cinemagraph", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q14623425" + ], + "developers": [ + "Microsoft Mobile" + ] +} diff --git a/data/software/ci/cinesync.json b/data/software/ci/cinesync.json new file mode 100644 index 000000000000..896dd3749f95 --- /dev/null +++ b/data/software/ci/cinesync.json @@ -0,0 +1,8 @@ +{ + "slug": "cinesync", + "name": "cineSync", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5120636" + ] +} diff --git a/data/software/ci/cinnamon-control-center.json b/data/software/ci/cinnamon-control-center.json new file mode 100644 index 000000000000..f5de24478620 --- /dev/null +++ b/data/software/ci/cinnamon-control-center.json @@ -0,0 +1,11 @@ +{ + "slug": "cinnamon-control-center", + "name": "cinnamon-control-center", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065534" + ], + "operating_systems": [ + "Unix-like operating system" + ] +} diff --git a/data/software/ci/cip-tool.json b/data/software/ci/cip-tool.json new file mode 100644 index 000000000000..8b467c8c3991 --- /dev/null +++ b/data/software/ci/cip-tool.json @@ -0,0 +1,11 @@ +{ + "slug": "cip-tool", + "name": "CIP-Tool", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5011809" + ], + "developers": [ + "ETH Zurich" + ] +} diff --git a/data/software/ci/circa-news.json b/data/software/ci/circa-news.json new file mode 100644 index 000000000000..c097908a5146 --- /dev/null +++ b/data/software/ci/circa-news.json @@ -0,0 +1,8 @@ +{ + "slug": "circa-news", + "name": "Circa News", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16971452" + ] +} diff --git a/data/software/ci/circos.json b/data/software/ci/circos.json new file mode 100644 index 000000000000..95ac8065d008 --- /dev/null +++ b/data/software/ci/circos.json @@ -0,0 +1,8 @@ +{ + "slug": "circos", + "name": "circos", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63064884" + ] +} diff --git a/data/software/ci/circuit-simulator.json b/data/software/ci/circuit-simulator.json new file mode 100644 index 000000000000..5f6a8ff9a21b --- /dev/null +++ b/data/software/ci/circuit-simulator.json @@ -0,0 +1,8 @@ +{ + "slug": "circuit-simulator", + "name": "Circuit Simulator", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q97378478" + ] +} diff --git a/data/software/ci/circuit.json b/data/software/ci/circuit.json new file mode 100644 index 000000000000..a649cd031a0e --- /dev/null +++ b/data/software/ci/circuit.json @@ -0,0 +1,11 @@ +{ + "slug": "circuit", + "name": "Circuit", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22907261" + ], + "developers": [ + "Siemens Enterprise Communications" + ] +} diff --git a/data/software/ci/circuitlogix.json b/data/software/ci/circuitlogix.json new file mode 100644 index 000000000000..6b4484c9f055 --- /dev/null +++ b/data/software/ci/circuitlogix.json @@ -0,0 +1,8 @@ +{ + "slug": "circuitlogix", + "name": "CircuitLogix", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5121566" + ] +} diff --git a/data/software/ci/circuitmaker.json b/data/software/ci/circuitmaker.json new file mode 100644 index 000000000000..68deb1207cb8 --- /dev/null +++ b/data/software/ci/circuitmaker.json @@ -0,0 +1,18 @@ +{ + "slug": "circuitmaker", + "name": "CircuitMaker", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25304395" + ], + "release_date": "2015-01-01", + "developers": [ + "Altium Limited" + ], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [ + "Delphi" + ] +} diff --git a/data/software/ci/circuitpython.json b/data/software/ci/circuitpython.json new file mode 100644 index 000000000000..be60a90f3123 --- /dev/null +++ b/data/software/ci/circuitpython.json @@ -0,0 +1,11 @@ +{ + "slug": "circuitpython", + "name": "CircuitPython", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q55607667" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/ci/circuits-cloud.json b/data/software/ci/circuits-cloud.json new file mode 100644 index 000000000000..23d1b30dff18 --- /dev/null +++ b/data/software/ci/circuits-cloud.json @@ -0,0 +1,8 @@ +{ + "slug": "circuits-cloud", + "name": "Circuits Cloud", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22907263" + ] +} diff --git a/data/software/ci/circulaw.json b/data/software/ci/circulaw.json new file mode 100644 index 000000000000..f83071a24106 --- /dev/null +++ b/data/software/ci/circulaw.json @@ -0,0 +1,11 @@ +{ + "slug": "circulaw", + "name": "CircuLaw", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120232836" + ], + "licenses": [ + "GNU General Public License, version 3.0" + ] +} diff --git a/data/software/ci/circumflex.json b/data/software/ci/circumflex.json new file mode 100644 index 000000000000..da9330575039 --- /dev/null +++ b/data/software/ci/circumflex.json @@ -0,0 +1,8 @@ +{ + "slug": "circumflex", + "name": "Circumflex", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4036226" + ] +} diff --git a/data/software/ci/cis-benchmark-evaluation.json b/data/software/ci/cis-benchmark-evaluation.json new file mode 100644 index 000000000000..afa67b92ea1c --- /dev/null +++ b/data/software/ci/cis-benchmark-evaluation.json @@ -0,0 +1,8 @@ +{ + "slug": "cis-benchmark-evaluation", + "name": "CIS-Benchmark-Evaluation", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127485269" + ] +} diff --git a/data/software/ci/cisco-9200l-48t-4x.json b/data/software/ci/cisco-9200l-48t-4x.json new file mode 100644 index 000000000000..52fcd68e5797 --- /dev/null +++ b/data/software/ci/cisco-9200l-48t-4x.json @@ -0,0 +1,8 @@ +{ + "slug": "cisco-9200l-48t-4x", + "name": "Cisco 9200L-48T-4X", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130364042" + ] +} diff --git a/data/software/ci/cisco-active-network-abstraction.json b/data/software/ci/cisco-active-network-abstraction.json new file mode 100644 index 000000000000..280bb375403d --- /dev/null +++ b/data/software/ci/cisco-active-network-abstraction.json @@ -0,0 +1,8 @@ +{ + "slug": "cisco-active-network-abstraction", + "name": "Cisco Active Network Abstraction", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2453082" + ] +} diff --git a/data/software/ci/cisco-cbs250-16t-2g.json b/data/software/ci/cisco-cbs250-16t-2g.json new file mode 100644 index 000000000000..7797989a6b26 --- /dev/null +++ b/data/software/ci/cisco-cbs250-16t-2g.json @@ -0,0 +1,9 @@ +{ + "slug": "cisco-cbs250-16t-2g", + "name": "Cisco CBS250-16T-2G", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123714576" + ], + "release_date": "2020-06-01" +} diff --git a/data/software/ci/cisco-cbs250-8t-e-2g.json b/data/software/ci/cisco-cbs250-8t-e-2g.json new file mode 100644 index 000000000000..959b0fb56400 --- /dev/null +++ b/data/software/ci/cisco-cbs250-8t-e-2g.json @@ -0,0 +1,9 @@ +{ + "slug": "cisco-cbs250-8t-e-2g", + "name": "Cisco CBS250-8T-E-2G", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111108610" + ], + "release_date": "2020-06-01" +} diff --git a/data/software/ci/cisco-network-registrar.json b/data/software/ci/cisco-network-registrar.json new file mode 100644 index 000000000000..7e674be0fed2 --- /dev/null +++ b/data/software/ci/cisco-network-registrar.json @@ -0,0 +1,8 @@ +{ + "slug": "cisco-network-registrar", + "name": "Cisco Network Registrar", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4308412" + ] +} diff --git a/data/software/ci/cisco-security-agent.json b/data/software/ci/cisco-security-agent.json new file mode 100644 index 000000000000..57a04ca12b8b --- /dev/null +++ b/data/software/ci/cisco-security-agent.json @@ -0,0 +1,8 @@ +{ + "slug": "cisco-security-agent", + "name": "Cisco Security Agent", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16247729" + ] +} diff --git a/data/software/ci/cisco-systems-vpn-client.json b/data/software/ci/cisco-systems-vpn-client.json new file mode 100644 index 000000000000..f4bad86d9118 --- /dev/null +++ b/data/software/ci/cisco-systems-vpn-client.json @@ -0,0 +1,11 @@ +{ + "slug": "cisco-systems-vpn-client", + "name": "Cisco Systems VPN Client", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2974330" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/ci/cisco-unified-communications-manager.json b/data/software/ci/cisco-unified-communications-manager.json new file mode 100644 index 000000000000..04b29f7c8e3a --- /dev/null +++ b/data/software/ci/cisco-unified-communications-manager.json @@ -0,0 +1,8 @@ +{ + "slug": "cisco-unified-communications-manager", + "name": "Cisco Unified Communications Manager", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1027338" + ] +} diff --git a/data/software/ci/cisdem-pdfconverterocr-for-mac.json b/data/software/ci/cisdem-pdfconverterocr-for-mac.json new file mode 100644 index 000000000000..86271edbb036 --- /dev/null +++ b/data/software/ci/cisdem-pdfconverterocr-for-mac.json @@ -0,0 +1,8 @@ +{ + "slug": "cisdem-pdfconverterocr-for-mac", + "name": "Cisdem PDFConverterOCR for Mac", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084832" + ] +} diff --git a/data/software/ci/citablehub.json b/data/software/ci/citablehub.json new file mode 100644 index 000000000000..0bf186565fdb --- /dev/null +++ b/data/software/ci/citablehub.json @@ -0,0 +1,8 @@ +{ + "slug": "citablehub", + "name": "CitableHub", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140078947" + ] +} diff --git a/data/software/ci/citadel-q112569085.json b/data/software/ci/citadel-q112569085.json new file mode 100644 index 000000000000..a2576cc09e84 --- /dev/null +++ b/data/software/ci/citadel-q112569085.json @@ -0,0 +1,8 @@ +{ + "slug": "citadel-q112569085", + "name": "Citadel", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112569085" + ] +} diff --git a/data/software/ci/citadel.json b/data/software/ci/citadel.json new file mode 100644 index 000000000000..941c0ac45afb --- /dev/null +++ b/data/software/ci/citadel.json @@ -0,0 +1,8 @@ +{ + "slug": "citadel", + "name": "Citadel", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5122367" + ] +} diff --git a/data/software/ci/citation-intelligence.json b/data/software/ci/citation-intelligence.json new file mode 100644 index 000000000000..cf15501c30ab --- /dev/null +++ b/data/software/ci/citation-intelligence.json @@ -0,0 +1,17 @@ +{ + "slug": "citation-intelligence", + "name": "citation-intelligence", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139962041" + ], + "developers": [ + "AutomateLab" + ], + "programming_languages": [ + "TypeScript" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/ci/citation-js.json b/data/software/ci/citation-js.json new file mode 100644 index 000000000000..1ab2993a50b8 --- /dev/null +++ b/data/software/ci/citation-js.json @@ -0,0 +1,18 @@ +{ + "slug": "citation-js", + "name": "Citation.js", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60565843" + ], + "release_date": "2016-10-27", + "developers": [ + "Lars Willighagen" + ], + "operating_systems": [ + "cross-platform" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/ci/citavi.json b/data/software/ci/citavi.json new file mode 100644 index 000000000000..71bf4b79bc8b --- /dev/null +++ b/data/software/ci/citavi.json @@ -0,0 +1,22 @@ +{ + "slug": "citavi", + "name": "Citavi", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1093321" + ], + "release_date": "1995-01-01", + "developers": [ + "Swiss Academic Software" + ], + "operating_systems": [ + "Windows Server 2016", + "Windows 8.1", + "Windows Server 2008", + "Windows 7", + "Microsoft Windows" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/ci/citect.json b/data/software/ci/citect.json new file mode 100644 index 000000000000..752034237f58 --- /dev/null +++ b/data/software/ci/citect.json @@ -0,0 +1,8 @@ +{ + "slug": "citect", + "name": "Citect", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q479220" + ] +} diff --git a/data/software/ci/citeproc-js.json b/data/software/ci/citeproc-js.json new file mode 100644 index 000000000000..fa78fda48b16 --- /dev/null +++ b/data/software/ci/citeproc-js.json @@ -0,0 +1,15 @@ +{ + "slug": "citeproc-js", + "name": "citeproc-js", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112255333" + ], + "operating_systems": [ + "cross-platform" + ], + "licenses": [ + "GNU Affero General Public License, version 3.0 or later", + "Common Public Attribution License" + ] +} diff --git a/data/software/ci/citizen-cop.json b/data/software/ci/citizen-cop.json new file mode 100644 index 000000000000..1c67ffe9899c --- /dev/null +++ b/data/software/ci/citizen-cop.json @@ -0,0 +1,8 @@ +{ + "slug": "citizen-cop", + "name": "Citizen COP", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17050907" + ] +} diff --git a/data/software/ci/citizen.json b/data/software/ci/citizen.json new file mode 100644 index 000000000000..4fe09c86c84d --- /dev/null +++ b/data/software/ci/citizen.json @@ -0,0 +1,8 @@ +{ + "slug": "citizen", + "name": "Citizen", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60756019" + ] +} diff --git a/data/software/ci/citrio.json b/data/software/ci/citrio.json new file mode 100644 index 000000000000..8c901c0c3d61 --- /dev/null +++ b/data/software/ci/citrio.json @@ -0,0 +1,8 @@ +{ + "slug": "citrio", + "name": "Citrio", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q19864769" + ] +} diff --git a/data/software/ci/citrix-analytics.json b/data/software/ci/citrix-analytics.json new file mode 100644 index 000000000000..ad1821d659b1 --- /dev/null +++ b/data/software/ci/citrix-analytics.json @@ -0,0 +1,11 @@ +{ + "slug": "citrix-analytics", + "name": "Citrix Analytics", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105756395" + ], + "developers": [ + "Citrix Systems" + ] +} diff --git a/data/software/ci/citrix-cloud.json b/data/software/ci/citrix-cloud.json new file mode 100644 index 000000000000..531faff9b3ba --- /dev/null +++ b/data/software/ci/citrix-cloud.json @@ -0,0 +1,11 @@ +{ + "slug": "citrix-cloud", + "name": "Citrix Cloud", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28404578" + ], + "developers": [ + "Citrix Systems" + ] +} diff --git a/data/software/ci/citrix-endpoint-management.json b/data/software/ci/citrix-endpoint-management.json new file mode 100644 index 000000000000..3e8810b4914c --- /dev/null +++ b/data/software/ci/citrix-endpoint-management.json @@ -0,0 +1,11 @@ +{ + "slug": "citrix-endpoint-management", + "name": "Citrix Endpoint Management", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q21041374" + ], + "developers": [ + "Citrix Systems" + ] +} diff --git a/data/software/ci/citrix-sd-wan.json b/data/software/ci/citrix-sd-wan.json new file mode 100644 index 000000000000..a3c69140825e --- /dev/null +++ b/data/software/ci/citrix-sd-wan.json @@ -0,0 +1,11 @@ +{ + "slug": "citrix-sd-wan", + "name": "Citrix SD-WAN", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106627259" + ], + "developers": [ + "Citrix Systems" + ] +} diff --git a/data/software/ci/citrix-secure-internet-access.json b/data/software/ci/citrix-secure-internet-access.json new file mode 100644 index 000000000000..872cd53bd844 --- /dev/null +++ b/data/software/ci/citrix-secure-internet-access.json @@ -0,0 +1,11 @@ +{ + "slug": "citrix-secure-internet-access", + "name": "Citrix Secure Internet Access", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106627241" + ], + "developers": [ + "Citrix Systems" + ] +} diff --git a/data/software/ci/citrix-secure-workspace-access.json b/data/software/ci/citrix-secure-workspace-access.json new file mode 100644 index 000000000000..52bf78643388 --- /dev/null +++ b/data/software/ci/citrix-secure-workspace-access.json @@ -0,0 +1,11 @@ +{ + "slug": "citrix-secure-workspace-access", + "name": "Citrix Secure Workspace Access", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106627221" + ], + "developers": [ + "Citrix Systems" + ] +} diff --git a/data/software/ci/citrix-virtual-apps.json b/data/software/ci/citrix-virtual-apps.json new file mode 100644 index 000000000000..b00e5238c95b --- /dev/null +++ b/data/software/ci/citrix-virtual-apps.json @@ -0,0 +1,17 @@ +{ + "slug": "citrix-virtual-apps", + "name": "Citrix Virtual Apps", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1093482" + ], + "developers": [ + "Citrix Systems" + ], + "operating_systems": [ + "Microsoft Windows" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/ci/citrix-workspace.json b/data/software/ci/citrix-workspace.json new file mode 100644 index 000000000000..625f3b187437 --- /dev/null +++ b/data/software/ci/citrix-workspace.json @@ -0,0 +1,14 @@ +{ + "slug": "citrix-workspace", + "name": "Citrix Workspace", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105394670" + ], + "developers": [ + "Citrix Systems" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/ci/city-art-search.json b/data/software/ci/city-art-search.json new file mode 100644 index 000000000000..5d1b24cd5c66 --- /dev/null +++ b/data/software/ci/city-art-search.json @@ -0,0 +1,8 @@ +{ + "slug": "city-art-search", + "name": "City Art Search", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131471057" + ] +} diff --git a/data/software/ci/cityengine.json b/data/software/ci/cityengine.json new file mode 100644 index 000000000000..e6113965bd1d --- /dev/null +++ b/data/software/ci/cityengine.json @@ -0,0 +1,15 @@ +{ + "slug": "cityengine", + "name": "CityEngine", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4036242" + ], + "release_date": "2008-08-01", + "developers": [ + "Esri" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/ci/citymanager.json b/data/software/ci/citymanager.json new file mode 100644 index 000000000000..5032b66c49f7 --- /dev/null +++ b/data/software/ci/citymanager.json @@ -0,0 +1,11 @@ +{ + "slug": "citymanager", + "name": "CityManager", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138855896" + ], + "developers": [ + "MyTraffic" + ] +} diff --git a/data/software/ci/citysurf-globe.json b/data/software/ci/citysurf-globe.json new file mode 100644 index 000000000000..a25f0a8a3fef --- /dev/null +++ b/data/software/ci/citysurf-globe.json @@ -0,0 +1,8 @@ +{ + "slug": "citysurf-globe", + "name": "CitySurf Globe", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5122998" + ] +} diff --git a/data/software/ci/civil-engineering-software.json b/data/software/ci/civil-engineering-software.json new file mode 100644 index 000000000000..c9fff1c39e3a --- /dev/null +++ b/data/software/ci/civil-engineering-software.json @@ -0,0 +1,8 @@ +{ + "slug": "civil-engineering-software", + "name": "civil engineering software", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5124663" + ] +} diff --git a/data/software/ck/ckbcomp.json b/data/software/ck/ckbcomp.json new file mode 100644 index 000000000000..0e8e754a2579 --- /dev/null +++ b/data/software/ck/ckbcomp.json @@ -0,0 +1,8 @@ +{ + "slug": "ckbcomp", + "name": "ckbcomp", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065567" + ] +} diff --git a/data/software/cl/cl.json b/data/software/cl/cl.json new file mode 100644 index 000000000000..6a7fa3c0d617 --- /dev/null +++ b/data/software/cl/cl.json @@ -0,0 +1,8 @@ +{ + "slug": "cl", + "name": "cl", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974769" + ] +} diff --git a/data/software/cl/clamp.json b/data/software/cl/clamp.json new file mode 100644 index 000000000000..a76f9d5a52b1 --- /dev/null +++ b/data/software/cl/clamp.json @@ -0,0 +1,8 @@ +{ + "slug": "clamp", + "name": "CLAMP", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117223249" + ] +} diff --git a/data/software/cl/clampd.json b/data/software/cl/clampd.json new file mode 100644 index 000000000000..98b7fb43901d --- /dev/null +++ b/data/software/cl/clampd.json @@ -0,0 +1,18 @@ +{ + "slug": "clampd", + "name": "Clampd", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139792412" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [ + "Python", + "TypeScript", + "ClickHouse", + "React" + ] +} diff --git a/data/software/cl/clamsmtp.json b/data/software/cl/clamsmtp.json new file mode 100644 index 000000000000..ea6afd97bd0e --- /dev/null +++ b/data/software/cl/clamsmtp.json @@ -0,0 +1,8 @@ +{ + "slug": "clamsmtp", + "name": "ClamSMTP", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62851461" + ] +} diff --git a/data/software/cl/clang-python.json b/data/software/cl/clang-python.json new file mode 100644 index 000000000000..a61933ea0133 --- /dev/null +++ b/data/software/cl/clang-python.json @@ -0,0 +1,11 @@ +{ + "slug": "clang-python", + "name": "clang-python", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974770" + ], + "licenses": [ + "Apache License" + ] +} diff --git a/data/software/cl/clapper.json b/data/software/cl/clapper.json new file mode 100644 index 000000000000..cf35be462696 --- /dev/null +++ b/data/software/cl/clapper.json @@ -0,0 +1,8 @@ +{ + "slug": "clapper", + "name": "Clapper", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q132132616" + ] +} diff --git a/data/software/cl/clarabel.json b/data/software/cl/clarabel.json new file mode 100644 index 000000000000..cdfa66182f17 --- /dev/null +++ b/data/software/cl/clarabel.json @@ -0,0 +1,11 @@ +{ + "slug": "clarabel", + "name": "clarabel", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134410820" + ], + "licenses": [ + "Apache Software License 2.0" + ] +} diff --git a/data/software/cl/clarified-networks.json b/data/software/cl/clarified-networks.json new file mode 100644 index 000000000000..a567492220f2 --- /dev/null +++ b/data/software/cl/clarified-networks.json @@ -0,0 +1,8 @@ +{ + "slug": "clarified-networks", + "name": "Clarified Networks", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5126964" + ] +} diff --git a/data/software/cl/clarify-it.json b/data/software/cl/clarify-it.json new file mode 100644 index 000000000000..63e0caba3761 --- /dev/null +++ b/data/software/cl/clarify-it.json @@ -0,0 +1,8 @@ +{ + "slug": "clarify-it", + "name": "Clarify-it", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084833" + ] +} diff --git a/data/software/cl/clarin-pl.json b/data/software/cl/clarin-pl.json new file mode 100644 index 000000000000..35b6ecd9eb28 --- /dev/null +++ b/data/software/cl/clarin-pl.json @@ -0,0 +1,8 @@ +{ + "slug": "clarin-pl", + "name": "CLARIN-PL", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084835" + ] +} diff --git a/data/software/cl/claris-cad.json b/data/software/cl/claris-cad.json new file mode 100644 index 000000000000..b3ad52e424cf --- /dev/null +++ b/data/software/cl/claris-cad.json @@ -0,0 +1,11 @@ +{ + "slug": "claris-cad", + "name": "Claris CAD", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5127046" + ], + "developers": [ + "Claris" + ] +} diff --git a/data/software/cl/claris-impact.json b/data/software/cl/claris-impact.json new file mode 100644 index 000000000000..ca3434bfe4a5 --- /dev/null +++ b/data/software/cl/claris-impact.json @@ -0,0 +1,8 @@ +{ + "slug": "claris-impact", + "name": "Claris Impact", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5127049" + ] +} diff --git a/data/software/cl/claris-resolve.json b/data/software/cl/claris-resolve.json new file mode 100644 index 000000000000..12e65ef1652e --- /dev/null +++ b/data/software/cl/claris-resolve.json @@ -0,0 +1,8 @@ +{ + "slug": "claris-resolve", + "name": "Claris Resolve", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5127055" + ] +} diff --git a/data/software/cl/clarisworks.json b/data/software/cl/clarisworks.json new file mode 100644 index 000000000000..e0e525fa9e53 --- /dev/null +++ b/data/software/cl/clarisworks.json @@ -0,0 +1,11 @@ +{ + "slug": "clarisworks", + "name": "ClarisWorks", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3679131" + ], + "publishers": [ + "Claris" + ] +} diff --git a/data/software/cl/clarity-q139414637.json b/data/software/cl/clarity-q139414637.json new file mode 100644 index 000000000000..10468268594b --- /dev/null +++ b/data/software/cl/clarity-q139414637.json @@ -0,0 +1,17 @@ +{ + "slug": "clarity-q139414637", + "name": "Clarity", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139414637" + ], + "developers": [ + "Health AI" + ], + "programming_languages": [ + "Python" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/cl/clarity.json b/data/software/cl/clarity.json new file mode 100644 index 000000000000..29364d1e213e --- /dev/null +++ b/data/software/cl/clarity.json @@ -0,0 +1,12 @@ +{ + "slug": "clarity", + "name": "Clarity", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1095644" + ], + "developers": [ + "CA Technologies", + "Broadcom" + ] +} diff --git a/data/software/cl/claromentis-franchise-platform.json b/data/software/cl/claromentis-franchise-platform.json new file mode 100644 index 000000000000..e593d509f90d --- /dev/null +++ b/data/software/cl/claromentis-franchise-platform.json @@ -0,0 +1,11 @@ +{ + "slug": "claromentis-franchise-platform", + "name": "Claromentis Franchise Platform", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138314708" + ], + "developers": [ + "Claromentis" + ] +} diff --git a/data/software/cl/clash.json b/data/software/cl/clash.json new file mode 100644 index 000000000000..dee64f596504 --- /dev/null +++ b/data/software/cl/clash.json @@ -0,0 +1,14 @@ +{ + "slug": "clash", + "name": "Clash", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105756101" + ], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [ + "Go" + ] +} diff --git a/data/software/cl/clasp.json b/data/software/cl/clasp.json new file mode 100644 index 000000000000..5a15667825bb --- /dev/null +++ b/data/software/cl/clasp.json @@ -0,0 +1,11 @@ +{ + "slug": "clasp", + "name": "clasp", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q119701065" + ], + "licenses": [ + "Apache Software License 2.0" + ] +} diff --git a/data/software/cl/classer-le-monde.json b/data/software/cl/classer-le-monde.json new file mode 100644 index 000000000000..6bf7521c1b7d --- /dev/null +++ b/data/software/cl/classer-le-monde.json @@ -0,0 +1,18 @@ +{ + "slug": "classer-le-monde", + "name": "Classer le monde", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131292679" + ], + "release_date": "2019-01-01", + "publishers": [ + "Algolit" + ], + "programming_languages": [ + "Python" + ], + "genres": [ + "Combinatory literature" + ] +} diff --git a/data/software/cl/classical-text-editor.json b/data/software/cl/classical-text-editor.json new file mode 100644 index 000000000000..e2ed5ca7d46b --- /dev/null +++ b/data/software/cl/classical-text-editor.json @@ -0,0 +1,18 @@ +{ + "slug": "classical-text-editor", + "name": "Classical Text Editor", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116949834" + ], + "release_date": "1997-10-01", + "developers": [ + "Stefan Hagel" + ], + "operating_systems": [ + "Microsoft Windows" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/cl/classilla.json b/data/software/cl/classilla.json new file mode 100644 index 000000000000..7e9753793877 --- /dev/null +++ b/data/software/cl/classilla.json @@ -0,0 +1,11 @@ +{ + "slug": "classilla", + "name": "Classilla", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2284803" + ], + "licenses": [ + "Mozilla Public License" + ] +} diff --git a/data/software/cl/classlens.json b/data/software/cl/classlens.json new file mode 100644 index 000000000000..690defd701d7 --- /dev/null +++ b/data/software/cl/classlens.json @@ -0,0 +1,14 @@ +{ + "slug": "classlens", + "name": "ClassLens", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139721327" + ], + "developers": [ + "Evolved Academics" + ], + "genres": [ + "educational technology" + ] +} diff --git a/data/software/cl/classroom-apple.json b/data/software/cl/classroom-apple.json new file mode 100644 index 000000000000..de96fb2a6a7a --- /dev/null +++ b/data/software/cl/classroom-apple.json @@ -0,0 +1,8 @@ +{ + "slug": "classroom-apple", + "name": "Classroom (Apple)", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q29364693" + ] +} diff --git a/data/software/cl/claude-code.json b/data/software/cl/claude-code.json new file mode 100644 index 000000000000..ae40a0245574 --- /dev/null +++ b/data/software/cl/claude-code.json @@ -0,0 +1,12 @@ +{ + "slug": "claude-code", + "name": "Claude Code", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138457287" + ], + "developers": [ + "Boris Cherny", + "Anthropic" + ] +} diff --git a/data/software/cl/claws-tagger.json b/data/software/cl/claws-tagger.json new file mode 100644 index 000000000000..fb54f64104b4 --- /dev/null +++ b/data/software/cl/claws-tagger.json @@ -0,0 +1,8 @@ +{ + "slug": "claws-tagger", + "name": "CLAWS Tagger", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084837" + ] +} diff --git a/data/software/cl/claws.json b/data/software/cl/claws.json new file mode 100644 index 000000000000..7cc577e883bf --- /dev/null +++ b/data/software/cl/claws.json @@ -0,0 +1,11 @@ +{ + "slug": "claws", + "name": "CLAWS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q15947002" + ], + "developers": [ + "University of Lancaster" + ] +} diff --git a/data/software/cl/clc-genomics-workbench.json b/data/software/cl/clc-genomics-workbench.json new file mode 100644 index 000000000000..ca4945a2a613 --- /dev/null +++ b/data/software/cl/clc-genomics-workbench.json @@ -0,0 +1,8 @@ +{ + "slug": "clc-genomics-workbench", + "name": "CLC Genomics Workbench", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q29876897" + ] +} diff --git a/data/software/cl/clean-email.json b/data/software/cl/clean-email.json new file mode 100644 index 000000000000..293f229b39d4 --- /dev/null +++ b/data/software/cl/clean-email.json @@ -0,0 +1,8 @@ +{ + "slug": "clean-email", + "name": "Clean Email", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130251275" + ] +} diff --git a/data/software/cl/clean-master.json b/data/software/cl/clean-master.json new file mode 100644 index 000000000000..2966a6233355 --- /dev/null +++ b/data/software/cl/clean-master.json @@ -0,0 +1,11 @@ +{ + "slug": "clean-master", + "name": "Clean Master", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17040307" + ], + "developers": [ + "Cheetah Mobile" + ] +} diff --git a/data/software/cl/cleancode-email.json b/data/software/cl/cleancode-email.json new file mode 100644 index 000000000000..dd24cb7eaa0e --- /dev/null +++ b/data/software/cl/cleancode-email.json @@ -0,0 +1,8 @@ +{ + "slug": "cleancode-email", + "name": "Cleancode email", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5130553" + ] +} diff --git a/data/software/cl/cleaning-for-poems.json b/data/software/cl/cleaning-for-poems.json new file mode 100644 index 000000000000..4f250199d58c --- /dev/null +++ b/data/software/cl/cleaning-for-poems.json @@ -0,0 +1,15 @@ +{ + "slug": "cleaning-for-poems", + "name": "Cleaning for Poems", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131293635" + ], + "release_date": "2019-01-01", + "programming_languages": [ + "Python" + ], + "genres": [ + "code poetry" + ] +} diff --git a/data/software/cl/cleanmail-antispam.json b/data/software/cl/cleanmail-antispam.json new file mode 100644 index 000000000000..b31fdbbaa105 --- /dev/null +++ b/data/software/cl/cleanmail-antispam.json @@ -0,0 +1,8 @@ +{ + "slug": "cleanmail-antispam", + "name": "CleanMail Antispam", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16935475" + ] +} diff --git a/data/software/cl/clearfacts.json b/data/software/cl/clearfacts.json new file mode 100644 index 000000000000..7ee013218022 --- /dev/null +++ b/data/software/cl/clearfacts.json @@ -0,0 +1,8 @@ +{ + "slug": "clearfacts", + "name": "Clearfacts", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140330180" + ] +} diff --git a/data/software/cl/cleome.json b/data/software/cl/cleome.json new file mode 100644 index 000000000000..2c4c4b204697 --- /dev/null +++ b/data/software/cl/cleome.json @@ -0,0 +1,12 @@ +{ + "slug": "cleome", + "name": "Cleome", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139618309" + ], + "genres": [ + "generative music", + "ambient music" + ] +} diff --git a/data/software/cl/clever-audio-plug-in.json b/data/software/cl/clever-audio-plug-in.json new file mode 100644 index 000000000000..5c7e8a77b660 --- /dev/null +++ b/data/software/cl/clever-audio-plug-in.json @@ -0,0 +1,15 @@ +{ + "slug": "clever-audio-plug-in", + "name": "CLever Audio Plug-in", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116756249" + ], + "developers": [ + "Bitwig", + "u-he" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/cl/cleverbot.json b/data/software/cl/cleverbot.json new file mode 100644 index 000000000000..7b1f950375d6 --- /dev/null +++ b/data/software/cl/cleverbot.json @@ -0,0 +1,11 @@ +{ + "slug": "cleverbot", + "name": "Cleverbot", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1100860" + ], + "developers": [ + "Rollo Carpenter" + ] +} diff --git a/data/software/cl/clevr.json b/data/software/cl/clevr.json new file mode 100644 index 000000000000..d500dde7a713 --- /dev/null +++ b/data/software/cl/clevr.json @@ -0,0 +1,14 @@ +{ + "slug": "clevr", + "name": "CleVR", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5130411" + ], + "operating_systems": [ + "macOS" + ], + "programming_languages": [ + "ActionScript" + ] +} diff --git a/data/software/cl/clickmeeting.json b/data/software/cl/clickmeeting.json new file mode 100644 index 000000000000..37644060d374 --- /dev/null +++ b/data/software/cl/clickmeeting.json @@ -0,0 +1,8 @@ +{ + "slug": "clickmeeting", + "name": "ClickMeeting", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q86667650" + ] +} diff --git a/data/software/cl/clicksaver.json b/data/software/cl/clicksaver.json new file mode 100644 index 000000000000..b698aa544387 --- /dev/null +++ b/data/software/cl/clicksaver.json @@ -0,0 +1,8 @@ +{ + "slug": "clicksaver", + "name": "ClickSaver", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139677730" + ] +} diff --git a/data/software/cl/clij.json b/data/software/cl/clij.json new file mode 100644 index 000000000000..1aad534974d9 --- /dev/null +++ b/data/software/cl/clij.json @@ -0,0 +1,8 @@ +{ + "slug": "clij", + "name": "CLIJ", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113018348" + ] +} diff --git a/data/software/cl/climaf.json b/data/software/cl/climaf.json new file mode 100644 index 000000000000..9c7b9bac71b3 --- /dev/null +++ b/data/software/cl/climaf.json @@ -0,0 +1,11 @@ +{ + "slug": "climaf", + "name": "CliMAF", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117832732" + ], + "licenses": [ + "CeCILL" + ] +} diff --git a/data/software/cl/climate-data-exchange.json b/data/software/cl/climate-data-exchange.json new file mode 100644 index 000000000000..8ac8143e68cf --- /dev/null +++ b/data/software/cl/climate-data-exchange.json @@ -0,0 +1,8 @@ +{ + "slug": "climate-data-exchange", + "name": "Climate Data Exchange", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5133431" + ] +} diff --git a/data/software/cl/climate-data-operators.json b/data/software/cl/climate-data-operators.json new file mode 100644 index 000000000000..65c7822e6bad --- /dev/null +++ b/data/software/cl/climate-data-operators.json @@ -0,0 +1,15 @@ +{ + "slug": "climate-data-operators", + "name": "Climate Data Operators", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1101420" + ], + "operating_systems": [ + "macOS", + "NEC", + "IBM", + "FreeBSD", + "Microsoft Windows" + ] +} diff --git a/data/software/cl/climatetracker.json b/data/software/cl/climatetracker.json new file mode 100644 index 000000000000..760a596db612 --- /dev/null +++ b/data/software/cl/climatetracker.json @@ -0,0 +1,11 @@ +{ + "slug": "climatetracker", + "name": "ClimateTracker", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138783507" + ], + "developers": [ + "Graph Research Labs" + ] +} diff --git a/data/software/cl/climatevision.json b/data/software/cl/climatevision.json new file mode 100644 index 000000000000..9447e9063eed --- /dev/null +++ b/data/software/cl/climatevision.json @@ -0,0 +1,11 @@ +{ + "slug": "climatevision", + "name": "ClimateVision", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135552210" + ], + "developers": [ + "Callendar" + ] +} diff --git a/data/software/cl/clinia.json b/data/software/cl/clinia.json new file mode 100644 index 000000000000..6071fc6468b8 --- /dev/null +++ b/data/software/cl/clinia.json @@ -0,0 +1,8 @@ +{ + "slug": "clinia", + "name": "ClinIA", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140310432" + ] +} diff --git a/data/software/cl/clinical-judgement-simulation.json b/data/software/cl/clinical-judgement-simulation.json new file mode 100644 index 000000000000..9e27ffe7ca9d --- /dev/null +++ b/data/software/cl/clinical-judgement-simulation.json @@ -0,0 +1,8 @@ +{ + "slug": "clinical-judgement-simulation", + "name": "Clinical Judgement Simulation", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115345394" + ] +} diff --git a/data/software/cl/clinical-trial-management-system.json b/data/software/cl/clinical-trial-management-system.json new file mode 100644 index 000000000000..60eda4dc6996 --- /dev/null +++ b/data/software/cl/clinical-trial-management-system.json @@ -0,0 +1,8 @@ +{ + "slug": "clinical-trial-management-system", + "name": "Clinical trial management system", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1101537" + ] +} diff --git a/data/software/cl/clinicspulse.json b/data/software/cl/clinicspulse.json new file mode 100644 index 000000000000..7fa40edff058 --- /dev/null +++ b/data/software/cl/clinicspulse.json @@ -0,0 +1,8 @@ +{ + "slug": "clinicspulse", + "name": "ClinicsPulse", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140378001" + ] +} diff --git a/data/software/cl/clinikpe.json b/data/software/cl/clinikpe.json new file mode 100644 index 000000000000..c3075c93cf25 --- /dev/null +++ b/data/software/cl/clinikpe.json @@ -0,0 +1,8 @@ +{ + "slug": "clinikpe", + "name": "ClinikPe", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139801637" + ] +} diff --git a/data/software/cl/clinwiki.json b/data/software/cl/clinwiki.json new file mode 100644 index 000000000000..a88e664d8720 --- /dev/null +++ b/data/software/cl/clinwiki.json @@ -0,0 +1,11 @@ +{ + "slug": "clinwiki", + "name": "ClinWiki", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q96777166" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/cl/clip-os.json b/data/software/cl/clip-os.json new file mode 100644 index 000000000000..ad832f56e8d8 --- /dev/null +++ b/data/software/cl/clip-os.json @@ -0,0 +1,8 @@ +{ + "slug": "clip-os", + "name": "CLIP OS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60744792" + ] +} diff --git a/data/software/cl/clipbook-viewer.json b/data/software/cl/clipbook-viewer.json new file mode 100644 index 000000000000..fca4d3bc943c --- /dev/null +++ b/data/software/cl/clipbook-viewer.json @@ -0,0 +1,11 @@ +{ + "slug": "clipbook-viewer", + "name": "ClipBook Viewer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5134342" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/cl/clipconverter.json b/data/software/cl/clipconverter.json new file mode 100644 index 000000000000..fe0512bbda8a --- /dev/null +++ b/data/software/cl/clipconverter.json @@ -0,0 +1,11 @@ +{ + "slug": "clipconverter", + "name": "ClipConverter", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q98709489" + ], + "operating_systems": [ + "website" + ] +} diff --git a/data/software/cl/clipping-magic.json b/data/software/cl/clipping-magic.json new file mode 100644 index 000000000000..613875e2ac64 --- /dev/null +++ b/data/software/cl/clipping-magic.json @@ -0,0 +1,8 @@ +{ + "slug": "clipping-magic", + "name": "Clipping Magic", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084838" + ] +} diff --git a/data/software/cl/clips.json b/data/software/cl/clips.json new file mode 100644 index 000000000000..6423f8cc0883 --- /dev/null +++ b/data/software/cl/clips.json @@ -0,0 +1,15 @@ +{ + "slug": "clips", + "name": "Clips", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q29364615" + ], + "release_date": "2017-04-06", + "developers": [ + "Apple Inc." + ], + "operating_systems": [ + "iOS" + ] +} diff --git a/data/software/cl/clipsalvage.json b/data/software/cl/clipsalvage.json new file mode 100644 index 000000000000..2435a78cb591 --- /dev/null +++ b/data/software/cl/clipsalvage.json @@ -0,0 +1,15 @@ +{ + "slug": "clipsalvage", + "name": "ClipSalvage", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139991148" + ], + "developers": [ + "Qloud LTD" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/software/cl/clockwise.json b/data/software/cl/clockwise.json new file mode 100644 index 000000000000..a853657ea643 --- /dev/null +++ b/data/software/cl/clockwise.json @@ -0,0 +1,8 @@ +{ + "slug": "clockwise", + "name": "Clockwise", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115350741" + ] +} diff --git a/data/software/cl/clocx.json b/data/software/cl/clocx.json new file mode 100644 index 000000000000..a70915275b71 --- /dev/null +++ b/data/software/cl/clocx.json @@ -0,0 +1,8 @@ +{ + "slug": "clocx", + "name": "ClocX", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11773575" + ] +} diff --git a/data/software/cl/clone-manager.json b/data/software/cl/clone-manager.json new file mode 100644 index 000000000000..85ee45caf5ce --- /dev/null +++ b/data/software/cl/clone-manager.json @@ -0,0 +1,8 @@ +{ + "slug": "clone-manager", + "name": "Clone manager", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5134991" + ] +} diff --git a/data/software/cl/clonedvd.json b/data/software/cl/clonedvd.json new file mode 100644 index 000000000000..e6d190c6bbac --- /dev/null +++ b/data/software/cl/clonedvd.json @@ -0,0 +1,11 @@ +{ + "slug": "clonedvd", + "name": "CloneDVD", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1102222" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/cl/cloog.json b/data/software/cl/cloog.json new file mode 100644 index 000000000000..894b594ba2e9 --- /dev/null +++ b/data/software/cl/cloog.json @@ -0,0 +1,8 @@ +{ + "slug": "cloog", + "name": "cloog", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974774" + ] +} diff --git a/data/software/cl/close-combat-modern-tactics.json b/data/software/cl/close-combat-modern-tactics.json new file mode 100644 index 000000000000..cae7cbcc66aa --- /dev/null +++ b/data/software/cl/close-combat-modern-tactics.json @@ -0,0 +1,15 @@ +{ + "slug": "close-combat-modern-tactics", + "name": "Close Combat: Modern Tactics", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q88545216" + ], + "release_date": "2007-11-15", + "publishers": [ + "Slitherine Software UK Limited" + ], + "genres": [ + "strategy video game" + ] +} diff --git a/data/software/cl/closedbsd.json b/data/software/cl/closedbsd.json new file mode 100644 index 000000000000..604adc65e116 --- /dev/null +++ b/data/software/cl/closedbsd.json @@ -0,0 +1,8 @@ +{ + "slug": "closedbsd", + "name": "ClosedBSD", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1992350" + ] +} diff --git a/data/software/cl/closerprompter.json b/data/software/cl/closerprompter.json new file mode 100644 index 000000000000..651e5bce6a01 --- /dev/null +++ b/data/software/cl/closerprompter.json @@ -0,0 +1,11 @@ +{ + "slug": "closerprompter", + "name": "CloserPrompter", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138685149" + ], + "genres": [ + "Sales software" + ] +} diff --git a/data/software/cl/cloud-application-management-framework.json b/data/software/cl/cloud-application-management-framework.json new file mode 100644 index 000000000000..df79a56cfd4a --- /dev/null +++ b/data/software/cl/cloud-application-management-framework.json @@ -0,0 +1,8 @@ +{ + "slug": "cloud-application-management-framework", + "name": "Cloud Application Management Framework", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76178862" + ] +} diff --git a/data/software/cl/cloud-console-mobile-app.json b/data/software/cl/cloud-console-mobile-app.json new file mode 100644 index 000000000000..978c680bfdde --- /dev/null +++ b/data/software/cl/cloud-console-mobile-app.json @@ -0,0 +1,11 @@ +{ + "slug": "cloud-console-mobile-app", + "name": "Cloud Console Mobile App", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q59945735" + ], + "developers": [ + "Google" + ] +} diff --git a/data/software/cl/cloud-console.json b/data/software/cl/cloud-console.json new file mode 100644 index 000000000000..aec42c95f1df --- /dev/null +++ b/data/software/cl/cloud-console.json @@ -0,0 +1,11 @@ +{ + "slug": "cloud-console", + "name": "Cloud Console", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q59944703" + ], + "developers": [ + "Google" + ] +} diff --git a/data/software/cl/cloud-datalab.json b/data/software/cl/cloud-datalab.json new file mode 100644 index 000000000000..5a98c709ede3 --- /dev/null +++ b/data/software/cl/cloud-datalab.json @@ -0,0 +1,11 @@ +{ + "slug": "cloud-datalab", + "name": "Cloud Datalab", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60149076" + ], + "developers": [ + "Google" + ] +} diff --git a/data/software/cl/cloud-debugger.json b/data/software/cl/cloud-debugger.json new file mode 100644 index 000000000000..15fa2bb4b41f --- /dev/null +++ b/data/software/cl/cloud-debugger.json @@ -0,0 +1,11 @@ +{ + "slug": "cloud-debugger", + "name": "Cloud Debugger", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q59944337" + ], + "developers": [ + "Google" + ] +} diff --git a/data/software/cl/cloud-deployment-manager.json b/data/software/cl/cloud-deployment-manager.json new file mode 100644 index 000000000000..4959954f2b30 --- /dev/null +++ b/data/software/cl/cloud-deployment-manager.json @@ -0,0 +1,11 @@ +{ + "slug": "cloud-deployment-manager", + "name": "Cloud Deployment Manager", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q59944594" + ], + "developers": [ + "Google" + ] +} diff --git a/data/software/cl/cloud-healthcare-api.json b/data/software/cl/cloud-healthcare-api.json new file mode 100644 index 000000000000..e8b51ac4b1b7 --- /dev/null +++ b/data/software/cl/cloud-healthcare-api.json @@ -0,0 +1,11 @@ +{ + "slug": "cloud-healthcare-api", + "name": "Cloud Healthcare API", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60021729" + ], + "developers": [ + "Google" + ] +} diff --git a/data/software/cl/cloud-iam.json b/data/software/cl/cloud-iam.json new file mode 100644 index 000000000000..63a6a0e973a6 --- /dev/null +++ b/data/software/cl/cloud-iam.json @@ -0,0 +1,11 @@ +{ + "slug": "cloud-iam", + "name": "Cloud IAM", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q59852253" + ], + "developers": [ + "Google" + ] +} diff --git a/data/software/cl/cloud-identity-for-customers-and-partners.json b/data/software/cl/cloud-identity-for-customers-and-partners.json new file mode 100644 index 000000000000..dd0af55a6bc3 --- /dev/null +++ b/data/software/cl/cloud-identity-for-customers-and-partners.json @@ -0,0 +1,11 @@ +{ + "slug": "cloud-identity-for-customers-and-partners", + "name": "Cloud Identity for Customers and Partners", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60165658" + ], + "developers": [ + "Google" + ] +} diff --git a/data/software/cl/cloud-identity.json b/data/software/cl/cloud-identity.json new file mode 100644 index 000000000000..9b07a2d32296 --- /dev/null +++ b/data/software/cl/cloud-identity.json @@ -0,0 +1,11 @@ +{ + "slug": "cloud-identity", + "name": "Cloud Identity", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q59851730" + ], + "developers": [ + "Google" + ] +} diff --git a/data/software/cl/cloud-init.json b/data/software/cl/cloud-init.json new file mode 100644 index 000000000000..aeee70e91973 --- /dev/null +++ b/data/software/cl/cloud-init.json @@ -0,0 +1,12 @@ +{ + "slug": "cloud-init", + "name": "cloud-init", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974776" + ], + "licenses": [ + "Apache Software License 2.0", + "GNU General Public License, version 3.0" + ] +} diff --git a/data/software/cl/cloud-storage-transfer-service.json b/data/software/cl/cloud-storage-transfer-service.json new file mode 100644 index 000000000000..3a4a273a6a5f --- /dev/null +++ b/data/software/cl/cloud-storage-transfer-service.json @@ -0,0 +1,11 @@ +{ + "slug": "cloud-storage-transfer-service", + "name": "Cloud Storage Transfer Service", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60022339" + ], + "developers": [ + "Google" + ] +} diff --git a/data/software/cl/cloud-tools-for-eclipse.json b/data/software/cl/cloud-tools-for-eclipse.json new file mode 100644 index 000000000000..82fb90dddadb --- /dev/null +++ b/data/software/cl/cloud-tools-for-eclipse.json @@ -0,0 +1,11 @@ +{ + "slug": "cloud-tools-for-eclipse", + "name": "Cloud Tools for Eclipse", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60061958" + ], + "developers": [ + "Google" + ] +} diff --git a/data/software/cl/cloud-tools-for-intellij.json b/data/software/cl/cloud-tools-for-intellij.json new file mode 100644 index 000000000000..48fa8d5d504c --- /dev/null +++ b/data/software/cl/cloud-tools-for-intellij.json @@ -0,0 +1,11 @@ +{ + "slug": "cloud-tools-for-intellij", + "name": "Cloud Tools for IntelliJ", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60024009" + ], + "developers": [ + "Google" + ] +} diff --git a/data/software/cl/cloud-tools-for-powershell.json b/data/software/cl/cloud-tools-for-powershell.json new file mode 100644 index 000000000000..155ef8579a67 --- /dev/null +++ b/data/software/cl/cloud-tools-for-powershell.json @@ -0,0 +1,11 @@ +{ + "slug": "cloud-tools-for-powershell", + "name": "Cloud Tools for PowerShell", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60025529" + ], + "developers": [ + "Google" + ] +} diff --git a/data/software/cl/cloud-tools-for-visual-studio.json b/data/software/cl/cloud-tools-for-visual-studio.json new file mode 100644 index 000000000000..e39070a2a727 --- /dev/null +++ b/data/software/cl/cloud-tools-for-visual-studio.json @@ -0,0 +1,11 @@ +{ + "slug": "cloud-tools-for-visual-studio", + "name": "Cloud Tools for Visual Studio", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60025837" + ], + "developers": [ + "Google" + ] +} diff --git a/data/software/cl/cloud-trace.json b/data/software/cl/cloud-trace.json new file mode 100644 index 000000000000..4bc22bfe07d0 --- /dev/null +++ b/data/software/cl/cloud-trace.json @@ -0,0 +1,11 @@ +{ + "slug": "cloud-trace", + "name": "Cloud Trace", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q59944233" + ], + "developers": [ + "Google" + ] +} diff --git a/data/software/cl/cloudberry-backup.json b/data/software/cl/cloudberry-backup.json new file mode 100644 index 000000000000..b9ed9613a79a --- /dev/null +++ b/data/software/cl/cloudberry-backup.json @@ -0,0 +1,8 @@ +{ + "slug": "cloudberry-backup", + "name": "CloudBerry Backup", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60746737" + ] +} diff --git a/data/software/cl/cloudevo.json b/data/software/cl/cloudevo.json new file mode 100644 index 000000000000..2925e70adaa8 --- /dev/null +++ b/data/software/cl/cloudevo.json @@ -0,0 +1,18 @@ +{ + "slug": "cloudevo", + "name": "Cloudevo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60983125" + ], + "developers": [ + "Evorim GmbH" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "licenses": [ + "end-user license agreement" + ] +} diff --git a/data/software/cl/cloudforms.json b/data/software/cl/cloudforms.json new file mode 100644 index 000000000000..fcee0f2db908 --- /dev/null +++ b/data/software/cl/cloudforms.json @@ -0,0 +1,11 @@ +{ + "slug": "cloudforms", + "name": "CloudForms", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q27557202" + ], + "licenses": [ + "Apache License" + ] +} diff --git a/data/software/cl/cloudhq.json b/data/software/cl/cloudhq.json new file mode 100644 index 000000000000..29d7321437e4 --- /dev/null +++ b/data/software/cl/cloudhq.json @@ -0,0 +1,9 @@ +{ + "slug": "cloudhq", + "name": "CloudHQ", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17008090" + ], + "release_date": "2011-01-01" +} diff --git a/data/software/cl/cloudike.json b/data/software/cl/cloudike.json new file mode 100644 index 000000000000..8c30a72135b5 --- /dev/null +++ b/data/software/cl/cloudike.json @@ -0,0 +1,14 @@ +{ + "slug": "cloudike", + "name": "Cloudike", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q19456357" + ], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [ + "Python" + ] +} diff --git a/data/software/cl/cloudkick.json b/data/software/cl/cloudkick.json new file mode 100644 index 000000000000..e0827a40f1fc --- /dev/null +++ b/data/software/cl/cloudkick.json @@ -0,0 +1,11 @@ +{ + "slug": "cloudkick", + "name": "Cloudkick", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5135748" + ], + "developers": [ + "Cloudkick" + ] +} diff --git a/data/software/cl/cloudmagic.json b/data/software/cl/cloudmagic.json new file mode 100644 index 000000000000..e8dc7caf9b47 --- /dev/null +++ b/data/software/cl/cloudmagic.json @@ -0,0 +1,11 @@ +{ + "slug": "cloudmagic", + "name": "CloudMagic", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16949351" + ], + "operating_systems": [ + "iOS" + ] +} diff --git a/data/software/cl/cloudme.json b/data/software/cl/cloudme.json new file mode 100644 index 000000000000..39e158860dca --- /dev/null +++ b/data/software/cl/cloudme.json @@ -0,0 +1,12 @@ +{ + "slug": "cloudme", + "name": "CloudMe", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5135619" + ], + "release_date": "2011-04-01", + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/cl/cloudron.json b/data/software/cl/cloudron.json new file mode 100644 index 000000000000..d0d5bfa14f4b --- /dev/null +++ b/data/software/cl/cloudron.json @@ -0,0 +1,8 @@ +{ + "slug": "cloudron", + "name": "Cloudron", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130299941" + ] +} diff --git a/data/software/cl/cloudsim.json b/data/software/cl/cloudsim.json new file mode 100644 index 000000000000..c4b28ea82f08 --- /dev/null +++ b/data/software/cl/cloudsim.json @@ -0,0 +1,11 @@ +{ + "slug": "cloudsim", + "name": "CloudSim", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22095616" + ], + "programming_languages": [ + "Java" + ] +} diff --git a/data/software/cl/cloudtran.json b/data/software/cl/cloudtran.json new file mode 100644 index 000000000000..0ece4de3e37a --- /dev/null +++ b/data/software/cl/cloudtran.json @@ -0,0 +1,15 @@ +{ + "slug": "cloudtran", + "name": "CloudTran", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5135622" + ], + "release_date": "2010-01-01", + "operating_systems": [ + "cross-platform" + ], + "programming_languages": [ + "Java" + ] +} diff --git a/data/software/cl/clr-profiler.json b/data/software/cl/clr-profiler.json new file mode 100644 index 000000000000..1441e2d36b89 --- /dev/null +++ b/data/software/cl/clr-profiler.json @@ -0,0 +1,8 @@ +{ + "slug": "clr-profiler", + "name": "CLR Profiler", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5012791" + ] +} diff --git a/data/software/cl/clsql.json b/data/software/cl/clsql.json new file mode 100644 index 000000000000..3ab28d267125 --- /dev/null +++ b/data/software/cl/clsql.json @@ -0,0 +1,11 @@ +{ + "slug": "clsql", + "name": "CLSQL", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5012799" + ], + "programming_languages": [ + "Common Lisp" + ] +} diff --git a/data/software/cl/club-nokia.json b/data/software/cl/club-nokia.json new file mode 100644 index 000000000000..1d2d8a1f84a2 --- /dev/null +++ b/data/software/cl/club-nokia.json @@ -0,0 +1,8 @@ +{ + "slug": "club-nokia", + "name": "Club Nokia", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60040796" + ] +} diff --git a/data/software/cl/clue.json b/data/software/cl/clue.json new file mode 100644 index 000000000000..d2f6b7684c6c --- /dev/null +++ b/data/software/cl/clue.json @@ -0,0 +1,12 @@ +{ + "slug": "clue", + "name": "Clue", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22095621" + ], + "release_date": "2013-01-01", + "operating_systems": [ + "iOS" + ] +} diff --git a/data/software/cl/clustal-omega.json b/data/software/cl/clustal-omega.json new file mode 100644 index 000000000000..659b8280f895 --- /dev/null +++ b/data/software/cl/clustal-omega.json @@ -0,0 +1,8 @@ +{ + "slug": "clustal-omega", + "name": "Clustal Omega", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109500111" + ] +} diff --git a/data/software/cl/clustermarket.json b/data/software/cl/clustermarket.json new file mode 100644 index 000000000000..ffacd9200ab4 --- /dev/null +++ b/data/software/cl/clustermarket.json @@ -0,0 +1,8 @@ +{ + "slug": "clustermarket", + "name": "Clustermarket", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116922448" + ] +} diff --git a/data/software/cl/cluttermm.json b/data/software/cl/cluttermm.json new file mode 100644 index 000000000000..a42f1daf4612 --- /dev/null +++ b/data/software/cl/cluttermm.json @@ -0,0 +1,8 @@ +{ + "slug": "cluttermm", + "name": "cluttermm", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76181591" + ] +} diff --git a/data/software/cl/cluuz.json b/data/software/cl/cluuz.json new file mode 100644 index 000000000000..d52a8452fbb1 --- /dev/null +++ b/data/software/cl/cluuz.json @@ -0,0 +1,8 @@ +{ + "slug": "cluuz", + "name": "Cluuz", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084840" + ] +} diff --git a/data/software/cl/clx.json b/data/software/cl/clx.json new file mode 100644 index 000000000000..08e2d83f46c7 --- /dev/null +++ b/data/software/cl/clx.json @@ -0,0 +1,11 @@ +{ + "slug": "clx", + "name": "CLX", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5012808" + ], + "programming_languages": [ + "Common Lisp" + ] +} diff --git a/data/software/cm/cmap-tools.json b/data/software/cm/cmap-tools.json new file mode 100644 index 000000000000..386c74ba67a7 --- /dev/null +++ b/data/software/cm/cmap-tools.json @@ -0,0 +1,16 @@ +{ + "slug": "cmap-tools", + "name": "CMAP Tools", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5012839" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "licenses": [ + "proprietary license", + "freeware" + ] +} diff --git a/data/software/cm/cmder.json b/data/software/cm/cmder.json new file mode 100644 index 000000000000..d3b376ddd1a6 --- /dev/null +++ b/data/software/cm/cmder.json @@ -0,0 +1,11 @@ +{ + "slug": "cmder", + "name": "Cmder", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127415913" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/cm/cmi-star.json b/data/software/cm/cmi-star.json new file mode 100644 index 000000000000..654adb6fecc1 --- /dev/null +++ b/data/software/cm/cmi-star.json @@ -0,0 +1,11 @@ +{ + "slug": "cmi-star", + "name": "CMI STAR", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q98557796" + ], + "developers": [ + "CM Informatik AG" + ] +} diff --git a/data/software/cm/cmix.json b/data/software/cm/cmix.json new file mode 100644 index 000000000000..00f8b65c2794 --- /dev/null +++ b/data/software/cm/cmix.json @@ -0,0 +1,8 @@ +{ + "slug": "cmix", + "name": "cmix", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q99510878" + ] +} diff --git a/data/software/cm/cmm.json b/data/software/cm/cmm.json new file mode 100644 index 000000000000..594038c4bf8b --- /dev/null +++ b/data/software/cm/cmm.json @@ -0,0 +1,11 @@ +{ + "slug": "cmm", + "name": "CMM", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109375562" + ], + "licenses": [ + "PRS Custom" + ] +} diff --git a/data/software/cm/cmospwd.json b/data/software/cm/cmospwd.json new file mode 100644 index 000000000000..c74b08f6c90d --- /dev/null +++ b/data/software/cm/cmospwd.json @@ -0,0 +1,8 @@ +{ + "slug": "cmospwd", + "name": "cmospwd", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60915994" + ] +} diff --git a/data/software/cn/cnr.json b/data/software/cn/cnr.json new file mode 100644 index 000000000000..e82d8ea0cfaf --- /dev/null +++ b/data/software/cn/cnr.json @@ -0,0 +1,8 @@ +{ + "slug": "cnr", + "name": "CNR", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2742054" + ] +} diff --git a/data/software/cn/cnrtl-extension-for-firefox.json b/data/software/cn/cnrtl-extension-for-firefox.json new file mode 100644 index 000000000000..37129362d3f2 --- /dev/null +++ b/data/software/cn/cnrtl-extension-for-firefox.json @@ -0,0 +1,8 @@ +{ + "slug": "cnrtl-extension-for-firefox", + "name": "CNRTL Extension for Firefox", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084841" + ] +} diff --git a/data/software/cn/cntk.json b/data/software/cn/cntk.json new file mode 100644 index 000000000000..219d91f2d8ab --- /dev/null +++ b/data/software/cn/cntk.json @@ -0,0 +1,17 @@ +{ + "slug": "cntk", + "name": "CNTK", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q23680120" + ], + "developers": [ + "Microsoft Research" + ], + "operating_systems": [ + "Microsoft Windows" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/co/co2sys.json b/data/software/co/co2sys.json new file mode 100644 index 000000000000..ececc3c2ce9b --- /dev/null +++ b/data/software/co/co2sys.json @@ -0,0 +1,8 @@ +{ + "slug": "co2sys", + "name": "CO2SYS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107210863" + ] +} diff --git a/data/software/co/coach-joel-s-way.json b/data/software/co/coach-joel-s-way.json new file mode 100644 index 000000000000..3002e18ed1ba --- /dev/null +++ b/data/software/co/coach-joel-s-way.json @@ -0,0 +1,12 @@ +{ + "slug": "coach-joel-s-way", + "name": "Coach Joel's Way", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137362926" + ], + "release_date": "2025-09-22", + "developers": [ + "Joel Hill" + ] +} diff --git a/data/software/co/cobalt-strike.json b/data/software/co/cobalt-strike.json new file mode 100644 index 000000000000..6defecdf2d07 --- /dev/null +++ b/data/software/co/cobalt-strike.json @@ -0,0 +1,12 @@ +{ + "slug": "cobalt-strike", + "name": "Cobalt Strike", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q29364585" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/software/co/cobalt.json b/data/software/co/cobalt.json new file mode 100644 index 000000000000..ff6dacb9d3e8 --- /dev/null +++ b/data/software/co/cobalt.json @@ -0,0 +1,11 @@ +{ + "slug": "cobalt", + "name": "Cobalt", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q12055182" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/co/coc-coc-search.json b/data/software/co/coc-coc-search.json new file mode 100644 index 000000000000..f285644ad322 --- /dev/null +++ b/data/software/co/coc-coc-search.json @@ -0,0 +1,12 @@ +{ + "slug": "coc-coc-search", + "name": "Coc Coc Search", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q20025385" + ], + "programming_languages": [ + "Java", + "Go" + ] +} diff --git a/data/software/co/cocaine.json b/data/software/co/cocaine.json new file mode 100644 index 000000000000..91a15cadcfe9 --- /dev/null +++ b/data/software/co/cocaine.json @@ -0,0 +1,9 @@ +{ + "slug": "cocaine", + "name": "Cocaine", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17087127" + ], + "release_date": "2011-03-20" +} diff --git a/data/software/co/cockatrice.json b/data/software/co/cockatrice.json new file mode 100644 index 000000000000..b0213172e0de --- /dev/null +++ b/data/software/co/cockatrice.json @@ -0,0 +1,8 @@ +{ + "slug": "cockatrice", + "name": "cockatrice", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63064931" + ] +} diff --git a/data/software/co/cockpit.json b/data/software/co/cockpit.json new file mode 100644 index 000000000000..bbce7fb1108d --- /dev/null +++ b/data/software/co/cockpit.json @@ -0,0 +1,8 @@ +{ + "slug": "cockpit", + "name": "Cockpit", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q114691201" + ] +} diff --git a/data/software/co/coco-simulator.json b/data/software/co/coco-simulator.json new file mode 100644 index 000000000000..d901299c1e55 --- /dev/null +++ b/data/software/co/coco-simulator.json @@ -0,0 +1,8 @@ +{ + "slug": "coco-simulator", + "name": "COCO simulator", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5013270" + ] +} diff --git a/data/software/co/cocoa.json b/data/software/co/cocoa.json new file mode 100644 index 000000000000..eb531a65566e --- /dev/null +++ b/data/software/co/cocoa.json @@ -0,0 +1,8 @@ +{ + "slug": "cocoa", + "name": "COCOA", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087780" + ] +} diff --git a/data/software/co/cocoapods.json b/data/software/co/cocoapods.json new file mode 100644 index 000000000000..62590226924e --- /dev/null +++ b/data/software/co/cocoapods.json @@ -0,0 +1,11 @@ +{ + "slug": "cocoapods", + "name": "CocoaPods", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16247893" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/co/cocoon.json b/data/software/co/cocoon.json new file mode 100644 index 000000000000..d1bea1d37f91 --- /dev/null +++ b/data/software/co/cocoon.json @@ -0,0 +1,8 @@ +{ + "slug": "cocoon", + "name": "COCOON", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084842" + ] +} diff --git a/data/software/co/cocoonjs.json b/data/software/co/cocoonjs.json new file mode 100644 index 000000000000..1cc6ad7b0bc6 --- /dev/null +++ b/data/software/co/cocoonjs.json @@ -0,0 +1,8 @@ +{ + "slug": "cocoonjs", + "name": "CocoonJS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18148932" + ] +} diff --git a/data/software/co/coda.json b/data/software/co/coda.json new file mode 100644 index 000000000000..543f14dc6e28 --- /dev/null +++ b/data/software/co/coda.json @@ -0,0 +1,11 @@ +{ + "slug": "coda", + "name": "Coda", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1105496" + ], + "developers": [ + "Panic" + ] +} diff --git a/data/software/co/codabox.json b/data/software/co/codabox.json new file mode 100644 index 000000000000..9d7c9f2f4572 --- /dev/null +++ b/data/software/co/codabox.json @@ -0,0 +1,8 @@ +{ + "slug": "codabox", + "name": "Codabox", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131885236" + ] +} diff --git a/data/software/co/code-bubbles.json b/data/software/co/code-bubbles.json new file mode 100644 index 000000000000..a7205ba68298 --- /dev/null +++ b/data/software/co/code-bubbles.json @@ -0,0 +1,8 @@ +{ + "slug": "code-bubbles", + "name": "Code Bubbles", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084843" + ] +} diff --git a/data/software/co/code-morphing-software.json b/data/software/co/code-morphing-software.json new file mode 100644 index 000000000000..a2e985f3b608 --- /dev/null +++ b/data/software/co/code-morphing-software.json @@ -0,0 +1,8 @@ +{ + "slug": "code-morphing-software", + "name": "Code Morphing Software", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3682022" + ] +} diff --git a/data/software/co/code-recommenders-incubator.json b/data/software/co/code-recommenders-incubator.json new file mode 100644 index 000000000000..7f13fd230cdd --- /dev/null +++ b/data/software/co/code-recommenders-incubator.json @@ -0,0 +1,8 @@ +{ + "slug": "code-recommenders-incubator", + "name": "Code Recommenders Incubator", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76178841" + ] +} diff --git a/data/software/co/code-red.json b/data/software/co/code-red.json new file mode 100644 index 000000000000..667f8fb1076f --- /dev/null +++ b/data/software/co/code-red.json @@ -0,0 +1,8 @@ +{ + "slug": "code-red", + "name": "Code Red", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1105649" + ] +} diff --git a/data/software/co/code-tympan.json b/data/software/co/code-tympan.json new file mode 100644 index 000000000000..8db078244d25 --- /dev/null +++ b/data/software/co/code-tympan.json @@ -0,0 +1,8 @@ +{ + "slug": "code-tympan", + "name": "Code TYMPAN", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16540682" + ] +} diff --git a/data/software/co/code-v.json b/data/software/co/code-v.json new file mode 100644 index 000000000000..54aee3e96ae8 --- /dev/null +++ b/data/software/co/code-v.json @@ -0,0 +1,14 @@ +{ + "slug": "code-v", + "name": "Code V", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5140056" + ], + "developers": [ + "Synopsys" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/co/code2html.json b/data/software/co/code2html.json new file mode 100644 index 000000000000..a8ac12a92453 --- /dev/null +++ b/data/software/co/code2html.json @@ -0,0 +1,8 @@ +{ + "slug": "code2html", + "name": "code2html", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62846248" + ] +} diff --git a/data/software/co/codea.json b/data/software/co/codea.json new file mode 100644 index 000000000000..e25f76a47b79 --- /dev/null +++ b/data/software/co/codea.json @@ -0,0 +1,8 @@ +{ + "slug": "codea", + "name": "Codea", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16969711" + ] +} diff --git a/data/software/co/codeassistance.json b/data/software/co/codeassistance.json new file mode 100644 index 000000000000..39fe9e3599c6 --- /dev/null +++ b/data/software/co/codeassistance.json @@ -0,0 +1,8 @@ +{ + "slug": "codeassistance", + "name": "CodeAssistance", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q50827597" + ] +} diff --git a/data/software/co/codebook.json b/data/software/co/codebook.json new file mode 100644 index 000000000000..c9587481c113 --- /dev/null +++ b/data/software/co/codebook.json @@ -0,0 +1,8 @@ +{ + "slug": "codebook", + "name": "CodeBook", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5139972" + ] +} diff --git a/data/software/co/codeen.json b/data/software/co/codeen.json new file mode 100644 index 000000000000..0d59497b7fb5 --- /dev/null +++ b/data/software/co/codeen.json @@ -0,0 +1,12 @@ +{ + "slug": "codeen", + "name": "CoDeeN", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5137529" + ], + "release_date": "2003-01-01", + "developers": [ + "Princeton University" + ] +} diff --git a/data/software/co/codemonkey.json b/data/software/co/codemonkey.json new file mode 100644 index 000000000000..273e8999729a --- /dev/null +++ b/data/software/co/codemonkey.json @@ -0,0 +1,8 @@ +{ + "slug": "codemonkey", + "name": "CodeMonkey", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108551418" + ] +} diff --git a/data/software/co/codemyshop.json b/data/software/co/codemyshop.json new file mode 100644 index 000000000000..342b342c9483 --- /dev/null +++ b/data/software/co/codemyshop.json @@ -0,0 +1,11 @@ +{ + "slug": "codemyshop", + "name": "CodeMyShop", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138862900" + ], + "programming_languages": [ + "TypeScript" + ] +} diff --git a/data/software/co/codenomicon.json b/data/software/co/codenomicon.json new file mode 100644 index 000000000000..0e5fbf7739a7 --- /dev/null +++ b/data/software/co/codenomicon.json @@ -0,0 +1,8 @@ +{ + "slug": "codenomicon", + "name": "Codenomicon", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5140157" + ] +} diff --git a/data/software/co/codepeer.json b/data/software/co/codepeer.json new file mode 100644 index 000000000000..69927866f8ed --- /dev/null +++ b/data/software/co/codepeer.json @@ -0,0 +1,8 @@ +{ + "slug": "codepeer", + "name": "CodePeer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17182531" + ] +} diff --git a/data/software/co/coderush.json b/data/software/co/coderush.json new file mode 100644 index 000000000000..16c4824e38cd --- /dev/null +++ b/data/software/co/coderush.json @@ -0,0 +1,11 @@ +{ + "slug": "coderush", + "name": "CodeRush", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4036358" + ], + "developers": [ + "DevExpress" + ] +} diff --git a/data/software/co/codescene.json b/data/software/co/codescene.json new file mode 100644 index 000000000000..035cd28a4d5f --- /dev/null +++ b/data/software/co/codescene.json @@ -0,0 +1,8 @@ +{ + "slug": "codescene", + "name": "CodeScene", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60749946" + ] +} diff --git a/data/software/co/codewright.json b/data/software/co/codewright.json new file mode 100644 index 000000000000..e97ab0a4be68 --- /dev/null +++ b/data/software/co/codewright.json @@ -0,0 +1,8 @@ +{ + "slug": "codewright", + "name": "CodeWright", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5139983" + ] +} diff --git a/data/software/co/codex-tdp-engine.json b/data/software/co/codex-tdp-engine.json new file mode 100644 index 000000000000..16550aed5300 --- /dev/null +++ b/data/software/co/codex-tdp-engine.json @@ -0,0 +1,11 @@ +{ + "slug": "codex-tdp-engine", + "name": "CODEX TDP Engine", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139581473" + ], + "developers": [ + "XOps360 LLC" + ] +} diff --git a/data/software/co/codimg.json b/data/software/co/codimg.json new file mode 100644 index 000000000000..c00d0d628508 --- /dev/null +++ b/data/software/co/codimg.json @@ -0,0 +1,8 @@ +{ + "slug": "codimg", + "name": "Codimg", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q119964583" + ] +} diff --git a/data/software/co/codoncode-aligner.json b/data/software/co/codoncode-aligner.json new file mode 100644 index 000000000000..da5ee688f1cf --- /dev/null +++ b/data/software/co/codoncode-aligner.json @@ -0,0 +1,15 @@ +{ + "slug": "codoncode-aligner", + "name": "CodonCode Aligner", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5140318" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/co/cody-assessment.json b/data/software/co/cody-assessment.json new file mode 100644 index 000000000000..d2c921c8e4c2 --- /dev/null +++ b/data/software/co/cody-assessment.json @@ -0,0 +1,8 @@ +{ + "slug": "cody-assessment", + "name": "CODY Assessment", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25313557" + ] +} diff --git a/data/software/co/cofarmer.json b/data/software/co/cofarmer.json new file mode 100644 index 000000000000..27f760d5e71c --- /dev/null +++ b/data/software/co/cofarmer.json @@ -0,0 +1,11 @@ +{ + "slug": "cofarmer", + "name": "CoFarmer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140357989" + ], + "developers": [ + "Enki Technologies S.L" + ] +} diff --git a/data/software/co/coggle.json b/data/software/co/coggle.json new file mode 100644 index 000000000000..4a44017f43f0 --- /dev/null +++ b/data/software/co/coggle.json @@ -0,0 +1,8 @@ +{ + "slug": "coggle", + "name": "Coggle", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084844" + ] +} diff --git a/data/software/co/cognos-reportnet.json b/data/software/co/cognos-reportnet.json new file mode 100644 index 000000000000..87f46cc71737 --- /dev/null +++ b/data/software/co/cognos-reportnet.json @@ -0,0 +1,15 @@ +{ + "slug": "cognos-reportnet", + "name": "Cognos Reportnet", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5141271" + ], + "release_date": "2003-01-01", + "developers": [ + "IBM" + ], + "operating_systems": [ + "Multiple" + ] +} diff --git a/data/software/co/cogo.json b/data/software/co/cogo.json new file mode 100644 index 000000000000..35ba43cb113c --- /dev/null +++ b/data/software/co/cogo.json @@ -0,0 +1,8 @@ +{ + "slug": "cogo", + "name": "COGO", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5013299" + ] +} diff --git a/data/software/co/cogs-3.json b/data/software/co/cogs-3.json new file mode 100644 index 000000000000..8f7d516913cd --- /dev/null +++ b/data/software/co/cogs-3.json @@ -0,0 +1,8 @@ +{ + "slug": "cogs-3", + "name": "COGS-3", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084846" + ] +} diff --git a/data/software/co/coharmonify.json b/data/software/co/coharmonify.json new file mode 100644 index 000000000000..814e254f3b44 --- /dev/null +++ b/data/software/co/coharmonify.json @@ -0,0 +1,8 @@ +{ + "slug": "coharmonify", + "name": "CoHarmonify", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138795590" + ] +} diff --git a/data/software/co/coke-on.json b/data/software/co/coke-on.json new file mode 100644 index 000000000000..c35f17839e1f --- /dev/null +++ b/data/software/co/coke-on.json @@ -0,0 +1,11 @@ +{ + "slug": "coke-on", + "name": "Coke ON", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q102384210" + ], + "publishers": [ + "Coca-Cola Japan" + ] +} diff --git a/data/software/co/colaboratory.json b/data/software/co/colaboratory.json new file mode 100644 index 000000000000..73f084c0a6f4 --- /dev/null +++ b/data/software/co/colaboratory.json @@ -0,0 +1,8 @@ +{ + "slug": "colaboratory", + "name": "Colaboratory", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084847" + ] +} diff --git a/data/software/co/coldstone-game-engine.json b/data/software/co/coldstone-game-engine.json new file mode 100644 index 000000000000..fb32b508feb3 --- /dev/null +++ b/data/software/co/coldstone-game-engine.json @@ -0,0 +1,14 @@ +{ + "slug": "coldstone-game-engine", + "name": "Coldstone game engine", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4036395" + ], + "developers": [ + "Beenox" + ], + "operating_systems": [ + "Mac operating system" + ] +} diff --git a/data/software/co/colectica.json b/data/software/co/colectica.json new file mode 100644 index 000000000000..627ee7872893 --- /dev/null +++ b/data/software/co/colectica.json @@ -0,0 +1,11 @@ +{ + "slug": "colectica", + "name": "Colectica", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22907346" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/co/collabaro.json b/data/software/co/collabaro.json new file mode 100644 index 000000000000..e4ddd88bffef --- /dev/null +++ b/data/software/co/collabaro.json @@ -0,0 +1,11 @@ +{ + "slug": "collabaro", + "name": "Collabaro", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139583715" + ], + "developers": [ + "Railston and Company" + ] +} diff --git a/data/software/co/collaber.json b/data/software/co/collaber.json new file mode 100644 index 000000000000..2b9d9dd0a010 --- /dev/null +++ b/data/software/co/collaber.json @@ -0,0 +1,8 @@ +{ + "slug": "collaber", + "name": "Collaber", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5145788" + ] +} diff --git a/data/software/co/collaborative-computational-project-number-4.json b/data/software/co/collaborative-computational-project-number-4.json new file mode 100644 index 000000000000..0768545038df --- /dev/null +++ b/data/software/co/collaborative-computational-project-number-4.json @@ -0,0 +1,8 @@ +{ + "slug": "collaborative-computational-project-number-4", + "name": "Collaborative Computational Project Number 4", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5145814" + ] +} diff --git a/data/software/co/collaborator.json b/data/software/co/collaborator.json new file mode 100644 index 000000000000..6d50945a779c --- /dev/null +++ b/data/software/co/collaborator.json @@ -0,0 +1,9 @@ +{ + "slug": "collaborator", + "name": "Collaborator", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q30668403" + ], + "release_date": "2003-01-01" +} diff --git a/data/software/co/collada-dom.json b/data/software/co/collada-dom.json new file mode 100644 index 000000000000..d80e2f214638 --- /dev/null +++ b/data/software/co/collada-dom.json @@ -0,0 +1,8 @@ +{ + "slug": "collada-dom", + "name": "collada-dom", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974780" + ] +} diff --git a/data/software/co/collatex.json b/data/software/co/collatex.json new file mode 100644 index 000000000000..d13aa40c4f26 --- /dev/null +++ b/data/software/co/collatex.json @@ -0,0 +1,8 @@ +{ + "slug": "collatex", + "name": "CollateX", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084848" + ] +} diff --git a/data/software/co/collation-works.json b/data/software/co/collation-works.json new file mode 100644 index 000000000000..94ac30a5203f --- /dev/null +++ b/data/software/co/collation-works.json @@ -0,0 +1,8 @@ +{ + "slug": "collation-works", + "name": "Collation Works", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084849" + ] +} diff --git a/data/software/co/collector-sahab.json b/data/software/co/collector-sahab.json new file mode 100644 index 000000000000..4c8670dad714 --- /dev/null +++ b/data/software/co/collector-sahab.json @@ -0,0 +1,11 @@ +{ + "slug": "collector-sahab", + "name": "collector-sahab", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127485880" + ], + "licenses": [ + "Unlicense" + ] +} diff --git a/data/software/co/collocate.json b/data/software/co/collocate.json new file mode 100644 index 000000000000..632858f7c2da --- /dev/null +++ b/data/software/co/collocate.json @@ -0,0 +1,8 @@ +{ + "slug": "collocate", + "name": "Collocate", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087781" + ] +} diff --git a/data/software/co/color-labs.json b/data/software/co/color-labs.json new file mode 100644 index 000000000000..a99d9ca3a7bd --- /dev/null +++ b/data/software/co/color-labs.json @@ -0,0 +1,15 @@ +{ + "slug": "color-labs", + "name": "Color labs", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5148613" + ], + "release_date": "2010-03-24", + "operating_systems": [ + "iOS" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/co/color64.json b/data/software/co/color64.json new file mode 100644 index 000000000000..979b977d3ed5 --- /dev/null +++ b/data/software/co/color64.json @@ -0,0 +1,11 @@ +{ + "slug": "color64", + "name": "Color64", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5148533" + ], + "developers": [ + "Greg Pfountz" + ] +} diff --git a/data/software/co/colorbrewer.json b/data/software/co/colorbrewer.json new file mode 100644 index 000000000000..29ca31ecb097 --- /dev/null +++ b/data/software/co/colorbrewer.json @@ -0,0 +1,8 @@ +{ + "slug": "colorbrewer", + "name": "ColorBrewer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084850" + ] +} diff --git a/data/software/co/colordiff.json b/data/software/co/colordiff.json new file mode 100644 index 000000000000..fd254cb9f92c --- /dev/null +++ b/data/software/co/colordiff.json @@ -0,0 +1,8 @@ +{ + "slug": "colordiff", + "name": "ColorDiff", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62851495" + ] +} diff --git a/data/software/co/colored-coins.json b/data/software/co/colored-coins.json new file mode 100644 index 000000000000..017cb83ca89f --- /dev/null +++ b/data/software/co/colored-coins.json @@ -0,0 +1,8 @@ +{ + "slug": "colored-coins", + "name": "Colored Coins", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22907364" + ] +} diff --git a/data/software/co/colorer-take5.json b/data/software/co/colorer-take5.json new file mode 100644 index 000000000000..c00a39c6a58a --- /dev/null +++ b/data/software/co/colorer-take5.json @@ -0,0 +1,8 @@ +{ + "slug": "colorer-take5", + "name": "Colorer-take5", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4036417" + ] +} diff --git a/data/software/co/colorsync-utility.json b/data/software/co/colorsync-utility.json new file mode 100644 index 000000000000..9606ed701c6d --- /dev/null +++ b/data/software/co/colorsync-utility.json @@ -0,0 +1,8 @@ +{ + "slug": "colorsync-utility", + "name": "ColorSync Utility", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4006770" + ] +} diff --git a/data/software/co/colorsync.json b/data/software/co/colorsync.json new file mode 100644 index 000000000000..e1dcf03255a8 --- /dev/null +++ b/data/software/co/colorsync.json @@ -0,0 +1,11 @@ +{ + "slug": "colorsync", + "name": "ColorSync", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1111151" + ], + "developers": [ + "Apple Inc." + ] +} diff --git a/data/software/co/colt.json b/data/software/co/colt.json new file mode 100644 index 000000000000..01553a6fdd8a --- /dev/null +++ b/data/software/co/colt.json @@ -0,0 +1,8 @@ +{ + "slug": "colt", + "name": "COLT", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16927839" + ] +} diff --git a/data/software/co/colviq.json b/data/software/co/colviq.json new file mode 100644 index 000000000000..d91aa3cb6bd1 --- /dev/null +++ b/data/software/co/colviq.json @@ -0,0 +1,8 @@ +{ + "slug": "colviq", + "name": "ColviQ", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140420258" + ] +} diff --git a/data/software/co/com-port-redirector.json b/data/software/co/com-port-redirector.json new file mode 100644 index 000000000000..c06fc7aa3cd5 --- /dev/null +++ b/data/software/co/com-port-redirector.json @@ -0,0 +1,8 @@ +{ + "slug": "com-port-redirector", + "name": "COM port redirector", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5013388" + ] +} diff --git a/data/software/co/comanche.json b/data/software/co/comanche.json new file mode 100644 index 000000000000..d6793ca59405 --- /dev/null +++ b/data/software/co/comanche.json @@ -0,0 +1,11 @@ +{ + "slug": "comanche", + "name": "Comanche", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122974379" + ], + "programming_languages": [ + "Tcl" + ] +} diff --git a/data/software/co/combat-air-drop-planning-software.json b/data/software/co/combat-air-drop-planning-software.json new file mode 100644 index 000000000000..d1fa78fbb566 --- /dev/null +++ b/data/software/co/combat-air-drop-planning-software.json @@ -0,0 +1,8 @@ +{ + "slug": "combat-air-drop-planning-software", + "name": "Combat Air Drop Planning Software", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q43518563" + ] +} diff --git a/data/software/co/combat-flight-planning-software.json b/data/software/co/combat-flight-planning-software.json new file mode 100644 index 000000000000..ecb80e6b2648 --- /dev/null +++ b/data/software/co/combat-flight-planning-software.json @@ -0,0 +1,8 @@ +{ + "slug": "combat-flight-planning-software", + "name": "Combat Flight Planning Software", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q43518353" + ] +} diff --git a/data/software/co/combat-weapon-delivery-software.json b/data/software/co/combat-weapon-delivery-software.json new file mode 100644 index 000000000000..b018e8898579 --- /dev/null +++ b/data/software/co/combat-weapon-delivery-software.json @@ -0,0 +1,8 @@ +{ + "slug": "combat-weapon-delivery-software", + "name": "Combat Weapon Delivery Software", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q43518465" + ] +} diff --git a/data/software/co/combine.json b/data/software/co/combine.json new file mode 100644 index 000000000000..2b536e1548ae --- /dev/null +++ b/data/software/co/combine.json @@ -0,0 +1,8 @@ +{ + "slug": "combine", + "name": "Combine", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76183882" + ] +} diff --git a/data/software/co/combined-dna-index-system.json b/data/software/co/combined-dna-index-system.json new file mode 100644 index 000000000000..62234487b83e --- /dev/null +++ b/data/software/co/combined-dna-index-system.json @@ -0,0 +1,8 @@ +{ + "slug": "combined-dna-index-system", + "name": "Combined DNA Index System", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1265403" + ] +} diff --git a/data/software/co/combustion.json b/data/software/co/combustion.json new file mode 100644 index 000000000000..44283d53ba13 --- /dev/null +++ b/data/software/co/combustion.json @@ -0,0 +1,11 @@ +{ + "slug": "combustion", + "name": "Combustion", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2872554" + ], + "developers": [ + "Autodesk" + ] +} diff --git a/data/software/co/comdi.json b/data/software/co/comdi.json new file mode 100644 index 000000000000..c03ee321082a --- /dev/null +++ b/data/software/co/comdi.json @@ -0,0 +1,8 @@ +{ + "slug": "comdi", + "name": "COMDI", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4035650" + ] +} diff --git a/data/software/co/comenius-logo.json b/data/software/co/comenius-logo.json new file mode 100644 index 000000000000..03f4c9acef73 --- /dev/null +++ b/data/software/co/comenius-logo.json @@ -0,0 +1,8 @@ +{ + "slug": "comenius-logo", + "name": "Comenius Logo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q868472" + ] +} diff --git a/data/software/co/comeon.json b/data/software/co/comeon.json new file mode 100644 index 000000000000..855833ae6960 --- /dev/null +++ b/data/software/co/comeon.json @@ -0,0 +1,11 @@ +{ + "slug": "comeon", + "name": "ComeOn!", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28956362" + ], + "programming_languages": [ + "Java" + ] +} diff --git a/data/software/co/comet-cursor.json b/data/software/co/comet-cursor.json new file mode 100644 index 000000000000..0b5826ea8f30 --- /dev/null +++ b/data/software/co/comet-cursor.json @@ -0,0 +1,12 @@ +{ + "slug": "comet-cursor", + "name": "Comet Cursor", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5151605" + ], + "release_date": "1990-01-01", + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/co/comic-life.json b/data/software/co/comic-life.json new file mode 100644 index 000000000000..e9173171e286 --- /dev/null +++ b/data/software/co/comic-life.json @@ -0,0 +1,11 @@ +{ + "slug": "comic-life", + "name": "Comic Life", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4384583" + ], + "developers": [ + "plasq" + ] +} diff --git a/data/software/co/comic-works.json b/data/software/co/comic-works.json new file mode 100644 index 000000000000..46ce8578a8f9 --- /dev/null +++ b/data/software/co/comic-works.json @@ -0,0 +1,11 @@ +{ + "slug": "comic-works", + "name": "Comic Works", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11194811" + ], + "developers": [ + "DELETER" + ] +} diff --git a/data/software/co/comicbase.json b/data/software/co/comicbase.json new file mode 100644 index 000000000000..a78357f69490 --- /dev/null +++ b/data/software/co/comicbase.json @@ -0,0 +1,8 @@ +{ + "slug": "comicbase", + "name": "ComicBase", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5151728" + ] +} diff --git a/data/software/co/comicink.json b/data/software/co/comicink.json new file mode 100644 index 000000000000..43b1f57f605c --- /dev/null +++ b/data/software/co/comicink.json @@ -0,0 +1,17 @@ +{ + "slug": "comicink", + "name": "ComicInk", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139504919" + ], + "release_date": "2026-01-01", + "operating_systems": [ + "iOS", + "web browser" + ], + "programming_languages": [ + "TypeScript", + "Swift" + ] +} diff --git a/data/software/co/comico.json b/data/software/co/comico.json new file mode 100644 index 000000000000..71c1c20e790a --- /dev/null +++ b/data/software/co/comico.json @@ -0,0 +1,8 @@ +{ + "slug": "comico", + "name": "Comico", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17991433" + ] +} diff --git a/data/software/co/comicsviewer.json b/data/software/co/comicsviewer.json new file mode 100644 index 000000000000..b06866d391df --- /dev/null +++ b/data/software/co/comicsviewer.json @@ -0,0 +1,8 @@ +{ + "slug": "comicsviewer", + "name": "ComicsViewer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10846809" + ] +} diff --git a/data/software/co/comindware-tracker.json b/data/software/co/comindware-tracker.json new file mode 100644 index 000000000000..d751db9c5b28 --- /dev/null +++ b/data/software/co/comindware-tracker.json @@ -0,0 +1,8 @@ +{ + "slug": "comindware-tracker", + "name": "Comindware Tracker", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5151893" + ] +} diff --git a/data/software/co/comm100-live-chat.json b/data/software/co/comm100-live-chat.json new file mode 100644 index 000000000000..2f37430c6052 --- /dev/null +++ b/data/software/co/comm100-live-chat.json @@ -0,0 +1,11 @@ +{ + "slug": "comm100-live-chat", + "name": "Comm100 Live Chat", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17087251" + ], + "developers": [ + "Comm100" + ] +} diff --git a/data/software/co/command-aces-of-the-deep.json b/data/software/co/command-aces-of-the-deep.json new file mode 100644 index 000000000000..357812396b4d --- /dev/null +++ b/data/software/co/command-aces-of-the-deep.json @@ -0,0 +1,8 @@ +{ + "slug": "command-aces-of-the-deep", + "name": "Command: Aces of the Deep", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q87409596" + ] +} diff --git a/data/software/co/comme-il-faut.json b/data/software/co/comme-il-faut.json new file mode 100644 index 000000000000..d81ba8c429e7 --- /dev/null +++ b/data/software/co/comme-il-faut.json @@ -0,0 +1,15 @@ +{ + "slug": "comme-il-faut", + "name": "Comme Il Faut", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125523910" + ], + "developers": [ + "Mike Treanor", + "Michael Mateas", + "Noah Wardrip-Fruin", + "Ben Samuel", + "Joshua McCoy" + ] +} diff --git a/data/software/co/commentpress.json b/data/software/co/commentpress.json new file mode 100644 index 000000000000..7d08c6ddf4cf --- /dev/null +++ b/data/software/co/commentpress.json @@ -0,0 +1,8 @@ +{ + "slug": "commentpress", + "name": "Commentpress", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084851" + ] +} diff --git a/data/software/co/commentspace.json b/data/software/co/commentspace.json new file mode 100644 index 000000000000..b27aa5d62af4 --- /dev/null +++ b/data/software/co/commentspace.json @@ -0,0 +1,8 @@ +{ + "slug": "commentspace", + "name": "CommentSpace", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084852" + ] +} diff --git a/data/software/co/common-lisp-interface-manager.json b/data/software/co/common-lisp-interface-manager.json new file mode 100644 index 000000000000..0bb542390c4e --- /dev/null +++ b/data/software/co/common-lisp-interface-manager.json @@ -0,0 +1,11 @@ +{ + "slug": "common-lisp-interface-manager", + "name": "Common Lisp Interface Manager", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1116166" + ], + "programming_languages": [ + "Common Lisp" + ] +} diff --git a/data/software/co/commonmeta-py-q130394645.json b/data/software/co/commonmeta-py-q130394645.json new file mode 100644 index 000000000000..25dbdb239b41 --- /dev/null +++ b/data/software/co/commonmeta-py-q130394645.json @@ -0,0 +1,9 @@ +{ + "slug": "commonmeta-py-q130394645", + "name": "commonmeta-py", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130394645" + ], + "release_date": "2024-02-04" +} diff --git a/data/software/co/commonmeta-py.json b/data/software/co/commonmeta-py.json new file mode 100644 index 000000000000..41b90bd1a0f1 --- /dev/null +++ b/data/software/co/commonmeta-py.json @@ -0,0 +1,9 @@ +{ + "slug": "commonmeta-py", + "name": "commonmeta-py", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130394644" + ], + "release_date": "2024-02-04" +} diff --git a/data/software/co/commonmeta-ruby-q130394648.json b/data/software/co/commonmeta-ruby-q130394648.json new file mode 100644 index 000000000000..b991c5b38e03 --- /dev/null +++ b/data/software/co/commonmeta-ruby-q130394648.json @@ -0,0 +1,9 @@ +{ + "slug": "commonmeta-ruby-q130394648", + "name": "commonmeta-ruby", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130394648" + ], + "release_date": "2024-02-04" +} diff --git a/data/software/co/commonmeta-ruby.json b/data/software/co/commonmeta-ruby.json new file mode 100644 index 000000000000..a4f95c263339 --- /dev/null +++ b/data/software/co/commonmeta-ruby.json @@ -0,0 +1,9 @@ +{ + "slug": "commonmeta-ruby", + "name": "commonmeta-ruby", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130394646" + ], + "release_date": "2024-02-04" +} diff --git a/data/software/co/commons-email.json b/data/software/co/commons-email.json new file mode 100644 index 000000000000..193f5dadf256 --- /dev/null +++ b/data/software/co/commons-email.json @@ -0,0 +1,8 @@ +{ + "slug": "commons-email", + "name": "Commons Email", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11190365" + ] +} diff --git a/data/software/co/commons-in-a-box.json b/data/software/co/commons-in-a-box.json new file mode 100644 index 000000000000..1bf1074425ff --- /dev/null +++ b/data/software/co/commons-in-a-box.json @@ -0,0 +1,8 @@ +{ + "slug": "commons-in-a-box", + "name": "Commons In A Box", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084853" + ] +} diff --git a/data/software/co/community-cyberinfrastructure-for-advanced-marine-microbial-ecology-research-and-analysis.json b/data/software/co/community-cyberinfrastructure-for-advanced-marine-microbial-ecology-research-and-analysis.json new file mode 100644 index 000000000000..af25c8621a0e --- /dev/null +++ b/data/software/co/community-cyberinfrastructure-for-advanced-marine-microbial-ecology-research-and-analysis.json @@ -0,0 +1,8 @@ +{ + "slug": "community-cyberinfrastructure-for-advanced-marine-microbial-ecology-research-and-analysis", + "name": "Community Cyberinfrastructure for Advanced Marine Microbial Ecology Research and Analysis", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q73625" + ] +} diff --git a/data/software/co/community-earth-system-model.json b/data/software/co/community-earth-system-model.json new file mode 100644 index 000000000000..37779f46a3d8 --- /dev/null +++ b/data/software/co/community-earth-system-model.json @@ -0,0 +1,11 @@ +{ + "slug": "community-earth-system-model", + "name": "Community Earth System Model", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q23579713" + ], + "developers": [ + "National Center for Atmospheric Research" + ] +} diff --git a/data/software/co/communityviz.json b/data/software/co/communityviz.json new file mode 100644 index 000000000000..84b05ebe9324 --- /dev/null +++ b/data/software/co/communityviz.json @@ -0,0 +1,8 @@ +{ + "slug": "communityviz", + "name": "CommunityViz", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5154605" + ] +} diff --git a/data/software/co/comodo-backup.json b/data/software/co/comodo-backup.json new file mode 100644 index 000000000000..bf36349592b6 --- /dev/null +++ b/data/software/co/comodo-backup.json @@ -0,0 +1,11 @@ +{ + "slug": "comodo-backup", + "name": "Comodo Backup", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1986559" + ], + "developers": [ + "Comodo Group" + ] +} diff --git a/data/software/co/compact-pro.json b/data/software/co/compact-pro.json new file mode 100644 index 000000000000..ac5f24bea4d1 --- /dev/null +++ b/data/software/co/compact-pro.json @@ -0,0 +1,8 @@ +{ + "slug": "compact-pro", + "name": "Compact Pro", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5155295" + ] +} diff --git a/data/software/co/comparative-toxicogenomics-database.json b/data/software/co/comparative-toxicogenomics-database.json new file mode 100644 index 000000000000..4ba9bbe768c3 --- /dev/null +++ b/data/software/co/comparative-toxicogenomics-database.json @@ -0,0 +1,11 @@ +{ + "slug": "comparative-toxicogenomics-database", + "name": "Comparative Toxicogenomics Database", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5155628" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/co/compare-lists.json b/data/software/co/compare-lists.json new file mode 100644 index 000000000000..5ea6abdcc49c --- /dev/null +++ b/data/software/co/compare-lists.json @@ -0,0 +1,8 @@ +{ + "slug": "compare-lists", + "name": "Compare Lists", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084854" + ] +} diff --git a/data/software/co/compare-networks-over-time.json b/data/software/co/compare-networks-over-time.json new file mode 100644 index 000000000000..9308423ff3be --- /dev/null +++ b/data/software/co/compare-networks-over-time.json @@ -0,0 +1,8 @@ +{ + "slug": "compare-networks-over-time", + "name": "Compare Networks Over Time", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084855" + ] +} diff --git a/data/software/co/comparison-of-software-saving-web-pages-for-offline-use.json b/data/software/co/comparison-of-software-saving-web-pages-for-offline-use.json new file mode 100644 index 000000000000..e3d2d7abf6a8 --- /dev/null +++ b/data/software/co/comparison-of-software-saving-web-pages-for-offline-use.json @@ -0,0 +1,8 @@ +{ + "slug": "comparison-of-software-saving-web-pages-for-offline-use", + "name": "Comparison of software saving Web pages for offline use", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5155993" + ] +} diff --git a/data/software/co/compfight.json b/data/software/co/compfight.json new file mode 100644 index 000000000000..ed4f1afe4b29 --- /dev/null +++ b/data/software/co/compfight.json @@ -0,0 +1,8 @@ +{ + "slug": "compfight", + "name": "Compfight", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084856" + ] +} diff --git a/data/software/co/comphep.json b/data/software/co/comphep.json new file mode 100644 index 000000000000..5221f169b0fd --- /dev/null +++ b/data/software/co/comphep.json @@ -0,0 +1,14 @@ +{ + "slug": "comphep", + "name": "CompHEP", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4036462" + ], + "developers": [ + "SINP MSU" + ], + "licenses": [ + "non-commercial activity" + ] +} diff --git a/data/software/co/comphistsem.json b/data/software/co/comphistsem.json new file mode 100644 index 000000000000..23e842144230 --- /dev/null +++ b/data/software/co/comphistsem.json @@ -0,0 +1,8 @@ +{ + "slug": "comphistsem", + "name": "CompHistSem", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087783" + ] +} diff --git a/data/software/co/compiler-rt-sanitizers.json b/data/software/co/compiler-rt-sanitizers.json new file mode 100644 index 000000000000..e485214eadb3 --- /dev/null +++ b/data/software/co/compiler-rt-sanitizers.json @@ -0,0 +1,11 @@ +{ + "slug": "compiler-rt-sanitizers", + "name": "compiler-rt-sanitizers", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974782" + ], + "licenses": [ + "Apache License" + ] +} diff --git a/data/software/co/compiler-rt.json b/data/software/co/compiler-rt.json new file mode 100644 index 000000000000..079fabbcf46b --- /dev/null +++ b/data/software/co/compiler-rt.json @@ -0,0 +1,11 @@ +{ + "slug": "compiler-rt", + "name": "compiler-rt", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974781" + ], + "licenses": [ + "Apache License" + ] +} diff --git a/data/software/co/complete-ftp-server.json b/data/software/co/complete-ftp-server.json new file mode 100644 index 000000000000..794a85679aa8 --- /dev/null +++ b/data/software/co/complete-ftp-server.json @@ -0,0 +1,9 @@ +{ + "slug": "complete-ftp-server", + "name": "Complete FTP Server", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5156460" + ], + "release_date": "2008-01-01" +} diff --git a/data/software/co/completetax.json b/data/software/co/completetax.json new file mode 100644 index 000000000000..cfc2793b0bc3 --- /dev/null +++ b/data/software/co/completetax.json @@ -0,0 +1,11 @@ +{ + "slug": "completetax", + "name": "CompleteTax", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5156439" + ], + "developers": [ + "CCH" + ] +} diff --git a/data/software/co/complex-sentiment-analysis.json b/data/software/co/complex-sentiment-analysis.json new file mode 100644 index 000000000000..03e7f6784857 --- /dev/null +++ b/data/software/co/complex-sentiment-analysis.json @@ -0,0 +1,8 @@ +{ + "slug": "complex-sentiment-analysis", + "name": "Complex Sentiment Analysis", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084857" + ] +} diff --git a/data/software/co/complydog.json b/data/software/co/complydog.json new file mode 100644 index 000000000000..2debba62b39c --- /dev/null +++ b/data/software/co/complydog.json @@ -0,0 +1,11 @@ +{ + "slug": "complydog", + "name": "ComplyDog", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138339765" + ], + "developers": [ + "ComplyDog" + ] +} diff --git a/data/software/co/component-based-scalable-logical-architecture.json b/data/software/co/component-based-scalable-logical-architecture.json new file mode 100644 index 000000000000..b4fbbd172c20 --- /dev/null +++ b/data/software/co/component-based-scalable-logical-architecture.json @@ -0,0 +1,8 @@ +{ + "slug": "component-based-scalable-logical-architecture", + "name": "Component-based Scalable Logical Architecture", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5156683" + ] +} diff --git a/data/software/co/composer-by-bluerock-tms.json b/data/software/co/composer-by-bluerock-tms.json new file mode 100644 index 000000000000..6eb4984bd37a --- /dev/null +++ b/data/software/co/composer-by-bluerock-tms.json @@ -0,0 +1,11 @@ +{ + "slug": "composer-by-bluerock-tms", + "name": "Composer by Bluerock TMS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140449825" + ], + "developers": [ + "Bluerock TMS" + ] +} diff --git a/data/software/co/compressed-file-library.json b/data/software/co/compressed-file-library.json new file mode 100644 index 000000000000..7473a9f694b1 --- /dev/null +++ b/data/software/co/compressed-file-library.json @@ -0,0 +1,14 @@ +{ + "slug": "compressed-file-library", + "name": "compressed file library", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5157021" + ], + "developers": [ + "Fathammer" + ], + "licenses": [ + "public-domain software" + ] +} diff --git a/data/software/co/compressor-q11872312.json b/data/software/co/compressor-q11872312.json new file mode 100644 index 000000000000..54fcf6be2b05 --- /dev/null +++ b/data/software/co/compressor-q11872312.json @@ -0,0 +1,8 @@ +{ + "slug": "compressor-q11872312", + "name": "compressor", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11872312" + ] +} diff --git a/data/software/co/compressor.json b/data/software/co/compressor.json new file mode 100644 index 000000000000..0af9ad2a8703 --- /dev/null +++ b/data/software/co/compressor.json @@ -0,0 +1,11 @@ +{ + "slug": "compressor", + "name": "Compressor", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2720274" + ], + "developers": [ + "Apple Inc." + ] +} diff --git a/data/software/co/compucell3d.json b/data/software/co/compucell3d.json new file mode 100644 index 000000000000..21d1daf15c60 --- /dev/null +++ b/data/software/co/compucell3d.json @@ -0,0 +1,8 @@ +{ + "slug": "compucell3d", + "name": "CompuCell3D", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5157207" + ] +} diff --git a/data/software/co/computational-anatomy-toolbox.json b/data/software/co/computational-anatomy-toolbox.json new file mode 100644 index 000000000000..c5794cb9de9f --- /dev/null +++ b/data/software/co/computational-anatomy-toolbox.json @@ -0,0 +1,8 @@ +{ + "slug": "computational-anatomy-toolbox", + "name": "Computational anatomy toolbox", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130548057" + ] +} diff --git a/data/software/co/computational-resource-for-drug-discovery.json b/data/software/co/computational-resource-for-drug-discovery.json new file mode 100644 index 000000000000..dbcdc89d0103 --- /dev/null +++ b/data/software/co/computational-resource-for-drug-discovery.json @@ -0,0 +1,8 @@ +{ + "slug": "computational-resource-for-drug-discovery", + "name": "Computational Resource for Drug Discovery", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5157292" + ] +} diff --git a/data/software/co/compute-architecture-for-neural-networks.json b/data/software/co/compute-architecture-for-neural-networks.json new file mode 100644 index 000000000000..1889c4d193fb --- /dev/null +++ b/data/software/co/compute-architecture-for-neural-networks.json @@ -0,0 +1,11 @@ +{ + "slug": "compute-architecture-for-neural-networks", + "name": "Compute Architecture for Neural Networks", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115931552" + ], + "developers": [ + "Huawei" + ] +} diff --git a/data/software/co/computer-accessibility.json b/data/software/co/computer-accessibility.json new file mode 100644 index 000000000000..dea8eb566941 --- /dev/null +++ b/data/software/co/computer-accessibility.json @@ -0,0 +1,8 @@ +{ + "slug": "computer-accessibility", + "name": "computer accessibility", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3097841" + ] +} diff --git a/data/software/co/computer-aided-technologies.json b/data/software/co/computer-aided-technologies.json new file mode 100644 index 000000000000..f3bdeeeefeb7 --- /dev/null +++ b/data/software/co/computer-aided-technologies.json @@ -0,0 +1,8 @@ +{ + "slug": "computer-aided-technologies", + "name": "Computer-aided technologies", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1022947" + ] +} diff --git a/data/software/co/computer-aided-transcription-system.json b/data/software/co/computer-aided-transcription-system.json new file mode 100644 index 000000000000..8e08518a9117 --- /dev/null +++ b/data/software/co/computer-aided-transcription-system.json @@ -0,0 +1,11 @@ +{ + "slug": "computer-aided-transcription-system", + "name": "Computer Aided Transcription System", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5008900" + ], + "publishers": [ + "CATS Software, Inc." + ] +} diff --git a/data/software/co/computer-and-internet-protocol-address-verifier.json b/data/software/co/computer-and-internet-protocol-address-verifier.json new file mode 100644 index 000000000000..5bbb48d853d8 --- /dev/null +++ b/data/software/co/computer-and-internet-protocol-address-verifier.json @@ -0,0 +1,11 @@ +{ + "slug": "computer-and-internet-protocol-address-verifier", + "name": "Computer and Internet Protocol Address Verifier", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1122348" + ], + "developers": [ + "Federal Bureau of Investigation" + ] +} diff --git a/data/software/co/computer-model-railroad-interface.json b/data/software/co/computer-model-railroad-interface.json new file mode 100644 index 000000000000..6eb1fc4711b7 --- /dev/null +++ b/data/software/co/computer-model-railroad-interface.json @@ -0,0 +1,8 @@ +{ + "slug": "computer-model-railroad-interface", + "name": "Computer Model Railroad Interface", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5157453" + ] +} diff --git a/data/software/co/computer-online-forensic-evidence-extractor.json b/data/software/co/computer-online-forensic-evidence-extractor.json new file mode 100644 index 000000000000..041130709c6d --- /dev/null +++ b/data/software/co/computer-online-forensic-evidence-extractor.json @@ -0,0 +1,8 @@ +{ + "slug": "computer-online-forensic-evidence-extractor", + "name": "Computer Online Forensic Evidence Extractor", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1122286" + ] +} diff --git a/data/software/co/computer-program-to-calculate-emissions-from-road-transport.json b/data/software/co/computer-program-to-calculate-emissions-from-road-transport.json new file mode 100644 index 000000000000..42afb656f676 --- /dev/null +++ b/data/software/co/computer-program-to-calculate-emissions-from-road-transport.json @@ -0,0 +1,11 @@ +{ + "slug": "computer-program-to-calculate-emissions-from-road-transport", + "name": "Computer Program to Calculate Emissions from Road Transport", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2990907" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/co/computer-stored-ambulatory-record.json b/data/software/co/computer-stored-ambulatory-record.json new file mode 100644 index 000000000000..0f102ff426fd --- /dev/null +++ b/data/software/co/computer-stored-ambulatory-record.json @@ -0,0 +1,14 @@ +{ + "slug": "computer-stored-ambulatory-record", + "name": "COmputer STored Ambulatory Record", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5013564" + ], + "developers": [ + "Massachusetts General Hospital" + ], + "programming_languages": [ + "MUMPS" + ] +} diff --git a/data/software/co/computrac.json b/data/software/co/computrac.json new file mode 100644 index 000000000000..9e584dbb473e --- /dev/null +++ b/data/software/co/computrac.json @@ -0,0 +1,8 @@ +{ + "slug": "computrac", + "name": "CompuTrac", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5157213" + ] +} diff --git a/data/software/co/conceptdraw-diagram.json b/data/software/co/conceptdraw-diagram.json new file mode 100644 index 000000000000..4d215a43d2f1 --- /dev/null +++ b/data/software/co/conceptdraw-diagram.json @@ -0,0 +1,11 @@ +{ + "slug": "conceptdraw-diagram", + "name": "ConceptDraw DIAGRAM", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q15614383" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/co/conceptdraw-mindmap.json b/data/software/co/conceptdraw-mindmap.json new file mode 100644 index 000000000000..f730106398c9 --- /dev/null +++ b/data/software/co/conceptdraw-mindmap.json @@ -0,0 +1,8 @@ +{ + "slug": "conceptdraw-mindmap", + "name": "ConceptDraw MINDMAP", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16526552" + ] +} diff --git a/data/software/co/conceptdraw-office.json b/data/software/co/conceptdraw-office.json new file mode 100644 index 000000000000..6e79bbc72dad --- /dev/null +++ b/data/software/co/conceptdraw-office.json @@ -0,0 +1,8 @@ +{ + "slug": "conceptdraw-office", + "name": "ConceptDraw Office", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q15240487" + ] +} diff --git a/data/software/co/conceptdraw-project.json b/data/software/co/conceptdraw-project.json new file mode 100644 index 000000000000..2312513d5a57 --- /dev/null +++ b/data/software/co/conceptdraw-project.json @@ -0,0 +1,8 @@ +{ + "slug": "conceptdraw-project", + "name": "ConceptDraw Project", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5158376" + ] +} diff --git a/data/software/co/concord.json b/data/software/co/concord.json new file mode 100644 index 000000000000..ea7a992aa62d --- /dev/null +++ b/data/software/co/concord.json @@ -0,0 +1,8 @@ +{ + "slug": "concord", + "name": "CONCORD", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087784" + ] +} diff --git a/data/software/co/concordance.json b/data/software/co/concordance.json new file mode 100644 index 000000000000..cd88a8adbbc2 --- /dev/null +++ b/data/software/co/concordance.json @@ -0,0 +1,8 @@ +{ + "slug": "concordance", + "name": "Concordance", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084859" + ] +} diff --git a/data/software/co/concorde-tsp-solver.json b/data/software/co/concorde-tsp-solver.json new file mode 100644 index 000000000000..d1a5437b1571 --- /dev/null +++ b/data/software/co/concorde-tsp-solver.json @@ -0,0 +1,11 @@ +{ + "slug": "concorde-tsp-solver", + "name": "Concorde TSP Solver", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5158938" + ], + "programming_languages": [ + "ANSI C" + ] +} diff --git a/data/software/co/concordle.json b/data/software/co/concordle.json new file mode 100644 index 000000000000..1bec72645b88 --- /dev/null +++ b/data/software/co/concordle.json @@ -0,0 +1,8 @@ +{ + "slug": "concordle", + "name": "Concordle", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087786" + ] +} diff --git a/data/software/co/concraft-dependencyparser.json b/data/software/co/concraft-dependencyparser.json new file mode 100644 index 000000000000..adc4a3a9b6bc --- /dev/null +++ b/data/software/co/concraft-dependencyparser.json @@ -0,0 +1,8 @@ +{ + "slug": "concraft-dependencyparser", + "name": "Concraft -> DependencyParser", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084861" + ] +} diff --git a/data/software/co/concraft-nerf.json b/data/software/co/concraft-nerf.json new file mode 100644 index 000000000000..0492e2231da0 --- /dev/null +++ b/data/software/co/concraft-nerf.json @@ -0,0 +1,8 @@ +{ + "slug": "concraft-nerf", + "name": "Concraft -> Nerf", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087787" + ] +} diff --git a/data/software/co/concraft-pl-2-0.json b/data/software/co/concraft-pl-2-0.json new file mode 100644 index 000000000000..52d0f2ee4956 --- /dev/null +++ b/data/software/co/concraft-pl-2-0.json @@ -0,0 +1,8 @@ +{ + "slug": "concraft-pl-2-0", + "name": "Concraft-pl 2.0", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084862" + ] +} diff --git a/data/software/co/concraft-sentipejd.json b/data/software/co/concraft-sentipejd.json new file mode 100644 index 000000000000..169d48691b58 --- /dev/null +++ b/data/software/co/concraft-sentipejd.json @@ -0,0 +1,8 @@ +{ + "slug": "concraft-sentipejd", + "name": "Concraft -> Sentipejd", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087788" + ] +} diff --git a/data/software/co/concraft-spejd.json b/data/software/co/concraft-spejd.json new file mode 100644 index 000000000000..f2ee4fb2d456 --- /dev/null +++ b/data/software/co/concraft-spejd.json @@ -0,0 +1,8 @@ +{ + "slug": "concraft-spejd", + "name": "Concraft->Spejd", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084864" + ] +} diff --git a/data/software/co/concraft.json b/data/software/co/concraft.json new file mode 100644 index 000000000000..530ac239a75e --- /dev/null +++ b/data/software/co/concraft.json @@ -0,0 +1,8 @@ +{ + "slug": "concraft", + "name": "Concraft", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084860" + ] +} diff --git a/data/software/co/conda.json b/data/software/co/conda.json new file mode 100644 index 000000000000..8e0d222210f6 --- /dev/null +++ b/data/software/co/conda.json @@ -0,0 +1,18 @@ +{ + "slug": "conda", + "name": "Conda", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22907431" + ], + "developers": [ + "Kale Franz", + "Bryan Van de Ven" + ], + "programming_languages": [ + "Python" + ], + "licenses": [ + "3-clause BSD License" + ] +} diff --git a/data/software/co/condor.json b/data/software/co/condor.json new file mode 100644 index 000000000000..b9fc4ea18ece --- /dev/null +++ b/data/software/co/condor.json @@ -0,0 +1,8 @@ +{ + "slug": "condor", + "name": "CONDOR", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087789" + ] +} diff --git a/data/software/co/conductor.json b/data/software/co/conductor.json new file mode 100644 index 000000000000..6401057ee979 --- /dev/null +++ b/data/software/co/conductor.json @@ -0,0 +1,8 @@ +{ + "slug": "conductor", + "name": "Conductor", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108795301" + ] +} diff --git a/data/software/co/conedakor.json b/data/software/co/conedakor.json new file mode 100644 index 000000000000..4dbdfedfd590 --- /dev/null +++ b/data/software/co/conedakor.json @@ -0,0 +1,12 @@ +{ + "slug": "conedakor", + "name": "ConedaKOR", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q42309254" + ], + "developers": [ + "Moritz Schepp", + "Thorsten Wuebbena" + ] +} diff --git a/data/software/co/confer.json b/data/software/co/confer.json new file mode 100644 index 000000000000..afd2e16389ab --- /dev/null +++ b/data/software/co/confer.json @@ -0,0 +1,12 @@ +{ + "slug": "confer", + "name": "CONFER", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5013397" + ], + "release_date": "1975-01-01", + "operating_systems": [ + "Michigan Terminal System" + ] +} diff --git a/data/software/co/confession-a-roman-catholic-app.json b/data/software/co/confession-a-roman-catholic-app.json new file mode 100644 index 000000000000..5ad855a525b5 --- /dev/null +++ b/data/software/co/confession-a-roman-catholic-app.json @@ -0,0 +1,8 @@ +{ + "slug": "confession-a-roman-catholic-app", + "name": "Confession: A Roman Catholic App", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5159976" + ] +} diff --git a/data/software/co/confide.json b/data/software/co/confide.json new file mode 100644 index 000000000000..0e79c6731078 --- /dev/null +++ b/data/software/co/confide.json @@ -0,0 +1,14 @@ +{ + "slug": "confide", + "name": "Confide", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28956988" + ], + "release_date": "2013-01-01", + "operating_systems": [ + "iOS", + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/software/co/configshell.json b/data/software/co/configshell.json new file mode 100644 index 000000000000..8d33c55456e9 --- /dev/null +++ b/data/software/co/configshell.json @@ -0,0 +1,11 @@ +{ + "slug": "configshell", + "name": "configshell", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974784" + ], + "licenses": [ + "Apache License" + ] +} diff --git a/data/software/co/conflict-catcher.json b/data/software/co/conflict-catcher.json new file mode 100644 index 000000000000..22c5a84635d9 --- /dev/null +++ b/data/software/co/conflict-catcher.json @@ -0,0 +1,11 @@ +{ + "slug": "conflict-catcher", + "name": "Conflict Catcher", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5160164" + ], + "developers": [ + "Casady & Greene" + ] +} diff --git a/data/software/co/conflict-resolver.json b/data/software/co/conflict-resolver.json new file mode 100644 index 000000000000..36951c233bd2 --- /dev/null +++ b/data/software/co/conflict-resolver.json @@ -0,0 +1,11 @@ +{ + "slug": "conflict-resolver", + "name": "Conflict Resolver", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3937041" + ], + "developers": [ + "Apple Inc." + ] +} diff --git a/data/software/co/conftool.json b/data/software/co/conftool.json new file mode 100644 index 000000000000..33e4b7ee1d77 --- /dev/null +++ b/data/software/co/conftool.json @@ -0,0 +1,8 @@ +{ + "slug": "conftool", + "name": "ConfTool", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084866" + ] +} diff --git a/data/software/co/congree.json b/data/software/co/congree.json new file mode 100644 index 000000000000..d366ecf0c60d --- /dev/null +++ b/data/software/co/congree.json @@ -0,0 +1,8 @@ +{ + "slug": "congree", + "name": "congree", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084867" + ] +} diff --git a/data/software/co/conn.json b/data/software/co/conn.json new file mode 100644 index 000000000000..bb3df2c9777e --- /dev/null +++ b/data/software/co/conn.json @@ -0,0 +1,11 @@ +{ + "slug": "conn", + "name": "CONN", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22907443" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/co/connect-direct.json b/data/software/co/connect-direct.json new file mode 100644 index 000000000000..5c60e59e652a --- /dev/null +++ b/data/software/co/connect-direct.json @@ -0,0 +1,8 @@ +{ + "slug": "connect-direct", + "name": "Connect:Direct", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q369085" + ] +} diff --git a/data/software/co/connect360.json b/data/software/co/connect360.json new file mode 100644 index 000000000000..34fc95e3f58f --- /dev/null +++ b/data/software/co/connect360.json @@ -0,0 +1,12 @@ +{ + "slug": "connect360", + "name": "Connect360", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5161367" + ], + "release_date": "2006-01-01", + "operating_systems": [ + "macOS" + ] +} diff --git a/data/software/co/connectedtext.json b/data/software/co/connectedtext.json new file mode 100644 index 000000000000..80c8759f5555 --- /dev/null +++ b/data/software/co/connectedtext.json @@ -0,0 +1,8 @@ +{ + "slug": "connectedtext", + "name": "ConnectedText", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5161398" + ] +} diff --git a/data/software/co/connectivity.json b/data/software/co/connectivity.json new file mode 100644 index 000000000000..c7649ca0444b --- /dev/null +++ b/data/software/co/connectivity.json @@ -0,0 +1,8 @@ +{ + "slug": "connectivity", + "name": "Connectivity", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76178912" + ] +} diff --git a/data/software/co/connman-gtk.json b/data/software/co/connman-gtk.json new file mode 100644 index 000000000000..8e880a202d27 --- /dev/null +++ b/data/software/co/connman-gtk.json @@ -0,0 +1,8 @@ +{ + "slug": "connman-gtk", + "name": "connman-gtk", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065148" + ] +} diff --git a/data/software/co/connman-ui.json b/data/software/co/connman-ui.json new file mode 100644 index 000000000000..fdef8a6d2270 --- /dev/null +++ b/data/software/co/connman-ui.json @@ -0,0 +1,11 @@ +{ + "slug": "connman-ui", + "name": "connman-ui", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974785" + ], + "licenses": [ + "GNU General Public License, version 2.0" + ] +} diff --git a/data/software/co/conquest.json b/data/software/co/conquest.json new file mode 100644 index 000000000000..882431f835d5 --- /dev/null +++ b/data/software/co/conquest.json @@ -0,0 +1,8 @@ +{ + "slug": "conquest", + "name": "CONQUEST", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5013404" + ] +} diff --git a/data/software/co/consed.json b/data/software/co/consed.json new file mode 100644 index 000000000000..72685f213092 --- /dev/null +++ b/data/software/co/consed.json @@ -0,0 +1,14 @@ +{ + "slug": "consed", + "name": "Consed", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5162789" + ], + "developers": [ + "David Gordon" + ], + "operating_systems": [ + "macOS" + ] +} diff --git a/data/software/co/consexpression.json b/data/software/co/consexpression.json new file mode 100644 index 000000000000..e02c27f10f0e --- /dev/null +++ b/data/software/co/consexpression.json @@ -0,0 +1,11 @@ +{ + "slug": "consexpression", + "name": "CONSEXPRESSION", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113304232" + ], + "programming_languages": [ + "Python" + ] +} diff --git a/data/software/co/console-bridge.json b/data/software/co/console-bridge.json new file mode 100644 index 000000000000..d3510fb05dd6 --- /dev/null +++ b/data/software/co/console-bridge.json @@ -0,0 +1,11 @@ +{ + "slug": "console-bridge", + "name": "console_bridge", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974786" + ], + "licenses": [ + "3-clause BSD License" + ] +} diff --git a/data/software/co/console.json b/data/software/co/console.json new file mode 100644 index 000000000000..4fbfd13b10f1 --- /dev/null +++ b/data/software/co/console.json @@ -0,0 +1,14 @@ +{ + "slug": "console", + "name": "Console", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q290151" + ], + "developers": [ + "Apple Inc." + ], + "operating_systems": [ + "macOS" + ] +} diff --git a/data/software/co/conspy.json b/data/software/co/conspy.json new file mode 100644 index 000000000000..9bed0a01c404 --- /dev/null +++ b/data/software/co/conspy.json @@ -0,0 +1,8 @@ +{ + "slug": "conspy", + "name": "conspy", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62851477" + ] +} diff --git a/data/software/co/constraint-report.json b/data/software/co/constraint-report.json new file mode 100644 index 000000000000..e21b541c36e2 --- /dev/null +++ b/data/software/co/constraint-report.json @@ -0,0 +1,8 @@ +{ + "slug": "constraint-report", + "name": "constraint report", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q21754329" + ] +} diff --git a/data/software/co/construction-and-analysis-of-distributed-processes.json b/data/software/co/construction-and-analysis-of-distributed-processes.json new file mode 100644 index 000000000000..863a7076d676 --- /dev/null +++ b/data/software/co/construction-and-analysis-of-distributed-processes.json @@ -0,0 +1,11 @@ +{ + "slug": "construction-and-analysis-of-distributed-processes", + "name": "Construction and Analysis of Distributed Processes", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5164442" + ], + "developers": [ + "Institut National de Recherche en Informatique et en Automatique" + ] +} diff --git a/data/software/co/constructor.json b/data/software/co/constructor.json new file mode 100644 index 000000000000..1fd0a748bc5a --- /dev/null +++ b/data/software/co/constructor.json @@ -0,0 +1,8 @@ +{ + "slug": "constructor", + "name": "Constructor", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5164513" + ] +} diff --git a/data/software/co/contact-95.json b/data/software/co/contact-95.json new file mode 100644 index 000000000000..fa09bd4f0dff --- /dev/null +++ b/data/software/co/contact-95.json @@ -0,0 +1,8 @@ +{ + "slug": "contact-95", + "name": "Contact 95", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121631698" + ] +} diff --git a/data/software/co/contacts-exporter.json b/data/software/co/contacts-exporter.json new file mode 100644 index 000000000000..e90fdb74323d --- /dev/null +++ b/data/software/co/contacts-exporter.json @@ -0,0 +1,14 @@ +{ + "slug": "contacts-exporter", + "name": "Contacts Exporter", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138472530" + ], + "developers": [ + "C. M. Leal Ltda" + ], + "operating_systems": [ + "macOS" + ] +} diff --git a/data/software/co/contawords.json b/data/software/co/contawords.json new file mode 100644 index 000000000000..1dba9b239a75 --- /dev/null +++ b/data/software/co/contawords.json @@ -0,0 +1,8 @@ +{ + "slug": "contawords", + "name": "ContaWords", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087790" + ] +} diff --git a/data/software/co/contemplative-agent.json b/data/software/co/contemplative-agent.json new file mode 100644 index 000000000000..611417ad30a4 --- /dev/null +++ b/data/software/co/contemplative-agent.json @@ -0,0 +1,15 @@ +{ + "slug": "contemplative-agent", + "name": "Contemplative Agent", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140090187" + ], + "release_date": "2026-03-25", + "developers": [ + "Tatsuya Shimomoto" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/co/content-distribution-mcp.json b/data/software/co/content-distribution-mcp.json new file mode 100644 index 000000000000..3f052694a064 --- /dev/null +++ b/data/software/co/content-distribution-mcp.json @@ -0,0 +1,17 @@ +{ + "slug": "content-distribution-mcp", + "name": "content-distribution-mcp", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139962037" + ], + "developers": [ + "AutomateLab" + ], + "programming_languages": [ + "TypeScript" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/co/contentdm.json b/data/software/co/contentdm.json new file mode 100644 index 000000000000..8ca434ec3c52 --- /dev/null +++ b/data/software/co/contentdm.json @@ -0,0 +1,11 @@ +{ + "slug": "contentdm", + "name": "CONTENTdm", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q61756741" + ], + "developers": [ + "OCLC, Inc." + ] +} diff --git a/data/software/co/contextics.json b/data/software/co/contextics.json new file mode 100644 index 000000000000..73f217b74054 --- /dev/null +++ b/data/software/co/contextics.json @@ -0,0 +1,8 @@ +{ + "slug": "contextics", + "name": "Contextics", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q27204913" + ] +} diff --git a/data/software/co/contextli.json b/data/software/co/contextli.json new file mode 100644 index 000000000000..cedff2d1da78 --- /dev/null +++ b/data/software/co/contextli.json @@ -0,0 +1,16 @@ +{ + "slug": "contextli", + "name": "Contextli", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138859402" + ], + "developers": [ + "Ertiqah LLC" + ], + "operating_systems": [ + "iOS", + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/software/co/contig.json b/data/software/co/contig.json new file mode 100644 index 000000000000..1b558206053d --- /dev/null +++ b/data/software/co/contig.json @@ -0,0 +1,11 @@ +{ + "slug": "contig", + "name": "Contig", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5165209" + ], + "developers": [ + "Mark Russinovich" + ] +} diff --git a/data/software/co/contiki-ng.json b/data/software/co/contiki-ng.json new file mode 100644 index 000000000000..7ace60fe6277 --- /dev/null +++ b/data/software/co/contiki-ng.json @@ -0,0 +1,15 @@ +{ + "slug": "contiki-ng", + "name": "Contiki-NG", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125458900" + ], + "developers": [ + "George Oikonomou", + "Simon Duquennoy" + ], + "licenses": [ + "3-clause BSD License" + ] +} diff --git a/data/software/co/continoprova.json b/data/software/co/continoprova.json new file mode 100644 index 000000000000..29bee527ca62 --- /dev/null +++ b/data/software/co/continoprova.json @@ -0,0 +1,8 @@ +{ + "slug": "continoprova", + "name": "ContinoProva", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60982260" + ] +} diff --git a/data/software/co/continuum.json b/data/software/co/continuum.json new file mode 100644 index 000000000000..4c9ef4f485f0 --- /dev/null +++ b/data/software/co/continuum.json @@ -0,0 +1,11 @@ +{ + "slug": "continuum", + "name": "Continuum", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25414245" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/co/contract-management-software.json b/data/software/co/contract-management-software.json new file mode 100644 index 000000000000..cc33ff6cd14d --- /dev/null +++ b/data/software/co/contract-management-software.json @@ -0,0 +1,8 @@ +{ + "slug": "contract-management-software", + "name": "Contract management software", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25324549" + ] +} diff --git a/data/software/co/contractexpress.json b/data/software/co/contractexpress.json new file mode 100644 index 000000000000..d6b0a5eadf8b --- /dev/null +++ b/data/software/co/contractexpress.json @@ -0,0 +1,8 @@ +{ + "slug": "contractexpress", + "name": "ContractExpress", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5165643" + ] +} diff --git a/data/software/co/contraption-maker.json b/data/software/co/contraption-maker.json new file mode 100644 index 000000000000..0946331e5582 --- /dev/null +++ b/data/software/co/contraption-maker.json @@ -0,0 +1,13 @@ +{ + "slug": "contraption-maker", + "name": "Contraption Maker", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q89408853" + ], + "release_date": "2014-07-07", + "genres": [ + "casual game", + "simulation video game" + ] +} diff --git a/data/software/co/contrast.json b/data/software/co/contrast.json new file mode 100644 index 000000000000..316b342543fa --- /dev/null +++ b/data/software/co/contrast.json @@ -0,0 +1,8 @@ +{ + "slug": "contrast", + "name": "Contrast", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135913365" + ] +} diff --git a/data/software/co/contrastive-language-image-pre-training.json b/data/software/co/contrastive-language-image-pre-training.json new file mode 100644 index 000000000000..9fa0de831977 --- /dev/null +++ b/data/software/co/contrastive-language-image-pre-training.json @@ -0,0 +1,11 @@ +{ + "slug": "contrastive-language-image-pre-training", + "name": "Contrastive Language-Image Pre-Training", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124169113" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/co/control-block.json b/data/software/co/control-block.json new file mode 100644 index 000000000000..6902c6ac563d --- /dev/null +++ b/data/software/co/control-block.json @@ -0,0 +1,8 @@ +{ + "slug": "control-block", + "name": "Control block", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137369468" + ] +} diff --git a/data/software/co/control-center.json b/data/software/co/control-center.json new file mode 100644 index 000000000000..32a71f4ede9e --- /dev/null +++ b/data/software/co/control-center.json @@ -0,0 +1,11 @@ +{ + "slug": "control-center", + "name": "Control Center", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16971518" + ], + "developers": [ + "Apple Inc." + ] +} diff --git a/data/software/co/control-m-workload-automation.json b/data/software/co/control-m-workload-automation.json new file mode 100644 index 000000000000..80baa221232a --- /dev/null +++ b/data/software/co/control-m-workload-automation.json @@ -0,0 +1,11 @@ +{ + "slug": "control-m-workload-automation", + "name": "Control-M Workload Automation", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62061186" + ], + "developers": [ + "BMC Software" + ] +} diff --git a/data/software/co/controlup.json b/data/software/co/controlup.json new file mode 100644 index 000000000000..71643cc2b4a2 --- /dev/null +++ b/data/software/co/controlup.json @@ -0,0 +1,8 @@ +{ + "slug": "controlup", + "name": "ControlUp", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140131154" + ] +} diff --git a/data/software/co/contropedia.json b/data/software/co/contropedia.json new file mode 100644 index 000000000000..658707f8dfc6 --- /dev/null +++ b/data/software/co/contropedia.json @@ -0,0 +1,8 @@ +{ + "slug": "contropedia", + "name": "Contropedia", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087791" + ] +} diff --git a/data/software/co/contub.json b/data/software/co/contub.json new file mode 100644 index 000000000000..75ecbfb47e9f --- /dev/null +++ b/data/software/co/contub.json @@ -0,0 +1,14 @@ +{ + "slug": "contub", + "name": "CoNTub", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5137542" + ], + "programming_languages": [ + "Java" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/co/convverse-ai.json b/data/software/co/convverse-ai.json new file mode 100644 index 000000000000..1fca4f4d2af4 --- /dev/null +++ b/data/software/co/convverse-ai.json @@ -0,0 +1,8 @@ +{ + "slug": "convverse-ai", + "name": "convverse.ai", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140458529" + ] +} diff --git a/data/software/co/coolnovo.json b/data/software/co/coolnovo.json new file mode 100644 index 000000000000..3f8ba3707a9c --- /dev/null +++ b/data/software/co/coolnovo.json @@ -0,0 +1,9 @@ +{ + "slug": "coolnovo", + "name": "CoolNovo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1051547" + ], + "release_date": "2009-01-01" +} diff --git a/data/software/co/coolspeech.json b/data/software/co/coolspeech.json new file mode 100644 index 000000000000..309360e39a94 --- /dev/null +++ b/data/software/co/coolspeech.json @@ -0,0 +1,11 @@ +{ + "slug": "coolspeech", + "name": "CoolSpeech", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5167234" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/co/cooltalk.json b/data/software/co/cooltalk.json new file mode 100644 index 000000000000..ce77f16c842a --- /dev/null +++ b/data/software/co/cooltalk.json @@ -0,0 +1,9 @@ +{ + "slug": "cooltalk", + "name": "CoolTalk", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5167238" + ], + "release_date": "1996-01-01" +} diff --git a/data/software/co/cooltext.json b/data/software/co/cooltext.json new file mode 100644 index 000000000000..aba8050825b1 --- /dev/null +++ b/data/software/co/cooltext.json @@ -0,0 +1,8 @@ +{ + "slug": "cooltext", + "name": "CoolText", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084869" + ] +} diff --git a/data/software/co/cooperating-validity-checker.json b/data/software/co/cooperating-validity-checker.json new file mode 100644 index 000000000000..3b71dae9e0c4 --- /dev/null +++ b/data/software/co/cooperating-validity-checker.json @@ -0,0 +1,8 @@ +{ + "slug": "cooperating-validity-checker", + "name": "Cooperating Validity Checker", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123808036" + ] +} diff --git a/data/software/co/copbrazil-core-v1-0425.json b/data/software/co/copbrazil-core-v1-0425.json new file mode 100644 index 000000000000..c5591db81f05 --- /dev/null +++ b/data/software/co/copbrazil-core-v1-0425.json @@ -0,0 +1,11 @@ +{ + "slug": "copbrazil-core-v1-0425", + "name": "COPBRAZIL_CORE::v1.0425", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135491318" + ], + "developers": [ + "Prado Leandro" + ] +} diff --git a/data/software/co/copper-project.json b/data/software/co/copper-project.json new file mode 100644 index 000000000000..b7976ff25e28 --- /dev/null +++ b/data/software/co/copper-project.json @@ -0,0 +1,8 @@ +{ + "slug": "copper-project", + "name": "Copper Project", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5168762" + ] +} diff --git a/data/software/co/copssh.json b/data/software/co/copssh.json new file mode 100644 index 000000000000..6048c94e7af7 --- /dev/null +++ b/data/software/co/copssh.json @@ -0,0 +1,8 @@ +{ + "slug": "copssh", + "name": "CopSSH", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5168999" + ] +} diff --git a/data/software/co/copy9.json b/data/software/co/copy9.json new file mode 100644 index 000000000000..3394cc81dd4a --- /dev/null +++ b/data/software/co/copy9.json @@ -0,0 +1,8 @@ +{ + "slug": "copy9", + "name": "Copy9", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2996882" + ] +} diff --git a/data/software/co/copycat.json b/data/software/co/copycat.json new file mode 100644 index 000000000000..d93a1e7a189f --- /dev/null +++ b/data/software/co/copycat.json @@ -0,0 +1,11 @@ +{ + "slug": "copycat", + "name": "Copycat", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2996887" + ], + "programming_languages": [ + "Common Lisp" + ] +} diff --git a/data/software/co/core-animation.json b/data/software/co/core-animation.json new file mode 100644 index 000000000000..185c7a5ab34f --- /dev/null +++ b/data/software/co/core-animation.json @@ -0,0 +1,11 @@ +{ + "slug": "core-animation", + "name": "Core Animation", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1132468" + ], + "developers": [ + "Apple Inc." + ] +} diff --git a/data/software/co/core-data.json b/data/software/co/core-data.json new file mode 100644 index 000000000000..3ffbfaa2d023 --- /dev/null +++ b/data/software/co/core-data.json @@ -0,0 +1,11 @@ +{ + "slug": "core-data", + "name": "Core Data", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2146830" + ], + "developers": [ + "Apple Inc." + ] +} diff --git a/data/software/co/core-fonts-for-the-web.json b/data/software/co/core-fonts-for-the-web.json new file mode 100644 index 000000000000..cbc5a0fbc3ff --- /dev/null +++ b/data/software/co/core-fonts-for-the-web.json @@ -0,0 +1,8 @@ +{ + "slug": "core-fonts-for-the-web", + "name": "Core fonts for the Web", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1132493" + ] +} diff --git a/data/software/co/core-foundation.json b/data/software/co/core-foundation.json new file mode 100644 index 000000000000..2663d392743f --- /dev/null +++ b/data/software/co/core-foundation.json @@ -0,0 +1,11 @@ +{ + "slug": "core-foundation", + "name": "Core Foundation", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3693449" + ], + "developers": [ + "Apple Inc." + ] +} diff --git a/data/software/co/core-ftp.json b/data/software/co/core-ftp.json new file mode 100644 index 000000000000..2312829143a2 --- /dev/null +++ b/data/software/co/core-ftp.json @@ -0,0 +1,8 @@ +{ + "slug": "core-ftp", + "name": "Core FTP", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16951619" + ] +} diff --git a/data/software/co/core-temp.json b/data/software/co/core-temp.json new file mode 100644 index 000000000000..6d563c7dc8eb --- /dev/null +++ b/data/software/co/core-temp.json @@ -0,0 +1,14 @@ +{ + "slug": "core-temp", + "name": "Core Temp", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25473477" + ], + "operating_systems": [ + "Microsoft Windows" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/co/corel-mediaone.json b/data/software/co/corel-mediaone.json new file mode 100644 index 000000000000..ec1da092d777 --- /dev/null +++ b/data/software/co/corel-mediaone.json @@ -0,0 +1,8 @@ +{ + "slug": "corel-mediaone", + "name": "Corel MediaOne", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2290507" + ] +} diff --git a/data/software/co/corel-presentations-11.json b/data/software/co/corel-presentations-11.json new file mode 100644 index 000000000000..08ef8139feab --- /dev/null +++ b/data/software/co/corel-presentations-11.json @@ -0,0 +1,8 @@ +{ + "slug": "corel-presentations-11", + "name": "Corel Presentations 11", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q64857783" + ] +} diff --git a/data/software/co/corel-presentations-7.json b/data/software/co/corel-presentations-7.json new file mode 100644 index 000000000000..5ad3cbf38de4 --- /dev/null +++ b/data/software/co/corel-presentations-7.json @@ -0,0 +1,11 @@ +{ + "slug": "corel-presentations-7", + "name": "Corel Presentations 7", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q64762578" + ], + "developers": [ + "Corel" + ] +} diff --git a/data/software/co/corel-presentations.json b/data/software/co/corel-presentations.json new file mode 100644 index 000000000000..66de7874eae4 --- /dev/null +++ b/data/software/co/corel-presentations.json @@ -0,0 +1,11 @@ +{ + "slug": "corel-presentations", + "name": "Corel Presentations", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1132534" + ], + "developers": [ + "Corel" + ] +} diff --git a/data/software/co/corel-print-office-2000.json b/data/software/co/corel-print-office-2000.json new file mode 100644 index 000000000000..5f84899c8783 --- /dev/null +++ b/data/software/co/corel-print-office-2000.json @@ -0,0 +1,15 @@ +{ + "slug": "corel-print-office-2000", + "name": "Corel Print Office 2000", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q56612717" + ], + "developers": [ + "Corel" + ], + "operating_systems": [ + "Windows NT 4.0", + "Windows 95" + ] +} diff --git a/data/software/co/corel-r-a-v-e.json b/data/software/co/corel-r-a-v-e.json new file mode 100644 index 000000000000..614de692a26f --- /dev/null +++ b/data/software/co/corel-r-a-v-e.json @@ -0,0 +1,11 @@ +{ + "slug": "corel-r-a-v-e", + "name": "Corel R.A.V.E.", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2997221" + ], + "developers": [ + "Corel" + ] +} diff --git a/data/software/co/corel-ventura.json b/data/software/co/corel-ventura.json new file mode 100644 index 000000000000..4e51046bfbd0 --- /dev/null +++ b/data/software/co/corel-ventura.json @@ -0,0 +1,17 @@ +{ + "slug": "corel-ventura", + "name": "Corel Ventura", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1132555" + ], + "release_date": "1986-01-01", + "developers": [ + "Corel" + ], + "operating_systems": [ + "Graphics Environment Manager", + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/software/co/cork-pos.json b/data/software/co/cork-pos.json new file mode 100644 index 000000000000..226a38cee041 --- /dev/null +++ b/data/software/co/cork-pos.json @@ -0,0 +1,8 @@ +{ + "slug": "cork-pos", + "name": "Cork POS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139986024" + ] +} diff --git a/data/software/co/cornell-notes-pdf-generator.json b/data/software/co/cornell-notes-pdf-generator.json new file mode 100644 index 000000000000..8493d7ccd651 --- /dev/null +++ b/data/software/co/cornell-notes-pdf-generator.json @@ -0,0 +1,8 @@ +{ + "slug": "cornell-notes-pdf-generator", + "name": "Cornell Notes PDF Generator", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084870" + ] +} diff --git a/data/software/co/cornerstone.json b/data/software/co/cornerstone.json new file mode 100644 index 000000000000..8e59dd21b277 --- /dev/null +++ b/data/software/co/cornerstone.json @@ -0,0 +1,11 @@ +{ + "slug": "cornerstone", + "name": "Cornerstone", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5171657" + ], + "developers": [ + "Infocom" + ] +} diff --git a/data/software/co/coronamelder.json b/data/software/co/coronamelder.json new file mode 100644 index 000000000000..be9f2346047f --- /dev/null +++ b/data/software/co/coronamelder.json @@ -0,0 +1,8 @@ +{ + "slug": "coronamelder", + "name": "CoronaMelder", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q98435134" + ] +} diff --git a/data/software/co/corpkit.json b/data/software/co/corpkit.json new file mode 100644 index 000000000000..8ac603cb3277 --- /dev/null +++ b/data/software/co/corpkit.json @@ -0,0 +1,8 @@ +{ + "slug": "corpkit", + "name": "Corpkit", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087793" + ] +} diff --git a/data/software/co/corporify.json b/data/software/co/corporify.json new file mode 100644 index 000000000000..20015084066d --- /dev/null +++ b/data/software/co/corporify.json @@ -0,0 +1,8 @@ +{ + "slug": "corporify", + "name": "Corporify", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136468994" + ] +} diff --git a/data/software/co/corpusexplorer.json b/data/software/co/corpusexplorer.json new file mode 100644 index 000000000000..e5c3cc385ac0 --- /dev/null +++ b/data/software/co/corpusexplorer.json @@ -0,0 +1,8 @@ +{ + "slug": "corpusexplorer", + "name": "CorpusExplorer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084871" + ] +} diff --git a/data/software/co/corpussearch-2.json b/data/software/co/corpussearch-2.json new file mode 100644 index 000000000000..e2735775861e --- /dev/null +++ b/data/software/co/corpussearch-2.json @@ -0,0 +1,8 @@ +{ + "slug": "corpussearch-2", + "name": "CorpusSearch 2", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084875" + ] +} diff --git a/data/software/co/corpussearch.json b/data/software/co/corpussearch.json new file mode 100644 index 000000000000..8c9d4c619bee --- /dev/null +++ b/data/software/co/corpussearch.json @@ -0,0 +1,8 @@ +{ + "slug": "corpussearch", + "name": "CorpusSearch", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084872" + ] +} diff --git a/data/software/co/correlizer.json b/data/software/co/correlizer.json new file mode 100644 index 000000000000..87a6fe34103b --- /dev/null +++ b/data/software/co/correlizer.json @@ -0,0 +1,8 @@ +{ + "slug": "correlizer", + "name": "Correlizer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4036560" + ] +} diff --git a/data/software/co/corsika.json b/data/software/co/corsika.json new file mode 100644 index 000000000000..e574c51e37bd --- /dev/null +++ b/data/software/co/corsika.json @@ -0,0 +1,8 @@ +{ + "slug": "corsika", + "name": "CORSIKA", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5013483" + ] +} diff --git a/data/software/co/corsim.json b/data/software/co/corsim.json new file mode 100644 index 000000000000..ca64fbd6ce56 --- /dev/null +++ b/data/software/co/corsim.json @@ -0,0 +1,8 @@ +{ + "slug": "corsim", + "name": "CORSIM", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5013487" + ] +} diff --git a/data/software/co/cosign-single-sign-on.json b/data/software/co/cosign-single-sign-on.json new file mode 100644 index 000000000000..5b2b3f3e1495 --- /dev/null +++ b/data/software/co/cosign-single-sign-on.json @@ -0,0 +1,8 @@ +{ + "slug": "cosign-single-sign-on", + "name": "CoSign single sign on", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5137549" + ] +} diff --git a/data/software/co/cosm.json b/data/software/co/cosm.json new file mode 100644 index 000000000000..3169e92de330 --- /dev/null +++ b/data/software/co/cosm.json @@ -0,0 +1,12 @@ +{ + "slug": "cosm", + "name": "Cosm", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5173966" + ], + "release_date": "1995-01-01", + "licenses": [ + "Apache License" + ] +} diff --git a/data/software/co/cosmology-home.json b/data/software/co/cosmology-home.json new file mode 100644 index 000000000000..e69d266779a2 --- /dev/null +++ b/data/software/co/cosmology-home.json @@ -0,0 +1,8 @@ +{ + "slug": "cosmology-home", + "name": "Cosmology@Home", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1136163" + ] +} diff --git a/data/software/co/cosmos.json b/data/software/co/cosmos.json new file mode 100644 index 000000000000..96ed2c32c3ae --- /dev/null +++ b/data/software/co/cosmos.json @@ -0,0 +1,8 @@ +{ + "slug": "cosmos", + "name": "Cosmos", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111518088" + ] +} diff --git a/data/software/co/cosmotool.json b/data/software/co/cosmotool.json new file mode 100644 index 000000000000..105defdd3a82 --- /dev/null +++ b/data/software/co/cosmotool.json @@ -0,0 +1,8 @@ +{ + "slug": "cosmotool", + "name": "CosmoTool", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084876" + ] +} diff --git a/data/software/co/couchbase-lite.json b/data/software/co/couchbase-lite.json new file mode 100644 index 000000000000..336559726111 --- /dev/null +++ b/data/software/co/couchbase-lite.json @@ -0,0 +1,11 @@ +{ + "slug": "couchbase-lite", + "name": "Couchbase Lite", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25348952" + ], + "developers": [ + "Couchbase, Inc." + ] +} diff --git a/data/software/co/couenne.json b/data/software/co/couenne.json new file mode 100644 index 000000000000..cf128a5da982 --- /dev/null +++ b/data/software/co/couenne.json @@ -0,0 +1,8 @@ +{ + "slug": "couenne", + "name": "Couenne", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22907515" + ] +} diff --git a/data/software/co/counterclaim-skill-pack.json b/data/software/co/counterclaim-skill-pack.json new file mode 100644 index 000000000000..6aab572ed75a --- /dev/null +++ b/data/software/co/counterclaim-skill-pack.json @@ -0,0 +1,11 @@ +{ + "slug": "counterclaim-skill-pack", + "name": "Counterclaim (skill pack)", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140466808" + ], + "developers": [ + "Mudd Ventures" + ] +} diff --git a/data/software/co/counterparty.json b/data/software/co/counterparty.json new file mode 100644 index 000000000000..b57a9b8175f5 --- /dev/null +++ b/data/software/co/counterparty.json @@ -0,0 +1,11 @@ +{ + "slug": "counterparty", + "name": "Counterparty", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17001970" + ], + "programming_languages": [ + "Python" + ] +} diff --git a/data/software/co/counterspy.json b/data/software/co/counterspy.json new file mode 100644 index 000000000000..f14b31fb5d42 --- /dev/null +++ b/data/software/co/counterspy.json @@ -0,0 +1,14 @@ +{ + "slug": "counterspy", + "name": "Counterspy", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5177037" + ], + "developers": [ + "Sunbelt Software" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/co/couple.json b/data/software/co/couple.json new file mode 100644 index 000000000000..776e5f05f35f --- /dev/null +++ b/data/software/co/couple.json @@ -0,0 +1,8 @@ +{ + "slug": "couple", + "name": "Couple", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5178009" + ] +} diff --git a/data/software/co/courier.json b/data/software/co/courier.json new file mode 100644 index 000000000000..5b415fb850aa --- /dev/null +++ b/data/software/co/courier.json @@ -0,0 +1,11 @@ +{ + "slug": "courier", + "name": "Courier", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5178135" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/co/cover-clustering-with-overlaps.json b/data/software/co/cover-clustering-with-overlaps.json new file mode 100644 index 000000000000..618fd2764465 --- /dev/null +++ b/data/software/co/cover-clustering-with-overlaps.json @@ -0,0 +1,15 @@ +{ + "slug": "cover-clustering-with-overlaps", + "name": "COveR: clustering with overlaps", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138660581" + ], + "release_date": "2017-11-06", + "developers": [ + "Guillaume Cleuziou" + ], + "licenses": [ + "GNU General Public License, version 2.0 or later" + ] +} diff --git a/data/software/co/cover-flow.json b/data/software/co/cover-flow.json new file mode 100644 index 000000000000..fd6a4f772eb5 --- /dev/null +++ b/data/software/co/cover-flow.json @@ -0,0 +1,8 @@ +{ + "slug": "cover-flow", + "name": "Cover Flow", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1138099" + ] +} diff --git a/data/software/co/coverme.json b/data/software/co/coverme.json new file mode 100644 index 000000000000..2c46e3c87aa2 --- /dev/null +++ b/data/software/co/coverme.json @@ -0,0 +1,8 @@ +{ + "slug": "coverme", + "name": "CoverMe", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28449264" + ] +} diff --git a/data/software/co/cowo.json b/data/software/co/cowo.json new file mode 100644 index 000000000000..a084c80f1c3a --- /dev/null +++ b/data/software/co/cowo.json @@ -0,0 +1,8 @@ +{ + "slug": "cowo", + "name": "Cowo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084877" + ] +} diff --git a/data/software/co/cozi-central.json b/data/software/co/cozi-central.json new file mode 100644 index 000000000000..720127987918 --- /dev/null +++ b/data/software/co/cozi-central.json @@ -0,0 +1,11 @@ +{ + "slug": "cozi-central", + "name": "Cozi Central", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5180133" + ], + "developers": [ + "Cozi" + ] +} diff --git a/data/software/co/cozy.json b/data/software/co/cozy.json new file mode 100644 index 000000000000..df54013d72b5 --- /dev/null +++ b/data/software/co/cozy.json @@ -0,0 +1,8 @@ +{ + "slug": "cozy", + "name": "Cozy", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q19559831" + ] +} diff --git a/data/software/cp/cpachecker.json b/data/software/cp/cpachecker.json new file mode 100644 index 000000000000..aacbb7512a3a --- /dev/null +++ b/data/software/cp/cpachecker.json @@ -0,0 +1,8 @@ +{ + "slug": "cpachecker", + "name": "CPAchecker", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5013609" + ] +} diff --git a/data/software/cp/cpc-tool.json b/data/software/cp/cpc-tool.json new file mode 100644 index 000000000000..f0df61c00567 --- /dev/null +++ b/data/software/cp/cpc-tool.json @@ -0,0 +1,16 @@ +{ + "slug": "cpc-tool", + "name": "CPC Tool", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q61504972" + ], + "operating_systems": [ + "SunOS", + "UnixWare", + "IRIX", + "FreeBSD", + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/software/cp/cpce.json b/data/software/cp/cpce.json new file mode 100644 index 000000000000..1ebf11714428 --- /dev/null +++ b/data/software/cp/cpce.json @@ -0,0 +1,8 @@ +{ + "slug": "cpce", + "name": "CPCe", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5013625" + ] +} diff --git a/data/software/cp/cpdf.json b/data/software/cp/cpdf.json new file mode 100644 index 000000000000..2af5a1f043ac --- /dev/null +++ b/data/software/cp/cpdf.json @@ -0,0 +1,8 @@ +{ + "slug": "cpdf", + "name": "cpdf", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63064910" + ] +} diff --git a/data/software/cp/cports.json b/data/software/cp/cports.json new file mode 100644 index 000000000000..57a8dbfb5ea5 --- /dev/null +++ b/data/software/cp/cports.json @@ -0,0 +1,11 @@ +{ + "slug": "cports", + "name": "Cports", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116697679" + ], + "licenses": [ + "2-clause BSD License" + ] +} diff --git a/data/software/cp/cppdepend.json b/data/software/cp/cppdepend.json new file mode 100644 index 000000000000..f73c10109d50 --- /dev/null +++ b/data/software/cp/cppdepend.json @@ -0,0 +1,8 @@ +{ + "slug": "cppdepend", + "name": "Cppdepend", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25111292" + ] +} diff --git a/data/software/cp/cpudyn.json b/data/software/cp/cpudyn.json new file mode 100644 index 000000000000..955d0a200600 --- /dev/null +++ b/data/software/cp/cpudyn.json @@ -0,0 +1,11 @@ +{ + "slug": "cpudyn", + "name": "Cpudyn", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5790483" + ], + "licenses": [ + "GNU General Public License" + ] +} diff --git a/data/software/cp/cpulimit.json b/data/software/cp/cpulimit.json new file mode 100644 index 000000000000..ba1a3cd7f540 --- /dev/null +++ b/data/software/cp/cpulimit.json @@ -0,0 +1,11 @@ +{ + "slug": "cpulimit", + "name": "cpulimit", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127418892" + ], + "licenses": [ + "GNU General Public License, version 2.0" + ] +} diff --git a/data/software/cp/cpuminer-opt.json b/data/software/cp/cpuminer-opt.json new file mode 100644 index 000000000000..c9a5ef0b2f4b --- /dev/null +++ b/data/software/cp/cpuminer-opt.json @@ -0,0 +1,8 @@ +{ + "slug": "cpuminer-opt", + "name": "cpuminer-opt", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065266" + ] +} diff --git a/data/software/cq/cqpweb.json b/data/software/cq/cqpweb.json new file mode 100644 index 000000000000..f036ec580289 --- /dev/null +++ b/data/software/cq/cqpweb.json @@ -0,0 +1,8 @@ +{ + "slug": "cqpweb", + "name": "CQPweb", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084878" + ] +} diff --git a/data/software/cr/cracks-software.json b/data/software/cr/cracks-software.json new file mode 100644 index 000000000000..f2fae097dae0 --- /dev/null +++ b/data/software/cr/cracks-software.json @@ -0,0 +1,8 @@ +{ + "slug": "cracks-software", + "name": "Cracks (software)", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139829587" + ] +} diff --git a/data/software/cr/craftercms.json b/data/software/cr/craftercms.json new file mode 100644 index 000000000000..91e8dcff253d --- /dev/null +++ b/data/software/cr/craftercms.json @@ -0,0 +1,11 @@ +{ + "slug": "craftercms", + "name": "CrafterCMS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q39057240" + ], + "programming_languages": [ + "Java" + ] +} diff --git a/data/software/cr/craftstudio.json b/data/software/cr/craftstudio.json new file mode 100644 index 000000000000..26e10f327f9c --- /dev/null +++ b/data/software/cr/craftstudio.json @@ -0,0 +1,9 @@ +{ + "slug": "craftstudio", + "name": "CraftStudio", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105044267" + ], + "release_date": "2011-06-12" +} diff --git a/data/software/cr/cram.json b/data/software/cr/cram.json new file mode 100644 index 000000000000..b5f6ccf4117f --- /dev/null +++ b/data/software/cr/cram.json @@ -0,0 +1,12 @@ +{ + "slug": "cram", + "name": "Cram", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5181806" + ], + "operating_systems": [ + "iOS", + "macOS" + ] +} diff --git a/data/software/cr/crane.json b/data/software/cr/crane.json new file mode 100644 index 000000000000..0e94654229ee --- /dev/null +++ b/data/software/cr/crane.json @@ -0,0 +1,11 @@ +{ + "slug": "crane", + "name": "CRANE", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138806904" + ], + "developers": [ + "Rho Impact" + ] +} diff --git a/data/software/cr/cranelift.json b/data/software/cr/cranelift.json new file mode 100644 index 000000000000..526edaf9ecf7 --- /dev/null +++ b/data/software/cr/cranelift.json @@ -0,0 +1,11 @@ +{ + "slug": "cranelift", + "name": "Cranelift", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116745226" + ], + "licenses": [ + "Apache License v2.0 with LLVM Exceptions" + ] +} diff --git a/data/software/cr/crank-storyboard-suite.json b/data/software/cr/crank-storyboard-suite.json new file mode 100644 index 000000000000..ddd41c7f500f --- /dev/null +++ b/data/software/cr/crank-storyboard-suite.json @@ -0,0 +1,9 @@ +{ + "slug": "crank-storyboard-suite", + "name": "Crank Storyboard Suite", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5182178" + ], + "release_date": "2010-05-14" +} diff --git a/data/software/cr/crash-reporter.json b/data/software/cr/crash-reporter.json new file mode 100644 index 000000000000..112060e318ec --- /dev/null +++ b/data/software/cr/crash-reporter.json @@ -0,0 +1,14 @@ +{ + "slug": "crash-reporter", + "name": "Crash Reporter", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q290399" + ], + "developers": [ + "Apple Inc." + ], + "operating_systems": [ + "macOS" + ] +} diff --git a/data/software/cr/crashme.json b/data/software/cr/crashme.json new file mode 100644 index 000000000000..e53bced2aaa8 --- /dev/null +++ b/data/software/cr/crashme.json @@ -0,0 +1,11 @@ +{ + "slug": "crashme", + "name": "crashme", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11194970" + ], + "licenses": [ + "GNU Lesser General Public License, version 2.1 or later" + ] +} diff --git a/data/software/cr/crawdad-text-analysis-software.json b/data/software/cr/crawdad-text-analysis-software.json new file mode 100644 index 000000000000..58a1695602b5 --- /dev/null +++ b/data/software/cr/crawdad-text-analysis-software.json @@ -0,0 +1,8 @@ +{ + "slug": "crawdad-text-analysis-software", + "name": "Crawdad Text Analysis Software", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084879" + ] +} diff --git a/data/software/cr/crayola-art-studio.json b/data/software/cr/crayola-art-studio.json new file mode 100644 index 000000000000..b33286e929d3 --- /dev/null +++ b/data/software/cr/crayola-art-studio.json @@ -0,0 +1,12 @@ +{ + "slug": "crayola-art-studio", + "name": "Crayola Art Studio", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q56612239" + ], + "release_date": "1994-01-01", + "developers": [ + "Micrografx" + ] +} diff --git a/data/software/cr/crazytalk.json b/data/software/cr/crazytalk.json new file mode 100644 index 000000000000..e256ee793cd4 --- /dev/null +++ b/data/software/cr/crazytalk.json @@ -0,0 +1,11 @@ +{ + "slug": "crazytalk", + "name": "Crazytalk", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16959238" + ], + "developers": [ + "Reallusion" + ] +} diff --git a/data/software/cr/creacode-sip-application-server.json b/data/software/cr/creacode-sip-application-server.json new file mode 100644 index 000000000000..6690b84a46e4 --- /dev/null +++ b/data/software/cr/creacode-sip-application-server.json @@ -0,0 +1,9 @@ +{ + "slug": "creacode-sip-application-server", + "name": "Creacode SIP Application Server", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22907538" + ], + "release_date": "2006-01-01" +} diff --git a/data/software/cr/creatio.json b/data/software/cr/creatio.json new file mode 100644 index 000000000000..abcf9832fad2 --- /dev/null +++ b/data/software/cr/creatio.json @@ -0,0 +1,12 @@ +{ + "slug": "creatio", + "name": "Creatio", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4034719" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/software/cr/creator.json b/data/software/cr/creator.json new file mode 100644 index 000000000000..6760f60e5e47 --- /dev/null +++ b/data/software/cr/creator.json @@ -0,0 +1,9 @@ +{ + "slug": "creator", + "name": "Creator", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5183603" + ], + "release_date": "1993-01-01" +} diff --git a/data/software/cr/credit.json b/data/software/cr/credit.json new file mode 100644 index 000000000000..f160a1ec0a46 --- /dev/null +++ b/data/software/cr/credit.json @@ -0,0 +1,11 @@ +{ + "slug": "credit", + "name": "Credit", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q12764228" + ], + "genres": [ + "hypertext" + ] +} diff --git a/data/software/cr/credyt.json b/data/software/cr/credyt.json new file mode 100644 index 000000000000..0f35b0b3208f --- /dev/null +++ b/data/software/cr/credyt.json @@ -0,0 +1,14 @@ +{ + "slug": "credyt", + "name": "Credyt", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138976474" + ], + "developers": [ + "Credyt" + ], + "operating_systems": [ + "cloud computing" + ] +} diff --git a/data/software/cr/creo-elements-view.json b/data/software/cr/creo-elements-view.json new file mode 100644 index 000000000000..b07e649842bc --- /dev/null +++ b/data/software/cr/creo-elements-view.json @@ -0,0 +1,15 @@ +{ + "slug": "creo-elements-view", + "name": "Creo Elements/View", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5184179" + ], + "release_date": "1997-01-01", + "developers": [ + "Parametric Technology Corporation" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/cr/crewai.json b/data/software/cr/crewai.json new file mode 100644 index 000000000000..a8bd24c0999d --- /dev/null +++ b/data/software/cr/crewai.json @@ -0,0 +1,8 @@ +{ + "slug": "crewai", + "name": "CrewAI", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139761640" + ] +} diff --git a/data/software/cr/cricketdraw.json b/data/software/cr/cricketdraw.json new file mode 100644 index 000000000000..fa7d93afcb97 --- /dev/null +++ b/data/software/cr/cricketdraw.json @@ -0,0 +1,8 @@ +{ + "slug": "cricketdraw", + "name": "CricketDraw", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5184936" + ] +} diff --git a/data/software/cr/cricketgraph.json b/data/software/cr/cricketgraph.json new file mode 100644 index 000000000000..66432ffece4d --- /dev/null +++ b/data/software/cr/cricketgraph.json @@ -0,0 +1,8 @@ +{ + "slug": "cricketgraph", + "name": "CricketGraph", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5184938" + ] +} diff --git a/data/software/cr/crimeanalyst.json b/data/software/cr/crimeanalyst.json new file mode 100644 index 000000000000..28d6e2faaccf --- /dev/null +++ b/data/software/cr/crimeanalyst.json @@ -0,0 +1,11 @@ +{ + "slug": "crimeanalyst", + "name": "CrimeAnalyst", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5185151" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/cr/crimeview.json b/data/software/cr/crimeview.json new file mode 100644 index 000000000000..37c726b8bd01 --- /dev/null +++ b/data/software/cr/crimeview.json @@ -0,0 +1,8 @@ +{ + "slug": "crimeview", + "name": "CrimeView", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5185154" + ] +} diff --git a/data/software/cr/critical-care-nursing-simulation.json b/data/software/cr/critical-care-nursing-simulation.json new file mode 100644 index 000000000000..14f8777953cd --- /dev/null +++ b/data/software/cr/critical-care-nursing-simulation.json @@ -0,0 +1,8 @@ +{ + "slug": "critical-care-nursing-simulation", + "name": "critical care nursing simulation", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115339624" + ] +} diff --git a/data/software/cr/criticaliq.json b/data/software/cr/criticaliq.json new file mode 100644 index 000000000000..fcfa26b2abc8 --- /dev/null +++ b/data/software/cr/criticaliq.json @@ -0,0 +1,11 @@ +{ + "slug": "criticaliq", + "name": "CriticalIQ", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138507665" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/cr/critterding.json b/data/software/cr/critterding.json new file mode 100644 index 000000000000..ec91e4279a29 --- /dev/null +++ b/data/software/cr/critterding.json @@ -0,0 +1,12 @@ +{ + "slug": "critterding", + "name": "Critterding", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16248386" + ], + "release_date": "2005-01-01", + "genres": [ + "artificial life" + ] +} diff --git a/data/software/cr/crlibm.json b/data/software/cr/crlibm.json new file mode 100644 index 000000000000..2e7adf656da5 --- /dev/null +++ b/data/software/cr/crlibm.json @@ -0,0 +1,11 @@ +{ + "slug": "crlibm", + "name": "CRlibm", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117845970" + ], + "developers": [ + "Florent de Dinechin" + ] +} diff --git a/data/software/cr/croixleur-sigma.json b/data/software/cr/croixleur-sigma.json new file mode 100644 index 000000000000..adaf2b4814ad --- /dev/null +++ b/data/software/cr/croixleur-sigma.json @@ -0,0 +1,17 @@ +{ + "slug": "croixleur-sigma", + "name": "Croixleur Sigma", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q74250432" + ], + "release_date": "2014-04-30", + "publishers": [ + "Playism" + ], + "genres": [ + "action game", + "beat 'em up", + "hack and slash" + ] +} diff --git a/data/software/cr/cronus-emulator.json b/data/software/cr/cronus-emulator.json new file mode 100644 index 000000000000..f621e483b10f --- /dev/null +++ b/data/software/cr/cronus-emulator.json @@ -0,0 +1,8 @@ +{ + "slug": "cronus-emulator", + "name": "Cronus-Emulator", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10261795" + ] +} diff --git a/data/software/cr/cropgui.json b/data/software/cr/cropgui.json new file mode 100644 index 000000000000..2cbf50c7ea77 --- /dev/null +++ b/data/software/cr/cropgui.json @@ -0,0 +1,11 @@ +{ + "slug": "cropgui", + "name": "cropgui", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974792" + ], + "licenses": [ + "GNU General Public License, version 2.0" + ] +} diff --git a/data/software/cr/croquet-project.json b/data/software/cr/croquet-project.json new file mode 100644 index 000000000000..f9bc5dff45df --- /dev/null +++ b/data/software/cr/croquet-project.json @@ -0,0 +1,17 @@ +{ + "slug": "croquet-project", + "name": "Croquet Project", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3567305" + ], + "developers": [ + "Alan Kay" + ], + "programming_languages": [ + "Squeak" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/cr/cross-crossdj.json b/data/software/cr/cross-crossdj.json new file mode 100644 index 000000000000..d23ac3ea3c7e --- /dev/null +++ b/data/software/cr/cross-crossdj.json @@ -0,0 +1,8 @@ +{ + "slug": "cross-crossdj", + "name": "Cross/CrossDJ", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5188211" + ] +} diff --git a/data/software/cr/crossconvert.json b/data/software/cr/crossconvert.json new file mode 100644 index 000000000000..510c1f12a239 --- /dev/null +++ b/data/software/cr/crossconvert.json @@ -0,0 +1,14 @@ +{ + "slug": "crossconvert", + "name": "CrossConvert", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138472623" + ], + "developers": [ + "C. M. Leal Ltda" + ], + "operating_systems": [ + "macOS" + ] +} diff --git a/data/software/cr/crossdev.json b/data/software/cr/crossdev.json new file mode 100644 index 000000000000..d559556d9ba5 --- /dev/null +++ b/data/software/cr/crossdev.json @@ -0,0 +1,8 @@ +{ + "slug": "crossdev", + "name": "crossdev", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974793" + ] +} diff --git a/data/software/cr/crossdos.json b/data/software/cr/crossdos.json new file mode 100644 index 000000000000..b532f1841d5f --- /dev/null +++ b/data/software/cr/crossdos.json @@ -0,0 +1,8 @@ +{ + "slug": "crossdos", + "name": "CrossDOS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4036695" + ] +} diff --git a/data/software/cr/crossfilter.json b/data/software/cr/crossfilter.json new file mode 100644 index 000000000000..a95ee4a7cbc7 --- /dev/null +++ b/data/software/cr/crossfilter.json @@ -0,0 +1,8 @@ +{ + "slug": "crossfilter", + "name": "Crossfilter", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084882" + ] +} diff --git a/data/software/cr/crossftp.json b/data/software/cr/crossftp.json new file mode 100644 index 000000000000..22c0ddd706c4 --- /dev/null +++ b/data/software/cr/crossftp.json @@ -0,0 +1,8 @@ +{ + "slug": "crossftp", + "name": "CrossFTP", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16971542" + ] +} diff --git a/data/software/cr/crossguid.json b/data/software/cr/crossguid.json new file mode 100644 index 000000000000..6b81b6c3d7a2 --- /dev/null +++ b/data/software/cr/crossguid.json @@ -0,0 +1,11 @@ +{ + "slug": "crossguid", + "name": "crossguid", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974794" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/cr/crossig.json b/data/software/cr/crossig.json new file mode 100644 index 000000000000..cb7141aad596 --- /dev/null +++ b/data/software/cr/crossig.json @@ -0,0 +1,8 @@ +{ + "slug": "crossig", + "name": "Crossig", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18620194" + ] +} diff --git a/data/software/cr/crowd-kit.json b/data/software/cr/crowd-kit.json new file mode 100644 index 000000000000..f18cc90dee5d --- /dev/null +++ b/data/software/cr/crowd-kit.json @@ -0,0 +1,8 @@ +{ + "slug": "crowd-kit", + "name": "crowd-kit", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127485286" + ] +} diff --git a/data/software/cr/crowd.json b/data/software/cr/crowd.json new file mode 100644 index 000000000000..c24ebf49c379 --- /dev/null +++ b/data/software/cr/crowd.json @@ -0,0 +1,11 @@ +{ + "slug": "crowd", + "name": "Crowd", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q56759798" + ], + "developers": [ + "Atlassian" + ] +} diff --git a/data/software/cr/crowdmap.json b/data/software/cr/crowdmap.json new file mode 100644 index 000000000000..3d6782abc8c0 --- /dev/null +++ b/data/software/cr/crowdmap.json @@ -0,0 +1,8 @@ +{ + "slug": "crowdmap", + "name": "Crowdmap", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084883" + ] +} diff --git a/data/software/cr/crowdsource.json b/data/software/cr/crowdsource.json new file mode 100644 index 000000000000..2b83c8eb5fee --- /dev/null +++ b/data/software/cr/crowdsource.json @@ -0,0 +1,8 @@ +{ + "slug": "crowdsource", + "name": "Crowdsource", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q56346787" + ] +} diff --git a/data/software/cr/crucible-q5189793.json b/data/software/cr/crucible-q5189793.json new file mode 100644 index 000000000000..99aba6947234 --- /dev/null +++ b/data/software/cr/crucible-q5189793.json @@ -0,0 +1,8 @@ +{ + "slug": "crucible-q5189793", + "name": "Crucible", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5189793" + ] +} diff --git a/data/software/cr/crucible.json b/data/software/cr/crucible.json new file mode 100644 index 000000000000..c39c89c04605 --- /dev/null +++ b/data/software/cr/crucible.json @@ -0,0 +1,14 @@ +{ + "slug": "crucible", + "name": "Crucible", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5189794" + ], + "developers": [ + "Atlassian" + ], + "programming_languages": [ + "Java" + ] +} diff --git a/data/software/cr/crunchycleaner.json b/data/software/cr/crunchycleaner.json new file mode 100644 index 000000000000..6d8ff2975824 --- /dev/null +++ b/data/software/cr/crunchycleaner.json @@ -0,0 +1,17 @@ +{ + "slug": "crunchycleaner", + "name": "CrunchyCleaner", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137629725" + ], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [ + "Go" + ], + "licenses": [ + "Creative Commons Attribution 4.0 International" + ] +} diff --git a/data/software/cr/crx.json b/data/software/cr/crx.json new file mode 100644 index 000000000000..5c6570ab582b --- /dev/null +++ b/data/software/cr/crx.json @@ -0,0 +1,8 @@ +{ + "slug": "crx", + "name": "CRX", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5013957" + ] +} diff --git a/data/software/cr/cryptload.json b/data/software/cr/cryptload.json new file mode 100644 index 000000000000..404e6d9015f4 --- /dev/null +++ b/data/software/cr/cryptload.json @@ -0,0 +1,8 @@ +{ + "slug": "cryptload", + "name": "CryptLoad", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1142245" + ] +} diff --git a/data/software/cr/cryptograf.json b/data/software/cr/cryptograf.json new file mode 100644 index 000000000000..9a763873e384 --- /dev/null +++ b/data/software/cr/cryptograf.json @@ -0,0 +1,8 @@ +{ + "slug": "cryptograf", + "name": "CryptoGraf", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5190790" + ] +} diff --git a/data/software/cr/cryptopro.json b/data/software/cr/cryptopro.json new file mode 100644 index 000000000000..27cb046b882c --- /dev/null +++ b/data/software/cr/cryptopro.json @@ -0,0 +1,17 @@ +{ + "slug": "cryptopro", + "name": "CryptoPro", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4241171" + ], + "operating_systems": [ + "Solaris", + "macOS", + "Microsoft Windows", + "IBM AIX", + "Aurora OS", + "FreeBSD", + "iOS" + ] +} diff --git a/data/software/cr/cryptoverif.json b/data/software/cr/cryptoverif.json new file mode 100644 index 000000000000..0b691e463c89 --- /dev/null +++ b/data/software/cr/cryptoverif.json @@ -0,0 +1,11 @@ +{ + "slug": "cryptoverif", + "name": "CryptoVerif", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5190795" + ], + "programming_languages": [ + "OCaml" + ] +} diff --git a/data/software/cr/cryptowatch.json b/data/software/cr/cryptowatch.json new file mode 100644 index 000000000000..5547026aacf9 --- /dev/null +++ b/data/software/cr/cryptowatch.json @@ -0,0 +1,8 @@ +{ + "slug": "cryptowatch", + "name": "cryptowatch", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q47487590" + ] +} diff --git a/data/software/cr/crystal-analysis.json b/data/software/cr/crystal-analysis.json new file mode 100644 index 000000000000..6ad70ad4770d --- /dev/null +++ b/data/software/cr/crystal-analysis.json @@ -0,0 +1,11 @@ +{ + "slug": "crystal-analysis", + "name": "Crystal Analysis", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5191113" + ], + "developers": [ + "Seagate Software" + ] +} diff --git a/data/software/cr/crystal-enterprise.json b/data/software/cr/crystal-enterprise.json new file mode 100644 index 000000000000..a67360dd931e --- /dev/null +++ b/data/software/cr/crystal-enterprise.json @@ -0,0 +1,11 @@ +{ + "slug": "crystal-enterprise", + "name": "Crystal Enterprise", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5191185" + ], + "developers": [ + "Crystal Decisions" + ] +} diff --git a/data/software/cr/crystal-reports-q60815906.json b/data/software/cr/crystal-reports-q60815906.json new file mode 100644 index 000000000000..77cc469f721e --- /dev/null +++ b/data/software/cr/crystal-reports-q60815906.json @@ -0,0 +1,14 @@ +{ + "slug": "crystal-reports-q60815906", + "name": "Crystal Reports", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60815906" + ], + "developers": [ + "Crystal Decisions" + ], + "operating_systems": [ + "Windows 95" + ] +} diff --git a/data/software/cr/crystal-reports.json b/data/software/cr/crystal-reports.json new file mode 100644 index 000000000000..609326f0a4ed --- /dev/null +++ b/data/software/cr/crystal-reports.json @@ -0,0 +1,18 @@ +{ + "slug": "crystal-reports", + "name": "Crystal Reports", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1142403" + ], + "developers": [ + "SAP" + ], + "operating_systems": [ + "Microsoft Windows" + ], + "licenses": [ + "proprietary license", + "end-user license agreement" + ] +} diff --git a/data/software/cr/crystalexplorer.json b/data/software/cr/crystalexplorer.json new file mode 100644 index 000000000000..d56ba5fff0b4 --- /dev/null +++ b/data/software/cr/crystalexplorer.json @@ -0,0 +1,8 @@ +{ + "slug": "crystalexplorer", + "name": "CrystalExplorer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q104853830" + ] +} diff --git a/data/software/cr/crystbox.json b/data/software/cr/crystbox.json new file mode 100644 index 000000000000..02cd30292776 --- /dev/null +++ b/data/software/cr/crystbox.json @@ -0,0 +1,8 @@ +{ + "slug": "crystbox", + "name": "CrysTBox", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110251739" + ] +} diff --git a/data/software/cs/cs-rosetta.json b/data/software/cs/cs-rosetta.json new file mode 100644 index 000000000000..26d12df718c6 --- /dev/null +++ b/data/software/cs/cs-rosetta.json @@ -0,0 +1,8 @@ +{ + "slug": "cs-rosetta", + "name": "CS-ROSETTA", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5014009" + ] +} diff --git a/data/software/cs/cs-script.json b/data/software/cs/cs-script.json new file mode 100644 index 000000000000..cc9602cce4cb --- /dev/null +++ b/data/software/cs/cs-script.json @@ -0,0 +1,8 @@ +{ + "slug": "cs-script", + "name": "CS-Script", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5014010" + ] +} diff --git a/data/software/cs/cs23d.json b/data/software/cs/cs23d.json new file mode 100644 index 000000000000..781afe93aad0 --- /dev/null +++ b/data/software/cs/cs23d.json @@ -0,0 +1,11 @@ +{ + "slug": "cs23d", + "name": "CS23D", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17009524" + ], + "developers": [ + "University of Alberta" + ] +} diff --git a/data/software/cs/cshell.json b/data/software/cs/cshell.json new file mode 100644 index 000000000000..401bad8ab09c --- /dev/null +++ b/data/software/cs/cshell.json @@ -0,0 +1,8 @@ +{ + "slug": "cshell", + "name": "Cshell", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q30905185" + ] +} diff --git a/data/software/cs/csmith.json b/data/software/cs/csmith.json new file mode 100644 index 000000000000..05222867f308 --- /dev/null +++ b/data/software/cs/csmith.json @@ -0,0 +1,8 @@ +{ + "slug": "csmith", + "name": "Csmith", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q29364608" + ] +} diff --git a/data/software/cs/cspro.json b/data/software/cs/cspro.json new file mode 100644 index 000000000000..4bdb80a7e615 --- /dev/null +++ b/data/software/cs/cspro.json @@ -0,0 +1,8 @@ +{ + "slug": "cspro", + "name": "CSPro", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5014227" + ] +} diff --git a/data/software/cs/css3menu.json b/data/software/cs/css3menu.json new file mode 100644 index 000000000000..f4f25f5c52a4 --- /dev/null +++ b/data/software/cs/css3menu.json @@ -0,0 +1,8 @@ +{ + "slug": "css3menu", + "name": "CSS3Menu", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17623347" + ] +} diff --git a/data/software/cs/cstream.json b/data/software/cs/cstream.json new file mode 100644 index 000000000000..74ee4867f8c2 --- /dev/null +++ b/data/software/cs/cstream.json @@ -0,0 +1,8 @@ +{ + "slug": "cstream", + "name": "cstream", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065448" + ] +} diff --git a/data/software/cs/csv-reconcile.json b/data/software/cs/csv-reconcile.json new file mode 100644 index 000000000000..75871c315274 --- /dev/null +++ b/data/software/cs/csv-reconcile.json @@ -0,0 +1,11 @@ +{ + "slug": "csv-reconcile", + "name": "csv-reconcile", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113401035" + ], + "programming_languages": [ + "Python" + ] +} diff --git a/data/software/cs/csv-sort.json b/data/software/cs/csv-sort.json new file mode 100644 index 000000000000..2e805995f7e2 --- /dev/null +++ b/data/software/cs/csv-sort.json @@ -0,0 +1,8 @@ +{ + "slug": "csv-sort", + "name": "CSV Sort", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084884" + ] +} diff --git a/data/software/cs/csvlint.json b/data/software/cs/csvlint.json new file mode 100644 index 000000000000..33c4f27ed343 --- /dev/null +++ b/data/software/cs/csvlint.json @@ -0,0 +1,11 @@ +{ + "slug": "csvlint", + "name": "csvlint", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q54880870" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/ct/ctdb.json b/data/software/ct/ctdb.json new file mode 100644 index 000000000000..2b17dec70a48 --- /dev/null +++ b/data/software/ct/ctdb.json @@ -0,0 +1,8 @@ +{ + "slug": "ctdb", + "name": "CTDB", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5737513" + ] +} diff --git a/data/software/ct/cthumb.json b/data/software/ct/cthumb.json new file mode 100644 index 000000000000..e9aad9cf0c13 --- /dev/null +++ b/data/software/ct/cthumb.json @@ -0,0 +1,8 @@ +{ + "slug": "cthumb", + "name": "cthumb", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62851632" + ] +} diff --git a/data/software/ct/ctrader-codepilot.json b/data/software/ct/ctrader-codepilot.json new file mode 100644 index 000000000000..7cad9a7858cc --- /dev/null +++ b/data/software/ct/ctrader-codepilot.json @@ -0,0 +1,14 @@ +{ + "slug": "ctrader-codepilot", + "name": "cTrader CodePilot", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135651903" + ], + "developers": [ + "ClickAlgo(').\",abcd" + ], + "operating_systems": [ + "cross-platform" + ] +} diff --git a/data/software/cu/cu-dalos.json b/data/software/cu/cu-dalos.json new file mode 100644 index 000000000000..dc4ca18de347 --- /dev/null +++ b/data/software/cu/cu-dalos.json @@ -0,0 +1,8 @@ +{ + "slug": "cu-dalos", + "name": "Cuídalos", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q78288101" + ] +} diff --git a/data/software/cu/cu-writer.json b/data/software/cu/cu-writer.json new file mode 100644 index 000000000000..0649b74de7fd --- /dev/null +++ b/data/software/cu/cu-writer.json @@ -0,0 +1,8 @@ +{ + "slug": "cu-writer", + "name": "CU Writer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q13014608" + ] +} diff --git a/data/software/cu/cubepdf.json b/data/software/cu/cubepdf.json new file mode 100644 index 000000000000..7751705ef06a --- /dev/null +++ b/data/software/cu/cubepdf.json @@ -0,0 +1,11 @@ +{ + "slug": "cubepdf", + "name": "CubePDF", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17987943" + ], + "licenses": [ + "Apache License" + ] +} diff --git a/data/software/cu/cubeport.json b/data/software/cu/cubeport.json new file mode 100644 index 000000000000..972f90f12e99 --- /dev/null +++ b/data/software/cu/cubeport.json @@ -0,0 +1,8 @@ +{ + "slug": "cubeport", + "name": "CubePort", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5192199" + ] +} diff --git a/data/software/cu/cubes.json b/data/software/cu/cubes.json new file mode 100644 index 000000000000..6b3c6927b45b --- /dev/null +++ b/data/software/cu/cubes.json @@ -0,0 +1,11 @@ +{ + "slug": "cubes", + "name": "Cubes", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22907581" + ], + "programming_languages": [ + "Python" + ] +} diff --git a/data/software/cu/cuckoochess.json b/data/software/cu/cuckoochess.json new file mode 100644 index 000000000000..a4d377bf733a --- /dev/null +++ b/data/software/cu/cuckoochess.json @@ -0,0 +1,11 @@ +{ + "slug": "cuckoochess", + "name": "Cuckoochess", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q55608644" + ], + "programming_languages": [ + "Java" + ] +} diff --git a/data/software/cu/cuddlr.json b/data/software/cu/cuddlr.json new file mode 100644 index 000000000000..7c2d9cbb691c --- /dev/null +++ b/data/software/cu/cuddlr.json @@ -0,0 +1,8 @@ +{ + "slug": "cuddlr", + "name": "Cuddlr", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q19892285" + ] +} diff --git a/data/software/cu/cue-language.json b/data/software/cu/cue-language.json new file mode 100644 index 000000000000..f15b5c76b4ca --- /dev/null +++ b/data/software/cu/cue-language.json @@ -0,0 +1,8 @@ +{ + "slug": "cue-language", + "name": "cue.language", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084885" + ] +} diff --git a/data/software/cu/cue.json b/data/software/cu/cue.json new file mode 100644 index 000000000000..871ed863eb74 --- /dev/null +++ b/data/software/cu/cue.json @@ -0,0 +1,14 @@ +{ + "slug": "cue", + "name": "CUE", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116962956" + ], + "developers": [ + "Marcel van Lohuizen" + ], + "licenses": [ + "Apache Software License 2.0" + ] +} diff --git a/data/software/cu/cufflinks.json b/data/software/cu/cufflinks.json new file mode 100644 index 000000000000..167552acb47c --- /dev/null +++ b/data/software/cu/cufflinks.json @@ -0,0 +1,11 @@ +{ + "slug": "cufflinks", + "name": "Cufflinks", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122830193" + ], + "licenses": [ + "Boost Software License" + ] +} diff --git a/data/software/cu/cuisine-libre.json b/data/software/cu/cuisine-libre.json new file mode 100644 index 000000000000..dd87b152f750 --- /dev/null +++ b/data/software/cu/cuisine-libre.json @@ -0,0 +1,8 @@ +{ + "slug": "cuisine-libre", + "name": "Cuisine Libre", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q98732121" + ] +} diff --git a/data/software/cu/cul.json b/data/software/cu/cul.json new file mode 100644 index 000000000000..81594d963295 --- /dev/null +++ b/data/software/cu/cul.json @@ -0,0 +1,15 @@ +{ + "slug": "cul", + "name": "CUL", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11194176" + ], + "release_date": "2011-12-22", + "developers": [ + "Internet Co." + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/cu/culinary-explorer.json b/data/software/cu/culinary-explorer.json new file mode 100644 index 000000000000..c81313deca82 --- /dev/null +++ b/data/software/cu/culinary-explorer.json @@ -0,0 +1,17 @@ +{ + "slug": "culinary-explorer", + "name": "Culinary Explorer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139043906" + ], + "developers": [ + "Sapient Technology Group" + ], + "publishers": [ + "Sapient Technology Group" + ], + "genres": [ + "cooking" + ] +} diff --git a/data/software/cu/culturalanalytics.json b/data/software/cu/culturalanalytics.json new file mode 100644 index 000000000000..16a16fcc2e02 --- /dev/null +++ b/data/software/cu/culturalanalytics.json @@ -0,0 +1,8 @@ +{ + "slug": "culturalanalytics", + "name": "CulturalAnalytics", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084886" + ] +} diff --git a/data/software/cu/cummerbund.json b/data/software/cu/cummerbund.json new file mode 100644 index 000000000000..54cad8eb8e2b --- /dev/null +++ b/data/software/cu/cummerbund.json @@ -0,0 +1,13 @@ +{ + "slug": "cummerbund", + "name": "cummeRbund", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122830233" + ], + "developers": [ + "Cole Trapnell", + "David Kelly", + "Loyal Goff" + ] +} diff --git a/data/software/cu/cumulus-linux.json b/data/software/cu/cumulus-linux.json new file mode 100644 index 000000000000..dc774cb391da --- /dev/null +++ b/data/software/cu/cumulus-linux.json @@ -0,0 +1,11 @@ +{ + "slug": "cumulus-linux", + "name": "Cumulus Linux", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q21655365" + ], + "developers": [ + "Cumulus Networks" + ] +} diff --git a/data/software/cu/cumulus.json b/data/software/cu/cumulus.json new file mode 100644 index 000000000000..3a8d5ffbabc2 --- /dev/null +++ b/data/software/cu/cumulus.json @@ -0,0 +1,8 @@ +{ + "slug": "cumulus", + "name": "Cumulus", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1033826" + ] +} diff --git a/data/software/cu/cupl.json b/data/software/cu/cupl.json new file mode 100644 index 000000000000..4cb39e1756d1 --- /dev/null +++ b/data/software/cu/cupl.json @@ -0,0 +1,11 @@ +{ + "slug": "cupl", + "name": "CUPL", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q12360486" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/cu/cups-pdf.json b/data/software/cu/cups-pdf.json new file mode 100644 index 000000000000..a329f451f32d --- /dev/null +++ b/data/software/cu/cups-pdf.json @@ -0,0 +1,8 @@ +{ + "slug": "cups-pdf", + "name": "Cups-pdf", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25049186" + ] +} diff --git a/data/software/cu/cupy.json b/data/software/cu/cupy.json new file mode 100644 index 000000000000..b160340cde7e --- /dev/null +++ b/data/software/cu/cupy.json @@ -0,0 +1,14 @@ +{ + "slug": "cupy", + "name": "CuPy", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112872195" + ], + "developers": [ + "Preferred Networks" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/cu/curacy.json b/data/software/cu/curacy.json new file mode 100644 index 000000000000..1bf77ff878c3 --- /dev/null +++ b/data/software/cu/curacy.json @@ -0,0 +1,8 @@ +{ + "slug": "curacy", + "name": "Curacy", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139884674" + ] +} diff --git a/data/software/cu/curies.json b/data/software/cu/curies.json new file mode 100644 index 000000000000..0aec6d6f2df8 --- /dev/null +++ b/data/software/cu/curies.json @@ -0,0 +1,14 @@ +{ + "slug": "curies", + "name": "curies", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116738064" + ], + "programming_languages": [ + "Python" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/cu/curl-loader.json b/data/software/cu/curl-loader.json new file mode 100644 index 000000000000..923e4fb8991f --- /dev/null +++ b/data/software/cu/curl-loader.json @@ -0,0 +1,11 @@ +{ + "slug": "curl-loader", + "name": "Curl-loader", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5194807" + ], + "licenses": [ + "GNU General Public License, version 2.0" + ] +} diff --git a/data/software/cu/currency-converter.json b/data/software/cu/currency-converter.json new file mode 100644 index 000000000000..94eea87129a5 --- /dev/null +++ b/data/software/cu/currency-converter.json @@ -0,0 +1,8 @@ +{ + "slug": "currency-converter", + "name": "currency converter", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5195005" + ] +} diff --git a/data/software/cu/custom-cast.json b/data/software/cu/custom-cast.json new file mode 100644 index 000000000000..fd1fc8dd83cc --- /dev/null +++ b/data/software/cu/custom-cast.json @@ -0,0 +1,15 @@ +{ + "slug": "custom-cast", + "name": "CUSTOM CAST", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60986526" + ], + "release_date": "2018-10-03", + "developers": [ + "Dwango" + ], + "operating_systems": [ + "iOS" + ] +} diff --git a/data/software/cu/custom-virtual-keyboard.json b/data/software/cu/custom-virtual-keyboard.json new file mode 100644 index 000000000000..01fd38d73fde --- /dev/null +++ b/data/software/cu/custom-virtual-keyboard.json @@ -0,0 +1,8 @@ +{ + "slug": "custom-virtual-keyboard", + "name": "Custom Virtual Keyboard", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3007909" + ] +} diff --git a/data/software/cu/customer-account-data-engine.json b/data/software/cu/customer-account-data-engine.json new file mode 100644 index 000000000000..dd003aa738f5 --- /dev/null +++ b/data/software/cu/customer-account-data-engine.json @@ -0,0 +1,11 @@ +{ + "slug": "customer-account-data-engine", + "name": "Customer Account Data Engine", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5196430" + ], + "programming_languages": [ + "Java" + ] +} diff --git a/data/software/cu/customerhero.json b/data/software/cu/customerhero.json new file mode 100644 index 000000000000..4daee90aa198 --- /dev/null +++ b/data/software/cu/customerhero.json @@ -0,0 +1,11 @@ +{ + "slug": "customerhero", + "name": "CustomerHero", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134955293" + ], + "developers": [ + "CustomerHero" + ] +} diff --git a/data/software/cu/cutepdf.json b/data/software/cu/cutepdf.json new file mode 100644 index 000000000000..929f1316639b --- /dev/null +++ b/data/software/cu/cutepdf.json @@ -0,0 +1,8 @@ +{ + "slug": "cutepdf", + "name": "CutePDF", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2311366" + ] +} diff --git a/data/software/cu/cutepeaks.json b/data/software/cu/cutepeaks.json new file mode 100644 index 000000000000..32895cf1a184 --- /dev/null +++ b/data/software/cu/cutepeaks.json @@ -0,0 +1,11 @@ +{ + "slug": "cutepeaks", + "name": "CutePeaks", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131362362" + ], + "licenses": [ + "GNU General Public License, version 3.0" + ] +} diff --git a/data/software/cu/cuter.json b/data/software/cu/cuter.json new file mode 100644 index 000000000000..3c8f77d43631 --- /dev/null +++ b/data/software/cu/cuter.json @@ -0,0 +1,11 @@ +{ + "slug": "cuter", + "name": "CUTEr", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5014732" + ], + "licenses": [ + "open source" + ] +} diff --git a/data/software/cv/cviptools.json b/data/software/cv/cviptools.json new file mode 100644 index 000000000000..2f2726a377ba --- /dev/null +++ b/data/software/cv/cviptools.json @@ -0,0 +1,11 @@ +{ + "slug": "cviptools", + "name": "CVIPtools", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17009656" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/cv/cvm.json b/data/software/cv/cvm.json new file mode 100644 index 000000000000..6426ec35800e --- /dev/null +++ b/data/software/cv/cvm.json @@ -0,0 +1,8 @@ +{ + "slug": "cvm", + "name": "cvm", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62851628" + ] +} diff --git a/data/software/cv/cvs-fast-export.json b/data/software/cv/cvs-fast-export.json new file mode 100644 index 000000000000..1af69da02fce --- /dev/null +++ b/data/software/cv/cvs-fast-export.json @@ -0,0 +1,8 @@ +{ + "slug": "cvs-fast-export", + "name": "cvs-fast-export", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62847759" + ] +} diff --git a/data/software/cv/cvs2svn.json b/data/software/cv/cvs2svn.json new file mode 100644 index 000000000000..2bb46bdd714d --- /dev/null +++ b/data/software/cv/cvs2svn.json @@ -0,0 +1,8 @@ +{ + "slug": "cvs2svn", + "name": "cvs2svn", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62847771" + ] +} diff --git a/data/software/cv/cvsd.json b/data/software/cv/cvsd.json new file mode 100644 index 000000000000..69d47168e4de --- /dev/null +++ b/data/software/cv/cvsd.json @@ -0,0 +1,8 @@ +{ + "slug": "cvsd", + "name": "cvsd", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62846402" + ] +} diff --git a/data/software/cv/cvsgraph.json b/data/software/cv/cvsgraph.json new file mode 100644 index 000000000000..33512f0b8083 --- /dev/null +++ b/data/software/cv/cvsgraph.json @@ -0,0 +1,8 @@ +{ + "slug": "cvsgraph", + "name": "CvsGraph", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62846412" + ] +} diff --git a/data/software/cv/cvsps.json b/data/software/cv/cvsps.json new file mode 100644 index 000000000000..21a6ce5575c4 --- /dev/null +++ b/data/software/cv/cvsps.json @@ -0,0 +1,8 @@ +{ + "slug": "cvsps", + "name": "CVSps", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62847781" + ] +} diff --git a/data/software/cv/cvsync.json b/data/software/cv/cvsync.json new file mode 100644 index 000000000000..88b202b2644d --- /dev/null +++ b/data/software/cv/cvsync.json @@ -0,0 +1,11 @@ +{ + "slug": "cvsync", + "name": "cvsync", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974796" + ], + "licenses": [ + "3-clause BSD License" + ] +} diff --git a/data/software/cw/cway.json b/data/software/cw/cway.json new file mode 100644 index 000000000000..69200eb86371 --- /dev/null +++ b/data/software/cw/cway.json @@ -0,0 +1,8 @@ +{ + "slug": "cway", + "name": "Cway", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138658367" + ] +} diff --git a/data/software/cw/cwdiff.json b/data/software/cw/cwdiff.json new file mode 100644 index 000000000000..3eca09f30b09 --- /dev/null +++ b/data/software/cw/cwdiff.json @@ -0,0 +1,8 @@ +{ + "slug": "cwdiff", + "name": "cwdiff", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974797" + ] +} diff --git a/data/software/cw/cwm.json b/data/software/cw/cwm.json new file mode 100644 index 000000000000..747fd5dc37ce --- /dev/null +++ b/data/software/cw/cwm.json @@ -0,0 +1,13 @@ +{ + "slug": "cwm", + "name": "Cwm", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5197177" + ], + "operating_systems": [ + "OS X Mavericks", + "FreeBSD", + "OpenBSD" + ] +} diff --git a/data/software/cw/cwrsync.json b/data/software/cw/cwrsync.json new file mode 100644 index 000000000000..a1449801c8b8 --- /dev/null +++ b/data/software/cw/cwrsync.json @@ -0,0 +1,8 @@ +{ + "slug": "cwrsync", + "name": "cwRsync", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4036786" + ] +} diff --git a/data/software/cw/cwshredder.json b/data/software/cw/cwshredder.json new file mode 100644 index 000000000000..7cd25ea81260 --- /dev/null +++ b/data/software/cw/cwshredder.json @@ -0,0 +1,8 @@ +{ + "slug": "cwshredder", + "name": "CWShredder", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5014862" + ] +} diff --git a/data/software/cw/cwtch-im.json b/data/software/cw/cwtch-im.json new file mode 100644 index 000000000000..c5c89b79fc7d --- /dev/null +++ b/data/software/cw/cwtch-im.json @@ -0,0 +1,14 @@ +{ + "slug": "cwtch-im", + "name": "Cwtch.im", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125317880" + ], + "developers": [ + "Open Privacy" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/cy/cyana.json b/data/software/cy/cyana.json new file mode 100644 index 000000000000..900563055714 --- /dev/null +++ b/data/software/cy/cyana.json @@ -0,0 +1,8 @@ +{ + "slug": "cyana", + "name": "CYANA", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5014908" + ] +} diff --git a/data/software/cy/cyber-chief.json b/data/software/cy/cyber-chief.json new file mode 100644 index 000000000000..c8ff8296ca7c --- /dev/null +++ b/data/software/cy/cyber-chief.json @@ -0,0 +1,11 @@ +{ + "slug": "cyber-chief", + "name": "Cyber Chief", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118646226" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/cy/cyber-diva.json b/data/software/cy/cyber-diva.json new file mode 100644 index 000000000000..d12b0fbe26f5 --- /dev/null +++ b/data/software/cy/cyber-diva.json @@ -0,0 +1,9 @@ +{ + "slug": "cyber-diva", + "name": "Cyber Diva", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25245534" + ], + "release_date": "2015-02-04" +} diff --git a/data/software/cy/cyber-songman.json b/data/software/cy/cyber-songman.json new file mode 100644 index 000000000000..e719a526a8ac --- /dev/null +++ b/data/software/cy/cyber-songman.json @@ -0,0 +1,8 @@ +{ + "slug": "cyber-songman", + "name": "Cyber Songman", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q41658509" + ] +} diff --git a/data/software/cy/cyber-studio-cad-3d.json b/data/software/cy/cyber-studio-cad-3d.json new file mode 100644 index 000000000000..a9811aac5dbb --- /dev/null +++ b/data/software/cy/cyber-studio-cad-3d.json @@ -0,0 +1,14 @@ +{ + "slug": "cyber-studio-cad-3d", + "name": "Cyber Studio CAD-3D", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5197734" + ], + "developers": [ + "Antic Software" + ], + "operating_systems": [ + "Atari TOS" + ] +} diff --git a/data/software/cy/cyberdog.json b/data/software/cy/cyberdog.json new file mode 100644 index 000000000000..4e149a0e1659 --- /dev/null +++ b/data/software/cy/cyberdog.json @@ -0,0 +1,15 @@ +{ + "slug": "cyberdog", + "name": "Cyberdog", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1147130" + ], + "release_date": "1996-02-01", + "developers": [ + "Apple Inc." + ], + "operating_systems": [ + "Classic Mac OS" + ] +} diff --git a/data/software/cy/cyberextension.json b/data/software/cy/cyberextension.json new file mode 100644 index 000000000000..29d4f578d748 --- /dev/null +++ b/data/software/cy/cyberextension.json @@ -0,0 +1,8 @@ +{ + "slug": "cyberextension", + "name": "CyberExtension", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5197681" + ] +} diff --git a/data/software/cy/cyberghost-vpn.json b/data/software/cy/cyberghost-vpn.json new file mode 100644 index 000000000000..dacf2976b2c4 --- /dev/null +++ b/data/software/cy/cyberghost-vpn.json @@ -0,0 +1,8 @@ +{ + "slug": "cyberghost-vpn", + "name": "CyberGhost VPN", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q15804138" + ] +} diff --git a/data/software/cy/cyberlink-media-suite.json b/data/software/cy/cyberlink-media-suite.json new file mode 100644 index 000000000000..b58dad3019d4 --- /dev/null +++ b/data/software/cy/cyberlink-media-suite.json @@ -0,0 +1,11 @@ +{ + "slug": "cyberlink-media-suite", + "name": "CyberLink Media Suite", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3011502" + ], + "developers": [ + "CyberLink" + ] +} diff --git a/data/software/cy/cyberlink-mediashow.json b/data/software/cy/cyberlink-mediashow.json new file mode 100644 index 000000000000..ea2783bea3df --- /dev/null +++ b/data/software/cy/cyberlink-mediashow.json @@ -0,0 +1,11 @@ +{ + "slug": "cyberlink-mediashow", + "name": "CyberLink MediaShow", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1304521" + ], + "developers": [ + "CyberLink" + ] +} diff --git a/data/software/cy/cybertracker.json b/data/software/cy/cybertracker.json new file mode 100644 index 000000000000..43191f33bf58 --- /dev/null +++ b/data/software/cy/cybertracker.json @@ -0,0 +1,14 @@ +{ + "slug": "cybertracker", + "name": "CyberTracker", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1147213" + ], + "operating_systems": [ + "iOS" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/cy/cycada.json b/data/software/cy/cycada.json new file mode 100644 index 000000000000..a189b1a38150 --- /dev/null +++ b/data/software/cy/cycada.json @@ -0,0 +1,8 @@ +{ + "slug": "cycada", + "name": "Cycada", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16988527" + ] +} diff --git a/data/software/cy/cyclescape.json b/data/software/cy/cyclescape.json new file mode 100644 index 000000000000..931dda7ec784 --- /dev/null +++ b/data/software/cy/cyclescape.json @@ -0,0 +1,11 @@ +{ + "slug": "cyclescape", + "name": "Cyclescape", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135434732" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/cy/cycliqplus-firmware-updater.json b/data/software/cy/cycliqplus-firmware-updater.json new file mode 100644 index 000000000000..470f2823fa07 --- /dev/null +++ b/data/software/cy/cycliqplus-firmware-updater.json @@ -0,0 +1,11 @@ +{ + "slug": "cycliqplus-firmware-updater", + "name": "CycliqPlus Firmware Updater", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107329143" + ], + "developers": [ + "Cycliq Products Pty. Ltd." + ] +} diff --git a/data/software/cy/cycliqplus-for-desktop.json b/data/software/cy/cycliqplus-for-desktop.json new file mode 100644 index 000000000000..b35c861f4774 --- /dev/null +++ b/data/software/cy/cycliqplus-for-desktop.json @@ -0,0 +1,15 @@ +{ + "slug": "cycliqplus-for-desktop", + "name": "CycliqPlus for Desktop", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107329026" + ], + "developers": [ + "Cycliq Products Pty. Ltd." + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/software/cy/cyclo.json b/data/software/cy/cyclo.json new file mode 100644 index 000000000000..746096ce6847 --- /dev/null +++ b/data/software/cy/cyclo.json @@ -0,0 +1,11 @@ +{ + "slug": "cyclo", + "name": "cyclo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974799" + ], + "licenses": [ + "GNU General Public License, version 2.0" + ] +} diff --git a/data/software/cy/cyclopedia.json b/data/software/cy/cyclopedia.json new file mode 100644 index 000000000000..00fe51767c7e --- /dev/null +++ b/data/software/cy/cyclopedia.json @@ -0,0 +1,8 @@ +{ + "slug": "cyclopedia", + "name": "Cyclopedia", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5198923" + ] +} diff --git a/data/software/cy/cycloramic.json b/data/software/cy/cycloramic.json new file mode 100644 index 000000000000..a4fea904d9de --- /dev/null +++ b/data/software/cy/cycloramic.json @@ -0,0 +1,9 @@ +{ + "slug": "cycloramic", + "name": "Cycloramic", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11195115" + ], + "release_date": "2012-12-20" +} diff --git a/data/software/cy/cyma.json b/data/software/cy/cyma.json new file mode 100644 index 000000000000..01a7cd6769ce --- /dev/null +++ b/data/software/cy/cyma.json @@ -0,0 +1,8 @@ +{ + "slug": "cyma", + "name": "CYMA", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106282596" + ] +} diff --git a/data/software/cy/cyphal.json b/data/software/cy/cyphal.json new file mode 100644 index 000000000000..b638d23858b9 --- /dev/null +++ b/data/software/cy/cyphal.json @@ -0,0 +1,12 @@ +{ + "slug": "cyphal", + "name": "Cyphal", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q33106548" + ], + "release_date": "2014-01-01", + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/cy/cypherpunk-anonymous-remailer.json b/data/software/cy/cypherpunk-anonymous-remailer.json new file mode 100644 index 000000000000..fd6cecddf683 --- /dev/null +++ b/data/software/cy/cypherpunk-anonymous-remailer.json @@ -0,0 +1,8 @@ +{ + "slug": "cypherpunk-anonymous-remailer", + "name": "cypherpunk anonymous remailer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1148190" + ] +} diff --git a/data/software/cy/cypress.json b/data/software/cy/cypress.json new file mode 100644 index 000000000000..ef136d5fbb6d --- /dev/null +++ b/data/software/cy/cypress.json @@ -0,0 +1,11 @@ +{ + "slug": "cypress", + "name": "Cypress", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115978662" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/cy/cyverse.json b/data/software/cy/cyverse.json new file mode 100644 index 000000000000..2beb0c33b43d --- /dev/null +++ b/data/software/cy/cyverse.json @@ -0,0 +1,8 @@ +{ + "slug": "cyverse", + "name": "CyVerse", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122585695" + ] +} diff --git a/data/software/d-/d-crypthon.json b/data/software/d-/d-crypthon.json new file mode 100644 index 000000000000..a919975ab81a --- /dev/null +++ b/data/software/d-/d-crypthon.json @@ -0,0 +1,8 @@ +{ + "slug": "d-crypthon", + "name": "Décrypthon", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3042989" + ] +} diff --git a/data/software/d-/d-d-insider.json b/data/software/d-/d-d-insider.json new file mode 100644 index 000000000000..e41dfdf922bb --- /dev/null +++ b/data/software/d-/d-d-insider.json @@ -0,0 +1,12 @@ +{ + "slug": "d-d-insider", + "name": "D&D Insider", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5203009" + ], + "release_date": "2007-01-01", + "developers": [ + "Wizards of the Coast" + ] +} diff --git a/data/software/d-/d-rif-d-rivation-en-fran-ais.json b/data/software/d-/d-rif-d-rivation-en-fran-ais.json new file mode 100644 index 000000000000..e975e84421ef --- /dev/null +++ b/data/software/d-/d-rif-d-rivation-en-fran-ais.json @@ -0,0 +1,8 @@ +{ + "slug": "d-rif-d-rivation-en-fran-ais", + "name": "DériF (Dérivation en Français)", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084912" + ] +} diff --git a/data/software/d3/d3dmetal.json b/data/software/d3/d3dmetal.json new file mode 100644 index 000000000000..a710b3fb762f --- /dev/null +++ b/data/software/d3/d3dmetal.json @@ -0,0 +1,8 @@ +{ + "slug": "d3dmetal", + "name": "D3DMetal", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q119292796" + ] +} diff --git a/data/software/da/daa2iso.json b/data/software/da/daa2iso.json new file mode 100644 index 000000000000..fe09a348ae6e --- /dev/null +++ b/data/software/da/daa2iso.json @@ -0,0 +1,8 @@ +{ + "slug": "daa2iso", + "name": "DAA2ISO", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62846429" + ] +} diff --git a/data/software/da/dabbler.json b/data/software/da/dabbler.json new file mode 100644 index 000000000000..c020e81ac59b --- /dev/null +++ b/data/software/da/dabbler.json @@ -0,0 +1,8 @@ +{ + "slug": "dabbler", + "name": "Dabbler", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5207443" + ] +} diff --git a/data/software/da/dacy.json b/data/software/da/dacy.json new file mode 100644 index 000000000000..4b10e15b17fb --- /dev/null +++ b/data/software/da/dacy.json @@ -0,0 +1,11 @@ +{ + "slug": "dacy", + "name": "DaCy", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084888" + ], + "licenses": [ + "Apache Software License 2.0" + ] +} diff --git a/data/software/da/daedalmap.json b/data/software/da/daedalmap.json new file mode 100644 index 000000000000..dd6622c6b99b --- /dev/null +++ b/data/software/da/daedalmap.json @@ -0,0 +1,14 @@ +{ + "slug": "daedalmap", + "name": "DaedalMap", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138775675" + ], + "programming_languages": [ + "Python" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/da/daemon-tools.json b/data/software/da/daemon-tools.json new file mode 100644 index 000000000000..82da93a04d04 --- /dev/null +++ b/data/software/da/daemon-tools.json @@ -0,0 +1,15 @@ +{ + "slug": "daemon-tools", + "name": "Daemon Tools", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q874892" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "licenses": [ + "shareware" + ] +} diff --git a/data/software/da/daemon-vector.json b/data/software/da/daemon-vector.json new file mode 100644 index 000000000000..14dd494743d5 --- /dev/null +++ b/data/software/da/daemon-vector.json @@ -0,0 +1,8 @@ +{ + "slug": "daemon-vector", + "name": "Daemon Vector", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140355843" + ] +} diff --git a/data/software/da/daemonize.json b/data/software/da/daemonize.json new file mode 100644 index 000000000000..daf6dacaa560 --- /dev/null +++ b/data/software/da/daemonize.json @@ -0,0 +1,12 @@ +{ + "slug": "daemonize", + "name": "daemonize", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113574827" + ], + "operating_systems": [ + "Unix-like operating system", + "macOS" + ] +} diff --git a/data/software/da/daemontools-encore.json b/data/software/da/daemontools-encore.json new file mode 100644 index 000000000000..78177852348d --- /dev/null +++ b/data/software/da/daemontools-encore.json @@ -0,0 +1,8 @@ +{ + "slug": "daemontools-encore", + "name": "daemontools-encore", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131574553" + ] +} diff --git a/data/software/da/daftar.json b/data/software/da/daftar.json new file mode 100644 index 000000000000..ef756384033d --- /dev/null +++ b/data/software/da/daftar.json @@ -0,0 +1,8 @@ +{ + "slug": "daftar", + "name": "Daftar", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139954229" + ] +} diff --git a/data/software/da/daime-package-for-r.json b/data/software/da/daime-package-for-r.json new file mode 100644 index 000000000000..82750d7ceea0 --- /dev/null +++ b/data/software/da/daime-package-for-r.json @@ -0,0 +1,9 @@ +{ + "slug": "daime-package-for-r", + "name": "DAIME package for R", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125695238" + ], + "release_date": "2020-03-10" +} diff --git a/data/software/da/daina.json b/data/software/da/daina.json new file mode 100644 index 000000000000..0c2548ae9259 --- /dev/null +++ b/data/software/da/daina.json @@ -0,0 +1,9 @@ +{ + "slug": "daina", + "name": "Daina", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25339794" + ], + "release_date": "2015-11-20" +} diff --git a/data/software/da/dairia-ia.json b/data/software/da/dairia-ia.json new file mode 100644 index 000000000000..aab74818a3c0 --- /dev/null +++ b/data/software/da/dairia-ia.json @@ -0,0 +1,11 @@ +{ + "slug": "dairia-ia", + "name": "Dairia IA", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140360866" + ], + "developers": [ + "Dairia Avocats" + ] +} diff --git a/data/software/da/daisydisk.json b/data/software/da/daisydisk.json new file mode 100644 index 000000000000..41d2a15873d3 --- /dev/null +++ b/data/software/da/daisydisk.json @@ -0,0 +1,12 @@ +{ + "slug": "daisydisk", + "name": "DaisyDisk", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5209674" + ], + "release_date": "2008-01-01", + "operating_systems": [ + "macOS" + ] +} diff --git a/data/software/da/dakhl-o-kharj.json b/data/software/da/dakhl-o-kharj.json new file mode 100644 index 000000000000..6b8455589240 --- /dev/null +++ b/data/software/da/dakhl-o-kharj.json @@ -0,0 +1,11 @@ +{ + "slug": "dakhl-o-kharj", + "name": "Dakhl o Kharj", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138388650" + ], + "developers": [ + "TaxiApps" + ] +} diff --git a/data/software/da/daksh902.json b/data/software/da/daksh902.json new file mode 100644 index 000000000000..0749578054dd --- /dev/null +++ b/data/software/da/daksh902.json @@ -0,0 +1,8 @@ +{ + "slug": "daksh902", + "name": "Daksh902", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140323204" + ] +} diff --git a/data/software/da/dalton.json b/data/software/da/dalton.json new file mode 100644 index 000000000000..8be47c25e426 --- /dev/null +++ b/data/software/da/dalton.json @@ -0,0 +1,14 @@ +{ + "slug": "dalton", + "name": "Dalton", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5211666" + ], + "programming_languages": [ + "Fortran" + ], + "licenses": [ + "GNU Lesser General Public License, version 2.1" + ] +} diff --git a/data/software/da/dalvik-turbo-virtual-machine.json b/data/software/da/dalvik-turbo-virtual-machine.json new file mode 100644 index 000000000000..acdfb5302108 --- /dev/null +++ b/data/software/da/dalvik-turbo-virtual-machine.json @@ -0,0 +1,11 @@ +{ + "slug": "dalvik-turbo-virtual-machine", + "name": "Dalvik Turbo virtual machine", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16241347" + ], + "developers": [ + "Myriad Group" + ] +} diff --git a/data/software/da/damos.json b/data/software/da/damos.json new file mode 100644 index 000000000000..31d9fc7949b4 --- /dev/null +++ b/data/software/da/damos.json @@ -0,0 +1,8 @@ +{ + "slug": "damos", + "name": "Damos", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76178939" + ] +} diff --git a/data/software/da/dance-party.json b/data/software/da/dance-party.json new file mode 100644 index 000000000000..fc8ee5335d61 --- /dev/null +++ b/data/software/da/dance-party.json @@ -0,0 +1,15 @@ +{ + "slug": "dance-party", + "name": "Dance Party", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140199229" + ], + "release_date": "2026-06-06", + "developers": [ + "Chris Doyle" + ], + "operating_systems": [ + "tvOS" + ] +} diff --git a/data/software/da/daos.json b/data/software/da/daos.json new file mode 100644 index 000000000000..28acdaa5e7cf --- /dev/null +++ b/data/software/da/daos.json @@ -0,0 +1,8 @@ +{ + "slug": "daos", + "name": "Daos", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138007144" + ] +} diff --git a/data/software/da/darcmail.json b/data/software/da/darcmail.json new file mode 100644 index 000000000000..0f4fc676956a --- /dev/null +++ b/data/software/da/darcmail.json @@ -0,0 +1,14 @@ +{ + "slug": "darcmail", + "name": "DArcMail", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q82723232" + ], + "developers": [ + "Smithsonian Institution Archives" + ], + "programming_languages": [ + "Python" + ] +} diff --git a/data/software/da/daria-s-sick-sad-life-planner.json b/data/software/da/daria-s-sick-sad-life-planner.json new file mode 100644 index 000000000000..89a1cd715634 --- /dev/null +++ b/data/software/da/daria-s-sick-sad-life-planner.json @@ -0,0 +1,15 @@ +{ + "slug": "daria-s-sick-sad-life-planner", + "name": "Daria's Sick, Sad Life Planner", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16989106" + ], + "release_date": "1999-01-01", + "developers": [ + "Hypnotix" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/da/dariah-de-collection-registry.json b/data/software/da/dariah-de-collection-registry.json new file mode 100644 index 000000000000..9abfbb6f44d2 --- /dev/null +++ b/data/software/da/dariah-de-collection-registry.json @@ -0,0 +1,8 @@ +{ + "slug": "dariah-de-collection-registry", + "name": "DARIAH-DE Collection Registry", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084889" + ] +} diff --git a/data/software/da/dariah-de-data-modeling-environment.json b/data/software/da/dariah-de-data-modeling-environment.json new file mode 100644 index 000000000000..e8ee2ff616e9 --- /dev/null +++ b/data/software/da/dariah-de-data-modeling-environment.json @@ -0,0 +1,8 @@ +{ + "slug": "dariah-de-data-modeling-environment", + "name": "DARIAH-DE Data Modeling Environment", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084890" + ] +} diff --git a/data/software/da/dariah-de-generic-search.json b/data/software/da/dariah-de-generic-search.json new file mode 100644 index 000000000000..103db85c5563 --- /dev/null +++ b/data/software/da/dariah-de-generic-search.json @@ -0,0 +1,8 @@ +{ + "slug": "dariah-de-generic-search", + "name": "DARIAH-DE Generic Search", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084892" + ] +} diff --git a/data/software/da/dariah-de-hedgedoc.json b/data/software/da/dariah-de-hedgedoc.json new file mode 100644 index 000000000000..244fd3138592 --- /dev/null +++ b/data/software/da/dariah-de-hedgedoc.json @@ -0,0 +1,8 @@ +{ + "slug": "dariah-de-hedgedoc", + "name": "DARIAH-DE Hedgedoc", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084893" + ] +} diff --git a/data/software/da/dariah-de-mailing-lists.json b/data/software/da/dariah-de-mailing-lists.json new file mode 100644 index 000000000000..a3bac91a5018 --- /dev/null +++ b/data/software/da/dariah-de-mailing-lists.json @@ -0,0 +1,8 @@ +{ + "slug": "dariah-de-mailing-lists", + "name": "DARIAH-DE Mailing lists", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084895" + ] +} diff --git a/data/software/da/dariah-de-openproject.json b/data/software/da/dariah-de-openproject.json new file mode 100644 index 000000000000..0b97014d2871 --- /dev/null +++ b/data/software/da/dariah-de-openproject.json @@ -0,0 +1,8 @@ +{ + "slug": "dariah-de-openproject", + "name": "DARIAH-DE OpenProject", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084896" + ] +} diff --git a/data/software/da/dariah-de-publikator.json b/data/software/da/dariah-de-publikator.json new file mode 100644 index 000000000000..e6d006e498a5 --- /dev/null +++ b/data/software/da/dariah-de-publikator.json @@ -0,0 +1,8 @@ +{ + "slug": "dariah-de-publikator", + "name": "DARIAH-DE Publikator", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084897" + ] +} diff --git a/data/software/da/dariah-de-repository-dhrep.json b/data/software/da/dariah-de-repository-dhrep.json new file mode 100644 index 000000000000..a8f42a6456a8 --- /dev/null +++ b/data/software/da/dariah-de-repository-dhrep.json @@ -0,0 +1,8 @@ +{ + "slug": "dariah-de-repository-dhrep", + "name": "DARIAH-DE Repository dhrep", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084898" + ] +} diff --git a/data/software/da/dariah-de-survey-provisioning.json b/data/software/da/dariah-de-survey-provisioning.json new file mode 100644 index 000000000000..075d3564b200 --- /dev/null +++ b/data/software/da/dariah-de-survey-provisioning.json @@ -0,0 +1,8 @@ +{ + "slug": "dariah-de-survey-provisioning", + "name": "DARIAH-DE Survey Provisioning", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084899" + ] +} diff --git a/data/software/da/dariah-de-topicsexplorer.json b/data/software/da/dariah-de-topicsexplorer.json new file mode 100644 index 000000000000..55124e870e93 --- /dev/null +++ b/data/software/da/dariah-de-topicsexplorer.json @@ -0,0 +1,8 @@ +{ + "slug": "dariah-de-topicsexplorer", + "name": "DARIAH-DE TopicsExplorer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084900" + ] +} diff --git a/data/software/da/dariah-de-working-papers.json b/data/software/da/dariah-de-working-papers.json new file mode 100644 index 000000000000..e4e7ce5335d7 --- /dev/null +++ b/data/software/da/dariah-de-working-papers.json @@ -0,0 +1,8 @@ +{ + "slug": "dariah-de-working-papers", + "name": "DARIAH-DE Working Papers", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084901" + ] +} diff --git a/data/software/da/dariah-eldah-consent-form-wizard-cfw.json b/data/software/da/dariah-eldah-consent-form-wizard-cfw.json new file mode 100644 index 000000000000..2d0972581922 --- /dev/null +++ b/data/software/da/dariah-eldah-consent-form-wizard-cfw.json @@ -0,0 +1,8 @@ +{ + "slug": "dariah-eldah-consent-form-wizard-cfw", + "name": "DARIAH ELDAH Consent Form Wizard (CFW)", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084902" + ] +} diff --git a/data/software/da/darkbasic-professional.json b/data/software/da/darkbasic-professional.json new file mode 100644 index 000000000000..15aa25efcc3d --- /dev/null +++ b/data/software/da/darkbasic-professional.json @@ -0,0 +1,11 @@ +{ + "slug": "darkbasic-professional", + "name": "DarkBASIC Professional", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10986684" + ], + "developers": [ + "The Game Creators" + ] +} diff --git a/data/software/da/darna-tchad.json b/data/software/da/darna-tchad.json new file mode 100644 index 000000000000..2f4c6ea4e941 --- /dev/null +++ b/data/software/da/darna-tchad.json @@ -0,0 +1,12 @@ +{ + "slug": "darna-tchad", + "name": "Darna Tchad", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107432337" + ], + "release_date": "2014-01-01", + "developers": [ + "Nair Abakar" + ] +} diff --git a/data/software/da/dart.json b/data/software/da/dart.json new file mode 100644 index 000000000000..228b0e97e9e7 --- /dev/null +++ b/data/software/da/dart.json @@ -0,0 +1,11 @@ +{ + "slug": "dart", + "name": "DART", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11916456" + ], + "developers": [ + "Georgia Tech" + ] +} diff --git a/data/software/da/das-element.json b/data/software/da/das-element.json new file mode 100644 index 000000000000..cbbbbe82f76e --- /dev/null +++ b/data/software/da/das-element.json @@ -0,0 +1,16 @@ +{ + "slug": "das-element", + "name": "Das Element", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138800766" + ], + "developers": [ + "Jonas Kluger" + ], + "operating_systems": [ + "cross-platform", + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/software/da/das-programm.json b/data/software/da/das-programm.json new file mode 100644 index 000000000000..86af8c30e202 --- /dev/null +++ b/data/software/da/das-programm.json @@ -0,0 +1,9 @@ +{ + "slug": "das-programm", + "name": "das Programm", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139816819" + ], + "release_date": "2020-01-01" +} diff --git a/data/software/da/dasboot.json b/data/software/da/dasboot.json new file mode 100644 index 000000000000..de626aeece32 --- /dev/null +++ b/data/software/da/dasboot.json @@ -0,0 +1,11 @@ +{ + "slug": "dasboot", + "name": "DasBoot", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5226349" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/da/dash-radio.json b/data/software/da/dash-radio.json new file mode 100644 index 000000000000..e462f0c588f1 --- /dev/null +++ b/data/software/da/dash-radio.json @@ -0,0 +1,12 @@ +{ + "slug": "dash-radio", + "name": "Dash Radio", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22907651" + ], + "release_date": "2014-08-19", + "operating_systems": [ + "iOS" + ] +} diff --git a/data/software/da/dashboard-of-sustainability.json b/data/software/da/dashboard-of-sustainability.json new file mode 100644 index 000000000000..e37ff7f81263 --- /dev/null +++ b/data/software/da/dashboard-of-sustainability.json @@ -0,0 +1,8 @@ +{ + "slug": "dashboard-of-sustainability", + "name": "Dashboard of Sustainability", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5226598" + ] +} diff --git a/data/software/da/dashboard.json b/data/software/da/dashboard.json new file mode 100644 index 000000000000..d652756e305a --- /dev/null +++ b/data/software/da/dashboard.json @@ -0,0 +1,11 @@ +{ + "slug": "dashboard", + "name": "Dashboard", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1171872" + ], + "developers": [ + "Apple Inc." + ] +} diff --git a/data/software/da/dashcode.json b/data/software/da/dashcode.json new file mode 100644 index 000000000000..e65a713c588e --- /dev/null +++ b/data/software/da/dashcode.json @@ -0,0 +1,11 @@ +{ + "slug": "dashcode", + "name": "Dashcode", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1171875" + ], + "developers": [ + "Apple Inc." + ] +} diff --git a/data/software/da/dasho.json b/data/software/da/dasho.json new file mode 100644 index 000000000000..d1ed2c2ed214 --- /dev/null +++ b/data/software/da/dasho.json @@ -0,0 +1,8 @@ +{ + "slug": "dasho", + "name": "DashO", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108541906" + ] +} diff --git a/data/software/da/data-build-tool.json b/data/software/da/data-build-tool.json new file mode 100644 index 000000000000..c6ad37baf005 --- /dev/null +++ b/data/software/da/data-build-tool.json @@ -0,0 +1,14 @@ +{ + "slug": "data-build-tool", + "name": "data build tool", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107610347" + ], + "programming_languages": [ + "Python" + ], + "licenses": [ + "Apache Software License 2.0" + ] +} diff --git a/data/software/da/data-corruptor.json b/data/software/da/data-corruptor.json new file mode 100644 index 000000000000..b98e812615d3 --- /dev/null +++ b/data/software/da/data-corruptor.json @@ -0,0 +1,8 @@ +{ + "slug": "data-corruptor", + "name": "Data Corruptor", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137201249" + ] +} diff --git a/data/software/da/data-desk-q126084903.json b/data/software/da/data-desk-q126084903.json new file mode 100644 index 000000000000..fed19125cbdc --- /dev/null +++ b/data/software/da/data-desk-q126084903.json @@ -0,0 +1,8 @@ +{ + "slug": "data-desk-q126084903", + "name": "Data Desk", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084903" + ] +} diff --git a/data/software/da/data-desk.json b/data/software/da/data-desk.json new file mode 100644 index 000000000000..008d074e28e9 --- /dev/null +++ b/data/software/da/data-desk.json @@ -0,0 +1,8 @@ +{ + "slug": "data-desk", + "name": "Data Desk", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5227156" + ] +} diff --git a/data/software/da/data-dictionary-generator-ddg.json b/data/software/da/data-dictionary-generator-ddg.json new file mode 100644 index 000000000000..b3ab56b4a3dd --- /dev/null +++ b/data/software/da/data-dictionary-generator-ddg.json @@ -0,0 +1,8 @@ +{ + "slug": "data-dictionary-generator-ddg", + "name": "Data Dictionary Generator (DDG)", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084904" + ] +} diff --git a/data/software/da/data-facility-product.json b/data/software/da/data-facility-product.json new file mode 100644 index 000000000000..86e857209e5d --- /dev/null +++ b/data/software/da/data-facility-product.json @@ -0,0 +1,14 @@ +{ + "slug": "data-facility-product", + "name": "Data Facility Product", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28871075" + ], + "developers": [ + "IBM" + ], + "operating_systems": [ + "MVS" + ] +} diff --git a/data/software/da/data-for-research-dfr.json b/data/software/da/data-for-research-dfr.json new file mode 100644 index 000000000000..b786861ea29e --- /dev/null +++ b/data/software/da/data-for-research-dfr.json @@ -0,0 +1,8 @@ +{ + "slug": "data-for-research-dfr", + "name": "Data for Research (DFR)", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084905" + ] +} diff --git a/data/software/da/data-foundry-jupyter-notebooks.json b/data/software/da/data-foundry-jupyter-notebooks.json new file mode 100644 index 000000000000..a487da7250a9 --- /dev/null +++ b/data/software/da/data-foundry-jupyter-notebooks.json @@ -0,0 +1,9 @@ +{ + "slug": "data-foundry-jupyter-notebooks", + "name": "Data Foundry - Jupyter Notebooks", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111411199" + ], + "release_date": "2020-01-01" +} diff --git a/data/software/da/data-illustrator.json b/data/software/da/data-illustrator.json new file mode 100644 index 000000000000..80aa0c9174ed --- /dev/null +++ b/data/software/da/data-illustrator.json @@ -0,0 +1,8 @@ +{ + "slug": "data-illustrator", + "name": "Data-illustrator", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084907" + ] +} diff --git a/data/software/da/data-loader.json b/data/software/da/data-loader.json new file mode 100644 index 000000000000..2671e5401e40 --- /dev/null +++ b/data/software/da/data-loader.json @@ -0,0 +1,21 @@ +{ + "slug": "data-loader", + "name": "Data Loader", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115602902" + ], + "developers": [ + "Salesforce" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [ + "Java" + ], + "licenses": [ + "3-clause BSD License" + ] +} diff --git a/data/software/da/data-manipulation.json b/data/software/da/data-manipulation.json new file mode 100644 index 000000000000..b57ee8f3df83 --- /dev/null +++ b/data/software/da/data-manipulation.json @@ -0,0 +1,8 @@ +{ + "slug": "data-manipulation", + "name": "data manipulation", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62747096" + ] +} diff --git a/data/software/da/data-model-api.json b/data/software/da/data-model-api.json new file mode 100644 index 000000000000..151df62fbd54 --- /dev/null +++ b/data/software/da/data-model-api.json @@ -0,0 +1,8 @@ +{ + "slug": "data-model-api", + "name": "Data Model API", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76181475" + ] +} diff --git a/data/software/da/data-stewardship-wizard.json b/data/software/da/data-stewardship-wizard.json new file mode 100644 index 000000000000..590efa38944c --- /dev/null +++ b/data/software/da/data-stewardship-wizard.json @@ -0,0 +1,8 @@ +{ + "slug": "data-stewardship-wizard", + "name": "Data Stewardship Wizard", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123311024" + ] +} diff --git a/data/software/da/data-storage-tape-management-system.json b/data/software/da/data-storage-tape-management-system.json new file mode 100644 index 000000000000..5e964aeffb9a --- /dev/null +++ b/data/software/da/data-storage-tape-management-system.json @@ -0,0 +1,8 @@ +{ + "slug": "data-storage-tape-management-system", + "name": "data storage tape management system", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115798549" + ] +} diff --git a/data/software/da/data-studio.json b/data/software/da/data-studio.json new file mode 100644 index 000000000000..4efa60ae702b --- /dev/null +++ b/data/software/da/data-studio.json @@ -0,0 +1,11 @@ +{ + "slug": "data-studio", + "name": "Data Studio", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60165325" + ], + "developers": [ + "Google" + ] +} diff --git a/data/software/da/data-toolbar.json b/data/software/da/data-toolbar.json new file mode 100644 index 000000000000..e213fd3646b5 --- /dev/null +++ b/data/software/da/data-toolbar.json @@ -0,0 +1,11 @@ +{ + "slug": "data-toolbar", + "name": "Data Toolbar", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5227223" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/da/data-version-control.json b/data/software/da/data-version-control.json new file mode 100644 index 000000000000..ff5481949733 --- /dev/null +++ b/data/software/da/data-version-control.json @@ -0,0 +1,8 @@ +{ + "slug": "data-version-control", + "name": "Data Version Control", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115519393" + ] +} diff --git a/data/software/da/databank.json b/data/software/da/databank.json new file mode 100644 index 000000000000..dacd4580183b --- /dev/null +++ b/data/software/da/databank.json @@ -0,0 +1,8 @@ +{ + "slug": "databank", + "name": "databank", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q30743204" + ] +} diff --git a/data/software/da/database-workbench.json b/data/software/da/database-workbench.json new file mode 100644 index 000000000000..70f7c78d92ae --- /dev/null +++ b/data/software/da/database-workbench.json @@ -0,0 +1,11 @@ +{ + "slug": "database-workbench", + "name": "Database Workbench", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18149561" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/da/databasespy.json b/data/software/da/databasespy.json new file mode 100644 index 000000000000..2ccc9420745c --- /dev/null +++ b/data/software/da/databasespy.json @@ -0,0 +1,14 @@ +{ + "slug": "databasespy", + "name": "DatabaseSpy", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5227380" + ], + "developers": [ + "Altova" + ], + "licenses": [ + "end-user license agreement" + ] +} diff --git a/data/software/da/datacad.json b/data/software/da/datacad.json new file mode 100644 index 000000000000..8c262a3488a2 --- /dev/null +++ b/data/software/da/datacad.json @@ -0,0 +1,8 @@ +{ + "slug": "datacad", + "name": "DataCAD", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5227108" + ] +} diff --git a/data/software/da/datacoin-hp.json b/data/software/da/datacoin-hp.json new file mode 100644 index 000000000000..e3c75846af67 --- /dev/null +++ b/data/software/da/datacoin-hp.json @@ -0,0 +1,11 @@ +{ + "slug": "datacoin-hp", + "name": "datacoin-hp", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974800" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/da/datacom-db.json b/data/software/da/datacom-db.json new file mode 100644 index 000000000000..bb0cf812ed47 --- /dev/null +++ b/data/software/da/datacom-db.json @@ -0,0 +1,14 @@ +{ + "slug": "datacom-db", + "name": "DATACOM/DB", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5204331" + ], + "operating_systems": [ + "z/OS" + ], + "licenses": [ + "end-user license agreement" + ] +} diff --git a/data/software/da/datacopia.json b/data/software/da/datacopia.json new file mode 100644 index 000000000000..79b245498b2e --- /dev/null +++ b/data/software/da/datacopia.json @@ -0,0 +1,8 @@ +{ + "slug": "datacopia", + "name": "Datacopia", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18206349" + ] +} diff --git a/data/software/da/dataddo.json b/data/software/da/dataddo.json new file mode 100644 index 000000000000..1a75a2fc1cc7 --- /dev/null +++ b/data/software/da/dataddo.json @@ -0,0 +1,8 @@ +{ + "slug": "dataddo", + "name": "Dataddo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140377030" + ] +} diff --git a/data/software/da/datadetective.json b/data/software/da/datadetective.json new file mode 100644 index 000000000000..35b02948897d --- /dev/null +++ b/data/software/da/datadetective.json @@ -0,0 +1,11 @@ +{ + "slug": "datadetective", + "name": "DataDetective", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5227109" + ], + "developers": [ + "Sentient Information Systems" + ] +} diff --git a/data/software/da/dataflex.json b/data/software/da/dataflex.json new file mode 100644 index 000000000000..bab11da14541 --- /dev/null +++ b/data/software/da/dataflex.json @@ -0,0 +1,8 @@ +{ + "slug": "dataflex", + "name": "DataFlex", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2391203" + ] +} diff --git a/data/software/da/datagraph.json b/data/software/da/datagraph.json new file mode 100644 index 000000000000..df0d1a212929 --- /dev/null +++ b/data/software/da/datagraph.json @@ -0,0 +1,8 @@ +{ + "slug": "datagraph", + "name": "DataGraph", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q104901838" + ] +} diff --git a/data/software/da/datahero.json b/data/software/da/datahero.json new file mode 100644 index 000000000000..64e2afba3543 --- /dev/null +++ b/data/software/da/datahero.json @@ -0,0 +1,8 @@ +{ + "slug": "datahero", + "name": "DataHero", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084906" + ] +} diff --git a/data/software/da/datalad.json b/data/software/da/datalad.json new file mode 100644 index 000000000000..72ddbadffc78 --- /dev/null +++ b/data/software/da/datalad.json @@ -0,0 +1,11 @@ +{ + "slug": "datalad", + "name": "DataLad", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115117478" + ], + "programming_languages": [ + "Python" + ] +} diff --git a/data/software/da/dataobjects-net.json b/data/software/da/dataobjects-net.json new file mode 100644 index 000000000000..c2e5f79dabe1 --- /dev/null +++ b/data/software/da/dataobjects-net.json @@ -0,0 +1,8 @@ +{ + "slug": "dataobjects-net", + "name": "DataObjects.NET", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4037058" + ] +} diff --git a/data/software/da/dataplot.json b/data/software/da/dataplot.json new file mode 100644 index 000000000000..16ea9842ea3c --- /dev/null +++ b/data/software/da/dataplot.json @@ -0,0 +1,19 @@ +{ + "slug": "dataplot", + "name": "Dataplot", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5227478" + ], + "release_date": "1978-01-01", + "developers": [ + "National Institute of Standards and Technology" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [ + "Fortran" + ] +} diff --git a/data/software/da/datascene.json b/data/software/da/datascene.json new file mode 100644 index 000000000000..563c445f6bf6 --- /dev/null +++ b/data/software/da/datascene.json @@ -0,0 +1,11 @@ +{ + "slug": "datascene", + "name": "DataScene", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5227126" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/da/datasets-load.json b/data/software/da/datasets-load.json new file mode 100644 index 000000000000..a21d04e53b53 --- /dev/null +++ b/data/software/da/datasets-load.json @@ -0,0 +1,11 @@ +{ + "slug": "datasets-load", + "name": "Datasets.load", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60744039" + ], + "programming_languages": [ + "R" + ] +} diff --git a/data/software/da/datashield.json b/data/software/da/datashield.json new file mode 100644 index 000000000000..1e4cd39b7ac3 --- /dev/null +++ b/data/software/da/datashield.json @@ -0,0 +1,11 @@ +{ + "slug": "datashield", + "name": "DataSHIELD", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130616688" + ], + "programming_languages": [ + "R" + ] +} diff --git a/data/software/da/datatank.json b/data/software/da/datatank.json new file mode 100644 index 000000000000..8f171101a537 --- /dev/null +++ b/data/software/da/datatank.json @@ -0,0 +1,8 @@ +{ + "slug": "datatank", + "name": "DataTank", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084908" + ] +} diff --git a/data/software/da/dataverse-r-study.json b/data/software/da/dataverse-r-study.json new file mode 100644 index 000000000000..d3d35254123c --- /dev/null +++ b/data/software/da/dataverse-r-study.json @@ -0,0 +1,11 @@ +{ + "slug": "dataverse-r-study", + "name": "dataverse-r-study", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127485519" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/da/datenstrom-yellow.json b/data/software/da/datenstrom-yellow.json new file mode 100644 index 000000000000..571da0ac820a --- /dev/null +++ b/data/software/da/datenstrom-yellow.json @@ -0,0 +1,8 @@ +{ + "slug": "datenstrom-yellow", + "name": "Datenstrom Yellow", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q29364695" + ] +} diff --git a/data/software/da/dateutils.json b/data/software/da/dateutils.json new file mode 100644 index 000000000000..790f269219f2 --- /dev/null +++ b/data/software/da/dateutils.json @@ -0,0 +1,8 @@ +{ + "slug": "dateutils", + "name": "dateutils", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62847786" + ] +} diff --git a/data/software/da/datopian.json b/data/software/da/datopian.json new file mode 100644 index 000000000000..c8eeaf1e54ba --- /dev/null +++ b/data/software/da/datopian.json @@ -0,0 +1,8 @@ +{ + "slug": "datopian", + "name": "Datopian", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123049092" + ] +} diff --git a/data/software/da/dave.json b/data/software/da/dave.json new file mode 100644 index 000000000000..00dac46ec403 --- /dev/null +++ b/data/software/da/dave.json @@ -0,0 +1,11 @@ +{ + "slug": "dave", + "name": "DAvE", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5204374" + ], + "developers": [ + "Infineon Technologies" + ] +} diff --git a/data/software/da/david-laserscanner.json b/data/software/da/david-laserscanner.json new file mode 100644 index 000000000000..0577d3762b7d --- /dev/null +++ b/data/software/da/david-laserscanner.json @@ -0,0 +1,8 @@ +{ + "slug": "david-laserscanner", + "name": "David Laserscanner", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1173463" + ] +} diff --git a/data/software/da/david.json b/data/software/da/david.json new file mode 100644 index 000000000000..a0a275ac5adb --- /dev/null +++ b/data/software/da/david.json @@ -0,0 +1,11 @@ +{ + "slug": "david", + "name": "DAVID", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5204342" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/da/dawn.json b/data/software/da/dawn.json new file mode 100644 index 000000000000..6e6eebdf981b --- /dev/null +++ b/data/software/da/dawn.json @@ -0,0 +1,11 @@ +{ + "slug": "dawn", + "name": "Dawn", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q119854416" + ], + "licenses": [ + "Apache Software License 2.0" + ] +} diff --git a/data/software/da/dax.json b/data/software/da/dax.json new file mode 100644 index 000000000000..1f6b58350c65 --- /dev/null +++ b/data/software/da/dax.json @@ -0,0 +1,8 @@ +{ + "slug": "dax", + "name": "DAX", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17104553" + ] +} diff --git a/data/software/da/daxin.json b/data/software/da/daxin.json new file mode 100644 index 000000000000..5127b21d3727 --- /dev/null +++ b/data/software/da/daxin.json @@ -0,0 +1,8 @@ +{ + "slug": "daxin", + "name": "Daxin", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111913144" + ] +} diff --git a/data/software/da/daylio.json b/data/software/da/daylio.json new file mode 100644 index 000000000000..525b119cc527 --- /dev/null +++ b/data/software/da/daylio.json @@ -0,0 +1,11 @@ +{ + "slug": "daylio", + "name": "Daylio", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109406959" + ], + "operating_systems": [ + "iOS" + ] +} diff --git a/data/software/da/daystream-ai.json b/data/software/da/daystream-ai.json new file mode 100644 index 000000000000..95da6fee7e21 --- /dev/null +++ b/data/software/da/daystream-ai.json @@ -0,0 +1,14 @@ +{ + "slug": "daystream-ai", + "name": "DayStream AI", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139498857" + ], + "release_date": "2026-01-01", + "genres": [ + "artificial intelligence", + "mobile app", + "productivity software" + ] +} diff --git a/data/software/da/daz-studio.json b/data/software/da/daz-studio.json new file mode 100644 index 000000000000..b0170fc8b6b9 --- /dev/null +++ b/data/software/da/daz-studio.json @@ -0,0 +1,11 @@ +{ + "slug": "daz-studio", + "name": "DAZ Studio", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q460296" + ], + "developers": [ + "DAZ 3D" + ] +} diff --git a/data/software/db/db-hub.json b/data/software/db/db-hub.json new file mode 100644 index 000000000000..1c749d7d7dae --- /dev/null +++ b/data/software/db/db-hub.json @@ -0,0 +1,11 @@ +{ + "slug": "db-hub", + "name": "DB Hub", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q9200359" + ], + "licenses": [ + "GNU General Public License, version 2.0" + ] +} diff --git a/data/software/db/db2-udb.json b/data/software/db/db2-udb.json new file mode 100644 index 000000000000..5a2844789152 --- /dev/null +++ b/data/software/db/db2-udb.json @@ -0,0 +1,8 @@ +{ + "slug": "db2-udb", + "name": "DB2 UDB", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17088071" + ] +} diff --git a/data/software/db/dbacl.json b/data/software/db/dbacl.json new file mode 100644 index 000000000000..5392879a8084 --- /dev/null +++ b/data/software/db/dbacl.json @@ -0,0 +1,8 @@ +{ + "slug": "dbacl", + "name": "dbacl", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62847796" + ] +} diff --git a/data/software/db/dbase-mac.json b/data/software/db/dbase-mac.json new file mode 100644 index 000000000000..f6885b7dad93 --- /dev/null +++ b/data/software/db/dbase-mac.json @@ -0,0 +1,11 @@ +{ + "slug": "dbase-mac", + "name": "dBASE Mac", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5204387" + ], + "developers": [ + "Ashton-Tate" + ] +} diff --git a/data/software/db/dbeaver.json b/data/software/db/dbeaver.json new file mode 100644 index 000000000000..478a4fcc05cb --- /dev/null +++ b/data/software/db/dbeaver.json @@ -0,0 +1,17 @@ +{ + "slug": "dbeaver", + "name": "DBeaver", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28956992" + ], + "operating_systems": [ + "cross-platform" + ], + "programming_languages": [ + "Java" + ], + "licenses": [ + "Apache License" + ] +} diff --git a/data/software/db/dbforge-studio-for-mysql.json b/data/software/db/dbforge-studio-for-mysql.json new file mode 100644 index 000000000000..8677386f50e5 --- /dev/null +++ b/data/software/db/dbforge-studio-for-mysql.json @@ -0,0 +1,8 @@ +{ + "slug": "dbforge-studio-for-mysql", + "name": "DbForge Studio for MySQL", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q29364778" + ] +} diff --git a/data/software/db/dbforge-studio-for-oracle.json b/data/software/db/dbforge-studio-for-oracle.json new file mode 100644 index 000000000000..d09b44d7f4f7 --- /dev/null +++ b/data/software/db/dbforge-studio-for-oracle.json @@ -0,0 +1,8 @@ +{ + "slug": "dbforge-studio-for-oracle", + "name": "DbForge Studio for Oracle", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q29364779" + ] +} diff --git a/data/software/db/dbfree.json b/data/software/db/dbfree.json new file mode 100644 index 000000000000..bfe73a979442 --- /dev/null +++ b/data/software/db/dbfree.json @@ -0,0 +1,8 @@ +{ + "slug": "dbfree", + "name": "DBFree", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139580665" + ] +} diff --git a/data/software/db/dbgallery.json b/data/software/db/dbgallery.json new file mode 100644 index 000000000000..a2bfbbd7801f --- /dev/null +++ b/data/software/db/dbgallery.json @@ -0,0 +1,8 @@ +{ + "slug": "dbgallery", + "name": "DBGallery", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5204398" + ] +} diff --git a/data/software/db/dbndns.json b/data/software/db/dbndns.json new file mode 100644 index 000000000000..650c3edce0bd --- /dev/null +++ b/data/software/db/dbndns.json @@ -0,0 +1,11 @@ +{ + "slug": "dbndns", + "name": "dbndns", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5243770" + ], + "operating_systems": [ + "Unix-like operating system" + ] +} diff --git a/data/software/db/dbomp.json b/data/software/db/dbomp.json new file mode 100644 index 000000000000..25e16efa65ea --- /dev/null +++ b/data/software/db/dbomp.json @@ -0,0 +1,8 @@ +{ + "slug": "dbomp", + "name": "DBOMP", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q65084058" + ] +} diff --git a/data/software/db/dbpedia-spotlight.json b/data/software/db/dbpedia-spotlight.json new file mode 100644 index 000000000000..000b56cc2e00 --- /dev/null +++ b/data/software/db/dbpedia-spotlight.json @@ -0,0 +1,8 @@ +{ + "slug": "dbpedia-spotlight", + "name": "DBpedia Spotlight", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q276902" + ] +} diff --git a/data/software/db/dbpoweramp.json b/data/software/db/dbpoweramp.json new file mode 100644 index 000000000000..3b224bbcb0bd --- /dev/null +++ b/data/software/db/dbpoweramp.json @@ -0,0 +1,8 @@ +{ + "slug": "dbpoweramp", + "name": "dBpoweramp", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1152133" + ] +} diff --git a/data/software/dc/dcadec.json b/data/software/dc/dcadec.json new file mode 100644 index 000000000000..ff7c1405ec38 --- /dev/null +++ b/data/software/dc/dcadec.json @@ -0,0 +1,11 @@ +{ + "slug": "dcadec", + "name": "dcadec", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974801" + ], + "licenses": [ + "GNU Lesser General Public License, version 2.1" + ] +} diff --git a/data/software/dc/dcaenc.json b/data/software/dc/dcaenc.json new file mode 100644 index 000000000000..d8f33aaa5dde --- /dev/null +++ b/data/software/dc/dcaenc.json @@ -0,0 +1,8 @@ +{ + "slug": "dcaenc", + "name": "dcaenc", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974802" + ] +} diff --git a/data/software/dc/dcar.json b/data/software/dc/dcar.json new file mode 100644 index 000000000000..b57b6945086d --- /dev/null +++ b/data/software/dc/dcar.json @@ -0,0 +1,8 @@ +{ + "slug": "dcar", + "name": "Dcar", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136190617" + ] +} diff --git a/data/software/dc/dclock.json b/data/software/dc/dclock.json new file mode 100644 index 000000000000..15330095bbf3 --- /dev/null +++ b/data/software/dc/dclock.json @@ -0,0 +1,8 @@ +{ + "slug": "dclock", + "name": "dclock", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065051" + ] +} diff --git a/data/software/dc/dcmtk.json b/data/software/dc/dcmtk.json new file mode 100644 index 000000000000..881ca439e574 --- /dev/null +++ b/data/software/dc/dcmtk.json @@ -0,0 +1,8 @@ +{ + "slug": "dcmtk", + "name": "DCMTK", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138798877" + ] +} diff --git a/data/software/de/deal-flow.json b/data/software/de/deal-flow.json new file mode 100644 index 000000000000..68896110450a --- /dev/null +++ b/data/software/de/deal-flow.json @@ -0,0 +1,8 @@ +{ + "slug": "deal-flow", + "name": "Deal Flow", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139856688" + ] +} diff --git a/data/software/de/dealdox.json b/data/software/de/dealdox.json new file mode 100644 index 000000000000..a2d3e21e4e62 --- /dev/null +++ b/data/software/de/dealdox.json @@ -0,0 +1,8 @@ +{ + "slug": "dealdox", + "name": "DealDox", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140353860" + ] +} diff --git a/data/software/de/dealerdesk.json b/data/software/de/dealerdesk.json new file mode 100644 index 000000000000..ea06e52fe88d --- /dev/null +++ b/data/software/de/dealerdesk.json @@ -0,0 +1,11 @@ +{ + "slug": "dealerdesk", + "name": "DealerDesk", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140073458" + ], + "developers": [ + "Chief Mechanic Limited" + ] +} diff --git a/data/software/de/dealership-management-system.json b/data/software/de/dealership-management-system.json new file mode 100644 index 000000000000..65f62c3c4a5e --- /dev/null +++ b/data/software/de/dealership-management-system.json @@ -0,0 +1,8 @@ +{ + "slug": "dealership-management-system", + "name": "dealership management system", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q472046" + ] +} diff --git a/data/software/de/deb2targz.json b/data/software/de/deb2targz.json new file mode 100644 index 000000000000..fb0924b42da1 --- /dev/null +++ b/data/software/de/deb2targz.json @@ -0,0 +1,8 @@ +{ + "slug": "deb2targz", + "name": "deb2targz", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065258" + ] +} diff --git a/data/software/de/debezium.json b/data/software/de/debezium.json new file mode 100644 index 000000000000..4ec7a622562b --- /dev/null +++ b/data/software/de/debezium.json @@ -0,0 +1,8 @@ +{ + "slug": "debezium", + "name": "Debezium", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126165313" + ] +} diff --git a/data/software/de/debian-alternatives-system.json b/data/software/de/debian-alternatives-system.json new file mode 100644 index 000000000000..0e3cb31fa3e0 --- /dev/null +++ b/data/software/de/debian-alternatives-system.json @@ -0,0 +1,8 @@ +{ + "slug": "debian-alternatives-system", + "name": "Debian Alternatives System", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4033835" + ] +} diff --git a/data/software/de/debut-video-capture-software.json b/data/software/de/debut-video-capture-software.json new file mode 100644 index 000000000000..48f816b520e7 --- /dev/null +++ b/data/software/de/debut-video-capture-software.json @@ -0,0 +1,11 @@ +{ + "slug": "debut-video-capture-software", + "name": "Debut Video Capture Software", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q43080158" + ], + "genres": [ + "screencasting software" + ] +} diff --git a/data/software/de/decent-network.json b/data/software/de/decent-network.json new file mode 100644 index 000000000000..f6f201ea3314 --- /dev/null +++ b/data/software/de/decent-network.json @@ -0,0 +1,8 @@ +{ + "slug": "decent-network", + "name": "DECENT Network", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28127138" + ] +} diff --git a/data/software/de/decimer.json b/data/software/de/decimer.json new file mode 100644 index 000000000000..25bb0e44785c --- /dev/null +++ b/data/software/de/decimer.json @@ -0,0 +1,8 @@ +{ + "slug": "decimer", + "name": "DECIMER", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112083305" + ] +} diff --git a/data/software/de/deck-daemon.json b/data/software/de/deck-daemon.json new file mode 100644 index 000000000000..db95562072ae --- /dev/null +++ b/data/software/de/deck-daemon.json @@ -0,0 +1,8 @@ +{ + "slug": "deck-daemon", + "name": "Deck Daemon", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q133809007" + ] +} diff --git a/data/software/de/deck.json b/data/software/de/deck.json new file mode 100644 index 000000000000..5be645215857 --- /dev/null +++ b/data/software/de/deck.json @@ -0,0 +1,12 @@ +{ + "slug": "deck", + "name": "Deck", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135494358" + ], + "release_date": "1990-01-01", + "publishers": [ + "OSC" + ] +} diff --git a/data/software/de/decky-loader.json b/data/software/de/decky-loader.json new file mode 100644 index 000000000000..7aadea4190b5 --- /dev/null +++ b/data/software/de/decky-loader.json @@ -0,0 +1,18 @@ +{ + "slug": "decky-loader", + "name": "Decky Loader", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130531690" + ], + "release_date": "2022-01-01", + "developers": [ + "Steam Deck Homebrew" + ], + "publishers": [ + "Steam Deck Homebrew" + ], + "licenses": [ + "GNU General Public License, version 2.0" + ] +} diff --git a/data/software/de/decodoku.json b/data/software/de/decodoku.json new file mode 100644 index 000000000000..a9188846c3d8 --- /dev/null +++ b/data/software/de/decodoku.json @@ -0,0 +1,15 @@ +{ + "slug": "decodoku", + "name": "Decodoku", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28135096" + ], + "release_date": "2016-01-01", + "operating_systems": [ + "iOS" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/de/dede-content-management-system.json b/data/software/de/dede-content-management-system.json new file mode 100644 index 000000000000..d1a5612abce5 --- /dev/null +++ b/data/software/de/dede-content-management-system.json @@ -0,0 +1,18 @@ +{ + "slug": "dede-content-management-system", + "name": "Dede content management system", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q59522857" + ], + "release_date": "2004-01-01", + "developers": [ + "ShangHai DesDev Information Technology Co, Ltd" + ], + "programming_languages": [ + "PHP" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/de/deep-dungeons-of-doom.json b/data/software/de/deep-dungeons-of-doom.json new file mode 100644 index 000000000000..20a053b3d594 --- /dev/null +++ b/data/software/de/deep-dungeons-of-doom.json @@ -0,0 +1,15 @@ +{ + "slug": "deep-dungeons-of-doom", + "name": "Deep Dungeons of Doom", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q89408241" + ], + "release_date": "2014-10-14", + "developers": [ + "Bossa Studios" + ], + "publishers": [ + "Bossa Studios" + ] +} diff --git a/data/software/de/deep-fusion.json b/data/software/de/deep-fusion.json new file mode 100644 index 000000000000..6d923c7c80b1 --- /dev/null +++ b/data/software/de/deep-fusion.json @@ -0,0 +1,14 @@ +{ + "slug": "deep-fusion", + "name": "Deep Fusion", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q86735868" + ], + "developers": [ + "Apple Inc." + ], + "operating_systems": [ + "iOS" + ] +} diff --git a/data/software/de/deep-learning-studio.json b/data/software/de/deep-learning-studio.json new file mode 100644 index 000000000000..76cb308b53ad --- /dev/null +++ b/data/software/de/deep-learning-studio.json @@ -0,0 +1,11 @@ +{ + "slug": "deep-learning-studio", + "name": "Deep Learning Studio", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q55080166" + ], + "programming_languages": [ + "Python" + ] +} diff --git a/data/software/de/deep-nostalgia.json b/data/software/de/deep-nostalgia.json new file mode 100644 index 000000000000..b8f6d465544d --- /dev/null +++ b/data/software/de/deep-nostalgia.json @@ -0,0 +1,8 @@ +{ + "slug": "deep-nostalgia", + "name": "Deep Nostalgia", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106695289" + ] +} diff --git a/data/software/de/deep-sky-planner.json b/data/software/de/deep-sky-planner.json new file mode 100644 index 000000000000..1d0f41d58922 --- /dev/null +++ b/data/software/de/deep-sky-planner.json @@ -0,0 +1,11 @@ +{ + "slug": "deep-sky-planner", + "name": "Deep-Sky Planner", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16989290" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/de/deep-zoom.json b/data/software/de/deep-zoom.json new file mode 100644 index 000000000000..10d594ad4343 --- /dev/null +++ b/data/software/de/deep-zoom.json @@ -0,0 +1,11 @@ +{ + "slug": "deep-zoom", + "name": "Deep Zoom", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5250364" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/de/deepart.json b/data/software/de/deepart.json new file mode 100644 index 000000000000..0ae8c0c67e45 --- /dev/null +++ b/data/software/de/deepart.json @@ -0,0 +1,8 @@ +{ + "slug": "deepart", + "name": "DeepArt", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28130429" + ] +} diff --git a/data/software/de/deeperweb.json b/data/software/de/deeperweb.json new file mode 100644 index 000000000000..002e213f0937 --- /dev/null +++ b/data/software/de/deeperweb.json @@ -0,0 +1,8 @@ +{ + "slug": "deeperweb", + "name": "DeeperWeb", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084909" + ] +} diff --git a/data/software/de/deepfacelab.json b/data/software/de/deepfacelab.json new file mode 100644 index 000000000000..5a2764016918 --- /dev/null +++ b/data/software/de/deepfacelab.json @@ -0,0 +1,14 @@ +{ + "slug": "deepfacelab", + "name": "DeepFaceLab", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q95242927" + ], + "programming_languages": [ + "Python" + ], + "licenses": [ + "GNU General Public License" + ] +} diff --git a/data/software/de/deepgrip.json b/data/software/de/deepgrip.json new file mode 100644 index 000000000000..a8b379aee937 --- /dev/null +++ b/data/software/de/deepgrip.json @@ -0,0 +1,11 @@ +{ + "slug": "deepgrip", + "name": "Deepgrip", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139889436" + ], + "developers": [ + "Dootlabs Private Limited" + ] +} diff --git a/data/software/de/deepnet-explorer.json b/data/software/de/deepnet-explorer.json new file mode 100644 index 000000000000..9c2d12268bf8 --- /dev/null +++ b/data/software/de/deepnet-explorer.json @@ -0,0 +1,8 @@ +{ + "slug": "deepnet-explorer", + "name": "Deepnet Explorer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2406681" + ] +} diff --git a/data/software/de/deepsight.json b/data/software/de/deepsight.json new file mode 100644 index 000000000000..d9e1d1826b26 --- /dev/null +++ b/data/software/de/deepsight.json @@ -0,0 +1,11 @@ +{ + "slug": "deepsight", + "name": "Deepsight", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138859397" + ], + "developers": [ + "Incode" + ] +} diff --git a/data/software/de/defeat-device.json b/data/software/de/defeat-device.json new file mode 100644 index 000000000000..c0937c28da80 --- /dev/null +++ b/data/software/de/defeat-device.json @@ -0,0 +1,8 @@ +{ + "slug": "defeat-device", + "name": "defeat device", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q21041527" + ] +} diff --git a/data/software/de/defense4all.json b/data/software/de/defense4all.json new file mode 100644 index 000000000000..b2ed64d5f5ed --- /dev/null +++ b/data/software/de/defense4all.json @@ -0,0 +1,8 @@ +{ + "slug": "defense4all", + "name": "Defense4All", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q97310208" + ] +} diff --git a/data/software/de/dehy.json b/data/software/de/dehy.json new file mode 100644 index 000000000000..4faddf462525 --- /dev/null +++ b/data/software/de/dehy.json @@ -0,0 +1,8 @@ +{ + "slug": "dehy", + "name": "DEHY", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140047428" + ] +} diff --git a/data/software/de/delaunay-tessellation-field-estimator.json b/data/software/de/delaunay-tessellation-field-estimator.json new file mode 100644 index 000000000000..5ee7cad0c8c4 --- /dev/null +++ b/data/software/de/delaunay-tessellation-field-estimator.json @@ -0,0 +1,8 @@ +{ + "slug": "delaunay-tessellation-field-estimator", + "name": "Delaunay tessellation field estimator", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5253187" + ] +} diff --git a/data/software/de/delay-lama.json b/data/software/de/delay-lama.json new file mode 100644 index 000000000000..838e92cdbc2a --- /dev/null +++ b/data/software/de/delay-lama.json @@ -0,0 +1,11 @@ +{ + "slug": "delay-lama", + "name": "Delay Lama", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10846936" + ], + "licenses": [ + "donationware" + ] +} diff --git a/data/software/de/delegate.json b/data/software/de/delegate.json new file mode 100644 index 000000000000..a28258e91a7e --- /dev/null +++ b/data/software/de/delegate.json @@ -0,0 +1,8 @@ +{ + "slug": "delegate", + "name": "DeleGate", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5253575" + ] +} diff --git a/data/software/de/deleteme.json b/data/software/de/deleteme.json new file mode 100644 index 000000000000..e7322821a4dc --- /dev/null +++ b/data/software/de/deleteme.json @@ -0,0 +1,8 @@ +{ + "slug": "deleteme", + "name": "DeleteMe", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123739151" + ] +} diff --git a/data/software/de/delicious-library.json b/data/software/de/delicious-library.json new file mode 100644 index 000000000000..0e14faef4c43 --- /dev/null +++ b/data/software/de/delicious-library.json @@ -0,0 +1,12 @@ +{ + "slug": "delicious-library", + "name": "Delicious Library", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1184229" + ], + "release_date": "2004-11-01", + "developers": [ + "Delicious Monster" + ] +} diff --git a/data/software/de/delivery-biz-pro.json b/data/software/de/delivery-biz-pro.json new file mode 100644 index 000000000000..ae02140b038f --- /dev/null +++ b/data/software/de/delivery-biz-pro.json @@ -0,0 +1,8 @@ +{ + "slug": "delivery-biz-pro", + "name": "Delivery Biz Pro", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139580492" + ] +} diff --git a/data/software/de/dell-mediadirect.json b/data/software/de/dell-mediadirect.json new file mode 100644 index 000000000000..35b7b6da4fc2 --- /dev/null +++ b/data/software/de/dell-mediadirect.json @@ -0,0 +1,8 @@ +{ + "slug": "dell-mediadirect", + "name": "Dell MediaDirect", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5254126" + ] +} diff --git a/data/software/de/delmia.json b/data/software/de/delmia.json new file mode 100644 index 000000000000..6c019a3c2bfc --- /dev/null +++ b/data/software/de/delmia.json @@ -0,0 +1,14 @@ +{ + "slug": "delmia", + "name": "DELMIA", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q316333" + ], + "developers": [ + "Dassault Systèmes" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/de/delphish.json b/data/software/de/delphish.json new file mode 100644 index 000000000000..a4b2e30b89f5 --- /dev/null +++ b/data/software/de/delphish.json @@ -0,0 +1,15 @@ +{ + "slug": "delphish", + "name": "Delphish", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q20989199" + ], + "release_date": "2007-01-01", + "operating_systems": [ + "Microsoft Windows" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/de/delta-drawing.json b/data/software/de/delta-drawing.json new file mode 100644 index 000000000000..8333ea2bf393 --- /dev/null +++ b/data/software/de/delta-drawing.json @@ -0,0 +1,15 @@ +{ + "slug": "delta-drawing", + "name": "Delta Drawing", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5254614" + ], + "release_date": "1983-01-01", + "developers": [ + "Computer Access Corporation" + ], + "publishers": [ + "Spinnaker Software" + ] +} diff --git a/data/software/de/delta-situational-awareness-system.json b/data/software/de/delta-situational-awareness-system.json new file mode 100644 index 000000000000..c80a9bdbae28 --- /dev/null +++ b/data/software/de/delta-situational-awareness-system.json @@ -0,0 +1,8 @@ +{ + "slug": "delta-situational-awareness-system", + "name": "Delta (situational awareness system)", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115042149" + ] +} diff --git a/data/software/de/deltarpm.json b/data/software/de/deltarpm.json new file mode 100644 index 000000000000..d3c1d85c78f9 --- /dev/null +++ b/data/software/de/deltarpm.json @@ -0,0 +1,8 @@ +{ + "slug": "deltarpm", + "name": "DeltaRPM", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62847890" + ] +} diff --git a/data/software/de/delve-deeper.json b/data/software/de/delve-deeper.json new file mode 100644 index 000000000000..ccafe8a2e3e5 --- /dev/null +++ b/data/software/de/delve-deeper.json @@ -0,0 +1,9 @@ +{ + "slug": "delve-deeper", + "name": "Delve Deeper", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106727692" + ], + "release_date": "2010-09-24" +} diff --git a/data/software/de/demodokos-foundry.json b/data/software/de/demodokos-foundry.json new file mode 100644 index 000000000000..f98d541ad854 --- /dev/null +++ b/data/software/de/demodokos-foundry.json @@ -0,0 +1,12 @@ +{ + "slug": "demodokos-foundry", + "name": "Demodokos Foundry", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139761562" + ], + "release_date": "2024-01-01", + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/de/dendral.json b/data/software/de/dendral.json new file mode 100644 index 000000000000..5e48276d7691 --- /dev/null +++ b/data/software/de/dendral.json @@ -0,0 +1,8 @@ +{ + "slug": "dendral", + "name": "Dendral", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3022317" + ] +} diff --git a/data/software/de/dendronetwork-a-r-package-to-create-dendrochronological-provenance-networks.json b/data/software/de/dendronetwork-a-r-package-to-create-dendrochronological-provenance-networks.json new file mode 100644 index 000000000000..87d766bbb3c7 --- /dev/null +++ b/data/software/de/dendronetwork-a-r-package-to-create-dendrochronological-provenance-networks.json @@ -0,0 +1,9 @@ +{ + "slug": "dendronetwork-a-r-package-to-create-dendrochronological-provenance-networks", + "name": "dendroNetwork: a R-package to create dendrochronological provenance networks", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131349944" + ], + "release_date": "2024-02-08" +} diff --git a/data/software/de/denis-home.json b/data/software/de/denis-home.json new file mode 100644 index 000000000000..e6d375c0ad7a --- /dev/null +++ b/data/software/de/denis-home.json @@ -0,0 +1,8 @@ +{ + "slug": "denis-home", + "name": "DENIS@Home", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q20240941" + ] +} diff --git a/data/software/de/density-design-knot.json b/data/software/de/density-design-knot.json new file mode 100644 index 000000000000..9522e2158e67 --- /dev/null +++ b/data/software/de/density-design-knot.json @@ -0,0 +1,8 @@ +{ + "slug": "density-design-knot", + "name": "Density Design - Knot", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084910" + ] +} diff --git a/data/software/de/denwer.json b/data/software/de/denwer.json new file mode 100644 index 000000000000..914f519602c2 --- /dev/null +++ b/data/software/de/denwer.json @@ -0,0 +1,11 @@ +{ + "slug": "denwer", + "name": "Denwer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4157853" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/de/depclean.json b/data/software/de/depclean.json new file mode 100644 index 000000000000..47c0d2d57942 --- /dev/null +++ b/data/software/de/depclean.json @@ -0,0 +1,11 @@ +{ + "slug": "depclean", + "name": "depclean", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127485509" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/de/dependabot.json b/data/software/de/dependabot.json new file mode 100644 index 000000000000..2c6935056d6e --- /dev/null +++ b/data/software/de/dependabot.json @@ -0,0 +1,11 @@ +{ + "slug": "dependabot", + "name": "Dependabot", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137368720" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/de/depot-tools.json b/data/software/de/depot-tools.json new file mode 100644 index 000000000000..8c584cad6e0a --- /dev/null +++ b/data/software/de/depot-tools.json @@ -0,0 +1,8 @@ +{ + "slug": "depot-tools", + "name": "depot-tools", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125501931" + ] +} diff --git a/data/software/de/deprem-wiki.json b/data/software/de/deprem-wiki.json new file mode 100644 index 000000000000..53ed5742d045 --- /dev/null +++ b/data/software/de/deprem-wiki.json @@ -0,0 +1,8 @@ +{ + "slug": "deprem-wiki", + "name": "Deprem Wiki", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q133866011" + ] +} diff --git a/data/software/de/deredec.json b/data/software/de/deredec.json new file mode 100644 index 000000000000..30a192d28b31 --- /dev/null +++ b/data/software/de/deredec.json @@ -0,0 +1,8 @@ +{ + "slug": "deredec", + "name": "DEREDEC", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084911" + ] +} diff --git a/data/software/de/desi-iii.json b/data/software/de/desi-iii.json new file mode 100644 index 000000000000..60311d6976a1 --- /dev/null +++ b/data/software/de/desi-iii.json @@ -0,0 +1,8 @@ +{ + "slug": "desi-iii", + "name": "DESI-III", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5204863" + ] +} diff --git a/data/software/de/design-expert.json b/data/software/de/design-expert.json new file mode 100644 index 000000000000..38c41f2eb7c6 --- /dev/null +++ b/data/software/de/design-expert.json @@ -0,0 +1,8 @@ +{ + "slug": "design-expert", + "name": "Design–Expert", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22907735" + ] +} diff --git a/data/software/de/design-rule-for-camera-file-system.json b/data/software/de/design-rule-for-camera-file-system.json new file mode 100644 index 000000000000..faca0b7e9a17 --- /dev/null +++ b/data/software/de/design-rule-for-camera-file-system.json @@ -0,0 +1,8 @@ +{ + "slug": "design-rule-for-camera-file-system", + "name": "Design rule for Camera File system", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1200685" + ] +} diff --git a/data/software/de/designbox.json b/data/software/de/designbox.json new file mode 100644 index 000000000000..c9b43eb7a217 --- /dev/null +++ b/data/software/de/designbox.json @@ -0,0 +1,8 @@ +{ + "slug": "designbox", + "name": "Designbox", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5264413" + ] +} diff --git a/data/software/de/designspark-mechanical.json b/data/software/de/designspark-mechanical.json new file mode 100644 index 000000000000..eb9846667048 --- /dev/null +++ b/data/software/de/designspark-mechanical.json @@ -0,0 +1,11 @@ +{ + "slug": "designspark-mechanical", + "name": "DesignSpark Mechanical", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17628742" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/de/designspark-pcb-pro.json b/data/software/de/designspark-pcb-pro.json new file mode 100644 index 000000000000..6bb4c9d6e11b --- /dev/null +++ b/data/software/de/designspark-pcb-pro.json @@ -0,0 +1,8 @@ +{ + "slug": "designspark-pcb-pro", + "name": "DesignSpark PCB Pro", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q97860797" + ] +} diff --git a/data/software/de/deskalerts.json b/data/software/de/deskalerts.json new file mode 100644 index 000000000000..71a8e050c05b --- /dev/null +++ b/data/software/de/deskalerts.json @@ -0,0 +1,19 @@ +{ + "slug": "deskalerts", + "name": "DeskAlerts", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137298996" + ], + "developers": [ + "ToolbarStudio Inc" + ], + "operating_systems": [ + "iOS", + "macOS", + "Microsoft Windows" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/de/deskmate.json b/data/software/de/deskmate.json new file mode 100644 index 000000000000..ff38b5ee836f --- /dev/null +++ b/data/software/de/deskmate.json @@ -0,0 +1,14 @@ +{ + "slug": "deskmate", + "name": "DeskMate", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5264540" + ], + "developers": [ + "Tandy Corporation" + ], + "programming_languages": [ + "assembly language" + ] +} diff --git a/data/software/de/deskmemo.json b/data/software/de/deskmemo.json new file mode 100644 index 000000000000..68ffd818a79a --- /dev/null +++ b/data/software/de/deskmemo.json @@ -0,0 +1,14 @@ +{ + "slug": "deskmemo", + "name": "DeskMemo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139591339" + ], + "developers": [ + "Cynthia Luo" + ], + "operating_systems": [ + "macOS" + ] +} diff --git a/data/software/de/deskspace.json b/data/software/de/deskspace.json new file mode 100644 index 000000000000..48a30d93b0cb --- /dev/null +++ b/data/software/de/deskspace.json @@ -0,0 +1,8 @@ +{ + "slug": "deskspace", + "name": "DeskSpace", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1979133" + ] +} diff --git a/data/software/de/desktime.json b/data/software/de/desktime.json new file mode 100644 index 000000000000..5eb502c0b7c1 --- /dev/null +++ b/data/software/de/desktime.json @@ -0,0 +1,8 @@ +{ + "slug": "desktime", + "name": "DeskTime", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5264546" + ] +} diff --git a/data/software/de/desktop-architect.json b/data/software/de/desktop-architect.json new file mode 100644 index 000000000000..0310a9e7666d --- /dev/null +++ b/data/software/de/desktop-architect.json @@ -0,0 +1,8 @@ +{ + "slug": "desktop-architect", + "name": "Desktop Architect", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5264565" + ] +} diff --git a/data/software/de/desktop-destroyer-christmassy.json b/data/software/de/desktop-destroyer-christmassy.json new file mode 100644 index 000000000000..c7c8c8061664 --- /dev/null +++ b/data/software/de/desktop-destroyer-christmassy.json @@ -0,0 +1,16 @@ +{ + "slug": "desktop-destroyer-christmassy", + "name": "Desktop Destroyer Christmassy", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138646292" + ], + "release_date": "2003-01-01", + "developers": [ + "Gemtree" + ], + "genres": [ + "action game", + "shooter game" + ] +} diff --git a/data/software/de/desktop-gadget-gallery.json b/data/software/de/desktop-gadget-gallery.json new file mode 100644 index 000000000000..1ed9c393d364 --- /dev/null +++ b/data/software/de/desktop-gadget-gallery.json @@ -0,0 +1,8 @@ +{ + "slug": "desktop-gadget-gallery", + "name": "Desktop Gadget Gallery", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17187311" + ] +} diff --git a/data/software/de/desktop-kanojo.json b/data/software/de/desktop-kanojo.json new file mode 100644 index 000000000000..061b1f174f14 --- /dev/null +++ b/data/software/de/desktop-kanojo.json @@ -0,0 +1,8 @@ +{ + "slug": "desktop-kanojo", + "name": "Desktop Kanojo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106567534" + ] +} diff --git a/data/software/de/desktoptwo.json b/data/software/de/desktoptwo.json new file mode 100644 index 000000000000..951552a62f66 --- /dev/null +++ b/data/software/de/desktoptwo.json @@ -0,0 +1,8 @@ +{ + "slug": "desktoptwo", + "name": "DesktopTwo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3705981" + ] +} diff --git a/data/software/de/desmond.json b/data/software/de/desmond.json new file mode 100644 index 000000000000..6446d42b8b89 --- /dev/null +++ b/data/software/de/desmond.json @@ -0,0 +1,11 @@ +{ + "slug": "desmond", + "name": "Desmond", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5264661" + ], + "developers": [ + "D. E. Shaw Research" + ] +} diff --git a/data/software/de/desmos.json b/data/software/de/desmos.json new file mode 100644 index 000000000000..01b997e282bb --- /dev/null +++ b/data/software/de/desmos.json @@ -0,0 +1,17 @@ +{ + "slug": "desmos", + "name": "Desmos", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16909328" + ], + "developers": [ + "Desmos" + ], + "operating_systems": [ + "iOS" + ], + "programming_languages": [ + "TypeScript" + ] +} diff --git a/data/software/de/detailed-city-experience.json b/data/software/de/detailed-city-experience.json new file mode 100644 index 000000000000..5dee8a3b3ad6 --- /dev/null +++ b/data/software/de/detailed-city-experience.json @@ -0,0 +1,8 @@ +{ + "slug": "detailed-city-experience", + "name": "Detailed City Experience", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135938694" + ] +} diff --git a/data/software/de/detex.json b/data/software/de/detex.json new file mode 100644 index 000000000000..debaa4294486 --- /dev/null +++ b/data/software/de/detex.json @@ -0,0 +1,8 @@ +{ + "slug": "detex", + "name": "detex", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63064765" + ] +} diff --git a/data/software/de/deva.json b/data/software/de/deva.json new file mode 100644 index 000000000000..fc6963eb16b2 --- /dev/null +++ b/data/software/de/deva.json @@ -0,0 +1,8 @@ +{ + "slug": "deva", + "name": "Deva", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125523833" + ] +} diff --git a/data/software/de/devast-ace-ii.json b/data/software/de/devast-ace-ii.json new file mode 100644 index 000000000000..96b031dd4ca5 --- /dev/null +++ b/data/software/de/devast-ace-ii.json @@ -0,0 +1,9 @@ +{ + "slug": "devast-ace-ii", + "name": "Devast Ace II", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11774679" + ], + "release_date": "1992-01-01" +} diff --git a/data/software/de/deveco-studio.json b/data/software/de/deveco-studio.json new file mode 100644 index 000000000000..7c8ef16aee95 --- /dev/null +++ b/data/software/de/deveco-studio.json @@ -0,0 +1,11 @@ +{ + "slug": "deveco-studio", + "name": "DevEco Studio", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113213972" + ], + "developers": [ + "Huawei" + ] +} diff --git a/data/software/de/devmanual.json b/data/software/de/devmanual.json new file mode 100644 index 000000000000..a405652f9d7c --- /dev/null +++ b/data/software/de/devmanual.json @@ -0,0 +1,8 @@ +{ + "slug": "devmanual", + "name": "devmanual", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974804" + ] +} diff --git a/data/software/de/devonthink.json b/data/software/de/devonthink.json new file mode 100644 index 000000000000..ead6e787c9bf --- /dev/null +++ b/data/software/de/devonthink.json @@ -0,0 +1,9 @@ +{ + "slug": "devonthink", + "name": "DEVONthink", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084914" + ], + "release_date": "2005-01-01" +} diff --git a/data/software/de/devpartner.json b/data/software/de/devpartner.json new file mode 100644 index 000000000000..59e2eb07973f --- /dev/null +++ b/data/software/de/devpartner.json @@ -0,0 +1,13 @@ +{ + "slug": "devpartner", + "name": "DevPartner", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5266377" + ], + "developers": [ + "Nu-Mega Technologies", + "Compuware", + "Borland" + ] +} diff --git a/data/software/de/dewesoftx.json b/data/software/de/dewesoftx.json new file mode 100644 index 000000000000..426b5ac03982 --- /dev/null +++ b/data/software/de/dewesoftx.json @@ -0,0 +1,8 @@ +{ + "slug": "dewesoftx", + "name": "DewesoftX", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105744786" + ] +} diff --git a/data/software/de/dex.json b/data/software/de/dex.json new file mode 100644 index 000000000000..b1fd0197a433 --- /dev/null +++ b/data/software/de/dex.json @@ -0,0 +1,12 @@ +{ + "slug": "dex", + "name": "Dex", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25339793" + ], + "release_date": "2015-11-20", + "developers": [ + "Zero-G Ltd" + ] +} diff --git a/data/software/df/dfbnet.json b/data/software/df/dfbnet.json new file mode 100644 index 000000000000..afe2508f0ebd --- /dev/null +++ b/data/software/df/dfbnet.json @@ -0,0 +1,8 @@ +{ + "slug": "dfbnet", + "name": "DFBnet", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1153287" + ] +} diff --git a/data/software/df/dfg-viewer.json b/data/software/df/dfg-viewer.json new file mode 100644 index 000000000000..238380d42168 --- /dev/null +++ b/data/software/df/dfg-viewer.json @@ -0,0 +1,8 @@ +{ + "slug": "dfg-viewer", + "name": "DFG Viewer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q56298708" + ] +} diff --git a/data/software/df/dfr-browser.json b/data/software/df/dfr-browser.json new file mode 100644 index 000000000000..f48bf61eeca3 --- /dev/null +++ b/data/software/df/dfr-browser.json @@ -0,0 +1,8 @@ +{ + "slug": "dfr-browser", + "name": "DfR Browser", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084915" + ] +} diff --git a/data/software/df/dfsms.json b/data/software/df/dfsms.json new file mode 100644 index 000000000000..e8df9213477a --- /dev/null +++ b/data/software/df/dfsms.json @@ -0,0 +1,11 @@ +{ + "slug": "dfsms", + "name": "DFSMS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28871078" + ], + "developers": [ + "IBM" + ] +} diff --git a/data/software/df/dfsmsdfp.json b/data/software/df/dfsmsdfp.json new file mode 100644 index 000000000000..d6beaf79a017 --- /dev/null +++ b/data/software/df/dfsmsdfp.json @@ -0,0 +1,14 @@ +{ + "slug": "dfsmsdfp", + "name": "DFSMSdfp", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28871081" + ], + "developers": [ + "IBM" + ], + "operating_systems": [ + "z/OS" + ] +} diff --git a/data/software/dh/dh-press.json b/data/software/dh/dh-press.json new file mode 100644 index 000000000000..acf16386c2c3 --- /dev/null +++ b/data/software/dh/dh-press.json @@ -0,0 +1,8 @@ +{ + "slug": "dh-press", + "name": "DH Press", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084917" + ] +} diff --git a/data/software/dh/dhammin.json b/data/software/dh/dhammin.json new file mode 100644 index 000000000000..8232ffb588b2 --- /dev/null +++ b/data/software/dh/dhammin.json @@ -0,0 +1,13 @@ +{ + "slug": "dhammin", + "name": "Dhammin", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q65552828" + ], + "programming_languages": [ + "PHP", + "Java", + "Objective-C" + ] +} diff --git a/data/software/dh/dhd-blog.json b/data/software/dh/dhd-blog.json new file mode 100644 index 000000000000..b67b9ea03e77 --- /dev/null +++ b/data/software/dh/dhd-blog.json @@ -0,0 +1,8 @@ +{ + "slug": "dhd-blog", + "name": "DHd Blog", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084916" + ] +} diff --git a/data/software/dh/dhtmlx.json b/data/software/dh/dhtmlx.json new file mode 100644 index 000000000000..67b052d55800 --- /dev/null +++ b/data/software/dh/dhtmlx.json @@ -0,0 +1,11 @@ +{ + "slug": "dhtmlx", + "name": "DHTMLX", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5269827" + ], + "licenses": [ + "GNU General Public License, version 2.0" + ] +} diff --git a/data/software/di/dial-gate-softswitch-pbx.json b/data/software/di/dial-gate-softswitch-pbx.json new file mode 100644 index 000000000000..999b5819f051 --- /dev/null +++ b/data/software/di/dial-gate-softswitch-pbx.json @@ -0,0 +1,15 @@ +{ + "slug": "dial-gate-softswitch-pbx", + "name": "Dial-Gate Softswitch PBX", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18754144" + ], + "release_date": "2006-01-01", + "developers": [ + "Dialexia" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/di/dial-office-ip-pbx.json b/data/software/di/dial-office-ip-pbx.json new file mode 100644 index 000000000000..b38c64bed257 --- /dev/null +++ b/data/software/di/dial-office-ip-pbx.json @@ -0,0 +1,15 @@ +{ + "slug": "dial-office-ip-pbx", + "name": "Dial-Office IP-PBX", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18351594" + ], + "release_date": "2003-01-01", + "developers": [ + "Dialexia" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/di/dialidol.json b/data/software/di/dialidol.json new file mode 100644 index 000000000000..99d95559cc93 --- /dev/null +++ b/data/software/di/dialidol.json @@ -0,0 +1,11 @@ +{ + "slug": "dialidol", + "name": "DialIdol", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5270433" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/di/dialogos.json b/data/software/di/dialogos.json new file mode 100644 index 000000000000..01728ddaa054 --- /dev/null +++ b/data/software/di/dialogos.json @@ -0,0 +1,8 @@ +{ + "slug": "dialogos", + "name": "DialogOS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116328" + ] +} diff --git a/data/software/di/dialogue-assisted-visual-environment-for-geoinformation.json b/data/software/di/dialogue-assisted-visual-environment-for-geoinformation.json new file mode 100644 index 000000000000..223665afb01f --- /dev/null +++ b/data/software/di/dialogue-assisted-visual-environment-for-geoinformation.json @@ -0,0 +1,11 @@ +{ + "slug": "dialogue-assisted-visual-environment-for-geoinformation", + "name": "Dialogue-Assisted Visual Environment for Geoinformation", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5270593" + ], + "developers": [ + "Pennsylvania State University" + ] +} diff --git a/data/software/di/dialux.json b/data/software/di/dialux.json new file mode 100644 index 000000000000..f8c8e161cf10 --- /dev/null +++ b/data/software/di/dialux.json @@ -0,0 +1,8 @@ +{ + "slug": "dialux", + "name": "DIAlux", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q635722" + ] +} diff --git a/data/software/di/diamondtouch.json b/data/software/di/diamondtouch.json new file mode 100644 index 000000000000..0080ce5cbd8d --- /dev/null +++ b/data/software/di/diamondtouch.json @@ -0,0 +1,11 @@ +{ + "slug": "diamondtouch", + "name": "DiamondTouch", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5270714" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/di/diastext.json b/data/software/di/diastext.json new file mode 100644 index 000000000000..9326fa89a65d --- /dev/null +++ b/data/software/di/diastext.json @@ -0,0 +1,8 @@ +{ + "slug": "diastext", + "name": "DIASTEXT", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125523432" + ] +} diff --git a/data/software/di/dibbler-client.json b/data/software/di/dibbler-client.json new file mode 100644 index 000000000000..e9f1fb144d1e --- /dev/null +++ b/data/software/di/dibbler-client.json @@ -0,0 +1,8 @@ +{ + "slug": "dibbler-client", + "name": "dibbler-client", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q88501646" + ] +} diff --git a/data/software/di/dibbler.json b/data/software/di/dibbler.json new file mode 100644 index 000000000000..d2f9e47483b6 --- /dev/null +++ b/data/software/di/dibbler.json @@ -0,0 +1,8 @@ +{ + "slug": "dibbler", + "name": "dibbler", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q88501765" + ] +} diff --git a/data/software/di/dicra.json b/data/software/di/dicra.json new file mode 100644 index 000000000000..34333fa05f2b --- /dev/null +++ b/data/software/di/dicra.json @@ -0,0 +1,11 @@ +{ + "slug": "dicra", + "name": "DiCRA", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115688435" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/di/diction.json b/data/software/di/diction.json new file mode 100644 index 000000000000..b66359482aea --- /dev/null +++ b/data/software/di/diction.json @@ -0,0 +1,15 @@ +{ + "slug": "diction", + "name": "Diction", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76184013" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/di/dictionary.json b/data/software/di/dictionary.json new file mode 100644 index 000000000000..8e0dc677e2a7 --- /dev/null +++ b/data/software/di/dictionary.json @@ -0,0 +1,21 @@ +{ + "slug": "dictionary", + "name": "Dictionary", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2706736" + ], + "release_date": "2005-01-01", + "developers": [ + "Apple Inc." + ], + "publishers": [ + "Apple Inc." + ], + "licenses": [ + "proprietary license" + ], + "genres": [ + "dictionary" + ] +} diff --git a/data/software/di/didgeridoo-other-primitive-instruments.json b/data/software/di/didgeridoo-other-primitive-instruments.json new file mode 100644 index 000000000000..bb6b54abd3c1 --- /dev/null +++ b/data/software/di/didgeridoo-other-primitive-instruments.json @@ -0,0 +1,12 @@ +{ + "slug": "didgeridoo-other-primitive-instruments", + "name": "Didgeridoo & Other Primitive Instruments", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135455306" + ], + "release_date": "1996-01-01", + "publishers": [ + "Big Fish Audio" + ] +} diff --git a/data/software/di/didi.json b/data/software/di/didi.json new file mode 100644 index 000000000000..f958a69b52b4 --- /dev/null +++ b/data/software/di/didi.json @@ -0,0 +1,8 @@ +{ + "slug": "didi", + "name": "DiDi", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q21190510" + ] +} diff --git a/data/software/di/didiwiki.json b/data/software/di/didiwiki.json new file mode 100644 index 000000000000..7f682d9bae49 --- /dev/null +++ b/data/software/di/didiwiki.json @@ -0,0 +1,8 @@ +{ + "slug": "didiwiki", + "name": "didiwiki", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10846949" + ] +} diff --git a/data/software/di/didoo-ai.json b/data/software/di/didoo-ai.json new file mode 100644 index 000000000000..a846b9570924 --- /dev/null +++ b/data/software/di/didoo-ai.json @@ -0,0 +1,8 @@ +{ + "slug": "didoo-ai", + "name": "Didoo AI", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138863716" + ] +} diff --git a/data/software/di/diella.json b/data/software/di/diella.json new file mode 100644 index 000000000000..f2df83cc1e0a --- /dev/null +++ b/data/software/di/diella.json @@ -0,0 +1,11 @@ +{ + "slug": "diella", + "name": "Diella", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136236435" + ], + "developers": [ + "National Agency for Information Society" + ] +} diff --git a/data/software/di/diem.json b/data/software/di/diem.json new file mode 100644 index 000000000000..13e5780d4497 --- /dev/null +++ b/data/software/di/diem.json @@ -0,0 +1,14 @@ +{ + "slug": "diem", + "name": "Diem", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3027475" + ], + "programming_languages": [ + "PHP" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/di/diff-text.json b/data/software/di/diff-text.json new file mode 100644 index 000000000000..cfd72bd76fc4 --- /dev/null +++ b/data/software/di/diff-text.json @@ -0,0 +1,9 @@ +{ + "slug": "diff-text", + "name": "Diff-Text", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5275255" + ], + "release_date": "2012-10-29" +} diff --git a/data/software/di/diff3.json b/data/software/di/diff3.json new file mode 100644 index 000000000000..025acf9ad303 --- /dev/null +++ b/data/software/di/diff3.json @@ -0,0 +1,11 @@ +{ + "slug": "diff3", + "name": "diff3", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5275258" + ], + "developers": [ + "Bell Labs" + ] +} diff --git a/data/software/di/diffmask.json b/data/software/di/diffmask.json new file mode 100644 index 000000000000..0f4a1704e01d --- /dev/null +++ b/data/software/di/diffmask.json @@ -0,0 +1,8 @@ +{ + "slug": "diffmask", + "name": "diffmask", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974807" + ] +} diff --git a/data/software/di/diffpack.json b/data/software/di/diffpack.json new file mode 100644 index 000000000000..26d36e71f6cd --- /dev/null +++ b/data/software/di/diffpack.json @@ -0,0 +1,19 @@ +{ + "slug": "diffpack", + "name": "Diffpack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5275397" + ], + "release_date": "1991-01-01", + "developers": [ + "Hans Petter Langtangen" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [ + "Python" + ] +} diff --git a/data/software/di/diffstat.json b/data/software/di/diffstat.json new file mode 100644 index 000000000000..587c507ece03 --- /dev/null +++ b/data/software/di/diffstat.json @@ -0,0 +1,15 @@ +{ + "slug": "diffstat", + "name": "diffstat", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62847936" + ], + "release_date": "1994-06-13", + "developers": [ + "Thomas E. Dickey" + ], + "operating_systems": [ + "Unix-like operating system" + ] +} diff --git a/data/software/di/digg-reader.json b/data/software/di/digg-reader.json new file mode 100644 index 000000000000..030ef70cb13f --- /dev/null +++ b/data/software/di/digg-reader.json @@ -0,0 +1,12 @@ +{ + "slug": "digg-reader", + "name": "Digg Reader", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16927636" + ], + "release_date": "2013-06-26", + "developers": [ + "Digg" + ] +} diff --git a/data/software/di/dight.json b/data/software/di/dight.json new file mode 100644 index 000000000000..003c293d1e8a --- /dev/null +++ b/data/software/di/dight.json @@ -0,0 +1,8 @@ +{ + "slug": "dight", + "name": "Dight", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138465445" + ] +} diff --git a/data/software/di/digiarty-winx-dvd-ripper-platinum.json b/data/software/di/digiarty-winx-dvd-ripper-platinum.json new file mode 100644 index 000000000000..1571cc8cbe7b --- /dev/null +++ b/data/software/di/digiarty-winx-dvd-ripper-platinum.json @@ -0,0 +1,11 @@ +{ + "slug": "digiarty-winx-dvd-ripper-platinum", + "name": "Digiarty WinX DVD Ripper Platinum", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18351753" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/di/digicam-print-channel.json b/data/software/di/digicam-print-channel.json new file mode 100644 index 000000000000..94f62ba74c06 --- /dev/null +++ b/data/software/di/digicam-print-channel.json @@ -0,0 +1,9 @@ +{ + "slug": "digicam-print-channel", + "name": "Digicam Print Channel", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10266307" + ], + "release_date": "2008-07-23" +} diff --git a/data/software/di/digiguide.json b/data/software/di/digiguide.json new file mode 100644 index 000000000000..be54e70cfdcd --- /dev/null +++ b/data/software/di/digiguide.json @@ -0,0 +1,8 @@ +{ + "slug": "digiguide", + "name": "DigiGuide", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5275707" + ] +} diff --git a/data/software/di/digikavach.json b/data/software/di/digikavach.json new file mode 100644 index 000000000000..9cab2c5d0c67 --- /dev/null +++ b/data/software/di/digikavach.json @@ -0,0 +1,8 @@ +{ + "slug": "digikavach", + "name": "DigiKavach", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123169504" + ] +} diff --git a/data/software/di/digilib.json b/data/software/di/digilib.json new file mode 100644 index 000000000000..f6d642ef18e5 --- /dev/null +++ b/data/software/di/digilib.json @@ -0,0 +1,8 @@ +{ + "slug": "digilib", + "name": "digilib", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084918" + ] +} diff --git a/data/software/di/digiprodify.json b/data/software/di/digiprodify.json new file mode 100644 index 000000000000..7f8d26079338 --- /dev/null +++ b/data/software/di/digiprodify.json @@ -0,0 +1,8 @@ +{ + "slug": "digiprodify", + "name": "DigiProdify", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139917723" + ] +} diff --git a/data/software/di/digital-adoption-platform.json b/data/software/di/digital-adoption-platform.json new file mode 100644 index 000000000000..b97463e83755 --- /dev/null +++ b/data/software/di/digital-adoption-platform.json @@ -0,0 +1,8 @@ +{ + "slug": "digital-adoption-platform", + "name": "Digital adoption platform", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116030310" + ] +} diff --git a/data/software/di/digital-automated-identification-system.json b/data/software/di/digital-automated-identification-system.json new file mode 100644 index 000000000000..c604ef38f1d4 --- /dev/null +++ b/data/software/di/digital-automated-identification-system.json @@ -0,0 +1,11 @@ +{ + "slug": "digital-automated-identification-system", + "name": "Digital Automated Identification SYstem", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5275790" + ], + "developers": [ + "Mark A. O'Neill" + ] +} diff --git a/data/software/di/digital-dna.json b/data/software/di/digital-dna.json new file mode 100644 index 000000000000..fe650d48809f --- /dev/null +++ b/data/software/di/digital-dna.json @@ -0,0 +1,8 @@ +{ + "slug": "digital-dna", + "name": "Digital DNA", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084919" + ] +} diff --git a/data/software/di/digital-driver.json b/data/software/di/digital-driver.json new file mode 100644 index 000000000000..82e852817dec --- /dev/null +++ b/data/software/di/digital-driver.json @@ -0,0 +1,8 @@ +{ + "slug": "digital-driver", + "name": "Digital Driver", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106140468" + ] +} diff --git a/data/software/di/digital-electronics-education-and-design-suite.json b/data/software/di/digital-electronics-education-and-design-suite.json new file mode 100644 index 000000000000..340b286b39fd --- /dev/null +++ b/data/software/di/digital-electronics-education-and-design-suite.json @@ -0,0 +1,15 @@ +{ + "slug": "digital-electronics-education-and-design-suite", + "name": "Digital Electronics Education and Design Suite", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60542040" + ], + "release_date": "2002-01-01", + "operating_systems": [ + "Microsoft Windows" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/di/digital-factory.json b/data/software/di/digital-factory.json new file mode 100644 index 000000000000..90ba46ec1500 --- /dev/null +++ b/data/software/di/digital-factory.json @@ -0,0 +1,8 @@ +{ + "slug": "digital-factory", + "name": "Digital factory", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1224893" + ] +} diff --git a/data/software/di/digital-humanities-austria-dha.json b/data/software/di/digital-humanities-austria-dha.json new file mode 100644 index 000000000000..da0cffee7f0c --- /dev/null +++ b/data/software/di/digital-humanities-austria-dha.json @@ -0,0 +1,8 @@ +{ + "slug": "digital-humanities-austria-dha", + "name": "digital humanities austria (DHA)", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087795" + ] +} diff --git a/data/software/di/digital-information-archiving-system.json b/data/software/di/digital-information-archiving-system.json new file mode 100644 index 000000000000..b8c4dbe1049c --- /dev/null +++ b/data/software/di/digital-information-archiving-system.json @@ -0,0 +1,11 @@ +{ + "slug": "digital-information-archiving-system", + "name": "Digital Information Archiving System", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q37608988" + ], + "developers": [ + "IBM" + ] +} diff --git a/data/software/di/digital-libraries-federation.json b/data/software/di/digital-libraries-federation.json new file mode 100644 index 000000000000..c9cd87c48c14 --- /dev/null +++ b/data/software/di/digital-libraries-federation.json @@ -0,0 +1,8 @@ +{ + "slug": "digital-libraries-federation", + "name": "Digital Libraries Federation", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084921" + ] +} diff --git a/data/software/di/digital-management-of-curatorial-processes-obatal-plug-in.json b/data/software/di/digital-management-of-curatorial-processes-obatal-plug-in.json new file mode 100644 index 000000000000..d9a21b587d66 --- /dev/null +++ b/data/software/di/digital-management-of-curatorial-processes-obatal-plug-in.json @@ -0,0 +1,8 @@ +{ + "slug": "digital-management-of-curatorial-processes-obatal-plug-in", + "name": "Digital Management of Curatorial Processes (Obatalá plug-in)", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140364397" + ] +} diff --git a/data/software/di/digital-mappa.json b/data/software/di/digital-mappa.json new file mode 100644 index 000000000000..bd203cb08419 --- /dev/null +++ b/data/software/di/digital-mappa.json @@ -0,0 +1,8 @@ +{ + "slug": "digital-mappa", + "name": "Digital Mappa", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084922" + ] +} diff --git a/data/software/di/digital-original.json b/data/software/di/digital-original.json new file mode 100644 index 000000000000..b42cdd36bf09 --- /dev/null +++ b/data/software/di/digital-original.json @@ -0,0 +1,8 @@ +{ + "slug": "digital-original", + "name": "Digital Original", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140356383" + ] +} diff --git a/data/software/di/digital-performer.json b/data/software/di/digital-performer.json new file mode 100644 index 000000000000..66aba99a8ddc --- /dev/null +++ b/data/software/di/digital-performer.json @@ -0,0 +1,11 @@ +{ + "slug": "digital-performer", + "name": "Digital Performer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q499062" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/di/digital-photo-professional.json b/data/software/di/digital-photo-professional.json new file mode 100644 index 000000000000..cc4163bbbc4c --- /dev/null +++ b/data/software/di/digital-photo-professional.json @@ -0,0 +1,15 @@ +{ + "slug": "digital-photo-professional", + "name": "Digital Photo Professional", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1224790" + ], + "developers": [ + "Canon Inc." + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/software/di/digital-project.json b/data/software/di/digital-project.json new file mode 100644 index 000000000000..b81d8993ec01 --- /dev/null +++ b/data/software/di/digital-project.json @@ -0,0 +1,8 @@ +{ + "slug": "digital-project", + "name": "Digital Project", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3027812" + ] +} diff --git a/data/software/di/digital-record-object-identification.json b/data/software/di/digital-record-object-identification.json new file mode 100644 index 000000000000..09fce57d6f4d --- /dev/null +++ b/data/software/di/digital-record-object-identification.json @@ -0,0 +1,17 @@ +{ + "slug": "digital-record-object-identification", + "name": "Digital Record Object Identification", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q24305922" + ], + "developers": [ + "UK National Archives" + ], + "programming_languages": [ + "Java" + ], + "licenses": [ + "3-clause BSD License" + ] +} diff --git a/data/software/di/digital-replay-system.json b/data/software/di/digital-replay-system.json new file mode 100644 index 000000000000..a3eb231c07e4 --- /dev/null +++ b/data/software/di/digital-replay-system.json @@ -0,0 +1,15 @@ +{ + "slug": "digital-replay-system", + "name": "digital replay system", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107035677" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "licenses": [ + "BSD licenses" + ] +} diff --git a/data/software/di/digital-repository-audit-method-based-on-risk-assessment.json b/data/software/di/digital-repository-audit-method-based-on-risk-assessment.json new file mode 100644 index 000000000000..9b6983035ab8 --- /dev/null +++ b/data/software/di/digital-repository-audit-method-based-on-risk-assessment.json @@ -0,0 +1,12 @@ +{ + "slug": "digital-repository-audit-method-based-on-risk-assessment", + "name": "Digital repository audit method based on risk assessment", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22907808" + ], + "release_date": "2007-01-01", + "developers": [ + "Digital Curation Centre" + ] +} diff --git a/data/software/di/digital-visual-fortran.json b/data/software/di/digital-visual-fortran.json new file mode 100644 index 000000000000..02f7e0eea457 --- /dev/null +++ b/data/software/di/digital-visual-fortran.json @@ -0,0 +1,11 @@ +{ + "slug": "digital-visual-fortran", + "name": "Digital Visual Fortran", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4037350" + ], + "developers": [ + "Digital Equipment Corporation" + ] +} diff --git a/data/software/di/digitalbooker.json b/data/software/di/digitalbooker.json new file mode 100644 index 000000000000..69b47fdf250f --- /dev/null +++ b/data/software/di/digitalbooker.json @@ -0,0 +1,8 @@ +{ + "slug": "digitalbooker", + "name": "DigitalBooker", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22907811" + ] +} diff --git a/data/software/di/digitalcolor-meter.json b/data/software/di/digitalcolor-meter.json new file mode 100644 index 000000000000..bab8d37a6efc --- /dev/null +++ b/data/software/di/digitalcolor-meter.json @@ -0,0 +1,14 @@ +{ + "slug": "digitalcolor-meter", + "name": "DigitalColor Meter", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3707596" + ], + "developers": [ + "Apple Inc." + ], + "operating_systems": [ + "macOS" + ] +} diff --git a/data/software/di/digitales-schaudepot.json b/data/software/di/digitales-schaudepot.json new file mode 100644 index 000000000000..a6db7ea1d467 --- /dev/null +++ b/data/software/di/digitales-schaudepot.json @@ -0,0 +1,8 @@ +{ + "slug": "digitales-schaudepot", + "name": "digitales schaudepot", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087794" + ] +} diff --git a/data/software/di/digitalyser-io.json b/data/software/di/digitalyser-io.json new file mode 100644 index 000000000000..0e010726578e --- /dev/null +++ b/data/software/di/digitalyser-io.json @@ -0,0 +1,8 @@ +{ + "slug": "digitalyser-io", + "name": "digitalyser.io", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140467808" + ] +} diff --git a/data/software/di/digress-it.json b/data/software/di/digress-it.json new file mode 100644 index 000000000000..fe12e91fad2b --- /dev/null +++ b/data/software/di/digress-it.json @@ -0,0 +1,8 @@ +{ + "slug": "digress-it", + "name": "Digress.it", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084923" + ] +} diff --git a/data/software/di/digsby.json b/data/software/di/digsby.json new file mode 100644 index 000000000000..6be0815f2b68 --- /dev/null +++ b/data/software/di/digsby.json @@ -0,0 +1,14 @@ +{ + "slug": "digsby", + "name": "Digsby", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q58069" + ], + "operating_systems": [ + "Microsoft Windows" + ], + "licenses": [ + "Python Software Foundation License" + ] +} diff --git a/data/software/di/diino.json b/data/software/di/diino.json new file mode 100644 index 000000000000..518f8d2adab7 --- /dev/null +++ b/data/software/di/diino.json @@ -0,0 +1,13 @@ +{ + "slug": "diino", + "name": "Diino", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5276472" + ], + "release_date": "2004-01-01", + "operating_systems": [ + "iPhone", + "Microsoft Windows" + ] +} diff --git a/data/software/di/dimag.json b/data/software/di/dimag.json new file mode 100644 index 000000000000..50a47574edf7 --- /dev/null +++ b/data/software/di/dimag.json @@ -0,0 +1,8 @@ +{ + "slug": "dimag", + "name": "DIMAG", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110532511" + ] +} diff --git a/data/software/di/dimensions-cm.json b/data/software/di/dimensions-cm.json new file mode 100644 index 000000000000..b084815d56a5 --- /dev/null +++ b/data/software/di/dimensions-cm.json @@ -0,0 +1,11 @@ +{ + "slug": "dimensions-cm", + "name": "Dimensions CM", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22907820" + ], + "developers": [ + "Serena Software" + ] +} diff --git a/data/software/di/dimreduction.json b/data/software/di/dimreduction.json new file mode 100644 index 000000000000..7360063d6529 --- /dev/null +++ b/data/software/di/dimreduction.json @@ -0,0 +1,11 @@ +{ + "slug": "dimreduction", + "name": "dimreduction", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113308276" + ], + "programming_languages": [ + "Java" + ] +} diff --git a/data/software/di/dinocapture.json b/data/software/di/dinocapture.json new file mode 100644 index 000000000000..d945f3aa8a38 --- /dev/null +++ b/data/software/di/dinocapture.json @@ -0,0 +1,8 @@ +{ + "slug": "dinocapture", + "name": "DinoCapture", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112650960" + ] +} diff --git a/data/software/di/dipmeter-advisor.json b/data/software/di/dipmeter-advisor.json new file mode 100644 index 000000000000..dcd4fb28cf67 --- /dev/null +++ b/data/software/di/dipmeter-advisor.json @@ -0,0 +1,14 @@ +{ + "slug": "dipmeter-advisor", + "name": "Dipmeter Advisor", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5280016" + ], + "developers": [ + "SLB" + ], + "programming_languages": [ + "Interlisp" + ] +} diff --git a/data/software/di/dips.json b/data/software/di/dips.json new file mode 100644 index 000000000000..3265636ed3e2 --- /dev/null +++ b/data/software/di/dips.json @@ -0,0 +1,8 @@ +{ + "slug": "dips", + "name": "DIPS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11964312" + ] +} diff --git a/data/software/di/diptrace.json b/data/software/di/diptrace.json new file mode 100644 index 000000000000..9fc537a28153 --- /dev/null +++ b/data/software/di/diptrace.json @@ -0,0 +1,16 @@ +{ + "slug": "diptrace", + "name": "DipTrace", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5279665" + ], + "release_date": "2004-08-01", + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [ + "Delphi" + ] +} diff --git a/data/software/di/direct3d-12.json b/data/software/di/direct3d-12.json new file mode 100644 index 000000000000..359ef72d7747 --- /dev/null +++ b/data/software/di/direct3d-12.json @@ -0,0 +1,8 @@ +{ + "slug": "direct3d-12", + "name": "Direct3D 12", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18395655" + ] +} diff --git a/data/software/di/direct3d.json b/data/software/di/direct3d.json new file mode 100644 index 000000000000..6e53ea268e8e --- /dev/null +++ b/data/software/di/direct3d.json @@ -0,0 +1,11 @@ +{ + "slug": "direct3d", + "name": "Direct3D", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q939208" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/di/directmusic.json b/data/software/di/directmusic.json new file mode 100644 index 000000000000..909a15ecaf32 --- /dev/null +++ b/data/software/di/directmusic.json @@ -0,0 +1,11 @@ +{ + "slug": "directmusic", + "name": "DirectMusic", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3495959" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/di/director-musices.json b/data/software/di/director-musices.json new file mode 100644 index 000000000000..7c8220cc2abe --- /dev/null +++ b/data/software/di/director-musices.json @@ -0,0 +1,8 @@ +{ + "slug": "director-musices", + "name": "Director Musices", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5280527" + ] +} diff --git a/data/software/di/directory-utility.json b/data/software/di/directory-utility.json new file mode 100644 index 000000000000..ad351916d3d2 --- /dev/null +++ b/data/software/di/directory-utility.json @@ -0,0 +1,11 @@ +{ + "slug": "directory-utility", + "name": "Directory Utility", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1049235" + ], + "developers": [ + "Apple Inc." + ] +} diff --git a/data/software/di/directskin.json b/data/software/di/directskin.json new file mode 100644 index 000000000000..bda93ad0ba0d --- /dev/null +++ b/data/software/di/directskin.json @@ -0,0 +1,8 @@ +{ + "slug": "directskin", + "name": "DirectSkin", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5280234" + ] +} diff --git a/data/software/di/directsound.json b/data/software/di/directsound.json new file mode 100644 index 000000000000..8c91c3ea11f2 --- /dev/null +++ b/data/software/di/directsound.json @@ -0,0 +1,8 @@ +{ + "slug": "directsound", + "name": "DirectSound", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1371166" + ] +} diff --git a/data/software/di/directxshadercompiler.json b/data/software/di/directxshadercompiler.json new file mode 100644 index 000000000000..0927a9646316 --- /dev/null +++ b/data/software/di/directxshadercompiler.json @@ -0,0 +1,8 @@ +{ + "slug": "directxshadercompiler", + "name": "DirectXShaderCompiler", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115757154" + ] +} diff --git a/data/software/di/direz.json b/data/software/di/direz.json new file mode 100644 index 000000000000..24c384781570 --- /dev/null +++ b/data/software/di/direz.json @@ -0,0 +1,15 @@ +{ + "slug": "direz", + "name": "DIREZ", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139233335" + ], + "developers": [ + "TWGIGA Computer Co., Ltd." + ], + "programming_languages": [ + "TypeScript", + "React" + ] +} diff --git a/data/software/di/disa-windows-server-2016.json b/data/software/di/disa-windows-server-2016.json new file mode 100644 index 000000000000..52b44ad62178 --- /dev/null +++ b/data/software/di/disa-windows-server-2016.json @@ -0,0 +1,8 @@ +{ + "slug": "disa-windows-server-2016", + "name": "disa-windows-server-2016", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127485682" + ] +} diff --git a/data/software/di/disa-windows-server-2019.json b/data/software/di/disa-windows-server-2019.json new file mode 100644 index 000000000000..090ea3038d89 --- /dev/null +++ b/data/software/di/disa-windows-server-2019.json @@ -0,0 +1,8 @@ +{ + "slug": "disa-windows-server-2019", + "name": "disa-windows-server-2019", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127485375" + ] +} diff --git a/data/software/di/disc-cover.json b/data/software/di/disc-cover.json new file mode 100644 index 000000000000..3d49f16e1663 --- /dev/null +++ b/data/software/di/disc-cover.json @@ -0,0 +1,8 @@ +{ + "slug": "disc-cover", + "name": "disc-cover", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065596" + ] +} diff --git a/data/software/di/disc2phone.json b/data/software/di/disc2phone.json new file mode 100644 index 000000000000..337bced9e302 --- /dev/null +++ b/data/software/di/disc2phone.json @@ -0,0 +1,14 @@ +{ + "slug": "disc2phone", + "name": "Disc2Phone", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5281378" + ], + "operating_systems": [ + "Microsoft Windows" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/di/discan.json b/data/software/di/discan.json new file mode 100644 index 000000000000..2af5c9a35841 --- /dev/null +++ b/data/software/di/discan.json @@ -0,0 +1,8 @@ +{ + "slug": "discan", + "name": "DISCAN", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087796" + ] +} diff --git a/data/software/di/discon.json b/data/software/di/discon.json new file mode 100644 index 000000000000..3a0fef5273f1 --- /dev/null +++ b/data/software/di/discon.json @@ -0,0 +1,8 @@ +{ + "slug": "discon", + "name": "DISCON", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087797" + ] +} diff --git a/data/software/di/discover.json b/data/software/di/discover.json new file mode 100644 index 000000000000..0ef9e6dc1031 --- /dev/null +++ b/data/software/di/discover.json @@ -0,0 +1,15 @@ +{ + "slug": "discover", + "name": "Discover", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q64788058" + ], + "operating_systems": [ + "Unix-like operating system" + ], + "licenses": [ + "GNU General Public License, version 2.0 or later", + "GNU General Public License, version 2.0" + ] +} diff --git a/data/software/di/discursis.json b/data/software/di/discursis.json new file mode 100644 index 000000000000..2e0464360076 --- /dev/null +++ b/data/software/di/discursis.json @@ -0,0 +1,8 @@ +{ + "slug": "discursis", + "name": "Discursis", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084924" + ] +} diff --git a/data/software/di/discworld-mudlib.json b/data/software/di/discworld-mudlib.json new file mode 100644 index 000000000000..14d10687100b --- /dev/null +++ b/data/software/di/discworld-mudlib.json @@ -0,0 +1,8 @@ +{ + "slug": "discworld-mudlib", + "name": "Discworld mudlib", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5282112" + ] +} diff --git a/data/software/di/disk-cleanup.json b/data/software/di/disk-cleanup.json new file mode 100644 index 000000000000..67d5529e2b39 --- /dev/null +++ b/data/software/di/disk-cleanup.json @@ -0,0 +1,8 @@ +{ + "slug": "disk-cleanup", + "name": "Disk Cleanup", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1185139" + ] +} diff --git a/data/software/di/disk-drill-mac-data-recovery.json b/data/software/di/disk-drill-mac-data-recovery.json new file mode 100644 index 000000000000..85ab7bfe810c --- /dev/null +++ b/data/software/di/disk-drill-mac-data-recovery.json @@ -0,0 +1,8 @@ +{ + "slug": "disk-drill-mac-data-recovery", + "name": "Disk Drill Mac Data Recovery", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5282290" + ] +} diff --git a/data/software/di/disk-first-aid.json b/data/software/di/disk-first-aid.json new file mode 100644 index 000000000000..1d10a2868671 --- /dev/null +++ b/data/software/di/disk-first-aid.json @@ -0,0 +1,11 @@ +{ + "slug": "disk-first-aid", + "name": "Disk First Aid", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5282296" + ], + "developers": [ + "Apple Inc." + ] +} diff --git a/data/software/di/disk-manager.json b/data/software/di/disk-manager.json new file mode 100644 index 000000000000..0001e03ced4a --- /dev/null +++ b/data/software/di/disk-manager.json @@ -0,0 +1,11 @@ +{ + "slug": "disk-manager", + "name": "Disk Manager", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5282298" + ], + "operating_systems": [ + "IBM PC DOS" + ] +} diff --git a/data/software/di/disk-master.json b/data/software/di/disk-master.json new file mode 100644 index 000000000000..3eb35e43f8c9 --- /dev/null +++ b/data/software/di/disk-master.json @@ -0,0 +1,15 @@ +{ + "slug": "disk-master", + "name": "Disk Master", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110008293" + ], + "operating_systems": [ + "AmigaOS 4", + "AmigaOS" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/di/disk-order.json b/data/software/di/disk-order.json new file mode 100644 index 000000000000..a71759441067 --- /dev/null +++ b/data/software/di/disk-order.json @@ -0,0 +1,8 @@ +{ + "slug": "disk-order", + "name": "Disk Order", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4037435" + ] +} diff --git a/data/software/di/disk-utility.json b/data/software/di/disk-utility.json new file mode 100644 index 000000000000..5fd7de593d1d --- /dev/null +++ b/data/software/di/disk-utility.json @@ -0,0 +1,11 @@ +{ + "slug": "disk-utility", + "name": "Disk Utility", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2704444" + ], + "developers": [ + "Apple Inc." + ] +} diff --git a/data/software/di/diskcopy.json b/data/software/di/diskcopy.json new file mode 100644 index 000000000000..9251b858c635 --- /dev/null +++ b/data/software/di/diskcopy.json @@ -0,0 +1,19 @@ +{ + "slug": "diskcopy", + "name": "DiskCopy", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5282289" + ], + "developers": [ + "Apple Inc." + ], + "operating_systems": [ + "Mac OS 8", + "Mac OS X 10.0", + "Mac OS 9", + "Mac OS X 10.2", + "Mac OS X 10.1", + "System 7" + ] +} diff --git a/data/software/di/diskdoubler.json b/data/software/di/diskdoubler.json new file mode 100644 index 000000000000..0af1f0328e31 --- /dev/null +++ b/data/software/di/diskdoubler.json @@ -0,0 +1,11 @@ +{ + "slug": "diskdoubler", + "name": "DiskDoubler", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5282282" + ], + "operating_systems": [ + "Classic Mac OS" + ] +} diff --git a/data/software/di/diskeeper.json b/data/software/di/diskeeper.json new file mode 100644 index 000000000000..24eb90649709 --- /dev/null +++ b/data/software/di/diskeeper.json @@ -0,0 +1,12 @@ +{ + "slug": "diskeeper", + "name": "Diskeeper", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1228788" + ], + "developers": [ + "Condusiv Technologies", + "Diskeeper Corporation" + ] +} diff --git a/data/software/di/diskgenius.json b/data/software/di/diskgenius.json new file mode 100644 index 000000000000..d2d9a7a56979 --- /dev/null +++ b/data/software/di/diskgenius.json @@ -0,0 +1,8 @@ +{ + "slug": "diskgenius", + "name": "DiskGenius", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10846954" + ] +} diff --git a/data/software/di/diskimagemounter.json b/data/software/di/diskimagemounter.json new file mode 100644 index 000000000000..a3c7b4950681 --- /dev/null +++ b/data/software/di/diskimagemounter.json @@ -0,0 +1,14 @@ +{ + "slug": "diskimagemounter", + "name": "DiskImageMounter", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1049242" + ], + "developers": [ + "Apple Inc." + ], + "operating_systems": [ + "macOS" + ] +} diff --git a/data/software/di/diskpart.json b/data/software/di/diskpart.json new file mode 100644 index 000000000000..2423a098021d --- /dev/null +++ b/data/software/di/diskpart.json @@ -0,0 +1,15 @@ +{ + "slug": "diskpart", + "name": "DiskPart", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140068198" + ], + "release_date": "2026-04-15", + "operating_systems": [ + "AmigaOS" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/di/diskspd.json b/data/software/di/diskspd.json new file mode 100644 index 000000000000..a31abae620e6 --- /dev/null +++ b/data/software/di/diskspd.json @@ -0,0 +1,17 @@ +{ + "slug": "diskspd", + "name": "Diskspd", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q24886469" + ], + "developers": [ + "Microsoft" + ], + "operating_systems": [ + "Microsoft Windows" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/di/disktracker.json b/data/software/di/disktracker.json new file mode 100644 index 000000000000..a52506db0dee --- /dev/null +++ b/data/software/di/disktracker.json @@ -0,0 +1,8 @@ +{ + "slug": "disktracker", + "name": "DiskTracker", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5282285" + ] +} diff --git a/data/software/di/disktype.json b/data/software/di/disktype.json new file mode 100644 index 000000000000..9130cc81fae0 --- /dev/null +++ b/data/software/di/disktype.json @@ -0,0 +1,8 @@ +{ + "slug": "disktype", + "name": "disktype", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q47494685" + ] +} diff --git a/data/software/di/dislin.json b/data/software/di/dislin.json new file mode 100644 index 000000000000..5d4df2aa47d4 --- /dev/null +++ b/data/software/di/dislin.json @@ -0,0 +1,17 @@ +{ + "slug": "dislin", + "name": "DISLIN", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1228955" + ], + "operating_systems": [ + "OpenVMS", + "macOS", + "Microsoft Windows" + ], + "programming_languages": [ + "FORTRAN 77", + "Fortran 90" + ] +} diff --git a/data/software/di/dislocker.json b/data/software/di/dislocker.json new file mode 100644 index 000000000000..ea258ab76ca8 --- /dev/null +++ b/data/software/di/dislocker.json @@ -0,0 +1,11 @@ +{ + "slug": "dislocker", + "name": "dislocker", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974808" + ], + "licenses": [ + "GNU General Public License, version 2.0" + ] +} diff --git a/data/software/di/disney-app.json b/data/software/di/disney-app.json new file mode 100644 index 000000000000..10b055717e44 --- /dev/null +++ b/data/software/di/disney-app.json @@ -0,0 +1,8 @@ +{ + "slug": "disney-app", + "name": "Disney+ app", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76301153" + ] +} diff --git a/data/software/di/disney-s-magic-artist-3d.json b/data/software/di/disney-s-magic-artist-3d.json new file mode 100644 index 000000000000..cc6f16d3a4bb --- /dev/null +++ b/data/software/di/disney-s-magic-artist-3d.json @@ -0,0 +1,15 @@ +{ + "slug": "disney-s-magic-artist-3d", + "name": "Disney's Magic Artist 3D", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136521771" + ], + "release_date": "2000-01-01", + "developers": [ + "Disney Interactive Studios" + ], + "publishers": [ + "Disney Interactive Studios" + ] +} diff --git a/data/software/di/disney-second-screen.json b/data/software/di/disney-second-screen.json new file mode 100644 index 000000000000..d27f79c2b382 --- /dev/null +++ b/data/software/di/disney-second-screen.json @@ -0,0 +1,14 @@ +{ + "slug": "disney-second-screen", + "name": "Disney Second Screen", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5282470" + ], + "developers": [ + "Walt Disney Studios Home Entertainment" + ], + "operating_systems": [ + "iOS" + ] +} diff --git a/data/software/di/dispak.json b/data/software/di/dispak.json new file mode 100644 index 000000000000..546d302beef7 --- /dev/null +++ b/data/software/di/dispak.json @@ -0,0 +1,8 @@ +{ + "slug": "dispak", + "name": "DISPAK", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q19907864" + ] +} diff --git a/data/software/di/distant-viewing-toolkit.json b/data/software/di/distant-viewing-toolkit.json new file mode 100644 index 000000000000..af310a2cb5f1 --- /dev/null +++ b/data/software/di/distant-viewing-toolkit.json @@ -0,0 +1,8 @@ +{ + "slug": "distant-viewing-toolkit", + "name": "Distant Viewing Toolkit", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q74026296" + ] +} diff --git a/data/software/di/distributed-image-library-processing-system.json b/data/software/di/distributed-image-library-processing-system.json new file mode 100644 index 000000000000..1efda92e75fe --- /dev/null +++ b/data/software/di/distributed-image-library-processing-system.json @@ -0,0 +1,14 @@ +{ + "slug": "distributed-image-library-processing-system", + "name": "Distributed Image Library Processing System", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108836746" + ], + "developers": [ + "Jürgen Enge" + ], + "programming_languages": [ + "PHP" + ] +} diff --git a/data/software/di/distributed-manufacturing.json b/data/software/di/distributed-manufacturing.json new file mode 100644 index 000000000000..46765d1fe170 --- /dev/null +++ b/data/software/di/distributed-manufacturing.json @@ -0,0 +1,8 @@ +{ + "slug": "distributed-manufacturing", + "name": "Distributed manufacturing", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17010810" + ] +} diff --git a/data/software/di/distributed-oceanographic-data-systems.json b/data/software/di/distributed-oceanographic-data-systems.json new file mode 100644 index 000000000000..32299def241e --- /dev/null +++ b/data/software/di/distributed-oceanographic-data-systems.json @@ -0,0 +1,11 @@ +{ + "slug": "distributed-oceanographic-data-systems", + "name": "Distributed Oceanographic Data Systems", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5283124" + ], + "developers": [ + "National Oceanic and Atmospheric Administration" + ] +} diff --git a/data/software/di/distro-info.json b/data/software/di/distro-info.json new file mode 100644 index 000000000000..51d398ee9df4 --- /dev/null +++ b/data/software/di/distro-info.json @@ -0,0 +1,8 @@ +{ + "slug": "distro-info", + "name": "distro-info", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q68080703" + ] +} diff --git a/data/software/di/distrobuilder.json b/data/software/di/distrobuilder.json new file mode 100644 index 000000000000..1ea98f93344a --- /dev/null +++ b/data/software/di/distrobuilder.json @@ -0,0 +1,11 @@ +{ + "slug": "distrobuilder", + "name": "distrobuilder", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120488825" + ], + "licenses": [ + "Apache Software License 2.0" + ] +} diff --git a/data/software/di/disy-cadenza.json b/data/software/di/disy-cadenza.json new file mode 100644 index 000000000000..6f4bfcc9f1ff --- /dev/null +++ b/data/software/di/disy-cadenza.json @@ -0,0 +1,8 @@ +{ + "slug": "disy-cadenza", + "name": "disy Cadenza", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127868948" + ] +} diff --git a/data/software/di/dita-open-toolkit.json b/data/software/di/dita-open-toolkit.json new file mode 100644 index 000000000000..996d4cbb9039 --- /dev/null +++ b/data/software/di/dita-open-toolkit.json @@ -0,0 +1,17 @@ +{ + "slug": "dita-open-toolkit", + "name": "DITA Open Toolkit", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5205158" + ], + "operating_systems": [ + "cross-platform" + ], + "programming_languages": [ + "Java" + ], + "licenses": [ + "Apache License" + ] +} diff --git a/data/software/di/diva-js.json b/data/software/di/diva-js.json new file mode 100644 index 000000000000..8f09dc4c5937 --- /dev/null +++ b/data/software/di/diva-js.json @@ -0,0 +1,8 @@ +{ + "slug": "diva-js", + "name": "Diva.js", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084925" + ] +} diff --git a/data/software/di/diversion.json b/data/software/di/diversion.json new file mode 100644 index 000000000000..a5955107a79f --- /dev/null +++ b/data/software/di/diversion.json @@ -0,0 +1,8 @@ +{ + "slug": "diversion", + "name": "Diversion", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137611191" + ] +} diff --git a/data/software/di/divineapi.json b/data/software/di/divineapi.json new file mode 100644 index 000000000000..e2825cd86ca7 --- /dev/null +++ b/data/software/di/divineapi.json @@ -0,0 +1,8 @@ +{ + "slug": "divineapi", + "name": "DivineAPI", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140377882" + ] +} diff --git a/data/software/di/divvycloud.json b/data/software/di/divvycloud.json new file mode 100644 index 000000000000..68777f714445 --- /dev/null +++ b/data/software/di/divvycloud.json @@ -0,0 +1,8 @@ +{ + "slug": "divvycloud", + "name": "DivvyCloud", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25111366" + ] +} diff --git a/data/software/di/dixim.json b/data/software/di/dixim.json new file mode 100644 index 000000000000..934d41e5c280 --- /dev/null +++ b/data/software/di/dixim.json @@ -0,0 +1,11 @@ +{ + "slug": "dixim", + "name": "DiXiM", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11196807" + ], + "operating_systems": [ + "iOS" + ] +} diff --git a/data/software/dj/dj-x.json b/data/software/dj/dj-x.json new file mode 100644 index 000000000000..3bffaba117cc --- /dev/null +++ b/data/software/dj/dj-x.json @@ -0,0 +1,8 @@ +{ + "slug": "dj-x", + "name": "DJ X", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140089081" + ] +} diff --git a/data/software/dj/django.json b/data/software/dj/django.json new file mode 100644 index 000000000000..5833278dd31a --- /dev/null +++ b/data/software/dj/django.json @@ -0,0 +1,8 @@ +{ + "slug": "django", + "name": "Django", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5285233" + ] +} diff --git a/data/software/dj/djv.json b/data/software/dj/djv.json new file mode 100644 index 000000000000..9e2a225237f7 --- /dev/null +++ b/data/software/dj/djv.json @@ -0,0 +1,11 @@ +{ + "slug": "djv", + "name": "DJV", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q67212745" + ], + "licenses": [ + "3-clause BSD License" + ] +} diff --git a/data/software/dl/dlibra.json b/data/software/dl/dlibra.json new file mode 100644 index 000000000000..9e17c6bbca76 --- /dev/null +++ b/data/software/dl/dlibra.json @@ -0,0 +1,11 @@ +{ + "slug": "dlibra", + "name": "dLibra", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q9200485" + ], + "developers": [ + "Poznań Supercomputing and Networking Center" + ] +} diff --git a/data/software/dl/dlr-tapas.json b/data/software/dl/dlr-tapas.json new file mode 100644 index 000000000000..28182a48bc82 --- /dev/null +++ b/data/software/dl/dlr-tapas.json @@ -0,0 +1,11 @@ +{ + "slug": "dlr-tapas", + "name": "DLR TAPAS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117813838" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/dm/dm-verity.json b/data/software/dm/dm-verity.json new file mode 100644 index 000000000000..e5bea079c4d4 --- /dev/null +++ b/data/software/dm/dm-verity.json @@ -0,0 +1,8 @@ +{ + "slug": "dm-verity", + "name": "dm-verity", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q101208595" + ] +} diff --git a/data/software/dm/dmailer-backup.json b/data/software/dm/dmailer-backup.json new file mode 100644 index 000000000000..a08aca6381a4 --- /dev/null +++ b/data/software/dm/dmailer-backup.json @@ -0,0 +1,15 @@ +{ + "slug": "dmailer-backup", + "name": "Dmailer Backup", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5285442" + ], + "developers": [ + "Dmailer" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/software/dm/dmde.json b/data/software/dm/dmde.json new file mode 100644 index 000000000000..f8f7d157cdc2 --- /dev/null +++ b/data/software/dm/dmde.json @@ -0,0 +1,8 @@ +{ + "slug": "dmde", + "name": "dmde", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4037459" + ] +} diff --git a/data/software/dm/dmraid.json b/data/software/dm/dmraid.json new file mode 100644 index 000000000000..754169a349ef --- /dev/null +++ b/data/software/dm/dmraid.json @@ -0,0 +1,8 @@ +{ + "slug": "dmraid", + "name": "dmraid", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60864740" + ] +} diff --git a/data/software/dm/dms-software-reengineering-toolkit.json b/data/software/dm/dms-software-reengineering-toolkit.json new file mode 100644 index 000000000000..fd2c5a4bdca6 --- /dev/null +++ b/data/software/dm/dms-software-reengineering-toolkit.json @@ -0,0 +1,8 @@ +{ + "slug": "dms-software-reengineering-toolkit", + "name": "DMS Software Reengineering Toolkit", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5205644" + ] +} diff --git a/data/software/dm/dmx-desktop.json b/data/software/dm/dmx-desktop.json new file mode 100644 index 000000000000..93418bc56899 --- /dev/null +++ b/data/software/dm/dmx-desktop.json @@ -0,0 +1,15 @@ +{ + "slug": "dmx-desktop", + "name": "DMX Desktop", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136677293" + ], + "developers": [ + "Mike Lines" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/software/dn/dnadynamo.json b/data/software/dn/dnadynamo.json new file mode 100644 index 000000000000..45cb6d15a604 --- /dev/null +++ b/data/software/dn/dnadynamo.json @@ -0,0 +1,12 @@ +{ + "slug": "dnadynamo", + "name": "DNADynamo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28956994" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/software/dn/dnnv.json b/data/software/dn/dnnv.json new file mode 100644 index 000000000000..ca3d133410ba --- /dev/null +++ b/data/software/dn/dnnv.json @@ -0,0 +1,11 @@ +{ + "slug": "dnnv", + "name": "dnnv", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127432231" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/dn/dnscrypt.json b/data/software/dn/dnscrypt.json new file mode 100644 index 000000000000..95f5f7a16b99 --- /dev/null +++ b/data/software/dn/dnscrypt.json @@ -0,0 +1,8 @@ +{ + "slug": "dnscrypt", + "name": "DNSCrypt", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22569635" + ] +} diff --git a/data/software/dn/dnsmax.json b/data/software/dn/dnsmax.json new file mode 100644 index 000000000000..55c18a9d515f --- /dev/null +++ b/data/software/dn/dnsmax.json @@ -0,0 +1,8 @@ +{ + "slug": "dnsmax", + "name": "DNSMax", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5205807" + ] +} diff --git a/data/software/dn/dnstop.json b/data/software/dn/dnstop.json new file mode 100644 index 000000000000..1d30b4ad7ee6 --- /dev/null +++ b/data/software/dn/dnstop.json @@ -0,0 +1,8 @@ +{ + "slug": "dnstop", + "name": "dnstop", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62847951" + ] +} diff --git a/data/software/dn/dnstracer.json b/data/software/dn/dnstracer.json new file mode 100644 index 000000000000..a786d0eb622c --- /dev/null +++ b/data/software/dn/dnstracer.json @@ -0,0 +1,8 @@ +{ + "slug": "dnstracer", + "name": "dnstracer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62847956" + ] +} diff --git a/data/software/do/do-it-again.json b/data/software/do/do-it-again.json new file mode 100644 index 000000000000..5f44ec2ebcef --- /dev/null +++ b/data/software/do/do-it-again.json @@ -0,0 +1,11 @@ +{ + "slug": "do-it-again", + "name": "Do It Again", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q67150596" + ], + "operating_systems": [ + "Windows 7" + ] +} diff --git a/data/software/do/do-xr.json b/data/software/do/do-xr.json new file mode 100644 index 000000000000..6cae30a5524c --- /dev/null +++ b/data/software/do/do-xr.json @@ -0,0 +1,8 @@ +{ + "slug": "do-xr", + "name": "DO XR", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140356417" + ] +} diff --git a/data/software/do/do3d.json b/data/software/do/do3d.json new file mode 100644 index 000000000000..375595733018 --- /dev/null +++ b/data/software/do/do3d.json @@ -0,0 +1,8 @@ +{ + "slug": "do3d", + "name": "Do3D", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5285892" + ] +} diff --git a/data/software/do/docbook2x.json b/data/software/do/docbook2x.json new file mode 100644 index 000000000000..dc60e946bc64 --- /dev/null +++ b/data/software/do/docbook2x.json @@ -0,0 +1,8 @@ +{ + "slug": "docbook2x", + "name": "docbook2X", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60916596" + ] +} diff --git a/data/software/do/dock-q140011545.json b/data/software/do/dock-q140011545.json new file mode 100644 index 000000000000..299e846d1014 --- /dev/null +++ b/data/software/do/dock-q140011545.json @@ -0,0 +1,8 @@ +{ + "slug": "dock-q140011545", + "name": "Dock", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140011545" + ] +} diff --git a/data/software/do/dock.json b/data/software/do/dock.json new file mode 100644 index 000000000000..3edfb6eddc5a --- /dev/null +++ b/data/software/do/dock.json @@ -0,0 +1,11 @@ +{ + "slug": "dock", + "name": "DOCK", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5205842" + ], + "developers": [ + "University of California, San Francisco" + ] +} diff --git a/data/software/do/docker-gc.json b/data/software/do/docker-gc.json new file mode 100644 index 000000000000..b8b18a7b8498 --- /dev/null +++ b/data/software/do/docker-gc.json @@ -0,0 +1,11 @@ +{ + "slug": "docker-gc", + "name": "docker-gc", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974811" + ], + "licenses": [ + "Apache License" + ] +} diff --git a/data/software/do/docking-home.json b/data/software/do/docking-home.json new file mode 100644 index 000000000000..a20355e336a3 --- /dev/null +++ b/data/software/do/docking-home.json @@ -0,0 +1,8 @@ +{ + "slug": "docking-home", + "name": "Docking@Home", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2704276" + ] +} diff --git a/data/software/do/docs.json b/data/software/do/docs.json new file mode 100644 index 000000000000..1572cec96c39 --- /dev/null +++ b/data/software/do/docs.json @@ -0,0 +1,11 @@ +{ + "slug": "docs", + "name": "DOCS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5205848" + ], + "operating_systems": [ + "VSE" + ] +} diff --git a/data/software/do/docte.json b/data/software/do/docte.json new file mode 100644 index 000000000000..c40d3863ac39 --- /dev/null +++ b/data/software/do/docte.json @@ -0,0 +1,8 @@ +{ + "slug": "docte", + "name": "Docte", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3712431" + ] +} diff --git a/data/software/do/doctl.json b/data/software/do/doctl.json new file mode 100644 index 000000000000..5dffd72cfab2 --- /dev/null +++ b/data/software/do/doctl.json @@ -0,0 +1,8 @@ +{ + "slug": "doctl", + "name": "doctl", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q47487589" + ] +} diff --git a/data/software/do/doctorbase.json b/data/software/do/doctorbase.json new file mode 100644 index 000000000000..87970dd06b54 --- /dev/null +++ b/data/software/do/doctorbase.json @@ -0,0 +1,8 @@ +{ + "slug": "doctorbase", + "name": "DoctorBase", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5287286" + ] +} diff --git a/data/software/do/doctoroncall.json b/data/software/do/doctoroncall.json new file mode 100644 index 000000000000..1ff35f27e17a --- /dev/null +++ b/data/software/do/doctoroncall.json @@ -0,0 +1,8 @@ +{ + "slug": "doctoroncall", + "name": "DoctorOnCall", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q96376492" + ] +} diff --git a/data/software/do/docuburst.json b/data/software/do/docuburst.json new file mode 100644 index 000000000000..c079e529e812 --- /dev/null +++ b/data/software/do/docuburst.json @@ -0,0 +1,8 @@ +{ + "slug": "docuburst", + "name": "DocuBurst", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084926" + ] +} diff --git a/data/software/do/docugov-ai.json b/data/software/do/docugov-ai.json new file mode 100644 index 000000000000..3fc460492c4c --- /dev/null +++ b/data/software/do/docugov-ai.json @@ -0,0 +1,8 @@ +{ + "slug": "docugov-ai", + "name": "DocuGov.ai", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138862438" + ] +} diff --git a/data/software/do/document-composition-facility.json b/data/software/do/document-composition-facility.json new file mode 100644 index 000000000000..f2a914ba2dda --- /dev/null +++ b/data/software/do/document-composition-facility.json @@ -0,0 +1,8 @@ +{ + "slug": "document-composition-facility", + "name": "Document Composition Facility", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3033611" + ] +} diff --git a/data/software/do/documents-to-go.json b/data/software/do/documents-to-go.json new file mode 100644 index 000000000000..8b42286a72a6 --- /dev/null +++ b/data/software/do/documents-to-go.json @@ -0,0 +1,8 @@ +{ + "slug": "documents-to-go", + "name": "Documents To Go", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q460027" + ] +} diff --git a/data/software/do/documents.json b/data/software/do/documents.json new file mode 100644 index 000000000000..7d4f7c3c0d60 --- /dev/null +++ b/data/software/do/documents.json @@ -0,0 +1,8 @@ +{ + "slug": "documents", + "name": "Documents", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124381809" + ] +} diff --git a/data/software/do/docus.json b/data/software/do/docus.json new file mode 100644 index 000000000000..0911a75e4bef --- /dev/null +++ b/data/software/do/docus.json @@ -0,0 +1,8 @@ +{ + "slug": "docus", + "name": "Docus", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123504990" + ] +} diff --git a/data/software/do/docuscope.json b/data/software/do/docuscope.json new file mode 100644 index 000000000000..9a53e815061a --- /dev/null +++ b/data/software/do/docuscope.json @@ -0,0 +1,8 @@ +{ + "slug": "docuscope", + "name": "DocuScope", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084927" + ] +} diff --git a/data/software/do/docusearch-ai.json b/data/software/do/docusearch-ai.json new file mode 100644 index 000000000000..deb4ef413729 --- /dev/null +++ b/data/software/do/docusearch-ai.json @@ -0,0 +1,11 @@ +{ + "slug": "docusearch-ai", + "name": "DocuSearch AI", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140247811" + ], + "developers": [ + "REEA SRL" + ] +} diff --git a/data/software/do/docushare.json b/data/software/do/docushare.json new file mode 100644 index 000000000000..473eaad1ee01 --- /dev/null +++ b/data/software/do/docushare.json @@ -0,0 +1,8 @@ +{ + "slug": "docushare", + "name": "Docushare", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28568233" + ] +} diff --git a/data/software/do/docuware.json b/data/software/do/docuware.json new file mode 100644 index 000000000000..164f3f2ae9ef --- /dev/null +++ b/data/software/do/docuware.json @@ -0,0 +1,8 @@ +{ + "slug": "docuware", + "name": "DocuWare", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q787083" + ] +} diff --git a/data/software/do/doddle.json b/data/software/do/doddle.json new file mode 100644 index 000000000000..abd8e6f0f863 --- /dev/null +++ b/data/software/do/doddle.json @@ -0,0 +1,12 @@ +{ + "slug": "doddle", + "name": "Doddle", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5287783" + ], + "release_date": "2010-01-01", + "operating_systems": [ + "iOS" + ] +} diff --git a/data/software/do/doe-2.json b/data/software/do/doe-2.json new file mode 100644 index 000000000000..dee4f1263af1 --- /dev/null +++ b/data/software/do/doe-2.json @@ -0,0 +1,8 @@ +{ + "slug": "doe-2", + "name": "DOE-2", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10846902" + ] +} diff --git a/data/software/do/dog-land.json b/data/software/do/dog-land.json new file mode 100644 index 000000000000..326e5cbf2e9e --- /dev/null +++ b/data/software/do/dog-land.json @@ -0,0 +1,8 @@ +{ + "slug": "dog-land", + "name": "Dog Land", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17104950" + ] +} diff --git a/data/software/do/dogmamodeler.json b/data/software/do/dogmamodeler.json new file mode 100644 index 000000000000..0cfe19797ba3 --- /dev/null +++ b/data/software/do/dogmamodeler.json @@ -0,0 +1,12 @@ +{ + "slug": "dogmamodeler", + "name": "DogmaModeler", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5288385" + ], + "developers": [ + "Rami Hodrob", + "Mustafa Jarrar" + ] +} diff --git a/data/software/do/dogs-playing-poker.json b/data/software/do/dogs-playing-poker.json new file mode 100644 index 000000000000..85e80380424b --- /dev/null +++ b/data/software/do/dogs-playing-poker.json @@ -0,0 +1,8 @@ +{ + "slug": "dogs-playing-poker", + "name": "Dogs Playing Poker", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140391937" + ] +} diff --git a/data/software/do/dogtail.json b/data/software/do/dogtail.json new file mode 100644 index 000000000000..d743ce6c4e87 --- /dev/null +++ b/data/software/do/dogtail.json @@ -0,0 +1,8 @@ +{ + "slug": "dogtail", + "name": "Dogtail", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5288474" + ] +} diff --git a/data/software/do/dolfin-adjoint.json b/data/software/do/dolfin-adjoint.json new file mode 100644 index 000000000000..ad4f77fc6d93 --- /dev/null +++ b/data/software/do/dolfin-adjoint.json @@ -0,0 +1,13 @@ +{ + "slug": "dolfin-adjoint", + "name": "dolfin-adjoint", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116943145" + ], + "developers": [ + "Jørgen S. Dokken", + "Sebastian Mitusch", + "Simon Wolfgang Funke" + ] +} diff --git a/data/software/do/dolfinx.json b/data/software/do/dolfinx.json new file mode 100644 index 000000000000..686461ba358b --- /dev/null +++ b/data/software/do/dolfinx.json @@ -0,0 +1,12 @@ +{ + "slug": "dolfinx", + "name": "DOLFINx", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116943166" + ], + "developers": [ + "Anders Logg", + "Garth Wells" + ] +} diff --git a/data/software/do/dolphin-anty.json b/data/software/do/dolphin-anty.json new file mode 100644 index 000000000000..b085c84dd0ce --- /dev/null +++ b/data/software/do/dolphin-anty.json @@ -0,0 +1,8 @@ +{ + "slug": "dolphin-anty", + "name": "Dolphin Anty", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136085415" + ] +} diff --git a/data/software/do/dolphin-smalltalk.json b/data/software/do/dolphin-smalltalk.json new file mode 100644 index 000000000000..9131f2f30b73 --- /dev/null +++ b/data/software/do/dolphin-smalltalk.json @@ -0,0 +1,11 @@ +{ + "slug": "dolphin-smalltalk", + "name": "Dolphin Smalltalk", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5289650" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/do/domain-technologie-control.json b/data/software/do/domain-technologie-control.json new file mode 100644 index 000000000000..84e59011b7b3 --- /dev/null +++ b/data/software/do/domain-technologie-control.json @@ -0,0 +1,8 @@ +{ + "slug": "domain-technologie-control", + "name": "Domain Technologie Control", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5289806" + ] +} diff --git a/data/software/do/domeo-annotation-toolkit.json b/data/software/do/domeo-annotation-toolkit.json new file mode 100644 index 000000000000..1a65ff259e06 --- /dev/null +++ b/data/software/do/domeo-annotation-toolkit.json @@ -0,0 +1,8 @@ +{ + "slug": "domeo-annotation-toolkit", + "name": "Domeo Annotation Toolkit", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084928" + ] +} diff --git a/data/software/do/dominion.json b/data/software/do/dominion.json new file mode 100644 index 000000000000..2c2c0ec1dd7d --- /dev/null +++ b/data/software/do/dominion.json @@ -0,0 +1,8 @@ +{ + "slug": "dominion", + "name": "Dominion", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76183348" + ] +} diff --git a/data/software/do/domoai.json b/data/software/do/domoai.json new file mode 100644 index 000000000000..85b94eafd54b --- /dev/null +++ b/data/software/do/domoai.json @@ -0,0 +1,8 @@ +{ + "slug": "domoai", + "name": "DomoAI", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139780708" + ] +} diff --git a/data/software/do/donotpay.json b/data/software/do/donotpay.json new file mode 100644 index 000000000000..e11cd367ad1d --- /dev/null +++ b/data/software/do/donotpay.json @@ -0,0 +1,8 @@ +{ + "slug": "donotpay", + "name": "DoNotPay", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q56298005" + ] +} diff --git a/data/software/do/doom-modding.json b/data/software/do/doom-modding.json new file mode 100644 index 000000000000..82e5bd271e59 --- /dev/null +++ b/data/software/do/doom-modding.json @@ -0,0 +1,8 @@ +{ + "slug": "doom-modding", + "name": "Doom modding", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105973513" + ] +} diff --git a/data/software/do/doorvault.json b/data/software/do/doorvault.json new file mode 100644 index 000000000000..bcb5b87eb87e --- /dev/null +++ b/data/software/do/doorvault.json @@ -0,0 +1,8 @@ +{ + "slug": "doorvault", + "name": "DoorVault", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140421528" + ] +} diff --git a/data/software/do/dopdf.json b/data/software/do/dopdf.json new file mode 100644 index 000000000000..b5af43e8157f --- /dev/null +++ b/data/software/do/dopdf.json @@ -0,0 +1,11 @@ +{ + "slug": "dopdf", + "name": "doPDF", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5285913" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/do/dos-shell.json b/data/software/do/dos-shell.json new file mode 100644 index 000000000000..9d8de9bb6bcc --- /dev/null +++ b/data/software/do/dos-shell.json @@ -0,0 +1,15 @@ +{ + "slug": "dos-shell", + "name": "DOS Shell", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1154805" + ], + "release_date": "1988-06-01", + "developers": [ + "Microsoft" + ], + "operating_systems": [ + "IBM PC DOS" + ] +} diff --git a/data/software/do/dos-xl.json b/data/software/do/dos-xl.json new file mode 100644 index 000000000000..1b88b443ca01 --- /dev/null +++ b/data/software/do/dos-xl.json @@ -0,0 +1,11 @@ +{ + "slug": "dos-xl", + "name": "DOS XL", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5205894" + ], + "developers": [ + "Optimized Systems Software" + ] +} diff --git a/data/software/do/dosbar.json b/data/software/do/dosbar.json new file mode 100644 index 000000000000..ba6cd5c9c0c4 --- /dev/null +++ b/data/software/do/dosbar.json @@ -0,0 +1,8 @@ +{ + "slug": "dosbar", + "name": "DosBar", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125071284" + ] +} diff --git a/data/software/do/doteditor.json b/data/software/do/doteditor.json new file mode 100644 index 000000000000..493fcf0ee0d7 --- /dev/null +++ b/data/software/do/doteditor.json @@ -0,0 +1,8 @@ +{ + "slug": "doteditor", + "name": "DotEditor", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111367179" + ] +} diff --git a/data/software/do/dottrace.json b/data/software/do/dottrace.json new file mode 100644 index 000000000000..75ef958b7c01 --- /dev/null +++ b/data/software/do/dottrace.json @@ -0,0 +1,17 @@ +{ + "slug": "dottrace", + "name": "DotTrace", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4037547" + ], + "developers": [ + "JetBrains" + ], + "operating_systems": [ + "Microsoft Windows" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/do/double-tools-for-doublespace.json b/data/software/do/double-tools-for-doublespace.json new file mode 100644 index 000000000000..efbe115f59c0 --- /dev/null +++ b/data/software/do/double-tools-for-doublespace.json @@ -0,0 +1,8 @@ +{ + "slug": "double-tools-for-doublespace", + "name": "Double Tools for DoubleSpace", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5299905" + ] +} diff --git a/data/software/do/doubledos.json b/data/software/do/doubledos.json new file mode 100644 index 000000000000..0b7ede576d38 --- /dev/null +++ b/data/software/do/doubledos.json @@ -0,0 +1,12 @@ +{ + "slug": "doubledos", + "name": "DoubleDOS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q19599405" + ], + "release_date": "1984-01-01", + "operating_systems": [ + "IBM PC DOS" + ] +} diff --git a/data/software/do/down-to-lunch.json b/data/software/do/down-to-lunch.json new file mode 100644 index 000000000000..e2307302ff9c --- /dev/null +++ b/data/software/do/down-to-lunch.json @@ -0,0 +1,8 @@ +{ + "slug": "down-to-lunch", + "name": "Down To Lunch", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60746478" + ] +} diff --git a/data/software/do/down.json b/data/software/do/down.json new file mode 100644 index 000000000000..c6587135ce54 --- /dev/null +++ b/data/software/do/down.json @@ -0,0 +1,8 @@ +{ + "slug": "down", + "name": "DOWN", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109285562" + ] +} diff --git a/data/software/do/downthemall.json b/data/software/do/downthemall.json new file mode 100644 index 000000000000..84abb18e17f8 --- /dev/null +++ b/data/software/do/downthemall.json @@ -0,0 +1,8 @@ +{ + "slug": "downthemall", + "name": "DownThemAll", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084929" + ] +} diff --git a/data/software/dp/dp-code.json b/data/software/dp/dp-code.json new file mode 100644 index 000000000000..3d9604ac2043 --- /dev/null +++ b/data/software/dp/dp-code.json @@ -0,0 +1,8 @@ +{ + "slug": "dp-code", + "name": "DP code", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5205974" + ] +} diff --git a/data/software/dp/dplyr.json b/data/software/dp/dplyr.json new file mode 100644 index 000000000000..dff15ec3cac7 --- /dev/null +++ b/data/software/dp/dplyr.json @@ -0,0 +1,11 @@ +{ + "slug": "dplyr", + "name": "dplyr", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q104854189" + ], + "programming_languages": [ + "R" + ] +} diff --git a/data/software/dp/dpvs.json b/data/software/dp/dpvs.json new file mode 100644 index 000000000000..560194c35097 --- /dev/null +++ b/data/software/dp/dpvs.json @@ -0,0 +1,8 @@ +{ + "slug": "dpvs", + "name": "DPVS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5205965" + ] +} diff --git a/data/software/dr/dr-halo.json b/data/software/dr/dr-halo.json new file mode 100644 index 000000000000..1ccd4259f1c7 --- /dev/null +++ b/data/software/dr/dr-halo.json @@ -0,0 +1,8 @@ +{ + "slug": "dr-halo", + "name": "Dr. Halo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110127722" + ] +} diff --git a/data/software/dr/dr-sbaitso.json b/data/software/dr/dr-sbaitso.json new file mode 100644 index 000000000000..32344ca8c991 --- /dev/null +++ b/data/software/dr/dr-sbaitso.json @@ -0,0 +1,11 @@ +{ + "slug": "dr-sbaitso", + "name": "Dr. Sbaitso", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3714862" + ], + "developers": [ + "Creative Technology" + ] +} diff --git a/data/software/dr/dracor.json b/data/software/dr/dracor.json new file mode 100644 index 000000000000..2e190e01c232 --- /dev/null +++ b/data/software/dr/dracor.json @@ -0,0 +1,14 @@ +{ + "slug": "dracor", + "name": "DraCor", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122408266" + ], + "developers": [ + "Carsten Milling" + ], + "licenses": [ + "Creative Commons CC0 License" + ] +} diff --git a/data/software/dr/dradis-framework.json b/data/software/dr/dradis-framework.json new file mode 100644 index 000000000000..649f03d601b9 --- /dev/null +++ b/data/software/dr/dradis-framework.json @@ -0,0 +1,8 @@ +{ + "slug": "dradis-framework", + "name": "Dradis Framework", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136799133" + ] +} diff --git a/data/software/dr/draftsight.json b/data/software/dr/draftsight.json new file mode 100644 index 000000000000..0dc9ac4cbafa --- /dev/null +++ b/data/software/dr/draftsight.json @@ -0,0 +1,18 @@ +{ + "slug": "draftsight", + "name": "DraftSight", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2436588" + ], + "developers": [ + "Dassault Systèmes" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/dr/dragonframe.json b/data/software/dr/dragonframe.json new file mode 100644 index 000000000000..10dd6a880d07 --- /dev/null +++ b/data/software/dr/dragonframe.json @@ -0,0 +1,9 @@ +{ + "slug": "dragonframe", + "name": "Dragonframe", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28401315" + ], + "release_date": "2008-03-01" +} diff --git a/data/software/dr/dragthing.json b/data/software/dr/dragthing.json new file mode 100644 index 000000000000..b81a044f4701 --- /dev/null +++ b/data/software/dr/dragthing.json @@ -0,0 +1,8 @@ +{ + "slug": "dragthing", + "name": "DragThing", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5304790" + ] +} diff --git a/data/software/dr/drakon-editor.json b/data/software/dr/drakon-editor.json new file mode 100644 index 000000000000..a28588b104e0 --- /dev/null +++ b/data/software/dr/drakon-editor.json @@ -0,0 +1,8 @@ +{ + "slug": "drakon-editor", + "name": "DRAKON Editor", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q24884408" + ] +} diff --git a/data/software/dr/dramatica.json b/data/software/dr/dramatica.json new file mode 100644 index 000000000000..f89ca2fafde8 --- /dev/null +++ b/data/software/dr/dramatica.json @@ -0,0 +1,14 @@ +{ + "slug": "dramatica", + "name": "Dramatica", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3715141" + ], + "developers": [ + "Write Brothers" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/dr/drawmd.json b/data/software/dr/drawmd.json new file mode 100644 index 000000000000..59fe7002ad16 --- /dev/null +++ b/data/software/dr/drawmd.json @@ -0,0 +1,8 @@ +{ + "slug": "drawmd", + "name": "DrawMD", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q19877965" + ] +} diff --git a/data/software/dr/drawshield.json b/data/software/dr/drawshield.json new file mode 100644 index 000000000000..710bd67f2ffd --- /dev/null +++ b/data/software/dr/drawshield.json @@ -0,0 +1,11 @@ +{ + "slug": "drawshield", + "name": "DrawShield", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137515866" + ], + "licenses": [ + "GNU General Public License, version 3.0" + ] +} diff --git a/data/software/dr/drawtiming.json b/data/software/dr/drawtiming.json new file mode 100644 index 000000000000..4d76aba5be64 --- /dev/null +++ b/data/software/dr/drawtiming.json @@ -0,0 +1,8 @@ +{ + "slug": "drawtiming", + "name": "drawtiming", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065379" + ] +} diff --git a/data/software/dr/dream-keyboard.json b/data/software/dr/dream-keyboard.json new file mode 100644 index 000000000000..b6c138181815 --- /dev/null +++ b/data/software/dr/dream-keyboard.json @@ -0,0 +1,8 @@ +{ + "slug": "dream-keyboard", + "name": "Dream Keyboard", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108149754" + ] +} diff --git a/data/software/dr/dreambooth.json b/data/software/dr/dreambooth.json new file mode 100644 index 000000000000..8ea2457fcb9a --- /dev/null +++ b/data/software/dr/dreambooth.json @@ -0,0 +1,8 @@ +{ + "slug": "dreambooth", + "name": "DreamBooth", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115059532" + ] +} diff --git a/data/software/dr/dreamscape.json b/data/software/dr/dreamscape.json new file mode 100644 index 000000000000..5473f4bb4a6e --- /dev/null +++ b/data/software/dr/dreamscape.json @@ -0,0 +1,15 @@ +{ + "slug": "dreamscape", + "name": "Dreamscape", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5306764" + ], + "developers": [ + "Fujitsu" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/software/dr/dremel.json b/data/software/dr/dremel.json new file mode 100644 index 000000000000..25dcd85d6af9 --- /dev/null +++ b/data/software/dr/dremel.json @@ -0,0 +1,11 @@ +{ + "slug": "dremel", + "name": "Dremel", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5306908" + ], + "developers": [ + "Google" + ] +} diff --git a/data/software/dr/driftnet.json b/data/software/dr/driftnet.json new file mode 100644 index 000000000000..578b67715850 --- /dev/null +++ b/data/software/dr/driftnet.json @@ -0,0 +1,11 @@ +{ + "slug": "driftnet", + "name": "Driftnet", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q55420367" + ], + "operating_systems": [ + "Kali Linux" + ] +} diff --git a/data/software/dr/drive-image.json b/data/software/dr/drive-image.json new file mode 100644 index 000000000000..a2c06979d591 --- /dev/null +++ b/data/software/dr/drive-image.json @@ -0,0 +1,14 @@ +{ + "slug": "drive-image", + "name": "Drive Image", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5307905" + ], + "developers": [ + "Gen Digital" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/dr/drive-letter-access.json b/data/software/dr/drive-letter-access.json new file mode 100644 index 000000000000..02e9b3d9cffe --- /dev/null +++ b/data/software/dr/drive-letter-access.json @@ -0,0 +1,11 @@ +{ + "slug": "drive-letter-access", + "name": "Drive Letter Access", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1259369" + ], + "developers": [ + "Sonic Solutions" + ] +} diff --git a/data/software/dr/driver-easy.json b/data/software/dr/driver-easy.json new file mode 100644 index 000000000000..ec3c085bbda7 --- /dev/null +++ b/data/software/dr/driver-easy.json @@ -0,0 +1,11 @@ +{ + "slug": "driver-easy", + "name": "Driver Easy", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109438166" + ], + "developers": [ + "Easeware Technology Limited" + ] +} diff --git a/data/software/dr/driver-verifier.json b/data/software/dr/driver-verifier.json new file mode 100644 index 000000000000..db008b5e0878 --- /dev/null +++ b/data/software/dr/driver-verifier.json @@ -0,0 +1,11 @@ +{ + "slug": "driver-verifier", + "name": "Driver Verifier", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5308007" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/dr/drivermax.json b/data/software/dr/drivermax.json new file mode 100644 index 000000000000..b749ce8923cf --- /dev/null +++ b/data/software/dr/drivermax.json @@ -0,0 +1,8 @@ +{ + "slug": "drivermax", + "name": "DriverMax", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10268797" + ] +} diff --git a/data/software/dr/drivernest.json b/data/software/dr/drivernest.json new file mode 100644 index 000000000000..edee067c7c6b --- /dev/null +++ b/data/software/dr/drivernest.json @@ -0,0 +1,8 @@ +{ + "slug": "drivernest", + "name": "DriverNest", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140386264" + ] +} diff --git a/data/software/dr/driveworks.json b/data/software/dr/driveworks.json new file mode 100644 index 000000000000..6bdcd474bd93 --- /dev/null +++ b/data/software/dr/driveworks.json @@ -0,0 +1,8 @@ +{ + "slug": "driveworks", + "name": "DriveWorks", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137196697" + ] +} diff --git a/data/software/dr/drivin.json b/data/software/dr/drivin.json new file mode 100644 index 000000000000..9c79ea692821 --- /dev/null +++ b/data/software/dr/drivin.json @@ -0,0 +1,8 @@ +{ + "slug": "drivin", + "name": "Drivin", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139547110" + ] +} diff --git a/data/software/dr/drone-ci-oss.json b/data/software/dr/drone-ci-oss.json new file mode 100644 index 000000000000..10c36cd2b267 --- /dev/null +++ b/data/software/dr/drone-ci-oss.json @@ -0,0 +1,11 @@ +{ + "slug": "drone-ci-oss", + "name": "Drone CI OSS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123510170" + ], + "licenses": [ + "Apache Software License 2.0" + ] +} diff --git a/data/software/dr/dronebundle.json b/data/software/dr/dronebundle.json new file mode 100644 index 000000000000..3fc01fafe21b --- /dev/null +++ b/data/software/dr/dronebundle.json @@ -0,0 +1,11 @@ +{ + "slug": "dronebundle", + "name": "Dronebundle", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138339690" + ], + "developers": [ + "Dronebundle" + ] +} diff --git a/data/software/dr/dropbox-carousel.json b/data/software/dr/dropbox-carousel.json new file mode 100644 index 000000000000..fbef1ad9b35b --- /dev/null +++ b/data/software/dr/dropbox-carousel.json @@ -0,0 +1,8 @@ +{ + "slug": "dropbox-carousel", + "name": "Dropbox Carousel", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q21203438" + ] +} diff --git a/data/software/dr/dropbox-paper.json b/data/software/dr/dropbox-paper.json new file mode 100644 index 000000000000..1fb17b30819a --- /dev/null +++ b/data/software/dr/dropbox-paper.json @@ -0,0 +1,11 @@ +{ + "slug": "dropbox-paper", + "name": "Dropbox Paper", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22907957" + ], + "developers": [ + "Dropbox" + ] +} diff --git a/data/software/dr/dropmire.json b/data/software/dr/dropmire.json new file mode 100644 index 000000000000..c9f0f41d4726 --- /dev/null +++ b/data/software/dr/dropmire.json @@ -0,0 +1,8 @@ +{ + "slug": "dropmire", + "name": "Dropmire", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q13592736" + ] +} diff --git a/data/software/dr/dropmyemail.json b/data/software/dr/dropmyemail.json new file mode 100644 index 000000000000..e22170628614 --- /dev/null +++ b/data/software/dr/dropmyemail.json @@ -0,0 +1,9 @@ +{ + "slug": "dropmyemail", + "name": "Dropmyemail", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5308463" + ], + "release_date": "2012-03-01" +} diff --git a/data/software/dr/dropresolve.json b/data/software/dr/dropresolve.json new file mode 100644 index 000000000000..6f14ab47146e --- /dev/null +++ b/data/software/dr/dropresolve.json @@ -0,0 +1,8 @@ +{ + "slug": "dropresolve", + "name": "DropResolve", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138773268" + ] +} diff --git a/data/software/dr/dropship.json b/data/software/dr/dropship.json new file mode 100644 index 000000000000..dca37548b44b --- /dev/null +++ b/data/software/dr/dropship.json @@ -0,0 +1,14 @@ +{ + "slug": "dropship", + "name": "Dropship", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5308496" + ], + "programming_languages": [ + "Python" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/dr/drotr.json b/data/software/dr/drotr.json new file mode 100644 index 000000000000..ee9431a7e72f --- /dev/null +++ b/data/software/dr/drotr.json @@ -0,0 +1,11 @@ +{ + "slug": "drotr", + "name": "DROTR", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17523639" + ], + "developers": [ + "Vidby" + ] +} diff --git a/data/software/dr/drug-design-and-optimization-lab.json b/data/software/dr/drug-design-and-optimization-lab.json new file mode 100644 index 000000000000..8294e625b9ce --- /dev/null +++ b/data/software/dr/drug-design-and-optimization-lab.json @@ -0,0 +1,8 @@ +{ + "slug": "drug-design-and-optimization-lab", + "name": "Drug Design and Optimization Lab", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q842362" + ] +} diff --git a/data/software/dr/drugfire.json b/data/software/dr/drugfire.json new file mode 100644 index 000000000000..5a0870ba976b --- /dev/null +++ b/data/software/dr/drugfire.json @@ -0,0 +1,8 @@ +{ + "slug": "drugfire", + "name": "Drugfire", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5308938" + ] +} diff --git a/data/software/dr/drumup.json b/data/software/dr/drumup.json new file mode 100644 index 000000000000..543831ec953a --- /dev/null +++ b/data/software/dr/drumup.json @@ -0,0 +1,8 @@ +{ + "slug": "drumup", + "name": "DrumUp", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22907961" + ] +} diff --git a/data/software/dr/drync.json b/data/software/dr/drync.json new file mode 100644 index 000000000000..9ee30abda848 --- /dev/null +++ b/data/software/dr/drync.json @@ -0,0 +1,9 @@ +{ + "slug": "drync", + "name": "Drync", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16973178" + ], + "release_date": "2008-01-01" +} diff --git a/data/software/ds/ds-2.json b/data/software/ds/ds-2.json new file mode 100644 index 000000000000..1595e126d9a3 --- /dev/null +++ b/data/software/ds/ds-2.json @@ -0,0 +1,11 @@ +{ + "slug": "ds-2", + "name": "DS-2", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5206095" + ], + "developers": [ + "Zuken" + ] +} diff --git a/data/software/ds/ds-game-maker.json b/data/software/ds/ds-game-maker.json new file mode 100644 index 000000000000..6be4a89a7049 --- /dev/null +++ b/data/software/ds/ds-game-maker.json @@ -0,0 +1,8 @@ +{ + "slug": "ds-game-maker", + "name": "DS Game Maker", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3700565" + ] +} diff --git a/data/software/ds/dsh.json b/data/software/ds/dsh.json new file mode 100644 index 000000000000..9b41cbd988ad --- /dev/null +++ b/data/software/ds/dsh.json @@ -0,0 +1,8 @@ +{ + "slug": "dsh", + "name": "dsh", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110473920" + ] +} diff --git a/data/software/ds/dsniff.json b/data/software/ds/dsniff.json new file mode 100644 index 000000000000..5c251d3a7021 --- /dev/null +++ b/data/software/ds/dsniff.json @@ -0,0 +1,15 @@ +{ + "slug": "dsniff", + "name": "dSniff", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2350040" + ], + "release_date": "2000-12-17", + "operating_systems": [ + "Unix-like operating system" + ], + "licenses": [ + "3-clause BSD License" + ] +} diff --git a/data/software/ds/dsplayer.json b/data/software/ds/dsplayer.json new file mode 100644 index 000000000000..1f3f0d71133f --- /dev/null +++ b/data/software/ds/dsplayer.json @@ -0,0 +1,8 @@ +{ + "slug": "dsplayer", + "name": "DSPlayer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2092513" + ] +} diff --git a/data/software/ds/dssat.json b/data/software/ds/dssat.json new file mode 100644 index 000000000000..3ba4b504783d --- /dev/null +++ b/data/software/ds/dssat.json @@ -0,0 +1,8 @@ +{ + "slug": "dssat", + "name": "DSSAT", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17073957" + ] +} diff --git a/data/software/ds/dssp.json b/data/software/ds/dssp.json new file mode 100644 index 000000000000..846dafcbf256 --- /dev/null +++ b/data/software/ds/dssp.json @@ -0,0 +1,11 @@ +{ + "slug": "dssp", + "name": "DSSP", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5206192" + ], + "licenses": [ + "2-clause BSD License" + ] +} diff --git a/data/software/dt/dta-gview.json b/data/software/dt/dta-gview.json new file mode 100644 index 000000000000..2c97ae92ec7f --- /dev/null +++ b/data/software/dt/dta-gview.json @@ -0,0 +1,8 @@ +{ + "slug": "dta-gview", + "name": "DTA GView", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111913020" + ] +} diff --git a/data/software/dt/dtc.json b/data/software/dt/dtc.json new file mode 100644 index 000000000000..715e81159b08 --- /dev/null +++ b/data/software/dt/dtc.json @@ -0,0 +1,8 @@ +{ + "slug": "dtc", + "name": "dtc", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974812" + ] +} diff --git a/data/software/dt/dtrx.json b/data/software/dt/dtrx.json new file mode 100644 index 000000000000..07180a2b4051 --- /dev/null +++ b/data/software/dt/dtrx.json @@ -0,0 +1,8 @@ +{ + "slug": "dtrx", + "name": "dtrx", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110473926" + ] +} diff --git a/data/software/dt/dts-1.json b/data/software/dt/dts-1.json new file mode 100644 index 000000000000..c8d7093ea3f4 --- /dev/null +++ b/data/software/dt/dts-1.json @@ -0,0 +1,8 @@ +{ + "slug": "dts-1", + "name": "DTS-1", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q9200588" + ] +} diff --git a/data/software/du/dubsmash.json b/data/software/du/dubsmash.json new file mode 100644 index 000000000000..f5ddddb82833 --- /dev/null +++ b/data/software/du/dubsmash.json @@ -0,0 +1,11 @@ +{ + "slug": "dubsmash", + "name": "Dubsmash", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18612597" + ], + "operating_systems": [ + "iOS" + ] +} diff --git a/data/software/du/ducs.json b/data/software/du/ducs.json new file mode 100644 index 000000000000..be17746990a1 --- /dev/null +++ b/data/software/du/ducs.json @@ -0,0 +1,8 @@ +{ + "slug": "ducs", + "name": "DUCS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5206291" + ] +} diff --git a/data/software/du/duden-bibliothek.json b/data/software/du/duden-bibliothek.json new file mode 100644 index 000000000000..f08881eab79c --- /dev/null +++ b/data/software/du/duden-bibliothek.json @@ -0,0 +1,8 @@ +{ + "slug": "duden-bibliothek", + "name": "Duden-Bibliothek", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1263656" + ] +} diff --git a/data/software/du/duet.json b/data/software/du/duet.json new file mode 100644 index 000000000000..3a801c7f12e8 --- /dev/null +++ b/data/software/du/duet.json @@ -0,0 +1,12 @@ +{ + "slug": "duet", + "name": "Duet", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1263942" + ], + "developers": [ + "SAP", + "Microsoft" + ] +} diff --git a/data/software/du/duktus.json b/data/software/du/duktus.json new file mode 100644 index 000000000000..9c1873b41280 --- /dev/null +++ b/data/software/du/duktus.json @@ -0,0 +1,11 @@ +{ + "slug": "duktus", + "name": "duktus", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139884553" + ], + "developers": [ + "Joshua Quattek" + ] +} diff --git a/data/software/du/dump1090.json b/data/software/du/dump1090.json new file mode 100644 index 000000000000..254d51c7721f --- /dev/null +++ b/data/software/du/dump1090.json @@ -0,0 +1,11 @@ +{ + "slug": "dump1090", + "name": "dump1090", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974814" + ], + "licenses": [ + "3-clause BSD License" + ] +} diff --git a/data/software/du/dundas.json b/data/software/du/dundas.json new file mode 100644 index 000000000000..47442f138882 --- /dev/null +++ b/data/software/du/dundas.json @@ -0,0 +1,8 @@ +{ + "slug": "dundas", + "name": "Dundas", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084931" + ] +} diff --git a/data/software/du/dungeon-lords-mmxii.json b/data/software/du/dungeon-lords-mmxii.json new file mode 100644 index 000000000000..5a099273c27c --- /dev/null +++ b/data/software/du/dungeon-lords-mmxii.json @@ -0,0 +1,8 @@ +{ + "slug": "dungeon-lords-mmxii", + "name": "Dungeon Lords MMXII", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140361140" + ] +} diff --git a/data/software/du/dungeon-master-s-assistant-volume-i.json b/data/software/du/dungeon-master-s-assistant-volume-i.json new file mode 100644 index 000000000000..91dabfdd4e7c --- /dev/null +++ b/data/software/du/dungeon-master-s-assistant-volume-i.json @@ -0,0 +1,8 @@ +{ + "slug": "dungeon-master-s-assistant-volume-i", + "name": "Dungeon Master's Assistant Volume I", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130336279" + ] +} diff --git a/data/software/du/dupdub.json b/data/software/du/dupdub.json new file mode 100644 index 000000000000..80abbf46234f --- /dev/null +++ b/data/software/du/dupdub.json @@ -0,0 +1,8 @@ +{ + "slug": "dupdub", + "name": "DupDub", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134971379" + ] +} diff --git a/data/software/du/duracloud.json b/data/software/du/duracloud.json new file mode 100644 index 000000000000..280f21291bc1 --- /dev/null +++ b/data/software/du/duracloud.json @@ -0,0 +1,14 @@ +{ + "slug": "duracloud", + "name": "DuraCloud", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5316103" + ], + "developers": [ + "DuraSpace" + ], + "programming_languages": [ + "Java" + ] +} diff --git a/data/software/du/durchg-ngige-elektronische-fahrplaninformation.json b/data/software/du/durchg-ngige-elektronische-fahrplaninformation.json new file mode 100644 index 000000000000..a47a6fc9d181 --- /dev/null +++ b/data/software/du/durchg-ngige-elektronische-fahrplaninformation.json @@ -0,0 +1,8 @@ +{ + "slug": "durchg-ngige-elektronische-fahrplaninformation", + "name": "Durchgängige elektronische Fahrplaninformation", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1267026" + ] +} diff --git a/data/software/dv/dvb-dream.json b/data/software/dv/dvb-dream.json new file mode 100644 index 000000000000..6168aaca3e37 --- /dev/null +++ b/data/software/dv/dvb-dream.json @@ -0,0 +1,8 @@ +{ + "slug": "dvb-dream", + "name": "DVB Dream", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q20708015" + ] +} diff --git a/data/software/dv/dvbackup.json b/data/software/dv/dvbackup.json new file mode 100644 index 000000000000..a0c5dc1e4fdd --- /dev/null +++ b/data/software/dv/dvbackup.json @@ -0,0 +1,8 @@ +{ + "slug": "dvbackup", + "name": "dvbackup", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62848221" + ] +} diff --git a/data/software/dv/dvbsnoop.json b/data/software/dv/dvbsnoop.json new file mode 100644 index 000000000000..be576bdeeb04 --- /dev/null +++ b/data/software/dv/dvbsnoop.json @@ -0,0 +1,8 @@ +{ + "slug": "dvbsnoop", + "name": "dvbsnoop", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62848215" + ] +} diff --git a/data/software/dv/dvbviewer.json b/data/software/dv/dvbviewer.json new file mode 100644 index 000000000000..c37bbbcf0468 --- /dev/null +++ b/data/software/dv/dvbviewer.json @@ -0,0 +1,11 @@ +{ + "slug": "dvbviewer", + "name": "DVBViewer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q685241" + ], + "programming_languages": [ + "Delphi" + ] +} diff --git a/data/software/dv/dvd-identifier.json b/data/software/dv/dvd-identifier.json new file mode 100644 index 000000000000..62eb036623d6 --- /dev/null +++ b/data/software/dv/dvd-identifier.json @@ -0,0 +1,14 @@ +{ + "slug": "dvd-identifier", + "name": "DVD Identifier", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1826295" + ], + "operating_systems": [ + "Microsoft Windows" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/dv/dvd-player-q3700591.json b/data/software/dv/dvd-player-q3700591.json new file mode 100644 index 000000000000..b6eb7c2a8c7d --- /dev/null +++ b/data/software/dv/dvd-player-q3700591.json @@ -0,0 +1,15 @@ +{ + "slug": "dvd-player-q3700591", + "name": "DVD Player", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3700591" + ], + "developers": [ + "Microsoft" + ], + "operating_systems": [ + "Windows Whistler", + "Windows Neptune" + ] +} diff --git a/data/software/dv/dvd-player.json b/data/software/dv/dvd-player.json new file mode 100644 index 000000000000..2770d233f278 --- /dev/null +++ b/data/software/dv/dvd-player.json @@ -0,0 +1,14 @@ +{ + "slug": "dvd-player", + "name": "DVD Player", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q420557" + ], + "developers": [ + "Apple Inc." + ], + "operating_systems": [ + "macOS" + ] +} diff --git a/data/software/dv/dvd-profiler.json b/data/software/dv/dvd-profiler.json new file mode 100644 index 000000000000..5bb59fd24f31 --- /dev/null +++ b/data/software/dv/dvd-profiler.json @@ -0,0 +1,8 @@ +{ + "slug": "dvd-profiler", + "name": "DVD Profiler", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5206362" + ] +} diff --git a/data/software/dv/dvd-shrink.json b/data/software/dv/dvd-shrink.json new file mode 100644 index 000000000000..a40ef7ff1339 --- /dev/null +++ b/data/software/dv/dvd-shrink.json @@ -0,0 +1,14 @@ +{ + "slug": "dvd-shrink", + "name": "DVD Shrink", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1156104" + ], + "operating_systems": [ + "Microsoft Windows" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/dv/dvd-studio-pro.json b/data/software/dv/dvd-studio-pro.json new file mode 100644 index 000000000000..f15cd84b9d12 --- /dev/null +++ b/data/software/dv/dvd-studio-pro.json @@ -0,0 +1,11 @@ +{ + "slug": "dvd-studio-pro", + "name": "DVD Studio Pro", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q787647" + ], + "developers": [ + "Apple Inc." + ] +} diff --git a/data/software/dv/dvd-x-copy.json b/data/software/dv/dvd-x-copy.json new file mode 100644 index 000000000000..1736a27cbe63 --- /dev/null +++ b/data/software/dv/dvd-x-copy.json @@ -0,0 +1,11 @@ +{ + "slug": "dvd-x-copy", + "name": "DVD X Copy", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5206369" + ], + "developers": [ + "321 Studios" + ] +} diff --git a/data/software/dv/dvd43.json b/data/software/dv/dvd43.json new file mode 100644 index 000000000000..fda22e22404b --- /dev/null +++ b/data/software/dv/dvd43.json @@ -0,0 +1,11 @@ +{ + "slug": "dvd43", + "name": "DVD43", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5206353" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/dv/dvdfab.json b/data/software/dv/dvdfab.json new file mode 100644 index 000000000000..06705bc052d8 --- /dev/null +++ b/data/software/dv/dvdfab.json @@ -0,0 +1,19 @@ +{ + "slug": "dvdfab", + "name": "DVDFab", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1156085" + ], + "developers": [ + "Fengtao Software Inc." + ], + "operating_systems": [ + "macOS", + "iOS", + "Microsoft Windows" + ], + "genres": [ + "multimedia software" + ] +} diff --git a/data/software/dv/dvdinfo.json b/data/software/dv/dvdinfo.json new file mode 100644 index 000000000000..5251d91bcf4d --- /dev/null +++ b/data/software/dv/dvdinfo.json @@ -0,0 +1,14 @@ +{ + "slug": "dvdinfo", + "name": "DVDInfo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q133819034" + ], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [ + "Visual Basic" + ] +} diff --git a/data/software/dw/dwarves.json b/data/software/dw/dwarves.json new file mode 100644 index 000000000000..433a6771177e --- /dev/null +++ b/data/software/dw/dwarves.json @@ -0,0 +1,8 @@ +{ + "slug": "dwarves", + "name": "dwarves", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974816" + ] +} diff --git a/data/software/dx/dxplain.json b/data/software/dx/dxplain.json new file mode 100644 index 000000000000..afd2821c5448 --- /dev/null +++ b/data/software/dx/dxplain.json @@ -0,0 +1,11 @@ +{ + "slug": "dxplain", + "name": "DXplain", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5206773" + ], + "developers": [ + "Massachusetts General Hospital" + ] +} diff --git a/data/software/dy/dyalog-apl.json b/data/software/dy/dyalog-apl.json new file mode 100644 index 000000000000..1fc0a10839c3 --- /dev/null +++ b/data/software/dy/dyalog-apl.json @@ -0,0 +1,14 @@ +{ + "slug": "dyalog-apl", + "name": "Dyalog APL", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106463105" + ], + "programming_languages": [ + "APL" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/dy/dyas-humanities-thesaurus.json b/data/software/dy/dyas-humanities-thesaurus.json new file mode 100644 index 000000000000..192dd4cc1c5b --- /dev/null +++ b/data/software/dy/dyas-humanities-thesaurus.json @@ -0,0 +1,8 @@ +{ + "slug": "dyas-humanities-thesaurus", + "name": "DYAS Humanities Thesaurus", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087798" + ] +} diff --git a/data/software/dy/dybuster.json b/data/software/dy/dybuster.json new file mode 100644 index 000000000000..1ac50ab2211f --- /dev/null +++ b/data/software/dy/dybuster.json @@ -0,0 +1,8 @@ +{ + "slug": "dybuster", + "name": "Dybuster", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1237343" + ] +} diff --git a/data/software/dy/dymola.json b/data/software/dy/dymola.json new file mode 100644 index 000000000000..c1d461576115 --- /dev/null +++ b/data/software/dy/dymola.json @@ -0,0 +1,11 @@ +{ + "slug": "dymola", + "name": "Dymola", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3716878" + ], + "developers": [ + "Dassault Systèmes" + ] +} diff --git a/data/software/dy/dynalist.json b/data/software/dy/dynalist.json new file mode 100644 index 000000000000..b66a468192bf --- /dev/null +++ b/data/software/dy/dynalist.json @@ -0,0 +1,11 @@ +{ + "slug": "dynalist", + "name": "Dynalist", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q58844017" + ], + "developers": [ + "Dynalist Inc." + ] +} diff --git a/data/software/dy/dynamation.json b/data/software/dy/dynamation.json new file mode 100644 index 000000000000..7f16dffa05fe --- /dev/null +++ b/data/software/dy/dynamation.json @@ -0,0 +1,8 @@ +{ + "slug": "dynamation", + "name": "Dynamation", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5318893" + ] +} diff --git a/data/software/dy/dynamic-c.json b/data/software/dy/dynamic-c.json new file mode 100644 index 000000000000..9d9567ac2577 --- /dev/null +++ b/data/software/dy/dynamic-c.json @@ -0,0 +1,8 @@ +{ + "slug": "dynamic-c", + "name": "Dynamic C", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3716884" + ] +} diff --git a/data/software/dy/dynamic-collateralized-payment-system-process.json b/data/software/dy/dynamic-collateralized-payment-system-process.json new file mode 100644 index 000000000000..ac64ad232e40 --- /dev/null +++ b/data/software/dy/dynamic-collateralized-payment-system-process.json @@ -0,0 +1,8 @@ +{ + "slug": "dynamic-collateralized-payment-system-process", + "name": "Dynamic Collateralized Payment System Process", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134008803" + ] +} diff --git a/data/software/dy/dynamic-language-runtime.json b/data/software/dy/dynamic-language-runtime.json new file mode 100644 index 000000000000..5432d7610918 --- /dev/null +++ b/data/software/dy/dynamic-language-runtime.json @@ -0,0 +1,14 @@ +{ + "slug": "dynamic-language-runtime", + "name": "Dynamic Language Runtime", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3041988" + ], + "developers": [ + "Microsoft" + ], + "licenses": [ + "Apache License" + ] +} diff --git a/data/software/dy/dynamic-leecher-protection.json b/data/software/dy/dynamic-leecher-protection.json new file mode 100644 index 000000000000..192010bca273 --- /dev/null +++ b/data/software/dy/dynamic-leecher-protection.json @@ -0,0 +1,8 @@ +{ + "slug": "dynamic-leecher-protection", + "name": "Dynamic Leecher Protection", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17164390" + ] +} diff --git a/data/software/dy/dynamic-symbols.json b/data/software/dy/dynamic-symbols.json new file mode 100644 index 000000000000..77c8511e2cba --- /dev/null +++ b/data/software/dy/dynamic-symbols.json @@ -0,0 +1,14 @@ +{ + "slug": "dynamic-symbols", + "name": "Dynamic Symbols", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138658074" + ], + "developers": [ + "Febhouse" + ], + "genres": [ + "architecture" + ] +} diff --git a/data/software/dy/dynarmic.json b/data/software/dy/dynarmic.json new file mode 100644 index 000000000000..4464464226f2 --- /dev/null +++ b/data/software/dy/dynarmic.json @@ -0,0 +1,14 @@ +{ + "slug": "dynarmic", + "name": "dynarmic", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q119982945" + ], + "developers": [ + "merryhime" + ], + "licenses": [ + "Zero-clause BSD License" + ] +} diff --git a/data/software/dy/dynatext-browser.json b/data/software/dy/dynatext-browser.json new file mode 100644 index 000000000000..9925bba296dd --- /dev/null +++ b/data/software/dy/dynatext-browser.json @@ -0,0 +1,18 @@ +{ + "slug": "dynatext-browser", + "name": "DynaText Browser", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124454231" + ], + "developers": [ + "Inso corporation" + ], + "operating_systems": [ + "Windows NT 3.51", + "HP-UX", + "IRIX", + "Windows 95", + "Solaris" + ] +} diff --git a/data/software/dy/dynatrace-software-intelligence-plattform.json b/data/software/dy/dynatrace-software-intelligence-plattform.json new file mode 100644 index 000000000000..70833deee5cc --- /dev/null +++ b/data/software/dy/dynatrace-software-intelligence-plattform.json @@ -0,0 +1,11 @@ +{ + "slug": "dynatrace-software-intelligence-plattform", + "name": "Dynatrace Software Intelligence Plattform", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122147734" + ], + "developers": [ + "Dynatrace" + ] +} diff --git a/data/software/dy/dynaweb.json b/data/software/dy/dynaweb.json new file mode 100644 index 000000000000..91e640afca0d --- /dev/null +++ b/data/software/dy/dynaweb.json @@ -0,0 +1,11 @@ +{ + "slug": "dynaweb", + "name": "DynaWeb", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124454432" + ], + "developers": [ + "Electronic Book Technologies" + ] +} diff --git a/data/software/dy/dynverse.json b/data/software/dy/dynverse.json new file mode 100644 index 000000000000..331ac4c53315 --- /dev/null +++ b/data/software/dy/dynverse.json @@ -0,0 +1,11 @@ +{ + "slug": "dynverse", + "name": "dynverse", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112570085" + ], + "programming_languages": [ + "R" + ] +} diff --git a/data/software/dz/dzaima-apl.json b/data/software/dz/dzaima-apl.json new file mode 100644 index 000000000000..ba5bc2a21b33 --- /dev/null +++ b/data/software/dz/dzaima-apl.json @@ -0,0 +1,14 @@ +{ + "slug": "dzaima-apl", + "name": "dzaima APL", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106542006" + ], + "programming_languages": [ + "Java" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/dz/dzen.json b/data/software/dz/dzen.json new file mode 100644 index 000000000000..81aa0d38ea9f --- /dev/null +++ b/data/software/dz/dzen.json @@ -0,0 +1,14 @@ +{ + "slug": "dzen", + "name": "Dzen", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q29223522" + ], + "developers": [ + "Yandex" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/e-/e-aksharayan.json b/data/software/e-/e-aksharayan.json new file mode 100644 index 000000000000..618a87001840 --- /dev/null +++ b/data/software/e-/e-aksharayan.json @@ -0,0 +1,11 @@ +{ + "slug": "e-aksharayan", + "name": "E-aksharayan", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q24883484" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/e-/e-gree.json b/data/software/e-/e-gree.json new file mode 100644 index 000000000000..a59de9526b7c --- /dev/null +++ b/data/software/e-/e-gree.json @@ -0,0 +1,8 @@ +{ + "slug": "e-gree", + "name": "E-gree", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106514694" + ] +} diff --git a/data/software/e-/e-mu-emulator-x.json b/data/software/e-/e-mu-emulator-x.json new file mode 100644 index 000000000000..88ada27c554c --- /dev/null +++ b/data/software/e-/e-mu-emulator-x.json @@ -0,0 +1,8 @@ +{ + "slug": "e-mu-emulator-x", + "name": "E-mu Emulator X", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5321528" + ] +} diff --git a/data/software/e-/e-on-vue.json b/data/software/e-/e-on-vue.json new file mode 100644 index 000000000000..00cfce8635cb --- /dev/null +++ b/data/software/e-/e-on-vue.json @@ -0,0 +1,11 @@ +{ + "slug": "e-on-vue", + "name": "E-on Vue", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1116420" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/e-/e-parser.json b/data/software/e-/e-parser.json new file mode 100644 index 000000000000..3746d9113d20 --- /dev/null +++ b/data/software/e-/e-parser.json @@ -0,0 +1,8 @@ +{ + "slug": "e-parser", + "name": "E-Parser", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087801" + ] +} diff --git a/data/software/e-/e-sword.json b/data/software/e-/e-sword.json new file mode 100644 index 000000000000..87df40759729 --- /dev/null +++ b/data/software/e-/e-sword.json @@ -0,0 +1,8 @@ +{ + "slug": "e-sword", + "name": "E-Sword", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q986639" + ] +} diff --git a/data/software/e-/e-tools.json b/data/software/e-/e-tools.json new file mode 100644 index 000000000000..9329024aa0c4 --- /dev/null +++ b/data/software/e-/e-tools.json @@ -0,0 +1,8 @@ +{ + "slug": "e-tools", + "name": "e-Tools", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5321467" + ] +} diff --git a/data/software/e1/e15.json b/data/software/e1/e15.json new file mode 100644 index 000000000000..acdd9dbeaeca --- /dev/null +++ b/data/software/e1/e15.json @@ -0,0 +1,8 @@ +{ + "slug": "e15", + "name": "E15", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5322344" + ] +} diff --git a/data/software/e3/e3-series.json b/data/software/e3/e3-series.json new file mode 100644 index 000000000000..d7b925282741 --- /dev/null +++ b/data/software/e3/e3-series.json @@ -0,0 +1,14 @@ +{ + "slug": "e3-series", + "name": "E3.Series", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4037762" + ], + "operating_systems": [ + "Microsoft Windows" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/e3/e3.json b/data/software/e3/e3.json new file mode 100644 index 000000000000..89a444afac2a --- /dev/null +++ b/data/software/e3/e3.json @@ -0,0 +1,8 @@ +{ + "slug": "e3", + "name": "e3", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62849248" + ] +} diff --git a/data/software/ea/ea-autolog.json b/data/software/ea/ea-autolog.json new file mode 100644 index 000000000000..672a95439d93 --- /dev/null +++ b/data/software/ea/ea-autolog.json @@ -0,0 +1,11 @@ +{ + "slug": "ea-autolog", + "name": "EA Autolog", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5322545" + ], + "developers": [ + "Criterion Games" + ] +} diff --git a/data/software/ea/ea-download-manager.json b/data/software/ea/ea-download-manager.json new file mode 100644 index 000000000000..e036c78ea11e --- /dev/null +++ b/data/software/ea/ea-download-manager.json @@ -0,0 +1,15 @@ +{ + "slug": "ea-download-manager", + "name": "EA Download Manager", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121327235" + ], + "release_date": "2007-09-01", + "developers": [ + "Electronic Arts" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/ea/ea-downloader.json b/data/software/ea/ea-downloader.json new file mode 100644 index 000000000000..2d0de35f400e --- /dev/null +++ b/data/software/ea/ea-downloader.json @@ -0,0 +1,15 @@ +{ + "slug": "ea-downloader", + "name": "EA Downloader", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121327310" + ], + "release_date": "2005-01-01", + "developers": [ + "Electronic Arts" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/ea/eaasi.json b/data/software/ea/eaasi.json new file mode 100644 index 000000000000..0704ae13c90f --- /dev/null +++ b/data/software/ea/eaasi.json @@ -0,0 +1,8 @@ +{ + "slug": "eaasi", + "name": "EaaSI", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109380161" + ] +} diff --git a/data/software/ea/eac3to.json b/data/software/ea/eac3to.json new file mode 100644 index 000000000000..cd7a2bf52d75 --- /dev/null +++ b/data/software/ea/eac3to.json @@ -0,0 +1,11 @@ +{ + "slug": "eac3to", + "name": "Eac3to", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q19368614" + ], + "developers": [ + "Mathias Rauen" + ] +} diff --git a/data/software/ea/eagle.json b/data/software/ea/eagle.json new file mode 100644 index 000000000000..32dd7b3a26bd --- /dev/null +++ b/data/software/ea/eagle.json @@ -0,0 +1,8 @@ +{ + "slug": "eagle", + "name": "Eagle", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5324997" + ] +} diff --git a/data/software/ea/eaglecoin.json b/data/software/ea/eaglecoin.json new file mode 100644 index 000000000000..d5e18b067917 --- /dev/null +++ b/data/software/ea/eaglecoin.json @@ -0,0 +1,8 @@ +{ + "slug": "eaglecoin", + "name": "EagleCoin", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q20639637" + ] +} diff --git a/data/software/ea/eagleget.json b/data/software/ea/eagleget.json new file mode 100644 index 000000000000..6b82cfbd5885 --- /dev/null +++ b/data/software/ea/eagleget.json @@ -0,0 +1,8 @@ +{ + "slug": "eagleget", + "name": "EagleGet", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q15927760" + ] +} diff --git a/data/software/ea/eaglelytics.json b/data/software/ea/eaglelytics.json new file mode 100644 index 000000000000..3de7be95e192 --- /dev/null +++ b/data/software/ea/eaglelytics.json @@ -0,0 +1,17 @@ +{ + "slug": "eaglelytics", + "name": "EagleLytics", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139618882" + ], + "operating_systems": [ + "web application" + ], + "programming_languages": [ + "Python" + ], + "genres": [ + "inventory management software" + ] +} diff --git a/data/software/ea/earlyforge.json b/data/software/ea/earlyforge.json new file mode 100644 index 000000000000..23fd442217a5 --- /dev/null +++ b/data/software/ea/earlyforge.json @@ -0,0 +1,11 @@ +{ + "slug": "earlyforge", + "name": "EarlyForge", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140465799" + ], + "genres": [ + "news" + ] +} diff --git a/data/software/ea/earmaster.json b/data/software/ea/earmaster.json new file mode 100644 index 000000000000..7ba2b925e364 --- /dev/null +++ b/data/software/ea/earmaster.json @@ -0,0 +1,8 @@ +{ + "slug": "earmaster", + "name": "EarMaster", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2465130" + ] +} diff --git a/data/software/ea/earth-simulator.json b/data/software/ea/earth-simulator.json new file mode 100644 index 000000000000..23169e2acc6a --- /dev/null +++ b/data/software/ea/earth-simulator.json @@ -0,0 +1,15 @@ +{ + "slug": "earth-simulator", + "name": "Earth Simulator", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1277662" + ], + "developers": [ + "Japan Aerospace Exploration Agency", + "NEC" + ], + "operating_systems": [ + "SUPER-UX" + ] +} diff --git a/data/software/ea/earth-system-grid.json b/data/software/ea/earth-system-grid.json new file mode 100644 index 000000000000..743069b241f2 --- /dev/null +++ b/data/software/ea/earth-system-grid.json @@ -0,0 +1,8 @@ +{ + "slug": "earth-system-grid", + "name": "Earth System Grid", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5327134" + ] +} diff --git a/data/software/ea/earthbrowser.json b/data/software/ea/earthbrowser.json new file mode 100644 index 000000000000..34cedb69fe12 --- /dev/null +++ b/data/software/ea/earthbrowser.json @@ -0,0 +1,8 @@ +{ + "slug": "earthbrowser", + "name": "EarthBrowser", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5327019" + ] +} diff --git a/data/software/ea/earthquake-early-warning.json b/data/software/ea/earthquake-early-warning.json new file mode 100644 index 000000000000..c5e53e67639f --- /dev/null +++ b/data/software/ea/earthquake-early-warning.json @@ -0,0 +1,8 @@ +{ + "slug": "earthquake-early-warning", + "name": "Earthquake Early Warning", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1281628" + ] +} diff --git a/data/software/ea/earthstation-5.json b/data/software/ea/earthstation-5.json new file mode 100644 index 000000000000..92cbcb3105c0 --- /dev/null +++ b/data/software/ea/earthstation-5.json @@ -0,0 +1,8 @@ +{ + "slug": "earthstation-5", + "name": "EarthStation 5", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q49665" + ] +} diff --git a/data/software/ea/ease-focus.json b/data/software/ea/ease-focus.json new file mode 100644 index 000000000000..859b38340d87 --- /dev/null +++ b/data/software/ea/ease-focus.json @@ -0,0 +1,8 @@ +{ + "slug": "ease-focus", + "name": "EASE Focus", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q29374310" + ] +} diff --git a/data/software/ea/easeus-data-recovery-wizard.json b/data/software/ea/easeus-data-recovery-wizard.json new file mode 100644 index 000000000000..357b57c7e2e3 --- /dev/null +++ b/data/software/ea/easeus-data-recovery-wizard.json @@ -0,0 +1,16 @@ +{ + "slug": "easeus-data-recovery-wizard", + "name": "EaseUS Data Recovery Wizard", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5227205" + ], + "developers": [ + "EaseUS" + ], + "operating_systems": [ + "iOS", + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/software/ea/easeus-partition-master.json b/data/software/ea/easeus-partition-master.json new file mode 100644 index 000000000000..e1dc121b29f2 --- /dev/null +++ b/data/software/ea/easeus-partition-master.json @@ -0,0 +1,14 @@ +{ + "slug": "easeus-partition-master", + "name": "EaseUS Partition Master", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11197442" + ], + "developers": [ + "EaseUS" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/ea/easy-projects.json b/data/software/ea/easy-projects.json new file mode 100644 index 000000000000..b2e6592b13a5 --- /dev/null +++ b/data/software/ea/easy-projects.json @@ -0,0 +1,8 @@ +{ + "slug": "easy-projects", + "name": "Easy Projects", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4037886" + ] +} diff --git a/data/software/ea/easy-rsa.json b/data/software/ea/easy-rsa.json new file mode 100644 index 000000000000..5700279ff88f --- /dev/null +++ b/data/software/ea/easy-rsa.json @@ -0,0 +1,8 @@ +{ + "slug": "easy-rsa", + "name": "easy-rsa", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62848476" + ] +} diff --git a/data/software/ea/easy-transcript.json b/data/software/ea/easy-transcript.json new file mode 100644 index 000000000000..ba3e8ef543dc --- /dev/null +++ b/data/software/ea/easy-transcript.json @@ -0,0 +1,18 @@ +{ + "slug": "easy-transcript", + "name": "Easy Transcript", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106465177" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [ + "PHP" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/ea/easy2sync-for-files.json b/data/software/ea/easy2sync-for-files.json new file mode 100644 index 000000000000..185216e2c87a --- /dev/null +++ b/data/software/ea/easy2sync-for-files.json @@ -0,0 +1,9 @@ +{ + "slug": "easy2sync-for-files", + "name": "Easy2Sync for Files", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5331059" + ], + "release_date": "2002-07-01" +} diff --git a/data/software/ea/easy8.json b/data/software/ea/easy8.json new file mode 100644 index 000000000000..e9bda10016a6 --- /dev/null +++ b/data/software/ea/easy8.json @@ -0,0 +1,8 @@ +{ + "slug": "easy8", + "name": "Easy8", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123879836" + ] +} diff --git a/data/software/ea/easybase.json b/data/software/ea/easybase.json new file mode 100644 index 000000000000..8d8d2c17e12a --- /dev/null +++ b/data/software/ea/easybase.json @@ -0,0 +1,11 @@ +{ + "slug": "easybase", + "name": "EasyBase", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q95491295" + ], + "operating_systems": [ + "Atari TOS" + ] +} diff --git a/data/software/ea/easybcd.json b/data/software/ea/easybcd.json new file mode 100644 index 000000000000..ce0cf6083d5a --- /dev/null +++ b/data/software/ea/easybcd.json @@ -0,0 +1,12 @@ +{ + "slug": "easybcd", + "name": "EasyBCD", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1278326" + ], + "release_date": "2004-07-04", + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/ea/easycad.json b/data/software/ea/easycad.json new file mode 100644 index 000000000000..2f32426d7177 --- /dev/null +++ b/data/software/ea/easycad.json @@ -0,0 +1,11 @@ +{ + "slug": "easycad", + "name": "EasyCAD", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108722295" + ], + "developers": [ + "Evolution Computing" + ] +} diff --git a/data/software/ea/easycleaner.json b/data/software/ea/easycleaner.json new file mode 100644 index 000000000000..6ff4d173e2ca --- /dev/null +++ b/data/software/ea/easycleaner.json @@ -0,0 +1,11 @@ +{ + "slug": "easycleaner", + "name": "EasyCleaner", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113063796" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/ea/easycode.json b/data/software/ea/easycode.json new file mode 100644 index 000000000000..5b47df9544ac --- /dev/null +++ b/data/software/ea/easycode.json @@ -0,0 +1,14 @@ +{ + "slug": "easycode", + "name": "EasyCODE", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1278310" + ], + "operating_systems": [ + "Microsoft Windows" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/ea/easydb.json b/data/software/ea/easydb.json new file mode 100644 index 000000000000..2dd28f750226 --- /dev/null +++ b/data/software/ea/easydb.json @@ -0,0 +1,8 @@ +{ + "slug": "easydb", + "name": "easydb", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1278375" + ] +} diff --git a/data/software/ea/easydriver.json b/data/software/ea/easydriver.json new file mode 100644 index 000000000000..2f42643396eb --- /dev/null +++ b/data/software/ea/easydriver.json @@ -0,0 +1,8 @@ +{ + "slug": "easydriver", + "name": "EasyDriver", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138495561" + ] +} diff --git a/data/software/ea/easyeda.json b/data/software/ea/easyeda.json new file mode 100644 index 000000000000..a9dec2b901c3 --- /dev/null +++ b/data/software/ea/easyeda.json @@ -0,0 +1,12 @@ +{ + "slug": "easyeda", + "name": "EasyEDA", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25304421" + ], + "release_date": "2013-01-01", + "licenses": [ + "commercial software" + ] +} diff --git a/data/software/ea/easyhdr.json b/data/software/ea/easyhdr.json new file mode 100644 index 000000000000..0e77ef9f6f42 --- /dev/null +++ b/data/software/ea/easyhdr.json @@ -0,0 +1,8 @@ +{ + "slug": "easyhdr", + "name": "EasyHDR", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1278331" + ] +} diff --git a/data/software/ea/easylist.json b/data/software/ea/easylist.json new file mode 100644 index 000000000000..1a8bb55d5915 --- /dev/null +++ b/data/software/ea/easylist.json @@ -0,0 +1,12 @@ +{ + "slug": "easylist", + "name": "EasyList", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q24873696" + ], + "release_date": "2005-01-01", + "licenses": [ + "Creative Commons Attribution-ShareAlike 3.0 Unported" + ] +} diff --git a/data/software/ea/easymp3gain.json b/data/software/ea/easymp3gain.json new file mode 100644 index 000000000000..df326e3e3e3c --- /dev/null +++ b/data/software/ea/easymp3gain.json @@ -0,0 +1,8 @@ +{ + "slug": "easymp3gain", + "name": "EasyMP3Gain", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4037883" + ] +} diff --git a/data/software/ea/easyoffice.json b/data/software/ea/easyoffice.json new file mode 100644 index 000000000000..a11aa3ff0ee9 --- /dev/null +++ b/data/software/ea/easyoffice.json @@ -0,0 +1,8 @@ +{ + "slug": "easyoffice", + "name": "EasyOffice", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5331071" + ] +} diff --git a/data/software/ea/easyrisk-manager.json b/data/software/ea/easyrisk-manager.json new file mode 100644 index 000000000000..885507c3dbd0 --- /dev/null +++ b/data/software/ea/easyrisk-manager.json @@ -0,0 +1,14 @@ +{ + "slug": "easyrisk-manager", + "name": "EasyRisk Manager", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5331075" + ], + "licenses": [ + "proprietary license" + ], + "genres": [ + "risk management" + ] +} diff --git a/data/software/ea/easytoon.json b/data/software/ea/easytoon.json new file mode 100644 index 000000000000..cb4d17a00677 --- /dev/null +++ b/data/software/ea/easytoon.json @@ -0,0 +1,8 @@ +{ + "slug": "easytoon", + "name": "EasyToon", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10269906" + ] +} diff --git a/data/software/ea/easytopromo.json b/data/software/ea/easytopromo.json new file mode 100644 index 000000000000..d09d70cf08f3 --- /dev/null +++ b/data/software/ea/easytopromo.json @@ -0,0 +1,8 @@ +{ + "slug": "easytopromo", + "name": "EasytoPromo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138758453" + ] +} diff --git a/data/software/ea/easytracker.json b/data/software/ea/easytracker.json new file mode 100644 index 000000000000..b4c617dd5711 --- /dev/null +++ b/data/software/ea/easytracker.json @@ -0,0 +1,8 @@ +{ + "slug": "easytracker", + "name": "EasyTracker", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5331077" + ] +} diff --git a/data/software/ea/easytranscript.json b/data/software/ea/easytranscript.json new file mode 100644 index 000000000000..ea801b00c324 --- /dev/null +++ b/data/software/ea/easytranscript.json @@ -0,0 +1,18 @@ +{ + "slug": "easytranscript", + "name": "easytranscript", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q66659624" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [ + "Java" + ], + "licenses": [ + "GNU General Public License, version 3.0" + ] +} diff --git a/data/software/ea/eathena.json b/data/software/ea/eathena.json new file mode 100644 index 000000000000..113687b6a8b0 --- /dev/null +++ b/data/software/ea/eathena.json @@ -0,0 +1,8 @@ +{ + "slug": "eathena", + "name": "EAthena", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1941308" + ] +} diff --git a/data/software/ea/eavl.json b/data/software/ea/eavl.json new file mode 100644 index 000000000000..e2b6b3bfdb6c --- /dev/null +++ b/data/software/ea/eavl.json @@ -0,0 +1,8 @@ +{ + "slug": "eavl", + "name": "EAVL", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117571933" + ] +} diff --git a/data/software/ea/eazydraw.json b/data/software/ea/eazydraw.json new file mode 100644 index 000000000000..1d0deecc2df3 --- /dev/null +++ b/data/software/ea/eazydraw.json @@ -0,0 +1,8 @@ +{ + "slug": "eazydraw", + "name": "Eazydraw", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5331477" + ] +} diff --git a/data/software/eb/ebean.json b/data/software/eb/ebean.json new file mode 100644 index 000000000000..27e779d2e368 --- /dev/null +++ b/data/software/eb/ebean.json @@ -0,0 +1,17 @@ +{ + "slug": "ebean", + "name": "Ebean", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5331584" + ], + "operating_systems": [ + "cross-platform" + ], + "programming_languages": [ + "Java" + ], + "licenses": [ + "Apache Software License 2.0" + ] +} diff --git a/data/software/eb/eboard.json b/data/software/eb/eboard.json new file mode 100644 index 000000000000..ed50d1b3ac2a --- /dev/null +++ b/data/software/eb/eboard.json @@ -0,0 +1,8 @@ +{ + "slug": "eboard", + "name": "eboard", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62848490" + ] +} diff --git a/data/software/eb/ebsilon-professional.json b/data/software/eb/ebsilon-professional.json new file mode 100644 index 000000000000..aedce6232b3e --- /dev/null +++ b/data/software/eb/ebsilon-professional.json @@ -0,0 +1,8 @@ +{ + "slug": "ebsilon-professional", + "name": "EBSILON Professional", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16064019" + ] +} diff --git a/data/software/ec/ec-cube.json b/data/software/ec/ec-cube.json new file mode 100644 index 000000000000..d906861465f7 --- /dev/null +++ b/data/software/ec/ec-cube.json @@ -0,0 +1,8 @@ +{ + "slug": "ec-cube", + "name": "EC-CUBE", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11197472" + ] +} diff --git a/data/software/ec/ec-orange.json b/data/software/ec/ec-orange.json new file mode 100644 index 000000000000..fa4c4c121308 --- /dev/null +++ b/data/software/ec/ec-orange.json @@ -0,0 +1,8 @@ +{ + "slug": "ec-orange", + "name": "EC Orange", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11197500" + ] +} diff --git a/data/software/ec/ecadstar.json b/data/software/ec/ecadstar.json new file mode 100644 index 000000000000..a96f0326f8af --- /dev/null +++ b/data/software/ec/ecadstar.json @@ -0,0 +1,14 @@ +{ + "slug": "ecadstar", + "name": "eCADSTAR", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q114776615" + ], + "developers": [ + "Zuken" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/ec/eccky.json b/data/software/ec/eccky.json new file mode 100644 index 000000000000..3ec07421fabc --- /dev/null +++ b/data/software/ec/eccky.json @@ -0,0 +1,8 @@ +{ + "slug": "eccky", + "name": "Eccky", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5332189" + ] +} diff --git a/data/software/ec/ecco-pro.json b/data/software/ec/ecco-pro.json new file mode 100644 index 000000000000..78a4f82ced1a --- /dev/null +++ b/data/software/ec/ecco-pro.json @@ -0,0 +1,11 @@ +{ + "slug": "ecco-pro", + "name": "Ecco Pro", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5332297" + ], + "developers": [ + "NetManage" + ] +} diff --git a/data/software/ec/echo-lake.json b/data/software/ec/echo-lake.json new file mode 100644 index 000000000000..2163b81b9773 --- /dev/null +++ b/data/software/ec/echo-lake.json @@ -0,0 +1,8 @@ +{ + "slug": "echo-lake", + "name": "Echo Lake", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5332725" + ] +} diff --git a/data/software/ec/echodamp.json b/data/software/ec/echodamp.json new file mode 100644 index 000000000000..d0930de133ef --- /dev/null +++ b/data/software/ec/echodamp.json @@ -0,0 +1,8 @@ +{ + "slug": "echodamp", + "name": "ECHODamp", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084933" + ] +} diff --git a/data/software/ec/echolink.json b/data/software/ec/echolink.json new file mode 100644 index 000000000000..c52c806010b7 --- /dev/null +++ b/data/software/ec/echolink.json @@ -0,0 +1,8 @@ +{ + "slug": "echolink", + "name": "Echolink", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1202730" + ] +} diff --git a/data/software/ec/echoping.json b/data/software/ec/echoping.json new file mode 100644 index 000000000000..4c4eb611f498 --- /dev/null +++ b/data/software/ec/echoping.json @@ -0,0 +1,8 @@ +{ + "slug": "echoping", + "name": "echoping", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62848498" + ] +} diff --git a/data/software/ec/ecib.json b/data/software/ec/ecib.json new file mode 100644 index 000000000000..0a4fd1894483 --- /dev/null +++ b/data/software/ec/ecib.json @@ -0,0 +1,8 @@ +{ + "slug": "ecib", + "name": "ECIB", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5322679" + ] +} diff --git a/data/software/ec/eclair.json b/data/software/ec/eclair.json new file mode 100644 index 000000000000..cf383287b569 --- /dev/null +++ b/data/software/ec/eclair.json @@ -0,0 +1,8 @@ +{ + "slug": "eclair", + "name": "ECLAIR", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5322687" + ] +} diff --git a/data/software/ec/eclipse-4diac.json b/data/software/ec/eclipse-4diac.json new file mode 100644 index 000000000000..55c5fc3adb3d --- /dev/null +++ b/data/software/ec/eclipse-4diac.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-4diac", + "name": "Eclipse 4diac", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76166953" + ] +} diff --git a/data/software/ec/eclipse-accessibility-tools-framework.json b/data/software/ec/eclipse-accessibility-tools-framework.json new file mode 100644 index 000000000000..5232f039f000 --- /dev/null +++ b/data/software/ec/eclipse-accessibility-tools-framework.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-accessibility-tools-framework", + "name": "Eclipse Accessibility Tools Framework", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76166973" + ] +} diff --git a/data/software/ec/eclipse-acute.json b/data/software/ec/eclipse-acute.json new file mode 100644 index 000000000000..4a92d62b86b9 --- /dev/null +++ b/data/software/ec/eclipse-acute.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-acute", + "name": "Eclipse aCute", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76165264" + ] +} diff --git a/data/software/ec/eclipse-advanced-scripting-environment.json b/data/software/ec/eclipse-advanced-scripting-environment.json new file mode 100644 index 000000000000..1caa8fc31ab8 --- /dev/null +++ b/data/software/ec/eclipse-advanced-scripting-environment.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-advanced-scripting-environment", + "name": "Eclipse Advanced Scripting Environment", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76178957" + ] +} diff --git a/data/software/ec/eclipse-advanced-visualization-project.json b/data/software/ec/eclipse-advanced-visualization-project.json new file mode 100644 index 000000000000..abe9743c15ec --- /dev/null +++ b/data/software/ec/eclipse-advanced-visualization-project.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-advanced-visualization-project", + "name": "Eclipse Advanced Visualization Project", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72272881" + ] +} diff --git a/data/software/ec/eclipse-agail.json b/data/software/ec/eclipse-agail.json new file mode 100644 index 000000000000..0d6ff71cee18 --- /dev/null +++ b/data/software/ec/eclipse-agail.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-agail", + "name": "Eclipse Agail", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76178764" + ] +} diff --git a/data/software/ec/eclipse-agent-modeling-platform.json b/data/software/ec/eclipse-agent-modeling-platform.json new file mode 100644 index 000000000000..2400934a0844 --- /dev/null +++ b/data/software/ec/eclipse-agent-modeling-platform.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-agent-modeling-platform", + "name": "Eclipse Agent Modeling Platform", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76166988" + ] +} diff --git a/data/software/ec/eclipse-ajax-tools-framework-atf.json b/data/software/ec/eclipse-ajax-tools-framework-atf.json new file mode 100644 index 000000000000..9e93348e7004 --- /dev/null +++ b/data/software/ec/eclipse-ajax-tools-framework-atf.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-ajax-tools-framework-atf", + "name": "Eclipse Ajax Tools Framework (ATF)", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72273719" + ] +} diff --git a/data/software/ec/eclipse-ajdt-aspectj-development-tools-project.json b/data/software/ec/eclipse-ajdt-aspectj-development-tools-project.json new file mode 100644 index 000000000000..c3febb377142 --- /dev/null +++ b/data/software/ec/eclipse-ajdt-aspectj-development-tools-project.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-ajdt-aspectj-development-tools-project", + "name": "Eclipse AJDT - AspectJ Development Tools Project", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72273785" + ] +} diff --git a/data/software/ec/eclipse-amalgamation.json b/data/software/ec/eclipse-amalgamation.json new file mode 100644 index 000000000000..96143e029351 --- /dev/null +++ b/data/software/ec/eclipse-amalgamation.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-amalgamation", + "name": "Eclipse Amalgamation", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72273727" + ] +} diff --git a/data/software/ec/eclipse-andmore.json b/data/software/ec/eclipse-andmore.json new file mode 100644 index 000000000000..ffdd9e8a4372 --- /dev/null +++ b/data/software/ec/eclipse-andmore.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-andmore", + "name": "Eclipse Andmore", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76166112" + ] +} diff --git a/data/software/ec/eclipse-apogy.json b/data/software/ec/eclipse-apogy.json new file mode 100644 index 000000000000..9ed73118164d --- /dev/null +++ b/data/software/ec/eclipse-apogy.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-apogy", + "name": "Eclipse Apogy", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76178747" + ] +} diff --git a/data/software/ec/eclipse-app4mc.json b/data/software/ec/eclipse-app4mc.json new file mode 100644 index 000000000000..78644d8e7130 --- /dev/null +++ b/data/software/ec/eclipse-app4mc.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-app4mc", + "name": "Eclipse APP4MC", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76179011" + ] +} diff --git a/data/software/ec/eclipse-apricot.json b/data/software/ec/eclipse-apricot.json new file mode 100644 index 000000000000..88be2f0aad50 --- /dev/null +++ b/data/software/ec/eclipse-apricot.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-apricot", + "name": "Eclipse Apricot", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72273733" + ] +} diff --git a/data/software/ec/eclipse-arrowhead.json b/data/software/ec/eclipse-arrowhead.json new file mode 100644 index 000000000000..17e708d458de --- /dev/null +++ b/data/software/ec/eclipse-arrowhead.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-arrowhead", + "name": "Eclipse Arrowhead", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q96652466" + ] +} diff --git a/data/software/ec/eclipse-aspectj.json b/data/software/ec/eclipse-aspectj.json new file mode 100644 index 000000000000..976b5dba14b6 --- /dev/null +++ b/data/software/ec/eclipse-aspectj.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-aspectj", + "name": "Eclipse AspectJ", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72273740" + ] +} diff --git a/data/software/ec/eclipse-atl.json b/data/software/ec/eclipse-atl.json new file mode 100644 index 000000000000..f53bdf8a2b95 --- /dev/null +++ b/data/software/ec/eclipse-atl.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-atl", + "name": "Eclipse ATL", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72272532" + ] +} diff --git a/data/software/ec/eclipse-automated-driving-open-research-adore.json b/data/software/ec/eclipse-automated-driving-open-research-adore.json new file mode 100644 index 000000000000..d71cb87545e7 --- /dev/null +++ b/data/software/ec/eclipse-automated-driving-open-research-adore.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-automated-driving-open-research-adore", + "name": "Eclipse Automated Driving Open Research (ADORe)", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q96072021" + ] +} diff --git a/data/software/ec/eclipse-avsys.json b/data/software/ec/eclipse-avsys.json new file mode 100644 index 000000000000..abd6899b3853 --- /dev/null +++ b/data/software/ec/eclipse-avsys.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-avsys", + "name": "Eclipse AVSys", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76169994" + ] +} diff --git a/data/software/ec/eclipse-b612-the-polarsys-font.json b/data/software/ec/eclipse-b612-the-polarsys-font.json new file mode 100644 index 000000000000..87ff73705a77 --- /dev/null +++ b/data/software/ec/eclipse-b612-the-polarsys-font.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-b612-the-polarsys-font", + "name": "Eclipse B612 - The PolarSys Font", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76175012" + ] +} diff --git a/data/software/ec/eclipse-babel.json b/data/software/ec/eclipse-babel.json new file mode 100644 index 000000000000..7c7ad7f63948 --- /dev/null +++ b/data/software/ec/eclipse-babel.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-babel", + "name": "Eclipse Babel", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72273751" + ] +} diff --git a/data/software/ec/eclipse-basyx.json b/data/software/ec/eclipse-basyx.json new file mode 100644 index 000000000000..45d59f319be0 --- /dev/null +++ b/data/software/ec/eclipse-basyx.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-basyx", + "name": "Eclipse BaSyx", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76178737" + ] +} diff --git a/data/software/ec/eclipse-bpel-designer.json b/data/software/ec/eclipse-bpel-designer.json new file mode 100644 index 000000000000..aa7a8dc3bf02 --- /dev/null +++ b/data/software/ec/eclipse-bpel-designer.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-bpel-designer", + "name": "Eclipse BPEL Designer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76164701" + ] +} diff --git a/data/software/ec/eclipse-bpmn2-modeler-project.json b/data/software/ec/eclipse-bpmn2-modeler-project.json new file mode 100644 index 000000000000..810f25d5096d --- /dev/null +++ b/data/software/ec/eclipse-bpmn2-modeler-project.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-bpmn2-modeler-project", + "name": "Eclipse BPMN2 Modeler Project", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76164702" + ] +} diff --git a/data/software/ec/eclipse-bridge-iot.json b/data/software/ec/eclipse-bridge-iot.json new file mode 100644 index 000000000000..35bed17c28b6 --- /dev/null +++ b/data/software/ec/eclipse-bridge-iot.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-bridge-iot", + "name": "Eclipse Bridge.IoT", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76176737" + ] +} diff --git a/data/software/ec/eclipse-buckminster-component-assembly.json b/data/software/ec/eclipse-buckminster-component-assembly.json new file mode 100644 index 000000000000..ed0b35ee4a7d --- /dev/null +++ b/data/software/ec/eclipse-buckminster-component-assembly.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-buckminster-component-assembly", + "name": "Eclipse Buckminster Component Assembly", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76164703" + ] +} diff --git a/data/software/ec/eclipse-buildship-eclipse-plug-ins-for-gradle.json b/data/software/ec/eclipse-buildship-eclipse-plug-ins-for-gradle.json new file mode 100644 index 000000000000..c4cf2689508f --- /dev/null +++ b/data/software/ec/eclipse-buildship-eclipse-plug-ins-for-gradle.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-buildship-eclipse-plug-ins-for-gradle", + "name": "Eclipse Buildship: Eclipse Plug-ins for Gradle", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72273088" + ] +} diff --git a/data/software/ec/eclipse-bundle-recipes.json b/data/software/ec/eclipse-bundle-recipes.json new file mode 100644 index 000000000000..60a0d79c54dd --- /dev/null +++ b/data/software/ec/eclipse-bundle-recipes.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-bundle-recipes", + "name": "Eclipse Bundle Recipes", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76178721" + ] +} diff --git a/data/software/ec/eclipse-business-process-model-and-notation-bpmn2.json b/data/software/ec/eclipse-business-process-model-and-notation-bpmn2.json new file mode 100644 index 000000000000..5e9ddf88ef96 --- /dev/null +++ b/data/software/ec/eclipse-business-process-model-and-notation-bpmn2.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-business-process-model-and-notation-bpmn2", + "name": "Eclipse Business Process Model and Notation (BPMN2)", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76164704" + ] +} diff --git a/data/software/ec/eclipse-c-c-development-tooling-cdt.json b/data/software/ec/eclipse-c-c-development-tooling-cdt.json new file mode 100644 index 000000000000..487de8915619 --- /dev/null +++ b/data/software/ec/eclipse-c-c-development-tooling-cdt.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-c-c-development-tooling-cdt", + "name": "Eclipse C/C++ Development Tooling (CDT)", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72273760" + ] +} diff --git a/data/software/ec/eclipse-californium-cf-coap-framework.json b/data/software/ec/eclipse-californium-cf-coap-framework.json new file mode 100644 index 000000000000..a05cc790fc1f --- /dev/null +++ b/data/software/ec/eclipse-californium-cf-coap-framework.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-californium-cf-coap-framework", + "name": "Eclipse Californium (Cf) CoAP Framework", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76174813" + ] +} diff --git a/data/software/ec/eclipse-capra.json b/data/software/ec/eclipse-capra.json new file mode 100644 index 000000000000..daec483c37a7 --- /dev/null +++ b/data/software/ec/eclipse-capra.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-capra", + "name": "Eclipse Capra", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76164718" + ] +} diff --git a/data/software/ec/eclipse-cargo-tracker.json b/data/software/ec/eclipse-cargo-tracker.json new file mode 100644 index 000000000000..47d93de4dd9e --- /dev/null +++ b/data/software/ec/eclipse-cargo-tracker.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-cargo-tracker", + "name": "Eclipse Cargo Tracker", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76168831" + ] +} diff --git a/data/software/ec/eclipse-cdo-model-repository.json b/data/software/ec/eclipse-cdo-model-repository.json new file mode 100644 index 000000000000..4859fc2542c9 --- /dev/null +++ b/data/software/ec/eclipse-cdo-model-repository.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-cdo-model-repository", + "name": "Eclipse CDO Model Repository", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72273770" + ] +} diff --git a/data/software/ec/eclipse-che4z.json b/data/software/ec/eclipse-che4z.json new file mode 100644 index 000000000000..e01c67d68b5a --- /dev/null +++ b/data/software/ec/eclipse-che4z.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-che4z", + "name": "Eclipse Che4z", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76168702" + ] +} diff --git a/data/software/ec/eclipse-chess.json b/data/software/ec/eclipse-chess.json new file mode 100644 index 000000000000..61e39d605076 --- /dev/null +++ b/data/software/ec/eclipse-chess.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-chess", + "name": "Eclipse CHESS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76174991" + ] +} diff --git a/data/software/ec/eclipse-cloe.json b/data/software/ec/eclipse-cloe.json new file mode 100644 index 000000000000..bb8ddc4e7249 --- /dev/null +++ b/data/software/ec/eclipse-cloe.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-cloe", + "name": "Eclipse Cloe", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q96652464" + ] +} diff --git a/data/software/ec/eclipse-cloud-development.json b/data/software/ec/eclipse-cloud-development.json new file mode 100644 index 000000000000..3c20cd859d3b --- /dev/null +++ b/data/software/ec/eclipse-cloud-development.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-cloud-development", + "name": "Eclipse Cloud Development", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76178711" + ] +} diff --git a/data/software/ec/eclipse-code-recommenders.json b/data/software/ec/eclipse-code-recommenders.json new file mode 100644 index 000000000000..fea7fd2c8baa --- /dev/null +++ b/data/software/ec/eclipse-code-recommenders.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-code-recommenders", + "name": "Eclipse Code Recommenders", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72273667" + ] +} diff --git a/data/software/ec/eclipse-codewind.json b/data/software/ec/eclipse-codewind.json new file mode 100644 index 000000000000..3e8664a961ca --- /dev/null +++ b/data/software/ec/eclipse-codewind.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-codewind", + "name": "Eclipse Codewind", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76174501" + ] +} diff --git a/data/software/ec/eclipse-cognicrypt.json b/data/software/ec/eclipse-cognicrypt.json new file mode 100644 index 000000000000..d856778baaa4 --- /dev/null +++ b/data/software/ec/eclipse-cognicrypt.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-cognicrypt", + "name": "Eclipse CogniCrypt", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76176751" + ] +} diff --git a/data/software/ec/eclipse-collections.json b/data/software/ec/eclipse-collections.json new file mode 100644 index 000000000000..e72697c0c16c --- /dev/null +++ b/data/software/ec/eclipse-collections.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-collections", + "name": "Eclipse Collections", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72272454" + ] +} diff --git a/data/software/ec/eclipse-common-build-infrastructure.json b/data/software/ec/eclipse-common-build-infrastructure.json new file mode 100644 index 000000000000..4da091b0f665 --- /dev/null +++ b/data/software/ec/eclipse-common-build-infrastructure.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-common-build-infrastructure", + "name": "Eclipse Common Build Infrastructure", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72273830" + ] +} diff --git a/data/software/ec/eclipse-communication-framework.json b/data/software/ec/eclipse-communication-framework.json new file mode 100644 index 000000000000..3d392b78b77b --- /dev/null +++ b/data/software/ec/eclipse-communication-framework.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-communication-framework", + "name": "Eclipse Communication Framework", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72273835" + ] +} diff --git a/data/software/ec/eclipse-concierge.json b/data/software/ec/eclipse-concierge.json new file mode 100644 index 000000000000..37a878351155 --- /dev/null +++ b/data/software/ec/eclipse-concierge.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-concierge", + "name": "Eclipse Concierge", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72272962" + ] +} diff --git a/data/software/ec/eclipse-corrosion-the-eclipse-ide-for-rust.json b/data/software/ec/eclipse-corrosion-the-eclipse-ide-for-rust.json new file mode 100644 index 000000000000..106bd277a854 --- /dev/null +++ b/data/software/ec/eclipse-corrosion-the-eclipse-ide-for-rust.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-corrosion-the-eclipse-ide-for-rust", + "name": "Eclipse Corrosion: the Eclipse IDE for Rust", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76169070" + ] +} diff --git a/data/software/ec/eclipse-crossmeter.json b/data/software/ec/eclipse-crossmeter.json new file mode 100644 index 000000000000..6810fd3f2ca9 --- /dev/null +++ b/data/software/ec/eclipse-crossmeter.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-crossmeter", + "name": "Eclipse CROSSMETER", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76176766" + ] +} diff --git a/data/software/ec/eclipse-cyclone-dds.json b/data/software/ec/eclipse-cyclone-dds.json new file mode 100644 index 000000000000..541431bf1331 --- /dev/null +++ b/data/software/ec/eclipse-cyclone-dds.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-cyclone-dds", + "name": "Eclipse Cyclone DDS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76176783" + ] +} diff --git a/data/software/ec/eclipse-dali-java-persistence-tools.json b/data/software/ec/eclipse-dali-java-persistence-tools.json new file mode 100644 index 000000000000..d0fc14e26026 --- /dev/null +++ b/data/software/ec/eclipse-dali-java-persistence-tools.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-dali-java-persistence-tools", + "name": "Eclipse Dali Java Persistence Tools", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72273917" + ] +} diff --git a/data/software/ec/eclipse-dartboard.json b/data/software/ec/eclipse-dartboard.json new file mode 100644 index 000000000000..c9ef08b89ce8 --- /dev/null +++ b/data/software/ec/eclipse-dartboard.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-dartboard", + "name": "Eclipse Dartboard", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76170097" + ] +} diff --git a/data/software/ec/eclipse-dash-commits-dashboard.json b/data/software/ec/eclipse-dash-commits-dashboard.json new file mode 100644 index 000000000000..c2a10311fdfd --- /dev/null +++ b/data/software/ec/eclipse-dash-commits-dashboard.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-dash-commits-dashboard", + "name": "Eclipse Dash Commits Dashboard", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76178685" + ] +} diff --git a/data/software/ec/eclipse-dash.json b/data/software/ec/eclipse-dash.json new file mode 100644 index 000000000000..d944bfcbc3fa --- /dev/null +++ b/data/software/ec/eclipse-dash.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-dash", + "name": "Eclipse Dash", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76178700" + ] +} diff --git a/data/software/ec/eclipse-data-tools-enablement.json b/data/software/ec/eclipse-data-tools-enablement.json new file mode 100644 index 000000000000..02e9324997dc --- /dev/null +++ b/data/software/ec/eclipse-data-tools-enablement.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-data-tools-enablement", + "name": "Eclipse Data Tools Enablement", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76178674" + ] +} diff --git a/data/software/ec/eclipse-data-tools-incubator.json b/data/software/ec/eclipse-data-tools-incubator.json new file mode 100644 index 000000000000..c39a2a50358c --- /dev/null +++ b/data/software/ec/eclipse-data-tools-incubator.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-data-tools-incubator", + "name": "Eclipse Data Tools Incubator", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72273852" + ] +} diff --git a/data/software/ec/eclipse-data-tools-model-base.json b/data/software/ec/eclipse-data-tools-model-base.json new file mode 100644 index 000000000000..e538947938c1 --- /dev/null +++ b/data/software/ec/eclipse-data-tools-model-base.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-data-tools-model-base", + "name": "Eclipse Data Tools Model Base", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76176478" + ] +} diff --git a/data/software/ec/eclipse-data-tools-platform.json b/data/software/ec/eclipse-data-tools-platform.json new file mode 100644 index 000000000000..3dc4a60e1874 --- /dev/null +++ b/data/software/ec/eclipse-data-tools-platform.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-data-tools-platform", + "name": "Eclipse Data Tools Platform", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72273861" + ] +} diff --git a/data/software/ec/eclipse-data-tools-sql-dev-tools.json b/data/software/ec/eclipse-data-tools-sql-dev-tools.json new file mode 100644 index 000000000000..ef4423141bbd --- /dev/null +++ b/data/software/ec/eclipse-data-tools-sql-dev-tools.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-data-tools-sql-dev-tools", + "name": "Eclipse Data Tools SQL Dev Tools", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76176493" + ] +} diff --git a/data/software/ec/eclipse-dawnsci.json b/data/software/ec/eclipse-dawnsci.json new file mode 100644 index 000000000000..cfeb079fc277 --- /dev/null +++ b/data/software/ec/eclipse-dawnsci.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-dawnsci", + "name": "Eclipse DAWNSci", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76179068" + ] +} diff --git a/data/software/ec/eclipse-deeplearning4j.json b/data/software/ec/eclipse-deeplearning4j.json new file mode 100644 index 000000000000..b45eda3120a6 --- /dev/null +++ b/data/software/ec/eclipse-deeplearning4j.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-deeplearning4j", + "name": "Eclipse Deeplearning4j", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76178662" + ] +} diff --git a/data/software/ec/eclipse-dirigible.json b/data/software/ec/eclipse-dirigible.json new file mode 100644 index 000000000000..f634eb5cc3de --- /dev/null +++ b/data/software/ec/eclipse-dirigible.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-dirigible", + "name": "Eclipse Dirigible", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72273869" + ] +} diff --git a/data/software/ec/eclipse-duttile.json b/data/software/ec/eclipse-duttile.json new file mode 100644 index 000000000000..1cd9d854ddd1 --- /dev/null +++ b/data/software/ec/eclipse-duttile.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-duttile", + "name": "Eclipse Duttile", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76178636" + ] +} diff --git a/data/software/ec/eclipse-dynamic-languages-toolkit.json b/data/software/ec/eclipse-dynamic-languages-toolkit.json new file mode 100644 index 000000000000..f4b475a2fed6 --- /dev/null +++ b/data/software/ec/eclipse-dynamic-languages-toolkit.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-dynamic-languages-toolkit", + "name": "Eclipse Dynamic Languages Toolkit", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72272551" + ] +} diff --git a/data/software/ec/eclipse-e-fx-clipse.json b/data/software/ec/eclipse-e-fx-clipse.json new file mode 100644 index 000000000000..4fd15f33ac06 --- /dev/null +++ b/data/software/ec/eclipse-e-fx-clipse.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-e-fx-clipse", + "name": "Eclipse e(fx)clipse", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76165392" + ] +} diff --git a/data/software/ec/eclipse-e4-project.json b/data/software/ec/eclipse-e4-project.json new file mode 100644 index 000000000000..f8881dc4ff17 --- /dev/null +++ b/data/software/ec/eclipse-e4-project.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-e4-project", + "name": "Eclipse e4 Project", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72273891" + ] +} diff --git a/data/software/ec/eclipse-eatop.json b/data/software/ec/eclipse-eatop.json new file mode 100644 index 000000000000..9a1eaa545f13 --- /dev/null +++ b/data/software/ec/eclipse-eatop.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-eatop", + "name": "Eclipse EATOP", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72273920" + ] +} diff --git a/data/software/ec/eclipse-ebpm.json b/data/software/ec/eclipse-ebpm.json new file mode 100644 index 000000000000..a5ef8f7c601e --- /dev/null +++ b/data/software/ec/eclipse-ebpm.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-ebpm", + "name": "Eclipse eBPM", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72273921" + ] +} diff --git a/data/software/ec/eclipse-eclemma.json b/data/software/ec/eclipse-eclemma.json new file mode 100644 index 000000000000..4444f3c55804 --- /dev/null +++ b/data/software/ec/eclipse-eclemma.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-eclemma", + "name": "Eclipse EclEmma", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76165292" + ] +} diff --git a/data/software/ec/eclipse-ecore-tools.json b/data/software/ec/eclipse-ecore-tools.json new file mode 100644 index 000000000000..1cfa456a9e48 --- /dev/null +++ b/data/software/ec/eclipse-ecore-tools.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-ecore-tools", + "name": "Eclipse Ecore Tools", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76165843" + ] +} diff --git a/data/software/ec/eclipse-edapt.json b/data/software/ec/eclipse-edapt.json new file mode 100644 index 000000000000..7a5f45d0a7bd --- /dev/null +++ b/data/software/ec/eclipse-edapt.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-edapt", + "name": "Eclipse Edapt", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76164705" + ] +} diff --git a/data/software/ec/eclipse-editdor.json b/data/software/ec/eclipse-editdor.json new file mode 100644 index 000000000000..a780dd8f608b --- /dev/null +++ b/data/software/ec/eclipse-editdor.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-editdor", + "name": "Eclipse EdiTDor", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q99482988" + ] +} diff --git a/data/software/ec/eclipse-edje.json b/data/software/ec/eclipse-edje.json new file mode 100644 index 000000000000..d56543632644 --- /dev/null +++ b/data/software/ec/eclipse-edje.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-edje", + "name": "Eclipse Edje", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76178624" + ] +} diff --git a/data/software/ec/eclipse-egerrit.json b/data/software/ec/eclipse-egerrit.json new file mode 100644 index 000000000000..594448d783c2 --- /dev/null +++ b/data/software/ec/eclipse-egerrit.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-egerrit", + "name": "Eclipse EGerrit", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76166654" + ] +} diff --git a/data/software/ec/eclipse-egit-git-integration-for-eclipse.json b/data/software/ec/eclipse-egit-git-integration-for-eclipse.json new file mode 100644 index 000000000000..0d5df1ccc15c --- /dev/null +++ b/data/software/ec/eclipse-egit-git-integration-for-eclipse.json @@ -0,0 +1,11 @@ +{ + "slug": "eclipse-egit-git-integration-for-eclipse", + "name": "Eclipse EGit: Git Integration for Eclipse", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76163463" + ], + "licenses": [ + "Eclipse Public License 2.0" + ] +} diff --git a/data/software/ec/eclipse-elogbook-openk.json b/data/software/ec/eclipse-elogbook-openk.json new file mode 100644 index 000000000000..bc35fd23a206 --- /dev/null +++ b/data/software/ec/eclipse-elogbook-openk.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-elogbook-openk", + "name": "Eclipse eLogbook@openK", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76178611" + ] +} diff --git a/data/software/ec/eclipse-embedded-cdt-c-c-development-tools.json b/data/software/ec/eclipse-embedded-cdt-c-c-development-tools.json new file mode 100644 index 000000000000..7d5bc5c25d50 --- /dev/null +++ b/data/software/ec/eclipse-embedded-cdt-c-c-development-tools.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-embedded-cdt-c-c-development-tools", + "name": "Eclipse Embedded CDT (C/C++ Development Tools)", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q96072022" + ] +} diff --git a/data/software/ec/eclipse-emf-client-platform.json b/data/software/ec/eclipse-emf-client-platform.json new file mode 100644 index 000000000000..487529ad3359 --- /dev/null +++ b/data/software/ec/eclipse-emf-client-platform.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-emf-client-platform", + "name": "Eclipse EMF Client Platform", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72272501" + ] +} diff --git a/data/software/ec/eclipse-emf-cloud.json b/data/software/ec/eclipse-emf-cloud.json new file mode 100644 index 000000000000..206b055208b1 --- /dev/null +++ b/data/software/ec/eclipse-emf-cloud.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-emf-cloud", + "name": "Eclipse EMF.cloud", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76168847" + ] +} diff --git a/data/software/ec/eclipse-emf-compare.json b/data/software/ec/eclipse-emf-compare.json new file mode 100644 index 000000000000..f6572683982e --- /dev/null +++ b/data/software/ec/eclipse-emf-compare.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-emf-compare", + "name": "Eclipse EMF Compare", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76164707" + ] +} diff --git a/data/software/ec/eclipse-emf-diff-merge.json b/data/software/ec/eclipse-emf-diff-merge.json new file mode 100644 index 000000000000..603b730817e1 --- /dev/null +++ b/data/software/ec/eclipse-emf-diff-merge.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-emf-diff-merge", + "name": "Eclipse EMF Diff/Merge", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72272560" + ] +} diff --git a/data/software/ec/eclipse-emf-facet.json b/data/software/ec/eclipse-emf-facet.json new file mode 100644 index 000000000000..ec884c9560b3 --- /dev/null +++ b/data/software/ec/eclipse-emf-facet.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-emf-facet", + "name": "Eclipse EMF Facet", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72273922" + ] +} diff --git a/data/software/ec/eclipse-emf-parsley.json b/data/software/ec/eclipse-emf-parsley.json new file mode 100644 index 000000000000..773a89b07df2 --- /dev/null +++ b/data/software/ec/eclipse-emf-parsley.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-emf-parsley", + "name": "Eclipse EMF Parsley", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76166127" + ] +} diff --git a/data/software/ec/eclipse-emf-services.json b/data/software/ec/eclipse-emf-services.json new file mode 100644 index 000000000000..13cd7fe100fa --- /dev/null +++ b/data/software/ec/eclipse-emf-services.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-emf-services", + "name": "Eclipse EMF Services", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76178313" + ] +} diff --git a/data/software/ec/eclipse-emf.json b/data/software/ec/eclipse-emf.json new file mode 100644 index 000000000000..ecbcf18d84bd --- /dev/null +++ b/data/software/ec/eclipse-emf.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-emf", + "name": "Eclipse EMF", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76178379" + ] +} diff --git a/data/software/ec/eclipse-enterprise-tools-for-the-osgi-service-platform.json b/data/software/ec/eclipse-enterprise-tools-for-the-osgi-service-platform.json new file mode 100644 index 000000000000..900cedf6f9e0 --- /dev/null +++ b/data/software/ec/eclipse-enterprise-tools-for-the-osgi-service-platform.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-enterprise-tools-for-the-osgi-service-platform", + "name": "Eclipse Enterprise Tools for the OSGi Service Platform", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72272866" + ] +} diff --git a/data/software/ec/eclipse-erp.json b/data/software/ec/eclipse-erp.json new file mode 100644 index 000000000000..6d157f608f88 --- /dev/null +++ b/data/software/ec/eclipse-erp.json @@ -0,0 +1,17 @@ +{ + "slug": "eclipse-erp", + "name": "Eclipse ERP", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28956996" + ], + "release_date": "1990-11-26", + "developers": [ + "Activant", + "Epicor", + "Intuit" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/ec/eclipse-escet-supervisory-control-engineering-toolkit.json b/data/software/ec/eclipse-escet-supervisory-control-engineering-toolkit.json new file mode 100644 index 000000000000..819a311382db --- /dev/null +++ b/data/software/ec/eclipse-escet-supervisory-control-engineering-toolkit.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-escet-supervisory-control-engineering-toolkit", + "name": "Eclipse ESCET (Supervisory Control Engineering Toolkit)", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q96072023" + ] +} diff --git a/data/software/ec/eclipse-etrice.json b/data/software/ec/eclipse-etrice.json new file mode 100644 index 000000000000..6ac43fcb85de --- /dev/null +++ b/data/software/ec/eclipse-etrice.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-etrice", + "name": "Eclipse eTrice", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76166641" + ] +} diff --git a/data/software/ec/eclipse-extended-editing-framework-eef.json b/data/software/ec/eclipse-extended-editing-framework-eef.json new file mode 100644 index 000000000000..c4fa5b9f2266 --- /dev/null +++ b/data/software/ec/eclipse-extended-editing-framework-eef.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-extended-editing-framework-eef", + "name": "Eclipse Extended Editing Framework (EEF)", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76166395" + ] +} diff --git a/data/software/ec/eclipse-flux.json b/data/software/ec/eclipse-flux.json new file mode 100644 index 000000000000..61f340af9dbd --- /dev/null +++ b/data/software/ec/eclipse-flux.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-flux", + "name": "Eclipse Flux", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76178289" + ] +} diff --git a/data/software/ec/eclipse-fog05.json b/data/software/ec/eclipse-fog05.json new file mode 100644 index 000000000000..a4321757df25 --- /dev/null +++ b/data/software/ec/eclipse-fog05.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-fog05", + "name": "Eclipse fog05", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76169403" + ] +} diff --git a/data/software/ec/eclipse-formal-modeling-project.json b/data/software/ec/eclipse-formal-modeling-project.json new file mode 100644 index 000000000000..f9b36f2760c5 --- /dev/null +++ b/data/software/ec/eclipse-formal-modeling-project.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-formal-modeling-project", + "name": "Eclipse Formal Modeling Project", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72273000" + ] +} diff --git a/data/software/ec/eclipse-franca.json b/data/software/ec/eclipse-franca.json new file mode 100644 index 000000000000..b20d22a39144 --- /dev/null +++ b/data/software/ec/eclipse-franca.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-franca", + "name": "Eclipse Franca", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76178268" + ] +} diff --git a/data/software/ec/eclipse-free-bird-tools.json b/data/software/ec/eclipse-free-bird-tools.json new file mode 100644 index 000000000000..9cbe474ee618 --- /dev/null +++ b/data/software/ec/eclipse-free-bird-tools.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-free-bird-tools", + "name": "Eclipse Free BIRD Tools", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q96072024" + ] +} diff --git a/data/software/ec/eclipse-fundamental-modeling-concepts.json b/data/software/ec/eclipse-fundamental-modeling-concepts.json new file mode 100644 index 000000000000..b6c8cdda9b0a --- /dev/null +++ b/data/software/ec/eclipse-fundamental-modeling-concepts.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-fundamental-modeling-concepts", + "name": "Eclipse Fundamental Modeling Concepts", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72273130" + ] +} diff --git a/data/software/ec/eclipse-gemoc-studio.json b/data/software/ec/eclipse-gemoc-studio.json new file mode 100644 index 000000000000..26e7a3cbaced --- /dev/null +++ b/data/software/ec/eclipse-gemoc-studio.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-gemoc-studio", + "name": "Eclipse GEMOC Studio", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72272760" + ] +} diff --git a/data/software/ec/eclipse-gendoc.json b/data/software/ec/eclipse-gendoc.json new file mode 100644 index 000000000000..bc2c0406fde8 --- /dev/null +++ b/data/software/ec/eclipse-gendoc.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-gendoc", + "name": "Eclipse Gendoc", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76179083" + ] +} diff --git a/data/software/ec/eclipse-generation-factories-egf.json b/data/software/ec/eclipse-generation-factories-egf.json new file mode 100644 index 000000000000..b9ff7ffaa3a5 --- /dev/null +++ b/data/software/ec/eclipse-generation-factories-egf.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-generation-factories-egf", + "name": "Eclipse Generation Factories (EGF)", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72272939" + ] +} diff --git a/data/software/ec/eclipse-glassfish-tools.json b/data/software/ec/eclipse-glassfish-tools.json new file mode 100644 index 000000000000..065d1972cfbf --- /dev/null +++ b/data/software/ec/eclipse-glassfish-tools.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-glassfish-tools", + "name": "Eclipse GlassFish Tools", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76176509" + ] +} diff --git a/data/software/ec/eclipse-glsp.json b/data/software/ec/eclipse-glsp.json new file mode 100644 index 000000000000..add4981b36ea --- /dev/null +++ b/data/software/ec/eclipse-glsp.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-glsp", + "name": "Eclipse GLSP", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76168867" + ] +} diff --git a/data/software/ec/eclipse-gmf-notation.json b/data/software/ec/eclipse-gmf-notation.json new file mode 100644 index 000000000000..de4a809f4f87 --- /dev/null +++ b/data/software/ec/eclipse-gmf-notation.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-gmf-notation", + "name": "Eclipse GMF Notation", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72273924" + ] +} diff --git a/data/software/ec/eclipse-gmf-runtime.json b/data/software/ec/eclipse-gmf-runtime.json new file mode 100644 index 000000000000..6746077492b4 --- /dev/null +++ b/data/software/ec/eclipse-gmf-runtime.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-gmf-runtime", + "name": "Eclipse GMF Runtime", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72273956" + ] +} diff --git a/data/software/ec/eclipse-gmf-tooling.json b/data/software/ec/eclipse-gmf-tooling.json new file mode 100644 index 000000000000..88b815931c7d --- /dev/null +++ b/data/software/ec/eclipse-gmf-tooling.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-gmf-tooling", + "name": "Eclipse GMF Tooling", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72274060" + ] +} diff --git a/data/software/ec/eclipse-golo.json b/data/software/ec/eclipse-golo.json new file mode 100644 index 000000000000..9a893906d208 --- /dev/null +++ b/data/software/ec/eclipse-golo.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-golo", + "name": "Eclipse Golo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72274065" + ] +} diff --git a/data/software/ec/eclipse-graphiti.json b/data/software/ec/eclipse-graphiti.json new file mode 100644 index 000000000000..be1ca268d8b6 --- /dev/null +++ b/data/software/ec/eclipse-graphiti.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-graphiti", + "name": "Eclipse Graphiti", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72274072" + ] +} diff --git a/data/software/ec/eclipse-grizzly.json b/data/software/ec/eclipse-grizzly.json new file mode 100644 index 000000000000..625f278a6d9e --- /dev/null +++ b/data/software/ec/eclipse-grizzly.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-grizzly", + "name": "Eclipse Grizzly", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76176253" + ] +} diff --git a/data/software/ec/eclipse-gyrex-project.json b/data/software/ec/eclipse-gyrex-project.json new file mode 100644 index 000000000000..5ff9082ccf02 --- /dev/null +++ b/data/software/ec/eclipse-gyrex-project.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-gyrex-project", + "name": "Eclipse Gyrex Project", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72274075" + ] +} diff --git a/data/software/ec/eclipse-handly.json b/data/software/ec/eclipse-handly.json new file mode 100644 index 000000000000..ab6d29cee1cf --- /dev/null +++ b/data/software/ec/eclipse-handly.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-handly", + "name": "Eclipse Handly", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72272876" + ] +} diff --git a/data/software/ec/eclipse-hara.json b/data/software/ec/eclipse-hara.json new file mode 100644 index 000000000000..fba2e4a549f4 --- /dev/null +++ b/data/software/ec/eclipse-hara.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-hara", + "name": "Eclipse Hara", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q96072025" + ] +} diff --git a/data/software/ec/eclipse-hawk.json b/data/software/ec/eclipse-hawk.json new file mode 100644 index 000000000000..a58aaa4ca122 --- /dev/null +++ b/data/software/ec/eclipse-hawk.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-hawk", + "name": "Eclipse Hawk", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76169551" + ] +} diff --git a/data/software/ec/eclipse-hawkbit.json b/data/software/ec/eclipse-hawkbit.json new file mode 100644 index 000000000000..cadf9919c2d0 --- /dev/null +++ b/data/software/ec/eclipse-hawkbit.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-hawkbit", + "name": "Eclipse hawkBit", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76178253" + ] +} diff --git a/data/software/ec/eclipse-hip.json b/data/software/ec/eclipse-hip.json new file mode 100644 index 000000000000..2316b655fc98 --- /dev/null +++ b/data/software/ec/eclipse-hip.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-hip", + "name": "Eclipse HIP", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76169334" + ] +} diff --git a/data/software/ec/eclipse-hono.json b/data/software/ec/eclipse-hono.json new file mode 100644 index 000000000000..8ee21d7d3beb --- /dev/null +++ b/data/software/ec/eclipse-hono.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-hono", + "name": "Eclipse Hono", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72274082" + ] +} diff --git a/data/software/ec/eclipse-hudson.json b/data/software/ec/eclipse-hudson.json new file mode 100644 index 000000000000..4c374940a878 --- /dev/null +++ b/data/software/ec/eclipse-hudson.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-hudson", + "name": "Eclipse Hudson", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72274092" + ] +} diff --git a/data/software/ec/eclipse-iceoryx.json b/data/software/ec/eclipse-iceoryx.json new file mode 100644 index 000000000000..2f5bf91acccb --- /dev/null +++ b/data/software/ec/eclipse-iceoryx.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-iceoryx", + "name": "Eclipse iceoryx", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76168887" + ] +} diff --git a/data/software/ec/eclipse-ignite-iot.json b/data/software/ec/eclipse-ignite-iot.json new file mode 100644 index 000000000000..cdeb4d7ad2d3 --- /dev/null +++ b/data/software/ec/eclipse-ignite-iot.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-ignite-iot", + "name": "Eclipse Ignite|IoT", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76178242" + ] +} diff --git a/data/software/ec/eclipse-imagen.json b/data/software/ec/eclipse-imagen.json new file mode 100644 index 000000000000..5de1a8c77606 --- /dev/null +++ b/data/software/ec/eclipse-imagen.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-imagen", + "name": "Eclipse ImageN", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76170116" + ] +} diff --git a/data/software/ec/eclipse-implementation-of-jaxb.json b/data/software/ec/eclipse-implementation-of-jaxb.json new file mode 100644 index 000000000000..28a48d48c4f7 --- /dev/null +++ b/data/software/ec/eclipse-implementation-of-jaxb.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-implementation-of-jaxb", + "name": "Eclipse Implementation of JAXB", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76169440" + ] +} diff --git a/data/software/ec/eclipse-iofog.json b/data/software/ec/eclipse-iofog.json new file mode 100644 index 000000000000..56d6fff8d7d8 --- /dev/null +++ b/data/software/ec/eclipse-iofog.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-iofog", + "name": "Eclipse ioFog", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76178229" + ] +} diff --git a/data/software/ec/eclipse-iot-packages.json b/data/software/ec/eclipse-iot-packages.json new file mode 100644 index 000000000000..7638d8027348 --- /dev/null +++ b/data/software/ec/eclipse-iot-packages.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-iot-packages", + "name": "Eclipse IoT Packages", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76168907" + ] +} diff --git a/data/software/ec/eclipse-iot-testware.json b/data/software/ec/eclipse-iot-testware.json new file mode 100644 index 000000000000..b1e471ec4e00 --- /dev/null +++ b/data/software/ec/eclipse-iot-testware.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-iot-testware", + "name": "Eclipse IoT-Testware", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76178825" + ] +} diff --git a/data/software/ec/eclipse-iot.json b/data/software/ec/eclipse-iot.json new file mode 100644 index 000000000000..f3035dcae2eb --- /dev/null +++ b/data/software/ec/eclipse-iot.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-iot", + "name": "Eclipse IoT", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76166414" + ] +} diff --git a/data/software/ec/eclipse-iota-trinity.json b/data/software/ec/eclipse-iota-trinity.json new file mode 100644 index 000000000000..0a7122b7d1f8 --- /dev/null +++ b/data/software/ec/eclipse-iota-trinity.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-iota-trinity", + "name": "Eclipse IOTA Trinity", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76169825" + ] +} diff --git a/data/software/ec/eclipse-jakarta-ee-platform.json b/data/software/ec/eclipse-jakarta-ee-platform.json new file mode 100644 index 000000000000..486af6857042 --- /dev/null +++ b/data/software/ec/eclipse-jakarta-ee-platform.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-jakarta-ee-platform", + "name": "Eclipse Jakarta EE Platform", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76169455" + ] +} diff --git a/data/software/ec/eclipse-jakarta-ee-tck.json b/data/software/ec/eclipse-jakarta-ee-tck.json new file mode 100644 index 000000000000..a1bc9789c416 --- /dev/null +++ b/data/software/ec/eclipse-jakarta-ee-tck.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-jakarta-ee-tck", + "name": "Eclipse Jakarta EE TCK", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76169484" + ] +} diff --git a/data/software/ec/eclipse-january.json b/data/software/ec/eclipse-january.json new file mode 100644 index 000000000000..38b13305d977 --- /dev/null +++ b/data/software/ec/eclipse-january.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-january", + "name": "Eclipse January", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76164751" + ] +} diff --git a/data/software/ec/eclipse-javascript-development-tools.json b/data/software/ec/eclipse-javascript-development-tools.json new file mode 100644 index 000000000000..52a2d9e0f311 --- /dev/null +++ b/data/software/ec/eclipse-javascript-development-tools.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-javascript-development-tools", + "name": "Eclipse JavaScript Development Tools", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72274541" + ] +} diff --git a/data/software/ec/eclipse-jdt-language-server.json b/data/software/ec/eclipse-jdt-language-server.json new file mode 100644 index 000000000000..077eb49e2614 --- /dev/null +++ b/data/software/ec/eclipse-jdt-language-server.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-jdt-language-server", + "name": "Eclipse JDT Language Server", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76178216" + ] +} diff --git a/data/software/ec/eclipse-jemo-cloud-application-runtime.json b/data/software/ec/eclipse-jemo-cloud-application-runtime.json new file mode 100644 index 000000000000..a1e45d457a00 --- /dev/null +++ b/data/software/ec/eclipse-jemo-cloud-application-runtime.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-jemo-cloud-application-runtime", + "name": "Eclipse Jemo - Cloud Application Runtime", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76169873" + ] +} diff --git a/data/software/ec/eclipse-jersey.json b/data/software/ec/eclipse-jersey.json new file mode 100644 index 000000000000..5b85b761cc24 --- /dev/null +++ b/data/software/ec/eclipse-jersey.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-jersey", + "name": "Eclipse Jersey", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76176267" + ] +} diff --git a/data/software/ec/eclipse-jifa.json b/data/software/ec/eclipse-jifa.json new file mode 100644 index 000000000000..db4f1ee53b71 --- /dev/null +++ b/data/software/ec/eclipse-jifa.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-jifa", + "name": "Eclipse Jifa", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q99482985" + ] +} diff --git a/data/software/ec/eclipse-jkube.json b/data/software/ec/eclipse-jkube.json new file mode 100644 index 000000000000..06434baf9f03 --- /dev/null +++ b/data/software/ec/eclipse-jkube.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-jkube", + "name": "Eclipse JKube", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q96072019" + ] +} diff --git a/data/software/ec/eclipse-jnosql.json b/data/software/ec/eclipse-jnosql.json new file mode 100644 index 000000000000..e2212d50c126 --- /dev/null +++ b/data/software/ec/eclipse-jnosql.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-jnosql", + "name": "Eclipse JNoSQL", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72274164" + ] +} diff --git a/data/software/ec/eclipse-justj.json b/data/software/ec/eclipse-justj.json new file mode 100644 index 000000000000..feb89d668248 --- /dev/null +++ b/data/software/ec/eclipse-justj.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-justj", + "name": "Eclipse JustJ", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q96652468" + ] +} diff --git a/data/software/ec/eclipse-jwt.json b/data/software/ec/eclipse-jwt.json new file mode 100644 index 000000000000..be3b63727edb --- /dev/null +++ b/data/software/ec/eclipse-jwt.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-jwt", + "name": "Eclipse JWT", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72274166" + ] +} diff --git a/data/software/ec/eclipse-kapua.json b/data/software/ec/eclipse-kapua.json new file mode 100644 index 000000000000..2e3fd53b7e64 --- /dev/null +++ b/data/software/ec/eclipse-kapua.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-kapua", + "name": "Eclipse Kapua", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76178204" + ] +} diff --git a/data/software/ec/eclipse-keti.json b/data/software/ec/eclipse-keti.json new file mode 100644 index 000000000000..165611b58807 --- /dev/null +++ b/data/software/ec/eclipse-keti.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-keti", + "name": "Eclipse Keti", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76178187" + ] +} diff --git a/data/software/ec/eclipse-keyple.json b/data/software/ec/eclipse-keyple.json new file mode 100644 index 000000000000..72540d2cf0d5 --- /dev/null +++ b/data/software/ec/eclipse-keyple.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-keyple", + "name": "Eclipse Keyple", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76174998" + ] +} diff --git a/data/software/ec/eclipse-kitalpha.json b/data/software/ec/eclipse-kitalpha.json new file mode 100644 index 000000000000..47450463c156 --- /dev/null +++ b/data/software/ec/eclipse-kitalpha.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-kitalpha", + "name": "Eclipse Kitalpha", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76169854" + ] +} diff --git a/data/software/ec/eclipse-krazo.json b/data/software/ec/eclipse-krazo.json new file mode 100644 index 000000000000..9a22b50e8c47 --- /dev/null +++ b/data/software/ec/eclipse-krazo.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-krazo", + "name": "Eclipse Krazo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76175005" + ] +} diff --git a/data/software/ec/eclipse-kuksa.json b/data/software/ec/eclipse-kuksa.json new file mode 100644 index 000000000000..c1f113eb3112 --- /dev/null +++ b/data/software/ec/eclipse-kuksa.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-kuksa", + "name": "Eclipse Kuksa", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76176798" + ] +} diff --git a/data/software/ec/eclipse-kura.json b/data/software/ec/eclipse-kura.json new file mode 100644 index 000000000000..587b6a699881 --- /dev/null +++ b/data/software/ec/eclipse-kura.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-kura", + "name": "Eclipse Kura", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72274167" + ] +} diff --git a/data/software/ec/eclipse-layout-kernel.json b/data/software/ec/eclipse-layout-kernel.json new file mode 100644 index 000000000000..ab35bf412807 --- /dev/null +++ b/data/software/ec/eclipse-layout-kernel.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-layout-kernel", + "name": "Eclipse Layout Kernel", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72272600" + ] +} diff --git a/data/software/ec/eclipse-leshan.json b/data/software/ec/eclipse-leshan.json new file mode 100644 index 000000000000..e95232dec819 --- /dev/null +++ b/data/software/ec/eclipse-leshan.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-leshan", + "name": "Eclipse Leshan", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72274168" + ] +} diff --git a/data/software/ec/eclipse-libims.json b/data/software/ec/eclipse-libims.json new file mode 100644 index 000000000000..91d6af65485f --- /dev/null +++ b/data/software/ec/eclipse-libims.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-libims", + "name": "Eclipse LibIMS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76169910" + ] +} diff --git a/data/software/ec/eclipse-linux-tools.json b/data/software/ec/eclipse-linux-tools.json new file mode 100644 index 000000000000..85a3c9d8db24 --- /dev/null +++ b/data/software/ec/eclipse-linux-tools.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-linux-tools", + "name": "Eclipse Linux Tools", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72272610" + ] +} diff --git a/data/software/ec/eclipse-lsp4e.json b/data/software/ec/eclipse-lsp4e.json new file mode 100644 index 000000000000..b179a3f707aa --- /dev/null +++ b/data/software/ec/eclipse-lsp4e.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-lsp4e", + "name": "Eclipse LSP4E", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76164720" + ] +} diff --git a/data/software/ec/eclipse-lsp4j.json b/data/software/ec/eclipse-lsp4j.json new file mode 100644 index 000000000000..c141ea119f7a --- /dev/null +++ b/data/software/ec/eclipse-lsp4j.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-lsp4j", + "name": "Eclipse LSP4J", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72272613" + ] +} diff --git a/data/software/ec/eclipse-lsphub.json b/data/software/ec/eclipse-lsphub.json new file mode 100644 index 000000000000..d725df234fa2 --- /dev/null +++ b/data/software/ec/eclipse-lsphub.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-lsphub", + "name": "Eclipse LSPHub", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76169089" + ] +} diff --git a/data/software/ec/eclipse-lua-development-tools.json b/data/software/ec/eclipse-lua-development-tools.json new file mode 100644 index 000000000000..04b75a5ab69d --- /dev/null +++ b/data/software/ec/eclipse-lua-development-tools.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-lua-development-tools", + "name": "Eclipse Lua Development Tools", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72272592" + ] +} diff --git a/data/software/ec/eclipse-lyo.json b/data/software/ec/eclipse-lyo.json new file mode 100644 index 000000000000..3f1f07aa9c58 --- /dev/null +++ b/data/software/ec/eclipse-lyo.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-lyo", + "name": "Eclipse Lyo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72274233" + ] +} diff --git a/data/software/ec/eclipse-marketplace-client.json b/data/software/ec/eclipse-marketplace-client.json new file mode 100644 index 000000000000..f19e619b3a50 --- /dev/null +++ b/data/software/ec/eclipse-marketplace-client.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-marketplace-client", + "name": "Eclipse Marketplace Client", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72273641" + ] +} diff --git a/data/software/ec/eclipse-maven-integration-for-web-tools-platform.json b/data/software/ec/eclipse-maven-integration-for-web-tools-platform.json new file mode 100644 index 000000000000..2e57aa81654e --- /dev/null +++ b/data/software/ec/eclipse-maven-integration-for-web-tools-platform.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-maven-integration-for-web-tools-platform", + "name": "Eclipse Maven Integration for Web Tools Platform", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76163475" + ] +} diff --git a/data/software/ec/eclipse-maven-integration.json b/data/software/ec/eclipse-maven-integration.json new file mode 100644 index 000000000000..351fc733b64b --- /dev/null +++ b/data/software/ec/eclipse-maven-integration.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-maven-integration", + "name": "Eclipse Maven Integration", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76164706" + ] +} diff --git a/data/software/ec/eclipse-mbeddr.json b/data/software/ec/eclipse-mbeddr.json new file mode 100644 index 000000000000..c12d1de93d8e --- /dev/null +++ b/data/software/ec/eclipse-mbeddr.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-mbeddr", + "name": "Eclipse Mbeddr", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76178175" + ] +} diff --git a/data/software/ec/eclipse-mdm-bl.json b/data/software/ec/eclipse-mdm-bl.json new file mode 100644 index 000000000000..32fba382352f --- /dev/null +++ b/data/software/ec/eclipse-mdm-bl.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-mdm-bl", + "name": "Eclipse MDM|BL", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76178807" + ] +} diff --git a/data/software/ec/eclipse-mdt-uml2.json b/data/software/ec/eclipse-mdt-uml2.json new file mode 100644 index 000000000000..318210e3d834 --- /dev/null +++ b/data/software/ec/eclipse-mdt-uml2.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-mdt-uml2", + "name": "Eclipse MDT UML2", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72272459" + ] +} diff --git a/data/software/ec/eclipse-mdt-xsd-xml-schema-definition.json b/data/software/ec/eclipse-mdt-xsd-xml-schema-definition.json new file mode 100644 index 000000000000..df0478145836 --- /dev/null +++ b/data/software/ec/eclipse-mdt-xsd-xml-schema-definition.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-mdt-xsd-xml-schema-definition", + "name": "Eclipse MDT XSD (XML Schema Definition)", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72274238" + ] +} diff --git a/data/software/ec/eclipse-memory-analyzer.json b/data/software/ec/eclipse-memory-analyzer.json new file mode 100644 index 000000000000..b273009aa3d5 --- /dev/null +++ b/data/software/ec/eclipse-memory-analyzer.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-memory-analyzer", + "name": "Eclipse Memory Analyzer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76164750" + ] +} diff --git a/data/software/ec/eclipse-microprofile.json b/data/software/ec/eclipse-microprofile.json new file mode 100644 index 000000000000..44445820616c --- /dev/null +++ b/data/software/ec/eclipse-microprofile.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-microprofile", + "name": "Eclipse MicroProfile", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72273002" + ] +} diff --git a/data/software/ec/eclipse-milo.json b/data/software/ec/eclipse-milo.json new file mode 100644 index 000000000000..ced26da23936 --- /dev/null +++ b/data/software/ec/eclipse-milo.json @@ -0,0 +1,11 @@ +{ + "slug": "eclipse-milo", + "name": "Eclipse Milo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76178164" + ], + "licenses": [ + "Eclipse Public License 2.0" + ] +} diff --git a/data/software/ec/eclipse-mita.json b/data/software/ec/eclipse-mita.json new file mode 100644 index 000000000000..2ffa4ff36027 --- /dev/null +++ b/data/software/ec/eclipse-mita.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-mita", + "name": "Eclipse Mita", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76169272" + ] +} diff --git a/data/software/ec/eclipse-mobile-tools-for-java.json b/data/software/ec/eclipse-mobile-tools-for-java.json new file mode 100644 index 000000000000..bfee8148878c --- /dev/null +++ b/data/software/ec/eclipse-mobile-tools-for-java.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-mobile-tools-for-java", + "name": "Eclipse Mobile Tools for Java™", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72272747" + ] +} diff --git a/data/software/ec/eclipse-model-driven-health-tools.json b/data/software/ec/eclipse-model-driven-health-tools.json new file mode 100644 index 000000000000..c9b69c208946 --- /dev/null +++ b/data/software/ec/eclipse-model-driven-health-tools.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-model-driven-health-tools", + "name": "Eclipse Model Driven Health Tools", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72272802" + ] +} diff --git a/data/software/ec/eclipse-model-framework-technology-emft.json b/data/software/ec/eclipse-model-framework-technology-emft.json new file mode 100644 index 000000000000..eb99fe4b68d9 --- /dev/null +++ b/data/software/ec/eclipse-model-framework-technology-emft.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-model-framework-technology-emft", + "name": "Eclipse Model Framework Technology (EMFT)", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72274248" + ] +} diff --git a/data/software/ec/eclipse-modeling-workflow-engine.json b/data/software/ec/eclipse-modeling-workflow-engine.json new file mode 100644 index 000000000000..a7167a4cf7fd --- /dev/null +++ b/data/software/ec/eclipse-modeling-workflow-engine.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-modeling-workflow-engine", + "name": "Eclipse Modeling Workflow Engine", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72274275" + ] +} diff --git a/data/software/ec/eclipse-modisco.json b/data/software/ec/eclipse-modisco.json new file mode 100644 index 000000000000..73d2d2750873 --- /dev/null +++ b/data/software/ec/eclipse-modisco.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-modisco", + "name": "Eclipse MoDisco", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72274289" + ] +} diff --git a/data/software/ec/eclipse-mojarra.json b/data/software/ec/eclipse-mojarra.json new file mode 100644 index 000000000000..0b92fcab70bf --- /dev/null +++ b/data/software/ec/eclipse-mojarra.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-mojarra", + "name": "Eclipse Mojarra", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76176284" + ] +} diff --git a/data/software/ec/eclipse-mraa.json b/data/software/ec/eclipse-mraa.json new file mode 100644 index 000000000000..b83a1d59c2e4 --- /dev/null +++ b/data/software/ec/eclipse-mraa.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-mraa", + "name": "Eclipse MRAA", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76170079" + ] +} diff --git a/data/software/ec/eclipse-n4js.json b/data/software/ec/eclipse-n4js.json new file mode 100644 index 000000000000..d8ed1cd4c46a --- /dev/null +++ b/data/software/ec/eclipse-n4js.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-n4js", + "name": "Eclipse N4JS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76175349" + ] +} diff --git a/data/software/ec/eclipse-nebula-incubator.json b/data/software/ec/eclipse-nebula-incubator.json new file mode 100644 index 000000000000..3d6da95af811 --- /dev/null +++ b/data/software/ec/eclipse-nebula-incubator.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-nebula-incubator", + "name": "Eclipse Nebula Incubator", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76175394" + ] +} diff --git a/data/software/ec/eclipse-nebula-nattable.json b/data/software/ec/eclipse-nebula-nattable.json new file mode 100644 index 000000000000..515e809810c4 --- /dev/null +++ b/data/software/ec/eclipse-nebula-nattable.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-nebula-nattable", + "name": "Eclipse Nebula NatTable", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76164710" + ] +} diff --git a/data/software/ec/eclipse-nebula-supplemental-widgets-for-swt.json b/data/software/ec/eclipse-nebula-supplemental-widgets-for-swt.json new file mode 100644 index 000000000000..15e1cd846e18 --- /dev/null +++ b/data/software/ec/eclipse-nebula-supplemental-widgets-for-swt.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-nebula-supplemental-widgets-for-swt", + "name": "Eclipse Nebula - Supplemental Widgets for SWT", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76163480" + ] +} diff --git a/data/software/ec/eclipse-object-teams.json b/data/software/ec/eclipse-object-teams.json new file mode 100644 index 000000000000..0413e4552d6b --- /dev/null +++ b/data/software/ec/eclipse-object-teams.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-object-teams", + "name": "Eclipse Object Teams", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76163615" + ] +} diff --git a/data/software/ec/eclipse-ocl-object-constraint-language.json b/data/software/ec/eclipse-ocl-object-constraint-language.json new file mode 100644 index 000000000000..8a7a8e3fef60 --- /dev/null +++ b/data/software/ec/eclipse-ocl-object-constraint-language.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-ocl-object-constraint-language", + "name": "Eclipse OCL (Object Constraint Language)", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72272404" + ] +} diff --git a/data/software/ec/eclipse-ogee.json b/data/software/ec/eclipse-ogee.json new file mode 100644 index 000000000000..9b8688b24466 --- /dev/null +++ b/data/software/ec/eclipse-ogee.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-ogee", + "name": "Eclipse Ogee", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72272469" + ] +} diff --git a/data/software/ec/eclipse-om2m.json b/data/software/ec/eclipse-om2m.json new file mode 100644 index 000000000000..6a42b13a5b62 --- /dev/null +++ b/data/software/ec/eclipse-om2m.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-om2m", + "name": "Eclipse OM2M", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72274350" + ] +} diff --git a/data/software/ec/eclipse-oomph.json b/data/software/ec/eclipse-oomph.json new file mode 100644 index 000000000000..dae7c305d84b --- /dev/null +++ b/data/software/ec/eclipse-oomph.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-oomph", + "name": "Eclipse Oomph", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76164708" + ] +} diff --git a/data/software/ec/eclipse-open-standard-business-platform.json b/data/software/ec/eclipse-open-standard-business-platform.json new file mode 100644 index 000000000000..ab84ccedffe3 --- /dev/null +++ b/data/software/ec/eclipse-open-standard-business-platform.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-open-standard-business-platform", + "name": "Eclipse Open Standard Business Platform", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76175443" + ] +} diff --git a/data/software/ec/eclipse-openj9.json b/data/software/ec/eclipse-openj9.json new file mode 100644 index 000000000000..e35fb8f86a31 --- /dev/null +++ b/data/software/ec/eclipse-openj9.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-openj9", + "name": "Eclipse OpenJ9", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76178792" + ] +} diff --git a/data/software/ec/eclipse-openk-platform.json b/data/software/ec/eclipse-openk-platform.json new file mode 100644 index 000000000000..9b287d49881f --- /dev/null +++ b/data/software/ec/eclipse-openk-platform.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-openk-platform", + "name": "Eclipse openK platform", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76175458" + ] +} diff --git a/data/software/ec/eclipse-openk-user-modules.json b/data/software/ec/eclipse-openk-user-modules.json new file mode 100644 index 000000000000..7c4adf75107e --- /dev/null +++ b/data/software/ec/eclipse-openk-user-modules.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-openk-user-modules", + "name": "Eclipse openK User Modules", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76169517" + ] +} diff --git a/data/software/ec/eclipse-openmq.json b/data/software/ec/eclipse-openmq.json new file mode 100644 index 000000000000..4f40bb676272 --- /dev/null +++ b/data/software/ec/eclipse-openmq.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-openmq", + "name": "Eclipse OpenMQ", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76176298" + ] +} diff --git a/data/software/ec/eclipse-orb.json b/data/software/ec/eclipse-orb.json new file mode 100644 index 000000000000..5e13e0290bec --- /dev/null +++ b/data/software/ec/eclipse-orb.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-orb", + "name": "Eclipse ORB", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76169534" + ] +} diff --git a/data/software/ec/eclipse-orbit-project.json b/data/software/ec/eclipse-orbit-project.json new file mode 100644 index 000000000000..41b88238b64e --- /dev/null +++ b/data/software/ec/eclipse-orbit-project.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-orbit-project", + "name": "Eclipse Orbit Project", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72274530" + ] +} diff --git a/data/software/ec/eclipse-orion.json b/data/software/ec/eclipse-orion.json new file mode 100644 index 000000000000..b315da807c1b --- /dev/null +++ b/data/software/ec/eclipse-orion.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-orion", + "name": "Eclipse Orion", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q12063061" + ] +} diff --git a/data/software/ec/eclipse-package-drone.json b/data/software/ec/eclipse-package-drone.json new file mode 100644 index 000000000000..66da449ba83e --- /dev/null +++ b/data/software/ec/eclipse-package-drone.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-package-drone", + "name": "Eclipse Package Drone", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72272907" + ] +} diff --git a/data/software/ec/eclipse-packaging-project.json b/data/software/ec/eclipse-packaging-project.json new file mode 100644 index 000000000000..0a32fe082cd2 --- /dev/null +++ b/data/software/ec/eclipse-packaging-project.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-packaging-project", + "name": "Eclipse Packaging Project", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72274361" + ] +} diff --git a/data/software/ec/eclipse-paho-incubator.json b/data/software/ec/eclipse-paho-incubator.json new file mode 100644 index 000000000000..6b2c73b98bb9 --- /dev/null +++ b/data/software/ec/eclipse-paho-incubator.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-paho-incubator", + "name": "Eclipse Paho Incubator", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76175495" + ] +} diff --git a/data/software/ec/eclipse-paho.json b/data/software/ec/eclipse-paho.json new file mode 100644 index 000000000000..842f76abd822 --- /dev/null +++ b/data/software/ec/eclipse-paho.json @@ -0,0 +1,11 @@ +{ + "slug": "eclipse-paho", + "name": "Eclipse Paho", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q55610474" + ], + "programming_languages": [ + "Java" + ] +} diff --git a/data/software/ec/eclipse-papyrus-for-real-time-papyrus-rt.json b/data/software/ec/eclipse-papyrus-for-real-time-papyrus-rt.json new file mode 100644 index 000000000000..64ef14819517 --- /dev/null +++ b/data/software/ec/eclipse-papyrus-for-real-time-papyrus-rt.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-papyrus-for-real-time-papyrus-rt", + "name": "Eclipse Papyrus for Real Time (Papyrus-RT)", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76164714" + ] +} diff --git a/data/software/ec/eclipse-papyrus-for-xtuml.json b/data/software/ec/eclipse-papyrus-for-xtuml.json new file mode 100644 index 000000000000..3c2e4298b22f --- /dev/null +++ b/data/software/ec/eclipse-papyrus-for-xtuml.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-papyrus-for-xtuml", + "name": "Eclipse Papyrus for xtUML", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76175530" + ] +} diff --git a/data/software/ec/eclipse-parallel-tools-platform-ptp.json b/data/software/ec/eclipse-parallel-tools-platform-ptp.json new file mode 100644 index 000000000000..792eaea6b96f --- /dev/null +++ b/data/software/ec/eclipse-parallel-tools-platform-ptp.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-parallel-tools-platform-ptp", + "name": "Eclipse Parallel Tools Platform (PTP)", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72274514" + ] +} diff --git a/data/software/ec/eclipse-passage.json b/data/software/ec/eclipse-passage.json new file mode 100644 index 000000000000..7f98d528347c --- /dev/null +++ b/data/software/ec/eclipse-passage.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-passage", + "name": "Eclipse Passage", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76169949" + ] +} diff --git a/data/software/ec/eclipse-picasso-a-free-open-source-visualizer-for-convolutional-neural-networks.json b/data/software/ec/eclipse-picasso-a-free-open-source-visualizer-for-convolutional-neural-networks.json new file mode 100644 index 000000000000..ffa826b43bd1 --- /dev/null +++ b/data/software/ec/eclipse-picasso-a-free-open-source-visualizer-for-convolutional-neural-networks.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-picasso-a-free-open-source-visualizer-for-convolutional-neural-networks", + "name": "Eclipse Picasso: A free open-source visualizer for Convolutional Neural Networks", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76175916" + ] +} diff --git a/data/software/ec/eclipse-pmf.json b/data/software/ec/eclipse-pmf.json new file mode 100644 index 000000000000..77412a0addae --- /dev/null +++ b/data/software/ec/eclipse-pmf.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-pmf", + "name": "Eclipse PMF", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76175862" + ] +} diff --git a/data/software/ec/eclipse-ponte.json b/data/software/ec/eclipse-ponte.json new file mode 100644 index 000000000000..8da89ef0cbe8 --- /dev/null +++ b/data/software/ec/eclipse-ponte.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-ponte", + "name": "Eclipse Ponte", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76175874" + ] +} diff --git a/data/software/ec/eclipse-project-for-common-annotations.json b/data/software/ec/eclipse-project-for-common-annotations.json new file mode 100644 index 000000000000..d2f2f9172973 --- /dev/null +++ b/data/software/ec/eclipse-project-for-common-annotations.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-project-for-common-annotations", + "name": "Eclipse Project for Common Annotations", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76169289" + ] +} diff --git a/data/software/ec/eclipse-project-for-jax-rs.json b/data/software/ec/eclipse-project-for-jax-rs.json new file mode 100644 index 000000000000..10f40d693fa8 --- /dev/null +++ b/data/software/ec/eclipse-project-for-jax-rs.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-project-for-jax-rs", + "name": "Eclipse Project for JAX-RS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76176309" + ] +} diff --git a/data/software/ec/eclipse-project-for-jms.json b/data/software/ec/eclipse-project-for-jms.json new file mode 100644 index 000000000000..3d6286506be0 --- /dev/null +++ b/data/software/ec/eclipse-project-for-jms.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-project-for-jms", + "name": "Eclipse Project for JMS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76176328" + ] +} diff --git a/data/software/ec/eclipse-project-for-json-processing.json b/data/software/ec/eclipse-project-for-json-processing.json new file mode 100644 index 000000000000..04968c3c8109 --- /dev/null +++ b/data/software/ec/eclipse-project-for-json-processing.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-project-for-json-processing", + "name": "Eclipse Project for JSON Processing", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76176344" + ] +} diff --git a/data/software/ec/eclipse-project-for-websocket.json b/data/software/ec/eclipse-project-for-websocket.json new file mode 100644 index 000000000000..968d7e15bbac --- /dev/null +++ b/data/software/ec/eclipse-project-for-websocket.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-project-for-websocket", + "name": "Eclipse Project for WebSocket", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76176361" + ] +} diff --git a/data/software/ec/eclipse-qvt-operational.json b/data/software/ec/eclipse-qvt-operational.json new file mode 100644 index 000000000000..1a8e4998dc98 --- /dev/null +++ b/data/software/ec/eclipse-qvt-operational.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-qvt-operational", + "name": "Eclipse QVT Operational", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72272373" + ] +} diff --git a/data/software/ec/eclipse-qvtd-qvt-declarative.json b/data/software/ec/eclipse-qvtd-qvt-declarative.json new file mode 100644 index 000000000000..49424380dc76 --- /dev/null +++ b/data/software/ec/eclipse-qvtd-qvt-declarative.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-qvtd-qvt-declarative", + "name": "Eclipse QVTd (QVT Declarative)", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72272701" + ] +} diff --git a/data/software/ec/eclipse-rcp-testing-tool.json b/data/software/ec/eclipse-rcp-testing-tool.json new file mode 100644 index 000000000000..f452a4661f58 --- /dev/null +++ b/data/software/ec/eclipse-rcp-testing-tool.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-rcp-testing-tool", + "name": "Eclipse RCP Testing Tool", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76164190" + ] +} diff --git a/data/software/ec/eclipse-reddeer.json b/data/software/ec/eclipse-reddeer.json new file mode 100644 index 000000000000..4bb99a1e2c20 --- /dev/null +++ b/data/software/ec/eclipse-reddeer.json @@ -0,0 +1,11 @@ +{ + "slug": "eclipse-reddeer", + "name": "Eclipse RedDeer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76166033" + ], + "licenses": [ + "Eclipse Public License 2.0" + ] +} diff --git a/data/software/ec/eclipse-remus.json b/data/software/ec/eclipse-remus.json new file mode 100644 index 000000000000..b8793575b16f --- /dev/null +++ b/data/software/ec/eclipse-remus.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-remus", + "name": "Eclipse Remus", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76175587" + ] +} diff --git a/data/software/ec/eclipse-rich-beans.json b/data/software/ec/eclipse-rich-beans.json new file mode 100644 index 000000000000..7ebda8e5bf86 --- /dev/null +++ b/data/software/ec/eclipse-rich-beans.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-rich-beans", + "name": "Eclipse Rich Beans", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76175600" + ] +} diff --git a/data/software/ec/eclipse-rise-v2g.json b/data/software/ec/eclipse-rise-v2g.json new file mode 100644 index 000000000000..6b8c0cd582e3 --- /dev/null +++ b/data/software/ec/eclipse-rise-v2g.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-rise-v2g", + "name": "Eclipse RISE V2G", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76165882" + ] +} diff --git a/data/software/ec/eclipse-runtime-packaging-project.json b/data/software/ec/eclipse-runtime-packaging-project.json new file mode 100644 index 000000000000..6c94465b0ef8 --- /dev/null +++ b/data/software/ec/eclipse-runtime-packaging-project.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-runtime-packaging-project", + "name": "Eclipse Runtime Packaging Project", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72274502" + ] +} diff --git a/data/software/ec/eclipse-sapphire.json b/data/software/ec/eclipse-sapphire.json new file mode 100644 index 000000000000..432991f625cc --- /dev/null +++ b/data/software/ec/eclipse-sapphire.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-sapphire", + "name": "Eclipse Sapphire", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72274435" + ] +} diff --git a/data/software/ec/eclipse-scanning.json b/data/software/ec/eclipse-scanning.json new file mode 100644 index 000000000000..44912c698ce9 --- /dev/null +++ b/data/software/ec/eclipse-scanning.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-scanning", + "name": "Eclipse Scanning", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76175683" + ] +} diff --git a/data/software/ec/eclipse-science.json b/data/software/ec/eclipse-science.json new file mode 100644 index 000000000000..d2de9ec4ed84 --- /dev/null +++ b/data/software/ec/eclipse-science.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-science", + "name": "Eclipse Science", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76175848" + ] +} diff --git a/data/software/ec/eclipse-scout.json b/data/software/ec/eclipse-scout.json new file mode 100644 index 000000000000..9ca68b6a687a --- /dev/null +++ b/data/software/ec/eclipse-scout.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-scout", + "name": "Eclipse Scout", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76166194" + ] +} diff --git a/data/software/ec/eclipse-seco-blocks.json b/data/software/ec/eclipse-seco-blocks.json new file mode 100644 index 000000000000..2d079874bdfa --- /dev/null +++ b/data/software/ec/eclipse-seco-blocks.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-seco-blocks", + "name": "Eclipse SeCo Blocks", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q96652471" + ] +} diff --git a/data/software/ec/eclipse-sensinact.json b/data/software/ec/eclipse-sensinact.json new file mode 100644 index 000000000000..23245d20abfa --- /dev/null +++ b/data/software/ec/eclipse-sensinact.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-sensinact", + "name": "Eclipse sensiNact", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72272970" + ] +} diff --git a/data/software/ec/eclipse-shellwax.json b/data/software/ec/eclipse-shellwax.json new file mode 100644 index 000000000000..7ff9e21ec553 --- /dev/null +++ b/data/software/ec/eclipse-shellwax.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-shellwax", + "name": "Eclipse ShellWax", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76174564" + ] +} diff --git a/data/software/ec/eclipse-sim-openpass.json b/data/software/ec/eclipse-sim-openpass.json new file mode 100644 index 000000000000..9988cd156d04 --- /dev/null +++ b/data/software/ec/eclipse-sim-openpass.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-sim-openpass", + "name": "Eclipse sim@openPASS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76166896" + ] +} diff --git a/data/software/ec/eclipse-smarthome.json b/data/software/ec/eclipse-smarthome.json new file mode 100644 index 000000000000..ef8600a270e7 --- /dev/null +++ b/data/software/ec/eclipse-smarthome.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-smarthome", + "name": "Eclipse SmartHome", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76164715" + ] +} diff --git a/data/software/ec/eclipse-smartmdsd.json b/data/software/ec/eclipse-smartmdsd.json new file mode 100644 index 000000000000..bd5598884b8e --- /dev/null +++ b/data/software/ec/eclipse-smartmdsd.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-smartmdsd", + "name": "Eclipse SmartMDSD", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q99482942" + ] +} diff --git a/data/software/ec/eclipse-spatio-temporal-epidemiological-modeler.json b/data/software/ec/eclipse-spatio-temporal-epidemiological-modeler.json new file mode 100644 index 000000000000..e22671a6681a --- /dev/null +++ b/data/software/ec/eclipse-spatio-temporal-epidemiological-modeler.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-spatio-temporal-epidemiological-modeler", + "name": "Eclipse Spatio-Temporal Epidemiological Modeler", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72274450" + ] +} diff --git a/data/software/ec/eclipse-sphinx.json b/data/software/ec/eclipse-sphinx.json new file mode 100644 index 000000000000..e48565e0c6d7 --- /dev/null +++ b/data/software/ec/eclipse-sphinx.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-sphinx", + "name": "Eclipse Sphinx", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72272734" + ] +} diff --git a/data/software/ec/eclipse-statet-tooling-for-the-r-language.json b/data/software/ec/eclipse-statet-tooling-for-the-r-language.json new file mode 100644 index 000000000000..eae7b45b71c4 --- /dev/null +++ b/data/software/ec/eclipse-statet-tooling-for-the-r-language.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-statet-tooling-for-the-r-language", + "name": "Eclipse StatET: Tooling for the R language", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76175812" + ] +} diff --git a/data/software/ec/eclipse-steady.json b/data/software/ec/eclipse-steady.json new file mode 100644 index 000000000000..9f05aefafe66 --- /dev/null +++ b/data/software/ec/eclipse-steady.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-steady", + "name": "Eclipse Steady", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q96072018" + ] +} diff --git a/data/software/ec/eclipse-streamsheets.json b/data/software/ec/eclipse-streamsheets.json new file mode 100644 index 000000000000..41a305c9df42 --- /dev/null +++ b/data/software/ec/eclipse-streamsheets.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-streamsheets", + "name": "Eclipse Streamsheets", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q96652473" + ] +} diff --git a/data/software/ec/eclipse-subversive-svn-team-provider.json b/data/software/ec/eclipse-subversive-svn-team-provider.json new file mode 100644 index 000000000000..a72fa5f1225f --- /dev/null +++ b/data/software/ec/eclipse-subversive-svn-team-provider.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-subversive-svn-team-provider", + "name": "Eclipse Subversive SVN Team Provider", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76164241" + ] +} diff --git a/data/software/ec/eclipse-sw360.json b/data/software/ec/eclipse-sw360.json new file mode 100644 index 000000000000..5460a9c57ac8 --- /dev/null +++ b/data/software/ec/eclipse-sw360.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-sw360", + "name": "Eclipse SW360", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76176557" + ] +} diff --git a/data/software/ec/eclipse-sw360antenna.json b/data/software/ec/eclipse-sw360antenna.json new file mode 100644 index 000000000000..4dc055708b2d --- /dev/null +++ b/data/software/ec/eclipse-sw360antenna.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-sw360antenna", + "name": "Eclipse SW360antenna", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76174483" + ] +} diff --git a/data/software/ec/eclipse-swtbot.json b/data/software/ec/eclipse-swtbot.json new file mode 100644 index 000000000000..7ca91cca35d3 --- /dev/null +++ b/data/software/ec/eclipse-swtbot.json @@ -0,0 +1,11 @@ +{ + "slug": "eclipse-swtbot", + "name": "Eclipse SWTBot", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72273098" + ], + "licenses": [ + "Eclipse Public License 2.0" + ] +} diff --git a/data/software/ec/eclipse-systemfocus.json b/data/software/ec/eclipse-systemfocus.json new file mode 100644 index 000000000000..8a52733827be --- /dev/null +++ b/data/software/ec/eclipse-systemfocus.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-systemfocus", + "name": "Eclipse SystemFOCUS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76176573" + ] +} diff --git a/data/software/ec/eclipse-tahu.json b/data/software/ec/eclipse-tahu.json new file mode 100644 index 000000000000..623d302f3ac1 --- /dev/null +++ b/data/software/ec/eclipse-tahu.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-tahu", + "name": "Eclipse Tahu", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76168734" + ] +} diff --git a/data/software/ec/eclipse-target-communication-framework.json b/data/software/ec/eclipse-target-communication-framework.json new file mode 100644 index 000000000000..75f56f4a193e --- /dev/null +++ b/data/software/ec/eclipse-target-communication-framework.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-target-communication-framework", + "name": "Eclipse Target Communication Framework", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76167010" + ] +} diff --git a/data/software/ec/eclipse-target-management.json b/data/software/ec/eclipse-target-management.json new file mode 100644 index 000000000000..37110e6278e4 --- /dev/null +++ b/data/software/ec/eclipse-target-management.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-target-management", + "name": "Eclipse Target Management", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76167028" + ] +} diff --git a/data/software/ec/eclipse-tea-tasking-engine-advanced.json b/data/software/ec/eclipse-tea-tasking-engine-advanced.json new file mode 100644 index 000000000000..6e7e61ac944d --- /dev/null +++ b/data/software/ec/eclipse-tea-tasking-engine-advanced.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-tea-tasking-engine-advanced", + "name": "Eclipse TEA (Tasking Engine Advanced)", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76164722" + ] +} diff --git a/data/software/ec/eclipse-texlipse.json b/data/software/ec/eclipse-texlipse.json new file mode 100644 index 000000000000..be43a83e526a --- /dev/null +++ b/data/software/ec/eclipse-texlipse.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-texlipse", + "name": "Eclipse TeXlipse", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76164717" + ] +} diff --git a/data/software/ec/eclipse-thingweb.json b/data/software/ec/eclipse-thingweb.json new file mode 100644 index 000000000000..93ec14543c83 --- /dev/null +++ b/data/software/ec/eclipse-thingweb.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-thingweb", + "name": "Eclipse Thingweb", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76174996" + ] +} diff --git a/data/software/ec/eclipse-thym.json b/data/software/ec/eclipse-thym.json new file mode 100644 index 000000000000..56deaa334815 --- /dev/null +++ b/data/software/ec/eclipse-thym.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-thym", + "name": "Eclipse Thym", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76176234" + ] +} diff --git a/data/software/ec/eclipse-tinydtls.json b/data/software/ec/eclipse-tinydtls.json new file mode 100644 index 000000000000..4a2daf83f209 --- /dev/null +++ b/data/software/ec/eclipse-tinydtls.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-tinydtls", + "name": "Eclipse tinydtls", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76176219" + ] +} diff --git a/data/software/ec/eclipse-titan.json b/data/software/ec/eclipse-titan.json new file mode 100644 index 000000000000..af3b6fc8f4fe --- /dev/null +++ b/data/software/ec/eclipse-titan.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-titan", + "name": "Eclipse Titan", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72272987" + ] +} diff --git a/data/software/ec/eclipse-tm4e-textmate-support-in-the-eclipse-ide.json b/data/software/ec/eclipse-tm4e-textmate-support-in-the-eclipse-ide.json new file mode 100644 index 000000000000..f9d347f4102b --- /dev/null +++ b/data/software/ec/eclipse-tm4e-textmate-support-in-the-eclipse-ide.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-tm4e-textmate-support-in-the-eclipse-ide", + "name": "Eclipse TM4E - TextMate support in the Eclipse IDE", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76166058" + ] +} diff --git a/data/software/ec/eclipse-tools-for-cloud-foundry.json b/data/software/ec/eclipse-tools-for-cloud-foundry.json new file mode 100644 index 000000000000..793bb693b5aa --- /dev/null +++ b/data/software/ec/eclipse-tools-for-cloud-foundry.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-tools-for-cloud-foundry", + "name": "Eclipse Tools for Cloud Foundry", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72272752" + ] +} diff --git a/data/software/ec/eclipse-trace-compass-incubator.json b/data/software/ec/eclipse-trace-compass-incubator.json new file mode 100644 index 000000000000..b5d3d9813ff3 --- /dev/null +++ b/data/software/ec/eclipse-trace-compass-incubator.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-trace-compass-incubator", + "name": "Eclipse Trace Compass Incubator", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76176202" + ] +} diff --git a/data/software/ec/eclipse-trace-compass.json b/data/software/ec/eclipse-trace-compass.json new file mode 100644 index 000000000000..cbad3fe6325f --- /dev/null +++ b/data/software/ec/eclipse-trace-compass.json @@ -0,0 +1,11 @@ +{ + "slug": "eclipse-trace-compass", + "name": "Eclipse Trace Compass", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72272475" + ], + "licenses": [ + "Eclipse Public License 2.0" + ] +} diff --git a/data/software/ec/eclipse-transformer.json b/data/software/ec/eclipse-transformer.json new file mode 100644 index 000000000000..24c7b5aae066 --- /dev/null +++ b/data/software/ec/eclipse-transformer.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-transformer", + "name": "Eclipse Transformer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q99482938" + ] +} diff --git a/data/software/ec/eclipse-triquetrum.json b/data/software/ec/eclipse-triquetrum.json new file mode 100644 index 000000000000..d2a024048ef5 --- /dev/null +++ b/data/software/ec/eclipse-triquetrum.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-triquetrum", + "name": "Eclipse Triquetrum", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76166746" + ] +} diff --git a/data/software/ec/eclipse-tycho.json b/data/software/ec/eclipse-tycho.json new file mode 100644 index 000000000000..96def261a0c7 --- /dev/null +++ b/data/software/ec/eclipse-tycho.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-tycho", + "name": "Eclipse Tycho", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76167049" + ] +} diff --git a/data/software/ec/eclipse-uml-generators.json b/data/software/ec/eclipse-uml-generators.json new file mode 100644 index 000000000000..011d836449f8 --- /dev/null +++ b/data/software/ec/eclipse-uml-generators.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-uml-generators", + "name": "Eclipse UML Generators", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72273106" + ] +} diff --git a/data/software/ec/eclipse-uml-profiles-repository.json b/data/software/ec/eclipse-uml-profiles-repository.json new file mode 100644 index 000000000000..4529ca2efffd --- /dev/null +++ b/data/software/ec/eclipse-uml-profiles-repository.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-uml-profiles-repository", + "name": "Eclipse UML Profiles Repository", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72272806" + ] +} diff --git a/data/software/ec/eclipse-unide.json b/data/software/ec/eclipse-unide.json new file mode 100644 index 000000000000..ed2a8cea2b8f --- /dev/null +++ b/data/software/ec/eclipse-unide.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-unide", + "name": "Eclipse Unide", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76175997" + ] +} diff --git a/data/software/ec/eclipse-uomo.json b/data/software/ec/eclipse-uomo.json new file mode 100644 index 000000000000..c79721685d42 --- /dev/null +++ b/data/software/ec/eclipse-uomo.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-uomo", + "name": "Eclipse UOMo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76166920" + ] +} diff --git a/data/software/ec/eclipse-user-storage-service-sdk.json b/data/software/ec/eclipse-user-storage-service-sdk.json new file mode 100644 index 000000000000..d2e1dace70e0 --- /dev/null +++ b/data/software/ec/eclipse-user-storage-service-sdk.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-user-storage-service-sdk", + "name": "Eclipse User Storage Service SDK", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72273645" + ] +} diff --git a/data/software/ec/eclipse-vert-x.json b/data/software/ec/eclipse-vert-x.json new file mode 100644 index 000000000000..90d35ee38dbd --- /dev/null +++ b/data/software/ec/eclipse-vert-x.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-vert-x", + "name": "Eclipse Vert.x", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72273080" + ] +} diff --git a/data/software/ec/eclipse-viatra.json b/data/software/ec/eclipse-viatra.json new file mode 100644 index 000000000000..2412dda9a035 --- /dev/null +++ b/data/software/ec/eclipse-viatra.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-viatra", + "name": "Eclipse VIATRA", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72273120" + ] +} diff --git a/data/software/ec/eclipse-visual-editor-for-xml.json b/data/software/ec/eclipse-visual-editor-for-xml.json new file mode 100644 index 000000000000..249c0d3c6ffb --- /dev/null +++ b/data/software/ec/eclipse-visual-editor-for-xml.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-visual-editor-for-xml", + "name": "Eclipse Visual Editor for XML", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76165206" + ] +} diff --git a/data/software/ec/eclipse-vorto.json b/data/software/ec/eclipse-vorto.json new file mode 100644 index 000000000000..2c9171331618 --- /dev/null +++ b/data/software/ec/eclipse-vorto.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-vorto", + "name": "Eclipse Vorto", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72273654" + ] +} diff --git a/data/software/ec/eclipse-wakaama.json b/data/software/ec/eclipse-wakaama.json new file mode 100644 index 000000000000..ccab5514c626 --- /dev/null +++ b/data/software/ec/eclipse-wakaama.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-wakaama", + "name": "Eclipse Wakaama", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76168752" + ] +} diff --git a/data/software/ec/eclipse-whiskers.json b/data/software/ec/eclipse-whiskers.json new file mode 100644 index 000000000000..9798e8d37551 --- /dev/null +++ b/data/software/ec/eclipse-whiskers.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-whiskers", + "name": "Eclipse Whiskers", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76176042" + ] +} diff --git a/data/software/ec/eclipse-wild-web-developer.json b/data/software/ec/eclipse-wild-web-developer.json new file mode 100644 index 000000000000..762a2d80e3b7 --- /dev/null +++ b/data/software/ec/eclipse-wild-web-developer.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-wild-web-developer", + "name": "Eclipse Wild Web Developer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76169893" + ] +} diff --git a/data/software/ec/eclipse-winery.json b/data/software/ec/eclipse-winery.json new file mode 100644 index 000000000000..d3232270aac6 --- /dev/null +++ b/data/software/ec/eclipse-winery.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-winery", + "name": "Eclipse Winery", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76176057" + ] +} diff --git a/data/software/ec/eclipse-wtp-source-editing.json b/data/software/ec/eclipse-wtp-source-editing.json new file mode 100644 index 000000000000..7a595f4f309d --- /dev/null +++ b/data/software/ec/eclipse-wtp-source-editing.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-wtp-source-editing", + "name": "Eclipse WTP Source Editing", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76166937" + ] +} diff --git a/data/software/ec/eclipse-xacc.json b/data/software/ec/eclipse-xacc.json new file mode 100644 index 000000000000..46318d5a7a2c --- /dev/null +++ b/data/software/ec/eclipse-xacc.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-xacc", + "name": "Eclipse XACC", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76176071" + ] +} diff --git a/data/software/ec/eclipse-xpand.json b/data/software/ec/eclipse-xpand.json new file mode 100644 index 000000000000..25ca910a6645 --- /dev/null +++ b/data/software/ec/eclipse-xpand.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-xpand", + "name": "Eclipse Xpand", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76167383" + ] +} diff --git a/data/software/ec/eclipse-xpect.json b/data/software/ec/eclipse-xpect.json new file mode 100644 index 000000000000..c17331595661 --- /dev/null +++ b/data/software/ec/eclipse-xpect.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-xpect", + "name": "Eclipse Xpect", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76176083" + ] +} diff --git a/data/software/ec/eclipse-xtext.json b/data/software/ec/eclipse-xtext.json new file mode 100644 index 000000000000..21e61d56fbd2 --- /dev/null +++ b/data/software/ec/eclipse-xtext.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-xtext", + "name": "Eclipse Xtext", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76164345" + ] +} diff --git a/data/software/ec/eclipse-xwt.json b/data/software/ec/eclipse-xwt.json new file mode 100644 index 000000000000..64759921a798 --- /dev/null +++ b/data/software/ec/eclipse-xwt.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-xwt", + "name": "Eclipse XWT", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76166095" + ] +} diff --git a/data/software/ec/eclipse-yasson.json b/data/software/ec/eclipse-yasson.json new file mode 100644 index 000000000000..c8990788b1e3 --- /dev/null +++ b/data/software/ec/eclipse-yasson.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-yasson", + "name": "Eclipse Yasson", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72273067" + ] +} diff --git a/data/software/ec/eclipse-zenoh.json b/data/software/ec/eclipse-zenoh.json new file mode 100644 index 000000000000..5d357d83b1b8 --- /dev/null +++ b/data/software/ec/eclipse-zenoh.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipse-zenoh", + "name": "Eclipse zenoh", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q96072020" + ] +} diff --git a/data/software/ec/eclipse.json b/data/software/ec/eclipse.json new file mode 100644 index 000000000000..539cbc4e92ca --- /dev/null +++ b/data/software/ec/eclipse.json @@ -0,0 +1,14 @@ +{ + "slug": "eclipse", + "name": "ECLiPSe", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5322693" + ], + "developers": [ + "European Computer-Industry Research Center" + ], + "licenses": [ + "Mozilla Public License" + ] +} diff --git a/data/software/ec/eclipsecrossword.json b/data/software/ec/eclipsecrossword.json new file mode 100644 index 000000000000..ffcb847247e8 --- /dev/null +++ b/data/software/ec/eclipsecrossword.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipsecrossword", + "name": "EclipseCrossword", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q83872278" + ] +} diff --git a/data/software/ec/eclipseforumdata.json b/data/software/ec/eclipseforumdata.json new file mode 100644 index 000000000000..22b2010929f6 --- /dev/null +++ b/data/software/ec/eclipseforumdata.json @@ -0,0 +1,8 @@ +{ + "slug": "eclipseforumdata", + "name": "EclipseForumData", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127485788" + ] +} diff --git a/data/software/ec/eco-index-biodiversity-dashboards.json b/data/software/ec/eco-index-biodiversity-dashboards.json new file mode 100644 index 000000000000..fa19882e1597 --- /dev/null +++ b/data/software/ec/eco-index-biodiversity-dashboards.json @@ -0,0 +1,11 @@ +{ + "slug": "eco-index-biodiversity-dashboards", + "name": "Eco-Index Biodiversity Dashboards", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115688412" + ], + "licenses": [ + "GNU General Public License, version 3.0" + ] +} diff --git a/data/software/ec/eco.json b/data/software/ec/eco.json new file mode 100644 index 000000000000..806f47775755 --- /dev/null +++ b/data/software/ec/eco.json @@ -0,0 +1,8 @@ +{ + "slug": "eco", + "name": "ECO", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q843803" + ] +} diff --git a/data/software/ec/ecocities.json b/data/software/ec/ecocities.json new file mode 100644 index 000000000000..574fb007e00e --- /dev/null +++ b/data/software/ec/ecocities.json @@ -0,0 +1,11 @@ +{ + "slug": "ecocities", + "name": "ECOCITIES", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q23579981" + ], + "programming_languages": [ + "Java" + ] +} diff --git a/data/software/ec/ecodrive.json b/data/software/ec/ecodrive.json new file mode 100644 index 000000000000..18951ee13b96 --- /dev/null +++ b/data/software/ec/ecodrive.json @@ -0,0 +1,12 @@ +{ + "slug": "ecodrive", + "name": "Ecodrive", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1282000" + ], + "developers": [ + "Fiat", + "Microsoft" + ] +} diff --git a/data/software/ec/ecoenergy.json b/data/software/ec/ecoenergy.json new file mode 100644 index 000000000000..ff6cd4331621 --- /dev/null +++ b/data/software/ec/ecoenergy.json @@ -0,0 +1,8 @@ +{ + "slug": "ecoenergy", + "name": "Ecoenergy", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5333172" + ] +} diff --git a/data/software/ec/ecofont.json b/data/software/ec/ecofont.json new file mode 100644 index 000000000000..9d474acbf4bb --- /dev/null +++ b/data/software/ec/ecofont.json @@ -0,0 +1,8 @@ +{ + "slug": "ecofont", + "name": "Ecofont", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1983672" + ] +} diff --git a/data/software/ec/ecolego.json b/data/software/ec/ecolego.json new file mode 100644 index 000000000000..bcd761ba9ee8 --- /dev/null +++ b/data/software/ec/ecolego.json @@ -0,0 +1,13 @@ +{ + "slug": "ecolego", + "name": "Ecolego", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5333204" + ], + "release_date": "2003-12-01", + "operating_systems": [ + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/software/ec/ecommfy.json b/data/software/ec/ecommfy.json new file mode 100644 index 000000000000..e5c865a1be19 --- /dev/null +++ b/data/software/ec/ecommfy.json @@ -0,0 +1,11 @@ +{ + "slug": "ecommfy", + "name": "eCommfy", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q61087512" + ], + "programming_languages": [ + "Java" + ] +} diff --git a/data/software/ec/ecosimpro.json b/data/software/ec/ecosimpro.json new file mode 100644 index 000000000000..4dcdb2668573 --- /dev/null +++ b/data/software/ec/ecosimpro.json @@ -0,0 +1,11 @@ +{ + "slug": "ecosimpro", + "name": "EcosimPro", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5333872" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/ec/ecosystem-site-anomaly-visualization-notebook-tool.json b/data/software/ec/ecosystem-site-anomaly-visualization-notebook-tool.json new file mode 100644 index 000000000000..6f201a0766b1 --- /dev/null +++ b/data/software/ec/ecosystem-site-anomaly-visualization-notebook-tool.json @@ -0,0 +1,9 @@ +{ + "slug": "ecosystem-site-anomaly-visualization-notebook-tool", + "name": "Ecosystem Site Anomaly Visualization Notebook Tool", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124219328" + ], + "release_date": "2023-01-01" +} diff --git a/data/software/ec/ecoute.json b/data/software/ec/ecoute.json new file mode 100644 index 000000000000..7d8e22333119 --- /dev/null +++ b/data/software/ec/ecoute.json @@ -0,0 +1,8 @@ +{ + "slug": "ecoute", + "name": "Ecoute", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17042294" + ] +} diff --git a/data/software/ec/ecu-test.json b/data/software/ec/ecu-test.json new file mode 100644 index 000000000000..de708c2bf0de --- /dev/null +++ b/data/software/ec/ecu-test.json @@ -0,0 +1,11 @@ +{ + "slug": "ecu-test", + "name": "ECU-TEST", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1274225" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/ed/ed.json b/data/software/ed/ed.json new file mode 100644 index 000000000000..ce554788140b --- /dev/null +++ b/data/software/ed/ed.json @@ -0,0 +1,8 @@ +{ + "slug": "ed", + "name": "Ed", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q129262202" + ] +} diff --git a/data/software/ed/edbuild-ai.json b/data/software/ed/edbuild-ai.json new file mode 100644 index 000000000000..5a03e7291391 --- /dev/null +++ b/data/software/ed/edbuild-ai.json @@ -0,0 +1,8 @@ +{ + "slug": "edbuild-ai", + "name": "EdBuild AI", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138912364" + ] +} diff --git a/data/software/ed/edcast.json b/data/software/ed/edcast.json new file mode 100644 index 000000000000..31d5dc64f179 --- /dev/null +++ b/data/software/ed/edcast.json @@ -0,0 +1,11 @@ +{ + "slug": "edcast", + "name": "Edcast", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5335742" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/ed/eddycab.json b/data/software/ed/eddycab.json new file mode 100644 index 000000000000..bf7a6d5c8d14 --- /dev/null +++ b/data/software/ed/eddycab.json @@ -0,0 +1,8 @@ +{ + "slug": "eddycab", + "name": "eddycab", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q65282538" + ] +} diff --git a/data/software/ed/edge-q31891244.json b/data/software/ed/edge-q31891244.json new file mode 100644 index 000000000000..1a6f1bc0fb8e --- /dev/null +++ b/data/software/ed/edge-q31891244.json @@ -0,0 +1,8 @@ +{ + "slug": "edge-q31891244", + "name": "Edge", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q31891244" + ] +} diff --git a/data/software/ed/edge.json b/data/software/ed/edge.json new file mode 100644 index 000000000000..c5f2503f249a --- /dev/null +++ b/data/software/ed/edge.json @@ -0,0 +1,8 @@ +{ + "slug": "edge", + "name": "EDGE", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11197536" + ] +} diff --git a/data/software/ed/edgecam.json b/data/software/ed/edgecam.json new file mode 100644 index 000000000000..df5d49a3e21f --- /dev/null +++ b/data/software/ed/edgecam.json @@ -0,0 +1,8 @@ +{ + "slug": "edgecam", + "name": "edgeCam", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8145551" + ] +} diff --git a/data/software/ed/edger-package.json b/data/software/ed/edger-package.json new file mode 100644 index 000000000000..60e6e5abdd47 --- /dev/null +++ b/data/software/ed/edger-package.json @@ -0,0 +1,11 @@ +{ + "slug": "edger-package", + "name": "edgeR package", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112236367" + ], + "programming_languages": [ + "R" + ] +} diff --git a/data/software/ed/edicolor.json b/data/software/ed/edicolor.json new file mode 100644 index 000000000000..dc17cb1104c6 --- /dev/null +++ b/data/software/ed/edicolor.json @@ -0,0 +1,11 @@ +{ + "slug": "edicolor", + "name": "EDICOLOR", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11197543" + ], + "developers": [ + "Canon IT Solutions" + ] +} diff --git a/data/software/ed/edificius.json b/data/software/ed/edificius.json new file mode 100644 index 000000000000..645c7830ea91 --- /dev/null +++ b/data/software/ed/edificius.json @@ -0,0 +1,8 @@ +{ + "slug": "edificius", + "name": "Edificius", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117814129" + ] +} diff --git a/data/software/ed/edit-flow.json b/data/software/ed/edit-flow.json new file mode 100644 index 000000000000..91fce2fe1fcb --- /dev/null +++ b/data/software/ed/edit-flow.json @@ -0,0 +1,8 @@ +{ + "slug": "edit-flow", + "name": "Edit Flow", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084934" + ] +} diff --git a/data/software/ed/editgrid.json b/data/software/ed/editgrid.json new file mode 100644 index 000000000000..4bba56be29d4 --- /dev/null +++ b/data/software/ed/editgrid.json @@ -0,0 +1,12 @@ +{ + "slug": "editgrid", + "name": "EditGrid", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3047615" + ], + "release_date": "2006-01-01", + "developers": [ + "Team and Concepts" + ] +} diff --git a/data/software/ed/editors-notes.json b/data/software/ed/editors-notes.json new file mode 100644 index 000000000000..861927cb7aa8 --- /dev/null +++ b/data/software/ed/editors-notes.json @@ -0,0 +1,8 @@ +{ + "slug": "editors-notes", + "name": "Editors' Notes", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084935" + ] +} diff --git a/data/software/ed/edlmax.json b/data/software/ed/edlmax.json new file mode 100644 index 000000000000..da32801259fd --- /dev/null +++ b/data/software/ed/edlmax.json @@ -0,0 +1,8 @@ +{ + "slug": "edlmax", + "name": "EdlMax", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28919097" + ] +} diff --git a/data/software/ed/edmax.json b/data/software/ed/edmax.json new file mode 100644 index 000000000000..a793652c4db0 --- /dev/null +++ b/data/software/ed/edmax.json @@ -0,0 +1,8 @@ +{ + "slug": "edmax", + "name": "edmax", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11198209" + ] +} diff --git a/data/software/ed/edoklady.json b/data/software/ed/edoklady.json new file mode 100644 index 000000000000..b2d7295b6bd5 --- /dev/null +++ b/data/software/ed/edoklady.json @@ -0,0 +1,11 @@ +{ + "slug": "edoklady", + "name": "eDoklady", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124042068" + ], + "developers": [ + "Digital and Information Agency" + ] +} diff --git a/data/software/ed/edraw-max.json b/data/software/ed/edraw-max.json new file mode 100644 index 000000000000..fec0b8ecf59d --- /dev/null +++ b/data/software/ed/edraw-max.json @@ -0,0 +1,8 @@ +{ + "slug": "edraw-max", + "name": "Edraw Max", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5340240" + ] +} diff --git a/data/software/ed/edraw-mind-map.json b/data/software/ed/edraw-mind-map.json new file mode 100644 index 000000000000..237a5ac320a6 --- /dev/null +++ b/data/software/ed/edraw-mind-map.json @@ -0,0 +1,8 @@ +{ + "slug": "edraw-mind-map", + "name": "Edraw Mind Map", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5340241" + ] +} diff --git a/data/software/ed/eduloo.json b/data/software/ed/eduloo.json new file mode 100644 index 000000000000..ffceba7f1442 --- /dev/null +++ b/data/software/ed/eduloo.json @@ -0,0 +1,8 @@ +{ + "slug": "eduloo", + "name": "EduLoo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140051768" + ] +} diff --git a/data/software/ed/edunext-technologies.json b/data/software/ed/edunext-technologies.json new file mode 100644 index 000000000000..7df873b0c399 --- /dev/null +++ b/data/software/ed/edunext-technologies.json @@ -0,0 +1,8 @@ +{ + "slug": "edunext-technologies", + "name": "Edunext Technologies", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q47461177" + ] +} diff --git a/data/software/ed/edusim.json b/data/software/ed/edusim.json new file mode 100644 index 000000000000..219243b30149 --- /dev/null +++ b/data/software/ed/edusim.json @@ -0,0 +1,9 @@ +{ + "slug": "edusim", + "name": "Edusim", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5341342" + ], + "release_date": "2007-01-01" +} diff --git a/data/software/ef/efax-gtk.json b/data/software/ef/efax-gtk.json new file mode 100644 index 000000000000..5cabf7d36d47 --- /dev/null +++ b/data/software/ef/efax-gtk.json @@ -0,0 +1,8 @@ +{ + "slug": "efax-gtk", + "name": "Efax-gtk", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62848506" + ] +} diff --git a/data/software/ef/efdc-explorer.json b/data/software/ef/efdc-explorer.json new file mode 100644 index 000000000000..de8ab0b53ff3 --- /dev/null +++ b/data/software/ef/efdc-explorer.json @@ -0,0 +1,8 @@ +{ + "slug": "efdc-explorer", + "name": "EFDC+ Explorer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5322966" + ] +} diff --git a/data/software/ef/efficarbone.json b/data/software/ef/efficarbone.json new file mode 100644 index 000000000000..3bf87b0d5c6a --- /dev/null +++ b/data/software/ef/efficarbone.json @@ -0,0 +1,11 @@ +{ + "slug": "efficarbone", + "name": "Efficarbone", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139554657" + ], + "developers": [ + "IRICE" + ] +} diff --git a/data/software/ef/efficient-java-matrix-library.json b/data/software/ef/efficient-java-matrix-library.json new file mode 100644 index 000000000000..831f4f987a86 --- /dev/null +++ b/data/software/ef/efficient-java-matrix-library.json @@ -0,0 +1,12 @@ +{ + "slug": "efficient-java-matrix-library", + "name": "Efficient Java Matrix Library", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17008884" + ], + "licenses": [ + "Apache Software License 2.0", + "Apache License" + ] +} diff --git a/data/software/eg/egencia-by-amex-gbt.json b/data/software/eg/egencia-by-amex-gbt.json new file mode 100644 index 000000000000..52160541929c --- /dev/null +++ b/data/software/eg/egencia-by-amex-gbt.json @@ -0,0 +1,8 @@ +{ + "slug": "egencia-by-amex-gbt", + "name": "Egencia by Amex GBT", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q12008745" + ] +} diff --git a/data/software/eg/egl-development-tools.json b/data/software/eg/egl-development-tools.json new file mode 100644 index 000000000000..ee6ddd167620 --- /dev/null +++ b/data/software/eg/egl-development-tools.json @@ -0,0 +1,8 @@ +{ + "slug": "egl-development-tools", + "name": "EGL Development Tools", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76167395" + ] +} diff --git a/data/software/eg/egoweb-2-0.json b/data/software/eg/egoweb-2-0.json new file mode 100644 index 000000000000..487545050c08 --- /dev/null +++ b/data/software/eg/egoweb-2-0.json @@ -0,0 +1,8 @@ +{ + "slug": "egoweb-2-0", + "name": "EgoWeb 2.0", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087799" + ] +} diff --git a/data/software/eg/egs.json b/data/software/eg/egs.json new file mode 100644 index 000000000000..5ddcfcd874e6 --- /dev/null +++ b/data/software/eg/egs.json @@ -0,0 +1,11 @@ +{ + "slug": "egs", + "name": "EGS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4835399" + ], + "developers": [ + "SLAC National Accelerator Laboratory" + ] +} diff --git a/data/software/eg/egword.json b/data/software/eg/egword.json new file mode 100644 index 000000000000..f9550b9ef911 --- /dev/null +++ b/data/software/eg/egword.json @@ -0,0 +1,8 @@ +{ + "slug": "egword", + "name": "EGWord", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11197582" + ] +} diff --git a/data/software/ei/eiffeldoc.json b/data/software/ei/eiffeldoc.json new file mode 100644 index 000000000000..7717657e5f4b --- /dev/null +++ b/data/software/ei/eiffeldoc.json @@ -0,0 +1,11 @@ +{ + "slug": "eiffeldoc", + "name": "Eiffeldoc", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3049348" + ], + "licenses": [ + "GNU General Public License" + ] +} diff --git a/data/software/ei/eijir.json b/data/software/ei/eijir.json new file mode 100644 index 000000000000..a52dd1f6bc4a --- /dev/null +++ b/data/software/ei/eijir.json @@ -0,0 +1,8 @@ +{ + "slug": "eijir", + "name": "Eijirō", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5349230" + ] +} diff --git a/data/software/ei/eikon.json b/data/software/ei/eikon.json new file mode 100644 index 000000000000..9f78be2b89e2 --- /dev/null +++ b/data/software/ei/eikon.json @@ -0,0 +1,8 @@ +{ + "slug": "eikon", + "name": "Eikon", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q43763745" + ] +} diff --git a/data/software/ei/einstein.json b/data/software/ei/einstein.json new file mode 100644 index 000000000000..31b5641f824f --- /dev/null +++ b/data/software/ei/einstein.json @@ -0,0 +1,12 @@ +{ + "slug": "einstein", + "name": "Einstein", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5349785" + ], + "release_date": "2004-01-01", + "developers": [ + "United States Computer Emergency Readiness Team" + ] +} diff --git a/data/software/ei/eioffice.json b/data/software/ei/eioffice.json new file mode 100644 index 000000000000..0847e766deba --- /dev/null +++ b/data/software/ei/eioffice.json @@ -0,0 +1,11 @@ +{ + "slug": "eioffice", + "name": "EIOffice", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5323211" + ], + "programming_languages": [ + "Java" + ] +} diff --git a/data/software/ei/eitaa.json b/data/software/ei/eitaa.json new file mode 100644 index 000000000000..a6cc3feeb082 --- /dev/null +++ b/data/software/ei/eitaa.json @@ -0,0 +1,13 @@ +{ + "slug": "eitaa", + "name": "Eitaa", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122780466" + ], + "operating_systems": [ + "iOS", + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/software/ek/eka1.json b/data/software/ek/eka1.json new file mode 100644 index 000000000000..77ff4191d53d --- /dev/null +++ b/data/software/ek/eka1.json @@ -0,0 +1,11 @@ +{ + "slug": "eka1", + "name": "EKA1", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5323236" + ], + "programming_languages": [ + "assembly language" + ] +} diff --git a/data/software/ek/eka2l1.json b/data/software/ek/eka2l1.json new file mode 100644 index 000000000000..17f5063efd52 --- /dev/null +++ b/data/software/ek/eka2l1.json @@ -0,0 +1,8 @@ +{ + "slug": "eka2l1", + "name": "EKA2L1", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q119982966" + ] +} diff --git a/data/software/ek/ekahau-site-survey.json b/data/software/ek/ekahau-site-survey.json new file mode 100644 index 000000000000..23f4a3f65c09 --- /dev/null +++ b/data/software/ek/ekahau-site-survey.json @@ -0,0 +1,14 @@ +{ + "slug": "ekahau-site-survey", + "name": "Ekahau Site Survey", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5350272" + ], + "operating_systems": [ + "iOS" + ], + "licenses": [ + "end-user license agreement" + ] +} diff --git a/data/software/el/elaborate.json b/data/software/el/elaborate.json new file mode 100644 index 000000000000..93947176e284 --- /dev/null +++ b/data/software/el/elaborate.json @@ -0,0 +1,8 @@ +{ + "slug": "elaborate", + "name": "eLaborate", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084936" + ] +} diff --git a/data/software/el/elan-q126084937.json b/data/software/el/elan-q126084937.json new file mode 100644 index 000000000000..0ef723861ea4 --- /dev/null +++ b/data/software/el/elan-q126084937.json @@ -0,0 +1,8 @@ +{ + "slug": "elan-q126084937", + "name": "ELAN", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084937" + ] +} diff --git a/data/software/el/elan-software.json b/data/software/el/elan-software.json new file mode 100644 index 000000000000..7c9cc1ca6c57 --- /dev/null +++ b/data/software/el/elan-software.json @@ -0,0 +1,18 @@ +{ + "slug": "elan-software", + "name": "ELAN software", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3045942" + ], + "release_date": "2015-12-21", + "developers": [ + "Max Planck Institute for Psycholinguistics" + ], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [ + "Java" + ] +} diff --git a/data/software/el/elan.json b/data/software/el/elan.json new file mode 100644 index 000000000000..0ceb80d2f09d --- /dev/null +++ b/data/software/el/elan.json @@ -0,0 +1,22 @@ +{ + "slug": "elan", + "name": "ELAN", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105076382" + ], + "developers": [ + "Max Planck Institute for Psycholinguistics" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [ + "Java" + ], + "licenses": [ + "GNU General Public License, version 3.0", + "GNU General Public License" + ] +} diff --git a/data/software/el/elastix-toolbox-for-image-registration.json b/data/software/el/elastix-toolbox-for-image-registration.json new file mode 100644 index 000000000000..a25164dba2fc --- /dev/null +++ b/data/software/el/elastix-toolbox-for-image-registration.json @@ -0,0 +1,11 @@ +{ + "slug": "elastix-toolbox-for-image-registration", + "name": "Elastix (toolbox for image registration)", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q96651279" + ], + "licenses": [ + "Apache Software License 2.0" + ] +} diff --git a/data/software/el/ele-me.json b/data/software/el/ele-me.json new file mode 100644 index 000000000000..989afc9b3c37 --- /dev/null +++ b/data/software/el/ele-me.json @@ -0,0 +1,14 @@ +{ + "slug": "ele-me", + "name": "Ele.me", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q24838019" + ], + "programming_languages": [ + "Java" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/el/electoral-studies-knowledge-graph.json b/data/software/el/electoral-studies-knowledge-graph.json new file mode 100644 index 000000000000..c1cc6a246433 --- /dev/null +++ b/data/software/el/electoral-studies-knowledge-graph.json @@ -0,0 +1,8 @@ +{ + "slug": "electoral-studies-knowledge-graph", + "name": "Electoral Studies Knowledge Graph", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084938" + ] +} diff --git a/data/software/el/electric-image-animation-system.json b/data/software/el/electric-image-animation-system.json new file mode 100644 index 000000000000..17673d36093e --- /dev/null +++ b/data/software/el/electric-image-animation-system.json @@ -0,0 +1,12 @@ +{ + "slug": "electric-image-animation-system", + "name": "Electric Image Animation System", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5357403" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/software/el/electrical-impedance-and-diffuse-optical-tomography-reconstruction-software.json b/data/software/el/electrical-impedance-and-diffuse-optical-tomography-reconstruction-software.json new file mode 100644 index 000000000000..34c5d5135a6e --- /dev/null +++ b/data/software/el/electrical-impedance-and-diffuse-optical-tomography-reconstruction-software.json @@ -0,0 +1,8 @@ +{ + "slug": "electrical-impedance-and-diffuse-optical-tomography-reconstruction-software", + "name": "Electrical Impedance and Diffuse Optical Tomography Reconstruction Software", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q20164634" + ] +} diff --git a/data/software/el/electrical-transient-and-analysis-program.json b/data/software/el/electrical-transient-and-analysis-program.json new file mode 100644 index 000000000000..eb86af7011ea --- /dev/null +++ b/data/software/el/electrical-transient-and-analysis-program.json @@ -0,0 +1,8 @@ +{ + "slug": "electrical-transient-and-analysis-program", + "name": "Electrical Transient and Analysis Program", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28803883" + ] +} diff --git a/data/software/el/electron-builder.json b/data/software/el/electron-builder.json new file mode 100644 index 000000000000..9f842e8e0160 --- /dev/null +++ b/data/software/el/electron-builder.json @@ -0,0 +1,11 @@ +{ + "slug": "electron-builder", + "name": "electron-builder", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q132832890" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/el/electron-microscopy-datasets.json b/data/software/el/electron-microscopy-datasets.json new file mode 100644 index 000000000000..a3a3bbcbd3c5 --- /dev/null +++ b/data/software/el/electron-microscopy-datasets.json @@ -0,0 +1,8 @@ +{ + "slug": "electron-microscopy-datasets", + "name": "Electron Microscopy Datasets", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121223764" + ] +} diff --git a/data/software/el/electronic-appwrapper.json b/data/software/el/electronic-appwrapper.json new file mode 100644 index 000000000000..c5d7d07bd163 --- /dev/null +++ b/data/software/el/electronic-appwrapper.json @@ -0,0 +1,12 @@ +{ + "slug": "electronic-appwrapper", + "name": "Electronic AppWrapper", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q21463026" + ], + "release_date": "1991-01-01", + "programming_languages": [ + "Objective-C" + ] +} diff --git a/data/software/el/electronic-document-management-system.json b/data/software/el/electronic-document-management-system.json new file mode 100644 index 000000000000..ed10f5c29a7b --- /dev/null +++ b/data/software/el/electronic-document-management-system.json @@ -0,0 +1,8 @@ +{ + "slug": "electronic-document-management-system", + "name": "Electronic document management system", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q249269" + ] +} diff --git a/data/software/el/elektrik-piano.json b/data/software/el/elektrik-piano.json new file mode 100644 index 000000000000..ac96725fcb4a --- /dev/null +++ b/data/software/el/elektrik-piano.json @@ -0,0 +1,11 @@ +{ + "slug": "elektrik-piano", + "name": "Elektrik Piano", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5358765" + ], + "developers": [ + "Native Instruments" + ] +} diff --git a/data/software/el/elemenope.json b/data/software/el/elemenope.json new file mode 100644 index 000000000000..72c103c775c7 --- /dev/null +++ b/data/software/el/elemenope.json @@ -0,0 +1,11 @@ +{ + "slug": "elemenope", + "name": "Elemenope", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5358812" + ], + "licenses": [ + "Apache License" + ] +} diff --git a/data/software/el/element-3d.json b/data/software/el/element-3d.json new file mode 100644 index 000000000000..91ce6b604b79 --- /dev/null +++ b/data/software/el/element-3d.json @@ -0,0 +1,8 @@ +{ + "slug": "element-3d", + "name": "Element 3D", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25000882" + ] +} diff --git a/data/software/el/elephantdrive.json b/data/software/el/elephantdrive.json new file mode 100644 index 000000000000..e5e1d883625d --- /dev/null +++ b/data/software/el/elephantdrive.json @@ -0,0 +1,12 @@ +{ + "slug": "elephantdrive", + "name": "ElephantDrive", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5359288" + ], + "release_date": "2006-04-01", + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/el/elfix.json b/data/software/el/elfix.json new file mode 100644 index 000000000000..5b7ae2872944 --- /dev/null +++ b/data/software/el/elfix.json @@ -0,0 +1,8 @@ +{ + "slug": "elfix", + "name": "elfix", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974820" + ] +} diff --git a/data/software/el/elflight-engine.json b/data/software/el/elflight-engine.json new file mode 100644 index 000000000000..b42b3f34f816 --- /dev/null +++ b/data/software/el/elflight-engine.json @@ -0,0 +1,8 @@ +{ + "slug": "elflight-engine", + "name": "Elflight Engine", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5359914" + ] +} diff --git a/data/software/el/eli-review.json b/data/software/el/eli-review.json new file mode 100644 index 000000000000..1d3a01504c40 --- /dev/null +++ b/data/software/el/eli-review.json @@ -0,0 +1,8 @@ +{ + "slug": "eli-review", + "name": "Eli Review", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25109856" + ] +} diff --git a/data/software/el/elicitus.json b/data/software/el/elicitus.json new file mode 100644 index 000000000000..e0100b2b5caa --- /dev/null +++ b/data/software/el/elicitus.json @@ -0,0 +1,11 @@ +{ + "slug": "elicitus", + "name": "Elicitus", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17105153" + ], + "developers": [ + "Harbinger Knowledge Products" + ] +} diff --git a/data/software/el/elite.json b/data/software/el/elite.json new file mode 100644 index 000000000000..42e65f27ccea --- /dev/null +++ b/data/software/el/elite.json @@ -0,0 +1,11 @@ +{ + "slug": "elite", + "name": "ELITE", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137908507" + ], + "developers": [ + "Palantir Technologies" + ] +} diff --git a/data/software/el/elium.json b/data/software/el/elium.json new file mode 100644 index 000000000000..68d3dd4f1fc5 --- /dev/null +++ b/data/software/el/elium.json @@ -0,0 +1,8 @@ +{ + "slug": "elium", + "name": "Elium", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q55387640" + ] +} diff --git a/data/software/el/elixir-code-smells.json b/data/software/el/elixir-code-smells.json new file mode 100644 index 000000000000..82892db978d9 --- /dev/null +++ b/data/software/el/elixir-code-smells.json @@ -0,0 +1,11 @@ +{ + "slug": "elixir-code-smells", + "name": "Elixir-Code-Smells", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127485796" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/el/elixirfm.json b/data/software/el/elixirfm.json new file mode 100644 index 000000000000..a1035dc612bf --- /dev/null +++ b/data/software/el/elixirfm.json @@ -0,0 +1,11 @@ +{ + "slug": "elixirfm", + "name": "ElixirFM", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134778570" + ], + "licenses": [ + "GNU General Public License, version 3.0" + ] +} diff --git a/data/software/el/eliya.json b/data/software/el/eliya.json new file mode 100644 index 000000000000..a451784a9d07 --- /dev/null +++ b/data/software/el/eliya.json @@ -0,0 +1,11 @@ +{ + "slug": "eliya", + "name": "Eliya", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140406475" + ], + "developers": [ + "Asymm Systems" + ] +} diff --git a/data/software/el/eliza.json b/data/software/el/eliza.json new file mode 100644 index 000000000000..0a21f3f20da1 --- /dev/null +++ b/data/software/el/eliza.json @@ -0,0 +1,11 @@ +{ + "slug": "eliza", + "name": "ELIZA", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q580318" + ], + "developers": [ + "Joseph Weizenbaum" + ] +} diff --git a/data/software/el/ellty.json b/data/software/el/ellty.json new file mode 100644 index 000000000000..2866692ee7c1 --- /dev/null +++ b/data/software/el/ellty.json @@ -0,0 +1,11 @@ +{ + "slug": "ellty", + "name": "Ellty", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137716180" + ], + "developers": [ + "Taskina Pty Ltd" + ] +} diff --git a/data/software/el/elmah.json b/data/software/el/elmah.json new file mode 100644 index 000000000000..815480a7c3bd --- /dev/null +++ b/data/software/el/elmah.json @@ -0,0 +1,11 @@ +{ + "slug": "elmah", + "name": "ELMAH", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5323298" + ], + "licenses": [ + "Apache License" + ] +} diff --git a/data/software/el/elml.json b/data/software/el/elml.json new file mode 100644 index 000000000000..32b88dfe409a --- /dev/null +++ b/data/software/el/elml.json @@ -0,0 +1,14 @@ +{ + "slug": "elml", + "name": "eLML", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1993217" + ], + "programming_languages": [ + "Java" + ], + "licenses": [ + "Apache License" + ] +} diff --git a/data/software/el/elmo.json b/data/software/el/elmo.json new file mode 100644 index 000000000000..fc9ad782cb0a --- /dev/null +++ b/data/software/el/elmo.json @@ -0,0 +1,8 @@ +{ + "slug": "elmo", + "name": "ELMo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q100952135" + ] +} diff --git a/data/software/el/elogind.json b/data/software/el/elogind.json new file mode 100644 index 000000000000..012d30b544e4 --- /dev/null +++ b/data/software/el/elogind.json @@ -0,0 +1,8 @@ +{ + "slug": "elogind", + "name": "elogind", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116695664" + ] +} diff --git a/data/software/el/eloquens.json b/data/software/el/eloquens.json new file mode 100644 index 000000000000..7909988996e2 --- /dev/null +++ b/data/software/el/eloquens.json @@ -0,0 +1,8 @@ +{ + "slug": "eloquens", + "name": "Eloquens", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q48771199" + ] +} diff --git a/data/software/el/else.json b/data/software/el/else.json new file mode 100644 index 000000000000..0ae8f04e9c95 --- /dev/null +++ b/data/software/el/else.json @@ -0,0 +1,8 @@ +{ + "slug": "else", + "name": "ELSE", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087800" + ] +} diff --git a/data/software/el/elymentz.json b/data/software/el/elymentz.json new file mode 100644 index 000000000000..8be301cc93e1 --- /dev/null +++ b/data/software/el/elymentz.json @@ -0,0 +1,8 @@ +{ + "slug": "elymentz", + "name": "Elymentz", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q21463036" + ] +} diff --git a/data/software/em/em-client.json b/data/software/em/em-client.json new file mode 100644 index 000000000000..c92c0621db66 --- /dev/null +++ b/data/software/em/em-client.json @@ -0,0 +1,12 @@ +{ + "slug": "em-client", + "name": "eM Client", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5323650" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/software/em/emailchemy.json b/data/software/em/emailchemy.json new file mode 100644 index 000000000000..f809f56d3f36 --- /dev/null +++ b/data/software/em/emailchemy.json @@ -0,0 +1,12 @@ +{ + "slug": "emailchemy", + "name": "Emailchemy", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q82729870" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/software/em/emailtray.json b/data/software/em/emailtray.json new file mode 100644 index 000000000000..28b6ce614a4f --- /dev/null +++ b/data/software/em/emailtray.json @@ -0,0 +1,8 @@ +{ + "slug": "emailtray", + "name": "EmailTray", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5368797" + ] +} diff --git a/data/software/em/emarox-map.json b/data/software/em/emarox-map.json new file mode 100644 index 000000000000..5dc630e2c5b4 --- /dev/null +++ b/data/software/em/emarox-map.json @@ -0,0 +1,14 @@ +{ + "slug": "emarox-map", + "name": "Emarox Map", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139997505" + ], + "developers": [ + "EMAROX" + ], + "operating_systems": [ + "website" + ] +} diff --git a/data/software/em/emarox-pallet.json b/data/software/em/emarox-pallet.json new file mode 100644 index 000000000000..bc24991db395 --- /dev/null +++ b/data/software/em/emarox-pallet.json @@ -0,0 +1,14 @@ +{ + "slug": "emarox-pallet", + "name": "Emarox Pallet", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139997495" + ], + "developers": [ + "EMAROX" + ], + "operating_systems": [ + "website" + ] +} diff --git a/data/software/em/embedded-javascript.json b/data/software/em/embedded-javascript.json new file mode 100644 index 000000000000..c5c9fcbdf101 --- /dev/null +++ b/data/software/em/embedded-javascript.json @@ -0,0 +1,11 @@ +{ + "slug": "embedded-javascript", + "name": "Embedded JavaScript", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131298877" + ], + "licenses": [ + "Apache Software License 2.0" + ] +} diff --git a/data/software/em/embedded-wizard.json b/data/software/em/embedded-wizard.json new file mode 100644 index 000000000000..df27f7a1fee7 --- /dev/null +++ b/data/software/em/embedded-wizard.json @@ -0,0 +1,9 @@ +{ + "slug": "embedded-wizard", + "name": "Embedded Wizard", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5369996" + ], + "release_date": "2003-01-01" +} diff --git a/data/software/em/embergen.json b/data/software/em/embergen.json new file mode 100644 index 000000000000..f178e674efad --- /dev/null +++ b/data/software/em/embergen.json @@ -0,0 +1,8 @@ +{ + "slug": "embergen", + "name": "EmberGen", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q114935602" + ] +} diff --git a/data/software/em/emc-atmos.json b/data/software/em/emc-atmos.json new file mode 100644 index 000000000000..688b2e20d642 --- /dev/null +++ b/data/software/em/emc-atmos.json @@ -0,0 +1,11 @@ +{ + "slug": "emc-atmos", + "name": "EMC Atmos", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5323372" + ], + "developers": [ + "Dell EMC" + ] +} diff --git a/data/software/em/emc-scaleio.json b/data/software/em/emc-scaleio.json new file mode 100644 index 000000000000..1eb4a16a2553 --- /dev/null +++ b/data/software/em/emc-scaleio.json @@ -0,0 +1,14 @@ +{ + "slug": "emc-scaleio", + "name": "EMC ScaleIO", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22073386" + ], + "developers": [ + "Dell EMC" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/em/emerging-rule.json b/data/software/em/emerging-rule.json new file mode 100644 index 000000000000..b07445c3d3c6 --- /dev/null +++ b/data/software/em/emerging-rule.json @@ -0,0 +1,8 @@ +{ + "slug": "emerging-rule", + "name": "Emerging Rule", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139494902" + ] +} diff --git a/data/software/em/emf-refactor.json b/data/software/em/emf-refactor.json new file mode 100644 index 000000000000..5ddaae4688e7 --- /dev/null +++ b/data/software/em/emf-refactor.json @@ -0,0 +1,8 @@ +{ + "slug": "emf-refactor", + "name": "EMF Refactor", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76167549" + ] +} diff --git a/data/software/em/emf-teneo-model-relational-database-integration.json b/data/software/em/emf-teneo-model-relational-database-integration.json new file mode 100644 index 000000000000..fd6cafec4170 --- /dev/null +++ b/data/software/em/emf-teneo-model-relational-database-integration.json @@ -0,0 +1,8 @@ +{ + "slug": "emf-teneo-model-relational-database-integration", + "name": "EMF Teneo Model - Relational Database Integration", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76167568" + ] +} diff --git a/data/software/em/emfatic.json b/data/software/em/emfatic.json new file mode 100644 index 000000000000..8b5537026e15 --- /dev/null +++ b/data/software/em/emfatic.json @@ -0,0 +1,8 @@ +{ + "slug": "emfatic", + "name": "emfatic", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76167579" + ] +} diff --git a/data/software/em/emft-texo.json b/data/software/em/emft-texo.json new file mode 100644 index 000000000000..2126364cb643 --- /dev/null +++ b/data/software/em/emft-texo.json @@ -0,0 +1,8 @@ +{ + "slug": "emft-texo", + "name": "EMFT Texo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76167598" + ] +} diff --git a/data/software/em/emigma.json b/data/software/em/emigma.json new file mode 100644 index 000000000000..1d1fda8e6e9a --- /dev/null +++ b/data/software/em/emigma.json @@ -0,0 +1,8 @@ +{ + "slug": "emigma", + "name": "Emigma", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28957000" + ] +} diff --git a/data/software/em/emilpro.json b/data/software/em/emilpro.json new file mode 100644 index 000000000000..141a409155e8 --- /dev/null +++ b/data/software/em/emilpro.json @@ -0,0 +1,11 @@ +{ + "slug": "emilpro", + "name": "emilpro", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974822" + ], + "licenses": [ + "GNU General Public License, version 2.0" + ] +} diff --git a/data/software/em/emissary.json b/data/software/em/emissary.json new file mode 100644 index 000000000000..6c9ec24fa8ff --- /dev/null +++ b/data/software/em/emissary.json @@ -0,0 +1,15 @@ +{ + "slug": "emissary", + "name": "Emissary", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5372623" + ], + "release_date": "1995-01-01", + "developers": [ + "Attachmate" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/em/emissions-generation-resource-integrated-database.json b/data/software/em/emissions-generation-resource-integrated-database.json new file mode 100644 index 000000000000..b1b0cf4ba8a8 --- /dev/null +++ b/data/software/em/emissions-generation-resource-integrated-database.json @@ -0,0 +1,8 @@ +{ + "slug": "emissions-generation-resource-integrated-database", + "name": "Emissions & Generation Resource Integrated Database", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5372633" + ] +} diff --git a/data/software/em/eml-to-csv.json b/data/software/em/eml-to-csv.json new file mode 100644 index 000000000000..65c5da9d3215 --- /dev/null +++ b/data/software/em/eml-to-csv.json @@ -0,0 +1,14 @@ +{ + "slug": "eml-to-csv", + "name": "EML to CSV", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138472454" + ], + "developers": [ + "C. M. Leal Ltda" + ], + "operating_systems": [ + "macOS" + ] +} diff --git a/data/software/em/eml-to-pdf.json b/data/software/em/eml-to-pdf.json new file mode 100644 index 000000000000..07705f9598f9 --- /dev/null +++ b/data/software/em/eml-to-pdf.json @@ -0,0 +1,14 @@ +{ + "slug": "eml-to-pdf", + "name": "EML to PDF", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138472374" + ], + "developers": [ + "C. M. Leal Ltda" + ], + "operating_systems": [ + "macOS" + ] +} diff --git a/data/software/em/empire.json b/data/software/em/empire.json new file mode 100644 index 000000000000..6ab6aceed984 --- /dev/null +++ b/data/software/em/empire.json @@ -0,0 +1,8 @@ +{ + "slug": "empire", + "name": "Empire", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16335178" + ] +} diff --git a/data/software/em/empirical-software-engineering.json b/data/software/em/empirical-software-engineering.json new file mode 100644 index 000000000000..dc9256507eb5 --- /dev/null +++ b/data/software/em/empirical-software-engineering.json @@ -0,0 +1,8 @@ +{ + "slug": "empirical-software-engineering", + "name": "Empirical software engineering", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109973292" + ] +} diff --git a/data/software/em/employee-coaching-software.json b/data/software/em/employee-coaching-software.json new file mode 100644 index 000000000000..9a3dcaed0f70 --- /dev/null +++ b/data/software/em/employee-coaching-software.json @@ -0,0 +1,8 @@ +{ + "slug": "employee-coaching-software", + "name": "Employee Coaching Software", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135527200" + ] +} diff --git a/data/software/em/employee-recognition-software.json b/data/software/em/employee-recognition-software.json new file mode 100644 index 000000000000..d2ba80c44826 --- /dev/null +++ b/data/software/em/employee-recognition-software.json @@ -0,0 +1,8 @@ +{ + "slug": "employee-recognition-software", + "name": "Employee Recognition Software", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135527167" + ] +} diff --git a/data/software/em/empress-embedded-database.json b/data/software/em/empress-embedded-database.json new file mode 100644 index 000000000000..689ccc903410 --- /dev/null +++ b/data/software/em/empress-embedded-database.json @@ -0,0 +1,8 @@ +{ + "slug": "empress-embedded-database", + "name": "Empress Embedded Database", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5374511" + ] +} diff --git a/data/software/em/emso-simulator.json b/data/software/em/emso-simulator.json new file mode 100644 index 000000000000..7cb11c79e50f --- /dev/null +++ b/data/software/em/emso-simulator.json @@ -0,0 +1,8 @@ +{ + "slug": "emso-simulator", + "name": "EMSO simulator", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5323630" + ] +} diff --git a/data/software/em/emulationstation.json b/data/software/em/emulationstation.json new file mode 100644 index 000000000000..7173c2efee9f --- /dev/null +++ b/data/software/em/emulationstation.json @@ -0,0 +1,8 @@ +{ + "slug": "emulationstation", + "name": "EmulationStation", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115295210" + ] +} diff --git a/data/software/em/emule-cn-mod.json b/data/software/em/emule-cn-mod.json new file mode 100644 index 000000000000..1e09ac837fa2 --- /dev/null +++ b/data/software/em/emule-cn-mod.json @@ -0,0 +1,8 @@ +{ + "slug": "emule-cn-mod", + "name": "Emule CN Mod", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10847001" + ] +} diff --git a/data/software/em/emule-eastshare-mod.json b/data/software/em/emule-eastshare-mod.json new file mode 100644 index 000000000000..ee119eff0c10 --- /dev/null +++ b/data/software/em/emule-eastshare-mod.json @@ -0,0 +1,8 @@ +{ + "slug": "emule-eastshare-mod", + "name": "Emule Eastshare Mod", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10847002" + ] +} diff --git a/data/software/em/emule-excalibur-mod.json b/data/software/em/emule-excalibur-mod.json new file mode 100644 index 000000000000..ae0aa78d95d5 --- /dev/null +++ b/data/software/em/emule-excalibur-mod.json @@ -0,0 +1,8 @@ +{ + "slug": "emule-excalibur-mod", + "name": "Emule excalibur Mod", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10847011" + ] +} diff --git a/data/software/em/emule-magicangel-mod.json b/data/software/em/emule-magicangel-mod.json new file mode 100644 index 000000000000..be920891865b --- /dev/null +++ b/data/software/em/emule-magicangel-mod.json @@ -0,0 +1,8 @@ +{ + "slug": "emule-magicangel-mod", + "name": "Emule Magicangel Mod", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10847003" + ] +} diff --git a/data/software/em/emule-mephisto-mod.json b/data/software/em/emule-mephisto-mod.json new file mode 100644 index 000000000000..d974bc2eb1ab --- /dev/null +++ b/data/software/em/emule-mephisto-mod.json @@ -0,0 +1,8 @@ +{ + "slug": "emule-mephisto-mod", + "name": "Emule Mephisto Mod", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10847004" + ] +} diff --git a/data/software/em/emule-neomule-mod.json b/data/software/em/emule-neomule-mod.json new file mode 100644 index 000000000000..8396c5c8abd7 --- /dev/null +++ b/data/software/em/emule-neomule-mod.json @@ -0,0 +1,8 @@ +{ + "slug": "emule-neomule-mod", + "name": "Emule Neomule Mod", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10847005" + ] +} diff --git a/data/software/em/emule-plus-koizo.json b/data/software/em/emule-plus-koizo.json new file mode 100644 index 000000000000..63ce62f7dc25 --- /dev/null +++ b/data/software/em/emule-plus-koizo.json @@ -0,0 +1,8 @@ +{ + "slug": "emule-plus-koizo", + "name": "Emule Plus Koizo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10269533" + ] +} diff --git a/data/software/em/emule-scarangel-mod.json b/data/software/em/emule-scarangel-mod.json new file mode 100644 index 000000000000..96e93c9f7ae6 --- /dev/null +++ b/data/software/em/emule-scarangel-mod.json @@ -0,0 +1,8 @@ +{ + "slug": "emule-scarangel-mod", + "name": "Emule Scarangel mod", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10847006" + ] +} diff --git a/data/software/em/emule-scarangel.json b/data/software/em/emule-scarangel.json new file mode 100644 index 000000000000..df4dee499061 --- /dev/null +++ b/data/software/em/emule-scarangel.json @@ -0,0 +1,8 @@ +{ + "slug": "emule-scarangel", + "name": "Emule ScarAngel", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5816169" + ] +} diff --git a/data/software/em/emule-stullemule-mod.json b/data/software/em/emule-stullemule-mod.json new file mode 100644 index 000000000000..f32c66f8a746 --- /dev/null +++ b/data/software/em/emule-stullemule-mod.json @@ -0,0 +1,8 @@ +{ + "slug": "emule-stullemule-mod", + "name": "Emule Stullemule mod", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10847007" + ] +} diff --git a/data/software/em/emule-verycd-mod.json b/data/software/em/emule-verycd-mod.json new file mode 100644 index 000000000000..70135a2d74fa --- /dev/null +++ b/data/software/em/emule-verycd-mod.json @@ -0,0 +1,8 @@ +{ + "slug": "emule-verycd-mod", + "name": "Emule VeryCD Mod", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10847008" + ] +} diff --git a/data/software/em/emule-x-mod.json b/data/software/em/emule-x-mod.json new file mode 100644 index 000000000000..afcba8153a07 --- /dev/null +++ b/data/software/em/emule-x-mod.json @@ -0,0 +1,8 @@ +{ + "slug": "emule-x-mod", + "name": "Emule X Mod", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10847010" + ] +} diff --git a/data/software/em/emule-x-ray-mod.json b/data/software/em/emule-x-ray-mod.json new file mode 100644 index 000000000000..b5e198b4dc4b --- /dev/null +++ b/data/software/em/emule-x-ray-mod.json @@ -0,0 +1,8 @@ +{ + "slug": "emule-x-ray-mod", + "name": "Emule X-Ray Mod", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10847009" + ] +} diff --git a/data/software/em/emule-xtreme-mod.json b/data/software/em/emule-xtreme-mod.json new file mode 100644 index 000000000000..a79d9f3770f0 --- /dev/null +++ b/data/software/em/emule-xtreme-mod.json @@ -0,0 +1,8 @@ +{ + "slug": "emule-xtreme-mod", + "name": "eMule Xtreme Mod", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8045077" + ] +} diff --git a/data/software/em/emx.json b/data/software/em/emx.json new file mode 100644 index 000000000000..c738dc08d08c --- /dev/null +++ b/data/software/em/emx.json @@ -0,0 +1,11 @@ +{ + "slug": "emx", + "name": "EMX", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5323648" + ], + "operating_systems": [ + "DOS" + ] +} diff --git a/data/software/en/en-vogue.json b/data/software/en/en-vogue.json new file mode 100644 index 000000000000..16d61304d840 --- /dev/null +++ b/data/software/en/en-vogue.json @@ -0,0 +1,11 @@ +{ + "slug": "en-vogue", + "name": "En Vogue", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122750124" + ], + "developers": [ + "Matthias Jaap" + ] +} diff --git a/data/software/en/enable-software.json b/data/software/en/enable-software.json new file mode 100644 index 000000000000..5f3b4a957992 --- /dev/null +++ b/data/software/en/enable-software.json @@ -0,0 +1,8 @@ +{ + "slug": "enable-software", + "name": "EnABLE software", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5374929" + ] +} diff --git a/data/software/en/enca.json b/data/software/en/enca.json new file mode 100644 index 000000000000..8ae9e6ab8bdf --- /dev/null +++ b/data/software/en/enca.json @@ -0,0 +1,8 @@ +{ + "slug": "enca", + "name": "Enca", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110473961" + ] +} diff --git a/data/software/en/encarta.json b/data/software/en/encarta.json new file mode 100644 index 000000000000..1d59d9734290 --- /dev/null +++ b/data/software/en/encarta.json @@ -0,0 +1,18 @@ +{ + "slug": "encarta", + "name": "Encarta", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q231136" + ], + "release_date": "1993-01-01", + "developers": [ + "Microsoft" + ], + "operating_systems": [ + "Microsoft Windows" + ], + "genres": [ + "encyclopedia" + ] +} diff --git a/data/software/en/encase.json b/data/software/en/encase.json new file mode 100644 index 000000000000..d297282d3b63 --- /dev/null +++ b/data/software/en/encase.json @@ -0,0 +1,14 @@ +{ + "slug": "encase", + "name": "EnCase", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3435415" + ], + "developers": [ + "Guidance Software" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/en/enchant-js.json b/data/software/en/enchant-js.json new file mode 100644 index 000000000000..c6789f85c169 --- /dev/null +++ b/data/software/en/enchant-js.json @@ -0,0 +1,11 @@ +{ + "slug": "enchant-js", + "name": "enchant.js", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q24874740" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/en/encina.json b/data/software/en/encina.json new file mode 100644 index 000000000000..66707a30ca44 --- /dev/null +++ b/data/software/en/encina.json @@ -0,0 +1,12 @@ +{ + "slug": "encina", + "name": "Encina", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22695924" + ], + "developers": [ + "Transarc", + "IBM" + ] +} diff --git a/data/software/en/encorebassing.json b/data/software/en/encorebassing.json new file mode 100644 index 000000000000..b782364aa4c2 --- /dev/null +++ b/data/software/en/encorebassing.json @@ -0,0 +1,8 @@ +{ + "slug": "encorebassing", + "name": "EncoreBassing", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10758477" + ] +} diff --git a/data/software/en/encyclop-dia-britannica-ultimate-reference-suite.json b/data/software/en/encyclop-dia-britannica-ultimate-reference-suite.json new file mode 100644 index 000000000000..22eec6d83210 --- /dev/null +++ b/data/software/en/encyclop-dia-britannica-ultimate-reference-suite.json @@ -0,0 +1,17 @@ +{ + "slug": "encyclop-dia-britannica-ultimate-reference-suite", + "name": "Encyclopædia Britannica Ultimate Reference Suite", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5375744" + ], + "developers": [ + "Encyclopædia Britannica Inc." + ], + "operating_systems": [ + "Microsoft Windows" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/en/endaro.json b/data/software/en/endaro.json new file mode 100644 index 000000000000..16fd0362ccd7 --- /dev/null +++ b/data/software/en/endaro.json @@ -0,0 +1,8 @@ +{ + "slug": "endaro", + "name": "Endaro", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140363080" + ] +} diff --git a/data/software/en/endrain.json b/data/software/en/endrain.json new file mode 100644 index 000000000000..8ee67cd2987d --- /dev/null +++ b/data/software/en/endrain.json @@ -0,0 +1,11 @@ +{ + "slug": "endrain", + "name": "EnDrain", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q30642511" + ], + "programming_languages": [ + "Delphi" + ] +} diff --git a/data/software/en/eneboo.json b/data/software/en/eneboo.json new file mode 100644 index 000000000000..40430ab1165b --- /dev/null +++ b/data/software/en/eneboo.json @@ -0,0 +1,8 @@ +{ + "slug": "eneboo", + "name": "Eneboo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q20014793" + ] +} diff --git a/data/software/en/energymech.json b/data/software/en/energymech.json new file mode 100644 index 000000000000..69b15ef6be2b --- /dev/null +++ b/data/software/en/energymech.json @@ -0,0 +1,8 @@ +{ + "slug": "energymech", + "name": "EnergyMech", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3054099" + ] +} diff --git a/data/software/en/engauge-digitizer.json b/data/software/en/engauge-digitizer.json new file mode 100644 index 000000000000..50d2802567b4 --- /dev/null +++ b/data/software/en/engauge-digitizer.json @@ -0,0 +1,8 @@ +{ + "slug": "engauge-digitizer", + "name": "Engauge Digitizer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16687704" + ] +} diff --git a/data/software/en/engaz-crm.json b/data/software/en/engaz-crm.json new file mode 100644 index 000000000000..de43d6802b93 --- /dev/null +++ b/data/software/en/engaz-crm.json @@ -0,0 +1,8 @@ +{ + "slug": "engaz-crm", + "name": "Engaz CRM", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139916955" + ] +} diff --git a/data/software/en/engineering-equation-solver.json b/data/software/en/engineering-equation-solver.json new file mode 100644 index 000000000000..9334053602a2 --- /dev/null +++ b/data/software/en/engineering-equation-solver.json @@ -0,0 +1,8 @@ +{ + "slug": "engineering-equation-solver", + "name": "Engineering Equation Solver", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5377834" + ] +} diff --git a/data/software/en/enhydra-server.json b/data/software/en/enhydra-server.json new file mode 100644 index 000000000000..088d3e42a206 --- /dev/null +++ b/data/software/en/enhydra-server.json @@ -0,0 +1,8 @@ +{ + "slug": "enhydra-server", + "name": "Enhydra Server", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5378823" + ] +} diff --git a/data/software/en/enlight-quickshot.json b/data/software/en/enlight-quickshot.json new file mode 100644 index 000000000000..bcb10e0bc361 --- /dev/null +++ b/data/software/en/enlight-quickshot.json @@ -0,0 +1,8 @@ +{ + "slug": "enlight-quickshot", + "name": "Enlight Quickshot", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q85759377" + ] +} diff --git a/data/software/en/enlightened-sound-daemon.json b/data/software/en/enlightened-sound-daemon.json new file mode 100644 index 000000000000..ebd182c9f6b6 --- /dev/null +++ b/data/software/en/enlightened-sound-daemon.json @@ -0,0 +1,11 @@ +{ + "slug": "enlightened-sound-daemon", + "name": "Enlightened Sound Daemon", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1167965" + ], + "licenses": [ + "GNU General Public License" + ] +} diff --git a/data/software/en/enlil.json b/data/software/en/enlil.json new file mode 100644 index 000000000000..0a3e73b9bd1f --- /dev/null +++ b/data/software/en/enlil.json @@ -0,0 +1,8 @@ +{ + "slug": "enlil", + "name": "Enlil", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136995211" + ] +} diff --git a/data/software/en/enovia.json b/data/software/en/enovia.json new file mode 100644 index 000000000000..4bdaaab055f7 --- /dev/null +++ b/data/software/en/enovia.json @@ -0,0 +1,8 @@ +{ + "slug": "enovia", + "name": "ENOVIA", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3045997" + ] +} diff --git a/data/software/en/enps.json b/data/software/en/enps.json new file mode 100644 index 000000000000..4d0f52641929 --- /dev/null +++ b/data/software/en/enps.json @@ -0,0 +1,11 @@ +{ + "slug": "enps", + "name": "ENPS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1794491" + ], + "developers": [ + "Associated Press" + ] +} diff --git a/data/software/en/enquire.json b/data/software/en/enquire.json new file mode 100644 index 000000000000..b97eabebb157 --- /dev/null +++ b/data/software/en/enquire.json @@ -0,0 +1,8 @@ +{ + "slug": "enquire", + "name": "EnQuire", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5374939" + ] +} diff --git a/data/software/en/enscape.json b/data/software/en/enscape.json new file mode 100644 index 000000000000..fd6d2d575ce8 --- /dev/null +++ b/data/software/en/enscape.json @@ -0,0 +1,8 @@ +{ + "slug": "enscape", + "name": "Enscape", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q83416071" + ] +} diff --git a/data/software/en/enscribe.json b/data/software/en/enscribe.json new file mode 100644 index 000000000000..e4344d2b3892 --- /dev/null +++ b/data/software/en/enscribe.json @@ -0,0 +1,11 @@ +{ + "slug": "enscribe", + "name": "Enscribe", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5379930" + ], + "developers": [ + "Hewlett-Packard" + ] +} diff --git a/data/software/en/ensemblebma.json b/data/software/en/ensemblebma.json new file mode 100644 index 000000000000..8c44a3682a64 --- /dev/null +++ b/data/software/en/ensemblebma.json @@ -0,0 +1,11 @@ +{ + "slug": "ensemblebma", + "name": "ensembleBMA", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q98972500" + ], + "licenses": [ + "GNU General Public License, version 2.0 or later" + ] +} diff --git a/data/software/en/ensmallen.json b/data/software/en/ensmallen.json new file mode 100644 index 000000000000..f9c2052b7912 --- /dev/null +++ b/data/software/en/ensmallen.json @@ -0,0 +1,14 @@ +{ + "slug": "ensmallen", + "name": "ensmallen", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116924819" + ], + "programming_languages": [ + "Python" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/en/enstratus.json b/data/software/en/enstratus.json new file mode 100644 index 000000000000..b384625fed04 --- /dev/null +++ b/data/software/en/enstratus.json @@ -0,0 +1,8 @@ +{ + "slug": "enstratus", + "name": "Enstratus", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5374945" + ] +} diff --git a/data/software/en/ente-web-api-server.json b/data/software/en/ente-web-api-server.json new file mode 100644 index 000000000000..b6e1937f0c87 --- /dev/null +++ b/data/software/en/ente-web-api-server.json @@ -0,0 +1,8 @@ +{ + "slug": "ente-web-api-server", + "name": "Ente Web API (server)", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136521787" + ] +} diff --git a/data/software/en/ente-web-photos-server.json b/data/software/en/ente-web-photos-server.json new file mode 100644 index 000000000000..8d8962d2c226 --- /dev/null +++ b/data/software/en/ente-web-photos-server.json @@ -0,0 +1,8 @@ +{ + "slug": "ente-web-photos-server", + "name": "Ente Web Photos (server)", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136521736" + ] +} diff --git a/data/software/en/enterprise-archive-solution.json b/data/software/en/enterprise-archive-solution.json new file mode 100644 index 000000000000..d534f018f90b --- /dev/null +++ b/data/software/en/enterprise-archive-solution.json @@ -0,0 +1,8 @@ +{ + "slug": "enterprise-archive-solution", + "name": "Enterprise Archive Solution", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25339837" + ] +} diff --git a/data/software/en/enterprise-dynamics.json b/data/software/en/enterprise-dynamics.json new file mode 100644 index 000000000000..1cb5b1159229 --- /dev/null +++ b/data/software/en/enterprise-dynamics.json @@ -0,0 +1,17 @@ +{ + "slug": "enterprise-dynamics", + "name": "Enterprise Dynamics", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1344662" + ], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [ + "Delphi" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/en/enterprise-extender.json b/data/software/en/enterprise-extender.json new file mode 100644 index 000000000000..d00d018b9d78 --- /dev/null +++ b/data/software/en/enterprise-extender.json @@ -0,0 +1,8 @@ +{ + "slug": "enterprise-extender", + "name": "Enterprise Extender", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120207377" + ] +} diff --git a/data/software/en/enterprise-storage-os.json b/data/software/en/enterprise-storage-os.json new file mode 100644 index 000000000000..ba8622ac3101 --- /dev/null +++ b/data/software/en/enterprise-storage-os.json @@ -0,0 +1,8 @@ +{ + "slug": "enterprise-storage-os", + "name": "Enterprise Storage OS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q19597079" + ] +} diff --git a/data/software/en/enterprise-vault.json b/data/software/en/enterprise-vault.json new file mode 100644 index 000000000000..fb143ab21c26 --- /dev/null +++ b/data/software/en/enterprise-vault.json @@ -0,0 +1,11 @@ +{ + "slug": "enterprise-vault", + "name": "Enterprise Vault", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5380363" + ], + "developers": [ + "Gen Digital" + ] +} diff --git a/data/software/en/entropy.json b/data/software/en/entropy.json new file mode 100644 index 000000000000..2bc69fea1eb4 --- /dev/null +++ b/data/software/en/entropy.json @@ -0,0 +1,8 @@ +{ + "slug": "entropy", + "name": "ENTROPY", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1957501" + ] +} diff --git a/data/software/en/env3d.json b/data/software/en/env3d.json new file mode 100644 index 000000000000..5fc654c0eb0a --- /dev/null +++ b/data/software/en/env3d.json @@ -0,0 +1,8 @@ +{ + "slug": "env3d", + "name": "Env3D", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5380902" + ] +} diff --git a/data/software/en/enverus-intelligence-research.json b/data/software/en/enverus-intelligence-research.json new file mode 100644 index 000000000000..34bfbcdbb891 --- /dev/null +++ b/data/software/en/enverus-intelligence-research.json @@ -0,0 +1,11 @@ +{ + "slug": "enverus-intelligence-research", + "name": "Enverus Intelligence Research", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135263945" + ], + "developers": [ + "Enverus" + ] +} diff --git a/data/software/en/enverus-rfx.json b/data/software/en/enverus-rfx.json new file mode 100644 index 000000000000..84e771df583f --- /dev/null +++ b/data/software/en/enverus-rfx.json @@ -0,0 +1,11 @@ +{ + "slug": "enverus-rfx", + "name": "Enverus RFx", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135263959" + ], + "developers": [ + "Enverus" + ] +} diff --git a/data/software/en/envi-met.json b/data/software/en/envi-met.json new file mode 100644 index 000000000000..a086d46cd4dc --- /dev/null +++ b/data/software/en/envi-met.json @@ -0,0 +1,8 @@ +{ + "slug": "envi-met", + "name": "ENVI-met", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111603204" + ] +} diff --git a/data/software/en/environmental-audio-extensions.json b/data/software/en/environmental-audio-extensions.json new file mode 100644 index 000000000000..3cb6c9a20d0a --- /dev/null +++ b/data/software/en/environmental-audio-extensions.json @@ -0,0 +1,11 @@ +{ + "slug": "environmental-audio-extensions", + "name": "Environmental Audio Extensions", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1202192" + ], + "developers": [ + "Creative Technology" + ] +} diff --git a/data/software/en/envoy-distributable-viewer.json b/data/software/en/envoy-distributable-viewer.json new file mode 100644 index 000000000000..2aaf42caebb9 --- /dev/null +++ b/data/software/en/envoy-distributable-viewer.json @@ -0,0 +1,11 @@ +{ + "slug": "envoy-distributable-viewer", + "name": "Envoy Distributable Viewer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63885859" + ], + "developers": [ + "Tumbleweed Communications" + ] +} diff --git a/data/software/en/enzona.json b/data/software/en/enzona.json new file mode 100644 index 000000000000..6fdb886a30d7 --- /dev/null +++ b/data/software/en/enzona.json @@ -0,0 +1,12 @@ +{ + "slug": "enzona", + "name": "Enzona", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113404585" + ], + "release_date": "2019-07-10", + "operating_systems": [ + "cross-platform" + ] +} diff --git a/data/software/en/enzyme.json b/data/software/en/enzyme.json new file mode 100644 index 000000000000..ba00e67a776e --- /dev/null +++ b/data/software/en/enzyme.json @@ -0,0 +1,11 @@ +{ + "slug": "enzyme", + "name": "enzyme", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974823" + ], + "licenses": [ + "Apache Software License 2.0" + ] +} diff --git a/data/software/eo/eonebill.json b/data/software/eo/eonebill.json new file mode 100644 index 000000000000..1672ab847e41 --- /dev/null +++ b/data/software/eo/eonebill.json @@ -0,0 +1,8 @@ +{ + "slug": "eonebill", + "name": "Eonebill", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138771047" + ] +} diff --git a/data/software/ep/epages.json b/data/software/ep/epages.json new file mode 100644 index 000000000000..f2dfdb78ac36 --- /dev/null +++ b/data/software/ep/epages.json @@ -0,0 +1,8 @@ +{ + "slug": "epages", + "name": "ePages", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1275707" + ] +} diff --git a/data/software/ep/epanet.json b/data/software/ep/epanet.json new file mode 100644 index 000000000000..dee34720a8e1 --- /dev/null +++ b/data/software/ep/epanet.json @@ -0,0 +1,14 @@ +{ + "slug": "epanet", + "name": "EPANET", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3277870" + ], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [ + "Object Pascal" + ] +} diff --git a/data/software/ep/eparaksts.json b/data/software/ep/eparaksts.json new file mode 100644 index 000000000000..7aae4ef56482 --- /dev/null +++ b/data/software/ep/eparaksts.json @@ -0,0 +1,11 @@ +{ + "slug": "eparaksts", + "name": "eParaksts", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123537135" + ], + "developers": [ + "Latvia State Radio and Television Center" + ] +} diff --git a/data/software/ep/epaybl.json b/data/software/ep/epaybl.json new file mode 100644 index 000000000000..5b4ca387b7d7 --- /dev/null +++ b/data/software/ep/epaybl.json @@ -0,0 +1,8 @@ +{ + "slug": "epaybl", + "name": "EPayBL", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1275704" + ] +} diff --git a/data/software/ep/epcedit.json b/data/software/ep/epcedit.json new file mode 100644 index 000000000000..419a34748d65 --- /dev/null +++ b/data/software/ep/epcedit.json @@ -0,0 +1,8 @@ +{ + "slug": "epcedit", + "name": "epcEdit", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084939" + ] +} diff --git a/data/software/ep/epesi-q13099384.json b/data/software/ep/epesi-q13099384.json new file mode 100644 index 000000000000..48abea79e5e1 --- /dev/null +++ b/data/software/ep/epesi-q13099384.json @@ -0,0 +1,15 @@ +{ + "slug": "epesi-q13099384", + "name": "Epesi", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q13099384" + ], + "programming_languages": [ + "PHP" + ], + "licenses": [ + "copyrighted free use", + "MIT License" + ] +} diff --git a/data/software/ep/epesi.json b/data/software/ep/epesi.json new file mode 100644 index 000000000000..e2a0c7322880 --- /dev/null +++ b/data/software/ep/epesi.json @@ -0,0 +1,8 @@ +{ + "slug": "epesi", + "name": "Epesi", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5382117" + ] +} diff --git a/data/software/ep/ephedra.json b/data/software/ep/ephedra.json new file mode 100644 index 000000000000..a13f4b5d1416 --- /dev/null +++ b/data/software/ep/ephedra.json @@ -0,0 +1,8 @@ +{ + "slug": "ephedra", + "name": "Ephedra", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q64030632" + ] +} diff --git a/data/software/ep/epi-map.json b/data/software/ep/epi-map.json new file mode 100644 index 000000000000..469b4acc4b2f --- /dev/null +++ b/data/software/ep/epi-map.json @@ -0,0 +1,17 @@ +{ + "slug": "epi-map", + "name": "Epi Map", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5382398" + ], + "developers": [ + "United States Centers for Disease Control and Prevention" + ], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [ + "Visual Basic" + ] +} diff --git a/data/software/ep/epi-suite.json b/data/software/ep/epi-suite.json new file mode 100644 index 000000000000..986d9f6c4fe0 --- /dev/null +++ b/data/software/ep/epi-suite.json @@ -0,0 +1,8 @@ +{ + "slug": "epi-suite", + "name": "EPI Suite", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q114648314" + ] +} diff --git a/data/software/ep/epic-citadel.json b/data/software/ep/epic-citadel.json new file mode 100644 index 000000000000..d96fce255669 --- /dev/null +++ b/data/software/ep/epic-citadel.json @@ -0,0 +1,14 @@ +{ + "slug": "epic-citadel", + "name": "Epic Citadel", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5382446" + ], + "developers": [ + "Epic Games" + ], + "operating_systems": [ + "iOS" + ] +} diff --git a/data/software/ep/epidata.json b/data/software/ep/epidata.json new file mode 100644 index 000000000000..51f62b64b5de --- /dev/null +++ b/data/software/ep/epidata.json @@ -0,0 +1,11 @@ +{ + "slug": "epidata", + "name": "Epidata", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5382673" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/ep/epoptes.json b/data/software/ep/epoptes.json new file mode 100644 index 000000000000..98a868e2adff --- /dev/null +++ b/data/software/ep/epoptes.json @@ -0,0 +1,8 @@ +{ + "slug": "epoptes", + "name": "Epoptes", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q21264631" + ] +} diff --git a/data/software/ep/epostmailer.json b/data/software/ep/epostmailer.json new file mode 100644 index 000000000000..94f0b409f197 --- /dev/null +++ b/data/software/ep/epostmailer.json @@ -0,0 +1,8 @@ +{ + "slug": "epostmailer", + "name": "Epostmailer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5383819" + ] +} diff --git a/data/software/ep/eprints-org.json b/data/software/ep/eprints-org.json new file mode 100644 index 000000000000..edba38368e37 --- /dev/null +++ b/data/software/ep/eprints-org.json @@ -0,0 +1,8 @@ +{ + "slug": "eprints-org", + "name": "EPrints.org", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084940" + ] +} diff --git a/data/software/ep/eprompter.json b/data/software/ep/eprompter.json new file mode 100644 index 000000000000..b9b0d87e1950 --- /dev/null +++ b/data/software/ep/eprompter.json @@ -0,0 +1,9 @@ +{ + "slug": "eprompter", + "name": "ePrompter", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5323979" + ], + "release_date": "2000-01-01" +} diff --git a/data/software/ep/epstool.json b/data/software/ep/epstool.json new file mode 100644 index 000000000000..ac6ee08bd452 --- /dev/null +++ b/data/software/ep/epstool.json @@ -0,0 +1,8 @@ +{ + "slug": "epstool", + "name": "epstool", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62848686" + ] +} diff --git a/data/software/eq/eqiqs.json b/data/software/eq/eqiqs.json new file mode 100644 index 000000000000..0c7585a8f448 --- /dev/null +++ b/data/software/eq/eqiqs.json @@ -0,0 +1,11 @@ +{ + "slug": "eqiqs", + "name": "EQIQs", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140036722" + ], + "developers": [ + "EQIQs" + ] +} diff --git a/data/software/eq/equinox.json b/data/software/eq/equinox.json new file mode 100644 index 000000000000..579b77cc96d6 --- /dev/null +++ b/data/software/eq/equinox.json @@ -0,0 +1,17 @@ +{ + "slug": "equinox", + "name": "Equinox", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1347837" + ], + "operating_systems": [ + "cross-platform" + ], + "programming_languages": [ + "Java" + ], + "licenses": [ + "Eclipse Public License 2.0" + ] +} diff --git a/data/software/er/er-studio.json b/data/software/er/er-studio.json new file mode 100644 index 000000000000..b2d77c0bf9ff --- /dev/null +++ b/data/software/er/er-studio.json @@ -0,0 +1,11 @@ +{ + "slug": "er-studio", + "name": "ER/Studio", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5323995" + ], + "developers": [ + "Idera Software" + ] +} diff --git a/data/software/er/erbele.json b/data/software/er/erbele.json new file mode 100644 index 000000000000..b1b896d457fa --- /dev/null +++ b/data/software/er/erbele.json @@ -0,0 +1,11 @@ +{ + "slug": "erbele", + "name": "Erbele", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q29364573" + ], + "licenses": [ + "Apache Software License 2.0" + ] +} diff --git a/data/software/es/es-file-explorer.json b/data/software/es/es-file-explorer.json new file mode 100644 index 000000000000..13d47f3f1e2d --- /dev/null +++ b/data/software/es/es-file-explorer.json @@ -0,0 +1,12 @@ +{ + "slug": "es-file-explorer", + "name": "ES File Explorer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q15807046" + ], + "operating_systems": [ + "iOS", + "macOS" + ] +} diff --git a/data/software/es/escriptorium.json b/data/software/es/escriptorium.json new file mode 100644 index 000000000000..c4771c5e8ca5 --- /dev/null +++ b/data/software/es/escriptorium.json @@ -0,0 +1,18 @@ +{ + "slug": "escriptorium", + "name": "eScriptorium", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111218645" + ], + "operating_systems": [ + "macOS" + ], + "programming_languages": [ + "Python", + "HTML" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/es/esdat.json b/data/software/es/esdat.json new file mode 100644 index 000000000000..8adf6533cf58 --- /dev/null +++ b/data/software/es/esdat.json @@ -0,0 +1,8 @@ +{ + "slug": "esdat", + "name": "Esdat", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5397530" + ] +} diff --git a/data/software/es/esearch.json b/data/software/es/esearch.json new file mode 100644 index 000000000000..da66cab1ac9e --- /dev/null +++ b/data/software/es/esearch.json @@ -0,0 +1,8 @@ +{ + "slug": "esearch", + "name": "esearch", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974825" + ] +} diff --git a/data/software/es/eselect-lib-bin-symlink.json b/data/software/es/eselect-lib-bin-symlink.json new file mode 100644 index 000000000000..f829b7e64797 --- /dev/null +++ b/data/software/es/eselect-lib-bin-symlink.json @@ -0,0 +1,8 @@ +{ + "slug": "eselect-lib-bin-symlink", + "name": "eselect-lib-bin-symlink", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974827" + ] +} diff --git a/data/software/es/eselect-mode.json b/data/software/es/eselect-mode.json new file mode 100644 index 000000000000..df181be596eb --- /dev/null +++ b/data/software/es/eselect-mode.json @@ -0,0 +1,8 @@ +{ + "slug": "eselect-mode", + "name": "eselect-mode", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974828" + ] +} diff --git a/data/software/es/eselect-python.json b/data/software/es/eselect-python.json new file mode 100644 index 000000000000..fb9b9c6583e6 --- /dev/null +++ b/data/software/es/eselect-python.json @@ -0,0 +1,8 @@ +{ + "slug": "eselect-python", + "name": "eselect-python", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974829" + ] +} diff --git a/data/software/es/eselect.json b/data/software/es/eselect.json new file mode 100644 index 000000000000..84ea89d11ae1 --- /dev/null +++ b/data/software/es/eselect.json @@ -0,0 +1,11 @@ +{ + "slug": "eselect", + "name": "eselect", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974826" + ], + "operating_systems": [ + "Gentoo Linux" + ] +} diff --git a/data/software/es/eset-smart-security.json b/data/software/es/eset-smart-security.json new file mode 100644 index 000000000000..23d65b12f934 --- /dev/null +++ b/data/software/es/eset-smart-security.json @@ -0,0 +1,11 @@ +{ + "slug": "eset-smart-security", + "name": "ESET Smart Security", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11197790" + ], + "developers": [ + "ESET" + ] +} diff --git a/data/software/es/esewa.json b/data/software/es/esewa.json new file mode 100644 index 000000000000..c6321abde349 --- /dev/null +++ b/data/software/es/esewa.json @@ -0,0 +1,8 @@ +{ + "slug": "esewa", + "name": "eSewa", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5324409" + ] +} diff --git a/data/software/es/esg-analytics.json b/data/software/es/esg-analytics.json new file mode 100644 index 000000000000..d718fd4a429d --- /dev/null +++ b/data/software/es/esg-analytics.json @@ -0,0 +1,11 @@ +{ + "slug": "esg-analytics", + "name": "ESG Analytics", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135263966" + ], + "developers": [ + "Enverus" + ] +} diff --git a/data/software/es/esignal.json b/data/software/es/esignal.json new file mode 100644 index 000000000000..cd338493f7d2 --- /dev/null +++ b/data/software/es/esignal.json @@ -0,0 +1,11 @@ +{ + "slug": "esignal", + "name": "eSignal", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5324413" + ], + "developers": [ + "Interactive Data Corporation" + ] +} diff --git a/data/software/es/esker-fax.json b/data/software/es/esker-fax.json new file mode 100644 index 000000000000..f3c3a0912ca4 --- /dev/null +++ b/data/software/es/esker-fax.json @@ -0,0 +1,8 @@ +{ + "slug": "esker-fax", + "name": "Esker Fax", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5398077" + ] +} diff --git a/data/software/es/esmf.json b/data/software/es/esmf.json new file mode 100644 index 000000000000..06b11e515d0e --- /dev/null +++ b/data/software/es/esmf.json @@ -0,0 +1,8 @@ +{ + "slug": "esmf", + "name": "ESMF", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5324181" + ] +} diff --git a/data/software/es/esmtp.json b/data/software/es/esmtp.json new file mode 100644 index 000000000000..f503bb2d74f5 --- /dev/null +++ b/data/software/es/esmtp.json @@ -0,0 +1,8 @@ +{ + "slug": "esmtp", + "name": "ESMTP", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62849044" + ] +} diff --git a/data/software/es/esobi.json b/data/software/es/esobi.json new file mode 100644 index 000000000000..66283553279f --- /dev/null +++ b/data/software/es/esobi.json @@ -0,0 +1,8 @@ +{ + "slug": "esobi", + "name": "eSobi", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q200483" + ] +} diff --git a/data/software/es/esomidas.json b/data/software/es/esomidas.json new file mode 100644 index 000000000000..5cef7d00c091 --- /dev/null +++ b/data/software/es/esomidas.json @@ -0,0 +1,8 @@ +{ + "slug": "esomidas", + "name": "esomidas", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065130" + ] +} diff --git a/data/software/es/esp-idf.json b/data/software/es/esp-idf.json new file mode 100644 index 000000000000..fd88624f66bb --- /dev/null +++ b/data/software/es/esp-idf.json @@ -0,0 +1,15 @@ +{ + "slug": "esp-idf", + "name": "ESP-IDF", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131611294" + ], + "developers": [ + "Angus Gratton", + "Ivan Grokhotkov" + ], + "licenses": [ + "Apache Software License 2.0" + ] +} diff --git a/data/software/es/esp-r.json b/data/software/es/esp-r.json new file mode 100644 index 000000000000..a59e90ef271d --- /dev/null +++ b/data/software/es/esp-r.json @@ -0,0 +1,8 @@ +{ + "slug": "esp-r", + "name": "ESP-r", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5324204" + ] +} diff --git a/data/software/es/esperient-creator.json b/data/software/es/esperient-creator.json new file mode 100644 index 000000000000..8ced434c99e4 --- /dev/null +++ b/data/software/es/esperient-creator.json @@ -0,0 +1,8 @@ +{ + "slug": "esperient-creator", + "name": "Esperient Creator", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10275062" + ] +} diff --git a/data/software/es/esphome.json b/data/software/es/esphome.json new file mode 100644 index 000000000000..218c4861ad23 --- /dev/null +++ b/data/software/es/esphome.json @@ -0,0 +1,15 @@ +{ + "slug": "esphome", + "name": "ESPHome", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117037663" + ], + "developers": [ + "Nabu Casa" + ], + "licenses": [ + "GNU General Public License, version 3.0", + "MIT License" + ] +} diff --git a/data/software/es/espocrm.json b/data/software/es/espocrm.json new file mode 100644 index 000000000000..0922e59056f6 --- /dev/null +++ b/data/software/es/espocrm.json @@ -0,0 +1,8 @@ +{ + "slug": "espocrm", + "name": "EspoCRM", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111333251" + ] +} diff --git a/data/software/es/espresso-q28974831.json b/data/software/es/espresso-q28974831.json new file mode 100644 index 000000000000..c5374b8e3830 --- /dev/null +++ b/data/software/es/espresso-q28974831.json @@ -0,0 +1,11 @@ +{ + "slug": "espresso-q28974831", + "name": "espresso++", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974831" + ], + "licenses": [ + "GNU General Public License, version 3.0" + ] +} diff --git a/data/software/es/espresso.json b/data/software/es/espresso.json new file mode 100644 index 000000000000..3edfd8cdb446 --- /dev/null +++ b/data/software/es/espresso.json @@ -0,0 +1,8 @@ +{ + "slug": "espresso", + "name": "espresso", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974830" + ] +} diff --git a/data/software/es/essbase.json b/data/software/es/essbase.json new file mode 100644 index 000000000000..820f5ec5b59a --- /dev/null +++ b/data/software/es/essbase.json @@ -0,0 +1,22 @@ +{ + "slug": "essbase", + "name": "Essbase", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1368563" + ], + "developers": [ + "Hyperion Solutions Corporation", + "Oracle Corporation" + ], + "operating_systems": [ + "HP-UX", + "IBM AIX", + "Solaris", + "macOS", + "Microsoft Windows" + ], + "programming_languages": [ + "Java" + ] +} diff --git a/data/software/es/essiv.json b/data/software/es/essiv.json new file mode 100644 index 000000000000..e6bb9d6e3f77 --- /dev/null +++ b/data/software/es/essiv.json @@ -0,0 +1,8 @@ +{ + "slug": "essiv", + "name": "ESSIV", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1275969" + ] +} diff --git a/data/software/es/estar.json b/data/software/es/estar.json new file mode 100644 index 000000000000..99d5208d2416 --- /dev/null +++ b/data/software/es/estar.json @@ -0,0 +1,12 @@ +{ + "slug": "estar", + "name": "ESTAR", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5324380" + ], + "developers": [ + "Liverpool John Moores University", + "University of Exeter" + ] +} diff --git a/data/software/es/estmorf.json b/data/software/es/estmorf.json new file mode 100644 index 000000000000..7d68c48125f3 --- /dev/null +++ b/data/software/es/estmorf.json @@ -0,0 +1,8 @@ +{ + "slug": "estmorf", + "name": "ESTMORF", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087802" + ] +} diff --git a/data/software/et/etaoi-keyboard.json b/data/software/et/etaoi-keyboard.json new file mode 100644 index 000000000000..31b9a7ecbf28 --- /dev/null +++ b/data/software/et/etaoi-keyboard.json @@ -0,0 +1,8 @@ +{ + "slug": "etaoi-keyboard", + "name": "ETAOI keyboard", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5324435" + ] +} diff --git a/data/software/et/etap-3.json b/data/software/et/etap-3.json new file mode 100644 index 000000000000..f9166e0eca8c --- /dev/null +++ b/data/software/et/etap-3.json @@ -0,0 +1,8 @@ +{ + "slug": "etap-3", + "name": "ETAP-3", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5324436" + ] +} diff --git a/data/software/et/etblast.json b/data/software/et/etblast.json new file mode 100644 index 000000000000..9ed57f0fc6f6 --- /dev/null +++ b/data/software/et/etblast.json @@ -0,0 +1,8 @@ +{ + "slug": "etblast", + "name": "eTBLAST", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5324447" + ] +} diff --git a/data/software/et/etcpack.json b/data/software/et/etcpack.json new file mode 100644 index 000000000000..49304a2cd136 --- /dev/null +++ b/data/software/et/etcpack.json @@ -0,0 +1,11 @@ +{ + "slug": "etcpack", + "name": "ETCPACK", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60526092" + ], + "developers": [ + "Ericsson" + ] +} diff --git a/data/software/et/etecsim.json b/data/software/et/etecsim.json new file mode 100644 index 000000000000..cbeb3199ab3f --- /dev/null +++ b/data/software/et/etecsim.json @@ -0,0 +1,11 @@ +{ + "slug": "etecsim", + "name": "eTecSim", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122729450" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/et/ethercalc.json b/data/software/et/ethercalc.json new file mode 100644 index 000000000000..6d5e93283d7a --- /dev/null +++ b/data/software/et/ethercalc.json @@ -0,0 +1,17 @@ +{ + "slug": "ethercalc", + "name": "EtherCalc", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3059271" + ], + "developers": [ + "Audrey Tang" + ], + "licenses": [ + "Artistic License 2.0", + "Apache Software License 2.0", + "Creative Commons CC0 License", + "Common Public Attribution License" + ] +} diff --git a/data/software/et/ethno.json b/data/software/et/ethno.json new file mode 100644 index 000000000000..37abb20e610d --- /dev/null +++ b/data/software/et/ethno.json @@ -0,0 +1,11 @@ +{ + "slug": "ethno", + "name": "Ethno", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105229744" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/et/ethnograph.json b/data/software/et/ethnograph.json new file mode 100644 index 000000000000..2f3d18d38074 --- /dev/null +++ b/data/software/et/ethnograph.json @@ -0,0 +1,8 @@ +{ + "slug": "ethnograph", + "name": "Ethnograph", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084941" + ] +} diff --git a/data/software/et/ethosce.json b/data/software/et/ethosce.json new file mode 100644 index 000000000000..334b4ae64fcf --- /dev/null +++ b/data/software/et/ethosce.json @@ -0,0 +1,11 @@ +{ + "slug": "ethosce", + "name": "EthosCE", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q30588106" + ], + "programming_languages": [ + "PHP" + ] +} diff --git a/data/software/et/ethswitch.json b/data/software/et/ethswitch.json new file mode 100644 index 000000000000..a35737a8ca21 --- /dev/null +++ b/data/software/et/ethswitch.json @@ -0,0 +1,8 @@ +{ + "slug": "ethswitch", + "name": "Ethswitch", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135516755" + ] +} diff --git a/data/software/et/etka.json b/data/software/et/etka.json new file mode 100644 index 000000000000..a4f14bdb16bd --- /dev/null +++ b/data/software/et/etka.json @@ -0,0 +1,8 @@ +{ + "slug": "etka", + "name": "ETKA", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1276108" + ] +} diff --git a/data/software/et/etrice.json b/data/software/et/etrice.json new file mode 100644 index 000000000000..6a88df25e377 --- /dev/null +++ b/data/software/et/etrice.json @@ -0,0 +1,8 @@ +{ + "slug": "etrice", + "name": "ETrice", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q31838467" + ] +} diff --git a/data/software/eu/euclid.json b/data/software/eu/euclid.json new file mode 100644 index 000000000000..c6f1e3de4203 --- /dev/null +++ b/data/software/eu/euclid.json @@ -0,0 +1,11 @@ +{ + "slug": "euclid", + "name": "Euclid", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5406096" + ], + "programming_languages": [ + "Fortran" + ] +} diff --git a/data/software/eu/eudev.json b/data/software/eu/eudev.json new file mode 100644 index 000000000000..09ec5a8f1e24 --- /dev/null +++ b/data/software/eu/eudev.json @@ -0,0 +1,11 @@ +{ + "slug": "eudev", + "name": "eudev", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974832" + ], + "licenses": [ + "GNU General Public License, version 2.0" + ] +} diff --git a/data/software/eu/euler.json b/data/software/eu/euler.json new file mode 100644 index 000000000000..17532e356c2c --- /dev/null +++ b/data/software/eu/euler.json @@ -0,0 +1,8 @@ +{ + "slug": "euler", + "name": "EULER", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084942" + ] +} diff --git a/data/software/eu/eunicycle.json b/data/software/eu/eunicycle.json new file mode 100644 index 000000000000..795985af4f59 --- /dev/null +++ b/data/software/eu/eunicycle.json @@ -0,0 +1,8 @@ +{ + "slug": "eunicycle", + "name": "Eunicycle", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4534577" + ] +} diff --git a/data/software/eu/eurac-comparison-arcs.json b/data/software/eu/eurac-comparison-arcs.json new file mode 100644 index 000000000000..2ae3fb6f411a --- /dev/null +++ b/data/software/eu/eurac-comparison-arcs.json @@ -0,0 +1,8 @@ +{ + "slug": "eurac-comparison-arcs", + "name": "EURAC: Comparison Arcs", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084944" + ] +} diff --git a/data/software/eu/eurac-corpus-clouds.json b/data/software/eu/eurac-corpus-clouds.json new file mode 100644 index 000000000000..02cf08f72781 --- /dev/null +++ b/data/software/eu/eurac-corpus-clouds.json @@ -0,0 +1,8 @@ +{ + "slug": "eurac-corpus-clouds", + "name": "EURAC: Corpus Clouds", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084945" + ] +} diff --git a/data/software/eu/eurac-double-tree.json b/data/software/eu/eurac-double-tree.json new file mode 100644 index 000000000000..56c8c338d7cf --- /dev/null +++ b/data/software/eu/eurac-double-tree.json @@ -0,0 +1,8 @@ +{ + "slug": "eurac-double-tree", + "name": "EURAC: Double Tree", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084946" + ] +} diff --git a/data/software/eu/eurac-end-to-end.json b/data/software/eu/eurac-end-to-end.json new file mode 100644 index 000000000000..85496df05d94 --- /dev/null +++ b/data/software/eu/eurac-end-to-end.json @@ -0,0 +1,8 @@ +{ + "slug": "eurac-end-to-end", + "name": "EURAC: End to End", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084947" + ] +} diff --git a/data/software/eu/eurac-interhist.json b/data/software/eu/eurac-interhist.json new file mode 100644 index 000000000000..9758685003b4 --- /dev/null +++ b/data/software/eu/eurac-interhist.json @@ -0,0 +1,8 @@ +{ + "slug": "eurac-interhist", + "name": "EURAC: interHist", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084948" + ] +} diff --git a/data/software/eu/eurac-structured-parallel-coordinates.json b/data/software/eu/eurac-structured-parallel-coordinates.json new file mode 100644 index 000000000000..6901cdb89b10 --- /dev/null +++ b/data/software/eu/eurac-structured-parallel-coordinates.json @@ -0,0 +1,8 @@ +{ + "slug": "eurac-structured-parallel-coordinates", + "name": "EURAC: Structured Parallel Coordinates", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084949" + ] +} diff --git a/data/software/eu/eurisko.json b/data/software/eu/eurisko.json new file mode 100644 index 000000000000..e4df7c115549 --- /dev/null +++ b/data/software/eu/eurisko.json @@ -0,0 +1,11 @@ +{ + "slug": "eurisko", + "name": "Eurisko", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3060518" + ], + "developers": [ + "Douglas B. Lenat" + ] +} diff --git a/data/software/eu/european-middleware-initiative.json b/data/software/eu/european-middleware-initiative.json new file mode 100644 index 000000000000..ec05c3ec7b51 --- /dev/null +++ b/data/software/eu/european-middleware-initiative.json @@ -0,0 +1,8 @@ +{ + "slug": "european-middleware-initiative", + "name": "European Middleware Initiative", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5412825" + ] +} diff --git a/data/software/eu/euscan.json b/data/software/eu/euscan.json new file mode 100644 index 000000000000..b1ef82798ef1 --- /dev/null +++ b/data/software/eu/euscan.json @@ -0,0 +1,11 @@ +{ + "slug": "euscan", + "name": "euscan", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974833" + ], + "licenses": [ + "GNU General Public License, version 2.0" + ] +} diff --git a/data/software/ev/evalplus.json b/data/software/ev/evalplus.json new file mode 100644 index 000000000000..06a6540a4b0b --- /dev/null +++ b/data/software/ev/evalplus.json @@ -0,0 +1,11 @@ +{ + "slug": "evalplus", + "name": "evalplus", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127474976" + ], + "licenses": [ + "Apache Software License 2.0" + ] +} diff --git a/data/software/ev/evasi0n.json b/data/software/ev/evasi0n.json new file mode 100644 index 000000000000..09d405745e5c --- /dev/null +++ b/data/software/ev/evasi0n.json @@ -0,0 +1,11 @@ +{ + "slug": "evasi0n", + "name": "Evasi0n", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5416087" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/ev/evcc.json b/data/software/ev/evcc.json new file mode 100644 index 000000000000..ff20ef2b8dc5 --- /dev/null +++ b/data/software/ev/evcc.json @@ -0,0 +1,16 @@ +{ + "slug": "evcc", + "name": "evcc", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131222833" + ], + "release_date": "2020-01-01", + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/ev/event-viewer.json b/data/software/ev/event-viewer.json new file mode 100644 index 000000000000..1b01a9f0a0df --- /dev/null +++ b/data/software/ev/event-viewer.json @@ -0,0 +1,11 @@ +{ + "slug": "event-viewer", + "name": "Event Viewer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q360204" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/ev/eventdrive.json b/data/software/ev/eventdrive.json new file mode 100644 index 000000000000..d0d15cd2961f --- /dev/null +++ b/data/software/ev/eventdrive.json @@ -0,0 +1,8 @@ +{ + "slug": "eventdrive", + "name": "Eventdrive", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139860459" + ] +} diff --git a/data/software/ev/eventifai.json b/data/software/ev/eventifai.json new file mode 100644 index 000000000000..664533e236cd --- /dev/null +++ b/data/software/ev/eventifai.json @@ -0,0 +1,8 @@ +{ + "slug": "eventifai", + "name": "Eventifai", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136459469" + ] +} diff --git a/data/software/ev/eventmanager.json b/data/software/ev/eventmanager.json new file mode 100644 index 000000000000..795d19d54daa --- /dev/null +++ b/data/software/ev/eventmanager.json @@ -0,0 +1,8 @@ +{ + "slug": "eventmanager", + "name": "EventManager", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5416691" + ] +} diff --git a/data/software/ev/everblock.json b/data/software/ev/everblock.json new file mode 100644 index 000000000000..d9d7f820e2e4 --- /dev/null +++ b/data/software/ev/everblock.json @@ -0,0 +1,8 @@ +{ + "slug": "everblock", + "name": "Everblock", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134573098" + ] +} diff --git a/data/software/ev/everhour.json b/data/software/ev/everhour.json new file mode 100644 index 000000000000..dcab577de983 --- /dev/null +++ b/data/software/ev/everhour.json @@ -0,0 +1,8 @@ +{ + "slug": "everhour", + "name": "Everhour", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q55611221" + ] +} diff --git a/data/software/ev/everstory.json b/data/software/ev/everstory.json new file mode 100644 index 000000000000..fdceda272b37 --- /dev/null +++ b/data/software/ev/everstory.json @@ -0,0 +1,14 @@ +{ + "slug": "everstory", + "name": "EverStory", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139679664" + ], + "developers": [ + "Black Pixel AI Inc" + ], + "publishers": [ + "Black Pixel AI Inc" + ] +} diff --git a/data/software/ev/evertontv.json b/data/software/ev/evertontv.json new file mode 100644 index 000000000000..2715ccec2759 --- /dev/null +++ b/data/software/ev/evertontv.json @@ -0,0 +1,11 @@ +{ + "slug": "evertontv", + "name": "EvertonTV", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5417388" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/ev/everybody-votes-channel.json b/data/software/ev/everybody-votes-channel.json new file mode 100644 index 000000000000..a13e336c65b0 --- /dev/null +++ b/data/software/ev/everybody-votes-channel.json @@ -0,0 +1,15 @@ +{ + "slug": "everybody-votes-channel", + "name": "Everybody Votes Channel", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3282596" + ], + "release_date": "2007-02-14", + "developers": [ + "Nintendo" + ], + "publishers": [ + "Nintendo" + ] +} diff --git a/data/software/ev/everyday-genius-squarelogic.json b/data/software/ev/everyday-genius-squarelogic.json new file mode 100644 index 000000000000..29f1631ca2ed --- /dev/null +++ b/data/software/ev/everyday-genius-squarelogic.json @@ -0,0 +1,12 @@ +{ + "slug": "everyday-genius-squarelogic", + "name": "Everyday Genius: SquareLogic", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q119167580" + ], + "release_date": "2009-10-09", + "genres": [ + "puzzle video game" + ] +} diff --git a/data/software/ev/everyonepiano.json b/data/software/ev/everyonepiano.json new file mode 100644 index 000000000000..b24c91205315 --- /dev/null +++ b/data/software/ev/everyonepiano.json @@ -0,0 +1,15 @@ +{ + "slug": "everyonepiano", + "name": "EveryonePiano", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107751548" + ], + "release_date": "2010-01-01", + "operating_systems": [ + "Microsoft Windows" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/ev/everyscape.json b/data/software/ev/everyscape.json new file mode 100644 index 000000000000..1cc7859a60dd --- /dev/null +++ b/data/software/ev/everyscape.json @@ -0,0 +1,8 @@ +{ + "slug": "everyscape", + "name": "EveryScape", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q278558" + ] +} diff --git a/data/software/ev/evi-linhd.json b/data/software/ev/evi-linhd.json new file mode 100644 index 000000000000..51359107d0ab --- /dev/null +++ b/data/software/ev/evi-linhd.json @@ -0,0 +1,8 @@ +{ + "slug": "evi-linhd", + "name": "EVI-LINHD", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084951" + ] +} diff --git a/data/software/ev/evocb.json b/data/software/ev/evocb.json new file mode 100644 index 000000000000..08176f8676f4 --- /dev/null +++ b/data/software/ev/evocb.json @@ -0,0 +1,15 @@ +{ + "slug": "evocb", + "name": "Evocb", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5418548" + ], + "release_date": "2011-01-01", + "programming_languages": [ + "Java" + ], + "licenses": [ + "GNU Lesser General Public License, version 2.1 or later" + ] +} diff --git a/data/software/ev/evoke.json b/data/software/ev/evoke.json new file mode 100644 index 000000000000..84bdc470ac48 --- /dev/null +++ b/data/software/ev/evoke.json @@ -0,0 +1,11 @@ +{ + "slug": "evoke", + "name": "Evoke", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138858804" + ], + "developers": [ + "System Automation" + ] +} diff --git a/data/software/ex/exact-audio-copy.json b/data/software/ex/exact-audio-copy.json new file mode 100644 index 000000000000..6be4627a5559 --- /dev/null +++ b/data/software/ex/exact-audio-copy.json @@ -0,0 +1,14 @@ +{ + "slug": "exact-audio-copy", + "name": "Exact Audio Copy", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1196436" + ], + "operating_systems": [ + "Microsoft Windows" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/ex/exact-online.json b/data/software/ex/exact-online.json new file mode 100644 index 000000000000..5c717052f2e7 --- /dev/null +++ b/data/software/ex/exact-online.json @@ -0,0 +1,8 @@ +{ + "slug": "exact-online", + "name": "Exact Online", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q26857571" + ] +} diff --git a/data/software/ex/exam.json b/data/software/ex/exam.json new file mode 100644 index 000000000000..065ff3b3f94b --- /dev/null +++ b/data/software/ex/exam.json @@ -0,0 +1,8 @@ +{ + "slug": "exam", + "name": "EXAM", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1276541" + ] +} diff --git a/data/software/ex/examdiff-pro.json b/data/software/ex/examdiff-pro.json new file mode 100644 index 000000000000..723674455c39 --- /dev/null +++ b/data/software/ex/examdiff-pro.json @@ -0,0 +1,8 @@ +{ + "slug": "examdiff-pro", + "name": "ExamDiff Pro", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5419269" + ] +} diff --git a/data/software/ex/exasearch.json b/data/software/ex/exasearch.json new file mode 100644 index 000000000000..79801a0b05c7 --- /dev/null +++ b/data/software/ex/exasearch.json @@ -0,0 +1,11 @@ +{ + "slug": "exasearch", + "name": "ExaSearch", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5419205" + ], + "developers": [ + "Exanet" + ] +} diff --git a/data/software/ex/excalibug.json b/data/software/ex/excalibug.json new file mode 100644 index 000000000000..4d943b76e103 --- /dev/null +++ b/data/software/ex/excalibug.json @@ -0,0 +1,9 @@ +{ + "slug": "excalibug", + "name": "ExcaliBug", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140355888" + ], + "release_date": "2001-01-01" +} diff --git a/data/software/ex/excelsior-jet.json b/data/software/ex/excelsior-jet.json new file mode 100644 index 000000000000..a9bc863fda30 --- /dev/null +++ b/data/software/ex/excelsior-jet.json @@ -0,0 +1,17 @@ +{ + "slug": "excelsior-jet", + "name": "Excelsior JET", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1383464" + ], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [ + "Modula-2" + ], + "licenses": [ + "end-user license agreement" + ] +} diff --git a/data/software/ex/exchange-activesync.json b/data/software/ex/exchange-activesync.json new file mode 100644 index 000000000000..388a47310fe4 --- /dev/null +++ b/data/software/ex/exchange-activesync.json @@ -0,0 +1,11 @@ +{ + "slug": "exchange-activesync", + "name": "Exchange ActiveSync", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q263029" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/ex/excise-movement-and-control-system.json b/data/software/ex/excise-movement-and-control-system.json new file mode 100644 index 000000000000..3deb5bf77f81 --- /dev/null +++ b/data/software/ex/excise-movement-and-control-system.json @@ -0,0 +1,8 @@ +{ + "slug": "excise-movement-and-control-system", + "name": "Excise Movement and Control System", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1275160" + ] +} diff --git a/data/software/ex/exeem.json b/data/software/ex/exeem.json new file mode 100644 index 000000000000..cc8273a38573 --- /dev/null +++ b/data/software/ex/exeem.json @@ -0,0 +1,8 @@ +{ + "slug": "exeem", + "name": "eXeem", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q853479" + ] +} diff --git a/data/software/ex/exergy.json b/data/software/ex/exergy.json new file mode 100644 index 000000000000..92dc51344bd5 --- /dev/null +++ b/data/software/ex/exergy.json @@ -0,0 +1,8 @@ +{ + "slug": "exergy", + "name": "Exergy", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28458608" + ] +} diff --git a/data/software/ex/exheres-syntax.json b/data/software/ex/exheres-syntax.json new file mode 100644 index 000000000000..4476a96c5af8 --- /dev/null +++ b/data/software/ex/exheres-syntax.json @@ -0,0 +1,8 @@ +{ + "slug": "exheres-syntax", + "name": "exheres-syntax", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974834" + ] +} diff --git a/data/software/ex/exhibit-3-0.json b/data/software/ex/exhibit-3-0.json new file mode 100644 index 000000000000..2b2f7a89ae24 --- /dev/null +++ b/data/software/ex/exhibit-3-0.json @@ -0,0 +1,8 @@ +{ + "slug": "exhibit-3-0", + "name": "Exhibit 3.0", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084952" + ] +} diff --git a/data/software/ex/exiftags.json b/data/software/ex/exiftags.json new file mode 100644 index 000000000000..d8f4e0042af8 --- /dev/null +++ b/data/software/ex/exiftags.json @@ -0,0 +1,8 @@ +{ + "slug": "exiftags", + "name": "exiftags", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62849048" + ] +} diff --git a/data/software/ex/existence-proof-an-empowerment-doctrine-for-credential-less-ai-enabled-creators-existence.json b/data/software/ex/existence-proof-an-empowerment-doctrine-for-credential-less-ai-enabled-creators-existence.json new file mode 100644 index 000000000000..2f5e4eb391a1 --- /dev/null +++ b/data/software/ex/existence-proof-an-empowerment-doctrine-for-credential-less-ai-enabled-creators-existence.json @@ -0,0 +1,15 @@ +{ + "slug": "existence-proof-an-empowerment-doctrine-for-credential-less-ai-enabled-creators-existence", + "name": "existence-proof: An Empowerment Doctrine for Credential-less AI-enabled Creators — Existence Proof Format, Feasibility-Question Corpus, and Gatekeeping Eval", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140090192" + ], + "release_date": "2026-06-05", + "developers": [ + "Tatsuya Shimomoto" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/ex/exmaralda.json b/data/software/ex/exmaralda.json new file mode 100644 index 000000000000..09d634ed2b2f --- /dev/null +++ b/data/software/ex/exmaralda.json @@ -0,0 +1,18 @@ +{ + "slug": "exmaralda", + "name": "EXMARaLDA", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5324690" + ], + "release_date": "2001-01-01", + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [ + "Java" + ], + "licenses": [ + "GNU General Public License" + ] +} diff --git a/data/software/ex/exo-inc.json b/data/software/ex/exo-inc.json new file mode 100644 index 000000000000..87c9fb0334b5 --- /dev/null +++ b/data/software/ex/exo-inc.json @@ -0,0 +1,8 @@ +{ + "slug": "exo-inc", + "name": "Exo Inc", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25327054" + ] +} diff --git a/data/software/ex/exodus.json b/data/software/ex/exodus.json new file mode 100644 index 000000000000..c694d3287911 --- /dev/null +++ b/data/software/ex/exodus.json @@ -0,0 +1,11 @@ +{ + "slug": "exodus", + "name": "Exodus", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q58076" + ], + "programming_languages": [ + "Object Pascal" + ] +} diff --git a/data/software/ex/exoneree-app.json b/data/software/ex/exoneree-app.json new file mode 100644 index 000000000000..86fa92171ad5 --- /dev/null +++ b/data/software/ex/exoneree-app.json @@ -0,0 +1,14 @@ +{ + "slug": "exoneree-app", + "name": "Exoneree App", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138865716" + ], + "developers": [ + "Dylan Carnahan" + ], + "publishers": [ + "ProCarn Solutions" + ] +} diff --git a/data/software/ex/expandrive.json b/data/software/ex/expandrive.json new file mode 100644 index 000000000000..12768b15717d --- /dev/null +++ b/data/software/ex/expandrive.json @@ -0,0 +1,8 @@ +{ + "slug": "expandrive", + "name": "ExpanDrive", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5420736" + ] +} diff --git a/data/software/ex/expasy.json b/data/software/ex/expasy.json new file mode 100644 index 000000000000..668f41b89c43 --- /dev/null +++ b/data/software/ex/expasy.json @@ -0,0 +1,8 @@ +{ + "slug": "expasy", + "name": "ExPASy", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q905689" + ] +} diff --git a/data/software/ex/expensive-desk-calculator.json b/data/software/ex/expensive-desk-calculator.json new file mode 100644 index 000000000000..71daed19800c --- /dev/null +++ b/data/software/ex/expensive-desk-calculator.json @@ -0,0 +1,8 @@ +{ + "slug": "expensive-desk-calculator", + "name": "Expensive Desk Calculator", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5421016" + ] +} diff --git a/data/software/ex/expensive-tape-recorder.json b/data/software/ex/expensive-tape-recorder.json new file mode 100644 index 000000000000..830e30a9b71b --- /dev/null +++ b/data/software/ex/expensive-tape-recorder.json @@ -0,0 +1,9 @@ +{ + "slug": "expensive-tape-recorder", + "name": "Expensive Tape Recorder", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5421017" + ], + "release_date": "1959-01-01" +} diff --git a/data/software/ex/experience-this.json b/data/software/ex/experience-this.json new file mode 100644 index 000000000000..b3b171df0b3c --- /dev/null +++ b/data/software/ex/experience-this.json @@ -0,0 +1,8 @@ +{ + "slug": "experience-this", + "name": "Experience This", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139973863" + ] +} diff --git a/data/software/ex/explex.json b/data/software/ex/explex.json new file mode 100644 index 000000000000..adfda99b4a25 --- /dev/null +++ b/data/software/ex/explex.json @@ -0,0 +1,8 @@ +{ + "slug": "explex", + "name": "EXPLEX", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087803" + ] +} diff --git a/data/software/ex/exploratree.json b/data/software/ex/exploratree.json new file mode 100644 index 000000000000..805c803d909c --- /dev/null +++ b/data/software/ex/exploratree.json @@ -0,0 +1,8 @@ +{ + "slug": "exploratree", + "name": "Exploratree", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084953" + ] +} diff --git a/data/software/ex/explore2fs.json b/data/software/ex/explore2fs.json new file mode 100644 index 000000000000..d0d824251715 --- /dev/null +++ b/data/software/ex/explore2fs.json @@ -0,0 +1,8 @@ +{ + "slug": "explore2fs", + "name": "Explore2fs", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q510409" + ] +} diff --git a/data/software/ex/explzh.json b/data/software/ex/explzh.json new file mode 100644 index 000000000000..7bb3804fe916 --- /dev/null +++ b/data/software/ex/explzh.json @@ -0,0 +1,11 @@ +{ + "slug": "explzh", + "name": "Explzh", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11198539" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/ex/expos.json b/data/software/ex/expos.json new file mode 100644 index 000000000000..195dbfda1a5b --- /dev/null +++ b/data/software/ex/expos.json @@ -0,0 +1,14 @@ +{ + "slug": "expos", + "name": "Exposé", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q306175" + ], + "developers": [ + "Apple Inc." + ], + "operating_systems": [ + "macOS" + ] +} diff --git a/data/software/ex/express-data-path.json b/data/software/ex/express-data-path.json new file mode 100644 index 000000000000..8283d83fd66f --- /dev/null +++ b/data/software/ex/express-data-path.json @@ -0,0 +1,8 @@ +{ + "slug": "express-data-path", + "name": "Express Data Path", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q65070151" + ] +} diff --git a/data/software/ex/express-scribe-transcription-software.json b/data/software/ex/express-scribe-transcription-software.json new file mode 100644 index 000000000000..622149baf5d4 --- /dev/null +++ b/data/software/ex/express-scribe-transcription-software.json @@ -0,0 +1,8 @@ +{ + "slug": "express-scribe-transcription-software", + "name": "Express Scribe Transcription Software", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084954" + ] +} diff --git a/data/software/ex/express-scribe.json b/data/software/ex/express-scribe.json new file mode 100644 index 000000000000..d8816fcf2d8c --- /dev/null +++ b/data/software/ex/express-scribe.json @@ -0,0 +1,15 @@ +{ + "slug": "express-scribe", + "name": "Express Scribe", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105076383" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/ex/expression-studio.json b/data/software/ex/expression-studio.json new file mode 100644 index 000000000000..a218e31e624f --- /dev/null +++ b/data/software/ex/expression-studio.json @@ -0,0 +1,11 @@ +{ + "slug": "expression-studio", + "name": "Expression Studio", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q688988" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/ex/expresso-spreadsheet.json b/data/software/ex/expresso-spreadsheet.json new file mode 100644 index 000000000000..75f39216107a --- /dev/null +++ b/data/software/ex/expresso-spreadsheet.json @@ -0,0 +1,8 @@ +{ + "slug": "expresso-spreadsheet", + "name": "Expresso spreadsheet", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5421738" + ] +} diff --git a/data/software/ex/exs24.json b/data/software/ex/exs24.json new file mode 100644 index 000000000000..e06bca710a9d --- /dev/null +++ b/data/software/ex/exs24.json @@ -0,0 +1,11 @@ +{ + "slug": "exs24", + "name": "EXS24", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10478876" + ], + "developers": [ + "Emagic" + ] +} diff --git a/data/software/ex/exstream.json b/data/software/ex/exstream.json new file mode 100644 index 000000000000..daba16903071 --- /dev/null +++ b/data/software/ex/exstream.json @@ -0,0 +1,15 @@ +{ + "slug": "exstream", + "name": "Exstream", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q30926249" + ], + "developers": [ + "Exstream Software", + "Open Text Corporation", + "Autonomy Corporation", + "HP Inc.", + "Hewlett-Packard" + ] +} diff --git a/data/software/ex/extempore.json b/data/software/ex/extempore.json new file mode 100644 index 000000000000..c94b71c47b8a --- /dev/null +++ b/data/software/ex/extempore.json @@ -0,0 +1,8 @@ +{ + "slug": "extempore", + "name": "Extempore", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q19865096" + ] +} diff --git a/data/software/ex/extensible-computational-chemistry-environment.json b/data/software/ex/extensible-computational-chemistry-environment.json new file mode 100644 index 000000000000..f35d463a0925 --- /dev/null +++ b/data/software/ex/extensible-computational-chemistry-environment.json @@ -0,0 +1,11 @@ +{ + "slug": "extensible-computational-chemistry-environment", + "name": "Extensible Computational Chemistry Environment", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5421920" + ], + "developers": [ + "Pacific Northwest National Laboratory" + ] +} diff --git a/data/software/ex/extensible-server-pages.json b/data/software/ex/extensible-server-pages.json new file mode 100644 index 000000000000..3c755320a444 --- /dev/null +++ b/data/software/ex/extensible-server-pages.json @@ -0,0 +1,8 @@ +{ + "slug": "extensible-server-pages", + "name": "eXtensible Server Pages", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1384967" + ] +} diff --git a/data/software/ex/extensible-text-framework.json b/data/software/ex/extensible-text-framework.json new file mode 100644 index 000000000000..18428b506a8b --- /dev/null +++ b/data/software/ex/extensible-text-framework.json @@ -0,0 +1,11 @@ +{ + "slug": "extensible-text-framework", + "name": "eXtensible Text Framework", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16937575" + ], + "developers": [ + "California Digital Library" + ] +} diff --git a/data/software/ex/extenxls.json b/data/software/ex/extenxls.json new file mode 100644 index 000000000000..3ba4c94cf6fd --- /dev/null +++ b/data/software/ex/extenxls.json @@ -0,0 +1,8 @@ +{ + "slug": "extenxls", + "name": "ExtenXLS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5421798" + ] +} diff --git a/data/software/ex/extreme-loading-for-structures.json b/data/software/ex/extreme-loading-for-structures.json new file mode 100644 index 000000000000..149911975f3d --- /dev/null +++ b/data/software/ex/extreme-loading-for-structures.json @@ -0,0 +1,11 @@ +{ + "slug": "extreme-loading-for-structures", + "name": "Extreme Loading for Structures", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5422337" + ], + "developers": [ + "Applied Science International" + ] +} diff --git a/data/software/ex/extremedb.json b/data/software/ex/extremedb.json new file mode 100644 index 000000000000..d44731c14a73 --- /dev/null +++ b/data/software/ex/extremedb.json @@ -0,0 +1,8 @@ +{ + "slug": "extremedb", + "name": "eXtremeDB", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5324736" + ] +} diff --git a/data/software/ex/extremez-ip.json b/data/software/ex/extremez-ip.json new file mode 100644 index 000000000000..44021bb06e89 --- /dev/null +++ b/data/software/ex/extremez-ip.json @@ -0,0 +1,11 @@ +{ + "slug": "extremez-ip", + "name": "ExtremeZ-IP", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5422306" + ], + "developers": [ + "GroupLogic" + ] +} diff --git a/data/software/ex/extromatica-network-monitor.json b/data/software/ex/extromatica-network-monitor.json new file mode 100644 index 000000000000..461e44f7f316 --- /dev/null +++ b/data/software/ex/extromatica-network-monitor.json @@ -0,0 +1,8 @@ +{ + "slug": "extromatica-network-monitor", + "name": "Extromatica Network Monitor", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5422486" + ] +} diff --git a/data/software/ey/eye-sys.json b/data/software/ey/eye-sys.json new file mode 100644 index 000000000000..533e7edb74bd --- /dev/null +++ b/data/software/ey/eye-sys.json @@ -0,0 +1,8 @@ +{ + "slug": "eye-sys", + "name": "Eye-Sys", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5422581" + ] +} diff --git a/data/software/ey/eyeball-chat.json b/data/software/ey/eyeball-chat.json new file mode 100644 index 000000000000..43a796da5ee3 --- /dev/null +++ b/data/software/ey/eyeball-chat.json @@ -0,0 +1,8 @@ +{ + "slug": "eyeball-chat", + "name": "Eyeball Chat", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5422742" + ] +} diff --git a/data/software/ey/eyegroove.json b/data/software/ey/eyegroove.json new file mode 100644 index 000000000000..7bd976bb7224 --- /dev/null +++ b/data/software/ey/eyegroove.json @@ -0,0 +1,8 @@ +{ + "slug": "eyegroove", + "name": "Eyegroove", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q65072619" + ] +} diff --git a/data/software/ez/ezf-advance.json b/data/software/ez/ezf-advance.json new file mode 100644 index 000000000000..e3bf5f8563dc --- /dev/null +++ b/data/software/ez/ezf-advance.json @@ -0,0 +1,8 @@ +{ + "slug": "ezf-advance", + "name": "EZF Advance", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10478875" + ] +} diff --git a/data/software/ez/ezhtml.json b/data/software/ez/ezhtml.json new file mode 100644 index 000000000000..930a669f1a86 --- /dev/null +++ b/data/software/ez/ezhtml.json @@ -0,0 +1,8 @@ +{ + "slug": "ezhtml", + "name": "EzHTML", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q9257211" + ] +} diff --git a/data/software/ez/ezlinavis.json b/data/software/ez/ezlinavis.json new file mode 100644 index 000000000000..067b91e3bf6d --- /dev/null +++ b/data/software/ez/ezlinavis.json @@ -0,0 +1,15 @@ +{ + "slug": "ezlinavis", + "name": "ezlinavis", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084932" + ], + "developers": [ + "Carsten Milling", + "Frank Fischer" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/ez/ezmol.json b/data/software/ez/ezmol.json new file mode 100644 index 000000000000..50343c9f84f9 --- /dev/null +++ b/data/software/ez/ezmol.json @@ -0,0 +1,8 @@ +{ + "slug": "ezmol", + "name": "EzMol", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q55611316" + ] +} diff --git a/data/software/ez/ezproxy.json b/data/software/ez/ezproxy.json new file mode 100644 index 000000000000..bd71e7cd3b6e --- /dev/null +++ b/data/software/ez/ezproxy.json @@ -0,0 +1,11 @@ +{ + "slug": "ezproxy", + "name": "EZproxy", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5324770" + ], + "developers": [ + "OCLC, Inc." + ] +} diff --git a/data/software/ez/ezstream.json b/data/software/ez/ezstream.json new file mode 100644 index 000000000000..17a51f94dedc --- /dev/null +++ b/data/software/ez/ezstream.json @@ -0,0 +1,8 @@ +{ + "slug": "ezstream", + "name": "Ezstream", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110473988" + ] +} diff --git a/data/software/f-/f-lux.json b/data/software/f-/f-lux.json new file mode 100644 index 000000000000..9a5d98fb9ea3 --- /dev/null +++ b/data/software/f-/f-lux.json @@ -0,0 +1,20 @@ +{ + "slug": "f-lux", + "name": "f.lux", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5424140" + ], + "release_date": "2009-01-01", + "developers": [ + "Michael Herf" + ], + "operating_systems": [ + "iOS", + "macOS", + "Microsoft Windows" + ], + "licenses": [ + "end-user license agreement" + ] +} diff --git a/data/software/f-/f-o-x.json b/data/software/f-/f-o-x.json new file mode 100644 index 000000000000..0be94f930232 --- /dev/null +++ b/data/software/f-/f-o-x.json @@ -0,0 +1,8 @@ +{ + "slug": "f-o-x", + "name": "F.O.X.", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125093234" + ] +} diff --git a/data/software/f4/f4analyse.json b/data/software/f4/f4analyse.json new file mode 100644 index 000000000000..37b660f01005 --- /dev/null +++ b/data/software/f4/f4analyse.json @@ -0,0 +1,15 @@ +{ + "slug": "f4analyse", + "name": "f4analyse", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105229745" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/f4/f4transkript.json b/data/software/f4/f4transkript.json new file mode 100644 index 000000000000..4702f266d67e --- /dev/null +++ b/data/software/f4/f4transkript.json @@ -0,0 +1,15 @@ +{ + "slug": "f4transkript", + "name": "f4transkript", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105076384" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/f9/f9-financial-reporting.json b/data/software/f9/f9-financial-reporting.json new file mode 100644 index 000000000000..082e2e6600bd --- /dev/null +++ b/data/software/f9/f9-financial-reporting.json @@ -0,0 +1,8 @@ +{ + "slug": "f9-financial-reporting", + "name": "F9 Financial Reporting", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5424269" + ] +} diff --git a/data/software/fa/faac.json b/data/software/fa/faac.json new file mode 100644 index 000000000000..45d0e73d7650 --- /dev/null +++ b/data/software/fa/faac.json @@ -0,0 +1,16 @@ +{ + "slug": "faac", + "name": "FAAC", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5424275" + ], + "operating_systems": [ + "FreeBSD", + "macOS" + ], + "licenses": [ + "GNU Lesser General Public License, version 2.1 or later", + "GNU Library General Public License, version 2.0" + ] +} diff --git a/data/software/fa/fabasoft-egov-suite.json b/data/software/fa/fabasoft-egov-suite.json new file mode 100644 index 000000000000..2381469b537a --- /dev/null +++ b/data/software/fa/fabasoft-egov-suite.json @@ -0,0 +1,8 @@ +{ + "slug": "fabasoft-egov-suite", + "name": "Fabasoft eGov-Suite", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1133619" + ] +} diff --git a/data/software/fa/fabasoft-folio-cloud.json b/data/software/fa/fabasoft-folio-cloud.json new file mode 100644 index 000000000000..302b6b7f887e --- /dev/null +++ b/data/software/fa/fabasoft-folio-cloud.json @@ -0,0 +1,8 @@ +{ + "slug": "fabasoft-folio-cloud", + "name": "Fabasoft Folio Cloud", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1133530" + ] +} diff --git a/data/software/fa/facadecolorizer.json b/data/software/fa/facadecolorizer.json new file mode 100644 index 000000000000..45b5be51ce12 --- /dev/null +++ b/data/software/fa/facadecolorizer.json @@ -0,0 +1,11 @@ +{ + "slug": "facadecolorizer", + "name": "FacadeColorizer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139589296" + ], + "developers": [ + "Hugo Dumoulin" + ] +} diff --git a/data/software/fa/face-of-the-future.json b/data/software/fa/face-of-the-future.json new file mode 100644 index 000000000000..ac84fc5015f6 --- /dev/null +++ b/data/software/fa/face-of-the-future.json @@ -0,0 +1,11 @@ +{ + "slug": "face-of-the-future", + "name": "Face of the Future", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q39048434" + ], + "developers": [ + "University of St Andrews" + ] +} diff --git a/data/software/fa/face-swap-live.json b/data/software/fa/face-swap-live.json new file mode 100644 index 000000000000..1c70486ad24c --- /dev/null +++ b/data/software/fa/face-swap-live.json @@ -0,0 +1,9 @@ +{ + "slug": "face-swap-live", + "name": "Face Swap Live", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q55264370" + ], + "release_date": "2015-12-14" +} diff --git a/data/software/fa/facebook-home.json b/data/software/fa/facebook-home.json new file mode 100644 index 000000000000..3a57e3d583d0 --- /dev/null +++ b/data/software/fa/facebook-home.json @@ -0,0 +1,12 @@ +{ + "slug": "facebook-home", + "name": "Facebook Home", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10630551" + ], + "release_date": "2013-04-12", + "developers": [ + "Meta" + ] +} diff --git a/data/software/fa/facebook-paper.json b/data/software/fa/facebook-paper.json new file mode 100644 index 000000000000..2c709f15d1df --- /dev/null +++ b/data/software/fa/facebook-paper.json @@ -0,0 +1,8 @@ +{ + "slug": "facebook-paper", + "name": "Facebook Paper", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16927686" + ] +} diff --git a/data/software/fa/facebook-room.json b/data/software/fa/facebook-room.json new file mode 100644 index 000000000000..8ee0098f2f7c --- /dev/null +++ b/data/software/fa/facebook-room.json @@ -0,0 +1,8 @@ +{ + "slug": "facebook-room", + "name": "Facebook Room", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q97959542" + ] +} diff --git a/data/software/fa/facebook-slingshot.json b/data/software/fa/facebook-slingshot.json new file mode 100644 index 000000000000..45e71ff02424 --- /dev/null +++ b/data/software/fa/facebook-slingshot.json @@ -0,0 +1,8 @@ +{ + "slug": "facebook-slingshot", + "name": "Facebook Slingshot", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18149779" + ] +} diff --git a/data/software/fa/facefx.json b/data/software/fa/facefx.json new file mode 100644 index 000000000000..6bf827b20f57 --- /dev/null +++ b/data/software/fa/facefx.json @@ -0,0 +1,8 @@ +{ + "slug": "facefx", + "name": "FaceFX", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4038567" + ] +} diff --git a/data/software/fa/facepager.json b/data/software/fa/facepager.json new file mode 100644 index 000000000000..44ea42961899 --- /dev/null +++ b/data/software/fa/facepager.json @@ -0,0 +1,8 @@ +{ + "slug": "facepager", + "name": "Facepager", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087804" + ] +} diff --git a/data/software/fa/facerig.json b/data/software/fa/facerig.json new file mode 100644 index 000000000000..a6235d851d89 --- /dev/null +++ b/data/software/fa/facerig.json @@ -0,0 +1,9 @@ +{ + "slug": "facerig", + "name": "FaceRig", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18417130" + ], + "release_date": "2015-07-07" +} diff --git a/data/software/fa/facetune.json b/data/software/fa/facetune.json new file mode 100644 index 000000000000..7717ee7286ca --- /dev/null +++ b/data/software/fa/facetune.json @@ -0,0 +1,9 @@ +{ + "slug": "facetune", + "name": "Facetune", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16972003" + ], + "release_date": "2013-03-06" +} diff --git a/data/software/fa/facsys.json b/data/software/fa/facsys.json new file mode 100644 index 000000000000..2f1668d1e05c --- /dev/null +++ b/data/software/fa/facsys.json @@ -0,0 +1,8 @@ +{ + "slug": "facsys", + "name": "FACSys", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5424311" + ] +} diff --git a/data/software/fa/facter.json b/data/software/fa/facter.json new file mode 100644 index 000000000000..7cb09ce9264b --- /dev/null +++ b/data/software/fa/facter.json @@ -0,0 +1,11 @@ +{ + "slug": "facter", + "name": "facter", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974836" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/fa/factory-i-o.json b/data/software/fa/factory-i-o.json new file mode 100644 index 000000000000..b5820793c0cf --- /dev/null +++ b/data/software/fa/factory-i-o.json @@ -0,0 +1,8 @@ +{ + "slug": "factory-i-o", + "name": "Factory I/O", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110788023" + ] +} diff --git a/data/software/fa/factotum.json b/data/software/fa/factotum.json new file mode 100644 index 000000000000..abb295c9d243 --- /dev/null +++ b/data/software/fa/factotum.json @@ -0,0 +1,11 @@ +{ + "slug": "factotum", + "name": "factotum", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5428799" + ], + "operating_systems": [ + "Plan 9" + ] +} diff --git a/data/software/fa/factuchat.json b/data/software/fa/factuchat.json new file mode 100644 index 000000000000..28876939887a --- /dev/null +++ b/data/software/fa/factuchat.json @@ -0,0 +1,22 @@ +{ + "slug": "factuchat", + "name": "FactuChat", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138773962" + ], + "operating_systems": [ + "iOS", + "macOS", + "Microsoft Windows" + ], + "programming_languages": [ + "Python" + ], + "licenses": [ + "proprietary license" + ], + "genres": [ + "Invoicing system" + ] +} diff --git a/data/software/fa/facturascripts.json b/data/software/fa/facturascripts.json new file mode 100644 index 000000000000..c864c880a942 --- /dev/null +++ b/data/software/fa/facturascripts.json @@ -0,0 +1,8 @@ +{ + "slug": "facturascripts", + "name": "FacturaScripts", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q21002073" + ] +} diff --git a/data/software/fa/facultyfiles.json b/data/software/fa/facultyfiles.json new file mode 100644 index 000000000000..4fc2463058bb --- /dev/null +++ b/data/software/fa/facultyfiles.json @@ -0,0 +1,8 @@ +{ + "slug": "facultyfiles", + "name": "FacultyFiles", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084955" + ] +} diff --git a/data/software/fa/fade-in.json b/data/software/fa/fade-in.json new file mode 100644 index 000000000000..d8ea5868cabd --- /dev/null +++ b/data/software/fa/fade-in.json @@ -0,0 +1,12 @@ +{ + "slug": "fade-in", + "name": "Fade In", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q20712368" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/software/fa/fade.json b/data/software/fa/fade.json new file mode 100644 index 000000000000..ffedead82017 --- /dev/null +++ b/data/software/fa/fade.json @@ -0,0 +1,11 @@ +{ + "slug": "fade", + "name": "FADE", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4038503" + ], + "developers": [ + "Codemasters" + ] +} diff --git a/data/software/fa/faerun.json b/data/software/fa/faerun.json new file mode 100644 index 000000000000..d65c17562dad --- /dev/null +++ b/data/software/fa/faerun.json @@ -0,0 +1,8 @@ +{ + "slug": "faerun", + "name": "faerun", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112338962" + ] +} diff --git a/data/software/fa/faims-mobile-platform.json b/data/software/fa/faims-mobile-platform.json new file mode 100644 index 000000000000..ba29fca537b9 --- /dev/null +++ b/data/software/fa/faims-mobile-platform.json @@ -0,0 +1,11 @@ +{ + "slug": "faims-mobile-platform", + "name": "FAIMS Mobile Platform", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084956" + ], + "operating_systems": [ + "iOS" + ] +} diff --git a/data/software/fa/fairmat.json b/data/software/fa/fairmat.json new file mode 100644 index 000000000000..7f9df944a957 --- /dev/null +++ b/data/software/fa/fairmat.json @@ -0,0 +1,8 @@ +{ + "slug": "fairmat", + "name": "Fairmat", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5430565" + ] +} diff --git a/data/software/fa/fakechroot.json b/data/software/fa/fakechroot.json new file mode 100644 index 000000000000..7be3543f4885 --- /dev/null +++ b/data/software/fa/fakechroot.json @@ -0,0 +1,8 @@ +{ + "slug": "fakechroot", + "name": "fakechroot", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62849173" + ] +} diff --git a/data/software/fa/fakeroot.json b/data/software/fa/fakeroot.json new file mode 100644 index 000000000000..1ac4f6e10437 --- /dev/null +++ b/data/software/fa/fakeroot.json @@ -0,0 +1,11 @@ +{ + "slug": "fakeroot", + "name": "fakeroot", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62849198" + ], + "licenses": [ + "GNU General Public License, version 3.0" + ] +} diff --git a/data/software/fa/faktur-lu.json b/data/software/fa/faktur-lu.json new file mode 100644 index 000000000000..52f6ac32ed55 --- /dev/null +++ b/data/software/fa/faktur-lu.json @@ -0,0 +1,8 @@ +{ + "slug": "faktur-lu", + "name": "faktur.lu", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139674760" + ] +} diff --git a/data/software/fa/fakturia.json b/data/software/fa/fakturia.json new file mode 100644 index 000000000000..7d95a031de64 --- /dev/null +++ b/data/software/fa/fakturia.json @@ -0,0 +1,9 @@ +{ + "slug": "fakturia", + "name": "Fakturia", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139943876" + ], + "release_date": "2016-01-01" +} diff --git a/data/software/fa/falc.json b/data/software/fa/falc.json new file mode 100644 index 000000000000..458439605d8e --- /dev/null +++ b/data/software/fa/falc.json @@ -0,0 +1,8 @@ +{ + "slug": "falc", + "name": "FALC", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121462981" + ] +} diff --git a/data/software/fa/falcon-180b.json b/data/software/fa/falcon-180b.json new file mode 100644 index 000000000000..0297d07cf1e3 --- /dev/null +++ b/data/software/fa/falcon-180b.json @@ -0,0 +1,8 @@ +{ + "slug": "falcon-180b", + "name": "Falcon 180B", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124713322" + ] +} diff --git a/data/software/fa/falconview.json b/data/software/fa/falconview.json new file mode 100644 index 000000000000..66ac10afaf3e --- /dev/null +++ b/data/software/fa/falconview.json @@ -0,0 +1,16 @@ +{ + "slug": "falconview", + "name": "FalconView", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5431723" + ], + "release_date": "1994-01-01", + "developers": [ + "Georgia Tech Research Institute" + ], + "operating_systems": [ + "iOS", + "Microsoft Windows" + ] +} diff --git a/data/software/fa/falf-player.json b/data/software/fa/falf-player.json new file mode 100644 index 000000000000..b2bfc7865d4b --- /dev/null +++ b/data/software/fa/falf-player.json @@ -0,0 +1,11 @@ +{ + "slug": "falf-player", + "name": "FALF Player", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11985805" + ], + "operating_systems": [ + "Unix-like operating system" + ] +} diff --git a/data/software/fa/family-sharing.json b/data/software/fa/family-sharing.json new file mode 100644 index 000000000000..db4f6fbae135 --- /dev/null +++ b/data/software/fa/family-sharing.json @@ -0,0 +1,8 @@ +{ + "slug": "family-sharing", + "name": "Family Sharing", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q65067102" + ] +} diff --git a/data/software/fa/family-tree-maker-10.json b/data/software/fa/family-tree-maker-10.json new file mode 100644 index 000000000000..73f3c72c1c4d --- /dev/null +++ b/data/software/fa/family-tree-maker-10.json @@ -0,0 +1,12 @@ +{ + "slug": "family-tree-maker-10", + "name": "Family Tree Maker 10", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q64859017" + ], + "release_date": "2002-09-01", + "developers": [ + "genealogy.com" + ] +} diff --git a/data/software/fa/famitracker.json b/data/software/fa/famitracker.json new file mode 100644 index 000000000000..18dea018468f --- /dev/null +++ b/data/software/fa/famitracker.json @@ -0,0 +1,11 @@ +{ + "slug": "famitracker", + "name": "FamiTracker", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22582305" + ], + "licenses": [ + "GNU General Public License" + ] +} diff --git a/data/software/fa/famulus.json b/data/software/fa/famulus.json new file mode 100644 index 000000000000..39150d0533bf --- /dev/null +++ b/data/software/fa/famulus.json @@ -0,0 +1,12 @@ +{ + "slug": "famulus", + "name": "FAMULUS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q59593930" + ], + "developers": [ + "Miloš Sobotka", + "Leoš Dvořák" + ] +} diff --git a/data/software/fa/fangorn.json b/data/software/fa/fangorn.json new file mode 100644 index 000000000000..57808588eb43 --- /dev/null +++ b/data/software/fa/fangorn.json @@ -0,0 +1,8 @@ +{ + "slug": "fangorn", + "name": "FANGORN", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087805" + ] +} diff --git a/data/software/fa/fantamorph.json b/data/software/fa/fantamorph.json new file mode 100644 index 000000000000..705e97f7ae16 --- /dev/null +++ b/data/software/fa/fantamorph.json @@ -0,0 +1,8 @@ +{ + "slug": "fantamorph", + "name": "FantaMorph", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5434106" + ] +} diff --git a/data/software/fa/fantastico.json b/data/software/fa/fantastico.json new file mode 100644 index 000000000000..1b6b96f26c3f --- /dev/null +++ b/data/software/fa/fantastico.json @@ -0,0 +1,8 @@ +{ + "slug": "fantastico", + "name": "Fantastico", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1397488" + ] +} diff --git a/data/software/fa/fantoir-datasource.json b/data/software/fa/fantoir-datasource.json new file mode 100644 index 000000000000..87a2c3f232f7 --- /dev/null +++ b/data/software/fa/fantoir-datasource.json @@ -0,0 +1,14 @@ +{ + "slug": "fantoir-datasource", + "name": "fantoir-datasource", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116205103" + ], + "publishers": [ + "Nasqueron" + ], + "licenses": [ + "2-clause BSD License" + ] +} diff --git a/data/software/fa/fanurio.json b/data/software/fa/fanurio.json new file mode 100644 index 000000000000..fe85ca456136 --- /dev/null +++ b/data/software/fa/fanurio.json @@ -0,0 +1,8 @@ +{ + "slug": "fanurio", + "name": "Fanurio", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5434418" + ] +} diff --git a/data/software/fa/fao-country-profiles.json b/data/software/fa/fao-country-profiles.json new file mode 100644 index 000000000000..1f89a477b2b3 --- /dev/null +++ b/data/software/fa/fao-country-profiles.json @@ -0,0 +1,11 @@ +{ + "slug": "fao-country-profiles", + "name": "FAO Country Profiles", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5424440" + ], + "developers": [ + "Food and Agriculture Organization of the United Nations" + ] +} diff --git a/data/software/fa/far-play.json b/data/software/fa/far-play.json new file mode 100644 index 000000000000..df99c694f2b0 --- /dev/null +++ b/data/software/fa/far-play.json @@ -0,0 +1,12 @@ +{ + "slug": "far-play", + "name": "Far-Play", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17013184" + ], + "release_date": "2008-01-01", + "programming_languages": [ + "PHP" + ] +} diff --git a/data/software/fa/farfield.json b/data/software/fa/farfield.json new file mode 100644 index 000000000000..b14a6fd3f597 --- /dev/null +++ b/data/software/fa/farfield.json @@ -0,0 +1,8 @@ +{ + "slug": "farfield", + "name": "Farfield", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139964415" + ] +} diff --git a/data/software/fa/farplay.json b/data/software/fa/farplay.json new file mode 100644 index 000000000000..4ab3aef8c4f5 --- /dev/null +++ b/data/software/fa/farplay.json @@ -0,0 +1,8 @@ +{ + "slug": "farplay", + "name": "FarPlay", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130601811" + ] +} diff --git a/data/software/fa/farpoint-spread.json b/data/software/fa/farpoint-spread.json new file mode 100644 index 000000000000..8b201fd59b55 --- /dev/null +++ b/data/software/fa/farpoint-spread.json @@ -0,0 +1,12 @@ +{ + "slug": "farpoint-spread", + "name": "FarPoint Spread", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5434485" + ], + "release_date": "1991-01-01", + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/fa/fast-and-realistic-opengl-displayer.json b/data/software/fa/fast-and-realistic-opengl-displayer.json new file mode 100644 index 000000000000..96e9e8694af5 --- /dev/null +++ b/data/software/fa/fast-and-realistic-opengl-displayer.json @@ -0,0 +1,8 @@ +{ + "slug": "fast-and-realistic-opengl-displayer", + "name": "Fast and Realistic OpenGL Displayer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5437020" + ] +} diff --git a/data/software/fa/fast-hack-em.json b/data/software/fa/fast-hack-em.json new file mode 100644 index 000000000000..b9d360d1e4bf --- /dev/null +++ b/data/software/fa/fast-hack-em.json @@ -0,0 +1,8 @@ +{ + "slug": "fast-hack-em", + "name": "Fast Hack'em", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5436945" + ] +} diff --git a/data/software/fa/fast-library-for-approximate-nearest-neighbors.json b/data/software/fa/fast-library-for-approximate-nearest-neighbors.json new file mode 100644 index 000000000000..48738de5b61b --- /dev/null +++ b/data/software/fa/fast-library-for-approximate-nearest-neighbors.json @@ -0,0 +1,14 @@ +{ + "slug": "fast-library-for-approximate-nearest-neighbors", + "name": "Fast Library for Approximate Nearest Neighbors", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974849" + ], + "developers": [ + "Marius Muja" + ], + "licenses": [ + "3-clause BSD License" + ] +} diff --git a/data/software/fa/fast-metabolizer.json b/data/software/fa/fast-metabolizer.json new file mode 100644 index 000000000000..5e917cb80aee --- /dev/null +++ b/data/software/fa/fast-metabolizer.json @@ -0,0 +1,8 @@ +{ + "slug": "fast-metabolizer", + "name": "FAst MEtabolizer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72150105" + ] +} diff --git a/data/software/fa/fast-statistical-alignment.json b/data/software/fa/fast-statistical-alignment.json new file mode 100644 index 000000000000..11e9a2e82289 --- /dev/null +++ b/data/software/fa/fast-statistical-alignment.json @@ -0,0 +1,8 @@ +{ + "slug": "fast-statistical-alignment", + "name": "Fast statistical alignment", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5437052" + ] +} diff --git a/data/software/fa/fastback.json b/data/software/fa/fastback.json new file mode 100644 index 000000000000..4bee41af24c2 --- /dev/null +++ b/data/software/fa/fastback.json @@ -0,0 +1,11 @@ +{ + "slug": "fastback", + "name": "FastBack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5436869" + ], + "developers": [ + "Fifth Generation Systems" + ] +} diff --git a/data/software/fa/fastboot.json b/data/software/fa/fastboot.json new file mode 100644 index 000000000000..9d2aaab80701 --- /dev/null +++ b/data/software/fa/fastboot.json @@ -0,0 +1,11 @@ +{ + "slug": "fastboot", + "name": "fastboot", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11072391" + ], + "developers": [ + "Google" + ] +} diff --git a/data/software/fa/fastbridge.json b/data/software/fa/fastbridge.json new file mode 100644 index 000000000000..0c607922dde3 --- /dev/null +++ b/data/software/fa/fastbridge.json @@ -0,0 +1,11 @@ +{ + "slug": "fastbridge", + "name": "FastBridge", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139602748" + ], + "developers": [ + "Avail Deposits" + ] +} diff --git a/data/software/fa/fastcad.json b/data/software/fa/fastcad.json new file mode 100644 index 000000000000..78d1fb8926c8 --- /dev/null +++ b/data/software/fa/fastcad.json @@ -0,0 +1,11 @@ +{ + "slug": "fastcad", + "name": "FastCAD", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5436870" + ], + "developers": [ + "Evolution Computing" + ] +} diff --git a/data/software/fa/fastecho.json b/data/software/fa/fastecho.json new file mode 100644 index 000000000000..5b795067096d --- /dev/null +++ b/data/software/fa/fastecho.json @@ -0,0 +1,12 @@ +{ + "slug": "fastecho", + "name": "FastEcho", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5436877" + ], + "release_date": "1991-01-01", + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/fa/fasterfox.json b/data/software/fa/fasterfox.json new file mode 100644 index 000000000000..29d6c4bc58ae --- /dev/null +++ b/data/software/fa/fasterfox.json @@ -0,0 +1,8 @@ +{ + "slug": "fasterfox", + "name": "Fasterfox", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2370129" + ] +} diff --git a/data/software/fa/fastic.json b/data/software/fa/fastic.json new file mode 100644 index 000000000000..3fea017b1866 --- /dev/null +++ b/data/software/fa/fastic.json @@ -0,0 +1,12 @@ +{ + "slug": "fastic", + "name": "Fastic", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120441738" + ], + "release_date": "2019-01-01", + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/fa/fastik-io.json b/data/software/fa/fastik-io.json new file mode 100644 index 000000000000..887c841179a9 --- /dev/null +++ b/data/software/fa/fastik-io.json @@ -0,0 +1,8 @@ +{ + "slug": "fastik-io", + "name": "Fastik.io", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138786925" + ] +} diff --git a/data/software/fa/fastjar.json b/data/software/fa/fastjar.json new file mode 100644 index 000000000000..6989d2c840cb --- /dev/null +++ b/data/software/fa/fastjar.json @@ -0,0 +1,8 @@ +{ + "slug": "fastjar", + "name": "fastjar", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110474005" + ] +} diff --git a/data/software/fa/fastkwic.json b/data/software/fa/fastkwic.json new file mode 100644 index 000000000000..0b6215f921cc --- /dev/null +++ b/data/software/fa/fastkwic.json @@ -0,0 +1,8 @@ +{ + "slug": "fastkwic", + "name": "FastKwic", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087806" + ] +} diff --git a/data/software/fa/fastpass-sspr.json b/data/software/fa/fastpass-sspr.json new file mode 100644 index 000000000000..8e5a8289541a --- /dev/null +++ b/data/software/fa/fastpass-sspr.json @@ -0,0 +1,11 @@ +{ + "slug": "fastpass-sspr", + "name": "FastPass SSPR", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137612430" + ], + "developers": [ + "FastPassCorp" + ] +} diff --git a/data/software/fa/fastpcr.json b/data/software/fa/fastpcr.json new file mode 100644 index 000000000000..7e09ab4d35a0 --- /dev/null +++ b/data/software/fa/fastpcr.json @@ -0,0 +1,8 @@ +{ + "slug": "fastpcr", + "name": "FastPCR", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4038648" + ] +} diff --git a/data/software/fa/fastpoet.json b/data/software/fa/fastpoet.json new file mode 100644 index 000000000000..27ed6867a0eb --- /dev/null +++ b/data/software/fa/fastpoet.json @@ -0,0 +1,9 @@ +{ + "slug": "fastpoet", + "name": "FastPoet", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121599279" + ], + "release_date": "1992-01-01" +} diff --git a/data/software/fa/fastrad.json b/data/software/fa/fastrad.json new file mode 100644 index 000000000000..08349ff46e98 --- /dev/null +++ b/data/software/fa/fastrad.json @@ -0,0 +1,8 @@ +{ + "slug": "fastrad", + "name": "FASTRAD", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4038508" + ] +} diff --git a/data/software/fa/fastsense.json b/data/software/fa/fastsense.json new file mode 100644 index 000000000000..dfac778e233e --- /dev/null +++ b/data/software/fa/fastsense.json @@ -0,0 +1,8 @@ +{ + "slug": "fastsense", + "name": "FastSense", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084957" + ] +} diff --git a/data/software/fa/fasttrack-schedule.json b/data/software/fa/fasttrack-schedule.json new file mode 100644 index 000000000000..bea3e5191909 --- /dev/null +++ b/data/software/fa/fasttrack-schedule.json @@ -0,0 +1,8 @@ +{ + "slug": "fasttrack-schedule", + "name": "FastTrack Schedule", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1397625" + ] +} diff --git a/data/software/fa/fatbooth.json b/data/software/fa/fatbooth.json new file mode 100644 index 000000000000..954d782157c0 --- /dev/null +++ b/data/software/fa/fatbooth.json @@ -0,0 +1,9 @@ +{ + "slug": "fatbooth", + "name": "FatBooth", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17013304" + ], + "release_date": "2010-05-01" +} diff --git a/data/software/fa/fatfs.json b/data/software/fa/fatfs.json new file mode 100644 index 000000000000..852d0cb1dc1b --- /dev/null +++ b/data/software/fa/fatfs.json @@ -0,0 +1,8 @@ +{ + "slug": "fatfs", + "name": "FatFs", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109424206" + ] +} diff --git a/data/software/fa/favro.json b/data/software/fa/favro.json new file mode 100644 index 000000000000..8b7a3868af3c --- /dev/null +++ b/data/software/fa/favro.json @@ -0,0 +1,8 @@ +{ + "slug": "favro", + "name": "Favro", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q27650831" + ] +} diff --git a/data/software/fa/fawkes.json b/data/software/fa/fawkes.json new file mode 100644 index 000000000000..8af00c4de71b --- /dev/null +++ b/data/software/fa/fawkes.json @@ -0,0 +1,8 @@ +{ + "slug": "fawkes", + "name": "Fawkes", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107070627" + ] +} diff --git a/data/software/fa/faxman.json b/data/software/fa/faxman.json new file mode 100644 index 000000000000..cba7b3eaa447 --- /dev/null +++ b/data/software/fa/faxman.json @@ -0,0 +1,8 @@ +{ + "slug": "faxman", + "name": "FAXman", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121631730" + ] +} diff --git a/data/software/fa/fayedu.json b/data/software/fa/fayedu.json new file mode 100644 index 000000000000..a2fdb2226a31 --- /dev/null +++ b/data/software/fa/fayedu.json @@ -0,0 +1,8 @@ +{ + "slug": "fayedu", + "name": "FayEDU", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139770422" + ] +} diff --git a/data/software/fb/fbb.json b/data/software/fb/fbb.json new file mode 100644 index 000000000000..83e3c5980900 --- /dev/null +++ b/data/software/fb/fbb.json @@ -0,0 +1,11 @@ +{ + "slug": "fbb", + "name": "FBB", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3062993" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/fb/fbg.json b/data/software/fb/fbg.json new file mode 100644 index 000000000000..23e4a02e5974 --- /dev/null +++ b/data/software/fb/fbg.json @@ -0,0 +1,8 @@ +{ + "slug": "fbg", + "name": "fbg", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065037" + ] +} diff --git a/data/software/fb/fbgemm.json b/data/software/fb/fbgemm.json new file mode 100644 index 000000000000..4c697c069735 --- /dev/null +++ b/data/software/fb/fbgemm.json @@ -0,0 +1,11 @@ +{ + "slug": "fbgemm", + "name": "fbgemm", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115729437" + ], + "developers": [ + "Jongsoo Park" + ] +} diff --git a/data/software/fb/fbida.json b/data/software/fb/fbida.json new file mode 100644 index 000000000000..bdeeab9f0f2f --- /dev/null +++ b/data/software/fb/fbida.json @@ -0,0 +1,11 @@ +{ + "slug": "fbida", + "name": "fbida", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974839" + ], + "licenses": [ + "GNU General Public License, version 2.0" + ] +} diff --git a/data/software/fb/fbless.json b/data/software/fb/fbless.json new file mode 100644 index 000000000000..59a3c0322ec5 --- /dev/null +++ b/data/software/fb/fbless.json @@ -0,0 +1,8 @@ +{ + "slug": "fbless", + "name": "fbless", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974840" + ] +} diff --git a/data/software/fc/fcitx-sayura.json b/data/software/fc/fcitx-sayura.json new file mode 100644 index 000000000000..64d5c62341c6 --- /dev/null +++ b/data/software/fc/fcitx-sayura.json @@ -0,0 +1,8 @@ +{ + "slug": "fcitx-sayura", + "name": "fcitx-sayura", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28465737" + ] +} diff --git a/data/software/fc/fcl.json b/data/software/fc/fcl.json new file mode 100644 index 000000000000..cec5b406c123 --- /dev/null +++ b/data/software/fc/fcl.json @@ -0,0 +1,14 @@ +{ + "slug": "fcl", + "name": "fcl", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974843" + ], + "developers": [ + "Jeongseok Lee" + ], + "licenses": [ + "3-clause BSD License" + ] +} diff --git a/data/software/fc/fcrackzip.json b/data/software/fc/fcrackzip.json new file mode 100644 index 000000000000..23997137e5b7 --- /dev/null +++ b/data/software/fc/fcrackzip.json @@ -0,0 +1,8 @@ +{ + "slug": "fcrackzip", + "name": "fcrackzip", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62849652" + ] +} diff --git a/data/software/fd/fdfmerge.json b/data/software/fd/fdfmerge.json new file mode 100644 index 000000000000..f8eaf009a281 --- /dev/null +++ b/data/software/fd/fdfmerge.json @@ -0,0 +1,8 @@ +{ + "slug": "fdfmerge", + "name": "FDFMerge", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122705371" + ] +} diff --git a/data/software/fd/fdmnes.json b/data/software/fd/fdmnes.json new file mode 100644 index 000000000000..c837e5dd855d --- /dev/null +++ b/data/software/fd/fdmnes.json @@ -0,0 +1,8 @@ +{ + "slug": "fdmnes", + "name": "FDMNES", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q661137" + ] +} diff --git a/data/software/fd/fdr.json b/data/software/fd/fdr.json new file mode 100644 index 000000000000..641cd7cd865b --- /dev/null +++ b/data/software/fd/fdr.json @@ -0,0 +1,18 @@ +{ + "slug": "fdr", + "name": "FDR", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5425291" + ], + "developers": [ + "University of Oxford" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/fe/feat.json b/data/software/fe/feat.json new file mode 100644 index 000000000000..8dbad0714569 --- /dev/null +++ b/data/software/fe/feat.json @@ -0,0 +1,8 @@ +{ + "slug": "feat", + "name": "FEAT", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112074142" + ] +} diff --git a/data/software/fe/featherpad.json b/data/software/fe/featherpad.json new file mode 100644 index 000000000000..352a7a8da83e --- /dev/null +++ b/data/software/fe/featherpad.json @@ -0,0 +1,8 @@ +{ + "slug": "featherpad", + "name": "FeatherPad", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q78908533" + ] +} diff --git a/data/software/fe/featureflip.json b/data/software/fe/featureflip.json new file mode 100644 index 000000000000..a4d8ed680e9e --- /dev/null +++ b/data/software/fe/featureflip.json @@ -0,0 +1,14 @@ +{ + "slug": "featureflip", + "name": "Featureflip", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139003903" + ], + "developers": [ + "Canopy Labs" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/fe/fedena.json b/data/software/fe/fedena.json new file mode 100644 index 000000000000..74c8228469db --- /dev/null +++ b/data/software/fe/fedena.json @@ -0,0 +1,14 @@ +{ + "slug": "fedena", + "name": "Fedena", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5439928" + ], + "developers": [ + "Foradian" + ], + "licenses": [ + "Apache License" + ] +} diff --git a/data/software/fe/federated-learning-of-cohorts.json b/data/software/fe/federated-learning-of-cohorts.json new file mode 100644 index 000000000000..5b1b9b5ef7e8 --- /dev/null +++ b/data/software/fe/federated-learning-of-cohorts.json @@ -0,0 +1,12 @@ +{ + "slug": "federated-learning-of-cohorts", + "name": "Federated Learning of Cohorts", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106522497" + ], + "licenses": [ + "3-clause BSD License", + "W3C Software License" + ] +} diff --git a/data/software/fe/fedibird.json b/data/software/fe/fedibird.json new file mode 100644 index 000000000000..53bdce2786c9 --- /dev/null +++ b/data/software/fe/fedibird.json @@ -0,0 +1,8 @@ +{ + "slug": "fedibird", + "name": "Fedibird", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124099239" + ] +} diff --git a/data/software/fe/feed-over-e-mail.json b/data/software/fe/feed-over-e-mail.json new file mode 100644 index 000000000000..3eb959deebd9 --- /dev/null +++ b/data/software/fe/feed-over-e-mail.json @@ -0,0 +1,8 @@ +{ + "slug": "feed-over-e-mail", + "name": "Feed Over E-mail", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10847154" + ] +} diff --git a/data/software/fe/feed-viewer.json b/data/software/fe/feed-viewer.json new file mode 100644 index 000000000000..1027427707a5 --- /dev/null +++ b/data/software/fe/feed-viewer.json @@ -0,0 +1,11 @@ +{ + "slug": "feed-viewer", + "name": "Feed Viewer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18150680" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/fe/feedback-hub.json b/data/software/fe/feedback-hub.json new file mode 100644 index 000000000000..2ba67ffa6e59 --- /dev/null +++ b/data/software/fe/feedback-hub.json @@ -0,0 +1,8 @@ +{ + "slug": "feedback-hub", + "name": "Feedback Hub", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28448991" + ] +} diff --git a/data/software/fe/feedity.json b/data/software/fe/feedity.json new file mode 100644 index 000000000000..121ad988e02e --- /dev/null +++ b/data/software/fe/feedity.json @@ -0,0 +1,8 @@ +{ + "slug": "feedity", + "name": "Feedity", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084958" + ] +} diff --git a/data/software/fe/feff.json b/data/software/fe/feff.json new file mode 100644 index 000000000000..f786cb4c7a57 --- /dev/null +++ b/data/software/fe/feff.json @@ -0,0 +1,11 @@ +{ + "slug": "feff", + "name": "FEFF", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5425326" + ], + "programming_languages": [ + "Fortran" + ] +} diff --git a/data/software/fe/feishu.json b/data/software/fe/feishu.json new file mode 100644 index 000000000000..d45ccdc160a0 --- /dev/null +++ b/data/software/fe/feishu.json @@ -0,0 +1,8 @@ +{ + "slug": "feishu", + "name": "Feishu", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109342779" + ] +} diff --git a/data/software/fe/feko.json b/data/software/fe/feko.json new file mode 100644 index 000000000000..86da9c8158c4 --- /dev/null +++ b/data/software/fe/feko.json @@ -0,0 +1,14 @@ +{ + "slug": "feko", + "name": "FEKO", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5425337" + ], + "developers": [ + "Altair Engineering" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/fe/feldpartitur.json b/data/software/fe/feldpartitur.json new file mode 100644 index 000000000000..c1e38c468eb9 --- /dev/null +++ b/data/software/fe/feldpartitur.json @@ -0,0 +1,15 @@ +{ + "slug": "feldpartitur", + "name": "Feldpartitur", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105076385" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/fe/felix.json b/data/software/fe/felix.json new file mode 100644 index 000000000000..98adc5204dbe --- /dev/null +++ b/data/software/fe/felix.json @@ -0,0 +1,11 @@ +{ + "slug": "felix", + "name": "Felix", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q24897315" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/fe/felsius.json b/data/software/fe/felsius.json new file mode 100644 index 000000000000..5258914105b1 --- /dev/null +++ b/data/software/fe/felsius.json @@ -0,0 +1,8 @@ +{ + "slug": "felsius", + "name": "Felsius", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138497112" + ] +} diff --git a/data/software/fe/felt.json b/data/software/fe/felt.json new file mode 100644 index 000000000000..213af9350088 --- /dev/null +++ b/data/software/fe/felt.json @@ -0,0 +1,8 @@ +{ + "slug": "felt", + "name": "Felt", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136524054" + ] +} diff --git a/data/software/fe/femorph.json b/data/software/fe/femorph.json new file mode 100644 index 000000000000..a726515dd399 --- /dev/null +++ b/data/software/fe/femorph.json @@ -0,0 +1,11 @@ +{ + "slug": "femorph", + "name": "FeMorph", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122311157" + ], + "developers": [ + "Jeff Brown" + ] +} diff --git a/data/software/fe/femtechnet.json b/data/software/fe/femtechnet.json new file mode 100644 index 000000000000..17d47b672d71 --- /dev/null +++ b/data/software/fe/femtechnet.json @@ -0,0 +1,8 @@ +{ + "slug": "femtechnet", + "name": "FemTechNet", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16235118" + ] +} diff --git a/data/software/fe/feng-office-professional-edition.json b/data/software/fe/feng-office-professional-edition.json new file mode 100644 index 000000000000..4c3f29f2cca4 --- /dev/null +++ b/data/software/fe/feng-office-professional-edition.json @@ -0,0 +1,11 @@ +{ + "slug": "feng-office-professional-edition", + "name": "Feng Office Professional Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28062278" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/fe/fesom.json b/data/software/fe/fesom.json new file mode 100644 index 000000000000..5db9ad8b85aa --- /dev/null +++ b/data/software/fe/fesom.json @@ -0,0 +1,14 @@ +{ + "slug": "fesom", + "name": "FESOM", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28231742" + ], + "developers": [ + "Alfred Wegener Institute for Polar and Marine Research" + ], + "programming_languages": [ + "Fortran" + ] +} diff --git a/data/software/fe/fetion.json b/data/software/fe/fetion.json new file mode 100644 index 000000000000..3769a9130039 --- /dev/null +++ b/data/software/fe/fetion.json @@ -0,0 +1,8 @@ +{ + "slug": "fetion", + "name": "Fetion", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5445958" + ] +} diff --git a/data/software/fe/fez.json b/data/software/fe/fez.json new file mode 100644 index 000000000000..6a0dc131a47a --- /dev/null +++ b/data/software/fe/fez.json @@ -0,0 +1,8 @@ +{ + "slug": "fez", + "name": "FEZ", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5425402" + ] +} diff --git a/data/software/ff/fflogs.json b/data/software/ff/fflogs.json new file mode 100644 index 000000000000..3d5e419d3f78 --- /dev/null +++ b/data/software/ff/fflogs.json @@ -0,0 +1,11 @@ +{ + "slug": "fflogs", + "name": "fflogs", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136522463" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/ff/ffmpeg2theora.json b/data/software/ff/ffmpeg2theora.json new file mode 100644 index 000000000000..0d5acedf8ead --- /dev/null +++ b/data/software/ff/ffmpeg2theora.json @@ -0,0 +1,11 @@ +{ + "slug": "ffmpeg2theora", + "name": "Ffmpeg2theora", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10847163" + ], + "operating_systems": [ + "Unix-like operating system" + ] +} diff --git a/data/software/ff/ffmpegsource.json b/data/software/ff/ffmpegsource.json new file mode 100644 index 000000000000..585bc5e84454 --- /dev/null +++ b/data/software/ff/ffmpegsource.json @@ -0,0 +1,11 @@ +{ + "slug": "ffmpegsource", + "name": "ffmpegsource", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974844" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/ff/fftpack.json b/data/software/ff/fftpack.json new file mode 100644 index 000000000000..08ec0553effc --- /dev/null +++ b/data/software/ff/fftpack.json @@ -0,0 +1,9 @@ +{ + "slug": "fftpack", + "name": "FFTPACK", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5425436" + ], + "release_date": "1985-04-01" +} diff --git a/data/software/fg/fglrx.json b/data/software/fg/fglrx.json new file mode 100644 index 000000000000..5370017d3002 --- /dev/null +++ b/data/software/fg/fglrx.json @@ -0,0 +1,14 @@ +{ + "slug": "fglrx", + "name": "fglrx", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1936343" + ], + "developers": [ + "AMD" + ], + "licenses": [ + "end-user license agreement" + ] +} diff --git a/data/software/fh/fhem.json b/data/software/fh/fhem.json new file mode 100644 index 000000000000..488f849cf5e6 --- /dev/null +++ b/data/software/fh/fhem.json @@ -0,0 +1,11 @@ +{ + "slug": "fhem", + "name": "FHEM", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1388254" + ], + "licenses": [ + "GNU General Public License" + ] +} diff --git a/data/software/fh/fhfs-file-server.json b/data/software/fh/fhfs-file-server.json new file mode 100644 index 000000000000..524e442a67d1 --- /dev/null +++ b/data/software/fh/fhfs-file-server.json @@ -0,0 +1,8 @@ +{ + "slug": "fhfs-file-server", + "name": "FHFS (File Server)", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q20829740" + ] +} diff --git a/data/software/fi/fibre-channel-utility.json b/data/software/fi/fibre-channel-utility.json new file mode 100644 index 000000000000..6b2756346fe0 --- /dev/null +++ b/data/software/fi/fibre-channel-utility.json @@ -0,0 +1,11 @@ +{ + "slug": "fibre-channel-utility", + "name": "Fibre Channel Utility", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3744487" + ], + "developers": [ + "Apple Inc." + ] +} diff --git a/data/software/fi/fico-xpress.json b/data/software/fi/fico-xpress.json new file mode 100644 index 000000000000..d559de7c1e7b --- /dev/null +++ b/data/software/fi/fico-xpress.json @@ -0,0 +1,11 @@ +{ + "slug": "fico-xpress", + "name": "FICO Xpress", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22908372" + ], + "developers": [ + "FICO" + ] +} diff --git a/data/software/fi/fidyst.json b/data/software/fi/fidyst.json new file mode 100644 index 000000000000..a412ab1078ed --- /dev/null +++ b/data/software/fi/fidyst.json @@ -0,0 +1,8 @@ +{ + "slug": "fidyst", + "name": "FIDYST", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q29044169" + ] +} diff --git a/data/software/fi/field-trip.json b/data/software/fi/field-trip.json new file mode 100644 index 000000000000..9ed65171cc52 --- /dev/null +++ b/data/software/fi/field-trip.json @@ -0,0 +1,8 @@ +{ + "slug": "field-trip", + "name": "Field Trip", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q56276775" + ] +} diff --git a/data/software/fi/fieldworks.json b/data/software/fi/fieldworks.json new file mode 100644 index 000000000000..e3b10901840c --- /dev/null +++ b/data/software/fi/fieldworks.json @@ -0,0 +1,11 @@ +{ + "slug": "fieldworks", + "name": "FieldWorks", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084959" + ], + "licenses": [ + "GNU Lesser General Public License" + ] +} diff --git a/data/software/fi/fifa-transfer-matching-system.json b/data/software/fi/fifa-transfer-matching-system.json new file mode 100644 index 000000000000..eff8a068422b --- /dev/null +++ b/data/software/fi/fifa-transfer-matching-system.json @@ -0,0 +1,9 @@ +{ + "slug": "fifa-transfer-matching-system", + "name": "FIFA Transfer Matching System", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q20807509" + ], + "release_date": "2010-01-01" +} diff --git a/data/software/fi/fightcade.json b/data/software/fi/fightcade.json new file mode 100644 index 000000000000..0240acfd7b9c --- /dev/null +++ b/data/software/fi/fightcade.json @@ -0,0 +1,8 @@ +{ + "slug": "fightcade", + "name": "Fightcade", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q48967392" + ] +} diff --git a/data/software/fi/figleaf.json b/data/software/fi/figleaf.json new file mode 100644 index 000000000000..9679df9f5107 --- /dev/null +++ b/data/software/fi/figleaf.json @@ -0,0 +1,8 @@ +{ + "slug": "figleaf", + "name": "figleaf", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065346" + ] +} diff --git a/data/software/fi/filament-audio-software.json b/data/software/fi/filament-audio-software.json new file mode 100644 index 000000000000..6a3abb7b5c9b --- /dev/null +++ b/data/software/fi/filament-audio-software.json @@ -0,0 +1,15 @@ +{ + "slug": "filament-audio-software", + "name": "Filament (audio software)", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138796469" + ], + "developers": [ + "Forma Labs Audio" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/software/fi/filament-record-navigation.json b/data/software/fi/filament-record-navigation.json new file mode 100644 index 000000000000..d9dfbf240dac --- /dev/null +++ b/data/software/fi/filament-record-navigation.json @@ -0,0 +1,26 @@ +{ + "slug": "filament-record-navigation", + "name": "Filament Record Navigation", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139569681" + ], + "release_date": "2025-05-27", + "developers": [ + "Nben Malla" + ], + "publishers": [ + "Nben Malla" + ], + "operating_systems": [ + "cross-platform", + "macOS", + "Microsoft Windows" + ], + "programming_languages": [ + "PHP" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/fi/file-explorer.json b/data/software/fi/file-explorer.json new file mode 100644 index 000000000000..d4ca5cf3925b --- /dev/null +++ b/data/software/fi/file-explorer.json @@ -0,0 +1,18 @@ +{ + "slug": "file-explorer", + "name": "File Explorer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q196305" + ], + "developers": [ + "Microsoft" + ], + "operating_systems": [ + "Microsoft Windows" + ], + "genres": [ + "file manager", + "operating system shell" + ] +} diff --git a/data/software/fi/file2text.json b/data/software/fi/file2text.json new file mode 100644 index 000000000000..d1569997d7c9 --- /dev/null +++ b/data/software/fi/file2text.json @@ -0,0 +1,14 @@ +{ + "slug": "file2text", + "name": "File2Text", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138472618" + ], + "developers": [ + "C. M. Leal Ltda" + ], + "operating_systems": [ + "macOS" + ] +} diff --git a/data/software/fi/filebot.json b/data/software/fi/filebot.json new file mode 100644 index 000000000000..b18d5b58041a --- /dev/null +++ b/data/software/fi/filebot.json @@ -0,0 +1,16 @@ +{ + "slug": "filebot", + "name": "FileBot", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11968825" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [ + "Java", + "Apache Groovy" + ] +} diff --git a/data/software/fi/filecamp.json b/data/software/fi/filecamp.json new file mode 100644 index 000000000000..80f04bf4be49 --- /dev/null +++ b/data/software/fi/filecamp.json @@ -0,0 +1,8 @@ +{ + "slug": "filecamp", + "name": "Filecamp", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084960" + ] +} diff --git a/data/software/fi/filecloud.json b/data/software/fi/filecloud.json new file mode 100644 index 000000000000..62531dc69f1b --- /dev/null +++ b/data/software/fi/filecloud.json @@ -0,0 +1,8 @@ +{ + "slug": "filecloud", + "name": "FileCloud", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135926561" + ] +} diff --git a/data/software/fi/filecoin.json b/data/software/fi/filecoin.json new file mode 100644 index 000000000000..84e5ab514d0e --- /dev/null +++ b/data/software/fi/filecoin.json @@ -0,0 +1,11 @@ +{ + "slug": "filecoin", + "name": "Filecoin", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q39048590" + ], + "developers": [ + "Protocol Labs" + ] +} diff --git a/data/software/fi/filehippo-update-checker.json b/data/software/fi/filehippo-update-checker.json new file mode 100644 index 000000000000..41445942e079 --- /dev/null +++ b/data/software/fi/filehippo-update-checker.json @@ -0,0 +1,14 @@ +{ + "slug": "filehippo-update-checker", + "name": "FileHippo Update Checker", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16636209" + ], + "developers": [ + "FileHippo" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/fi/filemail.json b/data/software/fi/filemail.json new file mode 100644 index 000000000000..3f2a7c744838 --- /dev/null +++ b/data/software/fi/filemail.json @@ -0,0 +1,11 @@ +{ + "slug": "filemail", + "name": "Filemail", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3071777" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/fi/filemerlin.json b/data/software/fi/filemerlin.json new file mode 100644 index 000000000000..8e8c1b68df5d --- /dev/null +++ b/data/software/fi/filemerlin.json @@ -0,0 +1,8 @@ +{ + "slug": "filemerlin", + "name": "FileMerlin", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q83276375" + ] +} diff --git a/data/software/fi/filetopia.json b/data/software/fi/filetopia.json new file mode 100644 index 000000000000..510c70cb1abb --- /dev/null +++ b/data/software/fi/filetopia.json @@ -0,0 +1,12 @@ +{ + "slug": "filetopia", + "name": "Filetopia", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q265548" + ], + "licenses": [ + "proprietary license", + "freeware" + ] +} diff --git a/data/software/fi/filio.json b/data/software/fi/filio.json new file mode 100644 index 000000000000..5fc5f26b23a0 --- /dev/null +++ b/data/software/fi/filio.json @@ -0,0 +1,13 @@ +{ + "slug": "filio", + "name": "Filio", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137972910" + ], + "operating_systems": [ + "iOS", + "Mac operating system", + "Microsoft Windows" + ] +} diff --git a/data/software/fi/film4od.json b/data/software/fi/film4od.json new file mode 100644 index 000000000000..f04866de9c0c --- /dev/null +++ b/data/software/fi/film4od.json @@ -0,0 +1,12 @@ +{ + "slug": "film4od", + "name": "Film4oD", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5448887" + ], + "release_date": "2010-11-01", + "developers": [ + "FilmFlex" + ] +} diff --git a/data/software/fi/filterbloom.json b/data/software/fi/filterbloom.json new file mode 100644 index 000000000000..23f7b767c41d --- /dev/null +++ b/data/software/fi/filterbloom.json @@ -0,0 +1,18 @@ +{ + "slug": "filterbloom", + "name": "Filterbloom", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138948219" + ], + "developers": [ + "Streamfog Inc." + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/fi/finacle.json b/data/software/fi/finacle.json new file mode 100644 index 000000000000..a0db6942aaf8 --- /dev/null +++ b/data/software/fi/finacle.json @@ -0,0 +1,14 @@ +{ + "slug": "finacle", + "name": "Finacle", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5449339" + ], + "developers": [ + "Infosys" + ], + "programming_languages": [ + "Java" + ] +} diff --git a/data/software/fi/final-scratch.json b/data/software/fi/final-scratch.json new file mode 100644 index 000000000000..6dc740fb79eb --- /dev/null +++ b/data/software/fi/final-scratch.json @@ -0,0 +1,8 @@ +{ + "slug": "final-scratch", + "name": "Final Scratch", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q834907" + ] +} diff --git a/data/software/fi/finale.json b/data/software/fi/finale.json new file mode 100644 index 000000000000..c6c301f30074 --- /dev/null +++ b/data/software/fi/finale.json @@ -0,0 +1,8 @@ +{ + "slug": "finale", + "name": "Finale", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084961" + ] +} diff --git a/data/software/fi/finalrender.json b/data/software/fi/finalrender.json new file mode 100644 index 000000000000..1b5d8b1b78ce --- /dev/null +++ b/data/software/fi/finalrender.json @@ -0,0 +1,8 @@ +{ + "slug": "finalrender", + "name": "finalRender", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3072340" + ] +} diff --git a/data/software/fi/finco.json b/data/software/fi/finco.json new file mode 100644 index 000000000000..3c1b7a9c7c5c --- /dev/null +++ b/data/software/fi/finco.json @@ -0,0 +1,11 @@ +{ + "slug": "finco", + "name": "Finco", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138809062" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/fi/find-my-device.json b/data/software/fi/find-my-device.json new file mode 100644 index 000000000000..27a4e0411574 --- /dev/null +++ b/data/software/fi/find-my-device.json @@ -0,0 +1,11 @@ +{ + "slug": "find-my-device", + "name": "Find My Device", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17988580" + ], + "developers": [ + "Google" + ] +} diff --git a/data/software/fi/finding-popular-hashtags.json b/data/software/fi/finding-popular-hashtags.json new file mode 100644 index 000000000000..253cf7639920 --- /dev/null +++ b/data/software/fi/finding-popular-hashtags.json @@ -0,0 +1,8 @@ +{ + "slug": "finding-popular-hashtags", + "name": "Finding Popular Hashtags", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084962" + ] +} diff --git a/data/software/fi/fine-mep.json b/data/software/fi/fine-mep.json new file mode 100644 index 000000000000..8b37de1f8e61 --- /dev/null +++ b/data/software/fi/fine-mep.json @@ -0,0 +1,8 @@ +{ + "slug": "fine-mep", + "name": "FINE MEP", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5425832" + ] +} diff --git a/data/software/fi/finereader-pdf.json b/data/software/fi/finereader-pdf.json new file mode 100644 index 000000000000..b5d35ad124b2 --- /dev/null +++ b/data/software/fi/finereader-pdf.json @@ -0,0 +1,18 @@ +{ + "slug": "finereader-pdf", + "name": "FineReader PDF", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1416880" + ], + "developers": [ + "ABBYY" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/fi/fing.json b/data/software/fi/fing.json new file mode 100644 index 000000000000..be5aa834ae8a --- /dev/null +++ b/data/software/fi/fing.json @@ -0,0 +1,15 @@ +{ + "slug": "fing", + "name": "Fing", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3072574" + ], + "release_date": "2010-01-01", + "developers": [ + "Fing Limited" + ], + "publishers": [ + "Fing Limited" + ] +} diff --git a/data/software/fi/finger-on-the-app.json b/data/software/fi/finger-on-the-app.json new file mode 100644 index 000000000000..cd2cc8accdde --- /dev/null +++ b/data/software/fi/finger-on-the-app.json @@ -0,0 +1,8 @@ +{ + "slug": "finger-on-the-app", + "name": "Finger on the App", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131353840" + ] +} diff --git a/data/software/fi/finnish-media-scrapers.json b/data/software/fi/finnish-media-scrapers.json new file mode 100644 index 000000000000..bc554097bd3f --- /dev/null +++ b/data/software/fi/finnish-media-scrapers.json @@ -0,0 +1,8 @@ +{ + "slug": "finnish-media-scrapers", + "name": "Finnish Media Scrapers", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084963" + ] +} diff --git a/data/software/fi/finnmorf.json b/data/software/fi/finnmorf.json new file mode 100644 index 000000000000..205fe9bd9757 --- /dev/null +++ b/data/software/fi/finnmorf.json @@ -0,0 +1,8 @@ +{ + "slug": "finnmorf", + "name": "FINNMORF", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084964" + ] +} diff --git a/data/software/fi/finoptory.json b/data/software/fi/finoptory.json new file mode 100644 index 000000000000..ba60e693ad7b --- /dev/null +++ b/data/software/fi/finoptory.json @@ -0,0 +1,11 @@ +{ + "slug": "finoptory", + "name": "FinOptory", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139862254" + ], + "developers": [ + "Green Dopamine GmbH" + ] +} diff --git a/data/software/fi/fio.json b/data/software/fi/fio.json new file mode 100644 index 000000000000..136667266a2d --- /dev/null +++ b/data/software/fi/fio.json @@ -0,0 +1,8 @@ +{ + "slug": "fio", + "name": "fio", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60918490" + ] +} diff --git a/data/software/fi/fiona.json b/data/software/fi/fiona.json new file mode 100644 index 000000000000..2fad13f11783 --- /dev/null +++ b/data/software/fi/fiona.json @@ -0,0 +1,11 @@ +{ + "slug": "fiona", + "name": "Fiona", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974845" + ], + "licenses": [ + "3-clause BSD License" + ] +} diff --git a/data/software/fi/fips.json b/data/software/fi/fips.json new file mode 100644 index 000000000000..3bd184d2442d --- /dev/null +++ b/data/software/fi/fips.json @@ -0,0 +1,8 @@ +{ + "slug": "fips", + "name": "FIPS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140312825" + ] +} diff --git a/data/software/fi/fireball.json b/data/software/fi/fireball.json new file mode 100644 index 000000000000..1e73da5fcd37 --- /dev/null +++ b/data/software/fi/fireball.json @@ -0,0 +1,8 @@ +{ + "slug": "fireball", + "name": "Fireball", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q30611762" + ] +} diff --git a/data/software/fi/firebase-authentication.json b/data/software/fi/firebase-authentication.json new file mode 100644 index 000000000000..71ade5f803a2 --- /dev/null +++ b/data/software/fi/firebase-authentication.json @@ -0,0 +1,11 @@ +{ + "slug": "firebase-authentication", + "name": "Firebase Authentication", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60167254" + ], + "developers": [ + "Google" + ] +} diff --git a/data/software/fi/firebenchmarks.json b/data/software/fi/firebenchmarks.json new file mode 100644 index 000000000000..62eaf54fec0f --- /dev/null +++ b/data/software/fi/firebenchmarks.json @@ -0,0 +1,8 @@ +{ + "slug": "firebenchmarks", + "name": "FireBenchmarks", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3745931" + ] +} diff --git a/data/software/fi/firebird-bbs.json b/data/software/fi/firebird-bbs.json new file mode 100644 index 000000000000..acf62ad2b1ff --- /dev/null +++ b/data/software/fi/firebird-bbs.json @@ -0,0 +1,8 @@ +{ + "slug": "firebird-bbs", + "name": "Firebird BBS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5451732" + ] +} diff --git a/data/software/fi/firecracker.json b/data/software/fi/firecracker.json new file mode 100644 index 000000000000..70b3209f97f0 --- /dev/null +++ b/data/software/fi/firecracker.json @@ -0,0 +1,14 @@ +{ + "slug": "firecracker", + "name": "Firecracker", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107341874" + ], + "developers": [ + "Amazon Web Services" + ], + "licenses": [ + "Apache Software License 2.0" + ] +} diff --git a/data/software/fi/firedaemon.json b/data/software/fi/firedaemon.json new file mode 100644 index 000000000000..5480c74d5d2e --- /dev/null +++ b/data/software/fi/firedaemon.json @@ -0,0 +1,8 @@ +{ + "slug": "firedaemon", + "name": "FireDaemon", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5451273" + ] +} diff --git a/data/software/fi/firefox-1-5.json b/data/software/fi/firefox-1-5.json new file mode 100644 index 000000000000..7bac80171ce6 --- /dev/null +++ b/data/software/fi/firefox-1-5.json @@ -0,0 +1,8 @@ +{ + "slug": "firefox-1-5", + "name": "Firefox 1.5", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3866728" + ] +} diff --git a/data/software/fi/firefox-8.json b/data/software/fi/firefox-8.json new file mode 100644 index 000000000000..b0e656683305 --- /dev/null +++ b/data/software/fi/firefox-8.json @@ -0,0 +1,8 @@ +{ + "slug": "firefox-8", + "name": "Firefox 8", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25584289" + ] +} diff --git a/data/software/fi/firefox-lorentz.json b/data/software/fi/firefox-lorentz.json new file mode 100644 index 000000000000..d0248b28be85 --- /dev/null +++ b/data/software/fi/firefox-lorentz.json @@ -0,0 +1,8 @@ +{ + "slug": "firefox-lorentz", + "name": "Firefox Lorentz", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5862218" + ] +} diff --git a/data/software/fi/firemonger.json b/data/software/fi/firemonger.json new file mode 100644 index 000000000000..c2f23c314eb0 --- /dev/null +++ b/data/software/fi/firemonger.json @@ -0,0 +1,8 @@ +{ + "slug": "firemonger", + "name": "Firemonger", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5451920" + ] +} diff --git a/data/software/fi/firesheep.json b/data/software/fi/firesheep.json new file mode 100644 index 000000000000..2b71aa576677 --- /dev/null +++ b/data/software/fi/firesheep.json @@ -0,0 +1,12 @@ +{ + "slug": "firesheep", + "name": "Firesheep", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1418986" + ], + "release_date": "2010-10-24", + "licenses": [ + "GNU General Public License, version 3.0" + ] +} diff --git a/data/software/fi/firetune.json b/data/software/fi/firetune.json new file mode 100644 index 000000000000..940a5c8a8c40 --- /dev/null +++ b/data/software/fi/firetune.json @@ -0,0 +1,8 @@ +{ + "slug": "firetune", + "name": "FireTune", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5451282" + ] +} diff --git a/data/software/fi/firstclass.json b/data/software/fi/firstclass.json new file mode 100644 index 000000000000..8de7c8c4fcd0 --- /dev/null +++ b/data/software/fi/firstclass.json @@ -0,0 +1,8 @@ +{ + "slug": "firstclass", + "name": "FirstClass", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q960382" + ] +} diff --git a/data/software/fi/fishbrain.json b/data/software/fi/fishbrain.json new file mode 100644 index 000000000000..0bcfe019045a --- /dev/null +++ b/data/software/fi/fishbrain.json @@ -0,0 +1,9 @@ +{ + "slug": "fishbrain", + "name": "Fishbrain", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28127029" + ], + "release_date": "2010-01-01" +} diff --git a/data/software/fi/fisher.json b/data/software/fi/fisher.json new file mode 100644 index 000000000000..c29fb010a7de --- /dev/null +++ b/data/software/fi/fisher.json @@ -0,0 +1,8 @@ +{ + "slug": "fisher", + "name": "FISHER", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084965" + ] +} diff --git a/data/software/fi/fishsupper.json b/data/software/fi/fishsupper.json new file mode 100644 index 000000000000..b2379f3c8149 --- /dev/null +++ b/data/software/fi/fishsupper.json @@ -0,0 +1,8 @@ +{ + "slug": "fishsupper", + "name": "fishsupper", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065570" + ] +} diff --git a/data/software/fi/fitbod.json b/data/software/fi/fitbod.json new file mode 100644 index 000000000000..1bd560fbfba6 --- /dev/null +++ b/data/software/fi/fitbod.json @@ -0,0 +1,8 @@ +{ + "slug": "fitbod", + "name": "Fitbod", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140196767" + ] +} diff --git a/data/software/fi/fitcompare.json b/data/software/fi/fitcompare.json new file mode 100644 index 000000000000..4e4d77722d09 --- /dev/null +++ b/data/software/fi/fitcompare.json @@ -0,0 +1,14 @@ +{ + "slug": "fitcompare", + "name": "Fitcompare", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135914180" + ], + "developers": [ + "Grégory Chanez" + ], + "licenses": [ + "GNU General Public License, version 3.0" + ] +} diff --git a/data/software/fi/fitit.json b/data/software/fi/fitit.json new file mode 100644 index 000000000000..8cbef7f0741b --- /dev/null +++ b/data/software/fi/fitit.json @@ -0,0 +1,8 @@ +{ + "slug": "fitit", + "name": "FitIt", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5455376" + ] +} diff --git a/data/software/fi/fitspng.json b/data/software/fi/fitspng.json new file mode 100644 index 000000000000..d2b5f51ae50d --- /dev/null +++ b/data/software/fi/fitspng.json @@ -0,0 +1,8 @@ +{ + "slug": "fitspng", + "name": "fitspng", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065075" + ] +} diff --git a/data/software/fi/fitsverify.json b/data/software/fi/fitsverify.json new file mode 100644 index 000000000000..b1a83fc556ab --- /dev/null +++ b/data/software/fi/fitsverify.json @@ -0,0 +1,8 @@ +{ + "slug": "fitsverify", + "name": "fitsverify", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065214" + ] +} diff --git a/data/software/fi/fixed.json b/data/software/fi/fixed.json new file mode 100644 index 000000000000..b204797ec1e6 --- /dev/null +++ b/data/software/fi/fixed.json @@ -0,0 +1,8 @@ +{ + "slug": "fixed", + "name": "fixed", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084966" + ] +} diff --git a/data/software/fl/flac123.json b/data/software/fl/flac123.json new file mode 100644 index 000000000000..3d648cd42fb4 --- /dev/null +++ b/data/software/fl/flac123.json @@ -0,0 +1,8 @@ +{ + "slug": "flac123", + "name": "flac123", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065523" + ] +} diff --git a/data/software/fl/flacs.json b/data/software/fl/flacs.json new file mode 100644 index 000000000000..d1074be237b5 --- /dev/null +++ b/data/software/fl/flacs.json @@ -0,0 +1,8 @@ +{ + "slug": "flacs", + "name": "FLACS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17014056" + ] +} diff --git a/data/software/fl/flaky-test.json b/data/software/fl/flaky-test.json new file mode 100644 index 000000000000..15164b0f6eb0 --- /dev/null +++ b/data/software/fl/flaky-test.json @@ -0,0 +1,8 @@ +{ + "slug": "flaky-test", + "name": "Flaky test", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140408128" + ] +} diff --git a/data/software/fl/flame-over.json b/data/software/fl/flame-over.json new file mode 100644 index 000000000000..c9d5b0b2a8bb --- /dev/null +++ b/data/software/fl/flame-over.json @@ -0,0 +1,12 @@ +{ + "slug": "flame-over", + "name": "Flame Over", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105374181" + ], + "release_date": "2015-05-28", + "genres": [ + "action game" + ] +} diff --git a/data/software/fl/flamenco-search.json b/data/software/fl/flamenco-search.json new file mode 100644 index 000000000000..560e865942ef --- /dev/null +++ b/data/software/fl/flamenco-search.json @@ -0,0 +1,8 @@ +{ + "slug": "flamenco-search", + "name": "Flamenco Search", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084967" + ] +} diff --git a/data/software/fl/flare.json b/data/software/fl/flare.json new file mode 100644 index 000000000000..afb5bcf1ae4d --- /dev/null +++ b/data/software/fl/flare.json @@ -0,0 +1,8 @@ +{ + "slug": "flare", + "name": "Flare", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084968" + ] +} diff --git a/data/software/fl/flaresight.json b/data/software/fl/flaresight.json new file mode 100644 index 000000000000..a14765e1cc3c --- /dev/null +++ b/data/software/fl/flaresight.json @@ -0,0 +1,8 @@ +{ + "slug": "flaresight", + "name": "FlareSight", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139916855" + ] +} diff --git a/data/software/fl/flarum.json b/data/software/fl/flarum.json new file mode 100644 index 000000000000..057beac5d6c5 --- /dev/null +++ b/data/software/fl/flarum.json @@ -0,0 +1,14 @@ +{ + "slug": "flarum", + "name": "Flarum", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q86592421" + ], + "programming_languages": [ + "PHP" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/fl/flashback-pro.json b/data/software/fl/flashback-pro.json new file mode 100644 index 000000000000..743ece71bde4 --- /dev/null +++ b/data/software/fl/flashback-pro.json @@ -0,0 +1,11 @@ +{ + "slug": "flashback-pro", + "name": "FlashBack Pro", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4835099" + ], + "genres": [ + "screencasting software" + ] +} diff --git a/data/software/fl/flashblock.json b/data/software/fl/flashblock.json new file mode 100644 index 000000000000..3e1b7aa38342 --- /dev/null +++ b/data/software/fl/flashblock.json @@ -0,0 +1,11 @@ +{ + "slug": "flashblock", + "name": "Flashblock", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5457604" + ], + "licenses": [ + "Mozilla Public License" + ] +} diff --git a/data/software/fl/flashcard-machine.json b/data/software/fl/flashcard-machine.json new file mode 100644 index 000000000000..47fe96ae1d78 --- /dev/null +++ b/data/software/fl/flashcard-machine.json @@ -0,0 +1,8 @@ +{ + "slug": "flashcard-machine", + "name": "Flashcard Machine", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084969" + ] +} diff --git a/data/software/fl/flashfxp.json b/data/software/fl/flashfxp.json new file mode 100644 index 000000000000..73eb91e65f33 --- /dev/null +++ b/data/software/fl/flashfxp.json @@ -0,0 +1,8 @@ +{ + "slug": "flashfxp", + "name": "FlashFXP", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q993236" + ] +} diff --git a/data/software/fl/flashpaper.json b/data/software/fl/flashpaper.json new file mode 100644 index 000000000000..9edd80caffd1 --- /dev/null +++ b/data/software/fl/flashpaper.json @@ -0,0 +1,11 @@ +{ + "slug": "flashpaper", + "name": "FlashPaper", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1325617" + ], + "developers": [ + "Adobe" + ] +} diff --git a/data/software/fl/flask-cors.json b/data/software/fl/flask-cors.json new file mode 100644 index 000000000000..649a297ecc8d --- /dev/null +++ b/data/software/fl/flask-cors.json @@ -0,0 +1,11 @@ +{ + "slug": "flask-cors", + "name": "flask-cors", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974850" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/fl/flawfinder.json b/data/software/fl/flawfinder.json new file mode 100644 index 000000000000..64ebaff40016 --- /dev/null +++ b/data/software/fl/flawfinder.json @@ -0,0 +1,8 @@ +{ + "slug": "flawfinder", + "name": "Flawfinder", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110474298" + ] +} diff --git a/data/software/fl/fleck.json b/data/software/fl/fleck.json new file mode 100644 index 000000000000..2adef47937c3 --- /dev/null +++ b/data/software/fl/fleck.json @@ -0,0 +1,8 @@ +{ + "slug": "fleck", + "name": "Fleck", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084970" + ] +} diff --git a/data/software/fl/fleet-management-software.json b/data/software/fl/fleet-management-software.json new file mode 100644 index 000000000000..4f33050493f8 --- /dev/null +++ b/data/software/fl/fleet-management-software.json @@ -0,0 +1,8 @@ +{ + "slug": "fleet-management-software", + "name": "Fleet management software", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5458441" + ] +} diff --git a/data/software/fl/fleet.json b/data/software/fl/fleet.json new file mode 100644 index 000000000000..381b5f993a3e --- /dev/null +++ b/data/software/fl/fleet.json @@ -0,0 +1,11 @@ +{ + "slug": "fleet", + "name": "fleet", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974851" + ], + "licenses": [ + "Apache License" + ] +} diff --git a/data/software/fl/fleur.json b/data/software/fl/fleur.json new file mode 100644 index 000000000000..06b2ced8432f --- /dev/null +++ b/data/software/fl/fleur.json @@ -0,0 +1,8 @@ +{ + "slug": "fleur", + "name": "FLEUR", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108241750" + ] +} diff --git a/data/software/fl/flexaid.json b/data/software/fl/flexaid.json new file mode 100644 index 000000000000..6edfab47f5b6 --- /dev/null +++ b/data/software/fl/flexaid.json @@ -0,0 +1,11 @@ +{ + "slug": "flexaid", + "name": "FlexAID", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q65072815" + ], + "licenses": [ + "Apache License" + ] +} diff --git a/data/software/fl/flexbackup.json b/data/software/fl/flexbackup.json new file mode 100644 index 000000000000..b9645000f6d8 --- /dev/null +++ b/data/software/fl/flexbackup.json @@ -0,0 +1,8 @@ +{ + "slug": "flexbackup", + "name": "flexbackup", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62849836" + ] +} diff --git a/data/software/fl/flexcom.json b/data/software/fl/flexcom.json new file mode 100644 index 000000000000..cb5d35928bf1 --- /dev/null +++ b/data/software/fl/flexcom.json @@ -0,0 +1,11 @@ +{ + "slug": "flexcom", + "name": "Flexcom", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5458942" + ], + "developers": [ + "John Wood Group plc" + ] +} diff --git a/data/software/fl/flexget.json b/data/software/fl/flexget.json new file mode 100644 index 000000000000..b9e18a9617f5 --- /dev/null +++ b/data/software/fl/flexget.json @@ -0,0 +1,11 @@ +{ + "slug": "flexget", + "name": "flexget", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974852" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/fl/flexhex.json b/data/software/fl/flexhex.json new file mode 100644 index 000000000000..c9af298ac5f9 --- /dev/null +++ b/data/software/fl/flexhex.json @@ -0,0 +1,14 @@ +{ + "slug": "flexhex", + "name": "FlexHex", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60741091" + ], + "operating_systems": [ + "Microsoft Windows" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/fl/flexpde.json b/data/software/fl/flexpde.json new file mode 100644 index 000000000000..c14c6b0b794a --- /dev/null +++ b/data/software/fl/flexpde.json @@ -0,0 +1,8 @@ +{ + "slug": "flexpde", + "name": "Flexpde", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5459036" + ] +} diff --git a/data/software/fl/flexpro.json b/data/software/fl/flexpro.json new file mode 100644 index 000000000000..00d3e542e02f --- /dev/null +++ b/data/software/fl/flexpro.json @@ -0,0 +1,11 @@ +{ + "slug": "flexpro", + "name": "FlexPro", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5458913" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/fl/flexsim.json b/data/software/fl/flexsim.json new file mode 100644 index 000000000000..8d716a8b0bfb --- /dev/null +++ b/data/software/fl/flexsim.json @@ -0,0 +1,8 @@ +{ + "slug": "flexsim", + "name": "Flexsim", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17014099" + ] +} diff --git a/data/software/fl/flickr-downloadr.json b/data/software/fl/flickr-downloadr.json new file mode 100644 index 000000000000..22cbf167132a --- /dev/null +++ b/data/software/fl/flickr-downloadr.json @@ -0,0 +1,11 @@ +{ + "slug": "flickr-downloadr", + "name": "flickr downloadr", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63088320" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/fl/flickypedia.json b/data/software/fl/flickypedia.json new file mode 100644 index 000000000000..62b6e4f26ffc --- /dev/null +++ b/data/software/fl/flickypedia.json @@ -0,0 +1,11 @@ +{ + "slug": "flickypedia", + "name": "Flickypedia", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121064487" + ], + "developers": [ + "Flickr Foundation" + ] +} diff --git a/data/software/fl/fliggy-software.json b/data/software/fl/fliggy-software.json new file mode 100644 index 000000000000..498fb4405778 --- /dev/null +++ b/data/software/fl/fliggy-software.json @@ -0,0 +1,8 @@ +{ + "slug": "fliggy-software", + "name": "Fliggy Software", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62081774" + ] +} diff --git a/data/software/fl/flightgear-data.json b/data/software/fl/flightgear-data.json new file mode 100644 index 000000000000..9cb1bf453a41 --- /dev/null +++ b/data/software/fl/flightgear-data.json @@ -0,0 +1,11 @@ +{ + "slug": "flightgear-data", + "name": "flightgear-data", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974853" + ], + "licenses": [ + "GNU General Public License, version 2.0" + ] +} diff --git a/data/software/fl/flip.json b/data/software/fl/flip.json new file mode 100644 index 000000000000..f50a442456df --- /dev/null +++ b/data/software/fl/flip.json @@ -0,0 +1,11 @@ +{ + "slug": "flip", + "name": "Flip", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113269213" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/fl/flip4mac.json b/data/software/fl/flip4mac.json new file mode 100644 index 000000000000..dd9c923a0fed --- /dev/null +++ b/data/software/fl/flip4mac.json @@ -0,0 +1,8 @@ +{ + "slug": "flip4mac", + "name": "Flip4Mac", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5459646" + ] +} diff --git a/data/software/fl/flipbuilder.json b/data/software/fl/flipbuilder.json new file mode 100644 index 000000000000..b4a2546e9443 --- /dev/null +++ b/data/software/fl/flipbuilder.json @@ -0,0 +1,11 @@ +{ + "slug": "flipbuilder", + "name": "FlipBuilder", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139959918" + ], + "developers": [ + "WONDER IDEA TECHNOLOGY LIMITED" + ] +} diff --git a/data/software/fl/fliphtml5.json b/data/software/fl/fliphtml5.json new file mode 100644 index 000000000000..dfa525571eb4 --- /dev/null +++ b/data/software/fl/fliphtml5.json @@ -0,0 +1,11 @@ +{ + "slug": "fliphtml5", + "name": "FlipHTML5", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139772478" + ], + "developers": [ + "WONDER IDEA TECHNOLOGY LIMITED" + ] +} diff --git a/data/software/fl/flipscore.json b/data/software/fl/flipscore.json new file mode 100644 index 000000000000..f5cfced659a7 --- /dev/null +++ b/data/software/fl/flipscore.json @@ -0,0 +1,11 @@ +{ + "slug": "flipscore", + "name": "FlipScore", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139829593" + ], + "developers": [ + "FlipScore" + ] +} diff --git a/data/software/fl/flmask.json b/data/software/fl/flmask.json new file mode 100644 index 000000000000..94c1b65994c0 --- /dev/null +++ b/data/software/fl/flmask.json @@ -0,0 +1,8 @@ +{ + "slug": "flmask", + "name": "FLMask", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11199214" + ] +} diff --git a/data/software/fl/flokoon.json b/data/software/fl/flokoon.json new file mode 100644 index 000000000000..370f8040decc --- /dev/null +++ b/data/software/fl/flokoon.json @@ -0,0 +1,8 @@ +{ + "slug": "flokoon", + "name": "flokoon", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084972" + ] +} diff --git a/data/software/fl/flood-modeller.json b/data/software/fl/flood-modeller.json new file mode 100644 index 000000000000..0e8d50c9060a --- /dev/null +++ b/data/software/fl/flood-modeller.json @@ -0,0 +1,11 @@ +{ + "slug": "flood-modeller", + "name": "Flood Modeller", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q19824660" + ], + "developers": [ + "CH2M Hill" + ] +} diff --git a/data/software/fl/floristware.json b/data/software/fl/floristware.json new file mode 100644 index 000000000000..d4233b2c511b --- /dev/null +++ b/data/software/fl/floristware.json @@ -0,0 +1,8 @@ +{ + "slug": "floristware", + "name": "FloristWare", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5461906" + ] +} diff --git a/data/software/fl/flot.json b/data/software/fl/flot.json new file mode 100644 index 000000000000..ff438baf7808 --- /dev/null +++ b/data/software/fl/flot.json @@ -0,0 +1,8 @@ +{ + "slug": "flot", + "name": "Flot", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084973" + ] +} diff --git a/data/software/fl/flow-q111269149.json b/data/software/fl/flow-q111269149.json new file mode 100644 index 000000000000..bc6008bd60cb --- /dev/null +++ b/data/software/fl/flow-q111269149.json @@ -0,0 +1,17 @@ +{ + "slug": "flow-q111269149", + "name": "flow", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111269149" + ], + "developers": [ + "Meta" + ], + "programming_languages": [ + "OCaml" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/fl/flow-tools.json b/data/software/fl/flow-tools.json new file mode 100644 index 000000000000..1539d4fc0a2a --- /dev/null +++ b/data/software/fl/flow-tools.json @@ -0,0 +1,8 @@ +{ + "slug": "flow-tools", + "name": "flow-tools", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62849830" + ] +} diff --git a/data/software/fl/flow-tracer.json b/data/software/fl/flow-tracer.json new file mode 100644 index 000000000000..594bf980eb9d --- /dev/null +++ b/data/software/fl/flow-tracer.json @@ -0,0 +1,8 @@ +{ + "slug": "flow-tracer", + "name": "Flow tracer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q989961" + ] +} diff --git a/data/software/fl/flow.json b/data/software/fl/flow.json new file mode 100644 index 000000000000..eb7b9031ca90 --- /dev/null +++ b/data/software/fl/flow.json @@ -0,0 +1,8 @@ +{ + "slug": "flow", + "name": "Flow", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106362772" + ] +} diff --git a/data/software/fl/flowable.json b/data/software/fl/flowable.json new file mode 100644 index 000000000000..7c41db224720 --- /dev/null +++ b/data/software/fl/flowable.json @@ -0,0 +1,11 @@ +{ + "slug": "flowable", + "name": "Flowable", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28449892" + ], + "programming_languages": [ + "Java" + ] +} diff --git a/data/software/fl/flowin.json b/data/software/fl/flowin.json new file mode 100644 index 000000000000..446e42629f9b --- /dev/null +++ b/data/software/fl/flowin.json @@ -0,0 +1,8 @@ +{ + "slug": "flowin", + "name": "Flowin", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140333560" + ] +} diff --git a/data/software/fl/flowjo.json b/data/software/fl/flowjo.json new file mode 100644 index 000000000000..6f6712d12b02 --- /dev/null +++ b/data/software/fl/flowjo.json @@ -0,0 +1,11 @@ +{ + "slug": "flowjo", + "name": "FlowJo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5462055" + ], + "developers": [ + "FlowJo LLC" + ] +} diff --git a/data/software/fl/flowos.json b/data/software/fl/flowos.json new file mode 100644 index 000000000000..cb11f8bbeecd --- /dev/null +++ b/data/software/fl/flowos.json @@ -0,0 +1,14 @@ +{ + "slug": "flowos", + "name": "FlowOS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139682292" + ], + "developers": [ + "Filip Sardi" + ], + "operating_systems": [ + "web browser" + ] +} diff --git a/data/software/fl/flowtriq.json b/data/software/fl/flowtriq.json new file mode 100644 index 000000000000..a161e195ed8c --- /dev/null +++ b/data/software/fl/flowtriq.json @@ -0,0 +1,8 @@ +{ + "slug": "flowtriq", + "name": "Flowtriq", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139601085" + ] +} diff --git a/data/software/fl/fluctuat.json b/data/software/fl/fluctuat.json new file mode 100644 index 000000000000..1180f6b1b018 --- /dev/null +++ b/data/software/fl/fluctuat.json @@ -0,0 +1,14 @@ +{ + "slug": "fluctuat", + "name": "Fluctuat", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5462617" + ], + "developers": [ + "Alternative Energies and Atomic Energy Commission" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/fl/fluent-design-system.json b/data/software/fl/fluent-design-system.json new file mode 100644 index 000000000000..b0c9020b37c4 --- /dev/null +++ b/data/software/fl/fluent-design-system.json @@ -0,0 +1,20 @@ +{ + "slug": "fluent-design-system", + "name": "Fluent Design System", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q29900635" + ], + "developers": [ + "Microsoft" + ], + "programming_languages": [ + "TypeScript", + "Kotlin", + "Swift", + "Objective-C" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/fl/fluenz.json b/data/software/fl/fluenz.json new file mode 100644 index 000000000000..658cd512c299 --- /dev/null +++ b/data/software/fl/fluenz.json @@ -0,0 +1,8 @@ +{ + "slug": "fluenz", + "name": "Fluenz", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17105467" + ] +} diff --git a/data/software/fl/fluid.json b/data/software/fl/fluid.json new file mode 100644 index 000000000000..3fb92c491a8a --- /dev/null +++ b/data/software/fl/fluid.json @@ -0,0 +1,11 @@ +{ + "slug": "fluid", + "name": "Fluid", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5462698" + ], + "programming_languages": [ + "Objective-C" + ] +} diff --git a/data/software/fl/fluidinfo.json b/data/software/fl/fluidinfo.json new file mode 100644 index 000000000000..97205f7ada90 --- /dev/null +++ b/data/software/fl/fluidinfo.json @@ -0,0 +1,15 @@ +{ + "slug": "fluidinfo", + "name": "Fluidinfo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5462743" + ], + "release_date": "2009-01-01", + "developers": [ + "Fluidinfo" + ], + "programming_languages": [ + "Python" + ] +} diff --git a/data/software/fl/fluka.json b/data/software/fl/fluka.json new file mode 100644 index 000000000000..dd5090715196 --- /dev/null +++ b/data/software/fl/fluka.json @@ -0,0 +1,17 @@ +{ + "slug": "fluka", + "name": "FLUKA", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3737232" + ], + "developers": [ + "Istituto Nazionale di Fisica Nucleare" + ], + "programming_languages": [ + "Fortran" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/fl/fluster.json b/data/software/fl/fluster.json new file mode 100644 index 000000000000..57c127953b00 --- /dev/null +++ b/data/software/fl/fluster.json @@ -0,0 +1,8 @@ +{ + "slug": "fluster", + "name": "fluster", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122599349" + ] +} diff --git a/data/software/fl/flvto.json b/data/software/fl/flvto.json new file mode 100644 index 000000000000..b886840a1d1d --- /dev/null +++ b/data/software/fl/flvto.json @@ -0,0 +1,8 @@ +{ + "slug": "flvto", + "name": "FLVTO", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q20712396" + ] +} diff --git a/data/software/fl/flyenv.json b/data/software/fl/flyenv.json new file mode 100644 index 000000000000..68ff1ca0cef4 --- /dev/null +++ b/data/software/fl/flyenv.json @@ -0,0 +1,8 @@ +{ + "slug": "flyenv", + "name": "FlyEnv", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138567332" + ] +} diff --git a/data/software/fl/flyexpress.json b/data/software/fl/flyexpress.json new file mode 100644 index 000000000000..e65b18b28a28 --- /dev/null +++ b/data/software/fl/flyexpress.json @@ -0,0 +1,14 @@ +{ + "slug": "flyexpress", + "name": "FlyExpress", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17014272" + ], + "developers": [ + "Biodesign Institute" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/fl/flyover.json b/data/software/fl/flyover.json new file mode 100644 index 000000000000..0e6d73943690 --- /dev/null +++ b/data/software/fl/flyover.json @@ -0,0 +1,8 @@ +{ + "slug": "flyover", + "name": "Flyover", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122850616" + ] +} diff --git a/data/software/fl/flyugegenhaimen.json b/data/software/fl/flyugegenhaimen.json new file mode 100644 index 000000000000..2adcdbcf3934 --- /dev/null +++ b/data/software/fl/flyugegenhaimen.json @@ -0,0 +1,8 @@ +{ + "slug": "flyugegenhaimen", + "name": "Flyugegenhaimen", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140158790" + ] +} diff --git a/data/software/fm/fmfs.json b/data/software/fm/fmfs.json new file mode 100644 index 000000000000..5472b152ba4c --- /dev/null +++ b/data/software/fm/fmfs.json @@ -0,0 +1,8 @@ +{ + "slug": "fmfs", + "name": "FMFS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10847125" + ] +} diff --git a/data/software/fm/fmptools.json b/data/software/fm/fmptools.json new file mode 100644 index 000000000000..dfc03a8d7b57 --- /dev/null +++ b/data/software/fm/fmptools.json @@ -0,0 +1,11 @@ +{ + "slug": "fmptools", + "name": "fmptools", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138642367" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/fn/fnord.json b/data/software/fn/fnord.json new file mode 100644 index 000000000000..ee71152eadbb --- /dev/null +++ b/data/software/fn/fnord.json @@ -0,0 +1,8 @@ +{ + "slug": "fnord", + "name": "fnord", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065233" + ] +} diff --git a/data/software/fo/focalis.json b/data/software/fo/focalis.json new file mode 100644 index 000000000000..f6562885fab8 --- /dev/null +++ b/data/software/fo/focalis.json @@ -0,0 +1,13 @@ +{ + "slug": "focalis", + "name": "Focalis", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139764296" + ], + "genres": [ + "photography", + "learning", + "coaching" + ] +} diff --git a/data/software/fo/focusopen-digital-asset-manager.json b/data/software/fo/focusopen-digital-asset-manager.json new file mode 100644 index 000000000000..996a7d4b55d2 --- /dev/null +++ b/data/software/fo/focusopen-digital-asset-manager.json @@ -0,0 +1,8 @@ +{ + "slug": "focusopen-digital-asset-manager", + "name": "FocusOPEN Digital Asset Manager", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084974" + ] +} diff --git a/data/software/fo/focustrack.json b/data/software/fo/focustrack.json new file mode 100644 index 000000000000..b58f3e4d59e5 --- /dev/null +++ b/data/software/fo/focustrack.json @@ -0,0 +1,8 @@ +{ + "slug": "focustrack", + "name": "FocusTrack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5463904" + ] +} diff --git a/data/software/fo/fog-project.json b/data/software/fo/fog-project.json new file mode 100644 index 000000000000..1c8747b5c044 --- /dev/null +++ b/data/software/fo/fog-project.json @@ -0,0 +1,11 @@ +{ + "slug": "fog-project", + "name": "FOG Project", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109236742" + ], + "programming_languages": [ + "PHP" + ] +} diff --git a/data/software/fo/fogalqrn.json b/data/software/fo/fogalqrn.json new file mode 100644 index 000000000000..3344448acdde --- /dev/null +++ b/data/software/fo/fogalqrn.json @@ -0,0 +1,8 @@ +{ + "slug": "fogalqrn", + "name": "FogAlqrn", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140247409" + ] +} diff --git a/data/software/fo/fogbugz.json b/data/software/fo/fogbugz.json new file mode 100644 index 000000000000..c78f4bebdddc --- /dev/null +++ b/data/software/fo/fogbugz.json @@ -0,0 +1,11 @@ +{ + "slug": "fogbugz", + "name": "FogBugz", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5464038" + ], + "developers": [ + "Glitch, Inc." + ] +} diff --git a/data/software/fo/foldersize.json b/data/software/fo/foldersize.json new file mode 100644 index 000000000000..0f3dc0894cde --- /dev/null +++ b/data/software/fo/foldersize.json @@ -0,0 +1,8 @@ +{ + "slug": "foldersize", + "name": "FolderSize", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5464284" + ] +} diff --git a/data/software/fo/foldseek.json b/data/software/fo/foldseek.json new file mode 100644 index 000000000000..c2e4d6c04ccf --- /dev/null +++ b/data/software/fo/foldseek.json @@ -0,0 +1,8 @@ +{ + "slug": "foldseek", + "name": "foldseek", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q114840749" + ] +} diff --git a/data/software/fo/foldx.json b/data/software/fo/foldx.json new file mode 100644 index 000000000000..7034b8ce6a07 --- /dev/null +++ b/data/software/fo/foldx.json @@ -0,0 +1,8 @@ +{ + "slug": "foldx", + "name": "FoldX", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5464253" + ] +} diff --git a/data/software/fo/foliot.json b/data/software/fo/foliot.json new file mode 100644 index 000000000000..4a386e2aaec2 --- /dev/null +++ b/data/software/fo/foliot.json @@ -0,0 +1,8 @@ +{ + "slug": "foliot", + "name": "Foliot", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76182959" + ] +} diff --git a/data/software/fo/folker.json b/data/software/fo/folker.json new file mode 100644 index 000000000000..8de10b6ceb93 --- /dev/null +++ b/data/software/fo/folker.json @@ -0,0 +1,14 @@ +{ + "slug": "folker", + "name": "Folker", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105076386" + ], + "operating_systems": [ + "Microsoft Windows" + ], + "licenses": [ + "GNU General Public License" + ] +} diff --git a/data/software/fo/fonema.json b/data/software/fo/fonema.json new file mode 100644 index 000000000000..e954a6073002 --- /dev/null +++ b/data/software/fo/fonema.json @@ -0,0 +1,8 @@ +{ + "slug": "fonema", + "name": "Fonema", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138497490" + ] +} diff --git a/data/software/fo/font-bomb.json b/data/software/fo/font-bomb.json new file mode 100644 index 000000000000..ae20fb3c5776 --- /dev/null +++ b/data/software/fo/font-bomb.json @@ -0,0 +1,8 @@ +{ + "slug": "font-bomb", + "name": "Font Bomb", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60775911" + ] +} diff --git a/data/software/fo/font-book.json b/data/software/fo/font-book.json new file mode 100644 index 000000000000..aa83a986dc6a --- /dev/null +++ b/data/software/fo/font-book.json @@ -0,0 +1,11 @@ +{ + "slug": "font-book", + "name": "Font Book", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2252819" + ], + "developers": [ + "Apple Inc." + ] +} diff --git a/data/software/fo/font-fusion.json b/data/software/fo/font-fusion.json new file mode 100644 index 000000000000..055cd865d690 --- /dev/null +++ b/data/software/fo/font-fusion.json @@ -0,0 +1,12 @@ +{ + "slug": "font-fusion", + "name": "Font Fusion", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5465082" + ], + "release_date": "1999-10-01", + "developers": [ + "Bitstream Inc." + ] +} diff --git a/data/software/fo/font-util.json b/data/software/fo/font-util.json new file mode 100644 index 000000000000..5638c36b0f92 --- /dev/null +++ b/data/software/fo/font-util.json @@ -0,0 +1,8 @@ +{ + "slug": "font-util", + "name": "font-util", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974854" + ] +} diff --git a/data/software/fo/fontcreator.json b/data/software/fo/fontcreator.json new file mode 100644 index 000000000000..c5bc52949b4e --- /dev/null +++ b/data/software/fo/fontcreator.json @@ -0,0 +1,8 @@ +{ + "slug": "fontcreator", + "name": "FontCreator", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q12654602" + ] +} diff --git a/data/software/fo/fontlab.json b/data/software/fo/fontlab.json new file mode 100644 index 000000000000..28c3ab6abe65 --- /dev/null +++ b/data/software/fo/fontlab.json @@ -0,0 +1,8 @@ +{ + "slug": "fontlab", + "name": "FontLab", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q453290" + ] +} diff --git a/data/software/fo/foodnotify.json b/data/software/fo/foodnotify.json new file mode 100644 index 000000000000..f1a341b124e6 --- /dev/null +++ b/data/software/fo/foodnotify.json @@ -0,0 +1,8 @@ +{ + "slug": "foodnotify", + "name": "FoodNotify", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q26252912" + ] +} diff --git a/data/software/fo/football-manager-2017-in-game-editor.json b/data/software/fo/football-manager-2017-in-game-editor.json new file mode 100644 index 000000000000..fdf032b091fd --- /dev/null +++ b/data/software/fo/football-manager-2017-in-game-editor.json @@ -0,0 +1,8 @@ +{ + "slug": "football-manager-2017-in-game-editor", + "name": "Football Manager 2017 In-Game Editor", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q85232443" + ] +} diff --git a/data/software/fo/football-manager-2018-in-game-editor.json b/data/software/fo/football-manager-2018-in-game-editor.json new file mode 100644 index 000000000000..5a66d15c5c00 --- /dev/null +++ b/data/software/fo/football-manager-2018-in-game-editor.json @@ -0,0 +1,8 @@ +{ + "slug": "football-manager-2018-in-game-editor", + "name": "Football Manager 2018 - In-Game Editor", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q85232519" + ] +} diff --git a/data/software/fo/footbayes-r-package.json b/data/software/fo/footbayes-r-package.json new file mode 100644 index 000000000000..e187890f206d --- /dev/null +++ b/data/software/fo/footbayes-r-package.json @@ -0,0 +1,8 @@ +{ + "slug": "footbayes-r-package", + "name": "footBayes (R package)", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136324425" + ] +} diff --git a/data/software/fo/fooya.json b/data/software/fo/fooya.json new file mode 100644 index 000000000000..a83054d126b3 --- /dev/null +++ b/data/software/fo/fooya.json @@ -0,0 +1,11 @@ +{ + "slug": "fooya", + "name": "Fooya", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22077809" + ], + "developers": [ + "FriendsLearn" + ] +} diff --git a/data/software/fo/foran-system.json b/data/software/fo/foran-system.json new file mode 100644 index 000000000000..646923c83508 --- /dev/null +++ b/data/software/fo/foran-system.json @@ -0,0 +1,14 @@ +{ + "slug": "foran-system", + "name": "FORAN System", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6129601" + ], + "developers": [ + "Sener" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/fo/ford-sync.json b/data/software/fo/ford-sync.json new file mode 100644 index 000000000000..e1a12a3c6ec6 --- /dev/null +++ b/data/software/fo/ford-sync.json @@ -0,0 +1,14 @@ +{ + "slug": "ford-sync", + "name": "Ford Sync", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4038903" + ], + "developers": [ + "Ford Motor Company" + ], + "operating_systems": [ + "Windows Embedded Automotive" + ] +} diff --git a/data/software/fo/fordisc.json b/data/software/fo/fordisc.json new file mode 100644 index 000000000000..26093e702ae6 --- /dev/null +++ b/data/software/fo/fordisc.json @@ -0,0 +1,8 @@ +{ + "slug": "fordisc", + "name": "FORDISC", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5426876" + ] +} diff --git a/data/software/fo/fore-coffee.json b/data/software/fo/fore-coffee.json new file mode 100644 index 000000000000..36de5962e025 --- /dev/null +++ b/data/software/fo/fore-coffee.json @@ -0,0 +1,11 @@ +{ + "slug": "fore-coffee", + "name": "Fore Coffee", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q66424373" + ], + "operating_systems": [ + "iOS" + ] +} diff --git a/data/software/fo/foreflight.json b/data/software/fo/foreflight.json new file mode 100644 index 000000000000..6218dd1cad78 --- /dev/null +++ b/data/software/fo/foreflight.json @@ -0,0 +1,8 @@ +{ + "slug": "foreflight", + "name": "ForeFlight", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116745307" + ] +} diff --git a/data/software/fo/forefront-identity-manager.json b/data/software/fo/forefront-identity-manager.json new file mode 100644 index 000000000000..8687295ff8c6 --- /dev/null +++ b/data/software/fo/forefront-identity-manager.json @@ -0,0 +1,11 @@ +{ + "slug": "forefront-identity-manager", + "name": "Forefront Identity Manager", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5468182" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/fo/forensic-toolkit.json b/data/software/fo/forensic-toolkit.json new file mode 100644 index 000000000000..8bd742d4237d --- /dev/null +++ b/data/software/fo/forensic-toolkit.json @@ -0,0 +1,11 @@ +{ + "slug": "forensic-toolkit", + "name": "Forensic Toolkit", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5468696" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/fo/forest.json b/data/software/fo/forest.json new file mode 100644 index 000000000000..18a2694417ab --- /dev/null +++ b/data/software/fo/forest.json @@ -0,0 +1,8 @@ +{ + "slug": "forest", + "name": "Forest", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105663890" + ] +} diff --git a/data/software/fo/foreui.json b/data/software/fo/foreui.json new file mode 100644 index 000000000000..80bd223f68fa --- /dev/null +++ b/data/software/fo/foreui.json @@ -0,0 +1,11 @@ +{ + "slug": "foreui", + "name": "ForeUI", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5468125" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/fo/forge.json b/data/software/fo/forge.json new file mode 100644 index 000000000000..5f63e3eb04ea --- /dev/null +++ b/data/software/fo/forge.json @@ -0,0 +1,11 @@ +{ + "slug": "forge", + "name": "Forge", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139255636" + ], + "developers": [ + "iTmethods Inc." + ] +} diff --git a/data/software/fo/form-builder.json b/data/software/fo/form-builder.json new file mode 100644 index 000000000000..11e8dc6c8a71 --- /dev/null +++ b/data/software/fo/form-builder.json @@ -0,0 +1,8 @@ +{ + "slug": "form-builder", + "name": "form builder", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137737872" + ] +} diff --git a/data/software/fo/form-faces.json b/data/software/fo/form-faces.json new file mode 100644 index 000000000000..544f8158ac1b --- /dev/null +++ b/data/software/fo/form-faces.json @@ -0,0 +1,8 @@ +{ + "slug": "form-faces", + "name": "Form Faces", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5469916" + ] +} diff --git a/data/software/fo/form-z.json b/data/software/fo/form-z.json new file mode 100644 index 000000000000..705d190fa752 --- /dev/null +++ b/data/software/fo/form-z.json @@ -0,0 +1,8 @@ +{ + "slug": "form-z", + "name": "Form-Z", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3077316" + ] +} diff --git a/data/software/fo/format-udf.json b/data/software/fo/format-udf.json new file mode 100644 index 000000000000..5613829485b4 --- /dev/null +++ b/data/software/fo/format-udf.json @@ -0,0 +1,14 @@ +{ + "slug": "format-udf", + "name": "format-udf", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107574655" + ], + "programming_languages": [ + "GNU Bash" + ], + "licenses": [ + "GNU General Public License, version 2.0" + ] +} diff --git a/data/software/fo/formatdb.json b/data/software/fo/formatdb.json new file mode 100644 index 000000000000..151d27c9bad2 --- /dev/null +++ b/data/software/fo/formatdb.json @@ -0,0 +1,8 @@ +{ + "slug": "formatdb", + "name": "formatdb", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4286442" + ] +} diff --git a/data/software/fo/formatfactory.json b/data/software/fo/formatfactory.json new file mode 100644 index 000000000000..d2ae280990e1 --- /dev/null +++ b/data/software/fo/formatfactory.json @@ -0,0 +1,11 @@ +{ + "slug": "formatfactory", + "name": "FormatFactory", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2582499" + ], + "licenses": [ + "adware" + ] +} diff --git a/data/software/fo/formatted-file-system.json b/data/software/fo/formatted-file-system.json new file mode 100644 index 000000000000..1b2df79771f3 --- /dev/null +++ b/data/software/fo/formatted-file-system.json @@ -0,0 +1,8 @@ +{ + "slug": "formatted-file-system", + "name": "Formatted File System", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5470057" + ] +} diff --git a/data/software/fo/formbox.json b/data/software/fo/formbox.json new file mode 100644 index 000000000000..f751d58e5b57 --- /dev/null +++ b/data/software/fo/formbox.json @@ -0,0 +1,11 @@ +{ + "slug": "formbox", + "name": "Formbox", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140066918" + ], + "developers": [ + "Health Samurai" + ] +} diff --git a/data/software/fo/formdev.json b/data/software/fo/formdev.json new file mode 100644 index 000000000000..59aa7fd21191 --- /dev/null +++ b/data/software/fo/formdev.json @@ -0,0 +1,8 @@ +{ + "slug": "formdev", + "name": "Formdev", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140249145" + ] +} diff --git a/data/software/fo/formerly-open-source-or-free-software.json b/data/software/fo/formerly-open-source-or-free-software.json new file mode 100644 index 000000000000..394f67e4571c --- /dev/null +++ b/data/software/fo/formerly-open-source-or-free-software.json @@ -0,0 +1,8 @@ +{ + "slug": "formerly-open-source-or-free-software", + "name": "formerly open-source or free software", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136757662" + ] +} diff --git a/data/software/fo/formhug.json b/data/software/fo/formhug.json new file mode 100644 index 000000000000..473d4535580f --- /dev/null +++ b/data/software/fo/formhug.json @@ -0,0 +1,8 @@ +{ + "slug": "formhug", + "name": "FormHug", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139385399" + ] +} diff --git a/data/software/fo/formosa-bbs.json b/data/software/fo/formosa-bbs.json new file mode 100644 index 000000000000..83a0b015dee8 --- /dev/null +++ b/data/software/fo/formosa-bbs.json @@ -0,0 +1,8 @@ +{ + "slug": "formosa-bbs", + "name": "Formosa BBS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62598301" + ] +} diff --git a/data/software/fo/formspring.json b/data/software/fo/formspring.json new file mode 100644 index 000000000000..8871941fc260 --- /dev/null +++ b/data/software/fo/formspring.json @@ -0,0 +1,8 @@ +{ + "slug": "formspring", + "name": "Formspring", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087807" + ] +} diff --git a/data/software/fo/fortext.json b/data/software/fo/fortext.json new file mode 100644 index 000000000000..042d9f1d995c --- /dev/null +++ b/data/software/fo/fortext.json @@ -0,0 +1,8 @@ +{ + "slug": "fortext", + "name": "forTEXT", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084975" + ] +} diff --git a/data/software/fo/fortezza.json b/data/software/fo/fortezza.json new file mode 100644 index 000000000000..e06c0018e5ba --- /dev/null +++ b/data/software/fo/fortezza.json @@ -0,0 +1,11 @@ +{ + "slug": "fortezza", + "name": "Fortezza", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5472575" + ], + "genres": [ + "information security" + ] +} diff --git a/data/software/fo/forthcast.json b/data/software/fo/forthcast.json new file mode 100644 index 000000000000..e1d0664dc94b --- /dev/null +++ b/data/software/fo/forthcast.json @@ -0,0 +1,17 @@ +{ + "slug": "forthcast", + "name": "Forthcast", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139680636" + ], + "developers": [ + "Forthsuite" + ], + "programming_languages": [ + "TypeScript" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/fo/forthclear.json b/data/software/fo/forthclear.json new file mode 100644 index 000000000000..5961550f3fa3 --- /dev/null +++ b/data/software/fo/forthclear.json @@ -0,0 +1,17 @@ +{ + "slug": "forthclear", + "name": "Forthclear", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139689445" + ], + "developers": [ + "Forthsuite" + ], + "programming_languages": [ + "TypeScript" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/fo/forthmatch.json b/data/software/fo/forthmatch.json new file mode 100644 index 000000000000..185619472fe7 --- /dev/null +++ b/data/software/fo/forthmatch.json @@ -0,0 +1,17 @@ +{ + "slug": "forthmatch", + "name": "Forthmatch", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139689426" + ], + "developers": [ + "Forthsuite" + ], + "programming_languages": [ + "TypeScript" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/fo/forthroute.json b/data/software/fo/forthroute.json new file mode 100644 index 000000000000..d544022942d5 --- /dev/null +++ b/data/software/fo/forthroute.json @@ -0,0 +1,17 @@ +{ + "slug": "forthroute", + "name": "Forthroute", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139689376" + ], + "developers": [ + "Forthsuite" + ], + "programming_languages": [ + "TypeScript" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/fo/forthsource.json b/data/software/fo/forthsource.json new file mode 100644 index 000000000000..9ef690bba883 --- /dev/null +++ b/data/software/fo/forthsource.json @@ -0,0 +1,17 @@ +{ + "slug": "forthsource", + "name": "Forthsource", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139689466" + ], + "developers": [ + "Forthsuite" + ], + "programming_languages": [ + "TypeScript" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/fo/forthsuite.json b/data/software/fo/forthsuite.json new file mode 100644 index 000000000000..50673f37380c --- /dev/null +++ b/data/software/fo/forthsuite.json @@ -0,0 +1,14 @@ +{ + "slug": "forthsuite", + "name": "Forthsuite", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139532889" + ], + "programming_languages": [ + "TypeScript" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/fo/fortify-headers.json b/data/software/fo/fortify-headers.json new file mode 100644 index 000000000000..95d91970c177 --- /dev/null +++ b/data/software/fo/fortify-headers.json @@ -0,0 +1,8 @@ +{ + "slug": "fortify-headers", + "name": "fortify-headers", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974855" + ] +} diff --git a/data/software/fo/fortios.json b/data/software/fo/fortios.json new file mode 100644 index 000000000000..fed0a62bfbf3 --- /dev/null +++ b/data/software/fo/fortios.json @@ -0,0 +1,11 @@ +{ + "slug": "fortios", + "name": "FortiOS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q56729972" + ], + "developers": [ + "Fortinet" + ] +} diff --git a/data/software/fo/fortix-2.json b/data/software/fo/fortix-2.json new file mode 100644 index 000000000000..7d92c709658e --- /dev/null +++ b/data/software/fo/fortix-2.json @@ -0,0 +1,12 @@ +{ + "slug": "fortix-2", + "name": "Fortix 2", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q119983074" + ], + "release_date": "2011-05-06", + "genres": [ + "action game" + ] +} diff --git a/data/software/fo/fortmp.json b/data/software/fo/fortmp.json new file mode 100644 index 000000000000..a3a5e6ea64c5 --- /dev/null +++ b/data/software/fo/fortmp.json @@ -0,0 +1,8 @@ +{ + "slug": "fortmp", + "name": "FortMP", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5470693" + ] +} diff --git a/data/software/fo/fortora-fresh-finance.json b/data/software/fo/fortora-fresh-finance.json new file mode 100644 index 000000000000..fbb41d104939 --- /dev/null +++ b/data/software/fo/fortora-fresh-finance.json @@ -0,0 +1,8 @@ +{ + "slug": "fortora-fresh-finance", + "name": "Fortora Fresh Finance", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5472697" + ] +} diff --git a/data/software/fo/fortran-builder.json b/data/software/fo/fortran-builder.json new file mode 100644 index 000000000000..fcfbbb2ff7ee --- /dev/null +++ b/data/software/fo/fortran-builder.json @@ -0,0 +1,8 @@ +{ + "slug": "fortran-builder", + "name": "Fortran Builder", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11200423" + ] +} diff --git a/data/software/fo/fortresscraft-evolved.json b/data/software/fo/fortresscraft-evolved.json new file mode 100644 index 000000000000..82e55a453691 --- /dev/null +++ b/data/software/fo/fortresscraft-evolved.json @@ -0,0 +1,16 @@ +{ + "slug": "fortresscraft-evolved", + "name": "FortressCraft Evolved", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q89282812" + ], + "release_date": "2015-11-09", + "genres": [ + "adventure video game", + "strategy video game", + "role-playing video game", + "casual game", + "simulation video game" + ] +} diff --git a/data/software/fo/fortsp.json b/data/software/fo/fortsp.json new file mode 100644 index 000000000000..fb9d251202d9 --- /dev/null +++ b/data/software/fo/fortsp.json @@ -0,0 +1,8 @@ +{ + "slug": "fortsp", + "name": "FortSP", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5470696" + ] +} diff --git a/data/software/fo/fortune.json b/data/software/fo/fortune.json new file mode 100644 index 000000000000..7249d7efaf47 --- /dev/null +++ b/data/software/fo/fortune.json @@ -0,0 +1,8 @@ +{ + "slug": "fortune", + "name": "fortune", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q491498" + ] +} diff --git a/data/software/fo/forvue.json b/data/software/fo/forvue.json new file mode 100644 index 000000000000..c919a9e9eee4 --- /dev/null +++ b/data/software/fo/forvue.json @@ -0,0 +1,14 @@ +{ + "slug": "forvue", + "name": "ForVue", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138861159" + ], + "developers": [ + "Wise Capital LLC" + ], + "publishers": [ + "Wise Capital LLC" + ] +} diff --git a/data/software/fo/fossdoc.json b/data/software/fo/fossdoc.json new file mode 100644 index 000000000000..60e8305e3f3c --- /dev/null +++ b/data/software/fo/fossdoc.json @@ -0,0 +1,14 @@ +{ + "slug": "fossdoc", + "name": "FossDoc", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4038940" + ], + "operating_systems": [ + "Microsoft Windows" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/fo/fossilo.json b/data/software/fo/fossilo.json new file mode 100644 index 000000000000..e7ffe76384c6 --- /dev/null +++ b/data/software/fo/fossilo.json @@ -0,0 +1,8 @@ +{ + "slug": "fossilo", + "name": "Fossilo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106873542" + ] +} diff --git a/data/software/fo/fotomagico.json b/data/software/fo/fotomagico.json new file mode 100644 index 000000000000..40ad49d43a84 --- /dev/null +++ b/data/software/fo/fotomagico.json @@ -0,0 +1,11 @@ +{ + "slug": "fotomagico", + "name": "FotoMagico", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1439583" + ], + "developers": [ + "Boinx Software" + ] +} diff --git a/data/software/fo/foundry-vtt.json b/data/software/fo/foundry-vtt.json new file mode 100644 index 000000000000..d796d33ced87 --- /dev/null +++ b/data/software/fo/foundry-vtt.json @@ -0,0 +1,8 @@ +{ + "slug": "foundry-vtt", + "name": "Foundry VTT", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134716032" + ] +} diff --git a/data/software/fo/foxmail.json b/data/software/fo/foxmail.json new file mode 100644 index 000000000000..f036e04327d9 --- /dev/null +++ b/data/software/fo/foxmail.json @@ -0,0 +1,18 @@ +{ + "slug": "foxmail", + "name": "Foxmail", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2718098" + ], + "developers": [ + "Zhang Xiaolong", + "Tencent" + ], + "programming_languages": [ + "Object Pascal" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/fp/fping.json b/data/software/fp/fping.json new file mode 100644 index 000000000000..73635bb6a3a2 --- /dev/null +++ b/data/software/fp/fping.json @@ -0,0 +1,8 @@ +{ + "slug": "fping", + "name": "fping", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62849712" + ] +} diff --git a/data/software/fp/fps-creator.json b/data/software/fp/fps-creator.json new file mode 100644 index 000000000000..3f99d4bc3147 --- /dev/null +++ b/data/software/fp/fps-creator.json @@ -0,0 +1,11 @@ +{ + "slug": "fps-creator", + "name": "FPS Creator", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3063380" + ], + "developers": [ + "The Game Creators" + ] +} diff --git a/data/software/fr/fractify-aiscan.json b/data/software/fr/fractify-aiscan.json new file mode 100644 index 000000000000..f3ec42f0075a --- /dev/null +++ b/data/software/fr/fractify-aiscan.json @@ -0,0 +1,18 @@ +{ + "slug": "fractify-aiscan", + "name": "Fractify AIScan", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140027202" + ], + "developers": [ + "Databoost Sdn Bhd" + ], + "operating_systems": [ + "web application", + "iOS" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/fr/fragmotion.json b/data/software/fr/fragmotion.json new file mode 100644 index 000000000000..9e8c5742c817 --- /dev/null +++ b/data/software/fr/fragmotion.json @@ -0,0 +1,8 @@ +{ + "slug": "fragmotion", + "name": "fragMOTION", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124423755" + ] +} diff --git a/data/software/fr/framakey.json b/data/software/fr/framakey.json new file mode 100644 index 000000000000..d532a9b714a2 --- /dev/null +++ b/data/software/fr/framakey.json @@ -0,0 +1,11 @@ +{ + "slug": "framakey", + "name": "Framakey", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28147459" + ], + "developers": [ + "Framasoft" + ] +} diff --git a/data/software/fr/frameforge-3d-studio.json b/data/software/fr/frameforge-3d-studio.json new file mode 100644 index 000000000000..0f38dedc9533 --- /dev/null +++ b/data/software/fr/frameforge-3d-studio.json @@ -0,0 +1,8 @@ +{ + "slug": "frameforge-3d-studio", + "name": "FrameForge 3D Studio", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5477872" + ] +} diff --git a/data/software/fr/framework-for-integrated-test.json b/data/software/fr/framework-for-integrated-test.json new file mode 100644 index 000000000000..62d34ee95250 --- /dev/null +++ b/data/software/fr/framework-for-integrated-test.json @@ -0,0 +1,8 @@ +{ + "slug": "framework-for-integrated-test", + "name": "Framework for Integrated Test", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q572630" + ] +} diff --git a/data/software/fr/framsticks.json b/data/software/fr/framsticks.json new file mode 100644 index 000000000000..14e90bb090f9 --- /dev/null +++ b/data/software/fr/framsticks.json @@ -0,0 +1,8 @@ +{ + "slug": "framsticks", + "name": "Framsticks", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5478064" + ] +} diff --git a/data/software/fr/franca-idl.json b/data/software/fr/franca-idl.json new file mode 100644 index 000000000000..19beedd50c6d --- /dev/null +++ b/data/software/fr/franca-idl.json @@ -0,0 +1,11 @@ +{ + "slug": "franca-idl", + "name": "Franca IDL", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5478242" + ], + "licenses": [ + "Eclipse Public License 1.0" + ] +} diff --git a/data/software/fr/frankki-mcp.json b/data/software/fr/frankki-mcp.json new file mode 100644 index 000000000000..d53f24db8dc0 --- /dev/null +++ b/data/software/fr/frankki-mcp.json @@ -0,0 +1,8 @@ +{ + "slug": "frankki-mcp", + "name": "FrankKi MCP", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140435022" + ] +} diff --git a/data/software/fr/franklin-planner.json b/data/software/fr/franklin-planner.json new file mode 100644 index 000000000000..836df4e0330f --- /dev/null +++ b/data/software/fr/franklin-planner.json @@ -0,0 +1,8 @@ +{ + "slug": "franklin-planner", + "name": "Franklin Planner", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5491760" + ] +} diff --git a/data/software/fr/frantext-stella.json b/data/software/fr/frantext-stella.json new file mode 100644 index 000000000000..d3ebdea4dc9f --- /dev/null +++ b/data/software/fr/frantext-stella.json @@ -0,0 +1,8 @@ +{ + "slug": "frantext-stella", + "name": "FRANTEXT / Stella", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084976" + ] +} diff --git a/data/software/fr/franz-lisp.json b/data/software/fr/franz-lisp.json new file mode 100644 index 000000000000..562f4c0aab1d --- /dev/null +++ b/data/software/fr/franz-lisp.json @@ -0,0 +1,8 @@ +{ + "slug": "franz-lisp", + "name": "Franz Lisp", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5492884" + ] +} diff --git a/data/software/fr/fraunhofer-opensource-sensorthings-server.json b/data/software/fr/fraunhofer-opensource-sensorthings-server.json new file mode 100644 index 000000000000..b084e10bffbb --- /dev/null +++ b/data/software/fr/fraunhofer-opensource-sensorthings-server.json @@ -0,0 +1,17 @@ +{ + "slug": "fraunhofer-opensource-sensorthings-server", + "name": "FRaunhofer Opensource SensorThings-Server", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124361086" + ], + "developers": [ + "Fraunhofer Institute of Optronics, System Technologies and Image Exploitation" + ], + "programming_languages": [ + "Java" + ], + "licenses": [ + "GNU Lesser General Public License, version 3.0" + ] +} diff --git a/data/software/fr/fred-optical-engineering-software.json b/data/software/fr/fred-optical-engineering-software.json new file mode 100644 index 000000000000..91d61b201b44 --- /dev/null +++ b/data/software/fr/fred-optical-engineering-software.json @@ -0,0 +1,14 @@ +{ + "slug": "fred-optical-engineering-software", + "name": "Fred Optical Engineering Software", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5496032" + ], + "developers": [ + "Photon Engineering" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/fr/free-avi-video-converter.json b/data/software/fr/free-avi-video-converter.json new file mode 100644 index 000000000000..63e046cc5334 --- /dev/null +++ b/data/software/fr/free-avi-video-converter.json @@ -0,0 +1,14 @@ +{ + "slug": "free-avi-video-converter", + "name": "Free AVI Video Converter", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16993803" + ], + "developers": [ + "DVDVideoSoft" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/fr/free-protocol.json b/data/software/fr/free-protocol.json new file mode 100644 index 000000000000..f24d21888123 --- /dev/null +++ b/data/software/fr/free-protocol.json @@ -0,0 +1,8 @@ +{ + "slug": "free-protocol", + "name": "Free protocol", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5500276" + ] +} diff --git a/data/software/fr/free-radio-network.json b/data/software/fr/free-radio-network.json new file mode 100644 index 000000000000..b675ffe1c3a9 --- /dev/null +++ b/data/software/fr/free-radio-network.json @@ -0,0 +1,18 @@ +{ + "slug": "free-radio-network", + "name": "Free Radio Network", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1453410" + ], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [ + "Delphi" + ], + "licenses": [ + "proprietary license", + "freeware" + ] +} diff --git a/data/software/fr/free-software-adoption-cases.json b/data/software/fr/free-software-adoption-cases.json new file mode 100644 index 000000000000..49b08d8cfae9 --- /dev/null +++ b/data/software/fr/free-software-adoption-cases.json @@ -0,0 +1,8 @@ +{ + "slug": "free-software-adoption-cases", + "name": "Free software adoption cases", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3605581" + ] +} diff --git a/data/software/fr/free-standard.json b/data/software/fr/free-standard.json new file mode 100644 index 000000000000..64d40e8351e9 --- /dev/null +++ b/data/software/fr/free-standard.json @@ -0,0 +1,8 @@ +{ + "slug": "free-standard", + "name": "Free standard", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5500303" + ] +} diff --git a/data/software/fr/free-youtube-to-mp3-converter.json b/data/software/fr/free-youtube-to-mp3-converter.json new file mode 100644 index 000000000000..7fc8a5b437f9 --- /dev/null +++ b/data/software/fr/free-youtube-to-mp3-converter.json @@ -0,0 +1,8 @@ +{ + "slug": "free-youtube-to-mp3-converter", + "name": "Free YouTube to MP3 Converter", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q13602919" + ] +} diff --git a/data/software/fr/free.json b/data/software/fr/free.json new file mode 100644 index 000000000000..a8ef77a9c989 --- /dev/null +++ b/data/software/fr/free.json @@ -0,0 +1,8 @@ +{ + "slug": "free", + "name": "free", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3087262" + ] +} diff --git a/data/software/fr/freedcamp.json b/data/software/fr/freedcamp.json new file mode 100644 index 000000000000..7ca3cf1976a2 --- /dev/null +++ b/data/software/fr/freedcamp.json @@ -0,0 +1,9 @@ +{ + "slug": "freedcamp", + "name": "Freedcamp", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3087308" + ], + "release_date": "2010-01-01" +} diff --git a/data/software/fr/freedomerp.json b/data/software/fr/freedomerp.json new file mode 100644 index 000000000000..6f89688e97fe --- /dev/null +++ b/data/software/fr/freedomerp.json @@ -0,0 +1,8 @@ +{ + "slug": "freedomerp", + "name": "FreedomERP", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10285853" + ] +} diff --git a/data/software/fr/freefem.json b/data/software/fr/freefem.json new file mode 100644 index 000000000000..9b52a3b33233 --- /dev/null +++ b/data/software/fr/freefem.json @@ -0,0 +1,17 @@ +{ + "slug": "freefem", + "name": "FreeFem++", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5499643" + ], + "release_date": "1987-01-01", + "developers": [ + "Pierre Jolivet", + "Frédéric Hecht", + "Pierre and Marie Curie University" + ], + "licenses": [ + "GNU Lesser General Public License" + ] +} diff --git a/data/software/fr/freeform.json b/data/software/fr/freeform.json new file mode 100644 index 000000000000..5f95a6f9255b --- /dev/null +++ b/data/software/fr/freeform.json @@ -0,0 +1,15 @@ +{ + "slug": "freeform", + "name": "Freeform", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115917025" + ], + "release_date": "2022-12-13", + "operating_systems": [ + "visionOS", + "iPadOS", + "iOS", + "macOS" + ] +} diff --git a/data/software/fr/freeglut.json b/data/software/fr/freeglut.json new file mode 100644 index 000000000000..2616abe91b46 --- /dev/null +++ b/data/software/fr/freeglut.json @@ -0,0 +1,11 @@ +{ + "slug": "freeglut", + "name": "Freeglut", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1948592" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/fr/freemail.json b/data/software/fr/freemail.json new file mode 100644 index 000000000000..4a24cff8d12e --- /dev/null +++ b/data/software/fr/freemail.json @@ -0,0 +1,11 @@ +{ + "slug": "freemail", + "name": "Freemail", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974856" + ], + "licenses": [ + "GNU General Public License, version 2.0" + ] +} diff --git a/data/software/fr/freemake-audio-converter.json b/data/software/fr/freemake-audio-converter.json new file mode 100644 index 000000000000..810c7dacb760 --- /dev/null +++ b/data/software/fr/freemake-audio-converter.json @@ -0,0 +1,11 @@ +{ + "slug": "freemake-audio-converter", + "name": "Freemake Audio Converter", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1326156" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/fr/freemake-music-box.json b/data/software/fr/freemake-music-box.json new file mode 100644 index 000000000000..e229b4f0d27a --- /dev/null +++ b/data/software/fr/freemake-music-box.json @@ -0,0 +1,11 @@ +{ + "slug": "freemake-music-box", + "name": "Freemake Music Box", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5500966" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/fr/freemake-video-downloader.json b/data/software/fr/freemake-video-downloader.json new file mode 100644 index 000000000000..6d21b2b8f952 --- /dev/null +++ b/data/software/fr/freemake-video-downloader.json @@ -0,0 +1,16 @@ +{ + "slug": "freemake-video-downloader", + "name": "Freemake Video Downloader", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1453571" + ], + "operating_systems": [ + "Windows 8.1", + "Windows 7", + "Microsoft Windows" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/fr/freeproxy.json b/data/software/fr/freeproxy.json new file mode 100644 index 000000000000..a5296fe79fea --- /dev/null +++ b/data/software/fr/freeproxy.json @@ -0,0 +1,12 @@ +{ + "slug": "freeproxy", + "name": "FreeProxy", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5499663" + ], + "release_date": "1999-01-01", + "licenses": [ + "freeware" + ] +} diff --git a/data/software/fr/freeqda.json b/data/software/fr/freeqda.json new file mode 100644 index 000000000000..2a848529309b --- /dev/null +++ b/data/software/fr/freeqda.json @@ -0,0 +1,18 @@ +{ + "slug": "freeqda", + "name": "FreeQDA", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105229784" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [ + "Java" + ], + "licenses": [ + "unknown" + ] +} diff --git a/data/software/fr/frees-wan.json b/data/software/fr/frees-wan.json new file mode 100644 index 000000000000..ce05a789d3f6 --- /dev/null +++ b/data/software/fr/frees-wan.json @@ -0,0 +1,11 @@ +{ + "slug": "frees-wan", + "name": "FreeS/WAN", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5499675" + ], + "developers": [ + "John Gilmore" + ] +} diff --git a/data/software/fr/freesurfer.json b/data/software/fr/freesurfer.json new file mode 100644 index 000000000000..8b13b212b4ff --- /dev/null +++ b/data/software/fr/freesurfer.json @@ -0,0 +1,14 @@ +{ + "slug": "freesurfer", + "name": "FreeSurfer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2363545" + ], + "operating_systems": [ + "macOS" + ], + "licenses": [ + "open-source license" + ] +} diff --git a/data/software/fr/freesync.json b/data/software/fr/freesync.json new file mode 100644 index 000000000000..fcd73ecedfdf --- /dev/null +++ b/data/software/fr/freesync.json @@ -0,0 +1,15 @@ +{ + "slug": "freesync", + "name": "FreeSync", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q19878318" + ], + "release_date": "2015-03-19", + "developers": [ + "AMD" + ], + "licenses": [ + "free software" + ] +} diff --git a/data/software/fr/freeundelete.json b/data/software/fr/freeundelete.json new file mode 100644 index 000000000000..8813d95b70c4 --- /dev/null +++ b/data/software/fr/freeundelete.json @@ -0,0 +1,11 @@ +{ + "slug": "freeundelete", + "name": "FreeUndelete", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5499676" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/fr/freeway.json b/data/software/fr/freeway.json new file mode 100644 index 000000000000..f3c9c3d14ace --- /dev/null +++ b/data/software/fr/freeway.json @@ -0,0 +1,11 @@ +{ + "slug": "freeway", + "name": "Freeway", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1403179" + ], + "developers": [ + "Softpress" + ] +} diff --git a/data/software/fr/frequency-sorter.json b/data/software/fr/frequency-sorter.json new file mode 100644 index 000000000000..4489137a7949 --- /dev/null +++ b/data/software/fr/frequency-sorter.json @@ -0,0 +1,8 @@ +{ + "slug": "frequency-sorter", + "name": "Frequency Sorter", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084977" + ] +} diff --git a/data/software/fr/fresco.json b/data/software/fr/fresco.json new file mode 100644 index 000000000000..3b0ed3dd6892 --- /dev/null +++ b/data/software/fr/fresco.json @@ -0,0 +1,11 @@ +{ + "slug": "fresco", + "name": "Fresco", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5502903" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/fr/freshservice.json b/data/software/fr/freshservice.json new file mode 100644 index 000000000000..2d109130e1e5 --- /dev/null +++ b/data/software/fr/freshservice.json @@ -0,0 +1,8 @@ +{ + "slug": "freshservice", + "name": "Freshservice", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137427374" + ] +} diff --git a/data/software/fr/fresnel-editor.json b/data/software/fr/fresnel-editor.json new file mode 100644 index 000000000000..837b84b0a283 --- /dev/null +++ b/data/software/fr/fresnel-editor.json @@ -0,0 +1,8 @@ +{ + "slug": "fresnel-editor", + "name": "Fresnel Editor", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105745539" + ] +} diff --git a/data/software/fr/fret.json b/data/software/fr/fret.json new file mode 100644 index 000000000000..e6b96edda3c1 --- /dev/null +++ b/data/software/fr/fret.json @@ -0,0 +1,8 @@ +{ + "slug": "fret", + "name": "FRET", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123746508" + ] +} diff --git a/data/software/fr/friday-os.json b/data/software/fr/friday-os.json new file mode 100644 index 000000000000..088912db99c3 --- /dev/null +++ b/data/software/fr/friday-os.json @@ -0,0 +1,17 @@ +{ + "slug": "friday-os", + "name": "Friday OS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140010788" + ], + "developers": [ + "Framework Friday" + ], + "operating_systems": [ + "web application" + ], + "genres": [ + "knowledge management software" + ] +} diff --git a/data/software/fr/friendcaller.json b/data/software/fr/friendcaller.json new file mode 100644 index 000000000000..8d868e4d4c10 --- /dev/null +++ b/data/software/fr/friendcaller.json @@ -0,0 +1,14 @@ +{ + "slug": "friendcaller", + "name": "FriendCaller", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5503998" + ], + "developers": [ + "C2Call GmbH" + ], + "programming_languages": [ + "Java" + ] +} diff --git a/data/software/fr/friendlyware.json b/data/software/fr/friendlyware.json new file mode 100644 index 000000000000..1600aced3eb5 --- /dev/null +++ b/data/software/fr/friendlyware.json @@ -0,0 +1,8 @@ +{ + "slug": "friendlyware", + "name": "Friendlyware", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17042310" + ] +} diff --git a/data/software/fr/fring.json b/data/software/fr/fring.json new file mode 100644 index 000000000000..78b397e08ae4 --- /dev/null +++ b/data/software/fr/fring.json @@ -0,0 +1,14 @@ +{ + "slug": "fring", + "name": "Fring", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1938031" + ], + "programming_languages": [ + "Java" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/fr/frog-creator.json b/data/software/fr/frog-creator.json new file mode 100644 index 000000000000..14a882c79b9e --- /dev/null +++ b/data/software/fr/frog-creator.json @@ -0,0 +1,8 @@ +{ + "slug": "frog-creator", + "name": "FRoG Creator", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3063411" + ] +} diff --git a/data/software/fr/fromthepage.json b/data/software/fr/fromthepage.json new file mode 100644 index 000000000000..55e9e5a25b02 --- /dev/null +++ b/data/software/fr/fromthepage.json @@ -0,0 +1,8 @@ +{ + "slug": "fromthepage", + "name": "FromThePage", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084978" + ] +} diff --git a/data/software/fr/front-row.json b/data/software/fr/front-row.json new file mode 100644 index 000000000000..ae3428b7b8b9 --- /dev/null +++ b/data/software/fr/front-row.json @@ -0,0 +1,18 @@ +{ + "slug": "front-row", + "name": "Front Row", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q421105" + ], + "release_date": "2005-10-12", + "developers": [ + "Apple Inc." + ], + "operating_systems": [ + "macOS" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/fr/frontbase.json b/data/software/fr/frontbase.json new file mode 100644 index 000000000000..b12c521c83ff --- /dev/null +++ b/data/software/fr/frontbase.json @@ -0,0 +1,8 @@ +{ + "slug": "frontbase", + "name": "FrontBase", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1469969" + ] +} diff --git a/data/software/fr/frontdoor.json b/data/software/fr/frontdoor.json new file mode 100644 index 000000000000..5c078fc6757f --- /dev/null +++ b/data/software/fr/frontdoor.json @@ -0,0 +1,15 @@ +{ + "slug": "frontdoor", + "name": "FrontDoor", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5505773" + ], + "release_date": "1986-01-01", + "operating_systems": [ + "DOS" + ], + "licenses": [ + "shareware" + ] +} diff --git a/data/software/fr/fronter.json b/data/software/fr/fronter.json new file mode 100644 index 000000000000..d5555178b531 --- /dev/null +++ b/data/software/fr/fronter.json @@ -0,0 +1,12 @@ +{ + "slug": "fronter", + "name": "Fronter", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1782768" + ], + "release_date": "1998-01-01", + "genres": [ + "learning management system" + ] +} diff --git a/data/software/fr/frontman.json b/data/software/fr/frontman.json new file mode 100644 index 000000000000..0cb6c0ad4c02 --- /dev/null +++ b/data/software/fr/frontman.json @@ -0,0 +1,14 @@ +{ + "slug": "frontman", + "name": "Frontman", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138753470" + ], + "operating_systems": [ + "web browser" + ], + "licenses": [ + "Apache Software License 2.0" + ] +} diff --git a/data/software/fr/frontrun.json b/data/software/fr/frontrun.json new file mode 100644 index 000000000000..60fa8eb40f57 --- /dev/null +++ b/data/software/fr/frontrun.json @@ -0,0 +1,11 @@ +{ + "slug": "frontrun", + "name": "Frontrun", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139865681" + ], + "developers": [ + "Frontrun" + ] +} diff --git a/data/software/fr/frost.json b/data/software/fr/frost.json new file mode 100644 index 000000000000..465c37e209b6 --- /dev/null +++ b/data/software/fr/frost.json @@ -0,0 +1,14 @@ +{ + "slug": "frost", + "name": "Frost", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11200552" + ], + "programming_languages": [ + "Java" + ], + "licenses": [ + "GNU General Public License, version 3.0" + ] +} diff --git a/data/software/fr/frrouting.json b/data/software/fr/frrouting.json new file mode 100644 index 000000000000..6de76ce8661d --- /dev/null +++ b/data/software/fr/frrouting.json @@ -0,0 +1,15 @@ +{ + "slug": "frrouting", + "name": "FRRouting", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60768337" + ], + "release_date": "2017-03-04", + "developers": [ + "Linux Foundation" + ], + "licenses": [ + "GNU General Public License, version 2.0 or later" + ] +} diff --git a/data/software/fr/fruux.json b/data/software/fr/fruux.json new file mode 100644 index 000000000000..17c0ff4d4c47 --- /dev/null +++ b/data/software/fr/fruux.json @@ -0,0 +1,12 @@ +{ + "slug": "fruux", + "name": "fruux", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1242120" + ], + "release_date": "2008-09-01", + "developers": [ + "fruux GmbH" + ] +} diff --git a/data/software/fr/fryrender.json b/data/software/fr/fryrender.json new file mode 100644 index 000000000000..82d4d16a905c --- /dev/null +++ b/data/software/fr/fryrender.json @@ -0,0 +1,8 @@ +{ + "slug": "fryrender", + "name": "Fryrender", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5506623" + ] +} diff --git a/data/software/fs/fsdpc.json b/data/software/fs/fsdpc.json new file mode 100644 index 000000000000..1a98acf32d65 --- /dev/null +++ b/data/software/fs/fsdpc.json @@ -0,0 +1,11 @@ +{ + "slug": "fsdpc", + "name": "FSDPC", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q21086946" + ], + "developers": [ + "IBM" + ] +} diff --git a/data/software/fs/fslint.json b/data/software/fs/fslint.json new file mode 100644 index 000000000000..d33c27874b99 --- /dev/null +++ b/data/software/fs/fslint.json @@ -0,0 +1,14 @@ +{ + "slug": "fslint", + "name": "FSlint", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62849893" + ], + "programming_languages": [ + "Python" + ], + "licenses": [ + "GNU General Public License, version 2.0 or later" + ] +} diff --git a/data/software/fs/fsn.json b/data/software/fs/fsn.json new file mode 100644 index 000000000000..40da90b225aa --- /dev/null +++ b/data/software/fs/fsn.json @@ -0,0 +1,14 @@ +{ + "slug": "fsn", + "name": "fsn", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1942812" + ], + "developers": [ + "Silicon Graphics" + ], + "operating_systems": [ + "IRIX" + ] +} diff --git a/data/software/fs/fsqca.json b/data/software/fs/fsqca.json new file mode 100644 index 000000000000..b47b69408e52 --- /dev/null +++ b/data/software/fs/fsqca.json @@ -0,0 +1,15 @@ +{ + "slug": "fsqca", + "name": "fsQCA", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105229746" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/fs/fsx-play-golf-simulator-software.json b/data/software/fs/fsx-play-golf-simulator-software.json new file mode 100644 index 000000000000..5d688467f642 --- /dev/null +++ b/data/software/fs/fsx-play-golf-simulator-software.json @@ -0,0 +1,8 @@ +{ + "slug": "fsx-play-golf-simulator-software", + "name": "FSX Play Golf Simulator Software", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136649257" + ] +} diff --git a/data/software/ft/ftapi.json b/data/software/ft/ftapi.json new file mode 100644 index 000000000000..8ba29e7229b9 --- /dev/null +++ b/data/software/ft/ftapi.json @@ -0,0 +1,8 @@ +{ + "slug": "ftapi", + "name": "FTAPI", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17321584" + ] +} diff --git a/data/software/ft/ftd.json b/data/software/ft/ftd.json new file mode 100644 index 000000000000..4a4e9c327d82 --- /dev/null +++ b/data/software/ft/ftd.json @@ -0,0 +1,8 @@ +{ + "slug": "ftd", + "name": "FTD", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2206957" + ] +} diff --git a/data/software/ft/ftjam.json b/data/software/ft/ftjam.json new file mode 100644 index 000000000000..572c29e91b8a --- /dev/null +++ b/data/software/ft/ftjam.json @@ -0,0 +1,8 @@ +{ + "slug": "ftjam", + "name": "ftjam", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60916594" + ] +} diff --git a/data/software/ft/ftp-commander.json b/data/software/ft/ftp-commander.json new file mode 100644 index 000000000000..24a1f74414ef --- /dev/null +++ b/data/software/ft/ftp-commander.json @@ -0,0 +1,8 @@ +{ + "slug": "ftp-commander", + "name": "FTP Commander", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5427219" + ] +} diff --git a/data/software/ft/ftp-voyager.json b/data/software/ft/ftp-voyager.json new file mode 100644 index 000000000000..f0ab28cc6a39 --- /dev/null +++ b/data/software/ft/ftp-voyager.json @@ -0,0 +1,11 @@ +{ + "slug": "ftp-voyager", + "name": "FTP Voyager", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1389773" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/fu/fuel-manager.json b/data/software/fu/fuel-manager.json new file mode 100644 index 000000000000..62d7747eb3d7 --- /dev/null +++ b/data/software/fu/fuel-manager.json @@ -0,0 +1,14 @@ +{ + "slug": "fuel-manager", + "name": "Fuel Manager", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5507128" + ], + "developers": [ + "Marorka" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/fu/fugitive.json b/data/software/fu/fugitive.json new file mode 100644 index 000000000000..646f07f26667 --- /dev/null +++ b/data/software/fu/fugitive.json @@ -0,0 +1,8 @@ +{ + "slug": "fugitive", + "name": "fugitive", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974857" + ] +} diff --git a/data/software/fu/fugue-machine.json b/data/software/fu/fugue-machine.json new file mode 100644 index 000000000000..6af2efa35284 --- /dev/null +++ b/data/software/fu/fugue-machine.json @@ -0,0 +1,8 @@ +{ + "slug": "fugue-machine", + "name": "Fugue Machine", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q48806558" + ] +} diff --git a/data/software/fu/fujitsu-global-cloud-platform.json b/data/software/fu/fujitsu-global-cloud-platform.json new file mode 100644 index 000000000000..be0c77b28826 --- /dev/null +++ b/data/software/fu/fujitsu-global-cloud-platform.json @@ -0,0 +1,8 @@ +{ + "slug": "fujitsu-global-cloud-platform", + "name": "Fujitsu Global Cloud Platform", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5507501" + ] +} diff --git a/data/software/fu/fukase.json b/data/software/fu/fukase.json new file mode 100644 index 000000000000..ae90d95a84b1 --- /dev/null +++ b/data/software/fu/fukase.json @@ -0,0 +1,9 @@ +{ + "slug": "fukase", + "name": "Fukase", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q24907643" + ], + "release_date": "2016-01-28" +} diff --git a/data/software/fu/full-impact.json b/data/software/fu/full-impact.json new file mode 100644 index 000000000000..55513ea3d5f2 --- /dev/null +++ b/data/software/fu/full-impact.json @@ -0,0 +1,11 @@ +{ + "slug": "full-impact", + "name": "Full Impact", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5508084" + ], + "developers": [ + "Ashton-Tate" + ] +} diff --git a/data/software/fu/functional-mock-up-interface.json b/data/software/fu/functional-mock-up-interface.json new file mode 100644 index 000000000000..4dad30d14a7b --- /dev/null +++ b/data/software/fu/functional-mock-up-interface.json @@ -0,0 +1,8 @@ +{ + "slug": "functional-mock-up-interface", + "name": "Functional Mock-up Interface", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5508789" + ] +} diff --git a/data/software/fu/fundamental-risk.json b/data/software/fu/fundamental-risk.json new file mode 100644 index 000000000000..bfa275df5584 --- /dev/null +++ b/data/software/fu/fundamental-risk.json @@ -0,0 +1,8 @@ +{ + "slug": "fundamental-risk", + "name": "fundamental risk", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10853069" + ] +} diff --git a/data/software/fu/fundraising-platform.json b/data/software/fu/fundraising-platform.json new file mode 100644 index 000000000000..ad885f078cca --- /dev/null +++ b/data/software/fu/fundraising-platform.json @@ -0,0 +1,8 @@ +{ + "slug": "fundraising-platform", + "name": "fundraising platform", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136682809" + ] +} diff --git a/data/software/fu/funes.json b/data/software/fu/funes.json new file mode 100644 index 000000000000..6f419603488a --- /dev/null +++ b/data/software/fu/funes.json @@ -0,0 +1,8 @@ +{ + "slug": "funes", + "name": "FUNES", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084979" + ] +} diff --git a/data/software/fu/funsearch.json b/data/software/fu/funsearch.json new file mode 100644 index 000000000000..7b15a4b57692 --- /dev/null +++ b/data/software/fu/funsearch.json @@ -0,0 +1,8 @@ +{ + "slug": "funsearch", + "name": "FunSearch", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139892340" + ] +} diff --git a/data/software/fu/funshion.json b/data/software/fu/funshion.json new file mode 100644 index 000000000000..2cd5627f0fce --- /dev/null +++ b/data/software/fu/funshion.json @@ -0,0 +1,14 @@ +{ + "slug": "funshion", + "name": "Funshion", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q15995081" + ], + "operating_systems": [ + "Microsoft Windows" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/fu/furryball.json b/data/software/fu/furryball.json new file mode 100644 index 000000000000..6f869946f702 --- /dev/null +++ b/data/software/fu/furryball.json @@ -0,0 +1,9 @@ +{ + "slug": "furryball", + "name": "FurryBall", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18392147" + ], + "release_date": "2009-01-01" +} diff --git a/data/software/fu/furybsd.json b/data/software/fu/furybsd.json new file mode 100644 index 000000000000..a7945915dc42 --- /dev/null +++ b/data/software/fu/furybsd.json @@ -0,0 +1,12 @@ +{ + "slug": "furybsd", + "name": "FuryBSD", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q79027338" + ], + "release_date": "2019-10-24", + "licenses": [ + "BSD licenses" + ] +} diff --git a/data/software/fu/fuse-character-creator.json b/data/software/fu/fuse-character-creator.json new file mode 100644 index 000000000000..193d2951475d --- /dev/null +++ b/data/software/fu/fuse-character-creator.json @@ -0,0 +1,11 @@ +{ + "slug": "fuse-character-creator", + "name": "Fuse Character Creator", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q19866184" + ], + "developers": [ + "Adobe" + ] +} diff --git a/data/software/fu/fuse-esb.json b/data/software/fu/fuse-esb.json new file mode 100644 index 000000000000..89f5831fda50 --- /dev/null +++ b/data/software/fu/fuse-esb.json @@ -0,0 +1,14 @@ +{ + "slug": "fuse-esb", + "name": "Fuse ESB", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5509980" + ], + "developers": [ + "Red Hat" + ], + "programming_languages": [ + "Java" + ] +} diff --git a/data/software/fu/fuse-mediation-router.json b/data/software/fu/fuse-mediation-router.json new file mode 100644 index 000000000000..283ef19be67e --- /dev/null +++ b/data/software/fu/fuse-mediation-router.json @@ -0,0 +1,11 @@ +{ + "slug": "fuse-mediation-router", + "name": "Fuse Mediation Router", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5509983" + ], + "developers": [ + "Red Hat" + ] +} diff --git a/data/software/fu/fuse-message-broker.json b/data/software/fu/fuse-message-broker.json new file mode 100644 index 000000000000..f3471aadebc6 --- /dev/null +++ b/data/software/fu/fuse-message-broker.json @@ -0,0 +1,11 @@ +{ + "slug": "fuse-message-broker", + "name": "Fuse Message Broker", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5509981" + ], + "developers": [ + "Red Hat" + ] +} diff --git a/data/software/fu/fuse-services-framework.json b/data/software/fu/fuse-services-framework.json new file mode 100644 index 000000000000..1c130f75cbe3 --- /dev/null +++ b/data/software/fu/fuse-services-framework.json @@ -0,0 +1,11 @@ +{ + "slug": "fuse-services-framework", + "name": "Fuse Services Framework", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5509986" + ], + "developers": [ + "Red Hat" + ] +} diff --git a/data/software/fu/fuse-zip.json b/data/software/fu/fuse-zip.json new file mode 100644 index 000000000000..c9ecb1f39151 --- /dev/null +++ b/data/software/fu/fuse-zip.json @@ -0,0 +1,8 @@ +{ + "slug": "fuse-zip", + "name": "fuse-zip", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62850390" + ] +} diff --git a/data/software/fu/fuseiso.json b/data/software/fu/fuseiso.json new file mode 100644 index 000000000000..bbd56ee85e2c --- /dev/null +++ b/data/software/fu/fuseiso.json @@ -0,0 +1,8 @@ +{ + "slug": "fuseiso", + "name": "FuseIso", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62849957" + ] +} diff --git a/data/software/fu/fusion-360.json b/data/software/fu/fusion-360.json new file mode 100644 index 000000000000..3e6876de24a7 --- /dev/null +++ b/data/software/fu/fusion-360.json @@ -0,0 +1,8 @@ +{ + "slug": "fusion-360", + "name": "Fusion 360", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110779090" + ] +} diff --git a/data/software/fu/fusionpos.json b/data/software/fu/fusionpos.json new file mode 100644 index 000000000000..67ff84c031a4 --- /dev/null +++ b/data/software/fu/fusionpos.json @@ -0,0 +1,8 @@ +{ + "slug": "fusionpos", + "name": "FusionPOS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113564072" + ] +} diff --git a/data/software/fu/fusionviewer.json b/data/software/fu/fusionviewer.json new file mode 100644 index 000000000000..65b50770d268 --- /dev/null +++ b/data/software/fu/fusionviewer.json @@ -0,0 +1,8 @@ +{ + "slug": "fusionviewer", + "name": "Fusionviewer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5510289" + ] +} diff --git a/data/software/fu/future-pinball.json b/data/software/fu/future-pinball.json new file mode 100644 index 000000000000..85e425b8f192 --- /dev/null +++ b/data/software/fu/future-pinball.json @@ -0,0 +1,11 @@ +{ + "slug": "future-pinball", + "name": "Future Pinball", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5510735" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/fw/fwkcs.json b/data/software/fw/fwkcs.json new file mode 100644 index 000000000000..e97601b39329 --- /dev/null +++ b/data/software/fw/fwkcs.json @@ -0,0 +1,8 @@ +{ + "slug": "fwkcs", + "name": "FWKCS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28756162" + ] +} diff --git a/data/software/fx/fx-photo-studio-q5427412.json b/data/software/fx/fx-photo-studio-q5427412.json new file mode 100644 index 000000000000..d2c91108fb1f --- /dev/null +++ b/data/software/fx/fx-photo-studio-q5427412.json @@ -0,0 +1,8 @@ +{ + "slug": "fx-photo-studio-q5427412", + "name": "FX Photo Studio", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5427412" + ] +} diff --git a/data/software/fx/fx-photo-studio.json b/data/software/fx/fx-photo-studio.json new file mode 100644 index 000000000000..462c9360850a --- /dev/null +++ b/data/software/fx/fx-photo-studio.json @@ -0,0 +1,8 @@ +{ + "slug": "fx-photo-studio", + "name": "FX Photo Studio", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5427410" + ] +} diff --git a/data/software/fy/fynix-co-banking.json b/data/software/fy/fynix-co-banking.json new file mode 100644 index 000000000000..ca4c99b28436 --- /dev/null +++ b/data/software/fy/fynix-co-banking.json @@ -0,0 +1,8 @@ +{ + "slug": "fynix-co-banking", + "name": "Fynix Co-Banking", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139677391" + ] +} diff --git a/data/software/fy/fyracle.json b/data/software/fy/fyracle.json new file mode 100644 index 000000000000..44ddfe078b0a --- /dev/null +++ b/data/software/fy/fyracle.json @@ -0,0 +1,8 @@ +{ + "slug": "fyracle", + "name": "Fyracle", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5511292" + ] +} diff --git a/data/software/fy/fyuse.json b/data/software/fy/fyuse.json new file mode 100644 index 000000000000..bf0896e88e62 --- /dev/null +++ b/data/software/fy/fyuse.json @@ -0,0 +1,8 @@ +{ + "slug": "fyuse", + "name": "Fyuse", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28127366" + ] +} diff --git a/data/software/g-/g-cpan.json b/data/software/g-/g-cpan.json new file mode 100644 index 000000000000..e34941b27c53 --- /dev/null +++ b/data/software/g-/g-cpan.json @@ -0,0 +1,8 @@ +{ + "slug": "g-cpan", + "name": "g-cpan", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974861" + ] +} diff --git a/data/software/g-/g-ho-st.json b/data/software/g-/g-ho-st.json new file mode 100644 index 000000000000..e413ab4e659b --- /dev/null +++ b/data/software/g-/g-ho-st.json @@ -0,0 +1,8 @@ +{ + "slug": "g-ho-st", + "name": "G.ho.st", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1989472" + ] +} diff --git a/data/software/g-/g-power.json b/data/software/g-/g-power.json new file mode 100644 index 000000000000..0d8366ac53f9 --- /dev/null +++ b/data/software/g-/g-power.json @@ -0,0 +1,8 @@ +{ + "slug": "g-power", + "name": "G*Power", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18411871" + ] +} diff --git a/data/software/g-/g-sorcery.json b/data/software/g-/g-sorcery.json new file mode 100644 index 000000000000..b9777e11042d --- /dev/null +++ b/data/software/g-/g-sorcery.json @@ -0,0 +1,8 @@ +{ + "slug": "g-sorcery", + "name": "g-sorcery", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974911" + ] +} diff --git a/data/software/ga/gab-dissenter.json b/data/software/ga/gab-dissenter.json new file mode 100644 index 000000000000..629b07ba6e6c --- /dev/null +++ b/data/software/ga/gab-dissenter.json @@ -0,0 +1,8 @@ +{ + "slug": "gab-dissenter", + "name": "Gab Dissenter", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q61913733" + ] +} diff --git a/data/software/ga/gable-cad.json b/data/software/ga/gable-cad.json new file mode 100644 index 000000000000..cc4f6db8a0b3 --- /dev/null +++ b/data/software/ga/gable-cad.json @@ -0,0 +1,12 @@ +{ + "slug": "gable-cad", + "name": "Gable CAD", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5515418" + ], + "release_date": "1985-01-01", + "developers": [ + "University of Sheffield" + ] +} diff --git a/data/software/ga/gachapoid.json b/data/software/ga/gachapoid.json new file mode 100644 index 000000000000..a7eeb7d2b8f3 --- /dev/null +++ b/data/software/ga/gachapoid.json @@ -0,0 +1,9 @@ +{ + "slug": "gachapoid", + "name": "Gachapoid", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11296022" + ], + "release_date": "2010-10-08" +} diff --git a/data/software/ga/gadgettrak.json b/data/software/ga/gadgettrak.json new file mode 100644 index 000000000000..008ce732c701 --- /dev/null +++ b/data/software/ga/gadgettrak.json @@ -0,0 +1,14 @@ +{ + "slug": "gadgettrak", + "name": "GadgetTrak", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16993904" + ], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [ + "Objective-C" + ] +} diff --git a/data/software/ga/gaggle.json b/data/software/ga/gaggle.json new file mode 100644 index 000000000000..ce879c8c8b34 --- /dev/null +++ b/data/software/ga/gaggle.json @@ -0,0 +1,8 @@ +{ + "slug": "gaggle", + "name": "Gaggle", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113659147" + ] +} diff --git a/data/software/ga/gaia.json b/data/software/ga/gaia.json new file mode 100644 index 000000000000..94ade753829f --- /dev/null +++ b/data/software/ga/gaia.json @@ -0,0 +1,8 @@ +{ + "slug": "gaia", + "name": "Gaia", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q20871234" + ] +} diff --git a/data/software/ga/gal-ne.json b/data/software/ga/gal-ne.json new file mode 100644 index 000000000000..623d6b5106a2 --- /dev/null +++ b/data/software/ga/gal-ne.json @@ -0,0 +1,8 @@ +{ + "slug": "gal-ne", + "name": "Galène", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122815546" + ] +} diff --git a/data/software/ga/gala.json b/data/software/ga/gala.json new file mode 100644 index 000000000000..bd85ab2e574c --- /dev/null +++ b/data/software/ga/gala.json @@ -0,0 +1,18 @@ +{ + "slug": "gala", + "name": "Gala", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130549584" + ], + "developers": [ + "Edward Waisanen" + ], + "programming_languages": [ + "Ruby on Rails", + "React" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/ga/galaco.json b/data/software/ga/galaco.json new file mode 100644 index 000000000000..8b7d74986fcf --- /dev/null +++ b/data/software/ga/galaco.json @@ -0,0 +1,9 @@ +{ + "slug": "galaco", + "name": "Galaco", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28956412" + ], + "release_date": "2012-08-05" +} diff --git a/data/software/ga/galago.json b/data/software/ga/galago.json new file mode 100644 index 000000000000..126e6a40cf0b --- /dev/null +++ b/data/software/ga/galago.json @@ -0,0 +1,8 @@ +{ + "slug": "galago", + "name": "Galago", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5517888" + ] +} diff --git a/data/software/ga/galaksija-basic.json b/data/software/ga/galaksija-basic.json new file mode 100644 index 000000000000..93d5078e3417 --- /dev/null +++ b/data/software/ga/galaksija-basic.json @@ -0,0 +1,8 @@ +{ + "slug": "galaksija-basic", + "name": "Galaksija BASIC", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5517904" + ] +} diff --git a/data/software/ga/galaxy-store.json b/data/software/ga/galaxy-store.json new file mode 100644 index 000000000000..7e04b2e1aeee --- /dev/null +++ b/data/software/ga/galaxy-store.json @@ -0,0 +1,15 @@ +{ + "slug": "galaxy-store", + "name": "Galaxy Store", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q484531" + ], + "release_date": "2009-01-01", + "developers": [ + "Samsung Electronics" + ], + "publishers": [ + "Samsung Electronics" + ] +} diff --git a/data/software/ga/galculator.json b/data/software/ga/galculator.json new file mode 100644 index 000000000000..f7305237a0ee --- /dev/null +++ b/data/software/ga/galculator.json @@ -0,0 +1,8 @@ +{ + "slug": "galculator", + "name": "galculator", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130638631" + ] +} diff --git a/data/software/ga/galen-framework.json b/data/software/ga/galen-framework.json new file mode 100644 index 000000000000..eeffb0d55bf9 --- /dev/null +++ b/data/software/ga/galen-framework.json @@ -0,0 +1,14 @@ +{ + "slug": "galen-framework", + "name": "Galen Framework", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22661275" + ], + "programming_languages": [ + "Java" + ], + "licenses": [ + "Apache License" + ] +} diff --git a/data/software/ga/gallery-software.json b/data/software/ga/gallery-software.json new file mode 100644 index 000000000000..a6746e20ddb1 --- /dev/null +++ b/data/software/ga/gallery-software.json @@ -0,0 +1,8 @@ +{ + "slug": "gallery-software", + "name": "Gallery Software", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18356904" + ] +} diff --git a/data/software/ga/galleta.json b/data/software/ga/galleta.json new file mode 100644 index 000000000000..41d60be69095 --- /dev/null +++ b/data/software/ga/galleta.json @@ -0,0 +1,8 @@ +{ + "slug": "galleta", + "name": "galleta", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127418913" + ] +} diff --git a/data/software/ga/gambit.json b/data/software/ga/gambit.json new file mode 100644 index 000000000000..951f33fd23c0 --- /dev/null +++ b/data/software/ga/gambit.json @@ -0,0 +1,11 @@ +{ + "slug": "gambit", + "name": "Gambit", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065589" + ], + "licenses": [ + "Creative Commons CC0 License" + ] +} diff --git a/data/software/ga/game-center.json b/data/software/ga/game-center.json new file mode 100644 index 000000000000..04bfc669f6be --- /dev/null +++ b/data/software/ga/game-center.json @@ -0,0 +1,8 @@ +{ + "slug": "game-center", + "name": "Game Center", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1251280" + ] +} diff --git a/data/software/ga/game-jackal.json b/data/software/ga/game-jackal.json new file mode 100644 index 000000000000..8b74d9ce7871 --- /dev/null +++ b/data/software/ga/game-jackal.json @@ -0,0 +1,11 @@ +{ + "slug": "game-jackal", + "name": "Game Jackal", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1493053" + ], + "developers": [ + "RedFox" + ] +} diff --git a/data/software/ga/game-of-trees-web-daemon.json b/data/software/ga/game-of-trees-web-daemon.json new file mode 100644 index 000000000000..47c6a1de35d0 --- /dev/null +++ b/data/software/ga/game-of-trees-web-daemon.json @@ -0,0 +1,8 @@ +{ + "slug": "game-of-trees-web-daemon", + "name": "Game of Trees Web Daemon", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125968140" + ] +} diff --git a/data/software/ga/game-server-browser.json b/data/software/ga/game-server-browser.json new file mode 100644 index 000000000000..c8d6039eda0d --- /dev/null +++ b/data/software/ga/game-server-browser.json @@ -0,0 +1,8 @@ +{ + "slug": "game-server-browser", + "name": "game server browser", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5519970" + ] +} diff --git a/data/software/ga/gameagent.json b/data/software/ga/gameagent.json new file mode 100644 index 000000000000..5a65866c82bf --- /dev/null +++ b/data/software/ga/gameagent.json @@ -0,0 +1,11 @@ +{ + "slug": "gameagent", + "name": "GameAgent", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5519761" + ], + "developers": [ + "Aspyr" + ] +} diff --git a/data/software/ga/gamechat.json b/data/software/ga/gamechat.json new file mode 100644 index 000000000000..dc184e816175 --- /dev/null +++ b/data/software/ga/gamechat.json @@ -0,0 +1,8 @@ +{ + "slug": "gamechat", + "name": "GameChat", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137783612" + ] +} diff --git a/data/software/ga/gameday.json b/data/software/ga/gameday.json new file mode 100644 index 000000000000..3512da6a7b26 --- /dev/null +++ b/data/software/ga/gameday.json @@ -0,0 +1,8 @@ +{ + "slug": "gameday", + "name": "GameDay", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5519773" + ] +} diff --git a/data/software/ga/gamengen.json b/data/software/ga/gamengen.json new file mode 100644 index 000000000000..ca26d0228e7f --- /dev/null +++ b/data/software/ga/gamengen.json @@ -0,0 +1,9 @@ +{ + "slug": "gamengen", + "name": "GameNGen", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135419843" + ], + "release_date": "2024-08-27" +} diff --git a/data/software/ga/gamera.json b/data/software/ga/gamera.json new file mode 100644 index 000000000000..d37a0e33007d --- /dev/null +++ b/data/software/ga/gamera.json @@ -0,0 +1,8 @@ +{ + "slug": "gamera", + "name": "Gamera", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084980" + ] +} diff --git a/data/software/ga/gameranger.json b/data/software/ga/gameranger.json new file mode 100644 index 000000000000..cce4b19a36ce --- /dev/null +++ b/data/software/ga/gameranger.json @@ -0,0 +1,11 @@ +{ + "slug": "gameranger", + "name": "GameRanger", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3757948" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/ga/games-for-windows-live.json b/data/software/ga/games-for-windows-live.json new file mode 100644 index 000000000000..c7b31ee553e8 --- /dev/null +++ b/data/software/ga/games-for-windows-live.json @@ -0,0 +1,11 @@ +{ + "slug": "games-for-windows-live", + "name": "Games for Windows – Live", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2991004" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/ga/games-for-windows.json b/data/software/ga/games-for-windows.json new file mode 100644 index 000000000000..37d4a596c19f --- /dev/null +++ b/data/software/ga/games-for-windows.json @@ -0,0 +1,8 @@ +{ + "slug": "games-for-windows", + "name": "Games for Windows", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1062711" + ] +} diff --git a/data/software/ga/gameshadow.json b/data/software/ga/gameshadow.json new file mode 100644 index 000000000000..210e41aa3147 --- /dev/null +++ b/data/software/ga/gameshadow.json @@ -0,0 +1,8 @@ +{ + "slug": "gameshadow", + "name": "GameShadow", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5519789" + ] +} diff --git a/data/software/ga/gamespy.json b/data/software/ga/gamespy.json new file mode 100644 index 000000000000..c5f3e5cc2ddd --- /dev/null +++ b/data/software/ga/gamespy.json @@ -0,0 +1,8 @@ +{ + "slug": "gamespy", + "name": "GameSpy", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q281239" + ] +} diff --git a/data/software/ga/gamess.json b/data/software/ga/gamess.json new file mode 100644 index 000000000000..9d8903001f6c --- /dev/null +++ b/data/software/ga/gamess.json @@ -0,0 +1,14 @@ +{ + "slug": "gamess", + "name": "GAMESS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q400744" + ], + "developers": [ + "Iowa State University" + ], + "programming_languages": [ + "Fortran" + ] +} diff --git a/data/software/ga/gamgi.json b/data/software/ga/gamgi.json new file mode 100644 index 000000000000..782d138ca13b --- /dev/null +++ b/data/software/ga/gamgi.json @@ -0,0 +1,11 @@ +{ + "slug": "gamgi", + "name": "GAMGI", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125092641" + ], + "licenses": [ + "GNU General Public License, version 3.0" + ] +} diff --git a/data/software/ga/gamification-software.json b/data/software/ga/gamification-software.json new file mode 100644 index 000000000000..b7ee522029f5 --- /dev/null +++ b/data/software/ga/gamification-software.json @@ -0,0 +1,8 @@ +{ + "slug": "gamification-software", + "name": "Gamification software", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135527129" + ] +} diff --git a/data/software/ga/gamin.json b/data/software/ga/gamin.json new file mode 100644 index 000000000000..25acebbe8807 --- /dev/null +++ b/data/software/ga/gamin.json @@ -0,0 +1,8 @@ +{ + "slug": "gamin", + "name": "Gamin", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4039254" + ] +} diff --git a/data/software/ga/gamma.json b/data/software/ga/gamma.json new file mode 100644 index 000000000000..c4e3263d5b8a --- /dev/null +++ b/data/software/ga/gamma.json @@ -0,0 +1,8 @@ +{ + "slug": "gamma", + "name": "Gamma", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139552981" + ] +} diff --git a/data/software/ga/gams.json b/data/software/ga/gams.json new file mode 100644 index 000000000000..f3a6755fbea5 --- /dev/null +++ b/data/software/ga/gams.json @@ -0,0 +1,8 @@ +{ + "slug": "gams", + "name": "GAMS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084981" + ] +} diff --git a/data/software/ga/ganeti-instance-image.json b/data/software/ga/ganeti-instance-image.json new file mode 100644 index 000000000000..9501f1c70459 --- /dev/null +++ b/data/software/ga/ganeti-instance-image.json @@ -0,0 +1,8 @@ +{ + "slug": "ganeti-instance-image", + "name": "ganeti-instance-image", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974858" + ] +} diff --git a/data/software/ga/gap-messenger.json b/data/software/ga/gap-messenger.json new file mode 100644 index 000000000000..11bb83451a1e --- /dev/null +++ b/data/software/ga/gap-messenger.json @@ -0,0 +1,12 @@ +{ + "slug": "gap-messenger", + "name": "Gap Messenger", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q58003860" + ], + "operating_systems": [ + "iOS", + "Microsoft Windows" + ] +} diff --git a/data/software/ga/gapvis.json b/data/software/ga/gapvis.json new file mode 100644 index 000000000000..7d99b7a0dc71 --- /dev/null +++ b/data/software/ga/gapvis.json @@ -0,0 +1,8 @@ +{ + "slug": "gapvis", + "name": "GapVis", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084984" + ] +} diff --git a/data/software/ga/gar.json b/data/software/ga/gar.json new file mode 100644 index 000000000000..b53da422a4f6 --- /dev/null +++ b/data/software/ga/gar.json @@ -0,0 +1,8 @@ +{ + "slug": "gar", + "name": "GAR", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110429369" + ] +} diff --git a/data/software/ga/garak.json b/data/software/ga/garak.json new file mode 100644 index 000000000000..603e1fea36b0 --- /dev/null +++ b/data/software/ga/garak.json @@ -0,0 +1,8 @@ +{ + "slug": "garak", + "name": "Garak", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136346073" + ] +} diff --git a/data/software/ga/garant.json b/data/software/ga/garant.json new file mode 100644 index 000000000000..037977335c1a --- /dev/null +++ b/data/software/ga/garant.json @@ -0,0 +1,16 @@ +{ + "slug": "garant", + "name": "Garant", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16251052" + ], + "operating_systems": [ + "Astra Linux", + "iOS", + "Microsoft Windows" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/ga/garry-s-mod-addon-creator-and-extractor.json b/data/software/ga/garry-s-mod-addon-creator-and-extractor.json new file mode 100644 index 000000000000..fccbe3a9b237 --- /dev/null +++ b/data/software/ga/garry-s-mod-addon-creator-and-extractor.json @@ -0,0 +1,8 @@ +{ + "slug": "garry-s-mod-addon-creator-and-extractor", + "name": "Garry's Mod Addon Creator and Extractor", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q65946960" + ] +} diff --git a/data/software/ga/garstow.json b/data/software/ga/garstow.json new file mode 100644 index 000000000000..1b043b69ff0f --- /dev/null +++ b/data/software/ga/garstow.json @@ -0,0 +1,8 @@ +{ + "slug": "garstow", + "name": "GARstow", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110429577" + ] +} diff --git a/data/software/ga/garv-app.json b/data/software/ga/garv-app.json new file mode 100644 index 000000000000..193d6cd0b6bb --- /dev/null +++ b/data/software/ga/garv-app.json @@ -0,0 +1,11 @@ +{ + "slug": "garv-app", + "name": "GARV app", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28957010" + ], + "developers": [ + "Rural Electrification Corporation Limited" + ] +} diff --git a/data/software/ga/gasty.json b/data/software/ga/gasty.json new file mode 100644 index 000000000000..1c60ed94bd38 --- /dev/null +++ b/data/software/ga/gasty.json @@ -0,0 +1,8 @@ +{ + "slug": "gasty", + "name": "Gasty", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140225693" + ] +} diff --git a/data/software/ga/gatekeeper-q28451423.json b/data/software/ga/gatekeeper-q28451423.json new file mode 100644 index 000000000000..e1e543a120c3 --- /dev/null +++ b/data/software/ga/gatekeeper-q28451423.json @@ -0,0 +1,11 @@ +{ + "slug": "gatekeeper-q28451423", + "name": "GateKeeper", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28451423" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/ga/gatekeeper-q96678585.json b/data/software/ga/gatekeeper-q96678585.json new file mode 100644 index 000000000000..1e3a3e13715a --- /dev/null +++ b/data/software/ga/gatekeeper-q96678585.json @@ -0,0 +1,11 @@ +{ + "slug": "gatekeeper-q96678585", + "name": "Gatekeeper", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q96678585" + ], + "developers": [ + "Google" + ] +} diff --git a/data/software/ga/gatekeeper.json b/data/software/ga/gatekeeper.json new file mode 100644 index 000000000000..30751cfc35ea --- /dev/null +++ b/data/software/ga/gatekeeper.json @@ -0,0 +1,14 @@ +{ + "slug": "gatekeeper", + "name": "Gatekeeper", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5527069" + ], + "developers": [ + "Apple Inc." + ], + "operating_systems": [ + "macOS" + ] +} diff --git a/data/software/ga/gates-of-andaron.json b/data/software/ga/gates-of-andaron.json new file mode 100644 index 000000000000..778faf56b391 --- /dev/null +++ b/data/software/ga/gates-of-andaron.json @@ -0,0 +1,8 @@ +{ + "slug": "gates-of-andaron", + "name": "Gates of Andaron", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140354972" + ] +} diff --git a/data/software/ga/gatgpt.json b/data/software/ga/gatgpt.json new file mode 100644 index 000000000000..41da8dde5780 --- /dev/null +++ b/data/software/ga/gatgpt.json @@ -0,0 +1,8 @@ +{ + "slug": "gatgpt", + "name": "GatGPT", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122981231" + ] +} diff --git a/data/software/ga/gatk.json b/data/software/ga/gatk.json new file mode 100644 index 000000000000..6191bb3e396c --- /dev/null +++ b/data/software/ga/gatk.json @@ -0,0 +1,11 @@ +{ + "slug": "gatk", + "name": "gatk", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974859" + ], + "developers": [ + "David \"Broad\" Benjamin" + ] +} diff --git a/data/software/ga/gazelle.json b/data/software/ga/gazelle.json new file mode 100644 index 000000000000..bcc75121030d --- /dev/null +++ b/data/software/ga/gazelle.json @@ -0,0 +1,8 @@ +{ + "slug": "gazelle", + "name": "Gazelle", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1496637" + ] +} diff --git a/data/software/gb/gba4ios.json b/data/software/gb/gba4ios.json new file mode 100644 index 000000000000..ffe312f8b471 --- /dev/null +++ b/data/software/gb/gba4ios.json @@ -0,0 +1,14 @@ +{ + "slug": "gba4ios", + "name": "GBA4iOS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131583562" + ], + "developers": [ + "Riley Testut" + ], + "licenses": [ + "GNU General Public License, version 2.0" + ] +} diff --git a/data/software/gb/gbehistun.json b/data/software/gb/gbehistun.json new file mode 100644 index 000000000000..f756072c00a9 --- /dev/null +++ b/data/software/gb/gbehistun.json @@ -0,0 +1,8 @@ +{ + "slug": "gbehistun", + "name": "Gbehistun", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76183188" + ] +} diff --git a/data/software/gb/gbtoolsid.json b/data/software/gb/gbtoolsid.json new file mode 100644 index 000000000000..7f8896591b1f --- /dev/null +++ b/data/software/gb/gbtoolsid.json @@ -0,0 +1,11 @@ +{ + "slug": "gbtoolsid", + "name": "gbtoolsid", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122199923" + ], + "licenses": [ + "Unlicense" + ] +} diff --git a/data/software/gc/gc-ai.json b/data/software/gc/gc-ai.json new file mode 100644 index 000000000000..2a3c626b8dc3 --- /dev/null +++ b/data/software/gc/gc-ai.json @@ -0,0 +1,8 @@ +{ + "slug": "gc-ai", + "name": "GC AI", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137380835" + ] +} diff --git a/data/software/gc/gcalcli.json b/data/software/gc/gcalcli.json new file mode 100644 index 000000000000..cf8b8279776d --- /dev/null +++ b/data/software/gc/gcalcli.json @@ -0,0 +1,8 @@ +{ + "slug": "gcalcli", + "name": "gcalcli", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62850463" + ] +} diff --git a/data/software/gc/gcfscape.json b/data/software/gc/gcfscape.json new file mode 100644 index 000000000000..d8c9ec416b90 --- /dev/null +++ b/data/software/gc/gcfscape.json @@ -0,0 +1,8 @@ +{ + "slug": "gcfscape", + "name": "GCFScape", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124423695" + ] +} diff --git a/data/software/gc/gcin.json b/data/software/gc/gcin.json new file mode 100644 index 000000000000..ab20daa442ce --- /dev/null +++ b/data/software/gc/gcin.json @@ -0,0 +1,8 @@ +{ + "slug": "gcin", + "name": "gcin", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10847303" + ] +} diff --git a/data/software/gc/gcolor2.json b/data/software/gc/gcolor2.json new file mode 100644 index 000000000000..13dab70043e0 --- /dev/null +++ b/data/software/gc/gcolor2.json @@ -0,0 +1,8 @@ +{ + "slug": "gcolor2", + "name": "gcolor2", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62850473" + ] +} diff --git a/data/software/gc/gcube-system.json b/data/software/gc/gcube-system.json new file mode 100644 index 000000000000..c02b5fdfd62d --- /dev/null +++ b/data/software/gc/gcube-system.json @@ -0,0 +1,8 @@ +{ + "slug": "gcube-system", + "name": "GCube system", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106935968" + ] +} diff --git a/data/software/gd/gdk-pixbuf-loader-webp.json b/data/software/gd/gdk-pixbuf-loader-webp.json new file mode 100644 index 000000000000..d2bfa06076ba --- /dev/null +++ b/data/software/gd/gdk-pixbuf-loader-webp.json @@ -0,0 +1,11 @@ +{ + "slug": "gdk-pixbuf-loader-webp", + "name": "gdk-pixbuf-loader-webp", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974862" + ], + "licenses": [ + "GNU Library General Public License, version 2.0 or later" + ] +} diff --git a/data/software/ge/geditcom.json b/data/software/ge/geditcom.json new file mode 100644 index 000000000000..afad356f03b5 --- /dev/null +++ b/data/software/ge/geditcom.json @@ -0,0 +1,8 @@ +{ + "slug": "geditcom", + "name": "GEDitCOM", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5513142" + ] +} diff --git a/data/software/ge/geekbench.json b/data/software/ge/geekbench.json new file mode 100644 index 000000000000..62a7b7c49fca --- /dev/null +++ b/data/software/ge/geekbench.json @@ -0,0 +1,8 @@ +{ + "slug": "geekbench", + "name": "Geekbench", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q20708054" + ] +} diff --git a/data/software/ge/geforce-experience.json b/data/software/ge/geforce-experience.json new file mode 100644 index 000000000000..96e32b5bdbde --- /dev/null +++ b/data/software/ge/geforce-experience.json @@ -0,0 +1,11 @@ +{ + "slug": "geforce-experience", + "name": "GeForce Experience", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120986537" + ], + "developers": [ + "Nvidia" + ] +} diff --git a/data/software/ge/gekkofs.json b/data/software/ge/gekkofs.json new file mode 100644 index 000000000000..b0663356a69c --- /dev/null +++ b/data/software/ge/gekkofs.json @@ -0,0 +1,8 @@ +{ + "slug": "gekkofs", + "name": "GekkoFS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117852532" + ] +} diff --git a/data/software/ge/gem5.json b/data/software/ge/gem5.json new file mode 100644 index 000000000000..5299d7bf4e98 --- /dev/null +++ b/data/software/ge/gem5.json @@ -0,0 +1,8 @@ +{ + "slug": "gem5", + "name": "Gem5", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q85762894" + ] +} diff --git a/data/software/ge/gemato.json b/data/software/ge/gemato.json new file mode 100644 index 000000000000..3808c08e3f0c --- /dev/null +++ b/data/software/ge/gemato.json @@ -0,0 +1,8 @@ +{ + "slug": "gemato", + "name": "gemato", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065376" + ] +} diff --git a/data/software/ge/gemini-blueprint.json b/data/software/ge/gemini-blueprint.json new file mode 100644 index 000000000000..33b615e489f6 --- /dev/null +++ b/data/software/ge/gemini-blueprint.json @@ -0,0 +1,8 @@ +{ + "slug": "gemini-blueprint", + "name": "Gemini Blueprint", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76167636" + ] +} diff --git a/data/software/ge/gemini-dbaccess.json b/data/software/ge/gemini-dbaccess.json new file mode 100644 index 000000000000..6555d03cd094 --- /dev/null +++ b/data/software/ge/gemini-dbaccess.json @@ -0,0 +1,8 @@ +{ + "slug": "gemini-dbaccess", + "name": "Gemini DBAccess", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76167948" + ] +} diff --git a/data/software/ge/gemini-enterprise-modules-project.json b/data/software/ge/gemini-enterprise-modules-project.json new file mode 100644 index 000000000000..79505d44cee1 --- /dev/null +++ b/data/software/ge/gemini-enterprise-modules-project.json @@ -0,0 +1,8 @@ +{ + "slug": "gemini-enterprise-modules-project", + "name": "Gemini - Enterprise Modules Project", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76167616" + ] +} diff --git a/data/software/ge/gemini-jpa.json b/data/software/ge/gemini-jpa.json new file mode 100644 index 000000000000..97b9d79039df --- /dev/null +++ b/data/software/ge/gemini-jpa.json @@ -0,0 +1,8 @@ +{ + "slug": "gemini-jpa", + "name": "Gemini JPA", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76167932" + ] +} diff --git a/data/software/ge/gemini-management.json b/data/software/ge/gemini-management.json new file mode 100644 index 000000000000..dde9bae9746c --- /dev/null +++ b/data/software/ge/gemini-management.json @@ -0,0 +1,8 @@ +{ + "slug": "gemini-management", + "name": "Gemini Management", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76167907" + ] +} diff --git a/data/software/ge/gemini-web.json b/data/software/ge/gemini-web.json new file mode 100644 index 000000000000..4db125076a4f --- /dev/null +++ b/data/software/ge/gemini-web.json @@ -0,0 +1,8 @@ +{ + "slug": "gemini-web", + "name": "Gemini Web", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76167881" + ] +} diff --git a/data/software/ge/gemini.json b/data/software/ge/gemini.json new file mode 100644 index 000000000000..8f671df29a31 --- /dev/null +++ b/data/software/ge/gemini.json @@ -0,0 +1,8 @@ +{ + "slug": "gemini", + "name": "Gemini", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4039313" + ] +} diff --git a/data/software/ge/gemix-studio.json b/data/software/ge/gemix-studio.json new file mode 100644 index 000000000000..2aea986acf39 --- /dev/null +++ b/data/software/ge/gemix-studio.json @@ -0,0 +1,8 @@ +{ + "slug": "gemix-studio", + "name": "Gemix Studio", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5876695" + ] +} diff --git a/data/software/ge/gemulator.json b/data/software/ge/gemulator.json new file mode 100644 index 000000000000..e128c7b5d015 --- /dev/null +++ b/data/software/ge/gemulator.json @@ -0,0 +1,11 @@ +{ + "slug": "gemulator", + "name": "Gemulator", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1501207" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/ge/gene-designer.json b/data/software/ge/gene-designer.json new file mode 100644 index 000000000000..03ee66a94a05 --- /dev/null +++ b/data/software/ge/gene-designer.json @@ -0,0 +1,14 @@ +{ + "slug": "gene-designer", + "name": "Gene Designer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5531177" + ], + "operating_systems": [ + "Microsoft Windows" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/ge/gene-expression-dynamics-inspector.json b/data/software/ge/gene-expression-dynamics-inspector.json new file mode 100644 index 000000000000..cd3fbdf54717 --- /dev/null +++ b/data/software/ge/gene-expression-dynamics-inspector.json @@ -0,0 +1,11 @@ +{ + "slug": "gene-expression-dynamics-inspector", + "name": "Gene Expression Dynamics Inspector", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113338282" + ], + "programming_languages": [ + "MATLAB" + ] +} diff --git a/data/software/ge/geneious.json b/data/software/ge/geneious.json new file mode 100644 index 000000000000..8ea6f4128d96 --- /dev/null +++ b/data/software/ge/geneious.json @@ -0,0 +1,11 @@ +{ + "slug": "geneious", + "name": "Geneious", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5531616" + ], + "developers": [ + "Biomatters" + ] +} diff --git a/data/software/ge/genemark.json b/data/software/ge/genemark.json new file mode 100644 index 000000000000..7ddfb970e3f7 --- /dev/null +++ b/data/software/ge/genemark.json @@ -0,0 +1,15 @@ +{ + "slug": "genemark", + "name": "GeneMark", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16335160" + ], + "release_date": "1993-01-01", + "developers": [ + "Georgia Tech" + ], + "operating_systems": [ + "macOS" + ] +} diff --git a/data/software/ge/genepattern.json b/data/software/ge/genepattern.json new file mode 100644 index 000000000000..bf9ecb03bef2 --- /dev/null +++ b/data/software/ge/genepattern.json @@ -0,0 +1,11 @@ +{ + "slug": "genepattern", + "name": "GenePattern", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5531054" + ], + "developers": [ + "Broad Institute" + ] +} diff --git a/data/software/ge/general-graphics-interface.json b/data/software/ge/general-graphics-interface.json new file mode 100644 index 000000000000..b3963c31c7b0 --- /dev/null +++ b/data/software/ge/general-graphics-interface.json @@ -0,0 +1,11 @@ +{ + "slug": "general-graphics-interface", + "name": "General Graphics Interface", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5531930" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/ge/general-inquirer-category.json b/data/software/ge/general-inquirer-category.json new file mode 100644 index 000000000000..b5d4a4e53fe6 --- /dev/null +++ b/data/software/ge/general-inquirer-category.json @@ -0,0 +1,8 @@ +{ + "slug": "general-inquirer-category", + "name": "General Inquirer Category", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084985" + ] +} diff --git a/data/software/ge/generalized-environmental-modeling-system-for-surfacewaters.json b/data/software/ge/generalized-environmental-modeling-system-for-surfacewaters.json new file mode 100644 index 000000000000..3beca8d42129 --- /dev/null +++ b/data/software/ge/generalized-environmental-modeling-system-for-surfacewaters.json @@ -0,0 +1,11 @@ +{ + "slug": "generalized-environmental-modeling-system-for-surfacewaters", + "name": "Generalized Environmental Modeling System for Surfacewaters", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5532433" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/ge/generic-linked-database.json b/data/software/ge/generic-linked-database.json new file mode 100644 index 000000000000..e46fcce6e299 --- /dev/null +++ b/data/software/ge/generic-linked-database.json @@ -0,0 +1,14 @@ +{ + "slug": "generic-linked-database", + "name": "generic-linked-database", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131579929" + ], + "developers": [ + "Matthias Probst" + ], + "programming_languages": [ + "Python" + ] +} diff --git a/data/software/ge/genevestigator.json b/data/software/ge/genevestigator.json new file mode 100644 index 000000000000..f06661e74b5c --- /dev/null +++ b/data/software/ge/genevestigator.json @@ -0,0 +1,11 @@ +{ + "slug": "genevestigator", + "name": "Genevestigator", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q30178153" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/ge/genext2fs.json b/data/software/ge/genext2fs.json new file mode 100644 index 000000000000..9ed780703f40 --- /dev/null +++ b/data/software/ge/genext2fs.json @@ -0,0 +1,8 @@ +{ + "slug": "genext2fs", + "name": "genext2fs", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62850739" + ] +} diff --git a/data/software/ge/gengen.json b/data/software/ge/gengen.json new file mode 100644 index 000000000000..8282449a57ae --- /dev/null +++ b/data/software/ge/gengen.json @@ -0,0 +1,8 @@ +{ + "slug": "gengen", + "name": "Gengen", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76183229" + ] +} diff --git a/data/software/ge/genially.json b/data/software/ge/genially.json new file mode 100644 index 000000000000..d76e38bafdd9 --- /dev/null +++ b/data/software/ge/genially.json @@ -0,0 +1,8 @@ +{ + "slug": "genially", + "name": "Genially", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q57977122" + ] +} diff --git a/data/software/ge/genie-backup-manager.json b/data/software/ge/genie-backup-manager.json new file mode 100644 index 000000000000..f42761f1be73 --- /dev/null +++ b/data/software/ge/genie-backup-manager.json @@ -0,0 +1,11 @@ +{ + "slug": "genie-backup-manager", + "name": "Genie Backup Manager", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5533181" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/ge/genius-project.json b/data/software/ge/genius-project.json new file mode 100644 index 000000000000..81575fd41070 --- /dev/null +++ b/data/software/ge/genius-project.json @@ -0,0 +1,8 @@ +{ + "slug": "genius-project", + "name": "Genius Project", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2698837" + ] +} diff --git a/data/software/ge/geniusmatcher.json b/data/software/ge/geniusmatcher.json new file mode 100644 index 000000000000..83a6318669b9 --- /dev/null +++ b/data/software/ge/geniusmatcher.json @@ -0,0 +1,8 @@ +{ + "slug": "geniusmatcher", + "name": "Geniusmatcher", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17156057" + ] +} diff --git a/data/software/ge/genlop.json b/data/software/ge/genlop.json new file mode 100644 index 000000000000..c18f1024a286 --- /dev/null +++ b/data/software/ge/genlop.json @@ -0,0 +1,11 @@ +{ + "slug": "genlop", + "name": "genlop", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974863" + ], + "licenses": [ + "GNU General Public License, version 2.0" + ] +} diff --git a/data/software/ge/genome-compiler.json b/data/software/ge/genome-compiler.json new file mode 100644 index 000000000000..d608cc2f1866 --- /dev/null +++ b/data/software/ge/genome-compiler.json @@ -0,0 +1,8 @@ +{ + "slug": "genome-compiler", + "name": "Genome Compiler", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17127922" + ] +} diff --git a/data/software/ge/genomescope.json b/data/software/ge/genomescope.json new file mode 100644 index 000000000000..acd54bccff51 --- /dev/null +++ b/data/software/ge/genomescope.json @@ -0,0 +1,8 @@ +{ + "slug": "genomescope", + "name": "GenomeScope", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112129601" + ] +} diff --git a/data/software/ge/gens-emulator.json b/data/software/ge/gens-emulator.json new file mode 100644 index 000000000000..77552d56f41a --- /dev/null +++ b/data/software/ge/gens-emulator.json @@ -0,0 +1,8 @@ +{ + "slug": "gens-emulator", + "name": "Gens (emulator)", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q104822401" + ] +} diff --git a/data/software/ge/genscan.json b/data/software/ge/genscan.json new file mode 100644 index 000000000000..aafb6668ac7c --- /dev/null +++ b/data/software/ge/genscan.json @@ -0,0 +1,11 @@ +{ + "slug": "genscan", + "name": "GENSCAN", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5513176" + ], + "developers": [ + "Christopher Burge" + ] +} diff --git a/data/software/ge/genstat.json b/data/software/ge/genstat.json new file mode 100644 index 000000000000..7da71e3e2d7d --- /dev/null +++ b/data/software/ge/genstat.json @@ -0,0 +1,17 @@ +{ + "slug": "genstat", + "name": "GenStat", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5530846" + ], + "developers": [ + "John Nelder" + ], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [ + "Fortran" + ] +} diff --git a/data/software/ge/gentoo-functions.json b/data/software/ge/gentoo-functions.json new file mode 100644 index 000000000000..91ffa6523b8e --- /dev/null +++ b/data/software/ge/gentoo-functions.json @@ -0,0 +1,11 @@ +{ + "slug": "gentoo-functions", + "name": "gentoo-functions", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974864" + ], + "licenses": [ + "GNU General Public License, version 2.0" + ] +} diff --git a/data/software/ge/gentoo-syntax.json b/data/software/ge/gentoo-syntax.json new file mode 100644 index 000000000000..1655ba2f3e07 --- /dev/null +++ b/data/software/ge/gentoo-syntax.json @@ -0,0 +1,8 @@ +{ + "slug": "gentoo-syntax", + "name": "gentoo-syntax", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974867" + ] +} diff --git a/data/software/ge/gentoo-systemd-integration.json b/data/software/ge/gentoo-systemd-integration.json new file mode 100644 index 000000000000..192febcac92c --- /dev/null +++ b/data/software/ge/gentoo-systemd-integration.json @@ -0,0 +1,8 @@ +{ + "slug": "gentoo-systemd-integration", + "name": "gentoo-systemd-integration", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974868" + ] +} diff --git a/data/software/ge/gentoo-zsh-completions.json b/data/software/ge/gentoo-zsh-completions.json new file mode 100644 index 000000000000..7695a7aa071c --- /dev/null +++ b/data/software/ge/gentoo-zsh-completions.json @@ -0,0 +1,8 @@ +{ + "slug": "gentoo-zsh-completions", + "name": "gentoo-zsh-completions", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974869" + ] +} diff --git a/data/software/ge/gentoolkit-dev.json b/data/software/ge/gentoolkit-dev.json new file mode 100644 index 000000000000..a541c6b60d12 --- /dev/null +++ b/data/software/ge/gentoolkit-dev.json @@ -0,0 +1,8 @@ +{ + "slug": "gentoolkit-dev", + "name": "gentoolkit-dev", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974865" + ] +} diff --git a/data/software/ge/genztrade.json b/data/software/ge/genztrade.json new file mode 100644 index 000000000000..29971f8c9eff --- /dev/null +++ b/data/software/ge/genztrade.json @@ -0,0 +1,8 @@ +{ + "slug": "genztrade", + "name": "GenZTrade", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139937729" + ] +} diff --git a/data/software/ge/geoapi.json b/data/software/ge/geoapi.json new file mode 100644 index 000000000000..433f7b27ed48 --- /dev/null +++ b/data/software/ge/geoapi.json @@ -0,0 +1,17 @@ +{ + "slug": "geoapi", + "name": "GeoAPI", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5533883" + ], + "developers": [ + "Open Geospatial Consortium" + ], + "operating_systems": [ + "cross-platform" + ], + "programming_languages": [ + "Java" + ] +} diff --git a/data/software/ge/geoblink-by-mytraffic.json b/data/software/ge/geoblink-by-mytraffic.json new file mode 100644 index 000000000000..25ac983ad05a --- /dev/null +++ b/data/software/ge/geoblink-by-mytraffic.json @@ -0,0 +1,11 @@ +{ + "slug": "geoblink-by-mytraffic", + "name": "Geoblink by MyTraffic", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138855861" + ], + "developers": [ + "MyTraffic" + ] +} diff --git a/data/software/ge/geobrowser.json b/data/software/ge/geobrowser.json new file mode 100644 index 000000000000..d45d292269d7 --- /dev/null +++ b/data/software/ge/geobrowser.json @@ -0,0 +1,8 @@ +{ + "slug": "geobrowser", + "name": "Geobrowser", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q119361130" + ] +} diff --git a/data/software/ge/geoda.json b/data/software/ge/geoda.json new file mode 100644 index 000000000000..b53604c1bc28 --- /dev/null +++ b/data/software/ge/geoda.json @@ -0,0 +1,18 @@ +{ + "slug": "geoda", + "name": "GeoDA", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5533897" + ], + "developers": [ + "Luc Anselin" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "licenses": [ + "GNU General Public License, version 3.0" + ] +} diff --git a/data/software/ge/geodin.json b/data/software/ge/geodin.json new file mode 100644 index 000000000000..8f8a25f56bae --- /dev/null +++ b/data/software/ge/geodin.json @@ -0,0 +1,18 @@ +{ + "slug": "geodin", + "name": "GeoDin", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125765" + ], + "developers": [ + "GeoDin", + "Fugro Germany Land" + ], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [ + "Delphi" + ] +} diff --git a/data/software/ge/geofeedia.json b/data/software/ge/geofeedia.json new file mode 100644 index 000000000000..9ba67e786227 --- /dev/null +++ b/data/software/ge/geofeedia.json @@ -0,0 +1,8 @@ +{ + "slug": "geofeedia", + "name": "Geofeedia", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q27663611" + ] +} diff --git a/data/software/ge/geographic-information-retrieval-and-analysis-system.json b/data/software/ge/geographic-information-retrieval-and-analysis-system.json new file mode 100644 index 000000000000..4f456b077915 --- /dev/null +++ b/data/software/ge/geographic-information-retrieval-and-analysis-system.json @@ -0,0 +1,8 @@ +{ + "slug": "geographic-information-retrieval-and-analysis-system", + "name": "Geographic Information Retrieval and Analysis System", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q132186452" + ] +} diff --git a/data/software/ge/geom-raid5.json b/data/software/ge/geom-raid5.json new file mode 100644 index 000000000000..6be6eaad323c --- /dev/null +++ b/data/software/ge/geom-raid5.json @@ -0,0 +1,8 @@ +{ + "slug": "geom-raid5", + "name": "geom raid5", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5535436" + ] +} diff --git a/data/software/ge/geomedia.json b/data/software/ge/geomedia.json new file mode 100644 index 000000000000..43cf78319f26 --- /dev/null +++ b/data/software/ge/geomedia.json @@ -0,0 +1,11 @@ +{ + "slug": "geomedia", + "name": "GeoMedia", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5533906" + ], + "developers": [ + "Intergraph" + ] +} diff --git a/data/software/ge/geometric-modeling-kernel.json b/data/software/ge/geometric-modeling-kernel.json new file mode 100644 index 000000000000..722a5b47a1a7 --- /dev/null +++ b/data/software/ge/geometric-modeling-kernel.json @@ -0,0 +1,8 @@ +{ + "slug": "geometric-modeling-kernel", + "name": "geometric modeling kernel", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1941895" + ] +} diff --git a/data/software/ge/geometricus.json b/data/software/ge/geometricus.json new file mode 100644 index 000000000000..dceeb092538b --- /dev/null +++ b/data/software/ge/geometricus.json @@ -0,0 +1,11 @@ +{ + "slug": "geometricus", + "name": "Geometricus", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q114840743" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/ge/geometry-blaster.json b/data/software/ge/geometry-blaster.json new file mode 100644 index 000000000000..aabf6244fc0a --- /dev/null +++ b/data/software/ge/geometry-blaster.json @@ -0,0 +1,8 @@ +{ + "slug": "geometry-blaster", + "name": "Geometry Blaster", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121365427" + ] +} diff --git a/data/software/ge/geomodeller3d.json b/data/software/ge/geomodeller3d.json new file mode 100644 index 000000000000..c3ca4e07b569 --- /dev/null +++ b/data/software/ge/geomodeller3d.json @@ -0,0 +1,8 @@ +{ + "slug": "geomodeller3d", + "name": "Geomodeller3D", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5535536" + ] +} diff --git a/data/software/ge/geonature.json b/data/software/ge/geonature.json new file mode 100644 index 000000000000..10f7119f097f --- /dev/null +++ b/data/software/ge/geonature.json @@ -0,0 +1,17 @@ +{ + "slug": "geonature", + "name": "GeoNature", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109038131" + ], + "programming_languages": [ + "Python", + "PostgreSQL", + "TypeScript", + "PostGIS" + ], + "licenses": [ + "GNU General Public License, version 3.0" + ] +} diff --git a/data/software/ge/geonetwork-cartes-gouv-fr.json b/data/software/ge/geonetwork-cartes-gouv-fr.json new file mode 100644 index 000000000000..dbea0ecd6ba0 --- /dev/null +++ b/data/software/ge/geonetwork-cartes-gouv-fr.json @@ -0,0 +1,11 @@ +{ + "slug": "geonetwork-cartes-gouv-fr", + "name": "GeoNetwork (cartes.gouv.fr)", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137712883" + ], + "licenses": [ + "GNU General Public License, version 2.0" + ] +} diff --git a/data/software/ge/geopaint.json b/data/software/ge/geopaint.json new file mode 100644 index 000000000000..91b2d4694b62 --- /dev/null +++ b/data/software/ge/geopaint.json @@ -0,0 +1,11 @@ +{ + "slug": "geopaint", + "name": "GeoPaint", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q9266985" + ], + "operating_systems": [ + "GEOS" + ] +} diff --git a/data/software/ge/geopaparazzi.json b/data/software/ge/geopaparazzi.json new file mode 100644 index 000000000000..f63cc74d34aa --- /dev/null +++ b/data/software/ge/geopaparazzi.json @@ -0,0 +1,11 @@ +{ + "slug": "geopaparazzi", + "name": "Geopaparazzi", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120122287" + ], + "developers": [ + "Andrea Antonello" + ] +} diff --git a/data/software/ge/geopublish.json b/data/software/ge/geopublish.json new file mode 100644 index 000000000000..ffea5ab55573 --- /dev/null +++ b/data/software/ge/geopublish.json @@ -0,0 +1,8 @@ +{ + "slug": "geopublish", + "name": "GeoPublish", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5533912" + ] +} diff --git a/data/software/ge/georeader.json b/data/software/ge/georeader.json new file mode 100644 index 000000000000..3b9d3cbc2014 --- /dev/null +++ b/data/software/ge/georeader.json @@ -0,0 +1,8 @@ +{ + "slug": "georeader", + "name": "GeoReader", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5533914" + ] +} diff --git a/data/software/ge/geos-chem.json b/data/software/ge/geos-chem.json new file mode 100644 index 000000000000..671250e1b02a --- /dev/null +++ b/data/software/ge/geos-chem.json @@ -0,0 +1,8 @@ +{ + "slug": "geos-chem", + "name": "GEOS-Chem", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122831932" + ] +} diff --git a/data/software/ge/geos.json b/data/software/ge/geos.json new file mode 100644 index 000000000000..bcaa8fffd415 --- /dev/null +++ b/data/software/ge/geos.json @@ -0,0 +1,8 @@ +{ + "slug": "geos", + "name": "GEOS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q973563" + ] +} diff --git a/data/software/ge/geoshake.json b/data/software/ge/geoshake.json new file mode 100644 index 000000000000..55e2ce731fb8 --- /dev/null +++ b/data/software/ge/geoshake.json @@ -0,0 +1,14 @@ +{ + "slug": "geoshake", + "name": "GeoShake", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138784132" + ], + "developers": [ + "Appflows Technology Inc." + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/ge/geosom-suite.json b/data/software/ge/geosom-suite.json new file mode 100644 index 000000000000..9ad865c185df --- /dev/null +++ b/data/software/ge/geosom-suite.json @@ -0,0 +1,8 @@ +{ + "slug": "geosom-suite", + "name": "GeoSOM Suite", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137045936" + ] +} diff --git a/data/software/ge/geotemco.json b/data/software/ge/geotemco.json new file mode 100644 index 000000000000..6b43377aead0 --- /dev/null +++ b/data/software/ge/geotemco.json @@ -0,0 +1,8 @@ +{ + "slug": "geotemco", + "name": "GeoTemCo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084987" + ] +} diff --git a/data/software/ge/geotime.json b/data/software/ge/geotime.json new file mode 100644 index 000000000000..1e0bff60c85f --- /dev/null +++ b/data/software/ge/geotime.json @@ -0,0 +1,9 @@ +{ + "slug": "geotime", + "name": "Geotime", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5548616" + ], + "release_date": "2005-05-18" +} diff --git a/data/software/ge/geotrek.json b/data/software/ge/geotrek.json new file mode 100644 index 000000000000..ebdd9d5f7e69 --- /dev/null +++ b/data/software/ge/geotrek.json @@ -0,0 +1,17 @@ +{ + "slug": "geotrek", + "name": "Geotrek", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116819111" + ], + "programming_languages": [ + "Python", + "TypeScript", + "PostgreSQL", + "PostGIS" + ], + "licenses": [ + "2-clause BSD License" + ] +} diff --git a/data/software/ge/geovia.json b/data/software/ge/geovia.json new file mode 100644 index 000000000000..1a2b92016ed5 --- /dev/null +++ b/data/software/ge/geovia.json @@ -0,0 +1,11 @@ +{ + "slug": "geovia", + "name": "GEOVIA", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q24893639" + ], + "developers": [ + "Dassault Systèmes" + ] +} diff --git a/data/software/ge/geovista-studio.json b/data/software/ge/geovista-studio.json new file mode 100644 index 000000000000..333283857dfe --- /dev/null +++ b/data/software/ge/geovista-studio.json @@ -0,0 +1,8 @@ +{ + "slug": "geovista-studio", + "name": "GeoVISTA Studio", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122311073" + ] +} diff --git a/data/software/ge/geovistory.json b/data/software/ge/geovistory.json new file mode 100644 index 000000000000..dc690602a4b6 --- /dev/null +++ b/data/software/ge/geovistory.json @@ -0,0 +1,8 @@ +{ + "slug": "geovistory", + "name": "Geovistory", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124394290" + ] +} diff --git a/data/software/ge/geox-ai.json b/data/software/ge/geox-ai.json new file mode 100644 index 000000000000..b3b855ffe1ad --- /dev/null +++ b/data/software/ge/geox-ai.json @@ -0,0 +1,8 @@ +{ + "slug": "geox-ai", + "name": "GEOX AI", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139487864" + ] +} diff --git a/data/software/ge/geoxa.json b/data/software/ge/geoxa.json new file mode 100644 index 000000000000..8beb1b61eea0 --- /dev/null +++ b/data/software/ge/geoxa.json @@ -0,0 +1,11 @@ +{ + "slug": "geoxa", + "name": "Geoxa", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q9267372" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/ge/gephi.json b/data/software/ge/gephi.json new file mode 100644 index 000000000000..46f19532ac9f --- /dev/null +++ b/data/software/ge/gephi.json @@ -0,0 +1,21 @@ +{ + "slug": "gephi", + "name": "Gephi", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5548660" + ], + "developers": [ + "Mathieu Jacomy" + ], + "operating_systems": [ + "Mac operating system", + "Microsoft Windows" + ], + "programming_languages": [ + "Java" + ], + "licenses": [ + "GNU General Public License" + ] +} diff --git a/data/software/ge/geppetto.json b/data/software/ge/geppetto.json new file mode 100644 index 000000000000..fbc3b183f181 --- /dev/null +++ b/data/software/ge/geppetto.json @@ -0,0 +1,8 @@ +{ + "slug": "geppetto", + "name": "Geppetto", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105061636" + ] +} diff --git a/data/software/ge/gerbera.json b/data/software/ge/gerbera.json new file mode 100644 index 000000000000..8dfa8dc3b44e --- /dev/null +++ b/data/software/ge/gerbera.json @@ -0,0 +1,8 @@ +{ + "slug": "gerbera", + "name": "gerbera", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127418065" + ] +} diff --git a/data/software/ge/gerbil.json b/data/software/ge/gerbil.json new file mode 100644 index 000000000000..93e2653b205d --- /dev/null +++ b/data/software/ge/gerbil.json @@ -0,0 +1,8 @@ +{ + "slug": "gerbil", + "name": "Gerbil", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084989" + ] +} diff --git a/data/software/ge/gerby.json b/data/software/ge/gerby.json new file mode 100644 index 000000000000..bc99a841d63f --- /dev/null +++ b/data/software/ge/gerby.json @@ -0,0 +1,8 @@ +{ + "slug": "gerby", + "name": "Gerby", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q99731919" + ] +} diff --git a/data/software/ge/germes.json b/data/software/ge/germes.json new file mode 100644 index 000000000000..417c1d7da965 --- /dev/null +++ b/data/software/ge/germes.json @@ -0,0 +1,8 @@ +{ + "slug": "germes", + "name": "Germes", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4039370" + ] +} diff --git a/data/software/ge/gertwol.json b/data/software/ge/gertwol.json new file mode 100644 index 000000000000..20020a67067c --- /dev/null +++ b/data/software/ge/gertwol.json @@ -0,0 +1,8 @@ +{ + "slug": "gertwol", + "name": "GERTWOL", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087808" + ] +} diff --git a/data/software/ge/gess.json b/data/software/ge/gess.json new file mode 100644 index 000000000000..1475d9696af1 --- /dev/null +++ b/data/software/ge/gess.json @@ -0,0 +1,8 @@ +{ + "slug": "gess", + "name": "GESS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5513233" + ] +} diff --git a/data/software/ge/gestassophp.json b/data/software/ge/gestassophp.json new file mode 100644 index 000000000000..3dd2c396436c --- /dev/null +++ b/data/software/ge/gestassophp.json @@ -0,0 +1,15 @@ +{ + "slug": "gestassophp", + "name": "GestAssoPhp", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105093907" + ], + "release_date": "2009-01-01", + "programming_languages": [ + "PHP" + ], + "licenses": [ + "Creative Commons Attribution-ShareAlike 2.0 Generic" + ] +} diff --git a/data/software/ge/get-help.json b/data/software/ge/get-help.json new file mode 100644 index 000000000000..42fe4b18b21d --- /dev/null +++ b/data/software/ge/get-help.json @@ -0,0 +1,8 @@ +{ + "slug": "get-help", + "name": "Get Help", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q30590743" + ] +} diff --git a/data/software/ge/get-iplayer.json b/data/software/ge/get-iplayer.json new file mode 100644 index 000000000000..97f195b40b0f --- /dev/null +++ b/data/software/ge/get-iplayer.json @@ -0,0 +1,8 @@ +{ + "slug": "get-iplayer", + "name": "get-iplayer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q50827940" + ] +} diff --git a/data/software/ge/getaref.json b/data/software/ge/getaref.json new file mode 100644 index 000000000000..c61f8d74ab11 --- /dev/null +++ b/data/software/ge/getaref.json @@ -0,0 +1,14 @@ +{ + "slug": "getaref", + "name": "GetARef", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105749254" + ], + "operating_systems": [ + "Microsoft Windows" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/ge/getdata.json b/data/software/ge/getdata.json new file mode 100644 index 000000000000..5a6162501686 --- /dev/null +++ b/data/software/ge/getdata.json @@ -0,0 +1,8 @@ +{ + "slug": "getdata", + "name": "Getdata", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110474325" + ] +} diff --git a/data/software/ge/getdataback.json b/data/software/ge/getdataback.json new file mode 100644 index 000000000000..476121154f40 --- /dev/null +++ b/data/software/ge/getdataback.json @@ -0,0 +1,8 @@ +{ + "slug": "getdataback", + "name": "GetDataBack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3104594" + ] +} diff --git a/data/software/ge/getresponse.json b/data/software/ge/getresponse.json new file mode 100644 index 000000000000..3c61bbe3416f --- /dev/null +++ b/data/software/ge/getresponse.json @@ -0,0 +1,8 @@ +{ + "slug": "getresponse", + "name": "GetResponse", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105425091" + ] +} diff --git a/data/software/ge/gett.json b/data/software/ge/gett.json new file mode 100644 index 000000000000..e95d4c3bc8ac --- /dev/null +++ b/data/software/ge/gett.json @@ -0,0 +1,16 @@ +{ + "slug": "gett", + "name": "Gett", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5553771" + ], + "release_date": "2010-11-01", + "operating_systems": [ + "BlackBerry OS", + "iOS" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/ge/getty.json b/data/software/ge/getty.json new file mode 100644 index 000000000000..ee22413db79a --- /dev/null +++ b/data/software/ge/getty.json @@ -0,0 +1,8 @@ +{ + "slug": "getty", + "name": "getty", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q307180" + ] +} diff --git a/data/software/ge/getyou.json b/data/software/ge/getyou.json new file mode 100644 index 000000000000..a5b3be54572b --- /dev/null +++ b/data/software/ge/getyou.json @@ -0,0 +1,8 @@ +{ + "slug": "getyou", + "name": "GetYou", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18150232" + ] +} diff --git a/data/software/ge/geup.json b/data/software/ge/geup.json new file mode 100644 index 000000000000..7eff5032aa98 --- /dev/null +++ b/data/software/ge/geup.json @@ -0,0 +1,14 @@ +{ + "slug": "geup", + "name": "GEUP", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5513242" + ], + "operating_systems": [ + "Windows 8.1", + "Windows NT 4.0", + "Windows 95", + "Windows 7" + ] +} diff --git a/data/software/ge/geworkbench.json b/data/software/ge/geworkbench.json new file mode 100644 index 000000000000..b8dfb1b80f87 --- /dev/null +++ b/data/software/ge/geworkbench.json @@ -0,0 +1,20 @@ +{ + "slug": "geworkbench", + "name": "Geworkbench", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17016730" + ], + "developers": [ + "Columbia University" + ], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [ + "Java" + ], + "licenses": [ + "open-source license" + ] +} diff --git a/data/software/gf/gfacet.json b/data/software/gf/gfacet.json new file mode 100644 index 000000000000..b9b6ebef3603 --- /dev/null +++ b/data/software/gf/gfacet.json @@ -0,0 +1,8 @@ +{ + "slug": "gfacet", + "name": "gFacet", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084990" + ] +} diff --git a/data/software/gf/gfarm-file-system.json b/data/software/gf/gfarm-file-system.json new file mode 100644 index 000000000000..8a209e064eb0 --- /dev/null +++ b/data/software/gf/gfarm-file-system.json @@ -0,0 +1,11 @@ +{ + "slug": "gfarm-file-system", + "name": "Gfarm file system", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5555116" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/gf/gflags.json b/data/software/gf/gflags.json new file mode 100644 index 000000000000..8660091be9a0 --- /dev/null +++ b/data/software/gf/gflags.json @@ -0,0 +1,11 @@ +{ + "slug": "gflags", + "name": "gflags", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974871" + ], + "licenses": [ + "3-clause BSD License" + ] +} diff --git a/data/software/gf/gforge.json b/data/software/gf/gforge.json new file mode 100644 index 000000000000..482dac2b88f6 --- /dev/null +++ b/data/software/gf/gforge.json @@ -0,0 +1,8 @@ +{ + "slug": "gforge", + "name": "GForge", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3104748" + ] +} diff --git a/data/software/gg/gg.json b/data/software/gg/gg.json new file mode 100644 index 000000000000..2258c92bf7c5 --- /dev/null +++ b/data/software/gg/gg.json @@ -0,0 +1,14 @@ +{ + "slug": "gg", + "name": "GG", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q58034" + ], + "operating_systems": [ + "Microsoft Windows" + ], + "licenses": [ + "adware" + ] +} diff --git a/data/software/gg/ggalluvial.json b/data/software/gg/ggalluvial.json new file mode 100644 index 000000000000..aecef13ba3cd --- /dev/null +++ b/data/software/gg/ggalluvial.json @@ -0,0 +1,11 @@ +{ + "slug": "ggalluvial", + "name": "ggalluvial", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112338660" + ], + "programming_languages": [ + "R" + ] +} diff --git a/data/software/gg/ggtree.json b/data/software/gg/ggtree.json new file mode 100644 index 000000000000..7bc09b34d8eb --- /dev/null +++ b/data/software/gg/ggtree.json @@ -0,0 +1,14 @@ +{ + "slug": "ggtree", + "name": "ggtree", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112338735" + ], + "programming_languages": [ + "R" + ], + "licenses": [ + "Artistic License 2.0" + ] +} diff --git a/data/software/gg/ggtreeextra.json b/data/software/gg/ggtreeextra.json new file mode 100644 index 000000000000..64d79da21c17 --- /dev/null +++ b/data/software/gg/ggtreeextra.json @@ -0,0 +1,11 @@ +{ + "slug": "ggtreeextra", + "name": "ggtreeExtra", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112338760" + ], + "programming_languages": [ + "R" + ] +} diff --git a/data/software/gh/gh0st-rat.json b/data/software/gh/gh0st-rat.json new file mode 100644 index 000000000000..9e7e4a993d56 --- /dev/null +++ b/data/software/gh/gh0st-rat.json @@ -0,0 +1,11 @@ +{ + "slug": "gh0st-rat", + "name": "Gh0st RAT", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5557127" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/gh/ghgproof.json b/data/software/gh/ghgproof.json new file mode 100644 index 000000000000..a583d1a6147b --- /dev/null +++ b/data/software/gh/ghgproof.json @@ -0,0 +1,8 @@ +{ + "slug": "ghgproof", + "name": "GHGProof", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5513413" + ] +} diff --git a/data/software/gh/ghost.json b/data/software/gh/ghost.json new file mode 100644 index 000000000000..70be092c15e1 --- /dev/null +++ b/data/software/gh/ghost.json @@ -0,0 +1,8 @@ +{ + "slug": "ghost", + "name": "Ghost", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084991" + ] +} diff --git a/data/software/gi/gia.json b/data/software/gi/gia.json new file mode 100644 index 000000000000..0746d858fe04 --- /dev/null +++ b/data/software/gi/gia.json @@ -0,0 +1,8 @@ +{ + "slug": "gia", + "name": "GIA", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138887285" + ] +} diff --git a/data/software/gi/giant-antispyware.json b/data/software/gi/giant-antispyware.json new file mode 100644 index 000000000000..c64450bb7024 --- /dev/null +++ b/data/software/gi/giant-antispyware.json @@ -0,0 +1,8 @@ +{ + "slug": "giant-antispyware", + "name": "GIANT AntiSpyware", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5513434" + ] +} diff --git a/data/software/gi/giant.json b/data/software/gi/giant.json new file mode 100644 index 000000000000..87f303c2cc80 --- /dev/null +++ b/data/software/gi/giant.json @@ -0,0 +1,15 @@ +{ + "slug": "giant", + "name": "GIAnT", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105229786" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "licenses": [ + "GNU General Public License, version 3.0" + ] +} diff --git a/data/software/gi/gif2png.json b/data/software/gi/gif2png.json new file mode 100644 index 000000000000..c85e1d5db00c --- /dev/null +++ b/data/software/gi/gif2png.json @@ -0,0 +1,8 @@ +{ + "slug": "gif2png", + "name": "gif2png", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62850681" + ] +} diff --git a/data/software/gi/gifboom.json b/data/software/gi/gifboom.json new file mode 100644 index 000000000000..a13b2c8ab3ee --- /dev/null +++ b/data/software/gi/gifboom.json @@ -0,0 +1,14 @@ +{ + "slug": "gifboom", + "name": "GifBoom", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q15007977" + ], + "operating_systems": [ + "iOS" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/gi/gigantic-army.json b/data/software/gi/gigantic-army.json new file mode 100644 index 000000000000..676a1373d99c --- /dev/null +++ b/data/software/gi/gigantic-army.json @@ -0,0 +1,14 @@ +{ + "slug": "gigantic-army", + "name": "Gigantic Army", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q74250971" + ], + "release_date": "2014-03-06", + "genres": [ + "action game", + "platformer", + "shooter game" + ] +} diff --git a/data/software/gi/gigatribe.json b/data/software/gi/gigatribe.json new file mode 100644 index 000000000000..8d109c3b5d47 --- /dev/null +++ b/data/software/gi/gigatribe.json @@ -0,0 +1,8 @@ +{ + "slug": "gigatribe", + "name": "GigaTribe", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q491330" + ] +} diff --git a/data/software/gi/gimp-2-0-2.json b/data/software/gi/gimp-2-0-2.json new file mode 100644 index 000000000000..cc671db1e9b1 --- /dev/null +++ b/data/software/gi/gimp-2-0-2.json @@ -0,0 +1,9 @@ +{ + "slug": "gimp-2-0-2", + "name": "GIMP 2.0.2", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q64739349" + ], + "release_date": "2004-06-15" +} diff --git a/data/software/gi/gimp-2-2-11.json b/data/software/gi/gimp-2-2-11.json new file mode 100644 index 000000000000..bbafd33cabc7 --- /dev/null +++ b/data/software/gi/gimp-2-2-11.json @@ -0,0 +1,9 @@ +{ + "slug": "gimp-2-2-11", + "name": "GIMP 2.2.11", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q64829528" + ], + "release_date": "2006-04-13" +} diff --git a/data/software/gi/gin.json b/data/software/gi/gin.json new file mode 100644 index 000000000000..6da9146ca484 --- /dev/null +++ b/data/software/gi/gin.json @@ -0,0 +1,8 @@ +{ + "slug": "gin", + "name": "GIN", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4039143" + ] +} diff --git a/data/software/gi/ginga-scout.json b/data/software/gi/ginga-scout.json new file mode 100644 index 000000000000..28fcc7956b8e --- /dev/null +++ b/data/software/gi/ginga-scout.json @@ -0,0 +1,11 @@ +{ + "slug": "ginga-scout", + "name": "Ginga Scout", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q21463093" + ], + "operating_systems": [ + "iOS" + ] +} diff --git a/data/software/gi/ginger-ii.json b/data/software/gi/ginger-ii.json new file mode 100644 index 000000000000..9e7439b8d4b5 --- /dev/null +++ b/data/software/gi/ginger-ii.json @@ -0,0 +1,8 @@ +{ + "slug": "ginger-ii", + "name": "GINGER II", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087809" + ] +} diff --git a/data/software/gi/gini-by-mytraffic.json b/data/software/gi/gini-by-mytraffic.json new file mode 100644 index 000000000000..621bbe20a5d1 --- /dev/null +++ b/data/software/gi/gini-by-mytraffic.json @@ -0,0 +1,11 @@ +{ + "slug": "gini-by-mytraffic", + "name": "Gini by Mytraffic", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138855808" + ], + "developers": [ + "MyTraffic" + ] +} diff --git a/data/software/gi/gio-key-board.json b/data/software/gi/gio-key-board.json new file mode 100644 index 000000000000..79d49f446638 --- /dev/null +++ b/data/software/gi/gio-key-board.json @@ -0,0 +1,8 @@ +{ + "slug": "gio-key-board", + "name": "Gio-Key-Board", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q771472" + ] +} diff --git a/data/software/gi/girara.json b/data/software/gi/girara.json new file mode 100644 index 000000000000..17bdc3f8a65b --- /dev/null +++ b/data/software/gi/girara.json @@ -0,0 +1,8 @@ +{ + "slug": "girara", + "name": "girara", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974872" + ] +} diff --git a/data/software/gi/gis-arta.json b/data/software/gi/gis-arta.json new file mode 100644 index 000000000000..34bdfd205ef8 --- /dev/null +++ b/data/software/gi/gis-arta.json @@ -0,0 +1,8 @@ +{ + "slug": "gis-arta", + "name": "GIS Arta", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112609566" + ] +} diff --git a/data/software/gi/giscus.json b/data/software/gi/giscus.json new file mode 100644 index 000000000000..75b1af54bcfe --- /dev/null +++ b/data/software/gi/giscus.json @@ -0,0 +1,11 @@ +{ + "slug": "giscus", + "name": "giscus", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122255776" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/gi/gist.json b/data/software/gi/gist.json new file mode 100644 index 000000000000..8f0da6a2e450 --- /dev/null +++ b/data/software/gi/gist.json @@ -0,0 +1,8 @@ +{ + "slug": "gist", + "name": "Gist", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5564996" + ] +} diff --git a/data/software/gi/git-bz.json b/data/software/gi/git-bz.json new file mode 100644 index 000000000000..a07447c64d7c --- /dev/null +++ b/data/software/gi/git-bz.json @@ -0,0 +1,11 @@ +{ + "slug": "git-bz", + "name": "git-bz", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974873" + ], + "licenses": [ + "GNU General Public License, version 2.0" + ] +} diff --git a/data/software/gi/git-deps.json b/data/software/gi/git-deps.json new file mode 100644 index 000000000000..9b0da512328d --- /dev/null +++ b/data/software/gi/git-deps.json @@ -0,0 +1,11 @@ +{ + "slug": "git-deps", + "name": "git-deps", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974874" + ], + "licenses": [ + "GNU General Public License, version 2.0" + ] +} diff --git a/data/software/gi/gitgutter.json b/data/software/gi/gitgutter.json new file mode 100644 index 000000000000..8a89a52c1a96 --- /dev/null +++ b/data/software/gi/gitgutter.json @@ -0,0 +1,11 @@ +{ + "slug": "gitgutter", + "name": "gitgutter", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974875" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/gi/github-codespaces.json b/data/software/gi/github-codespaces.json new file mode 100644 index 000000000000..ba6dd6297ef2 --- /dev/null +++ b/data/software/gi/github-codespaces.json @@ -0,0 +1,8 @@ +{ + "slug": "github-codespaces", + "name": "GitHub Codespaces", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135672383" + ] +} diff --git a/data/software/gi/github-desktop.json b/data/software/gi/github-desktop.json new file mode 100644 index 000000000000..4bfa981acc30 --- /dev/null +++ b/data/software/gi/github-desktop.json @@ -0,0 +1,11 @@ +{ + "slug": "github-desktop", + "name": "GitHub Desktop", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120976843" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/gi/gitk.json b/data/software/gi/gitk.json new file mode 100644 index 000000000000..88a157f9c50b --- /dev/null +++ b/data/software/gi/gitk.json @@ -0,0 +1,8 @@ +{ + "slug": "gitk", + "name": "Gitk", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16687835" + ] +} diff --git a/data/software/gi/gitlanding.json b/data/software/gi/gitlanding.json new file mode 100644 index 000000000000..f7e710d755f6 --- /dev/null +++ b/data/software/gi/gitlanding.json @@ -0,0 +1,14 @@ +{ + "slug": "gitlanding", + "name": "GitLanding", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112595096" + ], + "developers": [ + "Joseph Garrone" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/gi/gitmind.json b/data/software/gi/gitmind.json new file mode 100644 index 000000000000..b1b62e0612b9 --- /dev/null +++ b/data/software/gi/gitmind.json @@ -0,0 +1,8 @@ +{ + "slug": "gitmind", + "name": "GitMind", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q97218982" + ] +} diff --git a/data/software/gi/gitolite-gentoo.json b/data/software/gi/gitolite-gentoo.json new file mode 100644 index 000000000000..ba23bcf44acd --- /dev/null +++ b/data/software/gi/gitolite-gentoo.json @@ -0,0 +1,8 @@ +{ + "slug": "gitolite-gentoo", + "name": "gitolite-gentoo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974878" + ] +} diff --git a/data/software/gi/gitstats.json b/data/software/gi/gitstats.json new file mode 100644 index 000000000000..410d8dffabe7 --- /dev/null +++ b/data/software/gi/gitstats.json @@ -0,0 +1,8 @@ +{ + "slug": "gitstats", + "name": "gitstats", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974879" + ] +} diff --git a/data/software/gi/gitter.json b/data/software/gi/gitter.json new file mode 100644 index 000000000000..c2fbb508fe9b --- /dev/null +++ b/data/software/gi/gitter.json @@ -0,0 +1,11 @@ +{ + "slug": "gitter", + "name": "Gitter", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28955995" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/gi/gitv.json b/data/software/gi/gitv.json new file mode 100644 index 000000000000..4888f0df6fea --- /dev/null +++ b/data/software/gi/gitv.json @@ -0,0 +1,8 @@ +{ + "slug": "gitv", + "name": "gitv", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974880" + ] +} diff --git a/data/software/gi/giveaway-of-the-day.json b/data/software/gi/giveaway-of-the-day.json new file mode 100644 index 000000000000..3441a7ce4309 --- /dev/null +++ b/data/software/gi/giveaway-of-the-day.json @@ -0,0 +1,8 @@ +{ + "slug": "giveaway-of-the-day", + "name": "Giveaway of the Day", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q129070" + ] +} diff --git a/data/software/gi/givore.json b/data/software/gi/givore.json new file mode 100644 index 000000000000..07a00a027957 --- /dev/null +++ b/data/software/gi/givore.json @@ -0,0 +1,11 @@ +{ + "slug": "givore", + "name": "Givore", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139819307" + ], + "operating_systems": [ + "iOS" + ] +} diff --git a/data/software/gi/giws.json b/data/software/gi/giws.json new file mode 100644 index 000000000000..ad2467f373f1 --- /dev/null +++ b/data/software/gi/giws.json @@ -0,0 +1,8 @@ +{ + "slug": "giws", + "name": "GIWS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q21043317" + ] +} diff --git a/data/software/gi/gizmo5.json b/data/software/gi/gizmo5.json new file mode 100644 index 000000000000..dfe4af8f358e --- /dev/null +++ b/data/software/gi/gizmo5.json @@ -0,0 +1,14 @@ +{ + "slug": "gizmo5", + "name": "Gizmo5", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1528873" + ], + "developers": [ + "Google" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/gk/gkeys-gen.json b/data/software/gk/gkeys-gen.json new file mode 100644 index 000000000000..187b1ead1c02 --- /dev/null +++ b/data/software/gk/gkeys-gen.json @@ -0,0 +1,8 @@ +{ + "slug": "gkeys-gen", + "name": "gkeys-gen", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974882" + ] +} diff --git a/data/software/gk/gkeys.json b/data/software/gk/gkeys.json new file mode 100644 index 000000000000..e8981e2cea2f --- /dev/null +++ b/data/software/gk/gkeys.json @@ -0,0 +1,8 @@ +{ + "slug": "gkeys", + "name": "gkeys", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974881" + ] +} diff --git a/data/software/gk/gkrellaclock.json b/data/software/gk/gkrellaclock.json new file mode 100644 index 000000000000..2902c8f35387 --- /dev/null +++ b/data/software/gk/gkrellaclock.json @@ -0,0 +1,8 @@ +{ + "slug": "gkrellaclock", + "name": "gkrellaclock", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065653" + ] +} diff --git a/data/software/gk/gkrellmwireless.json b/data/software/gk/gkrellmwireless.json new file mode 100644 index 000000000000..1ed62fd4d3a6 --- /dev/null +++ b/data/software/gk/gkrellmwireless.json @@ -0,0 +1,8 @@ +{ + "slug": "gkrellmwireless", + "name": "gkrellmwireless", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106102038" + ] +} diff --git a/data/software/gl/gladinet.json b/data/software/gl/gladinet.json new file mode 100644 index 000000000000..e01a412a12fb --- /dev/null +++ b/data/software/gl/gladinet.json @@ -0,0 +1,12 @@ +{ + "slug": "gladinet", + "name": "Gladinet", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5566288" + ], + "release_date": "2009-05-01", + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/gl/glam-jupyter-notebooks.json b/data/software/gl/glam-jupyter-notebooks.json new file mode 100644 index 000000000000..a21963851dca --- /dev/null +++ b/data/software/gl/glam-jupyter-notebooks.json @@ -0,0 +1,11 @@ +{ + "slug": "glam-jupyter-notebooks", + "name": "GLAM Jupyter Notebooks", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111396450" + ], + "licenses": [ + "Creative Commons Attribution 4.0 International" + ] +} diff --git a/data/software/gl/glam-workbench.json b/data/software/gl/glam-workbench.json new file mode 100644 index 000000000000..a4177495ba45 --- /dev/null +++ b/data/software/gl/glam-workbench.json @@ -0,0 +1,11 @@ +{ + "slug": "glam-workbench", + "name": "GLAM Workbench", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111396660" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/gl/glance.json b/data/software/gl/glance.json new file mode 100644 index 000000000000..7ae6f5253585 --- /dev/null +++ b/data/software/gl/glance.json @@ -0,0 +1,11 @@ +{ + "slug": "glance", + "name": "glance", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974883" + ], + "licenses": [ + "Apache License" + ] +} diff --git a/data/software/gl/glary-utilities.json b/data/software/gl/glary-utilities.json new file mode 100644 index 000000000000..2af858a39306 --- /dev/null +++ b/data/software/gl/glary-utilities.json @@ -0,0 +1,8 @@ +{ + "slug": "glary-utilities", + "name": "Glary Utilities", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5566691" + ] +} diff --git a/data/software/gl/glasp.json b/data/software/gl/glasp.json new file mode 100644 index 000000000000..a4021151401c --- /dev/null +++ b/data/software/gl/glasp.json @@ -0,0 +1,11 @@ +{ + "slug": "glasp", + "name": "Glasp", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122746406" + ], + "programming_languages": [ + "TypeScript" + ] +} diff --git a/data/software/gl/glavior.json b/data/software/gl/glavior.json new file mode 100644 index 000000000000..d4fd56e5e3f5 --- /dev/null +++ b/data/software/gl/glavior.json @@ -0,0 +1,8 @@ +{ + "slug": "glavior", + "name": "Glavior", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140068968" + ] +} diff --git a/data/software/gl/glean.json b/data/software/gl/glean.json new file mode 100644 index 000000000000..e52f64fc388f --- /dev/null +++ b/data/software/gl/glean.json @@ -0,0 +1,8 @@ +{ + "slug": "glean", + "name": "Glean", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76182778" + ] +} diff --git a/data/software/gl/glftpd.json b/data/software/gl/glftpd.json new file mode 100644 index 000000000000..f59ca2125c86 --- /dev/null +++ b/data/software/gl/glftpd.json @@ -0,0 +1,11 @@ +{ + "slug": "glftpd", + "name": "Glftpd", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4575112" + ], + "operating_systems": [ + "cross-platform" + ] +} diff --git a/data/software/gl/glide-os.json b/data/software/gl/glide-os.json new file mode 100644 index 000000000000..2923a629a437 --- /dev/null +++ b/data/software/gl/glide-os.json @@ -0,0 +1,8 @@ +{ + "slug": "glide-os", + "name": "Glide OS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5569569" + ] +} diff --git a/data/software/gl/glide.json b/data/software/gl/glide.json new file mode 100644 index 000000000000..570768118118 --- /dev/null +++ b/data/software/gl/glide.json @@ -0,0 +1,11 @@ +{ + "slug": "glide", + "name": "Glide", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16927655" + ], + "operating_systems": [ + "iOS" + ] +} diff --git a/data/software/gl/gliffy.json b/data/software/gl/gliffy.json new file mode 100644 index 000000000000..e0774b1fd5c3 --- /dev/null +++ b/data/software/gl/gliffy.json @@ -0,0 +1,8 @@ +{ + "slug": "gliffy", + "name": "Gliffy", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18344838" + ] +} diff --git a/data/software/gl/glimmer.json b/data/software/gl/glimmer.json new file mode 100644 index 000000000000..7880383e23cb --- /dev/null +++ b/data/software/gl/glimmer.json @@ -0,0 +1,8 @@ +{ + "slug": "glimmer", + "name": "GLIMMER", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5513624" + ] +} diff --git a/data/software/gl/glip.json b/data/software/gl/glip.json new file mode 100644 index 000000000000..efcc04d5eb5d --- /dev/null +++ b/data/software/gl/glip.json @@ -0,0 +1,8 @@ +{ + "slug": "glip", + "name": "Glip", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q19364826" + ] +} diff --git a/data/software/gl/glitch.json b/data/software/gl/glitch.json new file mode 100644 index 000000000000..5f733f560af5 --- /dev/null +++ b/data/software/gl/glitch.json @@ -0,0 +1,8 @@ +{ + "slug": "glitch", + "name": "GLITCH", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127485276" + ] +} diff --git a/data/software/gl/glite-amga.json b/data/software/gl/glite-amga.json new file mode 100644 index 000000000000..07cd9ed88181 --- /dev/null +++ b/data/software/gl/glite-amga.json @@ -0,0 +1,8 @@ +{ + "slug": "glite-amga", + "name": "GLite-AMGA", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5513681" + ] +} diff --git a/data/software/gl/glite.json b/data/software/gl/glite.json new file mode 100644 index 000000000000..0ba3e49f3991 --- /dev/null +++ b/data/software/gl/glite.json @@ -0,0 +1,8 @@ +{ + "slug": "glite", + "name": "gLite", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5513682" + ] +} diff --git a/data/software/gl/global-address-space-programming-interface.json b/data/software/gl/global-address-space-programming-interface.json new file mode 100644 index 000000000000..08f2c27f064c --- /dev/null +++ b/data/software/gl/global-address-space-programming-interface.json @@ -0,0 +1,11 @@ +{ + "slug": "global-address-space-programming-interface", + "name": "Global Address Space Programming Interface", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18153273" + ], + "developers": [ + "Fraunhofer Society" + ] +} diff --git a/data/software/gl/global-distribution-system.json b/data/software/gl/global-distribution-system.json new file mode 100644 index 000000000000..074392ada6c9 --- /dev/null +++ b/data/software/gl/global-distribution-system.json @@ -0,0 +1,8 @@ +{ + "slug": "global-distribution-system", + "name": "global distribution system", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q15989663" + ] +} diff --git a/data/software/gl/global-ime.json b/data/software/gl/global-ime.json new file mode 100644 index 000000000000..d05cf41e7bf5 --- /dev/null +++ b/data/software/gl/global-ime.json @@ -0,0 +1,8 @@ +{ + "slug": "global-ime", + "name": "Global IME", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10847325" + ] +} diff --git a/data/software/gl/global-mapper.json b/data/software/gl/global-mapper.json new file mode 100644 index 000000000000..f85788149893 --- /dev/null +++ b/data/software/gl/global-mapper.json @@ -0,0 +1,11 @@ +{ + "slug": "global-mapper", + "name": "Global Mapper", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4039494" + ], + "developers": [ + "Blue Marble Geographics" + ] +} diff --git a/data/software/gl/global-plant-clinic.json b/data/software/gl/global-plant-clinic.json new file mode 100644 index 000000000000..5a4b75131ea2 --- /dev/null +++ b/data/software/gl/global-plant-clinic.json @@ -0,0 +1,8 @@ +{ + "slug": "global-plant-clinic", + "name": "Global Plant Clinic", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5570562" + ] +} diff --git a/data/software/gl/global-resource-leaks-codeql.json b/data/software/gl/global-resource-leaks-codeql.json new file mode 100644 index 000000000000..137f23d1770b --- /dev/null +++ b/data/software/gl/global-resource-leaks-codeql.json @@ -0,0 +1,11 @@ +{ + "slug": "global-resource-leaks-codeql", + "name": "global-resource-leaks-codeql", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127485772" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/gl/global-translator.json b/data/software/gl/global-translator.json new file mode 100644 index 000000000000..016496a2c6be --- /dev/null +++ b/data/software/gl/global-translator.json @@ -0,0 +1,8 @@ +{ + "slug": "global-translator", + "name": "Global Translator", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084992" + ] +} diff --git a/data/software/gl/globetrooper.json b/data/software/gl/globetrooper.json new file mode 100644 index 000000000000..7540cb351772 --- /dev/null +++ b/data/software/gl/globetrooper.json @@ -0,0 +1,9 @@ +{ + "slug": "globetrooper", + "name": "Globetrooper", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25327095" + ], + "release_date": "2010-01-01" +} diff --git a/data/software/gl/globus-toolkit.json b/data/software/gl/globus-toolkit.json new file mode 100644 index 000000000000..e128c463940f --- /dev/null +++ b/data/software/gl/globus-toolkit.json @@ -0,0 +1,11 @@ +{ + "slug": "globus-toolkit", + "name": "Globus Toolkit", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2601990" + ], + "licenses": [ + "Apache Software License 2.0" + ] +} diff --git a/data/software/gl/glogg.json b/data/software/gl/glogg.json new file mode 100644 index 000000000000..00ee835cfe7b --- /dev/null +++ b/data/software/gl/glogg.json @@ -0,0 +1,15 @@ +{ + "slug": "glogg", + "name": "glogg", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107559893" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "licenses": [ + "GNU General Public License, version 3.0" + ] +} diff --git a/data/software/gl/glow-app.json b/data/software/gl/glow-app.json new file mode 100644 index 000000000000..2c59d26a6a70 --- /dev/null +++ b/data/software/gl/glow-app.json @@ -0,0 +1,11 @@ +{ + "slug": "glow-app", + "name": "Glow (app)", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136419177" + ], + "operating_systems": [ + "iOS" + ] +} diff --git a/data/software/gl/glowcode.json b/data/software/gl/glowcode.json new file mode 100644 index 000000000000..c7493b018588 --- /dev/null +++ b/data/software/gl/glowcode.json @@ -0,0 +1,8 @@ +{ + "slug": "glowcode", + "name": "GlowCode", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5572206" + ] +} diff --git a/data/software/gl/glu.json b/data/software/gl/glu.json new file mode 100644 index 000000000000..bdb33d541048 --- /dev/null +++ b/data/software/gl/glu.json @@ -0,0 +1,8 @@ +{ + "slug": "glu", + "name": "glu", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1532294" + ] +} diff --git a/data/software/gl/glue.json b/data/software/gl/glue.json new file mode 100644 index 000000000000..f355753b811d --- /dev/null +++ b/data/software/gl/glue.json @@ -0,0 +1,8 @@ +{ + "slug": "glue", + "name": "Glue", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60745634" + ] +} diff --git a/data/software/gl/glx.json b/data/software/gl/glx.json new file mode 100644 index 000000000000..65cba5d66d72 --- /dev/null +++ b/data/software/gl/glx.json @@ -0,0 +1,12 @@ +{ + "slug": "glx", + "name": "GLX", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q604536" + ], + "release_date": "1992-01-01", + "developers": [ + "Silicon Graphics" + ] +} diff --git a/data/software/gl/glyphs.json b/data/software/gl/glyphs.json new file mode 100644 index 000000000000..942c679cea58 --- /dev/null +++ b/data/software/gl/glyphs.json @@ -0,0 +1,8 @@ +{ + "slug": "glyphs", + "name": "Glyphs", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138535578" + ] +} diff --git a/data/software/gm/gmap.json b/data/software/gm/gmap.json new file mode 100644 index 000000000000..7b9d6a948834 --- /dev/null +++ b/data/software/gm/gmap.json @@ -0,0 +1,8 @@ +{ + "slug": "gmap", + "name": "gmap", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60915930" + ] +} diff --git a/data/software/gm/gmass.json b/data/software/gm/gmass.json new file mode 100644 index 000000000000..7f65032562e1 --- /dev/null +++ b/data/software/gm/gmass.json @@ -0,0 +1,8 @@ +{ + "slug": "gmass", + "name": "GMass", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140430480" + ] +} diff --git a/data/software/gm/gmdb2.json b/data/software/gm/gmdb2.json new file mode 100644 index 000000000000..e2aafc1902d4 --- /dev/null +++ b/data/software/gm/gmdb2.json @@ -0,0 +1,8 @@ +{ + "slug": "gmdb2", + "name": "GMDB2", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135936988" + ] +} diff --git a/data/software/gm/gmer.json b/data/software/gm/gmer.json new file mode 100644 index 000000000000..26bf5dcb88c5 --- /dev/null +++ b/data/software/gm/gmer.json @@ -0,0 +1,14 @@ +{ + "slug": "gmer", + "name": "GMER", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5513761" + ], + "operating_systems": [ + "Microsoft Windows" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/gm/gms.json b/data/software/gm/gms.json new file mode 100644 index 000000000000..3e03a5e87c6a --- /dev/null +++ b/data/software/gm/gms.json @@ -0,0 +1,11 @@ +{ + "slug": "gms", + "name": "GMS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5513795" + ], + "developers": [ + "Aquaveo" + ] +} diff --git a/data/software/gm/gmtp.json b/data/software/gm/gmtp.json new file mode 100644 index 000000000000..364e6fdba84b --- /dev/null +++ b/data/software/gm/gmtp.json @@ -0,0 +1,8 @@ +{ + "slug": "gmtp", + "name": "gMTP", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62850725" + ] +} diff --git a/data/software/gm/gmw.json b/data/software/gm/gmw.json new file mode 100644 index 000000000000..882ff140a3b7 --- /dev/null +++ b/data/software/gm/gmw.json @@ -0,0 +1,11 @@ +{ + "slug": "gmw", + "name": "GMW", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11201257" + ], + "operating_systems": [ + "Unix-like operating system" + ] +} diff --git a/data/software/gm/gmx-multi-messenger.json b/data/software/gm/gmx-multi-messenger.json new file mode 100644 index 000000000000..acf4ad2af8e5 --- /dev/null +++ b/data/software/gm/gmx-multi-messenger.json @@ -0,0 +1,12 @@ +{ + "slug": "gmx-multi-messenger", + "name": "GMX Multi Messenger", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1486058" + ], + "release_date": "2006-11-01", + "developers": [ + "United Internet" + ] +} diff --git a/data/software/gn/gnm.json b/data/software/gn/gnm.json new file mode 100644 index 000000000000..b6aae2ceb694 --- /dev/null +++ b/data/software/gn/gnm.json @@ -0,0 +1,12 @@ +{ + "slug": "gnm", + "name": "GNM", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111367521" + ], + "operating_systems": [ + "PlayStation 5 system software", + "PlayStation 4 system software" + ] +} diff --git a/data/software/gn/gnome-desktop.json b/data/software/gn/gnome-desktop.json new file mode 100644 index 000000000000..b94caba04e16 --- /dev/null +++ b/data/software/gn/gnome-desktop.json @@ -0,0 +1,8 @@ +{ + "slug": "gnome-desktop", + "name": "gnome-desktop", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065095" + ] +} diff --git a/data/software/gn/gnome-devel-docs.json b/data/software/gn/gnome-devel-docs.json new file mode 100644 index 000000000000..5c0321f50dd6 --- /dev/null +++ b/data/software/gn/gnome-devel-docs.json @@ -0,0 +1,8 @@ +{ + "slug": "gnome-devel-docs", + "name": "gnome-devel-docs", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065487" + ] +} diff --git a/data/software/gn/gnome-education-projects.json b/data/software/gn/gnome-education-projects.json new file mode 100644 index 000000000000..732b36e8f114 --- /dev/null +++ b/data/software/gn/gnome-education-projects.json @@ -0,0 +1,8 @@ +{ + "slug": "gnome-education-projects", + "name": "GNOME Education projects", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q50827629" + ] +} diff --git a/data/software/gn/gnome-hearts.json b/data/software/gn/gnome-hearts.json new file mode 100644 index 000000000000..1d8eebfcc3c6 --- /dev/null +++ b/data/software/gn/gnome-hearts.json @@ -0,0 +1,8 @@ +{ + "slug": "gnome-hearts", + "name": "gnome-hearts", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065409" + ] +} diff --git a/data/software/gn/gnome-jabber.json b/data/software/gn/gnome-jabber.json new file mode 100644 index 000000000000..74a2d7798e2e --- /dev/null +++ b/data/software/gn/gnome-jabber.json @@ -0,0 +1,8 @@ +{ + "slug": "gnome-jabber", + "name": "Gnome Jabber", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2025712" + ] +} diff --git a/data/software/gn/gnome-pie.json b/data/software/gn/gnome-pie.json new file mode 100644 index 000000000000..1246320a1662 --- /dev/null +++ b/data/software/gn/gnome-pie.json @@ -0,0 +1,8 @@ +{ + "slug": "gnome-pie", + "name": "Gnome-Pie", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60751666" + ] +} diff --git a/data/software/gn/gnome-sessionmanagement.json b/data/software/gn/gnome-sessionmanagement.json new file mode 100644 index 000000000000..a903df61e4b6 --- /dev/null +++ b/data/software/gn/gnome-sessionmanagement.json @@ -0,0 +1,11 @@ +{ + "slug": "gnome-sessionmanagement", + "name": "Gnome SessionManagement", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q50827642" + ], + "licenses": [ + "GNU General Public License, version 2.0 or later" + ] +} diff --git a/data/software/gn/gnome-shell.json b/data/software/gn/gnome-shell.json new file mode 100644 index 000000000000..058df0dc5fa9 --- /dev/null +++ b/data/software/gn/gnome-shell.json @@ -0,0 +1,18 @@ +{ + "slug": "gnome-shell", + "name": "GNOME Shell", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1343860" + ], + "developers": [ + "GNOME Foundation", + "The GNOME Project" + ], + "operating_systems": [ + "BSD" + ], + "licenses": [ + "GNU General Public License, version 2.0 or later" + ] +} diff --git a/data/software/gn/gnomedirectorythumbnailer.json b/data/software/gn/gnomedirectorythumbnailer.json new file mode 100644 index 000000000000..af1f33996c50 --- /dev/null +++ b/data/software/gn/gnomedirectorythumbnailer.json @@ -0,0 +1,8 @@ +{ + "slug": "gnomedirectorythumbnailer", + "name": "GnomeDirectoryThumbnailer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q68089940" + ] +} diff --git a/data/software/gn/gnomeshellintegrationforchrome.json b/data/software/gn/gnomeshellintegrationforchrome.json new file mode 100644 index 000000000000..934a40621187 --- /dev/null +++ b/data/software/gn/gnomeshellintegrationforchrome.json @@ -0,0 +1,8 @@ +{ + "slug": "gnomeshellintegrationforchrome", + "name": "GnomeShellIntegrationForChrome", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76181294" + ] +} diff --git a/data/software/gn/gnomevfs.json b/data/software/gn/gnomevfs.json new file mode 100644 index 000000000000..eb76eba0ea67 --- /dev/null +++ b/data/software/gn/gnomevfs.json @@ -0,0 +1,8 @@ +{ + "slug": "gnomevfs", + "name": "GnomeVFS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2629361" + ] +} diff --git a/data/software/gn/gnowit.json b/data/software/gn/gnowit.json new file mode 100644 index 000000000000..e949fa305b24 --- /dev/null +++ b/data/software/gn/gnowit.json @@ -0,0 +1,8 @@ +{ + "slug": "gnowit", + "name": "Gnowit", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17126195" + ] +} diff --git a/data/software/gn/gnss-ir-analysis-software.json b/data/software/gn/gnss-ir-analysis-software.json new file mode 100644 index 000000000000..d1eb0ac4e381 --- /dev/null +++ b/data/software/gn/gnss-ir-analysis-software.json @@ -0,0 +1,8 @@ +{ + "slug": "gnss-ir-analysis-software", + "name": "GNSS-IR Analysis Software", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q132186429" + ] +} diff --git a/data/software/gn/gnu-interactive-tools.json b/data/software/gn/gnu-interactive-tools.json new file mode 100644 index 000000000000..51499d346735 --- /dev/null +++ b/data/software/gn/gnu-interactive-tools.json @@ -0,0 +1,8 @@ +{ + "slug": "gnu-interactive-tools", + "name": "GNU Interactive Tools", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76182594" + ] +} diff --git a/data/software/gn/gnu-pdf.json b/data/software/gn/gnu-pdf.json new file mode 100644 index 000000000000..9d9d0fb3d69e --- /dev/null +++ b/data/software/gn/gnu-pdf.json @@ -0,0 +1,8 @@ +{ + "slug": "gnu-pdf", + "name": "GNU PDF", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3756205" + ] +} diff --git a/data/software/gn/gnu-slip.json b/data/software/gn/gnu-slip.json new file mode 100644 index 000000000000..7a98c34cbbdb --- /dev/null +++ b/data/software/gn/gnu-slip.json @@ -0,0 +1,8 @@ +{ + "slug": "gnu-slip", + "name": "GNU Slip", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76182398" + ] +} diff --git a/data/software/gn/gnu-web-translation-coordination.json b/data/software/gn/gnu-web-translation-coordination.json new file mode 100644 index 000000000000..bfe799e7b3f9 --- /dev/null +++ b/data/software/gn/gnu-web-translation-coordination.json @@ -0,0 +1,8 @@ +{ + "slug": "gnu-web-translation-coordination", + "name": "GNU Web Translation Coordination", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76184718" + ] +} diff --git a/data/software/gn/gnucad.json b/data/software/gn/gnucad.json new file mode 100644 index 000000000000..bea6acf47e2a --- /dev/null +++ b/data/software/gn/gnucad.json @@ -0,0 +1,8 @@ +{ + "slug": "gnucad", + "name": "GnuCAD", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q50378418" + ] +} diff --git a/data/software/gn/gnuschool.json b/data/software/gn/gnuschool.json new file mode 100644 index 000000000000..62b3ddb8d3ea --- /dev/null +++ b/data/software/gn/gnuschool.json @@ -0,0 +1,8 @@ +{ + "slug": "gnuschool", + "name": "GNUschool", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q45115714" + ] +} diff --git a/data/software/gn/gnushogi.json b/data/software/gn/gnushogi.json new file mode 100644 index 000000000000..2f3a97c395ce --- /dev/null +++ b/data/software/gn/gnushogi.json @@ -0,0 +1,8 @@ +{ + "slug": "gnushogi", + "name": "gnushogi", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065088" + ] +} diff --git a/data/software/gn/gnutella2.json b/data/software/gn/gnutella2.json new file mode 100644 index 000000000000..2486047c122f --- /dev/null +++ b/data/software/gn/gnutella2.json @@ -0,0 +1,8 @@ +{ + "slug": "gnutella2", + "name": "Gnutella2", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1206697" + ] +} diff --git a/data/software/go/go-continuous-delivery.json b/data/software/go/go-continuous-delivery.json new file mode 100644 index 000000000000..c62438a758c9 --- /dev/null +++ b/data/software/go/go-continuous-delivery.json @@ -0,0 +1,15 @@ +{ + "slug": "go-continuous-delivery", + "name": "Go continuous delivery", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22252153" + ], + "release_date": "2007-01-01", + "programming_languages": [ + "Java" + ], + "licenses": [ + "Apache License" + ] +} diff --git a/data/software/go/go-fuse.json b/data/software/go/go-fuse.json new file mode 100644 index 000000000000..689f4f848ebf --- /dev/null +++ b/data/software/go/go-fuse.json @@ -0,0 +1,8 @@ +{ + "slug": "go-fuse", + "name": "go-fuse", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974886" + ] +} diff --git a/data/software/go/go-messenger.json b/data/software/go/go-messenger.json new file mode 100644 index 000000000000..07e001a2f7d8 --- /dev/null +++ b/data/software/go/go-messenger.json @@ -0,0 +1,8 @@ +{ + "slug": "go-messenger", + "name": "Go!Messenger", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3109510" + ] +} diff --git a/data/software/go/go-usb.json b/data/software/go/go-usb.json new file mode 100644 index 000000000000..46ebd7b6a8c6 --- /dev/null +++ b/data/software/go/go-usb.json @@ -0,0 +1,8 @@ +{ + "slug": "go-usb", + "name": "go-usb", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974888" + ] +} diff --git a/data/software/go/go1984.json b/data/software/go/go1984.json new file mode 100644 index 000000000000..69780003ea45 --- /dev/null +++ b/data/software/go/go1984.json @@ -0,0 +1,14 @@ +{ + "slug": "go1984", + "name": "go1984", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140136608" + ], + "developers": [ + "logiware GmbH" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/go/goback.json b/data/software/go/goback.json new file mode 100644 index 000000000000..d118d6985bb8 --- /dev/null +++ b/data/software/go/goback.json @@ -0,0 +1,14 @@ +{ + "slug": "goback", + "name": "GoBack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2890639" + ], + "developers": [ + "Gen Digital" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/go/gobohide.json b/data/software/go/gobohide.json new file mode 100644 index 000000000000..054b34d11453 --- /dev/null +++ b/data/software/go/gobohide.json @@ -0,0 +1,8 @@ +{ + "slug": "gobohide", + "name": "GoboHide", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1011281" + ] +} diff --git a/data/software/go/gobra.json b/data/software/go/gobra.json new file mode 100644 index 000000000000..10fdd2083c7b --- /dev/null +++ b/data/software/go/gobra.json @@ -0,0 +1,11 @@ +{ + "slug": "gobra", + "name": "Gobra", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116619880" + ], + "licenses": [ + "Mozilla Public License, version 2.0" + ] +} diff --git a/data/software/go/gobstones.json b/data/software/go/gobstones.json new file mode 100644 index 000000000000..64f27224bedd --- /dev/null +++ b/data/software/go/gobstones.json @@ -0,0 +1,9 @@ +{ + "slug": "gobstones", + "name": "Gobstones", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5882078" + ], + "release_date": "2009-01-01" +} diff --git a/data/software/go/gobuster.json b/data/software/go/gobuster.json new file mode 100644 index 000000000000..01586c0672bd --- /dev/null +++ b/data/software/go/gobuster.json @@ -0,0 +1,11 @@ +{ + "slug": "gobuster", + "name": "Gobuster", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116776695" + ], + "licenses": [ + "Apache Software License 2.0" + ] +} diff --git a/data/software/go/goby.json b/data/software/go/goby.json new file mode 100644 index 000000000000..1226c06acd7a --- /dev/null +++ b/data/software/go/goby.json @@ -0,0 +1,11 @@ +{ + "slug": "goby", + "name": "Goby", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5575608" + ], + "developers": [ + "Telenav" + ] +} diff --git a/data/software/go/gocatch.json b/data/software/go/gocatch.json new file mode 100644 index 000000000000..f2353d590a76 --- /dev/null +++ b/data/software/go/gocatch.json @@ -0,0 +1,8 @@ +{ + "slug": "gocatch", + "name": "GoCatch", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16927656" + ] +} diff --git a/data/software/go/gogglesmm.json b/data/software/go/gogglesmm.json new file mode 100644 index 000000000000..86f34f449c1e --- /dev/null +++ b/data/software/go/gogglesmm.json @@ -0,0 +1,8 @@ +{ + "slug": "gogglesmm", + "name": "gogglesmm", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065152" + ] +} diff --git a/data/software/go/gogrid.json b/data/software/go/gogrid.json new file mode 100644 index 000000000000..1775165e848a --- /dev/null +++ b/data/software/go/gogrid.json @@ -0,0 +1,8 @@ +{ + "slug": "gogrid", + "name": "GoGrid", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5574633" + ] +} diff --git a/data/software/go/golaem-crowd.json b/data/software/go/golaem-crowd.json new file mode 100644 index 000000000000..b5b73131d984 --- /dev/null +++ b/data/software/go/golaem-crowd.json @@ -0,0 +1,11 @@ +{ + "slug": "golaem-crowd", + "name": "Golaem Crowd", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5578359" + ], + "developers": [ + "Golaem" + ] +} diff --git a/data/software/go/goland.json b/data/software/go/goland.json new file mode 100644 index 000000000000..d0ff6bf6c86b --- /dev/null +++ b/data/software/go/goland.json @@ -0,0 +1,8 @@ +{ + "slug": "goland", + "name": "goland", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065478" + ] +} diff --git a/data/software/go/golden-spy.json b/data/software/go/golden-spy.json new file mode 100644 index 000000000000..5ac3f647b2cf --- /dev/null +++ b/data/software/go/golden-spy.json @@ -0,0 +1,8 @@ +{ + "slug": "golden-spy", + "name": "Golden Spy", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107248640" + ] +} diff --git a/data/software/go/goldsim.json b/data/software/go/goldsim.json new file mode 100644 index 000000000000..9b6f77989d94 --- /dev/null +++ b/data/software/go/goldsim.json @@ -0,0 +1,11 @@ +{ + "slug": "goldsim", + "name": "GoldSim", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5578525" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/go/golfcore.json b/data/software/go/golfcore.json new file mode 100644 index 000000000000..8eadd96fe25d --- /dev/null +++ b/data/software/go/golfcore.json @@ -0,0 +1,11 @@ +{ + "slug": "golfcore", + "name": "GolfCore", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140452682" + ], + "developers": [ + "Golfcore LLC" + ] +} diff --git a/data/software/go/gollum-browser.json b/data/software/go/gollum-browser.json new file mode 100644 index 000000000000..6dde4a779c09 --- /dev/null +++ b/data/software/go/gollum-browser.json @@ -0,0 +1,11 @@ +{ + "slug": "gollum-browser", + "name": "Gollum browser", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1191954" + ], + "programming_languages": [ + "PHP" + ] +} diff --git a/data/software/go/good-lock.json b/data/software/go/good-lock.json new file mode 100644 index 000000000000..cfde6e8cf24f --- /dev/null +++ b/data/software/go/good-lock.json @@ -0,0 +1,8 @@ +{ + "slug": "good-lock", + "name": "Good Lock", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123125339" + ] +} diff --git a/data/software/go/good-smartphone-activated-medics.json b/data/software/go/good-smartphone-activated-medics.json new file mode 100644 index 000000000000..5fcf267f25ff --- /dev/null +++ b/data/software/go/good-smartphone-activated-medics.json @@ -0,0 +1,8 @@ +{ + "slug": "good-smartphone-activated-medics", + "name": "Good Smartphone Activated Medics", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q19961304" + ] +} diff --git a/data/software/go/good-tix.json b/data/software/go/good-tix.json new file mode 100644 index 000000000000..455631e16aae --- /dev/null +++ b/data/software/go/good-tix.json @@ -0,0 +1,9 @@ +{ + "slug": "good-tix", + "name": "Good Tix", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139970148" + ], + "release_date": "2026-05-01" +} diff --git a/data/software/go/goodnotes.json b/data/software/go/goodnotes.json new file mode 100644 index 000000000000..f4b3fad7165c --- /dev/null +++ b/data/software/go/goodnotes.json @@ -0,0 +1,8 @@ +{ + "slug": "goodnotes", + "name": "GoodNotes", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110442565" + ] +} diff --git a/data/software/go/goodreader.json b/data/software/go/goodreader.json new file mode 100644 index 000000000000..ad0c5db50129 --- /dev/null +++ b/data/software/go/goodreader.json @@ -0,0 +1,11 @@ +{ + "slug": "goodreader", + "name": "GoodReader", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17182786" + ], + "operating_systems": [ + "iOS" + ] +} diff --git a/data/software/go/goodtools.json b/data/software/go/goodtools.json new file mode 100644 index 000000000000..13a948f89d87 --- /dev/null +++ b/data/software/go/goodtools.json @@ -0,0 +1,11 @@ +{ + "slug": "goodtools", + "name": "GoodTools", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q753183" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/go/goodwall.json b/data/software/go/goodwall.json new file mode 100644 index 000000000000..bb42a4376490 --- /dev/null +++ b/data/software/go/goodwall.json @@ -0,0 +1,11 @@ +{ + "slug": "goodwall", + "name": "Goodwall", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18357312" + ], + "operating_systems": [ + "iOS" + ] +} diff --git a/data/software/go/google-3d-warehouse.json b/data/software/go/google-3d-warehouse.json new file mode 100644 index 000000000000..1169c7648110 --- /dev/null +++ b/data/software/go/google-3d-warehouse.json @@ -0,0 +1,8 @@ +{ + "slug": "google-3d-warehouse", + "name": "Google 3D Warehouse", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084993" + ] +} diff --git a/data/software/go/google-admin.json b/data/software/go/google-admin.json new file mode 100644 index 000000000000..1772f2f06c35 --- /dev/null +++ b/data/software/go/google-admin.json @@ -0,0 +1,11 @@ +{ + "slug": "google-admin", + "name": "Google Admin", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60178298" + ], + "developers": [ + "Google" + ] +} diff --git a/data/software/go/google-adsense.json b/data/software/go/google-adsense.json new file mode 100644 index 000000000000..aa1e7c286685 --- /dev/null +++ b/data/software/go/google-adsense.json @@ -0,0 +1,15 @@ +{ + "slug": "google-adsense", + "name": "Google AdSense", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q183480" + ], + "release_date": "2003-06-18", + "developers": [ + "Google" + ], + "operating_systems": [ + "cross-platform" + ] +} diff --git a/data/software/go/google-ai-studio.json b/data/software/go/google-ai-studio.json new file mode 100644 index 000000000000..38985927542b --- /dev/null +++ b/data/software/go/google-ai-studio.json @@ -0,0 +1,12 @@ +{ + "slug": "google-ai-studio", + "name": "Google AI Studio", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136556923" + ], + "release_date": "2023-01-01", + "developers": [ + "Google" + ] +} diff --git a/data/software/go/google-app-runtime-for-chrome.json b/data/software/go/google-app-runtime-for-chrome.json new file mode 100644 index 000000000000..b26f9ceefbea --- /dev/null +++ b/data/software/go/google-app-runtime-for-chrome.json @@ -0,0 +1,11 @@ +{ + "slug": "google-app-runtime-for-chrome", + "name": "Google App Runtime for Chrome", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q19880945" + ], + "developers": [ + "Google" + ] +} diff --git a/data/software/go/google-arts-culture.json b/data/software/go/google-arts-culture.json new file mode 100644 index 000000000000..2c67459ebf45 --- /dev/null +++ b/data/software/go/google-arts-culture.json @@ -0,0 +1,11 @@ +{ + "slug": "google-arts-culture", + "name": "Google Arts & Culture", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q369089" + ], + "developers": [ + "Google" + ] +} diff --git a/data/software/go/google-blogsearch-scraper.json b/data/software/go/google-blogsearch-scraper.json new file mode 100644 index 000000000000..22965ce525aa --- /dev/null +++ b/data/software/go/google-blogsearch-scraper.json @@ -0,0 +1,8 @@ +{ + "slug": "google-blogsearch-scraper", + "name": "Google Blogsearch Scraper", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084994" + ] +} diff --git a/data/software/go/google-building-maker.json b/data/software/go/google-building-maker.json new file mode 100644 index 000000000000..cd6af3cfc306 --- /dev/null +++ b/data/software/go/google-building-maker.json @@ -0,0 +1,8 @@ +{ + "slug": "google-building-maker", + "name": "Google Building Maker", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5583810" + ] +} diff --git a/data/software/go/google-chart-api.json b/data/software/go/google-chart-api.json new file mode 100644 index 000000000000..73a1dff707a3 --- /dev/null +++ b/data/software/go/google-chart-api.json @@ -0,0 +1,9 @@ +{ + "slug": "google-chart-api", + "name": "Google Chart API", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5583813" + ], + "release_date": "2007-01-01" +} diff --git a/data/software/go/google-charts.json b/data/software/go/google-charts.json new file mode 100644 index 000000000000..92a88806a3b5 --- /dev/null +++ b/data/software/go/google-charts.json @@ -0,0 +1,11 @@ +{ + "slug": "google-charts", + "name": "Google Charts", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28957012" + ], + "developers": [ + "Google" + ] +} diff --git a/data/software/go/google-checkout.json b/data/software/go/google-checkout.json new file mode 100644 index 000000000000..420f808aa3b6 --- /dev/null +++ b/data/software/go/google-checkout.json @@ -0,0 +1,11 @@ +{ + "slug": "google-checkout", + "name": "Google Checkout", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1048294" + ], + "developers": [ + "Google" + ] +} diff --git a/data/software/go/google-cloud-connect.json b/data/software/go/google-cloud-connect.json new file mode 100644 index 000000000000..d5dd48a7d1a8 --- /dev/null +++ b/data/software/go/google-cloud-connect.json @@ -0,0 +1,11 @@ +{ + "slug": "google-cloud-connect", + "name": "Google Cloud Connect", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2501673" + ], + "developers": [ + "Google" + ] +} diff --git a/data/software/go/google-cloud-print.json b/data/software/go/google-cloud-print.json new file mode 100644 index 000000000000..66b1be61c932 --- /dev/null +++ b/data/software/go/google-cloud-print.json @@ -0,0 +1,11 @@ +{ + "slug": "google-cloud-print", + "name": "Google Cloud Print", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q540202" + ], + "developers": [ + "Google" + ] +} diff --git a/data/software/go/google-cloud-s-operations-suite.json b/data/software/go/google-cloud-s-operations-suite.json new file mode 100644 index 000000000000..8604fdc736a5 --- /dev/null +++ b/data/software/go/google-cloud-s-operations-suite.json @@ -0,0 +1,11 @@ +{ + "slug": "google-cloud-s-operations-suite", + "name": "Google Cloud's operations suite", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17088889" + ], + "developers": [ + "Google" + ] +} diff --git a/data/software/go/google-cloud-sdk.json b/data/software/go/google-cloud-sdk.json new file mode 100644 index 000000000000..47b89aff94c3 --- /dev/null +++ b/data/software/go/google-cloud-sdk.json @@ -0,0 +1,11 @@ +{ + "slug": "google-cloud-sdk", + "name": "Google Cloud SDK", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60023631" + ], + "developers": [ + "Google" + ] +} diff --git a/data/software/go/google-cloud-search-q60193397.json b/data/software/go/google-cloud-search-q60193397.json new file mode 100644 index 000000000000..dde515a2bd82 --- /dev/null +++ b/data/software/go/google-cloud-search-q60193397.json @@ -0,0 +1,11 @@ +{ + "slug": "google-cloud-search-q60193397", + "name": "Google Cloud Search", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60193397" + ], + "developers": [ + "Google" + ] +} diff --git a/data/software/go/google-cloud-search.json b/data/software/go/google-cloud-search.json new file mode 100644 index 000000000000..e9f163d4b9bb --- /dev/null +++ b/data/software/go/google-cloud-search.json @@ -0,0 +1,14 @@ +{ + "slug": "google-cloud-search", + "name": "Google Cloud Search", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28957014" + ], + "developers": [ + "Google" + ], + "operating_systems": [ + "iOS" + ] +} diff --git a/data/software/go/google-code-search.json b/data/software/go/google-code-search.json new file mode 100644 index 000000000000..e98bc3d26d18 --- /dev/null +++ b/data/software/go/google-code-search.json @@ -0,0 +1,11 @@ +{ + "slug": "google-code-search", + "name": "Google Code Search", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q664672" + ], + "developers": [ + "Google" + ] +} diff --git a/data/software/go/google-colab.json b/data/software/go/google-colab.json new file mode 100644 index 000000000000..ed0d7ead776f --- /dev/null +++ b/data/software/go/google-colab.json @@ -0,0 +1,8 @@ +{ + "slug": "google-colab", + "name": "Google Colab", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084995" + ] +} diff --git a/data/software/go/google-currents.json b/data/software/go/google-currents.json new file mode 100644 index 000000000000..08ac08394b73 --- /dev/null +++ b/data/software/go/google-currents.json @@ -0,0 +1,11 @@ +{ + "slug": "google-currents", + "name": "Google Currents", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q85764061" + ], + "developers": [ + "Google" + ] +} diff --git a/data/software/go/google-docs-editors.json b/data/software/go/google-docs-editors.json new file mode 100644 index 000000000000..0dbd9c2745a0 --- /dev/null +++ b/data/software/go/google-docs-editors.json @@ -0,0 +1,8 @@ +{ + "slug": "google-docs-editors", + "name": "Google Docs Editors", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q100154042" + ] +} diff --git a/data/software/go/google-file-system.json b/data/software/go/google-file-system.json new file mode 100644 index 000000000000..c5348d697f77 --- /dev/null +++ b/data/software/go/google-file-system.json @@ -0,0 +1,15 @@ +{ + "slug": "google-file-system", + "name": "Google File System", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1537683" + ], + "release_date": "2003-01-01", + "developers": [ + "Google Search" + ], + "operating_systems": [ + "Linux kernel" + ] +} diff --git a/data/software/go/google-finance.json b/data/software/go/google-finance.json new file mode 100644 index 000000000000..c37dd66f253c --- /dev/null +++ b/data/software/go/google-finance.json @@ -0,0 +1,11 @@ +{ + "slug": "google-finance", + "name": "Google Finance", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1198691" + ], + "developers": [ + "Google" + ] +} diff --git a/data/software/go/google-fit.json b/data/software/go/google-fit.json new file mode 100644 index 000000000000..8bd48aae18c7 --- /dev/null +++ b/data/software/go/google-fit.json @@ -0,0 +1,18 @@ +{ + "slug": "google-fit", + "name": "Google Fit", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18150347" + ], + "release_date": "2014-01-01", + "developers": [ + "Google" + ], + "licenses": [ + "proprietary license" + ], + "genres": [ + "fitness tracker" + ] +} diff --git a/data/software/go/google-font-tools.json b/data/software/go/google-font-tools.json new file mode 100644 index 000000000000..9fcbf5c930e6 --- /dev/null +++ b/data/software/go/google-font-tools.json @@ -0,0 +1,11 @@ +{ + "slug": "google-font-tools", + "name": "Google Font Tools", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q119961000" + ], + "licenses": [ + "Apache Software License 2.0" + ] +} diff --git a/data/software/go/google-for-education.json b/data/software/go/google-for-education.json new file mode 100644 index 000000000000..60f2fc3e9198 --- /dev/null +++ b/data/software/go/google-for-education.json @@ -0,0 +1,11 @@ +{ + "slug": "google-for-education", + "name": "Google for Education", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q19878045" + ], + "developers": [ + "Google" + ] +} diff --git a/data/software/go/google-gadgets-api.json b/data/software/go/google-gadgets-api.json new file mode 100644 index 000000000000..6ee557a90cf2 --- /dev/null +++ b/data/software/go/google-gadgets-api.json @@ -0,0 +1,11 @@ +{ + "slug": "google-gadgets-api", + "name": "Google Gadgets API", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5583839" + ], + "developers": [ + "Google" + ] +} diff --git a/data/software/go/google-gesture-search.json b/data/software/go/google-gesture-search.json new file mode 100644 index 000000000000..d60b24caff28 --- /dev/null +++ b/data/software/go/google-gesture-search.json @@ -0,0 +1,11 @@ +{ + "slug": "google-gesture-search", + "name": "Google Gesture Search", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28957013" + ], + "developers": [ + "Google" + ] +} diff --git a/data/software/go/google-hacks.json b/data/software/go/google-hacks.json new file mode 100644 index 000000000000..2e95e8d0af4f --- /dev/null +++ b/data/software/go/google-hacks.json @@ -0,0 +1,8 @@ +{ + "slug": "google-hacks", + "name": "Google Hacks", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28803438" + ] +} diff --git a/data/software/go/google-hire.json b/data/software/go/google-hire.json new file mode 100644 index 000000000000..f56794c134b1 --- /dev/null +++ b/data/software/go/google-hire.json @@ -0,0 +1,8 @@ +{ + "slug": "google-hire", + "name": "Google Hire", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q54958397" + ] +} diff --git a/data/software/go/google-jump.json b/data/software/go/google-jump.json new file mode 100644 index 000000000000..f346dc326c00 --- /dev/null +++ b/data/software/go/google-jump.json @@ -0,0 +1,11 @@ +{ + "slug": "google-jump", + "name": "Google Jump", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q21463119" + ], + "developers": [ + "Google AR & VR" + ] +} diff --git a/data/software/go/google-kythe.json b/data/software/go/google-kythe.json new file mode 100644 index 000000000000..ce0d84de5af8 --- /dev/null +++ b/data/software/go/google-kythe.json @@ -0,0 +1,14 @@ +{ + "slug": "google-kythe", + "name": "Google Kythe", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q19597364" + ], + "developers": [ + "Google" + ], + "licenses": [ + "Apache License" + ] +} diff --git a/data/software/go/google-mashup-editor.json b/data/software/go/google-mashup-editor.json new file mode 100644 index 000000000000..7cb18007e1bc --- /dev/null +++ b/data/software/go/google-mashup-editor.json @@ -0,0 +1,11 @@ +{ + "slug": "google-mashup-editor", + "name": "Google Mashup Editor", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5583861" + ], + "developers": [ + "Google" + ] +} diff --git a/data/software/go/google-millwheel.json b/data/software/go/google-millwheel.json new file mode 100644 index 000000000000..2a4d96f3430d --- /dev/null +++ b/data/software/go/google-millwheel.json @@ -0,0 +1,8 @@ +{ + "slug": "google-millwheel", + "name": "Google MillWheel", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25110405" + ] +} diff --git a/data/software/go/google-news-scraper.json b/data/software/go/google-news-scraper.json new file mode 100644 index 000000000000..960b9acdc198 --- /dev/null +++ b/data/software/go/google-news-scraper.json @@ -0,0 +1,8 @@ +{ + "slug": "google-news-scraper", + "name": "Google News Scraper", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084996" + ] +} diff --git a/data/software/go/google-news-weather.json b/data/software/go/google-news-weather.json new file mode 100644 index 000000000000..5411f173c7cd --- /dev/null +++ b/data/software/go/google-news-weather.json @@ -0,0 +1,14 @@ +{ + "slug": "google-news-weather", + "name": "Google News & Weather", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18345379" + ], + "developers": [ + "Google" + ], + "operating_systems": [ + "Android Ice Cream Sandwich" + ] +} diff --git a/data/software/go/google-now-launcher.json b/data/software/go/google-now-launcher.json new file mode 100644 index 000000000000..5ff7d1e2cd08 --- /dev/null +++ b/data/software/go/google-now-launcher.json @@ -0,0 +1,8 @@ +{ + "slug": "google-now-launcher", + "name": "Google Now Launcher", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18651125" + ] +} diff --git a/data/software/go/google-one-pass.json b/data/software/go/google-one-pass.json new file mode 100644 index 000000000000..a2737b0d5aaa --- /dev/null +++ b/data/software/go/google-one-pass.json @@ -0,0 +1,11 @@ +{ + "slug": "google-one-pass", + "name": "Google One Pass", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5583858" + ], + "developers": [ + "Google" + ] +} diff --git a/data/software/go/google-optimize.json b/data/software/go/google-optimize.json new file mode 100644 index 000000000000..e8c832b5e27f --- /dev/null +++ b/data/software/go/google-optimize.json @@ -0,0 +1,14 @@ +{ + "slug": "google-optimize", + "name": "Google Optimize", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1537691" + ], + "developers": [ + "Google" + ], + "licenses": [ + "freemium" + ] +} diff --git a/data/software/go/google-pack.json b/data/software/go/google-pack.json new file mode 100644 index 000000000000..da122d1c5f3d --- /dev/null +++ b/data/software/go/google-pack.json @@ -0,0 +1,11 @@ +{ + "slug": "google-pack", + "name": "Google Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q79593" + ], + "developers": [ + "Google" + ] +} diff --git a/data/software/go/google-page-creator.json b/data/software/go/google-page-creator.json new file mode 100644 index 000000000000..e2c4b0eeb39d --- /dev/null +++ b/data/software/go/google-page-creator.json @@ -0,0 +1,12 @@ +{ + "slug": "google-page-creator", + "name": "Google Page Creator", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3110781" + ], + "developers": [ + "Nathan Naze", + "Google" + ] +} diff --git a/data/software/go/google-pay-send.json b/data/software/go/google-pay-send.json new file mode 100644 index 000000000000..60b0d2283f5e --- /dev/null +++ b/data/software/go/google-pay-send.json @@ -0,0 +1,11 @@ +{ + "slug": "google-pay-send", + "name": "Google Pay Send", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2334242" + ], + "developers": [ + "Google" + ] +} diff --git a/data/software/go/google-pay.json b/data/software/go/google-pay.json new file mode 100644 index 000000000000..06e3cdf46467 --- /dev/null +++ b/data/software/go/google-pay.json @@ -0,0 +1,8 @@ +{ + "slug": "google-pay", + "name": "Google Pay", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113364543" + ] +} diff --git a/data/software/go/google-personalized-search.json b/data/software/go/google-personalized-search.json new file mode 100644 index 000000000000..cfe3a469ee62 --- /dev/null +++ b/data/software/go/google-personalized-search.json @@ -0,0 +1,11 @@ +{ + "slug": "google-personalized-search", + "name": "Google Personalized Search", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5583864" + ], + "developers": [ + "Google" + ] +} diff --git a/data/software/go/google-play-app-licensing.json b/data/software/go/google-play-app-licensing.json new file mode 100644 index 000000000000..2087209a75b9 --- /dev/null +++ b/data/software/go/google-play-app-licensing.json @@ -0,0 +1,8 @@ +{ + "slug": "google-play-app-licensing", + "name": "Google Play App Licensing", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123085009" + ] +} diff --git a/data/software/go/google-play-newsstand.json b/data/software/go/google-play-newsstand.json new file mode 100644 index 000000000000..eefd54f222b5 --- /dev/null +++ b/data/software/go/google-play-newsstand.json @@ -0,0 +1,12 @@ +{ + "slug": "google-play-newsstand", + "name": "Google Play Newsstand", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18643705" + ], + "release_date": "2013-11-20", + "developers": [ + "Google" + ] +} diff --git a/data/software/go/google-plugin-for-eclipse.json b/data/software/go/google-plugin-for-eclipse.json new file mode 100644 index 000000000000..a1492d7850b4 --- /dev/null +++ b/data/software/go/google-plugin-for-eclipse.json @@ -0,0 +1,12 @@ +{ + "slug": "google-plugin-for-eclipse", + "name": "Google Plugin for Eclipse", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5583870" + ], + "release_date": "2009-04-07", + "programming_languages": [ + "Java" + ] +} diff --git a/data/software/go/google-read-along.json b/data/software/go/google-read-along.json new file mode 100644 index 000000000000..12d67570ed4c --- /dev/null +++ b/data/software/go/google-read-along.json @@ -0,0 +1,8 @@ +{ + "slug": "google-read-along", + "name": "Google Read Along", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q104721162" + ] +} diff --git a/data/software/go/google-scholar-citations.json b/data/software/go/google-scholar-citations.json new file mode 100644 index 000000000000..f711f789d4fb --- /dev/null +++ b/data/software/go/google-scholar-citations.json @@ -0,0 +1,8 @@ +{ + "slug": "google-scholar-citations", + "name": "Google Scholar Citations", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084997" + ] +} diff --git a/data/software/go/google-shopping.json b/data/software/go/google-shopping.json new file mode 100644 index 000000000000..e5addca40830 --- /dev/null +++ b/data/software/go/google-shopping.json @@ -0,0 +1,11 @@ +{ + "slug": "google-shopping", + "name": "Google Shopping", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1433417" + ], + "developers": [ + "Google" + ] +} diff --git a/data/software/go/google-sites.json b/data/software/go/google-sites.json new file mode 100644 index 000000000000..fe5126dc9b79 --- /dev/null +++ b/data/software/go/google-sites.json @@ -0,0 +1,11 @@ +{ + "slug": "google-sites", + "name": "Google Sites", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q623456" + ], + "developers": [ + "Google" + ] +} diff --git a/data/software/go/google-sky.json b/data/software/go/google-sky.json new file mode 100644 index 000000000000..87001197892e --- /dev/null +++ b/data/software/go/google-sky.json @@ -0,0 +1,8 @@ +{ + "slug": "google-sky", + "name": "Google Sky", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q974700" + ] +} diff --git a/data/software/go/google-spaces.json b/data/software/go/google-spaces.json new file mode 100644 index 000000000000..170297a69d4b --- /dev/null +++ b/data/software/go/google-spaces.json @@ -0,0 +1,19 @@ +{ + "slug": "google-spaces", + "name": "Google Spaces", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25345972" + ], + "developers": [ + "Google" + ], + "operating_systems": [ + "iOS", + "macOS", + "Microsoft Windows" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/go/google-street-view-q25488739.json b/data/software/go/google-street-view-q25488739.json new file mode 100644 index 000000000000..78a561be1e35 --- /dev/null +++ b/data/software/go/google-street-view-q25488739.json @@ -0,0 +1,8 @@ +{ + "slug": "google-street-view-q25488739", + "name": "Google Street View", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25488739" + ] +} diff --git a/data/software/go/google-street-view.json b/data/software/go/google-street-view.json new file mode 100644 index 000000000000..a71dda206892 --- /dev/null +++ b/data/software/go/google-street-view.json @@ -0,0 +1,12 @@ +{ + "slug": "google-street-view", + "name": "Google Street View", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q213602" + ], + "release_date": "2007-05-25", + "developers": [ + "Google" + ] +} diff --git a/data/software/go/google-sync.json b/data/software/go/google-sync.json new file mode 100644 index 000000000000..0e2e1b989e92 --- /dev/null +++ b/data/software/go/google-sync.json @@ -0,0 +1,11 @@ +{ + "slug": "google-sync", + "name": "Google Sync", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2502809" + ], + "developers": [ + "Google" + ] +} diff --git a/data/software/go/google-takeout.json b/data/software/go/google-takeout.json new file mode 100644 index 000000000000..102bbec94c21 --- /dev/null +++ b/data/software/go/google-takeout.json @@ -0,0 +1,12 @@ +{ + "slug": "google-takeout", + "name": "Google Takeout", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3110764" + ], + "release_date": "2011-01-01", + "developers": [ + "Google" + ] +} diff --git a/data/software/go/google-talk.json b/data/software/go/google-talk.json new file mode 100644 index 000000000000..0e45f6c71df5 --- /dev/null +++ b/data/software/go/google-talk.json @@ -0,0 +1,26 @@ +{ + "slug": "google-talk", + "name": "Google Talk", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q51713" + ], + "release_date": "2005-08-24", + "developers": [ + "Google" + ], + "operating_systems": [ + "webOS", + "Maemo", + "ChromeOS", + "iOS", + "BlackBerry 10", + "BlackBerry OS", + "Windows Mobile", + "macOS", + "Microsoft Windows" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/go/google-tasks.json b/data/software/go/google-tasks.json new file mode 100644 index 000000000000..1944cc20e979 --- /dev/null +++ b/data/software/go/google-tasks.json @@ -0,0 +1,8 @@ +{ + "slug": "google-tasks", + "name": "Google Tasks", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113288788" + ] +} diff --git a/data/software/go/google-tez.json b/data/software/go/google-tez.json new file mode 100644 index 000000000000..39c4c7df9d54 --- /dev/null +++ b/data/software/go/google-tez.json @@ -0,0 +1,15 @@ +{ + "slug": "google-tez", + "name": "Google Tez", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q40406186" + ], + "release_date": "2017-09-19", + "developers": [ + "Google" + ], + "operating_systems": [ + "iOS" + ] +} diff --git a/data/software/go/google-toolbar.json b/data/software/go/google-toolbar.json new file mode 100644 index 000000000000..fea4c29eb10f --- /dev/null +++ b/data/software/go/google-toolbar.json @@ -0,0 +1,11 @@ +{ + "slug": "google-toolbar", + "name": "Google Toolbar", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q79608" + ], + "developers": [ + "Google" + ] +} diff --git a/data/software/go/google-translator-toolkit.json b/data/software/go/google-translator-toolkit.json new file mode 100644 index 000000000000..a22318a8d292 --- /dev/null +++ b/data/software/go/google-translator-toolkit.json @@ -0,0 +1,11 @@ +{ + "slug": "google-translator-toolkit", + "name": "Google Translator Toolkit", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2755835" + ], + "developers": [ + "Google" + ] +} diff --git a/data/software/go/google-transliteration.json b/data/software/go/google-transliteration.json new file mode 100644 index 000000000000..0e2b856b63e7 --- /dev/null +++ b/data/software/go/google-transliteration.json @@ -0,0 +1,8 @@ +{ + "slug": "google-transliteration", + "name": "Google transliteration", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3520765" + ] +} diff --git a/data/software/go/google-travel.json b/data/software/go/google-travel.json new file mode 100644 index 000000000000..0bb59870ce39 --- /dev/null +++ b/data/software/go/google-travel.json @@ -0,0 +1,15 @@ +{ + "slug": "google-travel", + "name": "Google Travel", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q56280421" + ], + "developers": [ + "Google" + ], + "genres": [ + "route planning software", + "trip planner" + ] +} diff --git a/data/software/go/google-vault.json b/data/software/go/google-vault.json new file mode 100644 index 000000000000..87ebacfd0e1d --- /dev/null +++ b/data/software/go/google-vault.json @@ -0,0 +1,11 @@ +{ + "slug": "google-vault", + "name": "Google Vault", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60193001" + ], + "developers": [ + "Google" + ] +} diff --git a/data/software/go/google-video-marketplace.json b/data/software/go/google-video-marketplace.json new file mode 100644 index 000000000000..46bd73c195ae --- /dev/null +++ b/data/software/go/google-video-marketplace.json @@ -0,0 +1,11 @@ +{ + "slug": "google-video-marketplace", + "name": "Google Video Marketplace", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5583894" + ], + "developers": [ + "Google" + ] +} diff --git a/data/software/go/google-videos.json b/data/software/go/google-videos.json new file mode 100644 index 000000000000..8cb89d389c44 --- /dev/null +++ b/data/software/go/google-videos.json @@ -0,0 +1,19 @@ +{ + "slug": "google-videos", + "name": "Google Videos", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q219885" + ], + "developers": [ + "Google" + ], + "operating_systems": [ + "iOS", + "macOS", + "Microsoft Windows" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/go/google-voice-search.json b/data/software/go/google-voice-search.json new file mode 100644 index 000000000000..0c5f6d544225 --- /dev/null +++ b/data/software/go/google-voice-search.json @@ -0,0 +1,11 @@ +{ + "slug": "google-voice-search", + "name": "Google Voice Search", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2736257" + ], + "developers": [ + "Google" + ] +} diff --git a/data/software/go/google-voice.json b/data/software/go/google-voice.json new file mode 100644 index 000000000000..851f36ba6129 --- /dev/null +++ b/data/software/go/google-voice.json @@ -0,0 +1,15 @@ +{ + "slug": "google-voice", + "name": "Google Voice", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q51712" + ], + "release_date": "2009-01-01", + "developers": [ + "Google" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/go/google-web-accelerator.json b/data/software/go/google-web-accelerator.json new file mode 100644 index 000000000000..13096650fdae --- /dev/null +++ b/data/software/go/google-web-accelerator.json @@ -0,0 +1,14 @@ +{ + "slug": "google-web-accelerator", + "name": "Google Web Accelerator", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2249121" + ], + "developers": [ + "Google" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/go/google-wonder-wheel.json b/data/software/go/google-wonder-wheel.json new file mode 100644 index 000000000000..a6842c8c9a7e --- /dev/null +++ b/data/software/go/google-wonder-wheel.json @@ -0,0 +1,8 @@ +{ + "slug": "google-wonder-wheel", + "name": "Google Wonder Wheel", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084999" + ] +} diff --git a/data/software/go/google-zanzibar.json b/data/software/go/google-zanzibar.json new file mode 100644 index 000000000000..1d840d129727 --- /dev/null +++ b/data/software/go/google-zanzibar.json @@ -0,0 +1,11 @@ +{ + "slug": "google-zanzibar", + "name": "Google Zanzibar", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q119950635" + ], + "developers": [ + "Google" + ] +} diff --git a/data/software/go/google.json b/data/software/go/google.json new file mode 100644 index 000000000000..d14ea7479608 --- /dev/null +++ b/data/software/go/google.json @@ -0,0 +1,8 @@ +{ + "slug": "google", + "name": "Google+", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q356" + ] +} diff --git a/data/software/go/googlescraper-lippmannian-device.json b/data/software/go/googlescraper-lippmannian-device.json new file mode 100644 index 000000000000..c2f0853613b9 --- /dev/null +++ b/data/software/go/googlescraper-lippmannian-device.json @@ -0,0 +1,8 @@ +{ + "slug": "googlescraper-lippmannian-device", + "name": "Googlescraper (Lippmannian Device)", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084998" + ] +} diff --git a/data/software/go/goose-vpn.json b/data/software/go/goose-vpn.json new file mode 100644 index 000000000000..e49c8d5bd87d --- /dev/null +++ b/data/software/go/goose-vpn.json @@ -0,0 +1,8 @@ +{ + "slug": "goose-vpn", + "name": "GOOSE VPN", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111011420" + ] +} diff --git a/data/software/go/goosy.json b/data/software/go/goosy.json new file mode 100644 index 000000000000..10d12c0d2bfe --- /dev/null +++ b/data/software/go/goosy.json @@ -0,0 +1,11 @@ +{ + "slug": "goosy", + "name": "GOOSY", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q114809738" + ], + "developers": [ + "GSI Helmholtz Centre for Heavy Ion Research" + ] +} diff --git a/data/software/go/gopher.json b/data/software/go/gopher.json new file mode 100644 index 000000000000..aa31519cf7ba --- /dev/null +++ b/data/software/go/gopher.json @@ -0,0 +1,8 @@ +{ + "slug": "gopher", + "name": "Gopher+", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5584259" + ] +} diff --git a/data/software/go/goptical.json b/data/software/go/goptical.json new file mode 100644 index 000000000000..11bfbc51b8f0 --- /dev/null +++ b/data/software/go/goptical.json @@ -0,0 +1,8 @@ +{ + "slug": "goptical", + "name": "Goptical", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q45115770" + ] +} diff --git a/data/software/go/goskills.json b/data/software/go/goskills.json new file mode 100644 index 000000000000..1861dd9e9661 --- /dev/null +++ b/data/software/go/goskills.json @@ -0,0 +1,8 @@ +{ + "slug": "goskills", + "name": "GoSkills", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q94999831" + ] +} diff --git a/data/software/go/goslinux.json b/data/software/go/goslinux.json new file mode 100644 index 000000000000..f6c66755d9b6 --- /dev/null +++ b/data/software/go/goslinux.json @@ -0,0 +1,8 @@ +{ + "slug": "goslinux", + "name": "GosLinux", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16638912" + ] +} diff --git a/data/software/go/goto.json b/data/software/go/goto.json new file mode 100644 index 000000000000..bf367390fcb8 --- /dev/null +++ b/data/software/go/goto.json @@ -0,0 +1,8 @@ +{ + "slug": "goto", + "name": "GoTo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q971477" + ] +} diff --git a/data/software/go/gotoassist.json b/data/software/go/gotoassist.json new file mode 100644 index 000000000000..ff678b187ff5 --- /dev/null +++ b/data/software/go/gotoassist.json @@ -0,0 +1,8 @@ +{ + "slug": "gotoassist", + "name": "GoToAssist", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5574647" + ] +} diff --git a/data/software/go/gototraining.json b/data/software/go/gototraining.json new file mode 100644 index 000000000000..fafc97017530 --- /dev/null +++ b/data/software/go/gototraining.json @@ -0,0 +1,11 @@ +{ + "slug": "gototraining", + "name": "Gototraining", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5587939" + ], + "developers": [ + "Citrix Systems" + ] +} diff --git a/data/software/go/gotriple-discovery-platform.json b/data/software/go/gotriple-discovery-platform.json new file mode 100644 index 000000000000..e24695c09b72 --- /dev/null +++ b/data/software/go/gotriple-discovery-platform.json @@ -0,0 +1,8 @@ +{ + "slug": "gotriple-discovery-platform", + "name": "GoTriple Discovery Platform", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085000" + ] +} diff --git a/data/software/go/goupile.json b/data/software/go/goupile.json new file mode 100644 index 000000000000..729c6632b3e3 --- /dev/null +++ b/data/software/go/goupile.json @@ -0,0 +1,11 @@ +{ + "slug": "goupile", + "name": "Goupile", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120131804" + ], + "licenses": [ + "GNU Affero General Public License, version 3.0 or later" + ] +} diff --git a/data/software/go/gource.json b/data/software/go/gource.json new file mode 100644 index 000000000000..022270b1b65c --- /dev/null +++ b/data/software/go/gource.json @@ -0,0 +1,11 @@ +{ + "slug": "gource", + "name": "Gource", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115279740" + ], + "licenses": [ + "GNU General Public License, version 3.0" + ] +} diff --git a/data/software/go/goverlan-systems-management.json b/data/software/go/goverlan-systems-management.json new file mode 100644 index 000000000000..2d7ecb40f207 --- /dev/null +++ b/data/software/go/goverlan-systems-management.json @@ -0,0 +1,15 @@ +{ + "slug": "goverlan-systems-management", + "name": "Goverlan Systems Management", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q20712426" + ], + "release_date": "1998-01-01", + "operating_systems": [ + "Microsoft Windows" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/go/governance-risk-and-compliance-software.json b/data/software/go/governance-risk-and-compliance-software.json new file mode 100644 index 000000000000..5cbfb784e6c7 --- /dev/null +++ b/data/software/go/governance-risk-and-compliance-software.json @@ -0,0 +1,8 @@ +{ + "slug": "governance-risk-and-compliance-software", + "name": "Governance, Risk and Compliance software", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138643002" + ] +} diff --git a/data/software/go/governikus.json b/data/software/go/governikus.json new file mode 100644 index 000000000000..841ba16015f3 --- /dev/null +++ b/data/software/go/governikus.json @@ -0,0 +1,11 @@ +{ + "slug": "governikus", + "name": "Governikus", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1540435" + ], + "developers": [ + "Governikus KG" + ] +} diff --git a/data/software/go/govpay.json b/data/software/go/govpay.json new file mode 100644 index 000000000000..90d2db76059c --- /dev/null +++ b/data/software/go/govpay.json @@ -0,0 +1,8 @@ +{ + "slug": "govpay", + "name": "GovPay", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134413016" + ] +} diff --git a/data/software/go/gox.json b/data/software/go/gox.json new file mode 100644 index 000000000000..f594a6830bba --- /dev/null +++ b/data/software/go/gox.json @@ -0,0 +1,8 @@ +{ + "slug": "gox", + "name": "Gox", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110474439" + ] +} diff --git a/data/software/gp/gpa.json b/data/software/gp/gpa.json new file mode 100644 index 000000000000..a5a519aa2788 --- /dev/null +++ b/data/software/gp/gpa.json @@ -0,0 +1,8 @@ +{ + "slug": "gpa", + "name": "GPA", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110474575" + ] +} diff --git a/data/software/gp/gpass.json b/data/software/gp/gpass.json new file mode 100644 index 000000000000..801e2fdb05a7 --- /dev/null +++ b/data/software/gp/gpass.json @@ -0,0 +1,8 @@ +{ + "slug": "gpass", + "name": "GPASS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5514155" + ] +} diff --git a/data/software/gp/gpi-space.json b/data/software/gp/gpi-space.json new file mode 100644 index 000000000000..c5c1163de36f --- /dev/null +++ b/data/software/gp/gpi-space.json @@ -0,0 +1,9 @@ +{ + "slug": "gpi-space", + "name": "GPI-Space", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17091053" + ], + "release_date": "2010-01-01" +} diff --git a/data/software/gp/gpicview.json b/data/software/gp/gpicview.json new file mode 100644 index 000000000000..0cbff2737fda --- /dev/null +++ b/data/software/gp/gpicview.json @@ -0,0 +1,11 @@ +{ + "slug": "gpicview", + "name": "GPicView", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2172010" + ], + "licenses": [ + "GNU General Public License, version 2.0" + ] +} diff --git a/data/software/gp/gpn-schedule.json b/data/software/gp/gpn-schedule.json new file mode 100644 index 000000000000..c7a3cf219b1c --- /dev/null +++ b/data/software/gp/gpn-schedule.json @@ -0,0 +1,11 @@ +{ + "slug": "gpn-schedule", + "name": "GPN Schedule", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140129504" + ], + "licenses": [ + "Apache Software License 2.0" + ] +} diff --git a/data/software/gp/gpops-ii.json b/data/software/gp/gpops-ii.json new file mode 100644 index 000000000000..0fe94ead1156 --- /dev/null +++ b/data/software/gp/gpops-ii.json @@ -0,0 +1,11 @@ +{ + "slug": "gpops-ii", + "name": "GPOPS-II", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22682127" + ], + "operating_systems": [ + "macOS" + ] +} diff --git a/data/software/gp/gpp.json b/data/software/gp/gpp.json new file mode 100644 index 000000000000..cf68ae9e5e68 --- /dev/null +++ b/data/software/gp/gpp.json @@ -0,0 +1,8 @@ +{ + "slug": "gpp", + "name": "GPP", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110474627" + ] +} diff --git a/data/software/gp/gps-visualizer.json b/data/software/gp/gps-visualizer.json new file mode 100644 index 000000000000..c762fb518f36 --- /dev/null +++ b/data/software/gp/gps-visualizer.json @@ -0,0 +1,8 @@ +{ + "slug": "gps-visualizer", + "name": "GPS Visualizer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085001" + ] +} diff --git a/data/software/gp/gpsprune.json b/data/software/gp/gpsprune.json new file mode 100644 index 000000000000..66317c9d926e --- /dev/null +++ b/data/software/gp/gpsprune.json @@ -0,0 +1,15 @@ +{ + "slug": "gpsprune", + "name": "GpsPrune", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124684408" + ], + "release_date": "2006-09-01", + "programming_languages": [ + "Java" + ], + "licenses": [ + "GNU General Public License, version 2.0" + ] +} diff --git a/data/software/gp/gpt-5-2.json b/data/software/gp/gpt-5-2.json new file mode 100644 index 000000000000..f6bc72a655b1 --- /dev/null +++ b/data/software/gp/gpt-5-2.json @@ -0,0 +1,15 @@ +{ + "slug": "gpt-5-2", + "name": "GPT-5.2", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137401468" + ], + "release_date": "2025-12-11", + "developers": [ + "OpenAI" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/gp/gpt-5-4.json b/data/software/gp/gpt-5-4.json new file mode 100644 index 000000000000..70884b9dff20 --- /dev/null +++ b/data/software/gp/gpt-5-4.json @@ -0,0 +1,12 @@ +{ + "slug": "gpt-5-4", + "name": "GPT-5.4", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138662031" + ], + "release_date": "2026-03-05", + "developers": [ + "OpenAI" + ] +} diff --git a/data/software/gp/gpt-5-6.json b/data/software/gp/gpt-5-6.json new file mode 100644 index 000000000000..4a74b4f830ff --- /dev/null +++ b/data/software/gp/gpt-5-6.json @@ -0,0 +1,8 @@ +{ + "slug": "gpt-5-6", + "name": "GPT-5.6", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140371307" + ] +} diff --git a/data/software/gp/gptfy.json b/data/software/gp/gptfy.json new file mode 100644 index 000000000000..11200818972b --- /dev/null +++ b/data/software/gp/gptfy.json @@ -0,0 +1,8 @@ +{ + "slug": "gptfy", + "name": "GPTfy", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140262029" + ] +} diff --git a/data/software/gp/gptq.json b/data/software/gp/gptq.json new file mode 100644 index 000000000000..0d40c6ecc40a --- /dev/null +++ b/data/software/gp/gptq.json @@ -0,0 +1,11 @@ +{ + "slug": "gptq", + "name": "GPTQ", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117315350" + ], + "licenses": [ + "Apache Software License 2.0" + ] +} diff --git a/data/software/gp/gptzero.json b/data/software/gp/gptzero.json new file mode 100644 index 000000000000..a95da0ff45d3 --- /dev/null +++ b/data/software/gp/gptzero.json @@ -0,0 +1,12 @@ +{ + "slug": "gptzero", + "name": "GPTZero", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122791560" + ], + "release_date": "2023-01-03", + "programming_languages": [ + "Python" + ] +} diff --git a/data/software/gp/gpudb.json b/data/software/gp/gpudb.json new file mode 100644 index 000000000000..16f8e60eb9a9 --- /dev/null +++ b/data/software/gp/gpudb.json @@ -0,0 +1,8 @@ +{ + "slug": "gpudb", + "name": "GPUdb", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q19866917" + ] +} diff --git a/data/software/gp/gpulib.json b/data/software/gp/gpulib.json new file mode 100644 index 000000000000..b52f351f3401 --- /dev/null +++ b/data/software/gp/gpulib.json @@ -0,0 +1,8 @@ +{ + "slug": "gpulib", + "name": "GPULib", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17018579" + ] +} diff --git a/data/software/gp/gpuopen.json b/data/software/gp/gpuopen.json new file mode 100644 index 000000000000..57523b13a6be --- /dev/null +++ b/data/software/gp/gpuopen.json @@ -0,0 +1,20 @@ +{ + "slug": "gpuopen", + "name": "GPUOpen", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q21729745" + ], + "developers": [ + "AMD" + ], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [ + "OpenGL Shading Language" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/gp/gpxe.json b/data/software/gp/gpxe.json new file mode 100644 index 000000000000..92b85e3a8b34 --- /dev/null +++ b/data/software/gp/gpxe.json @@ -0,0 +1,8 @@ +{ + "slug": "gpxe", + "name": "gPXE", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5514360" + ] +} diff --git a/data/software/gp/gpxplore.json b/data/software/gp/gpxplore.json new file mode 100644 index 000000000000..c0d18d3e060d --- /dev/null +++ b/data/software/gp/gpxplore.json @@ -0,0 +1,8 @@ +{ + "slug": "gpxplore", + "name": "GPXplore", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138499491" + ] +} diff --git a/data/software/gp/gpyutils.json b/data/software/gp/gpyutils.json new file mode 100644 index 000000000000..0ed5d75a2673 --- /dev/null +++ b/data/software/gp/gpyutils.json @@ -0,0 +1,8 @@ +{ + "slug": "gpyutils", + "name": "gpyutils", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974889" + ] +} diff --git a/data/software/gq/gqrx.json b/data/software/gq/gqrx.json new file mode 100644 index 000000000000..66e3b6017a29 --- /dev/null +++ b/data/software/gq/gqrx.json @@ -0,0 +1,14 @@ +{ + "slug": "gqrx", + "name": "gqrx", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974890" + ], + "operating_systems": [ + "macOS" + ], + "licenses": [ + "GNU General Public License" + ] +} diff --git a/data/software/gr/gr-air-modes.json b/data/software/gr/gr-air-modes.json new file mode 100644 index 000000000000..5bfd85c27f99 --- /dev/null +++ b/data/software/gr/gr-air-modes.json @@ -0,0 +1,8 @@ +{ + "slug": "gr-air-modes", + "name": "gr-air-modes", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974892" + ] +} diff --git a/data/software/gr/gr-baz.json b/data/software/gr/gr-baz.json new file mode 100644 index 000000000000..7c097fd9f0a7 --- /dev/null +++ b/data/software/gr/gr-baz.json @@ -0,0 +1,8 @@ +{ + "slug": "gr-baz", + "name": "gr-baz", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974893" + ] +} diff --git a/data/software/gr/gr-foo.json b/data/software/gr/gr-foo.json new file mode 100644 index 000000000000..243edd303b70 --- /dev/null +++ b/data/software/gr/gr-foo.json @@ -0,0 +1,8 @@ +{ + "slug": "gr-foo", + "name": "gr-foo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974895" + ] +} diff --git a/data/software/gr/gr-fosphor.json b/data/software/gr/gr-fosphor.json new file mode 100644 index 000000000000..08601968fdcd --- /dev/null +++ b/data/software/gr/gr-fosphor.json @@ -0,0 +1,8 @@ +{ + "slug": "gr-fosphor", + "name": "gr-fosphor", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974896" + ] +} diff --git a/data/software/gr/gr-ieee802154.json b/data/software/gr/gr-ieee802154.json new file mode 100644 index 000000000000..a76f7a9d684f --- /dev/null +++ b/data/software/gr/gr-ieee802154.json @@ -0,0 +1,8 @@ +{ + "slug": "gr-ieee802154", + "name": "gr-ieee802154", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974897" + ] +} diff --git a/data/software/gr/gr-iqbal.json b/data/software/gr/gr-iqbal.json new file mode 100644 index 000000000000..d9400402063b --- /dev/null +++ b/data/software/gr/gr-iqbal.json @@ -0,0 +1,8 @@ +{ + "slug": "gr-iqbal", + "name": "gr-iqbal", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974898" + ] +} diff --git a/data/software/gr/gr-osmosdr.json b/data/software/gr/gr-osmosdr.json new file mode 100644 index 000000000000..078852be4559 --- /dev/null +++ b/data/software/gr/gr-osmosdr.json @@ -0,0 +1,8 @@ +{ + "slug": "gr-osmosdr", + "name": "gr-osmosdr", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974903" + ] +} diff --git a/data/software/gr/gr-rds.json b/data/software/gr/gr-rds.json new file mode 100644 index 000000000000..1903e71a2c1c --- /dev/null +++ b/data/software/gr/gr-rds.json @@ -0,0 +1,8 @@ +{ + "slug": "gr-rds", + "name": "gr-rds", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974905" + ] +} diff --git a/data/software/gr/gr-rftap.json b/data/software/gr/gr-rftap.json new file mode 100644 index 000000000000..d4ac48b19747 --- /dev/null +++ b/data/software/gr/gr-rftap.json @@ -0,0 +1,8 @@ +{ + "slug": "gr-rftap", + "name": "gr-rftap", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974906" + ] +} diff --git a/data/software/gr/graalvm.json b/data/software/gr/graalvm.json new file mode 100644 index 000000000000..af0ce77f273f --- /dev/null +++ b/data/software/gr/graalvm.json @@ -0,0 +1,22 @@ +{ + "slug": "graalvm", + "name": "GraalVM", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16928072" + ], + "developers": [ + "Oracle Corporation" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [ + "Java" + ], + "licenses": [ + "GPL linking exception", + "GNU General Public License, version 2.0" + ] +} diff --git a/data/software/gr/grab.json b/data/software/gr/grab.json new file mode 100644 index 000000000000..717b2cf3b6e1 --- /dev/null +++ b/data/software/gr/grab.json @@ -0,0 +1,14 @@ +{ + "slug": "grab", + "name": "Grab", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2249548" + ], + "developers": [ + "Apple Inc." + ], + "operating_systems": [ + "macOS" + ] +} diff --git a/data/software/gr/grabble.json b/data/software/gr/grabble.json new file mode 100644 index 000000000000..eb93a963d23d --- /dev/null +++ b/data/software/gr/grabble.json @@ -0,0 +1,11 @@ +{ + "slug": "grabble", + "name": "Grabble", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28447117" + ], + "operating_systems": [ + "iOS" + ] +} diff --git a/data/software/gr/grabcartoons.json b/data/software/gr/grabcartoons.json new file mode 100644 index 000000000000..bdf7efbbd7c0 --- /dev/null +++ b/data/software/gr/grabcartoons.json @@ -0,0 +1,8 @@ +{ + "slug": "grabcartoons", + "name": "grabcartoons", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974891" + ] +} diff --git a/data/software/gr/grabilla.json b/data/software/gr/grabilla.json new file mode 100644 index 000000000000..82e50f57aa4e --- /dev/null +++ b/data/software/gr/grabilla.json @@ -0,0 +1,11 @@ +{ + "slug": "grabilla", + "name": "Grabilla", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18150997" + ], + "genres": [ + "screencasting software" + ] +} diff --git a/data/software/gr/grabit.json b/data/software/gr/grabit.json new file mode 100644 index 000000000000..63bef17eaded --- /dev/null +++ b/data/software/gr/grabit.json @@ -0,0 +1,8 @@ +{ + "slug": "grabit", + "name": "GrabIt", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3112923" + ] +} diff --git a/data/software/gr/gradio.json b/data/software/gr/gradio.json new file mode 100644 index 000000000000..b758ee176259 --- /dev/null +++ b/data/software/gr/gradio.json @@ -0,0 +1,17 @@ +{ + "slug": "gradio", + "name": "gradio", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117829662" + ], + "developers": [ + "Abubakar Abid" + ], + "programming_languages": [ + "Python" + ], + "licenses": [ + "Apache Software License 2.0" + ] +} diff --git a/data/software/gr/gradle-app-engine-plugin.json b/data/software/gr/gradle-app-engine-plugin.json new file mode 100644 index 000000000000..eb7a08079a79 --- /dev/null +++ b/data/software/gr/gradle-app-engine-plugin.json @@ -0,0 +1,11 @@ +{ + "slug": "gradle-app-engine-plugin", + "name": "Gradle App Engine Plugin", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60062036" + ], + "developers": [ + "Google" + ] +} diff --git a/data/software/gr/graduate-talent-pool.json b/data/software/gr/graduate-talent-pool.json new file mode 100644 index 000000000000..2704a685d205 --- /dev/null +++ b/data/software/gr/graduate-talent-pool.json @@ -0,0 +1,8 @@ +{ + "slug": "graduate-talent-pool", + "name": "Graduate Talent Pool", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q55612882" + ] +} diff --git a/data/software/gr/graffiti.json b/data/software/gr/graffiti.json new file mode 100644 index 000000000000..55bc84d084cd --- /dev/null +++ b/data/software/gr/graffiti.json @@ -0,0 +1,11 @@ +{ + "slug": "graffiti", + "name": "Graffiti", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1541559" + ], + "operating_systems": [ + "Palm OS" + ] +} diff --git a/data/software/gr/grafoo.json b/data/software/gr/grafoo.json new file mode 100644 index 000000000000..150c299962bc --- /dev/null +++ b/data/software/gr/grafoo.json @@ -0,0 +1,11 @@ +{ + "slug": "grafoo", + "name": "Grafoo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q38080146" + ], + "developers": [ + "Silvio Peroni" + ] +} diff --git a/data/software/gr/grafstat.json b/data/software/gr/grafstat.json new file mode 100644 index 000000000000..c63a02ac0962 --- /dev/null +++ b/data/software/gr/grafstat.json @@ -0,0 +1,14 @@ +{ + "slug": "grafstat", + "name": "Grafstat", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1541860" + ], + "operating_systems": [ + "Microsoft Windows" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/gr/grafting-trees.json b/data/software/gr/grafting-trees.json new file mode 100644 index 000000000000..7418d8980702 --- /dev/null +++ b/data/software/gr/grafting-trees.json @@ -0,0 +1,16 @@ +{ + "slug": "grafting-trees", + "name": "Grafting trees", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131293444" + ], + "release_date": "2019-01-01", + "programming_languages": [ + "Python" + ], + "genres": [ + "generative art", + "Combinatory literature" + ] +} diff --git a/data/software/gr/grakn-ai.json b/data/software/gr/grakn-ai.json new file mode 100644 index 000000000000..a491b01a006a --- /dev/null +++ b/data/software/gr/grakn-ai.json @@ -0,0 +1,11 @@ +{ + "slug": "grakn-ai", + "name": "GRAKN.AI", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q42266763" + ], + "programming_languages": [ + "Java" + ] +} diff --git a/data/software/gr/gramtrans.json b/data/software/gr/gramtrans.json new file mode 100644 index 000000000000..18da4e5be97c --- /dev/null +++ b/data/software/gr/gramtrans.json @@ -0,0 +1,8 @@ +{ + "slug": "gramtrans", + "name": "GramTrans", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17644405" + ] +} diff --git a/data/software/gr/grand-central-dispatch.json b/data/software/gr/grand-central-dispatch.json new file mode 100644 index 000000000000..d8faa8b0d865 --- /dev/null +++ b/data/software/gr/grand-central-dispatch.json @@ -0,0 +1,14 @@ +{ + "slug": "grand-central-dispatch", + "name": "Grand Central Dispatch", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1542558" + ], + "developers": [ + "Apple Inc." + ], + "licenses": [ + "Apache License" + ] +} diff --git a/data/software/gr/grandorgue.json b/data/software/gr/grandorgue.json new file mode 100644 index 000000000000..ac974a049cee --- /dev/null +++ b/data/software/gr/grandorgue.json @@ -0,0 +1,11 @@ +{ + "slug": "grandorgue", + "name": "GrandOrgue", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q27926666" + ], + "licenses": [ + "GNU General Public License, version 2.0" + ] +} diff --git a/data/software/gr/grandperspective.json b/data/software/gr/grandperspective.json new file mode 100644 index 000000000000..32d96960cbac --- /dev/null +++ b/data/software/gr/grandperspective.json @@ -0,0 +1,8 @@ +{ + "slug": "grandperspective", + "name": "GrandPerspective", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5594209" + ] +} diff --git a/data/software/gr/grani.json b/data/software/gr/grani.json new file mode 100644 index 000000000000..5e7f40dad05e --- /dev/null +++ b/data/software/gr/grani.json @@ -0,0 +1,11 @@ +{ + "slug": "grani", + "name": "Grani", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11221863" + ], + "developers": [ + "Fenrir Inc." + ] +} diff --git a/data/software/gr/granola.json b/data/software/gr/granola.json new file mode 100644 index 000000000000..7a00158746c4 --- /dev/null +++ b/data/software/gr/granola.json @@ -0,0 +1,11 @@ +{ + "slug": "granola", + "name": "Granola", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3775749" + ], + "programming_languages": [ + "Python" + ] +} diff --git a/data/software/gr/grape.json b/data/software/gr/grape.json new file mode 100644 index 000000000000..df6232d9dc46 --- /dev/null +++ b/data/software/gr/grape.json @@ -0,0 +1,12 @@ +{ + "slug": "grape", + "name": "GRAPE", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2121523" + ], + "developers": [ + "University of Bonn", + "University of Freiburg" + ] +} diff --git a/data/software/gr/grapes.json b/data/software/gr/grapes.json new file mode 100644 index 000000000000..31100f01ccc5 --- /dev/null +++ b/data/software/gr/grapes.json @@ -0,0 +1,8 @@ +{ + "slug": "grapes", + "name": "GRAPES", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11201799" + ] +} diff --git a/data/software/gr/graph.json b/data/software/gr/graph.json new file mode 100644 index 000000000000..a88de5e2ae45 --- /dev/null +++ b/data/software/gr/graph.json @@ -0,0 +1,8 @@ +{ + "slug": "graph", + "name": "Graph", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10291386" + ] +} diff --git a/data/software/gr/grapher.json b/data/software/gr/grapher.json new file mode 100644 index 000000000000..f0afaab83191 --- /dev/null +++ b/data/software/gr/grapher.json @@ -0,0 +1,11 @@ +{ + "slug": "grapher", + "name": "Grapher", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1371756" + ], + "developers": [ + "Apple Inc." + ] +} diff --git a/data/software/gr/graphic-workshop.json b/data/software/gr/graphic-workshop.json new file mode 100644 index 000000000000..5b8393b6cdc7 --- /dev/null +++ b/data/software/gr/graphic-workshop.json @@ -0,0 +1,8 @@ +{ + "slug": "graphic-workshop", + "name": "Graphic Workshop", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63416112" + ] +} diff --git a/data/software/gr/graphical-editing-framework.json b/data/software/gr/graphical-editing-framework.json new file mode 100644 index 000000000000..a72b2f21c51c --- /dev/null +++ b/data/software/gr/graphical-editing-framework.json @@ -0,0 +1,14 @@ +{ + "slug": "graphical-editing-framework", + "name": "Graphical Editing Framework", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4039668" + ], + "developers": [ + "Eclipse Foundation" + ], + "programming_languages": [ + "Java" + ] +} diff --git a/data/software/gr/graphics-animation-system-for-professionals.json b/data/software/gr/graphics-animation-system-for-professionals.json new file mode 100644 index 000000000000..7047d15f8990 --- /dev/null +++ b/data/software/gr/graphics-animation-system-for-professionals.json @@ -0,0 +1,11 @@ +{ + "slug": "graphics-animation-system-for-professionals", + "name": "Graphics Animation System for Professionals", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4039189" + ], + "developers": [ + "John Bridges" + ] +} diff --git a/data/software/gr/graphics-device-interface.json b/data/software/gr/graphics-device-interface.json new file mode 100644 index 000000000000..8e4ca9f4a15a --- /dev/null +++ b/data/software/gr/graphics-device-interface.json @@ -0,0 +1,8 @@ +{ + "slug": "graphics-device-interface", + "name": "Graphics Device Interface", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1046656" + ] +} diff --git a/data/software/gr/graphing-twitter-data.json b/data/software/gr/graphing-twitter-data.json new file mode 100644 index 000000000000..4cab99121abb --- /dev/null +++ b/data/software/gr/graphing-twitter-data.json @@ -0,0 +1,8 @@ +{ + "slug": "graphing-twitter-data", + "name": "Graphing Twitter Data", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085002" + ] +} diff --git a/data/software/gr/graphisoft-bim-server.json b/data/software/gr/graphisoft-bim-server.json new file mode 100644 index 000000000000..462336021c41 --- /dev/null +++ b/data/software/gr/graphisoft-bim-server.json @@ -0,0 +1,18 @@ +{ + "slug": "graphisoft-bim-server", + "name": "Graphisoft BIM Server", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5597217" + ], + "release_date": "2009-01-01", + "developers": [ + "Graphisoft SE" + ], + "operating_systems": [ + "Microsoft Windows" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/gr/graphisoft-ecodesigner.json b/data/software/gr/graphisoft-ecodesigner.json new file mode 100644 index 000000000000..039a82635d6e --- /dev/null +++ b/data/software/gr/graphisoft-ecodesigner.json @@ -0,0 +1,11 @@ +{ + "slug": "graphisoft-ecodesigner", + "name": "Graphisoft EcoDesigner", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q129660" + ], + "developers": [ + "Graphisoft SE" + ] +} diff --git a/data/software/gr/graphisoft-mep-modeler.json b/data/software/gr/graphisoft-mep-modeler.json new file mode 100644 index 000000000000..77f6c31401f7 --- /dev/null +++ b/data/software/gr/graphisoft-mep-modeler.json @@ -0,0 +1,14 @@ +{ + "slug": "graphisoft-mep-modeler", + "name": "Graphisoft MEP Modeler", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q129664" + ], + "developers": [ + "Graphisoft SE" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/gr/graphlab.json b/data/software/gr/graphlab.json new file mode 100644 index 000000000000..26b65b86aca9 --- /dev/null +++ b/data/software/gr/graphlab.json @@ -0,0 +1,11 @@ +{ + "slug": "graphlab", + "name": "GraphLab", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5597063" + ], + "developers": [ + "Carnegie Mellon University" + ] +} diff --git a/data/software/gr/graphmatica.json b/data/software/gr/graphmatica.json new file mode 100644 index 000000000000..25b44e46f3f2 --- /dev/null +++ b/data/software/gr/graphmatica.json @@ -0,0 +1,13 @@ +{ + "slug": "graphmatica", + "name": "Graphmatica", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5597317" + ], + "operating_systems": [ + "iOS", + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/software/gr/graphpad-instat.json b/data/software/gr/graphpad-instat.json new file mode 100644 index 000000000000..43ac78e4745e --- /dev/null +++ b/data/software/gr/graphpad-instat.json @@ -0,0 +1,15 @@ +{ + "slug": "graphpad-instat", + "name": "GraphPad InStat", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5597064" + ], + "developers": [ + "GraphPad Software" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/software/gr/graphpad-prism.json b/data/software/gr/graphpad-prism.json new file mode 100644 index 000000000000..d2590f4e2325 --- /dev/null +++ b/data/software/gr/graphpad-prism.json @@ -0,0 +1,15 @@ +{ + "slug": "graphpad-prism", + "name": "GraphPad Prism", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1355082" + ], + "developers": [ + "GraphPad Software" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/software/gr/graphstudio.json b/data/software/gr/graphstudio.json new file mode 100644 index 000000000000..f18f57b3234a --- /dev/null +++ b/data/software/gr/graphstudio.json @@ -0,0 +1,8 @@ +{ + "slug": "graphstudio", + "name": "GraphStudio", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q979680" + ] +} diff --git a/data/software/gr/grasp.json b/data/software/gr/grasp.json new file mode 100644 index 000000000000..e45425e4e7a4 --- /dev/null +++ b/data/software/gr/grasp.json @@ -0,0 +1,8 @@ +{ + "slug": "grasp", + "name": "Grasp", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5597407" + ] +} diff --git a/data/software/gr/grasshopper-3d.json b/data/software/gr/grasshopper-3d.json new file mode 100644 index 000000000000..3a102ddec0aa --- /dev/null +++ b/data/software/gr/grasshopper-3d.json @@ -0,0 +1,8 @@ +{ + "slug": "grasshopper-3d", + "name": "Grasshopper 3d", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5597529" + ] +} diff --git a/data/software/gr/grasshopper-q114414318.json b/data/software/gr/grasshopper-q114414318.json new file mode 100644 index 000000000000..3410ccff5e8c --- /dev/null +++ b/data/software/gr/grasshopper-q114414318.json @@ -0,0 +1,12 @@ +{ + "slug": "grasshopper-q114414318", + "name": "Grasshopper", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q114414318" + ], + "release_date": "2017-06-20", + "developers": [ + "Google" + ] +} diff --git a/data/software/gr/grasshopper.json b/data/software/gr/grasshopper.json new file mode 100644 index 000000000000..4561d03e4908 --- /dev/null +++ b/data/software/gr/grasshopper.json @@ -0,0 +1,14 @@ +{ + "slug": "grasshopper", + "name": "Grasshopper", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5597532" + ], + "developers": [ + "harmon.ie" + ], + "operating_systems": [ + "cross-platform" + ] +} diff --git a/data/software/gr/grateful-med.json b/data/software/gr/grateful-med.json new file mode 100644 index 000000000000..88b9394934e3 --- /dev/null +++ b/data/software/gr/grateful-med.json @@ -0,0 +1,8 @@ +{ + "slug": "grateful-med", + "name": "Grateful Med", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q70323060" + ] +} diff --git a/data/software/gr/gravit-designer.json b/data/software/gr/gravit-designer.json new file mode 100644 index 000000000000..b613500b3bd8 --- /dev/null +++ b/data/software/gr/gravit-designer.json @@ -0,0 +1,8 @@ +{ + "slug": "gravit-designer", + "name": "Gravit Designer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q56354069" + ] +} diff --git a/data/software/gr/grc-cockpit.json b/data/software/gr/grc-cockpit.json new file mode 100644 index 000000000000..76ca0ac49a2f --- /dev/null +++ b/data/software/gr/grc-cockpit.json @@ -0,0 +1,11 @@ +{ + "slug": "grc-cockpit", + "name": "GRC-COCKPIT", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138642684" + ], + "genres": [ + "Governance, Risk and Compliance software" + ] +} diff --git a/data/software/gr/grc-envelop.json b/data/software/gr/grc-envelop.json new file mode 100644 index 000000000000..ecbaafe3123c --- /dev/null +++ b/data/software/gr/grc-envelop.json @@ -0,0 +1,14 @@ +{ + "slug": "grc-envelop", + "name": "GRC Envelop", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q30156339" + ], + "programming_languages": [ + "Python" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/gr/grc.json b/data/software/gr/grc.json new file mode 100644 index 000000000000..8518d9c6cd51 --- /dev/null +++ b/data/software/gr/grc.json @@ -0,0 +1,8 @@ +{ + "slug": "grc", + "name": "grc", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60917095" + ] +} diff --git a/data/software/gr/greenfield.json b/data/software/gr/greenfield.json new file mode 100644 index 000000000000..bae26fe2709c --- /dev/null +++ b/data/software/gr/greenfield.json @@ -0,0 +1,8 @@ +{ + "slug": "greenfield", + "name": "Greenfield", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105580759" + ] +} diff --git a/data/software/gr/greengnome.json b/data/software/gr/greengnome.json new file mode 100644 index 000000000000..8108cc5e55dd --- /dev/null +++ b/data/software/gr/greengnome.json @@ -0,0 +1,8 @@ +{ + "slug": "greengnome", + "name": "Greengnome", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5604066" + ] +} diff --git a/data/software/gr/greenify.json b/data/software/gr/greenify.json new file mode 100644 index 000000000000..739eaa679963 --- /dev/null +++ b/data/software/gr/greenify.json @@ -0,0 +1,8 @@ +{ + "slug": "greenify", + "name": "Greenify", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q78994986" + ] +} diff --git a/data/software/gr/greenleaf-archivelib.json b/data/software/gr/greenleaf-archivelib.json new file mode 100644 index 000000000000..59af40d275ab --- /dev/null +++ b/data/software/gr/greenleaf-archivelib.json @@ -0,0 +1,8 @@ +{ + "slug": "greenleaf-archivelib", + "name": "Greenleaf ArchiveLib", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28757931" + ] +} diff --git a/data/software/gr/greenonion-ai.json b/data/software/gr/greenonion-ai.json new file mode 100644 index 000000000000..bd675bc82ca7 --- /dev/null +++ b/data/software/gr/greenonion-ai.json @@ -0,0 +1,8 @@ +{ + "slug": "greenonion-ai", + "name": "GreenOnion AI", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139784570" + ] +} diff --git a/data/software/gr/greenworks.json b/data/software/gr/greenworks.json new file mode 100644 index 000000000000..df1845c0dc36 --- /dev/null +++ b/data/software/gr/greenworks.json @@ -0,0 +1,8 @@ +{ + "slug": "greenworks", + "name": "Greenworks", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1544845" + ] +} diff --git a/data/software/gr/greg.json b/data/software/gr/greg.json new file mode 100644 index 000000000000..c2137177ba54 --- /dev/null +++ b/data/software/gr/greg.json @@ -0,0 +1,8 @@ +{ + "slug": "greg", + "name": "Greg", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76182445" + ] +} diff --git a/data/software/gr/grepcidr.json b/data/software/gr/grepcidr.json new file mode 100644 index 000000000000..8371275e8855 --- /dev/null +++ b/data/software/gr/grepcidr.json @@ -0,0 +1,8 @@ +{ + "slug": "grepcidr", + "name": "grepcidr", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110474656" + ] +} diff --git a/data/software/gr/greybird.json b/data/software/gr/greybird.json new file mode 100644 index 000000000000..e9a634fd85aa --- /dev/null +++ b/data/software/gr/greybird.json @@ -0,0 +1,8 @@ +{ + "slug": "greybird", + "name": "greybird", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974894" + ] +} diff --git a/data/software/gr/greynoise.json b/data/software/gr/greynoise.json new file mode 100644 index 000000000000..b6644b1585f4 --- /dev/null +++ b/data/software/gr/greynoise.json @@ -0,0 +1,11 @@ +{ + "slug": "greynoise", + "name": "GreyNoise", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109598178" + ], + "developers": [ + "GreyNoise Intelligence" + ] +} diff --git a/data/software/gr/grid-community-toolkit.json b/data/software/gr/grid-community-toolkit.json new file mode 100644 index 000000000000..fac33f17f189 --- /dev/null +++ b/data/software/gr/grid-community-toolkit.json @@ -0,0 +1,11 @@ +{ + "slug": "grid-community-toolkit", + "name": "Grid Community Toolkit", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116294146" + ], + "licenses": [ + "Apache Software License 2.0" + ] +} diff --git a/data/software/gr/grid-mp.json b/data/software/gr/grid-mp.json new file mode 100644 index 000000000000..0af32a6510c9 --- /dev/null +++ b/data/software/gr/grid-mp.json @@ -0,0 +1,11 @@ +{ + "slug": "grid-mp", + "name": "Grid MP", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5608589" + ], + "developers": [ + "Univa" + ] +} diff --git a/data/software/gr/gridgain-systems.json b/data/software/gr/gridgain-systems.json new file mode 100644 index 000000000000..928968148330 --- /dev/null +++ b/data/software/gr/gridgain-systems.json @@ -0,0 +1,12 @@ +{ + "slug": "gridgain-systems", + "name": "GridGain Systems", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22084391" + ], + "release_date": "2007-01-01", + "programming_languages": [ + "Java" + ] +} diff --git a/data/software/gr/gridinsoft-anti-malware.json b/data/software/gr/gridinsoft-anti-malware.json new file mode 100644 index 000000000000..b41464f115f5 --- /dev/null +++ b/data/software/gr/gridinsoft-anti-malware.json @@ -0,0 +1,8 @@ +{ + "slug": "gridinsoft-anti-malware", + "name": "GridinSoft Anti-Malware", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q21682871" + ] +} diff --git a/data/software/gr/gridmathematica.json b/data/software/gr/gridmathematica.json new file mode 100644 index 000000000000..b974f65b1d46 --- /dev/null +++ b/data/software/gr/gridmathematica.json @@ -0,0 +1,11 @@ +{ + "slug": "gridmathematica", + "name": "gridMathematica", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q307524" + ], + "developers": [ + "Wolfram Research" + ] +} diff --git a/data/software/gr/gridrepublic.json b/data/software/gr/gridrepublic.json new file mode 100644 index 000000000000..a6dcfb51624a --- /dev/null +++ b/data/software/gr/gridrepublic.json @@ -0,0 +1,8 @@ +{ + "slug": "gridrepublic", + "name": "GridRepublic", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5608578" + ] +} diff --git a/data/software/gr/gridway.json b/data/software/gr/gridway.json new file mode 100644 index 000000000000..c82f062d1136 --- /dev/null +++ b/data/software/gr/gridway.json @@ -0,0 +1,8 @@ +{ + "slug": "gridway", + "name": "GridWay", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5608581" + ] +} diff --git a/data/software/gr/grind.json b/data/software/gr/grind.json new file mode 100644 index 000000000000..0a936d154faa --- /dev/null +++ b/data/software/gr/grind.json @@ -0,0 +1,11 @@ +{ + "slug": "grind", + "name": "Grind", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q133225782" + ], + "genres": [ + "first-person shooter" + ] +} diff --git a/data/software/gr/grindstone.json b/data/software/gr/grindstone.json new file mode 100644 index 000000000000..95cb8ff740f1 --- /dev/null +++ b/data/software/gr/grindstone.json @@ -0,0 +1,14 @@ +{ + "slug": "grindstone", + "name": "Grindstone", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5609469" + ], + "operating_systems": [ + "Microsoft Windows" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/gr/griot-system.json b/data/software/gr/griot-system.json new file mode 100644 index 000000000000..a1fb0f606e7e --- /dev/null +++ b/data/software/gr/griot-system.json @@ -0,0 +1,12 @@ +{ + "slug": "griot-system", + "name": "Griot System", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125523936" + ], + "developers": [ + "D. Fox Harrell", + "Joseph Amadee Goguen" + ] +} diff --git a/data/software/gr/grip-os.json b/data/software/gr/grip-os.json new file mode 100644 index 000000000000..60a0f801312c --- /dev/null +++ b/data/software/gr/grip-os.json @@ -0,0 +1,11 @@ +{ + "slug": "grip-os", + "name": "GRIP OS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138714123" + ], + "developers": [ + "Caugia" + ] +} diff --git a/data/software/gr/grl-semantic-ai-platform.json b/data/software/gr/grl-semantic-ai-platform.json new file mode 100644 index 000000000000..f2e587af5aec --- /dev/null +++ b/data/software/gr/grl-semantic-ai-platform.json @@ -0,0 +1,15 @@ +{ + "slug": "grl-semantic-ai-platform", + "name": "GRL Semantic AI Platform", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138783497" + ], + "developers": [ + "Graph Research Labs" + ], + "programming_languages": [ + "Java", + "TypeScript" + ] +} diff --git a/data/software/gr/grlevelx.json b/data/software/gr/grlevelx.json new file mode 100644 index 000000000000..dd4a1261fff8 --- /dev/null +++ b/data/software/gr/grlevelx.json @@ -0,0 +1,11 @@ +{ + "slug": "grlevelx", + "name": "Grlevelx", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5609832" + ], + "programming_languages": [ + "hardware multithreading" + ] +} diff --git a/data/software/gr/grling-sdm.json b/data/software/gr/grling-sdm.json new file mode 100644 index 000000000000..f1ea147802ec --- /dev/null +++ b/data/software/gr/grling-sdm.json @@ -0,0 +1,8 @@ +{ + "slug": "grling-sdm", + "name": "grling-sdm", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087810" + ] +} diff --git a/data/software/gr/grobid.json b/data/software/gr/grobid.json new file mode 100644 index 000000000000..e28502a8180e --- /dev/null +++ b/data/software/gr/grobid.json @@ -0,0 +1,14 @@ +{ + "slug": "grobid", + "name": "GROBID", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62830627" + ], + "developers": [ + "Patrice Lopez" + ], + "licenses": [ + "Apache Software License 2.0" + ] +} diff --git a/data/software/gr/grokker.json b/data/software/gr/grokker.json new file mode 100644 index 000000000000..e2ce8fb6f8c7 --- /dev/null +++ b/data/software/gr/grokker.json @@ -0,0 +1,8 @@ +{ + "slug": "grokker", + "name": "Grokker", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085004" + ] +} diff --git a/data/software/gr/grokster.json b/data/software/gr/grokster.json new file mode 100644 index 000000000000..e85c57864038 --- /dev/null +++ b/data/software/gr/grokster.json @@ -0,0 +1,8 @@ +{ + "slug": "grokster", + "name": "Grokster", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q920145" + ] +} diff --git a/data/software/gr/grome.json b/data/software/gr/grome.json new file mode 100644 index 000000000000..891d1cf64011 --- /dev/null +++ b/data/software/gr/grome.json @@ -0,0 +1,8 @@ +{ + "slug": "grome", + "name": "Grome", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5610169" + ] +} diff --git a/data/software/gr/gromos.json b/data/software/gr/gromos.json new file mode 100644 index 000000000000..11a18cffa887 --- /dev/null +++ b/data/software/gr/gromos.json @@ -0,0 +1,11 @@ +{ + "slug": "gromos", + "name": "GROMOS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1486739" + ], + "programming_languages": [ + "Fortran" + ] +} diff --git a/data/software/gr/grond.json b/data/software/gr/grond.json new file mode 100644 index 000000000000..4ad10883f00f --- /dev/null +++ b/data/software/gr/grond.json @@ -0,0 +1,8 @@ +{ + "slug": "grond", + "name": "Grond", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112158602" + ] +} diff --git a/data/software/gr/group-shot.json b/data/software/gr/group-shot.json new file mode 100644 index 000000000000..71527faec79e --- /dev/null +++ b/data/software/gr/group-shot.json @@ -0,0 +1,11 @@ +{ + "slug": "group-shot", + "name": "Group Shot", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5611197" + ], + "developers": [ + "Microsoft Research" + ] +} diff --git a/data/software/gr/grs.json b/data/software/gr/grs.json new file mode 100644 index 000000000000..f864b3e8858b --- /dev/null +++ b/data/software/gr/grs.json @@ -0,0 +1,8 @@ +{ + "slug": "grs", + "name": "grs", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974908" + ] +} diff --git a/data/software/gr/grype.json b/data/software/gr/grype.json new file mode 100644 index 000000000000..bfb7c9802229 --- /dev/null +++ b/data/software/gr/grype.json @@ -0,0 +1,8 @@ +{ + "slug": "grype", + "name": "Grype", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139377307" + ] +} diff --git a/data/software/gs/gs-elpa.json b/data/software/gs/gs-elpa.json new file mode 100644 index 000000000000..d5c02c73f984 --- /dev/null +++ b/data/software/gs/gs-elpa.json @@ -0,0 +1,8 @@ +{ + "slug": "gs-elpa", + "name": "gs-elpa", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974909" + ] +} diff --git a/data/software/gs/gs-pypi.json b/data/software/gs/gs-pypi.json new file mode 100644 index 000000000000..16b0715684a1 --- /dev/null +++ b/data/software/gs/gs-pypi.json @@ -0,0 +1,8 @@ +{ + "slug": "gs-pypi", + "name": "gs-pypi", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974912" + ] +} diff --git a/data/software/gs/gs-richcopy-360-enterprise.json b/data/software/gs/gs-richcopy-360-enterprise.json new file mode 100644 index 000000000000..a016b0001d6b --- /dev/null +++ b/data/software/gs/gs-richcopy-360-enterprise.json @@ -0,0 +1,8 @@ +{ + "slug": "gs-richcopy-360-enterprise", + "name": "GS RichCopy 360 Enterprise", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q42915596" + ] +} diff --git a/data/software/gs/gs-tools.json b/data/software/gs/gs-tools.json new file mode 100644 index 000000000000..5118e87f45c8 --- /dev/null +++ b/data/software/gs/gs-tools.json @@ -0,0 +1,14 @@ +{ + "slug": "gs-tools", + "name": "GS Tools", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140379452" + ], + "programming_languages": [ + "Python" + ], + "licenses": [ + "GNU Lesser General Public License, version 3.0" + ] +} diff --git a/data/software/gs/gsea.json b/data/software/gs/gsea.json new file mode 100644 index 000000000000..70945ea10c8e --- /dev/null +++ b/data/software/gs/gsea.json @@ -0,0 +1,8 @@ +{ + "slug": "gsea", + "name": "GSEA", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112306272" + ] +} diff --git a/data/software/gs/gsegrafix.json b/data/software/gs/gsegrafix.json new file mode 100644 index 000000000000..3459150860ad --- /dev/null +++ b/data/software/gs/gsegrafix.json @@ -0,0 +1,8 @@ +{ + "slug": "gsegrafix", + "name": "Gsegrafix", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76182413" + ] +} diff --git a/data/software/gs/gshhg.json b/data/software/gs/gshhg.json new file mode 100644 index 000000000000..b7ac8af0e0b5 --- /dev/null +++ b/data/software/gs/gshhg.json @@ -0,0 +1,8 @@ +{ + "slug": "gshhg", + "name": "GSHHG", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5514552" + ] +} diff --git a/data/software/gs/gsi3d.json b/data/software/gs/gsi3d.json new file mode 100644 index 000000000000..5151940222b3 --- /dev/null +++ b/data/software/gs/gsi3d.json @@ -0,0 +1,8 @@ +{ + "slug": "gsi3d", + "name": "GSI3D", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5514554" + ] +} diff --git a/data/software/gs/gslapt.json b/data/software/gs/gslapt.json new file mode 100644 index 000000000000..721e28b4de27 --- /dev/null +++ b/data/software/gs/gslapt.json @@ -0,0 +1,8 @@ +{ + "slug": "gslapt", + "name": "Gslapt", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4039735" + ] +} diff --git a/data/software/gs/gsm-receiver.json b/data/software/gs/gsm-receiver.json new file mode 100644 index 000000000000..f469e37a18f2 --- /dev/null +++ b/data/software/gs/gsm-receiver.json @@ -0,0 +1,8 @@ +{ + "slug": "gsm-receiver", + "name": "gsm-receiver", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974910" + ] +} diff --git a/data/software/gs/gspot.json b/data/software/gs/gspot.json new file mode 100644 index 000000000000..f2d05b157275 --- /dev/null +++ b/data/software/gs/gspot.json @@ -0,0 +1,11 @@ +{ + "slug": "gspot", + "name": "GSpot", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q842447" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/gs/gssha.json b/data/software/gs/gssha.json new file mode 100644 index 000000000000..7ba413b46225 --- /dev/null +++ b/data/software/gs/gssha.json @@ -0,0 +1,11 @@ +{ + "slug": "gssha", + "name": "GSSHA", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5514616" + ], + "developers": [ + "Engineer Research and Development Center" + ] +} diff --git a/data/software/gs/gst-plugins-amr.json b/data/software/gs/gst-plugins-amr.json new file mode 100644 index 000000000000..96bbf775e9d8 --- /dev/null +++ b/data/software/gs/gst-plugins-amr.json @@ -0,0 +1,8 @@ +{ + "slug": "gst-plugins-amr", + "name": "gst-plugins-amr", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106102056" + ] +} diff --git a/data/software/gs/gst-plugins-pulse.json b/data/software/gs/gst-plugins-pulse.json new file mode 100644 index 000000000000..8487f16d6dd1 --- /dev/null +++ b/data/software/gs/gst-plugins-pulse.json @@ -0,0 +1,8 @@ +{ + "slug": "gst-plugins-pulse", + "name": "gst-plugins-pulse", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065542" + ] +} diff --git a/data/software/gs/gstarcad.json b/data/software/gs/gstarcad.json new file mode 100644 index 000000000000..757711efd0cd --- /dev/null +++ b/data/software/gs/gstarcad.json @@ -0,0 +1,8 @@ +{ + "slug": "gstarcad", + "name": "GstarCAD", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3118654" + ] +} diff --git a/data/software/gs/gstat.json b/data/software/gs/gstat.json new file mode 100644 index 000000000000..c603d033586b --- /dev/null +++ b/data/software/gs/gstat.json @@ -0,0 +1,8 @@ +{ + "slug": "gstat", + "name": "GStat", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5514652" + ] +} diff --git a/data/software/gt/gt-power.json b/data/software/gt/gt-power.json new file mode 100644 index 000000000000..85b6257c73a5 --- /dev/null +++ b/data/software/gt/gt-power.json @@ -0,0 +1,9 @@ +{ + "slug": "gt-power", + "name": "GT-Power", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5514656" + ], + "release_date": "1980-01-01" +} diff --git a/data/software/gt/gti.json b/data/software/gt/gti.json new file mode 100644 index 000000000000..25c3effaf328 --- /dev/null +++ b/data/software/gt/gti.json @@ -0,0 +1,8 @@ +{ + "slug": "gti", + "name": "gti", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974913" + ] +} diff --git a/data/software/gt/gtk-layer-shell.json b/data/software/gt/gtk-layer-shell.json new file mode 100644 index 000000000000..338f2393de07 --- /dev/null +++ b/data/software/gt/gtk-layer-shell.json @@ -0,0 +1,8 @@ +{ + "slug": "gtk-layer-shell", + "name": "gtk-layer-shell", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131861607" + ] +} diff --git a/data/software/gt/gtk-meteo.json b/data/software/gt/gtk-meteo.json new file mode 100644 index 000000000000..42f002c047ed --- /dev/null +++ b/data/software/gt/gtk-meteo.json @@ -0,0 +1,11 @@ +{ + "slug": "gtk-meteo", + "name": "GTK Meteo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135485338" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/gt/gtk-perl.json b/data/software/gt/gtk-perl.json new file mode 100644 index 000000000000..6a3c53681c81 --- /dev/null +++ b/data/software/gt/gtk-perl.json @@ -0,0 +1,8 @@ +{ + "slug": "gtk-perl", + "name": "GTK-Perl", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q50827610" + ] +} diff --git a/data/software/gt/gtkboard.json b/data/software/gt/gtkboard.json new file mode 100644 index 000000000000..1acc9bdb4992 --- /dev/null +++ b/data/software/gt/gtkboard.json @@ -0,0 +1,8 @@ +{ + "slug": "gtkboard", + "name": "gtkboard", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60917832" + ] +} diff --git a/data/software/gt/gtkevemon.json b/data/software/gt/gtkevemon.json new file mode 100644 index 000000000000..77048772e8b1 --- /dev/null +++ b/data/software/gt/gtkevemon.json @@ -0,0 +1,8 @@ +{ + "slug": "gtkevemon", + "name": "gtkevemon", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974914" + ] +} diff --git a/data/software/gt/gtkglext.json b/data/software/gt/gtkglext.json new file mode 100644 index 000000000000..103cc5846fe3 --- /dev/null +++ b/data/software/gt/gtkglext.json @@ -0,0 +1,8 @@ +{ + "slug": "gtkglext", + "name": "GtkGLExt", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131574576" + ] +} diff --git a/data/software/gt/gtkhash.json b/data/software/gt/gtkhash.json new file mode 100644 index 000000000000..9328454214ec --- /dev/null +++ b/data/software/gt/gtkhash.json @@ -0,0 +1,8 @@ +{ + "slug": "gtkhash", + "name": "GtkHash", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110474709" + ] +} diff --git a/data/software/gt/gtkinspector.json b/data/software/gt/gtkinspector.json new file mode 100644 index 000000000000..8943fb0eac3b --- /dev/null +++ b/data/software/gt/gtkinspector.json @@ -0,0 +1,8 @@ +{ + "slug": "gtkinspector", + "name": "GtkInspector", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q20072246" + ] +} diff --git a/data/software/gt/gtkperf.json b/data/software/gt/gtkperf.json new file mode 100644 index 000000000000..a0bb1149065c --- /dev/null +++ b/data/software/gt/gtkperf.json @@ -0,0 +1,8 @@ +{ + "slug": "gtkperf", + "name": "GtkPerf", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18202193" + ] +} diff --git a/data/software/gt/gtkspell.json b/data/software/gt/gtkspell.json new file mode 100644 index 000000000000..cffcc38f0a5d --- /dev/null +++ b/data/software/gt/gtkspell.json @@ -0,0 +1,11 @@ +{ + "slug": "gtkspell", + "name": "GtkSpell", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116046938" + ], + "developers": [ + "Evan Martin" + ] +} diff --git a/data/software/gt/gtunnel.json b/data/software/gt/gtunnel.json new file mode 100644 index 000000000000..751df18efca5 --- /dev/null +++ b/data/software/gt/gtunnel.json @@ -0,0 +1,14 @@ +{ + "slug": "gtunnel", + "name": "GTunnel", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5514783" + ], + "developers": [ + "Garden Networks" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/gu/gubb.json b/data/software/gu/gubb.json new file mode 100644 index 000000000000..e570f74d7385 --- /dev/null +++ b/data/software/gu/gubb.json @@ -0,0 +1,8 @@ +{ + "slug": "gubb", + "name": "Gubb", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136370699" + ] +} diff --git a/data/software/gu/guess-the-graph-exploration-system.json b/data/software/gu/guess-the-graph-exploration-system.json new file mode 100644 index 000000000000..7dacf2289598 --- /dev/null +++ b/data/software/gu/guess-the-graph-exploration-system.json @@ -0,0 +1,8 @@ +{ + "slug": "guess-the-graph-exploration-system", + "name": "GUESS: The Graph Exploration System", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085005" + ] +} diff --git a/data/software/gu/guidegeek.json b/data/software/gu/guidegeek.json new file mode 100644 index 000000000000..68a67ea4811f --- /dev/null +++ b/data/software/gu/guidegeek.json @@ -0,0 +1,8 @@ +{ + "slug": "guidegeek", + "name": "GuideGeek", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130542322" + ] +} diff --git a/data/software/gu/guile-dbi.json b/data/software/gu/guile-dbi.json new file mode 100644 index 000000000000..4fc451456a42 --- /dev/null +++ b/data/software/gu/guile-dbi.json @@ -0,0 +1,8 @@ +{ + "slug": "guile-dbi", + "name": "Guile-dbi", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76184881" + ] +} diff --git a/data/software/gu/guitar-rig.json b/data/software/gu/guitar-rig.json new file mode 100644 index 000000000000..efa3fcbd45a5 --- /dev/null +++ b/data/software/gu/guitar-rig.json @@ -0,0 +1,18 @@ +{ + "slug": "guitar-rig", + "name": "Guitar Rig", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3120678" + ], + "developers": [ + "Native Instruments" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/gu/gun.json b/data/software/gu/gun.json new file mode 100644 index 000000000000..cd6aa35dd62e --- /dev/null +++ b/data/software/gu/gun.json @@ -0,0 +1,8 @@ +{ + "slug": "gun", + "name": "GUN", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130755109" + ] +} diff --git a/data/software/gu/gundam-virtual-modeler-light.json b/data/software/gu/gundam-virtual-modeler-light.json new file mode 100644 index 000000000000..fc1e4d241fc2 --- /dev/null +++ b/data/software/gu/gundam-virtual-modeler-light.json @@ -0,0 +1,8 @@ +{ + "slug": "gundam-virtual-modeler-light", + "name": "Gundam Virtual Modeler Light", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3120819" + ] +} diff --git a/data/software/gu/gundam-virtual-modeler-pro.json b/data/software/gu/gundam-virtual-modeler-pro.json new file mode 100644 index 000000000000..fffbc147914d --- /dev/null +++ b/data/software/gu/gundam-virtual-modeler-pro.json @@ -0,0 +1,8 @@ +{ + "slug": "gundam-virtual-modeler-pro", + "name": "Gundam Virtual Modeler Pro", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3120821" + ] +} diff --git a/data/software/gu/gurobi.json b/data/software/gu/gurobi.json new file mode 100644 index 000000000000..3b5a729164ee --- /dev/null +++ b/data/software/gu/gurobi.json @@ -0,0 +1,11 @@ +{ + "slug": "gurobi", + "name": "Gurobi", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5620239" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/gv/gvisor.json b/data/software/gv/gvisor.json new file mode 100644 index 000000000000..c44f2fbbefc9 --- /dev/null +++ b/data/software/gv/gvisor.json @@ -0,0 +1,11 @@ +{ + "slug": "gvisor", + "name": "gVisor", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q65074419" + ], + "programming_languages": [ + "Go" + ] +} diff --git a/data/software/gv/gvrpcd.json b/data/software/gv/gvrpcd.json new file mode 100644 index 000000000000..3bfb4fff266a --- /dev/null +++ b/data/software/gv/gvrpcd.json @@ -0,0 +1,8 @@ +{ + "slug": "gvrpcd", + "name": "gvrpcd", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63064762" + ] +} diff --git a/data/software/gw/gwhois.json b/data/software/gw/gwhois.json new file mode 100644 index 000000000000..9bc1539a1cae --- /dev/null +++ b/data/software/gw/gwhois.json @@ -0,0 +1,8 @@ +{ + "slug": "gwhois", + "name": "gwhois", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62864624" + ] +} diff --git a/data/software/gy/gymwork.json b/data/software/gy/gymwork.json new file mode 100644 index 000000000000..4c10aa537cb4 --- /dev/null +++ b/data/software/gy/gymwork.json @@ -0,0 +1,8 @@ +{ + "slug": "gymwork", + "name": "Gymwork", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139714126" + ] +} diff --git a/data/software/gy/gyro.json b/data/software/gy/gyro.json new file mode 100644 index 000000000000..6a7f26734557 --- /dev/null +++ b/data/software/gy/gyro.json @@ -0,0 +1,11 @@ +{ + "slug": "gyro", + "name": "GYRO", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5515091" + ], + "developers": [ + "General Atomics" + ] +} diff --git a/data/software/gz/gzilla.json b/data/software/gz/gzilla.json new file mode 100644 index 000000000000..1f8221f394ec --- /dev/null +++ b/data/software/gz/gzilla.json @@ -0,0 +1,8 @@ +{ + "slug": "gzilla", + "name": "Gzilla", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1030834" + ] +} diff --git a/data/software/h-/h-a-graham-budleigh-brook-beaver-hydro-submission-release.json b/data/software/h-/h-a-graham-budleigh-brook-beaver-hydro-submission-release.json new file mode 100644 index 000000000000..0de931ade0a0 --- /dev/null +++ b/data/software/h-/h-a-graham-budleigh-brook-beaver-hydro-submission-release.json @@ -0,0 +1,9 @@ +{ + "slug": "h-a-graham-budleigh-brook-beaver-hydro-submission-release", + "name": "h-a-graham/Budleigh_Brook_Beaver_Hydro: Submission Release", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115018116" + ], + "release_date": "2022-02-10" +} diff --git a/data/software/h-/h-sphere.json b/data/software/h-/h-sphere.json new file mode 100644 index 000000000000..55b0651ba40d --- /dev/null +++ b/data/software/h-/h-sphere.json @@ -0,0 +1,8 @@ +{ + "slug": "h-sphere", + "name": "H-Sphere", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1562483" + ] +} diff --git a/data/software/h2/h2o-gtk.json b/data/software/h2/h2o-gtk.json new file mode 100644 index 000000000000..c776c1698666 --- /dev/null +++ b/data/software/h2/h2o-gtk.json @@ -0,0 +1,11 @@ +{ + "slug": "h2o-gtk", + "name": "h2o-gtk", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974917" + ], + "licenses": [ + "2-clause BSD License" + ] +} diff --git a/data/software/h3/h3.json b/data/software/h3/h3.json new file mode 100644 index 000000000000..e613fb9e3ae9 --- /dev/null +++ b/data/software/h3/h3.json @@ -0,0 +1,14 @@ +{ + "slug": "h3", + "name": "h3", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117023379" + ], + "developers": [ + "Zacharias Knudsen" + ], + "licenses": [ + "Apache Software License 2.0" + ] +} diff --git a/data/software/h5/h5rdmtoolbox.json b/data/software/h5/h5rdmtoolbox.json new file mode 100644 index 000000000000..4fbe5ae9af43 --- /dev/null +++ b/data/software/h5/h5rdmtoolbox.json @@ -0,0 +1,24 @@ +{ + "slug": "h5rdmtoolbox", + "name": "h5rdmtoolbox", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126946499" + ], + "developers": [ + "Balazs Pritz", + "Matthias Probst", + "Lucas Büttner" + ], + "operating_systems": [ + "Unix-like operating system", + "macOS", + "Microsoft Windows" + ], + "programming_languages": [ + "Python" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/h5/h5utils.json b/data/software/h5/h5utils.json new file mode 100644 index 000000000000..589806ca7694 --- /dev/null +++ b/data/software/h5/h5utils.json @@ -0,0 +1,8 @@ +{ + "slug": "h5utils", + "name": "h5utils", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62864618" + ] +} diff --git a/data/software/ha/hackedbox.json b/data/software/ha/hackedbox.json new file mode 100644 index 000000000000..6b53cd04b46d --- /dev/null +++ b/data/software/ha/hackedbox.json @@ -0,0 +1,8 @@ +{ + "slug": "hackedbox", + "name": "Hackedbox", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5637202" + ] +} diff --git a/data/software/ha/hackhq.json b/data/software/ha/hackhq.json new file mode 100644 index 000000000000..1bcaa127424e --- /dev/null +++ b/data/software/ha/hackhq.json @@ -0,0 +1,8 @@ +{ + "slug": "hackhq", + "name": "HackHQ", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139695647" + ] +} diff --git a/data/software/ha/hackmaster.json b/data/software/ha/hackmaster.json new file mode 100644 index 000000000000..2eb9d274d75b --- /dev/null +++ b/data/software/ha/hackmaster.json @@ -0,0 +1,8 @@ +{ + "slug": "hackmaster", + "name": "HackMaster", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5637161" + ] +} diff --git a/data/software/ha/hackport.json b/data/software/ha/hackport.json new file mode 100644 index 000000000000..df9db0dcb848 --- /dev/null +++ b/data/software/ha/hackport.json @@ -0,0 +1,8 @@ +{ + "slug": "hackport", + "name": "hackport", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974918" + ] +} diff --git a/data/software/ha/hackrf-tools.json b/data/software/ha/hackrf-tools.json new file mode 100644 index 000000000000..e92db0d1b0ee --- /dev/null +++ b/data/software/ha/hackrf-tools.json @@ -0,0 +1,8 @@ +{ + "slug": "hackrf-tools", + "name": "hackrf-tools", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974919" + ] +} diff --git a/data/software/ha/hajime.json b/data/software/ha/hajime.json new file mode 100644 index 000000000000..89206bc8ef79 --- /dev/null +++ b/data/software/ha/hajime.json @@ -0,0 +1,8 @@ +{ + "slug": "hajime", + "name": "Hajime", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q48790548" + ] +} diff --git a/data/software/ha/hal-shs.json b/data/software/ha/hal-shs.json new file mode 100644 index 000000000000..290894386ecf --- /dev/null +++ b/data/software/ha/hal-shs.json @@ -0,0 +1,8 @@ +{ + "slug": "hal-shs", + "name": "HAL SHS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085007" + ] +} diff --git a/data/software/ha/halcon.json b/data/software/ha/halcon.json new file mode 100644 index 000000000000..1e985479daac --- /dev/null +++ b/data/software/ha/halcon.json @@ -0,0 +1,11 @@ +{ + "slug": "halcon", + "name": "Halcon", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q20827523" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/ha/half-life-model-viewer.json b/data/software/ha/half-life-model-viewer.json new file mode 100644 index 000000000000..087ee89ba51e --- /dev/null +++ b/data/software/ha/half-life-model-viewer.json @@ -0,0 +1,8 @@ +{ + "slug": "half-life-model-viewer", + "name": "Half-Life Model Viewer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124423719" + ] +} diff --git a/data/software/ha/halifax.json b/data/software/ha/halifax.json new file mode 100644 index 000000000000..6c283b93e3a4 --- /dev/null +++ b/data/software/ha/halifax.json @@ -0,0 +1,8 @@ +{ + "slug": "halifax", + "name": "HaliFAX", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76184988" + ] +} diff --git a/data/software/ha/halion-symphonic-orchestra.json b/data/software/ha/halion-symphonic-orchestra.json new file mode 100644 index 000000000000..cc557e731fdd --- /dev/null +++ b/data/software/ha/halion-symphonic-orchestra.json @@ -0,0 +1,8 @@ +{ + "slug": "halion-symphonic-orchestra", + "name": "HALion Symphonic Orchestra", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5628926" + ] +} diff --git a/data/software/ha/halper-ai.json b/data/software/ha/halper-ai.json new file mode 100644 index 000000000000..e2f13361e7d9 --- /dev/null +++ b/data/software/ha/halper-ai.json @@ -0,0 +1,8 @@ +{ + "slug": "halper-ai", + "name": "Halper AI", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139595975" + ] +} diff --git a/data/software/ha/haluka.json b/data/software/ha/haluka.json new file mode 100644 index 000000000000..4ec730be4dc2 --- /dev/null +++ b/data/software/ha/haluka.json @@ -0,0 +1,11 @@ +{ + "slug": "haluka", + "name": "Haluka", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q65089028" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/ha/haml-lint.json b/data/software/ha/haml-lint.json new file mode 100644 index 000000000000..3f846533385b --- /dev/null +++ b/data/software/ha/haml-lint.json @@ -0,0 +1,11 @@ +{ + "slug": "haml-lint", + "name": "haml_lint", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q54883200" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/ha/hammer.json b/data/software/ha/hammer.json new file mode 100644 index 000000000000..b8061389ee6d --- /dev/null +++ b/data/software/ha/hammer.json @@ -0,0 +1,12 @@ +{ + "slug": "hammer", + "name": "Hammer++", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136490557" + ], + "release_date": "2021-03-14", + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/ha/hammerspoon.json b/data/software/ha/hammerspoon.json new file mode 100644 index 000000000000..0de3ad8aafe6 --- /dev/null +++ b/data/software/ha/hammerspoon.json @@ -0,0 +1,15 @@ +{ + "slug": "hammerspoon", + "name": "Hammerspoon", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113675707" + ], + "programming_languages": [ + "Objective-C", + "Lua" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/ha/hamsphere.json b/data/software/ha/hamsphere.json new file mode 100644 index 000000000000..b2e6d9bfe2c0 --- /dev/null +++ b/data/software/ha/hamsphere.json @@ -0,0 +1,8 @@ +{ + "slug": "hamsphere", + "name": "HamSphere", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q9001910" + ] +} diff --git a/data/software/ha/handbook-emission-factors-for-road-transport.json b/data/software/ha/handbook-emission-factors-for-road-transport.json new file mode 100644 index 000000000000..636c1fa36263 --- /dev/null +++ b/data/software/ha/handbook-emission-factors-for-road-transport.json @@ -0,0 +1,15 @@ +{ + "slug": "handbook-emission-factors-for-road-transport", + "name": "Handbook Emission Factors for Road Transport", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18392525" + ], + "release_date": "1995-01-01", + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [ + "Visual Basic for Applications" + ] +} diff --git a/data/software/ha/handwallet.json b/data/software/ha/handwallet.json new file mode 100644 index 000000000000..b8cbebf9f78e --- /dev/null +++ b/data/software/ha/handwallet.json @@ -0,0 +1,8 @@ +{ + "slug": "handwallet", + "name": "HandWallet", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q9001958" + ] +} diff --git a/data/software/ha/handy-backup.json b/data/software/ha/handy-backup.json new file mode 100644 index 000000000000..addeb586ac36 --- /dev/null +++ b/data/software/ha/handy-backup.json @@ -0,0 +1,12 @@ +{ + "slug": "handy-backup", + "name": "Handy Backup", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4040391" + ], + "operating_systems": [ + "Vista", + "Microsoft Windows" + ] +} diff --git a/data/software/ha/handycache.json b/data/software/ha/handycache.json new file mode 100644 index 000000000000..3a4e0c74f0d5 --- /dev/null +++ b/data/software/ha/handycache.json @@ -0,0 +1,8 @@ +{ + "slug": "handycache", + "name": "HandyCache", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4040389" + ] +} diff --git a/data/software/ha/hanshan.json b/data/software/ha/hanshan.json new file mode 100644 index 000000000000..48b58c095cfe --- /dev/null +++ b/data/software/ha/hanshan.json @@ -0,0 +1,11 @@ +{ + "slug": "hanshan", + "name": "Hanshan", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125523486" + ], + "developers": [ + "Tim Hartnell" + ] +} diff --git a/data/software/ha/haozip.json b/data/software/ha/haozip.json new file mode 100644 index 000000000000..7154e1387d91 --- /dev/null +++ b/data/software/ha/haozip.json @@ -0,0 +1,8 @@ +{ + "slug": "haozip", + "name": "HaoZip", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4040407" + ] +} diff --git a/data/software/ha/hapi.json b/data/software/ha/hapi.json new file mode 100644 index 000000000000..3a8262cc9427 --- /dev/null +++ b/data/software/ha/hapi.json @@ -0,0 +1,11 @@ +{ + "slug": "hapi", + "name": "HAPI", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127485387" + ], + "licenses": [ + "Apache Software License 2.0" + ] +} diff --git a/data/software/ha/haploview.json b/data/software/ha/haploview.json new file mode 100644 index 000000000000..48f9c08a2004 --- /dev/null +++ b/data/software/ha/haploview.json @@ -0,0 +1,8 @@ +{ + "slug": "haploview", + "name": "Haploview", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5652128" + ] +} diff --git a/data/software/ha/happyhopper.json b/data/software/ha/happyhopper.json new file mode 100644 index 000000000000..4ba3d9061966 --- /dev/null +++ b/data/software/ha/happyhopper.json @@ -0,0 +1,11 @@ +{ + "slug": "happyhopper", + "name": "happyhopper", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138858833" + ], + "operating_systems": [ + "iOS" + ] +} diff --git a/data/software/ha/hardware-accelerated-execution-manager.json b/data/software/ha/hardware-accelerated-execution-manager.json new file mode 100644 index 000000000000..e61ea9c237e7 --- /dev/null +++ b/data/software/ha/hardware-accelerated-execution-manager.json @@ -0,0 +1,14 @@ +{ + "slug": "hardware-accelerated-execution-manager", + "name": "Hardware-Accelerated Execution Manager", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116058002" + ], + "developers": [ + "Intel" + ], + "licenses": [ + "3-clause BSD License" + ] +} diff --git a/data/software/ha/harminv.json b/data/software/ha/harminv.json new file mode 100644 index 000000000000..bf44f548b442 --- /dev/null +++ b/data/software/ha/harminv.json @@ -0,0 +1,8 @@ +{ + "slug": "harminv", + "name": "Harminv", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62864610" + ] +} diff --git a/data/software/ha/harmony-compiler.json b/data/software/ha/harmony-compiler.json new file mode 100644 index 000000000000..79955ae2208f --- /dev/null +++ b/data/software/ha/harmony-compiler.json @@ -0,0 +1,12 @@ +{ + "slug": "harmony-compiler", + "name": "Harmony Compiler", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q9002111" + ], + "release_date": "1960-01-01", + "developers": [ + "Peter Samson" + ] +} diff --git a/data/software/ha/harmor.json b/data/software/ha/harmor.json new file mode 100644 index 000000000000..211a422a5d56 --- /dev/null +++ b/data/software/ha/harmor.json @@ -0,0 +1,17 @@ +{ + "slug": "harmor", + "name": "Harmor", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q21160991" + ], + "developers": [ + "Image-Line" + ], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [ + "Delphi" + ] +} diff --git a/data/software/ha/harrison-mixbus.json b/data/software/ha/harrison-mixbus.json new file mode 100644 index 000000000000..1e03eb3814c7 --- /dev/null +++ b/data/software/ha/harrison-mixbus.json @@ -0,0 +1,11 @@ +{ + "slug": "harrison-mixbus", + "name": "Harrison Mixbus", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16972798" + ], + "developers": [ + "Harrison Audio" + ] +} diff --git a/data/software/ha/harrow.json b/data/software/ha/harrow.json new file mode 100644 index 000000000000..485373799ace --- /dev/null +++ b/data/software/ha/harrow.json @@ -0,0 +1,11 @@ +{ + "slug": "harrow", + "name": "Harrow", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25345942" + ], + "programming_languages": [ + "Go" + ] +} diff --git a/data/software/ha/harvard-predictive-analyser.json b/data/software/ha/harvard-predictive-analyser.json new file mode 100644 index 000000000000..99edf308c047 --- /dev/null +++ b/data/software/ha/harvard-predictive-analyser.json @@ -0,0 +1,8 @@ +{ + "slug": "harvard-predictive-analyser", + "name": "Harvard Predictive Analyser", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087811" + ] +} diff --git a/data/software/ha/harvest.json b/data/software/ha/harvest.json new file mode 100644 index 000000000000..249e88441da8 --- /dev/null +++ b/data/software/ha/harvest.json @@ -0,0 +1,8 @@ +{ + "slug": "harvest", + "name": "Harvest", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5676747" + ] +} diff --git a/data/software/ha/harvester.json b/data/software/ha/harvester.json new file mode 100644 index 000000000000..ce4301f4b35c --- /dev/null +++ b/data/software/ha/harvester.json @@ -0,0 +1,8 @@ +{ + "slug": "harvester", + "name": "harvester", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123916931" + ] +} diff --git a/data/software/ha/harvey-ai.json b/data/software/ha/harvey-ai.json new file mode 100644 index 000000000000..beb0d1d59192 --- /dev/null +++ b/data/software/ha/harvey-ai.json @@ -0,0 +1,8 @@ +{ + "slug": "harvey-ai", + "name": "Harvey AI", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q132249659" + ] +} diff --git a/data/software/ha/hashcash.json b/data/software/ha/hashcash.json new file mode 100644 index 000000000000..12317be0586e --- /dev/null +++ b/data/software/ha/hashcash.json @@ -0,0 +1,8 @@ +{ + "slug": "hashcash", + "name": "Hashcash", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q357569" + ] +} diff --git a/data/software/ha/hashkeeper.json b/data/software/ha/hashkeeper.json new file mode 100644 index 000000000000..cd52b2b8bb75 --- /dev/null +++ b/data/software/ha/hashkeeper.json @@ -0,0 +1,8 @@ +{ + "slug": "hashkeeper", + "name": "HashKeeper", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3128082" + ] +} diff --git a/data/software/ha/hatools.json b/data/software/ha/hatools.json new file mode 100644 index 000000000000..3325b3d5802e --- /dev/null +++ b/data/software/ha/hatools.json @@ -0,0 +1,8 @@ +{ + "slug": "hatools", + "name": "hatools", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065430" + ] +} diff --git a/data/software/ha/hatop.json b/data/software/ha/hatop.json new file mode 100644 index 000000000000..f39e9f43ea60 --- /dev/null +++ b/data/software/ha/hatop.json @@ -0,0 +1,8 @@ +{ + "slug": "hatop", + "name": "HATop", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62864545" + ] +} diff --git a/data/software/ha/hauptwerk.json b/data/software/ha/hauptwerk.json new file mode 100644 index 000000000000..a102baa0a493 --- /dev/null +++ b/data/software/ha/hauptwerk.json @@ -0,0 +1,8 @@ +{ + "slug": "hauptwerk", + "name": "Hauptwerk", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1589810" + ] +} diff --git a/data/software/ha/hawaii.json b/data/software/ha/hawaii.json new file mode 100644 index 000000000000..b31bd9a93c5a --- /dev/null +++ b/data/software/ha/hawaii.json @@ -0,0 +1,8 @@ +{ + "slug": "hawaii", + "name": "Hawaii", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16252318" + ] +} diff --git a/data/software/ha/hawkeye.json b/data/software/ha/hawkeye.json new file mode 100644 index 000000000000..37ae46a6ef7f --- /dev/null +++ b/data/software/ha/hawkeye.json @@ -0,0 +1,8 @@ +{ + "slug": "hawkeye", + "name": "HAWKEYE", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087812" + ] +} diff --git a/data/software/ha/haxi.json b/data/software/ha/haxi.json new file mode 100644 index 000000000000..6bf79a7f4c69 --- /dev/null +++ b/data/software/ha/haxi.json @@ -0,0 +1,11 @@ +{ + "slug": "haxi", + "name": "Haxi", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18164967" + ], + "programming_languages": [ + "Java" + ] +} diff --git a/data/software/ha/haystack.json b/data/software/ha/haystack.json new file mode 100644 index 000000000000..c6f0c74ba2e8 --- /dev/null +++ b/data/software/ha/haystack.json @@ -0,0 +1,8 @@ +{ + "slug": "haystack", + "name": "Haystack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5687249" + ] +} diff --git a/data/software/ha/hazelcast.json b/data/software/ha/hazelcast.json new file mode 100644 index 000000000000..332260da6223 --- /dev/null +++ b/data/software/ha/hazelcast.json @@ -0,0 +1,14 @@ +{ + "slug": "hazelcast", + "name": "Hazelcast", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17021540" + ], + "programming_languages": [ + "Java" + ], + "licenses": [ + "Apache Software License 2.0" + ] +} diff --git a/data/software/ha/hazus.json b/data/software/ha/hazus.json new file mode 100644 index 000000000000..5a786211ab61 --- /dev/null +++ b/data/software/ha/hazus.json @@ -0,0 +1,15 @@ +{ + "slug": "hazus", + "name": "HAZUS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5629007" + ], + "developers": [ + "Federal Emergency Management Agency" + ], + "operating_systems": [ + "Windows 8.1", + "Windows 7" + ] +} diff --git a/data/software/hb/hbb-nexus-os.json b/data/software/hb/hbb-nexus-os.json new file mode 100644 index 000000000000..71b84773e402 --- /dev/null +++ b/data/software/hb/hbb-nexus-os.json @@ -0,0 +1,11 @@ +{ + "slug": "hbb-nexus-os", + "name": "HBB Nexus OS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138824336" + ], + "developers": [ + "Hospitality Brandbook" + ] +} diff --git a/data/software/hb/hbook.json b/data/software/hb/hbook.json new file mode 100644 index 000000000000..d45747cc7ba7 --- /dev/null +++ b/data/software/hb/hbook.json @@ -0,0 +1,8 @@ +{ + "slug": "hbook", + "name": "HBOOK", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3780410" + ] +} diff --git a/data/software/hd/hd-tach.json b/data/software/hd/hd-tach.json new file mode 100644 index 000000000000..dbd991548821 --- /dev/null +++ b/data/software/hd/hd-tach.json @@ -0,0 +1,11 @@ +{ + "slug": "hd-tach", + "name": "HD Tach", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5629394" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/hd/hd-tune.json b/data/software/hd/hd-tune.json new file mode 100644 index 000000000000..39c7b0fc077a --- /dev/null +++ b/data/software/hd/hd-tune.json @@ -0,0 +1,11 @@ +{ + "slug": "hd-tune", + "name": "HD Tune", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4039963" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/hd/hd3d.json b/data/software/hd/hd3d.json new file mode 100644 index 000000000000..cba6aa316dae --- /dev/null +++ b/data/software/hd/hd3d.json @@ -0,0 +1,8 @@ +{ + "slug": "hd3d", + "name": "HD3D", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5629162" + ] +} diff --git a/data/software/hd/hddtemp.json b/data/software/hd/hddtemp.json new file mode 100644 index 000000000000..eba0fcd27d18 --- /dev/null +++ b/data/software/hd/hddtemp.json @@ -0,0 +1,8 @@ +{ + "slug": "hddtemp", + "name": "hddtemp", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62864523" + ] +} diff --git a/data/software/hd/hdf-explorer.json b/data/software/hd/hdf-explorer.json new file mode 100644 index 000000000000..7d522c18e0f2 --- /dev/null +++ b/data/software/hd/hdf-explorer.json @@ -0,0 +1,12 @@ +{ + "slug": "hdf-explorer", + "name": "HDF Explorer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5629190" + ], + "release_date": "1998-01-01", + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/hd/hdf5.json b/data/software/hd/hdf5.json new file mode 100644 index 000000000000..508abce48822 --- /dev/null +++ b/data/software/hd/hdf5.json @@ -0,0 +1,17 @@ +{ + "slug": "hdf5", + "name": "HDF5", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q61080677" + ], + "developers": [ + "The HDF Group" + ], + "operating_systems": [ + "cross-platform" + ], + "licenses": [ + "3-clause BSD License" + ] +} diff --git a/data/software/hd/hdfview.json b/data/software/hd/hdfview.json new file mode 100644 index 000000000000..34e296ac4b9b --- /dev/null +++ b/data/software/hd/hdfview.json @@ -0,0 +1,17 @@ +{ + "slug": "hdfview", + "name": "HDFView", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130060108" + ], + "developers": [ + "The HDF Group" + ], + "programming_languages": [ + "Java" + ], + "licenses": [ + "3-clause BSD License" + ] +} diff --git a/data/software/hd/hdiv.json b/data/software/hd/hdiv.json new file mode 100644 index 000000000000..b2067953bdc0 --- /dev/null +++ b/data/software/hd/hdiv.json @@ -0,0 +1,8 @@ +{ + "slug": "hdiv", + "name": "HDIV", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22661277" + ] +} diff --git a/data/software/hd/hdr-photostudio.json b/data/software/hd/hdr-photostudio.json new file mode 100644 index 000000000000..eea6222462d7 --- /dev/null +++ b/data/software/hd/hdr-photostudio.json @@ -0,0 +1,8 @@ +{ + "slug": "hdr-photostudio", + "name": "HDR PhotoStudio", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5629261" + ] +} diff --git a/data/software/hd/hdrug.json b/data/software/hd/hdrug.json new file mode 100644 index 000000000000..5601fa03bb84 --- /dev/null +++ b/data/software/hd/hdrug.json @@ -0,0 +1,11 @@ +{ + "slug": "hdrug", + "name": "HDRUG", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q32161532" + ], + "programming_languages": [ + "SICStus Prolog" + ] +} diff --git a/data/software/hd/hdup.json b/data/software/hd/hdup.json new file mode 100644 index 000000000000..e648bb90e726 --- /dev/null +++ b/data/software/hd/hdup.json @@ -0,0 +1,8 @@ +{ + "slug": "hdup", + "name": "hdup", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62864516" + ] +} diff --git a/data/software/he/headstart.json b/data/software/he/headstart.json new file mode 100644 index 000000000000..5cdc2fccc79a --- /dev/null +++ b/data/software/he/headstart.json @@ -0,0 +1,9 @@ +{ + "slug": "headstart", + "name": "Headstart", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q67479224" + ], + "release_date": "2019-03-07" +} diff --git a/data/software/he/headway.json b/data/software/he/headway.json new file mode 100644 index 000000000000..fc2fa5d0061c --- /dev/null +++ b/data/software/he/headway.json @@ -0,0 +1,8 @@ +{ + "slug": "headway", + "name": "Headway", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138011128" + ] +} diff --git a/data/software/he/headweb.json b/data/software/he/headweb.json new file mode 100644 index 000000000000..08e1c2fa43e1 --- /dev/null +++ b/data/software/he/headweb.json @@ -0,0 +1,8 @@ +{ + "slug": "headweb", + "name": "Headweb", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10518732" + ] +} diff --git a/data/software/he/healthcare-voc-compliance-calculator-and-datasets.json b/data/software/he/healthcare-voc-compliance-calculator-and-datasets.json new file mode 100644 index 000000000000..3a04192a4fb0 --- /dev/null +++ b/data/software/he/healthcare-voc-compliance-calculator-and-datasets.json @@ -0,0 +1,11 @@ +{ + "slug": "healthcare-voc-compliance-calculator-and-datasets", + "name": "Healthcare VOC Compliance Calculator and Datasets", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138975783" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/he/healthshare.json b/data/software/he/healthshare.json new file mode 100644 index 000000000000..8aeaecf68e64 --- /dev/null +++ b/data/software/he/healthshare.json @@ -0,0 +1,11 @@ +{ + "slug": "healthshare", + "name": "HealthShare", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17092621" + ], + "developers": [ + "InterSystems" + ] +} diff --git a/data/software/he/hearplanet.json b/data/software/he/hearplanet.json new file mode 100644 index 000000000000..7d9d226ef650 --- /dev/null +++ b/data/software/he/hearplanet.json @@ -0,0 +1,8 @@ +{ + "slug": "hearplanet", + "name": "HearPlanet", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087813" + ] +} diff --git a/data/software/he/heart-of-africa.json b/data/software/he/heart-of-africa.json new file mode 100644 index 000000000000..ba9c4e3c6243 --- /dev/null +++ b/data/software/he/heart-of-africa.json @@ -0,0 +1,9 @@ +{ + "slug": "heart-of-africa", + "name": "Heart of Africa", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135490352" + ], + "release_date": "1995-01-01" +} diff --git a/data/software/he/heart-of-asia-phrases-instruments-utterances-from-the-far-east.json b/data/software/he/heart-of-asia-phrases-instruments-utterances-from-the-far-east.json new file mode 100644 index 000000000000..7b7e37e7afb2 --- /dev/null +++ b/data/software/he/heart-of-asia-phrases-instruments-utterances-from-the-far-east.json @@ -0,0 +1,9 @@ +{ + "slug": "heart-of-asia-phrases-instruments-utterances-from-the-far-east", + "name": "Heart of Asia : Phrases, Instruments & Utterances from the Far East.", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135490375" + ], + "release_date": "1994-01-01" +} diff --git a/data/software/he/heartbeat-networks.json b/data/software/he/heartbeat-networks.json new file mode 100644 index 000000000000..f0411050a541 --- /dev/null +++ b/data/software/he/heartbeat-networks.json @@ -0,0 +1,8 @@ +{ + "slug": "heartbeat-networks", + "name": "HeartBeat Networks", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q90405628" + ] +} diff --git a/data/software/he/heat-q28974922.json b/data/software/he/heat-q28974922.json new file mode 100644 index 000000000000..96ae3e376521 --- /dev/null +++ b/data/software/he/heat-q28974922.json @@ -0,0 +1,11 @@ +{ + "slug": "heat-q28974922", + "name": "heat", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974922" + ], + "licenses": [ + "Apache License" + ] +} diff --git a/data/software/he/heat.json b/data/software/he/heat.json new file mode 100644 index 000000000000..319a8970a955 --- /dev/null +++ b/data/software/he/heat.json @@ -0,0 +1,8 @@ +{ + "slug": "heat", + "name": "HEAT", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5629409" + ] +} diff --git a/data/software/he/hec-1.json b/data/software/he/hec-1.json new file mode 100644 index 000000000000..d5afc49b770d --- /dev/null +++ b/data/software/he/hec-1.json @@ -0,0 +1,11 @@ +{ + "slug": "hec-1", + "name": "HEC-1", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5629418" + ], + "programming_languages": [ + "Fortran" + ] +} diff --git a/data/software/he/hec-hms.json b/data/software/he/hec-hms.json new file mode 100644 index 000000000000..3f50c95746e7 --- /dev/null +++ b/data/software/he/hec-hms.json @@ -0,0 +1,8 @@ +{ + "slug": "hec-hms", + "name": "HEC-HMS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5629419" + ] +} diff --git a/data/software/he/hec-ras.json b/data/software/he/hec-ras.json new file mode 100644 index 000000000000..12ff3acdb00f --- /dev/null +++ b/data/software/he/hec-ras.json @@ -0,0 +1,18 @@ +{ + "slug": "hec-ras", + "name": "HEC-RAS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q594096" + ], + "developers": [ + "United States Army Corps of Engineers" + ], + "operating_systems": [ + "Windows 8.1", + "Windows 7" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/he/hedgedoc.json b/data/software/he/hedgedoc.json new file mode 100644 index 000000000000..64853563abdf --- /dev/null +++ b/data/software/he/hedgedoc.json @@ -0,0 +1,11 @@ +{ + "slug": "hedgedoc", + "name": "HedgeDoc", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q98731953" + ], + "programming_languages": [ + "TypeScript" + ] +} diff --git a/data/software/he/heif-image-extensions.json b/data/software/he/heif-image-extensions.json new file mode 100644 index 000000000000..515f6690314a --- /dev/null +++ b/data/software/he/heif-image-extensions.json @@ -0,0 +1,11 @@ +{ + "slug": "heif-image-extensions", + "name": "HEIF Image Extensions", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117327904" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/he/heimdall.json b/data/software/he/heimdall.json new file mode 100644 index 000000000000..5c93fadb1a47 --- /dev/null +++ b/data/software/he/heimdall.json @@ -0,0 +1,18 @@ +{ + "slug": "heimdall", + "name": "HEIMDALL", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135155542" + ], + "release_date": "2024-12-24", + "operating_systems": [ + "cross-platform" + ], + "programming_languages": [ + "Python" + ], + "licenses": [ + "GNU Affero General Public License, version 3.0 or later" + ] +} diff --git a/data/software/he/heirloom-legacy-platform.json b/data/software/he/heirloom-legacy-platform.json new file mode 100644 index 000000000000..fa8e5b4ad23e --- /dev/null +++ b/data/software/he/heirloom-legacy-platform.json @@ -0,0 +1,11 @@ +{ + "slug": "heirloom-legacy-platform", + "name": "Heirloom - legacy platform", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135670058" + ], + "developers": [ + "Heirloom LLC" + ] +} diff --git a/data/software/he/heirloom-project.json b/data/software/he/heirloom-project.json new file mode 100644 index 000000000000..74d4b8ee93c8 --- /dev/null +++ b/data/software/he/heirloom-project.json @@ -0,0 +1,8 @@ +{ + "slug": "heirloom-project", + "name": "Heirloom Project", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5700958" + ] +} diff --git a/data/software/he/helicon-ape.json b/data/software/he/helicon-ape.json new file mode 100644 index 000000000000..4540053bd7c5 --- /dev/null +++ b/data/software/he/helicon-ape.json @@ -0,0 +1,8 @@ +{ + "slug": "helicon-ape", + "name": "Helicon Ape", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5705080" + ] +} diff --git a/data/software/he/helicon-focus.json b/data/software/he/helicon-focus.json new file mode 100644 index 000000000000..1297a7046e5d --- /dev/null +++ b/data/software/he/helicon-focus.json @@ -0,0 +1,11 @@ +{ + "slug": "helicon-focus", + "name": "Helicon Focus", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5705092" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/he/helios-voting.json b/data/software/he/helios-voting.json new file mode 100644 index 000000000000..57cf106a6b72 --- /dev/null +++ b/data/software/he/helios-voting.json @@ -0,0 +1,14 @@ +{ + "slug": "helios-voting", + "name": "Helios Voting", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q12871894" + ], + "programming_languages": [ + "Python" + ], + "licenses": [ + "Apache Software License 2.0" + ] +} diff --git a/data/software/he/helix-universal-server.json b/data/software/he/helix-universal-server.json new file mode 100644 index 000000000000..061965c3450b --- /dev/null +++ b/data/software/he/helix-universal-server.json @@ -0,0 +1,11 @@ +{ + "slug": "helix-universal-server", + "name": "Helix Universal Server", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5706284" + ], + "developers": [ + "RealNetworks" + ] +} diff --git a/data/software/he/help-conquer-cancer.json b/data/software/he/help-conquer-cancer.json new file mode 100644 index 000000000000..5ca1f2709cc0 --- /dev/null +++ b/data/software/he/help-conquer-cancer.json @@ -0,0 +1,8 @@ +{ + "slug": "help-conquer-cancer", + "name": "Help Conquer Cancer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1604511" + ] +} diff --git a/data/software/he/help-cure-muscular-dystrophy.json b/data/software/he/help-cure-muscular-dystrophy.json new file mode 100644 index 000000000000..adb32a44565b --- /dev/null +++ b/data/software/he/help-cure-muscular-dystrophy.json @@ -0,0 +1,8 @@ +{ + "slug": "help-cure-muscular-dystrophy", + "name": "Help Cure Muscular Dystrophy", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1604510" + ] +} diff --git a/data/software/he/help-to-rtf.json b/data/software/he/help-to-rtf.json new file mode 100644 index 000000000000..49ca33168558 --- /dev/null +++ b/data/software/he/help-to-rtf.json @@ -0,0 +1,8 @@ +{ + "slug": "help-to-rtf", + "name": "Help to RTF", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140350137" + ] +} diff --git a/data/software/he/help.json b/data/software/he/help.json new file mode 100644 index 000000000000..3b5a2706a4c9 --- /dev/null +++ b/data/software/he/help.json @@ -0,0 +1,8 @@ +{ + "slug": "help", + "name": "help", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2985722" + ] +} diff --git a/data/software/he/helpdeco.json b/data/software/he/helpdeco.json new file mode 100644 index 000000000000..5961a5c26e01 --- /dev/null +++ b/data/software/he/helpdeco.json @@ -0,0 +1,8 @@ +{ + "slug": "helpdeco", + "name": "helpdeco", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124733911" + ] +} diff --git a/data/software/he/helpdesk.json b/data/software/he/helpdesk.json new file mode 100644 index 000000000000..4d42d591ad91 --- /dev/null +++ b/data/software/he/helpdesk.json @@ -0,0 +1,22 @@ +{ + "slug": "helpdesk", + "name": "HelpDesk", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125939905" + ], + "developers": [ + "Text, Inc.", + "Text" + ], + "publishers": [ + "Text", + "Text, Inc." + ], + "operating_systems": [ + "web browser" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/he/helpwire.json b/data/software/he/helpwire.json new file mode 100644 index 000000000000..d9fe3f23744e --- /dev/null +++ b/data/software/he/helpwire.json @@ -0,0 +1,15 @@ +{ + "slug": "helpwire", + "name": "HelpWire", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q132146439" + ], + "developers": [ + "Electronic Team" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/software/he/hemismas.json b/data/software/he/hemismas.json new file mode 100644 index 000000000000..235f51cd460a --- /dev/null +++ b/data/software/he/hemismas.json @@ -0,0 +1,11 @@ +{ + "slug": "hemismas", + "name": "Hemismas", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139990018" + ], + "developers": [ + "Abdullaev Javokhirbek Zokirjon ugli" + ] +} diff --git a/data/software/he/hemospat.json b/data/software/he/hemospat.json new file mode 100644 index 000000000000..a5ee0ed3b28e --- /dev/null +++ b/data/software/he/hemospat.json @@ -0,0 +1,13 @@ +{ + "slug": "hemospat", + "name": "HemoSpat", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16972872" + ], + "operating_systems": [ + "Windows 8.1", + "Windows 7", + "macOS" + ] +} diff --git a/data/software/he/henshin.json b/data/software/he/henshin.json new file mode 100644 index 000000000000..894dc1cc669f --- /dev/null +++ b/data/software/he/henshin.json @@ -0,0 +1,8 @@ +{ + "slug": "henshin", + "name": "Henshin", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q90819957" + ] +} diff --git a/data/software/he/her.json b/data/software/he/her.json new file mode 100644 index 000000000000..0633bd82105c --- /dev/null +++ b/data/software/he/her.json @@ -0,0 +1,8 @@ +{ + "slug": "her", + "name": "Her", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16927788" + ] +} diff --git a/data/software/he/heras-af.json b/data/software/he/heras-af.json new file mode 100644 index 000000000000..e63ab23e0f47 --- /dev/null +++ b/data/software/he/heras-af.json @@ -0,0 +1,17 @@ +{ + "slug": "heras-af", + "name": "HERAS-AF", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5629459" + ], + "operating_systems": [ + "cross-platform" + ], + "programming_languages": [ + "Java" + ], + "licenses": [ + "Apache License" + ] +} diff --git a/data/software/he/herdsman.json b/data/software/he/herdsman.json new file mode 100644 index 000000000000..e1a1066a7071 --- /dev/null +++ b/data/software/he/herdsman.json @@ -0,0 +1,8 @@ +{ + "slug": "herdsman", + "name": "Herdsman", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106352913" + ] +} diff --git a/data/software/he/here-wego.json b/data/software/he/here-wego.json new file mode 100644 index 000000000000..b38a0cb3a841 --- /dev/null +++ b/data/software/he/here-wego.json @@ -0,0 +1,11 @@ +{ + "slug": "here-wego", + "name": "HERE WeGo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q20647408" + ], + "developers": [ + "Here Technologies" + ] +} diff --git a/data/software/he/hermetic-word-frequency-counter.json b/data/software/he/hermetic-word-frequency-counter.json new file mode 100644 index 000000000000..770f05522d93 --- /dev/null +++ b/data/software/he/hermetic-word-frequency-counter.json @@ -0,0 +1,8 @@ +{ + "slug": "hermetic-word-frequency-counter", + "name": "Hermetic Word Frequency Counter", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087814" + ] +} diff --git a/data/software/he/hermit.json b/data/software/he/hermit.json new file mode 100644 index 000000000000..22cf21ee8805 --- /dev/null +++ b/data/software/he/hermit.json @@ -0,0 +1,8 @@ +{ + "slug": "hermit", + "name": "Hermit", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113012289" + ] +} diff --git a/data/software/he/hero-hosted-pbx.json b/data/software/he/hero-hosted-pbx.json new file mode 100644 index 000000000000..3416c29de256 --- /dev/null +++ b/data/software/he/hero-hosted-pbx.json @@ -0,0 +1,15 @@ +{ + "slug": "hero-hosted-pbx", + "name": "HERO Hosted PBX", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18347824" + ], + "release_date": "2008-01-01", + "developers": [ + "Dialexia" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/he/heroic-games-launcher.json b/data/software/he/heroic-games-launcher.json new file mode 100644 index 000000000000..9c611e03e0e6 --- /dev/null +++ b/data/software/he/heroic-games-launcher.json @@ -0,0 +1,21 @@ +{ + "slug": "heroic-games-launcher", + "name": "Heroic Games Launcher", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123510384" + ], + "release_date": "2020-01-01", + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [ + "Cascading Style Sheets", + "TypeScript", + "Sass" + ], + "licenses": [ + "GNU General Public License, version 3.0" + ] +} diff --git a/data/software/he/heron.json b/data/software/he/heron.json new file mode 100644 index 000000000000..a94072eada26 --- /dev/null +++ b/data/software/he/heron.json @@ -0,0 +1,11 @@ +{ + "slug": "heron", + "name": "Heron", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25212139" + ], + "programming_languages": [ + "Java" + ] +} diff --git a/data/software/he/herosoft-sthvcd.json b/data/software/he/herosoft-sthvcd.json new file mode 100644 index 000000000000..86861ea3d92e --- /dev/null +++ b/data/software/he/herosoft-sthvcd.json @@ -0,0 +1,8 @@ +{ + "slug": "herosoft-sthvcd", + "name": "Herosoft STHVCD", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q15928738" + ] +} diff --git a/data/software/he/hessian.json b/data/software/he/hessian.json new file mode 100644 index 000000000000..1e3e79aa27b6 --- /dev/null +++ b/data/software/he/hessian.json @@ -0,0 +1,14 @@ +{ + "slug": "hessian", + "name": "Hessian", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1615863" + ], + "programming_languages": [ + "Java" + ], + "licenses": [ + "Apache License" + ] +} diff --git a/data/software/he/hetman-partition-recovery.json b/data/software/he/hetman-partition-recovery.json new file mode 100644 index 000000000000..7151986ece28 --- /dev/null +++ b/data/software/he/hetman-partition-recovery.json @@ -0,0 +1,8 @@ +{ + "slug": "hetman-partition-recovery", + "name": "Hetman Partition Recovery", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q20033505" + ] +} diff --git a/data/software/he/hetman-uneraser.json b/data/software/he/hetman-uneraser.json new file mode 100644 index 000000000000..7fb905a5b1c5 --- /dev/null +++ b/data/software/he/hetman-uneraser.json @@ -0,0 +1,14 @@ +{ + "slug": "hetman-uneraser", + "name": "Hetman Uneraser", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4040622" + ], + "operating_systems": [ + "Microsoft Windows" + ], + "licenses": [ + "shareware" + ] +} diff --git a/data/software/he/heurist.json b/data/software/he/heurist.json new file mode 100644 index 000000000000..1ae867c16c53 --- /dev/null +++ b/data/software/he/heurist.json @@ -0,0 +1,17 @@ +{ + "slug": "heurist", + "name": "Heurist", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5748237" + ], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [ + "PHP" + ], + "licenses": [ + "GNU General Public License" + ] +} diff --git a/data/software/he/hevc-video-extensions.json b/data/software/he/hevc-video-extensions.json new file mode 100644 index 000000000000..ba6a98b71ade --- /dev/null +++ b/data/software/he/hevc-video-extensions.json @@ -0,0 +1,18 @@ +{ + "slug": "hevc-video-extensions", + "name": "HEVC Video Extensions", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q87379549" + ], + "release_date": "2018-02-21", + "developers": [ + "Microsoft" + ], + "publishers": [ + "Microsoft" + ], + "operating_systems": [ + "Xbox One and Xbox Series X/S system software" + ] +} diff --git a/data/software/he/hex.json b/data/software/he/hex.json new file mode 100644 index 000000000000..567aded21671 --- /dev/null +++ b/data/software/he/hex.json @@ -0,0 +1,14 @@ +{ + "slug": "hex", + "name": "Hex", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138943420" + ], + "developers": [ + "Hex" + ], + "programming_languages": [ + "Python" + ] +} diff --git a/data/software/he/hexagon.json b/data/software/he/hexagon.json new file mode 100644 index 000000000000..0031962d10d7 --- /dev/null +++ b/data/software/he/hexagon.json @@ -0,0 +1,8 @@ +{ + "slug": "hexagon", + "name": "Hexagon", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2720336" + ] +} diff --git a/data/software/he/hexatomic.json b/data/software/he/hexatomic.json new file mode 100644 index 000000000000..14d7eafeeb47 --- /dev/null +++ b/data/software/he/hexatomic.json @@ -0,0 +1,11 @@ +{ + "slug": "hexatomic", + "name": "Hexatomic", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135002983" + ], + "licenses": [ + "Apache Software License 2.0" + ] +} diff --git a/data/software/he/hexxagon.json b/data/software/he/hexxagon.json new file mode 100644 index 000000000000..6bfe1ad6f3a1 --- /dev/null +++ b/data/software/he/hexxagon.json @@ -0,0 +1,8 @@ +{ + "slug": "hexxagon", + "name": "hexxagon", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60918642" + ] +} diff --git a/data/software/he/heym.json b/data/software/he/heym.json new file mode 100644 index 000000000000..25c4f2212e5e --- /dev/null +++ b/data/software/he/heym.json @@ -0,0 +1,20 @@ +{ + "slug": "heym", + "name": "Heym", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139570764" + ], + "release_date": "2026-04-28", + "developers": [ + "Ceren Kaya Akgün", + "Mehmet Burak Akgün" + ], + "programming_languages": [ + "Python", + "TypeScript" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/hf/hfss.json b/data/software/hf/hfss.json new file mode 100644 index 000000000000..f8fa19a3ea3d --- /dev/null +++ b/data/software/hf/hfss.json @@ -0,0 +1,8 @@ +{ + "slug": "hfss", + "name": "HFSS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5629526" + ] +} diff --git a/data/software/hi/hicolor-icon-theme.json b/data/software/hi/hicolor-icon-theme.json new file mode 100644 index 000000000000..2623fba29d95 --- /dev/null +++ b/data/software/hi/hicolor-icon-theme.json @@ -0,0 +1,11 @@ +{ + "slug": "hicolor-icon-theme", + "name": "hicolor-icon-theme", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065507" + ], + "licenses": [ + "GNU General Public License, version 2.0" + ] +} diff --git a/data/software/hi/hidapi.json b/data/software/hi/hidapi.json new file mode 100644 index 000000000000..c461650da387 --- /dev/null +++ b/data/software/hi/hidapi.json @@ -0,0 +1,12 @@ +{ + "slug": "hidapi", + "name": "hidapi", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974924" + ], + "licenses": [ + "3-clause BSD License", + "GNU General Public License, version 3.0" + ] +} diff --git a/data/software/hi/hidemaru-editor.json b/data/software/hi/hidemaru-editor.json new file mode 100644 index 000000000000..744c83110034 --- /dev/null +++ b/data/software/hi/hidemaru-editor.json @@ -0,0 +1,8 @@ +{ + "slug": "hidemaru-editor", + "name": "Hidemaru Editor", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11594517" + ] +} diff --git a/data/software/hi/hidpoint.json b/data/software/hi/hidpoint.json new file mode 100644 index 000000000000..5c2e2ed88a02 --- /dev/null +++ b/data/software/hi/hidpoint.json @@ -0,0 +1,8 @@ +{ + "slug": "hidpoint", + "name": "HIDPoint", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5629633" + ] +} diff --git a/data/software/hi/hieroglyphika.json b/data/software/hi/hieroglyphika.json new file mode 100644 index 000000000000..80f957ddccc9 --- /dev/null +++ b/data/software/hi/hieroglyphika.json @@ -0,0 +1,13 @@ +{ + "slug": "hieroglyphika", + "name": "Hieroglyphika", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q97362569" + ], + "release_date": "2016-02-03", + "genres": [ + "strategy video game", + "role-playing video game" + ] +} diff --git a/data/software/hi/hifiasm.json b/data/software/hi/hifiasm.json new file mode 100644 index 000000000000..749f4cd7ee15 --- /dev/null +++ b/data/software/hi/hifiasm.json @@ -0,0 +1,8 @@ +{ + "slug": "hifiasm", + "name": "hifiasm", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113018366" + ] +} diff --git a/data/software/hi/high-orbit-ion-cannon.json b/data/software/hi/high-orbit-ion-cannon.json new file mode 100644 index 000000000000..30b11065e20b --- /dev/null +++ b/data/software/hi/high-orbit-ion-cannon.json @@ -0,0 +1,15 @@ +{ + "slug": "high-orbit-ion-cannon", + "name": "High Orbit Ion Cannon", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22661279" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [ + "Visual Basic" + ] +} diff --git a/data/software/hi/high-performance-parallex.json b/data/software/hi/high-performance-parallex.json new file mode 100644 index 000000000000..cb17b817b82a --- /dev/null +++ b/data/software/hi/high-performance-parallex.json @@ -0,0 +1,8 @@ +{ + "slug": "high-performance-parallex", + "name": "High Performance Parallex", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q55613712" + ] +} diff --git a/data/software/hi/highlight.json b/data/software/hi/highlight.json new file mode 100644 index 000000000000..536a863f041d --- /dev/null +++ b/data/software/hi/highlight.json @@ -0,0 +1,8 @@ +{ + "slug": "highlight", + "name": "Highlight", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5759470" + ] +} diff --git a/data/software/hi/highly-available-storage.json b/data/software/hi/highly-available-storage.json new file mode 100644 index 000000000000..b6cb85fbcd69 --- /dev/null +++ b/data/software/hi/highly-available-storage.json @@ -0,0 +1,8 @@ +{ + "slug": "highly-available-storage", + "name": "Highly Available STorage", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5759527" + ] +} diff --git a/data/software/hi/highly-scalable-data-service.json b/data/software/hi/highly-scalable-data-service.json new file mode 100644 index 000000000000..812e0484ec87 --- /dev/null +++ b/data/software/hi/highly-scalable-data-service.json @@ -0,0 +1,20 @@ +{ + "slug": "highly-scalable-data-service", + "name": "Highly Scalable Data Service", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q114859023" + ], + "developers": [ + "The HDF Group" + ], + "operating_systems": [ + "cross-platform" + ], + "programming_languages": [ + "Python" + ], + "licenses": [ + "Apache Software License 2.0" + ] +} diff --git a/data/software/hi/highs-optimization-solver.json b/data/software/hi/highs-optimization-solver.json new file mode 100644 index 000000000000..a4f3cebf91ac --- /dev/null +++ b/data/software/hi/highs-optimization-solver.json @@ -0,0 +1,11 @@ +{ + "slug": "highs-optimization-solver", + "name": "HiGHS optimization solver", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113289177" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/hi/hiki.json b/data/software/hi/hiki.json new file mode 100644 index 000000000000..934fe3762165 --- /dev/null +++ b/data/software/hi/hiki.json @@ -0,0 +1,8 @@ +{ + "slug": "hiki", + "name": "Hiki", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11223422" + ] +} diff --git a/data/software/hi/hily.json b/data/software/hi/hily.json new file mode 100644 index 000000000000..f4d53c95d9b1 --- /dev/null +++ b/data/software/hi/hily.json @@ -0,0 +1,8 @@ +{ + "slug": "hily", + "name": "Hily", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q74409386" + ] +} diff --git a/data/software/hi/hindi-to-punjabi-machine-translation-system.json b/data/software/hi/hindi-to-punjabi-machine-translation-system.json new file mode 100644 index 000000000000..a3d48b8f75b4 --- /dev/null +++ b/data/software/hi/hindi-to-punjabi-machine-translation-system.json @@ -0,0 +1,8 @@ +{ + "slug": "hindi-to-punjabi-machine-translation-system", + "name": "Hindi-to-Punjabi Machine Translation System", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3635314" + ] +} diff --git a/data/software/hi/hinge.json b/data/software/hi/hinge.json new file mode 100644 index 000000000000..3c7cf6b871e5 --- /dev/null +++ b/data/software/hi/hinge.json @@ -0,0 +1,11 @@ +{ + "slug": "hinge", + "name": "Hinge", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115680335" + ], + "operating_systems": [ + "visionOS" + ] +} diff --git a/data/software/hi/hios.json b/data/software/hi/hios.json new file mode 100644 index 000000000000..20e9e6d83d9b --- /dev/null +++ b/data/software/hi/hios.json @@ -0,0 +1,11 @@ +{ + "slug": "hios", + "name": "HiOS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28457860" + ], + "developers": [ + "Tecno Mobile" + ] +} diff --git a/data/software/hi/hipcrime.json b/data/software/hi/hipcrime.json new file mode 100644 index 000000000000..4545f7cd5446 --- /dev/null +++ b/data/software/hi/hipcrime.json @@ -0,0 +1,11 @@ +{ + "slug": "hipcrime", + "name": "Hipcrime", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5768058" + ], + "programming_languages": [ + "Java" + ] +} diff --git a/data/software/hi/hipnav.json b/data/software/hi/hipnav.json new file mode 100644 index 000000000000..54af5256029b --- /dev/null +++ b/data/software/hi/hipnav.json @@ -0,0 +1,11 @@ +{ + "slug": "hipnav", + "name": "HipNav", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5767832" + ], + "developers": [ + "Carnegie Mellon University" + ] +} diff --git a/data/software/hi/hirmeos-metrics-suite.json b/data/software/hi/hirmeos-metrics-suite.json new file mode 100644 index 000000000000..4312d86cdb78 --- /dev/null +++ b/data/software/hi/hirmeos-metrics-suite.json @@ -0,0 +1,11 @@ +{ + "slug": "hirmeos-metrics-suite", + "name": "HIRMEOS metrics suite", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109569243" + ], + "programming_languages": [ + "Python" + ] +} diff --git a/data/software/hi/history-of-slovenia-sistory-portal.json b/data/software/hi/history-of-slovenia-sistory-portal.json new file mode 100644 index 000000000000..417f516274b0 --- /dev/null +++ b/data/software/hi/history-of-slovenia-sistory-portal.json @@ -0,0 +1,8 @@ +{ + "slug": "history-of-slovenia-sistory-portal", + "name": "History of Slovenia - SIstory portal", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085011" + ] +} diff --git a/data/software/hi/hit-clou.json b/data/software/hi/hit-clou.json new file mode 100644 index 000000000000..8bd30f2a0f22 --- /dev/null +++ b/data/software/hi/hit-clou.json @@ -0,0 +1,8 @@ +{ + "slug": "hit-clou", + "name": "HIT/CLOU", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1563727" + ] +} diff --git a/data/software/hi/hitoo.json b/data/software/hi/hitoo.json new file mode 100644 index 000000000000..acbdf53a9bfa --- /dev/null +++ b/data/software/hi/hitoo.json @@ -0,0 +1,8 @@ +{ + "slug": "hitoo", + "name": "Hitoo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139013707" + ] +} diff --git a/data/software/hi/hive-ui.json b/data/software/hi/hive-ui.json new file mode 100644 index 000000000000..ab8c5efaac03 --- /dev/null +++ b/data/software/hi/hive-ui.json @@ -0,0 +1,11 @@ +{ + "slug": "hive-ui", + "name": "Hive UI", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q19605524" + ], + "developers": [ + "XOLO" + ] +} diff --git a/data/software/hi/hiview3.json b/data/software/hi/hiview3.json new file mode 100644 index 000000000000..dbc6a1c67dd3 --- /dev/null +++ b/data/software/hi/hiview3.json @@ -0,0 +1,8 @@ +{ + "slug": "hiview3", + "name": "Hiview3", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5872799" + ] +} diff --git a/data/software/hi/hiyama-kiyoteru.json b/data/software/hi/hiyama-kiyoteru.json new file mode 100644 index 000000000000..ff7101c28676 --- /dev/null +++ b/data/software/hi/hiyama-kiyoteru.json @@ -0,0 +1,9 @@ +{ + "slug": "hiyama-kiyoteru", + "name": "Hiyama Kiyoteru", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11549575" + ], + "release_date": "2009-12-04" +} diff --git a/data/software/hk/hkchat.json b/data/software/hk/hkchat.json new file mode 100644 index 000000000000..4b385a5ed0db --- /dev/null +++ b/data/software/hk/hkchat.json @@ -0,0 +1,8 @@ +{ + "slug": "hkchat", + "name": "HKChat", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137533762" + ] +} diff --git a/data/software/hm/hmailserver.json b/data/software/hm/hmailserver.json new file mode 100644 index 000000000000..499b742a8772 --- /dev/null +++ b/data/software/hm/hmailserver.json @@ -0,0 +1,12 @@ +{ + "slug": "hmailserver", + "name": "hMailServer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q285635" + ], + "release_date": "2002-01-01", + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/hn/hnsky.json b/data/software/hn/hnsky.json new file mode 100644 index 000000000000..cd015ac882bf --- /dev/null +++ b/data/software/hn/hnsky.json @@ -0,0 +1,14 @@ +{ + "slug": "hnsky", + "name": "HNSKY", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q490177" + ], + "operating_systems": [ + "Microsoft Windows" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/ho/hobbies.json b/data/software/ho/hobbies.json new file mode 100644 index 000000000000..4dd1bad942c2 --- /dev/null +++ b/data/software/ho/hobbies.json @@ -0,0 +1,8 @@ +{ + "slug": "hobbies", + "name": "HOBBIES", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5635431" + ] +} diff --git a/data/software/ho/hobo-request.json b/data/software/ho/hobo-request.json new file mode 100644 index 000000000000..37c109836f8e --- /dev/null +++ b/data/software/ho/hobo-request.json @@ -0,0 +1,16 @@ +{ + "slug": "hobo-request", + "name": "HOBO-request", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118146762" + ], + "release_date": "2022-07-21", + "developers": [ + "Luis Felipe R. Murillo", + "John Readey" + ], + "licenses": [ + "GNU General Public License, version 3.0" + ] +} diff --git a/data/software/ho/holiline-reminder.json b/data/software/ho/holiline-reminder.json new file mode 100644 index 000000000000..abcbd2b0055c --- /dev/null +++ b/data/software/ho/holiline-reminder.json @@ -0,0 +1,11 @@ +{ + "slug": "holiline-reminder", + "name": "Holiline Reminder", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25048596" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/ho/holmes.json b/data/software/ho/holmes.json new file mode 100644 index 000000000000..2b169a1044f3 --- /dev/null +++ b/data/software/ho/holmes.json @@ -0,0 +1,8 @@ +{ + "slug": "holmes", + "name": "Holmes", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25184471" + ] +} diff --git a/data/software/ho/holo.json b/data/software/ho/holo.json new file mode 100644 index 000000000000..60fcfa9c4746 --- /dev/null +++ b/data/software/ho/holo.json @@ -0,0 +1,8 @@ +{ + "slug": "holo", + "name": "Holo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136933026" + ] +} diff --git a/data/software/ho/holographic-versatile-disc.json b/data/software/ho/holographic-versatile-disc.json new file mode 100644 index 000000000000..aea3a8e1a329 --- /dev/null +++ b/data/software/ho/holographic-versatile-disc.json @@ -0,0 +1,8 @@ +{ + "slug": "holographic-versatile-disc", + "name": "Holographic Versatile Disc", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q502906" + ] +} diff --git a/data/software/ho/hololive.json b/data/software/ho/hololive.json new file mode 100644 index 000000000000..973a1c33a491 --- /dev/null +++ b/data/software/ho/hololive.json @@ -0,0 +1,18 @@ +{ + "slug": "hololive", + "name": "hololive", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60990236" + ], + "release_date": "2017-12-20", + "developers": [ + "COVER Corporation" + ], + "publishers": [ + "COVER Corporation" + ], + "operating_systems": [ + "iOS" + ] +} diff --git a/data/software/ho/holomatix-rendition.json b/data/software/ho/holomatix-rendition.json new file mode 100644 index 000000000000..920d6fcddca0 --- /dev/null +++ b/data/software/ho/holomatix-rendition.json @@ -0,0 +1,11 @@ +{ + "slug": "holomatix-rendition", + "name": "Holomatix Rendition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5884141" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/ho/homepage-penguin.json b/data/software/ho/homepage-penguin.json new file mode 100644 index 000000000000..7deda8f10c43 --- /dev/null +++ b/data/software/ho/homepage-penguin.json @@ -0,0 +1,11 @@ +{ + "slug": "homepage-penguin", + "name": "HomePage Penguin", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122730159" + ], + "developers": [ + "Matthias Jaap" + ] +} diff --git a/data/software/ho/homepak.json b/data/software/ho/homepak.json new file mode 100644 index 000000000000..a9933729ef8b --- /dev/null +++ b/data/software/ho/homepak.json @@ -0,0 +1,14 @@ +{ + "slug": "homepak", + "name": "Homepak", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3786445" + ], + "developers": [ + "Batteries Included" + ], + "programming_languages": [ + "Action!" + ] +} diff --git a/data/software/ho/honeyview.json b/data/software/ho/honeyview.json new file mode 100644 index 000000000000..be786f848414 --- /dev/null +++ b/data/software/ho/honeyview.json @@ -0,0 +1,8 @@ +{ + "slug": "honeyview", + "name": "Honeyview", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q12589464" + ] +} diff --git a/data/software/ho/hoodie.json b/data/software/ho/hoodie.json new file mode 100644 index 000000000000..35df977785fe --- /dev/null +++ b/data/software/ho/hoodie.json @@ -0,0 +1,11 @@ +{ + "slug": "hoodie", + "name": "Hoodie", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28453358" + ], + "licenses": [ + "Apache License" + ] +} diff --git a/data/software/ho/hooked.json b/data/software/ho/hooked.json new file mode 100644 index 000000000000..cc65a249c7c9 --- /dev/null +++ b/data/software/ho/hooked.json @@ -0,0 +1,8 @@ +{ + "slug": "hooked", + "name": "Hooked", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q48780589" + ] +} diff --git a/data/software/ho/hookiq.json b/data/software/ho/hookiq.json new file mode 100644 index 000000000000..0482ffb143f7 --- /dev/null +++ b/data/software/ho/hookiq.json @@ -0,0 +1,8 @@ +{ + "slug": "hookiq", + "name": "HOOKiQ", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140050382" + ] +} diff --git a/data/software/ho/hoomd-blue.json b/data/software/ho/hoomd-blue.json new file mode 100644 index 000000000000..9e736bc9e2a3 --- /dev/null +++ b/data/software/ho/hoomd-blue.json @@ -0,0 +1,8 @@ +{ + "slug": "hoomd-blue", + "name": "hoomd-blue", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974927" + ] +} diff --git a/data/software/ho/hoops-3d-graphics-system.json b/data/software/ho/hoops-3d-graphics-system.json new file mode 100644 index 000000000000..15c63702f3b8 --- /dev/null +++ b/data/software/ho/hoops-3d-graphics-system.json @@ -0,0 +1,8 @@ +{ + "slug": "hoops-3d-graphics-system", + "name": "HOOPS 3D Graphics System", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5635456" + ] +} diff --git a/data/software/ho/hopin-ltd.json b/data/software/ho/hopin-ltd.json new file mode 100644 index 000000000000..6d631aa2f7ec --- /dev/null +++ b/data/software/ho/hopin-ltd.json @@ -0,0 +1,8 @@ +{ + "slug": "hopin-ltd", + "name": "Hopin Ltd.", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q100977865" + ] +} diff --git a/data/software/ho/hoppscotch.json b/data/software/ho/hoppscotch.json new file mode 100644 index 000000000000..d7e758a85e18 --- /dev/null +++ b/data/software/ho/hoppscotch.json @@ -0,0 +1,11 @@ +{ + "slug": "hoppscotch", + "name": "Hoppscotch", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135670202" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/ho/horgand.json b/data/software/ho/horgand.json new file mode 100644 index 000000000000..e1dc29adb0f5 --- /dev/null +++ b/data/software/ho/horgand.json @@ -0,0 +1,8 @@ +{ + "slug": "horgand", + "name": "Horgand", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62864453" + ] +} diff --git a/data/software/ho/horizons-software-starter-pack.json b/data/software/ho/horizons-software-starter-pack.json new file mode 100644 index 000000000000..faa7d68ca1ca --- /dev/null +++ b/data/software/ho/horizons-software-starter-pack.json @@ -0,0 +1,8 @@ +{ + "slug": "horizons-software-starter-pack", + "name": "Horizons: Software Starter Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5903516" + ] +} diff --git a/data/software/ho/hornby-track-master.json b/data/software/ho/hornby-track-master.json new file mode 100644 index 000000000000..e9081178b633 --- /dev/null +++ b/data/software/ho/hornby-track-master.json @@ -0,0 +1,12 @@ +{ + "slug": "hornby-track-master", + "name": "Hornby Track Master", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5904142" + ], + "release_date": "2011-09-19", + "developers": [ + "Hornby Hobbies Limited" + ] +} diff --git a/data/software/ho/horned-owl.json b/data/software/ho/horned-owl.json new file mode 100644 index 000000000000..872d9aa430c8 --- /dev/null +++ b/data/software/ho/horned-owl.json @@ -0,0 +1,15 @@ +{ + "slug": "horned-owl", + "name": "horned-owl", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116968042" + ], + "developers": [ + "Phillip Lord", + "Janna Hastings" + ], + "licenses": [ + "GNU General Public License, version 3.0" + ] +} diff --git a/data/software/ho/horst.json b/data/software/ho/horst.json new file mode 100644 index 000000000000..fdfad94bcf2d --- /dev/null +++ b/data/software/ho/horst.json @@ -0,0 +1,8 @@ +{ + "slug": "horst", + "name": "horst", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974928" + ] +} diff --git a/data/software/ho/hosebird.json b/data/software/ho/hosebird.json new file mode 100644 index 000000000000..c096c453ce24 --- /dev/null +++ b/data/software/ho/hosebird.json @@ -0,0 +1,8 @@ +{ + "slug": "hosebird", + "name": "Hosebird", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4906744" + ] +} diff --git a/data/software/ho/hosst.json b/data/software/ho/hosst.json new file mode 100644 index 000000000000..f08f2b35bc35 --- /dev/null +++ b/data/software/ho/hosst.json @@ -0,0 +1,8 @@ +{ + "slug": "hosst", + "name": "HOSST", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138678698" + ] +} diff --git a/data/software/ho/hosttracker.json b/data/software/ho/hosttracker.json new file mode 100644 index 000000000000..589dc99b2314 --- /dev/null +++ b/data/software/ho/hosttracker.json @@ -0,0 +1,8 @@ +{ + "slug": "hosttracker", + "name": "HostTracker", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5909201" + ] +} diff --git a/data/software/ho/hot-potatoes.json b/data/software/ho/hot-potatoes.json new file mode 100644 index 000000000000..6b9a91ad53c7 --- /dev/null +++ b/data/software/ho/hot-potatoes.json @@ -0,0 +1,14 @@ +{ + "slug": "hot-potatoes", + "name": "Hot Potatoes", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1630722" + ], + "developers": [ + "University of Victoria" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/ho/hotjava-views.json b/data/software/ho/hotjava-views.json new file mode 100644 index 000000000000..215c0845ff27 --- /dev/null +++ b/data/software/ho/hotjava-views.json @@ -0,0 +1,11 @@ +{ + "slug": "hotjava-views", + "name": "HotJava Views", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5909620" + ], + "developers": [ + "Sun Microsystems" + ] +} diff --git a/data/software/ho/hotjava.json b/data/software/ho/hotjava.json new file mode 100644 index 000000000000..82f2e2d37091 --- /dev/null +++ b/data/software/ho/hotjava.json @@ -0,0 +1,14 @@ +{ + "slug": "hotjava", + "name": "HotJava", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1358512" + ], + "developers": [ + "Sun Microsystems" + ], + "programming_languages": [ + "Java" + ] +} diff --git a/data/software/ho/hotruby.json b/data/software/ho/hotruby.json new file mode 100644 index 000000000000..d576274d2e0b --- /dev/null +++ b/data/software/ho/hotruby.json @@ -0,0 +1,11 @@ +{ + "slug": "hotruby", + "name": "HotRuby", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5909640" + ], + "operating_systems": [ + "cross-platform" + ] +} diff --git a/data/software/ho/hotsauce.json b/data/software/ho/hotsauce.json new file mode 100644 index 000000000000..fd4db6435b5e --- /dev/null +++ b/data/software/ho/hotsauce.json @@ -0,0 +1,11 @@ +{ + "slug": "hotsauce", + "name": "HotSauce", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1630664" + ], + "developers": [ + "Apple Inc." + ] +} diff --git a/data/software/ho/hotspot-shieldxnxx.json b/data/software/ho/hotspot-shieldxnxx.json new file mode 100644 index 000000000000..2fdaad97d445 --- /dev/null +++ b/data/software/ho/hotspot-shieldxnxx.json @@ -0,0 +1,17 @@ +{ + "slug": "hotspot-shieldxnxx", + "name": "Hotspot Shieldxnxx", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4040782" + ], + "release_date": "2008-01-01", + "developers": [ + "AnchorFree" + ], + "operating_systems": [ + "iOS", + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/software/ho/houdini.json b/data/software/ho/houdini.json new file mode 100644 index 000000000000..d2e215d89d46 --- /dev/null +++ b/data/software/ho/houdini.json @@ -0,0 +1,15 @@ +{ + "slug": "houdini", + "name": "Houdini", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2595529" + ], + "release_date": "1996-12-01", + "developers": [ + "Side Effects Software Inc." + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/ho/hound.json b/data/software/ho/hound.json new file mode 100644 index 000000000000..368e99affd0b --- /dev/null +++ b/data/software/ho/hound.json @@ -0,0 +1,14 @@ +{ + "slug": "hound", + "name": "hound", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q132860991" + ], + "programming_languages": [ + "Go" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/ho/hourglass.json b/data/software/ho/hourglass.json new file mode 100644 index 000000000000..2ad4c8b3d71a --- /dev/null +++ b/data/software/ho/hourglass.json @@ -0,0 +1,8 @@ +{ + "slug": "hourglass", + "name": "hourglass", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60916734" + ] +} diff --git a/data/software/ho/hourzero-dev.json b/data/software/ho/hourzero-dev.json new file mode 100644 index 000000000000..8958710c7f77 --- /dev/null +++ b/data/software/ho/hourzero-dev.json @@ -0,0 +1,18 @@ +{ + "slug": "hourzero-dev", + "name": "hourzero.dev", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138479878" + ], + "release_date": "2026-02-28", + "operating_systems": [ + "cross-platform" + ], + "programming_languages": [ + "TypeScript" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/ho/houseparty.json b/data/software/ho/houseparty.json new file mode 100644 index 000000000000..bd9cc34936b1 --- /dev/null +++ b/data/software/ho/houseparty.json @@ -0,0 +1,11 @@ +{ + "slug": "houseparty", + "name": "Houseparty", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q55639916" + ], + "developers": [ + "Epic Games" + ] +} diff --git a/data/software/ho/houston-automatic-spooling-priority.json b/data/software/ho/houston-automatic-spooling-priority.json new file mode 100644 index 000000000000..ae5e8d6603bf --- /dev/null +++ b/data/software/ho/houston-automatic-spooling-priority.json @@ -0,0 +1,14 @@ +{ + "slug": "houston-automatic-spooling-priority", + "name": "Houston Automatic Spooling Priority", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q596433" + ], + "operating_systems": [ + "OS/360" + ], + "programming_languages": [ + "assembly language" + ] +} diff --git a/data/software/ho/hoyle-casino-2008.json b/data/software/ho/hoyle-casino-2008.json new file mode 100644 index 000000000000..a5d762c7c8c7 --- /dev/null +++ b/data/software/ho/hoyle-casino-2008.json @@ -0,0 +1,8 @@ +{ + "slug": "hoyle-casino-2008", + "name": "Hoyle Casino 2008", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140361207" + ] +} diff --git a/data/software/ho/hozo.json b/data/software/ho/hozo.json new file mode 100644 index 000000000000..e65b96ea36fd --- /dev/null +++ b/data/software/ho/hozo.json @@ -0,0 +1,11 @@ +{ + "slug": "hozo", + "name": "Hozo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5922997" + ], + "developers": [ + "The Institute of Scientific and Industrial Research,Osaka University" + ] +} diff --git a/data/software/hp/hp-ac.json b/data/software/hp/hp-ac.json new file mode 100644 index 000000000000..d1bf4b2bf455 --- /dev/null +++ b/data/software/hp/hp-ac.json @@ -0,0 +1,8 @@ +{ + "slug": "hp-ac", + "name": "HP aC++", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5635754" + ] +} diff --git a/data/software/hp/hp-application-lifecycle-management.json b/data/software/hp/hp-application-lifecycle-management.json new file mode 100644 index 000000000000..b57fa36d3900 --- /dev/null +++ b/data/software/hp/hp-application-lifecycle-management.json @@ -0,0 +1,12 @@ +{ + "slug": "hp-application-lifecycle-management", + "name": "HP Application Lifecycle Management", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5635637" + ], + "developers": [ + "Open Text Corporation", + "Hewlett-Packard" + ] +} diff --git a/data/software/hp/hp-business-service-management.json b/data/software/hp/hp-business-service-management.json new file mode 100644 index 000000000000..7324959e1db5 --- /dev/null +++ b/data/software/hp/hp-business-service-management.json @@ -0,0 +1,8 @@ +{ + "slug": "hp-business-service-management", + "name": "HP Business Service Management", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5635648" + ] +} diff --git a/data/software/hp/hp-client-automation-software.json b/data/software/hp/hp-client-automation-software.json new file mode 100644 index 000000000000..07c368939b78 --- /dev/null +++ b/data/software/hp/hp-client-automation-software.json @@ -0,0 +1,8 @@ +{ + "slug": "hp-client-automation-software", + "name": "HP Client Automation Software", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1228254" + ] +} diff --git a/data/software/hp/hp-cloud-service-automation-software.json b/data/software/hp/hp-cloud-service-automation-software.json new file mode 100644 index 000000000000..49dfe6844826 --- /dev/null +++ b/data/software/hp/hp-cloud-service-automation-software.json @@ -0,0 +1,8 @@ +{ + "slug": "hp-cloud-service-automation-software", + "name": "HP Cloud Service Automation Software", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5635650" + ] +} diff --git a/data/software/hp/hp-data-protector.json b/data/software/hp/hp-data-protector.json new file mode 100644 index 000000000000..be6f830b583b --- /dev/null +++ b/data/software/hp/hp-data-protector.json @@ -0,0 +1,14 @@ +{ + "slug": "hp-data-protector", + "name": "HP Data Protector", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2374452" + ], + "developers": [ + "Hewlett-Packard" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/hp/hp-icewall-sso.json b/data/software/hp/hp-icewall-sso.json new file mode 100644 index 000000000000..2529423cb7d4 --- /dev/null +++ b/data/software/hp/hp-icewall-sso.json @@ -0,0 +1,11 @@ +{ + "slug": "hp-icewall-sso", + "name": "HP IceWall SSO", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5635671" + ], + "developers": [ + "Hewlett Packard Enterprise" + ] +} diff --git a/data/software/hp/hp-information-management-software.json b/data/software/hp/hp-information-management-software.json new file mode 100644 index 000000000000..f022459445b1 --- /dev/null +++ b/data/software/hp/hp-information-management-software.json @@ -0,0 +1,8 @@ +{ + "slug": "hp-information-management-software", + "name": "HP Information Management Software", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5635673" + ] +} diff --git a/data/software/hp/hp-network-management-center.json b/data/software/hp/hp-network-management-center.json new file mode 100644 index 000000000000..948c870dd535 --- /dev/null +++ b/data/software/hp/hp-network-management-center.json @@ -0,0 +1,11 @@ +{ + "slug": "hp-network-management-center", + "name": "HP Network Management Center", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5635697" + ], + "developers": [ + "Hewlett-Packard" + ] +} diff --git a/data/software/hp/hp-opencall.json b/data/software/hp/hp-opencall.json new file mode 100644 index 000000000000..375b12092d0b --- /dev/null +++ b/data/software/hp/hp-opencall.json @@ -0,0 +1,11 @@ +{ + "slug": "hp-opencall", + "name": "HP OpenCall", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5635704" + ], + "developers": [ + "Hewlett-Packard" + ] +} diff --git a/data/software/hp/hp-openview.json b/data/software/hp/hp-openview.json new file mode 100644 index 000000000000..6d63598b5cc9 --- /dev/null +++ b/data/software/hp/hp-openview.json @@ -0,0 +1,11 @@ +{ + "slug": "hp-openview", + "name": "HP OpenView", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q515316" + ], + "developers": [ + "Hewlett-Packard" + ] +} diff --git a/data/software/hp/hp-quicktest-professional.json b/data/software/hp/hp-quicktest-professional.json new file mode 100644 index 000000000000..05a8b7865c90 --- /dev/null +++ b/data/software/hp/hp-quicktest-professional.json @@ -0,0 +1,11 @@ +{ + "slug": "hp-quicktest-professional", + "name": "HP QuickTest Professional", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4040296" + ], + "developers": [ + "Hewlett Packard Enterprise" + ] +} diff --git a/data/software/hp/hp-webinspect.json b/data/software/hp/hp-webinspect.json new file mode 100644 index 000000000000..2c9a01b3028b --- /dev/null +++ b/data/software/hp/hp-webinspect.json @@ -0,0 +1,11 @@ +{ + "slug": "hp-webinspect", + "name": "HP WebInspect", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2781532" + ], + "developers": [ + "HP Inc." + ] +} diff --git a/data/software/hp/hp-winrunner.json b/data/software/hp/hp-winrunner.json new file mode 100644 index 000000000000..66899239fee6 --- /dev/null +++ b/data/software/hp/hp-winrunner.json @@ -0,0 +1,8 @@ +{ + "slug": "hp-winrunner", + "name": "HP WinRunner", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2583318" + ] +} diff --git a/data/software/hp/hpc-challenge-benchmark.json b/data/software/hp/hpc-challenge-benchmark.json new file mode 100644 index 000000000000..32e309a659ea --- /dev/null +++ b/data/software/hp/hpc-challenge-benchmark.json @@ -0,0 +1,8 @@ +{ + "slug": "hpc-challenge-benchmark", + "name": "HPC Challenge Benchmark", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4040289" + ] +} diff --git a/data/software/hp/hpcg-benchmark.json b/data/software/hp/hpcg-benchmark.json new file mode 100644 index 000000000000..f6ddfbf741e1 --- /dev/null +++ b/data/software/hp/hpcg-benchmark.json @@ -0,0 +1,13 @@ +{ + "slug": "hpcg-benchmark", + "name": "HPCG benchmark", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25345993" + ], + "developers": [ + "Jack Dongarra", + "Piotr Luszczek", + "Michael Heroux" + ] +} diff --git a/data/software/hp/hpipm.json b/data/software/hp/hpipm.json new file mode 100644 index 000000000000..4cd63db7f0f2 --- /dev/null +++ b/data/software/hp/hpipm.json @@ -0,0 +1,11 @@ +{ + "slug": "hpipm", + "name": "HPIPM", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134395572" + ], + "licenses": [ + "2-clause BSD License" + ] +} diff --git a/data/software/hp/hpl-ai.json b/data/software/hp/hpl-ai.json new file mode 100644 index 000000000000..a26eedb36e1c --- /dev/null +++ b/data/software/hp/hpl-ai.json @@ -0,0 +1,8 @@ +{ + "slug": "hpl-ai", + "name": "HPL-AI", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109524982" + ] +} diff --git a/data/software/hr/hrhis.json b/data/software/hr/hrhis.json new file mode 100644 index 000000000000..f3c47f843a41 --- /dev/null +++ b/data/software/hr/hrhis.json @@ -0,0 +1,11 @@ +{ + "slug": "hrhis", + "name": "HRHIS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5635796" + ], + "programming_languages": [ + "PHP" + ] +} diff --git a/data/software/ht/ht-bookworm.json b/data/software/ht/ht-bookworm.json new file mode 100644 index 000000000000..ff6ddbc355d8 --- /dev/null +++ b/data/software/ht/ht-bookworm.json @@ -0,0 +1,8 @@ +{ + "slug": "ht-bookworm", + "name": "HT-Bookworm", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085012" + ] +} diff --git a/data/software/ht/htag.json b/data/software/ht/htag.json new file mode 100644 index 000000000000..42fc390ad242 --- /dev/null +++ b/data/software/ht/htag.json @@ -0,0 +1,8 @@ +{ + "slug": "htag", + "name": "htag", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62864447" + ] +} diff --git a/data/software/ht/htc-sense.json b/data/software/ht/htc-sense.json new file mode 100644 index 000000000000..07aa0999414a --- /dev/null +++ b/data/software/ht/htc-sense.json @@ -0,0 +1,8 @@ +{ + "slug": "htc-sense", + "name": "HTC Sense", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q718504" + ] +} diff --git a/data/software/ht/htk.json b/data/software/ht/htk.json new file mode 100644 index 000000000000..d774d9aa4af5 --- /dev/null +++ b/data/software/ht/htk.json @@ -0,0 +1,18 @@ +{ + "slug": "htk", + "name": "HTK", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5636086" + ], + "developers": [ + "Cambridge University Engineering Department" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/ht/html-viewer-3.json b/data/software/ht/html-viewer-3.json new file mode 100644 index 000000000000..2da8a45df0d9 --- /dev/null +++ b/data/software/ht/html-viewer-3.json @@ -0,0 +1,8 @@ +{ + "slug": "html-viewer-3", + "name": "HTML Viewer 3", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4040800" + ] +} diff --git a/data/software/ht/html-xml-utils.json b/data/software/ht/html-xml-utils.json new file mode 100644 index 000000000000..4e93dd9d87c5 --- /dev/null +++ b/data/software/ht/html-xml-utils.json @@ -0,0 +1,8 @@ +{ + "slug": "html-xml-utils", + "name": "HTML-XML-utils", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62864441" + ] +} diff --git a/data/software/ht/html.json b/data/software/ht/html.json new file mode 100644 index 000000000000..1b2fab8c4ab8 --- /dev/null +++ b/data/software/ht/html.json @@ -0,0 +1,8 @@ +{ + "slug": "html", + "name": "HTML +", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5890781" + ] +} diff --git a/data/software/ht/html5-boilerplate.json b/data/software/ht/html5-boilerplate.json new file mode 100644 index 000000000000..2383e5476768 --- /dev/null +++ b/data/software/ht/html5-boilerplate.json @@ -0,0 +1,8 @@ +{ + "slug": "html5-boilerplate", + "name": "HTML5 Boilerplate", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60596715" + ] +} diff --git a/data/software/ht/htmlup.json b/data/software/ht/htmlup.json new file mode 100644 index 000000000000..ea78d049bd13 --- /dev/null +++ b/data/software/ht/htmlup.json @@ -0,0 +1,8 @@ +{ + "slug": "htmlup", + "name": "HTMLUP", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085013" + ] +} diff --git a/data/software/ht/htsjdk.json b/data/software/ht/htsjdk.json new file mode 100644 index 000000000000..3e850690d714 --- /dev/null +++ b/data/software/ht/htsjdk.json @@ -0,0 +1,11 @@ +{ + "slug": "htsjdk", + "name": "HTSJDK", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113018351" + ], + "programming_languages": [ + "Java" + ] +} diff --git a/data/software/ht/httping.json b/data/software/ht/httping.json new file mode 100644 index 000000000000..181092a49489 --- /dev/null +++ b/data/software/ht/httping.json @@ -0,0 +1,8 @@ +{ + "slug": "httping", + "name": "httping", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110474722" + ] +} diff --git a/data/software/ht/httpry.json b/data/software/ht/httpry.json new file mode 100644 index 000000000000..1fb37d7967f0 --- /dev/null +++ b/data/software/ht/httpry.json @@ -0,0 +1,8 @@ +{ + "slug": "httpry", + "name": "httpry", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110474732" + ] +} diff --git a/data/software/hu/huawei-hicar.json b/data/software/hu/huawei-hicar.json new file mode 100644 index 000000000000..4eea6b74643a --- /dev/null +++ b/data/software/hu/huawei-hicar.json @@ -0,0 +1,18 @@ +{ + "slug": "huawei-hicar", + "name": "Huawei HiCar", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125457864" + ], + "release_date": "2020-05-09", + "developers": [ + "Huawei" + ], + "operating_systems": [ + "Android 10" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/hu/huawei-mobile-services.json b/data/software/hu/huawei-mobile-services.json new file mode 100644 index 000000000000..41a23503bf64 --- /dev/null +++ b/data/software/hu/huawei-mobile-services.json @@ -0,0 +1,11 @@ +{ + "slug": "huawei-mobile-services", + "name": "Huawei Mobile Services", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q86729107" + ], + "developers": [ + "Huawei" + ] +} diff --git a/data/software/hu/huawei-pay.json b/data/software/hu/huawei-pay.json new file mode 100644 index 000000000000..7d305986251e --- /dev/null +++ b/data/software/hu/huawei-pay.json @@ -0,0 +1,11 @@ +{ + "slug": "huawei-pay", + "name": "Huawei Pay", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q64254189" + ], + "developers": [ + "Huawei" + ] +} diff --git a/data/software/hu/hubstaff-desk.json b/data/software/hu/hubstaff-desk.json new file mode 100644 index 000000000000..131cc4eaf483 --- /dev/null +++ b/data/software/hu/hubstaff-desk.json @@ -0,0 +1,20 @@ +{ + "slug": "hubstaff-desk", + "name": "Hubstaff Desk", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110713542" + ], + "developers": [ + "Hubstaff" + ], + "operating_systems": [ + "iOS", + "Mac operating system", + "macOS", + "Microsoft Windows" + ], + "licenses": [ + "end-user license agreement" + ] +} diff --git a/data/software/hu/hubstaff-field.json b/data/software/hu/hubstaff-field.json new file mode 100644 index 000000000000..461cb432d57c --- /dev/null +++ b/data/software/hu/hubstaff-field.json @@ -0,0 +1,20 @@ +{ + "slug": "hubstaff-field", + "name": "Hubstaff Field", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110713564" + ], + "developers": [ + "Hubstaff" + ], + "operating_systems": [ + "iOS", + "Mac operating system", + "macOS", + "Microsoft Windows" + ], + "licenses": [ + "end-user license agreement" + ] +} diff --git a/data/software/hu/hubstaff-tasks.json b/data/software/hu/hubstaff-tasks.json new file mode 100644 index 000000000000..5fe3166ac7e2 --- /dev/null +++ b/data/software/hu/hubstaff-tasks.json @@ -0,0 +1,20 @@ +{ + "slug": "hubstaff-tasks", + "name": "Hubstaff Tasks", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110713615" + ], + "developers": [ + "Hubstaff" + ], + "operating_systems": [ + "iOS", + "Mac operating system", + "macOS", + "Microsoft Windows" + ], + "licenses": [ + "end-user license agreement" + ] +} diff --git a/data/software/hu/hubstaff-time.json b/data/software/hu/hubstaff-time.json new file mode 100644 index 000000000000..f1c8cb13b0e3 --- /dev/null +++ b/data/software/hu/hubstaff-time.json @@ -0,0 +1,20 @@ +{ + "slug": "hubstaff-time", + "name": "Hubstaff Time", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110713477" + ], + "developers": [ + "Hubstaff" + ], + "operating_systems": [ + "iOS", + "Mac operating system", + "macOS", + "Microsoft Windows" + ], + "licenses": [ + "end-user license agreement" + ] +} diff --git a/data/software/hu/huggle.json b/data/software/hu/huggle.json new file mode 100644 index 000000000000..1a2f1b84a192 --- /dev/null +++ b/data/software/hu/huggle.json @@ -0,0 +1,11 @@ +{ + "slug": "huggle", + "name": "Huggle", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28134506" + ], + "operating_systems": [ + "iOS" + ] +} diff --git a/data/software/hu/humanize-ai.json b/data/software/hu/humanize-ai.json new file mode 100644 index 000000000000..b6af0e89f829 --- /dev/null +++ b/data/software/hu/humanize-ai.json @@ -0,0 +1,8 @@ +{ + "slug": "humanize-ai", + "name": "Humanize AI", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138847598" + ] +} diff --git a/data/software/hu/humu.json b/data/software/hu/humu.json new file mode 100644 index 000000000000..1f339e8e06e7 --- /dev/null +++ b/data/software/hu/humu.json @@ -0,0 +1,8 @@ +{ + "slug": "humu", + "name": "Humu", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112262036" + ] +} diff --git a/data/software/hu/hupnp-ng.json b/data/software/hu/hupnp-ng.json new file mode 100644 index 000000000000..317b5436ac24 --- /dev/null +++ b/data/software/hu/hupnp-ng.json @@ -0,0 +1,8 @@ +{ + "slug": "hupnp-ng", + "name": "hupnp-ng", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974930" + ] +} diff --git a/data/software/hu/hurl-it.json b/data/software/hu/hurl-it.json new file mode 100644 index 000000000000..63aa55282458 --- /dev/null +++ b/data/software/hu/hurl-it.json @@ -0,0 +1,11 @@ +{ + "slug": "hurl-it", + "name": "hurl.it", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108239205" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/hu/hush.json b/data/software/hu/hush.json new file mode 100644 index 000000000000..97cc2603e012 --- /dev/null +++ b/data/software/hu/hush.json @@ -0,0 +1,11 @@ +{ + "slug": "hush", + "name": "hush", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113308926" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/hv/hv.json b/data/software/hv/hv.json new file mode 100644 index 000000000000..117a19eadcc5 --- /dev/null +++ b/data/software/hv/hv.json @@ -0,0 +1,14 @@ +{ + "slug": "hv", + "name": "HV", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121672452" + ], + "developers": [ + "D&A Software" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/hx/hxd.json b/data/software/hx/hxd.json new file mode 100644 index 000000000000..3b8596b92e0a --- /dev/null +++ b/data/software/hx/hxd.json @@ -0,0 +1,8 @@ +{ + "slug": "hxd", + "name": "hxd", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065583" + ] +} diff --git a/data/software/hy/hybrid-web-cluster.json b/data/software/hy/hybrid-web-cluster.json new file mode 100644 index 000000000000..f44c98ad7985 --- /dev/null +++ b/data/software/hy/hybrid-web-cluster.json @@ -0,0 +1,8 @@ +{ + "slug": "hybrid-web-cluster", + "name": "Hybrid Web Cluster", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5953149" + ] +} diff --git a/data/software/hy/hydra-oms.json b/data/software/hy/hydra-oms.json new file mode 100644 index 000000000000..7789d13a4f05 --- /dev/null +++ b/data/software/hy/hydra-oms.json @@ -0,0 +1,12 @@ +{ + "slug": "hydra-oms", + "name": "Hydra OMS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25345992" + ], + "release_date": "2016-01-01", + "licenses": [ + "Apache License" + ] +} diff --git a/data/software/hy/hypelist.json b/data/software/hy/hypelist.json new file mode 100644 index 000000000000..dfa5fa673e3a --- /dev/null +++ b/data/software/hy/hypelist.json @@ -0,0 +1,8 @@ +{ + "slug": "hypelist", + "name": "Hypelist", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125768440" + ] +} diff --git a/data/software/hy/hyperaccess.json b/data/software/hy/hyperaccess.json new file mode 100644 index 000000000000..1553e2ae49eb --- /dev/null +++ b/data/software/hy/hyperaccess.json @@ -0,0 +1,14 @@ +{ + "slug": "hyperaccess", + "name": "HyperACCESS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1516517" + ], + "developers": [ + "Hilgraeve" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/hy/hyperbase.json b/data/software/hy/hyperbase.json new file mode 100644 index 000000000000..1bdb55349e26 --- /dev/null +++ b/data/software/hy/hyperbase.json @@ -0,0 +1,16 @@ +{ + "slug": "hyperbase", + "name": "Hyperbase", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17630126" + ], + "developers": [ + "University of Côte d'Azur", + "National Center for Scientific Research" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/software/hy/hypercam.json b/data/software/hy/hypercam.json new file mode 100644 index 000000000000..c4e1de4df5dc --- /dev/null +++ b/data/software/hy/hypercam.json @@ -0,0 +1,14 @@ +{ + "slug": "hypercam", + "name": "HyperCam", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3072026" + ], + "operating_systems": [ + "Microsoft Windows" + ], + "genres": [ + "screencasting software" + ] +} diff --git a/data/software/hy/hyperd.json b/data/software/hy/hyperd.json new file mode 100644 index 000000000000..cf9af8b65415 --- /dev/null +++ b/data/software/hy/hyperd.json @@ -0,0 +1,8 @@ +{ + "slug": "hyperd", + "name": "hyperd", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065256" + ] +} diff --git a/data/software/hy/hyperfilesql.json b/data/software/hy/hyperfilesql.json new file mode 100644 index 000000000000..1a1e72c0acb7 --- /dev/null +++ b/data/software/hy/hyperfilesql.json @@ -0,0 +1,11 @@ +{ + "slug": "hyperfilesql", + "name": "HyperFileSQL", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3144089" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/hy/hypergate.json b/data/software/hy/hypergate.json new file mode 100644 index 000000000000..71f4690d247a --- /dev/null +++ b/data/software/hy/hypergate.json @@ -0,0 +1,17 @@ +{ + "slug": "hypergate", + "name": "Hypergate", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125523455" + ], + "developers": [ + "Mark Bernstein" + ], + "publishers": [ + "Eastgate Systems" + ], + "programming_languages": [ + "Forth" + ] +} diff --git a/data/software/hy/hyperimage.json b/data/software/hy/hyperimage.json new file mode 100644 index 000000000000..7087e2cd7b8f --- /dev/null +++ b/data/software/hy/hyperimage.json @@ -0,0 +1,14 @@ +{ + "slug": "hyperimage", + "name": "hyperimage", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106087889" + ], + "developers": [ + "Martin Warnke" + ], + "programming_languages": [ + "Java" + ] +} diff --git a/data/software/hy/hyperion-planning.json b/data/software/hy/hyperion-planning.json new file mode 100644 index 000000000000..16f84797ca34 --- /dev/null +++ b/data/software/hy/hyperion-planning.json @@ -0,0 +1,11 @@ +{ + "slug": "hyperion-planning", + "name": "Hyperion Planning", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5958168" + ], + "developers": [ + "Oracle Corporation" + ] +} diff --git a/data/software/hy/hyperplanning.json b/data/software/hy/hyperplanning.json new file mode 100644 index 000000000000..100701798085 --- /dev/null +++ b/data/software/hy/hyperplanning.json @@ -0,0 +1,8 @@ +{ + "slug": "hyperplanning", + "name": "Hyperplanning", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q56316349" + ] +} diff --git a/data/software/hy/hyperpo.json b/data/software/hy/hyperpo.json new file mode 100644 index 000000000000..47b96bb59ac6 --- /dev/null +++ b/data/software/hy/hyperpo.json @@ -0,0 +1,8 @@ +{ + "slug": "hyperpo", + "name": "HyperPo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087815" + ] +} diff --git a/data/software/hy/hyperresearch.json b/data/software/hy/hyperresearch.json new file mode 100644 index 000000000000..31ada3edbbe1 --- /dev/null +++ b/data/software/hy/hyperresearch.json @@ -0,0 +1,15 @@ +{ + "slug": "hyperresearch", + "name": "HyperResearch", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105229747" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/hy/hyperscore.json b/data/software/hy/hyperscore.json new file mode 100644 index 000000000000..2d909318f8cd --- /dev/null +++ b/data/software/hy/hyperscore.json @@ -0,0 +1,8 @@ +{ + "slug": "hyperscore", + "name": "Hyperscore", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5958556" + ] +} diff --git a/data/software/hy/hypersizer.json b/data/software/hy/hypersizer.json new file mode 100644 index 000000000000..ca6ae0bfe565 --- /dev/null +++ b/data/software/hy/hypersizer.json @@ -0,0 +1,11 @@ +{ + "slug": "hypersizer", + "name": "HyperSizer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5957596" + ], + "developers": [ + "Collier Research Corporation" + ] +} diff --git a/data/software/hy/hyperstudio.json b/data/software/hy/hyperstudio.json new file mode 100644 index 000000000000..0b574d002628 --- /dev/null +++ b/data/software/hy/hyperstudio.json @@ -0,0 +1,8 @@ +{ + "slug": "hyperstudio", + "name": "HyperStudio", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5957598" + ] +} diff --git a/data/software/hy/hypertext-on-hypertext.json b/data/software/hy/hypertext-on-hypertext.json new file mode 100644 index 000000000000..52851d75dec4 --- /dev/null +++ b/data/software/hy/hypertext-on-hypertext.json @@ -0,0 +1,13 @@ +{ + "slug": "hypertext-on-hypertext", + "name": "Hypertext on Hypertext", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72969084" + ], + "release_date": "1988-01-01", + "publishers": [ + "Association for Computing Machinery", + "Institute for Research in Information and Scholarship" + ] +} diff --git a/data/software/hy/hypertranscribe.json b/data/software/hy/hypertranscribe.json new file mode 100644 index 000000000000..efc6ad0fc3e8 --- /dev/null +++ b/data/software/hy/hypertranscribe.json @@ -0,0 +1,15 @@ +{ + "slug": "hypertranscribe", + "name": "HyperTRANSCRIBE", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105076387" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/hy/hyperwords.json b/data/software/hy/hyperwords.json new file mode 100644 index 000000000000..013ebafa282d --- /dev/null +++ b/data/software/hy/hyperwords.json @@ -0,0 +1,8 @@ +{ + "slug": "hyperwords", + "name": "Hyperwords", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5958828" + ] +} diff --git a/data/software/hy/hyperx-software.json b/data/software/hy/hyperx-software.json new file mode 100644 index 000000000000..4eeda2791268 --- /dev/null +++ b/data/software/hy/hyperx-software.json @@ -0,0 +1,8 @@ +{ + "slug": "hyperx-software", + "name": "HyperX Software", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135411741" + ] +} diff --git a/data/software/hy/hyphy.json b/data/software/hy/hyphy.json new file mode 100644 index 000000000000..598cf6c2ec6a --- /dev/null +++ b/data/software/hy/hyphy.json @@ -0,0 +1,8 @@ +{ + "slug": "hyphy", + "name": "HYPHY", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5636278" + ] +} diff --git a/data/software/hy/hypotheses-academic-blogs.json b/data/software/hy/hypotheses-academic-blogs.json new file mode 100644 index 000000000000..a19d0e7a6a31 --- /dev/null +++ b/data/software/hy/hypotheses-academic-blogs.json @@ -0,0 +1,8 @@ +{ + "slug": "hypotheses-academic-blogs", + "name": "Hypotheses, Academic Blogs", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085014" + ] +} diff --git a/data/software/i-/i-am-rich.json b/data/software/i-/i-am-rich.json new file mode 100644 index 000000000000..579c7d14888d --- /dev/null +++ b/data/software/i-/i-am-rich.json @@ -0,0 +1,14 @@ +{ + "slug": "i-am-rich", + "name": "I Am Rich", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1187627" + ], + "operating_systems": [ + "iOS" + ], + "programming_languages": [ + "Objective-C" + ] +} diff --git a/data/software/i-/i-analyzer.json b/data/software/i-/i-analyzer.json new file mode 100644 index 000000000000..18fce7b2c1ca --- /dev/null +++ b/data/software/i-/i-analyzer.json @@ -0,0 +1,8 @@ +{ + "slug": "i-analyzer", + "name": "I-Analyzer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085015" + ] +} diff --git a/data/software/i-/i-doser.json b/data/software/i-/i-doser.json new file mode 100644 index 000000000000..d4bca86a2ba7 --- /dev/null +++ b/data/software/i-/i-doser.json @@ -0,0 +1,8 @@ +{ + "slug": "i-doser", + "name": "I-Doser", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1186015" + ] +} diff --git a/data/software/i-/i-have-said-nothing.json b/data/software/i-/i-have-said-nothing.json new file mode 100644 index 000000000000..460534823c45 --- /dev/null +++ b/data/software/i-/i-have-said-nothing.json @@ -0,0 +1,15 @@ +{ + "slug": "i-have-said-nothing", + "name": "I Have Said Nothing", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q48791865" + ], + "release_date": "1994-01-01", + "publishers": [ + "Eastgate Systems" + ], + "programming_languages": [ + "HTML" + ] +} diff --git a/data/software/i-/i-librarian.json b/data/software/i-/i-librarian.json new file mode 100644 index 000000000000..99bb9223acf9 --- /dev/null +++ b/data/software/i-/i-librarian.json @@ -0,0 +1,18 @@ +{ + "slug": "i-librarian", + "name": "I, Librarian", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105748769" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [ + "PHP" + ], + "licenses": [ + "GNU General Public License, version 3.0" + ] +} diff --git a/data/software/i-/i-m-intouch.json b/data/software/i-/i-m-intouch.json new file mode 100644 index 000000000000..efd1d599659f --- /dev/null +++ b/data/software/i-/i-m-intouch.json @@ -0,0 +1,14 @@ +{ + "slug": "i-m-intouch", + "name": "I'm InTouch", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5966402" + ], + "developers": [ + "01 Communique" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/i-/i-net-crystal-clear.json b/data/software/i-/i-net-crystal-clear.json new file mode 100644 index 000000000000..9df91f3bd99e --- /dev/null +++ b/data/software/i-/i-net-crystal-clear.json @@ -0,0 +1,15 @@ +{ + "slug": "i-net-crystal-clear", + "name": "I-net Crystal-Clear", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16973021" + ], + "release_date": "1999-01-01", + "operating_systems": [ + "cross-platform" + ], + "programming_languages": [ + "Java" + ] +} diff --git a/data/software/i-/i-novae.json b/data/software/i-/i-novae.json new file mode 100644 index 000000000000..b85526470985 --- /dev/null +++ b/data/software/i-/i-novae.json @@ -0,0 +1,8 @@ +{ + "slug": "i-novae", + "name": "I-Novae", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5967667" + ] +} diff --git a/data/software/i-/i-reporter.json b/data/software/i-/i-reporter.json new file mode 100644 index 000000000000..10e84db1dd3b --- /dev/null +++ b/data/software/i-/i-reporter.json @@ -0,0 +1,11 @@ +{ + "slug": "i-reporter", + "name": "i-Reporter", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138702257" + ], + "developers": [ + "CIMTOPS Corporation." + ] +} diff --git a/data/software/i-/i-scream-homelearn.json b/data/software/i-/i-scream-homelearn.json new file mode 100644 index 000000000000..9148faa524dc --- /dev/null +++ b/data/software/i-/i-scream-homelearn.json @@ -0,0 +1,11 @@ +{ + "slug": "i-scream-homelearn", + "name": "I-scream homelearn", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109461771" + ], + "genres": [ + "educational website" + ] +} diff --git a/data/software/i-/i-solve.json b/data/software/i-/i-solve.json new file mode 100644 index 000000000000..a067ab9b6505 --- /dev/null +++ b/data/software/i-/i-solve.json @@ -0,0 +1,11 @@ +{ + "slug": "i-solve", + "name": "I-SOLVE", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124478906" + ], + "developers": [ + "Kurt Walter Leucht" + ] +} diff --git a/data/software/i-/i-tasser.json b/data/software/i-/i-tasser.json new file mode 100644 index 000000000000..68e785029631 --- /dev/null +++ b/data/software/i-/i-tasser.json @@ -0,0 +1,8 @@ +{ + "slug": "i-tasser", + "name": "I-TASSER", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17029600" + ] +} diff --git a/data/software/i2/i2phex.json b/data/software/i2/i2phex.json new file mode 100644 index 000000000000..a98e0a1a1bcb --- /dev/null +++ b/data/software/i2/i2phex.json @@ -0,0 +1,8 @@ +{ + "slug": "i2phex", + "name": "I2Phex", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3788383" + ] +} diff --git a/data/software/ia/ia.json b/data/software/ia/ia.json new file mode 100644 index 000000000000..d3327fda0520 --- /dev/null +++ b/data/software/ia/ia.json @@ -0,0 +1,15 @@ +{ + "slug": "ia", + "name": "IA", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q15908849" + ], + "release_date": "2012-01-27", + "operating_systems": [ + "Microsoft Windows" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/ia/iannotate.json b/data/software/ia/iannotate.json new file mode 100644 index 000000000000..7ae3e7582bc0 --- /dev/null +++ b/data/software/ia/iannotate.json @@ -0,0 +1,8 @@ +{ + "slug": "iannotate", + "name": "iAnnotate", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085016" + ] +} diff --git a/data/software/ib/ibm-administrative-terminal-system.json b/data/software/ib/ibm-administrative-terminal-system.json new file mode 100644 index 000000000000..8f25eb664fe9 --- /dev/null +++ b/data/software/ib/ibm-administrative-terminal-system.json @@ -0,0 +1,14 @@ +{ + "slug": "ibm-administrative-terminal-system", + "name": "IBM Administrative Terminal System", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5968755" + ], + "developers": [ + "IBM" + ], + "programming_languages": [ + "assembly language" + ] +} diff --git a/data/software/ib/ibm-aerotext.json b/data/software/ib/ibm-aerotext.json new file mode 100644 index 000000000000..51d72c9b1eee --- /dev/null +++ b/data/software/ib/ibm-aerotext.json @@ -0,0 +1,8 @@ +{ + "slug": "ibm-aerotext", + "name": "IBM AeroText", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087816" + ] +} diff --git a/data/software/ib/ibm-api-management.json b/data/software/ib/ibm-api-management.json new file mode 100644 index 000000000000..7712030ed852 --- /dev/null +++ b/data/software/ib/ibm-api-management.json @@ -0,0 +1,8 @@ +{ + "slug": "ibm-api-management", + "name": "IBM API Management", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q21463214" + ] +} diff --git a/data/software/ib/ibm-bigfix.json b/data/software/ib/ibm-bigfix.json new file mode 100644 index 000000000000..55eacb9a97dd --- /dev/null +++ b/data/software/ib/ibm-bigfix.json @@ -0,0 +1,12 @@ +{ + "slug": "ibm-bigfix", + "name": "IBM BigFix", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7810432" + ], + "developers": [ + "BigFix", + "IBM" + ] +} diff --git a/data/software/ib/ibm-bluemix.json b/data/software/ib/ibm-bluemix.json new file mode 100644 index 000000000000..69e50874c3e3 --- /dev/null +++ b/data/software/ib/ibm-bluemix.json @@ -0,0 +1,16 @@ +{ + "slug": "ibm-bluemix", + "name": "IBM Bluemix", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18378690" + ], + "developers": [ + "IBM" + ], + "programming_languages": [ + "PHP", + "Java", + "Python" + ] +} diff --git a/data/software/ib/ibm-blueworks-live.json b/data/software/ib/ibm-blueworks-live.json new file mode 100644 index 000000000000..1688c9f3161d --- /dev/null +++ b/data/software/ib/ibm-blueworks-live.json @@ -0,0 +1,11 @@ +{ + "slug": "ibm-blueworks-live", + "name": "IBM BlueWorks Live", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5968769" + ], + "developers": [ + "IBM" + ] +} diff --git a/data/software/ib/ibm-check-processing-control-system.json b/data/software/ib/ibm-check-processing-control-system.json new file mode 100644 index 000000000000..8297f1ef7b08 --- /dev/null +++ b/data/software/ib/ibm-check-processing-control-system.json @@ -0,0 +1,11 @@ +{ + "slug": "ibm-check-processing-control-system", + "name": "IBM Check Processing Control System", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5968794" + ], + "developers": [ + "IBM" + ] +} diff --git a/data/software/ib/ibm-cobol.json b/data/software/ib/ibm-cobol.json new file mode 100644 index 000000000000..72977434967f --- /dev/null +++ b/data/software/ib/ibm-cobol.json @@ -0,0 +1,11 @@ +{ + "slug": "ibm-cobol", + "name": "IBM COBOL", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5968783" + ], + "developers": [ + "IBM" + ] +} diff --git a/data/software/ib/ibm-cognos-8-business-intelligence.json b/data/software/ib/ibm-cognos-8-business-intelligence.json new file mode 100644 index 000000000000..d7a4befb3730 --- /dev/null +++ b/data/software/ib/ibm-cognos-8-business-intelligence.json @@ -0,0 +1,11 @@ +{ + "slug": "ibm-cognos-8-business-intelligence", + "name": "IBM Cognos 8 Business Intelligence", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5968799" + ], + "developers": [ + "IBM" + ] +} diff --git a/data/software/ib/ibm-configuration-management-version-control.json b/data/software/ib/ibm-configuration-management-version-control.json new file mode 100644 index 000000000000..33a3b37f6370 --- /dev/null +++ b/data/software/ib/ibm-configuration-management-version-control.json @@ -0,0 +1,11 @@ +{ + "slug": "ibm-configuration-management-version-control", + "name": "IBM Configuration Management Version Control", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4040968" + ], + "developers": [ + "IBM" + ] +} diff --git a/data/software/ib/ibm-director.json b/data/software/ib/ibm-director.json new file mode 100644 index 000000000000..f3643b300b46 --- /dev/null +++ b/data/software/ib/ibm-director.json @@ -0,0 +1,11 @@ +{ + "slug": "ibm-director", + "name": "IBM Director", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4040973" + ], + "developers": [ + "IBM" + ] +} diff --git a/data/software/ib/ibm-disoss.json b/data/software/ib/ibm-disoss.json new file mode 100644 index 000000000000..83b505031482 --- /dev/null +++ b/data/software/ib/ibm-disoss.json @@ -0,0 +1,11 @@ +{ + "slug": "ibm-disoss", + "name": "IBM DISOSS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5968820" + ], + "developers": [ + "IBM" + ] +} diff --git a/data/software/ib/ibm-docs.json b/data/software/ib/ibm-docs.json new file mode 100644 index 000000000000..624c58b7cf66 --- /dev/null +++ b/data/software/ib/ibm-docs.json @@ -0,0 +1,8 @@ +{ + "slug": "ibm-docs", + "name": "IBM Docs", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q15149499" + ] +} diff --git a/data/software/ib/ibm-engineering-systems-design-rhapsody.json b/data/software/ib/ibm-engineering-systems-design-rhapsody.json new file mode 100644 index 000000000000..925049a4ab0b --- /dev/null +++ b/data/software/ib/ibm-engineering-systems-design-rhapsody.json @@ -0,0 +1,8 @@ +{ + "slug": "ibm-engineering-systems-design-rhapsody", + "name": "IBM Engineering Systems Design Rhapsody", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10652242" + ] +} diff --git a/data/software/ib/ibm-general-parallel-file-system.json b/data/software/ib/ibm-general-parallel-file-system.json new file mode 100644 index 000000000000..a870832f9ac9 --- /dev/null +++ b/data/software/ib/ibm-general-parallel-file-system.json @@ -0,0 +1,14 @@ +{ + "slug": "ibm-general-parallel-file-system", + "name": "IBM General Parallel File System", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2389927" + ], + "developers": [ + "IBM" + ], + "operating_systems": [ + "IBM AIX" + ] +} diff --git a/data/software/ib/ibm-high-availability-cluster-multiprocessing.json b/data/software/ib/ibm-high-availability-cluster-multiprocessing.json new file mode 100644 index 000000000000..b11e6e000e6d --- /dev/null +++ b/data/software/ib/ibm-high-availability-cluster-multiprocessing.json @@ -0,0 +1,14 @@ +{ + "slug": "ibm-high-availability-cluster-multiprocessing", + "name": "IBM High Availability Cluster Multiprocessing", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10850880" + ], + "developers": [ + "IBM" + ], + "operating_systems": [ + "IBM AIX" + ] +} diff --git a/data/software/ib/ibm-home-page-reader.json b/data/software/ib/ibm-home-page-reader.json new file mode 100644 index 000000000000..2011c15aa227 --- /dev/null +++ b/data/software/ib/ibm-home-page-reader.json @@ -0,0 +1,11 @@ +{ + "slug": "ibm-home-page-reader", + "name": "IBM Home Page Reader", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5968853" + ], + "developers": [ + "IBM" + ] +} diff --git a/data/software/ib/ibm-informix-dynamic-server.json b/data/software/ib/ibm-informix-dynamic-server.json new file mode 100644 index 000000000000..870fcc4c8e8f --- /dev/null +++ b/data/software/ib/ibm-informix-dynamic-server.json @@ -0,0 +1,8 @@ +{ + "slug": "ibm-informix-dynamic-server", + "name": "IBM Informix Dynamic Server", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5968869" + ] +} diff --git a/data/software/ib/ibm-infosphere-datastage.json b/data/software/ib/ibm-infosphere-datastage.json new file mode 100644 index 000000000000..cd95de0d4d85 --- /dev/null +++ b/data/software/ib/ibm-infosphere-datastage.json @@ -0,0 +1,8 @@ +{ + "slug": "ibm-infosphere-datastage", + "name": "IBM InfoSphere DataStage", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5968866" + ] +} diff --git a/data/software/ib/ibm-lan-server.json b/data/software/ib/ibm-lan-server.json new file mode 100644 index 000000000000..65a072fe9175 --- /dev/null +++ b/data/software/ib/ibm-lan-server.json @@ -0,0 +1,11 @@ +{ + "slug": "ibm-lan-server", + "name": "IBM LAN Server", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q490264" + ], + "developers": [ + "IBM" + ] +} diff --git a/data/software/ib/ibm-lotus-approach.json b/data/software/ib/ibm-lotus-approach.json new file mode 100644 index 000000000000..16f9cb0936c6 --- /dev/null +++ b/data/software/ib/ibm-lotus-approach.json @@ -0,0 +1,11 @@ +{ + "slug": "ibm-lotus-approach", + "name": "IBM Lotus Approach", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1755003" + ], + "developers": [ + "IBM" + ] +} diff --git a/data/software/ib/ibm-lotus-domino.json b/data/software/ib/ibm-lotus-domino.json new file mode 100644 index 000000000000..28d8b3b8bce6 --- /dev/null +++ b/data/software/ib/ibm-lotus-domino.json @@ -0,0 +1,19 @@ +{ + "slug": "ibm-lotus-domino", + "name": "IBM Lotus Domino", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1069529" + ], + "developers": [ + "Lotus Software", + "IBM" + ], + "operating_systems": [ + "Solaris version 8", + "Solaris version 7", + "Solaris version 2.6", + "OS/2 Warp Server", + "Windows NT 4.0" + ] +} diff --git a/data/software/ib/ibm-lotus-freelance-graphics.json b/data/software/ib/ibm-lotus-freelance-graphics.json new file mode 100644 index 000000000000..452e179ddb31 --- /dev/null +++ b/data/software/ib/ibm-lotus-freelance-graphics.json @@ -0,0 +1,14 @@ +{ + "slug": "ibm-lotus-freelance-graphics", + "name": "IBM Lotus Freelance Graphics", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1871252" + ], + "developers": [ + "IBM" + ], + "operating_systems": [ + "DOS" + ] +} diff --git a/data/software/ib/ibm-lotus-web-content-management.json b/data/software/ib/ibm-lotus-web-content-management.json new file mode 100644 index 000000000000..f645902ea557 --- /dev/null +++ b/data/software/ib/ibm-lotus-web-content-management.json @@ -0,0 +1,14 @@ +{ + "slug": "ibm-lotus-web-content-management", + "name": "IBM Lotus Web Content Management", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5968879" + ], + "developers": [ + "IBM" + ], + "programming_languages": [ + "Java" + ] +} diff --git a/data/software/ib/ibm-office-36.json b/data/software/ib/ibm-office-36.json new file mode 100644 index 000000000000..25791df020a5 --- /dev/null +++ b/data/software/ib/ibm-office-36.json @@ -0,0 +1,12 @@ +{ + "slug": "ibm-office-36", + "name": "IBM Office/36", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5968910" + ], + "release_date": "1983-01-01", + "developers": [ + "IBM" + ] +} diff --git a/data/software/ib/ibm-office-and-document-control-system.json b/data/software/ib/ibm-office-and-document-control-system.json new file mode 100644 index 000000000000..fb37dc25a52f --- /dev/null +++ b/data/software/ib/ibm-office-and-document-control-system.json @@ -0,0 +1,11 @@ +{ + "slug": "ibm-office-and-document-control-system", + "name": "IBM Office and Document Control System", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q19341041" + ], + "developers": [ + "IBM" + ] +} diff --git a/data/software/ib/ibm-officevision.json b/data/software/ib/ibm-officevision.json new file mode 100644 index 000000000000..5f35b12f1839 --- /dev/null +++ b/data/software/ib/ibm-officevision.json @@ -0,0 +1,11 @@ +{ + "slug": "ibm-officevision", + "name": "IBM OfficeVision", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5968918" + ], + "developers": [ + "IBM" + ] +} diff --git a/data/software/ib/ibm-omegamon.json b/data/software/ib/ibm-omegamon.json new file mode 100644 index 000000000000..f34ccafb2e54 --- /dev/null +++ b/data/software/ib/ibm-omegamon.json @@ -0,0 +1,11 @@ +{ + "slug": "ibm-omegamon", + "name": "IBM OMEGAMON", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5968908" + ], + "developers": [ + "IBM" + ] +} diff --git a/data/software/ib/ibm-omnifind-yahoo-edition.json b/data/software/ib/ibm-omnifind-yahoo-edition.json new file mode 100644 index 000000000000..f653a922ece8 --- /dev/null +++ b/data/software/ib/ibm-omnifind-yahoo-edition.json @@ -0,0 +1,11 @@ +{ + "slug": "ibm-omnifind-yahoo-edition", + "name": "IBM OmniFind Yahoo! Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q12317884" + ], + "developers": [ + "IBM" + ] +} diff --git a/data/software/ib/ibm-omnifind.json b/data/software/ib/ibm-omnifind.json new file mode 100644 index 000000000000..a816b016282d --- /dev/null +++ b/data/software/ib/ibm-omnifind.json @@ -0,0 +1,11 @@ +{ + "slug": "ibm-omnifind", + "name": "IBM Omnifind", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5968913" + ], + "developers": [ + "IBM" + ] +} diff --git a/data/software/ib/ibm-operational-decision-management.json b/data/software/ib/ibm-operational-decision-management.json new file mode 100644 index 000000000000..cc3c649a57bb --- /dev/null +++ b/data/software/ib/ibm-operational-decision-management.json @@ -0,0 +1,11 @@ +{ + "slug": "ibm-operational-decision-management", + "name": "IBM Operational Decision Management", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16928000" + ], + "developers": [ + "IBM" + ] +} diff --git a/data/software/ib/ibm-power.json b/data/software/ib/ibm-power.json new file mode 100644 index 000000000000..b51b9434c4bb --- /dev/null +++ b/data/software/ib/ibm-power.json @@ -0,0 +1,11 @@ +{ + "slug": "ibm-power", + "name": "IBM Power", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5968938" + ], + "operating_systems": [ + "VSE" + ] +} diff --git a/data/software/ib/ibm-profs.json b/data/software/ib/ibm-profs.json new file mode 100644 index 000000000000..cccde0daa82a --- /dev/null +++ b/data/software/ib/ibm-profs.json @@ -0,0 +1,11 @@ +{ + "slug": "ibm-profs", + "name": "IBM PROFS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117349476" + ], + "operating_systems": [ + "VM" + ] +} diff --git a/data/software/ib/ibm-purequery.json b/data/software/ib/ibm-purequery.json new file mode 100644 index 000000000000..9ba17b0a73b9 --- /dev/null +++ b/data/software/ib/ibm-purequery.json @@ -0,0 +1,8 @@ +{ + "slug": "ibm-purequery", + "name": "IBM PureQuery", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5968945" + ] +} diff --git a/data/software/ib/ibm-rational-appscan.json b/data/software/ib/ibm-rational-appscan.json new file mode 100644 index 000000000000..b328d45a7099 --- /dev/null +++ b/data/software/ib/ibm-rational-appscan.json @@ -0,0 +1,11 @@ +{ + "slug": "ibm-rational-appscan", + "name": "IBM Rational AppScan", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5968958" + ], + "developers": [ + "IBM" + ] +} diff --git a/data/software/ib/ibm-rational-automation-framework.json b/data/software/ib/ibm-rational-automation-framework.json new file mode 100644 index 000000000000..c702311f3b48 --- /dev/null +++ b/data/software/ib/ibm-rational-automation-framework.json @@ -0,0 +1,14 @@ +{ + "slug": "ibm-rational-automation-framework", + "name": "IBM Rational Automation Framework", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5968962" + ], + "developers": [ + "IBM" + ], + "programming_languages": [ + "Java" + ] +} diff --git a/data/software/ib/ibm-rational-business-developer-extension.json b/data/software/ib/ibm-rational-business-developer-extension.json new file mode 100644 index 000000000000..398fc0aeb56d --- /dev/null +++ b/data/software/ib/ibm-rational-business-developer-extension.json @@ -0,0 +1,11 @@ +{ + "slug": "ibm-rational-business-developer-extension", + "name": "IBM Rational Business Developer Extension", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5968964" + ], + "developers": [ + "IBM" + ] +} diff --git a/data/software/ib/ibm-rational-focal-point.json b/data/software/ib/ibm-rational-focal-point.json new file mode 100644 index 000000000000..80fdd573f2df --- /dev/null +++ b/data/software/ib/ibm-rational-focal-point.json @@ -0,0 +1,11 @@ +{ + "slug": "ibm-rational-focal-point", + "name": "IBM Rational Focal Point", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5968969" + ], + "developers": [ + "UNICOM Global" + ] +} diff --git a/data/software/ib/ibm-rational-performance-tester.json b/data/software/ib/ibm-rational-performance-tester.json new file mode 100644 index 000000000000..d15ad8b4a96e --- /dev/null +++ b/data/software/ib/ibm-rational-performance-tester.json @@ -0,0 +1,11 @@ +{ + "slug": "ibm-rational-performance-tester", + "name": "IBM Rational Performance Tester", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5968973" + ], + "developers": [ + "IBM" + ] +} diff --git a/data/software/ib/ibm-rational-purify.json b/data/software/ib/ibm-rational-purify.json new file mode 100644 index 000000000000..99b310769b34 --- /dev/null +++ b/data/software/ib/ibm-rational-purify.json @@ -0,0 +1,11 @@ +{ + "slug": "ibm-rational-purify", + "name": "IBM Rational Purify", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5968974" + ], + "developers": [ + "IBM" + ] +} diff --git a/data/software/ib/ibm-rational-rose-xde.json b/data/software/ib/ibm-rational-rose-xde.json new file mode 100644 index 000000000000..30447374bd56 --- /dev/null +++ b/data/software/ib/ibm-rational-rose-xde.json @@ -0,0 +1,12 @@ +{ + "slug": "ibm-rational-rose-xde", + "name": "IBM Rational Rose XDE", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5968978" + ], + "release_date": "1994-01-01", + "developers": [ + "IBM" + ] +} diff --git a/data/software/ib/ibm-san-file-system.json b/data/software/ib/ibm-san-file-system.json new file mode 100644 index 000000000000..8f5ea1d02f05 --- /dev/null +++ b/data/software/ib/ibm-san-file-system.json @@ -0,0 +1,11 @@ +{ + "slug": "ibm-san-file-system", + "name": "IBM SAN File System", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5968998" + ], + "developers": [ + "IBM" + ] +} diff --git a/data/software/ib/ibm-scalable-architecture-for-financial-reporting.json b/data/software/ib/ibm-scalable-architecture-for-financial-reporting.json new file mode 100644 index 000000000000..bc31f85aaa01 --- /dev/null +++ b/data/software/ib/ibm-scalable-architecture-for-financial-reporting.json @@ -0,0 +1,11 @@ +{ + "slug": "ibm-scalable-architecture-for-financial-reporting", + "name": "IBM Scalable Architecture for Financial Reporting", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5969006" + ], + "developers": [ + "IBM" + ] +} diff --git a/data/software/ib/ibm-scale-out-file-services.json b/data/software/ib/ibm-scale-out-file-services.json new file mode 100644 index 000000000000..aec9512e04d3 --- /dev/null +++ b/data/software/ib/ibm-scale-out-file-services.json @@ -0,0 +1,11 @@ +{ + "slug": "ibm-scale-out-file-services", + "name": "IBM Scale-out File Services", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5969017" + ], + "developers": [ + "IBM" + ] +} diff --git a/data/software/ib/ibm-service-management-framework.json b/data/software/ib/ibm-service-management-framework.json new file mode 100644 index 000000000000..f5640527294b --- /dev/null +++ b/data/software/ib/ibm-service-management-framework.json @@ -0,0 +1,11 @@ +{ + "slug": "ibm-service-management-framework", + "name": "IBM Service Management Framework", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5969020" + ], + "developers": [ + "IBM" + ] +} diff --git a/data/software/ib/ibm-spectrum-symphony.json b/data/software/ib/ibm-spectrum-symphony.json new file mode 100644 index 000000000000..416d1383efa5 --- /dev/null +++ b/data/software/ib/ibm-spectrum-symphony.json @@ -0,0 +1,15 @@ +{ + "slug": "ibm-spectrum-symphony", + "name": "IBM Spectrum Symphony", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7661461" + ], + "developers": [ + "Platform Computing", + "IBM" + ], + "programming_languages": [ + "Java" + ] +} diff --git a/data/software/ib/ibm-spufi.json b/data/software/ib/ibm-spufi.json new file mode 100644 index 000000000000..0164a6ea5c9b --- /dev/null +++ b/data/software/ib/ibm-spufi.json @@ -0,0 +1,11 @@ +{ + "slug": "ibm-spufi", + "name": "IBM Spufi", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1604254" + ], + "developers": [ + "IBM" + ] +} diff --git a/data/software/ib/ibm-stairs.json b/data/software/ib/ibm-stairs.json new file mode 100644 index 000000000000..dce55b8f024b --- /dev/null +++ b/data/software/ib/ibm-stairs.json @@ -0,0 +1,14 @@ +{ + "slug": "ibm-stairs", + "name": "IBM STAIRS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5969008" + ], + "developers": [ + "IBM" + ], + "programming_languages": [ + "assembly language" + ] +} diff --git a/data/software/ib/ibm-storyboard-plus.json b/data/software/ib/ibm-storyboard-plus.json new file mode 100644 index 000000000000..4d3290ec0484 --- /dev/null +++ b/data/software/ib/ibm-storyboard-plus.json @@ -0,0 +1,8 @@ +{ + "slug": "ibm-storyboard-plus", + "name": "IBM Storyboard Plus", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5969035" + ] +} diff --git a/data/software/ib/ibm-system-34-and-system-36-screen-design-aid.json b/data/software/ib/ibm-system-34-and-system-36-screen-design-aid.json new file mode 100644 index 000000000000..3c6a762c6149 --- /dev/null +++ b/data/software/ib/ibm-system-34-and-system-36-screen-design-aid.json @@ -0,0 +1,11 @@ +{ + "slug": "ibm-system-34-and-system-36-screen-design-aid", + "name": "IBM System/34 and System/36 Screen Design Aid", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5969043" + ], + "developers": [ + "IBM" + ] +} diff --git a/data/software/ib/ibm-system-management-facilities.json b/data/software/ib/ibm-system-management-facilities.json new file mode 100644 index 000000000000..c459b74e3729 --- /dev/null +++ b/data/software/ib/ibm-system-management-facilities.json @@ -0,0 +1,11 @@ +{ + "slug": "ibm-system-management-facilities", + "name": "IBM System Management Facilities", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5969059" + ], + "developers": [ + "IBM" + ] +} diff --git a/data/software/ib/ibm-system-object-model.json b/data/software/ib/ibm-system-object-model.json new file mode 100644 index 000000000000..bbecff3e20a4 --- /dev/null +++ b/data/software/ib/ibm-system-object-model.json @@ -0,0 +1,11 @@ +{ + "slug": "ibm-system-object-model", + "name": "IBM System Object Model", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2376827" + ], + "developers": [ + "IBM" + ] +} diff --git a/data/software/ib/ibm-systemt.json b/data/software/ib/ibm-systemt.json new file mode 100644 index 000000000000..faa86433ed42 --- /dev/null +++ b/data/software/ib/ibm-systemt.json @@ -0,0 +1,11 @@ +{ + "slug": "ibm-systemt", + "name": "IBM SystemT", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28456210" + ], + "developers": [ + "IBM" + ] +} diff --git a/data/software/ib/ibm-tivoli-access-manager.json b/data/software/ib/ibm-tivoli-access-manager.json new file mode 100644 index 000000000000..972332698ccd --- /dev/null +++ b/data/software/ib/ibm-tivoli-access-manager.json @@ -0,0 +1,11 @@ +{ + "slug": "ibm-tivoli-access-manager", + "name": "IBM Tivoli Access Manager", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16928076" + ], + "developers": [ + "IBM" + ] +} diff --git a/data/software/ib/ibm-tivoli-directory-server.json b/data/software/ib/ibm-tivoli-directory-server.json new file mode 100644 index 000000000000..462f124c30c1 --- /dev/null +++ b/data/software/ib/ibm-tivoli-directory-server.json @@ -0,0 +1,11 @@ +{ + "slug": "ibm-tivoli-directory-server", + "name": "IBM Tivoli Directory Server", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q634163" + ], + "developers": [ + "IBM" + ] +} diff --git a/data/software/ib/ibm-tivoli-storage-manager.json b/data/software/ib/ibm-tivoli-storage-manager.json new file mode 100644 index 000000000000..b3186325ee81 --- /dev/null +++ b/data/software/ib/ibm-tivoli-storage-manager.json @@ -0,0 +1,11 @@ +{ + "slug": "ibm-tivoli-storage-manager", + "name": "IBM Tivoli Storage Manager", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2001900" + ], + "developers": [ + "IBM" + ] +} diff --git a/data/software/ib/ibm-tivoli-system-automation.json b/data/software/ib/ibm-tivoli-system-automation.json new file mode 100644 index 000000000000..43fff97bd98c --- /dev/null +++ b/data/software/ib/ibm-tivoli-system-automation.json @@ -0,0 +1,14 @@ +{ + "slug": "ibm-tivoli-system-automation", + "name": "IBM Tivoli System Automation", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2437278" + ], + "developers": [ + "IBM" + ], + "programming_languages": [ + "REXX" + ] +} diff --git a/data/software/ib/ibm-tpns.json b/data/software/ib/ibm-tpns.json new file mode 100644 index 000000000000..48a673ca4003 --- /dev/null +++ b/data/software/ib/ibm-tpns.json @@ -0,0 +1,11 @@ +{ + "slug": "ibm-tpns", + "name": "IBM TPNS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5969064" + ], + "developers": [ + "IBM" + ] +} diff --git a/data/software/ib/ibm-unica-netinsight.json b/data/software/ib/ibm-unica-netinsight.json new file mode 100644 index 000000000000..e37642d3a069 --- /dev/null +++ b/data/software/ib/ibm-unica-netinsight.json @@ -0,0 +1,11 @@ +{ + "slug": "ibm-unica-netinsight", + "name": "IBM Unica NetInsight", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5969112" + ], + "developers": [ + "IBM" + ] +} diff --git a/data/software/ib/ibm-viavoice.json b/data/software/ib/ibm-viavoice.json new file mode 100644 index 000000000000..72a19c4ccc9c --- /dev/null +++ b/data/software/ib/ibm-viavoice.json @@ -0,0 +1,11 @@ +{ + "slug": "ibm-viavoice", + "name": "IBM ViaVoice", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4116861" + ], + "developers": [ + "IBM" + ] +} diff --git a/data/software/ib/ibm-visualage-for-basic.json b/data/software/ib/ibm-visualage-for-basic.json new file mode 100644 index 000000000000..58d872602688 --- /dev/null +++ b/data/software/ib/ibm-visualage-for-basic.json @@ -0,0 +1,8 @@ +{ + "slug": "ibm-visualage-for-basic", + "name": "IBM VisualAge for Basic", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q114102337" + ] +} diff --git a/data/software/ib/ibm-websphere-business-events.json b/data/software/ib/ibm-websphere-business-events.json new file mode 100644 index 000000000000..4464bbfb061a --- /dev/null +++ b/data/software/ib/ibm-websphere-business-events.json @@ -0,0 +1,8 @@ +{ + "slug": "ibm-websphere-business-events", + "name": "IBM Websphere Business Events", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16927955" + ] +} diff --git a/data/software/ib/ibm-websphere-commerce.json b/data/software/ib/ibm-websphere-commerce.json new file mode 100644 index 000000000000..62b6f2abf8fe --- /dev/null +++ b/data/software/ib/ibm-websphere-commerce.json @@ -0,0 +1,11 @@ +{ + "slug": "ibm-websphere-commerce", + "name": "IBM WebSphere Commerce", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5969126" + ], + "developers": [ + "IBM" + ] +} diff --git a/data/software/ib/ibm-websphere-extreme-scale.json b/data/software/ib/ibm-websphere-extreme-scale.json new file mode 100644 index 000000000000..5ec60468b8ce --- /dev/null +++ b/data/software/ib/ibm-websphere-extreme-scale.json @@ -0,0 +1,11 @@ +{ + "slug": "ibm-websphere-extreme-scale", + "name": "IBM WebSphere eXtreme Scale", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5969150" + ], + "developers": [ + "IBM" + ] +} diff --git a/data/software/ib/ibm-websphere-host-on-demand.json b/data/software/ib/ibm-websphere-host-on-demand.json new file mode 100644 index 000000000000..ff8d24a8758f --- /dev/null +++ b/data/software/ib/ibm-websphere-host-on-demand.json @@ -0,0 +1,8 @@ +{ + "slug": "ibm-websphere-host-on-demand", + "name": "IBM Websphere Host On-Demand", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16973030" + ] +} diff --git a/data/software/ib/ibm-websphere-message-broker.json b/data/software/ib/ibm-websphere-message-broker.json new file mode 100644 index 000000000000..b128975b2643 --- /dev/null +++ b/data/software/ib/ibm-websphere-message-broker.json @@ -0,0 +1,8 @@ +{ + "slug": "ibm-websphere-message-broker", + "name": "IBM WebSphere Message Broker", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5969139" + ] +} diff --git a/data/software/ib/ibm-websphere-process-server.json b/data/software/ib/ibm-websphere-process-server.json new file mode 100644 index 000000000000..740e8a67cf96 --- /dev/null +++ b/data/software/ib/ibm-websphere-process-server.json @@ -0,0 +1,11 @@ +{ + "slug": "ibm-websphere-process-server", + "name": "IBM WebSphere Process Server", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5969143" + ], + "developers": [ + "IBM" + ] +} diff --git a/data/software/ib/ibm-websphere-service-registry-and-repository.json b/data/software/ib/ibm-websphere-service-registry-and-repository.json new file mode 100644 index 000000000000..4dd924c98785 --- /dev/null +++ b/data/software/ib/ibm-websphere-service-registry-and-repository.json @@ -0,0 +1,11 @@ +{ + "slug": "ibm-websphere-service-registry-and-repository", + "name": "IBM WebSphere Service Registry and Repository", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5969145" + ], + "programming_languages": [ + "Java" + ] +} diff --git a/data/software/ib/ibm-websphere.json b/data/software/ib/ibm-websphere.json new file mode 100644 index 000000000000..38156a6b1b7a --- /dev/null +++ b/data/software/ib/ibm-websphere.json @@ -0,0 +1,11 @@ +{ + "slug": "ibm-websphere", + "name": "IBM WebSphere", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2536917" + ], + "programming_languages": [ + "Java" + ] +} diff --git a/data/software/ib/ibm-works.json b/data/software/ib/ibm-works.json new file mode 100644 index 000000000000..56e3f0f1f0da --- /dev/null +++ b/data/software/ib/ibm-works.json @@ -0,0 +1,11 @@ +{ + "slug": "ibm-works", + "name": "IBM Works", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5969161" + ], + "developers": [ + "IBM" + ] +} diff --git a/data/software/ib/ibm-xl-c.json b/data/software/ib/ibm-xl-c.json new file mode 100644 index 000000000000..0d7057c3a10a --- /dev/null +++ b/data/software/ib/ibm-xl-c.json @@ -0,0 +1,11 @@ +{ + "slug": "ibm-xl-c", + "name": "IBM XL C++", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16928007" + ], + "developers": [ + "IBM" + ] +} diff --git a/data/software/ib/iboogie.json b/data/software/ib/iboogie.json new file mode 100644 index 000000000000..155566a5f8bb --- /dev/null +++ b/data/software/ib/iboogie.json @@ -0,0 +1,8 @@ +{ + "slug": "iboogie", + "name": "iBoogie", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085017" + ] +} diff --git a/data/software/ib/iboysoft.json b/data/software/ib/iboysoft.json new file mode 100644 index 000000000000..beea9f75ac20 --- /dev/null +++ b/data/software/ib/iboysoft.json @@ -0,0 +1,12 @@ +{ + "slug": "iboysoft", + "name": "iBoysoft", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115620685" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/software/ic/ic-project.json b/data/software/ic/ic-project.json new file mode 100644 index 000000000000..03f7c57b559a --- /dev/null +++ b/data/software/ic/ic-project.json @@ -0,0 +1,8 @@ +{ + "slug": "ic-project", + "name": "IC Project", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q29364732" + ] +} diff --git a/data/software/ic/icab.json b/data/software/ic/icab.json new file mode 100644 index 000000000000..7804986bc9b5 --- /dev/null +++ b/data/software/ic/icab.json @@ -0,0 +1,14 @@ +{ + "slug": "icab", + "name": "iCab", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q284497" + ], + "operating_systems": [ + "macOS" + ], + "programming_languages": [ + "Objective-C" + ] +} diff --git a/data/software/ic/icad-universe.json b/data/software/ic/icad-universe.json new file mode 100644 index 000000000000..4eb203d496c0 --- /dev/null +++ b/data/software/ic/icad-universe.json @@ -0,0 +1,14 @@ +{ + "slug": "icad-universe", + "name": "Icad Universe", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140393099" + ], + "developers": [ + "Instituto Tecnológico del Calzado y Conexas" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/ic/icaros.json b/data/software/ic/icaros.json new file mode 100644 index 000000000000..7e2e5de176bf --- /dev/null +++ b/data/software/ic/icaros.json @@ -0,0 +1,8 @@ +{ + "slug": "icaros", + "name": "Icaros", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3147584" + ] +} diff --git a/data/software/ic/icc-examin.json b/data/software/ic/icc-examin.json new file mode 100644 index 000000000000..87e601a78f80 --- /dev/null +++ b/data/software/ic/icc-examin.json @@ -0,0 +1,8 @@ +{ + "slug": "icc-examin", + "name": "icc_examin", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974933" + ] +} diff --git a/data/software/ic/iccube.json b/data/software/ic/iccube.json new file mode 100644 index 000000000000..9783e3e7a739 --- /dev/null +++ b/data/software/ic/iccube.json @@ -0,0 +1,8 @@ +{ + "slug": "iccube", + "name": "IcCube", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17028697" + ] +} diff --git a/data/software/ic/ice-integrated-content-environment.json b/data/software/ic/ice-integrated-content-environment.json new file mode 100644 index 000000000000..c34aaeb28455 --- /dev/null +++ b/data/software/ic/ice-integrated-content-environment.json @@ -0,0 +1,8 @@ +{ + "slug": "ice-integrated-content-environment", + "name": "ICE (Integrated Content Environment)", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085018" + ] +} diff --git a/data/software/ic/icebuddha.json b/data/software/ic/icebuddha.json new file mode 100644 index 000000000000..ea70c63eabc3 --- /dev/null +++ b/data/software/ic/icebuddha.json @@ -0,0 +1,11 @@ +{ + "slug": "icebuddha", + "name": "IceBuddha", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q29168392" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/ic/icecream-video-editor.json b/data/software/ic/icecream-video-editor.json new file mode 100644 index 000000000000..a419ccb4ebf4 --- /dev/null +++ b/data/software/ic/icecream-video-editor.json @@ -0,0 +1,8 @@ +{ + "slug": "icecream-video-editor", + "name": "Icecream Video Editor", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105571795" + ] +} diff --git a/data/software/ic/icecream.json b/data/software/ic/icecream.json new file mode 100644 index 000000000000..7c06818c1978 --- /dev/null +++ b/data/software/ic/icecream.json @@ -0,0 +1,14 @@ +{ + "slug": "icecream", + "name": "icecream", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127553093" + ], + "operating_systems": [ + "cross-platform" + ], + "licenses": [ + "GNU General Public License, version 2.0" + ] +} diff --git a/data/software/ic/icem-surf.json b/data/software/ic/icem-surf.json new file mode 100644 index 000000000000..6dadb22905be --- /dev/null +++ b/data/software/ic/icem-surf.json @@ -0,0 +1,14 @@ +{ + "slug": "icem-surf", + "name": "ICEM Surf", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10299730" + ], + "developers": [ + "Dassault Systèmes" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/ic/ich-quiz.json b/data/software/ic/ich-quiz.json new file mode 100644 index 000000000000..224ce3fbb03e --- /dev/null +++ b/data/software/ic/ich-quiz.json @@ -0,0 +1,11 @@ +{ + "slug": "ich-quiz", + "name": "ICH Quiz", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140352426" + ], + "developers": [ + "BMSoft1024" + ] +} diff --git a/data/software/ic/icingaweb2-module-director.json b/data/software/ic/icingaweb2-module-director.json new file mode 100644 index 000000000000..f4e5fa86275c --- /dev/null +++ b/data/software/ic/icingaweb2-module-director.json @@ -0,0 +1,8 @@ +{ + "slug": "icingaweb2-module-director", + "name": "icingaweb2-module-director", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974936" + ] +} diff --git a/data/software/ic/icingaweb2-module-graphite.json b/data/software/ic/icingaweb2-module-graphite.json new file mode 100644 index 000000000000..3b71d633d0bd --- /dev/null +++ b/data/software/ic/icingaweb2-module-graphite.json @@ -0,0 +1,8 @@ +{ + "slug": "icingaweb2-module-graphite", + "name": "icingaweb2-module-graphite", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974937" + ] +} diff --git a/data/software/ic/icingaweb2-module-pnp4nagios.json b/data/software/ic/icingaweb2-module-pnp4nagios.json new file mode 100644 index 000000000000..46e375786709 --- /dev/null +++ b/data/software/ic/icingaweb2-module-pnp4nagios.json @@ -0,0 +1,8 @@ +{ + "slug": "icingaweb2-module-pnp4nagios", + "name": "icingaweb2-module-pnp4nagios", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974938" + ] +} diff --git a/data/software/ic/iclone.json b/data/software/ic/iclone.json new file mode 100644 index 000000000000..c1957b8c1dbc --- /dev/null +++ b/data/software/ic/iclone.json @@ -0,0 +1,11 @@ +{ + "slug": "iclone", + "name": "iClone", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q291782" + ], + "developers": [ + "Reallusion" + ] +} diff --git a/data/software/ic/icon-library.json b/data/software/ic/icon-library.json new file mode 100644 index 000000000000..dd962cd4f659 --- /dev/null +++ b/data/software/ic/icon-library.json @@ -0,0 +1,11 @@ +{ + "slug": "icon-library", + "name": "Icon Library", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q128244879" + ], + "licenses": [ + "shareware" + ] +} diff --git a/data/software/ic/icon.json b/data/software/ic/icon.json new file mode 100644 index 000000000000..6c81e57d0e05 --- /dev/null +++ b/data/software/ic/icon.json @@ -0,0 +1,11 @@ +{ + "slug": "icon", + "name": "α-ICON", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108740141" + ], + "licenses": [ + "Creative Commons Attribution 4.0 International" + ] +} diff --git a/data/software/ic/icore-virtual-accounts.json b/data/software/ic/icore-virtual-accounts.json new file mode 100644 index 000000000000..224bb28109f8 --- /dev/null +++ b/data/software/ic/icore-virtual-accounts.json @@ -0,0 +1,11 @@ +{ + "slug": "icore-virtual-accounts", + "name": "iCore Virtual Accounts", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4041008" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/ic/icoutils.json b/data/software/ic/icoutils.json new file mode 100644 index 000000000000..3e78528b1e49 --- /dev/null +++ b/data/software/ic/icoutils.json @@ -0,0 +1,8 @@ +{ + "slug": "icoutils", + "name": "icoutils", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62864275" + ] +} diff --git a/data/software/ic/icse-2023-artifacts.json b/data/software/ic/icse-2023-artifacts.json new file mode 100644 index 000000000000..9ba81fc6eaea --- /dev/null +++ b/data/software/ic/icse-2023-artifacts.json @@ -0,0 +1,11 @@ +{ + "slug": "icse-2023-artifacts", + "name": "ICSE-2023-Artifacts", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127485669" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/ic/icta-internet-community-text-analyzer.json b/data/software/ic/icta-internet-community-text-analyzer.json new file mode 100644 index 000000000000..2d4666cd5581 --- /dev/null +++ b/data/software/ic/icta-internet-community-text-analyzer.json @@ -0,0 +1,8 @@ +{ + "slug": "icta-internet-community-text-analyzer", + "name": "ICTA (internet community text analyzer)", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087817" + ] +} diff --git a/data/software/ic/icy.json b/data/software/ic/icy.json new file mode 100644 index 000000000000..6271910e752c --- /dev/null +++ b/data/software/ic/icy.json @@ -0,0 +1,14 @@ +{ + "slug": "icy", + "name": "Icy", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3147746" + ], + "operating_systems": [ + "iOS" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/id/id3tool.json b/data/software/id/id3tool.json new file mode 100644 index 000000000000..f77db4248542 --- /dev/null +++ b/data/software/id/id3tool.json @@ -0,0 +1,8 @@ +{ + "slug": "id3tool", + "name": "id3tool", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62864269" + ] +} diff --git a/data/software/id/id3v2.json b/data/software/id/id3v2.json new file mode 100644 index 000000000000..264c53a30963 --- /dev/null +++ b/data/software/id/id3v2.json @@ -0,0 +1,11 @@ +{ + "slug": "id3v2", + "name": "id3v2", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62864266" + ], + "licenses": [ + "GNU Library General Public License, version 2.0" + ] +} diff --git a/data/software/id/ida-indoor-climate-and-energy.json b/data/software/id/ida-indoor-climate-and-energy.json new file mode 100644 index 000000000000..cac8df1a9b12 --- /dev/null +++ b/data/software/id/ida-indoor-climate-and-energy.json @@ -0,0 +1,8 @@ +{ + "slug": "ida-indoor-climate-and-energy", + "name": "IDA Indoor Climate and Energy", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q55639934" + ] +} diff --git a/data/software/id/iddu-36.json b/data/software/id/iddu-36.json new file mode 100644 index 000000000000..e90a88db7f04 --- /dev/null +++ b/data/software/id/iddu-36.json @@ -0,0 +1,11 @@ +{ + "slug": "iddu-36", + "name": "IDDU/36", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28869424" + ], + "developers": [ + "IBM" + ] +} diff --git a/data/software/id/idea-architectural.json b/data/software/id/idea-architectural.json new file mode 100644 index 000000000000..1d8eb9a9a23c --- /dev/null +++ b/data/software/id/idea-architectural.json @@ -0,0 +1,11 @@ +{ + "slug": "idea-architectural", + "name": "IDEA Architectural", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5969973" + ], + "developers": [ + "4M" + ] +} diff --git a/data/software/id/idealist.json b/data/software/id/idealist.json new file mode 100644 index 000000000000..da3e966ee118 --- /dev/null +++ b/data/software/id/idealist.json @@ -0,0 +1,8 @@ +{ + "slug": "idealist", + "name": "IdeaList", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60787778" + ] +} diff --git a/data/software/id/ideas-emulator.json b/data/software/id/ideas-emulator.json new file mode 100644 index 000000000000..56dcfcb97703 --- /dev/null +++ b/data/software/id/ideas-emulator.json @@ -0,0 +1,8 @@ +{ + "slug": "ideas-emulator", + "name": "iDeaS Emulator", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q307740" + ] +} diff --git a/data/software/id/ideco-ics.json b/data/software/id/ideco-ics.json new file mode 100644 index 000000000000..b36587995c53 --- /dev/null +++ b/data/software/id/ideco-ics.json @@ -0,0 +1,11 @@ +{ + "slug": "ideco-ics", + "name": "Ideco ICS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4041257" + ], + "licenses": [ + "commercial software" + ] +} diff --git a/data/software/id/idempiere.json b/data/software/id/idempiere.json new file mode 100644 index 000000000000..2e38066d9af1 --- /dev/null +++ b/data/software/id/idempiere.json @@ -0,0 +1,23 @@ +{ + "slug": "idempiere", + "name": "iDempiere", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16577004" + ], + "developers": [ + "virtual community" + ], + "operating_systems": [ + "cross-platform", + "Unix-like operating system", + "macOS", + "Microsoft Windows" + ], + "programming_languages": [ + "Java" + ], + "licenses": [ + "GNU General Public License, version 2.0" + ] +} diff --git a/data/software/id/idlcoyote.json b/data/software/id/idlcoyote.json new file mode 100644 index 000000000000..04a9654e70a0 --- /dev/null +++ b/data/software/id/idlcoyote.json @@ -0,0 +1,8 @@ +{ + "slug": "idlcoyote", + "name": "idlcoyote", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974942" + ] +} diff --git a/data/software/ie/ieatbrainz.json b/data/software/ie/ieatbrainz.json new file mode 100644 index 000000000000..054a4bdb2383 --- /dev/null +++ b/data/software/ie/ieatbrainz.json @@ -0,0 +1,8 @@ +{ + "slug": "ieatbrainz", + "name": "IEatBrainz", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3009208" + ] +} diff --git a/data/software/if/ifmetric.json b/data/software/if/ifmetric.json new file mode 100644 index 000000000000..fc5f536da9ec --- /dev/null +++ b/data/software/if/ifmetric.json @@ -0,0 +1,8 @@ +{ + "slug": "ifmetric", + "name": "ifmetric", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62864205" + ] +} diff --git a/data/software/if/ifplugd.json b/data/software/if/ifplugd.json new file mode 100644 index 000000000000..cb81472b7d09 --- /dev/null +++ b/data/software/if/ifplugd.json @@ -0,0 +1,8 @@ +{ + "slug": "ifplugd", + "name": "ifplugd", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62864195" + ] +} diff --git a/data/software/if/ifscl.json b/data/software/if/ifscl.json new file mode 100644 index 000000000000..5e5d2a82eb3b --- /dev/null +++ b/data/software/if/ifscl.json @@ -0,0 +1,8 @@ +{ + "slug": "ifscl", + "name": "IFSCL", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2879611" + ] +} diff --git a/data/software/if/ifstat.json b/data/software/if/ifstat.json new file mode 100644 index 000000000000..5524d0c6c522 --- /dev/null +++ b/data/software/if/ifstat.json @@ -0,0 +1,8 @@ +{ + "slug": "ifstat", + "name": "ifstat", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62864190" + ] +} diff --git a/data/software/if/ifstatus.json b/data/software/if/ifstatus.json new file mode 100644 index 000000000000..cf5a98bd8a59 --- /dev/null +++ b/data/software/if/ifstatus.json @@ -0,0 +1,8 @@ +{ + "slug": "ifstatus", + "name": "ifstatus", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065651" + ] +} diff --git a/data/software/ig/igl.json b/data/software/ig/igl.json new file mode 100644 index 000000000000..0eee2f3551dd --- /dev/null +++ b/data/software/ig/igl.json @@ -0,0 +1,11 @@ +{ + "slug": "igl", + "name": "IGL", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120446096" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/ig/ignite.json b/data/software/ig/ignite.json new file mode 100644 index 000000000000..4fc07d1fe390 --- /dev/null +++ b/data/software/ig/ignite.json @@ -0,0 +1,11 @@ +{ + "slug": "ignite", + "name": "Ignite", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16996604" + ], + "developers": [ + "Electronic Arts" + ] +} diff --git a/data/software/ig/igo.json b/data/software/ig/igo.json new file mode 100644 index 000000000000..3537fb702c7e --- /dev/null +++ b/data/software/ig/igo.json @@ -0,0 +1,8 @@ +{ + "slug": "igo", + "name": "iGO", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2064656" + ] +} diff --git a/data/software/ig/igoogle.json b/data/software/ig/igoogle.json new file mode 100644 index 000000000000..4b0da8c774fb --- /dev/null +++ b/data/software/ig/igoogle.json @@ -0,0 +1,11 @@ +{ + "slug": "igoogle", + "name": "iGoogle", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q305910" + ], + "developers": [ + "Google" + ] +} diff --git a/data/software/ig/igor.json b/data/software/ig/igor.json new file mode 100644 index 000000000000..eb66000717cf --- /dev/null +++ b/data/software/ig/igor.json @@ -0,0 +1,8 @@ +{ + "slug": "igor", + "name": "IGOR", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138026217" + ] +} diff --git a/data/software/ig/igorilla.json b/data/software/ig/igorilla.json new file mode 100644 index 000000000000..531dea9fb124 --- /dev/null +++ b/data/software/ig/igorilla.json @@ -0,0 +1,8 @@ +{ + "slug": "igorilla", + "name": "iGorilla", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5971089" + ] +} diff --git a/data/software/ig/igrafx-flowcharter.json b/data/software/ig/igrafx-flowcharter.json new file mode 100644 index 000000000000..ab709dc2cb8a --- /dev/null +++ b/data/software/ig/igrafx-flowcharter.json @@ -0,0 +1,12 @@ +{ + "slug": "igrafx-flowcharter", + "name": "iGrafx FlowCharter", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4650153" + ], + "developers": [ + "Corel", + "Micrografx" + ] +} diff --git a/data/software/ig/igraph-m.json b/data/software/ig/igraph-m.json new file mode 100644 index 000000000000..6e669d6dca3a --- /dev/null +++ b/data/software/ig/igraph-m.json @@ -0,0 +1,18 @@ +{ + "slug": "igraph-m", + "name": "iGraph/M", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116480091" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [ + "Wolfram Language" + ], + "licenses": [ + "GNU General Public License, version 3.0" + ] +} diff --git a/data/software/ig/igraph.json b/data/software/ig/igraph.json new file mode 100644 index 000000000000..4e334cd97543 --- /dev/null +++ b/data/software/ig/igraph.json @@ -0,0 +1,14 @@ +{ + "slug": "igraph", + "name": "igraph", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25052508" + ], + "operating_systems": [ + "cross-platform" + ], + "licenses": [ + "GNU General Public License, version 2.0 or later" + ] +} diff --git a/data/software/ig/igsuite.json b/data/software/ig/igsuite.json new file mode 100644 index 000000000000..416973e8c277 --- /dev/null +++ b/data/software/ig/igsuite.json @@ -0,0 +1,8 @@ +{ + "slug": "igsuite", + "name": "IGSuite", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3788532" + ] +} diff --git a/data/software/ig/igt-gpu-tools.json b/data/software/ig/igt-gpu-tools.json new file mode 100644 index 000000000000..d45b114c0d01 --- /dev/null +++ b/data/software/ig/igt-gpu-tools.json @@ -0,0 +1,14 @@ +{ + "slug": "igt-gpu-tools", + "name": "IGT GPU Tools", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q90847082" + ], + "operating_systems": [ + "BSD" + ], + "licenses": [ + "Expat license" + ] +} diff --git a/data/software/ii/iiif-universal-viewer.json b/data/software/ii/iiif-universal-viewer.json new file mode 100644 index 000000000000..7ec0b58573ae --- /dev/null +++ b/data/software/ii/iiif-universal-viewer.json @@ -0,0 +1,8 @@ +{ + "slug": "iiif-universal-viewer", + "name": "IIIF Universal Viewer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087818" + ] +} diff --git a/data/software/ii/iipimage.json b/data/software/ii/iipimage.json new file mode 100644 index 000000000000..691f28a2b6b0 --- /dev/null +++ b/data/software/ii/iipimage.json @@ -0,0 +1,14 @@ +{ + "slug": "iipimage", + "name": "IIPImage", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107611569" + ], + "developers": [ + "Ruven Pillay" + ], + "licenses": [ + "GNU General Public License, version 3.0" + ] +} diff --git a/data/software/ii/iitagger.json b/data/software/ii/iitagger.json new file mode 100644 index 000000000000..1c6514144182 --- /dev/null +++ b/data/software/ii/iitagger.json @@ -0,0 +1,8 @@ +{ + "slug": "iitagger", + "name": "IITagger", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085021" + ] +} diff --git a/data/software/ik/ike-scan.json b/data/software/ik/ike-scan.json new file mode 100644 index 000000000000..ec2db4bc5f4c --- /dev/null +++ b/data/software/ik/ike-scan.json @@ -0,0 +1,8 @@ +{ + "slug": "ike-scan", + "name": "ike-scan", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62864161" + ] +} diff --git a/data/software/ik/ikeymonitor.json b/data/software/ik/ikeymonitor.json new file mode 100644 index 000000000000..e5808d99ee5d --- /dev/null +++ b/data/software/ik/ikeymonitor.json @@ -0,0 +1,11 @@ +{ + "slug": "ikeymonitor", + "name": "IKeyMonitor", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q48988965" + ], + "operating_systems": [ + "iOS" + ] +} diff --git a/data/software/il/il2cpp.json b/data/software/il/il2cpp.json new file mode 100644 index 000000000000..e7d3d8c5f7ad --- /dev/null +++ b/data/software/il/il2cpp.json @@ -0,0 +1,15 @@ +{ + "slug": "il2cpp", + "name": "IL2CPP", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q99515369" + ], + "developers": [ + "Unity Technologies" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/software/il/ilane.json b/data/software/il/ilane.json new file mode 100644 index 000000000000..e633552a7e1a --- /dev/null +++ b/data/software/il/ilane.json @@ -0,0 +1,8 @@ +{ + "slug": "ilane", + "name": "iLane", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5971897" + ] +} diff --git a/data/software/il/illixis.json b/data/software/il/illixis.json new file mode 100644 index 000000000000..0feae7ac332f --- /dev/null +++ b/data/software/il/illixis.json @@ -0,0 +1,8 @@ +{ + "slug": "illixis", + "name": "ILLIXIS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139960266" + ] +} diff --git a/data/software/il/illuststudio.json b/data/software/il/illuststudio.json new file mode 100644 index 000000000000..e435eb41fc10 --- /dev/null +++ b/data/software/il/illuststudio.json @@ -0,0 +1,8 @@ +{ + "slug": "illuststudio", + "name": "IllustStudio", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q9008003" + ] +} diff --git a/data/software/il/illyria.json b/data/software/il/illyria.json new file mode 100644 index 000000000000..796d2a3e2975 --- /dev/null +++ b/data/software/il/illyria.json @@ -0,0 +1,8 @@ +{ + "slug": "illyria", + "name": "Illyria", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16253854" + ] +} diff --git a/data/software/il/ilovepdf.json b/data/software/il/ilovepdf.json new file mode 100644 index 000000000000..ae3543cd5149 --- /dev/null +++ b/data/software/il/ilovepdf.json @@ -0,0 +1,8 @@ +{ + "slug": "ilovepdf", + "name": "ILovePDF", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130772808" + ] +} diff --git a/data/software/il/ilunascape.json b/data/software/il/ilunascape.json new file mode 100644 index 000000000000..d6b533f6a402 --- /dev/null +++ b/data/software/il/ilunascape.json @@ -0,0 +1,8 @@ +{ + "slug": "ilunascape", + "name": "iLunascape", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11224029" + ] +} diff --git a/data/software/im/ima-evm-utils.json b/data/software/im/ima-evm-utils.json new file mode 100644 index 000000000000..2be3f598517c --- /dev/null +++ b/data/software/im/ima-evm-utils.json @@ -0,0 +1,8 @@ +{ + "slug": "ima-evm-utils", + "name": "ima-evm-utils", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974943" + ] +} diff --git a/data/software/im/image-alchemy.json b/data/software/im/image-alchemy.json new file mode 100644 index 000000000000..b1a58d2c57bf --- /dev/null +++ b/data/software/im/image-alchemy.json @@ -0,0 +1,8 @@ +{ + "slug": "image-alchemy", + "name": "Image Alchemy", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28205547" + ] +} diff --git a/data/software/im/image-analyzer.json b/data/software/im/image-analyzer.json new file mode 100644 index 000000000000..623a1b7b70e0 --- /dev/null +++ b/data/software/im/image-analyzer.json @@ -0,0 +1,11 @@ +{ + "slug": "image-analyzer", + "name": "Image Analyzer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2461480" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/im/image-capture.json b/data/software/im/image-capture.json new file mode 100644 index 000000000000..951174f1733b --- /dev/null +++ b/data/software/im/image-capture.json @@ -0,0 +1,12 @@ +{ + "slug": "image-capture", + "name": "Image Capture", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1071250" + ], + "release_date": "2005-12-28", + "developers": [ + "Apple Inc." + ] +} diff --git a/data/software/im/image-lab.json b/data/software/im/image-lab.json new file mode 100644 index 000000000000..14cd556e9a8d --- /dev/null +++ b/data/software/im/image-lab.json @@ -0,0 +1,8 @@ +{ + "slug": "image-lab", + "name": "Image Lab", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121010326" + ] +} diff --git a/data/software/im/image-map-tool.json b/data/software/im/image-map-tool.json new file mode 100644 index 000000000000..b83f5cd75019 --- /dev/null +++ b/data/software/im/image-map-tool.json @@ -0,0 +1,8 @@ +{ + "slug": "image-map-tool", + "name": "Image Map Tool", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085024" + ] +} diff --git a/data/software/im/image-studio-lite.json b/data/software/im/image-studio-lite.json new file mode 100644 index 000000000000..240d94e65bc8 --- /dev/null +++ b/data/software/im/image-studio-lite.json @@ -0,0 +1,17 @@ +{ + "slug": "image-studio-lite", + "name": "Image Studio Lite", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22097426" + ], + "developers": [ + "LI-COR Biosciences" + ], + "operating_systems": [ + "macOS Sierra" + ], + "programming_languages": [ + "Java" + ] +} diff --git a/data/software/im/image-sxm.json b/data/software/im/image-sxm.json new file mode 100644 index 000000000000..82a69cd06019 --- /dev/null +++ b/data/software/im/image-sxm.json @@ -0,0 +1,8 @@ +{ + "slug": "image-sxm", + "name": "Image SXM", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1420482" + ] +} diff --git a/data/software/im/image-zoom.json b/data/software/im/image-zoom.json new file mode 100644 index 000000000000..2ee9766bd558 --- /dev/null +++ b/data/software/im/image-zoom.json @@ -0,0 +1,8 @@ +{ + "slug": "image-zoom", + "name": "Image Zoom", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6002183" + ] +} diff --git a/data/software/im/imagej.json b/data/software/im/imagej.json new file mode 100644 index 000000000000..abd571d2fc3f --- /dev/null +++ b/data/software/im/imagej.json @@ -0,0 +1,8 @@ +{ + "slug": "imagej", + "name": "ImageJ", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085022" + ] +} diff --git a/data/software/im/imagemagik.json b/data/software/im/imagemagik.json new file mode 100644 index 000000000000..ae5b7de116b6 --- /dev/null +++ b/data/software/im/imagemagik.json @@ -0,0 +1,8 @@ +{ + "slug": "imagemagik", + "name": "ImageMagik", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085023" + ] +} diff --git a/data/software/im/imagenets.json b/data/software/im/imagenets.json new file mode 100644 index 000000000000..69940250e17a --- /dev/null +++ b/data/software/im/imagenets.json @@ -0,0 +1,8 @@ +{ + "slug": "imagenets", + "name": "ImageNets", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6002088" + ] +} diff --git a/data/software/im/imagequant.json b/data/software/im/imagequant.json new file mode 100644 index 000000000000..c625b767659c --- /dev/null +++ b/data/software/im/imagequant.json @@ -0,0 +1,8 @@ +{ + "slug": "imagequant", + "name": "ImageQuant", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112270642" + ] +} diff --git a/data/software/im/imagestyler.json b/data/software/im/imagestyler.json new file mode 100644 index 000000000000..4545e7d86bec --- /dev/null +++ b/data/software/im/imagestyler.json @@ -0,0 +1,14 @@ +{ + "slug": "imagestyler", + "name": "ImageStyler", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q66004659" + ], + "developers": [ + "Adobe" + ], + "operating_systems": [ + "Windows 95" + ] +} diff --git a/data/software/im/imagine-photogrammetry.json b/data/software/im/imagine-photogrammetry.json new file mode 100644 index 000000000000..50a879a6147b --- /dev/null +++ b/data/software/im/imagine-photogrammetry.json @@ -0,0 +1,8 @@ +{ + "slug": "imagine-photogrammetry", + "name": "IMAGINE Photogrammetry", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6519126" + ] +} diff --git a/data/software/im/imagine.json b/data/software/im/imagine.json new file mode 100644 index 000000000000..2a4c78295ea1 --- /dev/null +++ b/data/software/im/imagine.json @@ -0,0 +1,8 @@ +{ + "slug": "imagine", + "name": "Imagine", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11711786" + ] +} diff --git a/data/software/im/imapfilter.json b/data/software/im/imapfilter.json new file mode 100644 index 000000000000..61800c94cb32 --- /dev/null +++ b/data/software/im/imapfilter.json @@ -0,0 +1,8 @@ +{ + "slug": "imapfilter", + "name": "IMAPFilter", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62864149" + ] +} diff --git a/data/software/im/imazing.json b/data/software/im/imazing.json new file mode 100644 index 000000000000..42db885ba7f0 --- /dev/null +++ b/data/software/im/imazing.json @@ -0,0 +1,8 @@ +{ + "slug": "imazing", + "name": "iMazing", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q43401695" + ] +} diff --git a/data/software/im/imc-famos.json b/data/software/im/imc-famos.json new file mode 100644 index 000000000000..0e14ab825e9e --- /dev/null +++ b/data/software/im/imc-famos.json @@ -0,0 +1,8 @@ +{ + "slug": "imc-famos", + "name": "imc FAMOS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1659792" + ] +} diff --git a/data/software/im/imediff2.json b/data/software/im/imediff2.json new file mode 100644 index 000000000000..4891dce83cf9 --- /dev/null +++ b/data/software/im/imediff2.json @@ -0,0 +1,8 @@ +{ + "slug": "imediff2", + "name": "imediff2", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62864142" + ] +} diff --git a/data/software/im/imesh.json b/data/software/im/imesh.json new file mode 100644 index 000000000000..b2f01741a020 --- /dev/null +++ b/data/software/im/imesh.json @@ -0,0 +1,8 @@ +{ + "slug": "imesh", + "name": "iMesh", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1050551" + ] +} diff --git a/data/software/im/img2pdf.json b/data/software/im/img2pdf.json new file mode 100644 index 000000000000..3a4806f2b561 --- /dev/null +++ b/data/software/im/img2pdf.json @@ -0,0 +1,11 @@ +{ + "slug": "img2pdf", + "name": "img2pdf", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62864137" + ], + "licenses": [ + "GNU Lesser General Public License, version 3.0" + ] +} diff --git a/data/software/im/imgdeal.json b/data/software/im/imgdeal.json new file mode 100644 index 000000000000..b74be068b9bb --- /dev/null +++ b/data/software/im/imgdeal.json @@ -0,0 +1,8 @@ +{ + "slug": "imgdeal", + "name": "Imgdeal", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140051800" + ] +} diff --git a/data/software/im/imglib2.json b/data/software/im/imglib2.json new file mode 100644 index 000000000000..a0d8f46e5fa2 --- /dev/null +++ b/data/software/im/imglib2.json @@ -0,0 +1,8 @@ +{ + "slug": "imglib2", + "name": "ImgLib2", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113050056" + ] +} diff --git a/data/software/im/imgs-ai.json b/data/software/im/imgs-ai.json new file mode 100644 index 000000000000..f89a756076d6 --- /dev/null +++ b/data/software/im/imgs-ai.json @@ -0,0 +1,12 @@ +{ + "slug": "imgs-ai", + "name": "imgs.ai", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107176493" + ], + "developers": [ + "Fabian Offert", + "Peter Bell" + ] +} diff --git a/data/software/im/imhex.json b/data/software/im/imhex.json new file mode 100644 index 000000000000..b61ef226a6d4 --- /dev/null +++ b/data/software/im/imhex.json @@ -0,0 +1,11 @@ +{ + "slug": "imhex", + "name": "ImHex", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116764539" + ], + "licenses": [ + "GNU General Public License, version 2.0" + ] +} diff --git a/data/software/im/imindq.json b/data/software/im/imindq.json new file mode 100644 index 000000000000..7a3fad5e4f6d --- /dev/null +++ b/data/software/im/imindq.json @@ -0,0 +1,13 @@ +{ + "slug": "imindq", + "name": "iMindQ", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q65033609" + ], + "operating_systems": [ + "iOS", + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/software/im/immersivision.json b/data/software/im/immersivision.json new file mode 100644 index 000000000000..bcf189002ba8 --- /dev/null +++ b/data/software/im/immersivision.json @@ -0,0 +1,8 @@ +{ + "slug": "immersivision", + "name": "ImmersiVision", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6004847" + ] +} diff --git a/data/software/im/immigrationos.json b/data/software/im/immigrationos.json new file mode 100644 index 000000000000..2b47a75d79af --- /dev/null +++ b/data/software/im/immigrationos.json @@ -0,0 +1,14 @@ +{ + "slug": "immigrationos", + "name": "ImmigrationOS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137908492" + ], + "developers": [ + "Palantir Technologies" + ], + "publishers": [ + "Palantir Technologies" + ] +} diff --git a/data/software/im/imo-im.json b/data/software/im/imo-im.json new file mode 100644 index 000000000000..daf896bbded4 --- /dev/null +++ b/data/software/im/imo-im.json @@ -0,0 +1,17 @@ +{ + "slug": "imo-im", + "name": "Imo.im", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4041310" + ], + "operating_systems": [ + "BlackBerry OS", + "Windows Phone", + "iOS", + "Microsoft Windows" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/im/imonggo.json b/data/software/im/imonggo.json new file mode 100644 index 000000000000..255935877cd7 --- /dev/null +++ b/data/software/im/imonggo.json @@ -0,0 +1,13 @@ +{ + "slug": "imonggo", + "name": "Imonggo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6005718" + ], + "release_date": "2009-01-01", + "operating_systems": [ + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/software/im/impact-q129257323.json b/data/software/im/impact-q129257323.json new file mode 100644 index 000000000000..daf9a9078466 --- /dev/null +++ b/data/software/im/impact-q129257323.json @@ -0,0 +1,11 @@ +{ + "slug": "impact-q129257323", + "name": "Impact", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q129257323" + ], + "developers": [ + "Electronic Arts" + ] +} diff --git a/data/software/im/impact.json b/data/software/im/impact.json new file mode 100644 index 000000000000..c85fd19c8bc0 --- /dev/null +++ b/data/software/im/impact.json @@ -0,0 +1,11 @@ +{ + "slug": "impact", + "name": "Impact", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17239037" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/im/impactnet.json b/data/software/im/impactnet.json new file mode 100644 index 000000000000..38ce855c78b7 --- /dev/null +++ b/data/software/im/impactnet.json @@ -0,0 +1,8 @@ +{ + "slug": "impactnet", + "name": "impactnet", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139386679" + ] +} diff --git a/data/software/im/imperial-hero.json b/data/software/im/imperial-hero.json new file mode 100644 index 000000000000..ad9f99c0c1ef --- /dev/null +++ b/data/software/im/imperial-hero.json @@ -0,0 +1,11 @@ +{ + "slug": "imperial-hero", + "name": "Imperial Hero", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25929156" + ], + "genres": [ + "massively multiplayer online role-playing game" + ] +} diff --git a/data/software/im/impos-2.json b/data/software/im/impos-2.json new file mode 100644 index 000000000000..77586316ec09 --- /dev/null +++ b/data/software/im/impos-2.json @@ -0,0 +1,8 @@ +{ + "slug": "impos-2", + "name": "Impos/2", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136689558" + ] +} diff --git a/data/software/im/impress-remote.json b/data/software/im/impress-remote.json new file mode 100644 index 000000000000..3c509045be9a --- /dev/null +++ b/data/software/im/impress-remote.json @@ -0,0 +1,21 @@ +{ + "slug": "impress-remote", + "name": "Impress Remote", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16927687" + ], + "release_date": "2014-02-01", + "developers": [ + "The Document Foundation" + ], + "operating_systems": [ + "iOS" + ], + "programming_languages": [ + "Java" + ], + "licenses": [ + "Mozilla Public License" + ] +} diff --git a/data/software/im/impression.json b/data/software/im/impression.json new file mode 100644 index 000000000000..31e8e68e4353 --- /dev/null +++ b/data/software/im/impression.json @@ -0,0 +1,17 @@ +{ + "slug": "impression", + "name": "Impression", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16994773" + ], + "developers": [ + "Xara" + ], + "operating_systems": [ + "RISC OS" + ], + "programming_languages": [ + "assembly language" + ] +} diff --git a/data/software/im/imprint.json b/data/software/im/imprint.json new file mode 100644 index 000000000000..01a7a66f8eb9 --- /dev/null +++ b/data/software/im/imprint.json @@ -0,0 +1,11 @@ +{ + "slug": "imprint", + "name": "IMPRINT", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28457576" + ], + "developers": [ + "Alion Science and Technology" + ] +} diff --git a/data/software/im/improvise.json b/data/software/im/improvise.json new file mode 100644 index 000000000000..556b074dc999 --- /dev/null +++ b/data/software/im/improvise.json @@ -0,0 +1,8 @@ +{ + "slug": "improvise", + "name": "Improvise", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085025" + ] +} diff --git a/data/software/im/imputation-and-variance-estimation-software.json b/data/software/im/imputation-and-variance-estimation-software.json new file mode 100644 index 000000000000..386528a7bfe9 --- /dev/null +++ b/data/software/im/imputation-and-variance-estimation-software.json @@ -0,0 +1,8 @@ +{ + "slug": "imputation-and-variance-estimation-software", + "name": "Imputation and Variance Estimation Software", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60744645" + ] +} diff --git a/data/software/im/ims-open-corpus-workbench-cwb.json b/data/software/im/ims-open-corpus-workbench-cwb.json new file mode 100644 index 000000000000..1affb4c88604 --- /dev/null +++ b/data/software/im/ims-open-corpus-workbench-cwb.json @@ -0,0 +1,8 @@ +{ + "slug": "ims-open-corpus-workbench-cwb", + "name": "IMS Open Corpus Workbench (CWB)", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085026" + ] +} diff --git a/data/software/im/imvu.json b/data/software/im/imvu.json new file mode 100644 index 000000000000..99fa1be8115b --- /dev/null +++ b/data/software/im/imvu.json @@ -0,0 +1,9 @@ +{ + "slug": "imvu", + "name": "IMVU", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2361202" + ], + "release_date": "2004-01-01" +} diff --git a/data/software/im/imwheel.json b/data/software/im/imwheel.json new file mode 100644 index 000000000000..a1feb17db764 --- /dev/null +++ b/data/software/im/imwheel.json @@ -0,0 +1,8 @@ +{ + "slug": "imwheel", + "name": "IMWheel", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62864130" + ] +} diff --git a/data/software/in/in-step.json b/data/software/in/in-step.json new file mode 100644 index 000000000000..1495a29303cb --- /dev/null +++ b/data/software/in/in-step.json @@ -0,0 +1,8 @@ +{ + "slug": "in-step", + "name": "In-Step", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1600146" + ] +} diff --git a/data/software/in/inca.json b/data/software/in/inca.json new file mode 100644 index 000000000000..8f02e75bc838 --- /dev/null +++ b/data/software/in/inca.json @@ -0,0 +1,11 @@ +{ + "slug": "inca", + "name": "INCA", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1654158" + ], + "developers": [ + "ETAS Group" + ] +} diff --git a/data/software/in/inca3d.json b/data/software/in/inca3d.json new file mode 100644 index 000000000000..2533330883c1 --- /dev/null +++ b/data/software/in/inca3d.json @@ -0,0 +1,8 @@ +{ + "slug": "inca3d", + "name": "InCa3D", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3149590" + ] +} diff --git a/data/software/in/incd.json b/data/software/in/incd.json new file mode 100644 index 000000000000..275ca38146a6 --- /dev/null +++ b/data/software/in/incd.json @@ -0,0 +1,8 @@ +{ + "slug": "incd", + "name": "InCD", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3818879" + ] +} diff --git a/data/software/in/inception.json b/data/software/in/inception.json new file mode 100644 index 000000000000..16cf89d390ef --- /dev/null +++ b/data/software/in/inception.json @@ -0,0 +1,14 @@ +{ + "slug": "inception", + "name": "INCEpTION", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105824503" + ], + "developers": [ + "Iryna Gurevych" + ], + "licenses": [ + "Apache Software License 2.0" + ] +} diff --git a/data/software/in/incogni.json b/data/software/in/incogni.json new file mode 100644 index 000000000000..cbcf3123b2f0 --- /dev/null +++ b/data/software/in/incogni.json @@ -0,0 +1,8 @@ +{ + "slug": "incogni", + "name": "Incogni", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123751849" + ] +} diff --git a/data/software/in/incomer-playtest.json b/data/software/in/incomer-playtest.json new file mode 100644 index 000000000000..00b754de62c0 --- /dev/null +++ b/data/software/in/incomer-playtest.json @@ -0,0 +1,9 @@ +{ + "slug": "incomer-playtest", + "name": "INCOMER Playtest", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134964927" + ], + "release_date": "2022-08-05" +} diff --git a/data/software/in/indexhibit.json b/data/software/in/indexhibit.json new file mode 100644 index 000000000000..6722d559aca8 --- /dev/null +++ b/data/software/in/indexhibit.json @@ -0,0 +1,11 @@ +{ + "slug": "indexhibit", + "name": "Indexhibit", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3150060" + ], + "programming_languages": [ + "PHP" + ] +} diff --git a/data/software/in/indievelo.json b/data/software/in/indievelo.json new file mode 100644 index 000000000000..41884753bebf --- /dev/null +++ b/data/software/in/indievelo.json @@ -0,0 +1,8 @@ +{ + "slug": "indievelo", + "name": "indieVelo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130730707" + ] +} diff --git a/data/software/in/indigobench.json b/data/software/in/indigobench.json new file mode 100644 index 000000000000..c04f2aab0065 --- /dev/null +++ b/data/software/in/indigobench.json @@ -0,0 +1,12 @@ +{ + "slug": "indigobench", + "name": "IndigoBench", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q38267143" + ], + "operating_systems": [ + "Mac operating system", + "Microsoft Windows" + ] +} diff --git a/data/software/in/indrastra-global-open-repository.json b/data/software/in/indrastra-global-open-repository.json new file mode 100644 index 000000000000..a322cfbed60e --- /dev/null +++ b/data/software/in/indrastra-global-open-repository.json @@ -0,0 +1,8 @@ +{ + "slug": "indrastra-global-open-repository", + "name": "IndraStra Global Open Repository", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q47476514" + ] +} diff --git a/data/software/in/infegy.json b/data/software/in/infegy.json new file mode 100644 index 000000000000..c2872c0b8898 --- /dev/null +++ b/data/software/in/infegy.json @@ -0,0 +1,8 @@ +{ + "slug": "infegy", + "name": "Infegy", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085028" + ] +} diff --git a/data/software/in/infinidb.json b/data/software/in/infinidb.json new file mode 100644 index 000000000000..c0610f1cf259 --- /dev/null +++ b/data/software/in/infinidb.json @@ -0,0 +1,8 @@ +{ + "slug": "infinidb", + "name": "InfiniDB", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5023936" + ] +} diff --git a/data/software/in/infinit.json b/data/software/in/infinit.json new file mode 100644 index 000000000000..57fb2845f2b3 --- /dev/null +++ b/data/software/in/infinit.json @@ -0,0 +1,13 @@ +{ + "slug": "infinit", + "name": "Infinit", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6029699" + ], + "programming_languages": [ + "Java", + "Python", + "Objective-C" + ] +} diff --git a/data/software/in/infinite-pixel-battles-playtest.json b/data/software/in/infinite-pixel-battles-playtest.json new file mode 100644 index 000000000000..ab2f53f85c80 --- /dev/null +++ b/data/software/in/infinite-pixel-battles-playtest.json @@ -0,0 +1,9 @@ +{ + "slug": "infinite-pixel-battles-playtest", + "name": "Infinite Pixel Battles Playtest", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134964770" + ], + "release_date": "2021-09-17" +} diff --git a/data/software/in/infinitegraph.json b/data/software/in/infinitegraph.json new file mode 100644 index 000000000000..1d07575de15e --- /dev/null +++ b/data/software/in/infinitegraph.json @@ -0,0 +1,14 @@ +{ + "slug": "infinitegraph", + "name": "InfiniteGraph", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6029732" + ], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [ + "Java" + ] +} diff --git a/data/software/in/infltr.json b/data/software/in/infltr.json new file mode 100644 index 000000000000..ce03aa03e0f7 --- /dev/null +++ b/data/software/in/infltr.json @@ -0,0 +1,8 @@ +{ + "slug": "infltr", + "name": "Infltr", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28448854" + ] +} diff --git a/data/software/in/infoextractor.json b/data/software/in/infoextractor.json new file mode 100644 index 000000000000..f9fa11cfb4a2 --- /dev/null +++ b/data/software/in/infoextractor.json @@ -0,0 +1,8 @@ +{ + "slug": "infoextractor", + "name": "InfoExtractor", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085029" + ] +} diff --git a/data/software/in/informix-wingz.json b/data/software/in/informix-wingz.json new file mode 100644 index 000000000000..11d11e55a156 --- /dev/null +++ b/data/software/in/informix-wingz.json @@ -0,0 +1,8 @@ +{ + "slug": "informix-wingz", + "name": "Informix Wingz", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q428832" + ] +} diff --git a/data/software/in/infozoom.json b/data/software/in/infozoom.json new file mode 100644 index 000000000000..670501047fc5 --- /dev/null +++ b/data/software/in/infozoom.json @@ -0,0 +1,8 @@ +{ + "slug": "infozoom", + "name": "InfoZoom", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1662436" + ] +} diff --git a/data/software/in/inke-dynamic-table-of-contexts.json b/data/software/in/inke-dynamic-table-of-contexts.json new file mode 100644 index 000000000000..f0474e5f79f3 --- /dev/null +++ b/data/software/in/inke-dynamic-table-of-contexts.json @@ -0,0 +1,8 @@ +{ + "slug": "inke-dynamic-table-of-contexts", + "name": "INKE: Dynamic Table of Contexts", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085030" + ] +} diff --git a/data/software/in/inklingreader.json b/data/software/in/inklingreader.json new file mode 100644 index 000000000000..9af2a64e9f1a --- /dev/null +++ b/data/software/in/inklingreader.json @@ -0,0 +1,8 @@ +{ + "slug": "inklingreader", + "name": "Inklingreader", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76185084" + ] +} diff --git a/data/software/in/inkwell.json b/data/software/in/inkwell.json new file mode 100644 index 000000000000..dfce8e49bf99 --- /dev/null +++ b/data/software/in/inkwell.json @@ -0,0 +1,8 @@ +{ + "slug": "inkwell", + "name": "Inkwell", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1496072" + ] +} diff --git a/data/software/in/inl-blacklab.json b/data/software/in/inl-blacklab.json new file mode 100644 index 000000000000..74854a378bca --- /dev/null +++ b/data/software/in/inl-blacklab.json @@ -0,0 +1,8 @@ +{ + "slug": "inl-blacklab", + "name": "INL BlackLab", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085031" + ] +} diff --git a/data/software/in/inmage-dr-scout.json b/data/software/in/inmage-dr-scout.json new file mode 100644 index 000000000000..7c3c2c16a1f3 --- /dev/null +++ b/data/software/in/inmage-dr-scout.json @@ -0,0 +1,11 @@ +{ + "slug": "inmage-dr-scout", + "name": "InMage DR-Scout", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6008777" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/in/innoextract.json b/data/software/in/innoextract.json new file mode 100644 index 000000000000..eaa75ced1250 --- /dev/null +++ b/data/software/in/innoextract.json @@ -0,0 +1,8 @@ +{ + "slug": "innoextract", + "name": "innoextract", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62864127" + ] +} diff --git a/data/software/in/inoerp.json b/data/software/in/inoerp.json new file mode 100644 index 000000000000..4a714f724bb0 --- /dev/null +++ b/data/software/in/inoerp.json @@ -0,0 +1,11 @@ +{ + "slug": "inoerp", + "name": "InoERP", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q48850675" + ], + "programming_languages": [ + "PHP" + ] +} diff --git a/data/software/in/inoki.json b/data/software/in/inoki.json new file mode 100644 index 000000000000..134bdd7e9c51 --- /dev/null +++ b/data/software/in/inoki.json @@ -0,0 +1,11 @@ +{ + "slug": "inoki", + "name": "iNoki", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6036535" + ], + "programming_languages": [ + "Objective-C" + ] +} diff --git a/data/software/in/inotify-tools.json b/data/software/in/inotify-tools.json new file mode 100644 index 000000000000..ce15329a56de --- /dev/null +++ b/data/software/in/inotify-tools.json @@ -0,0 +1,8 @@ +{ + "slug": "inotify-tools", + "name": "inotify-tools", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62864118" + ] +} diff --git a/data/software/in/inpage.json b/data/software/in/inpage.json new file mode 100644 index 000000000000..984cca7b5465 --- /dev/null +++ b/data/software/in/inpage.json @@ -0,0 +1,8 @@ +{ + "slug": "inpage", + "name": "InPage", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6008799" + ] +} diff --git a/data/software/in/inph0-topic-explorer.json b/data/software/in/inph0-topic-explorer.json new file mode 100644 index 000000000000..43f99e0bf504 --- /dev/null +++ b/data/software/in/inph0-topic-explorer.json @@ -0,0 +1,8 @@ +{ + "slug": "inph0-topic-explorer", + "name": "InPh0 Topic Explorer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085033" + ] +} diff --git a/data/software/in/input-director.json b/data/software/in/input-director.json new file mode 100644 index 000000000000..e5273d3d01bf --- /dev/null +++ b/data/software/in/input-director.json @@ -0,0 +1,8 @@ +{ + "slug": "input-director", + "name": "Input Director", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1664328" + ] +} diff --git a/data/software/in/input-output-configuration-program.json b/data/software/in/input-output-configuration-program.json new file mode 100644 index 000000000000..3ef882617491 --- /dev/null +++ b/data/software/in/input-output-configuration-program.json @@ -0,0 +1,8 @@ +{ + "slug": "input-output-configuration-program", + "name": "Input/Output Configuration Program", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6036761" + ] +} diff --git a/data/software/in/inqscribe.json b/data/software/in/inqscribe.json new file mode 100644 index 000000000000..fd6e99d5cc74 --- /dev/null +++ b/data/software/in/inqscribe.json @@ -0,0 +1,14 @@ +{ + "slug": "inqscribe", + "name": "inqscribe", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105076388" + ], + "operating_systems": [ + "macOS" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/in/inquisitor.json b/data/software/in/inquisitor.json new file mode 100644 index 000000000000..f1adfdfac531 --- /dev/null +++ b/data/software/in/inquisitor.json @@ -0,0 +1,8 @@ +{ + "slug": "inquisitor", + "name": "Inquisitor", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6036909" + ] +} diff --git a/data/software/in/inrac-language-compiler.json b/data/software/in/inrac-language-compiler.json new file mode 100644 index 000000000000..d3ceb0536fb7 --- /dev/null +++ b/data/software/in/inrac-language-compiler.json @@ -0,0 +1,8 @@ +{ + "slug": "inrac-language-compiler", + "name": "INRAC Language Compiler", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085034" + ] +} diff --git a/data/software/in/inselect.json b/data/software/in/inselect.json new file mode 100644 index 000000000000..8dc0befae1e2 --- /dev/null +++ b/data/software/in/inselect.json @@ -0,0 +1,11 @@ +{ + "slug": "inselect", + "name": "INSELECT", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138763393" + ], + "developers": [ + "Dmitri Nersesyan" + ] +} diff --git a/data/software/in/insight.json b/data/software/in/insight.json new file mode 100644 index 000000000000..0fe58e4a9fab --- /dev/null +++ b/data/software/in/insight.json @@ -0,0 +1,8 @@ +{ + "slug": "insight", + "name": "Insight", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6038070" + ] +} diff --git a/data/software/in/insightlearn.json b/data/software/in/insightlearn.json new file mode 100644 index 000000000000..5516c699bbd7 --- /dev/null +++ b/data/software/in/insightlearn.json @@ -0,0 +1,8 @@ +{ + "slug": "insightlearn", + "name": "InsightLearn", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139785705" + ] +} diff --git a/data/software/in/inspectit.json b/data/software/in/inspectit.json new file mode 100644 index 000000000000..5e245c895f28 --- /dev/null +++ b/data/software/in/inspectit.json @@ -0,0 +1,14 @@ +{ + "slug": "inspectit", + "name": "InspectIT", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1664609" + ], + "programming_languages": [ + "Java" + ], + "licenses": [ + "Apache License" + ] +} diff --git a/data/software/in/inspectrum.json b/data/software/in/inspectrum.json new file mode 100644 index 000000000000..f83d092fe38a --- /dev/null +++ b/data/software/in/inspectrum.json @@ -0,0 +1,8 @@ +{ + "slug": "inspectrum", + "name": "inspectrum", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974945" + ] +} diff --git a/data/software/in/inssider.json b/data/software/in/inssider.json new file mode 100644 index 000000000000..de58061af353 --- /dev/null +++ b/data/software/in/inssider.json @@ -0,0 +1,12 @@ +{ + "slug": "inssider", + "name": "inSSIDer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3559954" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/software/in/install-mask.json b/data/software/in/install-mask.json new file mode 100644 index 000000000000..b5d390e1c78d --- /dev/null +++ b/data/software/in/install-mask.json @@ -0,0 +1,8 @@ +{ + "slug": "install-mask", + "name": "install-mask", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974946" + ] +} diff --git a/data/software/in/install-xattr.json b/data/software/in/install-xattr.json new file mode 100644 index 000000000000..4f7d4f4cb437 --- /dev/null +++ b/data/software/in/install-xattr.json @@ -0,0 +1,8 @@ +{ + "slug": "install-xattr", + "name": "install-xattr", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974947" + ] +} diff --git a/data/software/in/installanywhere.json b/data/software/in/installanywhere.json new file mode 100644 index 000000000000..fcb6baee35fe --- /dev/null +++ b/data/software/in/installanywhere.json @@ -0,0 +1,8 @@ +{ + "slug": "installanywhere", + "name": "InstallAnywhere", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6038636" + ] +} diff --git a/data/software/in/installaware.json b/data/software/in/installaware.json new file mode 100644 index 000000000000..8ae0042b2834 --- /dev/null +++ b/data/software/in/installaware.json @@ -0,0 +1,8 @@ +{ + "slug": "installaware", + "name": "InstallAware", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11712822" + ] +} diff --git a/data/software/in/installer-app.json b/data/software/in/installer-app.json new file mode 100644 index 000000000000..44d3ec6f03d5 --- /dev/null +++ b/data/software/in/installer-app.json @@ -0,0 +1,11 @@ +{ + "slug": "installer-app", + "name": "Installer.app", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6038666" + ], + "programming_languages": [ + "Objective-C" + ] +} diff --git a/data/software/in/installer-vise.json b/data/software/in/installer-vise.json new file mode 100644 index 000000000000..804ce2716a54 --- /dev/null +++ b/data/software/in/installer-vise.json @@ -0,0 +1,8 @@ +{ + "slug": "installer-vise", + "name": "Installer VISE", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6038659" + ] +} diff --git a/data/software/in/instant-rails.json b/data/software/in/instant-rails.json new file mode 100644 index 000000000000..3669ddc04de4 --- /dev/null +++ b/data/software/in/instant-rails.json @@ -0,0 +1,8 @@ +{ + "slug": "instant-rails", + "name": "Instant Rails", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4041426" + ] +} diff --git a/data/software/in/instant-recall-2-0.json b/data/software/in/instant-recall-2-0.json new file mode 100644 index 000000000000..3efeeb6d3a65 --- /dev/null +++ b/data/software/in/instant-recall-2-0.json @@ -0,0 +1,8 @@ +{ + "slug": "instant-recall-2-0", + "name": "Instant Recall 2.0", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121631715" + ] +} diff --git a/data/software/in/instantatlas.json b/data/software/in/instantatlas.json new file mode 100644 index 000000000000..18cd8844e6f6 --- /dev/null +++ b/data/software/in/instantatlas.json @@ -0,0 +1,8 @@ +{ + "slug": "instantatlas", + "name": "InstantAtlas", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085035" + ] +} diff --git a/data/software/in/instanttv.json b/data/software/in/instanttv.json new file mode 100644 index 000000000000..c5cdc045e939 --- /dev/null +++ b/data/software/in/instanttv.json @@ -0,0 +1,8 @@ +{ + "slug": "instanttv", + "name": "InstantTV", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q55614491" + ] +} diff --git a/data/software/in/instaresume-pro.json b/data/software/in/instaresume-pro.json new file mode 100644 index 000000000000..0455672a404b --- /dev/null +++ b/data/software/in/instaresume-pro.json @@ -0,0 +1,8 @@ +{ + "slug": "instaresume-pro", + "name": "InstaResume.Pro", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139995614" + ] +} diff --git a/data/software/in/instaviz.json b/data/software/in/instaviz.json new file mode 100644 index 000000000000..63ae76929840 --- /dev/null +++ b/data/software/in/instaviz.json @@ -0,0 +1,8 @@ +{ + "slug": "instaviz", + "name": "Instaviz", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085036" + ] +} diff --git a/data/software/in/instruments.json b/data/software/in/instruments.json new file mode 100644 index 000000000000..def6ecb1c99f --- /dev/null +++ b/data/software/in/instruments.json @@ -0,0 +1,14 @@ +{ + "slug": "instruments", + "name": "Instruments", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1665302" + ], + "developers": [ + "Apple Inc." + ], + "operating_systems": [ + "macOS" + ] +} diff --git a/data/software/in/insure.json b/data/software/in/insure.json new file mode 100644 index 000000000000..dc5d666f1f99 --- /dev/null +++ b/data/software/in/insure.json @@ -0,0 +1,11 @@ +{ + "slug": "insure", + "name": "Insure++", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6042396" + ], + "developers": [ + "Parasoft" + ] +} diff --git a/data/software/in/insync.json b/data/software/in/insync.json new file mode 100644 index 000000000000..e3aa9897b376 --- /dev/null +++ b/data/software/in/insync.json @@ -0,0 +1,8 @@ +{ + "slug": "insync", + "name": "Insync", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085037" + ] +} diff --git a/data/software/in/integrated-ballistics-identification-system.json b/data/software/in/integrated-ballistics-identification-system.json new file mode 100644 index 000000000000..c104d5f4728e --- /dev/null +++ b/data/software/in/integrated-ballistics-identification-system.json @@ -0,0 +1,8 @@ +{ + "slug": "integrated-ballistics-identification-system", + "name": "Integrated Ballistics Identification System", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17081125" + ] +} diff --git a/data/software/in/integrated-software-for-imagers-and-spectrometers.json b/data/software/in/integrated-software-for-imagers-and-spectrometers.json new file mode 100644 index 000000000000..afd50752d1e4 --- /dev/null +++ b/data/software/in/integrated-software-for-imagers-and-spectrometers.json @@ -0,0 +1,16 @@ +{ + "slug": "integrated-software-for-imagers-and-spectrometers", + "name": "Integrated Software for Imagers and Spectrometers", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6042979" + ], + "release_date": "1971-01-01", + "developers": [ + "United States Geological Survey" + ], + "operating_systems": [ + "Fedora Linux", + "macOS" + ] +} diff --git a/data/software/in/integraxor-scada.json b/data/software/in/integraxor-scada.json new file mode 100644 index 000000000000..c40e12305415 --- /dev/null +++ b/data/software/in/integraxor-scada.json @@ -0,0 +1,8 @@ +{ + "slug": "integraxor-scada", + "name": "IntegraXor SCADA", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q65072324" + ] +} diff --git a/data/software/in/intel-appup.json b/data/software/in/intel-appup.json new file mode 100644 index 000000000000..db735dcf4ee0 --- /dev/null +++ b/data/software/in/intel-appup.json @@ -0,0 +1,15 @@ +{ + "slug": "intel-appup", + "name": "Intel AppUp", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6043442" + ], + "release_date": "2010-01-01", + "developers": [ + "Intel" + ], + "operating_systems": [ + "Windows 7" + ] +} diff --git a/data/software/in/intel-array-visualizer.json b/data/software/in/intel-array-visualizer.json new file mode 100644 index 000000000000..a157d618c645 --- /dev/null +++ b/data/software/in/intel-array-visualizer.json @@ -0,0 +1,8 @@ +{ + "slug": "intel-array-visualizer", + "name": "Intel Array Visualizer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16895425" + ] +} diff --git a/data/software/in/intel-big-data-analytic-toolkit.json b/data/software/in/intel-big-data-analytic-toolkit.json new file mode 100644 index 000000000000..667e611f1c6d --- /dev/null +++ b/data/software/in/intel-big-data-analytic-toolkit.json @@ -0,0 +1,8 @@ +{ + "slug": "intel-big-data-analytic-toolkit", + "name": "Intel Big Data Analytic Toolkit", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115728575" + ] +} diff --git a/data/software/in/intel-bridge-technology.json b/data/software/in/intel-bridge-technology.json new file mode 100644 index 000000000000..ef8ae10fe701 --- /dev/null +++ b/data/software/in/intel-bridge-technology.json @@ -0,0 +1,11 @@ +{ + "slug": "intel-bridge-technology", + "name": "Intel Bridge Technology", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107338239" + ], + "developers": [ + "Intel" + ] +} diff --git a/data/software/in/intel-lanspool.json b/data/software/in/intel-lanspool.json new file mode 100644 index 000000000000..7a3216e50096 --- /dev/null +++ b/data/software/in/intel-lanspool.json @@ -0,0 +1,11 @@ +{ + "slug": "intel-lanspool", + "name": "Intel LANSpool", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6043487" + ], + "developers": [ + "Intel" + ] +} diff --git a/data/software/in/intel-parallel-advisor.json b/data/software/in/intel-parallel-advisor.json new file mode 100644 index 000000000000..f7c14a45df39 --- /dev/null +++ b/data/software/in/intel-parallel-advisor.json @@ -0,0 +1,11 @@ +{ + "slug": "intel-parallel-advisor", + "name": "Intel Parallel Advisor", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6043518" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/in/intel-parallel-composer.json b/data/software/in/intel-parallel-composer.json new file mode 100644 index 000000000000..787dfb848dcd --- /dev/null +++ b/data/software/in/intel-parallel-composer.json @@ -0,0 +1,8 @@ +{ + "slug": "intel-parallel-composer", + "name": "Intel Parallel Composer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16528437" + ] +} diff --git a/data/software/in/intel-parallel-inspector.json b/data/software/in/intel-parallel-inspector.json new file mode 100644 index 000000000000..bef7648cf1ce --- /dev/null +++ b/data/software/in/intel-parallel-inspector.json @@ -0,0 +1,11 @@ +{ + "slug": "intel-parallel-inspector", + "name": "Intel Parallel Inspector", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4041459" + ], + "developers": [ + "Intel" + ] +} diff --git a/data/software/in/intel-parallel-studio.json b/data/software/in/intel-parallel-studio.json new file mode 100644 index 000000000000..e66597f88ebe --- /dev/null +++ b/data/software/in/intel-parallel-studio.json @@ -0,0 +1,15 @@ +{ + "slug": "intel-parallel-studio", + "name": "Intel Parallel Studio", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4041460" + ], + "developers": [ + "Intel" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/software/in/intel-xdk.json b/data/software/in/intel-xdk.json new file mode 100644 index 000000000000..26cc4057b071 --- /dev/null +++ b/data/software/in/intel-xdk.json @@ -0,0 +1,8 @@ +{ + "slug": "intel-xdk", + "name": "Intel XDK", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25345910" + ] +} diff --git a/data/software/in/intelib.json b/data/software/in/intelib.json new file mode 100644 index 000000000000..5ff99f600744 --- /dev/null +++ b/data/software/in/intelib.json @@ -0,0 +1,8 @@ +{ + "slug": "intelib", + "name": "InteLib", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4041436" + ] +} diff --git a/data/software/in/intellext-watson.json b/data/software/in/intellext-watson.json new file mode 100644 index 000000000000..25cf38303bb8 --- /dev/null +++ b/data/software/in/intellext-watson.json @@ -0,0 +1,8 @@ +{ + "slug": "intellext-watson", + "name": "Intellext Watson", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6043765" + ] +} diff --git a/data/software/in/intelligent-archive.json b/data/software/in/intelligent-archive.json new file mode 100644 index 000000000000..19ee5b5b218e --- /dev/null +++ b/data/software/in/intelligent-archive.json @@ -0,0 +1,8 @@ +{ + "slug": "intelligent-archive", + "name": "Intelligent Archive", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085039" + ] +} diff --git a/data/software/in/intelligent-speech-analyser.json b/data/software/in/intelligent-speech-analyser.json new file mode 100644 index 000000000000..75a5b890340f --- /dev/null +++ b/data/software/in/intelligent-speech-analyser.json @@ -0,0 +1,11 @@ +{ + "slug": "intelligent-speech-analyser", + "name": "Intelligent Speech Analyser", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q31086132" + ], + "operating_systems": [ + "Mac operating system" + ] +} diff --git a/data/software/in/intellipoint.json b/data/software/in/intellipoint.json new file mode 100644 index 000000000000..b795e5934bfe --- /dev/null +++ b/data/software/in/intellipoint.json @@ -0,0 +1,11 @@ +{ + "slug": "intellipoint", + "name": "IntelliPoint", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6043802" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/in/intellistudio.json b/data/software/in/intellistudio.json new file mode 100644 index 000000000000..9a8ef3820d52 --- /dev/null +++ b/data/software/in/intellistudio.json @@ -0,0 +1,11 @@ +{ + "slug": "intellistudio", + "name": "IntelliStudio", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139959944" + ], + "developers": [ + "Nexus Intelligence Advisory" + ] +} diff --git a/data/software/in/intellitar.json b/data/software/in/intellitar.json new file mode 100644 index 000000000000..10032a654b5e --- /dev/null +++ b/data/software/in/intellitar.json @@ -0,0 +1,8 @@ +{ + "slug": "intellitar", + "name": "Intellitar", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6044197" + ] +} diff --git a/data/software/in/intellitype.json b/data/software/in/intellitype.json new file mode 100644 index 000000000000..2230145371e5 --- /dev/null +++ b/data/software/in/intellitype.json @@ -0,0 +1,11 @@ +{ + "slug": "intellitype", + "name": "IntelliType", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6043820" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/in/intent.json b/data/software/in/intent.json new file mode 100644 index 000000000000..0ac76dccc4a0 --- /dev/null +++ b/data/software/in/intent.json @@ -0,0 +1,8 @@ +{ + "slug": "intent", + "name": "Intent", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q90819960" + ] +} diff --git a/data/software/in/interactive-scenario-builder.json b/data/software/in/interactive-scenario-builder.json new file mode 100644 index 000000000000..26b8636977ed --- /dev/null +++ b/data/software/in/interactive-scenario-builder.json @@ -0,0 +1,18 @@ +{ + "slug": "interactive-scenario-builder", + "name": "Interactive Scenario Builder", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6045321" + ], + "developers": [ + "Naval Research Laboratory Tactical Electronic Warfare Division", + "United States Naval Research Laboratory" + ], + "operating_systems": [ + "cross-platform" + ], + "programming_languages": [ + "Java" + ] +} diff --git a/data/software/in/interactive-tree-of-life.json b/data/software/in/interactive-tree-of-life.json new file mode 100644 index 000000000000..09287ee66b83 --- /dev/null +++ b/data/software/in/interactive-tree-of-life.json @@ -0,0 +1,8 @@ +{ + "slug": "interactive-tree-of-life", + "name": "Interactive Tree of Life", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112123664" + ] +} diff --git a/data/software/in/interactual-player.json b/data/software/in/interactual-player.json new file mode 100644 index 000000000000..dab8e3f8f12b --- /dev/null +++ b/data/software/in/interactual-player.json @@ -0,0 +1,8 @@ +{ + "slug": "interactual-player", + "name": "InterActual Player", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6044813" + ] +} diff --git a/data/software/in/interarchy.json b/data/software/in/interarchy.json new file mode 100644 index 000000000000..f639106bba71 --- /dev/null +++ b/data/software/in/interarchy.json @@ -0,0 +1,8 @@ +{ + "slug": "interarchy", + "name": "Interarchy", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6045496" + ] +} diff --git a/data/software/in/interbase.json b/data/software/in/interbase.json new file mode 100644 index 000000000000..f6740817a8a2 --- /dev/null +++ b/data/software/in/interbase.json @@ -0,0 +1,14 @@ +{ + "slug": "interbase", + "name": "InterBase", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q166751" + ], + "developers": [ + "Embarcadero Technologies" + ], + "operating_systems": [ + "Mac operating system" + ] +} diff --git a/data/software/in/interior-designer.json b/data/software/in/interior-designer.json new file mode 100644 index 000000000000..2f2fda42f530 --- /dev/null +++ b/data/software/in/interior-designer.json @@ -0,0 +1,12 @@ +{ + "slug": "interior-designer", + "name": "Interior Designer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130711306" + ], + "release_date": "2024-10-25", + "genres": [ + "simulation video game" + ] +} diff --git a/data/software/in/interlnk.json b/data/software/in/interlnk.json new file mode 100644 index 000000000000..18a4d3490b18 --- /dev/null +++ b/data/software/in/interlnk.json @@ -0,0 +1,8 @@ +{ + "slug": "interlnk", + "name": "Interlnk", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131465743" + ] +} diff --git a/data/software/in/internet-connect.json b/data/software/in/internet-connect.json new file mode 100644 index 000000000000..35294e441687 --- /dev/null +++ b/data/software/in/internet-connect.json @@ -0,0 +1,11 @@ +{ + "slug": "internet-connect", + "name": "Internet Connect", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3687050" + ], + "developers": [ + "Apple Inc." + ] +} diff --git a/data/software/in/internet-explorer-12.json b/data/software/in/internet-explorer-12.json new file mode 100644 index 000000000000..7740531c7b83 --- /dev/null +++ b/data/software/in/internet-explorer-12.json @@ -0,0 +1,8 @@ +{ + "slug": "internet-explorer-12", + "name": "Internet Explorer 12", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17300267" + ] +} diff --git a/data/software/in/internet-explorer-platform-preview.json b/data/software/in/internet-explorer-platform-preview.json new file mode 100644 index 000000000000..88d658cf4136 --- /dev/null +++ b/data/software/in/internet-explorer-platform-preview.json @@ -0,0 +1,8 @@ +{ + "slug": "internet-explorer-platform-preview", + "name": "Internet Explorer Platform Preview", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4020352" + ] +} diff --git a/data/software/in/internet-intranet-input-method-framework.json b/data/software/in/internet-intranet-input-method-framework.json new file mode 100644 index 000000000000..93e640cc8db9 --- /dev/null +++ b/data/software/in/internet-intranet-input-method-framework.json @@ -0,0 +1,11 @@ +{ + "slug": "internet-intranet-input-method-framework", + "name": "Internet/Intranet Input Method Framework", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6055429" + ], + "developers": [ + "Hideki Hiura" + ] +} diff --git a/data/software/in/internet-web-browser.json b/data/software/in/internet-web-browser.json new file mode 100644 index 000000000000..1900f4a95321 --- /dev/null +++ b/data/software/in/internet-web-browser.json @@ -0,0 +1,8 @@ +{ + "slug": "internet-web-browser", + "name": "Internet (web browser)", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q55640051" + ] +} diff --git a/data/software/in/interplanetary-wayback.json b/data/software/in/interplanetary-wayback.json new file mode 100644 index 000000000000..ee3e57c32751 --- /dev/null +++ b/data/software/in/interplanetary-wayback.json @@ -0,0 +1,14 @@ +{ + "slug": "interplanetary-wayback", + "name": "InterPlanetary Wayback", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136028260" + ], + "programming_languages": [ + "Python" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/in/intervideo-windvr.json b/data/software/in/intervideo-windvr.json new file mode 100644 index 000000000000..445f67aeb6e0 --- /dev/null +++ b/data/software/in/intervideo-windvr.json @@ -0,0 +1,11 @@ +{ + "slug": "intervideo-windvr", + "name": "InterVideo WinDVR", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6045016" + ], + "developers": [ + "InterVideo" + ] +} diff --git a/data/software/in/intex.json b/data/software/in/intex.json new file mode 100644 index 000000000000..2d36b4fcb118 --- /dev/null +++ b/data/software/in/intex.json @@ -0,0 +1,8 @@ +{ + "slug": "intex", + "name": "INTEX", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085040" + ] +} diff --git a/data/software/in/intext.json b/data/software/in/intext.json new file mode 100644 index 000000000000..3b4871dc69bf --- /dev/null +++ b/data/software/in/intext.json @@ -0,0 +1,8 @@ +{ + "slug": "intext", + "name": "InTEXT", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085041" + ] +} diff --git a/data/software/in/inthe-am.json b/data/software/in/inthe-am.json new file mode 100644 index 000000000000..f796c72f68a3 --- /dev/null +++ b/data/software/in/inthe-am.json @@ -0,0 +1,8 @@ +{ + "slug": "inthe-am", + "name": "Inthe.AM", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117429520" + ] +} diff --git a/data/software/in/intorel.json b/data/software/in/intorel.json new file mode 100644 index 000000000000..9a372be05189 --- /dev/null +++ b/data/software/in/intorel.json @@ -0,0 +1,11 @@ +{ + "slug": "intorel", + "name": "Intorel", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6058249" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/in/intpakx.json b/data/software/in/intpakx.json new file mode 100644 index 000000000000..efab3bd8ab51 --- /dev/null +++ b/data/software/in/intpakx.json @@ -0,0 +1,8 @@ +{ + "slug": "intpakx", + "name": "intpakX", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123190884" + ] +} diff --git a/data/software/in/intrakey-access-time.json b/data/software/in/intrakey-access-time.json new file mode 100644 index 000000000000..4415ed2010b7 --- /dev/null +++ b/data/software/in/intrakey-access-time.json @@ -0,0 +1,11 @@ +{ + "slug": "intrakey-access-time", + "name": "IntraKey ACCESS & TIME", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137324336" + ], + "developers": [ + "SECANDA Systems AG" + ] +} diff --git a/data/software/in/inventor-labs.json b/data/software/in/inventor-labs.json new file mode 100644 index 000000000000..90ba0bd99298 --- /dev/null +++ b/data/software/in/inventor-labs.json @@ -0,0 +1,8 @@ +{ + "slug": "inventor-labs", + "name": "Inventor Labs", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134303388" + ] +} diff --git a/data/software/in/inventory-planner-by-sage.json b/data/software/in/inventory-planner-by-sage.json new file mode 100644 index 000000000000..1c3439c818c2 --- /dev/null +++ b/data/software/in/inventory-planner-by-sage.json @@ -0,0 +1,8 @@ +{ + "slug": "inventory-planner-by-sage", + "name": "Inventory Planner by Sage", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120645575" + ] +} diff --git a/data/software/in/inverse.json b/data/software/in/inverse.json new file mode 100644 index 000000000000..890e1c9847cf --- /dev/null +++ b/data/software/in/inverse.json @@ -0,0 +1,8 @@ +{ + "slug": "inverse", + "name": "Inverse", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6060335" + ] +} diff --git a/data/software/in/invest-like.json b/data/software/in/invest-like.json new file mode 100644 index 000000000000..11de3ba551c4 --- /dev/null +++ b/data/software/in/invest-like.json @@ -0,0 +1,17 @@ +{ + "slug": "invest-like", + "name": "invest-like", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139901465" + ], + "operating_systems": [ + "web browser" + ], + "licenses": [ + "proprietary license" + ], + "genres": [ + "financial software" + ] +} diff --git a/data/software/in/invision-community.json b/data/software/in/invision-community.json new file mode 100644 index 000000000000..bed6726325d3 --- /dev/null +++ b/data/software/in/invision-community.json @@ -0,0 +1,11 @@ +{ + "slug": "invision-community", + "name": "Invision Community", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1422888" + ], + "programming_languages": [ + "PHP" + ] +} diff --git a/data/software/in/invoice-ninja.json b/data/software/in/invoice-ninja.json new file mode 100644 index 000000000000..7a1d75264fe6 --- /dev/null +++ b/data/software/in/invoice-ninja.json @@ -0,0 +1,8 @@ +{ + "slug": "invoice-ninja", + "name": "Invoice Ninja", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115940042" + ] +} diff --git a/data/software/in/invoiceai.json b/data/software/in/invoiceai.json new file mode 100644 index 000000000000..d891f551b10b --- /dev/null +++ b/data/software/in/invoiceai.json @@ -0,0 +1,8 @@ +{ + "slug": "invoiceai", + "name": "InvoiceAI", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139511999" + ] +} diff --git a/data/software/io/iobber.json b/data/software/io/iobber.json new file mode 100644 index 000000000000..e0d7aa216c27 --- /dev/null +++ b/data/software/io/iobber.json @@ -0,0 +1,8 @@ +{ + "slug": "iobber", + "name": "Iobber", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085042" + ] +} diff --git a/data/software/io/iobit-protected-folder.json b/data/software/io/iobit-protected-folder.json new file mode 100644 index 000000000000..79cf7a5a89bd --- /dev/null +++ b/data/software/io/iobit-protected-folder.json @@ -0,0 +1,11 @@ +{ + "slug": "iobit-protected-folder", + "name": "IObit Protected Folder", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16528060" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/io/iobit-start-menu.json b/data/software/io/iobit-start-menu.json new file mode 100644 index 000000000000..a0cc0d96cc68 --- /dev/null +++ b/data/software/io/iobit-start-menu.json @@ -0,0 +1,11 @@ +{ + "slug": "iobit-start-menu", + "name": "IObit Start Menu", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16528065" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/io/iobit-winmetro.json b/data/software/io/iobit-winmetro.json new file mode 100644 index 000000000000..fc6e416b8ea6 --- /dev/null +++ b/data/software/io/iobit-winmetro.json @@ -0,0 +1,11 @@ +{ + "slug": "iobit-winmetro", + "name": "IObit WinMetro", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16528080" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/io/iometer.json b/data/software/io/iometer.json new file mode 100644 index 000000000000..f6e8c18f1f01 --- /dev/null +++ b/data/software/io/iometer.json @@ -0,0 +1,14 @@ +{ + "slug": "iometer", + "name": "Iometer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4041560" + ], + "developers": [ + "Intel" + ], + "licenses": [ + "Intel Open Source License" + ] +} diff --git a/data/software/io/ion.json b/data/software/io/ion.json new file mode 100644 index 000000000000..dfa10bee0c3b --- /dev/null +++ b/data/software/io/ion.json @@ -0,0 +1,14 @@ +{ + "slug": "ion", + "name": "ION", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108755079" + ], + "developers": [ + "Decentralized Identity Foundation" + ], + "licenses": [ + "Apache Software License 2.0" + ] +} diff --git a/data/software/io/ionix.json b/data/software/io/ionix.json new file mode 100644 index 000000000000..e8e323747833 --- /dev/null +++ b/data/software/io/ionix.json @@ -0,0 +1,8 @@ +{ + "slug": "ionix", + "name": "IONIX", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138795918" + ] +} diff --git a/data/software/io/ionroad.json b/data/software/io/ionroad.json new file mode 100644 index 000000000000..1040a97cf6b0 --- /dev/null +++ b/data/software/io/ionroad.json @@ -0,0 +1,9 @@ +{ + "slug": "ionroad", + "name": "iOnRoad", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5972941" + ], + "release_date": "2011-01-01" +} diff --git a/data/software/io/ios-app-approvals.json b/data/software/io/ios-app-approvals.json new file mode 100644 index 000000000000..375b82ef5666 --- /dev/null +++ b/data/software/io/ios-app-approvals.json @@ -0,0 +1,11 @@ +{ + "slug": "ios-app-approvals", + "name": "iOS app approvals", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4781745" + ], + "developers": [ + "Apple Inc." + ] +} diff --git a/data/software/io/iotivity.json b/data/software/io/iotivity.json new file mode 100644 index 000000000000..4a49f95ff537 --- /dev/null +++ b/data/software/io/iotivity.json @@ -0,0 +1,11 @@ +{ + "slug": "iotivity", + "name": "IoTivity", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22669989" + ], + "licenses": [ + "Apache License" + ] +} diff --git a/data/software/io/iotop.json b/data/software/io/iotop.json new file mode 100644 index 000000000000..8c5918347a0e --- /dev/null +++ b/data/software/io/iotop.json @@ -0,0 +1,8 @@ +{ + "slug": "iotop", + "name": "Iotop", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62864097" + ] +} diff --git a/data/software/io/iozone.json b/data/software/io/iozone.json new file mode 100644 index 000000000000..3352964f2f3c --- /dev/null +++ b/data/software/io/iozone.json @@ -0,0 +1,8 @@ +{ + "slug": "iozone", + "name": "IOzone", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16997281" + ] +} diff --git a/data/software/ip/ipcalc.json b/data/software/ip/ipcalc.json new file mode 100644 index 000000000000..1661659ee885 --- /dev/null +++ b/data/software/ip/ipcalc.json @@ -0,0 +1,8 @@ +{ + "slug": "ipcalc", + "name": "ipcalc", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62864091" + ] +} diff --git a/data/software/ip/ipdbplugin.json b/data/software/ip/ipdbplugin.json new file mode 100644 index 000000000000..d94c85f56f7e --- /dev/null +++ b/data/software/ip/ipdbplugin.json @@ -0,0 +1,8 @@ +{ + "slug": "ipdbplugin", + "name": "ipdbplugin", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974948" + ] +} diff --git a/data/software/ip/ipdirector.json b/data/software/ip/ipdirector.json new file mode 100644 index 000000000000..a97524a148f2 --- /dev/null +++ b/data/software/ip/ipdirector.json @@ -0,0 +1,11 @@ +{ + "slug": "ipdirector", + "name": "IPDirector", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3146795" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/ip/iped-digital-forensic-tool.json b/data/software/ip/iped-digital-forensic-tool.json new file mode 100644 index 000000000000..19fd83b355b8 --- /dev/null +++ b/data/software/ip/iped-digital-forensic-tool.json @@ -0,0 +1,12 @@ +{ + "slug": "iped-digital-forensic-tool", + "name": "IPED Digital Forensic Tool", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137682753" + ], + "release_date": "2015-06-12", + "licenses": [ + "GNU General Public License" + ] +} diff --git a/data/software/ip/ipgen.json b/data/software/ip/ipgen.json new file mode 100644 index 000000000000..d337fbbd206e --- /dev/null +++ b/data/software/ip/ipgen.json @@ -0,0 +1,8 @@ +{ + "slug": "ipgen", + "name": "ipgen", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974949" + ] +} diff --git a/data/software/ip/ipkungfu.json b/data/software/ip/ipkungfu.json new file mode 100644 index 000000000000..1d6b897224e4 --- /dev/null +++ b/data/software/ip/ipkungfu.json @@ -0,0 +1,8 @@ +{ + "slug": "ipkungfu", + "name": "ipkungfu", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62864072" + ] +} diff --git a/data/software/ip/ipm.json b/data/software/ip/ipm.json new file mode 100644 index 000000000000..6e350f29192c --- /dev/null +++ b/data/software/ip/ipm.json @@ -0,0 +1,8 @@ +{ + "slug": "ipm", + "name": "IPM", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5973050" + ] +} diff --git a/data/software/ip/ipop.json b/data/software/ip/ipop.json new file mode 100644 index 000000000000..3d7cc3cc90a2 --- /dev/null +++ b/data/software/ip/ipop.json @@ -0,0 +1,11 @@ +{ + "slug": "ipop", + "name": "IPOP", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28957020" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/ip/ippolit.json b/data/software/ip/ippolit.json new file mode 100644 index 000000000000..94f50cda19a6 --- /dev/null +++ b/data/software/ip/ippolit.json @@ -0,0 +1,15 @@ +{ + "slug": "ippolit", + "name": "IPPOLIT", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1654332" + ], + "release_date": "2009-01-01", + "operating_systems": [ + "Microsoft Windows" + ], + "licenses": [ + "public-domain software" + ] +} diff --git a/data/software/ip/ipsoft-amelia.json b/data/software/ip/ipsoft-amelia.json new file mode 100644 index 000000000000..edee9092ff7f --- /dev/null +++ b/data/software/ip/ipsoft-amelia.json @@ -0,0 +1,11 @@ +{ + "slug": "ipsoft-amelia", + "name": "IPsoft Amelia", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q23924613" + ], + "developers": [ + "IPsoft Inc." + ] +} diff --git a/data/software/ip/iptraf.json b/data/software/ip/iptraf.json new file mode 100644 index 000000000000..e2822d65398c --- /dev/null +++ b/data/software/ip/iptraf.json @@ -0,0 +1,13 @@ +{ + "slug": "iptraf", + "name": "IPTraf", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1654347" + ], + "licenses": [ + "GNU Lesser General Public License", + "BSD licenses", + "GNU General Public License" + ] +} diff --git a/data/software/ip/ipulse.json b/data/software/ip/ipulse.json new file mode 100644 index 000000000000..e26fdfaf8abb --- /dev/null +++ b/data/software/ip/ipulse.json @@ -0,0 +1,14 @@ +{ + "slug": "ipulse", + "name": "iPulse", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5973280" + ], + "developers": [ + "The Iconfactory" + ], + "operating_systems": [ + "macOS" + ] +} diff --git a/data/software/ip/iputils.json b/data/software/ip/iputils.json new file mode 100644 index 000000000000..76337883378a --- /dev/null +++ b/data/software/ip/iputils.json @@ -0,0 +1,8 @@ +{ + "slug": "iputils", + "name": "iputils", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974952" + ] +} diff --git a/data/software/ip/ipv6toolkit.json b/data/software/ip/ipv6toolkit.json new file mode 100644 index 000000000000..1ed23cb4850f --- /dev/null +++ b/data/software/ip/ipv6toolkit.json @@ -0,0 +1,8 @@ +{ + "slug": "ipv6toolkit", + "name": "ipv6toolkit", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974953" + ] +} diff --git a/data/software/iq/iq-tree.json b/data/software/iq/iq-tree.json new file mode 100644 index 000000000000..ff4d05ae9504 --- /dev/null +++ b/data/software/iq/iq-tree.json @@ -0,0 +1,8 @@ +{ + "slug": "iq-tree", + "name": "IQ-TREE", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113018370" + ] +} diff --git a/data/software/iq/iqtell.json b/data/software/iq/iqtell.json new file mode 100644 index 000000000000..73f297c44d6f --- /dev/null +++ b/data/software/iq/iqtell.json @@ -0,0 +1,8 @@ +{ + "slug": "iqtell", + "name": "IQTELL", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22905897" + ] +} diff --git a/data/software/ir/iraf.json b/data/software/ir/iraf.json new file mode 100644 index 000000000000..c4deab0a9ee8 --- /dev/null +++ b/data/software/ir/iraf.json @@ -0,0 +1,27 @@ +{ + "slug": "iraf", + "name": "IRAF", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3051072" + ], + "release_date": "1986-02-01", + "developers": [ + "NOIRLab", + "Ole Streicher", + "National Optical Astronomy Observatory" + ], + "operating_systems": [ + "Hurd", + "FreeBSD", + "macOS" + ], + "programming_languages": [ + "Fortran", + "Ratfor", + "SPP" + ], + "licenses": [ + "open-source license" + ] +} diff --git a/data/software/ir/irc-cloud.json b/data/software/ir/irc-cloud.json new file mode 100644 index 000000000000..747f14fec6f6 --- /dev/null +++ b/data/software/ir/irc-cloud.json @@ -0,0 +1,8 @@ +{ + "slug": "irc-cloud", + "name": "IRC Cloud", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q129820441" + ] +} diff --git a/data/software/ir/irccloud.json b/data/software/ir/irccloud.json new file mode 100644 index 000000000000..18bec44d5fc9 --- /dev/null +++ b/data/software/ir/irccloud.json @@ -0,0 +1,8 @@ +{ + "slug": "irccloud", + "name": "IRCCloud", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q59771337" + ] +} diff --git a/data/software/ir/irip.json b/data/software/ir/irip.json new file mode 100644 index 000000000000..d72ba8bd23f7 --- /dev/null +++ b/data/software/ir/irip.json @@ -0,0 +1,11 @@ +{ + "slug": "irip", + "name": "iRip", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5973664" + ], + "developers": [ + "The Little App Factory" + ] +} diff --git a/data/software/ir/iris-browser.json b/data/software/ir/iris-browser.json new file mode 100644 index 000000000000..0e91108b987d --- /dev/null +++ b/data/software/ir/iris-browser.json @@ -0,0 +1,11 @@ +{ + "slug": "iris-browser", + "name": "Iris Browser", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3511904" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/ir/iriver-h100-series.json b/data/software/ir/iriver-h100-series.json new file mode 100644 index 000000000000..2d20d602cf5a --- /dev/null +++ b/data/software/ir/iriver-h100-series.json @@ -0,0 +1,8 @@ +{ + "slug": "iriver-h100-series", + "name": "iriver H100 series", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6071883" + ] +} diff --git a/data/software/ir/iriver-plus.json b/data/software/ir/iriver-plus.json new file mode 100644 index 000000000000..f40b1212d585 --- /dev/null +++ b/data/software/ir/iriver-plus.json @@ -0,0 +1,11 @@ +{ + "slug": "iriver-plus", + "name": "iriver plus", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11224888" + ], + "developers": [ + "IRIVER" + ] +} diff --git a/data/software/ir/ironcad-q21043323.json b/data/software/ir/ironcad-q21043323.json new file mode 100644 index 000000000000..6b88ab0a9e49 --- /dev/null +++ b/data/software/ir/ironcad-q21043323.json @@ -0,0 +1,8 @@ +{ + "slug": "ironcad-q21043323", + "name": "IRONCAD", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q21043323" + ] +} diff --git a/data/software/ir/ironcad.json b/data/software/ir/ironcad.json new file mode 100644 index 000000000000..05dba191ae2f --- /dev/null +++ b/data/software/ir/ironcad.json @@ -0,0 +1,17 @@ +{ + "slug": "ironcad", + "name": "IronCAD", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4041614" + ], + "developers": [ + "IronCAD" + ], + "operating_systems": [ + "Microsoft Windows" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/ir/irows.json b/data/software/ir/irows.json new file mode 100644 index 000000000000..2d63df5a4c96 --- /dev/null +++ b/data/software/ir/irows.json @@ -0,0 +1,8 @@ +{ + "slug": "irows", + "name": "iRows", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5973678" + ] +} diff --git a/data/software/ir/irredit.json b/data/software/ir/irredit.json new file mode 100644 index 000000000000..81585ca6a8f4 --- /dev/null +++ b/data/software/ir/irredit.json @@ -0,0 +1,8 @@ +{ + "slug": "irredit", + "name": "IrrEdit", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16252928" + ] +} diff --git a/data/software/ir/irusoft.json b/data/software/ir/irusoft.json new file mode 100644 index 000000000000..ccab494450ef --- /dev/null +++ b/data/software/ir/irusoft.json @@ -0,0 +1,8 @@ +{ + "slug": "irusoft", + "name": "IruSoft", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112673171" + ] +} diff --git a/data/software/is/isaac-dynamics.json b/data/software/is/isaac-dynamics.json new file mode 100644 index 000000000000..4c5af590df46 --- /dev/null +++ b/data/software/is/isaac-dynamics.json @@ -0,0 +1,11 @@ +{ + "slug": "isaac-dynamics", + "name": "Isaac dynamics", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25041988" + ], + "programming_languages": [ + "Java" + ] +} diff --git a/data/software/is/isaviz.json b/data/software/is/isaviz.json new file mode 100644 index 000000000000..00e60ef3b464 --- /dev/null +++ b/data/software/is/isaviz.json @@ -0,0 +1,8 @@ +{ + "slug": "isaviz", + "name": "IsaViz", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085043" + ] +} diff --git a/data/software/is/isbem.json b/data/software/is/isbem.json new file mode 100644 index 000000000000..04cfb9d22f9f --- /dev/null +++ b/data/software/is/isbem.json @@ -0,0 +1,8 @@ +{ + "slug": "isbem", + "name": "ISBEM", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5973767" + ] +} diff --git a/data/software/is/iscience-maps.json b/data/software/is/iscience-maps.json new file mode 100644 index 000000000000..af4c6135d4be --- /dev/null +++ b/data/software/is/iscience-maps.json @@ -0,0 +1,8 @@ +{ + "slug": "iscience-maps", + "name": "iScience Maps", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087819" + ] +} diff --git a/data/software/is/isconf.json b/data/software/is/isconf.json new file mode 100644 index 000000000000..e063123cf328 --- /dev/null +++ b/data/software/is/isconf.json @@ -0,0 +1,8 @@ +{ + "slug": "isconf", + "name": "ISconf", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5974627" + ] +} diff --git a/data/software/is/isdoc.json b/data/software/is/isdoc.json new file mode 100644 index 000000000000..fa348acef1cf --- /dev/null +++ b/data/software/is/isdoc.json @@ -0,0 +1,8 @@ +{ + "slug": "isdoc", + "name": "ISDOC", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8451768" + ] +} diff --git a/data/software/is/ishowu.json b/data/software/is/ishowu.json new file mode 100644 index 000000000000..6c2cc4fc0b40 --- /dev/null +++ b/data/software/is/ishowu.json @@ -0,0 +1,8 @@ +{ + "slug": "ishowu", + "name": "iShowU", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085044" + ] +} diff --git a/data/software/is/isilo.json b/data/software/is/isilo.json new file mode 100644 index 000000000000..7811c019a8de --- /dev/null +++ b/data/software/is/isilo.json @@ -0,0 +1,8 @@ +{ + "slug": "isilo", + "name": "iSilo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16254837" + ] +} diff --git a/data/software/is/isimotor.json b/data/software/is/isimotor.json new file mode 100644 index 000000000000..c80a0b46f5d0 --- /dev/null +++ b/data/software/is/isimotor.json @@ -0,0 +1,8 @@ +{ + "slug": "isimotor", + "name": "isiMotor", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5974002" + ] +} diff --git a/data/software/is/isis-draw.json b/data/software/is/isis-draw.json new file mode 100644 index 000000000000..da5b3514add4 --- /dev/null +++ b/data/software/is/isis-draw.json @@ -0,0 +1,11 @@ +{ + "slug": "isis-draw", + "name": "ISIS/Draw", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3146897" + ], + "developers": [ + "MDL Information Systems" + ] +} diff --git a/data/software/is/islam-360.json b/data/software/is/islam-360.json new file mode 100644 index 000000000000..22d756b6bd99 --- /dev/null +++ b/data/software/is/islam-360.json @@ -0,0 +1,22 @@ +{ + "slug": "islam-360", + "name": "Islam 360", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q92914468" + ], + "release_date": "2015-06-29", + "developers": [ + "Zahid Hussain Chihpa" + ], + "publishers": [ + "Zahid Hussain Chihpa" + ], + "operating_systems": [ + "iOS", + "Microsoft Windows" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/is/isobuster.json b/data/software/is/isobuster.json new file mode 100644 index 000000000000..dcb96b825e77 --- /dev/null +++ b/data/software/is/isobuster.json @@ -0,0 +1,13 @@ +{ + "slug": "isobuster", + "name": "IsoBuster", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q304733" + ], + "operating_systems": [ + "Windows 11", + "Windows Server 2003", + "Windows 7" + ] +} diff --git a/data/software/is/isodraft.json b/data/software/is/isodraft.json new file mode 100644 index 000000000000..e1a7a87883ef --- /dev/null +++ b/data/software/is/isodraft.json @@ -0,0 +1,8 @@ +{ + "slug": "isodraft", + "name": "ISODraft", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139849278" + ] +} diff --git a/data/software/is/ispc.json b/data/software/is/ispc.json new file mode 100644 index 000000000000..ab7bffe9cbf7 --- /dev/null +++ b/data/software/is/ispc.json @@ -0,0 +1,14 @@ +{ + "slug": "ispc", + "name": "ispc", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974954" + ], + "developers": [ + "Intel" + ], + "licenses": [ + "3-clause BSD License" + ] +} diff --git a/data/software/is/ispcp.json b/data/software/is/ispcp.json new file mode 100644 index 000000000000..bcc9f530278f --- /dev/null +++ b/data/software/is/ispcp.json @@ -0,0 +1,12 @@ +{ + "slug": "ispcp", + "name": "IspCP", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q310711" + ], + "licenses": [ + "Mozilla Public License", + "GNU General Public License" + ] +} diff --git a/data/software/is/ispy.json b/data/software/is/ispy.json new file mode 100644 index 000000000000..5c698f7fd664 --- /dev/null +++ b/data/software/is/ispy.json @@ -0,0 +1,8 @@ +{ + "slug": "ispy", + "name": "iSpy", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q56314831" + ] +} diff --git a/data/software/is/issp-galaxy-classifier.json b/data/software/is/issp-galaxy-classifier.json new file mode 100644 index 000000000000..8168fef602ba --- /dev/null +++ b/data/software/is/issp-galaxy-classifier.json @@ -0,0 +1,14 @@ +{ + "slug": "issp-galaxy-classifier", + "name": "ISSP Galaxy Classifier", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138037922" + ], + "developers": [ + "Andrey Sergeevich Murdasov" + ], + "programming_languages": [ + "Python" + ] +} diff --git a/data/software/is/issue-discovery.json b/data/software/is/issue-discovery.json new file mode 100644 index 000000000000..1dc9757b351a --- /dev/null +++ b/data/software/is/issue-discovery.json @@ -0,0 +1,8 @@ +{ + "slug": "issue-discovery", + "name": "Issue Discovery", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085046" + ] +} diff --git a/data/software/is/issuecrawler.json b/data/software/is/issuecrawler.json new file mode 100644 index 000000000000..202df559632b --- /dev/null +++ b/data/software/is/issuecrawler.json @@ -0,0 +1,8 @@ +{ + "slug": "issuecrawler", + "name": "Issuecrawler", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085045" + ] +} diff --git a/data/software/is/issuelab.json b/data/software/is/issuelab.json new file mode 100644 index 000000000000..eb7736af7e25 --- /dev/null +++ b/data/software/is/issuelab.json @@ -0,0 +1,8 @@ +{ + "slug": "issuelab", + "name": "IssueLab", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085048" + ] +} diff --git a/data/software/is/istudio-publisher.json b/data/software/is/istudio-publisher.json new file mode 100644 index 000000000000..36870ac7d344 --- /dev/null +++ b/data/software/is/istudio-publisher.json @@ -0,0 +1,8 @@ +{ + "slug": "istudio-publisher", + "name": "IStudio Publisher", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5974678" + ] +} diff --git a/data/software/is/istumbler.json b/data/software/is/istumbler.json new file mode 100644 index 000000000000..12c46f04c6bc --- /dev/null +++ b/data/software/is/istumbler.json @@ -0,0 +1,8 @@ +{ + "slug": "istumbler", + "name": "iStumbler", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q291017" + ] +} diff --git a/data/software/is/isyvmon.json b/data/software/is/isyvmon.json new file mode 100644 index 000000000000..e369ef62dac6 --- /dev/null +++ b/data/software/is/isyvmon.json @@ -0,0 +1,8 @@ +{ + "slug": "isyvmon", + "name": "Isyvmon", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6089581" + ] +} diff --git a/data/software/it/itecad.json b/data/software/it/itecad.json new file mode 100644 index 000000000000..1be1e602fdd7 --- /dev/null +++ b/data/software/it/itecad.json @@ -0,0 +1,8 @@ +{ + "slug": "itecad", + "name": "Itecad", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3612053" + ] +} diff --git a/data/software/it/itemis-analyze.json b/data/software/it/itemis-analyze.json new file mode 100644 index 000000000000..ef12cc23d580 --- /dev/null +++ b/data/software/it/itemis-analyze.json @@ -0,0 +1,16 @@ +{ + "slug": "itemis-analyze", + "name": "Itemis Analyze", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136471477" + ], + "release_date": "2012-01-01", + "developers": [ + "itemis" + ], + "operating_systems": [ + "Mac operating system", + "Microsoft Windows" + ] +} diff --git a/data/software/it/iterative-template-library.json b/data/software/it/iterative-template-library.json new file mode 100644 index 000000000000..b708ed27d2a9 --- /dev/null +++ b/data/software/it/iterative-template-library.json @@ -0,0 +1,8 @@ +{ + "slug": "iterative-template-library", + "name": "Iterative Template Library", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6094408" + ] +} diff --git a/data/software/it/itex2mml.json b/data/software/it/itex2mml.json new file mode 100644 index 000000000000..2df0a418dd77 --- /dev/null +++ b/data/software/it/itex2mml.json @@ -0,0 +1,8 @@ +{ + "slug": "itex2mml", + "name": "itex2mml", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065044" + ] +} diff --git a/data/software/it/itunes-connect.json b/data/software/it/itunes-connect.json new file mode 100644 index 000000000000..60747c461073 --- /dev/null +++ b/data/software/it/itunes-connect.json @@ -0,0 +1,8 @@ +{ + "slug": "itunes-connect", + "name": "iTunes Connect", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16973301" + ] +} diff --git a/data/software/it/itunes-lp.json b/data/software/it/itunes-lp.json new file mode 100644 index 000000000000..1ee998218d40 --- /dev/null +++ b/data/software/it/itunes-lp.json @@ -0,0 +1,12 @@ +{ + "slug": "itunes-lp", + "name": "iTunes LP", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1946001" + ], + "release_date": "2009-01-01", + "developers": [ + "Apple Inc." + ] +} diff --git a/data/software/it/itunescyrfix.json b/data/software/it/itunescyrfix.json new file mode 100644 index 000000000000..c30f57e6e081 --- /dev/null +++ b/data/software/it/itunescyrfix.json @@ -0,0 +1,8 @@ +{ + "slug": "itunescyrfix", + "name": "iTunesCyrFix", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085049" + ] +} diff --git a/data/software/it/itvx.json b/data/software/it/itvx.json new file mode 100644 index 000000000000..12d85fd1c8c6 --- /dev/null +++ b/data/software/it/itvx.json @@ -0,0 +1,15 @@ +{ + "slug": "itvx", + "name": "ITVX", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5975124" + ], + "release_date": "2008-12-05", + "developers": [ + "ITV plc" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/iu/iuclid.json b/data/software/iu/iuclid.json new file mode 100644 index 000000000000..757442c85d62 --- /dev/null +++ b/data/software/iu/iuclid.json @@ -0,0 +1,11 @@ +{ + "slug": "iuclid", + "name": "IUCLID", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q726956" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/iu/iusask.json b/data/software/iu/iusask.json new file mode 100644 index 000000000000..1468b969793c --- /dev/null +++ b/data/software/iu/iusask.json @@ -0,0 +1,8 @@ +{ + "slug": "iusask", + "name": "iUsask", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22097441" + ] +} diff --git a/data/software/iv/ivocaloid.json b/data/software/iv/ivocaloid.json new file mode 100644 index 000000000000..14da00ca82ab --- /dev/null +++ b/data/software/iv/ivocaloid.json @@ -0,0 +1,8 @@ +{ + "slug": "ivocaloid", + "name": "IVocaloid", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22905937" + ] +} diff --git a/data/software/iv/ivona.json b/data/software/iv/ivona.json new file mode 100644 index 000000000000..378b2af6732a --- /dev/null +++ b/data/software/iv/ivona.json @@ -0,0 +1,8 @@ +{ + "slug": "ivona", + "name": "IVONA", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5975496" + ] +} diff --git a/data/software/iv/ivpn.json b/data/software/iv/ivpn.json new file mode 100644 index 000000000000..634583b5d20e --- /dev/null +++ b/data/software/iv/ivpn.json @@ -0,0 +1,8 @@ +{ + "slug": "ivpn", + "name": "IVPN", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q55614199" + ] +} diff --git a/data/software/iw/iwebdevelopment.json b/data/software/iw/iwebdevelopment.json new file mode 100644 index 000000000000..6114153a67f1 --- /dev/null +++ b/data/software/iw/iwebdevelopment.json @@ -0,0 +1,8 @@ +{ + "slug": "iwebdevelopment", + "name": "iWebDevelopment", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140169682" + ] +} diff --git a/data/software/iw/iwrite.json b/data/software/iw/iwrite.json new file mode 100644 index 000000000000..dc3bee19cf3f --- /dev/null +++ b/data/software/iw/iwrite.json @@ -0,0 +1,8 @@ +{ + "slug": "iwrite", + "name": "iWrite", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085050" + ] +} diff --git a/data/software/ix/ixi-software.json b/data/software/ix/ixi-software.json new file mode 100644 index 000000000000..91d53732727f --- /dev/null +++ b/data/software/ix/ixi-software.json @@ -0,0 +1,11 @@ +{ + "slug": "ixi-software", + "name": "Ixi software", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6101075" + ], + "developers": [ + "Ixi software" + ] +} diff --git a/data/software/ix/ixiquarks.json b/data/software/ix/ixiquarks.json new file mode 100644 index 000000000000..1d2b8a89b5cc --- /dev/null +++ b/data/software/ix/ixiquarks.json @@ -0,0 +1,11 @@ +{ + "slug": "ixiquarks", + "name": "IxiQuarks", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6101078" + ], + "developers": [ + "Ixi software" + ] +} diff --git a/data/software/iy/iyouit.json b/data/software/iy/iyouit.json new file mode 100644 index 000000000000..4030b15cca9a --- /dev/null +++ b/data/software/iy/iyouit.json @@ -0,0 +1,12 @@ +{ + "slug": "iyouit", + "name": "IYOUIT", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5975748" + ], + "release_date": "2008-06-26", + "programming_languages": [ + "Python" + ] +} diff --git a/data/software/iz/izpack.json b/data/software/iz/izpack.json new file mode 100644 index 000000000000..d7a27da9e125 --- /dev/null +++ b/data/software/iz/izpack.json @@ -0,0 +1,11 @@ +{ + "slug": "izpack", + "name": "IZPack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3156444" + ], + "programming_languages": [ + "Java" + ] +} diff --git a/data/software/j-/j-pilot.json b/data/software/j-/j-pilot.json new file mode 100644 index 000000000000..f6723c030dc2 --- /dev/null +++ b/data/software/j-/j-pilot.json @@ -0,0 +1,15 @@ +{ + "slug": "j-pilot", + "name": "J-Pilot", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6103769" + ], + "release_date": "1999-06-23", + "operating_systems": [ + "Unix-like operating system" + ], + "programming_languages": [ + "GTK" + ] +} diff --git a/data/software/j-/j-xfs.json b/data/software/j-/j-xfs.json new file mode 100644 index 000000000000..2f4448b51853 --- /dev/null +++ b/data/software/j-/j-xfs.json @@ -0,0 +1,8 @@ +{ + "slug": "j-xfs", + "name": "J/XFS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6107530" + ] +} diff --git a/data/software/ja/jaamsim.json b/data/software/ja/jaamsim.json new file mode 100644 index 000000000000..c9b0b2600733 --- /dev/null +++ b/data/software/ja/jaamsim.json @@ -0,0 +1,8 @@ +{ + "slug": "jaamsim", + "name": "JaamSim", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131345358" + ] +} diff --git a/data/software/ja/jabra-direct.json b/data/software/ja/jabra-direct.json new file mode 100644 index 000000000000..87913cb37cf7 --- /dev/null +++ b/data/software/ja/jabra-direct.json @@ -0,0 +1,8 @@ +{ + "slug": "jabra-direct", + "name": "Jabra Direct", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111758779" + ] +} diff --git a/data/software/ja/jack-intelligent-agents.json b/data/software/ja/jack-intelligent-agents.json new file mode 100644 index 000000000000..93b38f0fd5b9 --- /dev/null +++ b/data/software/ja/jack-intelligent-agents.json @@ -0,0 +1,11 @@ +{ + "slug": "jack-intelligent-agents", + "name": "JACK Intelligent Agents", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17092798" + ], + "programming_languages": [ + "Java" + ] +} diff --git a/data/software/ja/jack-q6110904.json b/data/software/ja/jack-q6110904.json new file mode 100644 index 000000000000..581dc25560a5 --- /dev/null +++ b/data/software/ja/jack-q6110904.json @@ -0,0 +1,8 @@ +{ + "slug": "jack-q6110904", + "name": "Jack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6110904" + ] +} diff --git a/data/software/ja/jack.json b/data/software/ja/jack.json new file mode 100644 index 000000000000..69b79a498eb6 --- /dev/null +++ b/data/software/ja/jack.json @@ -0,0 +1,11 @@ +{ + "slug": "jack", + "name": "Jack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4041759" + ], + "developers": [ + "UGS Corp." + ] +} diff --git a/data/software/ja/jacket.json b/data/software/ja/jacket.json new file mode 100644 index 000000000000..c992425bc2d5 --- /dev/null +++ b/data/software/ja/jacket.json @@ -0,0 +1,8 @@ +{ + "slug": "jacket", + "name": "Jacket", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6116131" + ] +} diff --git a/data/software/ja/jacorb.json b/data/software/ja/jacorb.json new file mode 100644 index 000000000000..af9c567dcb1b --- /dev/null +++ b/data/software/ja/jacorb.json @@ -0,0 +1,8 @@ +{ + "slug": "jacorb", + "name": "JacORB", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6004242" + ] +} diff --git a/data/software/ja/jad.json b/data/software/ja/jad.json new file mode 100644 index 000000000000..bb39f1055690 --- /dev/null +++ b/data/software/ja/jad.json @@ -0,0 +1,8 @@ +{ + "slug": "jad", + "name": "JAD", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1678165" + ] +} diff --git a/data/software/ja/jaeger.json b/data/software/ja/jaeger.json new file mode 100644 index 000000000000..928bf5213cff --- /dev/null +++ b/data/software/ja/jaeger.json @@ -0,0 +1,11 @@ +{ + "slug": "jaeger", + "name": "Jaeger", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q98799449" + ], + "licenses": [ + "Apache Software License 2.0" + ] +} diff --git a/data/software/ja/jailbreakme.json b/data/software/ja/jailbreakme.json new file mode 100644 index 000000000000..f7ef8645fb00 --- /dev/null +++ b/data/software/ja/jailbreakme.json @@ -0,0 +1,11 @@ +{ + "slug": "jailbreakme", + "name": "JailbreakMe", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3160556" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/ja/jajah.json b/data/software/ja/jajah.json new file mode 100644 index 000000000000..90b078351927 --- /dev/null +++ b/data/software/ja/jajah.json @@ -0,0 +1,8 @@ +{ + "slug": "jajah", + "name": "Jajah", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1678793" + ] +} diff --git a/data/software/ja/jakarta-batch.json b/data/software/ja/jakarta-batch.json new file mode 100644 index 000000000000..a08dd49da8f5 --- /dev/null +++ b/data/software/ja/jakarta-batch.json @@ -0,0 +1,8 @@ +{ + "slug": "jakarta-batch", + "name": "Jakarta Batch", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76174522" + ] +} diff --git a/data/software/ja/jakarta-bean-validation.json b/data/software/ja/jakarta-bean-validation.json new file mode 100644 index 000000000000..450f67314dbf --- /dev/null +++ b/data/software/ja/jakarta-bean-validation.json @@ -0,0 +1,8 @@ +{ + "slug": "jakarta-bean-validation", + "name": "Jakarta Bean Validation", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76168793" + ] +} diff --git a/data/software/ja/jakarta-connectors.json b/data/software/ja/jakarta-connectors.json new file mode 100644 index 000000000000..3969a4443383 --- /dev/null +++ b/data/software/ja/jakarta-connectors.json @@ -0,0 +1,15 @@ +{ + "slug": "jakarta-connectors", + "name": "Jakarta Connectors", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q429157" + ], + "developers": [ + "Eclipse Foundation" + ], + "licenses": [ + "Eclipse Public License 2.0", + "GPL linking exception" + ] +} diff --git a/data/software/ja/jalview.json b/data/software/ja/jalview.json new file mode 100644 index 000000000000..b3f63a4ebca9 --- /dev/null +++ b/data/software/ja/jalview.json @@ -0,0 +1,12 @@ +{ + "slug": "jalview", + "name": "Jalview", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6127008" + ], + "developers": [ + "James Cuff", + "Andrew Waterhouse" + ] +} diff --git a/data/software/ja/jam-py.json b/data/software/ja/jam-py.json new file mode 100644 index 000000000000..73576a2aa9fe --- /dev/null +++ b/data/software/ja/jam-py.json @@ -0,0 +1,14 @@ +{ + "slug": "jam-py", + "name": "Jam.py", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q97359958" + ], + "programming_languages": [ + "Python" + ], + "licenses": [ + "3-clause BSD License" + ] +} diff --git a/data/software/ja/jam2jam.json b/data/software/ja/jam2jam.json new file mode 100644 index 000000000000..0e4e6daf7da9 --- /dev/null +++ b/data/software/ja/jam2jam.json @@ -0,0 +1,8 @@ +{ + "slug": "jam2jam", + "name": "Jam2jam", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6127028" + ] +} diff --git a/data/software/ja/jama.json b/data/software/ja/jama.json new file mode 100644 index 000000000000..9a48c30afdda --- /dev/null +++ b/data/software/ja/jama.json @@ -0,0 +1,12 @@ +{ + "slug": "jama", + "name": "JAMA", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4041712" + ], + "release_date": "1998-01-01", + "developers": [ + "National Institute of Standards and Technology" + ] +} diff --git a/data/software/ja/jamaicavm.json b/data/software/ja/jamaicavm.json new file mode 100644 index 000000000000..1d98692f3797 --- /dev/null +++ b/data/software/ja/jamaicavm.json @@ -0,0 +1,8 @@ +{ + "slug": "jamaicavm", + "name": "JamaicaVM", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4041778" + ] +} diff --git a/data/software/ja/jamin.json b/data/software/ja/jamin.json new file mode 100644 index 000000000000..733d6f63b114 --- /dev/null +++ b/data/software/ja/jamin.json @@ -0,0 +1,8 @@ +{ + "slug": "jamin", + "name": "JAMin", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16580384" + ] +} diff --git a/data/software/ja/jamkazam.json b/data/software/ja/jamkazam.json new file mode 100644 index 000000000000..dfa34d839b4f --- /dev/null +++ b/data/software/ja/jamkazam.json @@ -0,0 +1,8 @@ +{ + "slug": "jamkazam", + "name": "JamKazam", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105043799" + ] +} diff --git a/data/software/ja/jamovi.json b/data/software/ja/jamovi.json new file mode 100644 index 000000000000..ffa1e2aad4e4 --- /dev/null +++ b/data/software/ja/jamovi.json @@ -0,0 +1,16 @@ +{ + "slug": "jamovi", + "name": "Jamovi", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q29364618" + ], + "operating_systems": [ + "ChromeOS", + "macOS", + "Microsoft Windows" + ], + "licenses": [ + "GNU General Public License, version 2.0 or later" + ] +} diff --git a/data/software/ja/jamp.json b/data/software/ja/jamp.json new file mode 100644 index 000000000000..92d87c1b0838 --- /dev/null +++ b/data/software/ja/jamp.json @@ -0,0 +1,11 @@ +{ + "slug": "jamp", + "name": "JAMP", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3805166" + ], + "programming_languages": [ + "PHP" + ] +} diff --git a/data/software/ja/jamstix.json b/data/software/ja/jamstix.json new file mode 100644 index 000000000000..eecc05e36eda --- /dev/null +++ b/data/software/ja/jamstix.json @@ -0,0 +1,8 @@ +{ + "slug": "jamstix", + "name": "Jamstix", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6148272" + ] +} diff --git a/data/software/ja/jamulus.json b/data/software/ja/jamulus.json new file mode 100644 index 000000000000..d6c6f905788d --- /dev/null +++ b/data/software/ja/jamulus.json @@ -0,0 +1,11 @@ +{ + "slug": "jamulus", + "name": "Jamulus", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q104864926" + ], + "licenses": [ + "GNU General Public License, version 2.0" + ] +} diff --git a/data/software/ja/jane.json b/data/software/ja/jane.json new file mode 100644 index 000000000000..efa5c5a57306 --- /dev/null +++ b/data/software/ja/jane.json @@ -0,0 +1,8 @@ +{ + "slug": "jane", + "name": "Jane", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6151062" + ] +} diff --git a/data/software/ja/janggi-dosa.json b/data/software/ja/janggi-dosa.json new file mode 100644 index 000000000000..1958e0cc39b2 --- /dev/null +++ b/data/software/ja/janggi-dosa.json @@ -0,0 +1,8 @@ +{ + "slug": "janggi-dosa", + "name": "Janggi Dosa", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q12614360" + ] +} diff --git a/data/software/ja/janitor.json b/data/software/ja/janitor.json new file mode 100644 index 000000000000..66ac9f0c8cb9 --- /dev/null +++ b/data/software/ja/janitor.json @@ -0,0 +1,11 @@ +{ + "slug": "janitor", + "name": "Janitor", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q12023490" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/ja/janium.json b/data/software/ja/janium.json new file mode 100644 index 000000000000..6c676fcb389a --- /dev/null +++ b/data/software/ja/janium.json @@ -0,0 +1,12 @@ +{ + "slug": "janium", + "name": "Janium", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q104761753" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/software/ja/janus-recognition-toolkit-jrtk.json b/data/software/ja/janus-recognition-toolkit-jrtk.json new file mode 100644 index 000000000000..d847978c8159 --- /dev/null +++ b/data/software/ja/janus-recognition-toolkit-jrtk.json @@ -0,0 +1,8 @@ +{ + "slug": "janus-recognition-toolkit-jrtk", + "name": "Janus Recognition Toolkit (JRTk)", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q15093247" + ] +} diff --git a/data/software/ja/jaos.json b/data/software/ja/jaos.json new file mode 100644 index 000000000000..176995eb1afb --- /dev/null +++ b/data/software/ja/jaos.json @@ -0,0 +1,8 @@ +{ + "slug": "jaos", + "name": "Jaos", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4041792" + ] +} diff --git a/data/software/ja/jar.json b/data/software/ja/jar.json new file mode 100644 index 000000000000..ce6dc476219a --- /dev/null +++ b/data/software/ja/jar.json @@ -0,0 +1,14 @@ +{ + "slug": "jar", + "name": "JAR", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4041710" + ], + "developers": [ + "Robert K. Jung" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/ja/jarchitect.json b/data/software/ja/jarchitect.json new file mode 100644 index 000000000000..6e36ef722890 --- /dev/null +++ b/data/software/ja/jarchitect.json @@ -0,0 +1,8 @@ +{ + "slug": "jarchitect", + "name": "JArchitect", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16255103" + ] +} diff --git a/data/software/ja/jarnal.json b/data/software/ja/jarnal.json new file mode 100644 index 000000000000..33b6618a51ad --- /dev/null +++ b/data/software/ja/jarnal.json @@ -0,0 +1,8 @@ +{ + "slug": "jarnal", + "name": "Jarnal", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085051" + ] +} diff --git a/data/software/ja/jart.json b/data/software/ja/jart.json new file mode 100644 index 000000000000..c87dbe82c50f --- /dev/null +++ b/data/software/ja/jart.json @@ -0,0 +1,8 @@ +{ + "slug": "jart", + "name": "Jart", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138652426" + ] +} diff --git a/data/software/ja/jarvis.json b/data/software/ja/jarvis.json new file mode 100644 index 000000000000..8de08e4596c2 --- /dev/null +++ b/data/software/ja/jarvis.json @@ -0,0 +1,11 @@ +{ + "slug": "jarvis", + "name": "JARVIS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117449829" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/ja/jasper.json b/data/software/ja/jasper.json new file mode 100644 index 000000000000..9601f39f17bd --- /dev/null +++ b/data/software/ja/jasper.json @@ -0,0 +1,11 @@ +{ + "slug": "jasper", + "name": "JasPer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11723229" + ], + "licenses": [ + "JasPer License Version 2.0" + ] +} diff --git a/data/software/ja/java-3d.json b/data/software/ja/java-3d.json new file mode 100644 index 000000000000..b5d4929d51d5 --- /dev/null +++ b/data/software/ja/java-3d.json @@ -0,0 +1,11 @@ +{ + "slug": "java-3d", + "name": "Java 3D", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q432365" + ], + "developers": [ + "Sun Microsystems" + ] +} diff --git a/data/software/ja/java-access-bridge.json b/data/software/ja/java-access-bridge.json new file mode 100644 index 000000000000..a16ea72f8387 --- /dev/null +++ b/data/software/ja/java-access-bridge.json @@ -0,0 +1,8 @@ +{ + "slug": "java-access-bridge", + "name": "Java Access Bridge", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16927977" + ] +} diff --git a/data/software/ja/java-advanced-imaging.json b/data/software/ja/java-advanced-imaging.json new file mode 100644 index 000000000000..5b6dbf394b9c --- /dev/null +++ b/data/software/ja/java-advanced-imaging.json @@ -0,0 +1,17 @@ +{ + "slug": "java-advanced-imaging", + "name": "Java Advanced Imaging", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1129895" + ], + "developers": [ + "Oracle Corporation" + ], + "programming_languages": [ + "Java" + ], + "licenses": [ + "Java Research License" + ] +} diff --git a/data/software/ja/java-agent-template.json b/data/software/ja/java-agent-template.json new file mode 100644 index 000000000000..cb49957c2732 --- /dev/null +++ b/data/software/ja/java-agent-template.json @@ -0,0 +1,8 @@ +{ + "slug": "java-agent-template", + "name": "Java Agent Template", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6164956" + ] +} diff --git a/data/software/ja/java-applet.json b/data/software/ja/java-applet.json new file mode 100644 index 000000000000..5da7de9fed1f --- /dev/null +++ b/data/software/ja/java-applet.json @@ -0,0 +1,8 @@ +{ + "slug": "java-applet", + "name": "Java applet", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q865817" + ] +} diff --git a/data/software/ja/java-ascii-versatile-editor.json b/data/software/ja/java-ascii-versatile-editor.json new file mode 100644 index 000000000000..c7c938abc59b --- /dev/null +++ b/data/software/ja/java-ascii-versatile-editor.json @@ -0,0 +1,17 @@ +{ + "slug": "java-ascii-versatile-editor", + "name": "Java Ascii Versatile Editor", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1684146" + ], + "operating_systems": [ + "Windows 95" + ], + "programming_languages": [ + "Java" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/ja/java-astrodynamics-toolkit.json b/data/software/ja/java-astrodynamics-toolkit.json new file mode 100644 index 000000000000..b9f02dab74d5 --- /dev/null +++ b/data/software/ja/java-astrodynamics-toolkit.json @@ -0,0 +1,8 @@ +{ + "slug": "java-astrodynamics-toolkit", + "name": "Java Astrodynamics Toolkit", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6164958" + ] +} diff --git a/data/software/ja/java-database-connectivity.json b/data/software/ja/java-database-connectivity.json new file mode 100644 index 000000000000..a891ebbfe2e8 --- /dev/null +++ b/data/software/ja/java-database-connectivity.json @@ -0,0 +1,11 @@ +{ + "slug": "java-database-connectivity", + "name": "Java Database Connectivity", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q722772" + ], + "programming_languages": [ + "Java" + ] +} diff --git a/data/software/ja/java-dynamic-management-kit.json b/data/software/ja/java-dynamic-management-kit.json new file mode 100644 index 000000000000..5b753263b679 --- /dev/null +++ b/data/software/ja/java-dynamic-management-kit.json @@ -0,0 +1,11 @@ +{ + "slug": "java-dynamic-management-kit", + "name": "Java Dynamic Management Kit", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6164977" + ], + "operating_systems": [ + "cross-platform" + ] +} diff --git a/data/software/ja/java-ebuilder.json b/data/software/ja/java-ebuilder.json new file mode 100644 index 000000000000..18bcb6eb7048 --- /dev/null +++ b/data/software/ja/java-ebuilder.json @@ -0,0 +1,11 @@ +{ + "slug": "java-ebuilder", + "name": "java-ebuilder", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974955" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/ja/java-ee-module-configuration-editors.json b/data/software/ja/java-ee-module-configuration-editors.json new file mode 100644 index 000000000000..57e62d286af2 --- /dev/null +++ b/data/software/ja/java-ee-module-configuration-editors.json @@ -0,0 +1,8 @@ +{ + "slug": "java-ee-module-configuration-editors", + "name": "Java EE Module Configuration Editors", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76167852" + ] +} diff --git a/data/software/ja/java-emitter-templates-jet2.json b/data/software/ja/java-emitter-templates-jet2.json new file mode 100644 index 000000000000..442858cf14d8 --- /dev/null +++ b/data/software/ja/java-emitter-templates-jet2.json @@ -0,0 +1,8 @@ +{ + "slug": "java-emitter-templates-jet2", + "name": "Java Emitter Templates (JET2)", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76167821" + ] +} diff --git a/data/software/ja/java-getopt.json b/data/software/ja/java-getopt.json new file mode 100644 index 000000000000..58c35497401c --- /dev/null +++ b/data/software/ja/java-getopt.json @@ -0,0 +1,8 @@ +{ + "slug": "java-getopt", + "name": "Java-getopt", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76185152" + ] +} diff --git a/data/software/ja/java-jwt.json b/data/software/ja/java-jwt.json new file mode 100644 index 000000000000..400d827f15af --- /dev/null +++ b/data/software/ja/java-jwt.json @@ -0,0 +1,11 @@ +{ + "slug": "java-jwt", + "name": "Java JWT", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117780019" + ], + "licenses": [ + "Apache Software License 2.0" + ] +} diff --git a/data/software/ja/java-model-railroad-interface.json b/data/software/ja/java-model-railroad-interface.json new file mode 100644 index 000000000000..b96cb89871ac --- /dev/null +++ b/data/software/ja/java-model-railroad-interface.json @@ -0,0 +1,8 @@ +{ + "slug": "java-model-railroad-interface", + "name": "Java Model Railroad Interface", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11226880" + ] +} diff --git a/data/software/ja/java-optimized-processor.json b/data/software/ja/java-optimized-processor.json new file mode 100644 index 000000000000..7de574e060a1 --- /dev/null +++ b/data/software/ja/java-optimized-processor.json @@ -0,0 +1,8 @@ +{ + "slug": "java-optimized-processor", + "name": "Java optimized processor", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6165044" + ] +} diff --git a/data/software/ja/java-pathfinder.json b/data/software/ja/java-pathfinder.json new file mode 100644 index 000000000000..926560f69fd3 --- /dev/null +++ b/data/software/ja/java-pathfinder.json @@ -0,0 +1,20 @@ +{ + "slug": "java-pathfinder", + "name": "Java Pathfinder", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4041803" + ], + "developers": [ + "National Aeronautics and Space Administration" + ], + "operating_systems": [ + "cross-platform" + ], + "programming_languages": [ + "Java" + ], + "licenses": [ + "Apache License" + ] +} diff --git a/data/software/ja/java-persistent-objects.json b/data/software/ja/java-persistent-objects.json new file mode 100644 index 000000000000..afc041215be2 --- /dev/null +++ b/data/software/ja/java-persistent-objects.json @@ -0,0 +1,11 @@ +{ + "slug": "java-persistent-objects", + "name": "Java Persistent Objects", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11226062" + ], + "licenses": [ + "Apache Software License 2.0" + ] +} diff --git a/data/software/ja/java-virtual-machine-tools-interface.json b/data/software/ja/java-virtual-machine-tools-interface.json new file mode 100644 index 000000000000..28e51e812e05 --- /dev/null +++ b/data/software/ja/java-virtual-machine-tools-interface.json @@ -0,0 +1,8 @@ +{ + "slug": "java-virtual-machine-tools-interface", + "name": "Java Virtual Machine Tools Interface", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1100089" + ] +} diff --git a/data/software/ja/java.json b/data/software/ja/java.json new file mode 100644 index 000000000000..b4f7ab413254 --- /dev/null +++ b/data/software/ja/java.json @@ -0,0 +1,17 @@ +{ + "slug": "java", + "name": "Java", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q251" + ], + "release_date": "1995-05-23", + "developers": [ + "James Gosling", + "Oracle Corporation", + "Sun Microsystems" + ], + "licenses": [ + "GNU General Public License" + ] +} diff --git a/data/software/ja/javabeans.json b/data/software/ja/javabeans.json new file mode 100644 index 000000000000..5d6891d4c70d --- /dev/null +++ b/data/software/ja/javabeans.json @@ -0,0 +1,8 @@ +{ + "slug": "javabeans", + "name": "JavaBeans", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q259322" + ] +} diff --git a/data/software/ja/javahelp.json b/data/software/ja/javahelp.json new file mode 100644 index 000000000000..93686dace9c1 --- /dev/null +++ b/data/software/ja/javahelp.json @@ -0,0 +1,14 @@ +{ + "slug": "javahelp", + "name": "JavaHelp", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065386" + ], + "programming_languages": [ + "Java" + ], + "licenses": [ + "GNU General Public License" + ] +} diff --git a/data/software/ja/javascriptmvc.json b/data/software/ja/javascriptmvc.json new file mode 100644 index 000000000000..62c8575504cc --- /dev/null +++ b/data/software/ja/javascriptmvc.json @@ -0,0 +1,8 @@ +{ + "slug": "javascriptmvc", + "name": "JavaScriptMVC", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6164930" + ] +} diff --git a/data/software/ja/javelin-pdf-reader.json b/data/software/ja/javelin-pdf-reader.json new file mode 100644 index 000000000000..827cccd71886 --- /dev/null +++ b/data/software/ja/javelin-pdf-reader.json @@ -0,0 +1,11 @@ +{ + "slug": "javelin-pdf-reader", + "name": "Javelin PDF Reader", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16927856" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/ja/jazn.json b/data/software/ja/jazn.json new file mode 100644 index 000000000000..8c5fc6959bd1 --- /dev/null +++ b/data/software/ja/jazn.json @@ -0,0 +1,11 @@ +{ + "slug": "jazn", + "name": "JAZN", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6107746" + ], + "developers": [ + "Oracle Corporation" + ] +} diff --git a/data/software/jb/jbidwatcher.json b/data/software/jb/jbidwatcher.json new file mode 100644 index 000000000000..31e577165c32 --- /dev/null +++ b/data/software/jb/jbidwatcher.json @@ -0,0 +1,11 @@ +{ + "slug": "jbidwatcher", + "name": "JBidwatcher", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120690941" + ], + "programming_languages": [ + "Java" + ] +} diff --git a/data/software/jb/jboss-developer-studio.json b/data/software/jb/jboss-developer-studio.json new file mode 100644 index 000000000000..e48bde5b4f62 --- /dev/null +++ b/data/software/jb/jboss-developer-studio.json @@ -0,0 +1,8 @@ +{ + "slug": "jboss-developer-studio", + "name": "JBoss Developer Studio", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1099065" + ] +} diff --git a/data/software/jb/jboss-tools.json b/data/software/jb/jboss-tools.json new file mode 100644 index 000000000000..57dbf31162b2 --- /dev/null +++ b/data/software/jb/jboss-tools.json @@ -0,0 +1,14 @@ +{ + "slug": "jboss-tools", + "name": "JBoss Tools", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6107825" + ], + "operating_systems": [ + "cross-platform" + ], + "programming_languages": [ + "Java" + ] +} diff --git a/data/software/jc/jconcorder.json b/data/software/jc/jconcorder.json new file mode 100644 index 000000000000..09a1cf5dc916 --- /dev/null +++ b/data/software/jc/jconcorder.json @@ -0,0 +1,8 @@ +{ + "slug": "jconcorder", + "name": "JConcorder", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087820" + ] +} diff --git a/data/software/jc/jcrom.json b/data/software/jc/jcrom.json new file mode 100644 index 000000000000..3a793017b9d4 --- /dev/null +++ b/data/software/jc/jcrom.json @@ -0,0 +1,14 @@ +{ + "slug": "jcrom", + "name": "Jcrom", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17059462" + ], + "programming_languages": [ + "Java" + ], + "licenses": [ + "Apache License" + ] +} diff --git a/data/software/jc/jcsp.json b/data/software/jc/jcsp.json new file mode 100644 index 000000000000..43e117ca4a1b --- /dev/null +++ b/data/software/jc/jcsp.json @@ -0,0 +1,8 @@ +{ + "slug": "jcsp", + "name": "JCSP", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6107883" + ] +} diff --git a/data/software/jd/jdbc-driver.json b/data/software/jd/jdbc-driver.json new file mode 100644 index 000000000000..545c85c1d802 --- /dev/null +++ b/data/software/jd/jdbc-driver.json @@ -0,0 +1,8 @@ +{ + "slug": "jdbc-driver", + "name": "JDBC driver", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3315268" + ] +} diff --git a/data/software/jd/jdbc-type-2-driver.json b/data/software/jd/jdbc-type-2-driver.json new file mode 100644 index 000000000000..8623be360071 --- /dev/null +++ b/data/software/jd/jdbc-type-2-driver.json @@ -0,0 +1,8 @@ +{ + "slug": "jdbc-type-2-driver", + "name": "JDBC Type 2 Driver", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3805197" + ] +} diff --git a/data/software/jd/jdiff.json b/data/software/jd/jdiff.json new file mode 100644 index 000000000000..4b007e775bda --- /dev/null +++ b/data/software/jd/jdiff.json @@ -0,0 +1,8 @@ +{ + "slug": "jdiff", + "name": "JDiff", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6108031" + ] +} diff --git a/data/software/jd/jdiskreport.json b/data/software/jd/jdiskreport.json new file mode 100644 index 000000000000..7c6952538a75 --- /dev/null +++ b/data/software/jd/jdiskreport.json @@ -0,0 +1,11 @@ +{ + "slug": "jdiskreport", + "name": "JDiskReport", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q12022167" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/jd/jdk-enhancement-proposal.json b/data/software/jd/jdk-enhancement-proposal.json new file mode 100644 index 000000000000..6b562c69d47e --- /dev/null +++ b/data/software/jd/jdk-enhancement-proposal.json @@ -0,0 +1,8 @@ +{ + "slug": "jdk-enhancement-proposal", + "name": "JDK Enhancement Proposal", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6107947" + ] +} diff --git a/data/software/jd/jdk-mission-control.json b/data/software/jd/jdk-mission-control.json new file mode 100644 index 000000000000..37b26862e4e5 --- /dev/null +++ b/data/software/jd/jdk-mission-control.json @@ -0,0 +1,11 @@ +{ + "slug": "jdk-mission-control", + "name": "JDK Mission Control", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60774852" + ], + "programming_languages": [ + "Java" + ] +} diff --git a/data/software/jd/jdoodle.json b/data/software/jd/jdoodle.json new file mode 100644 index 000000000000..1fb442ca4b6d --- /dev/null +++ b/data/software/jd/jdoodle.json @@ -0,0 +1,8 @@ +{ + "slug": "jdoodle", + "name": "JDoodle", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135916067" + ] +} diff --git a/data/software/je/jeroo.json b/data/software/je/jeroo.json new file mode 100644 index 000000000000..43431b47c282 --- /dev/null +++ b/data/software/je/jeroo.json @@ -0,0 +1,11 @@ +{ + "slug": "jeroo", + "name": "Jeroo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17092863" + ], + "programming_languages": [ + "Java" + ] +} diff --git a/data/software/je/jeskola-buzz.json b/data/software/je/jeskola-buzz.json new file mode 100644 index 000000000000..8508ce017e01 --- /dev/null +++ b/data/software/je/jeskola-buzz.json @@ -0,0 +1,11 @@ +{ + "slug": "jeskola-buzz", + "name": "Jeskola Buzz", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q164265" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/je/jesperai.json b/data/software/je/jesperai.json new file mode 100644 index 000000000000..4892f05d4ef0 --- /dev/null +++ b/data/software/je/jesperai.json @@ -0,0 +1,11 @@ +{ + "slug": "jesperai", + "name": "JesperAI", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138581538" + ], + "developers": [ + "Agent360" + ] +} diff --git a/data/software/je/jet-data-access-objects.json b/data/software/je/jet-data-access-objects.json new file mode 100644 index 000000000000..9b9310dd68a3 --- /dev/null +++ b/data/software/je/jet-data-access-objects.json @@ -0,0 +1,11 @@ +{ + "slug": "jet-data-access-objects", + "name": "Jet Data Access Objects", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1172192" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/je/jetforge.json b/data/software/je/jetforge.json new file mode 100644 index 000000000000..77b827edaead --- /dev/null +++ b/data/software/je/jetforge.json @@ -0,0 +1,11 @@ +{ + "slug": "jetforge", + "name": "JetForge", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139801889" + ], + "operating_systems": [ + "web browser" + ] +} diff --git a/data/software/je/jetico-personal-firewall.json b/data/software/je/jetico-personal-firewall.json new file mode 100644 index 000000000000..ed2eb972b7f1 --- /dev/null +++ b/data/software/je/jetico-personal-firewall.json @@ -0,0 +1,8 @@ +{ + "slug": "jetico-personal-firewall", + "name": "Jetico Personal Firewall", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q926588" + ] +} diff --git a/data/software/je/jetring.json b/data/software/je/jetring.json new file mode 100644 index 000000000000..ec5c8d2c921a --- /dev/null +++ b/data/software/je/jetring.json @@ -0,0 +1,8 @@ +{ + "slug": "jetring", + "name": "jetring", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63064803" + ] +} diff --git a/data/software/je/jetty-servlet-engine-and-http-server.json b/data/software/je/jetty-servlet-engine-and-http-server.json new file mode 100644 index 000000000000..886a131af114 --- /dev/null +++ b/data/software/je/jetty-servlet-engine-and-http-server.json @@ -0,0 +1,8 @@ +{ + "slug": "jetty-servlet-engine-and-http-server", + "name": "Jetty - Servlet Engine and Http Server", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76167747" + ] +} diff --git a/data/software/je/jeudemo.json b/data/software/je/jeudemo.json new file mode 100644 index 000000000000..e7cb23a88913 --- /dev/null +++ b/data/software/je/jeudemo.json @@ -0,0 +1,8 @@ +{ + "slug": "jeudemo", + "name": "JEUDEMO", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085052" + ] +} diff --git a/data/software/je/jeus.json b/data/software/je/jeus.json new file mode 100644 index 000000000000..ebec43751dee --- /dev/null +++ b/data/software/je/jeus.json @@ -0,0 +1,11 @@ +{ + "slug": "jeus", + "name": "JEUS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3805228" + ], + "programming_languages": [ + "Java" + ] +} diff --git a/data/software/je/jexcel.json b/data/software/je/jexcel.json new file mode 100644 index 000000000000..030f2b336ff2 --- /dev/null +++ b/data/software/je/jexcel.json @@ -0,0 +1,11 @@ +{ + "slug": "jexcel", + "name": "JExcel", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22669079" + ], + "programming_languages": [ + "Java" + ] +} diff --git a/data/software/jf/jformdesigner.json b/data/software/jf/jformdesigner.json new file mode 100644 index 000000000000..0510124282a9 --- /dev/null +++ b/data/software/jf/jformdesigner.json @@ -0,0 +1,14 @@ +{ + "slug": "jformdesigner", + "name": "JFormDesigner", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1484158" + ], + "programming_languages": [ + "Java" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/jg/jgir.json b/data/software/jg/jgir.json new file mode 100644 index 000000000000..d8ed34c375ce --- /dev/null +++ b/data/software/jg/jgir.json @@ -0,0 +1,8 @@ +{ + "slug": "jgir", + "name": "JGIR", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76181312" + ] +} diff --git a/data/software/jg/jgroups.json b/data/software/jg/jgroups.json new file mode 100644 index 000000000000..e16b2b598cea --- /dev/null +++ b/data/software/jg/jgroups.json @@ -0,0 +1,11 @@ +{ + "slug": "jgroups", + "name": "JGroups", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q753874" + ], + "licenses": [ + "Apache License" + ] +} diff --git a/data/software/jh/jhbuild.json b/data/software/jh/jhbuild.json new file mode 100644 index 000000000000..b65a0c7a1ed2 --- /dev/null +++ b/data/software/jh/jhbuild.json @@ -0,0 +1,8 @@ +{ + "slug": "jhbuild", + "name": "JHBuild", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76181330" + ] +} diff --git a/data/software/jh/jhove.json b/data/software/jh/jhove.json new file mode 100644 index 000000000000..ff2cf40dff0d --- /dev/null +++ b/data/software/jh/jhove.json @@ -0,0 +1,23 @@ +{ + "slug": "jhove", + "name": "JHOVE", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16927990" + ], + "developers": [ + "JSTOR", + "Open Preservation Foundation", + "Harvard Library" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [ + "Java" + ], + "licenses": [ + "GNU Lesser General Public License" + ] +} diff --git a/data/software/jh/jhymn.json b/data/software/jh/jhymn.json new file mode 100644 index 000000000000..cffd44aa1d33 --- /dev/null +++ b/data/software/jh/jhymn.json @@ -0,0 +1,11 @@ +{ + "slug": "jhymn", + "name": "JHymn", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6108227" + ], + "programming_languages": [ + "Java" + ] +} diff --git a/data/software/ji/jibx.json b/data/software/ji/jibx.json new file mode 100644 index 000000000000..263bf749e53e --- /dev/null +++ b/data/software/ji/jibx.json @@ -0,0 +1,11 @@ +{ + "slug": "jibx", + "name": "JiBX", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1688838" + ], + "programming_languages": [ + "Java" + ] +} diff --git a/data/software/ji/jiffydos.json b/data/software/ji/jiffydos.json new file mode 100644 index 000000000000..8590174f1e85 --- /dev/null +++ b/data/software/ji/jiffydos.json @@ -0,0 +1,15 @@ +{ + "slug": "jiffydos", + "name": "JiffyDOS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q31841721" + ], + "release_date": "1985-01-01", + "developers": [ + "Creative Micro Designs" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/ji/jigdo.json b/data/software/ji/jigdo.json new file mode 100644 index 000000000000..b8e735897895 --- /dev/null +++ b/data/software/ji/jigdo.json @@ -0,0 +1,11 @@ +{ + "slug": "jigdo", + "name": "Jigdo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1950744" + ], + "licenses": [ + "GNU General Public License, version 2.0" + ] +} diff --git a/data/software/ji/jigsaw-q126085053.json b/data/software/ji/jigsaw-q126085053.json new file mode 100644 index 000000000000..35ce36e47bb5 --- /dev/null +++ b/data/software/ji/jigsaw-q126085053.json @@ -0,0 +1,8 @@ +{ + "slug": "jigsaw-q126085053", + "name": "Jigsaw", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085053" + ] +} diff --git a/data/software/ji/jigsaw.json b/data/software/ji/jigsaw.json new file mode 100644 index 000000000000..cf143e4591e0 --- /dev/null +++ b/data/software/ji/jigsaw.json @@ -0,0 +1,8 @@ +{ + "slug": "jigsaw", + "name": "Jigsaw", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115517870" + ] +} diff --git a/data/software/ji/jing.json b/data/software/ji/jing.json new file mode 100644 index 000000000000..fbed93be2052 --- /dev/null +++ b/data/software/ji/jing.json @@ -0,0 +1,14 @@ +{ + "slug": "jing", + "name": "Jing", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6202204" + ], + "developers": [ + "TechSmith" + ], + "genres": [ + "screencasting software" + ] +} diff --git a/data/software/ji/jini.json b/data/software/ji/jini.json new file mode 100644 index 000000000000..146ed48a1056 --- /dev/null +++ b/data/software/ji/jini.json @@ -0,0 +1,11 @@ +{ + "slug": "jini", + "name": "Jini", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1282140" + ], + "licenses": [ + "Apache License" + ] +} diff --git a/data/software/ji/jinitiator.json b/data/software/ji/jinitiator.json new file mode 100644 index 000000000000..a1cd221c7dee --- /dev/null +++ b/data/software/ji/jinitiator.json @@ -0,0 +1,11 @@ +{ + "slug": "jinitiator", + "name": "Jinitiator", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4041849" + ], + "developers": [ + "Oracle Corporation" + ] +} diff --git a/data/software/jm/jmag.json b/data/software/jm/jmag.json new file mode 100644 index 000000000000..1c8512b73c3a --- /dev/null +++ b/data/software/jm/jmag.json @@ -0,0 +1,11 @@ +{ + "slug": "jmag", + "name": "JMAG", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6108488" + ], + "developers": [ + "Template:Vba" + ] +} diff --git a/data/software/jm/jme-molecule-editor.json b/data/software/jm/jme-molecule-editor.json new file mode 100644 index 000000000000..f0488ac4b8c5 --- /dev/null +++ b/data/software/jm/jme-molecule-editor.json @@ -0,0 +1,14 @@ +{ + "slug": "jme-molecule-editor", + "name": "JME Molecule Editor", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6108502" + ], + "developers": [ + "Comenius University" + ], + "programming_languages": [ + "Java" + ] +} diff --git a/data/software/jm/jmp.json b/data/software/jm/jmp.json new file mode 100644 index 000000000000..3fef3a823f8d --- /dev/null +++ b/data/software/jm/jmp.json @@ -0,0 +1,11 @@ +{ + "slug": "jmp", + "name": "JMP", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1161680" + ], + "developers": [ + "SAS Institute" + ] +} diff --git a/data/software/jm/jmupdf.json b/data/software/jm/jmupdf.json new file mode 100644 index 000000000000..feeb44391364 --- /dev/null +++ b/data/software/jm/jmupdf.json @@ -0,0 +1,8 @@ +{ + "slug": "jmupdf", + "name": "jmupdf", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974957" + ] +} diff --git a/data/software/jn/jnaerator.json b/data/software/jn/jnaerator.json new file mode 100644 index 000000000000..3a5dd20cbc41 --- /dev/null +++ b/data/software/jn/jnaerator.json @@ -0,0 +1,11 @@ +{ + "slug": "jnaerator", + "name": "JNAerator", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6108564" + ], + "programming_languages": [ + "Java" + ] +} diff --git a/data/software/jo/job-entry-subsystem-1.json b/data/software/jo/job-entry-subsystem-1.json new file mode 100644 index 000000000000..82f4f54645b9 --- /dev/null +++ b/data/software/jo/job-entry-subsystem-1.json @@ -0,0 +1,11 @@ +{ + "slug": "job-entry-subsystem-1", + "name": "Job Entry Subsystem 1", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28457532" + ], + "developers": [ + "IBM" + ] +} diff --git a/data/software/jo/jobrunr.json b/data/software/jo/jobrunr.json new file mode 100644 index 000000000000..fb5e44d8c838 --- /dev/null +++ b/data/software/jo/jobrunr.json @@ -0,0 +1,8 @@ +{ + "slug": "jobrunr", + "name": "JobRunr", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134543526" + ] +} diff --git a/data/software/jo/jobs.json b/data/software/jo/jobs.json new file mode 100644 index 000000000000..d4de802a1f13 --- /dev/null +++ b/data/software/jo/jobs.json @@ -0,0 +1,8 @@ +{ + "slug": "jobs", + "name": "jobs", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11928169" + ] +} diff --git a/data/software/jo/jogre.json b/data/software/jo/jogre.json new file mode 100644 index 000000000000..eea15e07ac88 --- /dev/null +++ b/data/software/jo/jogre.json @@ -0,0 +1,8 @@ +{ + "slug": "jogre", + "name": "Jogre", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6214826" + ] +} diff --git a/data/software/jo/johnny-castaway.json b/data/software/jo/johnny-castaway.json new file mode 100644 index 000000000000..ecdf937a9bfd --- /dev/null +++ b/data/software/jo/johnny-castaway.json @@ -0,0 +1,11 @@ +{ + "slug": "johnny-castaway", + "name": "Johnny Castaway", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6266471" + ], + "developers": [ + "Sierra Entertainment" + ] +} diff --git a/data/software/jo/joint-automated-deep-operations-coordination-system.json b/data/software/jo/joint-automated-deep-operations-coordination-system.json new file mode 100644 index 000000000000..6de8b6126123 --- /dev/null +++ b/data/software/jo/joint-automated-deep-operations-coordination-system.json @@ -0,0 +1,11 @@ +{ + "slug": "joint-automated-deep-operations-coordination-system", + "name": "Joint Automated Deep Operations Coordination System", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q43515727" + ], + "developers": [ + "Raytheon" + ] +} diff --git a/data/software/jo/joint-chiefs.json b/data/software/jo/joint-chiefs.json new file mode 100644 index 000000000000..a1bcbd7efb31 --- /dev/null +++ b/data/software/jo/joint-chiefs.json @@ -0,0 +1,20 @@ +{ + "slug": "joint-chiefs", + "name": "Joint Chiefs", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140199231" + ], + "developers": [ + "Outergy Group" + ], + "operating_systems": [ + "macOS" + ], + "programming_languages": [ + "Swift" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/jo/joint-theater-level-simulation.json b/data/software/jo/joint-theater-level-simulation.json new file mode 100644 index 000000000000..5936182346ab --- /dev/null +++ b/data/software/jo/joint-theater-level-simulation.json @@ -0,0 +1,8 @@ +{ + "slug": "joint-theater-level-simulation", + "name": "Joint Theater Level Simulation", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6269464" + ] +} diff --git a/data/software/jo/jointly-administered-knowledge-environment.json b/data/software/jo/jointly-administered-knowledge-environment.json new file mode 100644 index 000000000000..37152423af2e --- /dev/null +++ b/data/software/jo/jointly-administered-knowledge-environment.json @@ -0,0 +1,8 @@ +{ + "slug": "jointly-administered-knowledge-environment", + "name": "Jointly Administered Knowledge Environment", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6269575" + ] +} diff --git a/data/software/jo/joost.json b/data/software/jo/joost.json new file mode 100644 index 000000000000..bf307639aaac --- /dev/null +++ b/data/software/jo/joost.json @@ -0,0 +1,14 @@ +{ + "slug": "joost", + "name": "Joost", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q658666" + ], + "operating_systems": [ + "macOS" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/jo/josh.json b/data/software/jo/josh.json new file mode 100644 index 000000000000..fb48e6cba606 --- /dev/null +++ b/data/software/jo/josh.json @@ -0,0 +1,12 @@ +{ + "slug": "josh", + "name": "Josh", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113134406" + ], + "release_date": "2020-09-01", + "licenses": [ + "freeware" + ] +} diff --git a/data/software/jo/jotterpad.json b/data/software/jo/jotterpad.json new file mode 100644 index 000000000000..3842e21c1652 --- /dev/null +++ b/data/software/jo/jotterpad.json @@ -0,0 +1,11 @@ +{ + "slug": "jotterpad", + "name": "JotterPad", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q30589420" + ], + "programming_languages": [ + "Java" + ] +} diff --git a/data/software/jo/jox.json b/data/software/jo/jox.json new file mode 100644 index 000000000000..de4a5c284f16 --- /dev/null +++ b/data/software/jo/jox.json @@ -0,0 +1,25 @@ +{ + "slug": "jox", + "name": "JOX", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140219964" + ], + "operating_systems": [ + "SINIX", + "IRIX", + "IBM AIX", + "FreeBSD", + "Unix-like operating system", + "cross-platform", + "Solaris", + "macOS", + "Microsoft Windows" + ], + "programming_languages": [ + "Java" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/jo/joy2key.json b/data/software/jo/joy2key.json new file mode 100644 index 000000000000..597dec29c4f2 --- /dev/null +++ b/data/software/jo/joy2key.json @@ -0,0 +1,8 @@ +{ + "slug": "joy2key", + "name": "Joy2Key", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62853150" + ] +} diff --git a/data/software/jp/jp1.json b/data/software/jp/jp1.json new file mode 100644 index 000000000000..be68ce2e9cdc --- /dev/null +++ b/data/software/jp/jp1.json @@ -0,0 +1,8 @@ +{ + "slug": "jp1", + "name": "JP1", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11226042" + ] +} diff --git a/data/software/jp/jp2a.json b/data/software/jp/jp2a.json new file mode 100644 index 000000000000..6ab97f38d64e --- /dev/null +++ b/data/software/jp/jp2a.json @@ -0,0 +1,8 @@ +{ + "slug": "jp2a", + "name": "jp2a", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62853122" + ] +} diff --git a/data/software/jp/jpegpixi.json b/data/software/jp/jpegpixi.json new file mode 100644 index 000000000000..917f24360b1c --- /dev/null +++ b/data/software/jp/jpegpixi.json @@ -0,0 +1,8 @@ +{ + "slug": "jpegpixi", + "name": "jpegpixi", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62853109" + ] +} diff --git a/data/software/jp/jpgraph.json b/data/software/jp/jpgraph.json new file mode 100644 index 000000000000..049f90b61386 --- /dev/null +++ b/data/software/jp/jpgraph.json @@ -0,0 +1,8 @@ +{ + "slug": "jpgraph", + "name": "JpGraph", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085055" + ] +} diff --git a/data/software/jp/jpred.json b/data/software/jp/jpred.json new file mode 100644 index 000000000000..1009b123be1b --- /dev/null +++ b/data/software/jp/jpred.json @@ -0,0 +1,8 @@ +{ + "slug": "jpred", + "name": "Jpred", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18386017" + ] +} diff --git a/data/software/jq/jqplot.json b/data/software/jq/jqplot.json new file mode 100644 index 000000000000..90e0b016b79f --- /dev/null +++ b/data/software/jq/jqplot.json @@ -0,0 +1,8 @@ +{ + "slug": "jqplot", + "name": "jqplot", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085056" + ] +} diff --git a/data/software/jq/jqtouch.json b/data/software/jq/jqtouch.json new file mode 100644 index 000000000000..4ffdb5e4ee26 --- /dev/null +++ b/data/software/jq/jqtouch.json @@ -0,0 +1,8 @@ +{ + "slug": "jqtouch", + "name": "JQTouch", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6108799" + ] +} diff --git a/data/software/jq/jqwidgets.json b/data/software/jq/jqwidgets.json new file mode 100644 index 000000000000..c01d877ea134 --- /dev/null +++ b/data/software/jq/jqwidgets.json @@ -0,0 +1,11 @@ +{ + "slug": "jqwidgets", + "name": "jQWidgets", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22681953" + ], + "licenses": [ + "Creative Commons Attribution-NonCommercial 3.0 Unported" + ] +} diff --git a/data/software/jr/jrebel.json b/data/software/jr/jrebel.json new file mode 100644 index 000000000000..af02aeaf3074 --- /dev/null +++ b/data/software/jr/jrebel.json @@ -0,0 +1,11 @@ +{ + "slug": "jrebel", + "name": "JRebel", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4041800" + ], + "programming_languages": [ + "Java" + ] +} diff --git a/data/software/jr/jriver-media-center.json b/data/software/jr/jriver-media-center.json new file mode 100644 index 000000000000..a8db107d5d41 --- /dev/null +++ b/data/software/jr/jriver-media-center.json @@ -0,0 +1,11 @@ +{ + "slug": "jriver-media-center", + "name": "JRiver Media Center", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q15995229" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/jr/jrockit.json b/data/software/jr/jrockit.json new file mode 100644 index 000000000000..fe8e7d2c26f5 --- /dev/null +++ b/data/software/jr/jrockit.json @@ -0,0 +1,11 @@ +{ + "slug": "jrockit", + "name": "JRockit", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q822638" + ], + "developers": [ + "Oracle Corporation" + ] +} diff --git a/data/software/js/js-of-ocaml.json b/data/software/js/js-of-ocaml.json new file mode 100644 index 000000000000..08368e0d3d79 --- /dev/null +++ b/data/software/js/js-of-ocaml.json @@ -0,0 +1,8 @@ +{ + "slug": "js-of-ocaml", + "name": "js_of_ocaml", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974959" + ] +} diff --git a/data/software/js/jsan.json b/data/software/js/jsan.json new file mode 100644 index 000000000000..f8986317440a --- /dev/null +++ b/data/software/js/jsan.json @@ -0,0 +1,8 @@ +{ + "slug": "jsan", + "name": "JSAN", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085057" + ] +} diff --git a/data/software/js/jscrambler.json b/data/software/js/jscrambler.json new file mode 100644 index 000000000000..5fb9aa762729 --- /dev/null +++ b/data/software/js/jscrambler.json @@ -0,0 +1,8 @@ +{ + "slug": "jscrambler", + "name": "Jscrambler", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6298655" + ] +} diff --git a/data/software/js/jsesh.json b/data/software/js/jsesh.json new file mode 100644 index 000000000000..db5fb9a2cbad --- /dev/null +++ b/data/software/js/jsesh.json @@ -0,0 +1,12 @@ +{ + "slug": "jsesh", + "name": "JSesh", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116177108" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/software/js/jsfiddle.json b/data/software/js/jsfiddle.json new file mode 100644 index 000000000000..b0abec026d1f --- /dev/null +++ b/data/software/js/jsfiddle.json @@ -0,0 +1,8 @@ +{ + "slug": "jsfiddle", + "name": "JSFiddle", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q29364743" + ] +} diff --git a/data/software/js/jslda.json b/data/software/js/jslda.json new file mode 100644 index 000000000000..593fc8388e0b --- /dev/null +++ b/data/software/js/jslda.json @@ -0,0 +1,8 @@ +{ + "slug": "jslda", + "name": "jsLDA", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085058" + ] +} diff --git a/data/software/js/json-resume.json b/data/software/js/json-resume.json new file mode 100644 index 000000000000..d41359dd6ccf --- /dev/null +++ b/data/software/js/json-resume.json @@ -0,0 +1,8 @@ +{ + "slug": "json-resume", + "name": "JSON Resume", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q132746254" + ] +} diff --git a/data/software/js/jspecview.json b/data/software/js/jspecview.json new file mode 100644 index 000000000000..1d470df10670 --- /dev/null +++ b/data/software/js/jspecview.json @@ -0,0 +1,11 @@ +{ + "slug": "jspecview", + "name": "JSpecView", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124662930" + ], + "licenses": [ + "GNU Library General Public License, version 2.0" + ] +} diff --git a/data/software/js/jsphp.json b/data/software/js/jsphp.json new file mode 100644 index 000000000000..e5d747531e28 --- /dev/null +++ b/data/software/js/jsphp.json @@ -0,0 +1,11 @@ +{ + "slug": "jsphp", + "name": "JsPHP", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6298651" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/js/jsr-94.json b/data/software/js/jsr-94.json new file mode 100644 index 000000000000..5852712a1da7 --- /dev/null +++ b/data/software/js/jsr-94.json @@ -0,0 +1,8 @@ +{ + "slug": "jsr-94", + "name": "JSR 94", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6108955" + ] +} diff --git a/data/software/js/jstor-text-analyzer.json b/data/software/js/jstor-text-analyzer.json new file mode 100644 index 000000000000..0a008c739bd9 --- /dev/null +++ b/data/software/js/jstor-text-analyzer.json @@ -0,0 +1,8 @@ +{ + "slug": "jstor-text-analyzer", + "name": "JSTOR Text Analyzer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085059" + ] +} diff --git a/data/software/js/jswipe.json b/data/software/js/jswipe.json new file mode 100644 index 000000000000..b84e0a31fbea --- /dev/null +++ b/data/software/js/jswipe.json @@ -0,0 +1,8 @@ +{ + "slug": "jswipe", + "name": "JSwipe", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q65119861" + ] +} diff --git a/data/software/ju/jubster.json b/data/software/ju/jubster.json new file mode 100644 index 000000000000..93276131a841 --- /dev/null +++ b/data/software/ju/jubster.json @@ -0,0 +1,11 @@ +{ + "slug": "jubster", + "name": "Jubster", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6301963" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/ju/judo-erp.json b/data/software/ju/judo-erp.json new file mode 100644 index 000000000000..a7eb81ea4b05 --- /dev/null +++ b/data/software/ju/judo-erp.json @@ -0,0 +1,12 @@ +{ + "slug": "judo-erp", + "name": "JUDO ERP", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q75145878" + ], + "release_date": "2016-01-01", + "developers": [ + "Cyber King Co., Ltd." + ] +} diff --git a/data/software/ju/jughead.json b/data/software/ju/jughead.json new file mode 100644 index 000000000000..a114e87f8609 --- /dev/null +++ b/data/software/ju/jughead.json @@ -0,0 +1,11 @@ +{ + "slug": "jughead", + "name": "Jughead", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11133401" + ], + "licenses": [ + "GNU General Public License, version 2.0 or later" + ] +} diff --git a/data/software/ju/juglow.json b/data/software/ju/juglow.json new file mode 100644 index 000000000000..94e26afa36ac --- /dev/null +++ b/data/software/ju/juglow.json @@ -0,0 +1,18 @@ +{ + "slug": "juglow", + "name": "JuGloW", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137773281" + ], + "developers": [ + "JuGloW", + "Junaidi" + ], + "programming_languages": [ + "Python" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/ju/juice.json b/data/software/ju/juice.json new file mode 100644 index 000000000000..36e5a508fa48 --- /dev/null +++ b/data/software/ju/juice.json @@ -0,0 +1,11 @@ +{ + "slug": "juice", + "name": "Juice", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6109126" + ], + "developers": [ + "Masaryk University" + ] +} diff --git a/data/software/ju/jumpchart.json b/data/software/ju/jumpchart.json new file mode 100644 index 000000000000..396f59e7433a --- /dev/null +++ b/data/software/ju/jumpchart.json @@ -0,0 +1,8 @@ +{ + "slug": "jumpchart", + "name": "Jumpchart", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085060" + ] +} diff --git a/data/software/ju/jumpshare.json b/data/software/ju/jumpshare.json new file mode 100644 index 000000000000..b7bb263d446a --- /dev/null +++ b/data/software/ju/jumpshare.json @@ -0,0 +1,11 @@ +{ + "slug": "jumpshare", + "name": "Jumpshare", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22095636" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/ju/junaio.json b/data/software/ju/junaio.json new file mode 100644 index 000000000000..c3603ba02211 --- /dev/null +++ b/data/software/ju/junaio.json @@ -0,0 +1,11 @@ +{ + "slug": "junaio", + "name": "Junaio", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6311619" + ], + "developers": [ + "Metaio GmbH" + ] +} diff --git a/data/software/ju/jungle-disk.json b/data/software/ju/jungle-disk.json new file mode 100644 index 000000000000..3a6b07d6bd6f --- /dev/null +++ b/data/software/ju/jungle-disk.json @@ -0,0 +1,15 @@ +{ + "slug": "jungle-disk", + "name": "Jungle Disk", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1713466" + ], + "release_date": "2007-01-01", + "developers": [ + "Jungle Disk" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/ju/juno.json b/data/software/ju/juno.json new file mode 100644 index 000000000000..b41827c44a6d --- /dev/null +++ b/data/software/ju/juno.json @@ -0,0 +1,8 @@ +{ + "slug": "juno", + "name": "Juno", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25205224" + ] +} diff --git a/data/software/ju/jupyter-ci.json b/data/software/ju/jupyter-ci.json new file mode 100644 index 000000000000..cb4c20a5e90a --- /dev/null +++ b/data/software/ju/jupyter-ci.json @@ -0,0 +1,15 @@ +{ + "slug": "jupyter-ci", + "name": "jupyter-ci", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112816828" + ], + "release_date": "2017-03-07", + "developers": [ + "Mark Woodbridge" + ], + "licenses": [ + "all rights reserved" + ] +} diff --git a/data/software/ju/jupyter-notebooks-at-national-library-of-estonia.json b/data/software/ju/jupyter-notebooks-at-national-library-of-estonia.json new file mode 100644 index 000000000000..c4f1b0fcaed4 --- /dev/null +++ b/data/software/ju/jupyter-notebooks-at-national-library-of-estonia.json @@ -0,0 +1,8 @@ +{ + "slug": "jupyter-notebooks-at-national-library-of-estonia", + "name": "Jupyter Notebooks at National Library of Estonia", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111421153" + ] +} diff --git a/data/software/ju/jupyter-notebooks-lc-for-robots-data-exploration.json b/data/software/ju/jupyter-notebooks-lc-for-robots-data-exploration.json new file mode 100644 index 000000000000..15fb37ed7bae --- /dev/null +++ b/data/software/ju/jupyter-notebooks-lc-for-robots-data-exploration.json @@ -0,0 +1,11 @@ +{ + "slug": "jupyter-notebooks-lc-for-robots-data-exploration", + "name": "Jupyter Notebooks LC for robots data exploration", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111450546" + ], + "licenses": [ + "Creative Commons Attribution" + ] +} diff --git a/data/software/ju/jupyter-notebooks-to-access-e-periodica.json b/data/software/ju/jupyter-notebooks-to-access-e-periodica.json new file mode 100644 index 000000000000..e950f0d7cb67 --- /dev/null +++ b/data/software/ju/jupyter-notebooks-to-access-e-periodica.json @@ -0,0 +1,8 @@ +{ + "slug": "jupyter-notebooks-to-access-e-periodica", + "name": "Jupyter notebooks to access e-periodica", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085061" + ] +} diff --git a/data/software/ju/jupyter-notebooks-to-access-e-rara.json b/data/software/ju/jupyter-notebooks-to-access-e-rara.json new file mode 100644 index 000000000000..12f7b17b1893 --- /dev/null +++ b/data/software/ju/jupyter-notebooks-to-access-e-rara.json @@ -0,0 +1,8 @@ +{ + "slug": "jupyter-notebooks-to-access-e-rara", + "name": "Jupyter notebooks to access e-rara", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085062" + ] +} diff --git a/data/software/ju/jupyter-notebooks-using-the-british-library-s-digital-collections-and-data.json b/data/software/ju/jupyter-notebooks-using-the-british-library-s-digital-collections-and-data.json new file mode 100644 index 000000000000..a930a5065fa1 --- /dev/null +++ b/data/software/ju/jupyter-notebooks-using-the-british-library-s-digital-collections-and-data.json @@ -0,0 +1,8 @@ +{ + "slug": "jupyter-notebooks-using-the-british-library-s-digital-collections-and-data", + "name": "Jupyter Notebooks using the British Library’s Digital Collections and Data", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111421205" + ] +} diff --git a/data/software/ju/jupyterhub.json b/data/software/ju/jupyterhub.json new file mode 100644 index 000000000000..0491261aede7 --- /dev/null +++ b/data/software/ju/jupyterhub.json @@ -0,0 +1,11 @@ +{ + "slug": "jupyterhub", + "name": "JupyterHub", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q99439688" + ], + "licenses": [ + "3-clause BSD License" + ] +} diff --git a/data/software/ju/just-gtfs.json b/data/software/ju/just-gtfs.json new file mode 100644 index 000000000000..cc7c19e6a015 --- /dev/null +++ b/data/software/ju/just-gtfs.json @@ -0,0 +1,11 @@ +{ + "slug": "just-gtfs", + "name": "just_gtfs", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117034667" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/ju/just-pdf.json b/data/software/ju/just-pdf.json new file mode 100644 index 000000000000..c973f1ff74b4 --- /dev/null +++ b/data/software/ju/just-pdf.json @@ -0,0 +1,11 @@ +{ + "slug": "just-pdf", + "name": "JUST PDF", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11226698" + ], + "developers": [ + "JustSystems" + ] +} diff --git a/data/software/ju/justcrm.json b/data/software/ju/justcrm.json new file mode 100644 index 000000000000..5b0913a87247 --- /dev/null +++ b/data/software/ju/justcrm.json @@ -0,0 +1,8 @@ +{ + "slug": "justcrm", + "name": "JustCRM", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140099967" + ] +} diff --git a/data/software/ju/justinmind.json b/data/software/ju/justinmind.json new file mode 100644 index 000000000000..d68bc1ee3793 --- /dev/null +++ b/data/software/ju/justinmind.json @@ -0,0 +1,8 @@ +{ + "slug": "justinmind", + "name": "Justinmind", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16255420" + ] +} diff --git a/data/software/ju/juxta-commons.json b/data/software/ju/juxta-commons.json new file mode 100644 index 000000000000..30a5a276766d --- /dev/null +++ b/data/software/ju/juxta-commons.json @@ -0,0 +1,8 @@ +{ + "slug": "juxta-commons", + "name": "Juxta Commons", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085065" + ] +} diff --git a/data/software/ju/juxta.json b/data/software/ju/juxta.json new file mode 100644 index 000000000000..3fd057340c5a --- /dev/null +++ b/data/software/ju/juxta.json @@ -0,0 +1,8 @@ +{ + "slug": "juxta", + "name": "Juxta", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085063" + ] +} diff --git a/data/software/ju/juxtaeditions-humedit.json b/data/software/ju/juxtaeditions-humedit.json new file mode 100644 index 000000000000..1f20a3a430b9 --- /dev/null +++ b/data/software/ju/juxtaeditions-humedit.json @@ -0,0 +1,8 @@ +{ + "slug": "juxtaeditions-humedit", + "name": "JuxtaEditions (HumEdit)", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085066" + ] +} diff --git a/data/software/ju/juxtaposejs.json b/data/software/ju/juxtaposejs.json new file mode 100644 index 000000000000..332b363d06c0 --- /dev/null +++ b/data/software/ju/juxtaposejs.json @@ -0,0 +1,8 @@ +{ + "slug": "juxtaposejs", + "name": "JuxtaposeJS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085067" + ] +} diff --git a/data/software/jv/jvenn.json b/data/software/jv/jvenn.json new file mode 100644 index 000000000000..7dd8757fd078 --- /dev/null +++ b/data/software/jv/jvenn.json @@ -0,0 +1,12 @@ +{ + "slug": "jvenn", + "name": "jvenn", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106465406" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/software/jw/jw-cad.json b/data/software/jw/jw-cad.json new file mode 100644 index 000000000000..1c7d2ad4806f --- /dev/null +++ b/data/software/jw/jw-cad.json @@ -0,0 +1,8 @@ +{ + "slug": "jw-cad", + "name": "Jw_cad", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11227049" + ] +} diff --git a/data/software/jw/jwalk.json b/data/software/jw/jwalk.json new file mode 100644 index 000000000000..d51092cdc6ef --- /dev/null +++ b/data/software/jw/jwalk.json @@ -0,0 +1,8 @@ +{ + "slug": "jwalk", + "name": "JWalk", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6109266" + ] +} diff --git a/data/software/k-/k-box.json b/data/software/k-/k-box.json new file mode 100644 index 000000000000..335ec30da67f --- /dev/null +++ b/data/software/k-/k-box.json @@ -0,0 +1,11 @@ +{ + "slug": "k-box", + "name": "K-box", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6322809" + ], + "programming_languages": [ + "PHP" + ] +} diff --git a/data/software/k-/k-virtual-machine.json b/data/software/k-/k-virtual-machine.json new file mode 100644 index 000000000000..a5719c2a583a --- /dev/null +++ b/data/software/k-/k-virtual-machine.json @@ -0,0 +1,11 @@ +{ + "slug": "k-virtual-machine", + "name": "K virtual machine", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q823827" + ], + "developers": [ + "Oracle Corporation" + ] +} diff --git a/data/software/k6/k6.json b/data/software/k6/k6.json new file mode 100644 index 000000000000..9aee4d6d7fbf --- /dev/null +++ b/data/software/k6/k6.json @@ -0,0 +1,8 @@ +{ + "slug": "k6", + "name": "K6", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130611329" + ] +} diff --git a/data/software/k7/k7-total-security.json b/data/software/k7/k7-total-security.json new file mode 100644 index 000000000000..d5d689277ee6 --- /dev/null +++ b/data/software/k7/k7-total-security.json @@ -0,0 +1,8 @@ +{ + "slug": "k7-total-security", + "name": "K7 Total Security", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6324658" + ] +} diff --git a/data/software/ka/kaal.json b/data/software/ka/kaal.json new file mode 100644 index 000000000000..a961aa87f80e --- /dev/null +++ b/data/software/ka/kaal.json @@ -0,0 +1,18 @@ +{ + "slug": "kaal", + "name": "Kaal", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140263776" + ], + "release_date": "2026-01-01", + "developers": [ + "Tempora Research" + ], + "publishers": [ + "Tempora Research" + ], + "genres": [ + "astrology" + ] +} diff --git a/data/software/ka/kahootz.json b/data/software/ka/kahootz.json new file mode 100644 index 000000000000..d666c513eadc --- /dev/null +++ b/data/software/ka/kahootz.json @@ -0,0 +1,8 @@ +{ + "slug": "kahootz", + "name": "Kahootz", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6347127" + ] +} diff --git a/data/software/ka/kakao-t.json b/data/software/ka/kakao-t.json new file mode 100644 index 000000000000..d396181847c3 --- /dev/null +++ b/data/software/ka/kakao-t.json @@ -0,0 +1,8 @@ +{ + "slug": "kakao-t", + "name": "Kakao T", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q21825230" + ] +} diff --git a/data/software/ka/kakao-tv.json b/data/software/ka/kakao-tv.json new file mode 100644 index 000000000000..22b1e3c29eb3 --- /dev/null +++ b/data/software/ka/kakao-tv.json @@ -0,0 +1,8 @@ +{ + "slug": "kakao-tv", + "name": "Kakao TV", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q21825231" + ] +} diff --git a/data/software/ka/kakaogroup.json b/data/software/ka/kakaogroup.json new file mode 100644 index 000000000000..25896b8e8c4c --- /dev/null +++ b/data/software/ka/kakaogroup.json @@ -0,0 +1,8 @@ +{ + "slug": "kakaogroup", + "name": "KakaoGroup", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q21463253" + ] +} diff --git a/data/software/ka/kakaopay.json b/data/software/ka/kakaopay.json new file mode 100644 index 000000000000..226ab5fbfca5 --- /dev/null +++ b/data/software/ka/kakaopay.json @@ -0,0 +1,8 @@ +{ + "slug": "kakaopay", + "name": "KakaoPay", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q47490015" + ] +} diff --git a/data/software/ka/kakaostyle.json b/data/software/ka/kakaostyle.json new file mode 100644 index 000000000000..2ba09ed00bc0 --- /dev/null +++ b/data/software/ka/kakaostyle.json @@ -0,0 +1,8 @@ +{ + "slug": "kakaostyle", + "name": "KakaoStyle", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q21825228" + ] +} diff --git a/data/software/ka/kalaban.json b/data/software/ka/kalaban.json new file mode 100644 index 000000000000..780450ed6fbc --- /dev/null +++ b/data/software/ka/kalaban.json @@ -0,0 +1,11 @@ +{ + "slug": "kalaban", + "name": "Kalaban", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138387513" + ], + "developers": [ + "TaxiApps" + ] +} diff --git a/data/software/ka/kaleidica.json b/data/software/ka/kaleidica.json new file mode 100644 index 000000000000..172f59fac332 --- /dev/null +++ b/data/software/ka/kaleidica.json @@ -0,0 +1,8 @@ +{ + "slug": "kaleidica", + "name": "Kaleidica", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25052062" + ] +} diff --git a/data/software/ka/kaleidoscope.json b/data/software/ka/kaleidoscope.json new file mode 100644 index 000000000000..e64adc62b131 --- /dev/null +++ b/data/software/ka/kaleidoscope.json @@ -0,0 +1,8 @@ +{ + "slug": "kaleidoscope", + "name": "Kaleidoscope", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085068" + ] +} diff --git a/data/software/ka/kali.json b/data/software/ka/kali.json new file mode 100644 index 000000000000..290ba55b5aab --- /dev/null +++ b/data/software/ka/kali.json @@ -0,0 +1,15 @@ +{ + "slug": "kali", + "name": "Kali", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q338118" + ], + "operating_systems": [ + "DOS", + "Microsoft Windows" + ], + "licenses": [ + "shareware" + ] +} diff --git a/data/software/ka/kallisto.json b/data/software/ka/kallisto.json new file mode 100644 index 000000000000..71096ff63bca --- /dev/null +++ b/data/software/ka/kallisto.json @@ -0,0 +1,11 @@ +{ + "slug": "kallisto", + "name": "kallisto", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113047600" + ], + "licenses": [ + "2-clause BSD License" + ] +} diff --git a/data/software/ka/kamas.json b/data/software/ka/kamas.json new file mode 100644 index 000000000000..3478f3db5bc3 --- /dev/null +++ b/data/software/ka/kamas.json @@ -0,0 +1,8 @@ +{ + "slug": "kamas", + "name": "Kamas", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18153808" + ] +} diff --git a/data/software/ka/kameleon-fireex-kfx.json b/data/software/ka/kameleon-fireex-kfx.json new file mode 100644 index 000000000000..ca6c608baafa --- /dev/null +++ b/data/software/ka/kameleon-fireex-kfx.json @@ -0,0 +1,8 @@ +{ + "slug": "kameleon-fireex-kfx", + "name": "Kameleon FireEx KFX", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17044465" + ] +} diff --git a/data/software/ka/kamergotchi.json b/data/software/ka/kamergotchi.json new file mode 100644 index 000000000000..1bb3cb3e9c52 --- /dev/null +++ b/data/software/ka/kamergotchi.json @@ -0,0 +1,16 @@ +{ + "slug": "kamergotchi", + "name": "KamerGotchi", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28837867" + ], + "release_date": "2017-02-19", + "developers": [ + "Human Factor TV" + ], + "genres": [ + "serious game", + "advergame" + ] +} diff --git a/data/software/ka/kamus.json b/data/software/ka/kamus.json new file mode 100644 index 000000000000..1019e82f3d6a --- /dev/null +++ b/data/software/ka/kamus.json @@ -0,0 +1,8 @@ +{ + "slug": "kamus", + "name": "Kamus", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25470986" + ] +} diff --git a/data/software/ka/kanban-tool.json b/data/software/ka/kanban-tool.json new file mode 100644 index 000000000000..b09176f9952d --- /dev/null +++ b/data/software/ka/kanban-tool.json @@ -0,0 +1,9 @@ +{ + "slug": "kanban-tool", + "name": "Kanban Tool", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16586280" + ], + "release_date": "2009-01-01" +} diff --git a/data/software/ka/kanboard.json b/data/software/ka/kanboard.json new file mode 100644 index 000000000000..baf2e21365cf --- /dev/null +++ b/data/software/ka/kanboard.json @@ -0,0 +1,11 @@ +{ + "slug": "kanboard", + "name": "Kanboard", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106199750" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/ka/kandinsky-music-painter.json b/data/software/ka/kandinsky-music-painter.json new file mode 100644 index 000000000000..1a74e84986b0 --- /dev/null +++ b/data/software/ka/kandinsky-music-painter.json @@ -0,0 +1,8 @@ +{ + "slug": "kandinsky-music-painter", + "name": "Kandinsky Music Painter", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1723673" + ] +} diff --git a/data/software/ka/kanji-data-box.json b/data/software/ka/kanji-data-box.json new file mode 100644 index 000000000000..751916f1ed69 --- /dev/null +++ b/data/software/ka/kanji-data-box.json @@ -0,0 +1,11 @@ +{ + "slug": "kanji-data-box", + "name": "Kanji Data Box", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11565504" + ], + "developers": [ + "IBM Japan" + ] +} diff --git a/data/software/ka/kant.json b/data/software/ka/kant.json new file mode 100644 index 000000000000..6cc3399541d2 --- /dev/null +++ b/data/software/ka/kant.json @@ -0,0 +1,15 @@ +{ + "slug": "kant", + "name": "KANT", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6325167" + ], + "developers": [ + "Technische Universität Berlin" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/software/ka/kantei-san.json b/data/software/ka/kantei-san.json new file mode 100644 index 000000000000..961d18f280b3 --- /dev/null +++ b/data/software/ka/kantei-san.json @@ -0,0 +1,11 @@ +{ + "slug": "kantei-san", + "name": "Kantei-san", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138794445" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/ka/kaqaz.json b/data/software/ka/kaqaz.json new file mode 100644 index 000000000000..0652be6f4ada --- /dev/null +++ b/data/software/ka/kaqaz.json @@ -0,0 +1,8 @@ +{ + "slug": "kaqaz", + "name": "kaqaz", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974963" + ] +} diff --git a/data/software/ka/kar2ouche.json b/data/software/ka/kar2ouche.json new file mode 100644 index 000000000000..3c85c2a32405 --- /dev/null +++ b/data/software/ka/kar2ouche.json @@ -0,0 +1,11 @@ +{ + "slug": "kar2ouche", + "name": "Kar2ouche", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16852280" + ], + "developers": [ + "Immersive Education" + ] +} diff --git a/data/software/ka/karabo.json b/data/software/ka/karabo.json new file mode 100644 index 000000000000..cd092ce251a8 --- /dev/null +++ b/data/software/ka/karabo.json @@ -0,0 +1,23 @@ +{ + "slug": "karabo", + "name": "Karabo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124353158" + ], + "release_date": "2010-01-01", + "developers": [ + "European XFEL" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [ + "Python" + ], + "licenses": [ + "Mozilla Public License, version 2.0", + "GNU General Public License, version 3.0" + ] +} diff --git a/data/software/ka/karafun.json b/data/software/ka/karafun.json new file mode 100644 index 000000000000..c6a67fe3f07b --- /dev/null +++ b/data/software/ka/karafun.json @@ -0,0 +1,8 @@ +{ + "slug": "karafun", + "name": "KaraFun", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q796768" + ] +} diff --git a/data/software/ka/karelia-watson.json b/data/software/ka/karelia-watson.json new file mode 100644 index 000000000000..3f23a091f9b9 --- /dev/null +++ b/data/software/ka/karelia-watson.json @@ -0,0 +1,15 @@ +{ + "slug": "karelia-watson", + "name": "Karelia Watson", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6369425" + ], + "release_date": "2001-11-27", + "developers": [ + "Karelia Software" + ], + "operating_systems": [ + "macOS" + ] +} diff --git a/data/software/ka/karesansui.json b/data/software/ka/karesansui.json new file mode 100644 index 000000000000..8e6a7d84b6e3 --- /dev/null +++ b/data/software/ka/karesansui.json @@ -0,0 +1,14 @@ +{ + "slug": "karesansui", + "name": "Karesansui", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11228397" + ], + "programming_languages": [ + "Python" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/ka/karta-gps.json b/data/software/ka/karta-gps.json new file mode 100644 index 000000000000..3eb9fb0d170c --- /dev/null +++ b/data/software/ka/karta-gps.json @@ -0,0 +1,8 @@ +{ + "slug": "karta-gps", + "name": "Karta GPS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q39053173" + ] +} diff --git a/data/software/ka/kartograph.json b/data/software/ka/kartograph.json new file mode 100644 index 000000000000..86c4a15707af --- /dev/null +++ b/data/software/ka/kartograph.json @@ -0,0 +1,8 @@ +{ + "slug": "kartograph", + "name": "Kartograph", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085069" + ] +} diff --git a/data/software/ka/kasane-teto.json b/data/software/ka/kasane-teto.json new file mode 100644 index 000000000000..cb392af570fc --- /dev/null +++ b/data/software/ka/kasane-teto.json @@ -0,0 +1,8 @@ +{ + "slug": "kasane-teto", + "name": "Kasane Teto", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5147714" + ] +} diff --git a/data/software/ka/kaspersky-mobile-security.json b/data/software/ka/kaspersky-mobile-security.json new file mode 100644 index 000000000000..281d9d38f7c6 --- /dev/null +++ b/data/software/ka/kaspersky-mobile-security.json @@ -0,0 +1,11 @@ +{ + "slug": "kaspersky-mobile-security", + "name": "Kaspersky Mobile Security", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1322259" + ], + "developers": [ + "Kaspersky Lab" + ] +} diff --git a/data/software/ka/katalon-studio.json b/data/software/ka/katalon-studio.json new file mode 100644 index 000000000000..30ed87202890 --- /dev/null +++ b/data/software/ka/katalon-studio.json @@ -0,0 +1,20 @@ +{ + "slug": "katalon-studio", + "name": "Katalon Studio", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q53815842" + ], + "release_date": "2015-01-01", + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [ + "Java", + "Apache Groovy" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/ka/kazaa-lite.json b/data/software/ka/kazaa-lite.json new file mode 100644 index 000000000000..07de09bdb7f8 --- /dev/null +++ b/data/software/ka/kazaa-lite.json @@ -0,0 +1,11 @@ +{ + "slug": "kazaa-lite", + "name": "Kazaa Lite", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1285474" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/kb/kbie.json b/data/software/kb/kbie.json new file mode 100644 index 000000000000..5d44629b7adc --- /dev/null +++ b/data/software/kb/kbie.json @@ -0,0 +1,8 @@ +{ + "slug": "kbie", + "name": "kbie", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140230573" + ] +} diff --git a/data/software/kc/kcm-fcitx.json b/data/software/kc/kcm-fcitx.json new file mode 100644 index 000000000000..67e64715f701 --- /dev/null +++ b/data/software/kc/kcm-fcitx.json @@ -0,0 +1,8 @@ +{ + "slug": "kcm-fcitx", + "name": "kcm-fcitx", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974964" + ] +} diff --git a/data/software/kd/kdewebdev.json b/data/software/kd/kdewebdev.json new file mode 100644 index 000000000000..39124d355afc --- /dev/null +++ b/data/software/kd/kdewebdev.json @@ -0,0 +1,8 @@ +{ + "slug": "kdewebdev", + "name": "Kdewebdev", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1054528" + ] +} diff --git a/data/software/kd/kdiskfree.json b/data/software/kd/kdiskfree.json new file mode 100644 index 000000000000..4647d1998c9a --- /dev/null +++ b/data/software/kd/kdiskfree.json @@ -0,0 +1,14 @@ +{ + "slug": "kdiskfree", + "name": "KDiskFree", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4042119" + ], + "operating_systems": [ + "Unix-like operating system" + ], + "licenses": [ + "GNU General Public License, version 2.0" + ] +} diff --git a/data/software/kd/kdocker.json b/data/software/kd/kdocker.json new file mode 100644 index 000000000000..e4f1f67754c4 --- /dev/null +++ b/data/software/kd/kdocker.json @@ -0,0 +1,8 @@ +{ + "slug": "kdocker", + "name": "KDocker", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62853014" + ] +} diff --git a/data/software/ke/keel.json b/data/software/ke/keel.json new file mode 100644 index 000000000000..694a8666f1b0 --- /dev/null +++ b/data/software/ke/keel.json @@ -0,0 +1,11 @@ +{ + "slug": "keel", + "name": "Keel", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5668776" + ], + "programming_languages": [ + "Java" + ] +} diff --git a/data/software/ke/keepsoft.json b/data/software/ke/keepsoft.json new file mode 100644 index 000000000000..f07bececeded --- /dev/null +++ b/data/software/ke/keepsoft.json @@ -0,0 +1,19 @@ +{ + "slug": "keepsoft", + "name": "keepsoft", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4165764" + ], + "operating_systems": [ + "iOS", + "Windows Mobile", + "Microsoft Windows" + ], + "programming_languages": [ + "Delphi" + ], + "licenses": [ + "shareware" + ] +} diff --git a/data/software/ke/keepsolid-vpn-unlimited.json b/data/software/ke/keepsolid-vpn-unlimited.json new file mode 100644 index 000000000000..afb914b87bd5 --- /dev/null +++ b/data/software/ke/keepsolid-vpn-unlimited.json @@ -0,0 +1,16 @@ +{ + "slug": "keepsolid-vpn-unlimited", + "name": "KeepSolid VPN Unlimited", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60762288" + ], + "developers": [ + "KeepSolid" + ], + "operating_systems": [ + "iOS", + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/software/ke/keepvault.json b/data/software/ke/keepvault.json new file mode 100644 index 000000000000..7c14e2f76203 --- /dev/null +++ b/data/software/ke/keepvault.json @@ -0,0 +1,8 @@ +{ + "slug": "keepvault", + "name": "KeepVault", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16255667" + ] +} diff --git a/data/software/ke/keka.json b/data/software/ke/keka.json new file mode 100644 index 000000000000..f977f7a5c04b --- /dev/null +++ b/data/software/ke/keka.json @@ -0,0 +1,11 @@ +{ + "slug": "keka", + "name": "Keka", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105950097" + ], + "operating_systems": [ + "macOS" + ] +} diff --git a/data/software/ke/kekul-program.json b/data/software/ke/kekul-program.json new file mode 100644 index 000000000000..1c9d7a27d64d --- /dev/null +++ b/data/software/ke/kekul-program.json @@ -0,0 +1,8 @@ +{ + "slug": "kekul-program", + "name": "Kekulé Program", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6385393" + ] +} diff --git a/data/software/ke/kelkoo.json b/data/software/ke/kelkoo.json new file mode 100644 index 000000000000..2e1d8b9a2c0d --- /dev/null +++ b/data/software/ke/kelkoo.json @@ -0,0 +1,8 @@ +{ + "slug": "kelkoo", + "name": "Kelkoo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1639237" + ] +} diff --git a/data/software/ke/keobat.json b/data/software/ke/keobat.json new file mode 100644 index 000000000000..fa52e7cb9929 --- /dev/null +++ b/data/software/ke/keobat.json @@ -0,0 +1,8 @@ +{ + "slug": "keobat", + "name": "KeoBat", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139827047" + ] +} diff --git a/data/software/ke/kepler-scientific-workflow-system.json b/data/software/ke/kepler-scientific-workflow-system.json new file mode 100644 index 000000000000..a6dde69252d8 --- /dev/null +++ b/data/software/ke/kepler-scientific-workflow-system.json @@ -0,0 +1,23 @@ +{ + "slug": "kepler-scientific-workflow-system", + "name": "Kepler scientific workflow system", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6393209" + ], + "developers": [ + "University of California, San Diego", + "University of California, Santa Barbara", + "University of California, Davis" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [ + "Java" + ], + "licenses": [ + "Berkeley Software Distribution" + ] +} diff --git a/data/software/ke/keploy.json b/data/software/ke/keploy.json new file mode 100644 index 000000000000..b39da82954e8 --- /dev/null +++ b/data/software/ke/keploy.json @@ -0,0 +1,12 @@ +{ + "slug": "keploy", + "name": "Keploy", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137395272" + ], + "release_date": "2022-01-28", + "licenses": [ + "Apache Software License 2.0" + ] +} diff --git a/data/software/ke/keras.json b/data/software/ke/keras.json new file mode 100644 index 000000000000..912da617011b --- /dev/null +++ b/data/software/ke/keras.json @@ -0,0 +1,18 @@ +{ + "slug": "keras", + "name": "Keras", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28470421" + ], + "developers": [ + "François Chollet" + ], + "programming_languages": [ + "Python" + ], + "licenses": [ + "Apache Software License 2.0", + "MIT License" + ] +} diff --git a/data/software/ke/kerio-connect.json b/data/software/ke/kerio-connect.json new file mode 100644 index 000000000000..954b808a4b15 --- /dev/null +++ b/data/software/ke/kerio-connect.json @@ -0,0 +1,11 @@ +{ + "slug": "kerio-connect", + "name": "Kerio Connect", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3195443" + ], + "developers": [ + "Kerio Technologies" + ] +} diff --git a/data/software/ke/kerliix-oauth.json b/data/software/ke/kerliix-oauth.json new file mode 100644 index 000000000000..a41fbc75dbb3 --- /dev/null +++ b/data/software/ke/kerliix-oauth.json @@ -0,0 +1,22 @@ +{ + "slug": "kerliix-oauth", + "name": "kerliix-oauth", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136657237" + ], + "release_date": "2025-10-28", + "developers": [ + "Kerliix Corporation Limited" + ], + "publishers": [ + "Kerliix Corporation Limited" + ], + "programming_languages": [ + "Python", + "TypeScript" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/ke/kernel-marker.json b/data/software/ke/kernel-marker.json new file mode 100644 index 000000000000..e99d498212cb --- /dev/null +++ b/data/software/ke/kernel-marker.json @@ -0,0 +1,8 @@ +{ + "slug": "kernel-marker", + "name": "Kernel marker", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6394195" + ] +} diff --git a/data/software/ke/kernel-relocation.json b/data/software/ke/kernel-relocation.json new file mode 100644 index 000000000000..31c881671a4e --- /dev/null +++ b/data/software/ke/kernel-relocation.json @@ -0,0 +1,8 @@ +{ + "slug": "kernel-relocation", + "name": "Kernel relocation", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6394204" + ] +} diff --git a/data/software/ke/kernelcad.json b/data/software/ke/kernelcad.json new file mode 100644 index 000000000000..36d0b7597d67 --- /dev/null +++ b/data/software/ke/kernelcad.json @@ -0,0 +1,8 @@ +{ + "slug": "kernelcad", + "name": "KernelCAD", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17093023" + ] +} diff --git a/data/software/ke/kernelex.json b/data/software/ke/kernelex.json new file mode 100644 index 000000000000..9a86a4a87f51 --- /dev/null +++ b/data/software/ke/kernelex.json @@ -0,0 +1,8 @@ +{ + "slug": "kernelex", + "name": "KernelEx", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q12029175" + ] +} diff --git a/data/software/ke/kestra.json b/data/software/ke/kestra.json new file mode 100644 index 000000000000..acd07c36f89a --- /dev/null +++ b/data/software/ke/kestra.json @@ -0,0 +1,17 @@ +{ + "slug": "kestra", + "name": "Kestra", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139806487" + ], + "developers": [ + "Kestra Technologies" + ], + "publishers": [ + "Kestra Technologies" + ], + "licenses": [ + "Apache Software License 2.0" + ] +} diff --git a/data/software/ke/kevoree.json b/data/software/ke/kevoree.json new file mode 100644 index 000000000000..96f109c51566 --- /dev/null +++ b/data/software/ke/kevoree.json @@ -0,0 +1,8 @@ +{ + "slug": "kevoree", + "name": "Kevoree", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q14655123" + ] +} diff --git a/data/software/ke/kexec.json b/data/software/ke/kexec.json new file mode 100644 index 000000000000..d81c5197d7ff --- /dev/null +++ b/data/software/ke/kexec.json @@ -0,0 +1,8 @@ +{ + "slug": "kexec", + "name": "kexec", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6397983" + ] +} diff --git a/data/software/ke/keyboard-maestro.json b/data/software/ke/keyboard-maestro.json new file mode 100644 index 000000000000..129b93b902cb --- /dev/null +++ b/data/software/ke/keyboard-maestro.json @@ -0,0 +1,8 @@ +{ + "slug": "keyboard-maestro", + "name": "Keyboard Maestro", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18153129" + ] +} diff --git a/data/software/ke/keyboard-ninja.json b/data/software/ke/keyboard-ninja.json new file mode 100644 index 000000000000..ddeb37269c44 --- /dev/null +++ b/data/software/ke/keyboard-ninja.json @@ -0,0 +1,8 @@ +{ + "slug": "keyboard-ninja", + "name": "Keyboard Ninja", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4042173" + ] +} diff --git a/data/software/ke/keychain-q62863995.json b/data/software/ke/keychain-q62863995.json new file mode 100644 index 000000000000..4a896e44be73 --- /dev/null +++ b/data/software/ke/keychain-q62863995.json @@ -0,0 +1,8 @@ +{ + "slug": "keychain-q62863995", + "name": "keychain", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62863995" + ] +} diff --git a/data/software/ke/keychain.json b/data/software/ke/keychain.json new file mode 100644 index 000000000000..a818759bbf30 --- /dev/null +++ b/data/software/ke/keychain.json @@ -0,0 +1,14 @@ +{ + "slug": "keychain", + "name": "Keychain", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q250173" + ], + "developers": [ + "Apple Inc." + ], + "licenses": [ + "Apple Public Source License" + ] +} diff --git a/data/software/ke/keycreator.json b/data/software/ke/keycreator.json new file mode 100644 index 000000000000..2cc52fea71a8 --- /dev/null +++ b/data/software/ke/keycreator.json @@ -0,0 +1,12 @@ +{ + "slug": "keycreator", + "name": "KeyCreator", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q20874827" + ], + "release_date": "2004-01-01", + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/ke/keyhole.json b/data/software/ke/keyhole.json new file mode 100644 index 000000000000..8928cb9fa145 --- /dev/null +++ b/data/software/ke/keyhole.json @@ -0,0 +1,8 @@ +{ + "slug": "keyhole", + "name": "Keyhole", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085070" + ] +} diff --git a/data/software/ke/keyholetv.json b/data/software/ke/keyholetv.json new file mode 100644 index 000000000000..029f6220afaa --- /dev/null +++ b/data/software/ke/keyholetv.json @@ -0,0 +1,15 @@ +{ + "slug": "keyholetv", + "name": "KeyHoleTV", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2625095" + ], + "operating_systems": [ + "Mac operating system", + "Microsoft Windows" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/ke/keylight.json b/data/software/ke/keylight.json new file mode 100644 index 000000000000..02b9e2d99b97 --- /dev/null +++ b/data/software/ke/keylight.json @@ -0,0 +1,8 @@ +{ + "slug": "keylight", + "name": "Keylight", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3195866" + ] +} diff --git a/data/software/ke/keymagic.json b/data/software/ke/keymagic.json new file mode 100644 index 000000000000..de40e84635aa --- /dev/null +++ b/data/software/ke/keymagic.json @@ -0,0 +1,12 @@ +{ + "slug": "keymagic", + "name": "Keymagic", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q19695058" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/software/ke/keyman.json b/data/software/ke/keyman.json new file mode 100644 index 000000000000..8ba06c0f1d04 --- /dev/null +++ b/data/software/ke/keyman.json @@ -0,0 +1,15 @@ +{ + "slug": "keyman", + "name": "Keyman", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139832007" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/ke/keyrocket.json b/data/software/ke/keyrocket.json new file mode 100644 index 000000000000..37b840e6a368 --- /dev/null +++ b/data/software/ke/keyrocket.json @@ -0,0 +1,8 @@ +{ + "slug": "keyrocket", + "name": "KeyRocket", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6398002" + ] +} diff --git a/data/software/ke/keystone.json b/data/software/ke/keystone.json new file mode 100644 index 000000000000..499cd75fd417 --- /dev/null +++ b/data/software/ke/keystone.json @@ -0,0 +1,11 @@ +{ + "slug": "keystone", + "name": "keystone", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974970" + ], + "licenses": [ + "Apache License" + ] +} diff --git a/data/software/kf/kflow.json b/data/software/kf/kflow.json new file mode 100644 index 000000000000..0990f376a1d3 --- /dev/null +++ b/data/software/kf/kflow.json @@ -0,0 +1,11 @@ +{ + "slug": "kflow", + "name": "KFlow", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139119515" + ], + "developers": [ + "Kentech" + ] +} diff --git a/data/software/kh/kh-coder.json b/data/software/kh/kh-coder.json new file mode 100644 index 000000000000..773b9e4e9431 --- /dev/null +++ b/data/software/kh/kh-coder.json @@ -0,0 +1,8 @@ +{ + "slug": "kh-coder", + "name": "KH Coder", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085071" + ] +} diff --git a/data/software/kh/khimera.json b/data/software/kh/khimera.json new file mode 100644 index 000000000000..77492bdd1b9d --- /dev/null +++ b/data/software/kh/khimera.json @@ -0,0 +1,8 @@ +{ + "slug": "khimera", + "name": "Khimera", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6401644" + ] +} diff --git a/data/software/ki/kia-uvo.json b/data/software/ki/kia-uvo.json new file mode 100644 index 000000000000..c659522a54cf --- /dev/null +++ b/data/software/ki/kia-uvo.json @@ -0,0 +1,11 @@ +{ + "slug": "kia-uvo", + "name": "Kia Uvo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3815033" + ], + "developers": [ + "Kia" + ] +} diff --git a/data/software/ki/kickidler.json b/data/software/ki/kickidler.json new file mode 100644 index 000000000000..a83e702959fd --- /dev/null +++ b/data/software/ki/kickidler.json @@ -0,0 +1,8 @@ +{ + "slug": "kickidler", + "name": "Kickidler", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q104975578" + ] +} diff --git a/data/software/ki/kiddesk.json b/data/software/ki/kiddesk.json new file mode 100644 index 000000000000..dcc07c239e87 --- /dev/null +++ b/data/software/ki/kiddesk.json @@ -0,0 +1,8 @@ +{ + "slug": "kiddesk", + "name": "KidDesk", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6404408" + ] +} diff --git a/data/software/ki/kidentitymanagement.json b/data/software/ki/kidentitymanagement.json new file mode 100644 index 000000000000..1c06e47c9b48 --- /dev/null +++ b/data/software/ki/kidentitymanagement.json @@ -0,0 +1,8 @@ +{ + "slug": "kidentitymanagement", + "name": "kidentitymanagement", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065610" + ] +} diff --git a/data/software/ki/kidguard.json b/data/software/ki/kidguard.json new file mode 100644 index 000000000000..bcb0299e4ffb --- /dev/null +++ b/data/software/ki/kidguard.json @@ -0,0 +1,8 @@ +{ + "slug": "kidguard", + "name": "KidGuard", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q55640256" + ] +} diff --git a/data/software/ki/kiekko-tk.json b/data/software/ki/kiekko-tk.json new file mode 100644 index 000000000000..34f25523a461 --- /dev/null +++ b/data/software/ki/kiekko-tk.json @@ -0,0 +1,8 @@ +{ + "slug": "kiekko-tk", + "name": "kiekko.tk", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6405207" + ] +} diff --git a/data/software/ki/killer-soft.json b/data/software/ki/killer-soft.json new file mode 100644 index 000000000000..a235829aff79 --- /dev/null +++ b/data/software/ki/killer-soft.json @@ -0,0 +1,8 @@ +{ + "slug": "killer-soft", + "name": "killer soft", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131863491" + ] +} diff --git a/data/software/ki/kimble.json b/data/software/ki/kimble.json new file mode 100644 index 000000000000..eea035f7c0db --- /dev/null +++ b/data/software/ki/kimble.json @@ -0,0 +1,8 @@ +{ + "slug": "kimble", + "name": "Kimble", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60775051" + ] +} diff --git a/data/software/ki/kindhoa.json b/data/software/ki/kindhoa.json new file mode 100644 index 000000000000..2fb433e448db --- /dev/null +++ b/data/software/ki/kindhoa.json @@ -0,0 +1,11 @@ +{ + "slug": "kindhoa", + "name": "KindHOA", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140375014" + ], + "operating_systems": [ + "web browser" + ] +} diff --git a/data/software/ki/kindwords.json b/data/software/ki/kindwords.json new file mode 100644 index 000000000000..8aa94f66e1cc --- /dev/null +++ b/data/software/ki/kindwords.json @@ -0,0 +1,8 @@ +{ + "slug": "kindwords", + "name": "KindWords", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6410493" + ] +} diff --git a/data/software/ki/kinect.json b/data/software/ki/kinect.json new file mode 100644 index 000000000000..8228a9dcd173 --- /dev/null +++ b/data/software/ki/kinect.json @@ -0,0 +1,11 @@ +{ + "slug": "kinect", + "name": "Kinect", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q474334" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/ki/kinemage.json b/data/software/ki/kinemage.json new file mode 100644 index 000000000000..8f86ab99c136 --- /dev/null +++ b/data/software/ki/kinemage.json @@ -0,0 +1,8 @@ +{ + "slug": "kinemage", + "name": "Kinemage", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6410688" + ] +} diff --git a/data/software/ki/kingsoft-cloud.json b/data/software/ki/kingsoft-cloud.json new file mode 100644 index 000000000000..f548fa210dec --- /dev/null +++ b/data/software/ki/kingsoft-cloud.json @@ -0,0 +1,11 @@ +{ + "slug": "kingsoft-cloud", + "name": "Kingsoft Cloud", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q15924602" + ], + "developers": [ + "Kingsoft" + ] +} diff --git a/data/software/ki/kintone.json b/data/software/ki/kintone.json new file mode 100644 index 000000000000..49e667705d28 --- /dev/null +++ b/data/software/ki/kintone.json @@ -0,0 +1,11 @@ +{ + "slug": "kintone", + "name": "Kintone", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28687881" + ], + "developers": [ + "Cybozu" + ] +} diff --git a/data/software/ki/kisao.json b/data/software/ki/kisao.json new file mode 100644 index 000000000000..389cd08dcbfd --- /dev/null +++ b/data/software/ki/kisao.json @@ -0,0 +1,8 @@ +{ + "slug": "kisao", + "name": "KiSAO", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17062520" + ] +} diff --git a/data/software/ki/kisekae-set-system.json b/data/software/ki/kisekae-set-system.json new file mode 100644 index 000000000000..04bb82111d68 --- /dev/null +++ b/data/software/ki/kisekae-set-system.json @@ -0,0 +1,8 @@ +{ + "slug": "kisekae-set-system", + "name": "Kisekae Set System", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q761424" + ] +} diff --git a/data/software/ki/kismac.json b/data/software/ki/kismac.json new file mode 100644 index 000000000000..6a76684193cb --- /dev/null +++ b/data/software/ki/kismac.json @@ -0,0 +1,17 @@ +{ + "slug": "kismac", + "name": "KisMAC", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2036340" + ], + "operating_systems": [ + "macOS" + ], + "programming_languages": [ + "Objective-C" + ], + "licenses": [ + "GNU General Public License" + ] +} diff --git a/data/software/ki/kismet-ubertooth.json b/data/software/ki/kismet-ubertooth.json new file mode 100644 index 000000000000..4c50d8797e1d --- /dev/null +++ b/data/software/ki/kismet-ubertooth.json @@ -0,0 +1,8 @@ +{ + "slug": "kismet-ubertooth", + "name": "kismet-ubertooth", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974971" + ] +} diff --git a/data/software/ki/kissable.json b/data/software/ki/kissable.json new file mode 100644 index 000000000000..b9b4eeda2962 --- /dev/null +++ b/data/software/ki/kissable.json @@ -0,0 +1,18 @@ +{ + "slug": "kissable", + "name": "Kissable", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140357318" + ], + "release_date": "2026-01-01", + "operating_systems": [ + "iOS" + ], + "licenses": [ + "proprietary license" + ], + "genres": [ + "conversational AI" + ] +} diff --git a/data/software/ki/kissmetrics.json b/data/software/ki/kissmetrics.json new file mode 100644 index 000000000000..b9f7a7dd42ed --- /dev/null +++ b/data/software/ki/kissmetrics.json @@ -0,0 +1,8 @@ +{ + "slug": "kissmetrics", + "name": "Kissmetrics", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22906166" + ] +} diff --git a/data/software/ki/kitap-radiosi.json b/data/software/ki/kitap-radiosi.json new file mode 100644 index 000000000000..1d042496f763 --- /dev/null +++ b/data/software/ki/kitap-radiosi.json @@ -0,0 +1,11 @@ +{ + "slug": "kitap-radiosi", + "name": "Kitap radiosi", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q95388989" + ], + "publishers": [ + "Tatmedia" + ] +} diff --git a/data/software/ki/kith-and-kin-pro.json b/data/software/ki/kith-and-kin-pro.json new file mode 100644 index 000000000000..498e9a676cbf --- /dev/null +++ b/data/software/ki/kith-and-kin-pro.json @@ -0,0 +1,11 @@ +{ + "slug": "kith-and-kin-pro", + "name": "Kith and Kin Pro", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6418193" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/ki/kittl.json b/data/software/ki/kittl.json new file mode 100644 index 000000000000..9f9ff8755e69 --- /dev/null +++ b/data/software/ki/kittl.json @@ -0,0 +1,9 @@ +{ + "slug": "kittl", + "name": "Kittl", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135206129" + ], + "release_date": "2020-01-01" +} diff --git a/data/software/ki/kitura.json b/data/software/ki/kitura.json new file mode 100644 index 000000000000..a10a88646041 --- /dev/null +++ b/data/software/ki/kitura.json @@ -0,0 +1,17 @@ +{ + "slug": "kitura", + "name": "Kitura", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28130427" + ], + "developers": [ + "IBM" + ], + "programming_languages": [ + "Swift" + ], + "licenses": [ + "Apache License" + ] +} diff --git a/data/software/ki/kiva.json b/data/software/ki/kiva.json new file mode 100644 index 000000000000..2b6b878cd3e0 --- /dev/null +++ b/data/software/ki/kiva.json @@ -0,0 +1,15 @@ +{ + "slug": "kiva", + "name": "KIVA", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6331201" + ], + "developers": [ + "Los Alamos National Laboratory" + ], + "programming_languages": [ + "Fortran 95", + "Fortran" + ] +} diff --git a/data/software/ki/kiwi.json b/data/software/ki/kiwi.json new file mode 100644 index 000000000000..766129acd21a --- /dev/null +++ b/data/software/ki/kiwi.json @@ -0,0 +1,14 @@ +{ + "slug": "kiwi", + "name": "KIWI", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6331221" + ], + "developers": [ + "Marcus Schäfer" + ], + "programming_languages": [ + "Python" + ] +} diff --git a/data/software/kl/klatin.json b/data/software/kl/klatin.json new file mode 100644 index 000000000000..518f891a4650 --- /dev/null +++ b/data/software/kl/klatin.json @@ -0,0 +1,8 @@ +{ + "slug": "klatin", + "name": "KLatin", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3812095" + ] +} diff --git a/data/software/kl/kleo-bare-metal-backup.json b/data/software/kl/kleo-bare-metal-backup.json new file mode 100644 index 000000000000..00b7d7f46ba1 --- /dev/null +++ b/data/software/kl/kleo-bare-metal-backup.json @@ -0,0 +1,11 @@ +{ + "slug": "kleo-bare-metal-backup", + "name": "Kleo Bare Metal Backup", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6420567" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/kl/klic-key-letter-in-context.json b/data/software/kl/klic-key-letter-in-context.json new file mode 100644 index 000000000000..043cdb0dc227 --- /dev/null +++ b/data/software/kl/klic-key-letter-in-context.json @@ -0,0 +1,8 @@ +{ + "slug": "klic-key-letter-in-context", + "name": "KLIC (Key Letter in Context)", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087821" + ] +} diff --git a/data/software/kl/klick.json b/data/software/kl/klick.json new file mode 100644 index 000000000000..0f513f761dcd --- /dev/null +++ b/data/software/kl/klick.json @@ -0,0 +1,8 @@ +{ + "slug": "klick", + "name": "klick", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62852998" + ] +} diff --git a/data/software/kl/klik.json b/data/software/kl/klik.json new file mode 100644 index 000000000000..1d0d363f1ff8 --- /dev/null +++ b/data/software/kl/klik.json @@ -0,0 +1,8 @@ +{ + "slug": "klik", + "name": "Klik", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1253866" + ] +} diff --git a/data/software/kl/kling-ai.json b/data/software/kl/kling-ai.json new file mode 100644 index 000000000000..a16d034d0272 --- /dev/null +++ b/data/software/kl/kling-ai.json @@ -0,0 +1,11 @@ +{ + "slug": "kling-ai", + "name": "Kling AI", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q133141218" + ], + "developers": [ + "Kuaishou" + ] +} diff --git a/data/software/kl/klipper.json b/data/software/kl/klipper.json new file mode 100644 index 000000000000..46c71e6e480a --- /dev/null +++ b/data/software/kl/klipper.json @@ -0,0 +1,8 @@ +{ + "slug": "klipper", + "name": "Klipper", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131821856" + ] +} diff --git a/data/software/kl/kloxo-mr.json b/data/software/kl/kloxo-mr.json new file mode 100644 index 000000000000..f5bc3265f215 --- /dev/null +++ b/data/software/kl/kloxo-mr.json @@ -0,0 +1,8 @@ +{ + "slug": "kloxo-mr", + "name": "Kloxo-MR", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25345988" + ] +} diff --git a/data/software/kl/klx-esm.json b/data/software/kl/klx-esm.json new file mode 100644 index 000000000000..cf8dd5c54ecb --- /dev/null +++ b/data/software/kl/klx-esm.json @@ -0,0 +1,11 @@ +{ + "slug": "klx-esm", + "name": "KLX ESM", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140215781" + ], + "developers": [ + "Keolux" + ] +} diff --git a/data/software/km/kmenuedit.json b/data/software/km/kmenuedit.json new file mode 100644 index 000000000000..fe4c769979a1 --- /dev/null +++ b/data/software/km/kmenuedit.json @@ -0,0 +1,8 @@ +{ + "slug": "kmenuedit", + "name": "kmenuedit", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065497" + ] +} diff --git a/data/software/km/kmod.json b/data/software/km/kmod.json new file mode 100644 index 000000000000..e2d96c7f8dc0 --- /dev/null +++ b/data/software/km/kmod.json @@ -0,0 +1,11 @@ +{ + "slug": "kmod", + "name": "kmod", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974972" + ], + "licenses": [ + "GNU Lesser General Public License, version 2.1 or later" + ] +} diff --git a/data/software/kn/knock.json b/data/software/kn/knock.json new file mode 100644 index 000000000000..1059adc83e06 --- /dev/null +++ b/data/software/kn/knock.json @@ -0,0 +1,8 @@ +{ + "slug": "knock", + "name": "knock", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3198029" + ] +} diff --git a/data/software/kn/knocker.json b/data/software/kn/knocker.json new file mode 100644 index 000000000000..d0649a151383 --- /dev/null +++ b/data/software/kn/knocker.json @@ -0,0 +1,8 @@ +{ + "slug": "knocker", + "name": "knocker", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62852950" + ] +} diff --git a/data/software/kn/knockin.json b/data/software/kn/knockin.json new file mode 100644 index 000000000000..7f228db29814 --- /dev/null +++ b/data/software/kn/knockin.json @@ -0,0 +1,8 @@ +{ + "slug": "knockin", + "name": "Knockin", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q29364633" + ] +} diff --git a/data/software/kn/knopflerfish.json b/data/software/kn/knopflerfish.json new file mode 100644 index 000000000000..e1309ee787fa --- /dev/null +++ b/data/software/kn/knopflerfish.json @@ -0,0 +1,8 @@ +{ + "slug": "knopflerfish", + "name": "Knopflerfish", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4042269" + ] +} diff --git a/data/software/kn/knotplot.json b/data/software/kn/knotplot.json new file mode 100644 index 000000000000..040f72dbaeb3 --- /dev/null +++ b/data/software/kn/knotplot.json @@ -0,0 +1,8 @@ +{ + "slug": "knotplot", + "name": "KnotPlot", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123177663" + ] +} diff --git a/data/software/kn/knowledge-engineering-environment.json b/data/software/kn/knowledge-engineering-environment.json new file mode 100644 index 000000000000..9560937bdf17 --- /dev/null +++ b/data/software/kn/knowledge-engineering-environment.json @@ -0,0 +1,11 @@ +{ + "slug": "knowledge-engineering-environment", + "name": "Knowledge Engineering Environment", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6423293" + ], + "programming_languages": [ + "Common Lisp" + ] +} diff --git a/data/software/kn/knowledge-forum.json b/data/software/kn/knowledge-forum.json new file mode 100644 index 000000000000..32df263c39ea --- /dev/null +++ b/data/software/kn/knowledge-forum.json @@ -0,0 +1,8 @@ +{ + "slug": "knowledge-forum", + "name": "Knowledge Forum", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6053044" + ] +} diff --git a/data/software/kn/knowledgebase.json b/data/software/kn/knowledgebase.json new file mode 100644 index 000000000000..ba12b5515c88 --- /dev/null +++ b/data/software/kn/knowledgebase.json @@ -0,0 +1,22 @@ +{ + "slug": "knowledgebase", + "name": "KnowledgeBase", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139742112" + ], + "developers": [ + "Text, Inc.", + "Text" + ], + "publishers": [ + "Text", + "Text, Inc." + ], + "operating_systems": [ + "web browser" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/kn/knowledgeman.json b/data/software/kn/knowledgeman.json new file mode 100644 index 000000000000..d3bbd8502d3e --- /dev/null +++ b/data/software/kn/knowledgeman.json @@ -0,0 +1,8 @@ +{ + "slug": "knowledgeman", + "name": "KnowledgeMan", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6423267" + ] +} diff --git a/data/software/kn/knowmax.json b/data/software/kn/knowmax.json new file mode 100644 index 000000000000..35f6d2dfa86c --- /dev/null +++ b/data/software/kn/knowmax.json @@ -0,0 +1,8 @@ +{ + "slug": "knowmax", + "name": "Knowmax", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q73908613" + ] +} diff --git a/data/software/kn/knowmint.json b/data/software/kn/knowmint.json new file mode 100644 index 000000000000..5a675a2adc7e --- /dev/null +++ b/data/software/kn/knowmint.json @@ -0,0 +1,14 @@ +{ + "slug": "knowmint", + "name": "KnowMint", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138664028" + ], + "programming_languages": [ + "TypeScript" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/ko/kobable.json b/data/software/ko/kobable.json new file mode 100644 index 000000000000..22d5b5361367 --- /dev/null +++ b/data/software/ko/kobable.json @@ -0,0 +1,12 @@ +{ + "slug": "kobable", + "name": "Kobable", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135412162" + ], + "genres": [ + "qualitative coding", + "education" + ] +} diff --git a/data/software/ko/kodak-picture-kiosk.json b/data/software/ko/kodak-picture-kiosk.json new file mode 100644 index 000000000000..214edd117947 --- /dev/null +++ b/data/software/ko/kodak-picture-kiosk.json @@ -0,0 +1,8 @@ +{ + "slug": "kodak-picture-kiosk", + "name": "Kodak Picture Kiosk", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6425132" + ] +} diff --git a/data/software/ko/kodeks.json b/data/software/ko/kodeks.json new file mode 100644 index 000000000000..d68bfe7aa5b6 --- /dev/null +++ b/data/software/ko/kodeks.json @@ -0,0 +1,8 @@ +{ + "slug": "kodeks", + "name": "Kodeks", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16664414" + ] +} diff --git a/data/software/ko/kodi-audiodecoder-modplug.json b/data/software/ko/kodi-audiodecoder-modplug.json new file mode 100644 index 000000000000..c4e5d07d5dbd --- /dev/null +++ b/data/software/ko/kodi-audiodecoder-modplug.json @@ -0,0 +1,8 @@ +{ + "slug": "kodi-audiodecoder-modplug", + "name": "kodi-audiodecoder-modplug", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974973" + ] +} diff --git a/data/software/ko/kodi-audiodecoder-nosefart.json b/data/software/ko/kodi-audiodecoder-nosefart.json new file mode 100644 index 000000000000..8f4aba8ba232 --- /dev/null +++ b/data/software/ko/kodi-audiodecoder-nosefart.json @@ -0,0 +1,8 @@ +{ + "slug": "kodi-audiodecoder-nosefart", + "name": "kodi-audiodecoder-nosefart", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974974" + ] +} diff --git a/data/software/ko/kodi-audiodecoder-sidplay.json b/data/software/ko/kodi-audiodecoder-sidplay.json new file mode 100644 index 000000000000..a07395cb30fb --- /dev/null +++ b/data/software/ko/kodi-audiodecoder-sidplay.json @@ -0,0 +1,8 @@ +{ + "slug": "kodi-audiodecoder-sidplay", + "name": "kodi-audiodecoder-sidplay", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974975" + ] +} diff --git a/data/software/ko/kodi-audiodecoder-snesapu.json b/data/software/ko/kodi-audiodecoder-snesapu.json new file mode 100644 index 000000000000..e318390df4d7 --- /dev/null +++ b/data/software/ko/kodi-audiodecoder-snesapu.json @@ -0,0 +1,8 @@ +{ + "slug": "kodi-audiodecoder-snesapu", + "name": "kodi-audiodecoder-snesapu", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974976" + ] +} diff --git a/data/software/ko/kodi-audiodecoder-stsound.json b/data/software/ko/kodi-audiodecoder-stsound.json new file mode 100644 index 000000000000..27c36aeceaca --- /dev/null +++ b/data/software/ko/kodi-audiodecoder-stsound.json @@ -0,0 +1,8 @@ +{ + "slug": "kodi-audiodecoder-stsound", + "name": "kodi-audiodecoder-stsound", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974977" + ] +} diff --git a/data/software/ko/kodi-audiodecoder-timidity.json b/data/software/ko/kodi-audiodecoder-timidity.json new file mode 100644 index 000000000000..53b60872e3be --- /dev/null +++ b/data/software/ko/kodi-audiodecoder-timidity.json @@ -0,0 +1,8 @@ +{ + "slug": "kodi-audiodecoder-timidity", + "name": "kodi-audiodecoder-timidity", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974978" + ] +} diff --git a/data/software/ko/kodi-audiodecoder-vgmstream.json b/data/software/ko/kodi-audiodecoder-vgmstream.json new file mode 100644 index 000000000000..83fed67e5865 --- /dev/null +++ b/data/software/ko/kodi-audiodecoder-vgmstream.json @@ -0,0 +1,8 @@ +{ + "slug": "kodi-audiodecoder-vgmstream", + "name": "kodi-audiodecoder-vgmstream", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974979" + ] +} diff --git a/data/software/ko/kodi-audioencoder-flac.json b/data/software/ko/kodi-audioencoder-flac.json new file mode 100644 index 000000000000..5073b249a260 --- /dev/null +++ b/data/software/ko/kodi-audioencoder-flac.json @@ -0,0 +1,8 @@ +{ + "slug": "kodi-audioencoder-flac", + "name": "kodi-audioencoder-flac", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974980" + ] +} diff --git a/data/software/ko/kodi-audioencoder-lame.json b/data/software/ko/kodi-audioencoder-lame.json new file mode 100644 index 000000000000..98c8583adeb1 --- /dev/null +++ b/data/software/ko/kodi-audioencoder-lame.json @@ -0,0 +1,8 @@ +{ + "slug": "kodi-audioencoder-lame", + "name": "kodi-audioencoder-lame", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974981" + ] +} diff --git a/data/software/ko/kodi-audioencoder-vorbis.json b/data/software/ko/kodi-audioencoder-vorbis.json new file mode 100644 index 000000000000..d0cf449fcfa6 --- /dev/null +++ b/data/software/ko/kodi-audioencoder-vorbis.json @@ -0,0 +1,8 @@ +{ + "slug": "kodi-audioencoder-vorbis", + "name": "kodi-audioencoder-vorbis", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974982" + ] +} diff --git a/data/software/ko/kodi-audioencoder-wav.json b/data/software/ko/kodi-audioencoder-wav.json new file mode 100644 index 000000000000..9735066898ea --- /dev/null +++ b/data/software/ko/kodi-audioencoder-wav.json @@ -0,0 +1,8 @@ +{ + "slug": "kodi-audioencoder-wav", + "name": "kodi-audioencoder-wav", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974983" + ] +} diff --git a/data/software/ko/kodi-game-libretro.json b/data/software/ko/kodi-game-libretro.json new file mode 100644 index 000000000000..a7547427c9e3 --- /dev/null +++ b/data/software/ko/kodi-game-libretro.json @@ -0,0 +1,8 @@ +{ + "slug": "kodi-game-libretro", + "name": "kodi-game-libretro", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974984" + ] +} diff --git a/data/software/ko/kodi-inputstream-adaptive.json b/data/software/ko/kodi-inputstream-adaptive.json new file mode 100644 index 000000000000..34c3e5345c46 --- /dev/null +++ b/data/software/ko/kodi-inputstream-adaptive.json @@ -0,0 +1,8 @@ +{ + "slug": "kodi-inputstream-adaptive", + "name": "kodi-inputstream-adaptive", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974985" + ] +} diff --git a/data/software/ko/kodi-inputstream-rtmp.json b/data/software/ko/kodi-inputstream-rtmp.json new file mode 100644 index 000000000000..34a79c558d5e --- /dev/null +++ b/data/software/ko/kodi-inputstream-rtmp.json @@ -0,0 +1,8 @@ +{ + "slug": "kodi-inputstream-rtmp", + "name": "kodi-inputstream-rtmp", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974986" + ] +} diff --git a/data/software/ko/kodi-peripheral-joystick.json b/data/software/ko/kodi-peripheral-joystick.json new file mode 100644 index 000000000000..55245f31033d --- /dev/null +++ b/data/software/ko/kodi-peripheral-joystick.json @@ -0,0 +1,8 @@ +{ + "slug": "kodi-peripheral-joystick", + "name": "kodi-peripheral-joystick", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974987" + ] +} diff --git a/data/software/ko/kodi-platform.json b/data/software/ko/kodi-platform.json new file mode 100644 index 000000000000..3cecef86d563 --- /dev/null +++ b/data/software/ko/kodi-platform.json @@ -0,0 +1,8 @@ +{ + "slug": "kodi-platform", + "name": "kodi-platform", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974988" + ] +} diff --git a/data/software/ko/kodi-pvr-demo.json b/data/software/ko/kodi-pvr-demo.json new file mode 100644 index 000000000000..6a62dcbfbfdf --- /dev/null +++ b/data/software/ko/kodi-pvr-demo.json @@ -0,0 +1,8 @@ +{ + "slug": "kodi-pvr-demo", + "name": "kodi-pvr-demo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974990" + ] +} diff --git a/data/software/ko/kodi-pvr-dvblink.json b/data/software/ko/kodi-pvr-dvblink.json new file mode 100644 index 000000000000..68cf85008179 --- /dev/null +++ b/data/software/ko/kodi-pvr-dvblink.json @@ -0,0 +1,8 @@ +{ + "slug": "kodi-pvr-dvblink", + "name": "kodi-pvr-dvblink", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974991" + ] +} diff --git a/data/software/ko/kodi-pvr-filmon.json b/data/software/ko/kodi-pvr-filmon.json new file mode 100644 index 000000000000..af560f2292a8 --- /dev/null +++ b/data/software/ko/kodi-pvr-filmon.json @@ -0,0 +1,8 @@ +{ + "slug": "kodi-pvr-filmon", + "name": "kodi-pvr-filmon", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974993" + ] +} diff --git a/data/software/ko/kodi-pvr-pctv.json b/data/software/ko/kodi-pvr-pctv.json new file mode 100644 index 000000000000..6b96543582ba --- /dev/null +++ b/data/software/ko/kodi-pvr-pctv.json @@ -0,0 +1,8 @@ +{ + "slug": "kodi-pvr-pctv", + "name": "kodi-pvr-pctv", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975000" + ] +} diff --git a/data/software/ko/kodi-pvr-stalker.json b/data/software/ko/kodi-pvr-stalker.json new file mode 100644 index 000000000000..b51b3e6ebe42 --- /dev/null +++ b/data/software/ko/kodi-pvr-stalker.json @@ -0,0 +1,8 @@ +{ + "slug": "kodi-pvr-stalker", + "name": "kodi-pvr-stalker", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975001" + ] +} diff --git a/data/software/ko/kodi-pvr-vbox.json b/data/software/ko/kodi-pvr-vbox.json new file mode 100644 index 000000000000..865af7a129eb --- /dev/null +++ b/data/software/ko/kodi-pvr-vbox.json @@ -0,0 +1,8 @@ +{ + "slug": "kodi-pvr-vbox", + "name": "kodi-pvr-vbox", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975002" + ] +} diff --git a/data/software/ko/kodi-screensaver-asteroids.json b/data/software/ko/kodi-screensaver-asteroids.json new file mode 100644 index 000000000000..d5521d2b8aa3 --- /dev/null +++ b/data/software/ko/kodi-screensaver-asteroids.json @@ -0,0 +1,8 @@ +{ + "slug": "kodi-screensaver-asteroids", + "name": "kodi-screensaver-asteroids", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975006" + ] +} diff --git a/data/software/ko/kodi-screensaver-biogenesis.json b/data/software/ko/kodi-screensaver-biogenesis.json new file mode 100644 index 000000000000..d08f9746c837 --- /dev/null +++ b/data/software/ko/kodi-screensaver-biogenesis.json @@ -0,0 +1,8 @@ +{ + "slug": "kodi-screensaver-biogenesis", + "name": "kodi-screensaver-biogenesis", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975007" + ] +} diff --git a/data/software/ko/kodi-screensaver-crystalmorph.json b/data/software/ko/kodi-screensaver-crystalmorph.json new file mode 100644 index 000000000000..99bd1a5e5d17 --- /dev/null +++ b/data/software/ko/kodi-screensaver-crystalmorph.json @@ -0,0 +1,8 @@ +{ + "slug": "kodi-screensaver-crystalmorph", + "name": "kodi-screensaver-crystalmorph", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975008" + ] +} diff --git a/data/software/ko/kodi-screensaver-greynetic.json b/data/software/ko/kodi-screensaver-greynetic.json new file mode 100644 index 000000000000..015da55c1da1 --- /dev/null +++ b/data/software/ko/kodi-screensaver-greynetic.json @@ -0,0 +1,8 @@ +{ + "slug": "kodi-screensaver-greynetic", + "name": "kodi-screensaver-greynetic", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975009" + ] +} diff --git a/data/software/ko/kodi-screensaver-pingpong.json b/data/software/ko/kodi-screensaver-pingpong.json new file mode 100644 index 000000000000..16b19fdbc70f --- /dev/null +++ b/data/software/ko/kodi-screensaver-pingpong.json @@ -0,0 +1,8 @@ +{ + "slug": "kodi-screensaver-pingpong", + "name": "kodi-screensaver-pingpong", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975010" + ] +} diff --git a/data/software/ko/kodi-screensaver-pyro.json b/data/software/ko/kodi-screensaver-pyro.json new file mode 100644 index 000000000000..fb52af6c05cb --- /dev/null +++ b/data/software/ko/kodi-screensaver-pyro.json @@ -0,0 +1,8 @@ +{ + "slug": "kodi-screensaver-pyro", + "name": "kodi-screensaver-pyro", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975011" + ] +} diff --git a/data/software/ko/kodi-screensaver-rsxs.json b/data/software/ko/kodi-screensaver-rsxs.json new file mode 100644 index 000000000000..5c03277c2e3a --- /dev/null +++ b/data/software/ko/kodi-screensaver-rsxs.json @@ -0,0 +1,8 @@ +{ + "slug": "kodi-screensaver-rsxs", + "name": "kodi-screensaver-rsxs", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975012" + ] +} diff --git a/data/software/ko/kodi-visualization-fishbmc.json b/data/software/ko/kodi-visualization-fishbmc.json new file mode 100644 index 000000000000..f72c2fa0ae25 --- /dev/null +++ b/data/software/ko/kodi-visualization-fishbmc.json @@ -0,0 +1,8 @@ +{ + "slug": "kodi-visualization-fishbmc", + "name": "kodi-visualization-fishbmc", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975013" + ] +} diff --git a/data/software/ko/kodi-visualization-goom.json b/data/software/ko/kodi-visualization-goom.json new file mode 100644 index 000000000000..5e6c10a01cd4 --- /dev/null +++ b/data/software/ko/kodi-visualization-goom.json @@ -0,0 +1,8 @@ +{ + "slug": "kodi-visualization-goom", + "name": "kodi-visualization-goom", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975014" + ] +} diff --git a/data/software/ko/kodi-visualization-nastyfft.json b/data/software/ko/kodi-visualization-nastyfft.json new file mode 100644 index 000000000000..160b235e8ad4 --- /dev/null +++ b/data/software/ko/kodi-visualization-nastyfft.json @@ -0,0 +1,8 @@ +{ + "slug": "kodi-visualization-nastyfft", + "name": "kodi-visualization-nastyfft", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975015" + ] +} diff --git a/data/software/ko/kodi-visualization-projectm.json b/data/software/ko/kodi-visualization-projectm.json new file mode 100644 index 000000000000..e3848e045402 --- /dev/null +++ b/data/software/ko/kodi-visualization-projectm.json @@ -0,0 +1,8 @@ +{ + "slug": "kodi-visualization-projectm", + "name": "kodi-visualization-projectm", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975016" + ] +} diff --git a/data/software/ko/kodi-visualization-shadertoy.json b/data/software/ko/kodi-visualization-shadertoy.json new file mode 100644 index 000000000000..13df35eda2df --- /dev/null +++ b/data/software/ko/kodi-visualization-shadertoy.json @@ -0,0 +1,8 @@ +{ + "slug": "kodi-visualization-shadertoy", + "name": "kodi-visualization-shadertoy", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975017" + ] +} diff --git a/data/software/ko/kodi-visualization-starburst.json b/data/software/ko/kodi-visualization-starburst.json new file mode 100644 index 000000000000..a6f03703c4f8 --- /dev/null +++ b/data/software/ko/kodi-visualization-starburst.json @@ -0,0 +1,8 @@ +{ + "slug": "kodi-visualization-starburst", + "name": "kodi-visualization-starburst", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975019" + ] +} diff --git a/data/software/ko/kodi-visualization-waveform.json b/data/software/ko/kodi-visualization-waveform.json new file mode 100644 index 000000000000..f0cf04250b0e --- /dev/null +++ b/data/software/ko/kodi-visualization-waveform.json @@ -0,0 +1,8 @@ +{ + "slug": "kodi-visualization-waveform", + "name": "kodi-visualization-waveform", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975020" + ] +} diff --git a/data/software/ko/koka.json b/data/software/ko/koka.json new file mode 100644 index 000000000000..9cb8f5017d13 --- /dev/null +++ b/data/software/ko/koka.json @@ -0,0 +1,8 @@ +{ + "slug": "koka", + "name": "Koka", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124666603" + ] +} diff --git a/data/software/ko/kokkoskernels.json b/data/software/ko/kokkoskernels.json new file mode 100644 index 000000000000..6dfbc40a9a8a --- /dev/null +++ b/data/software/ko/kokkoskernels.json @@ -0,0 +1,8 @@ +{ + "slug": "kokkoskernels", + "name": "KokkosKernels", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117457186" + ] +} diff --git a/data/software/ko/kokone.json b/data/software/ko/kokone.json new file mode 100644 index 000000000000..98157f80522f --- /dev/null +++ b/data/software/ko/kokone.json @@ -0,0 +1,15 @@ +{ + "slug": "kokone", + "name": "Kokone", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q20062554" + ], + "release_date": "2014-02-14", + "developers": [ + "Internet Co." + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/ko/kommandcore.json b/data/software/ko/kommandcore.json new file mode 100644 index 000000000000..003ad89d21db --- /dev/null +++ b/data/software/ko/kommandcore.json @@ -0,0 +1,8 @@ +{ + "slug": "kommandcore", + "name": "Kommandcore", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4042294" + ] +} diff --git a/data/software/ko/kompakkt.json b/data/software/ko/kompakkt.json new file mode 100644 index 000000000000..975833ca3c53 --- /dev/null +++ b/data/software/ko/kompakkt.json @@ -0,0 +1,8 @@ +{ + "slug": "kompakkt", + "name": "kompakkt", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107696972" + ] +} diff --git a/data/software/ko/kompozy.json b/data/software/ko/kompozy.json new file mode 100644 index 000000000000..bee81ec9fd73 --- /dev/null +++ b/data/software/ko/kompozy.json @@ -0,0 +1,8 @@ +{ + "slug": "kompozy", + "name": "Kompozy", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140180039" + ] +} diff --git a/data/software/ko/konnekt.json b/data/software/ko/konnekt.json new file mode 100644 index 000000000000..8bd70ff55556 --- /dev/null +++ b/data/software/ko/konnekt.json @@ -0,0 +1,11 @@ +{ + "slug": "konnekt", + "name": "Konnekt", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11742628" + ], + "licenses": [ + "Mozilla Public License" + ] +} diff --git a/data/software/ko/kontakt.json b/data/software/ko/kontakt.json new file mode 100644 index 000000000000..c8dec4dabf0c --- /dev/null +++ b/data/software/ko/kontakt.json @@ -0,0 +1,8 @@ +{ + "slug": "kontakt", + "name": "Kontakt", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6428592" + ] +} diff --git a/data/software/ko/kontext.json b/data/software/ko/kontext.json new file mode 100644 index 000000000000..59f7b9c509f5 --- /dev/null +++ b/data/software/ko/kontext.json @@ -0,0 +1,8 @@ +{ + "slug": "kontext", + "name": "KonText", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085072" + ] +} diff --git a/data/software/ko/konvertor.json b/data/software/ko/konvertor.json new file mode 100644 index 000000000000..d96a6ba4d42a --- /dev/null +++ b/data/software/ko/konvertor.json @@ -0,0 +1,11 @@ +{ + "slug": "konvertor", + "name": "Konvertor", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3198802" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/ko/kopern.json b/data/software/ko/kopern.json new file mode 100644 index 000000000000..49033ea60805 --- /dev/null +++ b/data/software/ko/kopern.json @@ -0,0 +1,14 @@ +{ + "slug": "kopern", + "name": "Kopern", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138958921" + ], + "programming_languages": [ + "TypeScript" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/ko/kora.json b/data/software/ko/kora.json new file mode 100644 index 000000000000..3f9202cc9e34 --- /dev/null +++ b/data/software/ko/kora.json @@ -0,0 +1,8 @@ +{ + "slug": "kora", + "name": "KORA", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085073" + ] +} diff --git a/data/software/ko/korg-gadget.json b/data/software/ko/korg-gadget.json new file mode 100644 index 000000000000..ee4b5d419e60 --- /dev/null +++ b/data/software/ko/korg-gadget.json @@ -0,0 +1,11 @@ +{ + "slug": "korg-gadget", + "name": "Korg Gadget", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q55524853" + ], + "developers": [ + "Korg" + ] +} diff --git a/data/software/ko/korsakow.json b/data/software/ko/korsakow.json new file mode 100644 index 000000000000..68b5b5b15ee1 --- /dev/null +++ b/data/software/ko/korsakow.json @@ -0,0 +1,9 @@ +{ + "slug": "korsakow", + "name": "Korsakow", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6432659" + ], + "release_date": "2000-01-01" +} diff --git a/data/software/ko/koubei.json b/data/software/ko/koubei.json new file mode 100644 index 000000000000..141b8f652278 --- /dev/null +++ b/data/software/ko/koubei.json @@ -0,0 +1,8 @@ +{ + "slug": "koubei", + "name": "Koubei", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17023100" + ] +} diff --git a/data/software/kp/kpcli.json b/data/software/kp/kpcli.json new file mode 100644 index 000000000000..b295d1ac0192 --- /dev/null +++ b/data/software/kp/kpcli.json @@ -0,0 +1,8 @@ +{ + "slug": "kpcli", + "name": "kpcli", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62863705" + ] +} diff --git a/data/software/kp/kpkpass.json b/data/software/kp/kpkpass.json new file mode 100644 index 000000000000..21fa9ef4757f --- /dev/null +++ b/data/software/kp/kpkpass.json @@ -0,0 +1,8 @@ +{ + "slug": "kpkpass", + "name": "kpkpass", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065337" + ] +} diff --git a/data/software/kp/kplayer.json b/data/software/kp/kplayer.json new file mode 100644 index 000000000000..34bc2c250cc0 --- /dev/null +++ b/data/software/kp/kplayer.json @@ -0,0 +1,8 @@ +{ + "slug": "kplayer", + "name": "KPlayer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3511084" + ] +} diff --git a/data/software/kq/kqtquickcharts.json b/data/software/kq/kqtquickcharts.json new file mode 100644 index 000000000000..42be255db7a6 --- /dev/null +++ b/data/software/kq/kqtquickcharts.json @@ -0,0 +1,8 @@ +{ + "slug": "kqtquickcharts", + "name": "kqtquickcharts", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065124" + ] +} diff --git a/data/software/kr/krakend.json b/data/software/kr/krakend.json new file mode 100644 index 000000000000..330dea98c7ae --- /dev/null +++ b/data/software/kr/krakend.json @@ -0,0 +1,8 @@ +{ + "slug": "krakend", + "name": "KrakenD", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140408033" + ] +} diff --git a/data/software/kr/kramerius.json b/data/software/kr/kramerius.json new file mode 100644 index 000000000000..1ddcf7f14959 --- /dev/null +++ b/data/software/kr/kramerius.json @@ -0,0 +1,11 @@ +{ + "slug": "kramerius", + "name": "Kramerius", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109254004" + ], + "licenses": [ + "GNU General Public License, version 3.0" + ] +} diff --git a/data/software/kr/kreol.json b/data/software/kr/kreol.json new file mode 100644 index 000000000000..96eee7eba346 --- /dev/null +++ b/data/software/kr/kreol.json @@ -0,0 +1,11 @@ +{ + "slug": "kreol", + "name": "Kreol", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6436767" + ], + "developers": [ + "Mike Block" + ] +} diff --git a/data/software/kr/krisp.json b/data/software/kr/krisp.json new file mode 100644 index 000000000000..307576502860 --- /dev/null +++ b/data/software/kr/krisp.json @@ -0,0 +1,12 @@ +{ + "slug": "krisp", + "name": "Krisp", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111443563" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/software/kr/kryoflux.json b/data/software/kr/kryoflux.json new file mode 100644 index 000000000000..86af20d6bd65 --- /dev/null +++ b/data/software/kr/kryoflux.json @@ -0,0 +1,17 @@ +{ + "slug": "kryoflux", + "name": "KryoFlux", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17042396" + ], + "developers": [ + "KryoFlux", + "Software Preservation Society" + ], + "operating_systems": [ + "AmigaOS", + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/software/ks/ksef-guard.json b/data/software/ks/ksef-guard.json new file mode 100644 index 000000000000..0b66fd35b181 --- /dev/null +++ b/data/software/ks/ksef-guard.json @@ -0,0 +1,14 @@ +{ + "slug": "ksef-guard", + "name": "KSeF Guard", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140258210" + ], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [ + "Go" + ] +} diff --git a/data/software/kt/ktts.json b/data/software/kt/ktts.json new file mode 100644 index 000000000000..873c165246b8 --- /dev/null +++ b/data/software/kt/ktts.json @@ -0,0 +1,8 @@ +{ + "slug": "ktts", + "name": "KTTS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3191537" + ] +} diff --git a/data/software/ku/kuaidi-dache.json b/data/software/ku/kuaidi-dache.json new file mode 100644 index 000000000000..8242270e9e34 --- /dev/null +++ b/data/software/ku/kuaidi-dache.json @@ -0,0 +1,8 @@ +{ + "slug": "kuaidi-dache", + "name": "Kuaidi Dache", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18653357" + ] +} diff --git a/data/software/ku/kuake.json b/data/software/ku/kuake.json new file mode 100644 index 000000000000..d69e9726b979 --- /dev/null +++ b/data/software/ku/kuake.json @@ -0,0 +1,8 @@ +{ + "slug": "kuake", + "name": "Kuake", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6440966" + ] +} diff --git a/data/software/ku/kualitee.json b/data/software/ku/kualitee.json new file mode 100644 index 000000000000..a56889a74eef --- /dev/null +++ b/data/software/ku/kualitee.json @@ -0,0 +1,17 @@ +{ + "slug": "kualitee", + "name": "Kualitee", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140138442" + ], + "developers": [ + "Kualitatem" + ], + "operating_systems": [ + "web application" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/ku/kudzu.json b/data/software/ku/kudzu.json new file mode 100644 index 000000000000..af6d7d1a8ef7 --- /dev/null +++ b/data/software/ku/kudzu.json @@ -0,0 +1,11 @@ +{ + "slug": "kudzu", + "name": "Kudzu", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1791041" + ], + "developers": [ + "Red Hat" + ] +} diff --git a/data/software/ku/kugou.json b/data/software/ku/kugou.json new file mode 100644 index 000000000000..8be901ff90b0 --- /dev/null +++ b/data/software/ku/kugou.json @@ -0,0 +1,26 @@ +{ + "slug": "kugou", + "name": "KuGou", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q15896237" + ], + "release_date": "2006-01-01", + "developers": [ + "Tencent Music" + ], + "publishers": [ + "Tencent Music" + ], + "operating_systems": [ + "iOS", + "Mac operating system", + "Microsoft Windows" + ], + "programming_languages": [ + "Skia Graphics Engine" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/ku/kumir.json b/data/software/ku/kumir.json new file mode 100644 index 000000000000..a3b3526018ed --- /dev/null +++ b/data/software/ku/kumir.json @@ -0,0 +1,21 @@ +{ + "slug": "kumir", + "name": "KuMir", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4243417" + ], + "developers": [ + "Scientific Research Institute of System Development" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [ + "Python" + ], + "licenses": [ + "GNU General Public License, version 2.0" + ] +} diff --git a/data/software/ku/kuniao-browser.json b/data/software/ku/kuniao-browser.json new file mode 100644 index 000000000000..794e2df61121 --- /dev/null +++ b/data/software/ku/kuniao-browser.json @@ -0,0 +1,8 @@ +{ + "slug": "kuniao-browser", + "name": "Kuniao Browser", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123291501" + ] +} diff --git a/data/software/ku/kunnus.json b/data/software/ku/kunnus.json new file mode 100644 index 000000000000..bc662e6b2c13 --- /dev/null +++ b/data/software/ku/kunnus.json @@ -0,0 +1,11 @@ +{ + "slug": "kunnus", + "name": "Kunnus", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138745782" + ], + "developers": [ + "Think Ahead Technologies GmbH" + ] +} diff --git a/data/software/ku/kurnik.json b/data/software/ku/kurnik.json new file mode 100644 index 000000000000..c0c42dbdf914 --- /dev/null +++ b/data/software/ku/kurnik.json @@ -0,0 +1,8 @@ +{ + "slug": "kurnik", + "name": "Kurnik", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q972637" + ] +} diff --git a/data/software/ku/kurt.json b/data/software/ku/kurt.json new file mode 100644 index 000000000000..642b9b288770 --- /dev/null +++ b/data/software/ku/kurt.json @@ -0,0 +1,8 @@ +{ + "slug": "kurt", + "name": "KURT", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4042024" + ] +} diff --git a/data/software/ku/kustomer.json b/data/software/ku/kustomer.json new file mode 100644 index 000000000000..d459f8544192 --- /dev/null +++ b/data/software/ku/kustomer.json @@ -0,0 +1,8 @@ +{ + "slug": "kustomer", + "name": "Kustomer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105713843" + ] +} diff --git a/data/software/ku/kustomize.json b/data/software/ku/kustomize.json new file mode 100644 index 000000000000..bd3e8d89259b --- /dev/null +++ b/data/software/ku/kustomize.json @@ -0,0 +1,19 @@ +{ + "slug": "kustomize", + "name": "Kustomize", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136456654" + ], + "operating_systems": [ + "cross-platform", + "macOS", + "Microsoft Windows" + ], + "programming_languages": [ + "Go" + ], + "licenses": [ + "Apache Software License 2.0" + ] +} diff --git a/data/software/ku/kuvert.json b/data/software/ku/kuvert.json new file mode 100644 index 000000000000..dd2be1f8d444 --- /dev/null +++ b/data/software/ku/kuvert.json @@ -0,0 +1,8 @@ +{ + "slug": "kuvert", + "name": "kuvert", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62852723" + ] +} diff --git a/data/software/kv/kviskr.json b/data/software/kv/kviskr.json new file mode 100644 index 000000000000..0c385f5fc7f0 --- /dev/null +++ b/data/software/kv/kviskr.json @@ -0,0 +1,14 @@ +{ + "slug": "kviskr", + "name": "Kviskr", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139758769" + ], + "operating_systems": [ + "macOS" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/kv/kvpm.json b/data/software/kv/kvpm.json new file mode 100644 index 000000000000..2e8b44a52163 --- /dev/null +++ b/data/software/kv/kvpm.json @@ -0,0 +1,8 @@ +{ + "slug": "kvpm", + "name": "kvpm", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62852678" + ] +} diff --git a/data/software/kw/kwalitan.json b/data/software/kw/kwalitan.json new file mode 100644 index 000000000000..c4e9b06670d1 --- /dev/null +++ b/data/software/kw/kwalitan.json @@ -0,0 +1,14 @@ +{ + "slug": "kwalitan", + "name": "Kwalitan", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105229750" + ], + "operating_systems": [ + "Microsoft Windows" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/kw/kwic.json b/data/software/kw/kwic.json new file mode 100644 index 000000000000..2e7a84574aca --- /dev/null +++ b/data/software/kw/kwic.json @@ -0,0 +1,8 @@ +{ + "slug": "kwic", + "name": "KWIC", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087822" + ] +} diff --git a/data/software/kw/kwmap.json b/data/software/kw/kwmap.json new file mode 100644 index 000000000000..234be0dd8fd9 --- /dev/null +++ b/data/software/kw/kwmap.json @@ -0,0 +1,8 @@ +{ + "slug": "kwmap", + "name": "KwMap", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085075" + ] +} diff --git a/data/software/kx/kxen-inc.json b/data/software/kx/kxen-inc.json new file mode 100644 index 000000000000..fb812ea88c17 --- /dev/null +++ b/data/software/kx/kxen-inc.json @@ -0,0 +1,8 @@ +{ + "slug": "kxen-inc", + "name": "KXEN Inc.", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6341142" + ] +} diff --git a/data/software/ky/kyoto-common-lisp.json b/data/software/ky/kyoto-common-lisp.json new file mode 100644 index 000000000000..9f94e783fe89 --- /dev/null +++ b/data/software/ky/kyoto-common-lisp.json @@ -0,0 +1,8 @@ +{ + "slug": "kyoto-common-lisp", + "name": "Kyoto Common Lisp", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4042392" + ] +} diff --git a/data/software/ky/kyvos.json b/data/software/ky/kyvos.json new file mode 100644 index 000000000000..17f2cf876903 --- /dev/null +++ b/data/software/ky/kyvos.json @@ -0,0 +1,8 @@ +{ + "slug": "kyvos", + "name": "Kyvos", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60742772" + ] +} diff --git a/data/software/l2/l2j.json b/data/software/l2/l2j.json new file mode 100644 index 000000000000..a5cc2d173830 --- /dev/null +++ b/data/software/l2/l2j.json @@ -0,0 +1,11 @@ +{ + "slug": "l2j", + "name": "L2J", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2367791" + ], + "programming_languages": [ + "Java" + ] +} diff --git a/data/software/l3/l3afpad.json b/data/software/l3/l3afpad.json new file mode 100644 index 000000000000..454229f48b17 --- /dev/null +++ b/data/software/l3/l3afpad.json @@ -0,0 +1,11 @@ +{ + "slug": "l3afpad", + "name": "l3afpad", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126270004" + ], + "licenses": [ + "GNU General Public License, version 2.0" + ] +} diff --git a/data/software/l3/l3enc.json b/data/software/l3/l3enc.json new file mode 100644 index 000000000000..d933ad6c6d02 --- /dev/null +++ b/data/software/l3/l3enc.json @@ -0,0 +1,12 @@ +{ + "slug": "l3enc", + "name": "L3enc", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1797811" + ], + "release_date": "1994-07-13", + "developers": [ + "Fraunhofer institute" + ] +} diff --git a/data/software/l4/l4-microkernel-family.json b/data/software/l4/l4-microkernel-family.json new file mode 100644 index 000000000000..b3e1a82b62bb --- /dev/null +++ b/data/software/l4/l4-microkernel-family.json @@ -0,0 +1,11 @@ +{ + "slug": "l4-microkernel-family", + "name": "L4 microkernel family", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1797819" + ], + "programming_languages": [ + "assembly language" + ] +} diff --git a/data/software/l7/l7-filter.json b/data/software/l7/l7-filter.json new file mode 100644 index 000000000000..dce78de1e397 --- /dev/null +++ b/data/software/l7/l7-filter.json @@ -0,0 +1,8 @@ +{ + "slug": "l7-filter", + "name": "l7-filter", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4042408" + ] +} diff --git a/data/software/la/la-vortaro.json b/data/software/la/la-vortaro.json new file mode 100644 index 000000000000..62036a4ccb4b --- /dev/null +++ b/data/software/la/la-vortaro.json @@ -0,0 +1,9 @@ +{ + "slug": "la-vortaro", + "name": "La Vortaro", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2735298" + ], + "release_date": "2001-01-01" +} diff --git a/data/software/la/lab-measurement.json b/data/software/la/lab-measurement.json new file mode 100644 index 000000000000..0f7913823681 --- /dev/null +++ b/data/software/la/lab-measurement.json @@ -0,0 +1,8 @@ +{ + "slug": "lab-measurement", + "name": "Lab-Measurement", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975022" + ] +} diff --git a/data/software/la/labarchives.json b/data/software/la/labarchives.json new file mode 100644 index 000000000000..b13c337f0c54 --- /dev/null +++ b/data/software/la/labarchives.json @@ -0,0 +1,8 @@ +{ + "slug": "labarchives", + "name": "labArchives", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28455194" + ] +} diff --git a/data/software/la/labelflash.json b/data/software/la/labelflash.json new file mode 100644 index 000000000000..c503d4dcd542 --- /dev/null +++ b/data/software/la/labelflash.json @@ -0,0 +1,8 @@ +{ + "slug": "labelflash", + "name": "Labelflash", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1425174" + ] +} diff --git a/data/software/la/laboratory-unit-for-computer-assisted-surgery.json b/data/software/la/laboratory-unit-for-computer-assisted-surgery.json new file mode 100644 index 000000000000..b6f0ae966325 --- /dev/null +++ b/data/software/la/laboratory-unit-for-computer-assisted-surgery.json @@ -0,0 +1,8 @@ +{ + "slug": "laboratory-unit-for-computer-assisted-surgery", + "name": "Laboratory Unit for Computer Assisted Surgery", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1799485" + ] +} diff --git a/data/software/la/labse.json b/data/software/la/labse.json new file mode 100644 index 000000000000..b1430f4dee44 --- /dev/null +++ b/data/software/la/labse.json @@ -0,0 +1,11 @@ +{ + "slug": "labse", + "name": "LaBSE", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136519078" + ], + "operating_systems": [ + "cross-platform" + ] +} diff --git a/data/software/la/labwindows-cvi.json b/data/software/la/labwindows-cvi.json new file mode 100644 index 000000000000..729a506b8b2b --- /dev/null +++ b/data/software/la/labwindows-cvi.json @@ -0,0 +1,11 @@ +{ + "slug": "labwindows-cvi", + "name": "LabWindows/CVI", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1799362" + ], + "developers": [ + "National Instruments" + ] +} diff --git a/data/software/la/labyrinth.json b/data/software/la/labyrinth.json new file mode 100644 index 000000000000..f8386e8595b6 --- /dev/null +++ b/data/software/la/labyrinth.json @@ -0,0 +1,14 @@ +{ + "slug": "labyrinth", + "name": "Labyrinth", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106143060" + ], + "programming_languages": [ + "Python" + ], + "licenses": [ + "GNU General Public License, version 2.0" + ] +} diff --git a/data/software/la/lackeyccg.json b/data/software/la/lackeyccg.json new file mode 100644 index 000000000000..0daca98bcaef --- /dev/null +++ b/data/software/la/lackeyccg.json @@ -0,0 +1,8 @@ +{ + "slug": "lackeyccg", + "name": "LackeyCCG", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17042399" + ] +} diff --git a/data/software/la/lacros.json b/data/software/la/lacros.json new file mode 100644 index 000000000000..193ab47c6d27 --- /dev/null +++ b/data/software/la/lacros.json @@ -0,0 +1,12 @@ +{ + "slug": "lacros", + "name": "LaCrOs", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113956194" + ], + "developers": [ + "Igalia", + "Google" + ] +} diff --git a/data/software/la/lakefs.json b/data/software/la/lakefs.json new file mode 100644 index 000000000000..8acd0c6bfb28 --- /dev/null +++ b/data/software/la/lakefs.json @@ -0,0 +1,8 @@ +{ + "slug": "lakefs", + "name": "LakeFS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120569436" + ] +} diff --git a/data/software/la/lalavoice.json b/data/software/la/lalavoice.json new file mode 100644 index 000000000000..44e979d73133 --- /dev/null +++ b/data/software/la/lalavoice.json @@ -0,0 +1,8 @@ +{ + "slug": "lalavoice", + "name": "LaLaVoice", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22906250" + ] +} diff --git a/data/software/la/landr.json b/data/software/la/landr.json new file mode 100644 index 000000000000..da5b5eed9d43 --- /dev/null +++ b/data/software/la/landr.json @@ -0,0 +1,8 @@ +{ + "slug": "landr", + "name": "LANDR", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18344388" + ] +} diff --git a/data/software/la/landscape.json b/data/software/la/landscape.json new file mode 100644 index 000000000000..9390823c76cf --- /dev/null +++ b/data/software/la/landscape.json @@ -0,0 +1,8 @@ +{ + "slug": "landscape", + "name": "Landscape", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60751916" + ] +} diff --git a/data/software/la/landview.json b/data/software/la/landview.json new file mode 100644 index 000000000000..2c7cd35dd210 --- /dev/null +++ b/data/software/la/landview.json @@ -0,0 +1,11 @@ +{ + "slug": "landview", + "name": "LandView", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6483841" + ], + "developers": [ + "United States Census Bureau" + ] +} diff --git a/data/software/la/langchain.json b/data/software/la/langchain.json new file mode 100644 index 000000000000..67681589a7f0 --- /dev/null +++ b/data/software/la/langchain.json @@ -0,0 +1,11 @@ +{ + "slug": "langchain", + "name": "LangChain", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117340550" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/la/language-acquisition-device.json b/data/software/la/language-acquisition-device.json new file mode 100644 index 000000000000..2197f5be46e4 --- /dev/null +++ b/data/software/la/language-acquisition-device.json @@ -0,0 +1,11 @@ +{ + "slug": "language-acquisition-device", + "name": "Language Acquisition Device", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6486632" + ], + "developers": [ + "King's College London" + ] +} diff --git a/data/software/la/language-reactor.json b/data/software/la/language-reactor.json new file mode 100644 index 000000000000..3c7657cf9f43 --- /dev/null +++ b/data/software/la/language-reactor.json @@ -0,0 +1,8 @@ +{ + "slug": "language-reactor", + "name": "Language Reactor", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135427791" + ] +} diff --git a/data/software/la/languageapp.json b/data/software/la/languageapp.json new file mode 100644 index 000000000000..c11f13f10726 --- /dev/null +++ b/data/software/la/languageapp.json @@ -0,0 +1,8 @@ +{ + "slug": "languageapp", + "name": "LanguageApp", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108514127" + ] +} diff --git a/data/software/la/lanschool.json b/data/software/la/lanschool.json new file mode 100644 index 000000000000..009cb7e34fb9 --- /dev/null +++ b/data/software/la/lanschool.json @@ -0,0 +1,9 @@ +{ + "slug": "lanschool", + "name": "LanSchool", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6482783" + ], + "release_date": "1986-02-09" +} diff --git a/data/software/la/lansweeper.json b/data/software/la/lansweeper.json new file mode 100644 index 000000000000..887da12962eb --- /dev/null +++ b/data/software/la/lansweeper.json @@ -0,0 +1,8 @@ +{ + "slug": "lansweeper", + "name": "Lansweeper", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25110856" + ] +} diff --git a/data/software/la/laplacesdemon.json b/data/software/la/laplacesdemon.json new file mode 100644 index 000000000000..ee41ae22a54b --- /dev/null +++ b/data/software/la/laplacesdemon.json @@ -0,0 +1,17 @@ +{ + "slug": "laplacesdemon", + "name": "LaplacesDemon", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17064019" + ], + "operating_systems": [ + "Unix-like operating system" + ], + "programming_languages": [ + "R" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/la/laplink-pcmover.json b/data/software/la/laplink-pcmover.json new file mode 100644 index 000000000000..6a2b2a32a5a1 --- /dev/null +++ b/data/software/la/laplink-pcmover.json @@ -0,0 +1,12 @@ +{ + "slug": "laplink-pcmover", + "name": "Laplink PCmover", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6488291" + ], + "release_date": "2005-01-01", + "developers": [ + "LapLink Inc." + ] +} diff --git a/data/software/la/laplink.json b/data/software/la/laplink.json new file mode 100644 index 000000000000..9f834fe71232 --- /dev/null +++ b/data/software/la/laplink.json @@ -0,0 +1,12 @@ +{ + "slug": "laplink", + "name": "Laplink", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1805785" + ], + "release_date": "1983-01-01", + "developers": [ + "LapLink Inc." + ] +} diff --git a/data/software/la/lapu-ai.json b/data/software/la/lapu-ai.json new file mode 100644 index 000000000000..3ac575aa3dcf --- /dev/null +++ b/data/software/la/lapu-ai.json @@ -0,0 +1,14 @@ +{ + "slug": "lapu-ai", + "name": "Lapu.AI", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138840543" + ], + "developers": [ + "enterprise" + ], + "programming_languages": [ + "TypeScript" + ] +} diff --git a/data/software/la/laretz.json b/data/software/la/laretz.json new file mode 100644 index 000000000000..287b2fa32916 --- /dev/null +++ b/data/software/la/laretz.json @@ -0,0 +1,8 @@ +{ + "slug": "laretz", + "name": "laretz", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975023" + ] +} diff --git a/data/software/la/larex.json b/data/software/la/larex.json new file mode 100644 index 000000000000..e8c01e3d82c7 --- /dev/null +++ b/data/software/la/larex.json @@ -0,0 +1,11 @@ +{ + "slug": "larex", + "name": "LAREX", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124348103" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/la/lark.json b/data/software/la/lark.json new file mode 100644 index 000000000000..51d58c8f86d8 --- /dev/null +++ b/data/software/la/lark.json @@ -0,0 +1,11 @@ +{ + "slug": "lark", + "name": "Lark", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q104845845" + ], + "developers": [ + "ByteDance" + ] +} diff --git a/data/software/la/latent-diffusion-model.json b/data/software/la/latent-diffusion-model.json new file mode 100644 index 000000000000..48f0ce470a88 --- /dev/null +++ b/data/software/la/latent-diffusion-model.json @@ -0,0 +1,8 @@ +{ + "slug": "latent-diffusion-model", + "name": "Latent diffusion model", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130641540" + ] +} diff --git a/data/software/la/latex2rtf.json b/data/software/la/latex2rtf.json new file mode 100644 index 000000000000..cfd7142919e5 --- /dev/null +++ b/data/software/la/latex2rtf.json @@ -0,0 +1,8 @@ +{ + "slug": "latex2rtf", + "name": "LaTeX2RTF", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4042508" + ] +} diff --git a/data/software/la/lattice.json b/data/software/la/lattice.json new file mode 100644 index 000000000000..6aea7aef5599 --- /dev/null +++ b/data/software/la/lattice.json @@ -0,0 +1,8 @@ +{ + "slug": "lattice", + "name": "LATtice", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085076" + ] +} diff --git a/data/software/la/launch-pad.json b/data/software/la/launch-pad.json new file mode 100644 index 000000000000..8cfe6f98110f --- /dev/null +++ b/data/software/la/launch-pad.json @@ -0,0 +1,11 @@ +{ + "slug": "launch-pad", + "name": "Launch Pad", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16256304" + ], + "developers": [ + "Berkeley Systems" + ] +} diff --git a/data/software/la/laurence-anthony-antwordprofiler.json b/data/software/la/laurence-anthony-antwordprofiler.json new file mode 100644 index 000000000000..a1f7ee30398c --- /dev/null +++ b/data/software/la/laurence-anthony-antwordprofiler.json @@ -0,0 +1,8 @@ +{ + "slug": "laurence-anthony-antwordprofiler", + "name": "Laurence Anthony: AntWordProfiler", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085078" + ] +} diff --git a/data/software/la/lavarand.json b/data/software/la/lavarand.json new file mode 100644 index 000000000000..9cb317d0da9f --- /dev/null +++ b/data/software/la/lavarand.json @@ -0,0 +1,8 @@ +{ + "slug": "lavarand", + "name": "Lavarand", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6502402" + ] +} diff --git a/data/software/la/law-practice-management-software.json b/data/software/la/law-practice-management-software.json new file mode 100644 index 000000000000..eec0ef7189c4 --- /dev/null +++ b/data/software/la/law-practice-management-software.json @@ -0,0 +1,8 @@ +{ + "slug": "law-practice-management-software", + "name": "law practice management software", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6503526" + ] +} diff --git a/data/software/la/lawkit.json b/data/software/la/lawkit.json new file mode 100644 index 000000000000..29ee920cda1a --- /dev/null +++ b/data/software/la/lawkit.json @@ -0,0 +1,8 @@ +{ + "slug": "lawkit", + "name": "LawKit", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124937567" + ] +} diff --git a/data/software/la/layla.json b/data/software/la/layla.json new file mode 100644 index 000000000000..b1bcaab5400a --- /dev/null +++ b/data/software/la/layla.json @@ -0,0 +1,8 @@ +{ + "slug": "layla", + "name": "Layla", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140372830" + ] +} diff --git a/data/software/la/layman.json b/data/software/la/layman.json new file mode 100644 index 000000000000..24f355ec4d75 --- /dev/null +++ b/data/software/la/layman.json @@ -0,0 +1,8 @@ +{ + "slug": "layman", + "name": "layman", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975024" + ] +} diff --git a/data/software/lb/lbdb.json b/data/software/lb/lbdb.json new file mode 100644 index 000000000000..83506e2cb04a --- /dev/null +++ b/data/software/lb/lbdb.json @@ -0,0 +1,8 @@ +{ + "slug": "lbdb", + "name": "lbdb", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62854821" + ] +} diff --git a/data/software/lb/lbry.json b/data/software/lb/lbry.json new file mode 100644 index 000000000000..5533e2c037a1 --- /dev/null +++ b/data/software/lb/lbry.json @@ -0,0 +1,17 @@ +{ + "slug": "lbry", + "name": "LBRY", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105104818" + ], + "developers": [ + "LBRY, Inc." + ], + "operating_systems": [ + "iOS" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/lc/lc-newspaper-viewer.json b/data/software/lc/lc-newspaper-viewer.json new file mode 100644 index 000000000000..1bdf70e75a52 --- /dev/null +++ b/data/software/lc/lc-newspaper-viewer.json @@ -0,0 +1,8 @@ +{ + "slug": "lc-newspaper-viewer", + "name": "LC Newspaper Viewer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085079" + ] +} diff --git a/data/software/lc/lcab.json b/data/software/lc/lcab.json new file mode 100644 index 000000000000..baff33fc75b5 --- /dev/null +++ b/data/software/lc/lcab.json @@ -0,0 +1,8 @@ +{ + "slug": "lcab", + "name": "lcab", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62854795" + ] +} diff --git a/data/software/lc/lcd4linux.json b/data/software/lc/lcd4linux.json new file mode 100644 index 000000000000..0cbdeab6baea --- /dev/null +++ b/data/software/lc/lcd4linux.json @@ -0,0 +1,8 @@ +{ + "slug": "lcd4linux", + "name": "lcd4linux", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62852410" + ] +} diff --git a/data/software/lc/lcdproc.json b/data/software/lc/lcdproc.json new file mode 100644 index 000000000000..72000f3b9d97 --- /dev/null +++ b/data/software/lc/lcdproc.json @@ -0,0 +1,8 @@ +{ + "slug": "lcdproc", + "name": "LCDproc", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62852404" + ] +} diff --git a/data/software/lc/lcr.json b/data/software/lc/lcr.json new file mode 100644 index 000000000000..ca4ae8801bff --- /dev/null +++ b/data/software/lc/lcr.json @@ -0,0 +1,8 @@ +{ + "slug": "lcr", + "name": "lcr", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975026" + ] +} diff --git a/data/software/ld/ldapsaisie.json b/data/software/ld/ldapsaisie.json new file mode 100644 index 000000000000..ba12099a3d8f --- /dev/null +++ b/data/software/ld/ldapsaisie.json @@ -0,0 +1,11 @@ +{ + "slug": "ldapsaisie", + "name": "LdapSaisie", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3220124" + ], + "programming_languages": [ + "PHP" + ] +} diff --git a/data/software/ld/ldapvi.json b/data/software/ld/ldapvi.json new file mode 100644 index 000000000000..bd2c9a98ad78 --- /dev/null +++ b/data/software/ld/ldapvi.json @@ -0,0 +1,8 @@ +{ + "slug": "ldapvi", + "name": "ldapvi", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62863689" + ] +} diff --git a/data/software/ld/ldconfig.json b/data/software/ld/ldconfig.json new file mode 100644 index 000000000000..96598e814482 --- /dev/null +++ b/data/software/ld/ldconfig.json @@ -0,0 +1,8 @@ +{ + "slug": "ldconfig", + "name": "Ldconfig", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137027651" + ] +} diff --git a/data/software/ld/ldraw.json b/data/software/ld/ldraw.json new file mode 100644 index 000000000000..18eb854b67f1 --- /dev/null +++ b/data/software/ld/ldraw.json @@ -0,0 +1,11 @@ +{ + "slug": "ldraw", + "name": "LDraw", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1760409" + ], + "developers": [ + "James Jessiman" + ] +} diff --git a/data/software/le/lea-crm.json b/data/software/le/lea-crm.json new file mode 100644 index 000000000000..89037f94fd22 --- /dev/null +++ b/data/software/le/lea-crm.json @@ -0,0 +1,8 @@ +{ + "slug": "lea-crm", + "name": "Lea CRM", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140288269" + ] +} diff --git a/data/software/le/lead-dbs.json b/data/software/le/lead-dbs.json new file mode 100644 index 000000000000..d5f0c27c0a79 --- /dev/null +++ b/data/software/le/lead-dbs.json @@ -0,0 +1,8 @@ +{ + "slug": "lead-dbs", + "name": "Lead-DBS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131160634" + ] +} diff --git a/data/software/le/lead-finder.json b/data/software/le/lead-finder.json new file mode 100644 index 000000000000..e0c09d9b657c --- /dev/null +++ b/data/software/le/lead-finder.json @@ -0,0 +1,8 @@ +{ + "slug": "lead-finder", + "name": "Lead Finder", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6508356" + ] +} diff --git a/data/software/le/leadclaw.json b/data/software/le/leadclaw.json new file mode 100644 index 000000000000..e816d15aebcc --- /dev/null +++ b/data/software/le/leadclaw.json @@ -0,0 +1,8 @@ +{ + "slug": "leadclaw", + "name": "LeadClaw", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139919475" + ] +} diff --git a/data/software/le/leakly.json b/data/software/le/leakly.json new file mode 100644 index 000000000000..48ce7bd3fe91 --- /dev/null +++ b/data/software/le/leakly.json @@ -0,0 +1,11 @@ +{ + "slug": "leakly", + "name": "Leakly", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140047242" + ], + "programming_languages": [ + "website" + ] +} diff --git a/data/software/le/leaktracer.json b/data/software/le/leaktracer.json new file mode 100644 index 000000000000..ef9df536e257 --- /dev/null +++ b/data/software/le/leaktracer.json @@ -0,0 +1,8 @@ +{ + "slug": "leaktracer", + "name": "LeakTracer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62863698" + ] +} diff --git a/data/software/le/leapcast.json b/data/software/le/leapcast.json new file mode 100644 index 000000000000..c0f80358b7c8 --- /dev/null +++ b/data/software/le/leapcast.json @@ -0,0 +1,11 @@ +{ + "slug": "leapcast", + "name": "leapcast", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975027" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/le/learn-2017.json b/data/software/le/learn-2017.json new file mode 100644 index 000000000000..d9b5f01db7cc --- /dev/null +++ b/data/software/le/learn-2017.json @@ -0,0 +1,8 @@ +{ + "slug": "learn-2017", + "name": "Learn 2017", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q56410709" + ] +} diff --git a/data/software/le/learn-to-program-basic.json b/data/software/le/learn-to-program-basic.json new file mode 100644 index 000000000000..6a9b22573c4f --- /dev/null +++ b/data/software/le/learn-to-program-basic.json @@ -0,0 +1,8 @@ +{ + "slug": "learn-to-program-basic", + "name": "Learn to Program BASIC", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139972693" + ] +} diff --git a/data/software/le/learnhub.json b/data/software/le/learnhub.json new file mode 100644 index 000000000000..a19b10eecc47 --- /dev/null +++ b/data/software/le/learnhub.json @@ -0,0 +1,8 @@ +{ + "slug": "learnhub", + "name": "Learnhub", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6510087" + ] +} diff --git a/data/software/le/lectora.json b/data/software/le/lectora.json new file mode 100644 index 000000000000..5557cf2f58ae --- /dev/null +++ b/data/software/le/lectora.json @@ -0,0 +1,8 @@ +{ + "slug": "lectora", + "name": "Lectora", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6512410" + ] +} diff --git a/data/software/le/led.json b/data/software/le/led.json new file mode 100644 index 000000000000..9a7eed508e56 --- /dev/null +++ b/data/software/le/led.json @@ -0,0 +1,8 @@ +{ + "slug": "led", + "name": "led", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065530" + ] +} diff --git a/data/software/le/ledgester.json b/data/software/le/ledgester.json new file mode 100644 index 000000000000..ebdae3ffe27d --- /dev/null +++ b/data/software/le/ledgester.json @@ -0,0 +1,11 @@ +{ + "slug": "ledgester", + "name": "Ledgester", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139985579" + ], + "programming_languages": [ + "Dart" + ] +} diff --git a/data/software/le/ledock.json b/data/software/le/ledock.json new file mode 100644 index 000000000000..c4250c016099 --- /dev/null +++ b/data/software/le/ledock.json @@ -0,0 +1,8 @@ +{ + "slug": "ledock", + "name": "LeDock", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q30675402" + ] +} diff --git a/data/software/le/leetify.json b/data/software/le/leetify.json new file mode 100644 index 000000000000..e3e68846a909 --- /dev/null +++ b/data/software/le/leetify.json @@ -0,0 +1,8 @@ +{ + "slug": "leetify", + "name": "Leetify", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140018889" + ] +} diff --git a/data/software/le/lego-mindstorms-ev3.json b/data/software/le/lego-mindstorms-ev3.json new file mode 100644 index 000000000000..c627d3f03f5e --- /dev/null +++ b/data/software/le/lego-mindstorms-ev3.json @@ -0,0 +1,11 @@ +{ + "slug": "lego-mindstorms-ev3", + "name": "LEGO Mindstorms EV3", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q132527506" + ], + "developers": [ + "The Lego Group" + ] +} diff --git a/data/software/le/lego-movie-maker.json b/data/software/le/lego-movie-maker.json new file mode 100644 index 000000000000..6053ae160abd --- /dev/null +++ b/data/software/le/lego-movie-maker.json @@ -0,0 +1,8 @@ +{ + "slug": "lego-movie-maker", + "name": "Lego Movie Maker", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138545499" + ] +} diff --git a/data/software/le/leher-app.json b/data/software/le/leher-app.json new file mode 100644 index 000000000000..a6b15b573380 --- /dev/null +++ b/data/software/le/leher-app.json @@ -0,0 +1,8 @@ +{ + "slug": "leher-app", + "name": "Leher App", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106292537" + ] +} diff --git a/data/software/le/leica-application-suite.json b/data/software/le/leica-application-suite.json new file mode 100644 index 000000000000..7afb52ebd310 --- /dev/null +++ b/data/software/le/leica-application-suite.json @@ -0,0 +1,8 @@ +{ + "slug": "leica-application-suite", + "name": "Leica Application Suite", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113206716" + ] +} diff --git a/data/software/le/lektz.json b/data/software/le/lektz.json new file mode 100644 index 000000000000..e399ab6aeb70 --- /dev/null +++ b/data/software/le/lektz.json @@ -0,0 +1,8 @@ +{ + "slug": "lektz", + "name": "Lektz", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6520669" + ] +} diff --git a/data/software/le/lemma.json b/data/software/le/lemma.json new file mode 100644 index 000000000000..f9f4e298ed0b --- /dev/null +++ b/data/software/le/lemma.json @@ -0,0 +1,8 @@ +{ + "slug": "lemma", + "name": "LEMMA", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085080" + ] +} diff --git a/data/software/le/lemonstand.json b/data/software/le/lemonstand.json new file mode 100644 index 000000000000..d3587a55f3a9 --- /dev/null +++ b/data/software/le/lemonstand.json @@ -0,0 +1,8 @@ +{ + "slug": "lemonstand", + "name": "LemonStand", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6521281" + ] +} diff --git a/data/software/le/lens-studio.json b/data/software/le/lens-studio.json new file mode 100644 index 000000000000..efd0ea251f20 --- /dev/null +++ b/data/software/le/lens-studio.json @@ -0,0 +1,15 @@ +{ + "slug": "lens-studio", + "name": "Lens Studio", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131376717" + ], + "developers": [ + "Snap Inc." + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/software/le/lensfun.json b/data/software/le/lensfun.json new file mode 100644 index 000000000000..5fad466a8d78 --- /dev/null +++ b/data/software/le/lensfun.json @@ -0,0 +1,15 @@ +{ + "slug": "lensfun", + "name": "Lensfun", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16528772" + ], + "developers": [ + "Torsten Bronger" + ], + "licenses": [ + "GNU Lesser General Public License, version 3.0", + "Creative Commons Attribution-ShareAlike 3.0 Unported" + ] +} diff --git a/data/software/le/leon-q28453245.json b/data/software/le/leon-q28453245.json new file mode 100644 index 000000000000..3c3051889a81 --- /dev/null +++ b/data/software/le/leon-q28453245.json @@ -0,0 +1,15 @@ +{ + "slug": "leon-q28453245", + "name": "Leon", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28453245" + ], + "release_date": "2004-01-01", + "developers": [ + "Zero-G Ltd" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/le/leon.json b/data/software/le/leon.json new file mode 100644 index 000000000000..93b0f4b570d4 --- /dev/null +++ b/data/software/le/leon.json @@ -0,0 +1,8 @@ +{ + "slug": "leon", + "name": "LEON", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q618889" + ] +} diff --git a/data/software/le/leonardo.json b/data/software/le/leonardo.json new file mode 100644 index 000000000000..a8504fcaaa39 --- /dev/null +++ b/data/software/le/leonardo.json @@ -0,0 +1,8 @@ +{ + "slug": "leonardo", + "name": "Leonardo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135615819" + ] +} diff --git a/data/software/le/lepion.json b/data/software/le/lepion.json new file mode 100644 index 000000000000..5400643b9ea5 --- /dev/null +++ b/data/software/le/lepion.json @@ -0,0 +1,8 @@ +{ + "slug": "lepion", + "name": "Lepion", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1755681" + ] +} diff --git a/data/software/le/lerobot.json b/data/software/le/lerobot.json new file mode 100644 index 000000000000..efd294006552 --- /dev/null +++ b/data/software/le/lerobot.json @@ -0,0 +1,11 @@ +{ + "slug": "lerobot", + "name": "LeRobot", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138813487" + ], + "licenses": [ + "Apache Software License 2.0" + ] +} diff --git a/data/software/le/lesspipe.json b/data/software/le/lesspipe.json new file mode 100644 index 000000000000..e9c4797df2f5 --- /dev/null +++ b/data/software/le/lesspipe.json @@ -0,0 +1,8 @@ +{ + "slug": "lesspipe", + "name": "lesspipe", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63064918" + ] +} diff --git a/data/software/le/letsview.json b/data/software/le/letsview.json new file mode 100644 index 000000000000..087d1ed18618 --- /dev/null +++ b/data/software/le/letsview.json @@ -0,0 +1,8 @@ +{ + "slug": "letsview", + "name": "LetsView", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q90991967" + ] +} diff --git a/data/software/le/letter-zyu.json b/data/software/le/letter-zyu.json new file mode 100644 index 000000000000..c9638224686f --- /dev/null +++ b/data/software/le/letter-zyu.json @@ -0,0 +1,8 @@ +{ + "slug": "letter-zyu", + "name": "Letter Zyu", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4035492" + ] +} diff --git a/data/software/le/letterize.json b/data/software/le/letterize.json new file mode 100644 index 000000000000..c58e1aafe32a --- /dev/null +++ b/data/software/le/letterize.json @@ -0,0 +1,8 @@ +{ + "slug": "letterize", + "name": "letterize", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62860556" + ] +} diff --git a/data/software/le/letterwise.json b/data/software/le/letterwise.json new file mode 100644 index 000000000000..1d9e6711d4fd --- /dev/null +++ b/data/software/le/letterwise.json @@ -0,0 +1,8 @@ +{ + "slug": "letterwise", + "name": "LetterWise", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6533528" + ] +} diff --git a/data/software/le/lettrs.json b/data/software/le/lettrs.json new file mode 100644 index 000000000000..209c3b04b6f6 --- /dev/null +++ b/data/software/le/lettrs.json @@ -0,0 +1,14 @@ +{ + "slug": "lettrs", + "name": "lettrs", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17067413" + ], + "developers": [ + "Drew Bartkiewicz" + ], + "operating_systems": [ + "iOS" + ] +} diff --git a/data/software/le/levelator.json b/data/software/le/levelator.json new file mode 100644 index 000000000000..3af142f89bfd --- /dev/null +++ b/data/software/le/levelator.json @@ -0,0 +1,11 @@ +{ + "slug": "levelator", + "name": "Levelator", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6535098" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/le/levitate.json b/data/software/le/levitate.json new file mode 100644 index 000000000000..8009c216592c --- /dev/null +++ b/data/software/le/levitate.json @@ -0,0 +1,13 @@ +{ + "slug": "levitate", + "name": "Levitate", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135263638" + ], + "operating_systems": [ + "iOS", + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/software/le/lex.json b/data/software/le/lex.json new file mode 100644 index 000000000000..c3c7e0e379fa --- /dev/null +++ b/data/software/le/lex.json @@ -0,0 +1,8 @@ +{ + "slug": "lex", + "name": "Lex", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134108833" + ] +} diff --git a/data/software/le/lexa-q139915394.json b/data/software/le/lexa-q139915394.json new file mode 100644 index 000000000000..c2ef00a02d64 --- /dev/null +++ b/data/software/le/lexa-q139915394.json @@ -0,0 +1,22 @@ +{ + "slug": "lexa-q139915394", + "name": "LexA", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139915394" + ], + "developers": [ + "SDN IT-Services GmbH" + ], + "publishers": [ + "SDN IT-Services GmbH" + ], + "programming_languages": [ + "Python", + "Java", + "TypeScript" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/le/lexa.json b/data/software/le/lexa.json new file mode 100644 index 000000000000..2d06b21aa36c --- /dev/null +++ b/data/software/le/lexa.json @@ -0,0 +1,8 @@ +{ + "slug": "lexa", + "name": "Lexa", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085081" + ] +} diff --git a/data/software/le/lexcycle-stanza.json b/data/software/le/lexcycle-stanza.json new file mode 100644 index 000000000000..4ac886512e52 --- /dev/null +++ b/data/software/le/lexcycle-stanza.json @@ -0,0 +1,11 @@ +{ + "slug": "lexcycle-stanza", + "name": "Lexcycle Stanza", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3237339" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/le/lexical-variant-generation.json b/data/software/le/lexical-variant-generation.json new file mode 100644 index 000000000000..ae677670499d --- /dev/null +++ b/data/software/le/lexical-variant-generation.json @@ -0,0 +1,11 @@ +{ + "slug": "lexical-variant-generation", + "name": "Lexical Variant Generation", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q48968894" + ], + "programming_languages": [ + "Java" + ] +} diff --git a/data/software/le/lexico.json b/data/software/le/lexico.json new file mode 100644 index 000000000000..9db9ad2fb246 --- /dev/null +++ b/data/software/le/lexico.json @@ -0,0 +1,8 @@ +{ + "slug": "lexico", + "name": "Lexico", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3237343" + ] +} diff --git a/data/software/le/leximancer.json b/data/software/le/leximancer.json new file mode 100644 index 000000000000..7b9058c277a3 --- /dev/null +++ b/data/software/le/leximancer.json @@ -0,0 +1,15 @@ +{ + "slug": "leximancer", + "name": "Leximancer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105840133" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/le/lexnet.json b/data/software/le/lexnet.json new file mode 100644 index 000000000000..5f5b508ad8fd --- /dev/null +++ b/data/software/le/lexnet.json @@ -0,0 +1,20 @@ +{ + "slug": "lexnet", + "name": "Lexnet", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5961554" + ], + "developers": [ + "Ministry of Justice of Spain" + ], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [ + "Java" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/le/lexomics.json b/data/software/le/lexomics.json new file mode 100644 index 000000000000..a851b6b6649e --- /dev/null +++ b/data/software/le/lexomics.json @@ -0,0 +1,8 @@ +{ + "slug": "lexomics", + "name": "Lexomics", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087823" + ] +} diff --git a/data/software/le/lexos.json b/data/software/le/lexos.json new file mode 100644 index 000000000000..93a3c9b7a83e --- /dev/null +++ b/data/software/le/lexos.json @@ -0,0 +1,8 @@ +{ + "slug": "lexos", + "name": "Lexos", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085082" + ] +} diff --git a/data/software/le/lextek.json b/data/software/le/lextek.json new file mode 100644 index 000000000000..f4e14586e2d3 --- /dev/null +++ b/data/software/le/lextek.json @@ -0,0 +1,8 @@ +{ + "slug": "lextek", + "name": "Lextek", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085083" + ] +} diff --git a/data/software/lf/lft.json b/data/software/lf/lft.json new file mode 100644 index 000000000000..93a2d39a2a70 --- /dev/null +++ b/data/software/lf/lft.json @@ -0,0 +1,8 @@ +{ + "slug": "lft", + "name": "LFT", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62860525" + ] +} diff --git a/data/software/lg/lgte.json b/data/software/lg/lgte.json new file mode 100644 index 000000000000..017a0763cd05 --- /dev/null +++ b/data/software/lg/lgte.json @@ -0,0 +1,14 @@ +{ + "slug": "lgte", + "name": "LGTE", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6458350" + ], + "operating_systems": [ + "cross-platform" + ], + "programming_languages": [ + "Java" + ] +} diff --git a/data/software/lh/lhasa-q125523061.json b/data/software/lh/lhasa-q125523061.json new file mode 100644 index 000000000000..2d6766a28ba9 --- /dev/null +++ b/data/software/lh/lhasa-q125523061.json @@ -0,0 +1,8 @@ +{ + "slug": "lhasa-q125523061", + "name": "LHASA", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125523061" + ] +} diff --git a/data/software/lh/lhasa.json b/data/software/lh/lhasa.json new file mode 100644 index 000000000000..392c4549b4a4 --- /dev/null +++ b/data/software/lh/lhasa.json @@ -0,0 +1,8 @@ +{ + "slug": "lhasa", + "name": "Lhasa", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6538508" + ] +} diff --git a/data/software/lh/lhc-home.json b/data/software/lh/lhc-home.json new file mode 100644 index 000000000000..6b9e33dd0a3c --- /dev/null +++ b/data/software/lh/lhc-home.json @@ -0,0 +1,11 @@ +{ + "slug": "lhc-home", + "name": "LHC@home", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q688523" + ], + "developers": [ + "CERN" + ] +} diff --git a/data/software/lh/lhs2tex.json b/data/software/lh/lhs2tex.json new file mode 100644 index 000000000000..0a9ea6fdab2d --- /dev/null +++ b/data/software/lh/lhs2tex.json @@ -0,0 +1,8 @@ +{ + "slug": "lhs2tex", + "name": "lhs2tex", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62860437" + ] +} diff --git a/data/software/li/liaotianbao.json b/data/software/li/liaotianbao.json new file mode 100644 index 000000000000..f7f7b4e3c561 --- /dev/null +++ b/data/software/li/liaotianbao.json @@ -0,0 +1,8 @@ +{ + "slug": "liaotianbao", + "name": "Liaotianbao", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q65042473" + ] +} diff --git a/data/software/li/liba53.json b/data/software/li/liba53.json new file mode 100644 index 000000000000..8938ec277910 --- /dev/null +++ b/data/software/li/liba53.json @@ -0,0 +1,8 @@ +{ + "slug": "liba53", + "name": "liba53", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975028" + ] +} diff --git a/data/software/li/libabigail.json b/data/software/li/libabigail.json new file mode 100644 index 000000000000..558e481c1299 --- /dev/null +++ b/data/software/li/libabigail.json @@ -0,0 +1,11 @@ +{ + "slug": "libabigail", + "name": "libabigail", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122782798" + ], + "licenses": [ + "Apache Software License 2.0" + ] +} diff --git a/data/software/li/libabw.json b/data/software/li/libabw.json new file mode 100644 index 000000000000..0ed5a57cecef --- /dev/null +++ b/data/software/li/libabw.json @@ -0,0 +1,11 @@ +{ + "slug": "libabw", + "name": "libabw", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135935931" + ], + "licenses": [ + "Mozilla Public License, version 2.0" + ] +} diff --git a/data/software/li/libaccroc.json b/data/software/li/libaccroc.json new file mode 100644 index 000000000000..6d647f696acd --- /dev/null +++ b/data/software/li/libaccroc.json @@ -0,0 +1,8 @@ +{ + "slug": "libaccroc", + "name": "LibAccroc", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76181370" + ] +} diff --git a/data/software/li/libalkimia.json b/data/software/li/libalkimia.json new file mode 100644 index 000000000000..23c413fe3128 --- /dev/null +++ b/data/software/li/libalkimia.json @@ -0,0 +1,8 @@ +{ + "slug": "libalkimia", + "name": "libalkimia", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065417" + ] +} diff --git a/data/software/li/libamc.json b/data/software/li/libamc.json new file mode 100644 index 000000000000..6fcd90514fe7 --- /dev/null +++ b/data/software/li/libamc.json @@ -0,0 +1,8 @@ +{ + "slug": "libamc", + "name": "libamc", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16528799" + ] +} diff --git a/data/software/li/libattica.json b/data/software/li/libattica.json new file mode 100644 index 000000000000..f72f186a9671 --- /dev/null +++ b/data/software/li/libattica.json @@ -0,0 +1,8 @@ +{ + "slug": "libattica", + "name": "libattica", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975030" + ] +} diff --git a/data/software/li/libax25.json b/data/software/li/libax25.json new file mode 100644 index 000000000000..cd726a39f24e --- /dev/null +++ b/data/software/li/libax25.json @@ -0,0 +1,8 @@ +{ + "slug": "libax25", + "name": "libax25", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62852311" + ] +} diff --git a/data/software/li/libayatana.json b/data/software/li/libayatana.json new file mode 100644 index 000000000000..1f06106dd8f9 --- /dev/null +++ b/data/software/li/libayatana.json @@ -0,0 +1,8 @@ +{ + "slug": "libayatana", + "name": "libayatana", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120311989" + ] +} diff --git a/data/software/li/libbdplus.json b/data/software/li/libbdplus.json new file mode 100644 index 000000000000..67ab28ae2d5e --- /dev/null +++ b/data/software/li/libbdplus.json @@ -0,0 +1,8 @@ +{ + "slug": "libbdplus", + "name": "libbdplus", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975032" + ] +} diff --git a/data/software/li/libbonobo.json b/data/software/li/libbonobo.json new file mode 100644 index 000000000000..087f3f945e5e --- /dev/null +++ b/data/software/li/libbonobo.json @@ -0,0 +1,8 @@ +{ + "slug": "libbonobo", + "name": "libbonobo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63064754" + ] +} diff --git a/data/software/li/libbtbb.json b/data/software/li/libbtbb.json new file mode 100644 index 000000000000..5e07b18f77bb --- /dev/null +++ b/data/software/li/libbtbb.json @@ -0,0 +1,8 @@ +{ + "slug": "libbtbb", + "name": "libbtbb", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975034" + ] +} diff --git a/data/software/li/libccd.json b/data/software/li/libccd.json new file mode 100644 index 000000000000..9bfe137e812f --- /dev/null +++ b/data/software/li/libccd.json @@ -0,0 +1,8 @@ +{ + "slug": "libccd", + "name": "libccd", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975035" + ] +} diff --git a/data/software/li/libcdr.json b/data/software/li/libcdr.json new file mode 100644 index 000000000000..50b06c8dd276 --- /dev/null +++ b/data/software/li/libcdr.json @@ -0,0 +1,14 @@ +{ + "slug": "libcdr", + "name": "libcdr", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975036" + ], + "developers": [ + "Document Liberation Project" + ], + "licenses": [ + "Mozilla Public License, version 2.0" + ] +} diff --git a/data/software/li/libcircle.json b/data/software/li/libcircle.json new file mode 100644 index 000000000000..a4bc0aa041f7 --- /dev/null +++ b/data/software/li/libcircle.json @@ -0,0 +1,8 @@ +{ + "slug": "libcircle", + "name": "libcircle", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975038" + ] +} diff --git a/data/software/li/libclc.json b/data/software/li/libclc.json new file mode 100644 index 000000000000..c3d01423d881 --- /dev/null +++ b/data/software/li/libclc.json @@ -0,0 +1,8 @@ +{ + "slug": "libclc", + "name": "libclc", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975040" + ] +} diff --git a/data/software/li/libclsync.json b/data/software/li/libclsync.json new file mode 100644 index 000000000000..be7a462a398c --- /dev/null +++ b/data/software/li/libclsync.json @@ -0,0 +1,8 @@ +{ + "slug": "libclsync", + "name": "libclsync", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975042" + ] +} diff --git a/data/software/li/libcmis.json b/data/software/li/libcmis.json new file mode 100644 index 000000000000..7f26e03a68ef --- /dev/null +++ b/data/software/li/libcmis.json @@ -0,0 +1,8 @@ +{ + "slug": "libcmis", + "name": "libcmis", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975043" + ] +} diff --git a/data/software/li/libcrafter.json b/data/software/li/libcrafter.json new file mode 100644 index 000000000000..04f774802bec --- /dev/null +++ b/data/software/li/libcrafter.json @@ -0,0 +1,11 @@ +{ + "slug": "libcrafter", + "name": "libcrafter", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975044" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/li/libcxxabi.json b/data/software/li/libcxxabi.json new file mode 100644 index 000000000000..83b15c15eb3f --- /dev/null +++ b/data/software/li/libcxxabi.json @@ -0,0 +1,11 @@ +{ + "slug": "libcxxabi", + "name": "libcxxabi", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975046" + ], + "licenses": [ + "Apache License" + ] +} diff --git a/data/software/li/libcxxrt.json b/data/software/li/libcxxrt.json new file mode 100644 index 000000000000..1376fa28891f --- /dev/null +++ b/data/software/li/libcxxrt.json @@ -0,0 +1,8 @@ +{ + "slug": "libcxxrt", + "name": "libcxxrt", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975047" + ] +} diff --git a/data/software/li/libdivecomputer.json b/data/software/li/libdivecomputer.json new file mode 100644 index 000000000000..4f3743bb31c5 --- /dev/null +++ b/data/software/li/libdivecomputer.json @@ -0,0 +1,8 @@ +{ + "slug": "libdivecomputer", + "name": "libdivecomputer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975049" + ] +} diff --git a/data/software/li/libdivsufsort.json b/data/software/li/libdivsufsort.json new file mode 100644 index 000000000000..4276f7dd4f5b --- /dev/null +++ b/data/software/li/libdivsufsort.json @@ -0,0 +1,11 @@ +{ + "slug": "libdivsufsort", + "name": "libdivsufsort", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975050" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/li/libdmc.json b/data/software/li/libdmc.json new file mode 100644 index 000000000000..9d927d2bb22f --- /dev/null +++ b/data/software/li/libdmc.json @@ -0,0 +1,8 @@ +{ + "slug": "libdmc", + "name": "Libdmc", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6540472" + ] +} diff --git a/data/software/li/libdnet-q62860492.json b/data/software/li/libdnet-q62860492.json new file mode 100644 index 000000000000..c8924b82a306 --- /dev/null +++ b/data/software/li/libdnet-q62860492.json @@ -0,0 +1,8 @@ +{ + "slug": "libdnet-q62860492", + "name": "libdnet", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62860492" + ] +} diff --git a/data/software/li/libdnet.json b/data/software/li/libdnet.json new file mode 100644 index 000000000000..c70fabba26a3 --- /dev/null +++ b/data/software/li/libdnet.json @@ -0,0 +1,8 @@ +{ + "slug": "libdnet", + "name": "libdnet", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62860490" + ] +} diff --git a/data/software/li/libechonest.json b/data/software/li/libechonest.json new file mode 100644 index 000000000000..caf12f5596ff --- /dev/null +++ b/data/software/li/libechonest.json @@ -0,0 +1,8 @@ +{ + "slug": "libechonest", + "name": "libechonest", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975054" + ] +} diff --git a/data/software/li/libeot.json b/data/software/li/libeot.json new file mode 100644 index 000000000000..583889261999 --- /dev/null +++ b/data/software/li/libeot.json @@ -0,0 +1,8 @@ +{ + "slug": "libeot", + "name": "libeot", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975055" + ] +} diff --git a/data/software/li/libepoxy.json b/data/software/li/libepoxy.json new file mode 100644 index 000000000000..26dda4f08391 --- /dev/null +++ b/data/software/li/libepoxy.json @@ -0,0 +1,8 @@ +{ + "slug": "libepoxy", + "name": "libepoxy", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975056" + ] +} diff --git a/data/software/li/libev.json b/data/software/li/libev.json new file mode 100644 index 000000000000..0877e1533a8e --- /dev/null +++ b/data/software/li/libev.json @@ -0,0 +1,11 @@ +{ + "slug": "libev", + "name": "libev", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63064998" + ], + "licenses": [ + "2-clause BSD License" + ] +} diff --git a/data/software/li/libfaketime.json b/data/software/li/libfaketime.json new file mode 100644 index 000000000000..a6332b564752 --- /dev/null +++ b/data/software/li/libfaketime.json @@ -0,0 +1,8 @@ +{ + "slug": "libfaketime", + "name": "LibFakeTime", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62852307" + ] +} diff --git a/data/software/li/libfame.json b/data/software/li/libfame.json new file mode 100644 index 000000000000..4962a73740f4 --- /dev/null +++ b/data/software/li/libfame.json @@ -0,0 +1,8 @@ +{ + "slug": "libfame", + "name": "libfame", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065484" + ] +} diff --git a/data/software/li/libfuse.json b/data/software/li/libfuse.json new file mode 100644 index 000000000000..6481c3b6c3c4 --- /dev/null +++ b/data/software/li/libfuse.json @@ -0,0 +1,12 @@ +{ + "slug": "libfuse", + "name": "libfuse", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q132853259" + ], + "developers": [ + "Nikolaus Rath", + "Miklos Szeredi" + ] +} diff --git a/data/software/li/libgit2-glib.json b/data/software/li/libgit2-glib.json new file mode 100644 index 000000000000..c18f455093dd --- /dev/null +++ b/data/software/li/libgit2-glib.json @@ -0,0 +1,8 @@ +{ + "slug": "libgit2-glib", + "name": "Libgit2-glib", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76181402" + ] +} diff --git a/data/software/li/libgltf.json b/data/software/li/libgltf.json new file mode 100644 index 000000000000..bf7b73116bf9 --- /dev/null +++ b/data/software/li/libgltf.json @@ -0,0 +1,8 @@ +{ + "slug": "libgltf", + "name": "libgltf", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975063" + ] +} diff --git a/data/software/li/libgnomecanvasmm.json b/data/software/li/libgnomecanvasmm.json new file mode 100644 index 000000000000..4ce99c154ed3 --- /dev/null +++ b/data/software/li/libgnomecanvasmm.json @@ -0,0 +1,8 @@ +{ + "slug": "libgnomecanvasmm", + "name": "libgnomecanvasmm", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60864647" + ] +} diff --git a/data/software/li/libgssh.json b/data/software/li/libgssh.json new file mode 100644 index 000000000000..df6fb651fd3d --- /dev/null +++ b/data/software/li/libgssh.json @@ -0,0 +1,8 @@ +{ + "slug": "libgssh", + "name": "LibGSSH", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q68089921" + ] +} diff --git a/data/software/li/libgsystem.json b/data/software/li/libgsystem.json new file mode 100644 index 000000000000..94d3059ce9cb --- /dev/null +++ b/data/software/li/libgsystem.json @@ -0,0 +1,8 @@ +{ + "slug": "libgsystem", + "name": "LibGSystem", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q68089926" + ] +} diff --git a/data/software/li/libh2o.json b/data/software/li/libh2o.json new file mode 100644 index 000000000000..1df143d34505 --- /dev/null +++ b/data/software/li/libh2o.json @@ -0,0 +1,8 @@ +{ + "slug": "libh2o", + "name": "libh2o", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975064" + ] +} diff --git a/data/software/li/libh2oxx.json b/data/software/li/libh2oxx.json new file mode 100644 index 000000000000..2ef1b51c52b8 --- /dev/null +++ b/data/software/li/libh2oxx.json @@ -0,0 +1,8 @@ +{ + "slug": "libh2oxx", + "name": "libh2oxx", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975065" + ] +} diff --git a/data/software/li/libhackrf.json b/data/software/li/libhackrf.json new file mode 100644 index 000000000000..87b710f53ec5 --- /dev/null +++ b/data/software/li/libhackrf.json @@ -0,0 +1,8 @@ +{ + "slug": "libhackrf", + "name": "libhackrf", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975066" + ] +} diff --git a/data/software/li/libhoudini.json b/data/software/li/libhoudini.json new file mode 100644 index 000000000000..9b7e72fa9f85 --- /dev/null +++ b/data/software/li/libhoudini.json @@ -0,0 +1,14 @@ +{ + "slug": "libhoudini", + "name": "libhoudini", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q104681947" + ], + "developers": [ + "Intel" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/li/libibverbs.json b/data/software/li/libibverbs.json new file mode 100644 index 000000000000..c5bb1dc4f625 --- /dev/null +++ b/data/software/li/libibverbs.json @@ -0,0 +1,8 @@ +{ + "slug": "libibverbs", + "name": "libibverbs", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63064980" + ] +} diff --git a/data/software/li/libinput-gestures.json b/data/software/li/libinput-gestures.json new file mode 100644 index 000000000000..2954b2d69820 --- /dev/null +++ b/data/software/li/libinput-gestures.json @@ -0,0 +1,8 @@ +{ + "slug": "libinput-gestures", + "name": "libinput-gestures", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975068" + ] +} diff --git a/data/software/li/libipod.json b/data/software/li/libipod.json new file mode 100644 index 000000000000..37b512e35b03 --- /dev/null +++ b/data/software/li/libipod.json @@ -0,0 +1,8 @@ +{ + "slug": "libipod", + "name": "libipod", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065620" + ] +} diff --git a/data/software/li/libiscsi.json b/data/software/li/libiscsi.json new file mode 100644 index 000000000000..08084ed8c25b --- /dev/null +++ b/data/software/li/libiscsi.json @@ -0,0 +1,8 @@ +{ + "slug": "libiscsi", + "name": "libiscsi", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975069" + ] +} diff --git a/data/software/li/libisds.json b/data/software/li/libisds.json new file mode 100644 index 000000000000..8d6898cc1b11 --- /dev/null +++ b/data/software/li/libisds.json @@ -0,0 +1,8 @@ +{ + "slug": "libisds", + "name": "libisds", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975071" + ] +} diff --git a/data/software/li/libixion.json b/data/software/li/libixion.json new file mode 100644 index 000000000000..b23bd30533d1 --- /dev/null +++ b/data/software/li/libixion.json @@ -0,0 +1,8 @@ +{ + "slug": "libixion", + "name": "libixion", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975072" + ] +} diff --git a/data/software/li/libixp.json b/data/software/li/libixp.json new file mode 100644 index 000000000000..ee99c0d10012 --- /dev/null +++ b/data/software/li/libixp.json @@ -0,0 +1,11 @@ +{ + "slug": "libixp", + "name": "libixp", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62860390" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/li/libjaylink.json b/data/software/li/libjaylink.json new file mode 100644 index 000000000000..739c841bfbf1 --- /dev/null +++ b/data/software/li/libjaylink.json @@ -0,0 +1,11 @@ +{ + "slug": "libjaylink", + "name": "libjaylink", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975073" + ], + "licenses": [ + "GNU General Public License, version 2.0 or later" + ] +} diff --git a/data/software/li/libjson-rpc-cpp.json b/data/software/li/libjson-rpc-cpp.json new file mode 100644 index 000000000000..80f91b874ba1 --- /dev/null +++ b/data/software/li/libjson-rpc-cpp.json @@ -0,0 +1,11 @@ +{ + "slug": "libjson-rpc-cpp", + "name": "libjson-rpc-cpp", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975074" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/li/libksysguard.json b/data/software/li/libksysguard.json new file mode 100644 index 000000000000..ac6aa3253922 --- /dev/null +++ b/data/software/li/libksysguard.json @@ -0,0 +1,8 @@ +{ + "slug": "libksysguard", + "name": "libksysguard", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065511" + ] +} diff --git a/data/software/li/liblaretz.json b/data/software/li/liblaretz.json new file mode 100644 index 000000000000..6ae973835549 --- /dev/null +++ b/data/software/li/liblaretz.json @@ -0,0 +1,8 @@ +{ + "slug": "liblaretz", + "name": "liblaretz", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975075" + ] +} diff --git a/data/software/li/liblognorm.json b/data/software/li/liblognorm.json new file mode 100644 index 000000000000..d066e9b2764b --- /dev/null +++ b/data/software/li/liblognorm.json @@ -0,0 +1,12 @@ +{ + "slug": "liblognorm", + "name": "liblognorm", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975076" + ], + "developers": [ + "Adiscon GmbH", + "Rainer Gerhards" + ] +} diff --git a/data/software/li/libmbim.json b/data/software/li/libmbim.json new file mode 100644 index 000000000000..d45f8e2de053 --- /dev/null +++ b/data/software/li/libmbim.json @@ -0,0 +1,12 @@ +{ + "slug": "libmbim", + "name": "libmbim", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975078" + ], + "licenses": [ + "GNU Lesser General Public License, version 2.1 or later", + "GNU General Public License, version 2.0 or later" + ] +} diff --git a/data/software/li/libmirisdr.json b/data/software/li/libmirisdr.json new file mode 100644 index 000000000000..f28e12372187 --- /dev/null +++ b/data/software/li/libmirisdr.json @@ -0,0 +1,8 @@ +{ + "slug": "libmirisdr", + "name": "libmirisdr", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975079" + ] +} diff --git a/data/software/li/libmowgli.json b/data/software/li/libmowgli.json new file mode 100644 index 000000000000..17d414ff593d --- /dev/null +++ b/data/software/li/libmowgli.json @@ -0,0 +1,8 @@ +{ + "slug": "libmowgli", + "name": "libmowgli", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975080" + ] +} diff --git a/data/software/li/libomp.json b/data/software/li/libomp.json new file mode 100644 index 000000000000..7b4865d01f8e --- /dev/null +++ b/data/software/li/libomp.json @@ -0,0 +1,11 @@ +{ + "slug": "libomp", + "name": "libomp", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975088" + ], + "licenses": [ + "Apache License" + ] +} diff --git a/data/software/li/libon.json b/data/software/li/libon.json new file mode 100644 index 000000000000..65bb37f2f178 --- /dev/null +++ b/data/software/li/libon.json @@ -0,0 +1,11 @@ +{ + "slug": "libon", + "name": "Libon", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3237883" + ], + "developers": [ + "Orange" + ] +} diff --git a/data/software/li/liborcus.json b/data/software/li/liborcus.json new file mode 100644 index 000000000000..e168679177c4 --- /dev/null +++ b/data/software/li/liborcus.json @@ -0,0 +1,8 @@ +{ + "slug": "liborcus", + "name": "liborcus", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975089" + ] +} diff --git a/data/software/li/libosmo-abis.json b/data/software/li/libosmo-abis.json new file mode 100644 index 000000000000..a8391e8acf60 --- /dev/null +++ b/data/software/li/libosmo-abis.json @@ -0,0 +1,8 @@ +{ + "slug": "libosmo-abis", + "name": "libosmo-abis", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975090" + ] +} diff --git a/data/software/li/libosmo-dsp.json b/data/software/li/libosmo-dsp.json new file mode 100644 index 000000000000..933b52c485f5 --- /dev/null +++ b/data/software/li/libosmo-dsp.json @@ -0,0 +1,8 @@ +{ + "slug": "libosmo-dsp", + "name": "libosmo-dsp", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975092" + ] +} diff --git a/data/software/li/libosmo-netif.json b/data/software/li/libosmo-netif.json new file mode 100644 index 000000000000..ed8d89fdac1b --- /dev/null +++ b/data/software/li/libosmo-netif.json @@ -0,0 +1,8 @@ +{ + "slug": "libosmo-netif", + "name": "libosmo-netif", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975093" + ] +} diff --git a/data/software/li/libosmocore.json b/data/software/li/libosmocore.json new file mode 100644 index 000000000000..e10d94580885 --- /dev/null +++ b/data/software/li/libosmocore.json @@ -0,0 +1,8 @@ +{ + "slug": "libosmocore", + "name": "libosmocore", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975091" + ] +} diff --git a/data/software/li/libox.json b/data/software/li/libox.json new file mode 100644 index 000000000000..283b8319b207 --- /dev/null +++ b/data/software/li/libox.json @@ -0,0 +1,9 @@ +{ + "slug": "libox", + "name": "LIBOX", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6458602" + ], + "release_date": "2010-06-22" +} diff --git a/data/software/li/libp2p.json b/data/software/li/libp2p.json new file mode 100644 index 000000000000..23380c4dff2e --- /dev/null +++ b/data/software/li/libp2p.json @@ -0,0 +1,8 @@ +{ + "slug": "libp2p", + "name": "Libp2p", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136311893" + ] +} diff --git a/data/software/li/libpolo.json b/data/software/li/libpolo.json new file mode 100644 index 000000000000..e17815f991be --- /dev/null +++ b/data/software/li/libpolo.json @@ -0,0 +1,8 @@ +{ + "slug": "libpolo", + "name": "Libpolo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6542419" + ] +} diff --git a/data/software/li/libpostproc.json b/data/software/li/libpostproc.json new file mode 100644 index 000000000000..7f1107d621ef --- /dev/null +++ b/data/software/li/libpostproc.json @@ -0,0 +1,8 @@ +{ + "slug": "libpostproc", + "name": "libpostproc", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975096" + ] +} diff --git a/data/software/li/libqmi.json b/data/software/li/libqmi.json new file mode 100644 index 000000000000..82e3b9083a3d --- /dev/null +++ b/data/software/li/libqmi.json @@ -0,0 +1,8 @@ +{ + "slug": "libqmi", + "name": "libqmi", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975097" + ] +} diff --git a/data/software/li/libqtxdg.json b/data/software/li/libqtxdg.json new file mode 100644 index 000000000000..355088a6180d --- /dev/null +++ b/data/software/li/libqtxdg.json @@ -0,0 +1,8 @@ +{ + "slug": "libqtxdg", + "name": "libqtxdg", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975098" + ] +} diff --git a/data/software/li/libquo.json b/data/software/li/libquo.json new file mode 100644 index 000000000000..0275f235af98 --- /dev/null +++ b/data/software/li/libquo.json @@ -0,0 +1,11 @@ +{ + "slug": "libquo", + "name": "libquo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975099" + ], + "licenses": [ + "3-clause BSD License" + ] +} diff --git a/data/software/li/libqxp.json b/data/software/li/libqxp.json new file mode 100644 index 000000000000..3a944a238938 --- /dev/null +++ b/data/software/li/libqxp.json @@ -0,0 +1,8 @@ +{ + "slug": "libqxp", + "name": "libqxp", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065410" + ] +} diff --git a/data/software/li/libramatic.json b/data/software/li/libramatic.json new file mode 100644 index 000000000000..eef4b138bef3 --- /dev/null +++ b/data/software/li/libramatic.json @@ -0,0 +1,8 @@ +{ + "slug": "libramatic", + "name": "Libramatic", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17088906" + ] +} diff --git a/data/software/li/librdkafka.json b/data/software/li/librdkafka.json new file mode 100644 index 000000000000..ff17db19c6ae --- /dev/null +++ b/data/software/li/librdkafka.json @@ -0,0 +1,11 @@ +{ + "slug": "librdkafka", + "name": "librdkafka", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975100" + ], + "operating_systems": [ + "Unix-like operating system" + ] +} diff --git a/data/software/li/libreja-gmbh.json b/data/software/li/libreja-gmbh.json new file mode 100644 index 000000000000..84953d5411a1 --- /dev/null +++ b/data/software/li/libreja-gmbh.json @@ -0,0 +1,8 @@ +{ + "slug": "libreja-gmbh", + "name": "Libreja GmbH", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63799728" + ] +} diff --git a/data/software/li/libreoffice-impress.json b/data/software/li/libreoffice-impress.json new file mode 100644 index 000000000000..3a263f91904e --- /dev/null +++ b/data/software/li/libreoffice-impress.json @@ -0,0 +1,24 @@ +{ + "slug": "libreoffice-impress", + "name": "LibreOffice Impress", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11931856" + ], + "developers": [ + "The Document Foundation" + ], + "operating_systems": [ + "Haiku", + "FreeBSD", + "OpenBSD", + "macOS", + "Microsoft Windows" + ], + "programming_languages": [ + "Java" + ], + "licenses": [ + "Mozilla Public License, version 2.0" + ] +} diff --git a/data/software/li/libreqda.json b/data/software/li/libreqda.json new file mode 100644 index 000000000000..edfa4c83bffa --- /dev/null +++ b/data/software/li/libreqda.json @@ -0,0 +1,8 @@ +{ + "slug": "libreqda", + "name": "libreQDA", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q21573285" + ] +} diff --git a/data/software/li/libresource.json b/data/software/li/libresource.json new file mode 100644 index 000000000000..0041d9c200fd --- /dev/null +++ b/data/software/li/libresource.json @@ -0,0 +1,8 @@ +{ + "slug": "libresource", + "name": "LibreSource", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3237925" + ] +} diff --git a/data/software/li/librest.json b/data/software/li/librest.json new file mode 100644 index 000000000000..4103f90ce578 --- /dev/null +++ b/data/software/li/librest.json @@ -0,0 +1,14 @@ +{ + "slug": "librest", + "name": "librest", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q68089892" + ], + "developers": [ + "GNOME Foundation" + ], + "licenses": [ + "GNU Lesser General Public License, version 2.1 or later" + ] +} diff --git a/data/software/li/libretro-dosbox.json b/data/software/li/libretro-dosbox.json new file mode 100644 index 000000000000..dee7ff5054f2 --- /dev/null +++ b/data/software/li/libretro-dosbox.json @@ -0,0 +1,8 @@ +{ + "slug": "libretro-dosbox", + "name": "libretro-dosbox", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60918696" + ] +} diff --git a/data/software/li/libroadrunner.json b/data/software/li/libroadrunner.json new file mode 100644 index 000000000000..1c0f72948e9a --- /dev/null +++ b/data/software/li/libroadrunner.json @@ -0,0 +1,8 @@ +{ + "slug": "libroadrunner", + "name": "Libroadrunner", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118945300" + ] +} diff --git a/data/software/li/libsafe-linux-security-defunct.json b/data/software/li/libsafe-linux-security-defunct.json new file mode 100644 index 000000000000..69841bd3b929 --- /dev/null +++ b/data/software/li/libsafe-linux-security-defunct.json @@ -0,0 +1,8 @@ +{ + "slug": "libsafe-linux-security-defunct", + "name": "Libsafe linux security (defunct)", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11755696" + ] +} diff --git a/data/software/li/libsafe.json b/data/software/li/libsafe.json new file mode 100644 index 000000000000..068dc09ceb47 --- /dev/null +++ b/data/software/li/libsafe.json @@ -0,0 +1,8 @@ +{ + "slug": "libsafe", + "name": "Libsafe", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110762371" + ] +} diff --git a/data/software/li/libselinux.json b/data/software/li/libselinux.json new file mode 100644 index 000000000000..209a566b9b8c --- /dev/null +++ b/data/software/li/libselinux.json @@ -0,0 +1,8 @@ +{ + "slug": "libselinux", + "name": "libselinux", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975104" + ] +} diff --git a/data/software/li/libsemanage.json b/data/software/li/libsemanage.json new file mode 100644 index 000000000000..06295cd80d4b --- /dev/null +++ b/data/software/li/libsemanage.json @@ -0,0 +1,8 @@ +{ + "slug": "libsemanage", + "name": "libsemanage", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975105" + ] +} diff --git a/data/software/li/libsepol.json b/data/software/li/libsepol.json new file mode 100644 index 000000000000..8416c83adc56 --- /dev/null +++ b/data/software/li/libsepol.json @@ -0,0 +1,8 @@ +{ + "slug": "libsepol", + "name": "libsepol", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975106" + ] +} diff --git a/data/software/li/libserialport.json b/data/software/li/libserialport.json new file mode 100644 index 000000000000..a28c60de92bc --- /dev/null +++ b/data/software/li/libserialport.json @@ -0,0 +1,8 @@ +{ + "slug": "libserialport", + "name": "libserialport", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975107" + ] +} diff --git a/data/software/li/libshumate.json b/data/software/li/libshumate.json new file mode 100644 index 000000000000..4c9d31f80262 --- /dev/null +++ b/data/software/li/libshumate.json @@ -0,0 +1,8 @@ +{ + "slug": "libshumate", + "name": "libshumate", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q100195605" + ] +} diff --git a/data/software/li/libsigrok.json b/data/software/li/libsigrok.json new file mode 100644 index 000000000000..5eb9ee58fbff --- /dev/null +++ b/data/software/li/libsigrok.json @@ -0,0 +1,8 @@ +{ + "slug": "libsigrok", + "name": "libsigrok", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975108" + ] +} diff --git a/data/software/li/libsigrokdecode.json b/data/software/li/libsigrokdecode.json new file mode 100644 index 000000000000..311b6c5f010b --- /dev/null +++ b/data/software/li/libsigrokdecode.json @@ -0,0 +1,8 @@ +{ + "slug": "libsigrokdecode", + "name": "libsigrokdecode", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975109" + ] +} diff --git a/data/software/li/libspatialindex.json b/data/software/li/libspatialindex.json new file mode 100644 index 000000000000..5f1dffcd83d6 --- /dev/null +++ b/data/software/li/libspatialindex.json @@ -0,0 +1,8 @@ +{ + "slug": "libspatialindex", + "name": "libspatialindex", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065181" + ] +} diff --git a/data/software/li/libspe2.json b/data/software/li/libspe2.json new file mode 100644 index 000000000000..02af56cc4309 --- /dev/null +++ b/data/software/li/libspe2.json @@ -0,0 +1,8 @@ +{ + "slug": "libspe2", + "name": "libspe2", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065342" + ] +} diff --git a/data/software/li/libtar.json b/data/software/li/libtar.json new file mode 100644 index 000000000000..9d00dd3035e7 --- /dev/null +++ b/data/software/li/libtar.json @@ -0,0 +1,8 @@ +{ + "slug": "libtar", + "name": "libtar", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065365" + ] +} diff --git a/data/software/li/libtinynotify-cli.json b/data/software/li/libtinynotify-cli.json new file mode 100644 index 000000000000..41be9da54c27 --- /dev/null +++ b/data/software/li/libtinynotify-cli.json @@ -0,0 +1,8 @@ +{ + "slug": "libtinynotify-cli", + "name": "libtinynotify-cli", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975116" + ] +} diff --git a/data/software/li/libtinynotify-systemwide.json b/data/software/li/libtinynotify-systemwide.json new file mode 100644 index 000000000000..b619f5113527 --- /dev/null +++ b/data/software/li/libtinynotify-systemwide.json @@ -0,0 +1,8 @@ +{ + "slug": "libtinynotify-systemwide", + "name": "libtinynotify-systemwide", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975118" + ] +} diff --git a/data/software/li/libtinynotify.json b/data/software/li/libtinynotify.json new file mode 100644 index 000000000000..2a75914c01b4 --- /dev/null +++ b/data/software/li/libtinynotify.json @@ -0,0 +1,8 @@ +{ + "slug": "libtinynotify", + "name": "libtinynotify", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975115" + ] +} diff --git a/data/software/li/libtxc-dxtn.json b/data/software/li/libtxc-dxtn.json new file mode 100644 index 000000000000..a1e93ee926b2 --- /dev/null +++ b/data/software/li/libtxc-dxtn.json @@ -0,0 +1,8 @@ +{ + "slug": "libtxc-dxtn", + "name": "libtxc_dxtn", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63064782" + ] +} diff --git a/data/software/li/libu2f-server.json b/data/software/li/libu2f-server.json new file mode 100644 index 000000000000..754e3d99f08b --- /dev/null +++ b/data/software/li/libu2f-server.json @@ -0,0 +1,8 @@ +{ + "slug": "libu2f-server", + "name": "libu2f-server", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q88506240" + ] +} diff --git a/data/software/li/libva-intel-driver.json b/data/software/li/libva-intel-driver.json new file mode 100644 index 000000000000..21cf551f4c38 --- /dev/null +++ b/data/software/li/libva-intel-driver.json @@ -0,0 +1,8 @@ +{ + "slug": "libva-intel-driver", + "name": "libva-intel-driver", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975119" + ] +} diff --git a/data/software/li/libvirt-php.json b/data/software/li/libvirt-php.json new file mode 100644 index 000000000000..d019409cb516 --- /dev/null +++ b/data/software/li/libvirt-php.json @@ -0,0 +1,8 @@ +{ + "slug": "libvirt-php", + "name": "libvirt-php", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975120" + ] +} diff --git a/data/software/li/libwbxml.json b/data/software/li/libwbxml.json new file mode 100644 index 000000000000..4d6201f6a7a2 --- /dev/null +++ b/data/software/li/libwbxml.json @@ -0,0 +1,8 @@ +{ + "slug": "libwbxml", + "name": "libwbxml", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065419" + ] +} diff --git a/data/software/li/libx.json b/data/software/li/libx.json new file mode 100644 index 000000000000..ebbbe6b974d4 --- /dev/null +++ b/data/software/li/libx.json @@ -0,0 +1,14 @@ +{ + "slug": "libx", + "name": "LibX", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q9368107" + ], + "developers": [ + "Virginia Tech" + ], + "licenses": [ + "Mozilla Public License" + ] +} diff --git a/data/software/li/libxcm.json b/data/software/li/libxcm.json new file mode 100644 index 000000000000..6a4d85249aa4 --- /dev/null +++ b/data/software/li/libxcm.json @@ -0,0 +1,8 @@ +{ + "slug": "libxcm", + "name": "libXcm", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975124" + ] +} diff --git a/data/software/li/libxklavier.json b/data/software/li/libxklavier.json new file mode 100644 index 000000000000..526583e7535d --- /dev/null +++ b/data/software/li/libxklavier.json @@ -0,0 +1,8 @@ +{ + "slug": "libxklavier", + "name": "libxklavier", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065436" + ] +} diff --git a/data/software/li/libxls.json b/data/software/li/libxls.json new file mode 100644 index 000000000000..90de2098bb49 --- /dev/null +++ b/data/software/li/libxls.json @@ -0,0 +1,8 @@ +{ + "slug": "libxls", + "name": "libxls", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065280" + ] +} diff --git a/data/software/li/libxml-perl.json b/data/software/li/libxml-perl.json new file mode 100644 index 000000000000..57c297f43c22 --- /dev/null +++ b/data/software/li/libxml-perl.json @@ -0,0 +1,8 @@ +{ + "slug": "libxml-perl", + "name": "libxml-perl", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62852270" + ] +} diff --git a/data/software/li/libyami.json b/data/software/li/libyami.json new file mode 100644 index 000000000000..dd8db36dac15 --- /dev/null +++ b/data/software/li/libyami.json @@ -0,0 +1,11 @@ +{ + "slug": "libyami", + "name": "libyami", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975128" + ], + "licenses": [ + "Apache License" + ] +} diff --git a/data/software/li/licma.json b/data/software/li/licma.json new file mode 100644 index 000000000000..6c89cd735b45 --- /dev/null +++ b/data/software/li/licma.json @@ -0,0 +1,11 @@ +{ + "slug": "licma", + "name": "licma", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127485434" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/li/lideraai.json b/data/software/li/lideraai.json new file mode 100644 index 000000000000..f7f44412c901 --- /dev/null +++ b/data/software/li/lideraai.json @@ -0,0 +1,8 @@ +{ + "slug": "lideraai", + "name": "LideraAI", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140287074" + ] +} diff --git a/data/software/li/lidort.json b/data/software/li/lidort.json new file mode 100644 index 000000000000..9873f572d8c1 --- /dev/null +++ b/data/software/li/lidort.json @@ -0,0 +1,8 @@ +{ + "slug": "lidort", + "name": "LIDORT", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123470838" + ] +} diff --git a/data/software/li/life-with-playstation.json b/data/software/li/life-with-playstation.json new file mode 100644 index 000000000000..11f9d25fa749 --- /dev/null +++ b/data/software/li/life-with-playstation.json @@ -0,0 +1,8 @@ +{ + "slug": "life-with-playstation", + "name": "Life with PlayStation", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6545324" + ] +} diff --git a/data/software/li/life360.json b/data/software/li/life360.json new file mode 100644 index 000000000000..7011f5ca334a --- /dev/null +++ b/data/software/li/life360.json @@ -0,0 +1,8 @@ +{ + "slug": "life360", + "name": "Life360", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17152633" + ] +} diff --git a/data/software/li/lifer-ladder.json b/data/software/li/lifer-ladder.json new file mode 100644 index 000000000000..f98b87a66c87 --- /dev/null +++ b/data/software/li/lifer-ladder.json @@ -0,0 +1,8 @@ +{ + "slug": "lifer-ladder", + "name": "LIFER/LADDER", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6458629" + ] +} diff --git a/data/software/li/lifeyo.json b/data/software/li/lifeyo.json new file mode 100644 index 000000000000..b8c778e53c77 --- /dev/null +++ b/data/software/li/lifeyo.json @@ -0,0 +1,8 @@ +{ + "slug": "lifeyo", + "name": "Lifeyo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6545553" + ] +} diff --git a/data/software/li/ligandscout.json b/data/software/li/ligandscout.json new file mode 100644 index 000000000000..60d0aa9d3f84 --- /dev/null +++ b/data/software/li/ligandscout.json @@ -0,0 +1,8 @@ +{ + "slug": "ligandscout", + "name": "LigandScout", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6545852" + ] +} diff --git a/data/software/li/light-alloy.json b/data/software/li/light-alloy.json new file mode 100644 index 000000000000..596e190c112a --- /dev/null +++ b/data/software/li/light-alloy.json @@ -0,0 +1,17 @@ +{ + "slug": "light-alloy", + "name": "Light Alloy", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4042885" + ], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [ + "Delphi" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/li/lightbox-com.json b/data/software/li/lightbox-com.json new file mode 100644 index 000000000000..14bcaa45868f --- /dev/null +++ b/data/software/li/lightbox-com.json @@ -0,0 +1,11 @@ +{ + "slug": "lightbox-com", + "name": "lightbox.com", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10318291" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/li/lightbox.json b/data/software/li/lightbox.json new file mode 100644 index 000000000000..680685adbb26 --- /dev/null +++ b/data/software/li/lightbox.json @@ -0,0 +1,14 @@ +{ + "slug": "lightbox", + "name": "Lightbox", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3486953" + ], + "operating_systems": [ + "cross-platform" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/li/lightgbm.json b/data/software/li/lightgbm.json new file mode 100644 index 000000000000..ea61b70f5a78 --- /dev/null +++ b/data/software/li/lightgbm.json @@ -0,0 +1,11 @@ +{ + "slug": "lightgbm", + "name": "LightGBM", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q57267665" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/li/lighthouse.json b/data/software/li/lighthouse.json new file mode 100644 index 000000000000..c233ad677fab --- /dev/null +++ b/data/software/li/lighthouse.json @@ -0,0 +1,11 @@ +{ + "slug": "lighthouse", + "name": "Lighthouse", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q104217227" + ], + "licenses": [ + "Apache Software License 2.0" + ] +} diff --git a/data/software/li/lightline.json b/data/software/li/lightline.json new file mode 100644 index 000000000000..8cdc989f7776 --- /dev/null +++ b/data/software/li/lightline.json @@ -0,0 +1,11 @@ +{ + "slug": "lightline", + "name": "lightline", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975130" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/li/lightscribe.json b/data/software/li/lightscribe.json new file mode 100644 index 000000000000..c02db18d0a73 --- /dev/null +++ b/data/software/li/lightscribe.json @@ -0,0 +1,14 @@ +{ + "slug": "lightscribe", + "name": "LightScribe", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q679874" + ], + "developers": [ + "Hewlett-Packard" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/li/ligplot.json b/data/software/li/ligplot.json new file mode 100644 index 000000000000..c0d56568b867 --- /dev/null +++ b/data/software/li/ligplot.json @@ -0,0 +1,8 @@ +{ + "slug": "ligplot", + "name": "LIGPLOT", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6458666" + ] +} diff --git a/data/software/li/lily.json b/data/software/li/lily.json new file mode 100644 index 000000000000..9cf6293f599a --- /dev/null +++ b/data/software/li/lily.json @@ -0,0 +1,15 @@ +{ + "slug": "lily", + "name": "Lily", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10851429" + ], + "release_date": "2010-08-25", + "developers": [ + "Internet Co." + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/li/limdep.json b/data/software/li/limdep.json new file mode 100644 index 000000000000..8fb2f5e8dafb --- /dev/null +++ b/data/software/li/limdep.json @@ -0,0 +1,11 @@ +{ + "slug": "limdep", + "name": "LIMDEP", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q971216" + ], + "developers": [ + "William Greene" + ] +} diff --git a/data/software/li/limechat.json b/data/software/li/limechat.json new file mode 100644 index 000000000000..c085dfce0db2 --- /dev/null +++ b/data/software/li/limechat.json @@ -0,0 +1,17 @@ +{ + "slug": "limechat", + "name": "LimeChat", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3832482" + ], + "operating_systems": [ + "macOS" + ], + "programming_languages": [ + "Objective-C" + ], + "licenses": [ + "GNU General Public License, version 2.0" + ] +} diff --git a/data/software/li/limesurvey.json b/data/software/li/limesurvey.json new file mode 100644 index 000000000000..1a161bca33ac --- /dev/null +++ b/data/software/li/limesurvey.json @@ -0,0 +1,14 @@ +{ + "slug": "limesurvey", + "name": "LimeSurvey", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1514978" + ], + "programming_languages": [ + "PHP" + ], + "licenses": [ + "GNU General Public License, version 2.0 or later" + ] +} diff --git a/data/software/li/limine.json b/data/software/li/limine.json new file mode 100644 index 000000000000..5007c90be6a9 --- /dev/null +++ b/data/software/li/limine.json @@ -0,0 +1,11 @@ +{ + "slug": "limine", + "name": "Limine", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106536220" + ], + "licenses": [ + "2-clause BSD License" + ] +} diff --git a/data/software/li/limma.json b/data/software/li/limma.json new file mode 100644 index 000000000000..aa56a9c16f27 --- /dev/null +++ b/data/software/li/limma.json @@ -0,0 +1,11 @@ +{ + "slug": "limma", + "name": "limma", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112236343" + ], + "programming_languages": [ + "R" + ] +} diff --git a/data/software/li/limnoria.json b/data/software/li/limnoria.json new file mode 100644 index 000000000000..e89e2aad4384 --- /dev/null +++ b/data/software/li/limnoria.json @@ -0,0 +1,8 @@ +{ + "slug": "limnoria", + "name": "Limnoria", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975131" + ] +} diff --git a/data/software/li/limnu.json b/data/software/li/limnu.json new file mode 100644 index 000000000000..2c96afcbd569 --- /dev/null +++ b/data/software/li/limnu.json @@ -0,0 +1,8 @@ +{ + "slug": "limnu", + "name": "Limnu", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q23680055" + ] +} diff --git a/data/software/li/lindo.json b/data/software/li/lindo.json new file mode 100644 index 000000000000..fffe766a8591 --- /dev/null +++ b/data/software/li/lindo.json @@ -0,0 +1,8 @@ +{ + "slug": "lindo", + "name": "LINDO", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18344427" + ] +} diff --git a/data/software/li/lindvd.json b/data/software/li/lindvd.json new file mode 100644 index 000000000000..4dd964fa3195 --- /dev/null +++ b/data/software/li/lindvd.json @@ -0,0 +1,11 @@ +{ + "slug": "lindvd", + "name": "LinDVD", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4042936" + ], + "developers": [ + "Corel" + ] +} diff --git a/data/software/li/line-live.json b/data/software/li/line-live.json new file mode 100644 index 000000000000..0e63b091623a --- /dev/null +++ b/data/software/li/line-live.json @@ -0,0 +1,11 @@ +{ + "slug": "line-live", + "name": "LINE LIVE", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q24865768" + ], + "operating_systems": [ + "iOS" + ] +} diff --git a/data/software/li/line-messaging-api.json b/data/software/li/line-messaging-api.json new file mode 100644 index 000000000000..996c56da9a19 --- /dev/null +++ b/data/software/li/line-messaging-api.json @@ -0,0 +1,12 @@ +{ + "slug": "line-messaging-api", + "name": "LINE Messaging API", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q56089345" + ], + "release_date": "2016-01-01", + "developers": [ + "Z Intermediate Global Corporation" + ] +} diff --git a/data/software/li/line-profiler.json b/data/software/li/line-profiler.json new file mode 100644 index 000000000000..992a0181d358 --- /dev/null +++ b/data/software/li/line-profiler.json @@ -0,0 +1,8 @@ +{ + "slug": "line-profiler", + "name": "line_profiler", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975133" + ] +} diff --git a/data/software/li/liner.json b/data/software/li/liner.json new file mode 100644 index 000000000000..6b67d47ca300 --- /dev/null +++ b/data/software/li/liner.json @@ -0,0 +1,8 @@ +{ + "slug": "liner", + "name": "Liner", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q27951941" + ] +} diff --git a/data/software/li/liner2.json b/data/software/li/liner2.json new file mode 100644 index 000000000000..5d379c6b8a80 --- /dev/null +++ b/data/software/li/liner2.json @@ -0,0 +1,8 @@ +{ + "slug": "liner2", + "name": "Liner2", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087824" + ] +} diff --git a/data/software/li/lineup-ai.json b/data/software/li/lineup-ai.json new file mode 100644 index 000000000000..fcfd7d2d6cd5 --- /dev/null +++ b/data/software/li/lineup-ai.json @@ -0,0 +1,8 @@ +{ + "slug": "lineup-ai", + "name": "Lineup.ai", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117463037" + ] +} diff --git a/data/software/li/lingea-lexicon.json b/data/software/li/lingea-lexicon.json new file mode 100644 index 000000000000..2f71443bbb13 --- /dev/null +++ b/data/software/li/lingea-lexicon.json @@ -0,0 +1,8 @@ +{ + "slug": "lingea-lexicon", + "name": "Lingea Lexicon", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18113905" + ] +} diff --git a/data/software/li/lingocloud.json b/data/software/li/lingocloud.json new file mode 100644 index 000000000000..92f10f9fb8fd --- /dev/null +++ b/data/software/li/lingocloud.json @@ -0,0 +1,12 @@ +{ + "slug": "lingocloud", + "name": "LingoCloud", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q65953937" + ], + "release_date": "2017-01-01", + "licenses": [ + "freeware" + ] +} diff --git a/data/software/li/lingotek.json b/data/software/li/lingotek.json new file mode 100644 index 000000000000..1c3f91463e7d --- /dev/null +++ b/data/software/li/lingotek.json @@ -0,0 +1,8 @@ +{ + "slug": "lingotek", + "name": "lingotek", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q20030689" + ] +} diff --git a/data/software/li/linguee.json b/data/software/li/linguee.json new file mode 100644 index 000000000000..99c5aaebb21c --- /dev/null +++ b/data/software/li/linguee.json @@ -0,0 +1,8 @@ +{ + "slug": "linguee", + "name": "Linguee", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q952579" + ] +} diff --git a/data/software/li/linguistic-inquiry-and-word-count.json b/data/software/li/linguistic-inquiry-and-word-count.json new file mode 100644 index 000000000000..f5fa5d1c10fa --- /dev/null +++ b/data/software/li/linguistic-inquiry-and-word-count.json @@ -0,0 +1,8 @@ +{ + "slug": "linguistic-inquiry-and-word-count", + "name": "Linguistic Inquiry and Word Count", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087825" + ] +} diff --git a/data/software/li/linguix.json b/data/software/li/linguix.json new file mode 100644 index 000000000000..0f078662abc3 --- /dev/null +++ b/data/software/li/linguix.json @@ -0,0 +1,8 @@ +{ + "slug": "linguix", + "name": "Linguix", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q83011711" + ] +} diff --git a/data/software/li/linkchecker.json b/data/software/li/linkchecker.json new file mode 100644 index 000000000000..ae03346d189b --- /dev/null +++ b/data/software/li/linkchecker.json @@ -0,0 +1,8 @@ +{ + "slug": "linkchecker", + "name": "linkchecker", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975134" + ] +} diff --git a/data/software/li/linked-pipe-tool.json b/data/software/li/linked-pipe-tool.json new file mode 100644 index 000000000000..5c2d620f35ce --- /dev/null +++ b/data/software/li/linked-pipe-tool.json @@ -0,0 +1,8 @@ +{ + "slug": "linked-pipe-tool", + "name": "Linked Pipe Tool", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q73897825" + ] +} diff --git a/data/software/li/linkerd.json b/data/software/li/linkerd.json new file mode 100644 index 000000000000..6f7b3cd6f9a7 --- /dev/null +++ b/data/software/li/linkerd.json @@ -0,0 +1,11 @@ +{ + "slug": "linkerd", + "name": "Linkerd", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q88465954" + ], + "licenses": [ + "Apache Software License 2.0" + ] +} diff --git a/data/software/li/linkml.json b/data/software/li/linkml.json new file mode 100644 index 000000000000..531b093adeee --- /dev/null +++ b/data/software/li/linkml.json @@ -0,0 +1,14 @@ +{ + "slug": "linkml", + "name": "LinkML", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108911530" + ], + "programming_languages": [ + "Python" + ], + "licenses": [ + "Apache Software License 2.0" + ] +} diff --git a/data/software/li/linknot.json b/data/software/li/linknot.json new file mode 100644 index 000000000000..419bdf63cbdb --- /dev/null +++ b/data/software/li/linknot.json @@ -0,0 +1,8 @@ +{ + "slug": "linknot", + "name": "LinKnot", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123177535" + ] +} diff --git a/data/software/li/linkplease.json b/data/software/li/linkplease.json new file mode 100644 index 000000000000..e48c52ff121e --- /dev/null +++ b/data/software/li/linkplease.json @@ -0,0 +1,8 @@ +{ + "slug": "linkplease", + "name": "LinkPlease", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139618888" + ] +} diff --git a/data/software/li/linpack-benchmarks.json b/data/software/li/linpack-benchmarks.json new file mode 100644 index 000000000000..ae899b2ae599 --- /dev/null +++ b/data/software/li/linpack-benchmarks.json @@ -0,0 +1,8 @@ +{ + "slug": "linpack-benchmarks", + "name": "LINPACK benchmarks", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6458761" + ] +} diff --git a/data/software/li/linqpad.json b/data/software/li/linqpad.json new file mode 100644 index 000000000000..a443b693b4de --- /dev/null +++ b/data/software/li/linqpad.json @@ -0,0 +1,11 @@ +{ + "slug": "linqpad", + "name": "LINQPad", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6458764" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/li/linsig.json b/data/software/li/linsig.json new file mode 100644 index 000000000000..b163b1d205c2 --- /dev/null +++ b/data/software/li/linsig.json @@ -0,0 +1,11 @@ +{ + "slug": "linsig", + "name": "LINSIG", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6458765" + ], + "licenses": [ + "end-user license agreement" + ] +} diff --git a/data/software/li/linsmith.json b/data/software/li/linsmith.json new file mode 100644 index 000000000000..b47da13ad3bc --- /dev/null +++ b/data/software/li/linsmith.json @@ -0,0 +1,8 @@ +{ + "slug": "linsmith", + "name": "linSmith", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62860379" + ] +} diff --git a/data/software/li/linter-sql-rdbms.json b/data/software/li/linter-sql-rdbms.json new file mode 100644 index 000000000000..b01798b56305 --- /dev/null +++ b/data/software/li/linter-sql-rdbms.json @@ -0,0 +1,8 @@ +{ + "slug": "linter-sql-rdbms", + "name": "Linter SQL RDBMS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4251598" + ] +} diff --git a/data/software/li/linux-color-management.json b/data/software/li/linux-color-management.json new file mode 100644 index 000000000000..40ab80ad85de --- /dev/null +++ b/data/software/li/linux-color-management.json @@ -0,0 +1,8 @@ +{ + "slug": "linux-color-management", + "name": "Linux color management", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16253407" + ] +} diff --git a/data/software/li/linux-rt.json b/data/software/li/linux-rt.json new file mode 100644 index 000000000000..ded604aa6b9e --- /dev/null +++ b/data/software/li/linux-rt.json @@ -0,0 +1,11 @@ +{ + "slug": "linux-rt", + "name": "Linux-RT", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3241705" + ], + "licenses": [ + "GNU General Public License" + ] +} diff --git a/data/software/li/linuxpmi.json b/data/software/li/linuxpmi.json new file mode 100644 index 000000000000..298432551333 --- /dev/null +++ b/data/software/li/linuxpmi.json @@ -0,0 +1,8 @@ +{ + "slug": "linuxpmi", + "name": "LinuxPMI", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6555037" + ] +} diff --git a/data/software/li/linuxptp.json b/data/software/li/linuxptp.json new file mode 100644 index 000000000000..f20f62ee462e --- /dev/null +++ b/data/software/li/linuxptp.json @@ -0,0 +1,8 @@ +{ + "slug": "linuxptp", + "name": "linuxptp", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62852194" + ] +} diff --git a/data/software/li/linuxshield.json b/data/software/li/linuxshield.json new file mode 100644 index 000000000000..1dd52514cd98 --- /dev/null +++ b/data/software/li/linuxshield.json @@ -0,0 +1,8 @@ +{ + "slug": "linuxshield", + "name": "LinuxShield", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6555042" + ] +} diff --git a/data/software/li/lio-utils.json b/data/software/li/lio-utils.json new file mode 100644 index 000000000000..eba5ddfa0144 --- /dev/null +++ b/data/software/li/lio-utils.json @@ -0,0 +1,8 @@ +{ + "slug": "lio-utils", + "name": "lio-utils", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975136" + ] +} diff --git a/data/software/li/lionsolver.json b/data/software/li/lionsolver.json new file mode 100644 index 000000000000..32cc822bd57e --- /dev/null +++ b/data/software/li/lionsolver.json @@ -0,0 +1,12 @@ +{ + "slug": "lionsolver", + "name": "LIONsolver", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6458769" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/software/li/lippmannian-device-to-gephi.json b/data/software/li/lippmannian-device-to-gephi.json new file mode 100644 index 000000000000..47ecccfcb094 --- /dev/null +++ b/data/software/li/lippmannian-device-to-gephi.json @@ -0,0 +1,8 @@ +{ + "slug": "lippmannian-device-to-gephi", + "name": "Lippmannian Device to Gephi", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085084" + ] +} diff --git a/data/software/li/lipsia.json b/data/software/li/lipsia.json new file mode 100644 index 000000000000..01191cd80d51 --- /dev/null +++ b/data/software/li/lipsia.json @@ -0,0 +1,8 @@ +{ + "slug": "lipsia", + "name": "Lipsia", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q41566819" + ] +} diff --git a/data/software/li/liquid-rhythm.json b/data/software/li/liquid-rhythm.json new file mode 100644 index 000000000000..368cc1a8eb17 --- /dev/null +++ b/data/software/li/liquid-rhythm.json @@ -0,0 +1,11 @@ +{ + "slug": "liquid-rhythm", + "name": "Liquid Rhythm", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22906398" + ], + "programming_languages": [ + "Java" + ] +} diff --git a/data/software/li/liquid-spins.json b/data/software/li/liquid-spins.json new file mode 100644 index 000000000000..5c23d72e5537 --- /dev/null +++ b/data/software/li/liquid-spins.json @@ -0,0 +1,8 @@ +{ + "slug": "liquid-spins", + "name": "Liquid Spins", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q15094137" + ] +} diff --git a/data/software/li/liquidplanner.json b/data/software/li/liquidplanner.json new file mode 100644 index 000000000000..fc216d3fa0d3 --- /dev/null +++ b/data/software/li/liquidplanner.json @@ -0,0 +1,8 @@ +{ + "slug": "liquidplanner", + "name": "LiquidPlanner", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6557329" + ] +} diff --git a/data/software/li/lira.json b/data/software/li/lira.json new file mode 100644 index 000000000000..d1db9dadb801 --- /dev/null +++ b/data/software/li/lira.json @@ -0,0 +1,12 @@ +{ + "slug": "lira", + "name": "Lira", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4341029" + ], + "release_date": "1963-01-01", + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/li/lisa.json b/data/software/li/lisa.json new file mode 100644 index 000000000000..5ece8092a375 --- /dev/null +++ b/data/software/li/lisa.json @@ -0,0 +1,8 @@ +{ + "slug": "lisa", + "name": "LISA+", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1798158" + ] +} diff --git a/data/software/li/lise.json b/data/software/li/lise.json new file mode 100644 index 000000000000..6eeb9c9588be --- /dev/null +++ b/data/software/li/lise.json @@ -0,0 +1,11 @@ +{ + "slug": "lise", + "name": "LISE++", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17148607" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/li/lisica.json b/data/software/li/lisica.json new file mode 100644 index 000000000000..9d8b7aec6d3a --- /dev/null +++ b/data/software/li/lisica.json @@ -0,0 +1,11 @@ +{ + "slug": "lisica", + "name": "LiSiCA", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28447538" + ], + "programming_languages": [ + "Python" + ] +} diff --git a/data/software/li/lisk.json b/data/software/li/lisk.json new file mode 100644 index 000000000000..d7e0754d6db4 --- /dev/null +++ b/data/software/li/lisk.json @@ -0,0 +1,14 @@ +{ + "slug": "lisk", + "name": "Lisk", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q24526428" + ], + "programming_languages": [ + "Node.js" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/li/lispintro.json b/data/software/li/lispintro.json new file mode 100644 index 000000000000..7ae9e4cb9442 --- /dev/null +++ b/data/software/li/lispintro.json @@ -0,0 +1,8 @@ +{ + "slug": "lispintro", + "name": "Lispintro", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76185416" + ] +} diff --git a/data/software/li/lispworks.json b/data/software/li/lispworks.json new file mode 100644 index 000000000000..53d5f93e3fca --- /dev/null +++ b/data/software/li/lispworks.json @@ -0,0 +1,8 @@ +{ + "slug": "lispworks", + "name": "LispWorks", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6559085" + ] +} diff --git a/data/software/li/lisrel.json b/data/software/li/lisrel.json new file mode 100644 index 000000000000..2803fa226f5d --- /dev/null +++ b/data/software/li/lisrel.json @@ -0,0 +1,11 @@ +{ + "slug": "lisrel", + "name": "LISREL", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3376999" + ], + "developers": [ + "Karl Gustav Jöreskog" + ] +} diff --git a/data/software/li/list-label.json b/data/software/li/list-label.json new file mode 100644 index 000000000000..f53b25318e8f --- /dev/null +++ b/data/software/li/list-label.json @@ -0,0 +1,8 @@ +{ + "slug": "list-label", + "name": "List & Label", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1828074" + ] +} diff --git a/data/software/li/listango.json b/data/software/li/listango.json new file mode 100644 index 000000000000..981e5ddf9d64 --- /dev/null +++ b/data/software/li/listango.json @@ -0,0 +1,8 @@ +{ + "slug": "listango", + "name": "Listango", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085085" + ] +} diff --git a/data/software/li/listing-flow.json b/data/software/li/listing-flow.json new file mode 100644 index 000000000000..3774371e76e5 --- /dev/null +++ b/data/software/li/listing-flow.json @@ -0,0 +1,8 @@ +{ + "slug": "listing-flow", + "name": "Listing Flow", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139856689" + ] +} diff --git a/data/software/li/listserv.json b/data/software/li/listserv.json new file mode 100644 index 000000000000..268a2d9d3339 --- /dev/null +++ b/data/software/li/listserv.json @@ -0,0 +1,21 @@ +{ + "slug": "listserv", + "name": "LISTSERV", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1864976" + ], + "release_date": "1986-01-01", + "developers": [ + "LSoft Technologies Inc" + ], + "operating_systems": [ + "Windows Server 2016", + "Red Hat Linux", + "cross-platform", + "Solaris" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/li/litassist.json b/data/software/li/litassist.json new file mode 100644 index 000000000000..55429592ed6f --- /dev/null +++ b/data/software/li/litassist.json @@ -0,0 +1,8 @@ +{ + "slug": "litassist", + "name": "LitAssist", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105889878" + ] +} diff --git a/data/software/li/litblitz-literature-notes-manager.json b/data/software/li/litblitz-literature-notes-manager.json new file mode 100644 index 000000000000..56bb6cad4b9d --- /dev/null +++ b/data/software/li/litblitz-literature-notes-manager.json @@ -0,0 +1,8 @@ +{ + "slug": "litblitz-literature-notes-manager", + "name": "LitBlitz Literature Notes Manager", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085086" + ] +} diff --git a/data/software/li/liteclm.json b/data/software/li/liteclm.json new file mode 100644 index 000000000000..cfd03009b02d --- /dev/null +++ b/data/software/li/liteclm.json @@ -0,0 +1,11 @@ +{ + "slug": "liteclm", + "name": "LiteCLM", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140185420" + ], + "developers": [ + "Mystique AI" + ] +} diff --git a/data/software/li/litemanager.json b/data/software/li/litemanager.json new file mode 100644 index 000000000000..ac33344d6641 --- /dev/null +++ b/data/software/li/litemanager.json @@ -0,0 +1,8 @@ +{ + "slug": "litemanager", + "name": "LiteManager", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4043029" + ] +} diff --git a/data/software/li/literat.json b/data/software/li/literat.json new file mode 100644 index 000000000000..fa430369cc5e --- /dev/null +++ b/data/software/li/literat.json @@ -0,0 +1,14 @@ +{ + "slug": "literat", + "name": "LiteRat", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105748770" + ], + "operating_systems": [ + "Microsoft Windows" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/li/litlink.json b/data/software/li/litlink.json new file mode 100644 index 000000000000..50a20695eeb4 --- /dev/null +++ b/data/software/li/litlink.json @@ -0,0 +1,8 @@ +{ + "slug": "litlink", + "name": "Litlink", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1334728" + ] +} diff --git a/data/software/li/litmedia.json b/data/software/li/litmedia.json new file mode 100644 index 000000000000..626ea958caa9 --- /dev/null +++ b/data/software/li/litmedia.json @@ -0,0 +1,12 @@ +{ + "slug": "litmedia", + "name": "LitMedia", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140329693" + ], + "release_date": "2025-03-01", + "developers": [ + "LitMedia" + ] +} diff --git a/data/software/li/litmos.json b/data/software/li/litmos.json new file mode 100644 index 000000000000..2781c752e15b --- /dev/null +++ b/data/software/li/litmos.json @@ -0,0 +1,8 @@ +{ + "slug": "litmos", + "name": "Litmos", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22906536" + ] +} diff --git a/data/software/li/litmus.json b/data/software/li/litmus.json new file mode 100644 index 000000000000..5a268b73edce --- /dev/null +++ b/data/software/li/litmus.json @@ -0,0 +1,14 @@ +{ + "slug": "litmus", + "name": "Litmus", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6648610" + ], + "developers": [ + "Chris Cooper" + ], + "licenses": [ + "Mozilla Public License" + ] +} diff --git a/data/software/li/litstats.json b/data/software/li/litstats.json new file mode 100644 index 000000000000..c6fada077710 --- /dev/null +++ b/data/software/li/litstats.json @@ -0,0 +1,8 @@ +{ + "slug": "litstats", + "name": "LitStats", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087826" + ] +} diff --git a/data/software/li/little-minion.json b/data/software/li/little-minion.json new file mode 100644 index 000000000000..03082ca36c2f --- /dev/null +++ b/data/software/li/little-minion.json @@ -0,0 +1,8 @@ +{ + "slug": "little-minion", + "name": "Little Minion", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q73899440" + ] +} diff --git a/data/software/li/litviz.json b/data/software/li/litviz.json new file mode 100644 index 000000000000..c72c8d2a43f5 --- /dev/null +++ b/data/software/li/litviz.json @@ -0,0 +1,8 @@ +{ + "slug": "litviz", + "name": "LitViz", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085087" + ] +} diff --git a/data/software/li/livac-synchronous-corpus.json b/data/software/li/livac-synchronous-corpus.json new file mode 100644 index 000000000000..558569f061f9 --- /dev/null +++ b/data/software/li/livac-synchronous-corpus.json @@ -0,0 +1,12 @@ +{ + "slug": "livac-synchronous-corpus", + "name": "LIVAC Synchronous Corpus", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18344437" + ], + "release_date": "1995-07-01", + "operating_systems": [ + "cross-platform" + ] +} diff --git a/data/software/li/live-clipboard.json b/data/software/li/live-clipboard.json new file mode 100644 index 000000000000..50085a66dac1 --- /dev/null +++ b/data/software/li/live-clipboard.json @@ -0,0 +1,14 @@ +{ + "slug": "live-clipboard", + "name": "Live Clipboard", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6655042" + ], + "developers": [ + "Microsoft" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/li/live-commerce.json b/data/software/li/live-commerce.json new file mode 100644 index 000000000000..a3c1c9d413b4 --- /dev/null +++ b/data/software/li/live-commerce.json @@ -0,0 +1,11 @@ +{ + "slug": "live-commerce", + "name": "Live Commerce", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11230261" + ], + "developers": [ + "Digital Studio Co., Ltd" + ] +} diff --git a/data/software/li/live-connect.json b/data/software/li/live-connect.json new file mode 100644 index 000000000000..967066950c3b --- /dev/null +++ b/data/software/li/live-connect.json @@ -0,0 +1,8 @@ +{ + "slug": "live-connect", + "name": "Live Connect", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10751467" + ] +} diff --git a/data/software/li/live-home-3d.json b/data/software/li/live-home-3d.json new file mode 100644 index 000000000000..34b8b07d41ca --- /dev/null +++ b/data/software/li/live-home-3d.json @@ -0,0 +1,8 @@ +{ + "slug": "live-home-3d", + "name": "Live Home 3D", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q55080213" + ] +} diff --git a/data/software/li/live-ink-character-recognition-solution.json b/data/software/li/live-ink-character-recognition-solution.json new file mode 100644 index 000000000000..9f88b6000ea9 --- /dev/null +++ b/data/software/li/live-ink-character-recognition-solution.json @@ -0,0 +1,8 @@ +{ + "slug": "live-ink-character-recognition-solution", + "name": "Live ink character recognition solution", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25053381" + ] +} diff --git a/data/software/li/live-ly.json b/data/software/li/live-ly.json new file mode 100644 index 000000000000..72e151bb36fb --- /dev/null +++ b/data/software/li/live-ly.json @@ -0,0 +1,8 @@ +{ + "slug": "live-ly", + "name": "Live.ly", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125802948" + ] +} diff --git a/data/software/li/live-mesh.json b/data/software/li/live-mesh.json new file mode 100644 index 000000000000..d1c9fda49f66 --- /dev/null +++ b/data/software/li/live-mesh.json @@ -0,0 +1,14 @@ +{ + "slug": "live-mesh", + "name": "Live Mesh", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4053176" + ], + "developers": [ + "Microsoft" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/li/live-search-academic.json b/data/software/li/live-search-academic.json new file mode 100644 index 000000000000..5050c062b09f --- /dev/null +++ b/data/software/li/live-search-academic.json @@ -0,0 +1,11 @@ +{ + "slug": "live-search-academic", + "name": "Live Search Academic", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3835206" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/li/live-search-books.json b/data/software/li/live-search-books.json new file mode 100644 index 000000000000..7a0e1eb69b1b --- /dev/null +++ b/data/software/li/live-search-books.json @@ -0,0 +1,11 @@ +{ + "slug": "live-search-books", + "name": "Live Search Books", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3835210" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/li/live-transcribe.json b/data/software/li/live-transcribe.json new file mode 100644 index 000000000000..103698522c80 --- /dev/null +++ b/data/software/li/live-transcribe.json @@ -0,0 +1,8 @@ +{ + "slug": "live-transcribe", + "name": "Live Transcribe", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105721262" + ] +} diff --git a/data/software/li/livearea.json b/data/software/li/livearea.json new file mode 100644 index 000000000000..b1c9f21afb11 --- /dev/null +++ b/data/software/li/livearea.json @@ -0,0 +1,8 @@ +{ + "slug": "livearea", + "name": "LiveArea", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3256897" + ] +} diff --git a/data/software/li/livecd-tools.json b/data/software/li/livecd-tools.json new file mode 100644 index 000000000000..62e87a241247 --- /dev/null +++ b/data/software/li/livecd-tools.json @@ -0,0 +1,8 @@ +{ + "slug": "livecd-tools", + "name": "livecd-tools", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975138" + ] +} diff --git a/data/software/li/livechat.json b/data/software/li/livechat.json new file mode 100644 index 000000000000..22448dac5a59 --- /dev/null +++ b/data/software/li/livechat.json @@ -0,0 +1,19 @@ +{ + "slug": "livechat", + "name": "LiveChat", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1763653" + ], + "developers": [ + "Text, Inc.", + "Text" + ], + "publishers": [ + "Text", + "Text, Inc." + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/li/livedrive.json b/data/software/li/livedrive.json new file mode 100644 index 000000000000..49971596313e --- /dev/null +++ b/data/software/li/livedrive.json @@ -0,0 +1,12 @@ +{ + "slug": "livedrive", + "name": "Livedrive", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6658160" + ], + "release_date": "2008-12-01", + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/li/livejournal.json b/data/software/li/livejournal.json new file mode 100644 index 000000000000..7d218a9e8ba2 --- /dev/null +++ b/data/software/li/livejournal.json @@ -0,0 +1,8 @@ +{ + "slug": "livejournal", + "name": "LiveJournal", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085088" + ] +} diff --git a/data/software/li/liveme.json b/data/software/li/liveme.json new file mode 100644 index 000000000000..0e8ccd8f2f20 --- /dev/null +++ b/data/software/li/liveme.json @@ -0,0 +1,11 @@ +{ + "slug": "liveme", + "name": "LiveMe", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q30925952" + ], + "operating_systems": [ + "iOS" + ] +} diff --git a/data/software/li/livestation.json b/data/software/li/livestation.json new file mode 100644 index 000000000000..910619d7b077 --- /dev/null +++ b/data/software/li/livestation.json @@ -0,0 +1,8 @@ +{ + "slug": "livestation", + "name": "LiveStation", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q739853" + ] +} diff --git a/data/software/li/livestorm.json b/data/software/li/livestorm.json new file mode 100644 index 000000000000..79a004c2b045 --- /dev/null +++ b/data/software/li/livestorm.json @@ -0,0 +1,8 @@ +{ + "slug": "livestorm", + "name": "Livestorm", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q50809205" + ] +} diff --git a/data/software/li/liveusbcreator.json b/data/software/li/liveusbcreator.json new file mode 100644 index 000000000000..e61d39bad910 --- /dev/null +++ b/data/software/li/liveusbcreator.json @@ -0,0 +1,8 @@ +{ + "slug": "liveusbcreator", + "name": "liveUSBcreator", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q98732075" + ] +} diff --git a/data/software/li/livewire-professional.json b/data/software/li/livewire-professional.json new file mode 100644 index 000000000000..40696485688d --- /dev/null +++ b/data/software/li/livewire-professional.json @@ -0,0 +1,8 @@ +{ + "slug": "livewire-professional", + "name": "LiveWire Professional", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6654592" + ] +} diff --git a/data/software/ll/llama-q118120085.json b/data/software/ll/llama-q118120085.json new file mode 100644 index 000000000000..4728dcf2d0d2 --- /dev/null +++ b/data/software/ll/llama-q118120085.json @@ -0,0 +1,11 @@ +{ + "slug": "llama-q118120085", + "name": "LLAMA", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118120085" + ], + "licenses": [ + "Mozilla Public License, version 2.0" + ] +} diff --git a/data/software/ll/llama.json b/data/software/ll/llama.json new file mode 100644 index 000000000000..c8e69f802f97 --- /dev/null +++ b/data/software/ll/llama.json @@ -0,0 +1,15 @@ +{ + "slug": "llama", + "name": "LLaMA", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116894231" + ], + "release_date": "2023-02-01", + "developers": [ + "Meta" + ], + "programming_languages": [ + "Python" + ] +} diff --git a/data/software/ll/lldpd.json b/data/software/ll/lldpd.json new file mode 100644 index 000000000000..ae667fc06573 --- /dev/null +++ b/data/software/ll/lldpd.json @@ -0,0 +1,8 @@ +{ + "slug": "lldpd", + "name": "lldpd", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62854749" + ] +} diff --git a/data/software/ll/llvm-libunwind.json b/data/software/ll/llvm-libunwind.json new file mode 100644 index 000000000000..1118495f68b2 --- /dev/null +++ b/data/software/ll/llvm-libunwind.json @@ -0,0 +1,8 @@ +{ + "slug": "llvm-libunwind", + "name": "llvm-libunwind", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975140" + ] +} diff --git a/data/software/ll/llvm-ocaml.json b/data/software/ll/llvm-ocaml.json new file mode 100644 index 000000000000..4b55be1d748e --- /dev/null +++ b/data/software/ll/llvm-ocaml.json @@ -0,0 +1,8 @@ +{ + "slug": "llvm-ocaml", + "name": "llvm-ocaml", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975141" + ] +} diff --git a/data/software/ll/llvm-vim.json b/data/software/ll/llvm-vim.json new file mode 100644 index 000000000000..0829a8a17c98 --- /dev/null +++ b/data/software/ll/llvm-vim.json @@ -0,0 +1,8 @@ +{ + "slug": "llvm-vim", + "name": "llvm-vim", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975142" + ] +} diff --git a/data/software/lm/lm-x-license-manager.json b/data/software/lm/lm-x-license-manager.json new file mode 100644 index 000000000000..23ad5906f9ab --- /dev/null +++ b/data/software/lm/lm-x-license-manager.json @@ -0,0 +1,8 @@ +{ + "slug": "lm-x-license-manager", + "name": "LM-X License Manager", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q39055002" + ] +} diff --git a/data/software/lm/lmdb.json b/data/software/lm/lmdb.json new file mode 100644 index 000000000000..53d2755ee0cc --- /dev/null +++ b/data/software/lm/lmdb.json @@ -0,0 +1,8 @@ +{ + "slug": "lmdb", + "name": "lmdb++", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065354" + ] +} diff --git a/data/software/lm/lmfit.json b/data/software/lm/lmfit.json new file mode 100644 index 000000000000..6f7b553c463b --- /dev/null +++ b/data/software/lm/lmfit.json @@ -0,0 +1,8 @@ +{ + "slug": "lmfit", + "name": "lmfit", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065516" + ] +} diff --git a/data/software/lo/lo-na.json b/data/software/lo/lo-na.json new file mode 100644 index 000000000000..620cc02871c8 --- /dev/null +++ b/data/software/lo/lo-na.json @@ -0,0 +1,8 @@ +{ + "slug": "lo-na", + "name": "Loóna", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112516362" + ] +} diff --git a/data/software/lo/local-economic-assessment-package.json b/data/software/lo/local-economic-assessment-package.json new file mode 100644 index 000000000000..ea98ff489e05 --- /dev/null +++ b/data/software/lo/local-economic-assessment-package.json @@ -0,0 +1,11 @@ +{ + "slug": "local-economic-assessment-package", + "name": "Local Economic Assessment Package", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6663991" + ], + "developers": [ + "EBP US" + ] +} diff --git a/data/software/lo/local-shared-object.json b/data/software/lo/local-shared-object.json new file mode 100644 index 000000000000..cc98fe806947 --- /dev/null +++ b/data/software/lo/local-shared-object.json @@ -0,0 +1,8 @@ +{ + "slug": "local-shared-object", + "name": "local shared object", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1312725" + ] +} diff --git a/data/software/lo/localwiki.json b/data/software/lo/localwiki.json new file mode 100644 index 000000000000..221268373104 --- /dev/null +++ b/data/software/lo/localwiki.json @@ -0,0 +1,11 @@ +{ + "slug": "localwiki", + "name": "LocalWiki", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17034877" + ], + "programming_languages": [ + "Python" + ] +} diff --git a/data/software/lo/location-view.json b/data/software/lo/location-view.json new file mode 100644 index 000000000000..15480c44cc26 --- /dev/null +++ b/data/software/lo/location-view.json @@ -0,0 +1,8 @@ +{ + "slug": "location-view", + "name": "Location View", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5849726" + ] +} diff --git a/data/software/lo/locationtech-geogig.json b/data/software/lo/locationtech-geogig.json new file mode 100644 index 000000000000..0eaffb36f137 --- /dev/null +++ b/data/software/lo/locationtech-geogig.json @@ -0,0 +1,8 @@ +{ + "slug": "locationtech-geogig", + "name": "LocationTech GeoGig", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76176712" + ] +} diff --git a/data/software/lo/locationtech-geomesa.json b/data/software/lo/locationtech-geomesa.json new file mode 100644 index 000000000000..ba55424acadc --- /dev/null +++ b/data/software/lo/locationtech-geomesa.json @@ -0,0 +1,8 @@ +{ + "slug": "locationtech-geomesa", + "name": "LocationTech GeoMesa", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76174589" + ] +} diff --git a/data/software/lo/locationtech-geotrellis.json b/data/software/lo/locationtech-geotrellis.json new file mode 100644 index 000000000000..04374f9978a2 --- /dev/null +++ b/data/software/lo/locationtech-geotrellis.json @@ -0,0 +1,8 @@ +{ + "slug": "locationtech-geotrellis", + "name": "LocationTech GeoTrellis", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76176725" + ] +} diff --git a/data/software/lo/locationtech-geowave.json b/data/software/lo/locationtech-geowave.json new file mode 100644 index 000000000000..c82df0295c8b --- /dev/null +++ b/data/software/lo/locationtech-geowave.json @@ -0,0 +1,8 @@ +{ + "slug": "locationtech-geowave", + "name": "LocationTech GeoWave", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76169470" + ] +} diff --git a/data/software/lo/locationtech-spatial4j.json b/data/software/lo/locationtech-spatial4j.json new file mode 100644 index 000000000000..e58ce5d86fe8 --- /dev/null +++ b/data/software/lo/locationtech-spatial4j.json @@ -0,0 +1,8 @@ +{ + "slug": "locationtech-spatial4j", + "name": "LocationTech Spatial4j", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76176589" + ] +} diff --git a/data/software/lo/locloud-collections.json b/data/software/lo/locloud-collections.json new file mode 100644 index 000000000000..758dad63d6b8 --- /dev/null +++ b/data/software/lo/locloud-collections.json @@ -0,0 +1,8 @@ +{ + "slug": "locloud-collections", + "name": "LoCloud Collections", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085089" + ] +} diff --git a/data/software/lo/locus-map.json b/data/software/lo/locus-map.json new file mode 100644 index 000000000000..0c1341377845 --- /dev/null +++ b/data/software/lo/locus-map.json @@ -0,0 +1,11 @@ +{ + "slug": "locus-map", + "name": "Locus Map", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25344644" + ], + "programming_languages": [ + "Java" + ] +} diff --git a/data/software/lo/lodlive.json b/data/software/lo/lodlive.json new file mode 100644 index 000000000000..3df495fab615 --- /dev/null +++ b/data/software/lo/lodlive.json @@ -0,0 +1,8 @@ +{ + "slug": "lodlive", + "name": "LodLive", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085090" + ] +} diff --git a/data/software/lo/log-shipping.json b/data/software/lo/log-shipping.json new file mode 100644 index 000000000000..524d89a93fcc --- /dev/null +++ b/data/software/lo/log-shipping.json @@ -0,0 +1,8 @@ +{ + "slug": "log-shipping", + "name": "log shipping", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6666854" + ] +} diff --git a/data/software/lo/log4sh.json b/data/software/lo/log4sh.json new file mode 100644 index 000000000000..abde07d2dd4b --- /dev/null +++ b/data/software/lo/log4sh.json @@ -0,0 +1,8 @@ +{ + "slug": "log4sh", + "name": "log4sh", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065166" + ] +} diff --git a/data/software/lo/logcheck.json b/data/software/lo/logcheck.json new file mode 100644 index 000000000000..057cb6ebf3cc --- /dev/null +++ b/data/software/lo/logcheck.json @@ -0,0 +1,8 @@ +{ + "slug": "logcheck", + "name": "LogCheck", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62852130" + ] +} diff --git a/data/software/lo/loggerhead.json b/data/software/lo/loggerhead.json new file mode 100644 index 000000000000..ef4539df4d43 --- /dev/null +++ b/data/software/lo/loggerhead.json @@ -0,0 +1,8 @@ +{ + "slug": "loggerhead", + "name": "Loggerhead", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q133729030" + ] +} diff --git a/data/software/lo/logib.json b/data/software/lo/logib.json new file mode 100644 index 000000000000..a5872ebde2ef --- /dev/null +++ b/data/software/lo/logib.json @@ -0,0 +1,8 @@ +{ + "slug": "logib", + "name": "Logib", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1868009" + ] +} diff --git a/data/software/lo/logic-express.json b/data/software/lo/logic-express.json new file mode 100644 index 000000000000..0921d1f585ea --- /dev/null +++ b/data/software/lo/logic-express.json @@ -0,0 +1,11 @@ +{ + "slug": "logic-express", + "name": "Logic Express", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2246250" + ], + "developers": [ + "Apple Inc." + ] +} diff --git a/data/software/lo/logic-for-structure-determination.json b/data/software/lo/logic-for-structure-determination.json new file mode 100644 index 000000000000..f7b907572a40 --- /dev/null +++ b/data/software/lo/logic-for-structure-determination.json @@ -0,0 +1,11 @@ +{ + "slug": "logic-for-structure-determination", + "name": "Logic for Structure Determination", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111549556" + ], + "licenses": [ + "GNU General Public License, version 2.0" + ] +} diff --git a/data/software/lo/logic-studio.json b/data/software/lo/logic-studio.json new file mode 100644 index 000000000000..396d92dad948 --- /dev/null +++ b/data/software/lo/logic-studio.json @@ -0,0 +1,11 @@ +{ + "slug": "logic-studio", + "name": "Logic Studio", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1142467" + ], + "developers": [ + "Apple Inc." + ] +} diff --git a/data/software/lo/logic.json b/data/software/lo/logic.json new file mode 100644 index 000000000000..8cd226e72c0c --- /dev/null +++ b/data/software/lo/logic.json @@ -0,0 +1,11 @@ +{ + "slug": "logic", + "name": "Logic", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5978363" + ], + "licenses": [ + "Mozilla Public License" + ] +} diff --git a/data/software/lo/logical-decisions.json b/data/software/lo/logical-decisions.json new file mode 100644 index 000000000000..87b14431638e --- /dev/null +++ b/data/software/lo/logical-decisions.json @@ -0,0 +1,8 @@ +{ + "slug": "logical-decisions", + "name": "Logical Decisions", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6667476" + ] +} diff --git a/data/software/lo/login-vsi.json b/data/software/lo/login-vsi.json new file mode 100644 index 000000000000..3ea2b214927f --- /dev/null +++ b/data/software/lo/login-vsi.json @@ -0,0 +1,11 @@ +{ + "slug": "login-vsi", + "name": "Login VSI", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6667627" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/lo/loginventory.json b/data/software/lo/loginventory.json new file mode 100644 index 000000000000..8a275d8b6824 --- /dev/null +++ b/data/software/lo/loginventory.json @@ -0,0 +1,11 @@ +{ + "slug": "loginventory", + "name": "Loginventory", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6667635" + ], + "developers": [ + "Schmidt's LOGIN GmbH" + ] +} diff --git a/data/software/lo/logistics-functional-area-services.json b/data/software/lo/logistics-functional-area-services.json new file mode 100644 index 000000000000..34a4a30c754c --- /dev/null +++ b/data/software/lo/logistics-functional-area-services.json @@ -0,0 +1,8 @@ +{ + "slug": "logistics-functional-area-services", + "name": "Logistics Functional Area Services", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140312385" + ] +} diff --git a/data/software/lo/logo-extraction-puzzle.json b/data/software/lo/logo-extraction-puzzle.json new file mode 100644 index 000000000000..ad78c4fe5519 --- /dev/null +++ b/data/software/lo/logo-extraction-puzzle.json @@ -0,0 +1,8 @@ +{ + "slug": "logo-extraction-puzzle", + "name": "Logo extraction puzzle", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6667728" + ] +} diff --git a/data/software/lo/logoport.json b/data/software/lo/logoport.json new file mode 100644 index 000000000000..08df3fa95c66 --- /dev/null +++ b/data/software/lo/logoport.json @@ -0,0 +1,12 @@ +{ + "slug": "logoport", + "name": "Logoport", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3520102" + ], + "release_date": "2005-01-01", + "developers": [ + "Lionbridge" + ] +} diff --git a/data/software/lo/logos-the-logos-model-and-openlogos.json b/data/software/lo/logos-the-logos-model-and-openlogos.json new file mode 100644 index 000000000000..4321c3a207c6 --- /dev/null +++ b/data/software/lo/logos-the-logos-model-and-openlogos.json @@ -0,0 +1,18 @@ +{ + "slug": "logos-the-logos-model-and-openlogos", + "name": "Logos, the Logos Model and OpenLogos", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1398766" + ], + "developers": [ + "Bud Scott", + "Kenneth R. de Camargo, Jr." + ], + "operating_systems": [ + "Microsoft Windows" + ], + "licenses": [ + "GNU General Public License, version 2.0" + ] +} diff --git a/data/software/lo/logparser.json b/data/software/lo/logparser.json new file mode 100644 index 000000000000..a3041385abc2 --- /dev/null +++ b/data/software/lo/logparser.json @@ -0,0 +1,8 @@ +{ + "slug": "logparser", + "name": "logparser", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6667869" + ] +} diff --git a/data/software/lo/logseq.json b/data/software/lo/logseq.json new file mode 100644 index 000000000000..60ae4de5bed8 --- /dev/null +++ b/data/software/lo/logseq.json @@ -0,0 +1,22 @@ +{ + "slug": "logseq", + "name": "Logseq", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116748304" + ], + "operating_systems": [ + "iOS", + "macOS", + "Microsoft Windows" + ], + "programming_languages": [ + "Clojure", + "ClojureScript", + "TypeScript" + ], + "genres": [ + "note", + "knowledge base" + ] +} diff --git a/data/software/lo/logwatch.json b/data/software/lo/logwatch.json new file mode 100644 index 000000000000..6f4d6739c680 --- /dev/null +++ b/data/software/lo/logwatch.json @@ -0,0 +1,8 @@ +{ + "slug": "logwatch", + "name": "Logwatch", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62852122" + ] +} diff --git a/data/software/lo/lohit-nepali.json b/data/software/lo/lohit-nepali.json new file mode 100644 index 000000000000..5c42d732881d --- /dev/null +++ b/data/software/lo/lohit-nepali.json @@ -0,0 +1,8 @@ +{ + "slug": "lohit-nepali", + "name": "lohit-nepali", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106102047" + ] +} diff --git a/data/software/lo/lojain.json b/data/software/lo/lojain.json new file mode 100644 index 000000000000..8409d1a298df --- /dev/null +++ b/data/software/lo/lojain.json @@ -0,0 +1,11 @@ +{ + "slug": "lojain", + "name": "Lojain", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140354606" + ], + "developers": [ + "KIRA" + ] +} diff --git a/data/software/lo/loki-network.json b/data/software/lo/loki-network.json new file mode 100644 index 000000000000..e315ec79c3d7 --- /dev/null +++ b/data/software/lo/loki-network.json @@ -0,0 +1,8 @@ +{ + "slug": "loki-network", + "name": "Loki Network", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q75663336" + ] +} diff --git a/data/software/lo/lola-q105044096.json b/data/software/lo/lola-q105044096.json new file mode 100644 index 000000000000..b1e43388d092 --- /dev/null +++ b/data/software/lo/lola-q105044096.json @@ -0,0 +1,8 @@ +{ + "slug": "lola-q105044096", + "name": "LoLa", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105044096" + ] +} diff --git a/data/software/lo/lola-q30608689.json b/data/software/lo/lola-q30608689.json new file mode 100644 index 000000000000..11549597c84f --- /dev/null +++ b/data/software/lo/lola-q30608689.json @@ -0,0 +1,15 @@ +{ + "slug": "lola-q30608689", + "name": "Lola", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q30608689" + ], + "release_date": "2004-01-01", + "developers": [ + "Zero-G Ltd" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/lo/lola.json b/data/software/lo/lola.json new file mode 100644 index 000000000000..d3641ee1579c --- /dev/null +++ b/data/software/lo/lola.json @@ -0,0 +1,8 @@ +{ + "slug": "lola", + "name": "LOLA", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17162069" + ] +} diff --git a/data/software/lo/loliwin.json b/data/software/lo/loliwin.json new file mode 100644 index 000000000000..2b8a6f53d210 --- /dev/null +++ b/data/software/lo/loliwin.json @@ -0,0 +1,11 @@ +{ + "slug": "loliwin", + "name": "LoLiWin", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3257562" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/lo/lomoco.json b/data/software/lo/lomoco.json new file mode 100644 index 000000000000..4a26b8d5b30e --- /dev/null +++ b/data/software/lo/lomoco.json @@ -0,0 +1,8 @@ +{ + "slug": "lomoco", + "name": "lomoco", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62859677" + ] +} diff --git a/data/software/lo/loni-pipeline.json b/data/software/lo/loni-pipeline.json new file mode 100644 index 000000000000..0b8c9c804c15 --- /dev/null +++ b/data/software/lo/loni-pipeline.json @@ -0,0 +1,18 @@ +{ + "slug": "loni-pipeline", + "name": "LONI Pipeline", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6459537" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [ + "Java" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/lo/lookeen.json b/data/software/lo/lookeen.json new file mode 100644 index 000000000000..46cbbf94a886 --- /dev/null +++ b/data/software/lo/lookeen.json @@ -0,0 +1,11 @@ +{ + "slug": "lookeen", + "name": "Lookeen", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1143608" + ], + "developers": [ + "Axonic Informationssysteme GmbH" + ] +} diff --git a/data/software/lo/lookout-mobile-security.json b/data/software/lo/lookout-mobile-security.json new file mode 100644 index 000000000000..c2cf60b81a34 --- /dev/null +++ b/data/software/lo/lookout-mobile-security.json @@ -0,0 +1,8 @@ +{ + "slug": "lookout-mobile-security", + "name": "Lookout Mobile Security", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1869704" + ] +} diff --git a/data/software/lo/looloo.json b/data/software/lo/looloo.json new file mode 100644 index 000000000000..25525b509e92 --- /dev/null +++ b/data/software/lo/looloo.json @@ -0,0 +1,8 @@ +{ + "slug": "looloo", + "name": "looloo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16927886" + ] +} diff --git a/data/software/lo/loops.json b/data/software/lo/loops.json new file mode 100644 index 000000000000..4addc9d1155f --- /dev/null +++ b/data/software/lo/loops.json @@ -0,0 +1,8 @@ +{ + "slug": "loops", + "name": "Loops", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139570758" + ] +} diff --git a/data/software/lo/loqu8.json b/data/software/lo/loqu8.json new file mode 100644 index 000000000000..2ecdeb56000b --- /dev/null +++ b/data/software/lo/loqu8.json @@ -0,0 +1,12 @@ +{ + "slug": "loqu8", + "name": "Loqu8", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6678677" + ], + "release_date": "2008-01-01", + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/lo/los-angeles-strategic-extraction-and-restoration-zones.json b/data/software/lo/los-angeles-strategic-extraction-and-restoration-zones.json new file mode 100644 index 000000000000..a797b1cd8113 --- /dev/null +++ b/data/software/lo/los-angeles-strategic-extraction-and-restoration-zones.json @@ -0,0 +1,12 @@ +{ + "slug": "los-angeles-strategic-extraction-and-restoration-zones", + "name": "Los Angeles’ Strategic Extraction and Restoration zones", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q73045496" + ], + "developers": [ + "Los Angeles Police Department", + "Central Intelligence Agency" + ] +} diff --git a/data/software/lo/lotus-1-2-3-for-unix.json b/data/software/lo/lotus-1-2-3-for-unix.json new file mode 100644 index 000000000000..3244323b5bd8 --- /dev/null +++ b/data/software/lo/lotus-1-2-3-for-unix.json @@ -0,0 +1,14 @@ +{ + "slug": "lotus-1-2-3-for-unix", + "name": "Lotus 1-2-3 for UNIX", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q56557815" + ], + "developers": [ + "Lotus Software" + ], + "operating_systems": [ + "Solaris" + ] +} diff --git a/data/software/lo/lotus-agenda.json b/data/software/lo/lotus-agenda.json new file mode 100644 index 000000000000..d4f84dc4c74e --- /dev/null +++ b/data/software/lo/lotus-agenda.json @@ -0,0 +1,14 @@ +{ + "slug": "lotus-agenda", + "name": "Lotus Agenda", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6685131" + ], + "developers": [ + "Lotus Software" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/lo/lotus-impress.json b/data/software/lo/lotus-impress.json new file mode 100644 index 000000000000..6b219cb12431 --- /dev/null +++ b/data/software/lo/lotus-impress.json @@ -0,0 +1,8 @@ +{ + "slug": "lotus-impress", + "name": "Lotus Impress", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6685173" + ] +} diff --git a/data/software/lo/lotus-jazz.json b/data/software/lo/lotus-jazz.json new file mode 100644 index 000000000000..c913017af71a --- /dev/null +++ b/data/software/lo/lotus-jazz.json @@ -0,0 +1,8 @@ +{ + "slug": "lotus-jazz", + "name": "Lotus Jazz", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3260080" + ] +} diff --git a/data/software/lo/lotus-magellan.json b/data/software/lo/lotus-magellan.json new file mode 100644 index 000000000000..877e0716f560 --- /dev/null +++ b/data/software/lo/lotus-magellan.json @@ -0,0 +1,11 @@ +{ + "slug": "lotus-magellan", + "name": "Lotus Magellan", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1871255" + ], + "developers": [ + "Lotus Software" + ] +} diff --git a/data/software/lo/lotus-manuscript.json b/data/software/lo/lotus-manuscript.json new file mode 100644 index 000000000000..7ab444805d64 --- /dev/null +++ b/data/software/lo/lotus-manuscript.json @@ -0,0 +1,15 @@ +{ + "slug": "lotus-manuscript", + "name": "Lotus Manuscript", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3287097" + ], + "release_date": "1986-01-01", + "developers": [ + "Lotus Software" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/lo/lotus-notes-vip.json b/data/software/lo/lotus-notes-vip.json new file mode 100644 index 000000000000..07d29ee4aff3 --- /dev/null +++ b/data/software/lo/lotus-notes-vip.json @@ -0,0 +1,11 @@ +{ + "slug": "lotus-notes-vip", + "name": "Lotus Notes VIP", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q56557816" + ], + "developers": [ + "Lotus Software" + ] +} diff --git a/data/software/lo/lotus-symphony.json b/data/software/lo/lotus-symphony.json new file mode 100644 index 000000000000..6de33c0d7838 --- /dev/null +++ b/data/software/lo/lotus-symphony.json @@ -0,0 +1,12 @@ +{ + "slug": "lotus-symphony", + "name": "Lotus Symphony", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q13360160" + ], + "release_date": "1986-01-01", + "developers": [ + "Lotus Software" + ] +} diff --git a/data/software/lp/lp-solve.json b/data/software/lp/lp-solve.json new file mode 100644 index 000000000000..1331687d37df --- /dev/null +++ b/data/software/lp/lp-solve.json @@ -0,0 +1,8 @@ +{ + "slug": "lp-solve", + "name": "Lp solve", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127102999" + ] +} diff --git a/data/software/ls/lstu.json b/data/software/ls/lstu.json new file mode 100644 index 000000000000..9d82225c02b9 --- /dev/null +++ b/data/software/ls/lstu.json @@ -0,0 +1,8 @@ +{ + "slug": "lstu", + "name": "LSTU", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q98732134" + ] +} diff --git a/data/software/ls/lsuio.json b/data/software/ls/lsuio.json new file mode 100644 index 000000000000..519c4e076f6a --- /dev/null +++ b/data/software/ls/lsuio.json @@ -0,0 +1,8 @@ +{ + "slug": "lsuio", + "name": "lsuio", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065592" + ] +} diff --git a/data/software/ls/lsyncd.json b/data/software/ls/lsyncd.json new file mode 100644 index 000000000000..3d8e65e8f1c8 --- /dev/null +++ b/data/software/ls/lsyncd.json @@ -0,0 +1,8 @@ +{ + "slug": "lsyncd", + "name": "Lsyncd", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62851974" + ] +} diff --git a/data/software/lt/lte440.json b/data/software/lt/lte440.json new file mode 100644 index 000000000000..5455f7f9b247 --- /dev/null +++ b/data/software/lt/lte440.json @@ -0,0 +1,8 @@ +{ + "slug": "lte440", + "name": "LTE440", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138508748" + ] +} diff --git a/data/software/lt/ltools.json b/data/software/lt/ltools.json new file mode 100644 index 000000000000..3b62a36c820f --- /dev/null +++ b/data/software/lt/ltools.json @@ -0,0 +1,8 @@ +{ + "slug": "ltools", + "name": "LTOOLS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6460188" + ] +} diff --git a/data/software/lt/ltx-2.json b/data/software/lt/ltx-2.json new file mode 100644 index 000000000000..ed1e5e61fed3 --- /dev/null +++ b/data/software/lt/ltx-2.json @@ -0,0 +1,8 @@ +{ + "slug": "ltx-2", + "name": "LTX-2", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137360122" + ] +} diff --git a/data/software/lt/ltx-studio.json b/data/software/lt/ltx-studio.json new file mode 100644 index 000000000000..841be5dfdd17 --- /dev/null +++ b/data/software/lt/ltx-studio.json @@ -0,0 +1,8 @@ +{ + "slug": "ltx-studio", + "name": "LTX Studio", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136564421" + ] +} diff --git a/data/software/lu/lucidlife.json b/data/software/lu/lucidlife.json new file mode 100644 index 000000000000..8ffa5a1f5a6a --- /dev/null +++ b/data/software/lu/lucidlife.json @@ -0,0 +1,8 @@ +{ + "slug": "lucidlife", + "name": "lucidlife", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q88501690" + ] +} diff --git a/data/software/lu/lucidworks.json b/data/software/lu/lucidworks.json new file mode 100644 index 000000000000..6473fd6c6826 --- /dev/null +++ b/data/software/lu/lucidworks.json @@ -0,0 +1,11 @@ +{ + "slug": "lucidworks", + "name": "LucidWorks", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6696906" + ], + "programming_languages": [ + "Java" + ] +} diff --git a/data/software/lu/luit.json b/data/software/lu/luit.json new file mode 100644 index 000000000000..342c3a4737db --- /dev/null +++ b/data/software/lu/luit.json @@ -0,0 +1,14 @@ +{ + "slug": "luit", + "name": "luit", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6701368" + ], + "developers": [ + "Thomas E. Dickey" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/lu/lulu-app.json b/data/software/lu/lulu-app.json new file mode 100644 index 000000000000..89dc392beeba --- /dev/null +++ b/data/software/lu/lulu-app.json @@ -0,0 +1,8 @@ +{ + "slug": "lulu-app", + "name": "Lulu (app)", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q15242322" + ] +} diff --git a/data/software/lu/luma-ai-dream-machine.json b/data/software/lu/luma-ai-dream-machine.json new file mode 100644 index 000000000000..817b4d56b9bd --- /dev/null +++ b/data/software/lu/luma-ai-dream-machine.json @@ -0,0 +1,9 @@ +{ + "slug": "luma-ai-dream-machine", + "name": "Luma AI (Dream Machine)", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q133140937" + ], + "release_date": "2024-01-01" +} diff --git a/data/software/lu/luma.json b/data/software/lu/luma.json new file mode 100644 index 000000000000..2a0226c85d3a --- /dev/null +++ b/data/software/lu/luma.json @@ -0,0 +1,15 @@ +{ + "slug": "luma", + "name": "LUMA", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126188166" + ], + "release_date": "2022-11-10", + "licenses": [ + "freeware" + ], + "genres": [ + "puzzle video game" + ] +} diff --git a/data/software/lu/lumina-desktop.json b/data/software/lu/lumina-desktop.json new file mode 100644 index 000000000000..6ed0c2024356 --- /dev/null +++ b/data/software/lu/lumina-desktop.json @@ -0,0 +1,11 @@ +{ + "slug": "lumina-desktop", + "name": "Lumina Desktop", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q19599479" + ], + "licenses": [ + "3-clause BSD License" + ] +} diff --git a/data/software/lu/luminar-neo.json b/data/software/lu/luminar-neo.json new file mode 100644 index 000000000000..9732d8b77504 --- /dev/null +++ b/data/software/lu/luminar-neo.json @@ -0,0 +1,8 @@ +{ + "slug": "luminar-neo", + "name": "Luminar Neo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q48610530" + ] +} diff --git a/data/software/lu/luminy.json b/data/software/lu/luminy.json new file mode 100644 index 000000000000..629f6ae0aa64 --- /dev/null +++ b/data/software/lu/luminy.json @@ -0,0 +1,14 @@ +{ + "slug": "luminy", + "name": "Luminy", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139902812" + ], + "programming_languages": [ + "TypeScript" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/lu/lumion.json b/data/software/lu/lumion.json new file mode 100644 index 000000000000..b0cc3f5c0ffe --- /dev/null +++ b/data/software/lu/lumion.json @@ -0,0 +1,11 @@ +{ + "slug": "lumion", + "name": "Lumion", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q55729443" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/lu/lumo.json b/data/software/lu/lumo.json new file mode 100644 index 000000000000..e1fe5daafd50 --- /dev/null +++ b/data/software/lu/lumo.json @@ -0,0 +1,11 @@ +{ + "slug": "lumo", + "name": "Lumo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136825372" + ], + "developers": [ + "Proton" + ] +} diff --git a/data/software/lu/luna-modeler.json b/data/software/lu/luna-modeler.json new file mode 100644 index 000000000000..15e3716cec19 --- /dev/null +++ b/data/software/lu/luna-modeler.json @@ -0,0 +1,15 @@ +{ + "slug": "luna-modeler", + "name": "Luna Modeler", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134959133" + ], + "developers": [ + "Ideamerit" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/software/lu/luola.json b/data/software/lu/luola.json new file mode 100644 index 000000000000..02118c1e4e2a --- /dev/null +++ b/data/software/lu/luola.json @@ -0,0 +1,8 @@ +{ + "slug": "luola", + "name": "Luola", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62863682" + ] +} diff --git a/data/software/lu/lura.json b/data/software/lu/lura.json new file mode 100644 index 000000000000..f6b51aeae764 --- /dev/null +++ b/data/software/lu/lura.json @@ -0,0 +1,21 @@ +{ + "slug": "lura", + "name": "Lura", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137591006" + ], + "developers": [ + "Linux Foundation" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [ + "Go" + ], + "licenses": [ + "Apache Software License 2.0" + ] +} diff --git a/data/software/lu/lusas.json b/data/software/lu/lusas.json new file mode 100644 index 000000000000..acb9f644e123 --- /dev/null +++ b/data/software/lu/lusas.json @@ -0,0 +1,11 @@ +{ + "slug": "lusas", + "name": "LUSAS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6460271" + ], + "developers": [ + "LUSAS" + ] +} diff --git a/data/software/lu/lush.json b/data/software/lu/lush.json new file mode 100644 index 000000000000..6058fefc878a --- /dev/null +++ b/data/software/lu/lush.json @@ -0,0 +1,8 @@ +{ + "slug": "lush", + "name": "Lush", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10321016" + ] +} diff --git a/data/software/lu/lutris-technologies.json b/data/software/lu/lutris-technologies.json new file mode 100644 index 000000000000..037489502f19 --- /dev/null +++ b/data/software/lu/lutris-technologies.json @@ -0,0 +1,9 @@ +{ + "slug": "lutris-technologies", + "name": "Lutris Technologies", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6705924" + ], + "release_date": "1999-01-01" +} diff --git a/data/software/lu/luvit.json b/data/software/lu/luvit.json new file mode 100644 index 000000000000..6899f21dbc1d --- /dev/null +++ b/data/software/lu/luvit.json @@ -0,0 +1,11 @@ +{ + "slug": "luvit", + "name": "luvit", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975143" + ], + "licenses": [ + "Apache License" + ] +} diff --git a/data/software/lu/luxalgo.json b/data/software/lu/luxalgo.json new file mode 100644 index 000000000000..122cf750a538 --- /dev/null +++ b/data/software/lu/luxalgo.json @@ -0,0 +1,8 @@ +{ + "slug": "luxalgo", + "name": "LuxAlgo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116298540" + ] +} diff --git a/data/software/lu/luxo-ai.json b/data/software/lu/luxo-ai.json new file mode 100644 index 000000000000..dc14fbdc2627 --- /dev/null +++ b/data/software/lu/luxo-ai.json @@ -0,0 +1,8 @@ +{ + "slug": "luxo-ai", + "name": "Luxo AI", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140356526" + ] +} diff --git a/data/software/lw/lwm.json b/data/software/lw/lwm.json new file mode 100644 index 000000000000..62ab00b14df5 --- /dev/null +++ b/data/software/lw/lwm.json @@ -0,0 +1,8 @@ +{ + "slug": "lwm", + "name": "lwm", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62851766" + ] +} diff --git a/data/software/lx/lxbeams.json b/data/software/lx/lxbeams.json new file mode 100644 index 000000000000..e736f8c070da --- /dev/null +++ b/data/software/lx/lxbeams.json @@ -0,0 +1,11 @@ +{ + "slug": "lxbeams", + "name": "LXBeams", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q66023295" + ], + "operating_systems": [ + "macOS" + ] +} diff --git a/data/software/lx/lxcfs.json b/data/software/lx/lxcfs.json new file mode 100644 index 000000000000..60cddb83d427 --- /dev/null +++ b/data/software/lx/lxcfs.json @@ -0,0 +1,11 @@ +{ + "slug": "lxcfs", + "name": "lxcfs", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975144" + ], + "licenses": [ + "Apache License" + ] +} diff --git a/data/software/lx/lxmf.json b/data/software/lx/lxmf.json new file mode 100644 index 000000000000..479bd32f0886 --- /dev/null +++ b/data/software/lx/lxmf.json @@ -0,0 +1,14 @@ +{ + "slug": "lxmf", + "name": "LXMF", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q114595827" + ], + "programming_languages": [ + "Python" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/lx/lxqt-common.json b/data/software/lx/lxqt-common.json new file mode 100644 index 000000000000..cb30a963e5bb --- /dev/null +++ b/data/software/lx/lxqt-common.json @@ -0,0 +1,8 @@ +{ + "slug": "lxqt-common", + "name": "lxqt-common", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975148" + ] +} diff --git a/data/software/lx/lxqt-l10n.json b/data/software/lx/lxqt-l10n.json new file mode 100644 index 000000000000..7d42fbf6af5a --- /dev/null +++ b/data/software/lx/lxqt-l10n.json @@ -0,0 +1,8 @@ +{ + "slug": "lxqt-l10n", + "name": "lxqt-l10n", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975151" + ] +} diff --git a/data/software/lx/lxrun.json b/data/software/lx/lxrun.json new file mode 100644 index 000000000000..0505c8e0910a --- /dev/null +++ b/data/software/lx/lxrun.json @@ -0,0 +1,18 @@ +{ + "slug": "lxrun", + "name": "lxrun", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4043281" + ], + "release_date": "1997-01-01", + "developers": [ + "Sun Microsystems" + ], + "operating_systems": [ + "UnixWare" + ], + "licenses": [ + "Mozilla Public License" + ] +} diff --git a/data/software/ly/lynks-create-explore-share.json b/data/software/ly/lynks-create-explore-share.json new file mode 100644 index 000000000000..ae7e93deb7e3 --- /dev/null +++ b/data/software/ly/lynks-create-explore-share.json @@ -0,0 +1,8 @@ +{ + "slug": "lynks-create-explore-share", + "name": "Lynks - Create Explore Share", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085092" + ] +} diff --git a/data/software/ly/lynks.json b/data/software/ly/lynks.json new file mode 100644 index 000000000000..a4b29f12a1a4 --- /dev/null +++ b/data/software/ly/lynks.json @@ -0,0 +1,8 @@ +{ + "slug": "lynks", + "name": "Lynks", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085091" + ] +} diff --git a/data/software/ly/lynx-mosa-ic.json b/data/software/ly/lynx-mosa-ic.json new file mode 100644 index 000000000000..4886f4946e0f --- /dev/null +++ b/data/software/ly/lynx-mosa-ic.json @@ -0,0 +1,8 @@ +{ + "slug": "lynx-mosa-ic", + "name": "LYNX MOSA.ic", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109547083" + ] +} diff --git a/data/software/ly/lyra.json b/data/software/ly/lyra.json new file mode 100644 index 000000000000..5d6fb1efe852 --- /dev/null +++ b/data/software/ly/lyra.json @@ -0,0 +1,8 @@ +{ + "slug": "lyra", + "name": "Lyra", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085093" + ] +} diff --git a/data/software/ly/lyteshot.json b/data/software/ly/lyteshot.json new file mode 100644 index 000000000000..10b41d471672 --- /dev/null +++ b/data/software/ly/lyteshot.json @@ -0,0 +1,12 @@ +{ + "slug": "lyteshot", + "name": "LyteShot", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18811573" + ], + "release_date": "2015-01-01", + "genres": [ + "first-person shooter" + ] +} diff --git a/data/software/lz/lzf.json b/data/software/lz/lzf.json new file mode 100644 index 000000000000..18864b460a5a --- /dev/null +++ b/data/software/lz/lzf.json @@ -0,0 +1,8 @@ +{ + "slug": "lzf", + "name": "LZF", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11752392" + ] +} diff --git a/data/software/m-/m-cas.json b/data/software/m-/m-cas.json new file mode 100644 index 000000000000..365ea336d77a --- /dev/null +++ b/data/software/m-/m-cas.json @@ -0,0 +1,12 @@ +{ + "slug": "m-cas", + "name": "M-CAS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22123598" + ], + "operating_systems": [ + "iOS", + "Microsoft Windows" + ] +} diff --git a/data/software/m-/m-e-doc.json b/data/software/m-/m-e-doc.json new file mode 100644 index 000000000000..069477ef40c2 --- /dev/null +++ b/data/software/m-/m-e-doc.json @@ -0,0 +1,11 @@ +{ + "slug": "m-e-doc", + "name": "M.E.Doc", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q34202855" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/m-/m-indicator.json b/data/software/m-/m-indicator.json new file mode 100644 index 000000000000..cb6a85801e09 --- /dev/null +++ b/data/software/m-/m-indicator.json @@ -0,0 +1,8 @@ +{ + "slug": "m-indicator", + "name": "M-Indicator", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28957087" + ] +} diff --git a/data/software/m-/m-messenger.json b/data/software/m-/m-messenger.json new file mode 100644 index 000000000000..130d8c82ade6 --- /dev/null +++ b/data/software/m-/m-messenger.json @@ -0,0 +1,8 @@ +{ + "slug": "m-messenger", + "name": "M+ Messenger", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q96376915" + ] +} diff --git a/data/software/m-/m-netmail.json b/data/software/m-/m-netmail.json new file mode 100644 index 000000000000..6c86a7c0f3f2 --- /dev/null +++ b/data/software/m-/m-netmail.json @@ -0,0 +1,12 @@ +{ + "slug": "m-netmail", + "name": "M+NetMail", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6711924" + ], + "developers": [ + "Messaging Architects", + "Novell" + ] +} diff --git a/data/software/m2/m2m.json b/data/software/m2/m2m.json new file mode 100644 index 000000000000..ed5ce921d829 --- /dev/null +++ b/data/software/m2/m2m.json @@ -0,0 +1,8 @@ +{ + "slug": "m2m", + "name": "M2M", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6713727" + ] +} diff --git a/data/software/ma/maas.json b/data/software/ma/maas.json new file mode 100644 index 000000000000..ed2750e36bc0 --- /dev/null +++ b/data/software/ma/maas.json @@ -0,0 +1,8 @@ +{ + "slug": "maas", + "name": "MAAS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q29051922" + ] +} diff --git a/data/software/ma/mac-65.json b/data/software/ma/mac-65.json new file mode 100644 index 000000000000..6f6832b161a3 --- /dev/null +++ b/data/software/ma/mac-65.json @@ -0,0 +1,11 @@ +{ + "slug": "mac-65", + "name": "MAC/65", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6714040" + ], + "developers": [ + "Optimized Systems Software" + ] +} diff --git a/data/software/ma/mac-box-set.json b/data/software/ma/mac-box-set.json new file mode 100644 index 000000000000..900c7f9467c0 --- /dev/null +++ b/data/software/ma/mac-box-set.json @@ -0,0 +1,11 @@ +{ + "slug": "mac-box-set", + "name": "Mac Box Set", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q23679949" + ], + "developers": [ + "Apple Inc." + ] +} diff --git a/data/software/ma/mac-data-recovery-guru.json b/data/software/ma/mac-data-recovery-guru.json new file mode 100644 index 000000000000..e3c03ad29d91 --- /dev/null +++ b/data/software/ma/mac-data-recovery-guru.json @@ -0,0 +1,8 @@ +{ + "slug": "mac-data-recovery-guru", + "name": "Mac Data Recovery Guru", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18705943" + ] +} diff --git a/data/software/ma/mac-on-mac.json b/data/software/ma/mac-on-mac.json new file mode 100644 index 000000000000..152458d8ba4b --- /dev/null +++ b/data/software/ma/mac-on-mac.json @@ -0,0 +1,8 @@ +{ + "slug": "mac-on-mac", + "name": "Mac-on-Mac", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6721691" + ] +} diff --git a/data/software/ma/mac-os-runtime-for-java.json b/data/software/ma/mac-os-runtime-for-java.json new file mode 100644 index 000000000000..05dfdeb07a27 --- /dev/null +++ b/data/software/ma/mac-os-runtime-for-java.json @@ -0,0 +1,11 @@ +{ + "slug": "mac-os-runtime-for-java", + "name": "Mac OS Runtime for Java", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6722341" + ], + "developers": [ + "Apple Inc." + ] +} diff --git a/data/software/ma/mac-os-x-server-10-4.json b/data/software/ma/mac-os-x-server-10-4.json new file mode 100644 index 000000000000..df64344652cb --- /dev/null +++ b/data/software/ma/mac-os-x-server-10-4.json @@ -0,0 +1,8 @@ +{ + "slug": "mac-os-x-server-10-4", + "name": "Mac OS X Server 10.4", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q21666925" + ] +} diff --git a/data/software/ma/macaw.json b/data/software/ma/macaw.json new file mode 100644 index 000000000000..1ca33e72f76b --- /dev/null +++ b/data/software/ma/macaw.json @@ -0,0 +1,8 @@ +{ + "slug": "macaw", + "name": "Macaw", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11232624" + ] +} diff --git a/data/software/ma/macdroid.json b/data/software/ma/macdroid.json new file mode 100644 index 000000000000..b18c8743d9e0 --- /dev/null +++ b/data/software/ma/macdroid.json @@ -0,0 +1,11 @@ +{ + "slug": "macdroid", + "name": "MacDroid", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124354376" + ], + "operating_systems": [ + "macOS" + ] +} diff --git a/data/software/ma/macfamilytree.json b/data/software/ma/macfamilytree.json new file mode 100644 index 000000000000..6282c4cdab90 --- /dev/null +++ b/data/software/ma/macfamilytree.json @@ -0,0 +1,8 @@ +{ + "slug": "macfamilytree", + "name": "MacFamilyTree", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4043529" + ] +} diff --git a/data/software/ma/macfuse.json b/data/software/ma/macfuse.json new file mode 100644 index 000000000000..9bcdce0084e9 --- /dev/null +++ b/data/software/ma/macfuse.json @@ -0,0 +1,14 @@ +{ + "slug": "macfuse", + "name": "macFUSE", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130273344" + ], + "developers": [ + "Benjamin Fleischer" + ], + "licenses": [ + "BSD licenses" + ] +} diff --git a/data/software/ma/macfusion.json b/data/software/ma/macfusion.json new file mode 100644 index 000000000000..dc303a9e44d9 --- /dev/null +++ b/data/software/ma/macfusion.json @@ -0,0 +1,8 @@ +{ + "slug": "macfusion", + "name": "Macfusion", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6723289" + ] +} diff --git a/data/software/ma/mach.json b/data/software/ma/mach.json new file mode 100644 index 000000000000..fa3b67f6e0a7 --- /dev/null +++ b/data/software/ma/mach.json @@ -0,0 +1,11 @@ +{ + "slug": "mach", + "name": "Mach", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q14643" + ], + "programming_languages": [ + "assembly language" + ] +} diff --git a/data/software/ma/machine-translation.json b/data/software/ma/machine-translation.json new file mode 100644 index 000000000000..f2e484d37caa --- /dev/null +++ b/data/software/ma/machine-translation.json @@ -0,0 +1,8 @@ +{ + "slug": "machine-translation", + "name": "Machine Translation", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085094" + ] +} diff --git a/data/software/ma/machinery.json b/data/software/ma/machinery.json new file mode 100644 index 000000000000..95b8198854cc --- /dev/null +++ b/data/software/ma/machinery.json @@ -0,0 +1,14 @@ +{ + "slug": "machinery", + "name": "Machinery", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126013185" + ], + "developers": [ + "SUSE" + ], + "licenses": [ + "GNU General Public License, version 3.0" + ] +} diff --git a/data/software/ma/macintosh-application-environment.json b/data/software/ma/macintosh-application-environment.json new file mode 100644 index 000000000000..65399ddd38f1 --- /dev/null +++ b/data/software/ma/macintosh-application-environment.json @@ -0,0 +1,11 @@ +{ + "slug": "macintosh-application-environment", + "name": "Macintosh Application Environment", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1882803" + ], + "developers": [ + "Apple Inc." + ] +} diff --git a/data/software/ma/macintosh-toolbox.json b/data/software/ma/macintosh-toolbox.json new file mode 100644 index 000000000000..d4fce566ac1a --- /dev/null +++ b/data/software/ma/macintosh-toolbox.json @@ -0,0 +1,8 @@ +{ + "slug": "macintosh-toolbox", + "name": "Macintosh Toolbox", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1423935" + ] +} diff --git a/data/software/ma/mackie-tracktion.json b/data/software/ma/mackie-tracktion.json new file mode 100644 index 000000000000..0d7c64ffd254 --- /dev/null +++ b/data/software/ma/mackie-tracktion.json @@ -0,0 +1,11 @@ +{ + "slug": "mackie-tracktion", + "name": "Mackie Tracktion", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121010036" + ], + "developers": [ + "Mackie" + ] +} diff --git a/data/software/ma/macne-nana.json b/data/software/ma/macne-nana.json new file mode 100644 index 000000000000..5d9b00f8e2c5 --- /dev/null +++ b/data/software/ma/macne-nana.json @@ -0,0 +1,9 @@ +{ + "slug": "macne-nana", + "name": "Macne Nana", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q24914410" + ], + "release_date": "2009-03-28" +} diff --git a/data/software/ma/macproject.json b/data/software/ma/macproject.json new file mode 100644 index 000000000000..fb121ffbe585 --- /dev/null +++ b/data/software/ma/macproject.json @@ -0,0 +1,12 @@ +{ + "slug": "macproject", + "name": "MacProject", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6722080" + ], + "release_date": "1984-01-01", + "operating_systems": [ + "System 6" + ] +} diff --git a/data/software/ma/macro-express.json b/data/software/ma/macro-express.json new file mode 100644 index 000000000000..bd7624e7098b --- /dev/null +++ b/data/software/ma/macro-express.json @@ -0,0 +1,8 @@ +{ + "slug": "macro-express", + "name": "Macro Express", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6725137" + ] +} diff --git a/data/software/ma/macrodroid.json b/data/software/ma/macrodroid.json new file mode 100644 index 000000000000..b96996c1cdfc --- /dev/null +++ b/data/software/ma/macrodroid.json @@ -0,0 +1,8 @@ +{ + "slug": "macrodroid", + "name": "MacroDroid", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109409641" + ] +} diff --git a/data/software/ma/macromedia-central.json b/data/software/ma/macromedia-central.json new file mode 100644 index 000000000000..f8346c3f7970 --- /dev/null +++ b/data/software/ma/macromedia-central.json @@ -0,0 +1,8 @@ +{ + "slug": "macromedia-central", + "name": "Macromedia Central", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6725407" + ] +} diff --git a/data/software/ma/macromedia-flash-8.json b/data/software/ma/macromedia-flash-8.json new file mode 100644 index 000000000000..7de7c594b23d --- /dev/null +++ b/data/software/ma/macromedia-flash-8.json @@ -0,0 +1,8 @@ +{ + "slug": "macromedia-flash-8", + "name": "Macromedia Flash 8", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135404143" + ] +} diff --git a/data/software/ma/macromedia-studio.json b/data/software/ma/macromedia-studio.json new file mode 100644 index 000000000000..dc1d4cd757cd --- /dev/null +++ b/data/software/ma/macromedia-studio.json @@ -0,0 +1,11 @@ +{ + "slug": "macromedia-studio", + "name": "Macromedia Studio", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3491212" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/ma/macromodel.json b/data/software/ma/macromodel.json new file mode 100644 index 000000000000..eb8fd97e66d1 --- /dev/null +++ b/data/software/ma/macromodel.json @@ -0,0 +1,11 @@ +{ + "slug": "macromodel", + "name": "MacroModel", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6725133" + ], + "developers": [ + "Schrödinger" + ] +} diff --git a/data/software/ma/macroscope.json b/data/software/ma/macroscope.json new file mode 100644 index 000000000000..e76a6a985284 --- /dev/null +++ b/data/software/ma/macroscope.json @@ -0,0 +1,11 @@ +{ + "slug": "macroscope", + "name": "Macroscope", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16973857" + ], + "developers": [ + "Fujitsu" + ] +} diff --git a/data/software/ma/macrospace.json b/data/software/ma/macrospace.json new file mode 100644 index 000000000000..981ecb8aa787 --- /dev/null +++ b/data/software/ma/macrospace.json @@ -0,0 +1,8 @@ +{ + "slug": "macrospace", + "name": "Macrospace", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4043566" + ] +} diff --git a/data/software/ma/macs.json b/data/software/ma/macs.json new file mode 100644 index 000000000000..812305b967a6 --- /dev/null +++ b/data/software/ma/macs.json @@ -0,0 +1,8 @@ +{ + "slug": "macs", + "name": "MACS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134531639" + ] +} diff --git a/data/software/ma/macs3.json b/data/software/ma/macs3.json new file mode 100644 index 000000000000..f95401fdfdd8 --- /dev/null +++ b/data/software/ma/macs3.json @@ -0,0 +1,9 @@ +{ + "slug": "macs3", + "name": "MACS3", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6714065" + ], + "release_date": "1984-01-01" +} diff --git a/data/software/ma/macterminal.json b/data/software/ma/macterminal.json new file mode 100644 index 000000000000..2b6beddcfa1d --- /dev/null +++ b/data/software/ma/macterminal.json @@ -0,0 +1,11 @@ +{ + "slug": "macterminal", + "name": "MacTerminal", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6722138" + ], + "developers": [ + "Apple Inc." + ] +} diff --git a/data/software/ma/mactracker.json b/data/software/ma/mactracker.json new file mode 100644 index 000000000000..b6f4bc16d8d0 --- /dev/null +++ b/data/software/ma/mactracker.json @@ -0,0 +1,11 @@ +{ + "slug": "mactracker", + "name": "Mactracker", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1406091" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/ma/mactype.json b/data/software/ma/mactype.json new file mode 100644 index 000000000000..b49efc6bec33 --- /dev/null +++ b/data/software/ma/mactype.json @@ -0,0 +1,8 @@ +{ + "slug": "mactype", + "name": "MacType", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10851601" + ] +} diff --git a/data/software/ma/macvector.json b/data/software/ma/macvector.json new file mode 100644 index 000000000000..68d045490847 --- /dev/null +++ b/data/software/ma/macvector.json @@ -0,0 +1,17 @@ +{ + "slug": "macvector", + "name": "MacVector", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16335143" + ], + "developers": [ + "MacVector" + ], + "operating_systems": [ + "macOS" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/ma/macventure.json b/data/software/ma/macventure.json new file mode 100644 index 000000000000..40166a2cc14e --- /dev/null +++ b/data/software/ma/macventure.json @@ -0,0 +1,8 @@ +{ + "slug": "macventure", + "name": "MacVenture", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6722149" + ] +} diff --git a/data/software/ma/macweb.json b/data/software/ma/macweb.json new file mode 100644 index 000000000000..76b4d10887fd --- /dev/null +++ b/data/software/ma/macweb.json @@ -0,0 +1,11 @@ +{ + "slug": "macweb", + "name": "MacWeb", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17042513" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/ma/macworks-xl.json b/data/software/ma/macworks-xl.json new file mode 100644 index 000000000000..d85c3eda2a6d --- /dev/null +++ b/data/software/ma/macworks-xl.json @@ -0,0 +1,14 @@ +{ + "slug": "macworks-xl", + "name": "MacWorks XL", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6722157" + ], + "developers": [ + "Apple Inc." + ], + "operating_systems": [ + "Classic Mac OS" + ] +} diff --git a/data/software/ma/mad-commander.json b/data/software/ma/mad-commander.json new file mode 100644 index 000000000000..d4e1bdb192d1 --- /dev/null +++ b/data/software/ma/mad-commander.json @@ -0,0 +1,11 @@ +{ + "slug": "mad-commander", + "name": "Mad Commander", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5989233" + ], + "programming_languages": [ + "Java" + ] +} diff --git a/data/software/ma/madgraph.json b/data/software/ma/madgraph.json new file mode 100644 index 000000000000..1426d16c05fc --- /dev/null +++ b/data/software/ma/madgraph.json @@ -0,0 +1,8 @@ +{ + "slug": "madgraph", + "name": "MadGraph", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q102280779" + ] +} diff --git a/data/software/ma/madison-digital-image-database-mdid.json b/data/software/ma/madison-digital-image-database-mdid.json new file mode 100644 index 000000000000..9cc08e9594fe --- /dev/null +++ b/data/software/ma/madison-digital-image-database-mdid.json @@ -0,0 +1,8 @@ +{ + "slug": "madison-digital-image-database-mdid", + "name": "Madison Digital Image Database (MDID)", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085095" + ] +} diff --git a/data/software/ma/madmuscles.json b/data/software/ma/madmuscles.json new file mode 100644 index 000000000000..d066f186080f --- /dev/null +++ b/data/software/ma/madmuscles.json @@ -0,0 +1,8 @@ +{ + "slug": "madmuscles", + "name": "MadMuscles", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136090331" + ] +} diff --git a/data/software/ma/madoc.json b/data/software/ma/madoc.json new file mode 100644 index 000000000000..6bf7186dddc8 --- /dev/null +++ b/data/software/ma/madoc.json @@ -0,0 +1,8 @@ +{ + "slug": "madoc", + "name": "Madoc", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085096" + ] +} diff --git a/data/software/ma/madura-english-sinhala-dictionary.json b/data/software/ma/madura-english-sinhala-dictionary.json new file mode 100644 index 000000000000..d0e8f24468f0 --- /dev/null +++ b/data/software/ma/madura-english-sinhala-dictionary.json @@ -0,0 +1,11 @@ +{ + "slug": "madura-english-sinhala-dictionary", + "name": "Madura English–Sinhala Dictionary", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q19893458" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/ma/madymo.json b/data/software/ma/madymo.json new file mode 100644 index 000000000000..9724c5ebc764 --- /dev/null +++ b/data/software/ma/madymo.json @@ -0,0 +1,8 @@ +{ + "slug": "madymo", + "name": "MADYMO", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17068056" + ] +} diff --git a/data/software/ma/maestro-mastersoftware.json b/data/software/ma/maestro-mastersoftware.json new file mode 100644 index 000000000000..31e5bb7c8692 --- /dev/null +++ b/data/software/ma/maestro-mastersoftware.json @@ -0,0 +1,11 @@ +{ + "slug": "maestro-mastersoftware", + "name": "Maestro MasterSoftware", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137853175" + ], + "developers": [ + "DiaMed" + ] +} diff --git a/data/software/ma/maestro-q72275279.json b/data/software/ma/maestro-q72275279.json new file mode 100644 index 000000000000..fd56a2339cbc --- /dev/null +++ b/data/software/ma/maestro-q72275279.json @@ -0,0 +1,8 @@ +{ + "slug": "maestro-q72275279", + "name": "Maestro", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72275279" + ] +} diff --git a/data/software/ma/maestro.json b/data/software/ma/maestro.json new file mode 100644 index 000000000000..e9bde8d1100d --- /dev/null +++ b/data/software/ma/maestro.json @@ -0,0 +1,17 @@ +{ + "slug": "maestro", + "name": "Maestro", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6729339" + ], + "developers": [ + "Jet Propulsion Laboratory" + ], + "operating_systems": [ + "Mac OS X Panther" + ], + "programming_languages": [ + "Java" + ] +} diff --git a/data/software/ma/mafft.json b/data/software/ma/mafft.json new file mode 100644 index 000000000000..e2c5c89ca813 --- /dev/null +++ b/data/software/ma/mafft.json @@ -0,0 +1,15 @@ +{ + "slug": "mafft", + "name": "MAFFT", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6714151" + ], + "operating_systems": [ + "Microsoft Windows", + "macOS" + ], + "licenses": [ + "Berkeley Software Distribution" + ] +} diff --git a/data/software/ma/magic-camera.json b/data/software/ma/magic-camera.json new file mode 100644 index 000000000000..b2ac8c9b5ef9 --- /dev/null +++ b/data/software/ma/magic-camera.json @@ -0,0 +1,8 @@ +{ + "slug": "magic-camera", + "name": "Magic Camera", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6730649" + ] +} diff --git a/data/software/ma/magic-cat.json b/data/software/ma/magic-cat.json new file mode 100644 index 000000000000..fda7e416a2cd --- /dev/null +++ b/data/software/ma/magic-cat.json @@ -0,0 +1,11 @@ +{ + "slug": "magic-cat", + "name": "Magic Cat", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131412103" + ], + "developers": [ + "Yucheng C." + ] +} diff --git a/data/software/ma/magic-desk.json b/data/software/ma/magic-desk.json new file mode 100644 index 000000000000..f9290de7af27 --- /dev/null +++ b/data/software/ma/magic-desk.json @@ -0,0 +1,8 @@ +{ + "slug": "magic-desk", + "name": "Magic Desk", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11880501" + ] +} diff --git a/data/software/ma/magic-lantern.json b/data/software/ma/magic-lantern.json new file mode 100644 index 000000000000..3d7e5ec2240e --- /dev/null +++ b/data/software/ma/magic-lantern.json @@ -0,0 +1,14 @@ +{ + "slug": "magic-lantern", + "name": "Magic Lantern", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q163751" + ], + "developers": [ + "Federal Bureau of Investigation" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/ma/magic-music-visuals.json b/data/software/ma/magic-music-visuals.json new file mode 100644 index 000000000000..ff0e43c0186f --- /dev/null +++ b/data/software/ma/magic-music-visuals.json @@ -0,0 +1,8 @@ +{ + "slug": "magic-music-visuals", + "name": "Magic Music Visuals", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q20707118" + ] +} diff --git a/data/software/ma/magic-shadow-archiver.json b/data/software/ma/magic-shadow-archiver.json new file mode 100644 index 000000000000..de3fa0911986 --- /dev/null +++ b/data/software/ma/magic-shadow-archiver.json @@ -0,0 +1,8 @@ +{ + "slug": "magic-shadow-archiver", + "name": "Magic Shadow Archiver", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q66023558" + ] +} diff --git a/data/software/ma/magic-workstation.json b/data/software/ma/magic-workstation.json new file mode 100644 index 000000000000..ee1daab849eb --- /dev/null +++ b/data/software/ma/magic-workstation.json @@ -0,0 +1,8 @@ +{ + "slug": "magic-workstation", + "name": "Magic Workstation", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17036442" + ] +} diff --git a/data/software/ma/magic.json b/data/software/ma/magic.json new file mode 100644 index 000000000000..a16263f891db --- /dev/null +++ b/data/software/ma/magic.json @@ -0,0 +1,11 @@ +{ + "slug": "magic", + "name": "Magic", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q959489" + ], + "developers": [ + "Magic Software Enterprises Ltd." + ] +} diff --git a/data/software/ma/magicdraw.json b/data/software/ma/magicdraw.json new file mode 100644 index 000000000000..5bf417d8aee9 --- /dev/null +++ b/data/software/ma/magicdraw.json @@ -0,0 +1,14 @@ +{ + "slug": "magicdraw", + "name": "MagicDraw", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11690245" + ], + "developers": [ + "No Magic" + ], + "programming_languages": [ + "Java" + ] +} diff --git a/data/software/ma/magicfilter.json b/data/software/ma/magicfilter.json new file mode 100644 index 000000000000..2559c7e31bc5 --- /dev/null +++ b/data/software/ma/magicfilter.json @@ -0,0 +1,8 @@ +{ + "slug": "magicfilter", + "name": "Magicfilter", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62851661" + ] +} diff --git a/data/software/ma/magiciso.json b/data/software/ma/magiciso.json new file mode 100644 index 000000000000..50caccf7c26a --- /dev/null +++ b/data/software/ma/magiciso.json @@ -0,0 +1,11 @@ +{ + "slug": "magiciso", + "name": "MagicISO", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4043595" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/ma/magicwb.json b/data/software/ma/magicwb.json new file mode 100644 index 000000000000..b54420ecc70d --- /dev/null +++ b/data/software/ma/magicwb.json @@ -0,0 +1,8 @@ +{ + "slug": "magicwb", + "name": "MagicWB", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6730551" + ] +} diff --git a/data/software/ma/magine.json b/data/software/ma/magine.json new file mode 100644 index 000000000000..542122efa144 --- /dev/null +++ b/data/software/ma/magine.json @@ -0,0 +1,8 @@ +{ + "slug": "magine", + "name": "Magine", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18024539" + ] +} diff --git a/data/software/ma/magister.json b/data/software/ma/magister.json new file mode 100644 index 000000000000..a32eb0c9d71c --- /dev/null +++ b/data/software/ma/magister.json @@ -0,0 +1,8 @@ +{ + "slug": "magister", + "name": "Magister", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q15879002" + ] +} diff --git a/data/software/ma/magisto.json b/data/software/ma/magisto.json new file mode 100644 index 000000000000..ae133b4a3040 --- /dev/null +++ b/data/software/ma/magisto.json @@ -0,0 +1,9 @@ +{ + "slug": "magisto", + "name": "Magisto", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6731136" + ], + "release_date": "2002-12-02" +} diff --git a/data/software/ma/magix-sequoia.json b/data/software/ma/magix-sequoia.json new file mode 100644 index 000000000000..822a14a8f363 --- /dev/null +++ b/data/software/ma/magix-sequoia.json @@ -0,0 +1,11 @@ +{ + "slug": "magix-sequoia", + "name": "MAGIX Sequoia", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6714202" + ], + "developers": [ + "MAGIX Software GmbH" + ] +} diff --git a/data/software/ma/magma-lisp.json b/data/software/ma/magma-lisp.json new file mode 100644 index 000000000000..6992d182cc34 --- /dev/null +++ b/data/software/ma/magma-lisp.json @@ -0,0 +1,18 @@ +{ + "slug": "magma-lisp", + "name": "MAGMA-Lisp", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q114137083" + ], + "release_date": "1981-10-15", + "developers": [ + "Giuliano Pacini", + "Franco Turini", + "Maria Simi", + "Carlo Montangero" + ], + "programming_languages": [ + "Fortran" + ] +} diff --git a/data/software/ma/magneto-go.json b/data/software/ma/magneto-go.json new file mode 100644 index 000000000000..d903c41e437c --- /dev/null +++ b/data/software/ma/magneto-go.json @@ -0,0 +1,8 @@ +{ + "slug": "magneto-go", + "name": "Magneto Go", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25447709" + ] +} diff --git a/data/software/ma/magnifier.json b/data/software/ma/magnifier.json new file mode 100644 index 000000000000..7a3b9c6741ea --- /dev/null +++ b/data/software/ma/magnifier.json @@ -0,0 +1,8 @@ +{ + "slug": "magnifier", + "name": "Magnifier", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1144777" + ] +} diff --git a/data/software/ma/magnus-choir.json b/data/software/ma/magnus-choir.json new file mode 100644 index 000000000000..7b28e99ea3ed --- /dev/null +++ b/data/software/ma/magnus-choir.json @@ -0,0 +1,8 @@ +{ + "slug": "magnus-choir", + "name": "Magnus Choir", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q14452506" + ] +} diff --git a/data/software/ma/mahotas.json b/data/software/ma/mahotas.json new file mode 100644 index 000000000000..3fb603474943 --- /dev/null +++ b/data/software/ma/mahotas.json @@ -0,0 +1,8 @@ +{ + "slug": "mahotas", + "name": "mahotas", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60964416" + ] +} diff --git a/data/software/ma/maidcentral.json b/data/software/ma/maidcentral.json new file mode 100644 index 000000000000..8861f1fe1105 --- /dev/null +++ b/data/software/ma/maidcentral.json @@ -0,0 +1,8 @@ +{ + "slug": "maidcentral", + "name": "MaidCentral", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135231836" + ] +} diff --git a/data/software/ma/mail.json b/data/software/ma/mail.json new file mode 100644 index 000000000000..c26d2e8eeec6 --- /dev/null +++ b/data/software/ma/mail.json @@ -0,0 +1,8 @@ +{ + "slug": "mail", + "name": "@Mail", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4646751" + ] +} diff --git a/data/software/ma/mailbigfile.json b/data/software/ma/mailbigfile.json new file mode 100644 index 000000000000..33137a90f74d --- /dev/null +++ b/data/software/ma/mailbigfile.json @@ -0,0 +1,9 @@ +{ + "slug": "mailbigfile", + "name": "Mailbigfile", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6735769" + ], + "release_date": "2005-01-01" +} diff --git a/data/software/ma/mailbird.json b/data/software/ma/mailbird.json new file mode 100644 index 000000000000..ed1814735119 --- /dev/null +++ b/data/software/ma/mailbird.json @@ -0,0 +1,8 @@ +{ + "slug": "mailbird", + "name": "Mailbird", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17042522" + ] +} diff --git a/data/software/ma/mailchimp.json b/data/software/ma/mailchimp.json new file mode 100644 index 000000000000..2e2ab3246f38 --- /dev/null +++ b/data/software/ma/mailchimp.json @@ -0,0 +1,8 @@ +{ + "slug": "mailchimp", + "name": "Mailchimp", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6735673" + ] +} diff --git a/data/software/ma/maildir.json b/data/software/ma/maildir.json new file mode 100644 index 000000000000..642d011cda56 --- /dev/null +++ b/data/software/ma/maildir.json @@ -0,0 +1,11 @@ +{ + "slug": "maildir", + "name": "Maildir", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1246497" + ], + "developers": [ + "Daniel J. Bernstein" + ] +} diff --git a/data/software/ma/mailerlite.json b/data/software/ma/mailerlite.json new file mode 100644 index 000000000000..df6efff2a9d3 --- /dev/null +++ b/data/software/ma/mailerlite.json @@ -0,0 +1,8 @@ +{ + "slug": "mailerlite", + "name": "MailerLite", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q54860002" + ] +} diff --git a/data/software/ma/mailfilter.json b/data/software/ma/mailfilter.json new file mode 100644 index 000000000000..4f01e4565974 --- /dev/null +++ b/data/software/ma/mailfilter.json @@ -0,0 +1,8 @@ +{ + "slug": "mailfilter", + "name": "Mailfilter", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62854701" + ] +} diff --git a/data/software/ma/mailfront.json b/data/software/ma/mailfront.json new file mode 100644 index 000000000000..3c5a267e090e --- /dev/null +++ b/data/software/ma/mailfront.json @@ -0,0 +1,8 @@ +{ + "slug": "mailfront", + "name": "mailfront", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62854655" + ] +} diff --git a/data/software/ma/mailgraph.json b/data/software/ma/mailgraph.json new file mode 100644 index 000000000000..7725f138ab34 --- /dev/null +++ b/data/software/ma/mailgraph.json @@ -0,0 +1,8 @@ +{ + "slug": "mailgraph", + "name": "mailgraph", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62851649" + ] +} diff --git a/data/software/ma/mailinblack.json b/data/software/ma/mailinblack.json new file mode 100644 index 000000000000..e4dcd2331a1d --- /dev/null +++ b/data/software/ma/mailinblack.json @@ -0,0 +1,8 @@ +{ + "slug": "mailinblack", + "name": "Mailinblack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139585738" + ] +} diff --git a/data/software/ma/mailplane.json b/data/software/ma/mailplane.json new file mode 100644 index 000000000000..1790b93b85df --- /dev/null +++ b/data/software/ma/mailplane.json @@ -0,0 +1,11 @@ +{ + "slug": "mailplane", + "name": "Mailplane", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6735828" + ], + "programming_languages": [ + "Objective-C" + ] +} diff --git a/data/software/ma/mailrelay.json b/data/software/ma/mailrelay.json new file mode 100644 index 000000000000..c24497fedbc0 --- /dev/null +++ b/data/software/ma/mailrelay.json @@ -0,0 +1,8 @@ +{ + "slug": "mailrelay", + "name": "Mailrelay", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q30905078" + ] +} diff --git a/data/software/ma/mailstore.json b/data/software/ma/mailstore.json new file mode 100644 index 000000000000..e03dfc21b98d --- /dev/null +++ b/data/software/ma/mailstore.json @@ -0,0 +1,8 @@ +{ + "slug": "mailstore", + "name": "MailStore", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3278245" + ] +} diff --git a/data/software/ma/mailsync.json b/data/software/ma/mailsync.json new file mode 100644 index 000000000000..3be5ede631f7 --- /dev/null +++ b/data/software/ma/mailsync.json @@ -0,0 +1,8 @@ +{ + "slug": "mailsync", + "name": "mailsync", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62851644" + ] +} diff --git a/data/software/ma/mailtime.json b/data/software/ma/mailtime.json new file mode 100644 index 000000000000..2e09f12e12fb --- /dev/null +++ b/data/software/ma/mailtime.json @@ -0,0 +1,8 @@ +{ + "slug": "mailtime", + "name": "MailTime", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22095813" + ] +} diff --git a/data/software/ma/mailwasher.json b/data/software/ma/mailwasher.json new file mode 100644 index 000000000000..f24bac2eff5c --- /dev/null +++ b/data/software/ma/mailwasher.json @@ -0,0 +1,11 @@ +{ + "slug": "mailwasher", + "name": "Mailwasher", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6735842" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/ma/mainframe-sort-merge.json b/data/software/ma/mainframe-sort-merge.json new file mode 100644 index 000000000000..c2bff0bc9fa4 --- /dev/null +++ b/data/software/ma/mainframe-sort-merge.json @@ -0,0 +1,8 @@ +{ + "slug": "mainframe-sort-merge", + "name": "mainframe sort merge", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6736621" + ] +} diff --git a/data/software/ma/mainstage.json b/data/software/ma/mainstage.json new file mode 100644 index 000000000000..b1c3eba033fb --- /dev/null +++ b/data/software/ma/mainstage.json @@ -0,0 +1,11 @@ +{ + "slug": "mainstage", + "name": "Mainstage", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6736739" + ], + "developers": [ + "Apple Inc." + ] +} diff --git a/data/software/ma/maintenup.json b/data/software/ma/maintenup.json new file mode 100644 index 000000000000..a181022772a1 --- /dev/null +++ b/data/software/ma/maintenup.json @@ -0,0 +1,12 @@ +{ + "slug": "maintenup", + "name": "MaintenUP", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140472696" + ], + "developers": [ + "Infor srl", + "B Corp" + ] +} diff --git a/data/software/ma/majestic-search-engine.json b/data/software/ma/majestic-search-engine.json new file mode 100644 index 000000000000..43a27a3dd029 --- /dev/null +++ b/data/software/ma/majestic-search-engine.json @@ -0,0 +1,8 @@ +{ + "slug": "majestic-search-engine", + "name": "Majestic Search Engine", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22906674" + ] +} diff --git a/data/software/ma/make-the-dot.json b/data/software/ma/make-the-dot.json new file mode 100644 index 000000000000..c30c1a0257fb --- /dev/null +++ b/data/software/ma/make-the-dot.json @@ -0,0 +1,8 @@ +{ + "slug": "make-the-dot", + "name": "Make the Dot", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140347913" + ] +} diff --git a/data/software/ma/make.json b/data/software/ma/make.json new file mode 100644 index 000000000000..6dfc87b7243e --- /dev/null +++ b/data/software/ma/make.json @@ -0,0 +1,8 @@ +{ + "slug": "make", + "name": "Make", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134866480" + ] +} diff --git a/data/software/ma/makebootfat.json b/data/software/ma/makebootfat.json new file mode 100644 index 000000000000..12f8f62e633a --- /dev/null +++ b/data/software/ma/makebootfat.json @@ -0,0 +1,8 @@ +{ + "slug": "makebootfat", + "name": "makebootfat", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62851637" + ] +} diff --git a/data/software/ma/makecd.json b/data/software/ma/makecd.json new file mode 100644 index 000000000000..200b1a2d14f7 --- /dev/null +++ b/data/software/ma/makecd.json @@ -0,0 +1,12 @@ +{ + "slug": "makecd", + "name": "MakeCD", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q29364586" + ], + "release_date": "1996-01-01", + "operating_systems": [ + "AmigaOS" + ] +} diff --git a/data/software/ma/makeheaders.json b/data/software/ma/makeheaders.json new file mode 100644 index 000000000000..b8b3bb5b6016 --- /dev/null +++ b/data/software/ma/makeheaders.json @@ -0,0 +1,8 @@ +{ + "slug": "makeheaders", + "name": "makeheaders", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63064788" + ] +} diff --git a/data/software/ma/makemkv.json b/data/software/ma/makemkv.json new file mode 100644 index 000000000000..87b817fd438b --- /dev/null +++ b/data/software/ma/makemkv.json @@ -0,0 +1,13 @@ +{ + "slug": "makemkv", + "name": "MakeMKV", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11232702" + ], + "operating_systems": [ + "Unix-like operating system", + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/software/ma/makemodes.json b/data/software/ma/makemodes.json new file mode 100644 index 000000000000..3e9c70abcd55 --- /dev/null +++ b/data/software/ma/makemodes.json @@ -0,0 +1,14 @@ +{ + "slug": "makemodes", + "name": "MakeModes", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6738879" + ], + "developers": [ + "Acorn Computers" + ], + "operating_systems": [ + "RISC OS" + ] +} diff --git a/data/software/ma/makepasswd.json b/data/software/ma/makepasswd.json new file mode 100644 index 000000000000..87c2aebd9f2c --- /dev/null +++ b/data/software/ma/makepasswd.json @@ -0,0 +1,8 @@ +{ + "slug": "makepasswd", + "name": "Makepasswd", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62854630" + ] +} diff --git a/data/software/ma/makers-empire-3d.json b/data/software/ma/makers-empire-3d.json new file mode 100644 index 000000000000..caed20e0e352 --- /dev/null +++ b/data/software/ma/makers-empire-3d.json @@ -0,0 +1,8 @@ +{ + "slug": "makers-empire-3d", + "name": "Makers Empire 3D", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q30644295" + ] +} diff --git a/data/software/ma/making-waves.json b/data/software/ma/making-waves.json new file mode 100644 index 000000000000..afc444210734 --- /dev/null +++ b/data/software/ma/making-waves.json @@ -0,0 +1,8 @@ +{ + "slug": "making-waves", + "name": "Making Waves", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q20712356" + ] +} diff --git a/data/software/ma/mallet-package-for-r.json b/data/software/ma/mallet-package-for-r.json new file mode 100644 index 000000000000..70f63ac45d6b --- /dev/null +++ b/data/software/ma/mallet-package-for-r.json @@ -0,0 +1,8 @@ +{ + "slug": "mallet-package-for-r", + "name": "MALLET package for R", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087827" + ] +} diff --git a/data/software/ma/mallzee.json b/data/software/ma/mallzee.json new file mode 100644 index 000000000000..71111be37428 --- /dev/null +++ b/data/software/ma/mallzee.json @@ -0,0 +1,11 @@ +{ + "slug": "mallzee", + "name": "Mallzee", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22095855" + ], + "operating_systems": [ + "iOS" + ] +} diff --git a/data/software/ma/malpas-software-static-analysis-toolset.json b/data/software/ma/malpas-software-static-analysis-toolset.json new file mode 100644 index 000000000000..40dc575152fc --- /dev/null +++ b/data/software/ma/malpas-software-static-analysis-toolset.json @@ -0,0 +1,14 @@ +{ + "slug": "malpas-software-static-analysis-toolset", + "name": "MALPAS Software Static Analysis Toolset", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6714257" + ], + "developers": [ + "Atkins" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/ma/maltego.json b/data/software/ma/maltego.json new file mode 100644 index 000000000000..33c2117f5fcf --- /dev/null +++ b/data/software/ma/maltego.json @@ -0,0 +1,19 @@ +{ + "slug": "maltego", + "name": "Maltego", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6744768" + ], + "release_date": "2007-01-01", + "operating_systems": [ + "Mac operating system", + "Microsoft Windows" + ], + "programming_languages": [ + "Java" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/ma/maltparser.json b/data/software/ma/maltparser.json new file mode 100644 index 000000000000..3aae523b68ec --- /dev/null +++ b/data/software/ma/maltparser.json @@ -0,0 +1,8 @@ +{ + "slug": "maltparser", + "name": "MaltParser", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085097" + ] +} diff --git a/data/software/ma/mamba.json b/data/software/ma/mamba.json new file mode 100644 index 000000000000..a2372b217a5a --- /dev/null +++ b/data/software/ma/mamba.json @@ -0,0 +1,11 @@ +{ + "slug": "mamba", + "name": "mamba", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113018338" + ], + "licenses": [ + "3-clause BSD License" + ] +} diff --git a/data/software/ma/mammoinsight.json b/data/software/ma/mammoinsight.json new file mode 100644 index 000000000000..dc4f64db3d6a --- /dev/null +++ b/data/software/ma/mammoinsight.json @@ -0,0 +1,15 @@ +{ + "slug": "mammoinsight", + "name": "MammoInsight", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138751939" + ], + "release_date": "2022-01-01", + "developers": [ + "National Scientific and Technical Research Council" + ], + "programming_languages": [ + "Python" + ] +} diff --git a/data/software/ma/man2html.json b/data/software/ma/man2html.json new file mode 100644 index 000000000000..6148a6f1a4e8 --- /dev/null +++ b/data/software/ma/man2html.json @@ -0,0 +1,8 @@ +{ + "slug": "man2html", + "name": "man2html", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62854603" + ] +} diff --git a/data/software/ma/manaba.json b/data/software/ma/manaba.json new file mode 100644 index 000000000000..35f160af4cdd --- /dev/null +++ b/data/software/ma/manaba.json @@ -0,0 +1,12 @@ +{ + "slug": "manaba", + "name": "manaba", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6746557" + ], + "release_date": "2007-01-01", + "developers": [ + "ASAHI Net" + ] +} diff --git a/data/software/ma/managed-directx.json b/data/software/ma/managed-directx.json new file mode 100644 index 000000000000..1326bf1fb688 --- /dev/null +++ b/data/software/ma/managed-directx.json @@ -0,0 +1,11 @@ +{ + "slug": "managed-directx", + "name": "Managed DirectX", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6746632" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/ma/managed-extensibility-framework-q112629111.json b/data/software/ma/managed-extensibility-framework-q112629111.json new file mode 100644 index 000000000000..a574406064f3 --- /dev/null +++ b/data/software/ma/managed-extensibility-framework-q112629111.json @@ -0,0 +1,8 @@ +{ + "slug": "managed-extensibility-framework-q112629111", + "name": "Managed Extensibility Framework", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112629111" + ] +} diff --git a/data/software/ma/managed-extensibility-framework.json b/data/software/ma/managed-extensibility-framework.json new file mode 100644 index 000000000000..965e0d65b8d4 --- /dev/null +++ b/data/software/ma/managed-extensibility-framework.json @@ -0,0 +1,11 @@ +{ + "slug": "managed-extensibility-framework", + "name": "Managed Extensibility Framework", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6746631" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/ma/managedq.json b/data/software/ma/managedq.json new file mode 100644 index 000000000000..f0c12fcae6ec --- /dev/null +++ b/data/software/ma/managedq.json @@ -0,0 +1,8 @@ +{ + "slug": "managedq", + "name": "ManagedQ", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085098" + ] +} diff --git a/data/software/ma/manageengine-servicedesk-plus.json b/data/software/ma/manageengine-servicedesk-plus.json new file mode 100644 index 000000000000..3619c58cf391 --- /dev/null +++ b/data/software/ma/manageengine-servicedesk-plus.json @@ -0,0 +1,8 @@ +{ + "slug": "manageengine-servicedesk-plus", + "name": "ManageEngine ServiceDesk Plus", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q20110239" + ] +} diff --git a/data/software/ma/manageengine.json b/data/software/ma/manageengine.json new file mode 100644 index 000000000000..2283b0336d94 --- /dev/null +++ b/data/software/ma/manageengine.json @@ -0,0 +1,8 @@ +{ + "slug": "manageengine", + "name": "ManageEngine", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1888559" + ] +} diff --git a/data/software/ma/management-agent.json b/data/software/ma/management-agent.json new file mode 100644 index 000000000000..bf2963dbf118 --- /dev/null +++ b/data/software/ma/management-agent.json @@ -0,0 +1,8 @@ +{ + "slug": "management-agent", + "name": "Management agent", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6746680" + ] +} diff --git a/data/software/ma/managepro.json b/data/software/ma/managepro.json new file mode 100644 index 000000000000..7c8ad228801b --- /dev/null +++ b/data/software/ma/managepro.json @@ -0,0 +1,8 @@ +{ + "slug": "managepro", + "name": "ManagePro", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6746630" + ] +} diff --git a/data/software/ma/managewp.json b/data/software/ma/managewp.json new file mode 100644 index 000000000000..ec07a83d6d54 --- /dev/null +++ b/data/software/ma/managewp.json @@ -0,0 +1,8 @@ +{ + "slug": "managewp", + "name": "ManageWP", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085099" + ] +} diff --git a/data/software/ma/managing-your-money.json b/data/software/ma/managing-your-money.json new file mode 100644 index 000000000000..f00e1fa8824e --- /dev/null +++ b/data/software/ma/managing-your-money.json @@ -0,0 +1,11 @@ +{ + "slug": "managing-your-money", + "name": "Managing Your Money", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121614167" + ], + "developers": [ + "MECA Software" + ] +} diff --git a/data/software/ma/manatee-open.json b/data/software/ma/manatee-open.json new file mode 100644 index 000000000000..bba78be64296 --- /dev/null +++ b/data/software/ma/manatee-open.json @@ -0,0 +1,11 @@ +{ + "slug": "manatee-open", + "name": "Manatee-open", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134734477" + ], + "licenses": [ + "GNU General Public License, version 2.0" + ] +} diff --git a/data/software/ma/mango-tv.json b/data/software/ma/mango-tv.json new file mode 100644 index 000000000000..4f36f6a0e255 --- /dev/null +++ b/data/software/ma/mango-tv.json @@ -0,0 +1,8 @@ +{ + "slug": "mango-tv", + "name": "Mango TV", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q24833016" + ] +} diff --git a/data/software/ma/mango.json b/data/software/ma/mango.json new file mode 100644 index 000000000000..92440d77f5d5 --- /dev/null +++ b/data/software/ma/mango.json @@ -0,0 +1,17 @@ +{ + "slug": "mango", + "name": "Mango", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2426245" + ], + "developers": [ + "University of Texas Health Science Center at San Antonio" + ], + "programming_languages": [ + "Java" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/ma/manifest.json b/data/software/ma/manifest.json new file mode 100644 index 000000000000..19d09bd27f24 --- /dev/null +++ b/data/software/ma/manifest.json @@ -0,0 +1,19 @@ +{ + "slug": "manifest", + "name": "Manifest", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q133252448" + ], + "developers": [ + "Bruno Pérez", + "Sébastien Conejo" + ], + "programming_languages": [ + "TypeScript", + "YAML" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/ma/manifold-scholarship.json b/data/software/ma/manifold-scholarship.json new file mode 100644 index 000000000000..c4140112abaa --- /dev/null +++ b/data/software/ma/manifold-scholarship.json @@ -0,0 +1,12 @@ +{ + "slug": "manifold-scholarship", + "name": "Manifold Scholarship", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q96473453" + ], + "developers": [ + "University of Minnesota Press", + "CUNY Graduate School and University Center" + ] +} diff --git a/data/software/ma/manjam-com.json b/data/software/ma/manjam-com.json new file mode 100644 index 000000000000..363bc93d094f --- /dev/null +++ b/data/software/ma/manjam-com.json @@ -0,0 +1,8 @@ +{ + "slug": "manjam-com", + "name": "Manjam.com", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17510927" + ] +} diff --git a/data/software/ma/manman.json b/data/software/ma/manman.json new file mode 100644 index 000000000000..2a2f030f3731 --- /dev/null +++ b/data/software/ma/manman.json @@ -0,0 +1,8 @@ +{ + "slug": "manman", + "name": "Manman", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107388957" + ] +} diff --git a/data/software/ma/manta.json b/data/software/ma/manta.json new file mode 100644 index 000000000000..4fff1287800c --- /dev/null +++ b/data/software/ma/manta.json @@ -0,0 +1,8 @@ +{ + "slug": "manta", + "name": "MANTA", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17210902" + ] +} diff --git a/data/software/ma/manticore.json b/data/software/ma/manticore.json new file mode 100644 index 000000000000..914147e213d7 --- /dev/null +++ b/data/software/ma/manticore.json @@ -0,0 +1,8 @@ +{ + "slug": "manticore", + "name": "manticore", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127485783" + ] +} diff --git a/data/software/ma/mantis-bug-tracker.json b/data/software/ma/mantis-bug-tracker.json new file mode 100644 index 000000000000..8ce2d8ffc7d9 --- /dev/null +++ b/data/software/ma/mantis-bug-tracker.json @@ -0,0 +1,24 @@ +{ + "slug": "mantis-bug-tracker", + "name": "Mantis Bug Tracker", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1421571" + ], + "release_date": "2000-11-01", + "operating_systems": [ + "Berkeley Software Distribution", + "Unix-like operating system", + "Solaris", + "macOS", + "Microsoft Windows" + ], + "programming_languages": [ + "PHP", + "HTML", + "Cascading Style Sheets" + ], + "licenses": [ + "GNU General Public License, version 2.0 or later" + ] +} diff --git a/data/software/ma/mantle.json b/data/software/ma/mantle.json new file mode 100644 index 000000000000..cb675f86345e --- /dev/null +++ b/data/software/ma/mantle.json @@ -0,0 +1,11 @@ +{ + "slug": "mantle", + "name": "Mantle", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q15039395" + ], + "developers": [ + "AMD" + ] +} diff --git a/data/software/ma/manuelbastionilab.json b/data/software/ma/manuelbastionilab.json new file mode 100644 index 000000000000..bfa2d2292dd2 --- /dev/null +++ b/data/software/ma/manuelbastionilab.json @@ -0,0 +1,11 @@ +{ + "slug": "manuelbastionilab", + "name": "ManuelbastioniLAB", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q30638559" + ], + "programming_languages": [ + "Python" + ] +} diff --git a/data/software/ma/manupl-n.json b/data/software/ma/manupl-n.json new file mode 100644 index 000000000000..3ed705c8a04f --- /dev/null +++ b/data/software/ma/manupl-n.json @@ -0,0 +1,8 @@ +{ + "slug": "manupl-n", + "name": "Manupl@n", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10324753" + ] +} diff --git a/data/software/ma/manus.json b/data/software/ma/manus.json new file mode 100644 index 000000000000..d94c1daad72e --- /dev/null +++ b/data/software/ma/manus.json @@ -0,0 +1,8 @@ +{ + "slug": "manus", + "name": "Manus", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q133102805" + ] +} diff --git a/data/software/ma/manuscript-desk.json b/data/software/ma/manuscript-desk.json new file mode 100644 index 000000000000..4984d73d24e7 --- /dev/null +++ b/data/software/ma/manuscript-desk.json @@ -0,0 +1,8 @@ +{ + "slug": "manuscript-desk", + "name": "Manuscript Desk", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085102" + ] +} diff --git a/data/software/ma/manycam.json b/data/software/ma/manycam.json new file mode 100644 index 000000000000..10c8fa13fc4a --- /dev/null +++ b/data/software/ma/manycam.json @@ -0,0 +1,11 @@ +{ + "slug": "manycam", + "name": "ManyCam", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6753328" + ], + "developers": [ + "Visicom Media" + ] +} diff --git a/data/software/ma/manydesigns-portofino.json b/data/software/ma/manydesigns-portofino.json new file mode 100644 index 000000000000..0ada8242ae63 --- /dev/null +++ b/data/software/ma/manydesigns-portofino.json @@ -0,0 +1,11 @@ +{ + "slug": "manydesigns-portofino", + "name": "ManyDesigns Portofino", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3845151" + ], + "programming_languages": [ + "Java" + ] +} diff --git a/data/software/ma/manzi-os.json b/data/software/ma/manzi-os.json new file mode 100644 index 000000000000..52095b0c6f3d --- /dev/null +++ b/data/software/ma/manzi-os.json @@ -0,0 +1,8 @@ +{ + "slug": "manzi-os", + "name": "Manzi OS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138757892" + ] +} diff --git a/data/software/ma/map-overlay-and-statistical-system.json b/data/software/ma/map-overlay-and-statistical-system.json new file mode 100644 index 000000000000..2066cddc6331 --- /dev/null +++ b/data/software/ma/map-overlay-and-statistical-system.json @@ -0,0 +1,14 @@ +{ + "slug": "map-overlay-and-statistical-system", + "name": "Map Overlay and Statistical System", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17148726" + ], + "programming_languages": [ + "Fortran" + ], + "licenses": [ + "Unlicense" + ] +} diff --git a/data/software/ma/map-warper.json b/data/software/ma/map-warper.json new file mode 100644 index 000000000000..94ce83bf25e4 --- /dev/null +++ b/data/software/ma/map-warper.json @@ -0,0 +1,11 @@ +{ + "slug": "map-warper", + "name": "Map Warper", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085109" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/ma/mapalist.json b/data/software/ma/mapalist.json new file mode 100644 index 000000000000..cf7cab88ad13 --- /dev/null +++ b/data/software/ma/mapalist.json @@ -0,0 +1,8 @@ +{ + "slug": "mapalist", + "name": "MapAList", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085103" + ] +} diff --git a/data/software/ma/mapamap.json b/data/software/ma/mapamap.json new file mode 100644 index 000000000000..32f3fbcea612 --- /dev/null +++ b/data/software/ma/mapamap.json @@ -0,0 +1,8 @@ +{ + "slug": "mapamap", + "name": "MapaMap", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11767238" + ] +} diff --git a/data/software/ma/mapbasic.json b/data/software/ma/mapbasic.json new file mode 100644 index 000000000000..d6b90772c77d --- /dev/null +++ b/data/software/ma/mapbasic.json @@ -0,0 +1,11 @@ +{ + "slug": "mapbasic", + "name": "MapBasic", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6753717" + ], + "developers": [ + "Pitney Bowes" + ] +} diff --git a/data/software/ma/mapcraft.json b/data/software/ma/mapcraft.json new file mode 100644 index 000000000000..2e0d0acc135d --- /dev/null +++ b/data/software/ma/mapcraft.json @@ -0,0 +1,8 @@ +{ + "slug": "mapcraft", + "name": "MapCraft", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085104" + ] +} diff --git a/data/software/ma/mapdotnet.json b/data/software/ma/mapdotnet.json new file mode 100644 index 000000000000..e103852e10c4 --- /dev/null +++ b/data/software/ma/mapdotnet.json @@ -0,0 +1,11 @@ +{ + "slug": "mapdotnet", + "name": "MapDotNet", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6753720" + ], + "developers": [ + "ISC" + ] +} diff --git a/data/software/ma/maphub.json b/data/software/ma/maphub.json new file mode 100644 index 000000000000..abeb4a3609a4 --- /dev/null +++ b/data/software/ma/maphub.json @@ -0,0 +1,8 @@ +{ + "slug": "maphub", + "name": "MapHub", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085105" + ] +} diff --git a/data/software/ma/mapics.json b/data/software/ma/mapics.json new file mode 100644 index 000000000000..7cc525424800 --- /dev/null +++ b/data/software/ma/mapics.json @@ -0,0 +1,8 @@ +{ + "slug": "mapics", + "name": "MAPICS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6714393" + ] +} diff --git a/data/software/ma/mapillary-uploader-for-desktop.json b/data/software/ma/mapillary-uploader-for-desktop.json new file mode 100644 index 000000000000..e52d2b79bc77 --- /dev/null +++ b/data/software/ma/mapillary-uploader-for-desktop.json @@ -0,0 +1,12 @@ +{ + "slug": "mapillary-uploader-for-desktop", + "name": "Mapillary Uploader for Desktop", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107355953" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/software/ma/mapjack.json b/data/software/ma/mapjack.json new file mode 100644 index 000000000000..ae68984b8afc --- /dev/null +++ b/data/software/ma/mapjack.json @@ -0,0 +1,9 @@ +{ + "slug": "mapjack", + "name": "MapJack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3845184" + ], + "release_date": "2007-06-01" +} diff --git a/data/software/ma/mapkurator.json b/data/software/ma/mapkurator.json new file mode 100644 index 000000000000..baa3987ea0ec --- /dev/null +++ b/data/software/ma/mapkurator.json @@ -0,0 +1,11 @@ +{ + "slug": "mapkurator", + "name": "mapKurator", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124558370" + ], + "publishers": [ + "Knowledge Computing Lab" + ] +} diff --git a/data/software/ma/maple-t-a.json b/data/software/ma/maple-t-a.json new file mode 100644 index 000000000000..93df1362d159 --- /dev/null +++ b/data/software/ma/maple-t-a.json @@ -0,0 +1,11 @@ +{ + "slug": "maple-t-a", + "name": "Maple T.A.", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28163246" + ], + "developers": [ + "Waterloo Maple" + ] +} diff --git a/data/software/ma/maplesim.json b/data/software/ma/maplesim.json new file mode 100644 index 000000000000..6eb141b975f9 --- /dev/null +++ b/data/software/ma/maplesim.json @@ -0,0 +1,14 @@ +{ + "slug": "maplesim", + "name": "MapleSim", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6753830" + ], + "developers": [ + "Waterloo Maple" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/ma/mapline.json b/data/software/ma/mapline.json new file mode 100644 index 000000000000..f2fa3d5e2d79 --- /dev/null +++ b/data/software/ma/mapline.json @@ -0,0 +1,8 @@ +{ + "slug": "mapline", + "name": "mapline", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087828" + ] +} diff --git a/data/software/ma/mapopolis.json b/data/software/ma/mapopolis.json new file mode 100644 index 000000000000..bd2ac57ec690 --- /dev/null +++ b/data/software/ma/mapopolis.json @@ -0,0 +1,8 @@ +{ + "slug": "mapopolis", + "name": "Mapopolis", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6754143" + ] +} diff --git a/data/software/ma/maposmatic.json b/data/software/ma/maposmatic.json new file mode 100644 index 000000000000..2a6b3bc16557 --- /dev/null +++ b/data/software/ma/maposmatic.json @@ -0,0 +1,8 @@ +{ + "slug": "maposmatic", + "name": "MapOSMatic", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115985473" + ] +} diff --git a/data/software/ma/mapping-memory-manager.json b/data/software/ma/mapping-memory-manager.json new file mode 100644 index 000000000000..b86068a9ca54 --- /dev/null +++ b/data/software/ma/mapping-memory-manager.json @@ -0,0 +1,8 @@ +{ + "slug": "mapping-memory-manager", + "name": "Mapping Memory Manager", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085106" + ] +} diff --git a/data/software/ma/mapscii.json b/data/software/ma/mapscii.json new file mode 100644 index 000000000000..fa4b4e39459f --- /dev/null +++ b/data/software/ma/mapscii.json @@ -0,0 +1,11 @@ +{ + "slug": "mapscii", + "name": "mapscii", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q56878906" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/ma/mapstory.json b/data/software/ma/mapstory.json new file mode 100644 index 000000000000..1cc1286cc025 --- /dev/null +++ b/data/software/ma/mapstory.json @@ -0,0 +1,8 @@ +{ + "slug": "mapstory", + "name": "MapStory", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085107" + ] +} diff --git a/data/software/ma/mapstraction.json b/data/software/ma/mapstraction.json new file mode 100644 index 000000000000..f9b59cb6cf10 --- /dev/null +++ b/data/software/ma/mapstraction.json @@ -0,0 +1,11 @@ +{ + "slug": "mapstraction", + "name": "Mapstraction", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085108" + ], + "licenses": [ + "BSD licenses" + ] +} diff --git a/data/software/ma/maptitude.json b/data/software/ma/maptitude.json new file mode 100644 index 000000000000..13b3df205b32 --- /dev/null +++ b/data/software/ma/maptitude.json @@ -0,0 +1,11 @@ +{ + "slug": "maptitude", + "name": "Maptitude", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6754220" + ], + "developers": [ + "Caliper Corporation" + ] +} diff --git a/data/software/ma/mapumental.json b/data/software/ma/mapumental.json new file mode 100644 index 000000000000..792866abf996 --- /dev/null +++ b/data/software/ma/mapumental.json @@ -0,0 +1,11 @@ +{ + "slug": "mapumental", + "name": "Mapumental", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28130109" + ], + "developers": [ + "Chris Lightfoot" + ] +} diff --git a/data/software/ma/mapx.json b/data/software/ma/mapx.json new file mode 100644 index 000000000000..36121aad7487 --- /dev/null +++ b/data/software/ma/mapx.json @@ -0,0 +1,11 @@ +{ + "slug": "mapx", + "name": "MapX", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124102336" + ], + "developers": [ + "GRID-Geneva" + ] +} diff --git a/data/software/ma/marcedit.json b/data/software/ma/marcedit.json new file mode 100644 index 000000000000..55584df6d988 --- /dev/null +++ b/data/software/ma/marcedit.json @@ -0,0 +1,15 @@ +{ + "slug": "marcedit", + "name": "MarcEdit", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28444652" + ], + "release_date": "2006-09-01", + "operating_systems": [ + "Microsoft Windows" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/ma/maren.json b/data/software/ma/maren.json new file mode 100644 index 000000000000..75cacccd49d4 --- /dev/null +++ b/data/software/ma/maren.json @@ -0,0 +1,11 @@ +{ + "slug": "maren", + "name": "Maren", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6758950" + ], + "developers": [ + "Marorka" + ] +} diff --git a/data/software/ma/margbooks.json b/data/software/ma/margbooks.json new file mode 100644 index 000000000000..cc4a28ca0bd2 --- /dev/null +++ b/data/software/ma/margbooks.json @@ -0,0 +1,8 @@ +{ + "slug": "margbooks", + "name": "MargBooks", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123668024" + ] +} diff --git a/data/software/ma/marionette.json b/data/software/ma/marionette.json new file mode 100644 index 000000000000..4041d4e906fa --- /dev/null +++ b/data/software/ma/marionette.json @@ -0,0 +1,11 @@ +{ + "slug": "marionette", + "name": "Marionette", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q388105" + ], + "developers": [ + "Pixar" + ] +} diff --git a/data/software/ma/markaby.json b/data/software/ma/markaby.json new file mode 100644 index 000000000000..82e596dc509c --- /dev/null +++ b/data/software/ma/markaby.json @@ -0,0 +1,11 @@ +{ + "slug": "markaby", + "name": "markaby", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1699632" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/ma/marketview.json b/data/software/ma/marketview.json new file mode 100644 index 000000000000..03a8273540cd --- /dev/null +++ b/data/software/ma/marketview.json @@ -0,0 +1,11 @@ +{ + "slug": "marketview", + "name": "MarketView", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135263916" + ], + "developers": [ + "Enverus" + ] +} diff --git a/data/software/ma/marklogic.json b/data/software/ma/marklogic.json new file mode 100644 index 000000000000..ae0174f13095 --- /dev/null +++ b/data/software/ma/marklogic.json @@ -0,0 +1,14 @@ +{ + "slug": "marklogic", + "name": "MarkLogic", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q29364583" + ], + "developers": [ + "MarkLogic" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/ma/marlin.json b/data/software/ma/marlin.json new file mode 100644 index 000000000000..d33b3263af86 --- /dev/null +++ b/data/software/ma/marlin.json @@ -0,0 +1,12 @@ +{ + "slug": "marlin", + "name": "Marlin", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q56290151" + ], + "release_date": "2011-08-01", + "licenses": [ + "GNU General Public License, version 3.0" + ] +} diff --git a/data/software/ma/marq.json b/data/software/ma/marq.json new file mode 100644 index 000000000000..17262db578ba --- /dev/null +++ b/data/software/ma/marq.json @@ -0,0 +1,9 @@ +{ + "slug": "marq", + "name": "Marq", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17067898" + ], + "release_date": "2013-10-01" +} diff --git a/data/software/ma/marrest.json b/data/software/ma/marrest.json new file mode 100644 index 000000000000..3e643b347a3e --- /dev/null +++ b/data/software/ma/marrest.json @@ -0,0 +1,11 @@ +{ + "slug": "marrest", + "name": "MarRest", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138585893" + ], + "operating_systems": [ + "web browser" + ] +} diff --git a/data/software/ma/mars-plm.json b/data/software/ma/mars-plm.json new file mode 100644 index 000000000000..37135246bfee --- /dev/null +++ b/data/software/ma/mars-plm.json @@ -0,0 +1,8 @@ +{ + "slug": "mars-plm", + "name": "Mars PLM", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105947097" + ] +} diff --git a/data/software/ma/mars-regional-atmospheric-modeling-system.json b/data/software/ma/mars-regional-atmospheric-modeling-system.json new file mode 100644 index 000000000000..66a91b12e904 --- /dev/null +++ b/data/software/ma/mars-regional-atmospheric-modeling-system.json @@ -0,0 +1,8 @@ +{ + "slug": "mars-regional-atmospheric-modeling-system", + "name": "Mars regional atmospheric modeling system", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6773190" + ] +} diff --git a/data/software/ma/mars24.json b/data/software/ma/mars24.json new file mode 100644 index 000000000000..d819a34e3ef2 --- /dev/null +++ b/data/software/ma/mars24.json @@ -0,0 +1,11 @@ +{ + "slug": "mars24", + "name": "Mars24", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136268926" + ], + "programming_languages": [ + "Java" + ] +} diff --git a/data/software/ma/marshall-plan.json b/data/software/ma/marshall-plan.json new file mode 100644 index 000000000000..2bc6c14959d5 --- /dev/null +++ b/data/software/ma/marshall-plan.json @@ -0,0 +1,8 @@ +{ + "slug": "marshall-plan", + "name": "Marshall Plan", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q30668407" + ] +} diff --git a/data/software/ma/martux.json b/data/software/ma/martux.json new file mode 100644 index 000000000000..b85c8e8e31a8 --- /dev/null +++ b/data/software/ma/martux.json @@ -0,0 +1,8 @@ +{ + "slug": "martux", + "name": "marTux", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4043710" + ] +} diff --git a/data/software/ma/marxan.json b/data/software/ma/marxan.json new file mode 100644 index 000000000000..29929d55edae --- /dev/null +++ b/data/software/ma/marxan.json @@ -0,0 +1,8 @@ +{ + "slug": "marxan", + "name": "Marxan", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6778606" + ] +} diff --git a/data/software/ma/mash-q112583738.json b/data/software/ma/mash-q112583738.json new file mode 100644 index 000000000000..4c096fa6e230 --- /dev/null +++ b/data/software/ma/mash-q112583738.json @@ -0,0 +1,12 @@ +{ + "slug": "mash-q112583738", + "name": "MASH", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112583738" + ], + "release_date": "2010-01-01", + "developers": [ + "Autodesk" + ] +} diff --git a/data/software/ma/mash-q62859498.json b/data/software/ma/mash-q62859498.json new file mode 100644 index 000000000000..1a1841b37558 --- /dev/null +++ b/data/software/ma/mash-q62859498.json @@ -0,0 +1,8 @@ +{ + "slug": "mash-q62859498", + "name": "mash", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62859498" + ] +} diff --git a/data/software/ma/mash.json b/data/software/ma/mash.json new file mode 100644 index 000000000000..05f15598f038 --- /dev/null +++ b/data/software/ma/mash.json @@ -0,0 +1,8 @@ +{ + "slug": "mash", + "name": "MASH", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62859401" + ] +} diff --git a/data/software/ma/masheev.json b/data/software/ma/masheev.json new file mode 100644 index 000000000000..cc08cf32089d --- /dev/null +++ b/data/software/ma/masheev.json @@ -0,0 +1,8 @@ +{ + "slug": "masheev", + "name": "Masheev", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140007941" + ] +} diff --git a/data/software/ma/massive-pixel-environment.json b/data/software/ma/massive-pixel-environment.json new file mode 100644 index 000000000000..4313b3d55904 --- /dev/null +++ b/data/software/ma/massive-pixel-environment.json @@ -0,0 +1,8 @@ +{ + "slug": "massive-pixel-environment", + "name": "Massive Pixel Environment", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085111" + ] +} diff --git a/data/software/ma/massive.json b/data/software/ma/massive.json new file mode 100644 index 000000000000..8b40fc443c08 --- /dev/null +++ b/data/software/ma/massive.json @@ -0,0 +1,11 @@ +{ + "slug": "massive", + "name": "MASSIVE", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q568723" + ], + "developers": [ + "Stephen Regelous" + ] +} diff --git a/data/software/ma/massmatrix.json b/data/software/ma/massmatrix.json new file mode 100644 index 000000000000..a82ddfc4e1c6 --- /dev/null +++ b/data/software/ma/massmatrix.json @@ -0,0 +1,11 @@ +{ + "slug": "massmatrix", + "name": "MassMatrix", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18356863" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/ma/massmine.json b/data/software/ma/massmine.json new file mode 100644 index 000000000000..971ade2a7623 --- /dev/null +++ b/data/software/ma/massmine.json @@ -0,0 +1,8 @@ +{ + "slug": "massmine", + "name": "MassMine", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085112" + ] +} diff --git a/data/software/ma/masstransit-project.json b/data/software/ma/masstransit-project.json new file mode 100644 index 000000000000..f45a3d574d7f --- /dev/null +++ b/data/software/ma/masstransit-project.json @@ -0,0 +1,11 @@ +{ + "slug": "masstransit-project", + "name": "MassTransit-Project", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17042529" + ], + "licenses": [ + "Apache License" + ] +} diff --git a/data/software/ma/master-pdf-editor.json b/data/software/ma/master-pdf-editor.json new file mode 100644 index 000000000000..b5e8acdf25fa --- /dev/null +++ b/data/software/ma/master-pdf-editor.json @@ -0,0 +1,8 @@ +{ + "slug": "master-pdf-editor", + "name": "Master PDF Editor", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q20850861" + ] +} diff --git a/data/software/ma/master-tracks-pro.json b/data/software/ma/master-tracks-pro.json new file mode 100644 index 000000000000..c51f962b3a4c --- /dev/null +++ b/data/software/ma/master-tracks-pro.json @@ -0,0 +1,8 @@ +{ + "slug": "master-tracks-pro", + "name": "Master Tracks Pro", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6785105" + ] +} diff --git a/data/software/ma/mastercoin.json b/data/software/ma/mastercoin.json new file mode 100644 index 000000000000..59306537850c --- /dev/null +++ b/data/software/ma/mastercoin.json @@ -0,0 +1,14 @@ +{ + "slug": "mastercoin", + "name": "Mastercoin", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q15494057" + ], + "programming_languages": [ + "Python" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/ma/mastercook.json b/data/software/ma/mastercook.json new file mode 100644 index 000000000000..bbc1b2821cfd --- /dev/null +++ b/data/software/ma/mastercook.json @@ -0,0 +1,9 @@ +{ + "slug": "mastercook", + "name": "MasterCook", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q65532911" + ], + "release_date": "1992-01-01" +} diff --git a/data/software/ma/mastergear.json b/data/software/ma/mastergear.json new file mode 100644 index 000000000000..eea616400318 --- /dev/null +++ b/data/software/ma/mastergear.json @@ -0,0 +1,16 @@ +{ + "slug": "mastergear", + "name": "MasterGear", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6005552" + ], + "operating_systems": [ + "SunOS", + "Maemo", + "OSF/1", + "FreeBSD", + "Solaris", + "Microsoft Windows" + ] +} diff --git a/data/software/ma/masterpass.json b/data/software/ma/masterpass.json new file mode 100644 index 000000000000..493d44ed8469 --- /dev/null +++ b/data/software/ma/masterpass.json @@ -0,0 +1,8 @@ +{ + "slug": "masterpass", + "name": "Masterpass", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q114231673" + ] +} diff --git a/data/software/ma/masterplex-qt.json b/data/software/ma/masterplex-qt.json new file mode 100644 index 000000000000..ae74fa09797c --- /dev/null +++ b/data/software/ma/masterplex-qt.json @@ -0,0 +1,14 @@ +{ + "slug": "masterplex-qt", + "name": "MasterPlex QT", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6784971" + ], + "developers": [ + "Hitachi Software Engineering" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/ma/masterplex-readerfit.json b/data/software/ma/masterplex-readerfit.json new file mode 100644 index 000000000000..d53efee9e4ee --- /dev/null +++ b/data/software/ma/masterplex-readerfit.json @@ -0,0 +1,14 @@ +{ + "slug": "masterplex-readerfit", + "name": "MasterPlex ReaderFit", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11232830" + ], + "developers": [ + "Hitachi Software Engineering" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/ma/masterportal.json b/data/software/ma/masterportal.json new file mode 100644 index 000000000000..b35015afd5c7 --- /dev/null +++ b/data/software/ma/masterportal.json @@ -0,0 +1,8 @@ +{ + "slug": "masterportal", + "name": "Masterportal", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121501211" + ] +} diff --git a/data/software/ma/matchlenz.json b/data/software/ma/matchlenz.json new file mode 100644 index 000000000000..7bff2f82bbcf --- /dev/null +++ b/data/software/ma/matchlenz.json @@ -0,0 +1,8 @@ +{ + "slug": "matchlenz", + "name": "MatchLenz", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140167693" + ] +} diff --git a/data/software/ma/matchware-mediator.json b/data/software/ma/matchware-mediator.json new file mode 100644 index 000000000000..ad13b2907e0d --- /dev/null +++ b/data/software/ma/matchware-mediator.json @@ -0,0 +1,8 @@ +{ + "slug": "matchware-mediator", + "name": "MatchWare Mediator", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130302781" + ] +} diff --git a/data/software/ma/mate-calc.json b/data/software/ma/mate-calc.json new file mode 100644 index 000000000000..58ad8b0b3bab --- /dev/null +++ b/data/software/ma/mate-calc.json @@ -0,0 +1,8 @@ +{ + "slug": "mate-calc", + "name": "mate-calc", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065325" + ] +} diff --git a/data/software/ma/material-design.json b/data/software/ma/material-design.json new file mode 100644 index 000000000000..805e95cf985e --- /dev/null +++ b/data/software/ma/material-design.json @@ -0,0 +1,26 @@ +{ + "slug": "material-design", + "name": "Material Design", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17590603" + ], + "developers": [ + "Google" + ], + "operating_systems": [ + "cross-platform" + ], + "programming_languages": [ + "Java", + "Swift", + "Objective-C", + "Dart", + "TypeScript" + ], + "licenses": [ + "3-clause BSD License", + "Apache Software License 2.0", + "MIT License" + ] +} diff --git a/data/software/ma/materialcenter.json b/data/software/ma/materialcenter.json new file mode 100644 index 000000000000..be8b61126bdd --- /dev/null +++ b/data/software/ma/materialcenter.json @@ -0,0 +1,11 @@ +{ + "slug": "materialcenter", + "name": "MaterialCenter", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q21072547" + ], + "developers": [ + "MSC Software" + ] +} diff --git a/data/software/ma/math-blaster-master-the-basics.json b/data/software/ma/math-blaster-master-the-basics.json new file mode 100644 index 000000000000..59129aa355fe --- /dev/null +++ b/data/software/ma/math-blaster-master-the-basics.json @@ -0,0 +1,8 @@ +{ + "slug": "math-blaster-master-the-basics", + "name": "Math Blaster Master the Basics", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q57980227" + ] +} diff --git a/data/software/ma/math-o-mir.json b/data/software/ma/math-o-mir.json new file mode 100644 index 000000000000..e83e8db6298b --- /dev/null +++ b/data/software/ma/math-o-mir.json @@ -0,0 +1,14 @@ +{ + "slug": "math-o-mir", + "name": "Math-o-mir", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6786738" + ], + "operating_systems": [ + "Windows 7" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/ma/mathcad.json b/data/software/ma/mathcad.json new file mode 100644 index 000000000000..863739344c55 --- /dev/null +++ b/data/software/ma/mathcad.json @@ -0,0 +1,18 @@ +{ + "slug": "mathcad", + "name": "Mathcad", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1133580" + ], + "release_date": "1986-01-01", + "developers": [ + "Mathsoft" + ], + "operating_systems": [ + "Microsoft Windows" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/ma/matheos.json b/data/software/ma/matheos.json new file mode 100644 index 000000000000..5ca44cce90b8 --- /dev/null +++ b/data/software/ma/matheos.json @@ -0,0 +1,8 @@ +{ + "slug": "matheos", + "name": "MathEOS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25377995" + ] +} diff --git a/data/software/ma/mathgl.json b/data/software/ma/mathgl.json new file mode 100644 index 000000000000..f5743151af0a --- /dev/null +++ b/data/software/ma/mathgl.json @@ -0,0 +1,8 @@ +{ + "slug": "mathgl", + "name": "MathGL", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62860347" + ] +} diff --git a/data/software/ma/mathletics.json b/data/software/ma/mathletics.json new file mode 100644 index 000000000000..ed7c629b98e7 --- /dev/null +++ b/data/software/ma/mathletics.json @@ -0,0 +1,8 @@ +{ + "slug": "mathletics", + "name": "Mathletics", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q56292736" + ] +} diff --git a/data/software/ma/mathmagic.json b/data/software/ma/mathmagic.json new file mode 100644 index 000000000000..0e419cf9cab1 --- /dev/null +++ b/data/software/ma/mathmagic.json @@ -0,0 +1,13 @@ +{ + "slug": "mathmagic", + "name": "MathMagic", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6786754" + ], + "operating_systems": [ + "iOS", + "Microsoft Windows", + "macOS" + ] +} diff --git a/data/software/ma/mathplayer.json b/data/software/ma/mathplayer.json new file mode 100644 index 000000000000..1016ed4c931f --- /dev/null +++ b/data/software/ma/mathplayer.json @@ -0,0 +1,8 @@ +{ + "slug": "mathplayer", + "name": "MathPlayer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3298497" + ] +} diff --git a/data/software/ma/matific.json b/data/software/ma/matific.json new file mode 100644 index 000000000000..e07fd26f5c23 --- /dev/null +++ b/data/software/ma/matific.json @@ -0,0 +1,11 @@ +{ + "slug": "matific", + "name": "Matific", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136919832" + ], + "genres": [ + "mathematics" + ] +} diff --git a/data/software/ma/matinno.json b/data/software/ma/matinno.json new file mode 100644 index 000000000000..b5e1b76ff2ef --- /dev/null +++ b/data/software/ma/matinno.json @@ -0,0 +1,8 @@ +{ + "slug": "matinno", + "name": "Matinno", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q97202497" + ] +} diff --git a/data/software/ma/matisse-light.json b/data/software/ma/matisse-light.json new file mode 100644 index 000000000000..c4c8f7a37144 --- /dev/null +++ b/data/software/ma/matisse-light.json @@ -0,0 +1,15 @@ +{ + "slug": "matisse-light", + "name": "Matisse Light", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q114102751" + ], + "release_date": "1994-01-01", + "publishers": [ + "Fauve Software" + ], + "operating_systems": [ + "Windows for Workgroups 3.11" + ] +} diff --git a/data/software/ma/matrix-prompt-injection-tool.json b/data/software/ma/matrix-prompt-injection-tool.json new file mode 100644 index 000000000000..4b8855b3c2f4 --- /dev/null +++ b/data/software/ma/matrix-prompt-injection-tool.json @@ -0,0 +1,15 @@ +{ + "slug": "matrix-prompt-injection-tool", + "name": "Matrix Prompt Injection Tool", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140249113" + ], + "developers": [ + "Sasuke Kondo", + "Shōta Shinogi" + ], + "programming_languages": [ + "Python" + ] +} diff --git a/data/software/ma/matrix-template-library.json b/data/software/ma/matrix-template-library.json new file mode 100644 index 000000000000..5f673d39a459 --- /dev/null +++ b/data/software/ma/matrix-template-library.json @@ -0,0 +1,8 @@ +{ + "slug": "matrix-template-library", + "name": "Matrix Template Library", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1814281" + ] +} diff --git a/data/software/ma/matrox-simple-interface.json b/data/software/ma/matrox-simple-interface.json new file mode 100644 index 000000000000..55074943ae08 --- /dev/null +++ b/data/software/ma/matrox-simple-interface.json @@ -0,0 +1,8 @@ +{ + "slug": "matrox-simple-interface", + "name": "Matrox Simple Interface", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6787930" + ] +} diff --git a/data/software/ma/matsim.json b/data/software/ma/matsim.json new file mode 100644 index 000000000000..6d94fa64326a --- /dev/null +++ b/data/software/ma/matsim.json @@ -0,0 +1,12 @@ +{ + "slug": "matsim", + "name": "MATSim", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6714570" + ], + "developers": [ + "Kay Axhausen", + "Kai Nagel" + ] +} diff --git a/data/software/ma/maude-system.json b/data/software/ma/maude-system.json new file mode 100644 index 000000000000..0f3233cc771d --- /dev/null +++ b/data/software/ma/maude-system.json @@ -0,0 +1,8 @@ +{ + "slug": "maude-system", + "name": "Maude system", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3558930" + ] +} diff --git a/data/software/ma/maui-cluster-scheduler.json b/data/software/ma/maui-cluster-scheduler.json new file mode 100644 index 000000000000..d8523e97e2e8 --- /dev/null +++ b/data/software/ma/maui-cluster-scheduler.json @@ -0,0 +1,8 @@ +{ + "slug": "maui-cluster-scheduler", + "name": "Maui Cluster Scheduler", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4043817" + ] +} diff --git a/data/software/ma/mausezahn.json b/data/software/ma/mausezahn.json new file mode 100644 index 000000000000..2ba931cf7194 --- /dev/null +++ b/data/software/ma/mausezahn.json @@ -0,0 +1,8 @@ +{ + "slug": "mausezahn", + "name": "Mausezahn", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q618952" + ] +} diff --git a/data/software/ma/mautic.json b/data/software/ma/mautic.json new file mode 100644 index 000000000000..b5a2c2b19cae --- /dev/null +++ b/data/software/ma/mautic.json @@ -0,0 +1,18 @@ +{ + "slug": "mautic", + "name": "mautic", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q99374512" + ], + "release_date": "2015-03-10", + "developers": [ + "Acquia" + ], + "operating_systems": [ + "Microsoft Windows" + ], + "licenses": [ + "GNU General Public License" + ] +} diff --git a/data/software/ma/maven-app-engine-plugin.json b/data/software/ma/maven-app-engine-plugin.json new file mode 100644 index 000000000000..12ea1d941208 --- /dev/null +++ b/data/software/ma/maven-app-engine-plugin.json @@ -0,0 +1,11 @@ +{ + "slug": "maven-app-engine-plugin", + "name": "Maven App Engine Plugin", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60062042" + ], + "developers": [ + "Google" + ] +} diff --git a/data/software/ma/mavid.json b/data/software/ma/mavid.json new file mode 100644 index 000000000000..243d4522ed85 --- /dev/null +++ b/data/software/ma/mavid.json @@ -0,0 +1,8 @@ +{ + "slug": "mavid", + "name": "MAVID", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6714589" + ] +} diff --git a/data/software/ma/maxcluster.json b/data/software/ma/maxcluster.json new file mode 100644 index 000000000000..fab530b4189e --- /dev/null +++ b/data/software/ma/maxcluster.json @@ -0,0 +1,8 @@ +{ + "slug": "maxcluster", + "name": "MaxCluster", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q114840623" + ] +} diff --git a/data/software/ma/maxent.json b/data/software/ma/maxent.json new file mode 100644 index 000000000000..d380115f5bf5 --- /dev/null +++ b/data/software/ma/maxent.json @@ -0,0 +1,11 @@ +{ + "slug": "maxent", + "name": "Maxent", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1913760" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/ma/maxim-dl.json b/data/software/ma/maxim-dl.json new file mode 100644 index 000000000000..1867b00ed15b --- /dev/null +++ b/data/software/ma/maxim-dl.json @@ -0,0 +1,8 @@ +{ + "slug": "maxim-dl", + "name": "Maxim DL", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q24889971" + ] +} diff --git a/data/software/ma/maximo.json b/data/software/ma/maximo.json new file mode 100644 index 000000000000..7f6a3b742f18 --- /dev/null +++ b/data/software/ma/maximo.json @@ -0,0 +1,11 @@ +{ + "slug": "maximo", + "name": "Maximo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q55622518" + ], + "developers": [ + "IBM" + ] +} diff --git a/data/software/ma/maxqda.json b/data/software/ma/maxqda.json new file mode 100644 index 000000000000..86afe191deb1 --- /dev/null +++ b/data/software/ma/maxqda.json @@ -0,0 +1,16 @@ +{ + "slug": "maxqda", + "name": "MAXQDA", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1258962" + ], + "release_date": "1995-01-01", + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/ma/maxwell-render.json b/data/software/ma/maxwell-render.json new file mode 100644 index 000000000000..0e51aada6de0 --- /dev/null +++ b/data/software/ma/maxwell-render.json @@ -0,0 +1,14 @@ +{ + "slug": "maxwell-render", + "name": "Maxwell Render", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2636431" + ], + "developers": [ + "Next Limit Technologies" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/ma/mayan.json b/data/software/ma/mayan.json new file mode 100644 index 000000000000..7741f22b95fb --- /dev/null +++ b/data/software/ma/mayan.json @@ -0,0 +1,14 @@ +{ + "slug": "mayan", + "name": "Mayan", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6796823" + ], + "developers": [ + "Roberto Rosario" + ], + "programming_languages": [ + "Python" + ] +} diff --git a/data/software/mb/mblock.json b/data/software/mb/mblock.json new file mode 100644 index 000000000000..4fe10c0e58c2 --- /dev/null +++ b/data/software/mb/mblock.json @@ -0,0 +1,8 @@ +{ + "slug": "mblock", + "name": "MBlock", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q61076699" + ] +} diff --git a/data/software/mb/mbn-explorer.json b/data/software/mb/mbn-explorer.json new file mode 100644 index 000000000000..fc05acf6a430 --- /dev/null +++ b/data/software/mb/mbn-explorer.json @@ -0,0 +1,8 @@ +{ + "slug": "mbn-explorer", + "name": "MBN Explorer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q39059945" + ] +} diff --git a/data/software/mb/mbox-to-csv.json b/data/software/mb/mbox-to-csv.json new file mode 100644 index 000000000000..15ad9a530738 --- /dev/null +++ b/data/software/mb/mbox-to-csv.json @@ -0,0 +1,14 @@ +{ + "slug": "mbox-to-csv", + "name": "MBOX to CSV", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138472216" + ], + "developers": [ + "C. M. Leal Ltda" + ], + "operating_systems": [ + "macOS" + ] +} diff --git a/data/software/mb/mbox-to-pdf.json b/data/software/mb/mbox-to-pdf.json new file mode 100644 index 000000000000..9c4c4561887e --- /dev/null +++ b/data/software/mb/mbox-to-pdf.json @@ -0,0 +1,14 @@ +{ + "slug": "mbox-to-pdf", + "name": "MBOX to PDF", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138472297" + ], + "developers": [ + "C. M. Leal Ltda" + ], + "operating_systems": [ + "macOS" + ] +} diff --git a/data/software/mb/mboxgrep.json b/data/software/mb/mboxgrep.json new file mode 100644 index 000000000000..9cd8d88103f3 --- /dev/null +++ b/data/software/mb/mboxgrep.json @@ -0,0 +1,8 @@ +{ + "slug": "mboxgrep", + "name": "mboxgrep", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62854594" + ] +} diff --git a/data/software/mb/mbpfan.json b/data/software/mb/mbpfan.json new file mode 100644 index 000000000000..972ad1486188 --- /dev/null +++ b/data/software/mb/mbpfan.json @@ -0,0 +1,8 @@ +{ + "slug": "mbpfan", + "name": "mbpfan", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975221" + ] +} diff --git a/data/software/mb/mbrace.json b/data/software/mb/mbrace.json new file mode 100644 index 000000000000..02808a94539c --- /dev/null +++ b/data/software/mb/mbrace.json @@ -0,0 +1,14 @@ +{ + "slug": "mbrace", + "name": "MBrace", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22906806" + ], + "programming_languages": [ + "F#" + ], + "licenses": [ + "Apache License" + ] +} diff --git a/data/software/mc/mc-musiceditor.json b/data/software/mc/mc-musiceditor.json new file mode 100644 index 000000000000..7eebb555f44b --- /dev/null +++ b/data/software/mc/mc-musiceditor.json @@ -0,0 +1,15 @@ +{ + "slug": "mc-musiceditor", + "name": "MC Musiceditor", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115624043" + ], + "release_date": "2010-01-01", + "operating_systems": [ + "Microsoft Windows" + ], + "licenses": [ + "GNU General Public License, version 2.0 or later" + ] +} diff --git a/data/software/mc/mc-wol.json b/data/software/mc/mc-wol.json new file mode 100644 index 000000000000..99063866efd4 --- /dev/null +++ b/data/software/mc/mc-wol.json @@ -0,0 +1,8 @@ +{ + "slug": "mc-wol", + "name": "MC-WOL", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q39193446" + ] +} diff --git a/data/software/mc/mc4j.json b/data/software/mc/mc4j.json new file mode 100644 index 000000000000..fb447e4f7c5e --- /dev/null +++ b/data/software/mc/mc4j.json @@ -0,0 +1,17 @@ +{ + "slug": "mc4j", + "name": "MC4J", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6714810" + ], + "operating_systems": [ + "cross-platform" + ], + "programming_languages": [ + "Java" + ], + "licenses": [ + "Apache License" + ] +} diff --git a/data/software/mc/mcafee-anti-virus.json b/data/software/mc/mcafee-anti-virus.json new file mode 100644 index 000000000000..798f54e2b66f --- /dev/null +++ b/data/software/mc/mcafee-anti-virus.json @@ -0,0 +1,8 @@ +{ + "slug": "mcafee-anti-virus", + "name": "McAfee Anti Virus", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q15834632" + ] +} diff --git a/data/software/mc/mcafee-siteadvisor.json b/data/software/mc/mcafee-siteadvisor.json new file mode 100644 index 000000000000..10f58d98c9ec --- /dev/null +++ b/data/software/mc/mcafee-siteadvisor.json @@ -0,0 +1,11 @@ +{ + "slug": "mcafee-siteadvisor", + "name": "McAfee SiteAdvisor", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1225395" + ], + "developers": [ + "McAfee, LLC" + ] +} diff --git a/data/software/mc/mcafee-stinger.json b/data/software/mc/mcafee-stinger.json new file mode 100644 index 000000000000..b9d1ec0d047d --- /dev/null +++ b/data/software/mc/mcafee-stinger.json @@ -0,0 +1,8 @@ +{ + "slug": "mcafee-stinger", + "name": "McAfee Stinger", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q794551" + ] +} diff --git a/data/software/mc/mcbbs.json b/data/software/mc/mcbbs.json new file mode 100644 index 000000000000..9bef77352a0a --- /dev/null +++ b/data/software/mc/mcbbs.json @@ -0,0 +1,8 @@ +{ + "slug": "mcbbs", + "name": "McBBS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6800019" + ] +} diff --git a/data/software/mc/mcelog.json b/data/software/mc/mcelog.json new file mode 100644 index 000000000000..af6c255bef12 --- /dev/null +++ b/data/software/mc/mcelog.json @@ -0,0 +1,8 @@ +{ + "slug": "mcelog", + "name": "mcelog", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62859126" + ] +} diff --git a/data/software/mc/mchess-pro.json b/data/software/mc/mchess-pro.json new file mode 100644 index 000000000000..39a086326f24 --- /dev/null +++ b/data/software/mc/mchess-pro.json @@ -0,0 +1,8 @@ +{ + "slug": "mchess-pro", + "name": "MChess Pro", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3272825" + ] +} diff --git a/data/software/mc/mcool.json b/data/software/mc/mcool.json new file mode 100644 index 000000000000..85f7d4c2f87b --- /dev/null +++ b/data/software/mc/mcool.json @@ -0,0 +1,8 @@ +{ + "slug": "mcool", + "name": "Mcool", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q24836814" + ] +} diff --git a/data/software/mc/mcp-analytics.json b/data/software/mc/mcp-analytics.json new file mode 100644 index 000000000000..420f56319b5d --- /dev/null +++ b/data/software/mc/mcp-analytics.json @@ -0,0 +1,8 @@ +{ + "slug": "mcp-analytics", + "name": "MCP Analytics", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138720069" + ] +} diff --git a/data/software/mc/mcpsafe.json b/data/software/mc/mcpsafe.json new file mode 100644 index 000000000000..153e025aad12 --- /dev/null +++ b/data/software/mc/mcpsafe.json @@ -0,0 +1,8 @@ +{ + "slug": "mcpsafe", + "name": "MCPSafe", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139785152" + ] +} diff --git a/data/software/mc/mcreator.json b/data/software/mc/mcreator.json new file mode 100644 index 000000000000..50572f3def8c --- /dev/null +++ b/data/software/mc/mcreator.json @@ -0,0 +1,8 @@ +{ + "slug": "mcreator", + "name": "MCreator", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111145400" + ] +} diff --git a/data/software/mc/mcve.json b/data/software/mc/mcve.json new file mode 100644 index 000000000000..0a987c044fc0 --- /dev/null +++ b/data/software/mc/mcve.json @@ -0,0 +1,8 @@ +{ + "slug": "mcve", + "name": "MCVE", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6715013" + ] +} diff --git a/data/software/md/md6sum.json b/data/software/md/md6sum.json new file mode 100644 index 000000000000..a11985d28d21 --- /dev/null +++ b/data/software/md/md6sum.json @@ -0,0 +1,8 @@ +{ + "slug": "md6sum", + "name": "md6sum", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63064897" + ] +} diff --git a/data/software/md/mdds.json b/data/software/md/mdds.json new file mode 100644 index 000000000000..04f06c02d715 --- /dev/null +++ b/data/software/md/mdds.json @@ -0,0 +1,8 @@ +{ + "slug": "mdds", + "name": "mdds", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975222" + ] +} diff --git a/data/software/md/mdiapp.json b/data/software/md/mdiapp.json new file mode 100644 index 000000000000..fcc6f9bd81de --- /dev/null +++ b/data/software/md/mdiapp.json @@ -0,0 +1,8 @@ +{ + "slug": "mdiapp", + "name": "mdiapp", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11232883" + ] +} diff --git a/data/software/md/mdl-chime.json b/data/software/md/mdl-chime.json new file mode 100644 index 000000000000..179e37bb8a96 --- /dev/null +++ b/data/software/md/mdl-chime.json @@ -0,0 +1,14 @@ +{ + "slug": "mdl-chime", + "name": "MDL Chime", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3841255" + ], + "developers": [ + "Symyx Technologies" + ], + "operating_systems": [ + "Classic Mac OS" + ] +} diff --git a/data/software/me/meandmyshadow.json b/data/software/me/meandmyshadow.json new file mode 100644 index 000000000000..886ca8c8e924 --- /dev/null +++ b/data/software/me/meandmyshadow.json @@ -0,0 +1,8 @@ +{ + "slug": "meandmyshadow", + "name": "meandmyshadow", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106101986" + ] +} diff --git a/data/software/me/measure.json b/data/software/me/measure.json new file mode 100644 index 000000000000..0a6dcb8c3c19 --- /dev/null +++ b/data/software/me/measure.json @@ -0,0 +1,15 @@ +{ + "slug": "measure", + "name": "Measure", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q54889403" + ], + "release_date": "2018-01-01", + "developers": [ + "Apple Inc." + ], + "operating_systems": [ + "iOS" + ] +} diff --git a/data/software/me/measurement-studio.json b/data/software/me/measurement-studio.json new file mode 100644 index 000000000000..1be36e15b56d --- /dev/null +++ b/data/software/me/measurement-studio.json @@ -0,0 +1,11 @@ +{ + "slug": "measurement-studio", + "name": "Measurement Studio", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3303809" + ], + "developers": [ + "National Instruments" + ] +} diff --git a/data/software/me/meatspace-chat.json b/data/software/me/meatspace-chat.json new file mode 100644 index 000000000000..0814a4427711 --- /dev/null +++ b/data/software/me/meatspace-chat.json @@ -0,0 +1,15 @@ +{ + "slug": "meatspace-chat", + "name": "Meatspace Chat", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16927727" + ], + "release_date": "2013-05-12", + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [ + "Node.js" + ] +} diff --git a/data/software/me/mechanical-desktop.json b/data/software/me/mechanical-desktop.json new file mode 100644 index 000000000000..b69a0326e972 --- /dev/null +++ b/data/software/me/mechanical-desktop.json @@ -0,0 +1,11 @@ +{ + "slug": "mechanical-desktop", + "name": "Mechanical Desktop", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3303835" + ], + "developers": [ + "Autodesk" + ] +} diff --git a/data/software/me/mechanicalsoup.json b/data/software/me/mechanicalsoup.json new file mode 100644 index 000000000000..9181fbe620a9 --- /dev/null +++ b/data/software/me/mechanicalsoup.json @@ -0,0 +1,11 @@ +{ + "slug": "mechanicalsoup", + "name": "MechanicalSoup", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975223" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/me/medcalc.json b/data/software/me/medcalc.json new file mode 100644 index 000000000000..83f68e4b7fbb --- /dev/null +++ b/data/software/me/medcalc.json @@ -0,0 +1,11 @@ +{ + "slug": "medcalc", + "name": "MedCalc", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4272521" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/me/meddies.json b/data/software/me/meddies.json new file mode 100644 index 000000000000..b0eaebf1910c --- /dev/null +++ b/data/software/me/meddies.json @@ -0,0 +1,8 @@ +{ + "slug": "meddies", + "name": "Meddies", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140047174" + ] +} diff --git a/data/software/me/media-coach.json b/data/software/me/media-coach.json new file mode 100644 index 000000000000..f591c63966b9 --- /dev/null +++ b/data/software/me/media-coach.json @@ -0,0 +1,8 @@ +{ + "slug": "media-coach", + "name": "Media Coach", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6805473" + ] +} diff --git a/data/software/me/media-creation-tool.json b/data/software/me/media-creation-tool.json new file mode 100644 index 000000000000..03b7af57f19e --- /dev/null +++ b/data/software/me/media-creation-tool.json @@ -0,0 +1,11 @@ +{ + "slug": "media-creation-tool", + "name": "Media Creation Tool", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q133842609" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/me/media-share.json b/data/software/me/media-share.json new file mode 100644 index 000000000000..b41b6b19d363 --- /dev/null +++ b/data/software/me/media-share.json @@ -0,0 +1,8 @@ +{ + "slug": "media-share", + "name": "Media Share", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085113" + ] +} diff --git a/data/software/me/mediabot.json b/data/software/me/mediabot.json new file mode 100644 index 000000000000..5af3ec4f5e6b --- /dev/null +++ b/data/software/me/mediabot.json @@ -0,0 +1,8 @@ +{ + "slug": "mediabot", + "name": "Mediabot", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3303966" + ] +} diff --git a/data/software/me/mediacrush-cli.json b/data/software/me/mediacrush-cli.json new file mode 100644 index 000000000000..1c060da077f0 --- /dev/null +++ b/data/software/me/mediacrush-cli.json @@ -0,0 +1,11 @@ +{ + "slug": "mediacrush-cli", + "name": "mediacrush-cli", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975224" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/me/mediahuman-audio-converter.json b/data/software/me/mediahuman-audio-converter.json new file mode 100644 index 000000000000..89d52c5e531f --- /dev/null +++ b/data/software/me/mediahuman-audio-converter.json @@ -0,0 +1,14 @@ +{ + "slug": "mediahuman-audio-converter", + "name": "MediaHuman Audio Converter", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q55263594" + ], + "developers": [ + "MediaHuman" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/me/mediaman.json b/data/software/me/mediaman.json new file mode 100644 index 000000000000..15584cb1705b --- /dev/null +++ b/data/software/me/mediaman.json @@ -0,0 +1,11 @@ +{ + "slug": "mediaman", + "name": "MediaMan", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6805401" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/me/medianalyst.json b/data/software/me/medianalyst.json new file mode 100644 index 000000000000..1b54a788c867 --- /dev/null +++ b/data/software/me/medianalyst.json @@ -0,0 +1,11 @@ +{ + "slug": "medianalyst", + "name": "Medianalyst", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138800711" + ], + "developers": [ + "Mediatech" + ] +} diff --git a/data/software/me/mediathread.json b/data/software/me/mediathread.json new file mode 100644 index 000000000000..f4564624b9dd --- /dev/null +++ b/data/software/me/mediathread.json @@ -0,0 +1,8 @@ +{ + "slug": "mediathread", + "name": "Mediathread", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085114" + ] +} diff --git a/data/software/me/mediawiki-vagrant.json b/data/software/me/mediawiki-vagrant.json new file mode 100644 index 000000000000..fbef0f22630c --- /dev/null +++ b/data/software/me/mediawiki-vagrant.json @@ -0,0 +1,8 @@ +{ + "slug": "mediawiki-vagrant", + "name": "MediaWiki-Vagrant", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q21839573" + ] +} diff --git a/data/software/me/medibang-paint.json b/data/software/me/medibang-paint.json new file mode 100644 index 000000000000..68260c97a368 --- /dev/null +++ b/data/software/me/medibang-paint.json @@ -0,0 +1,8 @@ +{ + "slug": "medibang-paint", + "name": "MediBang Paint", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22127417" + ] +} diff --git a/data/software/me/medibuntu.json b/data/software/me/medibuntu.json new file mode 100644 index 000000000000..a04b4d1ddf10 --- /dev/null +++ b/data/software/me/medibuntu.json @@ -0,0 +1,8 @@ +{ + "slug": "medibuntu", + "name": "Medibuntu", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2457729" + ] +} diff --git a/data/software/me/medical-reality-markup-language.json b/data/software/me/medical-reality-markup-language.json new file mode 100644 index 000000000000..cbf1a12dca00 --- /dev/null +++ b/data/software/me/medical-reality-markup-language.json @@ -0,0 +1,8 @@ +{ + "slug": "medical-reality-markup-language", + "name": "Medical Reality Markup Language", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6806407" + ] +} diff --git a/data/software/me/medtalk.json b/data/software/me/medtalk.json new file mode 100644 index 000000000000..dd5c961cbbc3 --- /dev/null +++ b/data/software/me/medtalk.json @@ -0,0 +1,11 @@ +{ + "slug": "medtalk", + "name": "MedTalk", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139846893" + ], + "developers": [ + "FAZ Australia" + ] +} diff --git a/data/software/me/medusa-q62859271.json b/data/software/me/medusa-q62859271.json new file mode 100644 index 000000000000..8ab0778ee145 --- /dev/null +++ b/data/software/me/medusa-q62859271.json @@ -0,0 +1,8 @@ +{ + "slug": "medusa-q62859271", + "name": "medusa", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62859271" + ] +} diff --git a/data/software/me/medusa.json b/data/software/me/medusa.json new file mode 100644 index 000000000000..6f4bff42a0d0 --- /dev/null +++ b/data/software/me/medusa.json @@ -0,0 +1,8 @@ +{ + "slug": "medusa", + "name": "medusa", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62859256" + ] +} diff --git a/data/software/me/meed.json b/data/software/me/meed.json new file mode 100644 index 000000000000..f160506fbdb8 --- /dev/null +++ b/data/software/me/meed.json @@ -0,0 +1,8 @@ +{ + "slug": "meed", + "name": "meed", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139505369" + ] +} diff --git a/data/software/me/meep.json b/data/software/me/meep.json new file mode 100644 index 000000000000..eaa9102a4c04 --- /dev/null +++ b/data/software/me/meep.json @@ -0,0 +1,8 @@ +{ + "slug": "meep", + "name": "Meep", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125935733" + ] +} diff --git a/data/software/me/meerkat-app.json b/data/software/me/meerkat-app.json new file mode 100644 index 000000000000..3e2f7e68a6a0 --- /dev/null +++ b/data/software/me/meerkat-app.json @@ -0,0 +1,11 @@ +{ + "slug": "meerkat-app", + "name": "Meerkat App", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q19599483" + ], + "operating_systems": [ + "iOS" + ] +} diff --git a/data/software/me/meeting-maker.json b/data/software/me/meeting-maker.json new file mode 100644 index 000000000000..50f638bb9a1d --- /dev/null +++ b/data/software/me/meeting-maker.json @@ -0,0 +1,8 @@ +{ + "slug": "meeting-maker", + "name": "Meeting Maker", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17120794" + ] +} diff --git a/data/software/me/meetro.json b/data/software/me/meetro.json new file mode 100644 index 000000000000..05c9dfa50ced --- /dev/null +++ b/data/software/me/meetro.json @@ -0,0 +1,15 @@ +{ + "slug": "meetro", + "name": "Meetro", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q58518" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/me/megan.json b/data/software/me/megan.json new file mode 100644 index 000000000000..7ce14c3745c8 --- /dev/null +++ b/data/software/me/megan.json @@ -0,0 +1,11 @@ +{ + "slug": "megan", + "name": "MEGAN", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6715329" + ], + "programming_languages": [ + "Java" + ] +} diff --git a/data/software/me/megatools.json b/data/software/me/megatools.json new file mode 100644 index 000000000000..a1a1aca4c71a --- /dev/null +++ b/data/software/me/megatools.json @@ -0,0 +1,8 @@ +{ + "slug": "megatools", + "name": "megatools", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62854564" + ] +} diff --git a/data/software/me/megui.json b/data/software/me/megui.json new file mode 100644 index 000000000000..208bf5504085 --- /dev/null +++ b/data/software/me/megui.json @@ -0,0 +1,11 @@ +{ + "slug": "megui", + "name": "MeGUI", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16529046" + ], + "licenses": [ + "GNU General Public License, version 2.0" + ] +} diff --git a/data/software/me/megurine-luka.json b/data/software/me/megurine-luka.json new file mode 100644 index 000000000000..bb0cd522511d --- /dev/null +++ b/data/software/me/megurine-luka.json @@ -0,0 +1,15 @@ +{ + "slug": "megurine-luka", + "name": "Megurine Luka", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1037133" + ], + "release_date": "2009-01-30", + "developers": [ + "Crypton Future Media" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/me/mehari.json b/data/software/me/mehari.json new file mode 100644 index 000000000000..c1abeb75438c --- /dev/null +++ b/data/software/me/mehari.json @@ -0,0 +1,8 @@ +{ + "slug": "mehari", + "name": "Mehari", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3333666" + ] +} diff --git a/data/software/me/mei-friend-package-for-atom.json b/data/software/me/mei-friend-package-for-atom.json new file mode 100644 index 000000000000..738a7f94b0de --- /dev/null +++ b/data/software/me/mei-friend-package-for-atom.json @@ -0,0 +1,8 @@ +{ + "slug": "mei-friend-package-for-atom", + "name": "MEI-Friend Package for Atom", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085116" + ] +} diff --git a/data/software/me/mei-friend.json b/data/software/me/mei-friend.json new file mode 100644 index 000000000000..d8e0e4401ff5 --- /dev/null +++ b/data/software/me/mei-friend.json @@ -0,0 +1,8 @@ +{ + "slug": "mei-friend", + "name": "MEI Friend", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085115" + ] +} diff --git a/data/software/me/mei-garage.json b/data/software/me/mei-garage.json new file mode 100644 index 000000000000..cef6150783a5 --- /dev/null +++ b/data/software/me/mei-garage.json @@ -0,0 +1,8 @@ +{ + "slug": "mei-garage", + "name": "MEI Garage", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085117" + ] +} diff --git a/data/software/me/meiko.json b/data/software/me/meiko.json new file mode 100644 index 000000000000..78f9ffc0dac7 --- /dev/null +++ b/data/software/me/meiko.json @@ -0,0 +1,15 @@ +{ + "slug": "meiko", + "name": "MEIKO", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q618888" + ], + "release_date": "2004-11-05", + "developers": [ + "Crypton Future Media" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/me/meitei-input-methods.json b/data/software/me/meitei-input-methods.json new file mode 100644 index 000000000000..85914f981779 --- /dev/null +++ b/data/software/me/meitei-input-methods.json @@ -0,0 +1,8 @@ +{ + "slug": "meitei-input-methods", + "name": "Meitei input methods", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113517720" + ] +} diff --git a/data/software/me/meitu-pic.json b/data/software/me/meitu-pic.json new file mode 100644 index 000000000000..aa1d60a05348 --- /dev/null +++ b/data/software/me/meitu-pic.json @@ -0,0 +1,11 @@ +{ + "slug": "meitu-pic", + "name": "Meitu Pic", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q15941362" + ], + "developers": [ + "Meitu" + ] +} diff --git a/data/software/me/melcor.json b/data/software/me/melcor.json new file mode 100644 index 000000000000..49a4c7fc4987 --- /dev/null +++ b/data/software/me/melcor.json @@ -0,0 +1,11 @@ +{ + "slug": "melcor", + "name": "MELCOR", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6715353" + ], + "developers": [ + "Sandia National Laboratories" + ] +} diff --git a/data/software/me/melodyne.json b/data/software/me/melodyne.json new file mode 100644 index 000000000000..df66e0b51708 --- /dev/null +++ b/data/software/me/melodyne.json @@ -0,0 +1,8 @@ +{ + "slug": "melodyne", + "name": "Melodyne", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1919645" + ] +} diff --git a/data/software/me/melting.json b/data/software/me/melting.json new file mode 100644 index 000000000000..a448b8d816fc --- /dev/null +++ b/data/software/me/melting.json @@ -0,0 +1,8 @@ +{ + "slug": "melting", + "name": "Melting", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76185708" + ] +} diff --git a/data/software/me/membershipworks.json b/data/software/me/membershipworks.json new file mode 100644 index 000000000000..2d289f224f45 --- /dev/null +++ b/data/software/me/membershipworks.json @@ -0,0 +1,8 @@ +{ + "slug": "membershipworks", + "name": "MembershipWorks", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107548741" + ] +} diff --git a/data/software/me/meme-suite.json b/data/software/me/meme-suite.json new file mode 100644 index 000000000000..e5ca045c73fb --- /dev/null +++ b/data/software/me/meme-suite.json @@ -0,0 +1,11 @@ +{ + "slug": "meme-suite", + "name": "MEME suite", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6715360" + ], + "developers": [ + "United States National Institutes of Health" + ] +} diff --git a/data/software/me/memnar.json b/data/software/me/memnar.json new file mode 100644 index 000000000000..4fc06484914b --- /dev/null +++ b/data/software/me/memnar.json @@ -0,0 +1,11 @@ +{ + "slug": "memnar", + "name": "Memnar", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140322271" + ], + "developers": [ + "Mission Relearn" + ] +} diff --git a/data/software/me/memopal.json b/data/software/me/memopal.json new file mode 100644 index 000000000000..a3a012d63097 --- /dev/null +++ b/data/software/me/memopal.json @@ -0,0 +1,12 @@ +{ + "slug": "memopal", + "name": "Memopal", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3854370" + ], + "release_date": "2008-04-01", + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/me/memoq.json b/data/software/me/memoq.json new file mode 100644 index 000000000000..cb38e5a32bd7 --- /dev/null +++ b/data/software/me/memoq.json @@ -0,0 +1,11 @@ +{ + "slug": "memoq", + "name": "memoQ", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1920031" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/me/mempool.json b/data/software/me/mempool.json new file mode 100644 index 000000000000..af2a078d5662 --- /dev/null +++ b/data/software/me/mempool.json @@ -0,0 +1,8 @@ +{ + "slug": "mempool", + "name": "MemPool", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76184516" + ] +} diff --git a/data/software/me/memsource.json b/data/software/me/memsource.json new file mode 100644 index 000000000000..7280246574c7 --- /dev/null +++ b/data/software/me/memsource.json @@ -0,0 +1,11 @@ +{ + "slug": "memsource", + "name": "Memsource", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6814172" + ], + "developers": [ + "Memsource" + ] +} diff --git a/data/software/me/memtester.json b/data/software/me/memtester.json new file mode 100644 index 000000000000..411bd8642a1b --- /dev/null +++ b/data/software/me/memtester.json @@ -0,0 +1,8 @@ +{ + "slug": "memtester", + "name": "memtester", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62854324" + ] +} diff --git a/data/software/me/mend-renovate-cli.json b/data/software/me/mend-renovate-cli.json new file mode 100644 index 000000000000..8184d867704e --- /dev/null +++ b/data/software/me/mend-renovate-cli.json @@ -0,0 +1,8 @@ +{ + "slug": "mend-renovate-cli", + "name": "Mend Renovate CLI", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137371768" + ] +} diff --git a/data/software/me/mend-renovate.json b/data/software/me/mend-renovate.json new file mode 100644 index 000000000000..a3928d216f60 --- /dev/null +++ b/data/software/me/mend-renovate.json @@ -0,0 +1,8 @@ +{ + "slug": "mend-renovate", + "name": "Mend Renovate", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137371700" + ] +} diff --git a/data/software/me/mental-ray.json b/data/software/me/mental-ray.json new file mode 100644 index 000000000000..5a865d29f162 --- /dev/null +++ b/data/software/me/mental-ray.json @@ -0,0 +1,11 @@ +{ + "slug": "mental-ray", + "name": "Mental Ray", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q720287" + ], + "developers": [ + "Nvidia" + ] +} diff --git a/data/software/me/menu-blinking.json b/data/software/me/menu-blinking.json new file mode 100644 index 000000000000..792f0fc27cf4 --- /dev/null +++ b/data/software/me/menu-blinking.json @@ -0,0 +1,8 @@ +{ + "slug": "menu-blinking", + "name": "Menu blinking", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16257835" + ] +} diff --git a/data/software/me/mepa.json b/data/software/me/mepa.json new file mode 100644 index 000000000000..db02cf85695f --- /dev/null +++ b/data/software/me/mepa.json @@ -0,0 +1,14 @@ +{ + "slug": "mepa", + "name": "MEPA", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105229751" + ], + "operating_systems": [ + "Microsoft Windows" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/me/merc.json b/data/software/me/merc.json new file mode 100644 index 000000000000..37d787a5565f --- /dev/null +++ b/data/software/me/merc.json @@ -0,0 +1,8 @@ +{ + "slug": "merc", + "name": "Merc", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4043994" + ] +} diff --git a/data/software/me/mercury-browser.json b/data/software/me/mercury-browser.json new file mode 100644 index 000000000000..2f9428c98334 --- /dev/null +++ b/data/software/me/mercury-browser.json @@ -0,0 +1,8 @@ +{ + "slug": "mercury-browser", + "name": "Mercury Browser", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q20714547" + ] +} diff --git a/data/software/me/merge-window.json b/data/software/me/merge-window.json new file mode 100644 index 000000000000..3c2de625dacc --- /dev/null +++ b/data/software/me/merge-window.json @@ -0,0 +1,8 @@ +{ + "slug": "merge-window", + "name": "merge window", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6819098" + ] +} diff --git a/data/software/me/mergelog.json b/data/software/me/mergelog.json new file mode 100644 index 000000000000..0a34633049a1 --- /dev/null +++ b/data/software/me/mergelog.json @@ -0,0 +1,8 @@ +{ + "slug": "mergelog", + "name": "mergelog", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62854316" + ] +} diff --git a/data/software/me/merli.json b/data/software/me/merli.json new file mode 100644 index 000000000000..e1b9c8d60748 --- /dev/null +++ b/data/software/me/merli.json @@ -0,0 +1,12 @@ +{ + "slug": "merli", + "name": "Merli", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25222602" + ], + "release_date": "2013-12-24", + "developers": [ + "Yamaha" + ] +} diff --git a/data/software/me/merlin.json b/data/software/me/merlin.json new file mode 100644 index 000000000000..a6f694a0e357 --- /dev/null +++ b/data/software/me/merlin.json @@ -0,0 +1,8 @@ +{ + "slug": "merlin", + "name": "Merlin", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q173979" + ] +} diff --git a/data/software/me/mesa-progs.json b/data/software/me/mesa-progs.json new file mode 100644 index 000000000000..98180a8675aa --- /dev/null +++ b/data/software/me/mesa-progs.json @@ -0,0 +1,8 @@ +{ + "slug": "mesa-progs", + "name": "mesa-progs", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975225" + ] +} diff --git a/data/software/me/mesa.json b/data/software/me/mesa.json new file mode 100644 index 000000000000..e5c7458f2855 --- /dev/null +++ b/data/software/me/mesa.json @@ -0,0 +1,8 @@ +{ + "slug": "mesa", + "name": "MESA", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q101942191" + ] +} diff --git a/data/software/me/mesamatrix.json b/data/software/me/mesamatrix.json new file mode 100644 index 000000000000..fc856ba592c2 --- /dev/null +++ b/data/software/me/mesamatrix.json @@ -0,0 +1,8 @@ +{ + "slug": "mesamatrix", + "name": "Mesamatrix", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q119443346" + ] +} diff --git a/data/software/me/meshcore.json b/data/software/me/meshcore.json new file mode 100644 index 000000000000..647dca5054a3 --- /dev/null +++ b/data/software/me/meshcore.json @@ -0,0 +1,11 @@ +{ + "slug": "meshcore", + "name": "MeshCore", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134394530" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/me/meshdash.json b/data/software/me/meshdash.json new file mode 100644 index 000000000000..f6b9ffcc0392 --- /dev/null +++ b/data/software/me/meshdash.json @@ -0,0 +1,17 @@ +{ + "slug": "meshdash", + "name": "MeshDash", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139844395" + ], + "operating_systems": [ + "gravitational acceleration" + ], + "programming_languages": [ + "Python" + ], + "licenses": [ + "GNU Lesser General Public License, version 2.1" + ] +} diff --git a/data/software/me/meshinspector.json b/data/software/me/meshinspector.json new file mode 100644 index 000000000000..dd838e68f91d --- /dev/null +++ b/data/software/me/meshinspector.json @@ -0,0 +1,8 @@ +{ + "slug": "meshinspector", + "name": "MeshInspector", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138990072" + ] +} diff --git a/data/software/me/meshlib.json b/data/software/me/meshlib.json new file mode 100644 index 000000000000..ae35621a02ad --- /dev/null +++ b/data/software/me/meshlib.json @@ -0,0 +1,8 @@ +{ + "slug": "meshlib", + "name": "MeshLib", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136450663" + ] +} diff --git a/data/software/me/mesoscale-hydrological-model.json b/data/software/me/mesoscale-hydrological-model.json new file mode 100644 index 000000000000..c75a4ee0fc8d --- /dev/null +++ b/data/software/me/mesoscale-hydrological-model.json @@ -0,0 +1,8 @@ +{ + "slug": "mesoscale-hydrological-model", + "name": "mesoscale Hydrological Model", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120596576" + ] +} diff --git a/data/software/me/mesosphere-inc.json b/data/software/me/mesosphere-inc.json new file mode 100644 index 000000000000..a87e63bcb33b --- /dev/null +++ b/data/software/me/mesosphere-inc.json @@ -0,0 +1,11 @@ +{ + "slug": "mesosphere-inc", + "name": "Mesosphere Inc", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28957027" + ], + "licenses": [ + "Apache License" + ] +} diff --git a/data/software/me/message-exchange-bus-mxb.json b/data/software/me/message-exchange-bus-mxb.json new file mode 100644 index 000000000000..c97c8abf6aa9 --- /dev/null +++ b/data/software/me/message-exchange-bus-mxb.json @@ -0,0 +1,8 @@ +{ + "slug": "message-exchange-bus-mxb", + "name": "Message Exchange Bus (MXB)", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131978406" + ] +} diff --git a/data/software/me/messenger-kids.json b/data/software/me/messenger-kids.json new file mode 100644 index 000000000000..a537faea33bd --- /dev/null +++ b/data/software/me/messenger-kids.json @@ -0,0 +1,18 @@ +{ + "slug": "messenger-kids", + "name": "Messenger Kids", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q54621410" + ], + "developers": [ + "Meta" + ], + "operating_systems": [ + "Amazon Appstore", + "iOS" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/me/messenger-mobile.json b/data/software/me/messenger-mobile.json new file mode 100644 index 000000000000..7afa52723969 --- /dev/null +++ b/data/software/me/messenger-mobile.json @@ -0,0 +1,8 @@ +{ + "slug": "messenger-mobile", + "name": "Messenger Mobile", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3111254" + ] +} diff --git a/data/software/me/meta-spark-studio.json b/data/software/me/meta-spark-studio.json new file mode 100644 index 000000000000..0b6252b27791 --- /dev/null +++ b/data/software/me/meta-spark-studio.json @@ -0,0 +1,15 @@ +{ + "slug": "meta-spark-studio", + "name": "Meta Spark Studio", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107361304" + ], + "developers": [ + "Meta" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/software/me/metadata-facility-for-java.json b/data/software/me/metadata-facility-for-java.json new file mode 100644 index 000000000000..95c90cf66f0f --- /dev/null +++ b/data/software/me/metadata-facility-for-java.json @@ -0,0 +1,8 @@ +{ + "slug": "metadata-facility-for-java", + "name": "Metadata Facility for Java", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6822478" + ] +} diff --git a/data/software/me/metadata-removal-tool.json b/data/software/me/metadata-removal-tool.json new file mode 100644 index 000000000000..4b23aa2d19cc --- /dev/null +++ b/data/software/me/metadata-removal-tool.json @@ -0,0 +1,8 @@ +{ + "slug": "metadata-removal-tool", + "name": "metadata removal tool", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6822481" + ] +} diff --git a/data/software/me/metaedit.json b/data/software/me/metaedit.json new file mode 100644 index 000000000000..55505257a6d8 --- /dev/null +++ b/data/software/me/metaedit.json @@ -0,0 +1,8 @@ +{ + "slug": "metaedit", + "name": "MetaEdit+", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q9369219" + ] +} diff --git a/data/software/me/metafacture.json b/data/software/me/metafacture.json new file mode 100644 index 000000000000..ea8fcbf3d5ad --- /dev/null +++ b/data/software/me/metafacture.json @@ -0,0 +1,8 @@ +{ + "slug": "metafacture", + "name": "Metafacture", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q31158294" + ] +} diff --git a/data/software/me/metagen.json b/data/software/me/metagen.json new file mode 100644 index 000000000000..15913f427375 --- /dev/null +++ b/data/software/me/metagen.json @@ -0,0 +1,8 @@ +{ + "slug": "metagen", + "name": "metagen", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975228" + ] +} diff --git a/data/software/me/metahtml.json b/data/software/me/metahtml.json new file mode 100644 index 000000000000..627291ed58ea --- /dev/null +++ b/data/software/me/metahtml.json @@ -0,0 +1,8 @@ +{ + "slug": "metahtml", + "name": "Metahtml", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76185720" + ] +} diff --git a/data/software/me/metalith.json b/data/software/me/metalith.json new file mode 100644 index 000000000000..a4ce7cde96b4 --- /dev/null +++ b/data/software/me/metalith.json @@ -0,0 +1,14 @@ +{ + "slug": "metalith", + "name": "MetaLith", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4291522" + ], + "operating_systems": [ + "Microsoft Windows" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/me/metalmetric.json b/data/software/me/metalmetric.json new file mode 100644 index 000000000000..8287cf798d81 --- /dev/null +++ b/data/software/me/metalmetric.json @@ -0,0 +1,8 @@ +{ + "slug": "metalmetric", + "name": "MetalMetric", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138634114" + ] +} diff --git a/data/software/me/metapixel.json b/data/software/me/metapixel.json new file mode 100644 index 000000000000..bac72acde5bf --- /dev/null +++ b/data/software/me/metapixel.json @@ -0,0 +1,8 @@ +{ + "slug": "metapixel", + "name": "metapixel", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065025" + ] +} diff --git a/data/software/me/metascape.json b/data/software/me/metascape.json new file mode 100644 index 000000000000..d32e703f168f --- /dev/null +++ b/data/software/me/metascape.json @@ -0,0 +1,14 @@ +{ + "slug": "metascape", + "name": "Metascape", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25304760" + ], + "developers": [ + "GNF" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/me/metashape.json b/data/software/me/metashape.json new file mode 100644 index 000000000000..fc96a1ece338 --- /dev/null +++ b/data/software/me/metashape.json @@ -0,0 +1,11 @@ +{ + "slug": "metashape", + "name": "Metashape", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25052018" + ], + "developers": [ + "Agisoft" + ] +} diff --git a/data/software/me/metasploit.json b/data/software/me/metasploit.json new file mode 100644 index 000000000000..0b4757631946 --- /dev/null +++ b/data/software/me/metasploit.json @@ -0,0 +1,20 @@ +{ + "slug": "metasploit", + "name": "Metasploit", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1147445" + ], + "release_date": "2011-08-01", + "developers": [ + "Rapid7" + ], + "operating_systems": [ + "macOS", + "Unix-like operating system", + "Microsoft Windows" + ], + "licenses": [ + "3-clause BSD License" + ] +} diff --git a/data/software/me/metastock-d-c.json b/data/software/me/metastock-d-c.json new file mode 100644 index 000000000000..d15003756d27 --- /dev/null +++ b/data/software/me/metastock-d-c.json @@ -0,0 +1,11 @@ +{ + "slug": "metastock-d-c", + "name": "MetaStock D/C", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28316531" + ], + "developers": [ + "MetaStock" + ] +} diff --git a/data/software/me/metastock-r-t.json b/data/software/me/metastock-r-t.json new file mode 100644 index 000000000000..a5f91e586525 --- /dev/null +++ b/data/software/me/metastock-r-t.json @@ -0,0 +1,11 @@ +{ + "slug": "metastock-r-t", + "name": "MetaStock R/T", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28316498" + ], + "developers": [ + "MetaStock" + ] +} diff --git a/data/software/me/metastock-xenith.json b/data/software/me/metastock-xenith.json new file mode 100644 index 000000000000..77d8ddff18b9 --- /dev/null +++ b/data/software/me/metastock-xenith.json @@ -0,0 +1,11 @@ +{ + "slug": "metastock-xenith", + "name": "MetaStock XENITH", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28316517" + ], + "developers": [ + "MetaStock" + ] +} diff --git a/data/software/me/metastock.json b/data/software/me/metastock.json new file mode 100644 index 000000000000..dba71216b513 --- /dev/null +++ b/data/software/me/metastock.json @@ -0,0 +1,8 @@ +{ + "slug": "metastock", + "name": "MetaStock", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1268489" + ] +} diff --git a/data/software/me/metateam.json b/data/software/me/metateam.json new file mode 100644 index 000000000000..9ac0a4e3f5ed --- /dev/null +++ b/data/software/me/metateam.json @@ -0,0 +1,8 @@ +{ + "slug": "metateam", + "name": "MetaTeam", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6822291" + ] +} diff --git a/data/software/me/metatexis.json b/data/software/me/metatexis.json new file mode 100644 index 000000000000..84b94c3cf93e --- /dev/null +++ b/data/software/me/metatexis.json @@ -0,0 +1,8 @@ +{ + "slug": "metatexis", + "name": "MetaTexis", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1924651" + ] +} diff --git a/data/software/me/metatron-discovery.json b/data/software/me/metatron-discovery.json new file mode 100644 index 000000000000..aa4f76109682 --- /dev/null +++ b/data/software/me/metatron-discovery.json @@ -0,0 +1,11 @@ +{ + "slug": "metatron-discovery", + "name": "Metatron discovery", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q65533608" + ], + "developers": [ + "SK Telecom" + ] +} diff --git a/data/software/me/metatype1.json b/data/software/me/metatype1.json new file mode 100644 index 000000000000..f53a6d06fe16 --- /dev/null +++ b/data/software/me/metatype1.json @@ -0,0 +1,11 @@ +{ + "slug": "metatype1", + "name": "MetaType1", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6715474" + ], + "developers": [ + "GUST" + ] +} diff --git a/data/software/me/meteodyn-wt.json b/data/software/me/meteodyn-wt.json new file mode 100644 index 000000000000..51e943577520 --- /dev/null +++ b/data/software/me/meteodyn-wt.json @@ -0,0 +1,8 @@ +{ + "slug": "meteodyn-wt", + "name": "Meteodyn WT", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q55641057" + ] +} diff --git a/data/software/me/metigo.json b/data/software/me/metigo.json new file mode 100644 index 000000000000..8afd38e0df46 --- /dev/null +++ b/data/software/me/metigo.json @@ -0,0 +1,8 @@ +{ + "slug": "metigo", + "name": "Metigo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25304422" + ] +} diff --git a/data/software/me/metro.json b/data/software/me/metro.json new file mode 100644 index 000000000000..6aa2230fd03c --- /dev/null +++ b/data/software/me/metro.json @@ -0,0 +1,14 @@ +{ + "slug": "metro", + "name": "Metro", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1148750" + ], + "developers": [ + "Microsoft" + ], + "publishers": [ + "Microsoft" + ] +} diff --git a/data/software/me/mets-page-turner.json b/data/software/me/mets-page-turner.json new file mode 100644 index 000000000000..3f3e793fff48 --- /dev/null +++ b/data/software/me/mets-page-turner.json @@ -0,0 +1,8 @@ +{ + "slug": "mets-page-turner", + "name": "METS Page Turner", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085118" + ] +} diff --git a/data/software/me/metview.json b/data/software/me/metview.json new file mode 100644 index 000000000000..6251fe029d6d --- /dev/null +++ b/data/software/me/metview.json @@ -0,0 +1,8 @@ +{ + "slug": "metview", + "name": "Metview", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q48989159" + ] +} diff --git a/data/software/me/mevislab.json b/data/software/me/mevislab.json new file mode 100644 index 000000000000..9c6344656aa3 --- /dev/null +++ b/data/software/me/mevislab.json @@ -0,0 +1,14 @@ +{ + "slug": "mevislab", + "name": "MeVisLab", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6802909" + ], + "developers": [ + "MeVis Medical Solutions" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/me/mew.json b/data/software/me/mew.json new file mode 100644 index 000000000000..bf699f5bb78d --- /dev/null +++ b/data/software/me/mew.json @@ -0,0 +1,9 @@ +{ + "slug": "mew", + "name": "Mew", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25205722" + ], + "release_date": "2011-09-30" +} diff --git a/data/software/mf/mfem.json b/data/software/mf/mfem.json new file mode 100644 index 000000000000..5071918b440f --- /dev/null +++ b/data/software/mf/mfem.json @@ -0,0 +1,14 @@ +{ + "slug": "mfem", + "name": "MFEM", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60741067" + ], + "developers": [ + "Will E. Pazner", + "Veselin Asenov Dobrev", + "Tzanio V. Kolev", + "Mark L. Stowell" + ] +} diff --git a/data/software/mf/mflow.json b/data/software/mf/mflow.json new file mode 100644 index 000000000000..1cb9bc23b029 --- /dev/null +++ b/data/software/mf/mflow.json @@ -0,0 +1,8 @@ +{ + "slug": "mflow", + "name": "mflow", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6826791" + ] +} diff --git a/data/software/mg/mg-rast.json b/data/software/mg/mg-rast.json new file mode 100644 index 000000000000..8cfaabbd7d15 --- /dev/null +++ b/data/software/mg/mg-rast.json @@ -0,0 +1,8 @@ +{ + "slug": "mg-rast", + "name": "MG-RAST", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17120727" + ] +} diff --git a/data/software/mh/mhonarc.json b/data/software/mh/mhonarc.json new file mode 100644 index 000000000000..3a8d6af9f8de --- /dev/null +++ b/data/software/mh/mhonarc.json @@ -0,0 +1,8 @@ +{ + "slug": "mhonarc", + "name": "MHonArc", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62854244" + ] +} diff --git a/data/software/mh/mhwaveedit.json b/data/software/mh/mhwaveedit.json new file mode 100644 index 000000000000..95b1efd97564 --- /dev/null +++ b/data/software/mh/mhwaveedit.json @@ -0,0 +1,8 @@ +{ + "slug": "mhwaveedit", + "name": "mhWaveEdit", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62854236" + ] +} diff --git a/data/software/mi/miaopai.json b/data/software/mi/miaopai.json new file mode 100644 index 000000000000..ae51d6686bb2 --- /dev/null +++ b/data/software/mi/miaopai.json @@ -0,0 +1,8 @@ +{ + "slug": "miaopai", + "name": "Miaopai", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28136228" + ] +} diff --git a/data/software/mi/miarmy.json b/data/software/mi/miarmy.json new file mode 100644 index 000000000000..b9d34d89052f --- /dev/null +++ b/data/software/mi/miarmy.json @@ -0,0 +1,14 @@ +{ + "slug": "miarmy", + "name": "Miarmy", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q15956013" + ], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [ + "Python" + ] +} diff --git a/data/software/mi/mic-in-track.json b/data/software/mi/mic-in-track.json new file mode 100644 index 000000000000..ee36501e4fb9 --- /dev/null +++ b/data/software/mi/mic-in-track.json @@ -0,0 +1,8 @@ +{ + "slug": "mic-in-track", + "name": "Mic in track", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6827816" + ] +} diff --git a/data/software/mi/micahub.json b/data/software/mi/micahub.json new file mode 100644 index 000000000000..38c1cbc47c15 --- /dev/null +++ b/data/software/mi/micahub.json @@ -0,0 +1,11 @@ +{ + "slug": "micahub", + "name": "Micahub", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139583730" + ], + "developers": [ + "Cointegrity" + ] +} diff --git a/data/software/mi/mickey-s-stickers-stuff-printing-fun-kit.json b/data/software/mi/mickey-s-stickers-stuff-printing-fun-kit.json new file mode 100644 index 000000000000..5bfd8f2e15c0 --- /dev/null +++ b/data/software/mi/mickey-s-stickers-stuff-printing-fun-kit.json @@ -0,0 +1,8 @@ +{ + "slug": "mickey-s-stickers-stuff-printing-fun-kit", + "name": "Mickey's Stickers & Stuff Printing Fun Kit", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138544578" + ] +} diff --git a/data/software/mi/mico.json b/data/software/mi/mico.json new file mode 100644 index 000000000000..5d4ec112c94c --- /dev/null +++ b/data/software/mi/mico.json @@ -0,0 +1,8 @@ +{ + "slug": "mico", + "name": "mico", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60864756" + ] +} diff --git a/data/software/mi/micro-cap.json b/data/software/mi/micro-cap.json new file mode 100644 index 000000000000..d1ca5c170cd0 --- /dev/null +++ b/data/software/mi/micro-cap.json @@ -0,0 +1,11 @@ +{ + "slug": "micro-cap", + "name": "Micro-Cap", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3856940" + ], + "developers": [ + "Spectrum Software" + ] +} diff --git a/data/software/mi/micro-eyeball.json b/data/software/mi/micro-eyeball.json new file mode 100644 index 000000000000..7f7410c24ae3 --- /dev/null +++ b/data/software/mi/micro-eyeball.json @@ -0,0 +1,8 @@ +{ + "slug": "micro-eyeball", + "name": "Micro-EYEBALL", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087829" + ] +} diff --git a/data/software/mi/micro-frontend.json b/data/software/mi/micro-frontend.json new file mode 100644 index 000000000000..aeb13d775905 --- /dev/null +++ b/data/software/mi/micro-frontend.json @@ -0,0 +1,8 @@ +{ + "slug": "micro-frontend", + "name": "Micro frontend", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115088990" + ] +} diff --git a/data/software/mi/micro-ocp.json b/data/software/mi/micro-ocp.json new file mode 100644 index 000000000000..4cfa789c22d5 --- /dev/null +++ b/data/software/mi/micro-ocp.json @@ -0,0 +1,8 @@ +{ + "slug": "micro-ocp", + "name": "Micro-OCP", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087830" + ] +} diff --git a/data/software/mi/micro-prolog.json b/data/software/mi/micro-prolog.json new file mode 100644 index 000000000000..341608994d81 --- /dev/null +++ b/data/software/mi/micro-prolog.json @@ -0,0 +1,8 @@ +{ + "slug": "micro-prolog", + "name": "micro-PROLOG", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6013125" + ] +} diff --git a/data/software/mi/micro-saint-sharp.json b/data/software/mi/micro-saint-sharp.json new file mode 100644 index 000000000000..01a45e9ed17d --- /dev/null +++ b/data/software/mi/micro-saint-sharp.json @@ -0,0 +1,8 @@ +{ + "slug": "micro-saint-sharp", + "name": "Micro Saint Sharp", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q65120274" + ] +} diff --git a/data/software/mi/microalg.json b/data/software/mi/microalg.json new file mode 100644 index 000000000000..18516cf0de8b --- /dev/null +++ b/data/software/mi/microalg.json @@ -0,0 +1,14 @@ +{ + "slug": "microalg", + "name": "Microalg", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105029395" + ], + "programming_languages": [ + "PicoLisp" + ], + "licenses": [ + "GNU General Public License, version 2.0" + ] +} diff --git a/data/software/mi/microb.json b/data/software/mi/microb.json new file mode 100644 index 000000000000..9b765da957d5 --- /dev/null +++ b/data/software/mi/microb.json @@ -0,0 +1,11 @@ +{ + "slug": "microb", + "name": "MicroB", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6839093" + ], + "developers": [ + "Nokia" + ] +} diff --git a/data/software/mi/microc-os-ii.json b/data/software/mi/microc-os-ii.json new file mode 100644 index 000000000000..7ee9706c83a8 --- /dev/null +++ b/data/software/mi/microc-os-ii.json @@ -0,0 +1,8 @@ +{ + "slug": "microc-os-ii", + "name": "MicroC/OS-II", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1140614" + ] +} diff --git a/data/software/mi/microchess.json b/data/software/mi/microchess.json new file mode 100644 index 000000000000..010cac56331d --- /dev/null +++ b/data/software/mi/microchess.json @@ -0,0 +1,12 @@ +{ + "slug": "microchess", + "name": "Microchess", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3312128" + ], + "release_date": "1976-01-01", + "developers": [ + "Peter R Jennings" + ] +} diff --git a/data/software/mi/microemulator.json b/data/software/mi/microemulator.json new file mode 100644 index 000000000000..a697250f4bd8 --- /dev/null +++ b/data/software/mi/microemulator.json @@ -0,0 +1,8 @@ +{ + "slug": "microemulator", + "name": "MicroEmulator", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130050338" + ] +} diff --git a/data/software/mi/micromanager.json b/data/software/mi/micromanager.json new file mode 100644 index 000000000000..34fa2b217363 --- /dev/null +++ b/data/software/mi/micromanager.json @@ -0,0 +1,8 @@ +{ + "slug": "micromanager", + "name": "MicroManager", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113046834" + ] +} diff --git a/data/software/mi/microplanet-gravity.json b/data/software/mi/microplanet-gravity.json new file mode 100644 index 000000000000..ba2046b43008 --- /dev/null +++ b/data/software/mi/microplanet-gravity.json @@ -0,0 +1,11 @@ +{ + "slug": "microplanet-gravity", + "name": "MicroPlanet Gravity", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3312005" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/mi/microplanner-x-pert.json b/data/software/mi/microplanner-x-pert.json new file mode 100644 index 000000000000..19f703ed0e7e --- /dev/null +++ b/data/software/mi/microplanner-x-pert.json @@ -0,0 +1,11 @@ +{ + "slug": "microplanner-x-pert", + "name": "MicroPlanner X-Pert", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6839124" + ], + "licenses": [ + "end-user license agreement" + ] +} diff --git a/data/software/mi/microsiris.json b/data/software/mi/microsiris.json new file mode 100644 index 000000000000..2f152d4859b6 --- /dev/null +++ b/data/software/mi/microsiris.json @@ -0,0 +1,8 @@ +{ + "slug": "microsiris", + "name": "MicrOsiris", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087831" + ] +} diff --git a/data/software/mi/microsoft-access-2007.json b/data/software/mi/microsoft-access-2007.json new file mode 100644 index 000000000000..5a6cdc4c618b --- /dev/null +++ b/data/software/mi/microsoft-access-2007.json @@ -0,0 +1,12 @@ +{ + "slug": "microsoft-access-2007", + "name": "Microsoft Access 2007", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q46049725" + ], + "release_date": "2007-01-30", + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/mi/microsoft-adcenter-analytics.json b/data/software/mi/microsoft-adcenter-analytics.json new file mode 100644 index 000000000000..5694a5983ed8 --- /dev/null +++ b/data/software/mi/microsoft-adcenter-analytics.json @@ -0,0 +1,8 @@ +{ + "slug": "microsoft-adcenter-analytics", + "name": "Microsoft adCenter Analytics", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6840265" + ] +} diff --git a/data/software/mi/microsoft-agent.json b/data/software/mi/microsoft-agent.json new file mode 100644 index 000000000000..fb2047102786 --- /dev/null +++ b/data/software/mi/microsoft-agent.json @@ -0,0 +1,11 @@ +{ + "slug": "microsoft-agent", + "name": "Microsoft Agent", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2456893" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/mi/microsoft-amalga.json b/data/software/mi/microsoft-amalga.json new file mode 100644 index 000000000000..22ee612f8be3 --- /dev/null +++ b/data/software/mi/microsoft-amalga.json @@ -0,0 +1,11 @@ +{ + "slug": "microsoft-amalga", + "name": "Microsoft Amalga", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6840084" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/mi/microsoft-analysis-services.json b/data/software/mi/microsoft-analysis-services.json new file mode 100644 index 000000000000..a920a08f9c26 --- /dev/null +++ b/data/software/mi/microsoft-analysis-services.json @@ -0,0 +1,14 @@ +{ + "slug": "microsoft-analysis-services", + "name": "Microsoft Analysis Services", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2067216" + ], + "developers": [ + "Microsoft" + ], + "licenses": [ + "end-user license agreement" + ] +} diff --git a/data/software/mi/microsoft-app-v.json b/data/software/mi/microsoft-app-v.json new file mode 100644 index 000000000000..108edbce1374 --- /dev/null +++ b/data/software/mi/microsoft-app-v.json @@ -0,0 +1,8 @@ +{ + "slug": "microsoft-app-v", + "name": "Microsoft App-V", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1665339" + ] +} diff --git a/data/software/mi/microsoft-authenticator.json b/data/software/mi/microsoft-authenticator.json new file mode 100644 index 000000000000..a8626c8d3887 --- /dev/null +++ b/data/software/mi/microsoft-authenticator.json @@ -0,0 +1,14 @@ +{ + "slug": "microsoft-authenticator", + "name": "Microsoft Authenticator", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q83424743" + ], + "developers": [ + "Microsoft" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/mi/microsoft-autoroute.json b/data/software/mi/microsoft-autoroute.json new file mode 100644 index 000000000000..85e29ffaa759 --- /dev/null +++ b/data/software/mi/microsoft-autoroute.json @@ -0,0 +1,11 @@ +{ + "slug": "microsoft-autoroute", + "name": "Microsoft AutoRoute", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q905675" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/mi/microsoft-azure-quantum.json b/data/software/mi/microsoft-azure-quantum.json new file mode 100644 index 000000000000..956af2d4b639 --- /dev/null +++ b/data/software/mi/microsoft-azure-quantum.json @@ -0,0 +1,8 @@ +{ + "slug": "microsoft-azure-quantum", + "name": "Microsoft Azure Quantum", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130617659" + ] +} diff --git a/data/software/mi/microsoft-azure-sql-database.json b/data/software/mi/microsoft-azure-sql-database.json new file mode 100644 index 000000000000..a22b9f278330 --- /dev/null +++ b/data/software/mi/microsoft-azure-sql-database.json @@ -0,0 +1,11 @@ +{ + "slug": "microsoft-azure-sql-database", + "name": "Microsoft Azure SQL Database", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1187310" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/mi/microsoft-backoffice-server.json b/data/software/mi/microsoft-backoffice-server.json new file mode 100644 index 000000000000..b6a383cb8a5f --- /dev/null +++ b/data/software/mi/microsoft-backoffice-server.json @@ -0,0 +1,11 @@ +{ + "slug": "microsoft-backoffice-server", + "name": "Microsoft BackOffice Server", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q239547" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/mi/microsoft-baseline-security-analyzer.json b/data/software/mi/microsoft-baseline-security-analyzer.json new file mode 100644 index 000000000000..845fe649ab75 --- /dev/null +++ b/data/software/mi/microsoft-baseline-security-analyzer.json @@ -0,0 +1,17 @@ +{ + "slug": "microsoft-baseline-security-analyzer", + "name": "Microsoft Baseline Security Analyzer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1424053" + ], + "developers": [ + "Microsoft" + ], + "operating_systems": [ + "Windows 7" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/mi/microsoft-basic-1-0.json b/data/software/mi/microsoft-basic-1-0.json new file mode 100644 index 000000000000..de95bdef11b7 --- /dev/null +++ b/data/software/mi/microsoft-basic-1-0.json @@ -0,0 +1,8 @@ +{ + "slug": "microsoft-basic-1-0", + "name": "Microsoft Basic 1.0", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2876700" + ] +} diff --git a/data/software/mi/microsoft-biztalk-server.json b/data/software/mi/microsoft-biztalk-server.json new file mode 100644 index 000000000000..2796a1770962 --- /dev/null +++ b/data/software/mi/microsoft-biztalk-server.json @@ -0,0 +1,14 @@ +{ + "slug": "microsoft-biztalk-server", + "name": "Microsoft BizTalk Server", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q904150" + ], + "developers": [ + "Microsoft" + ], + "operating_systems": [ + "Windows Server 2016" + ] +} diff --git a/data/software/mi/microsoft-bookshelf.json b/data/software/mi/microsoft-bookshelf.json new file mode 100644 index 000000000000..13dfb03b0a4b --- /dev/null +++ b/data/software/mi/microsoft-bookshelf.json @@ -0,0 +1,11 @@ +{ + "slug": "microsoft-bookshelf", + "name": "Microsoft Bookshelf", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1635949" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/mi/microsoft-bopomofo-ime.json b/data/software/mi/microsoft-bopomofo-ime.json new file mode 100644 index 000000000000..113fce876956 --- /dev/null +++ b/data/software/mi/microsoft-bopomofo-ime.json @@ -0,0 +1,11 @@ +{ + "slug": "microsoft-bopomofo-ime", + "name": "Microsoft BoPoMoFo IME", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q86956832" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/mi/microsoft-clarity.json b/data/software/mi/microsoft-clarity.json new file mode 100644 index 000000000000..c4a40fcc2d5a --- /dev/null +++ b/data/software/mi/microsoft-clarity.json @@ -0,0 +1,11 @@ +{ + "slug": "microsoft-clarity", + "name": "Microsoft Clarity", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107673229" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/mi/microsoft-commerce-server.json b/data/software/mi/microsoft-commerce-server.json new file mode 100644 index 000000000000..0f28f91e4232 --- /dev/null +++ b/data/software/mi/microsoft-commerce-server.json @@ -0,0 +1,11 @@ +{ + "slug": "microsoft-commerce-server", + "name": "Microsoft Commerce Server", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3312374" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/mi/microsoft-cryptoapi.json b/data/software/mi/microsoft-cryptoapi.json new file mode 100644 index 000000000000..90851f130b98 --- /dev/null +++ b/data/software/mi/microsoft-cryptoapi.json @@ -0,0 +1,8 @@ +{ + "slug": "microsoft-cryptoapi", + "name": "Microsoft CryptoAPI", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1142291" + ] +} diff --git a/data/software/mi/microsoft-customer-care-framework.json b/data/software/mi/microsoft-customer-care-framework.json new file mode 100644 index 000000000000..f7af690689d8 --- /dev/null +++ b/data/software/mi/microsoft-customer-care-framework.json @@ -0,0 +1,11 @@ +{ + "slug": "microsoft-customer-care-framework", + "name": "Microsoft Customer Care Framework", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3699758" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/mi/microsoft-data-access-components.json b/data/software/mi/microsoft-data-access-components.json new file mode 100644 index 000000000000..2af6c5285092 --- /dev/null +++ b/data/software/mi/microsoft-data-access-components.json @@ -0,0 +1,11 @@ +{ + "slug": "microsoft-data-access-components", + "name": "Microsoft Data Access Components", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2361252" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/mi/microsoft-delve.json b/data/software/mi/microsoft-delve.json new file mode 100644 index 000000000000..d3a1a34278ab --- /dev/null +++ b/data/software/mi/microsoft-delve.json @@ -0,0 +1,11 @@ +{ + "slug": "microsoft-delve", + "name": "Microsoft Delve", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18154811" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/mi/microsoft-diagnostics.json b/data/software/mi/microsoft-diagnostics.json new file mode 100644 index 000000000000..bba85cbde9a4 --- /dev/null +++ b/data/software/mi/microsoft-diagnostics.json @@ -0,0 +1,8 @@ +{ + "slug": "microsoft-diagnostics", + "name": "Microsoft Diagnostics", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6840113" + ] +} diff --git a/data/software/mi/microsoft-digital-image.json b/data/software/mi/microsoft-digital-image.json new file mode 100644 index 000000000000..101f7d961465 --- /dev/null +++ b/data/software/mi/microsoft-digital-image.json @@ -0,0 +1,14 @@ +{ + "slug": "microsoft-digital-image", + "name": "Microsoft Digital Image", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q455296" + ], + "developers": [ + "Microsoft" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/mi/microsoft-download-manager.json b/data/software/mi/microsoft-download-manager.json new file mode 100644 index 000000000000..78092b9505fc --- /dev/null +++ b/data/software/mi/microsoft-download-manager.json @@ -0,0 +1,12 @@ +{ + "slug": "microsoft-download-manager", + "name": "Microsoft Download Manager", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q19599488" + ], + "operating_systems": [ + "Windows Server 2008", + "Windows 7" + ] +} diff --git a/data/software/mi/microsoft-dynamics-365-business-central.json b/data/software/mi/microsoft-dynamics-365-business-central.json new file mode 100644 index 000000000000..076d52a64db1 --- /dev/null +++ b/data/software/mi/microsoft-dynamics-365-business-central.json @@ -0,0 +1,11 @@ +{ + "slug": "microsoft-dynamics-365-business-central", + "name": "Microsoft Dynamics 365 Business Central", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q58883729" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/mi/microsoft-dynamics-365-finance.json b/data/software/mi/microsoft-dynamics-365-finance.json new file mode 100644 index 000000000000..3c6a6d4bdaa9 --- /dev/null +++ b/data/software/mi/microsoft-dynamics-365-finance.json @@ -0,0 +1,12 @@ +{ + "slug": "microsoft-dynamics-365-finance", + "name": "Microsoft Dynamics 365 Finance", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135228282" + ], + "release_date": "2016-11-01", + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/mi/microsoft-dynamics-365-for-finance-and-operations.json b/data/software/mi/microsoft-dynamics-365-for-finance-and-operations.json new file mode 100644 index 000000000000..f964ad4b7468 --- /dev/null +++ b/data/software/mi/microsoft-dynamics-365-for-finance-and-operations.json @@ -0,0 +1,11 @@ +{ + "slug": "microsoft-dynamics-365-for-finance-and-operations", + "name": "Microsoft Dynamics 365 for Finance and Operations", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q30058780" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/mi/microsoft-dynamics-365-sales.json b/data/software/mi/microsoft-dynamics-365-sales.json new file mode 100644 index 000000000000..6e3273126e13 --- /dev/null +++ b/data/software/mi/microsoft-dynamics-365-sales.json @@ -0,0 +1,11 @@ +{ + "slug": "microsoft-dynamics-365-sales", + "name": "Microsoft Dynamics 365 Sales", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1568337" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/mi/microsoft-dynamics-365.json b/data/software/mi/microsoft-dynamics-365.json new file mode 100644 index 000000000000..c940784694ce --- /dev/null +++ b/data/software/mi/microsoft-dynamics-365.json @@ -0,0 +1,12 @@ +{ + "slug": "microsoft-dynamics-365", + "name": "Microsoft Dynamics 365", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q27556059" + ], + "release_date": "2016-11-01", + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/mi/microsoft-dynamics-ax.json b/data/software/mi/microsoft-dynamics-ax.json new file mode 100644 index 000000000000..f6dab1d0a525 --- /dev/null +++ b/data/software/mi/microsoft-dynamics-ax.json @@ -0,0 +1,11 @@ +{ + "slug": "microsoft-dynamics-ax", + "name": "Microsoft Dynamics AX", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q675860" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/mi/microsoft-dynamics-c5.json b/data/software/mi/microsoft-dynamics-c5.json new file mode 100644 index 000000000000..33389d073dfe --- /dev/null +++ b/data/software/mi/microsoft-dynamics-c5.json @@ -0,0 +1,14 @@ +{ + "slug": "microsoft-dynamics-c5", + "name": "Microsoft Dynamics C5", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6840121" + ], + "developers": [ + "Microsoft" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/mi/microsoft-dynamics-gp.json b/data/software/mi/microsoft-dynamics-gp.json new file mode 100644 index 000000000000..f09856aa61d0 --- /dev/null +++ b/data/software/mi/microsoft-dynamics-gp.json @@ -0,0 +1,11 @@ +{ + "slug": "microsoft-dynamics-gp", + "name": "Microsoft Dynamics GP", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1170618" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/mi/microsoft-dynamics-nav.json b/data/software/mi/microsoft-dynamics-nav.json new file mode 100644 index 000000000000..125d509fd778 --- /dev/null +++ b/data/software/mi/microsoft-dynamics-nav.json @@ -0,0 +1,14 @@ +{ + "slug": "microsoft-dynamics-nav", + "name": "Microsoft Dynamics NAV", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q904533" + ], + "developers": [ + "Microsoft" + ], + "operating_systems": [ + "Windows Server 2008" + ] +} diff --git a/data/software/mi/microsoft-dynamics-sl.json b/data/software/mi/microsoft-dynamics-sl.json new file mode 100644 index 000000000000..2371c085b349 --- /dev/null +++ b/data/software/mi/microsoft-dynamics-sl.json @@ -0,0 +1,11 @@ +{ + "slug": "microsoft-dynamics-sl", + "name": "Microsoft Dynamics SL", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17048674" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/mi/microsoft-encarta-98-research-organizer.json b/data/software/mi/microsoft-encarta-98-research-organizer.json new file mode 100644 index 000000000000..8fc326ba923c --- /dev/null +++ b/data/software/mi/microsoft-encarta-98-research-organizer.json @@ -0,0 +1,9 @@ +{ + "slug": "microsoft-encarta-98-research-organizer", + "name": "Microsoft Encarta 98 Research Organizer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122149090" + ], + "release_date": "1997-01-01" +} diff --git a/data/software/mi/microsoft-endpoint-manager.json b/data/software/mi/microsoft-endpoint-manager.json new file mode 100644 index 000000000000..bc69e746d6a2 --- /dev/null +++ b/data/software/mi/microsoft-endpoint-manager.json @@ -0,0 +1,8 @@ +{ + "slug": "microsoft-endpoint-manager", + "name": "Microsoft Endpoint Manager", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109107698" + ] +} diff --git a/data/software/mi/microsoft-entourage.json b/data/software/mi/microsoft-entourage.json new file mode 100644 index 000000000000..35b468be6d21 --- /dev/null +++ b/data/software/mi/microsoft-entourage.json @@ -0,0 +1,14 @@ +{ + "slug": "microsoft-entourage", + "name": "Microsoft Entourage", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2104904" + ], + "developers": [ + "Microsoft" + ], + "operating_systems": [ + "Mac OS 8" + ] +} diff --git a/data/software/mi/microsoft-excel-for-macintosh-and-power-macintosh-5-0.json b/data/software/mi/microsoft-excel-for-macintosh-and-power-macintosh-5-0.json new file mode 100644 index 000000000000..c65f4b94e11e --- /dev/null +++ b/data/software/mi/microsoft-excel-for-macintosh-and-power-macintosh-5-0.json @@ -0,0 +1,11 @@ +{ + "slug": "microsoft-excel-for-macintosh-and-power-macintosh-5-0", + "name": "Microsoft Excel for Macintosh and Power Macintosh 5.0", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28861746" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/mi/microsoft-excel-viewer.json b/data/software/mi/microsoft-excel-viewer.json new file mode 100644 index 000000000000..bbeaf4652df4 --- /dev/null +++ b/data/software/mi/microsoft-excel-viewer.json @@ -0,0 +1,11 @@ +{ + "slug": "microsoft-excel-viewer", + "name": "Microsoft Excel Viewer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1651968" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/mi/microsoft-exchange-server-2000.json b/data/software/mi/microsoft-exchange-server-2000.json new file mode 100644 index 000000000000..ec6d582a8198 --- /dev/null +++ b/data/software/mi/microsoft-exchange-server-2000.json @@ -0,0 +1,11 @@ +{ + "slug": "microsoft-exchange-server-2000", + "name": "Microsoft Exchange Server 2000", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115117144" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/mi/microsoft-exchange-server-2003.json b/data/software/mi/microsoft-exchange-server-2003.json new file mode 100644 index 000000000000..ca294b12a5d9 --- /dev/null +++ b/data/software/mi/microsoft-exchange-server-2003.json @@ -0,0 +1,11 @@ +{ + "slug": "microsoft-exchange-server-2003", + "name": "Microsoft Exchange Server 2003", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115117155" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/mi/microsoft-exchange-server-2007.json b/data/software/mi/microsoft-exchange-server-2007.json new file mode 100644 index 000000000000..8925c05da29a --- /dev/null +++ b/data/software/mi/microsoft-exchange-server-2007.json @@ -0,0 +1,11 @@ +{ + "slug": "microsoft-exchange-server-2007", + "name": "Microsoft Exchange Server 2007", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115117173" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/mi/microsoft-exchange-server-2010.json b/data/software/mi/microsoft-exchange-server-2010.json new file mode 100644 index 000000000000..d13308297f78 --- /dev/null +++ b/data/software/mi/microsoft-exchange-server-2010.json @@ -0,0 +1,11 @@ +{ + "slug": "microsoft-exchange-server-2010", + "name": "Microsoft Exchange Server 2010", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115117186" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/mi/microsoft-exchange-server-4-0.json b/data/software/mi/microsoft-exchange-server-4-0.json new file mode 100644 index 000000000000..860dbbe3de98 --- /dev/null +++ b/data/software/mi/microsoft-exchange-server-4-0.json @@ -0,0 +1,11 @@ +{ + "slug": "microsoft-exchange-server-4-0", + "name": "Microsoft Exchange Server 4.0", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115117160" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/mi/microsoft-exchange-server-5-5.json b/data/software/mi/microsoft-exchange-server-5-5.json new file mode 100644 index 000000000000..12480252e344 --- /dev/null +++ b/data/software/mi/microsoft-exchange-server-5-5.json @@ -0,0 +1,11 @@ +{ + "slug": "microsoft-exchange-server-5-5", + "name": "Microsoft Exchange Server 5.5", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115117123" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/mi/microsoft-expression-blend.json b/data/software/mi/microsoft-expression-blend.json new file mode 100644 index 000000000000..43bfa7471254 --- /dev/null +++ b/data/software/mi/microsoft-expression-blend.json @@ -0,0 +1,14 @@ +{ + "slug": "microsoft-expression-blend", + "name": "Microsoft Expression Blend", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q594763" + ], + "developers": [ + "Microsoft" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/mi/microsoft-expression-encoder.json b/data/software/mi/microsoft-expression-encoder.json new file mode 100644 index 000000000000..0f5d5224c954 --- /dev/null +++ b/data/software/mi/microsoft-expression-encoder.json @@ -0,0 +1,11 @@ +{ + "slug": "microsoft-expression-encoder", + "name": "Microsoft Expression Encoder", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q930907" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/mi/microsoft-expression-web.json b/data/software/mi/microsoft-expression-web.json new file mode 100644 index 000000000000..b1d6acf7dd53 --- /dev/null +++ b/data/software/mi/microsoft-expression-web.json @@ -0,0 +1,14 @@ +{ + "slug": "microsoft-expression-web", + "name": "Microsoft Expression Web", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1417729" + ], + "developers": [ + "Microsoft" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/mi/microsoft-family-safety.json b/data/software/mi/microsoft-family-safety.json new file mode 100644 index 000000000000..d6ccfa258a97 --- /dev/null +++ b/data/software/mi/microsoft-family-safety.json @@ -0,0 +1,11 @@ +{ + "slug": "microsoft-family-safety", + "name": "Microsoft Family Safety", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2018814" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/mi/microsoft-forefront-unified-access-gateway.json b/data/software/mi/microsoft-forefront-unified-access-gateway.json new file mode 100644 index 000000000000..9d139392675c --- /dev/null +++ b/data/software/mi/microsoft-forefront-unified-access-gateway.json @@ -0,0 +1,11 @@ +{ + "slug": "microsoft-forefront-unified-access-gateway", + "name": "Microsoft Forefront Unified Access Gateway", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3312380" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/mi/microsoft-fresh-paint.json b/data/software/mi/microsoft-fresh-paint.json new file mode 100644 index 000000000000..9a818c94ff3b --- /dev/null +++ b/data/software/mi/microsoft-fresh-paint.json @@ -0,0 +1,11 @@ +{ + "slug": "microsoft-fresh-paint", + "name": "Microsoft Fresh Paint", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6840135" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/mi/microsoft-frontpage-2000.json b/data/software/mi/microsoft-frontpage-2000.json new file mode 100644 index 000000000000..46b32f8bed0c --- /dev/null +++ b/data/software/mi/microsoft-frontpage-2000.json @@ -0,0 +1,12 @@ +{ + "slug": "microsoft-frontpage-2000", + "name": "Microsoft FrontPage 2000", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115117124" + ], + "release_date": "1999-01-01", + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/mi/microsoft-frontpage-98.json b/data/software/mi/microsoft-frontpage-98.json new file mode 100644 index 000000000000..c84f42810e8e --- /dev/null +++ b/data/software/mi/microsoft-frontpage-98.json @@ -0,0 +1,12 @@ +{ + "slug": "microsoft-frontpage-98", + "name": "Microsoft FrontPage 98", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115117113" + ], + "release_date": "1997-01-01", + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/mi/microsoft-healthvault.json b/data/software/mi/microsoft-healthvault.json new file mode 100644 index 000000000000..2485e85a4c1d --- /dev/null +++ b/data/software/mi/microsoft-healthvault.json @@ -0,0 +1,14 @@ +{ + "slug": "microsoft-healthvault", + "name": "Microsoft HealthVault", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2006475" + ], + "developers": [ + "Microsoft" + ], + "genres": [ + "personal health record" + ] +} diff --git a/data/software/mi/microsoft-help-viewer.json b/data/software/mi/microsoft-help-viewer.json new file mode 100644 index 000000000000..3bab4a78c797 --- /dev/null +++ b/data/software/mi/microsoft-help-viewer.json @@ -0,0 +1,11 @@ +{ + "slug": "microsoft-help-viewer", + "name": "Microsoft Help Viewer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6840139" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/mi/microsoft-home.json b/data/software/mi/microsoft-home.json new file mode 100644 index 000000000000..6ae58bdc354c --- /dev/null +++ b/data/software/mi/microsoft-home.json @@ -0,0 +1,8 @@ +{ + "slug": "microsoft-home", + "name": "Microsoft Home", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q641579" + ] +} diff --git a/data/software/mi/microsoft-identity-integration-server.json b/data/software/mi/microsoft-identity-integration-server.json new file mode 100644 index 000000000000..9797feae296d --- /dev/null +++ b/data/software/mi/microsoft-identity-integration-server.json @@ -0,0 +1,8 @@ +{ + "slug": "microsoft-identity-integration-server", + "name": "Microsoft Identity Integration Server", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q519915" + ] +} diff --git a/data/software/mi/microsoft-ime.json b/data/software/mi/microsoft-ime.json new file mode 100644 index 000000000000..7cc841dc9bdf --- /dev/null +++ b/data/software/mi/microsoft-ime.json @@ -0,0 +1,14 @@ +{ + "slug": "microsoft-ime", + "name": "Microsoft IME", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4476193" + ], + "developers": [ + "Microsoft" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/mi/microsoft-indic-language-input-tool.json b/data/software/mi/microsoft-indic-language-input-tool.json new file mode 100644 index 000000000000..87fd58c5a5e2 --- /dev/null +++ b/data/software/mi/microsoft-indic-language-input-tool.json @@ -0,0 +1,11 @@ +{ + "slug": "microsoft-indic-language-input-tool", + "name": "Microsoft Indic Language Input Tool", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6840146" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/mi/microsoft-interconnect.json b/data/software/mi/microsoft-interconnect.json new file mode 100644 index 000000000000..35faf8e674c7 --- /dev/null +++ b/data/software/mi/microsoft-interconnect.json @@ -0,0 +1,11 @@ +{ + "slug": "microsoft-interconnect", + "name": "Microsoft InterConnect", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1041170" + ], + "developers": [ + "Microsoft Japan" + ] +} diff --git a/data/software/mi/microsoft-internet-security-and-acceleration-server.json b/data/software/mi/microsoft-internet-security-and-acceleration-server.json new file mode 100644 index 000000000000..7ac5628837d3 --- /dev/null +++ b/data/software/mi/microsoft-internet-security-and-acceleration-server.json @@ -0,0 +1,11 @@ +{ + "slug": "microsoft-internet-security-and-acceleration-server", + "name": "Microsoft Internet Security and Acceleration Server", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106307477" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/mi/microsoft-intune.json b/data/software/mi/microsoft-intune.json new file mode 100644 index 000000000000..3f0c4f74ffc2 --- /dev/null +++ b/data/software/mi/microsoft-intune.json @@ -0,0 +1,11 @@ +{ + "slug": "microsoft-intune", + "name": "Microsoft Intune", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1931640" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/mi/microsoft-kaizala.json b/data/software/mi/microsoft-kaizala.json new file mode 100644 index 000000000000..ec1cac2c95b5 --- /dev/null +++ b/data/software/mi/microsoft-kaizala.json @@ -0,0 +1,8 @@ +{ + "slug": "microsoft-kaizala", + "name": "Microsoft Kaizala", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q65241190" + ] +} diff --git a/data/software/mi/microsoft-keyboard-layout-creator.json b/data/software/mi/microsoft-keyboard-layout-creator.json new file mode 100644 index 000000000000..3c80c63850c8 --- /dev/null +++ b/data/software/mi/microsoft-keyboard-layout-creator.json @@ -0,0 +1,11 @@ +{ + "slug": "microsoft-keyboard-layout-creator", + "name": "Microsoft Keyboard Layout Creator", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4044227" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/mi/microsoft-layer-for-unicode.json b/data/software/mi/microsoft-layer-for-unicode.json new file mode 100644 index 000000000000..a4d05da5b58f --- /dev/null +++ b/data/software/mi/microsoft-layer-for-unicode.json @@ -0,0 +1,11 @@ +{ + "slug": "microsoft-layer-for-unicode", + "name": "Microsoft Layer for Unicode", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3312382" + ], + "operating_systems": [ + "Windows 9x" + ] +} diff --git a/data/software/mi/microsoft-live-labs-deepfish.json b/data/software/mi/microsoft-live-labs-deepfish.json new file mode 100644 index 000000000000..51d15d8d4d6c --- /dev/null +++ b/data/software/mi/microsoft-live-labs-deepfish.json @@ -0,0 +1,11 @@ +{ + "slug": "microsoft-live-labs-deepfish", + "name": "Microsoft Live Labs Deepfish", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6840159" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/mi/microsoft-live-labs-listas.json b/data/software/mi/microsoft-live-labs-listas.json new file mode 100644 index 000000000000..9821ed66a1e2 --- /dev/null +++ b/data/software/mi/microsoft-live-labs-listas.json @@ -0,0 +1,11 @@ +{ + "slug": "microsoft-live-labs-listas", + "name": "Microsoft Live Labs Listas", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6840160" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/mi/microsoft-live-labs-pivot.json b/data/software/mi/microsoft-live-labs-pivot.json new file mode 100644 index 000000000000..34f93394bd6b --- /dev/null +++ b/data/software/mi/microsoft-live-labs-pivot.json @@ -0,0 +1,8 @@ +{ + "slug": "microsoft-live-labs-pivot", + "name": "Microsoft Live Labs Pivot", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3312392" + ] +} diff --git a/data/software/mi/microsoft-loop.json b/data/software/mi/microsoft-loop.json new file mode 100644 index 000000000000..2a538f8b673d --- /dev/null +++ b/data/software/mi/microsoft-loop.json @@ -0,0 +1,11 @@ +{ + "slug": "microsoft-loop", + "name": "Microsoft Loop", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109620998" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/mi/microsoft-mail.json b/data/software/mi/microsoft-mail.json new file mode 100644 index 000000000000..dc891932f832 --- /dev/null +++ b/data/software/mi/microsoft-mail.json @@ -0,0 +1,14 @@ +{ + "slug": "microsoft-mail", + "name": "Microsoft Mail", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6840172" + ], + "developers": [ + "Microsoft" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/mi/microsoft-mappoint-2000.json b/data/software/mi/microsoft-mappoint-2000.json new file mode 100644 index 000000000000..03773c6a3b04 --- /dev/null +++ b/data/software/mi/microsoft-mappoint-2000.json @@ -0,0 +1,12 @@ +{ + "slug": "microsoft-mappoint-2000", + "name": "Microsoft MapPoint 2000", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q64763208" + ], + "release_date": "1999-06-10", + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/mi/microsoft-mappoint.json b/data/software/mi/microsoft-mappoint.json new file mode 100644 index 000000000000..767fe3fc41ec --- /dev/null +++ b/data/software/mi/microsoft-mappoint.json @@ -0,0 +1,11 @@ +{ + "slug": "microsoft-mappoint", + "name": "Microsoft MapPoint", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1853389" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/mi/microsoft-math-solver.json b/data/software/mi/microsoft-math-solver.json new file mode 100644 index 000000000000..2183714ccb5a --- /dev/null +++ b/data/software/mi/microsoft-math-solver.json @@ -0,0 +1,14 @@ +{ + "slug": "microsoft-math-solver", + "name": "Microsoft Math Solver", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1995050" + ], + "developers": [ + "Microsoft" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/mi/microsoft-max.json b/data/software/mi/microsoft-max.json new file mode 100644 index 000000000000..a07c37d0658f --- /dev/null +++ b/data/software/mi/microsoft-max.json @@ -0,0 +1,11 @@ +{ + "slug": "microsoft-max", + "name": "Microsoft Max", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6840174" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/mi/microsoft-mediaroom.json b/data/software/mi/microsoft-mediaroom.json new file mode 100644 index 000000000000..b05580a94b4c --- /dev/null +++ b/data/software/mi/microsoft-mediaroom.json @@ -0,0 +1,11 @@ +{ + "slug": "microsoft-mediaroom", + "name": "Microsoft Mediaroom", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6840165" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/mi/microsoft-messaging.json b/data/software/mi/microsoft-messaging.json new file mode 100644 index 000000000000..c0b01442c2c2 --- /dev/null +++ b/data/software/mi/microsoft-messaging.json @@ -0,0 +1,8 @@ +{ + "slug": "microsoft-messaging", + "name": "Microsoft Messaging", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q48742670" + ] +} diff --git a/data/software/mi/microsoft-mobile-services.json b/data/software/mi/microsoft-mobile-services.json new file mode 100644 index 000000000000..284f8c4860fc --- /dev/null +++ b/data/software/mi/microsoft-mobile-services.json @@ -0,0 +1,8 @@ +{ + "slug": "microsoft-mobile-services", + "name": "Microsoft mobile services", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q303993" + ] +} diff --git a/data/software/mi/microsoft-money.json b/data/software/mi/microsoft-money.json new file mode 100644 index 000000000000..b1303e76f4c0 --- /dev/null +++ b/data/software/mi/microsoft-money.json @@ -0,0 +1,11 @@ +{ + "slug": "microsoft-money", + "name": "Microsoft Money", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117428" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/mi/microsoft-multimedia-viewer.json b/data/software/mi/microsoft-multimedia-viewer.json new file mode 100644 index 000000000000..15189ebad0d3 --- /dev/null +++ b/data/software/mi/microsoft-multimedia-viewer.json @@ -0,0 +1,11 @@ +{ + "slug": "microsoft-multimedia-viewer", + "name": "Microsoft Multimedia Viewer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112762591" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/mi/microsoft-music-central.json b/data/software/mi/microsoft-music-central.json new file mode 100644 index 000000000000..faebf190ba90 --- /dev/null +++ b/data/software/mi/microsoft-music-central.json @@ -0,0 +1,11 @@ +{ + "slug": "microsoft-music-central", + "name": "Microsoft Music Central", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6840171" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/mi/microsoft-musical-instruments.json b/data/software/mi/microsoft-musical-instruments.json new file mode 100644 index 000000000000..115c148070a6 --- /dev/null +++ b/data/software/mi/microsoft-musical-instruments.json @@ -0,0 +1,8 @@ +{ + "slug": "microsoft-musical-instruments", + "name": "Microsoft Musical Instruments", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112124567" + ] +} diff --git a/data/software/mi/microsoft-network-monitor.json b/data/software/mi/microsoft-network-monitor.json new file mode 100644 index 000000000000..72d11a7b2454 --- /dev/null +++ b/data/software/mi/microsoft-network-monitor.json @@ -0,0 +1,11 @@ +{ + "slug": "microsoft-network-monitor", + "name": "Microsoft Network Monitor", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6840173" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/mi/microsoft-office-1-0.json b/data/software/mi/microsoft-office-1-0.json new file mode 100644 index 000000000000..3b88e43fdace --- /dev/null +++ b/data/software/mi/microsoft-office-1-0.json @@ -0,0 +1,8 @@ +{ + "slug": "microsoft-office-1-0", + "name": "Microsoft Office 1.0", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q29364652" + ] +} diff --git a/data/software/mi/microsoft-office-1-5.json b/data/software/mi/microsoft-office-1-5.json new file mode 100644 index 000000000000..dfd370064692 --- /dev/null +++ b/data/software/mi/microsoft-office-1-5.json @@ -0,0 +1,8 @@ +{ + "slug": "microsoft-office-1-5", + "name": "Microsoft Office 1.5", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q29364654" + ] +} diff --git a/data/software/mi/microsoft-office-1-6.json b/data/software/mi/microsoft-office-1-6.json new file mode 100644 index 000000000000..3d4b36bf47f9 --- /dev/null +++ b/data/software/mi/microsoft-office-1-6.json @@ -0,0 +1,8 @@ +{ + "slug": "microsoft-office-1-6", + "name": "Microsoft Office 1.6", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q29364655" + ] +} diff --git a/data/software/mi/microsoft-office-2010.json b/data/software/mi/microsoft-office-2010.json new file mode 100644 index 000000000000..ab9ab82051ce --- /dev/null +++ b/data/software/mi/microsoft-office-2010.json @@ -0,0 +1,20 @@ +{ + "slug": "microsoft-office-2010", + "name": "Microsoft Office 2010", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q689579" + ], + "release_date": "2010-06-15", + "developers": [ + "Microsoft" + ], + "operating_systems": [ + "Windows Server 2003", + "Windows Server 2008", + "Windows 7" + ], + "licenses": [ + "end-user license agreement" + ] +} diff --git a/data/software/mi/microsoft-office-2013.json b/data/software/mi/microsoft-office-2013.json new file mode 100644 index 000000000000..5bd5c20f9f97 --- /dev/null +++ b/data/software/mi/microsoft-office-2013.json @@ -0,0 +1,20 @@ +{ + "slug": "microsoft-office-2013", + "name": "Microsoft Office 2013", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q724878" + ], + "release_date": "2013-01-29", + "developers": [ + "Microsoft Query" + ], + "operating_systems": [ + "Windows Phone 8", + "Windows RT", + "Windows 7" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/mi/microsoft-office-2016-for-mac.json b/data/software/mi/microsoft-office-2016-for-mac.json new file mode 100644 index 000000000000..11a5cc7107fc --- /dev/null +++ b/data/software/mi/microsoft-office-2016-for-mac.json @@ -0,0 +1,11 @@ +{ + "slug": "microsoft-office-2016-for-mac", + "name": "Microsoft Office 2016 for Mac", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25378791" + ], + "publishers": [ + "Microsoft" + ] +} diff --git a/data/software/mi/microsoft-office-4-3.json b/data/software/mi/microsoft-office-4-3.json new file mode 100644 index 000000000000..638c4db26c4c --- /dev/null +++ b/data/software/mi/microsoft-office-4-3.json @@ -0,0 +1,20 @@ +{ + "slug": "microsoft-office-4-3", + "name": "Microsoft Office 4.3", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3857018" + ], + "release_date": "1994-06-02", + "developers": [ + "Microsoft" + ], + "operating_systems": [ + "Windows 3.x", + "Windows 95" + ], + "licenses": [ + "proprietary license", + "commercial software" + ] +} diff --git a/data/software/mi/microsoft-office-4-x.json b/data/software/mi/microsoft-office-4-x.json new file mode 100644 index 000000000000..674e86561ff2 --- /dev/null +++ b/data/software/mi/microsoft-office-4-x.json @@ -0,0 +1,8 @@ +{ + "slug": "microsoft-office-4-x", + "name": "Microsoft Office 4.x", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131471003" + ] +} diff --git a/data/software/mi/microsoft-office-98-macintosh-edition.json b/data/software/mi/microsoft-office-98-macintosh-edition.json new file mode 100644 index 000000000000..4a15ef4df31a --- /dev/null +++ b/data/software/mi/microsoft-office-98-macintosh-edition.json @@ -0,0 +1,14 @@ +{ + "slug": "microsoft-office-98-macintosh-edition", + "name": "Microsoft Office 98 Macintosh Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3498928" + ], + "developers": [ + "Microsoft" + ], + "operating_systems": [ + "macOS" + ] +} diff --git a/data/software/mi/microsoft-office-accounting.json b/data/software/mi/microsoft-office-accounting.json new file mode 100644 index 000000000000..072670e6e021 --- /dev/null +++ b/data/software/mi/microsoft-office-accounting.json @@ -0,0 +1,11 @@ +{ + "slug": "microsoft-office-accounting", + "name": "Microsoft Office Accounting", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1041347" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/mi/microsoft-office-communications-online.json b/data/software/mi/microsoft-office-communications-online.json new file mode 100644 index 000000000000..0d388258cd1b --- /dev/null +++ b/data/software/mi/microsoft-office-communications-online.json @@ -0,0 +1,8 @@ +{ + "slug": "microsoft-office-communications-online", + "name": "Microsoft Office Communications Online", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11233184" + ] +} diff --git a/data/software/mi/microsoft-office-communications-server.json b/data/software/mi/microsoft-office-communications-server.json new file mode 100644 index 000000000000..5d2fdb764c7e --- /dev/null +++ b/data/software/mi/microsoft-office-communications-server.json @@ -0,0 +1,11 @@ +{ + "slug": "microsoft-office-communications-server", + "name": "Microsoft Office Communications Server", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106006061" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/mi/microsoft-office-communicator.json b/data/software/mi/microsoft-office-communicator.json new file mode 100644 index 000000000000..05bb55722ee3 --- /dev/null +++ b/data/software/mi/microsoft-office-communicator.json @@ -0,0 +1,8 @@ +{ + "slug": "microsoft-office-communicator", + "name": "Microsoft Office Communicator", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q13794956" + ] +} diff --git a/data/software/mi/microsoft-office-excel-2000.json b/data/software/mi/microsoft-office-excel-2000.json new file mode 100644 index 000000000000..a87c62567673 --- /dev/null +++ b/data/software/mi/microsoft-office-excel-2000.json @@ -0,0 +1,11 @@ +{ + "slug": "microsoft-office-excel-2000", + "name": "Microsoft Office Excel 2000", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115117121" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/mi/microsoft-office-excel-365.json b/data/software/mi/microsoft-office-excel-365.json new file mode 100644 index 000000000000..0ae07427e7f9 --- /dev/null +++ b/data/software/mi/microsoft-office-excel-365.json @@ -0,0 +1,11 @@ +{ + "slug": "microsoft-office-excel-365", + "name": "Microsoft Office Excel 365", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115117208" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/mi/microsoft-office-for-ipad.json b/data/software/mi/microsoft-office-for-ipad.json new file mode 100644 index 000000000000..33bc3881a406 --- /dev/null +++ b/data/software/mi/microsoft-office-for-ipad.json @@ -0,0 +1,14 @@ +{ + "slug": "microsoft-office-for-ipad", + "name": "Microsoft Office for iPad", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16529467" + ], + "developers": [ + "Microsoft" + ], + "operating_systems": [ + "iOS" + ] +} diff --git a/data/software/mi/microsoft-office-forms-server.json b/data/software/mi/microsoft-office-forms-server.json new file mode 100644 index 000000000000..c2b8b2576817 --- /dev/null +++ b/data/software/mi/microsoft-office-forms-server.json @@ -0,0 +1,11 @@ +{ + "slug": "microsoft-office-forms-server", + "name": "Microsoft Office Forms Server", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1041639" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/mi/microsoft-office-frontpage-2002.json b/data/software/mi/microsoft-office-frontpage-2002.json new file mode 100644 index 000000000000..d855119879c8 --- /dev/null +++ b/data/software/mi/microsoft-office-frontpage-2002.json @@ -0,0 +1,11 @@ +{ + "slug": "microsoft-office-frontpage-2002", + "name": "Microsoft Office FrontPage 2002", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115117134" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/mi/microsoft-office-frontpage-2003.json b/data/software/mi/microsoft-office-frontpage-2003.json new file mode 100644 index 000000000000..90684d9d8618 --- /dev/null +++ b/data/software/mi/microsoft-office-frontpage-2003.json @@ -0,0 +1,11 @@ +{ + "slug": "microsoft-office-frontpage-2003", + "name": "Microsoft Office FrontPage 2003", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115117156" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/mi/microsoft-office-frontpage-97.json b/data/software/mi/microsoft-office-frontpage-97.json new file mode 100644 index 000000000000..d8a91d3d63d0 --- /dev/null +++ b/data/software/mi/microsoft-office-frontpage-97.json @@ -0,0 +1,12 @@ +{ + "slug": "microsoft-office-frontpage-97", + "name": "Microsoft Office FrontPage 97", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115117112" + ], + "release_date": "1996-01-01", + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/mi/microsoft-office-groove-server.json b/data/software/mi/microsoft-office-groove-server.json new file mode 100644 index 000000000000..e671fc872d7a --- /dev/null +++ b/data/software/mi/microsoft-office-groove-server.json @@ -0,0 +1,8 @@ +{ + "slug": "microsoft-office-groove-server", + "name": "Microsoft Office Groove Server", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q851887" + ] +} diff --git a/data/software/mi/microsoft-office-infopath-2007.json b/data/software/mi/microsoft-office-infopath-2007.json new file mode 100644 index 000000000000..248ddf74cc97 --- /dev/null +++ b/data/software/mi/microsoft-office-infopath-2007.json @@ -0,0 +1,12 @@ +{ + "slug": "microsoft-office-infopath-2007", + "name": "Microsoft Office InfoPath 2007", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q46050455" + ], + "release_date": "2007-01-30", + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/mi/microsoft-office-infopath-2013.json b/data/software/mi/microsoft-office-infopath-2013.json new file mode 100644 index 000000000000..954e51f972a8 --- /dev/null +++ b/data/software/mi/microsoft-office-infopath-2013.json @@ -0,0 +1,11 @@ +{ + "slug": "microsoft-office-infopath-2013", + "name": "Microsoft Office InfoPath 2013", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q92604659" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/mi/microsoft-office-live-meeting.json b/data/software/mi/microsoft-office-live-meeting.json new file mode 100644 index 000000000000..a22f0372fe1d --- /dev/null +++ b/data/software/mi/microsoft-office-live-meeting.json @@ -0,0 +1,17 @@ +{ + "slug": "microsoft-office-live-meeting", + "name": "Microsoft Office Live Meeting", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2415664" + ], + "developers": [ + "Microsoft" + ], + "operating_systems": [ + "Microsoft Windows" + ], + "licenses": [ + "Microsoft end-user license agreement" + ] +} diff --git a/data/software/mi/microsoft-office-live.json b/data/software/mi/microsoft-office-live.json new file mode 100644 index 000000000000..a768ef253859 --- /dev/null +++ b/data/software/mi/microsoft-office-live.json @@ -0,0 +1,15 @@ +{ + "slug": "microsoft-office-live", + "name": "Microsoft Office Live", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q281431" + ], + "developers": [ + "Microsoft" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/software/mi/microsoft-office-onenote-2010.json b/data/software/mi/microsoft-office-onenote-2010.json new file mode 100644 index 000000000000..dda36ef2fcd2 --- /dev/null +++ b/data/software/mi/microsoft-office-onenote-2010.json @@ -0,0 +1,11 @@ +{ + "slug": "microsoft-office-onenote-2010", + "name": "Microsoft Office OneNote 2010", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115117192" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/mi/microsoft-office-onenote-2013.json b/data/software/mi/microsoft-office-onenote-2013.json new file mode 100644 index 000000000000..929cc881c4a3 --- /dev/null +++ b/data/software/mi/microsoft-office-onenote-2013.json @@ -0,0 +1,11 @@ +{ + "slug": "microsoft-office-onenote-2013", + "name": "Microsoft Office OneNote 2013", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115117197" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/mi/microsoft-office-outlook-2000.json b/data/software/mi/microsoft-office-outlook-2000.json new file mode 100644 index 000000000000..2f765cae0d82 --- /dev/null +++ b/data/software/mi/microsoft-office-outlook-2000.json @@ -0,0 +1,11 @@ +{ + "slug": "microsoft-office-outlook-2000", + "name": "Microsoft Office Outlook 2000", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115117125" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/mi/microsoft-office-outlook-2002.json b/data/software/mi/microsoft-office-outlook-2002.json new file mode 100644 index 000000000000..a8f79f7da110 --- /dev/null +++ b/data/software/mi/microsoft-office-outlook-2002.json @@ -0,0 +1,11 @@ +{ + "slug": "microsoft-office-outlook-2002", + "name": "Microsoft Office Outlook 2002", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115117136" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/mi/microsoft-office-outlook-2003.json b/data/software/mi/microsoft-office-outlook-2003.json new file mode 100644 index 000000000000..2417a5c85320 --- /dev/null +++ b/data/software/mi/microsoft-office-outlook-2003.json @@ -0,0 +1,11 @@ +{ + "slug": "microsoft-office-outlook-2003", + "name": "Microsoft Office Outlook 2003", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115117153" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/mi/microsoft-office-outlook-2010.json b/data/software/mi/microsoft-office-outlook-2010.json new file mode 100644 index 000000000000..cc1f70dc538a --- /dev/null +++ b/data/software/mi/microsoft-office-outlook-2010.json @@ -0,0 +1,11 @@ +{ + "slug": "microsoft-office-outlook-2010", + "name": "Microsoft Office Outlook 2010", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115117182" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/mi/microsoft-office-outlook-2013.json b/data/software/mi/microsoft-office-outlook-2013.json new file mode 100644 index 000000000000..ee45334f5833 --- /dev/null +++ b/data/software/mi/microsoft-office-outlook-2013.json @@ -0,0 +1,11 @@ +{ + "slug": "microsoft-office-outlook-2013", + "name": "Microsoft Office Outlook 2013", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115117196" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/mi/microsoft-office-outlook-97.json b/data/software/mi/microsoft-office-outlook-97.json new file mode 100644 index 000000000000..3e9dfa55f4cd --- /dev/null +++ b/data/software/mi/microsoft-office-outlook-97.json @@ -0,0 +1,11 @@ +{ + "slug": "microsoft-office-outlook-97", + "name": "Microsoft Office Outlook 97", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115117114" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/mi/microsoft-office-outlook-98.json b/data/software/mi/microsoft-office-outlook-98.json new file mode 100644 index 000000000000..23714f0fc2c9 --- /dev/null +++ b/data/software/mi/microsoft-office-outlook-98.json @@ -0,0 +1,11 @@ +{ + "slug": "microsoft-office-outlook-98", + "name": "Microsoft Office Outlook 98", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115117126" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/mi/microsoft-office-outlook-web-access-2003.json b/data/software/mi/microsoft-office-outlook-web-access-2003.json new file mode 100644 index 000000000000..6298f8c0a9be --- /dev/null +++ b/data/software/mi/microsoft-office-outlook-web-access-2003.json @@ -0,0 +1,11 @@ +{ + "slug": "microsoft-office-outlook-web-access-2003", + "name": "Microsoft Office Outlook Web Access 2003", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115117170" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/mi/microsoft-office-outlook-web-access.json b/data/software/mi/microsoft-office-outlook-web-access.json new file mode 100644 index 000000000000..dd0bdee6e3da --- /dev/null +++ b/data/software/mi/microsoft-office-outlook-web-access.json @@ -0,0 +1,11 @@ +{ + "slug": "microsoft-office-outlook-web-access", + "name": "Microsoft Office Outlook Web Access", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115117169" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/mi/microsoft-office-performancepoint-server.json b/data/software/mi/microsoft-office-performancepoint-server.json new file mode 100644 index 000000000000..62ed9747a001 --- /dev/null +++ b/data/software/mi/microsoft-office-performancepoint-server.json @@ -0,0 +1,11 @@ +{ + "slug": "microsoft-office-performancepoint-server", + "name": "Microsoft Office PerformancePoint Server", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3312389" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/mi/microsoft-office-project-portfolio-server.json b/data/software/mi/microsoft-office-project-portfolio-server.json new file mode 100644 index 000000000000..1f7045dd672e --- /dev/null +++ b/data/software/mi/microsoft-office-project-portfolio-server.json @@ -0,0 +1,8 @@ +{ + "slug": "microsoft-office-project-portfolio-server", + "name": "Microsoft Office Project Portfolio Server", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q851397" + ] +} diff --git a/data/software/mi/microsoft-office-project-server.json b/data/software/mi/microsoft-office-project-server.json new file mode 100644 index 000000000000..1474ed83ab07 --- /dev/null +++ b/data/software/mi/microsoft-office-project-server.json @@ -0,0 +1,8 @@ +{ + "slug": "microsoft-office-project-server", + "name": "Microsoft Office Project Server", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6013478" + ] +} diff --git a/data/software/mi/microsoft-office-publisher-2003.json b/data/software/mi/microsoft-office-publisher-2003.json new file mode 100644 index 000000000000..557c83d86d67 --- /dev/null +++ b/data/software/mi/microsoft-office-publisher-2003.json @@ -0,0 +1,8 @@ +{ + "slug": "microsoft-office-publisher-2003", + "name": "Microsoft Office Publisher 2003", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63385386" + ] +} diff --git a/data/software/mi/microsoft-office-shared-tools.json b/data/software/mi/microsoft-office-shared-tools.json new file mode 100644 index 000000000000..f782ad38dd1a --- /dev/null +++ b/data/software/mi/microsoft-office-shared-tools.json @@ -0,0 +1,8 @@ +{ + "slug": "microsoft-office-shared-tools", + "name": "Microsoft Office shared tools", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1414515" + ] +} diff --git a/data/software/mi/microsoft-office-sharepoint-server.json b/data/software/mi/microsoft-office-sharepoint-server.json new file mode 100644 index 000000000000..6cc3ec4ffa95 --- /dev/null +++ b/data/software/mi/microsoft-office-sharepoint-server.json @@ -0,0 +1,8 @@ +{ + "slug": "microsoft-office-sharepoint-server", + "name": "Microsoft Office SharePoint Server", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1081057" + ] +} diff --git a/data/software/mi/microsoft-office-word-2-0.json b/data/software/mi/microsoft-office-word-2-0.json new file mode 100644 index 000000000000..3bfd7206dfb9 --- /dev/null +++ b/data/software/mi/microsoft-office-word-2-0.json @@ -0,0 +1,11 @@ +{ + "slug": "microsoft-office-word-2-0", + "name": "Microsoft Office Word 2.0", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115117167" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/mi/microsoft-office-word-2000.json b/data/software/mi/microsoft-office-word-2000.json new file mode 100644 index 000000000000..bcc43c8b7562 --- /dev/null +++ b/data/software/mi/microsoft-office-word-2000.json @@ -0,0 +1,11 @@ +{ + "slug": "microsoft-office-word-2000", + "name": "Microsoft Office Word 2000", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115117129" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/mi/microsoft-office-word-2002.json b/data/software/mi/microsoft-office-word-2002.json new file mode 100644 index 000000000000..75c818748121 --- /dev/null +++ b/data/software/mi/microsoft-office-word-2002.json @@ -0,0 +1,11 @@ +{ + "slug": "microsoft-office-word-2002", + "name": "Microsoft Office Word 2002", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115117135" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/mi/microsoft-office-word-5-0.json b/data/software/mi/microsoft-office-word-5-0.json new file mode 100644 index 000000000000..220e6c4d9296 --- /dev/null +++ b/data/software/mi/microsoft-office-word-5-0.json @@ -0,0 +1,11 @@ +{ + "slug": "microsoft-office-word-5-0", + "name": "Microsoft Office Word 5.0", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115117168" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/mi/microsoft-office-word-6-0.json b/data/software/mi/microsoft-office-word-6-0.json new file mode 100644 index 000000000000..301dcfe2673e --- /dev/null +++ b/data/software/mi/microsoft-office-word-6-0.json @@ -0,0 +1,11 @@ +{ + "slug": "microsoft-office-word-6-0", + "name": "Microsoft Office Word 6.0", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115117118" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/mi/microsoft-online-services.json b/data/software/mi/microsoft-online-services.json new file mode 100644 index 000000000000..9895931b9fa5 --- /dev/null +++ b/data/software/mi/microsoft-online-services.json @@ -0,0 +1,8 @@ +{ + "slug": "microsoft-online-services", + "name": "Microsoft Online Services", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3124991" + ] +} diff --git a/data/software/mi/microsoft-outlook-hotmail-connector.json b/data/software/mi/microsoft-outlook-hotmail-connector.json new file mode 100644 index 000000000000..259a75536bf8 --- /dev/null +++ b/data/software/mi/microsoft-outlook-hotmail-connector.json @@ -0,0 +1,8 @@ +{ + "slug": "microsoft-outlook-hotmail-connector", + "name": "Microsoft Outlook Hotmail Connector", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q766643" + ] +} diff --git a/data/software/mi/microsoft-pc-manager.json b/data/software/mi/microsoft-pc-manager.json new file mode 100644 index 000000000000..952114d26232 --- /dev/null +++ b/data/software/mi/microsoft-pc-manager.json @@ -0,0 +1,11 @@ +{ + "slug": "microsoft-pc-manager", + "name": "Microsoft PC Manager", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126279527" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/mi/microsoft-pinyin-ime.json b/data/software/mi/microsoft-pinyin-ime.json new file mode 100644 index 000000000000..2910211bf7c5 --- /dev/null +++ b/data/software/mi/microsoft-pinyin-ime.json @@ -0,0 +1,14 @@ +{ + "slug": "microsoft-pinyin-ime", + "name": "Microsoft Pinyin IME", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11071469" + ], + "developers": [ + "Microsoft" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/mi/microsoft-planner.json b/data/software/mi/microsoft-planner.json new file mode 100644 index 000000000000..1aa3c2f3482f --- /dev/null +++ b/data/software/mi/microsoft-planner.json @@ -0,0 +1,12 @@ +{ + "slug": "microsoft-planner", + "name": "Microsoft Planner", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q24895410" + ], + "release_date": "2016-06-06", + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/mi/microsoft-plus.json b/data/software/mi/microsoft-plus.json new file mode 100644 index 000000000000..2c46224ab26a --- /dev/null +++ b/data/software/mi/microsoft-plus.json @@ -0,0 +1,14 @@ +{ + "slug": "microsoft-plus", + "name": "Microsoft Plus!", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q686425" + ], + "developers": [ + "Microsoft" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/mi/microsoft-power-apps.json b/data/software/mi/microsoft-power-apps.json new file mode 100644 index 000000000000..bbfb9cf28078 --- /dev/null +++ b/data/software/mi/microsoft-power-apps.json @@ -0,0 +1,11 @@ +{ + "slug": "microsoft-power-apps", + "name": "Microsoft Power Apps", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q97333182" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/mi/microsoft-power-automate.json b/data/software/mi/microsoft-power-automate.json new file mode 100644 index 000000000000..ef8a8cda05a1 --- /dev/null +++ b/data/software/mi/microsoft-power-automate.json @@ -0,0 +1,12 @@ +{ + "slug": "microsoft-power-automate", + "name": "Microsoft Power Automate", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28502244" + ], + "release_date": "2016-10-01", + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/mi/microsoft-power-bi.json b/data/software/mi/microsoft-power-bi.json new file mode 100644 index 000000000000..a6a1ba035d18 --- /dev/null +++ b/data/software/mi/microsoft-power-bi.json @@ -0,0 +1,15 @@ +{ + "slug": "microsoft-power-bi", + "name": "Microsoft Power BI", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q23542287" + ], + "release_date": "2011-07-11", + "developers": [ + "Microsoft" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/mi/microsoft-power-platform.json b/data/software/mi/microsoft-power-platform.json new file mode 100644 index 000000000000..02e35e2cff8f --- /dev/null +++ b/data/software/mi/microsoft-power-platform.json @@ -0,0 +1,11 @@ +{ + "slug": "microsoft-power-platform", + "name": "Microsoft Power Platform", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106253893" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/mi/microsoft-powerpoint-2010.json b/data/software/mi/microsoft-powerpoint-2010.json new file mode 100644 index 000000000000..0fbdbf322f19 --- /dev/null +++ b/data/software/mi/microsoft-powerpoint-2010.json @@ -0,0 +1,12 @@ +{ + "slug": "microsoft-powerpoint-2010", + "name": "Microsoft PowerPoint 2010", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115117181" + ], + "release_date": "2010-06-01", + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/mi/microsoft-powerpoint-2013.json b/data/software/mi/microsoft-powerpoint-2013.json new file mode 100644 index 000000000000..495f119530d3 --- /dev/null +++ b/data/software/mi/microsoft-powerpoint-2013.json @@ -0,0 +1,8 @@ +{ + "slug": "microsoft-powerpoint-2013", + "name": "Microsoft PowerPoint 2013", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28018622" + ] +} diff --git a/data/software/mi/microsoft-powerpoint-2016.json b/data/software/mi/microsoft-powerpoint-2016.json new file mode 100644 index 000000000000..536e2fd03be6 --- /dev/null +++ b/data/software/mi/microsoft-powerpoint-2016.json @@ -0,0 +1,8 @@ +{ + "slug": "microsoft-powerpoint-2016", + "name": "Microsoft PowerPoint 2016", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28018608" + ] +} diff --git a/data/software/mi/microsoft-powerpoint-2019.json b/data/software/mi/microsoft-powerpoint-2019.json new file mode 100644 index 000000000000..ad6d4a988ac0 --- /dev/null +++ b/data/software/mi/microsoft-powerpoint-2019.json @@ -0,0 +1,12 @@ +{ + "slug": "microsoft-powerpoint-2019", + "name": "Microsoft PowerPoint 2019", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115117209" + ], + "release_date": "2018-01-01", + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/mi/microsoft-powerpoint-2021.json b/data/software/mi/microsoft-powerpoint-2021.json new file mode 100644 index 000000000000..80deabe5ceca --- /dev/null +++ b/data/software/mi/microsoft-powerpoint-2021.json @@ -0,0 +1,11 @@ +{ + "slug": "microsoft-powerpoint-2021", + "name": "Microsoft PowerPoint 2021", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122583376" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/mi/microsoft-powerpoint-3-0-for-mac.json b/data/software/mi/microsoft-powerpoint-3-0-for-mac.json new file mode 100644 index 000000000000..9037daee4f05 --- /dev/null +++ b/data/software/mi/microsoft-powerpoint-3-0-for-mac.json @@ -0,0 +1,14 @@ +{ + "slug": "microsoft-powerpoint-3-0-for-mac", + "name": "Microsoft Powerpoint 3.0 for Mac", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28861749" + ], + "developers": [ + "Microsoft" + ], + "operating_systems": [ + "macOS" + ] +} diff --git a/data/software/mi/microsoft-powerpoint-4-0.json b/data/software/mi/microsoft-powerpoint-4-0.json new file mode 100644 index 000000000000..ecc7afd5909d --- /dev/null +++ b/data/software/mi/microsoft-powerpoint-4-0.json @@ -0,0 +1,12 @@ +{ + "slug": "microsoft-powerpoint-4-0", + "name": "Microsoft PowerPoint 4.0", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115117161" + ], + "release_date": "1994-02-01", + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/mi/microsoft-powerpoint-7-0.json b/data/software/mi/microsoft-powerpoint-7-0.json new file mode 100644 index 000000000000..ea0c6932c20a --- /dev/null +++ b/data/software/mi/microsoft-powerpoint-7-0.json @@ -0,0 +1,12 @@ +{ + "slug": "microsoft-powerpoint-7-0", + "name": "Microsoft PowerPoint 7.0", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115117162" + ], + "release_date": "1995-07-01", + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/mi/microsoft-powerpoint-97.json b/data/software/mi/microsoft-powerpoint-97.json new file mode 100644 index 000000000000..62860120bee3 --- /dev/null +++ b/data/software/mi/microsoft-powerpoint-97.json @@ -0,0 +1,12 @@ +{ + "slug": "microsoft-powerpoint-97", + "name": "Microsoft PowerPoint 97", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115117128" + ], + "release_date": "1997-01-01", + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/mi/microsoft-private-folder.json b/data/software/mi/microsoft-private-folder.json new file mode 100644 index 000000000000..f306e4e47b15 --- /dev/null +++ b/data/software/mi/microsoft-private-folder.json @@ -0,0 +1,11 @@ +{ + "slug": "microsoft-private-folder", + "name": "Microsoft Private Folder", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6840191" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/mi/microsoft-producer-for-powerpoint.json b/data/software/mi/microsoft-producer-for-powerpoint.json new file mode 100644 index 000000000000..49a6ac803ee6 --- /dev/null +++ b/data/software/mi/microsoft-producer-for-powerpoint.json @@ -0,0 +1,8 @@ +{ + "slug": "microsoft-producer-for-powerpoint", + "name": "Microsoft Producer for PowerPoint", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11233186" + ] +} diff --git a/data/software/mi/microsoft-project-2000.json b/data/software/mi/microsoft-project-2000.json new file mode 100644 index 000000000000..7600aa91b307 --- /dev/null +++ b/data/software/mi/microsoft-project-2000.json @@ -0,0 +1,11 @@ +{ + "slug": "microsoft-project-2000", + "name": "Microsoft Project 2000", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115117142" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/mi/microsoft-project-2003.json b/data/software/mi/microsoft-project-2003.json new file mode 100644 index 000000000000..d1c62530801d --- /dev/null +++ b/data/software/mi/microsoft-project-2003.json @@ -0,0 +1,11 @@ +{ + "slug": "microsoft-project-2003", + "name": "Microsoft Project 2003", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115117150" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/mi/microsoft-project-2007.json b/data/software/mi/microsoft-project-2007.json new file mode 100644 index 000000000000..00d1f1f757de --- /dev/null +++ b/data/software/mi/microsoft-project-2007.json @@ -0,0 +1,11 @@ +{ + "slug": "microsoft-project-2007", + "name": "Microsoft Project 2007", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115117176" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/mi/microsoft-project-2010-server.json b/data/software/mi/microsoft-project-2010-server.json new file mode 100644 index 000000000000..6884eb925783 --- /dev/null +++ b/data/software/mi/microsoft-project-2010-server.json @@ -0,0 +1,11 @@ +{ + "slug": "microsoft-project-2010-server", + "name": "Microsoft Project 2010 Server", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115117188" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/mi/microsoft-project-2010.json b/data/software/mi/microsoft-project-2010.json new file mode 100644 index 000000000000..51c7a0924e7b --- /dev/null +++ b/data/software/mi/microsoft-project-2010.json @@ -0,0 +1,11 @@ +{ + "slug": "microsoft-project-2010", + "name": "Microsoft Project 2010", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115117183" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/mi/microsoft-project-2013.json b/data/software/mi/microsoft-project-2013.json new file mode 100644 index 000000000000..1328e6b1991b --- /dev/null +++ b/data/software/mi/microsoft-project-2013.json @@ -0,0 +1,11 @@ +{ + "slug": "microsoft-project-2013", + "name": "Microsoft Project 2013", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115117195" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/mi/microsoft-project-4.json b/data/software/mi/microsoft-project-4.json new file mode 100644 index 000000000000..c4f61dd9ed8a --- /dev/null +++ b/data/software/mi/microsoft-project-4.json @@ -0,0 +1,11 @@ +{ + "slug": "microsoft-project-4", + "name": "Microsoft Project 4", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115117164" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/mi/microsoft-project-98.json b/data/software/mi/microsoft-project-98.json new file mode 100644 index 000000000000..a88b2475b51d --- /dev/null +++ b/data/software/mi/microsoft-project-98.json @@ -0,0 +1,11 @@ +{ + "slug": "microsoft-project-98", + "name": "Microsoft Project 98", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115117141" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/mi/microsoft-pubcenter.json b/data/software/mi/microsoft-pubcenter.json new file mode 100644 index 000000000000..3d13430c7bf1 --- /dev/null +++ b/data/software/mi/microsoft-pubcenter.json @@ -0,0 +1,11 @@ +{ + "slug": "microsoft-pubcenter", + "name": "Microsoft pubCenter", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6840275" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/mi/microsoft-publisher-98.json b/data/software/mi/microsoft-publisher-98.json new file mode 100644 index 000000000000..b44fc33550f8 --- /dev/null +++ b/data/software/mi/microsoft-publisher-98.json @@ -0,0 +1,11 @@ +{ + "slug": "microsoft-publisher-98", + "name": "Microsoft Publisher 98", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115117165" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/mi/microsoft-push-notification-service.json b/data/software/mi/microsoft-push-notification-service.json new file mode 100644 index 000000000000..b253092f7ab8 --- /dev/null +++ b/data/software/mi/microsoft-push-notification-service.json @@ -0,0 +1,8 @@ +{ + "slug": "microsoft-push-notification-service", + "name": "Microsoft Push Notification Service", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22906903" + ] +} diff --git a/data/software/mi/microsoft-reader.json b/data/software/mi/microsoft-reader.json new file mode 100644 index 000000000000..469e72db4cdb --- /dev/null +++ b/data/software/mi/microsoft-reader.json @@ -0,0 +1,17 @@ +{ + "slug": "microsoft-reader", + "name": "Microsoft Reader", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1584816" + ], + "developers": [ + "Microsoft" + ], + "operating_systems": [ + "Microsoft Windows" + ], + "licenses": [ + "Microsoft end-user license agreement" + ] +} diff --git a/data/software/mi/microsoft-robotics-developer-studio.json b/data/software/mi/microsoft-robotics-developer-studio.json new file mode 100644 index 000000000000..6f9dc1a1ef4f --- /dev/null +++ b/data/software/mi/microsoft-robotics-developer-studio.json @@ -0,0 +1,11 @@ +{ + "slug": "microsoft-robotics-developer-studio", + "name": "Microsoft Robotics Developer Studio", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1931636" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/mi/microsoft-seal.json b/data/software/mi/microsoft-seal.json new file mode 100644 index 000000000000..cdc8a52c815e --- /dev/null +++ b/data/software/mi/microsoft-seal.json @@ -0,0 +1,11 @@ +{ + "slug": "microsoft-seal", + "name": "Microsoft SEAL", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q85785305" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/mi/microsoft-security-copilot.json b/data/software/mi/microsoft-security-copilot.json new file mode 100644 index 000000000000..333588c319d5 --- /dev/null +++ b/data/software/mi/microsoft-security-copilot.json @@ -0,0 +1,11 @@ +{ + "slug": "microsoft-security-copilot", + "name": "Microsoft Security Copilot", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135235332" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/mi/microsoft-sharepoint-2010.json b/data/software/mi/microsoft-sharepoint-2010.json new file mode 100644 index 000000000000..06a883783d21 --- /dev/null +++ b/data/software/mi/microsoft-sharepoint-2010.json @@ -0,0 +1,11 @@ +{ + "slug": "microsoft-sharepoint-2010", + "name": "Microsoft SharePoint 2010", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115117191" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/mi/microsoft-sharepoint-foundation-2010.json b/data/software/mi/microsoft-sharepoint-foundation-2010.json new file mode 100644 index 000000000000..550b35291715 --- /dev/null +++ b/data/software/mi/microsoft-sharepoint-foundation-2010.json @@ -0,0 +1,11 @@ +{ + "slug": "microsoft-sharepoint-foundation-2010", + "name": "Microsoft SharePoint Foundation 2010", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115117189" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/mi/microsoft-sharepoint-foundation.json b/data/software/mi/microsoft-sharepoint-foundation.json new file mode 100644 index 000000000000..8cbbed32ec49 --- /dev/null +++ b/data/software/mi/microsoft-sharepoint-foundation.json @@ -0,0 +1,8 @@ +{ + "slug": "microsoft-sharepoint-foundation", + "name": "Microsoft SharePoint Foundation", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1587784" + ] +} diff --git a/data/software/mi/microsoft-site-server.json b/data/software/mi/microsoft-site-server.json new file mode 100644 index 000000000000..54304c33b8e3 --- /dev/null +++ b/data/software/mi/microsoft-site-server.json @@ -0,0 +1,11 @@ +{ + "slug": "microsoft-site-server", + "name": "Microsoft Site Server", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6840221" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/mi/microsoft-sort.json b/data/software/mi/microsoft-sort.json new file mode 100644 index 000000000000..ccd027fa385a --- /dev/null +++ b/data/software/mi/microsoft-sort.json @@ -0,0 +1,11 @@ +{ + "slug": "microsoft-sort", + "name": "Microsoft Sort", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6840225" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/mi/microsoft-staffhub.json b/data/software/mi/microsoft-staffhub.json new file mode 100644 index 000000000000..8156c08475d6 --- /dev/null +++ b/data/software/mi/microsoft-staffhub.json @@ -0,0 +1,8 @@ +{ + "slug": "microsoft-staffhub", + "name": "Microsoft StaffHub", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q39075737" + ] +} diff --git a/data/software/mi/microsoft-stream.json b/data/software/mi/microsoft-stream.json new file mode 100644 index 000000000000..f96bf861c9a9 --- /dev/null +++ b/data/software/mi/microsoft-stream.json @@ -0,0 +1,11 @@ +{ + "slug": "microsoft-stream", + "name": "Microsoft Stream", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q30694375" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/mi/microsoft-streets-trips.json b/data/software/mi/microsoft-streets-trips.json new file mode 100644 index 000000000000..673535a1fd7a --- /dev/null +++ b/data/software/mi/microsoft-streets-trips.json @@ -0,0 +1,11 @@ +{ + "slug": "microsoft-streets-trips", + "name": "Microsoft Streets & Trips", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3857024" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/mi/microsoft-student.json b/data/software/mi/microsoft-student.json new file mode 100644 index 000000000000..400d04c12dac --- /dev/null +++ b/data/software/mi/microsoft-student.json @@ -0,0 +1,14 @@ +{ + "slug": "microsoft-student", + "name": "Microsoft Student", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2394058" + ], + "developers": [ + "Microsoft" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/mi/microsoft-surface.json b/data/software/mi/microsoft-surface.json new file mode 100644 index 000000000000..7829ba8c7d37 --- /dev/null +++ b/data/software/mi/microsoft-surface.json @@ -0,0 +1,11 @@ +{ + "slug": "microsoft-surface", + "name": "Microsoft Surface", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q947428" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/mi/microsoft-theme-packager.json b/data/software/mi/microsoft-theme-packager.json new file mode 100644 index 000000000000..75d150abcd91 --- /dev/null +++ b/data/software/mi/microsoft-theme-packager.json @@ -0,0 +1,11 @@ +{ + "slug": "microsoft-theme-packager", + "name": "Microsoft Theme Packager", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123296099" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/mi/microsoft-tv.json b/data/software/mi/microsoft-tv.json new file mode 100644 index 000000000000..ec65e489c4a8 --- /dev/null +++ b/data/software/mi/microsoft-tv.json @@ -0,0 +1,8 @@ +{ + "slug": "microsoft-tv", + "name": "Microsoft TV", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q15995305" + ] +} diff --git a/data/software/mi/microsoft-undelete-for-windows.json b/data/software/mi/microsoft-undelete-for-windows.json new file mode 100644 index 000000000000..eda8c3865342 --- /dev/null +++ b/data/software/mi/microsoft-undelete-for-windows.json @@ -0,0 +1,8 @@ +{ + "slug": "microsoft-undelete-for-windows", + "name": "Microsoft Undelete for Windows", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123048143" + ] +} diff --git a/data/software/mi/microsoft-v-chat.json b/data/software/mi/microsoft-v-chat.json new file mode 100644 index 000000000000..70f7048c0846 --- /dev/null +++ b/data/software/mi/microsoft-v-chat.json @@ -0,0 +1,8 @@ +{ + "slug": "microsoft-v-chat", + "name": "Microsoft V-Chat", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6840241" + ] +} diff --git a/data/software/mi/microsoft-vine.json b/data/software/mi/microsoft-vine.json new file mode 100644 index 000000000000..f887f3dde9d9 --- /dev/null +++ b/data/software/mi/microsoft-vine.json @@ -0,0 +1,9 @@ +{ + "slug": "microsoft-vine", + "name": "Microsoft Vine", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q9303048" + ], + "release_date": "2009-01-01" +} diff --git a/data/software/mi/microsoft-virtual-pc.json b/data/software/mi/microsoft-virtual-pc.json new file mode 100644 index 000000000000..b3044f7d8d0c --- /dev/null +++ b/data/software/mi/microsoft-virtual-pc.json @@ -0,0 +1,8 @@ +{ + "slug": "microsoft-virtual-pc", + "name": "Microsoft Virtual PC", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q15908125" + ] +} diff --git a/data/software/mi/microsoft-visio-2003.json b/data/software/mi/microsoft-visio-2003.json new file mode 100644 index 000000000000..d104f8546baa --- /dev/null +++ b/data/software/mi/microsoft-visio-2003.json @@ -0,0 +1,11 @@ +{ + "slug": "microsoft-visio-2003", + "name": "Microsoft Visio 2003", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115117158" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/mi/microsoft-visio-2007.json b/data/software/mi/microsoft-visio-2007.json new file mode 100644 index 000000000000..1fac34e502f4 --- /dev/null +++ b/data/software/mi/microsoft-visio-2007.json @@ -0,0 +1,11 @@ +{ + "slug": "microsoft-visio-2007", + "name": "Microsoft Visio 2007", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115117172" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/mi/microsoft-visio-2010.json b/data/software/mi/microsoft-visio-2010.json new file mode 100644 index 000000000000..a6c79edc71b4 --- /dev/null +++ b/data/software/mi/microsoft-visio-2010.json @@ -0,0 +1,11 @@ +{ + "slug": "microsoft-visio-2010", + "name": "Microsoft Visio 2010", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115117184" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/mi/microsoft-visio-2013.json b/data/software/mi/microsoft-visio-2013.json new file mode 100644 index 000000000000..db15a0c8b7c6 --- /dev/null +++ b/data/software/mi/microsoft-visio-2013.json @@ -0,0 +1,11 @@ +{ + "slug": "microsoft-visio-2013", + "name": "Microsoft Visio 2013", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115117202" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/mi/microsoft-visio-5-0.json b/data/software/mi/microsoft-visio-5-0.json new file mode 100644 index 000000000000..285ebf887174 --- /dev/null +++ b/data/software/mi/microsoft-visio-5-0.json @@ -0,0 +1,11 @@ +{ + "slug": "microsoft-visio-5-0", + "name": "Microsoft Visio 5.0", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115117132" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/mi/microsoft-visual-c-1-0.json b/data/software/mi/microsoft-visual-c-1-0.json new file mode 100644 index 000000000000..1f31327b552b --- /dev/null +++ b/data/software/mi/microsoft-visual-c-1-0.json @@ -0,0 +1,11 @@ +{ + "slug": "microsoft-visual-c-1-0", + "name": "Microsoft Visual C++ 1.0", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115117145" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/mi/microsoft-visual-c-5-0.json b/data/software/mi/microsoft-visual-c-5-0.json new file mode 100644 index 000000000000..b9c0cd134aef --- /dev/null +++ b/data/software/mi/microsoft-visual-c-5-0.json @@ -0,0 +1,11 @@ +{ + "slug": "microsoft-visual-c-5-0", + "name": "Microsoft Visual C++ 5.0", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115117147" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/mi/microsoft-visual-c-6-0.json b/data/software/mi/microsoft-visual-c-6-0.json new file mode 100644 index 000000000000..603170a98349 --- /dev/null +++ b/data/software/mi/microsoft-visual-c-6-0.json @@ -0,0 +1,11 @@ +{ + "slug": "microsoft-visual-c-6-0", + "name": "Microsoft Visual C++ 6.0", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115117148" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/mi/microsoft-visual-c-net.json b/data/software/mi/microsoft-visual-c-net.json new file mode 100644 index 000000000000..4e6d7f533e5d --- /dev/null +++ b/data/software/mi/microsoft-visual-c-net.json @@ -0,0 +1,11 @@ +{ + "slug": "microsoft-visual-c-net", + "name": "Microsoft Visual C++.NET", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115117149" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/mi/microsoft-visual-foxpro-3-0.json b/data/software/mi/microsoft-visual-foxpro-3-0.json new file mode 100644 index 000000000000..459aeeb4d6b8 --- /dev/null +++ b/data/software/mi/microsoft-visual-foxpro-3-0.json @@ -0,0 +1,12 @@ +{ + "slug": "microsoft-visual-foxpro-3-0", + "name": "Microsoft Visual FoxPro 3.0", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115117115" + ], + "release_date": "1995-06-01", + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/mi/microsoft-visual-foxpro-5-0.json b/data/software/mi/microsoft-visual-foxpro-5-0.json new file mode 100644 index 000000000000..81d66ab58b43 --- /dev/null +++ b/data/software/mi/microsoft-visual-foxpro-5-0.json @@ -0,0 +1,12 @@ +{ + "slug": "microsoft-visual-foxpro-5-0", + "name": "Microsoft Visual FoxPro 5.0", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115117116" + ], + "release_date": "1996-10-01", + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/mi/microsoft-visual-foxpro-6-0.json b/data/software/mi/microsoft-visual-foxpro-6-0.json new file mode 100644 index 000000000000..6602f0f44332 --- /dev/null +++ b/data/software/mi/microsoft-visual-foxpro-6-0.json @@ -0,0 +1,12 @@ +{ + "slug": "microsoft-visual-foxpro-6-0", + "name": "Microsoft Visual FoxPro 6.0", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115117117" + ], + "release_date": "1998-05-18", + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/mi/microsoft-visual-foxpro-7-0.json b/data/software/mi/microsoft-visual-foxpro-7-0.json new file mode 100644 index 000000000000..e6fd204008b0 --- /dev/null +++ b/data/software/mi/microsoft-visual-foxpro-7-0.json @@ -0,0 +1,11 @@ +{ + "slug": "microsoft-visual-foxpro-7-0", + "name": "Microsoft Visual FoxPro 7.0", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115117140" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/mi/microsoft-visual-foxpro.json b/data/software/mi/microsoft-visual-foxpro.json new file mode 100644 index 000000000000..844f7d14d112 --- /dev/null +++ b/data/software/mi/microsoft-visual-foxpro.json @@ -0,0 +1,11 @@ +{ + "slug": "microsoft-visual-foxpro", + "name": "Microsoft Visual FoxPro", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115117138" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/mi/microsoft-visual-modeler.json b/data/software/mi/microsoft-visual-modeler.json new file mode 100644 index 000000000000..e1c521b1b85d --- /dev/null +++ b/data/software/mi/microsoft-visual-modeler.json @@ -0,0 +1,14 @@ +{ + "slug": "microsoft-visual-modeler", + "name": "Microsoft Visual Modeler", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122779187" + ], + "developers": [ + "Microsoft" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/mi/microsoft-visual-sourcesafe.json b/data/software/mi/microsoft-visual-sourcesafe.json new file mode 100644 index 000000000000..308fb48abf8c --- /dev/null +++ b/data/software/mi/microsoft-visual-sourcesafe.json @@ -0,0 +1,14 @@ +{ + "slug": "microsoft-visual-sourcesafe", + "name": "Microsoft Visual SourceSafe", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1542670" + ], + "developers": [ + "Microsoft" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/mi/microsoft-visual-studio-2008.json b/data/software/mi/microsoft-visual-studio-2008.json new file mode 100644 index 000000000000..d9b0ff9ab787 --- /dev/null +++ b/data/software/mi/microsoft-visual-studio-2008.json @@ -0,0 +1,11 @@ +{ + "slug": "microsoft-visual-studio-2008", + "name": "Microsoft Visual Studio 2008", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115117177" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/mi/microsoft-visual-studio-2010.json b/data/software/mi/microsoft-visual-studio-2010.json new file mode 100644 index 000000000000..9b11e3afbd79 --- /dev/null +++ b/data/software/mi/microsoft-visual-studio-2010.json @@ -0,0 +1,11 @@ +{ + "slug": "microsoft-visual-studio-2010", + "name": "Microsoft Visual Studio 2010", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115117178" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/mi/microsoft-visual-studio-2017.json b/data/software/mi/microsoft-visual-studio-2017.json new file mode 100644 index 000000000000..09960b17af2a --- /dev/null +++ b/data/software/mi/microsoft-visual-studio-2017.json @@ -0,0 +1,11 @@ +{ + "slug": "microsoft-visual-studio-2017", + "name": "Microsoft Visual Studio 2017", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115117206" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/mi/microsoft-visual-studio-lightswitch.json b/data/software/mi/microsoft-visual-studio-lightswitch.json new file mode 100644 index 000000000000..29352656ef98 --- /dev/null +++ b/data/software/mi/microsoft-visual-studio-lightswitch.json @@ -0,0 +1,11 @@ +{ + "slug": "microsoft-visual-studio-lightswitch", + "name": "Microsoft Visual Studio LightSwitch", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4052747" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/mi/microsoft-visual-studio-net.json b/data/software/mi/microsoft-visual-studio-net.json new file mode 100644 index 000000000000..723c8196790a --- /dev/null +++ b/data/software/mi/microsoft-visual-studio-net.json @@ -0,0 +1,11 @@ +{ + "slug": "microsoft-visual-studio-net", + "name": "Microsoft Visual Studio .NET", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115117154" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/mi/microsoft-vizact.json b/data/software/mi/microsoft-vizact.json new file mode 100644 index 000000000000..46ec9e548bf8 --- /dev/null +++ b/data/software/mi/microsoft-vizact.json @@ -0,0 +1,11 @@ +{ + "slug": "microsoft-vizact", + "name": "Microsoft Vizact", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6840250" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/mi/microsoft-voice-command.json b/data/software/mi/microsoft-voice-command.json new file mode 100644 index 000000000000..6fb2bb2c8178 --- /dev/null +++ b/data/software/mi/microsoft-voice-command.json @@ -0,0 +1,11 @@ +{ + "slug": "microsoft-voice-command", + "name": "Microsoft Voice Command", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3857028" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/mi/microsoft-wallet.json b/data/software/mi/microsoft-wallet.json new file mode 100644 index 000000000000..23e9de503b05 --- /dev/null +++ b/data/software/mi/microsoft-wallet.json @@ -0,0 +1,14 @@ +{ + "slug": "microsoft-wallet", + "name": "Microsoft Wallet", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q24807477" + ], + "developers": [ + "Microsoft" + ], + "operating_systems": [ + "Windows 10 Mobile" + ] +} diff --git a/data/software/mi/microsoft-web-platform-installer.json b/data/software/mi/microsoft-web-platform-installer.json new file mode 100644 index 000000000000..694d2a41bda1 --- /dev/null +++ b/data/software/mi/microsoft-web-platform-installer.json @@ -0,0 +1,14 @@ +{ + "slug": "microsoft-web-platform-installer", + "name": "Microsoft Web Platform Installer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q976637" + ], + "developers": [ + "Microsoft" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/mi/microsoft-whiteboard.json b/data/software/mi/microsoft-whiteboard.json new file mode 100644 index 000000000000..26261d204b48 --- /dev/null +++ b/data/software/mi/microsoft-whiteboard.json @@ -0,0 +1,11 @@ +{ + "slug": "microsoft-whiteboard", + "name": "Microsoft Whiteboard", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110549385" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/mi/microsoft-word-97.json b/data/software/mi/microsoft-word-97.json new file mode 100644 index 000000000000..ae0ffce8760d --- /dev/null +++ b/data/software/mi/microsoft-word-97.json @@ -0,0 +1,9 @@ +{ + "slug": "microsoft-word-97", + "name": "Microsoft Word 97", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q97782987" + ], + "release_date": "1996-01-01" +} diff --git a/data/software/mi/microsoft-word-viewer.json b/data/software/mi/microsoft-word-viewer.json new file mode 100644 index 000000000000..e54f00027583 --- /dev/null +++ b/data/software/mi/microsoft-word-viewer.json @@ -0,0 +1,14 @@ +{ + "slug": "microsoft-word-viewer", + "name": "Microsoft Word Viewer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6840267" + ], + "developers": [ + "Microsoft" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/mi/microsoft-works-4-0.json b/data/software/mi/microsoft-works-4-0.json new file mode 100644 index 000000000000..0d705d93d0c7 --- /dev/null +++ b/data/software/mi/microsoft-works-4-0.json @@ -0,0 +1,11 @@ +{ + "slug": "microsoft-works-4-0", + "name": "Microsoft Works 4.0", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115117120" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/mi/microstation.json b/data/software/mi/microstation.json new file mode 100644 index 000000000000..2c56435ae572 --- /dev/null +++ b/data/software/mi/microstation.json @@ -0,0 +1,17 @@ +{ + "slug": "microstation", + "name": "MicroStation", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1348042" + ], + "developers": [ + "Bentley Systems" + ], + "operating_systems": [ + "Microsoft Windows" + ], + "genres": [ + "computer-aided design" + ] +} diff --git a/data/software/mi/microstrategy-analytics.json b/data/software/mi/microstrategy-analytics.json new file mode 100644 index 000000000000..4d6478f8b888 --- /dev/null +++ b/data/software/mi/microstrategy-analytics.json @@ -0,0 +1,11 @@ +{ + "slug": "microstrategy-analytics", + "name": "MicroStrategy Analytics", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18344572" + ], + "developers": [ + "Strategy" + ] +} diff --git a/data/software/mi/microxwin.json b/data/software/mi/microxwin.json new file mode 100644 index 000000000000..8d0fa649ae8f --- /dev/null +++ b/data/software/mi/microxwin.json @@ -0,0 +1,8 @@ +{ + "slug": "microxwin", + "name": "MicroXwin", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4044193" + ] +} diff --git a/data/software/mi/midaco.json b/data/software/mi/midaco.json new file mode 100644 index 000000000000..b34ec1c32c63 --- /dev/null +++ b/data/software/mi/midaco.json @@ -0,0 +1,8 @@ +{ + "slug": "midaco", + "name": "MIDACO", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28402293" + ] +} diff --git a/data/software/mi/midas-technical-analysis.json b/data/software/mi/midas-technical-analysis.json new file mode 100644 index 000000000000..6ca6386f92a7 --- /dev/null +++ b/data/software/mi/midas-technical-analysis.json @@ -0,0 +1,8 @@ +{ + "slug": "midas-technical-analysis", + "name": "MIDAS technical analysis", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q30590341" + ] +} diff --git a/data/software/mi/midasai.json b/data/software/mi/midasai.json new file mode 100644 index 000000000000..4658137cd198 --- /dev/null +++ b/data/software/mi/midasai.json @@ -0,0 +1,8 @@ +{ + "slug": "midasai", + "name": "MidasAI", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138945830" + ] +} diff --git a/data/software/mi/midaswww.json b/data/software/mi/midaswww.json new file mode 100644 index 000000000000..0fd142cee246 --- /dev/null +++ b/data/software/mi/midaswww.json @@ -0,0 +1,8 @@ +{ + "slug": "midaswww", + "name": "MidasWWW", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3312610" + ] +} diff --git a/data/software/mi/middleware-for-robotic-applications.json b/data/software/mi/middleware-for-robotic-applications.json new file mode 100644 index 000000000000..38f4511b551d --- /dev/null +++ b/data/software/mi/middleware-for-robotic-applications.json @@ -0,0 +1,11 @@ +{ + "slug": "middleware-for-robotic-applications", + "name": "Middleware for Robotic Applications", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6842137" + ], + "developers": [ + "MetraLabs GmbH" + ] +} diff --git a/data/software/mi/midijam.json b/data/software/mi/midijam.json new file mode 100644 index 000000000000..295c0d0e9663 --- /dev/null +++ b/data/software/mi/midijam.json @@ -0,0 +1,8 @@ +{ + "slug": "midijam", + "name": "MIDIJam", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6716003" + ] +} diff --git a/data/software/mi/midipoet.json b/data/software/mi/midipoet.json new file mode 100644 index 000000000000..513e0c3a6350 --- /dev/null +++ b/data/software/mi/midipoet.json @@ -0,0 +1,12 @@ +{ + "slug": "midipoet", + "name": "MIDIpoet", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125535673" + ], + "release_date": "2002-01-01", + "programming_languages": [ + "Visual Basic" + ] +} diff --git a/data/software/mi/miga-data-viewer.json b/data/software/mi/miga-data-viewer.json new file mode 100644 index 000000000000..69019372dbd6 --- /dev/null +++ b/data/software/mi/miga-data-viewer.json @@ -0,0 +1,15 @@ +{ + "slug": "miga-data-viewer", + "name": "Miga Data Viewer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105838459" + ], + "release_date": "2013-07-19", + "programming_languages": [ + "PHP" + ], + "licenses": [ + "GNU General Public License, version 3.0" + ] +} diff --git a/data/software/mi/migration-assistant.json b/data/software/mi/migration-assistant.json new file mode 100644 index 000000000000..2ed34a33a97a --- /dev/null +++ b/data/software/mi/migration-assistant.json @@ -0,0 +1,14 @@ +{ + "slug": "migration-assistant", + "name": "Migration Assistant", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3625656" + ], + "developers": [ + "Apple Inc." + ], + "operating_systems": [ + "macOS" + ] +} diff --git a/data/software/mi/miiget.json b/data/software/mi/miiget.json new file mode 100644 index 000000000000..b966796c20cd --- /dev/null +++ b/data/software/mi/miiget.json @@ -0,0 +1,8 @@ +{ + "slug": "miiget", + "name": "Miiget", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085119" + ] +} diff --git a/data/software/mi/mika-vm.json b/data/software/mi/mika-vm.json new file mode 100644 index 000000000000..954bdfdba4be --- /dev/null +++ b/data/software/mi/mika-vm.json @@ -0,0 +1,14 @@ +{ + "slug": "mika-vm", + "name": "Mika VM", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17143372" + ], + "operating_systems": [ + "cross-platform" + ], + "licenses": [ + "permissive free software license" + ] +} diff --git a/data/software/mi/mikandi.json b/data/software/mi/mikandi.json new file mode 100644 index 000000000000..bede28742ab9 --- /dev/null +++ b/data/software/mi/mikandi.json @@ -0,0 +1,8 @@ +{ + "slug": "mikandi", + "name": "MiKandi", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16927732" + ] +} diff --git a/data/software/mi/mikbug.json b/data/software/mi/mikbug.json new file mode 100644 index 000000000000..07e908fcd241 --- /dev/null +++ b/data/software/mi/mikbug.json @@ -0,0 +1,9 @@ +{ + "slug": "mikbug", + "name": "MIKBUG", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113288821" + ], + "release_date": "1974-01-01" +} diff --git a/data/software/mi/mike-21.json b/data/software/mi/mike-21.json new file mode 100644 index 000000000000..6fa97a2d7a81 --- /dev/null +++ b/data/software/mi/mike-21.json @@ -0,0 +1,8 @@ +{ + "slug": "mike-21", + "name": "MIKE 21", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6716058" + ] +} diff --git a/data/software/mi/miki.json b/data/software/mi/miki.json new file mode 100644 index 000000000000..e2b04abfed61 --- /dev/null +++ b/data/software/mi/miki.json @@ -0,0 +1,9 @@ +{ + "slug": "miki", + "name": "Miki", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11242971" + ], + "release_date": "2009-12-04" +} diff --git a/data/software/mi/mikrosim.json b/data/software/mi/mikrosim.json new file mode 100644 index 000000000000..8c5e0f1d228d --- /dev/null +++ b/data/software/mi/mikrosim.json @@ -0,0 +1,14 @@ +{ + "slug": "mikrosim", + "name": "MikroSim", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1933827" + ], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [ + "Visual Basic" + ] +} diff --git a/data/software/mi/mildom.json b/data/software/mi/mildom.json new file mode 100644 index 000000000000..7d36416ced54 --- /dev/null +++ b/data/software/mi/mildom.json @@ -0,0 +1,8 @@ +{ + "slug": "mildom", + "name": "Mildom", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q98101125" + ] +} diff --git a/data/software/mi/miles-sound-system.json b/data/software/mi/miles-sound-system.json new file mode 100644 index 000000000000..d8aa66a85aa8 --- /dev/null +++ b/data/software/mi/miles-sound-system.json @@ -0,0 +1,14 @@ +{ + "slug": "miles-sound-system", + "name": "Miles Sound System", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1934665" + ], + "developers": [ + "Epic Games Tools" + ], + "operating_systems": [ + "cross-platform" + ] +} diff --git a/data/software/mi/milestones-professional.json b/data/software/mi/milestones-professional.json new file mode 100644 index 000000000000..f62dda89f1a8 --- /dev/null +++ b/data/software/mi/milestones-professional.json @@ -0,0 +1,8 @@ +{ + "slug": "milestones-professional", + "name": "Milestones Professional", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6851624" + ] +} diff --git a/data/software/mi/milkshape-3d.json b/data/software/mi/milkshape-3d.json new file mode 100644 index 000000000000..b239dd5e9c22 --- /dev/null +++ b/data/software/mi/milkshape-3d.json @@ -0,0 +1,8 @@ +{ + "slug": "milkshape-3d", + "name": "MilkShape 3D", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q862029" + ] +} diff --git a/data/software/mi/millennium-exchange.json b/data/software/mi/millennium-exchange.json new file mode 100644 index 000000000000..58485663006f --- /dev/null +++ b/data/software/mi/millennium-exchange.json @@ -0,0 +1,11 @@ +{ + "slug": "millennium-exchange", + "name": "Millennium Exchange", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16253927" + ], + "developers": [ + "London Stock Exchange Group" + ] +} diff --git a/data/software/mi/milvus.json b/data/software/mi/milvus.json new file mode 100644 index 000000000000..a78e2ddbe992 --- /dev/null +++ b/data/software/mi/milvus.json @@ -0,0 +1,8 @@ +{ + "slug": "milvus", + "name": "Milvus", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131309655" + ] +} diff --git a/data/software/mi/mimalloc-bench.json b/data/software/mi/mimalloc-bench.json new file mode 100644 index 000000000000..5d62d4b1e0d4 --- /dev/null +++ b/data/software/mi/mimalloc-bench.json @@ -0,0 +1,17 @@ +{ + "slug": "mimalloc-bench", + "name": "mimalloc-bench", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124078061" + ], + "developers": [ + "Daan Leijen" + ], + "programming_languages": [ + "shell script" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/mi/mimedia.json b/data/software/mi/mimedia.json new file mode 100644 index 000000000000..dab2ef411c91 --- /dev/null +++ b/data/software/mi/mimedia.json @@ -0,0 +1,11 @@ +{ + "slug": "mimedia", + "name": "MiMedia", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6826921" + ], + "developers": [ + "MiMedia" + ] +} diff --git a/data/software/mi/mimeg.json b/data/software/mi/mimeg.json new file mode 100644 index 000000000000..86d7c92a6fa4 --- /dev/null +++ b/data/software/mi/mimeg.json @@ -0,0 +1,18 @@ +{ + "slug": "mimeg", + "name": "MiMeG", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105229752" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [ + "Java" + ], + "licenses": [ + "GNU General Public License, version 2.0" + ] +} diff --git a/data/software/mi/mimic-simulation-software.json b/data/software/mi/mimic-simulation-software.json new file mode 100644 index 000000000000..89dd63cf9092 --- /dev/null +++ b/data/software/mi/mimic-simulation-software.json @@ -0,0 +1,8 @@ +{ + "slug": "mimic-simulation-software", + "name": "MiMiC Simulation Software", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6826923" + ] +} diff --git a/data/software/mi/mimorian.json b/data/software/mi/mimorian.json new file mode 100644 index 000000000000..7340226ddd03 --- /dev/null +++ b/data/software/mi/mimorian.json @@ -0,0 +1,8 @@ +{ + "slug": "mimorian", + "name": "Mimorian", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139864656" + ] +} diff --git a/data/software/mi/min-per-smies.json b/data/software/mi/min-per-smies.json new file mode 100644 index 000000000000..1d9354f4be10 --- /dev/null +++ b/data/software/mi/min-per-smies.json @@ -0,0 +1,8 @@ +{ + "slug": "min-per-smies", + "name": "Minä Peräsmies", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18345471" + ] +} diff --git a/data/software/mi/minbar.json b/data/software/mi/minbar.json new file mode 100644 index 000000000000..987f6b391a07 --- /dev/null +++ b/data/software/mi/minbar.json @@ -0,0 +1,8 @@ +{ + "slug": "minbar", + "name": "Minbar", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4204736" + ] +} diff --git a/data/software/mi/minbif.json b/data/software/mi/minbif.json new file mode 100644 index 000000000000..45b508ba0815 --- /dev/null +++ b/data/software/mi/minbif.json @@ -0,0 +1,8 @@ +{ + "slug": "minbif", + "name": "Minbif", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62854227" + ] +} diff --git a/data/software/mi/mind-s-eye.json b/data/software/mi/mind-s-eye.json new file mode 100644 index 000000000000..9e9aaea10956 --- /dev/null +++ b/data/software/mi/mind-s-eye.json @@ -0,0 +1,8 @@ +{ + "slug": "mind-s-eye", + "name": "Mind's Eye", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6863376" + ] +} diff --git a/data/software/mi/mind-vector.json b/data/software/mi/mind-vector.json new file mode 100644 index 000000000000..93a150791f7b --- /dev/null +++ b/data/software/mi/mind-vector.json @@ -0,0 +1,8 @@ +{ + "slug": "mind-vector", + "name": "Mind Vector", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q65034554" + ] +} diff --git a/data/software/mi/minddecider.json b/data/software/mi/minddecider.json new file mode 100644 index 000000000000..0c9d0ad4b573 --- /dev/null +++ b/data/software/mi/minddecider.json @@ -0,0 +1,8 @@ +{ + "slug": "minddecider", + "name": "MindDecider", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q47494301" + ] +} diff --git a/data/software/mi/mindgenius.json b/data/software/mi/mindgenius.json new file mode 100644 index 000000000000..f9290b369463 --- /dev/null +++ b/data/software/mi/mindgenius.json @@ -0,0 +1,8 @@ +{ + "slug": "mindgenius", + "name": "MindGenius", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16933913" + ] +} diff --git a/data/software/mi/mindmanager.json b/data/software/mi/mindmanager.json new file mode 100644 index 000000000000..f1bfb2934d99 --- /dev/null +++ b/data/software/mi/mindmanager.json @@ -0,0 +1,14 @@ +{ + "slug": "mindmanager", + "name": "MindManager", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1397499" + ], + "developers": [ + "Mindjet" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/mi/mindmap-lx.json b/data/software/mi/mindmap-lx.json new file mode 100644 index 000000000000..1a6ff99aebfe --- /dev/null +++ b/data/software/mi/mindmap-lx.json @@ -0,0 +1,14 @@ +{ + "slug": "mindmap-lx", + "name": "MindMap/LX", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121672430" + ], + "developers": [ + "D&A Software" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/mi/mindmaple.json b/data/software/mi/mindmaple.json new file mode 100644 index 000000000000..20231e61f8ef --- /dev/null +++ b/data/software/mi/mindmaple.json @@ -0,0 +1,8 @@ +{ + "slug": "mindmaple", + "name": "MindMaple", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q65034523" + ] +} diff --git a/data/software/mi/mindmapper.json b/data/software/mi/mindmapper.json new file mode 100644 index 000000000000..ab7f872fea3e --- /dev/null +++ b/data/software/mi/mindmapper.json @@ -0,0 +1,8 @@ +{ + "slug": "mindmapper", + "name": "MindMapper", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6863416" + ] +} diff --git a/data/software/mi/mindmaster.json b/data/software/mi/mindmaster.json new file mode 100644 index 000000000000..19f2468debbe --- /dev/null +++ b/data/software/mi/mindmaster.json @@ -0,0 +1,16 @@ +{ + "slug": "mindmaster", + "name": "MindMaster", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106141910" + ], + "operating_systems": [ + "iOS", + "macOS", + "Microsoft Windows" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/mi/mindmeister.json b/data/software/mi/mindmeister.json new file mode 100644 index 000000000000..8ade86c47907 --- /dev/null +++ b/data/software/mi/mindmeister.json @@ -0,0 +1,8 @@ +{ + "slug": "mindmeister", + "name": "MindMeister", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6863418" + ] +} diff --git a/data/software/mi/mindomo.json b/data/software/mi/mindomo.json new file mode 100644 index 000000000000..cd54e9dd41cb --- /dev/null +++ b/data/software/mi/mindomo.json @@ -0,0 +1,8 @@ +{ + "slug": "mindomo", + "name": "Mindomo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6863871" + ] +} diff --git a/data/software/mi/mindsdb.json b/data/software/mi/mindsdb.json new file mode 100644 index 000000000000..7151aa415f81 --- /dev/null +++ b/data/software/mi/mindsdb.json @@ -0,0 +1,8 @@ +{ + "slug": "mindsdb", + "name": "MindsDB", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123058723" + ] +} diff --git a/data/software/mi/mindview.json b/data/software/mi/mindview.json new file mode 100644 index 000000000000..51f9508dac53 --- /dev/null +++ b/data/software/mi/mindview.json @@ -0,0 +1,8 @@ +{ + "slug": "mindview", + "name": "MindView", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1356308" + ] +} diff --git a/data/software/mi/mindwrite.json b/data/software/mi/mindwrite.json new file mode 100644 index 000000000000..46cc823be634 --- /dev/null +++ b/data/software/mi/mindwrite.json @@ -0,0 +1,8 @@ +{ + "slug": "mindwrite", + "name": "MindWrite", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6863427" + ] +} diff --git a/data/software/mi/mineral-waste-manager.json b/data/software/mi/mineral-waste-manager.json new file mode 100644 index 000000000000..cdd75dde8504 --- /dev/null +++ b/data/software/mi/mineral-waste-manager.json @@ -0,0 +1,9 @@ +{ + "slug": "mineral-waste-manager", + "name": "Mineral Waste Manager", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137584481" + ], + "release_date": "2021-01-01" +} diff --git a/data/software/mi/mineralsoft.json b/data/software/mi/mineralsoft.json new file mode 100644 index 000000000000..30ac5d58c031 --- /dev/null +++ b/data/software/mi/mineralsoft.json @@ -0,0 +1,11 @@ +{ + "slug": "mineralsoft", + "name": "MineralSoft", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135263928" + ], + "developers": [ + "Enverus" + ] +} diff --git a/data/software/mi/minerva.json b/data/software/mi/minerva.json new file mode 100644 index 000000000000..ac8ede9fe068 --- /dev/null +++ b/data/software/mi/minerva.json @@ -0,0 +1,8 @@ +{ + "slug": "minerva", + "name": "Minerva", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q132249204" + ] +} diff --git a/data/software/mi/minezy.json b/data/software/mi/minezy.json new file mode 100644 index 000000000000..1ad37615e20a --- /dev/null +++ b/data/software/mi/minezy.json @@ -0,0 +1,8 @@ +{ + "slug": "minezy", + "name": "minezy", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085120" + ] +} diff --git a/data/software/mi/mingle.json b/data/software/mi/mingle.json new file mode 100644 index 000000000000..598cc9c1e6fb --- /dev/null +++ b/data/software/mi/mingle.json @@ -0,0 +1,8 @@ +{ + "slug": "mingle", + "name": "Mingle", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q866035" + ] +} diff --git a/data/software/mi/mingw-w64.json b/data/software/mi/mingw-w64.json new file mode 100644 index 000000000000..e9171643e382 --- /dev/null +++ b/data/software/mi/mingw-w64.json @@ -0,0 +1,21 @@ +{ + "slug": "mingw-w64", + "name": "Mingw-w64", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q83868416" + ], + "developers": [ + "Jonathan Yong", + "Kai Tietz", + "Jacek Caban" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "licenses": [ + "GNU Library General Public License, version 2.0", + "Zope Public License" + ] +} diff --git a/data/software/mi/mini-office-ii.json b/data/software/mi/mini-office-ii.json new file mode 100644 index 000000000000..dad163e7c7e8 --- /dev/null +++ b/data/software/mi/mini-office-ii.json @@ -0,0 +1,11 @@ +{ + "slug": "mini-office-ii", + "name": "Mini Office II", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6865066" + ], + "developers": [ + "Europress" + ] +} diff --git a/data/software/mi/minicare.json b/data/software/mi/minicare.json new file mode 100644 index 000000000000..e000d5940551 --- /dev/null +++ b/data/software/mi/minicare.json @@ -0,0 +1,15 @@ +{ + "slug": "minicare", + "name": "Minicare", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124300361" + ], + "release_date": "1993-01-01", + "developers": [ + "Epsitec SA" + ], + "publishers": [ + "Epsitec SA" + ] +} diff --git a/data/software/mi/minidlna.json b/data/software/mi/minidlna.json new file mode 100644 index 000000000000..b4ded89ac029 --- /dev/null +++ b/data/software/mi/minidlna.json @@ -0,0 +1,8 @@ +{ + "slug": "minidlna", + "name": "MiniDLNA", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62854216" + ] +} diff --git a/data/software/mi/minigui.json b/data/software/mi/minigui.json new file mode 100644 index 000000000000..45c6005f0b4f --- /dev/null +++ b/data/software/mi/minigui.json @@ -0,0 +1,8 @@ +{ + "slug": "minigui", + "name": "MiniGUI", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6864992" + ] +} diff --git a/data/software/mi/minimap2.json b/data/software/mi/minimap2.json new file mode 100644 index 000000000000..ec4371b959cc --- /dev/null +++ b/data/software/mi/minimap2.json @@ -0,0 +1,8 @@ +{ + "slug": "minimap2", + "name": "minimap2", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113018356" + ] +} diff --git a/data/software/mi/minipanzer-and-megapanzer.json b/data/software/mi/minipanzer-and-megapanzer.json new file mode 100644 index 000000000000..91f46d592727 --- /dev/null +++ b/data/software/mi/minipanzer-and-megapanzer.json @@ -0,0 +1,11 @@ +{ + "slug": "minipanzer-and-megapanzer", + "name": "MiniPanzer and MegaPanzer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17101002" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/mi/minitool-partition-wizard.json b/data/software/mi/minitool-partition-wizard.json new file mode 100644 index 000000000000..3482f15006b7 --- /dev/null +++ b/data/software/mi/minitool-partition-wizard.json @@ -0,0 +1,11 @@ +{ + "slug": "minitool-partition-wizard", + "name": "MiniTool Partition Wizard", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q19757819" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/mi/minitsfo.json b/data/software/mi/minitsfo.json new file mode 100644 index 000000000000..22a1ee99a478 --- /dev/null +++ b/data/software/mi/minitsfo.json @@ -0,0 +1,8 @@ +{ + "slug": "minitsfo", + "name": "MiniTSFO", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6864996" + ] +} diff --git a/data/software/mi/minitube.json b/data/software/mi/minitube.json new file mode 100644 index 000000000000..1d32128851ae --- /dev/null +++ b/data/software/mi/minitube.json @@ -0,0 +1,11 @@ +{ + "slug": "minitube", + "name": "Minitube", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62854210" + ], + "licenses": [ + "GNU General Public License, version 3.0" + ] +} diff --git a/data/software/mi/minix-vmd.json b/data/software/mi/minix-vmd.json new file mode 100644 index 000000000000..28ee9104ccfb --- /dev/null +++ b/data/software/mi/minix-vmd.json @@ -0,0 +1,8 @@ +{ + "slug": "minix-vmd", + "name": "Minix-vmd", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17045595" + ] +} diff --git a/data/software/mi/minos.json b/data/software/mi/minos.json new file mode 100644 index 000000000000..b2aae3dbfd7f --- /dev/null +++ b/data/software/mi/minos.json @@ -0,0 +1,8 @@ +{ + "slug": "minos", + "name": "MINOS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18351079" + ] +} diff --git a/data/software/mi/minto.json b/data/software/mi/minto.json new file mode 100644 index 000000000000..e35273ad05b0 --- /dev/null +++ b/data/software/mi/minto.json @@ -0,0 +1,11 @@ +{ + "slug": "minto", + "name": "MINTO", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6716180" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/mi/minuit.json b/data/software/mi/minuit.json new file mode 100644 index 000000000000..b0772301980c --- /dev/null +++ b/data/software/mi/minuit.json @@ -0,0 +1,11 @@ +{ + "slug": "minuit", + "name": "MINUIT", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q981072" + ], + "programming_languages": [ + "Fortran" + ] +} diff --git a/data/software/mi/mioffice.json b/data/software/mi/mioffice.json new file mode 100644 index 000000000000..281fcdb8cd1f --- /dev/null +++ b/data/software/mi/mioffice.json @@ -0,0 +1,17 @@ +{ + "slug": "mioffice", + "name": "MiOffice", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138635625" + ], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [ + "TypeScript" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/mi/miracl.json b/data/software/mi/miracl.json new file mode 100644 index 000000000000..2da8d198d930 --- /dev/null +++ b/data/software/mi/miracl.json @@ -0,0 +1,8 @@ +{ + "slug": "miracl", + "name": "miracl", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2879233" + ] +} diff --git a/data/software/mi/mirage-world.json b/data/software/mi/mirage-world.json new file mode 100644 index 000000000000..a6c94068c98d --- /dev/null +++ b/data/software/mi/mirage-world.json @@ -0,0 +1,8 @@ +{ + "slug": "mirage-world", + "name": "Mirage World", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q48772155" + ] +} diff --git a/data/software/mi/mirage2iso.json b/data/software/mi/mirage2iso.json new file mode 100644 index 000000000000..5f0a9ac6dce8 --- /dev/null +++ b/data/software/mi/mirage2iso.json @@ -0,0 +1,8 @@ +{ + "slug": "mirage2iso", + "name": "mirage2iso", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975229" + ] +} diff --git a/data/software/mi/mirageos.json b/data/software/mi/mirageos.json new file mode 100644 index 000000000000..8a6eee3e59ac --- /dev/null +++ b/data/software/mi/mirageos.json @@ -0,0 +1,8 @@ +{ + "slug": "mirageos", + "name": "MirageOS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3315841" + ] +} diff --git a/data/software/mi/mirek-s-cellebration.json b/data/software/mi/mirek-s-cellebration.json new file mode 100644 index 000000000000..e8144f11dc37 --- /dev/null +++ b/data/software/mi/mirek-s-cellebration.json @@ -0,0 +1,15 @@ +{ + "slug": "mirek-s-cellebration", + "name": "Mirek's Cellebration", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6873124" + ], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [ + "Java", + "Delphi" + ] +} diff --git a/data/software/mi/mirmon.json b/data/software/mi/mirmon.json new file mode 100644 index 000000000000..e0c210e6adc2 --- /dev/null +++ b/data/software/mi/mirmon.json @@ -0,0 +1,8 @@ +{ + "slug": "mirmon", + "name": "mirmon", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62854197" + ] +} diff --git a/data/software/mi/mirrativ.json b/data/software/mi/mirrativ.json new file mode 100644 index 000000000000..8c9aa86c0fc5 --- /dev/null +++ b/data/software/mi/mirrativ.json @@ -0,0 +1,11 @@ +{ + "slug": "mirrativ", + "name": "Mirrativ", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28684197" + ], + "developers": [ + "Mirrativ" + ] +} diff --git a/data/software/mi/mirror.json b/data/software/mi/mirror.json new file mode 100644 index 000000000000..4f8659f266c9 --- /dev/null +++ b/data/software/mi/mirror.json @@ -0,0 +1,11 @@ +{ + "slug": "mirror", + "name": "Mirror", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140374737" + ], + "developers": [ + "Daniels AI Design Studio" + ] +} diff --git a/data/software/mi/mirrorselect.json b/data/software/mi/mirrorselect.json new file mode 100644 index 000000000000..bf7ff658ca10 --- /dev/null +++ b/data/software/mi/mirrorselect.json @@ -0,0 +1,8 @@ +{ + "slug": "mirrorselect", + "name": "mirrorselect", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975230" + ] +} diff --git a/data/software/mi/mirth-connect.json b/data/software/mi/mirth-connect.json new file mode 100644 index 000000000000..15719a9e2061 --- /dev/null +++ b/data/software/mi/mirth-connect.json @@ -0,0 +1,8 @@ +{ + "slug": "mirth-connect", + "name": "Mirth Connect", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109581195" + ] +} diff --git a/data/software/mi/misata.json b/data/software/mi/misata.json new file mode 100644 index 000000000000..1d18e727751a --- /dev/null +++ b/data/software/mi/misata.json @@ -0,0 +1,17 @@ +{ + "slug": "misata", + "name": "Misata", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140440958" + ], + "programming_languages": [ + "Python" + ], + "licenses": [ + "MIT License" + ], + "genres": [ + "synthetic data" + ] +} diff --git a/data/software/mi/misp-threat-sharing.json b/data/software/mi/misp-threat-sharing.json new file mode 100644 index 000000000000..b7d7ce3f208c --- /dev/null +++ b/data/software/mi/misp-threat-sharing.json @@ -0,0 +1,11 @@ +{ + "slug": "misp-threat-sharing", + "name": "MISP Threat Sharing", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63017823" + ], + "programming_languages": [ + "PHP" + ] +} diff --git a/data/software/mi/mission-control.json b/data/software/mi/mission-control.json new file mode 100644 index 000000000000..bf9c099b32b0 --- /dev/null +++ b/data/software/mi/mission-control.json @@ -0,0 +1,11 @@ +{ + "slug": "mission-control", + "name": "Mission Control", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4044360" + ], + "developers": [ + "Apple Inc." + ] +} diff --git a/data/software/mi/mistral.json b/data/software/mi/mistral.json new file mode 100644 index 000000000000..e03c9f447871 --- /dev/null +++ b/data/software/mi/mistral.json @@ -0,0 +1,8 @@ +{ + "slug": "mistral", + "name": "Mistral", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3316995" + ] +} diff --git a/data/software/mi/mit-shm.json b/data/software/mi/mit-shm.json new file mode 100644 index 000000000000..39989915b461 --- /dev/null +++ b/data/software/mi/mit-shm.json @@ -0,0 +1,11 @@ +{ + "slug": "mit-shm", + "name": "MIT-SHM", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4043434" + ], + "developers": [ + "X.Org Foundation" + ] +} diff --git a/data/software/mi/mitaka.json b/data/software/mi/mitaka.json new file mode 100644 index 000000000000..1ad072aa5066 --- /dev/null +++ b/data/software/mi/mitaka.json @@ -0,0 +1,11 @@ +{ + "slug": "mitaka", + "name": "Mitaka", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11233469" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/mi/mitap.json b/data/software/mi/mitap.json new file mode 100644 index 000000000000..81e9df38dd60 --- /dev/null +++ b/data/software/mi/mitap.json @@ -0,0 +1,8 @@ +{ + "slug": "mitap", + "name": "MiTAP", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6826954" + ] +} diff --git a/data/software/mi/mitid.json b/data/software/mi/mitid.json new file mode 100644 index 000000000000..a325858d048c --- /dev/null +++ b/data/software/mi/mitid.json @@ -0,0 +1,8 @@ +{ + "slug": "mitid", + "name": "MitID", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109729154" + ] +} diff --git a/data/software/mi/mitre-syntactic-analysis-procedure.json b/data/software/mi/mitre-syntactic-analysis-procedure.json new file mode 100644 index 000000000000..6b1076e22ef4 --- /dev/null +++ b/data/software/mi/mitre-syntactic-analysis-procedure.json @@ -0,0 +1,8 @@ +{ + "slug": "mitre-syntactic-analysis-procedure", + "name": "MITRE Syntactic Analysis Procedure", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087832" + ] +} diff --git a/data/software/mi/mitsumori-lab.json b/data/software/mi/mitsumori-lab.json new file mode 100644 index 000000000000..3c8e3b69a7ba --- /dev/null +++ b/data/software/mi/mitsumori-lab.json @@ -0,0 +1,11 @@ +{ + "slug": "mitsumori-lab", + "name": "Mitsumori Lab", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139603414" + ], + "developers": [ + "Fu Ang" + ] +} diff --git a/data/software/mi/mitsurugi-kamui-hikae.json b/data/software/mi/mitsurugi-kamui-hikae.json new file mode 100644 index 000000000000..927fde86d50e --- /dev/null +++ b/data/software/mi/mitsurugi-kamui-hikae.json @@ -0,0 +1,15 @@ +{ + "slug": "mitsurugi-kamui-hikae", + "name": "Mitsurugi Kamui Hikae", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q65088478" + ], + "release_date": "2014-03-10", + "publishers": [ + "Playism" + ], + "genres": [ + "hack and slash" + ] +} diff --git a/data/software/mi/mix-2-0.json b/data/software/mi/mix-2-0.json new file mode 100644 index 000000000000..e76c164982e7 --- /dev/null +++ b/data/software/mi/mix-2-0.json @@ -0,0 +1,8 @@ +{ + "slug": "mix-2-0", + "name": "MIX 2.0", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087834" + ] +} diff --git a/data/software/mi/mixbit.json b/data/software/mi/mixbit.json new file mode 100644 index 000000000000..c21407c91157 --- /dev/null +++ b/data/software/mi/mixbit.json @@ -0,0 +1,17 @@ +{ + "slug": "mixbit", + "name": "MixBit", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q14545241" + ], + "developers": [ + "Steve Chen" + ], + "operating_systems": [ + "iOS" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/mi/mixcr.json b/data/software/mi/mixcr.json new file mode 100644 index 000000000000..9ac997820fbe --- /dev/null +++ b/data/software/mi/mixcr.json @@ -0,0 +1,8 @@ +{ + "slug": "mixcr", + "name": "MiXCR", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113546710" + ] +} diff --git a/data/software/mi/mixcraft.json b/data/software/mi/mixcraft.json new file mode 100644 index 000000000000..ac63e4cc2a5f --- /dev/null +++ b/data/software/mi/mixcraft.json @@ -0,0 +1,8 @@ +{ + "slug": "mixcraft", + "name": "Mixcraft", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6883835" + ] +} diff --git a/data/software/mi/mixed-reality-toolkit.json b/data/software/mi/mixed-reality-toolkit.json new file mode 100644 index 000000000000..3b199009ebef --- /dev/null +++ b/data/software/mi/mixed-reality-toolkit.json @@ -0,0 +1,8 @@ +{ + "slug": "mixed-reality-toolkit", + "name": "Mixed Reality Toolkit", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120467737" + ] +} diff --git a/data/software/mi/mixer-app.json b/data/software/mi/mixer-app.json new file mode 100644 index 000000000000..254a0272cf89 --- /dev/null +++ b/data/software/mi/mixer-app.json @@ -0,0 +1,8 @@ +{ + "slug": "mixer-app", + "name": "Mixer (app)", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28957030" + ] +} diff --git a/data/software/mi/mixmaster-anonymous-remailer.json b/data/software/mi/mixmaster-anonymous-remailer.json new file mode 100644 index 000000000000..2ca8dd384e59 --- /dev/null +++ b/data/software/mi/mixmaster-anonymous-remailer.json @@ -0,0 +1,11 @@ +{ + "slug": "mixmaster-anonymous-remailer", + "name": "Mixmaster anonymous remailer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q177722" + ], + "developers": [ + "Len Sassaman" + ] +} diff --git a/data/software/mi/mixmax-generator.json b/data/software/mi/mixmax-generator.json new file mode 100644 index 000000000000..2a8302429edd --- /dev/null +++ b/data/software/mi/mixmax-generator.json @@ -0,0 +1,8 @@ +{ + "slug": "mixmax-generator", + "name": "MIXMAX generator", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25305197" + ] +} diff --git a/data/software/mi/mixmeister.json b/data/software/mi/mixmeister.json new file mode 100644 index 000000000000..c06a385b6240 --- /dev/null +++ b/data/software/mi/mixmeister.json @@ -0,0 +1,8 @@ +{ + "slug": "mixmeister", + "name": "MixMeister", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1940836" + ] +} diff --git a/data/software/mi/mixradio.json b/data/software/mi/mixradio.json new file mode 100644 index 000000000000..883663649386 --- /dev/null +++ b/data/software/mi/mixradio.json @@ -0,0 +1,24 @@ +{ + "slug": "mixradio", + "name": "MixRadio", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1164682" + ], + "developers": [ + "Z Intermediate Global Corporation" + ], + "operating_systems": [ + "macOS", + "Tizen", + "Amazon Appstore", + "iOS", + "BlackBerry", + "Microsoft Windows", + "Windows 10 Mobile", + "Sonos", + "Harman Kardon", + "watchOS", + "Windows Phone" + ] +} diff --git a/data/software/mi/mizar.json b/data/software/mi/mizar.json new file mode 100644 index 000000000000..ce649ee0403f --- /dev/null +++ b/data/software/mi/mizar.json @@ -0,0 +1,11 @@ +{ + "slug": "mizar", + "name": "Mizar", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1609529" + ], + "licenses": [ + "GNU General Public License, version 3.0" + ] +} diff --git a/data/software/mk/mks-toolkit.json b/data/software/mk/mks-toolkit.json new file mode 100644 index 000000000000..5c596ed3a81f --- /dev/null +++ b/data/software/mk/mks-toolkit.json @@ -0,0 +1,12 @@ +{ + "slug": "mks-toolkit", + "name": "MKS Toolkit", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4272073" + ], + "developers": [ + "MKS Inc.", + "Parametric Technology Corporation" + ] +} diff --git a/data/software/ml/mlcad.json b/data/software/ml/mlcad.json new file mode 100644 index 000000000000..ded7f515c4eb --- /dev/null +++ b/data/software/ml/mlcad.json @@ -0,0 +1,8 @@ +{ + "slug": "mlcad", + "name": "MLCad", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2160848" + ] +} diff --git a/data/software/ml/mldesigner.json b/data/software/ml/mldesigner.json new file mode 100644 index 000000000000..3223d3953fcb --- /dev/null +++ b/data/software/ml/mldesigner.json @@ -0,0 +1,8 @@ +{ + "slug": "mldesigner", + "name": "MLDesigner", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1881609" + ] +} diff --git a/data/software/ml/mlir.json b/data/software/ml/mlir.json new file mode 100644 index 000000000000..d41cda4bf047 --- /dev/null +++ b/data/software/ml/mlir.json @@ -0,0 +1,8 @@ +{ + "slug": "mlir", + "name": "MLIR", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120535821" + ] +} diff --git a/data/software/ml/mlmmj.json b/data/software/ml/mlmmj.json new file mode 100644 index 000000000000..d7e2981c77c3 --- /dev/null +++ b/data/software/ml/mlmmj.json @@ -0,0 +1,8 @@ +{ + "slug": "mlmmj", + "name": "mlmmj", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62854183" + ] +} diff --git a/data/software/ml/mlocate.json b/data/software/ml/mlocate.json new file mode 100644 index 000000000000..9b93d87c2c9e --- /dev/null +++ b/data/software/ml/mlocate.json @@ -0,0 +1,8 @@ +{ + "slug": "mlocate", + "name": "mlocate", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62854174" + ] +} diff --git a/data/software/ml/mlton.json b/data/software/ml/mlton.json new file mode 100644 index 000000000000..392203a31ffe --- /dev/null +++ b/data/software/ml/mlton.json @@ -0,0 +1,8 @@ +{ + "slug": "mlton", + "name": "MLton", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17125754" + ] +} diff --git a/data/software/ml/mlwin.json b/data/software/ml/mlwin.json new file mode 100644 index 000000000000..f817531742a0 --- /dev/null +++ b/data/software/ml/mlwin.json @@ -0,0 +1,11 @@ +{ + "slug": "mlwin", + "name": "MLwiN", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6716702" + ], + "developers": [ + "University of Bristol" + ] +} diff --git a/data/software/mm/mmana.json b/data/software/mm/mmana.json new file mode 100644 index 000000000000..917baef032d2 --- /dev/null +++ b/data/software/mm/mmana.json @@ -0,0 +1,11 @@ +{ + "slug": "mmana", + "name": "MMANA", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5988297" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/mm/mmax2.json b/data/software/mm/mmax2.json new file mode 100644 index 000000000000..fd28afff055b --- /dev/null +++ b/data/software/mm/mmax2.json @@ -0,0 +1,8 @@ +{ + "slug": "mmax2", + "name": "MMax2", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085121" + ] +} diff --git a/data/software/mm/mmdf.json b/data/software/mm/mmdf.json new file mode 100644 index 000000000000..a653bd34fcdd --- /dev/null +++ b/data/software/mm/mmdf.json @@ -0,0 +1,8 @@ +{ + "slug": "mmdf", + "name": "MMDF", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1495193" + ] +} diff --git a/data/software/mm/mmseqs2.json b/data/software/mm/mmseqs2.json new file mode 100644 index 000000000000..53f7f63b16c0 --- /dev/null +++ b/data/software/mm/mmseqs2.json @@ -0,0 +1,11 @@ +{ + "slug": "mmseqs2", + "name": "MMSeqs2", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q114840759" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/mm/mmt.json b/data/software/mm/mmt.json new file mode 100644 index 000000000000..d109dc2abc29 --- /dev/null +++ b/data/software/mm/mmt.json @@ -0,0 +1,8 @@ +{ + "slug": "mmt", + "name": "MMT", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6716860" + ] +} diff --git a/data/software/mn/mne-python.json b/data/software/mn/mne-python.json new file mode 100644 index 000000000000..5832721dcc17 --- /dev/null +++ b/data/software/mn/mne-python.json @@ -0,0 +1,8 @@ +{ + "slug": "mne-python", + "name": "MNE-Python", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112204836" + ] +} diff --git a/data/software/mn/mnemomap.json b/data/software/mn/mnemomap.json new file mode 100644 index 000000000000..9236c2bfc6e9 --- /dev/null +++ b/data/software/mn/mnemomap.json @@ -0,0 +1,8 @@ +{ + "slug": "mnemomap", + "name": "Mnemomap", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085122" + ] +} diff --git a/data/software/mn/mnet.json b/data/software/mn/mnet.json new file mode 100644 index 000000000000..7da239e7d307 --- /dev/null +++ b/data/software/mn/mnet.json @@ -0,0 +1,8 @@ +{ + "slug": "mnet", + "name": "Mnet", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3317502" + ] +} diff --git a/data/software/mo/moab-cluster-suite.json b/data/software/mo/moab-cluster-suite.json new file mode 100644 index 000000000000..b567ad796827 --- /dev/null +++ b/data/software/mo/moab-cluster-suite.json @@ -0,0 +1,8 @@ +{ + "slug": "moab-cluster-suite", + "name": "Moab Cluster Suite", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6886316" + ] +} diff --git a/data/software/mo/mobaxterm.json b/data/software/mo/mobaxterm.json new file mode 100644 index 000000000000..78b06515304b --- /dev/null +++ b/data/software/mo/mobaxterm.json @@ -0,0 +1,11 @@ +{ + "slug": "mobaxterm", + "name": "MobaXterm", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q96632015" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/mo/mobile-code.json b/data/software/mo/mobile-code.json new file mode 100644 index 000000000000..290b93f1bcf7 --- /dev/null +++ b/data/software/mo/mobile-code.json @@ -0,0 +1,8 @@ +{ + "slug": "mobile-code", + "name": "Mobile code", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1178131" + ] +} diff --git a/data/software/mo/mobile-device-management.json b/data/software/mo/mobile-device-management.json new file mode 100644 index 000000000000..263a2d176119 --- /dev/null +++ b/data/software/mo/mobile-device-management.json @@ -0,0 +1,8 @@ +{ + "slug": "mobile-device-management", + "name": "mobile device management", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q973269" + ] +} diff --git a/data/software/mo/mobile-dialer.json b/data/software/mo/mobile-dialer.json new file mode 100644 index 000000000000..f698924640d7 --- /dev/null +++ b/data/software/mo/mobile-dialer.json @@ -0,0 +1,8 @@ +{ + "slug": "mobile-dialer", + "name": "Mobile dialer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6887104" + ] +} diff --git a/data/software/mo/mobile-market.json b/data/software/mo/mobile-market.json new file mode 100644 index 000000000000..74768b73774f --- /dev/null +++ b/data/software/mo/mobile-market.json @@ -0,0 +1,8 @@ +{ + "slug": "mobile-market", + "name": "Mobile Market", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q15934875" + ] +} diff --git a/data/software/mo/mobile-phonetools.json b/data/software/mo/mobile-phonetools.json new file mode 100644 index 000000000000..cab1ea02f71e --- /dev/null +++ b/data/software/mo/mobile-phonetools.json @@ -0,0 +1,11 @@ +{ + "slug": "mobile-phonetools", + "name": "mobile PhoneTools", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q9033846" + ], + "developers": [ + "Claranova" + ] +} diff --git a/data/software/mo/mobile-vocaloid-editor.json b/data/software/mo/mobile-vocaloid-editor.json new file mode 100644 index 000000000000..f3ea46662cd6 --- /dev/null +++ b/data/software/mo/mobile-vocaloid-editor.json @@ -0,0 +1,8 @@ +{ + "slug": "mobile-vocaloid-editor", + "name": "Mobile Vocaloid Editor", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22907000" + ] +} diff --git a/data/software/mo/mobilecoin.json b/data/software/mo/mobilecoin.json new file mode 100644 index 000000000000..26ae46243b7d --- /dev/null +++ b/data/software/mo/mobilecoin.json @@ -0,0 +1,15 @@ +{ + "slug": "mobilecoin", + "name": "MobileCoin", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106609131" + ], + "operating_systems": [ + "iOS", + "macOS" + ], + "licenses": [ + "GNU General Public License, version 3.0" + ] +} diff --git a/data/software/mo/mobiledit.json b/data/software/mo/mobiledit.json new file mode 100644 index 000000000000..c16298b78b95 --- /dev/null +++ b/data/software/mo/mobiledit.json @@ -0,0 +1,8 @@ +{ + "slug": "mobiledit", + "name": "MOBILedit", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6716953" + ] +} diff --git a/data/software/mo/mobilepay.json b/data/software/mo/mobilepay.json new file mode 100644 index 000000000000..6fcbb38c504b --- /dev/null +++ b/data/software/mo/mobilepay.json @@ -0,0 +1,11 @@ +{ + "slug": "mobilepay", + "name": "MobilePay", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16324144" + ], + "developers": [ + "Danske Bank" + ] +} diff --git a/data/software/mo/mobileum.json b/data/software/mo/mobileum.json new file mode 100644 index 000000000000..42c8ab50f25a --- /dev/null +++ b/data/software/mo/mobileum.json @@ -0,0 +1,8 @@ +{ + "slug": "mobileum", + "name": "Mobileum", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107538017" + ] +} diff --git a/data/software/mo/mobiola.json b/data/software/mo/mobiola.json new file mode 100644 index 000000000000..45a54c5b4b47 --- /dev/null +++ b/data/software/mo/mobiola.json @@ -0,0 +1,11 @@ +{ + "slug": "mobiola", + "name": "Mobiola", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6887343" + ], + "developers": [ + "SHAPE Services" + ] +} diff --git a/data/software/mo/mobirise.json b/data/software/mo/mobirise.json new file mode 100644 index 000000000000..e6512a231e59 --- /dev/null +++ b/data/software/mo/mobirise.json @@ -0,0 +1,15 @@ +{ + "slug": "mobirise", + "name": "Mobirise", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q42266788" + ], + "operating_systems": [ + "Mac operating system", + "Microsoft Windows" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/mo/mobis.json b/data/software/mo/mobis.json new file mode 100644 index 000000000000..0a470776dc55 --- /dev/null +++ b/data/software/mo/mobis.json @@ -0,0 +1,8 @@ +{ + "slug": "mobis", + "name": "Mobis", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140202977" + ] +} diff --git a/data/software/mo/mobizen.json b/data/software/mo/mobizen.json new file mode 100644 index 000000000000..ca708a97a5c6 --- /dev/null +++ b/data/software/mo/mobizen.json @@ -0,0 +1,8 @@ +{ + "slug": "mobizen", + "name": "Mobizen", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q12595283" + ] +} diff --git a/data/software/mo/mochiview.json b/data/software/mo/mochiview.json new file mode 100644 index 000000000000..7568a882b0f1 --- /dev/null +++ b/data/software/mo/mochiview.json @@ -0,0 +1,14 @@ +{ + "slug": "mochiview", + "name": "MochiView", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6887552" + ], + "developers": [ + "University of California, San Francisco" + ], + "programming_languages": [ + "Java" + ] +} diff --git a/data/software/mo/mockiato.json b/data/software/mo/mockiato.json new file mode 100644 index 000000000000..07bd40800c48 --- /dev/null +++ b/data/software/mo/mockiato.json @@ -0,0 +1,11 @@ +{ + "slug": "mockiato", + "name": "Mockiato", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q64153900" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/mo/mocl.json b/data/software/mo/mocl.json new file mode 100644 index 000000000000..09bef2106fc8 --- /dev/null +++ b/data/software/mo/mocl.json @@ -0,0 +1,8 @@ +{ + "slug": "mocl", + "name": "Mocl", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18346317" + ] +} diff --git a/data/software/mo/mocolo.json b/data/software/mo/mocolo.json new file mode 100644 index 000000000000..bbd0302ebbc0 --- /dev/null +++ b/data/software/mo/mocolo.json @@ -0,0 +1,8 @@ +{ + "slug": "mocolo", + "name": "Mocolo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6887853" + ] +} diff --git a/data/software/mo/mod4win.json b/data/software/mo/mod4win.json new file mode 100644 index 000000000000..b6ec2920927e --- /dev/null +++ b/data/software/mo/mod4win.json @@ -0,0 +1,14 @@ +{ + "slug": "mod4win", + "name": "Mod4Win", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6887939" + ], + "operating_systems": [ + "Microsoft Windows" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/mo/modd.json b/data/software/mo/modd.json new file mode 100644 index 000000000000..e64920df275f --- /dev/null +++ b/data/software/mo/modd.json @@ -0,0 +1,11 @@ +{ + "slug": "modd", + "name": "modd", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q119520793" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/mo/mode32.json b/data/software/mo/mode32.json new file mode 100644 index 000000000000..c65eba9ab8b7 --- /dev/null +++ b/data/software/mo/mode32.json @@ -0,0 +1,11 @@ +{ + "slug": "mode32", + "name": "MODE32", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1881665" + ], + "developers": [ + "Connectix" + ] +} diff --git a/data/software/mo/modefrontier.json b/data/software/mo/modefrontier.json new file mode 100644 index 000000000000..49a41503fc90 --- /dev/null +++ b/data/software/mo/modefrontier.json @@ -0,0 +1,8 @@ +{ + "slug": "modefrontier", + "name": "ModeFRONTIER", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113669132" + ] +} diff --git a/data/software/mo/model-based-analysis-for-chip-seq.json b/data/software/mo/model-based-analysis-for-chip-seq.json new file mode 100644 index 000000000000..635d24d120f8 --- /dev/null +++ b/data/software/mo/model-based-analysis-for-chip-seq.json @@ -0,0 +1,8 @@ +{ + "slug": "model-based-analysis-for-chip-seq", + "name": "Model-based Analysis for ChIP-Seq", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113046652" + ] +} diff --git a/data/software/mo/model-development-tools-mdt.json b/data/software/mo/model-development-tools-mdt.json new file mode 100644 index 000000000000..58af3be9aa13 --- /dev/null +++ b/data/software/mo/model-development-tools-mdt.json @@ -0,0 +1,8 @@ +{ + "slug": "model-development-tools-mdt", + "name": "Model Development Tools (MDT)", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76168235" + ] +} diff --git a/data/software/mo/model-for-prediction-across-scales.json b/data/software/mo/model-for-prediction-across-scales.json new file mode 100644 index 000000000000..8b222b33f8a3 --- /dev/null +++ b/data/software/mo/model-for-prediction-across-scales.json @@ -0,0 +1,11 @@ +{ + "slug": "model-for-prediction-across-scales", + "name": "Model for Prediction Across Scales", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q23581982" + ], + "developers": [ + "National Center for Atmospheric Research" + ] +} diff --git a/data/software/mo/model-synthesis.json b/data/software/mo/model-synthesis.json new file mode 100644 index 000000000000..aa37a8e44e1f --- /dev/null +++ b/data/software/mo/model-synthesis.json @@ -0,0 +1,8 @@ +{ + "slug": "model-synthesis", + "name": "Model synthesis", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126178117" + ] +} diff --git a/data/software/mo/model-to-model-transformation-mmt.json b/data/software/mo/model-to-model-transformation-mmt.json new file mode 100644 index 000000000000..30ab1182013e --- /dev/null +++ b/data/software/mo/model-to-model-transformation-mmt.json @@ -0,0 +1,8 @@ +{ + "slug": "model-to-model-transformation-mmt", + "name": "Model-to-Model Transformation (MMT)", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76168271" + ] +} diff --git a/data/software/mo/model-to-text-m2t.json b/data/software/mo/model-to-text-m2t.json new file mode 100644 index 000000000000..9527d96bfc0c --- /dev/null +++ b/data/software/mo/model-to-text-m2t.json @@ -0,0 +1,8 @@ +{ + "slug": "model-to-text-m2t", + "name": "Model To Text (M2T)", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76168258" + ] +} diff --git a/data/software/mo/modeller.json b/data/software/mo/modeller.json new file mode 100644 index 000000000000..a9c7b34bf277 --- /dev/null +++ b/data/software/mo/modeller.json @@ -0,0 +1,15 @@ +{ + "slug": "modeller", + "name": "MODELLER", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3859815" + ], + "developers": [ + "University of California, San Francisco" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/software/mo/models-and-counter-examples.json b/data/software/mo/models-and-counter-examples.json new file mode 100644 index 000000000000..9e099274a642 --- /dev/null +++ b/data/software/mo/models-and-counter-examples.json @@ -0,0 +1,8 @@ +{ + "slug": "models-and-counter-examples", + "name": "Models And Counter-Examples", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16905864" + ] +} diff --git a/data/software/mo/modelsim.json b/data/software/mo/modelsim.json new file mode 100644 index 000000000000..457f8e634743 --- /dev/null +++ b/data/software/mo/modelsim.json @@ -0,0 +1,8 @@ +{ + "slug": "modelsim", + "name": "ModelSim", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3317826" + ] +} diff --git a/data/software/mo/modeltest.json b/data/software/mo/modeltest.json new file mode 100644 index 000000000000..5d53748ed5e8 --- /dev/null +++ b/data/software/mo/modeltest.json @@ -0,0 +1,8 @@ +{ + "slug": "modeltest", + "name": "Modeltest", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112181036" + ] +} diff --git a/data/software/mo/modelur.json b/data/software/mo/modelur.json new file mode 100644 index 000000000000..73a364414a87 --- /dev/null +++ b/data/software/mo/modelur.json @@ -0,0 +1,11 @@ +{ + "slug": "modelur", + "name": "Modelur", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6888433" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/mo/modest-maps.json b/data/software/mo/modest-maps.json new file mode 100644 index 000000000000..139056c9a429 --- /dev/null +++ b/data/software/mo/modest-maps.json @@ -0,0 +1,8 @@ +{ + "slug": "modest-maps", + "name": "Modest Maps", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085123" + ] +} diff --git a/data/software/mo/modflow-one-water-hydrologic-flow-model.json b/data/software/mo/modflow-one-water-hydrologic-flow-model.json new file mode 100644 index 000000000000..4e0f27f69561 --- /dev/null +++ b/data/software/mo/modflow-one-water-hydrologic-flow-model.json @@ -0,0 +1,20 @@ +{ + "slug": "modflow-one-water-hydrologic-flow-model", + "name": "MODFLOW One-Water Hydrologic Flow Model", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139862877" + ], + "developers": [ + "Scott E. Boyce" + ], + "publishers": [ + "United States Geological Survey" + ], + "programming_languages": [ + "Fortran" + ], + "licenses": [ + "Apache Software License 2.0" + ] +} diff --git a/data/software/mo/modul8.json b/data/software/mo/modul8.json new file mode 100644 index 000000000000..36be835e4e47 --- /dev/null +++ b/data/software/mo/modul8.json @@ -0,0 +1,8 @@ +{ + "slug": "modul8", + "name": "Modul8", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6889679" + ] +} diff --git a/data/software/mo/mofa-mitra.json b/data/software/mo/mofa-mitra.json new file mode 100644 index 000000000000..8177516cf4ae --- /dev/null +++ b/data/software/mo/mofa-mitra.json @@ -0,0 +1,8 @@ +{ + "slug": "mofa-mitra", + "name": "MoFA Mitra", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140157714" + ] +} diff --git a/data/software/mo/mogo.json b/data/software/mo/mogo.json new file mode 100644 index 000000000000..9f668e0d01f6 --- /dev/null +++ b/data/software/mo/mogo.json @@ -0,0 +1,11 @@ +{ + "slug": "mogo", + "name": "MoGo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1178114" + ], + "programming_languages": [ + "Go" + ] +} diff --git a/data/software/mo/moj.json b/data/software/mo/moj.json new file mode 100644 index 000000000000..805e5a70b648 --- /dev/null +++ b/data/software/mo/moj.json @@ -0,0 +1,11 @@ +{ + "slug": "moj", + "name": "Moj", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105713509" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/mo/mojapteczka.json b/data/software/mo/mojapteczka.json new file mode 100644 index 000000000000..548061e11f34 --- /dev/null +++ b/data/software/mo/mojapteczka.json @@ -0,0 +1,17 @@ +{ + "slug": "mojapteczka", + "name": "mojApteczka", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139590795" + ], + "operating_systems": [ + "iOS" + ], + "programming_languages": [ + "Python", + "TypeScript", + "Kotlin", + "Swift" + ] +} diff --git a/data/software/mo/mojopac.json b/data/software/mo/mojopac.json new file mode 100644 index 000000000000..c3a56997846c --- /dev/null +++ b/data/software/mo/mojopac.json @@ -0,0 +1,8 @@ +{ + "slug": "mojopac", + "name": "MojoPac", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4382548" + ] +} diff --git a/data/software/mo/moksha.json b/data/software/mo/moksha.json new file mode 100644 index 000000000000..86ed16b54729 --- /dev/null +++ b/data/software/mo/moksha.json @@ -0,0 +1,8 @@ +{ + "slug": "moksha", + "name": "Moksha", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126910575" + ] +} diff --git a/data/software/mo/molden.json b/data/software/mo/molden.json new file mode 100644 index 000000000000..79c28a69ef33 --- /dev/null +++ b/data/software/mo/molden.json @@ -0,0 +1,18 @@ +{ + "slug": "molden", + "name": "Molden", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6895772" + ], + "developers": [ + "Center for Molecular and Biomolecular Informatics" + ], + "operating_systems": [ + "IRIX", + "Solaris", + "macOS", + "Microsoft Windows", + "SunOS" + ] +} diff --git a/data/software/mo/molecular-evolutionary-genetics-analysis.json b/data/software/mo/molecular-evolutionary-genetics-analysis.json new file mode 100644 index 000000000000..16db55461fda --- /dev/null +++ b/data/software/mo/molecular-evolutionary-genetics-analysis.json @@ -0,0 +1,11 @@ +{ + "slug": "molecular-evolutionary-genetics-analysis", + "name": "Molecular Evolutionary Genetics Analysis", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6715328" + ], + "developers": [ + "Pennsylvania State University" + ] +} diff --git a/data/software/mo/molecular-modelling-toolkit.json b/data/software/mo/molecular-modelling-toolkit.json new file mode 100644 index 000000000000..cb48eefff314 --- /dev/null +++ b/data/software/mo/molecular-modelling-toolkit.json @@ -0,0 +1,11 @@ +{ + "slug": "molecular-modelling-toolkit", + "name": "Molecular Modelling Toolkit", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6895969" + ], + "programming_languages": [ + "Python" + ] +} diff --git a/data/software/mo/molecular-simulation-2.json b/data/software/mo/molecular-simulation-2.json new file mode 100644 index 000000000000..ddcd9f3eb54f --- /dev/null +++ b/data/software/mo/molecular-simulation-2.json @@ -0,0 +1,8 @@ +{ + "slug": "molecular-simulation-2", + "name": "Molecular simulation 2", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108673157" + ] +} diff --git a/data/software/mo/molide.json b/data/software/mo/molide.json new file mode 100644 index 000000000000..f2779ce98bea --- /dev/null +++ b/data/software/mo/molide.json @@ -0,0 +1,11 @@ +{ + "slug": "molide", + "name": "MolIDE", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6895623" + ], + "developers": [ + "Fox Chase Cancer Center" + ] +} diff --git a/data/software/mo/moltenvk.json b/data/software/mo/moltenvk.json new file mode 100644 index 000000000000..e2fa48366a3b --- /dev/null +++ b/data/software/mo/moltenvk.json @@ -0,0 +1,20 @@ +{ + "slug": "moltenvk", + "name": "MoltenVK", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q55264041" + ], + "developers": [ + "Bill Hollings" + ], + "operating_systems": [ + "visionOS", + "tvOS", + "iOS", + "macOS" + ], + "licenses": [ + "Apache Software License 2.0" + ] +} diff --git a/data/software/mo/moltos.json b/data/software/mo/moltos.json new file mode 100644 index 000000000000..90aa91353d3f --- /dev/null +++ b/data/software/mo/moltos.json @@ -0,0 +1,14 @@ +{ + "slug": "moltos", + "name": "MoltOS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139324203" + ], + "programming_languages": [ + "TypeScript" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/mo/moltpe.json b/data/software/mo/moltpe.json new file mode 100644 index 000000000000..f1137fe9622d --- /dev/null +++ b/data/software/mo/moltpe.json @@ -0,0 +1,8 @@ +{ + "slug": "moltpe", + "name": "MoltPe", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139667830" + ] +} diff --git a/data/software/mo/moments.json b/data/software/mo/moments.json new file mode 100644 index 000000000000..4b9d0b2ccf54 --- /dev/null +++ b/data/software/mo/moments.json @@ -0,0 +1,17 @@ +{ + "slug": "moments", + "name": "Moments", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q21041339" + ], + "release_date": "2012-04-19", + "developers": [ + "Tencent" + ], + "operating_systems": [ + "HarmonyOS NEXT", + "iOS", + "Microsoft Windows" + ] +} diff --git a/data/software/mo/momentum.json b/data/software/mo/momentum.json new file mode 100644 index 000000000000..bb9780164f1a --- /dev/null +++ b/data/software/mo/momentum.json @@ -0,0 +1,8 @@ +{ + "slug": "momentum", + "name": "Momentum", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6897237" + ] +} diff --git a/data/software/mo/momo.json b/data/software/mo/momo.json new file mode 100644 index 000000000000..9b6713b5d36b --- /dev/null +++ b/data/software/mo/momo.json @@ -0,0 +1,8 @@ +{ + "slug": "momo", + "name": "Momo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6897378" + ] +} diff --git a/data/software/mo/mon-80.json b/data/software/mo/mon-80.json new file mode 100644 index 000000000000..a0ccfca6f111 --- /dev/null +++ b/data/software/mo/mon-80.json @@ -0,0 +1,12 @@ +{ + "slug": "mon-80", + "name": "MON-80", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125882521" + ], + "release_date": "1970-01-01", + "developers": [ + "Intel" + ] +} diff --git a/data/software/mo/monesa.json b/data/software/mo/monesa.json new file mode 100644 index 000000000000..5c1889d77e98 --- /dev/null +++ b/data/software/mo/monesa.json @@ -0,0 +1,8 @@ +{ + "slug": "monesa", + "name": "Monesa", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6898973" + ] +} diff --git a/data/software/mo/money.json b/data/software/mo/money.json new file mode 100644 index 000000000000..ab4e293352e4 --- /dev/null +++ b/data/software/mo/money.json @@ -0,0 +1,8 @@ +{ + "slug": "money", + "name": "Money", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6899099" + ] +} diff --git a/data/software/mo/moneydance.json b/data/software/mo/moneydance.json new file mode 100644 index 000000000000..d928faace1f1 --- /dev/null +++ b/data/software/mo/moneydance.json @@ -0,0 +1,16 @@ +{ + "slug": "moneydance", + "name": "Moneydance", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6899316" + ], + "release_date": "1997-01-01", + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [ + "Java" + ] +} diff --git a/data/software/mo/moneywiz.json b/data/software/mo/moneywiz.json new file mode 100644 index 000000000000..a19ede54c9c0 --- /dev/null +++ b/data/software/mo/moneywiz.json @@ -0,0 +1,8 @@ +{ + "slug": "moneywiz", + "name": "MoneyWiz", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16974290" + ] +} diff --git a/data/software/mo/mongoose-os.json b/data/software/mo/mongoose-os.json new file mode 100644 index 000000000000..fe823d1ec6e8 --- /dev/null +++ b/data/software/mo/mongoose-os.json @@ -0,0 +1,8 @@ +{ + "slug": "mongoose-os", + "name": "Mongoose OS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q30672533" + ] +} diff --git a/data/software/mo/mongoose.json b/data/software/mo/mongoose.json new file mode 100644 index 000000000000..2700d2f61c1b --- /dev/null +++ b/data/software/mo/mongoose.json @@ -0,0 +1,11 @@ +{ + "slug": "mongoose", + "name": "Mongoose", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107481233" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/mo/moniwiki.json b/data/software/mo/moniwiki.json new file mode 100644 index 000000000000..690a3806f5b8 --- /dev/null +++ b/data/software/mo/moniwiki.json @@ -0,0 +1,8 @@ +{ + "slug": "moniwiki", + "name": "MoniWiki", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q12595249" + ] +} diff --git a/data/software/mo/monk-project.json b/data/software/mo/monk-project.json new file mode 100644 index 000000000000..eb43ddc7c81a --- /dev/null +++ b/data/software/mo/monk-project.json @@ -0,0 +1,8 @@ +{ + "slug": "monk-project", + "name": "MONK Project", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087835" + ] +} diff --git a/data/software/mo/monkeyd.json b/data/software/mo/monkeyd.json new file mode 100644 index 000000000000..565bfaacbec0 --- /dev/null +++ b/data/software/mo/monkeyd.json @@ -0,0 +1,11 @@ +{ + "slug": "monkeyd", + "name": "monkeyd", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975233" + ], + "licenses": [ + "Apache License" + ] +} diff --git a/data/software/mo/monkeyjam.json b/data/software/mo/monkeyjam.json new file mode 100644 index 000000000000..5292a81f9b88 --- /dev/null +++ b/data/software/mo/monkeyjam.json @@ -0,0 +1,8 @@ +{ + "slug": "monkeyjam", + "name": "MonkeyJam", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139256822" + ] +} diff --git a/data/software/mo/monkeysphere.json b/data/software/mo/monkeysphere.json new file mode 100644 index 000000000000..35108436ac2e --- /dev/null +++ b/data/software/mo/monkeysphere.json @@ -0,0 +1,8 @@ +{ + "slug": "monkeysphere", + "name": "monkeysphere", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60917168" + ] +} diff --git a/data/software/mo/monobjc.json b/data/software/mo/monobjc.json new file mode 100644 index 000000000000..44bfffa72b3d --- /dev/null +++ b/data/software/mo/monobjc.json @@ -0,0 +1,8 @@ +{ + "slug": "monobjc", + "name": "Monobjc", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16974309" + ] +} diff --git a/data/software/mo/monorail.json b/data/software/mo/monorail.json new file mode 100644 index 000000000000..7473dd712c09 --- /dev/null +++ b/data/software/mo/monorail.json @@ -0,0 +1,11 @@ +{ + "slug": "monorail", + "name": "MonoRail", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6901249" + ], + "licenses": [ + "Apache License" + ] +} diff --git a/data/software/mo/monosnap.json b/data/software/mo/monosnap.json new file mode 100644 index 000000000000..0023a2707984 --- /dev/null +++ b/data/software/mo/monosnap.json @@ -0,0 +1,11 @@ +{ + "slug": "monosnap", + "name": "Monosnap", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4044483" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/mo/montaic.json b/data/software/mo/montaic.json new file mode 100644 index 000000000000..41886ae58b42 --- /dev/null +++ b/data/software/mo/montaic.json @@ -0,0 +1,8 @@ +{ + "slug": "montaic", + "name": "Montaic", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139260764" + ] +} diff --git a/data/software/mo/monte-carlo-n-particle-transport-code.json b/data/software/mo/monte-carlo-n-particle-transport-code.json new file mode 100644 index 000000000000..6bcf222776f5 --- /dev/null +++ b/data/software/mo/monte-carlo-n-particle-transport-code.json @@ -0,0 +1,14 @@ +{ + "slug": "monte-carlo-n-particle-transport-code", + "name": "Monte Carlo N-Particle Transport Code", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q624414" + ], + "developers": [ + "Los Alamos National Laboratory" + ], + "programming_languages": [ + "Fortran" + ] +} diff --git a/data/software/mo/mooc-arab-world.json b/data/software/mo/mooc-arab-world.json new file mode 100644 index 000000000000..9bc4c9fe2ee6 --- /dev/null +++ b/data/software/mo/mooc-arab-world.json @@ -0,0 +1,8 @@ +{ + "slug": "mooc-arab-world", + "name": "MOOC Arab World", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q19599715" + ] +} diff --git a/data/software/mo/moog-model-15.json b/data/software/mo/moog-model-15.json new file mode 100644 index 000000000000..05f569ddd2e5 --- /dev/null +++ b/data/software/mo/moog-model-15.json @@ -0,0 +1,8 @@ +{ + "slug": "moog-model-15", + "name": "Moog Model 15", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q55641137" + ] +} diff --git a/data/software/mo/moog.json b/data/software/mo/moog.json new file mode 100644 index 000000000000..926847c71945 --- /dev/null +++ b/data/software/mo/moog.json @@ -0,0 +1,11 @@ +{ + "slug": "moog", + "name": "Moog", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6907259" + ], + "programming_languages": [ + "Fortran" + ] +} diff --git a/data/software/mo/moon-buggy.json b/data/software/mo/moon-buggy.json new file mode 100644 index 000000000000..3adf566fed61 --- /dev/null +++ b/data/software/mo/moon-buggy.json @@ -0,0 +1,8 @@ +{ + "slug": "moon-buggy", + "name": "Moon-Buggy", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62854100" + ] +} diff --git a/data/software/mo/moon-modeler.json b/data/software/mo/moon-modeler.json new file mode 100644 index 000000000000..2be617409fb9 --- /dev/null +++ b/data/software/mo/moon-modeler.json @@ -0,0 +1,11 @@ +{ + "slug": "moon-modeler", + "name": "Moon Modeler", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134961029" + ], + "developers": [ + "Ideamerit" + ] +} diff --git a/data/software/mo/moonbounce.json b/data/software/mo/moonbounce.json new file mode 100644 index 000000000000..f52ccf3e0c60 --- /dev/null +++ b/data/software/mo/moonbounce.json @@ -0,0 +1,8 @@ +{ + "slug": "moonbounce", + "name": "MoonBounce", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125343301" + ] +} diff --git a/data/software/mo/moonshell.json b/data/software/mo/moonshell.json new file mode 100644 index 000000000000..e0d412efffe0 --- /dev/null +++ b/data/software/mo/moonshell.json @@ -0,0 +1,8 @@ +{ + "slug": "moonshell", + "name": "MoonShell", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1808526" + ] +} diff --git a/data/software/mo/moosic.json b/data/software/mo/moosic.json new file mode 100644 index 000000000000..ffad15949c36 --- /dev/null +++ b/data/software/mo/moosic.json @@ -0,0 +1,8 @@ +{ + "slug": "moosic", + "name": "Moosic", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62863521" + ] +} diff --git a/data/software/mo/moovit.json b/data/software/mo/moovit.json new file mode 100644 index 000000000000..9cd26a47ff2c --- /dev/null +++ b/data/software/mo/moovit.json @@ -0,0 +1,9 @@ +{ + "slug": "moovit", + "name": "Moovit", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16336073" + ], + "release_date": "2011-01-01" +} diff --git a/data/software/mo/moovnt.json b/data/software/mo/moovnt.json new file mode 100644 index 000000000000..0494d73b2375 --- /dev/null +++ b/data/software/mo/moovnt.json @@ -0,0 +1,8 @@ +{ + "slug": "moovnt", + "name": "Moovnt", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139963554" + ] +} diff --git a/data/software/mo/mop-com.json b/data/software/mo/mop-com.json new file mode 100644 index 000000000000..4e278bb714db --- /dev/null +++ b/data/software/mo/mop-com.json @@ -0,0 +1,8 @@ +{ + "slug": "mop-com", + "name": "Mop.com", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6908766" + ] +} diff --git a/data/software/mo/mopo.json b/data/software/mo/mopo.json new file mode 100644 index 000000000000..0f3840a3552f --- /dev/null +++ b/data/software/mo/mopo.json @@ -0,0 +1,8 @@ +{ + "slug": "mopo", + "name": "Mopo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q12716948" + ] +} diff --git a/data/software/mo/moqui.json b/data/software/mo/moqui.json new file mode 100644 index 000000000000..f572439f393f --- /dev/null +++ b/data/software/mo/moqui.json @@ -0,0 +1,14 @@ +{ + "slug": "moqui", + "name": "Moqui", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22907047" + ], + "programming_languages": [ + "Java" + ], + "licenses": [ + "Creative Commons CC0 License" + ] +} diff --git a/data/software/mo/more.json b/data/software/mo/more.json new file mode 100644 index 000000000000..d9b7b7ab018c --- /dev/null +++ b/data/software/mo/more.json @@ -0,0 +1,15 @@ +{ + "slug": "more", + "name": "MORE", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6717104" + ], + "release_date": "1986-01-01", + "developers": [ + "Dave Winer" + ], + "operating_systems": [ + "Classic Mac OS" + ] +} diff --git a/data/software/mo/moreutils.json b/data/software/mo/moreutils.json new file mode 100644 index 000000000000..1af82b73d269 --- /dev/null +++ b/data/software/mo/moreutils.json @@ -0,0 +1,8 @@ +{ + "slug": "moreutils", + "name": "moreutils", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62853994" + ] +} diff --git a/data/software/mo/morfeusz-2.json b/data/software/mo/morfeusz-2.json new file mode 100644 index 000000000000..9583c26d79bb --- /dev/null +++ b/data/software/mo/morfeusz-2.json @@ -0,0 +1,8 @@ +{ + "slug": "morfeusz-2", + "name": "Morfeusz 2", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087836" + ] +} diff --git a/data/software/mo/morla.json b/data/software/mo/morla.json new file mode 100644 index 000000000000..45cc84c6b90e --- /dev/null +++ b/data/software/mo/morla.json @@ -0,0 +1,8 @@ +{ + "slug": "morla", + "name": "Morla", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105745582" + ] +} diff --git a/data/software/mo/morning-coffee.json b/data/software/mo/morning-coffee.json new file mode 100644 index 000000000000..1eb4d675e4c9 --- /dev/null +++ b/data/software/mo/morning-coffee.json @@ -0,0 +1,11 @@ +{ + "slug": "morning-coffee", + "name": "Morning Coffee", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6912796" + ], + "licenses": [ + "Mozilla Public License" + ] +} diff --git a/data/software/mo/morphadorner.json b/data/software/mo/morphadorner.json new file mode 100644 index 000000000000..a9f9145b7ce4 --- /dev/null +++ b/data/software/mo/morphadorner.json @@ -0,0 +1,8 @@ +{ + "slug": "morphadorner", + "name": "MorphAdorner", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085124" + ] +} diff --git a/data/software/mo/morpheus.json b/data/software/mo/morpheus.json new file mode 100644 index 000000000000..998200cc7f55 --- /dev/null +++ b/data/software/mo/morpheus.json @@ -0,0 +1,8 @@ +{ + "slug": "morpheus", + "name": "Morpheus", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6913396" + ] +} diff --git a/data/software/mo/morphgear.json b/data/software/mo/morphgear.json new file mode 100644 index 000000000000..70eb7f126824 --- /dev/null +++ b/data/software/mo/morphgear.json @@ -0,0 +1,8 @@ +{ + "slug": "morphgear", + "name": "MorphGear", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6913349" + ] +} diff --git a/data/software/mo/morphobank.json b/data/software/mo/morphobank.json new file mode 100644 index 000000000000..ad743a40b03d --- /dev/null +++ b/data/software/mo/morphobank.json @@ -0,0 +1,9 @@ +{ + "slug": "morphobank", + "name": "Morphobank", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6913429" + ], + "release_date": "2001-01-01" +} diff --git a/data/software/mo/mosdac.json b/data/software/mo/mosdac.json new file mode 100644 index 000000000000..e5f7d620c3a2 --- /dev/null +++ b/data/software/mo/mosdac.json @@ -0,0 +1,12 @@ +{ + "slug": "mosdac", + "name": "MOSDAC", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q23777540" + ], + "release_date": "2006-01-01", + "licenses": [ + "freeware" + ] +} diff --git a/data/software/mo/mosek.json b/data/software/mo/mosek.json new file mode 100644 index 000000000000..154b04508882 --- /dev/null +++ b/data/software/mo/mosek.json @@ -0,0 +1,8 @@ +{ + "slug": "mosek", + "name": "MOSEK", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6717127" + ] +} diff --git a/data/software/mo/moserial.json b/data/software/mo/moserial.json new file mode 100644 index 000000000000..62b332835b69 --- /dev/null +++ b/data/software/mo/moserial.json @@ -0,0 +1,8 @@ +{ + "slug": "moserial", + "name": "moserial", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63064984" + ] +} diff --git a/data/software/mo/mosix.json b/data/software/mo/mosix.json new file mode 100644 index 000000000000..574d909aec8b --- /dev/null +++ b/data/software/mo/mosix.json @@ -0,0 +1,8 @@ +{ + "slug": "mosix", + "name": "MOSIX", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q658388" + ] +} diff --git a/data/software/mo/motherboard-monitor.json b/data/software/mo/motherboard-monitor.json new file mode 100644 index 000000000000..2fd7f418d27b --- /dev/null +++ b/data/software/mo/motherboard-monitor.json @@ -0,0 +1,15 @@ +{ + "slug": "motherboard-monitor", + "name": "Motherboard Monitor", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q967858" + ], + "release_date": "1998-01-21", + "operating_systems": [ + "Microsoft Windows" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/mo/motherduck.json b/data/software/mo/motherduck.json new file mode 100644 index 000000000000..507ac31e7f0b --- /dev/null +++ b/data/software/mo/motherduck.json @@ -0,0 +1,8 @@ +{ + "slug": "motherduck", + "name": "MotherDuck", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138190192" + ] +} diff --git a/data/software/mo/motor-cad.json b/data/software/mo/motor-cad.json new file mode 100644 index 000000000000..a9e981ab8fb0 --- /dev/null +++ b/data/software/mo/motor-cad.json @@ -0,0 +1,9 @@ +{ + "slug": "motor-cad", + "name": "Motor-CAD", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6918078" + ], + "release_date": "1999-11-01" +} diff --git a/data/software/mo/motordesk.json b/data/software/mo/motordesk.json new file mode 100644 index 000000000000..45e8edfa3605 --- /dev/null +++ b/data/software/mo/motordesk.json @@ -0,0 +1,15 @@ +{ + "slug": "motordesk", + "name": "MotorDesk", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140073132" + ], + "developers": [ + "Chief Mechanic Limited" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/software/mo/mountain-duck-app.json b/data/software/mo/mountain-duck-app.json new file mode 100644 index 000000000000..d61a56dd1aed --- /dev/null +++ b/data/software/mo/mountain-duck-app.json @@ -0,0 +1,8 @@ +{ + "slug": "mountain-duck-app", + "name": "Mountain-duck (app)", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136531115" + ] +} diff --git a/data/software/mo/mountainsmap.json b/data/software/mo/mountainsmap.json new file mode 100644 index 000000000000..1b5a4ecf1405 --- /dev/null +++ b/data/software/mo/mountainsmap.json @@ -0,0 +1,15 @@ +{ + "slug": "mountainsmap", + "name": "MountainsMap", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3326070" + ], + "release_date": "1996-09-01", + "developers": [ + "Digital Surf" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/mo/movalyzer.json b/data/software/mo/movalyzer.json new file mode 100644 index 000000000000..abb842759b4e --- /dev/null +++ b/data/software/mo/movalyzer.json @@ -0,0 +1,8 @@ +{ + "slug": "movalyzer", + "name": "MovAlyzeR", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6926448" + ] +} diff --git a/data/software/mo/movavi-screen-capture-studio.json b/data/software/mo/movavi-screen-capture-studio.json new file mode 100644 index 000000000000..1c2615f0d696 --- /dev/null +++ b/data/software/mo/movavi-screen-capture-studio.json @@ -0,0 +1,8 @@ +{ + "slug": "movavi-screen-capture-studio", + "name": "Movavi Screen Capture Studio", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q21659291" + ] +} diff --git a/data/software/mo/move.json b/data/software/mo/move.json new file mode 100644 index 000000000000..14332b18d632 --- /dev/null +++ b/data/software/mo/move.json @@ -0,0 +1,11 @@ +{ + "slug": "move", + "name": "Move", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25205950" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/mo/moveit.json b/data/software/mo/moveit.json new file mode 100644 index 000000000000..7ff208e28035 --- /dev/null +++ b/data/software/mo/moveit.json @@ -0,0 +1,8 @@ +{ + "slug": "moveit", + "name": "MOVEit", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28445936" + ] +} diff --git a/data/software/mo/movider.json b/data/software/mo/movider.json new file mode 100644 index 000000000000..df2aac285374 --- /dev/null +++ b/data/software/mo/movider.json @@ -0,0 +1,8 @@ +{ + "slug": "movider", + "name": "Movider", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139322826" + ] +} diff --git a/data/software/mo/movieride-fx.json b/data/software/mo/movieride-fx.json new file mode 100644 index 000000000000..132c961976e7 --- /dev/null +++ b/data/software/mo/movieride-fx.json @@ -0,0 +1,8 @@ +{ + "slug": "movieride-fx", + "name": "MovieRide FX", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q30589172" + ] +} diff --git a/data/software/mo/moviestorm.json b/data/software/mo/moviestorm.json new file mode 100644 index 000000000000..c41833eb70f7 --- /dev/null +++ b/data/software/mo/moviestorm.json @@ -0,0 +1,8 @@ +{ + "slug": "moviestorm", + "name": "Moviestorm", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3326931" + ] +} diff --git a/data/software/mo/moxa-mxsecurity.json b/data/software/mo/moxa-mxsecurity.json new file mode 100644 index 000000000000..3c8936044c39 --- /dev/null +++ b/data/software/mo/moxa-mxsecurity.json @@ -0,0 +1,8 @@ +{ + "slug": "moxa-mxsecurity", + "name": "Moxa MXsecurity", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118834953" + ] +} diff --git a/data/software/mo/moz-git-tools.json b/data/software/mo/moz-git-tools.json new file mode 100644 index 000000000000..c13555494563 --- /dev/null +++ b/data/software/mo/moz-git-tools.json @@ -0,0 +1,8 @@ +{ + "slug": "moz-git-tools", + "name": "moz-git-tools", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123510940" + ] +} diff --git a/data/software/mo/mozbackup.json b/data/software/mo/mozbackup.json new file mode 100644 index 000000000000..db9d04fcb9bd --- /dev/null +++ b/data/software/mo/mozbackup.json @@ -0,0 +1,14 @@ +{ + "slug": "mozbackup", + "name": "MozBackup", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q23929392" + ], + "developers": [ + "Pavel Cvrček" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/mo/mozdeh.json b/data/software/mo/mozdeh.json new file mode 100644 index 000000000000..fa33167c805a --- /dev/null +++ b/data/software/mo/mozdeh.json @@ -0,0 +1,8 @@ +{ + "slug": "mozdeh", + "name": "Mozdeh", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085125" + ] +} diff --git a/data/software/mo/mozenda.json b/data/software/mo/mozenda.json new file mode 100644 index 000000000000..522019df719b --- /dev/null +++ b/data/software/mo/mozenda.json @@ -0,0 +1,8 @@ +{ + "slug": "mozenda", + "name": "Mozenda", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085126" + ] +} diff --git a/data/software/mo/mozilla-firefox-6.json b/data/software/mo/mozilla-firefox-6.json new file mode 100644 index 000000000000..13334b858bd0 --- /dev/null +++ b/data/software/mo/mozilla-firefox-6.json @@ -0,0 +1,8 @@ +{ + "slug": "mozilla-firefox-6", + "name": "Mozilla Firefox 6", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5948339" + ] +} diff --git a/data/software/mo/mozilla-persona.json b/data/software/mo/mozilla-persona.json new file mode 100644 index 000000000000..b0d1d175e889 --- /dev/null +++ b/data/software/mo/mozilla-persona.json @@ -0,0 +1,11 @@ +{ + "slug": "mozilla-persona", + "name": "Mozilla Persona", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1637279" + ], + "licenses": [ + "Mozilla Public License, version 2.0" + ] +} diff --git a/data/software/mo/mozilla-prism.json b/data/software/mo/mozilla-prism.json new file mode 100644 index 000000000000..126e69179f10 --- /dev/null +++ b/data/software/mo/mozilla-prism.json @@ -0,0 +1,14 @@ +{ + "slug": "mozilla-prism", + "name": "Mozilla Prism", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q568991" + ], + "developers": [ + "Mozilla Corporation" + ], + "licenses": [ + "Mozilla Public License" + ] +} diff --git a/data/software/mo/mozilla-thimble.json b/data/software/mo/mozilla-thimble.json new file mode 100644 index 000000000000..5634ea58fbb5 --- /dev/null +++ b/data/software/mo/mozilla-thimble.json @@ -0,0 +1,8 @@ +{ + "slug": "mozilla-thimble", + "name": "Mozilla Thimble", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085128" + ] +} diff --git a/data/software/mo/mozilla-webthings.json b/data/software/mo/mozilla-webthings.json new file mode 100644 index 000000000000..4b6fb7d3efe7 --- /dev/null +++ b/data/software/mo/mozilla-webthings.json @@ -0,0 +1,11 @@ +{ + "slug": "mozilla-webthings", + "name": "Mozilla WebThings", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63676622" + ], + "programming_languages": [ + "Python" + ] +} diff --git a/data/software/mo/mozplugger.json b/data/software/mo/mozplugger.json new file mode 100644 index 000000000000..9b9345aa2ccc --- /dev/null +++ b/data/software/mo/mozplugger.json @@ -0,0 +1,8 @@ +{ + "slug": "mozplugger", + "name": "MozPlugger", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62853986" + ] +} diff --git a/data/software/mp/mp3check.json b/data/software/mp/mp3check.json new file mode 100644 index 000000000000..ec93959f7a3a --- /dev/null +++ b/data/software/mp/mp3check.json @@ -0,0 +1,8 @@ +{ + "slug": "mp3check", + "name": "mp3check", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62853942" + ] +} diff --git a/data/software/mp/mp3info.json b/data/software/mp/mp3info.json new file mode 100644 index 000000000000..5b268ee5ca11 --- /dev/null +++ b/data/software/mp/mp3info.json @@ -0,0 +1,8 @@ +{ + "slug": "mp3info", + "name": "MP3info", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62853932" + ] +} diff --git a/data/software/mp/mp3val.json b/data/software/mp/mp3val.json new file mode 100644 index 000000000000..035edec481d9 --- /dev/null +++ b/data/software/mp/mp3val.json @@ -0,0 +1,8 @@ +{ + "slug": "mp3val", + "name": "MP3val", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62853923" + ] +} diff --git a/data/software/mp/mpack.json b/data/software/mp/mpack.json new file mode 100644 index 000000000000..fed7a8c820fa --- /dev/null +++ b/data/software/mp/mpack.json @@ -0,0 +1,12 @@ +{ + "slug": "mpack", + "name": "MPack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3273155" + ], + "release_date": "2006-12-01", + "programming_languages": [ + "PHP" + ] +} diff --git a/data/software/mp/mpb.json b/data/software/mp/mpb.json new file mode 100644 index 000000000000..2bff337763b6 --- /dev/null +++ b/data/software/mp/mpb.json @@ -0,0 +1,8 @@ +{ + "slug": "mpb", + "name": "MPB", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137673278" + ] +} diff --git a/data/software/mp/mpc-mlq.json b/data/software/mp/mpc-mlq.json new file mode 100644 index 000000000000..d928614ef870 --- /dev/null +++ b/data/software/mp/mpc-mlq.json @@ -0,0 +1,8 @@ +{ + "slug": "mpc-mlq", + "name": "MPC-MLQ", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6717230" + ] +} diff --git a/data/software/mp/mpcontribs.json b/data/software/mp/mpcontribs.json new file mode 100644 index 000000000000..ffe89cbad050 --- /dev/null +++ b/data/software/mp/mpcontribs.json @@ -0,0 +1,11 @@ +{ + "slug": "mpcontribs", + "name": "MPContribs", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127485415" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/mp/mpdcon.json b/data/software/mp/mpdcon.json new file mode 100644 index 000000000000..8c6c2c21e195 --- /dev/null +++ b/data/software/mp/mpdcon.json @@ -0,0 +1,8 @@ +{ + "slug": "mpdcon", + "name": "MPDCon", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065502" + ] +} diff --git a/data/software/mp/mpdscribble.json b/data/software/mp/mpdscribble.json new file mode 100644 index 000000000000..d79d19d4c02a --- /dev/null +++ b/data/software/mp/mpdscribble.json @@ -0,0 +1,8 @@ +{ + "slug": "mpdscribble", + "name": "mpdscribble", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975234" + ] +} diff --git a/data/software/mp/mpgtx.json b/data/software/mp/mpgtx.json new file mode 100644 index 000000000000..c3e39a831191 --- /dev/null +++ b/data/software/mp/mpgtx.json @@ -0,0 +1,8 @@ +{ + "slug": "mpgtx", + "name": "mpgtx", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62853836" + ] +} diff --git a/data/software/mp/mpibash.json b/data/software/mp/mpibash.json new file mode 100644 index 000000000000..fe08f76f12f1 --- /dev/null +++ b/data/software/mp/mpibash.json @@ -0,0 +1,8 @@ +{ + "slug": "mpibash", + "name": "mpibash", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975235" + ] +} diff --git a/data/software/mp/mpich2.json b/data/software/mp/mpich2.json new file mode 100644 index 000000000000..0734808909e8 --- /dev/null +++ b/data/software/mp/mpich2.json @@ -0,0 +1,11 @@ +{ + "slug": "mpich2", + "name": "MPICH2", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11765024" + ], + "licenses": [ + "MPICH2 license" + ] +} diff --git a/data/software/mp/mpress.json b/data/software/mp/mpress.json new file mode 100644 index 000000000000..a82f2833e84a --- /dev/null +++ b/data/software/mp/mpress.json @@ -0,0 +1,8 @@ +{ + "slug": "mpress", + "name": "mpress", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q39190015" + ] +} diff --git a/data/software/mp/mpressgui.json b/data/software/mp/mpressgui.json new file mode 100644 index 000000000000..8ba131bbbd8f --- /dev/null +++ b/data/software/mp/mpressgui.json @@ -0,0 +1,17 @@ +{ + "slug": "mpressgui", + "name": "MpressGUI", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q39190303" + ], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [ + "Visual Basic" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/mp/mpria.json b/data/software/mp/mpria.json new file mode 100644 index 000000000000..07f6c4156cac --- /dev/null +++ b/data/software/mp/mpria.json @@ -0,0 +1,8 @@ +{ + "slug": "mpria", + "name": "Mpria", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76185786" + ] +} diff --git a/data/software/mp/mpt-status.json b/data/software/mp/mpt-status.json new file mode 100644 index 000000000000..58230a171c5a --- /dev/null +++ b/data/software/mp/mpt-status.json @@ -0,0 +1,8 @@ +{ + "slug": "mpt-status", + "name": "mpt-status", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62853791" + ] +} diff --git a/data/software/mr/mr-data-converter.json b/data/software/mr/mr-data-converter.json new file mode 100644 index 000000000000..04945831c192 --- /dev/null +++ b/data/software/mr/mr-data-converter.json @@ -0,0 +1,8 @@ +{ + "slug": "mr-data-converter", + "name": "Mr. Data Converter", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085129" + ] +} diff --git a/data/software/mr/mrbayes.json b/data/software/mr/mrbayes.json new file mode 100644 index 000000000000..6e31c4cf94d0 --- /dev/null +++ b/data/software/mr/mrbayes.json @@ -0,0 +1,15 @@ +{ + "slug": "mrbayes", + "name": "MrBayes", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10920783" + ], + "developers": [ + "Maxim Teslenko", + "Paul J. van der Mark", + "Chi Zhang", + "John Huelsenbeck", + "Fredrik Ronquist" + ] +} diff --git a/data/software/mr/mricro.json b/data/software/mr/mricro.json new file mode 100644 index 000000000000..d5d59d270ae4 --- /dev/null +++ b/data/software/mr/mricro.json @@ -0,0 +1,12 @@ +{ + "slug": "mricro", + "name": "MRIcro", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q41793750" + ], + "release_date": "1999-01-01", + "developers": [ + "Chris Rorden" + ] +} diff --git a/data/software/ms/ms-antivirus.json b/data/software/ms/ms-antivirus.json new file mode 100644 index 000000000000..bc037613332b --- /dev/null +++ b/data/software/ms/ms-antivirus.json @@ -0,0 +1,11 @@ +{ + "slug": "ms-antivirus", + "name": "MS Antivirus", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3137501" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/ms/ms-dial.json b/data/software/ms/ms-dial.json new file mode 100644 index 000000000000..abd1b4d76c5d --- /dev/null +++ b/data/software/ms/ms-dial.json @@ -0,0 +1,8 @@ +{ + "slug": "ms-dial", + "name": "MS-DIAL", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115662328" + ] +} diff --git a/data/software/ms/ms4-modeling-environment.json b/data/software/ms/ms4-modeling-environment.json new file mode 100644 index 000000000000..e7c09e25e48f --- /dev/null +++ b/data/software/ms/ms4-modeling-environment.json @@ -0,0 +1,11 @@ +{ + "slug": "ms4-modeling-environment", + "name": "MS4 Modeling Environment", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17141547" + ], + "programming_languages": [ + "Java" + ] +} diff --git a/data/software/ms/msc-adams-q96391244.json b/data/software/ms/msc-adams-q96391244.json new file mode 100644 index 000000000000..690f4cb9a895 --- /dev/null +++ b/data/software/ms/msc-adams-q96391244.json @@ -0,0 +1,11 @@ +{ + "slug": "msc-adams-q96391244", + "name": "MSC Adams", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q96391244" + ], + "programming_languages": [ + "Fortran" + ] +} diff --git a/data/software/ms/msc-adams.json b/data/software/ms/msc-adams.json new file mode 100644 index 000000000000..748a06646d15 --- /dev/null +++ b/data/software/ms/msc-adams.json @@ -0,0 +1,11 @@ +{ + "slug": "msc-adams", + "name": "MSC ADAMS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6717712" + ], + "developers": [ + "MSC Software" + ] +} diff --git a/data/software/ms/mscdex.json b/data/software/ms/mscdex.json new file mode 100644 index 000000000000..544652150f88 --- /dev/null +++ b/data/software/ms/mscdex.json @@ -0,0 +1,11 @@ +{ + "slug": "mscdex", + "name": "MSCDEX", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10854663" + ], + "operating_systems": [ + "Windows 9x" + ] +} diff --git a/data/software/ms/mscompress.json b/data/software/ms/mscompress.json new file mode 100644 index 000000000000..a64462e64d7a --- /dev/null +++ b/data/software/ms/mscompress.json @@ -0,0 +1,8 @@ +{ + "slug": "mscompress", + "name": "mscompress", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62853740" + ] +} diff --git a/data/software/ms/msconvert.json b/data/software/ms/msconvert.json new file mode 100644 index 000000000000..348c6ea7d195 --- /dev/null +++ b/data/software/ms/msconvert.json @@ -0,0 +1,8 @@ +{ + "slug": "msconvert", + "name": "msConvert", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112506514" + ] +} diff --git a/data/software/ms/msecure.json b/data/software/ms/msecure.json new file mode 100644 index 000000000000..29d1aa0a9fd8 --- /dev/null +++ b/data/software/ms/msecure.json @@ -0,0 +1,13 @@ +{ + "slug": "msecure", + "name": "MSecure", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22907087" + ], + "operating_systems": [ + "iOS", + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/software/ms/msi-afterburner.json b/data/software/ms/msi-afterburner.json new file mode 100644 index 000000000000..05f73091900e --- /dev/null +++ b/data/software/ms/msi-afterburner.json @@ -0,0 +1,8 @@ +{ + "slug": "msi-afterburner", + "name": "MSI Afterburner", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131405113" + ] +} diff --git a/data/software/ms/msn-apps.json b/data/software/ms/msn-apps.json new file mode 100644 index 000000000000..c4f18ec8fa55 --- /dev/null +++ b/data/software/ms/msn-apps.json @@ -0,0 +1,8 @@ +{ + "slug": "msn-apps", + "name": "MSN apps", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28450568" + ] +} diff --git a/data/software/ms/msn-chat.json b/data/software/ms/msn-chat.json new file mode 100644 index 000000000000..402d3f4f7bd2 --- /dev/null +++ b/data/software/ms/msn-chat.json @@ -0,0 +1,8 @@ +{ + "slug": "msn-chat", + "name": "MSN Chat", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6717830" + ] +} diff --git a/data/software/ms/msn-direct.json b/data/software/ms/msn-direct.json new file mode 100644 index 000000000000..965f87378e0c --- /dev/null +++ b/data/software/ms/msn-direct.json @@ -0,0 +1,8 @@ +{ + "slug": "msn-direct", + "name": "MSN Direct", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6717832" + ] +} diff --git a/data/software/ms/msn-qna.json b/data/software/ms/msn-qna.json new file mode 100644 index 000000000000..af76444e3f79 --- /dev/null +++ b/data/software/ms/msn-qna.json @@ -0,0 +1,11 @@ +{ + "slug": "msn-qna", + "name": "MSN QnA", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6717853" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/ms/msn-tv.json b/data/software/ms/msn-tv.json new file mode 100644 index 000000000000..7c09efbad307 --- /dev/null +++ b/data/software/ms/msn-tv.json @@ -0,0 +1,8 @@ +{ + "slug": "msn-tv", + "name": "MSN TV", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1891637" + ] +} diff --git a/data/software/ms/msn-wifi-hotspots.json b/data/software/ms/msn-wifi-hotspots.json new file mode 100644 index 000000000000..a8a7a0de0ba2 --- /dev/null +++ b/data/software/ms/msn-wifi-hotspots.json @@ -0,0 +1,11 @@ +{ + "slug": "msn-wifi-hotspots", + "name": "MSN WiFi Hotspots", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6717855" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/ms/msort.json b/data/software/ms/msort.json new file mode 100644 index 000000000000..c43f7851d603 --- /dev/null +++ b/data/software/ms/msort.json @@ -0,0 +1,8 @@ +{ + "slug": "msort", + "name": "msort", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62853700" + ] +} diff --git a/data/software/ms/msql.json b/data/software/ms/msql.json new file mode 100644 index 000000000000..ffaeb252c9b8 --- /dev/null +++ b/data/software/ms/msql.json @@ -0,0 +1,11 @@ +{ + "slug": "msql", + "name": "mSQL", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q603867" + ], + "developers": [ + "Hughes Technologies" + ] +} diff --git a/data/software/ms/msqrd.json b/data/software/ms/msqrd.json new file mode 100644 index 000000000000..0410cd01b1ae --- /dev/null +++ b/data/software/ms/msqrd.json @@ -0,0 +1,8 @@ +{ + "slug": "msqrd", + "name": "MSQRD", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q23035039" + ] +} diff --git a/data/software/ms/msr-tools.json b/data/software/ms/msr-tools.json new file mode 100644 index 000000000000..8d0d0596a42a --- /dev/null +++ b/data/software/ms/msr-tools.json @@ -0,0 +1,11 @@ +{ + "slug": "msr-tools", + "name": "MSR Tools", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4043479" + ], + "licenses": [ + "3-clause BSD License" + ] +} diff --git a/data/software/ms/mswatch.json b/data/software/ms/mswatch.json new file mode 100644 index 000000000000..3d89c0cd258f --- /dev/null +++ b/data/software/ms/mswatch.json @@ -0,0 +1,8 @@ +{ + "slug": "mswatch", + "name": "mswatch", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62853690" + ] +} diff --git a/data/software/ms/msx-trains.json b/data/software/ms/msx-trains.json new file mode 100644 index 000000000000..510e1cbf9f8f --- /dev/null +++ b/data/software/ms/msx-trains.json @@ -0,0 +1,12 @@ +{ + "slug": "msx-trains", + "name": "MSX Trains", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124300362" + ], + "release_date": "1994-01-01", + "publishers": [ + "Pablosoft" + ] +} diff --git a/data/software/mt/mtail.json b/data/software/mt/mtail.json new file mode 100644 index 000000000000..416a8973a768 --- /dev/null +++ b/data/software/mt/mtail.json @@ -0,0 +1,8 @@ +{ + "slug": "mtail", + "name": "mtail", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62853684" + ] +} diff --git a/data/software/mt/mtd-utils.json b/data/software/mt/mtd-utils.json new file mode 100644 index 000000000000..e536da58c197 --- /dev/null +++ b/data/software/mt/mtd-utils.json @@ -0,0 +1,8 @@ +{ + "slug": "mtd-utils", + "name": "mtd-utils", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975237" + ] +} diff --git a/data/software/mt/mtex.json b/data/software/mt/mtex.json new file mode 100644 index 000000000000..8ca47e477a4a --- /dev/null +++ b/data/software/mt/mtex.json @@ -0,0 +1,11 @@ +{ + "slug": "mtex", + "name": "MTEX", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130549618" + ], + "developers": [ + "Ralf Hielscher" + ] +} diff --git a/data/software/mt/mtx.json b/data/software/mt/mtx.json new file mode 100644 index 000000000000..61e882263590 --- /dev/null +++ b/data/software/mt/mtx.json @@ -0,0 +1,8 @@ +{ + "slug": "mtx", + "name": "MTX", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62853668" + ] +} diff --git a/data/software/mu/mu-lab.json b/data/software/mu/mu-lab.json new file mode 100644 index 000000000000..b4419587d81e --- /dev/null +++ b/data/software/mu/mu-lab.json @@ -0,0 +1,8 @@ +{ + "slug": "mu-lab", + "name": "MU.LAB", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1580929" + ] +} diff --git a/data/software/mu/mudbox.json b/data/software/mu/mudbox.json new file mode 100644 index 000000000000..0ba3a8658e85 --- /dev/null +++ b/data/software/mu/mudbox.json @@ -0,0 +1,14 @@ +{ + "slug": "mudbox", + "name": "Mudbox", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1783444" + ], + "developers": [ + "Autodesk" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/mu/mudos.json b/data/software/mu/mudos.json new file mode 100644 index 000000000000..c42f8c4c5f3f --- /dev/null +++ b/data/software/mu/mudos.json @@ -0,0 +1,9 @@ +{ + "slug": "mudos", + "name": "MudOS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6931322" + ], + "release_date": "1992-01-01" +} diff --git a/data/software/mu/muffin.json b/data/software/mu/muffin.json new file mode 100644 index 000000000000..d62ff366b579 --- /dev/null +++ b/data/software/mu/muffin.json @@ -0,0 +1,14 @@ +{ + "slug": "muffin", + "name": "muffin", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62853598" + ], + "operating_systems": [ + "Unix-like operating system" + ], + "licenses": [ + "GNU General Public License, version 2.0 or later" + ] +} diff --git a/data/software/mu/mugu-marauder.json b/data/software/mu/mugu-marauder.json new file mode 100644 index 000000000000..d6d5bde50fea --- /dev/null +++ b/data/software/mu/mugu-marauder.json @@ -0,0 +1,8 @@ +{ + "slug": "mugu-marauder", + "name": "Mugu Marauder", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6932229" + ] +} diff --git a/data/software/mu/muguito.json b/data/software/mu/muguito.json new file mode 100644 index 000000000000..e8c3bd916e59 --- /dev/null +++ b/data/software/mu/muguito.json @@ -0,0 +1,8 @@ +{ + "slug": "muguito", + "name": "Muguito", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6932236" + ] +} diff --git a/data/software/mu/mujoco.json b/data/software/mu/mujoco.json new file mode 100644 index 000000000000..6b6f15ec07eb --- /dev/null +++ b/data/software/mu/mujoco.json @@ -0,0 +1,15 @@ +{ + "slug": "mujoco", + "name": "MuJoCo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q31109350" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "licenses": [ + "Apache Software License 2.0" + ] +} diff --git a/data/software/mu/mukurtu-cms.json b/data/software/mu/mukurtu-cms.json new file mode 100644 index 000000000000..edb51232a453 --- /dev/null +++ b/data/software/mu/mukurtu-cms.json @@ -0,0 +1,8 @@ +{ + "slug": "mukurtu-cms", + "name": "Mukurtu CMS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085130" + ] +} diff --git a/data/software/mu/mule.json b/data/software/mu/mule.json new file mode 100644 index 000000000000..350b3ee5c24f --- /dev/null +++ b/data/software/mu/mule.json @@ -0,0 +1,14 @@ +{ + "slug": "mule", + "name": "Mule", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q935976" + ], + "developers": [ + "MuleSoft" + ], + "programming_languages": [ + "Java" + ] +} diff --git a/data/software/mu/multcloud.json b/data/software/mu/multcloud.json new file mode 100644 index 000000000000..b6a17cc920a0 --- /dev/null +++ b/data/software/mu/multcloud.json @@ -0,0 +1,8 @@ +{ + "slug": "multcloud", + "name": "Multcloud", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28134670" + ] +} diff --git a/data/software/mu/multiagent-systems-product-lines.json b/data/software/mu/multiagent-systems-product-lines.json new file mode 100644 index 000000000000..eef23a223a6f --- /dev/null +++ b/data/software/mu/multiagent-systems-product-lines.json @@ -0,0 +1,8 @@ +{ + "slug": "multiagent-systems-product-lines", + "name": "Multiagent systems product lines", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q392813" + ] +} diff --git a/data/software/mu/multicharts.json b/data/software/mu/multicharts.json new file mode 100644 index 000000000000..1652a3a9755d --- /dev/null +++ b/data/software/mu/multicharts.json @@ -0,0 +1,8 @@ +{ + "slug": "multicharts", + "name": "MultiCharts", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28401125" + ] +} diff --git a/data/software/mu/multilingual-software.json b/data/software/mu/multilingual-software.json new file mode 100644 index 000000000000..541a77492dbb --- /dev/null +++ b/data/software/mu/multilingual-software.json @@ -0,0 +1,8 @@ +{ + "slug": "multilingual-software", + "name": "multilingual software", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136499252" + ] +} diff --git a/data/software/mu/multimedia-atlas-of-veneto-dialects.json b/data/software/mu/multimedia-atlas-of-veneto-dialects.json new file mode 100644 index 000000000000..1963c0b96956 --- /dev/null +++ b/data/software/mu/multimedia-atlas-of-veneto-dialects.json @@ -0,0 +1,8 @@ +{ + "slug": "multimedia-atlas-of-veneto-dialects", + "name": "Multimedia Atlas of Veneto Dialects", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121301099" + ] +} diff --git a/data/software/mu/multimedia-center.json b/data/software/mu/multimedia-center.json new file mode 100644 index 000000000000..ba85e0e64a56 --- /dev/null +++ b/data/software/mu/multimedia-center.json @@ -0,0 +1,8 @@ +{ + "slug": "multimedia-center", + "name": "Multimedia Center", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1952401" + ] +} diff --git a/data/software/mu/multimedia-fusion-2.json b/data/software/mu/multimedia-fusion-2.json new file mode 100644 index 000000000000..8e469728e6f3 --- /dev/null +++ b/data/software/mu/multimedia-fusion-2.json @@ -0,0 +1,8 @@ +{ + "slug": "multimedia-fusion-2", + "name": "Multimedia Fusion 2", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6304123" + ] +} diff --git a/data/software/mu/multimon-ng.json b/data/software/mu/multimon-ng.json new file mode 100644 index 000000000000..e3afa696da3f --- /dev/null +++ b/data/software/mu/multimon-ng.json @@ -0,0 +1,8 @@ +{ + "slug": "multimon-ng", + "name": "multimon-ng", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975238" + ] +} diff --git a/data/software/mu/multinet.json b/data/software/mu/multinet.json new file mode 100644 index 000000000000..d3af0afd9889 --- /dev/null +++ b/data/software/mu/multinet.json @@ -0,0 +1,8 @@ +{ + "slug": "multinet", + "name": "MultiNet", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1787603" + ] +} diff --git a/data/software/mu/multiple-boot-manager.json b/data/software/mu/multiple-boot-manager.json new file mode 100644 index 000000000000..d6f73a66c40e --- /dev/null +++ b/data/software/mu/multiple-boot-manager.json @@ -0,0 +1,8 @@ +{ + "slug": "multiple-boot-manager", + "name": "Multiple Boot Manager", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11341374" + ] +} diff --git a/data/software/mu/multiplicity.json b/data/software/mu/multiplicity.json new file mode 100644 index 000000000000..3e553292b8e7 --- /dev/null +++ b/data/software/mu/multiplicity.json @@ -0,0 +1,8 @@ +{ + "slug": "multiplicity", + "name": "Multiplicity", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1952461" + ] +} diff --git a/data/software/mu/multitail.json b/data/software/mu/multitail.json new file mode 100644 index 000000000000..d68e6e3a40e9 --- /dev/null +++ b/data/software/mu/multitail.json @@ -0,0 +1,11 @@ +{ + "slug": "multitail", + "name": "multitail", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62853546" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/mu/multitool.json b/data/software/mu/multitool.json new file mode 100644 index 000000000000..f52aeb3e7b81 --- /dev/null +++ b/data/software/mu/multitool.json @@ -0,0 +1,15 @@ +{ + "slug": "multitool", + "name": "Multitool", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105099454" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "licenses": [ + "open source" + ] +} diff --git a/data/software/mu/multitrackstudio.json b/data/software/mu/multitrackstudio.json new file mode 100644 index 000000000000..c87bbcf62a7b --- /dev/null +++ b/data/software/mu/multitrackstudio.json @@ -0,0 +1,8 @@ +{ + "slug": "multitrackstudio", + "name": "MultitrackStudio", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28403658" + ] +} diff --git a/data/software/mu/multitran.json b/data/software/mu/multitran.json new file mode 100644 index 000000000000..a55b78227996 --- /dev/null +++ b/data/software/mu/multitran.json @@ -0,0 +1,11 @@ +{ + "slug": "multitran", + "name": "Multitran", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4307006" + ], + "operating_systems": [ + "cross-platform" + ] +} diff --git a/data/software/mu/multivalue.json b/data/software/mu/multivalue.json new file mode 100644 index 000000000000..de8b127976e9 --- /dev/null +++ b/data/software/mu/multivalue.json @@ -0,0 +1,8 @@ +{ + "slug": "multivalue", + "name": "multivalue", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q114840933" + ] +} diff --git a/data/software/mu/multivocal-mapping-database.json b/data/software/mu/multivocal-mapping-database.json new file mode 100644 index 000000000000..df60d1f0b004 --- /dev/null +++ b/data/software/mu/multivocal-mapping-database.json @@ -0,0 +1,8 @@ +{ + "slug": "multivocal-mapping-database", + "name": "multivocal-mapping-database", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127474959" + ] +} diff --git a/data/software/mu/mummer.json b/data/software/mu/mummer.json new file mode 100644 index 000000000000..b5563f2a40c3 --- /dev/null +++ b/data/software/mu/mummer.json @@ -0,0 +1,11 @@ +{ + "slug": "mummer", + "name": "MUMmer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6719063" + ], + "licenses": [ + "Artistic License" + ] +} diff --git a/data/software/mu/mumuplayer.json b/data/software/mu/mumuplayer.json new file mode 100644 index 000000000000..54264afc5331 --- /dev/null +++ b/data/software/mu/mumuplayer.json @@ -0,0 +1,8 @@ +{ + "slug": "mumuplayer", + "name": "MuMuPlayer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137571922" + ] +} diff --git a/data/software/mu/munching-square.json b/data/software/mu/munching-square.json new file mode 100644 index 000000000000..ef71fa4f7fb6 --- /dev/null +++ b/data/software/mu/munching-square.json @@ -0,0 +1,8 @@ +{ + "slug": "munching-square", + "name": "Munching square", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6935671" + ] +} diff --git a/data/software/mu/muparser.json b/data/software/mu/muparser.json new file mode 100644 index 000000000000..db366d280487 --- /dev/null +++ b/data/software/mu/muparser.json @@ -0,0 +1,11 @@ +{ + "slug": "muparser", + "name": "muParser", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131316544" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/mu/mur.json b/data/software/mu/mur.json new file mode 100644 index 000000000000..d70d526b1ff5 --- /dev/null +++ b/data/software/mu/mur.json @@ -0,0 +1,8 @@ +{ + "slug": "mur", + "name": "Murφ", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110130974" + ] +} diff --git a/data/software/mu/mural.json b/data/software/mu/mural.json new file mode 100644 index 000000000000..a58a80d4065b --- /dev/null +++ b/data/software/mu/mural.json @@ -0,0 +1,8 @@ +{ + "slug": "mural", + "name": "Mural", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085131" + ] +} diff --git a/data/software/mu/murmel-meetings.json b/data/software/mu/murmel-meetings.json new file mode 100644 index 000000000000..8ec5221f7847 --- /dev/null +++ b/data/software/mu/murmel-meetings.json @@ -0,0 +1,11 @@ +{ + "slug": "murmel-meetings", + "name": "Murmel Meetings", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140314476" + ], + "operating_systems": [ + "web platform" + ] +} diff --git a/data/software/mu/muro.json b/data/software/mu/muro.json new file mode 100644 index 000000000000..a6efdc4a9e4c --- /dev/null +++ b/data/software/mu/muro.json @@ -0,0 +1,8 @@ +{ + "slug": "muro", + "name": "Muro", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137506816" + ] +} diff --git a/data/software/mu/mus2.json b/data/software/mu/mus2.json new file mode 100644 index 000000000000..4bfe9ce61cf9 --- /dev/null +++ b/data/software/mu/mus2.json @@ -0,0 +1,12 @@ +{ + "slug": "mus2", + "name": "Mus2", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10985986" + ], + "release_date": "2010-01-01", + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/mu/musca.json b/data/software/mu/musca.json new file mode 100644 index 000000000000..d3d1eba67b64 --- /dev/null +++ b/data/software/mu/musca.json @@ -0,0 +1,8 @@ +{ + "slug": "musca", + "name": "Musca", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3328278" + ] +} diff --git a/data/software/mu/muscle.json b/data/software/mu/muscle.json new file mode 100644 index 000000000000..68984ebc01af --- /dev/null +++ b/data/software/mu/muscle.json @@ -0,0 +1,11 @@ +{ + "slug": "muscle", + "name": "MUSCLE", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6719088" + ], + "licenses": [ + "public-domain software" + ] +} diff --git a/data/software/mu/music-box.json b/data/software/mu/music-box.json new file mode 100644 index 000000000000..d6ad3422bdd5 --- /dev/null +++ b/data/software/mu/music-box.json @@ -0,0 +1,11 @@ +{ + "slug": "music-box", + "name": "Music Box", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6941450" + ], + "operating_systems": [ + "RISC OS" + ] +} diff --git a/data/software/mu/music-kit.json b/data/software/mu/music-kit.json new file mode 100644 index 000000000000..bc66091eef14 --- /dev/null +++ b/data/software/mu/music-kit.json @@ -0,0 +1,14 @@ +{ + "slug": "music-kit", + "name": "Music Kit", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6941581" + ], + "developers": [ + "NeXT" + ], + "operating_systems": [ + "NeXTSTEP" + ] +} diff --git a/data/software/mu/music-q123125463.json b/data/software/mu/music-q123125463.json new file mode 100644 index 000000000000..74d510631aef --- /dev/null +++ b/data/software/mu/music-q123125463.json @@ -0,0 +1,8 @@ +{ + "slug": "music-q123125463", + "name": "Music", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123125463" + ] +} diff --git a/data/software/mu/music-shop.json b/data/software/mu/music-shop.json new file mode 100644 index 000000000000..6848fa393da4 --- /dev/null +++ b/data/software/mu/music-shop.json @@ -0,0 +1,12 @@ +{ + "slug": "music-shop", + "name": "Music Shop", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3868546" + ], + "licenses": [ + "proprietary license", + "commercial software" + ] +} diff --git a/data/software/mu/music-unlimited.json b/data/software/mu/music-unlimited.json new file mode 100644 index 000000000000..0a7443174331 --- /dev/null +++ b/data/software/mu/music-unlimited.json @@ -0,0 +1,8 @@ +{ + "slug": "music-unlimited", + "name": "Music Unlimited", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q611472" + ] +} diff --git a/data/software/mu/music.json b/data/software/mu/music.json new file mode 100644 index 000000000000..2b85c5091897 --- /dev/null +++ b/data/software/mu/music.json @@ -0,0 +1,11 @@ +{ + "slug": "music", + "name": "Music", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3328461" + ], + "genres": [ + "music video game" + ] +} diff --git a/data/software/mu/musicedit.json b/data/software/mu/musicedit.json new file mode 100644 index 000000000000..a47c42a4850f --- /dev/null +++ b/data/software/mu/musicedit.json @@ -0,0 +1,11 @@ +{ + "slug": "musicedit", + "name": "Musicedit", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122729420" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/mu/musicmaster.json b/data/software/mu/musicmaster.json new file mode 100644 index 000000000000..912103ba3276 --- /dev/null +++ b/data/software/mu/musicmaster.json @@ -0,0 +1,11 @@ +{ + "slug": "musicmaster", + "name": "Musicmaster", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q15995332" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/mu/musixmatch.json b/data/software/mu/musixmatch.json new file mode 100644 index 000000000000..d5c52f214d15 --- /dev/null +++ b/data/software/mu/musixmatch.json @@ -0,0 +1,8 @@ +{ + "slug": "musixmatch", + "name": "Musixmatch", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6942717" + ] +} diff --git a/data/software/mu/musl-nscd.json b/data/software/mu/musl-nscd.json new file mode 100644 index 000000000000..c332b4fc6e54 --- /dev/null +++ b/data/software/mu/musl-nscd.json @@ -0,0 +1,8 @@ +{ + "slug": "musl-nscd", + "name": "musl-nscd", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975239" + ] +} diff --git a/data/software/mu/muttprint.json b/data/software/mu/muttprint.json new file mode 100644 index 000000000000..5c2f5b149367 --- /dev/null +++ b/data/software/mu/muttprint.json @@ -0,0 +1,8 @@ +{ + "slug": "muttprint", + "name": "Muttprint", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62856416" + ] +} diff --git a/data/software/mu/muxi.json b/data/software/mu/muxi.json new file mode 100644 index 000000000000..ce0d71d48779 --- /dev/null +++ b/data/software/mu/muxi.json @@ -0,0 +1,8 @@ +{ + "slug": "muxi", + "name": "MUXI", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140196048" + ] +} diff --git a/data/software/mu/muzmatch.json b/data/software/mu/muzmatch.json new file mode 100644 index 000000000000..b6757b53337a --- /dev/null +++ b/data/software/mu/muzmatch.json @@ -0,0 +1,8 @@ +{ + "slug": "muzmatch", + "name": "Muzmatch", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106610741" + ] +} diff --git a/data/software/mx/mx-player.json b/data/software/mx/mx-player.json new file mode 100644 index 000000000000..5e5ab951ecfe --- /dev/null +++ b/data/software/mx/mx-player.json @@ -0,0 +1,8 @@ +{ + "slug": "mx-player", + "name": "MX Player", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25389797" + ] +} diff --git a/data/software/mx/mx-takatak-q120882295.json b/data/software/mx/mx-takatak-q120882295.json new file mode 100644 index 000000000000..f2c19abe11f3 --- /dev/null +++ b/data/software/mx/mx-takatak-q120882295.json @@ -0,0 +1,8 @@ +{ + "slug": "mx-takatak-q120882295", + "name": "MX TakaTak", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120882295" + ] +} diff --git a/data/software/mx/mx-takatak.json b/data/software/mx/mx-takatak.json new file mode 100644 index 000000000000..93c51a4edb49 --- /dev/null +++ b/data/software/mx/mx-takatak.json @@ -0,0 +1,8 @@ +{ + "slug": "mx-takatak", + "name": "Mx Takatak", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105702061" + ] +} diff --git a/data/software/mx/mxe.json b/data/software/mx/mxe.json new file mode 100644 index 000000000000..d9b7a38c30dc --- /dev/null +++ b/data/software/mx/mxe.json @@ -0,0 +1,19 @@ +{ + "slug": "mxe", + "name": "MXE", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28671337" + ], + "release_date": "2007-06-13", + "operating_systems": [ + "Berkeley Software Distribution", + "macOS" + ], + "programming_languages": [ + "make" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/mx/mxit.json b/data/software/mx/mxit.json new file mode 100644 index 000000000000..827bc9e1792b --- /dev/null +++ b/data/software/mx/mxit.json @@ -0,0 +1,11 @@ +{ + "slug": "mxit", + "name": "Mxit", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3133024" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/my/my-location.json b/data/software/my/my-location.json new file mode 100644 index 000000000000..717d0bffddc7 --- /dev/null +++ b/data/software/my/my-location.json @@ -0,0 +1,11 @@ +{ + "slug": "my-location", + "name": "My Location", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11787451" + ], + "developers": [ + "Google" + ] +} diff --git a/data/software/my/my-phone.json b/data/software/my/my-phone.json new file mode 100644 index 000000000000..4303498cc7e7 --- /dev/null +++ b/data/software/my/my-phone.json @@ -0,0 +1,15 @@ +{ + "slug": "my-phone", + "name": "My Phone", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4044707" + ], + "release_date": "2009-10-06", + "developers": [ + "Microsoft" + ], + "operating_systems": [ + "Windows Mobile 6.0" + ] +} diff --git a/data/software/my/my-tracks.json b/data/software/my/my-tracks.json new file mode 100644 index 000000000000..50234921937e --- /dev/null +++ b/data/software/my/my-tracks.json @@ -0,0 +1,17 @@ +{ + "slug": "my-tracks", + "name": "My Tracks", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6944894" + ], + "developers": [ + "Google" + ], + "programming_languages": [ + "Java" + ], + "licenses": [ + "Apache License" + ] +} diff --git a/data/software/my/my-windows-phone.json b/data/software/my/my-windows-phone.json new file mode 100644 index 000000000000..f885cce57b64 --- /dev/null +++ b/data/software/my/my-windows-phone.json @@ -0,0 +1,11 @@ +{ + "slug": "my-windows-phone", + "name": "My Windows Phone", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3331289" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/my/my-yahoo.json b/data/software/my/my-yahoo.json new file mode 100644 index 000000000000..906a92fce46a --- /dev/null +++ b/data/software/my/my-yahoo.json @@ -0,0 +1,11 @@ +{ + "slug": "my-yahoo", + "name": "My Yahoo!", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6946657" + ], + "developers": [ + "Yahoo" + ] +} diff --git a/data/software/my/my5.json b/data/software/my/my5.json new file mode 100644 index 000000000000..f7629916fc5a --- /dev/null +++ b/data/software/my/my5.json @@ -0,0 +1,14 @@ +{ + "slug": "my5", + "name": "My5", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5255023" + ], + "developers": [ + "Channel 5" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/my/mycin.json b/data/software/my/mycin.json new file mode 100644 index 000000000000..014a4d8cd3fd --- /dev/null +++ b/data/software/my/mycin.json @@ -0,0 +1,8 @@ +{ + "slug": "mycin", + "name": "Mycin", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q644624" + ] +} diff --git a/data/software/my/mycli.json b/data/software/my/mycli.json new file mode 100644 index 000000000000..a81d43033edb --- /dev/null +++ b/data/software/my/mycli.json @@ -0,0 +1,11 @@ +{ + "slug": "mycli", + "name": "mycli", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975240" + ], + "licenses": [ + "3-clause BSD License" + ] +} diff --git a/data/software/my/mycolors.json b/data/software/my/mycolors.json new file mode 100644 index 000000000000..d8db7b5902ae --- /dev/null +++ b/data/software/my/mycolors.json @@ -0,0 +1,11 @@ +{ + "slug": "mycolors", + "name": "MyColors", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6944798" + ], + "developers": [ + "Stardock" + ] +} diff --git a/data/software/my/mydirectives.json b/data/software/my/mydirectives.json new file mode 100644 index 000000000000..155caa4f23cc --- /dev/null +++ b/data/software/my/mydirectives.json @@ -0,0 +1,8 @@ +{ + "slug": "mydirectives", + "name": "MyDirectives", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17070374" + ] +} diff --git a/data/software/my/mydrivers.json b/data/software/my/mydrivers.json new file mode 100644 index 000000000000..20114958f2b7 --- /dev/null +++ b/data/software/my/mydrivers.json @@ -0,0 +1,11 @@ +{ + "slug": "mydrivers", + "name": "Mydrivers", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q101622000" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/my/myfitnesspal.json b/data/software/my/myfitnesspal.json new file mode 100644 index 000000000000..bd13b2eda291 --- /dev/null +++ b/data/software/my/myfitnesspal.json @@ -0,0 +1,15 @@ +{ + "slug": "myfitnesspal", + "name": "MyFitnessPal", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6944817" + ], + "release_date": "2005-01-01", + "operating_systems": [ + "iOS" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/my/myhistro.json b/data/software/my/myhistro.json new file mode 100644 index 000000000000..bc8ee320255e --- /dev/null +++ b/data/software/my/myhistro.json @@ -0,0 +1,8 @@ +{ + "slug": "myhistro", + "name": "myHistro", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085132" + ] +} diff --git a/data/software/my/myhomelib.json b/data/software/my/myhomelib.json new file mode 100644 index 000000000000..09bec464d98f --- /dev/null +++ b/data/software/my/myhomelib.json @@ -0,0 +1,12 @@ +{ + "slug": "myhomelib", + "name": "MyHomeLib", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4044683" + ], + "licenses": [ + "GNU General Public License, version 3.0", + "MIT License" + ] +} diff --git a/data/software/my/myindicators.json b/data/software/my/myindicators.json new file mode 100644 index 000000000000..18e6a431498b --- /dev/null +++ b/data/software/my/myindicators.json @@ -0,0 +1,8 @@ +{ + "slug": "myindicators", + "name": "MyIndicators", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085133" + ] +} diff --git a/data/software/my/myinfo.json b/data/software/my/myinfo.json new file mode 100644 index 000000000000..41f03a9c0800 --- /dev/null +++ b/data/software/my/myinfo.json @@ -0,0 +1,8 @@ +{ + "slug": "myinfo", + "name": "MyInfo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6944829" + ] +} diff --git a/data/software/my/mylvmbackup.json b/data/software/my/mylvmbackup.json new file mode 100644 index 000000000000..3269b8fb7f72 --- /dev/null +++ b/data/software/my/mylvmbackup.json @@ -0,0 +1,8 @@ +{ + "slug": "mylvmbackup", + "name": "mylvmbackup", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62856408" + ] +} diff --git a/data/software/my/mylyn-builds.json b/data/software/my/mylyn-builds.json new file mode 100644 index 000000000000..735172433157 --- /dev/null +++ b/data/software/my/mylyn-builds.json @@ -0,0 +1,8 @@ +{ + "slug": "mylyn-builds", + "name": "Mylyn Builds", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76168287" + ] +} diff --git a/data/software/my/mylyn-commons.json b/data/software/my/mylyn-commons.json new file mode 100644 index 000000000000..a49dd5442bea --- /dev/null +++ b/data/software/my/mylyn-commons.json @@ -0,0 +1,8 @@ +{ + "slug": "mylyn-commons", + "name": "Mylyn Commons", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76168305" + ] +} diff --git a/data/software/my/mylyn-context.json b/data/software/my/mylyn-context.json new file mode 100644 index 000000000000..0f842e089f9b --- /dev/null +++ b/data/software/my/mylyn-context.json @@ -0,0 +1,8 @@ +{ + "slug": "mylyn-context", + "name": "Mylyn Context", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76168323" + ] +} diff --git a/data/software/my/mylyn-docs.json b/data/software/my/mylyn-docs.json new file mode 100644 index 000000000000..29699e99834c --- /dev/null +++ b/data/software/my/mylyn-docs.json @@ -0,0 +1,8 @@ +{ + "slug": "mylyn-docs", + "name": "Mylyn Docs", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76168338" + ] +} diff --git a/data/software/my/mylyn-incubator.json b/data/software/my/mylyn-incubator.json new file mode 100644 index 000000000000..4fee9adf7f20 --- /dev/null +++ b/data/software/my/mylyn-incubator.json @@ -0,0 +1,8 @@ +{ + "slug": "mylyn-incubator", + "name": "Mylyn Incubator", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76168352" + ] +} diff --git a/data/software/my/mylyn-reviews.json b/data/software/my/mylyn-reviews.json new file mode 100644 index 000000000000..c7e2748721df --- /dev/null +++ b/data/software/my/mylyn-reviews.json @@ -0,0 +1,8 @@ +{ + "slug": "mylyn-reviews", + "name": "Mylyn Reviews", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76168641" + ] +} diff --git a/data/software/my/mylyn-tasks.json b/data/software/my/mylyn-tasks.json new file mode 100644 index 000000000000..14d6cff3ba4f --- /dev/null +++ b/data/software/my/mylyn-tasks.json @@ -0,0 +1,8 @@ +{ + "slug": "mylyn-tasks", + "name": "Mylyn Tasks", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76168626" + ] +} diff --git a/data/software/my/mylyn-versions.json b/data/software/my/mylyn-versions.json new file mode 100644 index 000000000000..dc4bbbc56a5f --- /dev/null +++ b/data/software/my/mylyn-versions.json @@ -0,0 +1,8 @@ +{ + "slug": "mylyn-versions", + "name": "Mylyn Versions", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76168609" + ] +} diff --git a/data/software/my/mymail.json b/data/software/my/mymail.json new file mode 100644 index 000000000000..191a0d888448 --- /dev/null +++ b/data/software/my/mymail.json @@ -0,0 +1,11 @@ +{ + "slug": "mymail", + "name": "MyMail", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q15526815" + ], + "operating_systems": [ + "iOS" + ] +} diff --git a/data/software/my/mymbpg.json b/data/software/my/mymbpg.json new file mode 100644 index 000000000000..0539ca0fbe9f --- /dev/null +++ b/data/software/my/mymbpg.json @@ -0,0 +1,14 @@ +{ + "slug": "mymbpg", + "name": "myMBPG", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140396615" + ], + "developers": [ + "Ravi Verma" + ], + "programming_languages": [ + "Kotlin" + ] +} diff --git a/data/software/my/mymobileweb.json b/data/software/my/mymobileweb.json new file mode 100644 index 000000000000..9873c9b58d1c --- /dev/null +++ b/data/software/my/mymobileweb.json @@ -0,0 +1,8 @@ +{ + "slug": "mymobileweb", + "name": "MyMobileWeb", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6944843" + ] +} diff --git a/data/software/my/mymta.json b/data/software/my/mymta.json new file mode 100644 index 000000000000..c0be0ef51755 --- /dev/null +++ b/data/software/my/mymta.json @@ -0,0 +1,8 @@ +{ + "slug": "mymta", + "name": "MYmta", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q65047473" + ] +} diff --git a/data/software/my/mynetworkmap.json b/data/software/my/mynetworkmap.json new file mode 100644 index 000000000000..6e412d8b78b2 --- /dev/null +++ b/data/software/my/mynetworkmap.json @@ -0,0 +1,8 @@ +{ + "slug": "mynetworkmap", + "name": "MyNetworkmap", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106092112" + ] +} diff --git a/data/software/my/myoffice.json b/data/software/my/myoffice.json new file mode 100644 index 000000000000..d4a6c70403cd --- /dev/null +++ b/data/software/my/myoffice.json @@ -0,0 +1,27 @@ +{ + "slug": "myoffice", + "name": "MyOffice", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q21662027" + ], + "release_date": "2015-10-20", + "operating_systems": [ + "iPadOS", + "Aurora OS", + "iOS", + "macOS", + "Microsoft Windows" + ], + "programming_languages": [ + "Java", + "HTML5", + "Python", + "Go", + "Kotlin", + "Objective-C" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/my/mypcqq.json b/data/software/my/mypcqq.json new file mode 100644 index 000000000000..3a6c516f1ee1 --- /dev/null +++ b/data/software/my/mypcqq.json @@ -0,0 +1,18 @@ +{ + "slug": "mypcqq", + "name": "MyPCQQ", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q52737146" + ], + "release_date": "2015-01-26", + "developers": [ + "MyPCQQ" + ], + "operating_systems": [ + "Microsoft Windows" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/my/mypeers.json b/data/software/my/mypeers.json new file mode 100644 index 000000000000..9e03e60027d5 --- /dev/null +++ b/data/software/my/mypeers.json @@ -0,0 +1,8 @@ +{ + "slug": "mypeers", + "name": "myPeers", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085134" + ] +} diff --git a/data/software/my/myquake.json b/data/software/my/myquake.json new file mode 100644 index 000000000000..b761c31dec77 --- /dev/null +++ b/data/software/my/myquake.json @@ -0,0 +1,14 @@ +{ + "slug": "myquake", + "name": "MyQuake", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60522680" + ], + "developers": [ + "Berkeley Seismological Laboratory" + ], + "operating_systems": [ + "iOS" + ] +} diff --git a/data/software/my/myquiz.json b/data/software/my/myquiz.json new file mode 100644 index 000000000000..7781da43d8df --- /dev/null +++ b/data/software/my/myquiz.json @@ -0,0 +1,8 @@ +{ + "slug": "myquiz", + "name": "myQuiz", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138722002" + ] +} diff --git a/data/software/my/myrulib.json b/data/software/my/myrulib.json new file mode 100644 index 000000000000..458e50023fe9 --- /dev/null +++ b/data/software/my/myrulib.json @@ -0,0 +1,8 @@ +{ + "slug": "myrulib", + "name": "MyRuLib", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4044684" + ] +} diff --git a/data/software/my/mysecurefolder.json b/data/software/my/mysecurefolder.json new file mode 100644 index 000000000000..60da5b86053c --- /dev/null +++ b/data/software/my/mysecurefolder.json @@ -0,0 +1,17 @@ +{ + "slug": "mysecurefolder", + "name": "MySecureFolder", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138842555" + ], + "developers": [ + "Magnyte Software" + ], + "operating_systems": [ + "Microsoft Windows" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/my/myshake.json b/data/software/my/myshake.json new file mode 100644 index 000000000000..37d4b9cd6340 --- /dev/null +++ b/data/software/my/myshake.json @@ -0,0 +1,11 @@ +{ + "slug": "myshake", + "name": "MyShake", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60522582" + ], + "developers": [ + "Berkeley Seismological Laboratory" + ] +} diff --git a/data/software/my/mysms.json b/data/software/my/mysms.json new file mode 100644 index 000000000000..f73c3cfef68e --- /dev/null +++ b/data/software/my/mysms.json @@ -0,0 +1,12 @@ +{ + "slug": "mysms", + "name": "Mysms", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q20712517" + ], + "release_date": "2011-01-01", + "programming_languages": [ + "Java" + ] +} diff --git a/data/software/my/myspell-pt.json b/data/software/my/myspell-pt.json new file mode 100644 index 000000000000..000fe5ddd286 --- /dev/null +++ b/data/software/my/myspell-pt.json @@ -0,0 +1,8 @@ +{ + "slug": "myspell-pt", + "name": "myspell-pt", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106101994" + ] +} diff --git a/data/software/my/mysql-administrator.json b/data/software/my/mysql-administrator.json new file mode 100644 index 000000000000..b822de5c4c09 --- /dev/null +++ b/data/software/my/mysql-administrator.json @@ -0,0 +1,8 @@ +{ + "slug": "mysql-administrator", + "name": "MySQL Administrator", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110788415" + ] +} diff --git a/data/software/my/mysql-manager.json b/data/software/my/mysql-manager.json new file mode 100644 index 000000000000..9b527efaedb5 --- /dev/null +++ b/data/software/my/mysql-manager.json @@ -0,0 +1,11 @@ +{ + "slug": "mysql-manager", + "name": "MySQL Manager", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3868817" + ], + "developers": [ + "Apple Inc." + ] +} diff --git a/data/software/my/mysql-query-browser.json b/data/software/my/mysql-query-browser.json new file mode 100644 index 000000000000..90d53d6406f5 --- /dev/null +++ b/data/software/my/mysql-query-browser.json @@ -0,0 +1,8 @@ +{ + "slug": "mysql-query-browser", + "name": "MySQL Query Browser", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110788418" + ] +} diff --git a/data/software/my/mysqltcl.json b/data/software/my/mysqltcl.json new file mode 100644 index 000000000000..a892c0cf95ea --- /dev/null +++ b/data/software/my/mysqltcl.json @@ -0,0 +1,8 @@ +{ + "slug": "mysqltcl", + "name": "mysqltcl", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62853533" + ] +} diff --git a/data/software/my/mystic-bbs.json b/data/software/my/mystic-bbs.json new file mode 100644 index 000000000000..b88c698b64f9 --- /dev/null +++ b/data/software/my/mystic-bbs.json @@ -0,0 +1,13 @@ +{ + "slug": "mystic-bbs", + "name": "Mystic BBS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6948922" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows", + "DOS" + ] +} diff --git a/data/software/my/mystickies.json b/data/software/my/mystickies.json new file mode 100644 index 000000000000..5f6ce073e506 --- /dev/null +++ b/data/software/my/mystickies.json @@ -0,0 +1,8 @@ +{ + "slug": "mystickies", + "name": "MyStickies", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085135" + ] +} diff --git a/data/software/my/mystride.json b/data/software/my/mystride.json new file mode 100644 index 000000000000..ac0ff44c8177 --- /dev/null +++ b/data/software/my/mystride.json @@ -0,0 +1,8 @@ +{ + "slug": "mystride", + "name": "mystride", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q55722863" + ] +} diff --git a/data/software/my/mythweb.json b/data/software/my/mythweb.json new file mode 100644 index 000000000000..fd3ba01bf015 --- /dev/null +++ b/data/software/my/mythweb.json @@ -0,0 +1,8 @@ +{ + "slug": "mythweb", + "name": "mythweb", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127414877" + ] +} diff --git a/data/software/my/mytop.json b/data/software/my/mytop.json new file mode 100644 index 000000000000..e1b212bdb346 --- /dev/null +++ b/data/software/my/mytop.json @@ -0,0 +1,8 @@ +{ + "slug": "mytop", + "name": "mytop", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60916524" + ] +} diff --git a/data/software/my/mytraffic-saas.json b/data/software/my/mytraffic-saas.json new file mode 100644 index 000000000000..4d37ab58ad16 --- /dev/null +++ b/data/software/my/mytraffic-saas.json @@ -0,0 +1,11 @@ +{ + "slug": "mytraffic-saas", + "name": "MyTraffic SaaS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138855881" + ], + "developers": [ + "MyTraffic" + ] +} diff --git a/data/software/my/mytuner-radio.json b/data/software/my/mytuner-radio.json new file mode 100644 index 000000000000..94869dce2b86 --- /dev/null +++ b/data/software/my/mytuner-radio.json @@ -0,0 +1,8 @@ +{ + "slug": "mytuner-radio", + "name": "MyTuner Radio", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25245665" + ] +} diff --git a/data/software/n0/n0va-desktop.json b/data/software/n0/n0va-desktop.json new file mode 100644 index 000000000000..06d6337e3b87 --- /dev/null +++ b/data/software/n0/n0va-desktop.json @@ -0,0 +1,22 @@ +{ + "slug": "n0va-desktop", + "name": "N0va Desktop", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124317159" + ], + "release_date": "2020-08-04", + "developers": [ + "miHoYo" + ], + "publishers": [ + "miHoYo", + "COGNOSPHERE" + ], + "programming_languages": [ + "Kotlin" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/n8/n8n-in-university-of-cadiz.json b/data/software/n8/n8n-in-university-of-cadiz.json new file mode 100644 index 000000000000..9b299fec7b7c --- /dev/null +++ b/data/software/n8/n8n-in-university-of-cadiz.json @@ -0,0 +1,8 @@ +{ + "slug": "n8n-in-university-of-cadiz", + "name": "N8N in University of Cadiz", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137886285" + ] +} diff --git a/data/software/n8/n8n-mcp.json b/data/software/n8/n8n-mcp.json new file mode 100644 index 000000000000..c905493ea98c --- /dev/null +++ b/data/software/n8/n8n-mcp.json @@ -0,0 +1,17 @@ +{ + "slug": "n8n-mcp", + "name": "n8n-mcp", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139962032" + ], + "developers": [ + "AutomateLab" + ], + "programming_languages": [ + "TypeScript" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/n8/n8n.json b/data/software/n8/n8n.json new file mode 100644 index 000000000000..82ad001d6d5e --- /dev/null +++ b/data/software/n8/n8n.json @@ -0,0 +1,12 @@ +{ + "slug": "n8n", + "name": "n8n", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130305687" + ], + "programming_languages": [ + "Node.js", + "TypeScript" + ] +} diff --git a/data/software/na/naavi.json b/data/software/na/naavi.json new file mode 100644 index 000000000000..800dd0596b96 --- /dev/null +++ b/data/software/na/naavi.json @@ -0,0 +1,8 @@ +{ + "slug": "naavi", + "name": "Naavi", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q23955039" + ] +} diff --git a/data/software/na/nacsport-video-analysis-software.json b/data/software/na/nacsport-video-analysis-software.json new file mode 100644 index 000000000000..66930a876f71 --- /dev/null +++ b/data/software/na/nacsport-video-analysis-software.json @@ -0,0 +1,8 @@ +{ + "slug": "nacsport-video-analysis-software", + "name": "Nacsport Video Analysis Software", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109535031" + ] +} diff --git a/data/software/na/naemon.json b/data/software/na/naemon.json new file mode 100644 index 000000000000..a75c88be5b18 --- /dev/null +++ b/data/software/na/naemon.json @@ -0,0 +1,9 @@ +{ + "slug": "naemon", + "name": "Naemon", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q20707799" + ], + "release_date": "2015-03-29" +} diff --git a/data/software/na/naeon.json b/data/software/na/naeon.json new file mode 100644 index 000000000000..916d4564b09a --- /dev/null +++ b/data/software/na/naeon.json @@ -0,0 +1,17 @@ +{ + "slug": "naeon", + "name": "Naeon", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111386239" + ], + "operating_systems": [ + "Unix-like operating system" + ], + "programming_languages": [ + "GNU Bash" + ], + "licenses": [ + "Affero General Public License" + ] +} diff --git a/data/software/na/nag-fortran-compiler.json b/data/software/na/nag-fortran-compiler.json new file mode 100644 index 000000000000..1bdd24c12189 --- /dev/null +++ b/data/software/na/nag-fortran-compiler.json @@ -0,0 +1,8 @@ +{ + "slug": "nag-fortran-compiler", + "name": "NAG Fortran Compiler", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22692870" + ] +} diff --git a/data/software/na/nagarik-app.json b/data/software/na/nagarik-app.json new file mode 100644 index 000000000000..7479e3349bef --- /dev/null +++ b/data/software/na/nagarik-app.json @@ -0,0 +1,8 @@ +{ + "slug": "nagarik-app", + "name": "Nagarik App", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105162424" + ] +} diff --git a/data/software/na/nagios-snmp-plugins.json b/data/software/na/nagios-snmp-plugins.json new file mode 100644 index 000000000000..c89ad069dc3a --- /dev/null +++ b/data/software/na/nagios-snmp-plugins.json @@ -0,0 +1,8 @@ +{ + "slug": "nagios-snmp-plugins", + "name": "nagios-snmp-plugins", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110788338" + ] +} diff --git a/data/software/na/nagircbot.json b/data/software/na/nagircbot.json new file mode 100644 index 000000000000..a590c3607c31 --- /dev/null +++ b/data/software/na/nagircbot.json @@ -0,0 +1,8 @@ +{ + "slug": "nagircbot", + "name": "nagircbot", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065572" + ] +} diff --git a/data/software/na/nagstamon.json b/data/software/na/nagstamon.json new file mode 100644 index 000000000000..be171e153e86 --- /dev/null +++ b/data/software/na/nagstamon.json @@ -0,0 +1,8 @@ +{ + "slug": "nagstamon", + "name": "nagstamon", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62853528" + ] +} diff --git a/data/software/na/nakala.json b/data/software/na/nakala.json new file mode 100644 index 000000000000..8c25659f6409 --- /dev/null +++ b/data/software/na/nakala.json @@ -0,0 +1,8 @@ +{ + "slug": "nakala", + "name": "NAKALA", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085136" + ] +} diff --git a/data/software/na/namcap.json b/data/software/na/namcap.json new file mode 100644 index 000000000000..a61044d534cf --- /dev/null +++ b/data/software/na/namcap.json @@ -0,0 +1,11 @@ +{ + "slug": "namcap", + "name": "namcap", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117069907" + ], + "licenses": [ + "GNU General Public License, version 2.0 or later" + ] +} diff --git a/data/software/na/namd.json b/data/software/na/namd.json new file mode 100644 index 000000000000..2bab581f9f52 --- /dev/null +++ b/data/software/na/namd.json @@ -0,0 +1,11 @@ +{ + "slug": "namd", + "name": "NAMD", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2078655" + ], + "developers": [ + "University of Illinois Urbana-Champaign" + ] +} diff --git a/data/software/na/namebench.json b/data/software/na/namebench.json new file mode 100644 index 000000000000..5cdf7511adaf --- /dev/null +++ b/data/software/na/namebench.json @@ -0,0 +1,8 @@ +{ + "slug": "namebench", + "name": "Namebench", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q23017276" + ] +} diff --git a/data/software/na/nana-c.json b/data/software/na/nana-c.json new file mode 100644 index 000000000000..7c690f0a254d --- /dev/null +++ b/data/software/na/nana-c.json @@ -0,0 +1,11 @@ +{ + "slug": "nana-c", + "name": "Nana C++", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22093484" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/na/nana-music.json b/data/software/na/nana-music.json new file mode 100644 index 000000000000..5f53ea3cb25e --- /dev/null +++ b/data/software/na/nana-music.json @@ -0,0 +1,11 @@ +{ + "slug": "nana-music", + "name": "Nana Music", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60990348" + ], + "operating_systems": [ + "iOS" + ] +} diff --git a/data/software/na/nana.json b/data/software/na/nana.json new file mode 100644 index 000000000000..e5e3759f3b13 --- /dev/null +++ b/data/software/na/nana.json @@ -0,0 +1,8 @@ +{ + "slug": "nana", + "name": "Nana", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76185808" + ] +} diff --git a/data/software/na/nanitor.json b/data/software/na/nanitor.json new file mode 100644 index 000000000000..d59b63606fcf --- /dev/null +++ b/data/software/na/nanitor.json @@ -0,0 +1,21 @@ +{ + "slug": "nanitor", + "name": "Nanitor", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134963806" + ], + "developers": [ + "Nanitor" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "licenses": [ + "proprietary license" + ], + "genres": [ + "computer security software" + ] +} diff --git a/data/software/na/nano-simbox-imd.json b/data/software/na/nano-simbox-imd.json new file mode 100644 index 000000000000..89bd634d4ccd --- /dev/null +++ b/data/software/na/nano-simbox-imd.json @@ -0,0 +1,22 @@ +{ + "slug": "nano-simbox-imd", + "name": "Nano Simbox iMD", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q55376746" + ], + "release_date": "2017-10-30", + "developers": [ + "Interactive Scientific (United Kingdom)" + ], + "publishers": [ + "Interactive Scientific (United Kingdom)" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "science software" + ] +} diff --git a/data/software/na/nano-threads.json b/data/software/na/nano-threads.json new file mode 100644 index 000000000000..0180c4391a17 --- /dev/null +++ b/data/software/na/nano-threads.json @@ -0,0 +1,8 @@ +{ + "slug": "nano-threads", + "name": "Nano-threads", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6963948" + ] +} diff --git a/data/software/na/nanocad.json b/data/software/na/nanocad.json new file mode 100644 index 000000000000..afd6db4ce966 --- /dev/null +++ b/data/software/na/nanocad.json @@ -0,0 +1,11 @@ +{ + "slug": "nanocad", + "name": "NanoCAD", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3870145" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/na/nanodash.json b/data/software/na/nanodash.json new file mode 100644 index 000000000000..d5829ed3cc38 --- /dev/null +++ b/data/software/na/nanodash.json @@ -0,0 +1,12 @@ +{ + "slug": "nanodash", + "name": "Nanodash", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122911362" + ], + "developers": [ + "Tobias Kuhn", + "Knowledge Pixels" + ] +} diff --git a/data/software/na/nanoflann.json b/data/software/na/nanoflann.json new file mode 100644 index 000000000000..b696b1e00dc6 --- /dev/null +++ b/data/software/na/nanoflann.json @@ -0,0 +1,8 @@ +{ + "slug": "nanoflann", + "name": "nanoflann", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124844885" + ] +} diff --git a/data/software/na/nanohttpd.json b/data/software/na/nanohttpd.json new file mode 100644 index 000000000000..3b334380df6e --- /dev/null +++ b/data/software/na/nanohttpd.json @@ -0,0 +1,15 @@ +{ + "slug": "nanohttpd", + "name": "NanoHTTPD", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6963953" + ], + "release_date": "2003-01-01", + "programming_languages": [ + "Java" + ], + "licenses": [ + "3-clause BSD License" + ] +} diff --git a/data/software/na/nanolanguage.json b/data/software/na/nanolanguage.json new file mode 100644 index 000000000000..db87b2683b00 --- /dev/null +++ b/data/software/na/nanolanguage.json @@ -0,0 +1,8 @@ +{ + "slug": "nanolanguage", + "name": "NanoLanguage", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6963961" + ] +} diff --git a/data/software/na/nanovg.json b/data/software/na/nanovg.json new file mode 100644 index 000000000000..de3d2af27a29 --- /dev/null +++ b/data/software/na/nanovg.json @@ -0,0 +1,11 @@ +{ + "slug": "nanovg", + "name": "nanovg", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117803990" + ], + "licenses": [ + "zlib License" + ] +} diff --git a/data/software/na/naoyun.json b/data/software/na/naoyun.json new file mode 100644 index 000000000000..cf3f9695b00b --- /dev/null +++ b/data/software/na/naoyun.json @@ -0,0 +1,8 @@ +{ + "slug": "naoyun", + "name": "Naoyun", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087837" + ] +} diff --git a/data/software/na/napster-q1965067.json b/data/software/na/napster-q1965067.json new file mode 100644 index 000000000000..68875116e103 --- /dev/null +++ b/data/software/na/napster-q1965067.json @@ -0,0 +1,8 @@ +{ + "slug": "napster-q1965067", + "name": "Napster", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1965067" + ] +} diff --git a/data/software/na/napster.json b/data/software/na/napster.json new file mode 100644 index 000000000000..abab1142c80b --- /dev/null +++ b/data/software/na/napster.json @@ -0,0 +1,15 @@ +{ + "slug": "napster", + "name": "Napster", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q275141" + ], + "developers": [ + "Sean Parker", + "Shawn Fanning" + ], + "licenses": [ + "shareware" + ] +} diff --git a/data/software/na/nars2000.json b/data/software/na/nars2000.json new file mode 100644 index 000000000000..2ef50a6ca1f3 --- /dev/null +++ b/data/software/na/nars2000.json @@ -0,0 +1,8 @@ +{ + "slug": "nars2000", + "name": "NARS2000", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130374558" + ] +} diff --git a/data/software/na/narus.json b/data/software/na/narus.json new file mode 100644 index 000000000000..95bd508cfda4 --- /dev/null +++ b/data/software/na/narus.json @@ -0,0 +1,8 @@ +{ + "slug": "narus", + "name": "Narus", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q647506" + ] +} diff --git a/data/software/na/nas-parallel-benchmarks.json b/data/software/na/nas-parallel-benchmarks.json new file mode 100644 index 000000000000..3a21fb95f812 --- /dev/null +++ b/data/software/na/nas-parallel-benchmarks.json @@ -0,0 +1,11 @@ +{ + "slug": "nas-parallel-benchmarks", + "name": "NAS Parallel Benchmarks", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4044819" + ], + "developers": [ + "NASA Advanced Supercomputing Division" + ] +} diff --git a/data/software/na/nat-braille.json b/data/software/na/nat-braille.json new file mode 100644 index 000000000000..93e26c0844b1 --- /dev/null +++ b/data/software/na/nat-braille.json @@ -0,0 +1,8 @@ +{ + "slug": "nat-braille", + "name": "NAT Braille", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3336282" + ] +} diff --git a/data/software/na/nat-traverse.json b/data/software/na/nat-traverse.json new file mode 100644 index 000000000000..9170b92ba9bc --- /dev/null +++ b/data/software/na/nat-traverse.json @@ -0,0 +1,8 @@ +{ + "slug": "nat-traverse", + "name": "nat-traverse", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62857691" + ] +} diff --git a/data/software/na/natachata.json b/data/software/na/natachata.json new file mode 100644 index 000000000000..83bb65e03962 --- /dev/null +++ b/data/software/na/natachata.json @@ -0,0 +1,8 @@ +{ + "slug": "natachata", + "name": "Natachata", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16977319" + ] +} diff --git a/data/software/na/national-integrated-ballistic-information-network.json b/data/software/na/national-integrated-ballistic-information-network.json new file mode 100644 index 000000000000..e4be6f0edf2e --- /dev/null +++ b/data/software/na/national-integrated-ballistic-information-network.json @@ -0,0 +1,8 @@ +{ + "slug": "national-integrated-ballistic-information-network", + "name": "National Integrated Ballistic Information Network", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16955194" + ] +} diff --git a/data/software/na/national-integrated-immigration-system.json b/data/software/na/national-integrated-immigration-system.json new file mode 100644 index 000000000000..cbef1886abca --- /dev/null +++ b/data/software/na/national-integrated-immigration-system.json @@ -0,0 +1,8 @@ +{ + "slug": "national-integrated-immigration-system", + "name": "National Integrated Immigration System", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138544181" + ] +} diff --git a/data/software/na/national-parking-platform.json b/data/software/na/national-parking-platform.json new file mode 100644 index 000000000000..7deb20c62c96 --- /dev/null +++ b/data/software/na/national-parking-platform.json @@ -0,0 +1,8 @@ +{ + "slug": "national-parking-platform", + "name": "National Parking Platform", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134716929" + ] +} diff --git a/data/software/na/native-and-foreign-format.json b/data/software/na/native-and-foreign-format.json new file mode 100644 index 000000000000..de23eb861319 --- /dev/null +++ b/data/software/na/native-and-foreign-format.json @@ -0,0 +1,8 @@ +{ + "slug": "native-and-foreign-format", + "name": "Native and foreign format", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6980089" + ] +} diff --git a/data/software/na/native.json b/data/software/na/native.json new file mode 100644 index 000000000000..adbcbaf42574 --- /dev/null +++ b/data/software/na/native.json @@ -0,0 +1,8 @@ +{ + "slug": "native", + "name": "native", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2187908" + ] +} diff --git a/data/software/na/natpass.json b/data/software/na/natpass.json new file mode 100644 index 000000000000..1278bc565ce9 --- /dev/null +++ b/data/software/na/natpass.json @@ -0,0 +1,8 @@ +{ + "slug": "natpass", + "name": "Natpass", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6980215" + ] +} diff --git a/data/software/na/natural-cycles.json b/data/software/na/natural-cycles.json new file mode 100644 index 000000000000..b4ad44f754c5 --- /dev/null +++ b/data/software/na/natural-cycles.json @@ -0,0 +1,8 @@ +{ + "slug": "natural-cycles", + "name": "Natural Cycles", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28136570" + ] +} diff --git a/data/software/na/nature-mobile.json b/data/software/na/nature-mobile.json new file mode 100644 index 000000000000..44b47845fc9f --- /dev/null +++ b/data/software/na/nature-mobile.json @@ -0,0 +1,8 @@ +{ + "slug": "nature-mobile", + "name": "Nature mobile", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087838" + ] +} diff --git a/data/software/na/naval-observatory-vector-astrometry-subroutines.json b/data/software/na/naval-observatory-vector-astrometry-subroutines.json new file mode 100644 index 000000000000..75a907e75313 --- /dev/null +++ b/data/software/na/naval-observatory-vector-astrometry-subroutines.json @@ -0,0 +1,11 @@ +{ + "slug": "naval-observatory-vector-astrometry-subroutines", + "name": "Naval Observatory Vector Astrometry Subroutines", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17042610" + ], + "developers": [ + "United States Naval Observatory" + ] +} diff --git a/data/software/na/navcis.json b/data/software/na/navcis.json new file mode 100644 index 000000000000..93beac6ef038 --- /dev/null +++ b/data/software/na/navcis.json @@ -0,0 +1,8 @@ +{ + "slug": "navcis", + "name": "NavCIS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6981562" + ] +} diff --git a/data/software/na/naver-pay.json b/data/software/na/naver-pay.json new file mode 100644 index 000000000000..021403ddc47a --- /dev/null +++ b/data/software/na/naver-pay.json @@ -0,0 +1,11 @@ +{ + "slug": "naver-pay", + "name": "Naver Pay", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q24861593" + ], + "developers": [ + "Naver Corporation" + ] +} diff --git a/data/software/na/naver-series.json b/data/software/na/naver-series.json new file mode 100644 index 000000000000..fd03389ae502 --- /dev/null +++ b/data/software/na/naver-series.json @@ -0,0 +1,8 @@ +{ + "slug": "naver-series", + "name": "NAVER Series", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137597841" + ] +} diff --git a/data/software/na/naver-vaccine.json b/data/software/na/naver-vaccine.json new file mode 100644 index 000000000000..426c2a11fa2f --- /dev/null +++ b/data/software/na/naver-vaccine.json @@ -0,0 +1,11 @@ +{ + "slug": "naver-vaccine", + "name": "Naver Vaccine", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q12590259" + ], + "developers": [ + "Naver Corporation" + ] +} diff --git a/data/software/na/navgem.json b/data/software/na/navgem.json new file mode 100644 index 000000000000..599ee7fd015e --- /dev/null +++ b/data/software/na/navgem.json @@ -0,0 +1,8 @@ +{ + "slug": "navgem", + "name": "NAVGEM", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6952622" + ] +} diff --git a/data/software/na/navicat-for-mysql.json b/data/software/na/navicat-for-mysql.json new file mode 100644 index 000000000000..2aa276f58da4 --- /dev/null +++ b/data/software/na/navicat-for-mysql.json @@ -0,0 +1,8 @@ +{ + "slug": "navicat-for-mysql", + "name": "Navicat for MySQL", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085137" + ] +} diff --git a/data/software/na/navifon.json b/data/software/na/navifon.json new file mode 100644 index 000000000000..bea790407f22 --- /dev/null +++ b/data/software/na/navifon.json @@ -0,0 +1,11 @@ +{ + "slug": "navifon", + "name": "Navifon", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4045088" + ], + "operating_systems": [ + "Windows Mobile" + ] +} diff --git a/data/software/na/navigraph.json b/data/software/na/navigraph.json new file mode 100644 index 000000000000..8c32e14a3e9b --- /dev/null +++ b/data/software/na/navigraph.json @@ -0,0 +1,8 @@ +{ + "slug": "navigraph", + "name": "Navigraph", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138748632" + ] +} diff --git a/data/software/na/navisworks.json b/data/software/na/navisworks.json new file mode 100644 index 000000000000..66a965a86e66 --- /dev/null +++ b/data/software/na/navisworks.json @@ -0,0 +1,14 @@ +{ + "slug": "navisworks", + "name": "Navisworks", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6188767" + ], + "developers": [ + "Autodesk" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/na/navmap.json b/data/software/na/navmap.json new file mode 100644 index 000000000000..c7e41ab8077e --- /dev/null +++ b/data/software/na/navmap.json @@ -0,0 +1,8 @@ +{ + "slug": "navmap", + "name": "NAVMAP", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121631709" + ] +} diff --git a/data/software/nb/nbench.json b/data/software/nb/nbench.json new file mode 100644 index 000000000000..155c4739d84f --- /dev/null +++ b/data/software/nb/nbench.json @@ -0,0 +1,11 @@ +{ + "slug": "nbench", + "name": "NBench", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6952883" + ], + "developers": [ + "Byte" + ] +} diff --git a/data/software/nb/nbtstat.json b/data/software/nb/nbtstat.json new file mode 100644 index 000000000000..5ea1b6afeeba --- /dev/null +++ b/data/software/nb/nbtstat.json @@ -0,0 +1,8 @@ +{ + "slug": "nbtstat", + "name": "Nbtstat", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6983630" + ] +} diff --git a/data/software/nc/ncdc.json b/data/software/nc/ncdc.json new file mode 100644 index 000000000000..9ec93fd6db75 --- /dev/null +++ b/data/software/nc/ncdc.json @@ -0,0 +1,8 @@ +{ + "slug": "ncdc", + "name": "ncdc", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975242" + ] +} diff --git a/data/software/nc/ncftpd.json b/data/software/nc/ncftpd.json new file mode 100644 index 000000000000..82b122a8ced2 --- /dev/null +++ b/data/software/nc/ncftpd.json @@ -0,0 +1,9 @@ +{ + "slug": "ncftpd", + "name": "NcFTPd", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6983631" + ], + "release_date": "1991-01-01" +} diff --git a/data/software/nc/ncomm.json b/data/software/nc/ncomm.json new file mode 100644 index 000000000000..e236395005b9 --- /dev/null +++ b/data/software/nc/ncomm.json @@ -0,0 +1,11 @@ +{ + "slug": "ncomm", + "name": "NComm", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6953261" + ], + "operating_systems": [ + "AmigaOS" + ] +} diff --git a/data/software/nc/ncored.json b/data/software/nc/ncored.json new file mode 100644 index 000000000000..031809fad02c --- /dev/null +++ b/data/software/nc/ncored.json @@ -0,0 +1,15 @@ +{ + "slug": "ncored", + "name": "Ncored", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140007578" + ], + "developers": [ + "Noir architects" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/software/nc/ncsim.json b/data/software/nc/ncsim.json new file mode 100644 index 000000000000..19384fe56889 --- /dev/null +++ b/data/software/nc/ncsim.json @@ -0,0 +1,11 @@ +{ + "slug": "ncsim", + "name": "NCSim", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6953219" + ], + "developers": [ + "Cadence Design Systems" + ] +} diff --git a/data/software/nc/ncss.json b/data/software/nc/ncss.json new file mode 100644 index 000000000000..91a6b9d0d3e7 --- /dev/null +++ b/data/software/nc/ncss.json @@ -0,0 +1,8 @@ +{ + "slug": "ncss", + "name": "NCSS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17042611" + ] +} diff --git a/data/software/nd/nd-cosmos.json b/data/software/nd/nd-cosmos.json new file mode 100644 index 000000000000..37cdc3192f7c --- /dev/null +++ b/data/software/nd/nd-cosmos.json @@ -0,0 +1,8 @@ +{ + "slug": "nd-cosmos", + "name": "ND-COSMOS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16979550" + ] +} diff --git a/data/software/nd/ndepend.json b/data/software/nd/ndepend.json new file mode 100644 index 000000000000..e761d1ca2f25 --- /dev/null +++ b/data/software/nd/ndepend.json @@ -0,0 +1,8 @@ +{ + "slug": "ndepend", + "name": "NDepend", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3334327" + ] +} diff --git a/data/software/nd/ndisc6.json b/data/software/nd/ndisc6.json new file mode 100644 index 000000000000..3ef2d8236eea --- /dev/null +++ b/data/software/nd/ndisc6.json @@ -0,0 +1,8 @@ +{ + "slug": "ndisc6", + "name": "NDisc6", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62856387" + ] +} diff --git a/data/software/nd/ndoutils.json b/data/software/nd/ndoutils.json new file mode 100644 index 000000000000..7615b671d12b --- /dev/null +++ b/data/software/nd/ndoutils.json @@ -0,0 +1,8 @@ +{ + "slug": "ndoutils", + "name": "NDOUtils", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3334325" + ] +} diff --git a/data/software/ne/nearby-share.json b/data/software/ne/nearby-share.json new file mode 100644 index 000000000000..f89bc0467aa7 --- /dev/null +++ b/data/software/ne/nearby-share.json @@ -0,0 +1,11 @@ +{ + "slug": "nearby-share", + "name": "Nearby Share", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q98098840" + ], + "developers": [ + "Google" + ] +} diff --git a/data/software/ne/nearpod.json b/data/software/ne/nearpod.json new file mode 100644 index 000000000000..3a5add6e941c --- /dev/null +++ b/data/software/ne/nearpod.json @@ -0,0 +1,8 @@ +{ + "slug": "nearpod", + "name": "Nearpod", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25021614" + ] +} diff --git a/data/software/ne/neatline.json b/data/software/ne/neatline.json new file mode 100644 index 000000000000..4a3c859e732c --- /dev/null +++ b/data/software/ne/neatline.json @@ -0,0 +1,8 @@ +{ + "slug": "neatline", + "name": "Neatline", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085138" + ] +} diff --git a/data/software/ne/nebulagraph.json b/data/software/ne/nebulagraph.json new file mode 100644 index 000000000000..8276ff9871c6 --- /dev/null +++ b/data/software/ne/nebulagraph.json @@ -0,0 +1,14 @@ +{ + "slug": "nebulagraph", + "name": "NebulaGraph", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115925815" + ], + "programming_languages": [ + "Java" + ], + "licenses": [ + "Apache Software License 2.0" + ] +} diff --git a/data/software/ne/nec-hydrastor.json b/data/software/ne/nec-hydrastor.json new file mode 100644 index 000000000000..7e6898d96980 --- /dev/null +++ b/data/software/ne/nec-hydrastor.json @@ -0,0 +1,8 @@ +{ + "slug": "nec-hydrastor", + "name": "NEC HYDRAstor", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q19885359" + ] +} diff --git a/data/software/ne/needrestart.json b/data/software/ne/needrestart.json new file mode 100644 index 000000000000..cb9c824a5b38 --- /dev/null +++ b/data/software/ne/needrestart.json @@ -0,0 +1,8 @@ +{ + "slug": "needrestart", + "name": "needrestart", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975244" + ] +} diff --git a/data/software/ne/neighbornode.json b/data/software/ne/neighbornode.json new file mode 100644 index 000000000000..9536dcc91682 --- /dev/null +++ b/data/software/ne/neighbornode.json @@ -0,0 +1,8 @@ +{ + "slug": "neighbornode", + "name": "Neighbornode", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6988123" + ] +} diff --git a/data/software/ne/nek5000.json b/data/software/ne/nek5000.json new file mode 100644 index 000000000000..eca8e2a35792 --- /dev/null +++ b/data/software/ne/nek5000.json @@ -0,0 +1,8 @@ +{ + "slug": "nek5000", + "name": "Nek5000", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118175564" + ] +} diff --git a/data/software/ne/nekoai.json b/data/software/ne/nekoai.json new file mode 100644 index 000000000000..c619b7890db3 --- /dev/null +++ b/data/software/ne/nekoai.json @@ -0,0 +1,18 @@ +{ + "slug": "nekoai", + "name": "NekoAI", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140106440" + ], + "operating_systems": [ + "Fedora Linux", + "Microsoft Windows" + ], + "programming_languages": [ + "TypeScript" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/ne/nemesis.json b/data/software/ne/nemesis.json new file mode 100644 index 000000000000..f37dab725288 --- /dev/null +++ b/data/software/ne/nemesis.json @@ -0,0 +1,8 @@ +{ + "slug": "nemesis", + "name": "nemesis", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60917674" + ] +} diff --git a/data/software/ne/nemexia.json b/data/software/ne/nemexia.json new file mode 100644 index 000000000000..c541bbd61ace --- /dev/null +++ b/data/software/ne/nemexia.json @@ -0,0 +1,15 @@ +{ + "slug": "nemexia", + "name": "Nemexia", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18756602" + ], + "release_date": "2009-01-01", + "developers": [ + "XS Software" + ], + "genres": [ + "real-time strategy" + ] +} diff --git a/data/software/ne/nemid.json b/data/software/ne/nemid.json new file mode 100644 index 000000000000..efe7488d7168 --- /dev/null +++ b/data/software/ne/nemid.json @@ -0,0 +1,8 @@ +{ + "slug": "nemid", + "name": "NemID", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4993263" + ] +} diff --git a/data/software/ne/nemo-nedimah-methods-ontology.json b/data/software/ne/nemo-nedimah-methods-ontology.json new file mode 100644 index 000000000000..62ace66c64d5 --- /dev/null +++ b/data/software/ne/nemo-nedimah-methods-ontology.json @@ -0,0 +1,8 @@ +{ + "slug": "nemo-nedimah-methods-ontology", + "name": "NeMO NeDiMAH Methods Ontology", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085139" + ] +} diff --git a/data/software/ne/nemo.json b/data/software/ne/nemo.json new file mode 100644 index 000000000000..8497416f76c9 --- /dev/null +++ b/data/software/ne/nemo.json @@ -0,0 +1,12 @@ +{ + "slug": "nemo", + "name": "NEMO", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17042613" + ], + "release_date": "2014-03-14", + "programming_languages": [ + "Fortran" + ] +} diff --git a/data/software/ne/neo-french-law-enforcement-agencies-mobile-terminals.json b/data/software/ne/neo-french-law-enforcement-agencies-mobile-terminals.json new file mode 100644 index 000000000000..078dd23e0f59 --- /dev/null +++ b/data/software/ne/neo-french-law-enforcement-agencies-mobile-terminals.json @@ -0,0 +1,11 @@ +{ + "slug": "neo-french-law-enforcement-agencies-mobile-terminals", + "name": "Neo (french law enforcement agencies mobile terminals)", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q38005350" + ], + "developers": [ + "Agence nationale de la sécurité des systèmes d'information" + ] +} diff --git a/data/software/ne/neo-imaging.json b/data/software/ne/neo-imaging.json new file mode 100644 index 000000000000..a8813829036f --- /dev/null +++ b/data/software/ne/neo-imaging.json @@ -0,0 +1,8 @@ +{ + "slug": "neo-imaging", + "name": "NEO iMAGING", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10890330" + ] +} diff --git a/data/software/ne/neo4j-console.json b/data/software/ne/neo4j-console.json new file mode 100644 index 000000000000..ec9e24e22b08 --- /dev/null +++ b/data/software/ne/neo4j-console.json @@ -0,0 +1,8 @@ +{ + "slug": "neo4j-console", + "name": "Neo4j Console", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085140" + ] +} diff --git a/data/software/ne/neofuuka-scraper.json b/data/software/ne/neofuuka-scraper.json new file mode 100644 index 000000000000..01f347cbeb1c --- /dev/null +++ b/data/software/ne/neofuuka-scraper.json @@ -0,0 +1,17 @@ +{ + "slug": "neofuuka-scraper", + "name": "neofuuka-scraper", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106514402" + ], + "developers": [ + "Bibliotheca Anonoma" + ], + "programming_languages": [ + "Python" + ], + "licenses": [ + "GNU General Public License, version 3.0" + ] +} diff --git a/data/software/ne/neoload.json b/data/software/ne/neoload.json new file mode 100644 index 000000000000..ca8e327d1ef4 --- /dev/null +++ b/data/software/ne/neoload.json @@ -0,0 +1,11 @@ +{ + "slug": "neoload", + "name": "NeoLoad", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6991827" + ], + "programming_languages": [ + "Java" + ] +} diff --git a/data/software/ne/neon.json b/data/software/ne/neon.json new file mode 100644 index 000000000000..0698d12f255c --- /dev/null +++ b/data/software/ne/neon.json @@ -0,0 +1,11 @@ +{ + "slug": "neon", + "name": "Neon", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6993388" + ], + "developers": [ + "Jeff Minter" + ] +} diff --git a/data/software/ne/neonion.json b/data/software/ne/neonion.json new file mode 100644 index 000000000000..e5575d4c96a7 --- /dev/null +++ b/data/software/ne/neonion.json @@ -0,0 +1,8 @@ +{ + "slug": "neonion", + "name": "neonion", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108730830" + ] +} diff --git a/data/software/ne/neoplanet.json b/data/software/ne/neoplanet.json new file mode 100644 index 000000000000..5ccc2f0be53a --- /dev/null +++ b/data/software/ne/neoplanet.json @@ -0,0 +1,11 @@ +{ + "slug": "neoplanet", + "name": "NeoPlanet", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6991832" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/ne/neoragex.json b/data/software/ne/neoragex.json new file mode 100644 index 000000000000..983664445595 --- /dev/null +++ b/data/software/ne/neoragex.json @@ -0,0 +1,8 @@ +{ + "slug": "neoragex", + "name": "NeoRAGEx", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1073844" + ] +} diff --git a/data/software/ne/nequi.json b/data/software/ne/nequi.json new file mode 100644 index 000000000000..6239074b686f --- /dev/null +++ b/data/software/ne/nequi.json @@ -0,0 +1,8 @@ +{ + "slug": "nequi", + "name": "Nequi", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q128916812" + ] +} diff --git a/data/software/ne/ner-nltk.json b/data/software/ne/ner-nltk.json new file mode 100644 index 000000000000..88a6e8b2ac7f --- /dev/null +++ b/data/software/ne/ner-nltk.json @@ -0,0 +1,8 @@ +{ + "slug": "ner-nltk", + "name": "NER NLTK", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087839" + ] +} diff --git a/data/software/ne/nerf.json b/data/software/ne/nerf.json new file mode 100644 index 000000000000..501c5f8e8d42 --- /dev/null +++ b/data/software/ne/nerf.json @@ -0,0 +1,8 @@ +{ + "slug": "nerf", + "name": "Nerf", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085141" + ] +} diff --git a/data/software/ne/nero-digital.json b/data/software/ne/nero-digital.json new file mode 100644 index 000000000000..abc962bfb24b --- /dev/null +++ b/data/software/ne/nero-digital.json @@ -0,0 +1,8 @@ +{ + "slug": "nero-digital", + "name": "Nero Digital", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q460210" + ] +} diff --git a/data/software/ne/nero-linux.json b/data/software/ne/nero-linux.json new file mode 100644 index 000000000000..ad3b6eaa5a3e --- /dev/null +++ b/data/software/ne/nero-linux.json @@ -0,0 +1,14 @@ +{ + "slug": "nero-linux", + "name": "Nero Linux", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6041028" + ], + "developers": [ + "Nero Inc" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/ne/nero-multimedia-suite-10-platinum-hd.json b/data/software/ne/nero-multimedia-suite-10-platinum-hd.json new file mode 100644 index 000000000000..fe847a831504 --- /dev/null +++ b/data/software/ne/nero-multimedia-suite-10-platinum-hd.json @@ -0,0 +1,11 @@ +{ + "slug": "nero-multimedia-suite-10-platinum-hd", + "name": "Nero Multimedia Suite 10 Platinum HD", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q12500365" + ], + "developers": [ + "Nero Inc" + ] +} diff --git a/data/software/ne/nero-wave-editor.json b/data/software/ne/nero-wave-editor.json new file mode 100644 index 000000000000..a29d7dae423c --- /dev/null +++ b/data/software/ne/nero-wave-editor.json @@ -0,0 +1,11 @@ +{ + "slug": "nero-wave-editor", + "name": "Nero Wave Editor", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4045230" + ], + "developers": [ + "Nero Inc" + ] +} diff --git a/data/software/ne/nesstar.json b/data/software/ne/nesstar.json new file mode 100644 index 000000000000..9df71ce36460 --- /dev/null +++ b/data/software/ne/nesstar.json @@ -0,0 +1,11 @@ +{ + "slug": "nesstar", + "name": "Nesstar", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3338423" + ], + "developers": [ + "Norwegian Centre for Research Data" + ] +} diff --git a/data/software/ne/nessy-tales.json b/data/software/ne/nessy-tales.json new file mode 100644 index 000000000000..52520569b6d8 --- /dev/null +++ b/data/software/ne/nessy-tales.json @@ -0,0 +1,8 @@ +{ + "slug": "nessy-tales", + "name": "Nessy Tales", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6997739" + ] +} diff --git a/data/software/ne/nestimulator.json b/data/software/ne/nestimulator.json new file mode 100644 index 000000000000..d611bd65b16f --- /dev/null +++ b/data/software/ne/nestimulator.json @@ -0,0 +1,8 @@ +{ + "slug": "nestimulator", + "name": "NEStimulator", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6953600" + ] +} diff --git a/data/software/ne/net-bio.json b/data/software/ne/net-bio.json new file mode 100644 index 000000000000..6b541d8d457c --- /dev/null +++ b/data/software/ne/net-bio.json @@ -0,0 +1,8 @@ +{ + "slug": "net-bio", + "name": ".NET Bio", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16155694" + ] +} diff --git a/data/software/ne/net-compact-framework-controls.json b/data/software/ne/net-compact-framework-controls.json new file mode 100644 index 000000000000..d0544e24995e --- /dev/null +++ b/data/software/ne/net-compact-framework-controls.json @@ -0,0 +1,8 @@ +{ + "slug": "net-compact-framework-controls", + "name": ".NET Compact Framework controls", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4545413" + ] +} diff --git a/data/software/ne/net-gadgeteer.json b/data/software/ne/net-gadgeteer.json new file mode 100644 index 000000000000..784f97e51d8b --- /dev/null +++ b/data/software/ne/net-gadgeteer.json @@ -0,0 +1,14 @@ +{ + "slug": "net-gadgeteer", + "name": ".Net Gadgeteer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4545416" + ], + "developers": [ + "Microsoft" + ], + "licenses": [ + "Apache License" + ] +} diff --git a/data/software/ne/net-party.json b/data/software/ne/net-party.json new file mode 100644 index 000000000000..96878727ef51 --- /dev/null +++ b/data/software/ne/net-party.json @@ -0,0 +1,8 @@ +{ + "slug": "net-party", + "name": "Net Party", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17071167" + ] +} diff --git a/data/software/ne/net-reflector.json b/data/software/ne/net-reflector.json new file mode 100644 index 000000000000..8aefe5f95cd7 --- /dev/null +++ b/data/software/ne/net-reflector.json @@ -0,0 +1,14 @@ +{ + "slug": "net-reflector", + "name": ".NET Reflector", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q158836" + ], + "developers": [ + "Red Gate Software" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/ne/net-speakerphone.json b/data/software/ne/net-speakerphone.json new file mode 100644 index 000000000000..710b3fb12d99 --- /dev/null +++ b/data/software/ne/net-speakerphone.json @@ -0,0 +1,8 @@ +{ + "slug": "net-speakerphone", + "name": "Net Speakerphone", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q12071907" + ] +} diff --git a/data/software/ne/net-tools.json b/data/software/ne/net-tools.json new file mode 100644 index 000000000000..ca51378c7945 --- /dev/null +++ b/data/software/ne/net-tools.json @@ -0,0 +1,11 @@ +{ + "slug": "net-tools", + "name": "net-tools", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975250" + ], + "licenses": [ + "GNU General Public License, version 2.0" + ] +} diff --git a/data/software/ne/netbackup.json b/data/software/ne/netbackup.json new file mode 100644 index 000000000000..0aaa74af7b10 --- /dev/null +++ b/data/software/ne/netbackup.json @@ -0,0 +1,11 @@ +{ + "slug": "netbackup", + "name": "NetBackup", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2063698" + ], + "developers": [ + "Gen Digital" + ] +} diff --git a/data/software/ne/netbird.json b/data/software/ne/netbird.json new file mode 100644 index 000000000000..8e7c0e9ebb55 --- /dev/null +++ b/data/software/ne/netbird.json @@ -0,0 +1,14 @@ +{ + "slug": "netbird", + "name": "NetBird", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131584057" + ], + "programming_languages": [ + "Go" + ], + "licenses": [ + "3-clause BSD License" + ] +} diff --git a/data/software/ne/netboot.json b/data/software/ne/netboot.json new file mode 100644 index 000000000000..c5ef9a310c4b --- /dev/null +++ b/data/software/ne/netboot.json @@ -0,0 +1,11 @@ +{ + "slug": "netboot", + "name": "NetBoot", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6998194" + ], + "developers": [ + "Apple Inc." + ] +} diff --git a/data/software/ne/netcabo-messenger.json b/data/software/ne/netcabo-messenger.json new file mode 100644 index 000000000000..bb8ab552ba80 --- /dev/null +++ b/data/software/ne/netcabo-messenger.json @@ -0,0 +1,8 @@ +{ + "slug": "netcabo-messenger", + "name": "Netcabo Messenger", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10336425" + ] +} diff --git a/data/software/ne/netcache.json b/data/software/ne/netcache.json new file mode 100644 index 000000000000..287db27a2232 --- /dev/null +++ b/data/software/ne/netcache.json @@ -0,0 +1,11 @@ +{ + "slug": "netcache", + "name": "NetCache", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6998199" + ], + "developers": [ + "NetApp" + ] +} diff --git a/data/software/ne/netcad.json b/data/software/ne/netcad.json new file mode 100644 index 000000000000..e416956173de --- /dev/null +++ b/data/software/ne/netcad.json @@ -0,0 +1,8 @@ +{ + "slug": "netcad", + "name": "Netcad", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q12843271" + ] +} diff --git a/data/software/ne/netcaptor.json b/data/software/ne/netcaptor.json new file mode 100644 index 000000000000..263b1e88ddd5 --- /dev/null +++ b/data/software/ne/netcaptor.json @@ -0,0 +1,8 @@ +{ + "slug": "netcaptor", + "name": "NetCaptor", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3874949" + ] +} diff --git a/data/software/ne/netcat.json b/data/software/ne/netcat.json new file mode 100644 index 000000000000..46ba61148545 --- /dev/null +++ b/data/software/ne/netcat.json @@ -0,0 +1,11 @@ +{ + "slug": "netcat", + "name": "Netcat", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q306070" + ], + "operating_systems": [ + "Unix-like operating system" + ] +} diff --git a/data/software/ne/netcdf-conv.json b/data/software/ne/netcdf-conv.json new file mode 100644 index 000000000000..69b21292793b --- /dev/null +++ b/data/software/ne/netcdf-conv.json @@ -0,0 +1,11 @@ +{ + "slug": "netcdf-conv", + "name": "netcdf-conv", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118146843" + ], + "licenses": [ + "GNU General Public License, version 3.0" + ] +} diff --git a/data/software/ne/netcommons.json b/data/software/ne/netcommons.json new file mode 100644 index 000000000000..e842e4df0729 --- /dev/null +++ b/data/software/ne/netcommons.json @@ -0,0 +1,14 @@ +{ + "slug": "netcommons", + "name": "NetCommons", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11236486" + ], + "developers": [ + "National Institute of Informatics" + ], + "licenses": [ + "FreeBSD license" + ] +} diff --git a/data/software/ne/netcrunch.json b/data/software/ne/netcrunch.json new file mode 100644 index 000000000000..1bbc2c9d4524 --- /dev/null +++ b/data/software/ne/netcrunch.json @@ -0,0 +1,8 @@ +{ + "slug": "netcrunch", + "name": "NetCrunch", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1576151" + ] +} diff --git a/data/software/ne/netdata.json b/data/software/ne/netdata.json new file mode 100644 index 000000000000..a83d0a8dfcc6 --- /dev/null +++ b/data/software/ne/netdata.json @@ -0,0 +1,8 @@ +{ + "slug": "netdata", + "name": "Netdata", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q24961917" + ] +} diff --git a/data/software/ne/netdiscover.json b/data/software/ne/netdiscover.json new file mode 100644 index 000000000000..66ff12a26f8f --- /dev/null +++ b/data/software/ne/netdiscover.json @@ -0,0 +1,8 @@ +{ + "slug": "netdiscover", + "name": "netdiscover", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62856089" + ] +} diff --git a/data/software/ne/netdraw.json b/data/software/ne/netdraw.json new file mode 100644 index 000000000000..3a82411d5771 --- /dev/null +++ b/data/software/ne/netdraw.json @@ -0,0 +1,8 @@ +{ + "slug": "netdraw", + "name": "NetDraw", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085142" + ] +} diff --git a/data/software/ne/netdrive.json b/data/software/ne/netdrive.json new file mode 100644 index 000000000000..26c6ff777fa1 --- /dev/null +++ b/data/software/ne/netdrive.json @@ -0,0 +1,8 @@ +{ + "slug": "netdrive", + "name": "NetDrive", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17122920" + ] +} diff --git a/data/software/ne/netdynamics-application-server.json b/data/software/ne/netdynamics-application-server.json new file mode 100644 index 000000000000..821870addca7 --- /dev/null +++ b/data/software/ne/netdynamics-application-server.json @@ -0,0 +1,11 @@ +{ + "slug": "netdynamics-application-server", + "name": "NetDynamics Application Server", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6998216" + ], + "developers": [ + "Sun Microsystems" + ] +} diff --git a/data/software/ne/netease-cloud-music.json b/data/software/ne/netease-cloud-music.json new file mode 100644 index 000000000000..e5224ff77b64 --- /dev/null +++ b/data/software/ne/netease-cloud-music.json @@ -0,0 +1,15 @@ +{ + "slug": "netease-cloud-music", + "name": "NetEase Cloud Music", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q20063955" + ], + "developers": [ + "NetEase" + ], + "operating_systems": [ + "iOS", + "Microsoft Windows" + ] +} diff --git a/data/software/ne/netease-instant-messaging.json b/data/software/ne/netease-instant-messaging.json new file mode 100644 index 000000000000..30c658a7d0e0 --- /dev/null +++ b/data/software/ne/netease-instant-messaging.json @@ -0,0 +1,21 @@ +{ + "slug": "netease-instant-messaging", + "name": "NetEase Instant Messaging", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62019997" + ], + "release_date": "2015-10-13", + "developers": [ + "NetEase" + ], + "publishers": [ + "NetEase" + ], + "operating_systems": [ + "iOS" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/ne/netexpert.json b/data/software/ne/netexpert.json new file mode 100644 index 000000000000..79a9daaa3471 --- /dev/null +++ b/data/software/ne/netexpert.json @@ -0,0 +1,11 @@ +{ + "slug": "netexpert", + "name": "NetExpert", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6998230" + ], + "programming_languages": [ + "Java" + ] +} diff --git a/data/software/ne/netfrastructure.json b/data/software/ne/netfrastructure.json new file mode 100644 index 000000000000..2ae982206991 --- /dev/null +++ b/data/software/ne/netfrastructure.json @@ -0,0 +1,8 @@ +{ + "slug": "netfrastructure", + "name": "Netfrastructure", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16918205" + ] +} diff --git a/data/software/ne/nethermind-ethereum-client.json b/data/software/ne/nethermind-ethereum-client.json new file mode 100644 index 000000000000..382e374840e6 --- /dev/null +++ b/data/software/ne/nethermind-ethereum-client.json @@ -0,0 +1,22 @@ +{ + "slug": "nethermind-ethereum-client", + "name": "Nethermind Ethereum Client", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137116700" + ], + "developers": [ + "Nethermind" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "licenses": [ + "GNU Lesser General Public License, version 3.0", + "GNU General Public License, version 3.0" + ], + "genres": [ + "client" + ] +} diff --git a/data/software/ne/nethogs.json b/data/software/ne/nethogs.json new file mode 100644 index 000000000000..10eccacf2182 --- /dev/null +++ b/data/software/ne/nethogs.json @@ -0,0 +1,8 @@ +{ + "slug": "nethogs", + "name": "NetHogs", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62856072" + ] +} diff --git a/data/software/ne/netinfo.json b/data/software/ne/netinfo.json new file mode 100644 index 000000000000..7e889643b68b --- /dev/null +++ b/data/software/ne/netinfo.json @@ -0,0 +1,15 @@ +{ + "slug": "netinfo", + "name": "NetInfo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1217178" + ], + "developers": [ + "Apple Inc." + ], + "operating_systems": [ + "NeXTSTEP", + "macOS" + ] +} diff --git a/data/software/ne/netlimiter.json b/data/software/ne/netlimiter.json new file mode 100644 index 000000000000..b11be85f2eda --- /dev/null +++ b/data/software/ne/netlimiter.json @@ -0,0 +1,11 @@ +{ + "slug": "netlimiter", + "name": "NetLimiter", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4349029" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/ne/netlytic.json b/data/software/ne/netlytic.json new file mode 100644 index 000000000000..09ff311cca6b --- /dev/null +++ b/data/software/ne/netlytic.json @@ -0,0 +1,8 @@ +{ + "slug": "netlytic", + "name": "Netlytic", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085143" + ] +} diff --git a/data/software/ne/netmet.json b/data/software/ne/netmet.json new file mode 100644 index 000000000000..de44acc361da --- /dev/null +++ b/data/software/ne/netmet.json @@ -0,0 +1,8 @@ +{ + "slug": "netmet", + "name": "NETMET", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087841" + ] +} diff --git a/data/software/ne/netnewswire.json b/data/software/ne/netnewswire.json new file mode 100644 index 000000000000..8c3b127513e6 --- /dev/null +++ b/data/software/ne/netnewswire.json @@ -0,0 +1,21 @@ +{ + "slug": "netnewswire", + "name": "NetNewsWire", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1382254" + ], + "developers": [ + "Brent Simmons" + ], + "operating_systems": [ + "iOS", + "macOS" + ], + "programming_languages": [ + "Swift" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/ne/netobjects-fusion.json b/data/software/ne/netobjects-fusion.json new file mode 100644 index 000000000000..71c313ec6f6f --- /dev/null +++ b/data/software/ne/netobjects-fusion.json @@ -0,0 +1,11 @@ +{ + "slug": "netobjects-fusion", + "name": "NetObjects Fusion", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1978558" + ], + "developers": [ + "NetObjects" + ] +} diff --git a/data/software/ne/netperf.json b/data/software/ne/netperf.json new file mode 100644 index 000000000000..ab7cc298a66c --- /dev/null +++ b/data/software/ne/netperf.json @@ -0,0 +1,8 @@ +{ + "slug": "netperf", + "name": "Netperf", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6999846" + ] +} diff --git a/data/software/ne/netpgp.json b/data/software/ne/netpgp.json new file mode 100644 index 000000000000..6607651c7a6e --- /dev/null +++ b/data/software/ne/netpgp.json @@ -0,0 +1,8 @@ +{ + "slug": "netpgp", + "name": "netpgp", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q12861041" + ] +} diff --git a/data/software/ne/netpipes.json b/data/software/ne/netpipes.json new file mode 100644 index 000000000000..36fd9e8b0011 --- /dev/null +++ b/data/software/ne/netpipes.json @@ -0,0 +1,8 @@ +{ + "slug": "netpipes", + "name": "NetPipes", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62857405" + ] +} diff --git a/data/software/ne/netpoint.json b/data/software/ne/netpoint.json new file mode 100644 index 000000000000..db13f54d3d4d --- /dev/null +++ b/data/software/ne/netpoint.json @@ -0,0 +1,8 @@ +{ + "slug": "netpoint", + "name": "NetPoint", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6998293" + ] +} diff --git a/data/software/ne/netpresenz.json b/data/software/ne/netpresenz.json new file mode 100644 index 000000000000..89d690e3f9b0 --- /dev/null +++ b/data/software/ne/netpresenz.json @@ -0,0 +1,11 @@ +{ + "slug": "netpresenz", + "name": "NetPresenz", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6998295" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/ne/netprimer.json b/data/software/ne/netprimer.json new file mode 100644 index 000000000000..bc4fd9cc75ce --- /dev/null +++ b/data/software/ne/netprimer.json @@ -0,0 +1,11 @@ +{ + "slug": "netprimer", + "name": "Netprimer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17071270" + ], + "developers": [ + "Premier Biosoft" + ] +} diff --git a/data/software/ne/netrik.json b/data/software/ne/netrik.json new file mode 100644 index 000000000000..028039c99714 --- /dev/null +++ b/data/software/ne/netrik.json @@ -0,0 +1,8 @@ +{ + "slug": "netrik", + "name": "netrik", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62857381" + ] +} diff --git a/data/software/ne/netscape-5.json b/data/software/ne/netscape-5.json new file mode 100644 index 000000000000..871c2da5b00d --- /dev/null +++ b/data/software/ne/netscape-5.json @@ -0,0 +1,11 @@ +{ + "slug": "netscape-5", + "name": "Netscape 5", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3509054" + ], + "developers": [ + "Netscape" + ] +} diff --git a/data/software/ne/netscape-6.json b/data/software/ne/netscape-6.json new file mode 100644 index 000000000000..a3bf71c5b64c --- /dev/null +++ b/data/software/ne/netscape-6.json @@ -0,0 +1,16 @@ +{ + "slug": "netscape-6", + "name": "Netscape 6", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q986963" + ], + "release_date": "2000-11-01", + "developers": [ + "Netscape" + ], + "operating_systems": [ + "Windows NT 4.0", + "Windows 95" + ] +} diff --git a/data/software/ne/netscape-7.json b/data/software/ne/netscape-7.json new file mode 100644 index 000000000000..d5d8d6afff1d --- /dev/null +++ b/data/software/ne/netscape-7.json @@ -0,0 +1,17 @@ +{ + "slug": "netscape-7", + "name": "Netscape 7", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3297609" + ], + "release_date": "2002-08-01", + "developers": [ + "AOL" + ], + "operating_systems": [ + "Windows NT 4.0", + "Mac OS 9", + "macOS" + ] +} diff --git a/data/software/ne/netscape-browser.json b/data/software/ne/netscape-browser.json new file mode 100644 index 000000000000..6fa921390a6b --- /dev/null +++ b/data/software/ne/netscape-browser.json @@ -0,0 +1,14 @@ +{ + "slug": "netscape-browser", + "name": "Netscape Browser", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q904815" + ], + "developers": [ + "Mercurial Communications" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/ne/netscape-communicator.json b/data/software/ne/netscape-communicator.json new file mode 100644 index 000000000000..23e1f9cce221 --- /dev/null +++ b/data/software/ne/netscape-communicator.json @@ -0,0 +1,11 @@ +{ + "slug": "netscape-communicator", + "name": "Netscape Communicator", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1410913" + ], + "developers": [ + "Netscape" + ] +} diff --git a/data/software/ne/netscape-mail-newsgroups.json b/data/software/ne/netscape-mail-newsgroups.json new file mode 100644 index 000000000000..f2bfa2aed2e4 --- /dev/null +++ b/data/software/ne/netscape-mail-newsgroups.json @@ -0,0 +1,12 @@ +{ + "slug": "netscape-mail-newsgroups", + "name": "Netscape Mail & Newsgroups", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7000318" + ], + "release_date": "1998-10-01", + "developers": [ + "Netscape" + ] +} diff --git a/data/software/ne/netscape-navigator-2.json b/data/software/ne/netscape-navigator-2.json new file mode 100644 index 000000000000..847d737fca23 --- /dev/null +++ b/data/software/ne/netscape-navigator-2.json @@ -0,0 +1,12 @@ +{ + "slug": "netscape-navigator-2", + "name": "Netscape Navigator 2", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7000317" + ], + "release_date": "1996-03-01", + "developers": [ + "Netscape" + ] +} diff --git a/data/software/ne/netscape.json b/data/software/ne/netscape.json new file mode 100644 index 000000000000..e53fc4ed88b2 --- /dev/null +++ b/data/software/ne/netscape.json @@ -0,0 +1,11 @@ +{ + "slug": "netscape", + "name": "Netscape", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q266990" + ], + "developers": [ + "Netscape" + ] +} diff --git a/data/software/ne/netshade.json b/data/software/ne/netshade.json new file mode 100644 index 000000000000..e8ba16f67d36 --- /dev/null +++ b/data/software/ne/netshade.json @@ -0,0 +1,8 @@ +{ + "slug": "netshade", + "name": "NetShade", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6998318" + ] +} diff --git a/data/software/ne/netsim.json b/data/software/ne/netsim.json new file mode 100644 index 000000000000..83a0f863c01d --- /dev/null +++ b/data/software/ne/netsim.json @@ -0,0 +1,8 @@ +{ + "slug": "netsim", + "name": "NetSim", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q605932" + ] +} diff --git a/data/software/ne/netspot.json b/data/software/ne/netspot.json new file mode 100644 index 000000000000..ab2f09645094 --- /dev/null +++ b/data/software/ne/netspot.json @@ -0,0 +1,14 @@ +{ + "slug": "netspot", + "name": "NetSpot", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17147049" + ], + "programming_languages": [ + "Objective-C" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/ne/netstat-nat.json b/data/software/ne/netstat-nat.json new file mode 100644 index 000000000000..f3696d347585 --- /dev/null +++ b/data/software/ne/netstat-nat.json @@ -0,0 +1,8 @@ +{ + "slug": "netstat-nat", + "name": "netstat-nat", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62856044" + ] +} diff --git a/data/software/ne/netsupport-manager.json b/data/software/ne/netsupport-manager.json new file mode 100644 index 000000000000..b27d0445fa79 --- /dev/null +++ b/data/software/ne/netsupport-manager.json @@ -0,0 +1,8 @@ +{ + "slug": "netsupport-manager", + "name": "NetSupport Manager", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q281486" + ] +} diff --git a/data/software/ne/netvault-backup.json b/data/software/ne/netvault-backup.json new file mode 100644 index 000000000000..96aa9bfee0e8 --- /dev/null +++ b/data/software/ne/netvault-backup.json @@ -0,0 +1,8 @@ +{ + "slug": "netvault-backup", + "name": "NetVault Backup", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2880130" + ] +} diff --git a/data/software/ne/netvizz.json b/data/software/ne/netvizz.json new file mode 100644 index 000000000000..e0a33aebeb0c --- /dev/null +++ b/data/software/ne/netvizz.json @@ -0,0 +1,8 @@ +{ + "slug": "netvizz", + "name": "Netvizz", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085144" + ] +} diff --git a/data/software/ne/netwag.json b/data/software/ne/netwag.json new file mode 100644 index 000000000000..4798989ea10d --- /dev/null +++ b/data/software/ne/netwag.json @@ -0,0 +1,8 @@ +{ + "slug": "netwag", + "name": "netwag", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62856006" + ] +} diff --git a/data/software/ne/netwips.json b/data/software/ne/netwips.json new file mode 100644 index 000000000000..89d9a352e3c3 --- /dev/null +++ b/data/software/ne/netwips.json @@ -0,0 +1,8 @@ +{ + "slug": "netwips", + "name": "NetWips", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q19363890" + ] +} diff --git a/data/software/ne/network-access-protection.json b/data/software/ne/network-access-protection.json new file mode 100644 index 000000000000..5dc0778a99b3 --- /dev/null +++ b/data/software/ne/network-access-protection.json @@ -0,0 +1,8 @@ +{ + "slug": "network-access-protection", + "name": "Network Access Protection", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1186962" + ] +} diff --git a/data/software/ne/network-block-device.json b/data/software/ne/network-block-device.json new file mode 100644 index 000000000000..2f36c229f6f8 --- /dev/null +++ b/data/software/ne/network-block-device.json @@ -0,0 +1,11 @@ +{ + "slug": "network-block-device", + "name": "network block device", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1684595" + ], + "licenses": [ + "GNU General Public License, version 2.0" + ] +} diff --git a/data/software/ne/network-control-program.json b/data/software/ne/network-control-program.json new file mode 100644 index 000000000000..04ce56af4fb9 --- /dev/null +++ b/data/software/ne/network-control-program.json @@ -0,0 +1,8 @@ +{ + "slug": "network-control-program", + "name": "Network Control Program", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2582530" + ] +} diff --git a/data/software/ne/network-inventory-advisor.json b/data/software/ne/network-inventory-advisor.json new file mode 100644 index 000000000000..7c3c9121eb20 --- /dev/null +++ b/data/software/ne/network-inventory-advisor.json @@ -0,0 +1,8 @@ +{ + "slug": "network-inventory-advisor", + "name": "Network Inventory Advisor", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17042623" + ] +} diff --git a/data/software/ne/network-notepad.json b/data/software/ne/network-notepad.json new file mode 100644 index 000000000000..788c696823fe --- /dev/null +++ b/data/software/ne/network-notepad.json @@ -0,0 +1,8 @@ +{ + "slug": "network-notepad", + "name": "Network Notepad", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11790743" + ] +} diff --git a/data/software/ne/network-telemetry.json b/data/software/ne/network-telemetry.json new file mode 100644 index 000000000000..097b073ab0b7 --- /dev/null +++ b/data/software/ne/network-telemetry.json @@ -0,0 +1,11 @@ +{ + "slug": "network-telemetry", + "name": "Network Telemetry", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60023619" + ], + "developers": [ + "Google" + ] +} diff --git a/data/software/ne/network-utility.json b/data/software/ne/network-utility.json new file mode 100644 index 000000000000..b871327e922b --- /dev/null +++ b/data/software/ne/network-utility.json @@ -0,0 +1,11 @@ +{ + "slug": "network-utility", + "name": "Network Utility", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1071106" + ], + "developers": [ + "Apple Inc." + ] +} diff --git a/data/software/ne/network-view-notebook-tool.json b/data/software/ne/network-view-notebook-tool.json new file mode 100644 index 000000000000..daefd8441572 --- /dev/null +++ b/data/software/ne/network-view-notebook-tool.json @@ -0,0 +1,9 @@ +{ + "slug": "network-view-notebook-tool", + "name": "Network view notebook tool", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124219423" + ], + "release_date": "2023-01-01" +} diff --git a/data/software/ne/networkcomputer.json b/data/software/ne/networkcomputer.json new file mode 100644 index 000000000000..1bd541676ff5 --- /dev/null +++ b/data/software/ne/networkcomputer.json @@ -0,0 +1,8 @@ +{ + "slug": "networkcomputer", + "name": "NetworkComputer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17120602" + ] +} diff --git a/data/software/ne/networker.json b/data/software/ne/networker.json new file mode 100644 index 000000000000..f62401bfd8ea --- /dev/null +++ b/data/software/ne/networker.json @@ -0,0 +1,8 @@ +{ + "slug": "networker", + "name": "NetWorker", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5576771" + ] +} diff --git a/data/software/ne/netwox.json b/data/software/ne/netwox.json new file mode 100644 index 000000000000..a42c2055fe92 --- /dev/null +++ b/data/software/ne/netwox.json @@ -0,0 +1,8 @@ +{ + "slug": "netwox", + "name": "netwox", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62855997" + ] +} diff --git a/data/software/ne/neural-document-modeling.json b/data/software/ne/neural-document-modeling.json new file mode 100644 index 000000000000..5dabf64a80b1 --- /dev/null +++ b/data/software/ne/neural-document-modeling.json @@ -0,0 +1,8 @@ +{ + "slug": "neural-document-modeling", + "name": "Neural-Document-Modeling", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110514818" + ] +} diff --git a/data/software/ne/neural-network-exchange-format.json b/data/software/ne/neural-network-exchange-format.json new file mode 100644 index 000000000000..07f63979a9d4 --- /dev/null +++ b/data/software/ne/neural-network-exchange-format.json @@ -0,0 +1,8 @@ +{ + "slug": "neural-network-exchange-format", + "name": "Neural Network Exchange Format", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q65120163" + ] +} diff --git a/data/software/ne/neural-network-intelligence.json b/data/software/ne/neural-network-intelligence.json new file mode 100644 index 000000000000..de17d742d74b --- /dev/null +++ b/data/software/ne/neural-network-intelligence.json @@ -0,0 +1,18 @@ +{ + "slug": "neural-network-intelligence", + "name": "Neural Network Intelligence", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q98138083" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [ + "Python" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/ne/neurips21-self-supervised-bug-detection-and-repair.json b/data/software/ne/neurips21-self-supervised-bug-detection-and-repair.json new file mode 100644 index 000000000000..d1071734b198 --- /dev/null +++ b/data/software/ne/neurips21-self-supervised-bug-detection-and-repair.json @@ -0,0 +1,11 @@ +{ + "slug": "neurips21-self-supervised-bug-detection-and-repair", + "name": "neurips21-self-supervised-bug-detection-and-repair", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127474924" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/ne/neutrino.json b/data/software/ne/neutrino.json new file mode 100644 index 000000000000..eb63e4d74849 --- /dev/null +++ b/data/software/ne/neutrino.json @@ -0,0 +1,8 @@ +{ + "slug": "neutrino", + "name": "NEUTRINO", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q97311150" + ] +} diff --git a/data/software/ne/neutron-acceptance-diagram-shading.json b/data/software/ne/neutron-acceptance-diagram-shading.json new file mode 100644 index 000000000000..dc0e1f4c3621 --- /dev/null +++ b/data/software/ne/neutron-acceptance-diagram-shading.json @@ -0,0 +1,8 @@ +{ + "slug": "neutron-acceptance-diagram-shading", + "name": "Neutron Acceptance Diagram Shading", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7003073" + ] +} diff --git a/data/software/ne/neutron.json b/data/software/ne/neutron.json new file mode 100644 index 000000000000..c4362a2e7e5c --- /dev/null +++ b/data/software/ne/neutron.json @@ -0,0 +1,11 @@ +{ + "slug": "neutron", + "name": "neutron", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975252" + ], + "licenses": [ + "Apache License" + ] +} diff --git a/data/software/ne/new-grolier-multimedia-encyclopedia.json b/data/software/ne/new-grolier-multimedia-encyclopedia.json new file mode 100644 index 000000000000..f5cfe3416ea9 --- /dev/null +++ b/data/software/ne/new-grolier-multimedia-encyclopedia.json @@ -0,0 +1,11 @@ +{ + "slug": "new-grolier-multimedia-encyclopedia", + "name": "New Grolier Multimedia Encyclopedia", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60813836" + ], + "developers": [ + "Creative Technologies Ltd." + ] +} diff --git a/data/software/ne/new-york-nights-2-friends-for-life.json b/data/software/ne/new-york-nights-2-friends-for-life.json new file mode 100644 index 000000000000..d5d3eeb5f704 --- /dev/null +++ b/data/software/ne/new-york-nights-2-friends-for-life.json @@ -0,0 +1,18 @@ +{ + "slug": "new-york-nights-2-friends-for-life", + "name": "New York Nights 2: Friends For Life", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q19865489" + ], + "release_date": "2008-01-01", + "developers": [ + "Gameloft" + ], + "publishers": [ + "Gameloft" + ], + "operating_systems": [ + "iOS" + ] +} diff --git a/data/software/ne/new-zealand-open-source-awards.json b/data/software/ne/new-zealand-open-source-awards.json new file mode 100644 index 000000000000..63bdae0f2ad6 --- /dev/null +++ b/data/software/ne/new-zealand-open-source-awards.json @@ -0,0 +1,8 @@ +{ + "slug": "new-zealand-open-source-awards", + "name": "New Zealand Open Source Awards", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q19876056" + ] +} diff --git a/data/software/ne/newbler.json b/data/software/ne/newbler.json new file mode 100644 index 000000000000..34981936c139 --- /dev/null +++ b/data/software/ne/newbler.json @@ -0,0 +1,11 @@ +{ + "slug": "newbler", + "name": "Newbler", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7016954" + ], + "developers": [ + "454 Life Sciences" + ] +} diff --git a/data/software/ne/newicons.json b/data/software/ne/newicons.json new file mode 100644 index 000000000000..8e98e214e555 --- /dev/null +++ b/data/software/ne/newicons.json @@ -0,0 +1,8 @@ +{ + "slug": "newicons", + "name": "NewIcons", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7005118" + ] +} diff --git a/data/software/ne/newradial-inke.json b/data/software/ne/newradial-inke.json new file mode 100644 index 000000000000..8f53c0866b2e --- /dev/null +++ b/data/software/ne/newradial-inke.json @@ -0,0 +1,8 @@ +{ + "slug": "newradial-inke", + "name": "NewRadial (INKE)", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084413" + ] +} diff --git a/data/software/ne/news-gg-discord-bot.json b/data/software/ne/news-gg-discord-bot.json new file mode 100644 index 000000000000..ddcd81fe478d --- /dev/null +++ b/data/software/ne/news-gg-discord-bot.json @@ -0,0 +1,11 @@ +{ + "slug": "news-gg-discord-bot", + "name": "News.gg Discord Bot", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q133281938" + ], + "programming_languages": [ + "Python" + ] +} diff --git a/data/software/ne/news360.json b/data/software/ne/news360.json new file mode 100644 index 000000000000..b6941357f939 --- /dev/null +++ b/data/software/ne/news360.json @@ -0,0 +1,12 @@ +{ + "slug": "news360", + "name": "News360", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16927735" + ], + "release_date": "2010-01-01", + "operating_systems": [ + "iOS" + ] +} diff --git a/data/software/ne/newsbin-pro.json b/data/software/ne/newsbin-pro.json new file mode 100644 index 000000000000..dd61ab237807 --- /dev/null +++ b/data/software/ne/newsbin-pro.json @@ -0,0 +1,12 @@ +{ + "slug": "newsbin-pro", + "name": "NewsBin Pro", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7019204" + ], + "release_date": "1995-01-01", + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/ne/newsfire.json b/data/software/ne/newsfire.json new file mode 100644 index 000000000000..0d091d14f407 --- /dev/null +++ b/data/software/ne/newsfire.json @@ -0,0 +1,8 @@ +{ + "slug": "newsfire", + "name": "NewsFire", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7019218" + ] +} diff --git a/data/software/ne/newsml-g2.json b/data/software/ne/newsml-g2.json new file mode 100644 index 000000000000..90bfab5b9214 --- /dev/null +++ b/data/software/ne/newsml-g2.json @@ -0,0 +1,8 @@ +{ + "slug": "newsml-g2", + "name": "NewsML-G2", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7019232" + ] +} diff --git a/data/software/ne/newsstand.json b/data/software/ne/newsstand.json new file mode 100644 index 000000000000..0d9aeeaf6a93 --- /dev/null +++ b/data/software/ne/newsstand.json @@ -0,0 +1,11 @@ +{ + "slug": "newsstand", + "name": "Newsstand", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2686971" + ], + "developers": [ + "Apple Inc." + ] +} diff --git a/data/software/ne/newton-x.json b/data/software/ne/newton-x.json new file mode 100644 index 000000000000..7b41d9bf1d46 --- /dev/null +++ b/data/software/ne/newton-x.json @@ -0,0 +1,8 @@ +{ + "slug": "newton-x", + "name": "Newton-X", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25303712" + ] +} diff --git a/data/software/ne/newviews.json b/data/software/ne/newviews.json new file mode 100644 index 000000000000..fc222600aab6 --- /dev/null +++ b/data/software/ne/newviews.json @@ -0,0 +1,8 @@ +{ + "slug": "newviews", + "name": "NewViews", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7005152" + ] +} diff --git a/data/software/ne/newwayservice.json b/data/software/ne/newwayservice.json new file mode 100644 index 000000000000..f11a0f82e969 --- /dev/null +++ b/data/software/ne/newwayservice.json @@ -0,0 +1,11 @@ +{ + "slug": "newwayservice", + "name": "NewWaySERVICE", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138013865" + ], + "developers": [ + "OroLogic" + ] +} diff --git a/data/software/ne/nexusdb.json b/data/software/ne/nexusdb.json new file mode 100644 index 000000000000..2d30d0d6b286 --- /dev/null +++ b/data/software/ne/nexusdb.json @@ -0,0 +1,14 @@ +{ + "slug": "nexusdb", + "name": "NexusDB", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q12040856" + ], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [ + "Delphi" + ] +} diff --git a/data/software/ne/nexusm.json b/data/software/ne/nexusm.json new file mode 100644 index 000000000000..777768d65473 --- /dev/null +++ b/data/software/ne/nexusm.json @@ -0,0 +1,12 @@ +{ + "slug": "nexusm", + "name": "NexusM", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137965017" + ], + "operating_systems": [ + "Unix-like operating system", + "Microsoft Windows" + ] +} diff --git a/data/software/ne/neztio.json b/data/software/ne/neztio.json new file mode 100644 index 000000000000..8c31116e6a41 --- /dev/null +++ b/data/software/ne/neztio.json @@ -0,0 +1,8 @@ +{ + "slug": "neztio", + "name": "Neztio", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139385387" + ] +} diff --git a/data/software/nf/nfacct.json b/data/software/nf/nfacct.json new file mode 100644 index 000000000000..6cee9590ea81 --- /dev/null +++ b/data/software/nf/nfacct.json @@ -0,0 +1,8 @@ +{ + "slug": "nfacct", + "name": "nfacct", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60864677" + ] +} diff --git a/data/software/nf/nfbtrans.json b/data/software/nf/nfbtrans.json new file mode 100644 index 000000000000..deb9ad0d5b96 --- /dev/null +++ b/data/software/nf/nfbtrans.json @@ -0,0 +1,8 @@ +{ + "slug": "nfbtrans", + "name": "nfbtrans", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q61412195" + ] +} diff --git a/data/software/nf/nflib.json b/data/software/nf/nflib.json new file mode 100644 index 000000000000..f203b26bd59b --- /dev/null +++ b/data/software/nf/nflib.json @@ -0,0 +1,11 @@ +{ + "slug": "nflib", + "name": "NFlib", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6953822" + ], + "licenses": [ + "Creative Commons Attribution-NonCommercial" + ] +} diff --git a/data/software/nf/nfoview.json b/data/software/nf/nfoview.json new file mode 100644 index 000000000000..0c3eb606933a --- /dev/null +++ b/data/software/nf/nfoview.json @@ -0,0 +1,8 @@ +{ + "slug": "nfoview", + "name": "nfoview", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975253" + ] +} diff --git a/data/software/ng/ng-utils.json b/data/software/ng/ng-utils.json new file mode 100644 index 000000000000..9a2a2e5342cb --- /dev/null +++ b/data/software/ng/ng-utils.json @@ -0,0 +1,8 @@ +{ + "slug": "ng-utils", + "name": "ng-utils", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62857339" + ] +} diff --git a/data/software/ng/ngircd.json b/data/software/ng/ngircd.json new file mode 100644 index 000000000000..e507d4d771e7 --- /dev/null +++ b/data/software/ng/ngircd.json @@ -0,0 +1,8 @@ +{ + "slug": "ngircd", + "name": "ngIRCd", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62857346" + ] +} diff --git a/data/software/ng/ngl.json b/data/software/ng/ngl.json new file mode 100644 index 000000000000..b6fd3d7b947c --- /dev/null +++ b/data/software/ng/ngl.json @@ -0,0 +1,8 @@ +{ + "slug": "ngl", + "name": "NGL", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137804924" + ] +} diff --git a/data/software/ng/ngn-apl.json b/data/software/ng/ngn-apl.json new file mode 100644 index 000000000000..1f94fefe72f6 --- /dev/null +++ b/data/software/ng/ngn-apl.json @@ -0,0 +1,11 @@ +{ + "slug": "ngn-apl", + "name": "NGN APL", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106542057" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/ng/ngram-statistics-package-nsp.json b/data/software/ng/ngram-statistics-package-nsp.json new file mode 100644 index 000000000000..1493650627c6 --- /dev/null +++ b/data/software/ng/ngram-statistics-package-nsp.json @@ -0,0 +1,8 @@ +{ + "slug": "ngram-statistics-package-nsp", + "name": "Ngram Statistics Package (NSP)", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087689" + ] +} diff --git a/data/software/ng/ngrok.json b/data/software/ng/ngrok.json new file mode 100644 index 000000000000..2a38068fd1ff --- /dev/null +++ b/data/software/ng/ngrok.json @@ -0,0 +1,8 @@ +{ + "slug": "ngrok", + "name": "Ngrok", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137777892" + ] +} diff --git a/data/software/nh/nhs-pathways.json b/data/software/nh/nhs-pathways.json new file mode 100644 index 000000000000..24a519f0c4ac --- /dev/null +++ b/data/software/nh/nhs-pathways.json @@ -0,0 +1,11 @@ +{ + "slug": "nhs-pathways", + "name": "NHS Pathways", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16998978" + ], + "developers": [ + "National Health Service" + ] +} diff --git a/data/software/ni/ni-massive.json b/data/software/ni/ni-massive.json new file mode 100644 index 000000000000..59e0239a1450 --- /dev/null +++ b/data/software/ni/ni-massive.json @@ -0,0 +1,12 @@ +{ + "slug": "ni-massive", + "name": "NI Massive", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q20712560" + ], + "release_date": "2007-01-01", + "developers": [ + "Native Instruments" + ] +} diff --git a/data/software/ni/ni-multisim.json b/data/software/ni/ni-multisim.json new file mode 100644 index 000000000000..8442f07a7465 --- /dev/null +++ b/data/software/ni/ni-multisim.json @@ -0,0 +1,20 @@ +{ + "slug": "ni-multisim", + "name": "NI Multisim", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6954417" + ], + "developers": [ + "National Instruments" + ], + "operating_systems": [ + "Microsoft Windows" + ], + "licenses": [ + "shareware" + ], + "genres": [ + "electronic design automation" + ] +} diff --git a/data/software/ni/ni-ultiboard.json b/data/software/ni/ni-ultiboard.json new file mode 100644 index 000000000000..f41d7e0b4187 --- /dev/null +++ b/data/software/ni/ni-ultiboard.json @@ -0,0 +1,11 @@ +{ + "slug": "ni-ultiboard", + "name": "NI Ultiboard", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6954414" + ], + "developers": [ + "National Instruments" + ] +} diff --git a/data/software/ni/niaflow.json b/data/software/ni/niaflow.json new file mode 100644 index 000000000000..01eef66400b8 --- /dev/null +++ b/data/software/ni/niaflow.json @@ -0,0 +1,9 @@ +{ + "slug": "niaflow", + "name": "NIAflow", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q29167897" + ], + "release_date": "2016-01-01" +} diff --git a/data/software/ni/niaoniao-virtual-singer.json b/data/software/ni/niaoniao-virtual-singer.json new file mode 100644 index 000000000000..486683f871a7 --- /dev/null +++ b/data/software/ni/niaoniao-virtual-singer.json @@ -0,0 +1,11 @@ +{ + "slug": "niaoniao-virtual-singer", + "name": "NIAONiao Virtual Singer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q19773017" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/ni/nichimen-n-world.json b/data/software/ni/nichimen-n-world.json new file mode 100644 index 000000000000..806ed911aa05 --- /dev/null +++ b/data/software/ni/nichimen-n-world.json @@ -0,0 +1,8 @@ +{ + "slug": "nichimen-n-world", + "name": "Nichimen N-World", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28957036" + ] +} diff --git a/data/software/ni/nicmoslook.json b/data/software/ni/nicmoslook.json new file mode 100644 index 000000000000..5cfb5e8f6670 --- /dev/null +++ b/data/software/ni/nicmoslook.json @@ -0,0 +1,14 @@ +{ + "slug": "nicmoslook", + "name": "NICMOSlook", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6954279" + ], + "developers": [ + "Space Telescope European Coordinating Facility" + ], + "programming_languages": [ + "Interactive Data Language" + ] +} diff --git a/data/software/ni/niconico.json b/data/software/ni/niconico.json new file mode 100644 index 000000000000..c22295abd551 --- /dev/null +++ b/data/software/ni/niconico.json @@ -0,0 +1,8 @@ +{ + "slug": "niconico", + "name": "Niconico", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q697233" + ] +} diff --git a/data/software/ni/niftools.json b/data/software/ni/niftools.json new file mode 100644 index 000000000000..b336e80ac7c9 --- /dev/null +++ b/data/software/ni/niftools.json @@ -0,0 +1,8 @@ +{ + "slug": "niftools", + "name": "niftools", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q66777628" + ] +} diff --git a/data/software/ni/nigerian-webradio.json b/data/software/ni/nigerian-webradio.json new file mode 100644 index 000000000000..c3ffbdb04bbb --- /dev/null +++ b/data/software/ni/nigerian-webradio.json @@ -0,0 +1,8 @@ +{ + "slug": "nigerian-webradio", + "name": "Nigerian WebRadio", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7033031" + ] +} diff --git a/data/software/ni/night-sky.json b/data/software/ni/night-sky.json new file mode 100644 index 000000000000..dd3428fe274b --- /dev/null +++ b/data/software/ni/night-sky.json @@ -0,0 +1,8 @@ +{ + "slug": "night-sky", + "name": "Night Sky", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q30603991" + ] +} diff --git a/data/software/ni/nightset.json b/data/software/ni/nightset.json new file mode 100644 index 000000000000..af0df5ee4c8e --- /dev/null +++ b/data/software/ni/nightset.json @@ -0,0 +1,8 @@ +{ + "slug": "nightset", + "name": "Nightset", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q29364590" + ] +} diff --git a/data/software/ni/nightshade.json b/data/software/ni/nightshade.json new file mode 100644 index 000000000000..dafbd9096f94 --- /dev/null +++ b/data/software/ni/nightshade.json @@ -0,0 +1,11 @@ +{ + "slug": "nightshade", + "name": "Nightshade", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124336925" + ], + "developers": [ + "University of Chicago" + ] +} diff --git a/data/software/ni/nik-collection.json b/data/software/ni/nik-collection.json new file mode 100644 index 000000000000..d7de639bf211 --- /dev/null +++ b/data/software/ni/nik-collection.json @@ -0,0 +1,11 @@ +{ + "slug": "nik-collection", + "name": "Nik Collection", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117462120" + ], + "developers": [ + "Nik Software" + ] +} diff --git a/data/software/ni/niko-through-the-dream.json b/data/software/ni/niko-through-the-dream.json new file mode 100644 index 000000000000..0630f65b051d --- /dev/null +++ b/data/software/ni/niko-through-the-dream.json @@ -0,0 +1,9 @@ +{ + "slug": "niko-through-the-dream", + "name": "NIKO: Through The Dream", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106803044" + ], + "release_date": "2015-07-10" +} diff --git a/data/software/ni/nikola.json b/data/software/ni/nikola.json new file mode 100644 index 000000000000..4aba1e642f1a --- /dev/null +++ b/data/software/ni/nikola.json @@ -0,0 +1,11 @@ +{ + "slug": "nikola", + "name": "nikola", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975255" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/ni/nikto.json b/data/software/ni/nikto.json new file mode 100644 index 000000000000..5ee421b5c9ca --- /dev/null +++ b/data/software/ni/nikto.json @@ -0,0 +1,11 @@ +{ + "slug": "nikto", + "name": "Nikto", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q986549" + ], + "licenses": [ + "GNU General Public License" + ] +} diff --git a/data/software/ni/nilon.json b/data/software/ni/nilon.json new file mode 100644 index 000000000000..9e429d915179 --- /dev/null +++ b/data/software/ni/nilon.json @@ -0,0 +1,11 @@ +{ + "slug": "nilon", + "name": "Nilon", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139619316" + ], + "operating_systems": [ + "Google Chrome" + ] +} diff --git a/data/software/ni/nimble-streamer.json b/data/software/ni/nimble-streamer.json new file mode 100644 index 000000000000..1f3e920bbf12 --- /dev/null +++ b/data/software/ni/nimble-streamer.json @@ -0,0 +1,8 @@ +{ + "slug": "nimble-streamer", + "name": "Nimble Streamer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q23521039" + ] +} diff --git a/data/software/ni/nimbuzz.json b/data/software/ni/nimbuzz.json new file mode 100644 index 000000000000..8fddf0529fb5 --- /dev/null +++ b/data/software/ni/nimbuzz.json @@ -0,0 +1,8 @@ +{ + "slug": "nimbuzz", + "name": "Nimbuzz", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1992595" + ] +} diff --git a/data/software/ni/nimitai.json b/data/software/ni/nimitai.json new file mode 100644 index 000000000000..7a79cbc9af48 --- /dev/null +++ b/data/software/ni/nimitai.json @@ -0,0 +1,8 @@ +{ + "slug": "nimitai", + "name": "Nimitai", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138702444" + ] +} diff --git a/data/software/ni/ning.json b/data/software/ni/ning.json new file mode 100644 index 000000000000..2f2f80740581 --- /dev/null +++ b/data/software/ni/ning.json @@ -0,0 +1,8 @@ +{ + "slug": "ning", + "name": "Ning", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084414" + ] +} diff --git a/data/software/ni/ninite.json b/data/software/ni/ninite.json new file mode 100644 index 000000000000..f843f1e52407 --- /dev/null +++ b/data/software/ni/ninite.json @@ -0,0 +1,11 @@ +{ + "slug": "ninite", + "name": "Ninite", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4045355" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/ni/ninjo.json b/data/software/ni/ninjo.json new file mode 100644 index 000000000000..b2919d4bc6a2 --- /dev/null +++ b/data/software/ni/ninjo.json @@ -0,0 +1,21 @@ +{ + "slug": "ninjo", + "name": "NinJo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1992700" + ], + "developers": [ + "Danish Meteorological Institute", + "Federal Office of Meteorology and Climatology MeteoSwiss", + "Meteorological Service of Canada", + "Deutscher Wetterdienst", + "Bundeswehr" + ], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [ + "Java" + ] +} diff --git a/data/software/ni/nintendo-dsi-camera.json b/data/software/ni/nintendo-dsi-camera.json new file mode 100644 index 000000000000..632a0dc96435 --- /dev/null +++ b/data/software/ni/nintendo-dsi-camera.json @@ -0,0 +1,8 @@ +{ + "slug": "nintendo-dsi-camera", + "name": "Nintendo DSi Camera", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11325079" + ] +} diff --git a/data/software/ni/nintendo-fan-network.json b/data/software/ni/nintendo-fan-network.json new file mode 100644 index 000000000000..5dc7e386d76e --- /dev/null +++ b/data/software/ni/nintendo-fan-network.json @@ -0,0 +1,8 @@ +{ + "slug": "nintendo-fan-network", + "name": "Nintendo Fan Network", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q39056333" + ] +} diff --git a/data/software/ni/nintendo-switch-online.json b/data/software/ni/nintendo-switch-online.json new file mode 100644 index 000000000000..6a8e324b6845 --- /dev/null +++ b/data/software/ni/nintendo-switch-online.json @@ -0,0 +1,15 @@ +{ + "slug": "nintendo-switch-online", + "name": "Nintendo Switch Online", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q30943865" + ], + "release_date": "2018-09-18", + "developers": [ + "Nintendo" + ], + "publishers": [ + "Nintendo" + ] +} diff --git a/data/software/ni/nintendo-web-framework.json b/data/software/ni/nintendo-web-framework.json new file mode 100644 index 000000000000..f70bb2f00ac8 --- /dev/null +++ b/data/software/ni/nintendo-web-framework.json @@ -0,0 +1,8 @@ +{ + "slug": "nintendo-web-framework", + "name": "Nintendo Web Framework", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17042651" + ] +} diff --git a/data/software/ni/ninvaders.json b/data/software/ni/ninvaders.json new file mode 100644 index 000000000000..003ce7f42fa2 --- /dev/null +++ b/data/software/ni/ninvaders.json @@ -0,0 +1,8 @@ +{ + "slug": "ninvaders", + "name": "nInvaders", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62855990" + ] +} diff --git a/data/software/ni/nipper.json b/data/software/ni/nipper.json new file mode 100644 index 000000000000..c15d29633a45 --- /dev/null +++ b/data/software/ni/nipper.json @@ -0,0 +1,8 @@ +{ + "slug": "nipper", + "name": "nipper", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60918286" + ] +} diff --git a/data/software/ni/nirvana.json b/data/software/ni/nirvana.json new file mode 100644 index 000000000000..cd28c6877e83 --- /dev/null +++ b/data/software/ni/nirvana.json @@ -0,0 +1,11 @@ +{ + "slug": "nirvana", + "name": "Nirvana", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25339709" + ], + "developers": [ + "General Atomics" + ] +} diff --git a/data/software/ni/nis2compass.json b/data/software/ni/nis2compass.json new file mode 100644 index 000000000000..86f3808dd95e --- /dev/null +++ b/data/software/ni/nis2compass.json @@ -0,0 +1,8 @@ +{ + "slug": "nis2compass", + "name": "NIS2Compass", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139502446" + ] +} diff --git a/data/software/ni/nite-xml-toolkit.json b/data/software/ni/nite-xml-toolkit.json new file mode 100644 index 000000000000..2eaa5f8d9682 --- /dev/null +++ b/data/software/ni/nite-xml-toolkit.json @@ -0,0 +1,8 @@ +{ + "slug": "nite-xml-toolkit", + "name": "NITE XML Toolkit", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084415" + ] +} diff --git a/data/software/ni/nitf-file-parser.json b/data/software/ni/nitf-file-parser.json new file mode 100644 index 000000000000..1db782adae85 --- /dev/null +++ b/data/software/ni/nitf-file-parser.json @@ -0,0 +1,11 @@ +{ + "slug": "nitf-file-parser", + "name": "NITF File Parser", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28516718" + ], + "developers": [ + "United States Air Force" + ] +} diff --git a/data/software/ni/nitro-pro.json b/data/software/ni/nitro-pro.json new file mode 100644 index 000000000000..35d2afd19b31 --- /dev/null +++ b/data/software/ni/nitro-pro.json @@ -0,0 +1,8 @@ +{ + "slug": "nitro-pro", + "name": "Nitro Pro", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11695781" + ] +} diff --git a/data/software/nj/njam.json b/data/software/nj/njam.json new file mode 100644 index 000000000000..5e03e8f2534b --- /dev/null +++ b/data/software/nj/njam.json @@ -0,0 +1,8 @@ +{ + "slug": "njam", + "name": "Njam", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62855978" + ] +} diff --git a/data/software/nj/njstar-communicator.json b/data/software/nj/njstar-communicator.json new file mode 100644 index 000000000000..18214a8330c4 --- /dev/null +++ b/data/software/nj/njstar-communicator.json @@ -0,0 +1,11 @@ +{ + "slug": "njstar-communicator", + "name": "NJStar Communicator", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q835643" + ], + "developers": [ + "NJStar Software Corp" + ] +} diff --git a/data/software/nk/nk-audit.json b/data/software/nk/nk-audit.json new file mode 100644 index 000000000000..8214d1364f68 --- /dev/null +++ b/data/software/nk/nk-audit.json @@ -0,0 +1,17 @@ +{ + "slug": "nk-audit", + "name": "NK-Audit", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139986054" + ], + "developers": [ + "Röckl Consulting GmbH" + ], + "publishers": [ + "Röckl Consulting GmbH" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/nl/nl5-circuit-simulator.json b/data/software/nl/nl5-circuit-simulator.json new file mode 100644 index 000000000000..6f671cc907f0 --- /dev/null +++ b/data/software/nl/nl5-circuit-simulator.json @@ -0,0 +1,8 @@ +{ + "slug": "nl5-circuit-simulator", + "name": "NL5 Circuit Simulator", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q65091590" + ] +} diff --git a/data/software/nl/nlbse2022-replication-kit.json b/data/software/nl/nlbse2022-replication-kit.json new file mode 100644 index 000000000000..c94f342fb4e9 --- /dev/null +++ b/data/software/nl/nlbse2022-replication-kit.json @@ -0,0 +1,8 @@ +{ + "slug": "nlbse2022-replication-kit", + "name": "nlbse2022_replication_kit", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127485293" + ] +} diff --git a/data/software/nl/nlite.json b/data/software/nl/nlite.json new file mode 100644 index 000000000000..a43bc533537f --- /dev/null +++ b/data/software/nl/nlite.json @@ -0,0 +1,14 @@ +{ + "slug": "nlite", + "name": "nLite", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q285350" + ], + "operating_systems": [ + "Windows Server 2003" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/nl/nload.json b/data/software/nl/nload.json new file mode 100644 index 000000000000..d27dd02d3a98 --- /dev/null +++ b/data/software/nl/nload.json @@ -0,0 +1,8 @@ +{ + "slug": "nload", + "name": "nload", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62857096" + ] +} diff --git a/data/software/nl/nlog.json b/data/software/nl/nlog.json new file mode 100644 index 000000000000..647b6e1461d8 --- /dev/null +++ b/data/software/nl/nlog.json @@ -0,0 +1,14 @@ +{ + "slug": "nlog", + "name": "NLog", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10601478" + ], + "developers": [ + "Jarek Kowalski" + ], + "licenses": [ + "3-clause BSD License" + ] +} diff --git a/data/software/nl/nlogit.json b/data/software/nl/nlogit.json new file mode 100644 index 000000000000..908ac04f455e --- /dev/null +++ b/data/software/nl/nlogit.json @@ -0,0 +1,8 @@ +{ + "slug": "nlogit", + "name": "NLOGIT", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17145975" + ] +} diff --git a/data/software/nl/nlopt.json b/data/software/nl/nlopt.json new file mode 100644 index 000000000000..b39a90aafea9 --- /dev/null +++ b/data/software/nl/nlopt.json @@ -0,0 +1,8 @@ +{ + "slug": "nlopt", + "name": "nlopt", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117025920" + ] +} diff --git a/data/software/nl/nlp-hub-multiple-ner-tools.json b/data/software/nl/nlp-hub-multiple-ner-tools.json new file mode 100644 index 000000000000..b3f9db48306b --- /dev/null +++ b/data/software/nl/nlp-hub-multiple-ner-tools.json @@ -0,0 +1,8 @@ +{ + "slug": "nlp-hub-multiple-ner-tools", + "name": "NLP-HUB (multiple NER tools)", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087690" + ] +} diff --git a/data/software/nl/nlpqlp.json b/data/software/nl/nlpqlp.json new file mode 100644 index 000000000000..ceed44ef2d7f --- /dev/null +++ b/data/software/nl/nlpqlp.json @@ -0,0 +1,8 @@ +{ + "slug": "nlpqlp", + "name": "NLPQLP", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q19605669" + ] +} diff --git a/data/software/nl/nltk-3-3-natural-language-toolkit.json b/data/software/nl/nltk-3-3-natural-language-toolkit.json new file mode 100644 index 000000000000..e94e9a215f96 --- /dev/null +++ b/data/software/nl/nltk-3-3-natural-language-toolkit.json @@ -0,0 +1,8 @@ +{ + "slug": "nltk-3-3-natural-language-toolkit", + "name": "NLTK 3.3 (Natural Language Toolkit)", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087691" + ] +} diff --git a/data/software/nm/nmf-app.json b/data/software/nm/nmf-app.json new file mode 100644 index 000000000000..ff54d06ec683 --- /dev/null +++ b/data/software/nm/nmf-app.json @@ -0,0 +1,11 @@ +{ + "slug": "nmf-app", + "name": "nmf-app", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115688413" + ], + "licenses": [ + "GNU General Public License, version 3.0" + ] +} diff --git a/data/software/nm/nmrpipe.json b/data/software/nm/nmrpipe.json new file mode 100644 index 000000000000..914bb264764f --- /dev/null +++ b/data/software/nm/nmrpipe.json @@ -0,0 +1,8 @@ +{ + "slug": "nmrpipe", + "name": "Nmrpipe", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7042688" + ] +} diff --git a/data/software/nm/nmzmail.json b/data/software/nm/nmzmail.json new file mode 100644 index 000000000000..816db5ebf51e --- /dev/null +++ b/data/software/nm/nmzmail.json @@ -0,0 +1,8 @@ +{ + "slug": "nmzmail", + "name": "nmzmail", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62855962" + ] +} diff --git a/data/software/nn/nnpdf.json b/data/software/nn/nnpdf.json new file mode 100644 index 000000000000..70fa85f7796e --- /dev/null +++ b/data/software/nn/nnpdf.json @@ -0,0 +1,8 @@ +{ + "slug": "nnpdf", + "name": "NNPDF", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6954789" + ] +} diff --git a/data/software/nn/nntpgrab.json b/data/software/nn/nntpgrab.json new file mode 100644 index 000000000000..65582eed8d32 --- /dev/null +++ b/data/software/nn/nntpgrab.json @@ -0,0 +1,8 @@ +{ + "slug": "nntpgrab", + "name": "NNTPGrab", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1969245" + ] +} diff --git a/data/software/no/nobjective.json b/data/software/no/nobjective.json new file mode 100644 index 000000000000..550c8719efc8 --- /dev/null +++ b/data/software/no/nobjective.json @@ -0,0 +1,8 @@ +{ + "slug": "nobjective", + "name": "NObjective", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4044990" + ] +} diff --git a/data/software/no/noc.json b/data/software/no/noc.json new file mode 100644 index 000000000000..1ea493ac2303 --- /dev/null +++ b/data/software/no/noc.json @@ -0,0 +1,11 @@ +{ + "slug": "noc", + "name": "NOC", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q30668338" + ], + "programming_languages": [ + "Python" + ] +} diff --git a/data/software/no/noddy-and-the-toyland-fair.json b/data/software/no/noddy-and-the-toyland-fair.json new file mode 100644 index 000000000000..ee6cb3b476a8 --- /dev/null +++ b/data/software/no/noddy-and-the-toyland-fair.json @@ -0,0 +1,8 @@ +{ + "slug": "noddy-and-the-toyland-fair", + "name": "Noddy and the Toyland Fair", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140358631" + ] +} diff --git a/data/software/no/node-libravatar.json b/data/software/no/node-libravatar.json new file mode 100644 index 000000000000..147a5ad745bd --- /dev/null +++ b/data/software/no/node-libravatar.json @@ -0,0 +1,8 @@ +{ + "slug": "node-libravatar", + "name": "node-libravatar", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131574555" + ] +} diff --git a/data/software/no/node-stream.json b/data/software/no/node-stream.json new file mode 100644 index 000000000000..f53e1e45886a --- /dev/null +++ b/data/software/no/node-stream.json @@ -0,0 +1,8 @@ +{ + "slug": "node-stream", + "name": "node stream", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16938412" + ] +} diff --git a/data/software/no/nodegoat.json b/data/software/no/nodegoat.json new file mode 100644 index 000000000000..4fbec97be78e --- /dev/null +++ b/data/software/no/nodegoat.json @@ -0,0 +1,14 @@ +{ + "slug": "nodegoat", + "name": "nodegoat", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106079697" + ], + "developers": [ + "LAB1100" + ], + "programming_languages": [ + "PHP" + ] +} diff --git a/data/software/no/nodexl.json b/data/software/no/nodexl.json new file mode 100644 index 000000000000..c87bb39e17e3 --- /dev/null +++ b/data/software/no/nodexl.json @@ -0,0 +1,11 @@ +{ + "slug": "nodexl", + "name": "NodeXL", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16958587" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/no/noeclone.json b/data/software/no/noeclone.json new file mode 100644 index 000000000000..88ff5048e389 --- /dev/null +++ b/data/software/no/noeclone.json @@ -0,0 +1,8 @@ +{ + "slug": "noeclone", + "name": "NoeClone", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7046782" + ] +} diff --git a/data/software/no/noeprimer.json b/data/software/no/noeprimer.json new file mode 100644 index 000000000000..c30c1aa9ce13 --- /dev/null +++ b/data/software/no/noeprimer.json @@ -0,0 +1,8 @@ +{ + "slug": "noeprimer", + "name": "NoePrimer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7046784" + ] +} diff --git a/data/software/no/noesis.json b/data/software/no/noesis.json new file mode 100644 index 000000000000..e118c9f582eb --- /dev/null +++ b/data/software/no/noesis.json @@ -0,0 +1,8 @@ +{ + "slug": "noesis", + "name": "Noesis", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q65120432" + ] +} diff --git a/data/software/no/nogrid-points.json b/data/software/no/nogrid-points.json new file mode 100644 index 000000000000..f9d35779277d --- /dev/null +++ b/data/software/no/nogrid-points.json @@ -0,0 +1,8 @@ +{ + "slug": "nogrid-points", + "name": "Nogrid points", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28408317" + ] +} diff --git a/data/software/no/noise-ninja.json b/data/software/no/noise-ninja.json new file mode 100644 index 000000000000..96dc006a9ff9 --- /dev/null +++ b/data/software/no/noise-ninja.json @@ -0,0 +1,8 @@ +{ + "slug": "noise-ninja", + "name": "Noise Ninja", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16974772" + ] +} diff --git a/data/software/no/noiseless.json b/data/software/no/noiseless.json new file mode 100644 index 000000000000..faea8fcef81a --- /dev/null +++ b/data/software/no/noiseless.json @@ -0,0 +1,8 @@ +{ + "slug": "noiseless", + "name": "Noiseless", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q20714295" + ] +} diff --git a/data/software/no/noiseware.json b/data/software/no/noiseware.json new file mode 100644 index 000000000000..3df2bf698031 --- /dev/null +++ b/data/software/no/noiseware.json @@ -0,0 +1,8 @@ +{ + "slug": "noiseware", + "name": "Noiseware", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q15639483" + ] +} diff --git a/data/software/no/noki.json b/data/software/no/noki.json new file mode 100644 index 000000000000..d556e3ce83db --- /dev/null +++ b/data/software/no/noki.json @@ -0,0 +1,8 @@ +{ + "slug": "noki", + "name": "noki", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7047862" + ] +} diff --git a/data/software/no/nokia-lifeblog.json b/data/software/no/nokia-lifeblog.json new file mode 100644 index 000000000000..168cbc61ddfd --- /dev/null +++ b/data/software/no/nokia-lifeblog.json @@ -0,0 +1,12 @@ +{ + "slug": "nokia-lifeblog", + "name": "Nokia Lifeblog", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7047991" + ], + "release_date": "2009-01-01", + "developers": [ + "Nokia" + ] +} diff --git a/data/software/no/nokia-music-store-india.json b/data/software/no/nokia-music-store-india.json new file mode 100644 index 000000000000..9686e2958d79 --- /dev/null +++ b/data/software/no/nokia-music-store-india.json @@ -0,0 +1,11 @@ +{ + "slug": "nokia-music-store-india", + "name": "Nokia Music Store India", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q14623434" + ], + "developers": [ + "Nokia" + ] +} diff --git a/data/software/no/nokia-pc-suite.json b/data/software/no/nokia-pc-suite.json new file mode 100644 index 000000000000..a09f6fe0c9c3 --- /dev/null +++ b/data/software/no/nokia-pc-suite.json @@ -0,0 +1,14 @@ +{ + "slug": "nokia-pc-suite", + "name": "Nokia PC Suite", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1456530" + ], + "developers": [ + "Microsoft Mobile" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/no/nokia-store.json b/data/software/no/nokia-store.json new file mode 100644 index 000000000000..bffdb1559756 --- /dev/null +++ b/data/software/no/nokia-store.json @@ -0,0 +1,12 @@ +{ + "slug": "nokia-store", + "name": "Nokia Store", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18759169" + ], + "release_date": "2009-01-01", + "developers": [ + "Microsoft Mobile" + ] +} diff --git a/data/software/no/nolapro.json b/data/software/no/nolapro.json new file mode 100644 index 000000000000..3d89409898a8 --- /dev/null +++ b/data/software/no/nolapro.json @@ -0,0 +1,11 @@ +{ + "slug": "nolapro", + "name": "NolaPro", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7048126" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/no/nomenklatura-q126084418.json b/data/software/no/nomenklatura-q126084418.json new file mode 100644 index 000000000000..431456ca1f39 --- /dev/null +++ b/data/software/no/nomenklatura-q126084418.json @@ -0,0 +1,8 @@ +{ + "slug": "nomenklatura-q126084418", + "name": "Nomenklatura", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084418" + ] +} diff --git a/data/software/no/nomenklatura.json b/data/software/no/nomenklatura.json new file mode 100644 index 000000000000..e39b3a803084 --- /dev/null +++ b/data/software/no/nomenklatura.json @@ -0,0 +1,8 @@ +{ + "slug": "nomenklatura", + "name": "Nomenklatura", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113375577" + ] +} diff --git a/data/software/no/nomeroff-net.json b/data/software/no/nomeroff-net.json new file mode 100644 index 000000000000..84d1aa33f3ee --- /dev/null +++ b/data/software/no/nomeroff-net.json @@ -0,0 +1,8 @@ +{ + "slug": "nomeroff-net", + "name": "Nomeroff Net", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62070575" + ] +} diff --git a/data/software/no/nomulus.json b/data/software/no/nomulus.json new file mode 100644 index 000000000000..3129672836c0 --- /dev/null +++ b/data/software/no/nomulus.json @@ -0,0 +1,14 @@ +{ + "slug": "nomulus", + "name": "Nomulus", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q29364592" + ], + "developers": [ + "Google" + ], + "licenses": [ + "Apache License" + ] +} diff --git a/data/software/no/nonmem.json b/data/software/no/nonmem.json new file mode 100644 index 000000000000..d849ddf24916 --- /dev/null +++ b/data/software/no/nonmem.json @@ -0,0 +1,11 @@ +{ + "slug": "nonmem", + "name": "NONMEM", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6954915" + ], + "developers": [ + "University of California, San Francisco" + ] +} diff --git a/data/software/no/nonstop-sql.json b/data/software/no/nonstop-sql.json new file mode 100644 index 000000000000..08cd3c8c77c7 --- /dev/null +++ b/data/software/no/nonstop-sql.json @@ -0,0 +1,11 @@ +{ + "slug": "nonstop-sql", + "name": "NonStop SQL", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1218487" + ], + "developers": [ + "Tandem Computers" + ] +} diff --git a/data/software/no/noodletools.json b/data/software/no/noodletools.json new file mode 100644 index 000000000000..b4797abacdd8 --- /dev/null +++ b/data/software/no/noodletools.json @@ -0,0 +1,8 @@ +{ + "slug": "noodletools", + "name": "NoodleTools", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084419" + ] +} diff --git a/data/software/no/nooj.json b/data/software/no/nooj.json new file mode 100644 index 000000000000..891defbd7f3f --- /dev/null +++ b/data/software/no/nooj.json @@ -0,0 +1,8 @@ +{ + "slug": "nooj", + "name": "NooJ", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25049177" + ] +} diff --git a/data/software/no/norc.json b/data/software/no/norc.json new file mode 100644 index 000000000000..8fde2caac72e --- /dev/null +++ b/data/software/no/norc.json @@ -0,0 +1,8 @@ +{ + "slug": "norc", + "name": "NORC", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q755099" + ] +} diff --git a/data/software/no/norconex-web-crawler.json b/data/software/no/norconex-web-crawler.json new file mode 100644 index 000000000000..0b4cbd35496c --- /dev/null +++ b/data/software/no/norconex-web-crawler.json @@ -0,0 +1,8 @@ +{ + "slug": "norconex-web-crawler", + "name": "Norconex Web Crawler", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123000007" + ] +} diff --git a/data/software/no/norcroft-c-compiler.json b/data/software/no/norcroft-c-compiler.json new file mode 100644 index 000000000000..5232b26a4a14 --- /dev/null +++ b/data/software/no/norcroft-c-compiler.json @@ -0,0 +1,8 @@ +{ + "slug": "norcroft-c-compiler", + "name": "Norcroft C compiler", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4045464" + ] +} diff --git a/data/software/no/nordfx.json b/data/software/no/nordfx.json new file mode 100644 index 000000000000..3a9b0ac1640e --- /dev/null +++ b/data/software/no/nordfx.json @@ -0,0 +1,8 @@ +{ + "slug": "nordfx", + "name": "NordFX", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140320741" + ] +} diff --git a/data/software/no/nordlayer.json b/data/software/no/nordlayer.json new file mode 100644 index 000000000000..c72d7a436e92 --- /dev/null +++ b/data/software/no/nordlayer.json @@ -0,0 +1,8 @@ +{ + "slug": "nordlayer", + "name": "NordLayer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111941520" + ] +} diff --git a/data/software/no/nordlocker.json b/data/software/no/nordlocker.json new file mode 100644 index 000000000000..28f1f9e5fbd9 --- /dev/null +++ b/data/software/no/nordlocker.json @@ -0,0 +1,11 @@ +{ + "slug": "nordlocker", + "name": "NordLocker", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q104881294" + ], + "developers": [ + "Groupe Nord" + ] +} diff --git a/data/software/no/nordvpn.json b/data/software/no/nordvpn.json new file mode 100644 index 000000000000..e7ef8314fe41 --- /dev/null +++ b/data/software/no/nordvpn.json @@ -0,0 +1,18 @@ +{ + "slug": "nordvpn", + "name": "NordVPN", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q48816099" + ], + "operating_systems": [ + "Android TV", + "ChromeOS", + "iOS", + "macOS", + "Microsoft Windows" + ], + "licenses": [ + "GNU General Public License, version 3.0" + ] +} diff --git a/data/software/no/noredink.json b/data/software/no/noredink.json new file mode 100644 index 000000000000..8a2a09d0ae5f --- /dev/null +++ b/data/software/no/noredink.json @@ -0,0 +1,11 @@ +{ + "slug": "noredink", + "name": "NoRedInk", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25038475" + ], + "developers": [ + "NoRedInk Corporation" + ] +} diff --git a/data/software/no/north-carolina-learning-object-repository.json b/data/software/no/north-carolina-learning-object-repository.json new file mode 100644 index 000000000000..5ff2976b9e68 --- /dev/null +++ b/data/software/no/north-carolina-learning-object-repository.json @@ -0,0 +1,8 @@ +{ + "slug": "north-carolina-learning-object-repository", + "name": "North Carolina Learning Object Repository", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7054551" + ] +} diff --git a/data/software/no/norton-360.json b/data/software/no/norton-360.json new file mode 100644 index 000000000000..63e4ed821834 --- /dev/null +++ b/data/software/no/norton-360.json @@ -0,0 +1,8 @@ +{ + "slug": "norton-360", + "name": "Norton 360", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122577347" + ] +} diff --git a/data/software/no/norton-confidential.json b/data/software/no/norton-confidential.json new file mode 100644 index 000000000000..cf619695db32 --- /dev/null +++ b/data/software/no/norton-confidential.json @@ -0,0 +1,8 @@ +{ + "slug": "norton-confidential", + "name": "Norton Confidential", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16878308" + ] +} diff --git a/data/software/no/norton-connectsafe.json b/data/software/no/norton-connectsafe.json new file mode 100644 index 000000000000..268b8588888e --- /dev/null +++ b/data/software/no/norton-connectsafe.json @@ -0,0 +1,11 @@ +{ + "slug": "norton-connectsafe", + "name": "Norton ConnectSafe", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3543859" + ], + "developers": [ + "Gen Digital" + ] +} diff --git a/data/software/no/norton-file-insight.json b/data/software/no/norton-file-insight.json new file mode 100644 index 000000000000..f35dd2521fb3 --- /dev/null +++ b/data/software/no/norton-file-insight.json @@ -0,0 +1,11 @@ +{ + "slug": "norton-file-insight", + "name": "Norton File Insight", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7060621" + ], + "developers": [ + "Gen Digital" + ] +} diff --git a/data/software/no/norton-insight.json b/data/software/no/norton-insight.json new file mode 100644 index 000000000000..c4cd4cd4bd7c --- /dev/null +++ b/data/software/no/norton-insight.json @@ -0,0 +1,11 @@ +{ + "slug": "norton-insight", + "name": "Norton Insight", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7060644" + ], + "developers": [ + "Gen Digital" + ] +} diff --git a/data/software/no/norton-liveupdate.json b/data/software/no/norton-liveupdate.json new file mode 100644 index 000000000000..29a35b386a9a --- /dev/null +++ b/data/software/no/norton-liveupdate.json @@ -0,0 +1,11 @@ +{ + "slug": "norton-liveupdate", + "name": "Norton LiveUpdate", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1866249" + ], + "developers": [ + "Gen Digital" + ] +} diff --git a/data/software/no/norton-personal-firewall.json b/data/software/no/norton-personal-firewall.json new file mode 100644 index 000000000000..dae702728c40 --- /dev/null +++ b/data/software/no/norton-personal-firewall.json @@ -0,0 +1,11 @@ +{ + "slug": "norton-personal-firewall", + "name": "Norton Personal Firewall", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q593674" + ], + "developers": [ + "Gen Digital" + ] +} diff --git a/data/software/no/norton-power-eraser.json b/data/software/no/norton-power-eraser.json new file mode 100644 index 000000000000..1afcf64ee75e --- /dev/null +++ b/data/software/no/norton-power-eraser.json @@ -0,0 +1,11 @@ +{ + "slug": "norton-power-eraser", + "name": "Norton Power Eraser", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7060674" + ], + "developers": [ + "Gen Digital" + ] +} diff --git a/data/software/no/norton-safe-web.json b/data/software/no/norton-safe-web.json new file mode 100644 index 000000000000..bab182d54cc7 --- /dev/null +++ b/data/software/no/norton-safe-web.json @@ -0,0 +1,11 @@ +{ + "slug": "norton-safe-web", + "name": "Norton Safe Web", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7060684" + ], + "developers": [ + "Gen Digital" + ] +} diff --git a/data/software/no/norton-security.json b/data/software/no/norton-security.json new file mode 100644 index 000000000000..1b076298a1fd --- /dev/null +++ b/data/software/no/norton-security.json @@ -0,0 +1,14 @@ +{ + "slug": "norton-security", + "name": "Norton Security", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18015510" + ], + "developers": [ + "Gen Digital" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/no/norton-system-insight.json b/data/software/no/norton-system-insight.json new file mode 100644 index 000000000000..bc9416c42725 --- /dev/null +++ b/data/software/no/norton-system-insight.json @@ -0,0 +1,11 @@ +{ + "slug": "norton-system-insight", + "name": "Norton System Insight", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7060691" + ], + "developers": [ + "Gen Digital" + ] +} diff --git a/data/software/no/norton-systemworks.json b/data/software/no/norton-systemworks.json new file mode 100644 index 000000000000..efe73addd979 --- /dev/null +++ b/data/software/no/norton-systemworks.json @@ -0,0 +1,11 @@ +{ + "slug": "norton-systemworks", + "name": "Norton SystemWorks", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7060689" + ], + "developers": [ + "Gen Digital" + ] +} diff --git a/data/software/no/norton-utilities.json b/data/software/no/norton-utilities.json new file mode 100644 index 000000000000..1a6c2509b1f8 --- /dev/null +++ b/data/software/no/norton-utilities.json @@ -0,0 +1,17 @@ +{ + "slug": "norton-utilities", + "name": "Norton Utilities", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1370549" + ], + "developers": [ + "Gen Digital" + ], + "operating_systems": [ + "Microsoft Windows" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/no/norton-zone.json b/data/software/no/norton-zone.json new file mode 100644 index 000000000000..9fc4ad31463f --- /dev/null +++ b/data/software/no/norton-zone.json @@ -0,0 +1,15 @@ +{ + "slug": "norton-zone", + "name": "Norton Zone", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16975019" + ], + "release_date": "2012-11-29", + "developers": [ + "Gen Digital" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/no/nosa-itaca.json b/data/software/no/nosa-itaca.json new file mode 100644 index 000000000000..ba4fe47aec42 --- /dev/null +++ b/data/software/no/nosa-itaca.json @@ -0,0 +1,8 @@ +{ + "slug": "nosa-itaca", + "name": "NOSA-ITACA", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137555737" + ] +} diff --git a/data/software/no/noscribe.json b/data/software/no/noscribe.json new file mode 100644 index 000000000000..fabb984d74fd --- /dev/null +++ b/data/software/no/noscribe.json @@ -0,0 +1,18 @@ +{ + "slug": "noscribe", + "name": "noScribe", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123186046" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [ + "Python" + ], + "licenses": [ + "GNU General Public License, version 3.0" + ] +} diff --git a/data/software/no/nose.json b/data/software/no/nose.json new file mode 100644 index 000000000000..68db6ac500e6 --- /dev/null +++ b/data/software/no/nose.json @@ -0,0 +1,8 @@ +{ + "slug": "nose", + "name": "nose", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975259" + ] +} diff --git a/data/software/no/nosketch-engine.json b/data/software/no/nosketch-engine.json new file mode 100644 index 000000000000..fe265b4e0b00 --- /dev/null +++ b/data/software/no/nosketch-engine.json @@ -0,0 +1,8 @@ +{ + "slug": "nosketch-engine", + "name": "noSketch Engine", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134726934" + ] +} diff --git a/data/software/no/nosqlz.json b/data/software/no/nosqlz.json new file mode 100644 index 000000000000..61da10ae7d01 --- /dev/null +++ b/data/software/no/nosqlz.json @@ -0,0 +1,12 @@ +{ + "slug": "nosqlz", + "name": "NoSQLz", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22661327" + ], + "release_date": "2014-01-01", + "operating_systems": [ + "z/OS" + ] +} diff --git a/data/software/no/nostrobeai.json b/data/software/no/nostrobeai.json new file mode 100644 index 000000000000..4c1cfb401a1a --- /dev/null +++ b/data/software/no/nostrobeai.json @@ -0,0 +1,12 @@ +{ + "slug": "nostrobeai", + "name": "NostrobeAI", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139952400" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/software/no/nota-bene-nb.json b/data/software/no/nota-bene-nb.json new file mode 100644 index 000000000000..7530e4f454b4 --- /dev/null +++ b/data/software/no/nota-bene-nb.json @@ -0,0 +1,8 @@ +{ + "slug": "nota-bene-nb", + "name": "Nota Bene (NB)", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084420" + ] +} diff --git a/data/software/no/notabene.json b/data/software/no/notabene.json new file mode 100644 index 000000000000..16e2d0972090 --- /dev/null +++ b/data/software/no/notabene.json @@ -0,0 +1,14 @@ +{ + "slug": "notabene", + "name": "Notabene", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105748772" + ], + "operating_systems": [ + "Microsoft Windows" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/no/notational-velocity.json b/data/software/no/notational-velocity.json new file mode 100644 index 000000000000..72a390d06766 --- /dev/null +++ b/data/software/no/notational-velocity.json @@ -0,0 +1,8 @@ +{ + "slug": "notational-velocity", + "name": "Notational Velocity", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084421" + ] +} diff --git a/data/software/no/note-block-studio.json b/data/software/no/note-block-studio.json new file mode 100644 index 000000000000..a85456d556bd --- /dev/null +++ b/data/software/no/note-block-studio.json @@ -0,0 +1,8 @@ +{ + "slug": "note-block-studio", + "name": "Note Block Studio", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135668362" + ] +} diff --git a/data/software/no/notebook.json b/data/software/no/notebook.json new file mode 100644 index 000000000000..f4aa38a5f961 --- /dev/null +++ b/data/software/no/notebook.json @@ -0,0 +1,8 @@ +{ + "slug": "notebook", + "name": "NoteBook", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084423" + ] +} diff --git a/data/software/no/notecontrol.json b/data/software/no/notecontrol.json new file mode 100644 index 000000000000..3ac4d52b65ab --- /dev/null +++ b/data/software/no/notecontrol.json @@ -0,0 +1,14 @@ +{ + "slug": "notecontrol", + "name": "NoteControl", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105748773" + ], + "operating_systems": [ + "Microsoft Windows" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/no/noteperformer.json b/data/software/no/noteperformer.json new file mode 100644 index 000000000000..ca77fe2ee4d3 --- /dev/null +++ b/data/software/no/noteperformer.json @@ -0,0 +1,8 @@ +{ + "slug": "noteperformer", + "name": "NotePerformer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136171175" + ] +} diff --git a/data/software/no/noter.json b/data/software/no/noter.json new file mode 100644 index 000000000000..daed281af4bd --- /dev/null +++ b/data/software/no/noter.json @@ -0,0 +1,8 @@ +{ + "slug": "noter", + "name": "Noter", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084424" + ] +} diff --git a/data/software/no/notification-center.json b/data/software/no/notification-center.json new file mode 100644 index 000000000000..03d58ce0ed65 --- /dev/null +++ b/data/software/no/notification-center.json @@ -0,0 +1,15 @@ +{ + "slug": "notification-center", + "name": "Notification Center", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2917187" + ], + "developers": [ + "Apple Inc." + ], + "operating_systems": [ + "iOS", + "Mac operating system" + ] +} diff --git a/data/software/no/notificationdaemon.json b/data/software/no/notificationdaemon.json new file mode 100644 index 000000000000..be1089633d35 --- /dev/null +++ b/data/software/no/notificationdaemon.json @@ -0,0 +1,8 @@ +{ + "slug": "notificationdaemon", + "name": "NotificationDaemon", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76181553" + ] +} diff --git a/data/software/no/nottingham-arabidopsis-stock-centre.json b/data/software/no/nottingham-arabidopsis-stock-centre.json new file mode 100644 index 000000000000..efa7562800b8 --- /dev/null +++ b/data/software/no/nottingham-arabidopsis-stock-centre.json @@ -0,0 +1,8 @@ +{ + "slug": "nottingham-arabidopsis-stock-centre", + "name": "Nottingham Arabidopsis Stock Centre", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7063591" + ] +} diff --git a/data/software/no/nova-q112514943.json b/data/software/no/nova-q112514943.json new file mode 100644 index 000000000000..3eda8b9e3fa9 --- /dev/null +++ b/data/software/no/nova-q112514943.json @@ -0,0 +1,11 @@ +{ + "slug": "nova-q112514943", + "name": "Nova", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112514943" + ], + "developers": [ + "Panic" + ] +} diff --git a/data/software/no/nova.json b/data/software/no/nova.json new file mode 100644 index 000000000000..4d45506b14e1 --- /dev/null +++ b/data/software/no/nova.json @@ -0,0 +1,11 @@ +{ + "slug": "nova", + "name": "nova", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975261" + ], + "licenses": [ + "Apache License" + ] +} diff --git a/data/software/no/novabench.json b/data/software/no/novabench.json new file mode 100644 index 000000000000..05b334df6eaf --- /dev/null +++ b/data/software/no/novabench.json @@ -0,0 +1,12 @@ +{ + "slug": "novabench", + "name": "Novabench", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17082811" + ], + "release_date": "2007-01-01", + "licenses": [ + "freeware" + ] +} diff --git a/data/software/no/novakid.json b/data/software/no/novakid.json new file mode 100644 index 000000000000..e3535648a39d --- /dev/null +++ b/data/software/no/novakid.json @@ -0,0 +1,8 @@ +{ + "slug": "novakid", + "name": "NovaKid", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135111421" + ] +} diff --git a/data/software/no/novapdf.json b/data/software/no/novapdf.json new file mode 100644 index 000000000000..0da09a321160 --- /dev/null +++ b/data/software/no/novapdf.json @@ -0,0 +1,15 @@ +{ + "slug": "novapdf", + "name": "novaPDF", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7063987" + ], + "operating_systems": [ + "Windows Server 2016", + "Windows 8.1", + "Windows Server 2008", + "Windows 7", + "Windows Server 2003" + ] +} diff --git a/data/software/no/novelai.json b/data/software/no/novelai.json new file mode 100644 index 000000000000..daa97c925683 --- /dev/null +++ b/data/software/no/novelai.json @@ -0,0 +1,8 @@ +{ + "slug": "novelai", + "name": "NovelAI", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q114450428" + ] +} diff --git a/data/software/no/novell-access-manager.json b/data/software/no/novell-access-manager.json new file mode 100644 index 000000000000..1a48ad3d2bb4 --- /dev/null +++ b/data/software/no/novell-access-manager.json @@ -0,0 +1,11 @@ +{ + "slug": "novell-access-manager", + "name": "Novell Access Manager", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7064557" + ], + "developers": [ + "NetIQ" + ] +} diff --git a/data/software/no/novell-bordermanager.json b/data/software/no/novell-bordermanager.json new file mode 100644 index 000000000000..7882cba99b28 --- /dev/null +++ b/data/software/no/novell-bordermanager.json @@ -0,0 +1,12 @@ +{ + "slug": "novell-bordermanager", + "name": "Novell BorderManager", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7064558" + ], + "release_date": "1997-08-25", + "developers": [ + "Novell" + ] +} diff --git a/data/software/no/novell-edirectory.json b/data/software/no/novell-edirectory.json new file mode 100644 index 000000000000..f8af277f402e --- /dev/null +++ b/data/software/no/novell-edirectory.json @@ -0,0 +1,17 @@ +{ + "slug": "novell-edirectory", + "name": "Novell eDirectory", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1093748" + ], + "developers": [ + "Open Text Corporation" + ], + "operating_systems": [ + "cross-platform" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/no/novell-file-management-suite.json b/data/software/no/novell-file-management-suite.json new file mode 100644 index 000000000000..6b8240b21409 --- /dev/null +++ b/data/software/no/novell-file-management-suite.json @@ -0,0 +1,8 @@ +{ + "slug": "novell-file-management-suite", + "name": "Novell File Management Suite", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17092088" + ] +} diff --git a/data/software/no/novell-file-reporter.json b/data/software/no/novell-file-reporter.json new file mode 100644 index 000000000000..0ed8d404cdc4 --- /dev/null +++ b/data/software/no/novell-file-reporter.json @@ -0,0 +1,9 @@ +{ + "slug": "novell-file-reporter", + "name": "Novell File Reporter", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7064565" + ], + "release_date": "2010-01-01" +} diff --git a/data/software/no/novell-identity-manager.json b/data/software/no/novell-identity-manager.json new file mode 100644 index 000000000000..d8a9c61566d4 --- /dev/null +++ b/data/software/no/novell-identity-manager.json @@ -0,0 +1,12 @@ +{ + "slug": "novell-identity-manager", + "name": "Novell Identity Manager", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1965263" + ], + "developers": [ + "NetIQ", + "Novell" + ] +} diff --git a/data/software/no/novell-storage-manager.json b/data/software/no/novell-storage-manager.json new file mode 100644 index 000000000000..5c42f5a773a6 --- /dev/null +++ b/data/software/no/novell-storage-manager.json @@ -0,0 +1,12 @@ +{ + "slug": "novell-storage-manager", + "name": "Novell Storage Manager", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7064568" + ], + "release_date": "2004-01-01", + "developers": [ + "Novell" + ] +} diff --git a/data/software/no/novell-zenworks.json b/data/software/no/novell-zenworks.json new file mode 100644 index 000000000000..d500d3d46d3d --- /dev/null +++ b/data/software/no/novell-zenworks.json @@ -0,0 +1,13 @@ +{ + "slug": "novell-zenworks", + "name": "Novell ZENworks", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2002922" + ], + "developers": [ + "Micro Focus International", + "Open Text Corporation", + "Novell" + ] +} diff --git a/data/software/no/noverfly.json b/data/software/no/noverfly.json new file mode 100644 index 000000000000..35e084d54b75 --- /dev/null +++ b/data/software/no/noverfly.json @@ -0,0 +1,17 @@ +{ + "slug": "noverfly", + "name": "NoverFly", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138784116" + ], + "operating_systems": [ + "cross-platform" + ], + "programming_languages": [ + "TypeScript" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/no/novopay.json b/data/software/no/novopay.json new file mode 100644 index 000000000000..3fb71426a4f0 --- /dev/null +++ b/data/software/no/novopay.json @@ -0,0 +1,8 @@ +{ + "slug": "novopay", + "name": "Novopay", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7065033" + ] +} diff --git a/data/software/no/nowcomment.json b/data/software/no/nowcomment.json new file mode 100644 index 000000000000..e46f6c77b8e0 --- /dev/null +++ b/data/software/no/nowcomment.json @@ -0,0 +1,8 @@ +{ + "slug": "nowcomment", + "name": "NowComment", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084425" + ] +} diff --git a/data/software/no/nowserving.json b/data/software/no/nowserving.json new file mode 100644 index 000000000000..25686fd4e9d6 --- /dev/null +++ b/data/software/no/nowserving.json @@ -0,0 +1,8 @@ +{ + "slug": "nowserving", + "name": "NowServing", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135507597" + ] +} diff --git a/data/software/no/noxplayer.json b/data/software/no/noxplayer.json new file mode 100644 index 000000000000..ae1792e4ee5a --- /dev/null +++ b/data/software/no/noxplayer.json @@ -0,0 +1,23 @@ +{ + "slug": "noxplayer", + "name": "NoxPlayer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q30945932" + ], + "release_date": "2015-06-06", + "developers": [ + "Nox Limited" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [ + "Python" + ], + "licenses": [ + "proprietary license", + "adware" + ] +} diff --git a/data/software/no/noza-inc.json b/data/software/no/noza-inc.json new file mode 100644 index 000000000000..e632473feee5 --- /dev/null +++ b/data/software/no/noza-inc.json @@ -0,0 +1,8 @@ +{ + "slug": "noza-inc", + "name": "NOZA, Inc.", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6954997" + ] +} diff --git a/data/software/np/npapi-sdk.json b/data/software/np/npapi-sdk.json new file mode 100644 index 000000000000..b05d3468f5d3 --- /dev/null +++ b/data/software/np/npapi-sdk.json @@ -0,0 +1,8 @@ +{ + "slug": "npapi-sdk", + "name": "npapi-sdk", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975263" + ] +} diff --git a/data/software/np/npapi-vlc.json b/data/software/np/npapi-vlc.json new file mode 100644 index 000000000000..82e2ccfac42d --- /dev/null +++ b/data/software/np/npapi-vlc.json @@ -0,0 +1,8 @@ +{ + "slug": "npapi-vlc", + "name": "npapi-vlc", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975264" + ] +} diff --git a/data/software/np/nparadox.json b/data/software/np/nparadox.json new file mode 100644 index 000000000000..ee8ffd3bad1a --- /dev/null +++ b/data/software/np/nparadox.json @@ -0,0 +1,8 @@ +{ + "slug": "nparadox", + "name": "NParadox", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140187923" + ] +} diff --git a/data/software/np/npclassifier.json b/data/software/np/npclassifier.json new file mode 100644 index 000000000000..e34feb7ed669 --- /dev/null +++ b/data/software/np/npclassifier.json @@ -0,0 +1,8 @@ +{ + "slug": "npclassifier", + "name": "NPClassifier", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112144253" + ] +} diff --git a/data/software/np/npefix.json b/data/software/np/npefix.json new file mode 100644 index 000000000000..681039ab14d5 --- /dev/null +++ b/data/software/np/npefix.json @@ -0,0 +1,8 @@ +{ + "slug": "npefix", + "name": "npefix", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127485404" + ] +} diff --git a/data/software/np/npgsql.json b/data/software/np/npgsql.json new file mode 100644 index 000000000000..6848207b0309 --- /dev/null +++ b/data/software/np/npgsql.json @@ -0,0 +1,8 @@ +{ + "slug": "npgsql", + "name": "Npgsql", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10851951" + ] +} diff --git a/data/software/np/npsol.json b/data/software/np/npsol.json new file mode 100644 index 000000000000..528559f245a0 --- /dev/null +++ b/data/software/np/npsol.json @@ -0,0 +1,14 @@ +{ + "slug": "npsol", + "name": "NPSOL", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6955065" + ], + "programming_languages": [ + "Fortran" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/nq/nqp.json b/data/software/nq/nqp.json new file mode 100644 index 000000000000..8a8e42e3047e --- /dev/null +++ b/data/software/nq/nqp.json @@ -0,0 +1,8 @@ +{ + "slug": "nqp", + "name": "nqp", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975265" + ] +} diff --git a/data/software/nq/nquery-sample-size-software.json b/data/software/nq/nquery-sample-size-software.json new file mode 100644 index 000000000000..946333c81bec --- /dev/null +++ b/data/software/nq/nquery-sample-size-software.json @@ -0,0 +1,8 @@ +{ + "slug": "nquery-sample-size-software", + "name": "nQuery Sample Size Software", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q55641191" + ] +} diff --git a/data/software/ns/nsupdate.json b/data/software/ns/nsupdate.json new file mode 100644 index 000000000000..8cd132dec220 --- /dev/null +++ b/data/software/ns/nsupdate.json @@ -0,0 +1,8 @@ +{ + "slug": "nsupdate", + "name": "nsupdate", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7067586" + ] +} diff --git a/data/software/ns/nsynth.json b/data/software/ns/nsynth.json new file mode 100644 index 000000000000..c95ef8669bd6 --- /dev/null +++ b/data/software/ns/nsynth.json @@ -0,0 +1,8 @@ +{ + "slug": "nsynth", + "name": "NSynth", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116788731" + ] +} diff --git a/data/software/nt/ntchem.json b/data/software/nt/ntchem.json new file mode 100644 index 000000000000..e517f4bccfe2 --- /dev/null +++ b/data/software/nt/ntchem.json @@ -0,0 +1,11 @@ +{ + "slug": "ntchem", + "name": "NTChem", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110286863" + ], + "developers": [ + "RIKEN" + ] +} diff --git a/data/software/nt/ntfsresize.json b/data/software/nt/ntfsresize.json new file mode 100644 index 000000000000..cb1b40354e76 --- /dev/null +++ b/data/software/nt/ntfsresize.json @@ -0,0 +1,8 @@ +{ + "slug": "ntfsresize", + "name": "ntfsresize", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7067620" + ] +} diff --git a/data/software/nt/ntfy.json b/data/software/nt/ntfy.json new file mode 100644 index 000000000000..8f072311497c --- /dev/null +++ b/data/software/nt/ntfy.json @@ -0,0 +1,15 @@ +{ + "slug": "ntfy", + "name": "ntfy", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115156417" + ], + "operating_systems": [ + "iOS" + ], + "licenses": [ + "Apache Software License 2.0", + "GNU General Public License, version 2.0" + ] +} diff --git a/data/software/nt/ntlite.json b/data/software/nt/ntlite.json new file mode 100644 index 000000000000..84d777a26b60 --- /dev/null +++ b/data/software/nt/ntlite.json @@ -0,0 +1,13 @@ +{ + "slug": "ntlite", + "name": "NTLite", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18629334" + ], + "release_date": "2014-09-18", + "operating_systems": [ + "Windows 8.1", + "Windows 7" + ] +} diff --git a/data/software/nt/ntpsec.json b/data/software/nt/ntpsec.json new file mode 100644 index 000000000000..80151f5c1130 --- /dev/null +++ b/data/software/nt/ntpsec.json @@ -0,0 +1,19 @@ +{ + "slug": "ntpsec", + "name": "NTPsec", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125526030" + ], + "licenses": [ + "NTP License", + "4-clause BSD License", + "Creative Commons Attribution 4.0 International", + "2-clause BSD License", + "3-clause BSD License", + "Apache Software License 2.0", + "ISC license", + "Beerware", + "MIT License" + ] +} diff --git a/data/software/nt/ntsyspc.json b/data/software/nt/ntsyspc.json new file mode 100644 index 000000000000..e6b7b8d99a5a --- /dev/null +++ b/data/software/nt/ntsyspc.json @@ -0,0 +1,8 @@ +{ + "slug": "ntsyspc", + "name": "NTSYSpc", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112123696" + ] +} diff --git a/data/software/nu/nu-tech.json b/data/software/nu/nu-tech.json new file mode 100644 index 000000000000..a78e6b226090 --- /dev/null +++ b/data/software/nu/nu-tech.json @@ -0,0 +1,11 @@ +{ + "slug": "nu-tech", + "name": "NU-Tech", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6955554" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/nu/nuance-pdf-reader.json b/data/software/nu/nuance-pdf-reader.json new file mode 100644 index 000000000000..342441cbafc0 --- /dev/null +++ b/data/software/nu/nuance-pdf-reader.json @@ -0,0 +1,8 @@ +{ + "slug": "nuance-pdf-reader", + "name": "Nuance PDF Reader", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7067802" + ] +} diff --git a/data/software/nu/nubimed.json b/data/software/nu/nubimed.json new file mode 100644 index 000000000000..2160698996d4 --- /dev/null +++ b/data/software/nu/nubimed.json @@ -0,0 +1,14 @@ +{ + "slug": "nubimed", + "name": "Nubimed", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q99525685" + ], + "operating_systems": [ + "CentOS", + "cross-platform", + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/software/nu/nucalc.json b/data/software/nu/nucalc.json new file mode 100644 index 000000000000..dcde4d8ebcdb --- /dev/null +++ b/data/software/nu/nucalc.json @@ -0,0 +1,13 @@ +{ + "slug": "nucalc", + "name": "NuCalc", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3775806" + ], + "operating_systems": [ + "iOS", + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/software/nu/nuclear-rat.json b/data/software/nu/nuclear-rat.json new file mode 100644 index 000000000000..f85402fc6525 --- /dev/null +++ b/data/software/nu/nuclear-rat.json @@ -0,0 +1,8 @@ +{ + "slug": "nuclear-rat", + "name": "Nuclear RAT", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7067992" + ] +} diff --git a/data/software/nu/nucleus-for-government.json b/data/software/nu/nucleus-for-government.json new file mode 100644 index 000000000000..95b4ab49fb6d --- /dev/null +++ b/data/software/nu/nucleus-for-government.json @@ -0,0 +1,11 @@ +{ + "slug": "nucleus-for-government", + "name": "Nucleus for Government", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138988654" + ], + "developers": [ + "Nucleus Security" + ] +} diff --git a/data/software/nu/nudat.json b/data/software/nu/nudat.json new file mode 100644 index 000000000000..a66d38ba15f6 --- /dev/null +++ b/data/software/nu/nudat.json @@ -0,0 +1,8 @@ +{ + "slug": "nudat", + "name": "NuDat", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q21234191" + ] +} diff --git a/data/software/nu/nudi.json b/data/software/nu/nudi.json new file mode 100644 index 000000000000..596fe1125d20 --- /dev/null +++ b/data/software/nu/nudi.json @@ -0,0 +1,8 @@ +{ + "slug": "nudi", + "name": "Nudi", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7068374" + ] +} diff --git a/data/software/nu/nuitka.json b/data/software/nu/nuitka.json new file mode 100644 index 000000000000..b361956409bd --- /dev/null +++ b/data/software/nu/nuitka.json @@ -0,0 +1,19 @@ +{ + "slug": "nuitka", + "name": "Nuitka", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q48989469" + ], + "operating_systems": [ + "FreeBSD", + "macOS", + "Microsoft Windows" + ], + "programming_languages": [ + "Python" + ], + "licenses": [ + "Apache Software License 2.0" + ] +} diff --git a/data/software/nu/nukemap.json b/data/software/nu/nukemap.json new file mode 100644 index 000000000000..add0d4f65dfa --- /dev/null +++ b/data/software/nu/nukemap.json @@ -0,0 +1,11 @@ +{ + "slug": "nukemap", + "name": "Nukemap", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16821376" + ], + "developers": [ + "Alex Wellerstein" + ] +} diff --git a/data/software/nu/nukeviet.json b/data/software/nu/nukeviet.json new file mode 100644 index 000000000000..bb5c0dcd809c --- /dev/null +++ b/data/software/nu/nukeviet.json @@ -0,0 +1,8 @@ +{ + "slug": "nukeviet", + "name": "NukeViet", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10801831" + ] +} diff --git a/data/software/nu/nullmailer.json b/data/software/nu/nullmailer.json new file mode 100644 index 000000000000..a607ec3cff7f --- /dev/null +++ b/data/software/nu/nullmailer.json @@ -0,0 +1,8 @@ +{ + "slug": "nullmailer", + "name": "nullmailer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62855778" + ] +} diff --git a/data/software/nu/num-utils.json b/data/software/nu/num-utils.json new file mode 100644 index 000000000000..d8787a7d67a1 --- /dev/null +++ b/data/software/nu/num-utils.json @@ -0,0 +1,8 @@ +{ + "slug": "num-utils", + "name": "num-utils", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62855770" + ] +} diff --git a/data/software/nu/numad.json b/data/software/nu/numad.json new file mode 100644 index 000000000000..d800a33e658f --- /dev/null +++ b/data/software/nu/numad.json @@ -0,0 +1,8 @@ +{ + "slug": "numad", + "name": "numad", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975267" + ] +} diff --git a/data/software/nu/numberguru.json b/data/software/nu/numberguru.json new file mode 100644 index 000000000000..0f842c2e2363 --- /dev/null +++ b/data/software/nu/numberguru.json @@ -0,0 +1,12 @@ +{ + "slug": "numberguru", + "name": "NumberGuru", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16927747" + ], + "release_date": "2011-01-01", + "developers": [ + "BeenVerified" + ] +} diff --git a/data/software/nu/numbuster.json b/data/software/nu/numbuster.json new file mode 100644 index 000000000000..b16cd67100c5 --- /dev/null +++ b/data/software/nu/numbuster.json @@ -0,0 +1,8 @@ +{ + "slug": "numbuster", + "name": "NumBuster!", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18152949" + ] +} diff --git a/data/software/nu/numeo.json b/data/software/nu/numeo.json new file mode 100644 index 000000000000..8b6c198d9e25 --- /dev/null +++ b/data/software/nu/numeo.json @@ -0,0 +1,8 @@ +{ + "slug": "numeo", + "name": "Numeo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140138311" + ] +} diff --git a/data/software/nu/numerical-electromagnetics-code.json b/data/software/nu/numerical-electromagnetics-code.json new file mode 100644 index 000000000000..d7d49406cc93 --- /dev/null +++ b/data/software/nu/numerical-electromagnetics-code.json @@ -0,0 +1,8 @@ +{ + "slug": "numerical-electromagnetics-code", + "name": "Numerical Electromagnetics Code", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q630242" + ] +} diff --git a/data/software/nu/numerical-propulsion-system-simulation.json b/data/software/nu/numerical-propulsion-system-simulation.json new file mode 100644 index 000000000000..4cf18696d042 --- /dev/null +++ b/data/software/nu/numerical-propulsion-system-simulation.json @@ -0,0 +1,8 @@ +{ + "slug": "numerical-propulsion-system-simulation", + "name": "Numerical Propulsion System Simulation", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139855587" + ] +} diff --git a/data/software/nu/numlockx.json b/data/software/nu/numlockx.json new file mode 100644 index 000000000000..2b60f3b2b60f --- /dev/null +++ b/data/software/nu/numlockx.json @@ -0,0 +1,8 @@ +{ + "slug": "numlockx", + "name": "NumLockX", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62855750" + ] +} diff --git a/data/software/nu/numxl.json b/data/software/nu/numxl.json new file mode 100644 index 000000000000..4c8c6c2d9f79 --- /dev/null +++ b/data/software/nu/numxl.json @@ -0,0 +1,8 @@ +{ + "slug": "numxl", + "name": "NumXL", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7069022" + ] +} diff --git a/data/software/nu/nuprl.json b/data/software/nu/nuprl.json new file mode 100644 index 000000000000..2318e73c96e8 --- /dev/null +++ b/data/software/nu/nuprl.json @@ -0,0 +1,8 @@ +{ + "slug": "nuprl", + "name": "NuPRL", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22907407" + ] +} diff --git a/data/software/nu/nurbak.json b/data/software/nu/nurbak.json new file mode 100644 index 000000000000..7d650f4dadac --- /dev/null +++ b/data/software/nu/nurbak.json @@ -0,0 +1,8 @@ +{ + "slug": "nurbak", + "name": "Nurbak", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139606946" + ] +} diff --git a/data/software/nu/nursa.json b/data/software/nu/nursa.json new file mode 100644 index 000000000000..bef359dd82b3 --- /dev/null +++ b/data/software/nu/nursa.json @@ -0,0 +1,8 @@ +{ + "slug": "nursa", + "name": "NURSA", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111437119" + ] +} diff --git a/data/software/nu/nusphere.json b/data/software/nu/nusphere.json new file mode 100644 index 000000000000..6dfb218df37e --- /dev/null +++ b/data/software/nu/nusphere.json @@ -0,0 +1,8 @@ +{ + "slug": "nusphere", + "name": "NuSphere", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4045535" + ] +} diff --git a/data/software/nu/nusuk.json b/data/software/nu/nusuk.json new file mode 100644 index 000000000000..2a67ab230cc1 --- /dev/null +++ b/data/software/nu/nusuk.json @@ -0,0 +1,8 @@ +{ + "slug": "nusuk", + "name": "Nusuk", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139822647" + ] +} diff --git a/data/software/nu/nutrilow.json b/data/software/nu/nutrilow.json new file mode 100644 index 000000000000..ec1a31072b27 --- /dev/null +++ b/data/software/nu/nutrilow.json @@ -0,0 +1,8 @@ +{ + "slug": "nutrilow", + "name": "Nutrilow", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136531966" + ] +} diff --git a/data/software/nu/nutritious-rice-for-the-world.json b/data/software/nu/nutritious-rice-for-the-world.json new file mode 100644 index 000000000000..67e7ec6a0621 --- /dev/null +++ b/data/software/nu/nutritious-rice-for-the-world.json @@ -0,0 +1,9 @@ +{ + "slug": "nutritious-rice-for-the-world", + "name": "Nutritious Rice for the World", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2005610" + ], + "release_date": "2008-01-01" +} diff --git a/data/software/nu/nuts.json b/data/software/nu/nuts.json new file mode 100644 index 000000000000..c551e74c20b5 --- /dev/null +++ b/data/software/nu/nuts.json @@ -0,0 +1,11 @@ +{ + "slug": "nuts", + "name": "NUTS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6955654" + ], + "licenses": [ + "GNU General Public License" + ] +} diff --git a/data/software/nu/nuvem-marketing.json b/data/software/nu/nuvem-marketing.json new file mode 100644 index 000000000000..6b8ff58cc3b7 --- /dev/null +++ b/data/software/nu/nuvem-marketing.json @@ -0,0 +1,11 @@ +{ + "slug": "nuvem-marketing", + "name": "Nuvem Marketing", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138094618" + ], + "developers": [ + "Nuvemshop" + ] +} diff --git a/data/software/nv/nvd.json b/data/software/nv/nvd.json new file mode 100644 index 000000000000..2e719c17f069 --- /dev/null +++ b/data/software/nv/nvd.json @@ -0,0 +1,11 @@ +{ + "slug": "nvd", + "name": "nvd", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136562922" + ], + "licenses": [ + "Apache Software License 2.0" + ] +} diff --git a/data/software/nv/nvflare.json b/data/software/nv/nvflare.json new file mode 100644 index 000000000000..256993b2482e --- /dev/null +++ b/data/software/nv/nvflare.json @@ -0,0 +1,11 @@ +{ + "slug": "nvflare", + "name": "NVFlare", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127474913" + ], + "licenses": [ + "Apache Software License 2.0" + ] +} diff --git a/data/software/nv/nvidia-hairworks.json b/data/software/nv/nvidia-hairworks.json new file mode 100644 index 000000000000..bdb4ee696da8 --- /dev/null +++ b/data/software/nv/nvidia-hairworks.json @@ -0,0 +1,8 @@ +{ + "slug": "nvidia-hairworks", + "name": "Nvidia HairWorks", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q20828879" + ] +} diff --git a/data/software/nv/nvidia-iray.json b/data/software/nv/nvidia-iray.json new file mode 100644 index 000000000000..cfaf912a76d6 --- /dev/null +++ b/data/software/nv/nvidia-iray.json @@ -0,0 +1,8 @@ +{ + "slug": "nvidia-iray", + "name": "NVIDIA Iray", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18417115" + ] +} diff --git a/data/software/nv/nvidia-shadowplay.json b/data/software/nv/nvidia-shadowplay.json new file mode 100644 index 000000000000..d876396a48b3 --- /dev/null +++ b/data/software/nv/nvidia-shadowplay.json @@ -0,0 +1,8 @@ +{ + "slug": "nvidia-shadowplay", + "name": "Nvidia Shadowplay", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16927926" + ] +} diff --git a/data/software/nv/nvidia-system-tools.json b/data/software/nv/nvidia-system-tools.json new file mode 100644 index 000000000000..62af2904c67a --- /dev/null +++ b/data/software/nv/nvidia-system-tools.json @@ -0,0 +1,17 @@ +{ + "slug": "nvidia-system-tools", + "name": "Nvidia System Tools", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4045557" + ], + "developers": [ + "Nvidia" + ], + "operating_systems": [ + "Microsoft Windows" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/nv/nvivotools.json b/data/software/nv/nvivotools.json new file mode 100644 index 000000000000..b057d4b1c5ff --- /dev/null +++ b/data/software/nv/nvivotools.json @@ -0,0 +1,18 @@ +{ + "slug": "nvivotools", + "name": "NVivotools", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105229785" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [ + "Python" + ], + "licenses": [ + "GNU General Public License, version 3.0" + ] +} diff --git a/data/software/nv/nvizn.json b/data/software/nv/nvizn.json new file mode 100644 index 000000000000..12097cc6919d --- /dev/null +++ b/data/software/nv/nvizn.json @@ -0,0 +1,11 @@ +{ + "slug": "nvizn", + "name": "NViZn", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11236253" + ], + "programming_languages": [ + "Java" + ] +} diff --git a/data/software/nx/nx-technology.json b/data/software/nx/nx-technology.json new file mode 100644 index 000000000000..12a6ed69fff7 --- /dev/null +++ b/data/software/nx/nx-technology.json @@ -0,0 +1,11 @@ +{ + "slug": "nx-technology", + "name": "NX technology", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1781023" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/nx/nxivo.json b/data/software/nx/nxivo.json new file mode 100644 index 000000000000..0680fffbd12b --- /dev/null +++ b/data/software/nx/nxivo.json @@ -0,0 +1,11 @@ +{ + "slug": "nxivo", + "name": "Nxivo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139815125" + ], + "developers": [ + "Yermek Ibrayev" + ] +} diff --git a/data/software/nx/nxlog.json b/data/software/nx/nxlog.json new file mode 100644 index 000000000000..c8908b5c27d4 --- /dev/null +++ b/data/software/nx/nxlog.json @@ -0,0 +1,8 @@ +{ + "slug": "nxlog", + "name": "NXLog", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q55624520" + ] +} diff --git a/data/software/nx/nxnote.json b/data/software/nx/nxnote.json new file mode 100644 index 000000000000..7779dbb27ba1 --- /dev/null +++ b/data/software/nx/nxnote.json @@ -0,0 +1,11 @@ +{ + "slug": "nxnote", + "name": "NXNote", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136653267" + ], + "developers": [ + "Shanghai Niaoxun Information Technology Co., Ltd." + ] +} diff --git a/data/software/ny/nym-mixnet.json b/data/software/ny/nym-mixnet.json new file mode 100644 index 000000000000..0fd4ef0b70d3 --- /dev/null +++ b/data/software/ny/nym-mixnet.json @@ -0,0 +1,8 @@ +{ + "slug": "nym-mixnet", + "name": "Nym Mixnet", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q119983864" + ] +} diff --git a/data/software/ny/nymgo.json b/data/software/ny/nymgo.json new file mode 100644 index 000000000000..11b2a2270c88 --- /dev/null +++ b/data/software/ny/nymgo.json @@ -0,0 +1,8 @@ +{ + "slug": "nymgo", + "name": "Nymgo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7071178" + ] +} diff --git a/data/software/o2/o2-system.json b/data/software/o2/o2-system.json new file mode 100644 index 000000000000..3b5bd572842b --- /dev/null +++ b/data/software/o2/o2-system.json @@ -0,0 +1,8 @@ +{ + "slug": "o2-system", + "name": "O2 System", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130541825" + ] +} diff --git a/data/software/o3/o3spaces.json b/data/software/o3/o3spaces.json new file mode 100644 index 000000000000..c6c762f90bd9 --- /dev/null +++ b/data/software/o3/o3spaces.json @@ -0,0 +1,11 @@ +{ + "slug": "o3spaces", + "name": "O3spaces", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1901208" + ], + "programming_languages": [ + "Java" + ] +} diff --git a/data/software/oa/oak-engage.json b/data/software/oa/oak-engage.json new file mode 100644 index 000000000000..3ac96ec1c167 --- /dev/null +++ b/data/software/oa/oak-engage.json @@ -0,0 +1,11 @@ +{ + "slug": "oak-engage", + "name": "Oak Engage", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136790232" + ], + "operating_systems": [ + "cross-platform" + ] +} diff --git a/data/software/oa/oandbackup.json b/data/software/oa/oandbackup.json new file mode 100644 index 000000000000..4f7c0b0335d2 --- /dev/null +++ b/data/software/oa/oandbackup.json @@ -0,0 +1,8 @@ +{ + "slug": "oandbackup", + "name": "oandbackup", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q98732109" + ] +} diff --git a/data/software/oa/oasis-montaj.json b/data/software/oa/oasis-montaj.json new file mode 100644 index 000000000000..31d681f0946c --- /dev/null +++ b/data/software/oa/oasis-montaj.json @@ -0,0 +1,11 @@ +{ + "slug": "oasis-montaj", + "name": "Oasis montaj", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10851994" + ], + "developers": [ + "Geosoft" + ] +} diff --git a/data/software/ob/obconf.json b/data/software/ob/obconf.json new file mode 100644 index 000000000000..4e02c533099f --- /dev/null +++ b/data/software/ob/obconf.json @@ -0,0 +1,8 @@ +{ + "slug": "obconf", + "name": "obconf", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975269" + ] +} diff --git a/data/software/ob/obdtester.json b/data/software/ob/obdtester.json new file mode 100644 index 000000000000..d57efa33b357 --- /dev/null +++ b/data/software/ob/obdtester.json @@ -0,0 +1,8 @@ +{ + "slug": "obdtester", + "name": "OBDTester", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q92600596" + ] +} diff --git a/data/software/ob/obexftp.json b/data/software/ob/obexftp.json new file mode 100644 index 000000000000..2e46069b608e --- /dev/null +++ b/data/software/ob/obexftp.json @@ -0,0 +1,8 @@ +{ + "slug": "obexftp", + "name": "ObexFTP", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62855563" + ] +} diff --git a/data/software/ob/object-description-language.json b/data/software/ob/object-description-language.json new file mode 100644 index 000000000000..32667bbf4fca --- /dev/null +++ b/data/software/ob/object-description-language.json @@ -0,0 +1,8 @@ +{ + "slug": "object-description-language", + "name": "Object Description Language", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7075034" + ] +} diff --git a/data/software/ob/object-desktop.json b/data/software/ob/object-desktop.json new file mode 100644 index 000000000000..5f5a2f62a649 --- /dev/null +++ b/data/software/ob/object-desktop.json @@ -0,0 +1,14 @@ +{ + "slug": "object-desktop", + "name": "Object Desktop", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7075037" + ], + "developers": [ + "Stardock" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/ob/object-oriented-abstract-type-hierarchy.json b/data/software/ob/object-oriented-abstract-type-hierarchy.json new file mode 100644 index 000000000000..2895746cf13c --- /dev/null +++ b/data/software/ob/object-oriented-abstract-type-hierarchy.json @@ -0,0 +1,8 @@ +{ + "slug": "object-oriented-abstract-type-hierarchy", + "name": "Object-oriented Abstract Type Hierarchy", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7075012" + ] +} diff --git a/data/software/ob/object-oriented-data-technology.json b/data/software/ob/object-oriented-data-technology.json new file mode 100644 index 000000000000..d1eb87a58f0c --- /dev/null +++ b/data/software/ob/object-oriented-data-technology.json @@ -0,0 +1,17 @@ +{ + "slug": "object-oriented-data-technology", + "name": "Object Oriented Data Technology", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7075041" + ], + "developers": [ + "Apache Software Foundation" + ], + "programming_languages": [ + "Java" + ], + "licenses": [ + "Apache License" + ] +} diff --git a/data/software/ob/objectdatabase.json b/data/software/ob/objectdatabase.json new file mode 100644 index 000000000000..be2989233764 --- /dev/null +++ b/data/software/ob/objectdatabase.json @@ -0,0 +1,8 @@ +{ + "slug": "objectdatabase", + "name": "ObjectDatabase++", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7075025" + ] +} diff --git a/data/software/ob/objectdb.json b/data/software/ob/objectdb.json new file mode 100644 index 000000000000..ea1db7c2cba9 --- /dev/null +++ b/data/software/ob/objectdb.json @@ -0,0 +1,14 @@ +{ + "slug": "objectdb", + "name": "ObjectDB", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7075024" + ], + "operating_systems": [ + "cross-platform" + ], + "programming_languages": [ + "Java" + ] +} diff --git a/data/software/ob/objective-vision.json b/data/software/ob/objective-vision.json new file mode 100644 index 000000000000..670678b75cb7 --- /dev/null +++ b/data/software/ob/objective-vision.json @@ -0,0 +1,9 @@ +{ + "slug": "objective-vision", + "name": "Objective vision", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28324885" + ], + "release_date": "2016-01-01" +} diff --git a/data/software/ob/objectivefs.json b/data/software/ob/objectivefs.json new file mode 100644 index 000000000000..619b71f6339f --- /dev/null +++ b/data/software/ob/objectivefs.json @@ -0,0 +1,8 @@ +{ + "slug": "objectivefs", + "name": "ObjectiveFS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22907428" + ] +} diff --git a/data/software/ob/objectstore.json b/data/software/ob/objectstore.json new file mode 100644 index 000000000000..6aad60575e4c --- /dev/null +++ b/data/software/ob/objectstore.json @@ -0,0 +1,12 @@ +{ + "slug": "objectstore", + "name": "ObjectStore", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7075028" + ], + "release_date": "1988-01-01", + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/ob/objectvision.json b/data/software/ob/objectvision.json new file mode 100644 index 000000000000..5e5789ec840f --- /dev/null +++ b/data/software/ob/objectvision.json @@ -0,0 +1,11 @@ +{ + "slug": "objectvision", + "name": "ObjectVision", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4045626" + ], + "developers": [ + "Borland" + ] +} diff --git a/data/software/ob/oblix.json b/data/software/ob/oblix.json new file mode 100644 index 000000000000..64508132777f --- /dev/null +++ b/data/software/ob/oblix.json @@ -0,0 +1,8 @@ +{ + "slug": "oblix", + "name": "Oblix", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7075216" + ] +} diff --git a/data/software/ob/obscuracam.json b/data/software/ob/obscuracam.json new file mode 100644 index 000000000000..3769bf297b1b --- /dev/null +++ b/data/software/ob/obscuracam.json @@ -0,0 +1,8 @@ +{ + "slug": "obscuracam", + "name": "ObscuraCam", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139760004" + ] +} diff --git a/data/software/ob/observer-xt.json b/data/software/ob/observer-xt.json new file mode 100644 index 000000000000..a1a88091efbe --- /dev/null +++ b/data/software/ob/observer-xt.json @@ -0,0 +1,14 @@ +{ + "slug": "observer-xt", + "name": "Observer XT", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105229754" + ], + "operating_systems": [ + "Microsoft Windows" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/oc/ocad.json b/data/software/oc/ocad.json new file mode 100644 index 000000000000..cde8a448ceea --- /dev/null +++ b/data/software/oc/ocad.json @@ -0,0 +1,14 @@ +{ + "slug": "ocad", + "name": "OCAD", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q491488" + ], + "operating_systems": [ + "Microsoft Windows" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/oc/ocarina.json b/data/software/oc/ocarina.json new file mode 100644 index 000000000000..7da50b21a000 --- /dev/null +++ b/data/software/oc/ocarina.json @@ -0,0 +1,8 @@ +{ + "slug": "ocarina", + "name": "Ocarina", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18355900" + ] +} diff --git a/data/software/oc/occa.json b/data/software/oc/occa.json new file mode 100644 index 000000000000..61f00a5ee409 --- /dev/null +++ b/data/software/oc/occa.json @@ -0,0 +1,14 @@ +{ + "slug": "occa", + "name": "OCCA", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124831839" + ], + "developers": [ + "David Medina" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/oc/ocean-data-view.json b/data/software/oc/ocean-data-view.json new file mode 100644 index 000000000000..24c7b2ec1262 --- /dev/null +++ b/data/software/oc/ocean-data-view.json @@ -0,0 +1,8 @@ +{ + "slug": "ocean-data-view", + "name": "Ocean Data View", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7075979" + ] +} diff --git a/data/software/oc/ocml.json b/data/software/oc/ocml.json new file mode 100644 index 000000000000..404dfcc2dc8f --- /dev/null +++ b/data/software/oc/ocml.json @@ -0,0 +1,8 @@ +{ + "slug": "ocml", + "name": "OCML", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7072369" + ] +} diff --git a/data/software/oc/ocr-in-indian-languages.json b/data/software/oc/ocr-in-indian-languages.json new file mode 100644 index 000000000000..5aa05ba3f367 --- /dev/null +++ b/data/software/oc/ocr-in-indian-languages.json @@ -0,0 +1,8 @@ +{ + "slug": "ocr-in-indian-languages", + "name": "OCR in Indian languages", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q29025550" + ] +} diff --git a/data/software/oc/ocr4all.json b/data/software/oc/ocr4all.json new file mode 100644 index 000000000000..2675d21fd6b3 --- /dev/null +++ b/data/software/oc/ocr4all.json @@ -0,0 +1,11 @@ +{ + "slug": "ocr4all", + "name": "OCR4all", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124347709" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/oc/ocsigen-start.json b/data/software/oc/ocsigen-start.json new file mode 100644 index 000000000000..ae6334be02e8 --- /dev/null +++ b/data/software/oc/ocsigen-start.json @@ -0,0 +1,8 @@ +{ + "slug": "ocsigen-start", + "name": "ocsigen-start", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975272" + ] +} diff --git a/data/software/oc/ocsigen-toolkit.json b/data/software/oc/ocsigen-toolkit.json new file mode 100644 index 000000000000..a661d852d1ee --- /dev/null +++ b/data/software/oc/ocsigen-toolkit.json @@ -0,0 +1,8 @@ +{ + "slug": "ocsigen-toolkit", + "name": "ocsigen-toolkit", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975273" + ] +} diff --git a/data/software/oc/ocsigenserver.json b/data/software/oc/ocsigenserver.json new file mode 100644 index 000000000000..600c3d19c484 --- /dev/null +++ b/data/software/oc/ocsigenserver.json @@ -0,0 +1,8 @@ +{ + "slug": "ocsigenserver", + "name": "ocsigenserver", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975271" + ] +} diff --git a/data/software/oc/octamed.json b/data/software/oc/octamed.json new file mode 100644 index 000000000000..0f03067ac910 --- /dev/null +++ b/data/software/oc/octamed.json @@ -0,0 +1,11 @@ +{ + "slug": "octamed", + "name": "OctaMED", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1292903" + ], + "operating_systems": [ + "AmigaOS" + ] +} diff --git a/data/software/oc/octane-render.json b/data/software/oc/octane-render.json new file mode 100644 index 000000000000..b7858b2e4ff3 --- /dev/null +++ b/data/software/oc/octane-render.json @@ -0,0 +1,21 @@ +{ + "slug": "octane-render", + "name": "Octane Render", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7076747" + ], + "release_date": "2009-01-01", + "developers": [ + "OTOY" + ], + "operating_systems": [ + "iOS", + "macOS", + "Microsoft Windows" + ], + "programming_languages": [ + "Metal", + "CUDA" + ] +} diff --git a/data/software/oc/octomap.json b/data/software/oc/octomap.json new file mode 100644 index 000000000000..ab795fc862ec --- /dev/null +++ b/data/software/oc/octomap.json @@ -0,0 +1,8 @@ +{ + "slug": "octomap", + "name": "octomap", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975275" + ] +} diff --git a/data/software/oc/octopi.json b/data/software/oc/octopi.json new file mode 100644 index 000000000000..0d2ade22f2bc --- /dev/null +++ b/data/software/oc/octopi.json @@ -0,0 +1,11 @@ +{ + "slug": "octopi", + "name": "Octopi", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122900277" + ], + "licenses": [ + "GNU General Public License, version 2.0" + ] +} diff --git a/data/software/oc/octoprint.json b/data/software/oc/octoprint.json new file mode 100644 index 000000000000..156e17646d0b --- /dev/null +++ b/data/software/oc/octoprint.json @@ -0,0 +1,12 @@ +{ + "slug": "octoprint", + "name": "OctoPrint", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63285356" + ], + "release_date": "2011-01-01", + "programming_languages": [ + "Python" + ] +} diff --git a/data/software/oc/oculus-quill.json b/data/software/oc/oculus-quill.json new file mode 100644 index 000000000000..c6703e19c5b7 --- /dev/null +++ b/data/software/oc/oculus-quill.json @@ -0,0 +1,8 @@ +{ + "slug": "oculus-quill", + "name": "Oculus Quill", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60751718" + ] +} diff --git a/data/software/od/odbc-administrator.json b/data/software/od/odbc-administrator.json new file mode 100644 index 000000000000..e2f88a7e7f91 --- /dev/null +++ b/data/software/od/odbc-administrator.json @@ -0,0 +1,11 @@ +{ + "slug": "odbc-administrator", + "name": "ODBC Administrator", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7072415" + ], + "developers": [ + "Apple Inc." + ] +} diff --git a/data/software/od/odigo-messenger.json b/data/software/od/odigo-messenger.json new file mode 100644 index 000000000000..ad54f98167ac --- /dev/null +++ b/data/software/od/odigo-messenger.json @@ -0,0 +1,11 @@ +{ + "slug": "odigo-messenger", + "name": "Odigo Messenger", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1984171" + ], + "developers": [ + "Comverse" + ] +} diff --git a/data/software/od/odin.json b/data/software/od/odin.json new file mode 100644 index 000000000000..e3e0bd3e7146 --- /dev/null +++ b/data/software/od/odin.json @@ -0,0 +1,14 @@ +{ + "slug": "odin", + "name": "Odin", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q19599499" + ], + "developers": [ + "Samsung Electronics" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/od/odk.json b/data/software/od/odk.json new file mode 100644 index 000000000000..fb3e9888e055 --- /dev/null +++ b/data/software/od/odk.json @@ -0,0 +1,11 @@ +{ + "slug": "odk", + "name": "ODK", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q56291130" + ], + "developers": [ + "Gaetano Borriello" + ] +} diff --git a/data/software/od/odma.json b/data/software/od/odma.json new file mode 100644 index 000000000000..38c99239bf01 --- /dev/null +++ b/data/software/od/odma.json @@ -0,0 +1,11 @@ +{ + "slug": "odma", + "name": "ODMA", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2025649" + ], + "licenses": [ + "Open Document Management API License 1.0" + ] +} diff --git a/data/software/od/odoshield.json b/data/software/od/odoshield.json new file mode 100644 index 000000000000..d58f4421badf --- /dev/null +++ b/data/software/od/odoshield.json @@ -0,0 +1,11 @@ +{ + "slug": "odoshield", + "name": "OdoShield", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138834316" + ], + "developers": [ + "CarArth" + ] +} diff --git a/data/software/od/odt2txt.json b/data/software/od/odt2txt.json new file mode 100644 index 000000000000..0c2d19b42fbe --- /dev/null +++ b/data/software/od/odt2txt.json @@ -0,0 +1,14 @@ +{ + "slug": "odt2txt", + "name": "odt2txt", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62855556" + ], + "operating_systems": [ + "cross-platform" + ], + "licenses": [ + "GNU General Public License, version 2.0" + ] +} diff --git a/data/software/oe/oe-cake.json b/data/software/oe/oe-cake.json new file mode 100644 index 000000000000..57f3ac886722 --- /dev/null +++ b/data/software/oe/oe-cake.json @@ -0,0 +1,11 @@ +{ + "slug": "oe-cake", + "name": "OE-Cake!", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7072440" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/oe/oelib.json b/data/software/oe/oelib.json new file mode 100644 index 000000000000..cfd0db4faf30 --- /dev/null +++ b/data/software/oe/oelib.json @@ -0,0 +1,8 @@ +{ + "slug": "oelib", + "name": "OELib", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7072452" + ] +} diff --git a/data/software/of/off-by-one.json b/data/software/of/off-by-one.json new file mode 100644 index 000000000000..0b4f2b93491c --- /dev/null +++ b/data/software/of/off-by-one.json @@ -0,0 +1,8 @@ +{ + "slug": "off-by-one", + "name": "Off By One", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6049197" + ] +} diff --git a/data/software/of/office-2004-for-mac.json b/data/software/of/office-2004-for-mac.json new file mode 100644 index 000000000000..2c012da90200 --- /dev/null +++ b/data/software/of/office-2004-for-mac.json @@ -0,0 +1,11 @@ +{ + "slug": "office-2004-for-mac", + "name": "Office 2004 for Mac", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q391444" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/of/office-forms.json b/data/software/of/office-forms.json new file mode 100644 index 000000000000..ea166eccc83d --- /dev/null +++ b/data/software/of/office-forms.json @@ -0,0 +1,8 @@ +{ + "slug": "office-forms", + "name": "Office Forms", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q27536891" + ] +} diff --git a/data/software/of/office-genuine-advantage.json b/data/software/of/office-genuine-advantage.json new file mode 100644 index 000000000000..26f6b2b055d7 --- /dev/null +++ b/data/software/of/office-genuine-advantage.json @@ -0,0 +1,11 @@ +{ + "slug": "office-genuine-advantage", + "name": "Office Genuine Advantage", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3026201" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/of/officeweb.json b/data/software/of/officeweb.json new file mode 100644 index 000000000000..71ae80744d49 --- /dev/null +++ b/data/software/of/officeweb.json @@ -0,0 +1,15 @@ +{ + "slug": "officeweb", + "name": "Officeweb", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138410405" + ], + "developers": [ + "Alexander Dennhoven" + ], + "programming_languages": [ + "HTML", + "Cascading Style Sheets" + ] +} diff --git a/data/software/of/ofork.json b/data/software/of/ofork.json new file mode 100644 index 000000000000..dbe7d2dc99ce --- /dev/null +++ b/data/software/of/ofork.json @@ -0,0 +1,8 @@ +{ + "slug": "ofork", + "name": "OFORK", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139597225" + ] +} diff --git a/data/software/og/ogmrip.json b/data/software/og/ogmrip.json new file mode 100644 index 000000000000..acfc47413194 --- /dev/null +++ b/data/software/og/ogmrip.json @@ -0,0 +1,8 @@ +{ + "slug": "ogmrip", + "name": "OGMRip", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62855549" + ] +} diff --git a/data/software/og/ogmtools.json b/data/software/og/ogmtools.json new file mode 100644 index 000000000000..1b418c0a9365 --- /dev/null +++ b/data/software/og/ogmtools.json @@ -0,0 +1,8 @@ +{ + "slug": "ogmtools", + "name": "ogmtools", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62855536" + ] +} diff --git a/data/software/oh/oh-my-zsh.json b/data/software/oh/oh-my-zsh.json new file mode 100644 index 000000000000..f3fdfbcebd7b --- /dev/null +++ b/data/software/oh/oh-my-zsh.json @@ -0,0 +1,17 @@ +{ + "slug": "oh-my-zsh", + "name": "Oh My Zsh", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115958819" + ], + "operating_systems": [ + "Unix-like operating system" + ], + "programming_languages": [ + "shell script" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/oi/oiled.json b/data/software/oi/oiled.json new file mode 100644 index 000000000000..7fc809bec966 --- /dev/null +++ b/data/software/oi/oiled.json @@ -0,0 +1,8 @@ +{ + "slug": "oiled", + "name": "OilEd", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q9371084" + ] +} diff --git a/data/software/oi/oinkmaster.json b/data/software/oi/oinkmaster.json new file mode 100644 index 000000000000..4e2ae35cbae2 --- /dev/null +++ b/data/software/oi/oinkmaster.json @@ -0,0 +1,8 @@ +{ + "slug": "oinkmaster", + "name": "oinkmaster", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62855505" + ] +} diff --git a/data/software/ok/okapi-framework.json b/data/software/ok/okapi-framework.json new file mode 100644 index 000000000000..547e1044f111 --- /dev/null +++ b/data/software/ok/okapi-framework.json @@ -0,0 +1,17 @@ +{ + "slug": "okapi-framework", + "name": "Okapi Framework", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5970194" + ], + "operating_systems": [ + "cross-platform" + ], + "programming_languages": [ + "Java" + ], + "licenses": [ + "Apache License" + ] +} diff --git a/data/software/ok/oki-common-lisp.json b/data/software/ok/oki-common-lisp.json new file mode 100644 index 000000000000..6ae70deed38d --- /dev/null +++ b/data/software/ok/oki-common-lisp.json @@ -0,0 +1,13 @@ +{ + "slug": "oki-common-lisp", + "name": "OKI Common Lisp", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106334825" + ], + "operating_systems": [ + "OKI UX", + "SunOS", + "HP-UX" + ] +} diff --git a/data/software/ok/okopipi.json b/data/software/ok/okopipi.json new file mode 100644 index 000000000000..efae9cc0fa5b --- /dev/null +++ b/data/software/ok/okopipi.json @@ -0,0 +1,8 @@ +{ + "slug": "okopipi", + "name": "Okopipi", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7082513" + ] +} diff --git a/data/software/ol/old-bailey-data-warehousing-interface.json b/data/software/ol/old-bailey-data-warehousing-interface.json new file mode 100644 index 000000000000..771c41c77b62 --- /dev/null +++ b/data/software/ol/old-bailey-data-warehousing-interface.json @@ -0,0 +1,8 @@ +{ + "slug": "old-bailey-data-warehousing-interface", + "name": "Old Bailey Data Warehousing Interface", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084426" + ] +} diff --git a/data/software/ol/ole-db-provider.json b/data/software/ol/ole-db-provider.json new file mode 100644 index 000000000000..210708e52443 --- /dev/null +++ b/data/software/ol/ole-db-provider.json @@ -0,0 +1,8 @@ +{ + "slug": "ole-db-provider", + "name": "OLE DB provider", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7072646" + ] +} diff --git a/data/software/ol/olefa.json b/data/software/ol/olefa.json new file mode 100644 index 000000000000..8908256a28d2 --- /dev/null +++ b/data/software/ol/olefa.json @@ -0,0 +1,11 @@ +{ + "slug": "olefa", + "name": "OLEFA", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q13104404" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/ol/olga.json b/data/software/ol/olga.json new file mode 100644 index 000000000000..f4a9ac18735e --- /dev/null +++ b/data/software/ol/olga.json @@ -0,0 +1,15 @@ +{ + "slug": "olga", + "name": "OLGA", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7072656" + ], + "developers": [ + "SINTEF", + "Equinor ASA" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/ol/oli-analyzer.json b/data/software/ol/oli-analyzer.json new file mode 100644 index 000000000000..cbdcb85fa86d --- /dev/null +++ b/data/software/ol/oli-analyzer.json @@ -0,0 +1,11 @@ +{ + "slug": "oli-analyzer", + "name": "OLI Analyzer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7072667" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/ol/oligo-primer-analysis-software.json b/data/software/ol/oligo-primer-analysis-software.json new file mode 100644 index 000000000000..3c72b7ca2094 --- /dev/null +++ b/data/software/ol/oligo-primer-analysis-software.json @@ -0,0 +1,12 @@ +{ + "slug": "oligo-primer-analysis-software", + "name": "OLIGO Primer Analysis Software", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7072663" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/software/ol/olimexino-2560.json b/data/software/ol/olimexino-2560.json new file mode 100644 index 000000000000..1fd2d5d129a2 --- /dev/null +++ b/data/software/ol/olimexino-2560.json @@ -0,0 +1,13 @@ +{ + "slug": "olimexino-2560", + "name": "OLIMEXINO-2560", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139503371" + ], + "licenses": [ + "GNU General Public License, version 3.0", + "Creative Commons Attribution-ShareAlike 3.0 Unported", + "CERN Open Hardware Licence" + ] +} diff --git a/data/software/ol/olive-browser.json b/data/software/ol/olive-browser.json new file mode 100644 index 000000000000..bffc32f27973 --- /dev/null +++ b/data/software/ol/olive-browser.json @@ -0,0 +1,8 @@ +{ + "slug": "olive-browser", + "name": "Olive Browser", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16613486" + ] +} diff --git a/data/software/ol/oliver.json b/data/software/ol/oliver.json new file mode 100644 index 000000000000..9e6a2d69d4c3 --- /dev/null +++ b/data/software/ol/oliver.json @@ -0,0 +1,9 @@ +{ + "slug": "oliver", + "name": "Oliver", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25339808" + ], + "release_date": "2011-12-21" +} diff --git a/data/software/ol/oloneo-photoengine.json b/data/software/ol/oloneo-photoengine.json new file mode 100644 index 000000000000..abe0d047cbc5 --- /dev/null +++ b/data/software/ol/oloneo-photoengine.json @@ -0,0 +1,11 @@ +{ + "slug": "oloneo-photoengine", + "name": "Oloneo PhotoEngine", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17143270" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/ol/olvid.json b/data/software/ol/olvid.json new file mode 100644 index 000000000000..18c96b079cfd --- /dev/null +++ b/data/software/ol/olvid.json @@ -0,0 +1,14 @@ +{ + "slug": "olvid", + "name": "Olvid", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q96210429" + ], + "developers": [ + "Olvid" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/ol/olwm.json b/data/software/ol/olwm.json new file mode 100644 index 000000000000..43dbb29af8e5 --- /dev/null +++ b/data/software/ol/olwm.json @@ -0,0 +1,14 @@ +{ + "slug": "olwm", + "name": "olwm", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7088898" + ], + "developers": [ + "Sun Microsystems" + ], + "operating_systems": [ + "Solaris" + ] +} diff --git a/data/software/ol/olympus-master.json b/data/software/ol/olympus-master.json new file mode 100644 index 000000000000..bcbb810ec70f --- /dev/null +++ b/data/software/ol/olympus-master.json @@ -0,0 +1,8 @@ +{ + "slug": "olympus-master", + "name": "Olympus Master", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7089241" + ] +} diff --git a/data/software/om/om1.json b/data/software/om/om1.json new file mode 100644 index 000000000000..0576d08df497 --- /dev/null +++ b/data/software/om/om1.json @@ -0,0 +1,14 @@ +{ + "slug": "om1", + "name": "OM1", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135725692" + ], + "programming_languages": [ + "Python" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/om/omake.json b/data/software/om/omake.json new file mode 100644 index 000000000000..4c13ff976577 --- /dev/null +++ b/data/software/om/omake.json @@ -0,0 +1,8 @@ +{ + "slug": "omake", + "name": "OMake", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62855497" + ] +} diff --git a/data/software/om/omega.json b/data/software/om/omega.json new file mode 100644 index 000000000000..fc0572c276c2 --- /dev/null +++ b/data/software/om/omega.json @@ -0,0 +1,8 @@ +{ + "slug": "omega", + "name": "Omega", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2732484" + ] +} diff --git a/data/software/om/omeka-s.json b/data/software/om/omeka-s.json new file mode 100644 index 000000000000..2b34c123a27a --- /dev/null +++ b/data/software/om/omeka-s.json @@ -0,0 +1,14 @@ +{ + "slug": "omeka-s", + "name": "Omeka S", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q98732070" + ], + "programming_languages": [ + "PHP" + ], + "licenses": [ + "GNU General Public License, version 3.0" + ] +} diff --git a/data/software/om/omeka.json b/data/software/om/omeka.json new file mode 100644 index 000000000000..6375e63dbb73 --- /dev/null +++ b/data/software/om/omeka.json @@ -0,0 +1,14 @@ +{ + "slug": "omeka", + "name": "Omeka", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3524651" + ], + "developers": [ + "Corporation for Digital Scholarship" + ], + "programming_languages": [ + "PHP" + ] +} diff --git a/data/software/om/omero.json b/data/software/om/omero.json new file mode 100644 index 000000000000..a6736153de8a --- /dev/null +++ b/data/software/om/omero.json @@ -0,0 +1,8 @@ +{ + "slug": "omero", + "name": "OMERO", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126595695" + ] +} diff --git a/data/software/om/omgfixmd.json b/data/software/om/omgfixmd.json new file mode 100644 index 000000000000..330b68eeb90a --- /dev/null +++ b/data/software/om/omgfixmd.json @@ -0,0 +1,8 @@ +{ + "slug": "omgfixmd", + "name": "OMGfixMD", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139619034" + ] +} diff --git a/data/software/om/omii-uk.json b/data/software/om/omii-uk.json new file mode 100644 index 000000000000..9211f7923610 --- /dev/null +++ b/data/software/om/omii-uk.json @@ -0,0 +1,8 @@ +{ + "slug": "omii-uk", + "name": "OMII-UK", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7072723" + ] +} diff --git a/data/software/om/omisego.json b/data/software/om/omisego.json new file mode 100644 index 000000000000..aff2a2ca1c18 --- /dev/null +++ b/data/software/om/omisego.json @@ -0,0 +1,8 @@ +{ + "slug": "omisego", + "name": "OmiseGO", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q45231354" + ] +} diff --git a/data/software/om/omnidictionary.json b/data/software/om/omnidictionary.json new file mode 100644 index 000000000000..18c0166f322c --- /dev/null +++ b/data/software/om/omnidictionary.json @@ -0,0 +1,14 @@ +{ + "slug": "omnidictionary", + "name": "OmniDictionary", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7090307" + ], + "developers": [ + "The Omni Group" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/om/omnidisksweeper.json b/data/software/om/omnidisksweeper.json new file mode 100644 index 000000000000..80a34c657011 --- /dev/null +++ b/data/software/om/omnidisksweeper.json @@ -0,0 +1,14 @@ +{ + "slug": "omnidisksweeper", + "name": "OmniDiskSweeper", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7090309" + ], + "developers": [ + "The Omni Group" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/om/omnifocus.json b/data/software/om/omnifocus.json new file mode 100644 index 000000000000..a9e4088b0c7d --- /dev/null +++ b/data/software/om/omnifocus.json @@ -0,0 +1,8 @@ +{ + "slug": "omnifocus", + "name": "OmniFocus", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1480798" + ] +} diff --git a/data/software/om/omnigraphsketcher.json b/data/software/om/omnigraphsketcher.json new file mode 100644 index 000000000000..8e4023f42a1f --- /dev/null +++ b/data/software/om/omnigraphsketcher.json @@ -0,0 +1,8 @@ +{ + "slug": "omnigraphsketcher", + "name": "OmniGraphSketcher", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131904814" + ] +} diff --git a/data/software/om/omniorb.json b/data/software/om/omniorb.json new file mode 100644 index 000000000000..a30f5e934e37 --- /dev/null +++ b/data/software/om/omniorb.json @@ -0,0 +1,8 @@ +{ + "slug": "omniorb", + "name": "omniORB", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62855480" + ] +} diff --git a/data/software/om/omnioutliner.json b/data/software/om/omnioutliner.json new file mode 100644 index 000000000000..abc323dc69aa --- /dev/null +++ b/data/software/om/omnioutliner.json @@ -0,0 +1,14 @@ +{ + "slug": "omnioutliner", + "name": "OmniOutliner", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2023426" + ], + "developers": [ + "The Omni Group" + ], + "operating_systems": [ + "macOS" + ] +} diff --git a/data/software/om/omnipage-pro-12.json b/data/software/om/omnipage-pro-12.json new file mode 100644 index 000000000000..ac233f7bf049 --- /dev/null +++ b/data/software/om/omnipage-pro-12.json @@ -0,0 +1,15 @@ +{ + "slug": "omnipage-pro-12", + "name": "OmniPage Pro 12", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108837791" + ], + "release_date": "2002-01-01", + "developers": [ + "ScanSoft, Inc." + ], + "operating_systems": [ + "Windows NT 4.0" + ] +} diff --git a/data/software/om/omnipage.json b/data/software/om/omnipage.json new file mode 100644 index 000000000000..42e1327301c1 --- /dev/null +++ b/data/software/om/omnipage.json @@ -0,0 +1,12 @@ +{ + "slug": "omnipage", + "name": "OmniPage", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3227436" + ], + "developers": [ + "Caere Corporation", + "Nuance Communications" + ] +} diff --git a/data/software/om/omniplan.json b/data/software/om/omniplan.json new file mode 100644 index 000000000000..69d10341a28b --- /dev/null +++ b/data/software/om/omniplan.json @@ -0,0 +1,15 @@ +{ + "slug": "omniplan", + "name": "OmniPlan", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7090314" + ], + "developers": [ + "The Omni Group" + ], + "operating_systems": [ + "iOS", + "macOS" + ] +} diff --git a/data/software/om/omnissa-horizon.json b/data/software/om/omnissa-horizon.json new file mode 100644 index 000000000000..067606712101 --- /dev/null +++ b/data/software/om/omnissa-horizon.json @@ -0,0 +1,15 @@ +{ + "slug": "omnissa-horizon", + "name": "Omnissa Horizon", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4052548" + ], + "developers": [ + "VMware" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/software/om/omnitracker.json b/data/software/om/omnitracker.json new file mode 100644 index 000000000000..a542c047b784 --- /dev/null +++ b/data/software/om/omnitracker.json @@ -0,0 +1,11 @@ +{ + "slug": "omnitracker", + "name": "Omnitracker", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17325534" + ], + "developers": [ + "Omninet" + ] +} diff --git a/data/software/om/ompl.json b/data/software/om/ompl.json new file mode 100644 index 000000000000..3c0419bba627 --- /dev/null +++ b/data/software/om/ompl.json @@ -0,0 +1,8 @@ +{ + "slug": "ompl", + "name": "OMPL", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17105089" + ] +} diff --git a/data/software/on/on-demand.json b/data/software/on/on-demand.json new file mode 100644 index 000000000000..f9ead0565fcc --- /dev/null +++ b/data/software/on/on-demand.json @@ -0,0 +1,12 @@ +{ + "slug": "on-demand", + "name": "On Demand", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7090948" + ], + "release_date": "2007-03-27", + "developers": [ + "Sky UK" + ] +} diff --git a/data/software/on/onapp.json b/data/software/on/onapp.json new file mode 100644 index 000000000000..b8e9dbf8570e --- /dev/null +++ b/data/software/on/onapp.json @@ -0,0 +1,12 @@ +{ + "slug": "onapp", + "name": "OnApp", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7090851" + ], + "release_date": "2010-01-01", + "developers": [ + "OnApp Limited" + ] +} diff --git a/data/software/on/onb-jupyter-notebooks.json b/data/software/on/onb-jupyter-notebooks.json new file mode 100644 index 000000000000..2e003d0bfcf8 --- /dev/null +++ b/data/software/on/onb-jupyter-notebooks.json @@ -0,0 +1,11 @@ +{ + "slug": "onb-jupyter-notebooks", + "name": "ONB Jupyter Notebooks", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123852539" + ], + "licenses": [ + "GNU General Public License" + ] +} diff --git a/data/software/on/one-os.json b/data/software/on/one-os.json new file mode 100644 index 000000000000..5d48948d8b52 --- /dev/null +++ b/data/software/on/one-os.json @@ -0,0 +1,17 @@ +{ + "slug": "one-os", + "name": "One-OS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140332039" + ], + "developers": [ + "KMS Mobility Solutions GmbH" + ], + "operating_systems": [ + "web browser" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/on/one-ui.json b/data/software/on/one-ui.json new file mode 100644 index 000000000000..b70a4f093129 --- /dev/null +++ b/data/software/on/one-ui.json @@ -0,0 +1,11 @@ +{ + "slug": "one-ui", + "name": "One UI", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60220726" + ], + "developers": [ + "Samsung Electronics" + ] +} diff --git a/data/software/on/onepager-pro.json b/data/software/on/onepager-pro.json new file mode 100644 index 000000000000..b0439d575a5f --- /dev/null +++ b/data/software/on/onepager-pro.json @@ -0,0 +1,8 @@ +{ + "slug": "onepager-pro", + "name": "Onepager Pro", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7093729" + ] +} diff --git a/data/software/on/onesis.json b/data/software/on/onesis.json new file mode 100644 index 000000000000..74c2f812693e --- /dev/null +++ b/data/software/on/onesis.json @@ -0,0 +1,11 @@ +{ + "slug": "onesis", + "name": "oneSIS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7092389" + ], + "developers": [ + "Sandia National Laboratories" + ] +} diff --git a/data/software/on/onion.json b/data/software/on/onion.json new file mode 100644 index 000000000000..3bb12d9befbb --- /dev/null +++ b/data/software/on/onion.json @@ -0,0 +1,8 @@ +{ + "slug": "onion", + "name": "onion", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975277" + ] +} diff --git a/data/software/on/online-complex-processing.json b/data/software/on/online-complex-processing.json new file mode 100644 index 000000000000..3546b2ee6995 --- /dev/null +++ b/data/software/on/online-complex-processing.json @@ -0,0 +1,8 @@ +{ + "slug": "online-complex-processing", + "name": "online complex processing", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4335184" + ] +} diff --git a/data/software/on/online-quran-project.json b/data/software/on/online-quran-project.json new file mode 100644 index 000000000000..f9190ede6f6b --- /dev/null +++ b/data/software/on/online-quran-project.json @@ -0,0 +1,8 @@ +{ + "slug": "online-quran-project", + "name": "Online Quran Project", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4119863" + ] +} diff --git a/data/software/on/onlinefamily-norton.json b/data/software/on/onlinefamily-norton.json new file mode 100644 index 000000000000..9149c4b03bb5 --- /dev/null +++ b/data/software/on/onlinefamily-norton.json @@ -0,0 +1,11 @@ +{ + "slug": "onlinefamily-norton", + "name": "OnlineFamily.Norton", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7093991" + ], + "developers": [ + "Gen Digital" + ] +} diff --git a/data/software/on/onlinehpc.json b/data/software/on/onlinehpc.json new file mode 100644 index 000000000000..5636122afba9 --- /dev/null +++ b/data/software/on/onlinehpc.json @@ -0,0 +1,18 @@ +{ + "slug": "onlinehpc", + "name": "OnlineHPC", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16975197" + ], + "developers": [ + "OnlineHPC" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [ + "Java" + ] +} diff --git a/data/software/on/onodo.json b/data/software/on/onodo.json new file mode 100644 index 000000000000..ee75677eb620 --- /dev/null +++ b/data/software/on/onodo.json @@ -0,0 +1,8 @@ +{ + "slug": "onodo", + "name": "Onodo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084428" + ] +} diff --git a/data/software/on/onsen-ui.json b/data/software/on/onsen-ui.json new file mode 100644 index 000000000000..b596042af344 --- /dev/null +++ b/data/software/on/onsen-ui.json @@ -0,0 +1,12 @@ +{ + "slug": "onsen-ui", + "name": "Onsen UI", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28448043" + ], + "release_date": "2013-01-01", + "licenses": [ + "Apache License" + ] +} diff --git a/data/software/on/ontario-prevention-clinic.json b/data/software/on/ontario-prevention-clinic.json new file mode 100644 index 000000000000..a8257a169527 --- /dev/null +++ b/data/software/on/ontario-prevention-clinic.json @@ -0,0 +1,11 @@ +{ + "slug": "ontario-prevention-clinic", + "name": "Ontario Prevention Clinic", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106414761" + ], + "operating_systems": [ + "iOS" + ] +} diff --git a/data/software/on/ontime.json b/data/software/on/ontime.json new file mode 100644 index 000000000000..79639c9aa01c --- /dev/null +++ b/data/software/on/ontime.json @@ -0,0 +1,8 @@ +{ + "slug": "ontime", + "name": "OnTime", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7090870" + ] +} diff --git a/data/software/on/ontology-quality-assessment.json b/data/software/on/ontology-quality-assessment.json new file mode 100644 index 000000000000..705b4dc5a2d9 --- /dev/null +++ b/data/software/on/ontology-quality-assessment.json @@ -0,0 +1,14 @@ +{ + "slug": "ontology-quality-assessment", + "name": "Ontology Quality Assessment", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135641357" + ], + "programming_languages": [ + "Python" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/on/ontolutils.json b/data/software/on/ontolutils.json new file mode 100644 index 000000000000..065c5c95f467 --- /dev/null +++ b/data/software/on/ontolutils.json @@ -0,0 +1,14 @@ +{ + "slug": "ontolutils", + "name": "ontolutils", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131448345" + ], + "programming_languages": [ + "Python" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/on/ontop.json b/data/software/on/ontop.json new file mode 100644 index 000000000000..5e6168db8aed --- /dev/null +++ b/data/software/on/ontop.json @@ -0,0 +1,21 @@ +{ + "slug": "ontop", + "name": "ontop", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q56861590" + ], + "developers": [ + "Ontopic", + "Free University of Bozen-Bolzano" + ], + "programming_languages": [ + "Java" + ], + "licenses": [ + "Apache Software License 2.0" + ], + "genres": [ + "graphical user interface" + ] +} diff --git a/data/software/on/ontoviz.json b/data/software/on/ontoviz.json new file mode 100644 index 000000000000..1de27fe2bd8d --- /dev/null +++ b/data/software/on/ontoviz.json @@ -0,0 +1,8 @@ +{ + "slug": "ontoviz", + "name": "OntoViz", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084430" + ] +} diff --git a/data/software/on/onyx.json b/data/software/on/onyx.json new file mode 100644 index 000000000000..351cec63d1ef --- /dev/null +++ b/data/software/on/onyx.json @@ -0,0 +1,14 @@ +{ + "slug": "onyx", + "name": "OnyX", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q955843" + ], + "operating_systems": [ + "macOS" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/oo/oodle-sdk.json b/data/software/oo/oodle-sdk.json new file mode 100644 index 000000000000..3b33ac4a5758 --- /dev/null +++ b/data/software/oo/oodle-sdk.json @@ -0,0 +1,11 @@ +{ + "slug": "oodle-sdk", + "name": "Oodle SDK", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117326991" + ], + "developers": [ + "Epic Games Tools" + ] +} diff --git a/data/software/op/opal.json b/data/software/op/opal.json new file mode 100644 index 000000000000..54278d847171 --- /dev/null +++ b/data/software/op/opal.json @@ -0,0 +1,8 @@ +{ + "slug": "opal", + "name": "OPAL", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7072802" + ] +} diff --git a/data/software/op/opals.json b/data/software/op/opals.json new file mode 100644 index 000000000000..0d68f719c064 --- /dev/null +++ b/data/software/op/opals.json @@ -0,0 +1,21 @@ +{ + "slug": "opals", + "name": "OPALS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q29364570" + ], + "developers": [ + "TU Wien" + ], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [ + "Python", + "MATLAB" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/op/opaque-binary-blob.json b/data/software/op/opaque-binary-blob.json new file mode 100644 index 000000000000..8db18b389f6b --- /dev/null +++ b/data/software/op/opaque-binary-blob.json @@ -0,0 +1,8 @@ +{ + "slug": "opaque-binary-blob", + "name": "Opaque binary blob", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7095587" + ] +} diff --git a/data/software/op/opaws.json b/data/software/op/opaws.json new file mode 100644 index 000000000000..aeac9a689798 --- /dev/null +++ b/data/software/op/opaws.json @@ -0,0 +1,12 @@ +{ + "slug": "opaws", + "name": "OPAWS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117319524" + ], + "developers": [ + "Louis Wicker", + "David Dowell" + ] +} diff --git a/data/software/op/opcol.json b/data/software/op/opcol.json new file mode 100644 index 000000000000..ed9fc96be824 --- /dev/null +++ b/data/software/op/opcol.json @@ -0,0 +1,8 @@ +{ + "slug": "opcol", + "name": "OPCOL", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084431" + ] +} diff --git a/data/software/op/open-3d-engine.json b/data/software/op/open-3d-engine.json new file mode 100644 index 000000000000..5ce38a3e00d1 --- /dev/null +++ b/data/software/op/open-3d-engine.json @@ -0,0 +1,20 @@ +{ + "slug": "open-3d-engine", + "name": "Open 3D Engine", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107610458" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [ + "Python", + "Lua" + ], + "licenses": [ + "Apache Software License 2.0", + "MIT License" + ] +} diff --git a/data/software/op/open-assistant.json b/data/software/op/open-assistant.json new file mode 100644 index 000000000000..ac2f4631cb9e --- /dev/null +++ b/data/software/op/open-assistant.json @@ -0,0 +1,8 @@ +{ + "slug": "open-assistant", + "name": "Open Assistant", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121590491" + ] +} diff --git a/data/software/op/open-attribute.json b/data/software/op/open-attribute.json new file mode 100644 index 000000000000..b759bf8e5f3d --- /dev/null +++ b/data/software/op/open-attribute.json @@ -0,0 +1,8 @@ +{ + "slug": "open-attribute", + "name": "Open Attribute", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084433" + ] +} diff --git a/data/software/op/open-brush.json b/data/software/op/open-brush.json new file mode 100644 index 000000000000..13463b9c5c0d --- /dev/null +++ b/data/software/op/open-brush.json @@ -0,0 +1,15 @@ +{ + "slug": "open-brush", + "name": "Open Brush", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107158460" + ], + "release_date": "2021-06-08", + "licenses": [ + "Apache Software License 2.0" + ], + "genres": [ + "casual game" + ] +} diff --git a/data/software/op/open-cobalt.json b/data/software/op/open-cobalt.json new file mode 100644 index 000000000000..67ffcc5ac767 --- /dev/null +++ b/data/software/op/open-cobalt.json @@ -0,0 +1,18 @@ +{ + "slug": "open-cobalt", + "name": "Open Cobalt", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4045889" + ], + "release_date": "2009-01-01", + "operating_systems": [ + "macOS" + ], + "programming_languages": [ + "Squeak" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/op/open-code.json b/data/software/op/open-code.json new file mode 100644 index 000000000000..fa6c0f4e515a --- /dev/null +++ b/data/software/op/open-code.json @@ -0,0 +1,14 @@ +{ + "slug": "open-code", + "name": "Open Code", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105229756" + ], + "operating_systems": [ + "Microsoft Windows" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/op/open-collaboration-services.json b/data/software/op/open-collaboration-services.json new file mode 100644 index 000000000000..647a949fb3a2 --- /dev/null +++ b/data/software/op/open-collaboration-services.json @@ -0,0 +1,8 @@ +{ + "slug": "open-collaboration-services", + "name": "Open Collaboration Services", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2025628" + ] +} diff --git a/data/software/op/open-computer-forensics-architecture.json b/data/software/op/open-computer-forensics-architecture.json new file mode 100644 index 000000000000..0fba4bcd904a --- /dev/null +++ b/data/software/op/open-computer-forensics-architecture.json @@ -0,0 +1,11 @@ +{ + "slug": "open-computer-forensics-architecture", + "name": "Open Computer Forensics Architecture", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7095983" + ], + "developers": [ + "Korps landelijke politiediensten" + ] +} diff --git a/data/software/op/open-conference-systems.json b/data/software/op/open-conference-systems.json new file mode 100644 index 000000000000..1da13d6cd82c --- /dev/null +++ b/data/software/op/open-conference-systems.json @@ -0,0 +1,8 @@ +{ + "slug": "open-conference-systems", + "name": "Open Conference Systems", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6051240" + ] +} diff --git a/data/software/op/open-digitalbiomarkerdiscoverypipeline.json b/data/software/op/open-digitalbiomarkerdiscoverypipeline.json new file mode 100644 index 000000000000..8bab7eb7ea7b --- /dev/null +++ b/data/software/op/open-digitalbiomarkerdiscoverypipeline.json @@ -0,0 +1,8 @@ +{ + "slug": "open-digitalbiomarkerdiscoverypipeline", + "name": "Open DigitalBiomarkerDiscoveryPipeline", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113018309" + ] +} diff --git a/data/software/op/open-dylan.json b/data/software/op/open-dylan.json new file mode 100644 index 000000000000..2282d2c4278c --- /dev/null +++ b/data/software/op/open-dylan.json @@ -0,0 +1,8 @@ +{ + "slug": "open-dylan", + "name": "Open Dylan", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975300" + ] +} diff --git a/data/software/op/open-e-dss-v6.json b/data/software/op/open-e-dss-v6.json new file mode 100644 index 000000000000..7ee927f4378b --- /dev/null +++ b/data/software/op/open-e-dss-v6.json @@ -0,0 +1,8 @@ +{ + "slug": "open-e-dss-v6", + "name": "Open-E DSS V6", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7095686" + ] +} diff --git a/data/software/op/open-harvester-systems.json b/data/software/op/open-harvester-systems.json new file mode 100644 index 000000000000..0f9a1a58491f --- /dev/null +++ b/data/software/op/open-harvester-systems.json @@ -0,0 +1,8 @@ +{ + "slug": "open-harvester-systems", + "name": "Open Harvester Systems", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084435" + ] +} diff --git a/data/software/op/open-health-imaging-foundation-viewer.json b/data/software/op/open-health-imaging-foundation-viewer.json new file mode 100644 index 000000000000..4d6b9fe86936 --- /dev/null +++ b/data/software/op/open-health-imaging-foundation-viewer.json @@ -0,0 +1,14 @@ +{ + "slug": "open-health-imaging-foundation-viewer", + "name": "Open Health Imaging Foundation Viewer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113017667" + ], + "developers": [ + "Massachusetts General Hospital" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/op/open-jtag.json b/data/software/op/open-jtag.json new file mode 100644 index 000000000000..d9b3cc31dcb7 --- /dev/null +++ b/data/software/op/open-jtag.json @@ -0,0 +1,11 @@ +{ + "slug": "open-jtag", + "name": "Open JTAG", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7096104" + ], + "programming_languages": [ + "VHDL" + ] +} diff --git a/data/software/op/open-management-infrastructure.json b/data/software/op/open-management-infrastructure.json new file mode 100644 index 000000000000..e9c0e495afbb --- /dev/null +++ b/data/software/op/open-management-infrastructure.json @@ -0,0 +1,14 @@ +{ + "slug": "open-management-infrastructure", + "name": "Open Management Infrastructure", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16965944" + ], + "developers": [ + "The Open Group" + ], + "licenses": [ + "Apache License" + ] +} diff --git a/data/software/op/open-meteo.json b/data/software/op/open-meteo.json new file mode 100644 index 000000000000..2dee12520153 --- /dev/null +++ b/data/software/op/open-meteo.json @@ -0,0 +1,11 @@ +{ + "slug": "open-meteo", + "name": "Open-Meteo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131573004" + ], + "licenses": [ + "Creative Commons Attribution 4.0 International" + ] +} diff --git a/data/software/op/open-network-install-environment.json b/data/software/op/open-network-install-environment.json new file mode 100644 index 000000000000..91a3240c7bab --- /dev/null +++ b/data/software/op/open-network-install-environment.json @@ -0,0 +1,8 @@ +{ + "slug": "open-network-install-environment", + "name": "Open Network Install Environment", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25021537" + ] +} diff --git a/data/software/op/open-platform-architecture.json b/data/software/op/open-platform-architecture.json new file mode 100644 index 000000000000..b77a7db24589 --- /dev/null +++ b/data/software/op/open-platform-architecture.json @@ -0,0 +1,8 @@ +{ + "slug": "open-platform-architecture", + "name": "Open Platform Architecture", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7096161" + ] +} diff --git a/data/software/op/open-quantitative-structure-activity-property-relationship-app.json b/data/software/op/open-quantitative-structure-activity-property-relationship-app.json new file mode 100644 index 000000000000..cadf08b15bc4 --- /dev/null +++ b/data/software/op/open-quantitative-structure-activity-property-relationship-app.json @@ -0,0 +1,8 @@ +{ + "slug": "open-quantitative-structure-activity-property-relationship-app", + "name": "Open (Quantitative) Structure-activity/property Relationship App", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136437713" + ] +} diff --git a/data/software/op/open-rails.json b/data/software/op/open-rails.json new file mode 100644 index 000000000000..867ce6ab0faf --- /dev/null +++ b/data/software/op/open-rails.json @@ -0,0 +1,14 @@ +{ + "slug": "open-rails", + "name": "Open Rails", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q56414866" + ], + "licenses": [ + "GNU General Public License, version 3.0" + ], + "genres": [ + "train simulator" + ] +} diff --git a/data/software/op/open-science-community-starter-kit.json b/data/software/op/open-science-community-starter-kit.json new file mode 100644 index 000000000000..92534ad2fde1 --- /dev/null +++ b/data/software/op/open-science-community-starter-kit.json @@ -0,0 +1,11 @@ +{ + "slug": "open-science-community-starter-kit", + "name": "Open Science Community Starter Kit", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107143457" + ], + "developers": [ + "International Network of Open Science & Scholarship Communities" + ] +} diff --git a/data/software/op/open-source-brand.json b/data/software/op/open-source-brand.json new file mode 100644 index 000000000000..fe586e9e8bcf --- /dev/null +++ b/data/software/op/open-source-brand.json @@ -0,0 +1,8 @@ +{ + "slug": "open-source-brand", + "name": "Open source brand", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7096415" + ] +} diff --git a/data/software/op/open-source-chemistry-analysis-routines.json b/data/software/op/open-source-chemistry-analysis-routines.json new file mode 100644 index 000000000000..b1b05a50645b --- /dev/null +++ b/data/software/op/open-source-chemistry-analysis-routines.json @@ -0,0 +1,14 @@ +{ + "slug": "open-source-chemistry-analysis-routines", + "name": "Open-Source Chemistry Analysis Routines", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q133037490" + ], + "programming_languages": [ + "Java" + ], + "licenses": [ + "Artistic License 2.0" + ] +} diff --git a/data/software/op/open-source-cluster-application-resources.json b/data/software/op/open-source-cluster-application-resources.json new file mode 100644 index 000000000000..1a71431648f3 --- /dev/null +++ b/data/software/op/open-source-cluster-application-resources.json @@ -0,0 +1,8 @@ +{ + "slug": "open-source-cluster-application-resources", + "name": "Open Source Cluster Application Resources", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7096214" + ] +} diff --git a/data/software/op/open-source-console-for-real-time-acquisition.json b/data/software/op/open-source-console-for-real-time-acquisition.json new file mode 100644 index 000000000000..fc752fb24e53 --- /dev/null +++ b/data/software/op/open-source-console-for-real-time-acquisition.json @@ -0,0 +1,8 @@ +{ + "slug": "open-source-console-for-real-time-acquisition", + "name": "Open Source Console for Real-Time Acquisition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q97170704" + ] +} diff --git a/data/software/op/open-source-economics.json b/data/software/op/open-source-economics.json new file mode 100644 index 000000000000..9d758fc34e5c --- /dev/null +++ b/data/software/op/open-source-economics.json @@ -0,0 +1,8 @@ +{ + "slug": "open-source-economics", + "name": "open-source economics", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7095716" + ] +} diff --git a/data/software/op/open-source-in-kosovo.json b/data/software/op/open-source-in-kosovo.json new file mode 100644 index 000000000000..394cbc4f4c23 --- /dev/null +++ b/data/software/op/open-source-in-kosovo.json @@ -0,0 +1,8 @@ +{ + "slug": "open-source-in-kosovo", + "name": "Open source in Kosovo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16962072" + ] +} diff --git a/data/software/op/open-source-software-cd.json b/data/software/op/open-source-software-cd.json new file mode 100644 index 000000000000..0e18acd25ff1 --- /dev/null +++ b/data/software/op/open-source-software-cd.json @@ -0,0 +1,11 @@ +{ + "slug": "open-source-software-cd", + "name": "Open Source Software CD", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3883432" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/op/open-source-software-image-map.json b/data/software/op/open-source-software-image-map.json new file mode 100644 index 000000000000..4594c98e3c79 --- /dev/null +++ b/data/software/op/open-source-software-image-map.json @@ -0,0 +1,11 @@ +{ + "slug": "open-source-software-image-map", + "name": "Open Source Software Image Map", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108044530" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/op/open-specy.json b/data/software/op/open-specy.json new file mode 100644 index 000000000000..b9a5b054b98a --- /dev/null +++ b/data/software/op/open-specy.json @@ -0,0 +1,15 @@ +{ + "slug": "open-specy", + "name": "Open Specy", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113343294" + ], + "developers": [ + "Win Cowger", + "Zacharias Steinmetz" + ], + "licenses": [ + "Creative Commons Attribution 4.0 International" + ] +} diff --git a/data/software/op/open-system-engineering-environment.json b/data/software/op/open-system-engineering-environment.json new file mode 100644 index 000000000000..72625cde6eb2 --- /dev/null +++ b/data/software/op/open-system-engineering-environment.json @@ -0,0 +1,8 @@ +{ + "slug": "open-system-engineering-environment", + "name": "Open System Engineering Environment", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76168473" + ] +} diff --git a/data/software/op/open-systems-accounting-software.json b/data/software/op/open-systems-accounting-software.json new file mode 100644 index 000000000000..0fbe60c1ff7b --- /dev/null +++ b/data/software/op/open-systems-accounting-software.json @@ -0,0 +1,8 @@ +{ + "slug": "open-systems-accounting-software", + "name": "Open Systems Accounting Software", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7096248" + ] +} diff --git a/data/software/op/open-threat-exchange.json b/data/software/op/open-threat-exchange.json new file mode 100644 index 000000000000..a99bcf53f711 --- /dev/null +++ b/data/software/op/open-threat-exchange.json @@ -0,0 +1,11 @@ +{ + "slug": "open-threat-exchange", + "name": "Open Threat Exchange", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25245470" + ], + "developers": [ + "AT&T Cybersecurity" + ] +} diff --git a/data/software/op/open3dgc.json b/data/software/op/open3dgc.json new file mode 100644 index 000000000000..730683e980ff --- /dev/null +++ b/data/software/op/open3dgc.json @@ -0,0 +1,11 @@ +{ + "slug": "open3dgc", + "name": "Open3DGC", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116474863" + ], + "developers": [ + "AMD" + ] +} diff --git a/data/software/op/openai-codex.json b/data/software/op/openai-codex.json new file mode 100644 index 000000000000..1dbd04359aab --- /dev/null +++ b/data/software/op/openai-codex.json @@ -0,0 +1,11 @@ +{ + "slug": "openai-codex", + "name": "OpenAI Codex", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108582200" + ], + "developers": [ + "OpenAI" + ] +} diff --git a/data/software/op/openai-five.json b/data/software/op/openai-five.json new file mode 100644 index 000000000000..66e036b4ae6a --- /dev/null +++ b/data/software/op/openai-five.json @@ -0,0 +1,11 @@ +{ + "slug": "openai-five", + "name": "OpenAI Five", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60748043" + ], + "developers": [ + "OpenAI" + ] +} diff --git a/data/software/op/openai-operator.json b/data/software/op/openai-operator.json new file mode 100644 index 000000000000..565da905a2ae --- /dev/null +++ b/data/software/op/openai-operator.json @@ -0,0 +1,8 @@ +{ + "slug": "openai-operator", + "name": "OpenAI Operator", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q133504045" + ] +} diff --git a/data/software/op/openalpr.json b/data/software/op/openalpr.json new file mode 100644 index 000000000000..98df1cf697bf --- /dev/null +++ b/data/software/op/openalpr.json @@ -0,0 +1,8 @@ +{ + "slug": "openalpr", + "name": "OpenALPR", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q55080324" + ] +} diff --git a/data/software/op/openam.json b/data/software/op/openam.json new file mode 100644 index 000000000000..3ed2614a42ad --- /dev/null +++ b/data/software/op/openam.json @@ -0,0 +1,18 @@ +{ + "slug": "openam", + "name": "OpenAM", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q822258" + ], + "release_date": "2008-11-11", + "developers": [ + "Sun Microsystems" + ], + "programming_languages": [ + "Java" + ], + "licenses": [ + "Common Development and Distribution License" + ] +} diff --git a/data/software/op/openatlas.json b/data/software/op/openatlas.json new file mode 100644 index 000000000000..86fca5456022 --- /dev/null +++ b/data/software/op/openatlas.json @@ -0,0 +1,8 @@ +{ + "slug": "openatlas", + "name": "OpenAtlas", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084432" + ] +} diff --git a/data/software/op/openautonomy.json b/data/software/op/openautonomy.json new file mode 100644 index 000000000000..74a09f8d72a3 --- /dev/null +++ b/data/software/op/openautonomy.json @@ -0,0 +1,14 @@ +{ + "slug": "openautonomy", + "name": "OpenAutonomy", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17073059" + ], + "programming_languages": [ + "PHP" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/op/openbinder.json b/data/software/op/openbinder.json new file mode 100644 index 000000000000..7453f59ac86c --- /dev/null +++ b/data/software/op/openbinder.json @@ -0,0 +1,8 @@ +{ + "slug": "openbinder", + "name": "OpenBinder", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17121613" + ] +} diff --git a/data/software/op/openbis.json b/data/software/op/openbis.json new file mode 100644 index 000000000000..158f2826e174 --- /dev/null +++ b/data/software/op/openbis.json @@ -0,0 +1,8 @@ +{ + "slug": "openbis", + "name": "OpenBIS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106929673" + ] +} diff --git a/data/software/op/openbmc.json b/data/software/op/openbmc.json new file mode 100644 index 000000000000..b8761c725b9a --- /dev/null +++ b/data/software/op/openbmc.json @@ -0,0 +1,11 @@ +{ + "slug": "openbmc", + "name": "OpenBMC", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q55098958" + ], + "licenses": [ + "Apache License" + ] +} diff --git a/data/software/op/openbravo-pos.json b/data/software/op/openbravo-pos.json new file mode 100644 index 000000000000..6cbc0eed30ab --- /dev/null +++ b/data/software/op/openbravo-pos.json @@ -0,0 +1,11 @@ +{ + "slug": "openbravo-pos", + "name": "Openbravo POS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4045913" + ], + "developers": [ + "Openbravo" + ] +} diff --git a/data/software/op/openbravo.json b/data/software/op/openbravo.json new file mode 100644 index 000000000000..b2e7b6581d1d --- /dev/null +++ b/data/software/op/openbravo.json @@ -0,0 +1,14 @@ +{ + "slug": "openbravo", + "name": "Openbravo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1418609" + ], + "programming_languages": [ + "Java" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/op/opencard-framework.json b/data/software/op/opencard-framework.json new file mode 100644 index 000000000000..1adaef51fb72 --- /dev/null +++ b/data/software/op/opencard-framework.json @@ -0,0 +1,8 @@ +{ + "slug": "opencard-framework", + "name": "OpenCard Framework", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1138014" + ] +} diff --git a/data/software/op/opencc.json b/data/software/op/opencc.json new file mode 100644 index 000000000000..4b2f92fac148 --- /dev/null +++ b/data/software/op/opencc.json @@ -0,0 +1,8 @@ +{ + "slug": "opencc", + "name": "opencc", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127418907" + ] +} diff --git a/data/software/op/opencd.json b/data/software/op/opencd.json new file mode 100644 index 000000000000..ecbe2c48ee22 --- /dev/null +++ b/data/software/op/opencd.json @@ -0,0 +1,11 @@ +{ + "slug": "opencd", + "name": "OpenCD", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2714283" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/op/opencefadb.json b/data/software/op/opencefadb.json new file mode 100644 index 000000000000..8f090cd8df9f --- /dev/null +++ b/data/software/op/opencefadb.json @@ -0,0 +1,11 @@ +{ + "slug": "opencefadb", + "name": "openCeFaDB", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137885626" + ], + "licenses": [ + "GNU General Public License, version 3.0" + ] +} diff --git a/data/software/op/openchange.json b/data/software/op/openchange.json new file mode 100644 index 000000000000..e31373364589 --- /dev/null +++ b/data/software/op/openchange.json @@ -0,0 +1,8 @@ +{ + "slug": "openchange", + "name": "Openchange", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6051288" + ] +} diff --git a/data/software/op/openclinica.json b/data/software/op/openclinica.json new file mode 100644 index 000000000000..ad649a1d5c33 --- /dev/null +++ b/data/software/op/openclinica.json @@ -0,0 +1,8 @@ +{ + "slug": "openclinica", + "name": "Openclinica", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106919623" + ] +} diff --git a/data/software/op/opencloud.json b/data/software/op/opencloud.json new file mode 100644 index 000000000000..d9db66f70ad6 --- /dev/null +++ b/data/software/op/opencloud.json @@ -0,0 +1,17 @@ +{ + "slug": "opencloud", + "name": "OpenCloud", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139850776" + ], + "release_date": "2025-01-01", + "operating_systems": [ + "iOS", + "macOS", + "Microsoft Windows" + ], + "licenses": [ + "Apache License" + ] +} diff --git a/data/software/op/opencmis.json b/data/software/op/opencmis.json new file mode 100644 index 000000000000..95782f7240a4 --- /dev/null +++ b/data/software/op/opencmis.json @@ -0,0 +1,8 @@ +{ + "slug": "opencmis", + "name": "OpenCMIS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7095746" + ] +} diff --git a/data/software/op/openconf.json b/data/software/op/openconf.json new file mode 100644 index 000000000000..b08742567e7c --- /dev/null +++ b/data/software/op/openconf.json @@ -0,0 +1,11 @@ +{ + "slug": "openconf", + "name": "OpenConf", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7095759" + ], + "programming_languages": [ + "PHP" + ] +} diff --git a/data/software/op/opencore-auxiliary-tools.json b/data/software/op/opencore-auxiliary-tools.json new file mode 100644 index 000000000000..a6de6908fb02 --- /dev/null +++ b/data/software/op/opencore-auxiliary-tools.json @@ -0,0 +1,11 @@ +{ + "slug": "opencore-auxiliary-tools", + "name": "OpenCore Auxiliary Tools", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q133294383" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/op/opencpn-plugin-br24radar.json b/data/software/op/opencpn-plugin-br24radar.json new file mode 100644 index 000000000000..860d137500d0 --- /dev/null +++ b/data/software/op/opencpn-plugin-br24radar.json @@ -0,0 +1,8 @@ +{ + "slug": "opencpn-plugin-br24radar", + "name": "opencpn-plugin-br24radar", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975279" + ] +} diff --git a/data/software/op/opencpn-plugin-climatology.json b/data/software/op/opencpn-plugin-climatology.json new file mode 100644 index 000000000000..ca1643ec2508 --- /dev/null +++ b/data/software/op/opencpn-plugin-climatology.json @@ -0,0 +1,8 @@ +{ + "slug": "opencpn-plugin-climatology", + "name": "opencpn-plugin-climatology", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975280" + ] +} diff --git a/data/software/op/opencpn-plugin-dr.json b/data/software/op/opencpn-plugin-dr.json new file mode 100644 index 000000000000..662ea258f5e2 --- /dev/null +++ b/data/software/op/opencpn-plugin-dr.json @@ -0,0 +1,8 @@ +{ + "slug": "opencpn-plugin-dr", + "name": "opencpn-plugin-dr", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975281" + ] +} diff --git a/data/software/op/opencpn-plugin-findit.json b/data/software/op/opencpn-plugin-findit.json new file mode 100644 index 000000000000..a26389d604ed --- /dev/null +++ b/data/software/op/opencpn-plugin-findit.json @@ -0,0 +1,8 @@ +{ + "slug": "opencpn-plugin-findit", + "name": "opencpn-plugin-findit", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975282" + ] +} diff --git a/data/software/op/opencpn-plugin-gxradar.json b/data/software/op/opencpn-plugin-gxradar.json new file mode 100644 index 000000000000..d7e08daf765d --- /dev/null +++ b/data/software/op/opencpn-plugin-gxradar.json @@ -0,0 +1,8 @@ +{ + "slug": "opencpn-plugin-gxradar", + "name": "opencpn-plugin-gxradar", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975283" + ] +} diff --git a/data/software/op/opencpn-plugin-iacfleet.json b/data/software/op/opencpn-plugin-iacfleet.json new file mode 100644 index 000000000000..9af5fe4e466a --- /dev/null +++ b/data/software/op/opencpn-plugin-iacfleet.json @@ -0,0 +1,8 @@ +{ + "slug": "opencpn-plugin-iacfleet", + "name": "opencpn-plugin-iacfleet", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975284" + ] +} diff --git a/data/software/op/opencpn-plugin-launcher.json b/data/software/op/opencpn-plugin-launcher.json new file mode 100644 index 000000000000..256289214885 --- /dev/null +++ b/data/software/op/opencpn-plugin-launcher.json @@ -0,0 +1,8 @@ +{ + "slug": "opencpn-plugin-launcher", + "name": "opencpn-plugin-launcher", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975285" + ] +} diff --git a/data/software/op/opencpn-plugin-logbookkonni.json b/data/software/op/opencpn-plugin-logbookkonni.json new file mode 100644 index 000000000000..2780c6112ab2 --- /dev/null +++ b/data/software/op/opencpn-plugin-logbookkonni.json @@ -0,0 +1,8 @@ +{ + "slug": "opencpn-plugin-logbookkonni", + "name": "opencpn-plugin-logbookkonni", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975286" + ] +} diff --git a/data/software/op/opencpn-plugin-objsearch.json b/data/software/op/opencpn-plugin-objsearch.json new file mode 100644 index 000000000000..718ba0ed7e38 --- /dev/null +++ b/data/software/op/opencpn-plugin-objsearch.json @@ -0,0 +1,8 @@ +{ + "slug": "opencpn-plugin-objsearch", + "name": "opencpn-plugin-objsearch", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975287" + ] +} diff --git a/data/software/op/opencpn-plugin-ocpn-draw.json b/data/software/op/opencpn-plugin-ocpn-draw.json new file mode 100644 index 000000000000..ec38b5cdbece --- /dev/null +++ b/data/software/op/opencpn-plugin-ocpn-draw.json @@ -0,0 +1,8 @@ +{ + "slug": "opencpn-plugin-ocpn-draw", + "name": "opencpn-plugin-ocpn_draw", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975288" + ] +} diff --git a/data/software/op/opencpn-plugin-ocpndebugger.json b/data/software/op/opencpn-plugin-ocpndebugger.json new file mode 100644 index 000000000000..ec1f27d54dd0 --- /dev/null +++ b/data/software/op/opencpn-plugin-ocpndebugger.json @@ -0,0 +1,8 @@ +{ + "slug": "opencpn-plugin-ocpndebugger", + "name": "opencpn-plugin-ocpndebugger", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975289" + ] +} diff --git a/data/software/op/opencpn-plugin-otcurrent.json b/data/software/op/opencpn-plugin-otcurrent.json new file mode 100644 index 000000000000..0a34340efe09 --- /dev/null +++ b/data/software/op/opencpn-plugin-otcurrent.json @@ -0,0 +1,8 @@ +{ + "slug": "opencpn-plugin-otcurrent", + "name": "opencpn-plugin-otcurrent", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975290" + ] +} diff --git a/data/software/op/opencpn-plugin-polar.json b/data/software/op/opencpn-plugin-polar.json new file mode 100644 index 000000000000..eb3d5d5a8cdb --- /dev/null +++ b/data/software/op/opencpn-plugin-polar.json @@ -0,0 +1,8 @@ +{ + "slug": "opencpn-plugin-polar", + "name": "opencpn-plugin-polar", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975291" + ] +} diff --git a/data/software/op/opencpn-plugin-radar.json b/data/software/op/opencpn-plugin-radar.json new file mode 100644 index 000000000000..5423345d93df --- /dev/null +++ b/data/software/op/opencpn-plugin-radar.json @@ -0,0 +1,8 @@ +{ + "slug": "opencpn-plugin-radar", + "name": "opencpn-plugin-radar", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975292" + ] +} diff --git a/data/software/op/opencpn-plugin-route.json b/data/software/op/opencpn-plugin-route.json new file mode 100644 index 000000000000..a22b813505c1 --- /dev/null +++ b/data/software/op/opencpn-plugin-route.json @@ -0,0 +1,8 @@ +{ + "slug": "opencpn-plugin-route", + "name": "opencpn-plugin-route", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975293" + ] +} diff --git a/data/software/op/opencpn-plugin-squiddio.json b/data/software/op/opencpn-plugin-squiddio.json new file mode 100644 index 000000000000..6359e3c5d7ec --- /dev/null +++ b/data/software/op/opencpn-plugin-squiddio.json @@ -0,0 +1,8 @@ +{ + "slug": "opencpn-plugin-squiddio", + "name": "opencpn-plugin-squiddio", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975295" + ] +} diff --git a/data/software/op/opencpn-plugin-statusbar.json b/data/software/op/opencpn-plugin-statusbar.json new file mode 100644 index 000000000000..0ac13c7ddd93 --- /dev/null +++ b/data/software/op/opencpn-plugin-statusbar.json @@ -0,0 +1,8 @@ +{ + "slug": "opencpn-plugin-statusbar", + "name": "opencpn-plugin-statusbar", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975296" + ] +} diff --git a/data/software/op/opencpn-plugin-watchdog.json b/data/software/op/opencpn-plugin-watchdog.json new file mode 100644 index 000000000000..1a38bbe14cf1 --- /dev/null +++ b/data/software/op/opencpn-plugin-watchdog.json @@ -0,0 +1,8 @@ +{ + "slug": "opencpn-plugin-watchdog", + "name": "opencpn-plugin-watchdog", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975297" + ] +} diff --git a/data/software/op/opencpn-plugin-weather-routing.json b/data/software/op/opencpn-plugin-weather-routing.json new file mode 100644 index 000000000000..d5d83b3ff952 --- /dev/null +++ b/data/software/op/opencpn-plugin-weather-routing.json @@ -0,0 +1,8 @@ +{ + "slug": "opencpn-plugin-weather-routing", + "name": "opencpn-plugin-weather_routing", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975298" + ] +} diff --git a/data/software/op/opencpn-plugin-weatherfax.json b/data/software/op/opencpn-plugin-weatherfax.json new file mode 100644 index 000000000000..0e338d711fda --- /dev/null +++ b/data/software/op/opencpn-plugin-weatherfax.json @@ -0,0 +1,8 @@ +{ + "slug": "opencpn-plugin-weatherfax", + "name": "opencpn-plugin-weatherfax", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975299" + ] +} diff --git a/data/software/op/opencrg.json b/data/software/op/opencrg.json new file mode 100644 index 000000000000..4eebe5cc4747 --- /dev/null +++ b/data/software/op/opencrg.json @@ -0,0 +1,14 @@ +{ + "slug": "opencrg", + "name": "OpenCRG", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7095748" + ], + "developers": [ + "Mercedes-Benz Group" + ], + "licenses": [ + "Apache License" + ] +} diff --git a/data/software/op/openct.json b/data/software/op/openct.json new file mode 100644 index 000000000000..78f0d6d0740a --- /dev/null +++ b/data/software/op/openct.json @@ -0,0 +1,8 @@ +{ + "slug": "openct", + "name": "OpenCT", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127165312" + ] +} diff --git a/data/software/op/opendbx.json b/data/software/op/opendbx.json new file mode 100644 index 000000000000..64d2095d297d --- /dev/null +++ b/data/software/op/opendbx.json @@ -0,0 +1,8 @@ +{ + "slug": "opendbx", + "name": "OpenDBX", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2025404" + ] +} diff --git a/data/software/op/opendisc.json b/data/software/op/opendisc.json new file mode 100644 index 000000000000..e123f2cadbbe --- /dev/null +++ b/data/software/op/opendisc.json @@ -0,0 +1,8 @@ +{ + "slug": "opendisc", + "name": "Opendisc", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7096490" + ] +} diff --git a/data/software/op/opendkim.json b/data/software/op/opendkim.json new file mode 100644 index 000000000000..3e16b689959a --- /dev/null +++ b/data/software/op/opendkim.json @@ -0,0 +1,8 @@ +{ + "slug": "opendkim", + "name": "OpenDKIM", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62855466" + ] +} diff --git a/data/software/op/opendmtp.json b/data/software/op/opendmtp.json new file mode 100644 index 000000000000..51416d74e913 --- /dev/null +++ b/data/software/op/opendmtp.json @@ -0,0 +1,8 @@ +{ + "slug": "opendmtp", + "name": "OpenDMTP", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2402977" + ] +} diff --git a/data/software/op/opendoc.json b/data/software/op/opendoc.json new file mode 100644 index 000000000000..cb41b951206f --- /dev/null +++ b/data/software/op/opendoc.json @@ -0,0 +1,12 @@ +{ + "slug": "opendoc", + "name": "OpenDoc", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1500846" + ], + "developers": [ + "IBM", + "Apple Inc." + ] +} diff --git a/data/software/op/opendronemap.json b/data/software/op/opendronemap.json new file mode 100644 index 000000000000..38241a470983 --- /dev/null +++ b/data/software/op/opendronemap.json @@ -0,0 +1,14 @@ +{ + "slug": "opendronemap", + "name": "OpenDroneMap", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q65077013" + ], + "developers": [ + "Piero Toffanin" + ], + "programming_languages": [ + "Python" + ] +} diff --git a/data/software/op/openelect.json b/data/software/op/openelect.json new file mode 100644 index 000000000000..bf45dd38f927 --- /dev/null +++ b/data/software/op/openelect.json @@ -0,0 +1,11 @@ +{ + "slug": "openelect", + "name": "OpenElect", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q56668836" + ], + "developers": [ + "Unisyn Voting Solutions" + ] +} diff --git a/data/software/op/openemulator.json b/data/software/op/openemulator.json new file mode 100644 index 000000000000..285fb5e7221e --- /dev/null +++ b/data/software/op/openemulator.json @@ -0,0 +1,8 @@ +{ + "slug": "openemulator", + "name": "OpenEmulator", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2160247" + ] +} diff --git a/data/software/op/openepi.json b/data/software/op/openepi.json new file mode 100644 index 000000000000..86ebad68df07 --- /dev/null +++ b/data/software/op/openepi.json @@ -0,0 +1,11 @@ +{ + "slug": "openepi", + "name": "OpenEpi", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7095785" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/op/openetd.json b/data/software/op/openetd.json new file mode 100644 index 000000000000..f6814523550c --- /dev/null +++ b/data/software/op/openetd.json @@ -0,0 +1,8 @@ +{ + "slug": "openetd", + "name": "OpenETD", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084434" + ] +} diff --git a/data/software/op/openfeint.json b/data/software/op/openfeint.json new file mode 100644 index 000000000000..1fb17ed60c3e --- /dev/null +++ b/data/software/op/openfeint.json @@ -0,0 +1,9 @@ +{ + "slug": "openfeint", + "name": "OpenFeint", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1049664" + ], + "release_date": "2009-01-01" +} diff --git a/data/software/op/openfisca-france-data.json b/data/software/op/openfisca-france-data.json new file mode 100644 index 000000000000..4fa6ba979d5f --- /dev/null +++ b/data/software/op/openfisca-france-data.json @@ -0,0 +1,8 @@ +{ + "slug": "openfisca-france-data", + "name": "openfisca-france-data", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117107654" + ] +} diff --git a/data/software/op/openframe.json b/data/software/op/openframe.json new file mode 100644 index 000000000000..6b5bf97cd4b5 --- /dev/null +++ b/data/software/op/openframe.json @@ -0,0 +1,8 @@ +{ + "slug": "openframe", + "name": "OpenFrame", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q48796056" + ] +} diff --git a/data/software/op/opengeosys.json b/data/software/op/opengeosys.json new file mode 100644 index 000000000000..af680928f40f --- /dev/null +++ b/data/software/op/opengeosys.json @@ -0,0 +1,14 @@ +{ + "slug": "opengeosys", + "name": "OpenGeoSys", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130553834" + ], + "programming_languages": [ + "Python" + ], + "licenses": [ + "3-clause BSD License" + ] +} diff --git a/data/software/op/openggsn.json b/data/software/op/openggsn.json new file mode 100644 index 000000000000..722cb4399d5e --- /dev/null +++ b/data/software/op/openggsn.json @@ -0,0 +1,8 @@ +{ + "slug": "openggsn", + "name": "openggsn", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975301" + ] +} diff --git a/data/software/op/opengl-es.json b/data/software/op/opengl-es.json new file mode 100644 index 000000000000..f5bb35c3dd4a --- /dev/null +++ b/data/software/op/opengl-es.json @@ -0,0 +1,14 @@ +{ + "slug": "opengl-es", + "name": "OpenGL ES", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1137220" + ], + "developers": [ + "Khronos Group" + ], + "programming_languages": [ + "OpenGL ES Shading Language" + ] +} diff --git a/data/software/op/opengl-mathematics.json b/data/software/op/opengl-mathematics.json new file mode 100644 index 000000000000..ac484d13de29 --- /dev/null +++ b/data/software/op/opengl-mathematics.json @@ -0,0 +1,11 @@ +{ + "slug": "opengl-mathematics", + "name": "OpenGL Mathematics", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3353113" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/op/opengl-sc.json b/data/software/op/opengl-sc.json new file mode 100644 index 000000000000..5b6f45724013 --- /dev/null +++ b/data/software/op/opengl-sc.json @@ -0,0 +1,11 @@ +{ + "slug": "opengl-sc", + "name": "OpenGL SC", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7095796" + ], + "developers": [ + "Khronos Group" + ] +} diff --git a/data/software/op/openhpc.json b/data/software/op/openhpc.json new file mode 100644 index 000000000000..4ea87f15d7ae --- /dev/null +++ b/data/software/op/openhpc.json @@ -0,0 +1,9 @@ +{ + "slug": "openhpc", + "name": "OpenHPC", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q23055562" + ], + "release_date": "2015-11-12" +} diff --git a/data/software/op/openhpi.json b/data/software/op/openhpi.json new file mode 100644 index 000000000000..e6dc0a512231 --- /dev/null +++ b/data/software/op/openhpi.json @@ -0,0 +1,8 @@ +{ + "slug": "openhpi", + "name": "OpenHPI", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q104902926" + ] +} diff --git a/data/software/op/openimis.json b/data/software/op/openimis.json new file mode 100644 index 000000000000..5a0a09eca49f --- /dev/null +++ b/data/software/op/openimis.json @@ -0,0 +1,8 @@ +{ + "slug": "openimis", + "name": "OpenIMIS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60785832" + ] +} diff --git a/data/software/op/openinkpot.json b/data/software/op/openinkpot.json new file mode 100644 index 000000000000..744ac552e735 --- /dev/null +++ b/data/software/op/openinkpot.json @@ -0,0 +1,8 @@ +{ + "slug": "openinkpot", + "name": "OpenInkpot", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4045872" + ] +} diff --git a/data/software/op/openinsight.json b/data/software/op/openinsight.json new file mode 100644 index 000000000000..09cf0377f4c2 --- /dev/null +++ b/data/software/op/openinsight.json @@ -0,0 +1,9 @@ +{ + "slug": "openinsight", + "name": "OpenInsight", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7095805" + ], + "release_date": "1992-01-01" +} diff --git a/data/software/op/openintro-statistics.json b/data/software/op/openintro-statistics.json new file mode 100644 index 000000000000..c7c3c30cc82d --- /dev/null +++ b/data/software/op/openintro-statistics.json @@ -0,0 +1,8 @@ +{ + "slug": "openintro-statistics", + "name": "OpenIntro Statistics", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16977994" + ] +} diff --git a/data/software/op/openipc.json b/data/software/op/openipc.json new file mode 100644 index 000000000000..763930522646 --- /dev/null +++ b/data/software/op/openipc.json @@ -0,0 +1,14 @@ +{ + "slug": "openipc", + "name": "OpenIPC", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122978028" + ], + "developers": [ + "Igor Zalatov" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/op/openipmi.json b/data/software/op/openipmi.json new file mode 100644 index 000000000000..061927634599 --- /dev/null +++ b/data/software/op/openipmi.json @@ -0,0 +1,8 @@ +{ + "slug": "openipmi", + "name": "OpenIPMI", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62855168" + ] +} diff --git a/data/software/op/openkode.json b/data/software/op/openkode.json new file mode 100644 index 000000000000..96cebb50f79a --- /dev/null +++ b/data/software/op/openkode.json @@ -0,0 +1,11 @@ +{ + "slug": "openkode", + "name": "OpenKODE", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1997191" + ], + "developers": [ + "Khronos Group" + ] +} diff --git a/data/software/op/openlab.json b/data/software/op/openlab.json new file mode 100644 index 000000000000..805e2c090ef3 --- /dev/null +++ b/data/software/op/openlab.json @@ -0,0 +1,11 @@ +{ + "slug": "openlab", + "name": "Openlab", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7096535" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/op/openlava.json b/data/software/op/openlava.json new file mode 100644 index 000000000000..28c5b8b8aa74 --- /dev/null +++ b/data/software/op/openlava.json @@ -0,0 +1,8 @@ +{ + "slug": "openlava", + "name": "OpenLava", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22907489" + ] +} diff --git a/data/software/op/openlink-structured-data-sniffer.json b/data/software/op/openlink-structured-data-sniffer.json new file mode 100644 index 000000000000..2bde9b49a300 --- /dev/null +++ b/data/software/op/openlink-structured-data-sniffer.json @@ -0,0 +1,11 @@ +{ + "slug": "openlink-structured-data-sniffer", + "name": "OpenLink Structured Data Sniffer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112434722" + ], + "developers": [ + "OpenLink Software" + ] +} diff --git a/data/software/op/openlisp.json b/data/software/op/openlisp.json new file mode 100644 index 000000000000..7642d060294f --- /dev/null +++ b/data/software/op/openlisp.json @@ -0,0 +1,8 @@ +{ + "slug": "openlisp", + "name": "OpenLisp", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7095821" + ] +} diff --git a/data/software/op/openlitespeed.json b/data/software/op/openlitespeed.json new file mode 100644 index 000000000000..81a2943a0e01 --- /dev/null +++ b/data/software/op/openlitespeed.json @@ -0,0 +1,11 @@ +{ + "slug": "openlitespeed", + "name": "OpenLiteSpeed", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16688690" + ], + "licenses": [ + "GNU General Public License, version 3.0" + ] +} diff --git a/data/software/op/openmanage.json b/data/software/op/openmanage.json new file mode 100644 index 000000000000..d17fd28adc56 --- /dev/null +++ b/data/software/op/openmanage.json @@ -0,0 +1,11 @@ +{ + "slug": "openmanage", + "name": "OpenManage", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7095829" + ], + "developers": [ + "Dell" + ] +} diff --git a/data/software/op/openmc.json b/data/software/op/openmc.json new file mode 100644 index 000000000000..46e53ba15e72 --- /dev/null +++ b/data/software/op/openmc.json @@ -0,0 +1,8 @@ +{ + "slug": "openmc", + "name": "OpenMC", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136168014" + ] +} diff --git a/data/software/op/openmfg.json b/data/software/op/openmfg.json new file mode 100644 index 000000000000..86d9ad4826b0 --- /dev/null +++ b/data/software/op/openmfg.json @@ -0,0 +1,11 @@ +{ + "slug": "openmfg", + "name": "OpenMFG", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7095824" + ], + "developers": [ + "xTuple" + ] +} diff --git a/data/software/op/openmi-standard.json b/data/software/op/openmi-standard.json new file mode 100644 index 000000000000..b51bb38804df --- /dev/null +++ b/data/software/op/openmi-standard.json @@ -0,0 +1,8 @@ +{ + "slug": "openmi-standard", + "name": "OpenMI Standard", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7095825" + ] +} diff --git a/data/software/op/openmittsu.json b/data/software/op/openmittsu.json new file mode 100644 index 000000000000..40c7a24ce3a1 --- /dev/null +++ b/data/software/op/openmittsu.json @@ -0,0 +1,8 @@ +{ + "slug": "openmittsu", + "name": "openmittsu", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065010" + ] +} diff --git a/data/software/op/openml.json b/data/software/op/openml.json new file mode 100644 index 000000000000..589a3e12528f --- /dev/null +++ b/data/software/op/openml.json @@ -0,0 +1,11 @@ +{ + "slug": "openml", + "name": "OpenML", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q681472" + ], + "developers": [ + "Khronos Group" + ] +} diff --git a/data/software/op/openmm.json b/data/software/op/openmm.json new file mode 100644 index 000000000000..f56d1b3ee066 --- /dev/null +++ b/data/software/op/openmm.json @@ -0,0 +1,12 @@ +{ + "slug": "openmm", + "name": "OpenMM", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q56324517" + ], + "licenses": [ + "MIT License", + "GNU Lesser General Public License" + ] +} diff --git a/data/software/op/openmp.json b/data/software/op/openmp.json new file mode 100644 index 000000000000..1cfb8a5d6361 --- /dev/null +++ b/data/software/op/openmp.json @@ -0,0 +1,11 @@ +{ + "slug": "openmp", + "name": "OpenMP", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q496579" + ], + "operating_systems": [ + "cross-platform" + ] +} diff --git a/data/software/op/openni.json b/data/software/op/openni.json new file mode 100644 index 000000000000..d01a8d7a0c6c --- /dev/null +++ b/data/software/op/openni.json @@ -0,0 +1,14 @@ +{ + "slug": "openni", + "name": "OpenNI", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975302" + ], + "developers": [ + "OpenNI" + ], + "licenses": [ + "Apache License" + ] +} diff --git a/data/software/op/openni2.json b/data/software/op/openni2.json new file mode 100644 index 000000000000..585185a9f5d9 --- /dev/null +++ b/data/software/op/openni2.json @@ -0,0 +1,11 @@ +{ + "slug": "openni2", + "name": "OpenNI2", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975303" + ], + "licenses": [ + "Apache License" + ] +} diff --git a/data/software/op/openorienteering-mapper.json b/data/software/op/openorienteering-mapper.json new file mode 100644 index 000000000000..7efa77eb3238 --- /dev/null +++ b/data/software/op/openorienteering-mapper.json @@ -0,0 +1,11 @@ +{ + "slug": "openorienteering-mapper", + "name": "OpenOrienteering Mapper", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q23722830" + ], + "licenses": [ + "GNU General Public License, version 3.0" + ] +} diff --git a/data/software/op/openpass.json b/data/software/op/openpass.json new file mode 100644 index 000000000000..0496e82f41ab --- /dev/null +++ b/data/software/op/openpass.json @@ -0,0 +1,8 @@ +{ + "slug": "openpass", + "name": "Openpass", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17637605" + ] +} diff --git a/data/software/op/openpec.json b/data/software/op/openpec.json new file mode 100644 index 000000000000..a8d8f9b7252d --- /dev/null +++ b/data/software/op/openpec.json @@ -0,0 +1,8 @@ +{ + "slug": "openpec", + "name": "OpenPEC", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3882877" + ] +} diff --git a/data/software/op/openpose.json b/data/software/op/openpose.json new file mode 100644 index 000000000000..cac928db7934 --- /dev/null +++ b/data/software/op/openpose.json @@ -0,0 +1,8 @@ +{ + "slug": "openpose", + "name": "OpenPose", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109595481" + ] +} diff --git a/data/software/op/openprocurement.json b/data/software/op/openprocurement.json new file mode 100644 index 000000000000..59f8cdce9e22 --- /dev/null +++ b/data/software/op/openprocurement.json @@ -0,0 +1,15 @@ +{ + "slug": "openprocurement", + "name": "OpenProcurement", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q27680220" + ], + "release_date": "2014-10-27", + "programming_languages": [ + "Python" + ], + "licenses": [ + "Apache License" + ] +} diff --git a/data/software/op/openprofile.json b/data/software/op/openprofile.json new file mode 100644 index 000000000000..31a8857b6ed8 --- /dev/null +++ b/data/software/op/openprofile.json @@ -0,0 +1,11 @@ +{ + "slug": "openprofile", + "name": "OpenProfile", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125929167" + ], + "licenses": [ + "GNU General Public License" + ] +} diff --git a/data/software/op/openptk.json b/data/software/op/openptk.json new file mode 100644 index 000000000000..6abd2d946142 --- /dev/null +++ b/data/software/op/openptk.json @@ -0,0 +1,8 @@ +{ + "slug": "openptk", + "name": "OpenPTK", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1224846" + ] +} diff --git a/data/software/op/openqwaq.json b/data/software/op/openqwaq.json new file mode 100644 index 000000000000..6b93b164e8af --- /dev/null +++ b/data/software/op/openqwaq.json @@ -0,0 +1,18 @@ +{ + "slug": "openqwaq", + "name": "OpenQwaq", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7095860" + ], + "release_date": "2011-01-01", + "developers": [ + "Alan Kay" + ], + "operating_systems": [ + "macOS" + ], + "programming_languages": [ + "Squeak" + ] +} diff --git a/data/software/op/openradioss.json b/data/software/op/openradioss.json new file mode 100644 index 000000000000..74da2bbe5d1c --- /dev/null +++ b/data/software/op/openradioss.json @@ -0,0 +1,8 @@ +{ + "slug": "openradioss", + "name": "OpenRadioss", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137188712" + ] +} diff --git a/data/software/op/openscap.json b/data/software/op/openscap.json new file mode 100644 index 000000000000..a208f6842a83 --- /dev/null +++ b/data/software/op/openscap.json @@ -0,0 +1,8 @@ +{ + "slug": "openscap", + "name": "openscap", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975305" + ] +} diff --git a/data/software/op/opensearch.json b/data/software/op/opensearch.json new file mode 100644 index 000000000000..8e8551de212f --- /dev/null +++ b/data/software/op/opensearch.json @@ -0,0 +1,14 @@ +{ + "slug": "opensearch", + "name": "OpenSearch", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106497646" + ], + "programming_languages": [ + "Java" + ], + "licenses": [ + "Apache Software License 2.0" + ] +} diff --git a/data/software/op/opensees.json b/data/software/op/opensees.json new file mode 100644 index 000000000000..76127e33e7db --- /dev/null +++ b/data/software/op/opensees.json @@ -0,0 +1,11 @@ +{ + "slug": "opensees", + "name": "OpenSees", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7095877" + ], + "operating_systems": [ + "macOS" + ] +} diff --git a/data/software/op/opensl-es.json b/data/software/op/opensl-es.json new file mode 100644 index 000000000000..8f45b6753f35 --- /dev/null +++ b/data/software/op/opensl-es.json @@ -0,0 +1,11 @@ +{ + "slug": "opensl-es", + "name": "OpenSL ES", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7095883" + ], + "developers": [ + "Khronos Group" + ] +} diff --git a/data/software/op/opensmile.json b/data/software/op/opensmile.json new file mode 100644 index 000000000000..e44795bc5f89 --- /dev/null +++ b/data/software/op/opensmile.json @@ -0,0 +1,8 @@ +{ + "slug": "opensmile", + "name": "OpenSMILE", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q31839990" + ] +} diff --git a/data/software/op/opensocial.json b/data/software/op/opensocial.json new file mode 100644 index 000000000000..981f33046740 --- /dev/null +++ b/data/software/op/opensocial.json @@ -0,0 +1,14 @@ +{ + "slug": "opensocial", + "name": "OpenSocial", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1423669" + ], + "programming_languages": [ + "Java" + ], + "licenses": [ + "Apache License" + ] +} diff --git a/data/software/op/opensso.json b/data/software/op/opensso.json new file mode 100644 index 000000000000..b3c28f53a99c --- /dev/null +++ b/data/software/op/opensso.json @@ -0,0 +1,8 @@ +{ + "slug": "opensso", + "name": "OpenSSO", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1224849" + ] +} diff --git a/data/software/op/opensymphony.json b/data/software/op/opensymphony.json new file mode 100644 index 000000000000..9ac8076b8e47 --- /dev/null +++ b/data/software/op/opensymphony.json @@ -0,0 +1,8 @@ +{ + "slug": "opensymphony", + "name": "OpenSymphony", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1224850" + ] +} diff --git a/data/software/op/opentheso.json b/data/software/op/opentheso.json new file mode 100644 index 000000000000..f3e10a5c18a8 --- /dev/null +++ b/data/software/op/opentheso.json @@ -0,0 +1,8 @@ +{ + "slug": "opentheso", + "name": "Opentheso", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084436" + ] +} diff --git a/data/software/op/opentimestamps.json b/data/software/op/opentimestamps.json new file mode 100644 index 000000000000..6381fbf1d15b --- /dev/null +++ b/data/software/op/opentimestamps.json @@ -0,0 +1,12 @@ +{ + "slug": "opentimestamps", + "name": "OpenTimestamps", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q43069765" + ], + "programming_languages": [ + "Java", + "Python" + ] +} diff --git a/data/software/op/openvg.json b/data/software/op/openvg.json new file mode 100644 index 000000000000..5d127feb3874 --- /dev/null +++ b/data/software/op/openvg.json @@ -0,0 +1,11 @@ +{ + "slug": "openvg", + "name": "OpenVG", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q930132" + ], + "developers": [ + "Khronos Group" + ] +} diff --git a/data/software/op/openwebglobe.json b/data/software/op/openwebglobe.json new file mode 100644 index 000000000000..138fa62262f7 --- /dev/null +++ b/data/software/op/openwebglobe.json @@ -0,0 +1,11 @@ +{ + "slug": "openwebglobe", + "name": "OpenWebGlobe", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7095905" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/op/openwf.json b/data/software/op/openwf.json new file mode 100644 index 000000000000..7299e5b0422b --- /dev/null +++ b/data/software/op/openwf.json @@ -0,0 +1,8 @@ +{ + "slug": "openwf", + "name": "OpenWF", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7095904" + ] +} diff --git a/data/software/op/openwidget.json b/data/software/op/openwidget.json new file mode 100644 index 000000000000..206a772b7b80 --- /dev/null +++ b/data/software/op/openwidget.json @@ -0,0 +1,22 @@ +{ + "slug": "openwidget", + "name": "OpenWidget", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139710697" + ], + "developers": [ + "Text, Inc.", + "Text" + ], + "publishers": [ + "Text", + "Text, Inc." + ], + "operating_systems": [ + "web browser" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/op/openworm.json b/data/software/op/openworm.json new file mode 100644 index 000000000000..fa47ea31b4bc --- /dev/null +++ b/data/software/op/openworm.json @@ -0,0 +1,14 @@ +{ + "slug": "openworm", + "name": "OpenWorm", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16000499" + ], + "programming_languages": [ + "Python" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/op/openxla.json b/data/software/op/openxla.json new file mode 100644 index 000000000000..9ed468ede58b --- /dev/null +++ b/data/software/op/openxla.json @@ -0,0 +1,14 @@ +{ + "slug": "openxla", + "name": "OpenXLA", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117034645" + ], + "developers": [ + "Peter Hawkins" + ], + "licenses": [ + "Apache Software License 2.0" + ] +} diff --git a/data/software/op/openxlive.json b/data/software/op/openxlive.json new file mode 100644 index 000000000000..09e7b8e80b37 --- /dev/null +++ b/data/software/op/openxlive.json @@ -0,0 +1,9 @@ +{ + "slug": "openxlive", + "name": "OpenXLive", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7095916" + ], + "release_date": "2011-02-15" +} diff --git a/data/software/op/openxpki.json b/data/software/op/openxpki.json new file mode 100644 index 000000000000..470a72e9ad07 --- /dev/null +++ b/data/software/op/openxpki.json @@ -0,0 +1,11 @@ +{ + "slug": "openxpki", + "name": "OpenXPKI", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7095917" + ], + "licenses": [ + "Apache License" + ] +} diff --git a/data/software/op/openxr.json b/data/software/op/openxr.json new file mode 100644 index 000000000000..5e245265abd5 --- /dev/null +++ b/data/software/op/openxr.json @@ -0,0 +1,11 @@ +{ + "slug": "openxr", + "name": "OpenXR", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28957041" + ], + "developers": [ + "Khronos Group" + ] +} diff --git a/data/software/op/opera-dragonfly.json b/data/software/op/opera-dragonfly.json new file mode 100644 index 000000000000..b37851255156 --- /dev/null +++ b/data/software/op/opera-dragonfly.json @@ -0,0 +1,14 @@ +{ + "slug": "opera-dragonfly", + "name": "Opera Dragonfly", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7096589" + ], + "developers": [ + "Opera" + ], + "licenses": [ + "Apache License" + ] +} diff --git a/data/software/op/operation-time-research-software.json b/data/software/op/operation-time-research-software.json new file mode 100644 index 000000000000..96e26fa1fb4f --- /dev/null +++ b/data/software/op/operation-time-research-software.json @@ -0,0 +1,8 @@ +{ + "slug": "operation-time-research-software", + "name": "Operation Time Research Software", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17190201" + ] +} diff --git a/data/software/op/operator-s-cockpit.json b/data/software/op/operator-s-cockpit.json new file mode 100644 index 000000000000..f475380c2458 --- /dev/null +++ b/data/software/op/operator-s-cockpit.json @@ -0,0 +1,8 @@ +{ + "slug": "operator-s-cockpit", + "name": "Operator's Cockpit", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139856687" + ] +} diff --git a/data/software/op/operator.json b/data/software/op/operator.json new file mode 100644 index 000000000000..d0f2633cb81e --- /dev/null +++ b/data/software/op/operator.json @@ -0,0 +1,8 @@ +{ + "slug": "operator", + "name": "Operator", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3354090" + ] +} diff --git a/data/software/op/opero.json b/data/software/op/opero.json new file mode 100644 index 000000000000..578668d29f57 --- /dev/null +++ b/data/software/op/opero.json @@ -0,0 +1,14 @@ +{ + "slug": "opero", + "name": "Opero", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138767941" + ], + "developers": [ + "Opero" + ], + "programming_languages": [ + "TypeScript" + ] +} diff --git a/data/software/op/opertoon.json b/data/software/op/opertoon.json new file mode 100644 index 000000000000..130cb15ef5ca --- /dev/null +++ b/data/software/op/opertoon.json @@ -0,0 +1,8 @@ +{ + "slug": "opertoon", + "name": "Opertoon", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125523495" + ] +} diff --git a/data/software/op/opik.json b/data/software/op/opik.json new file mode 100644 index 000000000000..ec8e7b9ec0d7 --- /dev/null +++ b/data/software/op/opik.json @@ -0,0 +1,14 @@ +{ + "slug": "opik", + "name": "Opik", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138499256" + ], + "developers": [ + "Comet" + ], + "licenses": [ + "Apache Software License 2.0" + ] +} diff --git a/data/software/op/opsin.json b/data/software/op/opsin.json new file mode 100644 index 000000000000..bc39ca767b8c --- /dev/null +++ b/data/software/op/opsin.json @@ -0,0 +1,8 @@ +{ + "slug": "opsin", + "name": "OPSIN", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q26481302" + ] +} diff --git a/data/software/op/opspuls.json b/data/software/op/opspuls.json new file mode 100644 index 000000000000..02e8d937d54a --- /dev/null +++ b/data/software/op/opspuls.json @@ -0,0 +1,8 @@ +{ + "slug": "opspuls", + "name": "OpsPuls", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140356809" + ] +} diff --git a/data/software/op/opteamus.json b/data/software/op/opteamus.json new file mode 100644 index 000000000000..28fadb4ac7a8 --- /dev/null +++ b/data/software/op/opteamus.json @@ -0,0 +1,11 @@ +{ + "slug": "opteamus", + "name": "Opteamus", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137796133" + ], + "developers": [ + "Alpha Consulting 1996 Kft." + ] +} diff --git a/data/software/op/optex.json b/data/software/op/optex.json new file mode 100644 index 000000000000..cf5ab01862dc --- /dev/null +++ b/data/software/op/optex.json @@ -0,0 +1,8 @@ +{ + "slug": "optex", + "name": "OpTeX", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124577022" + ] +} diff --git a/data/software/op/opti-bet.json b/data/software/op/opti-bet.json new file mode 100644 index 000000000000..a1ad18f8b72e --- /dev/null +++ b/data/software/op/opti-bet.json @@ -0,0 +1,8 @@ +{ + "slug": "opti-bet", + "name": "Opti-Bet", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121631706" + ] +} diff --git a/data/software/op/optica-optics-software.json b/data/software/op/optica-optics-software.json new file mode 100644 index 000000000000..ca22b02d90e8 --- /dev/null +++ b/data/software/op/optica-optics-software.json @@ -0,0 +1,8 @@ +{ + "slug": "optica-optics-software", + "name": "Optica Optics Software", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25303687" + ] +} diff --git a/data/software/op/optics-software-for-layout-and-optimization.json b/data/software/op/optics-software-for-layout-and-optimization.json new file mode 100644 index 000000000000..d4f7ad57b51b --- /dev/null +++ b/data/software/op/optics-software-for-layout-and-optimization.json @@ -0,0 +1,8 @@ +{ + "slug": "optics-software-for-layout-and-optimization", + "name": "Optics Software for Layout and Optimization", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7098919" + ] +} diff --git a/data/software/op/optimalj.json b/data/software/op/optimalj.json new file mode 100644 index 000000000000..b334fd003f09 --- /dev/null +++ b/data/software/op/optimalj.json @@ -0,0 +1,8 @@ +{ + "slug": "optimalj", + "name": "OptimalJ", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7098934" + ] +} diff --git a/data/software/op/optimization-toolbox.json b/data/software/op/optimization-toolbox.json new file mode 100644 index 000000000000..6ab69e735803 --- /dev/null +++ b/data/software/op/optimization-toolbox.json @@ -0,0 +1,11 @@ +{ + "slug": "optimization-toolbox", + "name": "Optimization Toolbox", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17086474" + ], + "developers": [ + "MathWorks" + ] +} diff --git a/data/software/op/optislang.json b/data/software/op/optislang.json new file mode 100644 index 000000000000..02a715f865fb --- /dev/null +++ b/data/software/op/optislang.json @@ -0,0 +1,8 @@ +{ + "slug": "optislang", + "name": "OptiSLang", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18412027" + ] +} diff --git a/data/software/op/optix-pro.json b/data/software/op/optix-pro.json new file mode 100644 index 000000000000..1986c43568c2 --- /dev/null +++ b/data/software/op/optix-pro.json @@ -0,0 +1,8 @@ +{ + "slug": "optix-pro", + "name": "Optix Pro", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q545698" + ] +} diff --git a/data/software/op/optix.json b/data/software/op/optix.json new file mode 100644 index 000000000000..be9fa62f86c6 --- /dev/null +++ b/data/software/op/optix.json @@ -0,0 +1,15 @@ +{ + "slug": "optix", + "name": "OptiX", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4045938" + ], + "developers": [ + "Nvidia" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/software/op/optquest.json b/data/software/op/optquest.json new file mode 100644 index 000000000000..21b293cf0c17 --- /dev/null +++ b/data/software/op/optquest.json @@ -0,0 +1,8 @@ +{ + "slug": "optquest", + "name": "OptQuest", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q128619958" + ] +} diff --git a/data/software/op/opus-computer-based-conversation-system.json b/data/software/op/opus-computer-based-conversation-system.json new file mode 100644 index 000000000000..7364ffe68b7f --- /dev/null +++ b/data/software/op/opus-computer-based-conversation-system.json @@ -0,0 +1,8 @@ +{ + "slug": "opus-computer-based-conversation-system", + "name": "Opus Computer Based Conversation System", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q29167825" + ] +} diff --git a/data/software/op/opus-q29364572.json b/data/software/op/opus-q29364572.json new file mode 100644 index 000000000000..37f10384a062 --- /dev/null +++ b/data/software/op/opus-q29364572.json @@ -0,0 +1,8 @@ +{ + "slug": "opus-q29364572", + "name": "OPUS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q29364572" + ] +} diff --git a/data/software/op/opus.json b/data/software/op/opus.json new file mode 100644 index 000000000000..6516918136d8 --- /dev/null +++ b/data/software/op/opus.json @@ -0,0 +1,11 @@ +{ + "slug": "opus", + "name": "OPUS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q12041815" + ], + "licenses": [ + "free software" + ] +} diff --git a/data/software/op/opusmodus.json b/data/software/op/opusmodus.json new file mode 100644 index 000000000000..46bdc96678dc --- /dev/null +++ b/data/software/op/opusmodus.json @@ -0,0 +1,8 @@ +{ + "slug": "opusmodus", + "name": "Opusmodus", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131742745" + ] +} diff --git a/data/software/or/or-tools.json b/data/software/or/or-tools.json new file mode 100644 index 000000000000..28afa2407709 --- /dev/null +++ b/data/software/or/or-tools.json @@ -0,0 +1,12 @@ +{ + "slug": "or-tools", + "name": "OR-Tools", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108872465" + ], + "developers": [ + "Corentin Le Molgat", + "Laurent Perron" + ] +} diff --git a/data/software/or/oracle-adaptive-access-manager.json b/data/software/or/oracle-adaptive-access-manager.json new file mode 100644 index 000000000000..86116e8e8bbc --- /dev/null +++ b/data/software/or/oracle-adaptive-access-manager.json @@ -0,0 +1,14 @@ +{ + "slug": "oracle-adaptive-access-manager", + "name": "Oracle Adaptive Access Manager", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7099238" + ], + "developers": [ + "Oracle Corporation" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/or/oracle-advanced-security.json b/data/software/or/oracle-advanced-security.json new file mode 100644 index 000000000000..dbf7340b99cd --- /dev/null +++ b/data/software/or/oracle-advanced-security.json @@ -0,0 +1,14 @@ +{ + "slug": "oracle-advanced-security", + "name": "Oracle Advanced Security", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7099240" + ], + "developers": [ + "Oracle Corporation" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/or/oracle-advertising-and-customer-experience.json b/data/software/or/oracle-advertising-and-customer-experience.json new file mode 100644 index 000000000000..ebc00c936bca --- /dev/null +++ b/data/software/or/oracle-advertising-and-customer-experience.json @@ -0,0 +1,11 @@ +{ + "slug": "oracle-advertising-and-customer-experience", + "name": "Oracle Advertising and Customer Experience", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107313664" + ], + "developers": [ + "Oracle Corporation" + ] +} diff --git a/data/software/or/oracle-bi-publisher.json b/data/software/or/oracle-bi-publisher.json new file mode 100644 index 000000000000..bef15218ac64 --- /dev/null +++ b/data/software/or/oracle-bi-publisher.json @@ -0,0 +1,11 @@ +{ + "slug": "oracle-bi-publisher", + "name": "Oracle BI Publisher", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7099244" + ], + "developers": [ + "Oracle Corporation" + ] +} diff --git a/data/software/or/oracle-business-intelligence-suite-enterprise-edition.json b/data/software/or/oracle-business-intelligence-suite-enterprise-edition.json new file mode 100644 index 000000000000..4dcba35dbeb1 --- /dev/null +++ b/data/software/or/oracle-business-intelligence-suite-enterprise-edition.json @@ -0,0 +1,14 @@ +{ + "slug": "oracle-business-intelligence-suite-enterprise-edition", + "name": "Oracle Business Intelligence Suite Enterprise Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7099251" + ], + "developers": [ + "Oracle Corporation" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/or/oracle-content-management.json b/data/software/or/oracle-content-management.json new file mode 100644 index 000000000000..e21eb24e8d31 --- /dev/null +++ b/data/software/or/oracle-content-management.json @@ -0,0 +1,11 @@ +{ + "slug": "oracle-content-management", + "name": "Oracle Content Management", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112143215" + ], + "developers": [ + "Oracle Corporation" + ] +} diff --git a/data/software/or/oracle-data-guard.json b/data/software/or/oracle-data-guard.json new file mode 100644 index 000000000000..346b81b5a892 --- /dev/null +++ b/data/software/or/oracle-data-guard.json @@ -0,0 +1,11 @@ +{ + "slug": "oracle-data-guard", + "name": "Oracle Data Guard", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2027927" + ], + "developers": [ + "Oracle Corporation" + ] +} diff --git a/data/software/or/oracle-data-integrator.json b/data/software/or/oracle-data-integrator.json new file mode 100644 index 000000000000..10b6381621cd --- /dev/null +++ b/data/software/or/oracle-data-integrator.json @@ -0,0 +1,11 @@ +{ + "slug": "oracle-data-integrator", + "name": "Oracle Data Integrator", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18154822" + ], + "developers": [ + "Oracle Corporation" + ] +} diff --git a/data/software/or/oracle-data-mining.json b/data/software/or/oracle-data-mining.json new file mode 100644 index 000000000000..fdfcb491b7a3 --- /dev/null +++ b/data/software/or/oracle-data-mining.json @@ -0,0 +1,11 @@ +{ + "slug": "oracle-data-mining", + "name": "Oracle Data Mining", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7099259" + ], + "developers": [ + "Oracle Corporation" + ] +} diff --git a/data/software/or/oracle-designer.json b/data/software/or/oracle-designer.json new file mode 100644 index 000000000000..207fb86b29e2 --- /dev/null +++ b/data/software/or/oracle-designer.json @@ -0,0 +1,11 @@ +{ + "slug": "oracle-designer", + "name": "Oracle Designer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7099261" + ], + "developers": [ + "Oracle Corporation" + ] +} diff --git a/data/software/or/oracle-discoverer.json b/data/software/or/oracle-discoverer.json new file mode 100644 index 000000000000..44f742eb5598 --- /dev/null +++ b/data/software/or/oracle-discoverer.json @@ -0,0 +1,14 @@ +{ + "slug": "oracle-discoverer", + "name": "Oracle Discoverer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7099262" + ], + "developers": [ + "Oracle Corporation" + ], + "programming_languages": [ + "Java" + ] +} diff --git a/data/software/or/oracle-enterprise-manager-ops-center.json b/data/software/or/oracle-enterprise-manager-ops-center.json new file mode 100644 index 000000000000..af6c1b67e414 --- /dev/null +++ b/data/software/or/oracle-enterprise-manager-ops-center.json @@ -0,0 +1,14 @@ +{ + "slug": "oracle-enterprise-manager-ops-center", + "name": "Oracle Enterprise Manager Ops Center", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7099267" + ], + "developers": [ + "Sun Microsystems" + ], + "operating_systems": [ + "Solaris" + ] +} diff --git a/data/software/or/oracle-enterprise-pack-for-eclipse.json b/data/software/or/oracle-enterprise-pack-for-eclipse.json new file mode 100644 index 000000000000..128fee1d8fe2 --- /dev/null +++ b/data/software/or/oracle-enterprise-pack-for-eclipse.json @@ -0,0 +1,11 @@ +{ + "slug": "oracle-enterprise-pack-for-eclipse", + "name": "Oracle Enterprise Pack for Eclipse", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7099268" + ], + "developers": [ + "Oracle Corporation" + ] +} diff --git a/data/software/or/oracle-financial-services-software.json b/data/software/or/oracle-financial-services-software.json new file mode 100644 index 000000000000..2147a03f98a4 --- /dev/null +++ b/data/software/or/oracle-financial-services-software.json @@ -0,0 +1,8 @@ +{ + "slug": "oracle-financial-services-software", + "name": "Oracle Financial Services Software", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q285352" + ] +} diff --git a/data/software/or/oracle-fusion-architecture.json b/data/software/or/oracle-fusion-architecture.json new file mode 100644 index 000000000000..4c5a1be520d4 --- /dev/null +++ b/data/software/or/oracle-fusion-architecture.json @@ -0,0 +1,8 @@ +{ + "slug": "oracle-fusion-architecture", + "name": "Oracle Fusion Architecture", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7099272" + ] +} diff --git a/data/software/or/oracle-hcm-cloud.json b/data/software/or/oracle-hcm-cloud.json new file mode 100644 index 000000000000..76160ef2bdbc --- /dev/null +++ b/data/software/or/oracle-hcm-cloud.json @@ -0,0 +1,11 @@ +{ + "slug": "oracle-hcm-cloud", + "name": "Oracle HCM Cloud", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60771963" + ], + "developers": [ + "Oracle Corporation" + ] +} diff --git a/data/software/or/oracle-net-services.json b/data/software/or/oracle-net-services.json new file mode 100644 index 000000000000..c533de2e565e --- /dev/null +++ b/data/software/or/oracle-net-services.json @@ -0,0 +1,14 @@ +{ + "slug": "oracle-net-services", + "name": "Oracle Net Services", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7099283" + ], + "developers": [ + "Oracle Corporation" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/or/oracle-nosql-database.json b/data/software/or/oracle-nosql-database.json new file mode 100644 index 000000000000..053ba268db4b --- /dev/null +++ b/data/software/or/oracle-nosql-database.json @@ -0,0 +1,17 @@ +{ + "slug": "oracle-nosql-database", + "name": "Oracle NoSQL Database", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7099284" + ], + "developers": [ + "Oracle Corporation" + ], + "programming_languages": [ + "Java" + ], + "licenses": [ + "Apache License" + ] +} diff --git a/data/software/or/oracle-olap.json b/data/software/or/oracle-olap.json new file mode 100644 index 000000000000..5cf5b9a2fbd9 --- /dev/null +++ b/data/software/or/oracle-olap.json @@ -0,0 +1,8 @@ +{ + "slug": "oracle-olap", + "name": "Oracle OLAP", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7099285" + ] +} diff --git a/data/software/or/oracle-spatial.json b/data/software/or/oracle-spatial.json new file mode 100644 index 000000000000..33a961912281 --- /dev/null +++ b/data/software/or/oracle-spatial.json @@ -0,0 +1,14 @@ +{ + "slug": "oracle-spatial", + "name": "Oracle Spatial", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3508244" + ], + "developers": [ + "Oracle Corporation" + ], + "operating_systems": [ + "cross-platform" + ] +} diff --git a/data/software/or/oracle-toplink.json b/data/software/or/oracle-toplink.json new file mode 100644 index 000000000000..0b4757758eed --- /dev/null +++ b/data/software/or/oracle-toplink.json @@ -0,0 +1,14 @@ +{ + "slug": "oracle-toplink", + "name": "Oracle TopLink", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28956371" + ], + "developers": [ + "Oracle Corporation" + ], + "programming_languages": [ + "Java" + ] +} diff --git a/data/software/or/oracle-vdi.json b/data/software/or/oracle-vdi.json new file mode 100644 index 000000000000..c9ab5af16c07 --- /dev/null +++ b/data/software/or/oracle-vdi.json @@ -0,0 +1,11 @@ +{ + "slug": "oracle-vdi", + "name": "Oracle VDI", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7099303" + ], + "developers": [ + "Sun Microsystems" + ] +} diff --git a/data/software/or/oracle-vm.json b/data/software/or/oracle-vm.json new file mode 100644 index 000000000000..0162b8766348 --- /dev/null +++ b/data/software/or/oracle-vm.json @@ -0,0 +1,11 @@ +{ + "slug": "oracle-vm", + "name": "Oracle VM", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10852040" + ], + "developers": [ + "Oracle Corporation" + ] +} diff --git a/data/software/or/oracle-warehouse-builder.json b/data/software/or/oracle-warehouse-builder.json new file mode 100644 index 000000000000..81b20271a9fd --- /dev/null +++ b/data/software/or/oracle-warehouse-builder.json @@ -0,0 +1,11 @@ +{ + "slug": "oracle-warehouse-builder", + "name": "Oracle Warehouse Builder", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3354986" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/or/oracle-zero-data-loss-recovery-appliance.json b/data/software/or/oracle-zero-data-loss-recovery-appliance.json new file mode 100644 index 000000000000..3d0c8f3da035 --- /dev/null +++ b/data/software/or/oracle-zero-data-loss-recovery-appliance.json @@ -0,0 +1,8 @@ +{ + "slug": "oracle-zero-data-loss-recovery-appliance", + "name": "Oracle Zero Data Loss Recovery Appliance", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60741261" + ] +} diff --git a/data/software/or/oracle-zfs.json b/data/software/or/oracle-zfs.json new file mode 100644 index 000000000000..97d5d15cc06c --- /dev/null +++ b/data/software/or/oracle-zfs.json @@ -0,0 +1,12 @@ +{ + "slug": "oracle-zfs", + "name": "Oracle ZFS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q54958953" + ], + "release_date": "2006-01-01", + "developers": [ + "Oracle Corporation" + ] +} diff --git a/data/software/or/oragent.json b/data/software/or/oragent.json new file mode 100644 index 000000000000..3da4dd0b368f --- /dev/null +++ b/data/software/or/oragent.json @@ -0,0 +1,14 @@ +{ + "slug": "oragent", + "name": "Oragent", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140135921" + ], + "operating_systems": [ + "macOS" + ], + "programming_languages": [ + "Python" + ] +} diff --git a/data/software/or/oral-history-metadata-synchronizer.json b/data/software/or/oral-history-metadata-synchronizer.json new file mode 100644 index 000000000000..8e53d60361a3 --- /dev/null +++ b/data/software/or/oral-history-metadata-synchronizer.json @@ -0,0 +1,8 @@ +{ + "slug": "oral-history-metadata-synchronizer", + "name": "Oral History Metadata Synchronizer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17073327" + ] +} diff --git a/data/software/or/orange.json b/data/software/or/orange.json new file mode 100644 index 000000000000..b18695d94e1f --- /dev/null +++ b/data/software/or/orange.json @@ -0,0 +1,8 @@ +{ + "slug": "orange", + "name": "Orange", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084437" + ] +} diff --git a/data/software/or/orb.json b/data/software/or/orb.json new file mode 100644 index 000000000000..b67bf9c0c68c --- /dev/null +++ b/data/software/or/orb.json @@ -0,0 +1,8 @@ +{ + "slug": "orb", + "name": "Orb", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3355177" + ] +} diff --git a/data/software/or/orbexpress.json b/data/software/or/orbexpress.json new file mode 100644 index 000000000000..eac9406fbffa --- /dev/null +++ b/data/software/or/orbexpress.json @@ -0,0 +1,11 @@ +{ + "slug": "orbexpress", + "name": "ORBexpress", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q20875780" + ], + "developers": [ + "Objective Interface Systems" + ] +} diff --git a/data/software/or/orbit-home.json b/data/software/or/orbit-home.json new file mode 100644 index 000000000000..690a54871101 --- /dev/null +++ b/data/software/or/orbit-home.json @@ -0,0 +1,11 @@ +{ + "slug": "orbit-home", + "name": "orbit@home", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2005355" + ], + "developers": [ + "National Aeronautics and Space Administration" + ] +} diff --git a/data/software/or/orbitron.json b/data/software/or/orbitron.json new file mode 100644 index 000000000000..417e0d28d160 --- /dev/null +++ b/data/software/or/orbitron.json @@ -0,0 +1,8 @@ +{ + "slug": "orbitron", + "name": "Orbitron", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11798909" + ] +} diff --git a/data/software/or/orbix.json b/data/software/or/orbix.json new file mode 100644 index 000000000000..8761a1278864 --- /dev/null +++ b/data/software/or/orbix.json @@ -0,0 +1,8 @@ +{ + "slug": "orbix", + "name": "Orbix", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4045955" + ] +} diff --git a/data/software/or/orfo.json b/data/software/or/orfo.json new file mode 100644 index 000000000000..75b36d79ae89 --- /dev/null +++ b/data/software/or/orfo.json @@ -0,0 +1,8 @@ +{ + "slug": "orfo", + "name": "ORFO", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4337236" + ] +} diff --git a/data/software/or/orgavision.json b/data/software/or/orgavision.json new file mode 100644 index 000000000000..a21ff717c291 --- /dev/null +++ b/data/software/or/orgavision.json @@ -0,0 +1,12 @@ +{ + "slug": "orgavision", + "name": "Orgavision", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138347999" + ], + "release_date": "2009-01-01", + "operating_systems": [ + "cross-platform" + ] +} diff --git a/data/software/or/origami-studio.json b/data/software/or/origami-studio.json new file mode 100644 index 000000000000..38341f7e97dc --- /dev/null +++ b/data/software/or/origami-studio.json @@ -0,0 +1,8 @@ +{ + "slug": "origami-studio", + "name": "Origami Studio", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140227903" + ] +} diff --git a/data/software/or/origin.json b/data/software/or/origin.json new file mode 100644 index 000000000000..9b4c1ea643da --- /dev/null +++ b/data/software/or/origin.json @@ -0,0 +1,14 @@ +{ + "slug": "origin", + "name": "Origin", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1307239" + ], + "operating_systems": [ + "Microsoft Windows" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/or/origyn-web-browser.json b/data/software/or/origyn-web-browser.json new file mode 100644 index 000000000000..b6265a12a8fa --- /dev/null +++ b/data/software/or/origyn-web-browser.json @@ -0,0 +1,8 @@ +{ + "slug": "origyn-web-browser", + "name": "Origyn Web Browser", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2568489" + ] +} diff --git a/data/software/or/orion-application-server.json b/data/software/or/orion-application-server.json new file mode 100644 index 000000000000..c53535ad1dd8 --- /dev/null +++ b/data/software/or/orion-application-server.json @@ -0,0 +1,8 @@ +{ + "slug": "orion-application-server", + "name": "Orion Application Server", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2030901" + ] +} diff --git a/data/software/or/orion-engine.json b/data/software/or/orion-engine.json new file mode 100644 index 000000000000..966c715d2029 --- /dev/null +++ b/data/software/or/orion-engine.json @@ -0,0 +1,11 @@ +{ + "slug": "orion-engine", + "name": "Orion Engine", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139380978" + ], + "developers": [ + "Orion Quant Technologies" + ] +} diff --git a/data/software/or/orionvm.json b/data/software/or/orionvm.json new file mode 100644 index 000000000000..5000e00574ed --- /dev/null +++ b/data/software/or/orionvm.json @@ -0,0 +1,8 @@ +{ + "slug": "orionvm", + "name": "OrionVM", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17019761" + ] +} diff --git a/data/software/or/orkas.json b/data/software/or/orkas.json new file mode 100644 index 000000000000..fd198518548c --- /dev/null +++ b/data/software/or/orkas.json @@ -0,0 +1,8 @@ +{ + "slug": "orkas", + "name": "Orkas", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140135410" + ] +} diff --git a/data/software/or/orlando-breadboard.json b/data/software/or/orlando-breadboard.json new file mode 100644 index 000000000000..48a331e680b4 --- /dev/null +++ b/data/software/or/orlando-breadboard.json @@ -0,0 +1,8 @@ +{ + "slug": "orlando-breadboard", + "name": "Orlando Breadboard", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084438" + ] +} diff --git a/data/software/or/orlando-degrees-of-separation.json b/data/software/or/orlando-degrees-of-separation.json new file mode 100644 index 000000000000..0baf92bd444f --- /dev/null +++ b/data/software/or/orlando-degrees-of-separation.json @@ -0,0 +1,8 @@ +{ + "slug": "orlando-degrees-of-separation", + "name": "Orlando Degrees of Separation", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084439" + ] +} diff --git a/data/software/or/orlandovision-ovis.json b/data/software/or/orlandovision-ovis.json new file mode 100644 index 000000000000..5e2dce64a1a4 --- /dev/null +++ b/data/software/or/orlandovision-ovis.json @@ -0,0 +1,8 @@ +{ + "slug": "orlandovision-ovis", + "name": "OrlandoVision (OVis)", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084440" + ] +} diff --git a/data/software/or/orm-designer.json b/data/software/or/orm-designer.json new file mode 100644 index 000000000000..230fbe4ff2a9 --- /dev/null +++ b/data/software/or/orm-designer.json @@ -0,0 +1,8 @@ +{ + "slug": "orm-designer", + "name": "ORM Designer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17145882" + ] +} diff --git a/data/software/or/oroborus.json b/data/software/or/oroborus.json new file mode 100644 index 000000000000..2b6f68d27ffd --- /dev/null +++ b/data/software/or/oroborus.json @@ -0,0 +1,8 @@ +{ + "slug": "oroborus", + "name": "Oroborus", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3356577" + ] +} diff --git a/data/software/or/orocos-kdl.json b/data/software/or/orocos-kdl.json new file mode 100644 index 000000000000..23c83e007446 --- /dev/null +++ b/data/software/or/orocos-kdl.json @@ -0,0 +1,8 @@ +{ + "slug": "orocos-kdl", + "name": "orocos_kdl", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975310" + ] +} diff --git a/data/software/or/orphex.json b/data/software/or/orphex.json new file mode 100644 index 000000000000..87511eb4d2b3 --- /dev/null +++ b/data/software/or/orphex.json @@ -0,0 +1,8 @@ +{ + "slug": "orphex", + "name": "Orphex", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124545527" + ] +} diff --git a/data/software/or/ortep.json b/data/software/or/ortep.json new file mode 100644 index 000000000000..1bd96c2a0abb --- /dev/null +++ b/data/software/or/ortep.json @@ -0,0 +1,12 @@ +{ + "slug": "ortep", + "name": "ORTEP", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q15879965" + ], + "release_date": "1965-01-01", + "developers": [ + "Oak Ridge National Laboratory" + ] +} diff --git a/data/software/or/orthofinder.json b/data/software/or/orthofinder.json new file mode 100644 index 000000000000..6146a2ef1cb2 --- /dev/null +++ b/data/software/or/orthofinder.json @@ -0,0 +1,8 @@ +{ + "slug": "orthofinder", + "name": "OrthoFinder", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108166782" + ] +} diff --git a/data/software/or/orthograph.json b/data/software/or/orthograph.json new file mode 100644 index 000000000000..30aba9f31386 --- /dev/null +++ b/data/software/or/orthograph.json @@ -0,0 +1,8 @@ +{ + "slug": "orthograph", + "name": "OrthoGraph", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q538060" + ] +} diff --git a/data/software/or/orthopaedic-studio.json b/data/software/or/orthopaedic-studio.json new file mode 100644 index 000000000000..0f2203af8921 --- /dev/null +++ b/data/software/or/orthopaedic-studio.json @@ -0,0 +1,8 @@ +{ + "slug": "orthopaedic-studio", + "name": "Orthopaedic Studio", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17073453" + ] +} diff --git a/data/software/or/orthopedic-surgery-simulation.json b/data/software/or/orthopedic-surgery-simulation.json new file mode 100644 index 000000000000..b36f308bac23 --- /dev/null +++ b/data/software/or/orthopedic-surgery-simulation.json @@ -0,0 +1,8 @@ +{ + "slug": "orthopedic-surgery-simulation", + "name": "Orthopedic Surgery Simulation", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115332277" + ] +} diff --git a/data/software/or/ortolang.json b/data/software/or/ortolang.json new file mode 100644 index 000000000000..995fd6f98b4a --- /dev/null +++ b/data/software/or/ortolang.json @@ -0,0 +1,8 @@ +{ + "slug": "ortolang", + "name": "ORTOLANG", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084441" + ] +} diff --git a/data/software/os/os-autoinst.json b/data/software/os/os-autoinst.json new file mode 100644 index 000000000000..0b4846518449 --- /dev/null +++ b/data/software/os/os-autoinst.json @@ -0,0 +1,8 @@ +{ + "slug": "os-autoinst", + "name": "os-autoinst", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975311" + ] +} diff --git a/data/software/os/os-diskconfig-python-novaclient-ext.json b/data/software/os/os-diskconfig-python-novaclient-ext.json new file mode 100644 index 000000000000..af5005def09f --- /dev/null +++ b/data/software/os/os-diskconfig-python-novaclient-ext.json @@ -0,0 +1,8 @@ +{ + "slug": "os-diskconfig-python-novaclient-ext", + "name": "os-diskconfig-python-novaclient-ext", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975313" + ] +} diff --git a/data/software/os/osapher.json b/data/software/os/osapher.json new file mode 100644 index 000000000000..380ed928a0f3 --- /dev/null +++ b/data/software/os/osapher.json @@ -0,0 +1,8 @@ +{ + "slug": "osapher", + "name": "Osapher", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139718760" + ] +} diff --git a/data/software/os/osc.json b/data/software/os/osc.json new file mode 100644 index 000000000000..2166d4a79d92 --- /dev/null +++ b/data/software/os/osc.json @@ -0,0 +1,14 @@ +{ + "slug": "osc", + "name": "osc", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975312" + ], + "operating_systems": [ + "Unix-like operating system" + ], + "licenses": [ + "GNU General Public License, version 2.0" + ] +} diff --git a/data/software/os/oscache.json b/data/software/os/oscache.json new file mode 100644 index 000000000000..4f0262140226 --- /dev/null +++ b/data/software/os/oscache.json @@ -0,0 +1,8 @@ +{ + "slug": "oscache", + "name": "OSCache", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q471022" + ] +} diff --git a/data/software/os/oskope.json b/data/software/os/oskope.json new file mode 100644 index 000000000000..2cf8fbd720f5 --- /dev/null +++ b/data/software/os/oskope.json @@ -0,0 +1,8 @@ +{ + "slug": "oskope", + "name": "oSkope", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084443" + ] +} diff --git a/data/software/os/osl.json b/data/software/os/osl.json new file mode 100644 index 000000000000..877e71dd8e52 --- /dev/null +++ b/data/software/os/osl.json @@ -0,0 +1,8 @@ +{ + "slug": "osl", + "name": "osl", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60917453" + ] +} diff --git a/data/software/os/osm2pgsql.json b/data/software/os/osm2pgsql.json new file mode 100644 index 000000000000..3c8666724bee --- /dev/null +++ b/data/software/os/osm2pgsql.json @@ -0,0 +1,15 @@ +{ + "slug": "osm2pgsql", + "name": "osm2pgsql", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975314" + ], + "developers": [ + "Sarah Hoffmann", + "Jochen Topf" + ], + "licenses": [ + "GNU General Public License, version 2.0" + ] +} diff --git a/data/software/os/osmp.json b/data/software/os/osmp.json new file mode 100644 index 000000000000..189ef1511e19 --- /dev/null +++ b/data/software/os/osmp.json @@ -0,0 +1,11 @@ +{ + "slug": "osmp", + "name": "OSMP", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7073034" + ], + "licenses": [ + "GNU General Public License, version 2.0" + ] +} diff --git a/data/software/os/osome.json b/data/software/os/osome.json new file mode 100644 index 000000000000..c0ee8897f077 --- /dev/null +++ b/data/software/os/osome.json @@ -0,0 +1,8 @@ +{ + "slug": "osome", + "name": "OSoMe", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084444" + ] +} diff --git a/data/software/os/osqp.json b/data/software/os/osqp.json new file mode 100644 index 000000000000..71bd4b9c88bf --- /dev/null +++ b/data/software/os/osqp.json @@ -0,0 +1,18 @@ +{ + "slug": "osqp", + "name": "osqp", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107384640" + ], + "developers": [ + "Bartolomeo Stellato" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "licenses": [ + "Apache Software License 2.0" + ] +} diff --git a/data/software/os/osteoware.json b/data/software/os/osteoware.json new file mode 100644 index 000000000000..2b60eca5c58f --- /dev/null +++ b/data/software/os/osteoware.json @@ -0,0 +1,8 @@ +{ + "slug": "osteoware", + "name": "Osteoware", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25313116" + ] +} diff --git a/data/software/os/ostorybook.json b/data/software/os/ostorybook.json new file mode 100644 index 000000000000..c7dd8924c664 --- /dev/null +++ b/data/software/os/ostorybook.json @@ -0,0 +1,16 @@ +{ + "slug": "ostorybook", + "name": "oStorybook", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120071694" + ], + "operating_systems": [ + "Mac operating system", + "cross-platform", + "Microsoft Windows" + ], + "licenses": [ + "GNU General Public License, version 3.0" + ] +} diff --git a/data/software/ot/otranscribe.json b/data/software/ot/otranscribe.json new file mode 100644 index 000000000000..13ee06e90d43 --- /dev/null +++ b/data/software/ot/otranscribe.json @@ -0,0 +1,11 @@ +{ + "slug": "otranscribe", + "name": "oTranscribe", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107035658" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/ou/ourtunes.json b/data/software/ou/ourtunes.json new file mode 100644 index 000000000000..9e9097966c63 --- /dev/null +++ b/data/software/ou/ourtunes.json @@ -0,0 +1,11 @@ +{ + "slug": "ourtunes", + "name": "ourTunes", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7110547" + ], + "programming_languages": [ + "Java" + ] +} diff --git a/data/software/ou/out-of-the-park-baseball-10.json b/data/software/ou/out-of-the-park-baseball-10.json new file mode 100644 index 000000000000..da9a082ab472 --- /dev/null +++ b/data/software/ou/out-of-the-park-baseball-10.json @@ -0,0 +1,8 @@ +{ + "slug": "out-of-the-park-baseball-10", + "name": "Out of the Park Baseball 10", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140361299" + ] +} diff --git a/data/software/ou/outernet.json b/data/software/ou/outernet.json new file mode 100644 index 000000000000..5c6fda39b1ba --- /dev/null +++ b/data/software/ou/outernet.json @@ -0,0 +1,14 @@ +{ + "slug": "outernet", + "name": "Outernet", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107711183" + ], + "developers": [ + "Vodafone" + ], + "operating_systems": [ + "cross-platform" + ] +} diff --git a/data/software/ou/outline-of-free-software.json b/data/software/ou/outline-of-free-software.json new file mode 100644 index 000000000000..a61a685a9f1e --- /dev/null +++ b/data/software/ou/outline-of-free-software.json @@ -0,0 +1,8 @@ +{ + "slug": "outline-of-free-software", + "name": "Outline of free software", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7112641" + ] +} diff --git a/data/software/ou/outlook-for-windows.json b/data/software/ou/outlook-for-windows.json new file mode 100644 index 000000000000..627969acea39 --- /dev/null +++ b/data/software/ou/outlook-for-windows.json @@ -0,0 +1,8 @@ +{ + "slug": "outlook-for-windows", + "name": "Outlook for Windows", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123125222" + ] +} diff --git a/data/software/ou/outlook-groups.json b/data/software/ou/outlook-groups.json new file mode 100644 index 000000000000..d5ad0e774b4b --- /dev/null +++ b/data/software/ou/outlook-groups.json @@ -0,0 +1,11 @@ +{ + "slug": "outlook-groups", + "name": "Outlook Groups", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q21043339" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/ou/outlook-on-the-web.json b/data/software/ou/outlook-on-the-web.json new file mode 100644 index 000000000000..b0cfce6913d0 --- /dev/null +++ b/data/software/ou/outlook-on-the-web.json @@ -0,0 +1,11 @@ +{ + "slug": "outlook-on-the-web", + "name": "Outlook on the web", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1753743" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/ou/outpost-firewall-pro.json b/data/software/ou/outpost-firewall-pro.json new file mode 100644 index 000000000000..df24f29256b3 --- /dev/null +++ b/data/software/ou/outpost-firewall-pro.json @@ -0,0 +1,14 @@ +{ + "slug": "outpost-firewall-pro", + "name": "Outpost Firewall Pro", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2995594" + ], + "developers": [ + "Agnitum" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/ou/outpost-security-suite.json b/data/software/ou/outpost-security-suite.json new file mode 100644 index 000000000000..0097885b06f2 --- /dev/null +++ b/data/software/ou/outpost-security-suite.json @@ -0,0 +1,11 @@ +{ + "slug": "outpost-security-suite", + "name": "Outpost Security Suite", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17081129" + ], + "developers": [ + "Agnitum" + ] +} diff --git a/data/software/ov/overbite.json b/data/software/ov/overbite.json new file mode 100644 index 000000000000..ab6518c279e4 --- /dev/null +++ b/data/software/ov/overbite.json @@ -0,0 +1,8 @@ +{ + "slug": "overbite", + "name": "Overbite", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11697062" + ] +} diff --git a/data/software/ov/overcast-media.json b/data/software/ov/overcast-media.json new file mode 100644 index 000000000000..2a58132ad111 --- /dev/null +++ b/data/software/ov/overcast-media.json @@ -0,0 +1,11 @@ +{ + "slug": "overcast-media", + "name": "Overcast Media", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7113584" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/ov/overdrive-media-console.json b/data/software/ov/overdrive-media-console.json new file mode 100644 index 000000000000..6635315049e0 --- /dev/null +++ b/data/software/ov/overdrive-media-console.json @@ -0,0 +1,16 @@ +{ + "slug": "overdrive-media-console", + "name": "OverDrive Media Console", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7113376" + ], + "developers": [ + "OverDrive, Inc." + ], + "operating_systems": [ + "BlackBerry OS", + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/software/ov/overflow.json b/data/software/ov/overflow.json new file mode 100644 index 000000000000..9f6ad8d53737 --- /dev/null +++ b/data/software/ov/overflow.json @@ -0,0 +1,8 @@ +{ + "slug": "overflow", + "name": "Overflow", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7113650" + ] +} diff --git a/data/software/ov/oversim.json b/data/software/ov/oversim.json new file mode 100644 index 000000000000..9df838eb5385 --- /dev/null +++ b/data/software/ov/oversim.json @@ -0,0 +1,12 @@ +{ + "slug": "oversim", + "name": "OverSim", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7113378" + ], + "release_date": "2006-01-01", + "operating_systems": [ + "cross-platform" + ] +} diff --git a/data/software/ov/overtone.json b/data/software/ov/overtone.json new file mode 100644 index 000000000000..680557f9f3ff --- /dev/null +++ b/data/software/ov/overtone.json @@ -0,0 +1,11 @@ +{ + "slug": "overtone", + "name": "Overtone", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q29364773" + ], + "programming_languages": [ + "Clojure" + ] +} diff --git a/data/software/ov/overview-of-restful-api-description-languages.json b/data/software/ov/overview-of-restful-api-description-languages.json new file mode 100644 index 000000000000..e6614e997184 --- /dev/null +++ b/data/software/ov/overview-of-restful-api-description-languages.json @@ -0,0 +1,8 @@ +{ + "slug": "overview-of-restful-api-description-languages", + "name": "Overview of RESTful API Description Languages", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q19599507" + ] +} diff --git a/data/software/ov/overview.json b/data/software/ov/overview.json new file mode 100644 index 000000000000..232c3797bdb2 --- /dev/null +++ b/data/software/ov/overview.json @@ -0,0 +1,8 @@ +{ + "slug": "overview", + "name": "Overview", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084445" + ] +} diff --git a/data/software/ov/overwolf.json b/data/software/ov/overwolf.json new file mode 100644 index 000000000000..2acd4650a721 --- /dev/null +++ b/data/software/ov/overwolf.json @@ -0,0 +1,8 @@ +{ + "slug": "overwolf", + "name": "Overwolf", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16927950" + ] +} diff --git a/data/software/ov/ovn.json b/data/software/ov/ovn.json new file mode 100644 index 000000000000..3050cbeac665 --- /dev/null +++ b/data/software/ov/ovn.json @@ -0,0 +1,8 @@ +{ + "slug": "ovn", + "name": "OVN", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q55627199" + ] +} diff --git a/data/software/ow/owbasic.json b/data/software/ow/owbasic.json new file mode 100644 index 000000000000..7da0aea78c2e --- /dev/null +++ b/data/software/ow/owbasic.json @@ -0,0 +1,8 @@ +{ + "slug": "owbasic", + "name": "OWBasic", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2008257" + ] +} diff --git a/data/software/ow/owfs.json b/data/software/ow/owfs.json new file mode 100644 index 000000000000..9a31ef996a97 --- /dev/null +++ b/data/software/ow/owfs.json @@ -0,0 +1,8 @@ +{ + "slug": "owfs", + "name": "OWFS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62856928" + ] +} diff --git a/data/software/ow/owj-crm.json b/data/software/ow/owj-crm.json new file mode 100644 index 000000000000..ef0753fa6c6c --- /dev/null +++ b/data/software/ow/owj-crm.json @@ -0,0 +1,11 @@ +{ + "slug": "owj-crm", + "name": "Owj CRM", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136766120" + ], + "developers": [ + "Owj CRM" + ] +} diff --git a/data/software/ow/owl-lisp.json b/data/software/ow/owl-lisp.json new file mode 100644 index 000000000000..554eded7e50b --- /dev/null +++ b/data/software/ow/owl-lisp.json @@ -0,0 +1,11 @@ +{ + "slug": "owl-lisp", + "name": "Owl Lisp", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7114855" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/ow/owlready2.json b/data/software/ow/owlready2.json new file mode 100644 index 000000000000..fe04e6bda251 --- /dev/null +++ b/data/software/ow/owlready2.json @@ -0,0 +1,17 @@ +{ + "slug": "owlready2", + "name": "Owlready2", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116924857" + ], + "programming_languages": [ + "Python" + ], + "licenses": [ + "proprietary license" + ], + "genres": [ + "application programming interface" + ] +} diff --git a/data/software/ow/owncast.json b/data/software/ow/owncast.json new file mode 100644 index 000000000000..129381850fc7 --- /dev/null +++ b/data/software/ow/owncast.json @@ -0,0 +1,17 @@ +{ + "slug": "owncast", + "name": "Owncast", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q104533790" + ], + "operating_systems": [ + "cross-platform" + ], + "programming_languages": [ + "Go" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/ox/oxford-concordance-program-ocp.json b/data/software/ox/oxford-concordance-program-ocp.json new file mode 100644 index 000000000000..cc4abb398c1a --- /dev/null +++ b/data/software/ox/oxford-concordance-program-ocp.json @@ -0,0 +1,8 @@ +{ + "slug": "oxford-concordance-program-ocp", + "name": "Oxford Concordance Program (OCP)", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087693" + ] +} diff --git a/data/software/oy/oyranos.json b/data/software/oy/oyranos.json new file mode 100644 index 000000000000..cad012654dd7 --- /dev/null +++ b/data/software/oy/oyranos.json @@ -0,0 +1,8 @@ +{ + "slug": "oyranos", + "name": "oyranos", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975316" + ] +} diff --git a/data/software/oz/oziexplorer.json b/data/software/oz/oziexplorer.json new file mode 100644 index 000000000000..256518e554e7 --- /dev/null +++ b/data/software/oz/oziexplorer.json @@ -0,0 +1,8 @@ +{ + "slug": "oziexplorer", + "name": "OziExplorer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2043099" + ] +} diff --git a/data/software/oz/ozwin.json b/data/software/oz/ozwin.json new file mode 100644 index 000000000000..14420b0e8cf9 --- /dev/null +++ b/data/software/oz/ozwin.json @@ -0,0 +1,8 @@ +{ + "slug": "ozwin", + "name": "OzWin", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7116407" + ] +} diff --git a/data/software/p-/p-atnik.json b/data/software/p-/p-atnik.json new file mode 100644 index 000000000000..93422f5487b6 --- /dev/null +++ b/data/software/p-/p-atnik.json @@ -0,0 +1,8 @@ +{ + "slug": "p-atnik", + "name": "Płatnik", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11832559" + ] +} diff --git a/data/software/p-/p-cad.json b/data/software/p-/p-cad.json new file mode 100644 index 000000000000..351cd0090281 --- /dev/null +++ b/data/software/p-/p-cad.json @@ -0,0 +1,8 @@ +{ + "slug": "p-cad", + "name": "P-CAD", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7116887" + ] +} diff --git a/data/software/p-/p-i-p-s.json b/data/software/p-/p-i-p-s.json new file mode 100644 index 000000000000..5099d6e137d8 --- /dev/null +++ b/data/software/p-/p-i-p-s.json @@ -0,0 +1,11 @@ +{ + "slug": "p-i-p-s", + "name": "P.I.P.S.", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2044235" + ], + "operating_systems": [ + "Symbian" + ] +} diff --git a/data/software/p0/p0f.json b/data/software/p0/p0f.json new file mode 100644 index 000000000000..2fcf0fad3a78 --- /dev/null +++ b/data/software/p0/p0f.json @@ -0,0 +1,11 @@ +{ + "slug": "p0f", + "name": "p0f", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3023881" + ], + "developers": [ + "Michał Zalewski" + ] +} diff --git a/data/software/p3/p3d.json b/data/software/p3/p3d.json new file mode 100644 index 000000000000..e22b1927af3c --- /dev/null +++ b/data/software/p3/p3d.json @@ -0,0 +1,8 @@ +{ + "slug": "p3d", + "name": "p3d", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975317" + ] +} diff --git a/data/software/pa/pacbase.json b/data/software/pa/pacbase.json new file mode 100644 index 000000000000..9f511c183776 --- /dev/null +++ b/data/software/pa/pacbase.json @@ -0,0 +1,11 @@ +{ + "slug": "pacbase", + "name": "Pacbase", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q458034" + ], + "developers": [ + "IBM" + ] +} diff --git a/data/software/pa/pachyderm.json b/data/software/pa/pachyderm.json new file mode 100644 index 000000000000..07c84f64201d --- /dev/null +++ b/data/software/pa/pachyderm.json @@ -0,0 +1,8 @@ +{ + "slug": "pachyderm", + "name": "pachyderm", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084446" + ] +} diff --git a/data/software/pa/pack.json b/data/software/pa/pack.json new file mode 100644 index 000000000000..7739d3fb6a5f --- /dev/null +++ b/data/software/pa/pack.json @@ -0,0 +1,8 @@ +{ + "slug": "pack", + "name": "pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11239298" + ] +} diff --git a/data/software/pa/pack200.json b/data/software/pa/pack200.json new file mode 100644 index 000000000000..ff97ebb0cf0d --- /dev/null +++ b/data/software/pa/pack200.json @@ -0,0 +1,8 @@ +{ + "slug": "pack200", + "name": "Pack200", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1227683" + ] +} diff --git a/data/software/pa/packageforge.json b/data/software/pa/packageforge.json new file mode 100644 index 000000000000..145f2b6e6caa --- /dev/null +++ b/data/software/pa/packageforge.json @@ -0,0 +1,11 @@ +{ + "slug": "packageforge", + "name": "PackageForge", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7122882" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/pa/packard-bell-navigator.json b/data/software/pa/packard-bell-navigator.json new file mode 100644 index 000000000000..db4ada31b468 --- /dev/null +++ b/data/software/pa/packard-bell-navigator.json @@ -0,0 +1,14 @@ +{ + "slug": "packard-bell-navigator", + "name": "Packard Bell Navigator", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7122914" + ], + "developers": [ + "Packard Bell" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/pa/packeth.json b/data/software/pa/packeth.json new file mode 100644 index 000000000000..906f430f87fa --- /dev/null +++ b/data/software/pa/packeth.json @@ -0,0 +1,8 @@ +{ + "slug": "packeth", + "name": "packETH", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62856974" + ] +} diff --git a/data/software/pa/packit.json b/data/software/pa/packit.json new file mode 100644 index 000000000000..9c4af1aff1a6 --- /dev/null +++ b/data/software/pa/packit.json @@ -0,0 +1,11 @@ +{ + "slug": "packit", + "name": "PackIt", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7122860" + ], + "operating_systems": [ + "Classic Mac OS" + ] +} diff --git a/data/software/pa/pacte.json b/data/software/pa/pacte.json new file mode 100644 index 000000000000..809574503aa3 --- /dev/null +++ b/data/software/pa/pacte.json @@ -0,0 +1,8 @@ +{ + "slug": "pacte", + "name": "PACTE", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084447" + ] +} diff --git a/data/software/pa/paedml.json b/data/software/pa/paedml.json new file mode 100644 index 000000000000..46a7b5536ac1 --- /dev/null +++ b/data/software/pa/paedml.json @@ -0,0 +1,8 @@ +{ + "slug": "paedml", + "name": "PaedML", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1145681" + ] +} diff --git a/data/software/pa/paessler-prtg.json b/data/software/pa/paessler-prtg.json new file mode 100644 index 000000000000..af036297bf44 --- /dev/null +++ b/data/software/pa/paessler-prtg.json @@ -0,0 +1,8 @@ +{ + "slug": "paessler-prtg", + "name": "Paessler PRTG", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q545856" + ] +} diff --git a/data/software/pa/pagestream.json b/data/software/pa/pagestream.json new file mode 100644 index 000000000000..911d8d8aa8ec --- /dev/null +++ b/data/software/pa/pagestream.json @@ -0,0 +1,8 @@ +{ + "slug": "pagestream", + "name": "PageStream", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2046147" + ] +} diff --git a/data/software/pa/paint-the-town-red.json b/data/software/pa/paint-the-town-red.json new file mode 100644 index 000000000000..40a86eb9373d --- /dev/null +++ b/data/software/pa/paint-the-town-red.json @@ -0,0 +1,12 @@ +{ + "slug": "paint-the-town-red", + "name": "Paint the Town Red", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q97362181" + ], + "release_date": "2015-10-13", + "genres": [ + "beat 'em up" + ] +} diff --git a/data/software/pa/painworth.json b/data/software/pa/painworth.json new file mode 100644 index 000000000000..514cf504bab2 --- /dev/null +++ b/data/software/pa/painworth.json @@ -0,0 +1,8 @@ +{ + "slug": "painworth", + "name": "Painworth", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106609898" + ] +} diff --git a/data/software/pa/pakka-khata.json b/data/software/pa/pakka-khata.json new file mode 100644 index 000000000000..61e2fb8a5fc3 --- /dev/null +++ b/data/software/pa/pakka-khata.json @@ -0,0 +1,11 @@ +{ + "slug": "pakka-khata", + "name": "Pakka Khata", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140021989" + ], + "developers": [ + "Techzoq (Private) Limited" + ] +} diff --git a/data/software/pa/paktor.json b/data/software/pa/paktor.json new file mode 100644 index 000000000000..a036156de678 --- /dev/null +++ b/data/software/pa/paktor.json @@ -0,0 +1,11 @@ +{ + "slug": "paktor", + "name": "Paktor", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q23680026" + ], + "operating_systems": [ + "iOS" + ] +} diff --git a/data/software/pa/palantir-gotham.json b/data/software/pa/palantir-gotham.json new file mode 100644 index 000000000000..2b6b8078e2ba --- /dev/null +++ b/data/software/pa/palantir-gotham.json @@ -0,0 +1,11 @@ +{ + "slug": "palantir-gotham", + "name": "Palantir Gotham", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q96212573" + ], + "developers": [ + "Palantir Technologies" + ] +} diff --git a/data/software/pa/palco-mp3.json b/data/software/pa/palco-mp3.json new file mode 100644 index 000000000000..ca62db8fdff3 --- /dev/null +++ b/data/software/pa/palco-mp3.json @@ -0,0 +1,8 @@ +{ + "slug": "palco-mp3", + "name": "Palco MP3", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18279331" + ] +} diff --git a/data/software/pa/paletton-color-scheme-designer-4.json b/data/software/pa/paletton-color-scheme-designer-4.json new file mode 100644 index 000000000000..218589d9754c --- /dev/null +++ b/data/software/pa/paletton-color-scheme-designer-4.json @@ -0,0 +1,8 @@ +{ + "slug": "paletton-color-scheme-designer-4", + "name": "Paletton (Color Scheme Designer 4)", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084448" + ] +} diff --git a/data/software/pa/palisade.json b/data/software/pa/palisade.json new file mode 100644 index 000000000000..0cd18c7d76d1 --- /dev/null +++ b/data/software/pa/palisade.json @@ -0,0 +1,8 @@ +{ + "slug": "palisade", + "name": "PALISADE", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q114434667" + ] +} diff --git a/data/software/pa/palladio.json b/data/software/pa/palladio.json new file mode 100644 index 000000000000..f63d669b9993 --- /dev/null +++ b/data/software/pa/palladio.json @@ -0,0 +1,11 @@ +{ + "slug": "palladio", + "name": "Palladio", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084450" + ], + "licenses": [ + "3-clause BSD License" + ] +} diff --git a/data/software/pa/palm-desktop.json b/data/software/pa/palm-desktop.json new file mode 100644 index 000000000000..48c498cb139e --- /dev/null +++ b/data/software/pa/palm-desktop.json @@ -0,0 +1,15 @@ +{ + "slug": "palm-desktop", + "name": "Palm Desktop", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2048106" + ], + "developers": [ + "Access Systems Americas" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/software/pa/palmyra.json b/data/software/pa/palmyra.json new file mode 100644 index 000000000000..3286881c1807 --- /dev/null +++ b/data/software/pa/palmyra.json @@ -0,0 +1,18 @@ +{ + "slug": "palmyra", + "name": "Palmyra", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134726843" + ], + "developers": [ + "Computational Approaches to Modeling Language Lab" + ], + "programming_languages": [ + "HTML", + "Cascading Style Sheets" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/pa/palo.json b/data/software/pa/palo.json new file mode 100644 index 000000000000..d0b7d395cc07 --- /dev/null +++ b/data/software/pa/palo.json @@ -0,0 +1,8 @@ +{ + "slug": "palo", + "name": "palo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975318" + ] +} diff --git a/data/software/pa/paludis.json b/data/software/pa/paludis.json new file mode 100644 index 000000000000..7276755fb88f --- /dev/null +++ b/data/software/pa/paludis.json @@ -0,0 +1,8 @@ +{ + "slug": "paludis", + "name": "Paludis", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4046355" + ] +} diff --git a/data/software/pa/pam-crash.json b/data/software/pa/pam-crash.json new file mode 100644 index 000000000000..c9c2b7471ac7 --- /dev/null +++ b/data/software/pa/pam-crash.json @@ -0,0 +1,8 @@ +{ + "slug": "pam-crash", + "name": "Pam-Crash", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7128901" + ] +} diff --git a/data/software/pa/pamix.json b/data/software/pa/pamix.json new file mode 100644 index 000000000000..f3d05be91013 --- /dev/null +++ b/data/software/pa/pamix.json @@ -0,0 +1,11 @@ +{ + "slug": "pamix", + "name": "pamix", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975319" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/pa/pan-os.json b/data/software/pa/pan-os.json new file mode 100644 index 000000000000..5ddb94c83450 --- /dev/null +++ b/data/software/pa/pan-os.json @@ -0,0 +1,11 @@ +{ + "slug": "pan-os", + "name": "PAN-OS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q56728812" + ], + "developers": [ + "Palo Alto Networks" + ] +} diff --git a/data/software/pa/panda-and-csv-of-tweets.json b/data/software/pa/panda-and-csv-of-tweets.json new file mode 100644 index 000000000000..c57dbb8e0898 --- /dev/null +++ b/data/software/pa/panda-and-csv-of-tweets.json @@ -0,0 +1,8 @@ +{ + "slug": "panda-and-csv-of-tweets", + "name": "Panda and CSV of Tweets", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084451" + ] +} diff --git a/data/software/pa/panda-dataframe-manipulation.json b/data/software/pa/panda-dataframe-manipulation.json new file mode 100644 index 000000000000..02892b72791b --- /dev/null +++ b/data/software/pa/panda-dataframe-manipulation.json @@ -0,0 +1,8 @@ +{ + "slug": "panda-dataframe-manipulation", + "name": "Panda Dataframe Manipulation", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084452" + ] +} diff --git a/data/software/pa/pandion.json b/data/software/pa/pandion.json new file mode 100644 index 000000000000..4285f30298b3 --- /dev/null +++ b/data/software/pa/pandion.json @@ -0,0 +1,8 @@ +{ + "slug": "pandion", + "name": "Pandion", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q58561" + ] +} diff --git a/data/software/pa/pandix.json b/data/software/pa/pandix.json new file mode 100644 index 000000000000..3da88d451306 --- /dev/null +++ b/data/software/pa/pandix.json @@ -0,0 +1,8 @@ +{ + "slug": "pandix", + "name": "Pandix", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q21421147" + ] +} diff --git a/data/software/pa/pandora-eclipse-of-nashira.json b/data/software/pa/pandora-eclipse-of-nashira.json new file mode 100644 index 000000000000..dea5cae43784 --- /dev/null +++ b/data/software/pa/pandora-eclipse-of-nashira.json @@ -0,0 +1,8 @@ +{ + "slug": "pandora-eclipse-of-nashira", + "name": "Pandora: Eclipse of Nashira", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140420121" + ] +} diff --git a/data/software/pa/pango.json b/data/software/pa/pango.json new file mode 100644 index 000000000000..032e81e8c919 --- /dev/null +++ b/data/software/pa/pango.json @@ -0,0 +1,8 @@ +{ + "slug": "pango", + "name": "Pango", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16130355" + ] +} diff --git a/data/software/pa/pangolin.json b/data/software/pa/pangolin.json new file mode 100644 index 000000000000..f742eba1b423 --- /dev/null +++ b/data/software/pa/pangolin.json @@ -0,0 +1,15 @@ +{ + "slug": "pangolin", + "name": "PANGOLIN", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105185169" + ], + "release_date": "2020-04-30", + "programming_languages": [ + "Python" + ], + "licenses": [ + "GNU General Public License, version 3.0" + ] +} diff --git a/data/software/pa/pangu-team.json b/data/software/pa/pangu-team.json new file mode 100644 index 000000000000..674acc608d98 --- /dev/null +++ b/data/software/pa/pangu-team.json @@ -0,0 +1,12 @@ +{ + "slug": "pangu-team", + "name": "Pangu Team", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17502457" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/software/pa/pangu-utility.json b/data/software/pa/pangu-utility.json new file mode 100644 index 000000000000..9fb1ca1612dc --- /dev/null +++ b/data/software/pa/pangu-utility.json @@ -0,0 +1,8 @@ +{ + "slug": "pangu-utility", + "name": "Pangu utility", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7131002" + ] +} diff --git a/data/software/pa/panorama-q7131493.json b/data/software/pa/panorama-q7131493.json new file mode 100644 index 000000000000..ea29dc5958ba --- /dev/null +++ b/data/software/pa/panorama-q7131493.json @@ -0,0 +1,9 @@ +{ + "slug": "panorama-q7131493", + "name": "Panorama", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7131493" + ], + "release_date": "2004-06-01" +} diff --git a/data/software/pa/panorama-q76186079.json b/data/software/pa/panorama-q76186079.json new file mode 100644 index 000000000000..8a225fcb1312 --- /dev/null +++ b/data/software/pa/panorama-q76186079.json @@ -0,0 +1,8 @@ +{ + "slug": "panorama-q76186079", + "name": "Panorama", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76186079" + ] +} diff --git a/data/software/pa/panorama.json b/data/software/pa/panorama.json new file mode 100644 index 000000000000..3fd2dda172a6 --- /dev/null +++ b/data/software/pa/panorama.json @@ -0,0 +1,8 @@ +{ + "slug": "panorama", + "name": "Panorama", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7131495" + ] +} diff --git a/data/software/pa/panta-rhei-game-engine.json b/data/software/pa/panta-rhei-game-engine.json new file mode 100644 index 000000000000..96db223257e5 --- /dev/null +++ b/data/software/pa/panta-rhei-game-engine.json @@ -0,0 +1,11 @@ +{ + "slug": "panta-rhei-game-engine", + "name": "Panta Rhei (game engine)", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17042691" + ], + "developers": [ + "Capcom" + ] +} diff --git a/data/software/pa/panvs.json b/data/software/pa/panvs.json new file mode 100644 index 000000000000..61505d3c0303 --- /dev/null +++ b/data/software/pa/panvs.json @@ -0,0 +1,8 @@ +{ + "slug": "panvs", + "name": "PANVS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084453" + ] +} diff --git a/data/software/pa/paparazzi-project.json b/data/software/pa/paparazzi-project.json new file mode 100644 index 000000000000..3451ee5ea5fd --- /dev/null +++ b/data/software/pa/paparazzi-project.json @@ -0,0 +1,8 @@ +{ + "slug": "paparazzi-project", + "name": "Paparazzi Project", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q516976" + ] +} diff --git a/data/software/pa/paper-machines.json b/data/software/pa/paper-machines.json new file mode 100644 index 000000000000..a1147f977f32 --- /dev/null +++ b/data/software/pa/paper-machines.json @@ -0,0 +1,8 @@ +{ + "slug": "paper-machines", + "name": "Paper Machines", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084456" + ] +} diff --git a/data/software/pa/paperkey.json b/data/software/pa/paperkey.json new file mode 100644 index 000000000000..8f5c1a39057c --- /dev/null +++ b/data/software/pa/paperkey.json @@ -0,0 +1,11 @@ +{ + "slug": "paperkey", + "name": "Paperkey", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62856911" + ], + "licenses": [ + "GNU General Public License" + ] +} diff --git a/data/software/pa/paperpile.json b/data/software/pa/paperpile.json new file mode 100644 index 000000000000..6135ab07eb1a --- /dev/null +++ b/data/software/pa/paperpile.json @@ -0,0 +1,8 @@ +{ + "slug": "paperpile", + "name": "Paperpile", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18158204" + ] +} diff --git a/data/software/pa/paperport.json b/data/software/pa/paperport.json new file mode 100644 index 000000000000..8f2d69e82bf1 --- /dev/null +++ b/data/software/pa/paperport.json @@ -0,0 +1,11 @@ +{ + "slug": "paperport", + "name": "PaperPort", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7132578" + ], + "developers": [ + "Nuance Communications" + ] +} diff --git a/data/software/pa/papertracer.json b/data/software/pa/papertracer.json new file mode 100644 index 000000000000..c56953dea547 --- /dev/null +++ b/data/software/pa/papertracer.json @@ -0,0 +1,8 @@ +{ + "slug": "papertracer", + "name": "PaperTracer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28568013" + ] +} diff --git a/data/software/pa/paprika-app.json b/data/software/pa/paprika-app.json new file mode 100644 index 000000000000..cf263b5279dc --- /dev/null +++ b/data/software/pa/paprika-app.json @@ -0,0 +1,8 @@ +{ + "slug": "paprika-app", + "name": "Paprika (app)", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124462311" + ] +} diff --git a/data/software/pa/paps.json b/data/software/pa/paps.json new file mode 100644 index 000000000000..d7e7f65b4096 --- /dev/null +++ b/data/software/pa/paps.json @@ -0,0 +1,8 @@ +{ + "slug": "paps", + "name": "paps", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60917923" + ] +} diff --git a/data/software/pa/papyri.json b/data/software/pa/papyri.json new file mode 100644 index 000000000000..2f13c1378f43 --- /dev/null +++ b/data/software/pa/papyri.json @@ -0,0 +1,11 @@ +{ + "slug": "papyri", + "name": "papyri", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113050034" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/pa/papyrus-autor-q106144081.json b/data/software/pa/papyrus-autor-q106144081.json new file mode 100644 index 000000000000..5b005e1ef65d --- /dev/null +++ b/data/software/pa/papyrus-autor-q106144081.json @@ -0,0 +1,12 @@ +{ + "slug": "papyrus-autor-q106144081", + "name": "Papyrus Autor", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106144081" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/software/pa/papyrus-autor.json b/data/software/pa/papyrus-autor.json new file mode 100644 index 000000000000..bb87eea121f8 --- /dev/null +++ b/data/software/pa/papyrus-autor.json @@ -0,0 +1,8 @@ +{ + "slug": "papyrus-autor", + "name": "Papyrus Autor", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1721110" + ] +} diff --git a/data/software/pa/para-mail.json b/data/software/pa/para-mail.json new file mode 100644 index 000000000000..147de9bd84cb --- /dev/null +++ b/data/software/pa/para-mail.json @@ -0,0 +1,8 @@ +{ + "slug": "para-mail", + "name": "Para-Mail", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7133615" + ] +} diff --git a/data/software/pa/paradox.json b/data/software/pa/paradox.json new file mode 100644 index 000000000000..017aaae9459d --- /dev/null +++ b/data/software/pa/paradox.json @@ -0,0 +1,8 @@ +{ + "slug": "paradox", + "name": "Paradox", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7134438" + ] +} diff --git a/data/software/pa/paragon.json b/data/software/pa/paragon.json new file mode 100644 index 000000000000..a7f2cb5b1560 --- /dev/null +++ b/data/software/pa/paragon.json @@ -0,0 +1,8 @@ +{ + "slug": "paragon", + "name": "Paragon", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3363445" + ] +} diff --git a/data/software/pa/parakey.json b/data/software/pa/parakey.json new file mode 100644 index 000000000000..dddf67151ef8 --- /dev/null +++ b/data/software/pa/parakey.json @@ -0,0 +1,12 @@ +{ + "slug": "parakey", + "name": "Parakey", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7134830" + ], + "developers": [ + "Joe Hewitt", + "Blake Ross" + ] +} diff --git a/data/software/pa/parallels-ras.json b/data/software/pa/parallels-ras.json new file mode 100644 index 000000000000..86f5481e8937 --- /dev/null +++ b/data/software/pa/parallels-ras.json @@ -0,0 +1,8 @@ +{ + "slug": "parallels-ras", + "name": "Parallels RAS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60765799" + ] +} diff --git a/data/software/pa/parallels-workstation-extreme.json b/data/software/pa/parallels-workstation-extreme.json new file mode 100644 index 000000000000..160baaf75373 --- /dev/null +++ b/data/software/pa/parallels-workstation-extreme.json @@ -0,0 +1,11 @@ +{ + "slug": "parallels-workstation-extreme", + "name": "Parallels Workstation Extreme", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7135039" + ], + "developers": [ + "Parallels" + ] +} diff --git a/data/software/pa/parameter-validation.json b/data/software/pa/parameter-validation.json new file mode 100644 index 000000000000..66bed88eeca7 --- /dev/null +++ b/data/software/pa/parameter-validation.json @@ -0,0 +1,8 @@ +{ + "slug": "parameter-validation", + "name": "Parameter validation", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7135214" + ] +} diff --git a/data/software/pa/parametric-memory.json b/data/software/pa/parametric-memory.json new file mode 100644 index 000000000000..5b91eb5f6b4e --- /dev/null +++ b/data/software/pa/parametric-memory.json @@ -0,0 +1,8 @@ +{ + "slug": "parametric-memory", + "name": "Parametric Memory", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140446437" + ] +} diff --git a/data/software/pa/paramind.json b/data/software/pa/paramind.json new file mode 100644 index 000000000000..b93a85ed9b65 --- /dev/null +++ b/data/software/pa/paramind.json @@ -0,0 +1,8 @@ +{ + "slug": "paramind", + "name": "Paramind", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7135250" + ] +} diff --git a/data/software/pa/parasoft-c-c-test.json b/data/software/pa/parasoft-c-c-test.json new file mode 100644 index 000000000000..0dd060e981d4 --- /dev/null +++ b/data/software/pa/parasoft-c-c-test.json @@ -0,0 +1,11 @@ +{ + "slug": "parasoft-c-c-test", + "name": "Parasoft C/C++test", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7135974" + ], + "developers": [ + "Parasoft" + ] +} diff --git a/data/software/pa/parasoft-concerto.json b/data/software/pa/parasoft-concerto.json new file mode 100644 index 000000000000..d316bacb4b78 --- /dev/null +++ b/data/software/pa/parasoft-concerto.json @@ -0,0 +1,11 @@ +{ + "slug": "parasoft-concerto", + "name": "Parasoft Concerto", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7135973" + ], + "developers": [ + "Parasoft" + ] +} diff --git a/data/software/pa/parasoft-virtualize.json b/data/software/pa/parasoft-virtualize.json new file mode 100644 index 000000000000..f18f9df4b258 --- /dev/null +++ b/data/software/pa/parasoft-virtualize.json @@ -0,0 +1,11 @@ +{ + "slug": "parasoft-virtualize", + "name": "Parasoft Virtualize", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7135975" + ], + "developers": [ + "Parasoft" + ] +} diff --git a/data/software/pa/parasurf.json b/data/software/pa/parasurf.json new file mode 100644 index 000000000000..a51eefe17ccf --- /dev/null +++ b/data/software/pa/parasurf.json @@ -0,0 +1,8 @@ +{ + "slug": "parasurf", + "name": "Parasurf", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16335195" + ] +} diff --git a/data/software/pa/paratec.json b/data/software/pa/paratec.json new file mode 100644 index 000000000000..939a8f15f8ad --- /dev/null +++ b/data/software/pa/paratec.json @@ -0,0 +1,11 @@ +{ + "slug": "paratec", + "name": "PARATEC", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7118197" + ], + "developers": [ + "Lawrence Berkeley National Laboratory" + ] +} diff --git a/data/software/pa/parboiled.json b/data/software/pa/parboiled.json new file mode 100644 index 000000000000..79d33bb9c2e5 --- /dev/null +++ b/data/software/pa/parboiled.json @@ -0,0 +1,14 @@ +{ + "slug": "parboiled", + "name": "Parboiled", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7136354" + ], + "programming_languages": [ + "Java" + ], + "licenses": [ + "Apache License" + ] +} diff --git a/data/software/pa/parent-support.json b/data/software/pa/parent-support.json new file mode 100644 index 000000000000..8e74d037026e --- /dev/null +++ b/data/software/pa/parent-support.json @@ -0,0 +1,8 @@ +{ + "slug": "parent-support", + "name": "Parent Support", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136731005" + ] +} diff --git a/data/software/pa/parlatype.json b/data/software/pa/parlatype.json new file mode 100644 index 000000000000..3a681367372d --- /dev/null +++ b/data/software/pa/parlatype.json @@ -0,0 +1,11 @@ +{ + "slug": "parlatype", + "name": "Parlatype", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105076288" + ], + "licenses": [ + "GNU General Public License" + ] +} diff --git a/data/software/pa/parsec.json b/data/software/pa/parsec.json new file mode 100644 index 000000000000..7a5c62754956 --- /dev/null +++ b/data/software/pa/parsec.json @@ -0,0 +1,8 @@ +{ + "slug": "parsec", + "name": "Parsec", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q55629120" + ] +} diff --git a/data/software/pa/parselmouth.json b/data/software/pa/parselmouth.json new file mode 100644 index 000000000000..473d431f0dfc --- /dev/null +++ b/data/software/pa/parselmouth.json @@ -0,0 +1,8 @@ +{ + "slug": "parselmouth", + "name": "Parselmouth", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113680991" + ] +} diff --git a/data/software/pa/parser-1-0.json b/data/software/pa/parser-1-0.json new file mode 100644 index 000000000000..c662def33b07 --- /dev/null +++ b/data/software/pa/parser-1-0.json @@ -0,0 +1,8 @@ +{ + "slug": "parser-1-0", + "name": "Parser 1.0", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087695" + ] +} diff --git a/data/software/pa/parser-tei-neo4j-import.json b/data/software/pa/parser-tei-neo4j-import.json new file mode 100644 index 000000000000..1d183a9742f3 --- /dev/null +++ b/data/software/pa/parser-tei-neo4j-import.json @@ -0,0 +1,8 @@ +{ + "slug": "parser-tei-neo4j-import", + "name": "Parser TEI-Neo4j Import", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087696" + ] +} diff --git a/data/software/pa/parsifal.json b/data/software/pa/parsifal.json new file mode 100644 index 000000000000..a598c418ef74 --- /dev/null +++ b/data/software/pa/parsifal.json @@ -0,0 +1,11 @@ +{ + "slug": "parsifal", + "name": "Parsifal", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110539692" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/pa/participad.json b/data/software/pa/participad.json new file mode 100644 index 000000000000..eb8b6712d4df --- /dev/null +++ b/data/software/pa/participad.json @@ -0,0 +1,8 @@ +{ + "slug": "participad", + "name": "Participad", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084458" + ] +} diff --git a/data/software/pa/partition-saving.json b/data/software/pa/partition-saving.json new file mode 100644 index 000000000000..c8e9814e26c4 --- /dev/null +++ b/data/software/pa/partition-saving.json @@ -0,0 +1,11 @@ +{ + "slug": "partition-saving", + "name": "Partition-Saving", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17146613" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/pa/partitionmagic.json b/data/software/pa/partitionmagic.json new file mode 100644 index 000000000000..adcaf8c3fdce --- /dev/null +++ b/data/software/pa/partitionmagic.json @@ -0,0 +1,15 @@ +{ + "slug": "partitionmagic", + "name": "PartitionMagic", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1473586" + ], + "developers": [ + "PowerQuest", + "Gen Digital" + ], + "operating_systems": [ + "Windows 95" + ] +} diff --git a/data/software/pa/partitur-editor.json b/data/software/pa/partitur-editor.json new file mode 100644 index 000000000000..55bd35ffde6d --- /dev/null +++ b/data/software/pa/partitur-editor.json @@ -0,0 +1,8 @@ +{ + "slug": "partitur-editor", + "name": "Partitur Editor", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134729832" + ] +} diff --git a/data/software/pa/parzu.json b/data/software/pa/parzu.json new file mode 100644 index 000000000000..b053f2228d35 --- /dev/null +++ b/data/software/pa/parzu.json @@ -0,0 +1,8 @@ +{ + "slug": "parzu", + "name": "Parzu", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084459" + ] +} diff --git a/data/software/pa/pas754.json b/data/software/pa/pas754.json new file mode 100644 index 000000000000..fe22fb420311 --- /dev/null +++ b/data/software/pa/pas754.json @@ -0,0 +1,8 @@ +{ + "slug": "pas754", + "name": "PAS754", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16956770" + ] +} diff --git a/data/software/pa/pass-sample-size-software.json b/data/software/pa/pass-sample-size-software.json new file mode 100644 index 000000000000..63ed8b87c0ff --- /dev/null +++ b/data/software/pa/pass-sample-size-software.json @@ -0,0 +1,17 @@ +{ + "slug": "pass-sample-size-software", + "name": "PASS Sample Size Software", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7118257" + ], + "developers": [ + "NCSS" + ], + "operating_systems": [ + "Microsoft Windows" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/pa/pass2rent.json b/data/software/pa/pass2rent.json new file mode 100644 index 000000000000..21ed2cd966a6 --- /dev/null +++ b/data/software/pa/pass2rent.json @@ -0,0 +1,14 @@ +{ + "slug": "pass2rent", + "name": "PASS2RENT", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139917383" + ], + "developers": [ + "Odifis" + ], + "publishers": [ + "Odifis" + ] +} diff --git a/data/software/pa/passenger-service-system.json b/data/software/pa/passenger-service-system.json new file mode 100644 index 000000000000..43eb4ae46441 --- /dev/null +++ b/data/software/pa/passenger-service-system.json @@ -0,0 +1,8 @@ +{ + "slug": "passenger-service-system", + "name": "Passenger service system", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3509322" + ] +} diff --git a/data/software/pa/passolo.json b/data/software/pa/passolo.json new file mode 100644 index 000000000000..3be04f3c156b --- /dev/null +++ b/data/software/pa/passolo.json @@ -0,0 +1,13 @@ +{ + "slug": "passolo", + "name": "Passolo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7389463" + ], + "developers": [ + "PASS Engineering", + "RWS Group", + "SDL" + ] +} diff --git a/data/software/pa/passsecurium.json b/data/software/pa/passsecurium.json new file mode 100644 index 000000000000..776b8379d65a --- /dev/null +++ b/data/software/pa/passsecurium.json @@ -0,0 +1,11 @@ +{ + "slug": "passsecurium", + "name": "PassSecurium", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107477769" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/pa/passwdqc.json b/data/software/pa/passwdqc.json new file mode 100644 index 000000000000..80840ee03885 --- /dev/null +++ b/data/software/pa/passwdqc.json @@ -0,0 +1,8 @@ +{ + "slug": "passwdqc", + "name": "passwdqc", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62858900" + ] +} diff --git a/data/software/pa/password-depot.json b/data/software/pa/password-depot.json new file mode 100644 index 000000000000..cdc1abbd3572 --- /dev/null +++ b/data/software/pa/password-depot.json @@ -0,0 +1,8 @@ +{ + "slug": "password-depot", + "name": "Password Depot", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2056185" + ] +} diff --git a/data/software/pa/passwork-q140414609.json b/data/software/pa/passwork-q140414609.json new file mode 100644 index 000000000000..47ac9863f2f3 --- /dev/null +++ b/data/software/pa/passwork-q140414609.json @@ -0,0 +1,17 @@ +{ + "slug": "passwork-q140414609", + "name": "Passwork", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140414609" + ], + "operating_systems": [ + "iOS" + ], + "programming_languages": [ + "PHP" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/pa/passwork.json b/data/software/pa/passwork.json new file mode 100644 index 000000000000..986dd9ca3dbe --- /dev/null +++ b/data/software/pa/passwork.json @@ -0,0 +1,8 @@ +{ + "slug": "passwork", + "name": "Passwork", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140390581" + ] +} diff --git a/data/software/pa/pastel-accounting.json b/data/software/pa/pastel-accounting.json new file mode 100644 index 000000000000..a02030419a56 --- /dev/null +++ b/data/software/pa/pastel-accounting.json @@ -0,0 +1,8 @@ +{ + "slug": "pastel-accounting", + "name": "Pastel Accounting", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7142965" + ] +} diff --git a/data/software/pa/pastperfect-museum-software.json b/data/software/pa/pastperfect-museum-software.json new file mode 100644 index 000000000000..7c8d5f14345e --- /dev/null +++ b/data/software/pa/pastperfect-museum-software.json @@ -0,0 +1,8 @@ +{ + "slug": "pastperfect-museum-software", + "name": "PastPerfect Museum Software", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25111354" + ] +} diff --git a/data/software/pa/pastpin.json b/data/software/pa/pastpin.json new file mode 100644 index 000000000000..8386129509b3 --- /dev/null +++ b/data/software/pa/pastpin.json @@ -0,0 +1,8 @@ +{ + "slug": "pastpin", + "name": "Pastpin", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084461" + ] +} diff --git a/data/software/pa/patatap.json b/data/software/pa/patatap.json new file mode 100644 index 000000000000..37bfd741ac68 --- /dev/null +++ b/data/software/pa/patatap.json @@ -0,0 +1,8 @@ +{ + "slug": "patatap", + "name": "Patatap", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q48806004" + ] +} diff --git a/data/software/pa/patchstack.json b/data/software/pa/patchstack.json new file mode 100644 index 000000000000..917c57aee634 --- /dev/null +++ b/data/software/pa/patchstack.json @@ -0,0 +1,12 @@ +{ + "slug": "patchstack", + "name": "PatchStack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134607627" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/software/pa/patchutils.json b/data/software/pa/patchutils.json new file mode 100644 index 000000000000..23fa17f54413 --- /dev/null +++ b/data/software/pa/patchutils.json @@ -0,0 +1,8 @@ +{ + "slug": "patchutils", + "name": "patchutils", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62863497" + ] +} diff --git a/data/software/pa/patentem.json b/data/software/pa/patentem.json new file mode 100644 index 000000000000..8ceb9fd6c37c --- /dev/null +++ b/data/software/pa/patentem.json @@ -0,0 +1,8 @@ +{ + "slug": "patentem", + "name": "PATENTEM", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q27102687" + ] +} diff --git a/data/software/pa/patient-history-and-physical.json b/data/software/pa/patient-history-and-physical.json new file mode 100644 index 000000000000..9e4b6fb513aa --- /dev/null +++ b/data/software/pa/patient-history-and-physical.json @@ -0,0 +1,8 @@ +{ + "slug": "patient-history-and-physical", + "name": "Patient History and Physical", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121631714" + ] +} diff --git a/data/software/pa/patriot.json b/data/software/pa/patriot.json new file mode 100644 index 000000000000..2a6df7432eab --- /dev/null +++ b/data/software/pa/patriot.json @@ -0,0 +1,21 @@ +{ + "slug": "patriot", + "name": "Patriot", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111467112" + ], + "developers": [ + "Aaroh" + ], + "publishers": [ + "Aaroh" + ], + "operating_systems": [ + "iOS", + "Microsoft Windows" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/pa/patternhunter.json b/data/software/pa/patternhunter.json new file mode 100644 index 000000000000..c3da658eee4e --- /dev/null +++ b/data/software/pa/patternhunter.json @@ -0,0 +1,8 @@ +{ + "slug": "patternhunter", + "name": "PatternHunter", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17149134" + ] +} diff --git a/data/software/pa/patternrecognition.json b/data/software/pa/patternrecognition.json new file mode 100644 index 000000000000..546348f07e73 --- /dev/null +++ b/data/software/pa/patternrecognition.json @@ -0,0 +1,8 @@ +{ + "slug": "patternrecognition", + "name": "PatternRecognition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q74527363" + ] +} diff --git a/data/software/pa/pavucontrol.json b/data/software/pa/pavucontrol.json new file mode 100644 index 000000000000..3c40c928b2bd --- /dev/null +++ b/data/software/pa/pavucontrol.json @@ -0,0 +1,11 @@ +{ + "slug": "pavucontrol", + "name": "pavucontrol", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q104876454" + ], + "licenses": [ + "GNU General Public License, version 2.0 or later" + ] +} diff --git a/data/software/pa/pay-stub-generator.json b/data/software/pa/pay-stub-generator.json new file mode 100644 index 000000000000..16779f553136 --- /dev/null +++ b/data/software/pa/pay-stub-generator.json @@ -0,0 +1,8 @@ +{ + "slug": "pay-stub-generator", + "name": "Pay stub generator", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140051537" + ] +} diff --git a/data/software/pa/paybox.json b/data/software/pa/paybox.json new file mode 100644 index 000000000000..09d91afb2812 --- /dev/null +++ b/data/software/pa/paybox.json @@ -0,0 +1,8 @@ +{ + "slug": "paybox", + "name": "PayBox", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q132855984" + ] +} diff --git a/data/software/pa/paykeeper.json b/data/software/pa/paykeeper.json new file mode 100644 index 000000000000..9bc9db6f0ae3 --- /dev/null +++ b/data/software/pa/paykeeper.json @@ -0,0 +1,8 @@ +{ + "slug": "paykeeper", + "name": "Paykeeper", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q15714578" + ] +} diff --git a/data/software/pa/payme.json b/data/software/pa/payme.json new file mode 100644 index 000000000000..df31330d1409 --- /dev/null +++ b/data/software/pa/payme.json @@ -0,0 +1,11 @@ +{ + "slug": "payme", + "name": "PayMe", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q55629302" + ], + "developers": [ + "The Hongkong and Shanghai Banking Corporation Limited" + ] +} diff --git a/data/software/pa/payrails.json b/data/software/pa/payrails.json new file mode 100644 index 000000000000..9fcf97fbc366 --- /dev/null +++ b/data/software/pa/payrails.json @@ -0,0 +1,8 @@ +{ + "slug": "payrails", + "name": "Payrails", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137211152" + ] +} diff --git a/data/software/pa/paystubcreator-net.json b/data/software/pa/paystubcreator-net.json new file mode 100644 index 000000000000..2862378c4606 --- /dev/null +++ b/data/software/pa/paystubcreator-net.json @@ -0,0 +1,8 @@ +{ + "slug": "paystubcreator-net", + "name": "PayStubCreator.net", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140246985" + ] +} diff --git a/data/software/pa/paystubs-net.json b/data/software/pa/paystubs-net.json new file mode 100644 index 000000000000..5fde78b0394f --- /dev/null +++ b/data/software/pa/paystubs-net.json @@ -0,0 +1,8 @@ +{ + "slug": "paystubs-net", + "name": "PayStubs.net", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140247563" + ] +} diff --git a/data/software/pb/pbboard.json b/data/software/pb/pbboard.json new file mode 100644 index 000000000000..a49be4a58413 --- /dev/null +++ b/data/software/pb/pbboard.json @@ -0,0 +1,8 @@ +{ + "slug": "pbboard", + "name": "PBBoard", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q21791425" + ] +} diff --git a/data/software/pb/pbcore.json b/data/software/pb/pbcore.json new file mode 100644 index 000000000000..ec4c9481f300 --- /dev/null +++ b/data/software/pb/pbcore.json @@ -0,0 +1,12 @@ +{ + "slug": "pbcore", + "name": "PBCore", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7118406" + ], + "licenses": [ + "Creative Commons Attribution-ShareAlike 4.0 International", + "Creative Commons CC0 License" + ] +} diff --git a/data/software/pb/pbix-a11y.json b/data/software/pb/pbix-a11y.json new file mode 100644 index 000000000000..065322f8f69d --- /dev/null +++ b/data/software/pb/pbix-a11y.json @@ -0,0 +1,11 @@ +{ + "slug": "pbix-a11y", + "name": "PBIX A11y", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139799232" + ], + "operating_systems": [ + "cross-platform" + ] +} diff --git a/data/software/pc/pc-dataexchange.json b/data/software/pc/pc-dataexchange.json new file mode 100644 index 000000000000..5b10aafd9c43 --- /dev/null +++ b/data/software/pc/pc-dataexchange.json @@ -0,0 +1,9 @@ +{ + "slug": "pc-dataexchange", + "name": "PC DataExchange", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121631734" + ], + "release_date": "1993-03-01" +} diff --git a/data/software/pc/pc-file-transfer.json b/data/software/pc/pc-file-transfer.json new file mode 100644 index 000000000000..800dae16567b --- /dev/null +++ b/data/software/pc/pc-file-transfer.json @@ -0,0 +1,8 @@ +{ + "slug": "pc-file-transfer", + "name": "PC File Transfer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4046159" + ] +} diff --git a/data/software/pc/pc-file.json b/data/software/pc/pc-file.json new file mode 100644 index 000000000000..a9db38602d86 --- /dev/null +++ b/data/software/pc/pc-file.json @@ -0,0 +1,8 @@ +{ + "slug": "pc-file", + "name": "PC-File", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7118469" + ] +} diff --git a/data/software/pc/pc-gene.json b/data/software/pc/pc-gene.json new file mode 100644 index 000000000000..394e3b43a1f6 --- /dev/null +++ b/data/software/pc/pc-gene.json @@ -0,0 +1,8 @@ +{ + "slug": "pc-gene", + "name": "PC/GENE", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q54669942" + ] +} diff --git a/data/software/pc/pc-globe.json b/data/software/pc/pc-globe.json new file mode 100644 index 000000000000..42e027b74dbe --- /dev/null +++ b/data/software/pc/pc-globe.json @@ -0,0 +1,9 @@ +{ + "slug": "pc-globe", + "name": "PC Globe", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3887973" + ], + "release_date": "1989-01-01" +} diff --git a/data/software/pc/pc-kimmo.json b/data/software/pc/pc-kimmo.json new file mode 100644 index 000000000000..ecd561516853 --- /dev/null +++ b/data/software/pc/pc-kimmo.json @@ -0,0 +1,8 @@ +{ + "slug": "pc-kimmo", + "name": "PC-KIMMO", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087697" + ] +} diff --git a/data/software/pc/pc-lint.json b/data/software/pc/pc-lint.json new file mode 100644 index 000000000000..7f749096cc58 --- /dev/null +++ b/data/software/pc/pc-lint.json @@ -0,0 +1,8 @@ +{ + "slug": "pc-lint", + "name": "PC-Lint", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7118471" + ] +} diff --git a/data/software/pc/pc-reservation.json b/data/software/pc/pc-reservation.json new file mode 100644 index 000000000000..22ee2b7f833a --- /dev/null +++ b/data/software/pc/pc-reservation.json @@ -0,0 +1,11 @@ +{ + "slug": "pc-reservation", + "name": "PC Reservation", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125839369" + ], + "developers": [ + "EnvisionWare" + ] +} diff --git a/data/software/pc/pc-talk.json b/data/software/pc/pc-talk.json new file mode 100644 index 000000000000..d5dc292510b0 --- /dev/null +++ b/data/software/pc/pc-talk.json @@ -0,0 +1,8 @@ +{ + "slug": "pc-talk", + "name": "PC-Talk", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7118473" + ] +} diff --git a/data/software/pc/pc-write.json b/data/software/pc/pc-write.json new file mode 100644 index 000000000000..70e39eded1a1 --- /dev/null +++ b/data/software/pc/pc-write.json @@ -0,0 +1,12 @@ +{ + "slug": "pc-write", + "name": "PC-Write", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1295055" + ], + "release_date": "1983-01-01", + "developers": [ + "Bob Wallace" + ] +} diff --git a/data/software/pc/pc.json b/data/software/pc/pc.json new file mode 100644 index 000000000000..137c397edae2 --- /dev/null +++ b/data/software/pc/pc.json @@ -0,0 +1,8 @@ +{ + "slug": "pc", + "name": "PC²", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7118736" + ] +} diff --git a/data/software/pc/pcanywhere.json b/data/software/pc/pcanywhere.json new file mode 100644 index 000000000000..13e18a0a6a75 --- /dev/null +++ b/data/software/pc/pcanywhere.json @@ -0,0 +1,13 @@ +{ + "slug": "pcanywhere", + "name": "pcAnywhere", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17083321" + ], + "release_date": "1986-01-01", + "developers": [ + "Dynamic Microprocessor Associates", + "Gen Digital" + ] +} diff --git a/data/software/pc/pcapfix.json b/data/software/pc/pcapfix.json new file mode 100644 index 000000000000..5478db041d23 --- /dev/null +++ b/data/software/pc/pcapfix.json @@ -0,0 +1,8 @@ +{ + "slug": "pcapfix", + "name": "pcapfix", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62856807" + ] +} diff --git a/data/software/pc/pcb-investigator.json b/data/software/pc/pcb-investigator.json new file mode 100644 index 000000000000..1b9781866ebb --- /dev/null +++ b/data/software/pc/pcb-investigator.json @@ -0,0 +1,8 @@ +{ + "slug": "pcb-investigator", + "name": "PCB-Investigator", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130457376" + ] +} diff --git a/data/software/pc/pcboard.json b/data/software/pc/pcboard.json new file mode 100644 index 000000000000..e658d34a31b4 --- /dev/null +++ b/data/software/pc/pcboard.json @@ -0,0 +1,12 @@ +{ + "slug": "pcboard", + "name": "PCBoard", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2915753" + ], + "release_date": "1983-01-01", + "genres": [ + "bulletin board system" + ] +} diff --git a/data/software/pc/pchar.json b/data/software/pc/pchar.json new file mode 100644 index 000000000000..bafa65b81d8e --- /dev/null +++ b/data/software/pc/pchar.json @@ -0,0 +1,8 @@ +{ + "slug": "pchar", + "name": "PChar", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62856808" + ] +} diff --git a/data/software/pc/pci-geomatica.json b/data/software/pc/pci-geomatica.json new file mode 100644 index 000000000000..93f18ebceeb1 --- /dev/null +++ b/data/software/pc/pci-geomatica.json @@ -0,0 +1,8 @@ +{ + "slug": "pci-geomatica", + "name": "PCI Geomatica", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7118599" + ] +} diff --git a/data/software/pc/pcmark.json b/data/software/pc/pcmark.json new file mode 100644 index 000000000000..d3bf501cca9a --- /dev/null +++ b/data/software/pc/pcmark.json @@ -0,0 +1,8 @@ +{ + "slug": "pcmark", + "name": "PCMark", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2471206" + ] +} diff --git a/data/software/pc/pcmciautils.json b/data/software/pc/pcmciautils.json new file mode 100644 index 000000000000..9adbc80b52b1 --- /dev/null +++ b/data/software/pc/pcmciautils.json @@ -0,0 +1,8 @@ +{ + "slug": "pcmciautils", + "name": "pcmciautils", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62856804" + ] +} diff --git a/data/software/pc/pconsole.json b/data/software/pc/pconsole.json new file mode 100644 index 000000000000..03debda64668 --- /dev/null +++ b/data/software/pc/pconsole.json @@ -0,0 +1,8 @@ +{ + "slug": "pconsole", + "name": "pconsole", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62856802" + ] +} diff --git a/data/software/pc/pcs-transcriber.json b/data/software/pc/pcs-transcriber.json new file mode 100644 index 000000000000..f4e8ef4f66c8 --- /dev/null +++ b/data/software/pc/pcs-transcriber.json @@ -0,0 +1,14 @@ +{ + "slug": "pcs-transcriber", + "name": "PCS-Transcriber", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105890725" + ], + "operating_systems": [ + "Microsoft Windows" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/pc/pcsc-tools.json b/data/software/pc/pcsc-tools.json new file mode 100644 index 000000000000..79d6c6fbe597 --- /dev/null +++ b/data/software/pc/pcsc-tools.json @@ -0,0 +1,8 @@ +{ + "slug": "pcsc-tools", + "name": "pcsc-tools", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62858847" + ] +} diff --git a/data/software/pd/pdb-tools-q114840802.json b/data/software/pd/pdb-tools-q114840802.json new file mode 100644 index 000000000000..8192fc91a2af --- /dev/null +++ b/data/software/pd/pdb-tools-q114840802.json @@ -0,0 +1,8 @@ +{ + "slug": "pdb-tools-q114840802", + "name": "pdb-tools", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q114840802" + ] +} diff --git a/data/software/pd/pdb-tools.json b/data/software/pd/pdb-tools.json new file mode 100644 index 000000000000..80bd730ebbfd --- /dev/null +++ b/data/software/pd/pdb-tools.json @@ -0,0 +1,8 @@ +{ + "slug": "pdb-tools", + "name": "pdb-tools", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065551" + ] +} diff --git a/data/software/pd/pdb2pqr.json b/data/software/pd/pdb2pqr.json new file mode 100644 index 000000000000..76b99d306574 --- /dev/null +++ b/data/software/pd/pdb2pqr.json @@ -0,0 +1,8 @@ +{ + "slug": "pdb2pqr", + "name": "PDB2PQR", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62856803" + ] +} diff --git a/data/software/pd/pdbreport.json b/data/software/pd/pdbreport.json new file mode 100644 index 000000000000..5b1c30e6bcf9 --- /dev/null +++ b/data/software/pd/pdbreport.json @@ -0,0 +1,8 @@ +{ + "slug": "pdbreport", + "name": "PDBREPORT", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7118751" + ] +} diff --git a/data/software/pd/pdcurses.json b/data/software/pd/pdcurses.json new file mode 100644 index 000000000000..37430acdba65 --- /dev/null +++ b/data/software/pd/pdcurses.json @@ -0,0 +1,11 @@ +{ + "slug": "pdcurses", + "name": "PDCurses", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7118778" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/pd/pde-plugin-development-environment.json b/data/software/pd/pde-plugin-development-environment.json new file mode 100644 index 000000000000..6af34ee001ec --- /dev/null +++ b/data/software/pd/pde-plugin-development-environment.json @@ -0,0 +1,8 @@ +{ + "slug": "pde-plugin-development-environment", + "name": "PDE - Plugin Development Environment", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76168452" + ] +} diff --git a/data/software/pd/pdf-compressor.json b/data/software/pd/pdf-compressor.json new file mode 100644 index 000000000000..955ef7742eeb --- /dev/null +++ b/data/software/pd/pdf-compressor.json @@ -0,0 +1,14 @@ +{ + "slug": "pdf-compressor", + "name": "PDF Compressor", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138472059" + ], + "developers": [ + "C. M. Leal Ltda" + ], + "operating_systems": [ + "macOS" + ] +} diff --git a/data/software/pd/pdf-expert.json b/data/software/pd/pdf-expert.json new file mode 100644 index 000000000000..fdd3b657e650 --- /dev/null +++ b/data/software/pd/pdf-expert.json @@ -0,0 +1,11 @@ +{ + "slug": "pdf-expert", + "name": "PDF Expert", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q29364603" + ], + "developers": [ + "Readdle" + ] +} diff --git a/data/software/pd/pdf-generator.json b/data/software/pd/pdf-generator.json new file mode 100644 index 000000000000..98ff94277e7b --- /dev/null +++ b/data/software/pd/pdf-generator.json @@ -0,0 +1,8 @@ +{ + "slug": "pdf-generator", + "name": "PDF generator", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140247004" + ] +} diff --git a/data/software/pd/pdf-guru.json b/data/software/pd/pdf-guru.json new file mode 100644 index 000000000000..0a9cc267e04a --- /dev/null +++ b/data/software/pd/pdf-guru.json @@ -0,0 +1,13 @@ +{ + "slug": "pdf-guru", + "name": "PDF Guru", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q129169515" + ], + "operating_systems": [ + "iOS", + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/software/pd/pdf-parser.json b/data/software/pd/pdf-parser.json new file mode 100644 index 000000000000..c79e5906b30e --- /dev/null +++ b/data/software/pd/pdf-parser.json @@ -0,0 +1,11 @@ +{ + "slug": "pdf-parser", + "name": "Pdf-parser", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16927870" + ], + "programming_languages": [ + "Python" + ] +} diff --git a/data/software/pd/pdf-signer.json b/data/software/pd/pdf-signer.json new file mode 100644 index 000000000000..a67bc48ab541 --- /dev/null +++ b/data/software/pd/pdf-signer.json @@ -0,0 +1,8 @@ +{ + "slug": "pdf-signer", + "name": "PDF Signer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7118808" + ] +} diff --git a/data/software/pd/pdf-studio.json b/data/software/pd/pdf-studio.json new file mode 100644 index 000000000000..dcbaa2942cb2 --- /dev/null +++ b/data/software/pd/pdf-studio.json @@ -0,0 +1,11 @@ +{ + "slug": "pdf-studio", + "name": "PDF Studio", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7118810" + ], + "programming_languages": [ + "Java" + ] +} diff --git a/data/software/pd/pdf24-creator.json b/data/software/pd/pdf24-creator.json new file mode 100644 index 000000000000..623c75b2e478 --- /dev/null +++ b/data/software/pd/pdf24-creator.json @@ -0,0 +1,11 @@ +{ + "slug": "pdf24-creator", + "name": "PDF24 Creator", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16529629" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/pd/pdf2djvu.json b/data/software/pd/pdf2djvu.json new file mode 100644 index 000000000000..9d6aee0983d7 --- /dev/null +++ b/data/software/pd/pdf2djvu.json @@ -0,0 +1,8 @@ +{ + "slug": "pdf2djvu", + "name": "pdf2djvu", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62856715" + ] +} diff --git a/data/software/pd/pdfdeal.json b/data/software/pd/pdfdeal.json new file mode 100644 index 000000000000..0a514f10a64d --- /dev/null +++ b/data/software/pd/pdfdeal.json @@ -0,0 +1,8 @@ +{ + "slug": "pdfdeal", + "name": "PDFdeal", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140045990" + ] +} diff --git a/data/software/pd/pdfescape.json b/data/software/pd/pdfescape.json new file mode 100644 index 000000000000..e5b72fd83ac6 --- /dev/null +++ b/data/software/pd/pdfescape.json @@ -0,0 +1,8 @@ +{ + "slug": "pdfescape", + "name": "PDFescape", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7118811" + ] +} diff --git a/data/software/pd/pdffigures-2-0.json b/data/software/pd/pdffigures-2-0.json new file mode 100644 index 000000000000..453339b4fafd --- /dev/null +++ b/data/software/pd/pdffigures-2-0.json @@ -0,0 +1,14 @@ +{ + "slug": "pdffigures-2-0", + "name": "PDFFigures 2.0", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108176591" + ], + "programming_languages": [ + "Scala" + ], + "licenses": [ + "Apache Software License 2.0" + ] +} diff --git a/data/software/pd/pdffiller.json b/data/software/pd/pdffiller.json new file mode 100644 index 000000000000..4bd0d8393fd5 --- /dev/null +++ b/data/software/pd/pdffiller.json @@ -0,0 +1,12 @@ +{ + "slug": "pdffiller", + "name": "pdfFiller", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136360997" + ], + "programming_languages": [ + "Python", + "PHP" + ] +} diff --git a/data/software/pd/pdfmyurl.json b/data/software/pd/pdfmyurl.json new file mode 100644 index 000000000000..1126be832a15 --- /dev/null +++ b/data/software/pd/pdfmyurl.json @@ -0,0 +1,8 @@ +{ + "slug": "pdfmyurl", + "name": "PDFmyURL", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084462" + ] +} diff --git a/data/software/pd/pdfo.json b/data/software/pd/pdfo.json new file mode 100644 index 000000000000..4616b07954e2 --- /dev/null +++ b/data/software/pd/pdfo.json @@ -0,0 +1,8 @@ +{ + "slug": "pdfo", + "name": "PDFO", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q95862375" + ] +} diff --git a/data/software/pd/pdfsharp.json b/data/software/pd/pdfsharp.json new file mode 100644 index 000000000000..24efd6ad08a7 --- /dev/null +++ b/data/software/pd/pdfsharp.json @@ -0,0 +1,8 @@ +{ + "slug": "pdfsharp", + "name": "PDFsharp", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q65118869" + ] +} diff --git a/data/software/pd/pdfvue.json b/data/software/pd/pdfvue.json new file mode 100644 index 000000000000..053d7c24dfc6 --- /dev/null +++ b/data/software/pd/pdfvue.json @@ -0,0 +1,11 @@ +{ + "slug": "pdfvue", + "name": "Pdfvue", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16927885" + ], + "developers": [ + "unzip" + ] +} diff --git a/data/software/pd/pdfwix.json b/data/software/pd/pdfwix.json new file mode 100644 index 000000000000..31cffc5a1acb --- /dev/null +++ b/data/software/pd/pdfwix.json @@ -0,0 +1,11 @@ +{ + "slug": "pdfwix", + "name": "PDFWix", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139898614" + ], + "operating_systems": [ + "web browser" + ] +} diff --git a/data/software/pe/pe-format.json b/data/software/pe/pe-format.json new file mode 100644 index 000000000000..f55d252c64ea --- /dev/null +++ b/data/software/pe/pe-format.json @@ -0,0 +1,8 @@ +{ + "slug": "pe-format", + "name": "pe-format", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975325" + ] +} diff --git a/data/software/pe/peacekeeper.json b/data/software/pe/peacekeeper.json new file mode 100644 index 000000000000..b13db9426f26 --- /dev/null +++ b/data/software/pe/peacekeeper.json @@ -0,0 +1,8 @@ +{ + "slug": "peacekeeper", + "name": "Peacekeeper", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4046552" + ] +} diff --git a/data/software/pe/peach.json b/data/software/pe/peach.json new file mode 100644 index 000000000000..ddad702326be --- /dev/null +++ b/data/software/pe/peach.json @@ -0,0 +1,11 @@ +{ + "slug": "peach", + "name": "Peach", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22096342" + ], + "operating_systems": [ + "iOS" + ] +} diff --git a/data/software/pe/peachpie.json b/data/software/pe/peachpie.json new file mode 100644 index 000000000000..534b4d33208e --- /dev/null +++ b/data/software/pe/peachpie.json @@ -0,0 +1,11 @@ +{ + "slug": "peachpie", + "name": "PeachPie", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q64137519" + ], + "licenses": [ + "Apache Software License 2.0" + ] +} diff --git a/data/software/pe/peakfit.json b/data/software/pe/peakfit.json new file mode 100644 index 000000000000..c969eaf3ec8e --- /dev/null +++ b/data/software/pe/peakfit.json @@ -0,0 +1,14 @@ +{ + "slug": "peakfit", + "name": "PeakFit", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7157795" + ], + "operating_systems": [ + "Microsoft Windows" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/pe/pearl-com.json b/data/software/pe/pearl-com.json new file mode 100644 index 000000000000..b14b97a2db7f --- /dev/null +++ b/data/software/pe/pearl-com.json @@ -0,0 +1,8 @@ +{ + "slug": "pearl-com", + "name": "Pearl.com", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107404536" + ] +} diff --git a/data/software/pe/pecl-ssh2.json b/data/software/pe/pecl-ssh2.json new file mode 100644 index 000000000000..870ce8472086 --- /dev/null +++ b/data/software/pe/pecl-ssh2.json @@ -0,0 +1,8 @@ +{ + "slug": "pecl-ssh2", + "name": "pecl-ssh2", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975324" + ] +} diff --git a/data/software/pe/pecs.json b/data/software/pe/pecs.json new file mode 100644 index 000000000000..64a61cbc1286 --- /dev/null +++ b/data/software/pe/pecs.json @@ -0,0 +1,11 @@ +{ + "slug": "pecs", + "name": "PECS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140312731" + ], + "developers": [ + "activeIT Software & Consulting GmbH" + ] +} diff --git a/data/software/pe/peekawoo.json b/data/software/pe/peekawoo.json new file mode 100644 index 000000000000..a3c9f35efa58 --- /dev/null +++ b/data/software/pe/peekawoo.json @@ -0,0 +1,8 @@ +{ + "slug": "peekawoo", + "name": "Peekawoo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q55629375" + ] +} diff --git a/data/software/pe/peel.json b/data/software/pe/peel.json new file mode 100644 index 000000000000..1a7b223a4757 --- /dev/null +++ b/data/software/pe/peel.json @@ -0,0 +1,15 @@ +{ + "slug": "peel", + "name": "Peel", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7160201" + ], + "release_date": "2007-01-01", + "operating_systems": [ + "macOS" + ], + "programming_languages": [ + "Objective-C" + ] +} diff --git a/data/software/pe/peer2mail.json b/data/software/pe/peer2mail.json new file mode 100644 index 000000000000..2c02566d748f --- /dev/null +++ b/data/software/pe/peer2mail.json @@ -0,0 +1,8 @@ +{ + "slug": "peer2mail", + "name": "Peer2Mail", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3282368" + ] +} diff --git a/data/software/pe/peerio.json b/data/software/pe/peerio.json new file mode 100644 index 000000000000..28cad373bf08 --- /dev/null +++ b/data/software/pe/peerio.json @@ -0,0 +1,11 @@ +{ + "slug": "peerio", + "name": "Peerio", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22907688" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/pe/pegasus-mail.json b/data/software/pe/pegasus-mail.json new file mode 100644 index 000000000000..15ccaf8df2a0 --- /dev/null +++ b/data/software/pe/pegasus-mail.json @@ -0,0 +1,15 @@ +{ + "slug": "pegasus-mail", + "name": "Pegasus Mail", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1639942" + ], + "developers": [ + "David Harris" + ], + "licenses": [ + "freeware", + "donationware" + ] +} diff --git a/data/software/pe/pegasus.json b/data/software/pe/pegasus.json new file mode 100644 index 000000000000..453d72cfdf37 --- /dev/null +++ b/data/software/pe/pegasus.json @@ -0,0 +1,8 @@ +{ + "slug": "pegasus", + "name": "Pegasus", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q104844402" + ] +} diff --git a/data/software/pe/pegs-n-co.json b/data/software/pe/pegs-n-co.json new file mode 100644 index 000000000000..a819a9b479f3 --- /dev/null +++ b/data/software/pe/pegs-n-co.json @@ -0,0 +1,11 @@ +{ + "slug": "pegs-n-co", + "name": "Pegs'n Co", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28957045" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/pe/peid.json b/data/software/pe/peid.json new file mode 100644 index 000000000000..7b729e97360d --- /dev/null +++ b/data/software/pe/peid.json @@ -0,0 +1,8 @@ +{ + "slug": "peid", + "name": "PEiD", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4046172" + ] +} diff --git a/data/software/pe/peltarion-synapse.json b/data/software/pe/peltarion-synapse.json new file mode 100644 index 000000000000..e5fc00cc1b72 --- /dev/null +++ b/data/software/pe/peltarion-synapse.json @@ -0,0 +1,14 @@ +{ + "slug": "peltarion-synapse", + "name": "Peltarion Synapse", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17147020" + ], + "developers": [ + "Peltarion" + ], + "licenses": [ + "end-user license agreement" + ] +} diff --git a/data/software/pe/pem.json b/data/software/pe/pem.json new file mode 100644 index 000000000000..e31fe4bd3927 --- /dev/null +++ b/data/software/pe/pem.json @@ -0,0 +1,8 @@ +{ + "slug": "pem", + "name": "Pem", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76186146" + ] +} diff --git a/data/software/pe/pentaho.json b/data/software/pe/pentaho.json new file mode 100644 index 000000000000..9d76c6ee949e --- /dev/null +++ b/data/software/pe/pentaho.json @@ -0,0 +1,14 @@ +{ + "slug": "pentaho", + "name": "Pentaho", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q644841" + ], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [ + "Java" + ] +} diff --git a/data/software/pe/penup.json b/data/software/pe/penup.json new file mode 100644 index 000000000000..c28067dfb9de --- /dev/null +++ b/data/software/pe/penup.json @@ -0,0 +1,8 @@ +{ + "slug": "penup", + "name": "PENUP", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124022549" + ] +} diff --git a/data/software/pe/people.json b/data/software/pe/people.json new file mode 100644 index 000000000000..d91bacd6af79 --- /dev/null +++ b/data/software/pe/people.json @@ -0,0 +1,8 @@ +{ + "slug": "people", + "name": "People", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1398059" + ] +} diff --git a/data/software/pe/pep8.json b/data/software/pe/pep8.json new file mode 100644 index 000000000000..55832ffe599e --- /dev/null +++ b/data/software/pe/pep8.json @@ -0,0 +1,8 @@ +{ + "slug": "pep8", + "name": "pep8", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106101992" + ] +} diff --git a/data/software/pe/percolator.json b/data/software/pe/percolator.json new file mode 100644 index 000000000000..120d94a055df --- /dev/null +++ b/data/software/pe/percolator.json @@ -0,0 +1,8 @@ +{ + "slug": "percolator", + "name": "Percolator", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113089939" + ] +} diff --git a/data/software/pe/percona-toolkit.json b/data/software/pe/percona-toolkit.json new file mode 100644 index 000000000000..920fcaa2d39f --- /dev/null +++ b/data/software/pe/percona-toolkit.json @@ -0,0 +1,11 @@ +{ + "slug": "percona-toolkit", + "name": "Percona Toolkit", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q64604857" + ], + "developers": [ + "Percona" + ] +} diff --git a/data/software/pe/perfect-photo-suite.json b/data/software/pe/perfect-photo-suite.json new file mode 100644 index 000000000000..a59c20ba4160 --- /dev/null +++ b/data/software/pe/perfect-photo-suite.json @@ -0,0 +1,8 @@ +{ + "slug": "perfect-photo-suite", + "name": "Perfect Photo Suite", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18412173" + ] +} diff --git a/data/software/pe/perfect.json b/data/software/pe/perfect.json new file mode 100644 index 000000000000..f08e9dbec6cb --- /dev/null +++ b/data/software/pe/perfect.json @@ -0,0 +1,14 @@ +{ + "slug": "perfect", + "name": "Perfect", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25345276" + ], + "programming_languages": [ + "Swift" + ], + "licenses": [ + "Apache License" + ] +} diff --git a/data/software/pe/perfectdisk.json b/data/software/pe/perfectdisk.json new file mode 100644 index 000000000000..ff6c57649409 --- /dev/null +++ b/data/software/pe/perfectdisk.json @@ -0,0 +1,8 @@ +{ + "slug": "perfectdisk", + "name": "PerfectDisk", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11239455" + ] +} diff --git a/data/software/pe/perfectit.json b/data/software/pe/perfectit.json new file mode 100644 index 000000000000..fbbe1e10fd20 --- /dev/null +++ b/data/software/pe/perfectit.json @@ -0,0 +1,14 @@ +{ + "slug": "perfectit", + "name": "PerfectIt", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139384365" + ], + "developers": [ + "Intelligent Editing Ltd" + ], + "genres": [ + "editor" + ] +} diff --git a/data/software/pe/perfony.json b/data/software/pe/perfony.json new file mode 100644 index 000000000000..764262ca3304 --- /dev/null +++ b/data/software/pe/perfony.json @@ -0,0 +1,8 @@ +{ + "slug": "perfony", + "name": "Perfony", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140068122" + ] +} diff --git a/data/software/pe/perforce-alm.json b/data/software/pe/perforce-alm.json new file mode 100644 index 000000000000..0b259986dadb --- /dev/null +++ b/data/software/pe/perforce-alm.json @@ -0,0 +1,14 @@ +{ + "slug": "perforce-alm", + "name": "Perforce ALM", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17085212" + ], + "developers": [ + "Seapine Software" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/pe/perforce-iplm.json b/data/software/pe/perforce-iplm.json new file mode 100644 index 000000000000..d588a68aa028 --- /dev/null +++ b/data/software/pe/perforce-iplm.json @@ -0,0 +1,8 @@ +{ + "slug": "perforce-iplm", + "name": "Perforce IPLM", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136842128" + ] +} diff --git a/data/software/pe/perforce-p4.json b/data/software/pe/perforce-p4.json new file mode 100644 index 000000000000..1853430b8f8b --- /dev/null +++ b/data/software/pe/perforce-p4.json @@ -0,0 +1,15 @@ +{ + "slug": "perforce-p4", + "name": "Perforce P4", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1681038" + ], + "release_date": "1995-01-01", + "developers": [ + "Perforce Software" + ], + "operating_systems": [ + "IBM AIX" + ] +} diff --git a/data/software/pe/perforce-qac.json b/data/software/pe/perforce-qac.json new file mode 100644 index 000000000000..9b2fadcc563d --- /dev/null +++ b/data/software/pe/perforce-qac.json @@ -0,0 +1,8 @@ +{ + "slug": "perforce-qac", + "name": "Perforce QAC", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1645384" + ] +} diff --git a/data/software/pe/performance-analyzer.json b/data/software/pe/performance-analyzer.json new file mode 100644 index 000000000000..081c10dca8c9 --- /dev/null +++ b/data/software/pe/performance-analyzer.json @@ -0,0 +1,11 @@ +{ + "slug": "performance-analyzer", + "name": "Performance Analyzer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18387706" + ], + "developers": [ + "Sun Microsystems" + ] +} diff --git a/data/software/pe/performance-counter-monitor.json b/data/software/pe/performance-counter-monitor.json new file mode 100644 index 000000000000..6879f8209558 --- /dev/null +++ b/data/software/pe/performance-counter-monitor.json @@ -0,0 +1,14 @@ +{ + "slug": "performance-counter-monitor", + "name": "Performance Counter Monitor", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117212013" + ], + "developers": [ + "Roman Dementiev" + ], + "licenses": [ + "3-clause BSD License" + ] +} diff --git a/data/software/pe/performance-management-software.json b/data/software/pe/performance-management-software.json new file mode 100644 index 000000000000..cb29c6132c04 --- /dev/null +++ b/data/software/pe/performance-management-software.json @@ -0,0 +1,8 @@ +{ + "slug": "performance-management-software", + "name": "Performance Management Software", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135527093" + ] +} diff --git a/data/software/pe/perkeep.json b/data/software/pe/perkeep.json new file mode 100644 index 000000000000..b1f8c070fdcb --- /dev/null +++ b/data/software/pe/perkeep.json @@ -0,0 +1,17 @@ +{ + "slug": "perkeep", + "name": "Perkeep", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18215949" + ], + "developers": [ + "Brad Fitzpatrick" + ], + "programming_languages": [ + "Go" + ], + "licenses": [ + "Apache License" + ] +} diff --git a/data/software/pe/perl-cleaner.json b/data/software/pe/perl-cleaner.json new file mode 100644 index 000000000000..1012e6a76a3c --- /dev/null +++ b/data/software/pe/perl-cleaner.json @@ -0,0 +1,8 @@ +{ + "slug": "perl-cleaner", + "name": "perl-cleaner", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975327" + ] +} diff --git a/data/software/pe/perl-programming-documentation.json b/data/software/pe/perl-programming-documentation.json new file mode 100644 index 000000000000..f3ca6a692b34 --- /dev/null +++ b/data/software/pe/perl-programming-documentation.json @@ -0,0 +1,8 @@ +{ + "slug": "perl-programming-documentation", + "name": "Perl Programming Documentation", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28458051" + ] +} diff --git a/data/software/pe/permanitai.json b/data/software/pe/permanitai.json new file mode 100644 index 000000000000..916f75e05de6 --- /dev/null +++ b/data/software/pe/permanitai.json @@ -0,0 +1,16 @@ +{ + "slug": "permanitai", + "name": "PERMANITAI", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139387178" + ], + "release_date": "2026-04-17", + "developers": [ + "Andreas Ehstand" + ], + "licenses": [ + "Creative Commons Attribution-ShareAlike", + "Creative Commons Attribution-NonCommercial-NoDerivatives 4.0 International" + ] +} diff --git a/data/software/pe/permission-driven-user-interface.json b/data/software/pe/permission-driven-user-interface.json new file mode 100644 index 000000000000..4948d8e03d12 --- /dev/null +++ b/data/software/pe/permission-driven-user-interface.json @@ -0,0 +1,8 @@ +{ + "slug": "permission-driven-user-interface", + "name": "permission-driven user interface", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16919020" + ] +} diff --git a/data/software/pe/personal-agent-world.json b/data/software/pe/personal-agent-world.json new file mode 100644 index 000000000000..dffb6bf0eede --- /dev/null +++ b/data/software/pe/personal-agent-world.json @@ -0,0 +1,8 @@ +{ + "slug": "personal-agent-world", + "name": "Personal Agent World", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11239491" + ] +} diff --git a/data/software/pe/personal-brain.json b/data/software/pe/personal-brain.json new file mode 100644 index 000000000000..e4be261c85c4 --- /dev/null +++ b/data/software/pe/personal-brain.json @@ -0,0 +1,8 @@ +{ + "slug": "personal-brain", + "name": "Personal Brain", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084464" + ] +} diff --git a/data/software/pe/personal-henshucho.json b/data/software/pe/personal-henshucho.json new file mode 100644 index 000000000000..819e03d73f58 --- /dev/null +++ b/data/software/pe/personal-henshucho.json @@ -0,0 +1,11 @@ +{ + "slug": "personal-henshucho", + "name": "Personal henshucho", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109370465" + ], + "developers": [ + "Sourcenext" + ] +} diff --git a/data/software/pe/personal-knowbase.json b/data/software/pe/personal-knowbase.json new file mode 100644 index 000000000000..ac5a9ed795fd --- /dev/null +++ b/data/software/pe/personal-knowbase.json @@ -0,0 +1,8 @@ +{ + "slug": "personal-knowbase", + "name": "Personal Knowbase", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7170522" + ] +} diff --git a/data/software/pe/pervasive-psql.json b/data/software/pe/pervasive-psql.json new file mode 100644 index 000000000000..a134909de273 --- /dev/null +++ b/data/software/pe/pervasive-psql.json @@ -0,0 +1,11 @@ +{ + "slug": "pervasive-psql", + "name": "Pervasive PSQL", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7171236" + ], + "developers": [ + "Actian" + ] +} diff --git a/data/software/pe/pesim.json b/data/software/pe/pesim.json new file mode 100644 index 000000000000..5659f4ecdf6d --- /dev/null +++ b/data/software/pe/pesim.json @@ -0,0 +1,11 @@ +{ + "slug": "pesim", + "name": "PESim", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q119787319" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/pe/petal-search.json b/data/software/pe/petal-search.json new file mode 100644 index 000000000000..368dc3515dd0 --- /dev/null +++ b/data/software/pe/petal-search.json @@ -0,0 +1,8 @@ +{ + "slug": "petal-search", + "name": "Petal Search", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q104399280" + ] +} diff --git a/data/software/pe/petname.json b/data/software/pe/petname.json new file mode 100644 index 000000000000..f03216b51908 --- /dev/null +++ b/data/software/pe/petname.json @@ -0,0 +1,8 @@ +{ + "slug": "petname", + "name": "Petname", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7178469" + ] +} diff --git a/data/software/pe/petrel.json b/data/software/pe/petrel.json new file mode 100644 index 000000000000..ca7de19bfce5 --- /dev/null +++ b/data/software/pe/petrel.json @@ -0,0 +1,14 @@ +{ + "slug": "petrel", + "name": "Petrel", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2153989" + ], + "developers": [ + "SLB" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/pe/petrify.json b/data/software/pe/petrify.json new file mode 100644 index 000000000000..25874a92e036 --- /dev/null +++ b/data/software/pe/petrify.json @@ -0,0 +1,11 @@ +{ + "slug": "petrify", + "name": "petrify", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q73094064" + ], + "developers": [ + "Jordi Cortadella" + ] +} diff --git a/data/software/pe/petsc.json b/data/software/pe/petsc.json new file mode 100644 index 000000000000..0523c3494387 --- /dev/null +++ b/data/software/pe/petsc.json @@ -0,0 +1,11 @@ +{ + "slug": "petsc", + "name": "PETSc", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116523275" + ], + "developers": [ + "Barry F. Smith" + ] +} diff --git a/data/software/pe/petsynth.json b/data/software/pe/petsynth.json new file mode 100644 index 000000000000..86969a009ba7 --- /dev/null +++ b/data/software/pe/petsynth.json @@ -0,0 +1,8 @@ +{ + "slug": "petsynth", + "name": "PetSynth", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17144240" + ] +} diff --git a/data/software/pf/pflogsumm.json b/data/software/pf/pflogsumm.json new file mode 100644 index 000000000000..f783bdddf0ea --- /dev/null +++ b/data/software/pf/pflogsumm.json @@ -0,0 +1,8 @@ +{ + "slug": "pflogsumm", + "name": "pflogsumm", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62856703" + ] +} diff --git a/data/software/pf/pfqueue.json b/data/software/pf/pfqueue.json new file mode 100644 index 000000000000..a96abbdd4e7c --- /dev/null +++ b/data/software/pf/pfqueue.json @@ -0,0 +1,8 @@ +{ + "slug": "pfqueue", + "name": "pfqueue", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62856695" + ] +} diff --git a/data/software/pg/pgbadger.json b/data/software/pg/pgbadger.json new file mode 100644 index 000000000000..2721564fe501 --- /dev/null +++ b/data/software/pg/pgbadger.json @@ -0,0 +1,8 @@ +{ + "slug": "pgbadger", + "name": "pgBadger", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62856690" + ] +} diff --git a/data/software/pg/pgmodeler.json b/data/software/pg/pgmodeler.json new file mode 100644 index 000000000000..b744037cf7f1 --- /dev/null +++ b/data/software/pg/pgmodeler.json @@ -0,0 +1,8 @@ +{ + "slug": "pgmodeler", + "name": "pgmodeler", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065367" + ] +} diff --git a/data/software/pg/pgpfone.json b/data/software/pg/pgpfone.json new file mode 100644 index 000000000000..aefa7b9f4a72 --- /dev/null +++ b/data/software/pg/pgpfone.json @@ -0,0 +1,11 @@ +{ + "slug": "pgpfone", + "name": "PGPfone", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2044098" + ], + "developers": [ + "Phil Zimmermann" + ] +} diff --git a/data/software/pg/pgxnclient.json b/data/software/pg/pgxnclient.json new file mode 100644 index 000000000000..e2030975e650 --- /dev/null +++ b/data/software/pg/pgxnclient.json @@ -0,0 +1,8 @@ +{ + "slug": "pgxnclient", + "name": "pgxnclient", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60864670" + ] +} diff --git a/data/software/ph/phalanger.json b/data/software/ph/phalanger.json new file mode 100644 index 000000000000..cb8216bf3835 --- /dev/null +++ b/data/software/ph/phalanger.json @@ -0,0 +1,11 @@ +{ + "slug": "phalanger", + "name": "Phalanger", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1463808" + ], + "licenses": [ + "Apache License" + ] +} diff --git a/data/software/ph/pharmaconsult.json b/data/software/ph/pharmaconsult.json new file mode 100644 index 000000000000..ce597e16420f --- /dev/null +++ b/data/software/ph/pharmaconsult.json @@ -0,0 +1,8 @@ +{ + "slug": "pharmaconsult", + "name": "PharmaConsult", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140442498" + ] +} diff --git a/data/software/ph/pharo.json b/data/software/ph/pharo.json new file mode 100644 index 000000000000..f810a9af7e23 --- /dev/null +++ b/data/software/ph/pharo.json @@ -0,0 +1,18 @@ +{ + "slug": "pharo", + "name": "Pharo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q369096" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [ + "Smalltalk" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/ph/phaser.json b/data/software/ph/phaser.json new file mode 100644 index 000000000000..19e9b02af4c9 --- /dev/null +++ b/data/software/ph/phaser.json @@ -0,0 +1,11 @@ +{ + "slug": "phaser", + "name": "Phaser", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q48851432" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/ph/phasor.json b/data/software/ph/phasor.json new file mode 100644 index 000000000000..88dad529fa6e --- /dev/null +++ b/data/software/ph/phasor.json @@ -0,0 +1,11 @@ +{ + "slug": "phasor", + "name": "Phasor", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7181044" + ], + "developers": [ + "Applied Engineering" + ] +} diff --git a/data/software/ph/phi.json b/data/software/ph/phi.json new file mode 100644 index 000000000000..f9e0fbb7f741 --- /dev/null +++ b/data/software/ph/phi.json @@ -0,0 +1,8 @@ +{ + "slug": "phi", + "name": "Phi", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138005851" + ] +} diff --git a/data/software/ph/philogl.json b/data/software/ph/philogl.json new file mode 100644 index 000000000000..e5722af8d9e5 --- /dev/null +++ b/data/software/ph/philogl.json @@ -0,0 +1,8 @@ +{ + "slug": "philogl", + "name": "PhiloGL", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084465" + ] +} diff --git a/data/software/ph/philologic.json b/data/software/ph/philologic.json new file mode 100644 index 000000000000..e58ab7f206c8 --- /dev/null +++ b/data/software/ph/philologic.json @@ -0,0 +1,8 @@ +{ + "slug": "philologic", + "name": "PhiloLogic", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084469" + ] +} diff --git a/data/software/ph/phing.json b/data/software/ph/phing.json new file mode 100644 index 000000000000..548a447d71bd --- /dev/null +++ b/data/software/ph/phing.json @@ -0,0 +1,8 @@ +{ + "slug": "phing", + "name": "Phing", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62856678" + ] +} diff --git a/data/software/ph/phoenix.json b/data/software/ph/phoenix.json new file mode 100644 index 000000000000..1528797cd86a --- /dev/null +++ b/data/software/ph/phoenix.json @@ -0,0 +1,11 @@ +{ + "slug": "phoenix", + "name": "PHOENIX", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7186750" + ], + "developers": [ + "Deutsche Flugsicherung" + ] +} diff --git a/data/software/ph/phone-link.json b/data/software/ph/phone-link.json new file mode 100644 index 000000000000..a7b9e7277986 --- /dev/null +++ b/data/software/ph/phone-link.json @@ -0,0 +1,11 @@ +{ + "slug": "phone-link", + "name": "Phone Link", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60775665" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/ph/phonebook-file-repair.json b/data/software/ph/phonebook-file-repair.json new file mode 100644 index 000000000000..3534f48ab9d8 --- /dev/null +++ b/data/software/ph/phonebook-file-repair.json @@ -0,0 +1,8 @@ +{ + "slug": "phonebook-file-repair", + "name": "PhoneBook File Repair", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121631718" + ] +} diff --git a/data/software/ph/phonegaim.json b/data/software/ph/phonegaim.json new file mode 100644 index 000000000000..a3121dc43088 --- /dev/null +++ b/data/software/ph/phonegaim.json @@ -0,0 +1,8 @@ +{ + "slug": "phonegaim", + "name": "PhoneGaim", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3509862" + ] +} diff --git a/data/software/ph/phoneme.json b/data/software/ph/phoneme.json new file mode 100644 index 000000000000..641a452b9f44 --- /dev/null +++ b/data/software/ph/phoneme.json @@ -0,0 +1,14 @@ +{ + "slug": "phoneme", + "name": "phoneME", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17049269" + ], + "developers": [ + "Sun Microsystems" + ], + "licenses": [ + "GNU General Public License" + ] +} diff --git a/data/software/ph/phoner.json b/data/software/ph/phoner.json new file mode 100644 index 000000000000..53e8e5038d62 --- /dev/null +++ b/data/software/ph/phoner.json @@ -0,0 +1,14 @@ +{ + "slug": "phoner", + "name": "Phoner", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2088644" + ], + "operating_systems": [ + "Microsoft Windows" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/ph/phonevalet-message-center.json b/data/software/ph/phonevalet-message-center.json new file mode 100644 index 000000000000..936b5e9d20ab --- /dev/null +++ b/data/software/ph/phonevalet-message-center.json @@ -0,0 +1,8 @@ +{ + "slug": "phonevalet-message-center", + "name": "PhoneValet Message Center", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7187175" + ] +} diff --git a/data/software/ph/photo-mechanic.json b/data/software/ph/photo-mechanic.json new file mode 100644 index 000000000000..f175e45374cf --- /dev/null +++ b/data/software/ph/photo-mechanic.json @@ -0,0 +1,8 @@ +{ + "slug": "photo-mechanic", + "name": "Photo Mechanic", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7187677" + ] +} diff --git a/data/software/ph/photo-story.json b/data/software/ph/photo-story.json new file mode 100644 index 000000000000..c0b228c208e3 --- /dev/null +++ b/data/software/ph/photo-story.json @@ -0,0 +1,8 @@ +{ + "slug": "photo-story", + "name": "Photo Story", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6888483" + ] +} diff --git a/data/software/ph/photodna.json b/data/software/ph/photodna.json new file mode 100644 index 000000000000..7ac473daa9b2 --- /dev/null +++ b/data/software/ph/photodna.json @@ -0,0 +1,8 @@ +{ + "slug": "photodna", + "name": "PhotoDNA", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17042843" + ] +} diff --git a/data/software/ph/photogrammar.json b/data/software/ph/photogrammar.json new file mode 100644 index 000000000000..e3c18695cf27 --- /dev/null +++ b/data/software/ph/photogrammar.json @@ -0,0 +1,8 @@ +{ + "slug": "photogrammar", + "name": "Photogrammar", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084472" + ] +} diff --git a/data/software/ph/photoimpression.json b/data/software/ph/photoimpression.json new file mode 100644 index 000000000000..2effde21c831 --- /dev/null +++ b/data/software/ph/photoimpression.json @@ -0,0 +1,11 @@ +{ + "slug": "photoimpression", + "name": "PhotoImpression", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7187654" + ], + "developers": [ + "ArcSoft" + ] +} diff --git a/data/software/ph/photomod.json b/data/software/ph/photomod.json new file mode 100644 index 000000000000..a0c9e4717481 --- /dev/null +++ b/data/software/ph/photomod.json @@ -0,0 +1,12 @@ +{ + "slug": "photomod", + "name": "PHOTOMOD", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q19612824" + ], + "release_date": "1994-01-01", + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/ph/photomodeler.json b/data/software/ph/photomodeler.json new file mode 100644 index 000000000000..214d6a011cc2 --- /dev/null +++ b/data/software/ph/photomodeler.json @@ -0,0 +1,11 @@ +{ + "slug": "photomodeler", + "name": "PhotoModeler", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7187659" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/ph/photopc.json b/data/software/ph/photopc.json new file mode 100644 index 000000000000..a1f91dfccbba --- /dev/null +++ b/data/software/ph/photopc.json @@ -0,0 +1,8 @@ +{ + "slug": "photopc", + "name": "PhotoPC", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62856637" + ] +} diff --git a/data/software/ph/photopia-optical-design-software.json b/data/software/ph/photopia-optical-design-software.json new file mode 100644 index 000000000000..015dfed5e989 --- /dev/null +++ b/data/software/ph/photopia-optical-design-software.json @@ -0,0 +1,11 @@ +{ + "slug": "photopia-optical-design-software", + "name": "Photopia Optical Design Software", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q20712381" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/ph/photoscape.json b/data/software/ph/photoscape.json new file mode 100644 index 000000000000..1b5caad3a237 --- /dev/null +++ b/data/software/ph/photoscape.json @@ -0,0 +1,11 @@ +{ + "slug": "photoscape", + "name": "PhotoScape", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3775026" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/ph/photoscore.json b/data/software/ph/photoscore.json new file mode 100644 index 000000000000..8d3268c56877 --- /dev/null +++ b/data/software/ph/photoscore.json @@ -0,0 +1,8 @@ +{ + "slug": "photoscore", + "name": "PhotoScore", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084474" + ] +} diff --git a/data/software/ph/photoshop-photomerge.json b/data/software/ph/photoshop-photomerge.json new file mode 100644 index 000000000000..81351b3e412d --- /dev/null +++ b/data/software/ph/photoshop-photomerge.json @@ -0,0 +1,8 @@ +{ + "slug": "photoshop-photomerge", + "name": "Photoshop Photomerge", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137589391" + ] +} diff --git a/data/software/ph/photostage.json b/data/software/ph/photostage.json new file mode 100644 index 000000000000..3248ca071cac --- /dev/null +++ b/data/software/ph/photostage.json @@ -0,0 +1,8 @@ +{ + "slug": "photostage", + "name": "PhotoStage", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109236506" + ] +} diff --git a/data/software/ph/photosynth.json b/data/software/ph/photosynth.json new file mode 100644 index 000000000000..69be0c844c3f --- /dev/null +++ b/data/software/ph/photosynth.json @@ -0,0 +1,11 @@ +{ + "slug": "photosynth", + "name": "Photosynth", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1848975" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/ph/phototonic.json b/data/software/ph/phototonic.json new file mode 100644 index 000000000000..fd65361a9d47 --- /dev/null +++ b/data/software/ph/phototonic.json @@ -0,0 +1,8 @@ +{ + "slug": "phototonic", + "name": "phototonic", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975331" + ] +} diff --git a/data/software/ph/photoworks.json b/data/software/ph/photoworks.json new file mode 100644 index 000000000000..09687347cf2e --- /dev/null +++ b/data/software/ph/photoworks.json @@ -0,0 +1,8 @@ +{ + "slug": "photoworks", + "name": "PhotoWorks", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7187944" + ] +} diff --git a/data/software/ph/php-tools-for-visual-studio.json b/data/software/ph/php-tools-for-visual-studio.json new file mode 100644 index 000000000000..b7b771859de7 --- /dev/null +++ b/data/software/ph/php-tools-for-visual-studio.json @@ -0,0 +1,8 @@ +{ + "slug": "php-tools-for-visual-studio", + "name": "PHP Tools for Visual Studio", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q64138790" + ] +} diff --git a/data/software/ph/phpboost.json b/data/software/ph/phpboost.json new file mode 100644 index 000000000000..46da59e64522 --- /dev/null +++ b/data/software/ph/phpboost.json @@ -0,0 +1,14 @@ +{ + "slug": "phpboost", + "name": "PHPBoost", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q104417837" + ], + "programming_languages": [ + "PHP" + ], + "licenses": [ + "GNU General Public License, version 3.0" + ] +} diff --git a/data/software/ph/phpdesigner.json b/data/software/ph/phpdesigner.json new file mode 100644 index 000000000000..316353a9111a --- /dev/null +++ b/data/software/ph/phpdesigner.json @@ -0,0 +1,8 @@ +{ + "slug": "phpdesigner", + "name": "phpDesigner", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3381641" + ] +} diff --git a/data/software/ph/phpesb.json b/data/software/ph/phpesb.json new file mode 100644 index 000000000000..79350b58839d --- /dev/null +++ b/data/software/ph/phpesb.json @@ -0,0 +1,18 @@ +{ + "slug": "phpesb", + "name": "phpESB", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106382287" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [ + "PHP" + ], + "licenses": [ + "BSD licenses" + ] +} diff --git a/data/software/ph/phpstan.json b/data/software/ph/phpstan.json new file mode 100644 index 000000000000..9d87f8ab152b --- /dev/null +++ b/data/software/ph/phpstan.json @@ -0,0 +1,14 @@ +{ + "slug": "phpstan", + "name": "PHPStan", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72164986" + ], + "programming_languages": [ + "PHP" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/ph/phpsurvey.json b/data/software/ph/phpsurvey.json new file mode 100644 index 000000000000..f8f53aef8202 --- /dev/null +++ b/data/software/ph/phpsurvey.json @@ -0,0 +1,18 @@ +{ + "slug": "phpsurvey", + "name": "phpSurvey", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106382288" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [ + "PHP" + ], + "licenses": [ + "GNU General Public License, version 2.0" + ] +} diff --git a/data/software/ph/phpwebsite.json b/data/software/ph/phpwebsite.json new file mode 100644 index 000000000000..f98f8727e627 --- /dev/null +++ b/data/software/ph/phpwebsite.json @@ -0,0 +1,8 @@ +{ + "slug": "phpwebsite", + "name": "phpwebsite", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q88501766" + ] +} diff --git a/data/software/ph/phpwind.json b/data/software/ph/phpwind.json new file mode 100644 index 000000000000..72091ad6c5fd --- /dev/null +++ b/data/software/ph/phpwind.json @@ -0,0 +1,8 @@ +{ + "slug": "phpwind", + "name": "PHPWind", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4922553" + ] +} diff --git a/data/software/ph/phrap.json b/data/software/ph/phrap.json new file mode 100644 index 000000000000..4a405b4d158f --- /dev/null +++ b/data/software/ph/phrap.json @@ -0,0 +1,21 @@ +{ + "slug": "phrap", + "name": "Phrap", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4027040" + ], + "developers": [ + "Philip P. Green" + ], + "operating_systems": [ + "HP-UX", + "IRIX", + "IBM AIX", + "Berkeley Software Distribution", + "Tru64 UNIX", + "Solaris", + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/software/ph/phraseanet.json b/data/software/ph/phraseanet.json new file mode 100644 index 000000000000..e46378cfddc6 --- /dev/null +++ b/data/software/ph/phraseanet.json @@ -0,0 +1,8 @@ +{ + "slug": "phraseanet", + "name": "Phraseanet", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q24273068" + ] +} diff --git a/data/software/ph/phred-base-calling.json b/data/software/ph/phred-base-calling.json new file mode 100644 index 000000000000..cbf055013cc1 --- /dev/null +++ b/data/software/ph/phred-base-calling.json @@ -0,0 +1,21 @@ +{ + "slug": "phred-base-calling", + "name": "Phred base calling", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6121978" + ], + "developers": [ + "Philip P. Green" + ], + "operating_systems": [ + "HP-UX", + "IRIX", + "IBM AIX", + "Tru64 UNIX", + "Berkeley Software Distribution", + "Solaris", + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/software/ph/phreedom.json b/data/software/ph/phreedom.json new file mode 100644 index 000000000000..868f46093b48 --- /dev/null +++ b/data/software/ph/phreedom.json @@ -0,0 +1,8 @@ +{ + "slug": "phreedom", + "name": "Phreedom", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7188107" + ] +} diff --git a/data/software/ph/phreeqc.json b/data/software/ph/phreeqc.json new file mode 100644 index 000000000000..07b3c8add907 --- /dev/null +++ b/data/software/ph/phreeqc.json @@ -0,0 +1,8 @@ +{ + "slug": "phreeqc", + "name": "PHREEQC", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107274436" + ] +} diff --git a/data/software/ph/phtml-encoder.json b/data/software/ph/phtml-encoder.json new file mode 100644 index 000000000000..777f0ecb47ac --- /dev/null +++ b/data/software/ph/phtml-encoder.json @@ -0,0 +1,8 @@ +{ + "slug": "phtml-encoder", + "name": "PHTML Encoder", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q13012387" + ] +} diff --git a/data/software/ph/phylogenetic-analysis-using-parsimony-and-other-methods.json b/data/software/ph/phylogenetic-analysis-using-parsimony-and-other-methods.json new file mode 100644 index 000000000000..319f4ca3b9fb --- /dev/null +++ b/data/software/ph/phylogenetic-analysis-using-parsimony-and-other-methods.json @@ -0,0 +1,8 @@ +{ + "slug": "phylogenetic-analysis-using-parsimony-and-other-methods", + "name": "Phylogenetic Analysis Using Parsimony *and other methods", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7118292" + ] +} diff --git a/data/software/ph/phyloscan.json b/data/software/ph/phyloscan.json new file mode 100644 index 000000000000..e8685254f74a --- /dev/null +++ b/data/software/ph/phyloscan.json @@ -0,0 +1,12 @@ +{ + "slug": "phyloscan", + "name": "Phyloscan", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7189447" + ], + "developers": [ + "New York State Department of Health", + "Wadsworth Center" + ] +} diff --git a/data/software/ph/phyloxml.json b/data/software/ph/phyloxml.json new file mode 100644 index 000000000000..cbb066537150 --- /dev/null +++ b/data/software/ph/phyloxml.json @@ -0,0 +1,8 @@ +{ + "slug": "phyloxml", + "name": "PhyloXML", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7189430" + ] +} diff --git a/data/software/ph/phyre-phyre2.json b/data/software/ph/phyre-phyre2.json new file mode 100644 index 000000000000..33d12654f01d --- /dev/null +++ b/data/software/ph/phyre-phyre2.json @@ -0,0 +1,8 @@ +{ + "slug": "phyre-phyre2", + "name": "Phyre / Phyre2", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7189477" + ] +} diff --git a/data/software/ph/physicell.json b/data/software/ph/physicell.json new file mode 100644 index 000000000000..47782e30149d --- /dev/null +++ b/data/software/ph/physicell.json @@ -0,0 +1,8 @@ +{ + "slug": "physicell", + "name": "PhysiCell", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111822321" + ] +} diff --git a/data/software/ph/physicians-information-and-education-resource.json b/data/software/ph/physicians-information-and-education-resource.json new file mode 100644 index 000000000000..04cb23f9f698 --- /dev/null +++ b/data/software/ph/physicians-information-and-education-resource.json @@ -0,0 +1,8 @@ +{ + "slug": "physicians-information-and-education-resource", + "name": "Physicians' Information and Education Resource", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7189658" + ] +} diff --git a/data/software/pi/pi-kvm.json b/data/software/pi/pi-kvm.json new file mode 100644 index 000000000000..9bdd9e38f42f --- /dev/null +++ b/data/software/pi/pi-kvm.json @@ -0,0 +1,11 @@ +{ + "slug": "pi-kvm", + "name": "Pi-KVM", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q102254658" + ], + "licenses": [ + "GNU General Public License, version 3.0" + ] +} diff --git a/data/software/pi/piano-booster.json b/data/software/pi/piano-booster.json new file mode 100644 index 000000000000..23c94ceef720 --- /dev/null +++ b/data/software/pi/piano-booster.json @@ -0,0 +1,8 @@ +{ + "slug": "piano-booster", + "name": "Piano Booster", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117527599" + ] +} diff --git a/data/software/pi/piano-from-above.json b/data/software/pi/piano-from-above.json new file mode 100644 index 000000000000..6a3b5e6b85f2 --- /dev/null +++ b/data/software/pi/piano-from-above.json @@ -0,0 +1,8 @@ +{ + "slug": "piano-from-above", + "name": "Piano From Above", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117756031" + ] +} diff --git a/data/software/pi/pianobar.json b/data/software/pi/pianobar.json new file mode 100644 index 000000000000..66d03dc320ce --- /dev/null +++ b/data/software/pi/pianobar.json @@ -0,0 +1,11 @@ +{ + "slug": "pianobar", + "name": "pianobar", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975332" + ], + "operating_systems": [ + "Unix-like operating system" + ] +} diff --git a/data/software/pi/pianoteq.json b/data/software/pi/pianoteq.json new file mode 100644 index 000000000000..fcd7a55fc5cd --- /dev/null +++ b/data/software/pi/pianoteq.json @@ -0,0 +1,8 @@ +{ + "slug": "pianoteq", + "name": "Pianoteq", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7190220" + ] +} diff --git a/data/software/pi/piazza.json b/data/software/pi/piazza.json new file mode 100644 index 000000000000..82130e961f5e --- /dev/null +++ b/data/software/pi/piazza.json @@ -0,0 +1,8 @@ +{ + "slug": "piazza", + "name": "Piazza", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084476" + ] +} diff --git a/data/software/pi/pic4carto.json b/data/software/pi/pic4carto.json new file mode 100644 index 000000000000..02984163f3a0 --- /dev/null +++ b/data/software/pi/pic4carto.json @@ -0,0 +1,8 @@ +{ + "slug": "pic4carto", + "name": "Pic4Carto", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q98732064" + ] +} diff --git a/data/software/pi/picapport.json b/data/software/pi/picapport.json new file mode 100644 index 000000000000..efdc2707cd1c --- /dev/null +++ b/data/software/pi/picapport.json @@ -0,0 +1,8 @@ +{ + "slug": "picapport", + "name": "PicApport", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q20182443" + ] +} diff --git a/data/software/pi/pickawin.json b/data/software/pi/pickawin.json new file mode 100644 index 000000000000..111d58b8024d --- /dev/null +++ b/data/software/pi/pickawin.json @@ -0,0 +1,8 @@ +{ + "slug": "pickawin", + "name": "PickAWin", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140089698" + ] +} diff --git a/data/software/pi/pickle.json b/data/software/pi/pickle.json new file mode 100644 index 000000000000..cb8340284f7e --- /dev/null +++ b/data/software/pi/pickle.json @@ -0,0 +1,8 @@ +{ + "slug": "pickle", + "name": "Pickle", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q39073842" + ] +} diff --git a/data/software/pi/picocalc.json b/data/software/pi/picocalc.json new file mode 100644 index 000000000000..34e85ff8f61a --- /dev/null +++ b/data/software/pi/picocalc.json @@ -0,0 +1,9 @@ +{ + "slug": "picocalc", + "name": "PicoCalc", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122920369" + ], + "release_date": "2021-02-24" +} diff --git a/data/software/pi/picocom.json b/data/software/pi/picocom.json new file mode 100644 index 000000000000..24210f81885e --- /dev/null +++ b/data/software/pi/picocom.json @@ -0,0 +1,8 @@ +{ + "slug": "picocom", + "name": "picocom", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62863357" + ] +} diff --git a/data/software/pi/picom.json b/data/software/pi/picom.json new file mode 100644 index 000000000000..77ccc956e243 --- /dev/null +++ b/data/software/pi/picom.json @@ -0,0 +1,11 @@ +{ + "slug": "picom", + "name": "Picom", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q119084274" + ], + "licenses": [ + "Mozilla Public License, version 2.0" + ] +} diff --git a/data/software/pi/picoscope.json b/data/software/pi/picoscope.json new file mode 100644 index 000000000000..b2bb4370f3d7 --- /dev/null +++ b/data/software/pi/picoscope.json @@ -0,0 +1,21 @@ +{ + "slug": "picoscope", + "name": "PicoScope", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q20065342" + ], + "developers": [ + "Pico Technology" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [ + "Visual C++" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/pi/picospan.json b/data/software/pi/picospan.json new file mode 100644 index 000000000000..12f3a3fc352c --- /dev/null +++ b/data/software/pi/picospan.json @@ -0,0 +1,9 @@ +{ + "slug": "picospan", + "name": "PicoSpan", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7191002" + ], + "release_date": "1982-01-01" +} diff --git a/data/software/pi/picrust.json b/data/software/pi/picrust.json new file mode 100644 index 000000000000..4408a3d3809b --- /dev/null +++ b/data/software/pi/picrust.json @@ -0,0 +1,8 @@ +{ + "slug": "picrust", + "name": "PICRUSt", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22681967" + ] +} diff --git a/data/software/pi/picture-motion-browser.json b/data/software/pi/picture-motion-browser.json new file mode 100644 index 000000000000..73ac79a64a7f --- /dev/null +++ b/data/software/pi/picture-motion-browser.json @@ -0,0 +1,11 @@ +{ + "slug": "picture-motion-browser", + "name": "Picture Motion Browser", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7191159" + ], + "developers": [ + "Sony Group" + ] +} diff --git a/data/software/pi/picture-prowler.json b/data/software/pi/picture-prowler.json new file mode 100644 index 000000000000..c2b042b99023 --- /dev/null +++ b/data/software/pi/picture-prowler.json @@ -0,0 +1,8 @@ +{ + "slug": "picture-prowler", + "name": "Picture Prowler", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7191173" + ] +} diff --git a/data/software/pi/picture-publisher.json b/data/software/pi/picture-publisher.json new file mode 100644 index 000000000000..cf0fe3f76c03 --- /dev/null +++ b/data/software/pi/picture-publisher.json @@ -0,0 +1,8 @@ +{ + "slug": "picture-publisher", + "name": "Picture Publisher", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137761634" + ] +} diff --git a/data/software/pi/pictureframe.json b/data/software/pi/pictureframe.json new file mode 100644 index 000000000000..57e7bcf0b127 --- /dev/null +++ b/data/software/pi/pictureframe.json @@ -0,0 +1,8 @@ +{ + "slug": "pictureframe", + "name": "pictureframe", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065156" + ] +} diff --git a/data/software/pi/picturestoexe.json b/data/software/pi/picturestoexe.json new file mode 100644 index 000000000000..8510592af95a --- /dev/null +++ b/data/software/pi/picturestoexe.json @@ -0,0 +1,8 @@ +{ + "slug": "picturestoexe", + "name": "PicturesToExe", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7191220" + ] +} diff --git a/data/software/pi/pidgin-festival.json b/data/software/pi/pidgin-festival.json new file mode 100644 index 000000000000..70e69200e8dc --- /dev/null +++ b/data/software/pi/pidgin-festival.json @@ -0,0 +1,8 @@ +{ + "slug": "pidgin-festival", + "name": "pidgin-festival", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62858840" + ] +} diff --git a/data/software/pi/pidgin-funyahoo-plusplus.json b/data/software/pi/pidgin-funyahoo-plusplus.json new file mode 100644 index 000000000000..1d292b055632 --- /dev/null +++ b/data/software/pi/pidgin-funyahoo-plusplus.json @@ -0,0 +1,8 @@ +{ + "slug": "pidgin-funyahoo-plusplus", + "name": "pidgin-funyahoo-plusplus", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975333" + ] +} diff --git a/data/software/pi/pidgin-hotkeys.json b/data/software/pi/pidgin-hotkeys.json new file mode 100644 index 000000000000..61819e891665 --- /dev/null +++ b/data/software/pi/pidgin-hotkeys.json @@ -0,0 +1,8 @@ +{ + "slug": "pidgin-hotkeys", + "name": "pidgin-hotkeys", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62858836" + ] +} diff --git a/data/software/pi/pidgin-privacy-please.json b/data/software/pi/pidgin-privacy-please.json new file mode 100644 index 000000000000..a36aefd87918 --- /dev/null +++ b/data/software/pi/pidgin-privacy-please.json @@ -0,0 +1,8 @@ +{ + "slug": "pidgin-privacy-please", + "name": "pidgin-privacy-please", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62858829" + ] +} diff --git a/data/software/pi/pidoco.json b/data/software/pi/pidoco.json new file mode 100644 index 000000000000..209870197c73 --- /dev/null +++ b/data/software/pi/pidoco.json @@ -0,0 +1,8 @@ +{ + "slug": "pidoco", + "name": "Pidoco", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7191304" + ] +} diff --git a/data/software/pi/pie-commander.json b/data/software/pi/pie-commander.json new file mode 100644 index 000000000000..acbbc4d2dc1b --- /dev/null +++ b/data/software/pi/pie-commander.json @@ -0,0 +1,8 @@ +{ + "slug": "pie-commander", + "name": "PIE Commander", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4046200" + ] +} diff --git a/data/software/pi/piep.json b/data/software/pi/piep.json new file mode 100644 index 000000000000..9769010de0f0 --- /dev/null +++ b/data/software/pi/piep.json @@ -0,0 +1,8 @@ +{ + "slug": "piep", + "name": "PieP", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7191320" + ] +} diff --git a/data/software/pi/pietty.json b/data/software/pi/pietty.json new file mode 100644 index 000000000000..fd4033fdcea0 --- /dev/null +++ b/data/software/pi/pietty.json @@ -0,0 +1,8 @@ +{ + "slug": "pietty", + "name": "PieTTY", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10852156" + ] +} diff --git a/data/software/pi/pifast.json b/data/software/pi/pifast.json new file mode 100644 index 000000000000..a90d3debca0f --- /dev/null +++ b/data/software/pi/pifast.json @@ -0,0 +1,8 @@ +{ + "slug": "pifast", + "name": "PiFast", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q12331827" + ] +} diff --git a/data/software/pi/pihex.json b/data/software/pi/pihex.json new file mode 100644 index 000000000000..e3722849a1a0 --- /dev/null +++ b/data/software/pi/pihex.json @@ -0,0 +1,8 @@ +{ + "slug": "pihex", + "name": "PiHex", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3382155" + ] +} diff --git a/data/software/pi/piictu.json b/data/software/pi/piictu.json new file mode 100644 index 000000000000..b2d6fee927bb --- /dev/null +++ b/data/software/pi/piictu.json @@ -0,0 +1,14 @@ +{ + "slug": "piictu", + "name": "Piictu", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16975424" + ], + "operating_systems": [ + "iOS" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/pi/pika-labs.json b/data/software/pi/pika-labs.json new file mode 100644 index 000000000000..cbb38a9aa29c --- /dev/null +++ b/data/software/pi/pika-labs.json @@ -0,0 +1,9 @@ +{ + "slug": "pika-labs", + "name": "Pika Labs", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q133141069" + ], + "release_date": "2024-01-01" +} diff --git a/data/software/pi/pika.json b/data/software/pi/pika.json new file mode 100644 index 000000000000..0d7c7da6c903 --- /dev/null +++ b/data/software/pi/pika.json @@ -0,0 +1,11 @@ +{ + "slug": "pika", + "name": "pika", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120333967" + ], + "licenses": [ + "Boost Software License" + ] +} diff --git a/data/software/pi/pikdek.json b/data/software/pi/pikdek.json new file mode 100644 index 000000000000..681a192afaf4 --- /dev/null +++ b/data/software/pi/pikdek.json @@ -0,0 +1,8 @@ +{ + "slug": "pikdek", + "name": "PikDek", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140462237" + ] +} diff --git a/data/software/pi/piktochart.json b/data/software/pi/piktochart.json new file mode 100644 index 000000000000..cf2665b5aac1 --- /dev/null +++ b/data/software/pi/piktochart.json @@ -0,0 +1,8 @@ +{ + "slug": "piktochart", + "name": "Piktochart", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17074977" + ] +} diff --git a/data/software/pi/piler.json b/data/software/pi/piler.json new file mode 100644 index 000000000000..dfbec68b93f6 --- /dev/null +++ b/data/software/pi/piler.json @@ -0,0 +1,8 @@ +{ + "slug": "piler", + "name": "piler", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62863407" + ] +} diff --git a/data/software/pi/pilot-link.json b/data/software/pi/pilot-link.json new file mode 100644 index 000000000000..0c6544e26931 --- /dev/null +++ b/data/software/pi/pilot-link.json @@ -0,0 +1,8 @@ +{ + "slug": "pilot-link", + "name": "Pilot-link", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7194324" + ] +} diff --git a/data/software/pi/pim-lx.json b/data/software/pi/pim-lx.json new file mode 100644 index 000000000000..1e4093f0c135 --- /dev/null +++ b/data/software/pi/pim-lx.json @@ -0,0 +1,14 @@ +{ + "slug": "pim-lx", + "name": "PIM/LX", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121672436" + ], + "developers": [ + "D&A Software" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/pi/pin.json b/data/software/pi/pin.json new file mode 100644 index 000000000000..553356b76ebb --- /dev/null +++ b/data/software/pi/pin.json @@ -0,0 +1,11 @@ +{ + "slug": "pin", + "name": "Pin", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7194748" + ], + "developers": [ + "Intel" + ] +} diff --git a/data/software/pi/pinepgp.json b/data/software/pi/pinepgp.json new file mode 100644 index 000000000000..d2524c5156f9 --- /dev/null +++ b/data/software/pi/pinepgp.json @@ -0,0 +1,8 @@ +{ + "slug": "pinepgp", + "name": "pinepgp", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60916658" + ] +} diff --git a/data/software/pi/pinfo.json b/data/software/pi/pinfo.json new file mode 100644 index 000000000000..21ddc493dd0c --- /dev/null +++ b/data/software/pi/pinfo.json @@ -0,0 +1,8 @@ +{ + "slug": "pinfo", + "name": "pinfo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62858801" + ] +} diff --git a/data/software/pi/ping-sweep.json b/data/software/pi/ping-sweep.json new file mode 100644 index 000000000000..454ba4ed8347 --- /dev/null +++ b/data/software/pi/ping-sweep.json @@ -0,0 +1,8 @@ +{ + "slug": "ping-sweep", + "name": "ping sweep", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1943122" + ] +} diff --git a/data/software/pi/pingie.json b/data/software/pi/pingie.json new file mode 100644 index 000000000000..da4a622a541b --- /dev/null +++ b/data/software/pi/pingie.json @@ -0,0 +1,8 @@ +{ + "slug": "pingie", + "name": "Pingie", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140051804" + ] +} diff --git a/data/software/pi/pinnacle-expression.json b/data/software/pi/pinnacle-expression.json new file mode 100644 index 000000000000..b9251e7081eb --- /dev/null +++ b/data/software/pi/pinnacle-expression.json @@ -0,0 +1,12 @@ +{ + "slug": "pinnacle-expression", + "name": "Pinnacle Expression", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q57979738" + ], + "release_date": "2002-01-01", + "developers": [ + "Pinnacle Systems" + ] +} diff --git a/data/software/pi/pinocchio.json b/data/software/pi/pinocchio.json new file mode 100644 index 000000000000..0b0180e47a24 --- /dev/null +++ b/data/software/pi/pinocchio.json @@ -0,0 +1,11 @@ +{ + "slug": "pinocchio", + "name": "Pinocchio", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134831866" + ], + "licenses": [ + "2-clause BSD License" + ] +} diff --git a/data/software/pi/pinpointiq.json b/data/software/pi/pinpointiq.json new file mode 100644 index 000000000000..287149b592aa --- /dev/null +++ b/data/software/pi/pinpointiq.json @@ -0,0 +1,14 @@ +{ + "slug": "pinpointiq", + "name": "PinpointIQ", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140181144" + ], + "developers": [ + "2nd St Strategy" + ], + "publishers": [ + "2nd St Strategy" + ] +} diff --git a/data/software/pi/pinyin-input-method.json b/data/software/pi/pinyin-input-method.json new file mode 100644 index 000000000000..54620dd71679 --- /dev/null +++ b/data/software/pi/pinyin-input-method.json @@ -0,0 +1,8 @@ +{ + "slug": "pinyin-input-method", + "name": "pinyin input method", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3333677" + ] +} diff --git a/data/software/pi/pipebench.json b/data/software/pi/pipebench.json new file mode 100644 index 000000000000..b8781faf4ade --- /dev/null +++ b/data/software/pi/pipebench.json @@ -0,0 +1,8 @@ +{ + "slug": "pipebench", + "name": "pipebench", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62860219" + ] +} diff --git a/data/software/pi/pipelight.json b/data/software/pi/pipelight.json new file mode 100644 index 000000000000..32cb17f66586 --- /dev/null +++ b/data/software/pi/pipelight.json @@ -0,0 +1,8 @@ +{ + "slug": "pipelight", + "name": "Pipelight", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18154934" + ] +} diff --git a/data/software/pi/piper.json b/data/software/pi/piper.json new file mode 100644 index 000000000000..46f0c4d74976 --- /dev/null +++ b/data/software/pi/piper.json @@ -0,0 +1,8 @@ +{ + "slug": "piper", + "name": "Piper", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131176969" + ] +} diff --git a/data/software/pi/pipoca.json b/data/software/pi/pipoca.json new file mode 100644 index 000000000000..140e14ab2239 --- /dev/null +++ b/data/software/pi/pipoca.json @@ -0,0 +1,18 @@ +{ + "slug": "pipoca", + "name": "Pipoca", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105864996" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [ + "PHP" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/pi/piranesi.json b/data/software/pi/piranesi.json new file mode 100644 index 000000000000..40ecd63d35fa --- /dev/null +++ b/data/software/pi/piranesi.json @@ -0,0 +1,11 @@ +{ + "slug": "piranesi", + "name": "Piranesi", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4046991" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/pi/piranha.json b/data/software/pi/piranha.json new file mode 100644 index 000000000000..056e5f930f2e --- /dev/null +++ b/data/software/pi/piranha.json @@ -0,0 +1,8 @@ +{ + "slug": "piranha", + "name": "Piranha", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18388711" + ] +} diff --git a/data/software/pi/pirate-king-online.json b/data/software/pi/pirate-king-online.json new file mode 100644 index 000000000000..8cf46385e97a --- /dev/null +++ b/data/software/pi/pirate-king-online.json @@ -0,0 +1,8 @@ +{ + "slug": "pirate-king-online", + "name": "Pirate King Online", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140354976" + ] +} diff --git a/data/software/pi/pirate-pay.json b/data/software/pi/pirate-pay.json new file mode 100644 index 000000000000..b242f94832e0 --- /dev/null +++ b/data/software/pi/pirate-pay.json @@ -0,0 +1,11 @@ +{ + "slug": "pirate-pay", + "name": "Pirate Pay", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7197819" + ], + "genres": [ + "copy protection" + ] +} diff --git a/data/software/pi/pirni.json b/data/software/pi/pirni.json new file mode 100644 index 000000000000..8ac3faf3d0e6 --- /dev/null +++ b/data/software/pi/pirni.json @@ -0,0 +1,15 @@ +{ + "slug": "pirni", + "name": "Pirni", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7198052" + ], + "release_date": "2010-05-29", + "operating_systems": [ + "iOS" + ], + "programming_languages": [ + "Objective-C" + ] +} diff --git a/data/software/pi/pisi.json b/data/software/pi/pisi.json new file mode 100644 index 000000000000..84c127e2a9be --- /dev/null +++ b/data/software/pi/pisi.json @@ -0,0 +1,8 @@ +{ + "slug": "pisi", + "name": "PiSi", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6100943" + ] +} diff --git a/data/software/pi/pisignage.json b/data/software/pi/pisignage.json new file mode 100644 index 000000000000..2384dcda4f57 --- /dev/null +++ b/data/software/pi/pisignage.json @@ -0,0 +1,11 @@ +{ + "slug": "pisignage", + "name": "PiSignage", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136645390" + ], + "licenses": [ + "open-source software" + ] +} diff --git a/data/software/pi/pisonet.json b/data/software/pi/pisonet.json new file mode 100644 index 000000000000..8e6057eb91ee --- /dev/null +++ b/data/software/pi/pisonet.json @@ -0,0 +1,8 @@ +{ + "slug": "pisonet", + "name": "Pisonet", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6076859" + ] +} diff --git a/data/software/pi/pitchy-software.json b/data/software/pi/pitchy-software.json new file mode 100644 index 000000000000..625459c6fd73 --- /dev/null +++ b/data/software/pi/pitchy-software.json @@ -0,0 +1,8 @@ +{ + "slug": "pitchy-software", + "name": "Pitchy software", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136979949" + ] +} diff --git a/data/software/pi/piv2hdf.json b/data/software/pi/piv2hdf.json new file mode 100644 index 000000000000..176dbd25b54e --- /dev/null +++ b/data/software/pi/piv2hdf.json @@ -0,0 +1,17 @@ +{ + "slug": "piv2hdf", + "name": "piv2hdf", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131448266" + ], + "developers": [ + "Matthias Probst" + ], + "programming_languages": [ + "Python" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/pi/pivmetalib.json b/data/software/pi/pivmetalib.json new file mode 100644 index 000000000000..e8c0db65eac5 --- /dev/null +++ b/data/software/pi/pivmetalib.json @@ -0,0 +1,12 @@ +{ + "slug": "pivmetalib", + "name": "pivmetalib", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131449943" + ], + "release_date": "2024-12-15", + "developers": [ + "Matthias Probst" + ] +} diff --git a/data/software/pi/pivot-animator.json b/data/software/pi/pivot-animator.json new file mode 100644 index 000000000000..f7dfce761c6e --- /dev/null +++ b/data/software/pi/pivot-animator.json @@ -0,0 +1,17 @@ +{ + "slug": "pivot-animator", + "name": "Pivot Animator", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1474827" + ], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [ + "Object Pascal" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/pi/pivotal-greenplum-database.json b/data/software/pi/pivotal-greenplum-database.json new file mode 100644 index 000000000000..aa5cadf12ea0 --- /dev/null +++ b/data/software/pi/pivotal-greenplum-database.json @@ -0,0 +1,8 @@ +{ + "slug": "pivotal-greenplum-database", + "name": "Pivotal Greenplum Database", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18388787" + ] +} diff --git a/data/software/pi/pivotal-labs.json b/data/software/pi/pivotal-labs.json new file mode 100644 index 000000000000..d355cd63b4dd --- /dev/null +++ b/data/software/pi/pivotal-labs.json @@ -0,0 +1,8 @@ +{ + "slug": "pivotal-labs", + "name": "Pivotal Labs", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7199662" + ] +} diff --git a/data/software/pi/pivotal-tracker.json b/data/software/pi/pivotal-tracker.json new file mode 100644 index 000000000000..f5f1dade96ba --- /dev/null +++ b/data/software/pi/pivotal-tracker.json @@ -0,0 +1,8 @@ +{ + "slug": "pivotal-tracker", + "name": "Pivotal Tracker", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084478" + ] +} diff --git a/data/software/pi/pix.json b/data/software/pi/pix.json new file mode 100644 index 000000000000..ed575bebdf5d --- /dev/null +++ b/data/software/pi/pix.json @@ -0,0 +1,11 @@ +{ + "slug": "pix", + "name": "PIX", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7119453" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/pi/pix4dmapper.json b/data/software/pi/pix4dmapper.json new file mode 100644 index 000000000000..9160cbb55b7e --- /dev/null +++ b/data/software/pi/pix4dmapper.json @@ -0,0 +1,8 @@ +{ + "slug": "pix4dmapper", + "name": "PIX4Dmapper", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130221244" + ] +} diff --git a/data/software/pi/pixel-game-maker-mv.json b/data/software/pi/pixel-game-maker-mv.json new file mode 100644 index 000000000000..9939cf37eed3 --- /dev/null +++ b/data/software/pi/pixel-game-maker-mv.json @@ -0,0 +1,15 @@ +{ + "slug": "pixel-game-maker-mv", + "name": "Pixel Game Maker MV", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10846413" + ], + "release_date": "2019-09-19", + "publishers": [ + "Gotcha Gotcha Games" + ], + "genres": [ + "action game" + ] +} diff --git a/data/software/pi/pixel-studio-pro.json b/data/software/pi/pixel-studio-pro.json new file mode 100644 index 000000000000..d2bb3033807a --- /dev/null +++ b/data/software/pi/pixel-studio-pro.json @@ -0,0 +1,8 @@ +{ + "slug": "pixel-studio-pro", + "name": "Pixel Studio Pro", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q601917" + ] +} diff --git a/data/software/pi/pixeljunk-monsters-ultimate-hd.json b/data/software/pi/pixeljunk-monsters-ultimate-hd.json new file mode 100644 index 000000000000..912573b576e7 --- /dev/null +++ b/data/software/pi/pixeljunk-monsters-ultimate-hd.json @@ -0,0 +1,8 @@ +{ + "slug": "pixeljunk-monsters-ultimate-hd", + "name": "PixelJunk Monsters Ultimate HD", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140358628" + ] +} diff --git a/data/software/pi/pixels2pgf.json b/data/software/pi/pixels2pgf.json new file mode 100644 index 000000000000..ffb1d9b83843 --- /dev/null +++ b/data/software/pi/pixels2pgf.json @@ -0,0 +1,8 @@ +{ + "slug": "pixels2pgf", + "name": "pixels2pgf", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975336" + ] +} diff --git a/data/software/pi/pixetell.json b/data/software/pi/pixetell.json new file mode 100644 index 000000000000..90155fb42330 --- /dev/null +++ b/data/software/pi/pixetell.json @@ -0,0 +1,15 @@ +{ + "slug": "pixetell", + "name": "Pixetell", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7199724" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "screencasting software" + ] +} diff --git a/data/software/pi/pixie.json b/data/software/pi/pixie.json new file mode 100644 index 000000000000..feea2a0f7e0b --- /dev/null +++ b/data/software/pi/pixie.json @@ -0,0 +1,8 @@ +{ + "slug": "pixie", + "name": "Pixie", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3905929" + ] +} diff --git a/data/software/pi/pixinsight.json b/data/software/pi/pixinsight.json new file mode 100644 index 000000000000..d4d3d2ecf44f --- /dev/null +++ b/data/software/pi/pixinsight.json @@ -0,0 +1,19 @@ +{ + "slug": "pixinsight", + "name": "PixInsight", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17625195" + ], + "release_date": "2004-07-22", + "developers": [ + "Pleiades Astrophoto" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/pj/pjblog.json b/data/software/pj/pjblog.json new file mode 100644 index 000000000000..9c081c540793 --- /dev/null +++ b/data/software/pj/pjblog.json @@ -0,0 +1,8 @@ +{ + "slug": "pjblog", + "name": "PJBlog", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q9371498" + ] +} diff --git a/data/software/pk/pkp-open-archives-harvester.json b/data/software/pk/pkp-open-archives-harvester.json new file mode 100644 index 000000000000..3eff81466f48 --- /dev/null +++ b/data/software/pk/pkp-open-archives-harvester.json @@ -0,0 +1,8 @@ +{ + "slug": "pkp-open-archives-harvester", + "name": "PKP Open Archives Harvester", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7119529" + ] +} diff --git a/data/software/pk/pkpgcounter.json b/data/software/pk/pkpgcounter.json new file mode 100644 index 000000000000..b2ae9b2f5ffd --- /dev/null +++ b/data/software/pk/pkpgcounter.json @@ -0,0 +1,8 @@ +{ + "slug": "pkpgcounter", + "name": "pkpgcounter", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62860212" + ] +} diff --git a/data/software/pk/pkpm.json b/data/software/pk/pkpm.json new file mode 100644 index 000000000000..e36b1757e73b --- /dev/null +++ b/data/software/pk/pkpm.json @@ -0,0 +1,8 @@ +{ + "slug": "pkpm", + "name": "PKPM", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10852089" + ] +} diff --git a/data/software/pk/pktstat.json b/data/software/pk/pktstat.json new file mode 100644 index 000000000000..54d189ee174a --- /dev/null +++ b/data/software/pk/pktstat.json @@ -0,0 +1,8 @@ +{ + "slug": "pktstat", + "name": "pktstat", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62860137" + ] +} diff --git a/data/software/pl/plagiarismcheck.json b/data/software/pl/plagiarismcheck.json new file mode 100644 index 000000000000..5b656be24dbf --- /dev/null +++ b/data/software/pl/plagiarismcheck.json @@ -0,0 +1,8 @@ +{ + "slug": "plagiarismcheck", + "name": "PlagiarismCheck", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136333205" + ] +} diff --git a/data/software/pl/plagscan.json b/data/software/pl/plagscan.json new file mode 100644 index 000000000000..323b3e2ef228 --- /dev/null +++ b/data/software/pl/plagscan.json @@ -0,0 +1,8 @@ +{ + "slug": "plagscan", + "name": "PlagScan", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22907791" + ] +} diff --git a/data/software/pl/plaidml.json b/data/software/pl/plaidml.json new file mode 100644 index 000000000000..0e706b5948c7 --- /dev/null +++ b/data/software/pl/plaidml.json @@ -0,0 +1,8 @@ +{ + "slug": "plaidml", + "name": "PlaidML", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60787541" + ] +} diff --git a/data/software/pl/plain-ticket.json b/data/software/pl/plain-ticket.json new file mode 100644 index 000000000000..99b964ad5dc3 --- /dev/null +++ b/data/software/pl/plain-ticket.json @@ -0,0 +1,8 @@ +{ + "slug": "plain-ticket", + "name": "Plain Ticket", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7200629" + ] +} diff --git a/data/software/pl/plan.json b/data/software/pl/plan.json new file mode 100644 index 000000000000..7c457da840ca --- /dev/null +++ b/data/software/pl/plan.json @@ -0,0 +1,8 @@ +{ + "slug": "plan", + "name": "Plan", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7200862" + ] +} diff --git a/data/software/pl/plane-notify.json b/data/software/pl/plane-notify.json new file mode 100644 index 000000000000..4528e777b10c --- /dev/null +++ b/data/software/pl/plane-notify.json @@ -0,0 +1,8 @@ +{ + "slug": "plane-notify", + "name": "plane-notify", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115733271" + ] +} diff --git a/data/software/pl/planet-soho.json b/data/software/pl/planet-soho.json new file mode 100644 index 000000000000..a613e827368b --- /dev/null +++ b/data/software/pl/planet-soho.json @@ -0,0 +1,8 @@ +{ + "slug": "planet-soho", + "name": "Planet Soho", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7201172" + ] +} diff --git a/data/software/pl/planify.json b/data/software/pl/planify.json new file mode 100644 index 000000000000..4f39642e41c7 --- /dev/null +++ b/data/software/pl/planify.json @@ -0,0 +1,8 @@ +{ + "slug": "planify", + "name": "Planify", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138862821" + ] +} diff --git a/data/software/pl/planisware.json b/data/software/pl/planisware.json new file mode 100644 index 000000000000..4a8d2bbe4016 --- /dev/null +++ b/data/software/pl/planisware.json @@ -0,0 +1,8 @@ +{ + "slug": "planisware", + "name": "Planisware", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q676735" + ] +} diff --git a/data/software/pl/planned-parenthood-direct.json b/data/software/pl/planned-parenthood-direct.json new file mode 100644 index 000000000000..f2ae6ec10bcd --- /dev/null +++ b/data/software/pl/planned-parenthood-direct.json @@ -0,0 +1,8 @@ +{ + "slug": "planned-parenthood-direct", + "name": "Planned Parenthood Direct", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134608099" + ] +} diff --git a/data/software/pl/plant-nanny.json b/data/software/pl/plant-nanny.json new file mode 100644 index 000000000000..93f07010f236 --- /dev/null +++ b/data/software/pl/plant-nanny.json @@ -0,0 +1,8 @@ +{ + "slug": "plant-nanny", + "name": "Plant Nanny", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120142610" + ] +} diff --git a/data/software/pl/plant-simulation.json b/data/software/pl/plant-simulation.json new file mode 100644 index 000000000000..2bf498ac907c --- /dev/null +++ b/data/software/pl/plant-simulation.json @@ -0,0 +1,11 @@ +{ + "slug": "plant-simulation", + "name": "Plant Simulation", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q822039" + ], + "developers": [ + "UGS Corp." + ] +} diff --git a/data/software/pl/planta-project.json b/data/software/pl/planta-project.json new file mode 100644 index 000000000000..06cab0410de6 --- /dev/null +++ b/data/software/pl/planta-project.json @@ -0,0 +1,8 @@ +{ + "slug": "planta-project", + "name": "PLANTA Project", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q952535" + ] +} diff --git a/data/software/pl/plantix-mobile-app.json b/data/software/pl/plantix-mobile-app.json new file mode 100644 index 000000000000..cd36e5e6e678 --- /dev/null +++ b/data/software/pl/plantix-mobile-app.json @@ -0,0 +1,9 @@ +{ + "slug": "plantix-mobile-app", + "name": "Plantix (mobile app)", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q55477108" + ], + "release_date": "2015-01-01" +} diff --git a/data/software/pl/plantum.json b/data/software/pl/plantum.json new file mode 100644 index 000000000000..e192fa49e998 --- /dev/null +++ b/data/software/pl/plantum.json @@ -0,0 +1,8 @@ +{ + "slug": "plantum", + "name": "Plantum", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138542169" + ] +} diff --git a/data/software/pl/planz.json b/data/software/pl/planz.json new file mode 100644 index 000000000000..954a0e0f0ff3 --- /dev/null +++ b/data/software/pl/planz.json @@ -0,0 +1,8 @@ +{ + "slug": "planz", + "name": "Planz", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7201679" + ] +} diff --git a/data/software/pl/plasim.json b/data/software/pl/plasim.json new file mode 100644 index 000000000000..29c6e790d8e4 --- /dev/null +++ b/data/software/pl/plasim.json @@ -0,0 +1,11 @@ +{ + "slug": "plasim", + "name": "PlaSim", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127123691" + ], + "developers": [ + "Hartmut Borth" + ] +} diff --git a/data/software/pl/plasma-applet-network-monitor.json b/data/software/pl/plasma-applet-network-monitor.json new file mode 100644 index 000000000000..e89eef023507 --- /dev/null +++ b/data/software/pl/plasma-applet-network-monitor.json @@ -0,0 +1,8 @@ +{ + "slug": "plasma-applet-network-monitor", + "name": "plasma-applet-network-monitor", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975342" + ] +} diff --git a/data/software/pl/plasma-applet-weather-widget.json b/data/software/pl/plasma-applet-weather-widget.json new file mode 100644 index 000000000000..0753abc074fe --- /dev/null +++ b/data/software/pl/plasma-applet-weather-widget.json @@ -0,0 +1,8 @@ +{ + "slug": "plasma-applet-weather-widget", + "name": "plasma-applet-weather-widget", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975343" + ] +} diff --git a/data/software/pl/plasma-bigscreen.json b/data/software/pl/plasma-bigscreen.json new file mode 100644 index 000000000000..e27c8d492523 --- /dev/null +++ b/data/software/pl/plasma-bigscreen.json @@ -0,0 +1,11 @@ +{ + "slug": "plasma-bigscreen", + "name": "Plasma Bigscreen", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108130962" + ], + "licenses": [ + "GNU General Public License, version 2.0 or later" + ] +} diff --git a/data/software/pl/plasma-media-center.json b/data/software/pl/plasma-media-center.json new file mode 100644 index 000000000000..9ff59b0b8c37 --- /dev/null +++ b/data/software/pl/plasma-media-center.json @@ -0,0 +1,8 @@ +{ + "slug": "plasma-media-center", + "name": "Plasma Media Center", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q20072376" + ] +} diff --git a/data/software/pl/plastic-scm.json b/data/software/pl/plastic-scm.json new file mode 100644 index 000000000000..887d1e2ce55b --- /dev/null +++ b/data/software/pl/plastic-scm.json @@ -0,0 +1,11 @@ +{ + "slug": "plastic-scm", + "name": "Plastic SCM", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5403883" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/pl/plasticity.json b/data/software/pl/plasticity.json new file mode 100644 index 000000000000..db0d4d9403db --- /dev/null +++ b/data/software/pl/plasticity.json @@ -0,0 +1,8 @@ +{ + "slug": "plasticity", + "name": "Plasticity", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131425717" + ] +} diff --git a/data/software/pl/plate-recognizer.json b/data/software/pl/plate-recognizer.json new file mode 100644 index 000000000000..caa4984e5583 --- /dev/null +++ b/data/software/pl/plate-recognizer.json @@ -0,0 +1,8 @@ +{ + "slug": "plate-recognizer", + "name": "Plate Recognizer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q88930846" + ] +} diff --git a/data/software/pl/platform-for-real-time-impact-and-situation-monitoring.json b/data/software/pl/platform-for-real-time-impact-and-situation-monitoring.json new file mode 100644 index 000000000000..dd5adec3e77f --- /dev/null +++ b/data/software/pl/platform-for-real-time-impact-and-situation-monitoring.json @@ -0,0 +1,8 @@ +{ + "slug": "platform-for-real-time-impact-and-situation-monitoring", + "name": "Platform for Real-time Impact and Situation Monitoring", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135185176" + ] +} diff --git a/data/software/pl/platform-lsf.json b/data/software/pl/platform-lsf.json new file mode 100644 index 000000000000..f21ab407e69d --- /dev/null +++ b/data/software/pl/platform-lsf.json @@ -0,0 +1,11 @@ +{ + "slug": "platform-lsf", + "name": "Platform LSF", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7202274" + ], + "developers": [ + "Platform Computing" + ] +} diff --git a/data/software/pl/platforms-code.json b/data/software/pl/platforms-code.json new file mode 100644 index 000000000000..490ff1910185 --- /dev/null +++ b/data/software/pl/platforms-code.json @@ -0,0 +1,15 @@ +{ + "slug": "platforms-code", + "name": "Platforms Code", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127850597" + ], + "developers": [ + "Digital Government Authority" + ], + "programming_languages": [ + "HTML", + "Cascading Style Sheets" + ] +} diff --git a/data/software/pl/platin.json b/data/software/pl/platin.json new file mode 100644 index 000000000000..9ee38c8b95ab --- /dev/null +++ b/data/software/pl/platin.json @@ -0,0 +1,8 @@ +{ + "slug": "platin", + "name": "PLATIN", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084479" + ] +} diff --git a/data/software/pl/plato.json b/data/software/pl/plato.json new file mode 100644 index 000000000000..be37fd8e7d75 --- /dev/null +++ b/data/software/pl/plato.json @@ -0,0 +1,8 @@ +{ + "slug": "plato", + "name": "PLATO", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7119589" + ] +} diff --git a/data/software/pl/platon.json b/data/software/pl/platon.json new file mode 100644 index 000000000000..56d62708523d --- /dev/null +++ b/data/software/pl/platon.json @@ -0,0 +1,11 @@ +{ + "slug": "platon", + "name": "PLATON", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117476560" + ], + "developers": [ + "Anthony L. Spek" + ] +} diff --git a/data/software/pl/plaxis.json b/data/software/pl/plaxis.json new file mode 100644 index 000000000000..b8d3e549ca91 --- /dev/null +++ b/data/software/pl/plaxis.json @@ -0,0 +1,11 @@ +{ + "slug": "plaxis", + "name": "Plaxis", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18396068" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/pl/play-anywhere.json b/data/software/pl/play-anywhere.json new file mode 100644 index 000000000000..d988a69c5879 --- /dev/null +++ b/data/software/pl/play-anywhere.json @@ -0,0 +1,8 @@ +{ + "slug": "play-anywhere", + "name": "Play Anywhere", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q611695" + ] +} diff --git a/data/software/pl/playmemories-studio.json b/data/software/pl/playmemories-studio.json new file mode 100644 index 000000000000..bfc4ebc5f6d6 --- /dev/null +++ b/data/software/pl/playmemories-studio.json @@ -0,0 +1,8 @@ +{ + "slug": "playmemories-studio", + "name": "PlayMemories Studio", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7202943" + ] +} diff --git a/data/software/pl/playmidi.json b/data/software/pl/playmidi.json new file mode 100644 index 000000000000..9a3f196fa9c6 --- /dev/null +++ b/data/software/pl/playmidi.json @@ -0,0 +1,8 @@ +{ + "slug": "playmidi", + "name": "PlayMIDI", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62858236" + ] +} diff --git a/data/software/pl/playn.json b/data/software/pl/playn.json new file mode 100644 index 000000000000..ae211d03c56a --- /dev/null +++ b/data/software/pl/playn.json @@ -0,0 +1,17 @@ +{ + "slug": "playn", + "name": "PlayN", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3392073" + ], + "developers": [ + "Google" + ], + "programming_languages": [ + "Java" + ], + "licenses": [ + "Apache License" + ] +} diff --git a/data/software/pl/playnow-arena.json b/data/software/pl/playnow-arena.json new file mode 100644 index 000000000000..3d72fc174e98 --- /dev/null +++ b/data/software/pl/playnow-arena.json @@ -0,0 +1,12 @@ +{ + "slug": "playnow-arena", + "name": "PlayNow Arena", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1237238" + ], + "release_date": "2004-01-01", + "developers": [ + "Sony Mobile Communications" + ] +} diff --git a/data/software/pl/playond.json b/data/software/pl/playond.json new file mode 100644 index 000000000000..99c3c8198784 --- /dev/null +++ b/data/software/pl/playond.json @@ -0,0 +1,8 @@ +{ + "slug": "playond", + "name": "Playond", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140469426" + ] +} diff --git a/data/software/pl/playstation-app.json b/data/software/pl/playstation-app.json new file mode 100644 index 000000000000..10fe0680afb8 --- /dev/null +++ b/data/software/pl/playstation-app.json @@ -0,0 +1,18 @@ +{ + "slug": "playstation-app", + "name": "PlayStation App", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7202970" + ], + "release_date": "2011-01-11", + "developers": [ + "PlayStation Mobile, Inc." + ], + "publishers": [ + "Sony Interactive Entertainment" + ], + "operating_systems": [ + "iOS" + ] +} diff --git a/data/software/pl/playstation-mobile.json b/data/software/pl/playstation-mobile.json new file mode 100644 index 000000000000..c7c46296e7fe --- /dev/null +++ b/data/software/pl/playstation-mobile.json @@ -0,0 +1,11 @@ +{ + "slug": "playstation-mobile", + "name": "PlayStation Mobile", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1140931" + ], + "developers": [ + "Sony Interactive Entertainment" + ] +} diff --git a/data/software/pl/playwright.json b/data/software/pl/playwright.json new file mode 100644 index 000000000000..a014d80ff7e1 --- /dev/null +++ b/data/software/pl/playwright.json @@ -0,0 +1,11 @@ +{ + "slug": "playwright", + "name": "Playwright", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123150615" + ], + "licenses": [ + "Apache Software License 2.0" + ] +} diff --git a/data/software/pl/playxpert.json b/data/software/pl/playxpert.json new file mode 100644 index 000000000000..55ea7b9920ca --- /dev/null +++ b/data/software/pl/playxpert.json @@ -0,0 +1,8 @@ +{ + "slug": "playxpert", + "name": "PlayXpert", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2335477" + ] +} diff --git a/data/software/pl/plecs.json b/data/software/pl/plecs.json new file mode 100644 index 000000000000..b71348db0fb5 --- /dev/null +++ b/data/software/pl/plecs.json @@ -0,0 +1,11 @@ +{ + "slug": "plecs", + "name": "PLECS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7119618" + ], + "developers": [ + "Plexim" + ] +} diff --git a/data/software/pl/plesk.json b/data/software/pl/plesk.json new file mode 100644 index 000000000000..0a9b1645b6ce --- /dev/null +++ b/data/software/pl/plesk.json @@ -0,0 +1,11 @@ +{ + "slug": "plesk", + "name": "Plesk", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2099390" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/pl/plink.json b/data/software/pl/plink.json new file mode 100644 index 000000000000..98938efa8bb3 --- /dev/null +++ b/data/software/pl/plink.json @@ -0,0 +1,8 @@ +{ + "slug": "plink", + "name": "PLINK", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18359288" + ] +} diff --git a/data/software/pl/pliny.json b/data/software/pl/pliny.json new file mode 100644 index 000000000000..5485c54019d9 --- /dev/null +++ b/data/software/pl/pliny.json @@ -0,0 +1,8 @@ +{ + "slug": "pliny", + "name": "Pliny", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084480" + ] +} diff --git a/data/software/pl/plot-digitizer.json b/data/software/pl/plot-digitizer.json new file mode 100644 index 000000000000..b9abac9cce2a --- /dev/null +++ b/data/software/pl/plot-digitizer.json @@ -0,0 +1,14 @@ +{ + "slug": "plot-digitizer", + "name": "Plot Digitizer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q12127640" + ], + "programming_languages": [ + "Java" + ], + "licenses": [ + "GNU General Public License" + ] +} diff --git a/data/software/pl/plotly-py.json b/data/software/pl/plotly-py.json new file mode 100644 index 000000000000..b9af707116ff --- /dev/null +++ b/data/software/pl/plotly-py.json @@ -0,0 +1,14 @@ +{ + "slug": "plotly-py", + "name": "plotly.py", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120119127" + ], + "developers": [ + "Jon Mease" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/pl/plotly.json b/data/software/pl/plotly.json new file mode 100644 index 000000000000..f37077687550 --- /dev/null +++ b/data/software/pl/plotly.json @@ -0,0 +1,19 @@ +{ + "slug": "plotly", + "name": "Plotly", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17146476" + ], + "operating_systems": [ + "cross-platform" + ], + "programming_languages": [ + "Python", + "R", + "Julia" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/pl/plowshare.json b/data/software/pl/plowshare.json new file mode 100644 index 000000000000..f91094f041b8 --- /dev/null +++ b/data/software/pl/plowshare.json @@ -0,0 +1,8 @@ +{ + "slug": "plowshare", + "name": "plowshare", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975344" + ] +} diff --git a/data/software/pl/plugplayer.json b/data/software/pl/plugplayer.json new file mode 100644 index 000000000000..8649af68c1ef --- /dev/null +++ b/data/software/pl/plugplayer.json @@ -0,0 +1,16 @@ +{ + "slug": "plugplayer", + "name": "PlugPlayer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7205239" + ], + "release_date": "2008-10-01", + "developers": [ + "PlugPlayer" + ], + "operating_systems": [ + "iOS", + "macOS" + ] +} diff --git a/data/software/pl/plumber.json b/data/software/pl/plumber.json new file mode 100644 index 000000000000..fdbea8c1c0e2 --- /dev/null +++ b/data/software/pl/plumber.json @@ -0,0 +1,12 @@ +{ + "slug": "plumber", + "name": "plumber", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3906772" + ], + "operating_systems": [ + "Inferno", + "Plan 9" + ] +} diff --git a/data/software/pl/plumbr.json b/data/software/pl/plumbr.json new file mode 100644 index 000000000000..01b70ffe413d --- /dev/null +++ b/data/software/pl/plumbr.json @@ -0,0 +1,8 @@ +{ + "slug": "plumbr", + "name": "Plumbr", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18636588" + ] +} diff --git a/data/software/pl/plumed.json b/data/software/pl/plumed.json new file mode 100644 index 000000000000..04de507fb7ad --- /dev/null +++ b/data/software/pl/plumed.json @@ -0,0 +1,8 @@ +{ + "slug": "plumed", + "name": "PLUMED", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q65073042" + ] +} diff --git a/data/software/pl/ply.json b/data/software/pl/ply.json new file mode 100644 index 000000000000..4ac6e152b2c2 --- /dev/null +++ b/data/software/pl/ply.json @@ -0,0 +1,14 @@ +{ + "slug": "ply", + "name": "PLY", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17141283" + ], + "programming_languages": [ + "Python" + ], + "licenses": [ + "BSD licenses" + ] +} diff --git a/data/software/pm/pm2.json b/data/software/pm/pm2.json new file mode 100644 index 000000000000..bc40c66ff222 --- /dev/null +++ b/data/software/pm/pm2.json @@ -0,0 +1,8 @@ +{ + "slug": "pm2", + "name": "PM2", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7119711" + ] +} diff --git a/data/software/pm/pmacct.json b/data/software/pm/pmacct.json new file mode 100644 index 000000000000..a7b4c6a20e30 --- /dev/null +++ b/data/software/pm/pmacct.json @@ -0,0 +1,8 @@ +{ + "slug": "pmacct", + "name": "pmacct", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60864950" + ] +} diff --git a/data/software/pm/pmaw.json b/data/software/pm/pmaw.json new file mode 100644 index 000000000000..200041bd04c2 --- /dev/null +++ b/data/software/pm/pmaw.json @@ -0,0 +1,14 @@ +{ + "slug": "pmaw", + "name": "pmaw", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116701969" + ], + "programming_languages": [ + "Python" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/pm/pmount-gui.json b/data/software/pm/pmount-gui.json new file mode 100644 index 000000000000..212e2e258535 --- /dev/null +++ b/data/software/pm/pmount-gui.json @@ -0,0 +1,8 @@ +{ + "slug": "pmount-gui", + "name": "pmount-gui", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975345" + ] +} diff --git a/data/software/pm/pms.json b/data/software/pm/pms.json new file mode 100644 index 000000000000..8e7a49390b8f --- /dev/null +++ b/data/software/pm/pms.json @@ -0,0 +1,11 @@ +{ + "slug": "pms", + "name": "pms", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975346" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/pm/pmspace-ai.json b/data/software/pm/pmspace-ai.json new file mode 100644 index 000000000000..84895ad5d513 --- /dev/null +++ b/data/software/pm/pmspace-ai.json @@ -0,0 +1,8 @@ +{ + "slug": "pmspace-ai", + "name": "PMSPACE AI", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139586325" + ] +} diff --git a/data/software/pm/pmtrans.json b/data/software/pm/pmtrans.json new file mode 100644 index 000000000000..fe4f27bb2591 --- /dev/null +++ b/data/software/pm/pmtrans.json @@ -0,0 +1,18 @@ +{ + "slug": "pmtrans", + "name": "pmTrans", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105076389" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [ + "Java" + ], + "licenses": [ + "GNU Lesser General Public License" + ] +} diff --git a/data/software/pn/pnetc.json b/data/software/pn/pnetc.json new file mode 100644 index 000000000000..51e24c648a7d --- /dev/null +++ b/data/software/pn/pnetc.json @@ -0,0 +1,8 @@ +{ + "slug": "pnetc", + "name": "PnetC", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16978017" + ] +} diff --git a/data/software/pn/pngcheck.json b/data/software/pn/pngcheck.json new file mode 100644 index 000000000000..95b45e684e47 --- /dev/null +++ b/data/software/pn/pngcheck.json @@ -0,0 +1,8 @@ +{ + "slug": "pngcheck", + "name": "pngcheck", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62858002" + ] +} diff --git a/data/software/pn/pngtools.json b/data/software/pn/pngtools.json new file mode 100644 index 000000000000..db792d8cb386 --- /dev/null +++ b/data/software/pn/pngtools.json @@ -0,0 +1,8 @@ +{ + "slug": "pngtools", + "name": "PNGtools", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62857978" + ] +} diff --git a/data/software/pn/pnmixer.json b/data/software/pn/pnmixer.json new file mode 100644 index 000000000000..d2043248efcd --- /dev/null +++ b/data/software/pn/pnmixer.json @@ -0,0 +1,8 @@ +{ + "slug": "pnmixer", + "name": "pnmixer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975347" + ] +} diff --git a/data/software/pn/pnpm.json b/data/software/pn/pnpm.json new file mode 100644 index 000000000000..b704e10d8add --- /dev/null +++ b/data/software/pn/pnpm.json @@ -0,0 +1,14 @@ +{ + "slug": "pnpm", + "name": "pnpm", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118939881" + ], + "operating_systems": [ + "cross-platform" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/po/pocket-sales-force.json b/data/software/po/pocket-sales-force.json new file mode 100644 index 000000000000..705daad95eba --- /dev/null +++ b/data/software/po/pocket-sales-force.json @@ -0,0 +1,8 @@ +{ + "slug": "pocket-sales-force", + "name": "Pocket Sales Force", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121631694" + ] +} diff --git a/data/software/po/pocket-word.json b/data/software/po/pocket-word.json new file mode 100644 index 000000000000..5a9885583d54 --- /dev/null +++ b/data/software/po/pocket-word.json @@ -0,0 +1,8 @@ +{ + "slug": "pocket-word", + "name": "Pocket Word", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q51370425" + ] +} diff --git a/data/software/po/podcast-capture.json b/data/software/po/podcast-capture.json new file mode 100644 index 000000000000..59b775ad0a67 --- /dev/null +++ b/data/software/po/podcast-capture.json @@ -0,0 +1,14 @@ +{ + "slug": "podcast-capture", + "name": "Podcast Capture", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4047124" + ], + "developers": [ + "Apple Inc." + ], + "operating_systems": [ + "macOS" + ] +} diff --git a/data/software/po/podcastify.json b/data/software/po/podcastify.json new file mode 100644 index 000000000000..957f7662e6b5 --- /dev/null +++ b/data/software/po/podcastify.json @@ -0,0 +1,12 @@ +{ + "slug": "podcastify", + "name": "Podcastify", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140315540" + ], + "release_date": "2026-01-03", + "developers": [ + "Kasparian" + ] +} diff --git a/data/software/po/podio.json b/data/software/po/podio.json new file mode 100644 index 000000000000..d45722422df1 --- /dev/null +++ b/data/software/po/podio.json @@ -0,0 +1,11 @@ +{ + "slug": "podio", + "name": "Podio", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7206810" + ], + "developers": [ + "Citrix Systems" + ] +} diff --git a/data/software/po/podman-desktop.json b/data/software/po/podman-desktop.json new file mode 100644 index 000000000000..5bfe697b38a1 --- /dev/null +++ b/data/software/po/podman-desktop.json @@ -0,0 +1,11 @@ +{ + "slug": "podman-desktop", + "name": "Podman Desktop", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135957733" + ], + "licenses": [ + "Apache Software License 2.0" + ] +} diff --git a/data/software/po/podracer.json b/data/software/po/podracer.json new file mode 100644 index 000000000000..561ed0990077 --- /dev/null +++ b/data/software/po/podracer.json @@ -0,0 +1,8 @@ +{ + "slug": "podracer", + "name": "Podracer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62860319" + ] +} diff --git a/data/software/po/poem-viewer.json b/data/software/po/poem-viewer.json new file mode 100644 index 000000000000..c75b6c26b2fd --- /dev/null +++ b/data/software/po/poem-viewer.json @@ -0,0 +1,8 @@ +{ + "slug": "poem-viewer", + "name": "Poem Viewer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084483" + ] +} diff --git a/data/software/po/poetry.json b/data/software/po/poetry.json new file mode 100644 index 000000000000..e31fe67df6cd --- /dev/null +++ b/data/software/po/poetry.json @@ -0,0 +1,14 @@ +{ + "slug": "poetry", + "name": "poetry", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q70481196" + ], + "programming_languages": [ + "Python" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/po/pogoseat.json b/data/software/po/pogoseat.json new file mode 100644 index 000000000000..2ac31fe26db5 --- /dev/null +++ b/data/software/po/pogoseat.json @@ -0,0 +1,12 @@ +{ + "slug": "pogoseat", + "name": "Pogoseat", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17130752" + ], + "release_date": "2012-01-01", + "operating_systems": [ + "iOS" + ] +} diff --git a/data/software/po/point-to-point-protocol-daemon.json b/data/software/po/point-to-point-protocol-daemon.json new file mode 100644 index 000000000000..3629c3f93bf8 --- /dev/null +++ b/data/software/po/point-to-point-protocol-daemon.json @@ -0,0 +1,15 @@ +{ + "slug": "point-to-point-protocol-daemon", + "name": "Point-to-Point Protocol daemon", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1050348" + ], + "operating_systems": [ + "Solaris" + ], + "licenses": [ + "3-clause BSD License", + "GNU General Public License, version 2.0" + ] +} diff --git a/data/software/po/pointman.json b/data/software/po/pointman.json new file mode 100644 index 000000000000..4e539750ab3d --- /dev/null +++ b/data/software/po/pointman.json @@ -0,0 +1,8 @@ +{ + "slug": "pointman", + "name": "Pointman", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18389127" + ] +} diff --git a/data/software/po/points-of-interest-loader.json b/data/software/po/points-of-interest-loader.json new file mode 100644 index 000000000000..cdc3666a1853 --- /dev/null +++ b/data/software/po/points-of-interest-loader.json @@ -0,0 +1,12 @@ +{ + "slug": "points-of-interest-loader", + "name": "Points of Interest Loader", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106764319" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/software/po/poji.json b/data/software/po/poji.json new file mode 100644 index 000000000000..a001a1343f9d --- /dev/null +++ b/data/software/po/poji.json @@ -0,0 +1,8 @@ +{ + "slug": "poji", + "name": "POJI", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7119929" + ] +} diff --git a/data/software/po/pok-mon-essentials.json b/data/software/po/pok-mon-essentials.json new file mode 100644 index 000000000000..6334d4c35e3d --- /dev/null +++ b/data/software/po/pok-mon-essentials.json @@ -0,0 +1,9 @@ +{ + "slug": "pok-mon-essentials", + "name": "Pokémon Essentials", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121356826" + ], + "release_date": "2007-01-01" +} diff --git a/data/software/po/pok-mon-online.json b/data/software/po/pok-mon-online.json new file mode 100644 index 000000000000..f1ae6f95c988 --- /dev/null +++ b/data/software/po/pok-mon-online.json @@ -0,0 +1,8 @@ +{ + "slug": "pok-mon-online", + "name": "Pokémon Online", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3907171" + ] +} diff --git a/data/software/po/pok-mon-showdown.json b/data/software/po/pok-mon-showdown.json new file mode 100644 index 000000000000..5302dc27f18d --- /dev/null +++ b/data/software/po/pok-mon-showdown.json @@ -0,0 +1,8 @@ +{ + "slug": "pok-mon-showdown", + "name": "Pokémon Showdown", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136785981" + ] +} diff --git a/data/software/po/pokee-ai.json b/data/software/po/pokee-ai.json new file mode 100644 index 000000000000..9fb4d2f2f34d --- /dev/null +++ b/data/software/po/pokee-ai.json @@ -0,0 +1,8 @@ +{ + "slug": "pokee-ai", + "name": "Pokee AI", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139315065" + ] +} diff --git a/data/software/po/pokertracker.json b/data/software/po/pokertracker.json new file mode 100644 index 000000000000..367c401c0c9c --- /dev/null +++ b/data/software/po/pokertracker.json @@ -0,0 +1,8 @@ +{ + "slug": "pokertracker", + "name": "PokerTracker", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7208591" + ] +} diff --git a/data/software/po/pokeware.json b/data/software/po/pokeware.json new file mode 100644 index 000000000000..d7047db1adfa --- /dev/null +++ b/data/software/po/pokeware.json @@ -0,0 +1,8 @@ +{ + "slug": "pokeware", + "name": "Pokeware", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q82215" + ] +} diff --git a/data/software/po/pokki.json b/data/software/po/pokki.json new file mode 100644 index 000000000000..b935161fc9c4 --- /dev/null +++ b/data/software/po/pokki.json @@ -0,0 +1,11 @@ +{ + "slug": "pokki", + "name": "Pokki", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7208667" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/po/pol-is.json b/data/software/po/pol-is.json new file mode 100644 index 000000000000..621f07fb21e7 --- /dev/null +++ b/data/software/po/pol-is.json @@ -0,0 +1,9 @@ +{ + "slug": "pol-is", + "name": "Pol.is", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125803048" + ], + "release_date": "2012-01-01" +} diff --git a/data/software/po/pola.json b/data/software/po/pola.json new file mode 100644 index 000000000000..267b7077284c --- /dev/null +++ b/data/software/po/pola.json @@ -0,0 +1,14 @@ +{ + "slug": "pola", + "name": "Pola", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25415720" + ], + "developers": [ + "Klub Jagielloński" + ], + "publishers": [ + "Klub Jagielloński" + ] +} diff --git a/data/software/po/polarization-in-congress.json b/data/software/po/polarization-in-congress.json new file mode 100644 index 000000000000..fd796e5fbc98 --- /dev/null +++ b/data/software/po/polarization-in-congress.json @@ -0,0 +1,8 @@ +{ + "slug": "polarization-in-congress", + "name": "Polarization in Congress", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130384358" + ] +} diff --git a/data/software/po/polestar-xeus.json b/data/software/po/polestar-xeus.json new file mode 100644 index 000000000000..36a95ef535d2 --- /dev/null +++ b/data/software/po/polestar-xeus.json @@ -0,0 +1,8 @@ +{ + "slug": "polestar-xeus", + "name": "POLESTAR XEUS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7119945" + ] +} diff --git a/data/software/po/policycoreutils.json b/data/software/po/policycoreutils.json new file mode 100644 index 000000000000..154dbf0878e9 --- /dev/null +++ b/data/software/po/policycoreutils.json @@ -0,0 +1,8 @@ +{ + "slug": "policycoreutils", + "name": "policycoreutils", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975348" + ] +} diff --git a/data/software/po/policymodels.json b/data/software/po/policymodels.json new file mode 100644 index 000000000000..d86581536206 --- /dev/null +++ b/data/software/po/policymodels.json @@ -0,0 +1,8 @@ +{ + "slug": "policymodels", + "name": "PolicyModels", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113995784" + ] +} diff --git a/data/software/po/polish-literary-bibliography-pbl.json b/data/software/po/polish-literary-bibliography-pbl.json new file mode 100644 index 000000000000..2aab1cfdb0b2 --- /dev/null +++ b/data/software/po/polish-literary-bibliography-pbl.json @@ -0,0 +1,8 @@ +{ + "slug": "polish-literary-bibliography-pbl", + "name": "Polish Literary Bibliography (PBL)", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084484" + ] +} diff --git a/data/software/po/polit-operating-system.json b/data/software/po/polit-operating-system.json new file mode 100644 index 000000000000..8829daf7dce6 --- /dev/null +++ b/data/software/po/polit-operating-system.json @@ -0,0 +1,8 @@ +{ + "slug": "polit-operating-system", + "name": "Polit (operating system)", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q129264265" + ] +} diff --git a/data/software/po/polkadot.json b/data/software/po/polkadot.json new file mode 100644 index 000000000000..6197c0add219 --- /dev/null +++ b/data/software/po/polkadot.json @@ -0,0 +1,8 @@ +{ + "slug": "polkadot", + "name": "Polkadot", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q46166265" + ] +} diff --git a/data/software/po/polkeyb.json b/data/software/po/polkeyb.json new file mode 100644 index 000000000000..8ff9476a29f0 --- /dev/null +++ b/data/software/po/polkeyb.json @@ -0,0 +1,11 @@ +{ + "slug": "polkeyb", + "name": "Polkeyb", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11821890" + ], + "developers": [ + "Andrzej Górbiel" + ] +} diff --git a/data/software/po/polldaddy.json b/data/software/po/polldaddy.json new file mode 100644 index 000000000000..d05352b2bf61 --- /dev/null +++ b/data/software/po/polldaddy.json @@ -0,0 +1,8 @@ +{ + "slug": "polldaddy", + "name": "Polldaddy", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084486" + ] +} diff --git a/data/software/po/polonius.json b/data/software/po/polonius.json new file mode 100644 index 000000000000..01d43b7244ce --- /dev/null +++ b/data/software/po/polonius.json @@ -0,0 +1,11 @@ +{ + "slug": "polonius", + "name": "Polonius", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121288353" + ], + "licenses": [ + "Apache Software License 2.0" + ] +} diff --git a/data/software/po/polyas.json b/data/software/po/polyas.json new file mode 100644 index 000000000000..01d7e66c0de1 --- /dev/null +++ b/data/software/po/polyas.json @@ -0,0 +1,8 @@ +{ + "slug": "polyas", + "name": "Polyas", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137162822" + ] +} diff --git a/data/software/po/polybar.json b/data/software/po/polybar.json new file mode 100644 index 000000000000..5c80051d0b7c --- /dev/null +++ b/data/software/po/polybar.json @@ -0,0 +1,8 @@ +{ + "slug": "polybar", + "name": "polybar", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127418059" + ] +} diff --git a/data/software/po/polygon-cruncher.json b/data/software/po/polygon-cruncher.json new file mode 100644 index 000000000000..3cd1b812f4eb --- /dev/null +++ b/data/software/po/polygon-cruncher.json @@ -0,0 +1,8 @@ +{ + "slug": "polygon-cruncher", + "name": "Polygon Cruncher", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7226424" + ] +} diff --git a/data/software/po/polyhedra-dbms.json b/data/software/po/polyhedra-dbms.json new file mode 100644 index 000000000000..e5634c3979ca --- /dev/null +++ b/data/software/po/polyhedra-dbms.json @@ -0,0 +1,11 @@ +{ + "slug": "polyhedra-dbms", + "name": "Polyhedra DBMS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7226492" + ], + "developers": [ + "ENEA AB" + ] +} diff --git a/data/software/po/polylib.json b/data/software/po/polylib.json new file mode 100644 index 000000000000..ec4e8485d42b --- /dev/null +++ b/data/software/po/polylib.json @@ -0,0 +1,8 @@ +{ + "slug": "polylib", + "name": "polylib", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975349" + ] +} diff --git a/data/software/po/polymail.json b/data/software/po/polymail.json new file mode 100644 index 000000000000..df2418ae5225 --- /dev/null +++ b/data/software/po/polymail.json @@ -0,0 +1,9 @@ +{ + "slug": "polymail", + "name": "Polymail", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28401433" + ], + "release_date": "2016-07-01" +} diff --git a/data/software/po/polymny.json b/data/software/po/polymny.json new file mode 100644 index 000000000000..35d027dc2323 --- /dev/null +++ b/data/software/po/polymny.json @@ -0,0 +1,8 @@ +{ + "slug": "polymny", + "name": "Polymny", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124259243" + ] +} diff --git a/data/software/po/polypad.json b/data/software/po/polypad.json new file mode 100644 index 000000000000..7090b2413d66 --- /dev/null +++ b/data/software/po/polypad.json @@ -0,0 +1,19 @@ +{ + "slug": "polypad", + "name": "Polypad", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111668613" + ], + "release_date": "2021-08-19", + "developers": [ + "Marcell Purham" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/po/polyspace.json b/data/software/po/polyspace.json new file mode 100644 index 000000000000..1f7fa31b01cf --- /dev/null +++ b/data/software/po/polyspace.json @@ -0,0 +1,11 @@ +{ + "slug": "polyspace", + "name": "Polyspace", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7226954" + ], + "developers": [ + "MathWorks" + ] +} diff --git a/data/software/po/polyworks.json b/data/software/po/polyworks.json new file mode 100644 index 000000000000..7961720111e6 --- /dev/null +++ b/data/software/po/polyworks.json @@ -0,0 +1,8 @@ +{ + "slug": "polyworks", + "name": "PolyWorks", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1733462" + ] +} diff --git a/data/software/po/pompamo.json b/data/software/po/pompamo.json new file mode 100644 index 000000000000..d1660c0e4357 --- /dev/null +++ b/data/software/po/pompamo.json @@ -0,0 +1,8 @@ +{ + "slug": "pompamo", + "name": "Pompamo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084487" + ] +} diff --git a/data/software/po/ponta-pass.json b/data/software/po/ponta-pass.json new file mode 100644 index 000000000000..891b9bcd3b65 --- /dev/null +++ b/data/software/po/ponta-pass.json @@ -0,0 +1,8 @@ +{ + "slug": "ponta-pass", + "name": "Ponta PASS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11190569" + ] +} diff --git a/data/software/po/pontis.json b/data/software/po/pontis.json new file mode 100644 index 000000000000..1e4dec155ea4 --- /dev/null +++ b/data/software/po/pontis.json @@ -0,0 +1,8 @@ +{ + "slug": "pontis", + "name": "Pontis", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7228303" + ] +} diff --git a/data/software/po/poolparty-semantic-suite.json b/data/software/po/poolparty-semantic-suite.json new file mode 100644 index 000000000000..0d1aba385572 --- /dev/null +++ b/data/software/po/poolparty-semantic-suite.json @@ -0,0 +1,8 @@ +{ + "slug": "poolparty-semantic-suite", + "name": "PoolParty Semantic Suite", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28136436" + ] +} diff --git a/data/software/po/poop-map.json b/data/software/po/poop-map.json new file mode 100644 index 000000000000..f5b4499bb080 --- /dev/null +++ b/data/software/po/poop-map.json @@ -0,0 +1,8 @@ +{ + "slug": "poop-map", + "name": "Poop Map", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130467137" + ] +} diff --git a/data/software/po/poorman.json b/data/software/po/poorman.json new file mode 100644 index 000000000000..8cd1ffc62718 --- /dev/null +++ b/data/software/po/poorman.json @@ -0,0 +1,8 @@ +{ + "slug": "poorman", + "name": "PoorMan", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7228754" + ] +} diff --git a/data/software/po/popa3d.json b/data/software/po/popa3d.json new file mode 100644 index 000000000000..3e317b82bc0b --- /dev/null +++ b/data/software/po/popa3d.json @@ -0,0 +1,8 @@ +{ + "slug": "popa3d", + "name": "popa3d", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62857972" + ] +} diff --git a/data/software/po/popcorn-js.json b/data/software/po/popcorn-js.json new file mode 100644 index 000000000000..4c614f900290 --- /dev/null +++ b/data/software/po/popcorn-js.json @@ -0,0 +1,8 @@ +{ + "slug": "popcorn-js", + "name": "Popcorn.js", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7229122" + ] +} diff --git a/data/software/po/popgene.json b/data/software/po/popgene.json new file mode 100644 index 000000000000..2767bb43f170 --- /dev/null +++ b/data/software/po/popgene.json @@ -0,0 +1,8 @@ +{ + "slug": "popgene", + "name": "POPGENE", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112123672" + ] +} diff --git a/data/software/po/popoto-js.json b/data/software/po/popoto-js.json new file mode 100644 index 000000000000..2e7732ded8b8 --- /dev/null +++ b/data/software/po/popoto-js.json @@ -0,0 +1,8 @@ +{ + "slug": "popoto-js", + "name": "Popoto.js", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084489" + ] +} diff --git a/data/software/po/popt.json b/data/software/po/popt.json new file mode 100644 index 000000000000..8fcd26ca048d --- /dev/null +++ b/data/software/po/popt.json @@ -0,0 +1,15 @@ +{ + "slug": "popt", + "name": "popt", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q64383263" + ], + "operating_systems": [ + "OpenBSD", + "FreeBSD" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/po/portable-batch-system.json b/data/software/po/portable-batch-system.json new file mode 100644 index 000000000000..8db6bd205909 --- /dev/null +++ b/data/software/po/portable-batch-system.json @@ -0,0 +1,11 @@ +{ + "slug": "portable-batch-system", + "name": "Portable Batch System", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3883859" + ], + "programming_languages": [ + "Python" + ] +} diff --git a/data/software/po/portable-shortcut-to-a-system-utility.json b/data/software/po/portable-shortcut-to-a-system-utility.json new file mode 100644 index 000000000000..7ff059481ac1 --- /dev/null +++ b/data/software/po/portable-shortcut-to-a-system-utility.json @@ -0,0 +1,8 @@ +{ + "slug": "portable-shortcut-to-a-system-utility", + "name": "portable shortcut to a system utility", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138339496" + ] +} diff --git a/data/software/po/portals-network-programming-api.json b/data/software/po/portals-network-programming-api.json new file mode 100644 index 000000000000..208fed16fc87 --- /dev/null +++ b/data/software/po/portals-network-programming-api.json @@ -0,0 +1,11 @@ +{ + "slug": "portals-network-programming-api", + "name": "Portals network programming api", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7231513" + ], + "developers": [ + "Sandia National Laboratories" + ] +} diff --git a/data/software/po/portmap.json b/data/software/po/portmap.json new file mode 100644 index 000000000000..b2ed932e5c37 --- /dev/null +++ b/data/software/po/portmap.json @@ -0,0 +1,8 @@ +{ + "slug": "portmap", + "name": "portmap", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975350" + ] +} diff --git a/data/software/po/portspoof.json b/data/software/po/portspoof.json new file mode 100644 index 000000000000..f9a88d9891a6 --- /dev/null +++ b/data/software/po/portspoof.json @@ -0,0 +1,8 @@ +{ + "slug": "portspoof", + "name": "portspoof", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975351" + ] +} diff --git a/data/software/po/poseidon-for-uml.json b/data/software/po/poseidon-for-uml.json new file mode 100644 index 000000000000..80bfdf6efa1e --- /dev/null +++ b/data/software/po/poseidon-for-uml.json @@ -0,0 +1,8 @@ +{ + "slug": "poseidon-for-uml", + "name": "Poseidon for UML", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2105623" + ] +} diff --git a/data/software/po/posh.json b/data/software/po/posh.json new file mode 100644 index 000000000000..b61d91d75e69 --- /dev/null +++ b/data/software/po/posh.json @@ -0,0 +1,8 @@ +{ + "slug": "posh", + "name": "posh", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62863286" + ] +} diff --git a/data/software/po/postback.json b/data/software/po/postback.json new file mode 100644 index 000000000000..9aaef6732b86 --- /dev/null +++ b/data/software/po/postback.json @@ -0,0 +1,8 @@ +{ + "slug": "postback", + "name": "Postback", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4822388" + ] +} diff --git a/data/software/po/postbox.json b/data/software/po/postbox.json new file mode 100644 index 000000000000..c31913084e82 --- /dev/null +++ b/data/software/po/postbox.json @@ -0,0 +1,11 @@ +{ + "slug": "postbox", + "name": "Postbox", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25203737" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/po/postchain.json b/data/software/po/postchain.json new file mode 100644 index 000000000000..cb336919cbd8 --- /dev/null +++ b/data/software/po/postchain.json @@ -0,0 +1,11 @@ +{ + "slug": "postchain", + "name": "Postchain", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137460231" + ], + "developers": [ + "ChromaWay" + ] +} diff --git a/data/software/po/posterous-spaces.json b/data/software/po/posterous-spaces.json new file mode 100644 index 000000000000..dc968235399a --- /dev/null +++ b/data/software/po/posterous-spaces.json @@ -0,0 +1,8 @@ +{ + "slug": "posterous-spaces", + "name": "Posterous Spaces", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084491" + ] +} diff --git a/data/software/po/postgresql-studio.json b/data/software/po/postgresql-studio.json new file mode 100644 index 000000000000..1ef42d3c17cc --- /dev/null +++ b/data/software/po/postgresql-studio.json @@ -0,0 +1,8 @@ +{ + "slug": "postgresql-studio", + "name": "PostgreSQL Studio", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16688794" + ] +} diff --git a/data/software/po/postgrey.json b/data/software/po/postgrey.json new file mode 100644 index 000000000000..ac89c733df95 --- /dev/null +++ b/data/software/po/postgrey.json @@ -0,0 +1,8 @@ +{ + "slug": "postgrey", + "name": "Postgrey", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62857966" + ] +} diff --git a/data/software/po/postini.json b/data/software/po/postini.json new file mode 100644 index 000000000000..0745f99a4e38 --- /dev/null +++ b/data/software/po/postini.json @@ -0,0 +1,11 @@ +{ + "slug": "postini", + "name": "Postini", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q772783" + ], + "developers": [ + "Google" + ] +} diff --git a/data/software/po/postpass.json b/data/software/po/postpass.json new file mode 100644 index 000000000000..4e76bc75f216 --- /dev/null +++ b/data/software/po/postpass.json @@ -0,0 +1,17 @@ +{ + "slug": "postpass", + "name": "PostPass", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q133568747" + ], + "developers": [ + "Frederik Ramm" + ], + "programming_languages": [ + "Go" + ], + "licenses": [ + "GNU General Public License, version 3.0" + ] +} diff --git a/data/software/po/postpet.json b/data/software/po/postpet.json new file mode 100644 index 000000000000..395dc6e7e0a1 --- /dev/null +++ b/data/software/po/postpet.json @@ -0,0 +1,11 @@ +{ + "slug": "postpet", + "name": "PostPet", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11239812" + ], + "developers": [ + "Sony Network Communications Inc." + ] +} diff --git a/data/software/po/postybirb.json b/data/software/po/postybirb.json new file mode 100644 index 000000000000..d98f152de0c2 --- /dev/null +++ b/data/software/po/postybirb.json @@ -0,0 +1,16 @@ +{ + "slug": "postybirb", + "name": "PostyBirb", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139677497" + ], + "operating_systems": [ + "cross-platform", + "macOS", + "Microsoft Windows" + ], + "licenses": [ + "3-clause BSD License" + ] +} diff --git a/data/software/po/powatag.json b/data/software/po/powatag.json new file mode 100644 index 000000000000..8b5f298e0176 --- /dev/null +++ b/data/software/po/powatag.json @@ -0,0 +1,11 @@ +{ + "slug": "powatag", + "name": "PowaTag", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18389404" + ], + "developers": [ + "Powa Technologies" + ] +} diff --git a/data/software/po/power-dolls-detachment-of-limited-line-service.json b/data/software/po/power-dolls-detachment-of-limited-line-service.json new file mode 100644 index 000000000000..cbb71fe06f74 --- /dev/null +++ b/data/software/po/power-dolls-detachment-of-limited-line-service.json @@ -0,0 +1,18 @@ +{ + "slug": "power-dolls-detachment-of-limited-line-service", + "name": "Power DoLLS: Detachment of Limited Line Service", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2579033" + ], + "release_date": "1994-01-14", + "developers": [ + "Kogado Studio" + ], + "publishers": [ + "Kogado Studio" + ], + "genres": [ + "turn-based tactics" + ] +} diff --git a/data/software/po/power-query.json b/data/software/po/power-query.json new file mode 100644 index 000000000000..836ac3b66e4a --- /dev/null +++ b/data/software/po/power-query.json @@ -0,0 +1,18 @@ +{ + "slug": "power-query", + "name": "Power Query", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q114876985" + ], + "release_date": "2008-01-01", + "developers": [ + "Microsoft" + ], + "operating_systems": [ + "Microsoft Windows" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/po/power-tab-editor.json b/data/software/po/power-tab-editor.json new file mode 100644 index 000000000000..3cd5516b6ec1 --- /dev/null +++ b/data/software/po/power-tab-editor.json @@ -0,0 +1,11 @@ +{ + "slug": "power-tab-editor", + "name": "Power Tab Editor", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1056667" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/po/power2go.json b/data/software/po/power2go.json new file mode 100644 index 000000000000..4054107fd176 --- /dev/null +++ b/data/software/po/power2go.json @@ -0,0 +1,8 @@ +{ + "slug": "power2go", + "name": "Power2Go", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11239817" + ] +} diff --git a/data/software/po/powerbuilder-foundation-classes.json b/data/software/po/powerbuilder-foundation-classes.json new file mode 100644 index 000000000000..430f1a75035c --- /dev/null +++ b/data/software/po/powerbuilder-foundation-classes.json @@ -0,0 +1,8 @@ +{ + "slug": "powerbuilder-foundation-classes", + "name": "PowerBuilder Foundation Classes", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7236182" + ] +} diff --git a/data/software/po/powerdesigner.json b/data/software/po/powerdesigner.json new file mode 100644 index 000000000000..8b60213dc68a --- /dev/null +++ b/data/software/po/powerdesigner.json @@ -0,0 +1,11 @@ +{ + "slug": "powerdesigner", + "name": "PowerDesigner", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q599975" + ], + "developers": [ + "SAP" + ] +} diff --git a/data/software/po/powerdevs.json b/data/software/po/powerdevs.json new file mode 100644 index 000000000000..d431b466de61 --- /dev/null +++ b/data/software/po/powerdevs.json @@ -0,0 +1,14 @@ +{ + "slug": "powerdevs", + "name": "PowerDEVS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7236190" + ], + "developers": [ + "Facultad de Ciencias Exactas, Ingeniería y Agrimensura" + ], + "operating_systems": [ + "cross-platform" + ] +} diff --git a/data/software/po/powerflasher-fdt.json b/data/software/po/powerflasher-fdt.json new file mode 100644 index 000000000000..21e148883e9c --- /dev/null +++ b/data/software/po/powerflasher-fdt.json @@ -0,0 +1,15 @@ +{ + "slug": "powerflasher-fdt", + "name": "Powerflasher FDT", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q24035825" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [ + "Java" + ] +} diff --git a/data/software/po/poweriso.json b/data/software/po/poweriso.json new file mode 100644 index 000000000000..f27451aa5475 --- /dev/null +++ b/data/software/po/poweriso.json @@ -0,0 +1,14 @@ +{ + "slug": "poweriso", + "name": "PowerISO", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2555144" + ], + "operating_systems": [ + "Microsoft Windows" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/po/powerlab.json b/data/software/po/powerlab.json new file mode 100644 index 000000000000..13f4535af01d --- /dev/null +++ b/data/software/po/powerlab.json @@ -0,0 +1,11 @@ +{ + "slug": "powerlab", + "name": "PowerLab", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16975491" + ], + "developers": [ + "ADInstruments" + ] +} diff --git a/data/software/po/powerman.json b/data/software/po/powerman.json new file mode 100644 index 000000000000..09036125069b --- /dev/null +++ b/data/software/po/powerman.json @@ -0,0 +1,8 @@ +{ + "slug": "powerman", + "name": "PowerMAN", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7236205" + ] +} diff --git a/data/software/po/powermill.json b/data/software/po/powermill.json new file mode 100644 index 000000000000..c5a6445452fc --- /dev/null +++ b/data/software/po/powermill.json @@ -0,0 +1,12 @@ +{ + "slug": "powermill", + "name": "PowerMILL", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7236206" + ], + "release_date": "1995-01-01", + "developers": [ + "Delcam" + ] +} diff --git a/data/software/po/powerpoint-viewer-3-0-for-mac.json b/data/software/po/powerpoint-viewer-3-0-for-mac.json new file mode 100644 index 000000000000..24821ae26651 --- /dev/null +++ b/data/software/po/powerpoint-viewer-3-0-for-mac.json @@ -0,0 +1,14 @@ +{ + "slug": "powerpoint-viewer-3-0-for-mac", + "name": "PowerPoint Viewer 3.0 for Mac", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28861315" + ], + "developers": [ + "Microsoft" + ], + "operating_systems": [ + "macOS" + ] +} diff --git a/data/software/po/powerpoint-viewer.json b/data/software/po/powerpoint-viewer.json new file mode 100644 index 000000000000..75811b5919d1 --- /dev/null +++ b/data/software/po/powerpoint-viewer.json @@ -0,0 +1,11 @@ +{ + "slug": "powerpoint-viewer", + "name": "PowerPoint Viewer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q9283552" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/po/powerprm.json b/data/software/po/powerprm.json new file mode 100644 index 000000000000..892c4a51d2b8 --- /dev/null +++ b/data/software/po/powerprm.json @@ -0,0 +1,18 @@ +{ + "slug": "powerprm", + "name": "PowerPRM", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140010133" + ], + "developers": [ + "Power PRM" + ], + "publishers": [ + "Netwise" + ], + "operating_systems": [ + "Azure", + "cloud computing" + ] +} diff --git a/data/software/po/powerpro.json b/data/software/po/powerpro.json new file mode 100644 index 000000000000..61e45fc7a840 --- /dev/null +++ b/data/software/po/powerpro.json @@ -0,0 +1,14 @@ +{ + "slug": "powerpro", + "name": "PowerPro", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4047292" + ], + "operating_systems": [ + "Microsoft Windows" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/po/powershadow.json b/data/software/po/powershadow.json new file mode 100644 index 000000000000..e8615c365db3 --- /dev/null +++ b/data/software/po/powershadow.json @@ -0,0 +1,8 @@ +{ + "slug": "powershadow", + "name": "PowerShadow", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11070114" + ] +} diff --git a/data/software/po/powerstat.json b/data/software/po/powerstat.json new file mode 100644 index 000000000000..96109ee6d8f9 --- /dev/null +++ b/data/software/po/powerstat.json @@ -0,0 +1,8 @@ +{ + "slug": "powerstat", + "name": "powerstat", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975352" + ] +} diff --git a/data/software/po/powervm-lx86.json b/data/software/po/powervm-lx86.json new file mode 100644 index 000000000000..c61995bf6e9d --- /dev/null +++ b/data/software/po/powervm-lx86.json @@ -0,0 +1,12 @@ +{ + "slug": "powervm-lx86", + "name": "PowerVM Lx86", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7236238" + ], + "release_date": "2008-01-01", + "developers": [ + "IBM" + ] +} diff --git a/data/software/po/powervm.json b/data/software/po/powervm.json new file mode 100644 index 000000000000..b9dbcd725b1d --- /dev/null +++ b/data/software/po/powervm.json @@ -0,0 +1,14 @@ +{ + "slug": "powervm", + "name": "PowerVM", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3400898" + ], + "developers": [ + "IBM" + ], + "operating_systems": [ + "IBM i" + ] +} diff --git a/data/software/po/powerword.json b/data/software/po/powerword.json new file mode 100644 index 000000000000..b19aa17b470e --- /dev/null +++ b/data/software/po/powerword.json @@ -0,0 +1,8 @@ +{ + "slug": "powerword", + "name": "PowerWord", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q14473766" + ] +} diff --git a/data/software/pp/pp-jailbreak.json b/data/software/pp/pp-jailbreak.json new file mode 100644 index 000000000000..656800a46042 --- /dev/null +++ b/data/software/pp/pp-jailbreak.json @@ -0,0 +1,8 @@ +{ + "slug": "pp-jailbreak", + "name": "PP Jailbreak", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22096867" + ] +} diff --git a/data/software/pp/ppg-phonem.json b/data/software/pp/ppg-phonem.json new file mode 100644 index 000000000000..833e972647c7 --- /dev/null +++ b/data/software/pp/ppg-phonem.json @@ -0,0 +1,8 @@ +{ + "slug": "ppg-phonem", + "name": "PPG Phonem", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22907885" + ] +} diff --git a/data/software/pp/pppconfig.json b/data/software/pp/pppconfig.json new file mode 100644 index 000000000000..486d202336d3 --- /dev/null +++ b/data/software/pp/pppconfig.json @@ -0,0 +1,8 @@ +{ + "slug": "pppconfig", + "name": "pppconfig", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065458" + ] +} diff --git a/data/software/pp/pps-tv.json b/data/software/pp/pps-tv.json new file mode 100644 index 000000000000..e1c7d4c5d5bb --- /dev/null +++ b/data/software/pp/pps-tv.json @@ -0,0 +1,20 @@ +{ + "slug": "pps-tv", + "name": "PPS.tv", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4300422" + ], + "developers": [ + "iQIYI" + ], + "publishers": [ + "iQIYI" + ], + "operating_systems": [ + "Microsoft Windows" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/pr/praat.json b/data/software/pr/praat.json new file mode 100644 index 000000000000..14b6ed876508 --- /dev/null +++ b/data/software/pr/praat.json @@ -0,0 +1,18 @@ +{ + "slug": "praat", + "name": "Praat", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q378530" + ], + "developers": [ + "Paul Boersma" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [ + "Objective-C" + ] +} diff --git a/data/software/pr/practicelink.json b/data/software/pr/practicelink.json new file mode 100644 index 000000000000..7863a16f993c --- /dev/null +++ b/data/software/pr/practicelink.json @@ -0,0 +1,11 @@ +{ + "slug": "practicelink", + "name": "PracticeLink", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140456795" + ], + "developers": [ + "Quartz IP" + ] +} diff --git a/data/software/pr/precice.json b/data/software/pr/precice.json new file mode 100644 index 000000000000..7caf9f4373db --- /dev/null +++ b/data/software/pr/precice.json @@ -0,0 +1,8 @@ +{ + "slug": "precice", + "name": "PreCICE", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136504894" + ] +} diff --git a/data/software/pr/precisionfda.json b/data/software/pr/precisionfda.json new file mode 100644 index 000000000000..7bf187283df7 --- /dev/null +++ b/data/software/pr/precisionfda.json @@ -0,0 +1,8 @@ +{ + "slug": "precisionfda", + "name": "precisionFDA", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25325411" + ] +} diff --git a/data/software/pr/prediction-by-partial-matching-by-dmitry.json b/data/software/pr/prediction-by-partial-matching-by-dmitry.json new file mode 100644 index 000000000000..b7aaab637856 --- /dev/null +++ b/data/software/pr/prediction-by-partial-matching-by-dmitry.json @@ -0,0 +1,8 @@ +{ + "slug": "prediction-by-partial-matching-by-dmitry", + "name": "Prediction by Partial Matching by Dmitry", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3359811" + ] +} diff --git a/data/software/pr/predictor-home.json b/data/software/pr/predictor-home.json new file mode 100644 index 000000000000..95c0121ddf3c --- /dev/null +++ b/data/software/pr/predictor-home.json @@ -0,0 +1,8 @@ +{ + "slug": "predictor-home", + "name": "Predictor@home", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q902260" + ] +} diff --git a/data/software/pr/predix.json b/data/software/pr/predix.json new file mode 100644 index 000000000000..a6bfc3e58c55 --- /dev/null +++ b/data/software/pr/predix.json @@ -0,0 +1,11 @@ +{ + "slug": "predix", + "name": "Predix", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25345904" + ], + "developers": [ + "General Electric" + ] +} diff --git a/data/software/pr/prelink.json b/data/software/pr/prelink.json new file mode 100644 index 000000000000..a818f790a37b --- /dev/null +++ b/data/software/pr/prelink.json @@ -0,0 +1,8 @@ +{ + "slug": "prelink", + "name": "Prelink", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62857848" + ] +} diff --git a/data/software/pr/prelude-hybrid-ids.json b/data/software/pr/prelude-hybrid-ids.json new file mode 100644 index 000000000000..f358c0bb479e --- /dev/null +++ b/data/software/pr/prelude-hybrid-ids.json @@ -0,0 +1,9 @@ +{ + "slug": "prelude-hybrid-ids", + "name": "Prelude Hybrid IDS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3401583" + ], + "release_date": "1998-01-01" +} diff --git a/data/software/pr/premier-sound-factory.json b/data/software/pr/premier-sound-factory.json new file mode 100644 index 000000000000..975d1d78418f --- /dev/null +++ b/data/software/pr/premier-sound-factory.json @@ -0,0 +1,11 @@ +{ + "slug": "premier-sound-factory", + "name": "Premier Sound Factory", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108029490" + ], + "developers": [ + "Premier Engineering Inc." + ] +} diff --git a/data/software/pr/prepare-and-visualize-mallet-topics.json b/data/software/pr/prepare-and-visualize-mallet-topics.json new file mode 100644 index 000000000000..218793c37ccc --- /dev/null +++ b/data/software/pr/prepare-and-visualize-mallet-topics.json @@ -0,0 +1,8 @@ +{ + "slug": "prepare-and-visualize-mallet-topics", + "name": "Prepare and Visualize Mallet Topics", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084492" + ] +} diff --git a/data/software/pr/prepomax.json b/data/software/pr/prepomax.json new file mode 100644 index 000000000000..db70aa3b3afb --- /dev/null +++ b/data/software/pr/prepomax.json @@ -0,0 +1,8 @@ +{ + "slug": "prepomax", + "name": "PrePoMax", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137188709" + ] +} diff --git a/data/software/pr/preservica.json b/data/software/pr/preservica.json new file mode 100644 index 000000000000..eefd12842078 --- /dev/null +++ b/data/software/pr/preservica.json @@ -0,0 +1,14 @@ +{ + "slug": "preservica", + "name": "Preservica", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q37621103" + ], + "developers": [ + "Preservica" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/pr/pretendo-network.json b/data/software/pr/pretendo-network.json new file mode 100644 index 000000000000..8b1dd519b2da --- /dev/null +++ b/data/software/pr/pretendo-network.json @@ -0,0 +1,8 @@ +{ + "slug": "pretendo-network", + "name": "Pretendo Network", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125396532" + ] +} diff --git a/data/software/pr/pretix.json b/data/software/pr/pretix.json new file mode 100644 index 000000000000..8142108d281e --- /dev/null +++ b/data/software/pr/pretix.json @@ -0,0 +1,8 @@ +{ + "slug": "pretix", + "name": "pretix", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134588245" + ] +} diff --git a/data/software/pr/pretty-show.json b/data/software/pr/pretty-show.json new file mode 100644 index 000000000000..322d00991a21 --- /dev/null +++ b/data/software/pr/pretty-show.json @@ -0,0 +1,8 @@ +{ + "slug": "pretty-show", + "name": "pretty-show", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q88506372" + ] +} diff --git a/data/software/pr/prewikka.json b/data/software/pr/prewikka.json new file mode 100644 index 000000000000..5d5aa6c576fc --- /dev/null +++ b/data/software/pr/prewikka.json @@ -0,0 +1,8 @@ +{ + "slug": "prewikka", + "name": "Prewikka", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62860935" + ] +} diff --git a/data/software/pr/prey-vs-predator-sy-01.json b/data/software/pr/prey-vs-predator-sy-01.json new file mode 100644 index 000000000000..39a0b2a87c14 --- /dev/null +++ b/data/software/pr/prey-vs-predator-sy-01.json @@ -0,0 +1,11 @@ +{ + "slug": "prey-vs-predator-sy-01", + "name": "Prey vs Predator | SY-01", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137503644" + ], + "licenses": [ + "Apache Software License 2.0" + ] +} diff --git a/data/software/pr/prezi.json b/data/software/pr/prezi.json new file mode 100644 index 000000000000..046f739de379 --- /dev/null +++ b/data/software/pr/prezi.json @@ -0,0 +1,8 @@ +{ + "slug": "prezi", + "name": "Prezi", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084493" + ] +} diff --git a/data/software/pr/prim8-mobile.json b/data/software/pr/prim8-mobile.json new file mode 100644 index 000000000000..b26f7070dcbb --- /dev/null +++ b/data/software/pr/prim8-mobile.json @@ -0,0 +1,11 @@ +{ + "slug": "prim8-mobile", + "name": "Prim8 Mobile", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106998743" + ], + "operating_systems": [ + "iOS" + ] +} diff --git a/data/software/pr/prima.json b/data/software/pr/prima.json new file mode 100644 index 000000000000..80b725d18e6e --- /dev/null +++ b/data/software/pr/prima.json @@ -0,0 +1,9 @@ +{ + "slug": "prima", + "name": "Prima", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10852105" + ], + "release_date": "2011-09-07" +} diff --git a/data/software/pr/primavera.json b/data/software/pr/primavera.json new file mode 100644 index 000000000000..9b8905d7cf83 --- /dev/null +++ b/data/software/pr/primavera.json @@ -0,0 +1,12 @@ +{ + "slug": "primavera", + "name": "Primavera", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2111327" + ], + "developers": [ + "Primavera Systems", + "Oracle Corporation" + ] +} diff --git a/data/software/pr/prime95.json b/data/software/pr/prime95.json new file mode 100644 index 000000000000..564048d8c84c --- /dev/null +++ b/data/software/pr/prime95.json @@ -0,0 +1,17 @@ +{ + "slug": "prime95", + "name": "Prime95", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1313004" + ], + "developers": [ + "George Woltman" + ], + "programming_languages": [ + "x86 assembly language" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/pr/primeocr.json b/data/software/pr/primeocr.json new file mode 100644 index 000000000000..be1e563b8719 --- /dev/null +++ b/data/software/pr/primeocr.json @@ -0,0 +1,11 @@ +{ + "slug": "primeocr", + "name": "PrimeOCR", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q61727092" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/pr/primer-blast.json b/data/software/pr/primer-blast.json new file mode 100644 index 000000000000..c3c3b7819820 --- /dev/null +++ b/data/software/pr/primer-blast.json @@ -0,0 +1,8 @@ +{ + "slug": "primer-blast", + "name": "Primer-BLAST", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112143945" + ] +} diff --git a/data/software/pr/primer-e-primer.json b/data/software/pr/primer-e-primer.json new file mode 100644 index 000000000000..77853e2efa24 --- /dev/null +++ b/data/software/pr/primer-e-primer.json @@ -0,0 +1,11 @@ +{ + "slug": "primer-e-primer", + "name": "Primer-E Primer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7243393" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/pr/primer-premier.json b/data/software/pr/primer-premier.json new file mode 100644 index 000000000000..8297fea73028 --- /dev/null +++ b/data/software/pr/primer-premier.json @@ -0,0 +1,11 @@ +{ + "slug": "primer-premier", + "name": "Primer Premier", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7243405" + ], + "developers": [ + "Premier Biosoft" + ] +} diff --git a/data/software/pr/primer3.json b/data/software/pr/primer3.json new file mode 100644 index 000000000000..fbbacc86cf94 --- /dev/null +++ b/data/software/pr/primer3.json @@ -0,0 +1,11 @@ +{ + "slug": "primer3", + "name": "Primer3", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11239942" + ], + "licenses": [ + "GNU General Public License, version 2.0 or later" + ] +} diff --git a/data/software/pr/primereviewspro.json b/data/software/pr/primereviewspro.json new file mode 100644 index 000000000000..fa29f00fa88f --- /dev/null +++ b/data/software/pr/primereviewspro.json @@ -0,0 +1,8 @@ +{ + "slug": "primereviewspro", + "name": "PrimeReviewsPro", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139856685" + ] +} diff --git a/data/software/pr/primopdf.json b/data/software/pr/primopdf.json new file mode 100644 index 000000000000..b449d6c674d6 --- /dev/null +++ b/data/software/pr/primopdf.json @@ -0,0 +1,11 @@ +{ + "slug": "primopdf", + "name": "PrimoPDF", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1986546" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/pr/prince-xml.json b/data/software/pr/prince-xml.json new file mode 100644 index 000000000000..89a8bd18ebc7 --- /dev/null +++ b/data/software/pr/prince-xml.json @@ -0,0 +1,17 @@ +{ + "slug": "prince-xml", + "name": "Prince XML", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7244299" + ], + "release_date": "2003-04-01", + "operating_systems": [ + "FreeBSD", + "macOS", + "Microsoft Windows" + ], + "programming_languages": [ + "Mercury" + ] +} diff --git a/data/software/pr/print-magic.json b/data/software/pr/print-magic.json new file mode 100644 index 000000000000..d0d10097411b --- /dev/null +++ b/data/software/pr/print-magic.json @@ -0,0 +1,11 @@ +{ + "slug": "print-magic", + "name": "Print Magic", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18155006" + ], + "developers": [ + "Epyx" + ] +} diff --git a/data/software/pr/print-share.json b/data/software/pr/print-share.json new file mode 100644 index 000000000000..2dbd05de81b3 --- /dev/null +++ b/data/software/pr/print-share.json @@ -0,0 +1,11 @@ +{ + "slug": "print-share", + "name": "Print&Share", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7245246" + ], + "developers": [ + "Winking" + ] +} diff --git a/data/software/pr/printer-setup-utility.json b/data/software/pr/printer-setup-utility.json new file mode 100644 index 000000000000..e6e754c80f59 --- /dev/null +++ b/data/software/pr/printer-setup-utility.json @@ -0,0 +1,11 @@ +{ + "slug": "printer-setup-utility", + "name": "Printer Setup Utility", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4006769" + ], + "developers": [ + "Apple Inc." + ] +} diff --git a/data/software/pr/printfriendly.json b/data/software/pr/printfriendly.json new file mode 100644 index 000000000000..5890a832b605 --- /dev/null +++ b/data/software/pr/printfriendly.json @@ -0,0 +1,8 @@ +{ + "slug": "printfriendly", + "name": "PrintFriendly", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131783081" + ] +} diff --git a/data/software/pr/printkey-2000.json b/data/software/pr/printkey-2000.json new file mode 100644 index 000000000000..c023f6e67413 --- /dev/null +++ b/data/software/pr/printkey-2000.json @@ -0,0 +1,11 @@ +{ + "slug": "printkey-2000", + "name": "PrintKey 2000", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7245248" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/pr/printmaster-gold-classic.json b/data/software/pr/printmaster-gold-classic.json new file mode 100644 index 000000000000..e3c86ed626ee --- /dev/null +++ b/data/software/pr/printmaster-gold-classic.json @@ -0,0 +1,16 @@ +{ + "slug": "printmaster-gold-classic", + "name": "PrintMaster Gold Classic", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113172793" + ], + "release_date": "1998-01-01", + "developers": [ + "Mindscape" + ], + "operating_systems": [ + "Windows 95", + "Windows for Workgroups 3.11" + ] +} diff --git a/data/software/pr/printmaster.json b/data/software/pr/printmaster.json new file mode 100644 index 000000000000..fcfbb5ff19f4 --- /dev/null +++ b/data/software/pr/printmaster.json @@ -0,0 +1,12 @@ +{ + "slug": "printmaster", + "name": "PrintMaster", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17081700" + ], + "release_date": "1991-01-01", + "developers": [ + "Encore, Inc." + ] +} diff --git a/data/software/pr/priority-matrix.json b/data/software/pr/priority-matrix.json new file mode 100644 index 000000000000..9a7de1f84aa0 --- /dev/null +++ b/data/software/pr/priority-matrix.json @@ -0,0 +1,11 @@ +{ + "slug": "priority-matrix", + "name": "Priority Matrix", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22096906" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/pr/prism-q135263888.json b/data/software/pr/prism-q135263888.json new file mode 100644 index 000000000000..58f095c75e4c --- /dev/null +++ b/data/software/pr/prism-q135263888.json @@ -0,0 +1,11 @@ +{ + "slug": "prism-q135263888", + "name": "PRISM", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135263888" + ], + "developers": [ + "Enverus" + ] +} diff --git a/data/software/pr/prism-q140026666.json b/data/software/pr/prism-q140026666.json new file mode 100644 index 000000000000..e5d4a8e590f3 --- /dev/null +++ b/data/software/pr/prism-q140026666.json @@ -0,0 +1,14 @@ +{ + "slug": "prism-q140026666", + "name": "Prism", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140026666" + ], + "developers": [ + "Microsoft" + ], + "operating_systems": [ + "Windows 11" + ] +} diff --git a/data/software/pr/prism-video-converter.json b/data/software/pr/prism-video-converter.json new file mode 100644 index 000000000000..375c5fe818e9 --- /dev/null +++ b/data/software/pr/prism-video-converter.json @@ -0,0 +1,8 @@ +{ + "slug": "prism-video-converter", + "name": "Prism Video Converter", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120534316" + ] +} diff --git a/data/software/pr/prism.json b/data/software/pr/prism.json new file mode 100644 index 000000000000..3cd7b7a98f27 --- /dev/null +++ b/data/software/pr/prism.json @@ -0,0 +1,8 @@ +{ + "slug": "prism", + "name": "Prism", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084494" + ] +} diff --git a/data/software/pr/prismatic.json b/data/software/pr/prismatic.json new file mode 100644 index 000000000000..6a4e72cfec47 --- /dev/null +++ b/data/software/pr/prismatic.json @@ -0,0 +1,8 @@ +{ + "slug": "prismatic", + "name": "Prismatic", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7245690" + ] +} diff --git a/data/software/pr/privadovpn.json b/data/software/pr/privadovpn.json new file mode 100644 index 000000000000..0462c54db4ca --- /dev/null +++ b/data/software/pr/privadovpn.json @@ -0,0 +1,8 @@ +{ + "slug": "privadovpn", + "name": "PrivadoVPN", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113669345" + ] +} diff --git a/data/software/pr/private-character-editor.json b/data/software/pr/private-character-editor.json new file mode 100644 index 000000000000..382e06952aba --- /dev/null +++ b/data/software/pr/private-character-editor.json @@ -0,0 +1,8 @@ +{ + "slug": "private-character-editor", + "name": "Private Character Editor", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q909075" + ] +} diff --git a/data/software/pr/private-collective-model-of-innovation.json b/data/software/pr/private-collective-model-of-innovation.json new file mode 100644 index 000000000000..ac8b0fd969a9 --- /dev/null +++ b/data/software/pr/private-collective-model-of-innovation.json @@ -0,0 +1,8 @@ +{ + "slug": "private-collective-model-of-innovation", + "name": "private-collective model of innovation", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7246037" + ] +} diff --git a/data/software/pr/pro-cycling-manager.json b/data/software/pr/pro-cycling-manager.json new file mode 100644 index 000000000000..70d8ba74819d --- /dev/null +++ b/data/software/pr/pro-cycling-manager.json @@ -0,0 +1,8 @@ +{ + "slug": "pro-cycling-manager", + "name": "Pro Cycling Manager", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107301172" + ] +} diff --git a/data/software/pr/pro-ii.json b/data/software/pr/pro-ii.json new file mode 100644 index 000000000000..ba3c422ee4e4 --- /dev/null +++ b/data/software/pr/pro-ii.json @@ -0,0 +1,11 @@ +{ + "slug": "pro-ii", + "name": "PRO/II", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7120372" + ], + "developers": [ + "Schneider Electric" + ] +} diff --git a/data/software/pr/pro-lx.json b/data/software/pr/pro-lx.json new file mode 100644 index 000000000000..0507baa3064d --- /dev/null +++ b/data/software/pr/pro-lx.json @@ -0,0 +1,14 @@ +{ + "slug": "pro-lx", + "name": "PRO/LX", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121672433" + ], + "developers": [ + "D&A Software" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/pr/proactive-discovery-of-insider-threats-using-graph-analysis-and-learning.json b/data/software/pr/proactive-discovery-of-insider-threats-using-graph-analysis-and-learning.json new file mode 100644 index 000000000000..803e7be5f055 --- /dev/null +++ b/data/software/pr/proactive-discovery-of-insider-threats-using-graph-analysis-and-learning.json @@ -0,0 +1,8 @@ +{ + "slug": "proactive-discovery-of-insider-threats-using-graph-analysis-and-learning", + "name": "Proactive Discovery of Insider Threats Using Graph Analysis and Learning", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7246810" + ] +} diff --git a/data/software/pr/proarc.json b/data/software/pr/proarc.json new file mode 100644 index 000000000000..796b507bc12e --- /dev/null +++ b/data/software/pr/proarc.json @@ -0,0 +1,11 @@ +{ + "slug": "proarc", + "name": "ProArc", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7246636" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/pr/probis.json b/data/software/pr/probis.json new file mode 100644 index 000000000000..776c458f4d8a --- /dev/null +++ b/data/software/pr/probis.json @@ -0,0 +1,11 @@ +{ + "slug": "probis", + "name": "ProBiS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28403202" + ], + "operating_systems": [ + "Unix-like operating system" + ] +} diff --git a/data/software/pr/problem-solving-environment.json b/data/software/pr/problem-solving-environment.json new file mode 100644 index 000000000000..f0ee8d3ff275 --- /dev/null +++ b/data/software/pr/problem-solving-environment.json @@ -0,0 +1,8 @@ +{ + "slug": "problem-solving-environment", + "name": "Problem Solving Environment", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7246952" + ] +} diff --git a/data/software/pr/problog.json b/data/software/pr/problog.json new file mode 100644 index 000000000000..470081d0eaec --- /dev/null +++ b/data/software/pr/problog.json @@ -0,0 +1,8 @@ +{ + "slug": "problog", + "name": "ProbLog", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113697218" + ] +} diff --git a/data/software/pr/procenv.json b/data/software/pr/procenv.json new file mode 100644 index 000000000000..b81a05a96aa0 --- /dev/null +++ b/data/software/pr/procenv.json @@ -0,0 +1,8 @@ +{ + "slug": "procenv", + "name": "procenv", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62863183" + ] +} diff --git a/data/software/pr/process-analysis-toolkit.json b/data/software/pr/process-analysis-toolkit.json new file mode 100644 index 000000000000..474bac9410a4 --- /dev/null +++ b/data/software/pr/process-analysis-toolkit.json @@ -0,0 +1,14 @@ +{ + "slug": "process-analysis-toolkit", + "name": "Process Analysis Toolkit", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7118286" + ], + "developers": [ + "National University of Singapore" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/pr/processing.json b/data/software/pr/processing.json new file mode 100644 index 000000000000..696cf6965f70 --- /dev/null +++ b/data/software/pr/processing.json @@ -0,0 +1,8 @@ +{ + "slug": "processing", + "name": "Processing", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084495" + ] +} diff --git a/data/software/pr/processingjs.json b/data/software/pr/processingjs.json new file mode 100644 index 000000000000..0bd6769c5c68 --- /dev/null +++ b/data/software/pr/processingjs.json @@ -0,0 +1,8 @@ +{ + "slug": "processingjs", + "name": "ProcessingJS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084496" + ] +} diff --git a/data/software/pr/procoder.json b/data/software/pr/procoder.json new file mode 100644 index 000000000000..c431f248f6d1 --- /dev/null +++ b/data/software/pr/procoder.json @@ -0,0 +1,12 @@ +{ + "slug": "procoder", + "name": "ProCoder", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7246652" + ], + "developers": [ + "Grass Valley K.K.", + "Vantiva" + ] +} diff --git a/data/software/pr/procps.json b/data/software/pr/procps.json new file mode 100644 index 000000000000..8dfae4bf724a --- /dev/null +++ b/data/software/pr/procps.json @@ -0,0 +1,14 @@ +{ + "slug": "procps", + "name": "procps", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62860941" + ], + "operating_systems": [ + "Unix-like operating system" + ], + "licenses": [ + "GNU General Public License, version 2.0" + ] +} diff --git a/data/software/pr/procurement-software.json b/data/software/pr/procurement-software.json new file mode 100644 index 000000000000..d0878700b46d --- /dev/null +++ b/data/software/pr/procurement-software.json @@ -0,0 +1,8 @@ +{ + "slug": "procurement-software", + "name": "procurement software", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7247547" + ] +} diff --git a/data/software/pr/prodigy.json b/data/software/pr/prodigy.json new file mode 100644 index 000000000000..453efe8b3071 --- /dev/null +++ b/data/software/pr/prodigy.json @@ -0,0 +1,8 @@ +{ + "slug": "prodigy", + "name": "PRODIGY", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q114840854" + ] +} diff --git a/data/software/pr/product-management-dashboard-for-jira.json b/data/software/pr/product-management-dashboard-for-jira.json new file mode 100644 index 000000000000..497c8ea761a3 --- /dev/null +++ b/data/software/pr/product-management-dashboard-for-jira.json @@ -0,0 +1,11 @@ +{ + "slug": "product-management-dashboard-for-jira", + "name": "Product Management Dashboard for Jira", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131869608" + ], + "developers": [ + "proProduktmanagement GmbH" + ] +} diff --git a/data/software/pr/productcenter.json b/data/software/pr/productcenter.json new file mode 100644 index 000000000000..13dd13b03c58 --- /dev/null +++ b/data/software/pr/productcenter.json @@ -0,0 +1,15 @@ +{ + "slug": "productcenter", + "name": "ProductCenter", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7247731" + ], + "release_date": "1994-12-01", + "developers": [ + "SofTech, Inc." + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/pr/prody-parrot.json b/data/software/pr/prody-parrot.json new file mode 100644 index 000000000000..a4822039939e --- /dev/null +++ b/data/software/pr/prody-parrot.json @@ -0,0 +1,11 @@ +{ + "slug": "prody-parrot", + "name": "Prody Parrot", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18344788" + ], + "operating_systems": [ + "Windows 95" + ] +} diff --git a/data/software/pr/professional-music-driver.json b/data/software/pr/professional-music-driver.json new file mode 100644 index 000000000000..9940a3a057ad --- /dev/null +++ b/data/software/pr/professional-music-driver.json @@ -0,0 +1,8 @@ +{ + "slug": "professional-music-driver", + "name": "Professional Music Driver", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140133670" + ] +} diff --git a/data/software/pr/professional-open-source.json b/data/software/pr/professional-open-source.json new file mode 100644 index 000000000000..672781e96484 --- /dev/null +++ b/data/software/pr/professional-open-source.json @@ -0,0 +1,8 @@ +{ + "slug": "professional-open-source", + "name": "Professional open-source", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7248087" + ] +} diff --git a/data/software/pr/profile-sync-daemon.json b/data/software/pr/profile-sync-daemon.json new file mode 100644 index 000000000000..9e608f239d63 --- /dev/null +++ b/data/software/pr/profile-sync-daemon.json @@ -0,0 +1,8 @@ +{ + "slug": "profile-sync-daemon", + "name": "profile-sync-daemon", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975355" + ] +} diff --git a/data/software/pr/profileaar.json b/data/software/pr/profileaar.json new file mode 100644 index 000000000000..3b585e799173 --- /dev/null +++ b/data/software/pr/profileaar.json @@ -0,0 +1,8 @@ +{ + "slug": "profileaar", + "name": "profileAAR", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q74823867" + ] +} diff --git a/data/software/pr/profiler-plus.json b/data/software/pr/profiler-plus.json new file mode 100644 index 000000000000..cd3a1473e08e --- /dev/null +++ b/data/software/pr/profiler-plus.json @@ -0,0 +1,8 @@ +{ + "slug": "profiler-plus", + "name": "Profiler Plus", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087698" + ] +} diff --git a/data/software/pr/progdvb.json b/data/software/pr/progdvb.json new file mode 100644 index 000000000000..cdbb90a3188c --- /dev/null +++ b/data/software/pr/progdvb.json @@ -0,0 +1,11 @@ +{ + "slug": "progdvb", + "name": "ProgDVB", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4118715" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/pr/progecad.json b/data/software/pr/progecad.json new file mode 100644 index 000000000000..58f12384d3b2 --- /dev/null +++ b/data/software/pr/progecad.json @@ -0,0 +1,11 @@ +{ + "slug": "progecad", + "name": "progeCAD", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q252581" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/pr/programmed-airline-reservations-system.json b/data/software/pr/programmed-airline-reservations-system.json new file mode 100644 index 000000000000..921507d952d8 --- /dev/null +++ b/data/software/pr/programmed-airline-reservations-system.json @@ -0,0 +1,11 @@ +{ + "slug": "programmed-airline-reservations-system", + "name": "Programmed Airline Reservations System", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7248471" + ], + "developers": [ + "IBM" + ] +} diff --git a/data/software/pr/programmer-and-operator-productivity-aid.json b/data/software/pr/programmer-and-operator-productivity-aid.json new file mode 100644 index 000000000000..59b086b1c84e --- /dev/null +++ b/data/software/pr/programmer-and-operator-productivity-aid.json @@ -0,0 +1,11 @@ +{ + "slug": "programmer-and-operator-productivity-aid", + "name": "Programmer and Operator Productivity Aid", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7248478" + ], + "developers": [ + "IBM" + ] +} diff --git a/data/software/pr/programming-experience-toolkit.json b/data/software/pr/programming-experience-toolkit.json new file mode 100644 index 000000000000..d00c5fe9b1ec --- /dev/null +++ b/data/software/pr/programming-experience-toolkit.json @@ -0,0 +1,14 @@ +{ + "slug": "programming-experience-toolkit", + "name": "Programming Experience Toolkit", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123125234" + ], + "developers": [ + "Peli de Halleux" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/pr/programming-metadata-communications-protocol.json b/data/software/pr/programming-metadata-communications-protocol.json new file mode 100644 index 000000000000..1c6b395d2844 --- /dev/null +++ b/data/software/pr/programming-metadata-communications-protocol.json @@ -0,0 +1,8 @@ +{ + "slug": "programming-metadata-communications-protocol", + "name": "Programming Metadata Communications Protocol", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7248491" + ] +} diff --git a/data/software/pr/proicon.json b/data/software/pr/proicon.json new file mode 100644 index 000000000000..08fa28413f61 --- /dev/null +++ b/data/software/pr/proicon.json @@ -0,0 +1,8 @@ +{ + "slug": "proicon", + "name": "ProIcon", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084497" + ] +} diff --git a/data/software/pr/project-bergamot.json b/data/software/pr/project-bergamot.json new file mode 100644 index 000000000000..d517e5ca98c6 --- /dev/null +++ b/data/software/pr/project-bergamot.json @@ -0,0 +1,8 @@ +{ + "slug": "project-bergamot", + "name": "Project Bergamot", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130902406" + ] +} diff --git a/data/software/pr/project-dakota.json b/data/software/pr/project-dakota.json new file mode 100644 index 000000000000..d09dc4d2fa7f --- /dev/null +++ b/data/software/pr/project-dakota.json @@ -0,0 +1,11 @@ +{ + "slug": "project-dakota", + "name": "Project Dakota", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7249053" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/pr/project-dream.json b/data/software/pr/project-dream.json new file mode 100644 index 000000000000..d9d821d6bb58 --- /dev/null +++ b/data/software/pr/project-dream.json @@ -0,0 +1,8 @@ +{ + "slug": "project-dream", + "name": "Project DReaM", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7249048" + ] +} diff --git a/data/software/pr/project-genoa.json b/data/software/pr/project-genoa.json new file mode 100644 index 000000000000..27fd2e0c86fc --- /dev/null +++ b/data/software/pr/project-genoa.json @@ -0,0 +1,8 @@ +{ + "slug": "project-genoa", + "name": "Project Genoa", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7249107" + ] +} diff --git a/data/software/pr/project-harmony.json b/data/software/pr/project-harmony.json new file mode 100644 index 000000000000..fc70a824fe08 --- /dev/null +++ b/data/software/pr/project-harmony.json @@ -0,0 +1,8 @@ +{ + "slug": "project-harmony", + "name": "Project Harmony", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7249135" + ] +} diff --git a/data/software/pr/project-je.json b/data/software/pr/project-je.json new file mode 100644 index 000000000000..1c8dc4b9e27c --- /dev/null +++ b/data/software/pr/project-je.json @@ -0,0 +1,8 @@ +{ + "slug": "project-je", + "name": "Project-JE", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11240024" + ] +} diff --git a/data/software/pr/project-kickstart.json b/data/software/pr/project-kickstart.json new file mode 100644 index 000000000000..ea6ea96333cd --- /dev/null +++ b/data/software/pr/project-kickstart.json @@ -0,0 +1,11 @@ +{ + "slug": "project-kickstart", + "name": "Project KickStart", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7249176" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/pr/project-loom.json b/data/software/pr/project-loom.json new file mode 100644 index 000000000000..989285f9669f --- /dev/null +++ b/data/software/pr/project-loom.json @@ -0,0 +1,11 @@ +{ + "slug": "project-loom", + "name": "Project Loom", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q67470896" + ], + "licenses": [ + "GNU General Public License, version 2.0" + ] +} diff --git a/data/software/pr/project-noah-q22080512.json b/data/software/pr/project-noah-q22080512.json new file mode 100644 index 000000000000..75e6a5e03f29 --- /dev/null +++ b/data/software/pr/project-noah-q22080512.json @@ -0,0 +1,12 @@ +{ + "slug": "project-noah-q22080512", + "name": "Project NOAH", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22080512" + ], + "developers": [ + "Department of Science and Technology", + "University of the Philippines Diliman" + ] +} diff --git a/data/software/pr/project-noah.json b/data/software/pr/project-noah.json new file mode 100644 index 000000000000..133043472d0b --- /dev/null +++ b/data/software/pr/project-noah.json @@ -0,0 +1,8 @@ +{ + "slug": "project-noah", + "name": "Project Noah", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7249226" + ] +} diff --git a/data/software/pr/project-outdoor-gyms.json b/data/software/pr/project-outdoor-gyms.json new file mode 100644 index 000000000000..f7ad74785fef --- /dev/null +++ b/data/software/pr/project-outdoor-gyms.json @@ -0,0 +1,8 @@ +{ + "slug": "project-outdoor-gyms", + "name": "Project Outdoor Gyms", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107186275" + ] +} diff --git a/data/software/pr/project-pad.json b/data/software/pr/project-pad.json new file mode 100644 index 000000000000..29611450ecd8 --- /dev/null +++ b/data/software/pr/project-pad.json @@ -0,0 +1,8 @@ +{ + "slug": "project-pad", + "name": "Project Pad", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084498" + ] +} diff --git a/data/software/pr/project-phobos.json b/data/software/pr/project-phobos.json new file mode 100644 index 000000000000..2d0ad78f9de9 --- /dev/null +++ b/data/software/pr/project-phobos.json @@ -0,0 +1,18 @@ +{ + "slug": "project-phobos", + "name": "Project Phobos", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7249246" + ], + "developers": [ + "Oracle Corporation" + ], + "operating_systems": [ + "cross-platform" + ], + "licenses": [ + "Common Development and Distribution License version 1.0", + "GPL linking exception" + ] +} diff --git a/data/software/pr/project-quincy.json b/data/software/pr/project-quincy.json new file mode 100644 index 000000000000..38aee60ba6de --- /dev/null +++ b/data/software/pr/project-quincy.json @@ -0,0 +1,8 @@ +{ + "slug": "project-quincy", + "name": "Project Quincy", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084499" + ] +} diff --git a/data/software/pr/project-workforce-management.json b/data/software/pr/project-workforce-management.json new file mode 100644 index 000000000000..b0592f2fcfde --- /dev/null +++ b/data/software/pr/project-workforce-management.json @@ -0,0 +1,8 @@ +{ + "slug": "project-workforce-management", + "name": "project workforce management", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1240635" + ] +} diff --git a/data/software/pr/projection-wizard.json b/data/software/pr/projection-wizard.json new file mode 100644 index 000000000000..3be2cb305371 --- /dev/null +++ b/data/software/pr/projection-wizard.json @@ -0,0 +1,11 @@ +{ + "slug": "projection-wizard", + "name": "Projection Wizard", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121343513" + ], + "developers": [ + "Bojan Šavrič" + ] +} diff --git a/data/software/pr/projectplace.json b/data/software/pr/projectplace.json new file mode 100644 index 000000000000..702cb2326a58 --- /dev/null +++ b/data/software/pr/projectplace.json @@ -0,0 +1,11 @@ +{ + "slug": "projectplace", + "name": "Projectplace", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1166048" + ], + "developers": [ + "Planview" + ] +} diff --git a/data/software/pr/projects.json b/data/software/pr/projects.json new file mode 100644 index 000000000000..3729de030982 --- /dev/null +++ b/data/software/pr/projects.json @@ -0,0 +1,8 @@ +{ + "slug": "projects", + "name": "Projects", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084500" + ] +} diff --git a/data/software/pr/projektron-bcs.json b/data/software/pr/projektron-bcs.json new file mode 100644 index 000000000000..939ff9af4553 --- /dev/null +++ b/data/software/pr/projektron-bcs.json @@ -0,0 +1,17 @@ +{ + "slug": "projektron-bcs", + "name": "Projektron BCS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2112526" + ], + "operating_systems": [ + "cross-platform" + ], + "programming_languages": [ + "Java" + ], + "licenses": [ + "end-user license agreement" + ] +} diff --git a/data/software/pr/prokon.json b/data/software/pr/prokon.json new file mode 100644 index 000000000000..afbf507a0973 --- /dev/null +++ b/data/software/pr/prokon.json @@ -0,0 +1,12 @@ +{ + "slug": "prokon", + "name": "Prokon", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28956351" + ], + "release_date": "1982-12-01", + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/pr/prolib.json b/data/software/pr/prolib.json new file mode 100644 index 000000000000..07f7781d1b95 --- /dev/null +++ b/data/software/pr/prolib.json @@ -0,0 +1,8 @@ +{ + "slug": "prolib", + "name": "Prolib", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11827703" + ] +} diff --git a/data/software/pr/prolith.json b/data/software/pr/prolith.json new file mode 100644 index 000000000000..97b93add72d9 --- /dev/null +++ b/data/software/pr/prolith.json @@ -0,0 +1,11 @@ +{ + "slug": "prolith", + "name": "PROLITH", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7120398" + ], + "developers": [ + "Chris Mack" + ] +} diff --git a/data/software/pr/prolog.json b/data/software/pr/prolog.json new file mode 100644 index 000000000000..625e8a3c28d7 --- /dev/null +++ b/data/software/pr/prolog.json @@ -0,0 +1,8 @@ +{ + "slug": "prolog", + "name": "Prolog", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084501" + ] +} diff --git a/data/software/pr/promax.json b/data/software/pr/promax.json new file mode 100644 index 000000000000..dcd5c831181b --- /dev/null +++ b/data/software/pr/promax.json @@ -0,0 +1,8 @@ +{ + "slug": "promax", + "name": "ProMax", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7246671" + ] +} diff --git a/data/software/pr/prometea.json b/data/software/pr/prometea.json new file mode 100644 index 000000000000..4e9fea910b0a --- /dev/null +++ b/data/software/pr/prometea.json @@ -0,0 +1,8 @@ +{ + "slug": "prometea", + "name": "Prometea", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q97703850" + ] +} diff --git a/data/software/pr/promoiq.json b/data/software/pr/promoiq.json new file mode 100644 index 000000000000..b7e029cb1730 --- /dev/null +++ b/data/software/pr/promoiq.json @@ -0,0 +1,11 @@ +{ + "slug": "promoiq", + "name": "PromoIQ", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138998780" + ], + "developers": [ + "ExpandIQ" + ] +} diff --git a/data/software/pr/promotic-scada-system.json b/data/software/pr/promotic-scada-system.json new file mode 100644 index 000000000000..825df785878e --- /dev/null +++ b/data/software/pr/promotic-scada-system.json @@ -0,0 +1,11 @@ +{ + "slug": "promotic-scada-system", + "name": "PROMOTIC SCADA system", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2819644" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/pr/pronote.json b/data/software/pr/pronote.json new file mode 100644 index 000000000000..5a9590a2f4c8 --- /dev/null +++ b/data/software/pr/pronote.json @@ -0,0 +1,8 @@ +{ + "slug": "pronote", + "name": "Pronote", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3407485" + ] +} diff --git a/data/software/pr/proot.json b/data/software/pr/proot.json new file mode 100644 index 000000000000..2bad37689ce9 --- /dev/null +++ b/data/software/pr/proot.json @@ -0,0 +1,8 @@ +{ + "slug": "proot", + "name": "PRoot", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62861000" + ] +} diff --git a/data/software/pr/property-technologies.json b/data/software/pr/property-technologies.json new file mode 100644 index 000000000000..c11662e2a8d3 --- /dev/null +++ b/data/software/pr/property-technologies.json @@ -0,0 +1,14 @@ +{ + "slug": "property-technologies", + "name": "Property Technologies", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139865674" + ], + "developers": [ + "The Pavement Group" + ], + "operating_systems": [ + "iOS" + ] +} diff --git a/data/software/pr/propman-property-management-and-accounting-software.json b/data/software/pr/propman-property-management-and-accounting-software.json new file mode 100644 index 000000000000..91869fee9fcc --- /dev/null +++ b/data/software/pr/propman-property-management-and-accounting-software.json @@ -0,0 +1,11 @@ +{ + "slug": "propman-property-management-and-accounting-software", + "name": "Propman (property management and accounting software)", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135033968" + ], + "developers": [ + "Grosvenor Systems" + ] +} diff --git a/data/software/pr/proprofs-elearning-software.json b/data/software/pr/proprofs-elearning-software.json new file mode 100644 index 000000000000..eeed25c6baf2 --- /dev/null +++ b/data/software/pr/proprofs-elearning-software.json @@ -0,0 +1,8 @@ +{ + "slug": "proprofs-elearning-software", + "name": "ProProfs eLearning Software", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084503" + ] +} diff --git a/data/software/pr/prora.json b/data/software/pr/prora.json new file mode 100644 index 000000000000..afef9398a64f --- /dev/null +++ b/data/software/pr/prora.json @@ -0,0 +1,8 @@ +{ + "slug": "prora", + "name": "PRORA", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087699" + ] +} diff --git a/data/software/pr/prorealtime.json b/data/software/pr/prorealtime.json new file mode 100644 index 000000000000..732b30f90dc2 --- /dev/null +++ b/data/software/pr/prorealtime.json @@ -0,0 +1,11 @@ +{ + "slug": "prorealtime", + "name": "ProRealTime", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16671188" + ], + "programming_languages": [ + "Java" + ] +} diff --git a/data/software/pr/proschool360.json b/data/software/pr/proschool360.json new file mode 100644 index 000000000000..0438622e75b7 --- /dev/null +++ b/data/software/pr/proschool360.json @@ -0,0 +1,20 @@ +{ + "slug": "proschool360", + "name": "ProSchool360", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140217409" + ], + "operating_systems": [ + "web application" + ], + "programming_languages": [ + "PHP" + ], + "licenses": [ + "proprietary license" + ], + "genres": [ + "enterprise resource planning" + ] +} diff --git a/data/software/pr/prose-virtual-muse.json b/data/software/pr/prose-virtual-muse.json new file mode 100644 index 000000000000..25da2340f2a4 --- /dev/null +++ b/data/software/pr/prose-virtual-muse.json @@ -0,0 +1,8 @@ +{ + "slug": "prose-virtual-muse", + "name": "Prose (Virtual Muse)", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087700" + ] +} diff --git a/data/software/pr/prosecutor-s-management-information-system.json b/data/software/pr/prosecutor-s-management-information-system.json new file mode 100644 index 000000000000..ab3e49b6ddfa --- /dev/null +++ b/data/software/pr/prosecutor-s-management-information-system.json @@ -0,0 +1,11 @@ +{ + "slug": "prosecutor-s-management-information-system", + "name": "Prosecutor's Management Information System", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7250570" + ], + "developers": [ + "Inslaw" + ] +} diff --git a/data/software/pr/prospect.json b/data/software/pr/prospect.json new file mode 100644 index 000000000000..084a0282d1c3 --- /dev/null +++ b/data/software/pr/prospect.json @@ -0,0 +1,8 @@ +{ + "slug": "prospect", + "name": "Prospect", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084504" + ] +} diff --git a/data/software/pr/prospects-course-exchange.json b/data/software/pr/prospects-course-exchange.json new file mode 100644 index 000000000000..e12929d1a0fc --- /dev/null +++ b/data/software/pr/prospects-course-exchange.json @@ -0,0 +1,8 @@ +{ + "slug": "prospects-course-exchange", + "name": "Prospects Course Exchange", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q55630609" + ] +} diff --git a/data/software/pr/prostat.json b/data/software/pr/prostat.json new file mode 100644 index 000000000000..dd7d4e9f7eaf --- /dev/null +++ b/data/software/pr/prostat.json @@ -0,0 +1,11 @@ +{ + "slug": "prostat", + "name": "ProStat", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7246695" + ], + "operating_systems": [ + "Windows 7" + ] +} diff --git a/data/software/pr/prosyst.json b/data/software/pr/prosyst.json new file mode 100644 index 000000000000..436cb0b5d3a6 --- /dev/null +++ b/data/software/pr/prosyst.json @@ -0,0 +1,8 @@ +{ + "slug": "prosyst", + "name": "ProSyst", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7246698" + ] +} diff --git a/data/software/pr/protege-gx.json b/data/software/pr/protege-gx.json new file mode 100644 index 000000000000..22586003398e --- /dev/null +++ b/data/software/pr/protege-gx.json @@ -0,0 +1,11 @@ +{ + "slug": "protege-gx", + "name": "Protege GX", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134971364" + ], + "developers": [ + "Integrated Control Technology" + ] +} diff --git a/data/software/pr/protege-wx.json b/data/software/pr/protege-wx.json new file mode 100644 index 000000000000..5b0d18e4909a --- /dev/null +++ b/data/software/pr/protege-wx.json @@ -0,0 +1,11 @@ +{ + "slug": "protege-wx", + "name": "Protege WX", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134971365" + ], + "developers": [ + "Integrated Control Technology" + ] +} diff --git a/data/software/pr/protege-x.json b/data/software/pr/protege-x.json new file mode 100644 index 000000000000..f9d412e5e1e5 --- /dev/null +++ b/data/software/pr/protege-x.json @@ -0,0 +1,11 @@ +{ + "slug": "protege-x", + "name": "Protege X", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134971366" + ], + "developers": [ + "Integrated Control Technology" + ] +} diff --git a/data/software/pr/protein-local-optimization-program.json b/data/software/pr/protein-local-optimization-program.json new file mode 100644 index 000000000000..77d296f92b84 --- /dev/null +++ b/data/software/pr/protein-local-optimization-program.json @@ -0,0 +1,14 @@ +{ + "slug": "protein-local-optimization-program", + "name": "Protein Local Optimization Program", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7251441" + ], + "developers": [ + "University of California, San Francisco" + ], + "programming_languages": [ + "Fortran" + ] +} diff --git a/data/software/pr/protext.json b/data/software/pr/protext.json new file mode 100644 index 000000000000..61b2b73dd119 --- /dev/null +++ b/data/software/pr/protext.json @@ -0,0 +1,11 @@ +{ + "slug": "protext", + "name": "proTeXt", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7246701" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/pr/protime-ai.json b/data/software/pr/protime-ai.json new file mode 100644 index 000000000000..bb62740058cf --- /dev/null +++ b/data/software/pr/protime-ai.json @@ -0,0 +1,14 @@ +{ + "slug": "protime-ai", + "name": "Protime AI", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138356829" + ], + "developers": [ + "blueSky Information GmbH" + ], + "programming_languages": [ + "TypeScript" + ] +} diff --git a/data/software/pr/proto-io.json b/data/software/pr/proto-io.json new file mode 100644 index 000000000000..d4909ee5accb --- /dev/null +++ b/data/software/pr/proto-io.json @@ -0,0 +1,9 @@ +{ + "slug": "proto-io", + "name": "Proto.io", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7251877" + ], + "release_date": "2011-01-01" +} diff --git a/data/software/pr/protobuffs.json b/data/software/pr/protobuffs.json new file mode 100644 index 000000000000..f4555a2e82c3 --- /dev/null +++ b/data/software/pr/protobuffs.json @@ -0,0 +1,8 @@ +{ + "slug": "protobuffs", + "name": "protobuffs", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q88506208" + ] +} diff --git a/data/software/pr/protomap.json b/data/software/pr/protomap.json new file mode 100644 index 000000000000..72d73e09f4cd --- /dev/null +++ b/data/software/pr/protomap.json @@ -0,0 +1,11 @@ +{ + "slug": "protomap", + "name": "Protomap", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7252036" + ], + "developers": [ + "Benjamin Cravatt" + ] +} diff --git a/data/software/pr/proton-mail.json b/data/software/pr/proton-mail.json new file mode 100644 index 000000000000..8b71ad25dbb7 --- /dev/null +++ b/data/software/pr/proton-mail.json @@ -0,0 +1,23 @@ +{ + "slug": "proton-mail", + "name": "Proton Mail", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17355735" + ], + "developers": [ + "Proton" + ], + "operating_systems": [ + "iOS", + "macOS", + "Microsoft Windows" + ], + "programming_languages": [ + "PHP" + ], + "licenses": [ + "GNU General Public License, version 3.0", + "MIT License" + ] +} diff --git a/data/software/pr/protopie.json b/data/software/pr/protopie.json new file mode 100644 index 000000000000..62ab7013c6ab --- /dev/null +++ b/data/software/pr/protopie.json @@ -0,0 +1,8 @@ +{ + "slug": "protopie", + "name": "ProtoPie", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q96400334" + ] +} diff --git a/data/software/pr/protos-ai.json b/data/software/pr/protos-ai.json new file mode 100644 index 000000000000..97d8d95d5733 --- /dev/null +++ b/data/software/pr/protos-ai.json @@ -0,0 +1,11 @@ +{ + "slug": "protos-ai", + "name": "Protos AI", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139690506" + ], + "developers": [ + "Protos Labs" + ] +} diff --git a/data/software/pr/protoshare.json b/data/software/pr/protoshare.json new file mode 100644 index 000000000000..0f077dc0cb00 --- /dev/null +++ b/data/software/pr/protoshare.json @@ -0,0 +1,8 @@ +{ + "slug": "protoshare", + "name": "ProtoShare", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7251880" + ] +} diff --git a/data/software/pr/protovis.json b/data/software/pr/protovis.json new file mode 100644 index 000000000000..53a43528d9b8 --- /dev/null +++ b/data/software/pr/protovis.json @@ -0,0 +1,8 @@ +{ + "slug": "protovis", + "name": "Protovis", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16634747" + ] +} diff --git a/data/software/pr/protowall.json b/data/software/pr/protowall.json new file mode 100644 index 000000000000..a7ca16d0e068 --- /dev/null +++ b/data/software/pr/protowall.json @@ -0,0 +1,8 @@ +{ + "slug": "protowall", + "name": "ProtoWall", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q497640" + ] +} diff --git a/data/software/pr/proudnet.json b/data/software/pr/proudnet.json new file mode 100644 index 000000000000..68d1a066358d --- /dev/null +++ b/data/software/pr/proudnet.json @@ -0,0 +1,8 @@ +{ + "slug": "proudnet", + "name": "ProudNet", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q12622126" + ] +} diff --git a/data/software/pr/prove-ai.json b/data/software/pr/prove-ai.json new file mode 100644 index 000000000000..4097e9b3a2ca --- /dev/null +++ b/data/software/pr/prove-ai.json @@ -0,0 +1,11 @@ +{ + "slug": "prove-ai", + "name": "Prove AI", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139069612" + ], + "licenses": [ + "Apache Software License 2.0" + ] +} diff --git a/data/software/pr/proverif.json b/data/software/pr/proverif.json new file mode 100644 index 000000000000..14481fd2e538 --- /dev/null +++ b/data/software/pr/proverif.json @@ -0,0 +1,11 @@ +{ + "slug": "proverif", + "name": "ProVerif", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7246703" + ], + "programming_languages": [ + "OCaml" + ] +} diff --git a/data/software/pr/proworkflow.json b/data/software/pr/proworkflow.json new file mode 100644 index 000000000000..a7c582fe02b9 --- /dev/null +++ b/data/software/pr/proworkflow.json @@ -0,0 +1,8 @@ +{ + "slug": "proworkflow", + "name": "ProWorkflow", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22035462" + ] +} diff --git a/data/software/pr/proxsuite.json b/data/software/pr/proxsuite.json new file mode 100644 index 000000000000..7f3afe44e6e9 --- /dev/null +++ b/data/software/pr/proxsuite.json @@ -0,0 +1,14 @@ +{ + "slug": "proxsuite", + "name": "ProxSuite", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122829659" + ], + "developers": [ + "Justin Carpentier" + ], + "licenses": [ + "2-clause BSD License" + ] +} diff --git a/data/software/pr/proxy-based-estimating.json b/data/software/pr/proxy-based-estimating.json new file mode 100644 index 000000000000..c38b31400c26 --- /dev/null +++ b/data/software/pr/proxy-based-estimating.json @@ -0,0 +1,8 @@ +{ + "slug": "proxy-based-estimating", + "name": "Proxy-based estimating", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7252884" + ] +} diff --git a/data/software/pr/proxychains-ng.json b/data/software/pr/proxychains-ng.json new file mode 100644 index 000000000000..65ad9fd9a759 --- /dev/null +++ b/data/software/pr/proxychains-ng.json @@ -0,0 +1,11 @@ +{ + "slug": "proxychains-ng", + "name": "Proxychains-ng", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q20012802" + ], + "licenses": [ + "GNU General Public License" + ] +} diff --git a/data/software/pr/proxyknife.json b/data/software/pr/proxyknife.json new file mode 100644 index 000000000000..52cb60afe2f5 --- /dev/null +++ b/data/software/pr/proxyknife.json @@ -0,0 +1,8 @@ +{ + "slug": "proxyknife", + "name": "Proxyknife", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76186200" + ] +} diff --git a/data/software/pr/proxytunnel.json b/data/software/pr/proxytunnel.json new file mode 100644 index 000000000000..1ecc5dd7d88d --- /dev/null +++ b/data/software/pr/proxytunnel.json @@ -0,0 +1,8 @@ +{ + "slug": "proxytunnel", + "name": "Proxytunnel", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62859893" + ] +} diff --git a/data/software/pr/pry.json b/data/software/pr/pry.json new file mode 100644 index 000000000000..32012647ba0a --- /dev/null +++ b/data/software/pr/pry.json @@ -0,0 +1,14 @@ +{ + "slug": "pry", + "name": "Pry", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7253227" + ], + "operating_systems": [ + "cross-platform" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/ps/ps-power-and-sample-size.json b/data/software/ps/ps-power-and-sample-size.json new file mode 100644 index 000000000000..21c24a34bc83 --- /dev/null +++ b/data/software/ps/ps-power-and-sample-size.json @@ -0,0 +1,12 @@ +{ + "slug": "ps-power-and-sample-size", + "name": "PS Power and Sample Size", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17145523" + ], + "developers": [ + "Walton D. Plummer, Jr.", + "William D. Dupont" + ] +} diff --git a/data/software/ps/pscad.json b/data/software/ps/pscad.json new file mode 100644 index 000000000000..e9b0b36776f2 --- /dev/null +++ b/data/software/ps/pscad.json @@ -0,0 +1,8 @@ +{ + "slug": "pscad", + "name": "PSCAD", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11801967" + ] +} diff --git a/data/software/ps/pseudoconversational-transaction.json b/data/software/ps/pseudoconversational-transaction.json new file mode 100644 index 000000000000..05b22c36d301 --- /dev/null +++ b/data/software/ps/pseudoconversational-transaction.json @@ -0,0 +1,8 @@ +{ + "slug": "pseudoconversational-transaction", + "name": "pseudoconversational transaction", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7254691" + ] +} diff --git a/data/software/ps/pseven.json b/data/software/ps/pseven.json new file mode 100644 index 000000000000..4221d334fa35 --- /dev/null +++ b/data/software/ps/pseven.json @@ -0,0 +1,8 @@ +{ + "slug": "pseven", + "name": "pSeven", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22907986" + ] +} diff --git a/data/software/ps/psf-lab.json b/data/software/ps/psf-lab.json new file mode 100644 index 000000000000..a0b996515c47 --- /dev/null +++ b/data/software/ps/psf-lab.json @@ -0,0 +1,11 @@ +{ + "slug": "psf-lab", + "name": "PSF Lab", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7120632" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/ps/pshs.json b/data/software/ps/pshs.json new file mode 100644 index 000000000000..4c61e1523bea --- /dev/null +++ b/data/software/ps/pshs.json @@ -0,0 +1,8 @@ +{ + "slug": "pshs", + "name": "pshs", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975356" + ] +} diff --git a/data/software/ps/psi-plot.json b/data/software/ps/psi-plot.json new file mode 100644 index 000000000000..d645a61f1e91 --- /dev/null +++ b/data/software/ps/psi-plot.json @@ -0,0 +1,8 @@ +{ + "slug": "psi-plot", + "name": "PSI-Plot", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7120655" + ] +} diff --git a/data/software/ps/psi-protein-classifier.json b/data/software/ps/psi-protein-classifier.json new file mode 100644 index 000000000000..0ca9651cca9a --- /dev/null +++ b/data/software/ps/psi-protein-classifier.json @@ -0,0 +1,8 @@ +{ + "slug": "psi-protein-classifier", + "name": "PSI Protein Classifier", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4046256" + ] +} diff --git a/data/software/ps/psi.json b/data/software/ps/psi.json new file mode 100644 index 000000000000..3f924925cd0a --- /dev/null +++ b/data/software/ps/psi.json @@ -0,0 +1,11 @@ +{ + "slug": "psi", + "name": "PSI", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7120661" + ], + "licenses": [ + "GNU Lesser General Public License, version 3.0" + ] +} diff --git a/data/software/ps/psim.json b/data/software/ps/psim.json new file mode 100644 index 000000000000..3c4eff229fe5 --- /dev/null +++ b/data/software/ps/psim.json @@ -0,0 +1,8 @@ +{ + "slug": "psim", + "name": "PSIM", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11239152" + ] +} diff --git a/data/software/ps/psipred.json b/data/software/ps/psipred.json new file mode 100644 index 000000000000..d1646a499da8 --- /dev/null +++ b/data/software/ps/psipred.json @@ -0,0 +1,11 @@ +{ + "slug": "psipred", + "name": "PSIPRED", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18385802" + ], + "developers": [ + "University College London" + ] +} diff --git a/data/software/ps/psmisc.json b/data/software/ps/psmisc.json new file mode 100644 index 000000000000..ee24809489cc --- /dev/null +++ b/data/software/ps/psmisc.json @@ -0,0 +1,14 @@ +{ + "slug": "psmisc", + "name": "psmisc", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62859906" + ], + "operating_systems": [ + "Unix-like operating system" + ], + "licenses": [ + "GNU General Public License, version 2.0" + ] +} diff --git a/data/software/ps/psort.json b/data/software/ps/psort.json new file mode 100644 index 000000000000..964fa2069ccc --- /dev/null +++ b/data/software/ps/psort.json @@ -0,0 +1,8 @@ +{ + "slug": "psort", + "name": "PSORT", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2044701" + ] +} diff --git a/data/software/ps/psp-media-manager.json b/data/software/ps/psp-media-manager.json new file mode 100644 index 000000000000..15cba16ee01b --- /dev/null +++ b/data/software/ps/psp-media-manager.json @@ -0,0 +1,8 @@ +{ + "slug": "psp-media-manager", + "name": "PSP Media Manager", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1876040" + ] +} diff --git a/data/software/ps/pspice.json b/data/software/ps/pspice.json new file mode 100644 index 000000000000..118afe2958a2 --- /dev/null +++ b/data/software/ps/pspice.json @@ -0,0 +1,17 @@ +{ + "slug": "pspice", + "name": "PSpice", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2665168" + ], + "developers": [ + "Cadence Design Systems" + ], + "operating_systems": [ + "Microsoft Windows" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/ps/pssh.json b/data/software/ps/pssh.json new file mode 100644 index 000000000000..c32e7a5d3f75 --- /dev/null +++ b/data/software/ps/pssh.json @@ -0,0 +1,8 @@ +{ + "slug": "pssh", + "name": "pssh", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62859951" + ] +} diff --git a/data/software/ps/pstotext.json b/data/software/ps/pstotext.json new file mode 100644 index 000000000000..bae37c6b08b0 --- /dev/null +++ b/data/software/ps/pstotext.json @@ -0,0 +1,8 @@ +{ + "slug": "pstotext", + "name": "pstotext", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62859973" + ] +} diff --git a/data/software/ps/psx.json b/data/software/ps/psx.json new file mode 100644 index 000000000000..98684f6883d9 --- /dev/null +++ b/data/software/ps/psx.json @@ -0,0 +1,8 @@ +{ + "slug": "psx", + "name": "pSX", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2006540" + ] +} diff --git a/data/software/ps/psyc.json b/data/software/ps/psyc.json new file mode 100644 index 000000000000..43bd4bac8a48 --- /dev/null +++ b/data/software/ps/psyc.json @@ -0,0 +1,11 @@ +{ + "slug": "psyc", + "name": "psyc", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q96376124" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/ps/psychedelia.json b/data/software/ps/psychedelia.json new file mode 100644 index 000000000000..5b6dd42473dc --- /dev/null +++ b/data/software/ps/psychedelia.json @@ -0,0 +1,14 @@ +{ + "slug": "psychedelia", + "name": "Psychedelia", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7256201" + ], + "developers": [ + "Jeff Minter" + ], + "programming_languages": [ + "assembly language" + ] +} diff --git a/data/software/ps/psychojs.json b/data/software/ps/psychojs.json new file mode 100644 index 000000000000..2b3a2e2adcaf --- /dev/null +++ b/data/software/ps/psychojs.json @@ -0,0 +1,11 @@ +{ + "slug": "psychojs", + "name": "PsychoJS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113050341" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/ps/psychosynth.json b/data/software/ps/psychosynth.json new file mode 100644 index 000000000000..223a088a2008 --- /dev/null +++ b/data/software/ps/psychosynth.json @@ -0,0 +1,8 @@ +{ + "slug": "psychosynth", + "name": "Psychosynth", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76186222" + ] +} diff --git a/data/software/ps/psychtoolbox-for-matlab.json b/data/software/ps/psychtoolbox-for-matlab.json new file mode 100644 index 000000000000..8f137d69fbd1 --- /dev/null +++ b/data/software/ps/psychtoolbox-for-matlab.json @@ -0,0 +1,8 @@ +{ + "slug": "psychtoolbox-for-matlab", + "name": "Psychtoolbox for MATLAB", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18215965" + ] +} diff --git a/data/software/ps/psynth.json b/data/software/ps/psynth.json new file mode 100644 index 000000000000..6d73c6323c7d --- /dev/null +++ b/data/software/ps/psynth.json @@ -0,0 +1,8 @@ +{ + "slug": "psynth", + "name": "Psynth", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138492912" + ] +} diff --git a/data/software/ps/psytoolkit.json b/data/software/ps/psytoolkit.json new file mode 100644 index 000000000000..167fe9210324 --- /dev/null +++ b/data/software/ps/psytoolkit.json @@ -0,0 +1,8 @@ +{ + "slug": "psytoolkit", + "name": "PsyToolkit", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7256173" + ] +} diff --git a/data/software/pt/ptk-forensics.json b/data/software/pt/ptk-forensics.json new file mode 100644 index 000000000000..5c75fff4792c --- /dev/null +++ b/data/software/pt/ptk-forensics.json @@ -0,0 +1,8 @@ +{ + "slug": "ptk-forensics", + "name": "PTK Forensics", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7120979" + ] +} diff --git a/data/software/pt/ptolemaic.json b/data/software/pt/ptolemaic.json new file mode 100644 index 000000000000..ba19992f2d6c --- /dev/null +++ b/data/software/pt/ptolemaic.json @@ -0,0 +1,8 @@ +{ + "slug": "ptolemaic", + "name": "Ptolemaic", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084505" + ] +} diff --git a/data/software/pu/public-inbox.json b/data/software/pu/public-inbox.json new file mode 100644 index 000000000000..73414e5b7b86 --- /dev/null +++ b/data/software/pu/public-inbox.json @@ -0,0 +1,8 @@ +{ + "slug": "public-inbox", + "name": "public-inbox", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124309035" + ] +} diff --git a/data/software/pu/public-sector-credit-framework.json b/data/software/pu/public-sector-credit-framework.json new file mode 100644 index 000000000000..583f8f1b1aec --- /dev/null +++ b/data/software/pu/public-sector-credit-framework.json @@ -0,0 +1,8 @@ +{ + "slug": "public-sector-credit-framework", + "name": "Public Sector Credit Framework", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7257586" + ] +} diff --git a/data/software/pu/publii.json b/data/software/pu/publii.json new file mode 100644 index 000000000000..3165ca697565 --- /dev/null +++ b/data/software/pu/publii.json @@ -0,0 +1,15 @@ +{ + "slug": "publii", + "name": "Publii", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138816777" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "licenses": [ + "open-source software" + ] +} diff --git a/data/software/pu/publishing-skills.json b/data/software/pu/publishing-skills.json new file mode 100644 index 000000000000..b20291cf0d6a --- /dev/null +++ b/data/software/pu/publishing-skills.json @@ -0,0 +1,14 @@ +{ + "slug": "publishing-skills", + "name": "publishing-skills", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139962066" + ], + "developers": [ + "AutomateLab" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/pu/pubsoft.json b/data/software/pu/pubsoft.json new file mode 100644 index 000000000000..3c7e200b7b91 --- /dev/null +++ b/data/software/pu/pubsoft.json @@ -0,0 +1,9 @@ +{ + "slug": "pubsoft", + "name": "Pubsoft", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17146209" + ], + "release_date": "2012-01-01" +} diff --git a/data/software/pu/puff.json b/data/software/pu/puff.json new file mode 100644 index 000000000000..c8e2b3c8a172 --- /dev/null +++ b/data/software/pu/puff.json @@ -0,0 +1,14 @@ +{ + "slug": "puff", + "name": "Puff", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q12844034" + ], + "operating_systems": [ + "Microsoft Windows" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/pu/pulpmotion.json b/data/software/pu/pulpmotion.json new file mode 100644 index 000000000000..ead7f46e1912 --- /dev/null +++ b/data/software/pu/pulpmotion.json @@ -0,0 +1,8 @@ +{ + "slug": "pulpmotion", + "name": "Pulpmotion", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1524465" + ] +} diff --git a/data/software/pu/pulse-q140247536.json b/data/software/pu/pulse-q140247536.json new file mode 100644 index 000000000000..237ed60d38a9 --- /dev/null +++ b/data/software/pu/pulse-q140247536.json @@ -0,0 +1,11 @@ +{ + "slug": "pulse-q140247536", + "name": "PULSE", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140247536" + ], + "developers": [ + "synetra GmbH" + ] +} diff --git a/data/software/pu/pulse.json b/data/software/pu/pulse.json new file mode 100644 index 000000000000..cf10bc245c14 --- /dev/null +++ b/data/software/pu/pulse.json @@ -0,0 +1,9 @@ +{ + "slug": "pulse", + "name": "PULSE", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7121086" + ], + "release_date": "2007-01-01" +} diff --git a/data/software/pu/pulseeffects.json b/data/software/pu/pulseeffects.json new file mode 100644 index 000000000000..ae40757ffc01 --- /dev/null +++ b/data/software/pu/pulseeffects.json @@ -0,0 +1,11 @@ +{ + "slug": "pulseeffects", + "name": "PulseEffects", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q65081323" + ], + "licenses": [ + "GNU General Public License, version 3.0" + ] +} diff --git a/data/software/pu/pulsepoint.json b/data/software/pu/pulsepoint.json new file mode 100644 index 000000000000..05c0b27ef4de --- /dev/null +++ b/data/software/pu/pulsepoint.json @@ -0,0 +1,12 @@ +{ + "slug": "pulsepoint", + "name": "PulsePoint", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q19866527" + ], + "release_date": "2011-01-01", + "developers": [ + "Workday, Inc." + ] +} diff --git a/data/software/pu/pulsonix.json b/data/software/pu/pulsonix.json new file mode 100644 index 000000000000..a88feb46e515 --- /dev/null +++ b/data/software/pu/pulsonix.json @@ -0,0 +1,8 @@ +{ + "slug": "pulsonix", + "name": "Pulsonix", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17143949" + ] +} diff --git a/data/software/pu/puma-scan.json b/data/software/pu/puma-scan.json new file mode 100644 index 000000000000..300e66706072 --- /dev/null +++ b/data/software/pu/puma-scan.json @@ -0,0 +1,18 @@ +{ + "slug": "puma-scan", + "name": "Puma Scan", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138795565" + ], + "developers": [ + "Puma Security" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "licenses": [ + "Mozilla Public License, version 2.0" + ] +} diff --git a/data/software/pu/pumpic.json b/data/software/pu/pumpic.json new file mode 100644 index 000000000000..2a2260ed93df --- /dev/null +++ b/data/software/pu/pumpic.json @@ -0,0 +1,14 @@ +{ + "slug": "pumpic", + "name": "Pumpic", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q24966527" + ], + "operating_systems": [ + "iOS" + ], + "licenses": [ + "end-user license agreement" + ] +} diff --git a/data/software/pu/pumplinx.json b/data/software/pu/pumplinx.json new file mode 100644 index 000000000000..e334ea858fc7 --- /dev/null +++ b/data/software/pu/pumplinx.json @@ -0,0 +1,11 @@ +{ + "slug": "pumplinx", + "name": "Pumplinx", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7259860" + ], + "publishers": [ + "Simerics" + ] +} diff --git a/data/software/pu/punchcad.json b/data/software/pu/punchcad.json new file mode 100644 index 000000000000..ebdb2da5231a --- /dev/null +++ b/data/software/pu/punchcad.json @@ -0,0 +1,8 @@ +{ + "slug": "punchcad", + "name": "PunchCAD", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28450898" + ] +} diff --git a/data/software/pu/punchscan.json b/data/software/pu/punchscan.json new file mode 100644 index 000000000000..fdcdbbd5371b --- /dev/null +++ b/data/software/pu/punchscan.json @@ -0,0 +1,11 @@ +{ + "slug": "punchscan", + "name": "Punchscan", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2118343" + ], + "programming_languages": [ + "Java" + ] +} diff --git a/data/software/pu/pundit.json b/data/software/pu/pundit.json new file mode 100644 index 000000000000..f5799961fd2b --- /dev/null +++ b/data/software/pu/pundit.json @@ -0,0 +1,8 @@ +{ + "slug": "pundit", + "name": "Pundit", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084506" + ] +} diff --git a/data/software/pu/pungi.json b/data/software/pu/pungi.json new file mode 100644 index 000000000000..929f2778fb58 --- /dev/null +++ b/data/software/pu/pungi.json @@ -0,0 +1,8 @@ +{ + "slug": "pungi", + "name": "Pungi", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7260167" + ] +} diff --git a/data/software/pu/punie.json b/data/software/pu/punie.json new file mode 100644 index 000000000000..065bcb81ecc0 --- /dev/null +++ b/data/software/pu/punie.json @@ -0,0 +1,11 @@ +{ + "slug": "punie", + "name": "Punie", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7260203" + ], + "developers": [ + "Allison Randal" + ] +} diff --git a/data/software/pu/punjabi-morphological-analyzer.json b/data/software/pu/punjabi-morphological-analyzer.json new file mode 100644 index 000000000000..97d5ba87afdc --- /dev/null +++ b/data/software/pu/punjabi-morphological-analyzer.json @@ -0,0 +1,8 @@ +{ + "slug": "punjabi-morphological-analyzer", + "name": "Punjabi Morphological Analyzer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113557034" + ] +} diff --git a/data/software/pu/pupasuite.json b/data/software/pu/pupasuite.json new file mode 100644 index 000000000000..ef85373eda24 --- /dev/null +++ b/data/software/pu/pupasuite.json @@ -0,0 +1,8 @@ +{ + "slug": "pupasuite", + "name": "PupaSuite", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7260650" + ] +} diff --git a/data/software/pu/purevpn.json b/data/software/pu/purevpn.json new file mode 100644 index 000000000000..4557d2952a20 --- /dev/null +++ b/data/software/pu/purevpn.json @@ -0,0 +1,12 @@ +{ + "slug": "purevpn", + "name": "PureVPN", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28957046" + ], + "release_date": "2006-01-01", + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/pu/purplera1n.json b/data/software/pu/purplera1n.json new file mode 100644 index 000000000000..6a9292c03d8d --- /dev/null +++ b/data/software/pu/purplera1n.json @@ -0,0 +1,17 @@ +{ + "slug": "purplera1n", + "name": "purplera1n", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7261492" + ], + "developers": [ + "George Hotz" + ], + "operating_systems": [ + "Microsoft Windows" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/pu/puter.json b/data/software/pu/puter.json new file mode 100644 index 000000000000..08a808695068 --- /dev/null +++ b/data/software/pu/puter.json @@ -0,0 +1,8 @@ +{ + "slug": "puter", + "name": "Puter", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126350902" + ] +} diff --git a/data/software/pu/puttygen.json b/data/software/pu/puttygen.json new file mode 100644 index 000000000000..c0f539f2dc03 --- /dev/null +++ b/data/software/pu/puttygen.json @@ -0,0 +1,12 @@ +{ + "slug": "puttygen", + "name": "Puttygen", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q91558838" + ], + "release_date": "2000-12-14", + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/pv/pvserver.json b/data/software/pv/pvserver.json new file mode 100644 index 000000000000..4c0bddaf96dd --- /dev/null +++ b/data/software/pv/pvserver.json @@ -0,0 +1,8 @@ +{ + "slug": "pvserver", + "name": "Pvserver", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7262746" + ] +} diff --git a/data/software/pw/pwclient.json b/data/software/pw/pwclient.json new file mode 100644 index 000000000000..74459696344e --- /dev/null +++ b/data/software/pw/pwclient.json @@ -0,0 +1,8 @@ +{ + "slug": "pwclient", + "name": "pwclient", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975358" + ] +} diff --git a/data/software/pw/pwdump.json b/data/software/pw/pwdump.json new file mode 100644 index 000000000000..fa3e1e8f1057 --- /dev/null +++ b/data/software/pw/pwdump.json @@ -0,0 +1,8 @@ +{ + "slug": "pwdump", + "name": "pwdump", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1951725" + ] +} diff --git a/data/software/pw/pwman3.json b/data/software/pw/pwman3.json new file mode 100644 index 000000000000..5061f4927669 --- /dev/null +++ b/data/software/pw/pwman3.json @@ -0,0 +1,8 @@ +{ + "slug": "pwman3", + "name": "Pwman3", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62859979" + ] +} diff --git a/data/software/pw/pwnagetool.json b/data/software/pw/pwnagetool.json new file mode 100644 index 000000000000..eb7a7bdcb24c --- /dev/null +++ b/data/software/pw/pwnagetool.json @@ -0,0 +1,17 @@ +{ + "slug": "pwnagetool", + "name": "PwnageTool", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7262786" + ], + "operating_systems": [ + "macOS" + ], + "programming_languages": [ + "Objective-C" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/pw/pwnagotchi.json b/data/software/pw/pwnagotchi.json new file mode 100644 index 000000000000..9e1f4cbf0527 --- /dev/null +++ b/data/software/pw/pwnagotchi.json @@ -0,0 +1,9 @@ +{ + "slug": "pwnagotchi", + "name": "Pwnagotchi", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115063020" + ], + "release_date": "2019-09-19" +} diff --git a/data/software/pw/pwpaw.json b/data/software/pw/pwpaw.json new file mode 100644 index 000000000000..5ceb25f8cd72 --- /dev/null +++ b/data/software/pw/pwpaw.json @@ -0,0 +1,8 @@ +{ + "slug": "pwpaw", + "name": "Pwpaw", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7262785" + ] +} diff --git a/data/software/px/pxtone.json b/data/software/px/pxtone.json new file mode 100644 index 000000000000..77c217c2b4ea --- /dev/null +++ b/data/software/px/pxtone.json @@ -0,0 +1,14 @@ +{ + "slug": "pxtone", + "name": "PxTone", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7262790" + ], + "developers": [ + "Daisuke Amaya" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/px/pxz.json b/data/software/px/pxz.json new file mode 100644 index 000000000000..88ad374b035b --- /dev/null +++ b/data/software/px/pxz.json @@ -0,0 +1,8 @@ +{ + "slug": "pxz", + "name": "pxz", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975359" + ] +} diff --git a/data/software/py/pybugz.json b/data/software/py/pybugz.json new file mode 100644 index 000000000000..8dc84c888c53 --- /dev/null +++ b/data/software/py/pybugz.json @@ -0,0 +1,8 @@ +{ + "slug": "pybugz", + "name": "pybugz", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975360" + ] +} diff --git a/data/software/py/pychart.json b/data/software/py/pychart.json new file mode 100644 index 000000000000..d2cf88085c85 --- /dev/null +++ b/data/software/py/pychart.json @@ -0,0 +1,8 @@ +{ + "slug": "pychart", + "name": "pychart", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065319" + ] +} diff --git a/data/software/py/pychecker.json b/data/software/py/pychecker.json new file mode 100644 index 000000000000..efdea79f211d --- /dev/null +++ b/data/software/py/pychecker.json @@ -0,0 +1,8 @@ +{ + "slug": "pychecker", + "name": "PyChecker", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62860000" + ] +} diff --git a/data/software/py/pychroot.json b/data/software/py/pychroot.json new file mode 100644 index 000000000000..001bcad15595 --- /dev/null +++ b/data/software/py/pychroot.json @@ -0,0 +1,11 @@ +{ + "slug": "pychroot", + "name": "pychroot", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975361" + ], + "licenses": [ + "3-clause BSD License" + ] +} diff --git a/data/software/py/pycollada.json b/data/software/py/pycollada.json new file mode 100644 index 000000000000..b6d455545cb4 --- /dev/null +++ b/data/software/py/pycollada.json @@ -0,0 +1,8 @@ +{ + "slug": "pycollada", + "name": "pycollada", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975362" + ] +} diff --git a/data/software/py/pyconfigure.json b/data/software/py/pyconfigure.json new file mode 100644 index 000000000000..2206aebb220f --- /dev/null +++ b/data/software/py/pyconfigure.json @@ -0,0 +1,8 @@ +{ + "slug": "pyconfigure", + "name": "Pyconfigure", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76186243" + ] +} diff --git a/data/software/py/pycoon.json b/data/software/py/pycoon.json new file mode 100644 index 000000000000..4d4e677dad65 --- /dev/null +++ b/data/software/py/pycoon.json @@ -0,0 +1,8 @@ +{ + "slug": "pycoon", + "name": "Pycoon", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084507" + ] +} diff --git a/data/software/py/pycuda.json b/data/software/py/pycuda.json new file mode 100644 index 000000000000..87a515436009 --- /dev/null +++ b/data/software/py/pycuda.json @@ -0,0 +1,8 @@ +{ + "slug": "pycuda", + "name": "pycuda", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975363" + ] +} diff --git a/data/software/py/pydarts.json b/data/software/py/pydarts.json new file mode 100644 index 000000000000..ab08976fbee2 --- /dev/null +++ b/data/software/py/pydarts.json @@ -0,0 +1,11 @@ +{ + "slug": "pydarts", + "name": "pyDarts", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q104245076" + ], + "licenses": [ + "GNU General Public License, version 3.0" + ] +} diff --git a/data/software/py/pydecomp.json b/data/software/py/pydecomp.json new file mode 100644 index 000000000000..00d855f8388f --- /dev/null +++ b/data/software/py/pydecomp.json @@ -0,0 +1,8 @@ +{ + "slug": "pydecomp", + "name": "pydecomp", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975364" + ] +} diff --git a/data/software/py/pydelta.json b/data/software/py/pydelta.json new file mode 100644 index 000000000000..5d264638281f --- /dev/null +++ b/data/software/py/pydelta.json @@ -0,0 +1,8 @@ +{ + "slug": "pydelta", + "name": "PyDelta", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087701" + ] +} diff --git a/data/software/py/pydf.json b/data/software/py/pydf.json new file mode 100644 index 000000000000..9da014d3e7a8 --- /dev/null +++ b/data/software/py/pydf.json @@ -0,0 +1,8 @@ +{ + "slug": "pydf", + "name": "pydf", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62860009" + ] +} diff --git a/data/software/py/pyfa.json b/data/software/py/pyfa.json new file mode 100644 index 000000000000..28d418337c4f --- /dev/null +++ b/data/software/py/pyfa.json @@ -0,0 +1,8 @@ +{ + "slug": "pyfa", + "name": "pyfa", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975365" + ] +} diff --git a/data/software/py/pygmalion-s-code.json b/data/software/py/pygmalion-s-code.json new file mode 100644 index 000000000000..cc42cc86ac3d --- /dev/null +++ b/data/software/py/pygmalion-s-code.json @@ -0,0 +1,8 @@ +{ + "slug": "pygmalion-s-code", + "name": "Pygmalion’s code", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087702" + ] +} diff --git a/data/software/py/pygmt-a-python-interface-for-the-generic-mapping-tools.json b/data/software/py/pygmt-a-python-interface-for-the-generic-mapping-tools.json new file mode 100644 index 000000000000..9664d1f6f5f1 --- /dev/null +++ b/data/software/py/pygmt-a-python-interface-for-the-generic-mapping-tools.json @@ -0,0 +1,9 @@ +{ + "slug": "pygmt-a-python-interface-for-the-generic-mapping-tools", + "name": "PyGMT: A Python interface for the Generic Mapping Tools", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q133887972" + ], + "release_date": "2025-03-31" +} diff --git a/data/software/py/pygpg.json b/data/software/py/pygpg.json new file mode 100644 index 000000000000..6b385976bfd3 --- /dev/null +++ b/data/software/py/pygpg.json @@ -0,0 +1,8 @@ +{ + "slug": "pygpg", + "name": "pyGPG", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975366" + ] +} diff --git a/data/software/py/pyh2o.json b/data/software/py/pyh2o.json new file mode 100644 index 000000000000..a1395cbbc733 --- /dev/null +++ b/data/software/py/pyh2o.json @@ -0,0 +1,8 @@ +{ + "slug": "pyh2o", + "name": "pyh2o", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975367" + ] +} diff --git a/data/software/py/pyktok.json b/data/software/py/pyktok.json new file mode 100644 index 000000000000..9f8ac185fd66 --- /dev/null +++ b/data/software/py/pyktok.json @@ -0,0 +1,14 @@ +{ + "slug": "pyktok", + "name": "pyktok", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116702030" + ], + "programming_languages": [ + "Python" + ], + "licenses": [ + "3-clause BSD License" + ] +} diff --git a/data/software/py/pykwalify.json b/data/software/py/pykwalify.json new file mode 100644 index 000000000000..fa6ed4388855 --- /dev/null +++ b/data/software/py/pykwalify.json @@ -0,0 +1,11 @@ +{ + "slug": "pykwalify", + "name": "pykwalify", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975368" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/py/pymacs.json b/data/software/py/pymacs.json new file mode 100644 index 000000000000..6c220daef7da --- /dev/null +++ b/data/software/py/pymacs.json @@ -0,0 +1,8 @@ +{ + "slug": "pymacs", + "name": "Pymacs", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62860033" + ] +} diff --git a/data/software/py/pymetamap.json b/data/software/py/pymetamap.json new file mode 100644 index 000000000000..ed4cf9789a3b --- /dev/null +++ b/data/software/py/pymetamap.json @@ -0,0 +1,14 @@ +{ + "slug": "pymetamap", + "name": "pymetamap", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135641314" + ], + "programming_languages": [ + "Python" + ], + "licenses": [ + "Apache Software License 2.0" + ] +} diff --git a/data/software/py/pymountboot.json b/data/software/py/pymountboot.json new file mode 100644 index 000000000000..c8c75fa35196 --- /dev/null +++ b/data/software/py/pymountboot.json @@ -0,0 +1,8 @@ +{ + "slug": "pymountboot", + "name": "pymountboot", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975369" + ] +} diff --git a/data/software/py/pynag.json b/data/software/py/pynag.json new file mode 100644 index 000000000000..828e8a97a82c --- /dev/null +++ b/data/software/py/pynag.json @@ -0,0 +1,8 @@ +{ + "slug": "pynag", + "name": "pynag", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62860041" + ] +} diff --git a/data/software/py/pynguin.json b/data/software/py/pynguin.json new file mode 100644 index 000000000000..584678455e27 --- /dev/null +++ b/data/software/py/pynguin.json @@ -0,0 +1,11 @@ +{ + "slug": "pynguin", + "name": "pynguin", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127485546" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/py/pyopencl.json b/data/software/py/pyopencl.json new file mode 100644 index 000000000000..f7aa24fc2cad --- /dev/null +++ b/data/software/py/pyopencl.json @@ -0,0 +1,8 @@ +{ + "slug": "pyopencl", + "name": "pyopencl", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975371" + ] +} diff --git a/data/software/py/pyorcidator.json b/data/software/py/pyorcidator.json new file mode 100644 index 000000000000..58a5272502a8 --- /dev/null +++ b/data/software/py/pyorcidator.json @@ -0,0 +1,8 @@ +{ + "slug": "pyorcidator", + "name": "pyorcidator", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113327576" + ] +} diff --git a/data/software/py/pypax.json b/data/software/py/pypax.json new file mode 100644 index 000000000000..3a84d3f8beb2 --- /dev/null +++ b/data/software/py/pypax.json @@ -0,0 +1,8 @@ +{ + "slug": "pypax", + "name": "pypax", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975372" + ] +} diff --git a/data/software/py/pyrqlite.json b/data/software/py/pyrqlite.json new file mode 100644 index 000000000000..573510c390e2 --- /dev/null +++ b/data/software/py/pyrqlite.json @@ -0,0 +1,11 @@ +{ + "slug": "pyrqlite", + "name": "pyrqlite", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975373" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/py/pyrus.json b/data/software/py/pyrus.json new file mode 100644 index 000000000000..fc80fc37a205 --- /dev/null +++ b/data/software/py/pyrus.json @@ -0,0 +1,8 @@ +{ + "slug": "pyrus", + "name": "Pyrus", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25203231" + ] +} diff --git a/data/software/py/pyscan.json b/data/software/py/pyscan.json new file mode 100644 index 000000000000..09fdc8b44507 --- /dev/null +++ b/data/software/py/pyscan.json @@ -0,0 +1,14 @@ +{ + "slug": "pyscan", + "name": "Pyscan", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139649616" + ], + "developers": [ + "Aswin S" + ], + "operating_systems": [ + "cross-platform" + ] +} diff --git a/data/software/py/pysmssend.json b/data/software/py/pysmssend.json new file mode 100644 index 000000000000..ca8a6180ab2d --- /dev/null +++ b/data/software/py/pysmssend.json @@ -0,0 +1,8 @@ +{ + "slug": "pysmssend", + "name": "pysmssend", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975374" + ] +} diff --git a/data/software/py/pysolfc.json b/data/software/py/pysolfc.json new file mode 100644 index 000000000000..723fd5608de0 --- /dev/null +++ b/data/software/py/pysolfc.json @@ -0,0 +1,8 @@ +{ + "slug": "pysolfc", + "name": "PySolFC", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62860052" + ] +} diff --git a/data/software/py/pysrt.json b/data/software/py/pysrt.json new file mode 100644 index 000000000000..a64973fb9022 --- /dev/null +++ b/data/software/py/pysrt.json @@ -0,0 +1,8 @@ +{ + "slug": "pysrt", + "name": "pysrt", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975375" + ] +} diff --git a/data/software/py/pyswisseph.json b/data/software/py/pyswisseph.json new file mode 100644 index 000000000000..6ba5015a8bbe --- /dev/null +++ b/data/software/py/pyswisseph.json @@ -0,0 +1,8 @@ +{ + "slug": "pyswisseph", + "name": "pyswisseph", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975376" + ] +} diff --git a/data/software/py/pythagoras-abm.json b/data/software/py/pythagoras-abm.json new file mode 100644 index 000000000000..ce86411e0b22 --- /dev/null +++ b/data/software/py/pythagoras-abm.json @@ -0,0 +1,8 @@ +{ + "slug": "pythagoras-abm", + "name": "Pythagoras ABM", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7263839" + ] +} diff --git a/data/software/py/python-gammu.json b/data/software/py/python-gammu.json new file mode 100644 index 000000000000..b54e0f05dc60 --- /dev/null +++ b/data/software/py/python-gammu.json @@ -0,0 +1,8 @@ +{ + "slug": "python-gammu", + "name": "python-gammu", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62860059" + ] +} diff --git a/data/software/py/python-igraph.json b/data/software/py/python-igraph.json new file mode 100644 index 000000000000..43ad715d3560 --- /dev/null +++ b/data/software/py/python-igraph.json @@ -0,0 +1,11 @@ +{ + "slug": "python-igraph", + "name": "python-igraph", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107386129" + ], + "licenses": [ + "GNU General Public License, version 2.0 or later" + ] +} diff --git a/data/software/py/python-iptables.json b/data/software/py/python-iptables.json new file mode 100644 index 000000000000..fa554dc6cb76 --- /dev/null +++ b/data/software/py/python-iptables.json @@ -0,0 +1,8 @@ +{ + "slug": "python-iptables", + "name": "python-iptables", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62860067" + ] +} diff --git a/data/software/py/python-ldap.json b/data/software/py/python-ldap.json new file mode 100644 index 000000000000..940c56b5d209 --- /dev/null +++ b/data/software/py/python-ldap.json @@ -0,0 +1,8 @@ +{ + "slug": "python-ldap", + "name": "python-ldap", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975381" + ] +} diff --git a/data/software/py/python-lzo.json b/data/software/py/python-lzo.json new file mode 100644 index 000000000000..293b433d33dc --- /dev/null +++ b/data/software/py/python-lzo.json @@ -0,0 +1,11 @@ +{ + "slug": "python-lzo", + "name": "Python-LZO", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62860073" + ], + "licenses": [ + "GNU General Public License, version 2.0" + ] +} diff --git a/data/software/py/python-mhash.json b/data/software/py/python-mhash.json new file mode 100644 index 000000000000..a58ffef62344 --- /dev/null +++ b/data/software/py/python-mhash.json @@ -0,0 +1,8 @@ +{ + "slug": "python-mhash", + "name": "python-mhash", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62861009" + ] +} diff --git a/data/software/py/python-orocos-kdl.json b/data/software/py/python-orocos-kdl.json new file mode 100644 index 000000000000..73041700d29c --- /dev/null +++ b/data/software/py/python-orocos-kdl.json @@ -0,0 +1,8 @@ +{ + "slug": "python-orocos-kdl", + "name": "python_orocos_kdl", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975378" + ] +} diff --git a/data/software/py/python-ptrace.json b/data/software/py/python-ptrace.json new file mode 100644 index 000000000000..6b00df6b765a --- /dev/null +++ b/data/software/py/python-ptrace.json @@ -0,0 +1,8 @@ +{ + "slug": "python-ptrace", + "name": "python-ptrace", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62860086" + ] +} diff --git a/data/software/py/python-stdnum.json b/data/software/py/python-stdnum.json new file mode 100644 index 000000000000..819baf0f02c4 --- /dev/null +++ b/data/software/py/python-stdnum.json @@ -0,0 +1,8 @@ +{ + "slug": "python-stdnum", + "name": "python-stdnum", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62860098" + ] +} diff --git a/data/software/py/python-tools-for-text-analysis.json b/data/software/py/python-tools-for-text-analysis.json new file mode 100644 index 000000000000..80940e7d6768 --- /dev/null +++ b/data/software/py/python-tools-for-text-analysis.json @@ -0,0 +1,8 @@ +{ + "slug": "python-tools-for-text-analysis", + "name": "Python Tools for Text-Analysis", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087703" + ] +} diff --git a/data/software/py/python-updater.json b/data/software/py/python-updater.json new file mode 100644 index 000000000000..92038b52c17d --- /dev/null +++ b/data/software/py/python-updater.json @@ -0,0 +1,8 @@ +{ + "slug": "python-updater", + "name": "python-updater", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975386" + ] +} diff --git a/data/software/py/python3-termcolor.json b/data/software/py/python3-termcolor.json new file mode 100644 index 000000000000..0e7e7d5a354e --- /dev/null +++ b/data/software/py/python3-termcolor.json @@ -0,0 +1,8 @@ +{ + "slug": "python3-termcolor", + "name": "python3-termcolor", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106102073" + ] +} diff --git a/data/software/py/pytools.json b/data/software/py/pytools.json new file mode 100644 index 000000000000..14becc9f36d2 --- /dev/null +++ b/data/software/py/pytools.json @@ -0,0 +1,8 @@ +{ + "slug": "pytools", + "name": "pytools", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975387" + ] +} diff --git a/data/software/py/pyutil.json b/data/software/py/pyutil.json new file mode 100644 index 000000000000..55902150ed38 --- /dev/null +++ b/data/software/py/pyutil.json @@ -0,0 +1,8 @@ +{ + "slug": "pyutil", + "name": "pyutil", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63064981" + ] +} diff --git a/data/software/py/pyx.json b/data/software/py/pyx.json new file mode 100644 index 000000000000..6366e0c37f89 --- /dev/null +++ b/data/software/py/pyx.json @@ -0,0 +1,11 @@ +{ + "slug": "pyx", + "name": "PyX", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28457485" + ], + "programming_languages": [ + "Python" + ] +} diff --git a/data/software/py/pyxab.json b/data/software/py/pyxab.json new file mode 100644 index 000000000000..7057828d1cbe --- /dev/null +++ b/data/software/py/pyxab.json @@ -0,0 +1,11 @@ +{ + "slug": "pyxab", + "name": "PyXAB", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127485805" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/py/pyzor.json b/data/software/py/pyzor.json new file mode 100644 index 000000000000..1357f1349047 --- /dev/null +++ b/data/software/py/pyzor.json @@ -0,0 +1,8 @@ +{ + "slug": "pyzor", + "name": "Pyzor", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62860096" + ] +} diff --git a/data/software/pz/pzflex.json b/data/software/pz/pzflex.json new file mode 100644 index 000000000000..8d424747c41a --- /dev/null +++ b/data/software/pz/pzflex.json @@ -0,0 +1,11 @@ +{ + "slug": "pzflex", + "name": "PZFlex", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7121223" + ], + "developers": [ + "Weidlinger Associates" + ] +} diff --git a/data/software/q-/q-systems.json b/data/software/q-/q-systems.json new file mode 100644 index 000000000000..9b4cc09a3420 --- /dev/null +++ b/data/software/q-/q-systems.json @@ -0,0 +1,8 @@ +{ + "slug": "q-systems", + "name": "Q-systems", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7265313" + ] +} diff --git a/data/software/q/q.json b/data/software/q/q.json new file mode 100644 index 000000000000..6944ea80a871 --- /dev/null +++ b/data/software/q/q.json @@ -0,0 +1,14 @@ +{ + "slug": "q", + "name": "Q", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25345889" + ], + "programming_languages": [ + "Fortran" + ], + "licenses": [ + "GNU General Public License, version 2.0" + ] +} diff --git a/data/software/q4/q4wine.json b/data/software/q4/q4wine.json new file mode 100644 index 000000000000..c0bb9b648412 --- /dev/null +++ b/data/software/q4/q4wine.json @@ -0,0 +1,8 @@ +{ + "slug": "q4wine", + "name": "Q4Wine", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62860102" + ] +} diff --git a/data/software/qa/qanda.json b/data/software/qa/qanda.json new file mode 100644 index 000000000000..c745f69e65f3 --- /dev/null +++ b/data/software/qa/qanda.json @@ -0,0 +1,8 @@ +{ + "slug": "qanda", + "name": "QANDA", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q104908192" + ] +} diff --git a/data/software/qd/qda-miner.json b/data/software/qd/qda-miner.json new file mode 100644 index 000000000000..efc508eec9b3 --- /dev/null +++ b/data/software/qd/qda-miner.json @@ -0,0 +1,18 @@ +{ + "slug": "qda-miner", + "name": "QDA Miner", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3412300" + ], + "release_date": "2004-01-01", + "developers": [ + "Provalis Research" + ], + "operating_systems": [ + "Microsoft Windows" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/qd/qdacity.json b/data/software/qd/qdacity.json new file mode 100644 index 000000000000..317a1348a9ce --- /dev/null +++ b/data/software/qd/qdacity.json @@ -0,0 +1,8 @@ +{ + "slug": "qdacity", + "name": "QDAcity", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136564652" + ] +} diff --git a/data/software/qd/qdaminer.json b/data/software/qd/qdaminer.json new file mode 100644 index 000000000000..6f972e930727 --- /dev/null +++ b/data/software/qd/qdaminer.json @@ -0,0 +1,14 @@ +{ + "slug": "qdaminer", + "name": "QDAminer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105229758" + ], + "operating_systems": [ + "Microsoft Windows" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/qd/qdevicemonitor.json b/data/software/qd/qdevicemonitor.json new file mode 100644 index 000000000000..510768beed6c --- /dev/null +++ b/data/software/qd/qdevicemonitor.json @@ -0,0 +1,8 @@ +{ + "slug": "qdevicemonitor", + "name": "qdevicemonitor", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975389" + ] +} diff --git a/data/software/qd/qdriverstation.json b/data/software/qd/qdriverstation.json new file mode 100644 index 000000000000..41edf69cd2f0 --- /dev/null +++ b/data/software/qd/qdriverstation.json @@ -0,0 +1,11 @@ +{ + "slug": "qdriverstation", + "name": "QDriverStation", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25304935" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/qe/qeep.json b/data/software/qe/qeep.json new file mode 100644 index 000000000000..f0ef372e892e --- /dev/null +++ b/data/software/qe/qeep.json @@ -0,0 +1,11 @@ +{ + "slug": "qeep", + "name": "Qeep", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q930064" + ], + "programming_languages": [ + "Java" + ] +} diff --git a/data/software/qe/qemu-guest-agent.json b/data/software/qe/qemu-guest-agent.json new file mode 100644 index 000000000000..6c109ea1df1a --- /dev/null +++ b/data/software/qe/qemu-guest-agent.json @@ -0,0 +1,8 @@ +{ + "slug": "qemu-guest-agent", + "name": "qemu-guest-agent", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975391" + ] +} diff --git a/data/software/qe/qemu-launcher.json b/data/software/qe/qemu-launcher.json new file mode 100644 index 000000000000..daa6d3f75284 --- /dev/null +++ b/data/software/qe/qemu-launcher.json @@ -0,0 +1,11 @@ +{ + "slug": "qemu-launcher", + "name": "Qemu Launcher", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11832821" + ], + "licenses": [ + "GNU General Public License" + ] +} diff --git a/data/software/qg/qgit.json b/data/software/qg/qgit.json new file mode 100644 index 000000000000..1306b44b59bc --- /dev/null +++ b/data/software/qg/qgit.json @@ -0,0 +1,8 @@ +{ + "slug": "qgit", + "name": "qgit", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60917764" + ] +} diff --git a/data/software/qg/qgo.json b/data/software/qg/qgo.json new file mode 100644 index 000000000000..c4b9f509df73 --- /dev/null +++ b/data/software/qg/qgo.json @@ -0,0 +1,8 @@ +{ + "slug": "qgo", + "name": "qGo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10852213" + ] +} diff --git a/data/software/qi/qigga.json b/data/software/qi/qigga.json new file mode 100644 index 000000000000..948a818f853a --- /dev/null +++ b/data/software/qi/qigga.json @@ -0,0 +1,8 @@ +{ + "slug": "qigga", + "name": "Qigga", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084508" + ] +} diff --git a/data/software/qi/qiime-2.json b/data/software/qi/qiime-2.json new file mode 100644 index 000000000000..e62b6ab51585 --- /dev/null +++ b/data/software/qi/qiime-2.json @@ -0,0 +1,8 @@ +{ + "slug": "qiime-2", + "name": "QIIME 2", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113788774" + ] +} diff --git a/data/software/qi/qik.json b/data/software/qi/qik.json new file mode 100644 index 000000000000..5b7e364ffc29 --- /dev/null +++ b/data/software/qi/qik.json @@ -0,0 +1,11 @@ +{ + "slug": "qik", + "name": "QIK", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7265460" + ], + "developers": [ + "Qantas Airways" + ] +} diff --git a/data/software/qi/qinsy.json b/data/software/qi/qinsy.json new file mode 100644 index 000000000000..b2492f88ae13 --- /dev/null +++ b/data/software/qi/qinsy.json @@ -0,0 +1,8 @@ +{ + "slug": "qinsy", + "name": "QINSy", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115570805" + ] +} diff --git a/data/software/qi/qippa.json b/data/software/qi/qippa.json new file mode 100644 index 000000000000..4ef6f940f553 --- /dev/null +++ b/data/software/qi/qippa.json @@ -0,0 +1,14 @@ +{ + "slug": "qippa", + "name": "Qippa", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105748774" + ], + "operating_systems": [ + "Microsoft Windows" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/qi/qizx.json b/data/software/qi/qizx.json new file mode 100644 index 000000000000..1f89cceb9b9e --- /dev/null +++ b/data/software/qi/qizx.json @@ -0,0 +1,11 @@ +{ + "slug": "qizx", + "name": "Qizx", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q21015576" + ], + "programming_languages": [ + "Java" + ] +} diff --git a/data/software/qj/qjot.json b/data/software/qj/qjot.json new file mode 100644 index 000000000000..955c5a32844c --- /dev/null +++ b/data/software/qj/qjot.json @@ -0,0 +1,11 @@ +{ + "slug": "qjot", + "name": "QJot", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2279176" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/qj/qjoypad.json b/data/software/qj/qjoypad.json new file mode 100644 index 000000000000..217c0ab02fa3 --- /dev/null +++ b/data/software/qj/qjoypad.json @@ -0,0 +1,8 @@ +{ + "slug": "qjoypad", + "name": "QJoyPad", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62861021" + ] +} diff --git a/data/software/ql/qlab.json b/data/software/ql/qlab.json new file mode 100644 index 000000000000..a3e0002b00f7 --- /dev/null +++ b/data/software/ql/qlab.json @@ -0,0 +1,11 @@ +{ + "slug": "qlab", + "name": "QLab", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7265483" + ], + "genres": [ + "multimedia" + ] +} diff --git a/data/software/ql/qlattice.json b/data/software/ql/qlattice.json new file mode 100644 index 000000000000..a422288b064a --- /dev/null +++ b/data/software/ql/qlattice.json @@ -0,0 +1,8 @@ +{ + "slug": "qlattice", + "name": "QLattice", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113461614" + ] +} diff --git a/data/software/ql/qlik-sense.json b/data/software/ql/qlik-sense.json new file mode 100644 index 000000000000..6fccb0254f67 --- /dev/null +++ b/data/software/ql/qlik-sense.json @@ -0,0 +1,11 @@ +{ + "slug": "qlik-sense", + "name": "Qlik Sense", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q58194319" + ], + "developers": [ + "Qlik" + ] +} diff --git a/data/software/ql/qlipper.json b/data/software/ql/qlipper.json new file mode 100644 index 000000000000..73a7f4324e37 --- /dev/null +++ b/data/software/ql/qlipper.json @@ -0,0 +1,11 @@ +{ + "slug": "qlipper", + "name": "Qlipper", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62861030" + ], + "licenses": [ + "GNU General Public License, version 2.0 or later" + ] +} diff --git a/data/software/ql/qlower.json b/data/software/ql/qlower.json new file mode 100644 index 000000000000..32299b47d107 --- /dev/null +++ b/data/software/ql/qlower.json @@ -0,0 +1,8 @@ +{ + "slug": "qlower", + "name": "Qlower", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140230245" + ] +} diff --git a/data/software/qm/qmail-qsanity.json b/data/software/qm/qmail-qsanity.json new file mode 100644 index 000000000000..f0c0eacb630c --- /dev/null +++ b/data/software/qm/qmail-qsanity.json @@ -0,0 +1,8 @@ +{ + "slug": "qmail-qsanity", + "name": "qmail-qsanity", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60917042" + ] +} diff --git a/data/software/qm/qmapshack.json b/data/software/qm/qmapshack.json new file mode 100644 index 000000000000..188f0e811049 --- /dev/null +++ b/data/software/qm/qmapshack.json @@ -0,0 +1,8 @@ +{ + "slug": "qmapshack", + "name": "qmapshack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131574549" + ] +} diff --git a/data/software/qm/qmc-home.json b/data/software/qm/qmc-home.json new file mode 100644 index 000000000000..e7bf4e3b223d --- /dev/null +++ b/data/software/qm/qmc-home.json @@ -0,0 +1,11 @@ +{ + "slug": "qmc-home", + "name": "QMC@Home", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q570192" + ], + "operating_systems": [ + "cross-platform" + ] +} diff --git a/data/software/qm/qmcpack.json b/data/software/qm/qmcpack.json new file mode 100644 index 000000000000..c8022c4bf9f5 --- /dev/null +++ b/data/software/qm/qmcpack.json @@ -0,0 +1,8 @@ +{ + "slug": "qmcpack", + "name": "QMCPACK", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138542683" + ] +} diff --git a/data/software/qm/qmf.json b/data/software/qm/qmf.json new file mode 100644 index 000000000000..493f3c070c09 --- /dev/null +++ b/data/software/qm/qmf.json @@ -0,0 +1,8 @@ +{ + "slug": "qmf", + "name": "qmf", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975392" + ] +} diff --git a/data/software/qm/qmhandle.json b/data/software/qm/qmhandle.json new file mode 100644 index 000000000000..15a7ba8870a3 --- /dev/null +++ b/data/software/qm/qmhandle.json @@ -0,0 +1,8 @@ +{ + "slug": "qmhandle", + "name": "qmHandle", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62861035" + ] +} diff --git a/data/software/qm/qmodem.json b/data/software/qm/qmodem.json new file mode 100644 index 000000000000..806568f2606c --- /dev/null +++ b/data/software/qm/qmodem.json @@ -0,0 +1,8 @@ +{ + "slug": "qmodem", + "name": "Qmodem", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7268006" + ] +} diff --git a/data/software/qm/qmswrapper.json b/data/software/qm/qmswrapper.json new file mode 100644 index 000000000000..272590656de4 --- /dev/null +++ b/data/software/qm/qmswrapper.json @@ -0,0 +1,8 @@ +{ + "slug": "qmswrapper", + "name": "qmsWrapper", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140355049" + ] +} diff --git a/data/software/qn/qnotero.json b/data/software/qn/qnotero.json new file mode 100644 index 000000000000..412ef5380417 --- /dev/null +++ b/data/software/qn/qnotero.json @@ -0,0 +1,8 @@ +{ + "slug": "qnotero", + "name": "Qnotero", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084509" + ] +} diff --git a/data/software/qo/qodana.json b/data/software/qo/qodana.json new file mode 100644 index 000000000000..4f3c9f5675e0 --- /dev/null +++ b/data/software/qo/qodana.json @@ -0,0 +1,8 @@ +{ + "slug": "qodana", + "name": "Qodana", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123944190" + ] +} diff --git a/data/software/qo/qoezion.json b/data/software/qo/qoezion.json new file mode 100644 index 000000000000..9dda580ab847 --- /dev/null +++ b/data/software/qo/qoezion.json @@ -0,0 +1,11 @@ +{ + "slug": "qoezion", + "name": "Qoezion", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140265547" + ], + "developers": [ + "Quick-Off" + ] +} diff --git a/data/software/qo/qomeet.json b/data/software/qo/qomeet.json new file mode 100644 index 000000000000..7bc28df73b2e --- /dev/null +++ b/data/software/qo/qomeet.json @@ -0,0 +1,11 @@ +{ + "slug": "qomeet", + "name": "Qomeet", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140265558" + ], + "developers": [ + "Quick-Off" + ] +} diff --git a/data/software/qp/qpoases.json b/data/software/qp/qpoases.json new file mode 100644 index 000000000000..ba1864ca92c0 --- /dev/null +++ b/data/software/qp/qpoases.json @@ -0,0 +1,11 @@ +{ + "slug": "qpoases", + "name": "qpOASES", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134395611" + ], + "licenses": [ + "GNU Lesser General Public License, version 2.1" + ] +} diff --git a/data/software/qp/qpopper.json b/data/software/qp/qpopper.json new file mode 100644 index 000000000000..cf8bf078feea --- /dev/null +++ b/data/software/qp/qpopper.json @@ -0,0 +1,11 @@ +{ + "slug": "qpopper", + "name": "Qpopper", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1350082" + ], + "developers": [ + "Qualcomm" + ] +} diff --git a/data/software/qq/qq-com.json b/data/software/qq/qq-com.json new file mode 100644 index 000000000000..177506a3659c --- /dev/null +++ b/data/software/qq/qq-com.json @@ -0,0 +1,14 @@ +{ + "slug": "qq-com", + "name": "QQ.com", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q15912288" + ], + "developers": [ + "Tencent" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/qq/qq-music.json b/data/software/qq/qq-music.json new file mode 100644 index 000000000000..3070a0ecd538 --- /dev/null +++ b/data/software/qq/qq-music.json @@ -0,0 +1,18 @@ +{ + "slug": "qq-music", + "name": "QQ Music", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10852229" + ], + "developers": [ + "Tencent" + ], + "operating_systems": [ + "iOS", + "Microsoft Windows" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/qr/qrisp.json b/data/software/qr/qrisp.json new file mode 100644 index 000000000000..0b16dbc17e9b --- /dev/null +++ b/data/software/qr/qrisp.json @@ -0,0 +1,8 @@ +{ + "slug": "qrisp", + "name": "Qrisp", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137673291" + ] +} diff --git a/data/software/qr/qrlynx.json b/data/software/qr/qrlynx.json new file mode 100644 index 000000000000..0090363de77e --- /dev/null +++ b/data/software/qr/qrlynx.json @@ -0,0 +1,14 @@ +{ + "slug": "qrlynx", + "name": "QRLynx", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138655399" + ], + "developers": [ + "Jorbox LLC" + ], + "operating_systems": [ + "cross-platform" + ] +} diff --git a/data/software/qr/qrosscore.json b/data/software/qr/qrosscore.json new file mode 100644 index 000000000000..d52264b15bc2 --- /dev/null +++ b/data/software/qr/qrosscore.json @@ -0,0 +1,8 @@ +{ + "slug": "qrosscore", + "name": "qrosscore", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975393" + ] +} diff --git a/data/software/qr/qrosspython.json b/data/software/qr/qrosspython.json new file mode 100644 index 000000000000..d46579c56d35 --- /dev/null +++ b/data/software/qr/qrosspython.json @@ -0,0 +1,8 @@ +{ + "slug": "qrosspython", + "name": "qrosspython", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975394" + ] +} diff --git a/data/software/qs/qsplat.json b/data/software/qs/qsplat.json new file mode 100644 index 000000000000..cec01b49a805 --- /dev/null +++ b/data/software/qs/qsplat.json @@ -0,0 +1,11 @@ +{ + "slug": "qsplat", + "name": "QSplat", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60478971" + ], + "developers": [ + "Stanford University" + ] +} diff --git a/data/software/qs/qstack.json b/data/software/qs/qstack.json new file mode 100644 index 000000000000..a063e8d39058 --- /dev/null +++ b/data/software/qs/qstack.json @@ -0,0 +1,9 @@ +{ + "slug": "qstack", + "name": "Qstack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28451118" + ], + "release_date": "2015-01-01" +} diff --git a/data/software/qt/qt-gstreamer.json b/data/software/qt/qt-gstreamer.json new file mode 100644 index 000000000000..59a14a5fc7f5 --- /dev/null +++ b/data/software/qt/qt-gstreamer.json @@ -0,0 +1,8 @@ +{ + "slug": "qt-gstreamer", + "name": "qt-gstreamer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975399" + ] +} diff --git a/data/software/qt/qtads.json b/data/software/qt/qtads.json new file mode 100644 index 000000000000..4e323a058e4b --- /dev/null +++ b/data/software/qt/qtads.json @@ -0,0 +1,8 @@ +{ + "slug": "qtads", + "name": "QTads", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62861200" + ] +} diff --git a/data/software/qt/qtbitcointrader.json b/data/software/qt/qtbitcointrader.json new file mode 100644 index 000000000000..800cd10b2e5e --- /dev/null +++ b/data/software/qt/qtbitcointrader.json @@ -0,0 +1,8 @@ +{ + "slug": "qtbitcointrader", + "name": "QtBitcoinTrader", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975395" + ] +} diff --git a/data/software/qt/qtcurve.json b/data/software/qt/qtcurve.json new file mode 100644 index 000000000000..238dc5608601 --- /dev/null +++ b/data/software/qt/qtcurve.json @@ -0,0 +1,8 @@ +{ + "slug": "qtcurve", + "name": "qtcurve", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975396" + ] +} diff --git a/data/software/qt/qtgui.json b/data/software/qt/qtgui.json new file mode 100644 index 000000000000..617f0634e3a6 --- /dev/null +++ b/data/software/qt/qtgui.json @@ -0,0 +1,8 @@ +{ + "slug": "qtgui", + "name": "qtgui", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065085" + ] +} diff --git a/data/software/qt/qtopengl.json b/data/software/qt/qtopengl.json new file mode 100644 index 000000000000..c354151c6406 --- /dev/null +++ b/data/software/qt/qtopengl.json @@ -0,0 +1,8 @@ +{ + "slug": "qtopengl", + "name": "qtopengl", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60864656" + ] +} diff --git a/data/software/qt/qtrax.json b/data/software/qt/qtrax.json new file mode 100644 index 000000000000..7a73ecf92a26 --- /dev/null +++ b/data/software/qt/qtrax.json @@ -0,0 +1,8 @@ +{ + "slug": "qtrax", + "name": "Qtrax", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2542757" + ] +} diff --git a/data/software/qt/qtserialbus.json b/data/software/qt/qtserialbus.json new file mode 100644 index 000000000000..829ea0c4d3f5 --- /dev/null +++ b/data/software/qt/qtserialbus.json @@ -0,0 +1,8 @@ +{ + "slug": "qtserialbus", + "name": "qtserialbus", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63064779" + ] +} diff --git a/data/software/qt/qtss-publisher.json b/data/software/qt/qtss-publisher.json new file mode 100644 index 000000000000..d7567a4de6f6 --- /dev/null +++ b/data/software/qt/qtss-publisher.json @@ -0,0 +1,14 @@ +{ + "slug": "qtss-publisher", + "name": "QTSS Publisher", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7265588" + ], + "developers": [ + "Apple Inc." + ], + "operating_systems": [ + "macOS" + ] +} diff --git a/data/software/qu/quad-chat.json b/data/software/qu/quad-chat.json new file mode 100644 index 000000000000..028daad5470e --- /dev/null +++ b/data/software/qu/quad-chat.json @@ -0,0 +1,8 @@ +{ + "slug": "quad-chat", + "name": "Quad Chat", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140428506" + ] +} diff --git a/data/software/qu/quadriga-audio-archiving-solution.json b/data/software/qu/quadriga-audio-archiving-solution.json new file mode 100644 index 000000000000..665865701eb0 --- /dev/null +++ b/data/software/qu/quadriga-audio-archiving-solution.json @@ -0,0 +1,8 @@ +{ + "slug": "quadriga-audio-archiving-solution", + "name": "Quadriga Audio-Archiving Solution", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2121904" + ] +} diff --git a/data/software/qu/quadrigram.json b/data/software/qu/quadrigram.json new file mode 100644 index 000000000000..260b2f0a2d89 --- /dev/null +++ b/data/software/qu/quadrigram.json @@ -0,0 +1,8 @@ +{ + "slug": "quadrigram", + "name": "Quadrigram", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084510" + ] +} diff --git a/data/software/qu/qualifiers.json b/data/software/qu/qualifiers.json new file mode 100644 index 000000000000..05154187dd04 --- /dev/null +++ b/data/software/qu/qualifiers.json @@ -0,0 +1,8 @@ +{ + "slug": "qualifiers", + "name": "Qualifiers", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105229759" + ] +} diff --git a/data/software/qu/qualintel-os.json b/data/software/qu/qualintel-os.json new file mode 100644 index 000000000000..c003ba55934b --- /dev/null +++ b/data/software/qu/qualintel-os.json @@ -0,0 +1,8 @@ +{ + "slug": "qualintel-os", + "name": "QualIntel OS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140050626" + ] +} diff --git a/data/software/qu/quality-assurance-software.json b/data/software/qu/quality-assurance-software.json new file mode 100644 index 000000000000..2b586bb1fe7c --- /dev/null +++ b/data/software/qu/quality-assurance-software.json @@ -0,0 +1,8 @@ +{ + "slug": "quality-assurance-software", + "name": "Quality Assurance Software", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135526947" + ] +} diff --git a/data/software/qu/quality-management-software.json b/data/software/qu/quality-management-software.json new file mode 100644 index 000000000000..5640e703199d --- /dev/null +++ b/data/software/qu/quality-management-software.json @@ -0,0 +1,8 @@ +{ + "slug": "quality-management-software", + "name": "quality management software", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130643790" + ] +} diff --git a/data/software/qu/qualrus.json b/data/software/qu/qualrus.json new file mode 100644 index 000000000000..01c509ab4de4 --- /dev/null +++ b/data/software/qu/qualrus.json @@ -0,0 +1,14 @@ +{ + "slug": "qualrus", + "name": "Qualrus", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105229761" + ], + "operating_systems": [ + "Microsoft Windows" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/qu/quantum-moves.json b/data/software/qu/quantum-moves.json new file mode 100644 index 000000000000..1c00d72a0854 --- /dev/null +++ b/data/software/qu/quantum-moves.json @@ -0,0 +1,8 @@ +{ + "slug": "quantum-moves", + "name": "Quantum Moves", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16254894" + ] +} diff --git a/data/software/qu/quark-publishing-platform-nextgen.json b/data/software/qu/quark-publishing-platform-nextgen.json new file mode 100644 index 000000000000..b14209c9668c --- /dev/null +++ b/data/software/qu/quark-publishing-platform-nextgen.json @@ -0,0 +1,8 @@ +{ + "slug": "quark-publishing-platform-nextgen", + "name": "Quark Publishing Platform NextGen", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130535755" + ] +} diff --git a/data/software/qu/quark-publishing-system.json b/data/software/qu/quark-publishing-system.json new file mode 100644 index 000000000000..616fb9ee6e42 --- /dev/null +++ b/data/software/qu/quark-publishing-system.json @@ -0,0 +1,8 @@ +{ + "slug": "quark-publishing-system", + "name": "Quark Publishing System", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2122317" + ] +} diff --git a/data/software/qu/quarkimmedia.json b/data/software/qu/quarkimmedia.json new file mode 100644 index 000000000000..9cfdce18a10b --- /dev/null +++ b/data/software/qu/quarkimmedia.json @@ -0,0 +1,11 @@ +{ + "slug": "quarkimmedia", + "name": "QuarkImmedia", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2122305" + ], + "developers": [ + "Quark, Inc." + ] +} diff --git a/data/software/qu/quarkus.json b/data/software/qu/quarkus.json new file mode 100644 index 000000000000..c58d2b15ea82 --- /dev/null +++ b/data/software/qu/quarkus.json @@ -0,0 +1,17 @@ +{ + "slug": "quarkus", + "name": "Quarkus", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q98139844" + ], + "developers": [ + "Red Hat" + ], + "programming_languages": [ + "Java" + ], + "licenses": [ + "Apache Software License 2.0" + ] +} diff --git a/data/software/qu/quarkxpress.json b/data/software/qu/quarkxpress.json new file mode 100644 index 000000000000..ab0fe1b28ff4 --- /dev/null +++ b/data/software/qu/quarkxpress.json @@ -0,0 +1,18 @@ +{ + "slug": "quarkxpress", + "name": "QuarkXPress", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q678036" + ], + "developers": [ + "Quark, Inc." + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/qu/quarto.json b/data/software/qu/quarto.json new file mode 100644 index 000000000000..52e6af09c693 --- /dev/null +++ b/data/software/qu/quarto.json @@ -0,0 +1,22 @@ +{ + "slug": "quarto", + "name": "Quarto", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117559664" + ], + "developers": [ + "Posit PBC", + "Joseph J. Allaire", + "Christophe Dervieux" + ], + "operating_systems": [ + "cross-platform" + ], + "programming_languages": [ + "TypeScript" + ], + "licenses": [ + "GNU General Public License, version 2.0" + ] +} diff --git a/data/software/qu/quartz-compositor.json b/data/software/qu/quartz-compositor.json new file mode 100644 index 000000000000..b7bdef7559b4 --- /dev/null +++ b/data/software/qu/quartz-compositor.json @@ -0,0 +1,8 @@ +{ + "slug": "quartz-compositor", + "name": "Quartz Compositor", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1591372" + ] +} diff --git a/data/software/qu/quartz.json b/data/software/qu/quartz.json new file mode 100644 index 000000000000..ed5475255db0 --- /dev/null +++ b/data/software/qu/quartz.json @@ -0,0 +1,14 @@ +{ + "slug": "quartz", + "name": "Quartz", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2122405" + ], + "programming_languages": [ + "Java" + ], + "licenses": [ + "Apache Software License 2.0" + ] +} diff --git a/data/software/qu/quast.json b/data/software/qu/quast.json new file mode 100644 index 000000000000..711a5f67242a --- /dev/null +++ b/data/software/qu/quast.json @@ -0,0 +1,11 @@ +{ + "slug": "quast", + "name": "QUAST", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113089905" + ], + "licenses": [ + "GNU General Public License, version 2.0" + ] +} diff --git a/data/software/qu/quattro-pro-11.json b/data/software/qu/quattro-pro-11.json new file mode 100644 index 000000000000..ad3256a97c74 --- /dev/null +++ b/data/software/qu/quattro-pro-11.json @@ -0,0 +1,8 @@ +{ + "slug": "quattro-pro-11", + "name": "Quattro Pro 11", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q64835061" + ] +} diff --git a/data/software/qu/quenc.json b/data/software/qu/quenc.json new file mode 100644 index 000000000000..c7c4b286dac4 --- /dev/null +++ b/data/software/qu/quenc.json @@ -0,0 +1,8 @@ +{ + "slug": "quenc", + "name": "QuEnc", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6094051" + ] +} diff --git a/data/software/qu/query-36.json b/data/software/qu/query-36.json new file mode 100644 index 000000000000..e89b2edbbffe --- /dev/null +++ b/data/software/qu/query-36.json @@ -0,0 +1,11 @@ +{ + "slug": "query-36", + "name": "Query/36", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28869427" + ], + "developers": [ + "IBM" + ] +} diff --git a/data/software/qu/query-processing-library.json b/data/software/qu/query-processing-library.json new file mode 100644 index 000000000000..3346ce20908f --- /dev/null +++ b/data/software/qu/query-processing-library.json @@ -0,0 +1,11 @@ +{ + "slug": "query-processing-library", + "name": "Query Processing Library", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116216849" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/qu/questagame.json b/data/software/qu/questagame.json new file mode 100644 index 000000000000..c35c90972944 --- /dev/null +++ b/data/software/qu/questagame.json @@ -0,0 +1,8 @@ +{ + "slug": "questagame", + "name": "Questagame", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q56277601" + ] +} diff --git a/data/software/qu/question-writer.json b/data/software/qu/question-writer.json new file mode 100644 index 000000000000..b6bc143b9d97 --- /dev/null +++ b/data/software/qu/question-writer.json @@ -0,0 +1,8 @@ +{ + "slug": "question-writer", + "name": "Question Writer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7271529" + ] +} diff --git a/data/software/qu/questworks.json b/data/software/qu/questworks.json new file mode 100644 index 000000000000..0fb6c600274c --- /dev/null +++ b/data/software/qu/questworks.json @@ -0,0 +1,8 @@ +{ + "slug": "questworks", + "name": "QuestWorks", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139695437" + ] +} diff --git a/data/software/qu/quex.json b/data/software/qu/quex.json new file mode 100644 index 000000000000..24b2487d4362 --- /dev/null +++ b/data/software/qu/quex.json @@ -0,0 +1,8 @@ +{ + "slug": "quex", + "name": "Quex", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7271594" + ] +} diff --git a/data/software/qu/quick-devis.json b/data/software/qu/quick-devis.json new file mode 100644 index 000000000000..5272b77a5121 --- /dev/null +++ b/data/software/qu/quick-devis.json @@ -0,0 +1,8 @@ +{ + "slug": "quick-devis", + "name": "Quick Devis", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3414444" + ] +} diff --git a/data/software/qu/quick-look.json b/data/software/qu/quick-look.json new file mode 100644 index 000000000000..e48cb62785fa --- /dev/null +++ b/data/software/qu/quick-look.json @@ -0,0 +1,14 @@ +{ + "slug": "quick-look", + "name": "Quick Look", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1326420" + ], + "developers": [ + "Apple Inc." + ], + "operating_systems": [ + "macOS" + ] +} diff --git a/data/software/qu/quick-lx.json b/data/software/qu/quick-lx.json new file mode 100644 index 000000000000..413969bd6aca --- /dev/null +++ b/data/software/qu/quick-lx.json @@ -0,0 +1,14 @@ +{ + "slug": "quick-lx", + "name": "Quick/LX", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121672432" + ], + "developers": [ + "D&A Software" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/qu/quick-menu.json b/data/software/qu/quick-menu.json new file mode 100644 index 000000000000..bbd09254399a --- /dev/null +++ b/data/software/qu/quick-menu.json @@ -0,0 +1,9 @@ +{ + "slug": "quick-menu", + "name": "Quick Menu", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q23823965" + ], + "release_date": "1990-01-01" +} diff --git a/data/software/qu/quick-share.json b/data/software/qu/quick-share.json new file mode 100644 index 000000000000..0b0ea8bf4967 --- /dev/null +++ b/data/software/qu/quick-share.json @@ -0,0 +1,19 @@ +{ + "slug": "quick-share", + "name": "Quick Share", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124153669" + ], + "developers": [ + "Google", + "Samsung Electronics" + ], + "operating_systems": [ + "ChromeOS", + "Microsoft Windows" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/qu/quick-view-plus.json b/data/software/qu/quick-view-plus.json new file mode 100644 index 000000000000..aaf93a5d1b77 --- /dev/null +++ b/data/software/qu/quick-view-plus.json @@ -0,0 +1,15 @@ +{ + "slug": "quick-view-plus", + "name": "Quick View Plus", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q58642355" + ], + "developers": [ + "Inso corporation" + ], + "operating_systems": [ + "Windows NT 4.0", + "Windows 95" + ] +} diff --git a/data/software/qu/quickbbs.json b/data/software/qu/quickbbs.json new file mode 100644 index 000000000000..17c8b22dcc44 --- /dev/null +++ b/data/software/qu/quickbbs.json @@ -0,0 +1,8 @@ +{ + "slug": "quickbbs", + "name": "QuickBBS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7271659" + ] +} diff --git a/data/software/qu/quicken-family-lawyer.json b/data/software/qu/quicken-family-lawyer.json new file mode 100644 index 000000000000..40858d335736 --- /dev/null +++ b/data/software/qu/quicken-family-lawyer.json @@ -0,0 +1,9 @@ +{ + "slug": "quicken-family-lawyer", + "name": "Quicken Family Lawyer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60814755" + ], + "release_date": "1999-01-01" +} diff --git a/data/software/qu/quicken.json b/data/software/qu/quicken.json new file mode 100644 index 000000000000..7717e5e797c0 --- /dev/null +++ b/data/software/qu/quicken.json @@ -0,0 +1,9 @@ +{ + "slug": "quicken", + "name": "Quicken", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2123105" + ], + "release_date": "1983-01-01" +} diff --git a/data/software/qu/quickfield.json b/data/software/qu/quickfield.json new file mode 100644 index 000000000000..eaa28f67f0c1 --- /dev/null +++ b/data/software/qu/quickfield.json @@ -0,0 +1,12 @@ +{ + "slug": "quickfield", + "name": "Quickfield", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7271731" + ], + "release_date": "1991-01-01", + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/qu/quickfuzz.json b/data/software/qu/quickfuzz.json new file mode 100644 index 000000000000..f76cdb6eacd0 --- /dev/null +++ b/data/software/qu/quickfuzz.json @@ -0,0 +1,8 @@ +{ + "slug": "quickfuzz", + "name": "quickfuzz", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975402" + ] +} diff --git a/data/software/qu/quickload.json b/data/software/qu/quickload.json new file mode 100644 index 000000000000..e9150afd7804 --- /dev/null +++ b/data/software/qu/quickload.json @@ -0,0 +1,8 @@ +{ + "slug": "quickload", + "name": "QuickLOAD", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7271667" + ] +} diff --git a/data/software/qu/quickmap.json b/data/software/qu/quickmap.json new file mode 100644 index 000000000000..8b5c46ba8905 --- /dev/null +++ b/data/software/qu/quickmap.json @@ -0,0 +1,13 @@ +{ + "slug": "quickmap", + "name": "Quickmap", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136439315" + ], + "developers": [ + "School of Earth and Space Exploration", + "Intuitive Machines", + "Applied Coherent Technology" + ] +} diff --git a/data/software/qu/quicknet.json b/data/software/qu/quicknet.json new file mode 100644 index 000000000000..81bcce76d46b --- /dev/null +++ b/data/software/qu/quicknet.json @@ -0,0 +1,8 @@ +{ + "slug": "quicknet", + "name": "Quicknet", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7271754" + ] +} diff --git a/data/software/qu/quickoffice.json b/data/software/qu/quickoffice.json new file mode 100644 index 000000000000..02aa535ea54e --- /dev/null +++ b/data/software/qu/quickoffice.json @@ -0,0 +1,18 @@ +{ + "slug": "quickoffice", + "name": "Quickoffice", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1394019" + ], + "developers": [ + "Google" + ], + "operating_systems": [ + "iOS", + "BlackBerry OS", + "Symbian", + "webOS", + "Palm OS" + ] +} diff --git a/data/software/qu/quickpar.json b/data/software/qu/quickpar.json new file mode 100644 index 000000000000..3391a1cb119b --- /dev/null +++ b/data/software/qu/quickpar.json @@ -0,0 +1,9 @@ +{ + "slug": "quickpar", + "name": "QuickPar", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7271668" + ], + "release_date": "2003-02-05" +} diff --git a/data/software/qu/quickplot.json b/data/software/qu/quickplot.json new file mode 100644 index 000000000000..d094c7c84a0c --- /dev/null +++ b/data/software/qu/quickplot.json @@ -0,0 +1,8 @@ +{ + "slug": "quickplot", + "name": "Quickplot", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62863085" + ] +} diff --git a/data/software/qu/quickstatements-client.json b/data/software/qu/quickstatements-client.json new file mode 100644 index 000000000000..95176045b3b7 --- /dev/null +++ b/data/software/qu/quickstatements-client.json @@ -0,0 +1,14 @@ +{ + "slug": "quickstatements-client", + "name": "QuickStatements Client", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116914095" + ], + "programming_languages": [ + "Python" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/qu/quickterm.json b/data/software/qu/quickterm.json new file mode 100644 index 000000000000..8f37fe1c502d --- /dev/null +++ b/data/software/qu/quickterm.json @@ -0,0 +1,11 @@ +{ + "slug": "quickterm", + "name": "Quickterm", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118906953" + ], + "developers": [ + "Kaleidoscope GmbH" + ] +} diff --git a/data/software/qu/quicktime-broadcaster.json b/data/software/qu/quicktime-broadcaster.json new file mode 100644 index 000000000000..025708d18028 --- /dev/null +++ b/data/software/qu/quicktime-broadcaster.json @@ -0,0 +1,14 @@ +{ + "slug": "quicktime-broadcaster", + "name": "QuickTime Broadcaster", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1469258" + ], + "developers": [ + "Apple Inc." + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/qu/quicktime-player.json b/data/software/qu/quicktime-player.json new file mode 100644 index 000000000000..f5a899a989d0 --- /dev/null +++ b/data/software/qu/quicktime-player.json @@ -0,0 +1,11 @@ +{ + "slug": "quicktime-player", + "name": "QuickTime Player", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1522857" + ], + "genres": [ + "media player software" + ] +} diff --git a/data/software/qu/quicktime-streaming-server.json b/data/software/qu/quicktime-streaming-server.json new file mode 100644 index 000000000000..1f138baa8b4b --- /dev/null +++ b/data/software/qu/quicktime-streaming-server.json @@ -0,0 +1,11 @@ +{ + "slug": "quicktime-streaming-server", + "name": "QuickTime Streaming Server", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q358919" + ], + "developers": [ + "Apple Inc." + ] +} diff --git a/data/software/qu/quicktransit.json b/data/software/qu/quicktransit.json new file mode 100644 index 000000000000..9154b41a4afa --- /dev/null +++ b/data/software/qu/quicktransit.json @@ -0,0 +1,8 @@ +{ + "slug": "quicktransit", + "name": "QuickTransit", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3927834" + ] +} diff --git a/data/software/qu/quickview-2-0.json b/data/software/qu/quickview-2-0.json new file mode 100644 index 000000000000..dbd047ba268f --- /dev/null +++ b/data/software/qu/quickview-2-0.json @@ -0,0 +1,9 @@ +{ + "slug": "quickview-2-0", + "name": "QuickView 2.0", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121631739" + ], + "release_date": "1993-03-01" +} diff --git a/data/software/qu/quickview.json b/data/software/qu/quickview.json new file mode 100644 index 000000000000..20b42a41df69 --- /dev/null +++ b/data/software/qu/quickview.json @@ -0,0 +1,11 @@ +{ + "slug": "quickview", + "name": "QuickView", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3927833" + ], + "developers": [ + "Stellent" + ] +} diff --git a/data/software/qu/quickvoice-ip.json b/data/software/qu/quickvoice-ip.json new file mode 100644 index 000000000000..fe1b5bb8b5e9 --- /dev/null +++ b/data/software/qu/quickvoice-ip.json @@ -0,0 +1,8 @@ +{ + "slug": "quickvoice-ip", + "name": "QuickVoice iP", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084511" + ] +} diff --git a/data/software/qu/quill-q105972409.json b/data/software/qu/quill-q105972409.json new file mode 100644 index 000000000000..084b1e6ccce4 --- /dev/null +++ b/data/software/qu/quill-q105972409.json @@ -0,0 +1,8 @@ +{ + "slug": "quill-q105972409", + "name": "Quill", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105972409" + ] +} diff --git a/data/software/qu/quill.json b/data/software/qu/quill.json new file mode 100644 index 000000000000..0b0da9aaa4dc --- /dev/null +++ b/data/software/qu/quill.json @@ -0,0 +1,8 @@ +{ + "slug": "quill", + "name": "Quill", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q30325191" + ] +} diff --git a/data/software/qu/quintecia.json b/data/software/qu/quintecia.json new file mode 100644 index 000000000000..30bfbfc74a93 --- /dev/null +++ b/data/software/qu/quintecia.json @@ -0,0 +1,14 @@ +{ + "slug": "quintecia", + "name": "Quintecia", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138865107" + ], + "operating_systems": [ + "cross-platform" + ], + "programming_languages": [ + "Python" + ] +} diff --git a/data/software/qu/quintessential-player.json b/data/software/qu/quintessential-player.json new file mode 100644 index 000000000000..2965b604bfa2 --- /dev/null +++ b/data/software/qu/quintessential-player.json @@ -0,0 +1,11 @@ +{ + "slug": "quintessential-player", + "name": "Quintessential Player", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2272440" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/qu/quintexa.json b/data/software/qu/quintexa.json new file mode 100644 index 000000000000..7b2b3811d7fe --- /dev/null +++ b/data/software/qu/quintexa.json @@ -0,0 +1,15 @@ +{ + "slug": "quintexa", + "name": "quintexA", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105229762" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/qu/quintus-prolog.json b/data/software/qu/quintus-prolog.json new file mode 100644 index 000000000000..d88ab3b7997b --- /dev/null +++ b/data/software/qu/quintus-prolog.json @@ -0,0 +1,8 @@ +{ + "slug": "quintus-prolog", + "name": "Quintus Prolog", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123577704" + ] +} diff --git a/data/software/qu/quire-io.json b/data/software/qu/quire-io.json new file mode 100644 index 000000000000..4bc9a481272a --- /dev/null +++ b/data/software/qu/quire-io.json @@ -0,0 +1,8 @@ +{ + "slug": "quire-io", + "name": "Quire.io", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q20644946" + ] +} diff --git a/data/software/qu/quirkos.json b/data/software/qu/quirkos.json new file mode 100644 index 000000000000..4ac6e696c00e --- /dev/null +++ b/data/software/qu/quirkos.json @@ -0,0 +1,15 @@ +{ + "slug": "quirkos", + "name": "Quirkos", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q30633354" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/qu/quitcount.json b/data/software/qu/quitcount.json new file mode 100644 index 000000000000..f8162384d3df --- /dev/null +++ b/data/software/qu/quitcount.json @@ -0,0 +1,8 @@ +{ + "slug": "quitcount", + "name": "QuitCount", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62863076" + ] +} diff --git a/data/software/qu/qulto.json b/data/software/qu/qulto.json new file mode 100644 index 000000000000..b3ee907b8a5e --- /dev/null +++ b/data/software/qu/qulto.json @@ -0,0 +1,8 @@ +{ + "slug": "qulto", + "name": "Qulto", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q12815750" + ] +} diff --git a/data/software/qu/quosal.json b/data/software/qu/quosal.json new file mode 100644 index 000000000000..17de6812edcf --- /dev/null +++ b/data/software/qu/quosal.json @@ -0,0 +1,8 @@ +{ + "slug": "quosal", + "name": "Quosal", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7272870" + ] +} diff --git a/data/software/qu/quotatool.json b/data/software/qu/quotatool.json new file mode 100644 index 000000000000..a9b3da4fca46 --- /dev/null +++ b/data/software/qu/quotatool.json @@ -0,0 +1,8 @@ +{ + "slug": "quotatool", + "name": "quotatool", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62863066" + ] +} diff --git a/data/software/qu/qupath.json b/data/software/qu/qupath.json new file mode 100644 index 000000000000..7aa03d7bdd5d --- /dev/null +++ b/data/software/qu/qupath.json @@ -0,0 +1,8 @@ +{ + "slug": "qupath", + "name": "QuPath", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113050384" + ] +} diff --git a/data/software/qu/qutoutiao.json b/data/software/qu/qutoutiao.json new file mode 100644 index 000000000000..7b59c93cff55 --- /dev/null +++ b/data/software/qu/qutoutiao.json @@ -0,0 +1,11 @@ +{ + "slug": "qutoutiao", + "name": "Qutoutiao", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q59318110" + ], + "developers": [ + "Eric Tan" + ] +} diff --git a/data/software/qv/qvcs.json b/data/software/qv/qvcs.json new file mode 100644 index 000000000000..8c27308cbb21 --- /dev/null +++ b/data/software/qv/qvcs.json @@ -0,0 +1,8 @@ +{ + "slug": "qvcs", + "name": "QVCS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4047730" + ] +} diff --git a/data/software/qv/qvod.json b/data/software/qv/qvod.json new file mode 100644 index 000000000000..461996f3eeb2 --- /dev/null +++ b/data/software/qv/qvod.json @@ -0,0 +1,8 @@ +{ + "slug": "qvod", + "name": "Qvod", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11072368" + ] +} diff --git a/data/software/qx/qxkb.json b/data/software/qx/qxkb.json new file mode 100644 index 000000000000..7e498c1de424 --- /dev/null +++ b/data/software/qx/qxkb.json @@ -0,0 +1,8 @@ +{ + "slug": "qxkb", + "name": "qxkb", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63064758" + ] +} diff --git a/data/software/qx/qxorm.json b/data/software/qx/qxorm.json new file mode 100644 index 000000000000..4671f19272de --- /dev/null +++ b/data/software/qx/qxorm.json @@ -0,0 +1,11 @@ +{ + "slug": "qxorm", + "name": "QxOrm", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3414896" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/r-/r-drive-image.json b/data/software/r-/r-drive-image.json new file mode 100644 index 000000000000..8daacc17d797 --- /dev/null +++ b/data/software/r-/r-drive-image.json @@ -0,0 +1,8 @@ +{ + "slug": "r-drive-image", + "name": "R-Drive Image", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3304600" + ] +} diff --git a/data/software/r-/r-studio.json b/data/software/r-/r-studio.json new file mode 100644 index 000000000000..5e6a78099f6d --- /dev/null +++ b/data/software/r-/r-studio.json @@ -0,0 +1,8 @@ +{ + "slug": "r-studio", + "name": "R-Studio", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q24451405" + ] +} diff --git a/data/software/r-/r-sun.json b/data/software/r-/r-sun.json new file mode 100644 index 000000000000..aa3bee31cddd --- /dev/null +++ b/data/software/r-/r-sun.json @@ -0,0 +1,8 @@ +{ + "slug": "r-sun", + "name": "R.sun", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7274340" + ] +} diff --git a/data/software/r4/r4e-review-for-eclipse.json b/data/software/r4/r4e-review-for-eclipse.json new file mode 100644 index 000000000000..f8bc452c2b4b --- /dev/null +++ b/data/software/r4/r4e-review-for-eclipse.json @@ -0,0 +1,8 @@ +{ + "slug": "r4e-review-for-eclipse", + "name": "R4E (Review for Eclipse)", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76177629" + ] +} diff --git a/data/software/ra/rabbitmq-c.json b/data/software/ra/rabbitmq-c.json new file mode 100644 index 000000000000..d7ebb8884552 --- /dev/null +++ b/data/software/ra/rabbitmq-c.json @@ -0,0 +1,11 @@ +{ + "slug": "rabbitmq-c", + "name": "rabbitmq-c", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975405" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/ra/racemetrics.json b/data/software/ra/racemetrics.json new file mode 100644 index 000000000000..317b67406a93 --- /dev/null +++ b/data/software/ra/racemetrics.json @@ -0,0 +1,8 @@ +{ + "slug": "racemetrics", + "name": "RaceMetrics", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139942640" + ] +} diff --git a/data/software/ra/rackspace-auth-openstack.json b/data/software/ra/rackspace-auth-openstack.json new file mode 100644 index 000000000000..b710139a2c4a --- /dev/null +++ b/data/software/ra/rackspace-auth-openstack.json @@ -0,0 +1,8 @@ +{ + "slug": "rackspace-auth-openstack", + "name": "rackspace-auth-openstack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975407" + ] +} diff --git a/data/software/ra/radeontool.json b/data/software/ra/radeontool.json new file mode 100644 index 000000000000..c0798e8b39cd --- /dev/null +++ b/data/software/ra/radeontool.json @@ -0,0 +1,8 @@ +{ + "slug": "radeontool", + "name": "RadeonTool", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62863056" + ] +} diff --git a/data/software/ra/radexpro-seismic-software.json b/data/software/ra/radexpro-seismic-software.json new file mode 100644 index 000000000000..1e15e1ed7301 --- /dev/null +++ b/data/software/ra/radexpro-seismic-software.json @@ -0,0 +1,11 @@ +{ + "slug": "radexpro-seismic-software", + "name": "RadExPro seismic software", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7279903" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/ra/radiance.json b/data/software/ra/radiance.json new file mode 100644 index 000000000000..9613f38f5ab2 --- /dev/null +++ b/data/software/ra/radiance.json @@ -0,0 +1,15 @@ +{ + "slug": "radiance", + "name": "Radiance", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4047947" + ], + "developers": [ + "Gregory J. Ward" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/software/ra/radiant-photo.json b/data/software/ra/radiant-photo.json new file mode 100644 index 000000000000..ab1ec3204008 --- /dev/null +++ b/data/software/ra/radiant-photo.json @@ -0,0 +1,8 @@ +{ + "slug": "radiant-photo", + "name": "Radiant Photo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136106259" + ] +} diff --git a/data/software/ra/radiate.json b/data/software/ra/radiate.json new file mode 100644 index 000000000000..e7e3d38f5ad1 --- /dev/null +++ b/data/software/ra/radiate.json @@ -0,0 +1,11 @@ +{ + "slug": "radiate", + "name": "Radiate", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q21041348" + ], + "operating_systems": [ + "iOS" + ] +} diff --git a/data/software/ra/radio-interface-layer.json b/data/software/ra/radio-interface-layer.json new file mode 100644 index 000000000000..e97b3ca0e36c --- /dev/null +++ b/data/software/ra/radio-interface-layer.json @@ -0,0 +1,8 @@ +{ + "slug": "radio-interface-layer", + "name": "Radio Interface Layer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7280856" + ] +} diff --git a/data/software/ra/radioss.json b/data/software/ra/radioss.json new file mode 100644 index 000000000000..068c3eec7774 --- /dev/null +++ b/data/software/ra/radioss.json @@ -0,0 +1,18 @@ +{ + "slug": "radioss", + "name": "Radioss", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3415032" + ], + "developers": [ + "Altair Engineering" + ], + "operating_systems": [ + "SUSE", + "Microsoft Windows" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/ra/radium-smartchain.json b/data/software/ra/radium-smartchain.json new file mode 100644 index 000000000000..54d5d5e81a64 --- /dev/null +++ b/data/software/ra/radium-smartchain.json @@ -0,0 +1,8 @@ +{ + "slug": "radium-smartchain", + "name": "Radium SmartChain", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108747960" + ] +} diff --git a/data/software/ra/radmin.json b/data/software/ra/radmin.json new file mode 100644 index 000000000000..090c8ade8907 --- /dev/null +++ b/data/software/ra/radmin.json @@ -0,0 +1,14 @@ +{ + "slug": "radmin", + "name": "Radmin", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1976090" + ], + "operating_systems": [ + "Windows Server 2003" + ], + "licenses": [ + "shareware" + ] +} diff --git a/data/software/ra/radmind.json b/data/software/ra/radmind.json new file mode 100644 index 000000000000..4018d3ffd6d7 --- /dev/null +++ b/data/software/ra/radmind.json @@ -0,0 +1,8 @@ +{ + "slug": "radmind", + "name": "Radmind", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7281457" + ] +} diff --git a/data/software/ra/rae-assist.json b/data/software/ra/rae-assist.json new file mode 100644 index 000000000000..3d00a7361461 --- /dev/null +++ b/data/software/ra/rae-assist.json @@ -0,0 +1,8 @@ +{ + "slug": "rae-assist", + "name": "Rae Assist", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7281904" + ] +} diff --git a/data/software/ra/rafflecopter.json b/data/software/ra/rafflecopter.json new file mode 100644 index 000000000000..5c6ffa0a2eb7 --- /dev/null +++ b/data/software/ra/rafflecopter.json @@ -0,0 +1,8 @@ +{ + "slug": "rafflecopter", + "name": "Rafflecopter", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140089725" + ] +} diff --git a/data/software/ra/raftlib.json b/data/software/ra/raftlib.json new file mode 100644 index 000000000000..6e3ac45c1121 --- /dev/null +++ b/data/software/ra/raftlib.json @@ -0,0 +1,15 @@ +{ + "slug": "raftlib", + "name": "RaftLib", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28446438" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "licenses": [ + "Apache License" + ] +} diff --git a/data/software/ra/rag-weaver.json b/data/software/ra/rag-weaver.json new file mode 100644 index 000000000000..08e8e3034422 --- /dev/null +++ b/data/software/ra/rag-weaver.json @@ -0,0 +1,8 @@ +{ + "slug": "rag-weaver", + "name": "RAG Weaver", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140197648" + ] +} diff --git a/data/software/ra/ragel.json b/data/software/ra/ragel.json new file mode 100644 index 000000000000..961befae60cf --- /dev/null +++ b/data/software/ra/ragel.json @@ -0,0 +1,11 @@ +{ + "slug": "ragel", + "name": "Ragel", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3417478" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/ra/ragtime.json b/data/software/ra/ragtime.json new file mode 100644 index 000000000000..0b66366913ca --- /dev/null +++ b/data/software/ra/ragtime.json @@ -0,0 +1,12 @@ +{ + "slug": "ragtime", + "name": "RagTime", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123714" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/software/ra/raid-admin.json b/data/software/ra/raid-admin.json new file mode 100644 index 000000000000..d9ea158c49ea --- /dev/null +++ b/data/software/ra/raid-admin.json @@ -0,0 +1,14 @@ +{ + "slug": "raid-admin", + "name": "RAID Admin", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3928147" + ], + "developers": [ + "Apple Inc." + ], + "operating_systems": [ + "macOS Server" + ] +} diff --git a/data/software/ra/raidcall.json b/data/software/ra/raidcall.json new file mode 100644 index 000000000000..833aa4a0edef --- /dev/null +++ b/data/software/ra/raidcall.json @@ -0,0 +1,8 @@ +{ + "slug": "raidcall", + "name": "RaidCall", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q24836390" + ] +} diff --git a/data/software/ra/raids-online.json b/data/software/ra/raids-online.json new file mode 100644 index 000000000000..6ee2e29aff75 --- /dev/null +++ b/data/software/ra/raids-online.json @@ -0,0 +1,8 @@ +{ + "slug": "raids-online", + "name": "RAIDS Online", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7275721" + ] +} diff --git a/data/software/ra/rain-framework.json b/data/software/ra/rain-framework.json new file mode 100644 index 000000000000..337c82c2f667 --- /dev/null +++ b/data/software/ra/rain-framework.json @@ -0,0 +1,14 @@ +{ + "slug": "rain-framework", + "name": "Rain Framework", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2463477" + ], + "programming_languages": [ + "PHP" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/ra/raise-data-recovery.json b/data/software/ra/raise-data-recovery.json new file mode 100644 index 000000000000..5275ca51e5f9 --- /dev/null +++ b/data/software/ra/raise-data-recovery.json @@ -0,0 +1,8 @@ +{ + "slug": "raise-data-recovery", + "name": "Raise Data Recovery", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28950276" + ] +} diff --git a/data/software/ra/raise-restore-data-integration-suite.json b/data/software/ra/raise-restore-data-integration-suite.json new file mode 100644 index 000000000000..2b9d5b7d834d --- /dev/null +++ b/data/software/ra/raise-restore-data-integration-suite.json @@ -0,0 +1,8 @@ +{ + "slug": "raise-restore-data-integration-suite", + "name": "RAISE - Restore dAta Integration SuitE", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084512" + ] +} diff --git a/data/software/ra/raman-tool-set.json b/data/software/ra/raman-tool-set.json new file mode 100644 index 000000000000..446b82322ca1 --- /dev/null +++ b/data/software/ra/raman-tool-set.json @@ -0,0 +1,11 @@ +{ + "slug": "raman-tool-set", + "name": "Raman Tool Set", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28957056" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/ra/ramanujan-machine-q108444510.json b/data/software/ra/ramanujan-machine-q108444510.json new file mode 100644 index 000000000000..8747c78c09fe --- /dev/null +++ b/data/software/ra/ramanujan-machine-q108444510.json @@ -0,0 +1,8 @@ +{ + "slug": "ramanujan-machine-q108444510", + "name": "Ramanujan machine", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108444510" + ] +} diff --git a/data/software/ra/ramanujan-machine.json b/data/software/ra/ramanujan-machine.json new file mode 100644 index 000000000000..a723cac8b2ba --- /dev/null +++ b/data/software/ra/ramanujan-machine.json @@ -0,0 +1,8 @@ +{ + "slug": "ramanujan-machine", + "name": "Ramanujan Machine", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105334300" + ] +} diff --git a/data/software/ra/ramaze.json b/data/software/ra/ramaze.json new file mode 100644 index 000000000000..410745c4812c --- /dev/null +++ b/data/software/ra/ramaze.json @@ -0,0 +1,8 @@ +{ + "slug": "ramaze", + "name": "Ramaze", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7289159" + ] +} diff --git a/data/software/ra/ramis-software.json b/data/software/ra/ramis-software.json new file mode 100644 index 000000000000..4cbc1d1ec925 --- /dev/null +++ b/data/software/ra/ramis-software.json @@ -0,0 +1,8 @@ +{ + "slug": "ramis-software", + "name": "Ramis Software", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7289634" + ] +} diff --git a/data/software/ra/ramonia.json b/data/software/ra/ramonia.json new file mode 100644 index 000000000000..74d68d361aea --- /dev/null +++ b/data/software/ra/ramonia.json @@ -0,0 +1,8 @@ +{ + "slug": "ramonia", + "name": "Ramonia", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140301215" + ] +} diff --git a/data/software/ra/ramp-simulation-software-for-modelling-reliability-availability-and-maintainability.json b/data/software/ra/ramp-simulation-software-for-modelling-reliability-availability-and-maintainability.json new file mode 100644 index 000000000000..28068cf3a1bc --- /dev/null +++ b/data/software/ra/ramp-simulation-software-for-modelling-reliability-availability-and-maintainability.json @@ -0,0 +1,8 @@ +{ + "slug": "ramp-simulation-software-for-modelling-reliability-availability-and-maintainability", + "name": "RAMP Simulation Software for Modelling Reliability, Availability and Maintainability", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7275755" + ] +} diff --git a/data/software/ra/rampnerd.json b/data/software/ra/rampnerd.json new file mode 100644 index 000000000000..2f755743126b --- /dev/null +++ b/data/software/ra/rampnerd.json @@ -0,0 +1,11 @@ +{ + "slug": "rampnerd", + "name": "Rampnerd", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135224227" + ], + "genres": [ + "computer-aided design" + ] +} diff --git a/data/software/ra/rana.json b/data/software/ra/rana.json new file mode 100644 index 000000000000..9da28543ae60 --- /dev/null +++ b/data/software/ra/rana.json @@ -0,0 +1,8 @@ +{ + "slug": "rana", + "name": "Rana", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25222632" + ] +} diff --git a/data/software/ra/ranavision.json b/data/software/ra/ranavision.json new file mode 100644 index 000000000000..802ac986c056 --- /dev/null +++ b/data/software/ra/ranavision.json @@ -0,0 +1,11 @@ +{ + "slug": "ranavision", + "name": "RanaVision", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7290611" + ], + "developers": [ + "Mark A. O'Neill" + ] +} diff --git a/data/software/ra/random.json b/data/software/ra/random.json new file mode 100644 index 000000000000..44fbe8737fee --- /dev/null +++ b/data/software/ra/random.json @@ -0,0 +1,12 @@ +{ + "slug": "random", + "name": "Random", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q21041349" + ], + "release_date": "2014-01-01", + "licenses": [ + "freeware" + ] +} diff --git a/data/software/ra/randr.json b/data/software/ra/randr.json new file mode 100644 index 000000000000..00879d347a18 --- /dev/null +++ b/data/software/ra/randr.json @@ -0,0 +1,11 @@ +{ + "slug": "randr", + "name": "RandR", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1002643" + ], + "developers": [ + "X.Org Foundation" + ] +} diff --git a/data/software/ra/ranke-2.json b/data/software/ra/ranke-2.json new file mode 100644 index 000000000000..9b792ab28e41 --- /dev/null +++ b/data/software/ra/ranke-2.json @@ -0,0 +1,8 @@ +{ + "slug": "ranke-2", + "name": "Ranke.2", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084513" + ] +} diff --git a/data/software/ra/ranklabs.json b/data/software/ra/ranklabs.json new file mode 100644 index 000000000000..6d7cbc85acb6 --- /dev/null +++ b/data/software/ra/ranklabs.json @@ -0,0 +1,14 @@ +{ + "slug": "ranklabs", + "name": "RankLabs", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139627896" + ], + "developers": [ + "Sangmin Lee" + ], + "programming_languages": [ + "TypeScript" + ] +} diff --git a/data/software/ra/ranorex.json b/data/software/ra/ranorex.json new file mode 100644 index 000000000000..efea9e929f7a --- /dev/null +++ b/data/software/ra/ranorex.json @@ -0,0 +1,11 @@ +{ + "slug": "ranorex", + "name": "Ranorex", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7293425" + ], + "developers": [ + "Ranorex GmbH" + ] +} diff --git a/data/software/ra/ranpwd.json b/data/software/ra/ranpwd.json new file mode 100644 index 000000000000..a6a98225f20d --- /dev/null +++ b/data/software/ra/ranpwd.json @@ -0,0 +1,8 @@ +{ + "slug": "ranpwd", + "name": "ranpwd", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065230" + ] +} diff --git a/data/software/ra/rapid-evolution.json b/data/software/ra/rapid-evolution.json new file mode 100644 index 000000000000..34941ba78bd3 --- /dev/null +++ b/data/software/ra/rapid-evolution.json @@ -0,0 +1,8 @@ +{ + "slug": "rapid-evolution", + "name": "Rapid Evolution", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7294161" + ] +} diff --git a/data/software/ra/rapid-penang.json b/data/software/ra/rapid-penang.json new file mode 100644 index 000000000000..09e90c2e0a64 --- /dev/null +++ b/data/software/ra/rapid-penang.json @@ -0,0 +1,8 @@ +{ + "slug": "rapid-penang", + "name": "Rapid Penang", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4259055" + ] +} diff --git a/data/software/ra/rapid-update-cycle.json b/data/software/ra/rapid-update-cycle.json new file mode 100644 index 000000000000..46092aa4c48b --- /dev/null +++ b/data/software/ra/rapid-update-cycle.json @@ -0,0 +1,8 @@ +{ + "slug": "rapid-update-cycle", + "name": "Rapid update cycle", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7294238" + ] +} diff --git a/data/software/ra/rapido-q123159344.json b/data/software/ra/rapido-q123159344.json new file mode 100644 index 000000000000..a8e7b6406af9 --- /dev/null +++ b/data/software/ra/rapido-q123159344.json @@ -0,0 +1,11 @@ +{ + "slug": "rapido-q123159344", + "name": "Rapido", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123159344" + ], + "developers": [ + "Ex Libris Group" + ] +} diff --git a/data/software/ra/rapido.json b/data/software/ra/rapido.json new file mode 100644 index 000000000000..827e03df705b --- /dev/null +++ b/data/software/ra/rapido.json @@ -0,0 +1,8 @@ +{ + "slug": "rapido", + "name": "Rapido", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q83827956" + ] +} diff --git a/data/software/ra/rapidq.json b/data/software/ra/rapidq.json new file mode 100644 index 000000000000..02e72d83d25a --- /dev/null +++ b/data/software/ra/rapidq.json @@ -0,0 +1,8 @@ +{ + "slug": "rapidq", + "name": "RapidQ", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3419577" + ] +} diff --git a/data/software/ra/rapidweaver.json b/data/software/ra/rapidweaver.json new file mode 100644 index 000000000000..13d8fc02ecc5 --- /dev/null +++ b/data/software/ra/rapidweaver.json @@ -0,0 +1,8 @@ +{ + "slug": "rapidweaver", + "name": "RapidWeaver", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q751370" + ] +} diff --git a/data/software/ra/raptor.json b/data/software/ra/raptor.json new file mode 100644 index 000000000000..7d9bc161efb6 --- /dev/null +++ b/data/software/ra/raptor.json @@ -0,0 +1,11 @@ +{ + "slug": "raptor", + "name": "RAPTOR", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7275801" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/ra/raptorx.json b/data/software/ra/raptorx.json new file mode 100644 index 000000000000..3ce9dcb5121a --- /dev/null +++ b/data/software/ra/raptorx.json @@ -0,0 +1,8 @@ +{ + "slug": "raptorx", + "name": "RaptorX", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7294366" + ] +} diff --git a/data/software/ra/rar.json b/data/software/ra/rar.json new file mode 100644 index 000000000000..6140725d6f67 --- /dev/null +++ b/data/software/ra/rar.json @@ -0,0 +1,8 @@ +{ + "slug": "rar", + "name": "RAR", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62860863" + ] +} diff --git a/data/software/ra/ras-daemon.json b/data/software/ra/ras-daemon.json new file mode 100644 index 000000000000..93a787a65867 --- /dev/null +++ b/data/software/ra/ras-daemon.json @@ -0,0 +1,14 @@ +{ + "slug": "ras-daemon", + "name": "RAS Daemon", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120441330" + ], + "developers": [ + "Mauro Carvalho Chehab" + ], + "licenses": [ + "GNU General Public License, version 2.0" + ] +} diff --git a/data/software/ra/rasgir-check.json b/data/software/ra/rasgir-check.json new file mode 100644 index 000000000000..24a4c43c376b --- /dev/null +++ b/data/software/ra/rasgir-check.json @@ -0,0 +1,11 @@ +{ + "slug": "rasgir-check", + "name": "Rasgir check", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138388826" + ], + "developers": [ + "TaxiApps" + ] +} diff --git a/data/software/ra/rask-ai.json b/data/software/ra/rask-ai.json new file mode 100644 index 000000000000..0215e689178c --- /dev/null +++ b/data/software/ra/rask-ai.json @@ -0,0 +1,8 @@ +{ + "slug": "rask-ai", + "name": "Rask AI", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121547904" + ] +} diff --git a/data/software/ra/raspberrypi-firmware.json b/data/software/ra/raspberrypi-firmware.json new file mode 100644 index 000000000000..804bfc006aa7 --- /dev/null +++ b/data/software/ra/raspberrypi-firmware.json @@ -0,0 +1,8 @@ +{ + "slug": "raspberrypi-firmware", + "name": "raspberrypi-firmware", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975409" + ] +} diff --git a/data/software/ra/raspberrypi-sources.json b/data/software/ra/raspberrypi-sources.json new file mode 100644 index 000000000000..c904f52f0e1f --- /dev/null +++ b/data/software/ra/raspberrypi-sources.json @@ -0,0 +1,8 @@ +{ + "slug": "raspberrypi-sources", + "name": "raspberrypi-sources", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975412" + ] +} diff --git a/data/software/ra/raster3d.json b/data/software/ra/raster3d.json new file mode 100644 index 000000000000..3b3965c23f08 --- /dev/null +++ b/data/software/ra/raster3d.json @@ -0,0 +1,8 @@ +{ + "slug": "raster3d", + "name": "Raster3D", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62860706" + ] +} diff --git a/data/software/ra/ratfiv.json b/data/software/ra/ratfiv.json new file mode 100644 index 000000000000..5cb1716cc73e --- /dev/null +++ b/data/software/ra/ratfiv.json @@ -0,0 +1,8 @@ +{ + "slug": "ratfiv", + "name": "Ratfiv", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7295568" + ] +} diff --git a/data/software/ra/rational-publishing-engine.json b/data/software/ra/rational-publishing-engine.json new file mode 100644 index 000000000000..c0be06dbac85 --- /dev/null +++ b/data/software/ra/rational-publishing-engine.json @@ -0,0 +1,15 @@ +{ + "slug": "rational-publishing-engine", + "name": "Rational Publishing Engine", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16928054" + ], + "release_date": "2008-01-01", + "developers": [ + "IBM" + ], + "programming_languages": [ + "Java" + ] +} diff --git a/data/software/ra/rational-rhapsody.json b/data/software/ra/rational-rhapsody.json new file mode 100644 index 000000000000..1fc55b968620 --- /dev/null +++ b/data/software/ra/rational-rhapsody.json @@ -0,0 +1,11 @@ +{ + "slug": "rational-rhapsody", + "name": "Rational Rhapsody", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1977027" + ], + "developers": [ + "IBM" + ] +} diff --git a/data/software/ra/rats-random-accessible-text-systems.json b/data/software/ra/rats-random-accessible-text-systems.json new file mode 100644 index 000000000000..81f9318fbcb2 --- /dev/null +++ b/data/software/ra/rats-random-accessible-text-systems.json @@ -0,0 +1,8 @@ +{ + "slug": "rats-random-accessible-text-systems", + "name": "RATS (Random-Accessible Text Systems)", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084514" + ] +} diff --git a/data/software/ra/raven-lite.json b/data/software/ra/raven-lite.json new file mode 100644 index 000000000000..017b966b98f8 --- /dev/null +++ b/data/software/ra/raven-lite.json @@ -0,0 +1,8 @@ +{ + "slug": "raven-lite", + "name": "Raven Lite", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127421219" + ] +} diff --git a/data/software/ra/raw.json b/data/software/ra/raw.json new file mode 100644 index 000000000000..080afdfc3b75 --- /dev/null +++ b/data/software/ra/raw.json @@ -0,0 +1,8 @@ +{ + "slug": "raw", + "name": "RAW", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084515" + ] +} diff --git a/data/software/ra/rawdog.json b/data/software/ra/rawdog.json new file mode 100644 index 000000000000..0ad093dfba5b --- /dev/null +++ b/data/software/ra/rawdog.json @@ -0,0 +1,8 @@ +{ + "slug": "rawdog", + "name": "rawdog", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62863023" + ] +} diff --git a/data/software/ra/rawzor.json b/data/software/ra/rawzor.json new file mode 100644 index 000000000000..04d5a35dff37 --- /dev/null +++ b/data/software/ra/rawzor.json @@ -0,0 +1,8 @@ +{ + "slug": "rawzor", + "name": "Rawzor", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7297087" + ] +} diff --git a/data/software/ra/ray-dream-studio.json b/data/software/ra/ray-dream-studio.json new file mode 100644 index 000000000000..3fe7b0499400 --- /dev/null +++ b/data/software/ra/ray-dream-studio.json @@ -0,0 +1,11 @@ +{ + "slug": "ray-dream-studio", + "name": "Ray Dream Studio", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7297416" + ], + "developers": [ + "MetaCreations" + ] +} diff --git a/data/software/ra/raycast.json b/data/software/ra/raycast.json new file mode 100644 index 000000000000..1fc4478c3bfe --- /dev/null +++ b/data/software/ra/raycast.json @@ -0,0 +1,8 @@ +{ + "slug": "raycast", + "name": "Raycast", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124372806" + ] +} diff --git a/data/software/ra/razor.json b/data/software/ra/razor.json new file mode 100644 index 000000000000..2e2092f799e0 --- /dev/null +++ b/data/software/ra/razor.json @@ -0,0 +1,8 @@ +{ + "slug": "razor", + "name": "razor", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63064868" + ] +} diff --git a/data/software/ra/razzshell.json b/data/software/ra/razzshell.json new file mode 100644 index 000000000000..0b89e4285396 --- /dev/null +++ b/data/software/ra/razzshell.json @@ -0,0 +1,11 @@ +{ + "slug": "razzshell", + "name": "razzshell", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130902468" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/rb/rbbs-pc.json b/data/software/rb/rbbs-pc.json new file mode 100644 index 000000000000..9cccf1cf379f --- /dev/null +++ b/data/software/rb/rbbs-pc.json @@ -0,0 +1,8 @@ +{ + "slug": "rbbs-pc", + "name": "RBBS-PC", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7275913" + ] +} diff --git a/data/software/rb/rblcheck.json b/data/software/rb/rblcheck.json new file mode 100644 index 000000000000..587686396567 --- /dev/null +++ b/data/software/rb/rblcheck.json @@ -0,0 +1,8 @@ +{ + "slug": "rblcheck", + "name": "rblcheck", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62860694" + ] +} diff --git a/data/software/rb/rbldnsd.json b/data/software/rb/rbldnsd.json new file mode 100644 index 000000000000..37b40b6193d9 --- /dev/null +++ b/data/software/rb/rbldnsd.json @@ -0,0 +1,8 @@ +{ + "slug": "rbldnsd", + "name": "rbldnsd", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62860688" + ] +} diff --git a/data/software/rc/rcuda.json b/data/software/rc/rcuda.json new file mode 100644 index 000000000000..b4b6691c11e7 --- /dev/null +++ b/data/software/rc/rcuda.json @@ -0,0 +1,11 @@ +{ + "slug": "rcuda", + "name": "rCUDA", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17042806" + ], + "developers": [ + "Technical University of Valencia" + ] +} diff --git a/data/software/rc/rcx-command-center.json b/data/software/rc/rcx-command-center.json new file mode 100644 index 000000000000..a02d4ea32058 --- /dev/null +++ b/data/software/rc/rcx-command-center.json @@ -0,0 +1,8 @@ +{ + "slug": "rcx-command-center", + "name": "RCX Command Center", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3415106" + ] +} diff --git a/data/software/rd/rdf-gravity.json b/data/software/rd/rdf-gravity.json new file mode 100644 index 000000000000..b52bc1d07026 --- /dev/null +++ b/data/software/rd/rdf-gravity.json @@ -0,0 +1,8 @@ +{ + "slug": "rdf-gravity", + "name": "RDF Gravity", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084518" + ] +} diff --git a/data/software/rd/rdf2graph.json b/data/software/rd/rdf2graph.json new file mode 100644 index 000000000000..85e73d440b47 --- /dev/null +++ b/data/software/rd/rdf2graph.json @@ -0,0 +1,11 @@ +{ + "slug": "rdf2graph", + "name": "RDF2Graph", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q56649340" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/rd/rdf2svg-rhizomik.json b/data/software/rd/rdf2svg-rhizomik.json new file mode 100644 index 000000000000..f919aba72aad --- /dev/null +++ b/data/software/rd/rdf2svg-rhizomik.json @@ -0,0 +1,8 @@ +{ + "slug": "rdf2svg-rhizomik", + "name": "RDF2SVG (Rhizomik)", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084517" + ] +} diff --git a/data/software/rd/rdfox.json b/data/software/rd/rdfox.json new file mode 100644 index 000000000000..af73d8acea66 --- /dev/null +++ b/data/software/rd/rdfox.json @@ -0,0 +1,14 @@ +{ + "slug": "rdfox", + "name": "RDFox", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105745603" + ], + "licenses": [ + "proprietary license" + ], + "genres": [ + "graphical user interface" + ] +} diff --git a/data/software/rd/rdio.json b/data/software/rd/rdio.json new file mode 100644 index 000000000000..5e11051331c2 --- /dev/null +++ b/data/software/rd/rdio.json @@ -0,0 +1,8 @@ +{ + "slug": "rdio", + "name": "Rdio", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2134497" + ] +} diff --git a/data/software/rd/rdm-server.json b/data/software/rd/rdm-server.json new file mode 100644 index 000000000000..2dfe371e9035 --- /dev/null +++ b/data/software/rd/rdm-server.json @@ -0,0 +1,8 @@ +{ + "slug": "rdm-server", + "name": "RDM Server", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7276242" + ] +} diff --git a/data/software/rd/rdup.json b/data/software/rd/rdup.json new file mode 100644 index 000000000000..caaf48eae626 --- /dev/null +++ b/data/software/rd/rdup.json @@ -0,0 +1,8 @@ +{ + "slug": "rdup", + "name": "rdup", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62862790" + ] +} diff --git a/data/software/re/re-flex.json b/data/software/re/re-flex.json new file mode 100644 index 000000000000..cc40f54ccd83 --- /dev/null +++ b/data/software/re/re-flex.json @@ -0,0 +1,8 @@ +{ + "slug": "re-flex", + "name": "RE/flex", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140133467" + ] +} diff --git a/data/software/re/react-checkout-pro.json b/data/software/re/react-checkout-pro.json new file mode 100644 index 000000000000..36f04ecfd172 --- /dev/null +++ b/data/software/re/react-checkout-pro.json @@ -0,0 +1,14 @@ +{ + "slug": "react-checkout-pro", + "name": "React Checkout Pro", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140279057" + ], + "developers": [ + "Towering Media" + ], + "programming_languages": [ + "PHP" + ] +} diff --git a/data/software/re/react-native.json b/data/software/re/react-native.json new file mode 100644 index 000000000000..42bd23b4a9f3 --- /dev/null +++ b/data/software/re/react-native.json @@ -0,0 +1,22 @@ +{ + "slug": "react-native", + "name": "React Native", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q55774523" + ], + "developers": [ + "Meta" + ], + "operating_systems": [ + "cross-platform" + ], + "programming_languages": [ + "Java", + "Python", + "Objective-C" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/re/reactive-blocks.json b/data/software/re/reactive-blocks.json new file mode 100644 index 000000000000..adaee8c475b8 --- /dev/null +++ b/data/software/re/reactive-blocks.json @@ -0,0 +1,9 @@ +{ + "slug": "reactive-blocks", + "name": "Reactive Blocks", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28403573" + ], + "release_date": "2011-01-01" +} diff --git a/data/software/re/reactive-streams.json b/data/software/re/reactive-streams.json new file mode 100644 index 000000000000..ba79ac32316e --- /dev/null +++ b/data/software/re/reactive-streams.json @@ -0,0 +1,8 @@ +{ + "slug": "reactive-streams", + "name": "Reactive Streams", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22342969" + ] +} diff --git a/data/software/re/reactivedata.json b/data/software/re/reactivedata.json new file mode 100644 index 000000000000..80789b90bd2f --- /dev/null +++ b/data/software/re/reactivedata.json @@ -0,0 +1,8 @@ +{ + "slug": "reactivedata", + "name": "reactiveData", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975414" + ] +} diff --git a/data/software/re/reactor.json b/data/software/re/reactor.json new file mode 100644 index 000000000000..c69689999264 --- /dev/null +++ b/data/software/re/reactor.json @@ -0,0 +1,8 @@ +{ + "slug": "reactor", + "name": "Reactor", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4048052" + ] +} diff --git a/data/software/re/read-edid.json b/data/software/re/read-edid.json new file mode 100644 index 000000000000..cf82c95b286a --- /dev/null +++ b/data/software/re/read-edid.json @@ -0,0 +1,8 @@ +{ + "slug": "read-edid", + "name": "read-edid", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62862731" + ] +} diff --git a/data/software/re/read-only-domain-controller.json b/data/software/re/read-only-domain-controller.json new file mode 100644 index 000000000000..c4caa311bf2b --- /dev/null +++ b/data/software/re/read-only-domain-controller.json @@ -0,0 +1,8 @@ +{ + "slug": "read-only-domain-controller", + "name": "read-only domain controller", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1314677" + ] +} diff --git a/data/software/re/readability-js.json b/data/software/re/readability-js.json new file mode 100644 index 000000000000..acb60bdc7290 --- /dev/null +++ b/data/software/re/readability-js.json @@ -0,0 +1,8 @@ +{ + "slug": "readability-js", + "name": "Readability.js", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q103478597" + ] +} diff --git a/data/software/re/readium-lcp.json b/data/software/re/readium-lcp.json new file mode 100644 index 000000000000..5126e178a151 --- /dev/null +++ b/data/software/re/readium-lcp.json @@ -0,0 +1,8 @@ +{ + "slug": "readium-lcp", + "name": "Readium LCP", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130395447" + ] +} diff --git a/data/software/re/readless.json b/data/software/re/readless.json new file mode 100644 index 000000000000..a9f9cec2adaa --- /dev/null +++ b/data/software/re/readless.json @@ -0,0 +1,8 @@ +{ + "slug": "readless", + "name": "Readless", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139629641" + ] +} diff --git a/data/software/re/readmaniac.json b/data/software/re/readmaniac.json new file mode 100644 index 000000000000..c37e151aa07e --- /dev/null +++ b/data/software/re/readmaniac.json @@ -0,0 +1,11 @@ +{ + "slug": "readmaniac", + "name": "ReadManiac", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4048051" + ], + "programming_languages": [ + "Java" + ] +} diff --git a/data/software/re/readplease.json b/data/software/re/readplease.json new file mode 100644 index 000000000000..36dae402a3e3 --- /dev/null +++ b/data/software/re/readplease.json @@ -0,0 +1,8 @@ +{ + "slug": "readplease", + "name": "ReadPlease", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7300350" + ] +} diff --git a/data/software/re/readware-information-processor.json b/data/software/re/readware-information-processor.json new file mode 100644 index 000000000000..9cc03bb8d2d1 --- /dev/null +++ b/data/software/re/readware-information-processor.json @@ -0,0 +1,8 @@ +{ + "slug": "readware-information-processor", + "name": "Readware Information Processor", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087704" + ] +} diff --git a/data/software/re/ready-set-go.json b/data/software/re/ready-set-go.json new file mode 100644 index 000000000000..02e8ed90e453 --- /dev/null +++ b/data/software/re/ready-set-go.json @@ -0,0 +1,8 @@ +{ + "slug": "ready-set-go", + "name": "Ready, Set, Go!", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3930961" + ] +} diff --git a/data/software/re/readyboost.json b/data/software/re/readyboost.json new file mode 100644 index 000000000000..f5a87d662e7d --- /dev/null +++ b/data/software/re/readyboost.json @@ -0,0 +1,8 @@ +{ + "slug": "readyboost", + "name": "ReadyBoost", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q426740" + ] +} diff --git a/data/software/re/real-time-audiosuite.json b/data/software/re/real-time-audiosuite.json new file mode 100644 index 000000000000..35c5f4ca1089 --- /dev/null +++ b/data/software/re/real-time-audiosuite.json @@ -0,0 +1,11 @@ +{ + "slug": "real-time-audiosuite", + "name": "Real Time AudioSuite", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2071453" + ], + "developers": [ + "Avid Technology" + ] +} diff --git a/data/software/re/real-time-developer-studio.json b/data/software/re/real-time-developer-studio.json new file mode 100644 index 000000000000..e82a6ed13ca5 --- /dev/null +++ b/data/software/re/real-time-developer-studio.json @@ -0,0 +1,8 @@ +{ + "slug": "real-time-developer-studio", + "name": "Real Time Developer Studio", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17148438" + ] +} diff --git a/data/software/re/real-time-dispatching.json b/data/software/re/real-time-dispatching.json new file mode 100644 index 000000000000..bf1ea25ff2dc --- /dev/null +++ b/data/software/re/real-time-dispatching.json @@ -0,0 +1,8 @@ +{ + "slug": "real-time-dispatching", + "name": "Real-Time Dispatching", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7300767" + ] +} diff --git a/data/software/re/real-time-java.json b/data/software/re/real-time-java.json new file mode 100644 index 000000000000..d68aa5493b1b --- /dev/null +++ b/data/software/re/real-time-java.json @@ -0,0 +1,8 @@ +{ + "slug": "real-time-java", + "name": "Real time Java", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1373903" + ] +} diff --git a/data/software/re/real-world-racing.json b/data/software/re/real-world-racing.json new file mode 100644 index 000000000000..ea886395dc6e --- /dev/null +++ b/data/software/re/real-world-racing.json @@ -0,0 +1,8 @@ +{ + "slug": "real-world-racing", + "name": "Real World Racing", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q98971801" + ] +} diff --git a/data/software/re/realdownloader.json b/data/software/re/realdownloader.json new file mode 100644 index 000000000000..541250c9692b --- /dev/null +++ b/data/software/re/realdownloader.json @@ -0,0 +1,11 @@ +{ + "slug": "realdownloader", + "name": "RealDownloader", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q21161093" + ], + "developers": [ + "RealNetworks" + ] +} diff --git a/data/software/re/realflow.json b/data/software/re/realflow.json new file mode 100644 index 000000000000..c823506be2a5 --- /dev/null +++ b/data/software/re/realflow.json @@ -0,0 +1,15 @@ +{ + "slug": "realflow", + "name": "RealFlow", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1331305" + ], + "developers": [ + "Next Limit Technologies" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/software/re/reality-lab.json b/data/software/re/reality-lab.json new file mode 100644 index 000000000000..e51be90b85df --- /dev/null +++ b/data/software/re/reality-lab.json @@ -0,0 +1,8 @@ +{ + "slug": "reality-lab", + "name": "Reality Lab", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7301255" + ] +} diff --git a/data/software/re/realitycapture.json b/data/software/re/realitycapture.json new file mode 100644 index 000000000000..04e83c68980d --- /dev/null +++ b/data/software/re/realitycapture.json @@ -0,0 +1,11 @@ +{ + "slug": "realitycapture", + "name": "RealityCapture", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28324868" + ], + "developers": [ + "Capturing Reality" + ] +} diff --git a/data/software/re/realone-player.json b/data/software/re/realone-player.json new file mode 100644 index 000000000000..78870401b44a --- /dev/null +++ b/data/software/re/realone-player.json @@ -0,0 +1,8 @@ +{ + "slug": "realone-player", + "name": "RealOne Player", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121095694" + ] +} diff --git a/data/software/re/realpc.json b/data/software/re/realpc.json new file mode 100644 index 000000000000..10825120d103 --- /dev/null +++ b/data/software/re/realpc.json @@ -0,0 +1,8 @@ +{ + "slug": "realpc", + "name": "RealPC", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7300816" + ] +} diff --git a/data/software/re/realsky.json b/data/software/re/realsky.json new file mode 100644 index 000000000000..357d683e1be7 --- /dev/null +++ b/data/software/re/realsky.json @@ -0,0 +1,11 @@ +{ + "slug": "realsky", + "name": "RealSky", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7300818" + ], + "publishers": [ + "Astronomical Society of the Pacific" + ] +} diff --git a/data/software/re/realsoft-3d.json b/data/software/re/realsoft-3d.json new file mode 100644 index 000000000000..84e6d4a60d45 --- /dev/null +++ b/data/software/re/realsoft-3d.json @@ -0,0 +1,14 @@ +{ + "slug": "realsoft-3d", + "name": "Realsoft 3D", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2134861" + ], + "operating_systems": [ + "IRIX", + "AmigaOS", + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/software/re/realtek-media-player.json b/data/software/re/realtek-media-player.json new file mode 100644 index 000000000000..32e662f00648 --- /dev/null +++ b/data/software/re/realtek-media-player.json @@ -0,0 +1,11 @@ +{ + "slug": "realtek-media-player", + "name": "Realtek Media Player", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6102255" + ], + "developers": [ + "Realtek" + ] +} diff --git a/data/software/re/realthings.json b/data/software/re/realthings.json new file mode 100644 index 000000000000..e0255686ef32 --- /dev/null +++ b/data/software/re/realthings.json @@ -0,0 +1,11 @@ +{ + "slug": "realthings", + "name": "RealThings", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7300824" + ], + "developers": [ + "IBM" + ] +} diff --git a/data/software/re/reaper.json b/data/software/re/reaper.json new file mode 100644 index 000000000000..81579a635646 --- /dev/null +++ b/data/software/re/reaper.json @@ -0,0 +1,11 @@ +{ + "slug": "reaper", + "name": "Reaper", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6102262" + ], + "operating_systems": [ + "TENEX" + ] +} diff --git a/data/software/re/reason.json b/data/software/re/reason.json new file mode 100644 index 000000000000..65e7468e61d6 --- /dev/null +++ b/data/software/re/reason.json @@ -0,0 +1,8 @@ +{ + "slug": "reason", + "name": "Reason", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11890335" + ] +} diff --git a/data/software/re/rebelle.json b/data/software/re/rebelle.json new file mode 100644 index 000000000000..03ce07877a97 --- /dev/null +++ b/data/software/re/rebelle.json @@ -0,0 +1,8 @@ +{ + "slug": "rebelle", + "name": "Rebelle", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126391615" + ] +} diff --git a/data/software/re/rebol.json b/data/software/re/rebol.json new file mode 100644 index 000000000000..c9483f3388b2 --- /dev/null +++ b/data/software/re/rebol.json @@ -0,0 +1,12 @@ +{ + "slug": "rebol", + "name": "REBOL", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1359171" + ], + "licenses": [ + "Apache Software License 2.0", + "Apache License" + ] +} diff --git a/data/software/re/rebtel.json b/data/software/re/rebtel.json new file mode 100644 index 000000000000..4177f3433b5b --- /dev/null +++ b/data/software/re/rebtel.json @@ -0,0 +1,8 @@ +{ + "slug": "rebtel", + "name": "Rebtel", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7302216" + ] +} diff --git a/data/software/re/rebulk.json b/data/software/re/rebulk.json new file mode 100644 index 000000000000..ea4ae9955b79 --- /dev/null +++ b/data/software/re/rebulk.json @@ -0,0 +1,11 @@ +{ + "slug": "rebulk", + "name": "rebulk", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975416" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/re/recaptcha.json b/data/software/re/recaptcha.json new file mode 100644 index 000000000000..6d8d653a2def --- /dev/null +++ b/data/software/re/recaptcha.json @@ -0,0 +1,11 @@ +{ + "slug": "recaptcha", + "name": "reCAPTCHA", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q188054" + ], + "developers": [ + "Luis von Ahn" + ] +} diff --git a/data/software/re/reception-genie.json b/data/software/re/reception-genie.json new file mode 100644 index 000000000000..704819d2f48d --- /dev/null +++ b/data/software/re/reception-genie.json @@ -0,0 +1,11 @@ +{ + "slug": "reception-genie", + "name": "Reception Genie", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139718019" + ], + "developers": [ + "Otterco Ltd" + ] +} diff --git a/data/software/re/reception-reader.json b/data/software/re/reception-reader.json new file mode 100644 index 000000000000..b59c7d895c3e --- /dev/null +++ b/data/software/re/reception-reader.json @@ -0,0 +1,8 @@ +{ + "slug": "reception-reader", + "name": "Reception Reader", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084520" + ] +} diff --git a/data/software/re/recogito.json b/data/software/re/recogito.json new file mode 100644 index 000000000000..39190e17d668 --- /dev/null +++ b/data/software/re/recogito.json @@ -0,0 +1,14 @@ +{ + "slug": "recogito", + "name": "Recogito", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q74692524" + ], + "developers": [ + "Rainer Simon" + ], + "licenses": [ + "Apache Software License 2.0" + ] +} diff --git a/data/software/re/recollection.json b/data/software/re/recollection.json new file mode 100644 index 000000000000..b292d69b59da --- /dev/null +++ b/data/software/re/recollection.json @@ -0,0 +1,8 @@ +{ + "slug": "recollection", + "name": "Recollection", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084521" + ] +} diff --git a/data/software/re/recombination-detection-program.json b/data/software/re/recombination-detection-program.json new file mode 100644 index 000000000000..cf36f9b5109f --- /dev/null +++ b/data/software/re/recombination-detection-program.json @@ -0,0 +1,8 @@ +{ + "slug": "recombination-detection-program", + "name": "Recombination detection program", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7302709" + ] +} diff --git a/data/software/re/recommender-system.json b/data/software/re/recommender-system.json new file mode 100644 index 000000000000..9caff1bfefd4 --- /dev/null +++ b/data/software/re/recommender-system.json @@ -0,0 +1,8 @@ +{ + "slug": "recommender-system", + "name": "recommender system", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q554950" + ] +} diff --git a/data/software/re/recommerceiq.json b/data/software/re/recommerceiq.json new file mode 100644 index 000000000000..0161fadf6db0 --- /dev/null +++ b/data/software/re/recommerceiq.json @@ -0,0 +1,8 @@ +{ + "slug": "recommerceiq", + "name": "RecommerceIQ", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138648213" + ] +} diff --git a/data/software/re/reconcile-csv.json b/data/software/re/reconcile-csv.json new file mode 100644 index 000000000000..480b298eeee1 --- /dev/null +++ b/data/software/re/reconcile-csv.json @@ -0,0 +1,11 @@ +{ + "slug": "reconcile-csv", + "name": "Reconcile CSV", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113375760" + ], + "programming_languages": [ + "Clojure" + ] +} diff --git a/data/software/re/record.json b/data/software/re/record.json new file mode 100644 index 000000000000..7b4d05e4e36e --- /dev/null +++ b/data/software/re/record.json @@ -0,0 +1,18 @@ +{ + "slug": "record", + "name": "Record", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1130683" + ], + "developers": [ + "Reason Studios" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/re/recover-my-files.json b/data/software/re/recover-my-files.json new file mode 100644 index 000000000000..e90402d44d0b --- /dev/null +++ b/data/software/re/recover-my-files.json @@ -0,0 +1,8 @@ +{ + "slug": "recover-my-files", + "name": "Recover My Files", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17143039" + ] +} diff --git a/data/software/re/recoverjpeg.json b/data/software/re/recoverjpeg.json new file mode 100644 index 000000000000..5401b3970593 --- /dev/null +++ b/data/software/re/recoverjpeg.json @@ -0,0 +1,8 @@ +{ + "slug": "recoverjpeg", + "name": "recoverjpeg", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62862617" + ] +} diff --git a/data/software/re/recovery-toolbox.json b/data/software/re/recovery-toolbox.json new file mode 100644 index 000000000000..adcf7ad9a46a --- /dev/null +++ b/data/software/re/recovery-toolbox.json @@ -0,0 +1,8 @@ +{ + "slug": "recovery-toolbox", + "name": "Recovery Toolbox", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q90818592" + ] +} diff --git a/data/software/re/recruit-crm.json b/data/software/re/recruit-crm.json new file mode 100644 index 000000000000..e3d5a70e3432 --- /dev/null +++ b/data/software/re/recruit-crm.json @@ -0,0 +1,8 @@ +{ + "slug": "recruit-crm", + "name": "Recruit CRM", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q133257276" + ] +} diff --git a/data/software/re/recruitee.json b/data/software/re/recruitee.json new file mode 100644 index 000000000000..72484efcaadc --- /dev/null +++ b/data/software/re/recruitee.json @@ -0,0 +1,8 @@ +{ + "slug": "recruitee", + "name": "Recruitee", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28135088" + ] +} diff --git a/data/software/re/recsql.json b/data/software/re/recsql.json new file mode 100644 index 000000000000..72c765f5ef89 --- /dev/null +++ b/data/software/re/recsql.json @@ -0,0 +1,8 @@ +{ + "slug": "recsql", + "name": "RecSQL", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975417" + ] +} diff --git a/data/software/re/recycle.json b/data/software/re/recycle.json new file mode 100644 index 000000000000..aec739f6333d --- /dev/null +++ b/data/software/re/recycle.json @@ -0,0 +1,11 @@ +{ + "slug": "recycle", + "name": "ReCycle", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2068845" + ], + "developers": [ + "Reason Studios" + ] +} diff --git a/data/software/re/red-carpet.json b/data/software/re/red-carpet.json new file mode 100644 index 000000000000..ee1016c7e41c --- /dev/null +++ b/data/software/re/red-carpet.json @@ -0,0 +1,11 @@ +{ + "slug": "red-carpet", + "name": "Red Carpet", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17077808" + ], + "developers": [ + "Novell" + ] +} diff --git a/data/software/re/red-hat-test-suite.json b/data/software/re/red-hat-test-suite.json new file mode 100644 index 000000000000..9de82f437499 --- /dev/null +++ b/data/software/re/red-hat-test-suite.json @@ -0,0 +1,8 @@ +{ + "slug": "red-hat-test-suite", + "name": "Red Hat Test Suite", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7304228" + ] +} diff --git a/data/software/re/red-hat-virtualization.json b/data/software/re/red-hat-virtualization.json new file mode 100644 index 000000000000..2b4e37172fc0 --- /dev/null +++ b/data/software/re/red-hat-virtualization.json @@ -0,0 +1,14 @@ +{ + "slug": "red-hat-virtualization", + "name": "Red Hat Virtualization", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7304225" + ], + "developers": [ + "Red Hat" + ], + "programming_languages": [ + "Java" + ] +} diff --git a/data/software/re/red-moon.json b/data/software/re/red-moon.json new file mode 100644 index 000000000000..81fa81ca5c78 --- /dev/null +++ b/data/software/re/red-moon.json @@ -0,0 +1,14 @@ +{ + "slug": "red-moon", + "name": "Red Moon", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q48782900" + ], + "programming_languages": [ + "Kotlin" + ], + "licenses": [ + "GNU General Public License, version 3.0" + ] +} diff --git a/data/software/re/red-ryder.json b/data/software/re/red-ryder.json new file mode 100644 index 000000000000..a282d3ee2b89 --- /dev/null +++ b/data/software/re/red-ryder.json @@ -0,0 +1,11 @@ +{ + "slug": "red-ryder", + "name": "Red Ryder", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110154768" + ], + "operating_systems": [ + "Classic Mac OS" + ] +} diff --git a/data/software/re/redcap.json b/data/software/re/redcap.json new file mode 100644 index 000000000000..956f64ca2aef --- /dev/null +++ b/data/software/re/redcap.json @@ -0,0 +1,14 @@ +{ + "slug": "redcap", + "name": "REDCap", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7305527" + ], + "programming_languages": [ + "PHP" + ], + "licenses": [ + "end-user license agreement" + ] +} diff --git a/data/software/re/reddwarf-server.json b/data/software/re/reddwarf-server.json new file mode 100644 index 000000000000..495eda8bd7e9 --- /dev/null +++ b/data/software/re/reddwarf-server.json @@ -0,0 +1,8 @@ +{ + "slug": "reddwarf-server", + "name": "RedDwarf Server", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7303550" + ] +} diff --git a/data/software/re/redhawk.json b/data/software/re/redhawk.json new file mode 100644 index 000000000000..e20869c88a98 --- /dev/null +++ b/data/software/re/redhawk.json @@ -0,0 +1,8 @@ +{ + "slug": "redhawk", + "name": "REDHAWK", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115729493" + ] +} diff --git a/data/software/re/redirect.json b/data/software/re/redirect.json new file mode 100644 index 000000000000..d2cffa6c832c --- /dev/null +++ b/data/software/re/redirect.json @@ -0,0 +1,8 @@ +{ + "slug": "redirect", + "name": "redirect", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q43534506" + ] +} diff --git a/data/software/re/redoflacs.json b/data/software/re/redoflacs.json new file mode 100644 index 000000000000..5d583a5463f9 --- /dev/null +++ b/data/software/re/redoflacs.json @@ -0,0 +1,8 @@ +{ + "slug": "redoflacs", + "name": "redoflacs", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065329" + ] +} diff --git a/data/software/re/redpim.json b/data/software/re/redpim.json new file mode 100644 index 000000000000..ec8a1356c5df --- /dev/null +++ b/data/software/re/redpim.json @@ -0,0 +1,8 @@ +{ + "slug": "redpim", + "name": "redPIM", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140003313" + ] +} diff --git a/data/software/re/redshift-q108084006.json b/data/software/re/redshift-q108084006.json new file mode 100644 index 000000000000..c3d944ad6a5c --- /dev/null +++ b/data/software/re/redshift-q108084006.json @@ -0,0 +1,8 @@ +{ + "slug": "redshift-q108084006", + "name": "Redshift", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108084006" + ] +} diff --git a/data/software/re/redshift.json b/data/software/re/redshift.json new file mode 100644 index 000000000000..62eed52e59c0 --- /dev/null +++ b/data/software/re/redshift.json @@ -0,0 +1,11 @@ +{ + "slug": "redshift", + "name": "RedShift", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3918336" + ], + "operating_systems": [ + "iOS" + ] +} diff --git a/data/software/re/redsn0w.json b/data/software/re/redsn0w.json new file mode 100644 index 000000000000..463e599c1ead --- /dev/null +++ b/data/software/re/redsn0w.json @@ -0,0 +1,12 @@ +{ + "slug": "redsn0w", + "name": "redsn0w", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q307257" + ], + "release_date": "2009-02-03", + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/re/redsocks.json b/data/software/re/redsocks.json new file mode 100644 index 000000000000..4cb8d7b4899c --- /dev/null +++ b/data/software/re/redsocks.json @@ -0,0 +1,8 @@ +{ + "slug": "redsocks", + "name": "redsocks", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q128800524" + ] +} diff --git a/data/software/re/reduce.json b/data/software/re/reduce.json new file mode 100644 index 000000000000..3b0afee0e3de --- /dev/null +++ b/data/software/re/reduce.json @@ -0,0 +1,8 @@ +{ + "slug": "reduce", + "name": "REDUCE", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q114840896" + ] +} diff --git a/data/software/re/reduck-ai.json b/data/software/re/reduck-ai.json new file mode 100644 index 000000000000..967dd7f88f24 --- /dev/null +++ b/data/software/re/reduck-ai.json @@ -0,0 +1,8 @@ +{ + "slug": "reduck-ai", + "name": "Reduck AI", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139503306" + ] +} diff --git a/data/software/re/redux.json b/data/software/re/redux.json new file mode 100644 index 000000000000..cbc65222683e --- /dev/null +++ b/data/software/re/redux.json @@ -0,0 +1,8 @@ +{ + "slug": "redux", + "name": "REDUX", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087705" + ] +} diff --git a/data/software/re/reeco.json b/data/software/re/reeco.json new file mode 100644 index 000000000000..07f8220e5c59 --- /dev/null +++ b/data/software/re/reeco.json @@ -0,0 +1,11 @@ +{ + "slug": "reeco", + "name": "Reeco", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138773743" + ], + "developers": [ + "Stefano Cipriani Studio" + ] +} diff --git a/data/software/re/reeder.json b/data/software/re/reeder.json new file mode 100644 index 000000000000..a33731a34aa5 --- /dev/null +++ b/data/software/re/reeder.json @@ -0,0 +1,16 @@ +{ + "slug": "reeder", + "name": "Reeder", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2136493" + ], + "operating_systems": [ + "iPadOS", + "iOS", + "macOS" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/re/reface.json b/data/software/re/reface.json new file mode 100644 index 000000000000..08bd2d7a817c --- /dev/null +++ b/data/software/re/reface.json @@ -0,0 +1,8 @@ +{ + "slug": "reface", + "name": "Reface", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q100374537" + ] +} diff --git a/data/software/re/refdb.json b/data/software/re/refdb.json new file mode 100644 index 000000000000..99d5f26d1fe7 --- /dev/null +++ b/data/software/re/refdb.json @@ -0,0 +1,8 @@ +{ + "slug": "refdb", + "name": "RefDB", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17077868" + ] +} diff --git a/data/software/re/refeus.json b/data/software/re/refeus.json new file mode 100644 index 000000000000..d319302b4330 --- /dev/null +++ b/data/software/re/refeus.json @@ -0,0 +1,12 @@ +{ + "slug": "refeus", + "name": "Refeus", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105748779" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/software/re/refinegems.json b/data/software/re/refinegems.json new file mode 100644 index 000000000000..703626b0975f --- /dev/null +++ b/data/software/re/refinegems.json @@ -0,0 +1,14 @@ +{ + "slug": "refinegems", + "name": "refineGEMs", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123561349" + ], + "programming_languages": [ + "Python" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/re/refiner.json b/data/software/re/refiner.json new file mode 100644 index 000000000000..437cf73cd461 --- /dev/null +++ b/data/software/re/refiner.json @@ -0,0 +1,8 @@ +{ + "slug": "refiner", + "name": "Refiner", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140033544" + ] +} diff --git a/data/software/re/refprop.json b/data/software/re/refprop.json new file mode 100644 index 000000000000..77ef3016587f --- /dev/null +++ b/data/software/re/refprop.json @@ -0,0 +1,8 @@ +{ + "slug": "refprop", + "name": "REFPROP", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131742770" + ] +} diff --git a/data/software/re/reframe-it.json b/data/software/re/reframe-it.json new file mode 100644 index 000000000000..1ef3f7a1631f --- /dev/null +++ b/data/software/re/reframe-it.json @@ -0,0 +1,8 @@ +{ + "slug": "reframe-it", + "name": "Reframe It", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084522" + ] +} diff --git a/data/software/re/refseek.json b/data/software/re/refseek.json new file mode 100644 index 000000000000..dd2a10e84ff3 --- /dev/null +++ b/data/software/re/refseek.json @@ -0,0 +1,8 @@ +{ + "slug": "refseek", + "name": "RefSeek", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110787633" + ] +} diff --git a/data/software/re/regent.json b/data/software/re/regent.json new file mode 100644 index 000000000000..5b3be9370d4d --- /dev/null +++ b/data/software/re/regent.json @@ -0,0 +1,8 @@ +{ + "slug": "regent", + "name": "Regent", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140167607" + ] +} diff --git a/data/software/re/regexxer.json b/data/software/re/regexxer.json new file mode 100644 index 000000000000..9877c328f65d --- /dev/null +++ b/data/software/re/regexxer.json @@ -0,0 +1,8 @@ +{ + "slug": "regexxer", + "name": "regexxer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62862608" + ] +} diff --git a/data/software/re/regiograph.json b/data/software/re/regiograph.json new file mode 100644 index 000000000000..dbd43b0b12b9 --- /dev/null +++ b/data/software/re/regiograph.json @@ -0,0 +1,8 @@ +{ + "slug": "regiograph", + "name": "RegioGraph", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2138115" + ] +} diff --git a/data/software/re/regional-atmospheric-modeling-system.json b/data/software/re/regional-atmospheric-modeling-system.json new file mode 100644 index 000000000000..cb6e9ef38085 --- /dev/null +++ b/data/software/re/regional-atmospheric-modeling-system.json @@ -0,0 +1,12 @@ +{ + "slug": "regional-atmospheric-modeling-system", + "name": "Regional Atmospheric Modeling System", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18393898" + ], + "developers": [ + "William R. Cotton", + "Roger A. Pielke" + ] +} diff --git a/data/software/re/registax.json b/data/software/re/registax.json new file mode 100644 index 000000000000..8b994a8c2c28 --- /dev/null +++ b/data/software/re/registax.json @@ -0,0 +1,14 @@ +{ + "slug": "registax", + "name": "Registax", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3423447" + ], + "operating_systems": [ + "Microsoft Windows" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/re/reiboot.json b/data/software/re/reiboot.json new file mode 100644 index 000000000000..cf5982fd100e --- /dev/null +++ b/data/software/re/reiboot.json @@ -0,0 +1,16 @@ +{ + "slug": "reiboot", + "name": "ReiBoot", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q56137565" + ], + "developers": [ + "Tenorshare" + ], + "operating_systems": [ + "iOS", + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/software/re/reign.json b/data/software/re/reign.json new file mode 100644 index 000000000000..6fbe23edd1c3 --- /dev/null +++ b/data/software/re/reign.json @@ -0,0 +1,11 @@ +{ + "slug": "reign", + "name": "Reign", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139255633" + ], + "developers": [ + "iTmethods Inc." + ] +} diff --git a/data/software/re/relap5-3d.json b/data/software/re/relap5-3d.json new file mode 100644 index 000000000000..091d0c7b37d0 --- /dev/null +++ b/data/software/re/relap5-3d.json @@ -0,0 +1,15 @@ +{ + "slug": "relap5-3d", + "name": "RELAP5-3D", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7276340" + ], + "release_date": "1997-07-06", + "developers": [ + "Idaho National Laboratory" + ], + "programming_languages": [ + "Fortran" + ] +} diff --git a/data/software/re/relate.json b/data/software/re/relate.json new file mode 100644 index 000000000000..30bec121d9cc --- /dev/null +++ b/data/software/re/relate.json @@ -0,0 +1,12 @@ +{ + "slug": "relate", + "name": "Relate", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139253995" + ], + "release_date": "2023-11-16", + "developers": [ + "Pixelic" + ] +} diff --git a/data/software/re/release-monitoring.json b/data/software/re/release-monitoring.json new file mode 100644 index 000000000000..b9b38bfdcee9 --- /dev/null +++ b/data/software/re/release-monitoring.json @@ -0,0 +1,14 @@ +{ + "slug": "release-monitoring", + "name": "release-monitoring", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q119854770" + ], + "programming_languages": [ + "Python" + ], + "licenses": [ + "GNU General Public License, version 2.0" + ] +} diff --git a/data/software/re/relfinder.json b/data/software/re/relfinder.json new file mode 100644 index 000000000000..8fdff55cb1be --- /dev/null +++ b/data/software/re/relfinder.json @@ -0,0 +1,8 @@ +{ + "slug": "relfinder", + "name": "RelFinder", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084523" + ] +} diff --git a/data/software/re/relic-hunters-zero.json b/data/software/re/relic-hunters-zero.json new file mode 100644 index 000000000000..ac9c10d32af4 --- /dev/null +++ b/data/software/re/relic-hunters-zero.json @@ -0,0 +1,15 @@ +{ + "slug": "relic-hunters-zero", + "name": "Relic Hunters Zero", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q97287596" + ], + "release_date": "2015-08-18", + "publishers": [ + "Akupara Games" + ], + "genres": [ + "action game" + ] +} diff --git a/data/software/re/relux.json b/data/software/re/relux.json new file mode 100644 index 000000000000..9f745987185d --- /dev/null +++ b/data/software/re/relux.json @@ -0,0 +1,8 @@ +{ + "slug": "relux", + "name": "Relux", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q15867643" + ] +} diff --git a/data/software/re/remember-me.json b/data/software/re/remember-me.json new file mode 100644 index 000000000000..1d1e045dca30 --- /dev/null +++ b/data/software/re/remember-me.json @@ -0,0 +1,8 @@ +{ + "slug": "remember-me", + "name": "Remember Me", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126950965" + ] +} diff --git a/data/software/re/remember-the-milk.json b/data/software/re/remember-the-milk.json new file mode 100644 index 000000000000..01998c04fff2 --- /dev/null +++ b/data/software/re/remember-the-milk.json @@ -0,0 +1,8 @@ +{ + "slug": "remember-the-milk", + "name": "Remember the Milk", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q905544" + ] +} diff --git a/data/software/re/remento.json b/data/software/re/remento.json new file mode 100644 index 000000000000..a15326a2b050 --- /dev/null +++ b/data/software/re/remento.json @@ -0,0 +1,8 @@ +{ + "slug": "remento", + "name": "Remento", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136540458" + ] +} diff --git a/data/software/re/remo-3d.json b/data/software/re/remo-3d.json new file mode 100644 index 000000000000..28e7056d2661 --- /dev/null +++ b/data/software/re/remo-3d.json @@ -0,0 +1,11 @@ +{ + "slug": "remo-3d", + "name": "Remo 3D", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7312027" + ], + "developers": [ + "Remograph" + ] +} diff --git a/data/software/re/remote-commander.json b/data/software/re/remote-commander.json new file mode 100644 index 000000000000..311478f2f555 --- /dev/null +++ b/data/software/re/remote-commander.json @@ -0,0 +1,8 @@ +{ + "slug": "remote-commander", + "name": "Remote Commander", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121631721" + ] +} diff --git a/data/software/re/remote-graphics-software.json b/data/software/re/remote-graphics-software.json new file mode 100644 index 000000000000..d25e0abc04fd --- /dev/null +++ b/data/software/re/remote-graphics-software.json @@ -0,0 +1,11 @@ +{ + "slug": "remote-graphics-software", + "name": "Remote Graphics Software", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7312107" + ], + "developers": [ + "HP Inc." + ] +} diff --git a/data/software/re/remote-install-mac-os-x.json b/data/software/re/remote-install-mac-os-x.json new file mode 100644 index 000000000000..223bca148d52 --- /dev/null +++ b/data/software/re/remote-install-mac-os-x.json @@ -0,0 +1,14 @@ +{ + "slug": "remote-install-mac-os-x", + "name": "Remote Install Mac OS X", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7312110" + ], + "developers": [ + "Apple Inc." + ], + "operating_systems": [ + "macOS" + ] +} diff --git a/data/software/re/remote-play.json b/data/software/re/remote-play.json new file mode 100644 index 000000000000..e81180973666 --- /dev/null +++ b/data/software/re/remote-play.json @@ -0,0 +1,14 @@ +{ + "slug": "remote-play", + "name": "Remote Play", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4048176" + ], + "developers": [ + "Sony Interactive Entertainment" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/re/remote-spooling-communications-subsystem.json b/data/software/re/remote-spooling-communications-subsystem.json new file mode 100644 index 000000000000..8b356651e6c5 --- /dev/null +++ b/data/software/re/remote-spooling-communications-subsystem.json @@ -0,0 +1,15 @@ +{ + "slug": "remote-spooling-communications-subsystem", + "name": "Remote Spooling Communications Subsystem", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7277706" + ], + "developers": [ + "IBM" + ], + "operating_systems": [ + "VM", + "z/VM" + ] +} diff --git a/data/software/re/remoteaccess.json b/data/software/re/remoteaccess.json new file mode 100644 index 000000000000..ff6f47803645 --- /dev/null +++ b/data/software/re/remoteaccess.json @@ -0,0 +1,11 @@ +{ + "slug": "remoteaccess", + "name": "RemoteAccess", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2893536" + ], + "programming_languages": [ + "Turbo Pascal" + ] +} diff --git a/data/software/re/remotepc.json b/data/software/re/remotepc.json new file mode 100644 index 000000000000..188c4bf6c073 --- /dev/null +++ b/data/software/re/remotepc.json @@ -0,0 +1,8 @@ +{ + "slug": "remotepc", + "name": "RemotePC", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107639510" + ] +} diff --git a/data/software/re/remoteview-q17145825.json b/data/software/re/remoteview-q17145825.json new file mode 100644 index 000000000000..313b6d8efc8a --- /dev/null +++ b/data/software/re/remoteview-q17145825.json @@ -0,0 +1,8 @@ +{ + "slug": "remoteview-q17145825", + "name": "RemoteView", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17145825" + ] +} diff --git a/data/software/re/remoteview.json b/data/software/re/remoteview.json new file mode 100644 index 000000000000..f16b31f9e0bd --- /dev/null +++ b/data/software/re/remoteview.json @@ -0,0 +1,8 @@ +{ + "slug": "remoteview", + "name": "RemoteView", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q12594368" + ] +} diff --git a/data/software/re/renameutils.json b/data/software/re/renameutils.json new file mode 100644 index 000000000000..09d362a5caca --- /dev/null +++ b/data/software/re/renameutils.json @@ -0,0 +1,11 @@ +{ + "slug": "renameutils", + "name": "renameutils", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62862594" + ], + "licenses": [ + "GNU General Public License" + ] +} diff --git a/data/software/re/renattach.json b/data/software/re/renattach.json new file mode 100644 index 000000000000..36dd263ac1df --- /dev/null +++ b/data/software/re/renattach.json @@ -0,0 +1,8 @@ +{ + "slug": "renattach", + "name": "renattach", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62862589" + ] +} diff --git a/data/software/re/renderforest.json b/data/software/re/renderforest.json new file mode 100644 index 000000000000..04f2ef90c1b5 --- /dev/null +++ b/data/software/re/renderforest.json @@ -0,0 +1,8 @@ +{ + "slug": "renderforest", + "name": "Renderforest", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136750761" + ] +} diff --git a/data/software/re/renderscript.json b/data/software/re/renderscript.json new file mode 100644 index 000000000000..88e6401c26d8 --- /dev/null +++ b/data/software/re/renderscript.json @@ -0,0 +1,8 @@ +{ + "slug": "renderscript", + "name": "Renderscript", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3425228" + ] +} diff --git a/data/software/re/rendezvous.json b/data/software/re/rendezvous.json new file mode 100644 index 000000000000..02e5f124eb59 --- /dev/null +++ b/data/software/re/rendezvous.json @@ -0,0 +1,11 @@ +{ + "slug": "rendezvous", + "name": "RENDEZVOUS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q32230647" + ], + "developers": [ + "Edgar F. Codd" + ] +} diff --git a/data/software/re/renee-audio-tools.json b/data/software/re/renee-audio-tools.json new file mode 100644 index 000000000000..62e0b90d17e6 --- /dev/null +++ b/data/software/re/renee-audio-tools.json @@ -0,0 +1,14 @@ +{ + "slug": "renee-audio-tools", + "name": "Renee Audio Tools", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124811766" + ], + "developers": [ + "Rene.E Laboratory" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/re/renee-becca.json b/data/software/re/renee-becca.json new file mode 100644 index 000000000000..3bde137a1241 --- /dev/null +++ b/data/software/re/renee-becca.json @@ -0,0 +1,14 @@ +{ + "slug": "renee-becca", + "name": "Renee Becca", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124785227" + ], + "developers": [ + "Rene.E Laboratory" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/re/renee-file-protector.json b/data/software/re/renee-file-protector.json new file mode 100644 index 000000000000..8dcc45d643f9 --- /dev/null +++ b/data/software/re/renee-file-protector.json @@ -0,0 +1,14 @@ +{ + "slug": "renee-file-protector", + "name": "Renee File Protector", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124811828" + ], + "developers": [ + "Rene.E Laboratory" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/re/renee-passnow.json b/data/software/re/renee-passnow.json new file mode 100644 index 000000000000..daab0e7234ec --- /dev/null +++ b/data/software/re/renee-passnow.json @@ -0,0 +1,14 @@ +{ + "slug": "renee-passnow", + "name": "Renee PassNow", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124785565" + ], + "developers": [ + "Rene.E Laboratory" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/re/renee-pdf-aide.json b/data/software/re/renee-pdf-aide.json new file mode 100644 index 000000000000..c913af0971fa --- /dev/null +++ b/data/software/re/renee-pdf-aide.json @@ -0,0 +1,17 @@ +{ + "slug": "renee-pdf-aide", + "name": "Renee PDF Aide", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124811371" + ], + "developers": [ + "Rene.E Laboratory" + ], + "operating_systems": [ + "Microsoft Windows" + ], + "licenses": [ + "copyrighted" + ] +} diff --git a/data/software/re/renee-undeleter.json b/data/software/re/renee-undeleter.json new file mode 100644 index 000000000000..1906dfe9cce9 --- /dev/null +++ b/data/software/re/renee-undeleter.json @@ -0,0 +1,14 @@ +{ + "slug": "renee-undeleter", + "name": "Renee Undeleter", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124786527" + ], + "developers": [ + "Rene.E Laboratory" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/re/renee-video-editor-pro.json b/data/software/re/renee-video-editor-pro.json new file mode 100644 index 000000000000..d06a89af5dda --- /dev/null +++ b/data/software/re/renee-video-editor-pro.json @@ -0,0 +1,14 @@ +{ + "slug": "renee-video-editor-pro", + "name": "Renee Video Editor Pro", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124818203" + ], + "developers": [ + "Rene.E Laboratory" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/re/renegade.json b/data/software/re/renegade.json new file mode 100644 index 000000000000..53668e26ac48 --- /dev/null +++ b/data/software/re/renegade.json @@ -0,0 +1,11 @@ +{ + "slug": "renegade", + "name": "Renegade", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7313025" + ], + "programming_languages": [ + "Turbo Pascal" + ] +} diff --git a/data/software/re/renesis-player.json b/data/software/re/renesis-player.json new file mode 100644 index 000000000000..66640d3b2ca1 --- /dev/null +++ b/data/software/re/renesis-player.json @@ -0,0 +1,11 @@ +{ + "slug": "renesis-player", + "name": "Renesis Player", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7313063" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/re/renovatiocms.json b/data/software/re/renovatiocms.json new file mode 100644 index 000000000000..598a0a63097c --- /dev/null +++ b/data/software/re/renovatiocms.json @@ -0,0 +1,11 @@ +{ + "slug": "renovatiocms", + "name": "RenovatioCMS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2309535" + ], + "programming_languages": [ + "PHP" + ] +} diff --git a/data/software/re/rentmanager-nz-limited.json b/data/software/re/rentmanager-nz-limited.json new file mode 100644 index 000000000000..76a2b5027f5f --- /dev/null +++ b/data/software/re/rentmanager-nz-limited.json @@ -0,0 +1,8 @@ +{ + "slug": "rentmanager-nz-limited", + "name": "RentManager NZ Limited", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140312539" + ] +} diff --git a/data/software/re/rentrez.json b/data/software/re/rentrez.json new file mode 100644 index 000000000000..b45ae9499aea --- /dev/null +++ b/data/software/re/rentrez.json @@ -0,0 +1,8 @@ +{ + "slug": "rentrez", + "name": "rentrez", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112338817" + ] +} diff --git a/data/software/re/rep-gtk.json b/data/software/re/rep-gtk.json new file mode 100644 index 000000000000..1814706b745b --- /dev/null +++ b/data/software/re/rep-gtk.json @@ -0,0 +1,8 @@ +{ + "slug": "rep-gtk", + "name": "rep-gtk", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62862582" + ] +} diff --git a/data/software/re/repairnator.json b/data/software/re/repairnator.json new file mode 100644 index 000000000000..196e7f7fb588 --- /dev/null +++ b/data/software/re/repairnator.json @@ -0,0 +1,11 @@ +{ + "slug": "repairnator", + "name": "repairnator", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127485303" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/re/reperfection.json b/data/software/re/reperfection.json new file mode 100644 index 000000000000..e16c1983624a --- /dev/null +++ b/data/software/re/reperfection.json @@ -0,0 +1,8 @@ +{ + "slug": "reperfection", + "name": "Reperfection", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140461524" + ] +} diff --git a/data/software/re/repetier-host.json b/data/software/re/repetier-host.json new file mode 100644 index 000000000000..c8a98cd0d64a --- /dev/null +++ b/data/software/re/repetier-host.json @@ -0,0 +1,12 @@ +{ + "slug": "repetier-host", + "name": "Repetier-Host", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q55080188" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/software/re/replica.json b/data/software/re/replica.json new file mode 100644 index 000000000000..1dc7a07cf730 --- /dev/null +++ b/data/software/re/replica.json @@ -0,0 +1,8 @@ +{ + "slug": "replica", + "name": "Replica", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7314053" + ] +} diff --git a/data/software/re/replication-computing.json b/data/software/re/replication-computing.json new file mode 100644 index 000000000000..e019c0221684 --- /dev/null +++ b/data/software/re/replication-computing.json @@ -0,0 +1,8 @@ +{ + "slug": "replication-computing", + "name": "Replication (computing)", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7443829" + ] +} diff --git a/data/software/re/repo-commit.json b/data/software/re/repo-commit.json new file mode 100644 index 000000000000..99e3da4109f0 --- /dev/null +++ b/data/software/re/repo-commit.json @@ -0,0 +1,8 @@ +{ + "slug": "repo-commit", + "name": "repo-commit", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975419" + ] +} diff --git a/data/software/re/repo.json b/data/software/re/repo.json new file mode 100644 index 000000000000..a0a8f8a718a6 --- /dev/null +++ b/data/software/re/repo.json @@ -0,0 +1,8 @@ +{ + "slug": "repo", + "name": "repo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62862574" + ] +} diff --git a/data/software/re/repoman.json b/data/software/re/repoman.json new file mode 100644 index 000000000000..804b2c53bdb1 --- /dev/null +++ b/data/software/re/repoman.json @@ -0,0 +1,8 @@ +{ + "slug": "repoman", + "name": "repoman", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975420" + ] +} diff --git a/data/software/re/reprise-license-manager.json b/data/software/re/reprise-license-manager.json new file mode 100644 index 000000000000..50438665892e --- /dev/null +++ b/data/software/re/reprise-license-manager.json @@ -0,0 +1,13 @@ +{ + "slug": "reprise-license-manager", + "name": "Reprise License Manager", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25196727" + ], + "release_date": "2006-01-01", + "operating_systems": [ + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/software/re/reproducibility-assessment.json b/data/software/re/reproducibility-assessment.json new file mode 100644 index 000000000000..a46211bfc6c6 --- /dev/null +++ b/data/software/re/reproducibility-assessment.json @@ -0,0 +1,11 @@ +{ + "slug": "reproducibility-assessment", + "name": "reproducibility_assessment", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127485632" + ], + "licenses": [ + "Apache Software License 2.0" + ] +} diff --git a/data/software/re/repsnapper.json b/data/software/re/repsnapper.json new file mode 100644 index 000000000000..12c486be70e7 --- /dev/null +++ b/data/software/re/repsnapper.json @@ -0,0 +1,8 @@ +{ + "slug": "repsnapper", + "name": "repsnapper", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975421" + ] +} diff --git a/data/software/re/reptyr.json b/data/software/re/reptyr.json new file mode 100644 index 000000000000..6b5f0ba0802e --- /dev/null +++ b/data/software/re/reptyr.json @@ -0,0 +1,11 @@ +{ + "slug": "reptyr", + "name": "reptyr", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62862476" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/re/repuclinic.json b/data/software/re/repuclinic.json new file mode 100644 index 000000000000..ea117aec0e87 --- /dev/null +++ b/data/software/re/repuclinic.json @@ -0,0 +1,11 @@ +{ + "slug": "repuclinic", + "name": "RepuClinic", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139548112" + ], + "developers": [ + "Donskee Technology Solutions" + ] +} diff --git a/data/software/re/reqall.json b/data/software/re/reqall.json new file mode 100644 index 000000000000..51832b1bbcda --- /dev/null +++ b/data/software/re/reqall.json @@ -0,0 +1,15 @@ +{ + "slug": "reqall", + "name": "ReQall", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7300021" + ], + "release_date": "2007-01-01", + "operating_systems": [ + "cross-platform" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/re/reqtify.json b/data/software/re/reqtify.json new file mode 100644 index 000000000000..52b839fe5a86 --- /dev/null +++ b/data/software/re/reqtify.json @@ -0,0 +1,11 @@ +{ + "slug": "reqtify", + "name": "Reqtify", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3427555" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/re/requirejs.json b/data/software/re/requirejs.json new file mode 100644 index 000000000000..dfe1c5720bcc --- /dev/null +++ b/data/software/re/requirejs.json @@ -0,0 +1,11 @@ +{ + "slug": "requirejs", + "name": "RequireJS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q15842219" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/re/rescarta-toolkit.json b/data/software/re/rescarta-toolkit.json new file mode 100644 index 000000000000..3ccc1a2c902a --- /dev/null +++ b/data/software/re/rescarta-toolkit.json @@ -0,0 +1,15 @@ +{ + "slug": "rescarta-toolkit", + "name": "ResCarta Toolkit", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17078111" + ], + "release_date": "2004-01-01", + "programming_languages": [ + "Java" + ], + "licenses": [ + "Apache License" + ] +} diff --git a/data/software/re/research-data-management-organiser.json b/data/software/re/research-data-management-organiser.json new file mode 100644 index 000000000000..e3008dcfdd3f --- /dev/null +++ b/data/software/re/research-data-management-organiser.json @@ -0,0 +1,11 @@ +{ + "slug": "research-data-management-organiser", + "name": "Research Data Management Organiser", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134007740" + ], + "licenses": [ + "Apache Software License 2.0" + ] +} diff --git a/data/software/re/researchspace.json b/data/software/re/researchspace.json new file mode 100644 index 000000000000..0f1eb81ad73a --- /dev/null +++ b/data/software/re/researchspace.json @@ -0,0 +1,11 @@ +{ + "slug": "researchspace", + "name": "ResearchSpace", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122946371" + ], + "licenses": [ + "GNU Affero General Public License, version 3.0 or later" + ] +} diff --git a/data/software/re/resid.json b/data/software/re/resid.json new file mode 100644 index 000000000000..dfafac23954c --- /dev/null +++ b/data/software/re/resid.json @@ -0,0 +1,8 @@ +{ + "slug": "resid", + "name": "reSID", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7300024" + ] +} diff --git a/data/software/re/resorcerer.json b/data/software/re/resorcerer.json new file mode 100644 index 000000000000..4b6d1bc91546 --- /dev/null +++ b/data/software/re/resorcerer.json @@ -0,0 +1,8 @@ +{ + "slug": "resorcerer", + "name": "Resorcerer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7315759" + ] +} diff --git a/data/software/re/resource-construction-set.json b/data/software/re/resource-construction-set.json new file mode 100644 index 000000000000..d8ff6ebbdd58 --- /dev/null +++ b/data/software/re/resource-construction-set.json @@ -0,0 +1,8 @@ +{ + "slug": "resource-construction-set", + "name": "Resource construction set", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1384741" + ] +} diff --git a/data/software/re/resource-tuner.json b/data/software/re/resource-tuner.json new file mode 100644 index 000000000000..30b7b42a6c48 --- /dev/null +++ b/data/software/re/resource-tuner.json @@ -0,0 +1,8 @@ +{ + "slug": "resource-tuner", + "name": "Resource Tuner", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134417612" + ] +} diff --git a/data/software/re/respark.json b/data/software/re/respark.json new file mode 100644 index 000000000000..9bff95303a04 --- /dev/null +++ b/data/software/re/respark.json @@ -0,0 +1,8 @@ +{ + "slug": "respark", + "name": "ReSpark", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140264461" + ] +} diff --git a/data/software/re/responsly.json b/data/software/re/responsly.json new file mode 100644 index 000000000000..2e559d15bfd6 --- /dev/null +++ b/data/software/re/responsly.json @@ -0,0 +1,8 @@ +{ + "slug": "responsly", + "name": "Responsly", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139547067" + ] +} diff --git a/data/software/re/restlet.json b/data/software/re/restlet.json new file mode 100644 index 000000000000..8f63ed44f82d --- /dev/null +++ b/data/software/re/restlet.json @@ -0,0 +1,11 @@ +{ + "slug": "restlet", + "name": "Restlet", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7316175" + ], + "operating_systems": [ + "cross-platform" + ] +} diff --git a/data/software/re/result-assessment-tool-rat.json b/data/software/re/result-assessment-tool-rat.json new file mode 100644 index 000000000000..61dc6ba900a1 --- /dev/null +++ b/data/software/re/result-assessment-tool-rat.json @@ -0,0 +1,17 @@ +{ + "slug": "result-assessment-tool-rat", + "name": "Result Assessment Tool (RAT)", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135275290" + ], + "developers": [ + "Hamburg University of Applied Sciences" + ], + "programming_languages": [ + "Python" + ], + "licenses": [ + "GNU General Public License, version 3.0" + ] +} diff --git a/data/software/re/resumeai.json b/data/software/re/resumeai.json new file mode 100644 index 000000000000..f588c5d3ba24 --- /dev/null +++ b/data/software/re/resumeai.json @@ -0,0 +1,8 @@ +{ + "slug": "resumeai", + "name": "ResumeAI", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139913967" + ] +} diff --git a/data/software/re/retm.json b/data/software/re/retm.json new file mode 100644 index 000000000000..b71a9f84ea5d --- /dev/null +++ b/data/software/re/retm.json @@ -0,0 +1,17 @@ +{ + "slug": "retm", + "name": "Retm", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136756137" + ], + "developers": [ + "MNM Company" + ], + "operating_systems": [ + "cross-platform" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/re/retouch4me.json b/data/software/re/retouch4me.json new file mode 100644 index 000000000000..82d96c68a676 --- /dev/null +++ b/data/software/re/retouch4me.json @@ -0,0 +1,8 @@ +{ + "slug": "retouch4me", + "name": "Retouch4me", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115519094" + ] +} diff --git a/data/software/re/retrieval-based-voice-conversion.json b/data/software/re/retrieval-based-voice-conversion.json new file mode 100644 index 000000000000..8286db0c6f98 --- /dev/null +++ b/data/software/re/retrieval-based-voice-conversion.json @@ -0,0 +1,8 @@ +{ + "slug": "retrieval-based-voice-conversion", + "name": "Retrieval-based Voice Conversion", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126332073" + ] +} diff --git a/data/software/re/retrievalware.json b/data/software/re/retrievalware.json new file mode 100644 index 000000000000..462c5be032a9 --- /dev/null +++ b/data/software/re/retrievalware.json @@ -0,0 +1,11 @@ +{ + "slug": "retrievalware", + "name": "RetrievalWare", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7316947" + ], + "developers": [ + "Fast Search & Transfer" + ] +} diff --git a/data/software/re/retrovol.json b/data/software/re/retrovol.json new file mode 100644 index 000000000000..36a8e6baeb11 --- /dev/null +++ b/data/software/re/retrovol.json @@ -0,0 +1,8 @@ +{ + "slug": "retrovol", + "name": "retrovol", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63064993" + ] +} diff --git a/data/software/re/retscreen.json b/data/software/re/retscreen.json new file mode 100644 index 000000000000..149124585a91 --- /dev/null +++ b/data/software/re/retscreen.json @@ -0,0 +1,14 @@ +{ + "slug": "retscreen", + "name": "RETScreen", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7276397" + ], + "developers": [ + "Government of Canada" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/re/returnmail-ai.json b/data/software/re/returnmail-ai.json new file mode 100644 index 000000000000..6c2c4caed7b6 --- /dev/null +++ b/data/software/re/returnmail-ai.json @@ -0,0 +1,11 @@ +{ + "slug": "returnmail-ai", + "name": "ReturnMail.ai", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134513663" + ], + "developers": [ + "Sapphire LLC" + ] +} diff --git a/data/software/re/reuters-3000-xtra.json b/data/software/re/reuters-3000-xtra.json new file mode 100644 index 000000000000..fc0574aa30eb --- /dev/null +++ b/data/software/re/reuters-3000-xtra.json @@ -0,0 +1,8 @@ +{ + "slug": "reuters-3000-xtra", + "name": "Reuters 3000 Xtra", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17078254" + ] +} diff --git a/data/software/re/revelion.json b/data/software/re/revelion.json new file mode 100644 index 000000000000..9e97cc2437cc --- /dev/null +++ b/data/software/re/revelion.json @@ -0,0 +1,11 @@ +{ + "slug": "revelion", + "name": "Revelion", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138779522" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/re/reviewer.json b/data/software/re/reviewer.json new file mode 100644 index 000000000000..4ef3c5489e39 --- /dev/null +++ b/data/software/re/reviewer.json @@ -0,0 +1,15 @@ +{ + "slug": "reviewer", + "name": "REviewER", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106381182" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "licenses": [ + "Eclipse Public License 1.0" + ] +} diff --git a/data/software/re/reviewpilot.json b/data/software/re/reviewpilot.json new file mode 100644 index 000000000000..1dd9f8fe68e8 --- /dev/null +++ b/data/software/re/reviewpilot.json @@ -0,0 +1,11 @@ +{ + "slug": "reviewpilot", + "name": "ReviewPilot", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139737367" + ], + "developers": [ + "IRON IT" + ] +} diff --git a/data/software/re/reviewping.json b/data/software/re/reviewping.json new file mode 100644 index 000000000000..72bed9c2b638 --- /dev/null +++ b/data/software/re/reviewping.json @@ -0,0 +1,8 @@ +{ + "slug": "reviewping", + "name": "ReviewPing", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140299148" + ] +} diff --git a/data/software/re/revizto.json b/data/software/re/revizto.json new file mode 100644 index 000000000000..a5b7139792b3 --- /dev/null +++ b/data/software/re/revizto.json @@ -0,0 +1,8 @@ +{ + "slug": "revizto", + "name": "Revizto", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17138560" + ] +} diff --git a/data/software/re/revman.json b/data/software/re/revman.json new file mode 100644 index 000000000000..c24353d48f7e --- /dev/null +++ b/data/software/re/revman.json @@ -0,0 +1,12 @@ +{ + "slug": "revman", + "name": "RevMan", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106381184" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/software/re/revolution3d.json b/data/software/re/revolution3d.json new file mode 100644 index 000000000000..795ef61d2ac7 --- /dev/null +++ b/data/software/re/revolution3d.json @@ -0,0 +1,8 @@ +{ + "slug": "revolution3d", + "name": "Revolution3D", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3428545" + ] +} diff --git a/data/software/re/revoscalepy.json b/data/software/re/revoscalepy.json new file mode 100644 index 000000000000..3e6e57cdd687 --- /dev/null +++ b/data/software/re/revoscalepy.json @@ -0,0 +1,12 @@ +{ + "slug": "revoscalepy", + "name": "Revoscalepy", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q55080215" + ], + "release_date": "2017-01-01", + "programming_languages": [ + "Python" + ] +} diff --git a/data/software/re/revoscaler.json b/data/software/re/revoscaler.json new file mode 100644 index 000000000000..08fc2ac22623 --- /dev/null +++ b/data/software/re/revoscaler.json @@ -0,0 +1,12 @@ +{ + "slug": "revoscaler", + "name": "RevoScaleR", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q55080220" + ], + "release_date": "2016-01-01", + "programming_languages": [ + "Python" + ] +} diff --git a/data/software/re/rex-client.json b/data/software/re/rex-client.json new file mode 100644 index 000000000000..154d32518248 --- /dev/null +++ b/data/software/re/rex-client.json @@ -0,0 +1,11 @@ +{ + "slug": "rex-client", + "name": "rex-client", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975422" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/re/rexcel.json b/data/software/re/rexcel.json new file mode 100644 index 000000000000..f1aeacc51481 --- /dev/null +++ b/data/software/re/rexcel.json @@ -0,0 +1,11 @@ +{ + "slug": "rexcel", + "name": "RExcel", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10819919" + ], + "developers": [ + "Erich Neuwirth" + ] +} diff --git a/data/software/re/rexima.json b/data/software/re/rexima.json new file mode 100644 index 000000000000..ddc6b23429ac --- /dev/null +++ b/data/software/re/rexima.json @@ -0,0 +1,8 @@ +{ + "slug": "rexima", + "name": "rexima", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62862463" + ] +} diff --git a/data/software/re/rexio.json b/data/software/re/rexio.json new file mode 100644 index 000000000000..b6a49a4392cb --- /dev/null +++ b/data/software/re/rexio.json @@ -0,0 +1,11 @@ +{ + "slug": "rexio", + "name": "RexiO", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139997351" + ], + "operating_systems": [ + "cross-platform" + ] +} diff --git a/data/software/rf/rfdump.json b/data/software/rf/rfdump.json new file mode 100644 index 000000000000..43ee9b7fe100 --- /dev/null +++ b/data/software/rf/rfdump.json @@ -0,0 +1,8 @@ +{ + "slug": "rfdump", + "name": "RFdump", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7276623" + ] +} diff --git a/data/software/rf/rfem.json b/data/software/rf/rfem.json new file mode 100644 index 000000000000..9a4251462996 --- /dev/null +++ b/data/software/rf/rfem.json @@ -0,0 +1,11 @@ +{ + "slug": "rfem", + "name": "RFEM", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q15056418" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/rg/rgl.json b/data/software/rg/rgl.json new file mode 100644 index 000000000000..6c2e8f739909 --- /dev/null +++ b/data/software/rg/rgl.json @@ -0,0 +1,8 @@ +{ + "slug": "rgl", + "name": "RGL", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3928276" + ] +} diff --git a/data/software/rh/rhea-pipeline.json b/data/software/rh/rhea-pipeline.json new file mode 100644 index 000000000000..0868f87f7ad2 --- /dev/null +++ b/data/software/rh/rhea-pipeline.json @@ -0,0 +1,17 @@ +{ + "slug": "rhea-pipeline", + "name": "Rhea (pipeline)", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28957060" + ], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [ + "R" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/rh/rhide.json b/data/software/rh/rhide.json new file mode 100644 index 000000000000..8b7b1f452f77 --- /dev/null +++ b/data/software/rh/rhide.json @@ -0,0 +1,8 @@ +{ + "slug": "rhide", + "name": "RHIDE", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134590495" + ] +} diff --git a/data/software/rh/rhomobile-suite.json b/data/software/rh/rhomobile-suite.json new file mode 100644 index 000000000000..537cc96c71a1 --- /dev/null +++ b/data/software/rh/rhomobile-suite.json @@ -0,0 +1,8 @@ +{ + "slug": "rhomobile-suite", + "name": "RhoMobile Suite", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7320801" + ] +} diff --git a/data/software/rh/rht-compass.json b/data/software/rh/rht-compass.json new file mode 100644 index 000000000000..f9723d4f8a38 --- /dev/null +++ b/data/software/rh/rht-compass.json @@ -0,0 +1,11 @@ +{ + "slug": "rht-compass", + "name": "RHT Compass", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138454540" + ], + "developers": [ + "VisionWrights" + ] +} diff --git a/data/software/rh/rhyme-genie.json b/data/software/rh/rhyme-genie.json new file mode 100644 index 000000000000..8de99b561b4f --- /dev/null +++ b/data/software/rh/rhyme-genie.json @@ -0,0 +1,13 @@ +{ + "slug": "rhyme-genie", + "name": "Rhyme Genie", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7321638" + ], + "operating_systems": [ + "iOS", + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/software/rh/rhythm-core-alpha.json b/data/software/rh/rhythm-core-alpha.json new file mode 100644 index 000000000000..fb5ee3822f7e --- /dev/null +++ b/data/software/rh/rhythm-core-alpha.json @@ -0,0 +1,8 @@ +{ + "slug": "rhythm-core-alpha", + "name": "Rhythm Core Alpha", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q58210658" + ] +} diff --git a/data/software/ri/rialto-toolkit.json b/data/software/ri/rialto-toolkit.json new file mode 100644 index 000000000000..5650dfd76d03 --- /dev/null +++ b/data/software/ri/rialto-toolkit.json @@ -0,0 +1,8 @@ +{ + "slug": "rialto-toolkit", + "name": "Rialto Toolkit", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3430417" + ] +} diff --git a/data/software/ri/rich-communication-services.json b/data/software/ri/rich-communication-services.json new file mode 100644 index 000000000000..20b6b27d38ea --- /dev/null +++ b/data/software/ri/rich-communication-services.json @@ -0,0 +1,14 @@ +{ + "slug": "rich-communication-services", + "name": "Rich Communication Services", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1710059" + ], + "developers": [ + "GSM Association" + ], + "operating_systems": [ + "iOS" + ] +} diff --git a/data/software/ri/richcopy.json b/data/software/ri/richcopy.json new file mode 100644 index 000000000000..b4d85a476fb1 --- /dev/null +++ b/data/software/ri/richcopy.json @@ -0,0 +1,11 @@ +{ + "slug": "richcopy", + "name": "RichCopy", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7323154" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/ri/rierino-core.json b/data/software/ri/rierino-core.json new file mode 100644 index 000000000000..a75dcaa0ede5 --- /dev/null +++ b/data/software/ri/rierino-core.json @@ -0,0 +1,14 @@ +{ + "slug": "rierino-core", + "name": "Rierino Core", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140185191" + ], + "developers": [ + "Rierino" + ], + "operating_systems": [ + "cross-platform" + ] +} diff --git a/data/software/ri/riffusion.json b/data/software/ri/riffusion.json new file mode 100644 index 000000000000..1888b77bc6aa --- /dev/null +++ b/data/software/ri/riffusion.json @@ -0,0 +1,8 @@ +{ + "slug": "riffusion", + "name": "Riffusion", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115939172" + ] +} diff --git a/data/software/ri/rillsoft-project.json b/data/software/ri/rillsoft-project.json new file mode 100644 index 000000000000..6b47dc7eaa26 --- /dev/null +++ b/data/software/ri/rillsoft-project.json @@ -0,0 +1,11 @@ +{ + "slug": "rillsoft-project", + "name": "Rillsoft Project", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28136594" + ], + "developers": [ + "Rillsoft GmbH" + ] +} diff --git a/data/software/ri/rinetd.json b/data/software/ri/rinetd.json new file mode 100644 index 000000000000..5805b87ab0a5 --- /dev/null +++ b/data/software/ri/rinetd.json @@ -0,0 +1,11 @@ +{ + "slug": "rinetd", + "name": "rinetd", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62862447" + ], + "licenses": [ + "GNU General Public License" + ] +} diff --git a/data/software/ri/ring-runner-flight-of-the-sages.json b/data/software/ri/ring-runner-flight-of-the-sages.json new file mode 100644 index 000000000000..b91b76518b6c --- /dev/null +++ b/data/software/ri/ring-runner-flight-of-the-sages.json @@ -0,0 +1,15 @@ +{ + "slug": "ring-runner-flight-of-the-sages", + "name": "Ring Runner: Flight of the Sages", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q99646327" + ], + "release_date": "2013-07-09", + "developers": [ + "Triple.B.Titles" + ], + "publishers": [ + "Triple.B.Titles" + ] +} diff --git a/data/software/ri/ringcube-vdesk.json b/data/software/ri/ringcube-vdesk.json new file mode 100644 index 000000000000..567ca776a817 --- /dev/null +++ b/data/software/ri/ringcube-vdesk.json @@ -0,0 +1,11 @@ +{ + "slug": "ringcube-vdesk", + "name": "RingCube vDesk", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7334681" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/ri/ringdroid.json b/data/software/ri/ringdroid.json new file mode 100644 index 000000000000..7561e8670d9a --- /dev/null +++ b/data/software/ri/ringdroid.json @@ -0,0 +1,14 @@ +{ + "slug": "ringdroid", + "name": "Ringdroid", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16927771" + ], + "programming_languages": [ + "Java" + ], + "licenses": [ + "Apache License" + ] +} diff --git a/data/software/ri/ringid.json b/data/software/ri/ringid.json new file mode 100644 index 000000000000..dac7f359bd69 --- /dev/null +++ b/data/software/ri/ringid.json @@ -0,0 +1,15 @@ +{ + "slug": "ringid", + "name": "RingID", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q19894436" + ], + "release_date": "2015-07-01", + "operating_systems": [ + "iOS" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/ri/ringo.json b/data/software/ri/ringo.json new file mode 100644 index 000000000000..c67a061349d7 --- /dev/null +++ b/data/software/ri/ringo.json @@ -0,0 +1,8 @@ +{ + "slug": "ringo", + "name": "Ringo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18390444" + ] +} diff --git a/data/software/ri/rinkt.json b/data/software/ri/rinkt.json new file mode 100644 index 000000000000..4ed62152821e --- /dev/null +++ b/data/software/ri/rinkt.json @@ -0,0 +1,8 @@ +{ + "slug": "rinkt", + "name": "RINKT", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139831627" + ] +} diff --git a/data/software/ri/ripcord.json b/data/software/ri/ripcord.json new file mode 100644 index 000000000000..fc5161d279cc --- /dev/null +++ b/data/software/ri/ripcord.json @@ -0,0 +1,11 @@ +{ + "slug": "ripcord", + "name": "Ripcord", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122992813" + ], + "licenses": [ + "shareware" + ] +} diff --git a/data/software/ri/ripit.json b/data/software/ri/ripit.json new file mode 100644 index 000000000000..a664c6b3db8b --- /dev/null +++ b/data/software/ri/ripit.json @@ -0,0 +1,8 @@ +{ + "slug": "ripit", + "name": "ripit", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7335600" + ] +} diff --git a/data/software/ri/ripmime.json b/data/software/ri/ripmime.json new file mode 100644 index 000000000000..82b015cd4cab --- /dev/null +++ b/data/software/ri/ripmime.json @@ -0,0 +1,8 @@ +{ + "slug": "ripmime", + "name": "ripMIME", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62862094" + ] +} diff --git a/data/software/ri/ripole.json b/data/software/ri/ripole.json new file mode 100644 index 000000000000..b762d063b5cd --- /dev/null +++ b/data/software/ri/ripole.json @@ -0,0 +1,11 @@ +{ + "slug": "ripole", + "name": "ripOLE", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62862080" + ], + "licenses": [ + "2-clause BSD License" + ] +} diff --git a/data/software/ri/rippled.json b/data/software/ri/rippled.json new file mode 100644 index 000000000000..f6c7f8a61a66 --- /dev/null +++ b/data/software/ri/rippled.json @@ -0,0 +1,11 @@ +{ + "slug": "rippled", + "name": "Rippled", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q24869649" + ], + "licenses": [ + "ISC license" + ] +} diff --git a/data/software/ri/rips.json b/data/software/ri/rips.json new file mode 100644 index 000000000000..ecf3c4c43d97 --- /dev/null +++ b/data/software/ri/rips.json @@ -0,0 +1,9 @@ +{ + "slug": "rips", + "name": "RIPS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22682080" + ], + "release_date": "2010-05-01" +} diff --git a/data/software/ri/rising-antivirus.json b/data/software/ri/rising-antivirus.json new file mode 100644 index 000000000000..08f1db3d7dbd --- /dev/null +++ b/data/software/ri/rising-antivirus.json @@ -0,0 +1,8 @@ +{ + "slug": "rising-antivirus", + "name": "Rising Antivirus", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1064981" + ] +} diff --git a/data/software/ri/risk-ai-agent.json b/data/software/ri/risk-ai-agent.json new file mode 100644 index 000000000000..ae1098ca4482 --- /dev/null +++ b/data/software/ri/risk-ai-agent.json @@ -0,0 +1,11 @@ +{ + "slug": "risk-ai-agent", + "name": "Risk AI Agent", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138859582" + ], + "developers": [ + "Incode" + ] +} diff --git a/data/software/ri/rita-q126087706.json b/data/software/ri/rita-q126087706.json new file mode 100644 index 000000000000..7d4fdb96a656 --- /dev/null +++ b/data/software/ri/rita-q126087706.json @@ -0,0 +1,8 @@ +{ + "slug": "rita-q126087706", + "name": "RiTa", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087706" + ] +} diff --git a/data/software/ri/rita.json b/data/software/ri/rita.json new file mode 100644 index 000000000000..ef6b00e28aea --- /dev/null +++ b/data/software/ri/rita.json @@ -0,0 +1,13 @@ +{ + "slug": "rita", + "name": "RiTa", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105643299" + ], + "release_date": "2009-01-01", + "programming_languages": [ + "Java", + "Processing" + ] +} diff --git a/data/software/ri/river.json b/data/software/ri/river.json new file mode 100644 index 000000000000..4941dd3328fa --- /dev/null +++ b/data/software/ri/river.json @@ -0,0 +1,8 @@ +{ + "slug": "river", + "name": "River", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138660346" + ] +} diff --git a/data/software/ri/riverside.json b/data/software/ri/riverside.json new file mode 100644 index 000000000000..bb4758892410 --- /dev/null +++ b/data/software/ri/riverside.json @@ -0,0 +1,13 @@ +{ + "slug": "riverside", + "name": "Riverside", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135234417" + ], + "operating_systems": [ + "iOS", + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/software/ri/rivet.json b/data/software/ri/rivet.json new file mode 100644 index 000000000000..4e4f660f1726 --- /dev/null +++ b/data/software/ri/rivet.json @@ -0,0 +1,11 @@ +{ + "slug": "rivet", + "name": "Rivet", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118136306" + ], + "licenses": [ + "GNU General Public License, version 3.0" + ] +} diff --git a/data/software/ri/rivex.json b/data/software/ri/rivex.json new file mode 100644 index 000000000000..a75bdb823f98 --- /dev/null +++ b/data/software/ri/rivex.json @@ -0,0 +1,8 @@ +{ + "slug": "rivex", + "name": "RivEx", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087707" + ] +} diff --git a/data/software/rk/rkb-explorer.json b/data/software/rk/rkb-explorer.json new file mode 100644 index 000000000000..4cdb6655be2b --- /dev/null +++ b/data/software/rk/rkb-explorer.json @@ -0,0 +1,11 @@ +{ + "slug": "rkb-explorer", + "name": "RKB Explorer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q47112046" + ], + "developers": [ + "School of Electronics and Computer Science, University of Southampton" + ] +} diff --git a/data/software/rm/rmarkdown.json b/data/software/rm/rmarkdown.json new file mode 100644 index 000000000000..2547bc1be252 --- /dev/null +++ b/data/software/rm/rmarkdown.json @@ -0,0 +1,11 @@ +{ + "slug": "rmarkdown", + "name": "Rmarkdown", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q53086556" + ], + "programming_languages": [ + "R" + ] +} diff --git a/data/software/rm/rmcde.json b/data/software/rm/rmcde.json new file mode 100644 index 000000000000..ffd2303155a0 --- /dev/null +++ b/data/software/rm/rmcde.json @@ -0,0 +1,8 @@ +{ + "slug": "rmcde", + "name": "RMCDE", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7276987" + ] +} diff --git a/data/software/rm/rmcprofile.json b/data/software/rm/rmcprofile.json new file mode 100644 index 000000000000..5d9b92f39a84 --- /dev/null +++ b/data/software/rm/rmcprofile.json @@ -0,0 +1,14 @@ +{ + "slug": "rmcprofile", + "name": "RMCProfile", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q51715917" + ], + "developers": [ + "Oak Ridge National Laboratory", + "National Institute of Standards and Technology", + "University of Cambridge", + "University of Oxford" + ] +} diff --git a/data/software/rm/rmilter.json b/data/software/rm/rmilter.json new file mode 100644 index 000000000000..2fad7ef4ea2b --- /dev/null +++ b/data/software/rm/rmilter.json @@ -0,0 +1,8 @@ +{ + "slug": "rmilter", + "name": "rmilter", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975423" + ] +} diff --git a/data/software/ro/roam.json b/data/software/ro/roam.json new file mode 100644 index 000000000000..3a165853a2a4 --- /dev/null +++ b/data/software/ro/roam.json @@ -0,0 +1,8 @@ +{ + "slug": "roam", + "name": "Roam", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118895954" + ] +} diff --git a/data/software/ro/roambi-flow.json b/data/software/ro/roambi-flow.json new file mode 100644 index 000000000000..1d00be52eeca --- /dev/null +++ b/data/software/ro/roambi-flow.json @@ -0,0 +1,8 @@ +{ + "slug": "roambi-flow", + "name": "Roambi Flow", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084524" + ] +} diff --git a/data/software/ro/robert.json b/data/software/ro/robert.json new file mode 100644 index 000000000000..1ef4b125eceb --- /dev/null +++ b/data/software/ro/robert.json @@ -0,0 +1,15 @@ +{ + "slug": "robert", + "name": "Robert", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7341179" + ], + "release_date": "2009-01-01", + "programming_languages": [ + "Python" + ], + "licenses": [ + "GNU General Public License" + ] +} diff --git a/data/software/ro/roboboard-fx.json b/data/software/ro/roboboard-fx.json new file mode 100644 index 000000000000..337d5dbabce8 --- /dev/null +++ b/data/software/ro/roboboard-fx.json @@ -0,0 +1,8 @@ +{ + "slug": "roboboard-fx", + "name": "RoboBOARD/FX", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7353225" + ] +} diff --git a/data/software/ro/robodk.json b/data/software/ro/robodk.json new file mode 100644 index 000000000000..af450ccac0de --- /dev/null +++ b/data/software/ro/robodk.json @@ -0,0 +1,8 @@ +{ + "slug": "robodk", + "name": "RoboDK", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28957062" + ] +} diff --git a/data/software/ro/robogeo.json b/data/software/ro/robogeo.json new file mode 100644 index 000000000000..3f3a110dda27 --- /dev/null +++ b/data/software/ro/robogeo.json @@ -0,0 +1,8 @@ +{ + "slug": "robogeo", + "name": "RoboGEO", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16965549" + ] +} diff --git a/data/software/ro/robologix.json b/data/software/ro/robologix.json new file mode 100644 index 000000000000..3adc1a1953fd --- /dev/null +++ b/data/software/ro/robologix.json @@ -0,0 +1,8 @@ +{ + "slug": "robologix", + "name": "RoboLogix", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7353241" + ] +} diff --git a/data/software/ro/robomind.json b/data/software/ro/robomind.json new file mode 100644 index 000000000000..bd5aa778514a --- /dev/null +++ b/data/software/ro/robomind.json @@ -0,0 +1,11 @@ +{ + "slug": "robomind", + "name": "RoboMind", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7353252" + ], + "programming_languages": [ + "Java" + ] +} diff --git a/data/software/ro/robot-lawyer.json b/data/software/ro/robot-lawyer.json new file mode 100644 index 000000000000..3170c32a042c --- /dev/null +++ b/data/software/ro/robot-lawyer.json @@ -0,0 +1,8 @@ +{ + "slug": "robot-lawyer", + "name": "Robot Lawyer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q24525699" + ] +} diff --git a/data/software/ro/robotkube.json b/data/software/ro/robotkube.json new file mode 100644 index 000000000000..ce2b32595487 --- /dev/null +++ b/data/software/ro/robotkube.json @@ -0,0 +1,11 @@ +{ + "slug": "robotkube", + "name": "robotkube", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127485659" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/ro/robotml.json b/data/software/ro/robotml.json new file mode 100644 index 000000000000..835b0bb354ef --- /dev/null +++ b/data/software/ro/robotml.json @@ -0,0 +1,11 @@ +{ + "slug": "robotml", + "name": "RobotML", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4048357" + ], + "developers": [ + "Munich University of Applied Sciences" + ] +} diff --git a/data/software/ro/rocketcake.json b/data/software/ro/rocketcake.json new file mode 100644 index 000000000000..0ac42a33a38a --- /dev/null +++ b/data/software/ro/rocketcake.json @@ -0,0 +1,11 @@ +{ + "slug": "rocketcake", + "name": "RocketCake", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q29098080" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/ro/rockmelt.json b/data/software/ro/rockmelt.json new file mode 100644 index 000000000000..60514166122f --- /dev/null +++ b/data/software/ro/rockmelt.json @@ -0,0 +1,8 @@ +{ + "slug": "rockmelt", + "name": "RockMelt", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2002768" + ] +} diff --git a/data/software/ro/rocscience.json b/data/software/ro/rocscience.json new file mode 100644 index 000000000000..f34f21cf8c75 --- /dev/null +++ b/data/software/ro/rocscience.json @@ -0,0 +1,17 @@ +{ + "slug": "rocscience", + "name": "Rocscience", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q29019484" + ], + "developers": [ + "Rocscience Inc." + ], + "operating_systems": [ + "Microsoft Windows" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/ro/rodin-tool.json b/data/software/ro/rodin-tool.json new file mode 100644 index 000000000000..2ee13169db41 --- /dev/null +++ b/data/software/ro/rodin-tool.json @@ -0,0 +1,8 @@ +{ + "slug": "rodin-tool", + "name": "Rodin tool", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7356780" + ] +} diff --git a/data/software/ro/roger-wilco.json b/data/software/ro/roger-wilco.json new file mode 100644 index 000000000000..c0feda928e6e --- /dev/null +++ b/data/software/ro/roger-wilco.json @@ -0,0 +1,11 @@ +{ + "slug": "roger-wilco", + "name": "Roger Wilco", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2161947" + ], + "developers": [ + "GameSpy" + ] +} diff --git a/data/software/ro/rohr2.json b/data/software/ro/rohr2.json new file mode 100644 index 000000000000..69191f2ddaee --- /dev/null +++ b/data/software/ro/rohr2.json @@ -0,0 +1,8 @@ +{ + "slug": "rohr2", + "name": "ROHR2", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7277374" + ] +} diff --git a/data/software/ro/romcc.json b/data/software/ro/romcc.json new file mode 100644 index 000000000000..b03b14dac916 --- /dev/null +++ b/data/software/ro/romcc.json @@ -0,0 +1,8 @@ +{ + "slug": "romcc", + "name": "Romcc", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7362942" + ] +} diff --git a/data/software/ro/romeo-model-checker.json b/data/software/ro/romeo-model-checker.json new file mode 100644 index 000000000000..e270d1aead7d --- /dev/null +++ b/data/software/ro/romeo-model-checker.json @@ -0,0 +1,18 @@ +{ + "slug": "romeo-model-checker", + "name": "Romeo Model Checker", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3441191" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [ + "Tcl" + ], + "licenses": [ + "CeCILL" + ] +} diff --git a/data/software/ro/romeo.json b/data/software/ro/romeo.json new file mode 100644 index 000000000000..4aa15d77bbf0 --- /dev/null +++ b/data/software/ro/romeo.json @@ -0,0 +1,11 @@ +{ + "slug": "romeo", + "name": "ROMeo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7277401" + ], + "developers": [ + "Schneider Electric" + ] +} diff --git a/data/software/ro/romulus.json b/data/software/ro/romulus.json new file mode 100644 index 000000000000..c9b77d39ef9b --- /dev/null +++ b/data/software/ro/romulus.json @@ -0,0 +1,8 @@ +{ + "slug": "romulus", + "name": "Romulus", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3940936" + ] +} diff --git a/data/software/ro/roon-bridge.json b/data/software/ro/roon-bridge.json new file mode 100644 index 000000000000..9c3c6fca1804 --- /dev/null +++ b/data/software/ro/roon-bridge.json @@ -0,0 +1,12 @@ +{ + "slug": "roon-bridge", + "name": "Roon Bridge", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q80444914" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/software/ro/roon-optimized-core-kit.json b/data/software/ro/roon-optimized-core-kit.json new file mode 100644 index 000000000000..c78aa32acd6f --- /dev/null +++ b/data/software/ro/roon-optimized-core-kit.json @@ -0,0 +1,14 @@ +{ + "slug": "roon-optimized-core-kit", + "name": "Roon Optimized Core Kit", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q80444962" + ], + "developers": [ + "Roon Labs LLC" + ], + "operating_systems": [ + "Next Unit of Computing" + ] +} diff --git a/data/software/ro/roon-server.json b/data/software/ro/roon-server.json new file mode 100644 index 000000000000..d2d9247038d0 --- /dev/null +++ b/data/software/ro/roon-server.json @@ -0,0 +1,17 @@ +{ + "slug": "roon-server", + "name": "Roon Server", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q80444749" + ], + "developers": [ + "Roon Labs LLC" + ], + "operating_systems": [ + "Synology Inc.", + "QNAP Systems", + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/software/ro/root-docs.json b/data/software/ro/root-docs.json new file mode 100644 index 000000000000..6c1b7e7b5628 --- /dev/null +++ b/data/software/ro/root-docs.json @@ -0,0 +1,8 @@ +{ + "slug": "root-docs", + "name": "root-docs", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975424" + ] +} diff --git a/data/software/ro/root-tail.json b/data/software/ro/root-tail.json new file mode 100644 index 000000000000..0600588aff87 --- /dev/null +++ b/data/software/ro/root-tail.json @@ -0,0 +1,8 @@ +{ + "slug": "root-tail", + "name": "root-tail", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62862005" + ] +} diff --git a/data/software/ro/ropey.json b/data/software/ro/ropey.json new file mode 100644 index 000000000000..0aa22b99cd9e --- /dev/null +++ b/data/software/ro/ropey.json @@ -0,0 +1,12 @@ +{ + "slug": "ropey", + "name": "Ropey", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60868603" + ], + "release_date": "2019-01-03", + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/ro/rosalind.json b/data/software/ro/rosalind.json new file mode 100644 index 000000000000..c4f0e2acd63b --- /dev/null +++ b/data/software/ro/rosalind.json @@ -0,0 +1,8 @@ +{ + "slug": "rosalind", + "name": "Rosalind", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2912168" + ] +} diff --git a/data/software/ro/rosdep.json b/data/software/ro/rosdep.json new file mode 100644 index 000000000000..5604611da105 --- /dev/null +++ b/data/software/ro/rosdep.json @@ -0,0 +1,11 @@ +{ + "slug": "rosdep", + "name": "rosdep", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975425" + ], + "licenses": [ + "3-clause BSD License" + ] +} diff --git a/data/software/ro/rosdistro.json b/data/software/ro/rosdistro.json new file mode 100644 index 000000000000..086d92a8f475 --- /dev/null +++ b/data/software/ro/rosdistro.json @@ -0,0 +1,8 @@ +{ + "slug": "rosdistro", + "name": "rosdistro", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975426" + ] +} diff --git a/data/software/ro/rose.json b/data/software/ro/rose.json new file mode 100644 index 000000000000..00d6c9ac3a18 --- /dev/null +++ b/data/software/ro/rose.json @@ -0,0 +1,8 @@ +{ + "slug": "rose", + "name": "RoSE", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084525" + ] +} diff --git a/data/software/ro/rosetta-2.json b/data/software/ro/rosetta-2.json new file mode 100644 index 000000000000..7f300be55255 --- /dev/null +++ b/data/software/ro/rosetta-2.json @@ -0,0 +1,12 @@ +{ + "slug": "rosetta-2", + "name": "Rosetta 2", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105480642" + ], + "release_date": "2020-11-10", + "developers": [ + "Apple Inc." + ] +} diff --git a/data/software/ro/rosetta-q37609971.json b/data/software/ro/rosetta-q37609971.json new file mode 100644 index 000000000000..b1c0acc1bc0f --- /dev/null +++ b/data/software/ro/rosetta-q37609971.json @@ -0,0 +1,11 @@ +{ + "slug": "rosetta-q37609971", + "name": "Rosetta", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q37609971" + ], + "developers": [ + "Ex Libris Group" + ] +} diff --git a/data/software/ro/rosetta.json b/data/software/ro/rosetta.json new file mode 100644 index 000000000000..bd902b715e26 --- /dev/null +++ b/data/software/ro/rosetta.json @@ -0,0 +1,12 @@ +{ + "slug": "rosetta", + "name": "Rosetta", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1196945" + ], + "release_date": "2006-01-10", + "developers": [ + "Apple Inc." + ] +} diff --git a/data/software/ro/rosinstall-generator.json b/data/software/ro/rosinstall-generator.json new file mode 100644 index 000000000000..2602f9cfa3b9 --- /dev/null +++ b/data/software/ro/rosinstall-generator.json @@ -0,0 +1,8 @@ +{ + "slug": "rosinstall-generator", + "name": "rosinstall_generator", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975428" + ] +} diff --git a/data/software/ro/rosinstall.json b/data/software/ro/rosinstall.json new file mode 100644 index 000000000000..2d1f233179d9 --- /dev/null +++ b/data/software/ro/rosinstall.json @@ -0,0 +1,8 @@ +{ + "slug": "rosinstall", + "name": "rosinstall", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975427" + ] +} diff --git a/data/software/ro/rospkg.json b/data/software/ro/rospkg.json new file mode 100644 index 000000000000..ab6bfac24cdc --- /dev/null +++ b/data/software/ro/rospkg.json @@ -0,0 +1,8 @@ +{ + "slug": "rospkg", + "name": "rospkg", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975429" + ] +} diff --git a/data/software/ro/rossio-portal.json b/data/software/ro/rossio-portal.json new file mode 100644 index 000000000000..f00c0df51263 --- /dev/null +++ b/data/software/ro/rossio-portal.json @@ -0,0 +1,8 @@ +{ + "slug": "rossio-portal", + "name": "ROSSIO Portal", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084526" + ] +} diff --git a/data/software/ro/rotl.json b/data/software/ro/rotl.json new file mode 100644 index 000000000000..1b4c6c263d81 --- /dev/null +++ b/data/software/ro/rotl.json @@ -0,0 +1,8 @@ +{ + "slug": "rotl", + "name": "rotl", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112338595" + ] +} diff --git a/data/software/ro/rotoshop.json b/data/software/ro/rotoshop.json new file mode 100644 index 000000000000..ec16420246b2 --- /dev/null +++ b/data/software/ro/rotoshop.json @@ -0,0 +1,8 @@ +{ + "slug": "rotoshop", + "name": "Rotoshop", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7370613" + ] +} diff --git a/data/software/ro/rottlog.json b/data/software/ro/rottlog.json new file mode 100644 index 000000000000..19a95b514bed --- /dev/null +++ b/data/software/ro/rottlog.json @@ -0,0 +1,8 @@ +{ + "slug": "rottlog", + "name": "Rottlog", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76186282" + ] +} diff --git a/data/software/ro/roundme.json b/data/software/ro/roundme.json new file mode 100644 index 000000000000..4d4e10518434 --- /dev/null +++ b/data/software/ro/roundme.json @@ -0,0 +1,11 @@ +{ + "slug": "roundme", + "name": "RoundMe", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28859381" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/ro/routeconverter.json b/data/software/ro/routeconverter.json new file mode 100644 index 000000000000..f4b773cde8d7 --- /dev/null +++ b/data/software/ro/routeconverter.json @@ -0,0 +1,8 @@ +{ + "slug": "routeconverter", + "name": "RouteConverter", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138463932" + ] +} diff --git a/data/software/ro/routerkeygen.json b/data/software/ro/routerkeygen.json new file mode 100644 index 000000000000..415dd264ab98 --- /dev/null +++ b/data/software/ro/routerkeygen.json @@ -0,0 +1,18 @@ +{ + "slug": "routerkeygen", + "name": "RouterKeygen", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q97277111" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [ + "Objective-C" + ], + "licenses": [ + "GNU General Public License, version 3.0" + ] +} diff --git a/data/software/ro/rozetka-ai.json b/data/software/ro/rozetka-ai.json new file mode 100644 index 000000000000..c463b949ded6 --- /dev/null +++ b/data/software/ro/rozetka-ai.json @@ -0,0 +1,11 @@ +{ + "slug": "rozetka-ai", + "name": "Rozetka AI", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138795213" + ], + "developers": [ + "Rozetka" + ] +} diff --git a/data/software/rp/rp-pppoe.json b/data/software/rp/rp-pppoe.json new file mode 100644 index 000000000000..551eddb84198 --- /dev/null +++ b/data/software/rp/rp-pppoe.json @@ -0,0 +1,8 @@ +{ + "slug": "rp-pppoe", + "name": "RP-PPPoE", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4048572" + ] +} diff --git a/data/software/rp/rpcbind.json b/data/software/rp/rpcbind.json new file mode 100644 index 000000000000..2c8e8bb38961 --- /dev/null +++ b/data/software/rp/rpcbind.json @@ -0,0 +1,8 @@ +{ + "slug": "rpcbind", + "name": "rpcbind", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975430" + ] +} diff --git a/data/software/rp/rpcgen.json b/data/software/rp/rpcgen.json new file mode 100644 index 000000000000..5d35a1aeb6c4 --- /dev/null +++ b/data/software/rp/rpcgen.json @@ -0,0 +1,8 @@ +{ + "slug": "rpcgen", + "name": "RPCGEN", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4048576" + ] +} diff --git a/data/software/rp/rpl.json b/data/software/rp/rpl.json new file mode 100644 index 000000000000..f4e58f1cee81 --- /dev/null +++ b/data/software/rp/rpl.json @@ -0,0 +1,8 @@ +{ + "slug": "rpl", + "name": "rpl", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62861873" + ] +} diff --git a/data/software/rq/rqlite.json b/data/software/rq/rqlite.json new file mode 100644 index 000000000000..eb9157bf6e40 --- /dev/null +++ b/data/software/rq/rqlite.json @@ -0,0 +1,11 @@ +{ + "slug": "rqlite", + "name": "rqlite", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975431" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/rr/rr.json b/data/software/rr/rr.json new file mode 100644 index 000000000000..d8e97c5e7f95 --- /dev/null +++ b/data/software/rr/rr.json @@ -0,0 +1,8 @@ +{ + "slug": "rr", + "name": "rr", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62861650" + ] +} diff --git a/data/software/rr/rrdcollect.json b/data/software/rr/rrdcollect.json new file mode 100644 index 000000000000..85fd37d96b20 --- /dev/null +++ b/data/software/rr/rrdcollect.json @@ -0,0 +1,8 @@ +{ + "slug": "rrdcollect", + "name": "RRDcollect", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62861501" + ] +} diff --git a/data/software/rr/rritbed.json b/data/software/rr/rritbed.json new file mode 100644 index 000000000000..1e9074eb7d6d --- /dev/null +++ b/data/software/rr/rritbed.json @@ -0,0 +1,8 @@ +{ + "slug": "rritbed", + "name": "rritbed", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127485648" + ] +} diff --git a/data/software/rs/rsa-archer.json b/data/software/rs/rsa-archer.json new file mode 100644 index 000000000000..78fbb84e52b0 --- /dev/null +++ b/data/software/rs/rsa-archer.json @@ -0,0 +1,8 @@ +{ + "slug": "rsa-archer", + "name": "RSA Archer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q12048436" + ] +} diff --git a/data/software/rs/rsiena.json b/data/software/rs/rsiena.json new file mode 100644 index 000000000000..db50cdea9a28 --- /dev/null +++ b/data/software/rs/rsiena.json @@ -0,0 +1,8 @@ +{ + "slug": "rsiena", + "name": "RSiena", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087708" + ] +} diff --git a/data/software/rs/rsocket.json b/data/software/rs/rsocket.json new file mode 100644 index 000000000000..06a2b1a7a411 --- /dev/null +++ b/data/software/rs/rsocket.json @@ -0,0 +1,8 @@ +{ + "slug": "rsocket", + "name": "Rsocket", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q55632069" + ] +} diff --git a/data/software/rs/rss-tracking.json b/data/software/rs/rss-tracking.json new file mode 100644 index 000000000000..4eb97193a9e8 --- /dev/null +++ b/data/software/rs/rss-tracking.json @@ -0,0 +1,8 @@ +{ + "slug": "rss-tracking", + "name": "RSS tracking", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7277767" + ] +} diff --git a/data/software/rs/rsstail.json b/data/software/rs/rsstail.json new file mode 100644 index 000000000000..ab4c18e19333 --- /dev/null +++ b/data/software/rs/rsstail.json @@ -0,0 +1,8 @@ +{ + "slug": "rsstail", + "name": "rsstail", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62861411" + ] +} diff --git a/data/software/rt/rt-connect.json b/data/software/rt/rt-connect.json new file mode 100644 index 000000000000..dee170c5c8bb --- /dev/null +++ b/data/software/rt/rt-connect.json @@ -0,0 +1,8 @@ +{ + "slug": "rt-connect", + "name": "RT Connect", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112773006" + ] +} diff --git a/data/software/rt/rt-player.json b/data/software/rt/rt-player.json new file mode 100644 index 000000000000..04d93450c879 --- /dev/null +++ b/data/software/rt/rt-player.json @@ -0,0 +1,16 @@ +{ + "slug": "rt-player", + "name": "RTÉ player", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7277955" + ], + "release_date": "2009-04-21", + "developers": [ + "Raidió Teilifís Éireann" + ], + "operating_systems": [ + "PlayStation 4", + "Microsoft Windows" + ] +} diff --git a/data/software/rt/rtai.json b/data/software/rt/rtai.json new file mode 100644 index 000000000000..e78479e0bc0c --- /dev/null +++ b/data/software/rt/rtai.json @@ -0,0 +1,11 @@ +{ + "slug": "rtai", + "name": "RTAI", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q730693" + ], + "developers": [ + "Paolo Mantegazza" + ] +} diff --git a/data/software/rt/rtaudio.json b/data/software/rt/rtaudio.json new file mode 100644 index 000000000000..0f119d35e504 --- /dev/null +++ b/data/software/rt/rtaudio.json @@ -0,0 +1,11 @@ +{ + "slug": "rtaudio", + "name": "rtaudio", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122446093" + ], + "developers": [ + "Gary Scavone" + ] +} diff --git a/data/software/rt/rtds-8.json b/data/software/rt/rtds-8.json new file mode 100644 index 000000000000..783b66c5524a --- /dev/null +++ b/data/software/rt/rtds-8.json @@ -0,0 +1,11 @@ +{ + "slug": "rtds-8", + "name": "RTDS-8", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11833112" + ], + "operating_systems": [ + "CP/M" + ] +} diff --git a/data/software/rt/rtelnet.json b/data/software/rt/rtelnet.json new file mode 100644 index 000000000000..d49a5a221498 --- /dev/null +++ b/data/software/rt/rtelnet.json @@ -0,0 +1,8 @@ +{ + "slug": "rtelnet", + "name": "RTelnet", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28818563" + ] +} diff --git a/data/software/rt/rtl-sdr.json b/data/software/rt/rtl-sdr.json new file mode 100644 index 000000000000..962edfe4f335 --- /dev/null +++ b/data/software/rt/rtl-sdr.json @@ -0,0 +1,11 @@ +{ + "slug": "rtl-sdr", + "name": "rtl-sdr", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975433" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/rt/rtl-xl.json b/data/software/rt/rtl-xl.json new file mode 100644 index 000000000000..e457f72b95fe --- /dev/null +++ b/data/software/rt/rtl-xl.json @@ -0,0 +1,11 @@ +{ + "slug": "rtl-xl", + "name": "RTL XL", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18089153" + ], + "developers": [ + "RTL Nederland" + ] +} diff --git a/data/software/rt/rtlinux.json b/data/software/rt/rtlinux.json new file mode 100644 index 000000000000..c0d8c2ebfe36 --- /dev/null +++ b/data/software/rt/rtlinux.json @@ -0,0 +1,8 @@ +{ + "slug": "rtlinux", + "name": "RTLinux", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1928473" + ] +} diff --git a/data/software/rt/rtmidi.json b/data/software/rt/rtmidi.json new file mode 100644 index 000000000000..a17879710139 --- /dev/null +++ b/data/software/rt/rtmidi.json @@ -0,0 +1,8 @@ +{ + "slug": "rtmidi", + "name": "Rtmidi", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q66828044" + ] +} diff --git a/data/software/rt/rtnf.json b/data/software/rt/rtnf.json new file mode 100644 index 000000000000..b014bc9ce12b --- /dev/null +++ b/data/software/rt/rtnf.json @@ -0,0 +1,11 @@ +{ + "slug": "rtnf", + "name": "rtnf", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108004230" + ], + "programming_languages": [ + "Go" + ] +} diff --git a/data/software/rt/rtsadmin.json b/data/software/rt/rtsadmin.json new file mode 100644 index 000000000000..3ba0adf81421 --- /dev/null +++ b/data/software/rt/rtsadmin.json @@ -0,0 +1,8 @@ +{ + "slug": "rtsadmin", + "name": "rtsadmin", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975434" + ] +} diff --git a/data/software/rt/rtslib.json b/data/software/rt/rtslib.json new file mode 100644 index 000000000000..197691c04aa0 --- /dev/null +++ b/data/software/rt/rtslib.json @@ -0,0 +1,11 @@ +{ + "slug": "rtslib", + "name": "rtslib", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975435" + ], + "licenses": [ + "Apache Software License 2.0" + ] +} diff --git a/data/software/rt/rtx-remix.json b/data/software/rt/rtx-remix.json new file mode 100644 index 000000000000..885a3de417d4 --- /dev/null +++ b/data/software/rt/rtx-remix.json @@ -0,0 +1,11 @@ +{ + "slug": "rtx-remix", + "name": "RTX Remix", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116002568" + ], + "developers": [ + "Nvidia" + ] +} diff --git a/data/software/ru/ru-adlist.json b/data/software/ru/ru-adlist.json new file mode 100644 index 000000000000..19a7db763c42 --- /dev/null +++ b/data/software/ru/ru-adlist.json @@ -0,0 +1,9 @@ +{ + "slug": "ru-adlist", + "name": "RU AdList", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127708651" + ], + "release_date": "2023-11-07" +} diff --git a/data/software/ru/rubika.json b/data/software/ru/rubika.json new file mode 100644 index 000000000000..68d787291578 --- /dev/null +++ b/data/software/ru/rubika.json @@ -0,0 +1,13 @@ +{ + "slug": "rubika", + "name": "Rubika", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109548753" + ], + "operating_systems": [ + "iOS", + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/software/ru/rublon.json b/data/software/ru/rublon.json new file mode 100644 index 000000000000..fa65cb9b073b --- /dev/null +++ b/data/software/ru/rublon.json @@ -0,0 +1,8 @@ +{ + "slug": "rublon", + "name": "Rublon", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q15623199" + ] +} diff --git a/data/software/ru/ruby-geocoder.json b/data/software/ru/ruby-geocoder.json new file mode 100644 index 000000000000..53b98783fd0c --- /dev/null +++ b/data/software/ru/ruby-geocoder.json @@ -0,0 +1,8 @@ +{ + "slug": "ruby-geocoder", + "name": "Ruby Geocoder", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25212821" + ] +} diff --git a/data/software/ru/ruby-plsql-spec.json b/data/software/ru/ruby-plsql-spec.json new file mode 100644 index 000000000000..affa69625bc9 --- /dev/null +++ b/data/software/ru/ruby-plsql-spec.json @@ -0,0 +1,11 @@ +{ + "slug": "ruby-plsql-spec", + "name": "Ruby-plsql-spec", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25345945" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/ru/ruby-tokyocabinet.json b/data/software/ru/ruby-tokyocabinet.json new file mode 100644 index 000000000000..4a388224ae4c --- /dev/null +++ b/data/software/ru/ruby-tokyocabinet.json @@ -0,0 +1,8 @@ +{ + "slug": "ruby-tokyocabinet", + "name": "ruby-tokyocabinet", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106102019" + ] +} diff --git a/data/software/ru/rubyjs.json b/data/software/ru/rubyjs.json new file mode 100644 index 000000000000..f20b417e4be7 --- /dev/null +++ b/data/software/ru/rubyjs.json @@ -0,0 +1,11 @@ +{ + "slug": "rubyjs", + "name": "RubyJS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7376248" + ], + "operating_systems": [ + "cross-platform" + ] +} diff --git a/data/software/ru/rubymine.json b/data/software/ru/rubymine.json new file mode 100644 index 000000000000..82ae4a61cc8e --- /dev/null +++ b/data/software/ru/rubymine.json @@ -0,0 +1,21 @@ +{ + "slug": "rubymine", + "name": "RubyMine", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4048590" + ], + "developers": [ + "JetBrains" + ], + "operating_systems": [ + "cross-platform" + ], + "programming_languages": [ + "Java", + "Kotlin" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/ru/ruley-the-e-referee.json b/data/software/ru/ruley-the-e-referee.json new file mode 100644 index 000000000000..5c38d204fd96 --- /dev/null +++ b/data/software/ru/ruley-the-e-referee.json @@ -0,0 +1,11 @@ +{ + "slug": "ruley-the-e-referee", + "name": "Ruley the E-Referee", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140160700" + ], + "operating_systems": [ + "iOS" + ] +} diff --git a/data/software/ru/run-time-infrastructure.json b/data/software/ru/run-time-infrastructure.json new file mode 100644 index 000000000000..c9a300880a5d --- /dev/null +++ b/data/software/ru/run-time-infrastructure.json @@ -0,0 +1,8 @@ +{ + "slug": "run-time-infrastructure", + "name": "Run-Time Infrastructure", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7379458" + ] +} diff --git a/data/software/ru/rundata.json b/data/software/ru/rundata.json new file mode 100644 index 000000000000..509f47cc3474 --- /dev/null +++ b/data/software/ru/rundata.json @@ -0,0 +1,8 @@ +{ + "slug": "rundata", + "name": "Rundata", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134446066" + ] +} diff --git a/data/software/ru/rundll32-exe.json b/data/software/ru/rundll32-exe.json new file mode 100644 index 000000000000..74b3584df63d --- /dev/null +++ b/data/software/ru/rundll32-exe.json @@ -0,0 +1,8 @@ +{ + "slug": "rundll32-exe", + "name": "Rundll32.exe", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2176282" + ] +} diff --git a/data/software/ru/rungem.json b/data/software/ru/rungem.json new file mode 100644 index 000000000000..f8c44a275990 --- /dev/null +++ b/data/software/ru/rungem.json @@ -0,0 +1,8 @@ +{ + "slug": "rungem", + "name": "RunGEM", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7379473" + ] +} diff --git a/data/software/ru/runoff.json b/data/software/ru/runoff.json new file mode 100644 index 000000000000..28eca45de935 --- /dev/null +++ b/data/software/ru/runoff.json @@ -0,0 +1,8 @@ +{ + "slug": "runoff", + "name": "RUNOFF", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7380095" + ] +} diff --git a/data/software/ru/runv.json b/data/software/ru/runv.json new file mode 100644 index 000000000000..b94c594c7128 --- /dev/null +++ b/data/software/ru/runv.json @@ -0,0 +1,8 @@ +{ + "slug": "runv", + "name": "runv", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065105" + ] +} diff --git a/data/software/ru/rust-compiler.json b/data/software/ru/rust-compiler.json new file mode 100644 index 000000000000..0333b3456142 --- /dev/null +++ b/data/software/ru/rust-compiler.json @@ -0,0 +1,8 @@ +{ + "slug": "rust-compiler", + "name": "Rust compiler", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140263371" + ] +} diff --git a/data/software/ru/rust-for-linux.json b/data/software/ru/rust-for-linux.json new file mode 100644 index 000000000000..4e1fb987544d --- /dev/null +++ b/data/software/ru/rust-for-linux.json @@ -0,0 +1,11 @@ +{ + "slug": "rust-for-linux", + "name": "Rust for Linux", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113493081" + ], + "developers": [ + "Miguel Ojeda" + ] +} diff --git a/data/software/ru/rustrace.json b/data/software/ru/rustrace.json new file mode 100644 index 000000000000..a9a599d083aa --- /dev/null +++ b/data/software/ru/rustrace.json @@ -0,0 +1,11 @@ +{ + "slug": "rustrace", + "name": "rustrace", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62664387" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/rx/rx-savings-solutions.json b/data/software/rx/rx-savings-solutions.json new file mode 100644 index 000000000000..edc4bbc01b53 --- /dev/null +++ b/data/software/rx/rx-savings-solutions.json @@ -0,0 +1,8 @@ +{ + "slug": "rx-savings-solutions", + "name": "Rx Savings Solutions", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q132531137" + ] +} diff --git a/data/software/ry/rymdport.json b/data/software/ry/rymdport.json new file mode 100644 index 000000000000..018d41d10aeb --- /dev/null +++ b/data/software/ry/rymdport.json @@ -0,0 +1,8 @@ +{ + "slug": "rymdport", + "name": "Rymdport", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131444227" + ] +} diff --git a/data/software/ry/rythm.json b/data/software/ry/rythm.json new file mode 100644 index 000000000000..eab0d9d3ffa7 --- /dev/null +++ b/data/software/ry/rythm.json @@ -0,0 +1,8 @@ +{ + "slug": "rythm", + "name": "Rythm", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134739033" + ] +} diff --git a/data/software/ry/ryu.json b/data/software/ry/ryu.json new file mode 100644 index 000000000000..4576b8d4af3b --- /dev/null +++ b/data/software/ry/ryu.json @@ -0,0 +1,11 @@ +{ + "slug": "ryu", + "name": "ryu", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117357437" + ], + "licenses": [ + "Apache Software License 2.0" + ] +} diff --git a/data/software/ry/ryugy-ng-changgi.json b/data/software/ry/ryugy-ng-changgi.json new file mode 100644 index 000000000000..7f4d4bc41bf6 --- /dev/null +++ b/data/software/ry/ryugy-ng-changgi.json @@ -0,0 +1,11 @@ +{ + "slug": "ryugy-ng-changgi", + "name": "Ryugyŏng Changgi", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q12594263" + ], + "developers": [ + "Korea Computer Center" + ] +} diff --git a/data/software/s-/s-boot-4-0-for-the-gt-i9300.json b/data/software/s-/s-boot-4-0-for-the-gt-i9300.json new file mode 100644 index 000000000000..66b15a7eff51 --- /dev/null +++ b/data/software/s-/s-boot-4-0-for-the-gt-i9300.json @@ -0,0 +1,11 @@ +{ + "slug": "s-boot-4-0-for-the-gt-i9300", + "name": "s-boot 4.0 for the GT-I9300", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110800808" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/s2/s2-spreadsheet.json b/data/software/s2/s2-spreadsheet.json new file mode 100644 index 000000000000..ff0f1aa8a91d --- /dev/null +++ b/data/software/s2/s2-spreadsheet.json @@ -0,0 +1,11 @@ +{ + "slug": "s2-spreadsheet", + "name": "S2 Spreadsheet", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7388257" + ], + "developers": [ + "IBM" + ] +} diff --git a/data/software/s3/s3ql.json b/data/software/s3/s3ql.json new file mode 100644 index 000000000000..32e0f89a09f6 --- /dev/null +++ b/data/software/s3/s3ql.json @@ -0,0 +1,8 @@ +{ + "slug": "s3ql", + "name": "S3QL", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62866052" + ] +} diff --git a/data/software/s4/s4e-io.json b/data/software/s4/s4e-io.json new file mode 100644 index 000000000000..1a0d59b49712 --- /dev/null +++ b/data/software/s4/s4e-io.json @@ -0,0 +1,11 @@ +{ + "slug": "s4e-io", + "name": "S4E.io", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136431840" + ], + "developers": [ + "S4E.io" + ] +} diff --git a/data/software/s6/s6-overlay.json b/data/software/s6/s6-overlay.json new file mode 100644 index 000000000000..3b18c5a23ae2 --- /dev/null +++ b/data/software/s6/s6-overlay.json @@ -0,0 +1,8 @@ +{ + "slug": "s6-overlay", + "name": "s6-overlay", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975439" + ] +} diff --git a/data/software/sa/sachet.json b/data/software/sa/sachet.json new file mode 100644 index 000000000000..3d84cab126ab --- /dev/null +++ b/data/software/sa/sachet.json @@ -0,0 +1,8 @@ +{ + "slug": "sachet", + "name": "Sachet", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134470331" + ] +} diff --git a/data/software/sa/sachiko.json b/data/software/sa/sachiko.json new file mode 100644 index 000000000000..1bb8d51af1a3 --- /dev/null +++ b/data/software/sa/sachiko.json @@ -0,0 +1,14 @@ +{ + "slug": "sachiko", + "name": "Sachiko", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25205728" + ], + "release_date": "2015-07-27", + "operating_systems": [ + "iOS", + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/software/sa/sadovnick-projekce.json b/data/software/sa/sadovnick-projekce.json new file mode 100644 index 000000000000..00a0f9483d24 --- /dev/null +++ b/data/software/sa/sadovnick-projekce.json @@ -0,0 +1,11 @@ +{ + "slug": "sadovnick-projekce", + "name": "Sadovnická projekce", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q20428218" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/sa/safe-smart-account.json b/data/software/sa/safe-smart-account.json new file mode 100644 index 000000000000..41e388c435be --- /dev/null +++ b/data/software/sa/safe-smart-account.json @@ -0,0 +1,14 @@ +{ + "slug": "safe-smart-account", + "name": "Safe (smart account)", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139813977" + ], + "programming_languages": [ + "Solidity" + ], + "licenses": [ + "GNU Lesser General Public License, version 3.0" + ] +} diff --git a/data/software/sa/safecat.json b/data/software/sa/safecat.json new file mode 100644 index 000000000000..5d41557b5143 --- /dev/null +++ b/data/software/sa/safecat.json @@ -0,0 +1,8 @@ +{ + "slug": "safecat", + "name": "safecat", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62865982" + ] +} diff --git a/data/software/sa/safecopy.json b/data/software/sa/safecopy.json new file mode 100644 index 000000000000..3457751032c9 --- /dev/null +++ b/data/software/sa/safecopy.json @@ -0,0 +1,8 @@ +{ + "slug": "safecopy", + "name": "safecopy", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62865968" + ] +} diff --git a/data/software/sa/safemoon.json b/data/software/sa/safemoon.json new file mode 100644 index 000000000000..0e5598d512cd --- /dev/null +++ b/data/software/sa/safemoon.json @@ -0,0 +1,8 @@ +{ + "slug": "safemoon", + "name": "SafeMoon", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107272578" + ] +} diff --git a/data/software/sa/safeq.json b/data/software/sa/safeq.json new file mode 100644 index 000000000000..f08445d459db --- /dev/null +++ b/data/software/sa/safeq.json @@ -0,0 +1,8 @@ +{ + "slug": "safeq", + "name": "Safeq", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7398577" + ] +} diff --git a/data/software/sa/safersurf.json b/data/software/sa/safersurf.json new file mode 100644 index 000000000000..92fba9817740 --- /dev/null +++ b/data/software/sa/safersurf.json @@ -0,0 +1,9 @@ +{ + "slug": "safersurf", + "name": "SaferSurf", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q20989114" + ], + "release_date": "2003-01-01" +} diff --git a/data/software/sa/safervpn.json b/data/software/sa/safervpn.json new file mode 100644 index 000000000000..be5cb886904d --- /dev/null +++ b/data/software/sa/safervpn.json @@ -0,0 +1,9 @@ +{ + "slug": "safervpn", + "name": "SaferVPN", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q47443781" + ], + "release_date": "2013-03-01" +} diff --git a/data/software/sa/safetrek.json b/data/software/sa/safetrek.json new file mode 100644 index 000000000000..9b410a8e561c --- /dev/null +++ b/data/software/sa/safetrek.json @@ -0,0 +1,9 @@ +{ + "slug": "safetrek", + "name": "SafeTrek", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28162688" + ], + "release_date": "2013-01-01" +} diff --git a/data/software/sa/sagan-rules.json b/data/software/sa/sagan-rules.json new file mode 100644 index 000000000000..1a0b62a1e94e --- /dev/null +++ b/data/software/sa/sagan-rules.json @@ -0,0 +1,8 @@ +{ + "slug": "sagan-rules", + "name": "sagan-rules", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975440" + ] +} diff --git a/data/software/sa/sagan.json b/data/software/sa/sagan.json new file mode 100644 index 000000000000..863b2c1be633 --- /dev/null +++ b/data/software/sa/sagan.json @@ -0,0 +1,8 @@ +{ + "slug": "sagan", + "name": "Sagan", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17126138" + ] +} diff --git a/data/software/sa/sage-200cloud.json b/data/software/sa/sage-200cloud.json new file mode 100644 index 000000000000..90ce9c600d99 --- /dev/null +++ b/data/software/sa/sage-200cloud.json @@ -0,0 +1,8 @@ +{ + "slug": "sage-200cloud", + "name": "Sage 200cloud", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q65069208" + ] +} diff --git a/data/software/sa/sage-business-cloud.json b/data/software/sa/sage-business-cloud.json new file mode 100644 index 000000000000..188939e3633d --- /dev/null +++ b/data/software/sa/sage-business-cloud.json @@ -0,0 +1,8 @@ +{ + "slug": "sage-business-cloud", + "name": "Sage Business Cloud", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q65067715" + ] +} diff --git a/data/software/sa/sage-x3.json b/data/software/sa/sage-x3.json new file mode 100644 index 000000000000..4c9f2a471b84 --- /dev/null +++ b/data/software/sa/sage-x3.json @@ -0,0 +1,11 @@ +{ + "slug": "sage-x3", + "name": "Sage X3", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3461374" + ], + "developers": [ + "Sage Group" + ] +} diff --git a/data/software/sa/sahi-pro.json b/data/software/sa/sahi-pro.json new file mode 100644 index 000000000000..92f7106fc193 --- /dev/null +++ b/data/software/sa/sahi-pro.json @@ -0,0 +1,8 @@ +{ + "slug": "sahi-pro", + "name": "Sahi Pro", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140336856" + ] +} diff --git a/data/software/sa/sahysmod.json b/data/software/sa/sahysmod.json new file mode 100644 index 000000000000..a01314136e19 --- /dev/null +++ b/data/software/sa/sahysmod.json @@ -0,0 +1,14 @@ +{ + "slug": "sahysmod", + "name": "SahysMod", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7399772" + ], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [ + "Delphi" + ] +} diff --git a/data/software/sa/saigon-software-park.json b/data/software/sa/saigon-software-park.json new file mode 100644 index 000000000000..57da0168c7e5 --- /dev/null +++ b/data/software/sa/saigon-software-park.json @@ -0,0 +1,8 @@ +{ + "slug": "saigon-software-park", + "name": "Saigon Software Park", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q119505158" + ] +} diff --git a/data/software/sa/saint.json b/data/software/sa/saint.json new file mode 100644 index 000000000000..2f80f8e89dd1 --- /dev/null +++ b/data/software/sa/saint.json @@ -0,0 +1,8 @@ +{ + "slug": "saint", + "name": "SAINT", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7388582" + ] +} diff --git a/data/software/sa/salamanca.json b/data/software/sa/salamanca.json new file mode 100644 index 000000000000..ab68564cc0aa --- /dev/null +++ b/data/software/sa/salamanca.json @@ -0,0 +1,8 @@ +{ + "slug": "salamanca", + "name": "Salamanca", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3469583" + ] +} diff --git a/data/software/sa/salamweb.json b/data/software/sa/salamweb.json new file mode 100644 index 000000000000..c8e27ada2798 --- /dev/null +++ b/data/software/sa/salamweb.json @@ -0,0 +1,11 @@ +{ + "slug": "salamweb", + "name": "SalamWeb", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q61194756" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/sa/salem.json b/data/software/sa/salem.json new file mode 100644 index 000000000000..3893c6a19661 --- /dev/null +++ b/data/software/sa/salem.json @@ -0,0 +1,8 @@ +{ + "slug": "salem", + "name": "SALEM", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087709" + ] +} diff --git a/data/software/sa/saler.json b/data/software/sa/saler.json new file mode 100644 index 000000000000..98ac7cd78328 --- /dev/null +++ b/data/software/sa/saler.json @@ -0,0 +1,11 @@ +{ + "slug": "saler", + "name": "Saler", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q65204053" + ], + "developers": [ + "Technical University of Valencia" + ] +} diff --git a/data/software/sa/salesforce-lightning.json b/data/software/sa/salesforce-lightning.json new file mode 100644 index 000000000000..1b235879cd07 --- /dev/null +++ b/data/software/sa/salesforce-lightning.json @@ -0,0 +1,8 @@ +{ + "slug": "salesforce-lightning", + "name": "Salesforce Lightning", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105745510" + ] +} diff --git a/data/software/sa/salling-clicker.json b/data/software/sa/salling-clicker.json new file mode 100644 index 000000000000..979d3056ae27 --- /dev/null +++ b/data/software/sa/salling-clicker.json @@ -0,0 +1,8 @@ +{ + "slug": "salling-clicker", + "name": "Salling Clicker", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7405006" + ] +} diff --git a/data/software/sa/salmon.json b/data/software/sa/salmon.json new file mode 100644 index 000000000000..680399c8c2c9 --- /dev/null +++ b/data/software/sa/salmon.json @@ -0,0 +1,16 @@ +{ + "slug": "salmon", + "name": "Salmon", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112974082" + ], + "developers": [ + "Rafael Irizarry", + "Carl Kingsford", + "Rob Patro" + ], + "licenses": [ + "GNU General Public License, version 3.0" + ] +} diff --git a/data/software/sa/salonized.json b/data/software/sa/salonized.json new file mode 100644 index 000000000000..ca7f44b81a91 --- /dev/null +++ b/data/software/sa/salonized.json @@ -0,0 +1,11 @@ +{ + "slug": "salonized", + "name": "Salonized", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137900368" + ], + "publishers": [ + "Treatwell" + ] +} diff --git a/data/software/sa/saltmod.json b/data/software/sa/saltmod.json new file mode 100644 index 000000000000..c27475990263 --- /dev/null +++ b/data/software/sa/saltmod.json @@ -0,0 +1,14 @@ +{ + "slug": "saltmod", + "name": "SaltMod", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7405792" + ], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [ + "Delphi" + ] +} diff --git a/data/software/sa/salttesting.json b/data/software/sa/salttesting.json new file mode 100644 index 000000000000..87c0ccf671cd --- /dev/null +++ b/data/software/sa/salttesting.json @@ -0,0 +1,8 @@ +{ + "slug": "salttesting", + "name": "SaltTesting", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975441" + ] +} diff --git a/data/software/sa/sam-basic.json b/data/software/sa/sam-basic.json new file mode 100644 index 000000000000..7f8ad123190f --- /dev/null +++ b/data/software/sa/sam-basic.json @@ -0,0 +1,8 @@ +{ + "slug": "sam-basic", + "name": "SAM BASIC", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3943413" + ] +} diff --git a/data/software/sa/sam-broadcaster.json b/data/software/sa/sam-broadcaster.json new file mode 100644 index 000000000000..e79f32c09060 --- /dev/null +++ b/data/software/sa/sam-broadcaster.json @@ -0,0 +1,14 @@ +{ + "slug": "sam-broadcaster", + "name": "SAM Broadcaster", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1163477" + ], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [ + "Delphi" + ] +} diff --git a/data/software/sa/sam-spade.json b/data/software/sa/sam-spade.json new file mode 100644 index 000000000000..8444420a836c --- /dev/null +++ b/data/software/sa/sam-spade.json @@ -0,0 +1,8 @@ +{ + "slug": "sam-spade", + "name": "Sam Spade", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7408187" + ] +} diff --git a/data/software/sa/sambar-server.json b/data/software/sa/sambar-server.json new file mode 100644 index 000000000000..f19e5ce16993 --- /dev/null +++ b/data/software/sa/sambar-server.json @@ -0,0 +1,8 @@ +{ + "slug": "sambar-server", + "name": "Sambar Server", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3470698" + ] +} diff --git a/data/software/sa/samcef.json b/data/software/sa/samcef.json new file mode 100644 index 000000000000..d1746f3f2f28 --- /dev/null +++ b/data/software/sa/samcef.json @@ -0,0 +1,8 @@ +{ + "slug": "samcef", + "name": "SAMCEF", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3459183" + ] +} diff --git a/data/software/sa/saminside.json b/data/software/sa/saminside.json new file mode 100644 index 000000000000..52c921f7bb90 --- /dev/null +++ b/data/software/sa/saminside.json @@ -0,0 +1,8 @@ +{ + "slug": "saminside", + "name": "SAMInside", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7388631" + ] +} diff --git a/data/software/sa/samna.json b/data/software/sa/samna.json new file mode 100644 index 000000000000..55b6a29e605f --- /dev/null +++ b/data/software/sa/samna.json @@ -0,0 +1,8 @@ +{ + "slug": "samna", + "name": "Samna", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7409872" + ] +} diff --git a/data/software/sa/samplecell-editor.json b/data/software/sa/samplecell-editor.json new file mode 100644 index 000000000000..8edce884ab0b --- /dev/null +++ b/data/software/sa/samplecell-editor.json @@ -0,0 +1,11 @@ +{ + "slug": "samplecell-editor", + "name": "Samplecell Editor", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135479718" + ], + "publishers": [ + "Avid Audio" + ] +} diff --git a/data/software/sa/sampo-ui.json b/data/software/sa/sampo-ui.json new file mode 100644 index 000000000000..d19f4b9bdc3c --- /dev/null +++ b/data/software/sa/sampo-ui.json @@ -0,0 +1,14 @@ +{ + "slug": "sampo-ui", + "name": "Sampo-UI", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122949732" + ], + "licenses": [ + "MIT License" + ], + "genres": [ + "graphical user interface" + ] +} diff --git a/data/software/sa/samsung-email.json b/data/software/sa/samsung-email.json new file mode 100644 index 000000000000..fd55951a4b04 --- /dev/null +++ b/data/software/sa/samsung-email.json @@ -0,0 +1,8 @@ +{ + "slug": "samsung-email", + "name": "Samsung Email", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123015558" + ] +} diff --git a/data/software/sa/samsung-galaxy-player-50.json b/data/software/sa/samsung-galaxy-player-50.json new file mode 100644 index 000000000000..ed5c05617516 --- /dev/null +++ b/data/software/sa/samsung-galaxy-player-50.json @@ -0,0 +1,15 @@ +{ + "slug": "samsung-galaxy-player-50", + "name": "Samsung Galaxy Player 50", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q488559" + ], + "developers": [ + "Samsung Electronics" + ], + "operating_systems": [ + "Android Gingerbread", + "Android Froyo" + ] +} diff --git a/data/software/sa/samsung-knox.json b/data/software/sa/samsung-knox.json new file mode 100644 index 000000000000..b2c96e78edb2 --- /dev/null +++ b/data/software/sa/samsung-knox.json @@ -0,0 +1,14 @@ +{ + "slug": "samsung-knox", + "name": "Samsung Knox", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q14628801" + ], + "developers": [ + "Samsung Group" + ], + "operating_systems": [ + "Tizen" + ] +} diff --git a/data/software/sa/samsung-link.json b/data/software/sa/samsung-link.json new file mode 100644 index 000000000000..f7157e32a490 --- /dev/null +++ b/data/software/sa/samsung-link.json @@ -0,0 +1,12 @@ +{ + "slug": "samsung-link", + "name": "Samsung Link", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q14389650" + ], + "release_date": "2009-01-01", + "developers": [ + "Samsung Electronics" + ] +} diff --git a/data/software/sa/samsung-wallet.json b/data/software/sa/samsung-wallet.json new file mode 100644 index 000000000000..21c027df5b67 --- /dev/null +++ b/data/software/sa/samsung-wallet.json @@ -0,0 +1,11 @@ +{ + "slug": "samsung-wallet", + "name": "Samsung Wallet", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112939330" + ], + "developers": [ + "Samsung Electronics" + ] +} diff --git a/data/software/sa/samsung-watchon.json b/data/software/sa/samsung-watchon.json new file mode 100644 index 000000000000..3e5b08a71a42 --- /dev/null +++ b/data/software/sa/samsung-watchon.json @@ -0,0 +1,11 @@ +{ + "slug": "samsung-watchon", + "name": "Samsung WatchON", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17063687" + ], + "developers": [ + "Samsung Electronics" + ] +} diff --git a/data/software/sa/samurize.json b/data/software/sa/samurize.json new file mode 100644 index 000000000000..d4c5bae6cdbf --- /dev/null +++ b/data/software/sa/samurize.json @@ -0,0 +1,8 @@ +{ + "slug": "samurize", + "name": "Samurize", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q444255" + ] +} diff --git a/data/software/sa/sanad.json b/data/software/sa/sanad.json new file mode 100644 index 000000000000..a54ad1fc767e --- /dev/null +++ b/data/software/sa/sanad.json @@ -0,0 +1,8 @@ +{ + "slug": "sanad", + "name": "Sanad", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136297487" + ] +} diff --git a/data/software/sa/sandbox-q4049043.json b/data/software/sa/sandbox-q4049043.json new file mode 100644 index 000000000000..0b56d51f4090 --- /dev/null +++ b/data/software/sa/sandbox-q4049043.json @@ -0,0 +1,8 @@ +{ + "slug": "sandbox-q4049043", + "name": "sandbox", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4049043" + ] +} diff --git a/data/software/sa/sandbox.json b/data/software/sa/sandbox.json new file mode 100644 index 000000000000..7407969a97cc --- /dev/null +++ b/data/software/sa/sandbox.json @@ -0,0 +1,8 @@ +{ + "slug": "sandbox", + "name": "sandbox", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q842193" + ] +} diff --git a/data/software/sa/sandboxedapps.json b/data/software/sa/sandboxedapps.json new file mode 100644 index 000000000000..b23e59342e46 --- /dev/null +++ b/data/software/sa/sandboxedapps.json @@ -0,0 +1,8 @@ +{ + "slug": "sandboxedapps", + "name": "SandboxedApps", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76181576" + ] +} diff --git a/data/software/sa/sandvox.json b/data/software/sa/sandvox.json new file mode 100644 index 000000000000..510fe9afe285 --- /dev/null +++ b/data/software/sa/sandvox.json @@ -0,0 +1,11 @@ +{ + "slug": "sandvox", + "name": "Sandvox", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7417029" + ], + "developers": [ + "Karelia Software" + ] +} diff --git a/data/software/sa/saner-vulnerability-management.json b/data/software/sa/saner-vulnerability-management.json new file mode 100644 index 000000000000..465765670a39 --- /dev/null +++ b/data/software/sa/saner-vulnerability-management.json @@ -0,0 +1,13 @@ +{ + "slug": "saner-vulnerability-management", + "name": "Saner Vulnerability Management", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134587931" + ], + "operating_systems": [ + "IBM AIX", + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/software/sa/sango-2.json b/data/software/sa/sango-2.json new file mode 100644 index 000000000000..8999025c7a74 --- /dev/null +++ b/data/software/sa/sango-2.json @@ -0,0 +1,8 @@ +{ + "slug": "sango-2", + "name": "Sango 2", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140462804" + ] +} diff --git a/data/software/sa/sap-analytics-cloud.json b/data/software/sa/sap-analytics-cloud.json new file mode 100644 index 000000000000..f53dea2ec14b --- /dev/null +++ b/data/software/sa/sap-analytics-cloud.json @@ -0,0 +1,8 @@ +{ + "slug": "sap-analytics-cloud", + "name": "SAP Analytics Cloud", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120748987" + ] +} diff --git a/data/software/sa/sap-anywhere.json b/data/software/sa/sap-anywhere.json new file mode 100644 index 000000000000..aa9c4d1b4939 --- /dev/null +++ b/data/software/sa/sap-anywhere.json @@ -0,0 +1,14 @@ +{ + "slug": "sap-anywhere", + "name": "SAP Anywhere", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q24806849" + ], + "developers": [ + "SAP" + ], + "programming_languages": [ + "Java" + ] +} diff --git a/data/software/sa/sap-business-bydesign.json b/data/software/sa/sap-business-bydesign.json new file mode 100644 index 000000000000..92a075fc10d7 --- /dev/null +++ b/data/software/sa/sap-business-bydesign.json @@ -0,0 +1,11 @@ +{ + "slug": "sap-business-bydesign", + "name": "SAP Business ByDesign", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7388714" + ], + "developers": [ + "SAP" + ] +} diff --git a/data/software/sa/sap-business-one.json b/data/software/sa/sap-business-one.json new file mode 100644 index 000000000000..9cf86b37b1fa --- /dev/null +++ b/data/software/sa/sap-business-one.json @@ -0,0 +1,11 @@ +{ + "slug": "sap-business-one", + "name": "SAP Business One", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3267706" + ], + "developers": [ + "SAP" + ] +} diff --git a/data/software/sa/sap-business-suite.json b/data/software/sa/sap-business-suite.json new file mode 100644 index 000000000000..97814cfef598 --- /dev/null +++ b/data/software/sa/sap-business-suite.json @@ -0,0 +1,11 @@ +{ + "slug": "sap-business-suite", + "name": "SAP Business Suite", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4178192" + ], + "developers": [ + "SAP" + ] +} diff --git a/data/software/sa/sap-converged-cloud.json b/data/software/sa/sap-converged-cloud.json new file mode 100644 index 000000000000..c39fac344174 --- /dev/null +++ b/data/software/sa/sap-converged-cloud.json @@ -0,0 +1,11 @@ +{ + "slug": "sap-converged-cloud", + "name": "SAP Converged Cloud", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q42266705" + ], + "developers": [ + "SAP" + ] +} diff --git a/data/software/sa/sap-enterprise-architecture-framework.json b/data/software/sa/sap-enterprise-architecture-framework.json new file mode 100644 index 000000000000..68a8ebd64daa --- /dev/null +++ b/data/software/sa/sap-enterprise-architecture-framework.json @@ -0,0 +1,8 @@ +{ + "slug": "sap-enterprise-architecture-framework", + "name": "SAP Enterprise Architecture Framework", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7388721" + ] +} diff --git a/data/software/sa/sap-fiori.json b/data/software/sa/sap-fiori.json new file mode 100644 index 000000000000..3e2b227c6872 --- /dev/null +++ b/data/software/sa/sap-fiori.json @@ -0,0 +1,11 @@ +{ + "slug": "sap-fiori", + "name": "SAP Fiori", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22101754" + ], + "developers": [ + "SAP" + ] +} diff --git a/data/software/sa/sap-for-retail.json b/data/software/sa/sap-for-retail.json new file mode 100644 index 000000000000..f2e830408a6c --- /dev/null +++ b/data/software/sa/sap-for-retail.json @@ -0,0 +1,8 @@ +{ + "slug": "sap-for-retail", + "name": "SAP for Retail", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2204863" + ] +} diff --git a/data/software/sa/sap-gui.json b/data/software/sa/sap-gui.json new file mode 100644 index 000000000000..0132053216e9 --- /dev/null +++ b/data/software/sa/sap-gui.json @@ -0,0 +1,18 @@ +{ + "slug": "sap-gui", + "name": "SAP GUI", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q489479" + ], + "developers": [ + "SAP" + ], + "operating_systems": [ + "Java virtual machine", + "Microsoft Windows" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/sa/sap-is-u.json b/data/software/sa/sap-is-u.json new file mode 100644 index 000000000000..ec7cd6e3d219 --- /dev/null +++ b/data/software/sa/sap-is-u.json @@ -0,0 +1,8 @@ +{ + "slug": "sap-is-u", + "name": "SAP IS-U", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1690762" + ] +} diff --git a/data/software/sa/sap-netweaver-application-server.json b/data/software/sa/sap-netweaver-application-server.json new file mode 100644 index 000000000000..54738e6387e5 --- /dev/null +++ b/data/software/sa/sap-netweaver-application-server.json @@ -0,0 +1,24 @@ +{ + "slug": "sap-netweaver-application-server", + "name": "SAP NetWeaver Application Server", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q388612" + ], + "developers": [ + "SAP" + ], + "operating_systems": [ + "IBM AIX", + "HP-UX", + "Solaris", + "Microsoft Windows" + ], + "programming_languages": [ + "Java", + "ABAP" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/sa/sap-netweaver-portal.json b/data/software/sa/sap-netweaver-portal.json new file mode 100644 index 000000000000..b63b03066ef2 --- /dev/null +++ b/data/software/sa/sap-netweaver-portal.json @@ -0,0 +1,8 @@ +{ + "slug": "sap-netweaver-portal", + "name": "SAP NetWeaver Portal", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2204866" + ] +} diff --git a/data/software/sa/sap-netweaver-process-integration.json b/data/software/sa/sap-netweaver-process-integration.json new file mode 100644 index 000000000000..352ed30f0d9c --- /dev/null +++ b/data/software/sa/sap-netweaver-process-integration.json @@ -0,0 +1,8 @@ +{ + "slug": "sap-netweaver-process-integration", + "name": "SAP NetWeaver Process Integration", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2204873" + ] +} diff --git a/data/software/sa/sap-netweaver-visual-composer.json b/data/software/sa/sap-netweaver-visual-composer.json new file mode 100644 index 000000000000..3fb72b483071 --- /dev/null +++ b/data/software/sa/sap-netweaver-visual-composer.json @@ -0,0 +1,8 @@ +{ + "slug": "sap-netweaver-visual-composer", + "name": "SAP NetWeaver Visual Composer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7388729" + ] +} diff --git a/data/software/sa/sap-s-4hana.json b/data/software/sa/sap-s-4hana.json new file mode 100644 index 000000000000..1c58d924ad40 --- /dev/null +++ b/data/software/sa/sap-s-4hana.json @@ -0,0 +1,18 @@ +{ + "slug": "sap-s-4hana", + "name": "SAP S/4HANA", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q21480303" + ], + "release_date": "2015-02-03", + "developers": [ + "SAP" + ], + "programming_languages": [ + "ABAP" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/sa/sap-solution-manager.json b/data/software/sa/sap-solution-manager.json new file mode 100644 index 000000000000..67ff88874414 --- /dev/null +++ b/data/software/sa/sap-solution-manager.json @@ -0,0 +1,8 @@ +{ + "slug": "sap-solution-manager", + "name": "SAP Solution Manager", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2204860" + ] +} diff --git a/data/software/sa/sap-streamwork.json b/data/software/sa/sap-streamwork.json new file mode 100644 index 000000000000..2355b351aed6 --- /dev/null +++ b/data/software/sa/sap-streamwork.json @@ -0,0 +1,11 @@ +{ + "slug": "sap-streamwork", + "name": "SAP StreamWork", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7388732" + ], + "developers": [ + "SAP" + ] +} diff --git a/data/software/sa/sap2000.json b/data/software/sa/sap2000.json new file mode 100644 index 000000000000..e353dc1fa834 --- /dev/null +++ b/data/software/sa/sap2000.json @@ -0,0 +1,8 @@ +{ + "slug": "sap2000", + "name": "SAP2000", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6727191" + ] +} diff --git a/data/software/sa/sapper.json b/data/software/sa/sapper.json new file mode 100644 index 000000000000..d12c07584326 --- /dev/null +++ b/data/software/sa/sapper.json @@ -0,0 +1,8 @@ +{ + "slug": "sapper", + "name": "Sapper", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108324807" + ] +} diff --git a/data/software/sa/saqc.json b/data/software/sa/saqc.json new file mode 100644 index 000000000000..4527a60b85aa --- /dev/null +++ b/data/software/sa/saqc.json @@ -0,0 +1,11 @@ +{ + "slug": "saqc", + "name": "SaQC", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q128228853" + ], + "programming_languages": [ + "Python" + ] +} diff --git a/data/software/sa/saracen-paint.json b/data/software/sa/saracen-paint.json new file mode 100644 index 000000000000..e8f8162b14f1 --- /dev/null +++ b/data/software/sa/saracen-paint.json @@ -0,0 +1,8 @@ +{ + "slug": "saracen-paint", + "name": "Saracen Paint", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q71544988" + ] +} diff --git a/data/software/sa/sardu.json b/data/software/sa/sardu.json new file mode 100644 index 000000000000..04418426c13e --- /dev/null +++ b/data/software/sa/sardu.json @@ -0,0 +1,8 @@ +{ + "slug": "sardu", + "name": "SARDU", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q15972486" + ] +} diff --git a/data/software/sa/sarit.json b/data/software/sa/sarit.json new file mode 100644 index 000000000000..dfe7b8441a9f --- /dev/null +++ b/data/software/sa/sarit.json @@ -0,0 +1,8 @@ +{ + "slug": "sarit", + "name": "SARIT", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084527" + ] +} diff --git a/data/software/sa/sarloc.json b/data/software/sa/sarloc.json new file mode 100644 index 000000000000..3132d16eb392 --- /dev/null +++ b/data/software/sa/sarloc.json @@ -0,0 +1,8 @@ +{ + "slug": "sarloc", + "name": "SARLOC", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q97230006" + ] +} diff --git a/data/software/sa/sas-planet.json b/data/software/sa/sas-planet.json new file mode 100644 index 000000000000..8f18e3603ecc --- /dev/null +++ b/data/software/sa/sas-planet.json @@ -0,0 +1,11 @@ +{ + "slug": "sas-planet", + "name": "SAS.Planet", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4048689" + ], + "programming_languages": [ + "Delphi" + ] +} diff --git a/data/software/sa/sas-viya.json b/data/software/sa/sas-viya.json new file mode 100644 index 000000000000..af59c4842c7e --- /dev/null +++ b/data/software/sa/sas-viya.json @@ -0,0 +1,8 @@ +{ + "slug": "sas-viya", + "name": "SAS Viya", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131985789" + ] +} diff --git a/data/software/sa/sasdk.json b/data/software/sa/sasdk.json new file mode 100644 index 000000000000..8588b80c4dd0 --- /dev/null +++ b/data/software/sa/sasdk.json @@ -0,0 +1,8 @@ +{ + "slug": "sasdk", + "name": "SASDK", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7388783" + ] +} diff --git a/data/software/sa/sass-c.json b/data/software/sa/sass-c.json new file mode 100644 index 000000000000..0d73336f522e --- /dev/null +++ b/data/software/sa/sass-c.json @@ -0,0 +1,8 @@ +{ + "slug": "sass-c", + "name": "SASS-C", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7388789" + ] +} diff --git a/data/software/sa/satro-ecg.json b/data/software/sa/satro-ecg.json new file mode 100644 index 000000000000..6b6a0824f8f1 --- /dev/null +++ b/data/software/sa/satro-ecg.json @@ -0,0 +1,8 @@ +{ + "slug": "satro-ecg", + "name": "SATRO-ECG", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7388844" + ] +} diff --git a/data/software/sa/saturn.json b/data/software/sa/saturn.json new file mode 100644 index 000000000000..b37098fb6b89 --- /dev/null +++ b/data/software/sa/saturn.json @@ -0,0 +1,8 @@ +{ + "slug": "saturn", + "name": "Saturn", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28458157" + ] +} diff --git a/data/software/sa/sautrela.json b/data/software/sa/sautrela.json new file mode 100644 index 000000000000..0db98b126912 --- /dev/null +++ b/data/software/sa/sautrela.json @@ -0,0 +1,8 @@ +{ + "slug": "sautrela", + "name": "Sautrela", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7427628" + ] +} diff --git a/data/software/sa/save22.json b/data/software/sa/save22.json new file mode 100644 index 000000000000..e741275d1407 --- /dev/null +++ b/data/software/sa/save22.json @@ -0,0 +1,8 @@ +{ + "slug": "save22", + "name": "Save22", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7427976" + ] +} diff --git a/data/software/sa/sawmill.json b/data/software/sa/sawmill.json new file mode 100644 index 000000000000..0cc0b0d47b23 --- /dev/null +++ b/data/software/sa/sawmill.json @@ -0,0 +1,8 @@ +{ + "slug": "sawmill", + "name": "Sawmill", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7428658" + ] +} diff --git a/data/software/sa/sawstudio.json b/data/software/sa/sawstudio.json new file mode 100644 index 000000000000..e8f7ba29997f --- /dev/null +++ b/data/software/sa/sawstudio.json @@ -0,0 +1,8 @@ +{ + "slug": "sawstudio", + "name": "SAWStudio", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7388877" + ] +} diff --git a/data/software/sa/saxotech-online.json b/data/software/sa/saxotech-online.json new file mode 100644 index 000000000000..3cba2ec4e972 --- /dev/null +++ b/data/software/sa/saxotech-online.json @@ -0,0 +1,8 @@ +{ + "slug": "saxotech-online", + "name": "Saxotech Online", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11999644" + ] +} diff --git a/data/software/sa/saycraft.json b/data/software/sa/saycraft.json new file mode 100644 index 000000000000..f9ad8112ad3c --- /dev/null +++ b/data/software/sa/saycraft.json @@ -0,0 +1,8 @@ +{ + "slug": "saycraft", + "name": "SayCraft", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140321842" + ] +} diff --git a/data/software/sb/sbase.json b/data/software/sb/sbase.json new file mode 100644 index 000000000000..074edf0861ae --- /dev/null +++ b/data/software/sb/sbase.json @@ -0,0 +1,14 @@ +{ + "slug": "sbase", + "name": "sbase", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22661296" + ], + "operating_systems": [ + "Unix-like operating system" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/sb/sbom-2023.json b/data/software/sb/sbom-2023.json new file mode 100644 index 000000000000..de98624b1818 --- /dev/null +++ b/data/software/sb/sbom-2023.json @@ -0,0 +1,11 @@ +{ + "slug": "sbom-2023", + "name": "SBOM-2023", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127474937" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/sb/sbrk.json b/data/software/sb/sbrk.json new file mode 100644 index 000000000000..ffb9d228eaf8 --- /dev/null +++ b/data/software/sb/sbrk.json @@ -0,0 +1,8 @@ +{ + "slug": "sbrk", + "name": "sbrk", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7429549" + ] +} diff --git a/data/software/sb/sbscl.json b/data/software/sb/sbscl.json new file mode 100644 index 000000000000..cf7d353bd07c --- /dev/null +++ b/data/software/sb/sbscl.json @@ -0,0 +1,8 @@ +{ + "slug": "sbscl", + "name": "SBSCL", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135920020" + ] +} diff --git a/data/software/sc/sc.json b/data/software/sc/sc.json new file mode 100644 index 000000000000..4ae6756e79c6 --- /dev/null +++ b/data/software/sc/sc.json @@ -0,0 +1,11 @@ +{ + "slug": "sc", + "name": "sc", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28453409" + ], + "developers": [ + "James Gosling" + ] +} diff --git a/data/software/sc/scalability-testing.json b/data/software/sc/scalability-testing.json new file mode 100644 index 000000000000..7e7ce2585f5c --- /dev/null +++ b/data/software/sc/scalability-testing.json @@ -0,0 +1,8 @@ +{ + "slug": "scalability-testing", + "name": "scalability testing", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10986558" + ] +} diff --git a/data/software/sc/scalable-inman-flash-replacement.json b/data/software/sc/scalable-inman-flash-replacement.json new file mode 100644 index 000000000000..3dbb0340655c --- /dev/null +++ b/data/software/sc/scalable-inman-flash-replacement.json @@ -0,0 +1,11 @@ +{ + "slug": "scalable-inman-flash-replacement", + "name": "Scalable Inman Flash Replacement", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1815212" + ], + "programming_languages": [ + "Adobe Flash" + ] +} diff --git a/data/software/sc/scalapack.json b/data/software/sc/scalapack.json new file mode 100644 index 000000000000..7c2378db5378 --- /dev/null +++ b/data/software/sc/scalapack.json @@ -0,0 +1,8 @@ +{ + "slug": "scalapack", + "name": "ScaLAPACK", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4049099" + ] +} diff --git a/data/software/sc/scald.json b/data/software/sc/scald.json new file mode 100644 index 000000000000..45f30bdec672 --- /dev/null +++ b/data/software/sc/scald.json @@ -0,0 +1,8 @@ +{ + "slug": "scald", + "name": "SCALD", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7389058" + ] +} diff --git a/data/software/sc/scalos.json b/data/software/sc/scalos.json new file mode 100644 index 000000000000..7b186cc7f2e5 --- /dev/null +++ b/data/software/sc/scalos.json @@ -0,0 +1,8 @@ +{ + "slug": "scalos", + "name": "Scalos", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7429808" + ] +} diff --git a/data/software/sc/scalpel.json b/data/software/sc/scalpel.json new file mode 100644 index 000000000000..b9523b9f863c --- /dev/null +++ b/data/software/sc/scalpel.json @@ -0,0 +1,11 @@ +{ + "slug": "scalpel", + "name": "Scalpel", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127474964" + ], + "licenses": [ + "Apache Software License 2.0" + ] +} diff --git a/data/software/sc/scamp.json b/data/software/sc/scamp.json new file mode 100644 index 000000000000..6b906a7338c8 --- /dev/null +++ b/data/software/sc/scamp.json @@ -0,0 +1,8 @@ +{ + "slug": "scamp", + "name": "scamp", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62865849" + ] +} diff --git a/data/software/sc/scan.json b/data/software/sc/scan.json new file mode 100644 index 000000000000..be4be75f3a66 --- /dev/null +++ b/data/software/sc/scan.json @@ -0,0 +1,8 @@ +{ + "slug": "scan", + "name": "SCAN", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084528" + ] +} diff --git a/data/software/sc/scan2cad.json b/data/software/sc/scan2cad.json new file mode 100644 index 000000000000..379844e96925 --- /dev/null +++ b/data/software/sc/scan2cad.json @@ -0,0 +1,8 @@ +{ + "slug": "scan2cad", + "name": "Scan2CAD", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17141152" + ] +} diff --git a/data/software/sc/scanip.json b/data/software/sc/scanip.json new file mode 100644 index 000000000000..c1a57ca754ee --- /dev/null +++ b/data/software/sc/scanip.json @@ -0,0 +1,11 @@ +{ + "slug": "scanip", + "name": "ScanIP", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7429882" + ], + "developers": [ + "Synopsys" + ] +} diff --git a/data/software/sc/scanitto.json b/data/software/sc/scanitto.json new file mode 100644 index 000000000000..fe75c968490f --- /dev/null +++ b/data/software/sc/scanitto.json @@ -0,0 +1,11 @@ +{ + "slug": "scanitto", + "name": "Scanitto", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q30644169" + ], + "licenses": [ + "shareware" + ] +} diff --git a/data/software/sc/scanlogd.json b/data/software/sc/scanlogd.json new file mode 100644 index 000000000000..305864b03cc3 --- /dev/null +++ b/data/software/sc/scanlogd.json @@ -0,0 +1,11 @@ +{ + "slug": "scanlogd", + "name": "scanlogd", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106102057" + ], + "operating_systems": [ + "Unix-like operating system" + ] +} diff --git a/data/software/sc/scanmem.json b/data/software/sc/scanmem.json new file mode 100644 index 000000000000..89b2b781e492 --- /dev/null +++ b/data/software/sc/scanmem.json @@ -0,0 +1,8 @@ +{ + "slug": "scanmem", + "name": "scanmem", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62865739" + ] +} diff --git a/data/software/sc/scanner-for-zotero.json b/data/software/sc/scanner-for-zotero.json new file mode 100644 index 000000000000..139f09bfe9d3 --- /dev/null +++ b/data/software/sc/scanner-for-zotero.json @@ -0,0 +1,8 @@ +{ + "slug": "scanner-for-zotero", + "name": "Scanner for Zotero", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084529" + ] +} diff --git a/data/software/sc/scanpy.json b/data/software/sc/scanpy.json new file mode 100644 index 000000000000..4a8122450449 --- /dev/null +++ b/data/software/sc/scanpy.json @@ -0,0 +1,11 @@ +{ + "slug": "scanpy", + "name": "Scanpy", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113089866" + ], + "licenses": [ + "3-clause BSD License" + ] +} diff --git a/data/software/sc/scene-builder.json b/data/software/sc/scene-builder.json new file mode 100644 index 000000000000..f3ca8751ed4f --- /dev/null +++ b/data/software/sc/scene-builder.json @@ -0,0 +1,8 @@ +{ + "slug": "scene-builder", + "name": "Scene Builder", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18746027" + ] +} diff --git a/data/software/sc/scene-generator.json b/data/software/sc/scene-generator.json new file mode 100644 index 000000000000..7cd7dca68108 --- /dev/null +++ b/data/software/sc/scene-generator.json @@ -0,0 +1,8 @@ +{ + "slug": "scene-generator", + "name": "Scene Generator", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7430739" + ] +} diff --git a/data/software/sc/scharfenberg-smith-concordance-program.json b/data/software/sc/scharfenberg-smith-concordance-program.json new file mode 100644 index 000000000000..012652db0ecd --- /dev/null +++ b/data/software/sc/scharfenberg-smith-concordance-program.json @@ -0,0 +1,8 @@ +{ + "slug": "scharfenberg-smith-concordance-program", + "name": "Scharfenberg-Smith Concordance Program", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087710" + ] +} diff --git a/data/software/sc/schedtool.json b/data/software/sc/schedtool.json new file mode 100644 index 000000000000..3447c3e8d062 --- /dev/null +++ b/data/software/sc/schedtool.json @@ -0,0 +1,8 @@ +{ + "slug": "schedtool", + "name": "schedtool", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62865726" + ] +} diff --git a/data/software/sc/schedulereader.json b/data/software/sc/schedulereader.json new file mode 100644 index 000000000000..8c105554e29d --- /dev/null +++ b/data/software/sc/schedulereader.json @@ -0,0 +1,8 @@ +{ + "slug": "schedulereader", + "name": "ScheduleReader", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138748395" + ] +} diff --git a/data/software/sc/scholar.json b/data/software/sc/scholar.json new file mode 100644 index 000000000000..0a66adc0e1b4 --- /dev/null +++ b/data/software/sc/scholar.json @@ -0,0 +1,11 @@ +{ + "slug": "scholar", + "name": "scholar", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110514832" + ], + "licenses": [ + "Apache Software License 2.0" + ] +} diff --git a/data/software/sc/scholarnet-ai.json b/data/software/sc/scholarnet-ai.json new file mode 100644 index 000000000000..23ddd8aed3ab --- /dev/null +++ b/data/software/sc/scholarnet-ai.json @@ -0,0 +1,8 @@ +{ + "slug": "scholarnet-ai", + "name": "ScholarNet AI", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139856683" + ] +} diff --git a/data/software/sc/scholarometer.json b/data/software/sc/scholarometer.json new file mode 100644 index 000000000000..ab176806d912 --- /dev/null +++ b/data/software/sc/scholarometer.json @@ -0,0 +1,8 @@ +{ + "slug": "scholarometer", + "name": "Scholarometer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084530" + ] +} diff --git a/data/software/sc/school-information-management-system.json b/data/software/sc/school-information-management-system.json new file mode 100644 index 000000000000..28804bb6a10d --- /dev/null +++ b/data/software/sc/school-information-management-system.json @@ -0,0 +1,14 @@ +{ + "slug": "school-information-management-system", + "name": "School Information Management System", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7432273" + ], + "developers": [ + "Capita" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/sc/school-management-software-in-india.json b/data/software/sc/school-management-software-in-india.json new file mode 100644 index 000000000000..bb751650ab9c --- /dev/null +++ b/data/software/sc/school-management-software-in-india.json @@ -0,0 +1,8 @@ +{ + "slug": "school-management-software-in-india", + "name": "School management software in India", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140068392" + ] +} diff --git a/data/software/sc/schoolmanage.json b/data/software/sc/schoolmanage.json new file mode 100644 index 000000000000..3330ee198db5 --- /dev/null +++ b/data/software/sc/schoolmanage.json @@ -0,0 +1,8 @@ +{ + "slug": "schoolmanage", + "name": "SchoolManage", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139882157" + ] +} diff --git a/data/software/sc/schoolverify.json b/data/software/sc/schoolverify.json new file mode 100644 index 000000000000..cd28ddbd5b58 --- /dev/null +++ b/data/software/sc/schoolverify.json @@ -0,0 +1,11 @@ +{ + "slug": "schoolverify", + "name": "SchoolVerify", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138858608" + ], + "developers": [ + "SchoolVerify" + ] +} diff --git a/data/software/sc/sci2-tool.json b/data/software/sc/sci2-tool.json new file mode 100644 index 000000000000..4a1c804539fd --- /dev/null +++ b/data/software/sc/sci2-tool.json @@ -0,0 +1,8 @@ +{ + "slug": "sci2-tool", + "name": "Sci2 Tool", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084531" + ] +} diff --git a/data/software/sc/scia-engineer.json b/data/software/sc/scia-engineer.json new file mode 100644 index 000000000000..f66a857c8667 --- /dev/null +++ b/data/software/sc/scia-engineer.json @@ -0,0 +1,8 @@ +{ + "slug": "scia-engineer", + "name": "SCIA Engineer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q15885694" + ] +} diff --git a/data/software/sc/scibox.json b/data/software/sc/scibox.json new file mode 100644 index 000000000000..434834426914 --- /dev/null +++ b/data/software/sc/scibox.json @@ -0,0 +1,8 @@ +{ + "slug": "scibox", + "name": "SciBox", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137612302" + ] +} diff --git a/data/software/sc/scicast.json b/data/software/sc/scicast.json new file mode 100644 index 000000000000..8297d5151c74 --- /dev/null +++ b/data/software/sc/scicast.json @@ -0,0 +1,11 @@ +{ + "slug": "scicast", + "name": "SciCast", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18157839" + ], + "developers": [ + "George Mason University" + ] +} diff --git a/data/software/sc/science-stories.json b/data/software/sc/science-stories.json new file mode 100644 index 000000000000..e136863c610b --- /dev/null +++ b/data/software/sc/science-stories.json @@ -0,0 +1,11 @@ +{ + "slug": "science-stories", + "name": "Science Stories", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q55090238" + ], + "developers": [ + "Kenneth Seals-Nutt" + ] +} diff --git a/data/software/sc/sciencesconf-org-a-ccsd-service.json b/data/software/sc/sciencesconf-org-a-ccsd-service.json new file mode 100644 index 000000000000..9053a4420a2f --- /dev/null +++ b/data/software/sc/sciencesconf-org-a-ccsd-service.json @@ -0,0 +1,8 @@ +{ + "slug": "sciencesconf-org-a-ccsd-service", + "name": "SciencesConf.org, a CCSD service", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087711" + ] +} diff --git a/data/software/sc/scientific-notebook.json b/data/software/sc/scientific-notebook.json new file mode 100644 index 000000000000..ec89330aa2e1 --- /dev/null +++ b/data/software/sc/scientific-notebook.json @@ -0,0 +1,11 @@ +{ + "slug": "scientific-notebook", + "name": "Scientific Notebook", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107511931" + ], + "developers": [ + "MacKichan Software" + ] +} diff --git a/data/software/sc/sciforma-psnext.json b/data/software/sc/sciforma-psnext.json new file mode 100644 index 000000000000..67994285a7b8 --- /dev/null +++ b/data/software/sc/sciforma-psnext.json @@ -0,0 +1,8 @@ +{ + "slug": "sciforma-psnext", + "name": "Sciforma PSNext", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3359863" + ] +} diff --git a/data/software/sc/scim-uim.json b/data/software/sc/scim-uim.json new file mode 100644 index 000000000000..1dfc693355ee --- /dev/null +++ b/data/software/sc/scim-uim.json @@ -0,0 +1,11 @@ +{ + "slug": "scim-uim", + "name": "scim-uim", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28465735" + ], + "licenses": [ + "GNU General Public License, version 2.0" + ] +} diff --git a/data/software/sc/scimoredb.json b/data/software/sc/scimoredb.json new file mode 100644 index 000000000000..d81879a34d31 --- /dev/null +++ b/data/software/sc/scimoredb.json @@ -0,0 +1,8 @@ +{ + "slug": "scimoredb", + "name": "ScimoreDB", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7433912" + ] +} diff --git a/data/software/sc/sco-skunkware.json b/data/software/sc/sco-skunkware.json new file mode 100644 index 000000000000..5f875e255062 --- /dev/null +++ b/data/software/sc/sco-skunkware.json @@ -0,0 +1,11 @@ +{ + "slug": "sco-skunkware", + "name": "SCO Skunkware", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17079595" + ], + "operating_systems": [ + "Xenix" + ] +} diff --git a/data/software/sc/scodoc.json b/data/software/sc/scodoc.json new file mode 100644 index 000000000000..30975e9195d2 --- /dev/null +++ b/data/software/sc/scodoc.json @@ -0,0 +1,14 @@ +{ + "slug": "scodoc", + "name": "ScoDoc", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131462478" + ], + "programming_languages": [ + "Python" + ], + "licenses": [ + "GNU General Public License, version 2.0" + ] +} diff --git a/data/software/sc/scons.json b/data/software/sc/scons.json new file mode 100644 index 000000000000..1804760464e1 --- /dev/null +++ b/data/software/sc/scons.json @@ -0,0 +1,8 @@ +{ + "slug": "scons", + "name": "SCons++", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116924219" + ] +} diff --git a/data/software/sc/scopearchiv.json b/data/software/sc/scopearchiv.json new file mode 100644 index 000000000000..150c54f8fdeb --- /dev/null +++ b/data/software/sc/scopearchiv.json @@ -0,0 +1,14 @@ +{ + "slug": "scopearchiv", + "name": "ScopeArchiv", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2260520" + ], + "operating_systems": [ + "Microsoft Windows" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/sc/scopifyrom.json b/data/software/sc/scopifyrom.json new file mode 100644 index 000000000000..6e54c0ff2ce9 --- /dev/null +++ b/data/software/sc/scopifyrom.json @@ -0,0 +1,8 @@ +{ + "slug": "scopifyrom", + "name": "ScopifyROM", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18215984" + ] +} diff --git a/data/software/sc/score.json b/data/software/sc/score.json new file mode 100644 index 000000000000..c1fcd812d896 --- /dev/null +++ b/data/software/sc/score.json @@ -0,0 +1,8 @@ +{ + "slug": "score", + "name": "SCORE", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2260571" + ] +} diff --git a/data/software/sc/scorecloud.json b/data/software/sc/scorecloud.json new file mode 100644 index 000000000000..d810e4744225 --- /dev/null +++ b/data/software/sc/scorecloud.json @@ -0,0 +1,14 @@ +{ + "slug": "scorecloud", + "name": "Scorecloud", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16980712" + ], + "developers": [ + "Doremir Music Research AB" + ], + "genres": [ + "music information retrieval" + ] +} diff --git a/data/software/sc/scoreloop.json b/data/software/sc/scoreloop.json new file mode 100644 index 000000000000..ccac45bde2b2 --- /dev/null +++ b/data/software/sc/scoreloop.json @@ -0,0 +1,8 @@ +{ + "slug": "scoreloop", + "name": "Scoreloop", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7435327" + ] +} diff --git a/data/software/sc/scos-2000.json b/data/software/sc/scos-2000.json new file mode 100644 index 000000000000..f97226a387fc --- /dev/null +++ b/data/software/sc/scos-2000.json @@ -0,0 +1,8 @@ +{ + "slug": "scos-2000", + "name": "SCOS 2000", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3459301" + ] +} diff --git a/data/software/sc/scour.json b/data/software/sc/scour.json new file mode 100644 index 000000000000..e95372caaf28 --- /dev/null +++ b/data/software/sc/scour.json @@ -0,0 +1,15 @@ +{ + "slug": "scour", + "name": "Scour", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137513370" + ], + "release_date": "2010-01-01", + "programming_languages": [ + "Python" + ], + "licenses": [ + "Apache Software License 2.0" + ] +} diff --git a/data/software/sc/scout-by-agentco.json b/data/software/sc/scout-by-agentco.json new file mode 100644 index 000000000000..8f57a4854291 --- /dev/null +++ b/data/software/sc/scout-by-agentco.json @@ -0,0 +1,11 @@ +{ + "slug": "scout-by-agentco", + "name": "Scout by AgentCo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140041602" + ], + "developers": [ + "AgentCo" + ] +} diff --git a/data/software/sc/scout.json b/data/software/sc/scout.json new file mode 100644 index 000000000000..2b5503ee13e1 --- /dev/null +++ b/data/software/sc/scout.json @@ -0,0 +1,14 @@ +{ + "slug": "scout", + "name": "Scout", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q75024761" + ], + "operating_systems": [ + "macOS" + ], + "licenses": [ + "Apache Software License 2.0" + ] +} diff --git a/data/software/sc/scrapy.json b/data/software/sc/scrapy.json new file mode 100644 index 000000000000..4e55c06d69bb --- /dev/null +++ b/data/software/sc/scrapy.json @@ -0,0 +1,22 @@ +{ + "slug": "scrapy", + "name": "Scrapy", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q368367" + ], + "developers": [ + "Pablo Hoffman" + ], + "operating_systems": [ + "Berkeley Software Distribution", + "macOS", + "Microsoft Windows" + ], + "programming_languages": [ + "Python" + ], + "licenses": [ + "3-clause BSD License" + ] +} diff --git a/data/software/sc/scratch-blocks.json b/data/software/sc/scratch-blocks.json new file mode 100644 index 000000000000..c28fd32854ce --- /dev/null +++ b/data/software/sc/scratch-blocks.json @@ -0,0 +1,11 @@ +{ + "slug": "scratch-blocks", + "name": "scratch-blocks", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131417178" + ], + "licenses": [ + "Apache Software License 2.0" + ] +} diff --git a/data/software/sc/scratch-live.json b/data/software/sc/scratch-live.json new file mode 100644 index 000000000000..c361b0d2289c --- /dev/null +++ b/data/software/sc/scratch-live.json @@ -0,0 +1,8 @@ +{ + "slug": "scratch-live", + "name": "Scratch Live", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1648296" + ] +} diff --git a/data/software/sc/scratchpad.json b/data/software/sc/scratchpad.json new file mode 100644 index 000000000000..6e118a2c0636 --- /dev/null +++ b/data/software/sc/scratchpad.json @@ -0,0 +1,8 @@ +{ + "slug": "scratchpad", + "name": "Scratchpad", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q26897149" + ] +} diff --git a/data/software/sc/scrcpy.json b/data/software/sc/scrcpy.json new file mode 100644 index 000000000000..74ff6e9e6a03 --- /dev/null +++ b/data/software/sc/scrcpy.json @@ -0,0 +1,18 @@ +{ + "slug": "scrcpy", + "name": "scrcpy", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q92566165" + ], + "developers": [ + "Genymobile SAS" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "licenses": [ + "Apache Software License 2.0" + ] +} diff --git a/data/software/sc/screamer-radio.json b/data/software/sc/screamer-radio.json new file mode 100644 index 000000000000..078bfea97e9a --- /dev/null +++ b/data/software/sc/screamer-radio.json @@ -0,0 +1,11 @@ +{ + "slug": "screamer-radio", + "name": "Screamer Radio", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3440849" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/sc/screen-sharing.json b/data/software/sc/screen-sharing.json new file mode 100644 index 000000000000..6d22e675890b --- /dev/null +++ b/data/software/sc/screen-sharing.json @@ -0,0 +1,15 @@ +{ + "slug": "screen-sharing", + "name": "Screen Sharing", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7439014" + ], + "release_date": "2007-01-01", + "developers": [ + "Apple Inc." + ], + "operating_systems": [ + "Mac OS X Leopard" + ] +} diff --git a/data/software/sc/screen2exe.json b/data/software/sc/screen2exe.json new file mode 100644 index 000000000000..a6eeab6b12f3 --- /dev/null +++ b/data/software/sc/screen2exe.json @@ -0,0 +1,8 @@ +{ + "slug": "screen2exe", + "name": "Screen2EXE", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10852513" + ] +} diff --git a/data/software/sc/screencast-o-matic.json b/data/software/sc/screencast-o-matic.json new file mode 100644 index 000000000000..e7601c33b2a7 --- /dev/null +++ b/data/software/sc/screencast-o-matic.json @@ -0,0 +1,8 @@ +{ + "slug": "screencast-o-matic", + "name": "Screencast-o-matic", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084532" + ] +} diff --git a/data/software/sc/screenconnect.json b/data/software/sc/screenconnect.json new file mode 100644 index 000000000000..a8dcef6e2696 --- /dev/null +++ b/data/software/sc/screenconnect.json @@ -0,0 +1,8 @@ +{ + "slug": "screenconnect", + "name": "ScreenConnect", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7438975" + ] +} diff --git a/data/software/sc/screenflick.json b/data/software/sc/screenflick.json new file mode 100644 index 000000000000..2acd8654e995 --- /dev/null +++ b/data/software/sc/screenflick.json @@ -0,0 +1,8 @@ +{ + "slug": "screenflick", + "name": "ScreenFlick", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084533" + ] +} diff --git a/data/software/sc/screenflow.json b/data/software/sc/screenflow.json new file mode 100644 index 000000000000..07919a9e801b --- /dev/null +++ b/data/software/sc/screenflow.json @@ -0,0 +1,14 @@ +{ + "slug": "screenflow", + "name": "ScreenFlow", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3953069" + ], + "operating_systems": [ + "OS X Yosemite" + ], + "programming_languages": [ + "Objective-C" + ] +} diff --git a/data/software/sc/screenkey.json b/data/software/sc/screenkey.json new file mode 100644 index 000000000000..b2e714d219d4 --- /dev/null +++ b/data/software/sc/screenkey.json @@ -0,0 +1,11 @@ +{ + "slug": "screenkey", + "name": "screenkey", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126901758" + ], + "licenses": [ + "GNU General Public License, version 3.0" + ] +} diff --git a/data/software/sc/screenpal.json b/data/software/sc/screenpal.json new file mode 100644 index 000000000000..6f9f38d0406e --- /dev/null +++ b/data/software/sc/screenpal.json @@ -0,0 +1,14 @@ +{ + "slug": "screenpal", + "name": "Screenpal", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125447659" + ], + "operating_systems": [ + "ChromeOS", + "iOS", + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/software/sc/screenruler.json b/data/software/sc/screenruler.json new file mode 100644 index 000000000000..c1fc7f96f0b9 --- /dev/null +++ b/data/software/sc/screenruler.json @@ -0,0 +1,11 @@ +{ + "slug": "screenruler", + "name": "ScreenRuler", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11245703" + ], + "licenses": [ + "GNU General Public License, version 2.0" + ] +} diff --git a/data/software/sc/screenweaver.json b/data/software/sc/screenweaver.json new file mode 100644 index 000000000000..e211af337658 --- /dev/null +++ b/data/software/sc/screenweaver.json @@ -0,0 +1,11 @@ +{ + "slug": "screenweaver", + "name": "ScreenWeaver", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139282223" + ], + "developers": [ + "Outerframe Studio" + ] +} diff --git a/data/software/sc/scribe.json b/data/software/sc/scribe.json new file mode 100644 index 000000000000..67b4d2e622e7 --- /dev/null +++ b/data/software/sc/scribe.json @@ -0,0 +1,11 @@ +{ + "slug": "scribe", + "name": "Scribe", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7439148" + ], + "licenses": [ + "Apache License" + ] +} diff --git a/data/software/sc/scripped.json b/data/software/sc/scripped.json new file mode 100644 index 000000000000..7c1a044ca35b --- /dev/null +++ b/data/software/sc/scripped.json @@ -0,0 +1,12 @@ +{ + "slug": "scripped", + "name": "Scripped", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7439185" + ], + "release_date": "2008-01-01", + "developers": [ + "Scripped" + ] +} diff --git a/data/software/sc/scripsit.json b/data/software/sc/scripsit.json new file mode 100644 index 000000000000..e3bfc84a8b30 --- /dev/null +++ b/data/software/sc/scripsit.json @@ -0,0 +1,12 @@ +{ + "slug": "scripsit", + "name": "Scripsit", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7439202" + ], + "release_date": "1978-01-01", + "developers": [ + "Tandy Corporation" + ] +} diff --git a/data/software/sc/script-debugger.json b/data/software/sc/script-debugger.json new file mode 100644 index 000000000000..c684ce121c06 --- /dev/null +++ b/data/software/sc/script-debugger.json @@ -0,0 +1,14 @@ +{ + "slug": "script-debugger", + "name": "Script Debugger", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7439211" + ], + "developers": [ + "Late Night Software" + ], + "operating_systems": [ + "macOS" + ] +} diff --git a/data/software/sc/scriptcase.json b/data/software/sc/scriptcase.json new file mode 100644 index 000000000000..9ec56e575d27 --- /dev/null +++ b/data/software/sc/scriptcase.json @@ -0,0 +1,9 @@ +{ + "slug": "scriptcase", + "name": "Scriptcase", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7439228" + ], + "release_date": "2000-01-01" +} diff --git a/data/software/sc/scripting-layer-for-android.json b/data/software/sc/scripting-layer-for-android.json new file mode 100644 index 000000000000..9ba422ce88ef --- /dev/null +++ b/data/software/sc/scripting-layer-for-android.json @@ -0,0 +1,11 @@ +{ + "slug": "scripting-layer-for-android", + "name": "Scripting Layer for Android", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4048791" + ], + "licenses": [ + "Apache License" + ] +} diff --git a/data/software/sc/scripto.json b/data/software/sc/scripto.json new file mode 100644 index 000000000000..871d98a5b77a --- /dev/null +++ b/data/software/sc/scripto.json @@ -0,0 +1,8 @@ +{ + "slug": "scripto", + "name": "Scripto", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084534" + ] +} diff --git a/data/software/sc/scriptware.json b/data/software/sc/scriptware.json new file mode 100644 index 000000000000..3ca4af16b411 --- /dev/null +++ b/data/software/sc/scriptware.json @@ -0,0 +1,8 @@ +{ + "slug": "scriptware", + "name": "Scriptware", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q59630807" + ] +} diff --git a/data/software/sc/scrivener.json b/data/software/sc/scrivener.json new file mode 100644 index 000000000000..e3bfb65e4b08 --- /dev/null +++ b/data/software/sc/scrivener.json @@ -0,0 +1,17 @@ +{ + "slug": "scrivener", + "name": "Scrivener", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3476481" + ], + "release_date": "2007-01-20", + "operating_systems": [ + "macOS", + "iOS", + "Microsoft Windows" + ], + "programming_languages": [ + "Java" + ] +} diff --git a/data/software/sc/scrollback.json b/data/software/sc/scrollback.json new file mode 100644 index 000000000000..1a6fe3ae4c82 --- /dev/null +++ b/data/software/sc/scrollback.json @@ -0,0 +1,8 @@ +{ + "slug": "scrollback", + "name": "Scrollback", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18015046" + ] +} diff --git a/data/software/sc/scrolling-game-development-kit.json b/data/software/sc/scrolling-game-development-kit.json new file mode 100644 index 000000000000..2ec958c3d5c0 --- /dev/null +++ b/data/software/sc/scrolling-game-development-kit.json @@ -0,0 +1,8 @@ +{ + "slug": "scrolling-game-development-kit", + "name": "Scrolling Game Development Kit", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7439283" + ] +} diff --git a/data/software/sc/scrollkeeper.json b/data/software/sc/scrollkeeper.json new file mode 100644 index 000000000000..51898c010093 --- /dev/null +++ b/data/software/sc/scrollkeeper.json @@ -0,0 +1,8 @@ +{ + "slug": "scrollkeeper", + "name": "ScrollKeeper", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4049191" + ] +} diff --git a/data/software/sc/scruff.json b/data/software/sc/scruff.json new file mode 100644 index 000000000000..66ef09e16f07 --- /dev/null +++ b/data/software/sc/scruff.json @@ -0,0 +1,11 @@ +{ + "slug": "scruff", + "name": "Scruff", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q21041353" + ], + "operating_systems": [ + "iOS" + ] +} diff --git a/data/software/sc/scrumedge.json b/data/software/sc/scrumedge.json new file mode 100644 index 000000000000..5c79bedf42b8 --- /dev/null +++ b/data/software/sc/scrumedge.json @@ -0,0 +1,11 @@ +{ + "slug": "scrumedge", + "name": "Scrumedge", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7439345" + ], + "programming_languages": [ + "PHP" + ] +} diff --git a/data/software/sc/scwm.json b/data/software/sc/scwm.json new file mode 100644 index 000000000000..5db7c5bcb155 --- /dev/null +++ b/data/software/sc/scwm.json @@ -0,0 +1,9 @@ +{ + "slug": "scwm", + "name": "Scwm", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7439634" + ], + "release_date": "1997-01-01" +} diff --git a/data/software/sc/scwrl4.json b/data/software/sc/scwrl4.json new file mode 100644 index 000000000000..9d3e068dc024 --- /dev/null +++ b/data/software/sc/scwrl4.json @@ -0,0 +1,8 @@ +{ + "slug": "scwrl4", + "name": "SCWRL4", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q114840881" + ] +} diff --git a/data/software/sd/sdc-scissor.json b/data/software/sd/sdc-scissor.json new file mode 100644 index 000000000000..67f755e60b28 --- /dev/null +++ b/data/software/sd/sdc-scissor.json @@ -0,0 +1,8 @@ +{ + "slug": "sdc-scissor", + "name": "sdc-scissor", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127474643" + ] +} diff --git a/data/software/sd/sdc.json b/data/software/sd/sdc.json new file mode 100644 index 000000000000..dc521b058120 --- /dev/null +++ b/data/software/sd/sdc.json @@ -0,0 +1,11 @@ +{ + "slug": "sdc", + "name": "SDC", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10852697" + ], + "licenses": [ + "GNU General Public License, version 2.0" + ] +} diff --git a/data/software/sd/sdet.json b/data/software/sd/sdet.json new file mode 100644 index 000000000000..67aa5dca16e3 --- /dev/null +++ b/data/software/sd/sdet.json @@ -0,0 +1,8 @@ +{ + "slug": "sdet", + "name": "SDET", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7389428" + ] +} diff --git a/data/software/sd/sdf-toolkit.json b/data/software/sd/sdf-toolkit.json new file mode 100644 index 000000000000..c8121c31077d --- /dev/null +++ b/data/software/sd/sdf-toolkit.json @@ -0,0 +1,14 @@ +{ + "slug": "sdf-toolkit", + "name": "SDF Toolkit", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123359790" + ], + "publishers": [ + "National Cancer Institute" + ], + "licenses": [ + "BSD licenses" + ] +} diff --git a/data/software/sd/sdi-tools.json b/data/software/sd/sdi-tools.json new file mode 100644 index 000000000000..98a512d55707 --- /dev/null +++ b/data/software/sd/sdi-tools.json @@ -0,0 +1,8 @@ +{ + "slug": "sdi-tools", + "name": "SDI Tools", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7389455" + ] +} diff --git a/data/software/sd/sdl-multiterm.json b/data/software/sd/sdl-multiterm.json new file mode 100644 index 000000000000..ba8d91a82137 --- /dev/null +++ b/data/software/sd/sdl-multiterm.json @@ -0,0 +1,11 @@ +{ + "slug": "sdl-multiterm", + "name": "SDL MultiTerm", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7389462" + ], + "developers": [ + "Trados Studio" + ] +} diff --git a/data/software/sd/sdlmame.json b/data/software/sd/sdlmame.json new file mode 100644 index 000000000000..d0b47ed1a619 --- /dev/null +++ b/data/software/sd/sdlmame.json @@ -0,0 +1,8 @@ +{ + "slug": "sdlmame", + "name": "SDLMAME", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10865336" + ] +} diff --git a/data/software/sd/sdlpop.json b/data/software/sd/sdlpop.json new file mode 100644 index 000000000000..5279ee4a81f2 --- /dev/null +++ b/data/software/sd/sdlpop.json @@ -0,0 +1,8 @@ +{ + "slug": "sdlpop", + "name": "sdlpop", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q59771322" + ] +} diff --git a/data/software/sd/sdparm.json b/data/software/sd/sdparm.json new file mode 100644 index 000000000000..12a63bdd3d15 --- /dev/null +++ b/data/software/sd/sdparm.json @@ -0,0 +1,8 @@ +{ + "slug": "sdparm", + "name": "sdparm", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62865637" + ] +} diff --git a/data/software/sd/sdr.json b/data/software/sd/sdr.json new file mode 100644 index 000000000000..7d6f2dad33af --- /dev/null +++ b/data/software/sd/sdr.json @@ -0,0 +1,11 @@ +{ + "slug": "sdr", + "name": "SDR++", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125491154" + ], + "licenses": [ + "GNU General Public License, version 3.0" + ] +} diff --git a/data/software/sd/sdrsharp.json b/data/software/sd/sdrsharp.json new file mode 100644 index 000000000000..a9e1da5f4456 --- /dev/null +++ b/data/software/sd/sdrsharp.json @@ -0,0 +1,8 @@ +{ + "slug": "sdrsharp", + "name": "SDRSharp", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120493611" + ] +} diff --git a/data/software/sd/sdsf.json b/data/software/sd/sdsf.json new file mode 100644 index 000000000000..3f0b05334cda --- /dev/null +++ b/data/software/sd/sdsf.json @@ -0,0 +1,8 @@ +{ + "slug": "sdsf", + "name": "SDSF", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3509102" + ] +} diff --git a/data/software/se/seadas.json b/data/software/se/seadas.json new file mode 100644 index 000000000000..af5bd511f8ed --- /dev/null +++ b/data/software/se/seadas.json @@ -0,0 +1,8 @@ +{ + "slug": "seadas", + "name": "SeaDAS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117779298" + ] +} diff --git a/data/software/se/seadragon-software.json b/data/software/se/seadragon-software.json new file mode 100644 index 000000000000..1240f8a2226b --- /dev/null +++ b/data/software/se/seadragon-software.json @@ -0,0 +1,8 @@ +{ + "slug": "seadragon-software", + "name": "Seadragon Software", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7440317" + ] +} diff --git a/data/software/se/seamspace.json b/data/software/se/seamspace.json new file mode 100644 index 000000000000..29dd4b7e4298 --- /dev/null +++ b/data/software/se/seamspace.json @@ -0,0 +1,11 @@ +{ + "slug": "seamspace", + "name": "Seamspace", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139577507" + ], + "developers": [ + "Tebahsoft, Inc." + ] +} diff --git a/data/software/se/search-x.json b/data/software/se/search-x.json new file mode 100644 index 000000000000..baa8c495c572 --- /dev/null +++ b/data/software/se/search-x.json @@ -0,0 +1,8 @@ +{ + "slug": "search-x", + "name": "SEARCH X", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11306192" + ] +} diff --git a/data/software/se/searchdaimon.json b/data/software/se/searchdaimon.json new file mode 100644 index 000000000000..8ff2ab9d6eb4 --- /dev/null +++ b/data/software/se/searchdaimon.json @@ -0,0 +1,8 @@ +{ + "slug": "searchdaimon", + "name": "Searchdaimon", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7441692" + ] +} diff --git a/data/software/se/searchlight-bbs.json b/data/software/se/searchlight-bbs.json new file mode 100644 index 000000000000..dd0c1a845fa5 --- /dev/null +++ b/data/software/se/searchlight-bbs.json @@ -0,0 +1,9 @@ +{ + "slug": "searchlight-bbs", + "name": "Searchlight BBS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7441733" + ], + "release_date": "1985-01-01" +} diff --git a/data/software/se/searchmedica.json b/data/software/se/searchmedica.json new file mode 100644 index 000000000000..193db14c987a --- /dev/null +++ b/data/software/se/searchmedica.json @@ -0,0 +1,12 @@ +{ + "slug": "searchmedica", + "name": "Searchmedica", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7441740" + ], + "release_date": "2006-01-01", + "licenses": [ + "freeware" + ] +} diff --git a/data/software/se/searchscore.json b/data/software/se/searchscore.json new file mode 100644 index 000000000000..ede5bfae45ce --- /dev/null +++ b/data/software/se/searchscore.json @@ -0,0 +1,8 @@ +{ + "slug": "searchscore", + "name": "SearchScore", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138646026" + ] +} diff --git a/data/software/se/seasonal-attribution-project.json b/data/software/se/seasonal-attribution-project.json new file mode 100644 index 000000000000..fb25d6bd9241 --- /dev/null +++ b/data/software/se/seasonal-attribution-project.json @@ -0,0 +1,8 @@ +{ + "slug": "seasonal-attribution-project", + "name": "Seasonal Attribution Project", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7441909" + ] +} diff --git a/data/software/se/seasr-date-entities-to-simile-timeline.json b/data/software/se/seasr-date-entities-to-simile-timeline.json new file mode 100644 index 000000000000..338e8e703d67 --- /dev/null +++ b/data/software/se/seasr-date-entities-to-simile-timeline.json @@ -0,0 +1,8 @@ +{ + "slug": "seasr-date-entities-to-simile-timeline", + "name": "SEASR: Date Entities to Simile Timeline", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084538" + ] +} diff --git a/data/software/se/seasr-flesch-kincaid-readability-test.json b/data/software/se/seasr-flesch-kincaid-readability-test.json new file mode 100644 index 000000000000..4a574c6914b4 --- /dev/null +++ b/data/software/se/seasr-flesch-kincaid-readability-test.json @@ -0,0 +1,8 @@ +{ + "slug": "seasr-flesch-kincaid-readability-test", + "name": "SEASR: Flesch-Kincaid Readability Test", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087713" + ] +} diff --git a/data/software/se/seasr-location-entities-to-google-map.json b/data/software/se/seasr-location-entities-to-google-map.json new file mode 100644 index 000000000000..cd799adb02a7 --- /dev/null +++ b/data/software/se/seasr-location-entities-to-google-map.json @@ -0,0 +1,8 @@ +{ + "slug": "seasr-location-entities-to-google-map", + "name": "SEASR: Location Entities To Google Map", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084539" + ] +} diff --git a/data/software/se/seasr-ngram-tag-cloud-viewer.json b/data/software/se/seasr-ngram-tag-cloud-viewer.json new file mode 100644 index 000000000000..3965e3bf43fe --- /dev/null +++ b/data/software/se/seasr-ngram-tag-cloud-viewer.json @@ -0,0 +1,8 @@ +{ + "slug": "seasr-ngram-tag-cloud-viewer", + "name": "SEASR: NGram Tag Cloud Viewer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084540" + ] +} diff --git a/data/software/se/seasr-tag-cloud-viewer-with-stemming.json b/data/software/se/seasr-tag-cloud-viewer-with-stemming.json new file mode 100644 index 000000000000..afea6ef05b2f --- /dev/null +++ b/data/software/se/seasr-tag-cloud-viewer-with-stemming.json @@ -0,0 +1,8 @@ +{ + "slug": "seasr-tag-cloud-viewer-with-stemming", + "name": "SEASR: Tag Cloud Viewer With Stemming", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084541" + ] +} diff --git a/data/software/se/seasr.json b/data/software/se/seasr.json new file mode 100644 index 000000000000..92d1d45f7f0b --- /dev/null +++ b/data/software/se/seasr.json @@ -0,0 +1,8 @@ +{ + "slug": "seasr", + "name": "SEASR", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084536" + ] +} diff --git a/data/software/se/seatable.json b/data/software/se/seatable.json new file mode 100644 index 000000000000..4beff33b30c7 --- /dev/null +++ b/data/software/se/seatable.json @@ -0,0 +1,8 @@ +{ + "slug": "seatable", + "name": "SeaTable", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113994630" + ] +} diff --git a/data/software/se/seatd.json b/data/software/se/seatd.json new file mode 100644 index 000000000000..0df6c5025015 --- /dev/null +++ b/data/software/se/seatd.json @@ -0,0 +1,11 @@ +{ + "slug": "seatd", + "name": "seatd", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121694194" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/se/seatools.json b/data/software/se/seatools.json new file mode 100644 index 000000000000..68244c8c2b20 --- /dev/null +++ b/data/software/se/seatools.json @@ -0,0 +1,11 @@ +{ + "slug": "seatools", + "name": "SeaTools", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7439824" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/se/seavus-project-viewer.json b/data/software/se/seavus-project-viewer.json new file mode 100644 index 000000000000..98475cc334e2 --- /dev/null +++ b/data/software/se/seavus-project-viewer.json @@ -0,0 +1,8 @@ +{ + "slug": "seavus-project-viewer", + "name": "Seavus Project Viewer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q20712153" + ] +} diff --git a/data/software/se/sebs.json b/data/software/se/sebs.json new file mode 100644 index 000000000000..3ef6130cb7f8 --- /dev/null +++ b/data/software/se/sebs.json @@ -0,0 +1,8 @@ +{ + "slug": "sebs", + "name": "Sebs", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10664976" + ] +} diff --git a/data/software/se/secanda-digital-campus.json b/data/software/se/secanda-digital-campus.json new file mode 100644 index 000000000000..7816030abd2f --- /dev/null +++ b/data/software/se/secanda-digital-campus.json @@ -0,0 +1,11 @@ +{ + "slug": "secanda-digital-campus", + "name": "SECANDA DIGITAL CAMPUS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137322898" + ], + "developers": [ + "SECANDA Systems AG" + ] +} diff --git a/data/software/se/secilc.json b/data/software/se/secilc.json new file mode 100644 index 000000000000..89040a9adf79 --- /dev/null +++ b/data/software/se/secilc.json @@ -0,0 +1,8 @@ +{ + "slug": "secilc", + "name": "secilc", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975443" + ] +} diff --git a/data/software/se/second-life.json b/data/software/se/second-life.json new file mode 100644 index 000000000000..c02756c4537a --- /dev/null +++ b/data/software/se/second-life.json @@ -0,0 +1,8 @@ +{ + "slug": "second-life", + "name": "Second Life", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087714" + ] +} diff --git a/data/software/se/secretnote.json b/data/software/se/secretnote.json new file mode 100644 index 000000000000..d8511f7bec36 --- /dev/null +++ b/data/software/se/secretnote.json @@ -0,0 +1,8 @@ +{ + "slug": "secretnote", + "name": "SecretNote", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140051810" + ] +} diff --git a/data/software/se/secunia-personal-software-inspector.json b/data/software/se/secunia-personal-software-inspector.json new file mode 100644 index 000000000000..5e2b773f1e8a --- /dev/null +++ b/data/software/se/secunia-personal-software-inspector.json @@ -0,0 +1,8 @@ +{ + "slug": "secunia-personal-software-inspector", + "name": "Secunia Personal Software Inspector", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3477558" + ] +} diff --git a/data/software/se/secure-coding.json b/data/software/se/secure-coding.json new file mode 100644 index 000000000000..ce5bc113df4a --- /dev/null +++ b/data/software/se/secure-coding.json @@ -0,0 +1,8 @@ +{ + "slug": "secure-coding", + "name": "secure coding", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7444867" + ] +} diff --git a/data/software/se/secure-dti.json b/data/software/se/secure-dti.json new file mode 100644 index 000000000000..dc11a766fce0 --- /dev/null +++ b/data/software/se/secure-dti.json @@ -0,0 +1,14 @@ +{ + "slug": "secure-dti", + "name": "Secure DTI", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q58171430" + ], + "developers": [ + "Bonnie Berger" + ], + "licenses": [ + "Creative Commons Attribution-NonCommercial 4.0 International" + ] +} diff --git a/data/software/se/secure-eraser.json b/data/software/se/secure-eraser.json new file mode 100644 index 000000000000..2f878bf94d07 --- /dev/null +++ b/data/software/se/secure-eraser.json @@ -0,0 +1,12 @@ +{ + "slug": "secure-eraser", + "name": "Secure Eraser", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130726076" + ], + "release_date": "2002-01-01", + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/se/secure-ftp.json b/data/software/se/secure-ftp.json new file mode 100644 index 000000000000..4ca788449f1f --- /dev/null +++ b/data/software/se/secure-ftp.json @@ -0,0 +1,11 @@ +{ + "slug": "secure-ftp", + "name": "Secure FTP", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7444843" + ], + "licenses": [ + "Apache License" + ] +} diff --git a/data/software/se/securetribe.json b/data/software/se/securetribe.json new file mode 100644 index 000000000000..55c3af4d67fb --- /dev/null +++ b/data/software/se/securetribe.json @@ -0,0 +1,8 @@ +{ + "slug": "securetribe", + "name": "SecureTribe", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q48814859" + ] +} diff --git a/data/software/se/security-enhanced-linux.json b/data/software/se/security-enhanced-linux.json new file mode 100644 index 000000000000..d28d44cecf93 --- /dev/null +++ b/data/software/se/security-enhanced-linux.json @@ -0,0 +1,15 @@ +{ + "slug": "security-enhanced-linux", + "name": "Security-Enhanced Linux", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116038" + ], + "release_date": "2000-12-22", + "developers": [ + "Red Hat" + ], + "licenses": [ + "GNU General Public License" + ] +} diff --git a/data/software/se/security-key-enforcement.json b/data/software/se/security-key-enforcement.json new file mode 100644 index 000000000000..72642a5b0851 --- /dev/null +++ b/data/software/se/security-key-enforcement.json @@ -0,0 +1,11 @@ +{ + "slug": "security-key-enforcement", + "name": "Security Key Enforcement", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60167832" + ], + "developers": [ + "Google" + ] +} diff --git a/data/software/se/security-vision.json b/data/software/se/security-vision.json new file mode 100644 index 000000000000..7c2637fdd421 --- /dev/null +++ b/data/software/se/security-vision.json @@ -0,0 +1,9 @@ +{ + "slug": "security-vision", + "name": "Security Vision", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q15714623" + ], + "release_date": "2007-01-01" +} diff --git a/data/software/se/securssh.json b/data/software/se/securssh.json new file mode 100644 index 000000000000..39127f6da464 --- /dev/null +++ b/data/software/se/securssh.json @@ -0,0 +1,14 @@ +{ + "slug": "securssh", + "name": "SecurSSH", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140064293" + ], + "developers": [ + "Watizi" + ], + "operating_systems": [ + "cross-platform" + ] +} diff --git a/data/software/se/seealsology.json b/data/software/se/seealsology.json new file mode 100644 index 000000000000..7afe8bf9b622 --- /dev/null +++ b/data/software/se/seealsology.json @@ -0,0 +1,8 @@ +{ + "slug": "seealsology", + "name": "Seealsology", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087715" + ] +} diff --git a/data/software/se/seeing-ai.json b/data/software/se/seeing-ai.json new file mode 100644 index 000000000000..b751a330f480 --- /dev/null +++ b/data/software/se/seeing-ai.json @@ -0,0 +1,8 @@ +{ + "slug": "seeing-ai", + "name": "Seeing AI", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q55080293" + ] +} diff --git a/data/software/se/seep2d.json b/data/software/se/seep2d.json new file mode 100644 index 000000000000..4812e987264c --- /dev/null +++ b/data/software/se/seep2d.json @@ -0,0 +1,14 @@ +{ + "slug": "seep2d", + "name": "SEEP2D", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7389655" + ], + "operating_systems": [ + "Microsoft Windows" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/se/seetxt.json b/data/software/se/seetxt.json new file mode 100644 index 000000000000..9b2350d71bb5 --- /dev/null +++ b/data/software/se/seetxt.json @@ -0,0 +1,8 @@ +{ + "slug": "seetxt", + "name": "seetxt", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62865631" + ] +} diff --git a/data/software/se/seeu.json b/data/software/se/seeu.json new file mode 100644 index 000000000000..6e968f32183b --- /dev/null +++ b/data/software/se/seeu.json @@ -0,0 +1,9 @@ +{ + "slug": "seeu", + "name": "SeeU", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q55530" + ], + "release_date": "2011-12-16" +} diff --git a/data/software/se/sega-meganet.json b/data/software/se/sega-meganet.json new file mode 100644 index 000000000000..174ced98c541 --- /dev/null +++ b/data/software/se/sega-meganet.json @@ -0,0 +1,11 @@ +{ + "slug": "sega-meganet", + "name": "Sega Meganet", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1851885" + ], + "developers": [ + "Sega" + ] +} diff --git a/data/software/se/segrada.json b/data/software/se/segrada.json new file mode 100644 index 000000000000..282b158b348f --- /dev/null +++ b/data/software/se/segrada.json @@ -0,0 +1,8 @@ +{ + "slug": "segrada", + "name": "Segrada", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084542" + ] +} diff --git a/data/software/se/seismic-handler.json b/data/software/se/seismic-handler.json new file mode 100644 index 000000000000..7581dad973a2 --- /dev/null +++ b/data/software/se/seismic-handler.json @@ -0,0 +1,11 @@ +{ + "slug": "seismic-handler", + "name": "Seismic Handler", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17105700" + ], + "developers": [ + "Seismological Observatory Gräfenberg" + ] +} diff --git a/data/software/se/sejda.json b/data/software/se/sejda.json new file mode 100644 index 000000000000..99e09cdfc01c --- /dev/null +++ b/data/software/se/sejda.json @@ -0,0 +1,8 @@ +{ + "slug": "sejda", + "name": "Sejda", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q98536300" + ] +} diff --git a/data/software/se/sekchek-local.json b/data/software/se/sekchek-local.json new file mode 100644 index 000000000000..6b536155f554 --- /dev/null +++ b/data/software/se/sekchek-local.json @@ -0,0 +1,8 @@ +{ + "slug": "sekchek-local", + "name": "SekChek Local", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7447105" + ] +} diff --git a/data/software/se/selinux-base-policy.json b/data/software/se/selinux-base-policy.json new file mode 100644 index 000000000000..a7cab54e96b1 --- /dev/null +++ b/data/software/se/selinux-base-policy.json @@ -0,0 +1,8 @@ +{ + "slug": "selinux-base-policy", + "name": "selinux-base-policy", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975446" + ] +} diff --git a/data/software/se/selinux-base.json b/data/software/se/selinux-base.json new file mode 100644 index 000000000000..3dfd8f362ac7 --- /dev/null +++ b/data/software/se/selinux-base.json @@ -0,0 +1,8 @@ +{ + "slug": "selinux-base", + "name": "selinux-base", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975445" + ] +} diff --git a/data/software/se/selinux-python.json b/data/software/se/selinux-python.json new file mode 100644 index 000000000000..83122a553b53 --- /dev/null +++ b/data/software/se/selinux-python.json @@ -0,0 +1,8 @@ +{ + "slug": "selinux-python", + "name": "selinux-python", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975448" + ] +} diff --git a/data/software/se/sell-the-trend.json b/data/software/se/sell-the-trend.json new file mode 100644 index 000000000000..bd18e18db5e3 --- /dev/null +++ b/data/software/se/sell-the-trend.json @@ -0,0 +1,8 @@ +{ + "slug": "sell-the-trend", + "name": "Sell The Trend", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140401588" + ] +} diff --git a/data/software/se/semantic-mapping-reasoner-and-assembler.json b/data/software/se/semantic-mapping-reasoner-and-assembler.json new file mode 100644 index 000000000000..3c08b0268cc6 --- /dev/null +++ b/data/software/se/semantic-mapping-reasoner-and-assembler.json @@ -0,0 +1,14 @@ +{ + "slug": "semantic-mapping-reasoner-and-assembler", + "name": "Semantic Mapping Reasoner and Assembler", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127259663" + ], + "programming_languages": [ + "Python" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/se/semantria.json b/data/software/se/semantria.json new file mode 100644 index 000000000000..21ac010d65fc --- /dev/null +++ b/data/software/se/semantria.json @@ -0,0 +1,8 @@ +{ + "slug": "semantria", + "name": "Semantria", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087716" + ] +} diff --git a/data/software/se/semaphore.json b/data/software/se/semaphore.json new file mode 100644 index 000000000000..020fa26d78e0 --- /dev/null +++ b/data/software/se/semaphore.json @@ -0,0 +1,8 @@ +{ + "slug": "semaphore", + "name": "Semaphore", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q48988926" + ] +} diff --git a/data/software/se/semato.json b/data/software/se/semato.json new file mode 100644 index 000000000000..c01f9409db09 --- /dev/null +++ b/data/software/se/semato.json @@ -0,0 +1,8 @@ +{ + "slug": "semato", + "name": "Semato", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3510718" + ] +} diff --git a/data/software/se/semcad.json b/data/software/se/semcad.json new file mode 100644 index 000000000000..f26de59d759b --- /dev/null +++ b/data/software/se/semcad.json @@ -0,0 +1,8 @@ +{ + "slug": "semcad", + "name": "SEMCAD", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122396748" + ] +} diff --git a/data/software/se/semlens.json b/data/software/se/semlens.json new file mode 100644 index 000000000000..fd5f86a20913 --- /dev/null +++ b/data/software/se/semlens.json @@ -0,0 +1,8 @@ +{ + "slug": "semlens", + "name": "SemLens", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084543" + ] +} diff --git a/data/software/se/semmle.json b/data/software/se/semmle.json new file mode 100644 index 000000000000..64b890b0fb56 --- /dev/null +++ b/data/software/se/semmle.json @@ -0,0 +1,8 @@ +{ + "slug": "semmle", + "name": "Semmle", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7449710" + ] +} diff --git a/data/software/se/semodule-utils.json b/data/software/se/semodule-utils.json new file mode 100644 index 000000000000..4421add3aaa3 --- /dev/null +++ b/data/software/se/semodule-utils.json @@ -0,0 +1,8 @@ +{ + "slug": "semodule-utils", + "name": "semodule-utils", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975450" + ] +} diff --git a/data/software/se/semtalk.json b/data/software/se/semtalk.json new file mode 100644 index 000000000000..d0c8d7faa946 --- /dev/null +++ b/data/software/se/semtalk.json @@ -0,0 +1,11 @@ +{ + "slug": "semtalk", + "name": "SemTalk", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2269554" + ], + "developers": [ + "Semtation GmbH" + ] +} diff --git a/data/software/se/sendform.json b/data/software/se/sendform.json new file mode 100644 index 000000000000..a2fe48d81b11 --- /dev/null +++ b/data/software/se/sendform.json @@ -0,0 +1,8 @@ +{ + "slug": "sendform", + "name": "SendForm", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140051821" + ] +} diff --git a/data/software/se/sendplus.json b/data/software/se/sendplus.json new file mode 100644 index 000000000000..6e1762c73ae7 --- /dev/null +++ b/data/software/se/sendplus.json @@ -0,0 +1,8 @@ +{ + "slug": "sendplus", + "name": "SendPlus", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q55593560" + ] +} diff --git a/data/software/se/sendpulse.json b/data/software/se/sendpulse.json new file mode 100644 index 000000000000..c2ce67e24e5a --- /dev/null +++ b/data/software/se/sendpulse.json @@ -0,0 +1,8 @@ +{ + "slug": "sendpulse", + "name": "SendPulse", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60220061" + ] +} diff --git a/data/software/se/sengi.json b/data/software/se/sengi.json new file mode 100644 index 000000000000..7dde61415327 --- /dev/null +++ b/data/software/se/sengi.json @@ -0,0 +1,8 @@ +{ + "slug": "sengi", + "name": "Sengi", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118740392" + ] +} diff --git a/data/software/se/sensme.json b/data/software/se/sensme.json new file mode 100644 index 000000000000..f8ea4811d1e9 --- /dev/null +++ b/data/software/se/sensme.json @@ -0,0 +1,11 @@ +{ + "slug": "sensme", + "name": "SensMe", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4049291" + ], + "developers": [ + "Sony Group" + ] +} diff --git a/data/software/se/sent.json b/data/software/se/sent.json new file mode 100644 index 000000000000..20449221648e --- /dev/null +++ b/data/software/se/sent.json @@ -0,0 +1,15 @@ +{ + "slug": "sent", + "name": "sent", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22338769" + ], + "developers": [ + "suckless.org", + "Markus Teich" + ], + "licenses": [ + "ISC license" + ] +} diff --git a/data/software/se/sentenza.json b/data/software/se/sentenza.json new file mode 100644 index 000000000000..86061637a6f0 --- /dev/null +++ b/data/software/se/sentenza.json @@ -0,0 +1,8 @@ +{ + "slug": "sentenza", + "name": "Sentenza", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3478654" + ] +} diff --git a/data/software/se/sentimentarcs.json b/data/software/se/sentimentarcs.json new file mode 100644 index 000000000000..24cb07430ad0 --- /dev/null +++ b/data/software/se/sentimentarcs.json @@ -0,0 +1,11 @@ +{ + "slug": "sentimentarcs", + "name": "SentimentArcs", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138605494" + ], + "developers": [ + "Katherine Elkins" + ] +} diff --git a/data/software/se/sentimentbuilder-com.json b/data/software/se/sentimentbuilder-com.json new file mode 100644 index 000000000000..be91a797e336 --- /dev/null +++ b/data/software/se/sentimentbuilder-com.json @@ -0,0 +1,8 @@ +{ + "slug": "sentimentbuilder-com", + "name": "SentimentBuilder.com", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084544" + ] +} diff --git a/data/software/se/sentinel-q139555827.json b/data/software/se/sentinel-q139555827.json new file mode 100644 index 000000000000..01e0ad9183e3 --- /dev/null +++ b/data/software/se/sentinel-q139555827.json @@ -0,0 +1,11 @@ +{ + "slug": "sentinel-q139555827", + "name": "SENTINEL", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139555827" + ], + "programming_languages": [ + "Python" + ] +} diff --git a/data/software/se/sentinel.json b/data/software/se/sentinel.json new file mode 100644 index 000000000000..a417da8c0e78 --- /dev/null +++ b/data/software/se/sentinel.json @@ -0,0 +1,11 @@ +{ + "slug": "sentinel", + "name": "Sentinel", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16934520" + ], + "developers": [ + "ePaper Ltd" + ] +} diff --git a/data/software/se/sentione.json b/data/software/se/sentione.json new file mode 100644 index 000000000000..b99f4aa49747 --- /dev/null +++ b/data/software/se/sentione.json @@ -0,0 +1,8 @@ +{ + "slug": "sentione", + "name": "SentiOne", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18649951" + ] +} diff --git a/data/software/se/sentistrength-q126084546.json b/data/software/se/sentistrength-q126084546.json new file mode 100644 index 000000000000..0111bd962011 --- /dev/null +++ b/data/software/se/sentistrength-q126084546.json @@ -0,0 +1,8 @@ +{ + "slug": "sentistrength-q126084546", + "name": "SentiStrength", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084546" + ] +} diff --git a/data/software/se/sentistrength.json b/data/software/se/sentistrength.json new file mode 100644 index 000000000000..34c90bc9ea11 --- /dev/null +++ b/data/software/se/sentistrength.json @@ -0,0 +1,8 @@ +{ + "slug": "sentistrength", + "name": "SentiStrength", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q54819120" + ] +} diff --git a/data/software/se/sentry-parental-controls.json b/data/software/se/sentry-parental-controls.json new file mode 100644 index 000000000000..266dc27c337d --- /dev/null +++ b/data/software/se/sentry-parental-controls.json @@ -0,0 +1,8 @@ +{ + "slug": "sentry-parental-controls", + "name": "Sentry Parental Controls", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7451403" + ] +} diff --git a/data/software/se/senuti.json b/data/software/se/senuti.json new file mode 100644 index 000000000000..459fafa85ca6 --- /dev/null +++ b/data/software/se/senuti.json @@ -0,0 +1,11 @@ +{ + "slug": "senuti", + "name": "Senuti", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q9076049" + ], + "operating_systems": [ + "macOS" + ] +} diff --git a/data/software/se/seo-panel.json b/data/software/se/seo-panel.json new file mode 100644 index 000000000000..4c516813f7b7 --- /dev/null +++ b/data/software/se/seo-panel.json @@ -0,0 +1,14 @@ +{ + "slug": "seo-panel", + "name": "SEO Panel", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16599345" + ], + "programming_languages": [ + "PHP" + ], + "licenses": [ + "GNU General Public License, version 2.0" + ] +} diff --git a/data/software/se/sepolgen.json b/data/software/se/sepolgen.json new file mode 100644 index 000000000000..5fd10057cf4c --- /dev/null +++ b/data/software/se/sepolgen.json @@ -0,0 +1,8 @@ +{ + "slug": "sepolgen", + "name": "sepolgen", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975454" + ] +} diff --git a/data/software/se/seqkit.json b/data/software/se/seqkit.json new file mode 100644 index 000000000000..7e112bba665d --- /dev/null +++ b/data/software/se/seqkit.json @@ -0,0 +1,18 @@ +{ + "slug": "seqkit", + "name": "SeqKit", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115348765" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [ + "Go" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/se/sequenceviewer.json b/data/software/se/sequenceviewer.json new file mode 100644 index 000000000000..4545def8efd3 --- /dev/null +++ b/data/software/se/sequenceviewer.json @@ -0,0 +1,11 @@ +{ + "slug": "sequenceviewer", + "name": "Sequenceviewer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105229765" + ], + "operating_systems": [ + "macOS" + ] +} diff --git a/data/software/se/sequencher.json b/data/software/se/sequencher.json new file mode 100644 index 000000000000..0eedbf674b68 --- /dev/null +++ b/data/software/se/sequencher.json @@ -0,0 +1,8 @@ +{ + "slug": "sequencher", + "name": "Sequencher", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3479087" + ] +} diff --git a/data/software/se/sequerome.json b/data/software/se/sequerome.json new file mode 100644 index 000000000000..c4dd32910fd9 --- /dev/null +++ b/data/software/se/sequerome.json @@ -0,0 +1,8 @@ +{ + "slug": "sequerome", + "name": "Sequerome", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7452522" + ] +} diff --git a/data/software/se/sequest.json b/data/software/se/sequest.json new file mode 100644 index 000000000000..52c3f60b195a --- /dev/null +++ b/data/software/se/sequest.json @@ -0,0 +1,11 @@ +{ + "slug": "sequest", + "name": "SEQUEST", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7389808" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/se/sequoyah.json b/data/software/se/sequoyah.json new file mode 100644 index 000000000000..e52e725bbd5f --- /dev/null +++ b/data/software/se/sequoyah.json @@ -0,0 +1,8 @@ +{ + "slug": "sequoyah", + "name": "Sequoyah", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76177658" + ] +} diff --git a/data/software/se/serendip.json b/data/software/se/serendip.json new file mode 100644 index 000000000000..8b14a546a907 --- /dev/null +++ b/data/software/se/serendip.json @@ -0,0 +1,8 @@ +{ + "slug": "serendip", + "name": "Serendip", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084547" + ] +} diff --git a/data/software/se/serialtalk.json b/data/software/se/serialtalk.json new file mode 100644 index 000000000000..0f7f0eedb508 --- /dev/null +++ b/data/software/se/serialtalk.json @@ -0,0 +1,8 @@ +{ + "slug": "serialtalk", + "name": "serialtalk", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975457" + ] +} diff --git a/data/software/se/series-90.json b/data/software/se/series-90.json new file mode 100644 index 000000000000..83bf8eeb69fa --- /dev/null +++ b/data/software/se/series-90.json @@ -0,0 +1,8 @@ +{ + "slug": "series-90", + "name": "Series 90", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1048936" + ] +} diff --git a/data/software/se/serpent.json b/data/software/se/serpent.json new file mode 100644 index 000000000000..3844bb0d71ab --- /dev/null +++ b/data/software/se/serpent.json @@ -0,0 +1,11 @@ +{ + "slug": "serpent", + "name": "Serpent", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17080126" + ], + "developers": [ + "VTT Technical Research Centre of Finland" + ] +} diff --git a/data/software/se/serratus.json b/data/software/se/serratus.json new file mode 100644 index 000000000000..9b207ca2033d --- /dev/null +++ b/data/software/se/serratus.json @@ -0,0 +1,8 @@ +{ + "slug": "serratus", + "name": "Serratus", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116457202" + ] +} diff --git a/data/software/se/serv-u-ftp-server.json b/data/software/se/serv-u-ftp-server.json new file mode 100644 index 000000000000..3defa30f9cc6 --- /dev/null +++ b/data/software/se/serv-u-ftp-server.json @@ -0,0 +1,17 @@ +{ + "slug": "serv-u-ftp-server", + "name": "Serv-U FTP Server", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2274084" + ], + "developers": [ + "SolarWinds" + ], + "operating_systems": [ + "Microsoft Windows" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/se/serval-project.json b/data/software/se/serval-project.json new file mode 100644 index 000000000000..0dc83f567769 --- /dev/null +++ b/data/software/se/serval-project.json @@ -0,0 +1,8 @@ +{ + "slug": "serval-project", + "name": "Serval project", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16137222" + ] +} diff --git a/data/software/se/server-assistant.json b/data/software/se/server-assistant.json new file mode 100644 index 000000000000..898fa36c6359 --- /dev/null +++ b/data/software/se/server-assistant.json @@ -0,0 +1,11 @@ +{ + "slug": "server-assistant", + "name": "Server Assistant", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7455591" + ], + "developers": [ + "Apple Inc." + ] +} diff --git a/data/software/se/server-efficiency-rating-tool.json b/data/software/se/server-efficiency-rating-tool.json new file mode 100644 index 000000000000..12bce2792156 --- /dev/null +++ b/data/software/se/server-efficiency-rating-tool.json @@ -0,0 +1,8 @@ +{ + "slug": "server-efficiency-rating-tool", + "name": "Server Efficiency Rating Tool", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16944479" + ] +} diff --git a/data/software/se/server-monitor.json b/data/software/se/server-monitor.json new file mode 100644 index 000000000000..77085f5ea137 --- /dev/null +++ b/data/software/se/server-monitor.json @@ -0,0 +1,14 @@ +{ + "slug": "server-monitor", + "name": "Server Monitor", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4049317" + ], + "developers": [ + "Apple Inc." + ], + "operating_systems": [ + "macOS" + ] +} diff --git a/data/software/se/server-tools.json b/data/software/se/server-tools.json new file mode 100644 index 000000000000..e9ac1a9d97cb --- /dev/null +++ b/data/software/se/server-tools.json @@ -0,0 +1,8 @@ +{ + "slug": "server-tools", + "name": "Server Tools", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76177697" + ] +} diff --git a/data/software/se/service-control-manager.json b/data/software/se/service-control-manager.json new file mode 100644 index 000000000000..808e5f02cc5e --- /dev/null +++ b/data/software/se/service-control-manager.json @@ -0,0 +1,8 @@ +{ + "slug": "service-control-manager", + "name": "Service Control Manager", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3480061" + ] +} diff --git a/data/software/se/service-oriented-localisation-architecture-solution.json b/data/software/se/service-oriented-localisation-architecture-solution.json new file mode 100644 index 000000000000..61c978bc8024 --- /dev/null +++ b/data/software/se/service-oriented-localisation-architecture-solution.json @@ -0,0 +1,8 @@ +{ + "slug": "service-oriented-localisation-architecture-solution", + "name": "Service Oriented Localisation Architecture Solution", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7455704" + ] +} diff --git a/data/software/se/service-package-interpreter.json b/data/software/se/service-package-interpreter.json new file mode 100644 index 000000000000..996099600caa --- /dev/null +++ b/data/software/se/service-package-interpreter.json @@ -0,0 +1,8 @@ +{ + "slug": "service-package-interpreter", + "name": "Service Package Interpreter", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7455707" + ] +} diff --git a/data/software/se/service-wrapper.json b/data/software/se/service-wrapper.json new file mode 100644 index 000000000000..e0fb2583b6a6 --- /dev/null +++ b/data/software/se/service-wrapper.json @@ -0,0 +1,8 @@ +{ + "slug": "service-wrapper", + "name": "service wrapper", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7455821" + ] +} diff --git a/data/software/se/servicelog.json b/data/software/se/servicelog.json new file mode 100644 index 000000000000..6fabd8ed5ffe --- /dev/null +++ b/data/software/se/servicelog.json @@ -0,0 +1,8 @@ +{ + "slug": "servicelog", + "name": "servicelog", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63064937" + ] +} diff --git a/data/software/se/serviio.json b/data/software/se/serviio.json new file mode 100644 index 000000000000..231f105a1a15 --- /dev/null +++ b/data/software/se/serviio.json @@ -0,0 +1,8 @@ +{ + "slug": "serviio", + "name": "Serviio", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17143909" + ] +} diff --git a/data/software/se/servoy.json b/data/software/se/servoy.json new file mode 100644 index 000000000000..945cca94bd88 --- /dev/null +++ b/data/software/se/servoy.json @@ -0,0 +1,8 @@ +{ + "slug": "servoy", + "name": "Servoy", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1688061" + ] +} diff --git a/data/software/se/sesam.json b/data/software/se/sesam.json new file mode 100644 index 000000000000..ac375f23994f --- /dev/null +++ b/data/software/se/sesam.json @@ -0,0 +1,8 @@ +{ + "slug": "sesam", + "name": "SeSam", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q9334673" + ] +} diff --git a/data/software/se/sesame-time.json b/data/software/se/sesame-time.json new file mode 100644 index 000000000000..d142b62ceec1 --- /dev/null +++ b/data/software/se/sesame-time.json @@ -0,0 +1,8 @@ +{ + "slug": "sesame-time", + "name": "Sesame Time", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q98214958" + ] +} diff --git a/data/software/se/sesoil.json b/data/software/se/sesoil.json new file mode 100644 index 000000000000..56b7efe5d6de --- /dev/null +++ b/data/software/se/sesoil.json @@ -0,0 +1,11 @@ +{ + "slug": "sesoil", + "name": "SESOIL", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7389868" + ], + "programming_languages": [ + "Fortran" + ] +} diff --git a/data/software/se/session-manager-subsystem.json b/data/software/se/session-manager-subsystem.json new file mode 100644 index 000000000000..82c392f06bf5 --- /dev/null +++ b/data/software/se/session-manager-subsystem.json @@ -0,0 +1,8 @@ +{ + "slug": "session-manager-subsystem", + "name": "Session Manager Subsystem", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1337381" + ] +} diff --git a/data/software/se/set-a-time.json b/data/software/se/set-a-time.json new file mode 100644 index 000000000000..66d398dd0b1a --- /dev/null +++ b/data/software/se/set-a-time.json @@ -0,0 +1,8 @@ +{ + "slug": "set-a-time", + "name": "Set a Time", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q91459260" + ] +} diff --git a/data/software/se/set-opacity.json b/data/software/se/set-opacity.json new file mode 100644 index 000000000000..11b01fc0aa78 --- /dev/null +++ b/data/software/se/set-opacity.json @@ -0,0 +1,8 @@ +{ + "slug": "set-opacity", + "name": "set_opacity", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975460" + ] +} diff --git a/data/software/se/setacl.json b/data/software/se/setacl.json new file mode 100644 index 000000000000..994b411a7234 --- /dev/null +++ b/data/software/se/setacl.json @@ -0,0 +1,11 @@ +{ + "slug": "setacl", + "name": "SetACL", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7456213" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/se/setapp.json b/data/software/se/setapp.json new file mode 100644 index 000000000000..e2cb6bdcde73 --- /dev/null +++ b/data/software/se/setapp.json @@ -0,0 +1,8 @@ +{ + "slug": "setapp", + "name": "Setapp", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q39057888" + ] +} diff --git a/data/software/se/setools.json b/data/software/se/setools.json new file mode 100644 index 000000000000..f388235d1c32 --- /dev/null +++ b/data/software/se/setools.json @@ -0,0 +1,8 @@ +{ + "slug": "setools", + "name": "setools", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975461" + ] +} diff --git a/data/software/se/setserial.json b/data/software/se/setserial.json new file mode 100644 index 000000000000..37ea25f232a4 --- /dev/null +++ b/data/software/se/setserial.json @@ -0,0 +1,8 @@ +{ + "slug": "setserial", + "name": "setserial", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63064946" + ] +} diff --git a/data/software/sf/sfold.json b/data/software/sf/sfold.json new file mode 100644 index 000000000000..29d0b16c81a2 --- /dev/null +++ b/data/software/sf/sfold.json @@ -0,0 +1,8 @@ +{ + "slug": "sfold", + "name": "Sfold", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124260382" + ] +} diff --git a/data/software/sf/sftpplus.json b/data/software/sf/sftpplus.json new file mode 100644 index 000000000000..550b60dc4849 --- /dev/null +++ b/data/software/sf/sftpplus.json @@ -0,0 +1,27 @@ +{ + "slug": "sftpplus", + "name": "SFTPPlus", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138496395" + ], + "release_date": "2005-01-01", + "developers": [ + "\"Pro:Atria\"" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [ + "Python" + ], + "licenses": [ + "proprietary license" + ], + "genres": [ + "managed file transfer", + "enterprise software", + "cloud computing" + ] +} diff --git a/data/software/sf/sfx.json b/data/software/sf/sfx.json new file mode 100644 index 000000000000..2df0f2f86275 --- /dev/null +++ b/data/software/sf/sfx.json @@ -0,0 +1,8 @@ +{ + "slug": "sfx", + "name": "SFX", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q457983" + ] +} diff --git a/data/software/sg/sg.json b/data/software/sg/sg.json new file mode 100644 index 000000000000..4ec32a44af94 --- /dev/null +++ b/data/software/sg/sg.json @@ -0,0 +1,8 @@ +{ + "slug": "sg", + "name": "SG⁺⁺", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121602607" + ] +} diff --git a/data/software/sg/sglang.json b/data/software/sg/sglang.json new file mode 100644 index 000000000000..fae873dfeaf6 --- /dev/null +++ b/data/software/sg/sglang.json @@ -0,0 +1,8 @@ +{ + "slug": "sglang", + "name": "SGLang", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139761223" + ] +} diff --git a/data/software/sg/sgmltools-lite.json b/data/software/sg/sgmltools-lite.json new file mode 100644 index 000000000000..112d53936760 --- /dev/null +++ b/data/software/sg/sgmltools-lite.json @@ -0,0 +1,8 @@ +{ + "slug": "sgmltools-lite", + "name": "sgmltools-lite", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62865608" + ] +} diff --git a/data/software/sg/sgs-genesis.json b/data/software/sg/sgs-genesis.json new file mode 100644 index 000000000000..0710247ed6a9 --- /dev/null +++ b/data/software/sg/sgs-genesis.json @@ -0,0 +1,11 @@ +{ + "slug": "sgs-genesis", + "name": "SGS Genesis", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q23583026" + ], + "developers": [ + "SGS S.A." + ] +} diff --git a/data/software/sh/shaad.json b/data/software/sh/shaad.json new file mode 100644 index 000000000000..7e7aee6318a3 --- /dev/null +++ b/data/software/sh/shaad.json @@ -0,0 +1,8 @@ +{ + "slug": "shaad", + "name": "Shaad", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q96106305" + ] +} diff --git a/data/software/sh/shaala-darpan.json b/data/software/sh/shaala-darpan.json new file mode 100644 index 000000000000..b4b2061a3b7f --- /dev/null +++ b/data/software/sh/shaala-darpan.json @@ -0,0 +1,8 @@ +{ + "slug": "shaala-darpan", + "name": "Shaala Darpan", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q19599582" + ] +} diff --git a/data/software/sh/shabbos-app.json b/data/software/sh/shabbos-app.json new file mode 100644 index 000000000000..0200ffbe5faa --- /dev/null +++ b/data/software/sh/shabbos-app.json @@ -0,0 +1,8 @@ +{ + "slug": "shabbos-app", + "name": "Shabbos App", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18207596" + ] +} diff --git a/data/software/sh/shaclex.json b/data/software/sh/shaclex.json new file mode 100644 index 000000000000..0a5e2707d36d --- /dev/null +++ b/data/software/sh/shaclex.json @@ -0,0 +1,17 @@ +{ + "slug": "shaclex", + "name": "SHACLex", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q51672819" + ], + "developers": [ + "José Emilio Labra Gayo" + ], + "programming_languages": [ + "Scala" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/sh/shade-3d.json b/data/software/sh/shade-3d.json new file mode 100644 index 000000000000..5f401df327fd --- /dev/null +++ b/data/software/sh/shade-3d.json @@ -0,0 +1,8 @@ +{ + "slug": "shade-3d", + "name": "Shade 3D", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7460267" + ] +} diff --git a/data/software/sh/shadertoy.json b/data/software/sh/shadertoy.json new file mode 100644 index 000000000000..097406500d45 --- /dev/null +++ b/data/software/sh/shadertoy.json @@ -0,0 +1,11 @@ +{ + "slug": "shadertoy", + "name": "Shadertoy", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28134226" + ], + "programming_languages": [ + "OpenGL Shading Language" + ] +} diff --git a/data/software/sh/shadow-slice.json b/data/software/sh/shadow-slice.json new file mode 100644 index 000000000000..ecb64d6dce7c --- /dev/null +++ b/data/software/sh/shadow-slice.json @@ -0,0 +1,14 @@ +{ + "slug": "shadow-slice", + "name": "Shadow Slice", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138658085" + ], + "developers": [ + "Febhouse" + ], + "genres": [ + "architecture" + ] +} diff --git a/data/software/sh/shadowdragon.json b/data/software/sh/shadowdragon.json new file mode 100644 index 000000000000..1d9b8bececad --- /dev/null +++ b/data/software/sh/shadowdragon.json @@ -0,0 +1,8 @@ +{ + "slug": "shadowdragon", + "name": "ShadowDragon", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q133785111" + ] +} diff --git a/data/software/sh/shadows.json b/data/software/sh/shadows.json new file mode 100644 index 000000000000..07e3c7e3b047 --- /dev/null +++ b/data/software/sh/shadows.json @@ -0,0 +1,11 @@ +{ + "slug": "shadows", + "name": "Shadows", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3481177" + ], + "operating_systems": [ + "Windows 7" + ] +} diff --git a/data/software/sh/shadowtls.json b/data/software/sh/shadowtls.json new file mode 100644 index 000000000000..fd27594a5925 --- /dev/null +++ b/data/software/sh/shadowtls.json @@ -0,0 +1,11 @@ +{ + "slug": "shadowtls", + "name": "ShadowTLS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117427580" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/sh/shairplay.json b/data/software/sh/shairplay.json new file mode 100644 index 000000000000..6baa149001b0 --- /dev/null +++ b/data/software/sh/shairplay.json @@ -0,0 +1,8 @@ +{ + "slug": "shairplay", + "name": "shairplay", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975465" + ] +} diff --git a/data/software/sh/shake.json b/data/software/sh/shake.json new file mode 100644 index 000000000000..96070ffc98a2 --- /dev/null +++ b/data/software/sh/shake.json @@ -0,0 +1,11 @@ +{ + "slug": "shake", + "name": "Shake", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1603162" + ], + "developers": [ + "Apple Inc." + ] +} diff --git a/data/software/sh/shakealert.json b/data/software/sh/shakealert.json new file mode 100644 index 000000000000..72f43fed806c --- /dev/null +++ b/data/software/sh/shakealert.json @@ -0,0 +1,8 @@ +{ + "slug": "shakealert", + "name": "ShakeAlert", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25028451" + ] +} diff --git a/data/software/sh/shaman.json b/data/software/sh/shaman.json new file mode 100644 index 000000000000..7daf09365a50 --- /dev/null +++ b/data/software/sh/shaman.json @@ -0,0 +1,11 @@ +{ + "slug": "shaman", + "name": "Shaman", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q12400442" + ], + "licenses": [ + "GNU General Public License" + ] +} diff --git a/data/software/sh/shape-extension.json b/data/software/sh/shape-extension.json new file mode 100644 index 000000000000..e09e02dce96e --- /dev/null +++ b/data/software/sh/shape-extension.json @@ -0,0 +1,11 @@ +{ + "slug": "shape-extension", + "name": "Shape extension", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7489230" + ], + "developers": [ + "X.Org Foundation" + ] +} diff --git a/data/software/sh/shapely.json b/data/software/sh/shapely.json new file mode 100644 index 000000000000..cca1199a1ca1 --- /dev/null +++ b/data/software/sh/shapely.json @@ -0,0 +1,15 @@ +{ + "slug": "shapely", + "name": "Shapely", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975466" + ], + "operating_systems": [ + "OpenBSD", + "FreeBSD" + ], + "licenses": [ + "3-clause BSD License" + ] +} diff --git a/data/software/sh/shapley.json b/data/software/sh/shapley.json new file mode 100644 index 000000000000..b2565bff8626 --- /dev/null +++ b/data/software/sh/shapley.json @@ -0,0 +1,8 @@ +{ + "slug": "shapley", + "name": "shapley", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105154408" + ] +} diff --git a/data/software/sh/shapr.json b/data/software/sh/shapr.json new file mode 100644 index 000000000000..954e3f73337b --- /dev/null +++ b/data/software/sh/shapr.json @@ -0,0 +1,8 @@ +{ + "slug": "shapr", + "name": "Shapr", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60742643" + ] +} diff --git a/data/software/sh/shapr3d.json b/data/software/sh/shapr3d.json new file mode 100644 index 000000000000..9e7391b52b3e --- /dev/null +++ b/data/software/sh/shapr3d.json @@ -0,0 +1,11 @@ +{ + "slug": "shapr3d", + "name": "Shapr3D", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131824188" + ], + "developers": [ + "Shapr3D Zrt" + ] +} diff --git a/data/software/sh/sharc-molecular-dynamics-software.json b/data/software/sh/sharc-molecular-dynamics-software.json new file mode 100644 index 000000000000..19f67b87899e --- /dev/null +++ b/data/software/sh/sharc-molecular-dynamics-software.json @@ -0,0 +1,12 @@ +{ + "slug": "sharc-molecular-dynamics-software", + "name": "SHARC molecular dynamics software", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22908694" + ], + "release_date": "2014-01-01", + "programming_languages": [ + "Fortran" + ] +} diff --git a/data/software/sh/sharecad.json b/data/software/sh/sharecad.json new file mode 100644 index 000000000000..6bbcfc89f646 --- /dev/null +++ b/data/software/sh/sharecad.json @@ -0,0 +1,11 @@ +{ + "slug": "sharecad", + "name": "ShareCAD", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q20010679" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/sh/sharescope.json b/data/software/sh/sharescope.json new file mode 100644 index 000000000000..081da03a3b38 --- /dev/null +++ b/data/software/sh/sharescope.json @@ -0,0 +1,8 @@ +{ + "slug": "sharescope", + "name": "ShareScope", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7489491" + ] +} diff --git a/data/software/sh/sharutils.json b/data/software/sh/sharutils.json new file mode 100644 index 000000000000..ff656591a813 --- /dev/null +++ b/data/software/sh/sharutils.json @@ -0,0 +1,11 @@ +{ + "slug": "sharutils", + "name": "Sharutils", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62865602" + ], + "operating_systems": [ + "Unix-like operating system" + ] +} diff --git a/data/software/sh/shash.json b/data/software/sh/shash.json new file mode 100644 index 000000000000..de0b171af39e --- /dev/null +++ b/data/software/sh/shash.json @@ -0,0 +1,8 @@ +{ + "slug": "shash", + "name": "shash", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63064891" + ] +} diff --git a/data/software/sh/shashlik.json b/data/software/sh/shashlik.json new file mode 100644 index 000000000000..519fd35abe94 --- /dev/null +++ b/data/software/sh/shashlik.json @@ -0,0 +1,8 @@ +{ + "slug": "shashlik", + "name": "Shashlik", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22938812" + ] +} diff --git a/data/software/sh/sheepdog.json b/data/software/sh/sheepdog.json new file mode 100644 index 000000000000..8941c35e9047 --- /dev/null +++ b/data/software/sh/sheepdog.json @@ -0,0 +1,11 @@ +{ + "slug": "sheepdog", + "name": "Sheepdog", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q29364650" + ], + "licenses": [ + "GNU General Public License, version 2.0" + ] +} diff --git a/data/software/sh/sheerdns.json b/data/software/sh/sheerdns.json new file mode 100644 index 000000000000..c1619c117282 --- /dev/null +++ b/data/software/sh/sheerdns.json @@ -0,0 +1,8 @@ +{ + "slug": "sheerdns", + "name": "sheerdns", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065128" + ] +} diff --git a/data/software/sh/sheetster.json b/data/software/sh/sheetster.json new file mode 100644 index 000000000000..f37b0b271b47 --- /dev/null +++ b/data/software/sh/sheetster.json @@ -0,0 +1,11 @@ +{ + "slug": "sheetster", + "name": "Sheetster", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7492550" + ], + "programming_languages": [ + "Java" + ] +} diff --git a/data/software/sh/shelx.json b/data/software/sh/shelx.json new file mode 100644 index 000000000000..f125c27cfb90 --- /dev/null +++ b/data/software/sh/shelx.json @@ -0,0 +1,11 @@ +{ + "slug": "shelx", + "name": "SHELX", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q51715613" + ], + "developers": [ + "George M. Sheldrick" + ] +} diff --git a/data/software/sh/shelxl.json b/data/software/sh/shelxl.json new file mode 100644 index 000000000000..1af69897ccc8 --- /dev/null +++ b/data/software/sh/shelxl.json @@ -0,0 +1,11 @@ +{ + "slug": "shelxl", + "name": "SHELXL", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q51795628" + ], + "developers": [ + "George M. Sheldrick" + ] +} diff --git a/data/software/sh/shelxt.json b/data/software/sh/shelxt.json new file mode 100644 index 000000000000..1c1e17742dbc --- /dev/null +++ b/data/software/sh/shelxt.json @@ -0,0 +1,11 @@ +{ + "slug": "shelxt", + "name": "SHELXT", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q51795853" + ], + "developers": [ + "George M. Sheldrick" + ] +} diff --git a/data/software/sh/sherpa.json b/data/software/sh/sherpa.json new file mode 100644 index 000000000000..76ed470ca887 --- /dev/null +++ b/data/software/sh/sherpa.json @@ -0,0 +1,11 @@ +{ + "slug": "sherpa", + "name": "sherpa", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122829338" + ], + "licenses": [ + "Apache Software License 2.0" + ] +} diff --git a/data/software/sh/shetran.json b/data/software/sh/shetran.json new file mode 100644 index 000000000000..23d01434c491 --- /dev/null +++ b/data/software/sh/shetran.json @@ -0,0 +1,8 @@ +{ + "slug": "shetran", + "name": "SHETRAN", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7390194" + ] +} diff --git a/data/software/sh/shex-ex.json b/data/software/sh/shex-ex.json new file mode 100644 index 000000000000..4f784fbd6d57 --- /dev/null +++ b/data/software/sh/shex-ex.json @@ -0,0 +1,14 @@ +{ + "slug": "shex-ex", + "name": "ShEx.ex", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q65588897" + ], + "programming_languages": [ + "Elixir" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/sh/shex-js.json b/data/software/sh/shex-js.json new file mode 100644 index 000000000000..4a789226f622 --- /dev/null +++ b/data/software/sh/shex-js.json @@ -0,0 +1,14 @@ +{ + "slug": "shex-js", + "name": "shex.js", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q51672386" + ], + "developers": [ + "Eric G. Prud'hommeaux" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/sh/shex-s.json b/data/software/sh/shex-s.json new file mode 100644 index 000000000000..d9f194ad740e --- /dev/null +++ b/data/software/sh/shex-s.json @@ -0,0 +1,17 @@ +{ + "slug": "shex-s", + "name": "ShEx-s", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112700944" + ], + "developers": [ + "José Emilio Labra Gayo" + ], + "programming_languages": [ + "Scala" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/sh/shex2-online-validator.json b/data/software/sh/shex2-online-validator.json new file mode 100644 index 000000000000..a74ed16a1f7b --- /dev/null +++ b/data/software/sh/shex2-online-validator.json @@ -0,0 +1,14 @@ +{ + "slug": "shex2-online-validator", + "name": "ShEx2 Online Validator", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q65921524" + ], + "developers": [ + "Eric G. Prud'hommeaux" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/sh/sheypoor-software.json b/data/software/sh/sheypoor-software.json new file mode 100644 index 000000000000..07be307d80bd --- /dev/null +++ b/data/software/sh/sheypoor-software.json @@ -0,0 +1,8 @@ +{ + "slug": "sheypoor-software", + "name": "Sheypoor (software)", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28714127" + ] +} diff --git a/data/software/sh/shibboleth-identity-provider.json b/data/software/sh/shibboleth-identity-provider.json new file mode 100644 index 000000000000..dee4f9265990 --- /dev/null +++ b/data/software/sh/shibboleth-identity-provider.json @@ -0,0 +1,20 @@ +{ + "slug": "shibboleth-identity-provider", + "name": "Shibboleth Identity Provider", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120732369" + ], + "developers": [ + "Shibboleth Consortium" + ], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [ + "Java" + ], + "licenses": [ + "Apache Software License 2.0" + ] +} diff --git a/data/software/sh/shibboleth-service-provider.json b/data/software/sh/shibboleth-service-provider.json new file mode 100644 index 000000000000..7730a5290787 --- /dev/null +++ b/data/software/sh/shibboleth-service-provider.json @@ -0,0 +1,11 @@ +{ + "slug": "shibboleth-service-provider", + "name": "Shibboleth Service Provider", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139930076" + ], + "licenses": [ + "Apache Software License 2.0" + ] +} diff --git a/data/software/sh/shibboleth.json b/data/software/sh/shibboleth.json new file mode 100644 index 000000000000..a0fcfbb1193a --- /dev/null +++ b/data/software/sh/shibboleth.json @@ -0,0 +1,17 @@ +{ + "slug": "shibboleth", + "name": "Shibboleth", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q458022" + ], + "developers": [ + "Shibboleth Consortium" + ], + "operating_systems": [ + "Microsoft Windows" + ], + "licenses": [ + "Apache Software License 2.0" + ] +} diff --git a/data/software/sh/shiftcor.json b/data/software/sh/shiftcor.json new file mode 100644 index 000000000000..aadd098705eb --- /dev/null +++ b/data/software/sh/shiftcor.json @@ -0,0 +1,8 @@ +{ + "slug": "shiftcor", + "name": "SHIFTCOR", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7390206" + ] +} diff --git a/data/software/sh/shigofumi.json b/data/software/sh/shigofumi.json new file mode 100644 index 000000000000..b1d1d9c830fa --- /dev/null +++ b/data/software/sh/shigofumi.json @@ -0,0 +1,8 @@ +{ + "slug": "shigofumi", + "name": "shigofumi", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28941033" + ] +} diff --git a/data/software/sh/shikoku-methane.json b/data/software/sh/shikoku-methane.json new file mode 100644 index 000000000000..c30bcde4476f --- /dev/null +++ b/data/software/sh/shikoku-methane.json @@ -0,0 +1,8 @@ +{ + "slug": "shikoku-methane", + "name": "Shikoku Methane", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140298563" + ] +} diff --git a/data/software/sh/shimmercat.json b/data/software/sh/shimmercat.json new file mode 100644 index 000000000000..56948c51272e --- /dev/null +++ b/data/software/sh/shimmercat.json @@ -0,0 +1,11 @@ +{ + "slug": "shimmercat", + "name": "ShimmerCat", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q24589696" + ], + "operating_systems": [ + "macOS" + ] +} diff --git a/data/software/sh/shine-expert-system.json b/data/software/sh/shine-expert-system.json new file mode 100644 index 000000000000..4959e78a7886 --- /dev/null +++ b/data/software/sh/shine-expert-system.json @@ -0,0 +1,8 @@ +{ + "slug": "shine-expert-system", + "name": "SHINE Expert System", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7390212" + ] +} diff --git a/data/software/sh/shiny-dracor.json b/data/software/sh/shiny-dracor.json new file mode 100644 index 000000000000..fa051a829d7f --- /dev/null +++ b/data/software/sh/shiny-dracor.json @@ -0,0 +1,8 @@ +{ + "slug": "shiny-dracor", + "name": "Shiny Dracor", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084548" + ] +} diff --git a/data/software/sh/shiny.json b/data/software/sh/shiny.json new file mode 100644 index 000000000000..f9c5187a911e --- /dev/null +++ b/data/software/sh/shiny.json @@ -0,0 +1,20 @@ +{ + "slug": "shiny", + "name": "Shiny", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q90803460" + ], + "developers": [ + "Posit PBC", + "Joe Cheng", + "Carson Paul Sievert", + "Garrick Aden-Buie" + ], + "programming_languages": [ + "R" + ], + "licenses": [ + "GNU General Public License, version 3.0" + ] +} diff --git a/data/software/sh/shipserv.json b/data/software/sh/shipserv.json new file mode 100644 index 000000000000..3c99876b18f9 --- /dev/null +++ b/data/software/sh/shipserv.json @@ -0,0 +1,8 @@ +{ + "slug": "shipserv", + "name": "Shipserv", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7498111" + ] +} diff --git a/data/software/sh/shixxnote.json b/data/software/sh/shixxnote.json new file mode 100644 index 000000000000..46f4da5d2756 --- /dev/null +++ b/data/software/sh/shixxnote.json @@ -0,0 +1,8 @@ +{ + "slug": "shixxnote", + "name": "ShixxNOTE", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1563342" + ] +} diff --git a/data/software/sh/shmm.json b/data/software/sh/shmm.json new file mode 100644 index 000000000000..9cee6d8505b0 --- /dev/null +++ b/data/software/sh/shmm.json @@ -0,0 +1,8 @@ +{ + "slug": "shmm", + "name": "Shmm", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76186458" + ] +} diff --git a/data/software/sh/shntool.json b/data/software/sh/shntool.json new file mode 100644 index 000000000000..2dfd7ff59502 --- /dev/null +++ b/data/software/sh/shntool.json @@ -0,0 +1,8 @@ +{ + "slug": "shntool", + "name": "shntool", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124211968" + ] +} diff --git a/data/software/sh/shop-diagnostic.json b/data/software/sh/shop-diagnostic.json new file mode 100644 index 000000000000..ea1f137ff054 --- /dev/null +++ b/data/software/sh/shop-diagnostic.json @@ -0,0 +1,8 @@ +{ + "slug": "shop-diagnostic", + "name": "Shop Diagnostic", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140186041" + ] +} diff --git a/data/software/sh/shop-script.json b/data/software/sh/shop-script.json new file mode 100644 index 000000000000..a98ebe36d809 --- /dev/null +++ b/data/software/sh/shop-script.json @@ -0,0 +1,17 @@ +{ + "slug": "shop-script", + "name": "Shop-Script", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q29364742" + ], + "operating_systems": [ + "cross-platform" + ], + "programming_languages": [ + "PHP" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/sh/shopaccino.json b/data/software/sh/shopaccino.json new file mode 100644 index 000000000000..c2472cd60443 --- /dev/null +++ b/data/software/sh/shopaccino.json @@ -0,0 +1,14 @@ +{ + "slug": "shopaccino", + "name": "Shopaccino", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140244530" + ], + "developers": [ + "I Solution Microsystems Private Limited" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/sh/shoper-s-a.json b/data/software/sh/shoper-s-a.json new file mode 100644 index 000000000000..6a72fe985799 --- /dev/null +++ b/data/software/sh/shoper-s-a.json @@ -0,0 +1,8 @@ +{ + "slug": "shoper-s-a", + "name": "Shoper S.A.", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18604616" + ] +} diff --git a/data/software/sh/shopping-centre-tycoon.json b/data/software/sh/shopping-centre-tycoon.json new file mode 100644 index 000000000000..f54cafda796c --- /dev/null +++ b/data/software/sh/shopping-centre-tycoon.json @@ -0,0 +1,8 @@ +{ + "slug": "shopping-centre-tycoon", + "name": "Shopping Centre Tycoon", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140361326" + ] +} diff --git a/data/software/sh/shopsavvy.json b/data/software/sh/shopsavvy.json new file mode 100644 index 000000000000..a9de30f00e73 --- /dev/null +++ b/data/software/sh/shopsavvy.json @@ -0,0 +1,8 @@ +{ + "slug": "shopsavvy", + "name": "ShopSavvy", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7501099" + ] +} diff --git a/data/software/sh/short-oligonucleotide-analysis-package.json b/data/software/sh/short-oligonucleotide-analysis-package.json new file mode 100644 index 000000000000..5acd56ac9f88 --- /dev/null +++ b/data/software/sh/short-oligonucleotide-analysis-package.json @@ -0,0 +1,8 @@ +{ + "slug": "short-oligonucleotide-analysis-package", + "name": "Short Oligonucleotide Analysis Package", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7501864" + ] +} diff --git a/data/software/sh/shortcuts.json b/data/software/sh/shortcuts.json new file mode 100644 index 000000000000..2605443f057c --- /dev/null +++ b/data/software/sh/shortcuts.json @@ -0,0 +1,11 @@ +{ + "slug": "shortcuts", + "name": "Shortcuts", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q30602204" + ], + "developers": [ + "Apple Inc." + ] +} diff --git a/data/software/sh/shotgrid.json b/data/software/sh/shotgrid.json new file mode 100644 index 000000000000..85fca6b87fb0 --- /dev/null +++ b/data/software/sh/shotgrid.json @@ -0,0 +1,11 @@ +{ + "slug": "shotgrid", + "name": "ShotGrid", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106910851" + ], + "developers": [ + "Autodesk" + ] +} diff --git a/data/software/sh/shotty.json b/data/software/sh/shotty.json new file mode 100644 index 000000000000..e641ada8c0ee --- /dev/null +++ b/data/software/sh/shotty.json @@ -0,0 +1,11 @@ +{ + "slug": "shotty", + "name": "Shotty", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2280087" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/sh/should-i-remove-it.json b/data/software/sh/should-i-remove-it.json new file mode 100644 index 000000000000..9a19869fa74e --- /dev/null +++ b/data/software/sh/should-i-remove-it.json @@ -0,0 +1,11 @@ +{ + "slug": "should-i-remove-it", + "name": "Should I Remove It?", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17048671" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/sh/shout.json b/data/software/sh/shout.json new file mode 100644 index 000000000000..9ddae950e9f3 --- /dev/null +++ b/data/software/sh/shout.json @@ -0,0 +1,8 @@ +{ + "slug": "shout", + "name": "shout", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065462" + ] +} diff --git a/data/software/sh/shoverand.json b/data/software/sh/shoverand.json new file mode 100644 index 000000000000..b4f2368cc05a --- /dev/null +++ b/data/software/sh/shoverand.json @@ -0,0 +1,8 @@ +{ + "slug": "shoverand", + "name": "ShoveRand", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123199982" + ] +} diff --git a/data/software/sh/showdocument.json b/data/software/sh/showdocument.json new file mode 100644 index 000000000000..7bce3273e298 --- /dev/null +++ b/data/software/sh/showdocument.json @@ -0,0 +1,8 @@ +{ + "slug": "showdocument", + "name": "ShowDocument", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7502911" + ] +} diff --git a/data/software/sh/showeq.json b/data/software/sh/showeq.json new file mode 100644 index 000000000000..e598ad5f2a36 --- /dev/null +++ b/data/software/sh/showeq.json @@ -0,0 +1,8 @@ +{ + "slug": "showeq", + "name": "ShowEQ", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7502913" + ] +} diff --git a/data/software/sh/showplace.json b/data/software/sh/showplace.json new file mode 100644 index 000000000000..7a87a87100c6 --- /dev/null +++ b/data/software/sh/showplace.json @@ -0,0 +1,8 @@ +{ + "slug": "showplace", + "name": "Showplace", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q30644762" + ] +} diff --git a/data/software/sh/showtime-skill-pack.json b/data/software/sh/showtime-skill-pack.json new file mode 100644 index 000000000000..dc2cb19a35f5 --- /dev/null +++ b/data/software/sh/showtime-skill-pack.json @@ -0,0 +1,11 @@ +{ + "slug": "showtime-skill-pack", + "name": "Showtime (skill pack)", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140466809" + ], + "developers": [ + "Mudd Ventures" + ] +} diff --git a/data/software/sh/shre.json b/data/software/sh/shre.json new file mode 100644 index 000000000000..5d4b695c4a68 --- /dev/null +++ b/data/software/sh/shre.json @@ -0,0 +1,8 @@ +{ + "slug": "shre", + "name": "Shre", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140393345" + ] +} diff --git a/data/software/sh/shredder-1-0.json b/data/software/sh/shredder-1-0.json new file mode 100644 index 000000000000..ef1a0fca7060 --- /dev/null +++ b/data/software/sh/shredder-1-0.json @@ -0,0 +1,9 @@ +{ + "slug": "shredder-1-0", + "name": "Shredder 1.0", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7503456" + ], + "release_date": "1998-01-01" +} diff --git a/data/software/sh/shrutlekhan-rajbhasha.json b/data/software/sh/shrutlekhan-rajbhasha.json new file mode 100644 index 000000000000..0526796f021e --- /dev/null +++ b/data/software/sh/shrutlekhan-rajbhasha.json @@ -0,0 +1,8 @@ +{ + "slug": "shrutlekhan-rajbhasha", + "name": "Shrutlekhan-Rajbhasha", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q12454742" + ] +} diff --git a/data/software/sh/shtool.json b/data/software/sh/shtool.json new file mode 100644 index 000000000000..d2cfcdc6f952 --- /dev/null +++ b/data/software/sh/shtool.json @@ -0,0 +1,8 @@ +{ + "slug": "shtool", + "name": "Shtool", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76186471" + ] +} diff --git a/data/software/sh/shutterstock-for-ipad.json b/data/software/sh/shutterstock-for-ipad.json new file mode 100644 index 000000000000..faab1e05a530 --- /dev/null +++ b/data/software/sh/shutterstock-for-ipad.json @@ -0,0 +1,8 @@ +{ + "slug": "shutterstock-for-ipad", + "name": "Shutterstock for iPad", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7505680" + ] +} diff --git a/data/software/sh/shyster.json b/data/software/sh/shyster.json new file mode 100644 index 000000000000..175d5e0ea9a5 --- /dev/null +++ b/data/software/sh/shyster.json @@ -0,0 +1,14 @@ +{ + "slug": "shyster", + "name": "SHYSTER", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7506033" + ], + "developers": [ + "James Popple" + ], + "operating_systems": [ + "Unix-like operating system" + ] +} diff --git a/data/software/si/si-dih-search-engine-and-repository.json b/data/software/si/si-dih-search-engine-and-repository.json new file mode 100644 index 000000000000..8d250a546830 --- /dev/null +++ b/data/software/si/si-dih-search-engine-and-repository.json @@ -0,0 +1,8 @@ +{ + "slug": "si-dih-search-engine-and-repository", + "name": "SI-DIH Search Engine and Repository", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084549" + ] +} diff --git a/data/software/si/siafi.json b/data/software/si/siafi.json new file mode 100644 index 000000000000..92ccfa9428f9 --- /dev/null +++ b/data/software/si/siafi.json @@ -0,0 +1,8 @@ +{ + "slug": "siafi", + "name": "SIAFI", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10372064" + ] +} diff --git a/data/software/si/siard-suite.json b/data/software/si/siard-suite.json new file mode 100644 index 000000000000..a073b51970c3 --- /dev/null +++ b/data/software/si/siard-suite.json @@ -0,0 +1,8 @@ +{ + "slug": "siard-suite", + "name": "Siard Suite", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138745006" + ] +} diff --git a/data/software/si/siconfi.json b/data/software/si/siconfi.json new file mode 100644 index 000000000000..e2985be5404f --- /dev/null +++ b/data/software/si/siconfi.json @@ -0,0 +1,8 @@ +{ + "slug": "siconfi", + "name": "Siconfi", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q99937605" + ] +} diff --git a/data/software/si/sicstus-prolog.json b/data/software/si/sicstus-prolog.json new file mode 100644 index 000000000000..b5cc9907bca5 --- /dev/null +++ b/data/software/si/sicstus-prolog.json @@ -0,0 +1,11 @@ +{ + "slug": "sicstus-prolog", + "name": "SICStus Prolog", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7390284" + ], + "developers": [ + "Swedish Institute of Computer Science" + ] +} diff --git a/data/software/si/sidecar-proxy.json b/data/software/si/sidecar-proxy.json new file mode 100644 index 000000000000..2b98efa8ba17 --- /dev/null +++ b/data/software/si/sidecar-proxy.json @@ -0,0 +1,8 @@ +{ + "slug": "sidecar-proxy", + "name": "Sidecar proxy", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139762059" + ] +} diff --git a/data/software/si/sidra-intersection.json b/data/software/si/sidra-intersection.json new file mode 100644 index 000000000000..b3c05d1a8a08 --- /dev/null +++ b/data/software/si/sidra-intersection.json @@ -0,0 +1,8 @@ +{ + "slug": "sidra-intersection", + "name": "Sidra Intersection", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7509489" + ] +} diff --git a/data/software/si/siecle.json b/data/software/si/siecle.json new file mode 100644 index 000000000000..4b8a96680f8d --- /dev/null +++ b/data/software/si/siecle.json @@ -0,0 +1,11 @@ +{ + "slug": "siecle", + "name": "SIECLE", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3104547" + ], + "developers": [ + "French Ministry of education" + ] +} diff --git a/data/software/si/sief.json b/data/software/si/sief.json new file mode 100644 index 000000000000..165aab842b33 --- /dev/null +++ b/data/software/si/sief.json @@ -0,0 +1,8 @@ +{ + "slug": "sief", + "name": "SIEF", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10371374" + ] +} diff --git a/data/software/si/siegfried.json b/data/software/si/siegfried.json new file mode 100644 index 000000000000..37788148c072 --- /dev/null +++ b/data/software/si/siegfried.json @@ -0,0 +1,14 @@ +{ + "slug": "siegfried", + "name": "Siegfried", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q59982409" + ], + "developers": [ + "Richard Lehane" + ], + "licenses": [ + "Apache Software License 2.0" + ] +} diff --git a/data/software/si/sifter.json b/data/software/si/sifter.json new file mode 100644 index 000000000000..b8dcdfa50873 --- /dev/null +++ b/data/software/si/sifter.json @@ -0,0 +1,8 @@ +{ + "slug": "sifter", + "name": "Sifter", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084550" + ] +} diff --git a/data/software/si/sightspeed.json b/data/software/si/sightspeed.json new file mode 100644 index 000000000000..3596ce7913d3 --- /dev/null +++ b/data/software/si/sightspeed.json @@ -0,0 +1,8 @@ +{ + "slug": "sightspeed", + "name": "SightSpeed", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7512078" + ] +} diff --git a/data/software/si/sigil.json b/data/software/si/sigil.json new file mode 100644 index 000000000000..627e7ff7ab03 --- /dev/null +++ b/data/software/si/sigil.json @@ -0,0 +1,8 @@ +{ + "slug": "sigil", + "name": "Sigil", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084551" + ] +} diff --git a/data/software/si/sigma-knowledge-engineering-environment.json b/data/software/si/sigma-knowledge-engineering-environment.json new file mode 100644 index 000000000000..019b5fd8a656 --- /dev/null +++ b/data/software/si/sigma-knowledge-engineering-environment.json @@ -0,0 +1,11 @@ +{ + "slug": "sigma-knowledge-engineering-environment", + "name": "Sigma knowledge engineering environment", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7512412" + ], + "licenses": [ + "GNU General Public License" + ] +} diff --git a/data/software/si/sigmaplot.json b/data/software/si/sigmaplot.json new file mode 100644 index 000000000000..c317149f4e29 --- /dev/null +++ b/data/software/si/sigmaplot.json @@ -0,0 +1,11 @@ +{ + "slug": "sigmaplot", + "name": "SigmaPlot", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4049465" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/si/sigmascan.json b/data/software/si/sigmascan.json new file mode 100644 index 000000000000..6adc94b6c388 --- /dev/null +++ b/data/software/si/sigmascan.json @@ -0,0 +1,8 @@ +{ + "slug": "sigmascan", + "name": "SigmaScan", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7512229" + ] +} diff --git a/data/software/si/sigmastat.json b/data/software/si/sigmastat.json new file mode 100644 index 000000000000..5702d071b77a --- /dev/null +++ b/data/software/si/sigmastat.json @@ -0,0 +1,8 @@ +{ + "slug": "sigmastat", + "name": "SigmaStat", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7512231" + ] +} diff --git a/data/software/si/signal-engine.json b/data/software/si/signal-engine.json new file mode 100644 index 000000000000..eef505d2c849 --- /dev/null +++ b/data/software/si/signal-engine.json @@ -0,0 +1,8 @@ +{ + "slug": "signal-engine", + "name": "Signal Engine", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140162176" + ] +} diff --git a/data/software/si/signify.json b/data/software/si/signify.json new file mode 100644 index 000000000000..cc1f25ece38b --- /dev/null +++ b/data/software/si/signify.json @@ -0,0 +1,11 @@ +{ + "slug": "signify", + "name": "signify", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126326772" + ], + "operating_systems": [ + "OpenBSD" + ] +} diff --git a/data/software/si/signnow.json b/data/software/si/signnow.json new file mode 100644 index 000000000000..8cdbd451f951 --- /dev/null +++ b/data/software/si/signnow.json @@ -0,0 +1,8 @@ +{ + "slug": "signnow", + "name": "SignNow", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7512523" + ] +} diff --git a/data/software/si/signplot.json b/data/software/si/signplot.json new file mode 100644 index 000000000000..744f5dbe1b8e --- /dev/null +++ b/data/software/si/signplot.json @@ -0,0 +1,9 @@ +{ + "slug": "signplot", + "name": "SignPlot", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7512525" + ], + "release_date": "1984-01-01" +} diff --git a/data/software/si/signum-framework.json b/data/software/si/signum-framework.json new file mode 100644 index 000000000000..e2b2feed228f --- /dev/null +++ b/data/software/si/signum-framework.json @@ -0,0 +1,8 @@ +{ + "slug": "signum-framework", + "name": "Signum Framework", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3818758" + ] +} diff --git a/data/software/si/sigrid.json b/data/software/si/sigrid.json new file mode 100644 index 000000000000..006c3382283a --- /dev/null +++ b/data/software/si/sigrid.json @@ -0,0 +1,11 @@ +{ + "slug": "sigrid", + "name": "Sigrid", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q114853601" + ], + "developers": [ + "Software Improvement Group" + ] +} diff --git a/data/software/si/sigrok-cli.json b/data/software/si/sigrok-cli.json new file mode 100644 index 000000000000..167b79b079a4 --- /dev/null +++ b/data/software/si/sigrok-cli.json @@ -0,0 +1,8 @@ +{ + "slug": "sigrok-cli", + "name": "sigrok-cli", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975467" + ] +} diff --git a/data/software/si/sigrok-firmware-fx2lafw.json b/data/software/si/sigrok-firmware-fx2lafw.json new file mode 100644 index 000000000000..d20425da239d --- /dev/null +++ b/data/software/si/sigrok-firmware-fx2lafw.json @@ -0,0 +1,8 @@ +{ + "slug": "sigrok-firmware-fx2lafw", + "name": "sigrok-firmware-fx2lafw", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975468" + ] +} diff --git a/data/software/si/sigscheme.json b/data/software/si/sigscheme.json new file mode 100644 index 000000000000..80eb13d5cbd4 --- /dev/null +++ b/data/software/si/sigscheme.json @@ -0,0 +1,8 @@ +{ + "slug": "sigscheme", + "name": "SigScheme", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62865576" + ] +} diff --git a/data/software/si/sikuli.json b/data/software/si/sikuli.json new file mode 100644 index 000000000000..9d17e0e10ed4 --- /dev/null +++ b/data/software/si/sikuli.json @@ -0,0 +1,8 @@ +{ + "slug": "sikuli", + "name": "Sikuli", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4049476" + ] +} diff --git a/data/software/si/sileo.json b/data/software/si/sileo.json new file mode 100644 index 000000000000..9a57678d861e --- /dev/null +++ b/data/software/si/sileo.json @@ -0,0 +1,14 @@ +{ + "slug": "sileo", + "name": "Sileo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131581641" + ], + "developers": [ + "Amy While" + ], + "licenses": [ + "4-clause BSD License" + ] +} diff --git a/data/software/si/silhouettefx.json b/data/software/si/silhouettefx.json new file mode 100644 index 000000000000..d0b99ab12715 --- /dev/null +++ b/data/software/si/silhouettefx.json @@ -0,0 +1,8 @@ +{ + "slug": "silhouettefx", + "name": "SilhouetteFX", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18378415" + ] +} diff --git a/data/software/si/silicon.json b/data/software/si/silicon.json new file mode 100644 index 000000000000..ef85697a6886 --- /dev/null +++ b/data/software/si/silicon.json @@ -0,0 +1,8 @@ +{ + "slug": "silicon", + "name": "Silicon", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115972479" + ] +} diff --git a/data/software/si/silivaccine.json b/data/software/si/silivaccine.json new file mode 100644 index 000000000000..e7face46e853 --- /dev/null +++ b/data/software/si/silivaccine.json @@ -0,0 +1,8 @@ +{ + "slug": "silivaccine", + "name": "SiliVaccine", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q20439078" + ] +} diff --git a/data/software/si/silk-central.json b/data/software/si/silk-central.json new file mode 100644 index 000000000000..253ddc0a3cef --- /dev/null +++ b/data/software/si/silk-central.json @@ -0,0 +1,12 @@ +{ + "slug": "silk-central", + "name": "Silk central", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7515220" + ], + "release_date": "2005-01-01", + "developers": [ + "Borland" + ] +} diff --git a/data/software/si/silk-performer.json b/data/software/si/silk-performer.json new file mode 100644 index 000000000000..86443d8f99d0 --- /dev/null +++ b/data/software/si/silk-performer.json @@ -0,0 +1,11 @@ +{ + "slug": "silk-performer", + "name": "Silk Performer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7515184" + ], + "developers": [ + "Micro Focus International" + ] +} diff --git a/data/software/si/silk-test.json b/data/software/si/silk-test.json new file mode 100644 index 000000000000..bb957af133e0 --- /dev/null +++ b/data/software/si/silk-test.json @@ -0,0 +1,11 @@ +{ + "slug": "silk-test", + "name": "Silk Test", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7515164" + ], + "developers": [ + "Micro Focus International" + ] +} diff --git a/data/software/si/silkypix.json b/data/software/si/silkypix.json new file mode 100644 index 000000000000..61a44d8481f6 --- /dev/null +++ b/data/software/si/silkypix.json @@ -0,0 +1,12 @@ +{ + "slug": "silkypix", + "name": "Silkypix", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2286266" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/software/si/silobreaker.json b/data/software/si/silobreaker.json new file mode 100644 index 000000000000..0a854a1e50f5 --- /dev/null +++ b/data/software/si/silobreaker.json @@ -0,0 +1,8 @@ +{ + "slug": "silobreaker", + "name": "Silobreaker", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084553" + ] +} diff --git a/data/software/si/simap.json b/data/software/si/simap.json new file mode 100644 index 000000000000..5803148d1c2c --- /dev/null +++ b/data/software/si/simap.json @@ -0,0 +1,8 @@ +{ + "slug": "simap", + "name": "SIMAP", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1459271" + ] +} diff --git a/data/software/si/simapro.json b/data/software/si/simapro.json new file mode 100644 index 000000000000..5e0ac4805a60 --- /dev/null +++ b/data/software/si/simapro.json @@ -0,0 +1,8 @@ +{ + "slug": "simapro", + "name": "SimaPro", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122639628" + ] +} diff --git a/data/software/si/simatic-step-7.json b/data/software/si/simatic-step-7.json new file mode 100644 index 000000000000..bc22465e233a --- /dev/null +++ b/data/software/si/simatic-step-7.json @@ -0,0 +1,11 @@ +{ + "slug": "simatic-step-7", + "name": "Simatic Step 7", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q351078" + ], + "developers": [ + "Siemens" + ] +} diff --git a/data/software/si/simba-voice-agents.json b/data/software/si/simba-voice-agents.json new file mode 100644 index 000000000000..7556a3111a40 --- /dev/null +++ b/data/software/si/simba-voice-agents.json @@ -0,0 +1,11 @@ +{ + "slug": "simba-voice-agents", + "name": "Simba Voice Agents", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139499228" + ], + "operating_systems": [ + "web application" + ] +} diff --git a/data/software/si/simbl.json b/data/software/si/simbl.json new file mode 100644 index 000000000000..33ed949cf433 --- /dev/null +++ b/data/software/si/simbl.json @@ -0,0 +1,11 @@ +{ + "slug": "simbl", + "name": "SIMBL", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7390384" + ], + "developers": [ + "Mike Solomon" + ] +} diff --git a/data/software/si/simca-2-0.json b/data/software/si/simca-2-0.json new file mode 100644 index 000000000000..b83d28b3f548 --- /dev/null +++ b/data/software/si/simca-2-0.json @@ -0,0 +1,8 @@ +{ + "slug": "simca-2-0", + "name": "SimCA 2.0", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084554" + ] +} diff --git a/data/software/si/simcad-pro.json b/data/software/si/simcad-pro.json new file mode 100644 index 000000000000..36bf2b1b8961 --- /dev/null +++ b/data/software/si/simcad-pro.json @@ -0,0 +1,13 @@ +{ + "slug": "simcad-pro", + "name": "Simcad Pro", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7517458" + ], + "operating_systems": [ + "XP", + "Vista", + "Microsoft Windows" + ] +} diff --git a/data/software/si/simcenter-amesim.json b/data/software/si/simcenter-amesim.json new file mode 100644 index 000000000000..0568af9b731e --- /dev/null +++ b/data/software/si/simcenter-amesim.json @@ -0,0 +1,12 @@ +{ + "slug": "simcenter-amesim", + "name": "Simcenter Amesim", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2819258" + ], + "release_date": "1995-01-01", + "developers": [ + "Siemens Digital Industries Software" + ] +} diff --git a/data/software/si/simcenter-star-ccm.json b/data/software/si/simcenter-star-ccm.json new file mode 100644 index 000000000000..506ee5690ea6 --- /dev/null +++ b/data/software/si/simcenter-star-ccm.json @@ -0,0 +1,8 @@ +{ + "slug": "simcenter-star-ccm", + "name": "Simcenter STAR-CCM+", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q97277042" + ] +} diff --git a/data/software/si/simcenter.json b/data/software/si/simcenter.json new file mode 100644 index 000000000000..95da2ed8baa9 --- /dev/null +++ b/data/software/si/simcenter.json @@ -0,0 +1,14 @@ +{ + "slug": "simcenter", + "name": "Simcenter", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q29364748" + ], + "operating_systems": [ + "Microsoft Windows" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/si/simcyp-simulator.json b/data/software/si/simcyp-simulator.json new file mode 100644 index 000000000000..138100df5810 --- /dev/null +++ b/data/software/si/simcyp-simulator.json @@ -0,0 +1,8 @@ +{ + "slug": "simcyp-simulator", + "name": "Simcyp Simulator", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7517512" + ] +} diff --git a/data/software/si/simde.json b/data/software/si/simde.json new file mode 100644 index 000000000000..6201835e5aaf --- /dev/null +++ b/data/software/si/simde.json @@ -0,0 +1,11 @@ +{ + "slug": "simde", + "name": "simde", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122875001" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/si/simdis.json b/data/software/si/simdis.json new file mode 100644 index 000000000000..c9c1706e01ba --- /dev/null +++ b/data/software/si/simdis.json @@ -0,0 +1,11 @@ +{ + "slug": "simdis", + "name": "SIMDIS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7390390" + ], + "developers": [ + "United States Naval Research Laboratory" + ] +} diff --git a/data/software/si/simeck.json b/data/software/si/simeck.json new file mode 100644 index 000000000000..ec3b8aa64caf --- /dev/null +++ b/data/software/si/simeck.json @@ -0,0 +1,8 @@ +{ + "slug": "simeck", + "name": "SIMECK", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123191660" + ] +} diff --git a/data/software/si/simevents.json b/data/software/si/simevents.json new file mode 100644 index 000000000000..592ec97c468e --- /dev/null +++ b/data/software/si/simevents.json @@ -0,0 +1,8 @@ +{ + "slug": "simevents", + "name": "SimEvents", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7517220" + ] +} diff --git a/data/software/si/simile-widgets-exhibit-3-0.json b/data/software/si/simile-widgets-exhibit-3-0.json new file mode 100644 index 000000000000..4282e7336d5a --- /dev/null +++ b/data/software/si/simile-widgets-exhibit-3-0.json @@ -0,0 +1,8 @@ +{ + "slug": "simile-widgets-exhibit-3-0", + "name": "SIMILE Widgets: Exhibit 3.0", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084555" + ] +} diff --git a/data/software/si/simile-widgets-gadget.json b/data/software/si/simile-widgets-gadget.json new file mode 100644 index 000000000000..5682df92f43f --- /dev/null +++ b/data/software/si/simile-widgets-gadget.json @@ -0,0 +1,8 @@ +{ + "slug": "simile-widgets-gadget", + "name": "SIMILE Widgets: Gadget", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084556" + ] +} diff --git a/data/software/si/simile-widgets-jstex.json b/data/software/si/simile-widgets-jstex.json new file mode 100644 index 000000000000..26b312f32e20 --- /dev/null +++ b/data/software/si/simile-widgets-jstex.json @@ -0,0 +1,8 @@ +{ + "slug": "simile-widgets-jstex", + "name": "SIMILE Widgets: JsTeX", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084557" + ] +} diff --git a/data/software/si/simile-widgets-timeline.json b/data/software/si/simile-widgets-timeline.json new file mode 100644 index 000000000000..b2c288488ea7 --- /dev/null +++ b/data/software/si/simile-widgets-timeline.json @@ -0,0 +1,8 @@ +{ + "slug": "simile-widgets-timeline", + "name": "SIMILE Widgets: Timeline", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084558" + ] +} diff --git a/data/software/si/simile-widgets-timeplot.json b/data/software/si/simile-widgets-timeplot.json new file mode 100644 index 000000000000..a46b33749035 --- /dev/null +++ b/data/software/si/simile-widgets-timeplot.json @@ -0,0 +1,8 @@ +{ + "slug": "simile-widgets-timeplot", + "name": "SIMILE Widgets: Timeplot", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084559" + ] +} diff --git a/data/software/si/simile-widgets-welkin.json b/data/software/si/simile-widgets-welkin.json new file mode 100644 index 000000000000..7a03315af106 --- /dev/null +++ b/data/software/si/simile-widgets-welkin.json @@ -0,0 +1,8 @@ +{ + "slug": "simile-widgets-welkin", + "name": "SIMILE Widgets: Welkin", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084560" + ] +} diff --git a/data/software/si/simion.json b/data/software/si/simion.json new file mode 100644 index 000000000000..0ee67284c285 --- /dev/null +++ b/data/software/si/simion.json @@ -0,0 +1,14 @@ +{ + "slug": "simion", + "name": "SIMION", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7390394" + ], + "operating_systems": [ + "Microsoft Windows" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/si/simmcast.json b/data/software/si/simmcast.json new file mode 100644 index 000000000000..b7baa32b233a --- /dev/null +++ b/data/software/si/simmcast.json @@ -0,0 +1,8 @@ +{ + "slug": "simmcast", + "name": "Simmcast", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17052240" + ] +} diff --git a/data/software/si/simmon.json b/data/software/si/simmon.json new file mode 100644 index 000000000000..7dd927b0cb2d --- /dev/null +++ b/data/software/si/simmon.json @@ -0,0 +1,8 @@ +{ + "slug": "simmon", + "name": "SIMMON", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7390395" + ] +} diff --git a/data/software/si/simons-basic.json b/data/software/si/simons-basic.json new file mode 100644 index 000000000000..a9e0272e1fb1 --- /dev/null +++ b/data/software/si/simons-basic.json @@ -0,0 +1,11 @@ +{ + "slug": "simons-basic", + "name": "Simons' BASIC", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q568887" + ], + "developers": [ + "Commodore International" + ] +} diff --git a/data/software/si/simosphere-ai.json b/data/software/si/simosphere-ai.json new file mode 100644 index 000000000000..cb4b80a3b422 --- /dev/null +++ b/data/software/si/simosphere-ai.json @@ -0,0 +1,14 @@ +{ + "slug": "simosphere-ai", + "name": "SIMOSphere AI", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140088287" + ], + "programming_languages": [ + "TypeScript" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/si/simp-le.json b/data/software/si/simp-le.json new file mode 100644 index 000000000000..10101b1e3189 --- /dev/null +++ b/data/software/si/simp-le.json @@ -0,0 +1,8 @@ +{ + "slug": "simp-le", + "name": "simp_le", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975469" + ] +} diff --git a/data/software/si/simpack.json b/data/software/si/simpack.json new file mode 100644 index 000000000000..6ff426c472fa --- /dev/null +++ b/data/software/si/simpack.json @@ -0,0 +1,8 @@ +{ + "slug": "simpack", + "name": "SIMPACK", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1315832" + ] +} diff --git a/data/software/si/simpeg.json b/data/software/si/simpeg.json new file mode 100644 index 000000000000..5bbd1d080381 --- /dev/null +++ b/data/software/si/simpeg.json @@ -0,0 +1,11 @@ +{ + "slug": "simpeg", + "name": "SimPEG", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124688498" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/si/simple-authorship-clustering.json b/data/software/si/simple-authorship-clustering.json new file mode 100644 index 000000000000..9ff8fda130f8 --- /dev/null +++ b/data/software/si/simple-authorship-clustering.json @@ -0,0 +1,8 @@ +{ + "slug": "simple-authorship-clustering", + "name": "Simple Authorship Clustering", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084561" + ] +} diff --git a/data/software/si/simple-dns-plus.json b/data/software/si/simple-dns-plus.json new file mode 100644 index 000000000000..ee09cb4dba16 --- /dev/null +++ b/data/software/si/simple-dns-plus.json @@ -0,0 +1,8 @@ +{ + "slug": "simple-dns-plus", + "name": "Simple DNS Plus", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7520660" + ] +} diff --git a/data/software/si/simple-dynamic-modelling.json b/data/software/si/simple-dynamic-modelling.json new file mode 100644 index 000000000000..d1857f79619a --- /dev/null +++ b/data/software/si/simple-dynamic-modelling.json @@ -0,0 +1,8 @@ +{ + "slug": "simple-dynamic-modelling", + "name": "Simple Dynamic Modelling", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084563" + ] +} diff --git a/data/software/si/simple-grid-protocol.json b/data/software/si/simple-grid-protocol.json new file mode 100644 index 000000000000..e0d43e585fd6 --- /dev/null +++ b/data/software/si/simple-grid-protocol.json @@ -0,0 +1,8 @@ +{ + "slug": "simple-grid-protocol", + "name": "Simple Grid Protocol", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7520677" + ] +} diff --git a/data/software/si/simple-object-database-access.json b/data/software/si/simple-object-database-access.json new file mode 100644 index 000000000000..786ab707ac3a --- /dev/null +++ b/data/software/si/simple-object-database-access.json @@ -0,0 +1,8 @@ +{ + "slug": "simple-object-database-access", + "name": "Simple Object Database Access", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16944834" + ] +} diff --git a/data/software/si/simple-sentiment-analysis.json b/data/software/si/simple-sentiment-analysis.json new file mode 100644 index 000000000000..edbe46e1843c --- /dev/null +++ b/data/software/si/simple-sentiment-analysis.json @@ -0,0 +1,8 @@ +{ + "slug": "simple-sentiment-analysis", + "name": "Simple Sentiment Analysis", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087717" + ] +} diff --git a/data/software/si/simple-tpm-pk11.json b/data/software/si/simple-tpm-pk11.json new file mode 100644 index 000000000000..6eb454985442 --- /dev/null +++ b/data/software/si/simple-tpm-pk11.json @@ -0,0 +1,8 @@ +{ + "slug": "simple-tpm-pk11", + "name": "simple-tpm-pk11", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975473" + ] +} diff --git a/data/software/si/simpleitk.json b/data/software/si/simpleitk.json new file mode 100644 index 000000000000..3e333e697ed7 --- /dev/null +++ b/data/software/si/simpleitk.json @@ -0,0 +1,11 @@ +{ + "slug": "simpleitk", + "name": "SimpleITK", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q55263982" + ], + "licenses": [ + "Apache License" + ] +} diff --git a/data/software/si/simplemind.json b/data/software/si/simplemind.json new file mode 100644 index 000000000000..2bc48ebf6d27 --- /dev/null +++ b/data/software/si/simplemind.json @@ -0,0 +1,8 @@ +{ + "slug": "simplemind", + "name": "SimpleMind", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106462389" + ] +} diff --git a/data/software/si/simplesize.json b/data/software/si/simplesize.json new file mode 100644 index 000000000000..4d00aae0ee52 --- /dev/null +++ b/data/software/si/simplesize.json @@ -0,0 +1,8 @@ +{ + "slug": "simplesize", + "name": "SimpleSize", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140051832" + ] +} diff --git a/data/software/si/simpleswitcher.json b/data/software/si/simpleswitcher.json new file mode 100644 index 000000000000..bf8d53a33fac --- /dev/null +++ b/data/software/si/simpleswitcher.json @@ -0,0 +1,14 @@ +{ + "slug": "simpleswitcher", + "name": "simpleswitcher", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975472" + ], + "developers": [ + "Sean Pringle" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/si/simpletct.json b/data/software/si/simpletct.json new file mode 100644 index 000000000000..2c1676405ac4 --- /dev/null +++ b/data/software/si/simpletct.json @@ -0,0 +1,8 @@ +{ + "slug": "simpletct", + "name": "SimpleTCT", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084564" + ] +} diff --git a/data/software/si/simplexnumerica.json b/data/software/si/simplexnumerica.json new file mode 100644 index 000000000000..8e0e40863f3f --- /dev/null +++ b/data/software/si/simplexnumerica.json @@ -0,0 +1,8 @@ +{ + "slug": "simplexnumerica", + "name": "SimplexNumerica", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q97889241" + ] +} diff --git a/data/software/si/simspark.json b/data/software/si/simspark.json new file mode 100644 index 000000000000..cd4351670519 --- /dev/null +++ b/data/software/si/simspark.json @@ -0,0 +1,8 @@ +{ + "slug": "simspark", + "name": "SimSpark", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7517240" + ] +} diff --git a/data/software/si/simul8.json b/data/software/si/simul8.json new file mode 100644 index 000000000000..39dd2cb2dd78 --- /dev/null +++ b/data/software/si/simul8.json @@ -0,0 +1,11 @@ +{ + "slug": "simul8", + "name": "Simul8", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7521279" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/si/simulationx.json b/data/software/si/simulationx.json new file mode 100644 index 000000000000..c2453817ddf9 --- /dev/null +++ b/data/software/si/simulationx.json @@ -0,0 +1,11 @@ +{ + "slug": "simulationx", + "name": "SimulationX", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q575269" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/si/simulia.json b/data/software/si/simulia.json new file mode 100644 index 000000000000..331a3ef7f4b5 --- /dev/null +++ b/data/software/si/simulia.json @@ -0,0 +1,14 @@ +{ + "slug": "simulia", + "name": "SIMULIA", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3459626" + ], + "developers": [ + "Dassault Systèmes" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/si/simulide-circuit-simulator.json b/data/software/si/simulide-circuit-simulator.json new file mode 100644 index 000000000000..b2ef6ba9df09 --- /dev/null +++ b/data/software/si/simulide-circuit-simulator.json @@ -0,0 +1,8 @@ +{ + "slug": "simulide-circuit-simulator", + "name": "SimulIDE Circuit Simulator", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136545864" + ] +} diff --git a/data/software/si/simulink.json b/data/software/si/simulink.json new file mode 100644 index 000000000000..c96715689a9a --- /dev/null +++ b/data/software/si/simulink.json @@ -0,0 +1,15 @@ +{ + "slug": "simulink", + "name": "Simulink", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q606550" + ], + "developers": [ + "MathWorks" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/software/si/simvestrix.json b/data/software/si/simvestrix.json new file mode 100644 index 000000000000..8f57304067db --- /dev/null +++ b/data/software/si/simvestrix.json @@ -0,0 +1,14 @@ +{ + "slug": "simvestrix", + "name": "Simvestrix", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139700593" + ], + "developers": [ + "Simvestrix" + ], + "operating_systems": [ + "iOS" + ] +} diff --git a/data/software/si/sinespace.json b/data/software/si/sinespace.json new file mode 100644 index 000000000000..0cbca0807066 --- /dev/null +++ b/data/software/si/sinespace.json @@ -0,0 +1,8 @@ +{ + "slug": "sinespace", + "name": "Sinespace", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60750193" + ] +} diff --git a/data/software/si/sinfo.json b/data/software/si/sinfo.json new file mode 100644 index 000000000000..9d1e2eda6bb3 --- /dev/null +++ b/data/software/si/sinfo.json @@ -0,0 +1,8 @@ +{ + "slug": "sinfo", + "name": "sinfo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62865567" + ] +} diff --git a/data/software/si/singingcoach.json b/data/software/si/singingcoach.json new file mode 100644 index 000000000000..ef5cf2c5460a --- /dev/null +++ b/data/software/si/singingcoach.json @@ -0,0 +1,8 @@ +{ + "slug": "singingcoach", + "name": "SingingCoach", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7523533" + ] +} diff --git a/data/software/si/single-table-inheritance.json b/data/software/si/single-table-inheritance.json new file mode 100644 index 000000000000..a3ac5b32926a --- /dev/null +++ b/data/software/si/single-table-inheritance.json @@ -0,0 +1,8 @@ +{ + "slug": "single-table-inheritance", + "name": "Single Table Inheritance", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7523894" + ] +} diff --git a/data/software/si/sinit.json b/data/software/si/sinit.json new file mode 100644 index 000000000000..efe72831a4f3 --- /dev/null +++ b/data/software/si/sinit.json @@ -0,0 +1,14 @@ +{ + "slug": "sinit", + "name": "sinit", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25389964" + ], + "developers": [ + "suckless.org" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/si/sinqlo.json b/data/software/si/sinqlo.json new file mode 100644 index 000000000000..d866ee7d556c --- /dev/null +++ b/data/software/si/sinqlo.json @@ -0,0 +1,8 @@ +{ + "slug": "sinqlo", + "name": "Sinqlo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138856104" + ] +} diff --git a/data/software/si/sintext.json b/data/software/si/sintext.json new file mode 100644 index 000000000000..8dce80d3830a --- /dev/null +++ b/data/software/si/sintext.json @@ -0,0 +1,12 @@ +{ + "slug": "sintext", + "name": "SINTEXT", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125510291" + ], + "release_date": "1993-01-01", + "operating_systems": [ + "DOS" + ] +} diff --git a/data/software/si/sinusbot.json b/data/software/si/sinusbot.json new file mode 100644 index 000000000000..098701a4313f --- /dev/null +++ b/data/software/si/sinusbot.json @@ -0,0 +1,11 @@ +{ + "slug": "sinusbot", + "name": "SinusBot", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q29364564" + ], + "programming_languages": [ + "Go" + ] +} diff --git a/data/software/si/sipnms.json b/data/software/si/sipnms.json new file mode 100644 index 000000000000..bff532a2ce13 --- /dev/null +++ b/data/software/si/sipnms.json @@ -0,0 +1,8 @@ +{ + "slug": "sipnms", + "name": "Sipnms", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7525809" + ] +} diff --git a/data/software/si/sipsak.json b/data/software/si/sipsak.json new file mode 100644 index 000000000000..9c1e485f9f0e --- /dev/null +++ b/data/software/si/sipsak.json @@ -0,0 +1,8 @@ +{ + "slug": "sipsak", + "name": "sipsak", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62865542" + ] +} diff --git a/data/software/si/sirion.json b/data/software/si/sirion.json new file mode 100644 index 000000000000..21bcc748f313 --- /dev/null +++ b/data/software/si/sirion.json @@ -0,0 +1,8 @@ +{ + "slug": "sirion", + "name": "Sirion", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139759744" + ] +} diff --git a/data/software/si/sirius-visualization-software.json b/data/software/si/sirius-visualization-software.json new file mode 100644 index 000000000000..f1aed2c5f721 --- /dev/null +++ b/data/software/si/sirius-visualization-software.json @@ -0,0 +1,11 @@ +{ + "slug": "sirius-visualization-software", + "name": "Sirius visualization software", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7530427" + ], + "developers": [ + "San Diego Supercomputer Center" + ] +} diff --git a/data/software/si/sisnet.json b/data/software/si/sisnet.json new file mode 100644 index 000000000000..8d5ea8ad34e3 --- /dev/null +++ b/data/software/si/sisnet.json @@ -0,0 +1,8 @@ +{ + "slug": "sisnet", + "name": "sisNET", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117803379" + ] +} diff --git a/data/software/si/sistema.json b/data/software/si/sistema.json new file mode 100644 index 000000000000..aa58d61b84e7 --- /dev/null +++ b/data/software/si/sistema.json @@ -0,0 +1,8 @@ +{ + "slug": "sistema", + "name": "SISTEMA", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q128800330" + ] +} diff --git a/data/software/si/sisu.json b/data/software/si/sisu.json new file mode 100644 index 000000000000..f83b66fb0039 --- /dev/null +++ b/data/software/si/sisu.json @@ -0,0 +1,12 @@ +{ + "slug": "sisu", + "name": "SiSU", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7506336" + ], + "release_date": "2005-01-05", + "operating_systems": [ + "Unix-like operating system" + ] +} diff --git a/data/software/si/site-recorder.json b/data/software/si/site-recorder.json new file mode 100644 index 000000000000..7657897d462c --- /dev/null +++ b/data/software/si/site-recorder.json @@ -0,0 +1,8 @@ +{ + "slug": "site-recorder", + "name": "Site Recorder", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7531761" + ] +} diff --git a/data/software/si/sitecopy.json b/data/software/si/sitecopy.json new file mode 100644 index 000000000000..771c093fda71 --- /dev/null +++ b/data/software/si/sitecopy.json @@ -0,0 +1,8 @@ +{ + "slug": "sitecopy", + "name": "sitecopy", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62865531" + ] +} diff --git a/data/software/si/sitecore-commerce-server.json b/data/software/si/sitecore-commerce-server.json new file mode 100644 index 000000000000..a82ceb3d273e --- /dev/null +++ b/data/software/si/sitecore-commerce-server.json @@ -0,0 +1,8 @@ +{ + "slug": "sitecore-commerce-server", + "name": "Sitecore Commerce Server", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18149375" + ] +} diff --git a/data/software/si/sitecrawler.json b/data/software/si/sitecrawler.json new file mode 100644 index 000000000000..fbe0cd687474 --- /dev/null +++ b/data/software/si/sitecrawler.json @@ -0,0 +1,8 @@ +{ + "slug": "sitecrawler", + "name": "SiteCrawler", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084566" + ] +} diff --git a/data/software/si/sitekiosk.json b/data/software/si/sitekiosk.json new file mode 100644 index 000000000000..f340107e7127 --- /dev/null +++ b/data/software/si/sitekiosk.json @@ -0,0 +1,8 @@ +{ + "slug": "sitekiosk", + "name": "SiteKiosk", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2290497" + ] +} diff --git a/data/software/si/sitepal.json b/data/software/si/sitepal.json new file mode 100644 index 000000000000..7e808ffcb1e6 --- /dev/null +++ b/data/software/si/sitepal.json @@ -0,0 +1,8 @@ +{ + "slug": "sitepal", + "name": "SitePal", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7531744" + ] +} diff --git a/data/software/si/sitesucker.json b/data/software/si/sitesucker.json new file mode 100644 index 000000000000..69a47163bc9e --- /dev/null +++ b/data/software/si/sitesucker.json @@ -0,0 +1,8 @@ +{ + "slug": "sitesucker", + "name": "SiteSucker", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084567" + ] +} diff --git a/data/software/si/sitsense.json b/data/software/si/sitsense.json new file mode 100644 index 000000000000..2ec199bba1aa --- /dev/null +++ b/data/software/si/sitsense.json @@ -0,0 +1,11 @@ +{ + "slug": "sitsense", + "name": "SitSense", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138565082" + ], + "programming_languages": [ + "TypeScript" + ] +} diff --git a/data/software/si/siv-system-information-viewer.json b/data/software/si/siv-system-information-viewer.json new file mode 100644 index 000000000000..ab3261107cde --- /dev/null +++ b/data/software/si/siv-system-information-viewer.json @@ -0,0 +1,14 @@ +{ + "slug": "siv-system-information-viewer", + "name": "SIV - System Information Viewer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136288710" + ], + "operating_systems": [ + "Microsoft Windows" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/si/sivi-ai.json b/data/software/si/sivi-ai.json new file mode 100644 index 000000000000..aad3727b6011 --- /dev/null +++ b/data/software/si/sivi-ai.json @@ -0,0 +1,11 @@ +{ + "slug": "sivi-ai", + "name": "Sivi AI", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139503656" + ], + "developers": [ + "HelloSivi Software Labs" + ] +} diff --git a/data/software/si/sixpack.json b/data/software/si/sixpack.json new file mode 100644 index 000000000000..fe3de5df87ad --- /dev/null +++ b/data/software/si/sixpack.json @@ -0,0 +1,14 @@ +{ + "slug": "sixpack", + "name": "Sixpack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105748775" + ], + "operating_systems": [ + "Microsoft Windows" + ], + "licenses": [ + "GNU General Public License, version 2.0" + ] +} diff --git a/data/software/sk/skalli.json b/data/software/sk/skalli.json new file mode 100644 index 000000000000..98825b6ca429 --- /dev/null +++ b/data/software/sk/skalli.json @@ -0,0 +1,8 @@ +{ + "slug": "skalli", + "name": "Skalli", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76177714" + ] +} diff --git a/data/software/sk/skanpage.json b/data/software/sk/skanpage.json new file mode 100644 index 000000000000..be867b9eadec --- /dev/null +++ b/data/software/sk/skanpage.json @@ -0,0 +1,8 @@ +{ + "slug": "skanpage", + "name": "skanpage", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125872716" + ] +} diff --git a/data/software/sk/skeedcast.json b/data/software/sk/skeedcast.json new file mode 100644 index 000000000000..5632a306de65 --- /dev/null +++ b/data/software/sk/skeedcast.json @@ -0,0 +1,8 @@ +{ + "slug": "skeedcast", + "name": "SkeedCast", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7534257" + ] +} diff --git a/data/software/sk/sketch-engine.json b/data/software/sk/sketch-engine.json new file mode 100644 index 000000000000..df06172c395f --- /dev/null +++ b/data/software/sk/sketch-engine.json @@ -0,0 +1,8 @@ +{ + "slug": "sketch-engine", + "name": "Sketch Engine", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25048081" + ] +} diff --git a/data/software/sk/sketch2code.json b/data/software/sk/sketch2code.json new file mode 100644 index 000000000000..ee4cc8fb3652 --- /dev/null +++ b/data/software/sk/sketch2code.json @@ -0,0 +1,8 @@ +{ + "slug": "sketch2code", + "name": "Sketch2Code", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084568" + ] +} diff --git a/data/software/sk/sketchbook-express.json b/data/software/sk/sketchbook-express.json new file mode 100644 index 000000000000..39a1b37852e8 --- /dev/null +++ b/data/software/sk/sketchbook-express.json @@ -0,0 +1,8 @@ +{ + "slug": "sketchbook-express", + "name": "SketchBook Express", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7534714" + ] +} diff --git a/data/software/sk/sketchbook-pro.json b/data/software/sk/sketchbook-pro.json new file mode 100644 index 000000000000..a0a4b3bd675f --- /dev/null +++ b/data/software/sk/sketchbook-pro.json @@ -0,0 +1,8 @@ +{ + "slug": "sketchbook-pro", + "name": "Sketchbook Pro", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084569" + ] +} diff --git a/data/software/sk/sketchbook.json b/data/software/sk/sketchbook.json new file mode 100644 index 000000000000..b7c7ffc556ca --- /dev/null +++ b/data/software/sk/sketchbook.json @@ -0,0 +1,11 @@ +{ + "slug": "sketchbook", + "name": "Sketchbook", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4826241" + ], + "developers": [ + "Autodesk" + ] +} diff --git a/data/software/sk/skiffos.json b/data/software/sk/skiffos.json new file mode 100644 index 000000000000..6a4f0b1d9710 --- /dev/null +++ b/data/software/sk/skiffos.json @@ -0,0 +1,11 @@ +{ + "slug": "skiffos", + "name": "SkiffOS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127474946" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/sk/skifta.json b/data/software/sk/skifta.json new file mode 100644 index 000000000000..441d9912bee3 --- /dev/null +++ b/data/software/sk/skifta.json @@ -0,0 +1,8 @@ +{ + "slug": "skifta", + "name": "Skifta", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7535132" + ] +} diff --git a/data/software/sk/skill-health.json b/data/software/sk/skill-health.json new file mode 100644 index 000000000000..b358e40ccbb1 --- /dev/null +++ b/data/software/sk/skill-health.json @@ -0,0 +1,15 @@ +{ + "slug": "skill-health", + "name": "skill-health", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140448381" + ], + "release_date": "2026-06-30", + "developers": [ + "Tatsuya Shimomoto" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/sk/skillvee.json b/data/software/sk/skillvee.json new file mode 100644 index 000000000000..b7dbd951a265 --- /dev/null +++ b/data/software/sk/skillvee.json @@ -0,0 +1,11 @@ +{ + "slug": "skillvee", + "name": "Skillvee", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136906060" + ], + "programming_languages": [ + "TypeScript" + ] +} diff --git a/data/software/sk/skinroute.json b/data/software/sk/skinroute.json new file mode 100644 index 000000000000..5febe6c2795c --- /dev/null +++ b/data/software/sk/skinroute.json @@ -0,0 +1,8 @@ +{ + "slug": "skinroute", + "name": "SKINROUTE", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139488460" + ] +} diff --git a/data/software/sk/skitch.json b/data/software/sk/skitch.json new file mode 100644 index 000000000000..ca96ea06ce72 --- /dev/null +++ b/data/software/sk/skitch.json @@ -0,0 +1,8 @@ +{ + "slug": "skitch", + "name": "Skitch", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084570" + ] +} diff --git a/data/software/sk/skohub.json b/data/software/sk/skohub.json new file mode 100644 index 000000000000..4dbf0838d011 --- /dev/null +++ b/data/software/sk/skohub.json @@ -0,0 +1,11 @@ +{ + "slug": "skohub", + "name": "SkoHub", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q129485888" + ], + "licenses": [ + "Apache Software License 2.0" + ] +} diff --git a/data/software/sk/skoog.json b/data/software/sk/skoog.json new file mode 100644 index 000000000000..9e085b5daa17 --- /dev/null +++ b/data/software/sk/skoog.json @@ -0,0 +1,9 @@ +{ + "slug": "skoog", + "name": "Skoog", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7536245" + ], + "release_date": "2008-01-01" +} diff --git a/data/software/sk/skoosh.json b/data/software/sk/skoosh.json new file mode 100644 index 000000000000..f916020fde32 --- /dev/null +++ b/data/software/sk/skoosh.json @@ -0,0 +1,8 @@ +{ + "slug": "skoosh", + "name": "skoosh", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63064972" + ] +} diff --git a/data/software/sk/skoove.json b/data/software/sk/skoove.json new file mode 100644 index 000000000000..0f5815c29016 --- /dev/null +++ b/data/software/sk/skoove.json @@ -0,0 +1,8 @@ +{ + "slug": "skoove", + "name": "Skoove", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127040020" + ] +} diff --git a/data/software/sk/skopeo.json b/data/software/sk/skopeo.json new file mode 100644 index 000000000000..a3ec8e9bef50 --- /dev/null +++ b/data/software/sk/skopeo.json @@ -0,0 +1,8 @@ +{ + "slug": "skopeo", + "name": "skopeo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60916625" + ] +} diff --git a/data/software/sk/skosify.json b/data/software/sk/skosify.json new file mode 100644 index 000000000000..0749f7efe564 --- /dev/null +++ b/data/software/sk/skosify.json @@ -0,0 +1,8 @@ +{ + "slug": "skosify", + "name": "Skosify", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110689184" + ] +} diff --git a/data/software/sk/skrifa.json b/data/software/sk/skrifa.json new file mode 100644 index 000000000000..c73767f0e41f --- /dev/null +++ b/data/software/sk/skrifa.json @@ -0,0 +1,8 @@ +{ + "slug": "skrifa", + "name": "Skrifa", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q50557294" + ] +} diff --git a/data/software/sk/skulabs.json b/data/software/sk/skulabs.json new file mode 100644 index 000000000000..c2932ea1035f --- /dev/null +++ b/data/software/sk/skulabs.json @@ -0,0 +1,8 @@ +{ + "slug": "skulabs", + "name": "SKULabs", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q61695256" + ] +} diff --git a/data/software/sk/sky-hd.json b/data/software/sk/sky-hd.json new file mode 100644 index 000000000000..d48172952493 --- /dev/null +++ b/data/software/sk/sky-hd.json @@ -0,0 +1,11 @@ +{ + "slug": "sky-hd", + "name": "Sky+ HD", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7537135" + ], + "developers": [ + "Sky Group" + ] +} diff --git a/data/software/sk/sky-map.json b/data/software/sk/sky-map.json new file mode 100644 index 000000000000..e5b95a17e31f --- /dev/null +++ b/data/software/sk/sky-map.json @@ -0,0 +1,14 @@ +{ + "slug": "sky-map", + "name": "Sky Map", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16927806" + ], + "developers": [ + "Google" + ], + "licenses": [ + "Apache License" + ] +} diff --git a/data/software/sk/skybot-scheduler.json b/data/software/sk/skybot-scheduler.json new file mode 100644 index 000000000000..8ea818bc737e --- /dev/null +++ b/data/software/sk/skybot-scheduler.json @@ -0,0 +1,8 @@ +{ + "slug": "skybot-scheduler", + "name": "Skybot Scheduler", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7537602" + ] +} diff --git a/data/software/sk/skyciv.json b/data/software/sk/skyciv.json new file mode 100644 index 000000000000..828e94371546 --- /dev/null +++ b/data/software/sk/skyciv.json @@ -0,0 +1,12 @@ +{ + "slug": "skyciv", + "name": "SkyCiv", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q82183993" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/software/sk/skyfire.json b/data/software/sk/skyfire.json new file mode 100644 index 000000000000..fd876d059b7e --- /dev/null +++ b/data/software/sk/skyfire.json @@ -0,0 +1,8 @@ +{ + "slug": "skyfire", + "name": "Skyfire", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1586208" + ] +} diff --git a/data/software/sk/skyglobe.json b/data/software/sk/skyglobe.json new file mode 100644 index 000000000000..bab07c07d98c --- /dev/null +++ b/data/software/sk/skyglobe.json @@ -0,0 +1,14 @@ +{ + "slug": "skyglobe", + "name": "Skyglobe", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q371671" + ], + "operating_systems": [ + "Microsoft Windows" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/sk/skygrabber.json b/data/software/sk/skygrabber.json new file mode 100644 index 000000000000..684db665fb1f --- /dev/null +++ b/data/software/sk/skygrabber.json @@ -0,0 +1,8 @@ +{ + "slug": "skygrabber", + "name": "SkyGrabber", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1425255" + ] +} diff --git a/data/software/sk/skyline-q127485529.json b/data/software/sk/skyline-q127485529.json new file mode 100644 index 000000000000..96655f7658c2 --- /dev/null +++ b/data/software/sk/skyline-q127485529.json @@ -0,0 +1,11 @@ +{ + "slug": "skyline-q127485529", + "name": "skyline", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127485529" + ], + "licenses": [ + "Apache Software License 2.0" + ] +} diff --git a/data/software/sk/skyline.json b/data/software/sk/skyline.json new file mode 100644 index 000000000000..1c80603497c6 --- /dev/null +++ b/data/software/sk/skyline.json @@ -0,0 +1,17 @@ +{ + "slug": "skyline", + "name": "Skyline", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q48989793" + ], + "developers": [ + "University of Washington" + ], + "operating_systems": [ + "Microsoft Windows" + ], + "licenses": [ + "Apache Software License 2.0" + ] +} diff --git a/data/software/sk/skymotion.json b/data/software/sk/skymotion.json new file mode 100644 index 000000000000..4c8b8a48c257 --- /dev/null +++ b/data/software/sk/skymotion.json @@ -0,0 +1,11 @@ +{ + "slug": "skymotion", + "name": "Skymotion", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7537945" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/sk/skype-for-business-online.json b/data/software/sk/skype-for-business-online.json new file mode 100644 index 000000000000..8a1a84f9505c --- /dev/null +++ b/data/software/sk/skype-for-business-online.json @@ -0,0 +1,8 @@ +{ + "slug": "skype-for-business-online", + "name": "Skype for Business Online", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17190333" + ] +} diff --git a/data/software/sk/skype.json b/data/software/sk/skype.json new file mode 100644 index 000000000000..030b6c16bd89 --- /dev/null +++ b/data/software/sk/skype.json @@ -0,0 +1,33 @@ +{ + "slug": "skype", + "name": "Skype", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q40984" + ], + "release_date": "2003-08-29", + "developers": [ + "Skype Technologies" + ], + "operating_systems": [ + "webOS", + "iOS", + "Windows Phone", + "BlackBerry OS", + "Symbian", + "macOS", + "Microsoft Windows" + ], + "programming_languages": [ + "Objective-C", + "Delphi", + "Object Pascal" + ], + "licenses": [ + "proprietary license" + ], + "genres": [ + "Voice over IP", + "instant messaging client" + ] +} diff --git a/data/software/sk/skyscraper-simulator.json b/data/software/sk/skyscraper-simulator.json new file mode 100644 index 000000000000..bc04eb99018b --- /dev/null +++ b/data/software/sk/skyscraper-simulator.json @@ -0,0 +1,15 @@ +{ + "slug": "skyscraper-simulator", + "name": "Skyscraper Simulator", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7538010" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "licenses": [ + "GNU General Public License, version 2.0" + ] +} diff --git a/data/software/sl/slackbridge.json b/data/software/sl/slackbridge.json new file mode 100644 index 000000000000..1cc3efe88bd4 --- /dev/null +++ b/data/software/sl/slackbridge.json @@ -0,0 +1,8 @@ +{ + "slug": "slackbridge", + "name": "SlackBridge", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139976510" + ] +} diff --git a/data/software/sl/slapd.json b/data/software/sl/slapd.json new file mode 100644 index 000000000000..a36a08bdc7f7 --- /dev/null +++ b/data/software/sl/slapd.json @@ -0,0 +1,8 @@ +{ + "slug": "slapd", + "name": "Slapd", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7538713" + ] +} diff --git a/data/software/sl/sleepyhead.json b/data/software/sl/sleepyhead.json new file mode 100644 index 000000000000..9a5dcb020333 --- /dev/null +++ b/data/software/sl/sleepyhead.json @@ -0,0 +1,8 @@ +{ + "slug": "sleepyhead", + "name": "sleepyhead", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975476" + ] +} diff --git a/data/software/sl/sleuth.json b/data/software/sl/sleuth.json new file mode 100644 index 000000000000..15fab6b51c14 --- /dev/null +++ b/data/software/sl/sleuth.json @@ -0,0 +1,11 @@ +{ + "slug": "sleuth", + "name": "sleuth", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122830809" + ], + "licenses": [ + "GNU General Public License, version 3.0" + ] +} diff --git a/data/software/sl/slide-effect.json b/data/software/sl/slide-effect.json new file mode 100644 index 000000000000..72f40738170c --- /dev/null +++ b/data/software/sl/slide-effect.json @@ -0,0 +1,11 @@ +{ + "slug": "slide-effect", + "name": "Slide Effect", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7540315" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/sl/slidea.json b/data/software/sl/slidea.json new file mode 100644 index 000000000000..63c4304dc2a8 --- /dev/null +++ b/data/software/sl/slidea.json @@ -0,0 +1,8 @@ +{ + "slug": "slidea", + "name": "Slidea", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136430835" + ] +} diff --git a/data/software/sl/sliderocket.json b/data/software/sl/sliderocket.json new file mode 100644 index 000000000000..8cd31164cf40 --- /dev/null +++ b/data/software/sl/sliderocket.json @@ -0,0 +1,11 @@ +{ + "slug": "sliderocket", + "name": "SlideRocket", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17081402" + ], + "developers": [ + "ClearSlide, Inc." + ] +} diff --git a/data/software/sl/slidewiki.json b/data/software/sl/slidewiki.json new file mode 100644 index 000000000000..ca8617e47deb --- /dev/null +++ b/data/software/sl/slidewiki.json @@ -0,0 +1,11 @@ +{ + "slug": "slidewiki", + "name": "SlideWiki", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6837796" + ], + "developers": [ + "Leipzig University" + ] +} diff --git a/data/software/sl/slinca-home.json b/data/software/sl/slinca-home.json new file mode 100644 index 000000000000..3ae06059e099 --- /dev/null +++ b/data/software/sl/slinca-home.json @@ -0,0 +1,11 @@ +{ + "slug": "slinca-home", + "name": "SLinCA@Home", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4048797" + ], + "developers": [ + "G. V. Kurdyumov Institute for Metal Physics of the National Academy of Sciences of Ukraine" + ] +} diff --git a/data/software/sl/slirp.json b/data/software/sl/slirp.json new file mode 100644 index 000000000000..588e4802fd20 --- /dev/null +++ b/data/software/sl/slirp.json @@ -0,0 +1,15 @@ +{ + "slug": "slirp", + "name": "Slirp", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7540965" + ], + "release_date": "1995-03-30", + "operating_systems": [ + "Unix-like operating system" + ], + "licenses": [ + "permissive free software license" + ] +} diff --git a/data/software/sl/sloth-app.json b/data/software/sl/sloth-app.json new file mode 100644 index 000000000000..73224eab097a --- /dev/null +++ b/data/software/sl/sloth-app.json @@ -0,0 +1,11 @@ +{ + "slug": "sloth-app", + "name": "Sloth (app)", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136520773" + ], + "licenses": [ + "3-clause BSD License" + ] +} diff --git a/data/software/sl/slotomica.json b/data/software/sl/slotomica.json new file mode 100644 index 000000000000..f601efb886fa --- /dev/null +++ b/data/software/sl/slotomica.json @@ -0,0 +1,8 @@ +{ + "slug": "slotomica", + "name": "Slotomica", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140311241" + ] +} diff --git a/data/software/sl/sloveni-ina-2-0-journal.json b/data/software/sl/sloveni-ina-2-0-journal.json new file mode 100644 index 000000000000..47c99267c495 --- /dev/null +++ b/data/software/sl/sloveni-ina-2-0-journal.json @@ -0,0 +1,8 @@ +{ + "slug": "sloveni-ina-2-0-journal", + "name": "Sloveniščina 2.0 - Journal", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084571" + ] +} diff --git a/data/software/sl/slowdown-utility.json b/data/software/sl/slowdown-utility.json new file mode 100644 index 000000000000..817f60043984 --- /dev/null +++ b/data/software/sl/slowdown-utility.json @@ -0,0 +1,8 @@ +{ + "slug": "slowdown-utility", + "name": "slowdown utility", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2297672" + ] +} diff --git a/data/software/sl/slowdroid.json b/data/software/sl/slowdroid.json new file mode 100644 index 000000000000..e2b07c4eb16c --- /dev/null +++ b/data/software/sl/slowdroid.json @@ -0,0 +1,12 @@ +{ + "slug": "slowdroid", + "name": "Slowdroid", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q21041356" + ], + "release_date": "2013-01-01", + "programming_languages": [ + "Java" + ] +} diff --git a/data/software/sl/slowloris.json b/data/software/sl/slowloris.json new file mode 100644 index 000000000000..e4a7f4049928 --- /dev/null +++ b/data/software/sl/slowloris.json @@ -0,0 +1,9 @@ +{ + "slug": "slowloris", + "name": "Slowloris", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1848546" + ], + "release_date": "2009-01-01" +} diff --git a/data/software/sl/slowly.json b/data/software/sl/slowly.json new file mode 100644 index 000000000000..f07122fc0c90 --- /dev/null +++ b/data/software/sl/slowly.json @@ -0,0 +1,9 @@ +{ + "slug": "slowly", + "name": "Slowly", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q98139720" + ], + "release_date": "2017-02-14" +} diff --git a/data/software/sl/slrn.json b/data/software/sl/slrn.json new file mode 100644 index 000000000000..96f8b32ec4ef --- /dev/null +++ b/data/software/sl/slrn.json @@ -0,0 +1,8 @@ +{ + "slug": "slrn", + "name": "Slrn", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q178589" + ] +} diff --git a/data/software/sl/slugs.json b/data/software/sl/slugs.json new file mode 100644 index 000000000000..8a364ce03bee --- /dev/null +++ b/data/software/sl/slugs.json @@ -0,0 +1,8 @@ +{ + "slug": "slugs", + "name": "Slugs", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17081447" + ] +} diff --git a/data/software/sm/sm-town-meta-passport.json b/data/software/sm/sm-town-meta-passport.json new file mode 100644 index 000000000000..4a94c6ad1143 --- /dev/null +++ b/data/software/sm/sm-town-meta-passport.json @@ -0,0 +1,8 @@ +{ + "slug": "sm-town-meta-passport", + "name": "SM Town Meta-Passport", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113954401" + ] +} diff --git a/data/software/sm/smaart.json b/data/software/sm/smaart.json new file mode 100644 index 000000000000..4ecc6686d23a --- /dev/null +++ b/data/software/sm/smaart.json @@ -0,0 +1,8 @@ +{ + "slug": "smaart", + "name": "Smaart", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6159229" + ] +} diff --git a/data/software/sm/smadav.json b/data/software/sm/smadav.json new file mode 100644 index 000000000000..e96907a6b716 --- /dev/null +++ b/data/software/sm/smadav.json @@ -0,0 +1,8 @@ +{ + "slug": "smadav", + "name": "Smadav", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q12515692" + ] +} diff --git a/data/software/sm/small-http-server.json b/data/software/sm/small-http-server.json new file mode 100644 index 000000000000..482ca2ea131d --- /dev/null +++ b/data/software/sm/small-http-server.json @@ -0,0 +1,8 @@ +{ + "slug": "small-http-server", + "name": "Small HTTP Server", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4049632" + ] +} diff --git a/data/software/sm/small-world-2.json b/data/software/sm/small-world-2.json new file mode 100644 index 000000000000..779ec19ad118 --- /dev/null +++ b/data/software/sm/small-world-2.json @@ -0,0 +1,13 @@ +{ + "slug": "small-world-2", + "name": "Small World 2", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111660699" + ], + "release_date": "2013-12-11", + "genres": [ + "strategy video game", + "casual game" + ] +} diff --git a/data/software/sm/smallpdf-online-pdf-tools.json b/data/software/sm/smallpdf-online-pdf-tools.json new file mode 100644 index 000000000000..d5324c64fbed --- /dev/null +++ b/data/software/sm/smallpdf-online-pdf-tools.json @@ -0,0 +1,8 @@ +{ + "slug": "smallpdf-online-pdf-tools", + "name": "Smallpdf- Online PDF Tools", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084572" + ] +} diff --git a/data/software/sm/smallworld.json b/data/software/sm/smallworld.json new file mode 100644 index 000000000000..fd2c17189827 --- /dev/null +++ b/data/software/sm/smallworld.json @@ -0,0 +1,8 @@ +{ + "slug": "smallworld", + "name": "Smallworld", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1376225" + ] +} diff --git a/data/software/sm/smart-admin.json b/data/software/sm/smart-admin.json new file mode 100644 index 000000000000..bffb190a9c77 --- /dev/null +++ b/data/software/sm/smart-admin.json @@ -0,0 +1,11 @@ +{ + "slug": "smart-admin", + "name": "Smart Admin", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139382357" + ], + "developers": [ + "Smart InsurTech AG" + ] +} diff --git a/data/software/sm/smart-check.json b/data/software/sm/smart-check.json new file mode 100644 index 000000000000..7f45e4faa59f --- /dev/null +++ b/data/software/sm/smart-check.json @@ -0,0 +1,11 @@ +{ + "slug": "smart-check", + "name": "Smart Check", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139382932" + ], + "developers": [ + "Smart InsurTech AG" + ] +} diff --git a/data/software/sm/smart-compare.json b/data/software/sm/smart-compare.json new file mode 100644 index 000000000000..d36e9c7b3a59 --- /dev/null +++ b/data/software/sm/smart-compare.json @@ -0,0 +1,11 @@ +{ + "slug": "smart-compare", + "name": "Smart Compare", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139382399" + ], + "developers": [ + "Smart InsurTech AG" + ] +} diff --git a/data/software/sm/smart-consult.json b/data/software/sm/smart-consult.json new file mode 100644 index 000000000000..d43c537dbe88 --- /dev/null +++ b/data/software/sm/smart-consult.json @@ -0,0 +1,11 @@ +{ + "slug": "smart-consult", + "name": "Smart Consult", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139382955" + ], + "developers": [ + "Smart InsurTech AG" + ] +} diff --git a/data/software/sm/smart-gevo.json b/data/software/sm/smart-gevo.json new file mode 100644 index 000000000000..08dc5bc9160b --- /dev/null +++ b/data/software/sm/smart-gevo.json @@ -0,0 +1,11 @@ +{ + "slug": "smart-gevo", + "name": "Smart Gevo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139382461" + ], + "developers": [ + "Smart InsurTech AG" + ] +} diff --git a/data/software/sm/smart-idreader.json b/data/software/sm/smart-idreader.json new file mode 100644 index 000000000000..b67f9d4f5981 --- /dev/null +++ b/data/software/sm/smart-idreader.json @@ -0,0 +1,8 @@ +{ + "slug": "smart-idreader", + "name": "Smart IDReader", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28669427" + ] +} diff --git a/data/software/sm/smart-information-retrieval-system.json b/data/software/sm/smart-information-retrieval-system.json new file mode 100644 index 000000000000..a2bf4a138b1d --- /dev/null +++ b/data/software/sm/smart-information-retrieval-system.json @@ -0,0 +1,8 @@ +{ + "slug": "smart-information-retrieval-system", + "name": "SMART Information Retrieval System", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7391070" + ] +} diff --git a/data/software/sm/smart-insur.json b/data/software/sm/smart-insur.json new file mode 100644 index 000000000000..52b455de38c3 --- /dev/null +++ b/data/software/sm/smart-insur.json @@ -0,0 +1,11 @@ +{ + "slug": "smart-insur", + "name": "Smart Insur", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139382321" + ], + "developers": [ + "Smart InsurTech AG" + ] +} diff --git a/data/software/sm/smart-live-rebuild.json b/data/software/sm/smart-live-rebuild.json new file mode 100644 index 000000000000..13cb5d025384 --- /dev/null +++ b/data/software/sm/smart-live-rebuild.json @@ -0,0 +1,8 @@ +{ + "slug": "smart-live-rebuild", + "name": "smart-live-rebuild", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975478" + ] +} diff --git a/data/software/sm/smart-switch.json b/data/software/sm/smart-switch.json new file mode 100644 index 000000000000..77ea2a18a092 --- /dev/null +++ b/data/software/sm/smart-switch.json @@ -0,0 +1,11 @@ +{ + "slug": "smart-switch", + "name": "Smart Switch", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q30892761" + ], + "developers": [ + "Samsung Electronics" + ] +} diff --git a/data/software/sm/smartcat.json b/data/software/sm/smartcat.json new file mode 100644 index 000000000000..9c0fa9d3806c --- /dev/null +++ b/data/software/sm/smartcat.json @@ -0,0 +1,8 @@ +{ + "slug": "smartcat", + "name": "SmartCAT", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q20979389" + ] +} diff --git a/data/software/sm/smartclient.json b/data/software/sm/smartclient.json new file mode 100644 index 000000000000..1e0937003caa --- /dev/null +++ b/data/software/sm/smartclient.json @@ -0,0 +1,15 @@ +{ + "slug": "smartclient", + "name": "SmartClient", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4049636" + ], + "developers": [ + "Isomorphic Software" + ], + "licenses": [ + "GNU Lesser General Public License, version 3.0", + "contract" + ] +} diff --git a/data/software/sm/smartdraw.json b/data/software/sm/smartdraw.json new file mode 100644 index 000000000000..5ed461f426eb --- /dev/null +++ b/data/software/sm/smartdraw.json @@ -0,0 +1,11 @@ +{ + "slug": "smartdraw", + "name": "SmartDraw", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2231331" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/sm/smartdrive.json b/data/software/sm/smartdrive.json new file mode 100644 index 000000000000..ccdc9c74a121 --- /dev/null +++ b/data/software/sm/smartdrive.json @@ -0,0 +1,14 @@ +{ + "slug": "smartdrive", + "name": "SmartDrive", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1131261" + ], + "developers": [ + "Microsoft" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/sm/smartfrog.json b/data/software/sm/smartfrog.json new file mode 100644 index 000000000000..c4fe8b9477d1 --- /dev/null +++ b/data/software/sm/smartfrog.json @@ -0,0 +1,9 @@ +{ + "slug": "smartfrog", + "name": "SmartFrog", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7543861" + ], + "release_date": "2004-01-24" +} diff --git a/data/software/sm/smartify.json b/data/software/sm/smartify.json new file mode 100644 index 000000000000..a5ec295e8093 --- /dev/null +++ b/data/software/sm/smartify.json @@ -0,0 +1,8 @@ +{ + "slug": "smartify", + "name": "Smartify", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109286206" + ] +} diff --git a/data/software/sm/smartmovie.json b/data/software/sm/smartmovie.json new file mode 100644 index 000000000000..b209a147b1bb --- /dev/null +++ b/data/software/sm/smartmovie.json @@ -0,0 +1,8 @@ +{ + "slug": "smartmovie", + "name": "Smartmovie", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7544142" + ] +} diff --git a/data/software/sm/smartpar.json b/data/software/sm/smartpar.json new file mode 100644 index 000000000000..947a3a03d24a --- /dev/null +++ b/data/software/sm/smartpar.json @@ -0,0 +1,8 @@ +{ + "slug": "smartpar", + "name": "SmartPAR", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7543881" + ] +} diff --git a/data/software/sm/smartpls.json b/data/software/sm/smartpls.json new file mode 100644 index 000000000000..0e76c4b05acf --- /dev/null +++ b/data/software/sm/smartpls.json @@ -0,0 +1,11 @@ +{ + "slug": "smartpls", + "name": "SmartPLS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q19515577" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/sm/smartrename.json b/data/software/sm/smartrename.json new file mode 100644 index 000000000000..e7bf8197709a --- /dev/null +++ b/data/software/sm/smartrename.json @@ -0,0 +1,8 @@ +{ + "slug": "smartrename", + "name": "SmartRename", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11077272" + ] +} diff --git a/data/software/sm/smartrouter.json b/data/software/sm/smartrouter.json new file mode 100644 index 000000000000..7accfe932954 --- /dev/null +++ b/data/software/sm/smartrouter.json @@ -0,0 +1,8 @@ +{ + "slug": "smartrouter", + "name": "SmartRouter", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7543893" + ] +} diff --git a/data/software/sm/smartsheet.json b/data/software/sm/smartsheet.json new file mode 100644 index 000000000000..01aabb2f33cf --- /dev/null +++ b/data/software/sm/smartsheet.json @@ -0,0 +1,12 @@ +{ + "slug": "smartsheet", + "name": "Smartsheet", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7544153" + ], + "release_date": "2006-01-01", + "developers": [ + "Smartsheet Inc." + ] +} diff --git a/data/software/sm/smartvision.json b/data/software/sm/smartvision.json new file mode 100644 index 000000000000..c536eeeba91d --- /dev/null +++ b/data/software/sm/smartvision.json @@ -0,0 +1,8 @@ +{ + "slug": "smartvision", + "name": "SmartVision", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7543905" + ] +} diff --git a/data/software/sm/smbldap-tools.json b/data/software/sm/smbldap-tools.json new file mode 100644 index 000000000000..0cd07c7ef079 --- /dev/null +++ b/data/software/sm/smbldap-tools.json @@ -0,0 +1,8 @@ +{ + "slug": "smbldap-tools", + "name": "smbldap-tools", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62865513" + ] +} diff --git a/data/software/sm/smbnetfs.json b/data/software/sm/smbnetfs.json new file mode 100644 index 000000000000..159045b01388 --- /dev/null +++ b/data/software/sm/smbnetfs.json @@ -0,0 +1,8 @@ +{ + "slug": "smbnetfs", + "name": "SMBNetFS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62865518" + ] +} diff --git a/data/software/sm/smirk.json b/data/software/sm/smirk.json new file mode 100644 index 000000000000..3fec1d729259 --- /dev/null +++ b/data/software/sm/smirk.json @@ -0,0 +1,8 @@ +{ + "slug": "smirk", + "name": "smirk", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127485674" + ] +} diff --git a/data/software/sm/smithsonian-voyager.json b/data/software/sm/smithsonian-voyager.json new file mode 100644 index 000000000000..de44604c21f0 --- /dev/null +++ b/data/software/sm/smithsonian-voyager.json @@ -0,0 +1,8 @@ +{ + "slug": "smithsonian-voyager", + "name": "Smithsonian Voyager", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084573" + ] +} diff --git a/data/software/sm/smokeping.json b/data/software/sm/smokeping.json new file mode 100644 index 000000000000..531b84c32cc0 --- /dev/null +++ b/data/software/sm/smokeping.json @@ -0,0 +1,8 @@ +{ + "slug": "smokeping", + "name": "SmokePing", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62865505" + ] +} diff --git a/data/software/sm/smoldyn.json b/data/software/sm/smoldyn.json new file mode 100644 index 000000000000..89c7f97d2634 --- /dev/null +++ b/data/software/sm/smoldyn.json @@ -0,0 +1,8 @@ +{ + "slug": "smoldyn", + "name": "Smoldyn", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122143985" + ] +} diff --git a/data/software/sm/smolt.json b/data/software/sm/smolt.json new file mode 100644 index 000000000000..f9eecccfa24e --- /dev/null +++ b/data/software/sm/smolt.json @@ -0,0 +1,8 @@ +{ + "slug": "smolt", + "name": "Smolt", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q568570" + ] +} diff --git a/data/software/sm/smoothvideo-project.json b/data/software/sm/smoothvideo-project.json new file mode 100644 index 000000000000..8d0d32d8c2d9 --- /dev/null +++ b/data/software/sm/smoothvideo-project.json @@ -0,0 +1,11 @@ +{ + "slug": "smoothvideo-project", + "name": "SmoothVideo Project", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4049656" + ], + "programming_languages": [ + "Object Pascal" + ] +} diff --git a/data/software/sm/sms.json b/data/software/sm/sms.json new file mode 100644 index 000000000000..42744ce82948 --- /dev/null +++ b/data/software/sm/sms.json @@ -0,0 +1,11 @@ +{ + "slug": "sms", + "name": "SMS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7391304" + ], + "developers": [ + "Aquaveo" + ] +} diff --git a/data/software/sm/smsmode.json b/data/software/sm/smsmode.json new file mode 100644 index 000000000000..dc07c889d2cb --- /dev/null +++ b/data/software/sm/smsmode.json @@ -0,0 +1,11 @@ +{ + "slug": "smsmode", + "name": "smsmode", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136379230" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/sm/smstools.json b/data/software/sm/smstools.json new file mode 100644 index 000000000000..296d454cf8ed --- /dev/null +++ b/data/software/sm/smstools.json @@ -0,0 +1,11 @@ +{ + "slug": "smstools", + "name": "SMSTools", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140471111" + ], + "developers": [ + "Jordi Bonada" + ] +} diff --git a/data/software/sm/smstools2.json b/data/software/sm/smstools2.json new file mode 100644 index 000000000000..b86c5065fa88 --- /dev/null +++ b/data/software/sm/smstools2.json @@ -0,0 +1,15 @@ +{ + "slug": "smstools2", + "name": "SMSTools2", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140471112" + ], + "release_date": "2000-01-01", + "developers": [ + "Jordi Bonada" + ], + "licenses": [ + "GNU General Public License, version 2.0" + ] +} diff --git a/data/software/sm/smtm.json b/data/software/sm/smtm.json new file mode 100644 index 000000000000..5ccb7b16de5b --- /dev/null +++ b/data/software/sm/smtm.json @@ -0,0 +1,8 @@ +{ + "slug": "smtm", + "name": "smtm", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62865499" + ] +} diff --git a/data/software/sm/smugglers-v.json b/data/software/sm/smugglers-v.json new file mode 100644 index 000000000000..b063cea44a71 --- /dev/null +++ b/data/software/sm/smugglers-v.json @@ -0,0 +1,9 @@ +{ + "slug": "smugglers-v", + "name": "Smugglers V", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q99646349" + ], + "release_date": "2014-04-11" +} diff --git a/data/software/sn/snack-sound-toolkit.json b/data/software/sn/snack-sound-toolkit.json new file mode 100644 index 000000000000..962db0f23ff7 --- /dev/null +++ b/data/software/sn/snack-sound-toolkit.json @@ -0,0 +1,11 @@ +{ + "slug": "snack-sound-toolkit", + "name": "Snack Sound Toolkit", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7546876" + ], + "developers": [ + "Royal Institute of Technology" + ] +} diff --git a/data/software/sn/snagger.json b/data/software/sn/snagger.json new file mode 100644 index 000000000000..fc956cbfa19c --- /dev/null +++ b/data/software/sn/snagger.json @@ -0,0 +1,11 @@ +{ + "slug": "snagger", + "name": "Snagger", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7546917" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/sn/snakemake.json b/data/software/sn/snakemake.json new file mode 100644 index 000000000000..1031d289b31e --- /dev/null +++ b/data/software/sn/snakemake.json @@ -0,0 +1,8 @@ +{ + "slug": "snakemake", + "name": "Snakemake", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106286298" + ] +} diff --git a/data/software/sn/snap.json b/data/software/sn/snap.json new file mode 100644 index 000000000000..7d6df2304934 --- /dev/null +++ b/data/software/sn/snap.json @@ -0,0 +1,8 @@ +{ + "slug": "snap", + "name": "SNAP", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084574" + ] +} diff --git a/data/software/sn/snapdragon-neural-processing-engine.json b/data/software/sn/snapdragon-neural-processing-engine.json new file mode 100644 index 000000000000..f83d81826cf8 --- /dev/null +++ b/data/software/sn/snapdragon-neural-processing-engine.json @@ -0,0 +1,8 @@ +{ + "slug": "snapdragon-neural-processing-engine", + "name": "Snapdragon Neural Processing Engine", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q119627322" + ] +} diff --git a/data/software/sn/snapforce-crm.json b/data/software/sn/snapforce-crm.json new file mode 100644 index 000000000000..c0f8ca206cb7 --- /dev/null +++ b/data/software/sn/snapforce-crm.json @@ -0,0 +1,8 @@ +{ + "slug": "snapforce-crm", + "name": "Snapforce CRM", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q21463570" + ] +} diff --git a/data/software/sn/snapp-ai.json b/data/software/sn/snapp-ai.json new file mode 100644 index 000000000000..3758b907dec1 --- /dev/null +++ b/data/software/sn/snapp-ai.json @@ -0,0 +1,8 @@ +{ + "slug": "snapp-ai", + "name": "Snapp AI", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140254059" + ] +} diff --git a/data/software/sn/snapraid.json b/data/software/sn/snapraid.json new file mode 100644 index 000000000000..67566f8cd2ff --- /dev/null +++ b/data/software/sn/snapraid.json @@ -0,0 +1,11 @@ +{ + "slug": "snapraid", + "name": "snapraid", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065271" + ], + "licenses": [ + "GNU General Public License, version 3.0" + ] +} diff --git a/data/software/sn/snapster.json b/data/software/sn/snapster.json new file mode 100644 index 000000000000..044690ecc878 --- /dev/null +++ b/data/software/sn/snapster.json @@ -0,0 +1,15 @@ +{ + "slug": "snapster", + "name": "Snapster", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q20706504" + ], + "release_date": "2015-07-17", + "operating_systems": [ + "iOS" + ], + "genres": [ + "raster graphics editor" + ] +} diff --git a/data/software/sn/snaptu.json b/data/software/sn/snaptu.json new file mode 100644 index 000000000000..483ddd059feb --- /dev/null +++ b/data/software/sn/snaptu.json @@ -0,0 +1,11 @@ +{ + "slug": "snaptu", + "name": "Snaptu", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2916100" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/sn/snapz-pro-x.json b/data/software/sn/snapz-pro-x.json new file mode 100644 index 000000000000..0b2ffa2b8e0a --- /dev/null +++ b/data/software/sn/snapz-pro-x.json @@ -0,0 +1,17 @@ +{ + "slug": "snapz-pro-x", + "name": "Snapz Pro X", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7547379" + ], + "developers": [ + "Ambrosia Software" + ], + "operating_systems": [ + "macOS" + ], + "genres": [ + "screencasting software" + ] +} diff --git a/data/software/sn/snapzen.json b/data/software/sn/snapzen.json new file mode 100644 index 000000000000..11cc57b6cc81 --- /dev/null +++ b/data/software/sn/snapzen.json @@ -0,0 +1,8 @@ +{ + "slug": "snapzen", + "name": "Snapzen", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084575" + ] +} diff --git a/data/software/sn/snarf.json b/data/software/sn/snarf.json new file mode 100644 index 000000000000..611b822205f7 --- /dev/null +++ b/data/software/sn/snarf.json @@ -0,0 +1,8 @@ +{ + "slug": "snarf", + "name": "snarf", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62865468" + ] +} diff --git a/data/software/sn/snark.json b/data/software/sn/snark.json new file mode 100644 index 000000000000..0d16b3f5ead4 --- /dev/null +++ b/data/software/sn/snark.json @@ -0,0 +1,17 @@ +{ + "slug": "snark", + "name": "SNARK", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7391799" + ], + "developers": [ + "SRI International" + ], + "programming_languages": [ + "Common Lisp" + ], + "licenses": [ + "Mozilla Public License" + ] +} diff --git a/data/software/sn/snatchbot.json b/data/software/sn/snatchbot.json new file mode 100644 index 000000000000..f90770ed7bd0 --- /dev/null +++ b/data/software/sn/snatchbot.json @@ -0,0 +1,8 @@ +{ + "slug": "snatchbot", + "name": "SnatchBot", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q47458384" + ] +} diff --git a/data/software/sn/sndpeek.json b/data/software/sn/sndpeek.json new file mode 100644 index 000000000000..bbd954ea77fe --- /dev/null +++ b/data/software/sn/sndpeek.json @@ -0,0 +1,8 @@ +{ + "slug": "sndpeek", + "name": "sndpeek", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60917849" + ] +} diff --git a/data/software/sn/snes9x.json b/data/software/sn/snes9x.json new file mode 100644 index 000000000000..8bf8589507d0 --- /dev/null +++ b/data/software/sn/snes9x.json @@ -0,0 +1,18 @@ +{ + "slug": "snes9x", + "name": "Snes9x", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3309521" + ], + "operating_systems": [ + "AmigaOS 4", + "MorphOS", + "macOS", + "iOS", + "Microsoft Windows" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/sn/sniffer.json b/data/software/sn/sniffer.json new file mode 100644 index 000000000000..e95b47c308cc --- /dev/null +++ b/data/software/sn/sniffer.json @@ -0,0 +1,8 @@ +{ + "slug": "sniffer", + "name": "Sniffer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107676046" + ] +} diff --git a/data/software/sn/snipshot.json b/data/software/sn/snipshot.json new file mode 100644 index 000000000000..b329337fa088 --- /dev/null +++ b/data/software/sn/snipshot.json @@ -0,0 +1,8 @@ +{ + "slug": "snipshot", + "name": "Snipshot", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084578" + ] +} diff --git a/data/software/sn/snit.json b/data/software/sn/snit.json new file mode 100644 index 000000000000..c7c57ec95fa8 --- /dev/null +++ b/data/software/sn/snit.json @@ -0,0 +1,8 @@ +{ + "slug": "snit", + "name": "Snit", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4049668" + ] +} diff --git a/data/software/sn/snitz-forums-2000.json b/data/software/sn/snitz-forums-2000.json new file mode 100644 index 000000000000..8422cbec665b --- /dev/null +++ b/data/software/sn/snitz-forums-2000.json @@ -0,0 +1,8 @@ +{ + "slug": "snitz-forums-2000", + "name": "Snitz Forums 2000", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4118970" + ] +} diff --git a/data/software/sn/snns.json b/data/software/sn/snns.json new file mode 100644 index 000000000000..1525456c1889 --- /dev/null +++ b/data/software/sn/snns.json @@ -0,0 +1,8 @@ +{ + "slug": "snns", + "name": "SNNS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1436857" + ] +} diff --git a/data/software/sn/snomed-ct.json b/data/software/sn/snomed-ct.json new file mode 100644 index 000000000000..de68a82e912c --- /dev/null +++ b/data/software/sn/snomed-ct.json @@ -0,0 +1,8 @@ +{ + "slug": "snomed-ct", + "name": "SNOMED CT", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1753883" + ] +} diff --git a/data/software/sn/snopt.json b/data/software/sn/snopt.json new file mode 100644 index 000000000000..eee0695d1d0d --- /dev/null +++ b/data/software/sn/snopt.json @@ -0,0 +1,11 @@ +{ + "slug": "snopt", + "name": "SNOPT", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7391871" + ], + "programming_languages": [ + "Fortran" + ] +} diff --git a/data/software/sn/snorna-prediction-software.json b/data/software/sn/snorna-prediction-software.json new file mode 100644 index 000000000000..7c92a4d2c0eb --- /dev/null +++ b/data/software/sn/snorna-prediction-software.json @@ -0,0 +1,8 @@ +{ + "slug": "snorna-prediction-software", + "name": "SnoRNA prediction software", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7547868" + ] +} diff --git a/data/software/sn/snow.json b/data/software/sn/snow.json new file mode 100644 index 000000000000..2b0945813314 --- /dev/null +++ b/data/software/sn/snow.json @@ -0,0 +1,8 @@ +{ + "slug": "snow", + "name": "Snow", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q50322557" + ] +} diff --git a/data/software/sn/snowball-microcontroller-unit.json b/data/software/sn/snowball-microcontroller-unit.json new file mode 100644 index 000000000000..fcf9527955d0 --- /dev/null +++ b/data/software/sn/snowball-microcontroller-unit.json @@ -0,0 +1,8 @@ +{ + "slug": "snowball-microcontroller-unit", + "name": "Snowball Microcontroller unit", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q24809215" + ] +} diff --git a/data/software/sn/snowblind-studios-game-engine.json b/data/software/sn/snowblind-studios-game-engine.json new file mode 100644 index 000000000000..222b59f40dd6 --- /dev/null +++ b/data/software/sn/snowblind-studios-game-engine.json @@ -0,0 +1,11 @@ +{ + "slug": "snowblind-studios-game-engine", + "name": "Snowblind Studios game engine", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16950266" + ], + "developers": [ + "Snowblind Studios" + ] +} diff --git a/data/software/sn/snowflake-inc.json b/data/software/sn/snowflake-inc.json new file mode 100644 index 000000000000..fe1914f74a0a --- /dev/null +++ b/data/software/sn/snowflake-inc.json @@ -0,0 +1,8 @@ +{ + "slug": "snowflake-inc", + "name": "Snowflake Inc.", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22078063" + ] +} diff --git a/data/software/sn/snowflake.json b/data/software/sn/snowflake.json new file mode 100644 index 000000000000..11c25c3e6028 --- /dev/null +++ b/data/software/sn/snowflake.json @@ -0,0 +1,14 @@ +{ + "slug": "snowflake", + "name": "Snowflake", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q114880973" + ], + "programming_languages": [ + "Go" + ], + "licenses": [ + "3-clause BSD License" + ] +} diff --git a/data/software/sn/snpmasker.json b/data/software/sn/snpmasker.json new file mode 100644 index 000000000000..bcf38e81a9d4 --- /dev/null +++ b/data/software/sn/snpmasker.json @@ -0,0 +1,8 @@ +{ + "slug": "snpmasker", + "name": "SNPmasker", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109499678" + ] +} diff --git a/data/software/so/soapbox.json b/data/software/so/soapbox.json new file mode 100644 index 000000000000..6d281af97cc0 --- /dev/null +++ b/data/software/so/soapbox.json @@ -0,0 +1,8 @@ +{ + "slug": "soapbox", + "name": "soapbox", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065292" + ] +} diff --git a/data/software/so/soaplab.json b/data/software/so/soaplab.json new file mode 100644 index 000000000000..f5dd16f7fe69 --- /dev/null +++ b/data/software/so/soaplab.json @@ -0,0 +1,11 @@ +{ + "slug": "soaplab", + "name": "Soaplab", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7549827" + ], + "developers": [ + "EMBL's European Bioinformatics Institute" + ] +} diff --git a/data/software/so/soar.json b/data/software/so/soar.json new file mode 100644 index 000000000000..9e76d132c12e --- /dev/null +++ b/data/software/so/soar.json @@ -0,0 +1,12 @@ +{ + "slug": "soar", + "name": "Soar", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q382944" + ], + "release_date": "1983-01-01", + "licenses": [ + "BSD licenses" + ] +} diff --git a/data/software/so/sobekcm.json b/data/software/so/sobekcm.json new file mode 100644 index 000000000000..6b9b50f54e00 --- /dev/null +++ b/data/software/so/sobekcm.json @@ -0,0 +1,8 @@ +{ + "slug": "sobekcm", + "name": "SobekCM", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7549909" + ] +} diff --git a/data/software/so/sobrr.json b/data/software/so/sobrr.json new file mode 100644 index 000000000000..84db775bb59a --- /dev/null +++ b/data/software/so/sobrr.json @@ -0,0 +1,9 @@ +{ + "slug": "sobrr", + "name": "Sobrr", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28127168" + ], + "release_date": "2014-07-01" +} diff --git a/data/software/so/socat.json b/data/software/so/socat.json new file mode 100644 index 000000000000..75a6ef07d418 --- /dev/null +++ b/data/software/so/socat.json @@ -0,0 +1,11 @@ +{ + "slug": "socat", + "name": "socat", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975484" + ], + "licenses": [ + "GNU General Public License, version 2.0" + ] +} diff --git a/data/software/so/socet-set.json b/data/software/so/socet-set.json new file mode 100644 index 000000000000..f471187a2c6d --- /dev/null +++ b/data/software/so/socet-set.json @@ -0,0 +1,11 @@ +{ + "slug": "socet-set", + "name": "SOCET SET", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7392006" + ], + "developers": [ + "BAE Systems" + ] +} diff --git a/data/software/so/sociahive.json b/data/software/so/sociahive.json new file mode 100644 index 000000000000..eaddc66a271d --- /dev/null +++ b/data/software/so/sociahive.json @@ -0,0 +1,14 @@ +{ + "slug": "sociahive", + "name": "SociaHive", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138841331" + ], + "operating_systems": [ + "cross-platform" + ], + "programming_languages": [ + "TypeScript" + ] +} diff --git a/data/software/so/social-engineer-toolkit-set.json b/data/software/so/social-engineer-toolkit-set.json new file mode 100644 index 000000000000..5a1e85249fc2 --- /dev/null +++ b/data/software/so/social-engineer-toolkit-set.json @@ -0,0 +1,14 @@ +{ + "slug": "social-engineer-toolkit-set", + "name": "Social Engineer Toolkit (SET)", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16677152" + ], + "publishers": [ + "TrustedSec" + ], + "programming_languages": [ + "Python" + ] +} diff --git a/data/software/so/social-feed-manager.json b/data/software/so/social-feed-manager.json new file mode 100644 index 000000000000..d85b765ee6dd --- /dev/null +++ b/data/software/so/social-feed-manager.json @@ -0,0 +1,8 @@ +{ + "slug": "social-feed-manager", + "name": "Social Feed Manager", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106507131" + ] +} diff --git a/data/software/so/socialcam.json b/data/software/so/socialcam.json new file mode 100644 index 000000000000..4c3cb35482ac --- /dev/null +++ b/data/software/so/socialcam.json @@ -0,0 +1,8 @@ +{ + "slug": "socialcam", + "name": "Socialcam", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3538086" + ] +} diff --git a/data/software/so/socrata-open-data-platform.json b/data/software/so/socrata-open-data-platform.json new file mode 100644 index 000000000000..f6dfc7dc8413 --- /dev/null +++ b/data/software/so/socrata-open-data-platform.json @@ -0,0 +1,14 @@ +{ + "slug": "socrata-open-data-platform", + "name": "Socrata Open Data Platform", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108062141" + ], + "developers": [ + "Socrata" + ], + "publishers": [ + "Socrata" + ] +} diff --git a/data/software/so/socrates-ii.json b/data/software/so/socrates-ii.json new file mode 100644 index 000000000000..5105afc89b46 --- /dev/null +++ b/data/software/so/socrates-ii.json @@ -0,0 +1,8 @@ +{ + "slug": "socrates-ii", + "name": "Socrates II", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7553111" + ] +} diff --git a/data/software/so/soda-pdf.json b/data/software/so/soda-pdf.json new file mode 100644 index 000000000000..79da7239810f --- /dev/null +++ b/data/software/so/soda-pdf.json @@ -0,0 +1,15 @@ +{ + "slug": "soda-pdf", + "name": "Soda PDF", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18155338" + ], + "release_date": "2010-01-01", + "developers": [ + "Lulu Software" + ], + "licenses": [ + "end-user license agreement" + ] +} diff --git a/data/software/so/sofa.json b/data/software/so/sofa.json new file mode 100644 index 000000000000..fe2cb7ca6b5e --- /dev/null +++ b/data/software/so/sofa.json @@ -0,0 +1,11 @@ +{ + "slug": "sofa", + "name": "SOFA", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7392034" + ], + "programming_languages": [ + "Fortran" + ] +} diff --git a/data/software/so/sofcheck-inspector.json b/data/software/so/sofcheck-inspector.json new file mode 100644 index 000000000000..b3899f75c56c --- /dev/null +++ b/data/software/so/sofcheck-inspector.json @@ -0,0 +1,8 @@ +{ + "slug": "sofcheck-inspector", + "name": "SofCheck Inspector", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7553550" + ] +} diff --git a/data/software/so/soft-denchi.json b/data/software/so/soft-denchi.json new file mode 100644 index 000000000000..f4240f7f789f --- /dev/null +++ b/data/software/so/soft-denchi.json @@ -0,0 +1,11 @@ +{ + "slug": "soft-denchi", + "name": "Soft-Denchi", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11315313" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/so/softdent.json b/data/software/so/softdent.json new file mode 100644 index 000000000000..466ad0a3bb80 --- /dev/null +++ b/data/software/so/softdent.json @@ -0,0 +1,11 @@ +{ + "slug": "softdent", + "name": "SoftDent", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7553833" + ], + "developers": [ + "Kodak" + ] +} diff --git a/data/software/so/softflowd.json b/data/software/so/softflowd.json new file mode 100644 index 000000000000..90c16ac5d338 --- /dev/null +++ b/data/software/so/softflowd.json @@ -0,0 +1,8 @@ +{ + "slug": "softflowd", + "name": "softflowd", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62865402" + ] +} diff --git a/data/software/so/softi.json b/data/software/so/softi.json new file mode 100644 index 000000000000..bb358ff10ebb --- /dev/null +++ b/data/software/so/softi.json @@ -0,0 +1,11 @@ +{ + "slug": "softi", + "name": "Softi", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108929297" + ], + "developers": [ + "Antonina Starita" + ] +} diff --git a/data/software/so/softline.json b/data/software/so/softline.json new file mode 100644 index 000000000000..efcd07a3d3b1 --- /dev/null +++ b/data/software/so/softline.json @@ -0,0 +1,8 @@ +{ + "slug": "softline", + "name": "Softline", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7554121" + ] +} diff --git a/data/software/so/softmaker-office.json b/data/software/so/softmaker-office.json new file mode 100644 index 000000000000..c5997ada7542 --- /dev/null +++ b/data/software/so/softmaker-office.json @@ -0,0 +1,16 @@ +{ + "slug": "softmaker-office", + "name": "SoftMaker Office", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1289689" + ], + "developers": [ + "SoftMaker Software GmbH" + ], + "operating_systems": [ + "iOS", + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/software/so/softpc.json b/data/software/so/softpc.json new file mode 100644 index 000000000000..c4378129af24 --- /dev/null +++ b/data/software/so/softpc.json @@ -0,0 +1,17 @@ +{ + "slug": "softpc", + "name": "SoftPC", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1708515" + ], + "operating_systems": [ + "NeXTSTEP", + "IRIX", + "Mac operating system", + "HP-UX", + "Ultrix", + "IBM AIX", + "Solaris" + ] +} diff --git a/data/software/so/software-automatic-mouth.json b/data/software/so/software-automatic-mouth.json new file mode 100644 index 000000000000..107398e6ee00 --- /dev/null +++ b/data/software/so/software-automatic-mouth.json @@ -0,0 +1,8 @@ +{ + "slug": "software-automatic-mouth", + "name": "Software Automatic Mouth", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7554184" + ] +} diff --git a/data/software/so/software-bus.json b/data/software/so/software-bus.json new file mode 100644 index 000000000000..b151b0ce6f79 --- /dev/null +++ b/data/software/so/software-bus.json @@ -0,0 +1,8 @@ +{ + "slug": "software-bus", + "name": "software bus", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7554265" + ] +} diff --git a/data/software/so/software-defined-defence.json b/data/software/so/software-defined-defence.json new file mode 100644 index 000000000000..220d3bdcb923 --- /dev/null +++ b/data/software/so/software-defined-defence.json @@ -0,0 +1,8 @@ +{ + "slug": "software-defined-defence", + "name": "Software Defined Defence", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131422125" + ] +} diff --git a/data/software/so/software-design-document.json b/data/software/so/software-design-document.json new file mode 100644 index 000000000000..8dc31fd971af --- /dev/null +++ b/data/software/so/software-design-document.json @@ -0,0 +1,8 @@ +{ + "slug": "software-design-document", + "name": "software design document", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7554282" + ] +} diff --git a/data/software/so/software-for-library-statistics.json b/data/software/so/software-for-library-statistics.json new file mode 100644 index 000000000000..2a07255ae716 --- /dev/null +++ b/data/software/so/software-for-library-statistics.json @@ -0,0 +1,8 @@ +{ + "slug": "software-for-library-statistics", + "name": "software for library statistics", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q99231498" + ] +} diff --git a/data/software/so/software-package.json b/data/software/so/software-package.json new file mode 100644 index 000000000000..8319a6b10257 --- /dev/null +++ b/data/software/so/software-package.json @@ -0,0 +1,8 @@ +{ + "slug": "software-package", + "name": "software package", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1995545" + ] +} diff --git a/data/software/so/software-product-liability.json b/data/software/so/software-product-liability.json new file mode 100644 index 000000000000..0128a33b9e8b --- /dev/null +++ b/data/software/so/software-product-liability.json @@ -0,0 +1,8 @@ +{ + "slug": "software-product-liability", + "name": "Software product liability", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125935740" + ] +} diff --git a/data/software/so/software-propagation.json b/data/software/so/software-propagation.json new file mode 100644 index 000000000000..64ee53be3f5a --- /dev/null +++ b/data/software/so/software-propagation.json @@ -0,0 +1,8 @@ +{ + "slug": "software-propagation", + "name": "software propagation", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7554347" + ] +} diff --git a/data/software/so/software-testing-automation-framework.json b/data/software/so/software-testing-automation-framework.json new file mode 100644 index 000000000000..c3617f3d3552 --- /dev/null +++ b/data/software/so/software-testing-automation-framework.json @@ -0,0 +1,12 @@ +{ + "slug": "software-testing-automation-framework", + "name": "Software Testing Automation Framework", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7554233" + ], + "release_date": "1998-01-01", + "developers": [ + "IBM" + ] +} diff --git a/data/software/so/software-token.json b/data/software/so/software-token.json new file mode 100644 index 000000000000..f9ea5f15d1c8 --- /dev/null +++ b/data/software/so/software-token.json @@ -0,0 +1,8 @@ +{ + "slug": "software-token", + "name": "software token", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17084669" + ] +} diff --git a/data/software/so/software-vision-mixer.json b/data/software/so/software-vision-mixer.json new file mode 100644 index 000000000000..b8eed4a70be0 --- /dev/null +++ b/data/software/so/software-vision-mixer.json @@ -0,0 +1,8 @@ +{ + "slug": "software-vision-mixer", + "name": "software vision mixer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7554382" + ] +} diff --git a/data/software/so/softwarevalet.json b/data/software/so/softwarevalet.json new file mode 100644 index 000000000000..d27b318fc4ac --- /dev/null +++ b/data/software/so/softwarevalet.json @@ -0,0 +1,8 @@ +{ + "slug": "softwarevalet", + "name": "SoftwareValet", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7554171" + ] +} diff --git a/data/software/so/sogou-explorer.json b/data/software/so/sogou-explorer.json new file mode 100644 index 000000000000..45b2024f04ed --- /dev/null +++ b/data/software/so/sogou-explorer.json @@ -0,0 +1,8 @@ +{ + "slug": "sogou-explorer", + "name": "Sogou Explorer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11078345" + ] +} diff --git a/data/software/so/soikko.json b/data/software/so/soikko.json new file mode 100644 index 000000000000..8f8108a479de --- /dev/null +++ b/data/software/so/soikko.json @@ -0,0 +1,8 @@ +{ + "slug": "soikko", + "name": "Soikko", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11893981" + ] +} diff --git a/data/software/so/solaris-porting-layer.json b/data/software/so/solaris-porting-layer.json new file mode 100644 index 000000000000..56710ebfef1c --- /dev/null +++ b/data/software/so/solaris-porting-layer.json @@ -0,0 +1,8 @@ +{ + "slug": "solaris-porting-layer", + "name": "Solaris Porting Layer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975490" + ] +} diff --git a/data/software/so/solarsoft.json b/data/software/so/solarsoft.json new file mode 100644 index 000000000000..92a17f847c4c --- /dev/null +++ b/data/software/so/solarsoft.json @@ -0,0 +1,11 @@ +{ + "slug": "solarsoft", + "name": "Solarsoft", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7557083" + ], + "developers": [ + "Lockheed Martin" + ] +} diff --git a/data/software/so/solbundler.json b/data/software/so/solbundler.json new file mode 100644 index 000000000000..f5a41ef306d4 --- /dev/null +++ b/data/software/so/solbundler.json @@ -0,0 +1,11 @@ +{ + "slug": "solbundler", + "name": "SolBundler", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140003202" + ], + "programming_languages": [ + "TypeScript" + ] +} diff --git a/data/software/so/solex.json b/data/software/so/solex.json new file mode 100644 index 000000000000..006eeadbeba7 --- /dev/null +++ b/data/software/so/solex.json @@ -0,0 +1,8 @@ +{ + "slug": "solex", + "name": "Solex", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3964285" + ] +} diff --git a/data/software/so/solid-converter-pdf.json b/data/software/so/solid-converter-pdf.json new file mode 100644 index 000000000000..adc73237d081 --- /dev/null +++ b/data/software/so/solid-converter-pdf.json @@ -0,0 +1,11 @@ +{ + "slug": "solid-converter-pdf", + "name": "Solid Converter PDF", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7557826" + ], + "developers": [ + "Solid Documents" + ] +} diff --git a/data/software/so/solid-pdf-creator.json b/data/software/so/solid-pdf-creator.json new file mode 100644 index 000000000000..2ccc30d25573 --- /dev/null +++ b/data/software/so/solid-pdf-creator.json @@ -0,0 +1,8 @@ +{ + "slug": "solid-pdf-creator", + "name": "Solid PDF Creator", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7557864" + ] +} diff --git a/data/software/so/solid-pdf-tools.json b/data/software/so/solid-pdf-tools.json new file mode 100644 index 000000000000..62446d78e83a --- /dev/null +++ b/data/software/so/solid-pdf-tools.json @@ -0,0 +1,8 @@ +{ + "slug": "solid-pdf-tools", + "name": "Solid PDF Tools", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7557865" + ] +} diff --git a/data/software/so/solid.json b/data/software/so/solid.json new file mode 100644 index 000000000000..3e90d3ac54eb --- /dev/null +++ b/data/software/so/solid.json @@ -0,0 +1,15 @@ +{ + "slug": "solid", + "name": "Solid", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q55408718" + ], + "release_date": "2016-08-10", + "developers": [ + "Massachusetts Institute of Technology" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/so/solidthinking.json b/data/software/so/solidthinking.json new file mode 100644 index 000000000000..6a61d5a0d043 --- /dev/null +++ b/data/software/so/solidthinking.json @@ -0,0 +1,8 @@ +{ + "slug": "solidthinking", + "name": "solidThinking", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3964326" + ] +} diff --git a/data/software/so/solsten-cre.json b/data/software/so/solsten-cre.json new file mode 100644 index 000000000000..7db05b0f5e16 --- /dev/null +++ b/data/software/so/solsten-cre.json @@ -0,0 +1,8 @@ +{ + "slug": "solsten-cre", + "name": "Solsten CRE", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140243794" + ] +} diff --git a/data/software/so/solution-deployment-descriptor.json b/data/software/so/solution-deployment-descriptor.json new file mode 100644 index 000000000000..1c5849bad9b8 --- /dev/null +++ b/data/software/so/solution-deployment-descriptor.json @@ -0,0 +1,8 @@ +{ + "slug": "solution-deployment-descriptor", + "name": "Solution Deployment Descriptor", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7558973" + ] +} diff --git a/data/software/so/solutionreach.json b/data/software/so/solutionreach.json new file mode 100644 index 000000000000..911259d5491a --- /dev/null +++ b/data/software/so/solutionreach.json @@ -0,0 +1,8 @@ +{ + "slug": "solutionreach", + "name": "Solutionreach", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111317674" + ] +} diff --git a/data/software/so/solvi-barcode-labels.json b/data/software/so/solvi-barcode-labels.json new file mode 100644 index 000000000000..9568e57f6bd6 --- /dev/null +++ b/data/software/so/solvi-barcode-labels.json @@ -0,0 +1,14 @@ +{ + "slug": "solvi-barcode-labels", + "name": "Solvi Barcode Labels", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140474101" + ], + "developers": [ + "Useful Tools" + ], + "programming_languages": [ + "TypeScript" + ] +} diff --git a/data/software/so/solvi-pick-lists.json b/data/software/so/solvi-pick-lists.json new file mode 100644 index 000000000000..464b6ea817f1 --- /dev/null +++ b/data/software/so/solvi-pick-lists.json @@ -0,0 +1,14 @@ +{ + "slug": "solvi-pick-lists", + "name": "Solvi Pick Lists", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140474103" + ], + "developers": [ + "Useful Tools" + ], + "programming_languages": [ + "TypeScript" + ] +} diff --git a/data/software/so/solvi-restock.json b/data/software/so/solvi-restock.json new file mode 100644 index 000000000000..f8c1946ddc1b --- /dev/null +++ b/data/software/so/solvi-restock.json @@ -0,0 +1,14 @@ +{ + "slug": "solvi-restock", + "name": "Solvi Restock", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140474154" + ], + "developers": [ + "Useful Tools" + ], + "programming_languages": [ + "TypeScript" + ] +} diff --git a/data/software/so/soma-messenger.json b/data/software/so/soma-messenger.json new file mode 100644 index 000000000000..5157a68e07ce --- /dev/null +++ b/data/software/so/soma-messenger.json @@ -0,0 +1,14 @@ +{ + "slug": "soma-messenger", + "name": "SOMA Messenger", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q21041358" + ], + "operating_systems": [ + "iOS" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/so/sonal.json b/data/software/so/sonal.json new file mode 100644 index 000000000000..458125787954 --- /dev/null +++ b/data/software/so/sonal.json @@ -0,0 +1,14 @@ +{ + "slug": "sonal", + "name": "Sonal", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105076390" + ], + "operating_systems": [ + "Microsoft Windows" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/so/sonar.json b/data/software/so/sonar.json new file mode 100644 index 000000000000..516940574cac --- /dev/null +++ b/data/software/so/sonar.json @@ -0,0 +1,11 @@ +{ + "slug": "sonar", + "name": "SONAR", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4119438" + ], + "developers": [ + "Gen Digital" + ] +} diff --git a/data/software/so/sonata.json b/data/software/so/sonata.json new file mode 100644 index 000000000000..0e66b71b1b2f --- /dev/null +++ b/data/software/so/sonata.json @@ -0,0 +1,8 @@ +{ + "slug": "sonata", + "name": "Sonata", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q100254821" + ] +} diff --git a/data/software/so/sonatype-nexus-repository.json b/data/software/so/sonatype-nexus-repository.json new file mode 100644 index 000000000000..d6a3e71ad17f --- /dev/null +++ b/data/software/so/sonatype-nexus-repository.json @@ -0,0 +1,14 @@ +{ + "slug": "sonatype-nexus-repository", + "name": "Sonatype Nexus Repository", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q119269051" + ], + "developers": [ + "Sonatype" + ], + "licenses": [ + "Eclipse Public License 1.0" + ] +} diff --git a/data/software/so/songs2see.json b/data/software/so/songs2see.json new file mode 100644 index 000000000000..088ff0bb7266 --- /dev/null +++ b/data/software/so/songs2see.json @@ -0,0 +1,8 @@ +{ + "slug": "songs2see", + "name": "Songs2See", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7561307" + ] +} diff --git a/data/software/so/sonic-scenarist.json b/data/software/so/sonic-scenarist.json new file mode 100644 index 000000000000..cc3d850483c5 --- /dev/null +++ b/data/software/so/sonic-scenarist.json @@ -0,0 +1,11 @@ +{ + "slug": "sonic-scenarist", + "name": "Sonic Scenarist", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1578921" + ], + "developers": [ + "Sonic Studio" + ] +} diff --git a/data/software/so/sonicstage.json b/data/software/so/sonicstage.json new file mode 100644 index 000000000000..1889fe9ccdd3 --- /dev/null +++ b/data/software/so/sonicstage.json @@ -0,0 +1,14 @@ +{ + "slug": "sonicstage", + "name": "SonicStage", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1564939" + ], + "developers": [ + "Sony Group" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/so/sonika.json b/data/software/so/sonika.json new file mode 100644 index 000000000000..e8be66608578 --- /dev/null +++ b/data/software/so/sonika.json @@ -0,0 +1,9 @@ +{ + "slug": "sonika", + "name": "Sonika", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10852428" + ], + "release_date": "2009-07-14" +} diff --git a/data/software/so/sonnetizer.json b/data/software/so/sonnetizer.json new file mode 100644 index 000000000000..9ed097b53ec3 --- /dev/null +++ b/data/software/so/sonnetizer.json @@ -0,0 +1,8 @@ +{ + "slug": "sonnetizer", + "name": "Sonnetizer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125535796" + ] +} diff --git a/data/software/so/sony-entertainment-network.json b/data/software/so/sony-entertainment-network.json new file mode 100644 index 000000000000..f36a673ab6a4 --- /dev/null +++ b/data/software/so/sony-entertainment-network.json @@ -0,0 +1,12 @@ +{ + "slug": "sony-entertainment-network", + "name": "Sony Entertainment Network", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3490752" + ], + "release_date": "2006-11-01", + "developers": [ + "Sony Group" + ] +} diff --git a/data/software/so/sony-ericsson-pc-suite.json b/data/software/so/sony-ericsson-pc-suite.json new file mode 100644 index 000000000000..07bdc8b1e562 --- /dev/null +++ b/data/software/so/sony-ericsson-pc-suite.json @@ -0,0 +1,8 @@ +{ + "slug": "sony-ericsson-pc-suite", + "name": "Sony Ericsson PC Suite", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q9339580" + ] +} diff --git a/data/software/so/sony-pictures-core.json b/data/software/so/sony-pictures-core.json new file mode 100644 index 000000000000..f4b2017b3c59 --- /dev/null +++ b/data/software/so/sony-pictures-core.json @@ -0,0 +1,11 @@ +{ + "slug": "sony-pictures-core", + "name": "Sony Pictures Core", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123125290" + ], + "developers": [ + "Sony Group" + ] +} diff --git a/data/software/so/sony-ziris.json b/data/software/so/sony-ziris.json new file mode 100644 index 000000000000..d14001267941 --- /dev/null +++ b/data/software/so/sony-ziris.json @@ -0,0 +1,11 @@ +{ + "slug": "sony-ziris", + "name": "Sony Ziris", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7562560" + ], + "developers": [ + "Sony Group" + ] +} diff --git a/data/software/so/sopcast.json b/data/software/so/sopcast.json new file mode 100644 index 000000000000..fa0b6fcecf65 --- /dev/null +++ b/data/software/so/sopcast.json @@ -0,0 +1,8 @@ +{ + "slug": "sopcast", + "name": "Sopcast", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6861665" + ] +} diff --git a/data/software/so/soperion.json b/data/software/so/soperion.json new file mode 100644 index 000000000000..52030556ba24 --- /dev/null +++ b/data/software/so/soperion.json @@ -0,0 +1,8 @@ +{ + "slug": "soperion", + "name": "Soperion", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139199695" + ] +} diff --git a/data/software/so/sophie.json b/data/software/so/sophie.json new file mode 100644 index 000000000000..85d93860613f --- /dev/null +++ b/data/software/so/sophie.json @@ -0,0 +1,8 @@ +{ + "slug": "sophie", + "name": "Sophie", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084579" + ] +} diff --git a/data/software/so/sophocles.json b/data/software/so/sophocles.json new file mode 100644 index 000000000000..650bb0d10521 --- /dev/null +++ b/data/software/so/sophocles.json @@ -0,0 +1,11 @@ +{ + "slug": "sophocles", + "name": "Sophocles", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7563116" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/so/sorald.json b/data/software/so/sorald.json new file mode 100644 index 000000000000..00f38e4f2428 --- /dev/null +++ b/data/software/so/sorald.json @@ -0,0 +1,11 @@ +{ + "slug": "sorald", + "name": "sorald", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127485400" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/so/soroush-plus.json b/data/software/so/soroush-plus.json new file mode 100644 index 000000000000..8d31bde3a599 --- /dev/null +++ b/data/software/so/soroush-plus.json @@ -0,0 +1,14 @@ +{ + "slug": "soroush-plus", + "name": "Soroush Plus", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q52176204" + ], + "operating_systems": [ + "ChromeOS", + "iOS", + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/software/so/sorso.json b/data/software/so/sorso.json new file mode 100644 index 000000000000..6b7beb88f4c9 --- /dev/null +++ b/data/software/so/sorso.json @@ -0,0 +1,11 @@ +{ + "slug": "sorso", + "name": "Sorso", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139409811" + ], + "genres": [ + "artificial intelligence" + ] +} diff --git a/data/software/so/sort-my-list.json b/data/software/so/sort-my-list.json new file mode 100644 index 000000000000..f7255d6fd6b4 --- /dev/null +++ b/data/software/so/sort-my-list.json @@ -0,0 +1,8 @@ +{ + "slug": "sort-my-list", + "name": "Sort My List", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084581" + ] +} diff --git a/data/software/so/sortd.json b/data/software/so/sortd.json new file mode 100644 index 000000000000..e6eebbc3e52e --- /dev/null +++ b/data/software/so/sortd.json @@ -0,0 +1,8 @@ +{ + "slug": "sortd", + "name": "Sortd", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084580" + ] +} diff --git a/data/software/so/sos-online-backup.json b/data/software/so/sos-online-backup.json new file mode 100644 index 000000000000..5d1003059282 --- /dev/null +++ b/data/software/so/sos-online-backup.json @@ -0,0 +1,12 @@ +{ + "slug": "sos-online-backup", + "name": "SOS Online Backup", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7392116" + ], + "release_date": "2001-01-01", + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/so/soulhacker.json b/data/software/so/soulhacker.json new file mode 100644 index 000000000000..c8cbfc4fbbc7 --- /dev/null +++ b/data/software/so/soulhacker.json @@ -0,0 +1,12 @@ +{ + "slug": "soulhacker", + "name": "Soulhacker", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131377248" + ], + "release_date": "2020-01-01", + "genres": [ + "Combinatory literature" + ] +} diff --git a/data/software/so/soulseek.json b/data/software/so/soulseek.json new file mode 100644 index 000000000000..8a48e080b787 --- /dev/null +++ b/data/software/so/soulseek.json @@ -0,0 +1,15 @@ +{ + "slug": "soulseek", + "name": "Soulseek", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q928074" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/so/sound-designer.json b/data/software/so/sound-designer.json new file mode 100644 index 000000000000..a3cbcd0d1082 --- /dev/null +++ b/data/software/so/sound-designer.json @@ -0,0 +1,8 @@ +{ + "slug": "sound-designer", + "name": "Sound Designer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60616729" + ] +} diff --git a/data/software/so/sound-voltex-iii-gravity-wars-e-amusement-cloud.json b/data/software/so/sound-voltex-iii-gravity-wars-e-amusement-cloud.json new file mode 100644 index 000000000000..6f1a97f16318 --- /dev/null +++ b/data/software/so/sound-voltex-iii-gravity-wars-e-amusement-cloud.json @@ -0,0 +1,8 @@ +{ + "slug": "sound-voltex-iii-gravity-wars-e-amusement-cloud", + "name": "Sound Voltex III: Gravity Wars e-Amusement Cloud", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q30106433" + ] +} diff --git a/data/software/so/soundapp.json b/data/software/so/soundapp.json new file mode 100644 index 000000000000..045eda1fa8f3 --- /dev/null +++ b/data/software/so/soundapp.json @@ -0,0 +1,14 @@ +{ + "slug": "soundapp", + "name": "SoundApp", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7564608" + ], + "operating_systems": [ + "System 7" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/so/soundbeam.json b/data/software/so/soundbeam.json new file mode 100644 index 000000000000..4f9f2acc7a4f --- /dev/null +++ b/data/software/so/soundbeam.json @@ -0,0 +1,12 @@ +{ + "slug": "soundbeam", + "name": "Soundbeam", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7564835" + ], + "release_date": "1989-01-01", + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/so/soundcite.json b/data/software/so/soundcite.json new file mode 100644 index 000000000000..6033bed87380 --- /dev/null +++ b/data/software/so/soundcite.json @@ -0,0 +1,8 @@ +{ + "slug": "soundcite", + "name": "Soundcite", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087719" + ] +} diff --git a/data/software/so/soundiiz.json b/data/software/so/soundiiz.json new file mode 100644 index 000000000000..f0824f7b1fd7 --- /dev/null +++ b/data/software/so/soundiiz.json @@ -0,0 +1,8 @@ +{ + "slug": "soundiiz", + "name": "Soundiiz", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22908929" + ] +} diff --git a/data/software/so/soundkonverter.json b/data/software/so/soundkonverter.json new file mode 100644 index 000000000000..4b6a5acc41d5 --- /dev/null +++ b/data/software/so/soundkonverter.json @@ -0,0 +1,8 @@ +{ + "slug": "soundkonverter", + "name": "SoundKonverter", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6132716" + ] +} diff --git a/data/software/so/soundplant.json b/data/software/so/soundplant.json new file mode 100644 index 000000000000..b827c23abc0e --- /dev/null +++ b/data/software/so/soundplant.json @@ -0,0 +1,8 @@ +{ + "slug": "soundplant", + "name": "Soundplant", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7564877" + ] +} diff --git a/data/software/so/soundscriber.json b/data/software/so/soundscriber.json new file mode 100644 index 000000000000..51240f510cb8 --- /dev/null +++ b/data/software/so/soundscriber.json @@ -0,0 +1,14 @@ +{ + "slug": "soundscriber", + "name": "SoundScriber", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105076391" + ], + "operating_systems": [ + "Microsoft Windows" + ], + "licenses": [ + "GNU General Public License" + ] +} diff --git a/data/software/so/soundslides.json b/data/software/so/soundslides.json new file mode 100644 index 000000000000..0b15fb4bc129 --- /dev/null +++ b/data/software/so/soundslides.json @@ -0,0 +1,8 @@ +{ + "slug": "soundslides", + "name": "Soundslides", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7564969" + ] +} diff --git a/data/software/so/soundsphere.json b/data/software/so/soundsphere.json new file mode 100644 index 000000000000..4879a1d569d3 --- /dev/null +++ b/data/software/so/soundsphere.json @@ -0,0 +1,8 @@ +{ + "slug": "soundsphere", + "name": "Soundsphere", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137647085" + ] +} diff --git a/data/software/so/source-connect.json b/data/software/so/source-connect.json new file mode 100644 index 000000000000..bee834582bd5 --- /dev/null +++ b/data/software/so/source-connect.json @@ -0,0 +1,8 @@ +{ + "slug": "source-connect", + "name": "Source-Connect", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131320014" + ] +} diff --git a/data/software/so/source-filmmaker-2.json b/data/software/so/source-filmmaker-2.json new file mode 100644 index 000000000000..88c933e0e0de --- /dev/null +++ b/data/software/so/source-filmmaker-2.json @@ -0,0 +1,9 @@ +{ + "slug": "source-filmmaker-2", + "name": "Source Filmmaker 2", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135985547" + ], + "release_date": "2015-09-09" +} diff --git a/data/software/so/source-filmmaker.json b/data/software/so/source-filmmaker.json new file mode 100644 index 000000000000..d368e467c786 --- /dev/null +++ b/data/software/so/source-filmmaker.json @@ -0,0 +1,25 @@ +{ + "slug": "source-filmmaker", + "name": "Source Filmmaker", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4049816" + ], + "release_date": "2012-07-10", + "developers": [ + "Valve Corporation" + ], + "publishers": [ + "Valve Corporation" + ], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [ + "Python" + ], + "licenses": [ + "proprietary license", + "freeware" + ] +} diff --git a/data/software/so/source-port.json b/data/software/so/source-port.json new file mode 100644 index 000000000000..a46cebe7188c --- /dev/null +++ b/data/software/so/source-port.json @@ -0,0 +1,8 @@ +{ + "slug": "source-port", + "name": "source port", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7565159" + ] +} diff --git a/data/software/so/source-sdk.json b/data/software/so/source-sdk.json new file mode 100644 index 000000000000..9fc184858951 --- /dev/null +++ b/data/software/so/source-sdk.json @@ -0,0 +1,8 @@ +{ + "slug": "source-sdk", + "name": "Source SDK", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q969130" + ] +} diff --git a/data/software/so/sourcery.json b/data/software/so/sourcery.json new file mode 100644 index 000000000000..6d335f370eed --- /dev/null +++ b/data/software/so/sourcery.json @@ -0,0 +1,8 @@ +{ + "slug": "sourcery", + "name": "Sourcery", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111465365" + ] +} diff --git a/data/software/so/sourcetrail.json b/data/software/so/sourcetrail.json new file mode 100644 index 000000000000..f8fcf263898f --- /dev/null +++ b/data/software/so/sourcetrail.json @@ -0,0 +1,8 @@ +{ + "slug": "sourcetrail", + "name": "Sourcetrail", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q104903141" + ] +} diff --git a/data/software/so/sourceweb.json b/data/software/so/sourceweb.json new file mode 100644 index 000000000000..8bf816d0d345 --- /dev/null +++ b/data/software/so/sourceweb.json @@ -0,0 +1,11 @@ +{ + "slug": "sourceweb", + "name": "SourceWeb", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122983986" + ], + "programming_languages": [ + "PHP" + ] +} diff --git a/data/software/sp/sp-forth.json b/data/software/sp/sp-forth.json new file mode 100644 index 000000000000..516e28fd53bb --- /dev/null +++ b/data/software/sp/sp-forth.json @@ -0,0 +1,14 @@ +{ + "slug": "sp-forth", + "name": "SP-Forth", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4048854" + ], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [ + "Forth" + ] +} diff --git a/data/software/sp/space-gremlin.json b/data/software/sp/space-gremlin.json new file mode 100644 index 000000000000..c7fcb48edbb0 --- /dev/null +++ b/data/software/sp/space-gremlin.json @@ -0,0 +1,9 @@ +{ + "slug": "space-gremlin", + "name": "Space Gremlin", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7572369" + ], + "release_date": "2011-01-01" +} diff --git a/data/software/sp/space-telescope-science-data-analysis-system.json b/data/software/sp/space-telescope-science-data-analysis-system.json new file mode 100644 index 000000000000..dcebe9b69b59 --- /dev/null +++ b/data/software/sp/space-telescope-science-data-analysis-system.json @@ -0,0 +1,11 @@ +{ + "slug": "space-telescope-science-data-analysis-system", + "name": "Space Telescope Science Data Analysis System", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16920177" + ], + "developers": [ + "Space Telescope Science Institute" + ] +} diff --git a/data/software/sp/space-weather-modeling-framework.json b/data/software/sp/space-weather-modeling-framework.json new file mode 100644 index 000000000000..efa596742fd2 --- /dev/null +++ b/data/software/sp/space-weather-modeling-framework.json @@ -0,0 +1,8 @@ +{ + "slug": "space-weather-modeling-framework", + "name": "Space Weather Modeling Framework", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137604289" + ] +} diff --git a/data/software/sp/spacechart.json b/data/software/sp/spacechart.json new file mode 100644 index 000000000000..0310e3bbca05 --- /dev/null +++ b/data/software/sp/spacechart.json @@ -0,0 +1,8 @@ +{ + "slug": "spacechart", + "name": "SpaceChart", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76184133" + ] +} diff --git a/data/software/sp/spaces.json b/data/software/sp/spaces.json new file mode 100644 index 000000000000..9e3be280eae4 --- /dev/null +++ b/data/software/sp/spaces.json @@ -0,0 +1,11 @@ +{ + "slug": "spaces", + "name": "Spaces", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1423430" + ], + "developers": [ + "Apple Inc." + ] +} diff --git a/data/software/sp/spacesniffer.json b/data/software/sp/spacesniffer.json new file mode 100644 index 000000000000..1b2212435aef --- /dev/null +++ b/data/software/sp/spacesniffer.json @@ -0,0 +1,11 @@ +{ + "slug": "spacesniffer", + "name": "SpaceSniffer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7572209" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/sp/spacetime-q121095302.json b/data/software/sp/spacetime-q121095302.json new file mode 100644 index 000000000000..d5050095eb45 --- /dev/null +++ b/data/software/sp/spacetime-q121095302.json @@ -0,0 +1,8 @@ +{ + "slug": "spacetime-q121095302", + "name": "SpaceTime", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121095302" + ] +} diff --git a/data/software/sp/spacetime.json b/data/software/sp/spacetime.json new file mode 100644 index 000000000000..3bdd130a3546 --- /dev/null +++ b/data/software/sp/spacetime.json @@ -0,0 +1,8 @@ +{ + "slug": "spacetime", + "name": "SpaceTime", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3965780" + ] +} diff --git a/data/software/sp/spacetoon-go.json b/data/software/sp/spacetoon-go.json new file mode 100644 index 000000000000..565e170cd75f --- /dev/null +++ b/data/software/sp/spacetoon-go.json @@ -0,0 +1,18 @@ +{ + "slug": "spacetoon-go", + "name": "Spacetoon Go", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q66438704" + ], + "developers": [ + "Spacetoon" + ], + "operating_systems": [ + "iPadOS", + "tvOS", + "visionOS", + "iOS", + "macOS" + ] +} diff --git a/data/software/sp/spacex-dragon-1.json b/data/software/sp/spacex-dragon-1.json new file mode 100644 index 000000000000..d8fd063311c7 --- /dev/null +++ b/data/software/sp/spacex-dragon-1.json @@ -0,0 +1,8 @@ +{ + "slug": "spacex-dragon-1", + "name": "SpaceX Dragon 1", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115829206" + ] +} diff --git a/data/software/sp/spade.json b/data/software/sp/spade.json new file mode 100644 index 000000000000..4dbbd26cb11c --- /dev/null +++ b/data/software/sp/spade.json @@ -0,0 +1,11 @@ +{ + "slug": "spade", + "name": "SPADE", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3444043" + ], + "programming_languages": [ + "Python" + ] +} diff --git a/data/software/sp/spaike.json b/data/software/sp/spaike.json new file mode 100644 index 000000000000..d68972987c56 --- /dev/null +++ b/data/software/sp/spaike.json @@ -0,0 +1,11 @@ +{ + "slug": "spaike", + "name": "SPAIKE", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140307586" + ], + "operating_systems": [ + "web browser" + ] +} diff --git a/data/software/sp/spamfighter.json b/data/software/sp/spamfighter.json new file mode 100644 index 000000000000..4684e95dca3c --- /dev/null +++ b/data/software/sp/spamfighter.json @@ -0,0 +1,15 @@ +{ + "slug": "spamfighter", + "name": "Spamfighter", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3031915" + ], + "release_date": "2004-01-01", + "developers": [ + "Spamfighter" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/sp/spamihilator.json b/data/software/sp/spamihilator.json new file mode 100644 index 000000000000..bc60b9a87b24 --- /dev/null +++ b/data/software/sp/spamihilator.json @@ -0,0 +1,11 @@ +{ + "slug": "spamihilator", + "name": "Spamihilator", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2306636" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/sp/spark-nlp.json b/data/software/sp/spark-nlp.json new file mode 100644 index 000000000000..2d0a6f1910fe --- /dev/null +++ b/data/software/sp/spark-nlp.json @@ -0,0 +1,14 @@ +{ + "slug": "spark-nlp", + "name": "Spark NLP", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q85802486" + ], + "developers": [ + "John Snow Labs" + ], + "licenses": [ + "Apache Software License 2.0" + ] +} diff --git a/data/software/sp/spark-social.json b/data/software/sp/spark-social.json new file mode 100644 index 000000000000..f81adc1f0908 --- /dev/null +++ b/data/software/sp/spark-social.json @@ -0,0 +1,8 @@ +{ + "slug": "spark-social", + "name": "Spark Social", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q19599675" + ] +} diff --git a/data/software/sp/sparkle.json b/data/software/sp/sparkle.json new file mode 100644 index 000000000000..7c37563feb28 --- /dev/null +++ b/data/software/sp/sparkle.json @@ -0,0 +1,8 @@ +{ + "slug": "sparkle", + "name": "Sparkle", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q97368666" + ] +} diff --git a/data/software/sp/sparksee.json b/data/software/sp/sparksee.json new file mode 100644 index 000000000000..cf0664abd10e --- /dev/null +++ b/data/software/sp/sparksee.json @@ -0,0 +1,8 @@ +{ + "slug": "sparksee", + "name": "Sparksee", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3817722" + ] +} diff --git a/data/software/sp/sparkwdsub.json b/data/software/sp/sparkwdsub.json new file mode 100644 index 000000000000..7730f91972a6 --- /dev/null +++ b/data/software/sp/sparkwdsub.json @@ -0,0 +1,17 @@ +{ + "slug": "sparkwdsub", + "name": "sparkwdsub", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113291821" + ], + "developers": [ + "José Emilio Labra Gayo" + ], + "programming_languages": [ + "Scala" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/sp/sparql-unicorn.json b/data/software/sp/sparql-unicorn.json new file mode 100644 index 000000000000..620ec779b2aa --- /dev/null +++ b/data/software/sp/sparql-unicorn.json @@ -0,0 +1,17 @@ +{ + "slug": "sparql-unicorn", + "name": "SPARQL Unicorn", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q71937877" + ], + "developers": [ + "Florian Thiery", + "Martina Trognitz" + ], + "genres": [ + "SPARQL", + "archaeology", + "linked data" + ] +} diff --git a/data/software/sp/sparqling-unicorn-qgis-plugin.json b/data/software/sp/sparqling-unicorn-qgis-plugin.json new file mode 100644 index 000000000000..068a0e105002 --- /dev/null +++ b/data/software/sp/sparqling-unicorn-qgis-plugin.json @@ -0,0 +1,16 @@ +{ + "slug": "sparqling-unicorn-qgis-plugin", + "name": "SPARQLing Unicorn QGIS Plugin", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q74005133" + ], + "developers": [ + "Research Squirrel Engineers Network", + "Timo Homburg", + "Florian Thiery" + ], + "programming_languages": [ + "Python" + ] +} diff --git a/data/software/sp/sparqlwrapper.json b/data/software/sp/sparqlwrapper.json new file mode 100644 index 000000000000..0f62ad173afe --- /dev/null +++ b/data/software/sp/sparqlwrapper.json @@ -0,0 +1,8 @@ +{ + "slug": "sparqlwrapper", + "name": "SPARQLWrapper", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q74697234" + ] +} diff --git a/data/software/sp/spatial-commander.json b/data/software/sp/spatial-commander.json new file mode 100644 index 000000000000..c9987f0b644f --- /dev/null +++ b/data/software/sp/spatial-commander.json @@ -0,0 +1,8 @@ +{ + "slug": "spatial-commander", + "name": "Spatial Commander", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117797443" + ] +} diff --git a/data/software/sp/spatial-modeling-environment.json b/data/software/sp/spatial-modeling-environment.json new file mode 100644 index 000000000000..0e605c07448c --- /dev/null +++ b/data/software/sp/spatial-modeling-environment.json @@ -0,0 +1,8 @@ +{ + "slug": "spatial-modeling-environment", + "name": "Spatial Modeling Environment", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115715491" + ] +} diff --git a/data/software/sp/spatial-query-server.json b/data/software/sp/spatial-query-server.json new file mode 100644 index 000000000000..5679e2db2e33 --- /dev/null +++ b/data/software/sp/spatial-query-server.json @@ -0,0 +1,17 @@ +{ + "slug": "spatial-query-server", + "name": "Spatial Query Server", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7574043" + ], + "release_date": "2001-12-01", + "developers": [ + "Boeing" + ], + "operating_systems": [ + "Silicon Graphics", + "Solaris", + "Microsoft Windows" + ] +} diff --git a/data/software/sp/spatialnote.json b/data/software/sp/spatialnote.json new file mode 100644 index 000000000000..5dbfe608b498 --- /dev/null +++ b/data/software/sp/spatialnote.json @@ -0,0 +1,8 @@ +{ + "slug": "spatialnote", + "name": "SpatialNote", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084582" + ] +} diff --git a/data/software/sp/spatstat.json b/data/software/sp/spatstat.json new file mode 100644 index 000000000000..8c2934d109b8 --- /dev/null +++ b/data/software/sp/spatstat.json @@ -0,0 +1,8 @@ +{ + "slug": "spatstat", + "name": "spatstat", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109878465" + ] +} diff --git a/data/software/sp/spawn-fcgi.json b/data/software/sp/spawn-fcgi.json new file mode 100644 index 000000000000..ef6ab9664251 --- /dev/null +++ b/data/software/sp/spawn-fcgi.json @@ -0,0 +1,8 @@ +{ + "slug": "spawn-fcgi", + "name": "spawn-fcgi", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62865097" + ] +} diff --git a/data/software/sp/spc-vision.json b/data/software/sp/spc-vision.json new file mode 100644 index 000000000000..9b7dc24d3da5 --- /dev/null +++ b/data/software/sp/spc-vision.json @@ -0,0 +1,8 @@ +{ + "slug": "spc-vision", + "name": "SPC Vision", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3459958" + ] +} diff --git a/data/software/sp/spdx-license-list.json b/data/software/sp/spdx-license-list.json new file mode 100644 index 000000000000..2eda64e5e2b9 --- /dev/null +++ b/data/software/sp/spdx-license-list.json @@ -0,0 +1,8 @@ +{ + "slug": "spdx-license-list", + "name": "SPDX License List", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q56423180" + ] +} diff --git a/data/software/sp/spec-cleaner.json b/data/software/sp/spec-cleaner.json new file mode 100644 index 000000000000..59cfa46e776b --- /dev/null +++ b/data/software/sp/spec-cleaner.json @@ -0,0 +1,11 @@ +{ + "slug": "spec-cleaner", + "name": "spec-cleaner", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975485" + ], + "licenses": [ + "3-clause BSD License" + ] +} diff --git a/data/software/sp/spec-explorer.json b/data/software/sp/spec-explorer.json new file mode 100644 index 000000000000..9a19d57d0e47 --- /dev/null +++ b/data/software/sp/spec-explorer.json @@ -0,0 +1,8 @@ +{ + "slug": "spec-explorer", + "name": "Spec Explorer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7574423" + ] +} diff --git a/data/software/sp/specctra.json b/data/software/sp/specctra.json new file mode 100644 index 000000000000..7a798f20c595 --- /dev/null +++ b/data/software/sp/specctra.json @@ -0,0 +1,9 @@ +{ + "slug": "specctra", + "name": "Specctra", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4049875" + ], + "release_date": "1989-01-01" +} diff --git a/data/software/sp/specify-collections-management-software.json b/data/software/sp/specify-collections-management-software.json new file mode 100644 index 000000000000..012fc37d1519 --- /dev/null +++ b/data/software/sp/specify-collections-management-software.json @@ -0,0 +1,8 @@ +{ + "slug": "specify-collections-management-software", + "name": "Specify Collections Management Software", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084583" + ] +} diff --git a/data/software/sp/specify.json b/data/software/sp/specify.json new file mode 100644 index 000000000000..e1d8588787ec --- /dev/null +++ b/data/software/sp/specify.json @@ -0,0 +1,8 @@ +{ + "slug": "specify", + "name": "Specify", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111211715" + ] +} diff --git a/data/software/sp/spectasia.json b/data/software/sp/spectasia.json new file mode 100644 index 000000000000..f3dfa87faa35 --- /dev/null +++ b/data/software/sp/spectasia.json @@ -0,0 +1,11 @@ +{ + "slug": "spectasia", + "name": "Spectasia", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7575131" + ], + "programming_languages": [ + "Java" + ] +} diff --git a/data/software/sp/specto.json b/data/software/sp/specto.json new file mode 100644 index 000000000000..54bea112bca4 --- /dev/null +++ b/data/software/sp/specto.json @@ -0,0 +1,8 @@ +{ + "slug": "specto", + "name": "Specto", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7575146" + ] +} diff --git a/data/software/sp/spectools.json b/data/software/sp/spectools.json new file mode 100644 index 000000000000..731d954a9346 --- /dev/null +++ b/data/software/sp/spectools.json @@ -0,0 +1,8 @@ +{ + "slug": "spectools", + "name": "spectools", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975486" + ] +} diff --git a/data/software/sp/spectrum-512.json b/data/software/sp/spectrum-512.json new file mode 100644 index 000000000000..8b2bfff065b6 --- /dev/null +++ b/data/software/sp/spectrum-512.json @@ -0,0 +1,8 @@ +{ + "slug": "spectrum-512", + "name": "Spectrum 512", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25383498" + ] +} diff --git a/data/software/sp/spedas.json b/data/software/sp/spedas.json new file mode 100644 index 000000000000..7e65ec6b5205 --- /dev/null +++ b/data/software/sp/spedas.json @@ -0,0 +1,11 @@ +{ + "slug": "spedas", + "name": "SPEDAS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18155416" + ], + "programming_languages": [ + "Interactive Data Language" + ] +} diff --git a/data/software/sp/speechd-el.json b/data/software/sp/speechd-el.json new file mode 100644 index 000000000000..d6c09e16ec2d --- /dev/null +++ b/data/software/sp/speechd-el.json @@ -0,0 +1,8 @@ +{ + "slug": "speechd-el", + "name": "speechd-el", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62865091" + ] +} diff --git a/data/software/sp/speed2000.json b/data/software/sp/speed2000.json new file mode 100644 index 000000000000..40432fad0b61 --- /dev/null +++ b/data/software/sp/speed2000.json @@ -0,0 +1,11 @@ +{ + "slug": "speed2000", + "name": "SPEED2000", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7392523" + ], + "developers": [ + "Sigrity" + ] +} diff --git a/data/software/sp/speedfan.json b/data/software/sp/speedfan.json new file mode 100644 index 000000000000..220283d81a1e --- /dev/null +++ b/data/software/sp/speedfan.json @@ -0,0 +1,17 @@ +{ + "slug": "speedfan", + "name": "SpeedFan", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q52294" + ], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [ + "Object Pascal" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/sp/speedify.json b/data/software/sp/speedify.json new file mode 100644 index 000000000000..4892bf7f9974 --- /dev/null +++ b/data/software/sp/speedify.json @@ -0,0 +1,8 @@ +{ + "slug": "speedify", + "name": "Speedify", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134237642" + ] +} diff --git a/data/software/sp/speedlock.json b/data/software/sp/speedlock.json new file mode 100644 index 000000000000..23049f79dd3a --- /dev/null +++ b/data/software/sp/speedlock.json @@ -0,0 +1,8 @@ +{ + "slug": "speedlock", + "name": "Speedlock", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7575639" + ] +} diff --git a/data/software/sp/spejd.json b/data/software/sp/spejd.json new file mode 100644 index 000000000000..084c8ebe83ff --- /dev/null +++ b/data/software/sp/spejd.json @@ -0,0 +1,8 @@ +{ + "slug": "spejd", + "name": "Spejd", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084584" + ] +} diff --git a/data/software/sp/speko.json b/data/software/sp/speko.json new file mode 100644 index 000000000000..18e1d4feb5bf --- /dev/null +++ b/data/software/sp/speko.json @@ -0,0 +1,8 @@ +{ + "slug": "speko", + "name": "Speko", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140187873" + ] +} diff --git a/data/software/sp/spexo-addons.json b/data/software/sp/spexo-addons.json new file mode 100644 index 000000000000..88ca808c76e3 --- /dev/null +++ b/data/software/sp/spexo-addons.json @@ -0,0 +1,14 @@ +{ + "slug": "spexo-addons", + "name": "Spexo Addons", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138721908" + ], + "developers": [ + "Fast Themes" + ], + "publishers": [ + "Fast Themes" + ] +} diff --git a/data/software/sp/spfft.json b/data/software/sp/spfft.json new file mode 100644 index 000000000000..96f26949002e --- /dev/null +++ b/data/software/sp/spfft.json @@ -0,0 +1,11 @@ +{ + "slug": "spfft", + "name": "SpFFT", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120241451" + ], + "licenses": [ + "3-clause BSD License" + ] +} diff --git a/data/software/sp/spharm-pdm.json b/data/software/sp/spharm-pdm.json new file mode 100644 index 000000000000..9f9442019e17 --- /dev/null +++ b/data/software/sp/spharm-pdm.json @@ -0,0 +1,11 @@ +{ + "slug": "spharm-pdm", + "name": "SPHARM-PDM", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7392542" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/sp/spice-gtk.json b/data/software/sp/spice-gtk.json new file mode 100644 index 000000000000..1ce7d1bb124e --- /dev/null +++ b/data/software/sp/spice-gtk.json @@ -0,0 +1,8 @@ +{ + "slug": "spice-gtk", + "name": "spice-gtk", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975487" + ] +} diff --git a/data/software/sp/spice-opus.json b/data/software/sp/spice-opus.json new file mode 100644 index 000000000000..c7e7c5106b10 --- /dev/null +++ b/data/software/sp/spice-opus.json @@ -0,0 +1,8 @@ +{ + "slug": "spice-opus", + "name": "SPICE OPUS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122212505" + ] +} diff --git a/data/software/sp/spice-protocol.json b/data/software/sp/spice-protocol.json new file mode 100644 index 000000000000..0aff3411690f --- /dev/null +++ b/data/software/sp/spice-protocol.json @@ -0,0 +1,8 @@ +{ + "slug": "spice-protocol", + "name": "spice-protocol", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975488" + ] +} diff --git a/data/software/sp/spider-project.json b/data/software/sp/spider-project.json new file mode 100644 index 000000000000..27b1691695f4 --- /dev/null +++ b/data/software/sp/spider-project.json @@ -0,0 +1,8 @@ +{ + "slug": "spider-project", + "name": "Spider Project", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q12072557" + ] +} diff --git a/data/software/sp/spiking-mobile-app.json b/data/software/sp/spiking-mobile-app.json new file mode 100644 index 000000000000..eaa1ac96da2f --- /dev/null +++ b/data/software/sp/spiking-mobile-app.json @@ -0,0 +1,11 @@ +{ + "slug": "spiking-mobile-app", + "name": "Spiking (mobile app)", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q24024832" + ], + "operating_systems": [ + "iOS" + ] +} diff --git a/data/software/sp/spinach.json b/data/software/sp/spinach.json new file mode 100644 index 000000000000..335d6d069f93 --- /dev/null +++ b/data/software/sp/spinach.json @@ -0,0 +1,8 @@ +{ + "slug": "spinach", + "name": "Spinach", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123603179" + ] +} diff --git a/data/software/sp/spinal-cord-toolbox.json b/data/software/sp/spinal-cord-toolbox.json new file mode 100644 index 000000000000..03f28bd2f68c --- /dev/null +++ b/data/software/sp/spinal-cord-toolbox.json @@ -0,0 +1,14 @@ +{ + "slug": "spinal-cord-toolbox", + "name": "Spinal Cord Toolbox", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22908987" + ], + "programming_languages": [ + "Python" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/sp/spinnaker.json b/data/software/sp/spinnaker.json new file mode 100644 index 000000000000..4d2cc6956556 --- /dev/null +++ b/data/software/sp/spinnaker.json @@ -0,0 +1,11 @@ +{ + "slug": "spinnaker", + "name": "Spinnaker", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q65046096" + ], + "programming_languages": [ + "Java" + ] +} diff --git a/data/software/sp/spinrite.json b/data/software/sp/spinrite.json new file mode 100644 index 000000000000..2182b3a8a449 --- /dev/null +++ b/data/software/sp/spinrite.json @@ -0,0 +1,17 @@ +{ + "slug": "spinrite", + "name": "SpinRite", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3704837" + ], + "developers": [ + "Steve Gibson" + ], + "programming_languages": [ + "assembly language" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/sp/spire.json b/data/software/sp/spire.json new file mode 100644 index 000000000000..5270c905c0a0 --- /dev/null +++ b/data/software/sp/spire.json @@ -0,0 +1,8 @@ +{ + "slug": "spire", + "name": "Spire", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22908994" + ] +} diff --git a/data/software/sp/splash.json b/data/software/sp/splash.json new file mode 100644 index 000000000000..765267707999 --- /dev/null +++ b/data/software/sp/splash.json @@ -0,0 +1,14 @@ +{ + "slug": "splash", + "name": "Splash", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137592812" + ], + "programming_languages": [ + "Fortran" + ], + "licenses": [ + "GNU General Public License, version 2.0" + ] +} diff --git a/data/software/sp/splashy.json b/data/software/sp/splashy.json new file mode 100644 index 000000000000..4e0d2e9ff1bb --- /dev/null +++ b/data/software/sp/splashy.json @@ -0,0 +1,11 @@ +{ + "slug": "splashy", + "name": "Splashy", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7578411" + ], + "operating_systems": [ + "Unix-like operating system" + ] +} diff --git a/data/software/sp/splat.json b/data/software/sp/splat.json new file mode 100644 index 000000000000..aaaf395d2b94 --- /dev/null +++ b/data/software/sp/splat.json @@ -0,0 +1,8 @@ +{ + "slug": "splat", + "name": "splat", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60918565" + ] +} diff --git a/data/software/sp/spleeter.json b/data/software/sp/spleeter.json new file mode 100644 index 000000000000..f49c46d6ebde --- /dev/null +++ b/data/software/sp/spleeter.json @@ -0,0 +1,22 @@ +{ + "slug": "spleeter", + "name": "Spleeter", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q98716837" + ], + "release_date": "2019-10-28", + "developers": [ + "Deezer" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [ + "Python" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/sp/split2flac.json b/data/software/sp/split2flac.json new file mode 100644 index 000000000000..6d96b4d4ce4c --- /dev/null +++ b/data/software/sp/split2flac.json @@ -0,0 +1,8 @@ +{ + "slug": "split2flac", + "name": "split2flac", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975491" + ] +} diff --git a/data/software/sp/splitstree.json b/data/software/sp/splitstree.json new file mode 100644 index 000000000000..d006017162d1 --- /dev/null +++ b/data/software/sp/splitstree.json @@ -0,0 +1,12 @@ +{ + "slug": "splitstree", + "name": "SplitsTree", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q258956" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/software/sp/splitvt.json b/data/software/sp/splitvt.json new file mode 100644 index 000000000000..627a02bedb65 --- /dev/null +++ b/data/software/sp/splitvt.json @@ -0,0 +1,8 @@ +{ + "slug": "splitvt", + "name": "splitvt", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62865084" + ] +} diff --git a/data/software/sp/spm.json b/data/software/sp/spm.json new file mode 100644 index 000000000000..f6fc56d2bc62 --- /dev/null +++ b/data/software/sp/spm.json @@ -0,0 +1,16 @@ +{ + "slug": "spm", + "name": "SPM", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q41566485" + ], + "developers": [ + "John Ashburner", + "Jean-Baptiste Poline", + "Karl J. Friston" + ], + "programming_languages": [ + "MATLAB" + ] +} diff --git a/data/software/sp/spm2.json b/data/software/sp/spm2.json new file mode 100644 index 000000000000..47ae45ecf213 --- /dev/null +++ b/data/software/sp/spm2.json @@ -0,0 +1,9 @@ +{ + "slug": "spm2", + "name": "SPM2", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q41566670" + ], + "release_date": "2003-01-01" +} diff --git a/data/software/sp/spm5.json b/data/software/sp/spm5.json new file mode 100644 index 000000000000..00f5d7f59013 --- /dev/null +++ b/data/software/sp/spm5.json @@ -0,0 +1,9 @@ +{ + "slug": "spm5", + "name": "SPM5", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q41569923" + ], + "release_date": "2005-12-01" +} diff --git a/data/software/sp/spm8.json b/data/software/sp/spm8.json new file mode 100644 index 000000000000..2be5b1724b01 --- /dev/null +++ b/data/software/sp/spm8.json @@ -0,0 +1,9 @@ +{ + "slug": "spm8", + "name": "SPM8", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q41569758" + ], + "release_date": "2009-04-01" +} diff --git a/data/software/sp/spm95.json b/data/software/sp/spm95.json new file mode 100644 index 000000000000..94a025b5fd52 --- /dev/null +++ b/data/software/sp/spm95.json @@ -0,0 +1,8 @@ +{ + "slug": "spm95", + "name": "SPM95", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q41795649" + ] +} diff --git a/data/software/sp/spm96.json b/data/software/sp/spm96.json new file mode 100644 index 000000000000..961469899b72 --- /dev/null +++ b/data/software/sp/spm96.json @@ -0,0 +1,12 @@ +{ + "slug": "spm96", + "name": "SPM96", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q41793739" + ], + "release_date": "1997-04-09", + "programming_languages": [ + "MATLAB" + ] +} diff --git a/data/software/sp/spm97.json b/data/software/sp/spm97.json new file mode 100644 index 000000000000..8de9ca1d80df --- /dev/null +++ b/data/software/sp/spm97.json @@ -0,0 +1,9 @@ +{ + "slug": "spm97", + "name": "SPM97", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q41793744" + ], + "release_date": "1998-07-31" +} diff --git a/data/software/sp/spoiler-shield.json b/data/software/sp/spoiler-shield.json new file mode 100644 index 000000000000..28bd1931befe --- /dev/null +++ b/data/software/sp/spoiler-shield.json @@ -0,0 +1,9 @@ +{ + "slug": "spoiler-shield", + "name": "Spoiler Shield", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18392408" + ], + "release_date": "2013-01-01" +} diff --git a/data/software/sp/spool.json b/data/software/sp/spool.json new file mode 100644 index 000000000000..f24b1c1e35db --- /dev/null +++ b/data/software/sp/spool.json @@ -0,0 +1,14 @@ +{ + "slug": "spool", + "name": "Spool", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7579138" + ], + "operating_systems": [ + "iOS" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/sp/spoon.json b/data/software/sp/spoon.json new file mode 100644 index 000000000000..29161412fb58 --- /dev/null +++ b/data/software/sp/spoon.json @@ -0,0 +1,8 @@ +{ + "slug": "spoon", + "name": "Spoon", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q96049864" + ] +} diff --git a/data/software/sp/spoonwep-wpa.json b/data/software/sp/spoonwep-wpa.json new file mode 100644 index 000000000000..ab59cc84abfa --- /dev/null +++ b/data/software/sp/spoonwep-wpa.json @@ -0,0 +1,8 @@ +{ + "slug": "spoonwep-wpa", + "name": "SpoonWEP/WPA", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7579145" + ] +} diff --git a/data/software/sp/spork.json b/data/software/sp/spork.json new file mode 100644 index 000000000000..438e6b736e7c --- /dev/null +++ b/data/software/sp/spork.json @@ -0,0 +1,11 @@ +{ + "slug": "spork", + "name": "spork", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127485557" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/sp/sports-tracker.json b/data/software/sp/sports-tracker.json new file mode 100644 index 000000000000..3d3f9b354e35 --- /dev/null +++ b/data/software/sp/sports-tracker.json @@ -0,0 +1,11 @@ +{ + "slug": "sports-tracker", + "name": "Sports Tracker", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q869375" + ], + "operating_systems": [ + "iOS" + ] +} diff --git a/data/software/sp/spotify-greenroom.json b/data/software/sp/spotify-greenroom.json new file mode 100644 index 000000000000..f612a20e43e5 --- /dev/null +++ b/data/software/sp/spotify-greenroom.json @@ -0,0 +1,14 @@ +{ + "slug": "spotify-greenroom", + "name": "Spotify Greenroom", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107297832" + ], + "developers": [ + "Spotify" + ], + "operating_systems": [ + "iOS" + ] +} diff --git a/data/software/sp/spotnet.json b/data/software/sp/spotnet.json new file mode 100644 index 000000000000..dcb621e39902 --- /dev/null +++ b/data/software/sp/spotnet.json @@ -0,0 +1,8 @@ +{ + "slug": "spotnet", + "name": "Spotnet", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2367910" + ] +} diff --git a/data/software/sp/spotsetter.json b/data/software/sp/spotsetter.json new file mode 100644 index 000000000000..e6fa9f926ea0 --- /dev/null +++ b/data/software/sp/spotsetter.json @@ -0,0 +1,8 @@ +{ + "slug": "spotsetter", + "name": "Spotsetter", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18706068" + ] +} diff --git a/data/software/sp/sppas.json b/data/software/sp/sppas.json new file mode 100644 index 000000000000..a42a0bcee839 --- /dev/null +++ b/data/software/sp/sppas.json @@ -0,0 +1,8 @@ +{ + "slug": "sppas", + "name": "SPPAS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084585" + ] +} diff --git a/data/software/sp/spread-q139254007.json b/data/software/sp/spread-q139254007.json new file mode 100644 index 000000000000..720abe6fe687 --- /dev/null +++ b/data/software/sp/spread-q139254007.json @@ -0,0 +1,12 @@ +{ + "slug": "spread-q139254007", + "name": "Spread", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139254007" + ], + "release_date": "2025-02-01", + "developers": [ + "Pixelic" + ] +} diff --git a/data/software/sp/spread-sheet-widget.json b/data/software/sp/spread-sheet-widget.json new file mode 100644 index 000000000000..3ae3c9416d8a --- /dev/null +++ b/data/software/sp/spread-sheet-widget.json @@ -0,0 +1,8 @@ +{ + "slug": "spread-sheet-widget", + "name": "Spread Sheet Widget", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76184490" + ] +} diff --git a/data/software/sp/spread-toolkit.json b/data/software/sp/spread-toolkit.json new file mode 100644 index 000000000000..355e2ab30a08 --- /dev/null +++ b/data/software/sp/spread-toolkit.json @@ -0,0 +1,8 @@ +{ + "slug": "spread-toolkit", + "name": "Spread Toolkit", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7580254" + ] +} diff --git a/data/software/sp/spread.json b/data/software/sp/spread.json new file mode 100644 index 000000000000..ffc521aba99b --- /dev/null +++ b/data/software/sp/spread.json @@ -0,0 +1,8 @@ +{ + "slug": "spread", + "name": "spread", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63064956" + ] +} diff --git a/data/software/sp/spring-batch.json b/data/software/sp/spring-batch.json new file mode 100644 index 000000000000..f971e0807c8a --- /dev/null +++ b/data/software/sp/spring-batch.json @@ -0,0 +1,17 @@ +{ + "slug": "spring-batch", + "name": "Spring Batch", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7580383" + ], + "operating_systems": [ + "cross-platform" + ], + "programming_languages": [ + "Java" + ], + "licenses": [ + "Apache License" + ] +} diff --git a/data/software/sp/spring-security.json b/data/software/sp/spring-security.json new file mode 100644 index 000000000000..bb7ad20789d9 --- /dev/null +++ b/data/software/sp/spring-security.json @@ -0,0 +1,17 @@ +{ + "slug": "spring-security", + "name": "Spring Security", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4049968" + ], + "operating_systems": [ + "cross-platform" + ], + "programming_languages": [ + "Java" + ], + "licenses": [ + "Apache License" + ] +} diff --git a/data/software/sp/spring.json b/data/software/sp/spring.json new file mode 100644 index 000000000000..a6c626d273da --- /dev/null +++ b/data/software/sp/spring.json @@ -0,0 +1,8 @@ +{ + "slug": "spring", + "name": "SPRING", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7392646" + ] +} diff --git a/data/software/sp/springboard.json b/data/software/sp/springboard.json new file mode 100644 index 000000000000..b28ee1b93f0e --- /dev/null +++ b/data/software/sp/springboard.json @@ -0,0 +1,11 @@ +{ + "slug": "springboard", + "name": "SpringBoard", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1190015" + ], + "developers": [ + "Apple Inc." + ] +} diff --git a/data/software/sp/springpad.json b/data/software/sp/springpad.json new file mode 100644 index 000000000000..5bcabe33e0d8 --- /dev/null +++ b/data/software/sp/springpad.json @@ -0,0 +1,8 @@ +{ + "slug": "springpad", + "name": "Springpad", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7581159" + ] +} diff --git a/data/software/sp/sprutcam.json b/data/software/sp/sprutcam.json new file mode 100644 index 000000000000..93298eb61282 --- /dev/null +++ b/data/software/sp/sprutcam.json @@ -0,0 +1,8 @@ +{ + "slug": "sprutcam", + "name": "SprutCAM", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q944850" + ] +} diff --git a/data/software/sp/spry-framework.json b/data/software/sp/spry-framework.json new file mode 100644 index 000000000000..df43e7316400 --- /dev/null +++ b/data/software/sp/spry-framework.json @@ -0,0 +1,8 @@ +{ + "slug": "spry-framework", + "name": "Spry framework", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2011281" + ] +} diff --git a/data/software/sp/spss-modeler.json b/data/software/sp/spss-modeler.json new file mode 100644 index 000000000000..06d0e668ce47 --- /dev/null +++ b/data/software/sp/spss-modeler.json @@ -0,0 +1,11 @@ +{ + "slug": "spss-modeler", + "name": "SPSS Modeler", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7392671" + ], + "developers": [ + "IBM" + ] +} diff --git a/data/software/sp/sputnik.json b/data/software/sp/sputnik.json new file mode 100644 index 000000000000..2fa86e650e29 --- /dev/null +++ b/data/software/sp/sputnik.json @@ -0,0 +1,8 @@ +{ + "slug": "sputnik", + "name": "Sputnik", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7581617" + ] +} diff --git a/data/software/sp/spy-sweeper.json b/data/software/sp/spy-sweeper.json new file mode 100644 index 000000000000..a67e55b6002c --- /dev/null +++ b/data/software/sp/spy-sweeper.json @@ -0,0 +1,11 @@ +{ + "slug": "spy-sweeper", + "name": "Spy Sweeper", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5921582" + ], + "developers": [ + "Webroot Inc." + ] +} diff --git a/data/software/sp/spybouncer.json b/data/software/sp/spybouncer.json new file mode 100644 index 000000000000..5eb0b9d28e8a --- /dev/null +++ b/data/software/sp/spybouncer.json @@ -0,0 +1,8 @@ +{ + "slug": "spybouncer", + "name": "SpyBouncer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7581648" + ] +} diff --git a/data/software/sp/spyhunter.json b/data/software/sp/spyhunter.json new file mode 100644 index 000000000000..3de7ddd5f708 --- /dev/null +++ b/data/software/sp/spyhunter.json @@ -0,0 +1,8 @@ +{ + "slug": "spyhunter", + "name": "SpyHunter", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q30606342" + ] +} diff --git a/data/software/sp/spysubtract.json b/data/software/sp/spysubtract.json new file mode 100644 index 000000000000..13fb62d7ada8 --- /dev/null +++ b/data/software/sp/spysubtract.json @@ -0,0 +1,8 @@ +{ + "slug": "spysubtract", + "name": "SpySubtract", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7581655" + ] +} diff --git a/data/software/sp/spywareblaster.json b/data/software/sp/spywareblaster.json new file mode 100644 index 000000000000..6906a3f028b7 --- /dev/null +++ b/data/software/sp/spywareblaster.json @@ -0,0 +1,11 @@ +{ + "slug": "spywareblaster", + "name": "SpywareBlaster", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2092500" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/sp/spywareguard.json b/data/software/sp/spywareguard.json new file mode 100644 index 000000000000..b295d33cb88e --- /dev/null +++ b/data/software/sp/spywareguard.json @@ -0,0 +1,8 @@ +{ + "slug": "spywareguard", + "name": "SpywareGuard", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7581823" + ] +} diff --git a/data/software/sq/sql-plus.json b/data/software/sq/sql-plus.json new file mode 100644 index 000000000000..4a2f421dbc33 --- /dev/null +++ b/data/software/sq/sql-plus.json @@ -0,0 +1,8 @@ +{ + "slug": "sql-plus", + "name": "SQL*Plus", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2575010" + ] +} diff --git a/data/software/sq/sql-server-integration-services.json b/data/software/sq/sql-server-integration-services.json new file mode 100644 index 000000000000..1f6999322bc7 --- /dev/null +++ b/data/software/sq/sql-server-integration-services.json @@ -0,0 +1,11 @@ +{ + "slug": "sql-server-integration-services", + "name": "SQL Server Integration Services", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1231051" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/sq/sqlalchemy-rqlite.json b/data/software/sq/sqlalchemy-rqlite.json new file mode 100644 index 000000000000..007c391bcd8a --- /dev/null +++ b/data/software/sq/sqlalchemy-rqlite.json @@ -0,0 +1,11 @@ +{ + "slug": "sqlalchemy-rqlite", + "name": "sqlalchemy-rqlite", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975492" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/sq/sqlcipher.json b/data/software/sq/sqlcipher.json new file mode 100644 index 000000000000..a7f3c3ecf292 --- /dev/null +++ b/data/software/sq/sqlcipher.json @@ -0,0 +1,11 @@ +{ + "slug": "sqlcipher", + "name": "SQLCipher", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62865069" + ], + "licenses": [ + "3-clause BSD License" + ] +} diff --git a/data/software/sq/sqlgrey.json b/data/software/sq/sqlgrey.json new file mode 100644 index 000000000000..1df44a72561b --- /dev/null +++ b/data/software/sq/sqlgrey.json @@ -0,0 +1,8 @@ +{ + "slug": "sqlgrey", + "name": "SQLgrey", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62865059" + ] +} diff --git a/data/software/sq/sqlite-manager.json b/data/software/sq/sqlite-manager.json new file mode 100644 index 000000000000..9988c02823d7 --- /dev/null +++ b/data/software/sq/sqlite-manager.json @@ -0,0 +1,8 @@ +{ + "slug": "sqlite-manager", + "name": "SQLite Manager", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7392745" + ] +} diff --git a/data/software/sq/sqlitestudio.json b/data/software/sq/sqlitestudio.json new file mode 100644 index 000000000000..e761869c7993 --- /dev/null +++ b/data/software/sq/sqlitestudio.json @@ -0,0 +1,8 @@ +{ + "slug": "sqlitestudio", + "name": "SQLiteStudio", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q114282317" + ] +} diff --git a/data/software/sq/sqlstream.json b/data/software/sq/sqlstream.json new file mode 100644 index 000000000000..0abc13580b3b --- /dev/null +++ b/data/software/sq/sqlstream.json @@ -0,0 +1,9 @@ +{ + "slug": "sqlstream", + "name": "Sqlstream", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7581875" + ], + "release_date": "2009-01-01" +} diff --git a/data/software/sq/sqlyog.json b/data/software/sq/sqlyog.json new file mode 100644 index 000000000000..894dddaf58fd --- /dev/null +++ b/data/software/sq/sqlyog.json @@ -0,0 +1,8 @@ +{ + "slug": "sqlyog", + "name": "SQLyog", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q564657" + ] +} diff --git a/data/software/sq/sqrl.json b/data/software/sq/sqrl.json new file mode 100644 index 000000000000..b985a1836d33 --- /dev/null +++ b/data/software/sq/sqrl.json @@ -0,0 +1,11 @@ +{ + "slug": "sqrl", + "name": "SQRL", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17085036" + ], + "developers": [ + "Steve Gibson" + ] +} diff --git a/data/software/sq/squash-autom.json b/data/software/sq/squash-autom.json new file mode 100644 index 000000000000..5587a800f444 --- /dev/null +++ b/data/software/sq/squash-autom.json @@ -0,0 +1,18 @@ +{ + "slug": "squash-autom", + "name": "Squash AUTOM", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110620332" + ], + "developers": [ + "Henix" + ], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [ + "Java", + "Python" + ] +} diff --git a/data/software/sq/squash-devops.json b/data/software/sq/squash-devops.json new file mode 100644 index 000000000000..20d9271fea18 --- /dev/null +++ b/data/software/sq/squash-devops.json @@ -0,0 +1,18 @@ +{ + "slug": "squash-devops", + "name": "Squash DEVOPS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110620942" + ], + "developers": [ + "Henix" + ], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [ + "Java", + "Python" + ] +} diff --git a/data/software/sq/squashdelta.json b/data/software/sq/squashdelta.json new file mode 100644 index 000000000000..62fd822ae05f --- /dev/null +++ b/data/software/sq/squashdelta.json @@ -0,0 +1,8 @@ +{ + "slug": "squashdelta", + "name": "squashdelta", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975494" + ] +} diff --git a/data/software/sq/squashmerge.json b/data/software/sq/squashmerge.json new file mode 100644 index 000000000000..3efe4f67b87a --- /dev/null +++ b/data/software/sq/squashmerge.json @@ -0,0 +1,8 @@ +{ + "slug": "squashmerge", + "name": "squashmerge", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975496" + ] +} diff --git a/data/software/sq/squidview.json b/data/software/sq/squidview.json new file mode 100644 index 000000000000..845a4e3be364 --- /dev/null +++ b/data/software/sq/squidview.json @@ -0,0 +1,8 @@ +{ + "slug": "squidview", + "name": "squidview", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62864937" + ] +} diff --git a/data/software/sq/squish-by-froglogic.json b/data/software/sq/squish-by-froglogic.json new file mode 100644 index 000000000000..4ab029a3e264 --- /dev/null +++ b/data/software/sq/squish-by-froglogic.json @@ -0,0 +1,11 @@ +{ + "slug": "squish-by-froglogic", + "name": "Squish by froglogic", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7582358" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/sq/squore.json b/data/software/sq/squore.json new file mode 100644 index 000000000000..472a26ffffad --- /dev/null +++ b/data/software/sq/squore.json @@ -0,0 +1,8 @@ +{ + "slug": "squore", + "name": "SQuORE", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7392749" + ] +} diff --git a/data/software/sr/sr-3d-builder.json b/data/software/sr/sr-3d-builder.json new file mode 100644 index 000000000000..f5a8c66ec114 --- /dev/null +++ b/data/software/sr/sr-3d-builder.json @@ -0,0 +1,11 @@ +{ + "slug": "sr-3d-builder", + "name": "SR 3D Builder", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q47233965" + ], + "developers": [ + "Sergio Reano" + ] +} diff --git a/data/software/sr/srecord.json b/data/software/sr/srecord.json new file mode 100644 index 000000000000..3800204bd495 --- /dev/null +++ b/data/software/sr/srecord.json @@ -0,0 +1,8 @@ +{ + "slug": "srecord", + "name": "srecord", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62864930" + ] +} diff --git a/data/software/sr/srilm-sri-language-modelling-toolkit.json b/data/software/sr/srilm-sri-language-modelling-toolkit.json new file mode 100644 index 000000000000..28a97454b1c6 --- /dev/null +++ b/data/software/sr/srilm-sri-language-modelling-toolkit.json @@ -0,0 +1,8 @@ +{ + "slug": "srilm-sri-language-modelling-toolkit", + "name": "SRILM (SRI Language Modelling Toolkit)", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087721" + ] +} diff --git a/data/software/sr/srm-engine-suite.json b/data/software/sr/srm-engine-suite.json new file mode 100644 index 000000000000..7269ec0e9d8a --- /dev/null +++ b/data/software/sr/srm-engine-suite.json @@ -0,0 +1,11 @@ +{ + "slug": "srm-engine-suite", + "name": "SRM Engine Suite", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17103614" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/ss/ssdeep.json b/data/software/ss/ssdeep.json new file mode 100644 index 000000000000..396e45d18cae --- /dev/null +++ b/data/software/ss/ssdeep.json @@ -0,0 +1,8 @@ +{ + "slug": "ssdeep", + "name": "Ssdeep", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140134033" + ] +} diff --git a/data/software/ss/sselab.json b/data/software/ss/sselab.json new file mode 100644 index 000000000000..5a8fc169dd9e --- /dev/null +++ b/data/software/ss/sselab.json @@ -0,0 +1,8 @@ +{ + "slug": "sselab", + "name": "SSELab", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084586" + ] +} diff --git a/data/software/ss/sselp.json b/data/software/ss/sselp.json new file mode 100644 index 000000000000..7eb6ba279091 --- /dev/null +++ b/data/software/ss/sselp.json @@ -0,0 +1,8 @@ +{ + "slug": "sselp", + "name": "sselp", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975497" + ] +} diff --git a/data/software/ss/ssh-conversion-hub.json b/data/software/ss/ssh-conversion-hub.json new file mode 100644 index 000000000000..bb675a8e8249 --- /dev/null +++ b/data/software/ss/ssh-conversion-hub.json @@ -0,0 +1,8 @@ +{ + "slug": "ssh-conversion-hub", + "name": "SSH Conversion Hub", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084587" + ] +} diff --git a/data/software/ss/ssh-training-discovery-toolkit.json b/data/software/ss/ssh-training-discovery-toolkit.json new file mode 100644 index 000000000000..f35569e8ff94 --- /dev/null +++ b/data/software/ss/ssh-training-discovery-toolkit.json @@ -0,0 +1,8 @@ +{ + "slug": "ssh-training-discovery-toolkit", + "name": "SSH Training Discovery Toolkit", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084590" + ] +} diff --git a/data/software/ss/sshguard.json b/data/software/ss/sshguard.json new file mode 100644 index 000000000000..17092500c09a --- /dev/null +++ b/data/software/ss/sshguard.json @@ -0,0 +1,8 @@ +{ + "slug": "sshguard", + "name": "sshguard", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62864815" + ] +} diff --git a/data/software/ss/sshoc-reference-ontology-sshocro.json b/data/software/ss/sshoc-reference-ontology-sshocro.json new file mode 100644 index 000000000000..33f71d0be85c --- /dev/null +++ b/data/software/ss/sshoc-reference-ontology-sshocro.json @@ -0,0 +1,8 @@ +{ + "slug": "sshoc-reference-ontology-sshocro", + "name": "SSHOC Reference Ontology (SSHOCro)", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084589" + ] +} diff --git a/data/software/ss/sshpass.json b/data/software/ss/sshpass.json new file mode 100644 index 000000000000..71e52bfc8deb --- /dev/null +++ b/data/software/ss/sshpass.json @@ -0,0 +1,8 @@ +{ + "slug": "sshpass", + "name": "sshpass", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62864808" + ] +} diff --git a/data/software/ss/ssimulacra-2.json b/data/software/ss/ssimulacra-2.json new file mode 100644 index 000000000000..5a02c6f2be16 --- /dev/null +++ b/data/software/ss/ssimulacra-2.json @@ -0,0 +1,15 @@ +{ + "slug": "ssimulacra-2", + "name": "SSIMULACRA 2", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117789760" + ], + "release_date": "2022-07-27", + "developers": [ + "Jon Sneyers" + ], + "licenses": [ + "3-clause BSD License" + ] +} diff --git a/data/software/ss/ssimulacra.json b/data/software/ss/ssimulacra.json new file mode 100644 index 000000000000..29e04f818e63 --- /dev/null +++ b/data/software/ss/ssimulacra.json @@ -0,0 +1,15 @@ +{ + "slug": "ssimulacra", + "name": "SSIMULACRA", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117789739" + ], + "release_date": "2017-06-13", + "developers": [ + "Jon Sneyers" + ], + "licenses": [ + "Apache Software License 2.0" + ] +} diff --git a/data/software/ss/ssl-fetch.json b/data/software/ss/ssl-fetch.json new file mode 100644 index 000000000000..048830effe46 --- /dev/null +++ b/data/software/ss/ssl-fetch.json @@ -0,0 +1,8 @@ +{ + "slug": "ssl-fetch", + "name": "ssl-fetch", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975498" + ] +} diff --git a/data/software/ss/ssldump.json b/data/software/ss/ssldump.json new file mode 100644 index 000000000000..fc6ef2556ac7 --- /dev/null +++ b/data/software/ss/ssldump.json @@ -0,0 +1,8 @@ +{ + "slug": "ssldump", + "name": "ssldump", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62864802" + ] +} diff --git a/data/software/ss/sslh.json b/data/software/ss/sslh.json new file mode 100644 index 000000000000..c702be296e90 --- /dev/null +++ b/data/software/ss/sslh.json @@ -0,0 +1,14 @@ +{ + "slug": "sslh", + "name": "sslh", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62864797" + ], + "operating_systems": [ + "Unix-like operating system" + ], + "licenses": [ + "GNU General Public License, version 2.0" + ] +} diff --git a/data/software/ss/sslsplit.json b/data/software/ss/sslsplit.json new file mode 100644 index 000000000000..701b2e9cbc20 --- /dev/null +++ b/data/software/ss/sslsplit.json @@ -0,0 +1,8 @@ +{ + "slug": "sslsplit", + "name": "Sslsplit", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62864787" + ] +} diff --git a/data/software/ss/ssnolib.json b/data/software/ss/ssnolib.json new file mode 100644 index 000000000000..b21cd8c73a01 --- /dev/null +++ b/data/software/ss/ssnolib.json @@ -0,0 +1,11 @@ +{ + "slug": "ssnolib", + "name": "ssnolib", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131448607" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/ss/sssom-curator.json b/data/software/ss/sssom-curator.json new file mode 100644 index 000000000000..994c151d5e54 --- /dev/null +++ b/data/software/ss/sssom-curator.json @@ -0,0 +1,14 @@ +{ + "slug": "sssom-curator", + "name": "SSSOM Curator", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138902949" + ], + "programming_languages": [ + "Python" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/ss/sssom-pydantic.json b/data/software/ss/sssom-pydantic.json new file mode 100644 index 000000000000..3d5ae013b3cd --- /dev/null +++ b/data/software/ss/sssom-pydantic.json @@ -0,0 +1,14 @@ +{ + "slug": "sssom-pydantic", + "name": "SSSOM Pydantic", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139961696" + ], + "programming_languages": [ + "Python" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/st/stable-audio.json b/data/software/st/stable-audio.json new file mode 100644 index 000000000000..7fa1a97c3ae8 --- /dev/null +++ b/data/software/st/stable-audio.json @@ -0,0 +1,12 @@ +{ + "slug": "stable-audio", + "name": "Stable Audio", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130530115" + ], + "release_date": "2023-01-01", + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/st/stacheldraht-ddos.json b/data/software/st/stacheldraht-ddos.json new file mode 100644 index 000000000000..0930a9bf1bde --- /dev/null +++ b/data/software/st/stacheldraht-ddos.json @@ -0,0 +1,11 @@ +{ + "slug": "stacheldraht-ddos", + "name": "Stacheldraht DDoS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3967708" + ], + "developers": [ + "Mixter" + ] +} diff --git a/data/software/st/stacks-q126084591.json b/data/software/st/stacks-q126084591.json new file mode 100644 index 000000000000..e7841d28225e --- /dev/null +++ b/data/software/st/stacks-q126084591.json @@ -0,0 +1,8 @@ +{ + "slug": "stacks-q126084591", + "name": "STACKS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084591" + ] +} diff --git a/data/software/st/stacks.json b/data/software/st/stacks.json new file mode 100644 index 000000000000..40728c6a1437 --- /dev/null +++ b/data/software/st/stacks.json @@ -0,0 +1,8 @@ +{ + "slug": "stacks", + "name": "Stacks", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3468014" + ] +} diff --git a/data/software/st/stadium.json b/data/software/st/stadium.json new file mode 100644 index 000000000000..46d69d901337 --- /dev/null +++ b/data/software/st/stadium.json @@ -0,0 +1,8 @@ +{ + "slug": "stadium", + "name": "STADIUM", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7596468" + ] +} diff --git a/data/software/st/stakepoint.json b/data/software/st/stakepoint.json new file mode 100644 index 000000000000..37fbe4bcb9af --- /dev/null +++ b/data/software/st/stakepoint.json @@ -0,0 +1,11 @@ +{ + "slug": "stakepoint", + "name": "StakePoint", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139378036" + ], + "genres": [ + "decentralized finance" + ] +} diff --git a/data/software/st/stalonetray.json b/data/software/st/stalonetray.json new file mode 100644 index 000000000000..27e858b31589 --- /dev/null +++ b/data/software/st/stalonetray.json @@ -0,0 +1,11 @@ +{ + "slug": "stalonetray", + "name": "stalonetray", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62864777" + ], + "licenses": [ + "GNU General Public License, version 2.0" + ] +} diff --git a/data/software/st/stampit.json b/data/software/st/stampit.json new file mode 100644 index 000000000000..c577b4612f61 --- /dev/null +++ b/data/software/st/stampit.json @@ -0,0 +1,8 @@ +{ + "slug": "stampit", + "name": "Stampit", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2329989" + ] +} diff --git a/data/software/st/standard-portable-intermediate-representation.json b/data/software/st/standard-portable-intermediate-representation.json new file mode 100644 index 000000000000..bcbef67b9e7b --- /dev/null +++ b/data/software/st/standard-portable-intermediate-representation.json @@ -0,0 +1,11 @@ +{ + "slug": "standard-portable-intermediate-representation", + "name": "Standard Portable Intermediate Representation", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q20820603" + ], + "developers": [ + "Khronos Group" + ] +} diff --git a/data/software/st/stanford-hci-group-gigapixel.json b/data/software/st/stanford-hci-group-gigapixel.json new file mode 100644 index 000000000000..dae97370db90 --- /dev/null +++ b/data/software/st/stanford-hci-group-gigapixel.json @@ -0,0 +1,8 @@ +{ + "slug": "stanford-hci-group-gigapixel", + "name": "Stanford HCI Group: Gigapixel", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084592" + ] +} diff --git a/data/software/st/stanford-hci-group-papertoolkit.json b/data/software/st/stanford-hci-group-papertoolkit.json new file mode 100644 index 000000000000..38a5078c7254 --- /dev/null +++ b/data/software/st/stanford-hci-group-papertoolkit.json @@ -0,0 +1,8 @@ +{ + "slug": "stanford-hci-group-papertoolkit", + "name": "Stanford HCI Group: PaperToolkit", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084593" + ] +} diff --git a/data/software/st/stanford-mobisocial-lab-muse.json b/data/software/st/stanford-mobisocial-lab-muse.json new file mode 100644 index 000000000000..29b3805579a0 --- /dev/null +++ b/data/software/st/stanford-mobisocial-lab-muse.json @@ -0,0 +1,8 @@ +{ + "slug": "stanford-mobisocial-lab-muse", + "name": "Stanford Mobisocial Lab: Muse", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084594" + ] +} diff --git a/data/software/st/stanford-nlp-group-classifier.json b/data/software/st/stanford-nlp-group-classifier.json new file mode 100644 index 000000000000..6acde73dad62 --- /dev/null +++ b/data/software/st/stanford-nlp-group-classifier.json @@ -0,0 +1,8 @@ +{ + "slug": "stanford-nlp-group-classifier", + "name": "Stanford NLP Group: Classifier", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087722" + ] +} diff --git a/data/software/st/stanford-nlp-group-corenlp.json b/data/software/st/stanford-nlp-group-corenlp.json new file mode 100644 index 000000000000..f583454c2c50 --- /dev/null +++ b/data/software/st/stanford-nlp-group-corenlp.json @@ -0,0 +1,8 @@ +{ + "slug": "stanford-nlp-group-corenlp", + "name": "Stanford NLP Group: CoreNLP", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087723" + ] +} diff --git a/data/software/st/stanford-nlp-group-stanford-parser.json b/data/software/st/stanford-nlp-group-stanford-parser.json new file mode 100644 index 000000000000..738ba4bf6a0c --- /dev/null +++ b/data/software/st/stanford-nlp-group-stanford-parser.json @@ -0,0 +1,8 @@ +{ + "slug": "stanford-nlp-group-stanford-parser", + "name": "Stanford NLP Group: Stanford Parser", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087726" + ] +} diff --git a/data/software/st/stanford-nlp-group-stanford-phrasal.json b/data/software/st/stanford-nlp-group-stanford-phrasal.json new file mode 100644 index 000000000000..4e15313bb47b --- /dev/null +++ b/data/software/st/stanford-nlp-group-stanford-phrasal.json @@ -0,0 +1,8 @@ +{ + "slug": "stanford-nlp-group-stanford-phrasal", + "name": "Stanford NLP Group: Stanford Phrasal", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087727" + ] +} diff --git a/data/software/st/stanford-nlp-group-stanford-tokenizer.json b/data/software/st/stanford-nlp-group-stanford-tokenizer.json new file mode 100644 index 000000000000..12a11e089080 --- /dev/null +++ b/data/software/st/stanford-nlp-group-stanford-tokenizer.json @@ -0,0 +1,8 @@ +{ + "slug": "stanford-nlp-group-stanford-tokenizer", + "name": "Stanford NLP Group: Stanford Tokenizer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087728" + ] +} diff --git a/data/software/st/stanford-sentiment-analysis.json b/data/software/st/stanford-sentiment-analysis.json new file mode 100644 index 000000000000..92ae4b34327b --- /dev/null +++ b/data/software/st/stanford-sentiment-analysis.json @@ -0,0 +1,8 @@ +{ + "slug": "stanford-sentiment-analysis", + "name": "Stanford Sentiment Analysis", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087729" + ] +} diff --git a/data/software/st/stanford-vis-group-data-wrangler.json b/data/software/st/stanford-vis-group-data-wrangler.json new file mode 100644 index 000000000000..13842f45925e --- /dev/null +++ b/data/software/st/stanford-vis-group-data-wrangler.json @@ -0,0 +1,8 @@ +{ + "slug": "stanford-vis-group-data-wrangler", + "name": "Stanford Vis Group: Data Wrangler", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084595" + ] +} diff --git a/data/software/st/stanford-vis-group-protovis.json b/data/software/st/stanford-vis-group-protovis.json new file mode 100644 index 000000000000..37d367e7ddef --- /dev/null +++ b/data/software/st/stanford-vis-group-protovis.json @@ -0,0 +1,8 @@ +{ + "slug": "stanford-vis-group-protovis", + "name": "Stanford Vis Group: Protovis", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084596" + ] +} diff --git a/data/software/st/stap.json b/data/software/st/stap.json new file mode 100644 index 000000000000..0bfab9105f51 --- /dev/null +++ b/data/software/st/stap.json @@ -0,0 +1,8 @@ +{ + "slug": "stap", + "name": "STAP", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084597" + ] +} diff --git a/data/software/st/star-ruby-software.json b/data/software/st/star-ruby-software.json new file mode 100644 index 000000000000..dac1628a9c91 --- /dev/null +++ b/data/software/st/star-ruby-software.json @@ -0,0 +1,11 @@ +{ + "slug": "star-ruby-software", + "name": "Star Ruby software", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11247175" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/st/star-walk.json b/data/software/st/star-walk.json new file mode 100644 index 000000000000..b37f54e3edbd --- /dev/null +++ b/data/software/st/star-walk.json @@ -0,0 +1,12 @@ +{ + "slug": "star-walk", + "name": "Star Walk", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q13515774" + ], + "release_date": "2008-01-01", + "genres": [ + "educational entertainment" + ] +} diff --git a/data/software/st/star-wars-episode-i-insider-s-guide.json b/data/software/st/star-wars-episode-i-insider-s-guide.json new file mode 100644 index 000000000000..65a6fb80ed2b --- /dev/null +++ b/data/software/st/star-wars-episode-i-insider-s-guide.json @@ -0,0 +1,8 @@ +{ + "slug": "star-wars-episode-i-insider-s-guide", + "name": "Star Wars Episode I: Insider's Guide", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135682591" + ] +} diff --git a/data/software/st/star-wars-screen-entertainment.json b/data/software/st/star-wars-screen-entertainment.json new file mode 100644 index 000000000000..676211a2828c --- /dev/null +++ b/data/software/st/star-wars-screen-entertainment.json @@ -0,0 +1,8 @@ +{ + "slug": "star-wars-screen-entertainment", + "name": "Star Wars Screen Entertainment", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131986053" + ] +} diff --git a/data/software/st/star.json b/data/software/st/star.json new file mode 100644 index 000000000000..1f88032d8125 --- /dev/null +++ b/data/software/st/star.json @@ -0,0 +1,14 @@ +{ + "slug": "star", + "name": "STAR", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7394671" + ], + "developers": [ + "Renaissance Learning" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/st/starcounter.json b/data/software/st/starcounter.json new file mode 100644 index 000000000000..60765905ba4a --- /dev/null +++ b/data/software/st/starcounter.json @@ -0,0 +1,9 @@ +{ + "slug": "starcounter", + "name": "Starcounter", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28449171" + ], + "release_date": "2006-01-01" +} diff --git a/data/software/st/starcraft-campaign-editor.json b/data/software/st/starcraft-campaign-editor.json new file mode 100644 index 000000000000..09427e5dda17 --- /dev/null +++ b/data/software/st/starcraft-campaign-editor.json @@ -0,0 +1,8 @@ +{ + "slug": "starcraft-campaign-editor", + "name": "StarCraft campaign editor", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q843216" + ] +} diff --git a/data/software/st/stardock-central.json b/data/software/st/stardock-central.json new file mode 100644 index 000000000000..735d2a159e6c --- /dev/null +++ b/data/software/st/stardock-central.json @@ -0,0 +1,11 @@ +{ + "slug": "stardock-central", + "name": "Stardock Central", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17048684" + ], + "developers": [ + "Stardock" + ] +} diff --git a/data/software/st/stardraw.json b/data/software/st/stardraw.json new file mode 100644 index 000000000000..090da28696f9 --- /dev/null +++ b/data/software/st/stardraw.json @@ -0,0 +1,12 @@ +{ + "slug": "stardraw", + "name": "StarDraw", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7600538" + ], + "release_date": "1995-01-01", + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/st/stargaze.json b/data/software/st/stargaze.json new file mode 100644 index 000000000000..035cfe4f4101 --- /dev/null +++ b/data/software/st/stargaze.json @@ -0,0 +1,8 @@ +{ + "slug": "stargaze", + "name": "Stargaze", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10374066" + ] +} diff --git a/data/software/st/starlight-information-visualization-system.json b/data/software/st/starlight-information-visualization-system.json new file mode 100644 index 000000000000..db3f1e6aeab9 --- /dev/null +++ b/data/software/st/starlight-information-visualization-system.json @@ -0,0 +1,11 @@ +{ + "slug": "starlight-information-visualization-system", + "name": "Starlight Information Visualization System", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7602077" + ], + "developers": [ + "Pacific Northwest National Laboratory" + ] +} diff --git a/data/software/st/starling.json b/data/software/st/starling.json new file mode 100644 index 000000000000..431c1e3cea48 --- /dev/null +++ b/data/software/st/starling.json @@ -0,0 +1,11 @@ +{ + "slug": "starling", + "name": "Starling", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7602092" + ], + "developers": [ + "Blaine Cook" + ] +} diff --git a/data/software/st/starlink-project.json b/data/software/st/starlink-project.json new file mode 100644 index 000000000000..59417a6e4979 --- /dev/null +++ b/data/software/st/starlink-project.json @@ -0,0 +1,8 @@ +{ + "slug": "starlink-project", + "name": "Starlink Project", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7602103" + ] +} diff --git a/data/software/st/starry-night.json b/data/software/st/starry-night.json new file mode 100644 index 000000000000..c09fccea9cbb --- /dev/null +++ b/data/software/st/starry-night.json @@ -0,0 +1,8 @@ +{ + "slug": "starry-night", + "name": "Starry Night", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q29386" + ] +} diff --git a/data/software/st/starship-tycoon.json b/data/software/st/starship-tycoon.json new file mode 100644 index 000000000000..dd64e966f74d --- /dev/null +++ b/data/software/st/starship-tycoon.json @@ -0,0 +1,8 @@ +{ + "slug": "starship-tycoon", + "name": "Starship Tycoon", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q88367867" + ] +} diff --git a/data/software/st/start-prof.json b/data/software/st/start-prof.json new file mode 100644 index 000000000000..3b58d77a3aa5 --- /dev/null +++ b/data/software/st/start-prof.json @@ -0,0 +1,8 @@ +{ + "slug": "start-prof", + "name": "START-PROF", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q98825231" + ] +} diff --git a/data/software/st/start-stop-daemon.json b/data/software/st/start-stop-daemon.json new file mode 100644 index 000000000000..445b0052ec19 --- /dev/null +++ b/data/software/st/start-stop-daemon.json @@ -0,0 +1,8 @@ +{ + "slug": "start-stop-daemon", + "name": "start-stop-daemon", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4050059" + ] +} diff --git a/data/software/st/stash.json b/data/software/st/stash.json new file mode 100644 index 000000000000..72889ff7c84a --- /dev/null +++ b/data/software/st/stash.json @@ -0,0 +1,14 @@ +{ + "slug": "stash", + "name": "Stash", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140199367" + ], + "developers": [ + "Outergy Group" + ], + "operating_systems": [ + "macOS" + ] +} diff --git a/data/software/st/stata-1-0.json b/data/software/st/stata-1-0.json new file mode 100644 index 000000000000..73ddedf4f3c2 --- /dev/null +++ b/data/software/st/stata-1-0.json @@ -0,0 +1,12 @@ +{ + "slug": "stata-1-0", + "name": "STATA 1.0", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q32101836" + ], + "release_date": "1985-01-01", + "developers": [ + "StataCorp" + ] +} diff --git a/data/software/st/stata-1-1.json b/data/software/st/stata-1-1.json new file mode 100644 index 000000000000..7e9b9b1f49f4 --- /dev/null +++ b/data/software/st/stata-1-1.json @@ -0,0 +1,12 @@ +{ + "slug": "stata-1-1", + "name": "STATA 1.1", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q32102400" + ], + "release_date": "1985-02-01", + "developers": [ + "StataCorp" + ] +} diff --git a/data/software/st/stata-10-0.json b/data/software/st/stata-10-0.json new file mode 100644 index 000000000000..18f4567348c9 --- /dev/null +++ b/data/software/st/stata-10-0.json @@ -0,0 +1,12 @@ +{ + "slug": "stata-10-0", + "name": "STATA 10.0", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q32103144" + ], + "release_date": "2009-07-01", + "developers": [ + "StataCorp" + ] +} diff --git a/data/software/st/stata-10-1.json b/data/software/st/stata-10-1.json new file mode 100644 index 000000000000..fc21276dc90c --- /dev/null +++ b/data/software/st/stata-10-1.json @@ -0,0 +1,12 @@ +{ + "slug": "stata-10-1", + "name": "STATA 10.1", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q32103502" + ], + "release_date": "2008-08-01", + "developers": [ + "StataCorp" + ] +} diff --git a/data/software/st/stata-11-0.json b/data/software/st/stata-11-0.json new file mode 100644 index 000000000000..ab2e448165cd --- /dev/null +++ b/data/software/st/stata-11-0.json @@ -0,0 +1,12 @@ +{ + "slug": "stata-11-0", + "name": "STATA 11.0", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q32103698" + ], + "release_date": "2009-07-01", + "developers": [ + "StataCorp" + ] +} diff --git a/data/software/st/stata-11-1.json b/data/software/st/stata-11-1.json new file mode 100644 index 000000000000..af5844a1a9e0 --- /dev/null +++ b/data/software/st/stata-11-1.json @@ -0,0 +1,12 @@ +{ + "slug": "stata-11-1", + "name": "STATA 11.1", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q32105026" + ], + "release_date": "2010-06-01", + "developers": [ + "StataCorp" + ] +} diff --git a/data/software/st/stata-11-2.json b/data/software/st/stata-11-2.json new file mode 100644 index 000000000000..0851eea4ebab --- /dev/null +++ b/data/software/st/stata-11-2.json @@ -0,0 +1,12 @@ +{ + "slug": "stata-11-2", + "name": "STATA 11.2", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q32105379" + ], + "release_date": "2011-03-01", + "developers": [ + "StataCorp" + ] +} diff --git a/data/software/st/stata-12-0.json b/data/software/st/stata-12-0.json new file mode 100644 index 000000000000..34be6a41a6d1 --- /dev/null +++ b/data/software/st/stata-12-0.json @@ -0,0 +1,12 @@ +{ + "slug": "stata-12-0", + "name": "STATA 12.0", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q32105841" + ], + "release_date": "2012-07-01", + "developers": [ + "StataCorp" + ] +} diff --git a/data/software/st/stata-12-1.json b/data/software/st/stata-12-1.json new file mode 100644 index 000000000000..63326a733bc9 --- /dev/null +++ b/data/software/st/stata-12-1.json @@ -0,0 +1,12 @@ +{ + "slug": "stata-12-1", + "name": "STATA 12.1", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q32106691" + ], + "release_date": "2012-01-01", + "developers": [ + "StataCorp" + ] +} diff --git a/data/software/st/stata-13-0.json b/data/software/st/stata-13-0.json new file mode 100644 index 000000000000..fb84499bff3a --- /dev/null +++ b/data/software/st/stata-13-0.json @@ -0,0 +1,12 @@ +{ + "slug": "stata-13-0", + "name": "STATA 13.0", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q32106849" + ], + "release_date": "2013-06-01", + "developers": [ + "StataCorp" + ] +} diff --git a/data/software/st/stata-13-1.json b/data/software/st/stata-13-1.json new file mode 100644 index 000000000000..618a23603b3e --- /dev/null +++ b/data/software/st/stata-13-1.json @@ -0,0 +1,12 @@ +{ + "slug": "stata-13-1", + "name": "STATA 13.1", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q32107462" + ], + "release_date": "2013-10-01", + "developers": [ + "StataCorp" + ] +} diff --git a/data/software/st/stata-14-0.json b/data/software/st/stata-14-0.json new file mode 100644 index 000000000000..376e26b04efd --- /dev/null +++ b/data/software/st/stata-14-0.json @@ -0,0 +1,12 @@ +{ + "slug": "stata-14-0", + "name": "STATA 14.0", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q32107993" + ], + "release_date": "2015-04-01", + "developers": [ + "StataCorp" + ] +} diff --git a/data/software/st/stata-14-1.json b/data/software/st/stata-14-1.json new file mode 100644 index 000000000000..82b322814c20 --- /dev/null +++ b/data/software/st/stata-14-1.json @@ -0,0 +1,12 @@ +{ + "slug": "stata-14-1", + "name": "STATA 14.1", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q32109675" + ], + "release_date": "2015-10-01", + "developers": [ + "StataCorp" + ] +} diff --git a/data/software/st/stata-14-2.json b/data/software/st/stata-14-2.json new file mode 100644 index 000000000000..f7549000efdd --- /dev/null +++ b/data/software/st/stata-14-2.json @@ -0,0 +1,12 @@ +{ + "slug": "stata-14-2", + "name": "STATA 14.2", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q32110422" + ], + "release_date": "2016-09-01", + "developers": [ + "StataCorp" + ] +} diff --git a/data/software/st/stata-15-0.json b/data/software/st/stata-15-0.json new file mode 100644 index 000000000000..6d1a7ee77f92 --- /dev/null +++ b/data/software/st/stata-15-0.json @@ -0,0 +1,12 @@ +{ + "slug": "stata-15-0", + "name": "STATA 15.0", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q32111032" + ], + "release_date": "2017-06-01", + "developers": [ + "StataCorp" + ] +} diff --git a/data/software/st/stata-2-0.json b/data/software/st/stata-2-0.json new file mode 100644 index 000000000000..e72558e3ca85 --- /dev/null +++ b/data/software/st/stata-2-0.json @@ -0,0 +1,9 @@ +{ + "slug": "stata-2-0", + "name": "STATA 2.0", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q32130687" + ], + "release_date": "1988-06-01" +} diff --git a/data/software/st/stata-2-05.json b/data/software/st/stata-2-05.json new file mode 100644 index 000000000000..fa2efdf5f320 --- /dev/null +++ b/data/software/st/stata-2-05.json @@ -0,0 +1,9 @@ +{ + "slug": "stata-2-05", + "name": "STATA 2.05", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q32130225" + ], + "release_date": "1989-04-01" +} diff --git a/data/software/st/stata-2-1.json b/data/software/st/stata-2-1.json new file mode 100644 index 000000000000..a4e35532f7ae --- /dev/null +++ b/data/software/st/stata-2-1.json @@ -0,0 +1,12 @@ +{ + "slug": "stata-2-1", + "name": "STATA 2.1", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q32129715" + ], + "release_date": "1990-08-01", + "developers": [ + "StataCorp" + ] +} diff --git a/data/software/st/stata-3-0.json b/data/software/st/stata-3-0.json new file mode 100644 index 000000000000..96c677ae9264 --- /dev/null +++ b/data/software/st/stata-3-0.json @@ -0,0 +1,9 @@ +{ + "slug": "stata-3-0", + "name": "STATA 3.0", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q32128837" + ], + "release_date": "1992-03-01" +} diff --git a/data/software/st/stata-4-0.json b/data/software/st/stata-4-0.json new file mode 100644 index 000000000000..c97d37b381ad --- /dev/null +++ b/data/software/st/stata-4-0.json @@ -0,0 +1,12 @@ +{ + "slug": "stata-4-0", + "name": "STATA 4.0", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q32128043" + ], + "release_date": "1995-01-01", + "developers": [ + "StataCorp" + ] +} diff --git a/data/software/st/stata-5-0.json b/data/software/st/stata-5-0.json new file mode 100644 index 000000000000..3c0fb5fc1ce0 --- /dev/null +++ b/data/software/st/stata-5-0.json @@ -0,0 +1,12 @@ +{ + "slug": "stata-5-0", + "name": "STATA 5.0", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q32127352" + ], + "release_date": "1996-09-01", + "developers": [ + "StataCorp" + ] +} diff --git a/data/software/st/stata-6-0.json b/data/software/st/stata-6-0.json new file mode 100644 index 000000000000..bfab40dce966 --- /dev/null +++ b/data/software/st/stata-6-0.json @@ -0,0 +1,12 @@ +{ + "slug": "stata-6-0", + "name": "STATA 6.0", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q32115772" + ], + "release_date": "1999-01-01", + "developers": [ + "StataCorp" + ] +} diff --git a/data/software/st/stata-7-0.json b/data/software/st/stata-7-0.json new file mode 100644 index 000000000000..c02bb74d89f2 --- /dev/null +++ b/data/software/st/stata-7-0.json @@ -0,0 +1,12 @@ +{ + "slug": "stata-7-0", + "name": "STATA 7.0", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q32115372" + ], + "release_date": "2000-12-01", + "developers": [ + "StataCorp" + ] +} diff --git a/data/software/st/stata-8-0.json b/data/software/st/stata-8-0.json new file mode 100644 index 000000000000..8943a0f79ef4 --- /dev/null +++ b/data/software/st/stata-8-0.json @@ -0,0 +1,12 @@ +{ + "slug": "stata-8-0", + "name": "STATA 8.0", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q32114479" + ], + "release_date": "2003-01-01", + "developers": [ + "StataCorp" + ] +} diff --git a/data/software/st/stata-8-1.json b/data/software/st/stata-8-1.json new file mode 100644 index 000000000000..192f379eea51 --- /dev/null +++ b/data/software/st/stata-8-1.json @@ -0,0 +1,9 @@ +{ + "slug": "stata-8-1", + "name": "STATA 8.1", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q32126680" + ], + "release_date": "2003-07-01" +} diff --git a/data/software/st/stata-8-2.json b/data/software/st/stata-8-2.json new file mode 100644 index 000000000000..ada349554bb9 --- /dev/null +++ b/data/software/st/stata-8-2.json @@ -0,0 +1,12 @@ +{ + "slug": "stata-8-2", + "name": "STATA 8.2", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q32119852" + ], + "release_date": "2003-10-01", + "developers": [ + "StataCorp" + ] +} diff --git a/data/software/st/stata-9-0.json b/data/software/st/stata-9-0.json new file mode 100644 index 000000000000..5900eb3190b1 --- /dev/null +++ b/data/software/st/stata-9-0.json @@ -0,0 +1,12 @@ +{ + "slug": "stata-9-0", + "name": "STATA 9.0", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q32114702" + ], + "release_date": "2005-04-01", + "developers": [ + "StataCorp" + ] +} diff --git a/data/software/st/stata-9-1.json b/data/software/st/stata-9-1.json new file mode 100644 index 000000000000..6ae059ef9f14 --- /dev/null +++ b/data/software/st/stata-9-1.json @@ -0,0 +1,12 @@ +{ + "slug": "stata-9-1", + "name": "STATA 9.1", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q32121546" + ], + "release_date": "2005-09-01", + "developers": [ + "StataCorp" + ] +} diff --git a/data/software/st/stata-9-2.json b/data/software/st/stata-9-2.json new file mode 100644 index 000000000000..0bf0c370b353 --- /dev/null +++ b/data/software/st/stata-9-2.json @@ -0,0 +1,9 @@ +{ + "slug": "stata-9-2", + "name": "STATA 9.2", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q32125787" + ], + "release_date": "2006-04-01" +} diff --git a/data/software/st/statcheck.json b/data/software/st/statcheck.json new file mode 100644 index 000000000000..2422dc8be3af --- /dev/null +++ b/data/software/st/statcheck.json @@ -0,0 +1,8 @@ +{ + "slug": "statcheck", + "name": "Statcheck", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60749222" + ] +} diff --git a/data/software/st/statcrunch.json b/data/software/st/statcrunch.json new file mode 100644 index 000000000000..2b0018454466 --- /dev/null +++ b/data/software/st/statcrunch.json @@ -0,0 +1,8 @@ +{ + "slug": "statcrunch", + "name": "StatCrunch", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q39052740" + ] +} diff --git a/data/software/st/state.json b/data/software/st/state.json new file mode 100644 index 000000000000..69631e838b1a --- /dev/null +++ b/data/software/st/state.json @@ -0,0 +1,8 @@ +{ + "slug": "state", + "name": "State", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16928008" + ] +} diff --git a/data/software/st/statgraphics.json b/data/software/st/statgraphics.json new file mode 100644 index 000000000000..96c7109c0063 --- /dev/null +++ b/data/software/st/statgraphics.json @@ -0,0 +1,9 @@ +{ + "slug": "statgraphics", + "name": "Statgraphics", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3497316" + ], + "release_date": "1980-01-01" +} diff --git a/data/software/st/statistica.json b/data/software/st/statistica.json new file mode 100644 index 000000000000..76ad04ebbc9b --- /dev/null +++ b/data/software/st/statistica.json @@ -0,0 +1,14 @@ +{ + "slug": "statistica", + "name": "STATISTICA", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1788435" + ], + "developers": [ + "Dell" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/st/statistical-lab.json b/data/software/st/statistical-lab.json new file mode 100644 index 000000000000..e14747b5b1de --- /dev/null +++ b/data/software/st/statistical-lab.json @@ -0,0 +1,8 @@ +{ + "slug": "statistical-lab", + "name": "Statistical Lab", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087730" + ] +} diff --git a/data/software/st/statmetrics.json b/data/software/st/statmetrics.json new file mode 100644 index 000000000000..543f16265293 --- /dev/null +++ b/data/software/st/statmetrics.json @@ -0,0 +1,11 @@ +{ + "slug": "statmetrics", + "name": "Statmetrics", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7604455" + ], + "programming_languages": [ + "Java" + ] +} diff --git a/data/software/st/statpascal.json b/data/software/st/statpascal.json new file mode 100644 index 000000000000..b71b5eb00f0a --- /dev/null +++ b/data/software/st/statpascal.json @@ -0,0 +1,8 @@ +{ + "slug": "statpascal", + "name": "StatPascal", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2333575" + ] +} diff --git a/data/software/st/statplus.json b/data/software/st/statplus.json new file mode 100644 index 000000000000..6ab12b433d19 --- /dev/null +++ b/data/software/st/statplus.json @@ -0,0 +1,11 @@ +{ + "slug": "statplus", + "name": "StatPlus", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7602964" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/st/stats-app.json b/data/software/st/stats-app.json new file mode 100644 index 000000000000..32882d35b4de --- /dev/null +++ b/data/software/st/stats-app.json @@ -0,0 +1,11 @@ +{ + "slug": "stats-app", + "name": "Stats (app)", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136531095" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/st/statsdirect.json b/data/software/st/statsdirect.json new file mode 100644 index 000000000000..3a297e850050 --- /dev/null +++ b/data/software/st/statsdirect.json @@ -0,0 +1,8 @@ +{ + "slug": "statsdirect", + "name": "StatsDirect", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17048686" + ] +} diff --git a/data/software/st/stattoo.json b/data/software/st/stattoo.json new file mode 100644 index 000000000000..f64973cabda2 --- /dev/null +++ b/data/software/st/stattoo.json @@ -0,0 +1,11 @@ +{ + "slug": "stattoo", + "name": "Stattoo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7604471" + ], + "developers": [ + "Panic" + ] +} diff --git a/data/software/st/statview.json b/data/software/st/statview.json new file mode 100644 index 000000000000..9fec82bf77f1 --- /dev/null +++ b/data/software/st/statview.json @@ -0,0 +1,11 @@ +{ + "slug": "statview", + "name": "StatView", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7602967" + ], + "developers": [ + "Apple Inc." + ] +} diff --git a/data/software/st/statwing.json b/data/software/st/statwing.json new file mode 100644 index 000000000000..2122161d13c0 --- /dev/null +++ b/data/software/st/statwing.json @@ -0,0 +1,8 @@ +{ + "slug": "statwing", + "name": "Statwing", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084598" + ] +} diff --git a/data/software/st/statxact.json b/data/software/st/statxact.json new file mode 100644 index 000000000000..d3c604b4db94 --- /dev/null +++ b/data/software/st/statxact.json @@ -0,0 +1,14 @@ +{ + "slug": "statxact", + "name": "StatXact", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7602969" + ], + "developers": [ + "Cytel" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/st/steady.json b/data/software/st/steady.json new file mode 100644 index 000000000000..528d8236d26d --- /dev/null +++ b/data/software/st/steady.json @@ -0,0 +1,8 @@ +{ + "slug": "steady", + "name": "Steady", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60764146" + ] +} diff --git a/data/software/st/steadyprint.json b/data/software/st/steadyprint.json new file mode 100644 index 000000000000..adb5785e5b5a --- /dev/null +++ b/data/software/st/steadyprint.json @@ -0,0 +1,8 @@ +{ + "slug": "steadyprint", + "name": "SteadyPRINT", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q56296895" + ] +} diff --git a/data/software/st/steam-chat.json b/data/software/st/steam-chat.json new file mode 100644 index 000000000000..4c7605b3d376 --- /dev/null +++ b/data/software/st/steam-chat.json @@ -0,0 +1,8 @@ +{ + "slug": "steam-chat", + "name": "Steam Chat", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109535941" + ] +} diff --git a/data/software/st/steam-explorers.json b/data/software/st/steam-explorers.json new file mode 100644 index 000000000000..5dd5ec86c1a9 --- /dev/null +++ b/data/software/st/steam-explorers.json @@ -0,0 +1,11 @@ +{ + "slug": "steam-explorers", + "name": "Steam Explorers", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q61937949" + ], + "developers": [ + "Valve Corporation" + ] +} diff --git a/data/software/st/steed.json b/data/software/st/steed.json new file mode 100644 index 000000000000..9de930de9ab0 --- /dev/null +++ b/data/software/st/steed.json @@ -0,0 +1,8 @@ +{ + "slug": "steed", + "name": "Steed", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28452151" + ] +} diff --git a/data/software/st/steel-bank-common-lisp.json b/data/software/st/steel-bank-common-lisp.json new file mode 100644 index 000000000000..3591bd6c4f46 --- /dev/null +++ b/data/software/st/steel-bank-common-lisp.json @@ -0,0 +1,20 @@ +{ + "slug": "steel-bank-common-lisp", + "name": "Steel Bank Common Lisp", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1427296" + ], + "release_date": "1999-12-01", + "operating_systems": [ + "Microsoft Windows", + "Unix-like operating system", + "macOS" + ], + "programming_languages": [ + "Lisp" + ], + "licenses": [ + "released into the public domain by the copyright holder" + ] +} diff --git a/data/software/st/steeleye-lifekeeper.json b/data/software/st/steeleye-lifekeeper.json new file mode 100644 index 000000000000..8199f19eeb7a --- /dev/null +++ b/data/software/st/steeleye-lifekeeper.json @@ -0,0 +1,9 @@ +{ + "slug": "steeleye-lifekeeper", + "name": "SteelEye LifeKeeper", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7605616" + ], + "release_date": "1992-01-01" +} diff --git a/data/software/st/steelscript.json b/data/software/st/steelscript.json new file mode 100644 index 000000000000..01ed3169318f --- /dev/null +++ b/data/software/st/steelscript.json @@ -0,0 +1,8 @@ +{ + "slug": "steelscript", + "name": "SteelScript", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135190734" + ] +} diff --git a/data/software/st/steinberg-nuendo.json b/data/software/st/steinberg-nuendo.json new file mode 100644 index 000000000000..cadde2cbfe65 --- /dev/null +++ b/data/software/st/steinberg-nuendo.json @@ -0,0 +1,18 @@ +{ + "slug": "steinberg-nuendo", + "name": "Steinberg Nuendo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1522160" + ], + "developers": [ + "Steinberg" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/st/stellar-phoenix-mac-data-recovery.json b/data/software/st/stellar-phoenix-mac-data-recovery.json new file mode 100644 index 000000000000..990c81bfa664 --- /dev/null +++ b/data/software/st/stellar-phoenix-mac-data-recovery.json @@ -0,0 +1,8 @@ +{ + "slug": "stellar-phoenix-mac-data-recovery", + "name": "Stellar Phoenix Mac Data Recovery", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q39058483" + ] +} diff --git a/data/software/st/stellar-phoenix-photo-recovery.json b/data/software/st/stellar-phoenix-photo-recovery.json new file mode 100644 index 000000000000..45107947b92f --- /dev/null +++ b/data/software/st/stellar-phoenix-photo-recovery.json @@ -0,0 +1,8 @@ +{ + "slug": "stellar-phoenix-photo-recovery", + "name": "Stellar Phoenix Photo Recovery", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q48989148" + ] +} diff --git a/data/software/st/stellar-phoenix-windows-data-recovery.json b/data/software/st/stellar-phoenix-windows-data-recovery.json new file mode 100644 index 000000000000..b2038f682ca4 --- /dev/null +++ b/data/software/st/stellar-phoenix-windows-data-recovery.json @@ -0,0 +1,11 @@ +{ + "slug": "stellar-phoenix-windows-data-recovery", + "name": "Stellar Phoenix Windows Data Recovery", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28957071" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/st/stellar.json b/data/software/st/stellar.json new file mode 100644 index 000000000000..80792e1290ab --- /dev/null +++ b/data/software/st/stellar.json @@ -0,0 +1,14 @@ +{ + "slug": "stellar", + "name": "Stellar", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17870327" + ], + "developers": [ + "Jed McCaleb" + ], + "licenses": [ + "Apache License" + ] +} diff --git a/data/software/st/stelrix.json b/data/software/st/stelrix.json new file mode 100644 index 000000000000..21dee7d0a00c --- /dev/null +++ b/data/software/st/stelrix.json @@ -0,0 +1,8 @@ +{ + "slug": "stelrix", + "name": "Stelrix", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134008798" + ] +} diff --git a/data/software/st/stemloc.json b/data/software/st/stemloc.json new file mode 100644 index 000000000000..2a0ae354f84d --- /dev/null +++ b/data/software/st/stemloc.json @@ -0,0 +1,8 @@ +{ + "slug": "stemloc", + "name": "Stemloc", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7607317" + ] +} diff --git a/data/software/st/stemming-and-lemmatization-using-nltk.json b/data/software/st/stemming-and-lemmatization-using-nltk.json new file mode 100644 index 000000000000..dbfe700431fb --- /dev/null +++ b/data/software/st/stemming-and-lemmatization-using-nltk.json @@ -0,0 +1,8 @@ +{ + "slug": "stemming-and-lemmatization-using-nltk", + "name": "Stemming and Lemmatization using NLTK", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084599" + ] +} diff --git a/data/software/st/stencil-code.json b/data/software/st/stencil-code.json new file mode 100644 index 000000000000..981a55a4e709 --- /dev/null +++ b/data/software/st/stencil-code.json @@ -0,0 +1,8 @@ +{ + "slug": "stencil-code", + "name": "Stencil code", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7607501" + ] +} diff --git a/data/software/st/stencila.json b/data/software/st/stencila.json new file mode 100644 index 000000000000..8b844d29b896 --- /dev/null +++ b/data/software/st/stencila.json @@ -0,0 +1,11 @@ +{ + "slug": "stencila", + "name": "Stencila", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q96473364" + ], + "licenses": [ + "Apache Software License 2.0" + ] +} diff --git a/data/software/st/steptalk.json b/data/software/st/steptalk.json new file mode 100644 index 000000000000..b78bb1744604 --- /dev/null +++ b/data/software/st/steptalk.json @@ -0,0 +1,8 @@ +{ + "slug": "steptalk", + "name": "StepTalk", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2342993" + ] +} diff --git a/data/software/st/stereofot.json b/data/software/st/stereofot.json new file mode 100644 index 000000000000..8740b6c4712b --- /dev/null +++ b/data/software/st/stereofot.json @@ -0,0 +1,8 @@ +{ + "slug": "stereofot", + "name": "StereoFot", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3973239" + ] +} diff --git a/data/software/st/sterling.json b/data/software/st/sterling.json new file mode 100644 index 000000000000..5e4f45ed03d6 --- /dev/null +++ b/data/software/st/sterling.json @@ -0,0 +1,11 @@ +{ + "slug": "sterling", + "name": "Sterling", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1606792" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/st/sticky-notes.json b/data/software/st/sticky-notes.json new file mode 100644 index 000000000000..c504bc481d7a --- /dev/null +++ b/data/software/st/sticky-notes.json @@ -0,0 +1,14 @@ +{ + "slug": "sticky-notes", + "name": "Sticky Notes", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q23038417" + ], + "developers": [ + "Microsoft" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/st/sticq.json b/data/software/st/sticq.json new file mode 100644 index 000000000000..8e8f8348ca7e --- /dev/null +++ b/data/software/st/sticq.json @@ -0,0 +1,8 @@ +{ + "slug": "sticq", + "name": "stICQ", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4047719" + ] +} diff --git a/data/software/st/stimulsoft.json b/data/software/st/stimulsoft.json new file mode 100644 index 000000000000..6d5ce4ff6baa --- /dev/null +++ b/data/software/st/stimulsoft.json @@ -0,0 +1,8 @@ +{ + "slug": "stimulsoft", + "name": "Stimulsoft", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4442622" + ] +} diff --git a/data/software/st/sting.json b/data/software/st/sting.json new file mode 100644 index 000000000000..c44ef114985b --- /dev/null +++ b/data/software/st/sting.json @@ -0,0 +1,8 @@ +{ + "slug": "sting", + "name": "STING", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16335169" + ] +} diff --git a/data/software/st/stl-parts.json b/data/software/st/stl-parts.json new file mode 100644 index 000000000000..fef4316d5ef6 --- /dev/null +++ b/data/software/st/stl-parts.json @@ -0,0 +1,8 @@ +{ + "slug": "stl-parts", + "name": "stl.parts", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139578630" + ] +} diff --git a/data/software/st/stoat.json b/data/software/st/stoat.json new file mode 100644 index 000000000000..a8ca1cbff6eb --- /dev/null +++ b/data/software/st/stoat.json @@ -0,0 +1,8 @@ +{ + "slug": "stoat", + "name": "Stoat", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q133540545" + ] +} diff --git a/data/software/st/stochsd.json b/data/software/st/stochsd.json new file mode 100644 index 000000000000..03110d2fb75e --- /dev/null +++ b/data/software/st/stochsd.json @@ -0,0 +1,8 @@ +{ + "slug": "stochsd", + "name": "StochSD", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131277931" + ] +} diff --git a/data/software/st/stocktake-online.json b/data/software/st/stocktake-online.json new file mode 100644 index 000000000000..deaa7758df11 --- /dev/null +++ b/data/software/st/stocktake-online.json @@ -0,0 +1,11 @@ +{ + "slug": "stocktake-online", + "name": "StockTake Online", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135256716" + ], + "genres": [ + "business software" + ] +} diff --git a/data/software/st/stone-giant.json b/data/software/st/stone-giant.json new file mode 100644 index 000000000000..b529f47aef18 --- /dev/null +++ b/data/software/st/stone-giant.json @@ -0,0 +1,8 @@ +{ + "slug": "stone-giant", + "name": "Stone Giant", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4050198" + ] +} diff --git a/data/software/st/stop-motion-studio.json b/data/software/st/stop-motion-studio.json new file mode 100644 index 000000000000..f970fde3e8b4 --- /dev/null +++ b/data/software/st/stop-motion-studio.json @@ -0,0 +1,9 @@ +{ + "slug": "stop-motion-studio", + "name": "Stop Motion Studio", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138528197" + ], + "release_date": "2011-09-07" +} diff --git a/data/software/st/stopping-and-range-of-ions-in-matter.json b/data/software/st/stopping-and-range-of-ions-in-matter.json new file mode 100644 index 000000000000..eb354e8933d9 --- /dev/null +++ b/data/software/st/stopping-and-range-of-ions-in-matter.json @@ -0,0 +1,17 @@ +{ + "slug": "stopping-and-range-of-ions-in-matter", + "name": "Stopping and Range of Ions in Matter", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7619862" + ], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [ + "Visual Basic" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/st/stoqui.json b/data/software/st/stoqui.json new file mode 100644 index 000000000000..7e926ba4e7c0 --- /dev/null +++ b/data/software/st/stoqui.json @@ -0,0 +1,11 @@ +{ + "slug": "stoqui", + "name": "Stoqui", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138465651" + ], + "operating_systems": [ + "iOS" + ] +} diff --git a/data/software/st/storage-home.json b/data/software/st/storage-home.json new file mode 100644 index 000000000000..79c25fe9d8b0 --- /dev/null +++ b/data/software/st/storage-home.json @@ -0,0 +1,15 @@ +{ + "slug": "storage-home", + "name": "Storage@home", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7619899" + ], + "release_date": "2009-01-01", + "developers": [ + "Stanford University" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/st/storefront-audit.json b/data/software/st/storefront-audit.json new file mode 100644 index 000000000000..0f293abf409e --- /dev/null +++ b/data/software/st/storefront-audit.json @@ -0,0 +1,8 @@ +{ + "slug": "storefront-audit", + "name": "Storefront Audit", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139550696" + ] +} diff --git a/data/software/st/storm-codec.json b/data/software/st/storm-codec.json new file mode 100644 index 000000000000..16aa3a2c086e --- /dev/null +++ b/data/software/st/storm-codec.json @@ -0,0 +1,15 @@ +{ + "slug": "storm-codec", + "name": "Storm Codec", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11090490" + ], + "release_date": "2002-01-01", + "developers": [ + "Baofeng Group Co., Ltd." + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/st/storm-player.json b/data/software/st/storm-player.json new file mode 100644 index 000000000000..3207a255fad6 --- /dev/null +++ b/data/software/st/storm-player.json @@ -0,0 +1,8 @@ +{ + "slug": "storm-player", + "name": "Storm Player", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q15946686" + ] +} diff --git a/data/software/st/storpool-storage.json b/data/software/st/storpool-storage.json new file mode 100644 index 000000000000..4e80976dd217 --- /dev/null +++ b/data/software/st/storpool-storage.json @@ -0,0 +1,8 @@ +{ + "slug": "storpool-storage", + "name": "StorPool Storage", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22909095" + ] +} diff --git a/data/software/st/storyboard-quick.json b/data/software/st/storyboard-quick.json new file mode 100644 index 000000000000..9a72e8febc21 --- /dev/null +++ b/data/software/st/storyboard-quick.json @@ -0,0 +1,8 @@ +{ + "slug": "storyboard-quick", + "name": "StoryBoard Quick", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7620363" + ] +} diff --git a/data/software/st/storybonsai.json b/data/software/st/storybonsai.json new file mode 100644 index 000000000000..8b83af477a73 --- /dev/null +++ b/data/software/st/storybonsai.json @@ -0,0 +1,24 @@ +{ + "slug": "storybonsai", + "name": "StoryBonsai", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139582865" + ], + "developers": [ + "Michael Garforth" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [ + "TypeScript" + ], + "licenses": [ + "proprietary license" + ], + "genres": [ + "game development tool" + ] +} diff --git a/data/software/st/storykit.json b/data/software/st/storykit.json new file mode 100644 index 000000000000..443004f69a07 --- /dev/null +++ b/data/software/st/storykit.json @@ -0,0 +1,8 @@ +{ + "slug": "storykit", + "name": "StoryKit", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084601" + ] +} diff --git a/data/software/st/storymapjs.json b/data/software/st/storymapjs.json new file mode 100644 index 000000000000..42c85b2fcf69 --- /dev/null +++ b/data/software/st/storymapjs.json @@ -0,0 +1,8 @@ +{ + "slug": "storymapjs", + "name": "StoryMapJS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084602" + ] +} diff --git a/data/software/st/strand7.json b/data/software/st/strand7.json new file mode 100644 index 000000000000..33fb8a76c3ba --- /dev/null +++ b/data/software/st/strand7.json @@ -0,0 +1,8 @@ +{ + "slug": "strand7", + "name": "STRAND7", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7394802" + ] +} diff --git a/data/software/st/strap-2-0.json b/data/software/st/strap-2-0.json new file mode 100644 index 000000000000..a0ec7c617f88 --- /dev/null +++ b/data/software/st/strap-2-0.json @@ -0,0 +1,8 @@ +{ + "slug": "strap-2-0", + "name": "STRAP 2.0", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087731" + ] +} diff --git a/data/software/st/strasys.json b/data/software/st/strasys.json new file mode 100644 index 000000000000..c9653099af67 --- /dev/null +++ b/data/software/st/strasys.json @@ -0,0 +1,14 @@ +{ + "slug": "strasys", + "name": "STRASYS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138098542" + ], + "developers": [ + "STRASYS Global" + ], + "publishers": [ + "STRASYS Global" + ] +} diff --git a/data/software/st/strata-3d.json b/data/software/st/strata-3d.json new file mode 100644 index 000000000000..3d4306a8c967 --- /dev/null +++ b/data/software/st/strata-3d.json @@ -0,0 +1,8 @@ +{ + "slug": "strata-3d", + "name": "Strata 3D", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3048381" + ] +} diff --git a/data/software/st/stratavision-3d.json b/data/software/st/stratavision-3d.json new file mode 100644 index 000000000000..3ff8ee7f3d41 --- /dev/null +++ b/data/software/st/stratavision-3d.json @@ -0,0 +1,8 @@ +{ + "slug": "stratavision-3d", + "name": "StrataVision 3D", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1298638" + ] +} diff --git a/data/software/st/stratify.json b/data/software/st/stratify.json new file mode 100644 index 000000000000..06f582520233 --- /dev/null +++ b/data/software/st/stratify.json @@ -0,0 +1,8 @@ +{ + "slug": "stratify", + "name": "Stratify", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q58631391" + ] +} diff --git a/data/software/st/stratis-cli.json b/data/software/st/stratis-cli.json new file mode 100644 index 000000000000..8d75475f0b5d --- /dev/null +++ b/data/software/st/stratis-cli.json @@ -0,0 +1,14 @@ +{ + "slug": "stratis-cli", + "name": "stratis-cli", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112243615" + ], + "developers": [ + "Red Hat" + ], + "licenses": [ + "Apache Software License 2.0" + ] +} diff --git a/data/software/st/stratos.json b/data/software/st/stratos.json new file mode 100644 index 000000000000..f7120960825d --- /dev/null +++ b/data/software/st/stratos.json @@ -0,0 +1,11 @@ +{ + "slug": "stratos", + "name": "Stratos", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140464250" + ], + "developers": [ + "Clear Sky" + ] +} diff --git a/data/software/st/stratum.json b/data/software/st/stratum.json new file mode 100644 index 000000000000..916fc3febf54 --- /dev/null +++ b/data/software/st/stratum.json @@ -0,0 +1,11 @@ +{ + "slug": "stratum", + "name": "Stratum", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139581513" + ], + "developers": [ + "XOps360 LLC" + ] +} diff --git a/data/software/st/strauss-sibelius-and-more-complete-parts-to-50-orchestral-masterworks-on-cd-rom.json b/data/software/st/strauss-sibelius-and-more-complete-parts-to-50-orchestral-masterworks-on-cd-rom.json new file mode 100644 index 000000000000..a7854a34d0b9 --- /dev/null +++ b/data/software/st/strauss-sibelius-and-more-complete-parts-to-50-orchestral-masterworks-on-cd-rom.json @@ -0,0 +1,15 @@ +{ + "slug": "strauss-sibelius-and-more-complete-parts-to-50-orchestral-masterworks-on-cd-rom", + "name": "Strauss, Sibelius, and More : Complete ... Parts to 50 Orchestral Masterworks on CD-ROM", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135488461" + ], + "release_date": "2003-01-01", + "publishers": [ + "Hal Leonard" + ], + "operating_systems": [ + "Windows 95" + ] +} diff --git a/data/software/st/strawberry-q132717308.json b/data/software/st/strawberry-q132717308.json new file mode 100644 index 000000000000..6eb8ff569e6c --- /dev/null +++ b/data/software/st/strawberry-q132717308.json @@ -0,0 +1,8 @@ +{ + "slug": "strawberry-q132717308", + "name": "Strawberry", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q132717308" + ] +} diff --git a/data/software/st/strawberry.json b/data/software/st/strawberry.json new file mode 100644 index 000000000000..c07c65999399 --- /dev/null +++ b/data/software/st/strawberry.json @@ -0,0 +1,13 @@ +{ + "slug": "strawberry", + "name": "Strawberry", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q104600447" + ], + "operating_systems": [ + "Unix-like operating system", + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/software/st/streamer.json b/data/software/st/streamer.json new file mode 100644 index 000000000000..8e701af6256e --- /dev/null +++ b/data/software/st/streamer.json @@ -0,0 +1,8 @@ +{ + "slug": "streamer", + "name": "Streamer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7622680" + ] +} diff --git a/data/software/st/streamfab.json b/data/software/st/streamfab.json new file mode 100644 index 000000000000..f34c4d4fa21a --- /dev/null +++ b/data/software/st/streamfab.json @@ -0,0 +1,15 @@ +{ + "slug": "streamfab", + "name": "StreamFab", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135963508" + ], + "developers": [ + "Fengtao Software Inc." + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/software/st/streamlabs.json b/data/software/st/streamlabs.json new file mode 100644 index 000000000000..08971a561e0f --- /dev/null +++ b/data/software/st/streamlabs.json @@ -0,0 +1,8 @@ +{ + "slug": "streamlabs", + "name": "Streamlabs", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q85803720" + ] +} diff --git a/data/software/st/streamtuner.json b/data/software/st/streamtuner.json new file mode 100644 index 000000000000..80bb290c567f --- /dev/null +++ b/data/software/st/streamtuner.json @@ -0,0 +1,8 @@ +{ + "slug": "streamtuner", + "name": "Streamtuner", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3975934" + ] +} diff --git a/data/software/st/street-finder.json b/data/software/st/street-finder.json new file mode 100644 index 000000000000..ee1251258f54 --- /dev/null +++ b/data/software/st/street-finder.json @@ -0,0 +1,8 @@ +{ + "slug": "street-finder", + "name": "Street Finder", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139761998" + ] +} diff --git a/data/software/st/strelka.json b/data/software/st/strelka.json new file mode 100644 index 000000000000..8c03119e5118 --- /dev/null +++ b/data/software/st/strelka.json @@ -0,0 +1,14 @@ +{ + "slug": "strelka", + "name": "Strelka", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4050235" + ], + "operating_systems": [ + "Microsoft Windows" + ], + "licenses": [ + "open-source software" + ] +} diff --git a/data/software/st/stress-reducers.json b/data/software/st/stress-reducers.json new file mode 100644 index 000000000000..979748068177 --- /dev/null +++ b/data/software/st/stress-reducers.json @@ -0,0 +1,16 @@ +{ + "slug": "stress-reducers", + "name": "Stress Reducers", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138646276" + ], + "release_date": "2000-01-01", + "developers": [ + "Gemtree" + ], + "genres": [ + "action game", + "shooter game" + ] +} diff --git a/data/software/st/stride.json b/data/software/st/stride.json new file mode 100644 index 000000000000..8831af7df9b8 --- /dev/null +++ b/data/software/st/stride.json @@ -0,0 +1,14 @@ +{ + "slug": "stride", + "name": "Stride", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q30588940" + ], + "developers": [ + "Silicon Studio" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/st/strikex.json b/data/software/st/strikex.json new file mode 100644 index 000000000000..b325a727d8ba --- /dev/null +++ b/data/software/st/strikex.json @@ -0,0 +1,8 @@ +{ + "slug": "strikex", + "name": "StrikeX", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q114457828" + ] +} diff --git a/data/software/st/strips.json b/data/software/st/strips.json new file mode 100644 index 000000000000..eb34ef318847 --- /dev/null +++ b/data/software/st/strips.json @@ -0,0 +1,12 @@ +{ + "slug": "strips", + "name": "STRIPS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q996052" + ], + "developers": [ + "Nils John Nilsson", + "Richard Fikes" + ] +} diff --git a/data/software/st/strix.json b/data/software/st/strix.json new file mode 100644 index 000000000000..2c9d39879b00 --- /dev/null +++ b/data/software/st/strix.json @@ -0,0 +1,8 @@ +{ + "slug": "strix", + "name": "Strix", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140421515" + ] +} diff --git a/data/software/st/strixdb.json b/data/software/st/strixdb.json new file mode 100644 index 000000000000..e9f6465c9663 --- /dev/null +++ b/data/software/st/strixdb.json @@ -0,0 +1,8 @@ +{ + "slug": "strixdb", + "name": "StrixDB", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3500479" + ] +} diff --git a/data/software/st/structiq.json b/data/software/st/structiq.json new file mode 100644 index 000000000000..b535b78f409a --- /dev/null +++ b/data/software/st/structiq.json @@ -0,0 +1,17 @@ +{ + "slug": "structiq", + "name": "StructIQ", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139373073" + ], + "developers": [ + "iCube Logics" + ], + "publishers": [ + "iCube Logics" + ], + "genres": [ + "Document Management Solutions" + ] +} diff --git a/data/software/st/structure-sequence-and-organization.json b/data/software/st/structure-sequence-and-organization.json new file mode 100644 index 000000000000..76836f0615e6 --- /dev/null +++ b/data/software/st/structure-sequence-and-organization.json @@ -0,0 +1,8 @@ +{ + "slug": "structure-sequence-and-organization", + "name": "structure, sequence and organization", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q13515735" + ] +} diff --git a/data/software/st/structure.json b/data/software/st/structure.json new file mode 100644 index 000000000000..cbd47c6af558 --- /dev/null +++ b/data/software/st/structure.json @@ -0,0 +1,8 @@ +{ + "slug": "structure", + "name": "STRUCTURE", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112231465" + ] +} diff --git a/data/software/st/stuartyeates-oai-pmh-list-initial-release.json b/data/software/st/stuartyeates-oai-pmh-list-initial-release.json new file mode 100644 index 000000000000..81265acdd9da --- /dev/null +++ b/data/software/st/stuartyeates-oai-pmh-list-initial-release.json @@ -0,0 +1,9 @@ +{ + "slug": "stuartyeates-oai-pmh-list-initial-release", + "name": "stuartyeates/oai-pmh-list: initial release", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126736804" + ], + "release_date": "2022-01-25" +} diff --git a/data/software/st/student.json b/data/software/st/student.json new file mode 100644 index 000000000000..031d962cbd96 --- /dev/null +++ b/data/software/st/student.json @@ -0,0 +1,8 @@ +{ + "slug": "student", + "name": "STUDENT", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7394857" + ] +} diff --git a/data/software/st/studentignite.json b/data/software/st/studentignite.json new file mode 100644 index 000000000000..962dc7c130ad --- /dev/null +++ b/data/software/st/studentignite.json @@ -0,0 +1,11 @@ +{ + "slug": "studentignite", + "name": "StudentIgnite", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138846365" + ], + "publishers": [ + "Course Finder Group" + ] +} diff --git a/data/software/st/studierfenster.json b/data/software/st/studierfenster.json new file mode 100644 index 000000000000..16bda797a844 --- /dev/null +++ b/data/software/st/studierfenster.json @@ -0,0 +1,11 @@ +{ + "slug": "studierfenster", + "name": "StudierFenster", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q97095933" + ], + "developers": [ + "Institute of Visual Computing" + ] +} diff --git a/data/software/st/studiomini.json b/data/software/st/studiomini.json new file mode 100644 index 000000000000..f0b8e38f603e --- /dev/null +++ b/data/software/st/studiomini.json @@ -0,0 +1,8 @@ +{ + "slug": "studiomini", + "name": "StudioMini", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7628115" + ] +} diff --git a/data/software/st/studiopartner.json b/data/software/st/studiopartner.json new file mode 100644 index 000000000000..05e702b2adf2 --- /dev/null +++ b/data/software/st/studiopartner.json @@ -0,0 +1,8 @@ +{ + "slug": "studiopartner", + "name": "StudioPartner", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140376024" + ] +} diff --git a/data/software/st/studybuddy.json b/data/software/st/studybuddy.json new file mode 100644 index 000000000000..798052867c44 --- /dev/null +++ b/data/software/st/studybuddy.json @@ -0,0 +1,8 @@ +{ + "slug": "studybuddy", + "name": "StudyBuddy", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138807417" + ] +} diff --git a/data/software/st/studywiz.json b/data/software/st/studywiz.json new file mode 100644 index 000000000000..a96863bd1cfc --- /dev/null +++ b/data/software/st/studywiz.json @@ -0,0 +1,8 @@ +{ + "slug": "studywiz", + "name": "Studywiz", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7628428" + ] +} diff --git a/data/software/st/stuffit-expander.json b/data/software/st/stuffit-expander.json new file mode 100644 index 000000000000..facffdc26272 --- /dev/null +++ b/data/software/st/stuffit-expander.json @@ -0,0 +1,14 @@ +{ + "slug": "stuffit-expander", + "name": "StuffIt Expander", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2739067" + ], + "developers": [ + "Smith Micro Software" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/st/stump.json b/data/software/st/stump.json new file mode 100644 index 000000000000..9ca7f3e9db67 --- /dev/null +++ b/data/software/st/stump.json @@ -0,0 +1,8 @@ +{ + "slug": "stump", + "name": "Stump", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76184218" + ] +} diff --git a/data/software/st/stumpwm-contrib.json b/data/software/st/stumpwm-contrib.json new file mode 100644 index 000000000000..016e285a0bb8 --- /dev/null +++ b/data/software/st/stumpwm-contrib.json @@ -0,0 +1,8 @@ +{ + "slug": "stumpwm-contrib", + "name": "stumpwm-contrib", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975503" + ] +} diff --git a/data/software/st/stv-player.json b/data/software/st/stv-player.json new file mode 100644 index 000000000000..7176c6365052 --- /dev/null +++ b/data/software/st/stv-player.json @@ -0,0 +1,12 @@ +{ + "slug": "stv-player", + "name": "STV Player", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7394873" + ], + "release_date": "2009-07-01", + "developers": [ + "STV Group" + ] +} diff --git a/data/software/st/stxxl.json b/data/software/st/stxxl.json new file mode 100644 index 000000000000..b81b1e408425 --- /dev/null +++ b/data/software/st/stxxl.json @@ -0,0 +1,14 @@ +{ + "slug": "stxxl", + "name": "stxxl", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117212030" + ], + "developers": [ + "Roman Dementiev" + ], + "licenses": [ + "Boost Software License" + ] +} diff --git a/data/software/st/stykz.json b/data/software/st/stykz.json new file mode 100644 index 000000000000..a529a59bf3cc --- /dev/null +++ b/data/software/st/stykz.json @@ -0,0 +1,8 @@ +{ + "slug": "stykz", + "name": "Stykz", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4050289" + ] +} diff --git a/data/software/st/stylecop.json b/data/software/st/stylecop.json new file mode 100644 index 000000000000..ddef65509f87 --- /dev/null +++ b/data/software/st/stylecop.json @@ -0,0 +1,8 @@ +{ + "slug": "stylecop", + "name": "StyleCop", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7629378" + ] +} diff --git a/data/software/st/stylexp.json b/data/software/st/stylexp.json new file mode 100644 index 000000000000..2ec1e0c5eaa3 --- /dev/null +++ b/data/software/st/stylexp.json @@ -0,0 +1,8 @@ +{ + "slug": "stylexp", + "name": "StyleXP", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q843865" + ] +} diff --git a/data/software/st/stylingcv.json b/data/software/st/stylingcv.json new file mode 100644 index 000000000000..dede2dd93bd5 --- /dev/null +++ b/data/software/st/stylingcv.json @@ -0,0 +1,14 @@ +{ + "slug": "stylingcv", + "name": "StylingCV", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138803241" + ], + "operating_systems": [ + "web browser" + ], + "licenses": [ + "freemium" + ] +} diff --git a/data/software/st/stylo.json b/data/software/st/stylo.json new file mode 100644 index 000000000000..76ba371f3ddd --- /dev/null +++ b/data/software/st/stylo.json @@ -0,0 +1,14 @@ +{ + "slug": "stylo", + "name": "stylo()", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123010085" + ], + "programming_languages": [ + "R" + ], + "licenses": [ + "GNU General Public License, version 3.0" + ] +} diff --git a/data/software/su/suacomp.json b/data/software/su/suacomp.json new file mode 100644 index 000000000000..0fcd3564320d --- /dev/null +++ b/data/software/su/suacomp.json @@ -0,0 +1,8 @@ +{ + "slug": "suacomp", + "name": "suacomp", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975504" + ] +} diff --git a/data/software/su/suanshu-numerical-library.json b/data/software/su/suanshu-numerical-library.json new file mode 100644 index 000000000000..cbb127ac042e --- /dev/null +++ b/data/software/su/suanshu-numerical-library.json @@ -0,0 +1,8 @@ +{ + "slug": "suanshu-numerical-library", + "name": "SuanShu numerical library", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108532367" + ] +} diff --git a/data/software/su/sublime-merge.json b/data/software/su/sublime-merge.json new file mode 100644 index 000000000000..7c44588ff473 --- /dev/null +++ b/data/software/su/sublime-merge.json @@ -0,0 +1,19 @@ +{ + "slug": "sublime-merge", + "name": "Sublime Merge", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112301215" + ], + "release_date": "2018-09-20", + "developers": [ + "Sublime HQ" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/su/sublime-text.json b/data/software/su/sublime-text.json new file mode 100644 index 000000000000..dcb1bf959374 --- /dev/null +++ b/data/software/su/sublime-text.json @@ -0,0 +1,23 @@ +{ + "slug": "sublime-text", + "name": "Sublime Text", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q267193" + ], + "release_date": "2008-01-18", + "developers": [ + "Sublime HQ", + "Jon Skinner" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [ + "Python" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/su/subliminal.json b/data/software/su/subliminal.json new file mode 100644 index 000000000000..c6dcb8d09f97 --- /dev/null +++ b/data/software/su/subliminal.json @@ -0,0 +1,11 @@ +{ + "slug": "subliminal", + "name": "subliminal", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975505" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/su/substance-designer.json b/data/software/su/substance-designer.json new file mode 100644 index 000000000000..832b724b0ee8 --- /dev/null +++ b/data/software/su/substance-designer.json @@ -0,0 +1,8 @@ +{ + "slug": "substance-designer", + "name": "Substance Designer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q20072431" + ] +} diff --git a/data/software/su/subtle.json b/data/software/su/subtle.json new file mode 100644 index 000000000000..1d84dbd63b6b --- /dev/null +++ b/data/software/su/subtle.json @@ -0,0 +1,8 @@ +{ + "slug": "subtle", + "name": "Subtle", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4050306" + ] +} diff --git a/data/software/su/sucana.json b/data/software/su/sucana.json new file mode 100644 index 000000000000..a15cb0c780c8 --- /dev/null +++ b/data/software/su/sucana.json @@ -0,0 +1,8 @@ +{ + "slug": "sucana", + "name": "Sucana", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138750545" + ] +} diff --git a/data/software/su/sugarscape.json b/data/software/su/sugarscape.json new file mode 100644 index 000000000000..18f8059d4e6a --- /dev/null +++ b/data/software/su/sugarscape.json @@ -0,0 +1,8 @@ +{ + "slug": "sugarscape", + "name": "Sugarscape", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7635046" + ] +} diff --git a/data/software/su/sugarsync.json b/data/software/su/sugarsync.json new file mode 100644 index 000000000000..9b850806254b --- /dev/null +++ b/data/software/su/sugarsync.json @@ -0,0 +1,11 @@ +{ + "slug": "sugarsync", + "name": "SugarSync", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q641596" + ], + "developers": [ + "J2 Global" + ] +} diff --git a/data/software/su/suggested-upper-merged-ontology.json b/data/software/su/suggested-upper-merged-ontology.json new file mode 100644 index 000000000000..afff7eb7d0c9 --- /dev/null +++ b/data/software/su/suggested-upper-merged-ontology.json @@ -0,0 +1,9 @@ +{ + "slug": "suggested-upper-merged-ontology", + "name": "Suggested Upper Merged Ontology", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7635093" + ], + "release_date": "2000-12-01" +} diff --git a/data/software/su/suitesparse.json b/data/software/su/suitesparse.json new file mode 100644 index 000000000000..d021b1b7d444 --- /dev/null +++ b/data/software/su/suitesparse.json @@ -0,0 +1,8 @@ +{ + "slug": "suitesparse", + "name": "SuiteSparse", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121290584" + ] +} diff --git a/data/software/su/sumi.json b/data/software/su/sumi.json new file mode 100644 index 000000000000..b12c83be5432 --- /dev/null +++ b/data/software/su/sumi.json @@ -0,0 +1,8 @@ +{ + "slug": "sumi", + "name": "Sumi", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2481540" + ] +} diff --git a/data/software/su/summon.json b/data/software/su/summon.json new file mode 100644 index 000000000000..b8036761364a --- /dev/null +++ b/data/software/su/summon.json @@ -0,0 +1,8 @@ +{ + "slug": "summon", + "name": "Summon", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q114049683" + ] +} diff --git a/data/software/su/sumo-paint.json b/data/software/su/sumo-paint.json new file mode 100644 index 000000000000..da8593642e1e --- /dev/null +++ b/data/software/su/sumo-paint.json @@ -0,0 +1,11 @@ +{ + "slug": "sumo-paint", + "name": "Sumo Paint", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4355905" + ], + "programming_languages": [ + "ActionScript" + ] +} diff --git a/data/software/su/sun-diagram.json b/data/software/su/sun-diagram.json new file mode 100644 index 000000000000..9f208bb3ea06 --- /dev/null +++ b/data/software/su/sun-diagram.json @@ -0,0 +1,14 @@ +{ + "slug": "sun-diagram", + "name": "Sun Diagram", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138658067" + ], + "developers": [ + "Febhouse" + ], + "genres": [ + "architecture" + ] +} diff --git a/data/software/su/sun-java-communications-suite.json b/data/software/su/sun-java-communications-suite.json new file mode 100644 index 000000000000..ecb748157fcc --- /dev/null +++ b/data/software/su/sun-java-communications-suite.json @@ -0,0 +1,14 @@ +{ + "slug": "sun-java-communications-suite", + "name": "Sun Java Communications Suite", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3354982" + ], + "developers": [ + "Sun Microsystems" + ], + "programming_languages": [ + "Java" + ] +} diff --git a/data/software/su/sun-java-studio-creator.json b/data/software/su/sun-java-studio-creator.json new file mode 100644 index 000000000000..d3156b963445 --- /dev/null +++ b/data/software/su/sun-java-studio-creator.json @@ -0,0 +1,8 @@ +{ + "slug": "sun-java-studio-creator", + "name": "Sun Java Studio Creator", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7638347" + ] +} diff --git a/data/software/su/sun-java-system-access-manager.json b/data/software/su/sun-java-system-access-manager.json new file mode 100644 index 000000000000..6694d0d98ddf --- /dev/null +++ b/data/software/su/sun-java-system-access-manager.json @@ -0,0 +1,11 @@ +{ + "slug": "sun-java-system-access-manager", + "name": "Sun Java System Access Manager", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7638348" + ], + "developers": [ + "Sun Microsystems" + ] +} diff --git a/data/software/su/sun-java-system-web-proxy-server.json b/data/software/su/sun-java-system-web-proxy-server.json new file mode 100644 index 000000000000..b01205cd652b --- /dev/null +++ b/data/software/su/sun-java-system-web-proxy-server.json @@ -0,0 +1,11 @@ +{ + "slug": "sun-java-system-web-proxy-server", + "name": "Sun Java System Web Proxy Server", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7638352" + ], + "developers": [ + "Oracle Corporation" + ] +} diff --git a/data/software/su/sun-java-wireless-toolkit.json b/data/software/su/sun-java-wireless-toolkit.json new file mode 100644 index 000000000000..ff417563eb28 --- /dev/null +++ b/data/software/su/sun-java-wireless-toolkit.json @@ -0,0 +1,11 @@ +{ + "slug": "sun-java-wireless-toolkit", + "name": "Sun Java Wireless Toolkit", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4050377" + ], + "developers": [ + "Sun Microsystems" + ] +} diff --git a/data/software/su/sunbelt-personal-firewall.json b/data/software/su/sunbelt-personal-firewall.json new file mode 100644 index 000000000000..a40419070f35 --- /dev/null +++ b/data/software/su/sunbelt-personal-firewall.json @@ -0,0 +1,8 @@ +{ + "slug": "sunbelt-personal-firewall", + "name": "Sunbelt Personal Firewall", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1808026" + ] +} diff --git a/data/software/su/sunflow.json b/data/software/su/sunflow.json new file mode 100644 index 000000000000..93725cef7968 --- /dev/null +++ b/data/software/su/sunflow.json @@ -0,0 +1,14 @@ +{ + "slug": "sunflow", + "name": "Sunflow", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4050391" + ], + "programming_languages": [ + "Java" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/su/sunrise-calendar.json b/data/software/su/sunrise-calendar.json new file mode 100644 index 000000000000..ea7bace16391 --- /dev/null +++ b/data/software/su/sunrise-calendar.json @@ -0,0 +1,17 @@ +{ + "slug": "sunrise-calendar", + "name": "Sunrise Calendar", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q19877531" + ], + "developers": [ + "Microsoft" + ], + "operating_systems": [ + "macOS" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/su/super-cloudbuilt.json b/data/software/su/super-cloudbuilt.json new file mode 100644 index 000000000000..e97ff21bda60 --- /dev/null +++ b/data/software/su/super-cloudbuilt.json @@ -0,0 +1,9 @@ +{ + "slug": "super-cloudbuilt", + "name": "Super Cloudbuilt", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q89408847" + ], + "release_date": "2017-07-25" +} diff --git a/data/software/su/super-flexible.json b/data/software/su/super-flexible.json new file mode 100644 index 000000000000..a059de1dc813 --- /dev/null +++ b/data/software/su/super-flexible.json @@ -0,0 +1,12 @@ +{ + "slug": "super-flexible", + "name": "Super Flexible", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17137940" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/software/su/super-pi.json b/data/software/su/super-pi.json new file mode 100644 index 000000000000..89a0bdb6152d --- /dev/null +++ b/data/software/su/super-pi.json @@ -0,0 +1,18 @@ +{ + "slug": "super-pi", + "name": "Super PI", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1786021" + ], + "operating_systems": [ + "IRIX", + "HP-UX", + "IBM AIX", + "Berkeley Software Distribution", + "FreeBSD", + "Solaris", + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/software/su/super-productivity.json b/data/software/su/super-productivity.json new file mode 100644 index 000000000000..00fceaca66c5 --- /dev/null +++ b/data/software/su/super-productivity.json @@ -0,0 +1,11 @@ +{ + "slug": "super-productivity", + "name": "Super Productivity", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131751982" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/su/super.json b/data/software/su/super.json new file mode 100644 index 000000000000..574bc5c8e56a --- /dev/null +++ b/data/software/su/super.json @@ -0,0 +1,11 @@ +{ + "slug": "super", + "name": "SUPER", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q649316" + ], + "licenses": [ + "adware" + ] +} diff --git a/data/software/su/superantispyware.json b/data/software/su/superantispyware.json new file mode 100644 index 000000000000..4664f8229c9a --- /dev/null +++ b/data/software/su/superantispyware.json @@ -0,0 +1,8 @@ +{ + "slug": "superantispyware", + "name": "SUPERAntiSpyware", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7395022" + ] +} diff --git a/data/software/su/superbase-database.json b/data/software/su/superbase-database.json new file mode 100644 index 000000000000..76b27c0882f7 --- /dev/null +++ b/data/software/su/superbase-database.json @@ -0,0 +1,8 @@ +{ + "slug": "superbase-database", + "name": "Superbase database", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2367280" + ] +} diff --git a/data/software/su/superbbs.json b/data/software/su/superbbs.json new file mode 100644 index 000000000000..3ec5cec38019 --- /dev/null +++ b/data/software/su/superbbs.json @@ -0,0 +1,12 @@ +{ + "slug": "superbbs", + "name": "SuperBBS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7641969" + ], + "release_date": "1990-01-01", + "licenses": [ + "shareware" + ] +} diff --git a/data/software/su/supercell-wx.json b/data/software/su/supercell-wx.json new file mode 100644 index 000000000000..ce0a39cb6a71 --- /dev/null +++ b/data/software/su/supercell-wx.json @@ -0,0 +1,11 @@ +{ + "slug": "supercell-wx", + "name": "Supercell Wx", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130308325" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/su/superfastmatch.json b/data/software/su/superfastmatch.json new file mode 100644 index 000000000000..99346cef5921 --- /dev/null +++ b/data/software/su/superfastmatch.json @@ -0,0 +1,8 @@ +{ + "slug": "superfastmatch", + "name": "Superfastmatch", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084604" + ] +} diff --git a/data/software/su/superhighway84.json b/data/software/su/superhighway84.json new file mode 100644 index 000000000000..24070103ad1b --- /dev/null +++ b/data/software/su/superhighway84.json @@ -0,0 +1,14 @@ +{ + "slug": "superhighway84", + "name": "Superhighway84", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120135087" + ], + "programming_languages": [ + "Go" + ], + "licenses": [ + "GNU General Public License, version 3.0" + ] +} diff --git a/data/software/su/superlu-dist.json b/data/software/su/superlu-dist.json new file mode 100644 index 000000000000..579a069d3f48 --- /dev/null +++ b/data/software/su/superlu-dist.json @@ -0,0 +1,8 @@ +{ + "slug": "superlu-dist", + "name": "SuperLU-DIST", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123190841" + ] +} diff --git a/data/software/su/superlu.json b/data/software/su/superlu.json new file mode 100644 index 000000000000..ec71643f81c1 --- /dev/null +++ b/data/software/su/superlu.json @@ -0,0 +1,8 @@ +{ + "slug": "superlu", + "name": "superlu", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975506" + ] +} diff --git a/data/software/su/supermemo.json b/data/software/su/supermemo.json new file mode 100644 index 000000000000..102997d60db4 --- /dev/null +++ b/data/software/su/supermemo.json @@ -0,0 +1,8 @@ +{ + "slug": "supermemo", + "name": "SuperMemo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3099491" + ] +} diff --git a/data/software/su/superpowers.json b/data/software/su/superpowers.json new file mode 100644 index 000000000000..e389bdd271e6 --- /dev/null +++ b/data/software/su/superpowers.json @@ -0,0 +1,8 @@ +{ + "slug": "superpowers", + "name": "Superpowers", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137381915" + ] +} diff --git a/data/software/su/superscan.json b/data/software/su/superscan.json new file mode 100644 index 000000000000..86234f8b9f38 --- /dev/null +++ b/data/software/su/superscan.json @@ -0,0 +1,11 @@ +{ + "slug": "superscan", + "name": "Superscan", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7644125" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/su/superswitcher.json b/data/software/su/superswitcher.json new file mode 100644 index 000000000000..588aebc3683e --- /dev/null +++ b/data/software/su/superswitcher.json @@ -0,0 +1,14 @@ +{ + "slug": "superswitcher", + "name": "superswitcher", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q70078544" + ], + "developers": [ + "Nigel Tao" + ], + "licenses": [ + "GNU General Public License, version 2.0" + ] +} diff --git a/data/software/su/supportworks.json b/data/software/su/supportworks.json new file mode 100644 index 000000000000..5ac6412e867d --- /dev/null +++ b/data/software/su/supportworks.json @@ -0,0 +1,8 @@ +{ + "slug": "supportworks", + "name": "Supportworks", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7644633" + ] +} diff --git a/data/software/su/supreme-beats-a-percussion-library-by-bashiri-johnson.json b/data/software/su/supreme-beats-a-percussion-library-by-bashiri-johnson.json new file mode 100644 index 000000000000..4c5768c00346 --- /dev/null +++ b/data/software/su/supreme-beats-a-percussion-library-by-bashiri-johnson.json @@ -0,0 +1,9 @@ +{ + "slug": "supreme-beats-a-percussion-library-by-bashiri-johnson", + "name": "Supreme Beats : A Percussion Library by Bashiri Johnson", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135494400" + ], + "release_date": "1995-01-01" +} diff --git a/data/software/su/surface-evolver.json b/data/software/su/surface-evolver.json new file mode 100644 index 000000000000..947c3779189d --- /dev/null +++ b/data/software/su/surface-evolver.json @@ -0,0 +1,15 @@ +{ + "slug": "surface-evolver", + "name": "Surface Evolver", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7645920" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/su/surfshark.json b/data/software/su/surfshark.json new file mode 100644 index 000000000000..2f8fee0c5367 --- /dev/null +++ b/data/software/su/surfshark.json @@ -0,0 +1,13 @@ +{ + "slug": "surfshark", + "name": "Surfshark", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105102519" + ], + "operating_systems": [ + "iOS", + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/software/su/surgical-segment-navigator.json b/data/software/su/surgical-segment-navigator.json new file mode 100644 index 000000000000..1cb11651d99c --- /dev/null +++ b/data/software/su/surgical-segment-navigator.json @@ -0,0 +1,11 @@ +{ + "slug": "surgical-segment-navigator", + "name": "Surgical segment navigator", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2368534" + ], + "developers": [ + "Carl Zeiss AG" + ] +} diff --git a/data/software/su/surround-scm.json b/data/software/su/surround-scm.json new file mode 100644 index 000000000000..668dc83b32c9 --- /dev/null +++ b/data/software/su/surround-scm.json @@ -0,0 +1,14 @@ +{ + "slug": "surround-scm", + "name": "Surround SCM", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7646899" + ], + "developers": [ + "Seapine Software" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/su/survey-daddy.json b/data/software/su/survey-daddy.json new file mode 100644 index 000000000000..bb05a968f462 --- /dev/null +++ b/data/software/su/survey-daddy.json @@ -0,0 +1,8 @@ +{ + "slug": "survey-daddy", + "name": "Survey Daddy", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084605" + ] +} diff --git a/data/software/su/suse-enterprise-storage.json b/data/software/su/suse-enterprise-storage.json new file mode 100644 index 000000000000..5e15fd8795be --- /dev/null +++ b/data/software/su/suse-enterprise-storage.json @@ -0,0 +1,11 @@ +{ + "slug": "suse-enterprise-storage", + "name": "SUSE Enterprise Storage", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22909188" + ], + "developers": [ + "SUSE" + ] +} diff --git a/data/software/su/sustainable-communities-tracker.json b/data/software/su/sustainable-communities-tracker.json new file mode 100644 index 000000000000..b3d9cb786c34 --- /dev/null +++ b/data/software/su/sustainable-communities-tracker.json @@ -0,0 +1,11 @@ +{ + "slug": "sustainable-communities-tracker", + "name": "sustainable-communities-tracker", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127487192" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/sv/svchost-exe.json b/data/software/sv/svchost-exe.json new file mode 100644 index 000000000000..21f6da706a1f --- /dev/null +++ b/data/software/sv/svchost-exe.json @@ -0,0 +1,8 @@ +{ + "slug": "svchost-exe", + "name": "svchost.exe", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q838001" + ] +} diff --git a/data/software/sv/svf.json b/data/software/sv/svf.json new file mode 100644 index 000000000000..6899a95eb324 --- /dev/null +++ b/data/software/sv/svf.json @@ -0,0 +1,11 @@ +{ + "slug": "svf", + "name": "SVF", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124842201" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/sv/svflux.json b/data/software/sv/svflux.json new file mode 100644 index 000000000000..facbf5235c0b --- /dev/null +++ b/data/software/sv/svflux.json @@ -0,0 +1,11 @@ +{ + "slug": "svflux", + "name": "SVFlux", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7395076" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/sv/svn2git.json b/data/software/sv/svn2git.json new file mode 100644 index 000000000000..fe544539f231 --- /dev/null +++ b/data/software/sv/svn2git.json @@ -0,0 +1,8 @@ +{ + "slug": "svn2git", + "name": "svn2git", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975507" + ] +} diff --git a/data/software/sv/svslope.json b/data/software/sv/svslope.json new file mode 100644 index 000000000000..43260b8bcc1e --- /dev/null +++ b/data/software/sv/svslope.json @@ -0,0 +1,8 @@ +{ + "slug": "svslope", + "name": "SVSlope", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7395098" + ] +} diff --git a/data/software/sw/sw-notify-send.json b/data/software/sw/sw-notify-send.json new file mode 100644 index 000000000000..174d35705dad --- /dev/null +++ b/data/software/sw/sw-notify-send.json @@ -0,0 +1,8 @@ +{ + "slug": "sw-notify-send", + "name": "sw-notify-send", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975509" + ] +} diff --git a/data/software/sw/swapnote.json b/data/software/sw/swapnote.json new file mode 100644 index 000000000000..a5c12fb42ffc --- /dev/null +++ b/data/software/sw/swapnote.json @@ -0,0 +1,15 @@ +{ + "slug": "swapnote", + "name": "Swapnote", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11259709" + ], + "release_date": "2011-12-21", + "developers": [ + "Nintendo System Development" + ], + "publishers": [ + "Nintendo" + ] +} diff --git a/data/software/sw/swarachakra.json b/data/software/sw/swarachakra.json new file mode 100644 index 000000000000..79fdbcdda2ad --- /dev/null +++ b/data/software/sw/swarachakra.json @@ -0,0 +1,11 @@ +{ + "slug": "swarachakra", + "name": "Swarachakra", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17379167" + ], + "licenses": [ + "Apache License" + ] +} diff --git a/data/software/sw/swat.json b/data/software/sw/swat.json new file mode 100644 index 000000000000..721d275aa8aa --- /dev/null +++ b/data/software/sw/swat.json @@ -0,0 +1,8 @@ +{ + "slug": "swat", + "name": "SWAT", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7395158" + ] +} diff --git a/data/software/sw/sweet-ann.json b/data/software/sw/sweet-ann.json new file mode 100644 index 000000000000..1056aabfb6d7 --- /dev/null +++ b/data/software/sw/sweet-ann.json @@ -0,0 +1,9 @@ +{ + "slug": "sweet-ann", + "name": "Sweet Ann", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q24914278" + ], + "release_date": "2007-06-29" +} diff --git a/data/software/sw/swell-radio.json b/data/software/sw/swell-radio.json new file mode 100644 index 000000000000..6167b4bc7d82 --- /dev/null +++ b/data/software/sw/swell-radio.json @@ -0,0 +1,8 @@ +{ + "slug": "swell-radio", + "name": "Swell Radio", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q15737245" + ] +} diff --git a/data/software/sw/swellrt.json b/data/software/sw/swellrt.json new file mode 100644 index 000000000000..20791570aecd --- /dev/null +++ b/data/software/sw/swellrt.json @@ -0,0 +1,11 @@ +{ + "slug": "swellrt", + "name": "SwellRT", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q42851294" + ], + "programming_languages": [ + "Java" + ] +} diff --git a/data/software/sw/swf2exe-software.json b/data/software/sw/swf2exe-software.json new file mode 100644 index 000000000000..d29df18456b8 --- /dev/null +++ b/data/software/sw/swf2exe-software.json @@ -0,0 +1,8 @@ +{ + "slug": "swf2exe-software", + "name": "SWF2EXE software", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7395178" + ] +} diff --git a/data/software/sw/swift-missive.json b/data/software/sw/swift-missive.json new file mode 100644 index 000000000000..6b14acbbfbdf --- /dev/null +++ b/data/software/sw/swift-missive.json @@ -0,0 +1,15 @@ +{ + "slug": "swift-missive", + "name": "Swift Missive", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137714298" + ], + "operating_systems": [ + "cross-platform" + ], + "programming_languages": [ + "Go", + "TypeScript" + ] +} diff --git a/data/software/sw/swift-playgrounds.json b/data/software/sw/swift-playgrounds.json new file mode 100644 index 000000000000..556cf9147942 --- /dev/null +++ b/data/software/sw/swift-playgrounds.json @@ -0,0 +1,15 @@ +{ + "slug": "swift-playgrounds", + "name": "Swift Playgrounds", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q29364676" + ], + "release_date": "2014-06-02", + "developers": [ + "Apple Inc." + ], + "publishers": [ + "Apple Inc." + ] +} diff --git a/data/software/sw/swiftcoin.json b/data/software/sw/swiftcoin.json new file mode 100644 index 000000000000..76fdf1050d47 --- /dev/null +++ b/data/software/sw/swiftcoin.json @@ -0,0 +1,8 @@ +{ + "slug": "swiftcoin", + "name": "SwiftCoin", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22991158" + ] +} diff --git a/data/software/sw/swiftriver.json b/data/software/sw/swiftriver.json new file mode 100644 index 000000000000..722743c72d6f --- /dev/null +++ b/data/software/sw/swiftriver.json @@ -0,0 +1,8 @@ +{ + "slug": "swiftriver", + "name": "SwiftRiver", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084606" + ] +} diff --git a/data/software/sw/swiftweasel.json b/data/software/sw/swiftweasel.json new file mode 100644 index 000000000000..c0396a7a784c --- /dev/null +++ b/data/software/sw/swiftweasel.json @@ -0,0 +1,11 @@ +{ + "slug": "swiftweasel", + "name": "Swiftweasel", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1013763" + ], + "licenses": [ + "Mozilla Public License, version 1.1" + ] +} diff --git a/data/software/sw/swing-browser.json b/data/software/sw/swing-browser.json new file mode 100644 index 000000000000..6bcaea40d150 --- /dev/null +++ b/data/software/sw/swing-browser.json @@ -0,0 +1,8 @@ +{ + "slug": "swing-browser", + "name": "Swing Browser", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q12603618" + ] +} diff --git a/data/software/sw/swiss-model.json b/data/software/sw/swiss-model.json new file mode 100644 index 000000000000..ba55a45bba8f --- /dev/null +++ b/data/software/sw/swiss-model.json @@ -0,0 +1,8 @@ +{ + "slug": "swiss-model", + "name": "Swiss-model", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7658835" + ] +} diff --git a/data/software/sw/swisstransfer.json b/data/software/sw/swisstransfer.json new file mode 100644 index 000000000000..2d5eb2414817 --- /dev/null +++ b/data/software/sw/swisstransfer.json @@ -0,0 +1,8 @@ +{ + "slug": "swisstransfer", + "name": "SwissTransfer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107429823" + ] +} diff --git a/data/software/sw/switch-q121631703.json b/data/software/sw/switch-q121631703.json new file mode 100644 index 000000000000..c2d4720c34b5 --- /dev/null +++ b/data/software/sw/switch-q121631703.json @@ -0,0 +1,8 @@ +{ + "slug": "switch-q121631703", + "name": "SWITCH!", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121631703" + ] +} diff --git a/data/software/sw/switch.json b/data/software/sw/switch.json new file mode 100644 index 000000000000..33bc32aba75a --- /dev/null +++ b/data/software/sw/switch.json @@ -0,0 +1,11 @@ +{ + "slug": "switch", + "name": "Switch", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q20880805" + ], + "operating_systems": [ + "iOS" + ] +} diff --git a/data/software/sw/swordfish-translation-editor.json b/data/software/sw/swordfish-translation-editor.json new file mode 100644 index 000000000000..b3b551086bb1 --- /dev/null +++ b/data/software/sw/swordfish-translation-editor.json @@ -0,0 +1,8 @@ +{ + "slug": "swordfish-translation-editor", + "name": "Swordfish Translation Editor", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7659326" + ] +} diff --git a/data/software/sw/swvl.json b/data/software/sw/swvl.json new file mode 100644 index 000000000000..3c5f259c6eaf --- /dev/null +++ b/data/software/sw/swvl.json @@ -0,0 +1,9 @@ +{ + "slug": "swvl", + "name": "Swvl", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q73312516" + ], + "release_date": "2017-01-01" +} diff --git a/data/software/sx/sxe-injected.json b/data/software/sx/sxe-injected.json new file mode 100644 index 000000000000..70a6c2d37a9c --- /dev/null +++ b/data/software/sx/sxe-injected.json @@ -0,0 +1,11 @@ +{ + "slug": "sxe-injected", + "name": "SXe Injected", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6116357" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/sy/syal.json b/data/software/sy/syal.json new file mode 100644 index 000000000000..c4b9ab7e6bd6 --- /dev/null +++ b/data/software/sy/syal.json @@ -0,0 +1,8 @@ +{ + "slug": "syal", + "name": "SYAL", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q19402544" + ] +} diff --git a/data/software/sy/sydium.json b/data/software/sy/sydium.json new file mode 100644 index 000000000000..24253dec6d24 --- /dev/null +++ b/data/software/sy/sydium.json @@ -0,0 +1,11 @@ +{ + "slug": "sydium", + "name": "Sydium", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140324738" + ], + "developers": [ + "Parhelion Software SRL" + ] +} diff --git a/data/software/sy/sydle.json b/data/software/sy/sydle.json new file mode 100644 index 000000000000..b658be0eb1c4 --- /dev/null +++ b/data/software/sy/sydle.json @@ -0,0 +1,14 @@ +{ + "slug": "sydle", + "name": "Sydle", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7659794" + ], + "programming_languages": [ + "Java" + ], + "licenses": [ + "end-user license agreement" + ] +} diff --git a/data/software/sy/sydney.json b/data/software/sy/sydney.json new file mode 100644 index 000000000000..34d80d7845f4 --- /dev/null +++ b/data/software/sy/sydney.json @@ -0,0 +1,8 @@ +{ + "slug": "sydney", + "name": "Sydney", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134563618" + ] +} diff --git a/data/software/sy/sylenth1.json b/data/software/sy/sylenth1.json new file mode 100644 index 000000000000..83d24e2a68dc --- /dev/null +++ b/data/software/sy/sylenth1.json @@ -0,0 +1,9 @@ +{ + "slug": "sylenth1", + "name": "Sylenth1", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q30917187" + ], + "release_date": "2006-01-01" +} diff --git a/data/software/sy/sylvadb.json b/data/software/sy/sylvadb.json new file mode 100644 index 000000000000..7575924120cf --- /dev/null +++ b/data/software/sy/sylvadb.json @@ -0,0 +1,8 @@ +{ + "slug": "sylvadb", + "name": "SylvaDB", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084607" + ] +} diff --git a/data/software/sy/syman.json b/data/software/sy/syman.json new file mode 100644 index 000000000000..20968c67c5b3 --- /dev/null +++ b/data/software/sy/syman.json @@ -0,0 +1,12 @@ +{ + "slug": "syman", + "name": "Syman", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17084246" + ], + "release_date": "2013-01-01", + "developers": [ + "Identified" + ] +} diff --git a/data/software/sy/symantec-online-backup.json b/data/software/sy/symantec-online-backup.json new file mode 100644 index 000000000000..dcb1ec27597e --- /dev/null +++ b/data/software/sy/symantec-online-backup.json @@ -0,0 +1,15 @@ +{ + "slug": "symantec-online-backup", + "name": "Symantec Online Backup", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7661102" + ], + "release_date": "2008-02-01", + "developers": [ + "Gen Digital" + ], + "operating_systems": [ + "Windows Server 2003" + ] +} diff --git a/data/software/sy/symantec-operations-readiness-tools.json b/data/software/sy/symantec-operations-readiness-tools.json new file mode 100644 index 000000000000..d6922c2eb1e2 --- /dev/null +++ b/data/software/sy/symantec-operations-readiness-tools.json @@ -0,0 +1,11 @@ +{ + "slug": "symantec-operations-readiness-tools", + "name": "Symantec Operations Readiness Tools", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7661103" + ], + "developers": [ + "Gen Digital" + ] +} diff --git a/data/software/sy/symap.json b/data/software/sy/symap.json new file mode 100644 index 000000000000..e0452e231529 --- /dev/null +++ b/data/software/sy/symap.json @@ -0,0 +1,11 @@ +{ + "slug": "symap", + "name": "SYMAP", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116923583" + ], + "developers": [ + "Harvard Laboratory for Computer Graphics and Spatial Analysis" + ] +} diff --git a/data/software/sy/symenu.json b/data/software/sy/symenu.json new file mode 100644 index 000000000000..535bf076bd5d --- /dev/null +++ b/data/software/sy/symenu.json @@ -0,0 +1,8 @@ +{ + "slug": "symenu", + "name": "SyMenu", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7659410" + ] +} diff --git a/data/software/sy/symon-bootmanager.json b/data/software/sy/symon-bootmanager.json new file mode 100644 index 000000000000..c54c4eb92755 --- /dev/null +++ b/data/software/sy/symon-bootmanager.json @@ -0,0 +1,11 @@ +{ + "slug": "symon-bootmanager", + "name": "SyMon Bootmanager", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2373459" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/sy/symphonic-choirs.json b/data/software/sy/symphonic-choirs.json new file mode 100644 index 000000000000..bc50133c5762 --- /dev/null +++ b/data/software/sy/symphonic-choirs.json @@ -0,0 +1,8 @@ +{ + "slug": "symphonic-choirs", + "name": "Symphonic Choirs", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22909221" + ] +} diff --git a/data/software/sy/symphony-communication.json b/data/software/sy/symphony-communication.json new file mode 100644 index 000000000000..2def2f4f7e51 --- /dev/null +++ b/data/software/sy/symphony-communication.json @@ -0,0 +1,11 @@ +{ + "slug": "symphony-communication", + "name": "Symphony Communication", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22909223" + ], + "licenses": [ + "Apache License" + ] +} diff --git a/data/software/sy/synapsen.json b/data/software/sy/synapsen.json new file mode 100644 index 000000000000..cceaceb59bf8 --- /dev/null +++ b/data/software/sy/synapsen.json @@ -0,0 +1,18 @@ +{ + "slug": "synapsen", + "name": "Synapsen", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105748776" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [ + "Java" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/sy/sync-fetch.json b/data/software/sy/sync-fetch.json new file mode 100644 index 000000000000..e838fba30f66 --- /dev/null +++ b/data/software/sy/sync-fetch.json @@ -0,0 +1,15 @@ +{ + "slug": "sync-fetch", + "name": "sync-fetch", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112255954" + ], + "release_date": "2022-05-26", + "developers": [ + "Lars Willighagen" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/sy/sync-in.json b/data/software/sy/sync-in.json new file mode 100644 index 000000000000..63ae917ca8a6 --- /dev/null +++ b/data/software/sy/sync-in.json @@ -0,0 +1,11 @@ +{ + "slug": "sync-in", + "name": "Sync.in", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7662082" + ], + "developers": [ + "Cynapse" + ] +} diff --git a/data/software/sy/syncback.json b/data/software/sy/syncback.json new file mode 100644 index 000000000000..e67d4e8639ad --- /dev/null +++ b/data/software/sy/syncback.json @@ -0,0 +1,9 @@ +{ + "slug": "syncback", + "name": "SyncBack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7662068" + ], + "release_date": "2003-01-01" +} diff --git a/data/software/sy/syncdocs.json b/data/software/sy/syncdocs.json new file mode 100644 index 000000000000..a837cd7c7aba --- /dev/null +++ b/data/software/sy/syncdocs.json @@ -0,0 +1,14 @@ +{ + "slug": "syncdocs", + "name": "Syncdocs", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7662089" + ], + "developers": [ + "Syncdocs" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/sy/synchronize-it.json b/data/software/sy/synchronize-it.json new file mode 100644 index 000000000000..d9c61a133b3e --- /dev/null +++ b/data/software/sy/synchronize-it.json @@ -0,0 +1,11 @@ +{ + "slug": "synchronize-it", + "name": "Synchronize It", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7662147" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/sy/synchronizer.json b/data/software/sy/synchronizer.json new file mode 100644 index 000000000000..df41a35872f6 --- /dev/null +++ b/data/software/sy/synchronizer.json @@ -0,0 +1,8 @@ +{ + "slug": "synchronizer", + "name": "Synchronizer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116446291" + ] +} diff --git a/data/software/sy/syncios.json b/data/software/sy/syncios.json new file mode 100644 index 000000000000..a0a86a37e128 --- /dev/null +++ b/data/software/sy/syncios.json @@ -0,0 +1,11 @@ +{ + "slug": "syncios", + "name": "Syncios", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q24765395" + ], + "developers": [ + "Anvsoft Inc." + ] +} diff --git a/data/software/sy/syncplicity.json b/data/software/sy/syncplicity.json new file mode 100644 index 000000000000..d9a1c20cbdcd --- /dev/null +++ b/data/software/sy/syncplicity.json @@ -0,0 +1,8 @@ +{ + "slug": "syncplicity", + "name": "Syncplicity", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4050505" + ] +} diff --git a/data/software/sy/synctoy.json b/data/software/sy/synctoy.json new file mode 100644 index 000000000000..505463e5c84b --- /dev/null +++ b/data/software/sy/synctoy.json @@ -0,0 +1,14 @@ +{ + "slug": "synctoy", + "name": "SyncToy", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1140711" + ], + "developers": [ + "Microsoft" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/sy/synereo.json b/data/software/sy/synereo.json new file mode 100644 index 000000000000..d1f2bb5dbcc0 --- /dev/null +++ b/data/software/sy/synereo.json @@ -0,0 +1,8 @@ +{ + "slug": "synereo", + "name": "Synereo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28127193" + ] +} diff --git a/data/software/sy/synfiniway.json b/data/software/sy/synfiniway.json new file mode 100644 index 000000000000..56951d93deb4 --- /dev/null +++ b/data/software/sy/synfiniway.json @@ -0,0 +1,14 @@ +{ + "slug": "synfiniway", + "name": "SynfiniWay", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7662432" + ], + "developers": [ + "Fujitsu" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/sy/synteny-mapping-and-analysis-program.json b/data/software/sy/synteny-mapping-and-analysis-program.json new file mode 100644 index 000000000000..b1e056e0a26e --- /dev/null +++ b/data/software/sy/synteny-mapping-and-analysis-program.json @@ -0,0 +1,8 @@ +{ + "slug": "synteny-mapping-and-analysis-program", + "name": "Synteny Mapping and Analysis Program", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116923581" + ] +} diff --git a/data/software/sy/synth1.json b/data/software/sy/synth1.json new file mode 100644 index 000000000000..c0af84343731 --- /dev/null +++ b/data/software/sy/synth1.json @@ -0,0 +1,8 @@ +{ + "slug": "synth1", + "name": "Synth1", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3508914" + ] +} diff --git a/data/software/sy/synthesizer-v-editor.json b/data/software/sy/synthesizer-v-editor.json new file mode 100644 index 000000000000..623ce2c36c8e --- /dev/null +++ b/data/software/sy/synthesizer-v-editor.json @@ -0,0 +1,8 @@ +{ + "slug": "synthesizer-v-editor", + "name": "Synthesizer V Editor", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q133461711" + ] +} diff --git a/data/software/sy/synthesizer-v.json b/data/software/sy/synthesizer-v.json new file mode 100644 index 000000000000..d738d245e55d --- /dev/null +++ b/data/software/sy/synthesizer-v.json @@ -0,0 +1,12 @@ +{ + "slug": "synthesizer-v", + "name": "Synthesizer V", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q102109202" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/software/sy/synthesys-ai-studio.json b/data/software/sy/synthesys-ai-studio.json new file mode 100644 index 000000000000..c7ec529a61ea --- /dev/null +++ b/data/software/sy/synthesys-ai-studio.json @@ -0,0 +1,8 @@ +{ + "slug": "synthesys-ai-studio", + "name": "Synthesys AI Studio", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118595416" + ] +} diff --git a/data/software/sy/synthetic-organism-designer.json b/data/software/sy/synthetic-organism-designer.json new file mode 100644 index 000000000000..cce4d3080e80 --- /dev/null +++ b/data/software/sy/synthetic-organism-designer.json @@ -0,0 +1,8 @@ +{ + "slug": "synthetic-organism-designer", + "name": "Synthetic Organism Designer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7662731" + ] +} diff --git a/data/software/sy/synthmaster.json b/data/software/sy/synthmaster.json new file mode 100644 index 000000000000..8fa58ed564c5 --- /dev/null +++ b/data/software/sy/synthmaster.json @@ -0,0 +1,8 @@ +{ + "slug": "synthmaster", + "name": "SynthMaster", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7662688" + ] +} diff --git a/data/software/sy/syntropy.json b/data/software/sy/syntropy.json new file mode 100644 index 000000000000..b06a5ba2ca33 --- /dev/null +++ b/data/software/sy/syntropy.json @@ -0,0 +1,9 @@ +{ + "slug": "syntropy", + "name": "Syntropy", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7662832" + ], + "release_date": "1994-01-01" +} diff --git a/data/software/sy/sys-com.json b/data/software/sy/sys-com.json new file mode 100644 index 000000000000..7609bfbe4c2f --- /dev/null +++ b/data/software/sy/sys-com.json @@ -0,0 +1,8 @@ +{ + "slug": "sys-com", + "name": "Sys.com", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7663541" + ] +} diff --git a/data/software/sy/sysax-ftp-automation.json b/data/software/sy/sysax-ftp-automation.json new file mode 100644 index 000000000000..0d41cc7025f2 --- /dev/null +++ b/data/software/sy/sysax-ftp-automation.json @@ -0,0 +1,8 @@ +{ + "slug": "sysax-ftp-automation", + "name": "Sysax FTP Automation", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7663547" + ] +} diff --git a/data/software/sy/sysax-multi-server.json b/data/software/sy/sysax-multi-server.json new file mode 100644 index 000000000000..4ee97797ef48 --- /dev/null +++ b/data/software/sy/sysax-multi-server.json @@ -0,0 +1,8 @@ +{ + "slug": "sysax-multi-server", + "name": "Sysax Multi Server", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17132161" + ] +} diff --git a/data/software/sy/sysbench.json b/data/software/sy/sysbench.json new file mode 100644 index 000000000000..fc2af21d4935 --- /dev/null +++ b/data/software/sy/sysbench.json @@ -0,0 +1,8 @@ +{ + "slug": "sysbench", + "name": "sysbench", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975511" + ] +} diff --git a/data/software/sy/syscp.json b/data/software/sy/syscp.json new file mode 100644 index 000000000000..eddb7c29717f --- /dev/null +++ b/data/software/sy/syscp.json @@ -0,0 +1,8 @@ +{ + "slug": "syscp", + "name": "SysCP", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2376683" + ] +} diff --git a/data/software/sy/syshedit.json b/data/software/sy/syshedit.json new file mode 100644 index 000000000000..6b6f492b0868 --- /dev/null +++ b/data/software/sy/syshedit.json @@ -0,0 +1,11 @@ +{ + "slug": "syshedit", + "name": "SYSHEDIT", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q12775728" + ], + "developers": [ + "Eva Krištofičová" + ] +} diff --git a/data/software/sy/sysinfo.json b/data/software/sy/sysinfo.json new file mode 100644 index 000000000000..df5dcedd85ce --- /dev/null +++ b/data/software/sy/sysinfo.json @@ -0,0 +1,11 @@ +{ + "slug": "sysinfo", + "name": "Sysinfo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17048840" + ], + "programming_languages": [ + "assembly language" + ] +} diff --git a/data/software/sy/sysmaster.json b/data/software/sy/sysmaster.json new file mode 100644 index 000000000000..17c592849ba6 --- /dev/null +++ b/data/software/sy/sysmaster.json @@ -0,0 +1,8 @@ +{ + "slug": "sysmaster", + "name": "SysMaster", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16981662" + ] +} diff --git a/data/software/sy/sysquake.json b/data/software/sy/sysquake.json new file mode 100644 index 000000000000..7cdba843d209 --- /dev/null +++ b/data/software/sy/sysquake.json @@ -0,0 +1,8 @@ +{ + "slug": "sysquake", + "name": "Sysquake", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1092979" + ] +} diff --git a/data/software/sy/systancia.json b/data/software/sy/systancia.json new file mode 100644 index 000000000000..6f363652e3a5 --- /dev/null +++ b/data/software/sy/systancia.json @@ -0,0 +1,8 @@ +{ + "slug": "systancia", + "name": "Systancia", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3509059" + ] +} diff --git a/data/software/sy/system-2000.json b/data/software/sy/system-2000.json new file mode 100644 index 000000000000..01e0762dbf5f --- /dev/null +++ b/data/software/sy/system-2000.json @@ -0,0 +1,8 @@ +{ + "slug": "system-2000", + "name": "System 2000", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107451857" + ] +} diff --git a/data/software/sy/system-architect.json b/data/software/sy/system-architect.json new file mode 100644 index 000000000000..68577e38ddfe --- /dev/null +++ b/data/software/sy/system-architect.json @@ -0,0 +1,11 @@ +{ + "slug": "system-architect", + "name": "System Architect", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1548271" + ], + "developers": [ + "IBM" + ] +} diff --git a/data/software/sy/system-center-data-protection-manager.json b/data/software/sy/system-center-data-protection-manager.json new file mode 100644 index 000000000000..aeeb0fc54711 --- /dev/null +++ b/data/software/sy/system-center-data-protection-manager.json @@ -0,0 +1,11 @@ +{ + "slug": "system-center-data-protection-manager", + "name": "System Center Data Protection Manager", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2063660" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/sy/system-center-essentials.json b/data/software/sy/system-center-essentials.json new file mode 100644 index 000000000000..3697cd43239d --- /dev/null +++ b/data/software/sy/system-center-essentials.json @@ -0,0 +1,11 @@ +{ + "slug": "system-center-essentials", + "name": "System Center Essentials", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7663630" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/sy/system-center-operations-manager.json b/data/software/sy/system-center-operations-manager.json new file mode 100644 index 000000000000..ab1842e08b29 --- /dev/null +++ b/data/software/sy/system-center-operations-manager.json @@ -0,0 +1,11 @@ +{ + "slug": "system-center-operations-manager", + "name": "System Center Operations Manager", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q202861" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/sy/system-center-service-manager.json b/data/software/sy/system-center-service-manager.json new file mode 100644 index 000000000000..7ceb2341db97 --- /dev/null +++ b/data/software/sy/system-center-service-manager.json @@ -0,0 +1,12 @@ +{ + "slug": "system-center-service-manager", + "name": "System Center Service Manager", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7663631" + ], + "release_date": "2016-01-01", + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/sy/system-center-virtual-machine-manager.json b/data/software/sy/system-center-virtual-machine-manager.json new file mode 100644 index 000000000000..e2cc29bd8b43 --- /dev/null +++ b/data/software/sy/system-center-virtual-machine-manager.json @@ -0,0 +1,11 @@ +{ + "slug": "system-center-virtual-machine-manager", + "name": "System Center Virtual Machine Manager", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2748823" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/sy/system-commander.json b/data/software/sy/system-commander.json new file mode 100644 index 000000000000..c5c4c7ac18fc --- /dev/null +++ b/data/software/sy/system-commander.json @@ -0,0 +1,11 @@ +{ + "slug": "system-commander", + "name": "System Commander", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11307187" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/sy/system-image-utility.json b/data/software/sy/system-image-utility.json new file mode 100644 index 000000000000..ffbf95cd4585 --- /dev/null +++ b/data/software/sy/system-image-utility.json @@ -0,0 +1,14 @@ +{ + "slug": "system-image-utility", + "name": "System Image Utility", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7663657" + ], + "developers": [ + "Apple Inc." + ], + "operating_systems": [ + "macOS" + ] +} diff --git a/data/software/sy/system-information.json b/data/software/sy/system-information.json new file mode 100644 index 000000000000..d7afc5153d67 --- /dev/null +++ b/data/software/sy/system-information.json @@ -0,0 +1,11 @@ +{ + "slug": "system-information", + "name": "System Information", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3979211" + ], + "developers": [ + "Apple Inc." + ] +} diff --git a/data/software/sy/system-integrity-protection.json b/data/software/sy/system-integrity-protection.json new file mode 100644 index 000000000000..d185e9dead28 --- /dev/null +++ b/data/software/sy/system-integrity-protection.json @@ -0,0 +1,15 @@ +{ + "slug": "system-integrity-protection", + "name": "System Integrity Protection", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q20648354" + ], + "developers": [ + "Apple Inc." + ], + "operating_systems": [ + "OS X El Capitan", + "macOS" + ] +} diff --git a/data/software/sy/system-manager.json b/data/software/sy/system-manager.json new file mode 100644 index 000000000000..f28c4d5eda69 --- /dev/null +++ b/data/software/sy/system-manager.json @@ -0,0 +1,8 @@ +{ + "slug": "system-manager", + "name": "System Manager", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17081524" + ] +} diff --git a/data/software/sy/system-picker.json b/data/software/sy/system-picker.json new file mode 100644 index 000000000000..0b6eb02deb84 --- /dev/null +++ b/data/software/sy/system-picker.json @@ -0,0 +1,14 @@ +{ + "slug": "system-picker", + "name": "System Picker", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7663670" + ], + "operating_systems": [ + "macOS" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/sy/system-policy-editor.json b/data/software/sy/system-policy-editor.json new file mode 100644 index 000000000000..a39e14fc4eff --- /dev/null +++ b/data/software/sy/system-policy-editor.json @@ -0,0 +1,8 @@ +{ + "slug": "system-policy-editor", + "name": "System Policy Editor", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7663672" + ] +} diff --git a/data/software/sy/system-restore.json b/data/software/sy/system-restore.json new file mode 100644 index 000000000000..efe26647def2 --- /dev/null +++ b/data/software/sy/system-restore.json @@ -0,0 +1,8 @@ +{ + "slug": "system-restore", + "name": "System Restore", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1066221" + ] +} diff --git a/data/software/sy/systemc.json b/data/software/sy/systemc.json new file mode 100644 index 000000000000..60164dae6de9 --- /dev/null +++ b/data/software/sy/systemc.json @@ -0,0 +1,11 @@ +{ + "slug": "systemc", + "name": "SystemC", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1753563" + ], + "licenses": [ + "Apache Software License 2.0" + ] +} diff --git a/data/software/sy/systemd-m4.json b/data/software/sy/systemd-m4.json new file mode 100644 index 000000000000..e3d8de98485a --- /dev/null +++ b/data/software/sy/systemd-m4.json @@ -0,0 +1,8 @@ +{ + "slug": "systemd-m4", + "name": "systemd-m4", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975512" + ] +} diff --git a/data/software/sy/systems-tool-kit.json b/data/software/sy/systems-tool-kit.json new file mode 100644 index 000000000000..1e8c38663ceb --- /dev/null +++ b/data/software/sy/systems-tool-kit.json @@ -0,0 +1,11 @@ +{ + "slug": "systems-tool-kit", + "name": "Systems Tool Kit", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11173364" + ], + "developers": [ + "Analytical Graphics" + ] +} diff --git a/data/software/sy/systrace.json b/data/software/sy/systrace.json new file mode 100644 index 000000000000..b34505e6ab71 --- /dev/null +++ b/data/software/sy/systrace.json @@ -0,0 +1,14 @@ +{ + "slug": "systrace", + "name": "Systrace", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7663906" + ], + "developers": [ + "Niels Provos" + ], + "operating_systems": [ + "Unix-like operating system" + ] +} diff --git a/data/software/t-/t-a-p-text-analysis-program.json b/data/software/t-/t-a-p-text-analysis-program.json new file mode 100644 index 000000000000..928654888db3 --- /dev/null +++ b/data/software/t-/t-a-p-text-analysis-program.json @@ -0,0 +1,8 @@ +{ + "slug": "t-a-p-text-analysis-program", + "name": "T.A.P (Text Analysis Program)", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084615" + ] +} diff --git a/data/software/t-/t-app-folio.json b/data/software/t-/t-app-folio.json new file mode 100644 index 000000000000..f75f7304772a --- /dev/null +++ b/data/software/t-/t-app-folio.json @@ -0,0 +1,8 @@ +{ + "slug": "t-app-folio", + "name": "T App Folio", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q55634573" + ] +} diff --git a/data/software/t-/t-lab.json b/data/software/t-/t-lab.json new file mode 100644 index 000000000000..c2f3f2f38583 --- /dev/null +++ b/data/software/t-/t-lab.json @@ -0,0 +1,14 @@ +{ + "slug": "t-lab", + "name": "T-Lab", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106323239" + ], + "operating_systems": [ + "Microsoft Windows" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/t-/t-mail.json b/data/software/t-/t-mail.json new file mode 100644 index 000000000000..dcf420281fa9 --- /dev/null +++ b/data/software/t-/t-mail.json @@ -0,0 +1,11 @@ +{ + "slug": "t-mail", + "name": "T-Mail", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4050542" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/t-/t-maker.json b/data/software/t-/t-maker.json new file mode 100644 index 000000000000..9d711da7b8bf --- /dev/null +++ b/data/software/t-/t-maker.json @@ -0,0 +1,15 @@ +{ + "slug": "t-maker", + "name": "T/Maker", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7668979" + ], + "developers": [ + "Peter Roizen" + ], + "operating_systems": [ + "CP/M", + "TRSDOS" + ] +} diff --git a/data/software/t-/t-pen.json b/data/software/t-/t-pen.json new file mode 100644 index 000000000000..c3956a96e207 --- /dev/null +++ b/data/software/t-/t-pen.json @@ -0,0 +1,8 @@ +{ + "slug": "t-pen", + "name": "T-PEN", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084675" + ] +} diff --git a/data/software/t-/t-rex.json b/data/software/t-/t-rex.json new file mode 100644 index 000000000000..6fa61f1227b6 --- /dev/null +++ b/data/software/t-/t-rex.json @@ -0,0 +1,8 @@ +{ + "slug": "t-rex", + "name": "T-REX", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7667841" + ] +} diff --git a/data/software/t-/t-square.json b/data/software/t-/t-square.json new file mode 100644 index 000000000000..2c392478c989 --- /dev/null +++ b/data/software/t-/t-square.json @@ -0,0 +1,12 @@ +{ + "slug": "t-square", + "name": "T-Square", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7667859" + ], + "release_date": "1962-01-01", + "developers": [ + "Peter Samson" + ] +} diff --git a/data/software/ta/tabbles.json b/data/software/ta/tabbles.json new file mode 100644 index 000000000000..70f1930913fa --- /dev/null +++ b/data/software/ta/tabbles.json @@ -0,0 +1,12 @@ +{ + "slug": "tabbles", + "name": "Tabbles", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28446372" + ], + "release_date": "2009-01-01", + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/ta/tabello.json b/data/software/ta/tabello.json new file mode 100644 index 000000000000..9cf00c71b032 --- /dev/null +++ b/data/software/ta/tabello.json @@ -0,0 +1,8 @@ +{ + "slug": "tabello", + "name": "Tabello", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25455344" + ] +} diff --git a/data/software/ta/table-2-net.json b/data/software/ta/table-2-net.json new file mode 100644 index 000000000000..dcf889d6573e --- /dev/null +++ b/data/software/ta/table-2-net.json @@ -0,0 +1,8 @@ +{ + "slug": "table-2-net", + "name": "Table 2 Net", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087732" + ] +} diff --git a/data/software/ta/table-producing-language.json b/data/software/ta/table-producing-language.json new file mode 100644 index 000000000000..cec8543c7dae --- /dev/null +++ b/data/software/ta/table-producing-language.json @@ -0,0 +1,8 @@ +{ + "slug": "table-producing-language", + "name": "Table Producing Language", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7673158" + ] +} diff --git a/data/software/ta/tablecurve-2d.json b/data/software/ta/tablecurve-2d.json new file mode 100644 index 000000000000..c52ac9e17a05 --- /dev/null +++ b/data/software/ta/tablecurve-2d.json @@ -0,0 +1,9 @@ +{ + "slug": "tablecurve-2d", + "name": "TableCurve 2D", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7673117" + ], + "release_date": "1989-01-01" +} diff --git a/data/software/ta/tablecurve-3d.json b/data/software/ta/tablecurve-3d.json new file mode 100644 index 000000000000..675bf1be9fbd --- /dev/null +++ b/data/software/ta/tablecurve-3d.json @@ -0,0 +1,8 @@ +{ + "slug": "tablecurve-3d", + "name": "TableCurve 3D", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7673118" + ] +} diff --git a/data/software/ta/tablee.json b/data/software/ta/tablee.json new file mode 100644 index 000000000000..4c8a54e28363 --- /dev/null +++ b/data/software/ta/tablee.json @@ -0,0 +1,11 @@ +{ + "slug": "tablee", + "name": "Tablee", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139487763" + ], + "developers": [ + "Poofone Technology" + ] +} diff --git a/data/software/ta/tableport.json b/data/software/ta/tableport.json new file mode 100644 index 000000000000..23bd17c8b884 --- /dev/null +++ b/data/software/ta/tableport.json @@ -0,0 +1,8 @@ +{ + "slug": "tableport", + "name": "TablePort", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140007940" + ] +} diff --git a/data/software/ta/tabpfn.json b/data/software/ta/tabpfn.json new file mode 100644 index 000000000000..857cfe7d4d73 --- /dev/null +++ b/data/software/ta/tabpfn.json @@ -0,0 +1,8 @@ +{ + "slug": "tabpfn", + "name": "TabPFN", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136288530" + ] +} diff --git a/data/software/ta/tabworks.json b/data/software/ta/tabworks.json new file mode 100644 index 000000000000..facc3a1d37ea --- /dev/null +++ b/data/software/ta/tabworks.json @@ -0,0 +1,11 @@ +{ + "slug": "tabworks", + "name": "TabWorks", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7672835" + ], + "developers": [ + "Xerox" + ] +} diff --git a/data/software/ta/tachiyomi.json b/data/software/ta/tachiyomi.json new file mode 100644 index 000000000000..a26758fa596e --- /dev/null +++ b/data/software/ta/tachiyomi.json @@ -0,0 +1,11 @@ +{ + "slug": "tachiyomi", + "name": "Tachiyomi", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116282967" + ], + "licenses": [ + "Apache Software License 2.0" + ] +} diff --git a/data/software/ta/tachyon.json b/data/software/ta/tachyon.json new file mode 100644 index 000000000000..b0e2816f3fbe --- /dev/null +++ b/data/software/ta/tachyon.json @@ -0,0 +1,8 @@ +{ + "slug": "tachyon", + "name": "Tachyon", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7673866" + ] +} diff --git a/data/software/ta/tact-text-analysis-computing-tools.json b/data/software/ta/tact-text-analysis-computing-tools.json new file mode 100644 index 000000000000..6ae49af3b28e --- /dev/null +++ b/data/software/ta/tact-text-analysis-computing-tools.json @@ -0,0 +1,8 @@ +{ + "slug": "tact-text-analysis-computing-tools", + "name": "TACT (Text Analysis Computing Tools)", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084608" + ] +} diff --git a/data/software/ta/tactical-nav.json b/data/software/ta/tactical-nav.json new file mode 100644 index 000000000000..f3dede51d3d8 --- /dev/null +++ b/data/software/ta/tactical-nav.json @@ -0,0 +1,8 @@ +{ + "slug": "tactical-nav", + "name": "Tactical NAV", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109236535" + ] +} diff --git a/data/software/ta/tactweb-1-0.json b/data/software/ta/tactweb-1-0.json new file mode 100644 index 000000000000..1fe628e4ca8a --- /dev/null +++ b/data/software/ta/tactweb-1-0.json @@ -0,0 +1,8 @@ +{ + "slug": "tactweb-1-0", + "name": "TACTweb 1.0", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084609" + ] +} diff --git a/data/software/ta/tacx-training-desktop-app.json b/data/software/ta/tacx-training-desktop-app.json new file mode 100644 index 000000000000..10e903bec06f --- /dev/null +++ b/data/software/ta/tacx-training-desktop-app.json @@ -0,0 +1,8 @@ +{ + "slug": "tacx-training-desktop-app", + "name": "Tacx Training Desktop App", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106764295" + ] +} diff --git a/data/software/ta/tagaini-jisho.json b/data/software/ta/tagaini-jisho.json new file mode 100644 index 000000000000..2ed0005f45d9 --- /dev/null +++ b/data/software/ta/tagaini-jisho.json @@ -0,0 +1,11 @@ +{ + "slug": "tagaini-jisho", + "name": "Tagaini Jisho", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28465630" + ], + "licenses": [ + "GNU General Public License, version 3.0" + ] +} diff --git a/data/software/ta/tagclouder.json b/data/software/ta/tagclouder.json new file mode 100644 index 000000000000..8ae12f1e184b --- /dev/null +++ b/data/software/ta/tagclouder.json @@ -0,0 +1,8 @@ +{ + "slug": "tagclouder", + "name": "TagClouder", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084610" + ] +} diff --git a/data/software/ta/tagcrowd.json b/data/software/ta/tagcrowd.json new file mode 100644 index 000000000000..e9b748101ed7 --- /dev/null +++ b/data/software/ta/tagcrowd.json @@ -0,0 +1,8 @@ +{ + "slug": "tagcrowd", + "name": "TagCrowd", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084612" + ] +} diff --git a/data/software/ta/taglab.json b/data/software/ta/taglab.json new file mode 100644 index 000000000000..e87994d893ac --- /dev/null +++ b/data/software/ta/taglab.json @@ -0,0 +1,8 @@ +{ + "slug": "taglab", + "name": "TagLab", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120643516" + ] +} diff --git a/data/software/ta/tagnetiq.json b/data/software/ta/tagnetiq.json new file mode 100644 index 000000000000..a075a8df798e --- /dev/null +++ b/data/software/ta/tagnetiq.json @@ -0,0 +1,8 @@ +{ + "slug": "tagnetiq", + "name": "TagnetIQ", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139827321" + ] +} diff --git a/data/software/ta/taguette.json b/data/software/ta/taguette.json new file mode 100644 index 000000000000..273187bdfdc8 --- /dev/null +++ b/data/software/ta/taguette.json @@ -0,0 +1,21 @@ +{ + "slug": "taguette", + "name": "Taguette", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q58041970" + ], + "developers": [ + "Rémi Rampin" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [ + "Python" + ], + "licenses": [ + "3-clause BSD License" + ] +} diff --git a/data/software/ta/take-command-console.json b/data/software/ta/take-command-console.json new file mode 100644 index 000000000000..1749eeeb0738 --- /dev/null +++ b/data/software/ta/take-command-console.json @@ -0,0 +1,8 @@ +{ + "slug": "take-command-console", + "name": "Take Command Console", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q238160" + ] +} diff --git a/data/software/ta/take-command.json b/data/software/ta/take-command.json new file mode 100644 index 000000000000..b4f98ed285e3 --- /dev/null +++ b/data/software/ta/take-command.json @@ -0,0 +1,8 @@ +{ + "slug": "take-command", + "name": "Take Command", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7677590" + ] +} diff --git a/data/software/ta/talehunt.json b/data/software/ta/talehunt.json new file mode 100644 index 000000000000..117553210178 --- /dev/null +++ b/data/software/ta/talehunt.json @@ -0,0 +1,14 @@ +{ + "slug": "talehunt", + "name": "Talehunt", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q23680006" + ], + "operating_systems": [ + "iOS" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/ta/talend-open-studio-for-data-integration.json b/data/software/ta/talend-open-studio-for-data-integration.json new file mode 100644 index 000000000000..c75ea14ff05c --- /dev/null +++ b/data/software/ta/talend-open-studio-for-data-integration.json @@ -0,0 +1,14 @@ +{ + "slug": "talend-open-studio-for-data-integration", + "name": "Talend Open Studio for Data Integration", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17097860" + ], + "developers": [ + "Talend" + ], + "programming_languages": [ + "Java" + ] +} diff --git a/data/software/ta/talent-one-atlas.json b/data/software/ta/talent-one-atlas.json new file mode 100644 index 000000000000..179adf001805 --- /dev/null +++ b/data/software/ta/talent-one-atlas.json @@ -0,0 +1,11 @@ +{ + "slug": "talent-one-atlas", + "name": "Talent One Atlas", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139970653" + ], + "developers": [ + "Talent One Capital Partners" + ] +} diff --git a/data/software/ta/tales-of-monkey-island-chapter-2-the-siege-of-spinner-cay.json b/data/software/ta/tales-of-monkey-island-chapter-2-the-siege-of-spinner-cay.json new file mode 100644 index 000000000000..02d9e6552450 --- /dev/null +++ b/data/software/ta/tales-of-monkey-island-chapter-2-the-siege-of-spinner-cay.json @@ -0,0 +1,19 @@ +{ + "slug": "tales-of-monkey-island-chapter-2-the-siege-of-spinner-cay", + "name": "Tales of Monkey Island: Chapter 2 - The Siege of Spinner Cay", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q89281071" + ], + "release_date": "2009-08-20", + "developers": [ + "LCG Entertainment, Inc." + ], + "publishers": [ + "LCG Entertainment, Inc." + ], + "genres": [ + "adventure video game", + "role-playing video game" + ] +} diff --git a/data/software/ta/tales-of-monkey-island-the-trial-and-execution-of-guybrush-threepwood.json b/data/software/ta/tales-of-monkey-island-the-trial-and-execution-of-guybrush-threepwood.json new file mode 100644 index 000000000000..6e91b11809d7 --- /dev/null +++ b/data/software/ta/tales-of-monkey-island-the-trial-and-execution-of-guybrush-threepwood.json @@ -0,0 +1,19 @@ +{ + "slug": "tales-of-monkey-island-the-trial-and-execution-of-guybrush-threepwood", + "name": "Tales of Monkey Island: The Trial and Execution of Guybrush Threepwood", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q89281073" + ], + "release_date": "2009-10-07", + "developers": [ + "LCG Entertainment, Inc." + ], + "publishers": [ + "LCG Entertainment, Inc." + ], + "genres": [ + "adventure video game", + "role-playing video game" + ] +} diff --git a/data/software/ta/talk-it.json b/data/software/ta/talk-it.json new file mode 100644 index 000000000000..7302892aedb4 --- /dev/null +++ b/data/software/ta/talk-it.json @@ -0,0 +1,14 @@ +{ + "slug": "talk-it", + "name": "Talk It!", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7679652" + ], + "developers": [ + "Microsoft" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/ta/talkbits.json b/data/software/ta/talkbits.json new file mode 100644 index 000000000000..db5a25ca3a66 --- /dev/null +++ b/data/software/ta/talkbits.json @@ -0,0 +1,8 @@ +{ + "slug": "talkbits", + "name": "Talkbits", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7679727" + ] +} diff --git a/data/software/ta/talkbox-voice-messenger.json b/data/software/ta/talkbox-voice-messenger.json new file mode 100644 index 000000000000..0a03292b79b2 --- /dev/null +++ b/data/software/ta/talkbox-voice-messenger.json @@ -0,0 +1,11 @@ +{ + "slug": "talkbox-voice-messenger", + "name": "TalkBox Voice Messenger", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7679607" + ], + "operating_systems": [ + "iOS" + ] +} diff --git a/data/software/ta/talking-moose.json b/data/software/ta/talking-moose.json new file mode 100644 index 000000000000..db9b568abb02 --- /dev/null +++ b/data/software/ta/talking-moose.json @@ -0,0 +1,11 @@ +{ + "slug": "talking-moose", + "name": "Talking Moose", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7679829" + ], + "developers": [ + "Apple Inc." + ] +} diff --git a/data/software/ta/talkomatic.json b/data/software/ta/talkomatic.json new file mode 100644 index 000000000000..ff5865542f0c --- /dev/null +++ b/data/software/ta/talkomatic.json @@ -0,0 +1,11 @@ +{ + "slug": "talkomatic", + "name": "Talkomatic", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18387779" + ], + "developers": [ + "David R. Woolley" + ] +} diff --git a/data/software/ta/talktalk-tv-store.json b/data/software/ta/talktalk-tv-store.json new file mode 100644 index 000000000000..5cd64e310261 --- /dev/null +++ b/data/software/ta/talktalk-tv-store.json @@ -0,0 +1,11 @@ +{ + "slug": "talktalk-tv-store", + "name": "TalkTalk TV Store", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4926763" + ], + "developers": [ + "TalkTalk Group" + ] +} diff --git a/data/software/ta/tally-erp-9.json b/data/software/ta/tally-erp-9.json new file mode 100644 index 000000000000..fb983bd0f324 --- /dev/null +++ b/data/software/ta/tally-erp-9.json @@ -0,0 +1,8 @@ +{ + "slug": "tally-erp-9", + "name": "Tally.ERP 9", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q65085911" + ] +} diff --git a/data/software/ta/tally-up.json b/data/software/ta/tally-up.json new file mode 100644 index 000000000000..c4c09c1f41c6 --- /dev/null +++ b/data/software/ta/tally-up.json @@ -0,0 +1,8 @@ +{ + "slug": "tally-up", + "name": "Tally Up", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138985698" + ] +} diff --git a/data/software/ta/tallyprime.json b/data/software/ta/tallyprime.json new file mode 100644 index 000000000000..b7c2975b5068 --- /dev/null +++ b/data/software/ta/tallyprime.json @@ -0,0 +1,8 @@ +{ + "slug": "tallyprime", + "name": "TallyPrime", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105063153" + ] +} diff --git a/data/software/ta/tamarin-prover.json b/data/software/ta/tamarin-prover.json new file mode 100644 index 000000000000..9c383773d68e --- /dev/null +++ b/data/software/ta/tamarin-prover.json @@ -0,0 +1,8 @@ +{ + "slug": "tamarin-prover", + "name": "Tamarin Prover", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q42888015" + ] +} diff --git a/data/software/ta/tame-it.json b/data/software/ta/tame-it.json new file mode 100644 index 000000000000..e33c2da76dce --- /dev/null +++ b/data/software/ta/tame-it.json @@ -0,0 +1,9 @@ +{ + "slug": "tame-it", + "name": "Tame.it", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q14657721" + ], + "release_date": "2012-01-01" +} diff --git a/data/software/ta/tamea.json b/data/software/ta/tamea.json new file mode 100644 index 000000000000..aab8c5c94ab8 --- /dev/null +++ b/data/software/ta/tamea.json @@ -0,0 +1,11 @@ +{ + "slug": "tamea", + "name": "Tamea", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139282824" + ], + "developers": [ + "Nena Celeste UG" + ] +} diff --git a/data/software/ta/tamograph-site-survey.json b/data/software/ta/tamograph-site-survey.json new file mode 100644 index 000000000000..95d7dcc37cff --- /dev/null +++ b/data/software/ta/tamograph-site-survey.json @@ -0,0 +1,8 @@ +{ + "slug": "tamograph-site-survey", + "name": "TamoGraph Site Survey", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7681627" + ] +} diff --git a/data/software/ta/tamsys.json b/data/software/ta/tamsys.json new file mode 100644 index 000000000000..94092fe1eed7 --- /dev/null +++ b/data/software/ta/tamsys.json @@ -0,0 +1,14 @@ +{ + "slug": "tamsys", + "name": "TamSys", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105229772" + ], + "operating_systems": [ + "macOS" + ], + "licenses": [ + "GNU General Public License, version 2.0" + ] +} diff --git a/data/software/ta/tamtam.json b/data/software/ta/tamtam.json new file mode 100644 index 000000000000..e7f12618767a --- /dev/null +++ b/data/software/ta/tamtam.json @@ -0,0 +1,8 @@ +{ + "slug": "tamtam", + "name": "TamTam", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137703863" + ] +} diff --git a/data/software/ta/tanagra.json b/data/software/ta/tanagra.json new file mode 100644 index 000000000000..a7284cd49b2f --- /dev/null +++ b/data/software/ta/tanagra.json @@ -0,0 +1,20 @@ +{ + "slug": "tanagra", + "name": "Tanagra", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3514922" + ], + "developers": [ + "Lumière University Lyon 2" + ], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [ + "Delphi" + ], + "licenses": [ + "open source" + ] +} diff --git a/data/software/ta/tanaguru.json b/data/software/ta/tanaguru.json new file mode 100644 index 000000000000..669dcd06afb5 --- /dev/null +++ b/data/software/ta/tanaguru.json @@ -0,0 +1,8 @@ +{ + "slug": "tanaguru", + "name": "Tanaguru", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q94086638" + ] +} diff --git a/data/software/ta/tandberg-movi.json b/data/software/ta/tandberg-movi.json new file mode 100644 index 000000000000..fc3793f377f4 --- /dev/null +++ b/data/software/ta/tandberg-movi.json @@ -0,0 +1,11 @@ +{ + "slug": "tandberg-movi", + "name": "Tandberg Movi", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7682415" + ], + "developers": [ + "Tandberg" + ] +} diff --git a/data/software/ta/tangle.json b/data/software/ta/tangle.json new file mode 100644 index 000000000000..ced7e9148102 --- /dev/null +++ b/data/software/ta/tangle.json @@ -0,0 +1,8 @@ +{ + "slug": "tangle", + "name": "Tangle", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084614" + ] +} diff --git a/data/software/ta/tango-desktop-project.json b/data/software/ta/tango-desktop-project.json new file mode 100644 index 000000000000..8ac7d5cc9dd9 --- /dev/null +++ b/data/software/ta/tango-desktop-project.json @@ -0,0 +1,9 @@ +{ + "slug": "tango-desktop-project", + "name": "Tango Desktop Project", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1463840" + ], + "release_date": "2006-01-01" +} diff --git a/data/software/ta/tango-live.json b/data/software/ta/tango-live.json new file mode 100644 index 000000000000..04ce6198046a --- /dev/null +++ b/data/software/ta/tango-live.json @@ -0,0 +1,8 @@ +{ + "slug": "tango-live", + "name": "Tango Live", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108770763" + ] +} diff --git a/data/software/ta/tango.json b/data/software/ta/tango.json new file mode 100644 index 000000000000..b5d96f6fd622 --- /dev/null +++ b/data/software/ta/tango.json @@ -0,0 +1,12 @@ +{ + "slug": "tango", + "name": "Tango", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q15952517" + ], + "release_date": "2014-06-05", + "developers": [ + "Google" + ] +} diff --git a/data/software/ta/tao-framework.json b/data/software/ta/tao-framework.json new file mode 100644 index 000000000000..b371f8645140 --- /dev/null +++ b/data/software/ta/tao-framework.json @@ -0,0 +1,11 @@ +{ + "slug": "tao-framework", + "name": "Tao Framework", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4050702" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/ta/tapaal-model-checker.json b/data/software/ta/tapaal-model-checker.json new file mode 100644 index 000000000000..c72fbd073097 --- /dev/null +++ b/data/software/ta/tapaal-model-checker.json @@ -0,0 +1,11 @@ +{ + "slug": "tapaal-model-checker", + "name": "TAPAAL Model Checker", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7669325" + ], + "developers": [ + "Aalborg University" + ] +} diff --git a/data/software/ta/tapatalk.json b/data/software/ta/tapatalk.json new file mode 100644 index 000000000000..9b7e947cbe0a --- /dev/null +++ b/data/software/ta/tapatalk.json @@ -0,0 +1,8 @@ +{ + "slug": "tapatalk", + "name": "Tapatalk", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7684473" + ] +} diff --git a/data/software/ta/tapestrea.json b/data/software/ta/tapestrea.json new file mode 100644 index 000000000000..4e34ca5dacd0 --- /dev/null +++ b/data/software/ta/tapestrea.json @@ -0,0 +1,8 @@ +{ + "slug": "tapestrea", + "name": "tapestrea", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60917976" + ] +} diff --git a/data/software/ta/tapestry.json b/data/software/ta/tapestry.json new file mode 100644 index 000000000000..6ffe5955fbac --- /dev/null +++ b/data/software/ta/tapestry.json @@ -0,0 +1,8 @@ +{ + "slug": "tapestry", + "name": "Tapestry", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3515447" + ] +} diff --git a/data/software/ta/tardis.json b/data/software/ta/tardis.json new file mode 100644 index 000000000000..c35bf948ddcf --- /dev/null +++ b/data/software/ta/tardis.json @@ -0,0 +1,8 @@ +{ + "slug": "tardis", + "name": "TARDIS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124372683" + ] +} diff --git a/data/software/ta/targetcli.json b/data/software/ta/targetcli.json new file mode 100644 index 000000000000..88385362f2b0 --- /dev/null +++ b/data/software/ta/targetcli.json @@ -0,0 +1,11 @@ +{ + "slug": "targetcli", + "name": "targetcli", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975513" + ], + "licenses": [ + "Apache License" + ] +} diff --git a/data/software/ta/targetlink.json b/data/software/ta/targetlink.json new file mode 100644 index 000000000000..1c3c973613dd --- /dev/null +++ b/data/software/ta/targetlink.json @@ -0,0 +1,11 @@ +{ + "slug": "targetlink", + "name": "TargetLink", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2394119" + ], + "developers": [ + "dSPACE GmbH" + ] +} diff --git a/data/software/ta/tariff-monitor.json b/data/software/ta/tariff-monitor.json new file mode 100644 index 000000000000..10428ded0483 --- /dev/null +++ b/data/software/ta/tariff-monitor.json @@ -0,0 +1,8 @@ +{ + "slug": "tariff-monitor", + "name": "Tariff Monitor", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139856698" + ] +} diff --git a/data/software/ta/tartiflette.json b/data/software/ta/tartiflette.json new file mode 100644 index 000000000000..013ef81cb83f --- /dev/null +++ b/data/software/ta/tartiflette.json @@ -0,0 +1,14 @@ +{ + "slug": "tartiflette", + "name": "Tartiflette", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q64846055" + ], + "programming_languages": [ + "Python" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/ta/task-manager.json b/data/software/ta/task-manager.json new file mode 100644 index 000000000000..79fb72747400 --- /dev/null +++ b/data/software/ta/task-manager.json @@ -0,0 +1,15 @@ +{ + "slug": "task-manager", + "name": "Task Manager", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q873463" + ], + "release_date": "1996-08-24", + "developers": [ + "Microsoft" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/ta/taskcracker-for-outlook.json b/data/software/ta/taskcracker-for-outlook.json new file mode 100644 index 000000000000..95c74b88a331 --- /dev/null +++ b/data/software/ta/taskcracker-for-outlook.json @@ -0,0 +1,8 @@ +{ + "slug": "taskcracker-for-outlook", + "name": "TaskCracker for Outlook", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q15290011" + ] +} diff --git a/data/software/ta/taskkill.json b/data/software/ta/taskkill.json new file mode 100644 index 000000000000..c4b5ff0e78d6 --- /dev/null +++ b/data/software/ta/taskkill.json @@ -0,0 +1,8 @@ +{ + "slug": "taskkill", + "name": "taskkill", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q9355797" + ] +} diff --git a/data/software/ta/taskmax.json b/data/software/ta/taskmax.json new file mode 100644 index 000000000000..37311fc066bf --- /dev/null +++ b/data/software/ta/taskmax.json @@ -0,0 +1,11 @@ +{ + "slug": "taskmax", + "name": "TaskMAX", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123135591" + ], + "developers": [ + "Digital Research" + ] +} diff --git a/data/software/ta/tasma.json b/data/software/ta/tasma.json new file mode 100644 index 000000000000..46cdeae5f43f --- /dev/null +++ b/data/software/ta/tasma.json @@ -0,0 +1,8 @@ +{ + "slug": "tasma", + "name": "TASMA", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6091257" + ] +} diff --git a/data/software/ta/tasmota.json b/data/software/ta/tasmota.json new file mode 100644 index 000000000000..a4387259cf7e --- /dev/null +++ b/data/software/ta/tasmota.json @@ -0,0 +1,11 @@ +{ + "slug": "tasmota", + "name": "Tasmota", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q132182120" + ], + "licenses": [ + "GNU General Public License, version 3.0" + ] +} diff --git a/data/software/ta/tatoo-issco-tagger-tool.json b/data/software/ta/tatoo-issco-tagger-tool.json new file mode 100644 index 000000000000..a9dde18d44a2 --- /dev/null +++ b/data/software/ta/tatoo-issco-tagger-tool.json @@ -0,0 +1,8 @@ +{ + "slug": "tatoo-issco-tagger-tool", + "name": "TATOO (ISSCO Tagger Tool)", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087733" + ] +} diff --git a/data/software/ta/tatt.json b/data/software/ta/tatt.json new file mode 100644 index 000000000000..8997d6ec186c --- /dev/null +++ b/data/software/ta/tatt.json @@ -0,0 +1,8 @@ +{ + "slug": "tatt", + "name": "tatt", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975514" + ] +} diff --git a/data/software/ta/taverna.json b/data/software/ta/taverna.json new file mode 100644 index 000000000000..5235d6db93f8 --- /dev/null +++ b/data/software/ta/taverna.json @@ -0,0 +1,11 @@ +{ + "slug": "taverna", + "name": "TaveRNA", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7689046" + ], + "developers": [ + "Simon Fraser University" + ] +} diff --git a/data/software/ta/tawkers.json b/data/software/ta/tawkers.json new file mode 100644 index 000000000000..1bb40241d76f --- /dev/null +++ b/data/software/ta/tawkers.json @@ -0,0 +1,8 @@ +{ + "slug": "tawkers", + "name": "Tawkers", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18154795" + ] +} diff --git a/data/software/ta/tawkon.json b/data/software/ta/tawkon.json new file mode 100644 index 000000000000..9a386a9c3767 --- /dev/null +++ b/data/software/ta/tawkon.json @@ -0,0 +1,8 @@ +{ + "slug": "tawkon", + "name": "Tawkon", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7689297" + ] +} diff --git a/data/software/ta/tax-calculation-system.json b/data/software/ta/tax-calculation-system.json new file mode 100644 index 000000000000..87b19acc7792 --- /dev/null +++ b/data/software/ta/tax-calculation-system.json @@ -0,0 +1,8 @@ +{ + "slug": "tax-calculation-system", + "name": "Tax calculation system", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140247012" + ] +} diff --git a/data/software/ta/tax-heaven-3000.json b/data/software/ta/tax-heaven-3000.json new file mode 100644 index 000000000000..cd6327eea1cb --- /dev/null +++ b/data/software/ta/tax-heaven-3000.json @@ -0,0 +1,16 @@ +{ + "slug": "tax-heaven-3000", + "name": "Tax Heaven 3000", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123407134" + ], + "release_date": "2023-04-04", + "developers": [ + "MSCHF" + ], + "genres": [ + "dating sim", + "visual novel" + ] +} diff --git a/data/software/ta/taxact.json b/data/software/ta/taxact.json new file mode 100644 index 000000000000..4db957c3c38b --- /dev/null +++ b/data/software/ta/taxact.json @@ -0,0 +1,8 @@ +{ + "slug": "taxact", + "name": "TaxACT", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7689357" + ] +} diff --git a/data/software/ta/taxcloud.json b/data/software/ta/taxcloud.json new file mode 100644 index 000000000000..b39757d67082 --- /dev/null +++ b/data/software/ta/taxcloud.json @@ -0,0 +1,8 @@ +{ + "slug": "taxcloud", + "name": "TaxCloud", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122877964" + ] +} diff --git a/data/software/ta/taxottic.json b/data/software/ta/taxottic.json new file mode 100644 index 000000000000..25d17c1fc858 --- /dev/null +++ b/data/software/ta/taxottic.json @@ -0,0 +1,11 @@ +{ + "slug": "taxottic", + "name": "Taxottic", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140132105" + ], + "developers": [ + "Techno Optics LLC" + ] +} diff --git a/data/software/ta/tazman.json b/data/software/ta/tazman.json new file mode 100644 index 000000000000..a8ab03ba215a --- /dev/null +++ b/data/software/ta/tazman.json @@ -0,0 +1,8 @@ +{ + "slug": "tazman", + "name": "TAZMAN", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138808513" + ] +} diff --git a/data/software/tb/tbil.json b/data/software/tb/tbil.json new file mode 100644 index 000000000000..db35278e2636 --- /dev/null +++ b/data/software/tb/tbil.json @@ -0,0 +1,8 @@ +{ + "slug": "tbil", + "name": "TBIL", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7669549" + ] +} diff --git a/data/software/tc/tcov.json b/data/software/tc/tcov.json new file mode 100644 index 000000000000..4d4c95b1fbcb --- /dev/null +++ b/data/software/tc/tcov.json @@ -0,0 +1,11 @@ +{ + "slug": "tcov", + "name": "Tcov", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7690698" + ], + "developers": [ + "Oracle Corporation" + ] +} diff --git a/data/software/tc/tcpaccess.json b/data/software/tc/tcpaccess.json new file mode 100644 index 000000000000..707c0a34de27 --- /dev/null +++ b/data/software/tc/tcpaccess.json @@ -0,0 +1,8 @@ +{ + "slug": "tcpaccess", + "name": "TCPaccess", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7669765" + ] +} diff --git a/data/software/tc/tcpreplay.json b/data/software/tc/tcpreplay.json new file mode 100644 index 000000000000..23f84bb5992e --- /dev/null +++ b/data/software/tc/tcpreplay.json @@ -0,0 +1,8 @@ +{ + "slug": "tcpreplay", + "name": "tcpreplay", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127474414" + ] +} diff --git a/data/software/tc/tcs-bancs.json b/data/software/tc/tcs-bancs.json new file mode 100644 index 000000000000..274a63ae9028 --- /dev/null +++ b/data/software/tc/tcs-bancs.json @@ -0,0 +1,17 @@ +{ + "slug": "tcs-bancs", + "name": "TCS BaNCS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7669773" + ], + "developers": [ + "Tata Consultancy Services" + ], + "operating_systems": [ + "cross-platform" + ], + "programming_languages": [ + "Java" + ] +} diff --git a/data/software/td/tdb.json b/data/software/td/tdb.json new file mode 100644 index 000000000000..3910bd05e054 --- /dev/null +++ b/data/software/td/tdb.json @@ -0,0 +1,8 @@ +{ + "slug": "tdb", + "name": "TDB", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113991256" + ] +} diff --git a/data/software/te/te-ordinative-lora.json b/data/software/te/te-ordinative-lora.json new file mode 100644 index 000000000000..cd3846138b47 --- /dev/null +++ b/data/software/te/te-ordinative-lora.json @@ -0,0 +1,9 @@ +{ + "slug": "te-ordinative-lora", + "name": "TE Ordinative LoRA", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139698301" + ], + "release_date": "2026-01-01" +} diff --git a/data/software/te/teach2000.json b/data/software/te/teach2000.json new file mode 100644 index 000000000000..448984e50ec2 --- /dev/null +++ b/data/software/te/teach2000.json @@ -0,0 +1,8 @@ +{ + "slug": "teach2000", + "name": "Teach2000", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3371399" + ] +} diff --git a/data/software/te/teachaids.json b/data/software/te/teachaids.json new file mode 100644 index 000000000000..14447194ce06 --- /dev/null +++ b/data/software/te/teachaids.json @@ -0,0 +1,8 @@ +{ + "slug": "teachaids", + "name": "TeachAIDS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7691153" + ] +} diff --git a/data/software/te/teachtech.json b/data/software/te/teachtech.json new file mode 100644 index 000000000000..57ab68816e71 --- /dev/null +++ b/data/software/te/teachtech.json @@ -0,0 +1,17 @@ +{ + "slug": "teachtech", + "name": "TeachTech", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q90405674" + ], + "operating_systems": [ + "iOS", + "macOS", + "Microsoft Windows" + ], + "programming_languages": [ + "PHP", + "Cascading Style Sheets" + ] +} diff --git a/data/software/te/team-foundation-server.json b/data/software/te/team-foundation-server.json new file mode 100644 index 000000000000..7847385236e1 --- /dev/null +++ b/data/software/te/team-foundation-server.json @@ -0,0 +1,11 @@ +{ + "slug": "team-foundation-server", + "name": "Team Foundation Server", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106111747" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/te/teamcenter.json b/data/software/te/teamcenter.json new file mode 100644 index 000000000000..9b8d62bcf611 --- /dev/null +++ b/data/software/te/teamcenter.json @@ -0,0 +1,11 @@ +{ + "slug": "teamcenter", + "name": "Teamcenter", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4050773" + ], + "developers": [ + "UGS Corp." + ] +} diff --git a/data/software/te/teamhiiv.json b/data/software/te/teamhiiv.json new file mode 100644 index 000000000000..d29f00de966a --- /dev/null +++ b/data/software/te/teamhiiv.json @@ -0,0 +1,11 @@ +{ + "slug": "teamhiiv", + "name": "TeamHiiv", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138998334" + ], + "developers": [ + "ExpandIQ" + ] +} diff --git a/data/software/te/teamnote.json b/data/software/te/teamnote.json new file mode 100644 index 000000000000..0d595b48eeb0 --- /dev/null +++ b/data/software/te/teamnote.json @@ -0,0 +1,9 @@ +{ + "slug": "teamnote", + "name": "TeamNote", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22909286" + ], + "release_date": "2014-01-01" +} diff --git a/data/software/te/teamsense-inc.json b/data/software/te/teamsense-inc.json new file mode 100644 index 000000000000..d2e06e709b2b --- /dev/null +++ b/data/software/te/teamsense-inc.json @@ -0,0 +1,8 @@ +{ + "slug": "teamsense-inc", + "name": "TeamSense Inc", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110163623" + ] +} diff --git a/data/software/te/teamtalk.json b/data/software/te/teamtalk.json new file mode 100644 index 000000000000..8fd132f9482c --- /dev/null +++ b/data/software/te/teamtalk.json @@ -0,0 +1,11 @@ +{ + "slug": "teamtalk", + "name": "TeamTalk", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25305261" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/te/teamwox.json b/data/software/te/teamwox.json new file mode 100644 index 000000000000..9cd3ad1da2a9 --- /dev/null +++ b/data/software/te/teamwox.json @@ -0,0 +1,12 @@ +{ + "slug": "teamwox", + "name": "TeamWox", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3078041" + ], + "release_date": "2009-01-01", + "developers": [ + "MetaQuotes" + ] +} diff --git a/data/software/te/teashark.json b/data/software/te/teashark.json new file mode 100644 index 000000000000..2b66b9168fb7 --- /dev/null +++ b/data/software/te/teashark.json @@ -0,0 +1,14 @@ +{ + "slug": "teashark", + "name": "Teashark", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4050779" + ], + "programming_languages": [ + "Java" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/te/teaspiller.json b/data/software/te/teaspiller.json new file mode 100644 index 000000000000..fe26910fb191 --- /dev/null +++ b/data/software/te/teaspiller.json @@ -0,0 +1,8 @@ +{ + "slug": "teaspiller", + "name": "Teaspiller", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7691857" + ] +} diff --git a/data/software/te/techexcel-servicewise.json b/data/software/te/techexcel-servicewise.json new file mode 100644 index 000000000000..c13d6af367d5 --- /dev/null +++ b/data/software/te/techexcel-servicewise.json @@ -0,0 +1,8 @@ +{ + "slug": "techexcel-servicewise", + "name": "TechExcel ServiceWise", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7692117" + ] +} diff --git a/data/software/te/techila-grid.json b/data/software/te/techila-grid.json new file mode 100644 index 000000000000..4125b13db5f1 --- /dev/null +++ b/data/software/te/techila-grid.json @@ -0,0 +1,8 @@ +{ + "slug": "techila-grid", + "name": "Techila Grid", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7692200" + ] +} diff --git a/data/software/te/techinline.json b/data/software/te/techinline.json new file mode 100644 index 000000000000..8c63fd437451 --- /dev/null +++ b/data/software/te/techinline.json @@ -0,0 +1,9 @@ +{ + "slug": "techinline", + "name": "Techinline", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7692204" + ], + "release_date": "2007-08-01" +} diff --git a/data/software/te/techlog.json b/data/software/te/techlog.json new file mode 100644 index 000000000000..738e87a3e571 --- /dev/null +++ b/data/software/te/techlog.json @@ -0,0 +1,8 @@ +{ + "slug": "techlog", + "name": "Techlog", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7692210" + ] +} diff --git a/data/software/te/technical-information-project.json b/data/software/te/technical-information-project.json new file mode 100644 index 000000000000..350344b1cc70 --- /dev/null +++ b/data/software/te/technical-information-project.json @@ -0,0 +1,8 @@ +{ + "slug": "technical-information-project", + "name": "Technical Information Project", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7692280" + ] +} diff --git a/data/software/te/techwriter.json b/data/software/te/techwriter.json new file mode 100644 index 000000000000..7ec9957fcd77 --- /dev/null +++ b/data/software/te/techwriter.json @@ -0,0 +1,11 @@ +{ + "slug": "techwriter", + "name": "TechWriter", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22909291" + ], + "operating_systems": [ + "RISC OS" + ] +} diff --git a/data/software/te/tecplot.json b/data/software/te/tecplot.json new file mode 100644 index 000000000000..0ad967067213 --- /dev/null +++ b/data/software/te/tecplot.json @@ -0,0 +1,11 @@ +{ + "slug": "tecplot", + "name": "Tecplot", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3516998" + ], + "developers": [ + "Tecplot (United States)" + ] +} diff --git a/data/software/te/tectonic.json b/data/software/te/tectonic.json new file mode 100644 index 000000000000..20445fee1b07 --- /dev/null +++ b/data/software/te/tectonic.json @@ -0,0 +1,11 @@ +{ + "slug": "tectonic", + "name": "Tectonic", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q96473514" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/te/teechart.json b/data/software/te/teechart.json new file mode 100644 index 000000000000..7c7ac6e836a1 --- /dev/null +++ b/data/software/te/teechart.json @@ -0,0 +1,9 @@ +{ + "slug": "teechart", + "name": "Teechart", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11951093" + ], + "release_date": "1995-01-01" +} diff --git a/data/software/te/tei-boilerplate.json b/data/software/te/tei-boilerplate.json new file mode 100644 index 000000000000..b5ea3793e955 --- /dev/null +++ b/data/software/te/tei-boilerplate.json @@ -0,0 +1,15 @@ +{ + "slug": "tei-boilerplate", + "name": "TEI Boilerplate", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087734" + ], + "programming_languages": [ + "XSLT", + "Cascading Style Sheets" + ], + "licenses": [ + "Creative Commons Attribution 3.0 Unported" + ] +} diff --git a/data/software/te/teia-geo-igo.json b/data/software/te/teia-geo-igo.json new file mode 100644 index 000000000000..3559e4d833a3 --- /dev/null +++ b/data/software/te/teia-geo-igo.json @@ -0,0 +1,11 @@ +{ + "slug": "teia-geo-igo", + "name": "Teia GEO IGO", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138853832" + ], + "developers": [ + "Teia Studio" + ] +} diff --git a/data/software/te/teicorpo.json b/data/software/te/teicorpo.json new file mode 100644 index 000000000000..302c1f2e7c36 --- /dev/null +++ b/data/software/te/teicorpo.json @@ -0,0 +1,8 @@ +{ + "slug": "teicorpo", + "name": "TEICORPO", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084616" + ] +} diff --git a/data/software/te/tekla-structures.json b/data/software/te/tekla-structures.json new file mode 100644 index 000000000000..45ba3ecaf7ff --- /dev/null +++ b/data/software/te/tekla-structures.json @@ -0,0 +1,17 @@ +{ + "slug": "tekla-structures", + "name": "Tekla Structures", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q20895278" + ], + "developers": [ + "Tekla" + ], + "operating_systems": [ + "Microsoft Windows" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/te/teknap.json b/data/software/te/teknap.json new file mode 100644 index 000000000000..5ff7d8735287 --- /dev/null +++ b/data/software/te/teknap.json @@ -0,0 +1,8 @@ +{ + "slug": "teknap", + "name": "TekNap", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1522042" + ] +} diff --git a/data/software/te/teko.json b/data/software/te/teko.json new file mode 100644 index 000000000000..ec4d0b7317f1 --- /dev/null +++ b/data/software/te/teko.json @@ -0,0 +1,12 @@ +{ + "slug": "teko", + "name": "Teko", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11896834" + ], + "developers": [ + "Kielikone", + "Finnish State Computer Centre" + ] +} diff --git a/data/software/te/tektrak.json b/data/software/te/tektrak.json new file mode 100644 index 000000000000..c098c3b6a86f --- /dev/null +++ b/data/software/te/tektrak.json @@ -0,0 +1,8 @@ +{ + "slug": "tektrak", + "name": "TekTrak", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7695273" + ] +} diff --git a/data/software/te/teleform.json b/data/software/te/teleform.json new file mode 100644 index 000000000000..5526bff9beb7 --- /dev/null +++ b/data/software/te/teleform.json @@ -0,0 +1,11 @@ +{ + "slug": "teleform", + "name": "TeleForm", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7695726" + ], + "developers": [ + "Hewlett-Packard" + ] +} diff --git a/data/software/te/telegard.json b/data/software/te/telegard.json new file mode 100644 index 000000000000..2cc94f5c4e65 --- /dev/null +++ b/data/software/te/telegard.json @@ -0,0 +1,8 @@ +{ + "slug": "telegard", + "name": "Telegard", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7696180" + ] +} diff --git a/data/software/te/telegram-signal-copier.json b/data/software/te/telegram-signal-copier.json new file mode 100644 index 000000000000..492a74cf1a63 --- /dev/null +++ b/data/software/te/telegram-signal-copier.json @@ -0,0 +1,8 @@ +{ + "slug": "telegram-signal-copier", + "name": "Telegram Signal Copier", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139817370" + ] +} diff --git a/data/software/te/telehash.json b/data/software/te/telehash.json new file mode 100644 index 000000000000..4bb52de3fcb6 --- /dev/null +++ b/data/software/te/telehash.json @@ -0,0 +1,12 @@ +{ + "slug": "telehash", + "name": "Telehash", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17059301" + ], + "release_date": "2010-01-01", + "developers": [ + "Jeremie Miller" + ] +} diff --git a/data/software/te/telemac.json b/data/software/te/telemac.json new file mode 100644 index 000000000000..246175431ee1 --- /dev/null +++ b/data/software/te/telemac.json @@ -0,0 +1,8 @@ +{ + "slug": "telemac", + "name": "TELEMAC", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7669983" + ] +} diff --git a/data/software/te/telepathy-mission-control.json b/data/software/te/telepathy-mission-control.json new file mode 100644 index 000000000000..23813cce85d6 --- /dev/null +++ b/data/software/te/telepathy-mission-control.json @@ -0,0 +1,8 @@ +{ + "slug": "telepathy-mission-control", + "name": "telepathy-mission-control", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60917793" + ] +} diff --git a/data/software/te/telex.json b/data/software/te/telex.json new file mode 100644 index 000000000000..1e473c8cb275 --- /dev/null +++ b/data/software/te/telex.json @@ -0,0 +1,8 @@ +{ + "slug": "telex", + "name": "Telex", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q15899477" + ] +} diff --git a/data/software/te/tellent.json b/data/software/te/tellent.json new file mode 100644 index 000000000000..000074d79d85 --- /dev/null +++ b/data/software/te/tellent.json @@ -0,0 +1,8 @@ +{ + "slug": "tellent", + "name": "Tellent", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138720229" + ] +} diff --git a/data/software/te/tellstar.json b/data/software/te/tellstar.json new file mode 100644 index 000000000000..2bdd786f236a --- /dev/null +++ b/data/software/te/tellstar.json @@ -0,0 +1,9 @@ +{ + "slug": "tellstar", + "name": "TellStar", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7697364" + ], + "release_date": "1980-01-01" +} diff --git a/data/software/te/temp-file-cleaner.json b/data/software/te/temp-file-cleaner.json new file mode 100644 index 000000000000..62536a832f3e --- /dev/null +++ b/data/software/te/temp-file-cleaner.json @@ -0,0 +1,8 @@ +{ + "slug": "temp-file-cleaner", + "name": "Temp File Cleaner", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16953262" + ] +} diff --git a/data/software/te/temp-mail.json b/data/software/te/temp-mail.json new file mode 100644 index 000000000000..eea1bbb774bf --- /dev/null +++ b/data/software/te/temp-mail.json @@ -0,0 +1,8 @@ +{ + "slug": "temp-mail", + "name": "Temp Mail", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124049549" + ] +} diff --git a/data/software/te/templated.json b/data/software/te/templated.json new file mode 100644 index 000000000000..6b155e23ced3 --- /dev/null +++ b/data/software/te/templated.json @@ -0,0 +1,8 @@ +{ + "slug": "templated", + "name": "Templated", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084617" + ] +} diff --git a/data/software/te/tempo.json b/data/software/te/tempo.json new file mode 100644 index 000000000000..c6ebc76551e6 --- /dev/null +++ b/data/software/te/tempo.json @@ -0,0 +1,8 @@ +{ + "slug": "tempo", + "name": "Tempo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7698863" + ] +} diff --git a/data/software/te/tempus-editor.json b/data/software/te/tempus-editor.json new file mode 100644 index 000000000000..83d6d1c6e52f --- /dev/null +++ b/data/software/te/tempus-editor.json @@ -0,0 +1,8 @@ +{ + "slug": "tempus-editor", + "name": "Tempus-Editor", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q15850342" + ] +} diff --git a/data/software/te/tempus-word.json b/data/software/te/tempus-word.json new file mode 100644 index 000000000000..0e32433a1cff --- /dev/null +++ b/data/software/te/tempus-word.json @@ -0,0 +1,8 @@ +{ + "slug": "tempus-word", + "name": "Tempus-Word", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2403111" + ] +} diff --git a/data/software/te/tencent-cloud-palmai.json b/data/software/te/tencent-cloud-palmai.json new file mode 100644 index 000000000000..3f093933e5e6 --- /dev/null +++ b/data/software/te/tencent-cloud-palmai.json @@ -0,0 +1,11 @@ +{ + "slug": "tencent-cloud-palmai", + "name": "Tencent Cloud PalmAI", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139923175" + ], + "developers": [ + "Tencent Cloud" + ] +} diff --git a/data/software/te/tencent-computer-manager.json b/data/software/te/tencent-computer-manager.json new file mode 100644 index 000000000000..a596d38e36fd --- /dev/null +++ b/data/software/te/tencent-computer-manager.json @@ -0,0 +1,11 @@ +{ + "slug": "tencent-computer-manager", + "name": "Tencent Computer Manager", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q15912509" + ], + "developers": [ + "Tencent" + ] +} diff --git a/data/software/te/tencent-messenger.json b/data/software/te/tencent-messenger.json new file mode 100644 index 000000000000..93b2f90f532b --- /dev/null +++ b/data/software/te/tencent-messenger.json @@ -0,0 +1,12 @@ +{ + "slug": "tencent-messenger", + "name": "Tencent Messenger", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10852980" + ], + "release_date": "2003-12-15", + "developers": [ + "Tencent" + ] +} diff --git a/data/software/te/tend.json b/data/software/te/tend.json new file mode 100644 index 000000000000..681d267fdf29 --- /dev/null +++ b/data/software/te/tend.json @@ -0,0 +1,17 @@ +{ + "slug": "tend", + "name": "Tend", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138799879" + ], + "operating_systems": [ + "web browser" + ], + "programming_languages": [ + "Python" + ], + "genres": [ + "productivity software" + ] +} diff --git a/data/software/te/tenems.json b/data/software/te/tenems.json new file mode 100644 index 000000000000..46a496d5d793 --- /dev/null +++ b/data/software/te/tenems.json @@ -0,0 +1,14 @@ +{ + "slug": "tenems", + "name": "Tenems", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11250594" + ], + "programming_languages": [ + "Visual Basic" + ], + "licenses": [ + "3-clause BSD License" + ] +} diff --git a/data/software/te/tenet-ai.json b/data/software/te/tenet-ai.json new file mode 100644 index 000000000000..1685e9450948 --- /dev/null +++ b/data/software/te/tenet-ai.json @@ -0,0 +1,8 @@ +{ + "slug": "tenet-ai", + "name": "Tenet AI", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139591734" + ] +} diff --git a/data/software/te/tenfourfox.json b/data/software/te/tenfourfox.json new file mode 100644 index 000000000000..b6df7ff6135f --- /dev/null +++ b/data/software/te/tenfourfox.json @@ -0,0 +1,15 @@ +{ + "slug": "tenfourfox", + "name": "TenFourFox", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7699132" + ], + "operating_systems": [ + "Mac OS X Tiger", + "Mac OS X Leopard" + ], + "licenses": [ + "Mozilla Public License" + ] +} diff --git a/data/software/te/tensistrength.json b/data/software/te/tensistrength.json new file mode 100644 index 000000000000..680be4c26ec3 --- /dev/null +++ b/data/software/te/tensistrength.json @@ -0,0 +1,8 @@ +{ + "slug": "tensistrength", + "name": "TensiStrength", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087735" + ] +} diff --git a/data/software/te/teopad.json b/data/software/te/teopad.json new file mode 100644 index 000000000000..6cd41e5c9461 --- /dev/null +++ b/data/software/te/teopad.json @@ -0,0 +1,8 @@ +{ + "slug": "teopad", + "name": "Teopad", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3512098" + ] +} diff --git a/data/software/te/teracopy.json b/data/software/te/teracopy.json new file mode 100644 index 000000000000..8749f4e2ee50 --- /dev/null +++ b/data/software/te/teracopy.json @@ -0,0 +1,13 @@ +{ + "slug": "teracopy", + "name": "TeraCopy", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5368637" + ], + "operating_systems": [ + "Windows 7", + "Windows 11", + "Windows 8.1" + ] +} diff --git a/data/software/te/teradata-geospatial.json b/data/software/te/teradata-geospatial.json new file mode 100644 index 000000000000..b556998823e4 --- /dev/null +++ b/data/software/te/teradata-geospatial.json @@ -0,0 +1,11 @@ +{ + "slug": "teradata-geospatial", + "name": "Teradata Geospatial", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7701509" + ], + "developers": [ + "Teradata" + ] +} diff --git a/data/software/te/teradata-warehouse-miner.json b/data/software/te/teradata-warehouse-miner.json new file mode 100644 index 000000000000..da1f4318a520 --- /dev/null +++ b/data/software/te/teradata-warehouse-miner.json @@ -0,0 +1,11 @@ +{ + "slug": "teradata-warehouse-miner", + "name": "Teradata Warehouse Miner", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7701512" + ], + "developers": [ + "Teradata" + ] +} diff --git a/data/software/te/teratext.json b/data/software/te/teratext.json new file mode 100644 index 000000000000..7ee70642d7b2 --- /dev/null +++ b/data/software/te/teratext.json @@ -0,0 +1,11 @@ +{ + "slug": "teratext", + "name": "TeraText", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7701465" + ], + "developers": [ + "Leidos" + ] +} diff --git a/data/software/te/term-in.json b/data/software/te/term-in.json new file mode 100644 index 000000000000..40487ed9e611 --- /dev/null +++ b/data/software/te/term-in.json @@ -0,0 +1,8 @@ +{ + "slug": "term-in", + "name": "term-in", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139273564" + ] +} diff --git a/data/software/te/termcap.json b/data/software/te/termcap.json new file mode 100644 index 000000000000..15d0e5e0247d --- /dev/null +++ b/data/software/te/termcap.json @@ -0,0 +1,9 @@ +{ + "slug": "termcap", + "name": "Termcap", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7702581" + ], + "release_date": "1978-01-01" +} diff --git a/data/software/te/terminal-productivity-executive.json b/data/software/te/terminal-productivity-executive.json new file mode 100644 index 000000000000..c63d4588fc23 --- /dev/null +++ b/data/software/te/terminal-productivity-executive.json @@ -0,0 +1,11 @@ +{ + "slug": "terminal-productivity-executive", + "name": "Terminal Productivity Executive", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7702678" + ], + "developers": [ + "CA Technologies" + ] +} diff --git a/data/software/te/terminate.json b/data/software/te/terminate.json new file mode 100644 index 000000000000..97f6740b5e06 --- /dev/null +++ b/data/software/te/terminate.json @@ -0,0 +1,8 @@ +{ + "slug": "terminate", + "name": "Terminate", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7702783" + ] +} diff --git a/data/software/te/terminatorx.json b/data/software/te/terminatorx.json new file mode 100644 index 000000000000..5101cda318e4 --- /dev/null +++ b/data/software/te/terminatorx.json @@ -0,0 +1,8 @@ +{ + "slug": "terminatorx", + "name": "terminatorx", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60864943" + ] +} diff --git a/data/software/te/ternfs.json b/data/software/te/ternfs.json new file mode 100644 index 000000000000..9f2831b5bee5 --- /dev/null +++ b/data/software/te/ternfs.json @@ -0,0 +1,8 @@ +{ + "slug": "ternfs", + "name": "TernFS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136463344" + ] +} diff --git a/data/software/te/terrafly.json b/data/software/te/terrafly.json new file mode 100644 index 000000000000..fc656c6858ce --- /dev/null +++ b/data/software/te/terrafly.json @@ -0,0 +1,11 @@ +{ + "slug": "terrafly", + "name": "Terrafly", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7703210" + ], + "developers": [ + "Florida International University" + ] +} diff --git a/data/software/te/terrame.json b/data/software/te/terrame.json new file mode 100644 index 000000000000..8ce4ec3acedb --- /dev/null +++ b/data/software/te/terrame.json @@ -0,0 +1,8 @@ +{ + "slug": "terrame", + "name": "TerraME", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084618" + ] +} diff --git a/data/software/te/terraview.json b/data/software/te/terraview.json new file mode 100644 index 000000000000..f8d9d223f9cd --- /dev/null +++ b/data/software/te/terraview.json @@ -0,0 +1,8 @@ +{ + "slug": "terraview", + "name": "TerraView", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7703050" + ] +} diff --git a/data/software/te/terrier-search-engine.json b/data/software/te/terrier-search-engine.json new file mode 100644 index 000000000000..34a3e15b6574 --- /dev/null +++ b/data/software/te/terrier-search-engine.json @@ -0,0 +1,8 @@ +{ + "slug": "terrier-search-engine", + "name": "Terrier Search Engine", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7703700" + ] +} diff --git a/data/software/te/terrset.json b/data/software/te/terrset.json new file mode 100644 index 000000000000..6800bbe32e96 --- /dev/null +++ b/data/software/te/terrset.json @@ -0,0 +1,9 @@ +{ + "slug": "terrset", + "name": "TerrSet", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5970081" + ], + "release_date": "1987-01-01" +} diff --git a/data/software/te/teseq.json b/data/software/te/teseq.json new file mode 100644 index 000000000000..e854771d4d94 --- /dev/null +++ b/data/software/te/teseq.json @@ -0,0 +1,11 @@ +{ + "slug": "teseq", + "name": "teseq", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065218" + ], + "operating_systems": [ + "Unix-like operating system" + ] +} diff --git a/data/software/te/tesseract.json b/data/software/te/tesseract.json new file mode 100644 index 000000000000..d0c57cb2bf59 --- /dev/null +++ b/data/software/te/tesseract.json @@ -0,0 +1,21 @@ +{ + "slug": "tesseract", + "name": "Tesseract", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q945242" + ], + "developers": [ + "Ray Smith" + ], + "operating_systems": [ + "GNU/Hurd", + "BSD", + "iOS", + "macOS", + "Microsoft Windows" + ], + "licenses": [ + "Apache Software License 2.0" + ] +} diff --git a/data/software/te/tesserae.json b/data/software/te/tesserae.json new file mode 100644 index 000000000000..a316f18d8571 --- /dev/null +++ b/data/software/te/tesserae.json @@ -0,0 +1,8 @@ +{ + "slug": "tesserae", + "name": "Tesserae", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084620" + ] +} diff --git a/data/software/te/tessitura.json b/data/software/te/tessitura.json new file mode 100644 index 000000000000..2b140510ed9b --- /dev/null +++ b/data/software/te/tessitura.json @@ -0,0 +1,12 @@ +{ + "slug": "tessitura", + "name": "Tessitura", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7705677" + ], + "developers": [ + "The Metropolitan Opera", + "Tessitura Network" + ] +} diff --git a/data/software/te/tessy.json b/data/software/te/tessy.json new file mode 100644 index 000000000000..ef5a56d5e94b --- /dev/null +++ b/data/software/te/tessy.json @@ -0,0 +1,8 @@ +{ + "slug": "tessy", + "name": "Tessy", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1773051" + ] +} diff --git a/data/software/te/test-and-training-enabling-architecture.json b/data/software/te/test-and-training-enabling-architecture.json new file mode 100644 index 000000000000..62cf8aab015e --- /dev/null +++ b/data/software/te/test-and-training-enabling-architecture.json @@ -0,0 +1,8 @@ +{ + "slug": "test-and-training-enabling-architecture", + "name": "Test and Training Enabling Architecture", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17143801" + ] +} diff --git a/data/software/te/test-driver.json b/data/software/te/test-driver.json new file mode 100644 index 000000000000..f6e8e6791890 --- /dev/null +++ b/data/software/te/test-driver.json @@ -0,0 +1,8 @@ +{ + "slug": "test-driver", + "name": "Test driver", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122790722" + ] +} diff --git a/data/software/te/test-studio.json b/data/software/te/test-studio.json new file mode 100644 index 000000000000..69c1a6b17d2b --- /dev/null +++ b/data/software/te/test-studio.json @@ -0,0 +1,11 @@ +{ + "slug": "test-studio", + "name": "Test Studio", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17082844" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/te/testflight.json b/data/software/te/testflight.json new file mode 100644 index 000000000000..b7ef9f731137 --- /dev/null +++ b/data/software/te/testflight.json @@ -0,0 +1,20 @@ +{ + "slug": "testflight", + "name": "TestFlight", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q21041366" + ], + "developers": [ + "Apple Inc." + ], + "operating_systems": [ + "iPadOS", + "tvOS", + "iOS", + "macOS" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/te/testpartner.json b/data/software/te/testpartner.json new file mode 100644 index 000000000000..20774e8a876d --- /dev/null +++ b/data/software/te/testpartner.json @@ -0,0 +1,8 @@ +{ + "slug": "testpartner", + "name": "TestPartner", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1558908" + ] +} diff --git a/data/software/te/teststand.json b/data/software/te/teststand.json new file mode 100644 index 000000000000..e674d6c5aa85 --- /dev/null +++ b/data/software/te/teststand.json @@ -0,0 +1,11 @@ +{ + "slug": "teststand", + "name": "TestStand", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3519021" + ], + "developers": [ + "National Instruments" + ] +} diff --git a/data/software/te/testyd.json b/data/software/te/testyd.json new file mode 100644 index 000000000000..5f54a16c6dda --- /dev/null +++ b/data/software/te/testyd.json @@ -0,0 +1,8 @@ +{ + "slug": "testyd", + "name": "Testyd", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q20820547" + ] +} diff --git a/data/software/te/tetex.json b/data/software/te/tetex.json new file mode 100644 index 000000000000..81eb813a104d --- /dev/null +++ b/data/software/te/tetex.json @@ -0,0 +1,11 @@ +{ + "slug": "tetex", + "name": "teTeX", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1935560" + ], + "operating_systems": [ + "Unix-like operating system" + ] +} diff --git a/data/software/te/teuxdeux.json b/data/software/te/teuxdeux.json new file mode 100644 index 000000000000..9bca99c862d3 --- /dev/null +++ b/data/software/te/teuxdeux.json @@ -0,0 +1,9 @@ +{ + "slug": "teuxdeux", + "name": "TeuxDeux", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7707109" + ], + "release_date": "2009-01-01" +} diff --git a/data/software/te/texml.json b/data/software/te/texml.json new file mode 100644 index 000000000000..9873f132c380 --- /dev/null +++ b/data/software/te/texml.json @@ -0,0 +1,8 @@ +{ + "slug": "texml", + "name": "TeXML", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2398130" + ] +} diff --git a/data/software/te/text-2-mind-map.json b/data/software/te/text-2-mind-map.json new file mode 100644 index 000000000000..3598aede3cd5 --- /dev/null +++ b/data/software/te/text-2-mind-map.json @@ -0,0 +1,8 @@ +{ + "slug": "text-2-mind-map", + "name": "Text 2 Mind Map", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084622" + ] +} diff --git a/data/software/te/text-analysis-online.json b/data/software/te/text-analysis-online.json new file mode 100644 index 000000000000..458964f2d579 --- /dev/null +++ b/data/software/te/text-analysis-online.json @@ -0,0 +1,8 @@ +{ + "slug": "text-analysis-online", + "name": "Text Analysis Online", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087738" + ] +} diff --git a/data/software/te/text-analyzer.json b/data/software/te/text-analyzer.json new file mode 100644 index 000000000000..012e18748256 --- /dev/null +++ b/data/software/te/text-analyzer.json @@ -0,0 +1,8 @@ +{ + "slug": "text-analyzer", + "name": "Text Analyzer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087740" + ] +} diff --git a/data/software/te/text-fixer.json b/data/software/te/text-fixer.json new file mode 100644 index 000000000000..7024d08a1e0a --- /dev/null +++ b/data/software/te/text-fixer.json @@ -0,0 +1,8 @@ +{ + "slug": "text-fixer", + "name": "Text Fixer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084634" + ] +} diff --git a/data/software/te/text-mining-minion.json b/data/software/te/text-mining-minion.json new file mode 100644 index 000000000000..ccfe91a79088 --- /dev/null +++ b/data/software/te/text-mining-minion.json @@ -0,0 +1,8 @@ +{ + "slug": "text-mining-minion", + "name": "Text mining minion", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q74824570" + ] +} diff --git a/data/software/te/text-variation-explorer-tve.json b/data/software/te/text-variation-explorer-tve.json new file mode 100644 index 000000000000..6e6dc3dcb1f3 --- /dev/null +++ b/data/software/te/text-variation-explorer-tve.json @@ -0,0 +1,8 @@ +{ + "slug": "text-variation-explorer-tve", + "name": "Text Variation Explorer (TVE)", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084644" + ] +} diff --git a/data/software/te/text-verification-tool.json b/data/software/te/text-verification-tool.json new file mode 100644 index 000000000000..72dd87353723 --- /dev/null +++ b/data/software/te/text-verification-tool.json @@ -0,0 +1,12 @@ +{ + "slug": "text-verification-tool", + "name": "Text Verification Tool", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7708407" + ], + "release_date": "2003-01-01", + "developers": [ + "Schlafender Hase GmbH" + ] +} diff --git a/data/software/te/text.json b/data/software/te/text.json new file mode 100644 index 000000000000..e46c87cdf8ff --- /dev/null +++ b/data/software/te/text.json @@ -0,0 +1,15 @@ +{ + "slug": "text", + "name": "Text", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139973704" + ], + "developers": [ + "Text, Inc.", + "Text" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/te/text2ddc.json b/data/software/te/text2ddc.json new file mode 100644 index 000000000000..0657fca8b206 --- /dev/null +++ b/data/software/te/text2ddc.json @@ -0,0 +1,8 @@ +{ + "slug": "text2ddc", + "name": "Text2DDC", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084621" + ] +} diff --git a/data/software/te/text2term.json b/data/software/te/text2term.json new file mode 100644 index 000000000000..562e1ccb942f --- /dev/null +++ b/data/software/te/text2term.json @@ -0,0 +1,14 @@ +{ + "slug": "text2term", + "name": "text2term", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116924843" + ], + "programming_languages": [ + "Python" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/te/textable.json b/data/software/te/textable.json new file mode 100644 index 000000000000..e6199f3d04e7 --- /dev/null +++ b/data/software/te/textable.json @@ -0,0 +1,8 @@ +{ + "slug": "textable", + "name": "Textable", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084623" + ] +} diff --git a/data/software/te/textal.json b/data/software/te/textal.json new file mode 100644 index 000000000000..e60647f37f3a --- /dev/null +++ b/data/software/te/textal.json @@ -0,0 +1,8 @@ +{ + "slug": "textal", + "name": "Textal", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084625" + ] +} diff --git a/data/software/te/textaloud.json b/data/software/te/textaloud.json new file mode 100644 index 000000000000..3239e200f2be --- /dev/null +++ b/data/software/te/textaloud.json @@ -0,0 +1,8 @@ +{ + "slug": "textaloud", + "name": "TextAloud", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125523952" + ] +} diff --git a/data/software/te/textalyser.json b/data/software/te/textalyser.json new file mode 100644 index 000000000000..99850c16ea08 --- /dev/null +++ b/data/software/te/textalyser.json @@ -0,0 +1,8 @@ +{ + "slug": "textalyser", + "name": "Textalyser", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087736" + ] +} diff --git a/data/software/te/textan.json b/data/software/te/textan.json new file mode 100644 index 000000000000..9e89db57d9ea --- /dev/null +++ b/data/software/te/textan.json @@ -0,0 +1,8 @@ +{ + "slug": "textan", + "name": "TEXTAN", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084626" + ] +} diff --git a/data/software/te/textanalyst.json b/data/software/te/textanalyst.json new file mode 100644 index 000000000000..2c4d15d56268 --- /dev/null +++ b/data/software/te/textanalyst.json @@ -0,0 +1,8 @@ +{ + "slug": "textanalyst", + "name": "TextAnalyst", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105454034" + ] +} diff --git a/data/software/te/textannotator.json b/data/software/te/textannotator.json new file mode 100644 index 000000000000..c55513d47623 --- /dev/null +++ b/data/software/te/textannotator.json @@ -0,0 +1,8 @@ +{ + "slug": "textannotator", + "name": "TextAnnotator", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084627" + ] +} diff --git a/data/software/te/textarc.json b/data/software/te/textarc.json new file mode 100644 index 000000000000..039ca16d1b84 --- /dev/null +++ b/data/software/te/textarc.json @@ -0,0 +1,8 @@ +{ + "slug": "textarc", + "name": "TextArc", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084628" + ] +} diff --git a/data/software/te/textboard-browser.json b/data/software/te/textboard-browser.json new file mode 100644 index 000000000000..4d7f79b36a69 --- /dev/null +++ b/data/software/te/textboard-browser.json @@ -0,0 +1,8 @@ +{ + "slug": "textboard-browser", + "name": "textboard browser", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q114694593" + ] +} diff --git a/data/software/te/textcord.json b/data/software/te/textcord.json new file mode 100644 index 000000000000..66c053210922 --- /dev/null +++ b/data/software/te/textcord.json @@ -0,0 +1,8 @@ +{ + "slug": "textcord", + "name": "TEXTCORD", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087741" + ] +} diff --git a/data/software/te/textdna-q126084629.json b/data/software/te/textdna-q126084629.json new file mode 100644 index 000000000000..c9799794737c --- /dev/null +++ b/data/software/te/textdna-q126084629.json @@ -0,0 +1,8 @@ +{ + "slug": "textdna-q126084629", + "name": "TextDNA", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084629" + ] +} diff --git a/data/software/te/textdna.json b/data/software/te/textdna.json new file mode 100644 index 000000000000..309ae92bdbd5 --- /dev/null +++ b/data/software/te/textdna.json @@ -0,0 +1,15 @@ +{ + "slug": "textdna", + "name": "textDNA", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125523891" + ], + "release_date": "2016-10-10", + "developers": [ + "Danielle N. Szafir" + ], + "licenses": [ + "all rights reserved" + ] +} diff --git a/data/software/te/textecution.json b/data/software/te/textecution.json new file mode 100644 index 000000000000..39f8e8b69a99 --- /dev/null +++ b/data/software/te/textecution.json @@ -0,0 +1,8 @@ +{ + "slug": "textecution", + "name": "Textecution", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7708445" + ] +} diff --git a/data/software/te/textexpander.json b/data/software/te/textexpander.json new file mode 100644 index 000000000000..93a7e3535050 --- /dev/null +++ b/data/software/te/textexpander.json @@ -0,0 +1,8 @@ +{ + "slug": "textexpander", + "name": "TextExpander", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084630" + ] +} diff --git a/data/software/te/textexture.json b/data/software/te/textexture.json new file mode 100644 index 000000000000..3d5b769edf58 --- /dev/null +++ b/data/software/te/textexture.json @@ -0,0 +1,8 @@ +{ + "slug": "textexture", + "name": "Textexture", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084632" + ] +} diff --git a/data/software/te/textflo.json b/data/software/te/textflo.json new file mode 100644 index 000000000000..ab4b449263d2 --- /dev/null +++ b/data/software/te/textflo.json @@ -0,0 +1,8 @@ +{ + "slug": "textflo", + "name": "Textflo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084635" + ] +} diff --git a/data/software/te/textgrid-repository-laboratory.json b/data/software/te/textgrid-repository-laboratory.json new file mode 100644 index 000000000000..380755124fea --- /dev/null +++ b/data/software/te/textgrid-repository-laboratory.json @@ -0,0 +1,8 @@ +{ + "slug": "textgrid-repository-laboratory", + "name": "TextGrid Repository & Laboratory", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084638" + ] +} diff --git a/data/software/te/textimager.json b/data/software/te/textimager.json new file mode 100644 index 000000000000..3b5c09c922c4 --- /dev/null +++ b/data/software/te/textimager.json @@ -0,0 +1,8 @@ +{ + "slug": "textimager", + "name": "TextImager", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084639" + ] +} diff --git a/data/software/te/textometrica.json b/data/software/te/textometrica.json new file mode 100644 index 000000000000..c154cf5c4cd4 --- /dev/null +++ b/data/software/te/textometrica.json @@ -0,0 +1,8 @@ +{ + "slug": "textometrica", + "name": "Textometrica", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084640" + ] +} diff --git a/data/software/te/textpack-v.json b/data/software/te/textpack-v.json new file mode 100644 index 000000000000..b7283d53bd03 --- /dev/null +++ b/data/software/te/textpack-v.json @@ -0,0 +1,8 @@ +{ + "slug": "textpack-v", + "name": "TEXTPACK V", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087742" + ] +} diff --git a/data/software/te/textpresso-q126084641.json b/data/software/te/textpresso-q126084641.json new file mode 100644 index 000000000000..e8beb51f1b1c --- /dev/null +++ b/data/software/te/textpresso-q126084641.json @@ -0,0 +1,8 @@ +{ + "slug": "textpresso-q126084641", + "name": "Textpresso", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084641" + ] +} diff --git a/data/software/te/textpresso.json b/data/software/te/textpresso.json new file mode 100644 index 000000000000..e12dad224c17 --- /dev/null +++ b/data/software/te/textpresso.json @@ -0,0 +1,15 @@ +{ + "slug": "textpresso", + "name": "Textpresso", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106382502" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "licenses": [ + "open-source license" + ] +} diff --git a/data/software/te/textquest.json b/data/software/te/textquest.json new file mode 100644 index 000000000000..28324988d46a --- /dev/null +++ b/data/software/te/textquest.json @@ -0,0 +1,14 @@ +{ + "slug": "textquest", + "name": "TextQuest", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105840134" + ], + "operating_systems": [ + "Microsoft Windows" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/te/textstat-q126087743.json b/data/software/te/textstat-q126087743.json new file mode 100644 index 000000000000..8a934cc8855f --- /dev/null +++ b/data/software/te/textstat-q126087743.json @@ -0,0 +1,8 @@ +{ + "slug": "textstat-q126087743", + "name": "TextSTAT", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087743" + ] +} diff --git a/data/software/te/textstat.json b/data/software/te/textstat.json new file mode 100644 index 000000000000..d37b71ba6cc4 --- /dev/null +++ b/data/software/te/textstat.json @@ -0,0 +1,11 @@ +{ + "slug": "textstat", + "name": "textstat", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q92025916" + ], + "programming_languages": [ + "Python" + ] +} diff --git a/data/software/te/texttree.json b/data/software/te/texttree.json new file mode 100644 index 000000000000..0bd5da278f97 --- /dev/null +++ b/data/software/te/texttree.json @@ -0,0 +1,11 @@ +{ + "slug": "texttree", + "name": "TextTree", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107306949" + ], + "licenses": [ + "Apache Software License 2.0" + ] +} diff --git a/data/software/te/textual-communities.json b/data/software/te/textual-communities.json new file mode 100644 index 000000000000..2b3a1c519646 --- /dev/null +++ b/data/software/te/textual-communities.json @@ -0,0 +1,8 @@ +{ + "slug": "textual-communities", + "name": "Textual Communities", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084642" + ] +} diff --git a/data/software/te/textual-geography-analyzer.json b/data/software/te/textual-geography-analyzer.json new file mode 100644 index 000000000000..d3a513c74353 --- /dev/null +++ b/data/software/te/textual-geography-analyzer.json @@ -0,0 +1,8 @@ +{ + "slug": "textual-geography-analyzer", + "name": "Textual Geography Analyzer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084643" + ] +} diff --git a/data/software/te/texture-maker.json b/data/software/te/texture-maker.json new file mode 100644 index 000000000000..4c1e6d01a2d1 --- /dev/null +++ b/data/software/te/texture-maker.json @@ -0,0 +1,8 @@ +{ + "slug": "texture-maker", + "name": "Texture Maker", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q9357689" + ] +} diff --git a/data/software/tf/tfacet.json b/data/software/tf/tfacet.json new file mode 100644 index 000000000000..6e0aa6787006 --- /dev/null +++ b/data/software/tf/tfacet.json @@ -0,0 +1,8 @@ +{ + "slug": "tfacet", + "name": "tFacet", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084645" + ] +} diff --git a/data/software/th/thaibulksms.json b/data/software/th/thaibulksms.json new file mode 100644 index 000000000000..53dde078c01a --- /dev/null +++ b/data/software/th/thaibulksms.json @@ -0,0 +1,8 @@ +{ + "slug": "thaibulksms", + "name": "ThaiBulkSMS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139322809" + ] +} diff --git a/data/software/th/thales.json b/data/software/th/thales.json new file mode 100644 index 000000000000..76ed33f8ba0a --- /dev/null +++ b/data/software/th/thales.json @@ -0,0 +1,8 @@ +{ + "slug": "thales", + "name": "Thales", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76184379" + ] +} diff --git a/data/software/th/thc-ipv6.json b/data/software/th/thc-ipv6.json new file mode 100644 index 000000000000..36ffa9a100d1 --- /dev/null +++ b/data/software/th/thc-ipv6.json @@ -0,0 +1,8 @@ +{ + "slug": "thc-ipv6", + "name": "thc-ipv6", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975515" + ] +} diff --git a/data/software/th/the-1995-1996-nfl-interactive-yearbook.json b/data/software/th/the-1995-1996-nfl-interactive-yearbook.json new file mode 100644 index 000000000000..15effff7b498 --- /dev/null +++ b/data/software/th/the-1995-1996-nfl-interactive-yearbook.json @@ -0,0 +1,8 @@ +{ + "slug": "the-1995-1996-nfl-interactive-yearbook", + "name": "The 1995/1996 NFL Interactive Yearbook", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138606199" + ] +} diff --git a/data/software/th/the-1995-grolier-multimedia-encyclopedia.json b/data/software/th/the-1995-grolier-multimedia-encyclopedia.json new file mode 100644 index 000000000000..eb5a8867eb94 --- /dev/null +++ b/data/software/th/the-1995-grolier-multimedia-encyclopedia.json @@ -0,0 +1,8 @@ +{ + "slug": "the-1995-grolier-multimedia-encyclopedia", + "name": "The 1995 Grolier Multimedia Encyclopedia", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140321027" + ] +} diff --git a/data/software/th/the-1995-guinness-multimedia-disc-of-records.json b/data/software/th/the-1995-guinness-multimedia-disc-of-records.json new file mode 100644 index 000000000000..79e3656918ce --- /dev/null +++ b/data/software/th/the-1995-guinness-multimedia-disc-of-records.json @@ -0,0 +1,8 @@ +{ + "slug": "the-1995-guinness-multimedia-disc-of-records", + "name": "The 1995 Guinness Multimedia Disc of Records", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140357928" + ] +} diff --git a/data/software/th/the-3d-gamemaker.json b/data/software/th/the-3d-gamemaker.json new file mode 100644 index 000000000000..8dd6fba58e06 --- /dev/null +++ b/data/software/th/the-3d-gamemaker.json @@ -0,0 +1,8 @@ +{ + "slug": "the-3d-gamemaker", + "name": "The 3D Gamemaker", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7711882" + ] +} diff --git a/data/software/th/the-accelrys-enterprise-platform.json b/data/software/th/the-accelrys-enterprise-platform.json new file mode 100644 index 000000000000..be05a13df842 --- /dev/null +++ b/data/software/th/the-accelrys-enterprise-platform.json @@ -0,0 +1,8 @@ +{ + "slug": "the-accelrys-enterprise-platform", + "name": "The Accelrys Enterprise Platform", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7712196" + ] +} diff --git a/data/software/th/the-adventure-pals.json b/data/software/th/the-adventure-pals.json new file mode 100644 index 000000000000..3239f0b8f58c --- /dev/null +++ b/data/software/th/the-adventure-pals.json @@ -0,0 +1,15 @@ +{ + "slug": "the-adventure-pals", + "name": "The Adventure Pals", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q71050042" + ], + "release_date": "2018-04-03", + "developers": [ + "Massive Monster" + ], + "genres": [ + "platformer" + ] +} diff --git a/data/software/th/the-all-seeing-eye.json b/data/software/th/the-all-seeing-eye.json new file mode 100644 index 000000000000..7e22e0041684 --- /dev/null +++ b/data/software/th/the-all-seeing-eye.json @@ -0,0 +1,11 @@ +{ + "slug": "the-all-seeing-eye", + "name": "The All-Seeing Eye", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1059878" + ], + "developers": [ + "Yahoo" + ] +} diff --git a/data/software/th/the-animation-studio.json b/data/software/th/the-animation-studio.json new file mode 100644 index 000000000000..6ec7a8a3e30f --- /dev/null +++ b/data/software/th/the-animation-studio.json @@ -0,0 +1,8 @@ +{ + "slug": "the-animation-studio", + "name": "The Animation Studio", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110127789" + ] +} diff --git a/data/software/th/the-change-lab.json b/data/software/th/the-change-lab.json new file mode 100644 index 000000000000..b1db6bdd2f2e --- /dev/null +++ b/data/software/th/the-change-lab.json @@ -0,0 +1,8 @@ +{ + "slug": "the-change-lab", + "name": "The Change Lab", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084647" + ] +} diff --git a/data/software/th/the-chicago-homer.json b/data/software/th/the-chicago-homer.json new file mode 100644 index 000000000000..9df5a329859d --- /dev/null +++ b/data/software/th/the-chicago-homer.json @@ -0,0 +1,8 @@ +{ + "slug": "the-chicago-homer", + "name": "The Chicago Homer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084648" + ] +} diff --git a/data/software/th/the-drive-ai.json b/data/software/th/the-drive-ai.json new file mode 100644 index 000000000000..cf2fbdf222d6 --- /dev/null +++ b/data/software/th/the-drive-ai.json @@ -0,0 +1,8 @@ +{ + "slug": "the-drive-ai", + "name": "The Drive AI", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139494833" + ] +} diff --git a/data/software/th/the-dude.json b/data/software/th/the-dude.json new file mode 100644 index 000000000000..746556d8f0d0 --- /dev/null +++ b/data/software/th/the-dude.json @@ -0,0 +1,8 @@ +{ + "slug": "the-dude", + "name": "The Dude", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q12058829" + ] +} diff --git a/data/software/th/the-eclipse-integrated-computational-environment.json b/data/software/th/the-eclipse-integrated-computational-environment.json new file mode 100644 index 000000000000..3e6f2dd9776d --- /dev/null +++ b/data/software/th/the-eclipse-integrated-computational-environment.json @@ -0,0 +1,8 @@ +{ + "slug": "the-eclipse-integrated-computational-environment", + "name": "The Eclipse Integrated Computational Environment", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72272924" + ] +} diff --git a/data/software/th/the-elder-scrolls-construction-set.json b/data/software/th/the-elder-scrolls-construction-set.json new file mode 100644 index 000000000000..345c309a2ab1 --- /dev/null +++ b/data/software/th/the-elder-scrolls-construction-set.json @@ -0,0 +1,14 @@ +{ + "slug": "the-elder-scrolls-construction-set", + "name": "The Elder Scrolls Construction Set", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2423520" + ], + "developers": [ + "Bethesda Softworks" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/th/the-ethnograph.json b/data/software/th/the-ethnograph.json new file mode 100644 index 000000000000..6ba13a5419cb --- /dev/null +++ b/data/software/th/the-ethnograph.json @@ -0,0 +1,14 @@ +{ + "slug": "the-ethnograph", + "name": "The Ethnograph", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105229773" + ], + "operating_systems": [ + "Microsoft Windows" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/th/the-field-linguist-s-toolbox.json b/data/software/th/the-field-linguist-s-toolbox.json new file mode 100644 index 000000000000..d3cfaa73f939 --- /dev/null +++ b/data/software/th/the-field-linguist-s-toolbox.json @@ -0,0 +1,8 @@ +{ + "slug": "the-field-linguist-s-toolbox", + "name": "The Field Linguist’s Toolbox", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084650" + ] +} diff --git a/data/software/th/the-geochemist-s-workbench.json b/data/software/th/the-geochemist-s-workbench.json new file mode 100644 index 000000000000..f484c4daf0b7 --- /dev/null +++ b/data/software/th/the-geochemist-s-workbench.json @@ -0,0 +1,14 @@ +{ + "slug": "the-geochemist-s-workbench", + "name": "The Geochemist's Workbench", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7736152" + ], + "developers": [ + "University of Illinois Urbana-Champaign" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/th/the-great-reading-adventure.json b/data/software/th/the-great-reading-adventure.json new file mode 100644 index 000000000000..a1f3faf38782 --- /dev/null +++ b/data/software/th/the-great-reading-adventure.json @@ -0,0 +1,14 @@ +{ + "slug": "the-great-reading-adventure", + "name": "The Great Reading Adventure", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q55314187" + ], + "developers": [ + "Maricopa County Library District" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/th/the-hat-man-shadow-ward.json b/data/software/th/the-hat-man-shadow-ward.json new file mode 100644 index 000000000000..db4114a522e8 --- /dev/null +++ b/data/software/th/the-hat-man-shadow-ward.json @@ -0,0 +1,14 @@ +{ + "slug": "the-hat-man-shadow-ward", + "name": "The Hat Man: Shadow Ward", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q97362501" + ], + "release_date": "2016-06-10", + "genres": [ + "action game", + "adventure video game", + "action-adventure game" + ] +} diff --git a/data/software/th/the-last-one.json b/data/software/th/the-last-one.json new file mode 100644 index 000000000000..1f85f740fe64 --- /dev/null +++ b/data/software/th/the-last-one.json @@ -0,0 +1,8 @@ +{ + "slug": "the-last-one", + "name": "The Last One", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7745912" + ] +} diff --git a/data/software/th/the-librarian.json b/data/software/th/the-librarian.json new file mode 100644 index 000000000000..85ad2cb1312f --- /dev/null +++ b/data/software/th/the-librarian.json @@ -0,0 +1,8 @@ +{ + "slug": "the-librarian", + "name": "The Librarian", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121879183" + ] +} diff --git a/data/software/th/the-linkup.json b/data/software/th/the-linkup.json new file mode 100644 index 000000000000..9bbb0a5ddef8 --- /dev/null +++ b/data/software/th/the-linkup.json @@ -0,0 +1,11 @@ +{ + "slug": "the-linkup", + "name": "The Linkup", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7747443" + ], + "developers": [ + "Nirvanix" + ] +} diff --git a/data/software/th/the-macro-etymological-analyzer.json b/data/software/th/the-macro-etymological-analyzer.json new file mode 100644 index 000000000000..383008b2c24e --- /dev/null +++ b/data/software/th/the-macro-etymological-analyzer.json @@ -0,0 +1,8 @@ +{ + "slug": "the-macro-etymological-analyzer", + "name": "The Macro-Etymological Analyzer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087744" + ] +} diff --git a/data/software/th/the-major-bbs.json b/data/software/th/the-major-bbs.json new file mode 100644 index 000000000000..a42b7b2aa0d6 --- /dev/null +++ b/data/software/th/the-major-bbs.json @@ -0,0 +1,14 @@ +{ + "slug": "the-major-bbs", + "name": "The Major BBS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7749683" + ], + "developers": [ + "Tim Stryker" + ], + "programming_languages": [ + "Borland Turbo C" + ] +} diff --git a/data/software/th/the-marvellous-miss-take.json b/data/software/th/the-marvellous-miss-take.json new file mode 100644 index 000000000000..2078989cb51d --- /dev/null +++ b/data/software/th/the-marvellous-miss-take.json @@ -0,0 +1,12 @@ +{ + "slug": "the-marvellous-miss-take", + "name": "The Marvellous Miss Take", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q71054720" + ], + "release_date": "2014-11-20", + "genres": [ + "stealth game" + ] +} diff --git a/data/software/th/the-networked-corpus.json b/data/software/th/the-networked-corpus.json new file mode 100644 index 000000000000..a0b951c294c2 --- /dev/null +++ b/data/software/th/the-networked-corpus.json @@ -0,0 +1,8 @@ +{ + "slug": "the-networked-corpus", + "name": "The Networked Corpus", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087746" + ] +} diff --git a/data/software/th/the-nooj-kiswahili-module.json b/data/software/th/the-nooj-kiswahili-module.json new file mode 100644 index 000000000000..b29d11ca2e0c --- /dev/null +++ b/data/software/th/the-nooj-kiswahili-module.json @@ -0,0 +1,15 @@ +{ + "slug": "the-nooj-kiswahili-module", + "name": "THE NooJ KISWAHILI MODULE", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136647497" + ], + "release_date": "2017-01-01", + "developers": [ + "Mathieu Roy" + ], + "publishers": [ + "GitHub" + ] +} diff --git a/data/software/th/the-note-processor.json b/data/software/th/the-note-processor.json new file mode 100644 index 000000000000..f75e750da09e --- /dev/null +++ b/data/software/th/the-note-processor.json @@ -0,0 +1,8 @@ +{ + "slug": "the-note-processor", + "name": "The Note Processor", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139759791" + ] +} diff --git a/data/software/th/the-old-city-leviathan.json b/data/software/th/the-old-city-leviathan.json new file mode 100644 index 000000000000..f05d2dff4cee --- /dev/null +++ b/data/software/th/the-old-city-leviathan.json @@ -0,0 +1,9 @@ +{ + "slug": "the-old-city-leviathan", + "name": "The Old City: Leviathan", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q97362276" + ], + "release_date": "2014-12-03" +} diff --git a/data/software/th/the-open-network.json b/data/software/th/the-open-network.json new file mode 100644 index 000000000000..a25540766652 --- /dev/null +++ b/data/software/th/the-open-network.json @@ -0,0 +1,12 @@ +{ + "slug": "the-open-network", + "name": "The Open Network", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q53252126" + ], + "licenses": [ + "GNU Library General Public License, version 2.0", + "GNU General Public License, version 2.0" + ] +} diff --git a/data/software/th/the-orchestra.json b/data/software/th/the-orchestra.json new file mode 100644 index 000000000000..0ed894913b76 --- /dev/null +++ b/data/software/th/the-orchestra.json @@ -0,0 +1,12 @@ +{ + "slug": "the-orchestra", + "name": "The Orchestra", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18646577" + ], + "release_date": "2012-12-06", + "developers": [ + "Touch Press" + ] +} diff --git a/data/software/th/the-outliner-of-giants.json b/data/software/th/the-outliner-of-giants.json new file mode 100644 index 000000000000..1359a9cee426 --- /dev/null +++ b/data/software/th/the-outliner-of-giants.json @@ -0,0 +1,20 @@ +{ + "slug": "the-outliner-of-giants", + "name": "The Outliner of Giants", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q23894789" + ], + "developers": [ + "Angelic Informatics LTD" + ], + "operating_systems": [ + "iOS", + "macOS", + "Microsoft Windows" + ], + "genres": [ + "web application", + "office suite" + ] +} diff --git a/data/software/th/the-palace.json b/data/software/th/the-palace.json new file mode 100644 index 000000000000..1504bdb6fc55 --- /dev/null +++ b/data/software/th/the-palace.json @@ -0,0 +1,11 @@ +{ + "slug": "the-palace", + "name": "The Palace", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1906292" + ], + "developers": [ + "Time Warner Interactive" + ] +} diff --git a/data/software/th/the-pope-app.json b/data/software/th/the-pope-app.json new file mode 100644 index 000000000000..2066d633cf03 --- /dev/null +++ b/data/software/th/the-pope-app.json @@ -0,0 +1,8 @@ +{ + "slug": "the-pope-app", + "name": "The Pope App", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18209746" + ] +} diff --git a/data/software/th/the-print-shop-premier-edition.json b/data/software/th/the-print-shop-premier-edition.json new file mode 100644 index 000000000000..1c5325ab933c --- /dev/null +++ b/data/software/th/the-print-shop-premier-edition.json @@ -0,0 +1,12 @@ +{ + "slug": "the-print-shop-premier-edition", + "name": "The Print Shop Premier Edition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113196671" + ], + "release_date": "1997-01-01", + "developers": [ + "Broderbund" + ] +} diff --git a/data/software/th/the-print-shop.json b/data/software/th/the-print-shop.json new file mode 100644 index 000000000000..b4951d4368f9 --- /dev/null +++ b/data/software/th/the-print-shop.json @@ -0,0 +1,12 @@ +{ + "slug": "the-print-shop", + "name": "The Print Shop", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7758362" + ], + "release_date": "1984-01-01", + "developers": [ + "Broderbund" + ] +} diff --git a/data/software/th/the-proteolysis-map.json b/data/software/th/the-proteolysis-map.json new file mode 100644 index 000000000000..6204d627bb03 --- /dev/null +++ b/data/software/th/the-proteolysis-map.json @@ -0,0 +1,11 @@ +{ + "slug": "the-proteolysis-map", + "name": "The Proteolysis Map", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7758615" + ], + "developers": [ + "Sanford Burnham Prebys Medical Discovery Institute" + ] +} diff --git a/data/software/th/the-right-stuff.json b/data/software/th/the-right-stuff.json new file mode 100644 index 000000000000..d7ca9a2b9ac0 --- /dev/null +++ b/data/software/th/the-right-stuff.json @@ -0,0 +1,8 @@ +{ + "slug": "the-right-stuff", + "name": "The Right Stuff", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115517672" + ] +} diff --git a/data/software/th/the-rossio-vocabularies.json b/data/software/th/the-rossio-vocabularies.json new file mode 100644 index 000000000000..57036d35a4fe --- /dev/null +++ b/data/software/th/the-rossio-vocabularies.json @@ -0,0 +1,8 @@ +{ + "slug": "the-rossio-vocabularies", + "name": "The ROSSIO vocabularies", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084651" + ] +} diff --git a/data/software/th/the-scandroid-1-1.json b/data/software/th/the-scandroid-1-1.json new file mode 100644 index 000000000000..89ee4802fc2b --- /dev/null +++ b/data/software/th/the-scandroid-1-1.json @@ -0,0 +1,8 @@ +{ + "slug": "the-scandroid-1-1", + "name": "The Scandroid 1.1", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087747" + ] +} diff --git a/data/software/th/the-summit-open-source-development-group.json b/data/software/th/the-summit-open-source-development-group.json new file mode 100644 index 000000000000..a57ae19cd04c --- /dev/null +++ b/data/software/th/the-summit-open-source-development-group.json @@ -0,0 +1,8 @@ +{ + "slug": "the-summit-open-source-development-group", + "name": "The Summit Open Source Development Group", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7767292" + ] +} diff --git a/data/software/th/the-uniform-server.json b/data/software/th/the-uniform-server.json new file mode 100644 index 000000000000..d43bfbf4beaf --- /dev/null +++ b/data/software/th/the-uniform-server.json @@ -0,0 +1,8 @@ +{ + "slug": "the-uniform-server", + "name": "The Uniform Server", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q368253" + ] +} diff --git a/data/software/th/the-unscrambler.json b/data/software/th/the-unscrambler.json new file mode 100644 index 000000000000..d3300e249873 --- /dev/null +++ b/data/software/th/the-unscrambler.json @@ -0,0 +1,8 @@ +{ + "slug": "the-unscrambler", + "name": "The Unscrambler", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1978628" + ] +} diff --git a/data/software/th/the-world-browser.json b/data/software/th/the-world-browser.json new file mode 100644 index 000000000000..6be4c0d2ad0e --- /dev/null +++ b/data/software/th/the-world-browser.json @@ -0,0 +1,8 @@ +{ + "slug": "the-world-browser", + "name": "The World Browser", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10869057" + ] +} diff --git a/data/software/th/the-world-of-robert-burns.json b/data/software/th/the-world-of-robert-burns.json new file mode 100644 index 000000000000..954d0c6d6e41 --- /dev/null +++ b/data/software/th/the-world-of-robert-burns.json @@ -0,0 +1,11 @@ +{ + "slug": "the-world-of-robert-burns", + "name": "The World of Robert Burns", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7776157" + ], + "operating_systems": [ + "RISC OS" + ] +} diff --git a/data/software/th/thebrain.json b/data/software/th/thebrain.json new file mode 100644 index 000000000000..815c9cbdecce --- /dev/null +++ b/data/software/th/thebrain.json @@ -0,0 +1,14 @@ +{ + "slug": "thebrain", + "name": "TheBrain", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7170468" + ], + "developers": [ + "TheBrain Technologies" + ], + "operating_systems": [ + "cross-platform" + ] +} diff --git a/data/software/th/theia.json b/data/software/th/theia.json new file mode 100644 index 000000000000..005f044a9d53 --- /dev/null +++ b/data/software/th/theia.json @@ -0,0 +1,11 @@ +{ + "slug": "theia", + "name": "Theia", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139594865" + ], + "developers": [ + "Spare Parts 3D" + ] +} diff --git a/data/software/th/themas-thesaurus-management-system.json b/data/software/th/themas-thesaurus-management-system.json new file mode 100644 index 000000000000..4f574fcc9d7a --- /dev/null +++ b/data/software/th/themas-thesaurus-management-system.json @@ -0,0 +1,8 @@ +{ + "slug": "themas-thesaurus-management-system", + "name": "Themas - Thesaurus Management System", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087745" + ] +} diff --git a/data/software/th/themeswitcher-pro.json b/data/software/th/themeswitcher-pro.json new file mode 100644 index 000000000000..d3335e91432f --- /dev/null +++ b/data/software/th/themeswitcher-pro.json @@ -0,0 +1,8 @@ +{ + "slug": "themeswitcher-pro", + "name": "ThemeSwitcher Pro", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140389050" + ] +} diff --git a/data/software/th/theodolite.json b/data/software/th/theodolite.json new file mode 100644 index 000000000000..e5cc63c5a426 --- /dev/null +++ b/data/software/th/theodolite.json @@ -0,0 +1,11 @@ +{ + "slug": "theodolite", + "name": "theodolite", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127485685" + ], + "licenses": [ + "Apache Software License 2.0" + ] +} diff --git a/data/software/th/thermald.json b/data/software/th/thermald.json new file mode 100644 index 000000000000..2b6035f1775d --- /dev/null +++ b/data/software/th/thermald.json @@ -0,0 +1,11 @@ +{ + "slug": "thermald", + "name": "thermald", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63064928" + ], + "licenses": [ + "GNU General Public License, version 2.0 or later" + ] +} diff --git a/data/software/th/thermorawfileparser.json b/data/software/th/thermorawfileparser.json new file mode 100644 index 000000000000..440241691181 --- /dev/null +++ b/data/software/th/thermorawfileparser.json @@ -0,0 +1,8 @@ +{ + "slug": "thermorawfileparser", + "name": "ThermoRawFileParser", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112189106" + ] +} diff --git a/data/software/th/thesky.json b/data/software/th/thesky.json new file mode 100644 index 000000000000..a1fedffc6bd4 --- /dev/null +++ b/data/software/th/thesky.json @@ -0,0 +1,14 @@ +{ + "slug": "thesky", + "name": "TheSky", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3519678" + ], + "developers": [ + "Software Bisque" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/th/theunfollower.json b/data/software/th/theunfollower.json new file mode 100644 index 000000000000..17c82774e6f6 --- /dev/null +++ b/data/software/th/theunfollower.json @@ -0,0 +1,11 @@ +{ + "slug": "theunfollower", + "name": "TheUnfollower", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140363903" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/th/things-3-macos.json b/data/software/th/things-3-macos.json new file mode 100644 index 000000000000..c35ff136511b --- /dev/null +++ b/data/software/th/things-3-macos.json @@ -0,0 +1,11 @@ +{ + "slug": "things-3-macos", + "name": "Things 3 (macOS)", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117429306" + ], + "developers": [ + "Cultured Code" + ] +} diff --git a/data/software/th/things-3.json b/data/software/th/things-3.json new file mode 100644 index 000000000000..edd74b116aac --- /dev/null +++ b/data/software/th/things-3.json @@ -0,0 +1,8 @@ +{ + "slug": "things-3", + "name": "Things 3", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125886817" + ] +} diff --git a/data/software/th/thinkfinger.json b/data/software/th/thinkfinger.json new file mode 100644 index 000000000000..d314c8108f85 --- /dev/null +++ b/data/software/th/thinkfinger.json @@ -0,0 +1,8 @@ +{ + "slug": "thinkfinger", + "name": "thinkfinger", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065612" + ] +} diff --git a/data/software/th/thinkfree-office.json b/data/software/th/thinkfree-office.json new file mode 100644 index 000000000000..a3919dab9427 --- /dev/null +++ b/data/software/th/thinkfree-office.json @@ -0,0 +1,13 @@ +{ + "slug": "thinkfree-office", + "name": "Thinkfree Office", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126519801" + ], + "operating_systems": [ + "cross-platform", + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/software/th/thinkoffice.json b/data/software/th/thinkoffice.json new file mode 100644 index 000000000000..c19011eeb72e --- /dev/null +++ b/data/software/th/thinkoffice.json @@ -0,0 +1,8 @@ +{ + "slug": "thinkoffice", + "name": "ThinkOffice", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q66091280" + ] +} diff --git a/data/software/th/thinkport-annotator.json b/data/software/th/thinkport-annotator.json new file mode 100644 index 000000000000..03097e2edeee --- /dev/null +++ b/data/software/th/thinkport-annotator.json @@ -0,0 +1,8 @@ +{ + "slug": "thinkport-annotator", + "name": "Thinkport Annotator", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084653" + ] +} diff --git a/data/software/th/thinkvantage-technologies.json b/data/software/th/thinkvantage-technologies.json new file mode 100644 index 000000000000..1d8c8267e73b --- /dev/null +++ b/data/software/th/thinkvantage-technologies.json @@ -0,0 +1,11 @@ +{ + "slug": "thinkvantage-technologies", + "name": "ThinkVantage Technologies", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7784464" + ], + "developers": [ + "IBM" + ] +} diff --git a/data/software/th/thinlinc.json b/data/software/th/thinlinc.json new file mode 100644 index 000000000000..d465481fa517 --- /dev/null +++ b/data/software/th/thinlinc.json @@ -0,0 +1,8 @@ +{ + "slug": "thinlinc", + "name": "ThinLinc", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7784248" + ] +} diff --git a/data/software/th/third-voice.json b/data/software/th/third-voice.json new file mode 100644 index 000000000000..deccc42570cb --- /dev/null +++ b/data/software/th/third-voice.json @@ -0,0 +1,8 @@ +{ + "slug": "third-voice", + "name": "Third Voice", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7784998" + ] +} diff --git a/data/software/th/thiruvananthapuram-city-police-mobile-app.json b/data/software/th/thiruvananthapuram-city-police-mobile-app.json new file mode 100644 index 000000000000..4e95d61fc701 --- /dev/null +++ b/data/software/th/thiruvananthapuram-city-police-mobile-app.json @@ -0,0 +1,11 @@ +{ + "slug": "thiruvananthapuram-city-police-mobile-app", + "name": "Thiruvananthapuram City Police Mobile App", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22909398" + ], + "developers": [ + "UST" + ] +} diff --git a/data/software/th/thomson-reuters-messenger.json b/data/software/th/thomson-reuters-messenger.json new file mode 100644 index 000000000000..a1ec42ceaf9c --- /dev/null +++ b/data/software/th/thomson-reuters-messenger.json @@ -0,0 +1,15 @@ +{ + "slug": "thomson-reuters-messenger", + "name": "Thomson Reuters Messenger", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7795897" + ], + "release_date": "2002-11-01", + "developers": [ + "Thomson Reuters" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/th/thor.json b/data/software/th/thor.json new file mode 100644 index 000000000000..925e11a4cfb1 --- /dev/null +++ b/data/software/th/thor.json @@ -0,0 +1,8 @@ +{ + "slug": "thor", + "name": "Thor", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130283836" + ] +} diff --git a/data/software/th/thorium-reader.json b/data/software/th/thorium-reader.json new file mode 100644 index 000000000000..5b1d40c56c0b --- /dev/null +++ b/data/software/th/thorium-reader.json @@ -0,0 +1,11 @@ +{ + "slug": "thorium-reader", + "name": "Thorium Reader", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131829806" + ], + "licenses": [ + "3-clause BSD License" + ] +} diff --git a/data/software/th/thorsten.json b/data/software/th/thorsten.json new file mode 100644 index 000000000000..49b368f0eb62 --- /dev/null +++ b/data/software/th/thorsten.json @@ -0,0 +1,8 @@ +{ + "slug": "thorsten", + "name": "Thorsten", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106525522" + ] +} diff --git a/data/software/th/threadsafe.json b/data/software/th/threadsafe.json new file mode 100644 index 000000000000..b4889c9f571f --- /dev/null +++ b/data/software/th/threadsafe.json @@ -0,0 +1,8 @@ +{ + "slug": "threadsafe", + "name": "ThreadSafe", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17183972" + ] +} diff --git a/data/software/th/threatmodeler.json b/data/software/th/threatmodeler.json new file mode 100644 index 000000000000..36a0a1da8ab1 --- /dev/null +++ b/data/software/th/threatmodeler.json @@ -0,0 +1,8 @@ +{ + "slug": "threatmodeler", + "name": "ThreatModeler", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124307046" + ] +} diff --git a/data/software/th/three20.json b/data/software/th/three20.json new file mode 100644 index 000000000000..4fe894aaa502 --- /dev/null +++ b/data/software/th/three20.json @@ -0,0 +1,8 @@ +{ + "slug": "three20", + "name": "Three20", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16251910" + ] +} diff --git a/data/software/th/thrust.json b/data/software/th/thrust.json new file mode 100644 index 000000000000..cd9dd54a3f76 --- /dev/null +++ b/data/software/th/thrust.json @@ -0,0 +1,11 @@ +{ + "slug": "thrust", + "name": "thrust", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120652944" + ], + "developers": [ + "Jared Hoberock" + ] +} diff --git a/data/software/th/thumbor.json b/data/software/th/thumbor.json new file mode 100644 index 000000000000..8dacd6a4628d --- /dev/null +++ b/data/software/th/thumbor.json @@ -0,0 +1,8 @@ +{ + "slug": "thumbor", + "name": "Thumbor", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134540936" + ] +} diff --git a/data/software/th/thumbsplus.json b/data/software/th/thumbsplus.json new file mode 100644 index 000000000000..ef06ac0dc40f --- /dev/null +++ b/data/software/th/thumbsplus.json @@ -0,0 +1,8 @@ +{ + "slug": "thumbsplus", + "name": "ThumbsPlus", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2429858" + ] +} diff --git a/data/software/th/thunder.json b/data/software/th/thunder.json new file mode 100644 index 000000000000..1db5e5ca9672 --- /dev/null +++ b/data/software/th/thunder.json @@ -0,0 +1,8 @@ +{ + "slug": "thunder", + "name": "Thunder", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1688068" + ] +} diff --git a/data/software/th/thunderhawk.json b/data/software/th/thunderhawk.json new file mode 100644 index 000000000000..a58abde743fb --- /dev/null +++ b/data/software/th/thunderhawk.json @@ -0,0 +1,12 @@ +{ + "slug": "thunderhawk", + "name": "ThunderHawk", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7798894" + ], + "release_date": "2001-12-01", + "developers": [ + "Bitstream Inc." + ] +} diff --git a/data/software/th/thxchat.json b/data/software/th/thxchat.json new file mode 100644 index 000000000000..7a28de9f1041 --- /dev/null +++ b/data/software/th/thxchat.json @@ -0,0 +1,8 @@ +{ + "slug": "thxchat", + "name": "ThXChat", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139387043" + ] +} diff --git a/data/software/ti/ti-interactive.json b/data/software/ti/ti-interactive.json new file mode 100644 index 000000000000..c3bf2b45246e --- /dev/null +++ b/data/software/ti/ti-interactive.json @@ -0,0 +1,11 @@ +{ + "slug": "ti-interactive", + "name": "TI InterActive!", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1738539" + ], + "developers": [ + "Texas Instruments" + ] +} diff --git a/data/software/ti/ti-starterware.json b/data/software/ti/ti-starterware.json new file mode 100644 index 000000000000..638453dfb772 --- /dev/null +++ b/data/software/ti/ti-starterware.json @@ -0,0 +1,8 @@ +{ + "slug": "ti-starterware", + "name": "TI StarterWare", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7670479" + ] +} diff --git a/data/software/ti/tianamo.json b/data/software/ti/tianamo.json new file mode 100644 index 000000000000..25638d1f89bb --- /dev/null +++ b/data/software/ti/tianamo.json @@ -0,0 +1,8 @@ +{ + "slug": "tianamo", + "name": "Tianamo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084654" + ] +} diff --git a/data/software/ti/tibco-hawk.json b/data/software/ti/tibco-hawk.json new file mode 100644 index 000000000000..18a88e936508 --- /dev/null +++ b/data/software/ti/tibco-hawk.json @@ -0,0 +1,11 @@ +{ + "slug": "tibco-hawk", + "name": "TIBCO Hawk", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7670352" + ], + "developers": [ + "Tibco Software" + ] +} diff --git a/data/software/ti/tibco-spotfire-analytics.json b/data/software/ti/tibco-spotfire-analytics.json new file mode 100644 index 000000000000..a49008cc1a01 --- /dev/null +++ b/data/software/ti/tibco-spotfire-analytics.json @@ -0,0 +1,14 @@ +{ + "slug": "tibco-spotfire-analytics", + "name": "TIBCO Spotfire Analytics", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1770325" + ], + "developers": [ + "Tibco Software" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/ti/tick.json b/data/software/ti/tick.json new file mode 100644 index 000000000000..221ffa9a1df5 --- /dev/null +++ b/data/software/ti/tick.json @@ -0,0 +1,12 @@ +{ + "slug": "tick", + "name": "Tick", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18394343" + ], + "release_date": "2006-01-01", + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/ti/tickit.json b/data/software/ti/tickit.json new file mode 100644 index 000000000000..b687a633bfa0 --- /dev/null +++ b/data/software/ti/tickit.json @@ -0,0 +1,8 @@ +{ + "slug": "tickit", + "name": "TickIT", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2840284" + ] +} diff --git a/data/software/ti/tictok.json b/data/software/ti/tictok.json new file mode 100644 index 000000000000..d82ccb0a1486 --- /dev/null +++ b/data/software/ti/tictok.json @@ -0,0 +1,8 @@ +{ + "slug": "tictok", + "name": "Tictok", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8566404" + ] +} diff --git a/data/software/ti/tidyverse.json b/data/software/ti/tidyverse.json new file mode 100644 index 000000000000..38b08216d2cb --- /dev/null +++ b/data/software/ti/tidyverse.json @@ -0,0 +1,18 @@ +{ + "slug": "tidyverse", + "name": "tidyverse", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60755534" + ], + "developers": [ + "Jennifer Bryan", + "Hadley Wickham" + ], + "programming_languages": [ + "R" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/ti/tidywikidatar.json b/data/software/ti/tidywikidatar.json new file mode 100644 index 000000000000..75c35869d97b --- /dev/null +++ b/data/software/ti/tidywikidatar.json @@ -0,0 +1,11 @@ +{ + "slug": "tidywikidatar", + "name": "tidywikidatar", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111204484" + ], + "programming_languages": [ + "R" + ] +} diff --git a/data/software/ti/tigase.json b/data/software/ti/tigase.json new file mode 100644 index 000000000000..cfaf8e32367c --- /dev/null +++ b/data/software/ti/tigase.json @@ -0,0 +1,11 @@ +{ + "slug": "tigase", + "name": "Tigase", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q13420032" + ], + "programming_languages": [ + "Java" + ] +} diff --git a/data/software/ti/tigerstripe.json b/data/software/ti/tigerstripe.json new file mode 100644 index 000000000000..8cec16975173 --- /dev/null +++ b/data/software/ti/tigerstripe.json @@ -0,0 +1,8 @@ +{ + "slug": "tigerstripe", + "name": "Tigerstripe", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76178030" + ] +} diff --git a/data/software/ti/tigertext.json b/data/software/ti/tigertext.json new file mode 100644 index 000000000000..3ba6db3df0bc --- /dev/null +++ b/data/software/ti/tigertext.json @@ -0,0 +1,11 @@ +{ + "slug": "tigertext", + "name": "TigerText", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7801350" + ], + "operating_systems": [ + "iOS" + ] +} diff --git a/data/software/ti/tiklist.json b/data/software/ti/tiklist.json new file mode 100644 index 000000000000..6871ea961a10 --- /dev/null +++ b/data/software/ti/tiklist.json @@ -0,0 +1,11 @@ +{ + "slug": "tiklist", + "name": "Tiklist", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138388441" + ], + "developers": [ + "TaxiApps" + ] +} diff --git a/data/software/ti/tiktapdown.json b/data/software/ti/tiktapdown.json new file mode 100644 index 000000000000..21d50d1d60b0 --- /dev/null +++ b/data/software/ti/tiktapdown.json @@ -0,0 +1,8 @@ +{ + "slug": "tiktapdown", + "name": "TikTapDown", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140322291" + ] +} diff --git a/data/software/ti/tila-app.json b/data/software/ti/tila-app.json new file mode 100644 index 000000000000..2ae8a01c4465 --- /dev/null +++ b/data/software/ti/tila-app.json @@ -0,0 +1,15 @@ +{ + "slug": "tila-app", + "name": "TILA App", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115800460" + ], + "release_date": "2021-01-01", + "operating_systems": [ + "iOS" + ], + "programming_languages": [ + "React Native" + ] +} diff --git a/data/software/ti/tile-text-image-linking-environment.json b/data/software/ti/tile-text-image-linking-environment.json new file mode 100644 index 000000000000..002475cd784a --- /dev/null +++ b/data/software/ti/tile-text-image-linking-environment.json @@ -0,0 +1,8 @@ +{ + "slug": "tile-text-image-linking-environment", + "name": "TILE (Text Image Linking Environment)", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084656" + ] +} diff --git a/data/software/ti/tilemill.json b/data/software/ti/tilemill.json new file mode 100644 index 000000000000..c8218c45273b --- /dev/null +++ b/data/software/ti/tilemill.json @@ -0,0 +1,11 @@ +{ + "slug": "tilemill", + "name": "TileMill", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084655" + ], + "developers": [ + "Mapbox" + ] +} diff --git a/data/software/ti/tilt-brush.json b/data/software/ti/tilt-brush.json new file mode 100644 index 000000000000..ae7a8e666b9a --- /dev/null +++ b/data/software/ti/tilt-brush.json @@ -0,0 +1,15 @@ +{ + "slug": "tilt-brush", + "name": "Tilt Brush", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q23795684" + ], + "release_date": "2016-04-05", + "developers": [ + "Google" + ], + "licenses": [ + "Apache Software License 2.0" + ] +} diff --git a/data/software/ti/timberwolf.json b/data/software/ti/timberwolf.json new file mode 100644 index 000000000000..99983d19a2ee --- /dev/null +++ b/data/software/ti/timberwolf.json @@ -0,0 +1,12 @@ +{ + "slug": "timberwolf", + "name": "Timberwolf", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2394363" + ], + "release_date": "2010-06-09", + "operating_systems": [ + "AmigaOS 4" + ] +} diff --git a/data/software/ti/timbuktu.json b/data/software/ti/timbuktu.json new file mode 100644 index 000000000000..645506b3e3d0 --- /dev/null +++ b/data/software/ti/timbuktu.json @@ -0,0 +1,11 @@ +{ + "slug": "timbuktu", + "name": "Timbuktu", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7804765" + ], + "developers": [ + "Arris Group" + ] +} diff --git a/data/software/ti/time-bomb.json b/data/software/ti/time-bomb.json new file mode 100644 index 000000000000..7cc66d5e564c --- /dev/null +++ b/data/software/ti/time-bomb.json @@ -0,0 +1,8 @@ +{ + "slug": "time-bomb", + "name": "Time bomb", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7805276" + ] +} diff --git a/data/software/ti/time-doctor.json b/data/software/ti/time-doctor.json new file mode 100644 index 000000000000..305811eabe56 --- /dev/null +++ b/data/software/ti/time-doctor.json @@ -0,0 +1,16 @@ +{ + "slug": "time-doctor", + "name": "Time Doctor", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25303427" + ], + "developers": [ + "Time Doctor" + ], + "operating_systems": [ + "iOS", + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/software/ti/time-matters.json b/data/software/ti/time-matters.json new file mode 100644 index 000000000000..2b0e6da8d168 --- /dev/null +++ b/data/software/ti/time-matters.json @@ -0,0 +1,15 @@ +{ + "slug": "time-matters", + "name": "Time Matters", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7805054" + ], + "release_date": "1989-01-01", + "developers": [ + "LexisNexis" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/ti/timebridge.json b/data/software/ti/timebridge.json new file mode 100644 index 000000000000..34cfc3c2ba85 --- /dev/null +++ b/data/software/ti/timebridge.json @@ -0,0 +1,8 @@ +{ + "slug": "timebridge", + "name": "TimeBridge", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7804845" + ] +} diff --git a/data/software/ti/timeclock-plus.json b/data/software/ti/timeclock-plus.json new file mode 100644 index 000000000000..a545427c78a8 --- /dev/null +++ b/data/software/ti/timeclock-plus.json @@ -0,0 +1,11 @@ +{ + "slug": "timeclock-plus", + "name": "TimeClock Plus", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7804847" + ], + "developers": [ + "Data Management Inc." + ] +} diff --git a/data/software/ti/timeflow.json b/data/software/ti/timeflow.json new file mode 100644 index 000000000000..c61f567ee1b1 --- /dev/null +++ b/data/software/ti/timeflow.json @@ -0,0 +1,8 @@ +{ + "slug": "timeflow", + "name": "Timeflow", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084657" + ] +} diff --git a/data/software/ti/timefold.json b/data/software/ti/timefold.json new file mode 100644 index 000000000000..7081348af2bb --- /dev/null +++ b/data/software/ti/timefold.json @@ -0,0 +1,8 @@ +{ + "slug": "timefold", + "name": "Timefold", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135907506" + ] +} diff --git a/data/software/ti/timeglider.json b/data/software/ti/timeglider.json new file mode 100644 index 000000000000..f18c0ce3d5e4 --- /dev/null +++ b/data/software/ti/timeglider.json @@ -0,0 +1,8 @@ +{ + "slug": "timeglider", + "name": "TimeGlider", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084658" + ] +} diff --git a/data/software/ti/timeline-js.json b/data/software/ti/timeline-js.json new file mode 100644 index 000000000000..103e642f737f --- /dev/null +++ b/data/software/ti/timeline-js.json @@ -0,0 +1,8 @@ +{ + "slug": "timeline-js", + "name": "Timeline JS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084660" + ] +} diff --git a/data/software/ti/timelinecurator.json b/data/software/ti/timelinecurator.json new file mode 100644 index 000000000000..48d2a3c03aa3 --- /dev/null +++ b/data/software/ti/timelinecurator.json @@ -0,0 +1,8 @@ +{ + "slug": "timelinecurator", + "name": "TimeLineCurator", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084659" + ] +} diff --git a/data/software/ti/timeliner.json b/data/software/ti/timeliner.json new file mode 100644 index 000000000000..dad6a322c104 --- /dev/null +++ b/data/software/ti/timeliner.json @@ -0,0 +1,14 @@ +{ + "slug": "timeliner", + "name": "Timeliner", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139378729" + ], + "developers": [ + "Noam Tryber" + ], + "genres": [ + "project management software" + ] +} diff --git a/data/software/ti/timemapper.json b/data/software/ti/timemapper.json new file mode 100644 index 000000000000..f6a111d9003b --- /dev/null +++ b/data/software/ti/timemapper.json @@ -0,0 +1,8 @@ +{ + "slug": "timemapper", + "name": "TimeMapper", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084661" + ] +} diff --git a/data/software/ti/timenavigator.json b/data/software/ti/timenavigator.json new file mode 100644 index 000000000000..0bad369e0bbf --- /dev/null +++ b/data/software/ti/timenavigator.json @@ -0,0 +1,8 @@ +{ + "slug": "timenavigator", + "name": "TIMEnavigator", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2868946" + ] +} diff --git a/data/software/ti/timerime.json b/data/software/ti/timerime.json new file mode 100644 index 000000000000..0e09deb70ff8 --- /dev/null +++ b/data/software/ti/timerime.json @@ -0,0 +1,8 @@ +{ + "slug": "timerime", + "name": "TimeRime", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084662" + ] +} diff --git a/data/software/ti/timesheet-js.json b/data/software/ti/timesheet-js.json new file mode 100644 index 000000000000..efaea23d9201 --- /dev/null +++ b/data/software/ti/timesheet-js.json @@ -0,0 +1,8 @@ +{ + "slug": "timesheet-js", + "name": "timesheet.js", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084663" + ] +} diff --git a/data/software/ti/timetiger.json b/data/software/ti/timetiger.json new file mode 100644 index 000000000000..1fc609dbef86 --- /dev/null +++ b/data/software/ti/timetiger.json @@ -0,0 +1,11 @@ +{ + "slug": "timetiger", + "name": "TimeTiger", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7804858" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/ti/timetracker-lx.json b/data/software/ti/timetracker-lx.json new file mode 100644 index 000000000000..c4b8b00724a0 --- /dev/null +++ b/data/software/ti/timetracker-lx.json @@ -0,0 +1,11 @@ +{ + "slug": "timetracker-lx", + "name": "TimeTracker/LX", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121672438" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/ti/timetree.json b/data/software/ti/timetree.json new file mode 100644 index 000000000000..3a6eca4ca400 --- /dev/null +++ b/data/software/ti/timetree.json @@ -0,0 +1,11 @@ +{ + "slug": "timetree", + "name": "TimeTree", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17126740" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/ti/timeworks-publisher.json b/data/software/ti/timeworks-publisher.json new file mode 100644 index 000000000000..002071e457f0 --- /dev/null +++ b/data/software/ti/timeworks-publisher.json @@ -0,0 +1,14 @@ +{ + "slug": "timeworks-publisher", + "name": "Timeworks Publisher", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7806624" + ], + "developers": [ + "GST Computer Systems" + ], + "publishers": [ + "Timeworks" + ] +} diff --git a/data/software/ti/tina.json b/data/software/ti/tina.json new file mode 100644 index 000000000000..689c97081e13 --- /dev/null +++ b/data/software/ti/tina.json @@ -0,0 +1,8 @@ +{ + "slug": "tina", + "name": "TINA", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25345891" + ] +} diff --git a/data/software/ti/tinderbox.json b/data/software/ti/tinderbox.json new file mode 100644 index 000000000000..aa04b29843fa --- /dev/null +++ b/data/software/ti/tinderbox.json @@ -0,0 +1,8 @@ +{ + "slug": "tinderbox", + "name": "Tinderbox", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3511179" + ] +} diff --git a/data/software/ti/tinidrop.json b/data/software/ti/tinidrop.json new file mode 100644 index 000000000000..e44a28b5ca6c --- /dev/null +++ b/data/software/ti/tinidrop.json @@ -0,0 +1,8 @@ +{ + "slug": "tinidrop", + "name": "TiniDrop", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140069470" + ] +} diff --git a/data/software/ti/tinker.json b/data/software/ti/tinker.json new file mode 100644 index 000000000000..a4733ddee411 --- /dev/null +++ b/data/software/ti/tinker.json @@ -0,0 +1,8 @@ +{ + "slug": "tinker", + "name": "Tinker", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3512200" + ] +} diff --git a/data/software/ti/tinkertool-classic.json b/data/software/ti/tinkertool-classic.json new file mode 100644 index 000000000000..3a6c25334950 --- /dev/null +++ b/data/software/ti/tinkertool-classic.json @@ -0,0 +1,8 @@ +{ + "slug": "tinkertool-classic", + "name": "TinkerTool: Classic", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7808314" + ] +} diff --git a/data/software/ti/tinkertool.json b/data/software/ti/tinkertool.json new file mode 100644 index 000000000000..70735c270760 --- /dev/null +++ b/data/software/ti/tinkertool.json @@ -0,0 +1,14 @@ +{ + "slug": "tinkertool", + "name": "TinkerTool", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7808312" + ], + "operating_systems": [ + "macOS" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/ti/tinlib.json b/data/software/ti/tinlib.json new file mode 100644 index 000000000000..ec1a4683f807 --- /dev/null +++ b/data/software/ti/tinlib.json @@ -0,0 +1,8 @@ +{ + "slug": "tinlib", + "name": "Tinlib", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16615911" + ] +} diff --git a/data/software/ti/tintin-in-tibet.json b/data/software/ti/tintin-in-tibet.json new file mode 100644 index 000000000000..aad66c3dc6b0 --- /dev/null +++ b/data/software/ti/tintin-in-tibet.json @@ -0,0 +1,12 @@ +{ + "slug": "tintin-in-tibet", + "name": "Tintin in Tibet", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3529218" + ], + "release_date": "1995-01-01", + "genres": [ + "adventure video game" + ] +} diff --git a/data/software/ti/tintwizard.json b/data/software/ti/tintwizard.json new file mode 100644 index 000000000000..4612ce387606 --- /dev/null +++ b/data/software/ti/tintwizard.json @@ -0,0 +1,8 @@ +{ + "slug": "tintwizard", + "name": "tintwizard", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065440" + ] +} diff --git a/data/software/ti/tiny11.json b/data/software/ti/tiny11.json new file mode 100644 index 000000000000..088419618bdb --- /dev/null +++ b/data/software/ti/tiny11.json @@ -0,0 +1,8 @@ +{ + "slug": "tiny11", + "name": "Tiny11", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123585229" + ] +} diff --git a/data/software/ti/tinyfugue.json b/data/software/ti/tinyfugue.json new file mode 100644 index 000000000000..337314967833 --- /dev/null +++ b/data/software/ti/tinyfugue.json @@ -0,0 +1,8 @@ +{ + "slug": "tinyfugue", + "name": "TinyFugue", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7808558" + ] +} diff --git a/data/software/ti/tinygrad.json b/data/software/ti/tinygrad.json new file mode 100644 index 000000000000..e441258f35c8 --- /dev/null +++ b/data/software/ti/tinygrad.json @@ -0,0 +1,14 @@ +{ + "slug": "tinygrad", + "name": "tinygrad", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117105889" + ], + "developers": [ + "tiny corp" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/ti/tinymount.json b/data/software/ti/tinymount.json new file mode 100644 index 000000000000..48952018c8ff --- /dev/null +++ b/data/software/ti/tinymount.json @@ -0,0 +1,8 @@ +{ + "slug": "tinymount", + "name": "tinymount", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975517" + ] +} diff --git a/data/software/ti/tinynotify-send.json b/data/software/ti/tinynotify-send.json new file mode 100644 index 000000000000..813890010f21 --- /dev/null +++ b/data/software/ti/tinynotify-send.json @@ -0,0 +1,8 @@ +{ + "slug": "tinynotify-send", + "name": "tinynotify-send", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975518" + ] +} diff --git a/data/software/ti/tinyvpn.json b/data/software/ti/tinyvpn.json new file mode 100644 index 000000000000..2d993b2abd00 --- /dev/null +++ b/data/software/ti/tinyvpn.json @@ -0,0 +1,8 @@ +{ + "slug": "tinyvpn", + "name": "TinyVPN", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11251113" + ] +} diff --git a/data/software/ti/tip.json b/data/software/ti/tip.json new file mode 100644 index 000000000000..74ea30506de8 --- /dev/null +++ b/data/software/ti/tip.json @@ -0,0 +1,8 @@ +{ + "slug": "tip", + "name": "tip", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7808761" + ] +} diff --git a/data/software/ti/tipcam.json b/data/software/ti/tipcam.json new file mode 100644 index 000000000000..336367d7f049 --- /dev/null +++ b/data/software/ti/tipcam.json @@ -0,0 +1,8 @@ +{ + "slug": "tipcam", + "name": "TipCam", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084665" + ] +} diff --git a/data/software/ti/tippecanoe.json b/data/software/ti/tippecanoe.json new file mode 100644 index 000000000000..a7a543eb0b5f --- /dev/null +++ b/data/software/ti/tippecanoe.json @@ -0,0 +1,12 @@ +{ + "slug": "tippecanoe", + "name": "tippecanoe", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122904834" + ], + "developers": [ + "Mapbox", + "Felt Maps" + ] +} diff --git a/data/software/ti/titan-ftp-server.json b/data/software/ti/titan-ftp-server.json new file mode 100644 index 000000000000..01c8f94c2eeb --- /dev/null +++ b/data/software/ti/titan-ftp-server.json @@ -0,0 +1,11 @@ +{ + "slug": "titan-ftp-server", + "name": "Titan FTP Server", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3529485" + ], + "operating_systems": [ + "Windows 10 Pro" + ] +} diff --git a/data/software/ti/titan-security-key.json b/data/software/ti/titan-security-key.json new file mode 100644 index 000000000000..d53834ae057f --- /dev/null +++ b/data/software/ti/titan-security-key.json @@ -0,0 +1,12 @@ +{ + "slug": "titan-security-key", + "name": "Titan Security Key", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q57521184" + ], + "release_date": "2019-10-15", + "developers": [ + "Google" + ] +} diff --git a/data/software/ti/titan.json b/data/software/ti/titan.json new file mode 100644 index 000000000000..9eba87e064c7 --- /dev/null +++ b/data/software/ti/titan.json @@ -0,0 +1,8 @@ +{ + "slug": "titan", + "name": "Titan", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110785384" + ] +} diff --git a/data/software/ti/titan2d.json b/data/software/ti/titan2d.json new file mode 100644 index 000000000000..64efcd9fa712 --- /dev/null +++ b/data/software/ti/titan2d.json @@ -0,0 +1,8 @@ +{ + "slug": "titan2d", + "name": "TITAN2D", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7670455" + ] +} diff --git a/data/software/ti/tivoli-management-framework.json b/data/software/ti/tivoli-management-framework.json new file mode 100644 index 000000000000..f27ed3c984b1 --- /dev/null +++ b/data/software/ti/tivoli-management-framework.json @@ -0,0 +1,8 @@ +{ + "slug": "tivoli-management-framework", + "name": "Tivoli Management Framework", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11251123" + ] +} diff --git a/data/software/ti/tivoli-service-automation-manager.json b/data/software/ti/tivoli-service-automation-manager.json new file mode 100644 index 000000000000..fa8f838bd388 --- /dev/null +++ b/data/software/ti/tivoli-service-automation-manager.json @@ -0,0 +1,11 @@ +{ + "slug": "tivoli-service-automation-manager", + "name": "Tivoli Service Automation Manager", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7810444" + ], + "developers": [ + "IBM" + ] +} diff --git a/data/software/ti/tivoli-software.json b/data/software/ti/tivoli-software.json new file mode 100644 index 000000000000..21da0030952d --- /dev/null +++ b/data/software/ti/tivoli-software.json @@ -0,0 +1,8 @@ +{ + "slug": "tivoli-software", + "name": "Tivoli Software", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1072552" + ] +} diff --git a/data/software/tk/tk-solver.json b/data/software/tk/tk-solver.json new file mode 100644 index 000000000000..5e60ffab1fe2 --- /dev/null +++ b/data/software/tk/tk-solver.json @@ -0,0 +1,11 @@ +{ + "slug": "tk-solver", + "name": "TK Solver", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7670568" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/tl/tl-dv.json b/data/software/tl/tl-dv.json new file mode 100644 index 000000000000..1b9eb6960973 --- /dev/null +++ b/data/software/tl/tl-dv.json @@ -0,0 +1,8 @@ +{ + "slug": "tl-dv", + "name": "tl;dv", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115484874" + ] +} diff --git a/data/software/tl/tldr-pages.json b/data/software/tl/tldr-pages.json new file mode 100644 index 000000000000..a74f8c096488 --- /dev/null +++ b/data/software/tl/tldr-pages.json @@ -0,0 +1,11 @@ +{ + "slug": "tldr-pages", + "name": "tldr-pages", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105746463" + ], + "licenses": [ + "Creative Commons Attribution 4.0 International" + ] +} diff --git a/data/software/tl/tlen-pl.json b/data/software/tl/tlen-pl.json new file mode 100644 index 000000000000..32e89908d355 --- /dev/null +++ b/data/software/tl/tlen-pl.json @@ -0,0 +1,14 @@ +{ + "slug": "tlen-pl", + "name": "Tlen.pl", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q58055" + ], + "operating_systems": [ + "Microsoft Windows" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/tl/tlooto.json b/data/software/tl/tlooto.json new file mode 100644 index 000000000000..606e6dbe1e45 --- /dev/null +++ b/data/software/tl/tlooto.json @@ -0,0 +1,8 @@ +{ + "slug": "tlooto", + "name": "Tlooto", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134021164" + ] +} diff --git a/data/software/tl/tltk.json b/data/software/tl/tltk.json new file mode 100644 index 000000000000..4a00c8a335e0 --- /dev/null +++ b/data/software/tl/tltk.json @@ -0,0 +1,18 @@ +{ + "slug": "tltk", + "name": "TLTK", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q102183142" + ], + "release_date": "2018-02-21", + "developers": [ + "Chulalongkorn University" + ], + "programming_languages": [ + "Python" + ], + "licenses": [ + "3-clause BSD License" + ] +} diff --git a/data/software/tm/tm-align.json b/data/software/tm/tm-align.json new file mode 100644 index 000000000000..e295d21792ac --- /dev/null +++ b/data/software/tm/tm-align.json @@ -0,0 +1,8 @@ +{ + "slug": "tm-align", + "name": "TM-align", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q114840775" + ] +} diff --git a/data/software/tm/tmax-wapl.json b/data/software/tm/tmax-wapl.json new file mode 100644 index 000000000000..57241d47a4b9 --- /dev/null +++ b/data/software/tm/tmax-wapl.json @@ -0,0 +1,12 @@ +{ + "slug": "tmax-wapl", + "name": "Tmax WAPL", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124568861" + ], + "release_date": "2021-02-01", + "genres": [ + "collaboration tool" + ] +} diff --git a/data/software/tm/tmetric.json b/data/software/tm/tmetric.json new file mode 100644 index 000000000000..c18b7fffb585 --- /dev/null +++ b/data/software/tm/tmetric.json @@ -0,0 +1,8 @@ +{ + "slug": "tmetric", + "name": "TMetric", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28957076" + ] +} diff --git a/data/software/tm/tmux-mem-cpu-load.json b/data/software/tm/tmux-mem-cpu-load.json new file mode 100644 index 000000000000..87cea3f12b1b --- /dev/null +++ b/data/software/tm/tmux-mem-cpu-load.json @@ -0,0 +1,11 @@ +{ + "slug": "tmux-mem-cpu-load", + "name": "tmux-mem-cpu-load", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975519" + ], + "licenses": [ + "Apache License" + ] +} diff --git a/data/software/tn/tn3270-plus.json b/data/software/tn/tn3270-plus.json new file mode 100644 index 000000000000..cff7fef1c939 --- /dev/null +++ b/data/software/tn/tn3270-plus.json @@ -0,0 +1,11 @@ +{ + "slug": "tn3270-plus", + "name": "TN3270 Plus", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7670806" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/tn/tnftp.json b/data/software/tn/tnftp.json new file mode 100644 index 000000000000..eb4ef33ce03d --- /dev/null +++ b/data/software/tn/tnftp.json @@ -0,0 +1,11 @@ +{ + "slug": "tnftp", + "name": "tnftp", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7810787" + ], + "operating_systems": [ + "Unix-like operating system" + ] +} diff --git a/data/software/tn/tnt-trigrams-n-tags.json b/data/software/tn/tnt-trigrams-n-tags.json new file mode 100644 index 000000000000..42b7b8a1fb15 --- /dev/null +++ b/data/software/tn/tnt-trigrams-n-tags.json @@ -0,0 +1,8 @@ +{ + "slug": "tnt-trigrams-n-tags", + "name": "TnT (Trigrams'n'Tags)", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087748" + ] +} diff --git a/data/software/tn/tntdrive.json b/data/software/tn/tntdrive.json new file mode 100644 index 000000000000..cc23c438ba01 --- /dev/null +++ b/data/software/tn/tntdrive.json @@ -0,0 +1,8 @@ +{ + "slug": "tntdrive", + "name": "TntDrive", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q98520267" + ] +} diff --git a/data/software/tn/tntmips.json b/data/software/tn/tntmips.json new file mode 100644 index 000000000000..2392825d0afd --- /dev/null +++ b/data/software/tn/tntmips.json @@ -0,0 +1,11 @@ +{ + "slug": "tntmips", + "name": "TNTmips", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7670931" + ], + "developers": [ + "MicroImages, Inc." + ] +} diff --git a/data/software/to/toad-data-modeler.json b/data/software/to/toad-data-modeler.json new file mode 100644 index 000000000000..091dee184aca --- /dev/null +++ b/data/software/to/toad-data-modeler.json @@ -0,0 +1,14 @@ +{ + "slug": "toad-data-modeler", + "name": "Toad Data Modeler", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7811358" + ], + "developers": [ + "Quest Software" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/to/toaster.json b/data/software/to/toaster.json new file mode 100644 index 000000000000..c879cd63179b --- /dev/null +++ b/data/software/to/toaster.json @@ -0,0 +1,8 @@ +{ + "slug": "toaster", + "name": "Toaster", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7811423" + ] +} diff --git a/data/software/to/tocosk.json b/data/software/to/tocosk.json new file mode 100644 index 000000000000..8c1a0f176dc1 --- /dev/null +++ b/data/software/to/tocosk.json @@ -0,0 +1,8 @@ +{ + "slug": "tocosk", + "name": "tocosk", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3512283" + ] +} diff --git a/data/software/to/tofu.json b/data/software/to/tofu.json new file mode 100644 index 000000000000..f42d311bba15 --- /dev/null +++ b/data/software/to/tofu.json @@ -0,0 +1,8 @@ +{ + "slug": "tofu", + "name": "Tofu", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084666" + ] +} diff --git a/data/software/to/toggl-track.json b/data/software/to/toggl-track.json new file mode 100644 index 000000000000..1af10744bd03 --- /dev/null +++ b/data/software/to/toggl-track.json @@ -0,0 +1,8 @@ +{ + "slug": "toggl-track", + "name": "Toggl Track", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q15113618" + ] +} diff --git a/data/software/to/tokenization-using-nltk.json b/data/software/to/tokenization-using-nltk.json new file mode 100644 index 000000000000..a8b6da7f5873 --- /dev/null +++ b/data/software/to/tokenization-using-nltk.json @@ -0,0 +1,8 @@ +{ + "slug": "tokenization-using-nltk", + "name": "Tokenization using NLTK", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084667" + ] +} diff --git a/data/software/to/tokenx.json b/data/software/to/tokenx.json new file mode 100644 index 000000000000..4c5d0b81bc1f --- /dev/null +++ b/data/software/to/tokenx.json @@ -0,0 +1,8 @@ +{ + "slug": "tokenx", + "name": "TokenX", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084668" + ] +} diff --git a/data/software/to/toledo-nanochess.json b/data/software/to/toledo-nanochess.json new file mode 100644 index 000000000000..f47955227be7 --- /dev/null +++ b/data/software/to/toledo-nanochess.json @@ -0,0 +1,8 @@ +{ + "slug": "toledo-nanochess", + "name": "Toledo Nanochess", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7814174" + ] +} diff --git a/data/software/to/tom-s-planner.json b/data/software/to/tom-s-planner.json new file mode 100644 index 000000000000..cb409029cdaf --- /dev/null +++ b/data/software/to/tom-s-planner.json @@ -0,0 +1,8 @@ +{ + "slug": "tom-s-planner", + "name": "Tom's Planner", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7814695" + ] +} diff --git a/data/software/to/tom-sawyer-perspectives.json b/data/software/to/tom-sawyer-perspectives.json new file mode 100644 index 000000000000..4d76f387e8a4 --- /dev/null +++ b/data/software/to/tom-sawyer-perspectives.json @@ -0,0 +1,8 @@ +{ + "slug": "tom-sawyer-perspectives", + "name": "Tom Sawyer Perspectives", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084670" + ] +} diff --git a/data/software/to/tomboy-latex.json b/data/software/to/tomboy-latex.json new file mode 100644 index 000000000000..e8112a734f98 --- /dev/null +++ b/data/software/to/tomboy-latex.json @@ -0,0 +1,8 @@ +{ + "slug": "tomboy-latex", + "name": "Tomboy-LaTeX", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110788324" + ] +} diff --git a/data/software/to/tombstone-1882.json b/data/software/to/tombstone-1882.json new file mode 100644 index 000000000000..3de6ba995049 --- /dev/null +++ b/data/software/to/tombstone-1882.json @@ -0,0 +1,8 @@ +{ + "slug": "tombstone-1882", + "name": "Tombstone 1882", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140401232" + ] +} diff --git a/data/software/to/tomoe-q63065160.json b/data/software/to/tomoe-q63065160.json new file mode 100644 index 000000000000..87916cc5c205 --- /dev/null +++ b/data/software/to/tomoe-q63065160.json @@ -0,0 +1,8 @@ +{ + "slug": "tomoe-q63065160", + "name": "tomoe", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065160" + ] +} diff --git a/data/software/to/tomoe.json b/data/software/to/tomoe.json new file mode 100644 index 000000000000..6d1c9671f921 --- /dev/null +++ b/data/software/to/tomoe.json @@ -0,0 +1,8 @@ +{ + "slug": "tomoe", + "name": "Tomoe", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11251252" + ] +} diff --git a/data/software/to/tomp2p.json b/data/software/to/tomp2p.json new file mode 100644 index 000000000000..4280deb0f86f --- /dev/null +++ b/data/software/to/tomp2p.json @@ -0,0 +1,14 @@ +{ + "slug": "tomp2p", + "name": "TomP2P", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7814715" + ], + "programming_languages": [ + "Java" + ], + "licenses": [ + "Apache License" + ] +} diff --git a/data/software/to/tomtom-amigo.json b/data/software/to/tomtom-amigo.json new file mode 100644 index 000000000000..bf5b8a37e6d9 --- /dev/null +++ b/data/software/to/tomtom-amigo.json @@ -0,0 +1,8 @@ +{ + "slug": "tomtom-amigo", + "name": "TomTom AmiGO", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123125122" + ] +} diff --git a/data/software/to/tone-rion.json b/data/software/to/tone-rion.json new file mode 100644 index 000000000000..0ebfa0c9ea67 --- /dev/null +++ b/data/software/to/tone-rion.json @@ -0,0 +1,12 @@ +{ + "slug": "tone-rion", + "name": "Tone Rion", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q24914602" + ], + "release_date": "2011-12-16", + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/to/toneloc.json b/data/software/to/toneloc.json new file mode 100644 index 000000000000..36c464e810ac --- /dev/null +++ b/data/software/to/toneloc.json @@ -0,0 +1,8 @@ +{ + "slug": "toneloc", + "name": "ToneLoc", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2887417" + ] +} diff --git a/data/software/to/tonido.json b/data/software/to/tonido.json new file mode 100644 index 000000000000..a7f7db2db6b1 --- /dev/null +++ b/data/software/to/tonido.json @@ -0,0 +1,12 @@ +{ + "slug": "tonido", + "name": "Tonido", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7821390" + ], + "release_date": "2009-03-01", + "licenses": [ + "freeware" + ] +} diff --git a/data/software/to/tonio.json b/data/software/to/tonio.json new file mode 100644 index 000000000000..78f74c7855a8 --- /dev/null +++ b/data/software/to/tonio.json @@ -0,0 +1,9 @@ +{ + "slug": "tonio", + "name": "Tonio", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10852894" + ], + "release_date": "2010-07-14" +} diff --git a/data/software/to/tonka-workshop-playset.json b/data/software/to/tonka-workshop-playset.json new file mode 100644 index 000000000000..1a8727eccdca --- /dev/null +++ b/data/software/to/tonka-workshop-playset.json @@ -0,0 +1,8 @@ +{ + "slug": "tonka-workshop-playset", + "name": "Tonka Workshop Playset", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139761011" + ] +} diff --git a/data/software/to/toolbox.json b/data/software/to/toolbox.json new file mode 100644 index 000000000000..ad8c1274f448 --- /dev/null +++ b/data/software/to/toolbox.json @@ -0,0 +1,12 @@ +{ + "slug": "toolbox", + "name": "Toolbox", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134548367" + ], + "licenses": [ + "SIL Open Font License 1.1", + "MIT License" + ] +} diff --git a/data/software/to/tools-project.json b/data/software/to/tools-project.json new file mode 100644 index 000000000000..478d256aec3e --- /dev/null +++ b/data/software/to/tools-project.json @@ -0,0 +1,8 @@ +{ + "slug": "tools-project", + "name": "Tools Project", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76178068" + ] +} diff --git a/data/software/to/topaz-denoise-ai.json b/data/software/to/topaz-denoise-ai.json new file mode 100644 index 000000000000..e1abe5921b20 --- /dev/null +++ b/data/software/to/topaz-denoise-ai.json @@ -0,0 +1,11 @@ +{ + "slug": "topaz-denoise-ai", + "name": "Topaz DeNoise AI", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137592651" + ], + "developers": [ + "Topaz Labs" + ] +} diff --git a/data/software/to/topcat.json b/data/software/to/topcat.json new file mode 100644 index 000000000000..9c93d062cc2a --- /dev/null +++ b/data/software/to/topcat.json @@ -0,0 +1,8 @@ +{ + "slug": "topcat", + "name": "TOPCAT", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7671022" + ] +} diff --git a/data/software/to/topfind.json b/data/software/to/topfind.json new file mode 100644 index 000000000000..715b899ce64e --- /dev/null +++ b/data/software/to/topfind.json @@ -0,0 +1,11 @@ +{ + "slug": "topfind", + "name": "TopFIND", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7824378" + ], + "developers": [ + "University of British Columbia" + ] +} diff --git a/data/software/to/topic-modeling-tool.json b/data/software/to/topic-modeling-tool.json new file mode 100644 index 000000000000..a9c4b6339243 --- /dev/null +++ b/data/software/to/topic-modeling-tool.json @@ -0,0 +1,8 @@ +{ + "slug": "topic-modeling-tool", + "name": "Topic Modeling Tool", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087749" + ] +} diff --git a/data/software/to/topic-modelling-tool.json b/data/software/to/topic-modelling-tool.json new file mode 100644 index 000000000000..4c3c2a99625a --- /dev/null +++ b/data/software/to/topic-modelling-tool.json @@ -0,0 +1,8 @@ +{ + "slug": "topic-modelling-tool", + "name": "Topic Modelling Tool", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087750" + ] +} diff --git a/data/software/to/topic.json b/data/software/to/topic.json new file mode 100644 index 000000000000..44b82d6a61bd --- /dev/null +++ b/data/software/to/topic.json @@ -0,0 +1,8 @@ +{ + "slug": "topic", + "name": "TOPIC", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q114047897" + ] +} diff --git a/data/software/to/topofusion.json b/data/software/to/topofusion.json new file mode 100644 index 000000000000..90bc6bfb49f9 --- /dev/null +++ b/data/software/to/topofusion.json @@ -0,0 +1,8 @@ +{ + "slug": "topofusion", + "name": "TopoFusion", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7824939" + ] +} diff --git a/data/software/to/topola.json b/data/software/to/topola.json new file mode 100644 index 000000000000..5af6dfd6d766 --- /dev/null +++ b/data/software/to/topola.json @@ -0,0 +1,11 @@ +{ + "slug": "topola", + "name": "topola", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127689747" + ], + "licenses": [ + "Apache Software License 2.0" + ] +} diff --git a/data/software/to/topomapper.json b/data/software/to/topomapper.json new file mode 100644 index 000000000000..43511ab72d34 --- /dev/null +++ b/data/software/to/topomapper.json @@ -0,0 +1,11 @@ +{ + "slug": "topomapper", + "name": "Topomapper", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130404755" + ], + "developers": [ + "ATLOGIS" + ] +} diff --git a/data/software/to/topstyle.json b/data/software/to/topstyle.json new file mode 100644 index 000000000000..aab681fa8eb4 --- /dev/null +++ b/data/software/to/topstyle.json @@ -0,0 +1,14 @@ +{ + "slug": "topstyle", + "name": "TopStyle", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7824386" + ], + "developers": [ + "Nick Bradbury" + ], + "programming_languages": [ + "Delphi" + ] +} diff --git a/data/software/to/topxnotes.json b/data/software/to/topxnotes.json new file mode 100644 index 000000000000..9008838b95fd --- /dev/null +++ b/data/software/to/topxnotes.json @@ -0,0 +1,8 @@ +{ + "slug": "topxnotes", + "name": "TopXNotes", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7824389" + ] +} diff --git a/data/software/to/torch.json b/data/software/to/torch.json new file mode 100644 index 000000000000..cdefad046bd1 --- /dev/null +++ b/data/software/to/torch.json @@ -0,0 +1,8 @@ +{ + "slug": "torch", + "name": "Torch", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121046171" + ] +} diff --git a/data/software/to/torrents-time.json b/data/software/to/torrents-time.json new file mode 100644 index 000000000000..0941a21c0578 --- /dev/null +++ b/data/software/to/torrents-time.json @@ -0,0 +1,11 @@ +{ + "slug": "torrents-time", + "name": "Torrents-Time", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28404497" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/to/tosca.json b/data/software/to/tosca.json new file mode 100644 index 000000000000..c33a8b90d20c --- /dev/null +++ b/data/software/to/tosca.json @@ -0,0 +1,8 @@ +{ + "slug": "tosca", + "name": "TOSCA", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084673" + ] +} diff --git a/data/software/to/tosmana.json b/data/software/to/tosmana.json new file mode 100644 index 000000000000..526b86361db6 --- /dev/null +++ b/data/software/to/tosmana.json @@ -0,0 +1,11 @@ +{ + "slug": "tosmana", + "name": "Tosmana", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105229775" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/to/total-extreme-wrestling-2005.json b/data/software/to/total-extreme-wrestling-2005.json new file mode 100644 index 000000000000..5443f9e1a2d8 --- /dev/null +++ b/data/software/to/total-extreme-wrestling-2005.json @@ -0,0 +1,8 @@ +{ + "slug": "total-extreme-wrestling-2005", + "name": "Total Extreme Wrestling 2005", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140355901" + ] +} diff --git a/data/software/to/totok.json b/data/software/to/totok.json new file mode 100644 index 000000000000..247b707e0b99 --- /dev/null +++ b/data/software/to/totok.json @@ -0,0 +1,8 @@ +{ + "slug": "totok", + "name": "ToTok", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q79437254" + ] +} diff --git a/data/software/to/touchcopy.json b/data/software/to/touchcopy.json new file mode 100644 index 000000000000..5413f24ff747 --- /dev/null +++ b/data/software/to/touchcopy.json @@ -0,0 +1,8 @@ +{ + "slug": "touchcopy", + "name": "TouchCopy", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q26460469" + ] +} diff --git a/data/software/to/touchgraph-seo-browser.json b/data/software/to/touchgraph-seo-browser.json new file mode 100644 index 000000000000..d4c171785b3e --- /dev/null +++ b/data/software/to/touchgraph-seo-browser.json @@ -0,0 +1,8 @@ +{ + "slug": "touchgraph-seo-browser", + "name": "TouchGraph SEO Browser", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084674" + ] +} diff --git a/data/software/to/touchmail-q17048698.json b/data/software/to/touchmail-q17048698.json new file mode 100644 index 000000000000..58dc818d54f3 --- /dev/null +++ b/data/software/to/touchmail-q17048698.json @@ -0,0 +1,8 @@ +{ + "slug": "touchmail-q17048698", + "name": "TouchMail", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17048698" + ] +} diff --git a/data/software/to/touchmail.json b/data/software/to/touchmail.json new file mode 100644 index 000000000000..89b27950075b --- /dev/null +++ b/data/software/to/touchmail.json @@ -0,0 +1,8 @@ +{ + "slug": "touchmail", + "name": "Touchmail", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3996043" + ] +} diff --git a/data/software/to/touchosc.json b/data/software/to/touchosc.json new file mode 100644 index 000000000000..8037a4898402 --- /dev/null +++ b/data/software/to/touchosc.json @@ -0,0 +1,8 @@ +{ + "slug": "touchosc", + "name": "TouchOSC", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135533313" + ] +} diff --git a/data/software/to/touchwiz.json b/data/software/to/touchwiz.json new file mode 100644 index 000000000000..20941ccee63c --- /dev/null +++ b/data/software/to/touchwiz.json @@ -0,0 +1,15 @@ +{ + "slug": "touchwiz", + "name": "TouchWiz", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q483101" + ], + "developers": [ + "Samsung Electronics" + ], + "operating_systems": [ + "Bada", + "Windows Mobile" + ] +} diff --git a/data/software/to/tourcast.json b/data/software/to/tourcast.json new file mode 100644 index 000000000000..58e35141fd13 --- /dev/null +++ b/data/software/to/tourcast.json @@ -0,0 +1,12 @@ +{ + "slug": "tourcast", + "name": "TOURCast", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7671067" + ], + "release_date": "2003-02-01", + "developers": [ + "IBM" + ] +} diff --git a/data/software/to/toutenclic.json b/data/software/to/toutenclic.json new file mode 100644 index 000000000000..723f638b0ee8 --- /dev/null +++ b/data/software/to/toutenclic.json @@ -0,0 +1,14 @@ +{ + "slug": "toutenclic", + "name": "ToutEnClic", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q52847375" + ], + "programming_languages": [ + "Python" + ], + "licenses": [ + "GNU General Public License, version 3.0" + ] +} diff --git a/data/software/to/tower-wars.json b/data/software/to/tower-wars.json new file mode 100644 index 000000000000..da3f8441a1a4 --- /dev/null +++ b/data/software/to/tower-wars.json @@ -0,0 +1,19 @@ +{ + "slug": "tower-wars", + "name": "Tower Wars", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110616359" + ], + "release_date": "2012-08-14", + "developers": [ + "SuperVillain Studios" + ], + "publishers": [ + "SuperVillain Studios" + ], + "genres": [ + "action game", + "strategy video game" + ] +} diff --git a/data/software/to/towit.json b/data/software/to/towit.json new file mode 100644 index 000000000000..5e74eb105ba3 --- /dev/null +++ b/data/software/to/towit.json @@ -0,0 +1,9 @@ +{ + "slug": "towit", + "name": "TowIt", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28447852" + ], + "release_date": "2015-01-16" +} diff --git a/data/software/to/toxicity-estimation-software-tool.json b/data/software/to/toxicity-estimation-software-tool.json new file mode 100644 index 000000000000..f5c09a5ef59a --- /dev/null +++ b/data/software/to/toxicity-estimation-software-tool.json @@ -0,0 +1,8 @@ +{ + "slug": "toxicity-estimation-software-tool", + "name": "Toxicity Estimation Software Tool", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136437700" + ] +} diff --git a/data/software/tp/tpacpi-bat.json b/data/software/tp/tpacpi-bat.json new file mode 100644 index 000000000000..4942be7d029a --- /dev/null +++ b/data/software/tp/tpacpi-bat.json @@ -0,0 +1,8 @@ +{ + "slug": "tpacpi-bat", + "name": "tpacpi-bat", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975520" + ] +} diff --git a/data/software/tp/tpl-tables.json b/data/software/tp/tpl-tables.json new file mode 100644 index 000000000000..415bc4f84d6d --- /dev/null +++ b/data/software/tp/tpl-tables.json @@ -0,0 +1,8 @@ +{ + "slug": "tpl-tables", + "name": "TPL Tables", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7671165" + ] +} diff --git a/data/software/tp/tpt.json b/data/software/tp/tpt.json new file mode 100644 index 000000000000..3fd96552af46 --- /dev/null +++ b/data/software/tp/tpt.json @@ -0,0 +1,11 @@ +{ + "slug": "tpt", + "name": "TPT", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q969634" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/tq/tqdm.json b/data/software/tq/tqdm.json new file mode 100644 index 000000000000..9c7774181a72 --- /dev/null +++ b/data/software/tq/tqdm.json @@ -0,0 +1,14 @@ +{ + "slug": "tqdm", + "name": "tqdm", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975521" + ], + "programming_languages": [ + "Python" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/tr/trabi-racer.json b/data/software/tr/trabi-racer.json new file mode 100644 index 000000000000..3b9ccf55d5cb --- /dev/null +++ b/data/software/tr/trabi-racer.json @@ -0,0 +1,8 @@ +{ + "slug": "trabi-racer", + "name": "Trabi Racer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140359135" + ] +} diff --git a/data/software/tr/trace-mode.json b/data/software/tr/trace-mode.json new file mode 100644 index 000000000000..071ecd0477c0 --- /dev/null +++ b/data/software/tr/trace-mode.json @@ -0,0 +1,8 @@ +{ + "slug": "trace-mode", + "name": "Trace mode", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4051664" + ] +} diff --git a/data/software/tr/trace.json b/data/software/tr/trace.json new file mode 100644 index 000000000000..54ce975c4632 --- /dev/null +++ b/data/software/tr/trace.json @@ -0,0 +1,11 @@ +{ + "slug": "trace", + "name": "TRACE", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17047765" + ], + "developers": [ + "The Aerospace Corporation" + ] +} diff --git a/data/software/tr/tracenet.json b/data/software/tr/tracenet.json new file mode 100644 index 000000000000..d14b15045582 --- /dev/null +++ b/data/software/tr/tracenet.json @@ -0,0 +1,12 @@ +{ + "slug": "tracenet", + "name": "traceNET", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140312556" + ], + "release_date": "2004-01-01", + "developers": [ + "activeIT Software & Consulting GmbH" + ] +} diff --git a/data/software/tr/tracepro.json b/data/software/tr/tracepro.json new file mode 100644 index 000000000000..7b829d5c57e9 --- /dev/null +++ b/data/software/tr/tracepro.json @@ -0,0 +1,8 @@ +{ + "slug": "tracepro", + "name": "TracePro", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7831132" + ] +} diff --git a/data/software/tr/tracery.json b/data/software/tr/tracery.json new file mode 100644 index 000000000000..30d9011bf1e5 --- /dev/null +++ b/data/software/tr/tracery.json @@ -0,0 +1,8 @@ +{ + "slug": "tracery", + "name": "Tracery", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125535843" + ] +} diff --git a/data/software/tr/trackabi.json b/data/software/tr/trackabi.json new file mode 100644 index 000000000000..5c8aaa9cc858 --- /dev/null +++ b/data/software/tr/trackabi.json @@ -0,0 +1,8 @@ +{ + "slug": "trackabi", + "name": "Trackabi", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116434068" + ] +} diff --git a/data/software/tr/trackbuster.json b/data/software/tr/trackbuster.json new file mode 100644 index 000000000000..4ad8e4151256 --- /dev/null +++ b/data/software/tr/trackbuster.json @@ -0,0 +1,8 @@ +{ + "slug": "trackbuster", + "name": "Trackbuster", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q20967717" + ] +} diff --git a/data/software/tr/tracker.json b/data/software/tr/tracker.json new file mode 100644 index 000000000000..94b00985e261 --- /dev/null +++ b/data/software/tr/tracker.json @@ -0,0 +1,8 @@ +{ + "slug": "tracker", + "name": "Tracker", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7831542" + ] +} diff --git a/data/software/tr/trackstudio.json b/data/software/tr/trackstudio.json new file mode 100644 index 000000000000..3a49f7c26ed5 --- /dev/null +++ b/data/software/tr/trackstudio.json @@ -0,0 +1,14 @@ +{ + "slug": "trackstudio", + "name": "TrackStudio", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4051688" + ], + "programming_languages": [ + "Java" + ], + "licenses": [ + "shareware" + ] +} diff --git a/data/software/tr/tracktion-waveform.json b/data/software/tr/tracktion-waveform.json new file mode 100644 index 000000000000..96cf65647d69 --- /dev/null +++ b/data/software/tr/tracktion-waveform.json @@ -0,0 +1,8 @@ +{ + "slug": "tracktion-waveform", + "name": "Tracktion Waveform", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7831607" + ] +} diff --git a/data/software/tr/tradechecx.json b/data/software/tr/tradechecx.json new file mode 100644 index 000000000000..0b8b6f13504a --- /dev/null +++ b/data/software/tr/tradechecx.json @@ -0,0 +1,8 @@ +{ + "slug": "tradechecx", + "name": "TradeChecx", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140338617" + ] +} diff --git a/data/software/tr/tradelect.json b/data/software/tr/tradelect.json new file mode 100644 index 000000000000..825137e268b3 --- /dev/null +++ b/data/software/tr/tradelect.json @@ -0,0 +1,15 @@ +{ + "slug": "tradelect", + "name": "TradElect", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16957867" + ], + "release_date": "2007-06-01", + "developers": [ + "Accenture" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/tr/tradelogic.json b/data/software/tr/tradelogic.json new file mode 100644 index 000000000000..d5041a2bfa77 --- /dev/null +++ b/data/software/tr/tradelogic.json @@ -0,0 +1,8 @@ +{ + "slug": "tradelogic", + "name": "TradeLogic", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137972037" + ] +} diff --git a/data/software/tr/trademetria.json b/data/software/tr/trademetria.json new file mode 100644 index 000000000000..b12abf9a769c --- /dev/null +++ b/data/software/tr/trademetria.json @@ -0,0 +1,8 @@ +{ + "slug": "trademetria", + "name": "Trademetria", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138748875" + ] +} diff --git a/data/software/tr/tradestation.json b/data/software/tr/tradestation.json new file mode 100644 index 000000000000..d0974542506e --- /dev/null +++ b/data/software/tr/tradestation.json @@ -0,0 +1,11 @@ +{ + "slug": "tradestation", + "name": "TradeStation", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126805146" + ], + "developers": [ + "TradeStation" + ] +} diff --git a/data/software/tr/tradingview.json b/data/software/tr/tradingview.json new file mode 100644 index 000000000000..d537b2c3a3af --- /dev/null +++ b/data/software/tr/tradingview.json @@ -0,0 +1,9 @@ +{ + "slug": "tradingview", + "name": "TradingView", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q24884021" + ], + "release_date": "2012-01-01" +} diff --git a/data/software/tr/trados-studio.json b/data/software/tr/trados-studio.json new file mode 100644 index 000000000000..edad98d9f9de --- /dev/null +++ b/data/software/tr/trados-studio.json @@ -0,0 +1,19 @@ +{ + "slug": "trados-studio", + "name": "Trados Studio", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q689412" + ], + "developers": [ + "RWS Group", + "SDL", + "Trados" + ], + "operating_systems": [ + "Microsoft Windows" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/tr/trae-ide.json b/data/software/tr/trae-ide.json new file mode 100644 index 000000000000..4d964f9c6df1 --- /dev/null +++ b/data/software/tr/trae-ide.json @@ -0,0 +1,15 @@ +{ + "slug": "trae-ide", + "name": "Trae (IDE)", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137376124" + ], + "developers": [ + "ByteDance" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/software/tr/trafficure.json b/data/software/tr/trafficure.json new file mode 100644 index 000000000000..6151ed7e4f87 --- /dev/null +++ b/data/software/tr/trafficure.json @@ -0,0 +1,14 @@ +{ + "slug": "trafficure", + "name": "TraffiCure", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139658233" + ], + "developers": [ + "Lepton Software" + ], + "genres": [ + "intelligent transportation system" + ] +} diff --git a/data/software/tr/traffy-fondue.json b/data/software/tr/traffy-fondue.json new file mode 100644 index 000000000000..32400798cb35 --- /dev/null +++ b/data/software/tr/traffy-fondue.json @@ -0,0 +1,8 @@ +{ + "slug": "traffy-fondue", + "name": "Traffy Fondue", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134590150" + ] +} diff --git a/data/software/tr/trailfire.json b/data/software/tr/trailfire.json new file mode 100644 index 000000000000..3acf4af69bd1 --- /dev/null +++ b/data/software/tr/trailfire.json @@ -0,0 +1,8 @@ +{ + "slug": "trailfire", + "name": "Trailfire", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084676" + ] +} diff --git a/data/software/tr/trajpar.json b/data/software/tr/trajpar.json new file mode 100644 index 000000000000..8ab9c92ae480 --- /dev/null +++ b/data/software/tr/trajpar.json @@ -0,0 +1,8 @@ +{ + "slug": "trajpar", + "name": "trajpar", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7833064" + ] +} diff --git a/data/software/tr/trakgene.json b/data/software/tr/trakgene.json new file mode 100644 index 000000000000..f29c0477f258 --- /dev/null +++ b/data/software/tr/trakgene.json @@ -0,0 +1,14 @@ +{ + "slug": "trakgene", + "name": "TrakGene", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139928489" + ], + "developers": [ + "TrakGene" + ], + "operating_systems": [ + "cross-platform" + ] +} diff --git a/data/software/tr/tramo.json b/data/software/tr/tramo.json new file mode 100644 index 000000000000..9f97f5db903b --- /dev/null +++ b/data/software/tr/tramo.json @@ -0,0 +1,11 @@ +{ + "slug": "tramo", + "name": "TRAMO", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3512343" + ], + "developers": [ + "Bank of Spain" + ] +} diff --git a/data/software/tr/transaction-software-gmbh.json b/data/software/tr/transaction-software-gmbh.json new file mode 100644 index 000000000000..c3a5d1af17a5 --- /dev/null +++ b/data/software/tr/transaction-software-gmbh.json @@ -0,0 +1,8 @@ +{ + "slug": "transaction-software-gmbh", + "name": "Transaction Software GmbH", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q14752103" + ] +} diff --git a/data/software/tr/transadf.json b/data/software/tr/transadf.json new file mode 100644 index 000000000000..cfb6e5f9c4c4 --- /dev/null +++ b/data/software/tr/transadf.json @@ -0,0 +1,8 @@ +{ + "slug": "transadf", + "name": "TransADF", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7833591" + ] +} diff --git a/data/software/tr/transana.json b/data/software/tr/transana.json new file mode 100644 index 000000000000..5ce5b4f22f7e --- /dev/null +++ b/data/software/tr/transana.json @@ -0,0 +1,18 @@ +{ + "slug": "transana", + "name": "Transana", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7833760" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [ + "Python" + ], + "licenses": [ + "GNU General Public License" + ] +} diff --git a/data/software/tr/transcribe.json b/data/software/tr/transcribe.json new file mode 100644 index 000000000000..a0dbaade508a --- /dev/null +++ b/data/software/tr/transcribe.json @@ -0,0 +1,14 @@ +{ + "slug": "transcribe", + "name": "Transcribe", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105076392" + ], + "programming_languages": [ + "Python" + ], + "licenses": [ + "GNU General Public License, version 3.0" + ] +} diff --git a/data/software/tr/transcriberag.json b/data/software/tr/transcriberag.json new file mode 100644 index 000000000000..705e35155478 --- /dev/null +++ b/data/software/tr/transcriberag.json @@ -0,0 +1,18 @@ +{ + "slug": "transcriberag", + "name": "TranscriberAG", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7833912" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [ + "Tcl" + ], + "licenses": [ + "GNU General Public License" + ] +} diff --git a/data/software/tr/transcriva.json b/data/software/tr/transcriva.json new file mode 100644 index 000000000000..96c416c12a13 --- /dev/null +++ b/data/software/tr/transcriva.json @@ -0,0 +1,14 @@ +{ + "slug": "transcriva", + "name": "Transcriva", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105076393" + ], + "operating_systems": [ + "macOS" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/tr/transept.json b/data/software/tr/transept.json new file mode 100644 index 000000000000..8df30d5c04c1 --- /dev/null +++ b/data/software/tr/transept.json @@ -0,0 +1,8 @@ +{ + "slug": "transept", + "name": "Transept", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139831715" + ] +} diff --git a/data/software/tr/transkribus.json b/data/software/tr/transkribus.json new file mode 100644 index 000000000000..cb8ccdab8479 --- /dev/null +++ b/data/software/tr/transkribus.json @@ -0,0 +1,11 @@ +{ + "slug": "transkribus", + "name": "Transkribus", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22937321" + ], + "licenses": [ + "GNU General Public License, version 3.0" + ] +} diff --git a/data/software/tr/translate-docformat.json b/data/software/tr/translate-docformat.json new file mode 100644 index 000000000000..45e03043806e --- /dev/null +++ b/data/software/tr/translate-docformat.json @@ -0,0 +1,8 @@ +{ + "slug": "translate-docformat", + "name": "translate-docformat", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110788315" + ] +} diff --git a/data/software/tr/translatecad.json b/data/software/tr/translatecad.json new file mode 100644 index 000000000000..c90c72d717ef --- /dev/null +++ b/data/software/tr/translatecad.json @@ -0,0 +1,9 @@ +{ + "slug": "translatecad", + "name": "TranslateCAD", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17048702" + ], + "release_date": "2008-01-01" +} diff --git a/data/software/tr/transmart.json b/data/software/tr/transmart.json new file mode 100644 index 000000000000..347097c17e88 --- /dev/null +++ b/data/software/tr/transmart.json @@ -0,0 +1,11 @@ +{ + "slug": "transmart", + "name": "tranSMART", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q51616393" + ], + "developers": [ + "tranSMART Foundation" + ] +} diff --git a/data/software/tr/transmodeler.json b/data/software/tr/transmodeler.json new file mode 100644 index 000000000000..9db85ddd399a --- /dev/null +++ b/data/software/tr/transmodeler.json @@ -0,0 +1,11 @@ +{ + "slug": "transmodeler", + "name": "TransModeler", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17154611" + ], + "developers": [ + "Caliper Corporation" + ] +} diff --git a/data/software/tr/transocean-the-shipping-company.json b/data/software/tr/transocean-the-shipping-company.json new file mode 100644 index 000000000000..0b272150a63b --- /dev/null +++ b/data/software/tr/transocean-the-shipping-company.json @@ -0,0 +1,20 @@ +{ + "slug": "transocean-the-shipping-company", + "name": "TransOcean: The Shipping Company", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q119952215" + ], + "release_date": "2014-09-23", + "developers": [ + "Deck13 Hamburg" + ], + "publishers": [ + "Astragon" + ], + "genres": [ + "strategy video game", + "casual game", + "simulation video game" + ] +} diff --git a/data/software/tr/transparent-language-online.json b/data/software/tr/transparent-language-online.json new file mode 100644 index 000000000000..48b5f1da5ad6 --- /dev/null +++ b/data/software/tr/transparent-language-online.json @@ -0,0 +1,8 @@ +{ + "slug": "transparent-language-online", + "name": "Transparent Language Online", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108403556" + ] +} diff --git a/data/software/tr/transparent-language.json b/data/software/tr/transparent-language.json new file mode 100644 index 000000000000..edef158d5b0d --- /dev/null +++ b/data/software/tr/transparent-language.json @@ -0,0 +1,8 @@ +{ + "slug": "transparent-language", + "name": "Transparent Language", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7834784" + ] +} diff --git a/data/software/tr/transport-protocol-abstraction.json b/data/software/tr/transport-protocol-abstraction.json new file mode 100644 index 000000000000..c9b09eae113b --- /dev/null +++ b/data/software/tr/transport-protocol-abstraction.json @@ -0,0 +1,8 @@ +{ + "slug": "transport-protocol-abstraction", + "name": "Transport/protocol abstraction", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7834838" + ] +} diff --git a/data/software/tr/transportation-economic-development-impact-system.json b/data/software/tr/transportation-economic-development-impact-system.json new file mode 100644 index 000000000000..0d6356f086cd --- /dev/null +++ b/data/software/tr/transportation-economic-development-impact-system.json @@ -0,0 +1,11 @@ +{ + "slug": "transportation-economic-development-impact-system", + "name": "Transportation Economic Development Impact System", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7835168" + ], + "developers": [ + "EBP US" + ] +} diff --git a/data/software/tr/transterpreter.json b/data/software/tr/transterpreter.json new file mode 100644 index 000000000000..b53b8a587096 --- /dev/null +++ b/data/software/tr/transterpreter.json @@ -0,0 +1,8 @@ +{ + "slug": "transterpreter", + "name": "Transterpreter", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7835377" + ] +} diff --git a/data/software/tr/transyt-7f.json b/data/software/tr/transyt-7f.json new file mode 100644 index 000000000000..6f89e0a0dba6 --- /dev/null +++ b/data/software/tr/transyt-7f.json @@ -0,0 +1,11 @@ +{ + "slug": "transyt-7f", + "name": "TRANSYT-7F", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17149450" + ], + "developers": [ + "University of Florida" + ] +} diff --git a/data/software/tr/trapeze.json b/data/software/tr/trapeze.json new file mode 100644 index 000000000000..be414be1ae66 --- /dev/null +++ b/data/software/tr/trapeze.json @@ -0,0 +1,8 @@ +{ + "slug": "trapeze", + "name": "Trapeze", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123358604" + ] +} diff --git a/data/software/tr/trash-q103410350.json b/data/software/tr/trash-q103410350.json new file mode 100644 index 000000000000..acd10c61db38 --- /dev/null +++ b/data/software/tr/trash-q103410350.json @@ -0,0 +1,11 @@ +{ + "slug": "trash-q103410350", + "name": "trash", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q103410350" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/tr/trash.json b/data/software/tr/trash.json new file mode 100644 index 000000000000..27e6914adb35 --- /dev/null +++ b/data/software/tr/trash.json @@ -0,0 +1,8 @@ +{ + "slug": "trash", + "name": "trash", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6503178" + ] +} diff --git a/data/software/tr/trashbox-ru.json b/data/software/tr/trashbox-ru.json new file mode 100644 index 000000000000..875e429d555a --- /dev/null +++ b/data/software/tr/trashbox-ru.json @@ -0,0 +1,8 @@ +{ + "slug": "trashbox-ru", + "name": "Trashbox.ru", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117745588" + ] +} diff --git a/data/software/tr/trau.json b/data/software/tr/trau.json new file mode 100644 index 000000000000..a440c8134bb8 --- /dev/null +++ b/data/software/tr/trau.json @@ -0,0 +1,8 @@ +{ + "slug": "trau", + "name": "TRAU", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2645731" + ] +} diff --git a/data/software/tr/traveljournal-companion.json b/data/software/tr/traveljournal-companion.json new file mode 100644 index 000000000000..cd47fe3dce8b --- /dev/null +++ b/data/software/tr/traveljournal-companion.json @@ -0,0 +1,12 @@ +{ + "slug": "traveljournal-companion", + "name": "TravelJournal Companion", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140314813" + ], + "operating_systems": [ + "web platform", + "web application" + ] +} diff --git a/data/software/tr/traveltime-maps.json b/data/software/tr/traveltime-maps.json new file mode 100644 index 000000000000..bc790f434eb7 --- /dev/null +++ b/data/software/tr/traveltime-maps.json @@ -0,0 +1,8 @@ +{ + "slug": "traveltime-maps", + "name": "TravelTime Maps", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084678" + ] +} diff --git a/data/software/tr/traverse.json b/data/software/tr/traverse.json new file mode 100644 index 000000000000..2d45d3b1d809 --- /dev/null +++ b/data/software/tr/traverse.json @@ -0,0 +1,8 @@ +{ + "slug": "traverse", + "name": "TRAVERSE", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7671286" + ] +} diff --git a/data/software/tr/travesty.json b/data/software/tr/travesty.json new file mode 100644 index 000000000000..7596bdf4e8ac --- /dev/null +++ b/data/software/tr/travesty.json @@ -0,0 +1,12 @@ +{ + "slug": "travesty", + "name": "TRAVESTY", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125523490" + ], + "developers": [ + "Joseph O'Rourke", + "Hugh Kenner" + ] +} diff --git a/data/software/tr/travis-listener.json b/data/software/tr/travis-listener.json new file mode 100644 index 000000000000..1a5d90d781f5 --- /dev/null +++ b/data/software/tr/travis-listener.json @@ -0,0 +1,11 @@ +{ + "slug": "travis-listener", + "name": "Travis-Listener", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127485760" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/tr/travis.json b/data/software/tr/travis.json new file mode 100644 index 000000000000..91e81936d814 --- /dev/null +++ b/data/software/tr/travis.json @@ -0,0 +1,11 @@ +{ + "slug": "travis", + "name": "trAVis", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105076394" + ], + "licenses": [ + "Affero General Public License" + ] +} diff --git a/data/software/tr/traviz.json b/data/software/tr/traviz.json new file mode 100644 index 000000000000..e862d08a5d88 --- /dev/null +++ b/data/software/tr/traviz.json @@ -0,0 +1,8 @@ +{ + "slug": "traviz", + "name": "TRAViz", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084679" + ] +} diff --git a/data/software/tr/trax.json b/data/software/tr/trax.json new file mode 100644 index 000000000000..afb3f7ef2c03 --- /dev/null +++ b/data/software/tr/trax.json @@ -0,0 +1,11 @@ +{ + "slug": "trax", + "name": "Trax", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7836462" + ], + "developers": [ + "Passport Designs" + ] +} diff --git a/data/software/tr/treatwell-connect.json b/data/software/tr/treatwell-connect.json new file mode 100644 index 000000000000..10fb7951a8c3 --- /dev/null +++ b/data/software/tr/treatwell-connect.json @@ -0,0 +1,14 @@ +{ + "slug": "treatwell-connect", + "name": "Treatwell Connect", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137900361" + ], + "developers": [ + "Treatwell" + ], + "publishers": [ + "Treatwell" + ] +} diff --git a/data/software/tr/tree-puzzle.json b/data/software/tr/tree-puzzle.json new file mode 100644 index 000000000000..54d3f866ea21 --- /dev/null +++ b/data/software/tr/tree-puzzle.json @@ -0,0 +1,8 @@ +{ + "slug": "tree-puzzle", + "name": "Tree puzzle", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7837628" + ] +} diff --git a/data/software/tr/tree-sitter.json b/data/software/tr/tree-sitter.json new file mode 100644 index 000000000000..5470524b73e0 --- /dev/null +++ b/data/software/tr/tree-sitter.json @@ -0,0 +1,14 @@ +{ + "slug": "tree-sitter", + "name": "Tree-sitter", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111522956" + ], + "developers": [ + "Max Brunsfeld" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/tr/treecc.json b/data/software/tr/treecc.json new file mode 100644 index 000000000000..2485988f126c --- /dev/null +++ b/data/software/tr/treecc.json @@ -0,0 +1,8 @@ +{ + "slug": "treecc", + "name": "treecc", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60864957" + ] +} diff --git a/data/software/tr/treefinder.json b/data/software/tr/treefinder.json new file mode 100644 index 000000000000..d158fce23231 --- /dev/null +++ b/data/software/tr/treefinder.json @@ -0,0 +1,12 @@ +{ + "slug": "treefinder", + "name": "Treefinder", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7837661" + ], + "release_date": "2004-01-01", + "developers": [ + "Gangolf Jobb" + ] +} diff --git a/data/software/tr/treeio.json b/data/software/tr/treeio.json new file mode 100644 index 000000000000..85223e461751 --- /dev/null +++ b/data/software/tr/treeio.json @@ -0,0 +1,14 @@ +{ + "slug": "treeio", + "name": "treeio", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112338859" + ], + "programming_languages": [ + "R" + ], + "licenses": [ + "Artistic License 2.0" + ] +} diff --git a/data/software/tr/treetagger.json b/data/software/tr/treetagger.json new file mode 100644 index 000000000000..a755b42fa733 --- /dev/null +++ b/data/software/tr/treetagger.json @@ -0,0 +1,8 @@ +{ + "slug": "treetagger", + "name": "TreeTagger", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084680" + ] +} diff --git a/data/software/tr/trell.json b/data/software/tr/trell.json new file mode 100644 index 000000000000..29a9bc7d2a16 --- /dev/null +++ b/data/software/tr/trell.json @@ -0,0 +1,8 @@ +{ + "slug": "trell", + "name": "Trell", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105773279" + ] +} diff --git a/data/software/tr/trendalyzer.json b/data/software/tr/trendalyzer.json new file mode 100644 index 000000000000..e06c73e622d6 --- /dev/null +++ b/data/software/tr/trendalyzer.json @@ -0,0 +1,16 @@ +{ + "slug": "trendalyzer", + "name": "Trendalyzer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q637990" + ], + "developers": [ + "Gapminder Foundation", + "Anna Rosling Rönnlund", + "Ola Rosling" + ], + "publishers": [ + "Gapminder Foundation" + ] +} diff --git a/data/software/tr/trendio-com.json b/data/software/tr/trendio-com.json new file mode 100644 index 000000000000..48c14612a42d --- /dev/null +++ b/data/software/tr/trendio-com.json @@ -0,0 +1,8 @@ +{ + "slug": "trendio-com", + "name": "Trendio.com", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7838289" + ] +} diff --git a/data/software/tr/trendminer.json b/data/software/tr/trendminer.json new file mode 100644 index 000000000000..fab2dff9ff88 --- /dev/null +++ b/data/software/tr/trendminer.json @@ -0,0 +1,8 @@ +{ + "slug": "trendminer", + "name": "TrendMiner", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135968380" + ] +} diff --git a/data/software/tr/trevismd-statannotations-v0-5.json b/data/software/tr/trevismd-statannotations-v0-5.json new file mode 100644 index 000000000000..4aba89eef5cf --- /dev/null +++ b/data/software/tr/trevismd-statannotations-v0-5.json @@ -0,0 +1,9 @@ +{ + "slug": "trevismd-statannotations-v0-5", + "name": "trevismd/statannotations: v0.5", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122703630" + ], + "release_date": "2022-10-16" +} diff --git a/data/software/tr/tribe-flood-network.json b/data/software/tr/tribe-flood-network.json new file mode 100644 index 000000000000..79488eb97d9e --- /dev/null +++ b/data/software/tr/tribe-flood-network.json @@ -0,0 +1,12 @@ +{ + "slug": "tribe-flood-network", + "name": "Tribe Flood Network", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7840362" + ], + "operating_systems": [ + "Solaris", + "Microsoft Windows" + ] +} diff --git a/data/software/tr/tricentis-tosca.json b/data/software/tr/tricentis-tosca.json new file mode 100644 index 000000000000..dfffc628afa5 --- /dev/null +++ b/data/software/tr/tricentis-tosca.json @@ -0,0 +1,14 @@ +{ + "slug": "tricentis-tosca", + "name": "Tricentis Tosca", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q29364616" + ], + "developers": [ + "Tricentis" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/tr/tricon.json b/data/software/tr/tricon.json new file mode 100644 index 000000000000..59407eab78f1 --- /dev/null +++ b/data/software/tr/tricon.json @@ -0,0 +1,8 @@ +{ + "slug": "tricon", + "name": "TRICON", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087751" + ] +} diff --git a/data/software/tr/trid.json b/data/software/tr/trid.json new file mode 100644 index 000000000000..935b4c0d0762 --- /dev/null +++ b/data/software/tr/trid.json @@ -0,0 +1,11 @@ +{ + "slug": "trid", + "name": "TrID", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q41799265" + ], + "programming_languages": [ + "FreeBASIC" + ] +} diff --git a/data/software/tr/trigml.json b/data/software/tr/trigml.json new file mode 100644 index 000000000000..65ff511811ce --- /dev/null +++ b/data/software/tr/trigml.json @@ -0,0 +1,8 @@ +{ + "slug": "trigml", + "name": "TrigML", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7841663" + ] +} diff --git a/data/software/tr/trimble-3d-warehouse.json b/data/software/tr/trimble-3d-warehouse.json new file mode 100644 index 000000000000..f49ee27e2fa1 --- /dev/null +++ b/data/software/tr/trimble-3d-warehouse.json @@ -0,0 +1,8 @@ +{ + "slug": "trimble-3d-warehouse", + "name": "Trimble 3D Warehouse", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1537675" + ] +} diff --git a/data/software/tr/trimension.json b/data/software/tr/trimension.json new file mode 100644 index 000000000000..0cc55314b7ea --- /dev/null +++ b/data/software/tr/trimension.json @@ -0,0 +1,11 @@ +{ + "slug": "trimension", + "name": "Trimension", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7842171" + ], + "developers": [ + "Koninklijke Philips NV" + ] +} diff --git a/data/software/tr/trimmomatic.json b/data/software/tr/trimmomatic.json new file mode 100644 index 000000000000..036bfac321e9 --- /dev/null +++ b/data/software/tr/trimmomatic.json @@ -0,0 +1,8 @@ +{ + "slug": "trimmomatic", + "name": "Trimmomatic", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118399292" + ] +} diff --git a/data/software/tr/tringme.json b/data/software/tr/tringme.json new file mode 100644 index 000000000000..1c7ea295782f --- /dev/null +++ b/data/software/tr/tringme.json @@ -0,0 +1,8 @@ +{ + "slug": "tringme", + "name": "TringMe", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18354509" + ] +} diff --git a/data/software/tr/trino.json b/data/software/tr/trino.json new file mode 100644 index 000000000000..be0f7fa1e29c --- /dev/null +++ b/data/software/tr/trino.json @@ -0,0 +1,19 @@ +{ + "slug": "trino", + "name": "Trino", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110808774" + ], + "developers": [ + "Martin Traverso", + "David A. Phillips", + "Piotr Findeisen" + ], + "programming_languages": [ + "Java" + ], + "licenses": [ + "Apache Software License 2.0" + ] +} diff --git a/data/software/tr/trip-a-tron.json b/data/software/tr/trip-a-tron.json new file mode 100644 index 000000000000..b1b049a7ffe0 --- /dev/null +++ b/data/software/tr/trip-a-tron.json @@ -0,0 +1,8 @@ +{ + "slug": "trip-a-tron", + "name": "Trip-a-Tron", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17049046" + ] +} diff --git a/data/software/tr/trip-database.json b/data/software/tr/trip-database.json new file mode 100644 index 000000000000..a9f8882a068c --- /dev/null +++ b/data/software/tr/trip-database.json @@ -0,0 +1,11 @@ +{ + "slug": "trip-database", + "name": "TRIP Database", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7671401" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/tr/trismegistos-data-services.json b/data/software/tr/trismegistos-data-services.json new file mode 100644 index 000000000000..3ea03e1dcbc8 --- /dev/null +++ b/data/software/tr/trismegistos-data-services.json @@ -0,0 +1,8 @@ +{ + "slug": "trismegistos-data-services", + "name": "Trismegistos Data Services", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084682" + ] +} diff --git a/data/software/tr/trivial-gray-streams.json b/data/software/tr/trivial-gray-streams.json new file mode 100644 index 000000000000..150dc97a5834 --- /dev/null +++ b/data/software/tr/trivial-gray-streams.json @@ -0,0 +1,11 @@ +{ + "slug": "trivial-gray-streams", + "name": "trivial-gray-streams", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975523" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/tr/troff.json b/data/software/tr/troff.json new file mode 100644 index 000000000000..fca24c243c42 --- /dev/null +++ b/data/software/tr/troff.json @@ -0,0 +1,15 @@ +{ + "slug": "troff", + "name": "troff", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q307306" + ], + "operating_systems": [ + "Plan 9", + "Unix-like operating system" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/tr/tron.json b/data/software/tr/tron.json new file mode 100644 index 000000000000..15f4b5263076 --- /dev/null +++ b/data/software/tr/tron.json @@ -0,0 +1,11 @@ +{ + "slug": "tron", + "name": "Tron", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q47134419" + ], + "developers": [ + "TRON Foundation" + ] +} diff --git a/data/software/tr/tropes.json b/data/software/tr/tropes.json new file mode 100644 index 000000000000..001ee6fdac37 --- /dev/null +++ b/data/software/tr/tropes.json @@ -0,0 +1,8 @@ +{ + "slug": "tropes", + "name": "Tropes", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084683" + ] +} diff --git a/data/software/tr/tropy.json b/data/software/tr/tropy.json new file mode 100644 index 000000000000..6191aad9307b --- /dev/null +++ b/data/software/tr/tropy.json @@ -0,0 +1,8 @@ +{ + "slug": "tropy", + "name": "Tropy", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q56278333" + ] +} diff --git a/data/software/tr/truck-factor.json b/data/software/tr/truck-factor.json new file mode 100644 index 000000000000..6398f8c4263b --- /dev/null +++ b/data/software/tr/truck-factor.json @@ -0,0 +1,11 @@ +{ + "slug": "truck-factor", + "name": "Truck-Factor", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127474950" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/tr/true-north-budgeting.json b/data/software/tr/true-north-budgeting.json new file mode 100644 index 000000000000..bb954a8a663f --- /dev/null +++ b/data/software/tr/true-north-budgeting.json @@ -0,0 +1,18 @@ +{ + "slug": "true-north-budgeting", + "name": "True North Budgeting", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138571842" + ], + "release_date": "2025-01-01", + "developers": [ + "True North Budgeting" + ], + "programming_languages": [ + "React" + ], + "genres": [ + "personal finance" + ] +} diff --git a/data/software/tr/truecaller.json b/data/software/tr/truecaller.json new file mode 100644 index 000000000000..911ba52aea9f --- /dev/null +++ b/data/software/tr/truecaller.json @@ -0,0 +1,9 @@ +{ + "slug": "truecaller", + "name": "TrueCaller", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q15918054" + ], + "release_date": "2009-07-01" +} diff --git a/data/software/tr/trueconf.json b/data/software/tr/trueconf.json new file mode 100644 index 000000000000..ebb25212004f --- /dev/null +++ b/data/software/tr/trueconf.json @@ -0,0 +1,8 @@ +{ + "slug": "trueconf", + "name": "TrueConf", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q83472435" + ] +} diff --git a/data/software/tr/trueprint.json b/data/software/tr/trueprint.json new file mode 100644 index 000000000000..8da6e849956f --- /dev/null +++ b/data/software/tr/trueprint.json @@ -0,0 +1,8 @@ +{ + "slug": "trueprint", + "name": "Trueprint", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76184699" + ] +} diff --git a/data/software/tr/truescreen.json b/data/software/tr/truescreen.json new file mode 100644 index 000000000000..6e3885709c16 --- /dev/null +++ b/data/software/tr/truescreen.json @@ -0,0 +1,11 @@ +{ + "slug": "truescreen", + "name": "TrueScreen", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138661307" + ], + "operating_systems": [ + "iOS" + ] +} diff --git a/data/software/tr/truespace.json b/data/software/tr/truespace.json new file mode 100644 index 000000000000..12e2ccf2a519 --- /dev/null +++ b/data/software/tr/truespace.json @@ -0,0 +1,8 @@ +{ + "slug": "truespace", + "name": "TrueSpace", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1027000" + ] +} diff --git a/data/software/tr/truewiki.json b/data/software/tr/truewiki.json new file mode 100644 index 000000000000..5dffb5fa6a11 --- /dev/null +++ b/data/software/tr/truewiki.json @@ -0,0 +1,11 @@ +{ + "slug": "truewiki", + "name": "TrueWiki", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116924150" + ], + "developers": [ + "Patric Stout" + ] +} diff --git a/data/software/tr/trumpet-winsock.json b/data/software/tr/trumpet-winsock.json new file mode 100644 index 000000000000..4e66f9ac0cea --- /dev/null +++ b/data/software/tr/trumpet-winsock.json @@ -0,0 +1,11 @@ +{ + "slug": "trumpet-winsock", + "name": "Trumpet Winsock", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109381492" + ], + "operating_systems": [ + "Windows 3.x" + ] +} diff --git a/data/software/tr/trust-graph.json b/data/software/tr/trust-graph.json new file mode 100644 index 000000000000..9a38e718cc59 --- /dev/null +++ b/data/software/tr/trust-graph.json @@ -0,0 +1,11 @@ +{ + "slug": "trust-graph", + "name": "Trust Graph", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138859511" + ], + "developers": [ + "Incode" + ] +} diff --git a/data/software/tr/trustbox.json b/data/software/tr/trustbox.json new file mode 100644 index 000000000000..d87e6219feee --- /dev/null +++ b/data/software/tr/trustbox.json @@ -0,0 +1,11 @@ +{ + "slug": "trustbox", + "name": "Trustbox", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q29098198" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/tr/trustedsource.json b/data/software/tr/trustedsource.json new file mode 100644 index 000000000000..d94745f89cf2 --- /dev/null +++ b/data/software/tr/trustedsource.json @@ -0,0 +1,11 @@ +{ + "slug": "trustedsource", + "name": "TrustedSource", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7848179" + ], + "developers": [ + "McAfee, LLC" + ] +} diff --git a/data/software/tr/trustgate-ai.json b/data/software/tr/trustgate-ai.json new file mode 100644 index 000000000000..d90a2c9bc551 --- /dev/null +++ b/data/software/tr/trustgate-ai.json @@ -0,0 +1,11 @@ +{ + "slug": "trustgate-ai", + "name": "TrustGate AI", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140352443" + ], + "developers": [ + "TrustGate AI" + ] +} diff --git a/data/software/ts/tscript.json b/data/software/ts/tscript.json new file mode 100644 index 000000000000..9496126211df --- /dev/null +++ b/data/software/ts/tscript.json @@ -0,0 +1,8 @@ +{ + "slug": "tscript", + "name": "TScript", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17155042" + ] +} diff --git a/data/software/ts/tsheets.json b/data/software/ts/tsheets.json new file mode 100644 index 000000000000..0bed4c23c555 --- /dev/null +++ b/data/software/ts/tsheets.json @@ -0,0 +1,8 @@ +{ + "slug": "tsheets", + "name": "TSheets", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7671813" + ] +} diff --git a/data/software/ts/tsmuxer.json b/data/software/ts/tsmuxer.json new file mode 100644 index 000000000000..6d9f884cc7b2 --- /dev/null +++ b/data/software/ts/tsmuxer.json @@ -0,0 +1,11 @@ +{ + "slug": "tsmuxer", + "name": "tsMuxer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120152284" + ], + "licenses": [ + "Apache Software License 2.0" + ] +} diff --git a/data/software/ts/tsp.json b/data/software/ts/tsp.json new file mode 100644 index 000000000000..f836cf29feb1 --- /dev/null +++ b/data/software/ts/tsp.json @@ -0,0 +1,8 @@ +{ + "slug": "tsp", + "name": "TSP", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16947733" + ] +} diff --git a/data/software/ts/tsuita.json b/data/software/ts/tsuita.json new file mode 100644 index 000000000000..52f41d1cf77e --- /dev/null +++ b/data/software/ts/tsuita.json @@ -0,0 +1,8 @@ +{ + "slug": "tsuita", + "name": "Tsuita", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q132786009" + ] +} diff --git a/data/software/tt/ttm-57-sl.json b/data/software/tt/ttm-57-sl.json new file mode 100644 index 000000000000..7cc588c587d7 --- /dev/null +++ b/data/software/tt/ttm-57-sl.json @@ -0,0 +1,8 @@ +{ + "slug": "ttm-57-sl", + "name": "TTM 57 SL", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7671957" + ] +} diff --git a/data/software/tt/ttpod.json b/data/software/tt/ttpod.json new file mode 100644 index 000000000000..f855b0bc4a31 --- /dev/null +++ b/data/software/tt/ttpod.json @@ -0,0 +1,13 @@ +{ + "slug": "ttpod", + "name": "TTPOD", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10939323" + ], + "release_date": "2007-01-01", + "operating_systems": [ + "Symbian", + "iOS" + ] +} diff --git a/data/software/tu/tu-me.json b/data/software/tu/tu-me.json new file mode 100644 index 000000000000..abda6b430c84 --- /dev/null +++ b/data/software/tu/tu-me.json @@ -0,0 +1,8 @@ +{ + "slug": "tu-me", + "name": "TU Me", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7672061" + ] +} diff --git a/data/software/tu/tucan-manager.json b/data/software/tu/tucan-manager.json new file mode 100644 index 000000000000..7688bfe7f4fe --- /dev/null +++ b/data/software/tu/tucan-manager.json @@ -0,0 +1,8 @@ +{ + "slug": "tucan-manager", + "name": "Tucan Manager", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4051858" + ] +} diff --git a/data/software/tu/tucnak.json b/data/software/tu/tucnak.json new file mode 100644 index 000000000000..7b663b9ede1f --- /dev/null +++ b/data/software/tu/tucnak.json @@ -0,0 +1,8 @@ +{ + "slug": "tucnak", + "name": "tucnak", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63064792" + ] +} diff --git a/data/software/tu/tuio-online-administrators-support-system.json b/data/software/tu/tuio-online-administrators-support-system.json new file mode 100644 index 000000000000..e631e7cfef0a --- /dev/null +++ b/data/software/tu/tuio-online-administrators-support-system.json @@ -0,0 +1,8 @@ +{ + "slug": "tuio-online-administrators-support-system", + "name": "TUIO Online Administrators Support System", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136750857" + ] +} diff --git a/data/software/tu/tuio-online-fundraising-platform-for-schools.json b/data/software/tu/tuio-online-fundraising-platform-for-schools.json new file mode 100644 index 000000000000..1188dfba593c --- /dev/null +++ b/data/software/tu/tuio-online-fundraising-platform-for-schools.json @@ -0,0 +1,11 @@ +{ + "slug": "tuio-online-fundraising-platform-for-schools", + "name": "TUIO Online Fundraising Platform For Schools", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136687297" + ], + "developers": [ + "TUIO" + ] +} diff --git a/data/software/tu/tuio-online-parent-support-system.json b/data/software/tu/tuio-online-parent-support-system.json new file mode 100644 index 000000000000..1a8eb3c3c336 --- /dev/null +++ b/data/software/tu/tuio-online-parent-support-system.json @@ -0,0 +1,8 @@ +{ + "slug": "tuio-online-parent-support-system", + "name": "TUIO Online Parent Support System", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136729802" + ] +} diff --git a/data/software/tu/tuio-online-tuition-management.json b/data/software/tu/tuio-online-tuition-management.json new file mode 100644 index 000000000000..57779eec0271 --- /dev/null +++ b/data/software/tu/tuio-online-tuition-management.json @@ -0,0 +1,11 @@ +{ + "slug": "tuio-online-tuition-management", + "name": "TUIO Online Tuition Management", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136687184" + ], + "developers": [ + "TUIO" + ] +} diff --git a/data/software/tu/tuio-student-enrollment-management-system.json b/data/software/tu/tuio-student-enrollment-management-system.json new file mode 100644 index 000000000000..55dd78bbbcd9 --- /dev/null +++ b/data/software/tu/tuio-student-enrollment-management-system.json @@ -0,0 +1,11 @@ +{ + "slug": "tuio-student-enrollment-management-system", + "name": "TUIO Student Enrollment Management System", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136677564" + ], + "developers": [ + "TUIO" + ] +} diff --git a/data/software/tu/tuio-student-information-system.json b/data/software/tu/tuio-student-information-system.json new file mode 100644 index 000000000000..f947238bdb63 --- /dev/null +++ b/data/software/tu/tuio-student-information-system.json @@ -0,0 +1,11 @@ +{ + "slug": "tuio-student-information-system", + "name": "TUIO Student Information System", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136677525" + ], + "developers": [ + "TUIO" + ] +} diff --git a/data/software/tu/tuio.json b/data/software/tu/tuio.json new file mode 100644 index 000000000000..73ccf966d2c6 --- /dev/null +++ b/data/software/tu/tuio.json @@ -0,0 +1,8 @@ +{ + "slug": "tuio", + "name": "TUIO", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136649061" + ] +} diff --git a/data/software/tu/tuiopay.json b/data/software/tu/tuiopay.json new file mode 100644 index 000000000000..260339551f24 --- /dev/null +++ b/data/software/tu/tuiopay.json @@ -0,0 +1,8 @@ +{ + "slug": "tuiopay", + "name": "Tuiopay", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136649268" + ] +} diff --git a/data/software/tu/tuition-management-software.json b/data/software/tu/tuition-management-software.json new file mode 100644 index 000000000000..d5b0204e2588 --- /dev/null +++ b/data/software/tu/tuition-management-software.json @@ -0,0 +1,8 @@ +{ + "slug": "tuition-management-software", + "name": "tuition management software", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136682675" + ] +} diff --git a/data/software/tu/tume.json b/data/software/tu/tume.json new file mode 100644 index 000000000000..7219f13ca64a --- /dev/null +++ b/data/software/tu/tume.json @@ -0,0 +1,14 @@ +{ + "slug": "tume", + "name": "TUME", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7672028" + ], + "developers": [ + "Echidna Software Development" + ], + "licenses": [ + "Mozilla Public License, version 1.1" + ] +} diff --git a/data/software/tu/tuneglue.json b/data/software/tu/tuneglue.json new file mode 100644 index 000000000000..c5963329f9a1 --- /dev/null +++ b/data/software/tu/tuneglue.json @@ -0,0 +1,8 @@ +{ + "slug": "tuneglue", + "name": "TuneGlue", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084684" + ] +} diff --git a/data/software/tu/tunesat.json b/data/software/tu/tunesat.json new file mode 100644 index 000000000000..b075ef93225a --- /dev/null +++ b/data/software/tu/tunesat.json @@ -0,0 +1,8 @@ +{ + "slug": "tunesat", + "name": "TuneSat", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17120807" + ] +} diff --git a/data/software/tu/tunis.json b/data/software/tu/tunis.json new file mode 100644 index 000000000000..69eb0b5d1765 --- /dev/null +++ b/data/software/tu/tunis.json @@ -0,0 +1,14 @@ +{ + "slug": "tunis", + "name": "TUNIS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7672034" + ], + "developers": [ + "University of Toronto" + ], + "programming_languages": [ + "Concurrent Euclid" + ] +} diff --git a/data/software/tu/tunngle.json b/data/software/tu/tunngle.json new file mode 100644 index 000000000000..8266491aec99 --- /dev/null +++ b/data/software/tu/tunngle.json @@ -0,0 +1,8 @@ +{ + "slug": "tunngle", + "name": "Tunngle", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q477773" + ] +} diff --git a/data/software/tu/tuotu.json b/data/software/tu/tuotu.json new file mode 100644 index 000000000000..49c133799f5f --- /dev/null +++ b/data/software/tu/tuotu.json @@ -0,0 +1,8 @@ +{ + "slug": "tuotu", + "name": "Tuotu", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3542207" + ] +} diff --git a/data/software/tu/turbo-vision.json b/data/software/tu/turbo-vision.json new file mode 100644 index 000000000000..09f91c02e742 --- /dev/null +++ b/data/software/tu/turbo-vision.json @@ -0,0 +1,14 @@ +{ + "slug": "turbo-vision", + "name": "Turbo Vision", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1571571" + ], + "developers": [ + "Borland" + ], + "licenses": [ + "public-domain software" + ] +} diff --git a/data/software/tu/turbo.json b/data/software/tu/turbo.json new file mode 100644 index 000000000000..b0a8ba2679d2 --- /dev/null +++ b/data/software/tu/turbo.json @@ -0,0 +1,11 @@ +{ + "slug": "turbo", + "name": "Turbo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7579146" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/tu/turbopentest.json b/data/software/tu/turbopentest.json new file mode 100644 index 000000000000..be6cdd28730c --- /dev/null +++ b/data/software/tu/turbopentest.json @@ -0,0 +1,8 @@ +{ + "slug": "turbopentest", + "name": "TurboPentest", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138796034" + ] +} diff --git a/data/software/tu/turboprint.json b/data/software/tu/turboprint.json new file mode 100644 index 000000000000..14cc82ab65d9 --- /dev/null +++ b/data/software/tu/turboprint.json @@ -0,0 +1,11 @@ +{ + "slug": "turboprint", + "name": "TurboPrint", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7853787" + ], + "operating_systems": [ + "AmigaOS" + ] +} diff --git a/data/software/tu/turbotax.json b/data/software/tu/turbotax.json new file mode 100644 index 000000000000..33d4b67a201f --- /dev/null +++ b/data/software/tu/turbotax.json @@ -0,0 +1,11 @@ +{ + "slug": "turbotax", + "name": "TurboTax", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q14477864" + ], + "developers": [ + "Intuit" + ] +} diff --git a/data/software/tu/turbovnc.json b/data/software/tu/turbovnc.json new file mode 100644 index 000000000000..4d3bdfca154c --- /dev/null +++ b/data/software/tu/turbovnc.json @@ -0,0 +1,14 @@ +{ + "slug": "turbovnc", + "name": "TurboVNC", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120305587" + ], + "operating_systems": [ + "Microsoft Windows" + ], + "licenses": [ + "GNU General Public License, version 2.0" + ] +} diff --git a/data/software/tu/turbowarp.json b/data/software/tu/turbowarp.json new file mode 100644 index 000000000000..e03b84b35162 --- /dev/null +++ b/data/software/tu/turbowarp.json @@ -0,0 +1,11 @@ +{ + "slug": "turbowarp", + "name": "TurboWarp", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108540806" + ], + "licenses": [ + "GNU General Public License" + ] +} diff --git a/data/software/tu/turning-the-pages.json b/data/software/tu/turning-the-pages.json new file mode 100644 index 000000000000..4c49307c009c --- /dev/null +++ b/data/software/tu/turning-the-pages.json @@ -0,0 +1,8 @@ +{ + "slug": "turning-the-pages", + "name": "Turning the Pages", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7856054" + ] +} diff --git a/data/software/tu/turnstile.json b/data/software/tu/turnstile.json new file mode 100644 index 000000000000..60839a1caaf0 --- /dev/null +++ b/data/software/tu/turnstile.json @@ -0,0 +1,11 @@ +{ + "slug": "turnstile", + "name": "turnstile", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116695031" + ], + "licenses": [ + "2-clause BSD License" + ] +} diff --git a/data/software/tu/turntool.json b/data/software/tu/turntool.json new file mode 100644 index 000000000000..4675cf9ce09d --- /dev/null +++ b/data/software/tu/turntool.json @@ -0,0 +1,8 @@ +{ + "slug": "turntool", + "name": "TurnTool", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084685" + ] +} diff --git a/data/software/tu/tusk.json b/data/software/tu/tusk.json new file mode 100644 index 000000000000..295eed929e89 --- /dev/null +++ b/data/software/tu/tusk.json @@ -0,0 +1,11 @@ +{ + "slug": "tusk", + "name": "tusk", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q59607919" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/tu/tustep.json b/data/software/tu/tustep.json new file mode 100644 index 000000000000..8ef230a35bbe --- /dev/null +++ b/data/software/tu/tustep.json @@ -0,0 +1,11 @@ +{ + "slug": "tustep", + "name": "TUSTEP", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1309503" + ], + "licenses": [ + "BSD licenses" + ] +} diff --git a/data/software/tu/tuxanci.json b/data/software/tu/tuxanci.json new file mode 100644 index 000000000000..07f3515d1c0d --- /dev/null +++ b/data/software/tu/tuxanci.json @@ -0,0 +1,8 @@ +{ + "slug": "tuxanci", + "name": "tuxanci", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975524" + ] +} diff --git a/data/software/tu/tuxedo-suite.json b/data/software/tu/tuxedo-suite.json new file mode 100644 index 000000000000..8ef9a56c39ed --- /dev/null +++ b/data/software/tu/tuxedo-suite.json @@ -0,0 +1,8 @@ +{ + "slug": "tuxedo-suite", + "name": "Tuxedo Suite", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122830175" + ] +} diff --git a/data/software/tv/tv-no-tomo-channel.json b/data/software/tv/tv-no-tomo-channel.json new file mode 100644 index 000000000000..0d9531dcf57e --- /dev/null +++ b/data/software/tv/tv-no-tomo-channel.json @@ -0,0 +1,15 @@ +{ + "slug": "tv-no-tomo-channel", + "name": "TV no Tomo Channel", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11319532" + ], + "release_date": "2008-03-04", + "developers": [ + "Nintendo" + ], + "publishers": [ + "Nintendo" + ] +} diff --git a/data/software/tv/tvants.json b/data/software/tv/tvants.json new file mode 100644 index 000000000000..3039da35acaf --- /dev/null +++ b/data/software/tv/tvants.json @@ -0,0 +1,8 @@ +{ + "slug": "tvants", + "name": "TVants", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8017118" + ] +} diff --git a/data/software/tv/tver.json b/data/software/tv/tver.json new file mode 100644 index 000000000000..a51bca9e01ed --- /dev/null +++ b/data/software/tv/tver.json @@ -0,0 +1,8 @@ +{ + "slug": "tver", + "name": "TVer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22124796" + ] +} diff --git a/data/software/tv/tversity-media-server.json b/data/software/tv/tversity-media-server.json new file mode 100644 index 000000000000..bffc16667bf3 --- /dev/null +++ b/data/software/tv/tversity-media-server.json @@ -0,0 +1,11 @@ +{ + "slug": "tversity-media-server", + "name": "TVersity Media Server", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4050633" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/tw/twapper-keeper.json b/data/software/tw/twapper-keeper.json new file mode 100644 index 000000000000..c482bc309e81 --- /dev/null +++ b/data/software/tw/twapper-keeper.json @@ -0,0 +1,8 @@ +{ + "slug": "twapper-keeper", + "name": "Twapper Keeper", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084686" + ] +} diff --git a/data/software/tw/tweak-ui.json b/data/software/tw/tweak-ui.json new file mode 100644 index 000000000000..db40bb8a627c --- /dev/null +++ b/data/software/tw/tweak-ui.json @@ -0,0 +1,8 @@ +{ + "slug": "tweak-ui", + "name": "Tweak UI", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3124335" + ] +} diff --git a/data/software/tw/tweak7.json b/data/software/tw/tweak7.json new file mode 100644 index 000000000000..f4e6d5538fa0 --- /dev/null +++ b/data/software/tw/tweak7.json @@ -0,0 +1,14 @@ +{ + "slug": "tweak7", + "name": "Tweak7", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7857449" + ], + "developers": [ + "Stardock" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/tw/tween.json b/data/software/tw/tween.json new file mode 100644 index 000000000000..d411cdbb3cee --- /dev/null +++ b/data/software/tw/tween.json @@ -0,0 +1,15 @@ +{ + "slug": "tween", + "name": "Tween", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7857509" + ], + "release_date": "2007-11-21", + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [ + "Visual Basic" + ] +} diff --git a/data/software/tw/tweet-archivist.json b/data/software/tw/tweet-archivist.json new file mode 100644 index 000000000000..a0024b8a6c96 --- /dev/null +++ b/data/software/tw/tweet-archivist.json @@ -0,0 +1,8 @@ +{ + "slug": "tweet-archivist", + "name": "Tweet Archivist", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084687" + ] +} diff --git a/data/software/tw/tweetster.json b/data/software/tw/tweetster.json new file mode 100644 index 000000000000..fbb5c89a162e --- /dev/null +++ b/data/software/tw/tweetster.json @@ -0,0 +1,8 @@ +{ + "slug": "tweetster", + "name": "Tweetster", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084691" + ] +} diff --git a/data/software/tw/twelf.json b/data/software/tw/twelf.json new file mode 100644 index 000000000000..8ee39a67c09f --- /dev/null +++ b/data/software/tw/twelf.json @@ -0,0 +1,8 @@ +{ + "slug": "twelf", + "name": "twelf", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065143" + ] +} diff --git a/data/software/tw/twilight.json b/data/software/tw/twilight.json new file mode 100644 index 000000000000..ce2063ce4c0c --- /dev/null +++ b/data/software/tw/twilight.json @@ -0,0 +1,8 @@ +{ + "slug": "twilight", + "name": "Twilight", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3280651" + ] +} diff --git a/data/software/tw/twin-ai.json b/data/software/tw/twin-ai.json new file mode 100644 index 000000000000..e13609a91333 --- /dev/null +++ b/data/software/tw/twin-ai.json @@ -0,0 +1,14 @@ +{ + "slug": "twin-ai", + "name": "Twin AI", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139861269" + ], + "operating_systems": [ + "iOS" + ], + "genres": [ + "artificial intelligence" + ] +} diff --git a/data/software/tw/twinby.json b/data/software/tw/twinby.json new file mode 100644 index 000000000000..6574eda21e0a --- /dev/null +++ b/data/software/tw/twinby.json @@ -0,0 +1,8 @@ +{ + "slug": "twinby", + "name": "Twinby", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138683949" + ] +} diff --git a/data/software/tw/twinkl-book-club.json b/data/software/tw/twinkl-book-club.json new file mode 100644 index 000000000000..975bef42d238 --- /dev/null +++ b/data/software/tw/twinkl-book-club.json @@ -0,0 +1,8 @@ +{ + "slug": "twinkl-book-club", + "name": "Twinkl Book Club", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106509467" + ] +} diff --git a/data/software/tw/twinkl-boost.json b/data/software/tw/twinkl-boost.json new file mode 100644 index 000000000000..f51609d1d46b --- /dev/null +++ b/data/software/tw/twinkl-boost.json @@ -0,0 +1,8 @@ +{ + "slug": "twinkl-boost", + "name": "Twinkl Boost", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106509328" + ] +} diff --git a/data/software/tw/twinkl-classic.json b/data/software/tw/twinkl-classic.json new file mode 100644 index 000000000000..71369242a6de --- /dev/null +++ b/data/software/tw/twinkl-classic.json @@ -0,0 +1,8 @@ +{ + "slug": "twinkl-classic", + "name": "Twinkl Classic", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106509293" + ] +} diff --git a/data/software/tw/twinkl-create.json b/data/software/tw/twinkl-create.json new file mode 100644 index 000000000000..f0c063da041e --- /dev/null +++ b/data/software/tw/twinkl-create.json @@ -0,0 +1,8 @@ +{ + "slug": "twinkl-create", + "name": "Twinkl Create", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q26132809" + ] +} diff --git a/data/software/tw/twinkl-go.json b/data/software/tw/twinkl-go.json new file mode 100644 index 000000000000..be024b1a9dbc --- /dev/null +++ b/data/software/tw/twinkl-go.json @@ -0,0 +1,8 @@ +{ + "slug": "twinkl-go", + "name": "Twinkl Go!", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106509632" + ] +} diff --git a/data/software/tw/twinkl-handwriting.json b/data/software/tw/twinkl-handwriting.json new file mode 100644 index 000000000000..2f6b2d1a8e22 --- /dev/null +++ b/data/software/tw/twinkl-handwriting.json @@ -0,0 +1,8 @@ +{ + "slug": "twinkl-handwriting", + "name": "Twinkl Handwriting", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106509370" + ] +} diff --git a/data/software/tw/twinkl-inclusion.json b/data/software/tw/twinkl-inclusion.json new file mode 100644 index 000000000000..be8f2ead10d1 --- /dev/null +++ b/data/software/tw/twinkl-inclusion.json @@ -0,0 +1,8 @@ +{ + "slug": "twinkl-inclusion", + "name": "Twinkl Inclusion", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106509006" + ] +} diff --git a/data/software/tw/twinkl-life.json b/data/software/tw/twinkl-life.json new file mode 100644 index 000000000000..53e6f36f45a1 --- /dev/null +++ b/data/software/tw/twinkl-life.json @@ -0,0 +1,8 @@ +{ + "slug": "twinkl-life", + "name": "Twinkl Life", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106509834" + ] +} diff --git a/data/software/tw/twinkl-move.json b/data/software/tw/twinkl-move.json new file mode 100644 index 000000000000..6b933425b497 --- /dev/null +++ b/data/software/tw/twinkl-move.json @@ -0,0 +1,8 @@ +{ + "slug": "twinkl-move", + "name": "Twinkl Move", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106509584" + ] +} diff --git a/data/software/tw/twinkl-newsroom.json b/data/software/tw/twinkl-newsroom.json new file mode 100644 index 000000000000..aba2d38c1fa5 --- /dev/null +++ b/data/software/tw/twinkl-newsroom.json @@ -0,0 +1,8 @@ +{ + "slug": "twinkl-newsroom", + "name": "Twinkl Newsroom", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106509573" + ] +} diff --git a/data/software/tw/twinkl-originals.json b/data/software/tw/twinkl-originals.json new file mode 100644 index 000000000000..ee5b7f576e44 --- /dev/null +++ b/data/software/tw/twinkl-originals.json @@ -0,0 +1,8 @@ +{ + "slug": "twinkl-originals", + "name": "Twinkl Originals", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106509312" + ] +} diff --git a/data/software/tw/twinkl-party.json b/data/software/tw/twinkl-party.json new file mode 100644 index 000000000000..89c1efeabfd9 --- /dev/null +++ b/data/software/tw/twinkl-party.json @@ -0,0 +1,8 @@ +{ + "slug": "twinkl-party", + "name": "Twinkl Party", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106509843" + ] +} diff --git a/data/software/tw/twinkl-phonics.json b/data/software/tw/twinkl-phonics.json new file mode 100644 index 000000000000..53b2621dc608 --- /dev/null +++ b/data/software/tw/twinkl-phonics.json @@ -0,0 +1,8 @@ +{ + "slug": "twinkl-phonics", + "name": "Twinkl Phonics", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106509659" + ] +} diff --git a/data/software/tw/twinkle-bulbs.json b/data/software/tw/twinkle-bulbs.json new file mode 100644 index 000000000000..8676cc15cbe6 --- /dev/null +++ b/data/software/tw/twinkle-bulbs.json @@ -0,0 +1,12 @@ +{ + "slug": "twinkle-bulbs", + "name": "Twinkle Bulbs", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q128253215" + ], + "release_date": "2005-10-24", + "developers": [ + "Barefoot Productions" + ] +} diff --git a/data/software/tw/twinmotion.json b/data/software/tw/twinmotion.json new file mode 100644 index 000000000000..cdbb7222e5ad --- /dev/null +++ b/data/software/tw/twinmotion.json @@ -0,0 +1,8 @@ +{ + "slug": "twinmotion", + "name": "Twinmotion", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3542551" + ] +} diff --git a/data/software/tw/twitter-archiver-google-sheets-add-on.json b/data/software/tw/twitter-archiver-google-sheets-add-on.json new file mode 100644 index 000000000000..75f5e1249af5 --- /dev/null +++ b/data/software/tw/twitter-archiver-google-sheets-add-on.json @@ -0,0 +1,8 @@ +{ + "slug": "twitter-archiver-google-sheets-add-on", + "name": "Twitter Archiver (Google Sheets Add-On)", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084692" + ] +} diff --git a/data/software/tw/twittering-mode.json b/data/software/tw/twittering-mode.json new file mode 100644 index 000000000000..5a061a3107ea --- /dev/null +++ b/data/software/tw/twittering-mode.json @@ -0,0 +1,8 @@ +{ + "slug": "twittering-mode", + "name": "twittering-mode", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975525" + ] +} diff --git a/data/software/tw/twitterpad.json b/data/software/tw/twitterpad.json new file mode 100644 index 000000000000..859c9c46fc24 --- /dev/null +++ b/data/software/tw/twitterpad.json @@ -0,0 +1,8 @@ +{ + "slug": "twitterpad", + "name": "TwitterPad", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084693" + ] +} diff --git a/data/software/tw/twproject.json b/data/software/tw/twproject.json new file mode 100644 index 000000000000..86326ca9d5b2 --- /dev/null +++ b/data/software/tw/twproject.json @@ -0,0 +1,8 @@ +{ + "slug": "twproject", + "name": "Twproject", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7691688" + ] +} diff --git a/data/software/tw/twxplorer.json b/data/software/tw/twxplorer.json new file mode 100644 index 000000000000..45344af96fef --- /dev/null +++ b/data/software/tw/twxplorer.json @@ -0,0 +1,8 @@ +{ + "slug": "twxplorer", + "name": "twXplorer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084694" + ] +} diff --git a/data/software/tx/txm.json b/data/software/tx/txm.json new file mode 100644 index 000000000000..63e2ec84927b --- /dev/null +++ b/data/software/tx/txm.json @@ -0,0 +1,8 @@ +{ + "slug": "txm", + "name": "TXM", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084695" + ] +} diff --git a/data/software/tx/txtweb.json b/data/software/tx/txtweb.json new file mode 100644 index 000000000000..1f3fb940357b --- /dev/null +++ b/data/software/tx/txtweb.json @@ -0,0 +1,8 @@ +{ + "slug": "txtweb", + "name": "TxtWeb", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111915003" + ] +} diff --git a/data/software/ty/type-generalization.json b/data/software/ty/type-generalization.json new file mode 100644 index 000000000000..d24995a5d62d --- /dev/null +++ b/data/software/ty/type-generalization.json @@ -0,0 +1,8 @@ +{ + "slug": "type-generalization", + "name": "Type generalization", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7860903" + ] +} diff --git a/data/software/ty/type-in-program.json b/data/software/ty/type-in-program.json new file mode 100644 index 000000000000..8e878cb1ad7f --- /dev/null +++ b/data/software/ty/type-in-program.json @@ -0,0 +1,8 @@ +{ + "slug": "type-in-program", + "name": "type-in program", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7860618" + ] +} diff --git a/data/software/ty/type4all.json b/data/software/ty/type4all.json new file mode 100644 index 000000000000..b78dbcbedf91 --- /dev/null +++ b/data/software/ty/type4all.json @@ -0,0 +1,17 @@ +{ + "slug": "type4all", + "name": "Type4All", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139586390" + ], + "developers": [ + "AI4All" + ], + "operating_systems": [ + "Microsoft Windows" + ], + "licenses": [ + "Apache Software License 2.0" + ] +} diff --git a/data/software/ty/typecho.json b/data/software/ty/typecho.json new file mode 100644 index 000000000000..d501ed4d174f --- /dev/null +++ b/data/software/ty/typecho.json @@ -0,0 +1,11 @@ +{ + "slug": "typecho", + "name": "Typecho", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10853099" + ], + "licenses": [ + "GNU General Public License, version 2.0" + ] +} diff --git a/data/software/ty/typeeto.json b/data/software/ty/typeeto.json new file mode 100644 index 000000000000..14c769e58f6e --- /dev/null +++ b/data/software/ty/typeeto.json @@ -0,0 +1,11 @@ +{ + "slug": "typeeto", + "name": "Typeeto", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q21463712" + ], + "operating_systems": [ + "OS X Mavericks" + ] +} diff --git a/data/software/ty/typelab-q138870803.json b/data/software/ty/typelab-q138870803.json new file mode 100644 index 000000000000..06a191db3732 --- /dev/null +++ b/data/software/ty/typelab-q138870803.json @@ -0,0 +1,8 @@ +{ + "slug": "typelab-q138870803", + "name": "TypeLab", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138870803" + ] +} diff --git a/data/software/ty/typelab.json b/data/software/ty/typelab.json new file mode 100644 index 000000000000..562482a7a823 --- /dev/null +++ b/data/software/ty/typelab.json @@ -0,0 +1,8 @@ +{ + "slug": "typelab", + "name": "TypeLab", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138348061" + ] +} diff --git a/data/software/ty/typespeed.json b/data/software/ty/typespeed.json new file mode 100644 index 000000000000..61e4b844da02 --- /dev/null +++ b/data/software/ty/typespeed.json @@ -0,0 +1,8 @@ +{ + "slug": "typespeed", + "name": "typespeed", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63064967" + ] +} diff --git a/data/software/ty/typestry.json b/data/software/ty/typestry.json new file mode 100644 index 000000000000..fb6653aff231 --- /dev/null +++ b/data/software/ty/typestry.json @@ -0,0 +1,8 @@ +{ + "slug": "typestry", + "name": "Typestry", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7860968" + ] +} diff --git a/data/software/ty/typhoon-2000.json b/data/software/ty/typhoon-2000.json new file mode 100644 index 000000000000..27db34a51ce1 --- /dev/null +++ b/data/software/ty/typhoon-2000.json @@ -0,0 +1,15 @@ +{ + "slug": "typhoon-2000", + "name": "Typhoon 2000", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17142602" + ], + "release_date": "1994-01-01", + "developers": [ + "NuEdge Development" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/ty/typical.json b/data/software/ty/typical.json new file mode 100644 index 000000000000..a58756c87608 --- /dev/null +++ b/data/software/ty/typical.json @@ -0,0 +1,8 @@ +{ + "slug": "typical", + "name": "Typical", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087752" + ] +} diff --git a/data/software/u-/u-common-c.json b/data/software/u-/u-common-c.json new file mode 100644 index 000000000000..26edeea79d9b --- /dev/null +++ b/data/software/u-/u-common-c.json @@ -0,0 +1,8 @@ +{ + "slug": "u-common-c", + "name": "(u)Common C++", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76183901" + ] +} diff --git a/data/software/u/u.json b/data/software/u/u.json new file mode 100644 index 000000000000..98ae8e945d6b --- /dev/null +++ b/data/software/u/u.json @@ -0,0 +1,15 @@ +{ + "slug": "u", + "name": "U", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22080128" + ], + "developers": [ + "UKTV" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/software/ua/uam-corpustool.json b/data/software/ua/uam-corpustool.json new file mode 100644 index 000000000000..1c53303dc796 --- /dev/null +++ b/data/software/ua/uam-corpustool.json @@ -0,0 +1,8 @@ +{ + "slug": "uam-corpustool", + "name": "UAM CorpusTool", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084696" + ] +} diff --git a/data/software/ua/uam.json b/data/software/ua/uam.json new file mode 100644 index 000000000000..9191609da49f --- /dev/null +++ b/data/software/ua/uam.json @@ -0,0 +1,8 @@ +{ + "slug": "uam", + "name": "uam", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975526" + ] +} diff --git a/data/software/ub/ubasic.json b/data/software/ub/ubasic.json new file mode 100644 index 000000000000..1d6b30a52ebb --- /dev/null +++ b/data/software/ub/ubasic.json @@ -0,0 +1,11 @@ +{ + "slug": "ubasic", + "name": "UBASIC", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4353796" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/ub/ubb-classic.json b/data/software/ub/ubb-classic.json new file mode 100644 index 000000000000..418519d1c1b4 --- /dev/null +++ b/data/software/ub/ubb-classic.json @@ -0,0 +1,8 @@ +{ + "slug": "ubb-classic", + "name": "UBB.classic", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4052113" + ] +} diff --git a/data/software/ub/ubb-threads.json b/data/software/ub/ubb-threads.json new file mode 100644 index 000000000000..81a6be88b219 --- /dev/null +++ b/data/software/ub/ubb-threads.json @@ -0,0 +1,8 @@ +{ + "slug": "ubb-threads", + "name": "UBB.threads", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7863797" + ] +} diff --git a/data/software/ub/uber.json b/data/software/ub/uber.json new file mode 100644 index 000000000000..3791fa3beba3 --- /dev/null +++ b/data/software/ub/uber.json @@ -0,0 +1,11 @@ +{ + "slug": "uber", + "name": "Uber", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q780442" + ], + "developers": [ + "Uber" + ] +} diff --git a/data/software/ub/ubergraph.json b/data/software/ub/ubergraph.json new file mode 100644 index 000000000000..183152022798 --- /dev/null +++ b/data/software/ub/ubergraph.json @@ -0,0 +1,11 @@ +{ + "slug": "ubergraph", + "name": "ubergraph", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117301068" + ], + "licenses": [ + "3-clause BSD License" + ] +} diff --git a/data/software/ub/ubersocial.json b/data/software/ub/ubersocial.json new file mode 100644 index 000000000000..263c4d7e825a --- /dev/null +++ b/data/software/ub/ubersocial.json @@ -0,0 +1,8 @@ +{ + "slug": "ubersocial", + "name": "UberSocial", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q12522901" + ] +} diff --git a/data/software/ub/ubertooth.json b/data/software/ub/ubertooth.json new file mode 100644 index 000000000000..d7679b799acb --- /dev/null +++ b/data/software/ub/ubertooth.json @@ -0,0 +1,8 @@ +{ + "slug": "ubertooth", + "name": "ubertooth", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975527" + ] +} diff --git a/data/software/ub/ubjson.json b/data/software/ub/ubjson.json new file mode 100644 index 000000000000..3cfb12ebaad3 --- /dev/null +++ b/data/software/ub/ubjson.json @@ -0,0 +1,8 @@ +{ + "slug": "ubjson", + "name": "UBJSON", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17144293" + ] +} diff --git a/data/software/ub/ubot-studio.json b/data/software/ub/ubot-studio.json new file mode 100644 index 000000000000..11fe30d47652 --- /dev/null +++ b/data/software/ub/ubot-studio.json @@ -0,0 +1,8 @@ +{ + "slug": "ubot-studio", + "name": "UBot Studio", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17087883" + ] +} diff --git a/data/software/ub/ubuntu-restricted-extras.json b/data/software/ub/ubuntu-restricted-extras.json new file mode 100644 index 000000000000..95a8f024e362 --- /dev/null +++ b/data/software/ub/ubuntu-restricted-extras.json @@ -0,0 +1,8 @@ +{ + "slug": "ubuntu-restricted-extras", + "name": "ubuntu-restricted-extras", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3234758" + ] +} diff --git a/data/software/ub/ubuntu-tweak.json b/data/software/ub/ubuntu-tweak.json new file mode 100644 index 000000000000..4ecf22ea45bf --- /dev/null +++ b/data/software/ub/ubuntu-tweak.json @@ -0,0 +1,11 @@ +{ + "slug": "ubuntu-tweak", + "name": "Ubuntu Tweak", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2145167" + ], + "programming_languages": [ + "Python" + ] +} diff --git a/data/software/uc/uc-browser.json b/data/software/uc/uc-browser.json new file mode 100644 index 000000000000..2cb69fd58b74 --- /dev/null +++ b/data/software/uc/uc-browser.json @@ -0,0 +1,20 @@ +{ + "slug": "uc-browser", + "name": "UC Browser", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2474765" + ], + "release_date": "2004-08-01", + "developers": [ + "UCWeb" + ], + "operating_systems": [ + "Java virtual machine", + "iOS", + "Microsoft Windows" + ], + "programming_languages": [ + "Java" + ] +} diff --git a/data/software/uc/uchardet.json b/data/software/uc/uchardet.json new file mode 100644 index 000000000000..d1673564b29a --- /dev/null +++ b/data/software/uc/uchardet.json @@ -0,0 +1,11 @@ +{ + "slug": "uchardet", + "name": "uchardet", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975528" + ], + "licenses": [ + "Mozilla Public License, version 1.1" + ] +} diff --git a/data/software/uc/ucinet.json b/data/software/uc/ucinet.json new file mode 100644 index 000000000000..5604fc4fe00b --- /dev/null +++ b/data/software/uc/ucinet.json @@ -0,0 +1,8 @@ +{ + "slug": "ucinet", + "name": "UCINET", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084698" + ] +} diff --git a/data/software/uc/ucpp.json b/data/software/uc/ucpp.json new file mode 100644 index 000000000000..6cc00ba847f3 --- /dev/null +++ b/data/software/uc/ucpp.json @@ -0,0 +1,8 @@ +{ + "slug": "ucpp", + "name": "ucpp", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975530" + ] +} diff --git a/data/software/uc/ucsc-xena.json b/data/software/uc/ucsc-xena.json new file mode 100644 index 000000000000..d8f896bd061e --- /dev/null +++ b/data/software/uc/ucsc-xena.json @@ -0,0 +1,8 @@ +{ + "slug": "ucsc-xena", + "name": "UCSC Xena", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q54451859" + ] +} diff --git a/data/software/uc/ucsf-chimera.json b/data/software/uc/ucsf-chimera.json new file mode 100644 index 000000000000..0b9169b64a4b --- /dev/null +++ b/data/software/uc/ucsf-chimera.json @@ -0,0 +1,11 @@ +{ + "slug": "ucsf-chimera", + "name": "UCSF Chimera", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7864121" + ], + "developers": [ + "University of California, San Francisco" + ] +} diff --git a/data/software/ud/udaanbill.json b/data/software/ud/udaanbill.json new file mode 100644 index 000000000000..884732601f6e --- /dev/null +++ b/data/software/ud/udaanbill.json @@ -0,0 +1,15 @@ +{ + "slug": "udaanbill", + "name": "UdaanBill", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q133804745" + ], + "release_date": "2025-01-01", + "developers": [ + "UdaanBill" + ], + "operating_systems": [ + "web-based" + ] +} diff --git a/data/software/ud/udev-init-scripts.json b/data/software/ud/udev-init-scripts.json new file mode 100644 index 000000000000..50c58fe90bcb --- /dev/null +++ b/data/software/ud/udev-init-scripts.json @@ -0,0 +1,8 @@ +{ + "slug": "udev-init-scripts", + "name": "udev-init-scripts", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975531" + ] +} diff --git a/data/software/ud/udpipe-q126084699.json b/data/software/ud/udpipe-q126084699.json new file mode 100644 index 000000000000..63c22459c70a --- /dev/null +++ b/data/software/ud/udpipe-q126084699.json @@ -0,0 +1,8 @@ +{ + "slug": "udpipe-q126084699", + "name": "UDPipe", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084699" + ] +} diff --git a/data/software/ud/udpipe.json b/data/software/ud/udpipe.json new file mode 100644 index 000000000000..4b5659642425 --- /dev/null +++ b/data/software/ud/udpipe.json @@ -0,0 +1,11 @@ +{ + "slug": "udpipe", + "name": "UDPipe", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q57081471" + ], + "developers": [ + "Jana Straková" + ] +} diff --git a/data/software/ue/uefitool.json b/data/software/ue/uefitool.json new file mode 100644 index 000000000000..b0be4edf259b --- /dev/null +++ b/data/software/ue/uefitool.json @@ -0,0 +1,8 @@ +{ + "slug": "uefitool", + "name": "UEFITool", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108730229" + ] +} diff --git a/data/software/uf/ufed.json b/data/software/uf/ufed.json new file mode 100644 index 000000000000..e2b0bfd72c7b --- /dev/null +++ b/data/software/uf/ufed.json @@ -0,0 +1,8 @@ +{ + "slug": "ufed", + "name": "ufed", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975532" + ] +} diff --git a/data/software/ui/uimx.json b/data/software/ui/uimx.json new file mode 100644 index 000000000000..f0ae96c383ae --- /dev/null +++ b/data/software/ui/uimx.json @@ -0,0 +1,11 @@ +{ + "slug": "uimx", + "name": "UIMX", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7864712" + ], + "operating_systems": [ + "Unix-like operating system" + ] +} diff --git a/data/software/uk/ukraine-siren-alerts.json b/data/software/uk/ukraine-siren-alerts.json new file mode 100644 index 000000000000..72805d398288 --- /dev/null +++ b/data/software/uk/ukraine-siren-alerts.json @@ -0,0 +1,8 @@ +{ + "slug": "ukraine-siren-alerts", + "name": "Ukraine Siren Alerts", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111546255" + ] +} diff --git a/data/software/ul/ulead-photo-express.json b/data/software/ul/ulead-photo-express.json new file mode 100644 index 000000000000..f7a36a809bd1 --- /dev/null +++ b/data/software/ul/ulead-photo-express.json @@ -0,0 +1,11 @@ +{ + "slug": "ulead-photo-express", + "name": "Ulead Photo Express", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11074806" + ], + "developers": [ + "Ulead Systems" + ] +} diff --git a/data/software/ul/ultamatix.json b/data/software/ul/ultamatix.json new file mode 100644 index 000000000000..261b8ee7a4d9 --- /dev/null +++ b/data/software/ul/ultamatix.json @@ -0,0 +1,11 @@ +{ + "slug": "ultamatix", + "name": "Ultamatix", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q949740" + ], + "programming_languages": [ + "Python" + ] +} diff --git a/data/software/ul/ultimate-boot-cd.json b/data/software/ul/ultimate-boot-cd.json new file mode 100644 index 000000000000..d3e5c6e5a3be --- /dev/null +++ b/data/software/ul/ultimate-boot-cd.json @@ -0,0 +1,8 @@ +{ + "slug": "ultimate-boot-cd", + "name": "Ultimate Boot CD", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7880135" + ] +} diff --git a/data/software/ul/ultimate-othello.json b/data/software/ul/ultimate-othello.json new file mode 100644 index 000000000000..97cf6f20fa0b --- /dev/null +++ b/data/software/ul/ultimate-othello.json @@ -0,0 +1,8 @@ +{ + "slug": "ultimate-othello", + "name": "Ultimate Othello", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110788308" + ] +} diff --git a/data/software/ul/ultimatedefrag.json b/data/software/ul/ultimatedefrag.json new file mode 100644 index 000000000000..5a6338d3fea8 --- /dev/null +++ b/data/software/ul/ultimatedefrag.json @@ -0,0 +1,8 @@ +{ + "slug": "ultimatedefrag", + "name": "UltimateDefrag", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7880111" + ] +} diff --git a/data/software/ul/ultiplot.json b/data/software/ul/ultiplot.json new file mode 100644 index 000000000000..025d17f18eb9 --- /dev/null +++ b/data/software/ul/ultiplot.json @@ -0,0 +1,8 @@ +{ + "slug": "ultiplot", + "name": "Ultiplot", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137592794" + ] +} diff --git a/data/software/ul/ultra-fractal.json b/data/software/ul/ultra-fractal.json new file mode 100644 index 000000000000..132b0d7396eb --- /dev/null +++ b/data/software/ul/ultra-fractal.json @@ -0,0 +1,8 @@ +{ + "slug": "ultra-fractal", + "name": "Ultra Fractal", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4052347" + ] +} diff --git a/data/software/ul/ultralingua.json b/data/software/ul/ultralingua.json new file mode 100644 index 000000000000..22cc2cdc7b80 --- /dev/null +++ b/data/software/ul/ultralingua.json @@ -0,0 +1,8 @@ +{ + "slug": "ultralingua", + "name": "Ultralingua", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7880558" + ] +} diff --git a/data/software/ul/ultramon.json b/data/software/ul/ultramon.json new file mode 100644 index 000000000000..8828b412c76d --- /dev/null +++ b/data/software/ul/ultramon.json @@ -0,0 +1,11 @@ +{ + "slug": "ultramon", + "name": "UltraMon", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7880409" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/ul/ultrasurf.json b/data/software/ul/ultrasurf.json new file mode 100644 index 000000000000..2d4919e08378 --- /dev/null +++ b/data/software/ul/ultrasurf.json @@ -0,0 +1,14 @@ +{ + "slug": "ultrasurf", + "name": "Ultrasurf", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3139231" + ], + "operating_systems": [ + "Microsoft Windows" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/um/umang.json b/data/software/um/umang.json new file mode 100644 index 000000000000..bd8504befb5b --- /dev/null +++ b/data/software/um/umang.json @@ -0,0 +1,8 @@ +{ + "slug": "umang", + "name": "UMANG", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q55636410" + ] +} diff --git a/data/software/um/umbel.json b/data/software/um/umbel.json new file mode 100644 index 000000000000..b939c67b8e72 --- /dev/null +++ b/data/software/um/umbel.json @@ -0,0 +1,12 @@ +{ + "slug": "umbel", + "name": "UMBEL", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7865085" + ], + "release_date": "2008-07-16", + "licenses": [ + "Creative Commons Attribution 3.0 Unported" + ] +} diff --git a/data/software/um/umdhmm-hidden-markov-model-toolkit.json b/data/software/um/umdhmm-hidden-markov-model-toolkit.json new file mode 100644 index 000000000000..02649ac7a157 --- /dev/null +++ b/data/software/um/umdhmm-hidden-markov-model-toolkit.json @@ -0,0 +1,8 @@ +{ + "slug": "umdhmm-hidden-markov-model-toolkit", + "name": "UMDHMM: Hidden Markov Model Toolkit", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087753" + ] +} diff --git a/data/software/um/umigon.json b/data/software/um/umigon.json new file mode 100644 index 000000000000..218747e767a0 --- /dev/null +++ b/data/software/um/umigon.json @@ -0,0 +1,8 @@ +{ + "slug": "umigon", + "name": "Umigon", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087754" + ] +} diff --git a/data/software/um/umlaut-resolver.json b/data/software/um/umlaut-resolver.json new file mode 100644 index 000000000000..74e44ce2a1fe --- /dev/null +++ b/data/software/um/umlaut-resolver.json @@ -0,0 +1,8 @@ +{ + "slug": "umlaut-resolver", + "name": "Umlaut resolver", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17076768" + ] +} diff --git a/data/software/um/umodel.json b/data/software/um/umodel.json new file mode 100644 index 000000000000..982835d949d9 --- /dev/null +++ b/data/software/um/umodel.json @@ -0,0 +1,11 @@ +{ + "slug": "umodel", + "name": "UModel", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7865175" + ], + "developers": [ + "Altova" + ] +} diff --git a/data/software/un/uncertainty-wizard.json b/data/software/un/uncertainty-wizard.json new file mode 100644 index 000000000000..0fbfb73015a1 --- /dev/null +++ b/data/software/un/uncertainty-wizard.json @@ -0,0 +1,11 @@ +{ + "slug": "uncertainty-wizard", + "name": "uncertainty-wizard", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127485425" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/un/uncrustify.json b/data/software/un/uncrustify.json new file mode 100644 index 000000000000..70679de6246a --- /dev/null +++ b/data/software/un/uncrustify.json @@ -0,0 +1,8 @@ +{ + "slug": "uncrustify", + "name": "uncrustify", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975533" + ] +} diff --git a/data/software/un/underpriced-app.json b/data/software/un/underpriced-app.json new file mode 100644 index 000000000000..decf1b276747 --- /dev/null +++ b/data/software/un/underpriced-app.json @@ -0,0 +1,11 @@ +{ + "slug": "underpriced-app", + "name": "underpriced.app", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138861172" + ], + "operating_systems": [ + "iOS" + ] +} diff --git a/data/software/un/undetectable-ai.json b/data/software/un/undetectable-ai.json new file mode 100644 index 000000000000..9803abb73fb3 --- /dev/null +++ b/data/software/un/undetectable-ai.json @@ -0,0 +1,8 @@ +{ + "slug": "undetectable-ai", + "name": "Undetectable.ai", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125017662" + ] +} diff --git a/data/software/un/unfold.json b/data/software/un/unfold.json new file mode 100644 index 000000000000..a99275e2534f --- /dev/null +++ b/data/software/un/unfold.json @@ -0,0 +1,8 @@ +{ + "slug": "unfold", + "name": "Unfold", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124328631" + ] +} diff --git a/data/software/un/unfollow-everything.json b/data/software/un/unfollow-everything.json new file mode 100644 index 000000000000..f1ab5a7df6c5 --- /dev/null +++ b/data/software/un/unfollow-everything.json @@ -0,0 +1,8 @@ +{ + "slug": "unfollow-everything", + "name": "Unfollow Everything", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109236284" + ] +} diff --git a/data/software/un/uni2ascii.json b/data/software/un/uni2ascii.json new file mode 100644 index 000000000000..c2350976469d --- /dev/null +++ b/data/software/un/uni2ascii.json @@ -0,0 +1,8 @@ +{ + "slug": "uni2ascii", + "name": "uni2ascii", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110473466" + ] +} diff --git a/data/software/un/unicluster.json b/data/software/un/unicluster.json new file mode 100644 index 000000000000..971a7282fa49 --- /dev/null +++ b/data/software/un/unicluster.json @@ -0,0 +1,11 @@ +{ + "slug": "unicluster", + "name": "UniCluster", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7884634" + ], + "developers": [ + "Univa" + ] +} diff --git a/data/software/un/unicon.json b/data/software/un/unicon.json new file mode 100644 index 000000000000..c2048f9a5b1f --- /dev/null +++ b/data/software/un/unicon.json @@ -0,0 +1,8 @@ +{ + "slug": "unicon", + "name": "UNICON", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087755" + ] +} diff --git a/data/software/un/unicorn-q126087756.json b/data/software/un/unicorn-q126087756.json new file mode 100644 index 000000000000..df94412cf289 --- /dev/null +++ b/data/software/un/unicorn-q126087756.json @@ -0,0 +1,8 @@ +{ + "slug": "unicorn-q126087756", + "name": "UNICORN", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087756" + ] +} diff --git a/data/software/un/unicorn.json b/data/software/un/unicorn.json new file mode 100644 index 000000000000..b4eea5e834c2 --- /dev/null +++ b/data/software/un/unicorn.json @@ -0,0 +1,8 @@ +{ + "slug": "unicorn", + "name": "Unicorn", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6156050" + ] +} diff --git a/data/software/un/unifdef.json b/data/software/un/unifdef.json new file mode 100644 index 000000000000..15632e2fca71 --- /dev/null +++ b/data/software/un/unifdef.json @@ -0,0 +1,8 @@ +{ + "slug": "unifdef", + "name": "unifdef", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110473525" + ] +} diff --git a/data/software/un/unified-code-count.json b/data/software/un/unified-code-count.json new file mode 100644 index 000000000000..bd3c5b590ee6 --- /dev/null +++ b/data/software/un/unified-code-count.json @@ -0,0 +1,8 @@ +{ + "slug": "unified-code-count", + "name": "Unified Code Count", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7884912" + ] +} diff --git a/data/software/un/unified-inference-frontend.json b/data/software/un/unified-inference-frontend.json new file mode 100644 index 000000000000..dd8c858db584 --- /dev/null +++ b/data/software/un/unified-inference-frontend.json @@ -0,0 +1,8 @@ +{ + "slug": "unified-inference-frontend", + "name": "Unified Inference Frontend", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117006684" + ] +} diff --git a/data/software/un/unified-remote.json b/data/software/un/unified-remote.json new file mode 100644 index 000000000000..a30e7ebb2ad2 --- /dev/null +++ b/data/software/un/unified-remote.json @@ -0,0 +1,8 @@ +{ + "slug": "unified-remote", + "name": "Unified Remote", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q19881614" + ] +} diff --git a/data/software/un/unified-victim-identification-system.json b/data/software/un/unified-victim-identification-system.json new file mode 100644 index 000000000000..d482ade3bd1e --- /dev/null +++ b/data/software/un/unified-victim-identification-system.json @@ -0,0 +1,11 @@ +{ + "slug": "unified-victim-identification-system", + "name": "Unified Victim Identification System", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7884970" + ], + "developers": [ + "Office of Chief Medical Examiner of the City of New York" + ] +} diff --git a/data/software/un/unigine-heaven.json b/data/software/un/unigine-heaven.json new file mode 100644 index 000000000000..eb497f45b4b8 --- /dev/null +++ b/data/software/un/unigine-heaven.json @@ -0,0 +1,11 @@ +{ + "slug": "unigine-heaven", + "name": "Unigine Heaven", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4040502" + ], + "developers": [ + "Unigine Company" + ] +} diff --git a/data/software/un/unionfs-fuse.json b/data/software/un/unionfs-fuse.json new file mode 100644 index 000000000000..347838b9f6fa --- /dev/null +++ b/data/software/un/unionfs-fuse.json @@ -0,0 +1,8 @@ +{ + "slug": "unionfs-fuse", + "name": "unionfs-fuse", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975534" + ] +} diff --git a/data/software/un/unipept.json b/data/software/un/unipept.json new file mode 100644 index 000000000000..aa1a7d0c7816 --- /dev/null +++ b/data/software/un/unipept.json @@ -0,0 +1,15 @@ +{ + "slug": "unipept", + "name": "Unipept", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22673960" + ], + "developers": [ + "Bart Mesuere", + "Ghent University" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/un/unisight-cdp.json b/data/software/un/unisight-cdp.json new file mode 100644 index 000000000000..da91760ab4be --- /dev/null +++ b/data/software/un/unisight-cdp.json @@ -0,0 +1,8 @@ +{ + "slug": "unisight-cdp", + "name": "UniSight CDP", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139338113" + ] +} diff --git a/data/software/un/unison-q25206935.json b/data/software/un/unison-q25206935.json new file mode 100644 index 000000000000..5a898a2a2863 --- /dev/null +++ b/data/software/un/unison-q25206935.json @@ -0,0 +1,11 @@ +{ + "slug": "unison-q25206935", + "name": "UNISoN", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25206935" + ], + "licenses": [ + "Apache License" + ] +} diff --git a/data/software/un/unison-q7887023.json b/data/software/un/unison-q7887023.json new file mode 100644 index 000000000000..c3e8deb89ba7 --- /dev/null +++ b/data/software/un/unison-q7887023.json @@ -0,0 +1,8 @@ +{ + "slug": "unison-q7887023", + "name": "Unison", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7887023" + ] +} diff --git a/data/software/un/unison.json b/data/software/un/unison.json new file mode 100644 index 000000000000..a0bacfa08611 --- /dev/null +++ b/data/software/un/unison.json @@ -0,0 +1,14 @@ +{ + "slug": "unison", + "name": "Unison", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7887022" + ], + "developers": [ + "Panic" + ], + "operating_systems": [ + "macOS" + ] +} diff --git a/data/software/un/unispim-pinyin.json b/data/software/un/unispim-pinyin.json new file mode 100644 index 000000000000..b83a510a764e --- /dev/null +++ b/data/software/un/unispim-pinyin.json @@ -0,0 +1,8 @@ +{ + "slug": "unispim-pinyin", + "name": "Unispim Pinyin", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q15912194" + ] +} diff --git a/data/software/un/unistat.json b/data/software/un/unistat.json new file mode 100644 index 000000000000..232c67cad4ff --- /dev/null +++ b/data/software/un/unistat.json @@ -0,0 +1,9 @@ +{ + "slug": "unistat", + "name": "Unistat", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4258791" + ], + "release_date": "1984-01-01" +} diff --git a/data/software/un/unit-convert-now.json b/data/software/un/unit-convert-now.json new file mode 100644 index 000000000000..3522c685fade --- /dev/null +++ b/data/software/un/unit-convert-now.json @@ -0,0 +1,26 @@ +{ + "slug": "unit-convert-now", + "name": "Unit Convert Now", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135900038" + ], + "developers": [ + "software developer" + ], + "operating_systems": [ + "web browser" + ], + "programming_languages": [ + "HTML", + "Cascading Style Sheets", + "React", + "Next.js" + ], + "licenses": [ + "freeware" + ], + "genres": [ + "utility software" + ] +} diff --git a/data/software/un/univa-grid-engine.json b/data/software/un/univa-grid-engine.json new file mode 100644 index 000000000000..753b936d39e8 --- /dev/null +++ b/data/software/un/univa-grid-engine.json @@ -0,0 +1,14 @@ +{ + "slug": "univa-grid-engine", + "name": "Univa Grid Engine", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7893846" + ], + "developers": [ + "Univa" + ], + "licenses": [ + "Sun Industry Standards Source License" + ] +} diff --git a/data/software/un/universal-document-converter.json b/data/software/un/universal-document-converter.json new file mode 100644 index 000000000000..12eaf350bba2 --- /dev/null +++ b/data/software/un/universal-document-converter.json @@ -0,0 +1,11 @@ +{ + "slug": "universal-document-converter", + "name": "Universal Document Converter", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q19788551" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/un/universal-usb-installer.json b/data/software/un/universal-usb-installer.json new file mode 100644 index 000000000000..9cfe324decef --- /dev/null +++ b/data/software/un/universal-usb-installer.json @@ -0,0 +1,8 @@ +{ + "slug": "universal-usb-installer", + "name": "Universal USB Installer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2577769" + ] +} diff --git a/data/software/un/universalindentgui.json b/data/software/un/universalindentgui.json new file mode 100644 index 000000000000..98645e4af988 --- /dev/null +++ b/data/software/un/universalindentgui.json @@ -0,0 +1,8 @@ +{ + "slug": "universalindentgui", + "name": "UniversalIndentGUI", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110788296" + ] +} diff --git a/data/software/un/universitas-xxi.json b/data/software/un/universitas-xxi.json new file mode 100644 index 000000000000..1cb7f48bacbe --- /dev/null +++ b/data/software/un/universitas-xxi.json @@ -0,0 +1,8 @@ +{ + "slug": "universitas-xxi", + "name": "Universitas XXI", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123161836" + ] +} diff --git a/data/software/un/universoft.json b/data/software/un/universoft.json new file mode 100644 index 000000000000..f2e991a246d4 --- /dev/null +++ b/data/software/un/universoft.json @@ -0,0 +1,8 @@ +{ + "slug": "universoft", + "name": "universoft", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139610562" + ] +} diff --git a/data/software/un/unix-amiga-delitracker-emulator.json b/data/software/un/unix-amiga-delitracker-emulator.json new file mode 100644 index 000000000000..73b41950f28f --- /dev/null +++ b/data/software/un/unix-amiga-delitracker-emulator.json @@ -0,0 +1,11 @@ +{ + "slug": "unix-amiga-delitracker-emulator", + "name": "Unix Amiga Delitracker Emulator", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18752611" + ], + "licenses": [ + "GNU General Public License, version 2.0" + ] +} diff --git a/data/software/un/unixtimestamp.json b/data/software/un/unixtimestamp.json new file mode 100644 index 000000000000..0d8433f4104d --- /dev/null +++ b/data/software/un/unixtimestamp.json @@ -0,0 +1,8 @@ +{ + "slug": "unixtimestamp", + "name": "UnixTimestamp", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140051844" + ] +} diff --git a/data/software/un/unleash-the-power-of-metastock.json b/data/software/un/unleash-the-power-of-metastock.json new file mode 100644 index 000000000000..3cb2c8f70444 --- /dev/null +++ b/data/software/un/unleash-the-power-of-metastock.json @@ -0,0 +1,11 @@ +{ + "slug": "unleash-the-power-of-metastock", + "name": "Unleash the Power of MetaStock", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28316561" + ], + "developers": [ + "MetaStock" + ] +} diff --git a/data/software/un/unlocalized-software.json b/data/software/un/unlocalized-software.json new file mode 100644 index 000000000000..96ad5e1313fd --- /dev/null +++ b/data/software/un/unlocalized-software.json @@ -0,0 +1,8 @@ +{ + "slug": "unlocalized-software", + "name": "unlocalized software", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136499240" + ] +} diff --git a/data/software/un/unlock-text.json b/data/software/un/unlock-text.json new file mode 100644 index 000000000000..e4fc8410d083 --- /dev/null +++ b/data/software/un/unlock-text.json @@ -0,0 +1,8 @@ +{ + "slug": "unlock-text", + "name": "Unlock Text", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087757" + ] +} diff --git a/data/software/un/unmute.json b/data/software/un/unmute.json new file mode 100644 index 000000000000..3b8cb850a1f2 --- /dev/null +++ b/data/software/un/unmute.json @@ -0,0 +1,12 @@ +{ + "slug": "unmute", + "name": "Unmute", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q26964812" + ], + "release_date": "2015-11-01", + "operating_systems": [ + "iOS" + ] +} diff --git a/data/software/un/uno.json b/data/software/un/uno.json new file mode 100644 index 000000000000..805acfa87ac5 --- /dev/null +++ b/data/software/un/uno.json @@ -0,0 +1,11 @@ +{ + "slug": "uno", + "name": "Uno", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60774063" + ], + "licenses": [ + "Apache Software License 2.0" + ] +} diff --git a/data/software/un/unoconv.json b/data/software/un/unoconv.json new file mode 100644 index 000000000000..d4c59cf7c059 --- /dev/null +++ b/data/software/un/unoconv.json @@ -0,0 +1,8 @@ +{ + "slug": "unoconv", + "name": "unoconv", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975535" + ] +} diff --git a/data/software/un/unomi.json b/data/software/un/unomi.json new file mode 100644 index 000000000000..00324f48e9d1 --- /dev/null +++ b/data/software/un/unomi.json @@ -0,0 +1,11 @@ +{ + "slug": "unomi", + "name": "UNOMI", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140121650" + ], + "developers": [ + "Cogneto Development Inc." + ] +} diff --git a/data/software/un/unreal-editor-for-fortnite.json b/data/software/un/unreal-editor-for-fortnite.json new file mode 100644 index 000000000000..c962cb03455b --- /dev/null +++ b/data/software/un/unreal-editor-for-fortnite.json @@ -0,0 +1,8 @@ +{ + "slug": "unreal-editor-for-fortnite", + "name": "Unreal Editor for Fortnite", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127868162" + ] +} diff --git a/data/software/un/unreal-media-server.json b/data/software/un/unreal-media-server.json new file mode 100644 index 000000000000..8528a8547a92 --- /dev/null +++ b/data/software/un/unreal-media-server.json @@ -0,0 +1,8 @@ +{ + "slug": "unreal-media-server", + "name": "Unreal Media Server", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7897342" + ] +} diff --git a/data/software/un/unreal-x-editor.json b/data/software/un/unreal-x-editor.json new file mode 100644 index 000000000000..4968e6d176ce --- /dev/null +++ b/data/software/un/unreal-x-editor.json @@ -0,0 +1,8 @@ +{ + "slug": "unreal-x-editor", + "name": "Unreal X-Editor", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7897347" + ] +} diff --git a/data/software/un/unrpa.json b/data/software/un/unrpa.json new file mode 100644 index 000000000000..2e2f7044647a --- /dev/null +++ b/data/software/un/unrpa.json @@ -0,0 +1,8 @@ +{ + "slug": "unrpa", + "name": "unrpa", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975537" + ] +} diff --git a/data/software/un/unstoppable-copier.json b/data/software/un/unstoppable-copier.json new file mode 100644 index 000000000000..3a6bd5b86664 --- /dev/null +++ b/data/software/un/unstoppable-copier.json @@ -0,0 +1,11 @@ +{ + "slug": "unstoppable-copier", + "name": "Unstoppable Copier", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q9366853" + ], + "operating_systems": [ + "Windows 7" + ] +} diff --git a/data/software/un/unsub.json b/data/software/un/unsub.json new file mode 100644 index 000000000000..74d4bae74def --- /dev/null +++ b/data/software/un/unsub.json @@ -0,0 +1,14 @@ +{ + "slug": "unsub", + "name": "Unsub", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q97147796" + ], + "developers": [ + "OurResearch" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/up/upack.json b/data/software/up/upack.json new file mode 100644 index 000000000000..b96477115a12 --- /dev/null +++ b/data/software/up/upack.json @@ -0,0 +1,8 @@ +{ + "slug": "upack", + "name": "Upack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2499586" + ] +} diff --git a/data/software/up/updatedd.json b/data/software/up/updatedd.json new file mode 100644 index 000000000000..fb8210d40a06 --- /dev/null +++ b/data/software/up/updatedd.json @@ -0,0 +1,8 @@ +{ + "slug": "updatedd", + "name": "updatedd", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065574" + ] +} diff --git a/data/software/up/updatestar.json b/data/software/up/updatestar.json new file mode 100644 index 000000000000..d81c2b9c20df --- /dev/null +++ b/data/software/up/updatestar.json @@ -0,0 +1,8 @@ +{ + "slug": "updatestar", + "name": "UpdateStar", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7898217" + ] +} diff --git a/data/software/up/uplifty.json b/data/software/up/uplifty.json new file mode 100644 index 000000000000..43bdea88b016 --- /dev/null +++ b/data/software/up/uplifty.json @@ -0,0 +1,8 @@ +{ + "slug": "uplifty", + "name": "Uplifty", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139972748" + ] +} diff --git a/data/software/up/uploadftp.json b/data/software/up/uploadftp.json new file mode 100644 index 000000000000..ccb51c9eb4db --- /dev/null +++ b/data/software/up/uploadftp.json @@ -0,0 +1,8 @@ +{ + "slug": "uploadftp", + "name": "UploadFTP", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7898382" + ] +} diff --git a/data/software/up/uppaal-model-checker.json b/data/software/up/uppaal-model-checker.json new file mode 100644 index 000000000000..b8c85b195f97 --- /dev/null +++ b/data/software/up/uppaal-model-checker.json @@ -0,0 +1,11 @@ +{ + "slug": "uppaal-model-checker", + "name": "Uppaal Model Checker", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7898420" + ], + "developers": [ + "Uppsala University" + ] +} diff --git a/data/software/up/upper-atmospheric-models.json b/data/software/up/upper-atmospheric-models.json new file mode 100644 index 000000000000..50f41e148af8 --- /dev/null +++ b/data/software/up/upper-atmospheric-models.json @@ -0,0 +1,11 @@ +{ + "slug": "upper-atmospheric-models", + "name": "upper-atmospheric models", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4299341" + ], + "developers": [ + "Murmansk Arctic University" + ] +} diff --git a/data/software/up/upptalk.json b/data/software/up/upptalk.json new file mode 100644 index 000000000000..81bc5096cd82 --- /dev/null +++ b/data/software/up/upptalk.json @@ -0,0 +1,11 @@ +{ + "slug": "upptalk", + "name": "Upptalk", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q14375741" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/up/upsetr.json b/data/software/up/upsetr.json new file mode 100644 index 000000000000..c7d21aee5411 --- /dev/null +++ b/data/software/up/upsetr.json @@ -0,0 +1,11 @@ +{ + "slug": "upsetr", + "name": "UpSetR", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112338883" + ], + "programming_languages": [ + "R" + ] +} diff --git a/data/software/up/uptimed.json b/data/software/up/uptimed.json new file mode 100644 index 000000000000..f192cb9e0f55 --- /dev/null +++ b/data/software/up/uptimed.json @@ -0,0 +1,8 @@ +{ + "slug": "uptimed", + "name": "Uptimed", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110473532" + ] +} diff --git a/data/software/up/uptodown.json b/data/software/up/uptodown.json new file mode 100644 index 000000000000..51a1b6b68d3a --- /dev/null +++ b/data/software/up/uptodown.json @@ -0,0 +1,8 @@ +{ + "slug": "uptodown", + "name": "Uptodown", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6157280" + ] +} diff --git a/data/software/up/upwork.json b/data/software/up/upwork.json new file mode 100644 index 000000000000..a2b45ddfaeb9 --- /dev/null +++ b/data/software/up/upwork.json @@ -0,0 +1,8 @@ +{ + "slug": "upwork", + "name": "upwork", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065207" + ] +} diff --git a/data/software/ur/urban-model-builder.json b/data/software/ur/urban-model-builder.json new file mode 100644 index 000000000000..ce078189769b --- /dev/null +++ b/data/software/ur/urban-model-builder.json @@ -0,0 +1,8 @@ +{ + "slug": "urban-model-builder", + "name": "Urban Model Builder", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137886582" + ] +} diff --git a/data/software/ur/urbansim.json b/data/software/ur/urbansim.json new file mode 100644 index 000000000000..ffc5cc81a9ba --- /dev/null +++ b/data/software/ur/urbansim.json @@ -0,0 +1,11 @@ +{ + "slug": "urbansim", + "name": "UrbanSim", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7899833" + ], + "programming_languages": [ + "Python" + ] +} diff --git a/data/software/ur/urbit.json b/data/software/ur/urbit.json new file mode 100644 index 000000000000..dd64acb75b3e --- /dev/null +++ b/data/software/ur/urbit.json @@ -0,0 +1,11 @@ +{ + "slug": "urbit", + "name": "Urbit", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q64919023" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/ur/urchin.json b/data/software/ur/urchin.json new file mode 100644 index 000000000000..077fef261808 --- /dev/null +++ b/data/software/ur/urchin.json @@ -0,0 +1,17 @@ +{ + "slug": "urchin", + "name": "Urchin", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1914164" + ], + "developers": [ + "Urchin Software Corporation", + "Google" + ], + "operating_systems": [ + "FreeBSD", + "Windows Server 2008", + "Windows Server 2003" + ] +} diff --git a/data/software/ur/urdfdom-headers.json b/data/software/ur/urdfdom-headers.json new file mode 100644 index 000000000000..a6caa1119a9e --- /dev/null +++ b/data/software/ur/urdfdom-headers.json @@ -0,0 +1,8 @@ +{ + "slug": "urdfdom-headers", + "name": "urdfdom_headers", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975539" + ] +} diff --git a/data/software/ur/urdfdom.json b/data/software/ur/urdfdom.json new file mode 100644 index 000000000000..a14a67cd9639 --- /dev/null +++ b/data/software/ur/urdfdom.json @@ -0,0 +1,11 @@ +{ + "slug": "urdfdom", + "name": "urdfdom", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975538" + ], + "licenses": [ + "BSD licenses" + ] +} diff --git a/data/software/ur/urica-ii.json b/data/software/ur/urica-ii.json new file mode 100644 index 000000000000..97a25b98b2c0 --- /dev/null +++ b/data/software/ur/urica-ii.json @@ -0,0 +1,8 @@ +{ + "slug": "urica-ii", + "name": "URICA! II", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084700" + ] +} diff --git a/data/software/ur/urjtag.json b/data/software/ur/urjtag.json new file mode 100644 index 000000000000..076305e326b0 --- /dev/null +++ b/data/software/ur/urjtag.json @@ -0,0 +1,8 @@ +{ + "slug": "urjtag", + "name": "urjtag", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975540" + ] +} diff --git a/data/software/ur/urkund.json b/data/software/ur/urkund.json new file mode 100644 index 000000000000..b9a8f72a2232 --- /dev/null +++ b/data/software/ur/urkund.json @@ -0,0 +1,8 @@ +{ + "slug": "urkund", + "name": "Urkund", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q24352057" + ] +} diff --git a/data/software/ur/url-x.json b/data/software/ur/url-x.json new file mode 100644 index 000000000000..4b017e981b13 --- /dev/null +++ b/data/software/ur/url-x.json @@ -0,0 +1,14 @@ +{ + "slug": "url-x", + "name": "URL X", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138508812" + ], + "developers": [ + "TraceX Labs" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/ur/uroburos.json b/data/software/ur/uroburos.json new file mode 100644 index 000000000000..31da4ac3dc3c --- /dev/null +++ b/data/software/ur/uroburos.json @@ -0,0 +1,8 @@ +{ + "slug": "uroburos", + "name": "Uroburos", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17048709" + ] +} diff --git a/data/software/ur/urqmd.json b/data/software/ur/urqmd.json new file mode 100644 index 000000000000..1860a8b8ac79 --- /dev/null +++ b/data/software/ur/urqmd.json @@ -0,0 +1,14 @@ +{ + "slug": "urqmd", + "name": "UrQMD", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7899521" + ], + "developers": [ + "Goethe University Frankfurt" + ], + "programming_languages": [ + "Fortran" + ] +} diff --git a/data/software/ur/urxvt-font-size.json b/data/software/ur/urxvt-font-size.json new file mode 100644 index 000000000000..0af07d1f0ffe --- /dev/null +++ b/data/software/ur/urxvt-font-size.json @@ -0,0 +1,8 @@ +{ + "slug": "urxvt-font-size", + "name": "urxvt-font-size", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975541" + ] +} diff --git a/data/software/us/usb8x.json b/data/software/us/usb8x.json new file mode 100644 index 000000000000..295febebb7ca --- /dev/null +++ b/data/software/us/usb8x.json @@ -0,0 +1,8 @@ +{ + "slug": "usb8x", + "name": "Usb8x", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7901721" + ] +} diff --git a/data/software/us/usbredir.json b/data/software/us/usbredir.json new file mode 100644 index 000000000000..f480c8e781d6 --- /dev/null +++ b/data/software/us/usbredir.json @@ -0,0 +1,11 @@ +{ + "slug": "usbredir", + "name": "usbredir", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975542" + ], + "licenses": [ + "GNU General Public License, version 2.0" + ] +} diff --git a/data/software/us/usbview.json b/data/software/us/usbview.json new file mode 100644 index 000000000000..282c58db6963 --- /dev/null +++ b/data/software/us/usbview.json @@ -0,0 +1,8 @@ +{ + "slug": "usbview", + "name": "usbview", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60917740" + ] +} diff --git a/data/software/us/useful-macros-uma.json b/data/software/us/useful-macros-uma.json new file mode 100644 index 000000000000..08dabb5a4657 --- /dev/null +++ b/data/software/us/useful-macros-uma.json @@ -0,0 +1,8 @@ +{ + "slug": "useful-macros-uma", + "name": "Useful Macros (UMA)", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121631700" + ] +} diff --git a/data/software/us/useful-notes-uno.json b/data/software/us/useful-notes-uno.json new file mode 100644 index 000000000000..8f65a765121a --- /dev/null +++ b/data/software/us/useful-notes-uno.json @@ -0,0 +1,11 @@ +{ + "slug": "useful-notes-uno", + "name": "Useful Notes (UNO)", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121631702" + ], + "licenses": [ + "shareware" + ] +} diff --git a/data/software/us/usenet-explorer.json b/data/software/us/usenet-explorer.json new file mode 100644 index 000000000000..5a8b7970927a --- /dev/null +++ b/data/software/us/usenet-explorer.json @@ -0,0 +1,12 @@ +{ + "slug": "usenet-explorer", + "name": "Usenet Explorer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7901812" + ], + "release_date": "2005-01-01", + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/us/user-account-control.json b/data/software/us/user-account-control.json new file mode 100644 index 000000000000..dfdb875d05b5 --- /dev/null +++ b/data/software/us/user-account-control.json @@ -0,0 +1,11 @@ +{ + "slug": "user-account-control", + "name": "User Account Control", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q818381" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/us/user-ii-software-bundle.json b/data/software/us/user-ii-software-bundle.json new file mode 100644 index 000000000000..a85623d6b589 --- /dev/null +++ b/data/software/us/user-ii-software-bundle.json @@ -0,0 +1,8 @@ +{ + "slug": "user-ii-software-bundle", + "name": "User II (software bundle)", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11879070" + ] +} diff --git a/data/software/us/user-onboarding.json b/data/software/us/user-onboarding.json new file mode 100644 index 000000000000..2326d85855eb --- /dev/null +++ b/data/software/us/user-onboarding.json @@ -0,0 +1,8 @@ +{ + "slug": "user-onboarding", + "name": "user onboarding", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q19600187" + ] +} diff --git a/data/software/us/user-state-migration-tool.json b/data/software/us/user-state-migration-tool.json new file mode 100644 index 000000000000..85e67360843e --- /dev/null +++ b/data/software/us/user-state-migration-tool.json @@ -0,0 +1,8 @@ +{ + "slug": "user-state-migration-tool", + "name": "User State Migration Tool", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1551793" + ] +} diff --git a/data/software/us/userbrain.json b/data/software/us/userbrain.json new file mode 100644 index 000000000000..cb2f068b7c36 --- /dev/null +++ b/data/software/us/userbrain.json @@ -0,0 +1,8 @@ +{ + "slug": "userbrain", + "name": "Userbrain", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139571912" + ] +} diff --git a/data/software/us/usermin.json b/data/software/us/usermin.json new file mode 100644 index 000000000000..a37811892b16 --- /dev/null +++ b/data/software/us/usermin.json @@ -0,0 +1,9 @@ +{ + "slug": "usermin", + "name": "Usermin", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3552546" + ], + "release_date": "2002-03-06" +} diff --git a/data/software/ut/utalk.json b/data/software/ut/utalk.json new file mode 100644 index 000000000000..f51f5dce3309 --- /dev/null +++ b/data/software/ut/utalk.json @@ -0,0 +1,12 @@ +{ + "slug": "utalk", + "name": "utalk", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4052302" + ], + "release_date": "2006-01-01", + "licenses": [ + "freeware" + ] +} diff --git a/data/software/ut/utatane-piko.json b/data/software/ut/utatane-piko.json new file mode 100644 index 000000000000..1195e288ee5b --- /dev/null +++ b/data/software/ut/utatane-piko.json @@ -0,0 +1,12 @@ +{ + "slug": "utatane-piko", + "name": "Utatane Piko", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17164380" + ], + "release_date": "2010-12-08", + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/ut/utatane.json b/data/software/ut/utatane.json new file mode 100644 index 000000000000..6ecb6238b5de --- /dev/null +++ b/data/software/ut/utatane.json @@ -0,0 +1,8 @@ +{ + "slug": "utatane", + "name": "Utatane", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7902580" + ] +} diff --git a/data/software/ut/utexas.json b/data/software/ut/utexas.json new file mode 100644 index 000000000000..703649f3fe3f --- /dev/null +++ b/data/software/ut/utexas.json @@ -0,0 +1,8 @@ +{ + "slug": "utexas", + "name": "UTEXAS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7875997" + ] +} diff --git a/data/software/ut/utgard.json b/data/software/ut/utgard.json new file mode 100644 index 000000000000..5e135e269973 --- /dev/null +++ b/data/software/ut/utgard.json @@ -0,0 +1,8 @@ +{ + "slug": "utgard", + "name": "Utgard", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q21463732" + ] +} diff --git a/data/software/ut/utm.json b/data/software/ut/utm.json new file mode 100644 index 000000000000..4d48f5f0b88c --- /dev/null +++ b/data/software/ut/utm.json @@ -0,0 +1,18 @@ +{ + "slug": "utm", + "name": "UTM", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105701048" + ], + "developers": [ + "osy" + ], + "operating_systems": [ + "iOS", + "macOS" + ], + "licenses": [ + "Apache Software License 2.0" + ] +} diff --git a/data/software/ut/utopia.json b/data/software/ut/utopia.json new file mode 100644 index 000000000000..6c08a4b3a81c --- /dev/null +++ b/data/software/ut/utopia.json @@ -0,0 +1,8 @@ +{ + "slug": "utopia", + "name": "UTOPIA", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7876009" + ] +} diff --git a/data/software/uu/uuu.json b/data/software/uu/uuu.json new file mode 100644 index 000000000000..b160d5dc6d71 --- /dev/null +++ b/data/software/uu/uuu.json @@ -0,0 +1,11 @@ +{ + "slug": "uuu", + "name": "uuu", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113956834" + ], + "licenses": [ + "3-clause BSD License" + ] +} diff --git a/data/software/uv/uvic-image-markup-tool.json b/data/software/uv/uvic-image-markup-tool.json new file mode 100644 index 000000000000..c35c280d947a --- /dev/null +++ b/data/software/uv/uvic-image-markup-tool.json @@ -0,0 +1,8 @@ +{ + "slug": "uvic-image-markup-tool", + "name": "UVic Image Markup Tool", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084701" + ] +} diff --git a/data/software/uw/uwin.json b/data/software/uw/uwin.json new file mode 100644 index 000000000000..b47540afb708 --- /dev/null +++ b/data/software/uw/uwin.json @@ -0,0 +1,11 @@ +{ + "slug": "uwin", + "name": "UWIN", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1922446" + ], + "licenses": [ + "Eclipse Public License 1.0" + ] +} diff --git a/data/software/v-/v-e-r-a.json b/data/software/v-/v-e-r-a.json new file mode 100644 index 000000000000..4d7b93262f15 --- /dev/null +++ b/data/software/v-/v-e-r-a.json @@ -0,0 +1,14 @@ +{ + "slug": "v-e-r-a", + "name": "V.E.R.A.", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q98836880" + ], + "operating_systems": [ + "BSD" + ], + "licenses": [ + "GNU Free Documentation License, version 1.3 or later" + ] +} diff --git a/data/software/v-/v-ncolo-cms.json b/data/software/v-/v-ncolo-cms.json new file mode 100644 index 000000000000..0e8e77dba638 --- /dev/null +++ b/data/software/v-/v-ncolo-cms.json @@ -0,0 +1,14 @@ +{ + "slug": "v-ncolo-cms", + "name": "Víncolo CMS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131455311" + ], + "developers": [ + "Víncolo S.R.L." + ], + "licenses": [ + "commercial software" + ] +} diff --git a/data/software/v3/v3.json b/data/software/v3/v3.json new file mode 100644 index 000000000000..bffd8f15e138 --- /dev/null +++ b/data/software/v3/v3.json @@ -0,0 +1,11 @@ +{ + "slug": "v3", + "name": "V3", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11252427" + ], + "developers": [ + "AhnLab Inc" + ] +} diff --git a/data/software/va/vaa3d.json b/data/software/va/vaa3d.json new file mode 100644 index 000000000000..c962a7e1dff6 --- /dev/null +++ b/data/software/va/vaa3d.json @@ -0,0 +1,8 @@ +{ + "slug": "vaa3d", + "name": "Vaa3D", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18201789" + ] +} diff --git a/data/software/va/vaccination-record-system.json b/data/software/va/vaccination-record-system.json new file mode 100644 index 000000000000..9c405a2f1d08 --- /dev/null +++ b/data/software/va/vaccination-record-system.json @@ -0,0 +1,8 @@ +{ + "slug": "vaccination-record-system", + "name": "Vaccination Record System", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109594535" + ] +} diff --git a/data/software/va/vacuolar-phenotype-analyzer.json b/data/software/va/vacuolar-phenotype-analyzer.json new file mode 100644 index 000000000000..4e8486d81691 --- /dev/null +++ b/data/software/va/vacuolar-phenotype-analyzer.json @@ -0,0 +1,14 @@ +{ + "slug": "vacuolar-phenotype-analyzer", + "name": "Vacuolar Phenotype Analyzer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137775186" + ], + "programming_languages": [ + "Python" + ], + "licenses": [ + "Creative Commons Attribution-ShareAlike 4.0 International" + ] +} diff --git a/data/software/va/vacuum.json b/data/software/va/vacuum.json new file mode 100644 index 000000000000..69a3fe3d7a35 --- /dev/null +++ b/data/software/va/vacuum.json @@ -0,0 +1,8 @@ +{ + "slug": "vacuum", + "name": "vacuum", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975544" + ] +} diff --git a/data/software/va/vader.json b/data/software/va/vader.json new file mode 100644 index 000000000000..996d4d5b66a0 --- /dev/null +++ b/data/software/va/vader.json @@ -0,0 +1,8 @@ +{ + "slug": "vader", + "name": "VADER", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087758" + ] +} diff --git a/data/software/va/vagaa.json b/data/software/va/vagaa.json new file mode 100644 index 000000000000..bd0caa26076a --- /dev/null +++ b/data/software/va/vagaa.json @@ -0,0 +1,11 @@ +{ + "slug": "vagaa", + "name": "Vagaa", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7908420" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/va/vaikora.json b/data/software/va/vaikora.json new file mode 100644 index 000000000000..0c36d5525166 --- /dev/null +++ b/data/software/va/vaikora.json @@ -0,0 +1,11 @@ +{ + "slug": "vaikora", + "name": "Vaikora", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139845841" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/va/valetudo.json b/data/software/va/valetudo.json new file mode 100644 index 000000000000..ef7097f388f3 --- /dev/null +++ b/data/software/va/valetudo.json @@ -0,0 +1,8 @@ +{ + "slug": "valetudo", + "name": "Valetudo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136466761" + ] +} diff --git a/data/software/va/validis.json b/data/software/va/validis.json new file mode 100644 index 000000000000..58f78ab81eb4 --- /dev/null +++ b/data/software/va/validis.json @@ -0,0 +1,8 @@ +{ + "slug": "validis", + "name": "Validis", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7911680" + ] +} diff --git a/data/software/va/vall-e.json b/data/software/va/vall-e.json new file mode 100644 index 000000000000..48dbc855acc7 --- /dev/null +++ b/data/software/va/vall-e.json @@ -0,0 +1,8 @@ +{ + "slug": "vall-e", + "name": "VALL-E", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123111586" + ] +} diff --git a/data/software/va/vallen-jpegger.json b/data/software/va/vallen-jpegger.json new file mode 100644 index 000000000000..e953a04379ab --- /dev/null +++ b/data/software/va/vallen-jpegger.json @@ -0,0 +1,8 @@ +{ + "slug": "vallen-jpegger", + "name": "Vallen JPegger", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3553852" + ] +} diff --git a/data/software/va/valo-cd.json b/data/software/va/valo-cd.json new file mode 100644 index 000000000000..eaa4462d74be --- /dev/null +++ b/data/software/va/valo-cd.json @@ -0,0 +1,11 @@ +{ + "slug": "valo-cd", + "name": "VALO-CD", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4052486" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/va/valour.json b/data/software/va/valour.json new file mode 100644 index 000000000000..ae449af23a05 --- /dev/null +++ b/data/software/va/valour.json @@ -0,0 +1,8 @@ +{ + "slug": "valour", + "name": "Valour", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17143219" + ] +} diff --git a/data/software/va/vampire-theorem-prover.json b/data/software/va/vampire-theorem-prover.json new file mode 100644 index 000000000000..ed90b993a47d --- /dev/null +++ b/data/software/va/vampire-theorem-prover.json @@ -0,0 +1,11 @@ +{ + "slug": "vampire-theorem-prover", + "name": "Vampire theorem prover", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7912960" + ], + "developers": [ + "Andrei Voronkov" + ] +} diff --git a/data/software/va/vampr.json b/data/software/va/vampr.json new file mode 100644 index 000000000000..98391930995d --- /dev/null +++ b/data/software/va/vampr.json @@ -0,0 +1,8 @@ +{ + "slug": "vampr", + "name": "Vampr", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q48810787" + ] +} diff --git a/data/software/va/vannotator.json b/data/software/va/vannotator.json new file mode 100644 index 000000000000..140ab942500f --- /dev/null +++ b/data/software/va/vannotator.json @@ -0,0 +1,8 @@ +{ + "slug": "vannotator", + "name": "VAnnotatoR", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084702" + ] +} diff --git a/data/software/va/vapor.json b/data/software/va/vapor.json new file mode 100644 index 000000000000..7623b5e94573 --- /dev/null +++ b/data/software/va/vapor.json @@ -0,0 +1,11 @@ +{ + "slug": "vapor", + "name": "Vapor", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q55636966" + ], + "programming_languages": [ + "Swift" + ] +} diff --git a/data/software/va/vapoursynth.json b/data/software/va/vapoursynth.json new file mode 100644 index 000000000000..4e3f7029cf1e --- /dev/null +++ b/data/software/va/vapoursynth.json @@ -0,0 +1,11 @@ +{ + "slug": "vapoursynth", + "name": "vapoursynth", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120151686" + ], + "developers": [ + "Fredrik Mellbin" + ] +} diff --git a/data/software/va/varagesale.json b/data/software/va/varagesale.json new file mode 100644 index 000000000000..62dc276f9a98 --- /dev/null +++ b/data/software/va/varagesale.json @@ -0,0 +1,8 @@ +{ + "slug": "varagesale", + "name": "VarageSale", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22909608" + ] +} diff --git a/data/software/va/varco-3d.json b/data/software/va/varco-3d.json new file mode 100644 index 000000000000..bec6ab317f3f --- /dev/null +++ b/data/software/va/varco-3d.json @@ -0,0 +1,11 @@ +{ + "slug": "varco-3d", + "name": "VARCO 3D", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140446423" + ], + "developers": [ + "NC AI" + ] +} diff --git a/data/software/va/varco-sound.json b/data/software/va/varco-sound.json new file mode 100644 index 000000000000..5131914c229c --- /dev/null +++ b/data/software/va/varco-sound.json @@ -0,0 +1,14 @@ +{ + "slug": "varco-sound", + "name": "VARCO Sound", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140454169" + ], + "developers": [ + "NC AI" + ], + "genres": [ + "generative artificial intelligence" + ] +} diff --git a/data/software/va/vard-2.json b/data/software/va/vard-2.json new file mode 100644 index 000000000000..c5546515e203 --- /dev/null +++ b/data/software/va/vard-2.json @@ -0,0 +1,8 @@ +{ + "slug": "vard-2", + "name": "VARD 2", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084704" + ] +} diff --git a/data/software/va/vassarstats.json b/data/software/va/vassarstats.json new file mode 100644 index 000000000000..f90a91815a75 --- /dev/null +++ b/data/software/va/vassarstats.json @@ -0,0 +1,8 @@ +{ + "slug": "vassarstats", + "name": "VassarStats", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084705" + ] +} diff --git a/data/software/va/vault-q88664426.json b/data/software/va/vault-q88664426.json new file mode 100644 index 000000000000..2a5a704e04fb --- /dev/null +++ b/data/software/va/vault-q88664426.json @@ -0,0 +1,18 @@ +{ + "slug": "vault-q88664426", + "name": "Vault", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q88664426" + ], + "developers": [ + "HashiCorp" + ], + "programming_languages": [ + "Go" + ], + "licenses": [ + "Mozilla Public License, version 2.0", + "Business Source License 1.1" + ] +} diff --git a/data/software/va/vault.json b/data/software/va/vault.json new file mode 100644 index 000000000000..157f439677e9 --- /dev/null +++ b/data/software/va/vault.json @@ -0,0 +1,8 @@ +{ + "slug": "vault", + "name": "Vault", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4052619" + ] +} diff --git a/data/software/vb/vbcc.json b/data/software/vb/vbcc.json new file mode 100644 index 000000000000..5284fca4835a --- /dev/null +++ b/data/software/vb/vbcc.json @@ -0,0 +1,11 @@ +{ + "slug": "vbcc", + "name": "vbcc", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7917661" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/vb/vbulletin.json b/data/software/vb/vbulletin.json new file mode 100644 index 000000000000..1d9c234bee25 --- /dev/null +++ b/data/software/vb/vbulletin.json @@ -0,0 +1,14 @@ +{ + "slug": "vbulletin", + "name": "vBulletin", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q44338" + ], + "operating_systems": [ + "cross-platform" + ], + "programming_languages": [ + "PHP" + ] +} diff --git a/data/software/vc/vcn-execuvision.json b/data/software/vc/vcn-execuvision.json new file mode 100644 index 000000000000..11c52446050e --- /dev/null +++ b/data/software/vc/vcn-execuvision.json @@ -0,0 +1,8 @@ +{ + "slug": "vcn-execuvision", + "name": "VCN ExecuVision", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7906630" + ] +} diff --git a/data/software/vc/vcpkg.json b/data/software/vc/vcpkg.json new file mode 100644 index 000000000000..0a9c3bc618ba --- /dev/null +++ b/data/software/vc/vcpkg.json @@ -0,0 +1,15 @@ +{ + "slug": "vcpkg", + "name": "vcpkg", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q85812832" + ], + "developers": [ + "Alexander Karatarakis", + "Microsoft" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/vc/vcstools.json b/data/software/vc/vcstools.json new file mode 100644 index 000000000000..bf95c029fc49 --- /dev/null +++ b/data/software/vc/vcstools.json @@ -0,0 +1,8 @@ +{ + "slug": "vcstools", + "name": "vcstools", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975546" + ] +} diff --git a/data/software/vc/vcxsrv.json b/data/software/vc/vcxsrv.json new file mode 100644 index 000000000000..b499f48e73f9 --- /dev/null +++ b/data/software/vc/vcxsrv.json @@ -0,0 +1,11 @@ +{ + "slug": "vcxsrv", + "name": "VcXsrv", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109317641" + ], + "licenses": [ + "GNU General Public License, version 3.0" + ] +} diff --git a/data/software/vd/vdo-ninja.json b/data/software/vd/vdo-ninja.json new file mode 100644 index 000000000000..f36f0850b24d --- /dev/null +++ b/data/software/vd/vdo-ninja.json @@ -0,0 +1,8 @@ +{ + "slug": "vdo-ninja", + "name": "VDO.Ninja", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q133318537" + ] +} diff --git a/data/software/vd/vdownloader.json b/data/software/vd/vdownloader.json new file mode 100644 index 000000000000..2ddee1c3f3d3 --- /dev/null +++ b/data/software/vd/vdownloader.json @@ -0,0 +1,11 @@ +{ + "slug": "vdownloader", + "name": "VDownloader", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q590366" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/vd/vdpauinfo.json b/data/software/vd/vdpauinfo.json new file mode 100644 index 000000000000..837ce6b69f53 --- /dev/null +++ b/data/software/vd/vdpauinfo.json @@ -0,0 +1,8 @@ +{ + "slug": "vdpauinfo", + "name": "vdpauinfo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60917985" + ] +} diff --git a/data/software/vd/vdr-xvdr.json b/data/software/vd/vdr-xvdr.json new file mode 100644 index 000000000000..338e88e9bc88 --- /dev/null +++ b/data/software/vd/vdr-xvdr.json @@ -0,0 +1,8 @@ +{ + "slug": "vdr-xvdr", + "name": "vdr-xvdr", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975547" + ] +} diff --git a/data/software/vd/vdx.json b/data/software/vd/vdx.json new file mode 100644 index 000000000000..20f3673dc16f --- /dev/null +++ b/data/software/vd/vdx.json @@ -0,0 +1,8 @@ +{ + "slug": "vdx", + "name": "VDX", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7906714" + ] +} diff --git a/data/software/ve/vectorian-giotto.json b/data/software/ve/vectorian-giotto.json new file mode 100644 index 000000000000..7e48e7c3b84e --- /dev/null +++ b/data/software/ve/vectorian-giotto.json @@ -0,0 +1,8 @@ +{ + "slug": "vectorian-giotto", + "name": "Vectorian Giotto", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7917853" + ] +} diff --git a/data/software/ve/vedic-programming-language.json b/data/software/ve/vedic-programming-language.json new file mode 100644 index 000000000000..d64763c6b3c4 --- /dev/null +++ b/data/software/ve/vedic-programming-language.json @@ -0,0 +1,8 @@ +{ + "slug": "vedic-programming-language", + "name": "Vedic Programming Language", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140469935" + ] +} diff --git a/data/software/ve/veezow.json b/data/software/ve/veezow.json new file mode 100644 index 000000000000..d2672efe316e --- /dev/null +++ b/data/software/ve/veezow.json @@ -0,0 +1,8 @@ +{ + "slug": "veezow", + "name": "Veezow", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139679069" + ] +} diff --git a/data/software/ve/vegeta.json b/data/software/ve/vegeta.json new file mode 100644 index 000000000000..77779ec5496b --- /dev/null +++ b/data/software/ve/vegeta.json @@ -0,0 +1,14 @@ +{ + "slug": "vegeta", + "name": "Vegeta", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113653935" + ], + "programming_languages": [ + "Go" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/ve/vela.json b/data/software/ve/vela.json new file mode 100644 index 000000000000..c25431360ba2 --- /dev/null +++ b/data/software/ve/vela.json @@ -0,0 +1,8 @@ +{ + "slug": "vela", + "name": "VELA", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140042346" + ] +} diff --git a/data/software/ve/velox.json b/data/software/ve/velox.json new file mode 100644 index 000000000000..1a372fb4c22d --- /dev/null +++ b/data/software/ve/velox.json @@ -0,0 +1,14 @@ +{ + "slug": "velox", + "name": "Velox", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116591678" + ], + "developers": [ + "Pedro Pedreira" + ], + "licenses": [ + "Apache Software License 2.0" + ] +} diff --git a/data/software/ve/velvet-ai.json b/data/software/ve/velvet-ai.json new file mode 100644 index 000000000000..fa457be2941e --- /dev/null +++ b/data/software/ve/velvet-ai.json @@ -0,0 +1,8 @@ +{ + "slug": "velvet-ai", + "name": "Velvet AI", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q133092119" + ] +} diff --git a/data/software/ve/velvet.json b/data/software/ve/velvet.json new file mode 100644 index 000000000000..29607b61598f --- /dev/null +++ b/data/software/ve/velvet.json @@ -0,0 +1,11 @@ +{ + "slug": "velvet", + "name": "Velvet", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123207513" + ], + "licenses": [ + "GNU General Public License, version 2.0" + ] +} diff --git a/data/software/ve/venmo.json b/data/software/ve/venmo.json new file mode 100644 index 000000000000..4dc3208d3ea0 --- /dev/null +++ b/data/software/ve/venmo.json @@ -0,0 +1,15 @@ +{ + "slug": "venmo", + "name": "Venmo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q24839341" + ], + "release_date": "2009-01-01", + "developers": [ + "Andrew Kortina" + ], + "operating_systems": [ + "iOS" + ] +} diff --git a/data/software/ve/vensim.json b/data/software/ve/vensim.json new file mode 100644 index 000000000000..6ddbdafd0cd8 --- /dev/null +++ b/data/software/ve/vensim.json @@ -0,0 +1,8 @@ +{ + "slug": "vensim", + "name": "Vensim", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28231514" + ] +} diff --git a/data/software/ve/venti.json b/data/software/ve/venti.json new file mode 100644 index 000000000000..94254ee686e1 --- /dev/null +++ b/data/software/ve/venti.json @@ -0,0 +1,12 @@ +{ + "slug": "venti", + "name": "Venti", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2512983" + ], + "operating_systems": [ + "Inferno", + "Plan 9" + ] +} diff --git a/data/software/ve/veo.json b/data/software/ve/veo.json new file mode 100644 index 000000000000..2c48cbee7e91 --- /dev/null +++ b/data/software/ve/veo.json @@ -0,0 +1,11 @@ +{ + "slug": "veo", + "name": "Veo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q133141215" + ], + "developers": [ + "Google DeepMind" + ] +} diff --git a/data/software/ve/veracity.json b/data/software/ve/veracity.json new file mode 100644 index 000000000000..4ae859c2b1c6 --- /dev/null +++ b/data/software/ve/veracity.json @@ -0,0 +1,11 @@ +{ + "slug": "veracity", + "name": "Veracity", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3555732" + ], + "licenses": [ + "Apache License" + ] +} diff --git a/data/software/ve/verbal-robot.json b/data/software/ve/verbal-robot.json new file mode 100644 index 000000000000..dd08fe267766 --- /dev/null +++ b/data/software/ve/verbal-robot.json @@ -0,0 +1,8 @@ +{ + "slug": "verbal-robot", + "name": "Verbal-Robot", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7920978" + ] +} diff --git a/data/software/ve/vericut.json b/data/software/ve/vericut.json new file mode 100644 index 000000000000..b6b12defcf47 --- /dev/null +++ b/data/software/ve/vericut.json @@ -0,0 +1,8 @@ +{ + "slug": "vericut", + "name": "Vericut", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17152399" + ] +} diff --git a/data/software/ve/veriface.json b/data/software/ve/veriface.json new file mode 100644 index 000000000000..80396ed88ab1 --- /dev/null +++ b/data/software/ve/veriface.json @@ -0,0 +1,11 @@ +{ + "slug": "veriface", + "name": "VeriFace", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4052646" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/ve/verifiedemail.json b/data/software/ve/verifiedemail.json new file mode 100644 index 000000000000..f707b4b82dcf --- /dev/null +++ b/data/software/ve/verifiedemail.json @@ -0,0 +1,8 @@ +{ + "slug": "verifiedemail", + "name": "VerifiedEmail", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135915417" + ] +} diff --git a/data/software/ve/veriflux.json b/data/software/ve/veriflux.json new file mode 100644 index 000000000000..a1499939a92d --- /dev/null +++ b/data/software/ve/veriflux.json @@ -0,0 +1,11 @@ +{ + "slug": "veriflux", + "name": "VeriFlux", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7921298" + ], + "programming_languages": [ + "Java" + ] +} diff --git a/data/software/ve/verilator.json b/data/software/ve/verilator.json new file mode 100644 index 000000000000..8f569f134bc4 --- /dev/null +++ b/data/software/ve/verilator.json @@ -0,0 +1,15 @@ +{ + "slug": "verilator", + "name": "Verilator", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7921335" + ], + "operating_systems": [ + "Unix-like operating system" + ], + "licenses": [ + "GNU Lesser General Public License, version 3.0", + "Artistic License 2.0" + ] +} diff --git a/data/software/ve/veritas-volume-manager.json b/data/software/ve/veritas-volume-manager.json new file mode 100644 index 000000000000..6e791e76fac0 --- /dev/null +++ b/data/software/ve/veritas-volume-manager.json @@ -0,0 +1,11 @@ +{ + "slug": "veritas-volume-manager", + "name": "Veritas Volume Manager", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7921395" + ], + "developers": [ + "Gen Digital" + ] +} diff --git a/data/software/ve/verleer.json b/data/software/ve/verleer.json new file mode 100644 index 000000000000..21b82cb4b264 --- /dev/null +++ b/data/software/ve/verleer.json @@ -0,0 +1,8 @@ +{ + "slug": "verleer", + "name": "Verleer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140320219" + ] +} diff --git a/data/software/ve/vero.json b/data/software/ve/vero.json new file mode 100644 index 000000000000..278a5817a965 --- /dev/null +++ b/data/software/ve/vero.json @@ -0,0 +1,8 @@ +{ + "slug": "vero", + "name": "VERO", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10388552" + ] +} diff --git a/data/software/ve/versant-object-database.json b/data/software/ve/versant-object-database.json new file mode 100644 index 000000000000..7e2ad7e8778a --- /dev/null +++ b/data/software/ve/versant-object-database.json @@ -0,0 +1,14 @@ +{ + "slug": "versant-object-database", + "name": "Versant Object Database", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7922633" + ], + "developers": [ + "Versant Corporation" + ], + "programming_languages": [ + "Java" + ] +} diff --git a/data/software/ve/verseify.json b/data/software/ve/verseify.json new file mode 100644 index 000000000000..c477f70e2fca --- /dev/null +++ b/data/software/ve/verseify.json @@ -0,0 +1,14 @@ +{ + "slug": "verseify", + "name": "Verseify", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134335121" + ], + "developers": [ + "Gahbi" + ], + "programming_languages": [ + "Verse" + ] +} diff --git a/data/software/ve/versioned-hdf5.json b/data/software/ve/versioned-hdf5.json new file mode 100644 index 000000000000..f9705e0f0bf9 --- /dev/null +++ b/data/software/ve/versioned-hdf5.json @@ -0,0 +1,11 @@ +{ + "slug": "versioned-hdf5", + "name": "Versioned HDF5", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131300668" + ], + "licenses": [ + "3-clause BSD License" + ] +} diff --git a/data/software/ve/versioning-machine.json b/data/software/ve/versioning-machine.json new file mode 100644 index 000000000000..adaef893b9e6 --- /dev/null +++ b/data/software/ve/versioning-machine.json @@ -0,0 +1,8 @@ +{ + "slug": "versioning-machine", + "name": "Versioning Machine", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084707" + ] +} diff --git a/data/software/ve/vertex-computer-program.json b/data/software/ve/vertex-computer-program.json new file mode 100644 index 000000000000..e4c1504b4e16 --- /dev/null +++ b/data/software/ve/vertex-computer-program.json @@ -0,0 +1,8 @@ +{ + "slug": "vertex-computer-program", + "name": "Vertex (computer program)", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11901008" + ] +} diff --git a/data/software/ve/vertex-icon-theme.json b/data/software/ve/vertex-icon-theme.json new file mode 100644 index 000000000000..9edac6e328e0 --- /dev/null +++ b/data/software/ve/vertex-icon-theme.json @@ -0,0 +1,8 @@ +{ + "slug": "vertex-icon-theme", + "name": "vertex-icon-theme", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975548" + ] +} diff --git a/data/software/ve/vertica-analytics-platform.json b/data/software/ve/vertica-analytics-platform.json new file mode 100644 index 000000000000..78542b4a3c3f --- /dev/null +++ b/data/software/ve/vertica-analytics-platform.json @@ -0,0 +1,8 @@ +{ + "slug": "vertica-analytics-platform", + "name": "Vertica Analytics Platform", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q50355840" + ] +} diff --git a/data/software/ve/verticalrent.json b/data/software/ve/verticalrent.json new file mode 100644 index 000000000000..0a0090349a5d --- /dev/null +++ b/data/software/ve/verticalrent.json @@ -0,0 +1,8 @@ +{ + "slug": "verticalrent", + "name": "VerticalRent", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139580204" + ] +} diff --git a/data/software/ve/verto-studio-3d.json b/data/software/ve/verto-studio-3d.json new file mode 100644 index 000000000000..f2916e897dff --- /dev/null +++ b/data/software/ve/verto-studio-3d.json @@ -0,0 +1,9 @@ +{ + "slug": "verto-studio-3d", + "name": "Verto Studio 3D", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16966306" + ], + "release_date": "2011-01-01" +} diff --git a/data/software/ve/veru-legal-ai-for-lawyers.json b/data/software/ve/veru-legal-ai-for-lawyers.json new file mode 100644 index 000000000000..9a2ec6fb43ef --- /dev/null +++ b/data/software/ve/veru-legal-ai-for-lawyers.json @@ -0,0 +1,11 @@ +{ + "slug": "veru-legal-ai-for-lawyers", + "name": "Veru Legal - AI for Lawyers", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140454457" + ], + "developers": [ + "zerodays d.o.o." + ] +} diff --git a/data/software/ve/vestd.json b/data/software/ve/vestd.json new file mode 100644 index 000000000000..fa807d87ed16 --- /dev/null +++ b/data/software/ve/vestd.json @@ -0,0 +1,8 @@ +{ + "slug": "vestd", + "name": "Vestd", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135434738" + ] +} diff --git a/data/software/ve/veterinary-practice-management-software.json b/data/software/ve/veterinary-practice-management-software.json new file mode 100644 index 000000000000..bb0787218dbc --- /dev/null +++ b/data/software/ve/veterinary-practice-management-software.json @@ -0,0 +1,8 @@ +{ + "slug": "veterinary-practice-management-software", + "name": "veterinary practice management software", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q54829300" + ] +} diff --git a/data/software/ve/veux.json b/data/software/ve/veux.json new file mode 100644 index 000000000000..09eef465bca8 --- /dev/null +++ b/data/software/ve/veux.json @@ -0,0 +1,8 @@ +{ + "slug": "veux", + "name": "veux", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137554077" + ] +} diff --git a/data/software/ve/veve.json b/data/software/ve/veve.json new file mode 100644 index 000000000000..d0bd43085d6b --- /dev/null +++ b/data/software/ve/veve.json @@ -0,0 +1,8 @@ +{ + "slug": "veve", + "name": "VeVe", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109875278" + ] +} diff --git a/data/software/vg/vgacad.json b/data/software/vg/vgacad.json new file mode 100644 index 000000000000..8a23daa25433 --- /dev/null +++ b/data/software/vg/vgacad.json @@ -0,0 +1,11 @@ +{ + "slug": "vgacad", + "name": "VGACAD", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7906896" + ], + "developers": [ + "Lawrence Gozum" + ] +} diff --git a/data/software/vi/via-browser.json b/data/software/vi/via-browser.json new file mode 100644 index 000000000000..1e813d79ab71 --- /dev/null +++ b/data/software/vi/via-browser.json @@ -0,0 +1,8 @@ +{ + "slug": "via-browser", + "name": "Via Browser", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q61722278" + ] +} diff --git a/data/software/vi/viaideinfo.json b/data/software/vi/viaideinfo.json new file mode 100644 index 000000000000..4cd5622626d0 --- /dev/null +++ b/data/software/vi/viaideinfo.json @@ -0,0 +1,8 @@ +{ + "slug": "viaideinfo", + "name": "viaideinfo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065062" + ] +} diff --git a/data/software/vi/vibe3d.json b/data/software/vi/vibe3d.json new file mode 100644 index 000000000000..89c67a989ff7 --- /dev/null +++ b/data/software/vi/vibe3d.json @@ -0,0 +1,14 @@ +{ + "slug": "vibe3d", + "name": "Vibe3D", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138977075" + ], + "operating_systems": [ + "web browser" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/vi/vicar-image-processing-system.json b/data/software/vi/vicar-image-processing-system.json new file mode 100644 index 000000000000..ce7b9b413a58 --- /dev/null +++ b/data/software/vi/vicar-image-processing-system.json @@ -0,0 +1,11 @@ +{ + "slug": "vicar-image-processing-system", + "name": "VICAR Image Processing System", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60521721" + ], + "developers": [ + "Jet Propulsion Laboratory" + ] +} diff --git a/data/software/vi/vicar2png.json b/data/software/vi/vicar2png.json new file mode 100644 index 000000000000..5f9e2179d36a --- /dev/null +++ b/data/software/vi/vicar2png.json @@ -0,0 +1,14 @@ +{ + "slug": "vicar2png", + "name": "vicar2png", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60521734" + ], + "developers": [ + "Jessica McKellar" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/vi/vicidial.json b/data/software/vi/vicidial.json new file mode 100644 index 000000000000..59715ee795b4 --- /dev/null +++ b/data/software/vi/vicidial.json @@ -0,0 +1,11 @@ +{ + "slug": "vicidial", + "name": "VICIdial", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18170343" + ], + "licenses": [ + "GNU General Public License" + ] +} diff --git a/data/software/vi/vicompte.json b/data/software/vi/vicompte.json new file mode 100644 index 000000000000..5f7690d55b3a --- /dev/null +++ b/data/software/vi/vicompte.json @@ -0,0 +1,11 @@ +{ + "slug": "vicompte", + "name": "ViCompte", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3556471" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/vi/victoria-program.json b/data/software/vi/victoria-program.json new file mode 100644 index 000000000000..5892113a9e59 --- /dev/null +++ b/data/software/vi/victoria-program.json @@ -0,0 +1,19 @@ +{ + "slug": "victoria-program", + "name": "Victoria (program)", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4052678" + ], + "operating_systems": [ + "DOS", + "Microsoft Windows" + ], + "programming_languages": [ + "assembly language", + "Delphi" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/vi/victoria.json b/data/software/vi/victoria.json new file mode 100644 index 000000000000..c79b0dc9bfc7 --- /dev/null +++ b/data/software/vi/victoria.json @@ -0,0 +1,11 @@ +{ + "slug": "victoria", + "name": "Victoria", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7926525" + ], + "developers": [ + "DAZ 3D" + ] +} diff --git a/data/software/vi/video-data-editor.json b/data/software/vi/video-data-editor.json new file mode 100644 index 000000000000..86040bd375e8 --- /dev/null +++ b/data/software/vi/video-data-editor.json @@ -0,0 +1,13 @@ +{ + "slug": "video-data-editor", + "name": "Video Data Editor", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121601197" + ], + "release_date": "1987-01-01", + "licenses": [ + "shareware", + "freeware" + ] +} diff --git a/data/software/vi/videopoet.json b/data/software/vi/videopoet.json new file mode 100644 index 000000000000..225534578252 --- /dev/null +++ b/data/software/vi/videopoet.json @@ -0,0 +1,12 @@ +{ + "slug": "videopoet", + "name": "VideoPoet", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124255589" + ], + "release_date": "2023-12-19", + "developers": [ + "Google Research" + ] +} diff --git a/data/software/vi/videorbits.json b/data/software/vi/videorbits.json new file mode 100644 index 000000000000..c206b9bb5c01 --- /dev/null +++ b/data/software/vi/videorbits.json @@ -0,0 +1,8 @@ +{ + "slug": "videorbits", + "name": "videorbits", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63064808" + ] +} diff --git a/data/software/vi/videoscribe.json b/data/software/vi/videoscribe.json new file mode 100644 index 000000000000..551b31a323db --- /dev/null +++ b/data/software/vi/videoscribe.json @@ -0,0 +1,8 @@ +{ + "slug": "videoscribe", + "name": "VideoScribe", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17101746" + ] +} diff --git a/data/software/vi/videostreetview.json b/data/software/vi/videostreetview.json new file mode 100644 index 000000000000..682250007b41 --- /dev/null +++ b/data/software/vi/videostreetview.json @@ -0,0 +1,9 @@ +{ + "slug": "videostreetview", + "name": "VideoStreetView", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7927796" + ], + "release_date": "2009-12-01" +} diff --git a/data/software/vi/vidmate.json b/data/software/vi/vidmate.json new file mode 100644 index 000000000000..bbaffc5183c5 --- /dev/null +++ b/data/software/vi/vidmate.json @@ -0,0 +1,8 @@ +{ + "slug": "vidmate", + "name": "VidMate", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137380070" + ] +} diff --git a/data/software/vi/vidsentry.json b/data/software/vi/vidsentry.json new file mode 100644 index 000000000000..b6763e8c504d --- /dev/null +++ b/data/software/vi/vidsentry.json @@ -0,0 +1,8 @@ +{ + "slug": "vidsentry", + "name": "VidSentry", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139270358" + ] +} diff --git a/data/software/vi/vienna-rna-package.json b/data/software/vi/vienna-rna-package.json new file mode 100644 index 000000000000..525b35fee7f9 --- /dev/null +++ b/data/software/vi/vienna-rna-package.json @@ -0,0 +1,15 @@ +{ + "slug": "vienna-rna-package", + "name": "Vienna RNA Package", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q21933168" + ], + "release_date": "1994-02-01", + "programming_languages": [ + "Python" + ], + "licenses": [ + "free software license" + ] +} diff --git a/data/software/vi/view3dscene.json b/data/software/vi/view3dscene.json new file mode 100644 index 000000000000..d33f554a8c01 --- /dev/null +++ b/data/software/vi/view3dscene.json @@ -0,0 +1,8 @@ +{ + "slug": "view3dscene", + "name": "view3dscene", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110788287" + ] +} diff --git a/data/software/vi/viewer.json b/data/software/vi/viewer.json new file mode 100644 index 000000000000..71b884c84d01 --- /dev/null +++ b/data/software/vi/viewer.json @@ -0,0 +1,11 @@ +{ + "slug": "viewer", + "name": "ViEWER", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7924308" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/vi/viewshare.json b/data/software/vi/viewshare.json new file mode 100644 index 000000000000..67ba5121f863 --- /dev/null +++ b/data/software/vi/viewshare.json @@ -0,0 +1,8 @@ +{ + "slug": "viewshare", + "name": "Viewshare", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084708" + ] +} diff --git a/data/software/vi/viewsheet.json b/data/software/vi/viewsheet.json new file mode 100644 index 000000000000..1e55fdc4e36f --- /dev/null +++ b/data/software/vi/viewsheet.json @@ -0,0 +1,12 @@ +{ + "slug": "viewsheet", + "name": "ViewSheet", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7928741" + ], + "release_date": "1984-01-01", + "developers": [ + "Acornsoft" + ] +} diff --git a/data/software/vi/viewsonic-wizard-2000.json b/data/software/vi/viewsonic-wizard-2000.json new file mode 100644 index 000000000000..99ba31e76413 --- /dev/null +++ b/data/software/vi/viewsonic-wizard-2000.json @@ -0,0 +1,14 @@ +{ + "slug": "viewsonic-wizard-2000", + "name": "ViewSonic Wizard 2000", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q66088292" + ], + "developers": [ + "ViewSonic" + ], + "operating_systems": [ + "Windows 95" + ] +} diff --git a/data/software/vi/viking.json b/data/software/vi/viking.json new file mode 100644 index 000000000000..f6c3c65c5240 --- /dev/null +++ b/data/software/vi/viking.json @@ -0,0 +1,11 @@ +{ + "slug": "viking", + "name": "viking", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065662" + ], + "licenses": [ + "GNU General Public License, version 2.0" + ] +} diff --git a/data/software/vi/vilistextum.json b/data/software/vi/vilistextum.json new file mode 100644 index 000000000000..4dea479cf738 --- /dev/null +++ b/data/software/vi/vilistextum.json @@ -0,0 +1,8 @@ +{ + "slug": "vilistextum", + "name": "Vilistextum", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110473605" + ] +} diff --git a/data/software/vi/vim-qt.json b/data/software/vi/vim-qt.json new file mode 100644 index 000000000000..098e34a9e35b --- /dev/null +++ b/data/software/vi/vim-qt.json @@ -0,0 +1,8 @@ +{ + "slug": "vim-qt", + "name": "vim-qt", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975550" + ] +} diff --git a/data/software/vi/vimball.json b/data/software/vi/vimball.json new file mode 100644 index 000000000000..db556740ab13 --- /dev/null +++ b/data/software/vi/vimball.json @@ -0,0 +1,11 @@ +{ + "slug": "vimball", + "name": "vimball", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975549" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/vi/vimim.json b/data/software/vi/vimim.json new file mode 100644 index 000000000000..43e36960492f --- /dev/null +++ b/data/software/vi/vimim.json @@ -0,0 +1,8 @@ +{ + "slug": "vimim", + "name": "VimIM", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10853216" + ] +} diff --git a/data/software/vi/vimperator.json b/data/software/vi/vimperator.json new file mode 100644 index 000000000000..8902fbe17805 --- /dev/null +++ b/data/software/vi/vimperator.json @@ -0,0 +1,12 @@ +{ + "slug": "vimperator", + "name": "Vimperator", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2658672" + ], + "release_date": "2007-01-01", + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/vi/vinci.json b/data/software/vi/vinci.json new file mode 100644 index 000000000000..b7b1805c71ce --- /dev/null +++ b/data/software/vi/vinci.json @@ -0,0 +1,8 @@ +{ + "slug": "vinci", + "name": "VINCI", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087759" + ] +} diff --git a/data/software/vi/violet.json b/data/software/vi/violet.json new file mode 100644 index 000000000000..87ff2a3c6459 --- /dev/null +++ b/data/software/vi/violet.json @@ -0,0 +1,8 @@ +{ + "slug": "violet", + "name": "Violet", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q15852980" + ] +} diff --git a/data/software/vi/vios.json b/data/software/vi/vios.json new file mode 100644 index 000000000000..52a18af3070d --- /dev/null +++ b/data/software/vi/vios.json @@ -0,0 +1,15 @@ +{ + "slug": "vios", + "name": "ViOS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7924311" + ], + "release_date": "2000-01-01", + "licenses": [ + "freeware" + ], + "genres": [ + "virtual world" + ] +} diff --git a/data/software/vi/vipole.json b/data/software/vi/vipole.json new file mode 100644 index 000000000000..32679363466e --- /dev/null +++ b/data/software/vi/vipole.json @@ -0,0 +1,8 @@ +{ + "slug": "vipole", + "name": "VIPole", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q27791715" + ] +} diff --git a/data/software/vi/vira.json b/data/software/vi/vira.json new file mode 100644 index 000000000000..ae64be03fa5b --- /dev/null +++ b/data/software/vi/vira.json @@ -0,0 +1,8 @@ +{ + "slug": "vira", + "name": "VIRA.", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138797799" + ] +} diff --git a/data/software/vi/viralheat.json b/data/software/vi/viralheat.json new file mode 100644 index 000000000000..05e850181c3c --- /dev/null +++ b/data/software/vi/viralheat.json @@ -0,0 +1,8 @@ +{ + "slug": "viralheat", + "name": "Viralheat", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7933621" + ] +} diff --git a/data/software/vi/vireo-sentinel.json b/data/software/vi/vireo-sentinel.json new file mode 100644 index 000000000000..a4c417c211b0 --- /dev/null +++ b/data/software/vi/vireo-sentinel.json @@ -0,0 +1,14 @@ +{ + "slug": "vireo-sentinel", + "name": "Vireo Sentinel", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138565067" + ], + "developers": [ + "Vyklow Analytics" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/vi/virglrenderer.json b/data/software/vi/virglrenderer.json new file mode 100644 index 000000000000..3252ea8d44d6 --- /dev/null +++ b/data/software/vi/virglrenderer.json @@ -0,0 +1,8 @@ +{ + "slug": "virglrenderer", + "name": "virglrenderer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975551" + ] +} diff --git a/data/software/vi/virsh.json b/data/software/vi/virsh.json new file mode 100644 index 000000000000..b3091dfe3aef --- /dev/null +++ b/data/software/vi/virsh.json @@ -0,0 +1,8 @@ +{ + "slug": "virsh", + "name": "virsh", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139551662" + ] +} diff --git a/data/software/vi/virtual-advanced.json b/data/software/vi/virtual-advanced.json new file mode 100644 index 000000000000..b91ca40dc1c9 --- /dev/null +++ b/data/software/vi/virtual-advanced.json @@ -0,0 +1,9 @@ +{ + "slug": "virtual-advanced", + "name": "Virtual Advanced", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7934924" + ], + "release_date": "1990-01-01" +} diff --git a/data/software/vi/virtual-audio-cable.json b/data/software/vi/virtual-audio-cable.json new file mode 100644 index 000000000000..1cf057780b28 --- /dev/null +++ b/data/software/vi/virtual-audio-cable.json @@ -0,0 +1,8 @@ +{ + "slug": "virtual-audio-cable", + "name": "Virtual Audio Cable", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7934928" + ] +} diff --git a/data/software/vi/virtual-cd-rom-control-panel.json b/data/software/vi/virtual-cd-rom-control-panel.json new file mode 100644 index 000000000000..6dd9d634b9a4 --- /dev/null +++ b/data/software/vi/virtual-cd-rom-control-panel.json @@ -0,0 +1,19 @@ +{ + "slug": "virtual-cd-rom-control-panel", + "name": "Virtual CD-ROM Control Panel", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7934934" + ], + "developers": [ + "Microsoft" + ], + "operating_systems": [ + "Windows Server 2003", + "Windows Server 2008", + "Windows 7" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/vi/virtual-cell.json b/data/software/vi/virtual-cell.json new file mode 100644 index 000000000000..3423f46fcb7d --- /dev/null +++ b/data/software/vi/virtual-cell.json @@ -0,0 +1,20 @@ +{ + "slug": "virtual-cell", + "name": "Virtual Cell", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7934936" + ], + "developers": [ + "University of Connecticut Health Center" + ], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [ + "Java" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/vi/virtual-distributed-ethernet.json b/data/software/vi/virtual-distributed-ethernet.json new file mode 100644 index 000000000000..eadfd0267374 --- /dev/null +++ b/data/software/vi/virtual-distributed-ethernet.json @@ -0,0 +1,8 @@ +{ + "slug": "virtual-distributed-ethernet", + "name": "Virtual Distributed Ethernet", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q9368901" + ] +} diff --git a/data/software/vi/virtual-file-system-for-git.json b/data/software/vi/virtual-file-system-for-git.json new file mode 100644 index 000000000000..255cc8bf3556 --- /dev/null +++ b/data/software/vi/virtual-file-system-for-git.json @@ -0,0 +1,17 @@ +{ + "slug": "virtual-file-system-for-git", + "name": "Virtual File System for Git", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q30191208" + ], + "developers": [ + "Microsoft" + ], + "operating_systems": [ + "Microsoft Windows" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/vi/virtual-hosting-control-system.json b/data/software/vi/virtual-hosting-control-system.json new file mode 100644 index 000000000000..4f11c59b568d --- /dev/null +++ b/data/software/vi/virtual-hosting-control-system.json @@ -0,0 +1,8 @@ +{ + "slug": "virtual-hosting-control-system", + "name": "Virtual Hosting Control System", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1416869" + ] +} diff --git a/data/software/vi/virtual-lightbox.json b/data/software/vi/virtual-lightbox.json new file mode 100644 index 000000000000..1332d9bad091 --- /dev/null +++ b/data/software/vi/virtual-lightbox.json @@ -0,0 +1,8 @@ +{ + "slug": "virtual-lightbox", + "name": "Virtual Lightbox", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084709" + ] +} diff --git a/data/software/vi/virtual-radar-client.json b/data/software/vi/virtual-radar-client.json new file mode 100644 index 000000000000..b91aa89c05c0 --- /dev/null +++ b/data/software/vi/virtual-radar-client.json @@ -0,0 +1,11 @@ +{ + "slug": "virtual-radar-client", + "name": "Virtual Radar Client", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7935028" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/vi/virtual-steel.json b/data/software/vi/virtual-steel.json new file mode 100644 index 000000000000..85912af6fa19 --- /dev/null +++ b/data/software/vi/virtual-steel.json @@ -0,0 +1,12 @@ +{ + "slug": "virtual-steel", + "name": "Virtual Steel", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124535006" + ], + "release_date": "2006-01-01", + "operating_systems": [ + "Windows 11" + ] +} diff --git a/data/software/vi/virtual-tabletop-game.json b/data/software/vi/virtual-tabletop-game.json new file mode 100644 index 000000000000..6113ef01661e --- /dev/null +++ b/data/software/vi/virtual-tabletop-game.json @@ -0,0 +1,8 @@ +{ + "slug": "virtual-tabletop-game", + "name": "virtual tabletop game", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112768277" + ] +} diff --git a/data/software/vi/virtual-transcription-laboratory.json b/data/software/vi/virtual-transcription-laboratory.json new file mode 100644 index 000000000000..876c2e55a02e --- /dev/null +++ b/data/software/vi/virtual-transcription-laboratory.json @@ -0,0 +1,8 @@ +{ + "slug": "virtual-transcription-laboratory", + "name": "Virtual Transcription Laboratory", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084711" + ] +} diff --git a/data/software/vi/virtualbus.json b/data/software/vi/virtualbus.json new file mode 100644 index 000000000000..0e46bbdf027a --- /dev/null +++ b/data/software/vi/virtualbus.json @@ -0,0 +1,8 @@ +{ + "slug": "virtualbus", + "name": "VirtualBus", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q9368899" + ] +} diff --git a/data/software/vi/virtue.json b/data/software/vi/virtue.json new file mode 100644 index 000000000000..784cb68ebec4 --- /dev/null +++ b/data/software/vi/virtue.json @@ -0,0 +1,8 @@ +{ + "slug": "virtue", + "name": "Virtue", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7935213" + ] +} diff --git a/data/software/vi/virtuozzo.json b/data/software/vi/virtuozzo.json new file mode 100644 index 000000000000..be201a5312bf --- /dev/null +++ b/data/software/vi/virtuozzo.json @@ -0,0 +1,12 @@ +{ + "slug": "virtuozzo", + "name": "Virtuozzo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1781915" + ], + "developers": [ + "Virtuozzo", + "Parallels" + ] +} diff --git a/data/software/vi/virus-chaser.json b/data/software/vi/virus-chaser.json new file mode 100644 index 000000000000..53aa1bfcdb95 --- /dev/null +++ b/data/software/vi/virus-chaser.json @@ -0,0 +1,8 @@ +{ + "slug": "virus-chaser", + "name": "Virus Chaser", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8015951" + ] +} diff --git a/data/software/vi/virus-creation-laboratory.json b/data/software/vi/virus-creation-laboratory.json new file mode 100644 index 000000000000..b7eb10deebeb --- /dev/null +++ b/data/software/vi/virus-creation-laboratory.json @@ -0,0 +1,14 @@ +{ + "slug": "virus-creation-laboratory", + "name": "Virus Creation Laboratory", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4052735" + ], + "developers": [ + "Nowhere Man" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/vi/virusbuster.json b/data/software/vi/virusbuster.json new file mode 100644 index 000000000000..fb4af4c1667e --- /dev/null +++ b/data/software/vi/virusbuster.json @@ -0,0 +1,8 @@ +{ + "slug": "virusbuster", + "name": "VirusBuster", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q251632" + ] +} diff --git a/data/software/vi/virusis.json b/data/software/vi/virusis.json new file mode 100644 index 000000000000..77d9c47ef3ac --- /dev/null +++ b/data/software/vi/virusis.json @@ -0,0 +1,8 @@ +{ + "slug": "virusis", + "name": "virusis", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139480144" + ] +} diff --git a/data/software/vi/visflow.json b/data/software/vi/visflow.json new file mode 100644 index 000000000000..53daa903a27b --- /dev/null +++ b/data/software/vi/visflow.json @@ -0,0 +1,17 @@ +{ + "slug": "visflow", + "name": "VisFlow", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q73036313" + ], + "developers": [ + "Claudio Silva" + ], + "programming_languages": [ + "TypeScript" + ], + "licenses": [ + "3-clause BSD License" + ] +} diff --git a/data/software/vi/visible-human-project.json b/data/software/vi/visible-human-project.json new file mode 100644 index 000000000000..3f57b4704494 --- /dev/null +++ b/data/software/vi/visible-human-project.json @@ -0,0 +1,8 @@ +{ + "slug": "visible-human-project", + "name": "Visible Human Project", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1465456" + ] +} diff --git a/data/software/vi/visible.json b/data/software/vi/visible.json new file mode 100644 index 000000000000..ec4b2b06eee9 --- /dev/null +++ b/data/software/vi/visible.json @@ -0,0 +1,8 @@ +{ + "slug": "visible", + "name": "Visible", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116692717" + ] +} diff --git a/data/software/vi/visifire.json b/data/software/vi/visifire.json new file mode 100644 index 000000000000..37c24d2ccc16 --- /dev/null +++ b/data/software/vi/visifire.json @@ -0,0 +1,8 @@ +{ + "slug": "visifire", + "name": "Visifire", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7936099" + ] +} diff --git a/data/software/vi/vision-mobile-browser.json b/data/software/vi/vision-mobile-browser.json new file mode 100644 index 000000000000..c7ec9d1e4333 --- /dev/null +++ b/data/software/vi/vision-mobile-browser.json @@ -0,0 +1,11 @@ +{ + "slug": "vision-mobile-browser", + "name": "Vision Mobile Browser", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7936165" + ], + "developers": [ + "Novarra Inc." + ] +} diff --git a/data/software/vi/visions-of-chaos.json b/data/software/vi/visions-of-chaos.json new file mode 100644 index 000000000000..4da3e33bcfb2 --- /dev/null +++ b/data/software/vi/visions-of-chaos.json @@ -0,0 +1,8 @@ +{ + "slug": "visions-of-chaos", + "name": "Visions of Chaos", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72551416" + ] +} diff --git a/data/software/vi/vismon.json b/data/software/vi/vismon.json new file mode 100644 index 000000000000..3bd66d77d3fa --- /dev/null +++ b/data/software/vi/vismon.json @@ -0,0 +1,12 @@ +{ + "slug": "vismon", + "name": "Vismon", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7936362" + ], + "developers": [ + "Dave Presotto", + "Rob Pike" + ] +} diff --git a/data/software/vi/visone.json b/data/software/vi/visone.json new file mode 100644 index 000000000000..7803e26785eb --- /dev/null +++ b/data/software/vi/visone.json @@ -0,0 +1,11 @@ +{ + "slug": "visone", + "name": "visone", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17088840" + ], + "programming_languages": [ + "Java" + ] +} diff --git a/data/software/vi/vispy.json b/data/software/vi/vispy.json new file mode 100644 index 000000000000..97c1795dff7d --- /dev/null +++ b/data/software/vi/vispy.json @@ -0,0 +1,8 @@ +{ + "slug": "vispy", + "name": "VisPy", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113050441" + ] +} diff --git a/data/software/vi/visq-q17122933.json b/data/software/vi/visq-q17122933.json new file mode 100644 index 000000000000..575370df1837 --- /dev/null +++ b/data/software/vi/visq-q17122933.json @@ -0,0 +1,8 @@ +{ + "slug": "visq-q17122933", + "name": "VISQ", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17122933" + ] +} diff --git a/data/software/vi/visq.json b/data/software/vi/visq.json new file mode 100644 index 000000000000..c5273106210f --- /dev/null +++ b/data/software/vi/visq.json @@ -0,0 +1,8 @@ +{ + "slug": "visq", + "name": "Visq", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10392012" + ] +} diff --git a/data/software/vi/vissim.json b/data/software/vi/vissim.json new file mode 100644 index 000000000000..ae6177d2e607 --- /dev/null +++ b/data/software/vi/vissim.json @@ -0,0 +1,17 @@ +{ + "slug": "vissim", + "name": "VISSIM", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q844764" + ], + "developers": [ + "PTV Group" + ], + "operating_systems": [ + "Microsoft Windows" + ], + "licenses": [ + "end-user license agreement" + ] +} diff --git a/data/software/vi/vista-transformation-pack.json b/data/software/vi/vista-transformation-pack.json new file mode 100644 index 000000000000..590c96459958 --- /dev/null +++ b/data/software/vi/vista-transformation-pack.json @@ -0,0 +1,8 @@ +{ + "slug": "vista-transformation-pack", + "name": "Vista Transformation Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q907353" + ] +} diff --git a/data/software/vi/vistape.json b/data/software/vi/vistape.json new file mode 100644 index 000000000000..d2822ef2e1de --- /dev/null +++ b/data/software/vi/vistape.json @@ -0,0 +1,8 @@ +{ + "slug": "vistape", + "name": "VistaPE", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1446659" + ] +} diff --git a/data/software/vi/visual-bcd-editor.json b/data/software/vi/visual-bcd-editor.json new file mode 100644 index 000000000000..3c47f7e4a2a9 --- /dev/null +++ b/data/software/vi/visual-bcd-editor.json @@ -0,0 +1,11 @@ +{ + "slug": "visual-bcd-editor", + "name": "Visual BCD Editor", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q94410258" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/vi/visual-browser.json b/data/software/vi/visual-browser.json new file mode 100644 index 000000000000..fea177f7dfbb --- /dev/null +++ b/data/software/vi/visual-browser.json @@ -0,0 +1,8 @@ +{ + "slug": "visual-browser", + "name": "Visual Browser", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084712" + ] +} diff --git a/data/software/vi/visual-builder.json b/data/software/vi/visual-builder.json new file mode 100644 index 000000000000..958650e3f7ac --- /dev/null +++ b/data/software/vi/visual-builder.json @@ -0,0 +1,8 @@ +{ + "slug": "visual-builder", + "name": "Visual Builder", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105745458" + ] +} diff --git a/data/software/vi/visual-caf.json b/data/software/vi/visual-caf.json new file mode 100644 index 000000000000..80c4232da002 --- /dev/null +++ b/data/software/vi/visual-caf.json @@ -0,0 +1,8 @@ +{ + "slug": "visual-caf", + "name": "Visual Café", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7936540" + ] +} diff --git a/data/software/vi/visual-compliance.json b/data/software/vi/visual-compliance.json new file mode 100644 index 000000000000..2b12464e5a3c --- /dev/null +++ b/data/software/vi/visual-compliance.json @@ -0,0 +1,11 @@ +{ + "slug": "visual-compliance", + "name": "Visual Compliance", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7936543" + ], + "developers": [ + "ECustoms" + ] +} diff --git a/data/software/vi/visual-expert.json b/data/software/vi/visual-expert.json new file mode 100644 index 000000000000..0446edb8832f --- /dev/null +++ b/data/software/vi/visual-expert.json @@ -0,0 +1,8 @@ +{ + "slug": "visual-expert", + "name": "Visual Expert", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q30640379" + ] +} diff --git a/data/software/vi/visual-installer.json b/data/software/vi/visual-installer.json new file mode 100644 index 000000000000..2eb15bf55fa9 --- /dev/null +++ b/data/software/vi/visual-installer.json @@ -0,0 +1,8 @@ +{ + "slug": "visual-installer", + "name": "Visual Installer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6389140" + ] +} diff --git a/data/software/vi/visual-intercept.json b/data/software/vi/visual-intercept.json new file mode 100644 index 000000000000..6c6044b3c517 --- /dev/null +++ b/data/software/vi/visual-intercept.json @@ -0,0 +1,8 @@ +{ + "slug": "visual-intercept", + "name": "Visual Intercept", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7936557" + ] +} diff --git a/data/software/vi/visual-mind.json b/data/software/vi/visual-mind.json new file mode 100644 index 000000000000..ffc41fe4b805 --- /dev/null +++ b/data/software/vi/visual-mind.json @@ -0,0 +1,8 @@ +{ + "slug": "visual-mind", + "name": "Visual Mind", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10716210" + ] +} diff --git a/data/software/vi/visual-nature-studio.json b/data/software/vi/visual-nature-studio.json new file mode 100644 index 000000000000..ec27d7b96155 --- /dev/null +++ b/data/software/vi/visual-nature-studio.json @@ -0,0 +1,12 @@ +{ + "slug": "visual-nature-studio", + "name": "Visual Nature Studio", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7936562" + ], + "release_date": "2001-01-01", + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/vi/visual-sentinel.json b/data/software/vi/visual-sentinel.json new file mode 100644 index 000000000000..2003bd6f87d8 --- /dev/null +++ b/data/software/vi/visual-sentinel.json @@ -0,0 +1,11 @@ +{ + "slug": "visual-sentinel", + "name": "Visual Sentinel", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139586810" + ], + "programming_languages": [ + "TypeScript" + ] +} diff --git a/data/software/vi/visual-studio-2005.json b/data/software/vi/visual-studio-2005.json new file mode 100644 index 000000000000..b5a9ffb3c211 --- /dev/null +++ b/data/software/vi/visual-studio-2005.json @@ -0,0 +1,11 @@ +{ + "slug": "visual-studio-2005", + "name": "Visual Studio 2005", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115117171" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/vi/visual-studio-2012.json b/data/software/vi/visual-studio-2012.json new file mode 100644 index 000000000000..5688cf8452c3 --- /dev/null +++ b/data/software/vi/visual-studio-2012.json @@ -0,0 +1,11 @@ +{ + "slug": "visual-studio-2012", + "name": "Visual studio 2012", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131374634" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/vi/visual-studio-2022.json b/data/software/vi/visual-studio-2022.json new file mode 100644 index 000000000000..cc9a297019ad --- /dev/null +++ b/data/software/vi/visual-studio-2022.json @@ -0,0 +1,11 @@ +{ + "slug": "visual-studio-2022", + "name": "Visual Studio 2022", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125214383" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/vi/visual-test.json b/data/software/vi/visual-test.json new file mode 100644 index 000000000000..d7b0abe25c0c --- /dev/null +++ b/data/software/vi/visual-test.json @@ -0,0 +1,14 @@ +{ + "slug": "visual-test", + "name": "Visual Test", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7936576" + ], + "developers": [ + "Microsoft" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/vi/visualarq.json b/data/software/vi/visualarq.json new file mode 100644 index 000000000000..1e601bc9ef7a --- /dev/null +++ b/data/software/vi/visualarq.json @@ -0,0 +1,12 @@ +{ + "slug": "visualarq", + "name": "VisualARQ", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17145537" + ], + "release_date": "2009-12-01", + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/vi/visualcron.json b/data/software/vi/visualcron.json new file mode 100644 index 000000000000..56c22f263cc3 --- /dev/null +++ b/data/software/vi/visualcron.json @@ -0,0 +1,8 @@ +{ + "slug": "visualcron", + "name": "VisualCron", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7936513" + ] +} diff --git a/data/software/vi/visualeyes.json b/data/software/vi/visualeyes.json new file mode 100644 index 000000000000..ae0e9b202287 --- /dev/null +++ b/data/software/vi/visualeyes.json @@ -0,0 +1,8 @@ +{ + "slug": "visualeyes", + "name": "VisualEyes", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084714" + ] +} diff --git a/data/software/vi/visualfea.json b/data/software/vi/visualfea.json new file mode 100644 index 000000000000..62fe139ae8da --- /dev/null +++ b/data/software/vi/visualfea.json @@ -0,0 +1,13 @@ +{ + "slug": "visualfea", + "name": "VisualFEA", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7936514" + ], + "release_date": "2000-01-01", + "operating_systems": [ + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/software/vi/visualize-free.json b/data/software/vi/visualize-free.json new file mode 100644 index 000000000000..2abf8eedcd54 --- /dev/null +++ b/data/software/vi/visualize-free.json @@ -0,0 +1,8 @@ +{ + "slug": "visualize-free", + "name": "Visualize Free", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084715" + ] +} diff --git a/data/software/vi/visualizing-literature-sentiment.json b/data/software/vi/visualizing-literature-sentiment.json new file mode 100644 index 000000000000..40ef7665e8d1 --- /dev/null +++ b/data/software/vi/visualizing-literature-sentiment.json @@ -0,0 +1,8 @@ +{ + "slug": "visualizing-literature-sentiment", + "name": "Visualizing Literature: Sentiment", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084716" + ] +} diff --git a/data/software/vi/visualizing-literature-virtue-and-vice.json b/data/software/vi/visualizing-literature-virtue-and-vice.json new file mode 100644 index 000000000000..c2b9a3896d08 --- /dev/null +++ b/data/software/vi/visualizing-literature-virtue-and-vice.json @@ -0,0 +1,8 @@ +{ + "slug": "visualizing-literature-virtue-and-vice", + "name": "Visualizing Literature: Virtue and Vice", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084717" + ] +} diff --git a/data/software/vi/visualsim-architect.json b/data/software/vi/visualsim-architect.json new file mode 100644 index 000000000000..d8af3643add5 --- /dev/null +++ b/data/software/vi/visualsim-architect.json @@ -0,0 +1,8 @@ +{ + "slug": "visualsim-architect", + "name": "VisualSim Architect", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q24765373" + ] +} diff --git a/data/software/vi/visualsvn-server.json b/data/software/vi/visualsvn-server.json new file mode 100644 index 000000000000..a9bfa8d64906 --- /dev/null +++ b/data/software/vi/visualsvn-server.json @@ -0,0 +1,8 @@ +{ + "slug": "visualsvn-server", + "name": "VisualSVN Server", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7936518" + ] +} diff --git a/data/software/vi/visualsvn.json b/data/software/vi/visualsvn.json new file mode 100644 index 000000000000..bc41c69ab4a9 --- /dev/null +++ b/data/software/vi/visualsvn.json @@ -0,0 +1,8 @@ +{ + "slug": "visualsvn", + "name": "VisualSVN", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3561121" + ] +} diff --git a/data/software/vi/visuwords.json b/data/software/vi/visuwords.json new file mode 100644 index 000000000000..77e014c1d558 --- /dev/null +++ b/data/software/vi/visuwords.json @@ -0,0 +1,8 @@ +{ + "slug": "visuwords", + "name": "VisuWords", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084718" + ] +} diff --git a/data/software/vi/vit.json b/data/software/vi/vit.json new file mode 100644 index 000000000000..be25aed966fa --- /dev/null +++ b/data/software/vi/vit.json @@ -0,0 +1,8 @@ +{ + "slug": "vit", + "name": "vit", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975552" + ] +} diff --git a/data/software/vi/vital.json b/data/software/vi/vital.json new file mode 100644 index 000000000000..24f3572cf15a --- /dev/null +++ b/data/software/vi/vital.json @@ -0,0 +1,8 @@ +{ + "slug": "vital", + "name": "VITAL", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q96413215" + ] +} diff --git a/data/software/vi/vitalibot.json b/data/software/vi/vitalibot.json new file mode 100644 index 000000000000..462741f9c5c0 --- /dev/null +++ b/data/software/vi/vitalibot.json @@ -0,0 +1,8 @@ +{ + "slug": "vitalibot", + "name": "VitaliBot", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140042977" + ] +} diff --git a/data/software/vi/vitalize.json b/data/software/vi/vitalize.json new file mode 100644 index 000000000000..b9f4b3ae4df2 --- /dev/null +++ b/data/software/vi/vitalize.json @@ -0,0 +1,8 @@ +{ + "slug": "vitalize", + "name": "Vitalize!", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7936912" + ] +} diff --git a/data/software/vi/vitek.json b/data/software/vi/vitek.json new file mode 100644 index 000000000000..fe3818f7056a --- /dev/null +++ b/data/software/vi/vitek.json @@ -0,0 +1,8 @@ +{ + "slug": "vitek", + "name": "VITEK", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117831073" + ] +} diff --git a/data/software/vi/vive.json b/data/software/vi/vive.json new file mode 100644 index 000000000000..66ade917d2d7 --- /dev/null +++ b/data/software/vi/vive.json @@ -0,0 +1,12 @@ +{ + "slug": "vive", + "name": "Vive", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18575104" + ], + "release_date": "2014-06-01", + "operating_systems": [ + "iOS" + ] +} diff --git a/data/software/vi/vivibook.json b/data/software/vi/vivibook.json new file mode 100644 index 000000000000..56cff89d5eb1 --- /dev/null +++ b/data/software/vi/vivibook.json @@ -0,0 +1,8 @@ +{ + "slug": "vivibook", + "name": "ViviBook", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139622471" + ] +} diff --git a/data/software/vi/vivliostyle.json b/data/software/vi/vivliostyle.json new file mode 100644 index 000000000000..5c15c179e1f4 --- /dev/null +++ b/data/software/vi/vivliostyle.json @@ -0,0 +1,11 @@ +{ + "slug": "vivliostyle", + "name": "Vivliostyle", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q96473517" + ], + "programming_languages": [ + "TypeScript" + ] +} diff --git a/data/software/vi/vivo-software.json b/data/software/vi/vivo-software.json new file mode 100644 index 000000000000..f4595c88764b --- /dev/null +++ b/data/software/vi/vivo-software.json @@ -0,0 +1,8 @@ +{ + "slug": "vivo-software", + "name": "Vivo Software", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7937937" + ] +} diff --git a/data/software/vi/vivoactive.json b/data/software/vi/vivoactive.json new file mode 100644 index 000000000000..e2737dc65031 --- /dev/null +++ b/data/software/vi/vivoactive.json @@ -0,0 +1,8 @@ +{ + "slug": "vivoactive", + "name": "VivoActive", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7937927" + ] +} diff --git a/data/software/vi/vizastar.json b/data/software/vi/vizastar.json new file mode 100644 index 000000000000..bae5a10a6abd --- /dev/null +++ b/data/software/vi/vizastar.json @@ -0,0 +1,8 @@ +{ + "slug": "vizastar", + "name": "Vizastar", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7937995" + ] +} diff --git a/data/software/vi/vizcon.json b/data/software/vi/vizcon.json new file mode 100644 index 000000000000..fbac5eddeda8 --- /dev/null +++ b/data/software/vi/vizcon.json @@ -0,0 +1,8 @@ +{ + "slug": "vizcon", + "name": "VizCon", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139579996" + ] +} diff --git a/data/software/vi/vizerra.json b/data/software/vi/vizerra.json new file mode 100644 index 000000000000..e92745219da5 --- /dev/null +++ b/data/software/vi/vizerra.json @@ -0,0 +1,8 @@ +{ + "slug": "vizerra", + "name": "Vizerra", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4052767" + ] +} diff --git a/data/software/vi/vizex-reader.json b/data/software/vi/vizex-reader.json new file mode 100644 index 000000000000..6d4c71dda3df --- /dev/null +++ b/data/software/vi/vizex-reader.json @@ -0,0 +1,8 @@ +{ + "slug": "vizex-reader", + "name": "VizEx Reader", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q61413072" + ] +} diff --git a/data/software/vi/viziapps.json b/data/software/vi/viziapps.json new file mode 100644 index 000000000000..98bc3a62aae4 --- /dev/null +++ b/data/software/vi/viziapps.json @@ -0,0 +1,11 @@ +{ + "slug": "viziapps", + "name": "ViziApps", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7938015" + ], + "developers": [ + "ViziApps" + ] +} diff --git a/data/software/vi/vizumed.json b/data/software/vi/vizumed.json new file mode 100644 index 000000000000..426a0fc6a3f0 --- /dev/null +++ b/data/software/vi/vizumed.json @@ -0,0 +1,8 @@ +{ + "slug": "vizumed", + "name": "Vizumed", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139918701" + ] +} diff --git a/data/software/vk/vk-gl-cts.json b/data/software/vk/vk-gl-cts.json new file mode 100644 index 000000000000..a6689a549cd4 --- /dev/null +++ b/data/software/vk/vk-gl-cts.json @@ -0,0 +1,11 @@ +{ + "slug": "vk-gl-cts", + "name": "VK-GL-CTS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q119982997" + ], + "licenses": [ + "Apache Software License 2.0" + ] +} diff --git a/data/software/vk/vkd3d.json b/data/software/vk/vkd3d.json new file mode 100644 index 000000000000..52ae01fb170e --- /dev/null +++ b/data/software/vk/vkd3d.json @@ -0,0 +1,11 @@ +{ + "slug": "vkd3d", + "name": "VKD3D", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116392057" + ], + "licenses": [ + "GNU Lesser General Public License, version 2.1 or later" + ] +} diff --git a/data/software/vm/vm-software.json b/data/software/vm/vm-software.json new file mode 100644 index 000000000000..83490750e602 --- /dev/null +++ b/data/software/vm/vm-software.json @@ -0,0 +1,8 @@ +{ + "slug": "vm-software", + "name": "VM Software", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107675362" + ] +} diff --git a/data/software/vm/vmmark.json b/data/software/vm/vmmark.json new file mode 100644 index 000000000000..2e89e9290d80 --- /dev/null +++ b/data/software/vm/vmmark.json @@ -0,0 +1,11 @@ +{ + "slug": "vmmark", + "name": "VMmark", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7907328" + ], + "developers": [ + "VMware" + ] +} diff --git a/data/software/vm/vmprotect.json b/data/software/vm/vmprotect.json new file mode 100644 index 000000000000..76a0c78f78a2 --- /dev/null +++ b/data/software/vm/vmprotect.json @@ -0,0 +1,8 @@ +{ + "slug": "vmprotect", + "name": "VMProtect", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q59783688" + ] +} diff --git a/data/software/vm/vmware-infrastructure.json b/data/software/vm/vmware-infrastructure.json new file mode 100644 index 000000000000..380e662f6126 --- /dev/null +++ b/data/software/vm/vmware-infrastructure.json @@ -0,0 +1,11 @@ +{ + "slug": "vmware-infrastructure", + "name": "VMware Infrastructure", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7907330" + ], + "developers": [ + "VMware" + ] +} diff --git a/data/software/vm/vmware-powercli.json b/data/software/vm/vmware-powercli.json new file mode 100644 index 000000000000..a9ffd21923c2 --- /dev/null +++ b/data/software/vm/vmware-powercli.json @@ -0,0 +1,8 @@ +{ + "slug": "vmware-powercli", + "name": "VMware PowerCLI", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16935481" + ] +} diff --git a/data/software/vm/vmware-service-manager.json b/data/software/vm/vmware-service-manager.json new file mode 100644 index 000000000000..0c4d893450c3 --- /dev/null +++ b/data/software/vm/vmware-service-manager.json @@ -0,0 +1,11 @@ +{ + "slug": "vmware-service-manager", + "name": "VMware Service Manager", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7907331" + ], + "developers": [ + "VMware" + ] +} diff --git a/data/software/vm/vmware-thinapp.json b/data/software/vm/vmware-thinapp.json new file mode 100644 index 000000000000..348eb57b7f0c --- /dev/null +++ b/data/software/vm/vmware-thinapp.json @@ -0,0 +1,14 @@ +{ + "slug": "vmware-thinapp", + "name": "VMware ThinApp", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2036703" + ], + "developers": [ + "VMware" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/vm/vmware-vsphere.json b/data/software/vm/vmware-vsphere.json new file mode 100644 index 000000000000..a1ea5608be0a --- /dev/null +++ b/data/software/vm/vmware-vsphere.json @@ -0,0 +1,11 @@ +{ + "slug": "vmware-vsphere", + "name": "VMware vSphere", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7881459" + ], + "developers": [ + "VMware" + ] +} diff --git a/data/software/vn/vns3.json b/data/software/vn/vns3.json new file mode 100644 index 000000000000..f1060b0d71e8 --- /dev/null +++ b/data/software/vn/vns3.json @@ -0,0 +1,8 @@ +{ + "slug": "vns3", + "name": "VNS3", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17088899" + ] +} diff --git a/data/software/vo/vo-aacenc.json b/data/software/vo/vo-aacenc.json new file mode 100644 index 000000000000..2394beaa09a9 --- /dev/null +++ b/data/software/vo/vo-aacenc.json @@ -0,0 +1,11 @@ +{ + "slug": "vo-aacenc", + "name": "vo-aacenc", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975553" + ], + "licenses": [ + "Apache License" + ] +} diff --git a/data/software/vo/vo-amrwbenc.json b/data/software/vo/vo-amrwbenc.json new file mode 100644 index 000000000000..c02fcd1bf5d6 --- /dev/null +++ b/data/software/vo/vo-amrwbenc.json @@ -0,0 +1,11 @@ +{ + "slug": "vo-amrwbenc", + "name": "vo-amrwbenc", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975554" + ], + "licenses": [ + "Apache License" + ] +} diff --git a/data/software/vo/voacap.json b/data/software/vo/voacap.json new file mode 100644 index 000000000000..3d2c453074ab --- /dev/null +++ b/data/software/vo/voacap.json @@ -0,0 +1,8 @@ +{ + "slug": "voacap", + "name": "VOACAP", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7907360" + ] +} diff --git a/data/software/vo/vocab-u-lister.json b/data/software/vo/vocab-u-lister.json new file mode 100644 index 000000000000..b5d0843deb05 --- /dev/null +++ b/data/software/vo/vocab-u-lister.json @@ -0,0 +1,8 @@ +{ + "slug": "vocab-u-lister", + "name": "VOCAB - U - LISTER", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084719" + ] +} diff --git a/data/software/vo/vocalina.json b/data/software/vo/vocalina.json new file mode 100644 index 000000000000..2e4c91af6249 --- /dev/null +++ b/data/software/vo/vocalina.json @@ -0,0 +1,8 @@ +{ + "slug": "vocalina", + "name": "Vocalina", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q12598450" + ] +} diff --git a/data/software/vo/vocaloid-6.json b/data/software/vo/vocaloid-6.json new file mode 100644 index 000000000000..4da7b439b44b --- /dev/null +++ b/data/software/vo/vocaloid-6.json @@ -0,0 +1,8 @@ +{ + "slug": "vocaloid-6", + "name": "Vocaloid 6", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q128390017" + ] +} diff --git a/data/software/vo/vocaloid-editor-for-cubase.json b/data/software/vo/vocaloid-editor-for-cubase.json new file mode 100644 index 000000000000..87eede0df8ed --- /dev/null +++ b/data/software/vo/vocaloid-editor-for-cubase.json @@ -0,0 +1,8 @@ +{ + "slug": "vocaloid-editor-for-cubase", + "name": "Vocaloid Editor for Cubase", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25103832" + ] +} diff --git a/data/software/vo/vocalowitter.json b/data/software/vo/vocalowitter.json new file mode 100644 index 000000000000..f31b12aebb1a --- /dev/null +++ b/data/software/vo/vocalowitter.json @@ -0,0 +1,8 @@ +{ + "slug": "vocalowitter", + "name": "VocaloWitter", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22909675" + ] +} diff --git a/data/software/vo/vodburner.json b/data/software/vo/vodburner.json new file mode 100644 index 000000000000..a22da525b636 --- /dev/null +++ b/data/software/vo/vodburner.json @@ -0,0 +1,8 @@ +{ + "slug": "vodburner", + "name": "VodBurner", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084720" + ] +} diff --git a/data/software/vo/voicecup-dictionary-of-pronunciation.json b/data/software/vo/voicecup-dictionary-of-pronunciation.json new file mode 100644 index 000000000000..5a789b406669 --- /dev/null +++ b/data/software/vo/voicecup-dictionary-of-pronunciation.json @@ -0,0 +1,8 @@ +{ + "slug": "voicecup-dictionary-of-pronunciation", + "name": "Voicecup dictionary of pronunciation", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084721" + ] +} diff --git a/data/software/vo/voiceflow.json b/data/software/vo/voiceflow.json new file mode 100644 index 000000000000..3aa029b47da1 --- /dev/null +++ b/data/software/vo/voiceflow.json @@ -0,0 +1,8 @@ +{ + "slug": "voiceflow", + "name": "Voiceflow", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127605265" + ] +} diff --git a/data/software/vo/voicemeeter.json b/data/software/vo/voicemeeter.json new file mode 100644 index 000000000000..5c4e86cbf3e4 --- /dev/null +++ b/data/software/vo/voicemeeter.json @@ -0,0 +1,11 @@ +{ + "slug": "voicemeeter", + "name": "Voicemeeter", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q56317352" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/vo/voiceroid.json b/data/software/vo/voiceroid.json new file mode 100644 index 000000000000..4fcc12611db5 --- /dev/null +++ b/data/software/vo/voiceroid.json @@ -0,0 +1,11 @@ +{ + "slug": "voiceroid", + "name": "Voiceroid", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17144718" + ], + "developers": [ + "AH-Software" + ] +} diff --git a/data/software/vo/voicevox.json b/data/software/vo/voicevox.json new file mode 100644 index 000000000000..36575b57f3af --- /dev/null +++ b/data/software/vo/voicevox.json @@ -0,0 +1,17 @@ +{ + "slug": "voicevox", + "name": "VOICEVOX", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109243147" + ], + "release_date": "2021-08-01", + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "licenses": [ + "GNU Lesser General Public License, version 3.0", + "freeware" + ] +} diff --git a/data/software/vo/voicewalker.json b/data/software/vo/voicewalker.json new file mode 100644 index 000000000000..22c328aabd51 --- /dev/null +++ b/data/software/vo/voicewalker.json @@ -0,0 +1,8 @@ +{ + "slug": "voicewalker", + "name": "VoiceWalker", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084722" + ] +} diff --git a/data/software/vo/voikko.json b/data/software/vo/voikko.json new file mode 100644 index 000000000000..54e1ace44339 --- /dev/null +++ b/data/software/vo/voikko.json @@ -0,0 +1,8 @@ +{ + "slug": "voikko", + "name": "Voikko", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11901834" + ] +} diff --git a/data/software/vo/voilabits-mediaconverterultimate.json b/data/software/vo/voilabits-mediaconverterultimate.json new file mode 100644 index 000000000000..c24d57da037d --- /dev/null +++ b/data/software/vo/voilabits-mediaconverterultimate.json @@ -0,0 +1,8 @@ +{ + "slug": "voilabits-mediaconverterultimate", + "name": "Voilabits MediaConverterUltimate", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084723" + ] +} diff --git a/data/software/vo/vokabel.json b/data/software/vo/vokabel.json new file mode 100644 index 000000000000..25a76a03c446 --- /dev/null +++ b/data/software/vo/vokabel.json @@ -0,0 +1,8 @@ +{ + "slug": "vokabel", + "name": "Vokabel", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10716564" + ] +} diff --git a/data/software/vo/volatility.json b/data/software/vo/volatility.json new file mode 100644 index 000000000000..8b27c5278f16 --- /dev/null +++ b/data/software/vo/volatility.json @@ -0,0 +1,11 @@ +{ + "slug": "volatility", + "name": "Volatility", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7939997" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/vo/volkswriter.json b/data/software/vo/volkswriter.json new file mode 100644 index 000000000000..f476f876a15c --- /dev/null +++ b/data/software/vo/volkswriter.json @@ -0,0 +1,16 @@ +{ + "slug": "volkswriter", + "name": "VolksWriter", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7940270" + ], + "release_date": "1982-01-01", + "operating_systems": [ + "OS-9", + "DOS" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/vo/volt-lx.json b/data/software/vo/volt-lx.json new file mode 100644 index 000000000000..003cde01d69f --- /dev/null +++ b/data/software/vo/volt-lx.json @@ -0,0 +1,14 @@ +{ + "slug": "volt-lx", + "name": "VOLT/LX", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121672443" + ], + "developers": [ + "D&A Software" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/vo/volume-logic.json b/data/software/vo/volume-logic.json new file mode 100644 index 000000000000..5cd7848a18a7 --- /dev/null +++ b/data/software/vo/volume-logic.json @@ -0,0 +1,11 @@ +{ + "slug": "volume-logic", + "name": "Volume Logic", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7940873" + ], + "developers": [ + "Plantronics" + ] +} diff --git a/data/software/vo/volumill.json b/data/software/vo/volumill.json new file mode 100644 index 000000000000..779703eb6aaf --- /dev/null +++ b/data/software/vo/volumill.json @@ -0,0 +1,8 @@ +{ + "slug": "volumill", + "name": "VoluMill", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7940817" + ] +} diff --git a/data/software/vo/volunteer-smartphone-patrol.json b/data/software/vo/volunteer-smartphone-patrol.json new file mode 100644 index 000000000000..afda0271c7bb --- /dev/null +++ b/data/software/vo/volunteer-smartphone-patrol.json @@ -0,0 +1,8 @@ +{ + "slug": "volunteer-smartphone-patrol", + "name": "Volunteer Smartphone Patrol", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126182584" + ] +} diff --git a/data/software/vo/voodoopad.json b/data/software/vo/voodoopad.json new file mode 100644 index 000000000000..bf7257f886b3 --- /dev/null +++ b/data/software/vo/voodoopad.json @@ -0,0 +1,8 @@ +{ + "slug": "voodoopad", + "name": "VoodooPad", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084724" + ] +} diff --git a/data/software/vo/vopt.json b/data/software/vo/vopt.json new file mode 100644 index 000000000000..5513c58e8ec6 --- /dev/null +++ b/data/software/vo/vopt.json @@ -0,0 +1,8 @@ +{ + "slug": "vopt", + "name": "Vopt", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1085287" + ] +} diff --git a/data/software/vo/vorest.json b/data/software/vo/vorest.json new file mode 100644 index 000000000000..30f84d39eb26 --- /dev/null +++ b/data/software/vo/vorest.json @@ -0,0 +1,8 @@ +{ + "slug": "vorest", + "name": "Vorest", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6164808" + ] +} diff --git a/data/software/vo/voronoi-diagram-with-word-embedding.json b/data/software/vo/voronoi-diagram-with-word-embedding.json new file mode 100644 index 000000000000..a9bc4dde612e --- /dev/null +++ b/data/software/vo/voronoi-diagram-with-word-embedding.json @@ -0,0 +1,8 @@ +{ + "slug": "voronoi-diagram-with-word-embedding", + "name": "Voronoi Diagram with Word Embedding", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084725" + ] +} diff --git a/data/software/vo/vosviewer-online.json b/data/software/vo/vosviewer-online.json new file mode 100644 index 000000000000..a280212363ec --- /dev/null +++ b/data/software/vo/vosviewer-online.json @@ -0,0 +1,15 @@ +{ + "slug": "vosviewer-online", + "name": "VOSviewer Online", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109186232" + ], + "developers": [ + "Nees Jan van Eck", + "Ludo Waltman" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/vo/vosviewer.json b/data/software/vo/vosviewer.json new file mode 100644 index 000000000000..7b51be0132be --- /dev/null +++ b/data/software/vo/vosviewer.json @@ -0,0 +1,12 @@ +{ + "slug": "vosviewer", + "name": "VOSviewer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q56475613" + ], + "developers": [ + "Nees Jan van Eck", + "Ludo Waltman" + ] +} diff --git a/data/software/vo/votca-csg.json b/data/software/vo/votca-csg.json new file mode 100644 index 000000000000..a780df99d23f --- /dev/null +++ b/data/software/vo/votca-csg.json @@ -0,0 +1,11 @@ +{ + "slug": "votca-csg", + "name": "votca-csg", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975555" + ], + "licenses": [ + "Apache License" + ] +} diff --git a/data/software/vo/votca-csgapps.json b/data/software/vo/votca-csgapps.json new file mode 100644 index 000000000000..8e42ea914747 --- /dev/null +++ b/data/software/vo/votca-csgapps.json @@ -0,0 +1,8 @@ +{ + "slug": "votca-csgapps", + "name": "votca-csgapps", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975556" + ] +} diff --git a/data/software/vo/votca-ctp.json b/data/software/vo/votca-ctp.json new file mode 100644 index 000000000000..1d7e9074f99a --- /dev/null +++ b/data/software/vo/votca-ctp.json @@ -0,0 +1,8 @@ +{ + "slug": "votca-ctp", + "name": "votca-ctp", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q132298432" + ] +} diff --git a/data/software/vo/votca-tools.json b/data/software/vo/votca-tools.json new file mode 100644 index 000000000000..e137a2e494ee --- /dev/null +++ b/data/software/vo/votca-tools.json @@ -0,0 +1,8 @@ +{ + "slug": "votca-tools", + "name": "votca-tools", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975558" + ] +} diff --git a/data/software/vo/votca-xtp.json b/data/software/vo/votca-xtp.json new file mode 100644 index 000000000000..dc810dd5e0bc --- /dev/null +++ b/data/software/vo/votca-xtp.json @@ -0,0 +1,11 @@ +{ + "slug": "votca-xtp", + "name": "votca-xtp", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975559" + ], + "licenses": [ + "Apache License" + ] +} diff --git a/data/software/vo/vov.json b/data/software/vo/vov.json new file mode 100644 index 000000000000..18de85e69bd9 --- /dev/null +++ b/data/software/vo/vov.json @@ -0,0 +1,8 @@ +{ + "slug": "vov", + "name": "vov", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127418914" + ] +} diff --git a/data/software/vo/vowpal-wabbit.json b/data/software/vo/vowpal-wabbit.json new file mode 100644 index 000000000000..c6544243cba3 --- /dev/null +++ b/data/software/vo/vowpal-wabbit.json @@ -0,0 +1,13 @@ +{ + "slug": "vowpal-wabbit", + "name": "Vowpal Wabbit", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7942323" + ], + "developers": [ + "Yahoo! Research", + "John Langford", + "Microsoft Research" + ] +} diff --git a/data/software/vo/voxcribecc.json b/data/software/vo/voxcribecc.json new file mode 100644 index 000000000000..d8cc36fbdf11 --- /dev/null +++ b/data/software/vo/voxcribecc.json @@ -0,0 +1,8 @@ +{ + "slug": "voxcribecc", + "name": "VoxcribeCC", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084726" + ] +} diff --git a/data/software/vo/voxel-man.json b/data/software/vo/voxel-man.json new file mode 100644 index 000000000000..a435f3b309c5 --- /dev/null +++ b/data/software/vo/voxel-man.json @@ -0,0 +1,11 @@ +{ + "slug": "voxel-man", + "name": "Voxel-Man", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2534898" + ], + "developers": [ + "University Medical Center Hamburg-Eppendorf" + ] +} diff --git a/data/software/vo/voyager-2.json b/data/software/vo/voyager-2.json new file mode 100644 index 000000000000..cd026b889c77 --- /dev/null +++ b/data/software/vo/voyager-2.json @@ -0,0 +1,8 @@ +{ + "slug": "voyager-2", + "name": "Voyager 2", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084727" + ] +} diff --git a/data/software/vo/voyant-2-0-bubblelines.json b/data/software/vo/voyant-2-0-bubblelines.json new file mode 100644 index 000000000000..bd26fa325d80 --- /dev/null +++ b/data/software/vo/voyant-2-0-bubblelines.json @@ -0,0 +1,8 @@ +{ + "slug": "voyant-2-0-bubblelines", + "name": "Voyant 2.0: Bubblelines", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084728" + ] +} diff --git a/data/software/vo/voyant-2-0-knots.json b/data/software/vo/voyant-2-0-knots.json new file mode 100644 index 000000000000..bedfd7a8bafc --- /dev/null +++ b/data/software/vo/voyant-2-0-knots.json @@ -0,0 +1,8 @@ +{ + "slug": "voyant-2-0-knots", + "name": "Voyant 2.0: Knots", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084729" + ] +} diff --git a/data/software/vo/voyant-2-0-scatterplot.json b/data/software/vo/voyant-2-0-scatterplot.json new file mode 100644 index 000000000000..3af41ddb9277 --- /dev/null +++ b/data/software/vo/voyant-2-0-scatterplot.json @@ -0,0 +1,8 @@ +{ + "slug": "voyant-2-0-scatterplot", + "name": "Voyant 2.0: ScatterPlot", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084730" + ] +} diff --git a/data/software/vo/voyant-2-0-terms-radio.json b/data/software/vo/voyant-2-0-terms-radio.json new file mode 100644 index 000000000000..3773be91fa51 --- /dev/null +++ b/data/software/vo/voyant-2-0-terms-radio.json @@ -0,0 +1,8 @@ +{ + "slug": "voyant-2-0-terms-radio", + "name": "Voyant 2.0: Terms Radio", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084731" + ] +} diff --git a/data/software/vo/voyant-corpus-grid.json b/data/software/vo/voyant-corpus-grid.json new file mode 100644 index 000000000000..29f70b1a4c22 --- /dev/null +++ b/data/software/vo/voyant-corpus-grid.json @@ -0,0 +1,8 @@ +{ + "slug": "voyant-corpus-grid", + "name": "Voyant Corpus Grid", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087760" + ] +} diff --git a/data/software/vo/voyant-corpus-term-frequencies.json b/data/software/vo/voyant-corpus-term-frequencies.json new file mode 100644 index 000000000000..ae1b3dc79dad --- /dev/null +++ b/data/software/vo/voyant-corpus-term-frequencies.json @@ -0,0 +1,8 @@ +{ + "slug": "voyant-corpus-term-frequencies", + "name": "Voyant Corpus Term Frequencies", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087761" + ] +} diff --git a/data/software/vo/voyant-document-kwics.json b/data/software/vo/voyant-document-kwics.json new file mode 100644 index 000000000000..0d2fef9e7ec3 --- /dev/null +++ b/data/software/vo/voyant-document-kwics.json @@ -0,0 +1,8 @@ +{ + "slug": "voyant-document-kwics", + "name": "Voyant Document KWICs", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084732" + ] +} diff --git a/data/software/vo/voyant-document-term-frequencies.json b/data/software/vo/voyant-document-term-frequencies.json new file mode 100644 index 000000000000..9cb1950b64ec --- /dev/null +++ b/data/software/vo/voyant-document-term-frequencies.json @@ -0,0 +1,8 @@ +{ + "slug": "voyant-document-term-frequencies", + "name": "Voyant Document Term Frequencies", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087762" + ] +} diff --git a/data/software/vo/voyant-lava.json b/data/software/vo/voyant-lava.json new file mode 100644 index 000000000000..8b9e4c3489a1 --- /dev/null +++ b/data/software/vo/voyant-lava.json @@ -0,0 +1,8 @@ +{ + "slug": "voyant-lava", + "name": "Voyant Lava", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084733" + ] +} diff --git a/data/software/vo/voyant-links.json b/data/software/vo/voyant-links.json new file mode 100644 index 000000000000..c939ad61de1f --- /dev/null +++ b/data/software/vo/voyant-links.json @@ -0,0 +1,8 @@ +{ + "slug": "voyant-links", + "name": "Voyant Links", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084734" + ] +} diff --git a/data/software/vo/voyant-reader.json b/data/software/vo/voyant-reader.json new file mode 100644 index 000000000000..1e12592f3771 --- /dev/null +++ b/data/software/vo/voyant-reader.json @@ -0,0 +1,8 @@ +{ + "slug": "voyant-reader", + "name": "Voyant Reader", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084735" + ] +} diff --git a/data/software/vo/voyant-term-frequencies-chart.json b/data/software/vo/voyant-term-frequencies-chart.json new file mode 100644 index 000000000000..37a9f9ae8ce9 --- /dev/null +++ b/data/software/vo/voyant-term-frequencies-chart.json @@ -0,0 +1,8 @@ +{ + "slug": "voyant-term-frequencies-chart", + "name": "Voyant Term Frequencies Chart", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084737" + ] +} diff --git a/data/software/vo/voyant-tools.json b/data/software/vo/voyant-tools.json new file mode 100644 index 000000000000..53c58d4808f3 --- /dev/null +++ b/data/software/vo/voyant-tools.json @@ -0,0 +1,13 @@ +{ + "slug": "voyant-tools", + "name": "Voyant Tools", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28405731" + ], + "release_date": "2003-01-01", + "developers": [ + "Stéfan Sinclair", + "Geoffrey M. Rockwell" + ] +} diff --git a/data/software/vp/vp-expert.json b/data/software/vp/vp-expert.json new file mode 100644 index 000000000000..e9419386919a --- /dev/null +++ b/data/software/vp/vp-expert.json @@ -0,0 +1,8 @@ +{ + "slug": "vp-expert", + "name": "VP-Expert", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130050737" + ] +} diff --git a/data/software/vp/vp-info.json b/data/software/vp/vp-info.json new file mode 100644 index 000000000000..99b127dc2613 --- /dev/null +++ b/data/software/vp/vp-info.json @@ -0,0 +1,8 @@ +{ + "slug": "vp-info", + "name": "VP-Info", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7907413" + ] +} diff --git a/data/software/vp/vp-ms.json b/data/software/vp/vp-ms.json new file mode 100644 index 000000000000..706d62bdb384 --- /dev/null +++ b/data/software/vp/vp-ms.json @@ -0,0 +1,12 @@ +{ + "slug": "vp-ms", + "name": "VP/MS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7907415" + ], + "release_date": "1997-01-01", + "developers": [ + "Computer Sciences Corporation" + ] +} diff --git a/data/software/vp/vpmi.json b/data/software/vp/vpmi.json new file mode 100644 index 000000000000..98d0f14a81f8 --- /dev/null +++ b/data/software/vp/vpmi.json @@ -0,0 +1,8 @@ +{ + "slug": "vpmi", + "name": "Vpmi", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7942546" + ] +} diff --git a/data/software/vp/vpncwatch.json b/data/software/vp/vpncwatch.json new file mode 100644 index 000000000000..0473890266db --- /dev/null +++ b/data/software/vp/vpncwatch.json @@ -0,0 +1,8 @@ +{ + "slug": "vpncwatch", + "name": "vpncwatch", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60918501" + ] +} diff --git a/data/software/vs/vs-plus.json b/data/software/vs/vs-plus.json new file mode 100644 index 000000000000..fe453b4f7eec --- /dev/null +++ b/data/software/vs/vs-plus.json @@ -0,0 +1,11 @@ +{ + "slug": "vs-plus", + "name": "VS-PLUS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1535126" + ], + "operating_systems": [ + "OS-9" + ] +} diff --git a/data/software/vs/vsco.json b/data/software/vs/vsco.json new file mode 100644 index 000000000000..997133d733db --- /dev/null +++ b/data/software/vs/vsco.json @@ -0,0 +1,9 @@ +{ + "slug": "vsco", + "name": "VSCO", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q29364760" + ], + "release_date": "2011-01-01" +} diff --git a/data/software/vs/vscodevim.json b/data/software/vs/vscodevim.json new file mode 100644 index 000000000000..3f05e6596122 --- /dev/null +++ b/data/software/vs/vscodevim.json @@ -0,0 +1,11 @@ +{ + "slug": "vscodevim", + "name": "VSCodeVim", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123472574" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/vs/vsim.json b/data/software/vs/vsim.json new file mode 100644 index 000000000000..94a8049c6960 --- /dev/null +++ b/data/software/vs/vsim.json @@ -0,0 +1,8 @@ +{ + "slug": "vsim", + "name": "VSim", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7907387" + ] +} diff --git a/data/software/vs/vsync-computing.json b/data/software/vs/vsync-computing.json new file mode 100644 index 000000000000..2181a089cddf --- /dev/null +++ b/data/software/vs/vsync-computing.json @@ -0,0 +1,8 @@ +{ + "slug": "vsync-computing", + "name": "Vsync (computing)", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22681950" + ] +} diff --git a/data/software/vs/vsyslab.json b/data/software/vs/vsyslab.json new file mode 100644 index 000000000000..8d2029b5b109 --- /dev/null +++ b/data/software/vs/vsyslab.json @@ -0,0 +1,8 @@ +{ + "slug": "vsyslab", + "name": "vSysLab", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122387669" + ] +} diff --git a/data/software/vt/vtune.json b/data/software/vt/vtune.json new file mode 100644 index 000000000000..29dbbc54ff79 --- /dev/null +++ b/data/software/vt/vtune.json @@ -0,0 +1,8 @@ +{ + "slug": "vtune", + "name": "VTune", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4052567" + ] +} diff --git a/data/software/vu/vuescan.json b/data/software/vu/vuescan.json new file mode 100644 index 000000000000..26af2f33d69f --- /dev/null +++ b/data/software/vu/vuescan.json @@ -0,0 +1,13 @@ +{ + "slug": "vuescan", + "name": "VueScan", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q283702" + ], + "release_date": "1998-01-01", + "operating_systems": [ + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/software/vu/vugapay.json b/data/software/vu/vugapay.json new file mode 100644 index 000000000000..e82b9774a84c --- /dev/null +++ b/data/software/vu/vugapay.json @@ -0,0 +1,9 @@ +{ + "slug": "vugapay", + "name": "VugaPay", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q29364598" + ], + "release_date": "2015-01-01" +} diff --git a/data/software/vu/vulcan.json b/data/software/vu/vulcan.json new file mode 100644 index 000000000000..6aa5bfa54fc1 --- /dev/null +++ b/data/software/vu/vulcan.json @@ -0,0 +1,8 @@ +{ + "slug": "vulcan", + "name": "Vulcan", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6165173" + ] +} diff --git a/data/software/vu/vulkan.json b/data/software/vu/vulkan.json new file mode 100644 index 000000000000..dd83093d3695 --- /dev/null +++ b/data/software/vu/vulkan.json @@ -0,0 +1,22 @@ +{ + "slug": "vulkan", + "name": "Vulkan", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q19407678" + ], + "release_date": "2016-02-16", + "developers": [ + "Khronos Group" + ], + "operating_systems": [ + "iOS", + "macOS", + "Microsoft Windows" + ], + "licenses": [ + "Creative Commons Attribution 4.0 International", + "Apache Software License 2.0", + "MIT License" + ] +} diff --git a/data/software/vw/vw-os.json b/data/software/vw/vw-os.json new file mode 100644 index 000000000000..392150dc61c3 --- /dev/null +++ b/data/software/vw/vw-os.json @@ -0,0 +1,14 @@ +{ + "slug": "vw-os", + "name": "vw.os", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q67584473" + ], + "developers": [ + "Volkswagen Group" + ], + "publishers": [ + "Volkswagen Group" + ] +} diff --git a/data/software/vx/vx32.json b/data/software/vx/vx32.json new file mode 100644 index 000000000000..6c60a80b5cd7 --- /dev/null +++ b/data/software/vx/vx32.json @@ -0,0 +1,11 @@ +{ + "slug": "vx32", + "name": "Vx32", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3563889" + ], + "operating_systems": [ + "FreeBSD" + ] +} diff --git a/data/software/vx/vxl.json b/data/software/vx/vxl.json new file mode 100644 index 000000000000..340d05db1c85 --- /dev/null +++ b/data/software/vx/vxl.json @@ -0,0 +1,8 @@ +{ + "slug": "vxl", + "name": "VXL", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7907680" + ] +} diff --git a/data/software/vy/vy1.json b/data/software/vy/vy1.json new file mode 100644 index 000000000000..d30d1a0d6cfa --- /dev/null +++ b/data/software/vy/vy1.json @@ -0,0 +1,9 @@ +{ + "slug": "vy1", + "name": "VY1", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q24914313" + ], + "release_date": "2010-09-01" +} diff --git a/data/software/vy/vy2.json b/data/software/vy/vy2.json new file mode 100644 index 000000000000..1b919c83e6f7 --- /dev/null +++ b/data/software/vy/vy2.json @@ -0,0 +1,9 @@ +{ + "slug": "vy2", + "name": "VY2", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10853199" + ], + "release_date": "2011-04-25" +} diff --git a/data/software/vy/vyomi.json b/data/software/vy/vyomi.json new file mode 100644 index 000000000000..e3f0276fe013 --- /dev/null +++ b/data/software/vy/vyomi.json @@ -0,0 +1,18 @@ +{ + "slug": "vyomi", + "name": "Vyomi", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140307543" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [ + "Python" + ], + "licenses": [ + "Business Source License" + ] +} diff --git a/data/software/vy/vyto-ai.json b/data/software/vy/vyto-ai.json new file mode 100644 index 000000000000..51ddf6a2cdc2 --- /dev/null +++ b/data/software/vy/vyto-ai.json @@ -0,0 +1,8 @@ +{ + "slug": "vyto-ai", + "name": "vyto.ai", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139927629" + ] +} diff --git a/data/software/vz/vzochat.json b/data/software/vz/vzochat.json new file mode 100644 index 000000000000..00ea5a99da54 --- /dev/null +++ b/data/software/vz/vzochat.json @@ -0,0 +1,11 @@ +{ + "slug": "vzochat", + "name": "VZOchat", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q96375526" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/vz/vzroom.json b/data/software/vz/vzroom.json new file mode 100644 index 000000000000..c18e747edd55 --- /dev/null +++ b/data/software/vz/vzroom.json @@ -0,0 +1,8 @@ +{ + "slug": "vzroom", + "name": "VzRoom", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7944081" + ] +} diff --git a/data/software/w3/w32tex.json b/data/software/w3/w32tex.json new file mode 100644 index 000000000000..c0da7031a68f --- /dev/null +++ b/data/software/w3/w32tex.json @@ -0,0 +1,8 @@ +{ + "slug": "w32tex", + "name": "W32TeX", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11253185" + ] +} diff --git a/data/software/w3/w3act.json b/data/software/w3/w3act.json new file mode 100644 index 000000000000..e265a912e5d3 --- /dev/null +++ b/data/software/w3/w3act.json @@ -0,0 +1,9 @@ +{ + "slug": "w3act", + "name": "W3Act", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112797875" + ], + "release_date": "2013-01-01" +} diff --git a/data/software/w3/w3c-markup-validation-service.json b/data/software/w3/w3c-markup-validation-service.json new file mode 100644 index 000000000000..c89f61373a50 --- /dev/null +++ b/data/software/w3/w3c-markup-validation-service.json @@ -0,0 +1,8 @@ +{ + "slug": "w3c-markup-validation-service", + "name": "W3C Markup Validation Service", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2120923" + ] +} diff --git a/data/software/w3/w3c-rdf-validation-service.json b/data/software/w3/w3c-rdf-validation-service.json new file mode 100644 index 000000000000..d60f96d92a3f --- /dev/null +++ b/data/software/w3/w3c-rdf-validation-service.json @@ -0,0 +1,8 @@ +{ + "slug": "w3c-rdf-validation-service", + "name": "W3C RDF Validation Service", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084739" + ] +} diff --git a/data/software/wa/wagtail.json b/data/software/wa/wagtail.json new file mode 100644 index 000000000000..d31c9c815db3 --- /dev/null +++ b/data/software/wa/wagtail.json @@ -0,0 +1,15 @@ +{ + "slug": "wagtail", + "name": "Wagtail", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25206006" + ], + "programming_languages": [ + "Python", + "Django" + ], + "licenses": [ + "BSD licenses" + ] +} diff --git a/data/software/wa/wajig.json b/data/software/wa/wajig.json new file mode 100644 index 000000000000..223e5988672b --- /dev/null +++ b/data/software/wa/wajig.json @@ -0,0 +1,11 @@ +{ + "slug": "wajig", + "name": "Wajig", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7960704" + ], + "programming_languages": [ + "Python" + ] +} diff --git a/data/software/wa/wakatoon.json b/data/software/wa/wakatoon.json new file mode 100644 index 000000000000..8b408262552d --- /dev/null +++ b/data/software/wa/wakatoon.json @@ -0,0 +1,8 @@ +{ + "slug": "wakatoon", + "name": "Wakatoon", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136140858" + ] +} diff --git a/data/software/wa/walkmygraph.json b/data/software/wa/walkmygraph.json new file mode 100644 index 000000000000..a07f1684846f --- /dev/null +++ b/data/software/wa/walkmygraph.json @@ -0,0 +1,14 @@ +{ + "slug": "walkmygraph", + "name": "WalkMyGraph", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137971436" + ], + "developers": [ + "Wolfgang Fahl" + ], + "licenses": [ + "Apache Software License 2.0" + ] +} diff --git a/data/software/wa/wall-street-option-bets.json b/data/software/wa/wall-street-option-bets.json new file mode 100644 index 000000000000..881a713e942d --- /dev/null +++ b/data/software/wa/wall-street-option-bets.json @@ -0,0 +1,14 @@ +{ + "slug": "wall-street-option-bets", + "name": "Wall Street Option Bets", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138783174" + ], + "programming_languages": [ + "Python" + ], + "licenses": [ + "freemium" + ] +} diff --git a/data/software/wa/wallame.json b/data/software/wa/wallame.json new file mode 100644 index 000000000000..be1be899c2e7 --- /dev/null +++ b/data/software/wa/wallame.json @@ -0,0 +1,12 @@ +{ + "slug": "wallame", + "name": "WallaMe", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q24895038" + ], + "release_date": "2015-01-01", + "operating_systems": [ + "iOS" + ] +} diff --git a/data/software/wa/wally.json b/data/software/wa/wally.json new file mode 100644 index 000000000000..118879977fff --- /dev/null +++ b/data/software/wa/wally.json @@ -0,0 +1,8 @@ +{ + "slug": "wally", + "name": "Wally", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124417020" + ] +} diff --git a/data/software/wa/wanderer.json b/data/software/wa/wanderer.json new file mode 100644 index 000000000000..fe7f1109a4d3 --- /dev/null +++ b/data/software/wa/wanderer.json @@ -0,0 +1,8 @@ +{ + "slug": "wanderer", + "name": "wanderer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135427795" + ] +} diff --git a/data/software/wa/wandoujia.json b/data/software/wa/wandoujia.json new file mode 100644 index 000000000000..111939d6b7b5 --- /dev/null +++ b/data/software/wa/wandoujia.json @@ -0,0 +1,11 @@ +{ + "slug": "wandoujia", + "name": "Wandoujia", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q15912234" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/wa/wang-sheeley-arge-model.json b/data/software/wa/wang-sheeley-arge-model.json new file mode 100644 index 000000000000..090de350ed21 --- /dev/null +++ b/data/software/wa/wang-sheeley-arge-model.json @@ -0,0 +1,8 @@ +{ + "slug": "wang-sheeley-arge-model", + "name": "Wang–Sheeley–Arge model", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136995232" + ] +} diff --git a/data/software/wa/wardn-platform.json b/data/software/wa/wardn-platform.json new file mode 100644 index 000000000000..db30df8f354c --- /dev/null +++ b/data/software/wa/wardn-platform.json @@ -0,0 +1,11 @@ +{ + "slug": "wardn-platform", + "name": "Wardn Platform", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138975303" + ], + "developers": [ + "Wardn" + ] +} diff --git a/data/software/wa/warehouse.json b/data/software/wa/warehouse.json new file mode 100644 index 000000000000..10e62611abaf --- /dev/null +++ b/data/software/wa/warehouse.json @@ -0,0 +1,8 @@ +{ + "slug": "warehouse", + "name": "Warehouse", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123017247" + ] +} diff --git a/data/software/wa/warp.json b/data/software/wa/warp.json new file mode 100644 index 000000000000..9d5473ddeac2 --- /dev/null +++ b/data/software/wa/warp.json @@ -0,0 +1,14 @@ +{ + "slug": "warp", + "name": "Warp", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123757936" + ], + "operating_systems": [ + "macOS" + ], + "licenses": [ + "GNU Affero General Public License, version 3.0 or later" + ] +} diff --git a/data/software/wa/warp3d.json b/data/software/wa/warp3d.json new file mode 100644 index 000000000000..7e5af70ea1c8 --- /dev/null +++ b/data/software/wa/warp3d.json @@ -0,0 +1,11 @@ +{ + "slug": "warp3d", + "name": "Warp3D", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7969856" + ], + "operating_systems": [ + "AmigaOS" + ] +} diff --git a/data/software/wa/warppls.json b/data/software/wa/warppls.json new file mode 100644 index 000000000000..dca3a0383f62 --- /dev/null +++ b/data/software/wa/warppls.json @@ -0,0 +1,8 @@ +{ + "slug": "warppls", + "name": "WarpPLS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28406740" + ] +} diff --git a/data/software/wa/wartile.json b/data/software/wa/wartile.json new file mode 100644 index 000000000000..15339e9ca3c8 --- /dev/null +++ b/data/software/wa/wartile.json @@ -0,0 +1,13 @@ +{ + "slug": "wartile", + "name": "Wartile", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106635430" + ], + "release_date": "2018-02-08", + "genres": [ + "strategy video game", + "role-playing video game" + ] +} diff --git a/data/software/wa/wasp.json b/data/software/wa/wasp.json new file mode 100644 index 000000000000..efeeea595a20 --- /dev/null +++ b/data/software/wa/wasp.json @@ -0,0 +1,11 @@ +{ + "slug": "wasp", + "name": "WAsP", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2877363" + ], + "developers": [ + "Technical University of Denmark" + ] +} diff --git a/data/software/wa/wastewatcher.json b/data/software/wa/wastewatcher.json new file mode 100644 index 000000000000..a34cd973435f --- /dev/null +++ b/data/software/wa/wastewatcher.json @@ -0,0 +1,11 @@ +{ + "slug": "wastewatcher", + "name": "wastewatcher", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140332318" + ], + "developers": [ + "WasteWatcher.NET GmbH" + ] +} diff --git a/data/software/wa/watchtower-library.json b/data/software/wa/watchtower-library.json new file mode 100644 index 000000000000..efff91184462 --- /dev/null +++ b/data/software/wa/watchtower-library.json @@ -0,0 +1,8 @@ +{ + "slug": "watchtower-library", + "name": "Watchtower Library", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11837664" + ] +} diff --git a/data/software/wa/watcon.json b/data/software/wa/watcon.json new file mode 100644 index 000000000000..e5eff2b332bb --- /dev/null +++ b/data/software/wa/watcon.json @@ -0,0 +1,8 @@ +{ + "slug": "watcon", + "name": "WATCON", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087763" + ] +} diff --git a/data/software/wa/watir.json b/data/software/wa/watir.json new file mode 100644 index 000000000000..e702eea168a7 --- /dev/null +++ b/data/software/wa/watir.json @@ -0,0 +1,11 @@ +{ + "slug": "watir", + "name": "Watir", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4052880" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/wa/wave-web-accessibility-evaluation-tool.json b/data/software/wa/wave-web-accessibility-evaluation-tool.json new file mode 100644 index 000000000000..38dfa6e137cc --- /dev/null +++ b/data/software/wa/wave-web-accessibility-evaluation-tool.json @@ -0,0 +1,11 @@ +{ + "slug": "wave-web-accessibility-evaluation-tool", + "name": "WAVE web accessibility evaluation tool", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136357132" + ], + "developers": [ + "Pope Tech" + ] +} diff --git a/data/software/wa/wavebox.json b/data/software/wa/wavebox.json new file mode 100644 index 000000000000..0ace996b3925 --- /dev/null +++ b/data/software/wa/wavebox.json @@ -0,0 +1,8 @@ +{ + "slug": "wavebox", + "name": "Wavebox", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q47487585" + ] +} diff --git a/data/software/wa/waveburner.json b/data/software/wa/waveburner.json new file mode 100644 index 000000000000..a029df9f036c --- /dev/null +++ b/data/software/wa/waveburner.json @@ -0,0 +1,11 @@ +{ + "slug": "waveburner", + "name": "WaveBurner", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7975250" + ], + "developers": [ + "Apple Inc." + ] +} diff --git a/data/software/wa/wavelab.json b/data/software/wa/wavelab.json new file mode 100644 index 000000000000..f7a01a9b9f24 --- /dev/null +++ b/data/software/wa/wavelab.json @@ -0,0 +1,8 @@ +{ + "slug": "wavelab", + "name": "WaveLab", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7975256" + ] +} diff --git a/data/software/wa/wavelet-turbulence.json b/data/software/wa/wavelet-turbulence.json new file mode 100644 index 000000000000..64c105cfe31a --- /dev/null +++ b/data/software/wa/wavelet-turbulence.json @@ -0,0 +1,8 @@ +{ + "slug": "wavelet-turbulence", + "name": "Wavelet Turbulence", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25387169" + ] +} diff --git a/data/software/wa/wavepad-audio-editor-software.json b/data/software/wa/wavepad-audio-editor-software.json new file mode 100644 index 000000000000..b5c84c2f8d4c --- /dev/null +++ b/data/software/wa/wavepad-audio-editor-software.json @@ -0,0 +1,14 @@ +{ + "slug": "wavepad-audio-editor-software", + "name": "WavePad Audio Editor Software", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q23679982" + ], + "developers": [ + "NCH Software" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/wa/waves-platform.json b/data/software/wa/waves-platform.json new file mode 100644 index 000000000000..344715fcfd49 --- /dev/null +++ b/data/software/wa/waves-platform.json @@ -0,0 +1,20 @@ +{ + "slug": "waves-platform", + "name": "Waves platform", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q30324920" + ], + "release_date": "2016-06-07", + "operating_systems": [ + "Mac operating system", + "Microsoft Windows" + ], + "programming_languages": [ + "Java", + "Scala" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/wa/way-of-the-red.json b/data/software/wa/way-of-the-red.json new file mode 100644 index 000000000000..9e0cff6fc783 --- /dev/null +++ b/data/software/wa/way-of-the-red.json @@ -0,0 +1,9 @@ +{ + "slug": "way-of-the-red", + "name": "Way of the Red", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q98971891" + ], + "release_date": "2016-11-16" +} diff --git a/data/software/wa/waybar.json b/data/software/wa/waybar.json new file mode 100644 index 000000000000..59d238da8156 --- /dev/null +++ b/data/software/wa/waybar.json @@ -0,0 +1,11 @@ +{ + "slug": "waybar", + "name": "Waybar", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126734838" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/wa/wayfinding-software.json b/data/software/wa/wayfinding-software.json new file mode 100644 index 000000000000..3690f9716672 --- /dev/null +++ b/data/software/wa/wayfinding-software.json @@ -0,0 +1,8 @@ +{ + "slug": "wayfinding-software", + "name": "wayfinding software", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18394654" + ] +} diff --git a/data/software/wa/wayland-ivi-extension.json b/data/software/wa/wayland-ivi-extension.json new file mode 100644 index 000000000000..d2e3f0af7cd7 --- /dev/null +++ b/data/software/wa/wayland-ivi-extension.json @@ -0,0 +1,11 @@ +{ + "slug": "wayland-ivi-extension", + "name": "wayland-ivi-extension", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116702538" + ], + "licenses": [ + "Apache Software License 2.0" + ] +} diff --git a/data/software/wa/wayland-protocols.json b/data/software/wa/wayland-protocols.json new file mode 100644 index 000000000000..74c581b18a5f --- /dev/null +++ b/data/software/wa/wayland-protocols.json @@ -0,0 +1,11 @@ +{ + "slug": "wayland-protocols", + "name": "wayland-protocols", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975563" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/wb/wbstack.json b/data/software/wb/wbstack.json new file mode 100644 index 000000000000..477f5d197c48 --- /dev/null +++ b/data/software/wb/wbstack.json @@ -0,0 +1,9 @@ +{ + "slug": "wbstack", + "name": "WBStack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120180314" + ], + "release_date": "2019-01-01" +} diff --git a/data/software/wc/wcf-data-services.json b/data/software/wc/wcf-data-services.json new file mode 100644 index 000000000000..4e3eca733fda --- /dev/null +++ b/data/software/wc/wcf-data-services.json @@ -0,0 +1,8 @@ +{ + "slug": "wcf-data-services", + "name": "WCF Data Services", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q581651" + ] +} diff --git a/data/software/wd/wdiff.json b/data/software/wd/wdiff.json new file mode 100644 index 000000000000..170af95309c6 --- /dev/null +++ b/data/software/wd/wdiff.json @@ -0,0 +1,11 @@ +{ + "slug": "wdiff", + "name": "wdiff", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4052996" + ], + "operating_systems": [ + "Unix-like operating system" + ] +} diff --git a/data/software/wd/wdsub.json b/data/software/wd/wdsub.json new file mode 100644 index 000000000000..0a6258590de0 --- /dev/null +++ b/data/software/wd/wdsub.json @@ -0,0 +1,17 @@ +{ + "slug": "wdsub", + "name": "wdsub", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113291721" + ], + "developers": [ + "José Emilio Labra Gayo" + ], + "programming_languages": [ + "Scala" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/wd/wdu.json b/data/software/wd/wdu.json new file mode 100644 index 000000000000..17e387228936 --- /dev/null +++ b/data/software/wd/wdu.json @@ -0,0 +1,14 @@ +{ + "slug": "wdu", + "name": "WDU", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7948621" + ], + "developers": [ + "Westinghouse Electric Corporation" + ], + "operating_systems": [ + "VSE" + ] +} diff --git a/data/software/we/we-create-problems.json b/data/software/we/we-create-problems.json new file mode 100644 index 000000000000..777f802d9d4a --- /dev/null +++ b/data/software/we/we-create-problems.json @@ -0,0 +1,8 @@ +{ + "slug": "we-create-problems", + "name": "We Create Problems", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108829959" + ] +} diff --git a/data/software/we/we-the-people.json b/data/software/we/we-the-people.json new file mode 100644 index 000000000000..45ad5da5862f --- /dev/null +++ b/data/software/we/we-the-people.json @@ -0,0 +1,8 @@ +{ + "slug": "we-the-people", + "name": "We the People", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7977910" + ] +} diff --git a/data/software/we/weap.json b/data/software/we/weap.json new file mode 100644 index 000000000000..c010af8a0ba7 --- /dev/null +++ b/data/software/we/weap.json @@ -0,0 +1,8 @@ +{ + "slug": "weap", + "name": "WEAP", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6621261" + ] +} diff --git a/data/software/we/weasis.json b/data/software/we/weasis.json new file mode 100644 index 000000000000..be04982ff463 --- /dev/null +++ b/data/software/we/weasis.json @@ -0,0 +1,15 @@ +{ + "slug": "weasis", + "name": "Weasis", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135184604" + ], + "programming_languages": [ + "Java" + ], + "licenses": [ + "Apache Software License 2.0", + "Eclipse Public License 2.0" + ] +} diff --git a/data/software/we/weather-research-and-forecasting-model.json b/data/software/we/weather-research-and-forecasting-model.json new file mode 100644 index 000000000000..aca0b8f05c53 --- /dev/null +++ b/data/software/we/weather-research-and-forecasting-model.json @@ -0,0 +1,8 @@ +{ + "slug": "weather-research-and-forecasting-model", + "name": "Weather Research and Forecasting model", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q838305" + ] +} diff --git a/data/software/we/weatherbug.json b/data/software/we/weatherbug.json new file mode 100644 index 000000000000..33cb14f2f3f5 --- /dev/null +++ b/data/software/we/weatherbug.json @@ -0,0 +1,8 @@ +{ + "slug": "weatherbug", + "name": "WeatherBug", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7978188" + ] +} diff --git a/data/software/we/web-api-fuzzing-project.json b/data/software/we/web-api-fuzzing-project.json new file mode 100644 index 000000000000..9652fc4d5828 --- /dev/null +++ b/data/software/we/web-api-fuzzing-project.json @@ -0,0 +1,8 @@ +{ + "slug": "web-api-fuzzing-project", + "name": "web-api-fuzzing-project", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127485538" + ] +} diff --git a/data/software/we/web-app-places-of-jewish-history.json b/data/software/we/web-app-places-of-jewish-history.json new file mode 100644 index 000000000000..c96444fd743f --- /dev/null +++ b/data/software/we/web-app-places-of-jewish-history.json @@ -0,0 +1,8 @@ +{ + "slug": "web-app-places-of-jewish-history", + "name": "Web-App »Places of Jewish history«", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084740" + ] +} diff --git a/data/software/we/web-dynpro.json b/data/software/we/web-dynpro.json new file mode 100644 index 000000000000..07983b2e69e9 --- /dev/null +++ b/data/software/we/web-dynpro.json @@ -0,0 +1,8 @@ +{ + "slug": "web-dynpro", + "name": "Web Dynpro", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1804792" + ] +} diff --git a/data/software/we/web-embedding-fonts-tool.json b/data/software/we/web-embedding-fonts-tool.json new file mode 100644 index 000000000000..7afe4aa6fc48 --- /dev/null +++ b/data/software/we/web-embedding-fonts-tool.json @@ -0,0 +1,11 @@ +{ + "slug": "web-embedding-fonts-tool", + "name": "Web Embedding Fonts Tool", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124311980" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/we/web-platform-for-embedded.json b/data/software/we/web-platform-for-embedded.json new file mode 100644 index 000000000000..4cb413c11407 --- /dev/null +++ b/data/software/we/web-platform-for-embedded.json @@ -0,0 +1,8 @@ +{ + "slug": "web-platform-for-embedded", + "name": "Web Platform for Embedded", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116597429" + ] +} diff --git a/data/software/we/web-services-invocation-framework.json b/data/software/we/web-services-invocation-framework.json new file mode 100644 index 000000000000..0ffd0576b12f --- /dev/null +++ b/data/software/we/web-services-invocation-framework.json @@ -0,0 +1,11 @@ +{ + "slug": "web-services-invocation-framework", + "name": "Web Services Invocation Framework", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q9095379" + ], + "licenses": [ + "Apache License" + ] +} diff --git a/data/software/we/web-services-tools.json b/data/software/we/web-services-tools.json new file mode 100644 index 000000000000..af4c76c7557b --- /dev/null +++ b/data/software/we/web-services-tools.json @@ -0,0 +1,8 @@ +{ + "slug": "web-services-tools", + "name": "Web Services Tools", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76178094" + ] +} diff --git a/data/software/we/web-tools-common.json b/data/software/we/web-tools-common.json new file mode 100644 index 000000000000..2628c63a92de --- /dev/null +++ b/data/software/we/web-tools-common.json @@ -0,0 +1,8 @@ +{ + "slug": "web-tools-common", + "name": "Web Tools Common", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76178143" + ] +} diff --git a/data/software/we/webanno.json b/data/software/we/webanno.json new file mode 100644 index 000000000000..4e5338ca3ff3 --- /dev/null +++ b/data/software/we/webanno.json @@ -0,0 +1,11 @@ +{ + "slug": "webanno", + "name": "WebAnno", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q57697035" + ], + "licenses": [ + "Apache Software License 2.0" + ] +} diff --git a/data/software/we/webapp-config.json b/data/software/we/webapp-config.json new file mode 100644 index 000000000000..275109f2655f --- /dev/null +++ b/data/software/we/webapp-config.json @@ -0,0 +1,8 @@ +{ + "slug": "webapp-config", + "name": "webapp-config", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975564" + ] +} diff --git a/data/software/we/webbie.json b/data/software/we/webbie.json new file mode 100644 index 000000000000..562e0ef1557c --- /dev/null +++ b/data/software/we/webbie.json @@ -0,0 +1,8 @@ +{ + "slug": "webbie", + "name": "WebbIE", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5371134" + ] +} diff --git a/data/software/we/webcam-social-shopper.json b/data/software/we/webcam-social-shopper.json new file mode 100644 index 000000000000..81d541e26c07 --- /dev/null +++ b/data/software/we/webcam-social-shopper.json @@ -0,0 +1,8 @@ +{ + "slug": "webcam-social-shopper", + "name": "Webcam Social Shopper", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7978720" + ] +} diff --git a/data/software/we/webchem.json b/data/software/we/webchem.json new file mode 100644 index 000000000000..2093761445e4 --- /dev/null +++ b/data/software/we/webchem.json @@ -0,0 +1,8 @@ +{ + "slug": "webchem", + "name": "webchem", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112338902" + ] +} diff --git a/data/software/we/webclust.json b/data/software/we/webclust.json new file mode 100644 index 000000000000..1e3ff5eba9c4 --- /dev/null +++ b/data/software/we/webclust.json @@ -0,0 +1,8 @@ +{ + "slug": "webclust", + "name": "WebClust", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084741" + ] +} diff --git a/data/software/we/webcore.json b/data/software/we/webcore.json new file mode 100644 index 000000000000..87e6c7471225 --- /dev/null +++ b/data/software/we/webcore.json @@ -0,0 +1,8 @@ +{ + "slug": "webcore", + "name": "WebCore", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1057933" + ] +} diff --git a/data/software/we/webct.json b/data/software/we/webct.json new file mode 100644 index 000000000000..23e84ca7e9e5 --- /dev/null +++ b/data/software/we/webct.json @@ -0,0 +1,8 @@ +{ + "slug": "webct", + "name": "WebCT", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3174811" + ] +} diff --git a/data/software/we/webdev.json b/data/software/we/webdev.json new file mode 100644 index 000000000000..7517fd1f56da --- /dev/null +++ b/data/software/we/webdev.json @@ -0,0 +1,11 @@ +{ + "slug": "webdev", + "name": "WebDev", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3566971" + ], + "developers": [ + "PC SOFT" + ] +} diff --git a/data/software/we/webfs.json b/data/software/we/webfs.json new file mode 100644 index 000000000000..4d597df6f4e3 --- /dev/null +++ b/data/software/we/webfs.json @@ -0,0 +1,8 @@ +{ + "slug": "webfs", + "name": "webfs", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110473677" + ] +} diff --git a/data/software/we/webgen.json b/data/software/we/webgen.json new file mode 100644 index 000000000000..07b151383c81 --- /dev/null +++ b/data/software/we/webgen.json @@ -0,0 +1,8 @@ +{ + "slug": "webgen", + "name": "webgen", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63064907" + ] +} diff --git a/data/software/we/webgl.json b/data/software/we/webgl.json new file mode 100644 index 000000000000..4cf72660c537 --- /dev/null +++ b/data/software/we/webgl.json @@ -0,0 +1,11 @@ +{ + "slug": "webgl", + "name": "WebGL", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q375913" + ], + "developers": [ + "Khronos Group" + ] +} diff --git a/data/software/we/weblicht-namedentities-en.json b/data/software/we/weblicht-namedentities-en.json new file mode 100644 index 000000000000..5bb690759d1f --- /dev/null +++ b/data/software/we/weblicht-namedentities-en.json @@ -0,0 +1,8 @@ +{ + "slug": "weblicht-namedentities-en", + "name": "WebLicht NamedEntities EN", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087768" + ] +} diff --git a/data/software/we/weblicht.json b/data/software/we/weblicht.json new file mode 100644 index 000000000000..d53ed5eb6d08 --- /dev/null +++ b/data/software/we/weblicht.json @@ -0,0 +1,8 @@ +{ + "slug": "weblicht", + "name": "WebLicht", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084742" + ] +} diff --git a/data/software/we/webload.json b/data/software/we/webload.json new file mode 100644 index 000000000000..0667804de6ab --- /dev/null +++ b/data/software/we/webload.json @@ -0,0 +1,14 @@ +{ + "slug": "webload", + "name": "WebLOAD", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q20866654" + ], + "developers": [ + "RadView Software" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/we/weblocks.json b/data/software/we/weblocks.json new file mode 100644 index 000000000000..97c4a0a0da0b --- /dev/null +++ b/data/software/we/weblocks.json @@ -0,0 +1,11 @@ +{ + "slug": "weblocks", + "name": "Weblocks", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7978802" + ], + "programming_languages": [ + "Common Lisp" + ] +} diff --git a/data/software/we/webmathematics-interactive.json b/data/software/we/webmathematics-interactive.json new file mode 100644 index 000000000000..21035d526774 --- /dev/null +++ b/data/software/we/webmathematics-interactive.json @@ -0,0 +1,8 @@ +{ + "slug": "webmathematics-interactive", + "name": "WebMathematics Interactive", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q304288" + ] +} diff --git a/data/software/we/webmethods-integration-server.json b/data/software/we/webmethods-integration-server.json new file mode 100644 index 000000000000..90718e3d442d --- /dev/null +++ b/data/software/we/webmethods-integration-server.json @@ -0,0 +1,11 @@ +{ + "slug": "webmethods-integration-server", + "name": "webMethods Integration Server", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7978461" + ], + "developers": [ + "Software AG" + ] +} diff --git a/data/software/we/webplotdigitizer.json b/data/software/we/webplotdigitizer.json new file mode 100644 index 000000000000..caef1f0da6b1 --- /dev/null +++ b/data/software/we/webplotdigitizer.json @@ -0,0 +1,11 @@ +{ + "slug": "webplotdigitizer", + "name": "WebPlotDigitizer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106125965" + ], + "developers": [ + "Ankit Rohatgi" + ] +} diff --git a/data/software/we/webplus.json b/data/software/we/webplus.json new file mode 100644 index 000000000000..6ce47590bf8e --- /dev/null +++ b/data/software/we/webplus.json @@ -0,0 +1,11 @@ +{ + "slug": "webplus", + "name": "WebPlus", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7978474" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/we/webrender.json b/data/software/we/webrender.json new file mode 100644 index 000000000000..f80b3dfb2cae --- /dev/null +++ b/data/software/we/webrender.json @@ -0,0 +1,11 @@ +{ + "slug": "webrender", + "name": "WebRender", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121289953" + ], + "licenses": [ + "Mozilla Public License, version 2.0" + ] +} diff --git a/data/software/we/webroot-window-washer.json b/data/software/we/webroot-window-washer.json new file mode 100644 index 000000000000..b1449792e46b --- /dev/null +++ b/data/software/we/webroot-window-washer.json @@ -0,0 +1,11 @@ +{ + "slug": "webroot-window-washer", + "name": "Webroot Window Washer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7978820" + ], + "developers": [ + "Webroot Inc." + ] +} diff --git a/data/software/we/webscarab.json b/data/software/we/webscarab.json new file mode 100644 index 000000000000..a17fca001c97 --- /dev/null +++ b/data/software/we/webscarab.json @@ -0,0 +1,11 @@ +{ + "slug": "webscarab", + "name": "WebScarab", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7978482" + ], + "developers": [ + "OWASP" + ] +} diff --git a/data/software/we/websharper.json b/data/software/we/websharper.json new file mode 100644 index 000000000000..2bc15ae4c2e9 --- /dev/null +++ b/data/software/we/websharper.json @@ -0,0 +1,15 @@ +{ + "slug": "websharper", + "name": "WebSharper", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7978483" + ], + "release_date": "2008-01-01", + "programming_languages": [ + "F#" + ], + "licenses": [ + "Apache License" + ] +} diff --git a/data/software/we/website-php.json b/data/software/we/website-php.json new file mode 100644 index 000000000000..f3e95a09d4ed --- /dev/null +++ b/data/software/we/website-php.json @@ -0,0 +1,11 @@ +{ + "slug": "website-php", + "name": "WebSite-PHP", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3566970" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/we/webslides.json b/data/software/we/webslides.json new file mode 100644 index 000000000000..29ec7a9658ac --- /dev/null +++ b/data/software/we/webslides.json @@ -0,0 +1,8 @@ +{ + "slug": "webslides", + "name": "WebSlides", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084751" + ] +} diff --git a/data/software/we/websphere-portal.json b/data/software/we/websphere-portal.json new file mode 100644 index 000000000000..d656b1eacc50 --- /dev/null +++ b/data/software/we/websphere-portal.json @@ -0,0 +1,14 @@ +{ + "slug": "websphere-portal", + "name": "WebSphere Portal", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4053022" + ], + "developers": [ + "IBM" + ], + "programming_languages": [ + "Java" + ] +} diff --git a/data/software/we/webstump.json b/data/software/we/webstump.json new file mode 100644 index 000000000000..9a0c218f709c --- /dev/null +++ b/data/software/we/webstump.json @@ -0,0 +1,8 @@ +{ + "slug": "webstump", + "name": "WebSTUMP", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76184553" + ] +} diff --git a/data/software/we/websty.json b/data/software/we/websty.json new file mode 100644 index 000000000000..823ef7ceb6c0 --- /dev/null +++ b/data/software/we/websty.json @@ -0,0 +1,8 @@ +{ + "slug": "websty", + "name": "WebSty", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084752" + ] +} diff --git a/data/software/we/webtag.json b/data/software/we/webtag.json new file mode 100644 index 000000000000..a39180f33714 --- /dev/null +++ b/data/software/we/webtag.json @@ -0,0 +1,8 @@ +{ + "slug": "webtag", + "name": "Webtag", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16335174" + ] +} diff --git a/data/software/we/webtools-releng.json b/data/software/we/webtools-releng.json new file mode 100644 index 000000000000..1bbc05d2c5e9 --- /dev/null +++ b/data/software/we/webtools-releng.json @@ -0,0 +1,8 @@ +{ + "slug": "webtools-releng", + "name": "Webtools Releng", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76178574" + ] +} diff --git a/data/software/we/webtoon.json b/data/software/we/webtoon.json new file mode 100644 index 000000000000..c1346e26a8f5 --- /dev/null +++ b/data/software/we/webtoon.json @@ -0,0 +1,8 @@ +{ + "slug": "webtoon", + "name": "Webtoon", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q24836950" + ] +} diff --git a/data/software/we/webtrekk.json b/data/software/we/webtrekk.json new file mode 100644 index 000000000000..e3dfb8e4f804 --- /dev/null +++ b/data/software/we/webtrekk.json @@ -0,0 +1,15 @@ +{ + "slug": "webtrekk", + "name": "Webtrekk", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124741653" + ], + "release_date": "2004-01-01", + "developers": [ + "Webtrekk GmbH" + ], + "programming_languages": [ + "PHP" + ] +} diff --git a/data/software/we/webweaver-suite.json b/data/software/we/webweaver-suite.json new file mode 100644 index 000000000000..a7f60cb6be03 --- /dev/null +++ b/data/software/we/webweaver-suite.json @@ -0,0 +1,8 @@ +{ + "slug": "webweaver-suite", + "name": "WebWeaver Suite", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2553311" + ] +} diff --git a/data/software/we/webwhacker.json b/data/software/we/webwhacker.json new file mode 100644 index 000000000000..bbc397cc5add --- /dev/null +++ b/data/software/we/webwhacker.json @@ -0,0 +1,8 @@ +{ + "slug": "webwhacker", + "name": "WebWhacker", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7978497" + ] +} diff --git a/data/software/we/webwork.json b/data/software/we/webwork.json new file mode 100644 index 000000000000..1d6f9f1e5eae --- /dev/null +++ b/data/software/we/webwork.json @@ -0,0 +1,14 @@ +{ + "slug": "webwork", + "name": "WeBWorK", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7977201" + ], + "developers": [ + "University of Rochester" + ], + "licenses": [ + "Artistic License" + ] +} diff --git a/data/software/we/webyetu.json b/data/software/we/webyetu.json new file mode 100644 index 000000000000..101fa69705e1 --- /dev/null +++ b/data/software/we/webyetu.json @@ -0,0 +1,8 @@ +{ + "slug": "webyetu", + "name": "WebYetu", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139885772" + ] +} diff --git a/data/software/we/wedoist.json b/data/software/we/wedoist.json new file mode 100644 index 000000000000..1f6c2841027a --- /dev/null +++ b/data/software/we/wedoist.json @@ -0,0 +1,11 @@ +{ + "slug": "wedoist", + "name": "Wedoist", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7979256" + ], + "developers": [ + "Doist" + ] +} diff --git a/data/software/we/weektodo.json b/data/software/we/weektodo.json new file mode 100644 index 000000000000..d5abfd17345e --- /dev/null +++ b/data/software/we/weektodo.json @@ -0,0 +1,8 @@ +{ + "slug": "weektodo", + "name": "Weektodo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113036325" + ] +} diff --git a/data/software/we/weft-qda.json b/data/software/we/weft-qda.json new file mode 100644 index 000000000000..5bab63352ef4 --- /dev/null +++ b/data/software/we/weft-qda.json @@ -0,0 +1,11 @@ +{ + "slug": "weft-qda", + "name": "Weft QDA", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105229779" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/we/weihenstephan-standards.json b/data/software/we/weihenstephan-standards.json new file mode 100644 index 000000000000..c99ccf7d7469 --- /dev/null +++ b/data/software/we/weihenstephan-standards.json @@ -0,0 +1,8 @@ +{ + "slug": "weihenstephan-standards", + "name": "Weihenstephan Standards", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2555323" + ] +} diff --git a/data/software/we/weiyun.json b/data/software/we/weiyun.json new file mode 100644 index 000000000000..9d5e39ba53ba --- /dev/null +++ b/data/software/we/weiyun.json @@ -0,0 +1,17 @@ +{ + "slug": "weiyun", + "name": "Weiyun", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q24836220" + ], + "release_date": "2012-07-12", + "developers": [ + "Tencent" + ], + "operating_systems": [ + "Mac operating system", + "iOS", + "Microsoft Windows" + ] +} diff --git a/data/software/we/wemeet.json b/data/software/we/wemeet.json new file mode 100644 index 000000000000..5a74090f5e83 --- /dev/null +++ b/data/software/we/wemeet.json @@ -0,0 +1,8 @@ +{ + "slug": "wemeet", + "name": "WeMeet", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q15927131" + ] +} diff --git a/data/software/we/wenlin-software-for-learning-chinese.json b/data/software/we/wenlin-software-for-learning-chinese.json new file mode 100644 index 000000000000..3ac5aeb768c6 --- /dev/null +++ b/data/software/we/wenlin-software-for-learning-chinese.json @@ -0,0 +1,8 @@ +{ + "slug": "wenlin-software-for-learning-chinese", + "name": "Wenlin Software for learning Chinese", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7982886" + ] +} diff --git a/data/software/we/weverse.json b/data/software/we/weverse.json new file mode 100644 index 000000000000..5efcf91eb49e --- /dev/null +++ b/data/software/we/weverse.json @@ -0,0 +1,8 @@ +{ + "slug": "weverse", + "name": "Weverse", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q91219994" + ] +} diff --git a/data/software/wh/what-if-software.json b/data/software/wh/what-if-software.json new file mode 100644 index 000000000000..2d9850b874f5 --- /dev/null +++ b/data/software/wh/what-if-software.json @@ -0,0 +1,11 @@ +{ + "slug": "what-if-software", + "name": "WHAT IF software", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7950057" + ], + "programming_languages": [ + "Fortran" + ] +} diff --git a/data/software/wh/whatizit.json b/data/software/wh/whatizit.json new file mode 100644 index 000000000000..f26784b42c88 --- /dev/null +++ b/data/software/wh/whatizit.json @@ -0,0 +1,8 @@ +{ + "slug": "whatizit", + "name": "Whatizit", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084754" + ] +} diff --git a/data/software/wh/whatpulse.json b/data/software/wh/whatpulse.json new file mode 100644 index 000000000000..fe13c2e067b4 --- /dev/null +++ b/data/software/wh/whatpulse.json @@ -0,0 +1,14 @@ +{ + "slug": "whatpulse", + "name": "WhatPulse", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2308736" + ], + "operating_systems": [ + "Microsoft Windows" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/wh/whdd.json b/data/software/wh/whdd.json new file mode 100644 index 000000000000..a58845f3063f --- /dev/null +++ b/data/software/wh/whdd.json @@ -0,0 +1,8 @@ +{ + "slug": "whdd", + "name": "whdd", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975566" + ] +} diff --git a/data/software/wh/whdload.json b/data/software/wh/whdload.json new file mode 100644 index 000000000000..247944864323 --- /dev/null +++ b/data/software/wh/whdload.json @@ -0,0 +1,14 @@ +{ + "slug": "whdload", + "name": "WHDLoad", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7950128" + ], + "operating_systems": [ + "AmigaOS" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/wh/whenu-savenow.json b/data/software/wh/whenu-savenow.json new file mode 100644 index 000000000000..bf80821b730c --- /dev/null +++ b/data/software/wh/whenu-savenow.json @@ -0,0 +1,11 @@ +{ + "slug": "whenu-savenow", + "name": "WhenU SaveNow", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q507572" + ], + "licenses": [ + "adware" + ] +} diff --git a/data/software/wh/wherigo.json b/data/software/wh/wherigo.json new file mode 100644 index 000000000000..a070f35460b5 --- /dev/null +++ b/data/software/wh/wherigo.json @@ -0,0 +1,8 @@ +{ + "slug": "wherigo", + "name": "Wherigo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3066280" + ] +} diff --git a/data/software/wh/whiskercontrol.json b/data/software/wh/whiskercontrol.json new file mode 100644 index 000000000000..56ee0c844385 --- /dev/null +++ b/data/software/wh/whiskercontrol.json @@ -0,0 +1,15 @@ +{ + "slug": "whiskercontrol", + "name": "WhiskerControl", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7993845" + ], + "release_date": "2000-01-01", + "developers": [ + "University of Cambridge" + ], + "operating_systems": [ + "Windows 7" + ] +} diff --git a/data/software/wh/whisper.json b/data/software/wh/whisper.json new file mode 100644 index 000000000000..6ce4487cdca5 --- /dev/null +++ b/data/software/wh/whisper.json @@ -0,0 +1,14 @@ +{ + "slug": "whisper", + "name": "Whisper", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120759195" + ], + "developers": [ + "OpenAI" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/wh/whistle-im.json b/data/software/wh/whistle-im.json new file mode 100644 index 000000000000..30fc46cfcea5 --- /dev/null +++ b/data/software/wh/whistle-im.json @@ -0,0 +1,8 @@ +{ + "slug": "whistle-im", + "name": "Whistle.im", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q15854208" + ] +} diff --git a/data/software/wh/white-knight.json b/data/software/wh/white-knight.json new file mode 100644 index 000000000000..9309280726e3 --- /dev/null +++ b/data/software/wh/white-knight.json @@ -0,0 +1,8 @@ +{ + "slug": "white-knight", + "name": "White Knight", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7994949" + ] +} diff --git a/data/software/wh/whitewater-resource-editor.json b/data/software/wh/whitewater-resource-editor.json new file mode 100644 index 000000000000..f15b4b59e64e --- /dev/null +++ b/data/software/wh/whitewater-resource-editor.json @@ -0,0 +1,8 @@ +{ + "slug": "whitewater-resource-editor", + "name": "Whitewater Resource Editor", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17037247" + ] +} diff --git a/data/software/wh/whizfolders.json b/data/software/wh/whizfolders.json new file mode 100644 index 000000000000..c7a4f1d6cd60 --- /dev/null +++ b/data/software/wh/whizfolders.json @@ -0,0 +1,8 @@ +{ + "slug": "whizfolders", + "name": "Whizfolders", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22909764" + ] +} diff --git a/data/software/wh/whohas.json b/data/software/wh/whohas.json new file mode 100644 index 000000000000..e3bacd296625 --- /dev/null +++ b/data/software/wh/whohas.json @@ -0,0 +1,8 @@ +{ + "slug": "whohas", + "name": "whohas", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110473706" + ] +} diff --git a/data/software/wh/whoscall.json b/data/software/wh/whoscall.json new file mode 100644 index 000000000000..192922919e73 --- /dev/null +++ b/data/software/wh/whoscall.json @@ -0,0 +1,12 @@ +{ + "slug": "whoscall", + "name": "Whoscall", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10853310" + ], + "release_date": "2010-01-01", + "operating_systems": [ + "iOS" + ] +} diff --git a/data/software/wh/whyiq.json b/data/software/wh/whyiq.json new file mode 100644 index 000000000000..eb40a59c10f8 --- /dev/null +++ b/data/software/wh/whyiq.json @@ -0,0 +1,14 @@ +{ + "slug": "whyiq", + "name": "WhyIQ", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139659384" + ], + "developers": [ + "Ben Little" + ], + "programming_languages": [ + "TypeScript" + ] +} diff --git a/data/software/wi/wid-tools-for-use-with-the-world-inequality-database.json b/data/software/wi/wid-tools-for-use-with-the-world-inequality-database.json new file mode 100644 index 000000000000..78a497a7e24a --- /dev/null +++ b/data/software/wi/wid-tools-for-use-with-the-world-inequality-database.json @@ -0,0 +1,8 @@ +{ + "slug": "wid-tools-for-use-with-the-world-inequality-database", + "name": "WID: Tools for use with the World Inequality Database", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137462795" + ] +} diff --git a/data/software/wi/wideangle.json b/data/software/wi/wideangle.json new file mode 100644 index 000000000000..a2acc6274104 --- /dev/null +++ b/data/software/wi/wideangle.json @@ -0,0 +1,8 @@ +{ + "slug": "wideangle", + "name": "WideAngle", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17130684" + ] +} diff --git a/data/software/wi/widers.json b/data/software/wi/widers.json new file mode 100644 index 000000000000..8342ab6c47a2 --- /dev/null +++ b/data/software/wi/widers.json @@ -0,0 +1,8 @@ +{ + "slug": "widers", + "name": "Widers", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139554105" + ] +} diff --git a/data/software/wi/wifi-explorer.json b/data/software/wi/wifi-explorer.json new file mode 100644 index 000000000000..bb080d304ceb --- /dev/null +++ b/data/software/wi/wifi-explorer.json @@ -0,0 +1,14 @@ +{ + "slug": "wifi-explorer", + "name": "WiFi Explorer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7997976" + ], + "operating_systems": [ + "macOS" + ], + "programming_languages": [ + "Objective-C" + ] +} diff --git a/data/software/wi/wifi-master-key.json b/data/software/wi/wifi-master-key.json new file mode 100644 index 000000000000..6147282bc99e --- /dev/null +++ b/data/software/wi/wifi-master-key.json @@ -0,0 +1,14 @@ +{ + "slug": "wifi-master-key", + "name": "WiFi Master Key", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28135345" + ], + "developers": [ + "LinkSure Network" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/wi/wifi-where.json b/data/software/wi/wifi-where.json new file mode 100644 index 000000000000..69a7d26a075d --- /dev/null +++ b/data/software/wi/wifi-where.json @@ -0,0 +1,8 @@ +{ + "slug": "wifi-where", + "name": "WiFi-Where", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7997968" + ] +} diff --git a/data/software/wi/wifibroadcast.json b/data/software/wi/wifibroadcast.json new file mode 100644 index 000000000000..2b6ba8032dee --- /dev/null +++ b/data/software/wi/wifibroadcast.json @@ -0,0 +1,8 @@ +{ + "slug": "wifibroadcast", + "name": "wifibroadcast", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109757409" + ] +} diff --git a/data/software/wi/wifidog-captive-portal.json b/data/software/wi/wifidog-captive-portal.json new file mode 100644 index 000000000000..0df16e99440b --- /dev/null +++ b/data/software/wi/wifidog-captive-portal.json @@ -0,0 +1,8 @@ +{ + "slug": "wifidog-captive-portal", + "name": "WiFiDog Captive Portal", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7997970" + ] +} diff --git a/data/software/wi/wiggio.json b/data/software/wi/wiggio.json new file mode 100644 index 000000000000..c0ed027b9337 --- /dev/null +++ b/data/software/wi/wiggio.json @@ -0,0 +1,8 @@ +{ + "slug": "wiggio", + "name": "Wiggio", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084755" + ] +} diff --git a/data/software/wi/wii-message-board.json b/data/software/wi/wii-message-board.json new file mode 100644 index 000000000000..5bc55e4a19eb --- /dev/null +++ b/data/software/wi/wii-message-board.json @@ -0,0 +1,15 @@ +{ + "slug": "wii-message-board", + "name": "Wii Message Board", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11254349" + ], + "release_date": "2006-12-02", + "developers": [ + "Nintendo" + ], + "publishers": [ + "Nintendo" + ] +} diff --git a/data/software/wi/wii-no-ma.json b/data/software/wi/wii-no-ma.json new file mode 100644 index 000000000000..a9915046f97d --- /dev/null +++ b/data/software/wi/wii-no-ma.json @@ -0,0 +1,16 @@ +{ + "slug": "wii-no-ma", + "name": "Wii no Ma", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3284046" + ], + "release_date": "2009-05-01", + "developers": [ + "Dentsu", + "Nintendo" + ], + "publishers": [ + "Nintendo" + ] +} diff --git a/data/software/wi/wiki-server.json b/data/software/wi/wiki-server.json new file mode 100644 index 000000000000..bc6221ca3c32 --- /dev/null +++ b/data/software/wi/wiki-server.json @@ -0,0 +1,11 @@ +{ + "slug": "wiki-server", + "name": "Wiki Server", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7999836" + ], + "developers": [ + "Apple Inc." + ] +} diff --git a/data/software/wi/wiki-watch.json b/data/software/wi/wiki-watch.json new file mode 100644 index 000000000000..a2c13e896f5d --- /dev/null +++ b/data/software/wi/wiki-watch.json @@ -0,0 +1,8 @@ +{ + "slug": "wiki-watch", + "name": "Wiki-Watch", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3568023" + ] +} diff --git a/data/software/wi/wikibasesync.json b/data/software/wi/wikibasesync.json new file mode 100644 index 000000000000..450dcdc4c20a --- /dev/null +++ b/data/software/wi/wikibasesync.json @@ -0,0 +1,11 @@ +{ + "slug": "wikibasesync", + "name": "WikibaseSync", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111204847" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/wi/wikiblame.json b/data/software/wi/wikiblame.json new file mode 100644 index 000000000000..e691e1b8e6cd --- /dev/null +++ b/data/software/wi/wikiblame.json @@ -0,0 +1,11 @@ +{ + "slug": "wikiblame", + "name": "WikiBlame", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q15042058" + ], + "licenses": [ + "GNU General Public License, version 3.0" + ] +} diff --git a/data/software/wi/wikidata-concepts-monitor.json b/data/software/wi/wikidata-concepts-monitor.json new file mode 100644 index 000000000000..b7912dbc298e --- /dev/null +++ b/data/software/wi/wikidata-concepts-monitor.json @@ -0,0 +1,11 @@ +{ + "slug": "wikidata-concepts-monitor", + "name": "Wikidata Concepts Monitor", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q42376073" + ], + "licenses": [ + "GNU General Public License, version 2.0" + ] +} diff --git a/data/software/wi/wikidata-missing-pictures.json b/data/software/wi/wikidata-missing-pictures.json new file mode 100644 index 000000000000..296518d8b82b --- /dev/null +++ b/data/software/wi/wikidata-missing-pictures.json @@ -0,0 +1,14 @@ +{ + "slug": "wikidata-missing-pictures", + "name": "Wikidata Missing Pictures", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q38934700" + ], + "programming_languages": [ + "GNU Bash" + ], + "licenses": [ + "Unlicense" + ] +} diff --git a/data/software/wi/wikidatamap.json b/data/software/wi/wikidatamap.json new file mode 100644 index 000000000000..cc32f9f66bb8 --- /dev/null +++ b/data/software/wi/wikidatamap.json @@ -0,0 +1,11 @@ +{ + "slug": "wikidatamap", + "name": "WikidataMap", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63481239" + ], + "operating_systems": [ + "cross-platform" + ] +} diff --git a/data/software/wi/wikilingue.json b/data/software/wi/wikilingue.json new file mode 100644 index 000000000000..b6a9e1333e7e --- /dev/null +++ b/data/software/wi/wikilingue.json @@ -0,0 +1,8 @@ +{ + "slug": "wikilingue", + "name": "Wikilingue", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q12356755" + ] +} diff --git a/data/software/wi/wikiloop-battlefield.json b/data/software/wi/wikiloop-battlefield.json new file mode 100644 index 000000000000..a8be57178c1e --- /dev/null +++ b/data/software/wi/wikiloop-battlefield.json @@ -0,0 +1,8 @@ +{ + "slug": "wikiloop-battlefield", + "name": "WikiLoop Battlefield", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q66094878" + ] +} diff --git a/data/software/wi/wikimedia-integration.json b/data/software/wi/wikimedia-integration.json new file mode 100644 index 000000000000..1787b0368b57 --- /dev/null +++ b/data/software/wi/wikimedia-integration.json @@ -0,0 +1,8 @@ +{ + "slug": "wikimedia-integration", + "name": "Wikimedia Integration", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108370101" + ] +} diff --git a/data/software/wi/wikimedia-meet.json b/data/software/wi/wikimedia-meet.json new file mode 100644 index 000000000000..521ab6d2d952 --- /dev/null +++ b/data/software/wi/wikimedia-meet.json @@ -0,0 +1,8 @@ +{ + "slug": "wikimedia-meet", + "name": "Wikimedia Meet", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q91994022" + ] +} diff --git a/data/software/wi/wikinodes.json b/data/software/wi/wikinodes.json new file mode 100644 index 000000000000..f6e7defb9bb8 --- /dev/null +++ b/data/software/wi/wikinodes.json @@ -0,0 +1,8 @@ +{ + "slug": "wikinodes", + "name": "WikiNodes", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7905764" + ] +} diff --git a/data/software/wi/wikipack.json b/data/software/wi/wikipack.json new file mode 100644 index 000000000000..f71377d307d1 --- /dev/null +++ b/data/software/wi/wikipack.json @@ -0,0 +1,8 @@ +{ + "slug": "wikipack", + "name": "WikiPack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084756" + ] +} diff --git a/data/software/wi/wikipock.json b/data/software/wi/wikipock.json new file mode 100644 index 000000000000..261b181a49ec --- /dev/null +++ b/data/software/wi/wikipock.json @@ -0,0 +1,8 @@ +{ + "slug": "wikipock", + "name": "WikiPock", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1444247" + ] +} diff --git a/data/software/wi/wikireading.json b/data/software/wi/wikireading.json new file mode 100644 index 000000000000..e3c7a42b9cf6 --- /dev/null +++ b/data/software/wi/wikireading.json @@ -0,0 +1,8 @@ +{ + "slug": "wikireading", + "name": "WikiReading", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q26912490" + ] +} diff --git a/data/software/wi/wikiserver.json b/data/software/wi/wikiserver.json new file mode 100644 index 000000000000..68692affe2bb --- /dev/null +++ b/data/software/wi/wikiserver.json @@ -0,0 +1,8 @@ +{ + "slug": "wikiserver", + "name": "WikiServer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11254350" + ] +} diff --git a/data/software/wi/wikitaxi.json b/data/software/wi/wikitaxi.json new file mode 100644 index 000000000000..c6bc0b136ae9 --- /dev/null +++ b/data/software/wi/wikitaxi.json @@ -0,0 +1,8 @@ +{ + "slug": "wikitaxi", + "name": "WikiTaxi", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11254355" + ] +} diff --git a/data/software/wi/wikitude.json b/data/software/wi/wikitude.json new file mode 100644 index 000000000000..f5175c9879e4 --- /dev/null +++ b/data/software/wi/wikitude.json @@ -0,0 +1,8 @@ +{ + "slug": "wikitude", + "name": "Wikitude", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1280163" + ] +} diff --git a/data/software/wi/wikiwand.json b/data/software/wi/wikiwand.json new file mode 100644 index 000000000000..4b81715a313d --- /dev/null +++ b/data/software/wi/wikiwand.json @@ -0,0 +1,13 @@ +{ + "slug": "wikiwand", + "name": "Wikiwand", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18208301" + ], + "release_date": "2013-01-01", + "licenses": [ + "Creative Commons Attribution-ShareAlike 3.0 Unported", + "GNU Free Documentation License" + ] +} diff --git a/data/software/wi/wikyblog.json b/data/software/wi/wikyblog.json new file mode 100644 index 000000000000..fc853c5753a8 --- /dev/null +++ b/data/software/wi/wikyblog.json @@ -0,0 +1,8 @@ +{ + "slug": "wikyblog", + "name": "WikyBlog", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6167376" + ] +} diff --git a/data/software/wi/wildcat-bbs.json b/data/software/wi/wildcat-bbs.json new file mode 100644 index 000000000000..335bb83aa498 --- /dev/null +++ b/data/software/wi/wildcat-bbs.json @@ -0,0 +1,9 @@ +{ + "slug": "wildcat-bbs", + "name": "Wildcat! BBS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8000988" + ], + "release_date": "1986-01-01" +} diff --git a/data/software/wi/wildfire-interactive.json b/data/software/wi/wildfire-interactive.json new file mode 100644 index 000000000000..58f07f50d455 --- /dev/null +++ b/data/software/wi/wildfire-interactive.json @@ -0,0 +1,12 @@ +{ + "slug": "wildfire-interactive", + "name": "Wildfire Interactive", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q21463791" + ], + "release_date": "2008-01-01", + "developers": [ + "Alain Chuard" + ] +} diff --git a/data/software/wi/wildfiresua.json b/data/software/wi/wildfiresua.json new file mode 100644 index 000000000000..1b7e646a18d2 --- /dev/null +++ b/data/software/wi/wildfiresua.json @@ -0,0 +1,11 @@ +{ + "slug": "wildfiresua", + "name": "WildFiresUA", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139554399" + ], + "operating_systems": [ + "website" + ] +} diff --git a/data/software/wi/wildmat.json b/data/software/wi/wildmat.json new file mode 100644 index 000000000000..dc075a540624 --- /dev/null +++ b/data/software/wi/wildmat.json @@ -0,0 +1,8 @@ +{ + "slug": "wildmat", + "name": "wildmat", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8001473" + ] +} diff --git a/data/software/wi/wimats.json b/data/software/wi/wimats.json new file mode 100644 index 000000000000..82f6e05d72c9 --- /dev/null +++ b/data/software/wi/wimats.json @@ -0,0 +1,11 @@ +{ + "slug": "wimats", + "name": "WIMATS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7950740" + ], + "developers": [ + "Webel Mediatronics Limited" + ] +} diff --git a/data/software/wi/wimp.json b/data/software/wi/wimp.json new file mode 100644 index 000000000000..2ce953be6c08 --- /dev/null +++ b/data/software/wi/wimp.json @@ -0,0 +1,14 @@ +{ + "slug": "wimp", + "name": "WiMP", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q890255" + ], + "developers": [ + "Aspiro" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/wi/win-com.json b/data/software/wi/win-com.json new file mode 100644 index 000000000000..c76162ff0db1 --- /dev/null +++ b/data/software/wi/win-com.json @@ -0,0 +1,11 @@ +{ + "slug": "win-com", + "name": "WIN.COM", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q844775" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/wi/win4lin.json b/data/software/wi/win4lin.json new file mode 100644 index 000000000000..4863ce94dba8 --- /dev/null +++ b/data/software/wi/win4lin.json @@ -0,0 +1,8 @@ +{ + "slug": "win4lin", + "name": "Win4Lin", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8023584" + ] +} diff --git a/data/software/wi/winape.json b/data/software/wi/winape.json new file mode 100644 index 000000000000..6924fd4db905 --- /dev/null +++ b/data/software/wi/winape.json @@ -0,0 +1,11 @@ +{ + "slug": "winape", + "name": "WinAPE", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16683368" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/wi/winapioverride.json b/data/software/wi/winapioverride.json new file mode 100644 index 000000000000..5b073c20c3a6 --- /dev/null +++ b/data/software/wi/winapioverride.json @@ -0,0 +1,14 @@ +{ + "slug": "winapioverride", + "name": "WinAPIOverride", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8023582" + ], + "operating_systems": [ + "Microsoft Windows" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/wi/winavr.json b/data/software/wi/winavr.json new file mode 100644 index 000000000000..3a494689c7d9 --- /dev/null +++ b/data/software/wi/winavr.json @@ -0,0 +1,8 @@ +{ + "slug": "winavr", + "name": "WinAVR", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1104941" + ] +} diff --git a/data/software/wi/winbatch.json b/data/software/wi/winbatch.json new file mode 100644 index 000000000000..e7b11700ec81 --- /dev/null +++ b/data/software/wi/winbatch.json @@ -0,0 +1,8 @@ +{ + "slug": "winbatch", + "name": "Winbatch", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8023687" + ] +} diff --git a/data/software/wi/winbraille.json b/data/software/wi/winbraille.json new file mode 100644 index 000000000000..9ecdd3843441 --- /dev/null +++ b/data/software/wi/winbraille.json @@ -0,0 +1,11 @@ +{ + "slug": "winbraille", + "name": "WinBraille", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10856747" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/wi/winbtrfs.json b/data/software/wi/winbtrfs.json new file mode 100644 index 000000000000..dcd7d30be55d --- /dev/null +++ b/data/software/wi/winbtrfs.json @@ -0,0 +1,15 @@ +{ + "slug": "winbtrfs", + "name": "WinBtrfs", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60024324" + ], + "release_date": "2016-02-21", + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [ + "Visual C++" + ] +} diff --git a/data/software/wi/winbuilder.json b/data/software/wi/winbuilder.json new file mode 100644 index 000000000000..62e36aef1c72 --- /dev/null +++ b/data/software/wi/winbuilder.json @@ -0,0 +1,15 @@ +{ + "slug": "winbuilder", + "name": "WinBuilder", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8023590" + ], + "release_date": "2005-01-01", + "programming_languages": [ + "Delphi" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/wi/windchill.json b/data/software/wi/windchill.json new file mode 100644 index 000000000000..995854b3750d --- /dev/null +++ b/data/software/wi/windchill.json @@ -0,0 +1,14 @@ +{ + "slug": "windchill", + "name": "Windchill", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8024086" + ], + "developers": [ + "Parametric Technology Corporation" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/wi/windev-mobile.json b/data/software/wi/windev-mobile.json new file mode 100644 index 000000000000..9dae4bda18b9 --- /dev/null +++ b/data/software/wi/windev-mobile.json @@ -0,0 +1,11 @@ +{ + "slug": "windev-mobile", + "name": "WinDev Mobile", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3569250" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/wi/windev.json b/data/software/wi/windev.json new file mode 100644 index 000000000000..0acf03e5ba0d --- /dev/null +++ b/data/software/wi/windev.json @@ -0,0 +1,8 @@ +{ + "slug": "windev", + "name": "WinDev", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1807894" + ] +} diff --git a/data/software/wi/windiff.json b/data/software/wi/windiff.json new file mode 100644 index 000000000000..8043aa070053 --- /dev/null +++ b/data/software/wi/windiff.json @@ -0,0 +1,8 @@ +{ + "slug": "windiff", + "name": "WinDiff", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8023596" + ] +} diff --git a/data/software/wi/windowbase.json b/data/software/wi/windowbase.json new file mode 100644 index 000000000000..1cc6cf1a6833 --- /dev/null +++ b/data/software/wi/windowbase.json @@ -0,0 +1,11 @@ +{ + "slug": "windowbase", + "name": "WindowBase", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8024335" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/wi/windowblinds.json b/data/software/wi/windowblinds.json new file mode 100644 index 000000000000..803e1c176e65 --- /dev/null +++ b/data/software/wi/windowblinds.json @@ -0,0 +1,17 @@ +{ + "slug": "windowblinds", + "name": "WindowBlinds", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1993484" + ], + "developers": [ + "Stardock" + ], + "operating_systems": [ + "Microsoft Windows" + ], + "licenses": [ + "shareware" + ] +} diff --git a/data/software/wi/windowfx.json b/data/software/wi/windowfx.json new file mode 100644 index 000000000000..c84b9c25dc39 --- /dev/null +++ b/data/software/wi/windowfx.json @@ -0,0 +1,11 @@ +{ + "slug": "windowfx", + "name": "WindowFX", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10393861" + ], + "licenses": [ + "shareware" + ] +} diff --git a/data/software/wi/windowlab.json b/data/software/wi/windowlab.json new file mode 100644 index 000000000000..ba4b52d7096b --- /dev/null +++ b/data/software/wi/windowlab.json @@ -0,0 +1,15 @@ +{ + "slug": "windowlab", + "name": "WindowLab", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8024334" + ], + "release_date": "2001-01-01", + "operating_systems": [ + "Unix-like operating system" + ], + "licenses": [ + "GNU General Public License, version 2.0 or later" + ] +} diff --git a/data/software/wi/windowphone.json b/data/software/wi/windowphone.json new file mode 100644 index 000000000000..1690513de4eb --- /dev/null +++ b/data/software/wi/windowphone.json @@ -0,0 +1,8 @@ +{ + "slug": "windowphone", + "name": "WindowPhone", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135440090" + ] +} diff --git a/data/software/wi/windows-activation-technology.json b/data/software/wi/windows-activation-technology.json new file mode 100644 index 000000000000..817f4c444bc5 --- /dev/null +++ b/data/software/wi/windows-activation-technology.json @@ -0,0 +1,11 @@ +{ + "slug": "windows-activation-technology", + "name": "Windows Activation Technology", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6167956" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/wi/windows-address-book.json b/data/software/wi/windows-address-book.json new file mode 100644 index 000000000000..6aaf045bdfeb --- /dev/null +++ b/data/software/wi/windows-address-book.json @@ -0,0 +1,11 @@ +{ + "slug": "windows-address-book", + "name": "Windows Address Book", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3533171" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/wi/windows-admin-center.json b/data/software/wi/windows-admin-center.json new file mode 100644 index 000000000000..a99409e8c54c --- /dev/null +++ b/data/software/wi/windows-admin-center.json @@ -0,0 +1,8 @@ +{ + "slug": "windows-admin-center", + "name": "Windows Admin Center", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q48976817" + ] +} diff --git a/data/software/wi/windows-anytime-upgrade.json b/data/software/wi/windows-anytime-upgrade.json new file mode 100644 index 000000000000..ab17c4225320 --- /dev/null +++ b/data/software/wi/windows-anytime-upgrade.json @@ -0,0 +1,8 @@ +{ + "slug": "windows-anytime-upgrade", + "name": "Windows Anytime Upgrade", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1207441" + ] +} diff --git a/data/software/wi/windows-automated-installation-kit.json b/data/software/wi/windows-automated-installation-kit.json new file mode 100644 index 000000000000..2e12764750ab --- /dev/null +++ b/data/software/wi/windows-automated-installation-kit.json @@ -0,0 +1,14 @@ +{ + "slug": "windows-automated-installation-kit", + "name": "Windows Automated Installation Kit", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1654234" + ], + "developers": [ + "Microsoft" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/wi/windows-azure-appfabric.json b/data/software/wi/windows-azure-appfabric.json new file mode 100644 index 000000000000..29fc8203c3a0 --- /dev/null +++ b/data/software/wi/windows-azure-appfabric.json @@ -0,0 +1,8 @@ +{ + "slug": "windows-azure-appfabric", + "name": "Windows Azure AppFabric", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5952752" + ] +} diff --git a/data/software/wi/windows-azure-websites.json b/data/software/wi/windows-azure-websites.json new file mode 100644 index 000000000000..b78b9bf0629c --- /dev/null +++ b/data/software/wi/windows-azure-websites.json @@ -0,0 +1,11 @@ +{ + "slug": "windows-azure-websites", + "name": "Windows Azure Websites", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17048728" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/wi/windows-backup.json b/data/software/wi/windows-backup.json new file mode 100644 index 000000000000..fcfc95f24e54 --- /dev/null +++ b/data/software/wi/windows-backup.json @@ -0,0 +1,11 @@ +{ + "slug": "windows-backup", + "name": "Windows Backup", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137604955" + ], + "operating_systems": [ + "Windows 11" + ] +} diff --git a/data/software/wi/windows-cardspace.json b/data/software/wi/windows-cardspace.json new file mode 100644 index 000000000000..5a709b515da3 --- /dev/null +++ b/data/software/wi/windows-cardspace.json @@ -0,0 +1,8 @@ +{ + "slug": "windows-cardspace", + "name": "Windows CardSpace", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1367390" + ] +} diff --git a/data/software/wi/windows-chat.json b/data/software/wi/windows-chat.json new file mode 100644 index 000000000000..ba54bf8f240f --- /dev/null +++ b/data/software/wi/windows-chat.json @@ -0,0 +1,8 @@ +{ + "slug": "windows-chat", + "name": "Windows Chat", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8024400" + ] +} diff --git a/data/software/wi/windows-desktop-gadgets.json b/data/software/wi/windows-desktop-gadgets.json new file mode 100644 index 000000000000..35147501a76f --- /dev/null +++ b/data/software/wi/windows-desktop-gadgets.json @@ -0,0 +1,8 @@ +{ + "slug": "windows-desktop-gadgets", + "name": "Windows Desktop Gadgets", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q828312" + ] +} diff --git a/data/software/wi/windows-dreamscene.json b/data/software/wi/windows-dreamscene.json new file mode 100644 index 000000000000..e2b21371b000 --- /dev/null +++ b/data/software/wi/windows-dreamscene.json @@ -0,0 +1,11 @@ +{ + "slug": "windows-dreamscene", + "name": "Windows DreamScene", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1066247" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/wi/windows-dvd-maker.json b/data/software/wi/windows-dvd-maker.json new file mode 100644 index 000000000000..6c746920d66e --- /dev/null +++ b/data/software/wi/windows-dvd-maker.json @@ -0,0 +1,14 @@ +{ + "slug": "windows-dvd-maker", + "name": "Windows DVD Maker", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1076697" + ], + "developers": [ + "Microsoft" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/wi/windows-easy-transfer.json b/data/software/wi/windows-easy-transfer.json new file mode 100644 index 000000000000..02ce831e6b75 --- /dev/null +++ b/data/software/wi/windows-easy-transfer.json @@ -0,0 +1,11 @@ +{ + "slug": "windows-easy-transfer", + "name": "Windows Easy Transfer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4438797" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/wi/windows-fax-and-scan.json b/data/software/wi/windows-fax-and-scan.json new file mode 100644 index 000000000000..4ac35087dd28 --- /dev/null +++ b/data/software/wi/windows-fax-and-scan.json @@ -0,0 +1,8 @@ +{ + "slug": "windows-fax-and-scan", + "name": "Windows Fax and Scan", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1141066" + ] +} diff --git a/data/software/wi/windows-firewall.json b/data/software/wi/windows-firewall.json new file mode 100644 index 000000000000..2358257ec2be --- /dev/null +++ b/data/software/wi/windows-firewall.json @@ -0,0 +1,14 @@ +{ + "slug": "windows-firewall", + "name": "Windows Firewall", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1068438" + ], + "developers": [ + "Microsoft Windows" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/wi/windows-genuine-advantage.json b/data/software/wi/windows-genuine-advantage.json new file mode 100644 index 000000000000..057d9bf492d1 --- /dev/null +++ b/data/software/wi/windows-genuine-advantage.json @@ -0,0 +1,17 @@ +{ + "slug": "windows-genuine-advantage", + "name": "Windows Genuine Advantage", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q855381" + ], + "developers": [ + "Microsoft" + ], + "operating_systems": [ + "Windows 7" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/wi/windows-hardware-lab-kit.json b/data/software/wi/windows-hardware-lab-kit.json new file mode 100644 index 000000000000..e5a764c19411 --- /dev/null +++ b/data/software/wi/windows-hardware-lab-kit.json @@ -0,0 +1,11 @@ +{ + "slug": "windows-hardware-lab-kit", + "name": "Windows Hardware Lab Kit", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2183844" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/wi/windows-hello-for-business.json b/data/software/wi/windows-hello-for-business.json new file mode 100644 index 000000000000..68e216df2f66 --- /dev/null +++ b/data/software/wi/windows-hello-for-business.json @@ -0,0 +1,8 @@ +{ + "slug": "windows-hello-for-business", + "name": "Windows Hello for Business", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q132672345" + ] +} diff --git a/data/software/wi/windows-hello.json b/data/software/wi/windows-hello.json new file mode 100644 index 000000000000..2f33e339f9be --- /dev/null +++ b/data/software/wi/windows-hello.json @@ -0,0 +1,8 @@ +{ + "slug": "windows-hello", + "name": "Windows Hello", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q24192034" + ] +} diff --git a/data/software/wi/windows-help-viewer.json b/data/software/wi/windows-help-viewer.json new file mode 100644 index 000000000000..b3dd8a0ee8cd --- /dev/null +++ b/data/software/wi/windows-help-viewer.json @@ -0,0 +1,11 @@ +{ + "slug": "windows-help-viewer", + "name": "Windows Help Viewer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123011043" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/wi/windows-hpc-server-2008.json b/data/software/wi/windows-hpc-server-2008.json new file mode 100644 index 000000000000..7d27a17d935f --- /dev/null +++ b/data/software/wi/windows-hpc-server-2008.json @@ -0,0 +1,15 @@ +{ + "slug": "windows-hpc-server-2008", + "name": "Windows HPC Server 2008", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2744208" + ], + "release_date": "2008-09-22", + "developers": [ + "Microsoft" + ], + "licenses": [ + "copyrighted" + ] +} diff --git a/data/software/wi/windows-imaging-component.json b/data/software/wi/windows-imaging-component.json new file mode 100644 index 000000000000..5e494a0786a0 --- /dev/null +++ b/data/software/wi/windows-imaging-component.json @@ -0,0 +1,8 @@ +{ + "slug": "windows-imaging-component", + "name": "Windows Imaging Component", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2083260" + ] +} diff --git a/data/software/wi/windows-ink.json b/data/software/wi/windows-ink.json new file mode 100644 index 000000000000..52f5e5086de1 --- /dev/null +++ b/data/software/wi/windows-ink.json @@ -0,0 +1,8 @@ +{ + "slug": "windows-ink", + "name": "Windows Ink", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q24836307" + ] +} diff --git a/data/software/wi/windows-insider.json b/data/software/wi/windows-insider.json new file mode 100644 index 000000000000..a20d71938e0c --- /dev/null +++ b/data/software/wi/windows-insider.json @@ -0,0 +1,15 @@ +{ + "slug": "windows-insider", + "name": "Windows Insider", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q19600398" + ], + "operating_systems": [ + "Windows 10 Mobile", + "Windows 11" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/wi/windows-installer.json b/data/software/wi/windows-installer.json new file mode 100644 index 000000000000..9c98a44a03c5 --- /dev/null +++ b/data/software/wi/windows-installer.json @@ -0,0 +1,14 @@ +{ + "slug": "windows-installer", + "name": "Windows Installer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q181233" + ], + "developers": [ + "Microsoft" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/wi/windows-journal.json b/data/software/wi/windows-journal.json new file mode 100644 index 000000000000..d22c731bc160 --- /dev/null +++ b/data/software/wi/windows-journal.json @@ -0,0 +1,8 @@ +{ + "slug": "windows-journal", + "name": "Windows Journal", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q740500" + ] +} diff --git a/data/software/wi/windows-libraries-for-os-2.json b/data/software/wi/windows-libraries-for-os-2.json new file mode 100644 index 000000000000..b64dfbc027dc --- /dev/null +++ b/data/software/wi/windows-libraries-for-os-2.json @@ -0,0 +1,12 @@ +{ + "slug": "windows-libraries-for-os-2", + "name": "Windows Libraries for OS/2", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8024410" + ], + "release_date": "1987-04-02", + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/wi/windows-live-admin-center.json b/data/software/wi/windows-live-admin-center.json new file mode 100644 index 000000000000..26d9a6929589 --- /dev/null +++ b/data/software/wi/windows-live-admin-center.json @@ -0,0 +1,11 @@ +{ + "slug": "windows-live-admin-center", + "name": "Windows Live Admin Center", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q522563" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/wi/windows-live-agents.json b/data/software/wi/windows-live-agents.json new file mode 100644 index 000000000000..7ccea1b2c68d --- /dev/null +++ b/data/software/wi/windows-live-agents.json @@ -0,0 +1,11 @@ +{ + "slug": "windows-live-agents", + "name": "Windows Live Agents", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8024411" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/wi/windows-live-alerts.json b/data/software/wi/windows-live-alerts.json new file mode 100644 index 000000000000..9b5d49dbdcc4 --- /dev/null +++ b/data/software/wi/windows-live-alerts.json @@ -0,0 +1,11 @@ +{ + "slug": "windows-live-alerts", + "name": "Windows Live Alerts", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3224127" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/wi/windows-live-barcode.json b/data/software/wi/windows-live-barcode.json new file mode 100644 index 000000000000..e4d92a871484 --- /dev/null +++ b/data/software/wi/windows-live-barcode.json @@ -0,0 +1,11 @@ +{ + "slug": "windows-live-barcode", + "name": "Windows Live Barcode", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8024412" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/wi/windows-live-call.json b/data/software/wi/windows-live-call.json new file mode 100644 index 000000000000..293d803da600 --- /dev/null +++ b/data/software/wi/windows-live-call.json @@ -0,0 +1,11 @@ +{ + "slug": "windows-live-call", + "name": "Windows Live Call", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2547997" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/wi/windows-live-devices.json b/data/software/wi/windows-live-devices.json new file mode 100644 index 000000000000..a1f5c7460b17 --- /dev/null +++ b/data/software/wi/windows-live-devices.json @@ -0,0 +1,11 @@ +{ + "slug": "windows-live-devices", + "name": "Windows Live Devices", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2884268" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/wi/windows-live-events.json b/data/software/wi/windows-live-events.json new file mode 100644 index 000000000000..91f35887b4da --- /dev/null +++ b/data/software/wi/windows-live-events.json @@ -0,0 +1,11 @@ +{ + "slug": "windows-live-events", + "name": "Windows Live Events", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3567395" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/wi/windows-live-expo.json b/data/software/wi/windows-live-expo.json new file mode 100644 index 000000000000..9e48a73b3769 --- /dev/null +++ b/data/software/wi/windows-live-expo.json @@ -0,0 +1,11 @@ +{ + "slug": "windows-live-expo", + "name": "Windows Live Expo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8024413" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/wi/windows-live-favorites.json b/data/software/wi/windows-live-favorites.json new file mode 100644 index 000000000000..b5b7423dcf45 --- /dev/null +++ b/data/software/wi/windows-live-favorites.json @@ -0,0 +1,11 @@ +{ + "slug": "windows-live-favorites", + "name": "Windows Live Favorites", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1067849" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/wi/windows-live-frameit.json b/data/software/wi/windows-live-frameit.json new file mode 100644 index 000000000000..8e810902b8d3 --- /dev/null +++ b/data/software/wi/windows-live-frameit.json @@ -0,0 +1,11 @@ +{ + "slug": "windows-live-frameit", + "name": "Windows Live FrameIt", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8024414" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/wi/windows-live-gallery.json b/data/software/wi/windows-live-gallery.json new file mode 100644 index 000000000000..20d504efe827 --- /dev/null +++ b/data/software/wi/windows-live-gallery.json @@ -0,0 +1,11 @@ +{ + "slug": "windows-live-gallery", + "name": "Windows Live Gallery", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1370664" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/wi/windows-live-groups.json b/data/software/wi/windows-live-groups.json new file mode 100644 index 000000000000..b4d9dcc31981 --- /dev/null +++ b/data/software/wi/windows-live-groups.json @@ -0,0 +1,11 @@ +{ + "slug": "windows-live-groups", + "name": "Windows Live Groups", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3178070" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/wi/windows-live-onecare.json b/data/software/wi/windows-live-onecare.json new file mode 100644 index 000000000000..44d61655e6bb --- /dev/null +++ b/data/software/wi/windows-live-onecare.json @@ -0,0 +1,14 @@ +{ + "slug": "windows-live-onecare", + "name": "Windows Live OneCare", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q920973" + ], + "developers": [ + "Microsoft" + ], + "licenses": [ + "end-user license agreement" + ] +} diff --git a/data/software/wi/windows-live-personalized-experience.json b/data/software/wi/windows-live-personalized-experience.json new file mode 100644 index 000000000000..e27aec14f9bf --- /dev/null +++ b/data/software/wi/windows-live-personalized-experience.json @@ -0,0 +1,11 @@ +{ + "slug": "windows-live-personalized-experience", + "name": "Windows Live Personalized Experience", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4385722" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/wi/windows-live-profile.json b/data/software/wi/windows-live-profile.json new file mode 100644 index 000000000000..95151f3bf66d --- /dev/null +++ b/data/software/wi/windows-live-profile.json @@ -0,0 +1,8 @@ +{ + "slug": "windows-live-profile", + "name": "Windows Live Profile", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3083627" + ] +} diff --git a/data/software/wi/windows-live-shopping.json b/data/software/wi/windows-live-shopping.json new file mode 100644 index 000000000000..6b4c0433a8ec --- /dev/null +++ b/data/software/wi/windows-live-shopping.json @@ -0,0 +1,11 @@ +{ + "slug": "windows-live-shopping", + "name": "Windows Live Shopping", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17048669" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/wi/windows-live-spaces.json b/data/software/wi/windows-live-spaces.json new file mode 100644 index 000000000000..115198c756da --- /dev/null +++ b/data/software/wi/windows-live-spaces.json @@ -0,0 +1,11 @@ +{ + "slug": "windows-live-spaces", + "name": "Windows Live Spaces", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q876646" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/wi/windows-live-tv.json b/data/software/wi/windows-live-tv.json new file mode 100644 index 000000000000..c9b97dd37d87 --- /dev/null +++ b/data/software/wi/windows-live-tv.json @@ -0,0 +1,11 @@ +{ + "slug": "windows-live-tv", + "name": "Windows Live TV", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8024417" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/wi/windows-live-video-messages.json b/data/software/wi/windows-live-video-messages.json new file mode 100644 index 000000000000..5ff76127150c --- /dev/null +++ b/data/software/wi/windows-live-video-messages.json @@ -0,0 +1,11 @@ +{ + "slug": "windows-live-video-messages", + "name": "Windows Live Video Messages", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8024419" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/wi/windows-management-framework.json b/data/software/wi/windows-management-framework.json new file mode 100644 index 000000000000..f35e307c28a8 --- /dev/null +++ b/data/software/wi/windows-management-framework.json @@ -0,0 +1,8 @@ +{ + "slug": "windows-management-framework", + "name": "Windows Management Framework", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q29364567" + ] +} diff --git a/data/software/wi/windows-marketplace-for-mobile.json b/data/software/wi/windows-marketplace-for-mobile.json new file mode 100644 index 000000000000..bf8693614cb3 --- /dev/null +++ b/data/software/wi/windows-marketplace-for-mobile.json @@ -0,0 +1,11 @@ +{ + "slug": "windows-marketplace-for-mobile", + "name": "Windows Marketplace for Mobile", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8024423" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/wi/windows-media-components-for-quicktime.json b/data/software/wi/windows-media-components-for-quicktime.json new file mode 100644 index 000000000000..e6590cac074d --- /dev/null +++ b/data/software/wi/windows-media-components-for-quicktime.json @@ -0,0 +1,14 @@ +{ + "slug": "windows-media-components-for-quicktime", + "name": "Windows Media Components for QuickTime", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8024426" + ], + "developers": [ + "Telestream" + ], + "operating_systems": [ + "macOS" + ] +} diff --git a/data/software/wi/windows-media-feature-pack.json b/data/software/wi/windows-media-feature-pack.json new file mode 100644 index 000000000000..e72909cb5c94 --- /dev/null +++ b/data/software/wi/windows-media-feature-pack.json @@ -0,0 +1,8 @@ +{ + "slug": "windows-media-feature-pack", + "name": "Windows Media Feature Pack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130552732" + ] +} diff --git a/data/software/wi/windows-media-player-version-10.json b/data/software/wi/windows-media-player-version-10.json new file mode 100644 index 000000000000..77ca56d3f10c --- /dev/null +++ b/data/software/wi/windows-media-player-version-10.json @@ -0,0 +1,11 @@ +{ + "slug": "windows-media-player-version-10", + "name": "Windows Media Player, version 10", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10393867" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/wi/windows-media-player-version-11.json b/data/software/wi/windows-media-player-version-11.json new file mode 100644 index 000000000000..7e793cf99257 --- /dev/null +++ b/data/software/wi/windows-media-player-version-11.json @@ -0,0 +1,11 @@ +{ + "slug": "windows-media-player-version-11", + "name": "Windows Media Player, version 11", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q9096133" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/wi/windows-media-player-version-12.json b/data/software/wi/windows-media-player-version-12.json new file mode 100644 index 000000000000..68e2e48bb619 --- /dev/null +++ b/data/software/wi/windows-media-player-version-12.json @@ -0,0 +1,11 @@ +{ + "slug": "windows-media-player-version-12", + "name": "Windows Media Player, version 12", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28018460" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/wi/windows-media-player-version-6-4.json b/data/software/wi/windows-media-player-version-6-4.json new file mode 100644 index 000000000000..6a4be8c89473 --- /dev/null +++ b/data/software/wi/windows-media-player-version-6-4.json @@ -0,0 +1,11 @@ +{ + "slug": "windows-media-player-version-6-4", + "name": "Windows Media Player, version 6.4", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139790984" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/wi/windows-media-player-version-7.json b/data/software/wi/windows-media-player-version-7.json new file mode 100644 index 000000000000..c9674db2f3a9 --- /dev/null +++ b/data/software/wi/windows-media-player-version-7.json @@ -0,0 +1,11 @@ +{ + "slug": "windows-media-player-version-7", + "name": "Windows Media Player, version 7", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139792281" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/wi/windows-media-player-version-8.json b/data/software/wi/windows-media-player-version-8.json new file mode 100644 index 000000000000..7588a4efaa3e --- /dev/null +++ b/data/software/wi/windows-media-player-version-8.json @@ -0,0 +1,11 @@ +{ + "slug": "windows-media-player-version-8", + "name": "Windows Media Player, version 8", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139792269" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/wi/windows-media-player-version-9.json b/data/software/wi/windows-media-player-version-9.json new file mode 100644 index 000000000000..6150409dff36 --- /dev/null +++ b/data/software/wi/windows-media-player-version-9.json @@ -0,0 +1,11 @@ +{ + "slug": "windows-media-player-version-9", + "name": "Windows Media Player, version 9", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28018572" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/wi/windows-messaging.json b/data/software/wi/windows-messaging.json new file mode 100644 index 000000000000..c99ab58d50d7 --- /dev/null +++ b/data/software/wi/windows-messaging.json @@ -0,0 +1,11 @@ +{ + "slug": "windows-messaging", + "name": "Windows Messaging", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8024429" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/wi/windows-mixed-reality.json b/data/software/wi/windows-mixed-reality.json new file mode 100644 index 000000000000..33d5008f0ab6 --- /dev/null +++ b/data/software/wi/windows-mixed-reality.json @@ -0,0 +1,12 @@ +{ + "slug": "windows-mixed-reality", + "name": "Windows Mixed Reality", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18844946" + ], + "release_date": "2017-01-01", + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/wi/windows-mobile-device-center.json b/data/software/wi/windows-mobile-device-center.json new file mode 100644 index 000000000000..e6a5d2db7962 --- /dev/null +++ b/data/software/wi/windows-mobile-device-center.json @@ -0,0 +1,8 @@ +{ + "slug": "windows-mobile-device-center", + "name": "Windows Mobile Device Center", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1153643" + ] +} diff --git a/data/software/wi/windows-mobility-center.json b/data/software/wi/windows-mobility-center.json new file mode 100644 index 000000000000..6cdd40f96e1d --- /dev/null +++ b/data/software/wi/windows-mobility-center.json @@ -0,0 +1,8 @@ +{ + "slug": "windows-mobility-center", + "name": "Windows Mobility Center", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1193575" + ] +} diff --git a/data/software/wi/windows-multimedia-extensions.json b/data/software/wi/windows-multimedia-extensions.json new file mode 100644 index 000000000000..6f2c91e7655e --- /dev/null +++ b/data/software/wi/windows-multimedia-extensions.json @@ -0,0 +1,8 @@ +{ + "slug": "windows-multimedia-extensions", + "name": "Windows Multimedia Extensions", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q9368621" + ] +} diff --git a/data/software/wi/windows-photo-gallery.json b/data/software/wi/windows-photo-gallery.json new file mode 100644 index 000000000000..f2614d7fcdb2 --- /dev/null +++ b/data/software/wi/windows-photo-gallery.json @@ -0,0 +1,18 @@ +{ + "slug": "windows-photo-gallery", + "name": "Windows Photo Gallery", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1331807" + ], + "developers": [ + "Microsoft" + ], + "operating_systems": [ + "Windows 8.1", + "Windows 7" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/wi/windows-picture-and-fax-viewer.json b/data/software/wi/windows-picture-and-fax-viewer.json new file mode 100644 index 000000000000..15138746be47 --- /dev/null +++ b/data/software/wi/windows-picture-and-fax-viewer.json @@ -0,0 +1,11 @@ +{ + "slug": "windows-picture-and-fax-viewer", + "name": "Windows Picture and Fax Viewer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17164093" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/wi/windows-process-activation-services.json b/data/software/wi/windows-process-activation-services.json new file mode 100644 index 000000000000..ace59485b5bb --- /dev/null +++ b/data/software/wi/windows-process-activation-services.json @@ -0,0 +1,8 @@ +{ + "slug": "windows-process-activation-services", + "name": "Windows Process Activation Services", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17486116" + ] +} diff --git a/data/software/wi/windows-recovery-environment.json b/data/software/wi/windows-recovery-environment.json new file mode 100644 index 000000000000..31e4ce790b3f --- /dev/null +++ b/data/software/wi/windows-recovery-environment.json @@ -0,0 +1,11 @@ +{ + "slug": "windows-recovery-environment", + "name": "Windows Recovery Environment", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1757028" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/wi/windows-remote-assistance.json b/data/software/wi/windows-remote-assistance.json new file mode 100644 index 000000000000..95af2c660579 --- /dev/null +++ b/data/software/wi/windows-remote-assistance.json @@ -0,0 +1,8 @@ +{ + "slug": "windows-remote-assistance", + "name": "Windows Remote Assistance", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22115310" + ] +} diff --git a/data/software/wi/windows-remote-management.json b/data/software/wi/windows-remote-management.json new file mode 100644 index 000000000000..941f1187a041 --- /dev/null +++ b/data/software/wi/windows-remote-management.json @@ -0,0 +1,8 @@ +{ + "slug": "windows-remote-management", + "name": "Windows Remote Management", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q65075414" + ] +} diff --git a/data/software/wi/windows-server-update-services.json b/data/software/wi/windows-server-update-services.json new file mode 100644 index 000000000000..e5ad5be28bba --- /dev/null +++ b/data/software/wi/windows-server-update-services.json @@ -0,0 +1,11 @@ +{ + "slug": "windows-server-update-services", + "name": "Windows Server Update Services", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1187803" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/wi/windows-setup.json b/data/software/wi/windows-setup.json new file mode 100644 index 000000000000..bed2dde60448 --- /dev/null +++ b/data/software/wi/windows-setup.json @@ -0,0 +1,11 @@ +{ + "slug": "windows-setup", + "name": "Windows Setup", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q863146" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/wi/windows-sideshow.json b/data/software/wi/windows-sideshow.json new file mode 100644 index 000000000000..c871d2ae2c6b --- /dev/null +++ b/data/software/wi/windows-sideshow.json @@ -0,0 +1,8 @@ +{ + "slug": "windows-sideshow", + "name": "Windows SideShow", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q909896" + ] +} diff --git a/data/software/wi/windows-speech-recognition.json b/data/software/wi/windows-speech-recognition.json new file mode 100644 index 000000000000..a3b6ad275631 --- /dev/null +++ b/data/software/wi/windows-speech-recognition.json @@ -0,0 +1,11 @@ +{ + "slug": "windows-speech-recognition", + "name": "Windows Speech Recognition", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3656354" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/wi/windows-spotlight.json b/data/software/wi/windows-spotlight.json new file mode 100644 index 000000000000..35951a41a754 --- /dev/null +++ b/data/software/wi/windows-spotlight.json @@ -0,0 +1,11 @@ +{ + "slug": "windows-spotlight", + "name": "Windows Spotlight", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25001010" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/wi/windows-support-tools.json b/data/software/wi/windows-support-tools.json new file mode 100644 index 000000000000..3fad5083e9ac --- /dev/null +++ b/data/software/wi/windows-support-tools.json @@ -0,0 +1,8 @@ +{ + "slug": "windows-support-tools", + "name": "Windows Support Tools", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8024456" + ] +} diff --git a/data/software/wi/windows-system-assessment-tool.json b/data/software/wi/windows-system-assessment-tool.json new file mode 100644 index 000000000000..5620dc33bf49 --- /dev/null +++ b/data/software/wi/windows-system-assessment-tool.json @@ -0,0 +1,11 @@ +{ + "slug": "windows-system-assessment-tool", + "name": "Windows System Assessment Tool", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1193278" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/wi/windows-system-resource-manager.json b/data/software/wi/windows-system-resource-manager.json new file mode 100644 index 000000000000..4eae284a524d --- /dev/null +++ b/data/software/wi/windows-system-resource-manager.json @@ -0,0 +1,8 @@ +{ + "slug": "windows-system-resource-manager", + "name": "Windows System Resource Manager", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8024457" + ] +} diff --git a/data/software/wi/windows-task-scheduler.json b/data/software/wi/windows-task-scheduler.json new file mode 100644 index 000000000000..a0c1307b1d61 --- /dev/null +++ b/data/software/wi/windows-task-scheduler.json @@ -0,0 +1,8 @@ +{ + "slug": "windows-task-scheduler", + "name": "Windows Task Scheduler", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4006781" + ] +} diff --git a/data/software/wi/windows-to-go.json b/data/software/wi/windows-to-go.json new file mode 100644 index 000000000000..4647317b28e4 --- /dev/null +++ b/data/software/wi/windows-to-go.json @@ -0,0 +1,8 @@ +{ + "slug": "windows-to-go", + "name": "Windows To Go", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q610274" + ] +} diff --git a/data/software/wi/windows-ultimate-extras.json b/data/software/wi/windows-ultimate-extras.json new file mode 100644 index 000000000000..82e2875d6a60 --- /dev/null +++ b/data/software/wi/windows-ultimate-extras.json @@ -0,0 +1,8 @@ +{ + "slug": "windows-ultimate-extras", + "name": "Windows Ultimate Extras", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1081055" + ] +} diff --git a/data/software/wi/windows-update-minitool.json b/data/software/wi/windows-update-minitool.json new file mode 100644 index 000000000000..6779ae131dd6 --- /dev/null +++ b/data/software/wi/windows-update-minitool.json @@ -0,0 +1,8 @@ +{ + "slug": "windows-update-minitool", + "name": "Windows Update MiniTool", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112659351" + ] +} diff --git a/data/software/wi/windows-virtual-pc-q9375168.json b/data/software/wi/windows-virtual-pc-q9375168.json new file mode 100644 index 000000000000..a438a25b86af --- /dev/null +++ b/data/software/wi/windows-virtual-pc-q9375168.json @@ -0,0 +1,8 @@ +{ + "slug": "windows-virtual-pc-q9375168", + "name": "Windows Virtual PC", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q9375168" + ] +} diff --git a/data/software/wi/windows-virtual-pc.json b/data/software/wi/windows-virtual-pc.json new file mode 100644 index 000000000000..e6114edcfad5 --- /dev/null +++ b/data/software/wi/windows-virtual-pc.json @@ -0,0 +1,18 @@ +{ + "slug": "windows-virtual-pc", + "name": "Windows Virtual PC", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q748417" + ], + "developers": [ + "Connectix", + "Microsoft" + ], + "operating_systems": [ + "Microsoft Windows" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/wi/windowsscope.json b/data/software/wi/windowsscope.json new file mode 100644 index 000000000000..c608f740a2f5 --- /dev/null +++ b/data/software/wi/windowsscope.json @@ -0,0 +1,11 @@ +{ + "slug": "windowsscope", + "name": "WindowsSCOPE", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17131121" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/wi/windsim.json b/data/software/wi/windsim.json new file mode 100644 index 000000000000..8a44457764a5 --- /dev/null +++ b/data/software/wi/windsim.json @@ -0,0 +1,8 @@ +{ + "slug": "windsim", + "name": "WindSim", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q23583762" + ] +} diff --git a/data/software/wi/windstation.json b/data/software/wi/windstation.json new file mode 100644 index 000000000000..8f28d8cc1d8e --- /dev/null +++ b/data/software/wi/windstation.json @@ -0,0 +1,8 @@ +{ + "slug": "windstation", + "name": "WindStation", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q65246833" + ] +} diff --git a/data/software/wi/windump.json b/data/software/wi/windump.json new file mode 100644 index 000000000000..56942dd5f9db --- /dev/null +++ b/data/software/wi/windump.json @@ -0,0 +1,11 @@ +{ + "slug": "windump", + "name": "Windump", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6167969" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/wi/wine-etersoft.json b/data/software/wi/wine-etersoft.json new file mode 100644 index 000000000000..15886bc49473 --- /dev/null +++ b/data/software/wi/wine-etersoft.json @@ -0,0 +1,8 @@ +{ + "slug": "wine-etersoft", + "name": "WINE@Etersoft", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4052900" + ] +} diff --git a/data/software/wi/wine-staging.json b/data/software/wi/wine-staging.json new file mode 100644 index 000000000000..d890ac58dfbb --- /dev/null +++ b/data/software/wi/wine-staging.json @@ -0,0 +1,11 @@ +{ + "slug": "wine-staging", + "name": "Wine-Staging", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123148633" + ], + "developers": [ + "Sebastian Lackner" + ] +} diff --git a/data/software/wi/wineds-election-database-system.json b/data/software/wi/wineds-election-database-system.json new file mode 100644 index 000000000000..ae125b860191 --- /dev/null +++ b/data/software/wi/wineds-election-database-system.json @@ -0,0 +1,11 @@ +{ + "slug": "wineds-election-database-system", + "name": "WinEDS Election Database System", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q56668866" + ], + "developers": [ + "Sequoia Voting Systems" + ] +} diff --git a/data/software/wi/winegui.json b/data/software/wi/winegui.json new file mode 100644 index 000000000000..e0c923766075 --- /dev/null +++ b/data/software/wi/winegui.json @@ -0,0 +1,8 @@ +{ + "slug": "winegui", + "name": "WineGUI", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130547565" + ] +} diff --git a/data/software/wi/winfax.json b/data/software/wi/winfax.json new file mode 100644 index 000000000000..d918da44293b --- /dev/null +++ b/data/software/wi/winfax.json @@ -0,0 +1,12 @@ +{ + "slug": "winfax", + "name": "WinFax", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3569318" + ], + "developers": [ + "Delrina", + "Gen Digital" + ] +} diff --git a/data/software/wi/winfuture-xp-iso-builder.json b/data/software/wi/winfuture-xp-iso-builder.json new file mode 100644 index 000000000000..3c8934f16622 --- /dev/null +++ b/data/software/wi/winfuture-xp-iso-builder.json @@ -0,0 +1,8 @@ +{ + "slug": "winfuture-xp-iso-builder", + "name": "WinFuture xp-Iso-Builder", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2583304" + ] +} diff --git a/data/software/wi/wingate.json b/data/software/wi/wingate.json new file mode 100644 index 000000000000..43c556af1def --- /dev/null +++ b/data/software/wi/wingate.json @@ -0,0 +1,14 @@ +{ + "slug": "wingate", + "name": "WinGate", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1302273" + ], + "developers": [ + "QBIK" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/wi/wingeno.json b/data/software/wi/wingeno.json new file mode 100644 index 000000000000..7e585262aa00 --- /dev/null +++ b/data/software/wi/wingeno.json @@ -0,0 +1,8 @@ +{ + "slug": "wingeno", + "name": "WinGeno", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123269671" + ] +} diff --git a/data/software/wi/wingx.json b/data/software/wi/wingx.json new file mode 100644 index 000000000000..5a2273a8f004 --- /dev/null +++ b/data/software/wi/wingx.json @@ -0,0 +1,11 @@ +{ + "slug": "wingx", + "name": "WinGX", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q51796009" + ], + "operating_systems": [ + "Windows 7" + ] +} diff --git a/data/software/wi/winhound.json b/data/software/wi/winhound.json new file mode 100644 index 000000000000..4794b053a52f --- /dev/null +++ b/data/software/wi/winhound.json @@ -0,0 +1,8 @@ +{ + "slug": "winhound", + "name": "Winhound", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10720268" + ] +} diff --git a/data/software/wi/winimage.json b/data/software/wi/winimage.json new file mode 100644 index 000000000000..290d807d0f26 --- /dev/null +++ b/data/software/wi/winimage.json @@ -0,0 +1,8 @@ +{ + "slug": "winimage", + "name": "WinImage", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1391811" + ] +} diff --git a/data/software/wi/wininfo.json b/data/software/wi/wininfo.json new file mode 100644 index 000000000000..5e5e4ecda9b5 --- /dev/null +++ b/data/software/wi/wininfo.json @@ -0,0 +1,8 @@ +{ + "slug": "wininfo", + "name": "wininfo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106102028" + ] +} diff --git a/data/software/wi/wink-q21041373.json b/data/software/wi/wink-q21041373.json new file mode 100644 index 000000000000..c0fe23531c9d --- /dev/null +++ b/data/software/wi/wink-q21041373.json @@ -0,0 +1,14 @@ +{ + "slug": "wink-q21041373", + "name": "Wink", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q21041373" + ], + "developers": [ + "Quirky" + ], + "operating_systems": [ + "iOS" + ] +} diff --git a/data/software/wi/wink.json b/data/software/wi/wink.json new file mode 100644 index 000000000000..1645d36fe763 --- /dev/null +++ b/data/software/wi/wink.json @@ -0,0 +1,14 @@ +{ + "slug": "wink", + "name": "Wink", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q512182" + ], + "operating_systems": [ + "Microsoft Windows" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/wi/winlibre.json b/data/software/wi/winlibre.json new file mode 100644 index 000000000000..d4bd173fe933 --- /dev/null +++ b/data/software/wi/winlibre.json @@ -0,0 +1,11 @@ +{ + "slug": "winlibre", + "name": "WinLibre", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3569252" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/wi/winmostar.json b/data/software/wi/winmostar.json new file mode 100644 index 000000000000..4527b9316486 --- /dev/null +++ b/data/software/wi/winmostar.json @@ -0,0 +1,11 @@ +{ + "slug": "winmostar", + "name": "Winmostar", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q27979286" + ], + "programming_languages": [ + "Delphi" + ] +} diff --git a/data/software/wi/winmx.json b/data/software/wi/winmx.json new file mode 100644 index 000000000000..37031fe8939b --- /dev/null +++ b/data/software/wi/winmx.json @@ -0,0 +1,14 @@ +{ + "slug": "winmx", + "name": "WinMX", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q239036" + ], + "operating_systems": [ + "Microsoft Windows" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/wi/winnc.json b/data/software/wi/winnc.json new file mode 100644 index 000000000000..9a5e23ee0316 --- /dev/null +++ b/data/software/wi/winnc.json @@ -0,0 +1,14 @@ +{ + "slug": "winnc", + "name": "WinNc", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3118183" + ], + "programming_languages": [ + "Object Pascal" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/wi/winpcap.json b/data/software/wi/winpcap.json new file mode 100644 index 000000000000..1dd9f4c7f09c --- /dev/null +++ b/data/software/wi/winpcap.json @@ -0,0 +1,8 @@ +{ + "slug": "winpcap", + "name": "WinPcap", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2166623" + ] +} diff --git a/data/software/wi/winplot.json b/data/software/wi/winplot.json new file mode 100644 index 000000000000..b51299846c73 --- /dev/null +++ b/data/software/wi/winplot.json @@ -0,0 +1,12 @@ +{ + "slug": "winplot", + "name": "Winplot", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8025912" + ], + "release_date": "1985-01-01", + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/wi/winpolis.json b/data/software/wi/winpolis.json new file mode 100644 index 000000000000..da29c750499e --- /dev/null +++ b/data/software/wi/winpolis.json @@ -0,0 +1,8 @@ +{ + "slug": "winpolis", + "name": "WinPolis", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108732542" + ] +} diff --git a/data/software/wi/winrelan.json b/data/software/wi/winrelan.json new file mode 100644 index 000000000000..3af0445c764d --- /dev/null +++ b/data/software/wi/winrelan.json @@ -0,0 +1,14 @@ +{ + "slug": "winrelan", + "name": "WinRelan", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105229780" + ], + "operating_systems": [ + "Microsoft Windows" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/wi/winshell.json b/data/software/wi/winshell.json new file mode 100644 index 000000000000..29c1393035d2 --- /dev/null +++ b/data/software/wi/winshell.json @@ -0,0 +1,14 @@ +{ + "slug": "winshell", + "name": "WinShell", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q967784" + ], + "operating_systems": [ + "Microsoft Windows" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/wi/winstars.json b/data/software/wi/winstars.json new file mode 100644 index 000000000000..bda70bfc0626 --- /dev/null +++ b/data/software/wi/winstars.json @@ -0,0 +1,12 @@ +{ + "slug": "winstars", + "name": "WinStars", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3569381" + ], + "operating_systems": [ + "iOS", + "Microsoft Windows" + ] +} diff --git a/data/software/wi/winsysanalyzer.json b/data/software/wi/winsysanalyzer.json new file mode 100644 index 000000000000..1995870ec0d2 --- /dev/null +++ b/data/software/wi/winsysanalyzer.json @@ -0,0 +1,14 @@ +{ + "slug": "winsysanalyzer", + "name": "WinSysAnalyzer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140352420" + ], + "developers": [ + "BMSoft1024" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/wi/winticket.json b/data/software/wi/winticket.json new file mode 100644 index 000000000000..74f05afadf42 --- /dev/null +++ b/data/software/wi/winticket.json @@ -0,0 +1,11 @@ +{ + "slug": "winticket", + "name": "WinTicket", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q65233332" + ], + "operating_systems": [ + "iOS" + ] +} diff --git a/data/software/wi/winusb.json b/data/software/wi/winusb.json new file mode 100644 index 000000000000..049908d75bc8 --- /dev/null +++ b/data/software/wi/winusb.json @@ -0,0 +1,11 @@ +{ + "slug": "winusb", + "name": "WinUSB", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4053158" + ], + "developers": [ + "Microsoft" + ] +} diff --git a/data/software/wi/winwap.json b/data/software/wi/winwap.json new file mode 100644 index 000000000000..2ade6c4dd717 --- /dev/null +++ b/data/software/wi/winwap.json @@ -0,0 +1,8 @@ +{ + "slug": "winwap", + "name": "WinWAP", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4053159" + ] +} diff --git a/data/software/wi/winx-mediatrans.json b/data/software/wi/winx-mediatrans.json new file mode 100644 index 000000000000..9bfc59fa6eb7 --- /dev/null +++ b/data/software/wi/winx-mediatrans.json @@ -0,0 +1,8 @@ +{ + "slug": "winx-mediatrans", + "name": "WinX MediaTrans", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q26971380" + ] +} diff --git a/data/software/wi/winyl.json b/data/software/wi/winyl.json new file mode 100644 index 000000000000..6c029c5f8820 --- /dev/null +++ b/data/software/wi/winyl.json @@ -0,0 +1,14 @@ +{ + "slug": "winyl", + "name": "Winyl", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111586459" + ], + "operating_systems": [ + "Microsoft Windows" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/wi/wipe-out.json b/data/software/wi/wipe-out.json new file mode 100644 index 000000000000..cbd2e44b585a --- /dev/null +++ b/data/software/wi/wipe-out.json @@ -0,0 +1,8 @@ +{ + "slug": "wipe-out", + "name": "wipe-out", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17233012" + ] +} diff --git a/data/software/wi/wipersoft.json b/data/software/wi/wipersoft.json new file mode 100644 index 000000000000..56c65aa65641 --- /dev/null +++ b/data/software/wi/wipersoft.json @@ -0,0 +1,9 @@ +{ + "slug": "wipersoft", + "name": "WiperSoft", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28447972" + ], + "release_date": "2015-01-01" +} diff --git a/data/software/wi/wirecast.json b/data/software/wi/wirecast.json new file mode 100644 index 000000000000..384ca95da8d3 --- /dev/null +++ b/data/software/wi/wirecast.json @@ -0,0 +1,15 @@ +{ + "slug": "wirecast", + "name": "Wirecast", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8026771" + ], + "developers": [ + "Telestream" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/software/wi/wireframesketcher.json b/data/software/wi/wireframesketcher.json new file mode 100644 index 000000000000..de0ec1368c1e --- /dev/null +++ b/data/software/wi/wireframesketcher.json @@ -0,0 +1,12 @@ +{ + "slug": "wireframesketcher", + "name": "WireframeSketcher", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17098555" + ], + "release_date": "2008-01-01", + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/wi/wirefusion.json b/data/software/wi/wirefusion.json new file mode 100644 index 000000000000..2ddd433e6ecd --- /dev/null +++ b/data/software/wi/wirefusion.json @@ -0,0 +1,8 @@ +{ + "slug": "wirefusion", + "name": "WireFusion", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3569430" + ] +} diff --git a/data/software/wi/wireless-information-system-for-emergency-responders.json b/data/software/wi/wireless-information-system-for-emergency-responders.json new file mode 100644 index 000000000000..c1cc8dfd5b68 --- /dev/null +++ b/data/software/wi/wireless-information-system-for-emergency-responders.json @@ -0,0 +1,8 @@ +{ + "slug": "wireless-information-system-for-emergency-responders", + "name": "Wireless Information System for Emergency Responders", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8026840" + ] +} diff --git a/data/software/wi/wiscker.json b/data/software/wi/wiscker.json new file mode 100644 index 000000000000..945b7dbde0a7 --- /dev/null +++ b/data/software/wi/wiscker.json @@ -0,0 +1,8 @@ +{ + "slug": "wiscker", + "name": "WIScker", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084757" + ] +} diff --git a/data/software/wi/wisdom.json b/data/software/wi/wisdom.json new file mode 100644 index 000000000000..44beaa447feb --- /dev/null +++ b/data/software/wi/wisdom.json @@ -0,0 +1,8 @@ +{ + "slug": "wisdom", + "name": "Wisdom", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087771" + ] +} diff --git a/data/software/wi/wisej-net.json b/data/software/wi/wisej-net.json new file mode 100644 index 000000000000..3f7873eb389f --- /dev/null +++ b/data/software/wi/wisej-net.json @@ -0,0 +1,15 @@ +{ + "slug": "wisej-net", + "name": "Wisej.NET", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111928828" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [ + "Visual Basic" + ] +} diff --git a/data/software/wi/wisely.json b/data/software/wi/wisely.json new file mode 100644 index 000000000000..b879dbde8673 --- /dev/null +++ b/data/software/wi/wisely.json @@ -0,0 +1,11 @@ +{ + "slug": "wisely", + "name": "Wisely", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16983604" + ], + "operating_systems": [ + "iOS" + ] +} diff --git a/data/software/wi/wisex.json b/data/software/wi/wisex.json new file mode 100644 index 000000000000..d0494bae5cb9 --- /dev/null +++ b/data/software/wi/wisex.json @@ -0,0 +1,8 @@ +{ + "slug": "wisex", + "name": "WiseX", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137846677" + ] +} diff --git a/data/software/wi/wiseyield.json b/data/software/wi/wiseyield.json new file mode 100644 index 000000000000..50192da0f8b8 --- /dev/null +++ b/data/software/wi/wiseyield.json @@ -0,0 +1,8 @@ +{ + "slug": "wiseyield", + "name": "WiseYield", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138457636" + ] +} diff --git a/data/software/wi/wisgoon.json b/data/software/wi/wisgoon.json new file mode 100644 index 000000000000..44d95bf13c8e --- /dev/null +++ b/data/software/wi/wisgoon.json @@ -0,0 +1,8 @@ +{ + "slug": "wisgoon", + "name": "Wisgoon", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q48698829" + ] +} diff --git a/data/software/wi/wish-generator.json b/data/software/wi/wish-generator.json new file mode 100644 index 000000000000..e98283f75950 --- /dev/null +++ b/data/software/wi/wish-generator.json @@ -0,0 +1,8 @@ +{ + "slug": "wish-generator", + "name": "Wish Generator", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140278348" + ] +} diff --git a/data/software/wi/wisski.json b/data/software/wi/wisski.json new file mode 100644 index 000000000000..b563b5bece90 --- /dev/null +++ b/data/software/wi/wisski.json @@ -0,0 +1,14 @@ +{ + "slug": "wisski", + "name": "WissKI", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q100317103" + ], + "developers": [ + "Mark Fichtner" + ], + "licenses": [ + "GNU General Public License, version 2.0" + ] +} diff --git a/data/software/wi/witscript.json b/data/software/wi/witscript.json new file mode 100644 index 000000000000..098e6abc1e96 --- /dev/null +++ b/data/software/wi/witscript.json @@ -0,0 +1,8 @@ +{ + "slug": "witscript", + "name": "Witscript", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123693774" + ] +} diff --git a/data/software/wi/wizfolio.json b/data/software/wi/wizfolio.json new file mode 100644 index 000000000000..5044e8bab3aa --- /dev/null +++ b/data/software/wi/wizfolio.json @@ -0,0 +1,15 @@ +{ + "slug": "wizfolio", + "name": "WizFolio", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8028714" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/wi/wiztrust-protect.json b/data/software/wi/wiztrust-protect.json new file mode 100644 index 000000000000..3b04805a4246 --- /dev/null +++ b/data/software/wi/wiztrust-protect.json @@ -0,0 +1,11 @@ +{ + "slug": "wiztrust-protect", + "name": "Wiztrust Protect", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136304423" + ], + "developers": [ + "Wiztrust" + ] +} diff --git a/data/software/wi/wiztrust.json b/data/software/wi/wiztrust.json new file mode 100644 index 000000000000..71607b1cb0ec --- /dev/null +++ b/data/software/wi/wiztrust.json @@ -0,0 +1,8 @@ +{ + "slug": "wiztrust", + "name": "Wiztrust", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136304371" + ] +} diff --git a/data/software/wl/wlc.json b/data/software/wl/wlc.json new file mode 100644 index 000000000000..72f9b6180d4e --- /dev/null +++ b/data/software/wl/wlc.json @@ -0,0 +1,11 @@ +{ + "slug": "wlc", + "name": "wlc", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975569" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/wl/wled.json b/data/software/wl/wled.json new file mode 100644 index 000000000000..d73fd680a20b --- /dev/null +++ b/data/software/wl/wled.json @@ -0,0 +1,8 @@ +{ + "slug": "wled", + "name": "WLED", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113111845" + ] +} diff --git a/data/software/wm/wma-convert.json b/data/software/wm/wma-convert.json new file mode 100644 index 000000000000..240164a10034 --- /dev/null +++ b/data/software/wm/wma-convert.json @@ -0,0 +1,8 @@ +{ + "slug": "wma-convert", + "name": "WMA Convert", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7952653" + ] +} diff --git a/data/software/wm/wmatrix.json b/data/software/wm/wmatrix.json new file mode 100644 index 000000000000..366b0554d09b --- /dev/null +++ b/data/software/wm/wmatrix.json @@ -0,0 +1,8 @@ +{ + "slug": "wmatrix", + "name": "Wmatrix", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084758" + ] +} diff --git a/data/software/wm/wmcalclock.json b/data/software/wm/wmcalclock.json new file mode 100644 index 000000000000..dd9cfc6c9272 --- /dev/null +++ b/data/software/wm/wmcalclock.json @@ -0,0 +1,8 @@ +{ + "slug": "wmcalclock", + "name": "WmCalClock", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8028926" + ] +} diff --git a/data/software/wm/wms.json b/data/software/wm/wms.json new file mode 100644 index 000000000000..62533c1c4b6d --- /dev/null +++ b/data/software/wm/wms.json @@ -0,0 +1,15 @@ +{ + "slug": "wms", + "name": "WMS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7953074" + ], + "developers": [ + "Aquaveo" + ], + "operating_systems": [ + "Windows 8.1", + "Windows 7" + ] +} diff --git a/data/software/wo/woflan.json b/data/software/wo/woflan.json new file mode 100644 index 000000000000..9a7e7466fc50 --- /dev/null +++ b/data/software/wo/woflan.json @@ -0,0 +1,8 @@ +{ + "slug": "woflan", + "name": "Woflan", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q67926238" + ] +} diff --git a/data/software/wo/woke.json b/data/software/wo/woke.json new file mode 100644 index 000000000000..e9cf451b74ad --- /dev/null +++ b/data/software/wo/woke.json @@ -0,0 +1,11 @@ +{ + "slug": "woke", + "name": "woke", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118075987" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/wo/wolfram-demonstrations-project.json b/data/software/wo/wolfram-demonstrations-project.json new file mode 100644 index 000000000000..7c50931db5ca --- /dev/null +++ b/data/software/wo/wolfram-demonstrations-project.json @@ -0,0 +1,8 @@ +{ + "slug": "wolfram-demonstrations-project", + "name": "Wolfram Demonstrations Project", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2632017" + ] +} diff --git a/data/software/wo/wolfram-finance-platform.json b/data/software/wo/wolfram-finance-platform.json new file mode 100644 index 000000000000..14e4c095ee82 --- /dev/null +++ b/data/software/wo/wolfram-finance-platform.json @@ -0,0 +1,11 @@ +{ + "slug": "wolfram-finance-platform", + "name": "Wolfram Finance Platform", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4053214" + ], + "developers": [ + "Wolfram Research" + ] +} diff --git a/data/software/wo/wolfram-language.json b/data/software/wo/wolfram-language.json new file mode 100644 index 000000000000..5ca482413cf0 --- /dev/null +++ b/data/software/wo/wolfram-language.json @@ -0,0 +1,20 @@ +{ + "slug": "wolfram-language", + "name": "Wolfram Language", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q15241057" + ], + "release_date": "2014-01-01", + "developers": [ + "Wolfram Research", + "Stephen Wolfram" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/wo/wombo.json b/data/software/wo/wombo.json new file mode 100644 index 000000000000..b4a0a77e6714 --- /dev/null +++ b/data/software/wo/wombo.json @@ -0,0 +1,8 @@ +{ + "slug": "wombo", + "name": "Wombo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106808934" + ] +} diff --git a/data/software/wo/wonderbuild.json b/data/software/wo/wonderbuild.json new file mode 100644 index 000000000000..73e438183f81 --- /dev/null +++ b/data/software/wo/wonderbuild.json @@ -0,0 +1,11 @@ +{ + "slug": "wonderbuild", + "name": "WonderBuild", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138664954" + ], + "developers": [ + "Alice" + ] +} diff --git a/data/software/wo/wondercheck.json b/data/software/wo/wondercheck.json new file mode 100644 index 000000000000..b971b8a95b5b --- /dev/null +++ b/data/software/wo/wondercheck.json @@ -0,0 +1,11 @@ +{ + "slug": "wondercheck", + "name": "WonderCheck", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138664946" + ], + "developers": [ + "Alice" + ] +} diff --git a/data/software/wo/wonderfence.json b/data/software/wo/wonderfence.json new file mode 100644 index 000000000000..71806c436a88 --- /dev/null +++ b/data/software/wo/wonderfence.json @@ -0,0 +1,11 @@ +{ + "slug": "wonderfence", + "name": "WonderFence", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138664976" + ], + "developers": [ + "Alice" + ] +} diff --git a/data/software/wo/wondersuite.json b/data/software/wo/wondersuite.json new file mode 100644 index 000000000000..9299b1a60cfb --- /dev/null +++ b/data/software/wo/wondersuite.json @@ -0,0 +1,11 @@ +{ + "slug": "wondersuite", + "name": "WonderSuite", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138664892" + ], + "developers": [ + "Alice" + ] +} diff --git a/data/software/wo/woningdossier.json b/data/software/wo/woningdossier.json new file mode 100644 index 000000000000..793453bd593c --- /dev/null +++ b/data/software/wo/woningdossier.json @@ -0,0 +1,8 @@ +{ + "slug": "woningdossier", + "name": "Woningdossier", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139493874" + ] +} diff --git a/data/software/wo/wooclap.json b/data/software/wo/wooclap.json new file mode 100644 index 000000000000..c1c3075d5c87 --- /dev/null +++ b/data/software/wo/wooclap.json @@ -0,0 +1,8 @@ +{ + "slug": "wooclap", + "name": "Wooclap", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60963681" + ] +} diff --git a/data/software/wo/woofz.json b/data/software/wo/woofz.json new file mode 100644 index 000000000000..40a5f30d005c --- /dev/null +++ b/data/software/wo/woofz.json @@ -0,0 +1,8 @@ +{ + "slug": "woofz", + "name": "Woofz", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137782586" + ] +} diff --git a/data/software/wo/woophy.json b/data/software/wo/woophy.json new file mode 100644 index 000000000000..9048ff89fac9 --- /dev/null +++ b/data/software/wo/woophy.json @@ -0,0 +1,8 @@ +{ + "slug": "woophy", + "name": "Woophy", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q535131" + ] +} diff --git a/data/software/wo/wopee-io.json b/data/software/wo/wopee-io.json new file mode 100644 index 000000000000..9eb1766c812f --- /dev/null +++ b/data/software/wo/wopee-io.json @@ -0,0 +1,8 @@ +{ + "slug": "wopee-io", + "name": "Wopee.io", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138710880" + ] +} diff --git a/data/software/wo/word-and-phrase.json b/data/software/wo/word-and-phrase.json new file mode 100644 index 000000000000..17ffc59b7d89 --- /dev/null +++ b/data/software/wo/word-and-phrase.json @@ -0,0 +1,8 @@ +{ + "slug": "word-and-phrase", + "name": "Word and Phrase", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084759" + ] +} diff --git a/data/software/wo/word-art-makewordart.json b/data/software/wo/word-art-makewordart.json new file mode 100644 index 000000000000..082735112dc3 --- /dev/null +++ b/data/software/wo/word-art-makewordart.json @@ -0,0 +1,8 @@ +{ + "slug": "word-art-makewordart", + "name": "Word Art (MakeWordArt)", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084762" + ] +} diff --git a/data/software/wo/word-circuits-connection-muse.json b/data/software/wo/word-circuits-connection-muse.json new file mode 100644 index 000000000000..b8961f9e255d --- /dev/null +++ b/data/software/wo/word-circuits-connection-muse.json @@ -0,0 +1,11 @@ +{ + "slug": "word-circuits-connection-muse", + "name": "Word Circuits Connection Muse", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125523446" + ], + "developers": [ + "Robert Kendall" + ] +} diff --git a/data/software/wo/word-for-ios.json b/data/software/wo/word-for-ios.json new file mode 100644 index 000000000000..0e48650a0724 --- /dev/null +++ b/data/software/wo/word-for-ios.json @@ -0,0 +1,8 @@ +{ + "slug": "word-for-ios", + "name": "Word for iOS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q66466883" + ] +} diff --git a/data/software/wo/word-lens.json b/data/software/wo/word-lens.json new file mode 100644 index 000000000000..23d4d4f47550 --- /dev/null +++ b/data/software/wo/word-lens.json @@ -0,0 +1,14 @@ +{ + "slug": "word-lens", + "name": "Word Lens", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8034296" + ], + "developers": [ + "Quest Visual" + ], + "operating_systems": [ + "iOS" + ] +} diff --git a/data/software/wo/word-processor-program.json b/data/software/wo/word-processor-program.json new file mode 100644 index 000000000000..0ae0c194713e --- /dev/null +++ b/data/software/wo/word-processor-program.json @@ -0,0 +1,8 @@ +{ + "slug": "word-processor-program", + "name": "word processor program", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q55637909" + ] +} diff --git a/data/software/wo/word-tree.json b/data/software/wo/word-tree.json new file mode 100644 index 000000000000..5e6c46865b9a --- /dev/null +++ b/data/software/wo/word-tree.json @@ -0,0 +1,8 @@ +{ + "slug": "word-tree", + "name": "word tree", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084770" + ] +} diff --git a/data/software/wo/wordcruncher.json b/data/software/wo/wordcruncher.json new file mode 100644 index 000000000000..663128a272d0 --- /dev/null +++ b/data/software/wo/wordcruncher.json @@ -0,0 +1,8 @@ +{ + "slug": "wordcruncher", + "name": "WordCruncher", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084763" + ] +} diff --git a/data/software/wo/wordfast.json b/data/software/wo/wordfast.json new file mode 100644 index 000000000000..b1e72b25bfb7 --- /dev/null +++ b/data/software/wo/wordfast.json @@ -0,0 +1,11 @@ +{ + "slug": "wordfast", + "name": "Wordfast", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q223619" + ], + "programming_languages": [ + "Java" + ] +} diff --git a/data/software/wo/wordfreak.json b/data/software/wo/wordfreak.json new file mode 100644 index 000000000000..f736c9ce9f59 --- /dev/null +++ b/data/software/wo/wordfreak.json @@ -0,0 +1,14 @@ +{ + "slug": "wordfreak", + "name": "WordFreak", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084764" + ], + "programming_languages": [ + "Java" + ], + "licenses": [ + "Mozilla Public License, version 1.1" + ] +} diff --git a/data/software/wo/wordhoard.json b/data/software/wo/wordhoard.json new file mode 100644 index 000000000000..96f3b01c3643 --- /dev/null +++ b/data/software/wo/wordhoard.json @@ -0,0 +1,8 @@ +{ + "slug": "wordhoard", + "name": "WordHoard", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084765" + ] +} diff --git a/data/software/wo/wordhub.json b/data/software/wo/wordhub.json new file mode 100644 index 000000000000..542bb8ff1a25 --- /dev/null +++ b/data/software/wo/wordhub.json @@ -0,0 +1,20 @@ +{ + "slug": "wordhub", + "name": "WordHub", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138766498" + ], + "developers": [ + "Perry Lei" + ], + "programming_languages": [ + "TypeScript" + ], + "licenses": [ + "freeware" + ], + "genres": [ + "e-learning" + ] +} diff --git a/data/software/wo/wordij.json b/data/software/wo/wordij.json new file mode 100644 index 000000000000..3ed223ffafe3 --- /dev/null +++ b/data/software/wo/wordij.json @@ -0,0 +1,8 @@ +{ + "slug": "wordij", + "name": "WORDij", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084766" + ] +} diff --git a/data/software/wo/wordle.json b/data/software/wo/wordle.json new file mode 100644 index 000000000000..31f45f2c19b7 --- /dev/null +++ b/data/software/wo/wordle.json @@ -0,0 +1,8 @@ +{ + "slug": "wordle", + "name": "Wordle", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084767" + ] +} diff --git a/data/software/wo/wordnetloom.json b/data/software/wo/wordnetloom.json new file mode 100644 index 000000000000..9dc0dfa00459 --- /dev/null +++ b/data/software/wo/wordnetloom.json @@ -0,0 +1,8 @@ +{ + "slug": "wordnetloom", + "name": "WordNetLoom", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q65944268" + ] +} diff --git a/data/software/wo/wordq-speakq.json b/data/software/wo/wordq-speakq.json new file mode 100644 index 000000000000..8f259ef562c6 --- /dev/null +++ b/data/software/wo/wordq-speakq.json @@ -0,0 +1,11 @@ +{ + "slug": "wordq-speakq", + "name": "WordQ+SpeakQ", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8034276" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/wo/words.json b/data/software/wo/words.json new file mode 100644 index 000000000000..fb07955c6777 --- /dev/null +++ b/data/software/wo/words.json @@ -0,0 +1,8 @@ +{ + "slug": "words", + "name": "WORDS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087772" + ] +} diff --git a/data/software/wo/wordseer.json b/data/software/wo/wordseer.json new file mode 100644 index 000000000000..dfb692209197 --- /dev/null +++ b/data/software/wo/wordseer.json @@ -0,0 +1,8 @@ +{ + "slug": "wordseer", + "name": "WordSeer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084768" + ] +} diff --git a/data/software/wo/wordsimilarity-word-2-word.json b/data/software/wo/wordsimilarity-word-2-word.json new file mode 100644 index 000000000000..f373a8e4c7b2 --- /dev/null +++ b/data/software/wo/wordsimilarity-word-2-word.json @@ -0,0 +1,8 @@ +{ + "slug": "wordsimilarity-word-2-word", + "name": "wordsimilarity (Word 2 Word)", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084769" + ] +} diff --git a/data/software/wo/wordstar-for-ms-dos.json b/data/software/wo/wordstar-for-ms-dos.json new file mode 100644 index 000000000000..1c37ecd84416 --- /dev/null +++ b/data/software/wo/wordstar-for-ms-dos.json @@ -0,0 +1,14 @@ +{ + "slug": "wordstar-for-ms-dos", + "name": "WordStar for MS-DOS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q48694565" + ], + "developers": [ + "MicroPro International" + ], + "operating_systems": [ + "DOS" + ] +} diff --git a/data/software/wo/wordstat.json b/data/software/wo/wordstat.json new file mode 100644 index 000000000000..477abc5415d3 --- /dev/null +++ b/data/software/wo/wordstat.json @@ -0,0 +1,9 @@ +{ + "slug": "wordstat", + "name": "WordStat", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3569884" + ], + "release_date": "1998-01-01" +} diff --git a/data/software/wo/wordtrans.json b/data/software/wo/wordtrans.json new file mode 100644 index 000000000000..578d3f2e6d6d --- /dev/null +++ b/data/software/wo/wordtrans.json @@ -0,0 +1,8 @@ +{ + "slug": "wordtrans", + "name": "Wordtrans", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8034498" + ] +} diff --git a/data/software/wo/wordtune.json b/data/software/wo/wordtune.json new file mode 100644 index 000000000000..839be26a6b02 --- /dev/null +++ b/data/software/wo/wordtune.json @@ -0,0 +1,11 @@ +{ + "slug": "wordtune", + "name": "Wordtune", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117706017" + ], + "developers": [ + "AI21 Labs" + ] +} diff --git a/data/software/wo/wordwanderer.json b/data/software/wo/wordwanderer.json new file mode 100644 index 000000000000..f86a8ad83232 --- /dev/null +++ b/data/software/wo/wordwanderer.json @@ -0,0 +1,8 @@ +{ + "slug": "wordwanderer", + "name": "WordWanderer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084771" + ] +} diff --git a/data/software/wo/wordweb.json b/data/software/wo/wordweb.json new file mode 100644 index 000000000000..8d871f3d4905 --- /dev/null +++ b/data/software/wo/wordweb.json @@ -0,0 +1,8 @@ +{ + "slug": "wordweb", + "name": "WordWeb", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3595666" + ] +} diff --git a/data/software/wo/wordwise.json b/data/software/wo/wordwise.json new file mode 100644 index 000000000000..d8644efef788 --- /dev/null +++ b/data/software/wo/wordwise.json @@ -0,0 +1,8 @@ +{ + "slug": "wordwise", + "name": "WordWise", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8034282" + ] +} diff --git a/data/software/wo/worhp.json b/data/software/wo/worhp.json new file mode 100644 index 000000000000..64adbc21a1cf --- /dev/null +++ b/data/software/wo/worhp.json @@ -0,0 +1,14 @@ +{ + "slug": "worhp", + "name": "WORHP", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7953961" + ], + "developers": [ + "European Space Agency" + ], + "operating_systems": [ + "Unix-like operating system" + ] +} diff --git a/data/software/wo/workflowgen.json b/data/software/wo/workflowgen.json new file mode 100644 index 000000000000..443410ffced6 --- /dev/null +++ b/data/software/wo/workflowgen.json @@ -0,0 +1,9 @@ +{ + "slug": "workflowgen", + "name": "WorkflowGen", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25110510" + ], + "release_date": "2003-01-01" +} diff --git a/data/software/wo/workforce-kye.json b/data/software/wo/workforce-kye.json new file mode 100644 index 000000000000..703fd5b0e3e6 --- /dev/null +++ b/data/software/wo/workforce-kye.json @@ -0,0 +1,11 @@ +{ + "slug": "workforce-kye", + "name": "Workforce (KYE)", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138859545" + ], + "developers": [ + "Incode" + ] +} diff --git a/data/software/wo/workgroup-manager.json b/data/software/wo/workgroup-manager.json new file mode 100644 index 000000000000..30bb405c95a7 --- /dev/null +++ b/data/software/wo/workgroup-manager.json @@ -0,0 +1,11 @@ +{ + "slug": "workgroup-manager", + "name": "Workgroup Manager", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4020840" + ], + "developers": [ + "Apple Inc." + ] +} diff --git a/data/software/wo/working-model.json b/data/software/wo/working-model.json new file mode 100644 index 000000000000..7c3f9f9fa0fd --- /dev/null +++ b/data/software/wo/working-model.json @@ -0,0 +1,8 @@ +{ + "slug": "working-model", + "name": "Working Model", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8034938" + ] +} diff --git a/data/software/wo/workouts.json b/data/software/wo/workouts.json new file mode 100644 index 000000000000..a87814f080ce --- /dev/null +++ b/data/software/wo/workouts.json @@ -0,0 +1,8 @@ +{ + "slug": "workouts", + "name": "Workouts", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123058681" + ] +} diff --git a/data/software/wo/workplace-from-meta.json b/data/software/wo/workplace-from-meta.json new file mode 100644 index 000000000000..86ad42f58292 --- /dev/null +++ b/data/software/wo/workplace-from-meta.json @@ -0,0 +1,8 @@ +{ + "slug": "workplace-from-meta", + "name": "Workplace from Meta", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28135300" + ] +} diff --git a/data/software/wo/workplan.json b/data/software/wo/workplan.json new file mode 100644 index 000000000000..5de8058afb1a --- /dev/null +++ b/data/software/wo/workplan.json @@ -0,0 +1,17 @@ +{ + "slug": "workplan", + "name": "WorkPLAN", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q666032" + ], + "developers": [ + "Sescoi" + ], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [ + "Delphi" + ] +} diff --git a/data/software/wo/world-programming-system.json b/data/software/wo/world-programming-system.json new file mode 100644 index 000000000000..de5e4a8acc5e --- /dev/null +++ b/data/software/wo/world-programming-system.json @@ -0,0 +1,11 @@ +{ + "slug": "world-programming-system", + "name": "World Programming System", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2843737" + ], + "developers": [ + "World Programming" + ] +} diff --git a/data/software/wo/worldmap.json b/data/software/wo/worldmap.json new file mode 100644 index 000000000000..569b88d0a0ff --- /dev/null +++ b/data/software/wo/worldmap.json @@ -0,0 +1,8 @@ +{ + "slug": "worldmap", + "name": "WorldMap", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8035300" + ] +} diff --git a/data/software/wo/worlds-chat.json b/data/software/wo/worlds-chat.json new file mode 100644 index 000000000000..f5c793e5f080 --- /dev/null +++ b/data/software/wo/worlds-chat.json @@ -0,0 +1,8 @@ +{ + "slug": "worlds-chat", + "name": "Worlds chat", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8036737" + ] +} diff --git a/data/software/wo/worldsaway.json b/data/software/wo/worldsaway.json new file mode 100644 index 000000000000..ae5d54715666 --- /dev/null +++ b/data/software/wo/worldsaway.json @@ -0,0 +1,16 @@ +{ + "slug": "worldsaway", + "name": "WorldsAway", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8036711" + ], + "release_date": "1995-09-01", + "developers": [ + "Fujitsu" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/software/wo/worldscript.json b/data/software/wo/worldscript.json new file mode 100644 index 000000000000..ad22541bb554 --- /dev/null +++ b/data/software/wo/worldscript.json @@ -0,0 +1,8 @@ +{ + "slug": "worldscript", + "name": "WorldScript", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1115327" + ] +} diff --git a/data/software/wo/worldwide-boxing-manager.json b/data/software/wo/worldwide-boxing-manager.json new file mode 100644 index 000000000000..1ec921de959c --- /dev/null +++ b/data/software/wo/worldwide-boxing-manager.json @@ -0,0 +1,8 @@ +{ + "slug": "worldwide-boxing-manager", + "name": "Worldwide Boxing Manager", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140448147" + ] +} diff --git a/data/software/wo/worldwide-telescope.json b/data/software/wo/worldwide-telescope.json new file mode 100644 index 000000000000..54d3131d3b3a --- /dev/null +++ b/data/software/wo/worldwide-telescope.json @@ -0,0 +1,17 @@ +{ + "slug": "worldwide-telescope", + "name": "WorldWide Telescope", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1788938" + ], + "developers": [ + "Microsoft" + ], + "operating_systems": [ + "Microsoft Windows" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/wo/wot-services.json b/data/software/wo/wot-services.json new file mode 100644 index 000000000000..7526b36864ef --- /dev/null +++ b/data/software/wo/wot-services.json @@ -0,0 +1,8 @@ +{ + "slug": "wot-services", + "name": "WOT Services", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1391304" + ] +} diff --git a/data/software/wo/wound-care-simulation.json b/data/software/wo/wound-care-simulation.json new file mode 100644 index 000000000000..b2c351a1b0dc --- /dev/null +++ b/data/software/wo/wound-care-simulation.json @@ -0,0 +1,8 @@ +{ + "slug": "wound-care-simulation", + "name": "Wound Care Simulation", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115343108" + ] +} diff --git a/data/software/wo/wow64.json b/data/software/wo/wow64.json new file mode 100644 index 000000000000..7a51afcfe2f1 --- /dev/null +++ b/data/software/wo/wow64.json @@ -0,0 +1,8 @@ +{ + "slug": "wow64", + "name": "WoW64", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q431013" + ] +} diff --git a/data/software/wo/wowza-streaming-engine.json b/data/software/wo/wowza-streaming-engine.json new file mode 100644 index 000000000000..e6d752e3997b --- /dev/null +++ b/data/software/wo/wowza-streaming-engine.json @@ -0,0 +1,8 @@ +{ + "slug": "wowza-streaming-engine", + "name": "Wowza Streaming Engine", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4053257" + ] +} diff --git a/data/software/wp/wp-engine.json b/data/software/wp/wp-engine.json new file mode 100644 index 000000000000..1224e523ded2 --- /dev/null +++ b/data/software/wp/wp-engine.json @@ -0,0 +1,8 @@ +{ + "slug": "wp-engine", + "name": "WP Engine", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q19903819" + ] +} diff --git a/data/software/wp/wpforms.json b/data/software/wp/wpforms.json new file mode 100644 index 000000000000..330542b75155 --- /dev/null +++ b/data/software/wp/wpforms.json @@ -0,0 +1,8 @@ +{ + "slug": "wpforms", + "name": "WPForms", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113046196" + ] +} diff --git a/data/software/wp/wprime.json b/data/software/wp/wprime.json new file mode 100644 index 000000000000..97d5cbf853f9 --- /dev/null +++ b/data/software/wp/wprime.json @@ -0,0 +1,8 @@ +{ + "slug": "wprime", + "name": "WPrime", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25345913" + ] +} diff --git a/data/software/wp/wps-word-processor.json b/data/software/wp/wps-word-processor.json new file mode 100644 index 000000000000..8a30aca70b3b --- /dev/null +++ b/data/software/wp/wps-word-processor.json @@ -0,0 +1,11 @@ +{ + "slug": "wps-word-processor", + "name": "WPS Word Processor", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q19854637" + ], + "programming_languages": [ + "assembly language" + ] +} diff --git a/data/software/wp/wput.json b/data/software/wp/wput.json new file mode 100644 index 000000000000..6ab0bd8e8da5 --- /dev/null +++ b/data/software/wp/wput.json @@ -0,0 +1,8 @@ +{ + "slug": "wput", + "name": "wput", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110473722" + ] +} diff --git a/data/software/wr/wrangler.json b/data/software/wr/wrangler.json new file mode 100644 index 000000000000..b8d8ebe00ba4 --- /dev/null +++ b/data/software/wr/wrangler.json @@ -0,0 +1,18 @@ +{ + "slug": "wrangler", + "name": "Wrangler", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118225561" + ], + "developers": [ + "Cloudflare" + ], + "programming_languages": [ + "TypeScript" + ], + "licenses": [ + "Apache Software License 2.0", + "MIT License" + ] +} diff --git a/data/software/wr/write.json b/data/software/wr/write.json new file mode 100644 index 000000000000..db0b38ee2a34 --- /dev/null +++ b/data/software/wr/write.json @@ -0,0 +1,8 @@ +{ + "slug": "write", + "name": "Write!", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q55263587" + ] +} diff --git a/data/software/wr/writeboard.json b/data/software/wr/writeboard.json new file mode 100644 index 000000000000..0921faef7ec1 --- /dev/null +++ b/data/software/wr/writeboard.json @@ -0,0 +1,8 @@ +{ + "slug": "writeboard", + "name": "Writeboard", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084772" + ] +} diff --git a/data/software/wr/writefull.json b/data/software/wr/writefull.json new file mode 100644 index 000000000000..5bda96d3a74a --- /dev/null +++ b/data/software/wr/writefull.json @@ -0,0 +1,8 @@ +{ + "slug": "writefull", + "name": "Writefull", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q59771338" + ] +} diff --git a/data/software/wr/writeonline.json b/data/software/wr/writeonline.json new file mode 100644 index 000000000000..556766d3a57f --- /dev/null +++ b/data/software/wr/writeonline.json @@ -0,0 +1,15 @@ +{ + "slug": "writeonline", + "name": "WriteOnline", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8038393" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [ + "Java" + ] +} diff --git a/data/software/wr/writeroom.json b/data/software/wr/writeroom.json new file mode 100644 index 000000000000..8e70a9f3cee9 --- /dev/null +++ b/data/software/wr/writeroom.json @@ -0,0 +1,8 @@ +{ + "slug": "writeroom", + "name": "WriteRoom", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084773" + ] +} diff --git a/data/software/wr/wrpn-calculator.json b/data/software/wr/wrpn-calculator.json new file mode 100644 index 000000000000..d100b3a6df12 --- /dev/null +++ b/data/software/wr/wrpn-calculator.json @@ -0,0 +1,8 @@ +{ + "slug": "wrpn-calculator", + "name": "WRPN Calculator", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130249890" + ] +} diff --git a/data/software/wr/wry.json b/data/software/wr/wry.json new file mode 100644 index 000000000000..83ec7676d0bd --- /dev/null +++ b/data/software/wr/wry.json @@ -0,0 +1,12 @@ +{ + "slug": "wry", + "name": "wry", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120122277" + ], + "licenses": [ + "Apache Software License 2.0", + "MIT License" + ] +} diff --git a/data/software/ws/ws4py.json b/data/software/ws/ws4py.json new file mode 100644 index 000000000000..0eb86cd59554 --- /dev/null +++ b/data/software/ws/ws4py.json @@ -0,0 +1,11 @@ +{ + "slug": "ws4py", + "name": "ws4py", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975570" + ], + "licenses": [ + "3-clause BSD License" + ] +} diff --git a/data/software/ws/wstool.json b/data/software/ws/wstool.json new file mode 100644 index 000000000000..27bfc16730b1 --- /dev/null +++ b/data/software/ws/wstool.json @@ -0,0 +1,8 @@ +{ + "slug": "wstool", + "name": "wstool", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975571" + ] +} diff --git a/data/software/ws/wsus-offline-update.json b/data/software/ws/wsus-offline-update.json new file mode 100644 index 000000000000..0f59684bfe36 --- /dev/null +++ b/data/software/ws/wsus-offline-update.json @@ -0,0 +1,8 @@ +{ + "slug": "wsus-offline-update", + "name": "WSUS Offline Update", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18413767" + ] +} diff --git a/data/software/wt/wterm.json b/data/software/wt/wterm.json new file mode 100644 index 000000000000..e8383dd4e8d9 --- /dev/null +++ b/data/software/wt/wterm.json @@ -0,0 +1,8 @@ +{ + "slug": "wterm", + "name": "Wterm", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8038848" + ] +} diff --git a/data/software/wt/wtp-ejb-tools.json b/data/software/wt/wtp-ejb-tools.json new file mode 100644 index 000000000000..21d073f4f2f7 --- /dev/null +++ b/data/software/wt/wtp-ejb-tools.json @@ -0,0 +1,8 @@ +{ + "slug": "wtp-ejb-tools", + "name": "WTP EJB Tools", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76178591" + ] +} diff --git a/data/software/wt/wtp-incubator.json b/data/software/wt/wtp-incubator.json new file mode 100644 index 000000000000..888743cef083 --- /dev/null +++ b/data/software/wt/wtp-incubator.json @@ -0,0 +1,8 @@ +{ + "slug": "wtp-incubator", + "name": "WTP Incubator", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76178978" + ] +} diff --git a/data/software/wt/wtp-java-ee-tools.json b/data/software/wt/wtp-java-ee-tools.json new file mode 100644 index 000000000000..27e442d5ce5f --- /dev/null +++ b/data/software/wt/wtp-java-ee-tools.json @@ -0,0 +1,8 @@ +{ + "slug": "wtp-java-ee-tools", + "name": "WTP Java EE Tools", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76178993" + ] +} diff --git a/data/software/wt/wtw.json b/data/software/wt/wtw.json new file mode 100644 index 000000000000..0b0263505e9e --- /dev/null +++ b/data/software/wt/wtw.json @@ -0,0 +1,11 @@ +{ + "slug": "wtw", + "name": "WTW", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q9369434" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/wu/wu-dao.json b/data/software/wu/wu-dao.json new file mode 100644 index 000000000000..7d0a5f9dd34e --- /dev/null +++ b/data/software/wu/wu-dao.json @@ -0,0 +1,11 @@ +{ + "slug": "wu-dao", + "name": "Wu Dao", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108570419" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/wu/wufoo.json b/data/software/wu/wufoo.json new file mode 100644 index 000000000000..e8704578ae69 --- /dev/null +++ b/data/software/wu/wufoo.json @@ -0,0 +1,8 @@ +{ + "slug": "wufoo", + "name": "Wufoo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084774" + ] +} diff --git a/data/software/wu/wuhu.json b/data/software/wu/wuhu.json new file mode 100644 index 000000000000..c916640b057d --- /dev/null +++ b/data/software/wu/wuhu.json @@ -0,0 +1,11 @@ +{ + "slug": "wuhu", + "name": "WUHU", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7956596" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/ww/wwiv.json b/data/software/ww/wwiv.json new file mode 100644 index 000000000000..7a9821c20c99 --- /dev/null +++ b/data/software/ww/wwiv.json @@ -0,0 +1,14 @@ +{ + "slug": "wwiv", + "name": "WWIV", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7957315" + ], + "developers": [ + "Wayne Bell" + ], + "licenses": [ + "Apache Software License 2.0" + ] +} diff --git a/data/software/wx/wxp.json b/data/software/wx/wxp.json new file mode 100644 index 000000000000..1ef226a55a29 --- /dev/null +++ b/data/software/wx/wxp.json @@ -0,0 +1,8 @@ +{ + "slug": "wxp", + "name": "WXP", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7957822" + ] +} diff --git a/data/software/wy/wyberai.json b/data/software/wy/wyberai.json new file mode 100644 index 000000000000..4db13e886417 --- /dev/null +++ b/data/software/wy/wyberai.json @@ -0,0 +1,8 @@ +{ + "slug": "wyberai", + "name": "WyberAi", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140449765" + ] +} diff --git a/data/software/wy/wyldfire.json b/data/software/wy/wyldfire.json new file mode 100644 index 000000000000..96e17eb253d2 --- /dev/null +++ b/data/software/wy/wyldfire.json @@ -0,0 +1,11 @@ +{ + "slug": "wyldfire", + "name": "Wyldfire", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q21233705" + ], + "operating_systems": [ + "iOS" + ] +} diff --git a/data/software/wy/wysiwym.json b/data/software/wy/wysiwym.json new file mode 100644 index 000000000000..bf0930051902 --- /dev/null +++ b/data/software/wy/wysiwym.json @@ -0,0 +1,8 @@ +{ + "slug": "wysiwym", + "name": "WYSIWYM", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17090734" + ] +} diff --git a/data/software/wy/wyzo.json b/data/software/wy/wyzo.json new file mode 100644 index 000000000000..ee0818d1cce8 --- /dev/null +++ b/data/software/wy/wyzo.json @@ -0,0 +1,8 @@ +{ + "slug": "wyzo", + "name": "Wyzo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4118455" + ] +} diff --git a/data/software/x-/x-12-arima.json b/data/software/x-/x-12-arima.json new file mode 100644 index 000000000000..bbfed9a7d484 --- /dev/null +++ b/data/software/x-/x-12-arima.json @@ -0,0 +1,11 @@ +{ + "slug": "x-12-arima", + "name": "X-12-ARIMA", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q640173" + ], + "developers": [ + "United States Census Bureau" + ] +} diff --git a/data/software/x-/x-chat-aqua.json b/data/software/x-/x-chat-aqua.json new file mode 100644 index 000000000000..0dceb0b6d265 --- /dev/null +++ b/data/software/x-/x-chat-aqua.json @@ -0,0 +1,8 @@ +{ + "slug": "x-chat-aqua", + "name": "X-Chat Aqua", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4021181" + ] +} diff --git a/data/software/x-/x-display-manager.json b/data/software/x-/x-display-manager.json new file mode 100644 index 000000000000..ba9f022f7c0b --- /dev/null +++ b/data/software/x-/x-display-manager.json @@ -0,0 +1,8 @@ +{ + "slug": "x-display-manager", + "name": "X display manager", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q653475" + ] +} diff --git a/data/software/x-/x-keyboard-extension.json b/data/software/x-/x-keyboard-extension.json new file mode 100644 index 000000000000..1f67e4c6eb89 --- /dev/null +++ b/data/software/x-/x-keyboard-extension.json @@ -0,0 +1,11 @@ +{ + "slug": "x-keyboard-extension", + "name": "X keyboard extension", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8042783" + ], + "developers": [ + "X.Org Foundation" + ] +} diff --git a/data/software/x-/x-lite.json b/data/software/x-/x-lite.json new file mode 100644 index 000000000000..33ea47c5e4ac --- /dev/null +++ b/data/software/x-/x-lite.json @@ -0,0 +1,8 @@ +{ + "slug": "x-lite", + "name": "X-Lite", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q71667" + ] +} diff --git a/data/software/x-/x-notifier.json b/data/software/x-/x-notifier.json new file mode 100644 index 000000000000..f5680e1d079e --- /dev/null +++ b/data/software/x-/x-notifier.json @@ -0,0 +1,8 @@ +{ + "slug": "x-notifier", + "name": "X-notifier", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2972219" + ] +} diff --git a/data/software/x-/x-plor.json b/data/software/x-/x-plor.json new file mode 100644 index 000000000000..d2446f9d61d2 --- /dev/null +++ b/data/software/x-/x-plor.json @@ -0,0 +1,11 @@ +{ + "slug": "x-plor", + "name": "X-PLOR", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8041495" + ], + "developers": [ + "Axel T. Brunger" + ] +} diff --git a/data/software/x-/x-ray.json b/data/software/x-/x-ray.json new file mode 100644 index 000000000000..86547f5d9c1a --- /dev/null +++ b/data/software/x-/x-ray.json @@ -0,0 +1,8 @@ +{ + "slug": "x-ray", + "name": "X-Ray", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17067250" + ] +} diff --git a/data/software/x-/x-rendering-extension.json b/data/software/x-/x-rendering-extension.json new file mode 100644 index 000000000000..123a7a94c425 --- /dev/null +++ b/data/software/x-/x-rendering-extension.json @@ -0,0 +1,11 @@ +{ + "slug": "x-rendering-extension", + "name": "X Rendering Extension", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1982555" + ], + "developers": [ + "X.Org Foundation" + ] +} diff --git a/data/software/x-/x-road.json b/data/software/x-/x-road.json new file mode 100644 index 000000000000..fb6962b42008 --- /dev/null +++ b/data/software/x-/x-road.json @@ -0,0 +1,18 @@ +{ + "slug": "x-road", + "name": "X-Road", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q12379285" + ], + "release_date": "2001-01-01", + "developers": [ + "Nordic Institute for Interoperability Solutions" + ], + "programming_languages": [ + "Java" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/x-/x-session-manager.json b/data/software/x-/x-session-manager.json new file mode 100644 index 000000000000..4cdb15ae471d --- /dev/null +++ b/data/software/x-/x-session-manager.json @@ -0,0 +1,8 @@ +{ + "slug": "x-session-manager", + "name": "X session manager", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8042789" + ] +} diff --git a/data/software/x-/x-video-extension.json b/data/software/x-/x-video-extension.json new file mode 100644 index 000000000000..b15fdbce6009 --- /dev/null +++ b/data/software/x-/x-video-extension.json @@ -0,0 +1,11 @@ +{ + "slug": "x-video-extension", + "name": "X video extension", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4390685" + ], + "developers": [ + "X.Org Foundation" + ] +} diff --git a/data/software/x1/x11-calc.json b/data/software/x1/x11-calc.json new file mode 100644 index 000000000000..d608bb368df0 --- /dev/null +++ b/data/software/x1/x11-calc.json @@ -0,0 +1,11 @@ +{ + "slug": "x11-calc", + "name": "x11-calc", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130251832" + ], + "licenses": [ + "GNU General Public License, version 3.0" + ] +} diff --git a/data/software/x6/x64dbg.json b/data/software/x6/x64dbg.json new file mode 100644 index 000000000000..1f94c235ce82 --- /dev/null +++ b/data/software/x6/x64dbg.json @@ -0,0 +1,8 @@ +{ + "slug": "x64dbg", + "name": "X64dbg", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q129567481" + ] +} diff --git a/data/software/x8/x86inc-asm.json b/data/software/x8/x86inc-asm.json new file mode 100644 index 000000000000..c3ae8bacdf9b --- /dev/null +++ b/data/software/x8/x86inc-asm.json @@ -0,0 +1,15 @@ +{ + "slug": "x86inc-asm", + "name": "x86inc.asm", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117825350" + ], + "release_date": "2005-01-01", + "programming_languages": [ + "x86 assembly language" + ], + "licenses": [ + "ISC license" + ] +} diff --git a/data/software/xa/xaitment.json b/data/software/xa/xaitment.json new file mode 100644 index 000000000000..07ff18380297 --- /dev/null +++ b/data/software/xa/xaitment.json @@ -0,0 +1,8 @@ +{ + "slug": "xaitment", + "name": "xaitment", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8042840" + ] +} diff --git a/data/software/xa/xamlpad.json b/data/software/xa/xamlpad.json new file mode 100644 index 000000000000..0dfe08f87b58 --- /dev/null +++ b/data/software/xa/xamlpad.json @@ -0,0 +1,8 @@ +{ + "slug": "xamlpad", + "name": "XAMLPad", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8041680" + ] +} diff --git a/data/software/xa/xananews.json b/data/software/xa/xananews.json new file mode 100644 index 000000000000..a79bf698bf6b --- /dev/null +++ b/data/software/xa/xananews.json @@ -0,0 +1,17 @@ +{ + "slug": "xananews", + "name": "XanaNews", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q9383200" + ], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [ + "Delphi" + ], + "licenses": [ + "Mozilla Public License, version 1.1" + ] +} diff --git a/data/software/xa/xapps.json b/data/software/xa/xapps.json new file mode 100644 index 000000000000..b28244149e03 --- /dev/null +++ b/data/software/xa/xapps.json @@ -0,0 +1,8 @@ +{ + "slug": "xapps", + "name": "xApps", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8041684" + ] +} diff --git a/data/software/xb/xbmc-addon-xvdr.json b/data/software/xb/xbmc-addon-xvdr.json new file mode 100644 index 000000000000..bd2b6c2401be --- /dev/null +++ b/data/software/xb/xbmc-addon-xvdr.json @@ -0,0 +1,8 @@ +{ + "slug": "xbmc-addon-xvdr", + "name": "xbmc-addon-xvdr", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975572" + ] +} diff --git a/data/software/xb/xbox-app.json b/data/software/xb/xbox-app.json new file mode 100644 index 000000000000..d3eb23fd08ff --- /dev/null +++ b/data/software/xb/xbox-app.json @@ -0,0 +1,20 @@ +{ + "slug": "xbox-app", + "name": "Xbox App", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q736181" + ], + "release_date": "2015-07-29", + "developers": [ + "Microsoft" + ], + "operating_systems": [ + "Windows Phone", + "iOS", + "Microsoft Windows" + ], + "genres": [ + "screencasting software" + ] +} diff --git a/data/software/xb/xbox-media-player.json b/data/software/xb/xbox-media-player.json new file mode 100644 index 000000000000..75a151030698 --- /dev/null +++ b/data/software/xb/xbox-media-player.json @@ -0,0 +1,8 @@ +{ + "slug": "xbox-media-player", + "name": "Xbox Media Player", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4021756" + ] +} diff --git a/data/software/xb/xbrl-gl.json b/data/software/xb/xbrl-gl.json new file mode 100644 index 000000000000..396bb83b21cf --- /dev/null +++ b/data/software/xb/xbrl-gl.json @@ -0,0 +1,8 @@ +{ + "slug": "xbrl-gl", + "name": "XBRL GL", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8041693" + ] +} diff --git a/data/software/xc/xcalibur.json b/data/software/xc/xcalibur.json new file mode 100644 index 000000000000..6b5738da5d87 --- /dev/null +++ b/data/software/xc/xcalibur.json @@ -0,0 +1,11 @@ +{ + "slug": "xcalibur", + "name": "Xcalibur", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121010272" + ], + "publishers": [ + "Thermo Fisher Scientific Inc." + ] +} diff --git a/data/software/xc/xcarat.json b/data/software/xc/xcarat.json new file mode 100644 index 000000000000..ff5a101f8419 --- /dev/null +++ b/data/software/xc/xcarat.json @@ -0,0 +1,8 @@ +{ + "slug": "xcarat", + "name": "XCARAT", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123966048" + ] +} diff --git a/data/software/xc/xcb-util-image.json b/data/software/xc/xcb-util-image.json new file mode 100644 index 000000000000..b261907ba0a8 --- /dev/null +++ b/data/software/xc/xcb-util-image.json @@ -0,0 +1,8 @@ +{ + "slug": "xcb-util-image", + "name": "xcb-util-image", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975576" + ] +} diff --git a/data/software/xc/xcb-util-keysyms.json b/data/software/xc/xcb-util-keysyms.json new file mode 100644 index 000000000000..984abd50dc57 --- /dev/null +++ b/data/software/xc/xcb-util-keysyms.json @@ -0,0 +1,8 @@ +{ + "slug": "xcb-util-keysyms", + "name": "xcb-util-keysyms", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975577" + ] +} diff --git a/data/software/xc/xcb-util-renderutil.json b/data/software/xc/xcb-util-renderutil.json new file mode 100644 index 000000000000..a0723cee1dda --- /dev/null +++ b/data/software/xc/xcb-util-renderutil.json @@ -0,0 +1,8 @@ +{ + "slug": "xcb-util-renderutil", + "name": "xcb-util-renderutil", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975578" + ] +} diff --git a/data/software/xc/xcb-util-wm.json b/data/software/xc/xcb-util-wm.json new file mode 100644 index 000000000000..167d9b4c20bc --- /dev/null +++ b/data/software/xc/xcb-util-wm.json @@ -0,0 +1,8 @@ +{ + "slug": "xcb-util-wm", + "name": "xcb-util-wm", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975579" + ] +} diff --git a/data/software/xc/xcb-util.json b/data/software/xc/xcb-util.json new file mode 100644 index 000000000000..ae4f9c5e7654 --- /dev/null +++ b/data/software/xc/xcb-util.json @@ -0,0 +1,8 @@ +{ + "slug": "xcb-util", + "name": "xcb-util", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975574" + ] +} diff --git a/data/software/xc/xcbl.json b/data/software/xc/xcbl.json new file mode 100644 index 000000000000..e194859ee45e --- /dev/null +++ b/data/software/xc/xcbl.json @@ -0,0 +1,8 @@ +{ + "slug": "xcbl", + "name": "xCBL", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1230989" + ] +} diff --git a/data/software/xc/xcms-online.json b/data/software/xc/xcms-online.json new file mode 100644 index 000000000000..fadc3c453842 --- /dev/null +++ b/data/software/xc/xcms-online.json @@ -0,0 +1,8 @@ +{ + "slug": "xcms-online", + "name": "XCMS Online", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q65051863" + ] +} diff --git a/data/software/xc/xcopy-deployment.json b/data/software/xc/xcopy-deployment.json new file mode 100644 index 000000000000..077a2a21bac1 --- /dev/null +++ b/data/software/xc/xcopy-deployment.json @@ -0,0 +1,8 @@ +{ + "slug": "xcopy-deployment", + "name": "XCOPY deployment", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8041714" + ] +} diff --git a/data/software/xd/xdbedizzy.json b/data/software/xd/xdbedizzy.json new file mode 100644 index 000000000000..f09cd39949a5 --- /dev/null +++ b/data/software/xd/xdbedizzy.json @@ -0,0 +1,8 @@ +{ + "slug": "xdbedizzy", + "name": "xdbedizzy", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60918721" + ] +} diff --git a/data/software/xd/xdmx.json b/data/software/xd/xdmx.json new file mode 100644 index 000000000000..827b408de15b --- /dev/null +++ b/data/software/xd/xdmx.json @@ -0,0 +1,8 @@ +{ + "slug": "xdmx", + "name": "Xdmx", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8043402" + ] +} diff --git a/data/software/xd/xdvik.json b/data/software/xd/xdvik.json new file mode 100644 index 000000000000..c11e69436175 --- /dev/null +++ b/data/software/xd/xdvik.json @@ -0,0 +1,8 @@ +{ + "slug": "xdvik", + "name": "xdvik", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11254859" + ] +} diff --git a/data/software/xe/xeditor.json b/data/software/xe/xeditor.json new file mode 100644 index 000000000000..0a296ad30a29 --- /dev/null +++ b/data/software/xe/xeditor.json @@ -0,0 +1,8 @@ +{ + "slug": "xeditor", + "name": "Xeditor", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22909839" + ] +} diff --git a/data/software/xe/xemu.json b/data/software/xe/xemu.json new file mode 100644 index 000000000000..e3ceb8475503 --- /dev/null +++ b/data/software/xe/xemu.json @@ -0,0 +1,14 @@ +{ + "slug": "xemu", + "name": "Xemu", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q114773623" + ], + "developers": [ + "Matt Borgerson" + ], + "licenses": [ + "GNU General Public License, version 2.0 or later" + ] +} diff --git a/data/software/xe/xen-cloud-platform.json b/data/software/xe/xen-cloud-platform.json new file mode 100644 index 000000000000..b983f1792c7f --- /dev/null +++ b/data/software/xe/xen-cloud-platform.json @@ -0,0 +1,8 @@ +{ + "slug": "xen-cloud-platform", + "name": "Xen Cloud Platform", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q12073012" + ] +} diff --git a/data/software/xe/xen-tools.json b/data/software/xe/xen-tools.json new file mode 100644 index 000000000000..f97c83c491d5 --- /dev/null +++ b/data/software/xe/xen-tools.json @@ -0,0 +1,8 @@ +{ + "slug": "xen-tools", + "name": "xen-tools", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975581" + ] +} diff --git a/data/software/xe/xenclient.json b/data/software/xe/xenclient.json new file mode 100644 index 000000000000..c976140324fc --- /dev/null +++ b/data/software/xe/xenclient.json @@ -0,0 +1,8 @@ +{ + "slug": "xenclient", + "name": "XenClient", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8043436" + ] +} diff --git a/data/software/xe/xender.json b/data/software/xe/xender.json new file mode 100644 index 000000000000..6f57b425a16d --- /dev/null +++ b/data/software/xe/xender.json @@ -0,0 +1,8 @@ +{ + "slug": "xender", + "name": "Xender", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q19362067" + ] +} diff --git a/data/software/xe/xendesktop.json b/data/software/xe/xendesktop.json new file mode 100644 index 000000000000..5556c22f648b --- /dev/null +++ b/data/software/xe/xendesktop.json @@ -0,0 +1,11 @@ +{ + "slug": "xendesktop", + "name": "XenDesktop", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25245349" + ], + "developers": [ + "Citrix Systems" + ] +} diff --git a/data/software/xe/xenomai.json b/data/software/xe/xenomai.json new file mode 100644 index 000000000000..fc0b5de6fb0c --- /dev/null +++ b/data/software/xe/xenomai.json @@ -0,0 +1,8 @@ +{ + "slug": "xenomai", + "name": "Xenomai", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2496071" + ] +} diff --git a/data/software/xe/xenon.json b/data/software/xe/xenon.json new file mode 100644 index 000000000000..84e01f587d5a --- /dev/null +++ b/data/software/xe/xenon.json @@ -0,0 +1,8 @@ +{ + "slug": "xenon", + "name": "Xenon", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8043629" + ] +} diff --git a/data/software/xe/xeokit.json b/data/software/xe/xeokit.json new file mode 100644 index 000000000000..c1f450630fc5 --- /dev/null +++ b/data/software/xe/xeokit.json @@ -0,0 +1,8 @@ +{ + "slug": "xeokit", + "name": "Xeokit", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135116790" + ] +} diff --git a/data/software/xe/xep.json b/data/software/xe/xep.json new file mode 100644 index 000000000000..48f767936fb2 --- /dev/null +++ b/data/software/xe/xep.json @@ -0,0 +1,11 @@ +{ + "slug": "xep", + "name": "XEP", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8041858" + ], + "developers": [ + "RenderX" + ] +} diff --git a/data/software/xe/xephem.json b/data/software/xe/xephem.json new file mode 100644 index 000000000000..c4dac0780da5 --- /dev/null +++ b/data/software/xe/xephem.json @@ -0,0 +1,15 @@ +{ + "slug": "xephem", + "name": "XEphem", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2597434" + ], + "operating_systems": [ + "Unix-like operating system", + "macOS" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/xe/xero.json b/data/software/xe/xero.json new file mode 100644 index 000000000000..8e8f23ef3fca --- /dev/null +++ b/data/software/xe/xero.json @@ -0,0 +1,11 @@ +{ + "slug": "xero", + "name": "Xero", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139486697" + ], + "developers": [ + "Xero Limited" + ] +} diff --git a/data/software/xe/xerox-linguistic-environment.json b/data/software/xe/xerox-linguistic-environment.json new file mode 100644 index 000000000000..a24579299f67 --- /dev/null +++ b/data/software/xe/xerox-linguistic-environment.json @@ -0,0 +1,8 @@ +{ + "slug": "xerox-linguistic-environment", + "name": "Xerox Linguistic Environment", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139710509" + ] +} diff --git a/data/software/xe/xerox-parc-map-viewer.json b/data/software/xe/xerox-parc-map-viewer.json new file mode 100644 index 000000000000..a826ef50eff2 --- /dev/null +++ b/data/software/xe/xerox-parc-map-viewer.json @@ -0,0 +1,8 @@ +{ + "slug": "xerox-parc-map-viewer", + "name": "Xerox PARC Map Viewer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8043903" + ] +} diff --git a/data/software/xe/xerver.json b/data/software/xe/xerver.json new file mode 100644 index 000000000000..28cad81e09e9 --- /dev/null +++ b/data/software/xe/xerver.json @@ -0,0 +1,14 @@ +{ + "slug": "xerver", + "name": "Xerver", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10722474" + ], + "programming_languages": [ + "Java" + ], + "licenses": [ + "free software license" + ] +} diff --git a/data/software/xf/xf86-input-wacom.json b/data/software/xf/xf86-input-wacom.json new file mode 100644 index 000000000000..afd822b22c82 --- /dev/null +++ b/data/software/xf/xf86-input-wacom.json @@ -0,0 +1,8 @@ +{ + "slug": "xf86-input-wacom", + "name": "xf86-input-wacom", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975582" + ] +} diff --git a/data/software/xf/xf86-video-xgi.json b/data/software/xf/xf86-video-xgi.json new file mode 100644 index 000000000000..400123b3842b --- /dev/null +++ b/data/software/xf/xf86-video-xgi.json @@ -0,0 +1,8 @@ +{ + "slug": "xf86-video-xgi", + "name": "xf86-video-xgi", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16356667" + ] +} diff --git a/data/software/xf/xfce4-radio-plugin.json b/data/software/xf/xfce4-radio-plugin.json new file mode 100644 index 000000000000..01d828bed2a8 --- /dev/null +++ b/data/software/xf/xfce4-radio-plugin.json @@ -0,0 +1,11 @@ +{ + "slug": "xfce4-radio-plugin", + "name": "xfce4-radio-plugin", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106102084" + ], + "operating_systems": [ + "Unix-like operating system" + ] +} diff --git a/data/software/xh/xhronos.json b/data/software/xh/xhronos.json new file mode 100644 index 000000000000..633798872240 --- /dev/null +++ b/data/software/xh/xhronos.json @@ -0,0 +1,11 @@ +{ + "slug": "xhronos", + "name": "XHRONOS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139824504" + ], + "programming_languages": [ + "Solidity" + ] +} diff --git a/data/software/xi/xilinx-ise.json b/data/software/xi/xilinx-ise.json new file mode 100644 index 000000000000..b1ebdbf6d9ad --- /dev/null +++ b/data/software/xi/xilinx-ise.json @@ -0,0 +1,19 @@ +{ + "slug": "xilinx-ise", + "name": "Xilinx ISE", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8044441" + ], + "developers": [ + "Xilinx" + ], + "operating_systems": [ + "SUSE Linux Enterprise Desktop", + "FreeBSD", + "Microsoft Windows" + ], + "licenses": [ + "shareware" + ] +} diff --git a/data/software/xi/xilinx-vivado.json b/data/software/xi/xilinx-vivado.json new file mode 100644 index 000000000000..b397ea6f01f7 --- /dev/null +++ b/data/software/xi/xilinx-vivado.json @@ -0,0 +1,12 @@ +{ + "slug": "xilinx-vivado", + "name": "Xilinx Vivado", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25220741" + ], + "release_date": "2012-04-01", + "developers": [ + "Xilinx" + ] +} diff --git a/data/software/xi/xinhua-sogou-ai-news-anchor.json b/data/software/xi/xinhua-sogou-ai-news-anchor.json new file mode 100644 index 000000000000..a3d09280dbc2 --- /dev/null +++ b/data/software/xi/xinhua-sogou-ai-news-anchor.json @@ -0,0 +1,8 @@ +{ + "slug": "xinhua-sogou-ai-news-anchor", + "name": "Xinhua–Sogou AI news anchor", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123038237" + ] +} diff --git a/data/software/xi/xios.json b/data/software/xi/xios.json new file mode 100644 index 000000000000..dd6e450217bb --- /dev/null +++ b/data/software/xi/xios.json @@ -0,0 +1,11 @@ +{ + "slug": "xios", + "name": "XIOS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117832806" + ], + "developers": [ + "Yann Meurdesoif" + ] +} diff --git a/data/software/xi/xiph-quicktime-components.json b/data/software/xi/xiph-quicktime-components.json new file mode 100644 index 000000000000..ae00085f6cf1 --- /dev/null +++ b/data/software/xi/xiph-quicktime-components.json @@ -0,0 +1,11 @@ +{ + "slug": "xiph-quicktime-components", + "name": "Xiph QuickTime Components", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q621937" + ], + "developers": [ + "Xiph.Org Foundation" + ] +} diff --git a/data/software/xi/xircon.json b/data/software/xi/xircon.json new file mode 100644 index 000000000000..feef65e5f2ce --- /dev/null +++ b/data/software/xi/xircon.json @@ -0,0 +1,8 @@ +{ + "slug": "xircon", + "name": "XiRCON", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107675855" + ] +} diff --git a/data/software/xl/xlfit.json b/data/software/xl/xlfit.json new file mode 100644 index 000000000000..29427890e489 --- /dev/null +++ b/data/software/xl/xlfit.json @@ -0,0 +1,8 @@ +{ + "slug": "xlfit", + "name": "XLfit", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8042281" + ] +} diff --git a/data/software/xl/xlink-kai.json b/data/software/xl/xlink-kai.json new file mode 100644 index 000000000000..4e69d3d52f8e --- /dev/null +++ b/data/software/xl/xlink-kai.json @@ -0,0 +1,8 @@ +{ + "slug": "xlink-kai", + "name": "XLink Kai", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1785929" + ] +} diff --git a/data/software/xl/xlispstat.json b/data/software/xl/xlispstat.json new file mode 100644 index 000000000000..10007747de4b --- /dev/null +++ b/data/software/xl/xlispstat.json @@ -0,0 +1,11 @@ +{ + "slug": "xlispstat", + "name": "XLispStat", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3570412" + ], + "programming_languages": [ + "XLISP" + ] +} diff --git a/data/software/xl/xlogmaster.json b/data/software/xl/xlogmaster.json new file mode 100644 index 000000000000..32b5c848e840 --- /dev/null +++ b/data/software/xl/xlogmaster.json @@ -0,0 +1,8 @@ +{ + "slug": "xlogmaster", + "name": "Xlogmaster", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76184528" + ] +} diff --git a/data/software/xl/xlsfonts.json b/data/software/xl/xlsfonts.json new file mode 100644 index 000000000000..a87118345261 --- /dev/null +++ b/data/software/xl/xlsfonts.json @@ -0,0 +1,8 @@ +{ + "slug": "xlsfonts", + "name": "xlsfonts", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065069" + ] +} diff --git a/data/software/xm/xmedcon.json b/data/software/xm/xmedcon.json new file mode 100644 index 000000000000..0251d4fe4b8a --- /dev/null +++ b/data/software/xm/xmedcon.json @@ -0,0 +1,8 @@ +{ + "slug": "xmedcon", + "name": "xmedcon", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131574543" + ] +} diff --git a/data/software/xm/xml-professional-publisher.json b/data/software/xm/xml-professional-publisher.json new file mode 100644 index 000000000000..4bebb6f015bf --- /dev/null +++ b/data/software/xm/xml-professional-publisher.json @@ -0,0 +1,8 @@ +{ + "slug": "xml-professional-publisher", + "name": "XML Professional Publisher", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2597549" + ] +} diff --git a/data/software/xm/xml-to-teilex0.json b/data/software/xm/xml-to-teilex0.json new file mode 100644 index 000000000000..d8a6392b1618 --- /dev/null +++ b/data/software/xm/xml-to-teilex0.json @@ -0,0 +1,8 @@ +{ + "slug": "xml-to-teilex0", + "name": "XML to TEILex0", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084775" + ] +} diff --git a/data/software/xm/xml2doc.json b/data/software/xm/xml2doc.json new file mode 100644 index 000000000000..b364c341f30e --- /dev/null +++ b/data/software/xm/xml2doc.json @@ -0,0 +1,8 @@ +{ + "slug": "xml2doc", + "name": "xml2doc", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065102" + ] +} diff --git a/data/software/xm/xmlstarlet.json b/data/software/xm/xmlstarlet.json new file mode 100644 index 000000000000..d3f02cbcd919 --- /dev/null +++ b/data/software/xm/xmlstarlet.json @@ -0,0 +1,11 @@ +{ + "slug": "xmlstarlet", + "name": "XMLStarlet", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1289755" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/xm/xmod.json b/data/software/xm/xmod.json new file mode 100644 index 000000000000..848522e9c03b --- /dev/null +++ b/data/software/xm/xmod.json @@ -0,0 +1,8 @@ +{ + "slug": "xmod", + "name": "xMod", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084777" + ] +} diff --git a/data/software/xn/xnec2c.json b/data/software/xn/xnec2c.json new file mode 100644 index 000000000000..2ec5846bd4ee --- /dev/null +++ b/data/software/xn/xnec2c.json @@ -0,0 +1,8 @@ +{ + "slug": "xnec2c", + "name": "xnec2c", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135317655" + ] +} diff --git a/data/software/xn/xnews.json b/data/software/xn/xnews.json new file mode 100644 index 000000000000..2d6fa0cb623d --- /dev/null +++ b/data/software/xn/xnews.json @@ -0,0 +1,8 @@ +{ + "slug": "xnews", + "name": "Xnews", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2598420" + ] +} diff --git a/data/software/xn/xnnpack.json b/data/software/xn/xnnpack.json new file mode 100644 index 000000000000..c3654b9b8532 --- /dev/null +++ b/data/software/xn/xnnpack.json @@ -0,0 +1,8 @@ +{ + "slug": "xnnpack", + "name": "xnnpack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120400885" + ] +} diff --git a/data/software/xn/xnoise.json b/data/software/xn/xnoise.json new file mode 100644 index 000000000000..ec4c2ea2ebe5 --- /dev/null +++ b/data/software/xn/xnoise.json @@ -0,0 +1,8 @@ +{ + "slug": "xnoise", + "name": "xnoise", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975585" + ] +} diff --git a/data/software/xn/xnots.json b/data/software/xn/xnots.json new file mode 100644 index 000000000000..41d4cd56ad09 --- /dev/null +++ b/data/software/xn/xnots.json @@ -0,0 +1,8 @@ +{ + "slug": "xnots", + "name": "xnots", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975586" + ] +} diff --git a/data/software/xo/xobotos.json b/data/software/xo/xobotos.json new file mode 100644 index 000000000000..95b4fea7d253 --- /dev/null +++ b/data/software/xo/xobotos.json @@ -0,0 +1,8 @@ +{ + "slug": "xobotos", + "name": "XobotOS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8044871" + ] +} diff --git a/data/software/xo/xor-ddos.json b/data/software/xo/xor-ddos.json new file mode 100644 index 000000000000..f9022692ff3f --- /dev/null +++ b/data/software/xo/xor-ddos.json @@ -0,0 +1,8 @@ +{ + "slug": "xor-ddos", + "name": "Xor DDoS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q23680122" + ] +} diff --git a/data/software/xo/xorp.json b/data/software/xo/xorp.json new file mode 100644 index 000000000000..84574680ac65 --- /dev/null +++ b/data/software/xo/xorp.json @@ -0,0 +1,8 @@ +{ + "slug": "xorp", + "name": "XORP", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q292504" + ] +} diff --git a/data/software/xp/xpadder.json b/data/software/xp/xpadder.json new file mode 100644 index 000000000000..2703a929585c --- /dev/null +++ b/data/software/xp/xpadder.json @@ -0,0 +1,8 @@ +{ + "slug": "xpadder", + "name": "Xpadder", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8044968" + ] +} diff --git a/data/software/xp/xpages.json b/data/software/xp/xpages.json new file mode 100644 index 000000000000..1aaa0e1ba029 --- /dev/null +++ b/data/software/xp/xpages.json @@ -0,0 +1,19 @@ +{ + "slug": "xpages", + "name": "XPages", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8042430" + ], + "release_date": "2008-01-01", + "developers": [ + "IBM" + ], + "operating_systems": [ + "cross-platform" + ], + "programming_languages": [ + "Java", + "HTML" + ] +} diff --git a/data/software/xp/xpconnect.json b/data/software/xp/xpconnect.json new file mode 100644 index 000000000000..e474b50bdd98 --- /dev/null +++ b/data/software/xp/xpconnect.json @@ -0,0 +1,8 @@ +{ + "slug": "xpconnect", + "name": "XPConnect", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8042403" + ] +} diff --git a/data/software/xp/xpenguins.json b/data/software/xp/xpenguins.json new file mode 100644 index 000000000000..8ee7341f1c9e --- /dev/null +++ b/data/software/xp/xpenguins.json @@ -0,0 +1,8 @@ +{ + "slug": "xpenguins", + "name": "xpenguins", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065108" + ] +} diff --git a/data/software/xp/xpidl.json b/data/software/xp/xpidl.json new file mode 100644 index 000000000000..0d2141985c65 --- /dev/null +++ b/data/software/xp/xpidl.json @@ -0,0 +1,8 @@ +{ + "slug": "xpidl", + "name": "XPIDL", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8042401" + ] +} diff --git a/data/software/xp/xplay.json b/data/software/xp/xplay.json new file mode 100644 index 000000000000..dfda4c980dc1 --- /dev/null +++ b/data/software/xp/xplay.json @@ -0,0 +1,8 @@ +{ + "slug": "xplay", + "name": "XPlay", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8042439" + ] +} diff --git a/data/software/xp/xprint.json b/data/software/xp/xprint.json new file mode 100644 index 000000000000..d7dd0955d24d --- /dev/null +++ b/data/software/xp/xprint.json @@ -0,0 +1,8 @@ +{ + "slug": "xprint", + "name": "Xprint", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1789622" + ] +} diff --git a/data/software/xp/xprotect.json b/data/software/xp/xprotect.json new file mode 100644 index 000000000000..5e9027e63760 --- /dev/null +++ b/data/software/xp/xprotect.json @@ -0,0 +1,8 @@ +{ + "slug": "xprotect", + "name": "Xprotect", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8045001" + ] +} diff --git a/data/software/xp/xps-annotator.json b/data/software/xp/xps-annotator.json new file mode 100644 index 000000000000..be63ac7f5e3a --- /dev/null +++ b/data/software/xp/xps-annotator.json @@ -0,0 +1,9 @@ +{ + "slug": "xps-annotator", + "name": "XPS Annotator", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8042420" + ], + "release_date": "2009-03-12" +} diff --git a/data/software/xq/xqf.json b/data/software/xq/xqf.json new file mode 100644 index 000000000000..e31f6793bcad --- /dev/null +++ b/data/software/xq/xqf.json @@ -0,0 +1,8 @@ +{ + "slug": "xqf", + "name": "XQF", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1054783" + ] +} diff --git a/data/software/xr/xrate.json b/data/software/xr/xrate.json new file mode 100644 index 000000000000..9a92c3256c57 --- /dev/null +++ b/data/software/xr/xrate.json @@ -0,0 +1,8 @@ +{ + "slug": "xrate", + "name": "Xrate", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8045004" + ] +} diff --git a/data/software/xr/xrdb.json b/data/software/xr/xrdb.json new file mode 100644 index 000000000000..97e6ff2457c3 --- /dev/null +++ b/data/software/xr/xrdb.json @@ -0,0 +1,14 @@ +{ + "slug": "xrdb", + "name": "xrdb", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8045007" + ], + "developers": [ + "Jim Gettys" + ], + "operating_systems": [ + "Unix-like operating system" + ] +} diff --git a/data/software/xr/xrootconsole.json b/data/software/xr/xrootconsole.json new file mode 100644 index 000000000000..f422dfc43669 --- /dev/null +++ b/data/software/xr/xrootconsole.json @@ -0,0 +1,8 @@ +{ + "slug": "xrootconsole", + "name": "xrootconsole", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60917908" + ] +} diff --git a/data/software/xs/xsan.json b/data/software/xs/xsan.json new file mode 100644 index 000000000000..c88d5f0c26ca --- /dev/null +++ b/data/software/xs/xsan.json @@ -0,0 +1,18 @@ +{ + "slug": "xsan", + "name": "Xsan", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1195367" + ], + "release_date": "2005-01-04", + "developers": [ + "Apple Inc." + ], + "operating_systems": [ + "macOS" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/xs/xscope.json b/data/software/xs/xscope.json new file mode 100644 index 000000000000..bf0b00cd8a55 --- /dev/null +++ b/data/software/xs/xscope.json @@ -0,0 +1,11 @@ +{ + "slug": "xscope", + "name": "xScope", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8042488" + ], + "developers": [ + "The Iconfactory" + ] +} diff --git a/data/software/xs/xsel.json b/data/software/xs/xsel.json new file mode 100644 index 000000000000..f07573aae996 --- /dev/null +++ b/data/software/xs/xsel.json @@ -0,0 +1,11 @@ +{ + "slug": "xsel", + "name": "xsel", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975588" + ], + "operating_systems": [ + "Unix-like operating system" + ] +} diff --git a/data/software/xs/xshell.json b/data/software/xs/xshell.json new file mode 100644 index 000000000000..6b4158060f5e --- /dev/null +++ b/data/software/xs/xshell.json @@ -0,0 +1,11 @@ +{ + "slug": "xshell", + "name": "Xshell", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q30325461" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/xs/xsight.json b/data/software/xs/xsight.json new file mode 100644 index 000000000000..b8c07b6fc0d9 --- /dev/null +++ b/data/software/xs/xsight.json @@ -0,0 +1,14 @@ +{ + "slug": "xsight", + "name": "XSight", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8042491" + ], + "developers": [ + "QSR International" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/xs/xslimmer.json b/data/software/xs/xslimmer.json new file mode 100644 index 000000000000..e0689fbe9a01 --- /dev/null +++ b/data/software/xs/xslimmer.json @@ -0,0 +1,8 @@ +{ + "slug": "xslimmer", + "name": "Xslimmer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8045020" + ] +} diff --git a/data/software/xs/xsokoban.json b/data/software/xs/xsokoban.json new file mode 100644 index 000000000000..c2423845cc7d --- /dev/null +++ b/data/software/xs/xsokoban.json @@ -0,0 +1,14 @@ +{ + "slug": "xsokoban", + "name": "XSokoban", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q114336902" + ], + "operating_systems": [ + "BSD" + ], + "genres": [ + "puzzle video game" + ] +} diff --git a/data/software/xs/xsp.json b/data/software/xs/xsp.json new file mode 100644 index 000000000000..e71d0e72c8f5 --- /dev/null +++ b/data/software/xs/xsp.json @@ -0,0 +1,8 @@ +{ + "slug": "xsp", + "name": "XSP", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1196845" + ] +} diff --git a/data/software/xs/xspider.json b/data/software/xs/xspider.json new file mode 100644 index 000000000000..ce7aa216a5b5 --- /dev/null +++ b/data/software/xs/xspider.json @@ -0,0 +1,8 @@ +{ + "slug": "xspider", + "name": "XSpider", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4053336" + ] +} diff --git a/data/software/xs/xsplash.json b/data/software/xs/xsplash.json new file mode 100644 index 000000000000..fc210a7daa87 --- /dev/null +++ b/data/software/xs/xsplash.json @@ -0,0 +1,8 @@ +{ + "slug": "xsplash", + "name": "XSplash", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3347240" + ] +} diff --git a/data/software/xs/xsugar.json b/data/software/xs/xsugar.json new file mode 100644 index 000000000000..636cc9288748 --- /dev/null +++ b/data/software/xs/xsugar.json @@ -0,0 +1,8 @@ +{ + "slug": "xsugar", + "name": "XSugar", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084778" + ] +} diff --git a/data/software/xt/xt9.json b/data/software/xt/xt9.json new file mode 100644 index 000000000000..bad3fdaabf0e --- /dev/null +++ b/data/software/xt/xt9.json @@ -0,0 +1,8 @@ +{ + "slug": "xt9", + "name": "XT9", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8042495" + ] +} diff --git a/data/software/xt/xtnd.json b/data/software/xt/xtnd.json new file mode 100644 index 000000000000..2836458a07f7 --- /dev/null +++ b/data/software/xt/xtnd.json @@ -0,0 +1,11 @@ +{ + "slug": "xtnd", + "name": "XTND", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8042505" + ], + "operating_systems": [ + "Classic Mac OS" + ] +} diff --git a/data/software/xt/xtrackcad.json b/data/software/xt/xtrackcad.json new file mode 100644 index 000000000000..784eb341559e --- /dev/null +++ b/data/software/xt/xtrackcad.json @@ -0,0 +1,8 @@ +{ + "slug": "xtrackcad", + "name": "XTrackCAD", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q51060438" + ] +} diff --git a/data/software/xt/xtrans.json b/data/software/xt/xtrans.json new file mode 100644 index 000000000000..74451fc9f7c1 --- /dev/null +++ b/data/software/xt/xtrans.json @@ -0,0 +1,17 @@ +{ + "slug": "xtrans", + "name": "XTrans", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105076395" + ], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [ + "Python" + ], + "licenses": [ + "GNU General Public License, version 3.0" + ] +} diff --git a/data/software/xv/xvid4conf.json b/data/software/xv/xvid4conf.json new file mode 100644 index 000000000000..f22f340e9639 --- /dev/null +++ b/data/software/xv/xvid4conf.json @@ -0,0 +1,8 @@ +{ + "slug": "xvid4conf", + "name": "xvid4conf", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065643" + ] +} diff --git a/data/software/xw/xwallpaper.json b/data/software/xw/xwallpaper.json new file mode 100644 index 000000000000..7d71e9685caa --- /dev/null +++ b/data/software/xw/xwallpaper.json @@ -0,0 +1,8 @@ +{ + "slug": "xwallpaper", + "name": "xwallpaper", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065042" + ] +} diff --git a/data/software/xx/xx-messenger.json b/data/software/xx/xx-messenger.json new file mode 100644 index 000000000000..d74525983502 --- /dev/null +++ b/data/software/xx/xx-messenger.json @@ -0,0 +1,8 @@ +{ + "slug": "xx-messenger", + "name": "Xx messenger", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113993491" + ] +} diff --git a/data/software/xx/xxdi.json b/data/software/xx/xxdi.json new file mode 100644 index 000000000000..22767ee50107 --- /dev/null +++ b/data/software/xx/xxdi.json @@ -0,0 +1,11 @@ +{ + "slug": "xxdi", + "name": "xxdi", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106102032" + ], + "licenses": [ + "GNU General Public License, version 2.0" + ] +} diff --git a/data/software/xx/xxdiff.json b/data/software/xx/xxdiff.json new file mode 100644 index 000000000000..df2f4408e76c --- /dev/null +++ b/data/software/xx/xxdiff.json @@ -0,0 +1,14 @@ +{ + "slug": "xxdiff", + "name": "xxdiff", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116867871" + ], + "operating_systems": [ + "macOS" + ], + "licenses": [ + "GNU General Public License, version 2.0" + ] +} diff --git a/data/software/xy/xyzzy.json b/data/software/xy/xyzzy.json new file mode 100644 index 000000000000..00f63957ea90 --- /dev/null +++ b/data/software/xy/xyzzy.json @@ -0,0 +1,11 @@ +{ + "slug": "xyzzy", + "name": "xyzzy", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11254873" + ], + "developers": [ + "Tetsuya Kamei" + ] +} diff --git a/data/software/y-/y-cruncher.json b/data/software/y-/y-cruncher.json new file mode 100644 index 000000000000..0a20295ae97e --- /dev/null +++ b/data/software/y-/y-cruncher.json @@ -0,0 +1,14 @@ +{ + "slug": "y-cruncher", + "name": "y-cruncher", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q97176725" + ], + "operating_systems": [ + "Microsoft Windows" + ], + "licenses": [ + "3-clause BSD License" + ] +} diff --git a/data/software/y-/y-na.json b/data/software/y-/y-na.json new file mode 100644 index 000000000000..f363f37063f9 --- /dev/null +++ b/data/software/y-/y-na.json @@ -0,0 +1,8 @@ +{ + "slug": "y-na", + "name": "Yāna", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084779" + ] +} diff --git a/data/software/ya/yabasic.json b/data/software/ya/yabasic.json new file mode 100644 index 000000000000..e9028df7722b --- /dev/null +++ b/data/software/ya/yabasic.json @@ -0,0 +1,15 @@ +{ + "slug": "yabasic", + "name": "Yabasic", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1930734" + ], + "operating_systems": [ + "Unix-like operating system", + "Microsoft Windows" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/ya/yac.json b/data/software/ya/yac.json new file mode 100644 index 000000000000..65cbf4ca07c9 --- /dev/null +++ b/data/software/ya/yac.json @@ -0,0 +1,8 @@ +{ + "slug": "yac", + "name": "Yac", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135992124" + ] +} diff --git a/data/software/ya/yadavar-check.json b/data/software/ya/yadavar-check.json new file mode 100644 index 000000000000..92a4ddda886d --- /dev/null +++ b/data/software/ya/yadavar-check.json @@ -0,0 +1,11 @@ +{ + "slug": "yadavar-check", + "name": "Yadavar check", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138388746" + ], + "developers": [ + "TaxiApps" + ] +} diff --git a/data/software/ya/yaffs-utils.json b/data/software/ya/yaffs-utils.json new file mode 100644 index 000000000000..084ce064b7c9 --- /dev/null +++ b/data/software/ya/yaffs-utils.json @@ -0,0 +1,8 @@ +{ + "slug": "yaffs-utils", + "name": "yaffs-utils", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975590" + ] +} diff --git a/data/software/ya/yaffs2-utils.json b/data/software/ya/yaffs2-utils.json new file mode 100644 index 000000000000..c582fc5c4bf5 --- /dev/null +++ b/data/software/ya/yaffs2-utils.json @@ -0,0 +1,8 @@ +{ + "slug": "yaffs2-utils", + "name": "yaffs2-utils", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975589" + ] +} diff --git a/data/software/ya/yagf.json b/data/software/ya/yagf.json new file mode 100644 index 000000000000..03268ee80c7b --- /dev/null +++ b/data/software/ya/yagf.json @@ -0,0 +1,8 @@ +{ + "slug": "yagf", + "name": "YAGF", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4053417" + ] +} diff --git a/data/software/ya/yahoo-assistant.json b/data/software/ya/yahoo-assistant.json new file mode 100644 index 000000000000..00e335ff3a86 --- /dev/null +++ b/data/software/ya/yahoo-assistant.json @@ -0,0 +1,8 @@ +{ + "slug": "yahoo-assistant", + "name": "Yahoo! Assistant", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8046834" + ] +} diff --git a/data/software/ya/yahoo-calendar.json b/data/software/ya/yahoo-calendar.json new file mode 100644 index 000000000000..5228c0f6c819 --- /dev/null +++ b/data/software/ya/yahoo-calendar.json @@ -0,0 +1,11 @@ +{ + "slug": "yahoo-calendar", + "name": "Yahoo! Calendar", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1412327" + ], + "developers": [ + "Yahoo" + ] +} diff --git a/data/software/ya/yahoo-go.json b/data/software/ya/yahoo-go.json new file mode 100644 index 000000000000..767bb8f0aa39 --- /dev/null +++ b/data/software/ya/yahoo-go.json @@ -0,0 +1,11 @@ +{ + "slug": "yahoo-go", + "name": "Yahoo! Go", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8046843" + ], + "developers": [ + "Yahoo" + ] +} diff --git a/data/software/ya/yahoo-messenger.json b/data/software/ya/yahoo-messenger.json new file mode 100644 index 000000000000..1fcea5480ad7 --- /dev/null +++ b/data/software/ya/yahoo-messenger.json @@ -0,0 +1,14 @@ +{ + "slug": "yahoo-messenger", + "name": "Yahoo! Messenger", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q71694" + ], + "developers": [ + "Yahoo" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/ya/yahoo-music-jukebox.json b/data/software/ya/yahoo-music-jukebox.json new file mode 100644 index 000000000000..fb145f917fee --- /dev/null +++ b/data/software/ya/yahoo-music-jukebox.json @@ -0,0 +1,14 @@ +{ + "slug": "yahoo-music-jukebox", + "name": "Yahoo! Music Jukebox", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8046858" + ], + "developers": [ + "Yahoo" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/ya/yahoo-music-radio.json b/data/software/ya/yahoo-music-radio.json new file mode 100644 index 000000000000..116edfa32ceb --- /dev/null +++ b/data/software/ya/yahoo-music-radio.json @@ -0,0 +1,12 @@ +{ + "slug": "yahoo-music-radio", + "name": "Yahoo! Music Radio", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4199496" + ], + "release_date": "1999-11-11", + "developers": [ + "LAUNCH Media" + ] +} diff --git a/data/software/ya/yahoo-sherpa.json b/data/software/ya/yahoo-sherpa.json new file mode 100644 index 000000000000..8ca6cc15bf26 --- /dev/null +++ b/data/software/ya/yahoo-sherpa.json @@ -0,0 +1,11 @@ +{ + "slug": "yahoo-sherpa", + "name": "Yahoo Sherpa", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8046888" + ], + "developers": [ + "Yahoo" + ] +} diff --git a/data/software/ya/yahoo-voice.json b/data/software/ya/yahoo-voice.json new file mode 100644 index 000000000000..adcee096e48e --- /dev/null +++ b/data/software/ya/yahoo-voice.json @@ -0,0 +1,11 @@ +{ + "slug": "yahoo-voice", + "name": "Yahoo! Voice", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8046879" + ], + "developers": [ + "Yahoo" + ] +} diff --git a/data/software/ya/yahoo-widgets.json b/data/software/ya/yahoo-widgets.json new file mode 100644 index 000000000000..7bcb4d6ea43d --- /dev/null +++ b/data/software/ya/yahoo-widgets.json @@ -0,0 +1,8 @@ +{ + "slug": "yahoo-widgets", + "name": "Yahoo! Widgets", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1779772" + ] +} diff --git a/data/software/ya/yakyak.json b/data/software/ya/yakyak.json new file mode 100644 index 000000000000..d42f883901f9 --- /dev/null +++ b/data/software/ya/yakyak.json @@ -0,0 +1,14 @@ +{ + "slug": "yakyak", + "name": "yakyak", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q47487588" + ], + "programming_languages": [ + "CoffeeScript" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/ya/yandex-direct.json b/data/software/ya/yandex-direct.json new file mode 100644 index 000000000000..10a9c2d00702 --- /dev/null +++ b/data/software/ya/yandex-direct.json @@ -0,0 +1,11 @@ +{ + "slug": "yandex-direct", + "name": "Yandex Direct", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3557997" + ], + "developers": [ + "Yandex" + ] +} diff --git a/data/software/ya/yandex-metro.json b/data/software/ya/yandex-metro.json new file mode 100644 index 000000000000..b08691c00f39 --- /dev/null +++ b/data/software/ya/yandex-metro.json @@ -0,0 +1,24 @@ +{ + "slug": "yandex-metro", + "name": "Yandex.Metro", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q85869255" + ], + "release_date": "2008-09-01", + "developers": [ + "Yandex" + ], + "operating_systems": [ + "Windows Phone", + "iOS", + "Windows Mobile" + ], + "programming_languages": [ + "JSON", + "XML" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/ya/yandex-navigator.json b/data/software/ya/yandex-navigator.json new file mode 100644 index 000000000000..a17f3f4f9ad7 --- /dev/null +++ b/data/software/ya/yandex-navigator.json @@ -0,0 +1,16 @@ +{ + "slug": "yandex-navigator", + "name": "Yandex.Navigator", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16723298" + ], + "developers": [ + "Yandex" + ], + "operating_systems": [ + "Windows Phone 8.1", + "iOS", + "Windows Phone 8" + ] +} diff --git a/data/software/ya/yandex-panoramas.json b/data/software/ya/yandex-panoramas.json new file mode 100644 index 000000000000..5c8dc7026a59 --- /dev/null +++ b/data/software/ya/yandex-panoramas.json @@ -0,0 +1,12 @@ +{ + "slug": "yandex-panoramas", + "name": "Yandex Panoramas", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4537992" + ], + "release_date": "2009-01-01", + "developers": [ + "Yandex" + ] +} diff --git a/data/software/ya/yandex-shell.json b/data/software/ya/yandex-shell.json new file mode 100644 index 000000000000..7c5571bb8825 --- /dev/null +++ b/data/software/ya/yandex-shell.json @@ -0,0 +1,11 @@ +{ + "slug": "yandex-shell", + "name": "Yandex.Shell", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16723292" + ], + "developers": [ + "Yandex" + ] +} diff --git a/data/software/ya/yandex-speechkit.json b/data/software/ya/yandex-speechkit.json new file mode 100644 index 000000000000..5dc76f623f8f --- /dev/null +++ b/data/software/ya/yandex-speechkit.json @@ -0,0 +1,12 @@ +{ + "slug": "yandex-speechkit", + "name": "Yandex.SpeechKit", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q15617522" + ], + "release_date": "2013-01-01", + "developers": [ + "Yandex" + ] +} diff --git a/data/software/ya/yandex-traffic.json b/data/software/ya/yandex-traffic.json new file mode 100644 index 000000000000..7a990d5be9b8 --- /dev/null +++ b/data/software/ya/yandex-traffic.json @@ -0,0 +1,11 @@ +{ + "slug": "yandex-traffic", + "name": "Yandex.Traffic", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q15715475" + ], + "developers": [ + "Yandex" + ] +} diff --git a/data/software/ya/yanel.json b/data/software/ya/yanel.json new file mode 100644 index 000000000000..50e9ee60f92c --- /dev/null +++ b/data/software/ya/yanel.json @@ -0,0 +1,11 @@ +{ + "slug": "yanel", + "name": "Yanel", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q545369" + ], + "programming_languages": [ + "Java" + ] +} diff --git a/data/software/ya/yanosik.json b/data/software/ya/yanosik.json new file mode 100644 index 000000000000..2c24dfd8d83b --- /dev/null +++ b/data/software/ya/yanosik.json @@ -0,0 +1,8 @@ +{ + "slug": "yanosik", + "name": "Yanosik", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25400668" + ] +} diff --git a/data/software/ya/yaourt.json b/data/software/ya/yaourt.json new file mode 100644 index 000000000000..a1905fc48dcd --- /dev/null +++ b/data/software/ya/yaourt.json @@ -0,0 +1,8 @@ +{ + "slug": "yaourt", + "name": "Yaourt", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3571855" + ] +} diff --git a/data/software/ya/yap.json b/data/software/ya/yap.json new file mode 100644 index 000000000000..c5949028b131 --- /dev/null +++ b/data/software/ya/yap.json @@ -0,0 +1,11 @@ +{ + "slug": "yap", + "name": "YAP", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8045821" + ], + "licenses": [ + "Artistic License" + ] +} diff --git a/data/software/ya/yarnnn.json b/data/software/ya/yarnnn.json new file mode 100644 index 000000000000..1195109ac372 --- /dev/null +++ b/data/software/ya/yarnnn.json @@ -0,0 +1,8 @@ +{ + "slug": "yarnnn", + "name": "yarnnn", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140460241" + ] +} diff --git a/data/software/ya/yaserde.json b/data/software/ya/yaserde.json new file mode 100644 index 000000000000..6c1e3f41e679 --- /dev/null +++ b/data/software/ya/yaserde.json @@ -0,0 +1,11 @@ +{ + "slug": "yaserde", + "name": "yaserde", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60868886" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/yc/ycomp.json b/data/software/yc/ycomp.json new file mode 100644 index 000000000000..b3d6b8b0cfe3 --- /dev/null +++ b/data/software/yc/ycomp.json @@ -0,0 +1,11 @@ +{ + "slug": "ycomp", + "name": "yComp", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125399454" + ], + "programming_languages": [ + "Java" + ] +} diff --git a/data/software/ye/yed-files.json b/data/software/ye/yed-files.json new file mode 100644 index 000000000000..e1c9b0f74d7c --- /dev/null +++ b/data/software/ye/yed-files.json @@ -0,0 +1,8 @@ +{ + "slug": "yed-files", + "name": "yED Files", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084780" + ] +} diff --git a/data/software/ye/yencode.json b/data/software/ye/yencode.json new file mode 100644 index 000000000000..6dc5c2e0d914 --- /dev/null +++ b/data/software/ye/yencode.json @@ -0,0 +1,8 @@ +{ + "slug": "yencode", + "name": "yencode", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065404" + ] +} diff --git a/data/software/ye/yenka.json b/data/software/ye/yenka.json new file mode 100644 index 000000000000..de2d01d8b044 --- /dev/null +++ b/data/software/ye/yenka.json @@ -0,0 +1,8 @@ +{ + "slug": "yenka", + "name": "Yenka", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8052367" + ] +} diff --git a/data/software/ye/yep.json b/data/software/ye/yep.json new file mode 100644 index 000000000000..3a50470fdf0d --- /dev/null +++ b/data/software/ye/yep.json @@ -0,0 +1,11 @@ +{ + "slug": "yep", + "name": "Yep", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8052512" + ], + "operating_systems": [ + "macOS" + ] +} diff --git a/data/software/ye/yes-really.json b/data/software/ye/yes-really.json new file mode 100644 index 000000000000..e585dfcbfe9e --- /dev/null +++ b/data/software/ye/yes-really.json @@ -0,0 +1,15 @@ +{ + "slug": "yes-really", + "name": "Yes, Really", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109713976" + ], + "release_date": "2010-01-01", + "programming_languages": [ + "PHP" + ], + "genres": [ + "electronic literature" + ] +} diff --git a/data/software/ye/yesim.json b/data/software/ye/yesim.json new file mode 100644 index 000000000000..c4e8e0a119b0 --- /dev/null +++ b/data/software/ye/yesim.json @@ -0,0 +1,8 @@ +{ + "slug": "yesim", + "name": "Yesim", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136756957" + ] +} diff --git a/data/software/ye/yesmancoin.json b/data/software/ye/yesmancoin.json new file mode 100644 index 000000000000..18e242056fc7 --- /dev/null +++ b/data/software/ye/yesmancoin.json @@ -0,0 +1,15 @@ +{ + "slug": "yesmancoin", + "name": "YesManCoin", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60446561" + ], + "release_date": "2018-02-22", + "developers": [ + "Yes Man Enterprises" + ], + "programming_languages": [ + "Solidity" + ] +} diff --git a/data/software/yi/yieldigo.json b/data/software/yi/yieldigo.json new file mode 100644 index 000000000000..56e69a18772a --- /dev/null +++ b/data/software/yi/yieldigo.json @@ -0,0 +1,8 @@ +{ + "slug": "yieldigo", + "name": "Yieldigo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139891215" + ] +} diff --git a/data/software/yi/yieldstar.json b/data/software/yi/yieldstar.json new file mode 100644 index 000000000000..8649eab9de8c --- /dev/null +++ b/data/software/yi/yieldstar.json @@ -0,0 +1,8 @@ +{ + "slug": "yieldstar", + "name": "YieldStar", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116463188" + ] +} diff --git a/data/software/yi/yinztagram.json b/data/software/yi/yinztagram.json new file mode 100644 index 000000000000..7e7329b422bb --- /dev/null +++ b/data/software/yi/yinztagram.json @@ -0,0 +1,14 @@ +{ + "slug": "yinztagram", + "name": "Yinztagram", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8053777" + ], + "operating_systems": [ + "iOS" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/yi/yixin.json b/data/software/yi/yixin.json new file mode 100644 index 000000000000..cb616be5ab4b --- /dev/null +++ b/data/software/yi/yixin.json @@ -0,0 +1,8 @@ +{ + "slug": "yixin", + "name": "Yixin", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q36218339" + ] +} diff --git a/data/software/yk/ykclient.json b/data/software/yk/ykclient.json new file mode 100644 index 000000000000..f8e72bbf9ef1 --- /dev/null +++ b/data/software/yk/ykclient.json @@ -0,0 +1,8 @@ +{ + "slug": "ykclient", + "name": "ykclient", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065432" + ] +} diff --git a/data/software/yo/yo.json b/data/software/yo/yo.json new file mode 100644 index 000000000000..27d9ca7aa00e --- /dev/null +++ b/data/software/yo/yo.json @@ -0,0 +1,8 @@ +{ + "slug": "yo", + "name": "Yo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17627617" + ] +} diff --git a/data/software/yo/yodl.json b/data/software/yo/yodl.json new file mode 100644 index 000000000000..3498f97b8b0c --- /dev/null +++ b/data/software/yo/yodl.json @@ -0,0 +1,8 @@ +{ + "slug": "yodl", + "name": "yodl", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065318" + ] +} diff --git a/data/software/yo/yofacturo.json b/data/software/yo/yofacturo.json new file mode 100644 index 000000000000..564791383455 --- /dev/null +++ b/data/software/yo/yofacturo.json @@ -0,0 +1,8 @@ +{ + "slug": "yofacturo", + "name": "YoFacturo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140343628" + ] +} diff --git a/data/software/yo/yohioloid.json b/data/software/yo/yohioloid.json new file mode 100644 index 000000000000..494f7d713202 --- /dev/null +++ b/data/software/yo/yohioloid.json @@ -0,0 +1,12 @@ +{ + "slug": "yohioloid", + "name": "Yohioloid", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q24910856" + ], + "release_date": "2013-09-10", + "developers": [ + "PowerFX" + ] +} diff --git a/data/software/yo/yojimbo.json b/data/software/yo/yojimbo.json new file mode 100644 index 000000000000..c39f0c1ffd26 --- /dev/null +++ b/data/software/yo/yojimbo.json @@ -0,0 +1,14 @@ +{ + "slug": "yojimbo", + "name": "Yojimbo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8054531" + ], + "developers": [ + "Bare Bones Software" + ], + "operating_systems": [ + "macOS" + ] +} diff --git a/data/software/yo/yolo.json b/data/software/yo/yolo.json new file mode 100644 index 000000000000..2a96131581c0 --- /dev/null +++ b/data/software/yo/yolo.json @@ -0,0 +1,8 @@ +{ + "slug": "yolo", + "name": "YOLO", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112181165" + ] +} diff --git a/data/software/yo/yono-lite.json b/data/software/yo/yono-lite.json new file mode 100644 index 000000000000..e6c50c19f638 --- /dev/null +++ b/data/software/yo/yono-lite.json @@ -0,0 +1,8 @@ +{ + "slug": "yono-lite", + "name": "Yono Lite", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113449935" + ] +} diff --git a/data/software/yo/yono.json b/data/software/yo/yono.json new file mode 100644 index 000000000000..ae9525e50d85 --- /dev/null +++ b/data/software/yo/yono.json @@ -0,0 +1,9 @@ +{ + "slug": "yono", + "name": "YONO", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q45907785" + ], + "release_date": "2017-11-24" +} diff --git a/data/software/yo/yorba.json b/data/software/yo/yorba.json new file mode 100644 index 000000000000..15b787db0503 --- /dev/null +++ b/data/software/yo/yorba.json @@ -0,0 +1,8 @@ +{ + "slug": "yorba", + "name": "Yorba", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137591252" + ] +} diff --git a/data/software/yo/yoshikoder.json b/data/software/yo/yoshikoder.json new file mode 100644 index 000000000000..b597157ec0c5 --- /dev/null +++ b/data/software/yo/yoshikoder.json @@ -0,0 +1,18 @@ +{ + "slug": "yoshikoder", + "name": "Yoshikoder", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105229781" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [ + "Java" + ], + "licenses": [ + "GNU General Public License" + ] +} diff --git a/data/software/yo/you-need-a-budget.json b/data/software/yo/you-need-a-budget.json new file mode 100644 index 000000000000..3c575cf43974 --- /dev/null +++ b/data/software/yo/you-need-a-budget.json @@ -0,0 +1,17 @@ +{ + "slug": "you-need-a-budget", + "name": "You Need a Budget", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8057432" + ], + "release_date": "2004-01-01", + "operating_systems": [ + "iOS", + "Microsoft Windows" + ], + "genres": [ + "personal finance", + "financial management" + ] +} diff --git a/data/software/yo/youcam-makeup.json b/data/software/yo/youcam-makeup.json new file mode 100644 index 000000000000..bcd3b1e8e05e --- /dev/null +++ b/data/software/yo/youcam-makeup.json @@ -0,0 +1,8 @@ +{ + "slug": "youcam-makeup", + "name": "YouCam Makeup", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134126736" + ] +} diff --git a/data/software/yo/youcam-perfect.json b/data/software/yo/youcam-perfect.json new file mode 100644 index 000000000000..d066ff4888f7 --- /dev/null +++ b/data/software/yo/youcam-perfect.json @@ -0,0 +1,8 @@ +{ + "slug": "youcam-perfect", + "name": "YouCam Perfect", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134303380" + ] +} diff --git a/data/software/yo/youdao-note.json b/data/software/yo/youdao-note.json new file mode 100644 index 000000000000..544d635bfe64 --- /dev/null +++ b/data/software/yo/youdao-note.json @@ -0,0 +1,14 @@ +{ + "slug": "youdao-note", + "name": "Youdao Note", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q15938681" + ], + "developers": [ + "NetEase" + ], + "genres": [ + "note-taking software" + ] +} diff --git a/data/software/yo/youminds-composer.json b/data/software/yo/youminds-composer.json new file mode 100644 index 000000000000..216e1632ca80 --- /dev/null +++ b/data/software/yo/youminds-composer.json @@ -0,0 +1,11 @@ +{ + "slug": "youminds-composer", + "name": "Youminds Composer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106143059" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/yo/youos.json b/data/software/yo/youos.json new file mode 100644 index 000000000000..cbe2bc3fa73f --- /dev/null +++ b/data/software/yo/youos.json @@ -0,0 +1,8 @@ +{ + "slug": "youos", + "name": "YouOS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2523117" + ] +} diff --git a/data/software/yo/your-favorite-gene.json b/data/software/yo/your-favorite-gene.json new file mode 100644 index 000000000000..12d494afb150 --- /dev/null +++ b/data/software/yo/your-favorite-gene.json @@ -0,0 +1,8 @@ +{ + "slug": "your-favorite-gene", + "name": "Your Favorite Gene", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8058797" + ] +} diff --git a/data/software/yo/your-twapper-keeper.json b/data/software/yo/your-twapper-keeper.json new file mode 100644 index 000000000000..e011a836ff75 --- /dev/null +++ b/data/software/yo/your-twapper-keeper.json @@ -0,0 +1,8 @@ +{ + "slug": "your-twapper-keeper", + "name": "Your Twapper Keeper", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084782" + ] +} diff --git a/data/software/yo/youtrack.json b/data/software/yo/youtrack.json new file mode 100644 index 000000000000..5e342231273f --- /dev/null +++ b/data/software/yo/youtrack.json @@ -0,0 +1,18 @@ +{ + "slug": "youtrack", + "name": "YouTrack", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4053466" + ], + "release_date": "2009-01-01", + "developers": [ + "JetBrains" + ], + "operating_systems": [ + "cross-platform" + ], + "programming_languages": [ + "Kotlin" + ] +} diff --git a/data/software/yo/youtube-comment-scraper.json b/data/software/yo/youtube-comment-scraper.json new file mode 100644 index 000000000000..c2a86e829894 --- /dev/null +++ b/data/software/yo/youtube-comment-scraper.json @@ -0,0 +1,8 @@ +{ + "slug": "youtube-comment-scraper", + "name": "YouTube Comment Scraper", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084783" + ] +} diff --git a/data/software/yo/youtube-data-api.json b/data/software/yo/youtube-data-api.json new file mode 100644 index 000000000000..85214bcb48a0 --- /dev/null +++ b/data/software/yo/youtube-data-api.json @@ -0,0 +1,14 @@ +{ + "slug": "youtube-data-api", + "name": "YouTube Data API", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116702066" + ], + "programming_languages": [ + "Python" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/yo/youtube-data-tools.json b/data/software/yo/youtube-data-tools.json new file mode 100644 index 000000000000..54ba3e8f6364 --- /dev/null +++ b/data/software/yo/youtube-data-tools.json @@ -0,0 +1,8 @@ +{ + "slug": "youtube-data-tools", + "name": "YouTube Data Tools", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087773" + ] +} diff --git a/data/software/yo/youtube-instant.json b/data/software/yo/youtube-instant.json new file mode 100644 index 000000000000..d6c01588bad5 --- /dev/null +++ b/data/software/yo/youtube-instant.json @@ -0,0 +1,8 @@ +{ + "slug": "youtube-instant", + "name": "YouTube Instant", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3820674" + ] +} diff --git a/data/software/yo/youtube-scraper-csv-cleaner.json b/data/software/yo/youtube-scraper-csv-cleaner.json new file mode 100644 index 000000000000..675b1e694e95 --- /dev/null +++ b/data/software/yo/youtube-scraper-csv-cleaner.json @@ -0,0 +1,8 @@ +{ + "slug": "youtube-scraper-csv-cleaner", + "name": "Youtube Scraper CSV Cleaner", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084784" + ] +} diff --git a/data/software/yo/youtube-viewer.json b/data/software/yo/youtube-viewer.json new file mode 100644 index 000000000000..9f040b45cf5c --- /dev/null +++ b/data/software/yo/youtube-viewer.json @@ -0,0 +1,11 @@ +{ + "slug": "youtube-viewer", + "name": "youtube-viewer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975593" + ], + "licenses": [ + "Artistic License" + ] +} diff --git a/data/software/yo/youtube-vr.json b/data/software/yo/youtube-vr.json new file mode 100644 index 000000000000..56393cdb7f57 --- /dev/null +++ b/data/software/yo/youtube-vr.json @@ -0,0 +1,8 @@ +{ + "slug": "youtube-vr", + "name": "YouTube VR", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126415657" + ] +} diff --git a/data/software/yo/youyang-gu-covid-model.json b/data/software/yo/youyang-gu-covid-model.json new file mode 100644 index 000000000000..67d2f6005fa6 --- /dev/null +++ b/data/software/yo/youyang-gu-covid-model.json @@ -0,0 +1,11 @@ +{ + "slug": "youyang-gu-covid-model", + "name": "Youyang Gu COVID model", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q96324200" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/ys/ys-megabasic.json b/data/software/ys/ys-megabasic.json new file mode 100644 index 000000000000..02b47605c42d --- /dev/null +++ b/data/software/ys/ys-megabasic.json @@ -0,0 +1,8 @@ +{ + "slug": "ys-megabasic", + "name": "YS MegaBasic", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8046036" + ] +} diff --git a/data/software/ys/ysflight.json b/data/software/ys/ysflight.json new file mode 100644 index 000000000000..775b6cd4f3ae --- /dev/null +++ b/data/software/ys/ysflight.json @@ -0,0 +1,11 @@ +{ + "slug": "ysflight", + "name": "YSFlight", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1899542" + ], + "licenses": [ + "3-clause BSD License" + ] +} diff --git a/data/software/yu/yu-ris.json b/data/software/yu/yu-ris.json new file mode 100644 index 000000000000..d09e4c070fc6 --- /dev/null +++ b/data/software/yu/yu-ris.json @@ -0,0 +1,8 @@ +{ + "slug": "yu-ris", + "name": "YU-RIS", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11255280" + ] +} diff --git a/data/software/yu/yubikey-manager.json b/data/software/yu/yubikey-manager.json new file mode 100644 index 000000000000..b5f8567ee68f --- /dev/null +++ b/data/software/yu/yubikey-manager.json @@ -0,0 +1,8 @@ +{ + "slug": "yubikey-manager", + "name": "yubikey-manager", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q88506099" + ] +} diff --git a/data/software/yu/yubo.json b/data/software/yu/yubo.json new file mode 100644 index 000000000000..7b5ffe60f363 --- /dev/null +++ b/data/software/yu/yubo.json @@ -0,0 +1,12 @@ +{ + "slug": "yubo", + "name": "Yubo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28957086" + ], + "release_date": "2015-10-01", + "operating_systems": [ + "iOS" + ] +} diff --git a/data/software/yu/yummy-ftp.json b/data/software/yu/yummy-ftp.json new file mode 100644 index 000000000000..76fe1d43cd8f --- /dev/null +++ b/data/software/yu/yummy-ftp.json @@ -0,0 +1,11 @@ +{ + "slug": "yummy-ftp", + "name": "Yummy FTP", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8061148" + ], + "operating_systems": [ + "macOS" + ] +} diff --git a/data/software/yu/yutzu.json b/data/software/yu/yutzu.json new file mode 100644 index 000000000000..1803ca5a44a7 --- /dev/null +++ b/data/software/yu/yutzu.json @@ -0,0 +1,8 @@ +{ + "slug": "yutzu", + "name": "Yutzu", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084785" + ] +} diff --git a/data/software/yv/yvoraio.json b/data/software/yv/yvoraio.json new file mode 100644 index 000000000000..0d95aa795b31 --- /dev/null +++ b/data/software/yv/yvoraio.json @@ -0,0 +1,14 @@ +{ + "slug": "yvoraio", + "name": "YvorAIO", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139965183" + ], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [ + "TypeScript" + ] +} diff --git a/data/software/yy/yy-english-tv-shows.json b/data/software/yy/yy-english-tv-shows.json new file mode 100644 index 000000000000..bbeb3fe2f591 --- /dev/null +++ b/data/software/yy/yy-english-tv-shows.json @@ -0,0 +1,13 @@ +{ + "slug": "yy-english-tv-shows", + "name": "YY English TV Shows", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18651505" + ], + "operating_systems": [ + "iOS", + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/software/z-/z-maestro.json b/data/software/z-/z-maestro.json new file mode 100644 index 000000000000..2b1f448f840e --- /dev/null +++ b/data/software/z-/z-maestro.json @@ -0,0 +1,8 @@ +{ + "slug": "z-maestro", + "name": "Z-Maestro", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8062810" + ] +} diff --git a/data/software/z-/z-way.json b/data/software/z-/z-way.json new file mode 100644 index 000000000000..d778cca64db9 --- /dev/null +++ b/data/software/z-/z-way.json @@ -0,0 +1,8 @@ +{ + "slug": "z-way", + "name": "Z-way", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q97379974" + ] +} diff --git a/data/software/za/zaki.json b/data/software/za/zaki.json new file mode 100644 index 000000000000..88cbc3c8e121 --- /dev/null +++ b/data/software/za/zaki.json @@ -0,0 +1,8 @@ +{ + "slug": "zaki", + "name": "Zaki", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q12645521" + ] +} diff --git a/data/software/za/zamba.json b/data/software/za/zamba.json new file mode 100644 index 000000000000..c2e69a08ef15 --- /dev/null +++ b/data/software/za/zamba.json @@ -0,0 +1,11 @@ +{ + "slug": "zamba", + "name": "Zamba", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115688411" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/za/zandy.json b/data/software/za/zandy.json new file mode 100644 index 000000000000..c15264a13dd0 --- /dev/null +++ b/data/software/za/zandy.json @@ -0,0 +1,8 @@ +{ + "slug": "zandy", + "name": "Zandy", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084786" + ] +} diff --git a/data/software/za/zangi.json b/data/software/za/zangi.json new file mode 100644 index 000000000000..6a98209141b4 --- /dev/null +++ b/data/software/za/zangi.json @@ -0,0 +1,8 @@ +{ + "slug": "zangi", + "name": "Zangi", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135038430" + ] +} diff --git a/data/software/za/zano.json b/data/software/za/zano.json new file mode 100644 index 000000000000..f3e017472e21 --- /dev/null +++ b/data/software/za/zano.json @@ -0,0 +1,8 @@ +{ + "slug": "zano", + "name": "Zano", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134984027" + ] +} diff --git a/data/software/za/zapier.json b/data/software/za/zapier.json new file mode 100644 index 000000000000..42b18d41b497 --- /dev/null +++ b/data/software/za/zapier.json @@ -0,0 +1,8 @@ +{ + "slug": "zapier", + "name": "Zapier", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q27150165" + ] +} diff --git a/data/software/za/zaptel.json b/data/software/za/zaptel.json new file mode 100644 index 000000000000..f3bcd3f51e55 --- /dev/null +++ b/data/software/za/zaptel.json @@ -0,0 +1,11 @@ +{ + "slug": "zaptel", + "name": "Zaptel", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4053543" + ], + "operating_systems": [ + "Berkeley Software Distribution" + ] +} diff --git a/data/software/za/zapya.json b/data/software/za/zapya.json new file mode 100644 index 000000000000..5d65b4848f39 --- /dev/null +++ b/data/software/za/zapya.json @@ -0,0 +1,8 @@ +{ + "slug": "zapya", + "name": "Zapya", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28402090" + ] +} diff --git a/data/software/za/zaq-ai.json b/data/software/za/zaq-ai.json new file mode 100644 index 000000000000..f1a186c5134f --- /dev/null +++ b/data/software/za/zaq-ai.json @@ -0,0 +1,8 @@ +{ + "slug": "zaq-ai", + "name": "ZAQ AI", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140471582" + ] +} diff --git a/data/software/za/zathura-cb.json b/data/software/za/zathura-cb.json new file mode 100644 index 000000000000..211101c40394 --- /dev/null +++ b/data/software/za/zathura-cb.json @@ -0,0 +1,8 @@ +{ + "slug": "zathura-cb", + "name": "zathura-cb", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975594" + ] +} diff --git a/data/software/za/zathura-djvu.json b/data/software/za/zathura-djvu.json new file mode 100644 index 000000000000..fb8435fd86df --- /dev/null +++ b/data/software/za/zathura-djvu.json @@ -0,0 +1,8 @@ +{ + "slug": "zathura-djvu", + "name": "zathura-djvu", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975595" + ] +} diff --git a/data/software/za/zathura-pdf-mupdf.json b/data/software/za/zathura-pdf-mupdf.json new file mode 100644 index 000000000000..e2852a44247d --- /dev/null +++ b/data/software/za/zathura-pdf-mupdf.json @@ -0,0 +1,8 @@ +{ + "slug": "zathura-pdf-mupdf", + "name": "zathura-pdf-mupdf", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975596" + ] +} diff --git a/data/software/za/zathura-pdf-poppler.json b/data/software/za/zathura-pdf-poppler.json new file mode 100644 index 000000000000..aa0638cce9ee --- /dev/null +++ b/data/software/za/zathura-pdf-poppler.json @@ -0,0 +1,8 @@ +{ + "slug": "zathura-pdf-poppler", + "name": "zathura-pdf-poppler", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975597" + ] +} diff --git a/data/software/za/zathura-ps.json b/data/software/za/zathura-ps.json new file mode 100644 index 000000000000..e7ed914377d3 --- /dev/null +++ b/data/software/za/zathura-ps.json @@ -0,0 +1,8 @@ +{ + "slug": "zathura-ps", + "name": "zathura-ps", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975598" + ] +} diff --git a/data/software/zb/zbrush.json b/data/software/zb/zbrush.json new file mode 100644 index 000000000000..ce45caab8a88 --- /dev/null +++ b/data/software/zb/zbrush.json @@ -0,0 +1,18 @@ +{ + "slug": "zbrush", + "name": "ZBrush", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135964" + ], + "developers": [ + "MAXON Computer" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "licenses": [ + "proprietary license" + ] +} diff --git a/data/software/zb/zbus.json b/data/software/zb/zbus.json new file mode 100644 index 000000000000..37d85eb598b0 --- /dev/null +++ b/data/software/zb/zbus.json @@ -0,0 +1,8 @@ +{ + "slug": "zbus", + "name": "Zbus", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8067847" + ] +} diff --git a/data/software/zc/zclassic.json b/data/software/zc/zclassic.json new file mode 100644 index 000000000000..5a15f7464d5f --- /dev/null +++ b/data/software/zc/zclassic.json @@ -0,0 +1,8 @@ +{ + "slug": "zclassic", + "name": "Zclassic", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q46996009" + ] +} diff --git a/data/software/zc/zconvert.json b/data/software/zc/zconvert.json new file mode 100644 index 000000000000..a7ef077d0e0e --- /dev/null +++ b/data/software/zc/zconvert.json @@ -0,0 +1,11 @@ +{ + "slug": "zconvert", + "name": "zConvert", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8062992" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/ze/zea-configurator.json b/data/software/ze/zea-configurator.json new file mode 100644 index 000000000000..a4836ac8e1d6 --- /dev/null +++ b/data/software/ze/zea-configurator.json @@ -0,0 +1,11 @@ +{ + "slug": "zea-configurator", + "name": "Zea Configurator", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139674743" + ], + "developers": [ + "Zea Inc" + ] +} diff --git a/data/software/ze/zea-cortex.json b/data/software/ze/zea-cortex.json new file mode 100644 index 000000000000..dfe0a02f9500 --- /dev/null +++ b/data/software/ze/zea-cortex.json @@ -0,0 +1,11 @@ +{ + "slug": "zea-cortex", + "name": "Zea Cortex", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139663556" + ], + "developers": [ + "Zea Inc" + ] +} diff --git a/data/software/ze/zea-illustrations.json b/data/software/ze/zea-illustrations.json new file mode 100644 index 000000000000..f0c4cb6dae11 --- /dev/null +++ b/data/software/ze/zea-illustrations.json @@ -0,0 +1,11 @@ +{ + "slug": "zea-illustrations", + "name": "Zea Illustrations", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139674759" + ], + "developers": [ + "Zea Inc" + ] +} diff --git a/data/software/ze/zea-parts.json b/data/software/ze/zea-parts.json new file mode 100644 index 000000000000..3aa3bfcd28bb --- /dev/null +++ b/data/software/ze/zea-parts.json @@ -0,0 +1,11 @@ +{ + "slug": "zea-parts", + "name": "Zea Parts", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139674728" + ], + "developers": [ + "Zea Inc" + ] +} diff --git a/data/software/ze/zebedee.json b/data/software/ze/zebedee.json new file mode 100644 index 000000000000..9a576695f4c1 --- /dev/null +++ b/data/software/ze/zebedee.json @@ -0,0 +1,11 @@ +{ + "slug": "zebedee", + "name": "Zebedee", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q962834" + ], + "licenses": [ + "GNU General Public License, version 2.0 or later" + ] +} diff --git a/data/software/ze/zebtab.json b/data/software/ze/zebtab.json new file mode 100644 index 000000000000..2117ad16f8ac --- /dev/null +++ b/data/software/ze/zebtab.json @@ -0,0 +1,11 @@ +{ + "slug": "zebtab", + "name": "Zebtab", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8068318" + ], + "licenses": [ + "freeware" + ] +} diff --git a/data/software/ze/zed.json b/data/software/ze/zed.json new file mode 100644 index 000000000000..42bf8ee2dc82 --- /dev/null +++ b/data/software/ze/zed.json @@ -0,0 +1,17 @@ +{ + "slug": "zed", + "name": "Zed", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112301707" + ], + "operating_systems": [ + "FreeBSD", + "macOS", + "Microsoft Windows" + ], + "licenses": [ + "Apache Software License 2.0", + "GNU General Public License, version 3.0" + ] +} diff --git a/data/software/ze/zedal.json b/data/software/ze/zedal.json new file mode 100644 index 000000000000..59acbca82976 --- /dev/null +++ b/data/software/ze/zedal.json @@ -0,0 +1,11 @@ +{ + "slug": "zedal", + "name": "ZEDAL", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140332363" + ], + "developers": [ + "ZEDAL GmbH" + ] +} diff --git a/data/software/ze/zedge-inc.json b/data/software/ze/zedge-inc.json new file mode 100644 index 000000000000..74b579963d73 --- /dev/null +++ b/data/software/ze/zedge-inc.json @@ -0,0 +1,9 @@ +{ + "slug": "zedge-inc", + "name": "Zedge, Inc", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17091060" + ], + "release_date": "2003-01-01" +} diff --git a/data/software/ze/zeemaps.json b/data/software/ze/zeemaps.json new file mode 100644 index 000000000000..58617852f6f8 --- /dev/null +++ b/data/software/ze/zeemaps.json @@ -0,0 +1,8 @@ +{ + "slug": "zeemaps", + "name": "ZeeMaps", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084787" + ] +} diff --git a/data/software/ze/zelph.json b/data/software/ze/zelph.json new file mode 100644 index 000000000000..02cbf0184efa --- /dev/null +++ b/data/software/ze/zelph.json @@ -0,0 +1,8 @@ +{ + "slug": "zelph", + "name": "zelph", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140180003" + ] +} diff --git a/data/software/ze/zemanta.json b/data/software/ze/zemanta.json new file mode 100644 index 000000000000..efc82891f3f8 --- /dev/null +++ b/data/software/ze/zemanta.json @@ -0,0 +1,8 @@ +{ + "slug": "zemanta", + "name": "Zemanta", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q735457" + ] +} diff --git a/data/software/ze/zen-sources.json b/data/software/ze/zen-sources.json new file mode 100644 index 000000000000..29ee99a483cf --- /dev/null +++ b/data/software/ze/zen-sources.json @@ -0,0 +1,8 @@ +{ + "slug": "zen-sources", + "name": "zen-sources", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975599" + ] +} diff --git a/data/software/ze/zendnn.json b/data/software/ze/zendnn.json new file mode 100644 index 000000000000..ca7a577cd307 --- /dev/null +++ b/data/software/ze/zendnn.json @@ -0,0 +1,14 @@ +{ + "slug": "zendnn", + "name": "ZenDNN", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122583188" + ], + "developers": [ + "Ratan Prasad" + ], + "licenses": [ + "Apache Software License 2.0" + ] +} diff --git a/data/software/ze/zenkit.json b/data/software/ze/zenkit.json new file mode 100644 index 000000000000..5668c6313727 --- /dev/null +++ b/data/software/ze/zenkit.json @@ -0,0 +1,16 @@ +{ + "slug": "zenkit", + "name": "Zenkit", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q55230256" + ], + "developers": [ + "Axonic Informationssysteme GmbH" + ], + "operating_systems": [ + "iOS", + "macOS", + "Microsoft Windows" + ] +} diff --git a/data/software/ze/zenon-software.json b/data/software/ze/zenon-software.json new file mode 100644 index 000000000000..f046100f9726 --- /dev/null +++ b/data/software/ze/zenon-software.json @@ -0,0 +1,8 @@ +{ + "slug": "zenon-software", + "name": "Zenon Software", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q189742" + ] +} diff --git a/data/software/ze/zenoo.json b/data/software/ze/zenoo.json new file mode 100644 index 000000000000..4d3740793c6d --- /dev/null +++ b/data/software/ze/zenoo.json @@ -0,0 +1,16 @@ +{ + "slug": "zenoo", + "name": "Zenoo", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138769927" + ], + "developers": [ + "Zenoo" + ], + "programming_languages": [ + "Java", + "Node.js", + "React" + ] +} diff --git a/data/software/ze/zeobuilder.json b/data/software/ze/zeobuilder.json new file mode 100644 index 000000000000..8413db166338 --- /dev/null +++ b/data/software/ze/zeobuilder.json @@ -0,0 +1,11 @@ +{ + "slug": "zeobuilder", + "name": "Zeobuilder", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125096749" + ], + "licenses": [ + "GNU General Public License, version 3.0" + ] +} diff --git a/data/software/ze/zer0email.json b/data/software/ze/zer0email.json new file mode 100644 index 000000000000..a26a80f8c5b5 --- /dev/null +++ b/data/software/ze/zer0email.json @@ -0,0 +1,8 @@ +{ + "slug": "zer0email", + "name": "Zer0Email", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140377996" + ] +} diff --git a/data/software/ze/zeroday-emergency-response-team.json b/data/software/ze/zeroday-emergency-response-team.json new file mode 100644 index 000000000000..dcec05019922 --- /dev/null +++ b/data/software/ze/zeroday-emergency-response-team.json @@ -0,0 +1,8 @@ +{ + "slug": "zeroday-emergency-response-team", + "name": "Zeroday Emergency Response Team", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8069627" + ] +} diff --git a/data/software/ze/zeropc.json b/data/software/ze/zeropc.json new file mode 100644 index 000000000000..3f294ecb6788 --- /dev/null +++ b/data/software/ze/zeropc.json @@ -0,0 +1,8 @@ +{ + "slug": "zeropc", + "name": "ZeroPC", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8069478" + ] +} diff --git a/data/software/ze/zerospyware.json b/data/software/ze/zerospyware.json new file mode 100644 index 000000000000..3263bc7273c2 --- /dev/null +++ b/data/software/ze/zerospyware.json @@ -0,0 +1,8 @@ +{ + "slug": "zerospyware", + "name": "Zerospyware", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8069646" + ] +} diff --git a/data/software/ze/zeroth.json b/data/software/ze/zeroth.json new file mode 100644 index 000000000000..fab68225a9b2 --- /dev/null +++ b/data/software/ze/zeroth.json @@ -0,0 +1,8 @@ +{ + "slug": "zeroth", + "name": "Zeroth", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22909897" + ] +} diff --git a/data/software/ze/zerynth.json b/data/software/ze/zerynth.json new file mode 100644 index 000000000000..a93f55b51bf4 --- /dev/null +++ b/data/software/ze/zerynth.json @@ -0,0 +1,8 @@ +{ + "slug": "zerynth", + "name": "Zerynth", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q85817077" + ] +} diff --git a/data/software/ze/zestmeup.json b/data/software/ze/zestmeup.json new file mode 100644 index 000000000000..e738b73fef93 --- /dev/null +++ b/data/software/ze/zestmeup.json @@ -0,0 +1,8 @@ +{ + "slug": "zestmeup", + "name": "ZestMeUp", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138315299" + ] +} diff --git a/data/software/ze/zettelkasten.json b/data/software/ze/zettelkasten.json new file mode 100644 index 000000000000..30a68f3a824b --- /dev/null +++ b/data/software/ze/zettelkasten.json @@ -0,0 +1,18 @@ +{ + "slug": "zettelkasten", + "name": "Zettelkasten", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105748778" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [ + "Java" + ], + "licenses": [ + "GNU General Public License, version 3.0" + ] +} diff --git a/data/software/ze/zeus-assembler.json b/data/software/ze/zeus-assembler.json new file mode 100644 index 000000000000..071f93dbcfc6 --- /dev/null +++ b/data/software/ze/zeus-assembler.json @@ -0,0 +1,11 @@ +{ + "slug": "zeus-assembler", + "name": "Zeus Assembler", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8069813" + ], + "developers": [ + "Crystal Computing" + ] +} diff --git a/data/software/zf/zfone.json b/data/software/zf/zfone.json new file mode 100644 index 000000000000..1112c5faea78 --- /dev/null +++ b/data/software/zf/zfone.json @@ -0,0 +1,11 @@ +{ + "slug": "zfone", + "name": "Zfone", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q197113" + ], + "developers": [ + "Phil Zimmermann" + ] +} diff --git a/data/software/zf/zfs-on-linux.json b/data/software/zf/zfs-on-linux.json new file mode 100644 index 000000000000..ca7a928dfff1 --- /dev/null +++ b/data/software/zf/zfs-on-linux.json @@ -0,0 +1,11 @@ +{ + "slug": "zfs-on-linux", + "name": "ZFS on Linux", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975600" + ], + "licenses": [ + "Common Development and Distribution License version 1.0" + ] +} diff --git a/data/software/zh/zhihu.json b/data/software/zh/zhihu.json new file mode 100644 index 000000000000..3d57abad132f --- /dev/null +++ b/data/software/zh/zhihu.json @@ -0,0 +1,8 @@ +{ + "slug": "zhihu", + "name": "Zhihu", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q15898172" + ] +} diff --git a/data/software/zh/zhura.json b/data/software/zh/zhura.json new file mode 100644 index 000000000000..7903b3248156 --- /dev/null +++ b/data/software/zh/zhura.json @@ -0,0 +1,9 @@ +{ + "slug": "zhura", + "name": "Zhura", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8071242" + ], + "release_date": "2007-01-01" +} diff --git a/data/software/zi/zight.json b/data/software/zi/zight.json new file mode 100644 index 000000000000..92bf30a3594e --- /dev/null +++ b/data/software/zi/zight.json @@ -0,0 +1,8 @@ +{ + "slug": "zight", + "name": "Zight", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q64008614" + ] +} diff --git a/data/software/zi/zigzag.json b/data/software/zi/zigzag.json new file mode 100644 index 000000000000..821ecc946460 --- /dev/null +++ b/data/software/zi/zigzag.json @@ -0,0 +1,8 @@ +{ + "slug": "zigzag", + "name": "ZigZag", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8071747" + ] +} diff --git a/data/software/zi/zinc.json b/data/software/zi/zinc.json new file mode 100644 index 000000000000..76365f0933c5 --- /dev/null +++ b/data/software/zi/zinc.json @@ -0,0 +1,8 @@ +{ + "slug": "zinc", + "name": "ZiNc", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q9390902" + ] +} diff --git a/data/software/zi/zing-technologies.json b/data/software/zi/zing-technologies.json new file mode 100644 index 000000000000..e27f2a73407b --- /dev/null +++ b/data/software/zi/zing-technologies.json @@ -0,0 +1,8 @@ +{ + "slug": "zing-technologies", + "name": "Zing Technologies", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8072375" + ] +} diff --git a/data/software/zi/zingchart.json b/data/software/zi/zingchart.json new file mode 100644 index 000000000000..a09439176940 --- /dev/null +++ b/data/software/zi/zingchart.json @@ -0,0 +1,8 @@ +{ + "slug": "zingchart", + "name": "ZingChart", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084788" + ] +} diff --git a/data/software/zi/zinnia.json b/data/software/zi/zinnia.json new file mode 100644 index 000000000000..d84ebb7d9724 --- /dev/null +++ b/data/software/zi/zinnia.json @@ -0,0 +1,11 @@ +{ + "slug": "zinnia", + "name": "Zinnia", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11255924" + ], + "licenses": [ + "3-clause BSD License" + ] +} diff --git a/data/software/zi/zinstall-easy-transfer.json b/data/software/zi/zinstall-easy-transfer.json new file mode 100644 index 000000000000..6016ffc338ac --- /dev/null +++ b/data/software/zi/zinstall-easy-transfer.json @@ -0,0 +1,8 @@ +{ + "slug": "zinstall-easy-transfer", + "name": "Zinstall Easy Transfer", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22909903" + ] +} diff --git a/data/software/zi/zinstall-migration-kit-pro.json b/data/software/zi/zinstall-migration-kit-pro.json new file mode 100644 index 000000000000..10a56216fdad --- /dev/null +++ b/data/software/zi/zinstall-migration-kit-pro.json @@ -0,0 +1,8 @@ +{ + "slug": "zinstall-migration-kit-pro", + "name": "Zinstall Migration Kit Pro", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22909904" + ] +} diff --git a/data/software/zi/zinstall-winwin.json b/data/software/zi/zinstall-winwin.json new file mode 100644 index 000000000000..0effecc38395 --- /dev/null +++ b/data/software/zi/zinstall-winwin.json @@ -0,0 +1,8 @@ +{ + "slug": "zinstall-winwin", + "name": "Zinstall WinWin", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18157188" + ] +} diff --git a/data/software/zi/zinstall-xp7.json b/data/software/zi/zinstall-xp7.json new file mode 100644 index 000000000000..3bdb69afc4fd --- /dev/null +++ b/data/software/zi/zinstall-xp7.json @@ -0,0 +1,8 @@ +{ + "slug": "zinstall-xp7", + "name": "Zinstall XP7", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8072455" + ] +} diff --git a/data/software/zi/zipbooks.json b/data/software/zi/zipbooks.json new file mode 100644 index 000000000000..667e3c0980c0 --- /dev/null +++ b/data/software/zi/zipbooks.json @@ -0,0 +1,8 @@ +{ + "slug": "zipbooks", + "name": "ZipBooks", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q23680029" + ] +} diff --git a/data/software/zi/zipit.json b/data/software/zi/zipit.json new file mode 100644 index 000000000000..39e26ad6b8c8 --- /dev/null +++ b/data/software/zi/zipit.json @@ -0,0 +1,8 @@ +{ + "slug": "zipit", + "name": "ZipIt", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q30638061" + ] +} diff --git a/data/software/zi/zitrr-camera.json b/data/software/zi/zitrr-camera.json new file mode 100644 index 000000000000..a87b11711d8a --- /dev/null +++ b/data/software/zi/zitrr-camera.json @@ -0,0 +1,9 @@ +{ + "slug": "zitrr-camera", + "name": "Zitrr camera", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8072850" + ], + "release_date": "2013-03-10" +} diff --git a/data/software/zm/zmanda-cloud-backup.json b/data/software/zm/zmanda-cloud-backup.json new file mode 100644 index 000000000000..f424f1f8362a --- /dev/null +++ b/data/software/zm/zmanda-cloud-backup.json @@ -0,0 +1,14 @@ +{ + "slug": "zmanda-cloud-backup", + "name": "Zmanda Cloud Backup", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8073083" + ], + "developers": [ + "Zmanda" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/zm/zmap.json b/data/software/zm/zmap.json new file mode 100644 index 000000000000..0dd687c01682 --- /dev/null +++ b/data/software/zm/zmap.json @@ -0,0 +1,11 @@ +{ + "slug": "zmap", + "name": "ZMap", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975603" + ], + "licenses": [ + "Apache License" + ] +} diff --git a/data/software/zm/zmodeler.json b/data/software/zm/zmodeler.json new file mode 100644 index 000000000000..008e278e86fb --- /dev/null +++ b/data/software/zm/zmodeler.json @@ -0,0 +1,11 @@ +{ + "slug": "zmodeler", + "name": "Zmodeler", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3505124" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/zn/znameniti.json b/data/software/zn/znameniti.json new file mode 100644 index 000000000000..7b4e3dbc8bee --- /dev/null +++ b/data/software/zn/znameniti.json @@ -0,0 +1,8 @@ +{ + "slug": "znameniti", + "name": "Znameniti", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084490" + ] +} diff --git a/data/software/zo/zoho-crm.json b/data/software/zo/zoho-crm.json new file mode 100644 index 000000000000..160b2a43e742 --- /dev/null +++ b/data/software/zo/zoho-crm.json @@ -0,0 +1,8 @@ +{ + "slug": "zoho-crm", + "name": "Zoho CRM", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135558078" + ] +} diff --git a/data/software/zo/zoho.json b/data/software/zo/zoho.json new file mode 100644 index 000000000000..55c53b8f7162 --- /dev/null +++ b/data/software/zo/zoho.json @@ -0,0 +1,8 @@ +{ + "slug": "zoho", + "name": "Zoho", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084789" + ] +} diff --git a/data/software/zo/zola-project.json b/data/software/zo/zola-project.json new file mode 100644 index 000000000000..28ce50b0b2de --- /dev/null +++ b/data/software/zo/zola-project.json @@ -0,0 +1,9 @@ +{ + "slug": "zola-project", + "name": "ZOLA Project", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25113099" + ], + "release_date": "2013-06-20" +} diff --git a/data/software/zo/zona.json b/data/software/zo/zona.json new file mode 100644 index 000000000000..a944e2f451fa --- /dev/null +++ b/data/software/zo/zona.json @@ -0,0 +1,15 @@ +{ + "slug": "zona", + "name": "Zona", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28134050" + ], + "release_date": "2014-01-01", + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [ + "Java" + ] +} diff --git a/data/software/zo/zonealarm-z100g.json b/data/software/zo/zonealarm-z100g.json new file mode 100644 index 000000000000..2ce5b7c94f47 --- /dev/null +++ b/data/software/zo/zonealarm-z100g.json @@ -0,0 +1,12 @@ +{ + "slug": "zonealarm-z100g", + "name": "ZoneAlarm Z100G", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8073889" + ], + "release_date": "2006-01-01", + "developers": [ + "Check Point" + ] +} diff --git a/data/software/zo/zoomerang.json b/data/software/zo/zoomerang.json new file mode 100644 index 000000000000..c12750ba147f --- /dev/null +++ b/data/software/zo/zoomerang.json @@ -0,0 +1,8 @@ +{ + "slug": "zoomerang", + "name": "Zoomerang", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084790" + ] +} diff --git a/data/software/zo/zoomify.json b/data/software/zo/zoomify.json new file mode 100644 index 000000000000..2f9d5d3f0ecd --- /dev/null +++ b/data/software/zo/zoomify.json @@ -0,0 +1,8 @@ +{ + "slug": "zoomify", + "name": "Zoomify", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q56298707" + ] +} diff --git a/data/software/zo/zoomq3d.json b/data/software/zo/zoomq3d.json new file mode 100644 index 000000000000..f19f78c3e013 --- /dev/null +++ b/data/software/zo/zoomq3d.json @@ -0,0 +1,8 @@ +{ + "slug": "zoomq3d", + "name": "ZOOMQ3D", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8063250" + ] +} diff --git a/data/software/zo/zotfile.json b/data/software/zo/zotfile.json new file mode 100644 index 000000000000..7877bc6c7bad --- /dev/null +++ b/data/software/zo/zotfile.json @@ -0,0 +1,8 @@ +{ + "slug": "zotfile", + "name": "ZotFile", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084791" + ] +} diff --git a/data/software/zo/zotpress.json b/data/software/zo/zotpress.json new file mode 100644 index 000000000000..01f38e840655 --- /dev/null +++ b/data/software/zo/zotpress.json @@ -0,0 +1,8 @@ +{ + "slug": "zotpress", + "name": "Zotpress", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084793" + ] +} diff --git a/data/software/zo/zoviz.json b/data/software/zo/zoviz.json new file mode 100644 index 000000000000..3b9ad0a0d845 --- /dev/null +++ b/data/software/zo/zoviz.json @@ -0,0 +1,8 @@ +{ + "slug": "zoviz", + "name": "Zoviz", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131582298" + ] +} diff --git a/data/software/zs/zserver-suite.json b/data/software/zs/zserver-suite.json new file mode 100644 index 000000000000..1361d98874b8 --- /dev/null +++ b/data/software/zs/zserver-suite.json @@ -0,0 +1,8 @@ +{ + "slug": "zserver-suite", + "name": "Zserver Suite", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4053613" + ] +} diff --git a/data/software/zs/zsky-mcp-server.json b/data/software/zs/zsky-mcp-server.json new file mode 100644 index 000000000000..8a7cf71cc02b --- /dev/null +++ b/data/software/zs/zsky-mcp-server.json @@ -0,0 +1,8 @@ +{ + "slug": "zsky-mcp-server", + "name": "ZSky MCP Server", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139814098" + ] +} diff --git a/data/software/zs/zsky-prompt-library.json b/data/software/zs/zsky-prompt-library.json new file mode 100644 index 000000000000..5087d548b6cb --- /dev/null +++ b/data/software/zs/zsky-prompt-library.json @@ -0,0 +1,11 @@ +{ + "slug": "zsky-prompt-library", + "name": "ZSky Prompt Library", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139814109" + ], + "licenses": [ + "MIT License" + ] +} diff --git a/data/software/zu/zubrag-html-tags-stripper.json b/data/software/zu/zubrag-html-tags-stripper.json new file mode 100644 index 000000000000..7fc0a68260c7 --- /dev/null +++ b/data/software/zu/zubrag-html-tags-stripper.json @@ -0,0 +1,8 @@ +{ + "slug": "zubrag-html-tags-stripper", + "name": "Zubrag HTML Tags Stripper", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084794" + ] +} diff --git a/data/software/zu/zula.json b/data/software/zu/zula.json new file mode 100644 index 000000000000..4232130804b1 --- /dev/null +++ b/data/software/zu/zula.json @@ -0,0 +1,8 @@ +{ + "slug": "zula", + "name": "Zula", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17091171" + ] +} diff --git a/data/software/zu/zultrax.json b/data/software/zu/zultrax.json new file mode 100644 index 000000000000..1d3662184317 --- /dev/null +++ b/data/software/zu/zultrax.json @@ -0,0 +1,11 @@ +{ + "slug": "zultrax", + "name": "Zultrax", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q228856" + ], + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/zu/zumodrive.json b/data/software/zu/zumodrive.json new file mode 100644 index 000000000000..fa18e35108bd --- /dev/null +++ b/data/software/zu/zumodrive.json @@ -0,0 +1,12 @@ +{ + "slug": "zumodrive", + "name": "ZumoDrive", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4053619" + ], + "release_date": "2009-02-01", + "operating_systems": [ + "Microsoft Windows" + ] +} diff --git a/data/software/zu/zune-social.json b/data/software/zu/zune-social.json new file mode 100644 index 000000000000..0e68b6cf932e --- /dev/null +++ b/data/software/zu/zune-social.json @@ -0,0 +1,8 @@ +{ + "slug": "zune-social", + "name": "Zune Social", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4053617" + ] +} diff --git a/data/software/zu/zune.json b/data/software/zu/zune.json new file mode 100644 index 000000000000..2184da380d6a --- /dev/null +++ b/data/software/zu/zune.json @@ -0,0 +1,14 @@ +{ + "slug": "zune", + "name": "Zune", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q229851" + ], + "developers": [ + "Microsoft" + ], + "operating_systems": [ + "Windows Embedded CE 6.0" + ] +} diff --git a/data/software/zu/zuora.json b/data/software/zu/zuora.json new file mode 100644 index 000000000000..1d18bd304c4d --- /dev/null +++ b/data/software/zu/zuora.json @@ -0,0 +1,8 @@ +{ + "slug": "zuora", + "name": "Zuora", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8075320" + ] +} diff --git a/data/software/zx/zx-7.json b/data/software/zx/zx-7.json new file mode 100644 index 000000000000..8d8357d2b4e0 --- /dev/null +++ b/data/software/zx/zx-7.json @@ -0,0 +1,8 @@ +{ + "slug": "zx-7", + "name": "ZX-7", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10857008" + ] +} diff --git a/data/software/zx/zx-spectrum-software.json b/data/software/zx/zx-spectrum-software.json new file mode 100644 index 000000000000..0235be05efe7 --- /dev/null +++ b/data/software/zx/zx-spectrum-software.json @@ -0,0 +1,8 @@ +{ + "slug": "zx-spectrum-software", + "name": "ZX Spectrum software", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4379764" + ] +} diff --git a/data/software/zx/zxid.json b/data/software/zx/zxid.json new file mode 100644 index 000000000000..7fe6230a807c --- /dev/null +++ b/data/software/zx/zxid.json @@ -0,0 +1,11 @@ +{ + "slug": "zxid", + "name": "ZXID", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8063309" + ], + "licenses": [ + "Apache License" + ] +} diff --git a/data/software/zy/zygisk.json b/data/software/zy/zygisk.json new file mode 100644 index 000000000000..9097ead5de40 --- /dev/null +++ b/data/software/zy/zygisk.json @@ -0,0 +1,8 @@ +{ + "slug": "zygisk", + "name": "Zygisk", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125966734" + ] +} diff --git a/data/software/zy/zync-render.json b/data/software/zy/zync-render.json new file mode 100644 index 000000000000..b9020af72ed1 --- /dev/null +++ b/data/software/zy/zync-render.json @@ -0,0 +1,11 @@ +{ + "slug": "zync-render", + "name": "Zync Render", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60146133" + ], + "developers": [ + "Google" + ] +} diff --git a/data/software/zy/zynewave-podium.json b/data/software/zy/zynewave-podium.json new file mode 100644 index 000000000000..ea97251d43b3 --- /dev/null +++ b/data/software/zy/zynewave-podium.json @@ -0,0 +1,8 @@ +{ + "slug": "zynewave-podium", + "name": "Zynewave Podium", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8075933" + ] +} diff --git a/data/software/zy/zyslen.json b/data/software/zy/zyslen.json new file mode 100644 index 000000000000..1ba774d64f97 --- /dev/null +++ b/data/software/zy/zyslen.json @@ -0,0 +1,8 @@ +{ + "slug": "zyslen", + "name": "Zyslen", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124986587" + ] +} diff --git a/data/software/zy/zyweb.json b/data/software/zy/zyweb.json new file mode 100644 index 000000000000..75fa54167d25 --- /dev/null +++ b/data/software/zy/zyweb.json @@ -0,0 +1,8 @@ +{ + "slug": "zyweb", + "name": "ZyWeb", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8075729" + ] +} diff --git a/data/software/zz/zzuf.json b/data/software/zz/zzuf.json new file mode 100644 index 000000000000..950187822eab --- /dev/null +++ b/data/software/zz/zzuf.json @@ -0,0 +1,8 @@ +{ + "slug": "zzuf", + "name": "zzuf", + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110473838" + ] +} diff --git a/site/public/openapi.json b/site/public/openapi.json index d404be99e48d..0d63d9ea256c 100644 --- a/site/public/openapi.json +++ b/site/public/openapi.json @@ -1857,6 +1857,120 @@ } } } + }, + "/v1/software": { + "get": { + "tags": [ + "software" + ], + "summary": "List software", + "operationId": "list_software_v1_software_get", + "parameters": [ + { + "name": "sort", + "in": "query", + "required": false, + "schema": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "title": "Sort" + } + }, + { + "name": "limit", + "in": "query", + "required": false, + "schema": { + "type": "integer", + "maximum": 100, + "minimum": 1, + "default": 20, + "title": "Limit" + } + }, + { + "name": "offset", + "in": "query", + "required": false, + "schema": { + "type": "integer", + "minimum": 0, + "default": 0, + "title": "Offset" + } + } + ], + "responses": { + "200": { + "description": "Successful Response", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Page_ResourceRef_" + } + } + } + }, + "422": { + "description": "Validation Error", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/HTTPValidationError" + } + } + } + } + } + } + }, + "/v1/software/{slug}": { + "get": { + "tags": [ + "software" + ], + "summary": "Get a software product", + "operationId": "get_software_v1_software__slug__get", + "parameters": [ + { + "name": "slug", + "in": "path", + "required": true, + "schema": { + "type": "string", + "title": "Slug" + } + } + ], + "responses": { + "200": { + "description": "Successful Response", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/SoftwareRead" + } + } + } + }, + "422": { + "description": "Validation Error", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/HTTPValidationError" + } + } + } + } + } + } } }, "components": { @@ -3989,6 +4103,120 @@ "title": "SoCSummary", "description": "SoC reference embedded in a smartphone detail (appendix C)." }, + "SoftwareRead": { + "properties": { + "id": { + "type": "integer", + "title": "Id" + }, + "slug": { + "type": "string", + "title": "Slug" + }, + "name": { + "type": "string", + "title": "Name" + }, + "release_date": { + "anyOf": [ + { + "type": "string", + "format": "date" + }, + { + "type": "null" + } + ], + "title": "Release Date" + }, + "developers": { + "items": { + "type": "string" + }, + "type": "array", + "title": "Developers" + }, + "publishers": { + "items": { + "type": "string" + }, + "type": "array", + "title": "Publishers" + }, + "operating_systems": { + "items": { + "type": "string" + }, + "type": "array", + "title": "Operating Systems" + }, + "programming_languages": { + "items": { + "type": "string" + }, + "type": "array", + "title": "Programming Languages" + }, + "licenses": { + "items": { + "type": "string" + }, + "type": "array", + "title": "Licenses" + }, + "genres": { + "items": { + "type": "string" + }, + "type": "array", + "title": "Genres" + }, + "verified": { + "type": "boolean", + "title": "Verified" + }, + "source_urls": { + "items": { + "type": "string" + }, + "type": "array", + "title": "Source Urls" + }, + "created_at": { + "type": "string", + "format": "date-time", + "title": "Created At" + }, + "updated_at": { + "type": "string", + "format": "date-time", + "title": "Updated At" + }, + "url": { + "type": "string", + "title": "Url" + } + }, + "type": "object", + "required": [ + "id", + "slug", + "name", + "developers", + "publishers", + "operating_systems", + "programming_languages", + "licenses", + "genres", + "verified", + "source_urls", + "created_at", + "updated_at", + "url" + ], + "title": "SoftwareRead", + "description": "Full software detail response." + }, "ValidationError": { "properties": { "loc": { diff --git a/site/public/v1/games/10-computer-hits-2/index.json b/site/public/v1/games/10-computer-hits-2/index.json new file mode 100644 index 000000000000..0344b78719d7 --- /dev/null +++ b/site/public/v1/games/10-computer-hits-2/index.json @@ -0,0 +1,29 @@ +{ + "id": 93, + "slug": "10-computer-hits-2", + "name": "10 Computer Hits 2", + "release_date": "1986-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Amstrad CPC" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Beau Jolly" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q98399029" + ], + "created_at": "2026-07-10T10:09:55.201214", + "updated_at": "2026-07-10T10:09:55.201214", + "url": "/v1/games/10-computer-hits-2" +} diff --git a/site/public/v1/games/10-computer-hits-3/index.json b/site/public/v1/games/10-computer-hits-3/index.json new file mode 100644 index 000000000000..de84a7d489d6 --- /dev/null +++ b/site/public/v1/games/10-computer-hits-3/index.json @@ -0,0 +1,29 @@ +{ + "id": 94, + "slug": "10-computer-hits-3", + "name": "10 Computer Hits 3", + "release_date": "1986-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Amstrad CPC" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Beau Jolly" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105669831" + ], + "created_at": "2026-07-10T10:09:55.201214", + "updated_at": "2026-07-10T10:09:55.201214", + "url": "/v1/games/10-computer-hits-3" +} diff --git a/site/public/v1/games/10-computer-hits-4/index.json b/site/public/v1/games/10-computer-hits-4/index.json new file mode 100644 index 000000000000..1bfac6f5f59d --- /dev/null +++ b/site/public/v1/games/10-computer-hits-4/index.json @@ -0,0 +1,29 @@ +{ + "id": 95, + "slug": "10-computer-hits-4", + "name": "10 Computer Hits 4", + "release_date": "1988-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Amstrad CPC" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Beau Jolly" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q98399061" + ], + "created_at": "2026-07-10T10:09:55.202195", + "updated_at": "2026-07-10T10:09:55.202195", + "url": "/v1/games/10-computer-hits-4" +} diff --git a/site/public/v1/games/10-computer-hits-5/index.json b/site/public/v1/games/10-computer-hits-5/index.json new file mode 100644 index 000000000000..18347dfce476 --- /dev/null +++ b/site/public/v1/games/10-computer-hits-5/index.json @@ -0,0 +1,29 @@ +{ + "id": 96, + "slug": "10-computer-hits-5", + "name": "10 Computer Hits 5", + "release_date": "1989-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Amstrad CPC" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Beau Jolly" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113516824" + ], + "created_at": "2026-07-10T10:09:55.202195", + "updated_at": "2026-07-10T10:09:55.202195", + "url": "/v1/games/10-computer-hits-5" +} diff --git a/site/public/v1/games/10-computer-hits/index.json b/site/public/v1/games/10-computer-hits/index.json new file mode 100644 index 000000000000..728af6469afc --- /dev/null +++ b/site/public/v1/games/10-computer-hits/index.json @@ -0,0 +1,29 @@ +{ + "id": 97, + "slug": "10-computer-hits", + "name": "10 Computer Hits", + "release_date": "1985-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Amstrad CPC" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Beau Jolly" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q96621136" + ], + "created_at": "2026-07-10T10:09:55.202195", + "updated_at": "2026-07-10T10:09:55.202195", + "url": "/v1/games/10-computer-hits" +} diff --git a/site/public/v1/games/10-great-games/index.json b/site/public/v1/games/10-great-games/index.json new file mode 100644 index 000000000000..17f90fd00bdc --- /dev/null +++ b/site/public/v1/games/10-great-games/index.json @@ -0,0 +1,25 @@ +{ + "id": 124, + "slug": "10-great-games", + "name": "10 Great Games", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126184165" + ], + "created_at": "2026-07-10T10:09:55.210149", + "updated_at": "2026-07-10T10:09:55.210149", + "url": "/v1/games/10-great-games" +} diff --git a/site/public/v1/games/10-intelligent-strategy-games/index.json b/site/public/v1/games/10-intelligent-strategy-games/index.json new file mode 100644 index 000000000000..00e71860fba6 --- /dev/null +++ b/site/public/v1/games/10-intelligent-strategy-games/index.json @@ -0,0 +1,25 @@ +{ + "id": 125, + "slug": "10-intelligent-strategy-games", + "name": "10 Intelligent Strategy Games", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126185033" + ], + "created_at": "2026-07-10T10:09:55.210149", + "updated_at": "2026-07-10T10:09:55.210149", + "url": "/v1/games/10-intelligent-strategy-games" +} diff --git a/site/public/v1/games/10-megahits-vol-2/index.json b/site/public/v1/games/10-megahits-vol-2/index.json new file mode 100644 index 000000000000..6060165e656f --- /dev/null +++ b/site/public/v1/games/10-megahits-vol-2/index.json @@ -0,0 +1,25 @@ +{ + "id": 126, + "slug": "10-megahits-vol-2", + "name": "10 Megahits Vol 2", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126187179" + ], + "created_at": "2026-07-10T10:09:55.211149", + "updated_at": "2026-07-10T10:09:55.211149", + "url": "/v1/games/10-megahits-vol-2" +} diff --git a/site/public/v1/games/10-megahits-vol-3/index.json b/site/public/v1/games/10-megahits-vol-3/index.json new file mode 100644 index 000000000000..942c29b8c0e8 --- /dev/null +++ b/site/public/v1/games/10-megahits-vol-3/index.json @@ -0,0 +1,25 @@ +{ + "id": 127, + "slug": "10-megahits-vol-3", + "name": "10 Megahits Vol 3", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126187164" + ], + "created_at": "2026-07-10T10:09:55.211149", + "updated_at": "2026-07-10T10:09:55.211149", + "url": "/v1/games/10-megahits-vol-3" +} diff --git a/site/public/v1/games/100-000-pyramid-demo/index.json b/site/public/v1/games/100-000-pyramid-demo/index.json new file mode 100644 index 000000000000..928a8f55eb19 --- /dev/null +++ b/site/public/v1/games/100-000-pyramid-demo/index.json @@ -0,0 +1,27 @@ +{ + "id": 170, + "slug": "100-000-pyramid-demo", + "name": "$100,000 Pyramid demo", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "game show video game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q104243716" + ], + "created_at": "2026-07-10T10:09:55.226952", + "updated_at": "2026-07-10T10:09:55.226952", + "url": "/v1/games/100-000-pyramid-demo" +} diff --git a/site/public/v1/games/100-bullets/index.json b/site/public/v1/games/100-bullets/index.json new file mode 100644 index 000000000000..e3e16508d318 --- /dev/null +++ b/site/public/v1/games/100-bullets/index.json @@ -0,0 +1,35 @@ +{ + "id": 178, + "slug": "100-bullets", + "name": "100 Bullets", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Game Boy Advance", + "PlayStation Portable", + "Nintendo DS", + "Wii", + "PlayStation 3" + ], + "genres": [ + "action game" + ], + "stores": [], + "developers": [ + "Acclaim Studios Austin" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8529" + ], + "created_at": "2026-07-10T10:09:55.229952", + "updated_at": "2026-07-10T10:09:55.229952", + "url": "/v1/games/100-bullets" +} diff --git a/site/public/v1/games/1171/index.json b/site/public/v1/games/1171/index.json new file mode 100644 index 000000000000..b6dc6aa110d1 --- /dev/null +++ b/site/public/v1/games/1171/index.json @@ -0,0 +1,31 @@ +{ + "id": 492, + "slug": "1171", + "name": "1171", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "personal computer" + ], + "genres": [ + "shooter game" + ], + "stores": [], + "developers": [ + "Parallax Arts Studio" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120804394" + ], + "created_at": "2026-07-10T10:09:55.319760", + "updated_at": "2026-07-10T10:09:55.319760", + "url": "/v1/games/1171" +} diff --git a/site/public/v1/games/12-is-better-than-6-the-apostles/index.json b/site/public/v1/games/12-is-better-than-6-the-apostles/index.json new file mode 100644 index 000000000000..8cfac472e200 --- /dev/null +++ b/site/public/v1/games/12-is-better-than-6-the-apostles/index.json @@ -0,0 +1,28 @@ +{ + "id": 507, + "slug": "12-is-better-than-6-the-apostles", + "name": "12 is Better Than 6: The Apostles", + "release_date": "2017-12-06", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116493396" + ], + "created_at": "2026-07-10T10:09:55.324762", + "updated_at": "2026-07-10T10:09:55.324762", + "url": "/v1/games/12-is-better-than-6-the-apostles" +} diff --git a/site/public/v1/games/1428-shadows-over-silesia-tourney-at-the-bear-rock/index.json b/site/public/v1/games/1428-shadows-over-silesia-tourney-at-the-bear-rock/index.json new file mode 100644 index 000000000000..4bdf6a856ffe --- /dev/null +++ b/site/public/v1/games/1428-shadows-over-silesia-tourney-at-the-bear-rock/index.json @@ -0,0 +1,25 @@ +{ + "id": 570, + "slug": "1428-shadows-over-silesia-tourney-at-the-bear-rock", + "name": "1428: Shadows over Silesia - Tourney at the Bear Rock", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140462379" + ], + "created_at": "2026-07-10T10:09:55.350915", + "updated_at": "2026-07-10T10:09:55.350915", + "url": "/v1/games/1428-shadows-over-silesia-tourney-at-the-bear-rock" +} diff --git a/site/public/v1/games/16-bit-collection-data-east-vol-1/index.json b/site/public/v1/games/16-bit-collection-data-east-vol-1/index.json new file mode 100644 index 000000000000..e4ea2a8a16a2 --- /dev/null +++ b/site/public/v1/games/16-bit-collection-data-east-vol-1/index.json @@ -0,0 +1,27 @@ +{ + "id": 591, + "slug": "16-bit-collection-data-east-vol-1", + "name": "16-Bit Collection: Data East Vol. 1", + "release_date": "2017-09-30", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Super Nintendo Entertainment System" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q30932006" + ], + "created_at": "2026-07-10T10:09:55.356916", + "updated_at": "2026-07-10T10:09:55.356916", + "url": "/v1/games/16-bit-collection-data-east-vol-1" +} diff --git a/site/public/v1/games/1602-a-d-by-royal-command/index.json b/site/public/v1/games/1602-a-d-by-royal-command/index.json new file mode 100644 index 000000000000..fd27bd10fe30 --- /dev/null +++ b/site/public/v1/games/1602-a-d-by-royal-command/index.json @@ -0,0 +1,27 @@ +{ + "id": 599, + "slug": "1602-a-d-by-royal-command", + "name": "1602 A.D.: By Royal Command", + "release_date": "2006-06-03", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "strategy video game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2264180" + ], + "created_at": "2026-07-10T10:09:55.359915", + "updated_at": "2026-07-10T10:09:55.359915", + "url": "/v1/games/1602-a-d-by-royal-command" +} diff --git a/site/public/v1/games/1701-a-d-gold-edition/index.json b/site/public/v1/games/1701-a-d-gold-edition/index.json new file mode 100644 index 000000000000..c32eb4caff7c --- /dev/null +++ b/site/public/v1/games/1701-a-d-gold-edition/index.json @@ -0,0 +1,25 @@ +{ + "id": 615, + "slug": "1701-a-d-gold-edition", + "name": "1701 A.D. Gold Edition", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121889010" + ], + "created_at": "2026-07-10T10:09:55.364919", + "updated_at": "2026-07-10T10:09:55.364919", + "url": "/v1/games/1701-a-d-gold-edition" +} diff --git a/site/public/v1/games/1st-cd-edition/index.json b/site/public/v1/games/1st-cd-edition/index.json new file mode 100644 index 000000000000..bd5c629b2c2e --- /dev/null +++ b/site/public/v1/games/1st-cd-edition/index.json @@ -0,0 +1,27 @@ +{ + "id": 731, + "slug": "1st-cd-edition", + "name": "1st CD Edition", + "release_date": "1989-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Commodore 64" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111435792" + ], + "created_at": "2026-07-10T10:09:55.398469", + "updated_at": "2026-07-10T10:09:55.399469", + "url": "/v1/games/1st-cd-edition" +} diff --git a/site/public/v1/games/2-hot-2-handle/index.json b/site/public/v1/games/2-hot-2-handle/index.json new file mode 100644 index 000000000000..e29c1fb73e74 --- /dev/null +++ b/site/public/v1/games/2-hot-2-handle/index.json @@ -0,0 +1,30 @@ +{ + "id": 755, + "slug": "2-hot-2-handle", + "name": "2-Hot 2-Handle", + "release_date": "1991-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Amstrad CPC", + "Commodore Amiga" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Ocean Software" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126184931" + ], + "created_at": "2026-07-10T10:09:55.407472", + "updated_at": "2026-07-10T10:09:55.407472", + "url": "/v1/games/2-hot-2-handle" +} diff --git a/site/public/v1/games/2-por-1-basketball-two-on-two-star-raiders-ii/index.json b/site/public/v1/games/2-por-1-basketball-two-on-two-star-raiders-ii/index.json new file mode 100644 index 000000000000..084a9aa0dedb --- /dev/null +++ b/site/public/v1/games/2-por-1-basketball-two-on-two-star-raiders-ii/index.json @@ -0,0 +1,27 @@ +{ + "id": 764, + "slug": "2-por-1-basketball-two-on-two-star-raiders-ii", + "name": "2 Por 1 - Basketball Two-On-Two + Star Raiders II", + "release_date": "1987-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Amstrad CPC" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134599382" + ], + "created_at": "2026-07-10T10:09:55.409472", + "updated_at": "2026-07-10T10:09:55.409472", + "url": "/v1/games/2-por-1-basketball-two-on-two-star-raiders-ii" +} diff --git a/site/public/v1/games/20-em-1/index.json b/site/public/v1/games/20-em-1/index.json new file mode 100644 index 000000000000..d41d4612e50e --- /dev/null +++ b/site/public/v1/games/20-em-1/index.json @@ -0,0 +1,29 @@ +{ + "id": 774, + "slug": "20-em-1", + "name": "20 em 1", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [ + "Tectoy" + ], + "publishers": [ + "Tectoy" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4630619" + ], + "created_at": "2026-07-10T10:09:55.412468", + "updated_at": "2026-07-10T10:09:55.412468", + "url": "/v1/games/20-em-1" +} diff --git a/site/public/v1/games/2018-fifa-world-cup/index.json b/site/public/v1/games/2018-fifa-world-cup/index.json new file mode 100644 index 000000000000..15f9b6db6cd4 --- /dev/null +++ b/site/public/v1/games/2018-fifa-world-cup/index.json @@ -0,0 +1,25 @@ +{ + "id": 799, + "slug": "2018-fifa-world-cup", + "name": "2018 FIFA World Cup", + "release_date": "2018-05-29", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q55004100" + ], + "created_at": "2026-07-10T10:09:55.420469", + "updated_at": "2026-07-10T10:09:55.420469", + "url": "/v1/games/2018-fifa-world-cup" +} diff --git a/site/public/v1/games/3-in-1-supergun/index.json b/site/public/v1/games/3-in-1-supergun/index.json new file mode 100644 index 000000000000..342eb4311000 --- /dev/null +++ b/site/public/v1/games/3-in-1-supergun/index.json @@ -0,0 +1,32 @@ +{ + "id": 975, + "slug": "3-in-1-supergun", + "name": "3 in 1 Supergun", + "release_date": "1993-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Nintendo Entertainment System" + ], + "genres": [ + "light-gun shooter", + "shooter game" + ], + "stores": [], + "developers": [], + "publishers": [ + "Micro Genius" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q101225378" + ], + "created_at": "2026-07-10T10:09:55.476842", + "updated_at": "2026-07-10T10:09:55.476842", + "url": "/v1/games/3-in-1-supergun" +} diff --git a/site/public/v1/games/30-days-until-wedding-bells/index.json b/site/public/v1/games/30-days-until-wedding-bells/index.json new file mode 100644 index 000000000000..4a7c36be3102 --- /dev/null +++ b/site/public/v1/games/30-days-until-wedding-bells/index.json @@ -0,0 +1,33 @@ +{ + "id": 1011, + "slug": "30-days-until-wedding-bells", + "name": "30 Days Until Wedding Bells", + "release_date": "2019-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "interactive fiction" + ], + "stores": [], + "developers": [ + "Team Koala Lampoon" + ], + "publishers": [ + "Team Koala Lampoon" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63436573" + ], + "created_at": "2026-07-10T10:09:55.487852", + "updated_at": "2026-07-10T10:09:55.487852", + "url": "/v1/games/30-days-until-wedding-bells" +} diff --git a/site/public/v1/games/303-game-collection/index.json b/site/public/v1/games/303-game-collection/index.json new file mode 100644 index 000000000000..3aa61a1454f8 --- /dev/null +++ b/site/public/v1/games/303-game-collection/index.json @@ -0,0 +1,33 @@ +{ + "id": 1022, + "slug": "303-game-collection", + "name": "303 Game Collection", + "release_date": "2003-06-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "casual game" + ], + "stores": [], + "developers": [ + "Antidote Entertainment" + ], + "publishers": [ + "ValuSoft" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125956340" + ], + "created_at": "2026-07-10T10:09:55.490852", + "updated_at": "2026-07-10T10:09:55.490852", + "url": "/v1/games/303-game-collection" +} diff --git a/site/public/v1/games/3d-biohazard-skull-theme/index.json b/site/public/v1/games/3d-biohazard-skull-theme/index.json new file mode 100644 index 000000000000..6e1fc06ef836 --- /dev/null +++ b/site/public/v1/games/3d-biohazard-skull-theme/index.json @@ -0,0 +1,31 @@ +{ + "id": 1070, + "slug": "3d-biohazard-skull-theme", + "name": "3D Biohazard Skull Theme", + "release_date": "2015-07-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation Vita" + ], + "genres": [], + "stores": [], + "developers": [ + "Populus Media" + ], + "publishers": [ + "Populus Media" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q61468099" + ], + "created_at": "2026-07-10T10:09:55.506372", + "updated_at": "2026-07-10T10:09:55.506372", + "url": "/v1/games/3d-biohazard-skull-theme" +} diff --git a/site/public/v1/games/3dge/index.json b/site/public/v1/games/3dge/index.json new file mode 100644 index 000000000000..4e03778c7b0b --- /dev/null +++ b/site/public/v1/games/3dge/index.json @@ -0,0 +1,25 @@ +{ + "id": 1236, + "slug": "3dge", + "name": "3DGE", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q67197419" + ], + "created_at": "2026-07-10T10:09:55.559368", + "updated_at": "2026-07-10T10:09:55.559368", + "url": "/v1/games/3dge" +} diff --git a/site/public/v1/games/4-most-super-sports/index.json b/site/public/v1/games/4-most-super-sports/index.json new file mode 100644 index 000000000000..9a45791b014e --- /dev/null +++ b/site/public/v1/games/4-most-super-sports/index.json @@ -0,0 +1,28 @@ +{ + "id": 1280, + "slug": "4-most-super-sports", + "name": "4 Most Super Sports", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Commodore 64", + "ZX Spectrum" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63067993" + ], + "created_at": "2026-07-10T10:09:55.574367", + "updated_at": "2026-07-10T10:09:55.574367", + "url": "/v1/games/4-most-super-sports" +} diff --git a/site/public/v1/games/4-pak-all-action/index.json b/site/public/v1/games/4-pak-all-action/index.json new file mode 100644 index 000000000000..85619114535e --- /dev/null +++ b/site/public/v1/games/4-pak-all-action/index.json @@ -0,0 +1,25 @@ +{ + "id": 1282, + "slug": "4-pak-all-action", + "name": "4 PAK All Action", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108133814" + ], + "created_at": "2026-07-10T10:09:55.574367", + "updated_at": "2026-07-10T10:09:55.574367", + "url": "/v1/games/4-pak-all-action" +} diff --git a/site/public/v1/games/400-days/index.json b/site/public/v1/games/400-days/index.json new file mode 100644 index 000000000000..d89d319a6083 --- /dev/null +++ b/site/public/v1/games/400-days/index.json @@ -0,0 +1,27 @@ +{ + "id": 1296, + "slug": "400-days", + "name": "400 Days", + "release_date": "2013-07-02", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 4" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16207063" + ], + "created_at": "2026-07-10T10:09:55.578516", + "updated_at": "2026-07-10T10:09:55.578516", + "url": "/v1/games/400-days" +} diff --git a/site/public/v1/games/5-arcade-gems/index.json b/site/public/v1/games/5-arcade-gems/index.json new file mode 100644 index 000000000000..d25f806d521a --- /dev/null +++ b/site/public/v1/games/5-arcade-gems/index.json @@ -0,0 +1,33 @@ +{ + "id": 1374, + "slug": "5-arcade-gems", + "name": "5 Arcade Gems", + "release_date": "2010-04-26", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Wii" + ], + "genres": [ + "arcade" + ], + "stores": [], + "developers": [ + "Nordcurrent" + ], + "publishers": [ + "Nordcurrent" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18176225" + ], + "created_at": "2026-07-10T10:09:55.603043", + "updated_at": "2026-07-10T10:09:55.603043", + "url": "/v1/games/5-arcade-gems" +} diff --git a/site/public/v1/games/50-great-games-q114340981/index.json b/site/public/v1/games/50-great-games-q114340981/index.json new file mode 100644 index 000000000000..baa5476d537c --- /dev/null +++ b/site/public/v1/games/50-great-games-q114340981/index.json @@ -0,0 +1,25 @@ +{ + "id": 1407, + "slug": "50-great-games-q114340981", + "name": "50 Great Games", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q114340981" + ], + "created_at": "2026-07-10T10:09:55.613042", + "updated_at": "2026-07-10T10:09:55.613042", + "url": "/v1/games/50-great-games-q114340981" +} diff --git a/site/public/v1/games/6-pak/index.json b/site/public/v1/games/6-pak/index.json new file mode 100644 index 000000000000..5590efb1a531 --- /dev/null +++ b/site/public/v1/games/6-pak/index.json @@ -0,0 +1,25 @@ +{ + "id": 1453, + "slug": "6-pak", + "name": "6-Pak", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q9553916" + ], + "created_at": "2026-07-10T10:09:55.624101", + "updated_at": "2026-07-10T10:09:55.624101", + "url": "/v1/games/6-pak" +} diff --git a/site/public/v1/games/7-meters-away-wallpaper/index.json b/site/public/v1/games/7-meters-away-wallpaper/index.json new file mode 100644 index 000000000000..cc989d0e5b72 --- /dev/null +++ b/site/public/v1/games/7-meters-away-wallpaper/index.json @@ -0,0 +1,34 @@ +{ + "id": 1539, + "slug": "7-meters-away-wallpaper", + "name": "7 Meters away - Wallpaper", + "release_date": "2024-08-31", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "point-and-click adventure", + "mystery video game" + ], + "stores": [], + "developers": [ + "Dlou Saiyan" + ], + "publishers": [ + "Dlou Saiyan" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q129330217" + ], + "created_at": "2026-07-10T10:09:55.649041", + "updated_at": "2026-07-10T10:09:55.649041", + "url": "/v1/games/7-meters-away-wallpaper" +} diff --git a/site/public/v1/games/7th-street/index.json b/site/public/v1/games/7th-street/index.json new file mode 100644 index 000000000000..cac7204dc27e --- /dev/null +++ b/site/public/v1/games/7th-street/index.json @@ -0,0 +1,36 @@ +{ + "id": 1599, + "slug": "7th-street", + "name": "7th Street", + "release_date": "2012-09-27", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "survival horror" + ], + "stores": [], + "developers": [ + "Wray Burgess", + "Marc Steene" + ], + "publishers": [ + "Marc Steene", + "Wray Burgess" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111035028" + ], + "created_at": "2026-07-10T10:09:55.665043", + "updated_at": "2026-07-10T10:09:55.665043", + "url": "/v1/games/7th-street" +} diff --git a/site/public/v1/games/8-11-demo/index.json b/site/public/v1/games/8-11-demo/index.json new file mode 100644 index 000000000000..0f544a2d7ab0 --- /dev/null +++ b/site/public/v1/games/8-11-demo/index.json @@ -0,0 +1,25 @@ +{ + "id": 1603, + "slug": "8-11-demo", + "name": "8:11 (Demo)", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131619404" + ], + "created_at": "2026-07-10T10:09:55.666042", + "updated_at": "2026-07-10T10:09:55.666042", + "url": "/v1/games/8-11-demo" +} diff --git a/site/public/v1/games/8-bit-armies-guardians-campaign/index.json b/site/public/v1/games/8-bit-armies-guardians-campaign/index.json new file mode 100644 index 000000000000..b8d4a155a456 --- /dev/null +++ b/site/public/v1/games/8-bit-armies-guardians-campaign/index.json @@ -0,0 +1,27 @@ +{ + "id": 1620, + "slug": "8-bit-armies-guardians-campaign", + "name": "8-Bit Armies: Guardians Campaign", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [ + "Petroglyph Games" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122643977" + ], + "created_at": "2026-07-10T10:09:55.675037", + "updated_at": "2026-07-10T10:09:55.675037", + "url": "/v1/games/8-bit-armies-guardians-campaign" +} diff --git a/site/public/v1/games/8-bit-is-enough/index.json b/site/public/v1/games/8-bit-is-enough/index.json new file mode 100644 index 000000000000..f56c8196b1a1 --- /dev/null +++ b/site/public/v1/games/8-bit-is-enough/index.json @@ -0,0 +1,35 @@ +{ + "id": 1627, + "slug": "8-bit-is-enough", + "name": "8-Bit Is Enough", + "release_date": "2008-12-15", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 3", + "Wii", + "Microsoft Windows" + ], + "genres": [ + "graphic adventure game" + ], + "stores": [], + "developers": [ + "Telltale Games" + ], + "publishers": [ + "Telltale Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135448932" + ], + "created_at": "2026-07-10T10:09:55.677036", + "updated_at": "2026-07-10T10:09:55.677036", + "url": "/v1/games/8-bit-is-enough" +} diff --git a/site/public/v1/games/8-d-3/index.json b/site/public/v1/games/8-d-3/index.json new file mode 100644 index 000000000000..92a92072dd9e --- /dev/null +++ b/site/public/v1/games/8-d-3/index.json @@ -0,0 +1,34 @@ +{ + "id": 1632, + "slug": "8-d-3", + "name": "8=D~<3", + "release_date": "2016-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "web browser" + ], + "genres": [ + "Boys' Love game", + "interactive fiction" + ], + "stores": [], + "developers": [ + "BáiYù" + ], + "publishers": [ + "BáiYù" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63373775" + ], + "created_at": "2026-07-10T10:09:55.678052", + "updated_at": "2026-07-10T10:09:55.678052", + "url": "/v1/games/8-d-3" +} diff --git a/site/public/v1/games/a-10c-advanced-aircraft-training-qualification-campaign/index.json b/site/public/v1/games/a-10c-advanced-aircraft-training-qualification-campaign/index.json new file mode 100644 index 000000000000..5cb544b2f90a --- /dev/null +++ b/site/public/v1/games/a-10c-advanced-aircraft-training-qualification-campaign/index.json @@ -0,0 +1,29 @@ +{ + "id": 1776, + "slug": "a-10c-advanced-aircraft-training-qualification-campaign", + "name": "A-10C: Advanced Aircraft Training Qualification Campaign", + "release_date": "2017-02-23", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Eagle Dynamics" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097546" + ], + "created_at": "2026-07-10T10:09:55.715590", + "updated_at": "2026-07-10T10:09:55.715590", + "url": "/v1/games/a-10c-advanced-aircraft-training-qualification-campaign" +} diff --git a/site/public/v1/games/a-10c-basic-flight-training-campaign/index.json b/site/public/v1/games/a-10c-basic-flight-training-campaign/index.json new file mode 100644 index 000000000000..4b545d9ca8a7 --- /dev/null +++ b/site/public/v1/games/a-10c-basic-flight-training-campaign/index.json @@ -0,0 +1,29 @@ +{ + "id": 1777, + "slug": "a-10c-basic-flight-training-campaign", + "name": "A-10C: Basic Flight Training Campaign", + "release_date": "2017-01-27", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Eagle Dynamics" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097547" + ], + "created_at": "2026-07-10T10:09:55.715590", + "updated_at": "2026-07-10T10:09:55.715590", + "url": "/v1/games/a-10c-basic-flight-training-campaign" +} diff --git a/site/public/v1/games/a-10c-red-flag-campaign/index.json b/site/public/v1/games/a-10c-red-flag-campaign/index.json new file mode 100644 index 000000000000..29deb519fbcf --- /dev/null +++ b/site/public/v1/games/a-10c-red-flag-campaign/index.json @@ -0,0 +1,31 @@ +{ + "id": 1778, + "slug": "a-10c-red-flag-campaign", + "name": "A-10C: Red Flag Campaign", + "release_date": "2017-08-30", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Eagle Dynamics" + ], + "publishers": [ + "Eagle Dynamics" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097421" + ], + "created_at": "2026-07-10T10:09:55.715590", + "updated_at": "2026-07-10T10:09:55.715590", + "url": "/v1/games/a-10c-red-flag-campaign" +} diff --git a/site/public/v1/games/a-10c-stone-shield-campaign/index.json b/site/public/v1/games/a-10c-stone-shield-campaign/index.json new file mode 100644 index 000000000000..91290d488afc --- /dev/null +++ b/site/public/v1/games/a-10c-stone-shield-campaign/index.json @@ -0,0 +1,29 @@ +{ + "id": 1779, + "slug": "a-10c-stone-shield-campaign", + "name": "A-10C: Stone Shield Campaign", + "release_date": "2017-08-25", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Eagle Dynamics" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097548" + ], + "created_at": "2026-07-10T10:09:55.716588", + "updated_at": "2026-07-10T10:09:55.716588", + "url": "/v1/games/a-10c-stone-shield-campaign" +} diff --git a/site/public/v1/games/a-10c-tactical-training-qualification-campaign/index.json b/site/public/v1/games/a-10c-tactical-training-qualification-campaign/index.json new file mode 100644 index 000000000000..3602e0708d7a --- /dev/null +++ b/site/public/v1/games/a-10c-tactical-training-qualification-campaign/index.json @@ -0,0 +1,29 @@ +{ + "id": 1780, + "slug": "a-10c-tactical-training-qualification-campaign", + "name": "A-10C: Tactical Training Qualification Campaign", + "release_date": "2017-09-15", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Eagle Dynamics" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097561" + ], + "created_at": "2026-07-10T10:09:55.716588", + "updated_at": "2026-07-10T10:09:55.716588", + "url": "/v1/games/a-10c-tactical-training-qualification-campaign" +} diff --git a/site/public/v1/games/a-b-street/index.json b/site/public/v1/games/a-b-street/index.json new file mode 100644 index 000000000000..b752a28767dc --- /dev/null +++ b/site/public/v1/games/a-b-street/index.json @@ -0,0 +1,31 @@ +{ + "id": 1787, + "slug": "a-b-street", + "name": "A/B Street", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "web browser", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Dustin Carlino" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q133296377" + ], + "created_at": "2026-07-10T10:09:55.718593", + "updated_at": "2026-07-10T10:09:55.718593", + "url": "/v1/games/a-b-street" +} diff --git a/site/public/v1/games/a-castle-full-of-cats-bag-of-treats/index.json b/site/public/v1/games/a-castle-full-of-cats-bag-of-treats/index.json new file mode 100644 index 000000000000..8d0ac7ef0ad9 --- /dev/null +++ b/site/public/v1/games/a-castle-full-of-cats-bag-of-treats/index.json @@ -0,0 +1,31 @@ +{ + "id": 1837, + "slug": "a-castle-full-of-cats-bag-of-treats", + "name": "A Castle Full of Cats: Bag of Treats", + "release_date": "2022-11-09", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Devcats" + ], + "publishers": [ + "Devcats" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117713316" + ], + "created_at": "2026-07-10T10:09:55.731587", + "updated_at": "2026-07-10T10:09:55.731587", + "url": "/v1/games/a-castle-full-of-cats-bag-of-treats" +} diff --git a/site/public/v1/games/a-closed-world/index.json b/site/public/v1/games/a-closed-world/index.json new file mode 100644 index 000000000000..57df7954f4c4 --- /dev/null +++ b/site/public/v1/games/a-closed-world/index.json @@ -0,0 +1,33 @@ +{ + "id": 1868, + "slug": "a-closed-world", + "name": "A Closed World", + "release_date": "2011-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "web browser" + ], + "genres": [ + "role-playing video game" + ], + "stores": [], + "developers": [ + "Team Fabulous" + ], + "publishers": [ + "Team Fabulous" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q64620875" + ], + "created_at": "2026-07-10T10:09:55.739664", + "updated_at": "2026-07-10T10:09:55.739664", + "url": "/v1/games/a-closed-world" +} diff --git a/site/public/v1/games/a-collection-of-activision-classic-games-for-the-atari-2600/index.json b/site/public/v1/games/a-collection-of-activision-classic-games-for-the-atari-2600/index.json new file mode 100644 index 000000000000..a9c10a25fab5 --- /dev/null +++ b/site/public/v1/games/a-collection-of-activision-classic-games-for-the-atari-2600/index.json @@ -0,0 +1,25 @@ +{ + "id": 1870, + "slug": "a-collection-of-activision-classic-games-for-the-atari-2600", + "name": "A Collection of Activision Classic Games for the Atari 2600", + "release_date": "1998-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2819686" + ], + "created_at": "2026-07-10T10:09:55.740658", + "updated_at": "2026-07-10T10:09:55.740658", + "url": "/v1/games/a-collection-of-activision-classic-games-for-the-atari-2600" +} diff --git a/site/public/v1/games/a-collection-of-intellivision-classic-games/index.json b/site/public/v1/games/a-collection-of-intellivision-classic-games/index.json new file mode 100644 index 000000000000..e311eb564020 --- /dev/null +++ b/site/public/v1/games/a-collection-of-intellivision-classic-games/index.json @@ -0,0 +1,25 @@ +{ + "id": 1872, + "slug": "a-collection-of-intellivision-classic-games", + "name": "A Collection of Intellivision Classic Games", + "release_date": "1999-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2819688" + ], + "created_at": "2026-07-10T10:09:55.740658", + "updated_at": "2026-07-10T10:09:55.740658", + "url": "/v1/games/a-collection-of-intellivision-classic-games" +} diff --git a/site/public/v1/games/a-cup-of-tea/index.json b/site/public/v1/games/a-cup-of-tea/index.json new file mode 100644 index 000000000000..ff3fd6aae5a9 --- /dev/null +++ b/site/public/v1/games/a-cup-of-tea/index.json @@ -0,0 +1,33 @@ +{ + "id": 1889, + "slug": "a-cup-of-tea", + "name": "A Cup of Tea", + "release_date": "2007-08-21", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Nintendo DS" + ], + "genres": [ + "first-person shooter" + ], + "stores": [], + "developers": [ + "smealum" + ], + "publishers": [ + "smealum" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123053652" + ], + "created_at": "2026-07-10T10:09:55.745589", + "updated_at": "2026-07-10T10:09:55.745589", + "url": "/v1/games/a-cup-of-tea" +} diff --git a/site/public/v1/games/a-fine-night/index.json b/site/public/v1/games/a-fine-night/index.json new file mode 100644 index 000000000000..656b931598e9 --- /dev/null +++ b/site/public/v1/games/a-fine-night/index.json @@ -0,0 +1,33 @@ +{ + "id": 1993, + "slug": "a-fine-night", + "name": "A Fine Night", + "release_date": "2018-05-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "personal computer" + ], + "genres": [ + "interactive fiction" + ], + "stores": [], + "developers": [ + "Grhyll" + ], + "publishers": [ + "Grhyll" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q64729743" + ], + "created_at": "2026-07-10T10:09:55.773657", + "updated_at": "2026-07-10T10:09:55.773657", + "url": "/v1/games/a-fine-night" +} diff --git a/site/public/v1/games/a-google-a-day/index.json b/site/public/v1/games/a-google-a-day/index.json new file mode 100644 index 000000000000..54de7d1b3407 --- /dev/null +++ b/site/public/v1/games/a-google-a-day/index.json @@ -0,0 +1,27 @@ +{ + "id": 2074, + "slug": "a-google-a-day", + "name": "A Google A Day", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [ + "Google" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4657139" + ], + "created_at": "2026-07-10T10:09:55.795215", + "updated_at": "2026-07-10T10:09:55.795215", + "url": "/v1/games/a-google-a-day" +} diff --git a/site/public/v1/games/a-hat-in-time-nyakuza-metro-online-party/index.json b/site/public/v1/games/a-hat-in-time-nyakuza-metro-online-party/index.json new file mode 100644 index 000000000000..b48eba192941 --- /dev/null +++ b/site/public/v1/games/a-hat-in-time-nyakuza-metro-online-party/index.json @@ -0,0 +1,29 @@ +{ + "id": 2091, + "slug": "a-hat-in-time-nyakuza-metro-online-party", + "name": "A Hat in Time - Nyakuza Metro + Online Party", + "release_date": "2019-05-10", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Gears for Breakfast" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117081195" + ], + "created_at": "2026-07-10T10:09:55.799318", + "updated_at": "2026-07-10T10:09:55.799318", + "url": "/v1/games/a-hat-in-time-nyakuza-metro-online-party" +} diff --git a/site/public/v1/games/a-hat-in-time-nyakuza-metro/index.json b/site/public/v1/games/a-hat-in-time-nyakuza-metro/index.json new file mode 100644 index 000000000000..33785e02c7c5 --- /dev/null +++ b/site/public/v1/games/a-hat-in-time-nyakuza-metro/index.json @@ -0,0 +1,25 @@ +{ + "id": 2092, + "slug": "a-hat-in-time-nyakuza-metro", + "name": "A Hat in Time - Nyakuza Metro", + "release_date": "2019-05-10", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117081504" + ], + "created_at": "2026-07-10T10:09:55.800294", + "updated_at": "2026-07-10T10:09:55.800294", + "url": "/v1/games/a-hat-in-time-nyakuza-metro" +} diff --git a/site/public/v1/games/a-hat-in-time-seal-the-deal/index.json b/site/public/v1/games/a-hat-in-time-seal-the-deal/index.json new file mode 100644 index 000000000000..f2dc8a74c12e --- /dev/null +++ b/site/public/v1/games/a-hat-in-time-seal-the-deal/index.json @@ -0,0 +1,36 @@ +{ + "id": 2093, + "slug": "a-hat-in-time-seal-the-deal", + "name": "A Hat in Time - Seal the Deal", + "release_date": "2018-09-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "action-adventure game", + "platformer", + "collect-a-thon platformer" + ], + "stores": [], + "developers": [ + "Gears for Breakfast" + ], + "publishers": [ + "Gears for Breakfast" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111966566" + ], + "created_at": "2026-07-10T10:09:55.800294", + "updated_at": "2026-07-10T10:09:55.800294", + "url": "/v1/games/a-hat-in-time-seal-the-deal" +} diff --git a/site/public/v1/games/a-house-divided/index.json b/site/public/v1/games/a-house-divided/index.json new file mode 100644 index 000000000000..a655c84a4b12 --- /dev/null +++ b/site/public/v1/games/a-house-divided/index.json @@ -0,0 +1,29 @@ +{ + "id": 2114, + "slug": "a-house-divided", + "name": "A House Divided", + "release_date": "2014-03-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 4" + ], + "genres": [], + "stores": [], + "developers": [ + "Telltale Games" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16207490" + ], + "created_at": "2026-07-10T10:09:55.805297", + "updated_at": "2026-07-10T10:09:55.805297", + "url": "/v1/games/a-house-divided" +} diff --git a/site/public/v1/games/a-meadow-of-opal/index.json b/site/public/v1/games/a-meadow-of-opal/index.json new file mode 100644 index 000000000000..ecdaf14303dc --- /dev/null +++ b/site/public/v1/games/a-meadow-of-opal/index.json @@ -0,0 +1,34 @@ +{ + "id": 2243, + "slug": "a-meadow-of-opal", + "name": "A Meadow of Opal", + "release_date": "2017-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "web browser" + ], + "genres": [ + "role-playing video game", + "visual novel" + ], + "stores": [], + "developers": [ + "Hishicorne" + ], + "publishers": [ + "Hishicorne" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q64826891" + ], + "created_at": "2026-07-10T10:09:55.839330", + "updated_at": "2026-07-10T10:09:55.839330", + "url": "/v1/games/a-meadow-of-opal" +} diff --git a/site/public/v1/games/a-midsummer-night-s-choice-commentary-track/index.json b/site/public/v1/games/a-midsummer-night-s-choice-commentary-track/index.json new file mode 100644 index 000000000000..d44dbe1bc182 --- /dev/null +++ b/site/public/v1/games/a-midsummer-night-s-choice-commentary-track/index.json @@ -0,0 +1,32 @@ +{ + "id": 2253, + "slug": "a-midsummer-night-s-choice-commentary-track", + "name": "A Midsummer Night's Choice - Commentary Track", + "release_date": "2017-04-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Choice of Games" + ], + "publishers": [ + "Choice of Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115016151" + ], + "created_at": "2026-07-10T10:09:55.842319", + "updated_at": "2026-07-10T10:09:55.842319", + "url": "/v1/games/a-midsummer-night-s-choice-commentary-track" +} diff --git a/site/public/v1/games/a-new-accord/index.json b/site/public/v1/games/a-new-accord/index.json new file mode 100644 index 000000000000..6ac253df1838 --- /dev/null +++ b/site/public/v1/games/a-new-accord/index.json @@ -0,0 +1,25 @@ +{ + "id": 2291, + "slug": "a-new-accord", + "name": "A New Accord", + "release_date": "2014-04-22", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q57973875" + ], + "created_at": "2026-07-10T10:09:55.852331", + "updated_at": "2026-07-10T10:09:55.852331", + "url": "/v1/games/a-new-accord" +} diff --git a/site/public/v1/games/a-new-day/index.json b/site/public/v1/games/a-new-day/index.json new file mode 100644 index 000000000000..38f8057d6902 --- /dev/null +++ b/site/public/v1/games/a-new-day/index.json @@ -0,0 +1,40 @@ +{ + "id": 2293, + "slug": "a-new-day", + "name": "A New Day", + "release_date": "2012-04-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Kindle Fire HDX", + "PlayStation 4", + "PlayStation Vita", + "iOS", + "macOS", + "PlayStation 3", + "Microsoft Windows" + ], + "genres": [ + "graphic adventure game", + "episodic video game" + ], + "stores": [], + "developers": [ + "Telltale Games" + ], + "publishers": [ + "Telltale Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16170380" + ], + "created_at": "2026-07-10T10:09:55.852331", + "updated_at": "2026-07-10T10:09:55.852331", + "url": "/v1/games/a-new-day" +} diff --git a/site/public/v1/games/a-team/index.json b/site/public/v1/games/a-team/index.json new file mode 100644 index 000000000000..61aec9b07740 --- /dev/null +++ b/site/public/v1/games/a-team/index.json @@ -0,0 +1,27 @@ +{ + "id": 2568, + "slug": "a-team", + "name": "A-Team", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Atari 2600" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q9555290" + ], + "created_at": "2026-07-10T10:09:55.926101", + "updated_at": "2026-07-10T10:09:55.926101", + "url": "/v1/games/a-team" +} diff --git a/site/public/v1/games/a-total-war-saga-thrones-of-britannia-blood-sweat-and-spears/index.json b/site/public/v1/games/a-total-war-saga-thrones-of-britannia-blood-sweat-and-spears/index.json new file mode 100644 index 000000000000..51d9fabf460c --- /dev/null +++ b/site/public/v1/games/a-total-war-saga-thrones-of-britannia-blood-sweat-and-spears/index.json @@ -0,0 +1,28 @@ +{ + "id": 2591, + "slug": "a-total-war-saga-thrones-of-britannia-blood-sweat-and-spears", + "name": "A Total War Saga: THRONES OF BRITANNIA - Blood, Sweat and Spears", + "release_date": "2018-08-29", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115740339" + ], + "created_at": "2026-07-10T10:09:55.932045", + "updated_at": "2026-07-10T10:09:55.932045", + "url": "/v1/games/a-total-war-saga-thrones-of-britannia-blood-sweat-and-spears" +} diff --git a/site/public/v1/games/a-total-war-saga-troy-mythos/index.json b/site/public/v1/games/a-total-war-saga-troy-mythos/index.json new file mode 100644 index 000000000000..fe1f9f38ba2f --- /dev/null +++ b/site/public/v1/games/a-total-war-saga-troy-mythos/index.json @@ -0,0 +1,28 @@ +{ + "id": 2592, + "slug": "a-total-war-saga-troy-mythos", + "name": "A Total War Saga : Troy - Mythos", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127165314" + ], + "created_at": "2026-07-10T10:09:55.932045", + "updated_at": "2026-07-10T10:09:55.932045", + "url": "/v1/games/a-total-war-saga-troy-mythos" +} diff --git a/site/public/v1/games/a-total-war-saga-troy-rhesus-memnon/index.json b/site/public/v1/games/a-total-war-saga-troy-rhesus-memnon/index.json new file mode 100644 index 000000000000..00c58fe0ef55 --- /dev/null +++ b/site/public/v1/games/a-total-war-saga-troy-rhesus-memnon/index.json @@ -0,0 +1,28 @@ +{ + "id": 2593, + "slug": "a-total-war-saga-troy-rhesus-memnon", + "name": "A Total War Saga : Troy - Rhesus & Memnon", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127165340" + ], + "created_at": "2026-07-10T10:09:55.933041", + "updated_at": "2026-07-10T10:09:55.933041", + "url": "/v1/games/a-total-war-saga-troy-rhesus-memnon" +} diff --git a/site/public/v1/games/a-train-construction-set-q56033870/index.json b/site/public/v1/games/a-train-construction-set-q56033870/index.json new file mode 100644 index 000000000000..d96968818dd5 --- /dev/null +++ b/site/public/v1/games/a-train-construction-set-q56033870/index.json @@ -0,0 +1,25 @@ +{ + "id": 2611, + "slug": "a-train-construction-set-q56033870", + "name": "A-Train + Construction Set", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q56033870" + ], + "created_at": "2026-07-10T10:09:55.937100", + "updated_at": "2026-07-10T10:09:55.937100", + "url": "/v1/games/a-train-construction-set-q56033870" +} diff --git a/site/public/v1/games/a-train-construction-set/index.json b/site/public/v1/games/a-train-construction-set/index.json new file mode 100644 index 000000000000..2b1ae7e39200 --- /dev/null +++ b/site/public/v1/games/a-train-construction-set/index.json @@ -0,0 +1,25 @@ +{ + "id": 2612, + "slug": "a-train-construction-set", + "name": "A-Train Construction Set", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126902259" + ], + "created_at": "2026-07-10T10:09:55.938101", + "updated_at": "2026-07-10T10:09:55.938101", + "url": "/v1/games/a-train-construction-set" +} diff --git a/site/public/v1/games/a-wolf-or-other/index.json b/site/public/v1/games/a-wolf-or-other/index.json new file mode 100644 index 000000000000..990be91f95ef --- /dev/null +++ b/site/public/v1/games/a-wolf-or-other/index.json @@ -0,0 +1,30 @@ +{ + "id": 2707, + "slug": "a-wolf-or-other", + "name": "A Wolf Or Other", + "release_date": "2018-10-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "horror video game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117349448" + ], + "created_at": "2026-07-10T10:09:55.963042", + "updated_at": "2026-07-10T10:09:55.963042", + "url": "/v1/games/a-wolf-or-other" +} diff --git a/site/public/v1/games/aabs-animals-ps-vita-and-ps3-bundle/index.json b/site/public/v1/games/aabs-animals-ps-vita-and-ps3-bundle/index.json new file mode 100644 index 000000000000..0c1de7855ab8 --- /dev/null +++ b/site/public/v1/games/aabs-animals-ps-vita-and-ps3-bundle/index.json @@ -0,0 +1,25 @@ +{ + "id": 2753, + "slug": "aabs-animals-ps-vita-and-ps3-bundle", + "name": "Aabs Animals ('PS Vita' and PS3™) Bundle", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110122817" + ], + "created_at": "2026-07-10T10:09:55.975112", + "updated_at": "2026-07-10T10:09:55.975112", + "url": "/v1/games/aabs-animals-ps-vita-and-ps3-bundle" +} diff --git a/site/public/v1/games/abacus-q104545373/index.json b/site/public/v1/games/abacus-q104545373/index.json new file mode 100644 index 000000000000..02866cfd1335 --- /dev/null +++ b/site/public/v1/games/abacus-q104545373/index.json @@ -0,0 +1,25 @@ +{ + "id": 2776, + "slug": "abacus-q104545373", + "name": "Abacus", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q104545373" + ], + "created_at": "2026-07-10T10:09:55.981358", + "updated_at": "2026-07-10T10:09:55.981358", + "url": "/v1/games/abacus-q104545373" +} diff --git a/site/public/v1/games/abaku/index.json b/site/public/v1/games/abaku/index.json new file mode 100644 index 000000000000..5492efd12679 --- /dev/null +++ b/site/public/v1/games/abaku/index.json @@ -0,0 +1,27 @@ +{ + "id": 2783, + "slug": "abaku", + "name": "Abaku", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "abstract strategy game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140197765" + ], + "created_at": "2026-07-10T10:09:55.982380", + "updated_at": "2026-07-10T10:09:55.982380", + "url": "/v1/games/abaku" +} diff --git a/site/public/v1/games/abc-audioreactive-beat-circle-premium-edition/index.json b/site/public/v1/games/abc-audioreactive-beat-circle-premium-edition/index.json new file mode 100644 index 000000000000..97b40a6c65a1 --- /dev/null +++ b/site/public/v1/games/abc-audioreactive-beat-circle-premium-edition/index.json @@ -0,0 +1,27 @@ +{ + "id": 2821, + "slug": "abc-audioreactive-beat-circle-premium-edition", + "name": "ABC: Audioreactive Beat Circle - Premium Edition", + "release_date": "2020-08-21", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q114946033" + ], + "created_at": "2026-07-10T10:09:55.998072", + "updated_at": "2026-07-10T10:09:55.998072", + "url": "/v1/games/abc-audioreactive-beat-circle-premium-edition" +} diff --git a/site/public/v1/games/absolute-despair-collection/index.json b/site/public/v1/games/absolute-despair-collection/index.json new file mode 100644 index 000000000000..c7281c7dd65c --- /dev/null +++ b/site/public/v1/games/absolute-despair-collection/index.json @@ -0,0 +1,28 @@ +{ + "id": 2977, + "slug": "absolute-despair-collection", + "name": "Absolute Despair Collection", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q104774684" + ], + "created_at": "2026-07-10T10:09:56.041972", + "updated_at": "2026-07-10T10:09:56.041972", + "url": "/v1/games/absolute-despair-collection" +} diff --git a/site/public/v1/games/aca-neogeo-selection-vol-1/index.json b/site/public/v1/games/aca-neogeo-selection-vol-1/index.json new file mode 100644 index 000000000000..628f4ca21164 --- /dev/null +++ b/site/public/v1/games/aca-neogeo-selection-vol-1/index.json @@ -0,0 +1,27 @@ +{ + "id": 3113, + "slug": "aca-neogeo-selection-vol-1", + "name": "ACA NEOGEO Selection Vol. 1", + "release_date": "2024-12-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "SNK" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130243352" + ], + "created_at": "2026-07-10T10:09:56.078949", + "updated_at": "2026-07-10T10:09:56.078949", + "url": "/v1/games/aca-neogeo-selection-vol-1" +} diff --git a/site/public/v1/games/aca-neogeo-selection-vol-2/index.json b/site/public/v1/games/aca-neogeo-selection-vol-2/index.json new file mode 100644 index 000000000000..a62e03759bb5 --- /dev/null +++ b/site/public/v1/games/aca-neogeo-selection-vol-2/index.json @@ -0,0 +1,27 @@ +{ + "id": 3114, + "slug": "aca-neogeo-selection-vol-2", + "name": "ACA NEOGEO Selection Vol. 2", + "release_date": "2024-12-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "SNK" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130243353" + ], + "created_at": "2026-07-10T10:09:56.078949", + "updated_at": "2026-07-10T10:09:56.078949", + "url": "/v1/games/aca-neogeo-selection-vol-2" +} diff --git a/site/public/v1/games/aca-neogeo-selection-vol-3/index.json b/site/public/v1/games/aca-neogeo-selection-vol-3/index.json new file mode 100644 index 000000000000..198a2981134e --- /dev/null +++ b/site/public/v1/games/aca-neogeo-selection-vol-3/index.json @@ -0,0 +1,27 @@ +{ + "id": 3115, + "slug": "aca-neogeo-selection-vol-3", + "name": "ACA NEOGEO Selection Vol. 3", + "release_date": "2025-04-10", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "SNK" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131493765" + ], + "created_at": "2026-07-10T10:09:56.078949", + "updated_at": "2026-07-10T10:09:56.078949", + "url": "/v1/games/aca-neogeo-selection-vol-3" +} diff --git a/site/public/v1/games/aca-neogeo-selection-vol-4/index.json b/site/public/v1/games/aca-neogeo-selection-vol-4/index.json new file mode 100644 index 000000000000..df4983f6fe3c --- /dev/null +++ b/site/public/v1/games/aca-neogeo-selection-vol-4/index.json @@ -0,0 +1,27 @@ +{ + "id": 3116, + "slug": "aca-neogeo-selection-vol-4", + "name": "ACA NEOGEO Selection Vol. 4", + "release_date": "2025-04-10", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "SNK" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131493766" + ], + "created_at": "2026-07-10T10:09:56.079968", + "updated_at": "2026-07-10T10:09:56.079968", + "url": "/v1/games/aca-neogeo-selection-vol-4" +} diff --git a/site/public/v1/games/acceleration-of-suguri-x-edition/index.json b/site/public/v1/games/acceleration-of-suguri-x-edition/index.json new file mode 100644 index 000000000000..96c515043399 --- /dev/null +++ b/site/public/v1/games/acceleration-of-suguri-x-edition/index.json @@ -0,0 +1,33 @@ +{ + "id": 3150, + "slug": "acceleration-of-suguri-x-edition", + "name": "Acceleration of Suguri X Edition", + "release_date": "2011-02-15", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 3", + "Microsoft Windows" + ], + "genres": [ + "bullet hell", + "2D fighting game" + ], + "stores": [], + "developers": [], + "publishers": [ + "Daybreak Game Company" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4672295" + ], + "created_at": "2026-07-10T10:09:56.088049", + "updated_at": "2026-07-10T10:09:56.088049", + "url": "/v1/games/acceleration-of-suguri-x-edition" +} diff --git a/site/public/v1/games/ace-combat-7-skies-unknown-sharefactory-theme/index.json b/site/public/v1/games/ace-combat-7-skies-unknown-sharefactory-theme/index.json new file mode 100644 index 000000000000..c4ab93f37cfa --- /dev/null +++ b/site/public/v1/games/ace-combat-7-skies-unknown-sharefactory-theme/index.json @@ -0,0 +1,31 @@ +{ + "id": 3204, + "slug": "ace-combat-7-skies-unknown-sharefactory-theme", + "name": "Ace Combat 7: Skies Unknown SHAREfactory Theme", + "release_date": "2019-01-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 4" + ], + "genres": [], + "stores": [], + "developers": [ + "Bandai Namco Entertainment" + ], + "publishers": [ + "Bandai Namco Entertainment" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q61467510" + ], + "created_at": "2026-07-10T10:09:56.101790", + "updated_at": "2026-07-10T10:09:56.101790", + "url": "/v1/games/ace-combat-7-skies-unknown-sharefactory-theme" +} diff --git a/site/public/v1/games/ace-combat-7-skies-unknown-top-gun-maverick-edition/index.json b/site/public/v1/games/ace-combat-7-skies-unknown-top-gun-maverick-edition/index.json new file mode 100644 index 000000000000..44d5f0f5794e --- /dev/null +++ b/site/public/v1/games/ace-combat-7-skies-unknown-top-gun-maverick-edition/index.json @@ -0,0 +1,31 @@ +{ + "id": 3205, + "slug": "ace-combat-7-skies-unknown-top-gun-maverick-edition", + "name": "Ace Combat 7: Skies Unknown - Top Gun: Maverick Edition", + "release_date": "2022-05-26", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S" + ], + "genres": [], + "stores": [], + "developers": [ + "Bandai Namco Studios" + ], + "publishers": [ + "Bandai Namco Entertainment" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112943565" + ], + "created_at": "2026-07-10T10:09:56.101790", + "updated_at": "2026-07-10T10:09:56.101790", + "url": "/v1/games/ace-combat-7-skies-unknown-top-gun-maverick-edition" +} diff --git a/site/public/v1/games/ace-combat-7-skies-unknown-top-gun-maverick-ultimate-edition/index.json b/site/public/v1/games/ace-combat-7-skies-unknown-top-gun-maverick-ultimate-edition/index.json new file mode 100644 index 000000000000..b53823e8a1fe --- /dev/null +++ b/site/public/v1/games/ace-combat-7-skies-unknown-top-gun-maverick-ultimate-edition/index.json @@ -0,0 +1,31 @@ +{ + "id": 3206, + "slug": "ace-combat-7-skies-unknown-top-gun-maverick-ultimate-edition", + "name": "Ace Combat 7: Skies Unknown - Top Gun: Maverick Ultimate Edition", + "release_date": "2022-05-26", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S" + ], + "genres": [], + "stores": [], + "developers": [ + "Bandai Namco Studios" + ], + "publishers": [ + "Bandai Namco Entertainment" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112943580" + ], + "created_at": "2026-07-10T10:09:56.101790", + "updated_at": "2026-07-10T10:09:56.101790", + "url": "/v1/games/ace-combat-7-skies-unknown-top-gun-maverick-ultimate-edition" +} diff --git a/site/public/v1/games/act-of-war-gold-edition/index.json b/site/public/v1/games/act-of-war-gold-edition/index.json new file mode 100644 index 000000000000..291fe878916b --- /dev/null +++ b/site/public/v1/games/act-of-war-gold-edition/index.json @@ -0,0 +1,25 @@ +{ + "id": 3409, + "slug": "act-of-war-gold-edition", + "name": "Act of War: Gold Edition", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121888976" + ], + "created_at": "2026-07-10T10:09:56.155023", + "updated_at": "2026-07-10T10:09:56.155023", + "url": "/v1/games/act-of-war-gold-edition" +} diff --git a/site/public/v1/games/action-52-q139888877/index.json b/site/public/v1/games/action-52-q139888877/index.json new file mode 100644 index 000000000000..5607ab3a1068 --- /dev/null +++ b/site/public/v1/games/action-52-q139888877/index.json @@ -0,0 +1,31 @@ +{ + "id": 3416, + "slug": "action-52-q139888877", + "name": "Action 52", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Sega Genesis" + ], + "genres": [ + "video game compilation" + ], + "stores": [], + "developers": [ + "FarSight Studios" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139888877" + ], + "created_at": "2026-07-10T10:09:56.157021", + "updated_at": "2026-07-10T10:09:56.157021", + "url": "/v1/games/action-52-q139888877" +} diff --git a/site/public/v1/games/action-52-q343608/index.json b/site/public/v1/games/action-52-q343608/index.json new file mode 100644 index 000000000000..b05d981e9eda --- /dev/null +++ b/site/public/v1/games/action-52-q343608/index.json @@ -0,0 +1,29 @@ +{ + "id": 3417, + "slug": "action-52-q343608", + "name": "Action 52", + "release_date": "1991-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "video game compilation" + ], + "stores": [], + "developers": [], + "publishers": [ + "Active Enterprises" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q343608" + ], + "created_at": "2026-07-10T10:09:56.157021", + "updated_at": "2026-07-10T10:09:56.157021", + "url": "/v1/games/action-52-q343608" +} diff --git a/site/public/v1/games/action-52/index.json b/site/public/v1/games/action-52/index.json new file mode 100644 index 000000000000..216c92ef3f4b --- /dev/null +++ b/site/public/v1/games/action-52/index.json @@ -0,0 +1,31 @@ +{ + "id": 3418, + "slug": "action-52", + "name": "Action 52", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Nintendo Entertainment System" + ], + "genres": [ + "video game compilation" + ], + "stores": [], + "developers": [ + "Active Enterprises" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139888876" + ], + "created_at": "2026-07-10T10:09:56.157021", + "updated_at": "2026-07-10T10:09:56.157021", + "url": "/v1/games/action-52" +} diff --git a/site/public/v1/games/action-bumping-games/index.json b/site/public/v1/games/action-bumping-games/index.json new file mode 100644 index 000000000000..ce11834ea5c4 --- /dev/null +++ b/site/public/v1/games/action-bumping-games/index.json @@ -0,0 +1,27 @@ +{ + "id": 3431, + "slug": "action-bumping-games", + "name": "Action & Bumping Games", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Apple II series" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q48999987" + ], + "created_at": "2026-07-10T10:09:56.161103", + "updated_at": "2026-07-10T10:09:56.161103", + "url": "/v1/games/action-bumping-games" +} diff --git a/site/public/v1/games/active-shooter-demo/index.json b/site/public/v1/games/active-shooter-demo/index.json new file mode 100644 index 000000000000..8cfdbd378efd --- /dev/null +++ b/site/public/v1/games/active-shooter-demo/index.json @@ -0,0 +1,34 @@ +{ + "id": 3491, + "slug": "active-shooter-demo", + "name": "Active Shooter Demo", + "release_date": "2018-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "tactical shooter" + ], + "stores": [], + "developers": [ + "Revived Games" + ], + "publishers": [ + "ACID" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112247989" + ], + "created_at": "2026-07-10T10:09:56.177116", + "updated_at": "2026-07-10T10:09:56.177116", + "url": "/v1/games/active-shooter-demo" +} diff --git a/site/public/v1/games/activision-anthology/index.json b/site/public/v1/games/activision-anthology/index.json new file mode 100644 index 000000000000..1dcbb01f2c3a --- /dev/null +++ b/site/public/v1/games/activision-anthology/index.json @@ -0,0 +1,36 @@ +{ + "id": 3496, + "slug": "activision-anthology", + "name": "Activision Anthology", + "release_date": "2002-11-19", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "PlayStation Portable", + "DigiBLAST", + "Game Boy Advance", + "iOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Barking Lizards Technologies" + ], + "publishers": [ + "Activision" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q927590" + ], + "created_at": "2026-07-10T10:09:56.179021", + "updated_at": "2026-07-10T10:09:56.179021", + "url": "/v1/games/activision-anthology" +} diff --git a/site/public/v1/games/ad-d-masterpiece-collection/index.json b/site/public/v1/games/ad-d-masterpiece-collection/index.json new file mode 100644 index 000000000000..172655699629 --- /dev/null +++ b/site/public/v1/games/ad-d-masterpiece-collection/index.json @@ -0,0 +1,31 @@ +{ + "id": 3530, + "slug": "ad-d-masterpiece-collection", + "name": "AD&D Masterpiece Collection", + "release_date": "1996-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "role-playing video game" + ], + "stores": [], + "developers": [ + "Strategic Simulations" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16207823" + ], + "created_at": "2026-07-10T10:09:56.187157", + "updated_at": "2026-07-10T10:09:56.187157", + "url": "/v1/games/ad-d-masterpiece-collection" +} diff --git a/site/public/v1/games/adam-wolfe-episode-1-the-ancient-flame/index.json b/site/public/v1/games/adam-wolfe-episode-1-the-ancient-flame/index.json new file mode 100644 index 000000000000..82111561dfd8 --- /dev/null +++ b/site/public/v1/games/adam-wolfe-episode-1-the-ancient-flame/index.json @@ -0,0 +1,25 @@ +{ + "id": 3560, + "slug": "adam-wolfe-episode-1-the-ancient-flame", + "name": "Adam Wolfe: Episode 1 - The Ancient Flame", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127326320" + ], + "created_at": "2026-07-10T10:09:56.195670", + "updated_at": "2026-07-10T10:09:56.195670", + "url": "/v1/games/adam-wolfe-episode-1-the-ancient-flame" +} diff --git a/site/public/v1/games/adam-wolfe-episode-2-the-devil-you-know/index.json b/site/public/v1/games/adam-wolfe-episode-2-the-devil-you-know/index.json new file mode 100644 index 000000000000..1baf48cfcca3 --- /dev/null +++ b/site/public/v1/games/adam-wolfe-episode-2-the-devil-you-know/index.json @@ -0,0 +1,25 @@ +{ + "id": 3561, + "slug": "adam-wolfe-episode-2-the-devil-you-know", + "name": "Adam Wolfe: Episode 2 - The Devil You Know", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127326389" + ], + "created_at": "2026-07-10T10:09:56.195670", + "updated_at": "2026-07-10T10:09:56.195670", + "url": "/v1/games/adam-wolfe-episode-2-the-devil-you-know" +} diff --git a/site/public/v1/games/adam-wolfe-episode-3-lady-and-the-painter/index.json b/site/public/v1/games/adam-wolfe-episode-3-lady-and-the-painter/index.json new file mode 100644 index 000000000000..de8c63b5d5b1 --- /dev/null +++ b/site/public/v1/games/adam-wolfe-episode-3-lady-and-the-painter/index.json @@ -0,0 +1,25 @@ +{ + "id": 3562, + "slug": "adam-wolfe-episode-3-lady-and-the-painter", + "name": "Adam Wolfe: Episode 3 - Lady and the Painter", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127326432" + ], + "created_at": "2026-07-10T10:09:56.195670", + "updated_at": "2026-07-10T10:09:56.195670", + "url": "/v1/games/adam-wolfe-episode-3-lady-and-the-painter" +} diff --git a/site/public/v1/games/adam-wolfe-episode-4-zero-hour/index.json b/site/public/v1/games/adam-wolfe-episode-4-zero-hour/index.json new file mode 100644 index 000000000000..169a5390dec6 --- /dev/null +++ b/site/public/v1/games/adam-wolfe-episode-4-zero-hour/index.json @@ -0,0 +1,25 @@ +{ + "id": 3563, + "slug": "adam-wolfe-episode-4-zero-hour", + "name": "Adam Wolfe: Episode 4 - Zero Hour", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127326510" + ], + "created_at": "2026-07-10T10:09:56.196681", + "updated_at": "2026-07-10T10:09:56.196681", + "url": "/v1/games/adam-wolfe-episode-4-zero-hour" +} diff --git a/site/public/v1/games/adk-tamashii/index.json b/site/public/v1/games/adk-tamashii/index.json new file mode 100644 index 000000000000..f7a78b7ca175 --- /dev/null +++ b/site/public/v1/games/adk-tamashii/index.json @@ -0,0 +1,29 @@ +{ + "id": 3658, + "slug": "adk-tamashii", + "name": "ADK Tamashii", + "release_date": "2008-12-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 4" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "SNK" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4651139" + ], + "created_at": "2026-07-10T10:09:56.225748", + "updated_at": "2026-07-10T10:09:56.225748", + "url": "/v1/games/adk-tamashii" +} diff --git a/site/public/v1/games/adoom/index.json b/site/public/v1/games/adoom/index.json new file mode 100644 index 000000000000..71ca38753c2e --- /dev/null +++ b/site/public/v1/games/adoom/index.json @@ -0,0 +1,27 @@ +{ + "id": 3673, + "slug": "adoom", + "name": "ADoom", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Commodore Amiga" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124473038" + ], + "created_at": "2026-07-10T10:09:56.229680", + "updated_at": "2026-07-10T10:09:56.229680", + "url": "/v1/games/adoom" +} diff --git a/site/public/v1/games/adopt-me/index.json b/site/public/v1/games/adopt-me/index.json new file mode 100644 index 000000000000..2f619ef8074d --- /dev/null +++ b/site/public/v1/games/adopt-me/index.json @@ -0,0 +1,29 @@ +{ + "id": 3674, + "slug": "adopt-me", + "name": "Adopt Me!", + "release_date": "2017-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "iOS", + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q98078995" + ], + "created_at": "2026-07-10T10:09:56.229680", + "updated_at": "2026-07-10T10:09:56.229680", + "url": "/v1/games/adopt-me" +} diff --git a/site/public/v1/games/advance-wars-1-2-re-boot-camp/index.json b/site/public/v1/games/advance-wars-1-2-re-boot-camp/index.json new file mode 100644 index 000000000000..41345beae715 --- /dev/null +++ b/site/public/v1/games/advance-wars-1-2-re-boot-camp/index.json @@ -0,0 +1,32 @@ +{ + "id": 3735, + "slug": "advance-wars-1-2-re-boot-camp", + "name": "Advance Wars 1+2: Re-Boot Camp", + "release_date": "2023-04-21", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "role-playing video game", + "turn-based strategy video game" + ], + "stores": [], + "developers": [ + "WayForward Technologies" + ], + "publishers": [ + "Nintendo" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108744830" + ], + "created_at": "2026-07-10T10:09:56.246677", + "updated_at": "2026-07-10T10:09:56.246677", + "url": "/v1/games/advance-wars-1-2-re-boot-camp" +} diff --git a/site/public/v1/games/affairs-of-the-court-choice-of-romance-a-life-mage-child/index.json b/site/public/v1/games/affairs-of-the-court-choice-of-romance-a-life-mage-child/index.json new file mode 100644 index 000000000000..ba2677e0b03c --- /dev/null +++ b/site/public/v1/games/affairs-of-the-court-choice-of-romance-a-life-mage-child/index.json @@ -0,0 +1,32 @@ +{ + "id": 4184, + "slug": "affairs-of-the-court-choice-of-romance-a-life-mage-child", + "name": "Affairs of the Court: Choice of Romance - A Life Mage Child", + "release_date": "2013-08-16", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Choice of Games" + ], + "publishers": [ + "Choice of Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115016138" + ], + "created_at": "2026-07-10T10:09:56.411033", + "updated_at": "2026-07-10T10:09:56.411033", + "url": "/v1/games/affairs-of-the-court-choice-of-romance-a-life-mage-child" +} diff --git a/site/public/v1/games/affairs-of-the-court-choice-of-romance-death-to-the-princess/index.json b/site/public/v1/games/affairs-of-the-court-choice-of-romance-death-to-the-princess/index.json new file mode 100644 index 000000000000..47a9c0c46759 --- /dev/null +++ b/site/public/v1/games/affairs-of-the-court-choice-of-romance-death-to-the-princess/index.json @@ -0,0 +1,32 @@ +{ + "id": 4185, + "slug": "affairs-of-the-court-choice-of-romance-death-to-the-princess", + "name": "Affairs of the Court: Choice of Romance - Death to the Princess", + "release_date": "2013-08-16", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Choice of Games" + ], + "publishers": [ + "Choice of Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115016144" + ], + "created_at": "2026-07-10T10:09:56.411033", + "updated_at": "2026-07-10T10:09:56.411033", + "url": "/v1/games/affairs-of-the-court-choice-of-romance-death-to-the-princess" +} diff --git a/site/public/v1/games/affairs-of-the-court-choice-of-romance-play-as-the-consort/index.json b/site/public/v1/games/affairs-of-the-court-choice-of-romance-play-as-the-consort/index.json new file mode 100644 index 000000000000..18b5b40256c2 --- /dev/null +++ b/site/public/v1/games/affairs-of-the-court-choice-of-romance-play-as-the-consort/index.json @@ -0,0 +1,32 @@ +{ + "id": 4186, + "slug": "affairs-of-the-court-choice-of-romance-play-as-the-consort", + "name": "Affairs of the Court: Choice of Romance - Play as the Consort", + "release_date": "2013-08-16", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Choice of Games" + ], + "publishers": [ + "Choice of Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115016132" + ], + "created_at": "2026-07-10T10:09:56.411033", + "updated_at": "2026-07-10T10:09:56.411033", + "url": "/v1/games/affairs-of-the-court-choice-of-romance-play-as-the-consort" +} diff --git a/site/public/v1/games/afterlife-empire-demo/index.json b/site/public/v1/games/afterlife-empire-demo/index.json new file mode 100644 index 000000000000..331d2a3aaaaf --- /dev/null +++ b/site/public/v1/games/afterlife-empire-demo/index.json @@ -0,0 +1,35 @@ +{ + "id": 4344, + "slug": "afterlife-empire-demo", + "name": "Afterlife Empire Demo", + "release_date": "2015-08-21", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "casual game", + "strategy game", + "business simulation game" + ], + "stores": [], + "developers": [ + "Game Nation", + "Autobótika" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107290920" + ], + "created_at": "2026-07-10T10:09:56.464077", + "updated_at": "2026-07-10T10:09:56.464077", + "url": "/v1/games/afterlife-empire-demo" +} diff --git a/site/public/v1/games/agartha-q2826430/index.json b/site/public/v1/games/agartha-q2826430/index.json new file mode 100644 index 000000000000..7d47b0c8aa3a --- /dev/null +++ b/site/public/v1/games/agartha-q2826430/index.json @@ -0,0 +1,30 @@ +{ + "id": 4410, + "slug": "agartha-q2826430", + "name": "Agartha", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "action-adventure game", + "survival horror" + ], + "stores": [], + "developers": [], + "publishers": [ + "Sega" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2826430" + ], + "created_at": "2026-07-10T10:09:56.500409", + "updated_at": "2026-07-10T10:09:56.500409", + "url": "/v1/games/agartha-q2826430" +} diff --git a/site/public/v1/games/age-of-adventure/index.json b/site/public/v1/games/age-of-adventure/index.json new file mode 100644 index 000000000000..c5d53caaba0e --- /dev/null +++ b/site/public/v1/games/age-of-adventure/index.json @@ -0,0 +1,31 @@ +{ + "id": 4427, + "slug": "age-of-adventure", + "name": "Age of Adventure", + "release_date": "1986-08-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Atari 8-bit family", + "Apple II series", + "Commodore 64" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Electronic Arts" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q114903071" + ], + "created_at": "2026-07-10T10:09:56.504407", + "updated_at": "2026-07-10T10:09:56.504407", + "url": "/v1/games/age-of-adventure" +} diff --git a/site/public/v1/games/age-of-chivalry/index.json b/site/public/v1/games/age-of-chivalry/index.json new file mode 100644 index 000000000000..0f77b045e867 --- /dev/null +++ b/site/public/v1/games/age-of-chivalry/index.json @@ -0,0 +1,29 @@ +{ + "id": 4436, + "slug": "age-of-chivalry", + "name": "Age of Chivalry", + "release_date": "2007-09-10", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2566060" + ], + "created_at": "2026-07-10T10:09:56.506419", + "updated_at": "2026-07-10T10:09:56.506419", + "url": "/v1/games/age-of-chivalry" +} diff --git a/site/public/v1/games/age-of-conan-rise-of-the-godslayer/index.json b/site/public/v1/games/age-of-conan-rise-of-the-godslayer/index.json new file mode 100644 index 000000000000..094ba91a60c4 --- /dev/null +++ b/site/public/v1/games/age-of-conan-rise-of-the-godslayer/index.json @@ -0,0 +1,31 @@ +{ + "id": 4438, + "slug": "age-of-conan-rise-of-the-godslayer", + "name": "Age of Conan: Rise of the Godslayer", + "release_date": "2010-05-11", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "massively multiplayer online role-playing game" + ], + "stores": [], + "developers": [ + "Funcom" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4691871" + ], + "created_at": "2026-07-10T10:09:56.507446", + "updated_at": "2026-07-10T10:09:56.507446", + "url": "/v1/games/age-of-conan-rise-of-the-godslayer" +} diff --git a/site/public/v1/games/age-of-discovery-q57973944/index.json b/site/public/v1/games/age-of-discovery-q57973944/index.json new file mode 100644 index 000000000000..f117d93f2c7c --- /dev/null +++ b/site/public/v1/games/age-of-discovery-q57973944/index.json @@ -0,0 +1,25 @@ +{ + "id": 4446, + "slug": "age-of-discovery-q57973944", + "name": "Age of Discovery", + "release_date": "2018-09-09", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q57973944" + ], + "created_at": "2026-07-10T10:09:56.509422", + "updated_at": "2026-07-10T10:09:56.509422", + "url": "/v1/games/age-of-discovery-q57973944" +} diff --git a/site/public/v1/games/age-of-empires-gold-edition/index.json b/site/public/v1/games/age-of-empires-gold-edition/index.json new file mode 100644 index 000000000000..0fb0e90096e6 --- /dev/null +++ b/site/public/v1/games/age-of-empires-gold-edition/index.json @@ -0,0 +1,25 @@ +{ + "id": 4453, + "slug": "age-of-empires-gold-edition", + "name": "Age of Empires: Gold Edition", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121888919" + ], + "created_at": "2026-07-10T10:09:56.511409", + "updated_at": "2026-07-10T10:09:56.511409", + "url": "/v1/games/age-of-empires-gold-edition" +} diff --git a/site/public/v1/games/age-of-empires-ii-definitive-edition-dawn-of-the-dukes/index.json b/site/public/v1/games/age-of-empires-ii-definitive-edition-dawn-of-the-dukes/index.json new file mode 100644 index 000000000000..cf4db7fbc8a5 --- /dev/null +++ b/site/public/v1/games/age-of-empires-ii-definitive-edition-dawn-of-the-dukes/index.json @@ -0,0 +1,35 @@ +{ + "id": 4455, + "slug": "age-of-empires-ii-definitive-edition-dawn-of-the-dukes", + "name": "Age of Empires II: Definitive Edition – Dawn of the Dukes", + "release_date": "2021-08-10", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "real-time strategy" + ], + "stores": [], + "developers": [ + "Forgotten Empires", + "Wicked Witch Software", + "Tantalus Media" + ], + "publishers": [ + "Xbox Game Studios" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107300310" + ], + "created_at": "2026-07-10T10:09:56.511409", + "updated_at": "2026-07-10T10:09:56.511409", + "url": "/v1/games/age-of-empires-ii-definitive-edition-dawn-of-the-dukes" +} diff --git a/site/public/v1/games/age-of-empires-ii-definitive-edition-dynasties-of-india/index.json b/site/public/v1/games/age-of-empires-ii-definitive-edition-dynasties-of-india/index.json new file mode 100644 index 000000000000..7e1b8715b480 --- /dev/null +++ b/site/public/v1/games/age-of-empires-ii-definitive-edition-dynasties-of-india/index.json @@ -0,0 +1,35 @@ +{ + "id": 4456, + "slug": "age-of-empires-ii-definitive-edition-dynasties-of-india", + "name": "Age of Empires II: Definitive Edition – Dynasties Of India", + "release_date": "2022-04-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "real-time strategy" + ], + "stores": [], + "developers": [ + "Forgotten Empires", + "Wicked Witch Software", + "Tantalus Media" + ], + "publishers": [ + "Xbox Game Studios" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111605710" + ], + "created_at": "2026-07-10T10:09:56.511409", + "updated_at": "2026-07-10T10:09:56.511409", + "url": "/v1/games/age-of-empires-ii-definitive-edition-dynasties-of-india" +} diff --git a/site/public/v1/games/age-of-empires-ii-definitive-edition-lords-of-the-west/index.json b/site/public/v1/games/age-of-empires-ii-definitive-edition-lords-of-the-west/index.json new file mode 100644 index 000000000000..8cf970dccef6 --- /dev/null +++ b/site/public/v1/games/age-of-empires-ii-definitive-edition-lords-of-the-west/index.json @@ -0,0 +1,35 @@ +{ + "id": 4457, + "slug": "age-of-empires-ii-definitive-edition-lords-of-the-west", + "name": "Age of Empires II: Definitive Edition - Lords of the West", + "release_date": "2021-01-26", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "real-time strategy" + ], + "stores": [], + "developers": [ + "Forgotten Empires", + "Wicked Witch Software", + "Tantalus Media" + ], + "publishers": [ + "Xbox Game Studios" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q104211860" + ], + "created_at": "2026-07-10T10:09:56.512404", + "updated_at": "2026-07-10T10:09:56.512404", + "url": "/v1/games/age-of-empires-ii-definitive-edition-lords-of-the-west" +} diff --git a/site/public/v1/games/age-of-empires-ii-definitive-edition-return-of-rome/index.json b/site/public/v1/games/age-of-empires-ii-definitive-edition-return-of-rome/index.json new file mode 100644 index 000000000000..77779cbf7786 --- /dev/null +++ b/site/public/v1/games/age-of-empires-ii-definitive-edition-return-of-rome/index.json @@ -0,0 +1,35 @@ +{ + "id": 4458, + "slug": "age-of-empires-ii-definitive-edition-return-of-rome", + "name": "Age of Empires II: Definitive Edition - Return of Rome", + "release_date": "2023-05-16", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "real-time strategy" + ], + "stores": [], + "developers": [ + "Wicked Witch Software", + "Tantalus Media", + "Forgotten Empires" + ], + "publishers": [ + "Xbox Game Studios" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q114869986" + ], + "created_at": "2026-07-10T10:09:56.512404", + "updated_at": "2026-07-10T10:09:56.512404", + "url": "/v1/games/age-of-empires-ii-definitive-edition-return-of-rome" +} diff --git a/site/public/v1/games/age-of-empires-ii-definitive-edition-the-mountain-royals/index.json b/site/public/v1/games/age-of-empires-ii-definitive-edition-the-mountain-royals/index.json new file mode 100644 index 000000000000..a546f2552cca --- /dev/null +++ b/site/public/v1/games/age-of-empires-ii-definitive-edition-the-mountain-royals/index.json @@ -0,0 +1,37 @@ +{ + "id": 4459, + "slug": "age-of-empires-ii-definitive-edition-the-mountain-royals", + "name": "Age of Empires II: Definitive Edition – The Mountain Royals", + "release_date": "2023-10-31", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S", + "Microsoft Windows" + ], + "genres": [ + "real-time strategy" + ], + "stores": [], + "developers": [ + "Forgotten Empires", + "Wicked Witch Software", + "Tantalus Media", + "World's Edge" + ], + "publishers": [ + "Xbox Game Studios" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123120502" + ], + "created_at": "2026-07-10T10:09:56.512404", + "updated_at": "2026-07-10T10:09:56.512404", + "url": "/v1/games/age-of-empires-ii-definitive-edition-the-mountain-royals" +} diff --git a/site/public/v1/games/age-of-empires-ii-definitive-edition-victors-and-vanquished/index.json b/site/public/v1/games/age-of-empires-ii-definitive-edition-victors-and-vanquished/index.json new file mode 100644 index 000000000000..1c7d6f1e1fa9 --- /dev/null +++ b/site/public/v1/games/age-of-empires-ii-definitive-edition-victors-and-vanquished/index.json @@ -0,0 +1,25 @@ +{ + "id": 4460, + "slug": "age-of-empires-ii-definitive-edition-victors-and-vanquished", + "name": "Age of Empires II: Definitive Edition - Victors and Vanquished", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140447743" + ], + "created_at": "2026-07-10T10:09:56.512404", + "updated_at": "2026-07-10T10:09:56.512404", + "url": "/v1/games/age-of-empires-ii-definitive-edition-victors-and-vanquished" +} diff --git a/site/public/v1/games/age-of-empires-ii-hd-rise-of-the-rajas/index.json b/site/public/v1/games/age-of-empires-ii-hd-rise-of-the-rajas/index.json new file mode 100644 index 000000000000..26d020b1e03c --- /dev/null +++ b/site/public/v1/games/age-of-empires-ii-hd-rise-of-the-rajas/index.json @@ -0,0 +1,35 @@ +{ + "id": 4465, + "slug": "age-of-empires-ii-hd-rise-of-the-rajas", + "name": "Age of Empires II HD: Rise of the Rajas", + "release_date": "2016-12-19", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "real-time strategy", + "strategy video game" + ], + "stores": [], + "developers": [ + "Forgotten Empires", + "SkyBox Labs" + ], + "publishers": [ + "Xbox Game Studios" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28036752" + ], + "created_at": "2026-07-10T10:09:56.514419", + "updated_at": "2026-07-10T10:09:56.514419", + "url": "/v1/games/age-of-empires-ii-hd-rise-of-the-rajas" +} diff --git a/site/public/v1/games/age-of-empires-ii-hd-the-african-kingdoms/index.json b/site/public/v1/games/age-of-empires-ii-hd-the-african-kingdoms/index.json new file mode 100644 index 000000000000..65bee53f58df --- /dev/null +++ b/site/public/v1/games/age-of-empires-ii-hd-the-african-kingdoms/index.json @@ -0,0 +1,35 @@ +{ + "id": 4466, + "slug": "age-of-empires-ii-hd-the-african-kingdoms", + "name": "Age of Empires II HD: The African Kingdoms", + "release_date": "2015-11-05", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "real-time strategy", + "strategy video game" + ], + "stores": [], + "developers": [ + "Forgotten Empires", + "SkyBox Labs" + ], + "publishers": [ + "Xbox Game Studios" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q21059471" + ], + "created_at": "2026-07-10T10:09:56.514419", + "updated_at": "2026-07-10T10:09:56.514419", + "url": "/v1/games/age-of-empires-ii-hd-the-african-kingdoms" +} diff --git a/site/public/v1/games/age-of-empires-ii-hd-the-forgotten/index.json b/site/public/v1/games/age-of-empires-ii-hd-the-forgotten/index.json new file mode 100644 index 000000000000..1c900f5021a5 --- /dev/null +++ b/site/public/v1/games/age-of-empires-ii-hd-the-forgotten/index.json @@ -0,0 +1,34 @@ +{ + "id": 4467, + "slug": "age-of-empires-ii-hd-the-forgotten", + "name": "Age of Empires II HD: The Forgotten", + "release_date": "2013-11-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "real-time strategy" + ], + "stores": [], + "developers": [ + "Forgotten Empires", + "SkyBox Labs" + ], + "publishers": [ + "Xbox Game Studios" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q12813511" + ], + "created_at": "2026-07-10T10:09:56.514419", + "updated_at": "2026-07-10T10:09:56.514419", + "url": "/v1/games/age-of-empires-ii-hd-the-forgotten" +} diff --git a/site/public/v1/games/age-of-empires-ii-the-american-world/index.json b/site/public/v1/games/age-of-empires-ii-the-american-world/index.json new file mode 100644 index 000000000000..49d8b95bf4aa --- /dev/null +++ b/site/public/v1/games/age-of-empires-ii-the-american-world/index.json @@ -0,0 +1,29 @@ +{ + "id": 4470, + "slug": "age-of-empires-ii-the-american-world", + "name": "Age of Empires II: The American World", + "release_date": "2019-02-11", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "strategy video game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q61959776" + ], + "created_at": "2026-07-10T10:09:56.515399", + "updated_at": "2026-07-10T10:09:56.515399", + "url": "/v1/games/age-of-empires-ii-the-american-world" +} diff --git a/site/public/v1/games/age-of-empires-ii-the-conquerors/index.json b/site/public/v1/games/age-of-empires-ii-the-conquerors/index.json new file mode 100644 index 000000000000..8c514b69d1dc --- /dev/null +++ b/site/public/v1/games/age-of-empires-ii-the-conquerors/index.json @@ -0,0 +1,32 @@ +{ + "id": 4471, + "slug": "age-of-empires-ii-the-conquerors", + "name": "Age of Empires II: The Conquerors", + "release_date": "2000-08-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Classic Mac OS", + "Microsoft Windows" + ], + "genres": [ + "real-time strategy" + ], + "stores": [], + "developers": [], + "publishers": [ + "Xbox Game Studios" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q615499" + ], + "created_at": "2026-07-10T10:09:56.515399", + "updated_at": "2026-07-10T10:09:56.515399", + "url": "/v1/games/age-of-empires-ii-the-conquerors" +} diff --git a/site/public/v1/games/age-of-empires-iii-definitive-edition-knights-of-the-mediterranean/index.json b/site/public/v1/games/age-of-empires-iii-definitive-edition-knights-of-the-mediterranean/index.json new file mode 100644 index 000000000000..9262ad84d241 --- /dev/null +++ b/site/public/v1/games/age-of-empires-iii-definitive-edition-knights-of-the-mediterranean/index.json @@ -0,0 +1,34 @@ +{ + "id": 4472, + "slug": "age-of-empires-iii-definitive-edition-knights-of-the-mediterranean", + "name": "Age of Empires III: Definitive Edition - Knights of the Mediterranean", + "release_date": "2022-05-26", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "real-time strategy" + ], + "stores": [], + "developers": [ + "Forgotten Empires", + "Tantalus Media" + ], + "publishers": [ + "Xbox Game Studios" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111977368" + ], + "created_at": "2026-07-10T10:09:56.515399", + "updated_at": "2026-07-10T10:09:56.515399", + "url": "/v1/games/age-of-empires-iii-definitive-edition-knights-of-the-mediterranean" +} diff --git a/site/public/v1/games/age-of-empires-iii-definitive-edition-mexico-civilization/index.json b/site/public/v1/games/age-of-empires-iii-definitive-edition-mexico-civilization/index.json new file mode 100644 index 000000000000..eef6f07bc23d --- /dev/null +++ b/site/public/v1/games/age-of-empires-iii-definitive-edition-mexico-civilization/index.json @@ -0,0 +1,34 @@ +{ + "id": 4473, + "slug": "age-of-empires-iii-definitive-edition-mexico-civilization", + "name": "Age of Empires III: Definitive Edition - Mexico Civilization", + "release_date": "2021-12-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "real-time strategy" + ], + "stores": [], + "developers": [ + "Forgotten Empires", + "Tantalus Media" + ], + "publishers": [ + "Xbox Game Studios" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109678047" + ], + "created_at": "2026-07-10T10:09:56.516398", + "updated_at": "2026-07-10T10:09:56.516398", + "url": "/v1/games/age-of-empires-iii-definitive-edition-mexico-civilization" +} diff --git a/site/public/v1/games/age-of-empires-iii-definitive-edition-the-african-royals/index.json b/site/public/v1/games/age-of-empires-iii-definitive-edition-the-african-royals/index.json new file mode 100644 index 000000000000..260298873d83 --- /dev/null +++ b/site/public/v1/games/age-of-empires-iii-definitive-edition-the-african-royals/index.json @@ -0,0 +1,34 @@ +{ + "id": 4474, + "slug": "age-of-empires-iii-definitive-edition-the-african-royals", + "name": "Age of Empires III: Definitive Edition - The African Royals", + "release_date": "2021-08-02", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "real-time strategy" + ], + "stores": [], + "developers": [ + "Forgotten Empires", + "Tantalus Media" + ], + "publishers": [ + "Xbox Game Studios" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107655581" + ], + "created_at": "2026-07-10T10:09:56.516398", + "updated_at": "2026-07-10T10:09:56.516398", + "url": "/v1/games/age-of-empires-iii-definitive-edition-the-african-royals" +} diff --git a/site/public/v1/games/age-of-empires-iii-definitive-edition-united-states-civilization/index.json b/site/public/v1/games/age-of-empires-iii-definitive-edition-united-states-civilization/index.json new file mode 100644 index 000000000000..3e645db3aa8a --- /dev/null +++ b/site/public/v1/games/age-of-empires-iii-definitive-edition-united-states-civilization/index.json @@ -0,0 +1,34 @@ +{ + "id": 4475, + "slug": "age-of-empires-iii-definitive-edition-united-states-civilization", + "name": "Age of Empires III: Definitive Edition - United States Civilization", + "release_date": "2021-04-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "real-time strategy" + ], + "stores": [], + "developers": [ + "Forgotten Empires", + "Tantalus Media" + ], + "publishers": [ + "Xbox Game Studios" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106695023" + ], + "created_at": "2026-07-10T10:09:56.516398", + "updated_at": "2026-07-10T10:09:56.516398", + "url": "/v1/games/age-of-empires-iii-definitive-edition-united-states-civilization" +} diff --git a/site/public/v1/games/age-of-empires-iii-gold-edition/index.json b/site/public/v1/games/age-of-empires-iii-gold-edition/index.json new file mode 100644 index 000000000000..ffebe15866ea --- /dev/null +++ b/site/public/v1/games/age-of-empires-iii-gold-edition/index.json @@ -0,0 +1,25 @@ +{ + "id": 4477, + "slug": "age-of-empires-iii-gold-edition", + "name": "Age of Empires III: Gold Edition", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121888953" + ], + "created_at": "2026-07-10T10:09:56.516398", + "updated_at": "2026-07-10T10:09:56.516398", + "url": "/v1/games/age-of-empires-iii-gold-edition" +} diff --git a/site/public/v1/games/age-of-empires-iii-the-asian-dynasties/index.json b/site/public/v1/games/age-of-empires-iii-the-asian-dynasties/index.json new file mode 100644 index 000000000000..c42d9255e285 --- /dev/null +++ b/site/public/v1/games/age-of-empires-iii-the-asian-dynasties/index.json @@ -0,0 +1,32 @@ +{ + "id": 4479, + "slug": "age-of-empires-iii-the-asian-dynasties", + "name": "Age of Empires III: The Asian Dynasties", + "release_date": "2007-10-23", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "real-time strategy" + ], + "stores": [], + "developers": [], + "publishers": [ + "Xbox Game Studios" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q862462" + ], + "created_at": "2026-07-10T10:09:56.517408", + "updated_at": "2026-07-10T10:09:56.517408", + "url": "/v1/games/age-of-empires-iii-the-asian-dynasties" +} diff --git a/site/public/v1/games/age-of-empires-iii-the-warchiefs/index.json b/site/public/v1/games/age-of-empires-iii-the-warchiefs/index.json new file mode 100644 index 000000000000..4551f767a067 --- /dev/null +++ b/site/public/v1/games/age-of-empires-iii-the-warchiefs/index.json @@ -0,0 +1,32 @@ +{ + "id": 4480, + "slug": "age-of-empires-iii-the-warchiefs", + "name": "Age of Empires III: The WarChiefs", + "release_date": "2006-10-17", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "real-time strategy" + ], + "stores": [], + "developers": [], + "publishers": [ + "Xbox Game Studios" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q853074" + ], + "created_at": "2026-07-10T10:09:56.517408", + "updated_at": "2026-07-10T10:09:56.517408", + "url": "/v1/games/age-of-empires-iii-the-warchiefs" +} diff --git a/site/public/v1/games/age-of-empires-iv-the-sultans-ascend/index.json b/site/public/v1/games/age-of-empires-iv-the-sultans-ascend/index.json new file mode 100644 index 000000000000..29a3e6f3175a --- /dev/null +++ b/site/public/v1/games/age-of-empires-iv-the-sultans-ascend/index.json @@ -0,0 +1,34 @@ +{ + "id": 4484, + "slug": "age-of-empires-iv-the-sultans-ascend", + "name": "Age of Empires IV: The Sultans Ascend", + "release_date": "2023-11-14", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "real-time strategy" + ], + "stores": [], + "developers": [ + "Forgotten Empires", + "World's Edge" + ], + "publishers": [ + "Xbox Game Studios" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123466979" + ], + "created_at": "2026-07-10T10:09:56.518395", + "updated_at": "2026-07-10T10:09:56.518395", + "url": "/v1/games/age-of-empires-iv-the-sultans-ascend" +} diff --git a/site/public/v1/games/age-of-empires-the-rise-of-rome/index.json b/site/public/v1/games/age-of-empires-the-rise-of-rome/index.json new file mode 100644 index 000000000000..dcf4bcc92618 --- /dev/null +++ b/site/public/v1/games/age-of-empires-the-rise-of-rome/index.json @@ -0,0 +1,31 @@ +{ + "id": 4490, + "slug": "age-of-empires-the-rise-of-rome", + "name": "Age of Empires: The Rise of Rome", + "release_date": "1998-10-31", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "real-time strategy" + ], + "stores": [], + "developers": [], + "publishers": [ + "Xbox Game Studios" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q515876" + ], + "created_at": "2026-07-10T10:09:56.519452", + "updated_at": "2026-07-10T10:09:56.519452", + "url": "/v1/games/age-of-empires-the-rise-of-rome" +} diff --git a/site/public/v1/games/age-of-mythology-retold-beta/index.json b/site/public/v1/games/age-of-mythology-retold-beta/index.json new file mode 100644 index 000000000000..082e8262b9a2 --- /dev/null +++ b/site/public/v1/games/age-of-mythology-retold-beta/index.json @@ -0,0 +1,29 @@ +{ + "id": 4527, + "slug": "age-of-mythology-retold-beta", + "name": "Age of Mythology: Retold (Beta)", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "real-time strategy" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127414937" + ], + "created_at": "2026-07-10T10:09:56.531080", + "updated_at": "2026-07-10T10:09:56.531080", + "url": "/v1/games/age-of-mythology-retold-beta" +} diff --git a/site/public/v1/games/age-of-mythology-retold-heavenly-spear/index.json b/site/public/v1/games/age-of-mythology-retold-heavenly-spear/index.json new file mode 100644 index 000000000000..f1e3aaf4cbaf --- /dev/null +++ b/site/public/v1/games/age-of-mythology-retold-heavenly-spear/index.json @@ -0,0 +1,27 @@ +{ + "id": 4528, + "slug": "age-of-mythology-retold-heavenly-spear", + "name": "Age of Mythology: Retold – Heavenly Spear", + "release_date": "2025-09-30", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134785302" + ], + "created_at": "2026-07-10T10:09:56.531080", + "updated_at": "2026-07-10T10:09:56.531080", + "url": "/v1/games/age-of-mythology-retold-heavenly-spear" +} diff --git a/site/public/v1/games/age-of-mythology-retold-immortal-pillars/index.json b/site/public/v1/games/age-of-mythology-retold-immortal-pillars/index.json new file mode 100644 index 000000000000..c003804e715a --- /dev/null +++ b/site/public/v1/games/age-of-mythology-retold-immortal-pillars/index.json @@ -0,0 +1,31 @@ +{ + "id": 4529, + "slug": "age-of-mythology-retold-immortal-pillars", + "name": "Age of Mythology: Retold - Immortal Pillars", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "real-time strategy" + ], + "stores": [], + "developers": [ + "World's Edge" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130373740" + ], + "created_at": "2026-07-10T10:09:56.531080", + "updated_at": "2026-07-10T10:09:56.531080", + "url": "/v1/games/age-of-mythology-retold-immortal-pillars" +} diff --git a/site/public/v1/games/age-of-mythology-tale-of-the-dragon/index.json b/site/public/v1/games/age-of-mythology-tale-of-the-dragon/index.json new file mode 100644 index 000000000000..6b63c184e3cc --- /dev/null +++ b/site/public/v1/games/age-of-mythology-tale-of-the-dragon/index.json @@ -0,0 +1,35 @@ +{ + "id": 4532, + "slug": "age-of-mythology-tale-of-the-dragon", + "name": "Age of Mythology: Tale of the Dragon", + "release_date": "2016-01-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "real-time strategy", + "strategy video game" + ], + "stores": [], + "developers": [ + "Forgotten Empires", + "SkyBox Labs" + ], + "publishers": [ + "Xbox Game Studios" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q21059469" + ], + "created_at": "2026-07-10T10:09:56.532680", + "updated_at": "2026-07-10T10:09:56.532680", + "url": "/v1/games/age-of-mythology-tale-of-the-dragon" +} diff --git a/site/public/v1/games/age-of-mythology-the-titans/index.json b/site/public/v1/games/age-of-mythology-the-titans/index.json new file mode 100644 index 000000000000..b14b995f9e45 --- /dev/null +++ b/site/public/v1/games/age-of-mythology-the-titans/index.json @@ -0,0 +1,31 @@ +{ + "id": 4533, + "slug": "age-of-mythology-the-titans", + "name": "Age of Mythology: The Titans", + "release_date": "2003-09-30", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "real-time strategy" + ], + "stores": [], + "developers": [], + "publishers": [ + "Xbox Game Studios" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1044761" + ], + "created_at": "2026-07-10T10:09:56.532680", + "updated_at": "2026-07-10T10:09:56.532680", + "url": "/v1/games/age-of-mythology-the-titans" +} diff --git a/site/public/v1/games/age-of-pirates-dead-man-s-chest/index.json b/site/public/v1/games/age-of-pirates-dead-man-s-chest/index.json new file mode 100644 index 000000000000..fd8b96508bfc --- /dev/null +++ b/site/public/v1/games/age-of-pirates-dead-man-s-chest/index.json @@ -0,0 +1,33 @@ +{ + "id": 4539, + "slug": "age-of-pirates-dead-man-s-chest", + "name": "Age of Pirates: Dead Man's Chest", + "release_date": "2007-09-21", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "role-playing video game" + ], + "stores": [], + "developers": [ + "Akella" + ], + "publishers": [ + "Akella" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110703847" + ], + "created_at": "2026-07-10T10:09:56.534304", + "updated_at": "2026-07-10T10:09:56.534304", + "url": "/v1/games/age-of-pirates-dead-man-s-chest" +} diff --git a/site/public/v1/games/age-of-wonders-4-eldritch-realms/index.json b/site/public/v1/games/age-of-wonders-4-eldritch-realms/index.json new file mode 100644 index 000000000000..61d55d8cdc74 --- /dev/null +++ b/site/public/v1/games/age-of-wonders-4-eldritch-realms/index.json @@ -0,0 +1,25 @@ +{ + "id": 4572, + "slug": "age-of-wonders-4-eldritch-realms", + "name": "Age of Wonders 4: Eldritch Realms", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140447175" + ], + "created_at": "2026-07-10T10:09:56.543753", + "updated_at": "2026-07-10T10:09:56.543753", + "url": "/v1/games/age-of-wonders-4-eldritch-realms" +} diff --git a/site/public/v1/games/age-of-wonders-4-premium-edition/index.json b/site/public/v1/games/age-of-wonders-4-premium-edition/index.json new file mode 100644 index 000000000000..e647cf2ce98b --- /dev/null +++ b/site/public/v1/games/age-of-wonders-4-premium-edition/index.json @@ -0,0 +1,31 @@ +{ + "id": 4574, + "slug": "age-of-wonders-4-premium-edition", + "name": "Age of Wonders 4: Premium Edition", + "release_date": "2023-05-02", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S" + ], + "genres": [], + "stores": [], + "developers": [ + "Triumph Studios" + ], + "publishers": [ + "Paradox Interactive" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123300188" + ], + "created_at": "2026-07-10T10:09:56.543753", + "updated_at": "2026-07-10T10:09:56.543753", + "url": "/v1/games/age-of-wonders-4-premium-edition" +} diff --git a/site/public/v1/games/age-of-wonders-iii-deluxe-edition/index.json b/site/public/v1/games/age-of-wonders-iii-deluxe-edition/index.json new file mode 100644 index 000000000000..148b56272788 --- /dev/null +++ b/site/public/v1/games/age-of-wonders-iii-deluxe-edition/index.json @@ -0,0 +1,25 @@ +{ + "id": 4577, + "slug": "age-of-wonders-iii-deluxe-edition", + "name": "Age of Wonders III (Deluxe Edition)", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q59010403" + ], + "created_at": "2026-07-10T10:09:56.544672", + "updated_at": "2026-07-10T10:09:56.544672", + "url": "/v1/games/age-of-wonders-iii-deluxe-edition" +} diff --git a/site/public/v1/games/age-of-wonders-iii-eternal-lords/index.json b/site/public/v1/games/age-of-wonders-iii-eternal-lords/index.json new file mode 100644 index 000000000000..db949e26a2f2 --- /dev/null +++ b/site/public/v1/games/age-of-wonders-iii-eternal-lords/index.json @@ -0,0 +1,25 @@ +{ + "id": 4578, + "slug": "age-of-wonders-iii-eternal-lords", + "name": "Age of Wonders III: Eternal Lords", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140447869" + ], + "created_at": "2026-07-10T10:09:56.545782", + "updated_at": "2026-07-10T10:09:56.545782", + "url": "/v1/games/age-of-wonders-iii-eternal-lords" +} diff --git a/site/public/v1/games/age-of-wonders-iii-golden-realms/index.json b/site/public/v1/games/age-of-wonders-iii-golden-realms/index.json new file mode 100644 index 000000000000..513b12be8de0 --- /dev/null +++ b/site/public/v1/games/age-of-wonders-iii-golden-realms/index.json @@ -0,0 +1,28 @@ +{ + "id": 4579, + "slug": "age-of-wonders-iii-golden-realms", + "name": "Age of Wonders III - Golden Realms", + "release_date": "2014-09-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127414055" + ], + "created_at": "2026-07-10T10:09:56.545782", + "updated_at": "2026-07-10T10:09:56.545782", + "url": "/v1/games/age-of-wonders-iii-golden-realms" +} diff --git a/site/public/v1/games/age-of-wonders-planetfall-invasions/index.json b/site/public/v1/games/age-of-wonders-planetfall-invasions/index.json new file mode 100644 index 000000000000..7c07d0ffc2f8 --- /dev/null +++ b/site/public/v1/games/age-of-wonders-planetfall-invasions/index.json @@ -0,0 +1,32 @@ +{ + "id": 4581, + "slug": "age-of-wonders-planetfall-invasions", + "name": "Age Of Wonders: Planetfall - Invasions", + "release_date": "2020-05-26", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Triumph Studios" + ], + "publishers": [ + "Paradox Interactive" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127414091" + ], + "created_at": "2026-07-10T10:09:56.545782", + "updated_at": "2026-07-10T10:09:56.545782", + "url": "/v1/games/age-of-wonders-planetfall-invasions" +} diff --git a/site/public/v1/games/age-of-wonders-planetfall-revelations/index.json b/site/public/v1/games/age-of-wonders-planetfall-revelations/index.json new file mode 100644 index 000000000000..51a2f7f5b8b1 --- /dev/null +++ b/site/public/v1/games/age-of-wonders-planetfall-revelations/index.json @@ -0,0 +1,32 @@ +{ + "id": 4582, + "slug": "age-of-wonders-planetfall-revelations", + "name": "Age Of Wonders: Planetfall - Revelations", + "release_date": "2019-11-19", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Triumph Studios" + ], + "publishers": [ + "Paradox Interactive" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127414116" + ], + "created_at": "2026-07-10T10:09:56.546727", + "updated_at": "2026-07-10T10:09:56.546727", + "url": "/v1/games/age-of-wonders-planetfall-revelations" +} diff --git a/site/public/v1/games/age-of-wonders-planetfall-star-kings/index.json b/site/public/v1/games/age-of-wonders-planetfall-star-kings/index.json new file mode 100644 index 000000000000..0149b04037c7 --- /dev/null +++ b/site/public/v1/games/age-of-wonders-planetfall-star-kings/index.json @@ -0,0 +1,32 @@ +{ + "id": 4583, + "slug": "age-of-wonders-planetfall-star-kings", + "name": "Age Of Wonders: Planetfall - Star Kings", + "release_date": "2020-11-10", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Triumph Studios" + ], + "publishers": [ + "Paradox Interactive" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127414125" + ], + "created_at": "2026-07-10T10:09:56.546727", + "updated_at": "2026-07-10T10:09:56.546727", + "url": "/v1/games/age-of-wonders-planetfall-star-kings" +} diff --git a/site/public/v1/games/agent/index.json b/site/public/v1/games/agent/index.json new file mode 100644 index 000000000000..038fe7bbfd37 --- /dev/null +++ b/site/public/v1/games/agent/index.json @@ -0,0 +1,29 @@ +{ + "id": 4643, + "slug": "agent", + "name": "Agent", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 3" + ], + "genres": [ + "action game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2661073" + ], + "created_at": "2026-07-10T10:09:56.561670", + "updated_at": "2026-07-10T10:09:56.561670", + "url": "/v1/games/agent" +} diff --git a/site/public/v1/games/agents-of-yesterday-artifacts/index.json b/site/public/v1/games/agents-of-yesterday-artifacts/index.json new file mode 100644 index 000000000000..457993a4a880 --- /dev/null +++ b/site/public/v1/games/agents-of-yesterday-artifacts/index.json @@ -0,0 +1,25 @@ +{ + "id": 4653, + "slug": "agents-of-yesterday-artifacts", + "name": "Agents Of Yesterday: Artifacts", + "release_date": "2016-09-25", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q57973880" + ], + "created_at": "2026-07-10T10:09:56.564734", + "updated_at": "2026-07-10T10:09:56.564734", + "url": "/v1/games/agents-of-yesterday-artifacts" +} diff --git a/site/public/v1/games/agents-of-yesterday/index.json b/site/public/v1/games/agents-of-yesterday/index.json new file mode 100644 index 000000000000..733190a53e5e --- /dev/null +++ b/site/public/v1/games/agents-of-yesterday/index.json @@ -0,0 +1,25 @@ +{ + "id": 4654, + "slug": "agents-of-yesterday", + "name": "Agents Of Yesterday", + "release_date": "2016-08-06", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q57973879" + ], + "created_at": "2026-07-10T10:09:56.564734", + "updated_at": "2026-07-10T10:09:56.564734", + "url": "/v1/games/agents-of-yesterday" +} diff --git a/site/public/v1/games/agony-unrated/index.json b/site/public/v1/games/agony-unrated/index.json new file mode 100644 index 000000000000..0596afafad5a --- /dev/null +++ b/site/public/v1/games/agony-unrated/index.json @@ -0,0 +1,33 @@ +{ + "id": 4698, + "slug": "agony-unrated", + "name": "Agony Unrated", + "release_date": "2018-10-30", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "survival horror" + ], + "stores": [], + "developers": [ + "Madmind Studio" + ], + "publishers": [ + "Madmind Studio" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105704604" + ], + "created_at": "2026-07-10T10:09:56.576673", + "updated_at": "2026-07-10T10:09:56.576673", + "url": "/v1/games/agony-unrated" +} diff --git a/site/public/v1/games/ai-war-vengeance-of-the-machine/index.json b/site/public/v1/games/ai-war-vengeance-of-the-machine/index.json new file mode 100644 index 000000000000..c30dabbca149 --- /dev/null +++ b/site/public/v1/games/ai-war-vengeance-of-the-machine/index.json @@ -0,0 +1,25 @@ +{ + "id": 4820, + "slug": "ai-war-vengeance-of-the-machine", + "name": "AI War: Vengeance of the Machine", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140469851" + ], + "created_at": "2026-07-10T10:09:56.609361", + "updated_at": "2026-07-10T10:09:56.609361", + "url": "/v1/games/ai-war-vengeance-of-the-machine" +} diff --git a/site/public/v1/games/aion-assault-on-balaurea/index.json b/site/public/v1/games/aion-assault-on-balaurea/index.json new file mode 100644 index 000000000000..0b9d96e3bfc0 --- /dev/null +++ b/site/public/v1/games/aion-assault-on-balaurea/index.json @@ -0,0 +1,33 @@ +{ + "id": 4916, + "slug": "aion-assault-on-balaurea", + "name": "Aion: Assault on Balaurea", + "release_date": "2010-09-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "massively multiplayer online role-playing game" + ], + "stores": [], + "developers": [ + "NC" + ], + "publishers": [ + "NC" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110817075" + ], + "created_at": "2026-07-10T10:09:56.635420", + "updated_at": "2026-07-10T10:09:56.635420", + "url": "/v1/games/aion-assault-on-balaurea" +} diff --git a/site/public/v1/games/air-sea-supremacy-q118005685/index.json b/site/public/v1/games/air-sea-supremacy-q118005685/index.json new file mode 100644 index 000000000000..2102fa355c46 --- /dev/null +++ b/site/public/v1/games/air-sea-supremacy-q118005685/index.json @@ -0,0 +1,25 @@ +{ + "id": 5000, + "slug": "air-sea-supremacy-q118005685", + "name": "Air/Sea Supremacy", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118005685" + ], + "created_at": "2026-07-10T10:09:56.658396", + "updated_at": "2026-07-10T10:09:56.658396", + "url": "/v1/games/air-sea-supremacy-q118005685" +} diff --git a/site/public/v1/games/airline-tycoon-2-falcon-airlines/index.json b/site/public/v1/games/airline-tycoon-2-falcon-airlines/index.json new file mode 100644 index 000000000000..6cd9d1bd3710 --- /dev/null +++ b/site/public/v1/games/airline-tycoon-2-falcon-airlines/index.json @@ -0,0 +1,31 @@ +{ + "id": 5092, + "slug": "airline-tycoon-2-falcon-airlines", + "name": "Airline Tycoon 2: Falcon Airlines", + "release_date": "2012-06-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "B-Alive GmbH" + ], + "publishers": [ + "Kalypso Media" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111621347" + ], + "created_at": "2026-07-10T10:09:56.683542", + "updated_at": "2026-07-10T10:09:56.683542", + "url": "/v1/games/airline-tycoon-2-falcon-airlines" +} diff --git a/site/public/v1/games/airline-tycoon-2-gold-edition/index.json b/site/public/v1/games/airline-tycoon-2-gold-edition/index.json new file mode 100644 index 000000000000..c19791957aee --- /dev/null +++ b/site/public/v1/games/airline-tycoon-2-gold-edition/index.json @@ -0,0 +1,27 @@ +{ + "id": 5093, + "slug": "airline-tycoon-2-gold-edition", + "name": "Airline Tycoon 2: Gold Edition", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Kalypso Media" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121889035" + ], + "created_at": "2026-07-10T10:09:56.683542", + "updated_at": "2026-07-10T10:09:56.683542", + "url": "/v1/games/airline-tycoon-2-gold-edition" +} diff --git a/site/public/v1/games/airline-tycoon-2-honey-airlines/index.json b/site/public/v1/games/airline-tycoon-2-honey-airlines/index.json new file mode 100644 index 000000000000..5d3ea9db716c --- /dev/null +++ b/site/public/v1/games/airline-tycoon-2-honey-airlines/index.json @@ -0,0 +1,31 @@ +{ + "id": 5094, + "slug": "airline-tycoon-2-honey-airlines", + "name": "Airline Tycoon 2: Honey Airlines", + "release_date": "2012-04-19", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "B-Alive GmbH" + ], + "publishers": [ + "Kalypso Media" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111621373" + ], + "created_at": "2026-07-10T10:09:56.683542", + "updated_at": "2026-07-10T10:09:56.683542", + "url": "/v1/games/airline-tycoon-2-honey-airlines" +} diff --git a/site/public/v1/games/airline-tycoon-deluxe/index.json b/site/public/v1/games/airline-tycoon-deluxe/index.json new file mode 100644 index 000000000000..d15888777992 --- /dev/null +++ b/site/public/v1/games/airline-tycoon-deluxe/index.json @@ -0,0 +1,31 @@ +{ + "id": 5096, + "slug": "airline-tycoon-deluxe", + "name": "Airline Tycoon Deluxe", + "release_date": "1998-08-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Classic Mac OS", + "macOS", + "Microsoft Windows" + ], + "genres": [ + "business simulation game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122152775" + ], + "created_at": "2026-07-10T10:09:56.683542", + "updated_at": "2026-07-10T10:09:56.683542", + "url": "/v1/games/airline-tycoon-deluxe" +} diff --git a/site/public/v1/games/airline-tycoon-first-class/index.json b/site/public/v1/games/airline-tycoon-first-class/index.json new file mode 100644 index 000000000000..c6f21f2bc965 --- /dev/null +++ b/site/public/v1/games/airline-tycoon-first-class/index.json @@ -0,0 +1,27 @@ +{ + "id": 5098, + "slug": "airline-tycoon-first-class", + "name": "Airline Tycoon: First Class", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "business simulation game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126372090" + ], + "created_at": "2026-07-10T10:09:56.684565", + "updated_at": "2026-07-10T10:09:56.684565", + "url": "/v1/games/airline-tycoon-first-class" +} diff --git a/site/public/v1/games/airwaysim/index.json b/site/public/v1/games/airwaysim/index.json new file mode 100644 index 000000000000..78440486e4d2 --- /dev/null +++ b/site/public/v1/games/airwaysim/index.json @@ -0,0 +1,27 @@ +{ + "id": 5188, + "slug": "airwaysim", + "name": "AirwaySim", + "release_date": "2006-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "business simulation game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q12300763" + ], + "created_at": "2026-07-10T10:09:56.708178", + "updated_at": "2026-07-10T10:09:56.708178", + "url": "/v1/games/airwaysim" +} diff --git a/site/public/v1/games/akka-arrh-q117826663/index.json b/site/public/v1/games/akka-arrh-q117826663/index.json new file mode 100644 index 000000000000..be9dec3a29dd --- /dev/null +++ b/site/public/v1/games/akka-arrh-q117826663/index.json @@ -0,0 +1,27 @@ +{ + "id": 5308, + "slug": "akka-arrh-q117826663", + "name": "Akka Arrh", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Atari, Inc." + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117826663" + ], + "created_at": "2026-07-10T10:09:56.739192", + "updated_at": "2026-07-10T10:09:56.739192", + "url": "/v1/games/akka-arrh-q117826663" +} diff --git a/site/public/v1/games/alan-wake-ii-night-springs/index.json b/site/public/v1/games/alan-wake-ii-night-springs/index.json new file mode 100644 index 000000000000..f6cd3c8316f2 --- /dev/null +++ b/site/public/v1/games/alan-wake-ii-night-springs/index.json @@ -0,0 +1,33 @@ +{ + "id": 5375, + "slug": "alan-wake-ii-night-springs", + "name": "Alan Wake II: Night Springs", + "release_date": "2024-06-08", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 5", + "Microsoft Windows" + ], + "genres": [ + "survival horror" + ], + "stores": [], + "developers": [], + "publishers": [ + "Epic Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126410039" + ], + "created_at": "2026-07-10T10:09:56.765084", + "updated_at": "2026-07-10T10:09:56.765084", + "url": "/v1/games/alan-wake-ii-night-springs" +} diff --git a/site/public/v1/games/alan-wake-ii-the-lake-house/index.json b/site/public/v1/games/alan-wake-ii-the-lake-house/index.json new file mode 100644 index 000000000000..7fd1af038b43 --- /dev/null +++ b/site/public/v1/games/alan-wake-ii-the-lake-house/index.json @@ -0,0 +1,34 @@ +{ + "id": 5376, + "slug": "alan-wake-ii-the-lake-house", + "name": "Alan Wake II: The Lake House", + "release_date": "2024-10-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 5", + "Microsoft Windows" + ], + "genres": [ + "survival horror", + "third-person shooter" + ], + "stores": [], + "developers": [], + "publishers": [ + "Epic Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126414466" + ], + "created_at": "2026-07-10T10:09:56.765084", + "updated_at": "2026-07-10T10:09:56.765084", + "url": "/v1/games/alan-wake-ii-the-lake-house" +} diff --git a/site/public/v1/games/alan-wake-the-signal/index.json b/site/public/v1/games/alan-wake-the-signal/index.json new file mode 100644 index 000000000000..68f50ee11f5f --- /dev/null +++ b/site/public/v1/games/alan-wake-the-signal/index.json @@ -0,0 +1,25 @@ +{ + "id": 5378, + "slug": "alan-wake-the-signal", + "name": "Alan Wake: The Signal", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110160594" + ], + "created_at": "2026-07-10T10:09:56.766082", + "updated_at": "2026-07-10T10:09:56.766082", + "url": "/v1/games/alan-wake-the-signal" +} diff --git a/site/public/v1/games/alan-wake-the-writer/index.json b/site/public/v1/games/alan-wake-the-writer/index.json new file mode 100644 index 000000000000..f9aebb4ad1a6 --- /dev/null +++ b/site/public/v1/games/alan-wake-the-writer/index.json @@ -0,0 +1,25 @@ +{ + "id": 5379, + "slug": "alan-wake-the-writer", + "name": "Alan Wake: The Writer", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110160601" + ], + "created_at": "2026-07-10T10:09:56.766082", + "updated_at": "2026-07-10T10:09:56.766082", + "url": "/v1/games/alan-wake-the-writer" +} diff --git a/site/public/v1/games/alea-jacta-est-cantabrian-wars/index.json b/site/public/v1/games/alea-jacta-est-cantabrian-wars/index.json new file mode 100644 index 000000000000..fca2ef3304d8 --- /dev/null +++ b/site/public/v1/games/alea-jacta-est-cantabrian-wars/index.json @@ -0,0 +1,25 @@ +{ + "id": 5533, + "slug": "alea-jacta-est-cantabrian-wars", + "name": "Alea Jacta Est: Cantabrian Wars", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140471215" + ], + "created_at": "2026-07-10T10:09:56.816700", + "updated_at": "2026-07-10T10:09:56.816700", + "url": "/v1/games/alea-jacta-est-cantabrian-wars" +} diff --git a/site/public/v1/games/aleste-collection/index.json b/site/public/v1/games/aleste-collection/index.json new file mode 100644 index 000000000000..0ebed18bc5a9 --- /dev/null +++ b/site/public/v1/games/aleste-collection/index.json @@ -0,0 +1,33 @@ +{ + "id": 5565, + "slug": "aleste-collection", + "name": "Aleste Collection", + "release_date": "2020-12-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 4" + ], + "genres": [ + "shooter game" + ], + "stores": [], + "developers": [ + "M2" + ], + "publishers": [ + "M2" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q99467153" + ], + "created_at": "2026-07-10T10:09:56.824611", + "updated_at": "2026-07-10T10:09:56.824611", + "url": "/v1/games/aleste-collection" +} diff --git a/site/public/v1/games/alhambra/index.json b/site/public/v1/games/alhambra/index.json new file mode 100644 index 000000000000..63b170ad512c --- /dev/null +++ b/site/public/v1/games/alhambra/index.json @@ -0,0 +1,28 @@ +{ + "id": 5650, + "slug": "alhambra", + "name": "Alhambra", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "turn-based strategy video game", + "board video game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4724431" + ], + "created_at": "2026-07-10T10:09:56.846645", + "updated_at": "2026-07-10T10:09:56.846645", + "url": "/v1/games/alhambra" +} diff --git a/site/public/v1/games/alice-asylum/index.json b/site/public/v1/games/alice-asylum/index.json new file mode 100644 index 000000000000..fb20fa408565 --- /dev/null +++ b/site/public/v1/games/alice-asylum/index.json @@ -0,0 +1,25 @@ +{ + "id": 5669, + "slug": "alice-asylum", + "name": "Alice: Asylum", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q75122536" + ], + "created_at": "2026-07-10T10:09:56.851671", + "updated_at": "2026-07-10T10:09:56.851671", + "url": "/v1/games/alice-asylum" +} diff --git a/site/public/v1/games/alien-breed-3d-non-playable-demo/index.json b/site/public/v1/games/alien-breed-3d-non-playable-demo/index.json new file mode 100644 index 000000000000..c96f07be88b5 --- /dev/null +++ b/site/public/v1/games/alien-breed-3d-non-playable-demo/index.json @@ -0,0 +1,25 @@ +{ + "id": 5761, + "slug": "alien-breed-3d-non-playable-demo", + "name": "Alien Breed 3D (Non-Playable Demo)", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126187776" + ], + "created_at": "2026-07-10T10:09:56.874641", + "updated_at": "2026-07-10T10:09:56.874641", + "url": "/v1/games/alien-breed-3d-non-playable-demo" +} diff --git a/site/public/v1/games/alien-breed-3d-playable-demo-1/index.json b/site/public/v1/games/alien-breed-3d-playable-demo-1/index.json new file mode 100644 index 000000000000..7e1ca8b0b751 --- /dev/null +++ b/site/public/v1/games/alien-breed-3d-playable-demo-1/index.json @@ -0,0 +1,25 @@ +{ + "id": 5762, + "slug": "alien-breed-3d-playable-demo-1", + "name": "Alien Breed 3D (Playable Demo #1)", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126187777" + ], + "created_at": "2026-07-10T10:09:56.875668", + "updated_at": "2026-07-10T10:09:56.875668", + "url": "/v1/games/alien-breed-3d-playable-demo-1" +} diff --git a/site/public/v1/games/alien-breed-3d-playable-demo-2/index.json b/site/public/v1/games/alien-breed-3d-playable-demo-2/index.json new file mode 100644 index 000000000000..792d4da8e0a9 --- /dev/null +++ b/site/public/v1/games/alien-breed-3d-playable-demo-2/index.json @@ -0,0 +1,25 @@ +{ + "id": 5763, + "slug": "alien-breed-3d-playable-demo-2", + "name": "Alien Breed 3D (Playable Demo #2)", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126187778" + ], + "created_at": "2026-07-10T10:09:56.875668", + "updated_at": "2026-07-10T10:09:56.875668", + "url": "/v1/games/alien-breed-3d-playable-demo-2" +} diff --git a/site/public/v1/games/alien-breed-92-se-qwak/index.json b/site/public/v1/games/alien-breed-92-se-qwak/index.json new file mode 100644 index 000000000000..d6d62f3f8003 --- /dev/null +++ b/site/public/v1/games/alien-breed-92-se-qwak/index.json @@ -0,0 +1,25 @@ +{ + "id": 5765, + "slug": "alien-breed-92-se-qwak", + "name": "Alien Breed '92 SE & Qwak", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126185232" + ], + "created_at": "2026-07-10T10:09:56.875668", + "updated_at": "2026-07-10T10:09:56.876649", + "url": "/v1/games/alien-breed-92-se-qwak" +} diff --git a/site/public/v1/games/alien-breed-evolution/index.json b/site/public/v1/games/alien-breed-evolution/index.json new file mode 100644 index 000000000000..36a7afbc7e82 --- /dev/null +++ b/site/public/v1/games/alien-breed-evolution/index.json @@ -0,0 +1,34 @@ +{ + "id": 5766, + "slug": "alien-breed-evolution", + "name": "Alien Breed Evolution", + "release_date": "2009-12-16", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "shoot 'em up", + "science fiction video game" + ], + "stores": [], + "developers": [ + "Team17" + ], + "publishers": [ + "Team17" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3611755" + ], + "created_at": "2026-07-10T10:09:56.876649", + "updated_at": "2026-07-10T10:09:56.876649", + "url": "/v1/games/alien-breed-evolution" +} diff --git a/site/public/v1/games/alien-breed-trilogy/index.json b/site/public/v1/games/alien-breed-trilogy/index.json new file mode 100644 index 000000000000..b2704a63b26a --- /dev/null +++ b/site/public/v1/games/alien-breed-trilogy/index.json @@ -0,0 +1,32 @@ +{ + "id": 5771, + "slug": "alien-breed-trilogy", + "name": "Alien Breed Trilogy", + "release_date": "2011-03-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 3", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Team17" + ], + "publishers": [ + "Team17" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q132178901" + ], + "created_at": "2026-07-10T10:09:56.877641", + "updated_at": "2026-07-10T10:09:56.877641", + "url": "/v1/games/alien-breed-trilogy" +} diff --git a/site/public/v1/games/alien-isolation-crew-expendable/index.json b/site/public/v1/games/alien-isolation-crew-expendable/index.json new file mode 100644 index 000000000000..4e6c4acbd762 --- /dev/null +++ b/site/public/v1/games/alien-isolation-crew-expendable/index.json @@ -0,0 +1,41 @@ +{ + "id": 5841, + "slug": "alien-isolation-crew-expendable", + "name": "Alien: Isolation - Crew Expendable", + "release_date": "2014-10-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 4", + "PlayStation 3", + "macOS", + "Microsoft Windows" + ], + "genres": [ + "survival horror", + "action-adventure game", + "stealth game", + "immersive sim", + "retrofuturistic video game" + ], + "stores": [], + "developers": [ + "Creative Assembly" + ], + "publishers": [ + "Sega", + "Feral Interactive" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125156681" + ], + "created_at": "2026-07-10T10:09:56.895721", + "updated_at": "2026-07-10T10:09:56.896714", + "url": "/v1/games/alien-isolation-crew-expendable" +} diff --git a/site/public/v1/games/alien-isolation-the-collection/index.json b/site/public/v1/games/alien-isolation-the-collection/index.json new file mode 100644 index 000000000000..b68bd3e5d560 --- /dev/null +++ b/site/public/v1/games/alien-isolation-the-collection/index.json @@ -0,0 +1,41 @@ +{ + "id": 5842, + "slug": "alien-isolation-the-collection", + "name": "Alien: Isolation - The Collection", + "release_date": "2015-10-27", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 4", + "macOS", + "iOS", + "Microsoft Windows" + ], + "genres": [ + "survival horror", + "action-adventure game", + "stealth game", + "retrofuturistic video game", + "immersive sim" + ], + "stores": [], + "developers": [ + "Creative Assembly" + ], + "publishers": [ + "Sega", + "Feral Interactive" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135483608" + ], + "created_at": "2026-07-10T10:09:56.896714", + "updated_at": "2026-07-10T10:09:56.896714", + "url": "/v1/games/alien-isolation-the-collection" +} diff --git a/site/public/v1/games/alien-nations-mission-pack/index.json b/site/public/v1/games/alien-nations-mission-pack/index.json new file mode 100644 index 000000000000..8572e7ec2ec1 --- /dev/null +++ b/site/public/v1/games/alien-nations-mission-pack/index.json @@ -0,0 +1,33 @@ +{ + "id": 5858, + "slug": "alien-nations-mission-pack", + "name": "Alien Nations: Mission Pack", + "release_date": "2000-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "real-time strategy" + ], + "stores": [], + "developers": [ + "Neo Software" + ], + "publishers": [ + "JoWooD Entertainment" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110817185" + ], + "created_at": "2026-07-10T10:09:56.900345", + "updated_at": "2026-07-10T10:09:56.900345", + "url": "/v1/games/alien-nations-mission-pack" +} diff --git a/site/public/v1/games/alien-vs-predator-q10405222/index.json b/site/public/v1/games/alien-vs-predator-q10405222/index.json new file mode 100644 index 000000000000..9f2fd3cb2723 --- /dev/null +++ b/site/public/v1/games/alien-vs-predator-q10405222/index.json @@ -0,0 +1,29 @@ +{ + "id": 5930, + "slug": "alien-vs-predator-q10405222", + "name": "Alien vs Predator", + "release_date": "1994-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Atari Lynx" + ], + "genres": [ + "first-person shooter" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10405222" + ], + "created_at": "2026-07-10T10:09:56.929875", + "updated_at": "2026-07-10T10:09:56.929875", + "url": "/v1/games/alien-vs-predator-q10405222" +} diff --git a/site/public/v1/games/aliens-colonial-marines-stasis-interrupted/index.json b/site/public/v1/games/aliens-colonial-marines-stasis-interrupted/index.json new file mode 100644 index 000000000000..e0a9f04d8786 --- /dev/null +++ b/site/public/v1/games/aliens-colonial-marines-stasis-interrupted/index.json @@ -0,0 +1,25 @@ +{ + "id": 5961, + "slug": "aliens-colonial-marines-stasis-interrupted", + "name": "Aliens: Colonial Marines - Stasis Interrupted", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125156768" + ], + "created_at": "2026-07-10T10:09:56.938928", + "updated_at": "2026-07-10T10:09:56.938928", + "url": "/v1/games/aliens-colonial-marines-stasis-interrupted" +} diff --git a/site/public/v1/games/aliens-fireteam-elite-into-the-hive-edition/index.json b/site/public/v1/games/aliens-fireteam-elite-into-the-hive-edition/index.json new file mode 100644 index 000000000000..7ef39c60dc4a --- /dev/null +++ b/site/public/v1/games/aliens-fireteam-elite-into-the-hive-edition/index.json @@ -0,0 +1,30 @@ +{ + "id": 5964, + "slug": "aliens-fireteam-elite-into-the-hive-edition", + "name": "Aliens: Fireteam Elite Into The Hive Edition", + "release_date": "2022-09-06", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Cold Iron Studios" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116160676" + ], + "created_at": "2026-07-10T10:09:56.938928", + "updated_at": "2026-07-10T10:09:56.939855", + "url": "/v1/games/aliens-fireteam-elite-into-the-hive-edition" +} diff --git a/site/public/v1/games/aliens-versus-predator-millennium-expansion-pack/index.json b/site/public/v1/games/aliens-versus-predator-millennium-expansion-pack/index.json new file mode 100644 index 000000000000..e4cb9a23aa3c --- /dev/null +++ b/site/public/v1/games/aliens-versus-predator-millennium-expansion-pack/index.json @@ -0,0 +1,27 @@ +{ + "id": 5981, + "slug": "aliens-versus-predator-millennium-expansion-pack", + "name": "Aliens Versus Predator: Millennium Expansion Pack", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Fox Interactive" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124981145" + ], + "created_at": "2026-07-10T10:09:56.943871", + "updated_at": "2026-07-10T10:09:56.943871", + "url": "/v1/games/aliens-versus-predator-millennium-expansion-pack" +} diff --git a/site/public/v1/games/aliens-vs-predator-2-primal-hunt/index.json b/site/public/v1/games/aliens-vs-predator-2-primal-hunt/index.json new file mode 100644 index 000000000000..6b5078b355c1 --- /dev/null +++ b/site/public/v1/games/aliens-vs-predator-2-primal-hunt/index.json @@ -0,0 +1,34 @@ +{ + "id": 5985, + "slug": "aliens-vs-predator-2-primal-hunt", + "name": "Aliens vs Predator 2: Primal Hunt", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Mac operating system", + "Microsoft Windows" + ], + "genres": [ + "first-person shooter" + ], + "stores": [], + "developers": [ + "Monolith Productions" + ], + "publishers": [ + "Sierra Entertainment" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2836857" + ], + "created_at": "2026-07-10T10:09:56.944864", + "updated_at": "2026-07-10T10:09:56.944864", + "url": "/v1/games/aliens-vs-predator-2-primal-hunt" +} diff --git a/site/public/v1/games/all-that-i-touch/index.json b/site/public/v1/games/all-that-i-touch/index.json new file mode 100644 index 000000000000..031fa651cb16 --- /dev/null +++ b/site/public/v1/games/all-that-i-touch/index.json @@ -0,0 +1,33 @@ +{ + "id": 6145, + "slug": "all-that-i-touch", + "name": "All That I Touch", + "release_date": "2017-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "web browser" + ], + "genres": [ + "art game" + ], + "stores": [], + "developers": [ + "Drazillion" + ], + "publishers": [ + "Drazillion" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q64826849" + ], + "created_at": "2026-07-10T10:09:56.986933", + "updated_at": "2026-07-10T10:09:56.986933", + "url": "/v1/games/all-that-i-touch" +} diff --git a/site/public/v1/games/all-things-go-boom/index.json b/site/public/v1/games/all-things-go-boom/index.json new file mode 100644 index 000000000000..210069e6b69c --- /dev/null +++ b/site/public/v1/games/all-things-go-boom/index.json @@ -0,0 +1,25 @@ +{ + "id": 6155, + "slug": "all-things-go-boom", + "name": "All Things Go Boom!", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127500832" + ], + "created_at": "2026-07-10T10:09:56.990949", + "updated_at": "2026-07-10T10:09:56.990949", + "url": "/v1/games/all-things-go-boom" +} diff --git a/site/public/v1/games/all-tomorrow-s-parties/index.json b/site/public/v1/games/all-tomorrow-s-parties/index.json new file mode 100644 index 000000000000..12218bb742cc --- /dev/null +++ b/site/public/v1/games/all-tomorrow-s-parties/index.json @@ -0,0 +1,33 @@ +{ + "id": 6159, + "slug": "all-tomorrow-s-parties", + "name": "All Tomorrow’s Parties", + "release_date": "2016-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "web browser" + ], + "genres": [ + "interactive fiction" + ], + "stores": [], + "developers": [ + "Niamh Schönherr" + ], + "publishers": [ + "Niamh Schönherr" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q64826856" + ], + "created_at": "2026-07-10T10:09:56.991887", + "updated_at": "2026-07-10T10:09:56.991887", + "url": "/v1/games/all-tomorrow-s-parties" +} diff --git a/site/public/v1/games/alone-free/index.json b/site/public/v1/games/alone-free/index.json new file mode 100644 index 000000000000..1458502407be --- /dev/null +++ b/site/public/v1/games/alone-free/index.json @@ -0,0 +1,32 @@ +{ + "id": 6255, + "slug": "alone-free", + "name": "ALONE (Free)", + "release_date": "2021-05-31", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "casual game", + "horror video game" + ], + "stores": [], + "developers": [ + "DakeCraft" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107291482" + ], + "created_at": "2026-07-10T10:09:57.042904", + "updated_at": "2026-07-10T10:09:57.042904", + "url": "/v1/games/alone-free" +} diff --git a/site/public/v1/games/alphadia-genesis-1-2/index.json b/site/public/v1/games/alphadia-genesis-1-2/index.json new file mode 100644 index 000000000000..f66b2b04a581 --- /dev/null +++ b/site/public/v1/games/alphadia-genesis-1-2/index.json @@ -0,0 +1,34 @@ +{ + "id": 6376, + "slug": "alphadia-genesis-1-2", + "name": "Alphadia Genesis 1 & 2", + "release_date": "2021-10-15", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S", + "Microsoft Windows" + ], + "genres": [ + "role-playing video game" + ], + "stores": [], + "developers": [ + "Exe-Create" + ], + "publishers": [ + "Kemco" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108935630" + ], + "created_at": "2026-07-10T10:09:57.074870", + "updated_at": "2026-07-10T10:09:57.074870", + "url": "/v1/games/alphadia-genesis-1-2" +} diff --git a/site/public/v1/games/alphago-fan/index.json b/site/public/v1/games/alphago-fan/index.json new file mode 100644 index 000000000000..43d6950658c9 --- /dev/null +++ b/site/public/v1/games/alphago-fan/index.json @@ -0,0 +1,27 @@ +{ + "id": 6385, + "slug": "alphago-fan", + "name": "AlphaGo Fan", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [ + "Google DeepMind" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q42223294" + ], + "created_at": "2026-07-10T10:09:57.076887", + "updated_at": "2026-07-10T10:09:57.076887", + "url": "/v1/games/alphago-fan" +} diff --git a/site/public/v1/games/alphago-master/index.json b/site/public/v1/games/alphago-master/index.json new file mode 100644 index 000000000000..e4583394efd3 --- /dev/null +++ b/site/public/v1/games/alphago-master/index.json @@ -0,0 +1,27 @@ +{ + "id": 6386, + "slug": "alphago-master", + "name": "AlphaGo Master", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [ + "Google DeepMind" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q29550830" + ], + "created_at": "2026-07-10T10:09:57.076887", + "updated_at": "2026-07-10T10:09:57.076887", + "url": "/v1/games/alphago-master" +} diff --git a/site/public/v1/games/alphago-zero/index.json b/site/public/v1/games/alphago-zero/index.json new file mode 100644 index 000000000000..4d25592b9699 --- /dev/null +++ b/site/public/v1/games/alphago-zero/index.json @@ -0,0 +1,27 @@ +{ + "id": 6387, + "slug": "alphago-zero", + "name": "AlphaGo Zero", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [ + "Google DeepMind" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q42259287" + ], + "created_at": "2026-07-10T10:09:57.076887", + "updated_at": "2026-07-10T10:09:57.076887", + "url": "/v1/games/alphago-zero" +} diff --git a/site/public/v1/games/alphago/index.json b/site/public/v1/games/alphago/index.json new file mode 100644 index 000000000000..c8af4ab53b4a --- /dev/null +++ b/site/public/v1/games/alphago/index.json @@ -0,0 +1,29 @@ +{ + "id": 6388, + "slug": "alphago", + "name": "AlphaGo", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [ + "Google DeepMind" + ], + "publishers": [ + "Alphabet Inc." + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22329209" + ], + "created_at": "2026-07-10T10:09:57.077866", + "updated_at": "2026-07-10T10:09:57.077866", + "url": "/v1/games/alphago" +} diff --git a/site/public/v1/games/alphalock/index.json b/site/public/v1/games/alphalock/index.json new file mode 100644 index 000000000000..67339548c611 --- /dev/null +++ b/site/public/v1/games/alphalock/index.json @@ -0,0 +1,29 @@ +{ + "id": 6390, + "slug": "alphalock", + "name": "Alphalock", + "release_date": "2024-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "web browser" + ], + "genres": [ + "puzzle video game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140192773" + ], + "created_at": "2026-07-10T10:09:57.077866", + "updated_at": "2026-07-10T10:09:57.077866", + "url": "/v1/games/alphalock" +} diff --git a/site/public/v1/games/alt-play-jason-rohrer-anthology/index.json b/site/public/v1/games/alt-play-jason-rohrer-anthology/index.json new file mode 100644 index 000000000000..f7b30563962c --- /dev/null +++ b/site/public/v1/games/alt-play-jason-rohrer-anthology/index.json @@ -0,0 +1,33 @@ +{ + "id": 6415, + "slug": "alt-play-jason-rohrer-anthology", + "name": "Alt-Play: Jason Rohrer Anthology", + "release_date": "2010-12-31", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Nintendo DSi" + ], + "genres": [ + "action-adventure game" + ], + "stores": [], + "developers": [ + "Sabarasa Entertainment" + ], + "publishers": [ + "Sabarasa Entertainment" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60665261" + ], + "created_at": "2026-07-10T10:09:57.084802", + "updated_at": "2026-07-10T10:09:57.084802", + "url": "/v1/games/alt-play-jason-rohrer-anthology" +} diff --git a/site/public/v1/games/altered-beast-q4736304/index.json b/site/public/v1/games/altered-beast-q4736304/index.json new file mode 100644 index 000000000000..3d2aa757bd62 --- /dev/null +++ b/site/public/v1/games/altered-beast-q4736304/index.json @@ -0,0 +1,32 @@ +{ + "id": 6447, + "slug": "altered-beast-q4736304", + "name": "Altered Beast", + "release_date": "2005-01-27", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "action-adventure game", + "beat 'em up" + ], + "stores": [], + "developers": [ + "Sega Wow" + ], + "publishers": [ + "Sega" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4736304" + ], + "created_at": "2026-07-10T10:09:57.092893", + "updated_at": "2026-07-10T10:09:57.092893", + "url": "/v1/games/altered-beast-q4736304" +} diff --git a/site/public/v1/games/alto-s-odyssey-the-lost-city/index.json b/site/public/v1/games/alto-s-odyssey-the-lost-city/index.json new file mode 100644 index 000000000000..760bf3fe51f4 --- /dev/null +++ b/site/public/v1/games/alto-s-odyssey-the-lost-city/index.json @@ -0,0 +1,32 @@ +{ + "id": 6485, + "slug": "alto-s-odyssey-the-lost-city", + "name": "Alto's Odyssey: The Lost City", + "release_date": "2021-07-16", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "iPadOS", + "tvOS", + "iOS", + "macOS" + ], + "genres": [], + "stores": [], + "developers": [ + "Snowman" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107336341" + ], + "created_at": "2026-07-10T10:09:57.102533", + "updated_at": "2026-07-10T10:09:57.102533", + "url": "/v1/games/alto-s-odyssey-the-lost-city" +} diff --git a/site/public/v1/games/amarok-dreams-demo/index.json b/site/public/v1/games/amarok-dreams-demo/index.json new file mode 100644 index 000000000000..788d76659430 --- /dev/null +++ b/site/public/v1/games/amarok-dreams-demo/index.json @@ -0,0 +1,27 @@ +{ + "id": 6598, + "slug": "amarok-dreams-demo", + "name": "Amarok Dreams Demo", + "release_date": "2020-10-06", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111661694" + ], + "created_at": "2026-07-10T10:09:57.130521", + "updated_at": "2026-07-10T10:09:57.130521", + "url": "/v1/games/amarok-dreams-demo" +} diff --git a/site/public/v1/games/american-hero-q63049699/index.json b/site/public/v1/games/american-hero-q63049699/index.json new file mode 100644 index 000000000000..e8a0b9eda010 --- /dev/null +++ b/site/public/v1/games/american-hero-q63049699/index.json @@ -0,0 +1,28 @@ +{ + "id": 6826, + "slug": "american-hero-q63049699", + "name": "American Hero", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Atari Jaguar", + "personal computer" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63049699" + ], + "created_at": "2026-07-10T10:09:57.188732", + "updated_at": "2026-07-10T10:09:57.188732", + "url": "/v1/games/american-hero-q63049699" +} diff --git a/site/public/v1/games/american-truck-simulator-arizona/index.json b/site/public/v1/games/american-truck-simulator-arizona/index.json new file mode 100644 index 000000000000..cc954c6ec41e --- /dev/null +++ b/site/public/v1/games/american-truck-simulator-arizona/index.json @@ -0,0 +1,32 @@ +{ + "id": 6853, + "slug": "american-truck-simulator-arizona", + "name": "American Truck Simulator: Arizona", + "release_date": "2016-06-06", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113281746" + ], + "created_at": "2026-07-10T10:09:57.196727", + "updated_at": "2026-07-10T10:09:57.196727", + "url": "/v1/games/american-truck-simulator-arizona" +} diff --git a/site/public/v1/games/american-truck-simulator-cabin-accessories/index.json b/site/public/v1/games/american-truck-simulator-cabin-accessories/index.json new file mode 100644 index 000000000000..733cdc2e093e --- /dev/null +++ b/site/public/v1/games/american-truck-simulator-cabin-accessories/index.json @@ -0,0 +1,32 @@ +{ + "id": 6854, + "slug": "american-truck-simulator-cabin-accessories", + "name": "American Truck Simulator: Cabin Accessories", + "release_date": "2020-12-03", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113282178" + ], + "created_at": "2026-07-10T10:09:57.196727", + "updated_at": "2026-07-10T10:09:57.196727", + "url": "/v1/games/american-truck-simulator-cabin-accessories" +} diff --git a/site/public/v1/games/american-truck-simulator-christmas-paint-jobs-pack/index.json b/site/public/v1/games/american-truck-simulator-christmas-paint-jobs-pack/index.json new file mode 100644 index 000000000000..f18743a598f5 --- /dev/null +++ b/site/public/v1/games/american-truck-simulator-christmas-paint-jobs-pack/index.json @@ -0,0 +1,32 @@ +{ + "id": 6855, + "slug": "american-truck-simulator-christmas-paint-jobs-pack", + "name": "American Truck Simulator: Christmas Paint Jobs Pack", + "release_date": "2016-12-16", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113281842" + ], + "created_at": "2026-07-10T10:09:57.196727", + "updated_at": "2026-07-10T10:09:57.196727", + "url": "/v1/games/american-truck-simulator-christmas-paint-jobs-pack" +} diff --git a/site/public/v1/games/american-truck-simulator-classic-stripes-paint-jobs-pack/index.json b/site/public/v1/games/american-truck-simulator-classic-stripes-paint-jobs-pack/index.json new file mode 100644 index 000000000000..a4d2ab9251ea --- /dev/null +++ b/site/public/v1/games/american-truck-simulator-classic-stripes-paint-jobs-pack/index.json @@ -0,0 +1,32 @@ +{ + "id": 6856, + "slug": "american-truck-simulator-classic-stripes-paint-jobs-pack", + "name": "American Truck Simulator: Classic Stripes Paint Jobs Pack", + "release_date": "2018-10-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113281973" + ], + "created_at": "2026-07-10T10:09:57.196727", + "updated_at": "2026-07-10T10:09:57.196727", + "url": "/v1/games/american-truck-simulator-classic-stripes-paint-jobs-pack" +} diff --git a/site/public/v1/games/american-truck-simulator-colorado/index.json b/site/public/v1/games/american-truck-simulator-colorado/index.json new file mode 100644 index 000000000000..2f5038a2f839 --- /dev/null +++ b/site/public/v1/games/american-truck-simulator-colorado/index.json @@ -0,0 +1,32 @@ +{ + "id": 6857, + "slug": "american-truck-simulator-colorado", + "name": "American Truck Simulator: Colorado", + "release_date": "2020-11-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113282097" + ], + "created_at": "2026-07-10T10:09:57.197724", + "updated_at": "2026-07-10T10:09:57.197724", + "url": "/v1/games/american-truck-simulator-colorado" +} diff --git a/site/public/v1/games/american-truck-simulator-dragon-truck-design-pack/index.json b/site/public/v1/games/american-truck-simulator-dragon-truck-design-pack/index.json new file mode 100644 index 000000000000..ee25c6d82d78 --- /dev/null +++ b/site/public/v1/games/american-truck-simulator-dragon-truck-design-pack/index.json @@ -0,0 +1,32 @@ +{ + "id": 6858, + "slug": "american-truck-simulator-dragon-truck-design-pack", + "name": "American Truck Simulator: Dragon Truck Design Pack", + "release_date": "2017-02-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113281813" + ], + "created_at": "2026-07-10T10:09:57.197724", + "updated_at": "2026-07-10T10:09:57.197724", + "url": "/v1/games/american-truck-simulator-dragon-truck-design-pack" +} diff --git a/site/public/v1/games/american-truck-simulator-forest-machinery/index.json b/site/public/v1/games/american-truck-simulator-forest-machinery/index.json new file mode 100644 index 000000000000..ed0d485e4377 --- /dev/null +++ b/site/public/v1/games/american-truck-simulator-forest-machinery/index.json @@ -0,0 +1,32 @@ +{ + "id": 6859, + "slug": "american-truck-simulator-forest-machinery", + "name": "American Truck Simulator: Forest Machinery", + "release_date": "2019-06-11", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113282028" + ], + "created_at": "2026-07-10T10:09:57.197724", + "updated_at": "2026-07-10T10:09:57.197724", + "url": "/v1/games/american-truck-simulator-forest-machinery" +} diff --git a/site/public/v1/games/american-truck-simulator-freightliner-cascadia/index.json b/site/public/v1/games/american-truck-simulator-freightliner-cascadia/index.json new file mode 100644 index 000000000000..67fbc06f3210 --- /dev/null +++ b/site/public/v1/games/american-truck-simulator-freightliner-cascadia/index.json @@ -0,0 +1,32 @@ +{ + "id": 6860, + "slug": "american-truck-simulator-freightliner-cascadia", + "name": "American Truck Simulator: Freightliner Cascadia", + "release_date": "2020-12-02", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113282125" + ], + "created_at": "2026-07-10T10:09:57.197724", + "updated_at": "2026-07-10T10:09:57.197724", + "url": "/v1/games/american-truck-simulator-freightliner-cascadia" +} diff --git a/site/public/v1/games/american-truck-simulator-goodyear-tires-pack/index.json b/site/public/v1/games/american-truck-simulator-goodyear-tires-pack/index.json new file mode 100644 index 000000000000..4826f29c3da9 --- /dev/null +++ b/site/public/v1/games/american-truck-simulator-goodyear-tires-pack/index.json @@ -0,0 +1,32 @@ +{ + "id": 6861, + "slug": "american-truck-simulator-goodyear-tires-pack", + "name": "American Truck Simulator: Goodyear Tires Pack", + "release_date": "2021-05-10", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113282186" + ], + "created_at": "2026-07-10T10:09:57.197724", + "updated_at": "2026-07-10T10:09:57.197724", + "url": "/v1/games/american-truck-simulator-goodyear-tires-pack" +} diff --git a/site/public/v1/games/american-truck-simulator-halloween-paint-jobs-pack/index.json b/site/public/v1/games/american-truck-simulator-halloween-paint-jobs-pack/index.json new file mode 100644 index 000000000000..8c287a4e6560 --- /dev/null +++ b/site/public/v1/games/american-truck-simulator-halloween-paint-jobs-pack/index.json @@ -0,0 +1,32 @@ +{ + "id": 6862, + "slug": "american-truck-simulator-halloween-paint-jobs-pack", + "name": "American Truck Simulator: Halloween Paint Jobs Pack", + "release_date": "2016-10-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113281785" + ], + "created_at": "2026-07-10T10:09:57.198736", + "updated_at": "2026-07-10T10:09:57.198736", + "url": "/v1/games/american-truck-simulator-halloween-paint-jobs-pack" +} diff --git a/site/public/v1/games/american-truck-simulator-heavy-cargo-pack/index.json b/site/public/v1/games/american-truck-simulator-heavy-cargo-pack/index.json new file mode 100644 index 000000000000..690347c8ef44 --- /dev/null +++ b/site/public/v1/games/american-truck-simulator-heavy-cargo-pack/index.json @@ -0,0 +1,32 @@ +{ + "id": 6863, + "slug": "american-truck-simulator-heavy-cargo-pack", + "name": "American Truck Simulator: Heavy Cargo Pack", + "release_date": "2017-06-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113281897" + ], + "created_at": "2026-07-10T10:09:57.198736", + "updated_at": "2026-07-10T10:09:57.198736", + "url": "/v1/games/american-truck-simulator-heavy-cargo-pack" +} diff --git a/site/public/v1/games/american-truck-simulator-idaho/index.json b/site/public/v1/games/american-truck-simulator-idaho/index.json new file mode 100644 index 000000000000..80cb28db06ca --- /dev/null +++ b/site/public/v1/games/american-truck-simulator-idaho/index.json @@ -0,0 +1,32 @@ +{ + "id": 6864, + "slug": "american-truck-simulator-idaho", + "name": "American Truck Simulator: Idaho", + "release_date": "2020-07-16", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113282089" + ], + "created_at": "2026-07-10T10:09:57.199312", + "updated_at": "2026-07-10T10:09:57.199312", + "url": "/v1/games/american-truck-simulator-idaho" +} diff --git a/site/public/v1/games/american-truck-simulator-international-9900i/index.json b/site/public/v1/games/american-truck-simulator-international-9900i/index.json new file mode 100644 index 000000000000..1b52e2fd7659 --- /dev/null +++ b/site/public/v1/games/american-truck-simulator-international-9900i/index.json @@ -0,0 +1,32 @@ +{ + "id": 6865, + "slug": "american-truck-simulator-international-9900i", + "name": "American Truck Simulator: International 9900i", + "release_date": "2022-03-22", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113282242" + ], + "created_at": "2026-07-10T10:09:57.199312", + "updated_at": "2026-07-10T10:09:57.199312", + "url": "/v1/games/american-truck-simulator-international-9900i" +} diff --git a/site/public/v1/games/american-truck-simulator-international-lt/index.json b/site/public/v1/games/american-truck-simulator-international-lt/index.json new file mode 100644 index 000000000000..b8768d1f20bc --- /dev/null +++ b/site/public/v1/games/american-truck-simulator-international-lt/index.json @@ -0,0 +1,32 @@ +{ + "id": 6866, + "slug": "american-truck-simulator-international-lt", + "name": "American Truck Simulator: International LT", + "release_date": "2021-09-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113282207" + ], + "created_at": "2026-07-10T10:09:57.199312", + "updated_at": "2026-07-10T10:09:57.199312", + "url": "/v1/games/american-truck-simulator-international-lt" +} diff --git a/site/public/v1/games/american-truck-simulator-iowa/index.json b/site/public/v1/games/american-truck-simulator-iowa/index.json new file mode 100644 index 000000000000..2f909ccc45b4 --- /dev/null +++ b/site/public/v1/games/american-truck-simulator-iowa/index.json @@ -0,0 +1,25 @@ +{ + "id": 6867, + "slug": "american-truck-simulator-iowa", + "name": "American Truck Simulator: Iowa", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140420123" + ], + "created_at": "2026-07-10T10:09:57.199312", + "updated_at": "2026-07-10T10:09:57.199312", + "url": "/v1/games/american-truck-simulator-iowa" +} diff --git a/site/public/v1/games/american-truck-simulator-lode-king-prestige-trailers-pack/index.json b/site/public/v1/games/american-truck-simulator-lode-king-prestige-trailers-pack/index.json new file mode 100644 index 000000000000..22ab63cde74a --- /dev/null +++ b/site/public/v1/games/american-truck-simulator-lode-king-prestige-trailers-pack/index.json @@ -0,0 +1,32 @@ +{ + "id": 6868, + "slug": "american-truck-simulator-lode-king-prestige-trailers-pack", + "name": "American Truck Simulator: Lode King & Prestige Trailers Pack", + "release_date": "2022-05-31", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113282257" + ], + "created_at": "2026-07-10T10:09:57.199312", + "updated_at": "2026-07-10T10:09:57.200379", + "url": "/v1/games/american-truck-simulator-lode-king-prestige-trailers-pack" +} diff --git a/site/public/v1/games/american-truck-simulator-mack-anthem/index.json b/site/public/v1/games/american-truck-simulator-mack-anthem/index.json new file mode 100644 index 000000000000..131b261c86e8 --- /dev/null +++ b/site/public/v1/games/american-truck-simulator-mack-anthem/index.json @@ -0,0 +1,32 @@ +{ + "id": 6870, + "slug": "american-truck-simulator-mack-anthem", + "name": "American Truck Simulator: Mack Anthem", + "release_date": "2020-04-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113282112" + ], + "created_at": "2026-07-10T10:09:57.200379", + "updated_at": "2026-07-10T10:09:57.200379", + "url": "/v1/games/american-truck-simulator-mack-anthem" +} diff --git a/site/public/v1/games/american-truck-simulator-montana/index.json b/site/public/v1/games/american-truck-simulator-montana/index.json new file mode 100644 index 000000000000..7b0d308bba7b --- /dev/null +++ b/site/public/v1/games/american-truck-simulator-montana/index.json @@ -0,0 +1,32 @@ +{ + "id": 6871, + "slug": "american-truck-simulator-montana", + "name": "American Truck Simulator: Montana", + "release_date": "2022-08-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113282229" + ], + "created_at": "2026-07-10T10:09:57.200379", + "updated_at": "2026-07-10T10:09:57.200379", + "url": "/v1/games/american-truck-simulator-montana" +} diff --git a/site/public/v1/games/american-truck-simulator-nebraska/index.json b/site/public/v1/games/american-truck-simulator-nebraska/index.json new file mode 100644 index 000000000000..cc6129543bb7 --- /dev/null +++ b/site/public/v1/games/american-truck-simulator-nebraska/index.json @@ -0,0 +1,25 @@ +{ + "id": 6872, + "slug": "american-truck-simulator-nebraska", + "name": "American Truck Simulator: Nebraska", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140420125" + ], + "created_at": "2026-07-10T10:09:57.201388", + "updated_at": "2026-07-10T10:09:57.201388", + "url": "/v1/games/american-truck-simulator-nebraska" +} diff --git a/site/public/v1/games/american-truck-simulator-new-mexico/index.json b/site/public/v1/games/american-truck-simulator-new-mexico/index.json new file mode 100644 index 000000000000..15e863f19954 --- /dev/null +++ b/site/public/v1/games/american-truck-simulator-new-mexico/index.json @@ -0,0 +1,32 @@ +{ + "id": 6873, + "slug": "american-truck-simulator-new-mexico", + "name": "American Truck Simulator: New Mexico", + "release_date": "2017-11-09", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113281931" + ], + "created_at": "2026-07-10T10:09:57.201388", + "updated_at": "2026-07-10T10:09:57.201388", + "url": "/v1/games/american-truck-simulator-new-mexico" +} diff --git a/site/public/v1/games/american-truck-simulator-oregon/index.json b/site/public/v1/games/american-truck-simulator-oregon/index.json new file mode 100644 index 000000000000..d67c4b7e72ad --- /dev/null +++ b/site/public/v1/games/american-truck-simulator-oregon/index.json @@ -0,0 +1,32 @@ +{ + "id": 6874, + "slug": "american-truck-simulator-oregon", + "name": "American Truck Simulator: Oregon", + "release_date": "2018-10-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113281952" + ], + "created_at": "2026-07-10T10:09:57.201388", + "updated_at": "2026-07-10T10:09:57.201388", + "url": "/v1/games/american-truck-simulator-oregon" +} diff --git a/site/public/v1/games/american-truck-simulator-pink-ribbon-charity-pack/index.json b/site/public/v1/games/american-truck-simulator-pink-ribbon-charity-pack/index.json new file mode 100644 index 000000000000..44dd39a4a7ba --- /dev/null +++ b/site/public/v1/games/american-truck-simulator-pink-ribbon-charity-pack/index.json @@ -0,0 +1,32 @@ +{ + "id": 6875, + "slug": "american-truck-simulator-pink-ribbon-charity-pack", + "name": "American Truck Simulator: Pink Ribbon Charity Pack", + "release_date": "2019-10-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113282076" + ], + "created_at": "2026-07-10T10:09:57.201388", + "updated_at": "2026-07-10T10:09:57.201388", + "url": "/v1/games/american-truck-simulator-pink-ribbon-charity-pack" +} diff --git a/site/public/v1/games/american-truck-simulator-retrowave-paint-jobs-pack/index.json b/site/public/v1/games/american-truck-simulator-retrowave-paint-jobs-pack/index.json new file mode 100644 index 000000000000..04365e2d1626 --- /dev/null +++ b/site/public/v1/games/american-truck-simulator-retrowave-paint-jobs-pack/index.json @@ -0,0 +1,32 @@ +{ + "id": 6876, + "slug": "american-truck-simulator-retrowave-paint-jobs-pack", + "name": "American Truck Simulator: Retrowave Paint Jobs Pack", + "release_date": "2021-10-26", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113282221" + ], + "created_at": "2026-07-10T10:09:57.202396", + "updated_at": "2026-07-10T10:09:57.202396", + "url": "/v1/games/american-truck-simulator-retrowave-paint-jobs-pack" +} diff --git a/site/public/v1/games/american-truck-simulator-space-paint-jobs-pack/index.json b/site/public/v1/games/american-truck-simulator-space-paint-jobs-pack/index.json new file mode 100644 index 000000000000..2a70943d4b1c --- /dev/null +++ b/site/public/v1/games/american-truck-simulator-space-paint-jobs-pack/index.json @@ -0,0 +1,32 @@ +{ + "id": 6878, + "slug": "american-truck-simulator-space-paint-jobs-pack", + "name": "American Truck Simulator: Space Paint Jobs Pack", + "release_date": "2019-07-15", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113282060" + ], + "created_at": "2026-07-10T10:09:57.202396", + "updated_at": "2026-07-10T10:09:57.202396", + "url": "/v1/games/american-truck-simulator-space-paint-jobs-pack" +} diff --git a/site/public/v1/games/american-truck-simulator-special-transport/index.json b/site/public/v1/games/american-truck-simulator-special-transport/index.json new file mode 100644 index 000000000000..152d65beb258 --- /dev/null +++ b/site/public/v1/games/american-truck-simulator-special-transport/index.json @@ -0,0 +1,32 @@ +{ + "id": 6879, + "slug": "american-truck-simulator-special-transport", + "name": "American Truck Simulator: Special Transport", + "release_date": "2018-11-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113281992" + ], + "created_at": "2026-07-10T10:09:57.202396", + "updated_at": "2026-07-10T10:09:57.202396", + "url": "/v1/games/american-truck-simulator-special-transport" +} diff --git a/site/public/v1/games/american-truck-simulator-steering-creations-pack/index.json b/site/public/v1/games/american-truck-simulator-steering-creations-pack/index.json new file mode 100644 index 000000000000..23c70a9558a9 --- /dev/null +++ b/site/public/v1/games/american-truck-simulator-steering-creations-pack/index.json @@ -0,0 +1,32 @@ +{ + "id": 6880, + "slug": "american-truck-simulator-steering-creations-pack", + "name": "American Truck Simulator: Steering Creations Pack", + "release_date": "2016-09-14", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113281768" + ], + "created_at": "2026-07-10T10:09:57.202396", + "updated_at": "2026-07-10T10:09:57.202396", + "url": "/v1/games/american-truck-simulator-steering-creations-pack" +} diff --git a/site/public/v1/games/american-truck-simulator-texas/index.json b/site/public/v1/games/american-truck-simulator-texas/index.json new file mode 100644 index 000000000000..196eff954834 --- /dev/null +++ b/site/public/v1/games/american-truck-simulator-texas/index.json @@ -0,0 +1,32 @@ +{ + "id": 6881, + "slug": "american-truck-simulator-texas", + "name": "American Truck Simulator: Texas", + "release_date": "2022-11-15", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113282165" + ], + "created_at": "2026-07-10T10:09:57.203410", + "updated_at": "2026-07-10T10:09:57.203410", + "url": "/v1/games/american-truck-simulator-texas" +} diff --git a/site/public/v1/games/american-truck-simulator-utah/index.json b/site/public/v1/games/american-truck-simulator-utah/index.json new file mode 100644 index 000000000000..173ec3369394 --- /dev/null +++ b/site/public/v1/games/american-truck-simulator-utah/index.json @@ -0,0 +1,32 @@ +{ + "id": 6882, + "slug": "american-truck-simulator-utah", + "name": "American Truck Simulator: Utah", + "release_date": "2019-11-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113282046" + ], + "created_at": "2026-07-10T10:09:57.203410", + "updated_at": "2026-07-10T10:09:57.203410", + "url": "/v1/games/american-truck-simulator-utah" +} diff --git a/site/public/v1/games/american-truck-simulator-valentine-s-paint-jobs-pack/index.json b/site/public/v1/games/american-truck-simulator-valentine-s-paint-jobs-pack/index.json new file mode 100644 index 000000000000..a7f7a46524c8 --- /dev/null +++ b/site/public/v1/games/american-truck-simulator-valentine-s-paint-jobs-pack/index.json @@ -0,0 +1,32 @@ +{ + "id": 6883, + "slug": "american-truck-simulator-valentine-s-paint-jobs-pack", + "name": "American Truck Simulator: Valentine's Paint Jobs Pack", + "release_date": "2017-02-10", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113281870" + ], + "created_at": "2026-07-10T10:09:57.203410", + "updated_at": "2026-07-10T10:09:57.203410", + "url": "/v1/games/american-truck-simulator-valentine-s-paint-jobs-pack" +} diff --git a/site/public/v1/games/american-truck-simulator-volvo-construction-equipment/index.json b/site/public/v1/games/american-truck-simulator-volvo-construction-equipment/index.json new file mode 100644 index 000000000000..ff6cd6df7eaa --- /dev/null +++ b/site/public/v1/games/american-truck-simulator-volvo-construction-equipment/index.json @@ -0,0 +1,32 @@ +{ + "id": 6884, + "slug": "american-truck-simulator-volvo-construction-equipment", + "name": "American Truck Simulator: Volvo Construction Equipment", + "release_date": "2021-09-23", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113282196" + ], + "created_at": "2026-07-10T10:09:57.203410", + "updated_at": "2026-07-10T10:09:57.203410", + "url": "/v1/games/american-truck-simulator-volvo-construction-equipment" +} diff --git a/site/public/v1/games/american-truck-simulator-washington/index.json b/site/public/v1/games/american-truck-simulator-washington/index.json new file mode 100644 index 000000000000..3503bd7c0657 --- /dev/null +++ b/site/public/v1/games/american-truck-simulator-washington/index.json @@ -0,0 +1,32 @@ +{ + "id": 6885, + "slug": "american-truck-simulator-washington", + "name": "American Truck Simulator: Washington", + "release_date": "2019-06-11", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113282011" + ], + "created_at": "2026-07-10T10:09:57.204395", + "updated_at": "2026-07-10T10:09:57.204395", + "url": "/v1/games/american-truck-simulator-washington" +} diff --git a/site/public/v1/games/american-truck-simulator-western-star-49x/index.json b/site/public/v1/games/american-truck-simulator-western-star-49x/index.json new file mode 100644 index 000000000000..b6250b76aa39 --- /dev/null +++ b/site/public/v1/games/american-truck-simulator-western-star-49x/index.json @@ -0,0 +1,32 @@ +{ + "id": 6886, + "slug": "american-truck-simulator-western-star-49x", + "name": "American Truck Simulator: Western Star 49X", + "release_date": "2020-09-30", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113282135" + ], + "created_at": "2026-07-10T10:09:57.204395", + "updated_at": "2026-07-10T10:09:57.204395", + "url": "/v1/games/american-truck-simulator-western-star-49x" +} diff --git a/site/public/v1/games/american-truck-simulator-wheel-tuning-pack/index.json b/site/public/v1/games/american-truck-simulator-wheel-tuning-pack/index.json new file mode 100644 index 000000000000..3fc9902e791f --- /dev/null +++ b/site/public/v1/games/american-truck-simulator-wheel-tuning-pack/index.json @@ -0,0 +1,32 @@ +{ + "id": 6887, + "slug": "american-truck-simulator-wheel-tuning-pack", + "name": "American Truck Simulator: Wheel Tuning Pack", + "release_date": "2016-04-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113281714" + ], + "created_at": "2026-07-10T10:09:57.204395", + "updated_at": "2026-07-10T10:09:57.204395", + "url": "/v1/games/american-truck-simulator-wheel-tuning-pack" +} diff --git a/site/public/v1/games/american-truck-simulator-wyoming/index.json b/site/public/v1/games/american-truck-simulator-wyoming/index.json new file mode 100644 index 000000000000..b7f4a5b32df5 --- /dev/null +++ b/site/public/v1/games/american-truck-simulator-wyoming/index.json @@ -0,0 +1,32 @@ +{ + "id": 6888, + "slug": "american-truck-simulator-wyoming", + "name": "American Truck Simulator: Wyoming", + "release_date": "2021-09-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113282148" + ], + "created_at": "2026-07-10T10:09:57.204395", + "updated_at": "2026-07-10T10:09:57.204395", + "url": "/v1/games/american-truck-simulator-wyoming" +} diff --git a/site/public/v1/games/amid-the-ruins/index.json b/site/public/v1/games/amid-the-ruins/index.json new file mode 100644 index 000000000000..c212aa751474 --- /dev/null +++ b/site/public/v1/games/amid-the-ruins/index.json @@ -0,0 +1,27 @@ +{ + "id": 6915, + "slug": "amid-the-ruins", + "name": "Amid the Ruins", + "release_date": "2014-07-22", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 4" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18155621" + ], + "created_at": "2026-07-10T10:09:57.212319", + "updated_at": "2026-07-10T10:09:57.212319", + "url": "/v1/games/amid-the-ruins" +} diff --git a/site/public/v1/games/amiga-500-deluxe/index.json b/site/public/v1/games/amiga-500-deluxe/index.json new file mode 100644 index 000000000000..4ec04ded0942 --- /dev/null +++ b/site/public/v1/games/amiga-500-deluxe/index.json @@ -0,0 +1,25 @@ +{ + "id": 6920, + "slug": "amiga-500-deluxe", + "name": "Amiga 500 Deluxe", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126186881" + ], + "created_at": "2026-07-10T10:09:57.213318", + "updated_at": "2026-07-10T10:09:57.213318", + "url": "/v1/games/amiga-500-deluxe" +} diff --git a/site/public/v1/games/amigadoom/index.json b/site/public/v1/games/amigadoom/index.json new file mode 100644 index 000000000000..7e52f9a8d775 --- /dev/null +++ b/site/public/v1/games/amigadoom/index.json @@ -0,0 +1,27 @@ +{ + "id": 6945, + "slug": "amigadoom", + "name": "AmigaDoom", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Commodore Amiga" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124473009" + ], + "created_at": "2026-07-10T10:09:57.240416", + "updated_at": "2026-07-10T10:09:57.240416", + "url": "/v1/games/amigadoom" +} diff --git a/site/public/v1/games/amnesia-fortnight-2012/index.json b/site/public/v1/games/amnesia-fortnight-2012/index.json new file mode 100644 index 000000000000..8bd0061f9dcc --- /dev/null +++ b/site/public/v1/games/amnesia-fortnight-2012/index.json @@ -0,0 +1,34 @@ +{ + "id": 6973, + "slug": "amnesia-fortnight-2012", + "name": "Amnesia Fortnight 2012", + "release_date": "2012-11-19", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "action-adventure game", + "platformer" + ], + "stores": [], + "developers": [ + "Double Fine" + ], + "publishers": [ + "Double Fine" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16267639" + ], + "created_at": "2026-07-10T10:09:57.248323", + "updated_at": "2026-07-10T10:09:57.248323", + "url": "/v1/games/amnesia-fortnight-2012" +} diff --git a/site/public/v1/games/amnesia-fortnight-2014/index.json b/site/public/v1/games/amnesia-fortnight-2014/index.json new file mode 100644 index 000000000000..d6e223da342d --- /dev/null +++ b/site/public/v1/games/amnesia-fortnight-2014/index.json @@ -0,0 +1,31 @@ +{ + "id": 6974, + "slug": "amnesia-fortnight-2014", + "name": "Amnesia Fortnight 2014", + "release_date": "2014-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Double Fine" + ], + "publishers": [ + "Double Fine" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16267879" + ], + "created_at": "2026-07-10T10:09:57.248323", + "updated_at": "2026-07-10T10:09:57.248323", + "url": "/v1/games/amnesia-fortnight-2014" +} diff --git a/site/public/v1/games/amnesia-fortnight-2017/index.json b/site/public/v1/games/amnesia-fortnight-2017/index.json new file mode 100644 index 000000000000..b88675e0ee0f --- /dev/null +++ b/site/public/v1/games/amnesia-fortnight-2017/index.json @@ -0,0 +1,27 @@ +{ + "id": 6975, + "slug": "amnesia-fortnight-2017", + "name": "Amnesia Fortnight 2017", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q55381967" + ], + "created_at": "2026-07-10T10:09:57.248323", + "updated_at": "2026-07-10T10:09:57.248323", + "url": "/v1/games/amnesia-fortnight-2017" +} diff --git a/site/public/v1/games/amnesia-justine/index.json b/site/public/v1/games/amnesia-justine/index.json new file mode 100644 index 000000000000..182ac42afc39 --- /dev/null +++ b/site/public/v1/games/amnesia-justine/index.json @@ -0,0 +1,25 @@ +{ + "id": 6976, + "slug": "amnesia-justine", + "name": "Amnesia: Justine", + "release_date": "2011-04-03", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q47009582" + ], + "created_at": "2026-07-10T10:09:57.249380", + "updated_at": "2026-07-10T10:09:57.249380", + "url": "/v1/games/amnesia-justine" +} diff --git a/site/public/v1/games/among-us-2/index.json b/site/public/v1/games/among-us-2/index.json new file mode 100644 index 000000000000..d5a48d6af8a0 --- /dev/null +++ b/site/public/v1/games/among-us-2/index.json @@ -0,0 +1,31 @@ +{ + "id": 7025, + "slug": "among-us-2", + "name": "Among Us 2", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "iOS", + "Microsoft Windows" + ], + "genres": [ + "party video game", + "social deduction video game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q99554012" + ], + "created_at": "2026-07-10T10:09:57.262415", + "updated_at": "2026-07-10T10:09:57.262415", + "url": "/v1/games/among-us-2" +} diff --git a/site/public/v1/games/among-us-bedcrab-pet-bundle/index.json b/site/public/v1/games/among-us-bedcrab-pet-bundle/index.json new file mode 100644 index 000000000000..9d5e88cb5d64 --- /dev/null +++ b/site/public/v1/games/among-us-bedcrab-pet-bundle/index.json @@ -0,0 +1,27 @@ +{ + "id": 7028, + "slug": "among-us-bedcrab-pet-bundle", + "name": "Among Us - Bedcrab Pet Bundle", + "release_date": "2019-06-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q101210388" + ], + "created_at": "2026-07-10T10:09:57.263329", + "updated_at": "2026-07-10T10:09:57.263329", + "url": "/v1/games/among-us-bedcrab-pet-bundle" +} diff --git a/site/public/v1/games/among-us-brainslug-pet-bundle/index.json b/site/public/v1/games/among-us-brainslug-pet-bundle/index.json new file mode 100644 index 000000000000..21baa6794a97 --- /dev/null +++ b/site/public/v1/games/among-us-brainslug-pet-bundle/index.json @@ -0,0 +1,27 @@ +{ + "id": 7029, + "slug": "among-us-brainslug-pet-bundle", + "name": "Among Us - Brainslug Pet Bundle", + "release_date": "2019-06-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q101210403" + ], + "created_at": "2026-07-10T10:09:57.263329", + "updated_at": "2026-07-10T10:09:57.263329", + "url": "/v1/games/among-us-brainslug-pet-bundle" +} diff --git a/site/public/v1/games/among-us-hamster-pet-bundle/index.json b/site/public/v1/games/among-us-hamster-pet-bundle/index.json new file mode 100644 index 000000000000..08dc8727821e --- /dev/null +++ b/site/public/v1/games/among-us-hamster-pet-bundle/index.json @@ -0,0 +1,27 @@ +{ + "id": 7030, + "slug": "among-us-hamster-pet-bundle", + "name": "Among Us - Hamster Pet Bundle", + "release_date": "2019-06-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q101210372" + ], + "created_at": "2026-07-10T10:09:57.263329", + "updated_at": "2026-07-10T10:09:57.263329", + "url": "/v1/games/among-us-hamster-pet-bundle" +} diff --git a/site/public/v1/games/among-us-mini-crewmate-bundle/index.json b/site/public/v1/games/among-us-mini-crewmate-bundle/index.json new file mode 100644 index 000000000000..dbb89b217a65 --- /dev/null +++ b/site/public/v1/games/among-us-mini-crewmate-bundle/index.json @@ -0,0 +1,27 @@ +{ + "id": 7031, + "slug": "among-us-mini-crewmate-bundle", + "name": "Among Us - Mini Crewmate Bundle", + "release_date": "2019-06-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q101210417" + ], + "created_at": "2026-07-10T10:09:57.263329", + "updated_at": "2026-07-10T10:09:57.263329", + "url": "/v1/games/among-us-mini-crewmate-bundle" +} diff --git a/site/public/v1/games/among-us-mira-hq-skins/index.json b/site/public/v1/games/among-us-mira-hq-skins/index.json new file mode 100644 index 000000000000..2e79b1364e64 --- /dev/null +++ b/site/public/v1/games/among-us-mira-hq-skins/index.json @@ -0,0 +1,27 @@ +{ + "id": 7032, + "slug": "among-us-mira-hq-skins", + "name": "Among Us - MIRA HQ Skins", + "release_date": "2019-08-08", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q101210428" + ], + "created_at": "2026-07-10T10:09:57.264333", + "updated_at": "2026-07-10T10:09:57.264333", + "url": "/v1/games/among-us-mira-hq-skins" +} diff --git a/site/public/v1/games/among-us-polus-skins/index.json b/site/public/v1/games/among-us-polus-skins/index.json new file mode 100644 index 000000000000..5ecb4ec648aa --- /dev/null +++ b/site/public/v1/games/among-us-polus-skins/index.json @@ -0,0 +1,27 @@ +{ + "id": 7033, + "slug": "among-us-polus-skins", + "name": "Among Us - Polus Skins", + "release_date": "2019-11-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q101210398" + ], + "created_at": "2026-07-10T10:09:57.264333", + "updated_at": "2026-07-10T10:09:57.264333", + "url": "/v1/games/among-us-polus-skins" +} diff --git a/site/public/v1/games/among-us-stickmin-pet-bundle/index.json b/site/public/v1/games/among-us-stickmin-pet-bundle/index.json new file mode 100644 index 000000000000..14377b6560ed --- /dev/null +++ b/site/public/v1/games/among-us-stickmin-pet-bundle/index.json @@ -0,0 +1,27 @@ +{ + "id": 7034, + "slug": "among-us-stickmin-pet-bundle", + "name": "Among Us - Stickmin Pet Bundle", + "release_date": "2019-06-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q101210434" + ], + "created_at": "2026-07-10T10:09:57.264333", + "updated_at": "2026-07-10T10:09:57.264333", + "url": "/v1/games/among-us-stickmin-pet-bundle" +} diff --git a/site/public/v1/games/anarchy-online-the-notum-wars/index.json b/site/public/v1/games/anarchy-online-the-notum-wars/index.json new file mode 100644 index 000000000000..f9c93eb97d2a --- /dev/null +++ b/site/public/v1/games/anarchy-online-the-notum-wars/index.json @@ -0,0 +1,33 @@ +{ + "id": 7188, + "slug": "anarchy-online-the-notum-wars", + "name": "Anarchy Online: The Notum Wars", + "release_date": "2002-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "role-playing video game" + ], + "stores": [], + "developers": [ + "Funcom" + ], + "publishers": [ + "Funcom" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110798812" + ], + "created_at": "2026-07-10T10:09:57.306222", + "updated_at": "2026-07-10T10:09:57.306222", + "url": "/v1/games/anarchy-online-the-notum-wars" +} diff --git a/site/public/v1/games/ancestors-legacy-saladin-s-conquest/index.json b/site/public/v1/games/ancestors-legacy-saladin-s-conquest/index.json new file mode 100644 index 000000000000..c15266b7fe5c --- /dev/null +++ b/site/public/v1/games/ancestors-legacy-saladin-s-conquest/index.json @@ -0,0 +1,27 @@ +{ + "id": 7225, + "slug": "ancestors-legacy-saladin-s-conquest", + "name": "Ancestors Legacy - Saladin's Conquest", + "release_date": "2019-05-21", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q129978879" + ], + "created_at": "2026-07-10T10:09:57.316202", + "updated_at": "2026-07-10T10:09:57.316202", + "url": "/v1/games/ancestors-legacy-saladin-s-conquest" +} diff --git a/site/public/v1/games/ancient-enemies/index.json b/site/public/v1/games/ancient-enemies/index.json new file mode 100644 index 000000000000..36686e08bf1d --- /dev/null +++ b/site/public/v1/games/ancient-enemies/index.json @@ -0,0 +1,25 @@ +{ + "id": 7262, + "slug": "ancient-enemies", + "name": "Ancient Enemies", + "release_date": "2010-08-27", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q57974036" + ], + "created_at": "2026-07-10T10:09:57.326130", + "updated_at": "2026-07-10T10:09:57.326130", + "url": "/v1/games/ancient-enemies" +} diff --git a/site/public/v1/games/angel-beats-1st-beat/index.json b/site/public/v1/games/angel-beats-1st-beat/index.json new file mode 100644 index 000000000000..0914b8d279f0 --- /dev/null +++ b/site/public/v1/games/angel-beats-1st-beat/index.json @@ -0,0 +1,33 @@ +{ + "id": 7427, + "slug": "angel-beats-1st-beat", + "name": "Angel Beats! 1st Beat", + "release_date": "2015-06-26", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "visual novel" + ], + "stores": [], + "developers": [ + "Key" + ], + "publishers": [ + "Visual Arts" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q53870802" + ], + "created_at": "2026-07-10T10:09:57.370187", + "updated_at": "2026-07-10T10:09:57.370187", + "url": "/v1/games/angel-beats-1st-beat" +} diff --git a/site/public/v1/games/angelique-history/index.json b/site/public/v1/games/angelique-history/index.json new file mode 100644 index 000000000000..4dccf09ec819 --- /dev/null +++ b/site/public/v1/games/angelique-history/index.json @@ -0,0 +1,25 @@ +{ + "id": 7495, + "slug": "angelique-history", + "name": "Angelique History", + "release_date": "2000-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130343014" + ], + "created_at": "2026-07-10T10:09:57.388135", + "updated_at": "2026-07-10T10:09:57.388135", + "url": "/v1/games/angelique-history" +} diff --git a/site/public/v1/games/angry-birds-dice/index.json b/site/public/v1/games/angry-birds-dice/index.json new file mode 100644 index 000000000000..4144cb97aaef --- /dev/null +++ b/site/public/v1/games/angry-birds-dice/index.json @@ -0,0 +1,27 @@ +{ + "id": 7572, + "slug": "angry-birds-dice", + "name": "Angry Birds Dice", + "release_date": "2017-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "iOS" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28656962" + ], + "created_at": "2026-07-10T10:09:57.407928", + "updated_at": "2026-07-10T10:09:57.407928", + "url": "/v1/games/angry-birds-dice" +} diff --git a/site/public/v1/games/angry-birds-trilogy/index.json b/site/public/v1/games/angry-birds-trilogy/index.json new file mode 100644 index 000000000000..6d68b02b1329 --- /dev/null +++ b/site/public/v1/games/angry-birds-trilogy/index.json @@ -0,0 +1,35 @@ +{ + "id": 7590, + "slug": "angry-birds-trilogy", + "name": "Angry Birds Trilogy", + "release_date": "2012-09-25", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 4", + "PlayStation Vita", + "Wii U", + "PlayStation 3", + "Wii" + ], + "genres": [ + "puzzle video game" + ], + "stores": [], + "developers": [], + "publishers": [ + "Activision" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2786549" + ], + "created_at": "2026-07-10T10:09:57.412869", + "updated_at": "2026-07-10T10:09:57.412869", + "url": "/v1/games/angry-birds-trilogy" +} diff --git a/site/public/v1/games/angry-video-game-nerd-bundle/index.json b/site/public/v1/games/angry-video-game-nerd-bundle/index.json new file mode 100644 index 000000000000..70291bae32b8 --- /dev/null +++ b/site/public/v1/games/angry-video-game-nerd-bundle/index.json @@ -0,0 +1,27 @@ +{ + "id": 7625, + "slug": "angry-video-game-nerd-bundle", + "name": "Angry Video Game Nerd Bundle", + "release_date": "2016-06-10", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q104662355" + ], + "created_at": "2026-07-10T10:09:57.421893", + "updated_at": "2026-07-10T10:09:57.421893", + "url": "/v1/games/angry-video-game-nerd-bundle" +} diff --git a/site/public/v1/games/animal-crossing-new-horizons-happy-home-paradise/index.json b/site/public/v1/games/animal-crossing-new-horizons-happy-home-paradise/index.json new file mode 100644 index 000000000000..7399d6d83da6 --- /dev/null +++ b/site/public/v1/games/animal-crossing-new-horizons-happy-home-paradise/index.json @@ -0,0 +1,31 @@ +{ + "id": 7704, + "slug": "animal-crossing-new-horizons-happy-home-paradise", + "name": "Animal Crossing: New Horizons – Happy Home Paradise", + "release_date": "2021-11-05", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "life simulation game" + ], + "stores": [], + "developers": [ + "Nintendo Entertainment Planning & Development" + ], + "publishers": [ + "Nintendo" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108905220" + ], + "created_at": "2026-07-10T10:09:57.477971", + "updated_at": "2026-07-10T10:09:57.477971", + "url": "/v1/games/animal-crossing-new-horizons-happy-home-paradise" +} diff --git a/site/public/v1/games/animation-arts-collection/index.json b/site/public/v1/games/animation-arts-collection/index.json new file mode 100644 index 000000000000..8585d3c7b94d --- /dev/null +++ b/site/public/v1/games/animation-arts-collection/index.json @@ -0,0 +1,29 @@ +{ + "id": 7838, + "slug": "animation-arts-collection", + "name": "Animation Arts Collection", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Deep Silver" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q84602572" + ], + "created_at": "2026-07-10T10:09:57.514382", + "updated_at": "2026-07-10T10:09:57.514382", + "url": "/v1/games/animation-arts-collection" +} diff --git a/site/public/v1/games/anime-artist-2-cutest-girls-pack/index.json b/site/public/v1/games/anime-artist-2-cutest-girls-pack/index.json new file mode 100644 index 000000000000..3a7968072535 --- /dev/null +++ b/site/public/v1/games/anime-artist-2-cutest-girls-pack/index.json @@ -0,0 +1,31 @@ +{ + "id": 7845, + "slug": "anime-artist-2-cutest-girls-pack", + "name": "Anime Artist 2: Cutest Girls Pack", + "release_date": "2020-06-09", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Neoclassic Games" + ], + "publishers": [ + "Neoclassic Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113285207" + ], + "created_at": "2026-07-10T10:09:57.516325", + "updated_at": "2026-07-10T10:09:57.516325", + "url": "/v1/games/anime-artist-2-cutest-girls-pack" +} diff --git a/site/public/v1/games/anime-artist-2-the-more-the-better-pack/index.json b/site/public/v1/games/anime-artist-2-the-more-the-better-pack/index.json new file mode 100644 index 000000000000..bbb75ca4ae3d --- /dev/null +++ b/site/public/v1/games/anime-artist-2-the-more-the-better-pack/index.json @@ -0,0 +1,31 @@ +{ + "id": 7847, + "slug": "anime-artist-2-the-more-the-better-pack", + "name": "Anime Artist 2: The More, The Better Pack", + "release_date": "2020-02-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Neoclassic Games" + ], + "publishers": [ + "Neoclassic Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113285202" + ], + "created_at": "2026-07-10T10:09:57.516325", + "updated_at": "2026-07-10T10:09:57.516325", + "url": "/v1/games/anime-artist-2-the-more-the-better-pack" +} diff --git a/site/public/v1/games/anime-artist-3-a-better-artist/index.json b/site/public/v1/games/anime-artist-3-a-better-artist/index.json new file mode 100644 index 000000000000..c51f966915bd --- /dev/null +++ b/site/public/v1/games/anime-artist-3-a-better-artist/index.json @@ -0,0 +1,31 @@ +{ + "id": 7848, + "slug": "anime-artist-3-a-better-artist", + "name": "Anime Artist 3 - A better Artist", + "release_date": "2020-11-19", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Neoclassic Games" + ], + "publishers": [ + "Neoclassic Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113285209" + ], + "created_at": "2026-07-10T10:09:57.516325", + "updated_at": "2026-07-10T10:09:57.516325", + "url": "/v1/games/anime-artist-3-a-better-artist" +} diff --git a/site/public/v1/games/anime-artist-3-extended-wardrobe/index.json b/site/public/v1/games/anime-artist-3-extended-wardrobe/index.json new file mode 100644 index 000000000000..82b9033bf441 --- /dev/null +++ b/site/public/v1/games/anime-artist-3-extended-wardrobe/index.json @@ -0,0 +1,31 @@ +{ + "id": 7849, + "slug": "anime-artist-3-extended-wardrobe", + "name": "Anime Artist 3 - Extended Wardrobe", + "release_date": "2020-11-19", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Neoclassic Games" + ], + "publishers": [ + "Neoclassic Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113285210" + ], + "created_at": "2026-07-10T10:09:57.516325", + "updated_at": "2026-07-10T10:09:57.516325", + "url": "/v1/games/anime-artist-3-extended-wardrobe" +} diff --git a/site/public/v1/games/anime-artist-elisa-the-innkeeper-pack/index.json b/site/public/v1/games/anime-artist-elisa-the-innkeeper-pack/index.json new file mode 100644 index 000000000000..adfc76b074e7 --- /dev/null +++ b/site/public/v1/games/anime-artist-elisa-the-innkeeper-pack/index.json @@ -0,0 +1,31 @@ +{ + "id": 7851, + "slug": "anime-artist-elisa-the-innkeeper-pack", + "name": "Anime Artist - Elisa the Innkeeper Pack", + "release_date": "2019-08-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Neoclassic Games" + ], + "publishers": [ + "Neoclassic Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113285199" + ], + "created_at": "2026-07-10T10:09:57.517329", + "updated_at": "2026-07-10T10:09:57.517329", + "url": "/v1/games/anime-artist-elisa-the-innkeeper-pack" +} diff --git a/site/public/v1/games/anime-fighting-simulator/index.json b/site/public/v1/games/anime-fighting-simulator/index.json new file mode 100644 index 000000000000..02b749f5aa9a --- /dev/null +++ b/site/public/v1/games/anime-fighting-simulator/index.json @@ -0,0 +1,25 @@ +{ + "id": 7871, + "slug": "anime-fighting-simulator", + "name": "Anime Fighting Simulator", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127272610" + ], + "created_at": "2026-07-10T10:09:57.522408", + "updated_at": "2026-07-10T10:09:57.522408", + "url": "/v1/games/anime-fighting-simulator" +} diff --git a/site/public/v1/games/anno-1404-venice/index.json b/site/public/v1/games/anno-1404-venice/index.json new file mode 100644 index 000000000000..865060d596c5 --- /dev/null +++ b/site/public/v1/games/anno-1404-venice/index.json @@ -0,0 +1,31 @@ +{ + "id": 7996, + "slug": "anno-1404-venice", + "name": "Anno 1404 Venice", + "release_date": "1999-11-30", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "construction and management simulation" + ], + "stores": [], + "developers": [ + "Ubisoft Blue Byte" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2851749" + ], + "created_at": "2026-07-10T10:09:57.554442", + "updated_at": "2026-07-10T10:09:57.554442", + "url": "/v1/games/anno-1404-venice" +} diff --git a/site/public/v1/games/anno-1503-royal-edition/index.json b/site/public/v1/games/anno-1503-royal-edition/index.json new file mode 100644 index 000000000000..3bd12820eb69 --- /dev/null +++ b/site/public/v1/games/anno-1503-royal-edition/index.json @@ -0,0 +1,25 @@ +{ + "id": 7998, + "slug": "anno-1503-royal-edition", + "name": "Anno 1503: Royal Edition", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134179290" + ], + "created_at": "2026-07-10T10:09:57.555430", + "updated_at": "2026-07-10T10:09:57.555430", + "url": "/v1/games/anno-1503-royal-edition" +} diff --git a/site/public/v1/games/anno-1503-treasures-monsters-and-pirates/index.json b/site/public/v1/games/anno-1503-treasures-monsters-and-pirates/index.json new file mode 100644 index 000000000000..1857e4f9beac --- /dev/null +++ b/site/public/v1/games/anno-1503-treasures-monsters-and-pirates/index.json @@ -0,0 +1,25 @@ +{ + "id": 7999, + "slug": "anno-1503-treasures-monsters-and-pirates", + "name": "Anno 1503: Treasures, Monsters and Pirates", + "release_date": "2004-05-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2090234" + ], + "created_at": "2026-07-10T10:09:57.555430", + "updated_at": "2026-07-10T10:09:57.555430", + "url": "/v1/games/anno-1503-treasures-monsters-and-pirates" +} diff --git a/site/public/v1/games/anno-1602-new-islands-new-adventures/index.json b/site/public/v1/games/anno-1602-new-islands-new-adventures/index.json new file mode 100644 index 000000000000..6ed4591c6f75 --- /dev/null +++ b/site/public/v1/games/anno-1602-new-islands-new-adventures/index.json @@ -0,0 +1,31 @@ +{ + "id": 8001, + "slug": "anno-1602-new-islands-new-adventures", + "name": "Anno 1602: New Islands, New Adventures", + "release_date": "1998-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Max Design" + ], + "publishers": [ + "Sunflowers Interactive Entertainment Software" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2386732" + ], + "created_at": "2026-07-10T10:09:57.555430", + "updated_at": "2026-07-10T10:09:57.555430", + "url": "/v1/games/anno-1602-new-islands-new-adventures" +} diff --git a/site/public/v1/games/anno-1701-the-sunken-dragon/index.json b/site/public/v1/games/anno-1701-the-sunken-dragon/index.json new file mode 100644 index 000000000000..4118d4afd1ac --- /dev/null +++ b/site/public/v1/games/anno-1701-the-sunken-dragon/index.json @@ -0,0 +1,32 @@ +{ + "id": 8005, + "slug": "anno-1701-the-sunken-dragon", + "name": "Anno 1701: The Sunken Dragon", + "release_date": "2007-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Related Designs" + ], + "publishers": [ + "Sunflowers Interactive Entertainment Software", + "Cenega" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q9155978" + ], + "created_at": "2026-07-10T10:09:57.556412", + "updated_at": "2026-07-10T10:09:57.556412", + "url": "/v1/games/anno-1701-the-sunken-dragon" +} diff --git a/site/public/v1/games/anno-1800-console-edition/index.json b/site/public/v1/games/anno-1800-console-edition/index.json new file mode 100644 index 000000000000..b72bb53484f4 --- /dev/null +++ b/site/public/v1/games/anno-1800-console-edition/index.json @@ -0,0 +1,29 @@ +{ + "id": 8007, + "slug": "anno-1800-console-edition", + "name": "Anno 1800 Console Edition", + "release_date": "2023-04-17", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S" + ], + "genres": [], + "stores": [], + "developers": [ + "Ubisoft Blue Byte" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123173186" + ], + "created_at": "2026-07-10T10:09:57.557425", + "updated_at": "2026-07-10T10:09:57.557425", + "url": "/v1/games/anno-1800-console-edition" +} diff --git a/site/public/v1/games/anno-1800-seat-of-power/index.json b/site/public/v1/games/anno-1800-seat-of-power/index.json new file mode 100644 index 000000000000..8a5db7514301 --- /dev/null +++ b/site/public/v1/games/anno-1800-seat-of-power/index.json @@ -0,0 +1,25 @@ +{ + "id": 8008, + "slug": "anno-1800-seat-of-power", + "name": "Anno 1800: Seat of Power", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131912017" + ], + "created_at": "2026-07-10T10:09:57.560410", + "updated_at": "2026-07-10T10:09:57.560410", + "url": "/v1/games/anno-1800-seat-of-power" +} diff --git a/site/public/v1/games/anno-1800-sunken-treasure/index.json b/site/public/v1/games/anno-1800-sunken-treasure/index.json new file mode 100644 index 000000000000..7e8d76807334 --- /dev/null +++ b/site/public/v1/games/anno-1800-sunken-treasure/index.json @@ -0,0 +1,27 @@ +{ + "id": 8009, + "slug": "anno-1800-sunken-treasure", + "name": "Anno 1800 - Sunken Treasure", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q129978995" + ], + "created_at": "2026-07-10T10:09:57.564444", + "updated_at": "2026-07-10T10:09:57.564444", + "url": "/v1/games/anno-1800-sunken-treasure" +} diff --git a/site/public/v1/games/anno-2070-deep-ocean/index.json b/site/public/v1/games/anno-2070-deep-ocean/index.json new file mode 100644 index 000000000000..63b30257642b --- /dev/null +++ b/site/public/v1/games/anno-2070-deep-ocean/index.json @@ -0,0 +1,30 @@ +{ + "id": 8011, + "slug": "anno-2070-deep-ocean", + "name": "Anno 2070: Deep Ocean", + "release_date": "2012-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Related Designs", + "Ubisoft Blue Byte" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q29840430" + ], + "created_at": "2026-07-10T10:09:57.568402", + "updated_at": "2026-07-10T10:09:57.568402", + "url": "/v1/games/anno-2070-deep-ocean" +} diff --git a/site/public/v1/games/anno-2205-frontiers/index.json b/site/public/v1/games/anno-2205-frontiers/index.json new file mode 100644 index 000000000000..39cb49ca2376 --- /dev/null +++ b/site/public/v1/games/anno-2205-frontiers/index.json @@ -0,0 +1,29 @@ +{ + "id": 8013, + "slug": "anno-2205-frontiers", + "name": "Anno 2205™ - Frontiers", + "release_date": "2016-10-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Ubisoft Blue Byte" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108215923" + ], + "created_at": "2026-07-10T10:09:57.572432", + "updated_at": "2026-07-10T10:09:57.572432", + "url": "/v1/games/anno-2205-frontiers" +} diff --git a/site/public/v1/games/anno-2205-orbit/index.json b/site/public/v1/games/anno-2205-orbit/index.json new file mode 100644 index 000000000000..c7e1bf4f80f5 --- /dev/null +++ b/site/public/v1/games/anno-2205-orbit/index.json @@ -0,0 +1,29 @@ +{ + "id": 8014, + "slug": "anno-2205-orbit", + "name": "Anno 2205™ - Orbit", + "release_date": "2016-07-20", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Ubisoft Blue Byte" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108215922" + ], + "created_at": "2026-07-10T10:09:57.575395", + "updated_at": "2026-07-10T10:09:57.575395", + "url": "/v1/games/anno-2205-orbit" +} diff --git a/site/public/v1/games/anno-2205-tundra/index.json b/site/public/v1/games/anno-2205-tundra/index.json new file mode 100644 index 000000000000..4ee5dd05adfd --- /dev/null +++ b/site/public/v1/games/anno-2205-tundra/index.json @@ -0,0 +1,29 @@ +{ + "id": 8015, + "slug": "anno-2205-tundra", + "name": "Anno 2205™ - Tundra", + "release_date": "2016-02-29", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Ubisoft Blue Byte" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108215921" + ], + "created_at": "2026-07-10T10:09:57.575395", + "updated_at": "2026-07-10T10:09:57.575395", + "url": "/v1/games/anno-2205-tundra" +} diff --git a/site/public/v1/games/anno-history-collection/index.json b/site/public/v1/games/anno-history-collection/index.json new file mode 100644 index 000000000000..7f334845bf9d --- /dev/null +++ b/site/public/v1/games/anno-history-collection/index.json @@ -0,0 +1,33 @@ +{ + "id": 8019, + "slug": "anno-history-collection", + "name": "Anno History Collection", + "release_date": "2020-06-26", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "real-time strategy", + "historical video game", + "city-building game" + ], + "stores": [], + "developers": [ + "Ubisoft Mainz" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131912062" + ], + "created_at": "2026-07-10T10:09:57.581403", + "updated_at": "2026-07-10T10:09:57.581403", + "url": "/v1/games/anno-history-collection" +} diff --git a/site/public/v1/games/anothereal/index.json b/site/public/v1/games/anothereal/index.json new file mode 100644 index 000000000000..c6a31f9d2d9d --- /dev/null +++ b/site/public/v1/games/anothereal/index.json @@ -0,0 +1,32 @@ +{ + "id": 8200, + "slug": "anothereal", + "name": "Anothereal", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "role-playing video game", + "bullet hell" + ], + "stores": [], + "developers": [ + "Lena Raine" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126948305" + ], + "created_at": "2026-07-10T10:09:57.640689", + "updated_at": "2026-07-10T10:09:57.640689", + "url": "/v1/games/anothereal" +} diff --git a/site/public/v1/games/antheads/index.json b/site/public/v1/games/antheads/index.json new file mode 100644 index 000000000000..d23600e44de7 --- /dev/null +++ b/site/public/v1/games/antheads/index.json @@ -0,0 +1,29 @@ +{ + "id": 8270, + "slug": "antheads", + "name": "Antheads", + "release_date": "1990-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Commodore Amiga" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Cinemaware" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110982435" + ], + "created_at": "2026-07-10T10:09:57.670080", + "updated_at": "2026-07-10T10:09:57.670080", + "url": "/v1/games/antheads" +} diff --git a/site/public/v1/games/apache-overdrive-demo/index.json b/site/public/v1/games/apache-overdrive-demo/index.json new file mode 100644 index 000000000000..3b612ae89552 --- /dev/null +++ b/site/public/v1/games/apache-overdrive-demo/index.json @@ -0,0 +1,25 @@ +{ + "id": 8455, + "slug": "apache-overdrive-demo", + "name": "Apache & Overdrive (Demo)", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126185251" + ], + "created_at": "2026-07-10T10:09:57.719100", + "updated_at": "2026-07-10T10:09:57.719100", + "url": "/v1/games/apache-overdrive-demo" +} diff --git a/site/public/v1/games/aperture-science-3d/index.json b/site/public/v1/games/aperture-science-3d/index.json new file mode 100644 index 000000000000..8cb599286153 --- /dev/null +++ b/site/public/v1/games/aperture-science-3d/index.json @@ -0,0 +1,35 @@ +{ + "id": 8499, + "slug": "aperture-science-3d", + "name": "Aperture Science 3D", + "release_date": "2015-08-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Nintendo DS" + ], + "genres": [ + "puzzle video game" + ], + "stores": [], + "developers": [ + "Lobo", + "smealum" + ], + "publishers": [ + "smealum", + "Lobo" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123141729" + ], + "created_at": "2026-07-10T10:09:57.743223", + "updated_at": "2026-07-10T10:09:57.743223", + "url": "/v1/games/aperture-science-3d" +} diff --git a/site/public/v1/games/aperture-science-ds/index.json b/site/public/v1/games/aperture-science-ds/index.json new file mode 100644 index 000000000000..1e00b275a4fe --- /dev/null +++ b/site/public/v1/games/aperture-science-ds/index.json @@ -0,0 +1,35 @@ +{ + "id": 8500, + "slug": "aperture-science-ds", + "name": "Aperture Science DS", + "release_date": "2013-08-21", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Nintendo DS" + ], + "genres": [ + "puzzle video game" + ], + "stores": [], + "developers": [ + "Lobo", + "smealum" + ], + "publishers": [ + "smealum", + "Lobo" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123009403" + ], + "created_at": "2026-07-10T10:09:57.745422", + "updated_at": "2026-07-10T10:09:57.745422", + "url": "/v1/games/aperture-science-ds" +} diff --git a/site/public/v1/games/apollo-justice-ace-attorney-trilogy/index.json b/site/public/v1/games/apollo-justice-ace-attorney-trilogy/index.json new file mode 100644 index 000000000000..51620d8769c6 --- /dev/null +++ b/site/public/v1/games/apollo-justice-ace-attorney-trilogy/index.json @@ -0,0 +1,31 @@ +{ + "id": 8603, + "slug": "apollo-justice-ace-attorney-trilogy", + "name": "Apollo Justice: Ace Attorney Trilogy", + "release_date": "2024-01-25", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "visual novel" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124128412" + ], + "created_at": "2026-07-10T10:09:57.790868", + "updated_at": "2026-07-10T10:09:57.790868", + "url": "/v1/games/apollo-justice-ace-attorney-trilogy" +} diff --git a/site/public/v1/games/aq/index.json b/site/public/v1/games/aq/index.json new file mode 100644 index 000000000000..d2597dd2a62e --- /dev/null +++ b/site/public/v1/games/aq/index.json @@ -0,0 +1,25 @@ +{ + "id": 8709, + "slug": "aq", + "name": "AQ", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q48938179" + ], + "created_at": "2026-07-10T10:09:57.813448", + "updated_at": "2026-07-10T10:09:57.813448", + "url": "/v1/games/aq" +} diff --git a/site/public/v1/games/aquanox-the-angel-s-tears/index.json b/site/public/v1/games/aquanox-the-angel-s-tears/index.json new file mode 100644 index 000000000000..651900273bcc --- /dev/null +++ b/site/public/v1/games/aquanox-the-angel-s-tears/index.json @@ -0,0 +1,25 @@ +{ + "id": 8774, + "slug": "aquanox-the-angel-s-tears", + "name": "AquaNox: The Angel's Tears", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124331633" + ], + "created_at": "2026-07-10T10:09:57.826373", + "updated_at": "2026-07-10T10:09:57.826373", + "url": "/v1/games/aquanox-the-angel-s-tears" +} diff --git a/site/public/v1/games/aragami-nightfall/index.json b/site/public/v1/games/aragami-nightfall/index.json new file mode 100644 index 000000000000..3933f40d4c4d --- /dev/null +++ b/site/public/v1/games/aragami-nightfall/index.json @@ -0,0 +1,25 @@ +{ + "id": 8871, + "slug": "aragami-nightfall", + "name": "Aragami: Nightfall", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140403668" + ], + "created_at": "2026-07-10T10:09:57.845815", + "updated_at": "2026-07-10T10:09:57.845815", + "url": "/v1/games/aragami-nightfall" +} diff --git a/site/public/v1/games/arc-the-lad-collection/index.json b/site/public/v1/games/arc-the-lad-collection/index.json new file mode 100644 index 000000000000..e307e7e00962 --- /dev/null +++ b/site/public/v1/games/arc-the-lad-collection/index.json @@ -0,0 +1,31 @@ +{ + "id": 8921, + "slug": "arc-the-lad-collection", + "name": "Arc the Lad Collection", + "release_date": "2002-04-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "tactical role-playing game" + ], + "stores": [], + "developers": [ + "Sony Interactive Entertainment" + ], + "publishers": [ + "Working Designs" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4785042" + ], + "created_at": "2026-07-10T10:09:57.859815", + "updated_at": "2026-07-10T10:09:57.859815", + "url": "/v1/games/arc-the-lad-collection" +} diff --git a/site/public/v1/games/arcade-classic-no-1-asteroids-missile-command/index.json b/site/public/v1/games/arcade-classic-no-1-asteroids-missile-command/index.json new file mode 100644 index 000000000000..77fcded804cf --- /dev/null +++ b/site/public/v1/games/arcade-classic-no-1-asteroids-missile-command/index.json @@ -0,0 +1,31 @@ +{ + "id": 8944, + "slug": "arcade-classic-no-1-asteroids-missile-command", + "name": "Arcade Classic No. 1: Asteroids / Missile Command", + "release_date": "1995-07-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Game Boy" + ], + "genres": [], + "stores": [], + "developers": [ + "The Code Monkeys" + ], + "publishers": [ + "Nintendo" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63184643" + ], + "created_at": "2026-07-10T10:09:57.865891", + "updated_at": "2026-07-10T10:09:57.865891", + "url": "/v1/games/arcade-classic-no-1-asteroids-missile-command" +} diff --git a/site/public/v1/games/arcade-classic-no-2-centipede-millipede/index.json b/site/public/v1/games/arcade-classic-no-2-centipede-millipede/index.json new file mode 100644 index 000000000000..78067e28cc7f --- /dev/null +++ b/site/public/v1/games/arcade-classic-no-2-centipede-millipede/index.json @@ -0,0 +1,31 @@ +{ + "id": 8945, + "slug": "arcade-classic-no-2-centipede-millipede", + "name": "Arcade Classic No. 2: Centipede / Millipede", + "release_date": "1995-08-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Game Boy" + ], + "genres": [], + "stores": [], + "developers": [ + "The Code Monkeys" + ], + "publishers": [ + "Nintendo" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63181477" + ], + "created_at": "2026-07-10T10:09:57.865891", + "updated_at": "2026-07-10T10:09:57.865891", + "url": "/v1/games/arcade-classic-no-2-centipede-millipede" +} diff --git a/site/public/v1/games/arcade-classics-q4785072/index.json b/site/public/v1/games/arcade-classics-q4785072/index.json new file mode 100644 index 000000000000..ac7666e05032 --- /dev/null +++ b/site/public/v1/games/arcade-classics-q4785072/index.json @@ -0,0 +1,33 @@ +{ + "id": 8950, + "slug": "arcade-classics-q4785072", + "name": "Arcade Classics", + "release_date": "1996-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Philips CD-i" + ], + "genres": [ + "arcade" + ], + "stores": [], + "developers": [ + "Namco" + ], + "publishers": [ + "Namco" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4785072" + ], + "created_at": "2026-07-10T10:09:57.867769", + "updated_at": "2026-07-10T10:09:57.867769", + "url": "/v1/games/arcade-classics-q4785072" +} diff --git a/site/public/v1/games/arcade-classics-q4785073/index.json b/site/public/v1/games/arcade-classics-q4785073/index.json new file mode 100644 index 000000000000..781f83780302 --- /dev/null +++ b/site/public/v1/games/arcade-classics-q4785073/index.json @@ -0,0 +1,29 @@ +{ + "id": 8951, + "slug": "arcade-classics-q4785073", + "name": "Arcade Classics", + "release_date": "1996-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Sega Genesis" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Sega" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4785073" + ], + "created_at": "2026-07-10T10:09:57.867769", + "updated_at": "2026-07-10T10:09:57.867769", + "url": "/v1/games/arcade-classics-q4785073" +} diff --git a/site/public/v1/games/arcade-party-pak/index.json b/site/public/v1/games/arcade-party-pak/index.json new file mode 100644 index 000000000000..802290dac28e --- /dev/null +++ b/site/public/v1/games/arcade-party-pak/index.json @@ -0,0 +1,27 @@ +{ + "id": 8980, + "slug": "arcade-party-pak", + "name": "Arcade Party Pak", + "release_date": "1999-09-30", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Midway Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4785081" + ], + "created_at": "2026-07-10T10:09:57.874833", + "updated_at": "2026-07-10T10:09:57.874833", + "url": "/v1/games/arcade-party-pak" +} diff --git a/site/public/v1/games/arcade-s-greatest-hits-the-atari-collection-1/index.json b/site/public/v1/games/arcade-s-greatest-hits-the-atari-collection-1/index.json new file mode 100644 index 000000000000..30ea76c7c630 --- /dev/null +++ b/site/public/v1/games/arcade-s-greatest-hits-the-atari-collection-1/index.json @@ -0,0 +1,29 @@ +{ + "id": 8985, + "slug": "arcade-s-greatest-hits-the-atari-collection-1", + "name": "Arcade's Greatest Hits: The Atari Collection 1", + "release_date": "1996-12-31", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Super Nintendo Entertainment System" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Midway Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2859905" + ], + "created_at": "2026-07-10T10:09:57.875856", + "updated_at": "2026-07-10T10:09:57.875856", + "url": "/v1/games/arcade-s-greatest-hits-the-atari-collection-1" +} diff --git a/site/public/v1/games/arcade-s-greatest-hits-the-atari-collection-2/index.json b/site/public/v1/games/arcade-s-greatest-hits-the-atari-collection-2/index.json new file mode 100644 index 000000000000..b65faccb8b44 --- /dev/null +++ b/site/public/v1/games/arcade-s-greatest-hits-the-atari-collection-2/index.json @@ -0,0 +1,27 @@ +{ + "id": 8986, + "slug": "arcade-s-greatest-hits-the-atari-collection-2", + "name": "Arcade's Greatest Hits: The Atari Collection 2", + "release_date": "1998-04-05", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Midway Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4785052" + ], + "created_at": "2026-07-10T10:09:57.875856", + "updated_at": "2026-07-10T10:09:57.875856", + "url": "/v1/games/arcade-s-greatest-hits-the-atari-collection-2" +} diff --git a/site/public/v1/games/arcade-s-greatest-hits-the-midway-collection-2/index.json b/site/public/v1/games/arcade-s-greatest-hits-the-midway-collection-2/index.json new file mode 100644 index 000000000000..cbc06c6b22e4 --- /dev/null +++ b/site/public/v1/games/arcade-s-greatest-hits-the-midway-collection-2/index.json @@ -0,0 +1,25 @@ +{ + "id": 8987, + "slug": "arcade-s-greatest-hits-the-midway-collection-2", + "name": "Arcade's Greatest Hits: The Midway Collection 2", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63049481" + ], + "created_at": "2026-07-10T10:09:57.875856", + "updated_at": "2026-07-10T10:09:57.875856", + "url": "/v1/games/arcade-s-greatest-hits-the-midway-collection-2" +} diff --git a/site/public/v1/games/arcade-smash-hits-q55365862/index.json b/site/public/v1/games/arcade-smash-hits-q55365862/index.json new file mode 100644 index 000000000000..8343f3e1db29 --- /dev/null +++ b/site/public/v1/games/arcade-smash-hits-q55365862/index.json @@ -0,0 +1,25 @@ +{ + "id": 8992, + "slug": "arcade-smash-hits-q55365862", + "name": "Arcade Smash Hits", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q55365862" + ], + "created_at": "2026-07-10T10:09:57.877834", + "updated_at": "2026-07-10T10:09:57.877834", + "url": "/v1/games/arcade-smash-hits-q55365862" +} diff --git a/site/public/v1/games/arcade-smash-hits/index.json b/site/public/v1/games/arcade-smash-hits/index.json new file mode 100644 index 000000000000..2f98f82a70ff --- /dev/null +++ b/site/public/v1/games/arcade-smash-hits/index.json @@ -0,0 +1,29 @@ +{ + "id": 8993, + "slug": "arcade-smash-hits", + "name": "Arcade Smash Hits", + "release_date": "1992-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "action game" + ], + "stores": [], + "developers": [], + "publishers": [ + "Virgin Interactive" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4785088" + ], + "created_at": "2026-07-10T10:09:57.877834", + "updated_at": "2026-07-10T10:09:57.877834", + "url": "/v1/games/arcade-smash-hits" +} diff --git a/site/public/v1/games/arcania-fall-of-setarrif/index.json b/site/public/v1/games/arcania-fall-of-setarrif/index.json new file mode 100644 index 000000000000..f0a8da9ee1ba --- /dev/null +++ b/site/public/v1/games/arcania-fall-of-setarrif/index.json @@ -0,0 +1,35 @@ +{ + "id": 9118, + "slug": "arcania-fall-of-setarrif", + "name": "Arcania: Fall of Setarrif", + "release_date": "2011-10-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 4", + "PlayStation 3", + "Microsoft Windows" + ], + "genres": [ + "role-playing video game" + ], + "stores": [], + "developers": [ + "Spellbound Entertainment" + ], + "publishers": [ + "THQ Nordic" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2054505" + ], + "created_at": "2026-07-10T10:09:57.986668", + "updated_at": "2026-07-10T10:09:57.986668", + "url": "/v1/games/arcania-fall-of-setarrif" +} diff --git a/site/public/v1/games/ark-aberration/index.json b/site/public/v1/games/ark-aberration/index.json new file mode 100644 index 000000000000..95d6dff6d4e9 --- /dev/null +++ b/site/public/v1/games/ark-aberration/index.json @@ -0,0 +1,28 @@ +{ + "id": 9553, + "slug": "ark-aberration", + "name": "ARK: Aberration", + "release_date": "2017-12-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113281381" + ], + "created_at": "2026-07-10T10:09:58.105180", + "updated_at": "2026-07-10T10:09:58.105180", + "url": "/v1/games/ark-aberration" +} diff --git a/site/public/v1/games/ark-extinction/index.json b/site/public/v1/games/ark-extinction/index.json new file mode 100644 index 000000000000..8cc3fa90680a --- /dev/null +++ b/site/public/v1/games/ark-extinction/index.json @@ -0,0 +1,28 @@ +{ + "id": 9558, + "slug": "ark-extinction", + "name": "ARK: Extinction", + "release_date": "2018-11-06", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113281393" + ], + "created_at": "2026-07-10T10:09:58.106193", + "updated_at": "2026-07-10T10:09:58.106193", + "url": "/v1/games/ark-extinction" +} diff --git a/site/public/v1/games/ark-genesis/index.json b/site/public/v1/games/ark-genesis/index.json new file mode 100644 index 000000000000..59a9ff9a2bda --- /dev/null +++ b/site/public/v1/games/ark-genesis/index.json @@ -0,0 +1,25 @@ +{ + "id": 9559, + "slug": "ark-genesis", + "name": "Ark: Genesis", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140462285" + ], + "created_at": "2026-07-10T10:09:58.107233", + "updated_at": "2026-07-10T10:09:58.107233", + "url": "/v1/games/ark-genesis" +} diff --git a/site/public/v1/games/ark-scorched-earth/index.json b/site/public/v1/games/ark-scorched-earth/index.json new file mode 100644 index 000000000000..bb9adad4b028 --- /dev/null +++ b/site/public/v1/games/ark-scorched-earth/index.json @@ -0,0 +1,28 @@ +{ + "id": 9573, + "slug": "ark-scorched-earth", + "name": "ARK: Scorched Earth", + "release_date": "2016-09-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113281366" + ], + "created_at": "2026-07-10T10:09:58.110194", + "updated_at": "2026-07-10T10:09:58.110194", + "url": "/v1/games/ark-scorched-earth" +} diff --git a/site/public/v1/games/ark-ultimate-survivor-edition/index.json b/site/public/v1/games/ark-ultimate-survivor-edition/index.json new file mode 100644 index 000000000000..e0fb024ae287 --- /dev/null +++ b/site/public/v1/games/ark-ultimate-survivor-edition/index.json @@ -0,0 +1,29 @@ +{ + "id": 9579, + "slug": "ark-ultimate-survivor-edition", + "name": "ARK: Ultimate Survivor Edition", + "release_date": "2021-05-26", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108507448" + ], + "created_at": "2026-07-10T10:09:58.112194", + "updated_at": "2026-07-10T10:09:58.112194", + "url": "/v1/games/ark-ultimate-survivor-edition" +} diff --git a/site/public/v1/games/arkane-anniversary-collection/index.json b/site/public/v1/games/arkane-anniversary-collection/index.json new file mode 100644 index 000000000000..c8c449d7385d --- /dev/null +++ b/site/public/v1/games/arkane-anniversary-collection/index.json @@ -0,0 +1,25 @@ +{ + "id": 9586, + "slug": "arkane-anniversary-collection", + "name": "Arkane Anniversary Collection", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140471206" + ], + "created_at": "2026-07-10T10:09:58.114190", + "updated_at": "2026-07-10T10:09:58.114190", + "url": "/v1/games/arkane-anniversary-collection" +} diff --git a/site/public/v1/games/arma-2-army-of-the-czech-republic/index.json b/site/public/v1/games/arma-2-army-of-the-czech-republic/index.json new file mode 100644 index 000000000000..ee6e208e3b18 --- /dev/null +++ b/site/public/v1/games/arma-2-army-of-the-czech-republic/index.json @@ -0,0 +1,33 @@ +{ + "id": 9641, + "slug": "arma-2-army-of-the-czech-republic", + "name": "ArmA 2: Army of the Czech Republic", + "release_date": "2012-07-30", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter" + ], + "stores": [], + "developers": [ + "Bohemia Interactive" + ], + "publishers": [ + "Bohemia Interactive" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10855881" + ], + "created_at": "2026-07-10T10:09:58.125126", + "updated_at": "2026-07-10T10:09:58.125126", + "url": "/v1/games/arma-2-army-of-the-czech-republic" +} diff --git a/site/public/v1/games/arma-2-british-armed-forces/index.json b/site/public/v1/games/arma-2-british-armed-forces/index.json new file mode 100644 index 000000000000..c05e46454b1b --- /dev/null +++ b/site/public/v1/games/arma-2-british-armed-forces/index.json @@ -0,0 +1,31 @@ +{ + "id": 9642, + "slug": "arma-2-british-armed-forces", + "name": "ArmA 2: British Armed Forces", + "release_date": "2010-08-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter" + ], + "stores": [], + "developers": [ + "Bohemia Interactive" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10855886" + ], + "created_at": "2026-07-10T10:09:58.125126", + "updated_at": "2026-07-10T10:09:58.125126", + "url": "/v1/games/arma-2-british-armed-forces" +} diff --git a/site/public/v1/games/arma-2-operation-arrowhead/index.json b/site/public/v1/games/arma-2-operation-arrowhead/index.json new file mode 100644 index 000000000000..973bf54ffbd4 --- /dev/null +++ b/site/public/v1/games/arma-2-operation-arrowhead/index.json @@ -0,0 +1,34 @@ +{ + "id": 9643, + "slug": "arma-2-operation-arrowhead", + "name": "ARMA 2: Operation Arrowhead", + "release_date": "2010-06-29", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "third-person shooter" + ], + "stores": [], + "developers": [ + "Bohemia Interactive" + ], + "publishers": [ + "505 Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3282443" + ], + "created_at": "2026-07-10T10:09:58.125126", + "updated_at": "2026-07-10T10:09:58.125126", + "url": "/v1/games/arma-2-operation-arrowhead" +} diff --git a/site/public/v1/games/arma-2-private-military-company/index.json b/site/public/v1/games/arma-2-private-military-company/index.json new file mode 100644 index 000000000000..201483222a08 --- /dev/null +++ b/site/public/v1/games/arma-2-private-military-company/index.json @@ -0,0 +1,31 @@ +{ + "id": 9644, + "slug": "arma-2-private-military-company", + "name": "ArmA 2: Private Military Company", + "release_date": "2010-11-30", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter" + ], + "stores": [], + "developers": [ + "Bohemia Interactive" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10855890" + ], + "created_at": "2026-07-10T10:09:58.125126", + "updated_at": "2026-07-10T10:09:58.125126", + "url": "/v1/games/arma-2-private-military-company" +} diff --git a/site/public/v1/games/arma-3-apex/index.json b/site/public/v1/games/arma-3-apex/index.json new file mode 100644 index 000000000000..69a7b379afab --- /dev/null +++ b/site/public/v1/games/arma-3-apex/index.json @@ -0,0 +1,32 @@ +{ + "id": 9646, + "slug": "arma-3-apex", + "name": "ArmA 3: Apex", + "release_date": "2016-07-11", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Bohemia Interactive" + ], + "publishers": [ + "Bohemia Interactive" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q26161491" + ], + "created_at": "2026-07-10T10:09:58.126176", + "updated_at": "2026-07-10T10:09:58.126176", + "url": "/v1/games/arma-3-apex" +} diff --git a/site/public/v1/games/arma-3-contact/index.json b/site/public/v1/games/arma-3-contact/index.json new file mode 100644 index 000000000000..e617c298854a --- /dev/null +++ b/site/public/v1/games/arma-3-contact/index.json @@ -0,0 +1,31 @@ +{ + "id": 9647, + "slug": "arma-3-contact", + "name": "Arma 3: Contact", + "release_date": "2019-07-25", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Bohemia Interactive" + ], + "publishers": [ + "Bohemia Interactive" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q66456877" + ], + "created_at": "2026-07-10T10:09:58.126176", + "updated_at": "2026-07-10T10:09:58.126176", + "url": "/v1/games/arma-3-contact" +} diff --git a/site/public/v1/games/arma-3-creator-dlc-global-mobilization-cold-war-germany/index.json b/site/public/v1/games/arma-3-creator-dlc-global-mobilization-cold-war-germany/index.json new file mode 100644 index 000000000000..4d18d5cb3067 --- /dev/null +++ b/site/public/v1/games/arma-3-creator-dlc-global-mobilization-cold-war-germany/index.json @@ -0,0 +1,25 @@ +{ + "id": 9648, + "slug": "arma-3-creator-dlc-global-mobilization-cold-war-germany", + "name": "Arma 3 Creator DLC: Global Mobilization - Cold War Germany", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113444291" + ], + "created_at": "2026-07-10T10:09:58.126176", + "updated_at": "2026-07-10T10:09:58.126176", + "url": "/v1/games/arma-3-creator-dlc-global-mobilization-cold-war-germany" +} diff --git a/site/public/v1/games/arma-3-helicopters/index.json b/site/public/v1/games/arma-3-helicopters/index.json new file mode 100644 index 000000000000..25343a560d8e --- /dev/null +++ b/site/public/v1/games/arma-3-helicopters/index.json @@ -0,0 +1,32 @@ +{ + "id": 9649, + "slug": "arma-3-helicopters", + "name": "Arma 3 Helicopters", + "release_date": "2014-11-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Bohemia Interactive" + ], + "publishers": [ + "Bohemia Interactive" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22683054" + ], + "created_at": "2026-07-10T10:09:58.126176", + "updated_at": "2026-07-10T10:09:58.126176", + "url": "/v1/games/arma-3-helicopters" +} diff --git a/site/public/v1/games/arma-3-jets/index.json b/site/public/v1/games/arma-3-jets/index.json new file mode 100644 index 000000000000..e81b07bd72f2 --- /dev/null +++ b/site/public/v1/games/arma-3-jets/index.json @@ -0,0 +1,31 @@ +{ + "id": 9650, + "slug": "arma-3-jets", + "name": "Arma 3 Jets", + "release_date": "2017-05-16", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Bohemia Interactive" + ], + "publishers": [ + "Bohemia Interactive" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113282723" + ], + "created_at": "2026-07-10T10:09:58.127182", + "updated_at": "2026-07-10T10:09:58.127182", + "url": "/v1/games/arma-3-jets" +} diff --git a/site/public/v1/games/arma-3-karts/index.json b/site/public/v1/games/arma-3-karts/index.json new file mode 100644 index 000000000000..57089f6e12e1 --- /dev/null +++ b/site/public/v1/games/arma-3-karts/index.json @@ -0,0 +1,32 @@ +{ + "id": 9651, + "slug": "arma-3-karts", + "name": "Arma 3: Karts", + "release_date": "2014-05-29", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Bohemia Interactive" + ], + "publishers": [ + "Bohemia Interactive" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22683057" + ], + "created_at": "2026-07-10T10:09:58.127182", + "updated_at": "2026-07-10T10:09:58.127182", + "url": "/v1/games/arma-3-karts" +} diff --git a/site/public/v1/games/arma-3-laws-of-war/index.json b/site/public/v1/games/arma-3-laws-of-war/index.json new file mode 100644 index 000000000000..b7aac8c7bdd8 --- /dev/null +++ b/site/public/v1/games/arma-3-laws-of-war/index.json @@ -0,0 +1,31 @@ +{ + "id": 9652, + "slug": "arma-3-laws-of-war", + "name": "Arma 3 Laws of War", + "release_date": "2017-09-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Bohemia Interactive" + ], + "publishers": [ + "Bohemia Interactive" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113282733" + ], + "created_at": "2026-07-10T10:09:58.127182", + "updated_at": "2026-07-10T10:09:58.127182", + "url": "/v1/games/arma-3-laws-of-war" +} diff --git a/site/public/v1/games/arma-3-malden/index.json b/site/public/v1/games/arma-3-malden/index.json new file mode 100644 index 000000000000..d167786ac497 --- /dev/null +++ b/site/public/v1/games/arma-3-malden/index.json @@ -0,0 +1,31 @@ +{ + "id": 9653, + "slug": "arma-3-malden", + "name": "Arma 3 Malden", + "release_date": "2017-06-22", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Bohemia Interactive" + ], + "publishers": [ + "Bohemia Interactive" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113282743" + ], + "created_at": "2026-07-10T10:09:58.127182", + "updated_at": "2026-07-10T10:09:58.127182", + "url": "/v1/games/arma-3-malden" +} diff --git a/site/public/v1/games/arma-3-marksmen/index.json b/site/public/v1/games/arma-3-marksmen/index.json new file mode 100644 index 000000000000..6bf1cff9552d --- /dev/null +++ b/site/public/v1/games/arma-3-marksmen/index.json @@ -0,0 +1,32 @@ +{ + "id": 9654, + "slug": "arma-3-marksmen", + "name": "Arma 3 Marksmen", + "release_date": "2015-04-08", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Bohemia Interactive" + ], + "publishers": [ + "Bohemia Interactive" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22683059" + ], + "created_at": "2026-07-10T10:09:58.127182", + "updated_at": "2026-07-10T10:09:58.127182", + "url": "/v1/games/arma-3-marksmen" +} diff --git a/site/public/v1/games/arma-3-tac-ops-mission-pack/index.json b/site/public/v1/games/arma-3-tac-ops-mission-pack/index.json new file mode 100644 index 000000000000..3f214d18e7d6 --- /dev/null +++ b/site/public/v1/games/arma-3-tac-ops-mission-pack/index.json @@ -0,0 +1,31 @@ +{ + "id": 9655, + "slug": "arma-3-tac-ops-mission-pack", + "name": "Arma 3 Tac-Ops Mission Pack", + "release_date": "2017-11-30", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Bohemia Interactive" + ], + "publishers": [ + "Bohemia Interactive" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113282754" + ], + "created_at": "2026-07-10T10:09:58.127182", + "updated_at": "2026-07-10T10:09:58.127182", + "url": "/v1/games/arma-3-tac-ops-mission-pack" +} diff --git a/site/public/v1/games/arma-3-tanks/index.json b/site/public/v1/games/arma-3-tanks/index.json new file mode 100644 index 000000000000..ee944800ebce --- /dev/null +++ b/site/public/v1/games/arma-3-tanks/index.json @@ -0,0 +1,31 @@ +{ + "id": 9656, + "slug": "arma-3-tanks", + "name": "Arma 3 Tanks", + "release_date": "2018-04-11", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Bohemia Interactive" + ], + "publishers": [ + "Bohemia Interactive" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113282760" + ], + "created_at": "2026-07-10T10:09:58.128213", + "updated_at": "2026-07-10T10:09:58.128213", + "url": "/v1/games/arma-3-tanks" +} diff --git a/site/public/v1/games/arma-3-zeus/index.json b/site/public/v1/games/arma-3-zeus/index.json new file mode 100644 index 000000000000..af73540374ae --- /dev/null +++ b/site/public/v1/games/arma-3-zeus/index.json @@ -0,0 +1,31 @@ +{ + "id": 9658, + "slug": "arma-3-zeus", + "name": "Arma 3 Zeus", + "release_date": "2014-04-10", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Bohemia Interactive" + ], + "publishers": [ + "Bohemia Interactive" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113282768" + ], + "created_at": "2026-07-10T10:09:58.128213", + "updated_at": "2026-07-10T10:09:58.128213", + "url": "/v1/games/arma-3-zeus" +} diff --git a/site/public/v1/games/arma-armed-assault-gold-edition/index.json b/site/public/v1/games/arma-armed-assault-gold-edition/index.json new file mode 100644 index 000000000000..88dcb33ebd55 --- /dev/null +++ b/site/public/v1/games/arma-armed-assault-gold-edition/index.json @@ -0,0 +1,27 @@ +{ + "id": 9661, + "slug": "arma-armed-assault-gold-edition", + "name": "ArmA: Armed Assault - Gold Edition", + "release_date": "2011-07-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125998263" + ], + "created_at": "2026-07-10T10:09:58.129121", + "updated_at": "2026-07-10T10:09:58.129121", + "url": "/v1/games/arma-armed-assault-gold-edition" +} diff --git a/site/public/v1/games/arma-queen-s-gambit/index.json b/site/public/v1/games/arma-queen-s-gambit/index.json new file mode 100644 index 000000000000..468098cbbeb8 --- /dev/null +++ b/site/public/v1/games/arma-queen-s-gambit/index.json @@ -0,0 +1,35 @@ +{ + "id": 9664, + "slug": "arma-queen-s-gambit", + "name": "ARMA: Queen's Gambit", + "release_date": "2007-09-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "third-person shooter", + "tactical shooter" + ], + "stores": [], + "developers": [ + "Bohemia Interactive" + ], + "publishers": [ + "505 Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16267561" + ], + "created_at": "2026-07-10T10:09:58.130119", + "updated_at": "2026-07-10T10:09:58.130119", + "url": "/v1/games/arma-queen-s-gambit" +} diff --git a/site/public/v1/games/around-every-corner/index.json b/site/public/v1/games/around-every-corner/index.json new file mode 100644 index 000000000000..e93747bc05e2 --- /dev/null +++ b/site/public/v1/games/around-every-corner/index.json @@ -0,0 +1,27 @@ +{ + "id": 9880, + "slug": "around-every-corner", + "name": "Around Every Corner", + "release_date": "2012-11-08", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 4" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16746447" + ], + "created_at": "2026-07-10T10:09:58.173119", + "updated_at": "2026-07-10T10:09:58.173119", + "url": "/v1/games/around-every-corner" +} diff --git a/site/public/v1/games/arsenal-q116143185/index.json b/site/public/v1/games/arsenal-q116143185/index.json new file mode 100644 index 000000000000..8f758a403f5b --- /dev/null +++ b/site/public/v1/games/arsenal-q116143185/index.json @@ -0,0 +1,31 @@ +{ + "id": 9942, + "slug": "arsenal-q116143185", + "name": "Arsenal", + "release_date": "2015-08-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter" + ], + "stores": [], + "developers": [ + "ROLVe Community" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116143185" + ], + "created_at": "2026-07-10T10:09:58.186123", + "updated_at": "2026-07-10T10:09:58.186123", + "url": "/v1/games/arsenal-q116143185" +} diff --git a/site/public/v1/games/art-and-video-pack/index.json b/site/public/v1/games/art-and-video-pack/index.json new file mode 100644 index 000000000000..ba204a8ede17 --- /dev/null +++ b/site/public/v1/games/art-and-video-pack/index.json @@ -0,0 +1,27 @@ +{ + "id": 9961, + "slug": "art-and-video-pack", + "name": "Art and Video pack", + "release_date": "2019-06-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q77983907" + ], + "created_at": "2026-07-10T10:09:58.190123", + "updated_at": "2026-07-10T10:09:58.190123", + "url": "/v1/games/art-and-video-pack" +} diff --git a/site/public/v1/games/art-of-fighting-anthology/index.json b/site/public/v1/games/art-of-fighting-anthology/index.json new file mode 100644 index 000000000000..e06537a2827e --- /dev/null +++ b/site/public/v1/games/art-of-fighting-anthology/index.json @@ -0,0 +1,27 @@ +{ + "id": 9991, + "slug": "art-of-fighting-anthology", + "name": "Art of Fighting Anthology", + "release_date": "2007-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "fighting game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2864703" + ], + "created_at": "2026-07-10T10:09:58.216154", + "updated_at": "2026-07-10T10:09:58.216154", + "url": "/v1/games/art-of-fighting-anthology" +} diff --git a/site/public/v1/games/artigo/index.json b/site/public/v1/games/artigo/index.json new file mode 100644 index 000000000000..dc2584d9de21 --- /dev/null +++ b/site/public/v1/games/artigo/index.json @@ -0,0 +1,27 @@ +{ + "id": 10110, + "slug": "artigo", + "name": "ARTigo", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "human-based computation game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106104570" + ], + "created_at": "2026-07-10T10:09:58.240917", + "updated_at": "2026-07-10T10:09:58.240917", + "url": "/v1/games/artigo" +} diff --git a/site/public/v1/games/arx-fatalis-demo/index.json b/site/public/v1/games/arx-fatalis-demo/index.json new file mode 100644 index 000000000000..e989c312ccb0 --- /dev/null +++ b/site/public/v1/games/arx-fatalis-demo/index.json @@ -0,0 +1,35 @@ +{ + "id": 10151, + "slug": "arx-fatalis-demo", + "name": "Arx Fatalis Demo", + "release_date": "2007-04-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "action role-playing game", + "dark fantasy video game" + ], + "stores": [], + "developers": [ + "Arkane Studios" + ], + "publishers": [ + "Arkane Studios" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122705468" + ], + "created_at": "2026-07-10T10:09:58.249943", + "updated_at": "2026-07-10T10:09:58.249943", + "url": "/v1/games/arx-fatalis-demo" +} diff --git a/site/public/v1/games/aselia-the-eternal/index.json b/site/public/v1/games/aselia-the-eternal/index.json new file mode 100644 index 000000000000..9021060b5ae0 --- /dev/null +++ b/site/public/v1/games/aselia-the-eternal/index.json @@ -0,0 +1,25 @@ +{ + "id": 10269, + "slug": "aselia-the-eternal", + "name": "Aselia the Eternal", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11550381" + ], + "created_at": "2026-07-10T10:09:58.275085", + "updated_at": "2026-07-10T10:09:58.275085", + "url": "/v1/games/aselia-the-eternal" +} diff --git a/site/public/v1/games/asphalt-8-airborne/index.json b/site/public/v1/games/asphalt-8-airborne/index.json new file mode 100644 index 000000000000..67522fff40ed --- /dev/null +++ b/site/public/v1/games/asphalt-8-airborne/index.json @@ -0,0 +1,36 @@ +{ + "id": 10433, + "slug": "asphalt-8-airborne", + "name": "Asphalt 8: Airborne+", + "release_date": "2021-08-27", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "iPadOS", + "tvOS", + "iOS", + "macOS" + ], + "genres": [ + "racing video game" + ], + "stores": [], + "developers": [ + "Gameloft" + ], + "publishers": [ + "Gameloft" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107677003" + ], + "created_at": "2026-07-10T10:09:58.309616", + "updated_at": "2026-07-10T10:09:58.309616", + "url": "/v1/games/asphalt-8-airborne" +} diff --git a/site/public/v1/games/assassin-s-creed-1-2-welcome-pack/index.json b/site/public/v1/games/assassin-s-creed-1-2-welcome-pack/index.json new file mode 100644 index 000000000000..3275ba7262f5 --- /dev/null +++ b/site/public/v1/games/assassin-s-creed-1-2-welcome-pack/index.json @@ -0,0 +1,25 @@ +{ + "id": 10458, + "slug": "assassin-s-creed-1-2-welcome-pack", + "name": "Assassin's Creed 1+2 Welcome Pack", + "release_date": "2012-07-19", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q88321338" + ], + "created_at": "2026-07-10T10:09:58.314640", + "updated_at": "2026-07-10T10:09:58.314640", + "url": "/v1/games/assassin-s-creed-1-2-welcome-pack" +} diff --git a/site/public/v1/games/assassin-s-creed-chronicles-trilogy/index.json b/site/public/v1/games/assassin-s-creed-chronicles-trilogy/index.json new file mode 100644 index 000000000000..1af6b37cb921 --- /dev/null +++ b/site/public/v1/games/assassin-s-creed-chronicles-trilogy/index.json @@ -0,0 +1,25 @@ +{ + "id": 10465, + "slug": "assassin-s-creed-chronicles-trilogy", + "name": "Assassin's Creed Chronicles: Trilogy", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q66203689" + ], + "created_at": "2026-07-10T10:09:58.344019", + "updated_at": "2026-07-10T10:09:58.344019", + "url": "/v1/games/assassin-s-creed-chronicles-trilogy" +} diff --git a/site/public/v1/games/assassin-s-creed-connor-saga/index.json b/site/public/v1/games/assassin-s-creed-connor-saga/index.json new file mode 100644 index 000000000000..d09157cc8b41 --- /dev/null +++ b/site/public/v1/games/assassin-s-creed-connor-saga/index.json @@ -0,0 +1,25 @@ +{ + "id": 10467, + "slug": "assassin-s-creed-connor-saga", + "name": "Assassin's Creed Connor Saga", + "release_date": "2015-05-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q88320259" + ], + "created_at": "2026-07-10T10:09:58.356029", + "updated_at": "2026-07-10T10:09:58.356029", + "url": "/v1/games/assassin-s-creed-connor-saga" +} diff --git a/site/public/v1/games/assassin-s-creed-iii-the-tyranny-of-king-washington/index.json b/site/public/v1/games/assassin-s-creed-iii-the-tyranny-of-king-washington/index.json new file mode 100644 index 000000000000..ab62ebb22194 --- /dev/null +++ b/site/public/v1/games/assassin-s-creed-iii-the-tyranny-of-king-washington/index.json @@ -0,0 +1,30 @@ +{ + "id": 10474, + "slug": "assassin-s-creed-iii-the-tyranny-of-king-washington", + "name": "Assassin's Creed III: The Tyranny of King Washington", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 4", + "Wii U", + "PlayStation 3", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111234859" + ], + "created_at": "2026-07-10T10:09:58.372124", + "updated_at": "2026-07-10T10:09:58.372124", + "url": "/v1/games/assassin-s-creed-iii-the-tyranny-of-king-washington" +} diff --git a/site/public/v1/games/assassin-s-creed-odyssey-legacy-of-the-first-blade/index.json b/site/public/v1/games/assassin-s-creed-odyssey-legacy-of-the-first-blade/index.json new file mode 100644 index 000000000000..fe7b21af4a67 --- /dev/null +++ b/site/public/v1/games/assassin-s-creed-odyssey-legacy-of-the-first-blade/index.json @@ -0,0 +1,27 @@ +{ + "id": 10481, + "slug": "assassin-s-creed-odyssey-legacy-of-the-first-blade", + "name": "Assassin's Creed Odyssey – Legacy of the First Blade", + "release_date": "2018-12-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106093174" + ], + "created_at": "2026-07-10T10:09:58.378373", + "updated_at": "2026-07-10T10:09:58.378373", + "url": "/v1/games/assassin-s-creed-odyssey-legacy-of-the-first-blade" +} diff --git a/site/public/v1/games/assassin-s-creed-shadows-claws-of-awaji/index.json b/site/public/v1/games/assassin-s-creed-shadows-claws-of-awaji/index.json new file mode 100644 index 000000000000..528c83ac59da --- /dev/null +++ b/site/public/v1/games/assassin-s-creed-shadows-claws-of-awaji/index.json @@ -0,0 +1,28 @@ +{ + "id": 10489, + "slug": "assassin-s-creed-shadows-claws-of-awaji", + "name": "Assassin's Creed Shadows: Claws of Awaji", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 5", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136817710" + ], + "created_at": "2026-07-10T10:09:58.383350", + "updated_at": "2026-07-10T10:09:58.383350", + "url": "/v1/games/assassin-s-creed-shadows-claws-of-awaji" +} diff --git a/site/public/v1/games/assassin-s-creed-syndicate-gold-edition/index.json b/site/public/v1/games/assassin-s-creed-syndicate-gold-edition/index.json new file mode 100644 index 000000000000..57871114cba8 --- /dev/null +++ b/site/public/v1/games/assassin-s-creed-syndicate-gold-edition/index.json @@ -0,0 +1,25 @@ +{ + "id": 10490, + "slug": "assassin-s-creed-syndicate-gold-edition", + "name": "Assassin's Creed Syndicate Gold Edition", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q92203842" + ], + "created_at": "2026-07-10T10:09:58.383350", + "updated_at": "2026-07-10T10:09:58.383350", + "url": "/v1/games/assassin-s-creed-syndicate-gold-edition" +} diff --git a/site/public/v1/games/assassin-s-creed-syndicate-jack-the-ripper/index.json b/site/public/v1/games/assassin-s-creed-syndicate-jack-the-ripper/index.json new file mode 100644 index 000000000000..c4d03d82db3b --- /dev/null +++ b/site/public/v1/games/assassin-s-creed-syndicate-jack-the-ripper/index.json @@ -0,0 +1,27 @@ +{ + "id": 10491, + "slug": "assassin-s-creed-syndicate-jack-the-ripper", + "name": "Assassin's Creed Syndicate: Jack the Ripper", + "release_date": "2015-12-22", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108857447" + ], + "created_at": "2026-07-10T10:09:58.383350", + "updated_at": "2026-07-10T10:09:58.383350", + "url": "/v1/games/assassin-s-creed-syndicate-jack-the-ripper" +} diff --git a/site/public/v1/games/assassin-s-creed-the-rebel-collection/index.json b/site/public/v1/games/assassin-s-creed-the-rebel-collection/index.json new file mode 100644 index 000000000000..0593dac5a67a --- /dev/null +++ b/site/public/v1/games/assassin-s-creed-the-rebel-collection/index.json @@ -0,0 +1,25 @@ +{ + "id": 10494, + "slug": "assassin-s-creed-the-rebel-collection", + "name": "Assassin's Creed: The Rebel Collection", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q99367119" + ], + "created_at": "2026-07-10T10:09:58.385317", + "updated_at": "2026-07-10T10:09:58.385317", + "url": "/v1/games/assassin-s-creed-the-rebel-collection" +} diff --git a/site/public/v1/games/assassin-s-creed-valhalla-complete-edition/index.json b/site/public/v1/games/assassin-s-creed-valhalla-complete-edition/index.json new file mode 100644 index 000000000000..f8ca6e793abd --- /dev/null +++ b/site/public/v1/games/assassin-s-creed-valhalla-complete-edition/index.json @@ -0,0 +1,29 @@ +{ + "id": 10496, + "slug": "assassin-s-creed-valhalla-complete-edition", + "name": "Assassin's Creed Valhalla Complete Edition", + "release_date": "2022-04-10", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S" + ], + "genres": [], + "stores": [], + "developers": [ + "Ubisoft Sofia" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111794287" + ], + "created_at": "2026-07-10T10:09:58.385317", + "updated_at": "2026-07-10T10:09:58.385317", + "url": "/v1/games/assassin-s-creed-valhalla-complete-edition" +} diff --git a/site/public/v1/games/assassin-s-creed-valhalla-dawn-of-ragnar-k/index.json b/site/public/v1/games/assassin-s-creed-valhalla-dawn-of-ragnar-k/index.json new file mode 100644 index 000000000000..cbf47368a228 --- /dev/null +++ b/site/public/v1/games/assassin-s-creed-valhalla-dawn-of-ragnar-k/index.json @@ -0,0 +1,29 @@ +{ + "id": 10497, + "slug": "assassin-s-creed-valhalla-dawn-of-ragnar-k", + "name": "Assassin's Creed Valhalla: Dawn of Ragnarök", + "release_date": "2022-04-10", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S" + ], + "genres": [], + "stores": [], + "developers": [ + "Ubisoft Sofia" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111794113" + ], + "created_at": "2026-07-10T10:09:58.385317", + "updated_at": "2026-07-10T10:09:58.385317", + "url": "/v1/games/assassin-s-creed-valhalla-dawn-of-ragnar-k" +} diff --git a/site/public/v1/games/assassin-s-creed-valhalla-ragnar-k-edition/index.json b/site/public/v1/games/assassin-s-creed-valhalla-ragnar-k-edition/index.json new file mode 100644 index 000000000000..9affd14d46dc --- /dev/null +++ b/site/public/v1/games/assassin-s-creed-valhalla-ragnar-k-edition/index.json @@ -0,0 +1,29 @@ +{ + "id": 10498, + "slug": "assassin-s-creed-valhalla-ragnar-k-edition", + "name": "Assassin's Creed Valhalla Ragnarök Edition", + "release_date": "2022-04-10", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S" + ], + "genres": [], + "stores": [], + "developers": [ + "Ubisoft Sofia" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111794105" + ], + "created_at": "2026-07-10T10:09:58.386397", + "updated_at": "2026-07-10T10:09:58.386397", + "url": "/v1/games/assassin-s-creed-valhalla-ragnar-k-edition" +} diff --git a/site/public/v1/games/assassin-s-creed-valhalla-the-siege-of-paris/index.json b/site/public/v1/games/assassin-s-creed-valhalla-the-siege-of-paris/index.json new file mode 100644 index 000000000000..40a77c4aeaf6 --- /dev/null +++ b/site/public/v1/games/assassin-s-creed-valhalla-the-siege-of-paris/index.json @@ -0,0 +1,27 @@ +{ + "id": 10499, + "slug": "assassin-s-creed-valhalla-the-siege-of-paris", + "name": "Assassin's Creed Valhalla: The Siege of Paris", + "release_date": "2021-08-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111794910" + ], + "created_at": "2026-07-10T10:09:58.386397", + "updated_at": "2026-07-10T10:09:58.386397", + "url": "/v1/games/assassin-s-creed-valhalla-the-siege-of-paris" +} diff --git a/site/public/v1/games/assassin-s-creed-valhalla-tombs-of-the-fallen-pack-2/index.json b/site/public/v1/games/assassin-s-creed-valhalla-tombs-of-the-fallen-pack-2/index.json new file mode 100644 index 000000000000..663f45613b90 --- /dev/null +++ b/site/public/v1/games/assassin-s-creed-valhalla-tombs-of-the-fallen-pack-2/index.json @@ -0,0 +1,28 @@ +{ + "id": 10500, + "slug": "assassin-s-creed-valhalla-tombs-of-the-fallen-pack-2", + "name": "Assassin's Creed Valhalla: Tombs of the Fallen Pack 2", + "release_date": "2022-09-27", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 5", + "PlayStation 4" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136511457" + ], + "created_at": "2026-07-10T10:09:58.386397", + "updated_at": "2026-07-10T10:09:58.386397", + "url": "/v1/games/assassin-s-creed-valhalla-tombs-of-the-fallen-pack-2" +} diff --git a/site/public/v1/games/assassin-s-creed-valhalla-wrath-of-the-druids/index.json b/site/public/v1/games/assassin-s-creed-valhalla-wrath-of-the-druids/index.json new file mode 100644 index 000000000000..24da7f5f7cd5 --- /dev/null +++ b/site/public/v1/games/assassin-s-creed-valhalla-wrath-of-the-druids/index.json @@ -0,0 +1,30 @@ +{ + "id": 10501, + "slug": "assassin-s-creed-valhalla-wrath-of-the-druids", + "name": "Assassin's Creed Valhalla: Wrath of the Druids", + "release_date": "2021-05-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 4", + "PlayStation 5", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110878548" + ], + "created_at": "2026-07-10T10:09:58.387394", + "updated_at": "2026-07-10T10:09:58.387394", + "url": "/v1/games/assassin-s-creed-valhalla-wrath-of-the-druids" +} diff --git a/site/public/v1/games/assault-gear/index.json b/site/public/v1/games/assault-gear/index.json new file mode 100644 index 000000000000..77ca3b47e187 --- /dev/null +++ b/site/public/v1/games/assault-gear/index.json @@ -0,0 +1,27 @@ +{ + "id": 10529, + "slug": "assault-gear", + "name": "Assault Gear", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Netmarble" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q55737478" + ], + "created_at": "2026-07-10T10:09:58.394390", + "updated_at": "2026-07-10T10:09:58.394390", + "url": "/v1/games/assault-gear" +} diff --git a/site/public/v1/games/assetto-corsa-porsche-pack-ii/index.json b/site/public/v1/games/assetto-corsa-porsche-pack-ii/index.json new file mode 100644 index 000000000000..904d349f328c --- /dev/null +++ b/site/public/v1/games/assetto-corsa-porsche-pack-ii/index.json @@ -0,0 +1,28 @@ +{ + "id": 10581, + "slug": "assetto-corsa-porsche-pack-ii", + "name": "Assetto Corsa: Porsche Pack II", + "release_date": "2016-11-22", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q86107105" + ], + "created_at": "2026-07-10T10:09:58.430245", + "updated_at": "2026-07-10T10:09:58.430245", + "url": "/v1/games/assetto-corsa-porsche-pack-ii" +} diff --git a/site/public/v1/games/asterigos-curse-of-the-stars-deluxe-edition/index.json b/site/public/v1/games/asterigos-curse-of-the-stars-deluxe-edition/index.json new file mode 100644 index 000000000000..2caefcac42bb --- /dev/null +++ b/site/public/v1/games/asterigos-curse-of-the-stars-deluxe-edition/index.json @@ -0,0 +1,29 @@ +{ + "id": 10623, + "slug": "asterigos-curse-of-the-stars-deluxe-edition", + "name": "Asterigos: Curse of the Stars Deluxe Edition", + "release_date": "2023-02-23", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S" + ], + "genres": [], + "stores": [], + "developers": [ + "Acme Gamestudio" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122336633" + ], + "created_at": "2026-07-10T10:09:58.460216", + "updated_at": "2026-07-10T10:09:58.460216", + "url": "/v1/games/asterigos-curse-of-the-stars-deluxe-edition" +} diff --git a/site/public/v1/games/astro-warrior-pit-pot/index.json b/site/public/v1/games/astro-warrior-pit-pot/index.json new file mode 100644 index 000000000000..4a5931b84170 --- /dev/null +++ b/site/public/v1/games/astro-warrior-pit-pot/index.json @@ -0,0 +1,25 @@ +{ + "id": 10906, + "slug": "astro-warrior-pit-pot", + "name": "Astro Warrior / Pit Pot", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q119038618" + ], + "created_at": "2026-07-10T10:09:58.536506", + "updated_at": "2026-07-10T10:09:58.536506", + "url": "/v1/games/astro-warrior-pit-pot" +} diff --git a/site/public/v1/games/astroneer-glitchwalkers/index.json b/site/public/v1/games/astroneer-glitchwalkers/index.json new file mode 100644 index 000000000000..9713a83e8ce1 --- /dev/null +++ b/site/public/v1/games/astroneer-glitchwalkers/index.json @@ -0,0 +1,25 @@ +{ + "id": 10975, + "slug": "astroneer-glitchwalkers", + "name": "Astroneer: Glitchwalkers", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140471299" + ], + "created_at": "2026-07-10T10:09:58.557580", + "updated_at": "2026-07-10T10:09:58.557580", + "url": "/v1/games/astroneer-glitchwalkers" +} diff --git a/site/public/v1/games/atari-anniversary-edition/index.json b/site/public/v1/games/atari-anniversary-edition/index.json new file mode 100644 index 000000000000..e1c06c49969f --- /dev/null +++ b/site/public/v1/games/atari-anniversary-edition/index.json @@ -0,0 +1,30 @@ +{ + "id": 11116, + "slug": "atari-anniversary-edition", + "name": "Atari Anniversary Edition", + "release_date": "2002-03-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Game Boy Advance", + "Microsoft Windows" + ], + "genres": [ + "arcade" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2868781" + ], + "created_at": "2026-07-10T10:09:58.595893", + "updated_at": "2026-07-10T10:09:58.595893", + "url": "/v1/games/atari-anniversary-edition" +} diff --git a/site/public/v1/games/atari-anthology/index.json b/site/public/v1/games/atari-anthology/index.json new file mode 100644 index 000000000000..9310699b1326 --- /dev/null +++ b/site/public/v1/games/atari-anthology/index.json @@ -0,0 +1,32 @@ +{ + "id": 11117, + "slug": "atari-anthology", + "name": "Atari Anthology", + "release_date": "2003-11-11", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation Portable", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Digital Eclipse" + ], + "publishers": [ + "Atari Interactive" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2868782" + ], + "created_at": "2026-07-10T10:09:58.595893", + "updated_at": "2026-07-10T10:09:58.595893", + "url": "/v1/games/atari-anthology" +} diff --git a/site/public/v1/games/atari-flashback-classics-vol-2/index.json b/site/public/v1/games/atari-flashback-classics-vol-2/index.json new file mode 100644 index 000000000000..5e3414eae2ea --- /dev/null +++ b/site/public/v1/games/atari-flashback-classics-vol-2/index.json @@ -0,0 +1,29 @@ +{ + "id": 11120, + "slug": "atari-flashback-classics-vol-2", + "name": "Atari Flashback Classics Vol.2", + "release_date": "2016-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 4" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Atari Interactive" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63114939" + ], + "created_at": "2026-07-10T10:09:58.596891", + "updated_at": "2026-07-10T10:09:58.596891", + "url": "/v1/games/atari-flashback-classics-vol-2" +} diff --git a/site/public/v1/games/atari-greatest-hits/index.json b/site/public/v1/games/atari-greatest-hits/index.json new file mode 100644 index 000000000000..e31791672928 --- /dev/null +++ b/site/public/v1/games/atari-greatest-hits/index.json @@ -0,0 +1,32 @@ +{ + "id": 11122, + "slug": "atari-greatest-hits", + "name": "Atari Greatest Hits", + "release_date": "2010-11-02", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Nintendo DS", + "iOS" + ], + "genres": [ + "arcade" + ], + "stores": [], + "developers": [], + "publishers": [ + "Atari" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4812833" + ], + "created_at": "2026-07-10T10:09:58.596891", + "updated_at": "2026-07-10T10:09:58.596891", + "url": "/v1/games/atari-greatest-hits" +} diff --git a/site/public/v1/games/atari-masterpieces-vol-i/index.json b/site/public/v1/games/atari-masterpieces-vol-i/index.json new file mode 100644 index 000000000000..5da4b9d2ea6f --- /dev/null +++ b/site/public/v1/games/atari-masterpieces-vol-i/index.json @@ -0,0 +1,29 @@ +{ + "id": 11125, + "slug": "atari-masterpieces-vol-i", + "name": "Atari Masterpieces Vol. I", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "N-Gage" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Atari" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q753660" + ], + "created_at": "2026-07-10T10:09:58.597891", + "updated_at": "2026-07-10T10:09:58.597891", + "url": "/v1/games/atari-masterpieces-vol-i" +} diff --git a/site/public/v1/games/atari-masterpieces-vol-ii/index.json b/site/public/v1/games/atari-masterpieces-vol-ii/index.json new file mode 100644 index 000000000000..205c379fa2ae --- /dev/null +++ b/site/public/v1/games/atari-masterpieces-vol-ii/index.json @@ -0,0 +1,27 @@ +{ + "id": 11126, + "slug": "atari-masterpieces-vol-ii", + "name": "Atari Masterpieces Vol. II", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "N-Gage" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q55984370" + ], + "created_at": "2026-07-10T10:09:58.597891", + "updated_at": "2026-07-10T10:09:58.597891", + "url": "/v1/games/atari-masterpieces-vol-ii" +} diff --git a/site/public/v1/games/atb-doom/index.json b/site/public/v1/games/atb-doom/index.json new file mode 100644 index 000000000000..8fca2c95a885 --- /dev/null +++ b/site/public/v1/games/atb-doom/index.json @@ -0,0 +1,25 @@ +{ + "id": 11133, + "slug": "atb-doom", + "name": "ATB Doom", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124473062" + ], + "created_at": "2026-07-10T10:09:58.599890", + "updated_at": "2026-07-10T10:09:58.599890", + "url": "/v1/games/atb-doom" +} diff --git a/site/public/v1/games/athena-sword/index.json b/site/public/v1/games/athena-sword/index.json new file mode 100644 index 000000000000..802ac2d663be --- /dev/null +++ b/site/public/v1/games/athena-sword/index.json @@ -0,0 +1,30 @@ +{ + "id": 11208, + "slug": "athena-sword", + "name": "Athena Sword", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "first-person shooter", + "action game", + "tactical shooter", + "shooter game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60677629" + ], + "created_at": "2026-07-10T10:09:58.618459", + "updated_at": "2026-07-10T10:09:58.618459", + "url": "/v1/games/athena-sword" +} diff --git a/site/public/v1/games/atomic-heart-annihilation-instinct/index.json b/site/public/v1/games/atomic-heart-annihilation-instinct/index.json new file mode 100644 index 000000000000..3fea4bf0b379 --- /dev/null +++ b/site/public/v1/games/atomic-heart-annihilation-instinct/index.json @@ -0,0 +1,35 @@ +{ + "id": 11318, + "slug": "atomic-heart-annihilation-instinct", + "name": "Atomic Heart: Annihilation Instinct", + "release_date": "2023-08-02", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 5", + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "action role-playing game" + ], + "stores": [], + "developers": [], + "publishers": [ + "Astrum Entertainment" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120019046" + ], + "created_at": "2026-07-10T10:09:58.646469", + "updated_at": "2026-07-10T10:09:58.646469", + "url": "/v1/games/atomic-heart-annihilation-instinct" +} diff --git a/site/public/v1/games/atomic-heart-enchantment-under-the-sea/index.json b/site/public/v1/games/atomic-heart-enchantment-under-the-sea/index.json new file mode 100644 index 000000000000..2045fddac632 --- /dev/null +++ b/site/public/v1/games/atomic-heart-enchantment-under-the-sea/index.json @@ -0,0 +1,33 @@ +{ + "id": 11319, + "slug": "atomic-heart-enchantment-under-the-sea", + "name": "Atomic Heart: Enchantment Under the Sea", + "release_date": "2025-01-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 4", + "PlayStation 5", + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "action role-playing game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123838101" + ], + "created_at": "2026-07-10T10:09:58.646469", + "updated_at": "2026-07-10T10:09:58.646469", + "url": "/v1/games/atomic-heart-enchantment-under-the-sea" +} diff --git a/site/public/v1/games/atomic-heart-trapped-in-limbo/index.json b/site/public/v1/games/atomic-heart-trapped-in-limbo/index.json new file mode 100644 index 000000000000..311246db99a3 --- /dev/null +++ b/site/public/v1/games/atomic-heart-trapped-in-limbo/index.json @@ -0,0 +1,35 @@ +{ + "id": 11320, + "slug": "atomic-heart-trapped-in-limbo", + "name": "Atomic Heart: Trapped in Limbo", + "release_date": "2024-02-06", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 5", + "Xbox Series X and Series S", + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "action role-playing game" + ], + "stores": [], + "developers": [], + "publishers": [ + "4Divinity" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122766455" + ], + "created_at": "2026-07-10T10:09:58.647475", + "updated_at": "2026-07-10T10:09:58.647475", + "url": "/v1/games/atomic-heart-trapped-in-limbo" +} diff --git a/site/public/v1/games/atv-quad-power-racing-3/index.json b/site/public/v1/games/atv-quad-power-racing-3/index.json new file mode 100644 index 000000000000..1c4b367d49c5 --- /dev/null +++ b/site/public/v1/games/atv-quad-power-racing-3/index.json @@ -0,0 +1,25 @@ +{ + "id": 11484, + "slug": "atv-quad-power-racing-3", + "name": "ATV: Quad Power Racing 3", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q55602977" + ], + "created_at": "2026-07-10T10:09:58.685398", + "updated_at": "2026-07-10T10:09:58.685398", + "url": "/v1/games/atv-quad-power-racing-3" +} diff --git a/site/public/v1/games/australian-release-of-chrono-trigger-for-nintendo-ds/index.json b/site/public/v1/games/australian-release-of-chrono-trigger-for-nintendo-ds/index.json new file mode 100644 index 000000000000..5f4c90e16e98 --- /dev/null +++ b/site/public/v1/games/australian-release-of-chrono-trigger-for-nintendo-ds/index.json @@ -0,0 +1,25 @@ +{ + "id": 11632, + "slug": "australian-release-of-chrono-trigger-for-nintendo-ds", + "name": "Australian Release of Chrono Trigger for Nintendo DS", + "release_date": "2009-02-03", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q15063322" + ], + "created_at": "2026-07-10T10:09:58.837079", + "updated_at": "2026-07-10T10:09:58.837079", + "url": "/v1/games/australian-release-of-chrono-trigger-for-nintendo-ds" +} diff --git a/site/public/v1/games/avalon-q4827545/index.json b/site/public/v1/games/avalon-q4827545/index.json new file mode 100644 index 000000000000..b79f3fc8cb72 --- /dev/null +++ b/site/public/v1/games/avalon-q4827545/index.json @@ -0,0 +1,25 @@ +{ + "id": 11823, + "slug": "avalon-q4827545", + "name": "Avalon", + "release_date": "1989-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4827545" + ], + "created_at": "2026-07-10T10:09:58.891261", + "updated_at": "2026-07-10T10:09:58.891261", + "url": "/v1/games/avalon-q4827545" +} diff --git a/site/public/v1/games/avatar-avenue-trial/index.json b/site/public/v1/games/avatar-avenue-trial/index.json new file mode 100644 index 000000000000..8fa71a9903aa --- /dev/null +++ b/site/public/v1/games/avatar-avenue-trial/index.json @@ -0,0 +1,27 @@ +{ + "id": 11844, + "slug": "avatar-avenue-trial", + "name": "Avatar Avenue (Trial)", + "release_date": "2009-12-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126068015" + ], + "created_at": "2026-07-10T10:09:58.895261", + "updated_at": "2026-07-10T10:09:58.895261", + "url": "/v1/games/avatar-avenue-trial" +} diff --git a/site/public/v1/games/avatar-connection-trial/index.json b/site/public/v1/games/avatar-connection-trial/index.json new file mode 100644 index 000000000000..8416d5046a93 --- /dev/null +++ b/site/public/v1/games/avatar-connection-trial/index.json @@ -0,0 +1,27 @@ +{ + "id": 11846, + "slug": "avatar-connection-trial", + "name": "Avatar Connection (Trial)", + "release_date": "2011-08-31", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "game show video game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126064768" + ], + "created_at": "2026-07-10T10:09:58.896260", + "updated_at": "2026-07-10T10:09:58.896260", + "url": "/v1/games/avatar-connection-trial" +} diff --git a/site/public/v1/games/avatar-laser-wars-2-trial/index.json b/site/public/v1/games/avatar-laser-wars-2-trial/index.json new file mode 100644 index 000000000000..8ae13d0dd15a --- /dev/null +++ b/site/public/v1/games/avatar-laser-wars-2-trial/index.json @@ -0,0 +1,27 @@ +{ + "id": 11851, + "slug": "avatar-laser-wars-2-trial", + "name": "Avatar Laser Wars 2 (Trial)", + "release_date": "2012-08-08", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "first-person shooter" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126067220" + ], + "created_at": "2026-07-10T10:09:58.897261", + "updated_at": "2026-07-10T10:09:58.897261", + "url": "/v1/games/avatar-laser-wars-2-trial" +} diff --git a/site/public/v1/games/avatar-laser-wars-trial/index.json b/site/public/v1/games/avatar-laser-wars-trial/index.json new file mode 100644 index 000000000000..5cf08a6d1a4b --- /dev/null +++ b/site/public/v1/games/avatar-laser-wars-trial/index.json @@ -0,0 +1,27 @@ +{ + "id": 11853, + "slug": "avatar-laser-wars-trial", + "name": "Avatar Laser Wars (Trial)", + "release_date": "2010-10-20", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "first-person shooter" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126066592" + ], + "created_at": "2026-07-10T10:09:58.898261", + "updated_at": "2026-07-10T10:09:58.898261", + "url": "/v1/games/avatar-laser-wars-trial" +} diff --git a/site/public/v1/games/avatar-warfare-trial/index.json b/site/public/v1/games/avatar-warfare-trial/index.json new file mode 100644 index 000000000000..9678737786a2 --- /dev/null +++ b/site/public/v1/games/avatar-warfare-trial/index.json @@ -0,0 +1,27 @@ +{ + "id": 11864, + "slug": "avatar-warfare-trial", + "name": "Avatar Warfare! (Trial)", + "release_date": "2013-06-19", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "first-person shooter" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126063785" + ], + "created_at": "2026-07-10T10:09:58.900261", + "updated_at": "2026-07-10T10:09:58.900261", + "url": "/v1/games/avatar-warfare-trial" +} diff --git a/site/public/v1/games/axe-rock/index.json b/site/public/v1/games/axe-rock/index.json new file mode 100644 index 000000000000..66752663e537 --- /dev/null +++ b/site/public/v1/games/axe-rock/index.json @@ -0,0 +1,25 @@ +{ + "id": 12067, + "slug": "axe-rock", + "name": "Axe Rock", + "release_date": "2013-04-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112582104" + ], + "created_at": "2026-07-10T10:09:58.941770", + "updated_at": "2026-07-10T10:09:58.941770", + "url": "/v1/games/axe-rock" +} diff --git a/site/public/v1/games/azure-striker-gunvolt-striker-pack/index.json b/site/public/v1/games/azure-striker-gunvolt-striker-pack/index.json new file mode 100644 index 000000000000..0beb25a65ede --- /dev/null +++ b/site/public/v1/games/azure-striker-gunvolt-striker-pack/index.json @@ -0,0 +1,28 @@ +{ + "id": 12254, + "slug": "azure-striker-gunvolt-striker-pack", + "name": "Azure Striker Gunvolt: Striker Pack", + "release_date": "2016-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 4", + "Nintendo 3DS" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q49664182" + ], + "created_at": "2026-07-10T10:09:59.047592", + "updated_at": "2026-07-10T10:09:59.047592", + "url": "/v1/games/azure-striker-gunvolt-striker-pack" +} diff --git a/site/public/v1/games/b-max/index.json b/site/public/v1/games/b-max/index.json new file mode 100644 index 000000000000..1465be04ba26 --- /dev/null +++ b/site/public/v1/games/b-max/index.json @@ -0,0 +1,25 @@ +{ + "id": 12313, + "slug": "b-max", + "name": "B-MAX", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11331193" + ], + "created_at": "2026-07-10T10:09:59.068847", + "updated_at": "2026-07-10T10:09:59.068847", + "url": "/v1/games/b-max" +} diff --git a/site/public/v1/games/baby-s-day-out/index.json b/site/public/v1/games/baby-s-day-out/index.json new file mode 100644 index 000000000000..e9037a4c75cf --- /dev/null +++ b/site/public/v1/games/baby-s-day-out/index.json @@ -0,0 +1,29 @@ +{ + "id": 12402, + "slug": "baby-s-day-out", + "name": "Baby's Day Out", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Sega Genesis" + ], + "genres": [ + "puzzle video game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17189786" + ], + "created_at": "2026-07-10T10:09:59.092397", + "updated_at": "2026-07-10T10:09:59.092397", + "url": "/v1/games/baby-s-day-out" +} diff --git a/site/public/v1/games/baby-shaker/index.json b/site/public/v1/games/baby-shaker/index.json new file mode 100644 index 000000000000..5bc2a239e2cd --- /dev/null +++ b/site/public/v1/games/baby-shaker/index.json @@ -0,0 +1,33 @@ +{ + "id": 12404, + "slug": "baby-shaker", + "name": "Baby Shaker", + "release_date": "2009-04-20", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "iOS" + ], + "genres": [ + "satirical video game" + ], + "stores": [], + "developers": [ + "Sikalosoft" + ], + "publishers": [ + "Sikalosoft" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131449384" + ], + "created_at": "2026-07-10T10:09:59.093398", + "updated_at": "2026-07-10T10:09:59.093398", + "url": "/v1/games/baby-shaker" +} diff --git a/site/public/v1/games/back-to-the-future-the-game-episode-4-double-visions/index.json b/site/public/v1/games/back-to-the-future-the-game-episode-4-double-visions/index.json new file mode 100644 index 000000000000..20f4b680fb84 --- /dev/null +++ b/site/public/v1/games/back-to-the-future-the-game-episode-4-double-visions/index.json @@ -0,0 +1,33 @@ +{ + "id": 12494, + "slug": "back-to-the-future-the-game-episode-4-double-visions", + "name": "Back to the Future: The Game - Episode 4: Double Visions", + "release_date": "2011-04-29", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "PlayStation 3", + "Microsoft Windows" + ], + "genres": [ + "adventure video game" + ], + "stores": [], + "developers": [ + "Telltale Games" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4034782" + ], + "created_at": "2026-07-10T10:09:59.135080", + "updated_at": "2026-07-10T10:09:59.135080", + "url": "/v1/games/back-to-the-future-the-game-episode-4-double-visions" +} diff --git a/site/public/v1/games/backgammon-q106753118/index.json b/site/public/v1/games/backgammon-q106753118/index.json new file mode 100644 index 000000000000..b819b989d09d --- /dev/null +++ b/site/public/v1/games/backgammon-q106753118/index.json @@ -0,0 +1,34 @@ +{ + "id": 12522, + "slug": "backgammon-q106753118", + "name": "Backgammon+", + "release_date": "2021-04-02", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "iPadOS", + "iOS" + ], + "genres": [ + "backgammon video game" + ], + "stores": [], + "developers": [ + "Adikus" + ], + "publishers": [ + "Adikus" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106753118" + ], + "created_at": "2026-07-10T10:09:59.162012", + "updated_at": "2026-07-10T10:09:59.163017", + "url": "/v1/games/backgammon-q106753118" +} diff --git a/site/public/v1/games/backpacker-3-americana/index.json b/site/public/v1/games/backpacker-3-americana/index.json new file mode 100644 index 000000000000..423b10548be2 --- /dev/null +++ b/site/public/v1/games/backpacker-3-americana/index.json @@ -0,0 +1,34 @@ +{ + "id": 12550, + "slug": "backpacker-3-americana", + "name": "Backpacker 3: Americana", + "release_date": "2004-10-29", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "educational entertainment", + "quiz video game" + ], + "stores": [], + "developers": [ + "Pan Vision" + ], + "publishers": [ + "PAN Vision Publishing" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q59591142" + ], + "created_at": "2026-07-10T10:09:59.181072", + "updated_at": "2026-07-10T10:09:59.181072", + "url": "/v1/games/backpacker-3-americana" +} diff --git a/site/public/v1/games/backpacker-3-mediterraneo/index.json b/site/public/v1/games/backpacker-3-mediterraneo/index.json new file mode 100644 index 000000000000..a72e705997f0 --- /dev/null +++ b/site/public/v1/games/backpacker-3-mediterraneo/index.json @@ -0,0 +1,33 @@ +{ + "id": 12551, + "slug": "backpacker-3-mediterraneo", + "name": "Backpacker 3: Mediterraneo", + "release_date": "2004-10-29", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "educational entertainment" + ], + "stores": [], + "developers": [ + "Pan Vision" + ], + "publishers": [ + "Pan Vision" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q59591141" + ], + "created_at": "2026-07-10T10:09:59.181072", + "updated_at": "2026-07-10T10:09:59.181072", + "url": "/v1/games/backpacker-3-mediterraneo" +} diff --git a/site/public/v1/games/backpacker-3-the-collection/index.json b/site/public/v1/games/backpacker-3-the-collection/index.json new file mode 100644 index 000000000000..8872a1a1df99 --- /dev/null +++ b/site/public/v1/games/backpacker-3-the-collection/index.json @@ -0,0 +1,33 @@ +{ + "id": 12552, + "slug": "backpacker-3-the-collection", + "name": "Backpacker 3: The Collection", + "release_date": "2006-01-16", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "educational entertainment" + ], + "stores": [], + "developers": [ + "Pan Vision" + ], + "publishers": [ + "Pan Vision" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q59636086" + ], + "created_at": "2026-07-10T10:09:59.182077", + "updated_at": "2026-07-10T10:09:59.182077", + "url": "/v1/games/backpacker-3-the-collection" +} diff --git a/site/public/v1/games/baddest-of-the-bands/index.json b/site/public/v1/games/baddest-of-the-bands/index.json new file mode 100644 index 000000000000..67112dd2bc67 --- /dev/null +++ b/site/public/v1/games/baddest-of-the-bands/index.json @@ -0,0 +1,35 @@ +{ + "id": 12829, + "slug": "baddest-of-the-bands", + "name": "Baddest of the Bands", + "release_date": "2008-10-27", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 3", + "Wii", + "Microsoft Windows" + ], + "genres": [ + "graphic adventure game" + ], + "stores": [], + "developers": [ + "Telltale Games" + ], + "publishers": [ + "Telltale Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135448930" + ], + "created_at": "2026-07-10T10:09:59.249587", + "updated_at": "2026-07-10T10:09:59.249587", + "url": "/v1/games/baddest-of-the-bands" +} diff --git a/site/public/v1/games/badland-q106800567/index.json b/site/public/v1/games/badland-q106800567/index.json new file mode 100644 index 000000000000..ea7dff4b2c95 --- /dev/null +++ b/site/public/v1/games/badland-q106800567/index.json @@ -0,0 +1,33 @@ +{ + "id": 12837, + "slug": "badland-q106800567", + "name": "Badland+", + "release_date": "2021-04-02", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "tvOS", + "iPadOS", + "iOS" + ], + "genres": [], + "stores": [], + "developers": [ + "Frogmind" + ], + "publishers": [ + "Frogmind" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106800567" + ], + "created_at": "2026-07-10T10:09:59.251587", + "updated_at": "2026-07-10T10:09:59.251587", + "url": "/v1/games/badland-q106800567" +} diff --git a/site/public/v1/games/baldi-s-basics-field-trip/index.json b/site/public/v1/games/baldi-s-basics-field-trip/index.json new file mode 100644 index 000000000000..e0f625ff6a6a --- /dev/null +++ b/site/public/v1/games/baldi-s-basics-field-trip/index.json @@ -0,0 +1,32 @@ +{ + "id": 13004, + "slug": "baldi-s-basics-field-trip", + "name": "Baldi's Basics - Field Trip", + "release_date": "2018-07-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Micah McGonigal" + ], + "publishers": [ + "Micah McGonigal" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q61338188" + ], + "created_at": "2026-07-10T10:09:59.285586", + "updated_at": "2026-07-10T10:09:59.285586", + "url": "/v1/games/baldi-s-basics-field-trip" +} diff --git a/site/public/v1/games/baldur-s-gate-enhanced-edition-siege-of-dragonspear/index.json b/site/public/v1/games/baldur-s-gate-enhanced-edition-siege-of-dragonspear/index.json new file mode 100644 index 000000000000..e2c2e0a24227 --- /dev/null +++ b/site/public/v1/games/baldur-s-gate-enhanced-edition-siege-of-dragonspear/index.json @@ -0,0 +1,38 @@ +{ + "id": 13022, + "slug": "baldur-s-gate-enhanced-edition-siege-of-dragonspear", + "name": "Baldur's Gate: Enhanced Edition - Siege of Dragonspear", + "release_date": "2016-03-31", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 4", + "Mac", + "iOS", + "macOS", + "Microsoft Windows" + ], + "genres": [ + "role-playing video game" + ], + "stores": [], + "developers": [ + "Beamdog" + ], + "publishers": [ + "Beamdog", + "Skybound Entertainment" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q20712140" + ], + "created_at": "2026-07-10T10:09:59.288591", + "updated_at": "2026-07-10T10:09:59.288591", + "url": "/v1/games/baldur-s-gate-enhanced-edition-siege-of-dragonspear" +} diff --git a/site/public/v1/games/baldur-s-gate-ii-the-collection/index.json b/site/public/v1/games/baldur-s-gate-ii-the-collection/index.json new file mode 100644 index 000000000000..8188af111859 --- /dev/null +++ b/site/public/v1/games/baldur-s-gate-ii-the-collection/index.json @@ -0,0 +1,25 @@ +{ + "id": 13026, + "slug": "baldur-s-gate-ii-the-collection", + "name": "Baldur's Gate II: The Collection", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q132133687" + ], + "created_at": "2026-07-10T10:09:59.289590", + "updated_at": "2026-07-10T10:09:59.289590", + "url": "/v1/games/baldur-s-gate-ii-the-collection" +} diff --git a/site/public/v1/games/baldur-s-gate-ii-throne-of-bhaal/index.json b/site/public/v1/games/baldur-s-gate-ii-throne-of-bhaal/index.json new file mode 100644 index 000000000000..14642ea0435f --- /dev/null +++ b/site/public/v1/games/baldur-s-gate-ii-throne-of-bhaal/index.json @@ -0,0 +1,35 @@ +{ + "id": 13027, + "slug": "baldur-s-gate-ii-throne-of-bhaal", + "name": "Baldur's Gate II: Throne of Bhaal", + "release_date": "2001-06-21", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Classic Mac OS", + "macOS", + "Microsoft Windows" + ], + "genres": [ + "role-playing video game" + ], + "stores": [], + "developers": [ + "BioWare" + ], + "publishers": [ + "Black Isle Studios" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2880740" + ], + "created_at": "2026-07-10T10:09:59.289590", + "updated_at": "2026-07-10T10:09:59.289590", + "url": "/v1/games/baldur-s-gate-ii-throne-of-bhaal" +} diff --git a/site/public/v1/games/baldur-s-gate-iii-the-black-hound/index.json b/site/public/v1/games/baldur-s-gate-iii-the-black-hound/index.json new file mode 100644 index 000000000000..92331ef6bceb --- /dev/null +++ b/site/public/v1/games/baldur-s-gate-iii-the-black-hound/index.json @@ -0,0 +1,34 @@ +{ + "id": 13028, + "slug": "baldur-s-gate-iii-the-black-hound", + "name": "Baldur's Gate III: The Black Hound", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "role-playing video game" + ], + "stores": [], + "developers": [ + "Black Isle Studios" + ], + "publishers": [ + "Interplay Entertainment" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4850488" + ], + "created_at": "2026-07-10T10:09:59.289590", + "updated_at": "2026-07-10T10:09:59.289590", + "url": "/v1/games/baldur-s-gate-iii-the-black-hound" +} diff --git a/site/public/v1/games/baldur-s-gate-tales-of-the-sword-coast/index.json b/site/public/v1/games/baldur-s-gate-tales-of-the-sword-coast/index.json new file mode 100644 index 000000000000..e58b779ae50e --- /dev/null +++ b/site/public/v1/games/baldur-s-gate-tales-of-the-sword-coast/index.json @@ -0,0 +1,34 @@ +{ + "id": 13029, + "slug": "baldur-s-gate-tales-of-the-sword-coast", + "name": "Baldur's Gate: Tales of the Sword Coast", + "release_date": "1999-04-30", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Classic Mac OS", + "Microsoft Windows" + ], + "genres": [ + "role-playing video game" + ], + "stores": [], + "developers": [ + "BioWare" + ], + "publishers": [ + "Black Isle Studios" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2617580" + ], + "created_at": "2026-07-10T10:09:59.289590", + "updated_at": "2026-07-10T10:09:59.289590", + "url": "/v1/games/baldur-s-gate-tales-of-the-sword-coast" +} diff --git a/site/public/v1/games/baldur-s-gate-the-original-saga/index.json b/site/public/v1/games/baldur-s-gate-the-original-saga/index.json new file mode 100644 index 000000000000..bce3da4e0461 --- /dev/null +++ b/site/public/v1/games/baldur-s-gate-the-original-saga/index.json @@ -0,0 +1,25 @@ +{ + "id": 13030, + "slug": "baldur-s-gate-the-original-saga", + "name": "Baldur's Gate: The Original Saga", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120836059" + ], + "created_at": "2026-07-10T10:09:59.290591", + "updated_at": "2026-07-10T10:09:59.290591", + "url": "/v1/games/baldur-s-gate-the-original-saga" +} diff --git a/site/public/v1/games/baredoom/index.json b/site/public/v1/games/baredoom/index.json new file mode 100644 index 000000000000..239b4b93213c --- /dev/null +++ b/site/public/v1/games/baredoom/index.json @@ -0,0 +1,25 @@ +{ + "id": 13596, + "slug": "baredoom", + "name": "bareDOOM", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124658478" + ], + "created_at": "2026-07-10T10:09:59.608967", + "updated_at": "2026-07-10T10:09:59.608967", + "url": "/v1/games/baredoom" +} diff --git a/site/public/v1/games/barkley-2/index.json b/site/public/v1/games/barkley-2/index.json new file mode 100644 index 000000000000..0adef645cc1e --- /dev/null +++ b/site/public/v1/games/barkley-2/index.json @@ -0,0 +1,29 @@ +{ + "id": 13627, + "slug": "barkley-2", + "name": "Barkley 2", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "action role-playing game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4861076" + ], + "created_at": "2026-07-10T10:09:59.617028", + "updated_at": "2026-07-10T10:09:59.617028", + "url": "/v1/games/barkley-2" +} diff --git a/site/public/v1/games/bassmaster-fishing-2022-2022-bassmaster-classic/index.json b/site/public/v1/games/bassmaster-fishing-2022-2022-bassmaster-classic/index.json new file mode 100644 index 000000000000..9f8fc66eb130 --- /dev/null +++ b/site/public/v1/games/bassmaster-fishing-2022-2022-bassmaster-classic/index.json @@ -0,0 +1,32 @@ +{ + "id": 13905, + "slug": "bassmaster-fishing-2022-2022-bassmaster-classic", + "name": "Bassmaster Fishing 2022: 2022 Bassmaster Classic", + "release_date": "2022-02-17", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111107341" + ], + "created_at": "2026-07-10T10:09:59.690121", + "updated_at": "2026-07-10T10:09:59.690121", + "url": "/v1/games/bassmaster-fishing-2022-2022-bassmaster-classic" +} diff --git a/site/public/v1/games/batman-arkham-trilogy/index.json b/site/public/v1/games/batman-arkham-trilogy/index.json new file mode 100644 index 000000000000..fe66fa2bfe2a --- /dev/null +++ b/site/public/v1/games/batman-arkham-trilogy/index.json @@ -0,0 +1,32 @@ +{ + "id": 13965, + "slug": "batman-arkham-trilogy", + "name": "Batman: Arkham Trilogy", + "release_date": "2023-11-03", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "action game" + ], + "stores": [], + "developers": [ + "Rocksteady Studios" + ], + "publishers": [ + "Nintendo", + "Warner Bros. Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q119833230" + ], + "created_at": "2026-07-10T10:09:59.737543", + "updated_at": "2026-07-10T10:09:59.737543", + "url": "/v1/games/batman-arkham-trilogy" +} diff --git a/site/public/v1/games/batman-death-in-the-family/index.json b/site/public/v1/games/batman-death-in-the-family/index.json new file mode 100644 index 000000000000..d5e9d4330b12 --- /dev/null +++ b/site/public/v1/games/batman-death-in-the-family/index.json @@ -0,0 +1,37 @@ +{ + "id": 13974, + "slug": "batman-death-in-the-family", + "name": "Batman: Death in the Family", + "release_date": "2020-10-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "crime film", + "thriller film", + "superhero film", + "interactive film", + "drama film", + "fantasy film", + "action film", + "horror film", + "war film", + "science fiction film", + "mystery film" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q98537283" + ], + "created_at": "2026-07-10T10:09:59.740536", + "updated_at": "2026-07-10T10:09:59.740536", + "url": "/v1/games/batman-death-in-the-family" +} diff --git a/site/public/v1/games/batman-return-to-arkham/index.json b/site/public/v1/games/batman-return-to-arkham/index.json new file mode 100644 index 000000000000..1515423f613b --- /dev/null +++ b/site/public/v1/games/batman-return-to-arkham/index.json @@ -0,0 +1,25 @@ +{ + "id": 13986, + "slug": "batman-return-to-arkham", + "name": "Batman: Return to Arkham", + "release_date": "2016-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28677198" + ], + "created_at": "2026-07-10T10:09:59.744565", + "updated_at": "2026-07-10T10:09:59.744565", + "url": "/v1/games/batman-return-to-arkham" +} diff --git a/site/public/v1/games/batman-the-telltale-series-episode-1-realm-of-shadows/index.json b/site/public/v1/games/batman-the-telltale-series-episode-1-realm-of-shadows/index.json new file mode 100644 index 000000000000..26fed901a31b --- /dev/null +++ b/site/public/v1/games/batman-the-telltale-series-episode-1-realm-of-shadows/index.json @@ -0,0 +1,37 @@ +{ + "id": 14003, + "slug": "batman-the-telltale-series-episode-1-realm-of-shadows", + "name": "Batman: The Telltale Series - Episode 1: Realm of Shadows", + "release_date": "2016-08-02", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 4", + "iOS", + "PlayStation 3", + "Microsoft Windows" + ], + "genres": [ + "graphic adventure game", + "episodic video game" + ], + "stores": [], + "developers": [ + "Telltale Games" + ], + "publishers": [ + "Telltale Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107136695" + ], + "created_at": "2026-07-10T10:09:59.748795", + "updated_at": "2026-07-10T10:09:59.748795", + "url": "/v1/games/batman-the-telltale-series-episode-1-realm-of-shadows" +} diff --git a/site/public/v1/games/batman-the-telltale-series-episode-2-children-of-arkham/index.json b/site/public/v1/games/batman-the-telltale-series-episode-2-children-of-arkham/index.json new file mode 100644 index 000000000000..c1ea2c56575e --- /dev/null +++ b/site/public/v1/games/batman-the-telltale-series-episode-2-children-of-arkham/index.json @@ -0,0 +1,37 @@ +{ + "id": 14004, + "slug": "batman-the-telltale-series-episode-2-children-of-arkham", + "name": "Batman: The Telltale Series - Episode 2: Children of Arkham", + "release_date": "2016-09-20", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 4", + "iOS", + "PlayStation 3", + "Microsoft Windows" + ], + "genres": [ + "graphic adventure game", + "episodic video game" + ], + "stores": [], + "developers": [ + "Telltale Games" + ], + "publishers": [ + "Telltale Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q66788935" + ], + "created_at": "2026-07-10T10:09:59.748795", + "updated_at": "2026-07-10T10:09:59.748795", + "url": "/v1/games/batman-the-telltale-series-episode-2-children-of-arkham" +} diff --git a/site/public/v1/games/batman-the-telltale-series-episode-3-new-world-order/index.json b/site/public/v1/games/batman-the-telltale-series-episode-3-new-world-order/index.json new file mode 100644 index 000000000000..aec4c8faa7b2 --- /dev/null +++ b/site/public/v1/games/batman-the-telltale-series-episode-3-new-world-order/index.json @@ -0,0 +1,37 @@ +{ + "id": 14005, + "slug": "batman-the-telltale-series-episode-3-new-world-order", + "name": "Batman: The Telltale Series - Episode 3: New World Order", + "release_date": "2016-10-25", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 4", + "iOS", + "PlayStation 3", + "Microsoft Windows" + ], + "genres": [ + "graphic adventure game", + "episodic video game" + ], + "stores": [], + "developers": [ + "Telltale Games" + ], + "publishers": [ + "Telltale Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107136849" + ], + "created_at": "2026-07-10T10:09:59.748795", + "updated_at": "2026-07-10T10:09:59.748795", + "url": "/v1/games/batman-the-telltale-series-episode-3-new-world-order" +} diff --git a/site/public/v1/games/batman-the-telltale-series-episode-4-guardian-of-gotham/index.json b/site/public/v1/games/batman-the-telltale-series-episode-4-guardian-of-gotham/index.json new file mode 100644 index 000000000000..3f824bec732d --- /dev/null +++ b/site/public/v1/games/batman-the-telltale-series-episode-4-guardian-of-gotham/index.json @@ -0,0 +1,41 @@ +{ + "id": 14006, + "slug": "batman-the-telltale-series-episode-4-guardian-of-gotham", + "name": "Batman: The Telltale Series - Episode 4: Guardian of Gotham", + "release_date": "2016-08-02", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 4", + "Mac", + "iOS", + "macOS", + "PlayStation 3", + "Microsoft Windows" + ], + "genres": [ + "graphic adventure game", + "episodic video game" + ], + "stores": [], + "developers": [ + "Telltale Games", + "lowland" + ], + "publishers": [ + "lowland", + "Telltale Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107136901" + ], + "created_at": "2026-07-10T10:09:59.748795", + "updated_at": "2026-07-10T10:09:59.748795", + "url": "/v1/games/batman-the-telltale-series-episode-4-guardian-of-gotham" +} diff --git a/site/public/v1/games/battle-field-creator/index.json b/site/public/v1/games/battle-field-creator/index.json new file mode 100644 index 000000000000..09c7a9340757 --- /dev/null +++ b/site/public/v1/games/battle-field-creator/index.json @@ -0,0 +1,31 @@ +{ + "id": 14154, + "slug": "battle-field-creator", + "name": "Battle Field Creator", + "release_date": "1994-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Commodore Amiga" + ], + "genres": [ + "turn-based strategy video game" + ], + "stores": [], + "developers": [], + "publishers": [ + "The Software Society" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123914646" + ], + "created_at": "2026-07-10T10:09:59.823076", + "updated_at": "2026-07-10T10:09:59.823076", + "url": "/v1/games/battle-field-creator" +} diff --git a/site/public/v1/games/battle-isle-2-titan-s-legacy/index.json b/site/public/v1/games/battle-isle-2-titan-s-legacy/index.json new file mode 100644 index 000000000000..721936fe21f0 --- /dev/null +++ b/site/public/v1/games/battle-isle-2-titan-s-legacy/index.json @@ -0,0 +1,25 @@ +{ + "id": 14227, + "slug": "battle-isle-2-titan-s-legacy", + "name": "Battle Isle 2: Titan's Legacy", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123909311" + ], + "created_at": "2026-07-10T10:09:59.844095", + "updated_at": "2026-07-10T10:09:59.844095", + "url": "/v1/games/battle-isle-2-titan-s-legacy" +} diff --git a/site/public/v1/games/battle-isle-93-the-moon-of-chromos/index.json b/site/public/v1/games/battle-isle-93-the-moon-of-chromos/index.json new file mode 100644 index 000000000000..b84509be5964 --- /dev/null +++ b/site/public/v1/games/battle-isle-93-the-moon-of-chromos/index.json @@ -0,0 +1,25 @@ +{ + "id": 14230, + "slug": "battle-isle-93-the-moon-of-chromos", + "name": "Battle Isle '93: The Moon of Chromos", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123910690" + ], + "created_at": "2026-07-10T10:09:59.845047", + "updated_at": "2026-07-10T10:09:59.845047", + "url": "/v1/games/battle-isle-93-the-moon-of-chromos" +} diff --git a/site/public/v1/games/battle-isle-platinum/index.json b/site/public/v1/games/battle-isle-platinum/index.json new file mode 100644 index 000000000000..63c94348941c --- /dev/null +++ b/site/public/v1/games/battle-isle-platinum/index.json @@ -0,0 +1,25 @@ +{ + "id": 14231, + "slug": "battle-isle-platinum", + "name": "Battle Isle Platinum", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123910477" + ], + "created_at": "2026-07-10T10:09:59.845047", + "updated_at": "2026-07-10T10:09:59.845047", + "url": "/v1/games/battle-isle-platinum" +} diff --git a/site/public/v1/games/battle-isle-scenario-disk-volume-one/index.json b/site/public/v1/games/battle-isle-scenario-disk-volume-one/index.json new file mode 100644 index 000000000000..59fe8ee128d4 --- /dev/null +++ b/site/public/v1/games/battle-isle-scenario-disk-volume-one/index.json @@ -0,0 +1,27 @@ +{ + "id": 14232, + "slug": "battle-isle-scenario-disk-volume-one", + "name": "Battle Isle: Scenario Disk Volume One", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [ + "Ubisoft Blue Byte" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123910681" + ], + "created_at": "2026-07-10T10:09:59.845047", + "updated_at": "2026-07-10T10:09:59.845047", + "url": "/v1/games/battle-isle-scenario-disk-volume-one" +} diff --git a/site/public/v1/games/battle-realms-winter-of-the-wolf/index.json b/site/public/v1/games/battle-realms-winter-of-the-wolf/index.json new file mode 100644 index 000000000000..5d3cd1bbcc9e --- /dev/null +++ b/site/public/v1/games/battle-realms-winter-of-the-wolf/index.json @@ -0,0 +1,31 @@ +{ + "id": 14344, + "slug": "battle-realms-winter-of-the-wolf", + "name": "Battle Realms: Winter of the Wolf", + "release_date": "2002-11-05", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "real-time strategy" + ], + "stores": [], + "developers": [ + "Liquid Entertainment" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4870098" + ], + "created_at": "2026-07-10T10:09:59.874510", + "updated_at": "2026-07-10T10:09:59.874510", + "url": "/v1/games/battle-realms-winter-of-the-wolf" +} diff --git a/site/public/v1/games/battle-survive-hentai-nudity-18/index.json b/site/public/v1/games/battle-survive-hentai-nudity-18/index.json new file mode 100644 index 000000000000..9048398e362d --- /dev/null +++ b/site/public/v1/games/battle-survive-hentai-nudity-18/index.json @@ -0,0 +1,36 @@ +{ + "id": 14405, + "slug": "battle-survive-hentai-nudity-18", + "name": "Battle Survive Hentai - Nudity (18+)", + "release_date": "2019-11-23", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "action game", + "third-person shooter", + "erotic video game", + "battle royale game" + ], + "stores": [], + "developers": [ + "CggtGroup" + ], + "publishers": [ + "CggtGroup" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q129787179" + ], + "created_at": "2026-07-10T10:09:59.890513", + "updated_at": "2026-07-10T10:09:59.890513", + "url": "/v1/games/battle-survive-hentai-nudity-18" +} diff --git a/site/public/v1/games/battlefield-1942-secret-weapons-of-wwii/index.json b/site/public/v1/games/battlefield-1942-secret-weapons-of-wwii/index.json new file mode 100644 index 000000000000..bb84849c29f9 --- /dev/null +++ b/site/public/v1/games/battlefield-1942-secret-weapons-of-wwii/index.json @@ -0,0 +1,36 @@ +{ + "id": 14483, + "slug": "battlefield-1942-secret-weapons-of-wwii", + "name": "Battlefield 1942: Secret Weapons of WWII", + "release_date": "2003-09-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Mac", + "macOS", + "Microsoft Windows" + ], + "genres": [ + "first-person shooter" + ], + "stores": [], + "developers": [ + "DICE" + ], + "publishers": [ + "Electronic Arts", + "Aspyr" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2891828" + ], + "created_at": "2026-07-10T10:09:59.909024", + "updated_at": "2026-07-10T10:09:59.909024", + "url": "/v1/games/battlefield-1942-secret-weapons-of-wwii" +} diff --git a/site/public/v1/games/battlefield-2-armored-fury/index.json b/site/public/v1/games/battlefield-2-armored-fury/index.json new file mode 100644 index 000000000000..447d86035b45 --- /dev/null +++ b/site/public/v1/games/battlefield-2-armored-fury/index.json @@ -0,0 +1,25 @@ +{ + "id": 14487, + "slug": "battlefield-2-armored-fury", + "name": "Battlefield 2: Armored Fury", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q9651859" + ], + "created_at": "2026-07-10T10:09:59.910024", + "updated_at": "2026-07-10T10:09:59.910024", + "url": "/v1/games/battlefield-2-armored-fury" +} diff --git a/site/public/v1/games/battlefield-2-euro-force/index.json b/site/public/v1/games/battlefield-2-euro-force/index.json new file mode 100644 index 000000000000..70431416f8c7 --- /dev/null +++ b/site/public/v1/games/battlefield-2-euro-force/index.json @@ -0,0 +1,29 @@ +{ + "id": 14488, + "slug": "battlefield-2-euro-force", + "name": "Battlefield 2: Euro Force", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17187195" + ], + "created_at": "2026-07-10T10:09:59.910024", + "updated_at": "2026-07-10T10:09:59.910024", + "url": "/v1/games/battlefield-2-euro-force" +} diff --git a/site/public/v1/games/battlefield-2-special-forces/index.json b/site/public/v1/games/battlefield-2-special-forces/index.json new file mode 100644 index 000000000000..7cf574085f0b --- /dev/null +++ b/site/public/v1/games/battlefield-2-special-forces/index.json @@ -0,0 +1,31 @@ +{ + "id": 14490, + "slug": "battlefield-2-special-forces", + "name": "Battlefield 2: Special Forces", + "release_date": "2005-11-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "first-person shooter" + ], + "stores": [], + "developers": [ + "DICE" + ], + "publishers": [ + "Electronic Arts" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2745646" + ], + "created_at": "2026-07-10T10:09:59.910024", + "updated_at": "2026-07-10T10:09:59.910024", + "url": "/v1/games/battlefield-2-special-forces" +} diff --git a/site/public/v1/games/battlefield-2142-northern-strike/index.json b/site/public/v1/games/battlefield-2142-northern-strike/index.json new file mode 100644 index 000000000000..711bfa6e4092 --- /dev/null +++ b/site/public/v1/games/battlefield-2142-northern-strike/index.json @@ -0,0 +1,31 @@ +{ + "id": 14492, + "slug": "battlefield-2142-northern-strike", + "name": "Battlefield 2142: Northern Strike", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "first-person shooter" + ], + "stores": [], + "developers": [ + "DICE" + ], + "publishers": [ + "Electronic Arts" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2891833" + ], + "created_at": "2026-07-10T10:09:59.911023", + "updated_at": "2026-07-10T10:09:59.911023", + "url": "/v1/games/battlefield-2142-northern-strike" +} diff --git a/site/public/v1/games/battlefield-3-armored-kill/index.json b/site/public/v1/games/battlefield-3-armored-kill/index.json new file mode 100644 index 000000000000..498c467fc0c3 --- /dev/null +++ b/site/public/v1/games/battlefield-3-armored-kill/index.json @@ -0,0 +1,32 @@ +{ + "id": 14495, + "slug": "battlefield-3-armored-kill", + "name": "Battlefield 3: Armored Kill", + "release_date": "2012-09-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 3", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "DICE" + ], + "publishers": [ + "Electronic Arts" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q66788958" + ], + "created_at": "2026-07-10T10:09:59.911023", + "updated_at": "2026-07-10T10:09:59.911023", + "url": "/v1/games/battlefield-3-armored-kill" +} diff --git a/site/public/v1/games/battlefield-3-back-to-karkand/index.json b/site/public/v1/games/battlefield-3-back-to-karkand/index.json new file mode 100644 index 000000000000..a349ef42724d --- /dev/null +++ b/site/public/v1/games/battlefield-3-back-to-karkand/index.json @@ -0,0 +1,32 @@ +{ + "id": 14496, + "slug": "battlefield-3-back-to-karkand", + "name": "Battlefield 3 – Back to Karkand", + "release_date": "2011-12-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 3", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "DICE" + ], + "publishers": [ + "Electronic Arts" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q66788955" + ], + "created_at": "2026-07-10T10:09:59.911023", + "updated_at": "2026-07-10T10:09:59.911023", + "url": "/v1/games/battlefield-3-back-to-karkand" +} diff --git a/site/public/v1/games/battlefield-3-close-quarters/index.json b/site/public/v1/games/battlefield-3-close-quarters/index.json new file mode 100644 index 000000000000..3580792c4c07 --- /dev/null +++ b/site/public/v1/games/battlefield-3-close-quarters/index.json @@ -0,0 +1,25 @@ +{ + "id": 14497, + "slug": "battlefield-3-close-quarters", + "name": "Battlefield 3: Close Quarters", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q66788959" + ], + "created_at": "2026-07-10T10:09:59.912024", + "updated_at": "2026-07-10T10:09:59.912024", + "url": "/v1/games/battlefield-3-close-quarters" +} diff --git a/site/public/v1/games/battlefield-3-end-game/index.json b/site/public/v1/games/battlefield-3-end-game/index.json new file mode 100644 index 000000000000..1a120590ecee --- /dev/null +++ b/site/public/v1/games/battlefield-3-end-game/index.json @@ -0,0 +1,25 @@ +{ + "id": 14498, + "slug": "battlefield-3-end-game", + "name": "Battlefield 3: End Game", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123384038" + ], + "created_at": "2026-07-10T10:09:59.912024", + "updated_at": "2026-07-10T10:09:59.912024", + "url": "/v1/games/battlefield-3-end-game" +} diff --git a/site/public/v1/games/battlefield-4-china-rising/index.json b/site/public/v1/games/battlefield-4-china-rising/index.json new file mode 100644 index 000000000000..a5698580ab27 --- /dev/null +++ b/site/public/v1/games/battlefield-4-china-rising/index.json @@ -0,0 +1,33 @@ +{ + "id": 14500, + "slug": "battlefield-4-china-rising", + "name": "Battlefield 4: China Rising", + "release_date": "2013-12-03", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 4", + "PlayStation 3", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Electronic Arts" + ], + "publishers": [ + "Electronic Arts" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q66788960" + ], + "created_at": "2026-07-10T10:09:59.912024", + "updated_at": "2026-07-10T10:09:59.912024", + "url": "/v1/games/battlefield-4-china-rising" +} diff --git a/site/public/v1/games/battlefield-4-final-stand/index.json b/site/public/v1/games/battlefield-4-final-stand/index.json new file mode 100644 index 000000000000..4dfe3d8f050a --- /dev/null +++ b/site/public/v1/games/battlefield-4-final-stand/index.json @@ -0,0 +1,33 @@ +{ + "id": 14501, + "slug": "battlefield-4-final-stand", + "name": "Battlefield 4: Final Stand", + "release_date": "2014-12-02", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 4", + "PlayStation 3", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "DICE" + ], + "publishers": [ + "Electronic Arts" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q66788961" + ], + "created_at": "2026-07-10T10:09:59.912024", + "updated_at": "2026-07-10T10:09:59.912024", + "url": "/v1/games/battlefield-4-final-stand" +} diff --git a/site/public/v1/games/battlefield-4-premium-edition/index.json b/site/public/v1/games/battlefield-4-premium-edition/index.json new file mode 100644 index 000000000000..89309dd60039 --- /dev/null +++ b/site/public/v1/games/battlefield-4-premium-edition/index.json @@ -0,0 +1,25 @@ +{ + "id": 14502, + "slug": "battlefield-4-premium-edition", + "name": "Battlefield 4 Premium Edition", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q92203579" + ], + "created_at": "2026-07-10T10:09:59.913024", + "updated_at": "2026-07-10T10:09:59.913024", + "url": "/v1/games/battlefield-4-premium-edition" +} diff --git a/site/public/v1/games/battlefield-4-second-assault/index.json b/site/public/v1/games/battlefield-4-second-assault/index.json new file mode 100644 index 000000000000..2d5ba4913529 --- /dev/null +++ b/site/public/v1/games/battlefield-4-second-assault/index.json @@ -0,0 +1,33 @@ +{ + "id": 14503, + "slug": "battlefield-4-second-assault", + "name": "Battlefield 4: Second Assault", + "release_date": "2014-03-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 4", + "PlayStation 3", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Electronic Arts" + ], + "publishers": [ + "Electronic Arts" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q66788962" + ], + "created_at": "2026-07-10T10:09:59.913024", + "updated_at": "2026-07-10T10:09:59.913024", + "url": "/v1/games/battlefield-4-second-assault" +} diff --git a/site/public/v1/games/battlefield-bad-company-2-ultimate-edition/index.json b/site/public/v1/games/battlefield-bad-company-2-ultimate-edition/index.json new file mode 100644 index 000000000000..2d81de781253 --- /dev/null +++ b/site/public/v1/games/battlefield-bad-company-2-ultimate-edition/index.json @@ -0,0 +1,25 @@ +{ + "id": 14506, + "slug": "battlefield-bad-company-2-ultimate-edition", + "name": "Battlefield: Bad Company 2 Ultimate Edition", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q66788965" + ], + "created_at": "2026-07-10T10:09:59.914024", + "updated_at": "2026-07-10T10:09:59.914024", + "url": "/v1/games/battlefield-bad-company-2-ultimate-edition" +} diff --git a/site/public/v1/games/battlefield-bad-company-2-vietnam/index.json b/site/public/v1/games/battlefield-bad-company-2-vietnam/index.json new file mode 100644 index 000000000000..6d1f55ffbdb2 --- /dev/null +++ b/site/public/v1/games/battlefield-bad-company-2-vietnam/index.json @@ -0,0 +1,31 @@ +{ + "id": 14507, + "slug": "battlefield-bad-company-2-vietnam", + "name": "Battlefield: Bad Company 2: Vietnam", + "release_date": "2010-12-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "DICE" + ], + "publishers": [ + "Electronic Arts" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3636869" + ], + "created_at": "2026-07-10T10:09:59.917169", + "updated_at": "2026-07-10T10:09:59.917169", + "url": "/v1/games/battlefield-bad-company-2-vietnam" +} diff --git a/site/public/v1/games/battlefield-bundle/index.json b/site/public/v1/games/battlefield-bundle/index.json new file mode 100644 index 000000000000..eb0f9e25851e --- /dev/null +++ b/site/public/v1/games/battlefield-bundle/index.json @@ -0,0 +1,31 @@ +{ + "id": 14510, + "slug": "battlefield-bundle", + "name": "Battlefield Bundle", + "release_date": "2015-06-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 4" + ], + "genres": [], + "stores": [], + "developers": [ + "DICE" + ], + "publishers": [ + "Electronic Arts" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q92204140" + ], + "created_at": "2026-07-10T10:09:59.926174", + "updated_at": "2026-07-10T10:09:59.926174", + "url": "/v1/games/battlefield-bundle" +} diff --git a/site/public/v1/games/battlefield-mobile/index.json b/site/public/v1/games/battlefield-mobile/index.json new file mode 100644 index 000000000000..2ae34f57b583 --- /dev/null +++ b/site/public/v1/games/battlefield-mobile/index.json @@ -0,0 +1,31 @@ +{ + "id": 14515, + "slug": "battlefield-mobile", + "name": "Battlefield Mobile", + "release_date": "2021-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "first-person shooter" + ], + "stores": [], + "developers": [ + "Industrial Toys" + ], + "publishers": [ + "Electronic Arts" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108395644" + ], + "created_at": "2026-07-10T10:09:59.930172", + "updated_at": "2026-07-10T10:09:59.930172", + "url": "/v1/games/battlefield-mobile" +} diff --git a/site/public/v1/games/battleheart-legacy-q115240295/index.json b/site/public/v1/games/battleheart-legacy-q115240295/index.json new file mode 100644 index 000000000000..564e729f5008 --- /dev/null +++ b/site/public/v1/games/battleheart-legacy-q115240295/index.json @@ -0,0 +1,28 @@ +{ + "id": 14558, + "slug": "battleheart-legacy-q115240295", + "name": "Battleheart Legacy+", + "release_date": "2022-11-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "iPadOS", + "iOS" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115240295" + ], + "created_at": "2026-07-10T10:09:59.939233", + "updated_at": "2026-07-10T10:09:59.939233", + "url": "/v1/games/battleheart-legacy-q115240295" +} diff --git a/site/public/v1/games/battletoads-q55210617/index.json b/site/public/v1/games/battletoads-q55210617/index.json new file mode 100644 index 000000000000..44a4aebb9ffa --- /dev/null +++ b/site/public/v1/games/battletoads-q55210617/index.json @@ -0,0 +1,33 @@ +{ + "id": 14676, + "slug": "battletoads-q55210617", + "name": "Battletoads", + "release_date": "2020-08-20", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "beat 'em up" + ], + "stores": [], + "developers": [ + "Rare Ltd." + ], + "publishers": [ + "Xbox Game Studios" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q55210617" + ], + "created_at": "2026-07-10T10:09:59.962263", + "updated_at": "2026-07-10T10:09:59.962263", + "url": "/v1/games/battletoads-q55210617" +} diff --git a/site/public/v1/games/bc/index.json b/site/public/v1/games/bc/index.json new file mode 100644 index 000000000000..1d5ee07db366 --- /dev/null +++ b/site/public/v1/games/bc/index.json @@ -0,0 +1,29 @@ +{ + "id": 14748, + "slug": "bc", + "name": "BC", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "action-adventure game" + ], + "stores": [], + "developers": [], + "publishers": [ + "Xbox Game Studios" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4835261" + ], + "created_at": "2026-07-10T10:09:59.976321", + "updated_at": "2026-07-10T10:09:59.976321", + "url": "/v1/games/bc" +} diff --git a/site/public/v1/games/bdsm-big-drunk-satanic-massacre-demo/index.json b/site/public/v1/games/bdsm-big-drunk-satanic-massacre-demo/index.json new file mode 100644 index 000000000000..5eb2bd9c943e --- /dev/null +++ b/site/public/v1/games/bdsm-big-drunk-satanic-massacre-demo/index.json @@ -0,0 +1,33 @@ +{ + "id": 14752, + "slug": "bdsm-big-drunk-satanic-massacre-demo", + "name": "BDSM: Big Drunk Satanic Massacre Demo", + "release_date": "2020-03-23", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "action role-playing game" + ], + "stores": [], + "developers": [ + "Big Way Games" + ], + "publishers": [ + "Big Way Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122373214" + ], + "created_at": "2026-07-10T10:09:59.977489", + "updated_at": "2026-07-10T10:09:59.977489", + "url": "/v1/games/bdsm-big-drunk-satanic-massacre-demo" +} diff --git a/site/public/v1/games/bee-swarm-simulator/index.json b/site/public/v1/games/bee-swarm-simulator/index.json new file mode 100644 index 000000000000..c832de3f8a70 --- /dev/null +++ b/site/public/v1/games/bee-swarm-simulator/index.json @@ -0,0 +1,34 @@ +{ + "id": 15340, + "slug": "bee-swarm-simulator", + "name": "Bee Swarm Simulator", + "release_date": "2018-03-21", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 5", + "PlayStation 4", + "iOS", + "macOS", + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126894058" + ], + "created_at": "2026-07-10T10:10:00.102348", + "updated_at": "2026-07-10T10:10:00.102348", + "url": "/v1/games/bee-swarm-simulator" +} diff --git a/site/public/v1/games/beholder-blissful-sleep/index.json b/site/public/v1/games/beholder-blissful-sleep/index.json new file mode 100644 index 000000000000..95c85cae3db6 --- /dev/null +++ b/site/public/v1/games/beholder-blissful-sleep/index.json @@ -0,0 +1,28 @@ +{ + "id": 15485, + "slug": "beholder-blissful-sleep", + "name": "Beholder - Blissful Sleep", + "release_date": "2017-05-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116314395" + ], + "created_at": "2026-07-10T10:10:00.185725", + "updated_at": "2026-07-10T10:10:00.185725", + "url": "/v1/games/beholder-blissful-sleep" +} diff --git a/site/public/v1/games/beneath/index.json b/site/public/v1/games/beneath/index.json new file mode 100644 index 000000000000..8445dc3fc188 --- /dev/null +++ b/site/public/v1/games/beneath/index.json @@ -0,0 +1,33 @@ +{ + "id": 15633, + "slug": "beneath", + "name": "Beneath", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "action-adventure game" + ], + "stores": [], + "developers": [ + "Presto Studios" + ], + "publishers": [ + "Activision" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4887172" + ], + "created_at": "2026-07-10T10:10:00.231332", + "updated_at": "2026-07-10T10:10:00.231332", + "url": "/v1/games/beneath" +} diff --git a/site/public/v1/games/bentley-s-hackpack-trial-version/index.json b/site/public/v1/games/bentley-s-hackpack-trial-version/index.json new file mode 100644 index 000000000000..407532fff1f4 --- /dev/null +++ b/site/public/v1/games/bentley-s-hackpack-trial-version/index.json @@ -0,0 +1,34 @@ +{ + "id": 15654, + "slug": "bentley-s-hackpack-trial-version", + "name": "Bentley's Hackpack Trial Version", + "release_date": "2013-02-05", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation Vita", + "PlayStation 3" + ], + "genres": [ + "arcade" + ], + "stores": [], + "developers": [ + "Sanzaru Games" + ], + "publishers": [ + "Sony Interactive Entertainment" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107411019" + ], + "created_at": "2026-07-10T10:10:00.237368", + "updated_at": "2026-07-10T10:10:00.237368", + "url": "/v1/games/bentley-s-hackpack-trial-version" +} diff --git a/site/public/v1/games/best-of-microsoft-entertainment-pack/index.json b/site/public/v1/games/best-of-microsoft-entertainment-pack/index.json new file mode 100644 index 000000000000..5a0ebe9c6648 --- /dev/null +++ b/site/public/v1/games/best-of-microsoft-entertainment-pack/index.json @@ -0,0 +1,32 @@ +{ + "id": 15771, + "slug": "best-of-microsoft-entertainment-pack", + "name": "Best of Microsoft Entertainment Pack", + "release_date": "1995-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Game Boy", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Microsoft" + ], + "publishers": [ + "Microsoft Home" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4896964" + ], + "created_at": "2026-07-10T10:10:00.334450", + "updated_at": "2026-07-10T10:10:00.334450", + "url": "/v1/games/best-of-microsoft-entertainment-pack" +} diff --git a/site/public/v1/games/beta-ivry-driver-for-steamvr-psvr2-lite-edition/index.json b/site/public/v1/games/beta-ivry-driver-for-steamvr-psvr2-lite-edition/index.json new file mode 100644 index 000000000000..4a65b4569b87 --- /dev/null +++ b/site/public/v1/games/beta-ivry-driver-for-steamvr-psvr2-lite-edition/index.json @@ -0,0 +1,31 @@ +{ + "id": 15797, + "slug": "beta-ivry-driver-for-steamvr-psvr2-lite-edition", + "name": "BETA: iVRy Driver for SteamVR (PSVR2 Lite Edition)", + "release_date": "2024-06-10", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Mediator Software" + ], + "publishers": [ + "Mediator Software" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130436763" + ], + "created_at": "2026-07-10T10:10:00.340444", + "updated_at": "2026-07-10T10:10:00.340444", + "url": "/v1/games/beta-ivry-driver-for-steamvr-psvr2-lite-edition" +} diff --git a/site/public/v1/games/beta-ivry-driver-for-steamvr-psvr2-premium-edition/index.json b/site/public/v1/games/beta-ivry-driver-for-steamvr-psvr2-premium-edition/index.json new file mode 100644 index 000000000000..95b9a3877b50 --- /dev/null +++ b/site/public/v1/games/beta-ivry-driver-for-steamvr-psvr2-premium-edition/index.json @@ -0,0 +1,31 @@ +{ + "id": 15798, + "slug": "beta-ivry-driver-for-steamvr-psvr2-premium-edition", + "name": "BETA: iVRy Driver for SteamVR (PSVR2 Premium Edition)", + "release_date": "2024-06-10", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Mediator Software" + ], + "publishers": [ + "Mediator Software" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130436808" + ], + "created_at": "2026-07-10T10:10:00.340444", + "updated_at": "2026-07-10T10:10:00.340444", + "url": "/v1/games/beta-ivry-driver-for-steamvr-psvr2-premium-edition" +} diff --git a/site/public/v1/games/beyond-the-red-line/index.json b/site/public/v1/games/beyond-the-red-line/index.json new file mode 100644 index 000000000000..32df6e7a56e1 --- /dev/null +++ b/site/public/v1/games/beyond-the-red-line/index.json @@ -0,0 +1,31 @@ +{ + "id": 16005, + "slug": "beyond-the-red-line", + "name": "Beyond the Red Line", + "release_date": "2007-03-31", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "space simulator", + "science fiction video game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4900182" + ], + "created_at": "2026-07-10T10:10:00.436807", + "updated_at": "2026-07-10T10:10:00.436807", + "url": "/v1/games/beyond-the-red-line" +} diff --git a/site/public/v1/games/big-pharma-marketing-and-malpractice/index.json b/site/public/v1/games/big-pharma-marketing-and-malpractice/index.json new file mode 100644 index 000000000000..045ba6480396 --- /dev/null +++ b/site/public/v1/games/big-pharma-marketing-and-malpractice/index.json @@ -0,0 +1,28 @@ +{ + "id": 16244, + "slug": "big-pharma-marketing-and-malpractice", + "name": "Big Pharma: Marketing and Malpractice", + "release_date": "2016-04-26", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116263517" + ], + "created_at": "2026-07-10T10:10:00.515601", + "updated_at": "2026-07-10T10:10:00.515601", + "url": "/v1/games/big-pharma-marketing-and-malpractice" +} diff --git a/site/public/v1/games/binding-of-isaac-wrath-of-the-lamb/index.json b/site/public/v1/games/binding-of-isaac-wrath-of-the-lamb/index.json new file mode 100644 index 000000000000..0fe9b0f659b3 --- /dev/null +++ b/site/public/v1/games/binding-of-isaac-wrath-of-the-lamb/index.json @@ -0,0 +1,36 @@ +{ + "id": 16430, + "slug": "binding-of-isaac-wrath-of-the-lamb", + "name": "Binding of Isaac: Wrath of the Lamb", + "release_date": "2012-05-29", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "roguelite" + ], + "stores": [], + "developers": [ + "Edmund McMillen", + "Florian Himsl" + ], + "publishers": [ + "Edmund McMillen", + "Florian Himsl" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60997844" + ], + "created_at": "2026-07-10T10:10:00.592718", + "updated_at": "2026-07-10T10:10:00.592718", + "url": "/v1/games/binding-of-isaac-wrath-of-the-lamb" +} diff --git a/site/public/v1/games/bionicle-masks-of-power/index.json b/site/public/v1/games/bionicle-masks-of-power/index.json new file mode 100644 index 000000000000..4c6a8c29da86 --- /dev/null +++ b/site/public/v1/games/bionicle-masks-of-power/index.json @@ -0,0 +1,29 @@ +{ + "id": 16537, + "slug": "bionicle-masks-of-power", + "name": "Bionicle: Masks of Power", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "action-adventure game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121495363" + ], + "created_at": "2026-07-10T10:10:00.628307", + "updated_at": "2026-07-10T10:10:00.628307", + "url": "/v1/games/bionicle-masks-of-power" +} diff --git a/site/public/v1/games/biosector/index.json b/site/public/v1/games/biosector/index.json new file mode 100644 index 000000000000..1ef1b2798679 --- /dev/null +++ b/site/public/v1/games/biosector/index.json @@ -0,0 +1,28 @@ +{ + "id": 16553, + "slug": "biosector", + "name": "Biosector", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "strategic game", + "science fiction video game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q13396016" + ], + "created_at": "2026-07-10T10:10:00.644317", + "updated_at": "2026-07-10T10:10:00.644317", + "url": "/v1/games/biosector" +} diff --git a/site/public/v1/games/bioshock-2-minerva-s-den/index.json b/site/public/v1/games/bioshock-2-minerva-s-den/index.json new file mode 100644 index 000000000000..73a94c8f8490 --- /dev/null +++ b/site/public/v1/games/bioshock-2-minerva-s-den/index.json @@ -0,0 +1,29 @@ +{ + "id": 16554, + "slug": "bioshock-2-minerva-s-den", + "name": "BioShock 2: Minerva's Den", + "release_date": "2013-10-02", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "2K Marin" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q24806656" + ], + "created_at": "2026-07-10T10:10:00.644317", + "updated_at": "2026-07-10T10:10:00.644317", + "url": "/v1/games/bioshock-2-minerva-s-den" +} diff --git a/site/public/v1/games/bioshock-infinite-burial-at-sea/index.json b/site/public/v1/games/bioshock-infinite-burial-at-sea/index.json new file mode 100644 index 000000000000..ab9175504413 --- /dev/null +++ b/site/public/v1/games/bioshock-infinite-burial-at-sea/index.json @@ -0,0 +1,36 @@ +{ + "id": 16557, + "slug": "bioshock-infinite-burial-at-sea", + "name": "BioShock Infinite: Burial at Sea", + "release_date": "2013-11-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "PlayStation 3", + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "episodic video game" + ], + "stores": [], + "developers": [ + "Irrational Games" + ], + "publishers": [ + "2K" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q15720816" + ], + "created_at": "2026-07-10T10:10:00.645293", + "updated_at": "2026-07-10T10:10:00.645293", + "url": "/v1/games/bioshock-infinite-burial-at-sea" +} diff --git a/site/public/v1/games/bit-trip-complete/index.json b/site/public/v1/games/bit-trip-complete/index.json new file mode 100644 index 000000000000..c6c277d1e38f --- /dev/null +++ b/site/public/v1/games/bit-trip-complete/index.json @@ -0,0 +1,33 @@ +{ + "id": 16753, + "slug": "bit-trip-complete", + "name": "Bit.Trip Complete", + "release_date": "2011-09-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Wii" + ], + "genres": [ + "action game" + ], + "stores": [], + "developers": [ + "Choice Provisions" + ], + "publishers": [ + "Aksys Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16259262" + ], + "created_at": "2026-07-10T10:10:00.714141", + "updated_at": "2026-07-10T10:10:00.714141", + "url": "/v1/games/bit-trip-complete" +} diff --git a/site/public/v1/games/bit-trip-saga/index.json b/site/public/v1/games/bit-trip-saga/index.json new file mode 100644 index 000000000000..f725b9cd1ba2 --- /dev/null +++ b/site/public/v1/games/bit-trip-saga/index.json @@ -0,0 +1,33 @@ +{ + "id": 16759, + "slug": "bit-trip-saga", + "name": "Bit.Trip Saga", + "release_date": "2011-09-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Nintendo 3DS" + ], + "genres": [ + "music video game" + ], + "stores": [], + "developers": [ + "Choice Provisions" + ], + "publishers": [ + "Aksys Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4918673" + ], + "created_at": "2026-07-10T10:10:00.715701", + "updated_at": "2026-07-10T10:10:00.715701", + "url": "/v1/games/bit-trip-saga" +} diff --git a/site/public/v1/games/bitva-geroev-2-ekho-voiny/index.json b/site/public/v1/games/bitva-geroev-2-ekho-voiny/index.json new file mode 100644 index 000000000000..788926547e07 --- /dev/null +++ b/site/public/v1/games/bitva-geroev-2-ekho-voiny/index.json @@ -0,0 +1,32 @@ +{ + "id": 16841, + "slug": "bitva-geroev-2-ekho-voiny", + "name": "Bitva Geroev 2: Ekho Voiny", + "release_date": "2006-03-02", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "role-playing video game", + "strategy video game" + ], + "stores": [], + "developers": [ + "BloodLine" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120378656" + ], + "created_at": "2026-07-10T10:10:00.737041", + "updated_at": "2026-07-10T10:10:00.737041", + "url": "/v1/games/bitva-geroev-2-ekho-voiny" +} diff --git a/site/public/v1/games/bitva-geroev-padenie-imperii/index.json b/site/public/v1/games/bitva-geroev-padenie-imperii/index.json new file mode 100644 index 000000000000..e324d836a133 --- /dev/null +++ b/site/public/v1/games/bitva-geroev-padenie-imperii/index.json @@ -0,0 +1,32 @@ +{ + "id": 16843, + "slug": "bitva-geroev-padenie-imperii", + "name": "Bitva Geroev: Padenie Imperii", + "release_date": "2003-12-11", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "role-playing video game", + "strategy video game" + ], + "stores": [], + "developers": [ + "BloodLine" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120378423" + ], + "created_at": "2026-07-10T10:10:00.738019", + "updated_at": "2026-07-10T10:10:00.738019", + "url": "/v1/games/bitva-geroev-padenie-imperii" +} diff --git a/site/public/v1/games/blablaland/index.json b/site/public/v1/games/blablaland/index.json new file mode 100644 index 000000000000..8bd849786b72 --- /dev/null +++ b/site/public/v1/games/blablaland/index.json @@ -0,0 +1,25 @@ +{ + "id": 16868, + "slug": "blablaland", + "name": "Blablaland", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126188719" + ], + "created_at": "2026-07-10T10:10:00.744956", + "updated_at": "2026-07-10T10:10:00.744956", + "url": "/v1/games/blablaland" +} diff --git a/site/public/v1/games/black-mesa-inbound/index.json b/site/public/v1/games/black-mesa-inbound/index.json new file mode 100644 index 000000000000..e1980539bfaa --- /dev/null +++ b/site/public/v1/games/black-mesa-inbound/index.json @@ -0,0 +1,25 @@ +{ + "id": 16992, + "slug": "black-mesa-inbound", + "name": "Black Mesa Inbound", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q133296100" + ], + "created_at": "2026-07-10T10:10:00.805072", + "updated_at": "2026-07-10T10:10:00.805072", + "url": "/v1/games/black-mesa-inbound" +} diff --git a/site/public/v1/games/black-ocean-q110713009/index.json b/site/public/v1/games/black-ocean-q110713009/index.json new file mode 100644 index 000000000000..3fa0214d60a8 --- /dev/null +++ b/site/public/v1/games/black-ocean-q110713009/index.json @@ -0,0 +1,31 @@ +{ + "id": 17004, + "slug": "black-ocean-q110713009", + "name": "Black Ocean", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "action role-playing game" + ], + "stores": [], + "developers": [], + "publishers": [ + "Akella" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110713009" + ], + "created_at": "2026-07-10T10:10:00.810672", + "updated_at": "2026-07-10T10:10:00.810672", + "url": "/v1/games/black-ocean-q110713009" +} diff --git a/site/public/v1/games/black-shark-2-republic-campaign/index.json b/site/public/v1/games/black-shark-2-republic-campaign/index.json new file mode 100644 index 000000000000..7e83360cf7d1 --- /dev/null +++ b/site/public/v1/games/black-shark-2-republic-campaign/index.json @@ -0,0 +1,31 @@ +{ + "id": 17043, + "slug": "black-shark-2-republic-campaign", + "name": "Black Shark 2: Republic Campaign", + "release_date": "2015-11-16", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Eagle Dynamics" + ], + "publishers": [ + "Eagle Dynamics" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097404" + ], + "created_at": "2026-07-10T10:10:00.821660", + "updated_at": "2026-07-10T10:10:00.821660", + "url": "/v1/games/black-shark-2-republic-campaign" +} diff --git a/site/public/v1/games/black-white-2-battle-of-the-gods/index.json b/site/public/v1/games/black-white-2-battle-of-the-gods/index.json new file mode 100644 index 000000000000..43c744fe9f45 --- /dev/null +++ b/site/public/v1/games/black-white-2-battle-of-the-gods/index.json @@ -0,0 +1,35 @@ +{ + "id": 17072, + "slug": "black-white-2-battle-of-the-gods", + "name": "Black & White 2: Battle of the Gods", + "release_date": "2006-04-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "real-time strategy", + "god game" + ], + "stores": [], + "developers": [ + "Lionhead Studios" + ], + "publishers": [ + "Electronic Arts" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3640671" + ], + "created_at": "2026-07-10T10:10:00.828654", + "updated_at": "2026-07-10T10:10:00.828654", + "url": "/v1/games/black-white-2-battle-of-the-gods" +} diff --git a/site/public/v1/games/black-white-creature-isle/index.json b/site/public/v1/games/black-white-creature-isle/index.json new file mode 100644 index 000000000000..3c2509e64d79 --- /dev/null +++ b/site/public/v1/games/black-white-creature-isle/index.json @@ -0,0 +1,35 @@ +{ + "id": 17074, + "slug": "black-white-creature-isle", + "name": "Black & White: Creature Isle", + "release_date": "2002-01-22", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "real-time strategy", + "god game" + ], + "stores": [], + "developers": [ + "Lionhead Studios" + ], + "publishers": [ + "Electronic Arts" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1115485" + ], + "created_at": "2026-07-10T10:10:00.829646", + "updated_at": "2026-07-10T10:10:00.829646", + "url": "/v1/games/black-white-creature-isle" +} diff --git a/site/public/v1/games/blackjack-by-mobilityware/index.json b/site/public/v1/games/blackjack-by-mobilityware/index.json new file mode 100644 index 000000000000..bf8ee3447b05 --- /dev/null +++ b/site/public/v1/games/blackjack-by-mobilityware/index.json @@ -0,0 +1,32 @@ +{ + "id": 17126, + "slug": "blackjack-by-mobilityware", + "name": "Blackjack by MobilityWare+", + "release_date": "2024-01-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "iPadOS", + "iOS" + ], + "genres": [ + "blackjack video game" + ], + "stores": [], + "developers": [ + "MobilityWare" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124213602" + ], + "created_at": "2026-07-10T10:10:00.862810", + "updated_at": "2026-07-10T10:10:00.862810", + "url": "/v1/games/blackjack-by-mobilityware" +} diff --git a/site/public/v1/games/blackwell-bundle/index.json b/site/public/v1/games/blackwell-bundle/index.json new file mode 100644 index 000000000000..1b6f633962d0 --- /dev/null +++ b/site/public/v1/games/blackwell-bundle/index.json @@ -0,0 +1,25 @@ +{ + "id": 17211, + "slug": "blackwell-bundle", + "name": "Blackwell Bundle", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131935086" + ], + "created_at": "2026-07-10T10:10:00.885734", + "updated_at": "2026-07-10T10:10:00.885734", + "url": "/v1/games/blackwell-bundle" +} diff --git a/site/public/v1/games/blade-ball/index.json b/site/public/v1/games/blade-ball/index.json new file mode 100644 index 000000000000..e61ab1f6663c --- /dev/null +++ b/site/public/v1/games/blade-ball/index.json @@ -0,0 +1,28 @@ +{ + "id": 17230, + "slug": "blade-ball", + "name": "Blade Ball", + "release_date": "2023-06-16", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "action game", + "fighting game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126958227" + ], + "created_at": "2026-07-10T10:10:00.889809", + "updated_at": "2026-07-10T10:10:00.889809", + "url": "/v1/games/blade-ball" +} diff --git a/site/public/v1/games/blades-of-passage/index.json b/site/public/v1/games/blades-of-passage/index.json new file mode 100644 index 000000000000..caa9dfabfb8f --- /dev/null +++ b/site/public/v1/games/blades-of-passage/index.json @@ -0,0 +1,29 @@ +{ + "id": 17311, + "slug": "blades-of-passage", + "name": "Blades of Passage", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "64DD" + ], + "genres": [], + "stores": [], + "developers": [ + "Orbital Media" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108400575" + ], + "created_at": "2026-07-10T10:10:00.910637", + "updated_at": "2026-07-10T10:10:00.910637", + "url": "/v1/games/blades-of-passage" +} diff --git a/site/public/v1/games/blades-of-time/index.json b/site/public/v1/games/blades-of-time/index.json new file mode 100644 index 000000000000..c1f24807817b --- /dev/null +++ b/site/public/v1/games/blades-of-time/index.json @@ -0,0 +1,35 @@ +{ + "id": 17316, + "slug": "blades-of-time", + "name": "Blades of Time", + "release_date": "2012-03-08", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "PlayStation 3", + "Microsoft Windows" + ], + "genres": [ + "action-adventure game" + ], + "stores": [], + "developers": [ + "Gaijin Entertainment" + ], + "publishers": [ + "Konami" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2615245" + ], + "created_at": "2026-07-10T10:10:00.911556", + "updated_at": "2026-07-10T10:10:00.911556", + "url": "/v1/games/blades-of-time" +} diff --git a/site/public/v1/games/blasphemous-2-mea-culpa/index.json b/site/public/v1/games/blasphemous-2-mea-culpa/index.json new file mode 100644 index 000000000000..5c56545f066f --- /dev/null +++ b/site/public/v1/games/blasphemous-2-mea-culpa/index.json @@ -0,0 +1,34 @@ +{ + "id": 17367, + "slug": "blasphemous-2-mea-culpa", + "name": "Blasphemous 2: Mea Culpa", + "release_date": "2024-10-31", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 4", + "Xbox Series X and Series S", + "PlayStation 5", + "Microsoft Windows" + ], + "genres": [ + "Metroidvania" + ], + "stores": [], + "developers": [], + "publishers": [ + "Team17" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131471288" + ], + "created_at": "2026-07-10T10:10:00.924635", + "updated_at": "2026-07-10T10:10:00.924635", + "url": "/v1/games/blasphemous-2-mea-culpa" +} diff --git a/site/public/v1/games/blazblue-continuum-shift-extend/index.json b/site/public/v1/games/blazblue-continuum-shift-extend/index.json new file mode 100644 index 000000000000..aacd28d987e9 --- /dev/null +++ b/site/public/v1/games/blazblue-continuum-shift-extend/index.json @@ -0,0 +1,31 @@ +{ + "id": 17467, + "slug": "blazblue-continuum-shift-extend", + "name": "BlazBlue: Continuum Shift Extend", + "release_date": "2014-12-11", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "arcade video game machine" + ], + "genres": [], + "stores": [], + "developers": [ + "Arc System Works" + ], + "publishers": [ + "Arc System Works" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140473413" + ], + "created_at": "2026-07-10T10:10:00.950615", + "updated_at": "2026-07-10T10:10:00.950615", + "url": "/v1/games/blazblue-continuum-shift-extend" +} diff --git a/site/public/v1/games/blazblue-cross-tag-battle-special-edition/index.json b/site/public/v1/games/blazblue-cross-tag-battle-special-edition/index.json new file mode 100644 index 000000000000..388355f32b36 --- /dev/null +++ b/site/public/v1/games/blazblue-cross-tag-battle-special-edition/index.json @@ -0,0 +1,32 @@ +{ + "id": 17470, + "slug": "blazblue-cross-tag-battle-special-edition", + "name": "BlazBlue: Cross Tag Battle Special Edition", + "release_date": "2023-04-27", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Arc System Works" + ], + "publishers": [ + "Arc System Works" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123221359" + ], + "created_at": "2026-07-10T10:10:00.950615", + "updated_at": "2026-07-10T10:10:00.950615", + "url": "/v1/games/blazblue-cross-tag-battle-special-edition" +} diff --git a/site/public/v1/games/blek-q106803076/index.json b/site/public/v1/games/blek-q106803076/index.json new file mode 100644 index 000000000000..8dacdd1ad107 --- /dev/null +++ b/site/public/v1/games/blek-q106803076/index.json @@ -0,0 +1,34 @@ +{ + "id": 17560, + "slug": "blek-q106803076", + "name": "Blek+", + "release_date": "2021-04-02", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "iPadOS", + "iOS" + ], + "genres": [ + "puzzle video game" + ], + "stores": [], + "developers": [ + "kunabi brother" + ], + "publishers": [ + "kunabi brother" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106803076" + ], + "created_at": "2026-07-10T10:10:01.017751", + "updated_at": "2026-07-10T10:10:01.017751", + "url": "/v1/games/blek-q106803076" +} diff --git a/site/public/v1/games/blender-ball/index.json b/site/public/v1/games/blender-ball/index.json new file mode 100644 index 000000000000..557e309e7716 --- /dev/null +++ b/site/public/v1/games/blender-ball/index.json @@ -0,0 +1,25 @@ +{ + "id": 17563, + "slug": "blender-ball", + "name": "Blender Ball", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q128014859" + ], + "created_at": "2026-07-10T10:10:01.018765", + "updated_at": "2026-07-10T10:10:01.018765", + "url": "/v1/games/blender-ball" +} diff --git a/site/public/v1/games/blinky-q121409786/index.json b/site/public/v1/games/blinky-q121409786/index.json new file mode 100644 index 000000000000..368117f17179 --- /dev/null +++ b/site/public/v1/games/blinky-q121409786/index.json @@ -0,0 +1,25 @@ +{ + "id": 17672, + "slug": "blinky-q121409786", + "name": "Blinky", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121409786" + ], + "created_at": "2026-07-10T10:10:01.072756", + "updated_at": "2026-07-10T10:10:01.072756", + "url": "/v1/games/blinky-q121409786" +} diff --git a/site/public/v1/games/blitz-the-league-q102293489/index.json b/site/public/v1/games/blitz-the-league-q102293489/index.json new file mode 100644 index 000000000000..f7f3c12d61f6 --- /dev/null +++ b/site/public/v1/games/blitz-the-league-q102293489/index.json @@ -0,0 +1,27 @@ +{ + "id": 17704, + "slug": "blitz-the-league-q102293489", + "name": "Blitz: The League", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Wii" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q102293489" + ], + "created_at": "2026-07-10T10:10:01.081764", + "updated_at": "2026-07-10T10:10:01.081764", + "url": "/v1/games/blitz-the-league-q102293489" +} diff --git a/site/public/v1/games/blitzball/index.json b/site/public/v1/games/blitzball/index.json new file mode 100644 index 000000000000..ec94b19ea3c9 --- /dev/null +++ b/site/public/v1/games/blitzball/index.json @@ -0,0 +1,25 @@ +{ + "id": 17708, + "slug": "blitzball", + "name": "Blitzball", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2031329" + ], + "created_at": "2026-07-10T10:10:01.082750", + "updated_at": "2026-07-10T10:10:01.082750", + "url": "/v1/games/blitzball" +} diff --git a/site/public/v1/games/blitzkrieg-burning-horizon/index.json b/site/public/v1/games/blitzkrieg-burning-horizon/index.json new file mode 100644 index 000000000000..1460e52872e8 --- /dev/null +++ b/site/public/v1/games/blitzkrieg-burning-horizon/index.json @@ -0,0 +1,32 @@ +{ + "id": 17716, + "slug": "blitzkrieg-burning-horizon", + "name": "Blitzkrieg: Burning Horizon", + "release_date": "2004-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "real-time strategy", + "wargame" + ], + "stores": [], + "developers": [], + "publishers": [ + "1C Company" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q9174353" + ], + "created_at": "2026-07-10T10:10:01.084778", + "updated_at": "2026-07-10T10:10:01.084778", + "url": "/v1/games/blitzkrieg-burning-horizon" +} diff --git a/site/public/v1/games/blitzkrieg-green-devils/index.json b/site/public/v1/games/blitzkrieg-green-devils/index.json new file mode 100644 index 000000000000..1fcaa76eb70a --- /dev/null +++ b/site/public/v1/games/blitzkrieg-green-devils/index.json @@ -0,0 +1,25 @@ +{ + "id": 17718, + "slug": "blitzkrieg-green-devils", + "name": "Blitzkrieg: Green Devils", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140447915" + ], + "created_at": "2026-07-10T10:10:01.084778", + "updated_at": "2026-07-10T10:10:01.084778", + "url": "/v1/games/blitzkrieg-green-devils" +} diff --git a/site/public/v1/games/blitzkrieg-rolling-thunder/index.json b/site/public/v1/games/blitzkrieg-rolling-thunder/index.json new file mode 100644 index 000000000000..5b13a134b6e7 --- /dev/null +++ b/site/public/v1/games/blitzkrieg-rolling-thunder/index.json @@ -0,0 +1,27 @@ +{ + "id": 17720, + "slug": "blitzkrieg-rolling-thunder", + "name": "Blitzkrieg: Rolling Thunder", + "release_date": "2004-12-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q9174354" + ], + "created_at": "2026-07-10T10:10:01.085757", + "updated_at": "2026-07-10T10:10:01.085757", + "url": "/v1/games/blitzkrieg-rolling-thunder" +} diff --git a/site/public/v1/games/blood-bowl-2-amazon/index.json b/site/public/v1/games/blood-bowl-2-amazon/index.json new file mode 100644 index 000000000000..a93f5aac7d45 --- /dev/null +++ b/site/public/v1/games/blood-bowl-2-amazon/index.json @@ -0,0 +1,32 @@ +{ + "id": 18018, + "slug": "blood-bowl-2-amazon", + "name": "Blood Bowl 2 - Amazon", + "release_date": "2017-11-02", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Cyanide" + ], + "publishers": [ + "Nacon" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113283013" + ], + "created_at": "2026-07-10T10:10:01.213163", + "updated_at": "2026-07-10T10:10:01.213163", + "url": "/v1/games/blood-bowl-2-amazon" +} diff --git a/site/public/v1/games/blood-bowl-2-chaos-dwarfs/index.json b/site/public/v1/games/blood-bowl-2-chaos-dwarfs/index.json new file mode 100644 index 000000000000..416ae021c574 --- /dev/null +++ b/site/public/v1/games/blood-bowl-2-chaos-dwarfs/index.json @@ -0,0 +1,32 @@ +{ + "id": 18019, + "slug": "blood-bowl-2-chaos-dwarfs", + "name": "Blood Bowl 2 - Chaos Dwarfs", + "release_date": "2017-02-14", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Cyanide" + ], + "publishers": [ + "Nacon" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113283002" + ], + "created_at": "2026-07-10T10:10:01.214169", + "updated_at": "2026-07-10T10:10:01.214169", + "url": "/v1/games/blood-bowl-2-chaos-dwarfs" +} diff --git a/site/public/v1/games/blood-bowl-2-death-zone/index.json b/site/public/v1/games/blood-bowl-2-death-zone/index.json new file mode 100644 index 000000000000..52732d63ba32 --- /dev/null +++ b/site/public/v1/games/blood-bowl-2-death-zone/index.json @@ -0,0 +1,31 @@ +{ + "id": 18020, + "slug": "blood-bowl-2-death-zone", + "name": "Blood Bowl 2 - DEATH ZONE", + "release_date": "2018-07-17", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Cyanide" + ], + "publishers": [ + "Nacon" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113283038" + ], + "created_at": "2026-07-10T10:10:01.214169", + "updated_at": "2026-07-10T10:10:01.214169", + "url": "/v1/games/blood-bowl-2-death-zone" +} diff --git a/site/public/v1/games/blood-bowl-2-elven-union/index.json b/site/public/v1/games/blood-bowl-2-elven-union/index.json new file mode 100644 index 000000000000..058bd5f674fa --- /dev/null +++ b/site/public/v1/games/blood-bowl-2-elven-union/index.json @@ -0,0 +1,32 @@ +{ + "id": 18021, + "slug": "blood-bowl-2-elven-union", + "name": "Blood Bowl 2 - Elven Union", + "release_date": "2017-11-02", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Cyanide" + ], + "publishers": [ + "Nacon" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113283021" + ], + "created_at": "2026-07-10T10:10:01.214169", + "updated_at": "2026-07-10T10:10:01.214169", + "url": "/v1/games/blood-bowl-2-elven-union" +} diff --git a/site/public/v1/games/blood-bowl-2-goblins/index.json b/site/public/v1/games/blood-bowl-2-goblins/index.json new file mode 100644 index 000000000000..ac921dec86cf --- /dev/null +++ b/site/public/v1/games/blood-bowl-2-goblins/index.json @@ -0,0 +1,32 @@ +{ + "id": 18022, + "slug": "blood-bowl-2-goblins", + "name": "Blood Bowl 2 - Goblins", + "release_date": "2017-11-02", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Cyanide" + ], + "publishers": [ + "Nacon" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113283022" + ], + "created_at": "2026-07-10T10:10:01.214169", + "updated_at": "2026-07-10T10:10:01.214169", + "url": "/v1/games/blood-bowl-2-goblins" +} diff --git a/site/public/v1/games/blood-bowl-2-halflings/index.json b/site/public/v1/games/blood-bowl-2-halflings/index.json new file mode 100644 index 000000000000..fb6c47333d13 --- /dev/null +++ b/site/public/v1/games/blood-bowl-2-halflings/index.json @@ -0,0 +1,32 @@ +{ + "id": 18023, + "slug": "blood-bowl-2-halflings", + "name": "Blood Bowl 2 - Halflings", + "release_date": "2017-11-02", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Cyanide" + ], + "publishers": [ + "Nacon" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113283029" + ], + "created_at": "2026-07-10T10:10:01.215187", + "updated_at": "2026-07-10T10:10:01.215187", + "url": "/v1/games/blood-bowl-2-halflings" +} diff --git a/site/public/v1/games/blood-bowl-2-khemri/index.json b/site/public/v1/games/blood-bowl-2-khemri/index.json new file mode 100644 index 000000000000..609217d4fc0b --- /dev/null +++ b/site/public/v1/games/blood-bowl-2-khemri/index.json @@ -0,0 +1,32 @@ +{ + "id": 18024, + "slug": "blood-bowl-2-khemri", + "name": "Blood Bowl 2 - Khemri", + "release_date": "2017-02-14", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Cyanide" + ], + "publishers": [ + "Nacon" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113283008" + ], + "created_at": "2026-07-10T10:10:01.215187", + "updated_at": "2026-07-10T10:10:01.215187", + "url": "/v1/games/blood-bowl-2-khemri" +} diff --git a/site/public/v1/games/blood-bowl-2-kislev-circus/index.json b/site/public/v1/games/blood-bowl-2-kislev-circus/index.json new file mode 100644 index 000000000000..86f44190a159 --- /dev/null +++ b/site/public/v1/games/blood-bowl-2-kislev-circus/index.json @@ -0,0 +1,32 @@ +{ + "id": 18025, + "slug": "blood-bowl-2-kislev-circus", + "name": "Blood Bowl 2 - Kislev Circus", + "release_date": "2017-11-02", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Cyanide" + ], + "publishers": [ + "Nacon" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113283036" + ], + "created_at": "2026-07-10T10:10:01.215187", + "updated_at": "2026-07-10T10:10:01.215187", + "url": "/v1/games/blood-bowl-2-kislev-circus" +} diff --git a/site/public/v1/games/blood-bowl-2-lizardmen/index.json b/site/public/v1/games/blood-bowl-2-lizardmen/index.json new file mode 100644 index 000000000000..faf8852eaddd --- /dev/null +++ b/site/public/v1/games/blood-bowl-2-lizardmen/index.json @@ -0,0 +1,32 @@ +{ + "id": 18026, + "slug": "blood-bowl-2-lizardmen", + "name": "Blood Bowl 2 - Lizardmen", + "release_date": "2015-11-03", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Cyanide" + ], + "publishers": [ + "Nacon" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113282971" + ], + "created_at": "2026-07-10T10:10:01.215187", + "updated_at": "2026-07-10T10:10:01.215187", + "url": "/v1/games/blood-bowl-2-lizardmen" +} diff --git a/site/public/v1/games/blood-bowl-2-necromantic/index.json b/site/public/v1/games/blood-bowl-2-necromantic/index.json new file mode 100644 index 000000000000..87c84ce72ff8 --- /dev/null +++ b/site/public/v1/games/blood-bowl-2-necromantic/index.json @@ -0,0 +1,32 @@ +{ + "id": 18027, + "slug": "blood-bowl-2-necromantic", + "name": "Blood Bowl 2 - Necromantic", + "release_date": "2016-09-08", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Cyanide" + ], + "publishers": [ + "Nacon" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113282991" + ], + "created_at": "2026-07-10T10:10:01.215187", + "updated_at": "2026-07-10T10:10:01.215187", + "url": "/v1/games/blood-bowl-2-necromantic" +} diff --git a/site/public/v1/games/blood-bowl-2-norse/index.json b/site/public/v1/games/blood-bowl-2-norse/index.json new file mode 100644 index 000000000000..6341b08d8961 --- /dev/null +++ b/site/public/v1/games/blood-bowl-2-norse/index.json @@ -0,0 +1,32 @@ +{ + "id": 18028, + "slug": "blood-bowl-2-norse", + "name": "Blood Bowl 2 - Norse", + "release_date": "2016-05-03", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Cyanide" + ], + "publishers": [ + "Nacon" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113282976" + ], + "created_at": "2026-07-10T10:10:01.216141", + "updated_at": "2026-07-10T10:10:01.216141", + "url": "/v1/games/blood-bowl-2-norse" +} diff --git a/site/public/v1/games/blood-bowl-2-nurgle/index.json b/site/public/v1/games/blood-bowl-2-nurgle/index.json new file mode 100644 index 000000000000..369cdd598a5f --- /dev/null +++ b/site/public/v1/games/blood-bowl-2-nurgle/index.json @@ -0,0 +1,32 @@ +{ + "id": 18029, + "slug": "blood-bowl-2-nurgle", + "name": "Blood Bowl 2 - Nurgle", + "release_date": "2016-11-22", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Cyanide" + ], + "publishers": [ + "Nacon" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113282995" + ], + "created_at": "2026-07-10T10:10:01.216141", + "updated_at": "2026-07-10T10:10:01.216141", + "url": "/v1/games/blood-bowl-2-nurgle" +} diff --git a/site/public/v1/games/blood-bowl-2-ogre/index.json b/site/public/v1/games/blood-bowl-2-ogre/index.json new file mode 100644 index 000000000000..ef4099308269 --- /dev/null +++ b/site/public/v1/games/blood-bowl-2-ogre/index.json @@ -0,0 +1,32 @@ +{ + "id": 18030, + "slug": "blood-bowl-2-ogre", + "name": "Blood Bowl 2 - Ogre", + "release_date": "2017-11-02", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Cyanide" + ], + "publishers": [ + "Nacon" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113283032" + ], + "created_at": "2026-07-10T10:10:01.216141", + "updated_at": "2026-07-10T10:10:01.216141", + "url": "/v1/games/blood-bowl-2-ogre" +} diff --git a/site/public/v1/games/blood-bowl-2-undead/index.json b/site/public/v1/games/blood-bowl-2-undead/index.json new file mode 100644 index 000000000000..f0dbd38bbbea --- /dev/null +++ b/site/public/v1/games/blood-bowl-2-undead/index.json @@ -0,0 +1,32 @@ +{ + "id": 18031, + "slug": "blood-bowl-2-undead", + "name": "Blood Bowl 2 - Undead", + "release_date": "2016-07-26", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Cyanide" + ], + "publishers": [ + "Nacon" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113282981" + ], + "created_at": "2026-07-10T10:10:01.216141", + "updated_at": "2026-07-10T10:10:01.216141", + "url": "/v1/games/blood-bowl-2-undead" +} diff --git a/site/public/v1/games/blood-bowl-2-underworld-denizens/index.json b/site/public/v1/games/blood-bowl-2-underworld-denizens/index.json new file mode 100644 index 000000000000..f11b4132520a --- /dev/null +++ b/site/public/v1/games/blood-bowl-2-underworld-denizens/index.json @@ -0,0 +1,32 @@ +{ + "id": 18032, + "slug": "blood-bowl-2-underworld-denizens", + "name": "Blood Bowl 2 - Underworld Denizens", + "release_date": "2017-11-02", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Cyanide" + ], + "publishers": [ + "Nacon" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113283033" + ], + "created_at": "2026-07-10T10:10:01.217139", + "updated_at": "2026-07-10T10:10:01.217139", + "url": "/v1/games/blood-bowl-2-underworld-denizens" +} diff --git a/site/public/v1/games/blood-bowl-2-vampire/index.json b/site/public/v1/games/blood-bowl-2-vampire/index.json new file mode 100644 index 000000000000..2663fe5673c1 --- /dev/null +++ b/site/public/v1/games/blood-bowl-2-vampire/index.json @@ -0,0 +1,32 @@ +{ + "id": 18033, + "slug": "blood-bowl-2-vampire", + "name": "Blood Bowl 2 - Vampire", + "release_date": "2017-11-02", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Cyanide" + ], + "publishers": [ + "Nacon" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113283035" + ], + "created_at": "2026-07-10T10:10:01.217139", + "updated_at": "2026-07-10T10:10:01.217139", + "url": "/v1/games/blood-bowl-2-vampire" +} diff --git a/site/public/v1/games/blood-bowl-2-wood-elves/index.json b/site/public/v1/games/blood-bowl-2-wood-elves/index.json new file mode 100644 index 000000000000..20144fb23769 --- /dev/null +++ b/site/public/v1/games/blood-bowl-2-wood-elves/index.json @@ -0,0 +1,32 @@ +{ + "id": 18034, + "slug": "blood-bowl-2-wood-elves", + "name": "Blood Bowl 2 - Wood Elves", + "release_date": "2015-11-03", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Cyanide" + ], + "publishers": [ + "Nacon" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113282973" + ], + "created_at": "2026-07-10T10:10:01.217139", + "updated_at": "2026-07-10T10:10:01.217139", + "url": "/v1/games/blood-bowl-2-wood-elves" +} diff --git a/site/public/v1/games/blood-ii-the-chosen-the-nightmare-levels/index.json b/site/public/v1/games/blood-ii-the-chosen-the-nightmare-levels/index.json new file mode 100644 index 000000000000..4869cc787eac --- /dev/null +++ b/site/public/v1/games/blood-ii-the-chosen-the-nightmare-levels/index.json @@ -0,0 +1,25 @@ +{ + "id": 18076, + "slug": "blood-ii-the-chosen-the-nightmare-levels", + "name": "Blood II: The Chosen - The Nightmare Levels", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110156641" + ], + "created_at": "2026-07-10T10:10:01.228168", + "updated_at": "2026-07-10T10:10:01.228168", + "url": "/v1/games/blood-ii-the-chosen-the-nightmare-levels" +} diff --git a/site/public/v1/games/blood-of-heroes/index.json b/site/public/v1/games/blood-of-heroes/index.json new file mode 100644 index 000000000000..9b841256c5ca --- /dev/null +++ b/site/public/v1/games/blood-of-heroes/index.json @@ -0,0 +1,36 @@ +{ + "id": 18114, + "slug": "blood-of-heroes", + "name": "Blood of Heroes", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 5", + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "fighting game" + ], + "stores": [], + "developers": [ + "Vizor Games" + ], + "publishers": [ + "Vizor Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106909009" + ], + "created_at": "2026-07-10T10:10:01.238580", + "updated_at": "2026-07-10T10:10:01.238580", + "url": "/v1/games/blood-of-heroes" +} diff --git a/site/public/v1/games/blood-plasma-pak/index.json b/site/public/v1/games/blood-plasma-pak/index.json new file mode 100644 index 000000000000..59b810a4bb9d --- /dev/null +++ b/site/public/v1/games/blood-plasma-pak/index.json @@ -0,0 +1,25 @@ +{ + "id": 18135, + "slug": "blood-plasma-pak", + "name": "Blood: Plasma Pak", + "release_date": "1997-09-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110160727" + ], + "created_at": "2026-07-10T10:10:01.243333", + "updated_at": "2026-07-10T10:10:01.243333", + "url": "/v1/games/blood-plasma-pak" +} diff --git a/site/public/v1/games/bloodborne-the-old-hunters/index.json b/site/public/v1/games/bloodborne-the-old-hunters/index.json new file mode 100644 index 000000000000..be18916e690c --- /dev/null +++ b/site/public/v1/games/bloodborne-the-old-hunters/index.json @@ -0,0 +1,31 @@ +{ + "id": 18193, + "slug": "bloodborne-the-old-hunters", + "name": "Bloodborne: The Old Hunters", + "release_date": "2015-11-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 4" + ], + "genres": [ + "action game" + ], + "stores": [], + "developers": [ + "FromSoftware" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28360818" + ], + "created_at": "2026-07-10T10:10:01.259414", + "updated_at": "2026-07-10T10:10:01.259414", + "url": "/v1/games/bloodborne-the-old-hunters" +} diff --git a/site/public/v1/games/bloodrayne-the-shroud/index.json b/site/public/v1/games/bloodrayne-the-shroud/index.json new file mode 100644 index 000000000000..c7e1edf984b5 --- /dev/null +++ b/site/public/v1/games/bloodrayne-the-shroud/index.json @@ -0,0 +1,35 @@ +{ + "id": 18252, + "slug": "bloodrayne-the-shroud", + "name": "BloodRayne: The Shroud", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Nintendo 3DS", + "PlayStation 3" + ], + "genres": [ + "action game", + "hack and slash" + ], + "stores": [], + "developers": [ + "Majesco Entertainment" + ], + "publishers": [ + "Majesco Entertainment" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108547428" + ], + "created_at": "2026-07-10T10:10:01.303337", + "updated_at": "2026-07-10T10:10:01.303337", + "url": "/v1/games/bloodrayne-the-shroud" +} diff --git a/site/public/v1/games/bloodstrike/index.json b/site/public/v1/games/bloodstrike/index.json new file mode 100644 index 000000000000..b50943121237 --- /dev/null +++ b/site/public/v1/games/bloodstrike/index.json @@ -0,0 +1,30 @@ +{ + "id": 18273, + "slug": "bloodstrike", + "name": "Bloodstrike", + "release_date": "2013-09-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "XCloudGame", + "Microsoft Windows" + ], + "genres": [ + "first-person shooter" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60999620" + ], + "created_at": "2026-07-10T10:10:01.308982", + "updated_at": "2026-07-10T10:10:01.308982", + "url": "/v1/games/bloodstrike" +} diff --git a/site/public/v1/games/bloodsucker-pack/index.json b/site/public/v1/games/bloodsucker-pack/index.json new file mode 100644 index 000000000000..d05b826634fd --- /dev/null +++ b/site/public/v1/games/bloodsucker-pack/index.json @@ -0,0 +1,28 @@ +{ + "id": 18275, + "slug": "bloodsucker-pack", + "name": "Bloodsucker Pack", + "release_date": "2012-02-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 3", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60586786" + ], + "created_at": "2026-07-10T10:10:01.308982", + "updated_at": "2026-07-10T10:10:01.308982", + "url": "/v1/games/bloodsucker-pack" +} diff --git a/site/public/v1/games/bloons-td-6-q110797896/index.json b/site/public/v1/games/bloons-td-6-q110797896/index.json new file mode 100644 index 000000000000..4317aab58536 --- /dev/null +++ b/site/public/v1/games/bloons-td-6-q110797896/index.json @@ -0,0 +1,28 @@ +{ + "id": 18381, + "slug": "bloons-td-6-q110797896", + "name": "Bloons TD 6+", + "release_date": "2022-02-11", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "iPadOS", + "iOS" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110797896" + ], + "created_at": "2026-07-10T10:10:01.337000", + "updated_at": "2026-07-10T10:10:01.337000", + "url": "/v1/games/bloons-td-6-q110797896" +} diff --git a/site/public/v1/games/blue-gale-complete-pack/index.json b/site/public/v1/games/blue-gale-complete-pack/index.json new file mode 100644 index 000000000000..834315edf921 --- /dev/null +++ b/site/public/v1/games/blue-gale-complete-pack/index.json @@ -0,0 +1,36 @@ +{ + "id": 18490, + "slug": "blue-gale-complete-pack", + "name": "Blue Gale Complete Pack", + "release_date": "2018-12-21", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "visual novel", + "harem", + "eroge", + "slice of life" + ], + "stores": [], + "developers": [ + "Blue Gale" + ], + "publishers": [ + "Blue Gale" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125027966" + ], + "created_at": "2026-07-10T10:10:01.438648", + "updated_at": "2026-07-10T10:10:01.438648", + "url": "/v1/games/blue-gale-complete-pack" +} diff --git a/site/public/v1/games/blue-gale-memorial-collection/index.json b/site/public/v1/games/blue-gale-memorial-collection/index.json new file mode 100644 index 000000000000..0330d6de78c8 --- /dev/null +++ b/site/public/v1/games/blue-gale-memorial-collection/index.json @@ -0,0 +1,36 @@ +{ + "id": 18491, + "slug": "blue-gale-memorial-collection", + "name": "Blue Gale Memorial Collection", + "release_date": "2014-08-08", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "visual novel", + "harem", + "eroge", + "slice of life" + ], + "stores": [], + "developers": [ + "Blue Gale" + ], + "publishers": [ + "Blue Gale" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125025536" + ], + "created_at": "2026-07-10T10:10:01.439652", + "updated_at": "2026-07-10T10:10:01.439652", + "url": "/v1/games/blue-gale-memorial-collection" +} diff --git a/site/public/v1/games/blues-brothers-2-jukebox-adventure/index.json b/site/public/v1/games/blues-brothers-2-jukebox-adventure/index.json new file mode 100644 index 000000000000..10ea7eae60c2 --- /dev/null +++ b/site/public/v1/games/blues-brothers-2-jukebox-adventure/index.json @@ -0,0 +1,25 @@ +{ + "id": 18596, + "slug": "blues-brothers-2-jukebox-adventure", + "name": "Blues Brothers 2: Jukebox Adventure", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126186142" + ], + "created_at": "2026-07-10T10:10:01.483558", + "updated_at": "2026-07-10T10:10:01.483558", + "url": "/v1/games/blues-brothers-2-jukebox-adventure" +} diff --git a/site/public/v1/games/blur-2/index.json b/site/public/v1/games/blur-2/index.json new file mode 100644 index 000000000000..e469565db748 --- /dev/null +++ b/site/public/v1/games/blur-2/index.json @@ -0,0 +1,34 @@ +{ + "id": 18617, + "slug": "blur-2", + "name": "Blur 2", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 3", + "Microsoft Windows" + ], + "genres": [ + "arcade racing game" + ], + "stores": [], + "developers": [ + "Bizarre Creations" + ], + "publishers": [ + "Activision" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q119789649" + ], + "created_at": "2026-07-10T10:10:01.488558", + "updated_at": "2026-07-10T10:10:01.488558", + "url": "/v1/games/blur-2" +} diff --git a/site/public/v1/games/boing-q113517043/index.json b/site/public/v1/games/boing-q113517043/index.json new file mode 100644 index 000000000000..bef0cf078f65 --- /dev/null +++ b/site/public/v1/games/boing-q113517043/index.json @@ -0,0 +1,29 @@ +{ + "id": 18834, + "slug": "boing-q113517043", + "name": "Boing", + "release_date": "1984-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Commodore Amiga" + ], + "genres": [], + "stores": [], + "developers": [ + "Robert J. Mical" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113517043" + ], + "created_at": "2026-07-10T10:10:01.609384", + "updated_at": "2026-07-10T10:10:01.609384", + "url": "/v1/games/boing-q113517043" +} diff --git a/site/public/v1/games/bold-moves-q119947068/index.json b/site/public/v1/games/bold-moves-q119947068/index.json new file mode 100644 index 000000000000..329370a9012a --- /dev/null +++ b/site/public/v1/games/bold-moves-q119947068/index.json @@ -0,0 +1,28 @@ +{ + "id": 18884, + "slug": "bold-moves-q119947068", + "name": "Bold Moves+", + "release_date": "2023-06-09", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "iPadOS", + "iOS" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q119947068" + ], + "created_at": "2026-07-10T10:10:01.653973", + "updated_at": "2026-07-10T10:10:01.653973", + "url": "/v1/games/bold-moves-q119947068" +} diff --git a/site/public/v1/games/bomb-buddies/index.json b/site/public/v1/games/bomb-buddies/index.json new file mode 100644 index 000000000000..27e332bdf0e2 --- /dev/null +++ b/site/public/v1/games/bomb-buddies/index.json @@ -0,0 +1,25 @@ +{ + "id": 18926, + "slug": "bomb-buddies", + "name": "Bomb Buddies", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18500757" + ], + "created_at": "2026-07-10T10:10:01.693983", + "updated_at": "2026-07-10T10:10:01.693983", + "url": "/v1/games/bomb-buddies" +} diff --git a/site/public/v1/games/bomb-crypto/index.json b/site/public/v1/games/bomb-crypto/index.json new file mode 100644 index 000000000000..a267f7ef1935 --- /dev/null +++ b/site/public/v1/games/bomb-crypto/index.json @@ -0,0 +1,25 @@ +{ + "id": 18930, + "slug": "bomb-crypto", + "name": "Bomb Crypto", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112939933" + ], + "created_at": "2026-07-10T10:10:01.694983", + "updated_at": "2026-07-10T10:10:01.694983", + "url": "/v1/games/bomb-crypto" +} diff --git a/site/public/v1/games/bomberman-act-zero/index.json b/site/public/v1/games/bomberman-act-zero/index.json new file mode 100644 index 000000000000..84a715f40905 --- /dev/null +++ b/site/public/v1/games/bomberman-act-zero/index.json @@ -0,0 +1,35 @@ +{ + "id": 19018, + "slug": "bomberman-act-zero", + "name": "Bomberman: Act Zero", + "release_date": "2006-08-03", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "action game", + "maze video game", + "cyberpunk video game", + "science fiction video game" + ], + "stores": [], + "developers": [ + "Hudson Soft" + ], + "publishers": [ + "Konami", + "Hudson Soft" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2909697" + ], + "created_at": "2026-07-10T10:10:01.758500", + "updated_at": "2026-07-10T10:10:01.758500", + "url": "/v1/games/bomberman-act-zero" +} diff --git a/site/public/v1/games/bomberman-q104873002/index.json b/site/public/v1/games/bomberman-q104873002/index.json new file mode 100644 index 000000000000..465a9c21ea7a --- /dev/null +++ b/site/public/v1/games/bomberman-q104873002/index.json @@ -0,0 +1,25 @@ +{ + "id": 19052, + "slug": "bomberman-q104873002", + "name": "Bomberman", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q104873002" + ], + "created_at": "2026-07-10T10:10:01.782717", + "updated_at": "2026-07-10T10:10:01.782717", + "url": "/v1/games/bomberman-q104873002" +} diff --git a/site/public/v1/games/bonus-spin-x/index.json b/site/public/v1/games/bonus-spin-x/index.json new file mode 100644 index 000000000000..6066f270ede8 --- /dev/null +++ b/site/public/v1/games/bonus-spin-x/index.json @@ -0,0 +1,25 @@ +{ + "id": 19218, + "slug": "bonus-spin-x", + "name": "Bonus Spin X", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q97312609" + ], + "created_at": "2026-07-10T10:10:01.842348", + "updated_at": "2026-07-10T10:10:01.842348", + "url": "/v1/games/bonus-spin-x" +} diff --git a/site/public/v1/games/bonus-spin-z/index.json b/site/public/v1/games/bonus-spin-z/index.json new file mode 100644 index 000000000000..58961e8f93ae --- /dev/null +++ b/site/public/v1/games/bonus-spin-z/index.json @@ -0,0 +1,25 @@ +{ + "id": 19219, + "slug": "bonus-spin-z", + "name": "Bonus Spin Z", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q97312610" + ], + "created_at": "2026-07-10T10:10:01.842348", + "updated_at": "2026-07-10T10:10:01.842348", + "url": "/v1/games/bonus-spin-z" +} diff --git a/site/public/v1/games/book-of-hours-soundtrack-bundle/index.json b/site/public/v1/games/book-of-hours-soundtrack-bundle/index.json new file mode 100644 index 000000000000..e1ea575b23f9 --- /dev/null +++ b/site/public/v1/games/book-of-hours-soundtrack-bundle/index.json @@ -0,0 +1,37 @@ +{ + "id": 19286, + "slug": "book-of-hours-soundtrack-bundle", + "name": "BOOK OF HOURS + Soundtrack bundle", + "release_date": "2023-12-15", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "role-playing video game", + "simulation video game", + "point-and-click adventure", + "deck-building video game" + ], + "stores": [], + "developers": [ + "Weather Factory" + ], + "publishers": [ + "Weather Factory" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125720634" + ], + "created_at": "2026-07-10T10:10:01.859845", + "updated_at": "2026-07-10T10:10:01.859845", + "url": "/v1/games/book-of-hours-soundtrack-bundle" +} diff --git a/site/public/v1/games/boom-q67197270/index.json b/site/public/v1/games/boom-q67197270/index.json new file mode 100644 index 000000000000..d432786ec0bd --- /dev/null +++ b/site/public/v1/games/boom-q67197270/index.json @@ -0,0 +1,27 @@ +{ + "id": 19365, + "slug": "boom-q67197270", + "name": "Boom", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [ + "TeamTNT" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q67197270" + ], + "created_at": "2026-07-10T10:10:01.880923", + "updated_at": "2026-07-10T10:10:01.880923", + "url": "/v1/games/boom-q67197270" +} diff --git a/site/public/v1/games/borderlands-2-tiny-tina-s-assault-on-dragon-keep/index.json b/site/public/v1/games/borderlands-2-tiny-tina-s-assault-on-dragon-keep/index.json new file mode 100644 index 000000000000..d1573fa61079 --- /dev/null +++ b/site/public/v1/games/borderlands-2-tiny-tina-s-assault-on-dragon-keep/index.json @@ -0,0 +1,35 @@ +{ + "id": 19485, + "slug": "borderlands-2-tiny-tina-s-assault-on-dragon-keep", + "name": "Borderlands 2: Tiny Tina's Assault on Dragon Keep", + "release_date": "2013-06-25", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 3", + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "action role-playing game" + ], + "stores": [], + "developers": [ + "Gearbox Software" + ], + "publishers": [ + "2K" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120458977" + ], + "created_at": "2026-07-10T10:10:01.913504", + "updated_at": "2026-07-10T10:10:01.913504", + "url": "/v1/games/borderlands-2-tiny-tina-s-assault-on-dragon-keep" +} diff --git a/site/public/v1/games/borderlands-legendary-collection/index.json b/site/public/v1/games/borderlands-legendary-collection/index.json new file mode 100644 index 000000000000..32a54b5d366e --- /dev/null +++ b/site/public/v1/games/borderlands-legendary-collection/index.json @@ -0,0 +1,31 @@ +{ + "id": 19492, + "slug": "borderlands-legendary-collection", + "name": "Borderlands Legendary Collection", + "release_date": "2020-05-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 4" + ], + "genres": [ + "action game" + ], + "stores": [], + "developers": [], + "publishers": [ + "2K" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q114228639" + ], + "created_at": "2026-07-10T10:10:01.928513", + "updated_at": "2026-07-10T10:10:01.928513", + "url": "/v1/games/borderlands-legendary-collection" +} diff --git a/site/public/v1/games/brainbread/index.json b/site/public/v1/games/brainbread/index.json new file mode 100644 index 000000000000..b885b9ed2870 --- /dev/null +++ b/site/public/v1/games/brainbread/index.json @@ -0,0 +1,35 @@ +{ + "id": 20106, + "slug": "brainbread", + "name": "BrainBread", + "release_date": "2004-09-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "survival horror", + "zombie apocalyptic video game" + ], + "stores": [], + "developers": [ + "IronOak Studios" + ], + "publishers": [ + "IronOak Studios" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q67773070" + ], + "created_at": "2026-07-10T10:10:02.127700", + "updated_at": "2026-07-10T10:10:02.127700", + "url": "/v1/games/brainbread" +} diff --git a/site/public/v1/games/brashs-super-games-pack/index.json b/site/public/v1/games/brashs-super-games-pack/index.json new file mode 100644 index 000000000000..14a396432dcc --- /dev/null +++ b/site/public/v1/games/brashs-super-games-pack/index.json @@ -0,0 +1,25 @@ +{ + "id": 20153, + "slug": "brashs-super-games-pack", + "name": "Brashs Super Games Pack", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126184550" + ], + "created_at": "2026-07-10T10:10:02.140695", + "updated_at": "2026-07-10T10:10:02.140695", + "url": "/v1/games/brashs-super-games-pack" +} diff --git a/site/public/v1/games/breach-q112275098/index.json b/site/public/v1/games/breach-q112275098/index.json new file mode 100644 index 000000000000..12e3f40cd169 --- /dev/null +++ b/site/public/v1/games/breach-q112275098/index.json @@ -0,0 +1,25 @@ +{ + "id": 20328, + "slug": "breach-q112275098", + "name": "Breach", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112275098" + ], + "created_at": "2026-07-10T10:10:02.186656", + "updated_at": "2026-07-10T10:10:02.186656", + "url": "/v1/games/breach-q112275098" +} diff --git a/site/public/v1/games/breakaway-q28453070/index.json b/site/public/v1/games/breakaway-q28453070/index.json new file mode 100644 index 000000000000..4db24e5bd574 --- /dev/null +++ b/site/public/v1/games/breakaway-q28453070/index.json @@ -0,0 +1,31 @@ +{ + "id": 20409, + "slug": "breakaway-q28453070", + "name": "Breakaway", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "beat 'em up" + ], + "stores": [], + "developers": [ + "Double Helix Games" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28453070" + ], + "created_at": "2026-07-10T10:10:02.207741", + "updated_at": "2026-07-10T10:10:02.207741", + "url": "/v1/games/breakaway-q28453070" +} diff --git a/site/public/v1/games/breakaway/index.json b/site/public/v1/games/breakaway/index.json new file mode 100644 index 000000000000..02286311ecec --- /dev/null +++ b/site/public/v1/games/breakaway/index.json @@ -0,0 +1,34 @@ +{ + "id": 20410, + "slug": "breakaway", + "name": "Breakaway", + "release_date": "2010-06-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "web browser" + ], + "genres": [ + "educational video game", + "association football video game" + ], + "stores": [], + "developers": [ + "Champlain College" + ], + "publishers": [ + "Champlain College" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q26834059" + ], + "created_at": "2026-07-10T10:10:02.208767", + "updated_at": "2026-07-10T10:10:02.208767", + "url": "/v1/games/breakaway" +} diff --git a/site/public/v1/games/breakfast-blast/index.json b/site/public/v1/games/breakfast-blast/index.json new file mode 100644 index 000000000000..62822fa460c3 --- /dev/null +++ b/site/public/v1/games/breakfast-blast/index.json @@ -0,0 +1,25 @@ +{ + "id": 20427, + "slug": "breakfast-blast", + "name": "Breakfast Blast", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q128014862" + ], + "created_at": "2026-07-10T10:10:02.212368", + "updated_at": "2026-07-10T10:10:02.212368", + "url": "/v1/games/breakfast-blast" +} diff --git a/site/public/v1/games/breakoutx/index.json b/site/public/v1/games/breakoutx/index.json new file mode 100644 index 000000000000..ab622475d85b --- /dev/null +++ b/site/public/v1/games/breakoutx/index.json @@ -0,0 +1,33 @@ +{ + "id": 20476, + "slug": "breakoutx", + "name": "BreakOutX", + "release_date": "2010-10-10", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 3" + ], + "genres": [ + "Breakout clone" + ], + "stores": [], + "developers": [ + "Lachrymose" + ], + "publishers": [ + "Lachrymose" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124047471" + ], + "created_at": "2026-07-10T10:10:02.225349", + "updated_at": "2026-07-10T10:10:02.225349", + "url": "/v1/games/breakoutx" +} diff --git a/site/public/v1/games/bridge-constructor-q110797838/index.json b/site/public/v1/games/bridge-constructor-q110797838/index.json new file mode 100644 index 000000000000..a3d32c90e7f1 --- /dev/null +++ b/site/public/v1/games/bridge-constructor-q110797838/index.json @@ -0,0 +1,29 @@ +{ + "id": 20662, + "slug": "bridge-constructor-q110797838", + "name": "Bridge Constructor+", + "release_date": "2022-02-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "iPadOS", + "iOS", + "macOS" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110797838" + ], + "created_at": "2026-07-10T10:10:02.282705", + "updated_at": "2026-07-10T10:10:02.282705", + "url": "/v1/games/bridge-constructor-q110797838" +} diff --git a/site/public/v1/games/bright-paw-definitive-edition/index.json b/site/public/v1/games/bright-paw-definitive-edition/index.json new file mode 100644 index 000000000000..d7a21fea44ab --- /dev/null +++ b/site/public/v1/games/bright-paw-definitive-edition/index.json @@ -0,0 +1,32 @@ +{ + "id": 20730, + "slug": "bright-paw-definitive-edition", + "name": "Bright Paw: Definitive Edition", + "release_date": "2022-07-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Radical Forge" + ], + "publishers": [ + "Rogue Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115459526" + ], + "created_at": "2026-07-10T10:10:02.299758", + "updated_at": "2026-07-10T10:10:02.299758", + "url": "/v1/games/bright-paw-definitive-edition" +} diff --git a/site/public/v1/games/brink-agents-of-change/index.json b/site/public/v1/games/brink-agents-of-change/index.json new file mode 100644 index 000000000000..5c25e57986ec --- /dev/null +++ b/site/public/v1/games/brink-agents-of-change/index.json @@ -0,0 +1,34 @@ +{ + "id": 20779, + "slug": "brink-agents-of-change", + "name": "Brink: Agents of Change", + "release_date": "2011-08-02", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 3", + "Microsoft Windows" + ], + "genres": [ + "first-person shooter" + ], + "stores": [], + "developers": [ + "Splash Damage" + ], + "publishers": [ + "Bethesda Softworks" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q69914262" + ], + "created_at": "2026-07-10T10:10:02.313413", + "updated_at": "2026-07-10T10:10:02.313413", + "url": "/v1/games/brink-agents-of-change" +} diff --git a/site/public/v1/games/brink-complete-pack/index.json b/site/public/v1/games/brink-complete-pack/index.json new file mode 100644 index 000000000000..e951e4aed8fd --- /dev/null +++ b/site/public/v1/games/brink-complete-pack/index.json @@ -0,0 +1,33 @@ +{ + "id": 20780, + "slug": "brink-complete-pack", + "name": "Brink: Complete Pack", + "release_date": "2011-12-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter" + ], + "stores": [], + "developers": [ + "Splash Damage" + ], + "publishers": [ + "Bethesda Softworks" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q69920812" + ], + "created_at": "2026-07-10T10:10:02.313413", + "updated_at": "2026-07-10T10:10:02.313413", + "url": "/v1/games/brink-complete-pack" +} diff --git a/site/public/v1/games/brink-doom-the-psycho-combo-pack/index.json b/site/public/v1/games/brink-doom-the-psycho-combo-pack/index.json new file mode 100644 index 000000000000..e24da09022c7 --- /dev/null +++ b/site/public/v1/games/brink-doom-the-psycho-combo-pack/index.json @@ -0,0 +1,34 @@ +{ + "id": 20781, + "slug": "brink-doom-the-psycho-combo-pack", + "name": "Brink: Doom/The Psycho Combo Pack", + "release_date": "2011-08-23", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 3", + "Microsoft Windows" + ], + "genres": [ + "first-person shooter" + ], + "stores": [], + "developers": [ + "Splash Damage" + ], + "publishers": [ + "Bethesda Softworks" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q69918191" + ], + "created_at": "2026-07-10T10:10:02.313413", + "updated_at": "2026-07-10T10:10:02.314396", + "url": "/v1/games/brink-doom-the-psycho-combo-pack" +} diff --git a/site/public/v1/games/brink-fallout-specops-combo-pack/index.json b/site/public/v1/games/brink-fallout-specops-combo-pack/index.json new file mode 100644 index 000000000000..5b46282f8977 --- /dev/null +++ b/site/public/v1/games/brink-fallout-specops-combo-pack/index.json @@ -0,0 +1,34 @@ +{ + "id": 20782, + "slug": "brink-fallout-specops-combo-pack", + "name": "Brink: Fallout/SpecOps Combo Pack", + "release_date": "2011-08-23", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 3", + "Microsoft Windows" + ], + "genres": [ + "first-person shooter" + ], + "stores": [], + "developers": [ + "Splash Damage" + ], + "publishers": [ + "Bethesda Softworks" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q69919277" + ], + "created_at": "2026-07-10T10:10:02.314396", + "updated_at": "2026-07-10T10:10:02.314396", + "url": "/v1/games/brink-fallout-specops-combo-pack" +} diff --git a/site/public/v1/games/brookhaven-rp/index.json b/site/public/v1/games/brookhaven-rp/index.json new file mode 100644 index 000000000000..fc920cd5e62a --- /dev/null +++ b/site/public/v1/games/brookhaven-rp/index.json @@ -0,0 +1,32 @@ +{ + "id": 20949, + "slug": "brookhaven-rp", + "name": "Brookhaven RP", + "release_date": "2020-04-20", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "role-playing video game", + "role-playing game", + "life simulation game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131737571" + ], + "created_at": "2026-07-10T10:10:02.362592", + "updated_at": "2026-07-10T10:10:02.362592", + "url": "/v1/games/brookhaven-rp" +} diff --git a/site/public/v1/games/brothers-in-arms-double-time/index.json b/site/public/v1/games/brothers-in-arms-double-time/index.json new file mode 100644 index 000000000000..bd4a1a1558fe --- /dev/null +++ b/site/public/v1/games/brothers-in-arms-double-time/index.json @@ -0,0 +1,32 @@ +{ + "id": 20985, + "slug": "brothers-in-arms-double-time", + "name": "Brothers in Arms: Double Time", + "release_date": "2008-09-23", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Wii" + ], + "genres": [ + "first-person shooter" + ], + "stores": [], + "developers": [ + "Gearbox Software" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q865282" + ], + "created_at": "2026-07-10T10:10:02.371600", + "updated_at": "2026-07-10T10:10:02.371600", + "url": "/v1/games/brothers-in-arms-double-time" +} diff --git a/site/public/v1/games/bsd-games/index.json b/site/public/v1/games/bsd-games/index.json new file mode 100644 index 000000000000..5498965fd8e6 --- /dev/null +++ b/site/public/v1/games/bsd-games/index.json @@ -0,0 +1,27 @@ +{ + "id": 21095, + "slug": "bsd-games", + "name": "BSD games", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "puzzle video game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q21081848" + ], + "created_at": "2026-07-10T10:10:02.428428", + "updated_at": "2026-07-10T10:10:02.428428", + "url": "/v1/games/bsd-games" +} diff --git a/site/public/v1/games/bubble-bobble-nostalgie/index.json b/site/public/v1/games/bubble-bobble-nostalgie/index.json new file mode 100644 index 000000000000..f9117755badc --- /dev/null +++ b/site/public/v1/games/bubble-bobble-nostalgie/index.json @@ -0,0 +1,25 @@ +{ + "id": 21128, + "slug": "bubble-bobble-nostalgie", + "name": "Bubble Bobble Nostalgie", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140471948" + ], + "created_at": "2026-07-10T10:10:02.436434", + "updated_at": "2026-07-10T10:10:02.436434", + "url": "/v1/games/bubble-bobble-nostalgie" +} diff --git a/site/public/v1/games/buddy-thunderstruck-the-maybe-pile/index.json b/site/public/v1/games/buddy-thunderstruck-the-maybe-pile/index.json new file mode 100644 index 000000000000..94a66a435ae3 --- /dev/null +++ b/site/public/v1/games/buddy-thunderstruck-the-maybe-pile/index.json @@ -0,0 +1,27 @@ +{ + "id": 21280, + "slug": "buddy-thunderstruck-the-maybe-pile", + "name": "Buddy Thunderstruck: The Maybe Pile", + "release_date": "2017-07-14", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "full motion video" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q47541302" + ], + "created_at": "2026-07-10T10:10:02.517372", + "updated_at": "2026-07-10T10:10:02.517372", + "url": "/v1/games/buddy-thunderstruck-the-maybe-pile" +} diff --git a/site/public/v1/games/bugsnax-the-isle-of-bigsnax/index.json b/site/public/v1/games/bugsnax-the-isle-of-bigsnax/index.json new file mode 100644 index 000000000000..b2cead405b59 --- /dev/null +++ b/site/public/v1/games/bugsnax-the-isle-of-bigsnax/index.json @@ -0,0 +1,30 @@ +{ + "id": 21385, + "slug": "bugsnax-the-isle-of-bigsnax", + "name": "Bugsnax: The Isle of BIGsnax", + "release_date": "2022-04-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 5", + "PlayStation 4" + ], + "genres": [], + "stores": [], + "developers": [ + "Young Horses" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136511456" + ], + "created_at": "2026-07-10T10:10:02.544426", + "updated_at": "2026-07-10T10:10:02.544426", + "url": "/v1/games/bugsnax-the-isle-of-bigsnax" +} diff --git a/site/public/v1/games/bully-2/index.json b/site/public/v1/games/bully-2/index.json new file mode 100644 index 000000000000..370bc7779db9 --- /dev/null +++ b/site/public/v1/games/bully-2/index.json @@ -0,0 +1,29 @@ +{ + "id": 21595, + "slug": "bully-2", + "name": "Bully 2", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "action-adventure game" + ], + "stores": [], + "developers": [ + "Rockstar New England" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130011086" + ], + "created_at": "2026-07-10T10:10:02.607457", + "updated_at": "2026-07-10T10:10:02.607457", + "url": "/v1/games/bully-2" +} diff --git a/site/public/v1/games/bundle-for-racial-justice-and-equality/index.json b/site/public/v1/games/bundle-for-racial-justice-and-equality/index.json new file mode 100644 index 000000000000..4cb398fbc63b --- /dev/null +++ b/site/public/v1/games/bundle-for-racial-justice-and-equality/index.json @@ -0,0 +1,25 @@ +{ + "id": 21666, + "slug": "bundle-for-racial-justice-and-equality", + "name": "Bundle for Racial Justice and Equality", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q96354927" + ], + "created_at": "2026-07-10T10:10:02.626055", + "updated_at": "2026-07-10T10:10:02.626055", + "url": "/v1/games/bundle-for-racial-justice-and-equality" +} diff --git a/site/public/v1/games/bundle-for-ukraine/index.json b/site/public/v1/games/bundle-for-ukraine/index.json new file mode 100644 index 000000000000..ddd5baaa9b3e --- /dev/null +++ b/site/public/v1/games/bundle-for-ukraine/index.json @@ -0,0 +1,25 @@ +{ + "id": 21667, + "slug": "bundle-for-ukraine", + "name": "Bundle for Ukraine", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111242027" + ], + "created_at": "2026-07-10T10:10:02.627066", + "updated_at": "2026-07-10T10:10:02.627066", + "url": "/v1/games/bundle-for-ukraine" +} diff --git a/site/public/v1/games/bungo-and-alchemist/index.json b/site/public/v1/games/bungo-and-alchemist/index.json new file mode 100644 index 000000000000..30434031fe02 --- /dev/null +++ b/site/public/v1/games/bungo-and-alchemist/index.json @@ -0,0 +1,25 @@ +{ + "id": 21671, + "slug": "bungo-and-alchemist", + "name": "Bungo and Alchemist", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28686422" + ], + "created_at": "2026-07-10T10:10:02.628039", + "updated_at": "2026-07-10T10:10:02.628039", + "url": "/v1/games/bungo-and-alchemist" +} diff --git a/site/public/v1/games/burgerzilla/index.json b/site/public/v1/games/burgerzilla/index.json new file mode 100644 index 000000000000..9fbea4b3752f --- /dev/null +++ b/site/public/v1/games/burgerzilla/index.json @@ -0,0 +1,25 @@ +{ + "id": 21848, + "slug": "burgerzilla", + "name": "Burgerzilla", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q128014863" + ], + "created_at": "2026-07-10T10:10:02.675021", + "updated_at": "2026-07-10T10:10:02.675021", + "url": "/v1/games/burgerzilla" +} diff --git a/site/public/v1/games/burning-car-theme/index.json b/site/public/v1/games/burning-car-theme/index.json new file mode 100644 index 000000000000..371f80fd2cba --- /dev/null +++ b/site/public/v1/games/burning-car-theme/index.json @@ -0,0 +1,31 @@ +{ + "id": 21911, + "slug": "burning-car-theme", + "name": "Burning Car Theme", + "release_date": "2018-12-21", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 4" + ], + "genres": [], + "stores": [], + "developers": [ + "Sony Interactive Entertainment" + ], + "publishers": [ + "Sony Interactive Entertainment" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q85044875" + ], + "created_at": "2026-07-10T10:10:02.692022", + "updated_at": "2026-07-10T10:10:02.692022", + "url": "/v1/games/burning-car-theme" +} diff --git a/site/public/v1/games/buster-bros-collection/index.json b/site/public/v1/games/buster-bros-collection/index.json new file mode 100644 index 000000000000..8cdb5c3d0a83 --- /dev/null +++ b/site/public/v1/games/buster-bros-collection/index.json @@ -0,0 +1,25 @@ +{ + "id": 22062, + "slug": "buster-bros-collection", + "name": "Buster Bros. Collection", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63049483" + ], + "created_at": "2026-07-10T10:10:02.730947", + "updated_at": "2026-07-10T10:10:02.730947", + "url": "/v1/games/buster-bros-collection" +} diff --git a/site/public/v1/games/c-h-a-i-n-q124307573/index.json b/site/public/v1/games/c-h-a-i-n-q124307573/index.json new file mode 100644 index 000000000000..d9edecf6e758 --- /dev/null +++ b/site/public/v1/games/c-h-a-i-n-q124307573/index.json @@ -0,0 +1,29 @@ +{ + "id": 22250, + "slug": "c-h-a-i-n-q124307573", + "name": "C.H.A.I.N.", + "release_date": "2020-10-31", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "adventure video game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124307573" + ], + "created_at": "2026-07-10T10:10:02.780920", + "updated_at": "2026-07-10T10:10:02.780920", + "url": "/v1/games/c-h-a-i-n-q124307573" +} diff --git a/site/public/v1/games/cabbage/index.json b/site/public/v1/games/cabbage/index.json new file mode 100644 index 000000000000..e712d7357e62 --- /dev/null +++ b/site/public/v1/games/cabbage/index.json @@ -0,0 +1,33 @@ +{ + "id": 22298, + "slug": "cabbage", + "name": "Cabbage", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Nintendo 64" + ], + "genres": [ + "life simulation game" + ], + "stores": [], + "developers": [ + "Nintendo Entertainment Analysis & Development" + ], + "publishers": [ + "Nintendo" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q20982922" + ], + "created_at": "2026-07-10T10:10:02.793934", + "updated_at": "2026-07-10T10:10:02.793934", + "url": "/v1/games/cabbage" +} diff --git a/site/public/v1/games/cabela-s-big-game-hunter-ii-open-season/index.json b/site/public/v1/games/cabela-s-big-game-hunter-ii-open-season/index.json new file mode 100644 index 000000000000..3df29bdf5b64 --- /dev/null +++ b/site/public/v1/games/cabela-s-big-game-hunter-ii-open-season/index.json @@ -0,0 +1,31 @@ +{ + "id": 22317, + "slug": "cabela-s-big-game-hunter-ii-open-season", + "name": "Cabela's Big Game Hunter II: Open Season", + "release_date": "1998-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Activision" + ], + "publishers": [ + "Activision" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5015327" + ], + "created_at": "2026-07-10T10:10:02.798028", + "updated_at": "2026-07-10T10:10:02.798028", + "url": "/v1/games/cabela-s-big-game-hunter-ii-open-season" +} diff --git a/site/public/v1/games/cabela-s-big-game-hunter-iii-the-next-harvest/index.json b/site/public/v1/games/cabela-s-big-game-hunter-iii-the-next-harvest/index.json new file mode 100644 index 000000000000..2697ada307cc --- /dev/null +++ b/site/public/v1/games/cabela-s-big-game-hunter-iii-the-next-harvest/index.json @@ -0,0 +1,31 @@ +{ + "id": 22319, + "slug": "cabela-s-big-game-hunter-iii-the-next-harvest", + "name": "Cabela's Big Game Hunter III: The Next Harvest", + "release_date": "1999-09-14", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Elsinore Multimedia" + ], + "publishers": [ + "Activision" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5015328" + ], + "created_at": "2026-07-10T10:10:02.798028", + "updated_at": "2026-07-10T10:10:02.798028", + "url": "/v1/games/cabela-s-big-game-hunter-iii-the-next-harvest" +} diff --git a/site/public/v1/games/cadaver-the-payoff/index.json b/site/public/v1/games/cadaver-the-payoff/index.json new file mode 100644 index 000000000000..8dd1fd870d23 --- /dev/null +++ b/site/public/v1/games/cadaver-the-payoff/index.json @@ -0,0 +1,28 @@ +{ + "id": 22388, + "slug": "cadaver-the-payoff", + "name": "Cadaver: The Payoff", + "release_date": "1991-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Atari ST", + "Commodore Amiga" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139738379" + ], + "created_at": "2026-07-10T10:10:02.815567", + "updated_at": "2026-07-10T10:10:02.815567", + "url": "/v1/games/cadaver-the-payoff" +} diff --git a/site/public/v1/games/calico-doom/index.json b/site/public/v1/games/calico-doom/index.json new file mode 100644 index 000000000000..a3ff61d9347a --- /dev/null +++ b/site/public/v1/games/calico-doom/index.json @@ -0,0 +1,27 @@ +{ + "id": 22538, + "slug": "calico-doom", + "name": "Calico Doom", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "personal computer" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124414098" + ], + "created_at": "2026-07-10T10:10:02.885675", + "updated_at": "2026-07-10T10:10:02.885675", + "url": "/v1/games/calico-doom" +} diff --git a/site/public/v1/games/call-of-cthulhu-destiny-s-end/index.json b/site/public/v1/games/call-of-cthulhu-destiny-s-end/index.json new file mode 100644 index 000000000000..689a8c6c2518 --- /dev/null +++ b/site/public/v1/games/call-of-cthulhu-destiny-s-end/index.json @@ -0,0 +1,29 @@ +{ + "id": 22571, + "slug": "call-of-cthulhu-destiny-s-end", + "name": "Call of Cthulhu: Destiny's End", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "survival horror" + ], + "stores": [], + "developers": [ + "Headfirst Productions" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1151573" + ], + "created_at": "2026-07-10T10:10:02.894727", + "updated_at": "2026-07-10T10:10:02.894727", + "url": "/v1/games/call-of-cthulhu-destiny-s-end" +} diff --git a/site/public/v1/games/call-of-duty-black-ops-5/index.json b/site/public/v1/games/call-of-duty-black-ops-5/index.json new file mode 100644 index 000000000000..44c21f2f3e0c --- /dev/null +++ b/site/public/v1/games/call-of-duty-black-ops-5/index.json @@ -0,0 +1,25 @@ +{ + "id": 22585, + "slug": "call-of-duty-black-ops-5", + "name": "Call of Duty: Black Ops 5", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110996822" + ], + "created_at": "2026-07-10T10:10:02.897721", + "updated_at": "2026-07-10T10:10:02.897721", + "url": "/v1/games/call-of-duty-black-ops-5" +} diff --git a/site/public/v1/games/call-of-duty-black-ops-iii-zombies-chronicles/index.json b/site/public/v1/games/call-of-duty-black-ops-iii-zombies-chronicles/index.json new file mode 100644 index 000000000000..56649f32fa4b --- /dev/null +++ b/site/public/v1/games/call-of-duty-black-ops-iii-zombies-chronicles/index.json @@ -0,0 +1,25 @@ +{ + "id": 22588, + "slug": "call-of-duty-black-ops-iii-zombies-chronicles", + "name": "Call of Duty: Black Ops III - Zombies Chronicles", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140471199" + ], + "created_at": "2026-07-10T10:10:02.898645", + "updated_at": "2026-07-10T10:10:02.898645", + "url": "/v1/games/call-of-duty-black-ops-iii-zombies-chronicles" +} diff --git a/site/public/v1/games/call-of-duty-black-ops-mac-edition/index.json b/site/public/v1/games/call-of-duty-black-ops-mac-edition/index.json new file mode 100644 index 000000000000..ccb2f5ca0eb6 --- /dev/null +++ b/site/public/v1/games/call-of-duty-black-ops-mac-edition/index.json @@ -0,0 +1,27 @@ +{ + "id": 22590, + "slug": "call-of-duty-black-ops-mac-edition", + "name": "Call of Duty: Black Ops - Mac Edition", + "release_date": "2012-09-27", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135014486" + ], + "created_at": "2026-07-10T10:10:02.898645", + "updated_at": "2026-07-10T10:10:02.898645", + "url": "/v1/games/call-of-duty-black-ops-mac-edition" +} diff --git a/site/public/v1/games/call-of-duty-future-warfare/index.json b/site/public/v1/games/call-of-duty-future-warfare/index.json new file mode 100644 index 000000000000..e435a51b45bb --- /dev/null +++ b/site/public/v1/games/call-of-duty-future-warfare/index.json @@ -0,0 +1,27 @@ +{ + "id": 22596, + "slug": "call-of-duty-future-warfare", + "name": "Call of Duty: Future Warfare", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [ + "Neversoft" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124378413" + ], + "created_at": "2026-07-10T10:10:02.899644", + "updated_at": "2026-07-10T10:10:02.899644", + "url": "/v1/games/call-of-duty-future-warfare" +} diff --git a/site/public/v1/games/call-of-duty-legacy/index.json b/site/public/v1/games/call-of-duty-legacy/index.json new file mode 100644 index 000000000000..127a33729baf --- /dev/null +++ b/site/public/v1/games/call-of-duty-legacy/index.json @@ -0,0 +1,25 @@ +{ + "id": 22601, + "slug": "call-of-duty-legacy", + "name": "Call of Duty: Legacy", + "release_date": "2007-11-14", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131446405" + ], + "created_at": "2026-07-10T10:10:02.901710", + "updated_at": "2026-07-10T10:10:02.901710", + "url": "/v1/games/call-of-duty-legacy" +} diff --git a/site/public/v1/games/call-of-duty-modern-warfare-iii-tracer-pack-ghost-punk-pro-pack/index.json b/site/public/v1/games/call-of-duty-modern-warfare-iii-tracer-pack-ghost-punk-pro-pack/index.json new file mode 100644 index 000000000000..7686086c7088 --- /dev/null +++ b/site/public/v1/games/call-of-duty-modern-warfare-iii-tracer-pack-ghost-punk-pro-pack/index.json @@ -0,0 +1,33 @@ +{ + "id": 22606, + "slug": "call-of-duty-modern-warfare-iii-tracer-pack-ghost-punk-pro-pack", + "name": "Call of Duty: Modern Warfare III - Tracer Pack: Ghost Punk Pro Pack", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter" + ], + "stores": [], + "developers": [ + "Sledgehammer Games" + ], + "publishers": [ + "Activision" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131406347" + ], + "created_at": "2026-07-10T10:10:02.902694", + "updated_at": "2026-07-10T10:10:02.902694", + "url": "/v1/games/call-of-duty-modern-warfare-iii-tracer-pack-ghost-punk-pro-pack" +} diff --git a/site/public/v1/games/call-of-duty-modern-warfare-iii-tracer-pack-underboss-pro-pack/index.json b/site/public/v1/games/call-of-duty-modern-warfare-iii-tracer-pack-underboss-pro-pack/index.json new file mode 100644 index 000000000000..a73d4f0ffe72 --- /dev/null +++ b/site/public/v1/games/call-of-duty-modern-warfare-iii-tracer-pack-underboss-pro-pack/index.json @@ -0,0 +1,33 @@ +{ + "id": 22607, + "slug": "call-of-duty-modern-warfare-iii-tracer-pack-underboss-pro-pack", + "name": "Call of Duty: Modern Warfare III - Tracer Pack: Underboss Pro Pack", + "release_date": "2024-08-02", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter" + ], + "stores": [], + "developers": [ + "Sledgehammer Games" + ], + "publishers": [ + "Activision" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131520022" + ], + "created_at": "2026-07-10T10:10:02.902694", + "updated_at": "2026-07-10T10:10:02.902694", + "url": "/v1/games/call-of-duty-modern-warfare-iii-tracer-pack-underboss-pro-pack" +} diff --git a/site/public/v1/games/call-of-duty-united-offensive/index.json b/site/public/v1/games/call-of-duty-united-offensive/index.json new file mode 100644 index 000000000000..134afb68644c --- /dev/null +++ b/site/public/v1/games/call-of-duty-united-offensive/index.json @@ -0,0 +1,32 @@ +{ + "id": 22615, + "slug": "call-of-duty-united-offensive", + "name": "Call of Duty: United Offensive", + "release_date": "2004-09-14", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "first-person shooter" + ], + "stores": [], + "developers": [], + "publishers": [ + "Activision" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q846863" + ], + "created_at": "2026-07-10T10:10:02.903738", + "updated_at": "2026-07-10T10:10:02.903738", + "url": "/v1/games/call-of-duty-united-offensive" +} diff --git a/site/public/v1/games/call-of-vita-hackzone/index.json b/site/public/v1/games/call-of-vita-hackzone/index.json new file mode 100644 index 000000000000..cac140f8a065 --- /dev/null +++ b/site/public/v1/games/call-of-vita-hackzone/index.json @@ -0,0 +1,33 @@ +{ + "id": 22658, + "slug": "call-of-vita-hackzone", + "name": "Call of Vita: Hackzone", + "release_date": "2023-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation Vita" + ], + "genres": [ + "first-person shooter" + ], + "stores": [], + "developers": [ + "VitaDev Games" + ], + "publishers": [ + "VitaDev Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124044122" + ], + "created_at": "2026-07-10T10:10:02.914398", + "updated_at": "2026-07-10T10:10:02.914398", + "url": "/v1/games/call-of-vita-hackzone" +} diff --git a/site/public/v1/games/call-to-arms-gates-of-hell-ostfront/index.json b/site/public/v1/games/call-to-arms-gates-of-hell-ostfront/index.json new file mode 100644 index 000000000000..882ebda52476 --- /dev/null +++ b/site/public/v1/games/call-to-arms-gates-of-hell-ostfront/index.json @@ -0,0 +1,29 @@ +{ + "id": 22665, + "slug": "call-to-arms-gates-of-hell-ostfront", + "name": "Call to Arms - Gates of Hell: Ostfront", + "release_date": "2021-06-11", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Digitalmindsoft" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112325384" + ], + "created_at": "2026-07-10T10:10:02.916397", + "updated_at": "2026-07-10T10:10:02.916397", + "url": "/v1/games/call-to-arms-gates-of-hell-ostfront" +} diff --git a/site/public/v1/games/call-to-arms-gates-of-hell-talvisota/index.json b/site/public/v1/games/call-to-arms-gates-of-hell-talvisota/index.json new file mode 100644 index 000000000000..a31ec074ccd8 --- /dev/null +++ b/site/public/v1/games/call-to-arms-gates-of-hell-talvisota/index.json @@ -0,0 +1,27 @@ +{ + "id": 22666, + "slug": "call-to-arms-gates-of-hell-talvisota", + "name": "Call to Arms - Gates of Hell: Talvisota", + "release_date": "2022-06-08", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112325401" + ], + "created_at": "2026-07-10T10:10:02.917405", + "updated_at": "2026-07-10T10:10:02.917405", + "url": "/v1/games/call-to-arms-gates-of-hell-talvisota" +} diff --git a/site/public/v1/games/call-to-arms-q57974040/index.json b/site/public/v1/games/call-to-arms-q57974040/index.json new file mode 100644 index 000000000000..b8f00c1c4721 --- /dev/null +++ b/site/public/v1/games/call-to-arms-q57974040/index.json @@ -0,0 +1,25 @@ +{ + "id": 22668, + "slug": "call-to-arms-q57974040", + "name": "Call to Arms", + "release_date": "2011-12-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q57974040" + ], + "created_at": "2026-07-10T10:10:02.917405", + "updated_at": "2026-07-10T10:10:02.917405", + "url": "/v1/games/call-to-arms-q57974040" +} diff --git a/site/public/v1/games/caltron-6-in-1/index.json b/site/public/v1/games/caltron-6-in-1/index.json new file mode 100644 index 000000000000..21326e4bc389 --- /dev/null +++ b/site/public/v1/games/caltron-6-in-1/index.json @@ -0,0 +1,31 @@ +{ + "id": 22708, + "slug": "caltron-6-in-1", + "name": "Caltron 6 in 1", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Nintendo Entertainment System" + ], + "genres": [], + "stores": [], + "developers": [ + "NTDEC" + ], + "publishers": [ + "Home Entertainment Suppliers" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5024016" + ], + "created_at": "2026-07-10T10:10:02.928411", + "updated_at": "2026-07-10T10:10:02.928411", + "url": "/v1/games/caltron-6-in-1" +} diff --git a/site/public/v1/games/campaign-eckmuhl/index.json b/site/public/v1/games/campaign-eckmuhl/index.json new file mode 100644 index 000000000000..2ea0da346588 --- /dev/null +++ b/site/public/v1/games/campaign-eckmuhl/index.json @@ -0,0 +1,25 @@ +{ + "id": 22770, + "slug": "campaign-eckmuhl", + "name": "Campaign Eckmuhl", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140472968" + ], + "created_at": "2026-07-10T10:10:02.944338", + "updated_at": "2026-07-10T10:10:02.944338", + "url": "/v1/games/campaign-eckmuhl" +} diff --git a/site/public/v1/games/candy-box/index.json b/site/public/v1/games/candy-box/index.json new file mode 100644 index 000000000000..529de9d744c6 --- /dev/null +++ b/site/public/v1/games/candy-box/index.json @@ -0,0 +1,27 @@ +{ + "id": 22877, + "slug": "candy-box", + "name": "Candy Box", + "release_date": "2013-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "web browser" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q13048275" + ], + "created_at": "2026-07-10T10:10:03.761499", + "updated_at": "2026-07-10T10:10:03.761499", + "url": "/v1/games/candy-box" +} diff --git a/site/public/v1/games/candy-please-demo/index.json b/site/public/v1/games/candy-please-demo/index.json new file mode 100644 index 000000000000..b0cb7f3b53a5 --- /dev/null +++ b/site/public/v1/games/candy-please-demo/index.json @@ -0,0 +1,29 @@ +{ + "id": 22904, + "slug": "candy-please-demo", + "name": "Candy, Please! (Demo)", + "release_date": "2014-11-03", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [ + "Nostatic Software" + ], + "publishers": [ + "Nostatic Software" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126438217" + ], + "created_at": "2026-07-10T10:10:03.769475", + "updated_at": "2026-07-10T10:10:03.769475", + "url": "/v1/games/candy-please-demo" +} diff --git a/site/public/v1/games/candytron-3000/index.json b/site/public/v1/games/candytron-3000/index.json new file mode 100644 index 000000000000..10cda13c2d12 --- /dev/null +++ b/site/public/v1/games/candytron-3000/index.json @@ -0,0 +1,30 @@ +{ + "id": 22927, + "slug": "candytron-3000", + "name": "Candytron 3000", + "release_date": "2007-02-26", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "iOS", + "web browser" + ], + "genres": [ + "cooking simulation video game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125721913" + ], + "created_at": "2026-07-10T10:10:03.776405", + "updated_at": "2026-07-10T10:10:03.776405", + "url": "/v1/games/candytron-3000" +} diff --git a/site/public/v1/games/capcom-arcade-2nd-stadium/index.json b/site/public/v1/games/capcom-arcade-2nd-stadium/index.json new file mode 100644 index 000000000000..82656b17a5cf --- /dev/null +++ b/site/public/v1/games/capcom-arcade-2nd-stadium/index.json @@ -0,0 +1,39 @@ +{ + "id": 23034, + "slug": "capcom-arcade-2nd-stadium", + "name": "Capcom Arcade 2nd Stadium", + "release_date": "2022-07-21", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "puzzle video game", + "sports video game", + "fighting game", + "shooter game", + "arcade" + ], + "stores": [], + "developers": [ + "Capcom" + ], + "publishers": [ + "Capcom" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q114977033" + ], + "created_at": "2026-07-10T10:10:03.806531", + "updated_at": "2026-07-10T10:10:03.806531", + "url": "/v1/games/capcom-arcade-2nd-stadium" +} diff --git a/site/public/v1/games/capcom-arcade-stadium/index.json b/site/public/v1/games/capcom-arcade-stadium/index.json new file mode 100644 index 000000000000..0e4d2904895d --- /dev/null +++ b/site/public/v1/games/capcom-arcade-stadium/index.json @@ -0,0 +1,32 @@ +{ + "id": 23036, + "slug": "capcom-arcade-stadium", + "name": "Capcom Arcade Stadium", + "release_date": "2021-02-17", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Capcom" + ], + "publishers": [ + "Capcom" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q104880317" + ], + "created_at": "2026-07-10T10:10:03.806531", + "updated_at": "2026-07-10T10:10:03.806531", + "url": "/v1/games/capcom-arcade-stadium" +} diff --git a/site/public/v1/games/capcom-beat-em-up-bundle/index.json b/site/public/v1/games/capcom-beat-em-up-bundle/index.json new file mode 100644 index 000000000000..ef0300de18a9 --- /dev/null +++ b/site/public/v1/games/capcom-beat-em-up-bundle/index.json @@ -0,0 +1,30 @@ +{ + "id": 23038, + "slug": "capcom-beat-em-up-bundle", + "name": "Capcom Beat 'Em Up Bundle", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 4" + ], + "genres": [ + "beat 'em up", + "arcade" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q56751476" + ], + "created_at": "2026-07-10T10:10:03.807473", + "updated_at": "2026-07-10T10:10:03.807473", + "url": "/v1/games/capcom-beat-em-up-bundle" +} diff --git a/site/public/v1/games/capcom-classics-collection/index.json b/site/public/v1/games/capcom-classics-collection/index.json new file mode 100644 index 000000000000..6f8b7dc49481 --- /dev/null +++ b/site/public/v1/games/capcom-classics-collection/index.json @@ -0,0 +1,32 @@ +{ + "id": 23040, + "slug": "capcom-classics-collection", + "name": "Capcom Classics Collection", + "release_date": "2005-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Game Boy Advance", + "PlayStation Portable" + ], + "genres": [], + "stores": [], + "developers": [ + "Digital Eclipse" + ], + "publishers": [ + "Capcom" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q426630" + ], + "created_at": "2026-07-10T10:10:03.807473", + "updated_at": "2026-07-10T10:10:03.807473", + "url": "/v1/games/capcom-classics-collection" +} diff --git a/site/public/v1/games/capcom-classics-mini-mix/index.json b/site/public/v1/games/capcom-classics-mini-mix/index.json new file mode 100644 index 000000000000..1aae50ef9501 --- /dev/null +++ b/site/public/v1/games/capcom-classics-mini-mix/index.json @@ -0,0 +1,27 @@ +{ + "id": 23041, + "slug": "capcom-classics-mini-mix", + "name": "Capcom Classics Mini Mix", + "release_date": "2006-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Game Boy Advance" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110414806" + ], + "created_at": "2026-07-10T10:10:03.808471", + "updated_at": "2026-07-10T10:10:03.808471", + "url": "/v1/games/capcom-classics-mini-mix" +} diff --git a/site/public/v1/games/capcom-collection/index.json b/site/public/v1/games/capcom-collection/index.json new file mode 100644 index 000000000000..0ba928ed9b1a --- /dev/null +++ b/site/public/v1/games/capcom-collection/index.json @@ -0,0 +1,25 @@ +{ + "id": 23042, + "slug": "capcom-collection", + "name": "Capcom Collection", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126185124" + ], + "created_at": "2026-07-10T10:10:03.808471", + "updated_at": "2026-07-10T10:10:03.808471", + "url": "/v1/games/capcom-collection" +} diff --git a/site/public/v1/games/capcom-digital-collection/index.json b/site/public/v1/games/capcom-digital-collection/index.json new file mode 100644 index 000000000000..12ab2d339940 --- /dev/null +++ b/site/public/v1/games/capcom-digital-collection/index.json @@ -0,0 +1,27 @@ +{ + "id": 23043, + "slug": "capcom-digital-collection", + "name": "Capcom Digital Collection", + "release_date": "2012-03-27", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [ + "Capcom" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5034542" + ], + "created_at": "2026-07-10T10:10:03.808471", + "updated_at": "2026-07-10T10:10:03.808471", + "url": "/v1/games/capcom-digital-collection" +} diff --git a/site/public/v1/games/capcom-fighting-collection-2/index.json b/site/public/v1/games/capcom-fighting-collection-2/index.json new file mode 100644 index 000000000000..e70aadfc6568 --- /dev/null +++ b/site/public/v1/games/capcom-fighting-collection-2/index.json @@ -0,0 +1,30 @@ +{ + "id": 23045, + "slug": "capcom-fighting-collection-2", + "name": "Capcom Fighting Collection 2", + "release_date": "2025-05-16", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "2D fighting game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q129925288" + ], + "created_at": "2026-07-10T10:10:03.809476", + "updated_at": "2026-07-10T10:10:03.809476", + "url": "/v1/games/capcom-fighting-collection-2" +} diff --git a/site/public/v1/games/capcom-fighting-collection-q111353645/index.json b/site/public/v1/games/capcom-fighting-collection-q111353645/index.json new file mode 100644 index 000000000000..23071ca5eda6 --- /dev/null +++ b/site/public/v1/games/capcom-fighting-collection-q111353645/index.json @@ -0,0 +1,35 @@ +{ + "id": 23046, + "slug": "capcom-fighting-collection-q111353645", + "name": "Capcom Fighting Collection", + "release_date": "2022-06-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "2D fighting game" + ], + "stores": [], + "developers": [ + "Capcom" + ], + "publishers": [ + "Capcom" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111353645" + ], + "created_at": "2026-07-10T10:10:03.809476", + "updated_at": "2026-07-10T10:10:03.809476", + "url": "/v1/games/capcom-fighting-collection-q111353645" +} diff --git a/site/public/v1/games/capcom-generations/index.json b/site/public/v1/games/capcom-generations/index.json new file mode 100644 index 000000000000..296d6bb9fe38 --- /dev/null +++ b/site/public/v1/games/capcom-generations/index.json @@ -0,0 +1,29 @@ +{ + "id": 23050, + "slug": "capcom-generations", + "name": "Capcom Generations", + "release_date": "1998-08-27", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [ + "Capcom" + ], + "publishers": [ + "Capcom" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2937218" + ], + "created_at": "2026-07-10T10:10:03.811050", + "updated_at": "2026-07-10T10:10:03.811050", + "url": "/v1/games/capcom-generations" +} diff --git a/site/public/v1/games/capcom-platinum-hits-triple-pack/index.json b/site/public/v1/games/capcom-platinum-hits-triple-pack/index.json new file mode 100644 index 000000000000..baf98d0f44de --- /dev/null +++ b/site/public/v1/games/capcom-platinum-hits-triple-pack/index.json @@ -0,0 +1,29 @@ +{ + "id": 23053, + "slug": "capcom-platinum-hits-triple-pack", + "name": "Capcom Platinum Hits Triple Pack", + "release_date": "2009-09-08", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [ + "Capcom" + ], + "publishers": [ + "Capcom" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5034545" + ], + "created_at": "2026-07-10T10:10:03.811050", + "updated_at": "2026-07-10T10:10:03.811050", + "url": "/v1/games/capcom-platinum-hits-triple-pack" +} diff --git a/site/public/v1/games/capcom-puzzle-world/index.json b/site/public/v1/games/capcom-puzzle-world/index.json new file mode 100644 index 000000000000..942ad7ad404b --- /dev/null +++ b/site/public/v1/games/capcom-puzzle-world/index.json @@ -0,0 +1,33 @@ +{ + "id": 23054, + "slug": "capcom-puzzle-world", + "name": "Capcom Puzzle World", + "release_date": "2007-02-06", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation Portable" + ], + "genres": [ + "puzzle video game" + ], + "stores": [], + "developers": [ + "Sensory Sweep Studios" + ], + "publishers": [ + "Capcom" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5034544" + ], + "created_at": "2026-07-10T10:10:03.812119", + "updated_at": "2026-07-10T10:10:03.812119", + "url": "/v1/games/capcom-puzzle-world" +} diff --git a/site/public/v1/games/captain-pulsar/index.json b/site/public/v1/games/captain-pulsar/index.json new file mode 100644 index 000000000000..86ffb023d1a4 --- /dev/null +++ b/site/public/v1/games/captain-pulsar/index.json @@ -0,0 +1,25 @@ +{ + "id": 23195, + "slug": "captain-pulsar", + "name": "Captain Pulsar", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11324925" + ], + "created_at": "2026-07-10T10:10:03.850160", + "updated_at": "2026-07-10T10:10:03.850160", + "url": "/v1/games/captain-pulsar" +} diff --git a/site/public/v1/games/captain-underpants-epic-choice-o-rama/index.json b/site/public/v1/games/captain-underpants-epic-choice-o-rama/index.json new file mode 100644 index 000000000000..120eebee0068 --- /dev/null +++ b/site/public/v1/games/captain-underpants-epic-choice-o-rama/index.json @@ -0,0 +1,25 @@ +{ + "id": 23235, + "slug": "captain-underpants-epic-choice-o-rama", + "name": "Captain Underpants: Epic Choice-o-rama", + "release_date": "2020-02-11", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q86526052" + ], + "created_at": "2026-07-10T10:10:03.861475", + "updated_at": "2026-07-10T10:10:03.861475", + "url": "/v1/games/captain-underpants-epic-choice-o-rama" +} diff --git a/site/public/v1/games/caravan-shooting-collection/index.json b/site/public/v1/games/caravan-shooting-collection/index.json new file mode 100644 index 000000000000..21a655676c52 --- /dev/null +++ b/site/public/v1/games/caravan-shooting-collection/index.json @@ -0,0 +1,33 @@ +{ + "id": 23397, + "slug": "caravan-shooting-collection", + "name": "Caravan Shooting Collection", + "release_date": "1995-07-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Super Nintendo Entertainment System" + ], + "genres": [ + "shoot 'em up" + ], + "stores": [], + "developers": [ + "Hudson Soft" + ], + "publishers": [ + "Hudson Soft" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q48847136" + ], + "created_at": "2026-07-10T10:10:03.907294", + "updated_at": "2026-07-10T10:10:03.907294", + "url": "/v1/games/caravan-shooting-collection" +} diff --git a/site/public/v1/games/carmageddon-splat-pack/index.json b/site/public/v1/games/carmageddon-splat-pack/index.json new file mode 100644 index 000000000000..20bad704bdfc --- /dev/null +++ b/site/public/v1/games/carmageddon-splat-pack/index.json @@ -0,0 +1,35 @@ +{ + "id": 23661, + "slug": "carmageddon-splat-pack", + "name": "Carmageddon: Splat Pack", + "release_date": "1997-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "DOS", + "Microsoft Windows" + ], + "genres": [ + "vehicular combat game" + ], + "stores": [], + "developers": [ + "Stainless Games" + ], + "publishers": [ + "Interplay Entertainment", + "The Sales Curve" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q104804958" + ], + "created_at": "2026-07-10T10:10:03.978499", + "updated_at": "2026-07-10T10:10:03.978499", + "url": "/v1/games/carmageddon-splat-pack" +} diff --git a/site/public/v1/games/carmen-sandiego-to-steal-or-not-to-steal/index.json b/site/public/v1/games/carmen-sandiego-to-steal-or-not-to-steal/index.json new file mode 100644 index 000000000000..b7c7fc83f37f --- /dev/null +++ b/site/public/v1/games/carmen-sandiego-to-steal-or-not-to-steal/index.json @@ -0,0 +1,25 @@ +{ + "id": 23671, + "slug": "carmen-sandiego-to-steal-or-not-to-steal", + "name": "Carmen Sandiego: To Steal or Not to Steal", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q97356840" + ], + "created_at": "2026-07-10T10:10:03.983498", + "updated_at": "2026-07-10T10:10:03.983498", + "url": "/v1/games/carmen-sandiego-to-steal-or-not-to-steal" +} diff --git a/site/public/v1/games/carrier-trail-digital-deluxe/index.json b/site/public/v1/games/carrier-trail-digital-deluxe/index.json new file mode 100644 index 000000000000..f1e608907b60 --- /dev/null +++ b/site/public/v1/games/carrier-trail-digital-deluxe/index.json @@ -0,0 +1,28 @@ +{ + "id": 23770, + "slug": "carrier-trail-digital-deluxe", + "name": "Carrier Trail - Digital Deluxe", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q97012338" + ], + "created_at": "2026-07-10T10:10:04.009258", + "updated_at": "2026-07-10T10:10:04.009258", + "url": "/v1/games/carrier-trail-digital-deluxe" +} diff --git a/site/public/v1/games/carrier-trail-soundtrack/index.json b/site/public/v1/games/carrier-trail-soundtrack/index.json new file mode 100644 index 000000000000..89ee14f7e253 --- /dev/null +++ b/site/public/v1/games/carrier-trail-soundtrack/index.json @@ -0,0 +1,34 @@ +{ + "id": 23771, + "slug": "carrier-trail-soundtrack", + "name": "Carrier Trail - Soundtrack", + "release_date": "2020-07-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "instrumental music", + "video game music" + ], + "stores": [], + "developers": [ + "CrackedGhostGames" + ], + "publishers": [ + "CrackedGhostGames" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q97012436" + ], + "created_at": "2026-07-10T10:10:04.009258", + "updated_at": "2026-07-10T10:10:04.009258", + "url": "/v1/games/carrier-trail-soundtrack" +} diff --git a/site/public/v1/games/cart-surfer/index.json b/site/public/v1/games/cart-surfer/index.json new file mode 100644 index 000000000000..05746171b59d --- /dev/null +++ b/site/public/v1/games/cart-surfer/index.json @@ -0,0 +1,28 @@ +{ + "id": 23827, + "slug": "cart-surfer", + "name": "Cart Surfer", + "release_date": "2006-06-06", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Nintendo DS", + "web browser" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18244381" + ], + "created_at": "2026-07-10T10:10:04.023788", + "updated_at": "2026-07-10T10:10:04.023788", + "url": "/v1/games/cart-surfer" +} diff --git a/site/public/v1/games/cartoon-collection/index.json b/site/public/v1/games/cartoon-collection/index.json new file mode 100644 index 000000000000..ae184aada5e2 --- /dev/null +++ b/site/public/v1/games/cartoon-collection/index.json @@ -0,0 +1,27 @@ +{ + "id": 23857, + "slug": "cartoon-collection", + "name": "Cartoon Collection", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Codemasters" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126185131" + ], + "created_at": "2026-07-10T10:10:04.031789", + "updated_at": "2026-07-10T10:10:04.031789", + "url": "/v1/games/cartoon-collection" +} diff --git a/site/public/v1/games/cartoon-combatt-flying-circus/index.json b/site/public/v1/games/cartoon-combatt-flying-circus/index.json new file mode 100644 index 000000000000..ee41880c5b97 --- /dev/null +++ b/site/public/v1/games/cartoon-combatt-flying-circus/index.json @@ -0,0 +1,32 @@ +{ + "id": 23858, + "slug": "cartoon-combatt-flying-circus", + "name": "Cartoon Combatt: Flying Circus", + "release_date": "2023-05-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation Vita", + "mobile phone" + ], + "genres": [], + "stores": [], + "developers": [ + "MRKane" + ], + "publishers": [ + "MRKane" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124060095" + ], + "created_at": "2026-07-10T10:10:04.031789", + "updated_at": "2026-07-10T10:10:04.031789", + "url": "/v1/games/cartoon-combatt-flying-circus" +} diff --git a/site/public/v1/games/cassette-50/index.json b/site/public/v1/games/cassette-50/index.json new file mode 100644 index 000000000000..1d0ab9b6340c --- /dev/null +++ b/site/public/v1/games/cassette-50/index.json @@ -0,0 +1,31 @@ +{ + "id": 24016, + "slug": "cassette-50", + "name": "Cassette 50", + "release_date": "1983-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Amstrad CPC", + "Commodore 64", + "ZX Spectrum" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Cascade Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5049317" + ], + "created_at": "2026-07-10T10:10:04.074870", + "updated_at": "2026-07-10T10:10:04.074870", + "url": "/v1/games/cassette-50" +} diff --git a/site/public/v1/games/castle-of-temptation-v0-1-4/index.json b/site/public/v1/games/castle-of-temptation-v0-1-4/index.json new file mode 100644 index 000000000000..b4e03f9e3db0 --- /dev/null +++ b/site/public/v1/games/castle-of-temptation-v0-1-4/index.json @@ -0,0 +1,34 @@ +{ + "id": 24159, + "slug": "castle-of-temptation-v0-1-4", + "name": "Castle of Temptation V0.1.4", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "eroge", + "fantasy video game" + ], + "stores": [], + "developers": [ + "poocii8890" + ], + "publishers": [ + "poocii8890" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126210208" + ], + "created_at": "2026-07-10T10:10:04.145617", + "updated_at": "2026-07-10T10:10:04.145617", + "url": "/v1/games/castle-of-temptation-v0-1-4" +} diff --git a/site/public/v1/games/castle-paths/index.json b/site/public/v1/games/castle-paths/index.json new file mode 100644 index 000000000000..94e2b8896606 --- /dev/null +++ b/site/public/v1/games/castle-paths/index.json @@ -0,0 +1,25 @@ +{ + "id": 24170, + "slug": "castle-paths", + "name": "Castle Paths", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137479914" + ], + "created_at": "2026-07-10T10:10:04.149640", + "updated_at": "2026-07-10T10:10:04.149640", + "url": "/v1/games/castle-paths" +} diff --git a/site/public/v1/games/castleminer-z-trial/index.json b/site/public/v1/games/castleminer-z-trial/index.json new file mode 100644 index 000000000000..e4762cafa3d3 --- /dev/null +++ b/site/public/v1/games/castleminer-z-trial/index.json @@ -0,0 +1,30 @@ +{ + "id": 24209, + "slug": "castleminer-z-trial", + "name": "CastleMiner Z (Trial)", + "release_date": "2011-11-09", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "survival game", + "first-person shooter", + "sandbox game", + "zombie video game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126066644" + ], + "created_at": "2026-07-10T10:10:04.159628", + "updated_at": "2026-07-10T10:10:04.159628", + "url": "/v1/games/castleminer-z-trial" +} diff --git a/site/public/v1/games/castlestorm-definitive-edition/index.json b/site/public/v1/games/castlestorm-definitive-edition/index.json new file mode 100644 index 000000000000..e3edc1e61dc4 --- /dev/null +++ b/site/public/v1/games/castlestorm-definitive-edition/index.json @@ -0,0 +1,25 @@ +{ + "id": 24221, + "slug": "castlestorm-definitive-edition", + "name": "CastleStorm: Definitive Edition", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q90134289" + ], + "created_at": "2026-07-10T10:10:04.163553", + "updated_at": "2026-07-10T10:10:04.163553", + "url": "/v1/games/castlestorm-definitive-edition" +} diff --git a/site/public/v1/games/castlevania-advance-collection/index.json b/site/public/v1/games/castlevania-advance-collection/index.json new file mode 100644 index 000000000000..8068df5fdf50 --- /dev/null +++ b/site/public/v1/games/castlevania-advance-collection/index.json @@ -0,0 +1,33 @@ +{ + "id": 24224, + "slug": "castlevania-advance-collection", + "name": "Castlevania Advance Collection", + "release_date": "2021-09-23", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "action game" + ], + "stores": [], + "developers": [ + "M2" + ], + "publishers": [ + "Konami" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127869206" + ], + "created_at": "2026-07-10T10:10:04.163553", + "updated_at": "2026-07-10T10:10:04.163553", + "url": "/v1/games/castlevania-advance-collection" +} diff --git a/site/public/v1/games/castlevania-anniversary-collection/index.json b/site/public/v1/games/castlevania-anniversary-collection/index.json new file mode 100644 index 000000000000..6285e88a9642 --- /dev/null +++ b/site/public/v1/games/castlevania-anniversary-collection/index.json @@ -0,0 +1,35 @@ +{ + "id": 24226, + "slug": "castlevania-anniversary-collection", + "name": "Castlevania Anniversary Collection", + "release_date": "2019-05-16", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "platformer" + ], + "stores": [], + "developers": [ + "M2", + "Konami" + ], + "publishers": [ + "Konami" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111660808" + ], + "created_at": "2026-07-10T10:10:04.164553", + "updated_at": "2026-07-10T10:10:04.164553", + "url": "/v1/games/castlevania-anniversary-collection" +} diff --git a/site/public/v1/games/castlevania-lords-of-shadow-reverie/index.json b/site/public/v1/games/castlevania-lords-of-shadow-reverie/index.json new file mode 100644 index 000000000000..ce042a54355f --- /dev/null +++ b/site/public/v1/games/castlevania-lords-of-shadow-reverie/index.json @@ -0,0 +1,25 @@ +{ + "id": 24248, + "slug": "castlevania-lords-of-shadow-reverie", + "name": "Castlevania: Lords of Shadow - Reverie", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q89193992" + ], + "created_at": "2026-07-10T10:10:04.168637", + "updated_at": "2026-07-10T10:10:04.168637", + "url": "/v1/games/castlevania-lords-of-shadow-reverie" +} diff --git a/site/public/v1/games/castlevania-lords-of-shadow/index.json b/site/public/v1/games/castlevania-lords-of-shadow/index.json new file mode 100644 index 000000000000..95e101faa6d3 --- /dev/null +++ b/site/public/v1/games/castlevania-lords-of-shadow/index.json @@ -0,0 +1,35 @@ +{ + "id": 24249, + "slug": "castlevania-lords-of-shadow", + "name": "Castlevania: Lords of Shadow", + "release_date": "2010-10-05", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows", + "PlayStation 3" + ], + "genres": [ + "action-adventure game", + "character-action video game" + ], + "stores": [], + "developers": [ + "MercurySteam" + ], + "publishers": [ + "Konami" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q940664" + ], + "created_at": "2026-07-10T10:10:04.168637", + "updated_at": "2026-07-10T10:10:04.168637", + "url": "/v1/games/castlevania-lords-of-shadow" +} diff --git a/site/public/v1/games/catacombs-pack/index.json b/site/public/v1/games/catacombs-pack/index.json new file mode 100644 index 000000000000..1f6243942b83 --- /dev/null +++ b/site/public/v1/games/catacombs-pack/index.json @@ -0,0 +1,25 @@ +{ + "id": 24498, + "slug": "catacombs-pack", + "name": "Catacombs Pack", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124847648" + ], + "created_at": "2026-07-10T10:10:04.234224", + "updated_at": "2026-07-10T10:10:04.234224", + "url": "/v1/games/catacombs-pack" +} diff --git a/site/public/v1/games/catan-console-edition/index.json b/site/public/v1/games/catan-console-edition/index.json new file mode 100644 index 000000000000..a58b9eec987d --- /dev/null +++ b/site/public/v1/games/catan-console-edition/index.json @@ -0,0 +1,35 @@ +{ + "id": 24515, + "slug": "catan-console-edition", + "name": "Catan: console edition", + "release_date": "2023-02-23", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 5", + "PlayStation 4" + ], + "genres": [ + "board video game" + ], + "stores": [], + "developers": [ + "Nomad Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122335786" + ], + "created_at": "2026-07-10T10:10:04.238684", + "updated_at": "2026-07-10T10:10:04.238684", + "url": "/v1/games/catan-console-edition" +} diff --git a/site/public/v1/games/catapult/index.json b/site/public/v1/games/catapult/index.json new file mode 100644 index 000000000000..ba883ea0bbdf --- /dev/null +++ b/site/public/v1/games/catapult/index.json @@ -0,0 +1,29 @@ +{ + "id": 24530, + "slug": "catapult", + "name": "Catapult", + "release_date": "2002-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [ + "RedLynx" + ], + "publishers": [ + "MTV Oy" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28531239" + ], + "created_at": "2026-07-10T10:10:04.243685", + "updated_at": "2026-07-10T10:10:04.243685", + "url": "/v1/games/catapult" +} diff --git a/site/public/v1/games/catchin-waves/index.json b/site/public/v1/games/catchin-waves/index.json new file mode 100644 index 000000000000..b121eb9ae499 --- /dev/null +++ b/site/public/v1/games/catchin-waves/index.json @@ -0,0 +1,27 @@ +{ + "id": 24595, + "slug": "catchin-waves", + "name": "Catchin' Waves", + "release_date": "2007-06-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "surfing video game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q9777966" + ], + "created_at": "2026-07-10T10:10:04.260756", + "updated_at": "2026-07-10T10:10:04.260756", + "url": "/v1/games/catchin-waves" +} diff --git a/site/public/v1/games/cave-shooting-collection/index.json b/site/public/v1/games/cave-shooting-collection/index.json new file mode 100644 index 000000000000..731da89e40d8 --- /dev/null +++ b/site/public/v1/games/cave-shooting-collection/index.json @@ -0,0 +1,31 @@ +{ + "id": 24889, + "slug": "cave-shooting-collection", + "name": "CAVE Shooting Collection", + "release_date": "2013-03-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "bullet hell" + ], + "stores": [], + "developers": [ + "CAVE" + ], + "publishers": [ + "CAVE" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17210790" + ], + "created_at": "2026-07-10T10:10:04.346824", + "updated_at": "2026-07-10T10:10:04.346824", + "url": "/v1/games/cave-shooting-collection" +} diff --git a/site/public/v1/games/cel-damage-2/index.json b/site/public/v1/games/cel-damage-2/index.json new file mode 100644 index 000000000000..3dfc057a49b1 --- /dev/null +++ b/site/public/v1/games/cel-damage-2/index.json @@ -0,0 +1,27 @@ +{ + "id": 25010, + "slug": "cel-damage-2", + "name": "Cel Damage 2", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "vehicular combat game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72396674" + ], + "created_at": "2026-07-10T10:10:04.379884", + "updated_at": "2026-07-10T10:10:04.379884", + "url": "/v1/games/cel-damage-2" +} diff --git a/site/public/v1/games/cel-damage-overdrive/index.json b/site/public/v1/games/cel-damage-overdrive/index.json new file mode 100644 index 000000000000..4c04799672be --- /dev/null +++ b/site/public/v1/games/cel-damage-overdrive/index.json @@ -0,0 +1,29 @@ +{ + "id": 25012, + "slug": "cel-damage-overdrive", + "name": "Cel Damage Overdrive", + "release_date": "2002-12-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "vehicular combat game" + ], + "stores": [], + "developers": [ + "Pseudo Interactive" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q103067818" + ], + "created_at": "2026-07-10T10:10:04.380866", + "updated_at": "2026-07-10T10:10:04.380866", + "url": "/v1/games/cel-damage-overdrive" +} diff --git a/site/public/v1/games/century-age-of-ashes-bloodshed-edition/index.json b/site/public/v1/games/century-age-of-ashes-bloodshed-edition/index.json new file mode 100644 index 000000000000..426dc649ac2b --- /dev/null +++ b/site/public/v1/games/century-age-of-ashes-bloodshed-edition/index.json @@ -0,0 +1,32 @@ +{ + "id": 25167, + "slug": "century-age-of-ashes-bloodshed-edition", + "name": "Century: Age of Ashes - Bloodshed Edition", + "release_date": "2022-05-20", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Playwing" + ], + "publishers": [ + "Playwing" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112943202" + ], + "created_at": "2026-07-10T10:10:04.422614", + "updated_at": "2026-07-10T10:10:04.422614", + "url": "/v1/games/century-age-of-ashes-bloodshed-edition" +} diff --git a/site/public/v1/games/century-age-of-ashes-colossus-deluxe-edition/index.json b/site/public/v1/games/century-age-of-ashes-colossus-deluxe-edition/index.json new file mode 100644 index 000000000000..41509d420066 --- /dev/null +++ b/site/public/v1/games/century-age-of-ashes-colossus-deluxe-edition/index.json @@ -0,0 +1,32 @@ +{ + "id": 25168, + "slug": "century-age-of-ashes-colossus-deluxe-edition", + "name": "Century: Age of Ashes - Colossus Deluxe Edition", + "release_date": "2022-04-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Playwing" + ], + "publishers": [ + "Playwing" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111812564" + ], + "created_at": "2026-07-10T10:10:04.422614", + "updated_at": "2026-07-10T10:10:04.422614", + "url": "/v1/games/century-age-of-ashes-colossus-deluxe-edition" +} diff --git a/site/public/v1/games/century-age-of-ashes-dragon-eggs-edition/index.json b/site/public/v1/games/century-age-of-ashes-dragon-eggs-edition/index.json new file mode 100644 index 000000000000..b4805a8a7ef2 --- /dev/null +++ b/site/public/v1/games/century-age-of-ashes-dragon-eggs-edition/index.json @@ -0,0 +1,32 @@ +{ + "id": 25169, + "slug": "century-age-of-ashes-dragon-eggs-edition", + "name": "Century: Age of Ashes - Dragon Eggs Edition", + "release_date": "2022-04-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Playwing" + ], + "publishers": [ + "Playwing" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111804955" + ], + "created_at": "2026-07-10T10:10:04.422614", + "updated_at": "2026-07-10T10:10:04.422614", + "url": "/v1/games/century-age-of-ashes-dragon-eggs-edition" +} diff --git a/site/public/v1/games/century-age-of-ashes-fellow-edition/index.json b/site/public/v1/games/century-age-of-ashes-fellow-edition/index.json new file mode 100644 index 000000000000..11bc2ad3719b --- /dev/null +++ b/site/public/v1/games/century-age-of-ashes-fellow-edition/index.json @@ -0,0 +1,32 @@ +{ + "id": 25170, + "slug": "century-age-of-ashes-fellow-edition", + "name": "Century: Age of Ashes - Fellow Edition", + "release_date": "2022-04-22", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Playwing" + ], + "publishers": [ + "Playwing" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111893441" + ], + "created_at": "2026-07-10T10:10:04.422614", + "updated_at": "2026-07-10T10:10:04.422614", + "url": "/v1/games/century-age-of-ashes-fellow-edition" +} diff --git a/site/public/v1/games/century-age-of-ashes-first-flight-edition/index.json b/site/public/v1/games/century-age-of-ashes-first-flight-edition/index.json new file mode 100644 index 000000000000..8a9f89f0ad10 --- /dev/null +++ b/site/public/v1/games/century-age-of-ashes-first-flight-edition/index.json @@ -0,0 +1,32 @@ +{ + "id": 25171, + "slug": "century-age-of-ashes-first-flight-edition", + "name": "Century: Age of Ashes - First Flight Edition", + "release_date": "2022-04-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Playwing" + ], + "publishers": [ + "Playwing" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111907305" + ], + "created_at": "2026-07-10T10:10:04.422614", + "updated_at": "2026-07-10T10:10:04.422614", + "url": "/v1/games/century-age-of-ashes-first-flight-edition" +} diff --git a/site/public/v1/games/century-age-of-ashes-myth-starter-edition/index.json b/site/public/v1/games/century-age-of-ashes-myth-starter-edition/index.json new file mode 100644 index 000000000000..cff79491e18c --- /dev/null +++ b/site/public/v1/games/century-age-of-ashes-myth-starter-edition/index.json @@ -0,0 +1,32 @@ +{ + "id": 25172, + "slug": "century-age-of-ashes-myth-starter-edition", + "name": "Century: Age of Ashes - Myth Starter Edition", + "release_date": "2022-04-27", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Playwing" + ], + "publishers": [ + "Playwing" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111896681" + ], + "created_at": "2026-07-10T10:10:04.423657", + "updated_at": "2026-07-10T10:10:04.423657", + "url": "/v1/games/century-age-of-ashes-myth-starter-edition" +} diff --git a/site/public/v1/games/century-games/index.json b/site/public/v1/games/century-games/index.json new file mode 100644 index 000000000000..fd8b139e9528 --- /dev/null +++ b/site/public/v1/games/century-games/index.json @@ -0,0 +1,25 @@ +{ + "id": 25174, + "slug": "century-games", + "name": "Century Games", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107686294" + ], + "created_at": "2026-07-10T10:10:04.423657", + "updated_at": "2026-07-10T10:10:04.423657", + "url": "/v1/games/century-games" +} diff --git a/site/public/v1/games/cgi/index.json b/site/public/v1/games/cgi/index.json new file mode 100644 index 000000000000..76dcd135ed46 --- /dev/null +++ b/site/public/v1/games/cgi/index.json @@ -0,0 +1,25 @@ +{ + "id": 25216, + "slug": "cgi", + "name": "CGI", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q48938079" + ], + "created_at": "2026-07-10T10:10:04.435608", + "updated_at": "2026-07-10T10:10:04.435608", + "url": "/v1/games/cgi" +} diff --git a/site/public/v1/games/chainsaw-dance-demo/index.json b/site/public/v1/games/chainsaw-dance-demo/index.json new file mode 100644 index 000000000000..52f4d3fd0ef4 --- /dev/null +++ b/site/public/v1/games/chainsaw-dance-demo/index.json @@ -0,0 +1,25 @@ +{ + "id": 25271, + "slug": "chainsaw-dance-demo", + "name": "CHAINSAW DANCE DEMO", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131619429" + ], + "created_at": "2026-07-10T10:10:04.449604", + "updated_at": "2026-07-10T10:10:04.449604", + "url": "/v1/games/chainsaw-dance-demo" +} diff --git a/site/public/v1/games/challengers/index.json b/site/public/v1/games/challengers/index.json new file mode 100644 index 000000000000..a5ec5261a5c8 --- /dev/null +++ b/site/public/v1/games/challengers/index.json @@ -0,0 +1,25 @@ +{ + "id": 25308, + "slug": "challengers", + "name": "Challengers", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131274185" + ], + "created_at": "2026-07-10T10:10:04.460667", + "updated_at": "2026-07-10T10:10:04.460667", + "url": "/v1/games/challengers" +} diff --git a/site/public/v1/games/chameleon-run-q106803128/index.json b/site/public/v1/games/chameleon-run-q106803128/index.json new file mode 100644 index 000000000000..83c83dce30dd --- /dev/null +++ b/site/public/v1/games/chameleon-run-q106803128/index.json @@ -0,0 +1,33 @@ +{ + "id": 25336, + "slug": "chameleon-run-q106803128", + "name": "Chameleon Run+", + "release_date": "2021-04-02", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "tvOS", + "iPadOS", + "iOS" + ], + "genres": [], + "stores": [], + "developers": [ + "Hyperbolic Magnetism" + ], + "publishers": [ + "Noodlecake" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106803128" + ], + "created_at": "2026-07-10T10:10:04.468041", + "updated_at": "2026-07-10T10:10:04.468041", + "url": "/v1/games/chameleon-run-q106803128" +} diff --git a/site/public/v1/games/chao-garden/index.json b/site/public/v1/games/chao-garden/index.json new file mode 100644 index 000000000000..67fb98ef4aa6 --- /dev/null +++ b/site/public/v1/games/chao-garden/index.json @@ -0,0 +1,27 @@ +{ + "id": 25494, + "slug": "chao-garden", + "name": "Chao Garden", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "virtual pet video game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136546428" + ], + "created_at": "2026-07-10T10:10:04.509225", + "updated_at": "2026-07-10T10:10:04.509225", + "url": "/v1/games/chao-garden" +} diff --git a/site/public/v1/games/chaos-league-sudden-death/index.json b/site/public/v1/games/chaos-league-sudden-death/index.json new file mode 100644 index 000000000000..4484fe73ccf5 --- /dev/null +++ b/site/public/v1/games/chaos-league-sudden-death/index.json @@ -0,0 +1,27 @@ +{ + "id": 25552, + "slug": "chaos-league-sudden-death", + "name": "Chaos League: Sudden Death", + "release_date": "2005-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "real-time strategy" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q61344767" + ], + "created_at": "2026-07-10T10:10:04.525821", + "updated_at": "2026-07-10T10:10:04.525821", + "url": "/v1/games/chaos-league-sudden-death" +} diff --git a/site/public/v1/games/chaos-strikes-back/index.json b/site/public/v1/games/chaos-strikes-back/index.json new file mode 100644 index 000000000000..302e88394363 --- /dev/null +++ b/site/public/v1/games/chaos-strikes-back/index.json @@ -0,0 +1,34 @@ +{ + "id": 25584, + "slug": "chaos-strikes-back", + "name": "Chaos Strikes Back", + "release_date": "1989-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Commodore Amiga" + ], + "genres": [ + "puzzle video game", + "role-playing video game" + ], + "stores": [], + "developers": [ + "FTL Games" + ], + "publishers": [ + "FTL Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2956460" + ], + "created_at": "2026-07-10T10:10:04.533828", + "updated_at": "2026-07-10T10:10:04.533828", + "url": "/v1/games/chaos-strikes-back" +} diff --git a/site/public/v1/games/chapter-1-1-the-adventure-unfolds/index.json b/site/public/v1/games/chapter-1-1-the-adventure-unfolds/index.json new file mode 100644 index 000000000000..b9a9258b1e99 --- /dev/null +++ b/site/public/v1/games/chapter-1-1-the-adventure-unfolds/index.json @@ -0,0 +1,25 @@ +{ + "id": 25615, + "slug": "chapter-1-1-the-adventure-unfolds", + "name": "Chapter 1-1: The Adventure Unfolds", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136779540" + ], + "created_at": "2026-07-10T10:10:04.541767", + "updated_at": "2026-07-10T10:10:04.541767", + "url": "/v1/games/chapter-1-1-the-adventure-unfolds" +} diff --git a/site/public/v1/games/chapter-1-2-afoot-in-the-foothills/index.json b/site/public/v1/games/chapter-1-2-afoot-in-the-foothills/index.json new file mode 100644 index 000000000000..8db957bb9216 --- /dev/null +++ b/site/public/v1/games/chapter-1-2-afoot-in-the-foothills/index.json @@ -0,0 +1,25 @@ +{ + "id": 25616, + "slug": "chapter-1-2-afoot-in-the-foothills", + "name": "Chapter 1-2: Afoot in the Foothills", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136779545" + ], + "created_at": "2026-07-10T10:10:04.541767", + "updated_at": "2026-07-10T10:10:04.541767", + "url": "/v1/games/chapter-1-2-afoot-in-the-foothills" +} diff --git a/site/public/v1/games/chapter-1-3-the-sands-of-yold/index.json b/site/public/v1/games/chapter-1-3-the-sands-of-yold/index.json new file mode 100644 index 000000000000..98779a87b298 --- /dev/null +++ b/site/public/v1/games/chapter-1-3-the-sands-of-yold/index.json @@ -0,0 +1,25 @@ +{ + "id": 25617, + "slug": "chapter-1-3-the-sands-of-yold", + "name": "Chapter 1-3: The Sands of Yold", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136779549" + ], + "created_at": "2026-07-10T10:10:04.542821", + "updated_at": "2026-07-10T10:10:04.542821", + "url": "/v1/games/chapter-1-3-the-sands-of-yold" +} diff --git a/site/public/v1/games/chapter-1-4-monster-of-the-ruins/index.json b/site/public/v1/games/chapter-1-4-monster-of-the-ruins/index.json new file mode 100644 index 000000000000..892ece859a00 --- /dev/null +++ b/site/public/v1/games/chapter-1-4-monster-of-the-ruins/index.json @@ -0,0 +1,25 @@ +{ + "id": 25618, + "slug": "chapter-1-4-monster-of-the-ruins", + "name": "Chapter 1-4: Monster of the Ruins", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136779552" + ], + "created_at": "2026-07-10T10:10:04.542821", + "updated_at": "2026-07-10T10:10:04.542821", + "url": "/v1/games/chapter-1-4-monster-of-the-ruins" +} diff --git a/site/public/v1/games/chapter-1-lineland/index.json b/site/public/v1/games/chapter-1-lineland/index.json new file mode 100644 index 000000000000..4f00c57435d0 --- /dev/null +++ b/site/public/v1/games/chapter-1-lineland/index.json @@ -0,0 +1,25 @@ +{ + "id": 25619, + "slug": "chapter-1-lineland", + "name": "Chapter 1: Lineland", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136779452" + ], + "created_at": "2026-07-10T10:10:04.542821", + "updated_at": "2026-07-10T10:10:04.542821", + "url": "/v1/games/chapter-1-lineland" +} diff --git a/site/public/v1/games/chapter-2-1-bogging-to-merlee-s/index.json b/site/public/v1/games/chapter-2-1-bogging-to-merlee-s/index.json new file mode 100644 index 000000000000..022151b8569b --- /dev/null +++ b/site/public/v1/games/chapter-2-1-bogging-to-merlee-s/index.json @@ -0,0 +1,25 @@ +{ + "id": 25620, + "slug": "chapter-2-1-bogging-to-merlee-s", + "name": "Chapter 2-1: Bogging to Merlee's", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136779559" + ], + "created_at": "2026-07-10T10:10:04.543832", + "updated_at": "2026-07-10T10:10:04.543832", + "url": "/v1/games/chapter-2-1-bogging-to-merlee-s" +} diff --git a/site/public/v1/games/chapter-2-2-tricks-treats-traps/index.json b/site/public/v1/games/chapter-2-2-tricks-treats-traps/index.json new file mode 100644 index 000000000000..282ef2f9a70d --- /dev/null +++ b/site/public/v1/games/chapter-2-2-tricks-treats-traps/index.json @@ -0,0 +1,25 @@ +{ + "id": 25621, + "slug": "chapter-2-2-tricks-treats-traps", + "name": "Chapter 2-2: Tricks, Treats, Traps", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136779570" + ], + "created_at": "2026-07-10T10:10:04.543832", + "updated_at": "2026-07-10T10:10:04.543832", + "url": "/v1/games/chapter-2-2-tricks-treats-traps" +} diff --git a/site/public/v1/games/chapter-2-3-breaking-the-bank/index.json b/site/public/v1/games/chapter-2-3-breaking-the-bank/index.json new file mode 100644 index 000000000000..b4b082addd35 --- /dev/null +++ b/site/public/v1/games/chapter-2-3-breaking-the-bank/index.json @@ -0,0 +1,25 @@ +{ + "id": 25622, + "slug": "chapter-2-3-breaking-the-bank", + "name": "Chapter 2-3: Breaking the Bank", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136779577" + ], + "created_at": "2026-07-10T10:10:04.544846", + "updated_at": "2026-07-10T10:10:04.544846", + "url": "/v1/games/chapter-2-3-breaking-the-bank" +} diff --git a/site/public/v1/games/chapter-2-4-the-basement-face-off/index.json b/site/public/v1/games/chapter-2-4-the-basement-face-off/index.json new file mode 100644 index 000000000000..9fafbec545e1 --- /dev/null +++ b/site/public/v1/games/chapter-2-4-the-basement-face-off/index.json @@ -0,0 +1,25 @@ +{ + "id": 25623, + "slug": "chapter-2-4-the-basement-face-off", + "name": "Chapter 2-4: The Basement Face-Off", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136779591" + ], + "created_at": "2026-07-10T10:10:04.544846", + "updated_at": "2026-07-10T10:10:04.544846", + "url": "/v1/games/chapter-2-4-the-basement-face-off" +} diff --git a/site/public/v1/games/chapter-2-gloam-valley/index.json b/site/public/v1/games/chapter-2-gloam-valley/index.json new file mode 100644 index 000000000000..57f295c16ed9 --- /dev/null +++ b/site/public/v1/games/chapter-2-gloam-valley/index.json @@ -0,0 +1,25 @@ +{ + "id": 25624, + "slug": "chapter-2-gloam-valley", + "name": "Chapter 2: Gloam Valley", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136779455" + ], + "created_at": "2026-07-10T10:10:04.544846", + "updated_at": "2026-07-10T10:10:04.544846", + "url": "/v1/games/chapter-2-gloam-valley" +} diff --git a/site/public/v1/games/chapter-3-1-when-geeks-attack/index.json b/site/public/v1/games/chapter-3-1-when-geeks-attack/index.json new file mode 100644 index 000000000000..e4818c17c45c --- /dev/null +++ b/site/public/v1/games/chapter-3-1-when-geeks-attack/index.json @@ -0,0 +1,25 @@ +{ + "id": 25625, + "slug": "chapter-3-1-when-geeks-attack", + "name": "Chapter 3-1: When Geeks Attack", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136779600" + ], + "created_at": "2026-07-10T10:10:04.545766", + "updated_at": "2026-07-10T10:10:04.545766", + "url": "/v1/games/chapter-3-1-when-geeks-attack" +} diff --git a/site/public/v1/games/chapter-3-2-bloops-ahoy/index.json b/site/public/v1/games/chapter-3-2-bloops-ahoy/index.json new file mode 100644 index 000000000000..07ce60d7081d --- /dev/null +++ b/site/public/v1/games/chapter-3-2-bloops-ahoy/index.json @@ -0,0 +1,25 @@ +{ + "id": 25626, + "slug": "chapter-3-2-bloops-ahoy", + "name": "Chapter 3-2: Bloops Ahoy", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136779603" + ], + "created_at": "2026-07-10T10:10:04.545766", + "updated_at": "2026-07-10T10:10:04.545766", + "url": "/v1/games/chapter-3-2-bloops-ahoy" +} diff --git a/site/public/v1/games/chapter-3-3-up-up-and-a-tree/index.json b/site/public/v1/games/chapter-3-3-up-up-and-a-tree/index.json new file mode 100644 index 000000000000..daad22ea0bf7 --- /dev/null +++ b/site/public/v1/games/chapter-3-3-up-up-and-a-tree/index.json @@ -0,0 +1,25 @@ +{ + "id": 25627, + "slug": "chapter-3-3-up-up-and-a-tree", + "name": "Chapter 3-3: Up, Up, and a Tree", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136779605" + ], + "created_at": "2026-07-10T10:10:04.546842", + "updated_at": "2026-07-10T10:10:04.546842", + "url": "/v1/games/chapter-3-3-up-up-and-a-tree" +} diff --git a/site/public/v1/games/chapter-3-4-the-battle-of-fort-francis/index.json b/site/public/v1/games/chapter-3-4-the-battle-of-fort-francis/index.json new file mode 100644 index 000000000000..435020bc1c4a --- /dev/null +++ b/site/public/v1/games/chapter-3-4-the-battle-of-fort-francis/index.json @@ -0,0 +1,25 @@ +{ + "id": 25628, + "slug": "chapter-3-4-the-battle-of-fort-francis", + "name": "Chapter 3-4: The Battle of Fort Francis", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136779613" + ], + "created_at": "2026-07-10T10:10:04.546842", + "updated_at": "2026-07-10T10:10:04.546842", + "url": "/v1/games/chapter-3-4-the-battle-of-fort-francis" +} diff --git a/site/public/v1/games/chapter-3-the-bitlands/index.json b/site/public/v1/games/chapter-3-the-bitlands/index.json new file mode 100644 index 000000000000..22e6d04f8893 --- /dev/null +++ b/site/public/v1/games/chapter-3-the-bitlands/index.json @@ -0,0 +1,25 @@ +{ + "id": 25629, + "slug": "chapter-3-the-bitlands", + "name": "Chapter 3: The Bitlands", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136779461" + ], + "created_at": "2026-07-10T10:10:04.546842", + "updated_at": "2026-07-10T10:10:04.546842", + "url": "/v1/games/chapter-3-the-bitlands" +} diff --git a/site/public/v1/games/chapter-4-1-into-outer-space/index.json b/site/public/v1/games/chapter-4-1-into-outer-space/index.json new file mode 100644 index 000000000000..633d508a951a --- /dev/null +++ b/site/public/v1/games/chapter-4-1-into-outer-space/index.json @@ -0,0 +1,25 @@ +{ + "id": 25630, + "slug": "chapter-4-1-into-outer-space", + "name": "Chapter 4-1: Into Outer Space", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136779626" + ], + "created_at": "2026-07-10T10:10:04.547826", + "updated_at": "2026-07-10T10:10:04.547826", + "url": "/v1/games/chapter-4-1-into-outer-space" +} diff --git a/site/public/v1/games/chapter-4-2-a-paper-emergency/index.json b/site/public/v1/games/chapter-4-2-a-paper-emergency/index.json new file mode 100644 index 000000000000..2b4d3e568d01 --- /dev/null +++ b/site/public/v1/games/chapter-4-2-a-paper-emergency/index.json @@ -0,0 +1,25 @@ +{ + "id": 25631, + "slug": "chapter-4-2-a-paper-emergency", + "name": "Chapter 4-2: A Paper Emergency", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136779637" + ], + "created_at": "2026-07-10T10:10:04.547826", + "updated_at": "2026-07-10T10:10:04.547826", + "url": "/v1/games/chapter-4-2-a-paper-emergency" +} diff --git a/site/public/v1/games/chapter-4-3-the-gates-of-space/index.json b/site/public/v1/games/chapter-4-3-the-gates-of-space/index.json new file mode 100644 index 000000000000..8e49d6b42a5f --- /dev/null +++ b/site/public/v1/games/chapter-4-3-the-gates-of-space/index.json @@ -0,0 +1,25 @@ +{ + "id": 25632, + "slug": "chapter-4-3-the-gates-of-space", + "name": "Chapter 4-3: The Gates of Space", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136779645" + ], + "created_at": "2026-07-10T10:10:04.547826", + "updated_at": "2026-07-10T10:10:04.547826", + "url": "/v1/games/chapter-4-3-the-gates-of-space" +} diff --git a/site/public/v1/games/chapter-4-4-the-mysterious-mr-l/index.json b/site/public/v1/games/chapter-4-4-the-mysterious-mr-l/index.json new file mode 100644 index 000000000000..197a4bf84c0e --- /dev/null +++ b/site/public/v1/games/chapter-4-4-the-mysterious-mr-l/index.json @@ -0,0 +1,25 @@ +{ + "id": 25633, + "slug": "chapter-4-4-the-mysterious-mr-l", + "name": "Chapter 4-4: The Mysterious Mr. L", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136779651" + ], + "created_at": "2026-07-10T10:10:04.548845", + "updated_at": "2026-07-10T10:10:04.548845", + "url": "/v1/games/chapter-4-4-the-mysterious-mr-l" +} diff --git a/site/public/v1/games/chapter-4-outer-space/index.json b/site/public/v1/games/chapter-4-outer-space/index.json new file mode 100644 index 000000000000..ce1c0145564b --- /dev/null +++ b/site/public/v1/games/chapter-4-outer-space/index.json @@ -0,0 +1,25 @@ +{ + "id": 25634, + "slug": "chapter-4-outer-space", + "name": "Chapter 4: Outer Space", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136779464" + ], + "created_at": "2026-07-10T10:10:04.548845", + "updated_at": "2026-07-10T10:10:04.548845", + "url": "/v1/games/chapter-4-outer-space" +} diff --git a/site/public/v1/games/chapter-5-1-downtown-of-crag/index.json b/site/public/v1/games/chapter-5-1-downtown-of-crag/index.json new file mode 100644 index 000000000000..e439370081a9 --- /dev/null +++ b/site/public/v1/games/chapter-5-1-downtown-of-crag/index.json @@ -0,0 +1,25 @@ +{ + "id": 25635, + "slug": "chapter-5-1-downtown-of-crag", + "name": "Chapter 5-1: Downtown of Crag", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136779660" + ], + "created_at": "2026-07-10T10:10:04.548845", + "updated_at": "2026-07-10T10:10:04.548845", + "url": "/v1/games/chapter-5-1-downtown-of-crag" +} diff --git a/site/public/v1/games/chapter-5-2-pixls-tablets-and-crag/index.json b/site/public/v1/games/chapter-5-2-pixls-tablets-and-crag/index.json new file mode 100644 index 000000000000..dbeb9bbda7fa --- /dev/null +++ b/site/public/v1/games/chapter-5-2-pixls-tablets-and-crag/index.json @@ -0,0 +1,25 @@ +{ + "id": 25636, + "slug": "chapter-5-2-pixls-tablets-and-crag", + "name": "Chapter 5-2: Pixls, Tablets and Crag", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136779663" + ], + "created_at": "2026-07-10T10:10:04.549829", + "updated_at": "2026-07-10T10:10:04.549829", + "url": "/v1/games/chapter-5-2-pixls-tablets-and-crag" +} diff --git a/site/public/v1/games/chapter-5-3-a-crag-in-the-dark/index.json b/site/public/v1/games/chapter-5-3-a-crag-in-the-dark/index.json new file mode 100644 index 000000000000..796c976f5318 --- /dev/null +++ b/site/public/v1/games/chapter-5-3-a-crag-in-the-dark/index.json @@ -0,0 +1,25 @@ +{ + "id": 25637, + "slug": "chapter-5-3-a-crag-in-the-dark", + "name": "Chapter 5-3: A Crag in the Dark", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136779664" + ], + "created_at": "2026-07-10T10:10:04.549829", + "updated_at": "2026-07-10T10:10:04.549829", + "url": "/v1/games/chapter-5-3-a-crag-in-the-dark" +} diff --git a/site/public/v1/games/chapter-5-4-the-menace-of-king-croacus/index.json b/site/public/v1/games/chapter-5-4-the-menace-of-king-croacus/index.json new file mode 100644 index 000000000000..2673b2ae8a87 --- /dev/null +++ b/site/public/v1/games/chapter-5-4-the-menace-of-king-croacus/index.json @@ -0,0 +1,25 @@ +{ + "id": 25638, + "slug": "chapter-5-4-the-menace-of-king-croacus", + "name": "Chapter 5-4: The Menace of King Croacus", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136779665" + ], + "created_at": "2026-07-10T10:10:04.549829", + "updated_at": "2026-07-10T10:10:04.549829", + "url": "/v1/games/chapter-5-4-the-menace-of-king-croacus" +} diff --git a/site/public/v1/games/chapter-5-land-of-the-cragnons/index.json b/site/public/v1/games/chapter-5-land-of-the-cragnons/index.json new file mode 100644 index 000000000000..dd279047af10 --- /dev/null +++ b/site/public/v1/games/chapter-5-land-of-the-cragnons/index.json @@ -0,0 +1,25 @@ +{ + "id": 25639, + "slug": "chapter-5-land-of-the-cragnons", + "name": "Chapter 5: Land of the Cragnons", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136779466" + ], + "created_at": "2026-07-10T10:10:04.550822", + "updated_at": "2026-07-10T10:10:04.550822", + "url": "/v1/games/chapter-5-land-of-the-cragnons" +} diff --git a/site/public/v1/games/chapter-6-1-sammer-guy-showdown/index.json b/site/public/v1/games/chapter-6-1-sammer-guy-showdown/index.json new file mode 100644 index 000000000000..03793faa5ec7 --- /dev/null +++ b/site/public/v1/games/chapter-6-1-sammer-guy-showdown/index.json @@ -0,0 +1,25 @@ +{ + "id": 25640, + "slug": "chapter-6-1-sammer-guy-showdown", + "name": "Chapter 6-1: Sammer Guy Showdown", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136779677" + ], + "created_at": "2026-07-10T10:10:04.550822", + "updated_at": "2026-07-10T10:10:04.550822", + "url": "/v1/games/chapter-6-1-sammer-guy-showdown" +} diff --git a/site/public/v1/games/chapter-6-1-sammer-s-kingdom/index.json b/site/public/v1/games/chapter-6-1-sammer-s-kingdom/index.json new file mode 100644 index 000000000000..1872ab8c9885 --- /dev/null +++ b/site/public/v1/games/chapter-6-1-sammer-s-kingdom/index.json @@ -0,0 +1,25 @@ +{ + "id": 25641, + "slug": "chapter-6-1-sammer-s-kingdom", + "name": "Chapter 6-1: Sammer's Kingdom", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136779691" + ], + "created_at": "2026-07-10T10:10:04.551823", + "updated_at": "2026-07-10T10:10:04.551823", + "url": "/v1/games/chapter-6-1-sammer-s-kingdom" +} diff --git a/site/public/v1/games/chapter-6-1/index.json b/site/public/v1/games/chapter-6-1/index.json new file mode 100644 index 000000000000..ba0a3fb9131b --- /dev/null +++ b/site/public/v1/games/chapter-6-1/index.json @@ -0,0 +1,25 @@ +{ + "id": 25642, + "slug": "chapter-6-1", + "name": "Chapter 6-1", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136779686" + ], + "created_at": "2026-07-10T10:10:04.551823", + "updated_at": "2026-07-10T10:10:04.551823", + "url": "/v1/games/chapter-6-1" +} diff --git a/site/public/v1/games/chapter-6-2-sammer-s-early-duels/index.json b/site/public/v1/games/chapter-6-2-sammer-s-early-duels/index.json new file mode 100644 index 000000000000..70ffb1b9ebaf --- /dev/null +++ b/site/public/v1/games/chapter-6-2-sammer-s-early-duels/index.json @@ -0,0 +1,25 @@ +{ + "id": 25643, + "slug": "chapter-6-2-sammer-s-early-duels", + "name": "Chapter 6-2: Sammer's Early Duels", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136779695" + ], + "created_at": "2026-07-10T10:10:04.551823", + "updated_at": "2026-07-10T10:10:04.551823", + "url": "/v1/games/chapter-6-2-sammer-s-early-duels" +} diff --git a/site/public/v1/games/chapter-6-2-the-end-of-a-world/index.json b/site/public/v1/games/chapter-6-2-the-end-of-a-world/index.json new file mode 100644 index 000000000000..74328fe18380 --- /dev/null +++ b/site/public/v1/games/chapter-6-2-the-end-of-a-world/index.json @@ -0,0 +1,25 @@ +{ + "id": 25644, + "slug": "chapter-6-2-the-end-of-a-world", + "name": "Chapter 6-2: The End of a World", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136779681" + ], + "created_at": "2026-07-10T10:10:04.552838", + "updated_at": "2026-07-10T10:10:04.552838", + "url": "/v1/games/chapter-6-2-the-end-of-a-world" +} diff --git a/site/public/v1/games/chapter-6-3-sammer-s-proving-grounds/index.json b/site/public/v1/games/chapter-6-3-sammer-s-proving-grounds/index.json new file mode 100644 index 000000000000..b78b0c5a4975 --- /dev/null +++ b/site/public/v1/games/chapter-6-3-sammer-s-proving-grounds/index.json @@ -0,0 +1,25 @@ +{ + "id": 25645, + "slug": "chapter-6-3-sammer-s-proving-grounds", + "name": "Chapter 6-3: Sammer's Proving Grounds", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136779700" + ], + "created_at": "2026-07-10T10:10:04.552838", + "updated_at": "2026-07-10T10:10:04.552838", + "url": "/v1/games/chapter-6-3-sammer-s-proving-grounds" +} diff --git a/site/public/v1/games/chapter-6-4-sammer-s-endgame/index.json b/site/public/v1/games/chapter-6-4-sammer-s-endgame/index.json new file mode 100644 index 000000000000..f491eb8b9b10 --- /dev/null +++ b/site/public/v1/games/chapter-6-4-sammer-s-endgame/index.json @@ -0,0 +1,25 @@ +{ + "id": 25646, + "slug": "chapter-6-4-sammer-s-endgame", + "name": "Chapter 6-4: Sammer's Endgame", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136779707" + ], + "created_at": "2026-07-10T10:10:04.552838", + "updated_at": "2026-07-10T10:10:04.552838", + "url": "/v1/games/chapter-6-4-sammer-s-endgame" +} diff --git a/site/public/v1/games/chapter-6-sammer-s-kingdom/index.json b/site/public/v1/games/chapter-6-sammer-s-kingdom/index.json new file mode 100644 index 000000000000..5241f09faa52 --- /dev/null +++ b/site/public/v1/games/chapter-6-sammer-s-kingdom/index.json @@ -0,0 +1,25 @@ +{ + "id": 25647, + "slug": "chapter-6-sammer-s-kingdom", + "name": "Chapter 6: Sammer's Kingdom", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136779468" + ], + "created_at": "2026-07-10T10:10:04.553837", + "updated_at": "2026-07-10T10:10:04.553837", + "url": "/v1/games/chapter-6-sammer-s-kingdom" +} diff --git a/site/public/v1/games/chapter-7-1-subterranean-vacation/index.json b/site/public/v1/games/chapter-7-1-subterranean-vacation/index.json new file mode 100644 index 000000000000..a516149975fd --- /dev/null +++ b/site/public/v1/games/chapter-7-1-subterranean-vacation/index.json @@ -0,0 +1,25 @@ +{ + "id": 25648, + "slug": "chapter-7-1-subterranean-vacation", + "name": "Chapter 7-1: Subterranean Vacation", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136779721" + ], + "created_at": "2026-07-10T10:10:04.553837", + "updated_at": "2026-07-10T10:10:04.553837", + "url": "/v1/games/chapter-7-1-subterranean-vacation" +} diff --git a/site/public/v1/games/chapter-7-2-the-sealed-doors-three/index.json b/site/public/v1/games/chapter-7-2-the-sealed-doors-three/index.json new file mode 100644 index 000000000000..e2bc9bd9f921 --- /dev/null +++ b/site/public/v1/games/chapter-7-2-the-sealed-doors-three/index.json @@ -0,0 +1,25 @@ +{ + "id": 25649, + "slug": "chapter-7-2-the-sealed-doors-three", + "name": "Chapter 7-2: The Sealed Doors Three", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136779726" + ], + "created_at": "2026-07-10T10:10:04.553837", + "updated_at": "2026-07-10T10:10:04.553837", + "url": "/v1/games/chapter-7-2-the-sealed-doors-three" +} diff --git a/site/public/v1/games/chapter-7-3-the-forbidden-apple/index.json b/site/public/v1/games/chapter-7-3-the-forbidden-apple/index.json new file mode 100644 index 000000000000..1ca0331faf7c --- /dev/null +++ b/site/public/v1/games/chapter-7-3-the-forbidden-apple/index.json @@ -0,0 +1,25 @@ +{ + "id": 25650, + "slug": "chapter-7-3-the-forbidden-apple", + "name": "Chapter 7-3: The Forbidden Apple", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136779733" + ], + "created_at": "2026-07-10T10:10:04.554827", + "updated_at": "2026-07-10T10:10:04.554827", + "url": "/v1/games/chapter-7-3-the-forbidden-apple" +} diff --git a/site/public/v1/games/chapter-7-4-a-bone-chilling-tale/index.json b/site/public/v1/games/chapter-7-4-a-bone-chilling-tale/index.json new file mode 100644 index 000000000000..de7b1cfe9ac0 --- /dev/null +++ b/site/public/v1/games/chapter-7-4-a-bone-chilling-tale/index.json @@ -0,0 +1,25 @@ +{ + "id": 25651, + "slug": "chapter-7-4-a-bone-chilling-tale", + "name": "Chapter 7-4: A Bone-Chilling Tale", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136779739" + ], + "created_at": "2026-07-10T10:10:04.554827", + "updated_at": "2026-07-10T10:10:04.554827", + "url": "/v1/games/chapter-7-4-a-bone-chilling-tale" +} diff --git a/site/public/v1/games/chapter-7-the-underwhere/index.json b/site/public/v1/games/chapter-7-the-underwhere/index.json new file mode 100644 index 000000000000..f3c56caebe9f --- /dev/null +++ b/site/public/v1/games/chapter-7-the-underwhere/index.json @@ -0,0 +1,25 @@ +{ + "id": 25652, + "slug": "chapter-7-the-underwhere", + "name": "Chapter 7: The Underwhere", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136779471" + ], + "created_at": "2026-07-10T10:10:04.554827", + "updated_at": "2026-07-10T10:10:04.554827", + "url": "/v1/games/chapter-7-the-underwhere" +} diff --git a/site/public/v1/games/chapter-8-1-the-impending-darkness/index.json b/site/public/v1/games/chapter-8-1-the-impending-darkness/index.json new file mode 100644 index 000000000000..371f5f1b3633 --- /dev/null +++ b/site/public/v1/games/chapter-8-1-the-impending-darkness/index.json @@ -0,0 +1,25 @@ +{ + "id": 25653, + "slug": "chapter-8-1-the-impending-darkness", + "name": "Chapter 8-1: The Impending Darkness", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136779749" + ], + "created_at": "2026-07-10T10:10:04.555875", + "updated_at": "2026-07-10T10:10:04.555875", + "url": "/v1/games/chapter-8-1-the-impending-darkness" +} diff --git a/site/public/v1/games/chapter-8-2-the-crash/index.json b/site/public/v1/games/chapter-8-2-the-crash/index.json new file mode 100644 index 000000000000..f810af0796b5 --- /dev/null +++ b/site/public/v1/games/chapter-8-2-the-crash/index.json @@ -0,0 +1,25 @@ +{ + "id": 25654, + "slug": "chapter-8-2-the-crash", + "name": "Chapter 8-2: The Crash", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136779751" + ], + "created_at": "2026-07-10T10:10:04.555875", + "updated_at": "2026-07-10T10:10:04.555875", + "url": "/v1/games/chapter-8-2-the-crash" +} diff --git a/site/public/v1/games/chapter-8-3-countdown-to-destruction/index.json b/site/public/v1/games/chapter-8-3-countdown-to-destruction/index.json new file mode 100644 index 000000000000..ac7d980b8b29 --- /dev/null +++ b/site/public/v1/games/chapter-8-3-countdown-to-destruction/index.json @@ -0,0 +1,25 @@ +{ + "id": 25655, + "slug": "chapter-8-3-countdown-to-destruction", + "name": "Chapter 8-3: Countdown to Destruction", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136779753" + ], + "created_at": "2026-07-10T10:10:04.555875", + "updated_at": "2026-07-10T10:10:04.555875", + "url": "/v1/games/chapter-8-3-countdown-to-destruction" +} diff --git a/site/public/v1/games/chapter-8-4-tippi-and-count-bleck/index.json b/site/public/v1/games/chapter-8-4-tippi-and-count-bleck/index.json new file mode 100644 index 000000000000..8e87f7b08634 --- /dev/null +++ b/site/public/v1/games/chapter-8-4-tippi-and-count-bleck/index.json @@ -0,0 +1,25 @@ +{ + "id": 25656, + "slug": "chapter-8-4-tippi-and-count-bleck", + "name": "Chapter 8-4: Tippi and Count Bleck", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136779757" + ], + "created_at": "2026-07-10T10:10:04.556862", + "updated_at": "2026-07-10T10:10:04.556862", + "url": "/v1/games/chapter-8-4-tippi-and-count-bleck" +} diff --git a/site/public/v1/games/chapter-8-castle-bleck/index.json b/site/public/v1/games/chapter-8-castle-bleck/index.json new file mode 100644 index 000000000000..9c8e494103d1 --- /dev/null +++ b/site/public/v1/games/chapter-8-castle-bleck/index.json @@ -0,0 +1,25 @@ +{ + "id": 25657, + "slug": "chapter-8-castle-bleck", + "name": "Chapter 8: Castle Bleck", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136779473" + ], + "created_at": "2026-07-10T10:10:04.556862", + "updated_at": "2026-07-10T10:10:04.556862", + "url": "/v1/games/chapter-8-castle-bleck" +} diff --git a/site/public/v1/games/chart-attack/index.json b/site/public/v1/games/chart-attack/index.json new file mode 100644 index 000000000000..8efdb382fc7c --- /dev/null +++ b/site/public/v1/games/chart-attack/index.json @@ -0,0 +1,25 @@ +{ + "id": 25743, + "slug": "chart-attack", + "name": "Chart Attack", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126185156" + ], + "created_at": "2026-07-10T10:10:04.580856", + "updated_at": "2026-07-10T10:10:04.580856", + "url": "/v1/games/chart-attack" +} diff --git a/site/public/v1/games/cheapyd-pack/index.json b/site/public/v1/games/cheapyd-pack/index.json new file mode 100644 index 000000000000..d90232cb2621 --- /dev/null +++ b/site/public/v1/games/cheapyd-pack/index.json @@ -0,0 +1,27 @@ +{ + "id": 25823, + "slug": "cheapyd-pack", + "name": "CheapyD Pack", + "release_date": "2012-01-17", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 3" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60723259" + ], + "created_at": "2026-07-10T10:10:04.601913", + "updated_at": "2026-07-10T10:10:04.601913", + "url": "/v1/games/cheapyd-pack" +} diff --git a/site/public/v1/games/checkers-royal/index.json b/site/public/v1/games/checkers-royal/index.json new file mode 100644 index 000000000000..fd892f3518eb --- /dev/null +++ b/site/public/v1/games/checkers-royal/index.json @@ -0,0 +1,32 @@ +{ + "id": 25849, + "slug": "checkers-royal", + "name": "Checkers Royal+", + "release_date": "2021-04-02", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "iPadOS", + "iOS" + ], + "genres": [], + "stores": [], + "developers": [ + "Gamma Play" + ], + "publishers": [ + "Gamma Play" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106862079" + ], + "created_at": "2026-07-10T10:10:04.608897", + "updated_at": "2026-07-10T10:10:04.608897", + "url": "/v1/games/checkers-royal" +} diff --git a/site/public/v1/games/checkmate-q140472680/index.json b/site/public/v1/games/checkmate-q140472680/index.json new file mode 100644 index 000000000000..e4751f0cfdc0 --- /dev/null +++ b/site/public/v1/games/checkmate-q140472680/index.json @@ -0,0 +1,29 @@ +{ + "id": 25860, + "slug": "checkmate-q140472680", + "name": "Checkmate", + "release_date": "1977-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "arcade video game machine" + ], + "genres": [ + "action game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140472680" + ], + "created_at": "2026-07-10T10:10:04.612528", + "updated_at": "2026-07-10T10:10:04.612528", + "url": "/v1/games/checkmate-q140472680" +} diff --git a/site/public/v1/games/cheese-skin-pack/index.json b/site/public/v1/games/cheese-skin-pack/index.json new file mode 100644 index 000000000000..df7d90d9dd06 --- /dev/null +++ b/site/public/v1/games/cheese-skin-pack/index.json @@ -0,0 +1,25 @@ +{ + "id": 25890, + "slug": "cheese-skin-pack", + "name": "Cheese Skin Pack", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q56033873" + ], + "created_at": "2026-07-10T10:10:04.619624", + "updated_at": "2026-07-10T10:10:04.619624", + "url": "/v1/games/cheese-skin-pack" +} diff --git a/site/public/v1/games/chef-life-a-restaurant-simulator-al-forno-edition/index.json b/site/public/v1/games/chef-life-a-restaurant-simulator-al-forno-edition/index.json new file mode 100644 index 000000000000..2de538b1e2bd --- /dev/null +++ b/site/public/v1/games/chef-life-a-restaurant-simulator-al-forno-edition/index.json @@ -0,0 +1,31 @@ +{ + "id": 25904, + "slug": "chef-life-a-restaurant-simulator-al-forno-edition", + "name": "Chef Life: A Restaurant Simulator - Al Forno Edition", + "release_date": "2023-02-23", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S" + ], + "genres": [], + "stores": [], + "developers": [ + "Cyanide" + ], + "publishers": [ + "Nacon" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121203634" + ], + "created_at": "2026-07-10T10:10:04.623536", + "updated_at": "2026-07-10T10:10:04.623536", + "url": "/v1/games/chef-life-a-restaurant-simulator-al-forno-edition" +} diff --git a/site/public/v1/games/chesmac/index.json b/site/public/v1/games/chesmac/index.json new file mode 100644 index 000000000000..ee6ab58fc594 --- /dev/null +++ b/site/public/v1/games/chesmac/index.json @@ -0,0 +1,29 @@ +{ + "id": 25979, + "slug": "chesmac", + "name": "Chesmac", + "release_date": "1979-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Telmac 1800" + ], + "genres": [ + "computer chess" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18693945" + ], + "created_at": "2026-07-10T10:10:04.647604", + "updated_at": "2026-07-10T10:10:04.647604", + "url": "/v1/games/chesmac" +} diff --git a/site/public/v1/games/chess-app/index.json b/site/public/v1/games/chess-app/index.json new file mode 100644 index 000000000000..75fc7d040313 --- /dev/null +++ b/site/public/v1/games/chess-app/index.json @@ -0,0 +1,25 @@ +{ + "id": 25986, + "slug": "chess-app", + "name": "chess.app", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q133936280" + ], + "created_at": "2026-07-10T10:10:04.650630", + "updated_at": "2026-07-10T10:10:04.650630", + "url": "/v1/games/chess-app" +} diff --git a/site/public/v1/games/chess-com/index.json b/site/public/v1/games/chess-com/index.json new file mode 100644 index 000000000000..af7533174e0a --- /dev/null +++ b/site/public/v1/games/chess-com/index.json @@ -0,0 +1,25 @@ +{ + "id": 25995, + "slug": "chess-com", + "name": "Chess.com", + "release_date": "2007-05-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16829376" + ], + "created_at": "2026-07-10T10:10:04.652537", + "updated_at": "2026-07-10T10:10:04.652537", + "url": "/v1/games/chess-com" +} diff --git a/site/public/v1/games/chess-play-learn/index.json b/site/public/v1/games/chess-play-learn/index.json new file mode 100644 index 000000000000..0189e5a3683f --- /dev/null +++ b/site/public/v1/games/chess-play-learn/index.json @@ -0,0 +1,34 @@ +{ + "id": 26033, + "slug": "chess-play-learn", + "name": "Chess - Play & Learn+", + "release_date": "2021-04-02", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "iPadOS", + "iOS" + ], + "genres": [ + "chess video game" + ], + "stores": [], + "developers": [ + "Chess.com" + ], + "publishers": [ + "Chess.com" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106861809" + ], + "created_at": "2026-07-10T10:10:04.663612", + "updated_at": "2026-07-10T10:10:04.663612", + "url": "/v1/games/chess-play-learn" +} diff --git a/site/public/v1/games/chess-universe-q118235199/index.json b/site/public/v1/games/chess-universe-q118235199/index.json new file mode 100644 index 000000000000..86ae8bf6903a --- /dev/null +++ b/site/public/v1/games/chess-universe-q118235199/index.json @@ -0,0 +1,28 @@ +{ + "id": 26057, + "slug": "chess-universe-q118235199", + "name": "Chess Universe+", + "release_date": "2023-05-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "iPadOS", + "iOS" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118235199" + ], + "created_at": "2026-07-10T10:10:04.669051", + "updated_at": "2026-07-10T10:10:04.669051", + "url": "/v1/games/chess-universe-q118235199" +} diff --git a/site/public/v1/games/chesstempo-com/index.json b/site/public/v1/games/chesstempo-com/index.json new file mode 100644 index 000000000000..04449590d37e --- /dev/null +++ b/site/public/v1/games/chesstempo-com/index.json @@ -0,0 +1,25 @@ +{ + "id": 26107, + "slug": "chesstempo-com", + "name": "ChessTempo.com", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q27529928" + ], + "created_at": "2026-07-10T10:10:04.683053", + "updated_at": "2026-07-10T10:10:04.683053", + "url": "/v1/games/chesstempo-com" +} diff --git a/site/public/v1/games/children-of-the-nile-pack/index.json b/site/public/v1/games/children-of-the-nile-pack/index.json new file mode 100644 index 000000000000..d9688b2c9390 --- /dev/null +++ b/site/public/v1/games/children-of-the-nile-pack/index.json @@ -0,0 +1,25 @@ +{ + "id": 26343, + "slug": "children-of-the-nile-pack", + "name": "Children of the Nile Pack", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130381931" + ], + "created_at": "2026-07-10T10:10:04.752913", + "updated_at": "2026-07-10T10:10:04.752913", + "url": "/v1/games/children-of-the-nile-pack" +} diff --git a/site/public/v1/games/chilloutvr-unlocked-account/index.json b/site/public/v1/games/chilloutvr-unlocked-account/index.json new file mode 100644 index 000000000000..bba88056bbaf --- /dev/null +++ b/site/public/v1/games/chilloutvr-unlocked-account/index.json @@ -0,0 +1,33 @@ +{ + "id": 26383, + "slug": "chilloutvr-unlocked-account", + "name": "ChilloutVR - Unlocked Account", + "release_date": "2020-12-30", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "massively multiplayer online game" + ], + "stores": [], + "developers": [ + "Alpha Blend Interactive" + ], + "publishers": [ + "Alpha Blend Interactive" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113363207" + ], + "created_at": "2026-07-10T10:10:04.762835", + "updated_at": "2026-07-10T10:10:04.762835", + "url": "/v1/games/chilloutvr-unlocked-account" +} diff --git a/site/public/v1/games/chimera-beast/index.json b/site/public/v1/games/chimera-beast/index.json new file mode 100644 index 000000000000..63f79417582f --- /dev/null +++ b/site/public/v1/games/chimera-beast/index.json @@ -0,0 +1,25 @@ +{ + "id": 26392, + "slug": "chimera-beast", + "name": "Chimera Beast", + "release_date": "1993-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5099355" + ], + "created_at": "2026-07-10T10:10:04.765840", + "updated_at": "2026-07-10T10:10:04.765840", + "url": "/v1/games/chimera-beast" +} diff --git a/site/public/v1/games/chocolate-doom/index.json b/site/public/v1/games/chocolate-doom/index.json new file mode 100644 index 000000000000..6959ad946d1f --- /dev/null +++ b/site/public/v1/games/chocolate-doom/index.json @@ -0,0 +1,27 @@ +{ + "id": 26555, + "slug": "chocolate-doom", + "name": "Chocolate Doom", + "release_date": "2005-09-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q67181580" + ], + "created_at": "2026-07-10T10:10:04.807903", + "updated_at": "2026-07-10T10:10:04.807903", + "url": "/v1/games/chocolate-doom" +} diff --git a/site/public/v1/games/choice-of-zombies-delta-force-operator/index.json b/site/public/v1/games/choice-of-zombies-delta-force-operator/index.json new file mode 100644 index 000000000000..cd91a66c5a97 --- /dev/null +++ b/site/public/v1/games/choice-of-zombies-delta-force-operator/index.json @@ -0,0 +1,32 @@ +{ + "id": 26606, + "slug": "choice-of-zombies-delta-force-operator", + "name": "Choice of Zombies - Delta Force Operator", + "release_date": "2012-04-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Choice of Games" + ], + "publishers": [ + "Choice of Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115016158" + ], + "created_at": "2026-07-10T10:10:04.817470", + "updated_at": "2026-07-10T10:10:04.817470", + "url": "/v1/games/choice-of-zombies-delta-force-operator" +} diff --git a/site/public/v1/games/chris-taylor-s-kings-and-castles/index.json b/site/public/v1/games/chris-taylor-s-kings-and-castles/index.json new file mode 100644 index 000000000000..6d7b82541b5f --- /dev/null +++ b/site/public/v1/games/chris-taylor-s-kings-and-castles/index.json @@ -0,0 +1,31 @@ +{ + "id": 26718, + "slug": "chris-taylor-s-kings-and-castles", + "name": "Chris Taylor's Kings and Castles", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "real-time strategy" + ], + "stores": [], + "developers": [ + "Wargaming Seattle" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5108232" + ], + "created_at": "2026-07-10T10:10:04.848523", + "updated_at": "2026-07-10T10:10:04.848523", + "url": "/v1/games/chris-taylor-s-kings-and-castles" +} diff --git a/site/public/v1/games/christmas-collection/index.json b/site/public/v1/games/christmas-collection/index.json new file mode 100644 index 000000000000..fbf224b5116e --- /dev/null +++ b/site/public/v1/games/christmas-collection/index.json @@ -0,0 +1,27 @@ +{ + "id": 26739, + "slug": "christmas-collection", + "name": "Christmas Collection", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Hewson Consultants" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131152675" + ], + "created_at": "2026-07-10T10:10:04.858464", + "updated_at": "2026-07-10T10:10:04.858464", + "url": "/v1/games/christmas-collection" +} diff --git a/site/public/v1/games/chrome-2/index.json b/site/public/v1/games/chrome-2/index.json new file mode 100644 index 000000000000..48095ccdfbb9 --- /dev/null +++ b/site/public/v1/games/chrome-2/index.json @@ -0,0 +1,29 @@ +{ + "id": 26882, + "slug": "chrome-2", + "name": "Chrome 2", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110817087" + ], + "created_at": "2026-07-10T10:10:04.918463", + "updated_at": "2026-07-10T10:10:04.918463", + "url": "/v1/games/chrome-2" +} diff --git a/site/public/v1/games/chrono-break/index.json b/site/public/v1/games/chrono-break/index.json new file mode 100644 index 000000000000..1f01f1065295 --- /dev/null +++ b/site/public/v1/games/chrono-break/index.json @@ -0,0 +1,25 @@ +{ + "id": 26963, + "slug": "chrono-break", + "name": "Chrono Break", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2566500" + ], + "created_at": "2026-07-10T10:10:04.939484", + "updated_at": "2026-07-10T10:10:04.939484", + "url": "/v1/games/chrono-break" +} diff --git a/site/public/v1/games/chunithm/index.json b/site/public/v1/games/chunithm/index.json new file mode 100644 index 000000000000..ce2128eba83c --- /dev/null +++ b/site/public/v1/games/chunithm/index.json @@ -0,0 +1,31 @@ +{ + "id": 27085, + "slug": "chunithm", + "name": "Chunithm", + "release_date": "2015-07-16", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "arcade video game machine" + ], + "genres": [], + "stores": [], + "developers": [ + "Sega" + ], + "publishers": [ + "Sega Interactive" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22130940" + ], + "created_at": "2026-07-10T10:10:04.970465", + "updated_at": "2026-07-10T10:10:04.970465", + "url": "/v1/games/chunithm" +} diff --git a/site/public/v1/games/cinema-keiba-japan-world-cup/index.json b/site/public/v1/games/cinema-keiba-japan-world-cup/index.json new file mode 100644 index 000000000000..4c7d84f12a3b --- /dev/null +++ b/site/public/v1/games/cinema-keiba-japan-world-cup/index.json @@ -0,0 +1,27 @@ +{ + "id": 27159, + "slug": "cinema-keiba-japan-world-cup", + "name": "CINEMA KEIBA/JAPAN WORLD CUP", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Japan Racing Association" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11193339" + ], + "created_at": "2026-07-10T10:10:04.990547", + "updated_at": "2026-07-10T10:10:04.990547", + "url": "/v1/games/cinema-keiba-japan-world-cup" +} diff --git a/site/public/v1/games/cinematic-mod/index.json b/site/public/v1/games/cinematic-mod/index.json new file mode 100644 index 000000000000..95f8f0d561ef --- /dev/null +++ b/site/public/v1/games/cinematic-mod/index.json @@ -0,0 +1,25 @@ +{ + "id": 27168, + "slug": "cinematic-mod", + "name": "Cinematic Mod", + "release_date": "2005-10-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q15272273" + ], + "created_at": "2026-07-10T10:10:04.993590", + "updated_at": "2026-07-10T10:10:04.993590", + "url": "/v1/games/cinematic-mod" +} diff --git a/site/public/v1/games/circa-infinity-ultimate-edition/index.json b/site/public/v1/games/circa-infinity-ultimate-edition/index.json new file mode 100644 index 000000000000..987b41ded630 --- /dev/null +++ b/site/public/v1/games/circa-infinity-ultimate-edition/index.json @@ -0,0 +1,27 @@ +{ + "id": 27192, + "slug": "circa-infinity-ultimate-edition", + "name": "Circa Infinity Ultimate Edition", + "release_date": "2021-12-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "RedDeerGames" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110082840" + ], + "created_at": "2026-07-10T10:10:05.000559", + "updated_at": "2026-07-10T10:10:05.000559", + "url": "/v1/games/circa-infinity-ultimate-edition" +} diff --git a/site/public/v1/games/cisco-heat-playable-demo/index.json b/site/public/v1/games/cisco-heat-playable-demo/index.json new file mode 100644 index 000000000000..8e4fe09f4275 --- /dev/null +++ b/site/public/v1/games/cisco-heat-playable-demo/index.json @@ -0,0 +1,29 @@ +{ + "id": 27279, + "slug": "cisco-heat-playable-demo", + "name": "Cisco Heat - Playable Demo", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "ZX Spectrum" + ], + "genres": [ + "racing video game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127432185" + ], + "created_at": "2026-07-10T10:10:05.023464", + "updated_at": "2026-07-10T10:10:05.023464", + "url": "/v1/games/cisco-heat-playable-demo" +} diff --git a/site/public/v1/games/cities-in-motion-2-back-to-the-past/index.json b/site/public/v1/games/cities-in-motion-2-back-to-the-past/index.json new file mode 100644 index 000000000000..84f5d104eb30 --- /dev/null +++ b/site/public/v1/games/cities-in-motion-2-back-to-the-past/index.json @@ -0,0 +1,32 @@ +{ + "id": 27307, + "slug": "cities-in-motion-2-back-to-the-past", + "name": "Cities in Motion 2: Back to the Past", + "release_date": "2013-09-17", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Colossal Order" + ], + "publishers": [ + "Paradox Interactive" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113283160" + ], + "created_at": "2026-07-10T10:10:05.030534", + "updated_at": "2026-07-10T10:10:05.030534", + "url": "/v1/games/cities-in-motion-2-back-to-the-past" +} diff --git a/site/public/v1/games/cities-in-motion-2-bus-mania/index.json b/site/public/v1/games/cities-in-motion-2-bus-mania/index.json new file mode 100644 index 000000000000..ddbc776bcba6 --- /dev/null +++ b/site/public/v1/games/cities-in-motion-2-bus-mania/index.json @@ -0,0 +1,32 @@ +{ + "id": 27308, + "slug": "cities-in-motion-2-bus-mania", + "name": "Cities in Motion 2: Bus Mania", + "release_date": "2013-06-20", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Colossal Order" + ], + "publishers": [ + "Paradox Interactive" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113283130" + ], + "created_at": "2026-07-10T10:10:05.031526", + "updated_at": "2026-07-10T10:10:05.031526", + "url": "/v1/games/cities-in-motion-2-bus-mania" +} diff --git a/site/public/v1/games/cities-in-motion-2-european-cities/index.json b/site/public/v1/games/cities-in-motion-2-european-cities/index.json new file mode 100644 index 000000000000..9f962b8ea3e1 --- /dev/null +++ b/site/public/v1/games/cities-in-motion-2-european-cities/index.json @@ -0,0 +1,31 @@ +{ + "id": 27309, + "slug": "cities-in-motion-2-european-cities", + "name": "Cities in Motion 2: European Cities", + "release_date": "2014-03-11", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Colossal Order" + ], + "publishers": [ + "Paradox Interactive" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113283183" + ], + "created_at": "2026-07-10T10:10:05.031526", + "updated_at": "2026-07-10T10:10:05.031526", + "url": "/v1/games/cities-in-motion-2-european-cities" +} diff --git a/site/public/v1/games/cities-in-motion-2-european-vehicle-pack/index.json b/site/public/v1/games/cities-in-motion-2-european-vehicle-pack/index.json new file mode 100644 index 000000000000..f45428f42593 --- /dev/null +++ b/site/public/v1/games/cities-in-motion-2-european-vehicle-pack/index.json @@ -0,0 +1,31 @@ +{ + "id": 27310, + "slug": "cities-in-motion-2-european-vehicle-pack", + "name": "Cities in Motion 2: European Vehicle Pack", + "release_date": "2014-07-17", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Colossal Order" + ], + "publishers": [ + "Paradox Interactive" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113283199" + ], + "created_at": "2026-07-10T10:10:05.031526", + "updated_at": "2026-07-10T10:10:05.031526", + "url": "/v1/games/cities-in-motion-2-european-vehicle-pack" +} diff --git a/site/public/v1/games/cities-in-motion-2-lofty-landmarks/index.json b/site/public/v1/games/cities-in-motion-2-lofty-landmarks/index.json new file mode 100644 index 000000000000..94ac40280b45 --- /dev/null +++ b/site/public/v1/games/cities-in-motion-2-lofty-landmarks/index.json @@ -0,0 +1,32 @@ +{ + "id": 27311, + "slug": "cities-in-motion-2-lofty-landmarks", + "name": "Cities in Motion 2: Lofty Landmarks", + "release_date": "2013-08-29", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Colossal Order" + ], + "publishers": [ + "Paradox Interactive" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113283154" + ], + "created_at": "2026-07-10T10:10:05.031526", + "updated_at": "2026-07-10T10:10:05.031526", + "url": "/v1/games/cities-in-motion-2-lofty-landmarks" +} diff --git a/site/public/v1/games/cities-in-motion-2-marvellous-monorails/index.json b/site/public/v1/games/cities-in-motion-2-marvellous-monorails/index.json new file mode 100644 index 000000000000..62be986d5781 --- /dev/null +++ b/site/public/v1/games/cities-in-motion-2-marvellous-monorails/index.json @@ -0,0 +1,32 @@ +{ + "id": 27312, + "slug": "cities-in-motion-2-marvellous-monorails", + "name": "Cities in Motion 2: Marvellous Monorails", + "release_date": "2014-01-09", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Colossal Order" + ], + "publishers": [ + "Paradox Interactive" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113283176" + ], + "created_at": "2026-07-10T10:10:05.032541", + "updated_at": "2026-07-10T10:10:05.032541", + "url": "/v1/games/cities-in-motion-2-marvellous-monorails" +} diff --git a/site/public/v1/games/cities-in-motion-2-metro-madness/index.json b/site/public/v1/games/cities-in-motion-2-metro-madness/index.json new file mode 100644 index 000000000000..f5475f54e64f --- /dev/null +++ b/site/public/v1/games/cities-in-motion-2-metro-madness/index.json @@ -0,0 +1,32 @@ +{ + "id": 27313, + "slug": "cities-in-motion-2-metro-madness", + "name": "Cities in Motion 2: Metro Madness", + "release_date": "2013-08-15", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Colossal Order" + ], + "publishers": [ + "Paradox Interactive" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113283131" + ], + "created_at": "2026-07-10T10:10:05.032541", + "updated_at": "2026-07-10T10:10:05.032541", + "url": "/v1/games/cities-in-motion-2-metro-madness" +} diff --git a/site/public/v1/games/cities-in-motion-2-olden-times/index.json b/site/public/v1/games/cities-in-motion-2-olden-times/index.json new file mode 100644 index 000000000000..fcf490b5c738 --- /dev/null +++ b/site/public/v1/games/cities-in-motion-2-olden-times/index.json @@ -0,0 +1,32 @@ +{ + "id": 27314, + "slug": "cities-in-motion-2-olden-times", + "name": "Cities in Motion 2: Olden Times", + "release_date": "2013-10-03", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Colossal Order" + ], + "publishers": [ + "Paradox Interactive" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113283167" + ], + "created_at": "2026-07-10T10:10:05.032541", + "updated_at": "2026-07-10T10:10:05.032541", + "url": "/v1/games/cities-in-motion-2-olden-times" +} diff --git a/site/public/v1/games/cities-in-motion-2-players-choice-vehicle-pack/index.json b/site/public/v1/games/cities-in-motion-2-players-choice-vehicle-pack/index.json new file mode 100644 index 000000000000..38f4a4b52295 --- /dev/null +++ b/site/public/v1/games/cities-in-motion-2-players-choice-vehicle-pack/index.json @@ -0,0 +1,31 @@ +{ + "id": 27315, + "slug": "cities-in-motion-2-players-choice-vehicle-pack", + "name": "Cities in Motion 2: Players Choice Vehicle Pack", + "release_date": "2014-06-17", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Colossal Order" + ], + "publishers": [ + "Paradox Interactive" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113283190" + ], + "created_at": "2026-07-10T10:10:05.032541", + "updated_at": "2026-07-10T10:10:05.032541", + "url": "/v1/games/cities-in-motion-2-players-choice-vehicle-pack" +} diff --git a/site/public/v1/games/cities-in-motion-2-trekking-trolleys/index.json b/site/public/v1/games/cities-in-motion-2-trekking-trolleys/index.json new file mode 100644 index 000000000000..3d6c1140a341 --- /dev/null +++ b/site/public/v1/games/cities-in-motion-2-trekking-trolleys/index.json @@ -0,0 +1,32 @@ +{ + "id": 27316, + "slug": "cities-in-motion-2-trekking-trolleys", + "name": "Cities in Motion 2: Trekking Trolleys", + "release_date": "2013-07-30", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Colossal Order" + ], + "publishers": [ + "Paradox Interactive" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113283147" + ], + "created_at": "2026-07-10T10:10:05.032541", + "updated_at": "2026-07-10T10:10:05.032541", + "url": "/v1/games/cities-in-motion-2-trekking-trolleys" +} diff --git a/site/public/v1/games/cities-in-motion-2-wending-waterbuses/index.json b/site/public/v1/games/cities-in-motion-2-wending-waterbuses/index.json new file mode 100644 index 000000000000..3b0c8ff25961 --- /dev/null +++ b/site/public/v1/games/cities-in-motion-2-wending-waterbuses/index.json @@ -0,0 +1,32 @@ +{ + "id": 27317, + "slug": "cities-in-motion-2-wending-waterbuses", + "name": "Cities in Motion 2: Wending Waterbuses", + "release_date": "2013-07-30", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Colossal Order" + ], + "publishers": [ + "Paradox Interactive" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113283139" + ], + "created_at": "2026-07-10T10:10:05.033519", + "updated_at": "2026-07-10T10:10:05.033519", + "url": "/v1/games/cities-in-motion-2-wending-waterbuses" +} diff --git a/site/public/v1/games/cities-in-motion-design-classics/index.json b/site/public/v1/games/cities-in-motion-design-classics/index.json new file mode 100644 index 000000000000..665162b5dc62 --- /dev/null +++ b/site/public/v1/games/cities-in-motion-design-classics/index.json @@ -0,0 +1,32 @@ +{ + "id": 27319, + "slug": "cities-in-motion-design-classics", + "name": "Cities in Motion: Design Classics", + "release_date": "2011-04-05", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Colossal Order" + ], + "publishers": [ + "Paradox Interactive" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113283090" + ], + "created_at": "2026-07-10T10:10:05.033519", + "updated_at": "2026-07-10T10:10:05.033519", + "url": "/v1/games/cities-in-motion-design-classics" +} diff --git a/site/public/v1/games/cities-in-motion-design-dreams/index.json b/site/public/v1/games/cities-in-motion-design-dreams/index.json new file mode 100644 index 000000000000..9ebe55bc67a1 --- /dev/null +++ b/site/public/v1/games/cities-in-motion-design-dreams/index.json @@ -0,0 +1,32 @@ +{ + "id": 27320, + "slug": "cities-in-motion-design-dreams", + "name": "Cities In Motion: Design Dreams", + "release_date": "2012-02-29", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Colossal Order" + ], + "publishers": [ + "Paradox Interactive" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113283110" + ], + "created_at": "2026-07-10T10:10:05.033519", + "updated_at": "2026-07-10T10:10:05.033519", + "url": "/v1/games/cities-in-motion-design-dreams" +} diff --git a/site/public/v1/games/cities-in-motion-design-marvels/index.json b/site/public/v1/games/cities-in-motion-design-marvels/index.json new file mode 100644 index 000000000000..8098d365fbda --- /dev/null +++ b/site/public/v1/games/cities-in-motion-design-marvels/index.json @@ -0,0 +1,32 @@ +{ + "id": 27321, + "slug": "cities-in-motion-design-marvels", + "name": "Cities in Motion: Design Marvels", + "release_date": "2011-05-20", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Colossal Order" + ], + "publishers": [ + "Paradox Interactive" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113283094" + ], + "created_at": "2026-07-10T10:10:05.034524", + "updated_at": "2026-07-10T10:10:05.034524", + "url": "/v1/games/cities-in-motion-design-marvels" +} diff --git a/site/public/v1/games/cities-in-motion-design-now/index.json b/site/public/v1/games/cities-in-motion-design-now/index.json new file mode 100644 index 000000000000..50a775d92388 --- /dev/null +++ b/site/public/v1/games/cities-in-motion-design-now/index.json @@ -0,0 +1,32 @@ +{ + "id": 27322, + "slug": "cities-in-motion-design-now", + "name": "Cities in Motion: Design Now", + "release_date": "2011-06-14", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Colossal Order" + ], + "publishers": [ + "Paradox Interactive" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113283097" + ], + "created_at": "2026-07-10T10:10:05.034524", + "updated_at": "2026-07-10T10:10:05.034524", + "url": "/v1/games/cities-in-motion-design-now" +} diff --git a/site/public/v1/games/cities-in-motion-design-quirks/index.json b/site/public/v1/games/cities-in-motion-design-quirks/index.json new file mode 100644 index 000000000000..9ebd670cff21 --- /dev/null +++ b/site/public/v1/games/cities-in-motion-design-quirks/index.json @@ -0,0 +1,32 @@ +{ + "id": 27323, + "slug": "cities-in-motion-design-quirks", + "name": "Cities in Motion: Design Quirks", + "release_date": "2013-02-05", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Colossal Order" + ], + "publishers": [ + "Paradox Interactive" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113283125" + ], + "created_at": "2026-07-10T10:10:05.034524", + "updated_at": "2026-07-10T10:10:05.034524", + "url": "/v1/games/cities-in-motion-design-quirks" +} diff --git a/site/public/v1/games/cities-in-motion-german-cities/index.json b/site/public/v1/games/cities-in-motion-german-cities/index.json new file mode 100644 index 000000000000..fb3d652e4088 --- /dev/null +++ b/site/public/v1/games/cities-in-motion-german-cities/index.json @@ -0,0 +1,32 @@ +{ + "id": 27324, + "slug": "cities-in-motion-german-cities", + "name": "Cities in Motion: German Cities", + "release_date": "2011-09-14", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Colossal Order" + ], + "publishers": [ + "Paradox Interactive" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113283105" + ], + "created_at": "2026-07-10T10:10:05.034524", + "updated_at": "2026-07-10T10:10:05.034524", + "url": "/v1/games/cities-in-motion-german-cities" +} diff --git a/site/public/v1/games/cities-in-motion-london/index.json b/site/public/v1/games/cities-in-motion-london/index.json new file mode 100644 index 000000000000..f1f761878f48 --- /dev/null +++ b/site/public/v1/games/cities-in-motion-london/index.json @@ -0,0 +1,32 @@ +{ + "id": 27325, + "slug": "cities-in-motion-london", + "name": "Cities in Motion: London", + "release_date": "2012-11-20", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Colossal Order" + ], + "publishers": [ + "Paradox Interactive" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113283127" + ], + "created_at": "2026-07-10T10:10:05.034524", + "updated_at": "2026-07-10T10:10:05.034524", + "url": "/v1/games/cities-in-motion-london" +} diff --git a/site/public/v1/games/cities-in-motion-metro-stations/index.json b/site/public/v1/games/cities-in-motion-metro-stations/index.json new file mode 100644 index 000000000000..986cd4230dd8 --- /dev/null +++ b/site/public/v1/games/cities-in-motion-metro-stations/index.json @@ -0,0 +1,32 @@ +{ + "id": 27326, + "slug": "cities-in-motion-metro-stations", + "name": "Cities in Motion: Metro Stations", + "release_date": "2011-07-22", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Colossal Order" + ], + "publishers": [ + "Paradox Interactive" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113283103" + ], + "created_at": "2026-07-10T10:10:05.035506", + "updated_at": "2026-07-10T10:10:05.035506", + "url": "/v1/games/cities-in-motion-metro-stations" +} diff --git a/site/public/v1/games/cities-in-motion-paris/index.json b/site/public/v1/games/cities-in-motion-paris/index.json new file mode 100644 index 000000000000..cc843a998013 --- /dev/null +++ b/site/public/v1/games/cities-in-motion-paris/index.json @@ -0,0 +1,32 @@ +{ + "id": 27327, + "slug": "cities-in-motion-paris", + "name": "Cities in Motion: Paris", + "release_date": "2012-05-15", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Colossal Order" + ], + "publishers": [ + "Paradox Interactive" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113283117" + ], + "created_at": "2026-07-10T10:10:05.035506", + "updated_at": "2026-07-10T10:10:05.035506", + "url": "/v1/games/cities-in-motion-paris" +} diff --git a/site/public/v1/games/cities-in-motion-st-petersburg/index.json b/site/public/v1/games/cities-in-motion-st-petersburg/index.json new file mode 100644 index 000000000000..ea780ca2dfcf --- /dev/null +++ b/site/public/v1/games/cities-in-motion-st-petersburg/index.json @@ -0,0 +1,32 @@ +{ + "id": 27328, + "slug": "cities-in-motion-st-petersburg", + "name": "Cities in Motion: St. Petersburg", + "release_date": "2012-07-26", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Colossal Order" + ], + "publishers": [ + "Paradox Interactive" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113283120" + ], + "created_at": "2026-07-10T10:10:05.035506", + "updated_at": "2026-07-10T10:10:05.035506", + "url": "/v1/games/cities-in-motion-st-petersburg" +} diff --git a/site/public/v1/games/cities-in-motion-tokyo/index.json b/site/public/v1/games/cities-in-motion-tokyo/index.json new file mode 100644 index 000000000000..7bd6c44df2a6 --- /dev/null +++ b/site/public/v1/games/cities-in-motion-tokyo/index.json @@ -0,0 +1,32 @@ +{ + "id": 27329, + "slug": "cities-in-motion-tokyo", + "name": "Cities in Motion: Tokyo", + "release_date": "2011-05-31", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Colossal Order" + ], + "publishers": [ + "Paradox Interactive" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113283100" + ], + "created_at": "2026-07-10T10:10:05.035506", + "updated_at": "2026-07-10T10:10:05.035506", + "url": "/v1/games/cities-in-motion-tokyo" +} diff --git a/site/public/v1/games/cities-in-motion-ulm/index.json b/site/public/v1/games/cities-in-motion-ulm/index.json new file mode 100644 index 000000000000..277846c0fa20 --- /dev/null +++ b/site/public/v1/games/cities-in-motion-ulm/index.json @@ -0,0 +1,32 @@ +{ + "id": 27330, + "slug": "cities-in-motion-ulm", + "name": "Cities in Motion: Ulm", + "release_date": "2012-04-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Colossal Order" + ], + "publishers": [ + "Paradox Interactive" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113283112" + ], + "created_at": "2026-07-10T10:10:05.035506", + "updated_at": "2026-07-10T10:10:05.035506", + "url": "/v1/games/cities-in-motion-ulm" +} diff --git a/site/public/v1/games/cities-in-motion-us-cities/index.json b/site/public/v1/games/cities-in-motion-us-cities/index.json new file mode 100644 index 000000000000..3ba4a79226dd --- /dev/null +++ b/site/public/v1/games/cities-in-motion-us-cities/index.json @@ -0,0 +1,32 @@ +{ + "id": 27331, + "slug": "cities-in-motion-us-cities", + "name": "Cities in Motion: US Cities", + "release_date": "2012-01-17", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Colossal Order" + ], + "publishers": [ + "Paradox Interactive" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113283108" + ], + "created_at": "2026-07-10T10:10:05.036539", + "updated_at": "2026-07-10T10:10:05.036539", + "url": "/v1/games/cities-in-motion-us-cities" +} diff --git a/site/public/v1/games/cities-skylines-after-dark/index.json b/site/public/v1/games/cities-skylines-after-dark/index.json new file mode 100644 index 000000000000..b9bbe5dd87fb --- /dev/null +++ b/site/public/v1/games/cities-skylines-after-dark/index.json @@ -0,0 +1,32 @@ +{ + "id": 27335, + "slug": "cities-skylines-after-dark", + "name": "Cities: Skylines – After Dark", + "release_date": "2015-09-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Colossal Order" + ], + "publishers": [ + "Paradox Interactive" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q31887620" + ], + "created_at": "2026-07-10T10:10:05.043544", + "updated_at": "2026-07-10T10:10:05.043544", + "url": "/v1/games/cities-skylines-after-dark" +} diff --git a/site/public/v1/games/cities-skylines-airports/index.json b/site/public/v1/games/cities-skylines-airports/index.json new file mode 100644 index 000000000000..ee9e93260016 --- /dev/null +++ b/site/public/v1/games/cities-skylines-airports/index.json @@ -0,0 +1,32 @@ +{ + "id": 27336, + "slug": "cities-skylines-airports", + "name": "Cities: Skylines – Airports", + "release_date": "2022-01-25", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Colossal Order" + ], + "publishers": [ + "Paradox Interactive" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113585655" + ], + "created_at": "2026-07-10T10:10:05.045548", + "updated_at": "2026-07-10T10:10:05.045548", + "url": "/v1/games/cities-skylines-airports" +} diff --git a/site/public/v1/games/cities-skylines-campus/index.json b/site/public/v1/games/cities-skylines-campus/index.json new file mode 100644 index 000000000000..3b8e4be7cae2 --- /dev/null +++ b/site/public/v1/games/cities-skylines-campus/index.json @@ -0,0 +1,32 @@ +{ + "id": 27337, + "slug": "cities-skylines-campus", + "name": "Cities: Skylines – Campus", + "release_date": "2019-05-21", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Colossal Order" + ], + "publishers": [ + "Paradox Interactive" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107475096" + ], + "created_at": "2026-07-10T10:10:05.048543", + "updated_at": "2026-07-10T10:10:05.048543", + "url": "/v1/games/cities-skylines-campus" +} diff --git a/site/public/v1/games/cities-skylines-concerts/index.json b/site/public/v1/games/cities-skylines-concerts/index.json new file mode 100644 index 000000000000..057ed5dae260 --- /dev/null +++ b/site/public/v1/games/cities-skylines-concerts/index.json @@ -0,0 +1,32 @@ +{ + "id": 27338, + "slug": "cities-skylines-concerts", + "name": "Cities: Skylines – Concerts", + "release_date": "2017-08-17", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Colossal Order" + ], + "publishers": [ + "Paradox Interactive" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107475093" + ], + "created_at": "2026-07-10T10:10:05.050542", + "updated_at": "2026-07-10T10:10:05.050542", + "url": "/v1/games/cities-skylines-concerts" +} diff --git a/site/public/v1/games/cities-skylines-green-cities/index.json b/site/public/v1/games/cities-skylines-green-cities/index.json new file mode 100644 index 000000000000..97aadd6a0da5 --- /dev/null +++ b/site/public/v1/games/cities-skylines-green-cities/index.json @@ -0,0 +1,32 @@ +{ + "id": 27339, + "slug": "cities-skylines-green-cities", + "name": "Cities: Skylines – Green Cities", + "release_date": "2017-10-09", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Colossal Order" + ], + "publishers": [ + "Paradox Interactive" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107475092" + ], + "created_at": "2026-07-10T10:10:05.052561", + "updated_at": "2026-07-10T10:10:05.052561", + "url": "/v1/games/cities-skylines-green-cities" +} diff --git a/site/public/v1/games/cities-skylines-industries/index.json b/site/public/v1/games/cities-skylines-industries/index.json new file mode 100644 index 000000000000..ea70ce33a55d --- /dev/null +++ b/site/public/v1/games/cities-skylines-industries/index.json @@ -0,0 +1,32 @@ +{ + "id": 27340, + "slug": "cities-skylines-industries", + "name": "Cities: Skylines – Industries", + "release_date": "2018-10-23", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Colossal Order" + ], + "publishers": [ + "Paradox Interactive" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107475089" + ], + "created_at": "2026-07-10T10:10:05.052561", + "updated_at": "2026-07-10T10:10:05.052561", + "url": "/v1/games/cities-skylines-industries" +} diff --git a/site/public/v1/games/cities-skylines-mass-transit/index.json b/site/public/v1/games/cities-skylines-mass-transit/index.json new file mode 100644 index 000000000000..79a725068da3 --- /dev/null +++ b/site/public/v1/games/cities-skylines-mass-transit/index.json @@ -0,0 +1,32 @@ +{ + "id": 27341, + "slug": "cities-skylines-mass-transit", + "name": "Cities: Skylines – Mass Transit", + "release_date": "2017-05-17", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Colossal Order" + ], + "publishers": [ + "Paradox Interactive" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107475090" + ], + "created_at": "2026-07-10T10:10:05.053467", + "updated_at": "2026-07-10T10:10:05.053467", + "url": "/v1/games/cities-skylines-mass-transit" +} diff --git a/site/public/v1/games/cities-skylines-match-day/index.json b/site/public/v1/games/cities-skylines-match-day/index.json new file mode 100644 index 000000000000..570d622912b7 --- /dev/null +++ b/site/public/v1/games/cities-skylines-match-day/index.json @@ -0,0 +1,32 @@ +{ + "id": 27342, + "slug": "cities-skylines-match-day", + "name": "Cities: Skylines – Match Day", + "release_date": "2016-06-09", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Colossal Order" + ], + "publishers": [ + "Paradox Interactive" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107475094" + ], + "created_at": "2026-07-10T10:10:05.053467", + "updated_at": "2026-07-10T10:10:05.053467", + "url": "/v1/games/cities-skylines-match-day" +} diff --git a/site/public/v1/games/cities-skylines-natural-disasters/index.json b/site/public/v1/games/cities-skylines-natural-disasters/index.json new file mode 100644 index 000000000000..35e4ddc0c29e --- /dev/null +++ b/site/public/v1/games/cities-skylines-natural-disasters/index.json @@ -0,0 +1,32 @@ +{ + "id": 27343, + "slug": "cities-skylines-natural-disasters", + "name": "Cities: Skylines – Natural Disasters", + "release_date": "2016-11-29", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Colossal Order" + ], + "publishers": [ + "Paradox Interactive" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107475095" + ], + "created_at": "2026-07-10T10:10:05.053467", + "updated_at": "2026-07-10T10:10:05.053467", + "url": "/v1/games/cities-skylines-natural-disasters" +} diff --git a/site/public/v1/games/cities-skylines-parklife/index.json b/site/public/v1/games/cities-skylines-parklife/index.json new file mode 100644 index 000000000000..caa2a49a72be --- /dev/null +++ b/site/public/v1/games/cities-skylines-parklife/index.json @@ -0,0 +1,32 @@ +{ + "id": 27344, + "slug": "cities-skylines-parklife", + "name": "Cities: Skylines – Parklife", + "release_date": "2018-05-23", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Colossal Order" + ], + "publishers": [ + "Paradox Interactive" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107475091" + ], + "created_at": "2026-07-10T10:10:05.053467", + "updated_at": "2026-07-10T10:10:05.053467", + "url": "/v1/games/cities-skylines-parklife" +} diff --git a/site/public/v1/games/cities-skylines-plazas-promenades/index.json b/site/public/v1/games/cities-skylines-plazas-promenades/index.json new file mode 100644 index 000000000000..0658b6df3a6b --- /dev/null +++ b/site/public/v1/games/cities-skylines-plazas-promenades/index.json @@ -0,0 +1,28 @@ +{ + "id": 27345, + "slug": "cities-skylines-plazas-promenades", + "name": "Cities: Skylines – Plazas & Promenades", + "release_date": "2022-09-14", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113586046" + ], + "created_at": "2026-07-10T10:10:05.053467", + "updated_at": "2026-07-10T10:10:05.053467", + "url": "/v1/games/cities-skylines-plazas-promenades" +} diff --git a/site/public/v1/games/cities-skylines-snowfall/index.json b/site/public/v1/games/cities-skylines-snowfall/index.json new file mode 100644 index 000000000000..21ef99eeb598 --- /dev/null +++ b/site/public/v1/games/cities-skylines-snowfall/index.json @@ -0,0 +1,32 @@ +{ + "id": 27347, + "slug": "cities-skylines-snowfall", + "name": "Cities: Skylines – Snowfall", + "release_date": "2016-02-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Colossal Order" + ], + "publishers": [ + "Paradox Interactive" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107475088" + ], + "created_at": "2026-07-10T10:10:05.054465", + "updated_at": "2026-07-10T10:10:05.054465", + "url": "/v1/games/cities-skylines-snowfall" +} diff --git a/site/public/v1/games/cities-skylines-sunset-harbor/index.json b/site/public/v1/games/cities-skylines-sunset-harbor/index.json new file mode 100644 index 000000000000..942e63c5df25 --- /dev/null +++ b/site/public/v1/games/cities-skylines-sunset-harbor/index.json @@ -0,0 +1,32 @@ +{ + "id": 27348, + "slug": "cities-skylines-sunset-harbor", + "name": "Cities: Skylines – Sunset Harbor", + "release_date": "2020-03-26", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Colossal Order" + ], + "publishers": [ + "Paradox Interactive" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107475097" + ], + "created_at": "2026-07-10T10:10:05.054465", + "updated_at": "2026-07-10T10:10:05.054465", + "url": "/v1/games/cities-skylines-sunset-harbor" +} diff --git a/site/public/v1/games/city-bus-simulator-2010-region-usedom/index.json b/site/public/v1/games/city-bus-simulator-2010-region-usedom/index.json new file mode 100644 index 000000000000..97c355213514 --- /dev/null +++ b/site/public/v1/games/city-bus-simulator-2010-region-usedom/index.json @@ -0,0 +1,29 @@ +{ + "id": 27396, + "slug": "city-bus-simulator-2010-region-usedom", + "name": "City Bus Simulator 2010 Region Usedom", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2849140" + ], + "created_at": "2026-07-10T10:10:05.067633", + "updated_at": "2026-07-10T10:10:05.067633", + "url": "/v1/games/city-bus-simulator-2010-region-usedom" +} diff --git a/site/public/v1/games/city-of-light/index.json b/site/public/v1/games/city-of-light/index.json new file mode 100644 index 000000000000..3c6a7b841c82 --- /dev/null +++ b/site/public/v1/games/city-of-light/index.json @@ -0,0 +1,41 @@ +{ + "id": 27467, + "slug": "city-of-light", + "name": "City of Light", + "release_date": "2016-12-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 4", + "iOS", + "macOS", + "PlayStation 3", + "Microsoft Windows" + ], + "genres": [ + "graphic adventure game", + "episodic video game" + ], + "stores": [], + "developers": [ + "Telltale Games", + "lowland" + ], + "publishers": [ + "lowland", + "Telltale Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107136969" + ], + "created_at": "2026-07-10T10:10:05.086418", + "updated_at": "2026-07-10T10:10:05.086418", + "url": "/v1/games/city-of-light" +} diff --git a/site/public/v1/games/civilization-beyond-earth-rising-tide/index.json b/site/public/v1/games/civilization-beyond-earth-rising-tide/index.json new file mode 100644 index 000000000000..713a4bde3fef --- /dev/null +++ b/site/public/v1/games/civilization-beyond-earth-rising-tide/index.json @@ -0,0 +1,32 @@ +{ + "id": 27555, + "slug": "civilization-beyond-earth-rising-tide", + "name": "Civilization: Beyond Earth - Rising Tide", + "release_date": "2015-10-08", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "science fiction video game" + ], + "stores": [], + "developers": [ + "Firaxis Games" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25831301" + ], + "created_at": "2026-07-10T10:10:05.109574", + "updated_at": "2026-07-10T10:10:05.109574", + "url": "/v1/games/civilization-beyond-earth-rising-tide" +} diff --git a/site/public/v1/games/civilization-ii-conflicts-in-civilization/index.json b/site/public/v1/games/civilization-ii-conflicts-in-civilization/index.json new file mode 100644 index 000000000000..f3cef445c7d9 --- /dev/null +++ b/site/public/v1/games/civilization-ii-conflicts-in-civilization/index.json @@ -0,0 +1,32 @@ +{ + "id": 27560, + "slug": "civilization-ii-conflicts-in-civilization", + "name": "Civilization II: Conflicts in Civilization", + "release_date": "1996-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Classic Mac OS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "MicroProse" + ], + "publishers": [ + "MicroProse" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28126699" + ], + "created_at": "2026-07-10T10:10:05.110570", + "updated_at": "2026-07-10T10:10:05.110570", + "url": "/v1/games/civilization-ii-conflicts-in-civilization" +} diff --git a/site/public/v1/games/civilization-ii-fantastic-worlds/index.json b/site/public/v1/games/civilization-ii-fantastic-worlds/index.json new file mode 100644 index 000000000000..b24e2b83f3a7 --- /dev/null +++ b/site/public/v1/games/civilization-ii-fantastic-worlds/index.json @@ -0,0 +1,25 @@ +{ + "id": 27561, + "slug": "civilization-ii-fantastic-worlds", + "name": "Civilization II: Fantastic Worlds", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121438707" + ], + "created_at": "2026-07-10T10:10:05.110570", + "updated_at": "2026-07-10T10:10:05.110570", + "url": "/v1/games/civilization-ii-fantastic-worlds" +} diff --git a/site/public/v1/games/civilization-ii-multiplayer-gold-edition/index.json b/site/public/v1/games/civilization-ii-multiplayer-gold-edition/index.json new file mode 100644 index 000000000000..ed00135ba2b3 --- /dev/null +++ b/site/public/v1/games/civilization-ii-multiplayer-gold-edition/index.json @@ -0,0 +1,28 @@ +{ + "id": 27562, + "slug": "civilization-ii-multiplayer-gold-edition", + "name": "Civilization II: Multiplayer Gold Edition", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Classic Mac OS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121438694" + ], + "created_at": "2026-07-10T10:10:05.111549", + "updated_at": "2026-07-10T10:10:05.111549", + "url": "/v1/games/civilization-ii-multiplayer-gold-edition" +} diff --git a/site/public/v1/games/civilization-iii-conquests/index.json b/site/public/v1/games/civilization-iii-conquests/index.json new file mode 100644 index 000000000000..a89b4efbbe8b --- /dev/null +++ b/site/public/v1/games/civilization-iii-conquests/index.json @@ -0,0 +1,34 @@ +{ + "id": 27564, + "slug": "civilization-iii-conquests", + "name": "Civilization III: Conquests", + "release_date": "2003-11-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "turn-based strategy video game" + ], + "stores": [], + "developers": [ + "BreakAway Games", + "Firaxis Games" + ], + "publishers": [ + "Atari" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q548085" + ], + "created_at": "2026-07-10T10:10:05.111549", + "updated_at": "2026-07-10T10:10:05.111549", + "url": "/v1/games/civilization-iii-conquests" +} diff --git a/site/public/v1/games/civilization-iii-play-the-world/index.json b/site/public/v1/games/civilization-iii-play-the-world/index.json new file mode 100644 index 000000000000..5f1a9af753e8 --- /dev/null +++ b/site/public/v1/games/civilization-iii-play-the-world/index.json @@ -0,0 +1,32 @@ +{ + "id": 27565, + "slug": "civilization-iii-play-the-world", + "name": "Civilization III: Play the World", + "release_date": "2002-10-31", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "4X", + "turn-based strategy video game" + ], + "stores": [], + "developers": [ + "Firaxis Games" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2633010" + ], + "created_at": "2026-07-10T10:10:05.111549", + "updated_at": "2026-07-10T10:10:05.111549", + "url": "/v1/games/civilization-iii-play-the-world" +} diff --git a/site/public/v1/games/civilization-iv-beyond-the-sword/index.json b/site/public/v1/games/civilization-iv-beyond-the-sword/index.json new file mode 100644 index 000000000000..e0bcaf5ef7db --- /dev/null +++ b/site/public/v1/games/civilization-iv-beyond-the-sword/index.json @@ -0,0 +1,35 @@ +{ + "id": 27566, + "slug": "civilization-iv-beyond-the-sword", + "name": "Civilization IV: Beyond the Sword", + "release_date": "2007-07-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "4X", + "turn-based strategy video game" + ], + "stores": [], + "developers": [ + "Firaxis Games" + ], + "publishers": [ + "Take-Two Interactive" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1143029" + ], + "created_at": "2026-07-10T10:10:05.111549", + "updated_at": "2026-07-10T10:10:05.111549", + "url": "/v1/games/civilization-iv-beyond-the-sword" +} diff --git a/site/public/v1/games/civilization-iv-warlords/index.json b/site/public/v1/games/civilization-iv-warlords/index.json new file mode 100644 index 000000000000..8a1d3cd77a2e --- /dev/null +++ b/site/public/v1/games/civilization-iv-warlords/index.json @@ -0,0 +1,35 @@ +{ + "id": 27568, + "slug": "civilization-iv-warlords", + "name": "Civilization IV: Warlords", + "release_date": "2006-07-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "4X", + "turn-based strategy video game" + ], + "stores": [], + "developers": [ + "Firaxis Games" + ], + "publishers": [ + "Take-Two Interactive" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q956306" + ], + "created_at": "2026-07-10T10:10:05.112595", + "updated_at": "2026-07-10T10:10:05.112595", + "url": "/v1/games/civilization-iv-warlords" +} diff --git a/site/public/v1/games/civilization-q126185171/index.json b/site/public/v1/games/civilization-q126185171/index.json new file mode 100644 index 000000000000..e2b0a8c7661d --- /dev/null +++ b/site/public/v1/games/civilization-q126185171/index.json @@ -0,0 +1,25 @@ +{ + "id": 27570, + "slug": "civilization-q126185171", + "name": "Civilization", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126185171" + ], + "created_at": "2026-07-10T10:10:05.112595", + "updated_at": "2026-07-10T10:10:05.112595", + "url": "/v1/games/civilization-q126185171" +} diff --git a/site/public/v1/games/civilization-v-brave-new-world/index.json b/site/public/v1/games/civilization-v-brave-new-world/index.json new file mode 100644 index 000000000000..af52a7cb3aa8 --- /dev/null +++ b/site/public/v1/games/civilization-v-brave-new-world/index.json @@ -0,0 +1,39 @@ +{ + "id": 27574, + "slug": "civilization-v-brave-new-world", + "name": "Civilization V: Brave New World", + "release_date": "2013-07-09", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "4X", + "wargame", + "turn-based strategy video game", + "computer wargame", + "grand strategy wargame" + ], + "stores": [], + "developers": [ + "Firaxis Games", + "Aspyr" + ], + "publishers": [ + "2K" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7383408" + ], + "created_at": "2026-07-10T10:10:05.114114", + "updated_at": "2026-07-10T10:10:05.114114", + "url": "/v1/games/civilization-v-brave-new-world" +} diff --git a/site/public/v1/games/civilization-v-gods-kings/index.json b/site/public/v1/games/civilization-v-gods-kings/index.json new file mode 100644 index 000000000000..6b4cec6ae891 --- /dev/null +++ b/site/public/v1/games/civilization-v-gods-kings/index.json @@ -0,0 +1,38 @@ +{ + "id": 27575, + "slug": "civilization-v-gods-kings", + "name": "Civilization V: Gods & Kings", + "release_date": "2012-06-19", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "4X", + "wargame", + "turn-based strategy video game", + "computer wargame", + "grand strategy wargame" + ], + "stores": [], + "developers": [ + "Firaxis Games" + ], + "publishers": [ + "2K" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2418673" + ], + "created_at": "2026-07-10T10:10:05.114114", + "updated_at": "2026-07-10T10:10:05.114114", + "url": "/v1/games/civilization-v-gods-kings" +} diff --git a/site/public/v1/games/civilization-vi-gathering-storm/index.json b/site/public/v1/games/civilization-vi-gathering-storm/index.json new file mode 100644 index 000000000000..c6a0bfaca4dc --- /dev/null +++ b/site/public/v1/games/civilization-vi-gathering-storm/index.json @@ -0,0 +1,32 @@ +{ + "id": 27577, + "slug": "civilization-vi-gathering-storm", + "name": "Civilization VI: Gathering Storm", + "release_date": "2019-02-14", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Firaxis Games" + ], + "publishers": [ + "2K" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q59141736" + ], + "created_at": "2026-07-10T10:10:05.114114", + "updated_at": "2026-07-10T10:10:05.114114", + "url": "/v1/games/civilization-vi-gathering-storm" +} diff --git a/site/public/v1/games/civilizationedu/index.json b/site/public/v1/games/civilizationedu/index.json new file mode 100644 index 000000000000..f055031f5f39 --- /dev/null +++ b/site/public/v1/games/civilizationedu/index.json @@ -0,0 +1,31 @@ +{ + "id": 27584, + "slug": "civilizationedu", + "name": "CivilizationEDU", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "educational video game" + ], + "stores": [], + "developers": [ + "Firaxis Games" + ], + "publishers": [ + "2K" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28004627" + ], + "created_at": "2026-07-10T10:10:05.116260", + "updated_at": "2026-07-10T10:10:05.116260", + "url": "/v1/games/civilizationedu" +} diff --git a/site/public/v1/games/clash-heroes/index.json b/site/public/v1/games/clash-heroes/index.json new file mode 100644 index 000000000000..8a0a6310b2d3 --- /dev/null +++ b/site/public/v1/games/clash-heroes/index.json @@ -0,0 +1,29 @@ +{ + "id": 27662, + "slug": "clash-heroes", + "name": "Clash Heroes", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [ + "Supercell" + ], + "publishers": [ + "Supercell" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106330158" + ], + "created_at": "2026-07-10T10:10:05.136119", + "updated_at": "2026-07-10T10:10:05.136119", + "url": "/v1/games/clash-heroes" +} diff --git a/site/public/v1/games/clash-mini/index.json b/site/public/v1/games/clash-mini/index.json new file mode 100644 index 000000000000..ca0991149fb2 --- /dev/null +++ b/site/public/v1/games/clash-mini/index.json @@ -0,0 +1,33 @@ +{ + "id": 27665, + "slug": "clash-mini", + "name": "Clash Mini", + "release_date": "2021-11-08", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "iOS" + ], + "genres": [ + "strategy video game" + ], + "stores": [], + "developers": [ + "Supercell" + ], + "publishers": [ + "Supercell" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106330125" + ], + "created_at": "2026-07-10T10:10:05.136119", + "updated_at": "2026-07-10T10:10:05.136119", + "url": "/v1/games/clash-mini" +} diff --git a/site/public/v1/games/clash-quest/index.json b/site/public/v1/games/clash-quest/index.json new file mode 100644 index 000000000000..28702eec814b --- /dev/null +++ b/site/public/v1/games/clash-quest/index.json @@ -0,0 +1,33 @@ +{ + "id": 27696, + "slug": "clash-quest", + "name": "Clash Quest", + "release_date": "2021-04-06", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "iOS" + ], + "genres": [ + "strategy video game" + ], + "stores": [], + "developers": [ + "Supercell" + ], + "publishers": [ + "Supercell" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106330009" + ], + "created_at": "2026-07-10T10:10:05.145118", + "updated_at": "2026-07-10T10:10:05.145118", + "url": "/v1/games/clash-quest" +} diff --git a/site/public/v1/games/class-of-09-the-double-up/index.json b/site/public/v1/games/class-of-09-the-double-up/index.json new file mode 100644 index 000000000000..8bb70c6cd2fc --- /dev/null +++ b/site/public/v1/games/class-of-09-the-double-up/index.json @@ -0,0 +1,36 @@ +{ + "id": 27705, + "slug": "class-of-09-the-double-up", + "name": "Class of '09: The Double Up", + "release_date": "2023-06-26", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "visual novel", + "casual game", + "simulation video game" + ], + "stores": [], + "developers": [ + "SBN3" + ], + "publishers": [ + "SBN3" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123356551" + ], + "created_at": "2026-07-10T10:10:05.147186", + "updated_at": "2026-07-10T10:10:05.147186", + "url": "/v1/games/class-of-09-the-double-up" +} diff --git a/site/public/v1/games/classic-text-adventure-masterpieces-of-infocom/index.json b/site/public/v1/games/classic-text-adventure-masterpieces-of-infocom/index.json new file mode 100644 index 000000000000..e5558b7977f5 --- /dev/null +++ b/site/public/v1/games/classic-text-adventure-masterpieces-of-infocom/index.json @@ -0,0 +1,28 @@ +{ + "id": 27758, + "slug": "classic-text-adventure-masterpieces-of-infocom", + "name": "Classic Text Adventure Masterpieces of Infocom", + "release_date": "1996-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Classic Mac OS", + "DOS" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5128226" + ], + "created_at": "2026-07-10T10:10:05.162182", + "updated_at": "2026-07-10T10:10:05.162182", + "url": "/v1/games/classic-text-adventure-masterpieces-of-infocom" +} diff --git a/site/public/v1/games/cleopatra-queen-of-the-nile/index.json b/site/public/v1/games/cleopatra-queen-of-the-nile/index.json new file mode 100644 index 000000000000..8e1dd873acff --- /dev/null +++ b/site/public/v1/games/cleopatra-queen-of-the-nile/index.json @@ -0,0 +1,25 @@ +{ + "id": 27895, + "slug": "cleopatra-queen-of-the-nile", + "name": "Cleopatra: Queen of the Nile", + "release_date": "2000-08-17", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2980768" + ], + "created_at": "2026-07-10T10:10:05.198210", + "updated_at": "2026-07-10T10:10:05.198210", + "url": "/v1/games/cleopatra-queen-of-the-nile" +} diff --git a/site/public/v1/games/click-speed-test/index.json b/site/public/v1/games/click-speed-test/index.json new file mode 100644 index 000000000000..f474cb41412a --- /dev/null +++ b/site/public/v1/games/click-speed-test/index.json @@ -0,0 +1,27 @@ +{ + "id": 27955, + "slug": "click-speed-test", + "name": "Click Speed Test", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "web browser" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q95982451" + ], + "created_at": "2026-07-10T10:10:05.214838", + "updated_at": "2026-07-10T10:10:05.214838", + "url": "/v1/games/click-speed-test" +} diff --git a/site/public/v1/games/cloak-the-naked-mind/index.json b/site/public/v1/games/cloak-the-naked-mind/index.json new file mode 100644 index 000000000000..8578640c6a4a --- /dev/null +++ b/site/public/v1/games/cloak-the-naked-mind/index.json @@ -0,0 +1,29 @@ +{ + "id": 28074, + "slug": "cloak-the-naked-mind", + "name": "Cloak: The Naked Mind", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "adventure video game" + ], + "stores": [], + "developers": [ + "Sierra On-Line" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105786276" + ], + "created_at": "2026-07-10T10:10:05.265852", + "updated_at": "2026-07-10T10:10:05.265852", + "url": "/v1/games/cloak-the-naked-mind" +} diff --git a/site/public/v1/games/cloud-climber-fan-pack/index.json b/site/public/v1/games/cloud-climber-fan-pack/index.json new file mode 100644 index 000000000000..44de2a89abed --- /dev/null +++ b/site/public/v1/games/cloud-climber-fan-pack/index.json @@ -0,0 +1,31 @@ +{ + "id": 28209, + "slug": "cloud-climber-fan-pack", + "name": "Cloud Climber - Fan Pack", + "release_date": "2021-02-16", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Two Star Games" + ], + "publishers": [ + "Two Star Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115651967" + ], + "created_at": "2026-07-10T10:10:05.300912", + "updated_at": "2026-07-10T10:10:05.300912", + "url": "/v1/games/cloud-climber-fan-pack" +} diff --git a/site/public/v1/games/cloudpunk-city-of-ghosts/index.json b/site/public/v1/games/cloudpunk-city-of-ghosts/index.json new file mode 100644 index 000000000000..672997928110 --- /dev/null +++ b/site/public/v1/games/cloudpunk-city-of-ghosts/index.json @@ -0,0 +1,27 @@ +{ + "id": 28246, + "slug": "cloudpunk-city-of-ghosts", + "name": "Cloudpunk - City of Ghosts", + "release_date": "2021-05-25", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116239191" + ], + "created_at": "2026-07-10T10:10:05.309852", + "updated_at": "2026-07-10T10:10:05.309852", + "url": "/v1/games/cloudpunk-city-of-ghosts" +} diff --git a/site/public/v1/games/clue-classic-edition/index.json b/site/public/v1/games/clue-classic-edition/index.json new file mode 100644 index 000000000000..e42c45ccb0f5 --- /dev/null +++ b/site/public/v1/games/clue-classic-edition/index.json @@ -0,0 +1,33 @@ +{ + "id": 28342, + "slug": "clue-classic-edition", + "name": "Clue: Classic Edition+", + "release_date": "2023-03-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "iOS" + ], + "genres": [ + "board video game" + ], + "stores": [], + "developers": [ + "Marmalade Game Studio" + ], + "publishers": [ + "Marmalade Game Studio" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124129377" + ], + "created_at": "2026-07-10T10:10:05.335247", + "updated_at": "2026-07-10T10:10:05.335247", + "url": "/v1/games/clue-classic-edition" +} diff --git a/site/public/v1/games/clue-vcr-mystery-game/index.json b/site/public/v1/games/clue-vcr-mystery-game/index.json new file mode 100644 index 000000000000..4d51df6ba608 --- /dev/null +++ b/site/public/v1/games/clue-vcr-mystery-game/index.json @@ -0,0 +1,25 @@ +{ + "id": 28351, + "slug": "clue-vcr-mystery-game", + "name": "Clue VCR Mystery Game", + "release_date": "1985-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q19579976" + ], + "created_at": "2026-07-10T10:10:05.337306", + "updated_at": "2026-07-10T10:10:05.337306", + "url": "/v1/games/clue-vcr-mystery-game" +} diff --git a/site/public/v1/games/cluedo-hasbro-s-mystery-game/index.json b/site/public/v1/games/cluedo-hasbro-s-mystery-game/index.json new file mode 100644 index 000000000000..d790df826d66 --- /dev/null +++ b/site/public/v1/games/cluedo-hasbro-s-mystery-game/index.json @@ -0,0 +1,28 @@ +{ + "id": 28354, + "slug": "cluedo-hasbro-s-mystery-game", + "name": "Cluedo: Hasbro's Mystery Game+", + "release_date": "2023-03-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "iPadOS", + "iOS" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117357542" + ], + "created_at": "2026-07-10T10:10:05.338332", + "updated_at": "2026-07-10T10:10:05.338332", + "url": "/v1/games/cluedo-hasbro-s-mystery-game" +} diff --git a/site/public/v1/games/cluster/index.json b/site/public/v1/games/cluster/index.json new file mode 100644 index 000000000000..c866a5bbe088 --- /dev/null +++ b/site/public/v1/games/cluster/index.json @@ -0,0 +1,31 @@ +{ + "id": 28380, + "slug": "cluster", + "name": "cluster", + "release_date": "2017-05-31", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "iOS", + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "CLUSTAR" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111177860" + ], + "created_at": "2026-07-10T10:10:05.346242", + "updated_at": "2026-07-10T10:10:05.346242", + "url": "/v1/games/cluster" +} diff --git a/site/public/v1/games/cocoto-magic-circus-2/index.json b/site/public/v1/games/cocoto-magic-circus-2/index.json new file mode 100644 index 000000000000..554ccfa52c44 --- /dev/null +++ b/site/public/v1/games/cocoto-magic-circus-2/index.json @@ -0,0 +1,27 @@ +{ + "id": 28507, + "slug": "cocoto-magic-circus-2", + "name": "Cocoto Magic Circus 2", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Wii U" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140471133" + ], + "created_at": "2026-07-10T10:10:05.378319", + "updated_at": "2026-07-10T10:10:05.378319", + "url": "/v1/games/cocoto-magic-circus-2" +} diff --git a/site/public/v1/games/code-18/index.json b/site/public/v1/games/code-18/index.json new file mode 100644 index 000000000000..426fb23f8979 --- /dev/null +++ b/site/public/v1/games/code-18/index.json @@ -0,0 +1,30 @@ +{ + "id": 28513, + "slug": "code-18", + "name": "Code_18", + "release_date": "2011-09-29", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "science fiction", + "visual novel" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5139996" + ], + "created_at": "2026-07-10T10:10:05.380240", + "updated_at": "2026-07-10T10:10:05.380240", + "url": "/v1/games/code-18" +} diff --git a/site/public/v1/games/coin-crypt-sea-and-sky/index.json b/site/public/v1/games/coin-crypt-sea-and-sky/index.json new file mode 100644 index 000000000000..62de22ac76cd --- /dev/null +++ b/site/public/v1/games/coin-crypt-sea-and-sky/index.json @@ -0,0 +1,32 @@ +{ + "id": 28748, + "slug": "coin-crypt-sea-and-sky", + "name": "Coin Crypt: Sea and Sky", + "release_date": "2015-09-29", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Dumb and Fat Games" + ], + "publishers": [ + "Dumb and Fat Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105727478" + ], + "created_at": "2026-07-10T10:10:05.456001", + "updated_at": "2026-07-10T10:10:05.456001", + "url": "/v1/games/coin-crypt-sea-and-sky" +} diff --git a/site/public/v1/games/coin-op-hits-ii/index.json b/site/public/v1/games/coin-op-hits-ii/index.json new file mode 100644 index 000000000000..7f75d6725e0b --- /dev/null +++ b/site/public/v1/games/coin-op-hits-ii/index.json @@ -0,0 +1,25 @@ +{ + "id": 28759, + "slug": "coin-op-hits-ii", + "name": "Coin-Op Hits II", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126185754" + ], + "created_at": "2026-07-10T10:10:05.459002", + "updated_at": "2026-07-10T10:10:05.459002", + "url": "/v1/games/coin-op-hits-ii" +} diff --git a/site/public/v1/games/coincentration/index.json b/site/public/v1/games/coincentration/index.json new file mode 100644 index 000000000000..e17db160cb9a --- /dev/null +++ b/site/public/v1/games/coincentration/index.json @@ -0,0 +1,25 @@ +{ + "id": 28779, + "slug": "coincentration", + "name": "Coincentration", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124842794" + ], + "created_at": "2026-07-10T10:10:05.464073", + "updated_at": "2026-07-10T10:10:05.464073", + "url": "/v1/games/coincentration" +} diff --git a/site/public/v1/games/collection-of-mana/index.json b/site/public/v1/games/collection-of-mana/index.json new file mode 100644 index 000000000000..d7fd919874f7 --- /dev/null +++ b/site/public/v1/games/collection-of-mana/index.json @@ -0,0 +1,25 @@ +{ + "id": 28900, + "slug": "collection-of-mana", + "name": "Collection of Mana", + "release_date": "2017-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q65279129" + ], + "created_at": "2026-07-10T10:10:05.495077", + "updated_at": "2026-07-10T10:10:05.495077", + "url": "/v1/games/collection-of-mana" +} diff --git a/site/public/v1/games/collection-of-saga-final-fantasy-legend/index.json b/site/public/v1/games/collection-of-saga-final-fantasy-legend/index.json new file mode 100644 index 000000000000..d200bd5681ce --- /dev/null +++ b/site/public/v1/games/collection-of-saga-final-fantasy-legend/index.json @@ -0,0 +1,33 @@ +{ + "id": 28901, + "slug": "collection-of-saga-final-fantasy-legend", + "name": "Collection of SaGa: Final Fantasy Legend", + "release_date": "2020-12-15", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "iPadOS", + "iOS", + "Microsoft Windows" + ], + "genres": [ + "Japanese role-playing video game" + ], + "stores": [], + "developers": [], + "publishers": [ + "Square Enix" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108305084" + ], + "created_at": "2026-07-10T10:10:05.495077", + "updated_at": "2026-07-10T10:10:05.495077", + "url": "/v1/games/collection-of-saga-final-fantasy-legend" +} diff --git a/site/public/v1/games/colossal-kaiju-combat/index.json b/site/public/v1/games/colossal-kaiju-combat/index.json new file mode 100644 index 000000000000..e867f9415b2a --- /dev/null +++ b/site/public/v1/games/colossal-kaiju-combat/index.json @@ -0,0 +1,29 @@ +{ + "id": 29191, + "slug": "colossal-kaiju-combat", + "name": "Colossal Kaiju Combat", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "personal computer" + ], + "genres": [ + "fighting game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q14581515" + ], + "created_at": "2026-07-10T10:10:05.576574", + "updated_at": "2026-07-10T10:10:05.576574", + "url": "/v1/games/colossal-kaiju-combat" +} diff --git a/site/public/v1/games/comanche-cd/index.json b/site/public/v1/games/comanche-cd/index.json new file mode 100644 index 000000000000..8f448a5ae938 --- /dev/null +++ b/site/public/v1/games/comanche-cd/index.json @@ -0,0 +1,25 @@ +{ + "id": 29238, + "slug": "comanche-cd", + "name": "Comanche CD", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123035566" + ], + "created_at": "2026-07-10T10:10:05.589581", + "updated_at": "2026-07-10T10:10:05.589581", + "url": "/v1/games/comanche-cd" +} diff --git a/site/public/v1/games/comanche-maximum-overkill-mission-disk-1/index.json b/site/public/v1/games/comanche-maximum-overkill-mission-disk-1/index.json new file mode 100644 index 000000000000..70346e2bffe2 --- /dev/null +++ b/site/public/v1/games/comanche-maximum-overkill-mission-disk-1/index.json @@ -0,0 +1,25 @@ +{ + "id": 29240, + "slug": "comanche-maximum-overkill-mission-disk-1", + "name": "Comanche: Maximum Overkill - Mission Disk 1", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123035561" + ], + "created_at": "2026-07-10T10:10:05.590616", + "updated_at": "2026-07-10T10:10:05.590616", + "url": "/v1/games/comanche-maximum-overkill-mission-disk-1" +} diff --git a/site/public/v1/games/comanche-over-the-edge/index.json b/site/public/v1/games/comanche-over-the-edge/index.json new file mode 100644 index 000000000000..d8e95daa1c40 --- /dev/null +++ b/site/public/v1/games/comanche-over-the-edge/index.json @@ -0,0 +1,25 @@ +{ + "id": 29242, + "slug": "comanche-over-the-edge", + "name": "Comanche: Over the Edge", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123035564" + ], + "created_at": "2026-07-10T10:10:05.590616", + "updated_at": "2026-07-10T10:10:05.590616", + "url": "/v1/games/comanche-over-the-edge" +} diff --git a/site/public/v1/games/command-conquer-3-kane-s-wrath/index.json b/site/public/v1/games/command-conquer-3-kane-s-wrath/index.json new file mode 100644 index 000000000000..ac3d52e33f7e --- /dev/null +++ b/site/public/v1/games/command-conquer-3-kane-s-wrath/index.json @@ -0,0 +1,33 @@ +{ + "id": 29435, + "slug": "command-conquer-3-kane-s-wrath", + "name": "Command & Conquer 3: Kane's Wrath", + "release_date": "2008-03-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "real-time strategy" + ], + "stores": [], + "developers": [ + "Danger Close Games" + ], + "publishers": [ + "Electronic Arts" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q899188" + ], + "created_at": "2026-07-10T10:10:05.646741", + "updated_at": "2026-07-10T10:10:05.646741", + "url": "/v1/games/command-conquer-3-kane-s-wrath" +} diff --git a/site/public/v1/games/command-conquer-q2985699/index.json b/site/public/v1/games/command-conquer-q2985699/index.json new file mode 100644 index 000000000000..8af273d3280b --- /dev/null +++ b/site/public/v1/games/command-conquer-q2985699/index.json @@ -0,0 +1,33 @@ +{ + "id": 29439, + "slug": "command-conquer-q2985699", + "name": "Command & Conquer", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "real-time strategy" + ], + "stores": [], + "developers": [ + "Victory Games" + ], + "publishers": [ + "Electronic Arts" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2985699" + ], + "created_at": "2026-07-10T10:10:05.647804", + "updated_at": "2026-07-10T10:10:05.647804", + "url": "/v1/games/command-conquer-q2985699" +} diff --git a/site/public/v1/games/command-conquer-red-alert-3-uprising/index.json b/site/public/v1/games/command-conquer-red-alert-3-uprising/index.json new file mode 100644 index 000000000000..f3450b6aa141 --- /dev/null +++ b/site/public/v1/games/command-conquer-red-alert-3-uprising/index.json @@ -0,0 +1,33 @@ +{ + "id": 29442, + "slug": "command-conquer-red-alert-3-uprising", + "name": "Command & Conquer: Red Alert 3 – Uprising", + "release_date": "2009-03-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "real-time strategy" + ], + "stores": [], + "developers": [ + "Danger Close Games" + ], + "publishers": [ + "Electronic Arts" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1091551" + ], + "created_at": "2026-07-10T10:10:05.648743", + "updated_at": "2026-07-10T10:10:05.648743", + "url": "/v1/games/command-conquer-red-alert-3-uprising" +} diff --git a/site/public/v1/games/command-conquer-remastered-collection/index.json b/site/public/v1/games/command-conquer-remastered-collection/index.json new file mode 100644 index 000000000000..a58e68e775fa --- /dev/null +++ b/site/public/v1/games/command-conquer-remastered-collection/index.json @@ -0,0 +1,33 @@ +{ + "id": 29450, + "slug": "command-conquer-remastered-collection", + "name": "Command & Conquer Remastered Collection", + "release_date": "2020-06-05", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "real-time strategy" + ], + "stores": [], + "developers": [ + "Petroglyph Games" + ], + "publishers": [ + "Electronic Arts" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q94579909" + ], + "created_at": "2026-07-10T10:10:05.650812", + "updated_at": "2026-07-10T10:10:05.650812", + "url": "/v1/games/command-conquer-remastered-collection" +} diff --git a/site/public/v1/games/command-conquer-special-gold-edition/index.json b/site/public/v1/games/command-conquer-special-gold-edition/index.json new file mode 100644 index 000000000000..86b9d15543d3 --- /dev/null +++ b/site/public/v1/games/command-conquer-special-gold-edition/index.json @@ -0,0 +1,25 @@ +{ + "id": 29455, + "slug": "command-conquer-special-gold-edition", + "name": "Command & Conquer: Special Gold Edition", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120836097" + ], + "created_at": "2026-07-10T10:10:05.651807", + "updated_at": "2026-07-10T10:10:05.651807", + "url": "/v1/games/command-conquer-special-gold-edition" +} diff --git a/site/public/v1/games/command-conquer-the-covert-operations/index.json b/site/public/v1/games/command-conquer-the-covert-operations/index.json new file mode 100644 index 000000000000..ed6e1b00f69e --- /dev/null +++ b/site/public/v1/games/command-conquer-the-covert-operations/index.json @@ -0,0 +1,27 @@ +{ + "id": 29456, + "slug": "command-conquer-the-covert-operations", + "name": "Command & Conquer: The Covert Operations", + "release_date": "1996-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3684568" + ], + "created_at": "2026-07-10T10:10:05.652832", + "updated_at": "2026-07-10T10:10:05.652832", + "url": "/v1/games/command-conquer-the-covert-operations" +} diff --git a/site/public/v1/games/command-conquer-the-first-decade/index.json b/site/public/v1/games/command-conquer-the-first-decade/index.json new file mode 100644 index 000000000000..b2f7d3e7a5e8 --- /dev/null +++ b/site/public/v1/games/command-conquer-the-first-decade/index.json @@ -0,0 +1,34 @@ +{ + "id": 29457, + "slug": "command-conquer-the-first-decade", + "name": "Command & Conquer: The First Decade", + "release_date": "2006-02-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "real-time strategy" + ], + "stores": [], + "developers": [ + "Danger Close Games" + ], + "publishers": [ + "Electronic Arts" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2618195" + ], + "created_at": "2026-07-10T10:10:05.652832", + "updated_at": "2026-07-10T10:10:05.652832", + "url": "/v1/games/command-conquer-the-first-decade" +} diff --git a/site/public/v1/games/command-conquer-tiberian-sun-firestorm/index.json b/site/public/v1/games/command-conquer-tiberian-sun-firestorm/index.json new file mode 100644 index 000000000000..6bc1e09e7ec8 --- /dev/null +++ b/site/public/v1/games/command-conquer-tiberian-sun-firestorm/index.json @@ -0,0 +1,28 @@ +{ + "id": 29458, + "slug": "command-conquer-tiberian-sun-firestorm", + "name": "Command & Conquer: Tiberian Sun + Firestorm", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "action game", + "strategy video game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137602757" + ], + "created_at": "2026-07-10T10:10:05.652832", + "updated_at": "2026-07-10T10:10:05.652832", + "url": "/v1/games/command-conquer-tiberian-sun-firestorm" +} diff --git a/site/public/v1/games/command-conquer-ultimate-collection/index.json b/site/public/v1/games/command-conquer-ultimate-collection/index.json new file mode 100644 index 000000000000..eea86c5bddbd --- /dev/null +++ b/site/public/v1/games/command-conquer-ultimate-collection/index.json @@ -0,0 +1,27 @@ +{ + "id": 29461, + "slug": "command-conquer-ultimate-collection", + "name": "Command & Conquer: Ultimate Collection", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121141082" + ], + "created_at": "2026-07-10T10:10:05.653824", + "updated_at": "2026-07-10T10:10:05.653824", + "url": "/v1/games/command-conquer-ultimate-collection" +} diff --git a/site/public/v1/games/command-conquer-yuri-s-revenge/index.json b/site/public/v1/games/command-conquer-yuri-s-revenge/index.json new file mode 100644 index 000000000000..7a856b107153 --- /dev/null +++ b/site/public/v1/games/command-conquer-yuri-s-revenge/index.json @@ -0,0 +1,33 @@ +{ + "id": 29462, + "slug": "command-conquer-yuri-s-revenge", + "name": "Command & Conquer: Yuri's Revenge", + "release_date": "2001-10-10", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "real-time strategy" + ], + "stores": [], + "developers": [ + "Westwood Studios" + ], + "publishers": [ + "Electronic Arts" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2014743" + ], + "created_at": "2026-07-10T10:10:05.653824", + "updated_at": "2026-07-10T10:10:05.653824", + "url": "/v1/games/command-conquer-yuri-s-revenge" +} diff --git a/site/public/v1/games/commander-keen-q114564469/index.json b/site/public/v1/games/commander-keen-q114564469/index.json new file mode 100644 index 000000000000..3f311155acfd --- /dev/null +++ b/site/public/v1/games/commander-keen-q114564469/index.json @@ -0,0 +1,31 @@ +{ + "id": 29501, + "slug": "commander-keen-q114564469", + "name": "Commander Keen", + "release_date": "1990-12-14", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "id Software" + ], + "publishers": [ + "id Software" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q114564469" + ], + "created_at": "2026-07-10T10:10:05.664022", + "updated_at": "2026-07-10T10:10:05.664022", + "url": "/v1/games/commander-keen-q114564469" +} diff --git a/site/public/v1/games/commandos-ammo-pack/index.json b/site/public/v1/games/commandos-ammo-pack/index.json new file mode 100644 index 000000000000..9a088ca2b72f --- /dev/null +++ b/site/public/v1/games/commandos-ammo-pack/index.json @@ -0,0 +1,25 @@ +{ + "id": 29533, + "slug": "commandos-ammo-pack", + "name": "Commandos: Ammo Pack", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q132531141" + ], + "created_at": "2026-07-10T10:10:05.673023", + "updated_at": "2026-07-10T10:10:05.673023", + "url": "/v1/games/commandos-ammo-pack" +} diff --git a/site/public/v1/games/common-ground/index.json b/site/public/v1/games/common-ground/index.json new file mode 100644 index 000000000000..924036a0152f --- /dev/null +++ b/site/public/v1/games/common-ground/index.json @@ -0,0 +1,25 @@ +{ + "id": 29546, + "slug": "common-ground", + "name": "Common Ground", + "release_date": "2010-03-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q57974035" + ], + "created_at": "2026-07-10T10:10:05.676024", + "updated_at": "2026-07-10T10:10:05.676024", + "url": "/v1/games/common-ground" +} diff --git a/site/public/v1/games/comp-sys-sinclair-crap-games-competition/index.json b/site/public/v1/games/comp-sys-sinclair-crap-games-competition/index.json new file mode 100644 index 000000000000..908963193485 --- /dev/null +++ b/site/public/v1/games/comp-sys-sinclair-crap-games-competition/index.json @@ -0,0 +1,25 @@ +{ + "id": 29563, + "slug": "comp-sys-sinclair-crap-games-competition", + "name": "Comp.sys.sinclair Crap Games Competition", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5155253" + ], + "created_at": "2026-07-10T10:10:05.681023", + "updated_at": "2026-07-10T10:10:05.681023", + "url": "/v1/games/comp-sys-sinclair-crap-games-competition" +} diff --git a/site/public/v1/games/company-of-heroes-2-complete-collection/index.json b/site/public/v1/games/company-of-heroes-2-complete-collection/index.json new file mode 100644 index 000000000000..b230a774baf5 --- /dev/null +++ b/site/public/v1/games/company-of-heroes-2-complete-collection/index.json @@ -0,0 +1,25 @@ +{ + "id": 29570, + "slug": "company-of-heroes-2-complete-collection", + "name": "Company of Heroes 2: Complete Collection", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123335554" + ], + "created_at": "2026-07-10T10:10:05.683023", + "updated_at": "2026-07-10T10:10:05.683023", + "url": "/v1/games/company-of-heroes-2-complete-collection" +} diff --git a/site/public/v1/games/company-of-heroes-3-fire-steel/index.json b/site/public/v1/games/company-of-heroes-3-fire-steel/index.json new file mode 100644 index 000000000000..c25c812c6255 --- /dev/null +++ b/site/public/v1/games/company-of-heroes-3-fire-steel/index.json @@ -0,0 +1,25 @@ +{ + "id": 29574, + "slug": "company-of-heroes-3-fire-steel", + "name": "Company of Heroes 3: Fire & Steel", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140471197" + ], + "created_at": "2026-07-10T10:10:05.684022", + "updated_at": "2026-07-10T10:10:05.684022", + "url": "/v1/games/company-of-heroes-3-fire-steel" +} diff --git a/site/public/v1/games/company-of-heroes-opposing-fronts/index.json b/site/public/v1/games/company-of-heroes-opposing-fronts/index.json new file mode 100644 index 000000000000..9fafd9fcf0eb --- /dev/null +++ b/site/public/v1/games/company-of-heroes-opposing-fronts/index.json @@ -0,0 +1,32 @@ +{ + "id": 29578, + "slug": "company-of-heroes-opposing-fronts", + "name": "Company of Heroes: Opposing Fronts", + "release_date": "2007-09-25", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "real-time strategy" + ], + "stores": [], + "developers": [], + "publishers": [ + "THQ" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q923500" + ], + "created_at": "2026-07-10T10:10:05.685023", + "updated_at": "2026-07-10T10:10:05.685023", + "url": "/v1/games/company-of-heroes-opposing-fronts" +} diff --git a/site/public/v1/games/compass-point-west/index.json b/site/public/v1/games/compass-point-west/index.json new file mode 100644 index 000000000000..d98138bda282 --- /dev/null +++ b/site/public/v1/games/compass-point-west/index.json @@ -0,0 +1,25 @@ +{ + "id": 29585, + "slug": "compass-point-west", + "name": "Compass Point: West", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140472094" + ], + "created_at": "2026-07-10T10:10:05.687022", + "updated_at": "2026-07-10T10:10:05.687022", + "url": "/v1/games/compass-point-west" +} diff --git a/site/public/v1/games/computer-quarterback-q60339155/index.json b/site/public/v1/games/computer-quarterback-q60339155/index.json new file mode 100644 index 000000000000..614ff286bbcd --- /dev/null +++ b/site/public/v1/games/computer-quarterback-q60339155/index.json @@ -0,0 +1,29 @@ +{ + "id": 29642, + "slug": "computer-quarterback-q60339155", + "name": "Computer Quarterback", + "release_date": "1981-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Apple II" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Strategic Simulations" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60339155" + ], + "created_at": "2026-07-10T10:10:05.704028", + "updated_at": "2026-07-10T10:10:05.704028", + "url": "/v1/games/computer-quarterback-q60339155" +} diff --git a/site/public/v1/games/conflict-of-heroes-ghost-divisions/index.json b/site/public/v1/games/conflict-of-heroes-ghost-divisions/index.json new file mode 100644 index 000000000000..d7daf5fbd67c --- /dev/null +++ b/site/public/v1/games/conflict-of-heroes-ghost-divisions/index.json @@ -0,0 +1,31 @@ +{ + "id": 29773, + "slug": "conflict-of-heroes-ghost-divisions", + "name": "Conflict of Heroes: Ghost Divisions", + "release_date": "2013-06-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Western Civilization Software" + ], + "publishers": [ + "Slitherine Software UK Limited" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113866974" + ], + "created_at": "2026-07-10T10:10:05.739542", + "updated_at": "2026-07-10T10:10:05.739542", + "url": "/v1/games/conflict-of-heroes-ghost-divisions" +} diff --git a/site/public/v1/games/conflict-of-heroes-storms-of-steel/index.json b/site/public/v1/games/conflict-of-heroes-storms-of-steel/index.json new file mode 100644 index 000000000000..b109d000a68f --- /dev/null +++ b/site/public/v1/games/conflict-of-heroes-storms-of-steel/index.json @@ -0,0 +1,31 @@ +{ + "id": 29774, + "slug": "conflict-of-heroes-storms-of-steel", + "name": "Conflict of Heroes: Storms of Steel", + "release_date": "2013-11-19", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Western Civilization Software" + ], + "publishers": [ + "Slitherine Software UK Limited" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113866972" + ], + "created_at": "2026-07-10T10:10:05.739542", + "updated_at": "2026-07-10T10:10:05.739542", + "url": "/v1/games/conflict-of-heroes-storms-of-steel" +} diff --git a/site/public/v1/games/conker-gettin-medieval/index.json b/site/public/v1/games/conker-gettin-medieval/index.json new file mode 100644 index 000000000000..32e6e25006d0 --- /dev/null +++ b/site/public/v1/games/conker-gettin-medieval/index.json @@ -0,0 +1,29 @@ +{ + "id": 29820, + "slug": "conker-gettin-medieval", + "name": "Conker: Gettin' Medieval", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [ + "Rare Ltd." + ], + "publishers": [ + "Xbox Game Studios" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72096472" + ], + "created_at": "2026-07-10T10:10:05.752607", + "updated_at": "2026-07-10T10:10:05.752607", + "url": "/v1/games/conker-gettin-medieval" +} diff --git a/site/public/v1/games/conker-s-other-bad-fur-day/index.json b/site/public/v1/games/conker-s-other-bad-fur-day/index.json new file mode 100644 index 000000000000..7e52fd7b56ab --- /dev/null +++ b/site/public/v1/games/conker-s-other-bad-fur-day/index.json @@ -0,0 +1,31 @@ +{ + "id": 29824, + "slug": "conker-s-other-bad-fur-day", + "name": "Conker's Other Bad Fur Day", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Nintendo GameCube" + ], + "genres": [], + "stores": [], + "developers": [ + "Rare Ltd." + ], + "publishers": [ + "Nintendo" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q64170585" + ], + "created_at": "2026-07-10T10:10:05.753603", + "updated_at": "2026-07-10T10:10:05.753603", + "url": "/v1/games/conker-s-other-bad-fur-day" +} diff --git a/site/public/v1/games/construction-simulator-2-q112231322/index.json b/site/public/v1/games/construction-simulator-2-q112231322/index.json new file mode 100644 index 000000000000..10b373b9fca3 --- /dev/null +++ b/site/public/v1/games/construction-simulator-2-q112231322/index.json @@ -0,0 +1,32 @@ +{ + "id": 29978, + "slug": "construction-simulator-2-q112231322", + "name": "Construction Simulator 2+", + "release_date": "2022-04-15", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "iPadOS", + "iOS" + ], + "genres": [], + "stores": [], + "developers": [ + "Astragon" + ], + "publishers": [ + "Astragon" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112231322" + ], + "created_at": "2026-07-10T10:10:05.801182", + "updated_at": "2026-07-10T10:10:05.801182", + "url": "/v1/games/construction-simulator-2-q112231322" +} diff --git a/site/public/v1/games/contagion-4-pack/index.json b/site/public/v1/games/contagion-4-pack/index.json new file mode 100644 index 000000000000..23d9960b2585 --- /dev/null +++ b/site/public/v1/games/contagion-4-pack/index.json @@ -0,0 +1,27 @@ +{ + "id": 30002, + "slug": "contagion-4-pack", + "name": "Contagion 4 Pack", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q78670106" + ], + "created_at": "2026-07-10T10:10:05.807203", + "updated_at": "2026-07-10T10:10:05.807203", + "url": "/v1/games/contagion-4-pack" +} diff --git a/site/public/v1/games/contra-anniversary-collection/index.json b/site/public/v1/games/contra-anniversary-collection/index.json new file mode 100644 index 000000000000..c13ac35d742d --- /dev/null +++ b/site/public/v1/games/contra-anniversary-collection/index.json @@ -0,0 +1,34 @@ +{ + "id": 30049, + "slug": "contra-anniversary-collection", + "name": "Contra Anniversary Collection", + "release_date": "2019-06-11", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "run and gun" + ], + "stores": [], + "developers": [ + "Konami" + ], + "publishers": [ + "Konami Digital Entertainment" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125398521" + ], + "created_at": "2026-07-10T10:10:05.819741", + "updated_at": "2026-07-10T10:10:05.819741", + "url": "/v1/games/contra-anniversary-collection" +} diff --git a/site/public/v1/games/contra-rebirth/index.json b/site/public/v1/games/contra-rebirth/index.json new file mode 100644 index 000000000000..da1fd5817d1e --- /dev/null +++ b/site/public/v1/games/contra-rebirth/index.json @@ -0,0 +1,33 @@ +{ + "id": 30056, + "slug": "contra-rebirth", + "name": "Contra ReBirth", + "release_date": "2009-05-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Wii" + ], + "genres": [ + "action game" + ], + "stores": [], + "developers": [ + "M2" + ], + "publishers": [ + "Konami" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2088538" + ], + "created_at": "2026-07-10T10:10:05.821741", + "updated_at": "2026-07-10T10:10:05.821741", + "url": "/v1/games/contra-rebirth" +} diff --git a/site/public/v1/games/contraband/index.json b/site/public/v1/games/contraband/index.json new file mode 100644 index 000000000000..87a4faa51cb3 --- /dev/null +++ b/site/public/v1/games/contraband/index.json @@ -0,0 +1,29 @@ +{ + "id": 30064, + "slug": "contraband", + "name": "Contraband", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S" + ], + "genres": [], + "stores": [], + "developers": [ + "Avalanche Studios Group" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107215593" + ], + "created_at": "2026-07-10T10:10:05.823741", + "updated_at": "2026-07-10T10:10:05.823741", + "url": "/v1/games/contraband" +} diff --git a/site/public/v1/games/contract-j-a-c-k/index.json b/site/public/v1/games/contract-j-a-c-k/index.json new file mode 100644 index 000000000000..a0e628a1973b --- /dev/null +++ b/site/public/v1/games/contract-j-a-c-k/index.json @@ -0,0 +1,31 @@ +{ + "id": 30071, + "slug": "contract-j-a-c-k", + "name": "Contract J.A.C.K.", + "release_date": "2003-11-11", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter" + ], + "stores": [], + "developers": [ + "Monolith Productions" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q723083" + ], + "created_at": "2026-07-10T10:10:05.825733", + "updated_at": "2026-07-10T10:10:05.825733", + "url": "/v1/games/contract-j-a-c-k" +} diff --git a/site/public/v1/games/control-awe/index.json b/site/public/v1/games/control-awe/index.json new file mode 100644 index 000000000000..3f8864cf8329 --- /dev/null +++ b/site/public/v1/games/control-awe/index.json @@ -0,0 +1,33 @@ +{ + "id": 30099, + "slug": "control-awe", + "name": "Control: AWE", + "release_date": "2020-08-27", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "action-adventure game", + "third-person shooter" + ], + "stores": [], + "developers": [], + "publishers": [ + "505 Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q98308832" + ], + "created_at": "2026-07-10T10:10:05.832739", + "updated_at": "2026-07-10T10:10:05.832739", + "url": "/v1/games/control-awe" +} diff --git a/site/public/v1/games/control-the-foundation/index.json b/site/public/v1/games/control-the-foundation/index.json new file mode 100644 index 000000000000..774c36f7ffed --- /dev/null +++ b/site/public/v1/games/control-the-foundation/index.json @@ -0,0 +1,33 @@ +{ + "id": 30108, + "slug": "control-the-foundation", + "name": "Control: The Foundation", + "release_date": "2020-03-26", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows", + "PlayStation 4" + ], + "genres": [ + "action-adventure game", + "third-person shooter" + ], + "stores": [], + "developers": [], + "publishers": [ + "505 Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q92803305" + ], + "created_at": "2026-07-10T10:10:05.835739", + "updated_at": "2026-07-10T10:10:05.835739", + "url": "/v1/games/control-the-foundation" +} diff --git a/site/public/v1/games/control-ultimate-edition/index.json b/site/public/v1/games/control-ultimate-edition/index.json new file mode 100644 index 000000000000..7978bbf85b75 --- /dev/null +++ b/site/public/v1/games/control-ultimate-edition/index.json @@ -0,0 +1,40 @@ +{ + "id": 30109, + "slug": "control-ultimate-edition", + "name": "Control: Ultimate Edition", + "release_date": "2020-08-27", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "visionOS", + "Xbox Series X and Series S", + "iPadOS", + "macOS", + "PlayStation 5", + "PlayStation 4", + "iOS", + "Microsoft Windows" + ], + "genres": [ + "action-adventure game", + "third-person shooter", + "science fiction video game" + ], + "stores": [], + "developers": [], + "publishers": [ + "505 Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q114284709" + ], + "created_at": "2026-07-10T10:10:05.835739", + "updated_at": "2026-07-10T10:10:05.835739", + "url": "/v1/games/control-ultimate-edition" +} diff --git a/site/public/v1/games/cooking-academy/index.json b/site/public/v1/games/cooking-academy/index.json new file mode 100644 index 000000000000..e6dec2eee9ff --- /dev/null +++ b/site/public/v1/games/cooking-academy/index.json @@ -0,0 +1,27 @@ +{ + "id": 30206, + "slug": "cooking-academy", + "name": "Cooking Academy", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140471349" + ], + "created_at": "2026-07-10T10:10:05.861830", + "updated_at": "2026-07-10T10:10:05.861830", + "url": "/v1/games/cooking-academy" +} diff --git a/site/public/v1/games/cool-shot/index.json b/site/public/v1/games/cool-shot/index.json new file mode 100644 index 000000000000..09fee59f6bea --- /dev/null +++ b/site/public/v1/games/cool-shot/index.json @@ -0,0 +1,25 @@ +{ + "id": 30269, + "slug": "cool-shot", + "name": "Cool Shot", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q128014866" + ], + "created_at": "2026-07-10T10:10:05.891880", + "updated_at": "2026-07-10T10:10:05.891880", + "url": "/v1/games/cool-shot" +} diff --git a/site/public/v1/games/coredoom/index.json b/site/public/v1/games/coredoom/index.json new file mode 100644 index 000000000000..0a78e41e995e --- /dev/null +++ b/site/public/v1/games/coredoom/index.json @@ -0,0 +1,25 @@ +{ + "id": 30377, + "slug": "coredoom", + "name": "coreDOOM", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124658407" + ], + "created_at": "2026-07-10T10:10:05.921461", + "updated_at": "2026-07-10T10:10:05.921461", + "url": "/v1/games/coredoom" +} diff --git a/site/public/v1/games/cossacks-3-days-of-brilliance/index.json b/site/public/v1/games/cossacks-3-days-of-brilliance/index.json new file mode 100644 index 000000000000..a61b5c5aa8cc --- /dev/null +++ b/site/public/v1/games/cossacks-3-days-of-brilliance/index.json @@ -0,0 +1,27 @@ +{ + "id": 30803, + "slug": "cossacks-3-days-of-brilliance", + "name": "Cossacks 3: Days of Brilliance", + "release_date": "2016-12-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q91333635" + ], + "created_at": "2026-07-10T10:10:06.096097", + "updated_at": "2026-07-10T10:10:06.096097", + "url": "/v1/games/cossacks-3-days-of-brilliance" +} diff --git a/site/public/v1/games/cossacks-ii-battle-for-europe/index.json b/site/public/v1/games/cossacks-ii-battle-for-europe/index.json new file mode 100644 index 000000000000..014464551e8e --- /dev/null +++ b/site/public/v1/games/cossacks-ii-battle-for-europe/index.json @@ -0,0 +1,31 @@ +{ + "id": 30807, + "slug": "cossacks-ii-battle-for-europe", + "name": "Cossacks II: Battle for Europe", + "release_date": "2006-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "real-time strategy" + ], + "stores": [], + "developers": [ + "GSC Game World" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q949269" + ], + "created_at": "2026-07-10T10:10:06.097097", + "updated_at": "2026-07-10T10:10:06.097097", + "url": "/v1/games/cossacks-ii-battle-for-europe" +} diff --git a/site/public/v1/games/cotton-guardian-force-saturn-tribute/index.json b/site/public/v1/games/cotton-guardian-force-saturn-tribute/index.json new file mode 100644 index 000000000000..15744387a62a --- /dev/null +++ b/site/public/v1/games/cotton-guardian-force-saturn-tribute/index.json @@ -0,0 +1,28 @@ +{ + "id": 30840, + "slug": "cotton-guardian-force-saturn-tribute", + "name": "Cotton Guardian Force Saturn Tribute", + "release_date": "2021-09-30", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124287645" + ], + "created_at": "2026-07-10T10:10:06.105349", + "updated_at": "2026-07-10T10:10:06.105349", + "url": "/v1/games/cotton-guardian-force-saturn-tribute" +} diff --git a/site/public/v1/games/counter-strike-1-anthology/index.json b/site/public/v1/games/counter-strike-1-anthology/index.json new file mode 100644 index 000000000000..f16f51b8cd0a --- /dev/null +++ b/site/public/v1/games/counter-strike-1-anthology/index.json @@ -0,0 +1,30 @@ +{ + "id": 30888, + "slug": "counter-strike-1-anthology", + "name": "Counter-Strike 1 Anthology", + "release_date": "2005-10-06", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "first-person shooter" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q71193018" + ], + "created_at": "2026-07-10T10:10:06.118914", + "updated_at": "2026-07-10T10:10:06.118914", + "url": "/v1/games/counter-strike-1-anthology" +} diff --git a/site/public/v1/games/counter-strike-2-prime-status-upgrade/index.json b/site/public/v1/games/counter-strike-2-prime-status-upgrade/index.json new file mode 100644 index 000000000000..b320751660cb --- /dev/null +++ b/site/public/v1/games/counter-strike-2-prime-status-upgrade/index.json @@ -0,0 +1,27 @@ +{ + "id": 30889, + "slug": "counter-strike-2-prime-status-upgrade", + "name": "Counter-Strike 2 Prime Status Upgrade", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q78783623" + ], + "created_at": "2026-07-10T10:10:06.118914", + "updated_at": "2026-07-10T10:10:06.118914", + "url": "/v1/games/counter-strike-2-prime-status-upgrade" +} diff --git a/site/public/v1/games/counter-strike-complete/index.json b/site/public/v1/games/counter-strike-complete/index.json new file mode 100644 index 000000000000..e9a965c54545 --- /dev/null +++ b/site/public/v1/games/counter-strike-complete/index.json @@ -0,0 +1,27 @@ +{ + "id": 30890, + "slug": "counter-strike-complete", + "name": "Counter-Strike Complete", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q78783281" + ], + "created_at": "2026-07-10T10:10:06.118914", + "updated_at": "2026-07-10T10:10:06.118914", + "url": "/v1/games/counter-strike-complete" +} diff --git a/site/public/v1/games/counter-strike-condition-zero-deleted-scenes/index.json b/site/public/v1/games/counter-strike-condition-zero-deleted-scenes/index.json new file mode 100644 index 000000000000..75a4f68fa673 --- /dev/null +++ b/site/public/v1/games/counter-strike-condition-zero-deleted-scenes/index.json @@ -0,0 +1,36 @@ +{ + "id": 30891, + "slug": "counter-strike-condition-zero-deleted-scenes", + "name": "Counter-Strike: Condition Zero Deleted Scenes", + "release_date": "2004-03-23", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows", + "macOS" + ], + "genres": [ + "first-person shooter" + ], + "stores": [], + "developers": [ + "Gearbox Software", + "Valve Corporation", + "Ritual Entertainment" + ], + "publishers": [ + "Valve Corporation" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76437585" + ], + "created_at": "2026-07-10T10:10:06.119911", + "updated_at": "2026-07-10T10:10:06.119911", + "url": "/v1/games/counter-strike-condition-zero-deleted-scenes" +} diff --git a/site/public/v1/games/counter-strike-condition-zero/index.json b/site/public/v1/games/counter-strike-condition-zero/index.json new file mode 100644 index 000000000000..833b1f9063cc --- /dev/null +++ b/site/public/v1/games/counter-strike-condition-zero/index.json @@ -0,0 +1,27 @@ +{ + "id": 30892, + "slug": "counter-strike-condition-zero", + "name": "Counter-Strike: Condition Zero", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q78782678" + ], + "created_at": "2026-07-10T10:10:06.119911", + "updated_at": "2026-07-10T10:10:06.119911", + "url": "/v1/games/counter-strike-condition-zero" +} diff --git a/site/public/v1/games/counter-strike-nintendo-ds/index.json b/site/public/v1/games/counter-strike-nintendo-ds/index.json new file mode 100644 index 000000000000..af52ccd82899 --- /dev/null +++ b/site/public/v1/games/counter-strike-nintendo-ds/index.json @@ -0,0 +1,33 @@ +{ + "id": 30896, + "slug": "counter-strike-nintendo-ds", + "name": "Counter Strike Nintendo DS", + "release_date": "2022-07-09", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Nintendo DS" + ], + "genres": [ + "first-person shooter" + ], + "stores": [], + "developers": [ + "Fewnity" + ], + "publishers": [ + "Fewnity" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122988181" + ], + "created_at": "2026-07-10T10:10:06.120911", + "updated_at": "2026-07-10T10:10:06.120911", + "url": "/v1/games/counter-strike-nintendo-ds" +} diff --git a/site/public/v1/games/counter-strike-source-garry-s-mod/index.json b/site/public/v1/games/counter-strike-source-garry-s-mod/index.json new file mode 100644 index 000000000000..365995bbfa33 --- /dev/null +++ b/site/public/v1/games/counter-strike-source-garry-s-mod/index.json @@ -0,0 +1,31 @@ +{ + "id": 30899, + "slug": "counter-strike-source-garry-s-mod", + "name": "Counter-Strike: Source + Garry's Mod", + "release_date": "2006-11-29", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Valve Corporation" + ], + "publishers": [ + "Valve Corporation" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q82498998" + ], + "created_at": "2026-07-10T10:10:06.120911", + "updated_at": "2026-07-10T10:10:06.120911", + "url": "/v1/games/counter-strike-source-garry-s-mod" +} diff --git a/site/public/v1/games/cr-deluxe-sea-story/index.json b/site/public/v1/games/cr-deluxe-sea-story/index.json new file mode 100644 index 000000000000..e3b0fc2b3bbe --- /dev/null +++ b/site/public/v1/games/cr-deluxe-sea-story/index.json @@ -0,0 +1,25 @@ +{ + "id": 31125, + "slug": "cr-deluxe-sea-story", + "name": "CR Deluxe Sea Story", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131118523" + ], + "created_at": "2026-07-10T10:10:06.204025", + "updated_at": "2026-07-10T10:10:06.204025", + "url": "/v1/games/cr-deluxe-sea-story" +} diff --git a/site/public/v1/games/cr-drum-sea-story-black/index.json b/site/public/v1/games/cr-drum-sea-story-black/index.json new file mode 100644 index 000000000000..2d7e880d0165 --- /dev/null +++ b/site/public/v1/games/cr-drum-sea-story-black/index.json @@ -0,0 +1,25 @@ +{ + "id": 31126, + "slug": "cr-drum-sea-story-black", + "name": "CR Drum Sea Story Black", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131143165" + ], + "created_at": "2026-07-10T10:10:06.204025", + "updated_at": "2026-07-10T10:10:06.204025", + "url": "/v1/games/cr-drum-sea-story-black" +} diff --git a/site/public/v1/games/cr-drum-sea-story/index.json b/site/public/v1/games/cr-drum-sea-story/index.json new file mode 100644 index 000000000000..c7546d299368 --- /dev/null +++ b/site/public/v1/games/cr-drum-sea-story/index.json @@ -0,0 +1,25 @@ +{ + "id": 31127, + "slug": "cr-drum-sea-story", + "name": "CR Drum Sea Story", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131143162" + ], + "created_at": "2026-07-10T10:10:06.204025", + "updated_at": "2026-07-10T10:10:06.204025", + "url": "/v1/games/cr-drum-sea-story" +} diff --git a/site/public/v1/games/cr-garo/index.json b/site/public/v1/games/cr-garo/index.json new file mode 100644 index 000000000000..244d6e7b4d4c --- /dev/null +++ b/site/public/v1/games/cr-garo/index.json @@ -0,0 +1,25 @@ +{ + "id": 31129, + "slug": "cr-garo", + "name": "CR Garo", + "release_date": "2018-11-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11194103" + ], + "created_at": "2026-07-10T10:10:06.205062", + "updated_at": "2026-07-10T10:10:06.205062", + "url": "/v1/games/cr-garo" +} diff --git a/site/public/v1/games/cr-gingira-paradise-2/index.json b/site/public/v1/games/cr-gingira-paradise-2/index.json new file mode 100644 index 000000000000..7fcb8ca835cc --- /dev/null +++ b/site/public/v1/games/cr-gingira-paradise-2/index.json @@ -0,0 +1,25 @@ +{ + "id": 31130, + "slug": "cr-gingira-paradise-2", + "name": "CR Gingira Paradise 2", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11193990" + ], + "created_at": "2026-07-10T10:10:06.206047", + "updated_at": "2026-07-10T10:10:06.206047", + "url": "/v1/games/cr-gingira-paradise-2" +} diff --git a/site/public/v1/games/cr-go-go-marine/index.json b/site/public/v1/games/cr-go-go-marine/index.json new file mode 100644 index 000000000000..d21470432fa7 --- /dev/null +++ b/site/public/v1/games/cr-go-go-marine/index.json @@ -0,0 +1,25 @@ +{ + "id": 31131, + "slug": "cr-go-go-marine", + "name": "CR GO!GO! Marine", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140278935" + ], + "created_at": "2026-07-10T10:10:06.206047", + "updated_at": "2026-07-10T10:10:06.206047", + "url": "/v1/games/cr-go-go-marine" +} diff --git a/site/public/v1/games/cr-gokuj-parodius/index.json b/site/public/v1/games/cr-gokuj-parodius/index.json new file mode 100644 index 000000000000..699784d03c8b --- /dev/null +++ b/site/public/v1/games/cr-gokuj-parodius/index.json @@ -0,0 +1,29 @@ +{ + "id": 31132, + "slug": "cr-gokuj-parodius", + "name": "CR Gokujō Parodius!", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "pachinko" + ], + "genres": [], + "stores": [], + "developers": [ + "Newgin" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6399654" + ], + "created_at": "2026-07-10T10:10:06.206047", + "updated_at": "2026-07-10T10:10:06.206047", + "url": "/v1/games/cr-gokuj-parodius" +} diff --git a/site/public/v1/games/cr-great-sea-story-2/index.json b/site/public/v1/games/cr-great-sea-story-2/index.json new file mode 100644 index 000000000000..2e287dda0072 --- /dev/null +++ b/site/public/v1/games/cr-great-sea-story-2/index.json @@ -0,0 +1,25 @@ +{ + "id": 31133, + "slug": "cr-great-sea-story-2", + "name": "CR Great Sea Story 2", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11194073" + ], + "created_at": "2026-07-10T10:10:06.206047", + "updated_at": "2026-07-10T10:10:06.206047", + "url": "/v1/games/cr-great-sea-story-2" +} diff --git a/site/public/v1/games/cr-great-sea-story-3/index.json b/site/public/v1/games/cr-great-sea-story-3/index.json new file mode 100644 index 000000000000..dc29695ad1f4 --- /dev/null +++ b/site/public/v1/games/cr-great-sea-story-3/index.json @@ -0,0 +1,25 @@ +{ + "id": 31134, + "slug": "cr-great-sea-story-3", + "name": "CR Great Sea Story 3", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131121864" + ], + "created_at": "2026-07-10T10:10:06.207030", + "updated_at": "2026-07-10T10:10:06.207030", + "url": "/v1/games/cr-great-sea-story-3" +} diff --git a/site/public/v1/games/cr-great-sea-story-4/index.json b/site/public/v1/games/cr-great-sea-story-4/index.json new file mode 100644 index 000000000000..d964219134a5 --- /dev/null +++ b/site/public/v1/games/cr-great-sea-story-4/index.json @@ -0,0 +1,25 @@ +{ + "id": 31135, + "slug": "cr-great-sea-story-4", + "name": "CR Great Sea Story 4", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131121963" + ], + "created_at": "2026-07-10T10:10:06.207030", + "updated_at": "2026-07-10T10:10:06.207030", + "url": "/v1/games/cr-great-sea-story-4" +} diff --git a/site/public/v1/games/cr-great-sea-story-special/index.json b/site/public/v1/games/cr-great-sea-story-special/index.json new file mode 100644 index 000000000000..41506d293f82 --- /dev/null +++ b/site/public/v1/games/cr-great-sea-story-special/index.json @@ -0,0 +1,25 @@ +{ + "id": 31136, + "slug": "cr-great-sea-story-special", + "name": "CR Great Sea Story Special", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11194074" + ], + "created_at": "2026-07-10T10:10:06.208073", + "updated_at": "2026-07-10T10:10:06.208073", + "url": "/v1/games/cr-great-sea-story-special" +} diff --git a/site/public/v1/games/cr-great-sea-story/index.json b/site/public/v1/games/cr-great-sea-story/index.json new file mode 100644 index 000000000000..e296616d1bb9 --- /dev/null +++ b/site/public/v1/games/cr-great-sea-story/index.json @@ -0,0 +1,25 @@ +{ + "id": 31137, + "slug": "cr-great-sea-story", + "name": "CR Great Sea Story", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11194071" + ], + "created_at": "2026-07-10T10:10:06.208073", + "updated_at": "2026-07-10T10:10:06.208073", + "url": "/v1/games/cr-great-sea-story" +} diff --git a/site/public/v1/games/cr-hyper-sea-story-in-caribbean/index.json b/site/public/v1/games/cr-hyper-sea-story-in-caribbean/index.json new file mode 100644 index 000000000000..2a306dae6abb --- /dev/null +++ b/site/public/v1/games/cr-hyper-sea-story-in-caribbean/index.json @@ -0,0 +1,25 @@ +{ + "id": 31138, + "slug": "cr-hyper-sea-story-in-caribbean", + "name": "CR Hyper Sea Story in Caribbean", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11194004" + ], + "created_at": "2026-07-10T10:10:06.209052", + "updated_at": "2026-07-10T10:10:06.209052", + "url": "/v1/games/cr-hyper-sea-story-in-caribbean" +} diff --git a/site/public/v1/games/cr-new-sea-story-with-agnes-lum/index.json b/site/public/v1/games/cr-new-sea-story-with-agnes-lum/index.json new file mode 100644 index 000000000000..ba92b986bb90 --- /dev/null +++ b/site/public/v1/games/cr-new-sea-story-with-agnes-lum/index.json @@ -0,0 +1,25 @@ +{ + "id": 31139, + "slug": "cr-new-sea-story-with-agnes-lum", + "name": "CR New Sea Story With Agnes Lum", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11194097" + ], + "created_at": "2026-07-10T10:10:06.209052", + "updated_at": "2026-07-10T10:10:06.209052", + "url": "/v1/games/cr-new-sea-story-with-agnes-lum" +} diff --git a/site/public/v1/games/cr-new-sea-story/index.json b/site/public/v1/games/cr-new-sea-story/index.json new file mode 100644 index 000000000000..815a8e336f49 --- /dev/null +++ b/site/public/v1/games/cr-new-sea-story/index.json @@ -0,0 +1,25 @@ +{ + "id": 31140, + "slug": "cr-new-sea-story", + "name": "CR New Sea Story", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11194096" + ], + "created_at": "2026-07-10T10:10:06.209052", + "updated_at": "2026-07-10T10:10:06.209052", + "url": "/v1/games/cr-new-sea-story" +} diff --git a/site/public/v1/games/cr-pachinko-akb48/index.json b/site/public/v1/games/cr-pachinko-akb48/index.json new file mode 100644 index 000000000000..7da587a179d4 --- /dev/null +++ b/site/public/v1/games/cr-pachinko-akb48/index.json @@ -0,0 +1,25 @@ +{ + "id": 31141, + "slug": "cr-pachinko-akb48", + "name": "CR Pachinko AKB48", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10846727" + ], + "created_at": "2026-07-10T10:10:06.210054", + "updated_at": "2026-07-10T10:10:06.210054", + "url": "/v1/games/cr-pachinko-akb48" +} diff --git a/site/public/v1/games/cr-parodius-da/index.json b/site/public/v1/games/cr-parodius-da/index.json new file mode 100644 index 000000000000..bbadb649b2c2 --- /dev/null +++ b/site/public/v1/games/cr-parodius-da/index.json @@ -0,0 +1,29 @@ +{ + "id": 31142, + "slug": "cr-parodius-da", + "name": "CR Parodius Da!", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "pachinko" + ], + "genres": [], + "stores": [], + "developers": [ + "Newgin" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5737484" + ], + "created_at": "2026-07-10T10:10:06.210054", + "updated_at": "2026-07-10T10:10:06.210054", + "url": "/v1/games/cr-parodius-da" +} diff --git a/site/public/v1/games/cr-premium-sea-story/index.json b/site/public/v1/games/cr-premium-sea-story/index.json new file mode 100644 index 000000000000..46b276403fe5 --- /dev/null +++ b/site/public/v1/games/cr-premium-sea-story/index.json @@ -0,0 +1,25 @@ +{ + "id": 31143, + "slug": "cr-premium-sea-story", + "name": "CR Premium Sea Story", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11194030" + ], + "created_at": "2026-07-10T10:10:06.210054", + "updated_at": "2026-07-10T10:10:06.210054", + "url": "/v1/games/cr-premium-sea-story" +} diff --git a/site/public/v1/games/cr-sea-story-3r/index.json b/site/public/v1/games/cr-sea-story-3r/index.json new file mode 100644 index 000000000000..83654d572b43 --- /dev/null +++ b/site/public/v1/games/cr-sea-story-3r/index.json @@ -0,0 +1,25 @@ +{ + "id": 31144, + "slug": "cr-sea-story-3r", + "name": "CR Sea Story 3R", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q24876870" + ], + "created_at": "2026-07-10T10:10:06.211026", + "updated_at": "2026-07-10T10:10:06.211026", + "url": "/v1/games/cr-sea-story-3r" +} diff --git a/site/public/v1/games/cr-sea-story-aqua/index.json b/site/public/v1/games/cr-sea-story-aqua/index.json new file mode 100644 index 000000000000..858de6829a35 --- /dev/null +++ b/site/public/v1/games/cr-sea-story-aqua/index.json @@ -0,0 +1,25 @@ +{ + "id": 31145, + "slug": "cr-sea-story-aqua", + "name": "CR Sea Story Aqua", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131118767" + ], + "created_at": "2026-07-10T10:10:06.211026", + "updated_at": "2026-07-10T10:10:06.211026", + "url": "/v1/games/cr-sea-story-aqua" +} diff --git a/site/public/v1/games/cr-super-sea-story-in-japan/index.json b/site/public/v1/games/cr-super-sea-story-in-japan/index.json new file mode 100644 index 000000000000..516ea2811d6f --- /dev/null +++ b/site/public/v1/games/cr-super-sea-story-in-japan/index.json @@ -0,0 +1,25 @@ +{ + "id": 31146, + "slug": "cr-super-sea-story-in-japan", + "name": "CR Super Sea Story in Japan", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131118661" + ], + "created_at": "2026-07-10T10:10:06.211026", + "updated_at": "2026-07-10T10:10:06.211026", + "url": "/v1/games/cr-super-sea-story-in-japan" +} diff --git a/site/public/v1/games/cr-super-sea-story-in-okinawa-2/index.json b/site/public/v1/games/cr-super-sea-story-in-okinawa-2/index.json new file mode 100644 index 000000000000..848c284335c7 --- /dev/null +++ b/site/public/v1/games/cr-super-sea-story-in-okinawa-2/index.json @@ -0,0 +1,25 @@ +{ + "id": 31147, + "slug": "cr-super-sea-story-in-okinawa-2", + "name": "CR Super Sea Story in Okinawa 2", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134393926" + ], + "created_at": "2026-07-10T10:10:06.212048", + "updated_at": "2026-07-10T10:10:06.212048", + "url": "/v1/games/cr-super-sea-story-in-okinawa-2" +} diff --git a/site/public/v1/games/cr-super-sea-story-in-okinawa-3/index.json b/site/public/v1/games/cr-super-sea-story-in-okinawa-3/index.json new file mode 100644 index 000000000000..8b7466c7ea91 --- /dev/null +++ b/site/public/v1/games/cr-super-sea-story-in-okinawa-3/index.json @@ -0,0 +1,25 @@ +{ + "id": 31148, + "slug": "cr-super-sea-story-in-okinawa-3", + "name": "CR Super Sea Story in Okinawa 3", + "release_date": "2013-07-08", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134393934" + ], + "created_at": "2026-07-10T10:10:06.212048", + "updated_at": "2026-07-10T10:10:06.212048", + "url": "/v1/games/cr-super-sea-story-in-okinawa-3" +} diff --git a/site/public/v1/games/cr-super-sea-story-in-okinawa-4/index.json b/site/public/v1/games/cr-super-sea-story-in-okinawa-4/index.json new file mode 100644 index 000000000000..5f6e53b03f23 --- /dev/null +++ b/site/public/v1/games/cr-super-sea-story-in-okinawa-4/index.json @@ -0,0 +1,25 @@ +{ + "id": 31149, + "slug": "cr-super-sea-story-in-okinawa-4", + "name": "CR Super Sea Story in Okinawa 4", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134393954" + ], + "created_at": "2026-07-10T10:10:06.213009", + "updated_at": "2026-07-10T10:10:06.213009", + "url": "/v1/games/cr-super-sea-story-in-okinawa-4" +} diff --git a/site/public/v1/games/cr-super-sea-story-in-okinawa/index.json b/site/public/v1/games/cr-super-sea-story-in-okinawa/index.json new file mode 100644 index 000000000000..b6a5dcec91ba --- /dev/null +++ b/site/public/v1/games/cr-super-sea-story-in-okinawa/index.json @@ -0,0 +1,25 @@ +{ + "id": 31150, + "slug": "cr-super-sea-story-in-okinawa", + "name": "CR Super Sea Story in Okinawa", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11193998" + ], + "created_at": "2026-07-10T10:10:06.213009", + "updated_at": "2026-07-10T10:10:06.213009", + "url": "/v1/games/cr-super-sea-story-in-okinawa" +} diff --git a/site/public/v1/games/cr-super-sea-story/index.json b/site/public/v1/games/cr-super-sea-story/index.json new file mode 100644 index 000000000000..b4f53aeb311d --- /dev/null +++ b/site/public/v1/games/cr-super-sea-story/index.json @@ -0,0 +1,25 @@ +{ + "id": 31151, + "slug": "cr-super-sea-story", + "name": "CR Super Sea Story", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17218450" + ], + "created_at": "2026-07-10T10:10:06.213009", + "updated_at": "2026-07-10T10:10:06.213009", + "url": "/v1/games/cr-super-sea-story" +} diff --git a/site/public/v1/games/cra-sea-story-wing/index.json b/site/public/v1/games/cra-sea-story-wing/index.json new file mode 100644 index 000000000000..c6c89aee0835 --- /dev/null +++ b/site/public/v1/games/cra-sea-story-wing/index.json @@ -0,0 +1,25 @@ +{ + "id": 31153, + "slug": "cra-sea-story-wing", + "name": "CRA Sea Story-Wing", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11193821" + ], + "created_at": "2026-07-10T10:10:06.214027", + "updated_at": "2026-07-10T10:10:06.214027", + "url": "/v1/games/cra-sea-story-wing" +} diff --git a/site/public/v1/games/cracking-the-cryptic-domino-sudoku/index.json b/site/public/v1/games/cracking-the-cryptic-domino-sudoku/index.json new file mode 100644 index 000000000000..f78bd5171f56 --- /dev/null +++ b/site/public/v1/games/cracking-the-cryptic-domino-sudoku/index.json @@ -0,0 +1,32 @@ +{ + "id": 31197, + "slug": "cracking-the-cryptic-domino-sudoku", + "name": "Cracking the Cryptic - Domino Sudoku", + "release_date": "2022-08-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Studio Goya" + ], + "publishers": [ + "Studio Goya" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116038687" + ], + "created_at": "2026-07-10T10:10:06.225091", + "updated_at": "2026-07-10T10:10:06.225091", + "url": "/v1/games/cracking-the-cryptic-domino-sudoku" +} diff --git a/site/public/v1/games/cracking-the-cryptic-gas-volume-1/index.json b/site/public/v1/games/cracking-the-cryptic-gas-volume-1/index.json new file mode 100644 index 000000000000..f1b1565d18ac --- /dev/null +++ b/site/public/v1/games/cracking-the-cryptic-gas-volume-1/index.json @@ -0,0 +1,32 @@ +{ + "id": 31198, + "slug": "cracking-the-cryptic-gas-volume-1", + "name": "Cracking the Cryptic - GAS Volume #1", + "release_date": "2022-11-02", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Studio Goya" + ], + "publishers": [ + "Studio Goya" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116038691" + ], + "created_at": "2026-07-10T10:10:06.226219", + "updated_at": "2026-07-10T10:10:06.226219", + "url": "/v1/games/cracking-the-cryptic-gas-volume-1" +} diff --git a/site/public/v1/games/crash-bandicoot-n-sane-trilogy/index.json b/site/public/v1/games/crash-bandicoot-n-sane-trilogy/index.json new file mode 100644 index 000000000000..14a7c39185c1 --- /dev/null +++ b/site/public/v1/games/crash-bandicoot-n-sane-trilogy/index.json @@ -0,0 +1,36 @@ +{ + "id": 31309, + "slug": "crash-bandicoot-n-sane-trilogy", + "name": "Crash Bandicoot N. Sane Trilogy", + "release_date": "2017-06-30", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "platformer" + ], + "stores": [], + "developers": [ + "Toys for Bob" + ], + "publishers": [ + "Sony Interactive Entertainment", + "Sega", + "Activision" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q26698531" + ], + "created_at": "2026-07-10T10:10:06.255160", + "updated_at": "2026-07-10T10:10:06.255160", + "url": "/v1/games/crash-bandicoot-n-sane-trilogy" +} diff --git a/site/public/v1/games/crashlands-q110453695/index.json b/site/public/v1/games/crashlands-q110453695/index.json new file mode 100644 index 000000000000..5c4ddea9c4e3 --- /dev/null +++ b/site/public/v1/games/crashlands-q110453695/index.json @@ -0,0 +1,28 @@ +{ + "id": 31392, + "slug": "crashlands-q110453695", + "name": "Crashlands+", + "release_date": "2022-01-14", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "iPadOS", + "iOS" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110453695" + ], + "created_at": "2026-07-10T10:10:06.276091", + "updated_at": "2026-07-10T10:10:06.276091", + "url": "/v1/games/crashlands-q110453695" +} diff --git a/site/public/v1/games/crayola-create-and-play-q108740529/index.json b/site/public/v1/games/crayola-create-and-play-q108740529/index.json new file mode 100644 index 000000000000..83029c1064ca --- /dev/null +++ b/site/public/v1/games/crayola-create-and-play-q108740529/index.json @@ -0,0 +1,30 @@ +{ + "id": 31436, + "slug": "crayola-create-and-play-q108740529", + "name": "Crayola Create and Play+", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "iPadOS", + "iOS" + ], + "genres": [], + "stores": [], + "developers": [ + "Red Games Co." + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108740529" + ], + "created_at": "2026-07-10T10:10:06.299651", + "updated_at": "2026-07-10T10:10:06.299651", + "url": "/v1/games/crayola-create-and-play-q108740529" +} diff --git a/site/public/v1/games/crazy-chicken-atlantis/index.json b/site/public/v1/games/crazy-chicken-atlantis/index.json new file mode 100644 index 000000000000..240696824b4e --- /dev/null +++ b/site/public/v1/games/crazy-chicken-atlantis/index.json @@ -0,0 +1,25 @@ +{ + "id": 31488, + "slug": "crazy-chicken-atlantis", + "name": "Crazy Chicken: Atlantis", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140472245" + ], + "created_at": "2026-07-10T10:10:06.326318", + "updated_at": "2026-07-10T10:10:06.326318", + "url": "/v1/games/crazy-chicken-atlantis" +} diff --git a/site/public/v1/games/crazy-traffic-jam-3d/index.json b/site/public/v1/games/crazy-traffic-jam-3d/index.json new file mode 100644 index 000000000000..9cf75f43ec60 --- /dev/null +++ b/site/public/v1/games/crazy-traffic-jam-3d/index.json @@ -0,0 +1,33 @@ +{ + "id": 31610, + "slug": "crazy-traffic-jam-3d", + "name": "Crazy Traffic Jam 3D", + "release_date": "2017-08-06", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation Vita" + ], + "genres": [ + "arcade" + ], + "stores": [], + "developers": [ + "VitaHEX games" + ], + "publishers": [ + "VitaHEX games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123915421" + ], + "created_at": "2026-07-10T10:10:06.381414", + "updated_at": "2026-07-10T10:10:06.381414", + "url": "/v1/games/crazy-traffic-jam-3d" +} diff --git a/site/public/v1/games/creatures-deluxe/index.json b/site/public/v1/games/creatures-deluxe/index.json new file mode 100644 index 000000000000..84b0c64eec25 --- /dev/null +++ b/site/public/v1/games/creatures-deluxe/index.json @@ -0,0 +1,25 @@ +{ + "id": 31706, + "slug": "creatures-deluxe", + "name": "Creatures Deluxe", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124098282" + ], + "created_at": "2026-07-10T10:10:06.406483", + "updated_at": "2026-07-10T10:10:06.406483", + "url": "/v1/games/creatures-deluxe" +} diff --git a/site/public/v1/games/crimecraft-gangwars/index.json b/site/public/v1/games/crimecraft-gangwars/index.json new file mode 100644 index 000000000000..ae93f88fc34d --- /dev/null +++ b/site/public/v1/games/crimecraft-gangwars/index.json @@ -0,0 +1,25 @@ +{ + "id": 31883, + "slug": "crimecraft-gangwars", + "name": "CrimeCraft: GangWars", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112539530" + ], + "created_at": "2026-07-10T10:10:06.454064", + "updated_at": "2026-07-10T10:10:06.454064", + "url": "/v1/games/crimecraft-gangwars" +} diff --git a/site/public/v1/games/crispy-doom/index.json b/site/public/v1/games/crispy-doom/index.json new file mode 100644 index 000000000000..c5173320e6f0 --- /dev/null +++ b/site/public/v1/games/crispy-doom/index.json @@ -0,0 +1,25 @@ +{ + "id": 32008, + "slug": "crispy-doom", + "name": "Crispy Doom", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q67195588" + ], + "created_at": "2026-07-10T10:10:06.487119", + "updated_at": "2026-07-10T10:10:06.487119", + "url": "/v1/games/crispy-doom" +} diff --git a/site/public/v1/games/crossfire-q57974038/index.json b/site/public/v1/games/crossfire-q57974038/index.json new file mode 100644 index 000000000000..188663ca7f32 --- /dev/null +++ b/site/public/v1/games/crossfire-q57974038/index.json @@ -0,0 +1,25 @@ +{ + "id": 32210, + "slug": "crossfire-q57974038", + "name": "Crossfire", + "release_date": "2011-08-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q57974038" + ], + "created_at": "2026-07-10T10:10:06.547765", + "updated_at": "2026-07-10T10:10:06.547765", + "url": "/v1/games/crossfire-q57974038" +} diff --git a/site/public/v1/games/crossword-explorer-q124079795/index.json b/site/public/v1/games/crossword-explorer-q124079795/index.json new file mode 100644 index 000000000000..a13250f2e69e --- /dev/null +++ b/site/public/v1/games/crossword-explorer-q124079795/index.json @@ -0,0 +1,29 @@ +{ + "id": 32264, + "slug": "crossword-explorer-q124079795", + "name": "Crossword Explorer+", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "iOS" + ], + "genres": [ + "word video game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124079795" + ], + "created_at": "2026-07-10T10:10:06.562824", + "updated_at": "2026-07-10T10:10:06.562824", + "url": "/v1/games/crossword-explorer-q124079795" +} diff --git a/site/public/v1/games/crossword-jam-q122945661/index.json b/site/public/v1/games/crossword-jam-q122945661/index.json new file mode 100644 index 000000000000..7c2e1f169227 --- /dev/null +++ b/site/public/v1/games/crossword-jam-q122945661/index.json @@ -0,0 +1,28 @@ +{ + "id": 32266, + "slug": "crossword-jam-q122945661", + "name": "Crossword Jam+", + "release_date": "2023-10-20", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "iPadOS", + "iOS" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122945661" + ], + "created_at": "2026-07-10T10:10:06.563896", + "updated_at": "2026-07-10T10:10:06.563896", + "url": "/v1/games/crossword-jam-q122945661" +} diff --git a/site/public/v1/games/crossy-road-clone/index.json b/site/public/v1/games/crossy-road-clone/index.json new file mode 100644 index 000000000000..cbf87562567a --- /dev/null +++ b/site/public/v1/games/crossy-road-clone/index.json @@ -0,0 +1,31 @@ +{ + "id": 32279, + "slug": "crossy-road-clone", + "name": "Crossy Road Clone", + "release_date": "2024-07-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation Vita" + ], + "genres": [], + "stores": [], + "developers": [ + "MRKane" + ], + "publishers": [ + "MRKane" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127225213" + ], + "created_at": "2026-07-10T10:10:06.567941", + "updated_at": "2026-07-10T10:10:06.567941", + "url": "/v1/games/crossy-road-clone" +} diff --git a/site/public/v1/games/crossy-road-q108368010/index.json b/site/public/v1/games/crossy-road-q108368010/index.json new file mode 100644 index 000000000000..e557695cde2a --- /dev/null +++ b/site/public/v1/games/crossy-road-q108368010/index.json @@ -0,0 +1,29 @@ +{ + "id": 32280, + "slug": "crossy-road-q108368010", + "name": "Crossy Road+", + "release_date": "2021-10-08", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "tvOS", + "iPadOS", + "iOS" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108368010" + ], + "created_at": "2026-07-10T10:10:06.567941", + "updated_at": "2026-07-10T10:10:06.567941", + "url": "/v1/games/crossy-road-q108368010" +} diff --git a/site/public/v1/games/croteam-vr-bundle/index.json b/site/public/v1/games/croteam-vr-bundle/index.json new file mode 100644 index 000000000000..89c460740284 --- /dev/null +++ b/site/public/v1/games/croteam-vr-bundle/index.json @@ -0,0 +1,37 @@ +{ + "id": 32283, + "slug": "croteam-vr-bundle", + "name": "CROTEAM VR Bundle", + "release_date": "2017-11-09", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "action-adventure game" + ], + "stores": [], + "developers": [ + "Croteam VR", + "Croteam" + ], + "publishers": [ + "Croteam", + "Devolver Digital", + "Croteam Publishing" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121307070" + ], + "created_at": "2026-07-10T10:10:06.568941", + "updated_at": "2026-07-10T10:10:06.568941", + "url": "/v1/games/croteam-vr-bundle" +} diff --git a/site/public/v1/games/crouching-tiger-hidden-dragon-2003/index.json b/site/public/v1/games/crouching-tiger-hidden-dragon-2003/index.json new file mode 100644 index 000000000000..1b3663d08e75 --- /dev/null +++ b/site/public/v1/games/crouching-tiger-hidden-dragon-2003/index.json @@ -0,0 +1,29 @@ +{ + "id": 32285, + "slug": "crouching-tiger-hidden-dragon-2003", + "name": "Crouching Tiger, Hidden Dragon 2003", + "release_date": "2003-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Neo Geo" + ], + "genres": [ + "beat 'em up" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3005428" + ], + "created_at": "2026-07-10T10:10:06.568941", + "updated_at": "2026-07-10T10:10:06.568941", + "url": "/v1/games/crouching-tiger-hidden-dragon-2003" +} diff --git a/site/public/v1/games/crucible-q93360353/index.json b/site/public/v1/games/crucible-q93360353/index.json new file mode 100644 index 000000000000..dd661ae4d944 --- /dev/null +++ b/site/public/v1/games/crucible-q93360353/index.json @@ -0,0 +1,31 @@ +{ + "id": 32363, + "slug": "crucible-q93360353", + "name": "Crucible", + "release_date": "2020-05-20", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "third-person shooter" + ], + "stores": [], + "developers": [ + "Relentless Studios" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q93360353" + ], + "created_at": "2026-07-10T10:10:06.591000", + "updated_at": "2026-07-10T10:10:06.591000", + "url": "/v1/games/crucible-q93360353" +} diff --git a/site/public/v1/games/crusader-kings-ii-holy-fury/index.json b/site/public/v1/games/crusader-kings-ii-holy-fury/index.json new file mode 100644 index 000000000000..97a379fd4864 --- /dev/null +++ b/site/public/v1/games/crusader-kings-ii-holy-fury/index.json @@ -0,0 +1,34 @@ +{ + "id": 32425, + "slug": "crusader-kings-ii-holy-fury", + "name": "Crusader Kings II: Holy Fury", + "release_date": "2018-11-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "grand strategy wargame" + ], + "stores": [], + "developers": [ + "Development Studio" + ], + "publishers": [ + "Paradox Interactive" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q102270946" + ], + "created_at": "2026-07-10T10:10:06.607066", + "updated_at": "2026-07-10T10:10:06.607066", + "url": "/v1/games/crusader-kings-ii-holy-fury" +} diff --git a/site/public/v1/games/crusader-kings-ii-sons-of-abraham/index.json b/site/public/v1/games/crusader-kings-ii-sons-of-abraham/index.json new file mode 100644 index 000000000000..d7c82c462952 --- /dev/null +++ b/site/public/v1/games/crusader-kings-ii-sons-of-abraham/index.json @@ -0,0 +1,33 @@ +{ + "id": 32426, + "slug": "crusader-kings-ii-sons-of-abraham", + "name": "Crusader Kings II: Sons of Abraham", + "release_date": "2013-11-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "grand strategy wargame" + ], + "stores": [], + "developers": [ + "Development Studio" + ], + "publishers": [ + "Paradox Interactive" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q19427235" + ], + "created_at": "2026-07-10T10:10:06.607066", + "updated_at": "2026-07-10T10:10:06.607066", + "url": "/v1/games/crusader-kings-ii-sons-of-abraham" +} diff --git a/site/public/v1/games/crusader-kings-ii-sunset-invasion/index.json b/site/public/v1/games/crusader-kings-ii-sunset-invasion/index.json new file mode 100644 index 000000000000..c8810a5f285c --- /dev/null +++ b/site/public/v1/games/crusader-kings-ii-sunset-invasion/index.json @@ -0,0 +1,34 @@ +{ + "id": 32427, + "slug": "crusader-kings-ii-sunset-invasion", + "name": "Crusader Kings II: Sunset Invasion", + "release_date": "2012-11-15", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "grand strategy wargame" + ], + "stores": [], + "developers": [ + "Development Studio" + ], + "publishers": [ + "Paradox Interactive" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q103030214" + ], + "created_at": "2026-07-10T10:10:06.607066", + "updated_at": "2026-07-10T10:10:06.607066", + "url": "/v1/games/crusader-kings-ii-sunset-invasion" +} diff --git a/site/public/v1/games/crusader-kings-ii-sword-of-islam/index.json b/site/public/v1/games/crusader-kings-ii-sword-of-islam/index.json new file mode 100644 index 000000000000..4c5dbab613cb --- /dev/null +++ b/site/public/v1/games/crusader-kings-ii-sword-of-islam/index.json @@ -0,0 +1,33 @@ +{ + "id": 32428, + "slug": "crusader-kings-ii-sword-of-islam", + "name": "Crusader Kings II: Sword of Islam", + "release_date": "2012-06-26", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "grand strategy wargame" + ], + "stores": [], + "developers": [ + "Development Studio" + ], + "publishers": [ + "Paradox Interactive" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q14930415" + ], + "created_at": "2026-07-10T10:10:06.607066", + "updated_at": "2026-07-10T10:10:06.607066", + "url": "/v1/games/crusader-kings-ii-sword-of-islam" +} diff --git a/site/public/v1/games/crusader-kings-iii-fate-of-iberia/index.json b/site/public/v1/games/crusader-kings-iii-fate-of-iberia/index.json new file mode 100644 index 000000000000..aab603c422d8 --- /dev/null +++ b/site/public/v1/games/crusader-kings-iii-fate-of-iberia/index.json @@ -0,0 +1,28 @@ +{ + "id": 32431, + "slug": "crusader-kings-iii-fate-of-iberia", + "name": "Crusader Kings III: Fate of Iberia", + "release_date": "2022-05-31", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112619861" + ], + "created_at": "2026-07-10T10:10:06.608098", + "updated_at": "2026-07-10T10:10:06.608098", + "url": "/v1/games/crusader-kings-iii-fate-of-iberia" +} diff --git a/site/public/v1/games/crusader-kings-iii-friends-foes/index.json b/site/public/v1/games/crusader-kings-iii-friends-foes/index.json new file mode 100644 index 000000000000..36fd64d250e0 --- /dev/null +++ b/site/public/v1/games/crusader-kings-iii-friends-foes/index.json @@ -0,0 +1,32 @@ +{ + "id": 32432, + "slug": "crusader-kings-iii-friends-foes", + "name": "Crusader Kings III: Friends & Foes", + "release_date": "2022-09-08", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Development Studio" + ], + "publishers": [ + "Paradox Interactive" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113673221" + ], + "created_at": "2026-07-10T10:10:06.608098", + "updated_at": "2026-07-10T10:10:06.608098", + "url": "/v1/games/crusader-kings-iii-friends-foes" +} diff --git a/site/public/v1/games/crusader-kings-iii-northern-lords/index.json b/site/public/v1/games/crusader-kings-iii-northern-lords/index.json new file mode 100644 index 000000000000..1eb1a1eba790 --- /dev/null +++ b/site/public/v1/games/crusader-kings-iii-northern-lords/index.json @@ -0,0 +1,32 @@ +{ + "id": 32435, + "slug": "crusader-kings-iii-northern-lords", + "name": "Crusader Kings III: Northern Lords", + "release_date": "2021-03-16", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Development Studio" + ], + "publishers": [ + "Paradox Interactive" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110866484" + ], + "created_at": "2026-07-10T10:10:06.609092", + "updated_at": "2026-07-10T10:10:06.609092", + "url": "/v1/games/crusader-kings-iii-northern-lords" +} diff --git a/site/public/v1/games/crusader-kings-iii-royal-court/index.json b/site/public/v1/games/crusader-kings-iii-royal-court/index.json new file mode 100644 index 000000000000..c54a72efeb3e --- /dev/null +++ b/site/public/v1/games/crusader-kings-iii-royal-court/index.json @@ -0,0 +1,32 @@ +{ + "id": 32437, + "slug": "crusader-kings-iii-royal-court", + "name": "Crusader Kings III: Royal Court", + "release_date": "2022-02-08", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Development Studio" + ], + "publishers": [ + "Paradox Interactive" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110866510" + ], + "created_at": "2026-07-10T10:10:06.610080", + "updated_at": "2026-07-10T10:10:06.610080", + "url": "/v1/games/crusader-kings-iii-royal-court" +} diff --git a/site/public/v1/games/crusader-kings-iii-royal-edition/index.json b/site/public/v1/games/crusader-kings-iii-royal-edition/index.json new file mode 100644 index 000000000000..82c689d893b7 --- /dev/null +++ b/site/public/v1/games/crusader-kings-iii-royal-edition/index.json @@ -0,0 +1,32 @@ +{ + "id": 32438, + "slug": "crusader-kings-iii-royal-edition", + "name": "Crusader Kings III: Royal Edition", + "release_date": "2022-03-29", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S" + ], + "genres": [], + "stores": [], + "developers": [ + "Lab42", + "Development Studio" + ], + "publishers": [ + "Paradox Interactive" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111754772" + ], + "created_at": "2026-07-10T10:10:06.610080", + "updated_at": "2026-07-10T10:10:06.610080", + "url": "/v1/games/crusader-kings-iii-royal-edition" +} diff --git a/site/public/v1/games/cry-on/index.json b/site/public/v1/games/cry-on/index.json new file mode 100644 index 000000000000..72f5932bd9a7 --- /dev/null +++ b/site/public/v1/games/cry-on/index.json @@ -0,0 +1,31 @@ +{ + "id": 32493, + "slug": "cry-on", + "name": "Cry On", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "role-playing video game" + ], + "stores": [], + "developers": [ + "Mistwalker" + ], + "publishers": [ + "Xbox Game Studios" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3005700" + ], + "created_at": "2026-07-10T10:10:06.624600", + "updated_at": "2026-07-10T10:10:06.624600", + "url": "/v1/games/cry-on" +} diff --git a/site/public/v1/games/cryptic-passage-for-blood/index.json b/site/public/v1/games/cryptic-passage-for-blood/index.json new file mode 100644 index 000000000000..4a62aa7a9314 --- /dev/null +++ b/site/public/v1/games/cryptic-passage-for-blood/index.json @@ -0,0 +1,25 @@ +{ + "id": 32547, + "slug": "cryptic-passage-for-blood", + "name": "Cryptic Passage for Blood", + "release_date": "1997-06-30", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110160738" + ], + "created_at": "2026-07-10T10:10:06.638787", + "updated_at": "2026-07-10T10:10:06.638787", + "url": "/v1/games/cryptic-passage-for-blood" +} diff --git a/site/public/v1/games/cryptokitties/index.json b/site/public/v1/games/cryptokitties/index.json new file mode 100644 index 000000000000..4964b5a2eea1 --- /dev/null +++ b/site/public/v1/games/cryptokitties/index.json @@ -0,0 +1,31 @@ +{ + "id": 32588, + "slug": "cryptokitties", + "name": "Cryptokitties", + "release_date": "2017-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "iOS" + ], + "genres": [ + "business simulation game" + ], + "stores": [], + "developers": [ + "Dapper Labs" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q47111665" + ], + "created_at": "2026-07-10T10:10:06.650109", + "updated_at": "2026-07-10T10:10:06.650109", + "url": "/v1/games/cryptokitties" +} diff --git a/site/public/v1/games/crysis-3-the-lost-island/index.json b/site/public/v1/games/crysis-3-the-lost-island/index.json new file mode 100644 index 000000000000..0d84b7273779 --- /dev/null +++ b/site/public/v1/games/crysis-3-the-lost-island/index.json @@ -0,0 +1,30 @@ +{ + "id": 32602, + "slug": "crysis-3-the-lost-island", + "name": "Crysis 3: The Lost Island", + "release_date": "2013-06-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 3", + "Microsoft Windows" + ], + "genres": [ + "first-person shooter" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109653746" + ], + "created_at": "2026-07-10T10:10:06.654109", + "updated_at": "2026-07-10T10:10:06.654109", + "url": "/v1/games/crysis-3-the-lost-island" +} diff --git a/site/public/v1/games/crysis-remastered-trilogy/index.json b/site/public/v1/games/crysis-remastered-trilogy/index.json new file mode 100644 index 000000000000..e7a4436ace8c --- /dev/null +++ b/site/public/v1/games/crysis-remastered-trilogy/index.json @@ -0,0 +1,33 @@ +{ + "id": 32605, + "slug": "crysis-remastered-trilogy", + "name": "Crysis Remastered Trilogy", + "release_date": "2021-10-15", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "first-person shooter" + ], + "stores": [], + "developers": [], + "publishers": [ + "Saber Interactive" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107062535" + ], + "created_at": "2026-07-10T10:10:06.654109", + "updated_at": "2026-07-10T10:10:06.654109", + "url": "/v1/games/crysis-remastered-trilogy" +} diff --git a/site/public/v1/games/crysis-warhead/index.json b/site/public/v1/games/crysis-warhead/index.json new file mode 100644 index 000000000000..15133615a5cb --- /dev/null +++ b/site/public/v1/games/crysis-warhead/index.json @@ -0,0 +1,32 @@ +{ + "id": 32607, + "slug": "crysis-warhead", + "name": "Crysis Warhead", + "release_date": "2008-09-16", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "science fiction video game" + ], + "stores": [], + "developers": [], + "publishers": [ + "Electronic Arts" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1045393" + ], + "created_at": "2026-07-10T10:10:06.655203", + "updated_at": "2026-07-10T10:10:06.655203", + "url": "/v1/games/crysis-warhead" +} diff --git a/site/public/v1/games/crystal-theme/index.json b/site/public/v1/games/crystal-theme/index.json new file mode 100644 index 000000000000..a41357703259 --- /dev/null +++ b/site/public/v1/games/crystal-theme/index.json @@ -0,0 +1,31 @@ +{ + "id": 32702, + "slug": "crystal-theme", + "name": "Crystal Theme", + "release_date": "2014-10-02", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation Vita" + ], + "genres": [], + "stores": [], + "developers": [ + "Sony Interactive Entertainment" + ], + "publishers": [ + "Sony Interactive Entertainment" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q61476393" + ], + "created_at": "2026-07-10T10:10:06.680166", + "updated_at": "2026-07-10T10:10:06.680166", + "url": "/v1/games/crystal-theme" +} diff --git a/site/public/v1/games/csdoom/index.json b/site/public/v1/games/csdoom/index.json new file mode 100644 index 000000000000..1b9a0e9e29dc --- /dev/null +++ b/site/public/v1/games/csdoom/index.json @@ -0,0 +1,25 @@ +{ + "id": 32741, + "slug": "csdoom", + "name": "csDoom", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q67221168" + ], + "created_at": "2026-07-10T10:10:06.690103", + "updated_at": "2026-07-10T10:10:06.690103", + "url": "/v1/games/csdoom" +} diff --git a/site/public/v1/games/cube-escape-collection/index.json b/site/public/v1/games/cube-escape-collection/index.json new file mode 100644 index 000000000000..813e84b77e73 --- /dev/null +++ b/site/public/v1/games/cube-escape-collection/index.json @@ -0,0 +1,30 @@ +{ + "id": 32839, + "slug": "cube-escape-collection", + "name": "Cube Escape Collection", + "release_date": "2020-10-14", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Rusty Lake" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130754277" + ], + "created_at": "2026-07-10T10:10:06.716187", + "updated_at": "2026-07-10T10:10:06.716187", + "url": "/v1/games/cube-escape-collection" +} diff --git a/site/public/v1/games/cuckold-simulator-coomer-s-delight/index.json b/site/public/v1/games/cuckold-simulator-coomer-s-delight/index.json new file mode 100644 index 000000000000..2f8ceae04ac6 --- /dev/null +++ b/site/public/v1/games/cuckold-simulator-coomer-s-delight/index.json @@ -0,0 +1,31 @@ +{ + "id": 33063, + "slug": "cuckold-simulator-coomer-s-delight", + "name": "Cuckold Simulator: Coomer's Delight", + "release_date": "2021-05-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "casual game", + "erotic video game", + "satirical video game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120174190" + ], + "created_at": "2026-07-10T10:10:06.776759", + "updated_at": "2026-07-10T10:10:06.776759", + "url": "/v1/games/cuckold-simulator-coomer-s-delight" +} diff --git a/site/public/v1/games/cuckold-simulator-covid-19-mask/index.json b/site/public/v1/games/cuckold-simulator-covid-19-mask/index.json new file mode 100644 index 000000000000..2217db81f5bd --- /dev/null +++ b/site/public/v1/games/cuckold-simulator-covid-19-mask/index.json @@ -0,0 +1,30 @@ +{ + "id": 33064, + "slug": "cuckold-simulator-covid-19-mask", + "name": "Cuckold Simulator: Covid-19 Mask", + "release_date": "2021-05-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "casual game", + "satirical video game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120174176" + ], + "created_at": "2026-07-10T10:10:06.776759", + "updated_at": "2026-07-10T10:10:06.776759", + "url": "/v1/games/cuckold-simulator-covid-19-mask" +} diff --git a/site/public/v1/games/cuckold-simulator-ukraine-supporter-pack/index.json b/site/public/v1/games/cuckold-simulator-ukraine-supporter-pack/index.json new file mode 100644 index 000000000000..47992c2fbe30 --- /dev/null +++ b/site/public/v1/games/cuckold-simulator-ukraine-supporter-pack/index.json @@ -0,0 +1,30 @@ +{ + "id": 33066, + "slug": "cuckold-simulator-ukraine-supporter-pack", + "name": "Cuckold Simulator: Ukraine Supporter Pack", + "release_date": "2023-01-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "casual game", + "satirical video game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120174166" + ], + "created_at": "2026-07-10T10:10:06.776759", + "updated_at": "2026-07-10T10:10:06.776759", + "url": "/v1/games/cuckold-simulator-ukraine-supporter-pack" +} diff --git a/site/public/v1/games/culpa-innata-ii-chaos-rising/index.json b/site/public/v1/games/culpa-innata-ii-chaos-rising/index.json new file mode 100644 index 000000000000..8b053726183b --- /dev/null +++ b/site/public/v1/games/culpa-innata-ii-chaos-rising/index.json @@ -0,0 +1,29 @@ +{ + "id": 33102, + "slug": "culpa-innata-ii-chaos-rising", + "name": "Culpa Innata II: Chaos Rising", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "adventure video game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4036760" + ], + "created_at": "2026-07-10T10:10:06.800771", + "updated_at": "2026-07-10T10:10:06.800771", + "url": "/v1/games/culpa-innata-ii-chaos-rising" +} diff --git a/site/public/v1/games/cult-of-the-lamb-cultist-edition/index.json b/site/public/v1/games/cult-of-the-lamb-cultist-edition/index.json new file mode 100644 index 000000000000..a6654ae3aa68 --- /dev/null +++ b/site/public/v1/games/cult-of-the-lamb-cultist-edition/index.json @@ -0,0 +1,31 @@ +{ + "id": 33125, + "slug": "cult-of-the-lamb-cultist-edition", + "name": "Cult of the Lamb: Cultist Edition", + "release_date": "2022-08-11", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S" + ], + "genres": [], + "stores": [], + "developers": [ + "Massive Monster" + ], + "publishers": [ + "Devolver Digital" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115525672" + ], + "created_at": "2026-07-10T10:10:06.807823", + "updated_at": "2026-07-10T10:10:06.807823", + "url": "/v1/games/cult-of-the-lamb-cultist-edition" +} diff --git a/site/public/v1/games/cultist-simulator-anthology-edition/index.json b/site/public/v1/games/cultist-simulator-anthology-edition/index.json new file mode 100644 index 000000000000..ac37822bbe12 --- /dev/null +++ b/site/public/v1/games/cultist-simulator-anthology-edition/index.json @@ -0,0 +1,36 @@ +{ + "id": 33134, + "slug": "cultist-simulator-anthology-edition", + "name": "Cultist Simulator Anthology Edition", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "simulation video game", + "card video game", + "cosmic horror video game" + ], + "stores": [], + "developers": [ + "Weather Factory" + ], + "publishers": [ + "Weather Factory" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125506050" + ], + "created_at": "2026-07-10T10:10:06.810072", + "updated_at": "2026-07-10T10:10:06.810072", + "url": "/v1/games/cultist-simulator-anthology-edition" +} diff --git a/site/public/v1/games/cultist-simulator-initiate-edition/index.json b/site/public/v1/games/cultist-simulator-initiate-edition/index.json new file mode 100644 index 000000000000..e3624518d01a --- /dev/null +++ b/site/public/v1/games/cultist-simulator-initiate-edition/index.json @@ -0,0 +1,33 @@ +{ + "id": 33135, + "slug": "cultist-simulator-initiate-edition", + "name": "Cultist Simulator: Initiate Edition", + "release_date": "2021-02-02", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "simulation video game", + "card video game", + "cosmic horror video game" + ], + "stores": [], + "developers": [ + "Weather Factory" + ], + "publishers": [ + "Playdigious" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125506354" + ], + "created_at": "2026-07-10T10:10:06.810072", + "updated_at": "2026-07-10T10:10:06.810072", + "url": "/v1/games/cultist-simulator-initiate-edition" +} diff --git a/site/public/v1/games/cultist-simulator-the-dancer/index.json b/site/public/v1/games/cultist-simulator-the-dancer/index.json new file mode 100644 index 000000000000..956748414b65 --- /dev/null +++ b/site/public/v1/games/cultist-simulator-the-dancer/index.json @@ -0,0 +1,36 @@ +{ + "id": 33136, + "slug": "cultist-simulator-the-dancer", + "name": "Cultist Simulator: The Dancer", + "release_date": "2018-10-16", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "simulation video game", + "cosmic horror video game", + "card video game" + ], + "stores": [], + "developers": [ + "Weather Factory" + ], + "publishers": [ + "Weather Factory" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q114872386" + ], + "created_at": "2026-07-10T10:10:06.810072", + "updated_at": "2026-07-10T10:10:06.810072", + "url": "/v1/games/cultist-simulator-the-dancer" +} diff --git a/site/public/v1/games/cultist-simulator-the-exile/index.json b/site/public/v1/games/cultist-simulator-the-exile/index.json new file mode 100644 index 000000000000..d635113c27a3 --- /dev/null +++ b/site/public/v1/games/cultist-simulator-the-exile/index.json @@ -0,0 +1,36 @@ +{ + "id": 33137, + "slug": "cultist-simulator-the-exile", + "name": "Cultist Simulator: The Exile", + "release_date": "2020-05-27", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "simulation video game", + "cosmic horror video game", + "card video game" + ], + "stores": [], + "developers": [ + "Weather Factory" + ], + "publishers": [ + "Weather Factory" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q114872401" + ], + "created_at": "2026-07-10T10:10:06.810072", + "updated_at": "2026-07-10T10:10:06.810072", + "url": "/v1/games/cultist-simulator-the-exile" +} diff --git a/site/public/v1/games/cultist-simulator-the-ghoul/index.json b/site/public/v1/games/cultist-simulator-the-ghoul/index.json new file mode 100644 index 000000000000..cefa6ba5cf6c --- /dev/null +++ b/site/public/v1/games/cultist-simulator-the-ghoul/index.json @@ -0,0 +1,36 @@ +{ + "id": 33138, + "slug": "cultist-simulator-the-ghoul", + "name": "Cultist Simulator: The Ghoul", + "release_date": "2019-05-30", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "simulation video game", + "cosmic horror video game", + "card video game" + ], + "stores": [], + "developers": [ + "Weather Factory" + ], + "publishers": [ + "Weather Factory" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q114872396" + ], + "created_at": "2026-07-10T10:10:06.810072", + "updated_at": "2026-07-10T10:10:06.810072", + "url": "/v1/games/cultist-simulator-the-ghoul" +} diff --git a/site/public/v1/games/cultist-simulator-the-priest/index.json b/site/public/v1/games/cultist-simulator-the-priest/index.json new file mode 100644 index 000000000000..0660201a3ed6 --- /dev/null +++ b/site/public/v1/games/cultist-simulator-the-priest/index.json @@ -0,0 +1,36 @@ +{ + "id": 33139, + "slug": "cultist-simulator-the-priest", + "name": "Cultist Simulator: The Priest", + "release_date": "2019-05-30", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "simulation video game", + "cosmic horror video game", + "card video game" + ], + "stores": [], + "developers": [ + "Weather Factory" + ], + "publishers": [ + "Weather Factory" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q114872391" + ], + "created_at": "2026-07-10T10:10:06.810072", + "updated_at": "2026-07-10T10:10:06.810072", + "url": "/v1/games/cultist-simulator-the-priest" +} diff --git a/site/public/v1/games/cultures-die-rache-des-regengottes/index.json b/site/public/v1/games/cultures-die-rache-des-regengottes/index.json new file mode 100644 index 000000000000..46817971a9a5 --- /dev/null +++ b/site/public/v1/games/cultures-die-rache-des-regengottes/index.json @@ -0,0 +1,25 @@ +{ + "id": 33156, + "slug": "cultures-die-rache-des-regengottes", + "name": "Cultures: Die Rache des Regengottes", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123342229" + ], + "created_at": "2026-07-10T10:10:06.815148", + "updated_at": "2026-07-10T10:10:06.815148", + "url": "/v1/games/cultures-die-rache-des-regengottes" +} diff --git a/site/public/v1/games/cuphead-the-delicious-last-course/index.json b/site/public/v1/games/cuphead-the-delicious-last-course/index.json new file mode 100644 index 000000000000..4a101c3084b4 --- /dev/null +++ b/site/public/v1/games/cuphead-the-delicious-last-course/index.json @@ -0,0 +1,35 @@ +{ + "id": 33174, + "slug": "cuphead-the-delicious-last-course", + "name": "Cuphead: The Delicious Last Course", + "release_date": "2022-06-30", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 4", + "macOS", + "Microsoft Windows" + ], + "genres": [ + "run and gun" + ], + "stores": [], + "developers": [ + "Studio MDHR" + ], + "publishers": [ + "Studio MDHR" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110153068" + ], + "created_at": "2026-07-10T10:10:06.819781", + "updated_at": "2026-07-10T10:10:06.819781", + "url": "/v1/games/cuphead-the-delicious-last-course" +} diff --git a/site/public/v1/games/customer-cravings-returns/index.json b/site/public/v1/games/customer-cravings-returns/index.json new file mode 100644 index 000000000000..718d834d1520 --- /dev/null +++ b/site/public/v1/games/customer-cravings-returns/index.json @@ -0,0 +1,25 @@ +{ + "id": 33421, + "slug": "customer-cravings-returns", + "name": "Customer Cravings Returns", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q128014871" + ], + "created_at": "2026-07-10T10:10:06.885854", + "updated_at": "2026-07-10T10:10:06.885854", + "url": "/v1/games/customer-cravings-returns" +} diff --git a/site/public/v1/games/customer-cravings/index.json b/site/public/v1/games/customer-cravings/index.json new file mode 100644 index 000000000000..54b49798770c --- /dev/null +++ b/site/public/v1/games/customer-cravings/index.json @@ -0,0 +1,25 @@ +{ + "id": 33422, + "slug": "customer-cravings", + "name": "Customer Cravings", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q128014870" + ], + "created_at": "2026-07-10T10:10:06.885854", + "updated_at": "2026-07-10T10:10:06.885854", + "url": "/v1/games/customer-cravings" +} diff --git a/site/public/v1/games/customization-pack/index.json b/site/public/v1/games/customization-pack/index.json new file mode 100644 index 000000000000..cf1d69242067 --- /dev/null +++ b/site/public/v1/games/customization-pack/index.json @@ -0,0 +1,27 @@ +{ + "id": 33425, + "slug": "customization-pack", + "name": "Customization Pack", + "release_date": "2013-06-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60607940" + ], + "created_at": "2026-07-10T10:10:06.886857", + "updated_at": "2026-07-10T10:10:06.886857", + "url": "/v1/games/customization-pack" +} diff --git a/site/public/v1/games/cutedressup/index.json b/site/public/v1/games/cutedressup/index.json new file mode 100644 index 000000000000..e06e2d3b1d9a --- /dev/null +++ b/site/public/v1/games/cutedressup/index.json @@ -0,0 +1,25 @@ +{ + "id": 33503, + "slug": "cutedressup", + "name": "Cutedressup", + "release_date": "2018-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115706740" + ], + "created_at": "2026-07-10T10:10:06.909840", + "updated_at": "2026-07-10T10:10:06.909840", + "url": "/v1/games/cutedressup" +} diff --git a/site/public/v1/games/cyber-blades-demo/index.json b/site/public/v1/games/cyber-blades-demo/index.json new file mode 100644 index 000000000000..3afbf82e5408 --- /dev/null +++ b/site/public/v1/games/cyber-blades-demo/index.json @@ -0,0 +1,27 @@ +{ + "id": 33570, + "slug": "cyber-blades-demo", + "name": "Cyber Blades - Demo", + "release_date": "2022-06-29", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123404257" + ], + "created_at": "2026-07-10T10:10:06.927486", + "updated_at": "2026-07-10T10:10:06.927486", + "url": "/v1/games/cyber-blades-demo" +} diff --git a/site/public/v1/games/cyberpunk-2077-ultimate-edition/index.json b/site/public/v1/games/cyberpunk-2077-ultimate-edition/index.json new file mode 100644 index 000000000000..f637c0ccf519 --- /dev/null +++ b/site/public/v1/games/cyberpunk-2077-ultimate-edition/index.json @@ -0,0 +1,36 @@ +{ + "id": 33829, + "slug": "cyberpunk-2077-ultimate-edition", + "name": "Cyberpunk 2077: Ultimate Edition", + "release_date": "2023-12-05", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 5", + "macOS", + "Xbox Series X and Series S", + "Microsoft Windows" + ], + "genres": [ + "action role-playing game" + ], + "stores": [], + "developers": [ + "CD Projekt RED" + ], + "publishers": [ + "CD Projekt" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123508699" + ], + "created_at": "2026-07-10T10:10:07.014315", + "updated_at": "2026-07-10T10:10:07.014315", + "url": "/v1/games/cyberpunk-2077-ultimate-edition" +} diff --git a/site/public/v1/games/d-i-p-r-i-p-warm-up/index.json b/site/public/v1/games/d-i-p-r-i-p-warm-up/index.json new file mode 100644 index 000000000000..8acdf7a8bae1 --- /dev/null +++ b/site/public/v1/games/d-i-p-r-i-p-warm-up/index.json @@ -0,0 +1,29 @@ +{ + "id": 34088, + "slug": "d-i-p-r-i-p-warm-up", + "name": "D.I.P.R.I.P. Warm Up", + "release_date": "2008-03-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "vehicular combat game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11692505" + ], + "created_at": "2026-07-10T10:10:07.084888", + "updated_at": "2026-07-10T10:10:07.084888", + "url": "/v1/games/d-i-p-r-i-p-warm-up" +} diff --git a/site/public/v1/games/d3wasm/index.json b/site/public/v1/games/d3wasm/index.json new file mode 100644 index 000000000000..2316ed40c9b4 --- /dev/null +++ b/site/public/v1/games/d3wasm/index.json @@ -0,0 +1,27 @@ +{ + "id": 34154, + "slug": "d3wasm", + "name": "d3wasm", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "WebAssembly" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124470484" + ], + "created_at": "2026-07-10T10:10:07.102012", + "updated_at": "2026-07-10T10:10:07.102012", + "url": "/v1/games/d3wasm" +} diff --git a/site/public/v1/games/dactyl-joust/index.json b/site/public/v1/games/dactyl-joust/index.json new file mode 100644 index 000000000000..51c04b70367e --- /dev/null +++ b/site/public/v1/games/dactyl-joust/index.json @@ -0,0 +1,29 @@ +{ + "id": 34180, + "slug": "dactyl-joust", + "name": "Dactyl Joust", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Atari Jaguar" + ], + "genres": [ + "action game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q65040606" + ], + "created_at": "2026-07-10T10:10:07.109025", + "updated_at": "2026-07-10T10:10:07.109025", + "url": "/v1/games/dactyl-joust" +} diff --git a/site/public/v1/games/damage-inc/index.json b/site/public/v1/games/damage-inc/index.json new file mode 100644 index 000000000000..a2d228685de1 --- /dev/null +++ b/site/public/v1/games/damage-inc/index.json @@ -0,0 +1,31 @@ +{ + "id": 34359, + "slug": "damage-inc", + "name": "Damage, Inc.", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "action-adventure game" + ], + "stores": [], + "developers": [ + "Black Rock Studio" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137810414" + ], + "created_at": "2026-07-10T10:10:07.155552", + "updated_at": "2026-07-10T10:10:07.155552", + "url": "/v1/games/damage-inc" +} diff --git a/site/public/v1/games/dan-ku-ga/index.json b/site/public/v1/games/dan-ku-ga/index.json new file mode 100644 index 000000000000..c3fd6b022c0f --- /dev/null +++ b/site/public/v1/games/dan-ku-ga/index.json @@ -0,0 +1,31 @@ +{ + "id": 34413, + "slug": "dan-ku-ga", + "name": "Dan-Ku-Ga", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "arcade video game machine" + ], + "genres": [ + "2D fighting game" + ], + "stores": [], + "developers": [ + "Taito" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140003895" + ], + "created_at": "2026-07-10T10:10:07.174579", + "updated_at": "2026-07-10T10:10:07.174579", + "url": "/v1/games/dan-ku-ga" +} diff --git a/site/public/v1/games/dance-contest/index.json b/site/public/v1/games/dance-contest/index.json new file mode 100644 index 000000000000..80112f52b534 --- /dev/null +++ b/site/public/v1/games/dance-contest/index.json @@ -0,0 +1,29 @@ +{ + "id": 34436, + "slug": "dance-contest", + "name": "Dance Contest", + "release_date": "2009-01-15", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "web browser" + ], + "genres": [ + "rhythm game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125721869" + ], + "created_at": "2026-07-10T10:10:07.180708", + "updated_at": "2026-07-10T10:10:07.180708", + "url": "/v1/games/dance-contest" +} diff --git a/site/public/v1/games/dandara-trials-of-fear/index.json b/site/public/v1/games/dandara-trials-of-fear/index.json new file mode 100644 index 000000000000..989027a5bde6 --- /dev/null +++ b/site/public/v1/games/dandara-trials-of-fear/index.json @@ -0,0 +1,29 @@ +{ + "id": 34574, + "slug": "dandara-trials-of-fear", + "name": "Dandara: Trials of Fear+", + "release_date": "2021-12-03", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "iPadOS", + "tvOS", + "iOS" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109562534" + ], + "created_at": "2026-07-10T10:10:07.213134", + "updated_at": "2026-07-10T10:10:07.213134", + "url": "/v1/games/dandara-trials-of-fear" +} diff --git a/site/public/v1/games/dandy-s-world/index.json b/site/public/v1/games/dandy-s-world/index.json new file mode 100644 index 000000000000..e6be0d691db0 --- /dev/null +++ b/site/public/v1/games/dandy-s-world/index.json @@ -0,0 +1,29 @@ +{ + "id": 34588, + "slug": "dandy-s-world", + "name": "Dandy's World", + "release_date": "2024-06-14", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "escape room video game", + "survival game", + "mascot horror video game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134543689" + ], + "created_at": "2026-07-10T10:10:07.216699", + "updated_at": "2026-07-10T10:10:07.216699", + "url": "/v1/games/dandy-s-world" +} diff --git a/site/public/v1/games/danganronpa-1-2-v3/index.json b/site/public/v1/games/danganronpa-1-2-v3/index.json new file mode 100644 index 000000000000..d4b69edea068 --- /dev/null +++ b/site/public/v1/games/danganronpa-1-2-v3/index.json @@ -0,0 +1,28 @@ +{ + "id": 34593, + "slug": "danganronpa-1-2-v3", + "name": "Danganronpa 1/2/V3", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q104774608" + ], + "created_at": "2026-07-10T10:10:07.217769", + "updated_at": "2026-07-10T10:10:07.217769", + "url": "/v1/games/danganronpa-1-2-v3" +} diff --git a/site/public/v1/games/danganronpa-1-2/index.json b/site/public/v1/games/danganronpa-1-2/index.json new file mode 100644 index 000000000000..2b7f69818135 --- /dev/null +++ b/site/public/v1/games/danganronpa-1-2/index.json @@ -0,0 +1,28 @@ +{ + "id": 34594, + "slug": "danganronpa-1-2", + "name": "Danganronpa 1 + 2", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q104774675" + ], + "created_at": "2026-07-10T10:10:07.217769", + "updated_at": "2026-07-10T10:10:07.217769", + "url": "/v1/games/danganronpa-1-2" +} diff --git a/site/public/v1/games/danganronpa-2-goodbye-despair-anniversary-edition/index.json b/site/public/v1/games/danganronpa-2-goodbye-despair-anniversary-edition/index.json new file mode 100644 index 000000000000..f81757c319af --- /dev/null +++ b/site/public/v1/games/danganronpa-2-goodbye-despair-anniversary-edition/index.json @@ -0,0 +1,32 @@ +{ + "id": 34596, + "slug": "danganronpa-2-goodbye-despair-anniversary-edition", + "name": "Danganronpa 2: Goodbye Despair Anniversary Edition", + "release_date": "2022-05-10", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Spike Chunsoft" + ], + "publishers": [ + "Spike Chunsoft" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112116144" + ], + "created_at": "2026-07-10T10:10:07.218788", + "updated_at": "2026-07-10T10:10:07.218788", + "url": "/v1/games/danganronpa-2-goodbye-despair-anniversary-edition" +} diff --git a/site/public/v1/games/danganronpa-trigger-happy-havoc-anniversary-edition/index.json b/site/public/v1/games/danganronpa-trigger-happy-havoc-anniversary-edition/index.json new file mode 100644 index 000000000000..f656816e5296 --- /dev/null +++ b/site/public/v1/games/danganronpa-trigger-happy-havoc-anniversary-edition/index.json @@ -0,0 +1,34 @@ +{ + "id": 34603, + "slug": "danganronpa-trigger-happy-havoc-anniversary-edition", + "name": "Danganronpa: Trigger Happy Havoc Anniversary Edition", + "release_date": "2020-05-20", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "iPadOS", + "Xbox Series X and Series S", + "iOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Spike Chunsoft" + ], + "publishers": [ + "Spike Chunsoft" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110612415" + ], + "created_at": "2026-07-10T10:10:07.220708", + "updated_at": "2026-07-10T10:10:07.220708", + "url": "/v1/games/danganronpa-trigger-happy-havoc-anniversary-edition" +} diff --git a/site/public/v1/games/danganronpa-v3-killing-harmony-anniversary-edition/index.json b/site/public/v1/games/danganronpa-v3-killing-harmony-anniversary-edition/index.json new file mode 100644 index 000000000000..fcc5f46d12f8 --- /dev/null +++ b/site/public/v1/games/danganronpa-v3-killing-harmony-anniversary-edition/index.json @@ -0,0 +1,32 @@ +{ + "id": 34606, + "slug": "danganronpa-v3-killing-harmony-anniversary-edition", + "name": "Danganronpa V3: Killing Harmony Anniversary Edition", + "release_date": "2021-12-03", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Spike Chunsoft" + ], + "publishers": [ + "Spike Chunsoft" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116265823" + ], + "created_at": "2026-07-10T10:10:07.220708", + "updated_at": "2026-07-10T10:10:07.220708", + "url": "/v1/games/danganronpa-v3-killing-harmony-anniversary-edition" +} diff --git a/site/public/v1/games/dangeresque-3-the-criminal-projective/index.json b/site/public/v1/games/dangeresque-3-the-criminal-projective/index.json new file mode 100644 index 000000000000..445a77a31022 --- /dev/null +++ b/site/public/v1/games/dangeresque-3-the-criminal-projective/index.json @@ -0,0 +1,35 @@ +{ + "id": 34655, + "slug": "dangeresque-3-the-criminal-projective", + "name": "Dangeresque 3: The Criminal Projective", + "release_date": "2008-11-17", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 3", + "Wii", + "Microsoft Windows" + ], + "genres": [ + "graphic adventure game" + ], + "stores": [], + "developers": [ + "Telltale Games" + ], + "publishers": [ + "Telltale Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135448931" + ], + "created_at": "2026-07-10T10:10:07.233803", + "updated_at": "2026-07-10T10:10:07.233803", + "url": "/v1/games/dangeresque-3-the-criminal-projective" +} diff --git a/site/public/v1/games/daredevil-the-man-without-fear/index.json b/site/public/v1/games/daredevil-the-man-without-fear/index.json new file mode 100644 index 000000000000..76c065268032 --- /dev/null +++ b/site/public/v1/games/daredevil-the-man-without-fear/index.json @@ -0,0 +1,29 @@ +{ + "id": 34767, + "slug": "daredevil-the-man-without-fear", + "name": "Daredevil: The Man Without Fear", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Encore, Inc." + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q64764490" + ], + "created_at": "2026-07-10T10:10:07.263889", + "updated_at": "2026-07-10T10:10:07.263889", + "url": "/v1/games/daredevil-the-man-without-fear" +} diff --git a/site/public/v1/games/dark-age-of-camelot-darkness-rising/index.json b/site/public/v1/games/dark-age-of-camelot-darkness-rising/index.json new file mode 100644 index 000000000000..8804b3553b1d --- /dev/null +++ b/site/public/v1/games/dark-age-of-camelot-darkness-rising/index.json @@ -0,0 +1,25 @@ +{ + "id": 34798, + "slug": "dark-age-of-camelot-darkness-rising", + "name": "Dark Age of Camelot: Darkness Rising", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131583523" + ], + "created_at": "2026-07-10T10:10:07.271870", + "updated_at": "2026-07-10T10:10:07.271870", + "url": "/v1/games/dark-age-of-camelot-darkness-rising" +} diff --git a/site/public/v1/games/dark-age-of-camelot-shrouded-isles/index.json b/site/public/v1/games/dark-age-of-camelot-shrouded-isles/index.json new file mode 100644 index 000000000000..8506243ca57e --- /dev/null +++ b/site/public/v1/games/dark-age-of-camelot-shrouded-isles/index.json @@ -0,0 +1,25 @@ +{ + "id": 34800, + "slug": "dark-age-of-camelot-shrouded-isles", + "name": "Dark Age of Camelot: Shrouded Isles", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131583527" + ], + "created_at": "2026-07-10T10:10:07.272872", + "updated_at": "2026-07-10T10:10:07.272872", + "url": "/v1/games/dark-age-of-camelot-shrouded-isles" +} diff --git a/site/public/v1/games/dark-age-of-camelot-trials-of-atlantis/index.json b/site/public/v1/games/dark-age-of-camelot-trials-of-atlantis/index.json new file mode 100644 index 000000000000..af25ad56f495 --- /dev/null +++ b/site/public/v1/games/dark-age-of-camelot-trials-of-atlantis/index.json @@ -0,0 +1,25 @@ +{ + "id": 34801, + "slug": "dark-age-of-camelot-trials-of-atlantis", + "name": "Dark Age of Camelot: Trials of Atlantis", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123986416" + ], + "created_at": "2026-07-10T10:10:07.272872", + "updated_at": "2026-07-10T10:10:07.272872", + "url": "/v1/games/dark-age-of-camelot-trials-of-atlantis" +} diff --git a/site/public/v1/games/dark-burial-enhanced-edition/index.json b/site/public/v1/games/dark-burial-enhanced-edition/index.json new file mode 100644 index 000000000000..7a5261abc8e1 --- /dev/null +++ b/site/public/v1/games/dark-burial-enhanced-edition/index.json @@ -0,0 +1,31 @@ +{ + "id": 34840, + "slug": "dark-burial-enhanced-edition", + "name": "Dark Burial: Enhanced Edition", + "release_date": "2023-02-17", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S" + ], + "genres": [ + "puzzle-platformer" + ], + "stores": [], + "developers": [], + "publishers": [ + "Desert Water Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120826091" + ], + "created_at": "2026-07-10T10:10:07.282893", + "updated_at": "2026-07-10T10:10:07.282893", + "url": "/v1/games/dark-burial-enhanced-edition" +} diff --git a/site/public/v1/games/dark-colony-the-council-wars/index.json b/site/public/v1/games/dark-colony-the-council-wars/index.json new file mode 100644 index 000000000000..bc65e49b0869 --- /dev/null +++ b/site/public/v1/games/dark-colony-the-council-wars/index.json @@ -0,0 +1,25 @@ +{ + "id": 34861, + "slug": "dark-colony-the-council-wars", + "name": "Dark Colony: The Council Wars", + "release_date": "1998-01-08", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105814541" + ], + "created_at": "2026-07-10T10:10:07.287860", + "updated_at": "2026-07-10T10:10:07.287860", + "url": "/v1/games/dark-colony-the-council-wars" +} diff --git a/site/public/v1/games/dark-earth-vienna-calling/index.json b/site/public/v1/games/dark-earth-vienna-calling/index.json new file mode 100644 index 000000000000..cfd873c9a7b2 --- /dev/null +++ b/site/public/v1/games/dark-earth-vienna-calling/index.json @@ -0,0 +1,27 @@ +{ + "id": 34916, + "slug": "dark-earth-vienna-calling", + "name": "Dark Earth: Vienna Calling", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [ + "Homegrown Games" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q114600185" + ], + "created_at": "2026-07-10T10:10:07.302985", + "updated_at": "2026-07-10T10:10:07.302985", + "url": "/v1/games/dark-earth-vienna-calling" +} diff --git a/site/public/v1/games/dark-messiah-of-might-magic-singleplayer-demo/index.json b/site/public/v1/games/dark-messiah-of-might-magic-singleplayer-demo/index.json new file mode 100644 index 000000000000..e786456a0810 --- /dev/null +++ b/site/public/v1/games/dark-messiah-of-might-magic-singleplayer-demo/index.json @@ -0,0 +1,32 @@ +{ + "id": 35046, + "slug": "dark-messiah-of-might-magic-singleplayer-demo", + "name": "Dark Messiah of Might & Magic Singleplayer Demo", + "release_date": "2006-09-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "action role-playing game", + "fantasy video game" + ], + "stores": [], + "developers": [ + "Arkane Studios" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122705479" + ], + "created_at": "2026-07-10T10:10:07.336665", + "updated_at": "2026-07-10T10:10:07.336665", + "url": "/v1/games/dark-messiah-of-might-magic-singleplayer-demo" +} diff --git a/site/public/v1/games/dark-skyes/index.json b/site/public/v1/games/dark-skyes/index.json new file mode 100644 index 000000000000..75423dd3a871 --- /dev/null +++ b/site/public/v1/games/dark-skyes/index.json @@ -0,0 +1,31 @@ +{ + "id": 35184, + "slug": "dark-skyes", + "name": "Dark Skyes", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "role-playing video game", + "dating sim" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111725372" + ], + "created_at": "2026-07-10T10:10:07.371669", + "updated_at": "2026-07-10T10:10:07.371669", + "url": "/v1/games/dark-skyes" +} diff --git a/site/public/v1/games/dark-souls-artorias-of-the-abyss/index.json b/site/public/v1/games/dark-souls-artorias-of-the-abyss/index.json new file mode 100644 index 000000000000..f608e18ab7dc --- /dev/null +++ b/site/public/v1/games/dark-souls-artorias-of-the-abyss/index.json @@ -0,0 +1,27 @@ +{ + "id": 35186, + "slug": "dark-souls-artorias-of-the-abyss", + "name": "Dark Souls: Artorias of the Abyss", + "release_date": "2012-08-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 3" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q50296391" + ], + "created_at": "2026-07-10T10:10:07.371669", + "updated_at": "2026-07-10T10:10:07.371669", + "url": "/v1/games/dark-souls-artorias-of-the-abyss" +} diff --git a/site/public/v1/games/dark-souls-ii-crown-of-the-ivory-king/index.json b/site/public/v1/games/dark-souls-ii-crown-of-the-ivory-king/index.json new file mode 100644 index 000000000000..70e8feff09b4 --- /dev/null +++ b/site/public/v1/games/dark-souls-ii-crown-of-the-ivory-king/index.json @@ -0,0 +1,25 @@ +{ + "id": 35187, + "slug": "dark-souls-ii-crown-of-the-ivory-king", + "name": "Dark Souls II: Crown of the Ivory King", + "release_date": "2014-09-30", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q102277574" + ], + "created_at": "2026-07-10T10:10:07.372680", + "updated_at": "2026-07-10T10:10:07.372680", + "url": "/v1/games/dark-souls-ii-crown-of-the-ivory-king" +} diff --git a/site/public/v1/games/dark-souls-ii-crown-of-the-old-iron-king/index.json b/site/public/v1/games/dark-souls-ii-crown-of-the-old-iron-king/index.json new file mode 100644 index 000000000000..e6b67b50f2c8 --- /dev/null +++ b/site/public/v1/games/dark-souls-ii-crown-of-the-old-iron-king/index.json @@ -0,0 +1,25 @@ +{ + "id": 35188, + "slug": "dark-souls-ii-crown-of-the-old-iron-king", + "name": "Dark Souls II: Crown of the Old Iron King", + "release_date": "2014-08-26", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q102277371" + ], + "created_at": "2026-07-10T10:10:07.372680", + "updated_at": "2026-07-10T10:10:07.372680", + "url": "/v1/games/dark-souls-ii-crown-of-the-old-iron-king" +} diff --git a/site/public/v1/games/dark-souls-ii-crown-of-the-sunken-king/index.json b/site/public/v1/games/dark-souls-ii-crown-of-the-sunken-king/index.json new file mode 100644 index 000000000000..56ac86bd0aff --- /dev/null +++ b/site/public/v1/games/dark-souls-ii-crown-of-the-sunken-king/index.json @@ -0,0 +1,25 @@ +{ + "id": 35189, + "slug": "dark-souls-ii-crown-of-the-sunken-king", + "name": "Dark Souls II: Crown of the Sunken King", + "release_date": "2014-07-22", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q102277373" + ], + "created_at": "2026-07-10T10:10:07.372680", + "updated_at": "2026-07-10T10:10:07.372680", + "url": "/v1/games/dark-souls-ii-crown-of-the-sunken-king" +} diff --git a/site/public/v1/games/dark-souls-iii-ashes-of-ariandel/index.json b/site/public/v1/games/dark-souls-iii-ashes-of-ariandel/index.json new file mode 100644 index 000000000000..4ec58a1dd2d6 --- /dev/null +++ b/site/public/v1/games/dark-souls-iii-ashes-of-ariandel/index.json @@ -0,0 +1,31 @@ +{ + "id": 35192, + "slug": "dark-souls-iii-ashes-of-ariandel", + "name": "Dark Souls III: Ashes of Ariandel", + "release_date": "2016-10-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "FromSoftware" + ], + "publishers": [ + "FromSoftware" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113283443" + ], + "created_at": "2026-07-10T10:10:07.373661", + "updated_at": "2026-07-10T10:10:07.373661", + "url": "/v1/games/dark-souls-iii-ashes-of-ariandel" +} diff --git a/site/public/v1/games/dark-souls-iii-the-ringed-city/index.json b/site/public/v1/games/dark-souls-iii-the-ringed-city/index.json new file mode 100644 index 000000000000..9c20216492a7 --- /dev/null +++ b/site/public/v1/games/dark-souls-iii-the-ringed-city/index.json @@ -0,0 +1,29 @@ +{ + "id": 35193, + "slug": "dark-souls-iii-the-ringed-city", + "name": "Dark Souls III: The Ringed City", + "release_date": "2017-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "action role-playing game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q55381943" + ], + "created_at": "2026-07-10T10:10:07.373661", + "updated_at": "2026-07-10T10:10:07.373661", + "url": "/v1/games/dark-souls-iii-the-ringed-city" +} diff --git a/site/public/v1/games/dark-souls-prepare-to-die-edition/index.json b/site/public/v1/games/dark-souls-prepare-to-die-edition/index.json new file mode 100644 index 000000000000..34371b735bf5 --- /dev/null +++ b/site/public/v1/games/dark-souls-prepare-to-die-edition/index.json @@ -0,0 +1,25 @@ +{ + "id": 35195, + "slug": "dark-souls-prepare-to-die-edition", + "name": "Dark Souls: Prepare to Die Edition", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131905970" + ], + "created_at": "2026-07-10T10:10:07.374652", + "updated_at": "2026-07-10T10:10:07.374652", + "url": "/v1/games/dark-souls-prepare-to-die-edition" +} diff --git a/site/public/v1/games/dark-souls-trilogy/index.json b/site/public/v1/games/dark-souls-trilogy/index.json new file mode 100644 index 000000000000..f5ec290b7e7d --- /dev/null +++ b/site/public/v1/games/dark-souls-trilogy/index.json @@ -0,0 +1,29 @@ +{ + "id": 35197, + "slug": "dark-souls-trilogy", + "name": "Dark Souls Trilogy", + "release_date": "2018-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 4" + ], + "genres": [ + "action role-playing game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q56240222" + ], + "created_at": "2026-07-10T10:10:07.374652", + "updated_at": "2026-07-10T10:10:07.374652", + "url": "/v1/games/dark-souls-trilogy" +} diff --git a/site/public/v1/games/darkstalkers-resurrection/index.json b/site/public/v1/games/darkstalkers-resurrection/index.json new file mode 100644 index 000000000000..20c3439360ca --- /dev/null +++ b/site/public/v1/games/darkstalkers-resurrection/index.json @@ -0,0 +1,33 @@ +{ + "id": 35393, + "slug": "darkstalkers-resurrection", + "name": "Darkstalkers Resurrection", + "release_date": "2013-03-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 3" + ], + "genres": [ + "fighting game" + ], + "stores": [], + "developers": [ + "Iron Galaxy Studios" + ], + "publishers": [ + "Capcom" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5223795" + ], + "created_at": "2026-07-10T10:10:07.425177", + "updated_at": "2026-07-10T10:10:07.425177", + "url": "/v1/games/darkstalkers-resurrection" +} diff --git a/site/public/v1/games/darq-ultimate-edition/index.json b/site/public/v1/games/darq-ultimate-edition/index.json new file mode 100644 index 000000000000..be9299ebbfff --- /dev/null +++ b/site/public/v1/games/darq-ultimate-edition/index.json @@ -0,0 +1,33 @@ +{ + "id": 35428, + "slug": "darq-ultimate-edition", + "name": "Darq Ultimate Edition", + "release_date": "2023-03-03", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 5", + "PlayStation 4" + ], + "genres": [], + "stores": [], + "developers": [ + "Unfold Games" + ], + "publishers": [ + "Feardemic" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122428286" + ], + "created_at": "2026-07-10T10:10:07.441189", + "updated_at": "2026-07-10T10:10:07.441189", + "url": "/v1/games/darq-ultimate-edition" +} diff --git a/site/public/v1/games/darwinia-demo/index.json b/site/public/v1/games/darwinia-demo/index.json new file mode 100644 index 000000000000..c1d7d063db6d --- /dev/null +++ b/site/public/v1/games/darwinia-demo/index.json @@ -0,0 +1,35 @@ +{ + "id": 35452, + "slug": "darwinia-demo", + "name": "Darwinia Demo", + "release_date": "2005-07-14", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "shoot 'em up", + "wargame", + "tactical role-playing game" + ], + "stores": [], + "developers": [ + "Introversion Software" + ], + "publishers": [ + "Introversion Software" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122705023" + ], + "created_at": "2026-07-10T10:10:07.447180", + "updated_at": "2026-07-10T10:10:07.447180", + "url": "/v1/games/darwinia-demo" +} diff --git a/site/public/v1/games/darwinia-q123046128/index.json b/site/public/v1/games/darwinia-q123046128/index.json new file mode 100644 index 000000000000..9344d1a56ef3 --- /dev/null +++ b/site/public/v1/games/darwinia-q123046128/index.json @@ -0,0 +1,25 @@ +{ + "id": 35453, + "slug": "darwinia-q123046128", + "name": "Darwinia+", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123046128" + ], + "created_at": "2026-07-10T10:10:07.447180", + "updated_at": "2026-07-10T10:10:07.447180", + "url": "/v1/games/darwinia-q123046128" +} diff --git a/site/public/v1/games/data-east-arcade-classics/index.json b/site/public/v1/games/data-east-arcade-classics/index.json new file mode 100644 index 000000000000..fbb4dbb49741 --- /dev/null +++ b/site/public/v1/games/data-east-arcade-classics/index.json @@ -0,0 +1,31 @@ +{ + "id": 35534, + "slug": "data-east-arcade-classics", + "name": "Data East Arcade Classics", + "release_date": "2010-02-19", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Wii" + ], + "genres": [], + "stores": [], + "developers": [ + "G1M2" + ], + "publishers": [ + "Majesco Entertainment" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5227162" + ], + "created_at": "2026-07-10T10:10:07.469235", + "updated_at": "2026-07-10T10:10:07.469235", + "url": "/v1/games/data-east-arcade-classics" +} diff --git a/site/public/v1/games/dataran-tanjung-mas/index.json b/site/public/v1/games/dataran-tanjung-mas/index.json new file mode 100644 index 000000000000..5934c7158a27 --- /dev/null +++ b/site/public/v1/games/dataran-tanjung-mas/index.json @@ -0,0 +1,28 @@ +{ + "id": 35562, + "slug": "dataran-tanjung-mas", + "name": "Dataran Tanjung Mas", + "release_date": "2023-10-14", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123193058" + ], + "created_at": "2026-07-10T10:10:07.475171", + "updated_at": "2026-07-10T10:10:07.475171", + "url": "/v1/games/dataran-tanjung-mas" +} diff --git a/site/public/v1/games/daughter-of-shadows-an-scp-breach-event-friend-and-foe-expansion/index.json b/site/public/v1/games/daughter-of-shadows-an-scp-breach-event-friend-and-foe-expansion/index.json new file mode 100644 index 000000000000..14eaeee26ad9 --- /dev/null +++ b/site/public/v1/games/daughter-of-shadows-an-scp-breach-event-friend-and-foe-expansion/index.json @@ -0,0 +1,33 @@ +{ + "id": 35615, + "slug": "daughter-of-shadows-an-scp-breach-event-friend-and-foe-expansion", + "name": "Daughter of Shadows: An SCP Breach Event - Friend and Foe Expansion", + "release_date": "2016-08-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "supernatural horror game" + ], + "stores": [], + "developers": [ + "Blackrose Industries" + ], + "publishers": [ + "Blackrose Industries" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107371284" + ], + "created_at": "2026-07-10T10:10:07.491215", + "updated_at": "2026-07-10T10:10:07.491215", + "url": "/v1/games/daughter-of-shadows-an-scp-breach-event-friend-and-foe-expansion" +} diff --git a/site/public/v1/games/dave-the-diver-godzilla/index.json b/site/public/v1/games/dave-the-diver-godzilla/index.json new file mode 100644 index 000000000000..442faab47cc0 --- /dev/null +++ b/site/public/v1/games/dave-the-diver-godzilla/index.json @@ -0,0 +1,34 @@ +{ + "id": 35628, + "slug": "dave-the-diver-godzilla", + "name": "Dave the Diver: Godzilla", + "release_date": "2024-05-23", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 5", + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "action-adventure game" + ], + "stores": [], + "developers": [], + "publishers": [ + "Nexon" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124426125" + ], + "created_at": "2026-07-10T10:10:07.494112", + "updated_at": "2026-07-10T10:10:07.494112", + "url": "/v1/games/dave-the-diver-godzilla" +} diff --git a/site/public/v1/games/dawnseekers/index.json b/site/public/v1/games/dawnseekers/index.json new file mode 100644 index 000000000000..17bb8e488f8c --- /dev/null +++ b/site/public/v1/games/dawnseekers/index.json @@ -0,0 +1,35 @@ +{ + "id": 35736, + "slug": "dawnseekers", + "name": "Dawnseekers", + "release_date": "2009-08-21", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Nintendo DS" + ], + "genres": [ + "first-person shooter" + ], + "stores": [], + "developers": [ + "Lobo", + "smealum" + ], + "publishers": [ + "smealum", + "Lobo" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123264915" + ], + "created_at": "2026-07-10T10:10:07.523933", + "updated_at": "2026-07-10T10:10:07.523933", + "url": "/v1/games/dawnseekers" +} diff --git a/site/public/v1/games/dayz-frostline/index.json b/site/public/v1/games/dayz-frostline/index.json new file mode 100644 index 000000000000..baeb0feb7bf3 --- /dev/null +++ b/site/public/v1/games/dayz-frostline/index.json @@ -0,0 +1,31 @@ +{ + "id": 35859, + "slug": "dayz-frostline", + "name": "DayZ Frostline", + "release_date": "2024-10-15", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Bohemia Interactive" + ], + "publishers": [ + "Bohemia Interactive" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130651820" + ], + "created_at": "2026-07-10T10:10:07.566893", + "updated_at": "2026-07-10T10:10:07.566893", + "url": "/v1/games/dayz-frostline" +} diff --git a/site/public/v1/games/dcs-a-10a-warthog/index.json b/site/public/v1/games/dcs-a-10a-warthog/index.json new file mode 100644 index 000000000000..0e3d5ea4fbd1 --- /dev/null +++ b/site/public/v1/games/dcs-a-10a-warthog/index.json @@ -0,0 +1,31 @@ +{ + "id": 35874, + "slug": "dcs-a-10a-warthog", + "name": "DCS: A-10A Warthog", + "release_date": "2013-08-19", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Eagle Dynamics" + ], + "publishers": [ + "Eagle Dynamics" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097346" + ], + "created_at": "2026-07-10T10:10:07.579891", + "updated_at": "2026-07-10T10:10:07.579891", + "url": "/v1/games/dcs-a-10a-warthog" +} diff --git a/site/public/v1/games/dcs-a-10c-ii-iron-flag-part-1-campaign/index.json b/site/public/v1/games/dcs-a-10c-ii-iron-flag-part-1-campaign/index.json new file mode 100644 index 000000000000..87e0d771c05e --- /dev/null +++ b/site/public/v1/games/dcs-a-10c-ii-iron-flag-part-1-campaign/index.json @@ -0,0 +1,29 @@ +{ + "id": 35875, + "slug": "dcs-a-10c-ii-iron-flag-part-1-campaign", + "name": "DCS: A-10C II Iron Flag Part 1 Campaign", + "release_date": "2022-01-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Eagle Dynamics" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097631" + ], + "created_at": "2026-07-10T10:10:07.580841", + "updated_at": "2026-07-10T10:10:07.580841", + "url": "/v1/games/dcs-a-10c-ii-iron-flag-part-1-campaign" +} diff --git a/site/public/v1/games/dcs-a-10c-ii-operation-persian-freedom-campaign/index.json b/site/public/v1/games/dcs-a-10c-ii-operation-persian-freedom-campaign/index.json new file mode 100644 index 000000000000..62335ca37bbd --- /dev/null +++ b/site/public/v1/games/dcs-a-10c-ii-operation-persian-freedom-campaign/index.json @@ -0,0 +1,29 @@ +{ + "id": 35876, + "slug": "dcs-a-10c-ii-operation-persian-freedom-campaign", + "name": "DCS: A-10C II Operation Persian Freedom Campaign", + "release_date": "2021-05-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Eagle Dynamics" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097620" + ], + "created_at": "2026-07-10T10:10:07.580841", + "updated_at": "2026-07-10T10:10:07.580841", + "url": "/v1/games/dcs-a-10c-ii-operation-persian-freedom-campaign" +} diff --git a/site/public/v1/games/dcs-a-10c-ii-tank-killer/index.json b/site/public/v1/games/dcs-a-10c-ii-tank-killer/index.json new file mode 100644 index 000000000000..46246aa09f02 --- /dev/null +++ b/site/public/v1/games/dcs-a-10c-ii-tank-killer/index.json @@ -0,0 +1,31 @@ +{ + "id": 35877, + "slug": "dcs-a-10c-ii-tank-killer", + "name": "DCS: A-10C II Tank Killer", + "release_date": "2020-09-30", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Eagle Dynamics" + ], + "publishers": [ + "Eagle Dynamics" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097448" + ], + "created_at": "2026-07-10T10:10:07.581894", + "updated_at": "2026-07-10T10:10:07.581894", + "url": "/v1/games/dcs-a-10c-ii-tank-killer" +} diff --git a/site/public/v1/games/dcs-a-10c-operation-agile-spear-campaign/index.json b/site/public/v1/games/dcs-a-10c-operation-agile-spear-campaign/index.json new file mode 100644 index 000000000000..a95c4f817302 --- /dev/null +++ b/site/public/v1/games/dcs-a-10c-operation-agile-spear-campaign/index.json @@ -0,0 +1,29 @@ +{ + "id": 35878, + "slug": "dcs-a-10c-operation-agile-spear-campaign", + "name": "DCS: A-10C Operation Agile Spear Campaign", + "release_date": "2022-04-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Eagle Dynamics" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097636" + ], + "created_at": "2026-07-10T10:10:07.581894", + "updated_at": "2026-07-10T10:10:07.581894", + "url": "/v1/games/dcs-a-10c-operation-agile-spear-campaign" +} diff --git a/site/public/v1/games/dcs-a-10c-warthog-the-enemy-within-3-0-campaign/index.json b/site/public/v1/games/dcs-a-10c-warthog-the-enemy-within-3-0-campaign/index.json new file mode 100644 index 000000000000..59e597e0cf87 --- /dev/null +++ b/site/public/v1/games/dcs-a-10c-warthog-the-enemy-within-3-0-campaign/index.json @@ -0,0 +1,29 @@ +{ + "id": 35879, + "slug": "dcs-a-10c-warthog-the-enemy-within-3-0-campaign", + "name": "DCS: A-10C Warthog - The Enemy Within 3.0 Campaign", + "release_date": "2019-04-10", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Eagle Dynamics" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097579" + ], + "created_at": "2026-07-10T10:10:07.582896", + "updated_at": "2026-07-10T10:10:07.582896", + "url": "/v1/games/dcs-a-10c-warthog-the-enemy-within-3-0-campaign" +} diff --git a/site/public/v1/games/dcs-ah-64d/index.json b/site/public/v1/games/dcs-ah-64d/index.json new file mode 100644 index 000000000000..add3c169c642 --- /dev/null +++ b/site/public/v1/games/dcs-ah-64d/index.json @@ -0,0 +1,31 @@ +{ + "id": 35881, + "slug": "dcs-ah-64d", + "name": "DCS: AH-64D", + "release_date": "2022-03-17", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Eagle Dynamics" + ], + "publishers": [ + "Eagle Dynamics" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097457" + ], + "created_at": "2026-07-10T10:10:07.582896", + "updated_at": "2026-07-10T10:10:07.582896", + "url": "/v1/games/dcs-ah-64d" +} diff --git a/site/public/v1/games/dcs-ajs-37-viggen/index.json b/site/public/v1/games/dcs-ajs-37-viggen/index.json new file mode 100644 index 000000000000..b2d00ef9d834 --- /dev/null +++ b/site/public/v1/games/dcs-ajs-37-viggen/index.json @@ -0,0 +1,29 @@ +{ + "id": 35882, + "slug": "dcs-ajs-37-viggen", + "name": "DCS: AJS-37 Viggen", + "release_date": "2017-11-02", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Eagle Dynamics" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097544" + ], + "created_at": "2026-07-10T10:10:07.583878", + "updated_at": "2026-07-10T10:10:07.583878", + "url": "/v1/games/dcs-ajs-37-viggen" +} diff --git a/site/public/v1/games/dcs-av-8b-hormuz-freedom-campaign/index.json b/site/public/v1/games/dcs-av-8b-hormuz-freedom-campaign/index.json new file mode 100644 index 000000000000..49d0a7ef93ac --- /dev/null +++ b/site/public/v1/games/dcs-av-8b-hormuz-freedom-campaign/index.json @@ -0,0 +1,31 @@ +{ + "id": 35883, + "slug": "dcs-av-8b-hormuz-freedom-campaign", + "name": "DCS: AV-8B Hormuz Freedom Campaign", + "release_date": "2022-03-30", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Eagle Dynamics" + ], + "publishers": [ + "Eagle Dynamics" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097464" + ], + "created_at": "2026-07-10T10:10:07.583878", + "updated_at": "2026-07-10T10:10:07.583878", + "url": "/v1/games/dcs-av-8b-hormuz-freedom-campaign" +} diff --git a/site/public/v1/games/dcs-av-8b-kerman-campaign-by-ground-pounder-sims/index.json b/site/public/v1/games/dcs-av-8b-kerman-campaign-by-ground-pounder-sims/index.json new file mode 100644 index 000000000000..42e25b25e40f --- /dev/null +++ b/site/public/v1/games/dcs-av-8b-kerman-campaign-by-ground-pounder-sims/index.json @@ -0,0 +1,29 @@ +{ + "id": 35884, + "slug": "dcs-av-8b-kerman-campaign-by-ground-pounder-sims", + "name": "DCS: AV-8B Kerman Campaign by Ground Pounder Sims", + "release_date": "2023-03-10", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Eagle Dynamics" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097655" + ], + "created_at": "2026-07-10T10:10:07.583878", + "updated_at": "2026-07-10T10:10:07.583878", + "url": "/v1/games/dcs-av-8b-kerman-campaign-by-ground-pounder-sims" +} diff --git a/site/public/v1/games/dcs-av-8b-night-attack-v-stol/index.json b/site/public/v1/games/dcs-av-8b-night-attack-v-stol/index.json new file mode 100644 index 000000000000..985f5c9d294d --- /dev/null +++ b/site/public/v1/games/dcs-av-8b-night-attack-v-stol/index.json @@ -0,0 +1,29 @@ +{ + "id": 35885, + "slug": "dcs-av-8b-night-attack-v-stol", + "name": "DCS: AV-8B Night Attack V/STOL", + "release_date": "2017-12-21", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Eagle Dynamics" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097567" + ], + "created_at": "2026-07-10T10:10:07.584868", + "updated_at": "2026-07-10T10:10:07.584868", + "url": "/v1/games/dcs-av-8b-night-attack-v-stol" +} diff --git a/site/public/v1/games/dcs-av-8b-sky-warrior-campaign/index.json b/site/public/v1/games/dcs-av-8b-sky-warrior-campaign/index.json new file mode 100644 index 000000000000..70a532794ac6 --- /dev/null +++ b/site/public/v1/games/dcs-av-8b-sky-warrior-campaign/index.json @@ -0,0 +1,29 @@ +{ + "id": 35886, + "slug": "dcs-av-8b-sky-warrior-campaign", + "name": "DCS: AV-8B Sky Warrior Campaign", + "release_date": "2021-01-30", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Eagle Dynamics" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097600" + ], + "created_at": "2026-07-10T10:10:07.584868", + "updated_at": "2026-07-10T10:10:07.584868", + "url": "/v1/games/dcs-av-8b-sky-warrior-campaign" +} diff --git a/site/public/v1/games/dcs-bf-109-k-4-kurf-rst-jagdflieger-campaign/index.json b/site/public/v1/games/dcs-bf-109-k-4-kurf-rst-jagdflieger-campaign/index.json new file mode 100644 index 000000000000..7e8eb4ebc8c0 --- /dev/null +++ b/site/public/v1/games/dcs-bf-109-k-4-kurf-rst-jagdflieger-campaign/index.json @@ -0,0 +1,29 @@ +{ + "id": 35887, + "slug": "dcs-bf-109-k-4-kurf-rst-jagdflieger-campaign", + "name": "DCS: Bf 109 K-4 Kurfürst - Jagdflieger Campaign", + "release_date": "2019-08-22", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Eagle Dynamics" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097585" + ], + "created_at": "2026-07-10T10:10:07.585857", + "updated_at": "2026-07-10T10:10:07.585857", + "url": "/v1/games/dcs-bf-109-k-4-kurf-rst-jagdflieger-campaign" +} diff --git a/site/public/v1/games/dcs-bf-109-k-4-kurf-rst/index.json b/site/public/v1/games/dcs-bf-109-k-4-kurf-rst/index.json new file mode 100644 index 000000000000..62ac32a5af2e --- /dev/null +++ b/site/public/v1/games/dcs-bf-109-k-4-kurf-rst/index.json @@ -0,0 +1,31 @@ +{ + "id": 35888, + "slug": "dcs-bf-109-k-4-kurf-rst", + "name": "DCS: Bf 109 K-4 Kurfürst", + "release_date": "2014-12-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Eagle Dynamics" + ], + "publishers": [ + "Eagle Dynamics" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097400" + ], + "created_at": "2026-07-10T10:10:07.585857", + "updated_at": "2026-07-10T10:10:07.585857", + "url": "/v1/games/dcs-bf-109-k-4-kurf-rst" +} diff --git a/site/public/v1/games/dcs-black-shark-2-pandemic-campaign/index.json b/site/public/v1/games/dcs-black-shark-2-pandemic-campaign/index.json new file mode 100644 index 000000000000..1e1f89d3f71a --- /dev/null +++ b/site/public/v1/games/dcs-black-shark-2-pandemic-campaign/index.json @@ -0,0 +1,29 @@ +{ + "id": 35889, + "slug": "dcs-black-shark-2-pandemic-campaign", + "name": "DCS: Black Shark 2 Pandemic Campaign", + "release_date": "2021-05-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Eagle Dynamics" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097619" + ], + "created_at": "2026-07-10T10:10:07.585857", + "updated_at": "2026-07-10T10:10:07.585857", + "url": "/v1/games/dcs-black-shark-2-pandemic-campaign" +} diff --git a/site/public/v1/games/dcs-black-shark-3-upgrade/index.json b/site/public/v1/games/dcs-black-shark-3-upgrade/index.json new file mode 100644 index 000000000000..38d6f1cc0b3e --- /dev/null +++ b/site/public/v1/games/dcs-black-shark-3-upgrade/index.json @@ -0,0 +1,31 @@ +{ + "id": 35890, + "slug": "dcs-black-shark-3-upgrade", + "name": "DCS: Black Shark 3 Upgrade", + "release_date": "2022-12-16", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Eagle Dynamics" + ], + "publishers": [ + "Eagle Dynamics" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097467" + ], + "created_at": "2026-07-10T10:10:07.585857", + "updated_at": "2026-07-10T10:10:07.585857", + "url": "/v1/games/dcs-black-shark-3-upgrade" +} diff --git a/site/public/v1/games/dcs-black-shark-3/index.json b/site/public/v1/games/dcs-black-shark-3/index.json new file mode 100644 index 000000000000..8c0218b9f4d4 --- /dev/null +++ b/site/public/v1/games/dcs-black-shark-3/index.json @@ -0,0 +1,31 @@ +{ + "id": 35891, + "slug": "dcs-black-shark-3", + "name": "DCS: Black Shark 3", + "release_date": "2022-12-16", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Eagle Dynamics" + ], + "publishers": [ + "Eagle Dynamics" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097466" + ], + "created_at": "2026-07-10T10:10:07.586869", + "updated_at": "2026-07-10T10:10:07.586869", + "url": "/v1/games/dcs-black-shark-3" +} diff --git a/site/public/v1/games/dcs-c-101-aviojet/index.json b/site/public/v1/games/dcs-c-101-aviojet/index.json new file mode 100644 index 000000000000..abe730ec375a --- /dev/null +++ b/site/public/v1/games/dcs-c-101-aviojet/index.json @@ -0,0 +1,29 @@ +{ + "id": 35893, + "slug": "dcs-c-101-aviojet", + "name": "DCS: C-101 Aviojet", + "release_date": "2019-02-14", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Eagle Dynamics" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097539" + ], + "created_at": "2026-07-10T10:10:07.586869", + "updated_at": "2026-07-10T10:10:07.586869", + "url": "/v1/games/dcs-c-101-aviojet" +} diff --git a/site/public/v1/games/dcs-christen-eagle-ii/index.json b/site/public/v1/games/dcs-christen-eagle-ii/index.json new file mode 100644 index 000000000000..0c6e145573cc --- /dev/null +++ b/site/public/v1/games/dcs-christen-eagle-ii/index.json @@ -0,0 +1,29 @@ +{ + "id": 35894, + "slug": "dcs-christen-eagle-ii", + "name": "DCS: Christen Eagle II", + "release_date": "2019-03-05", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Eagle Dynamics" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097577" + ], + "created_at": "2026-07-10T10:10:07.586869", + "updated_at": "2026-07-10T10:10:07.586869", + "url": "/v1/games/dcs-christen-eagle-ii" +} diff --git a/site/public/v1/games/dcs-combined-arms-frontlines-georgia-campaign/index.json b/site/public/v1/games/dcs-combined-arms-frontlines-georgia-campaign/index.json new file mode 100644 index 000000000000..bfcce549238b --- /dev/null +++ b/site/public/v1/games/dcs-combined-arms-frontlines-georgia-campaign/index.json @@ -0,0 +1,31 @@ +{ + "id": 35895, + "slug": "dcs-combined-arms-frontlines-georgia-campaign", + "name": "DCS: Combined Arms Frontlines Georgia Campaign", + "release_date": "2019-02-26", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Eagle Dynamics" + ], + "publishers": [ + "Eagle Dynamics" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097438" + ], + "created_at": "2026-07-10T10:10:07.586869", + "updated_at": "2026-07-10T10:10:07.586869", + "url": "/v1/games/dcs-combined-arms-frontlines-georgia-campaign" +} diff --git a/site/public/v1/games/dcs-combined-arms/index.json b/site/public/v1/games/dcs-combined-arms/index.json new file mode 100644 index 000000000000..4f573f32bd74 --- /dev/null +++ b/site/public/v1/games/dcs-combined-arms/index.json @@ -0,0 +1,31 @@ +{ + "id": 35896, + "slug": "dcs-combined-arms", + "name": "DCS: Combined Arms", + "release_date": "2012-05-31", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Eagle Dynamics" + ], + "publishers": [ + "Eagle Dynamics" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097328" + ], + "created_at": "2026-07-10T10:10:07.587875", + "updated_at": "2026-07-10T10:10:07.587875", + "url": "/v1/games/dcs-combined-arms" +} diff --git a/site/public/v1/games/dcs-f-14a-b-tomcat/index.json b/site/public/v1/games/dcs-f-14a-b-tomcat/index.json new file mode 100644 index 000000000000..1f293085c0ba --- /dev/null +++ b/site/public/v1/games/dcs-f-14a-b-tomcat/index.json @@ -0,0 +1,29 @@ +{ + "id": 35897, + "slug": "dcs-f-14a-b-tomcat", + "name": "DCS: F-14A/B Tomcat", + "release_date": "2019-03-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Eagle Dynamics" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097542" + ], + "created_at": "2026-07-10T10:10:07.587875", + "updated_at": "2026-07-10T10:10:07.587875", + "url": "/v1/games/dcs-f-14a-b-tomcat" +} diff --git a/site/public/v1/games/dcs-f-14a-fear-the-bones-campaign/index.json b/site/public/v1/games/dcs-f-14a-fear-the-bones-campaign/index.json new file mode 100644 index 000000000000..3e376454ddd7 --- /dev/null +++ b/site/public/v1/games/dcs-f-14a-fear-the-bones-campaign/index.json @@ -0,0 +1,29 @@ +{ + "id": 35898, + "slug": "dcs-f-14a-fear-the-bones-campaign", + "name": "DCS: F-14A Fear the Bones Campaign", + "release_date": "2021-07-17", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Eagle Dynamics" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097622" + ], + "created_at": "2026-07-10T10:10:07.587875", + "updated_at": "2026-07-10T10:10:07.587875", + "url": "/v1/games/dcs-f-14a-fear-the-bones-campaign" +} diff --git a/site/public/v1/games/dcs-f-14a-zone-5-campaign/index.json b/site/public/v1/games/dcs-f-14a-zone-5-campaign/index.json new file mode 100644 index 000000000000..2f06e008252e --- /dev/null +++ b/site/public/v1/games/dcs-f-14a-zone-5-campaign/index.json @@ -0,0 +1,29 @@ +{ + "id": 35899, + "slug": "dcs-f-14a-zone-5-campaign", + "name": "DCS: F-14A Zone 5 Campaign", + "release_date": "2021-02-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Eagle Dynamics" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097603" + ], + "created_at": "2026-07-10T10:10:07.588873", + "updated_at": "2026-07-10T10:10:07.588873", + "url": "/v1/games/dcs-f-14a-zone-5-campaign" +} diff --git a/site/public/v1/games/dcs-f-14b-operation-sandworm-campaign/index.json b/site/public/v1/games/dcs-f-14b-operation-sandworm-campaign/index.json new file mode 100644 index 000000000000..f4d6a1d678e0 --- /dev/null +++ b/site/public/v1/games/dcs-f-14b-operation-sandworm-campaign/index.json @@ -0,0 +1,29 @@ +{ + "id": 35900, + "slug": "dcs-f-14b-operation-sandworm-campaign", + "name": "DCS: F-14B Operation Sandworm Campaign", + "release_date": "2022-04-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Eagle Dynamics" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097637" + ], + "created_at": "2026-07-10T10:10:07.588873", + "updated_at": "2026-07-10T10:10:07.588873", + "url": "/v1/games/dcs-f-14b-operation-sandworm-campaign" +} diff --git a/site/public/v1/games/dcs-f-14b-speed-and-angels-campaign/index.json b/site/public/v1/games/dcs-f-14b-speed-and-angels-campaign/index.json new file mode 100644 index 000000000000..fc2d98fc2760 --- /dev/null +++ b/site/public/v1/games/dcs-f-14b-speed-and-angels-campaign/index.json @@ -0,0 +1,29 @@ +{ + "id": 35901, + "slug": "dcs-f-14b-speed-and-angels-campaign", + "name": "DCS: F-14B Speed and Angels Campaign", + "release_date": "2023-01-25", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Eagle Dynamics" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097652" + ], + "created_at": "2026-07-10T10:10:07.588873", + "updated_at": "2026-07-10T10:10:07.588873", + "url": "/v1/games/dcs-f-14b-speed-and-angels-campaign" +} diff --git a/site/public/v1/games/dcs-f-15e/index.json b/site/public/v1/games/dcs-f-15e/index.json new file mode 100644 index 000000000000..48a3f8897c82 --- /dev/null +++ b/site/public/v1/games/dcs-f-15e/index.json @@ -0,0 +1,29 @@ +{ + "id": 35902, + "slug": "dcs-f-15e", + "name": "DCS: F-15E", + "release_date": "2023-06-22", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Eagle Dynamics" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097661" + ], + "created_at": "2026-07-10T10:10:07.588873", + "updated_at": "2026-07-10T10:10:07.588873", + "url": "/v1/games/dcs-f-15e" +} diff --git a/site/public/v1/games/dcs-f-16c-red-flag-21-1-campaign/index.json b/site/public/v1/games/dcs-f-16c-red-flag-21-1-campaign/index.json new file mode 100644 index 000000000000..058a6f188e2f --- /dev/null +++ b/site/public/v1/games/dcs-f-16c-red-flag-21-1-campaign/index.json @@ -0,0 +1,29 @@ +{ + "id": 35903, + "slug": "dcs-f-16c-red-flag-21-1-campaign", + "name": "DCS: F-16C Red Flag 21-1 Campaign", + "release_date": "2021-02-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Eagle Dynamics" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097602" + ], + "created_at": "2026-07-10T10:10:07.589873", + "updated_at": "2026-07-10T10:10:07.589873", + "url": "/v1/games/dcs-f-16c-red-flag-21-1-campaign" +} diff --git a/site/public/v1/games/dcs-f-16c-viper/index.json b/site/public/v1/games/dcs-f-16c-viper/index.json new file mode 100644 index 000000000000..f885d5b22030 --- /dev/null +++ b/site/public/v1/games/dcs-f-16c-viper/index.json @@ -0,0 +1,31 @@ +{ + "id": 35904, + "slug": "dcs-f-16c-viper", + "name": "DCS: F-16C Viper", + "release_date": "2019-10-03", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Eagle Dynamics" + ], + "publishers": [ + "Eagle Dynamics" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097439" + ], + "created_at": "2026-07-10T10:10:07.589873", + "updated_at": "2026-07-10T10:10:07.589873", + "url": "/v1/games/dcs-f-16c-viper" +} diff --git a/site/public/v1/games/dcs-f-5e-black-sea-resolve-79-campaign/index.json b/site/public/v1/games/dcs-f-5e-black-sea-resolve-79-campaign/index.json new file mode 100644 index 000000000000..c99a61287751 --- /dev/null +++ b/site/public/v1/games/dcs-f-5e-black-sea-resolve-79-campaign/index.json @@ -0,0 +1,29 @@ +{ + "id": 35905, + "slug": "dcs-f-5e-black-sea-resolve-79-campaign", + "name": "DCS: F-5E Black Sea Resolve '79 Campaign", + "release_date": "2021-02-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Eagle Dynamics" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097598" + ], + "created_at": "2026-07-10T10:10:07.589873", + "updated_at": "2026-07-10T10:10:07.589873", + "url": "/v1/games/dcs-f-5e-black-sea-resolve-79-campaign" +} diff --git a/site/public/v1/games/dcs-f-5e-tiger-ii/index.json b/site/public/v1/games/dcs-f-5e-tiger-ii/index.json new file mode 100644 index 000000000000..012f027785fb --- /dev/null +++ b/site/public/v1/games/dcs-f-5e-tiger-ii/index.json @@ -0,0 +1,31 @@ +{ + "id": 35906, + "slug": "dcs-f-5e-tiger-ii", + "name": "DCS: F-5E Tiger II", + "release_date": "2016-12-02", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Eagle Dynamics" + ], + "publishers": [ + "Eagle Dynamics" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097418" + ], + "created_at": "2026-07-10T10:10:07.590855", + "updated_at": "2026-07-10T10:10:07.590855", + "url": "/v1/games/dcs-f-5e-tiger-ii" +} diff --git a/site/public/v1/games/dcs-f-86f-sabre-hunters-over-the-yalu-campaign/index.json b/site/public/v1/games/dcs-f-86f-sabre-hunters-over-the-yalu-campaign/index.json new file mode 100644 index 000000000000..6391eadd8ac9 --- /dev/null +++ b/site/public/v1/games/dcs-f-86f-sabre-hunters-over-the-yalu-campaign/index.json @@ -0,0 +1,29 @@ +{ + "id": 35907, + "slug": "dcs-f-86f-sabre-hunters-over-the-yalu-campaign", + "name": "DCS: F-86F Sabre Hunters Over the Yalu Campaign", + "release_date": "2020-07-21", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Eagle Dynamics" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097591" + ], + "created_at": "2026-07-10T10:10:07.590855", + "updated_at": "2026-07-10T10:10:07.590855", + "url": "/v1/games/dcs-f-86f-sabre-hunters-over-the-yalu-campaign" +} diff --git a/site/public/v1/games/dcs-f-86f-sabre/index.json b/site/public/v1/games/dcs-f-86f-sabre/index.json new file mode 100644 index 000000000000..f190d5f11dd4 --- /dev/null +++ b/site/public/v1/games/dcs-f-86f-sabre/index.json @@ -0,0 +1,31 @@ +{ + "id": 35908, + "slug": "dcs-f-86f-sabre", + "name": "DCS: F-86F Sabre", + "release_date": "2014-08-08", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Eagle Dynamics" + ], + "publishers": [ + "Eagle Dynamics" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097393" + ], + "created_at": "2026-07-10T10:10:07.590855", + "updated_at": "2026-07-10T10:10:07.590855", + "url": "/v1/games/dcs-f-86f-sabre" +} diff --git a/site/public/v1/games/dcs-f-a-18c-flaming-sunrise-campaign-by-sandman-simulations/index.json b/site/public/v1/games/dcs-f-a-18c-flaming-sunrise-campaign-by-sandman-simulations/index.json new file mode 100644 index 000000000000..1e8bac990cce --- /dev/null +++ b/site/public/v1/games/dcs-f-a-18c-flaming-sunrise-campaign-by-sandman-simulations/index.json @@ -0,0 +1,29 @@ +{ + "id": 35909, + "slug": "dcs-f-a-18c-flaming-sunrise-campaign-by-sandman-simulations", + "name": "DCS: F/A-18C Flaming Sunrise Campaign by Sandman Simulations", + "release_date": "2023-05-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Eagle Dynamics" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097669" + ], + "created_at": "2026-07-10T10:10:07.590855", + "updated_at": "2026-07-10T10:10:07.590855", + "url": "/v1/games/dcs-f-a-18c-flaming-sunrise-campaign-by-sandman-simulations" +} diff --git a/site/public/v1/games/dcs-f-a-18c-hornet-raven-one-ampaign/index.json b/site/public/v1/games/dcs-f-a-18c-hornet-raven-one-ampaign/index.json new file mode 100644 index 000000000000..fb116e521d74 --- /dev/null +++ b/site/public/v1/games/dcs-f-a-18c-hornet-raven-one-ampaign/index.json @@ -0,0 +1,29 @@ +{ + "id": 35910, + "slug": "dcs-f-a-18c-hornet-raven-one-ampaign", + "name": "DCS: F/A-18C Hornet Raven One Сampaign", + "release_date": "2020-09-23", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Eagle Dynamics" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097595" + ], + "created_at": "2026-07-10T10:10:07.590855", + "updated_at": "2026-07-10T10:10:07.590855", + "url": "/v1/games/dcs-f-a-18c-hornet-raven-one-ampaign" +} diff --git a/site/public/v1/games/dcs-f-a-18c-hornet-the-serpent-s-head-2-campaign/index.json b/site/public/v1/games/dcs-f-a-18c-hornet-the-serpent-s-head-2-campaign/index.json new file mode 100644 index 000000000000..cbbba1ff8bbc --- /dev/null +++ b/site/public/v1/games/dcs-f-a-18c-hornet-the-serpent-s-head-2-campaign/index.json @@ -0,0 +1,29 @@ +{ + "id": 35911, + "slug": "dcs-f-a-18c-hornet-the-serpent-s-head-2-campaign", + "name": "DCS: F/A-18C Hornet The Serpent's Head 2 Campaign", + "release_date": "2020-07-21", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Eagle Dynamics" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097590" + ], + "created_at": "2026-07-10T10:10:07.591837", + "updated_at": "2026-07-10T10:10:07.591837", + "url": "/v1/games/dcs-f-a-18c-hornet-the-serpent-s-head-2-campaign" +} diff --git a/site/public/v1/games/dcs-f-a-18c-inherent-resolve-campaign-by-looking-glass/index.json b/site/public/v1/games/dcs-f-a-18c-inherent-resolve-campaign-by-looking-glass/index.json new file mode 100644 index 000000000000..a10ac7dccc97 --- /dev/null +++ b/site/public/v1/games/dcs-f-a-18c-inherent-resolve-campaign-by-looking-glass/index.json @@ -0,0 +1,29 @@ +{ + "id": 35912, + "slug": "dcs-f-a-18c-inherent-resolve-campaign-by-looking-glass", + "name": "DCS: F/A-18C Inherent Resolve Campaign by Looking Glass", + "release_date": "2023-03-10", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Eagle Dynamics" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097659" + ], + "created_at": "2026-07-10T10:10:07.591837", + "updated_at": "2026-07-10T10:10:07.591837", + "url": "/v1/games/dcs-f-a-18c-inherent-resolve-campaign-by-looking-glass" +} diff --git a/site/public/v1/games/dcs-f-a-18c-operation-cerberus-north/index.json b/site/public/v1/games/dcs-f-a-18c-operation-cerberus-north/index.json new file mode 100644 index 000000000000..f9e272e8b3f8 --- /dev/null +++ b/site/public/v1/games/dcs-f-a-18c-operation-cerberus-north/index.json @@ -0,0 +1,31 @@ +{ + "id": 35913, + "slug": "dcs-f-a-18c-operation-cerberus-north", + "name": "DCS: F/A-18C Operation Cerberus North", + "release_date": "2022-03-30", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Eagle Dynamics" + ], + "publishers": [ + "Eagle Dynamics" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097465" + ], + "created_at": "2026-07-10T10:10:07.591837", + "updated_at": "2026-07-10T10:10:07.591837", + "url": "/v1/games/dcs-f-a-18c-operation-cerberus-north" +} diff --git a/site/public/v1/games/dcs-f-a-18c-operation-pontus-campaign/index.json b/site/public/v1/games/dcs-f-a-18c-operation-pontus-campaign/index.json new file mode 100644 index 000000000000..bdfb857940a1 --- /dev/null +++ b/site/public/v1/games/dcs-f-a-18c-operation-pontus-campaign/index.json @@ -0,0 +1,29 @@ +{ + "id": 35914, + "slug": "dcs-f-a-18c-operation-pontus-campaign", + "name": "DCS: F/A-18C Operation Pontus Campaign", + "release_date": "2021-01-30", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Eagle Dynamics" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097615" + ], + "created_at": "2026-07-10T10:10:07.591837", + "updated_at": "2026-07-10T10:10:07.591837", + "url": "/v1/games/dcs-f-a-18c-operation-pontus-campaign" +} diff --git a/site/public/v1/games/dcs-f-a-18c-raven-one-dominant-fury-campaign/index.json b/site/public/v1/games/dcs-f-a-18c-raven-one-dominant-fury-campaign/index.json new file mode 100644 index 000000000000..0fef0754f160 --- /dev/null +++ b/site/public/v1/games/dcs-f-a-18c-raven-one-dominant-fury-campaign/index.json @@ -0,0 +1,29 @@ +{ + "id": 35915, + "slug": "dcs-f-a-18c-raven-one-dominant-fury-campaign", + "name": "DCS: F/A-18C Raven One: Dominant Fury Campaign", + "release_date": "2022-06-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Eagle Dynamics" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097644" + ], + "created_at": "2026-07-10T10:10:07.592858", + "updated_at": "2026-07-10T10:10:07.592858", + "url": "/v1/games/dcs-f-a-18c-raven-one-dominant-fury-campaign" +} diff --git a/site/public/v1/games/dcs-f-a-18c-rise-of-the-persian-lion-campaign/index.json b/site/public/v1/games/dcs-f-a-18c-rise-of-the-persian-lion-campaign/index.json new file mode 100644 index 000000000000..bbe267cb1761 --- /dev/null +++ b/site/public/v1/games/dcs-f-a-18c-rise-of-the-persian-lion-campaign/index.json @@ -0,0 +1,29 @@ +{ + "id": 35916, + "slug": "dcs-f-a-18c-rise-of-the-persian-lion-campaign", + "name": "DCS: F/A-18C Rise of the Persian Lion Campaign", + "release_date": "2021-07-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Eagle Dynamics" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097621" + ], + "created_at": "2026-07-10T10:10:07.592858", + "updated_at": "2026-07-10T10:10:07.592858", + "url": "/v1/games/dcs-f-a-18c-rise-of-the-persian-lion-campaign" +} diff --git a/site/public/v1/games/dcs-f-a-18c-rise-of-the-persian-lion-ii-campaign/index.json b/site/public/v1/games/dcs-f-a-18c-rise-of-the-persian-lion-ii-campaign/index.json new file mode 100644 index 000000000000..94ea5c9873e1 --- /dev/null +++ b/site/public/v1/games/dcs-f-a-18c-rise-of-the-persian-lion-ii-campaign/index.json @@ -0,0 +1,29 @@ +{ + "id": 35917, + "slug": "dcs-f-a-18c-rise-of-the-persian-lion-ii-campaign", + "name": "DCS: F/A-18C Rise of the Persian Lion II Campaign", + "release_date": "2022-12-16", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Eagle Dynamics" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097649" + ], + "created_at": "2026-07-10T10:10:07.592858", + "updated_at": "2026-07-10T10:10:07.592858", + "url": "/v1/games/dcs-f-a-18c-rise-of-the-persian-lion-ii-campaign" +} diff --git a/site/public/v1/games/dcs-f-a-18c-rising-squall-campaign/index.json b/site/public/v1/games/dcs-f-a-18c-rising-squall-campaign/index.json new file mode 100644 index 000000000000..2367bde9da27 --- /dev/null +++ b/site/public/v1/games/dcs-f-a-18c-rising-squall-campaign/index.json @@ -0,0 +1,29 @@ +{ + "id": 35918, + "slug": "dcs-f-a-18c-rising-squall-campaign", + "name": "DCS: F/A-18C Rising Squall Campaign", + "release_date": "2021-02-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Eagle Dynamics" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097601" + ], + "created_at": "2026-07-10T10:10:07.593834", + "updated_at": "2026-07-10T10:10:07.593834", + "url": "/v1/games/dcs-f-a-18c-rising-squall-campaign" +} diff --git a/site/public/v1/games/dcs-f-a-18c/index.json b/site/public/v1/games/dcs-f-a-18c/index.json new file mode 100644 index 000000000000..4586e178f14c --- /dev/null +++ b/site/public/v1/games/dcs-f-a-18c/index.json @@ -0,0 +1,31 @@ +{ + "id": 35919, + "slug": "dcs-f-a-18c", + "name": "DCS: F/A-18C", + "release_date": "2018-06-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Eagle Dynamics" + ], + "publishers": [ + "Eagle Dynamics" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097428" + ], + "created_at": "2026-07-10T10:10:07.593834", + "updated_at": "2026-07-10T10:10:07.593834", + "url": "/v1/games/dcs-f-a-18c" +} diff --git a/site/public/v1/games/dcs-flaming-cliffs-3/index.json b/site/public/v1/games/dcs-flaming-cliffs-3/index.json new file mode 100644 index 000000000000..c605b3a1e2ca --- /dev/null +++ b/site/public/v1/games/dcs-flaming-cliffs-3/index.json @@ -0,0 +1,31 @@ +{ + "id": 35920, + "slug": "dcs-flaming-cliffs-3", + "name": "DCS: Flaming Cliffs 3", + "release_date": "2012-11-08", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Eagle Dynamics" + ], + "publishers": [ + "Eagle Dynamics" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097363" + ], + "created_at": "2026-07-10T10:10:07.593834", + "updated_at": "2026-07-10T10:10:07.593834", + "url": "/v1/games/dcs-flaming-cliffs-3" +} diff --git a/site/public/v1/games/dcs-fw-190-a-8-horrido-campaign/index.json b/site/public/v1/games/dcs-fw-190-a-8-horrido-campaign/index.json new file mode 100644 index 000000000000..d1c5ef18b855 --- /dev/null +++ b/site/public/v1/games/dcs-fw-190-a-8-horrido-campaign/index.json @@ -0,0 +1,29 @@ +{ + "id": 35921, + "slug": "dcs-fw-190-a-8-horrido-campaign", + "name": "DCS: Fw 190 A-8 Horrido! Campaign", + "release_date": "2020-10-23", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Eagle Dynamics" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097597" + ], + "created_at": "2026-07-10T10:10:07.593834", + "updated_at": "2026-07-10T10:10:07.593834", + "url": "/v1/games/dcs-fw-190-a-8-horrido-campaign" +} diff --git a/site/public/v1/games/dcs-fw-190-a-8/index.json b/site/public/v1/games/dcs-fw-190-a-8/index.json new file mode 100644 index 000000000000..21396e73890c --- /dev/null +++ b/site/public/v1/games/dcs-fw-190-a-8/index.json @@ -0,0 +1,31 @@ +{ + "id": 35922, + "slug": "dcs-fw-190-a-8", + "name": "DCS: Fw 190 A-8", + "release_date": "2019-07-03", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Eagle Dynamics" + ], + "publishers": [ + "Eagle Dynamics" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097440" + ], + "created_at": "2026-07-10T10:10:07.593834", + "updated_at": "2026-07-10T10:10:07.593834", + "url": "/v1/games/dcs-fw-190-a-8" +} diff --git a/site/public/v1/games/dcs-fw-190-d-9-dora/index.json b/site/public/v1/games/dcs-fw-190-d-9-dora/index.json new file mode 100644 index 000000000000..9b1f4d7d08ce --- /dev/null +++ b/site/public/v1/games/dcs-fw-190-d-9-dora/index.json @@ -0,0 +1,31 @@ +{ + "id": 35923, + "slug": "dcs-fw-190-d-9-dora", + "name": "DCS: Fw 190 D-9 Dora", + "release_date": "2014-08-19", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Eagle Dynamics" + ], + "publishers": [ + "Eagle Dynamics" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097385" + ], + "created_at": "2026-07-10T10:10:07.594876", + "updated_at": "2026-07-10T10:10:07.594876", + "url": "/v1/games/dcs-fw-190-d-9-dora" +} diff --git a/site/public/v1/games/dcs-i-16/index.json b/site/public/v1/games/dcs-i-16/index.json new file mode 100644 index 000000000000..ef3f253bbbe3 --- /dev/null +++ b/site/public/v1/games/dcs-i-16/index.json @@ -0,0 +1,29 @@ +{ + "id": 35924, + "slug": "dcs-i-16", + "name": "DCS: I-16", + "release_date": "2019-05-20", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Eagle Dynamics" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097583" + ], + "created_at": "2026-07-10T10:10:07.594876", + "updated_at": "2026-07-10T10:10:07.594876", + "url": "/v1/games/dcs-i-16" +} diff --git a/site/public/v1/games/dcs-jf-17-thunder/index.json b/site/public/v1/games/dcs-jf-17-thunder/index.json new file mode 100644 index 000000000000..11fe16cc1364 --- /dev/null +++ b/site/public/v1/games/dcs-jf-17-thunder/index.json @@ -0,0 +1,29 @@ +{ + "id": 35925, + "slug": "dcs-jf-17-thunder", + "name": "DCS: JF-17 Thunder", + "release_date": "2019-12-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Eagle Dynamics" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097587" + ], + "created_at": "2026-07-10T10:10:07.594876", + "updated_at": "2026-07-10T10:10:07.594876", + "url": "/v1/games/dcs-jf-17-thunder" +} diff --git a/site/public/v1/games/dcs-l-39-albatros-kursant-campaign/index.json b/site/public/v1/games/dcs-l-39-albatros-kursant-campaign/index.json new file mode 100644 index 000000000000..da2d2daa9fad --- /dev/null +++ b/site/public/v1/games/dcs-l-39-albatros-kursant-campaign/index.json @@ -0,0 +1,31 @@ +{ + "id": 35926, + "slug": "dcs-l-39-albatros-kursant-campaign", + "name": "DCS: L-39 Albatros - Kursant Campaign", + "release_date": "2018-07-03", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Eagle Dynamics" + ], + "publishers": [ + "Eagle Dynamics" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097433" + ], + "created_at": "2026-07-10T10:10:07.594876", + "updated_at": "2026-07-10T10:10:07.594876", + "url": "/v1/games/dcs-l-39-albatros-kursant-campaign" +} diff --git a/site/public/v1/games/dcs-l-39-albatros/index.json b/site/public/v1/games/dcs-l-39-albatros/index.json new file mode 100644 index 000000000000..45ce7b26f2a5 --- /dev/null +++ b/site/public/v1/games/dcs-l-39-albatros/index.json @@ -0,0 +1,31 @@ +{ + "id": 35927, + "slug": "dcs-l-39-albatros", + "name": "DCS: L-39 Albatros", + "release_date": "2015-10-16", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Eagle Dynamics" + ], + "publishers": [ + "Eagle Dynamics" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097412" + ], + "created_at": "2026-07-10T10:10:07.595879", + "updated_at": "2026-07-10T10:10:07.595879", + "url": "/v1/games/dcs-l-39-albatros" +} diff --git a/site/public/v1/games/dcs-m-2000c-red-flag-campaign/index.json b/site/public/v1/games/dcs-m-2000c-red-flag-campaign/index.json new file mode 100644 index 000000000000..6f2c88e72999 --- /dev/null +++ b/site/public/v1/games/dcs-m-2000c-red-flag-campaign/index.json @@ -0,0 +1,29 @@ +{ + "id": 35928, + "slug": "dcs-m-2000c-red-flag-campaign", + "name": "DCS: M-2000C - Red Flag Campaign", + "release_date": "2018-07-16", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Eagle Dynamics" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097571" + ], + "created_at": "2026-07-10T10:10:07.595879", + "updated_at": "2026-07-10T10:10:07.595879", + "url": "/v1/games/dcs-m-2000c-red-flag-campaign" +} diff --git a/site/public/v1/games/dcs-m-2000c/index.json b/site/public/v1/games/dcs-m-2000c/index.json new file mode 100644 index 000000000000..4aa4d4062246 --- /dev/null +++ b/site/public/v1/games/dcs-m-2000c/index.json @@ -0,0 +1,29 @@ +{ + "id": 35929, + "slug": "dcs-m-2000c", + "name": "DCS: M-2000C", + "release_date": "2017-05-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Eagle Dynamics" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097541" + ], + "created_at": "2026-07-10T10:10:07.595879", + "updated_at": "2026-07-10T10:10:07.595879", + "url": "/v1/games/dcs-m-2000c" +} diff --git a/site/public/v1/games/dcs-mad-ah-64d-campaign/index.json b/site/public/v1/games/dcs-mad-ah-64d-campaign/index.json new file mode 100644 index 000000000000..578d43a45d3b --- /dev/null +++ b/site/public/v1/games/dcs-mad-ah-64d-campaign/index.json @@ -0,0 +1,29 @@ +{ + "id": 35930, + "slug": "dcs-mad-ah-64d-campaign", + "name": "DCS: MAD AH-64D Campaign", + "release_date": "2023-01-25", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Eagle Dynamics" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097654" + ], + "created_at": "2026-07-10T10:10:07.595879", + "updated_at": "2026-07-10T10:10:07.595879", + "url": "/v1/games/dcs-mad-ah-64d-campaign" +} diff --git a/site/public/v1/games/dcs-mad-campaign/index.json b/site/public/v1/games/dcs-mad-campaign/index.json new file mode 100644 index 000000000000..94c5710e7b76 --- /dev/null +++ b/site/public/v1/games/dcs-mad-campaign/index.json @@ -0,0 +1,29 @@ +{ + "id": 35931, + "slug": "dcs-mad-campaign", + "name": "DCS: MAD Campaign", + "release_date": "2022-03-30", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Eagle Dynamics" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097635" + ], + "created_at": "2026-07-10T10:10:07.596914", + "updated_at": "2026-07-10T10:10:07.596914", + "url": "/v1/games/dcs-mad-campaign" +} diff --git a/site/public/v1/games/dcs-mad-jf-17-thunder-campaign/index.json b/site/public/v1/games/dcs-mad-jf-17-thunder-campaign/index.json new file mode 100644 index 000000000000..6e55b7ecd374 --- /dev/null +++ b/site/public/v1/games/dcs-mad-jf-17-thunder-campaign/index.json @@ -0,0 +1,29 @@ +{ + "id": 35932, + "slug": "dcs-mad-jf-17-thunder-campaign", + "name": "DCS: MAD JF-17 Thunder Campaign", + "release_date": "2022-06-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Eagle Dynamics" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097642" + ], + "created_at": "2026-07-10T10:10:07.596914", + "updated_at": "2026-07-10T10:10:07.596914", + "url": "/v1/games/dcs-mad-jf-17-thunder-campaign" +} diff --git a/site/public/v1/games/dcs-marianas/index.json b/site/public/v1/games/dcs-marianas/index.json new file mode 100644 index 000000000000..c727242e3e09 --- /dev/null +++ b/site/public/v1/games/dcs-marianas/index.json @@ -0,0 +1,31 @@ +{ + "id": 35933, + "slug": "dcs-marianas", + "name": "DCS: Marianas", + "release_date": "2021-06-30", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Eagle Dynamics" + ], + "publishers": [ + "Eagle Dynamics" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097451" + ], + "created_at": "2026-07-10T10:10:07.596914", + "updated_at": "2026-07-10T10:10:07.596914", + "url": "/v1/games/dcs-marianas" +} diff --git a/site/public/v1/games/dcs-mb-339/index.json b/site/public/v1/games/dcs-mb-339/index.json new file mode 100644 index 000000000000..4d1b9be92b40 --- /dev/null +++ b/site/public/v1/games/dcs-mb-339/index.json @@ -0,0 +1,29 @@ +{ + "id": 35934, + "slug": "dcs-mb-339", + "name": "DCS: MB-339", + "release_date": "2022-10-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Eagle Dynamics" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097648" + ], + "created_at": "2026-07-10T10:10:07.596914", + "updated_at": "2026-07-10T10:10:07.596914", + "url": "/v1/games/dcs-mb-339" +} diff --git a/site/public/v1/games/dcs-mi-24p-hind/index.json b/site/public/v1/games/dcs-mi-24p-hind/index.json new file mode 100644 index 000000000000..847a5d644e09 --- /dev/null +++ b/site/public/v1/games/dcs-mi-24p-hind/index.json @@ -0,0 +1,31 @@ +{ + "id": 35935, + "slug": "dcs-mi-24p-hind", + "name": "DCS: Mi-24P HIND", + "release_date": "2021-06-16", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Eagle Dynamics" + ], + "publishers": [ + "Eagle Dynamics" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097450" + ], + "created_at": "2026-07-10T10:10:07.597865", + "updated_at": "2026-07-10T10:10:07.597865", + "url": "/v1/games/dcs-mi-24p-hind" +} diff --git a/site/public/v1/games/dcs-mi-8-mtv2-magnificent-eight/index.json b/site/public/v1/games/dcs-mi-8-mtv2-magnificent-eight/index.json new file mode 100644 index 000000000000..51129889baca --- /dev/null +++ b/site/public/v1/games/dcs-mi-8-mtv2-magnificent-eight/index.json @@ -0,0 +1,31 @@ +{ + "id": 35936, + "slug": "dcs-mi-8-mtv2-magnificent-eight", + "name": "DCS: Mi-8 MTV2 Magnificent Eight", + "release_date": "2013-09-19", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Eagle Dynamics" + ], + "publishers": [ + "Eagle Dynamics" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097357" + ], + "created_at": "2026-07-10T10:10:07.597865", + "updated_at": "2026-07-10T10:10:07.597865", + "url": "/v1/games/dcs-mi-8-mtv2-magnificent-eight" +} diff --git a/site/public/v1/games/dcs-mi-8mtv2-and-ka-50-memory-of-a-hero-campaign/index.json b/site/public/v1/games/dcs-mi-8mtv2-and-ka-50-memory-of-a-hero-campaign/index.json new file mode 100644 index 000000000000..cd0f6ee0dc86 --- /dev/null +++ b/site/public/v1/games/dcs-mi-8mtv2-and-ka-50-memory-of-a-hero-campaign/index.json @@ -0,0 +1,29 @@ +{ + "id": 35937, + "slug": "dcs-mi-8mtv2-and-ka-50-memory-of-a-hero-campaign", + "name": "DCS: Mi-8MTV2 and Ka-50 Memory of a Hero Campaign", + "release_date": "2018-09-26", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Eagle Dynamics" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097573" + ], + "created_at": "2026-07-10T10:10:07.597865", + "updated_at": "2026-07-10T10:10:07.597865", + "url": "/v1/games/dcs-mi-8mtv2-and-ka-50-memory-of-a-hero-campaign" +} diff --git a/site/public/v1/games/dcs-mi-8mtv2-crew-part-1-campaign/index.json b/site/public/v1/games/dcs-mi-8mtv2-crew-part-1-campaign/index.json new file mode 100644 index 000000000000..adcbaea244a2 --- /dev/null +++ b/site/public/v1/games/dcs-mi-8mtv2-crew-part-1-campaign/index.json @@ -0,0 +1,29 @@ +{ + "id": 35938, + "slug": "dcs-mi-8mtv2-crew-part-1-campaign", + "name": "DCS: Mi-8MTV2 Crew Part 1 Campaign", + "release_date": "2020-09-23", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Eagle Dynamics" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097594" + ], + "created_at": "2026-07-10T10:10:07.597865", + "updated_at": "2026-07-10T10:10:07.597865", + "url": "/v1/games/dcs-mi-8mtv2-crew-part-1-campaign" +} diff --git a/site/public/v1/games/dcs-mig-15bis/index.json b/site/public/v1/games/dcs-mig-15bis/index.json new file mode 100644 index 000000000000..fd20fdf17116 --- /dev/null +++ b/site/public/v1/games/dcs-mig-15bis/index.json @@ -0,0 +1,31 @@ +{ + "id": 35939, + "slug": "dcs-mig-15bis", + "name": "DCS: MiG-15Bis", + "release_date": "2015-03-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Eagle Dynamics" + ], + "publishers": [ + "Eagle Dynamics" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097413" + ], + "created_at": "2026-07-10T10:10:07.598856", + "updated_at": "2026-07-10T10:10:07.598856", + "url": "/v1/games/dcs-mig-15bis" +} diff --git a/site/public/v1/games/dcs-mig-19p-farmer/index.json b/site/public/v1/games/dcs-mig-19p-farmer/index.json new file mode 100644 index 000000000000..ae6866128e4d --- /dev/null +++ b/site/public/v1/games/dcs-mig-19p-farmer/index.json @@ -0,0 +1,29 @@ +{ + "id": 35940, + "slug": "dcs-mig-19p-farmer", + "name": "DCS: MiG-19P Farmer", + "release_date": "2019-04-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Eagle Dynamics" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097576" + ], + "created_at": "2026-07-10T10:10:07.598856", + "updated_at": "2026-07-10T10:10:07.598856", + "url": "/v1/games/dcs-mig-19p-farmer" +} diff --git a/site/public/v1/games/dcs-mig-21bis-battle-of-krasnodar-campaign/index.json b/site/public/v1/games/dcs-mig-21bis-battle-of-krasnodar-campaign/index.json new file mode 100644 index 000000000000..48c6b2597a19 --- /dev/null +++ b/site/public/v1/games/dcs-mig-21bis-battle-of-krasnodar-campaign/index.json @@ -0,0 +1,29 @@ +{ + "id": 35941, + "slug": "dcs-mig-21bis-battle-of-krasnodar-campaign", + "name": "DCS: MiG-21bis Battle of Krasnodar Campaign", + "release_date": "2021-10-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Eagle Dynamics" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097625" + ], + "created_at": "2026-07-10T10:10:07.598856", + "updated_at": "2026-07-10T10:10:07.598856", + "url": "/v1/games/dcs-mig-21bis-battle-of-krasnodar-campaign" +} diff --git a/site/public/v1/games/dcs-mig-21bis-constant-peg-campaign/index.json b/site/public/v1/games/dcs-mig-21bis-constant-peg-campaign/index.json new file mode 100644 index 000000000000..c9488fa8d848 --- /dev/null +++ b/site/public/v1/games/dcs-mig-21bis-constant-peg-campaign/index.json @@ -0,0 +1,29 @@ +{ + "id": 35942, + "slug": "dcs-mig-21bis-constant-peg-campaign", + "name": "DCS: MiG-21bis Constant Peg Campaign", + "release_date": "2021-10-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Eagle Dynamics" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097630" + ], + "created_at": "2026-07-10T10:10:07.601928", + "updated_at": "2026-07-10T10:10:07.601928", + "url": "/v1/games/dcs-mig-21bis-constant-peg-campaign" +} diff --git a/site/public/v1/games/dcs-mig-21bis/index.json b/site/public/v1/games/dcs-mig-21bis/index.json new file mode 100644 index 000000000000..d0df495ddaf8 --- /dev/null +++ b/site/public/v1/games/dcs-mig-21bis/index.json @@ -0,0 +1,29 @@ +{ + "id": 35943, + "slug": "dcs-mig-21bis", + "name": "DCS: MiG-21Bis", + "release_date": "2014-10-02", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Eagle Dynamics" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097537" + ], + "created_at": "2026-07-10T10:10:07.603024", + "updated_at": "2026-07-10T10:10:07.603024", + "url": "/v1/games/dcs-mig-21bis" +} diff --git a/site/public/v1/games/dcs-mirage-f1/index.json b/site/public/v1/games/dcs-mirage-f1/index.json new file mode 100644 index 000000000000..999a217a7d83 --- /dev/null +++ b/site/public/v1/games/dcs-mirage-f1/index.json @@ -0,0 +1,29 @@ +{ + "id": 35944, + "slug": "dcs-mirage-f1", + "name": "DCS: Mirage F1", + "release_date": "2022-07-21", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Eagle Dynamics" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097647" + ], + "created_at": "2026-07-10T10:10:07.603024", + "updated_at": "2026-07-10T10:10:07.603024", + "url": "/v1/games/dcs-mirage-f1" +} diff --git a/site/public/v1/games/dcs-mosquito-fb-iv-v-for-victory-campaign-reflected-simulations/index.json b/site/public/v1/games/dcs-mosquito-fb-iv-v-for-victory-campaign-reflected-simulations/index.json new file mode 100644 index 000000000000..f3076d1f19a8 --- /dev/null +++ b/site/public/v1/games/dcs-mosquito-fb-iv-v-for-victory-campaign-reflected-simulations/index.json @@ -0,0 +1,29 @@ +{ + "id": 35945, + "slug": "dcs-mosquito-fb-iv-v-for-victory-campaign-reflected-simulations", + "name": "DCS: Mosquito FB IV - V for Victory Campaign Reflected Simulations", + "release_date": "2023-03-10", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Eagle Dynamics" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097651" + ], + "created_at": "2026-07-10T10:10:07.604053", + "updated_at": "2026-07-10T10:10:07.604053", + "url": "/v1/games/dcs-mosquito-fb-iv-v-for-victory-campaign-reflected-simulations" +} diff --git a/site/public/v1/games/dcs-mosquito-fb-vi/index.json b/site/public/v1/games/dcs-mosquito-fb-vi/index.json new file mode 100644 index 000000000000..9a91aad67cfe --- /dev/null +++ b/site/public/v1/games/dcs-mosquito-fb-vi/index.json @@ -0,0 +1,31 @@ +{ + "id": 35946, + "slug": "dcs-mosquito-fb-vi", + "name": "DCS: Mosquito FB VI", + "release_date": "2021-09-17", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Eagle Dynamics" + ], + "publishers": [ + "Eagle Dynamics" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097455" + ], + "created_at": "2026-07-10T10:10:07.605021", + "updated_at": "2026-07-10T10:10:07.605021", + "url": "/v1/games/dcs-mosquito-fb-vi" +} diff --git a/site/public/v1/games/dcs-nevada-test-and-training-range-map/index.json b/site/public/v1/games/dcs-nevada-test-and-training-range-map/index.json new file mode 100644 index 000000000000..275a60826b40 --- /dev/null +++ b/site/public/v1/games/dcs-nevada-test-and-training-range-map/index.json @@ -0,0 +1,31 @@ +{ + "id": 35947, + "slug": "dcs-nevada-test-and-training-range-map", + "name": "DCS: NEVADA Test and Training Range Map", + "release_date": "2017-08-30", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Eagle Dynamics" + ], + "publishers": [ + "Eagle Dynamics" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097417" + ], + "created_at": "2026-07-10T10:10:07.606012", + "updated_at": "2026-07-10T10:10:07.606012", + "url": "/v1/games/dcs-nevada-test-and-training-range-map" +} diff --git a/site/public/v1/games/dcs-normandy-1944-map/index.json b/site/public/v1/games/dcs-normandy-1944-map/index.json new file mode 100644 index 000000000000..cbfe9c5dbd07 --- /dev/null +++ b/site/public/v1/games/dcs-normandy-1944-map/index.json @@ -0,0 +1,29 @@ +{ + "id": 35948, + "slug": "dcs-normandy-1944-map", + "name": "DCS: Normandy 1944 Map", + "release_date": "2017-11-23", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Eagle Dynamics" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097553" + ], + "created_at": "2026-07-10T10:10:07.606012", + "updated_at": "2026-07-10T10:10:07.606012", + "url": "/v1/games/dcs-normandy-1944-map" +} diff --git a/site/public/v1/games/dcs-normandy-2-0-upgrade-from-the-channel/index.json b/site/public/v1/games/dcs-normandy-2-0-upgrade-from-the-channel/index.json new file mode 100644 index 000000000000..769b9a33abea --- /dev/null +++ b/site/public/v1/games/dcs-normandy-2-0-upgrade-from-the-channel/index.json @@ -0,0 +1,29 @@ +{ + "id": 35949, + "slug": "dcs-normandy-2-0-upgrade-from-the-channel", + "name": "DCS: Normandy 2.0 Upgrade from The Channel", + "release_date": "2023-04-21", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Eagle Dynamics" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097668" + ], + "created_at": "2026-07-10T10:10:07.607025", + "updated_at": "2026-07-10T10:10:07.607025", + "url": "/v1/games/dcs-normandy-2-0-upgrade-from-the-channel" +} diff --git a/site/public/v1/games/dcs-normandy-2-0/index.json b/site/public/v1/games/dcs-normandy-2-0/index.json new file mode 100644 index 000000000000..22c01bfb4024 --- /dev/null +++ b/site/public/v1/games/dcs-normandy-2-0/index.json @@ -0,0 +1,29 @@ +{ + "id": 35950, + "slug": "dcs-normandy-2-0", + "name": "DCS: Normandy 2.0", + "release_date": "2023-04-21", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Eagle Dynamics" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097666" + ], + "created_at": "2026-07-10T10:10:07.608072", + "updated_at": "2026-07-10T10:10:07.608072", + "url": "/v1/games/dcs-normandy-2-0" +} diff --git a/site/public/v1/games/dcs-normandy-2-upgrade-from-normandy-1944/index.json b/site/public/v1/games/dcs-normandy-2-upgrade-from-normandy-1944/index.json new file mode 100644 index 000000000000..60d2f17161c8 --- /dev/null +++ b/site/public/v1/games/dcs-normandy-2-upgrade-from-normandy-1944/index.json @@ -0,0 +1,29 @@ +{ + "id": 35951, + "slug": "dcs-normandy-2-upgrade-from-normandy-1944", + "name": "DCS: Normandy 2 Upgrade from Normandy 1944", + "release_date": "2023-04-21", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Eagle Dynamics" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097657" + ], + "created_at": "2026-07-10T10:10:07.609011", + "updated_at": "2026-07-10T10:10:07.609011", + "url": "/v1/games/dcs-normandy-2-upgrade-from-normandy-1944" +} diff --git a/site/public/v1/games/dcs-ns-430-navigation-system-for-c-101/index.json b/site/public/v1/games/dcs-ns-430-navigation-system-for-c-101/index.json new file mode 100644 index 000000000000..ed4dcc574555 --- /dev/null +++ b/site/public/v1/games/dcs-ns-430-navigation-system-for-c-101/index.json @@ -0,0 +1,29 @@ +{ + "id": 35952, + "slug": "dcs-ns-430-navigation-system-for-c-101", + "name": "DCS: NS 430 Navigation System for C-101СС", + "release_date": "2021-11-06", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Eagle Dynamics" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097628" + ], + "created_at": "2026-07-10T10:10:07.610023", + "updated_at": "2026-07-10T10:10:07.610023", + "url": "/v1/games/dcs-ns-430-navigation-system-for-c-101" +} diff --git a/site/public/v1/games/dcs-ns-430-navigation-system-for-c-101eb/index.json b/site/public/v1/games/dcs-ns-430-navigation-system-for-c-101eb/index.json new file mode 100644 index 000000000000..2675f44c8293 --- /dev/null +++ b/site/public/v1/games/dcs-ns-430-navigation-system-for-c-101eb/index.json @@ -0,0 +1,29 @@ +{ + "id": 35953, + "slug": "dcs-ns-430-navigation-system-for-c-101eb", + "name": "DCS: NS 430 Navigation System for C-101EB", + "release_date": "2021-11-06", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Eagle Dynamics" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097627" + ], + "created_at": "2026-07-10T10:10:07.610023", + "updated_at": "2026-07-10T10:10:07.610023", + "url": "/v1/games/dcs-ns-430-navigation-system-for-c-101eb" +} diff --git a/site/public/v1/games/dcs-ns-430-navigation-system-for-l-39/index.json b/site/public/v1/games/dcs-ns-430-navigation-system-for-l-39/index.json new file mode 100644 index 000000000000..f58b886a69c9 --- /dev/null +++ b/site/public/v1/games/dcs-ns-430-navigation-system-for-l-39/index.json @@ -0,0 +1,31 @@ +{ + "id": 35954, + "slug": "dcs-ns-430-navigation-system-for-l-39", + "name": "DCS: NS 430 Navigation System for L-39С", + "release_date": "2021-11-06", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Eagle Dynamics" + ], + "publishers": [ + "Eagle Dynamics" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097452" + ], + "created_at": "2026-07-10T10:10:07.610986", + "updated_at": "2026-07-10T10:10:07.610986", + "url": "/v1/games/dcs-ns-430-navigation-system-for-l-39" +} diff --git a/site/public/v1/games/dcs-ns-430-navigation-system-for-mi-8mtv2/index.json b/site/public/v1/games/dcs-ns-430-navigation-system-for-mi-8mtv2/index.json new file mode 100644 index 000000000000..171793c53e4d --- /dev/null +++ b/site/public/v1/games/dcs-ns-430-navigation-system-for-mi-8mtv2/index.json @@ -0,0 +1,31 @@ +{ + "id": 35955, + "slug": "dcs-ns-430-navigation-system-for-mi-8mtv2", + "name": "DCS: NS 430 Navigation System for Mi-8MTV2", + "release_date": "2021-11-06", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Eagle Dynamics" + ], + "publishers": [ + "Eagle Dynamics" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097453" + ], + "created_at": "2026-07-10T10:10:07.610986", + "updated_at": "2026-07-10T10:10:07.610986", + "url": "/v1/games/dcs-ns-430-navigation-system-for-mi-8mtv2" +} diff --git a/site/public/v1/games/dcs-ns-430-navigation-system-for-sa342-gazelle/index.json b/site/public/v1/games/dcs-ns-430-navigation-system-for-sa342-gazelle/index.json new file mode 100644 index 000000000000..091d5df0de91 --- /dev/null +++ b/site/public/v1/games/dcs-ns-430-navigation-system-for-sa342-gazelle/index.json @@ -0,0 +1,31 @@ +{ + "id": 35956, + "slug": "dcs-ns-430-navigation-system-for-sa342-gazelle", + "name": "DCS: NS 430 Navigation System for SA342 Gazelle", + "release_date": "2022-01-26", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Eagle Dynamics" + ], + "publishers": [ + "Eagle Dynamics" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097461" + ], + "created_at": "2026-07-10T10:10:07.612119", + "updated_at": "2026-07-10T10:10:07.612119", + "url": "/v1/games/dcs-ns-430-navigation-system-for-sa342-gazelle" +} diff --git a/site/public/v1/games/dcs-ns-430-navigation-system/index.json b/site/public/v1/games/dcs-ns-430-navigation-system/index.json new file mode 100644 index 000000000000..ceef8e5a1c05 --- /dev/null +++ b/site/public/v1/games/dcs-ns-430-navigation-system/index.json @@ -0,0 +1,31 @@ +{ + "id": 35957, + "slug": "dcs-ns-430-navigation-system", + "name": "DCS: NS 430 Navigation System", + "release_date": "2022-01-19", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Eagle Dynamics" + ], + "publishers": [ + "Eagle Dynamics" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097456" + ], + "created_at": "2026-07-10T10:10:07.612119", + "updated_at": "2026-07-10T10:10:07.612119", + "url": "/v1/games/dcs-ns-430-navigation-system" +} diff --git a/site/public/v1/games/dcs-p-47d-thunderbolt/index.json b/site/public/v1/games/dcs-p-47d-thunderbolt/index.json new file mode 100644 index 000000000000..c7be9f1059b0 --- /dev/null +++ b/site/public/v1/games/dcs-p-47d-thunderbolt/index.json @@ -0,0 +1,31 @@ +{ + "id": 35958, + "slug": "dcs-p-47d-thunderbolt", + "name": "DCS: P-47D Thunderbolt", + "release_date": "2020-06-03", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Eagle Dynamics" + ], + "publishers": [ + "Eagle Dynamics" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097444" + ], + "created_at": "2026-07-10T10:10:07.613113", + "updated_at": "2026-07-10T10:10:07.613113", + "url": "/v1/games/dcs-p-47d-thunderbolt" +} diff --git a/site/public/v1/games/dcs-p-47d-wolfpack-campaign/index.json b/site/public/v1/games/dcs-p-47d-wolfpack-campaign/index.json new file mode 100644 index 000000000000..a08e8d56122c --- /dev/null +++ b/site/public/v1/games/dcs-p-47d-wolfpack-campaign/index.json @@ -0,0 +1,29 @@ +{ + "id": 35959, + "slug": "dcs-p-47d-wolfpack-campaign", + "name": "DCS: P-47D Wolfpack Campaign", + "release_date": "2021-05-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Eagle Dynamics" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097617" + ], + "created_at": "2026-07-10T10:10:07.613113", + "updated_at": "2026-07-10T10:10:07.613113", + "url": "/v1/games/dcs-p-47d-wolfpack-campaign" +} diff --git a/site/public/v1/games/dcs-p-51d-mustang-blue-nosed-bastards-of-bodney-campaign/index.json b/site/public/v1/games/dcs-p-51d-mustang-blue-nosed-bastards-of-bodney-campaign/index.json new file mode 100644 index 000000000000..65b58e51b8ec --- /dev/null +++ b/site/public/v1/games/dcs-p-51d-mustang-blue-nosed-bastards-of-bodney-campaign/index.json @@ -0,0 +1,29 @@ +{ + "id": 35960, + "slug": "dcs-p-51d-mustang-blue-nosed-bastards-of-bodney-campaign", + "name": "DCS: P-51D Mustang Blue Nosed Bastards of Bodney Campaign", + "release_date": "2019-02-19", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Eagle Dynamics" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097575" + ], + "created_at": "2026-07-10T10:10:07.614098", + "updated_at": "2026-07-10T10:10:07.614098", + "url": "/v1/games/dcs-p-51d-mustang-blue-nosed-bastards-of-bodney-campaign" +} diff --git a/site/public/v1/games/dcs-p-51d-mustang-operation-charnwood-campaign/index.json b/site/public/v1/games/dcs-p-51d-mustang-operation-charnwood-campaign/index.json new file mode 100644 index 000000000000..4069dec994ca --- /dev/null +++ b/site/public/v1/games/dcs-p-51d-mustang-operation-charnwood-campaign/index.json @@ -0,0 +1,29 @@ +{ + "id": 35961, + "slug": "dcs-p-51d-mustang-operation-charnwood-campaign", + "name": "DCS: P-51D Mustang - Operation Charnwood Campaign", + "release_date": "2018-02-20", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Eagle Dynamics" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097570" + ], + "created_at": "2026-07-10T10:10:07.614995", + "updated_at": "2026-07-10T10:10:07.614995", + "url": "/v1/games/dcs-p-51d-mustang-operation-charnwood-campaign" +} diff --git a/site/public/v1/games/dcs-p-51d-mustang/index.json b/site/public/v1/games/dcs-p-51d-mustang/index.json new file mode 100644 index 000000000000..483f40ffa82f --- /dev/null +++ b/site/public/v1/games/dcs-p-51d-mustang/index.json @@ -0,0 +1,31 @@ +{ + "id": 35962, + "slug": "dcs-p-51d-mustang", + "name": "DCS: P-51D Mustang", + "release_date": "2012-04-29", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Eagle Dynamics" + ], + "publishers": [ + "Eagle Dynamics" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097325" + ], + "created_at": "2026-07-10T10:10:07.614995", + "updated_at": "2026-07-10T10:10:07.614995", + "url": "/v1/games/dcs-p-51d-mustang" +} diff --git a/site/public/v1/games/dcs-persian-gulf/index.json b/site/public/v1/games/dcs-persian-gulf/index.json new file mode 100644 index 000000000000..08aa90f570b5 --- /dev/null +++ b/site/public/v1/games/dcs-persian-gulf/index.json @@ -0,0 +1,31 @@ +{ + "id": 35963, + "slug": "dcs-persian-gulf", + "name": "DCS: Persian Gulf", + "release_date": "2018-06-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Eagle Dynamics" + ], + "publishers": [ + "Eagle Dynamics" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097414" + ], + "created_at": "2026-07-10T10:10:07.615934", + "updated_at": "2026-07-10T10:10:07.615934", + "url": "/v1/games/dcs-persian-gulf" +} diff --git a/site/public/v1/games/dcs-sa342-gazelle/index.json b/site/public/v1/games/dcs-sa342-gazelle/index.json new file mode 100644 index 000000000000..fb7336e13b89 --- /dev/null +++ b/site/public/v1/games/dcs-sa342-gazelle/index.json @@ -0,0 +1,29 @@ +{ + "id": 35964, + "slug": "dcs-sa342-gazelle", + "name": "DCS: SA342 Gazelle", + "release_date": "2016-05-27", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Eagle Dynamics" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097543" + ], + "created_at": "2026-07-10T10:10:07.615934", + "updated_at": "2026-07-10T10:10:07.615934", + "url": "/v1/games/dcs-sa342-gazelle" +} diff --git a/site/public/v1/games/dcs-sinai-map-by-onretech/index.json b/site/public/v1/games/dcs-sinai-map-by-onretech/index.json new file mode 100644 index 000000000000..266e59d0b70f --- /dev/null +++ b/site/public/v1/games/dcs-sinai-map-by-onretech/index.json @@ -0,0 +1,29 @@ +{ + "id": 35965, + "slug": "dcs-sinai-map-by-onretech", + "name": "DCS: Sinai Map by OnReTech", + "release_date": "2023-06-08", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Eagle Dynamics" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097662" + ], + "created_at": "2026-07-10T10:10:07.615934", + "updated_at": "2026-07-10T10:10:07.615934", + "url": "/v1/games/dcs-sinai-map-by-onretech" +} diff --git a/site/public/v1/games/dcs-south-atlantic/index.json b/site/public/v1/games/dcs-south-atlantic/index.json new file mode 100644 index 000000000000..1652efd43e9d --- /dev/null +++ b/site/public/v1/games/dcs-south-atlantic/index.json @@ -0,0 +1,29 @@ +{ + "id": 35966, + "slug": "dcs-south-atlantic", + "name": "DCS: South Atlantic", + "release_date": "2022-06-08", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Eagle Dynamics" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097641" + ], + "created_at": "2026-07-10T10:10:07.615934", + "updated_at": "2026-07-10T10:10:07.615934", + "url": "/v1/games/dcs-south-atlantic" +} diff --git a/site/public/v1/games/dcs-spitfire-beware-beware-campaign/index.json b/site/public/v1/games/dcs-spitfire-beware-beware-campaign/index.json new file mode 100644 index 000000000000..739695fff4fc --- /dev/null +++ b/site/public/v1/games/dcs-spitfire-beware-beware-campaign/index.json @@ -0,0 +1,29 @@ +{ + "id": 35967, + "slug": "dcs-spitfire-beware-beware-campaign", + "name": "DCS: Spitfire Beware! Beware! Campaign", + "release_date": "2022-06-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Eagle Dynamics" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097640" + ], + "created_at": "2026-07-10T10:10:07.617517", + "updated_at": "2026-07-10T10:10:07.617517", + "url": "/v1/games/dcs-spitfire-beware-beware-campaign" +} diff --git a/site/public/v1/games/dcs-spitfire-lf-mk-ix-the-big-show-campaign/index.json b/site/public/v1/games/dcs-spitfire-lf-mk-ix-the-big-show-campaign/index.json new file mode 100644 index 000000000000..f5baa9e675af --- /dev/null +++ b/site/public/v1/games/dcs-spitfire-lf-mk-ix-the-big-show-campaign/index.json @@ -0,0 +1,29 @@ +{ + "id": 35968, + "slug": "dcs-spitfire-lf-mk-ix-the-big-show-campaign", + "name": "DCS: Spitfire LF Mk.IX The Big Show Campaign", + "release_date": "2019-03-27", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Eagle Dynamics" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097578" + ], + "created_at": "2026-07-10T10:10:07.617517", + "updated_at": "2026-07-10T10:10:07.617517", + "url": "/v1/games/dcs-spitfire-lf-mk-ix-the-big-show-campaign" +} diff --git a/site/public/v1/games/dcs-spitfire-lf-mk-ix/index.json b/site/public/v1/games/dcs-spitfire-lf-mk-ix/index.json new file mode 100644 index 000000000000..24389da08a50 --- /dev/null +++ b/site/public/v1/games/dcs-spitfire-lf-mk-ix/index.json @@ -0,0 +1,31 @@ +{ + "id": 35969, + "slug": "dcs-spitfire-lf-mk-ix", + "name": "DCS: Spitfire LF Mk IX", + "release_date": "2017-09-22", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Eagle Dynamics" + ], + "publishers": [ + "Eagle Dynamics" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097425" + ], + "created_at": "2026-07-10T10:10:07.617517", + "updated_at": "2026-07-10T10:10:07.617517", + "url": "/v1/games/dcs-spitfire-lf-mk-ix" +} diff --git a/site/public/v1/games/dcs-supercarrier/index.json b/site/public/v1/games/dcs-supercarrier/index.json new file mode 100644 index 000000000000..962b3f03b36b --- /dev/null +++ b/site/public/v1/games/dcs-supercarrier/index.json @@ -0,0 +1,31 @@ +{ + "id": 35970, + "slug": "dcs-supercarrier", + "name": "DCS: Supercarrier", + "release_date": "2020-05-20", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Eagle Dynamics" + ], + "publishers": [ + "Eagle Dynamics" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097446" + ], + "created_at": "2026-07-10T10:10:07.618610", + "updated_at": "2026-07-10T10:10:07.618610", + "url": "/v1/games/dcs-supercarrier" +} diff --git a/site/public/v1/games/dcs-syria/index.json b/site/public/v1/games/dcs-syria/index.json new file mode 100644 index 000000000000..7b8a89683d3b --- /dev/null +++ b/site/public/v1/games/dcs-syria/index.json @@ -0,0 +1,31 @@ +{ + "id": 35971, + "slug": "dcs-syria", + "name": "DCS: Syria", + "release_date": "2020-08-20", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Eagle Dynamics" + ], + "publishers": [ + "Eagle Dynamics" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097442" + ], + "created_at": "2026-07-10T10:10:07.618610", + "updated_at": "2026-07-10T10:10:07.618610", + "url": "/v1/games/dcs-syria" +} diff --git a/site/public/v1/games/dcs-the-channel/index.json b/site/public/v1/games/dcs-the-channel/index.json new file mode 100644 index 000000000000..a351ee17a5e2 --- /dev/null +++ b/site/public/v1/games/dcs-the-channel/index.json @@ -0,0 +1,31 @@ +{ + "id": 35972, + "slug": "dcs-the-channel", + "name": "DCS: The Channel", + "release_date": "2020-06-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Eagle Dynamics" + ], + "publishers": [ + "Eagle Dynamics" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097443" + ], + "created_at": "2026-07-10T10:10:07.619613", + "updated_at": "2026-07-10T10:10:07.619613", + "url": "/v1/games/dcs-the-channel" +} diff --git a/site/public/v1/games/dcs-uh-1h-huey-worlds-apart-spring-2025-campaign/index.json b/site/public/v1/games/dcs-uh-1h-huey-worlds-apart-spring-2025-campaign/index.json new file mode 100644 index 000000000000..2a3845010f15 --- /dev/null +++ b/site/public/v1/games/dcs-uh-1h-huey-worlds-apart-spring-2025-campaign/index.json @@ -0,0 +1,29 @@ +{ + "id": 35973, + "slug": "dcs-uh-1h-huey-worlds-apart-spring-2025-campaign", + "name": "DCS: UH-1H Huey - Worlds Apart Spring 2025 Campaign", + "release_date": "2019-11-22", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Eagle Dynamics" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097586" + ], + "created_at": "2026-07-10T10:10:07.619613", + "updated_at": "2026-07-10T10:10:07.619613", + "url": "/v1/games/dcs-uh-1h-huey-worlds-apart-spring-2025-campaign" +} diff --git a/site/public/v1/games/dcs-uh-1h-huey/index.json b/site/public/v1/games/dcs-uh-1h-huey/index.json new file mode 100644 index 000000000000..8a3c1c8e3113 --- /dev/null +++ b/site/public/v1/games/dcs-uh-1h-huey/index.json @@ -0,0 +1,31 @@ +{ + "id": 35974, + "slug": "dcs-uh-1h-huey", + "name": "DCS: UH-1H Huey", + "release_date": "2013-04-30", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Eagle Dynamics" + ], + "publishers": [ + "Eagle Dynamics" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097337" + ], + "created_at": "2026-07-10T10:10:07.619613", + "updated_at": "2026-07-10T10:10:07.619613", + "url": "/v1/games/dcs-uh-1h-huey" +} diff --git a/site/public/v1/games/dcs-uh-1h-paradise-lost-campaign/index.json b/site/public/v1/games/dcs-uh-1h-paradise-lost-campaign/index.json new file mode 100644 index 000000000000..5a9024d0fc98 --- /dev/null +++ b/site/public/v1/games/dcs-uh-1h-paradise-lost-campaign/index.json @@ -0,0 +1,29 @@ +{ + "id": 35975, + "slug": "dcs-uh-1h-paradise-lost-campaign", + "name": "DCS: UH-1H Paradise Lost Campaign", + "release_date": "2022-01-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Eagle Dynamics" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097634" + ], + "created_at": "2026-07-10T10:10:07.620610", + "updated_at": "2026-07-10T10:10:07.620610", + "url": "/v1/games/dcs-uh-1h-paradise-lost-campaign" +} diff --git a/site/public/v1/games/dcs-uh-1h-the-huey-last-show-campaign-by-sorelro/index.json b/site/public/v1/games/dcs-uh-1h-the-huey-last-show-campaign-by-sorelro/index.json new file mode 100644 index 000000000000..6114fde7091e --- /dev/null +++ b/site/public/v1/games/dcs-uh-1h-the-huey-last-show-campaign-by-sorelro/index.json @@ -0,0 +1,29 @@ +{ + "id": 35976, + "slug": "dcs-uh-1h-the-huey-last-show-campaign-by-sorelro", + "name": "DCS: UH-1H The Huey Last Show Campaign by SorelRo", + "release_date": "2023-07-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Eagle Dynamics" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097671" + ], + "created_at": "2026-07-10T10:10:07.620610", + "updated_at": "2026-07-10T10:10:07.620610", + "url": "/v1/games/dcs-uh-1h-the-huey-last-show-campaign-by-sorelro" +} diff --git a/site/public/v1/games/dcs-world-war-ii-assets-pack/index.json b/site/public/v1/games/dcs-world-war-ii-assets-pack/index.json new file mode 100644 index 000000000000..e2072a7500c9 --- /dev/null +++ b/site/public/v1/games/dcs-world-war-ii-assets-pack/index.json @@ -0,0 +1,31 @@ +{ + "id": 35977, + "slug": "dcs-world-war-ii-assets-pack", + "name": "DCS: World War II Assets Pack", + "release_date": "2017-11-23", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Eagle Dynamics" + ], + "publishers": [ + "Eagle Dynamics" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097430" + ], + "created_at": "2026-07-10T10:10:07.620610", + "updated_at": "2026-07-10T10:10:07.620610", + "url": "/v1/games/dcs-world-war-ii-assets-pack" +} diff --git a/site/public/v1/games/dcs-yak-52/index.json b/site/public/v1/games/dcs-yak-52/index.json new file mode 100644 index 000000000000..b11ac422c3d7 --- /dev/null +++ b/site/public/v1/games/dcs-yak-52/index.json @@ -0,0 +1,31 @@ +{ + "id": 35978, + "slug": "dcs-yak-52", + "name": "DCS: Yak-52", + "release_date": "2018-08-03", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Eagle Dynamics" + ], + "publishers": [ + "Eagle Dynamics" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097434" + ], + "created_at": "2026-07-10T10:10:07.620610", + "updated_at": "2026-07-10T10:10:07.620610", + "url": "/v1/games/dcs-yak-52" +} diff --git a/site/public/v1/games/de-digitale-metro/index.json b/site/public/v1/games/de-digitale-metro/index.json new file mode 100644 index 000000000000..e1078a639919 --- /dev/null +++ b/site/public/v1/games/de-digitale-metro/index.json @@ -0,0 +1,25 @@ +{ + "id": 35996, + "slug": "de-digitale-metro", + "name": "De Digitale Metro", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2185688" + ], + "created_at": "2026-07-10T10:10:07.625603", + "updated_at": "2026-07-10T10:10:07.625603", + "url": "/v1/games/de-digitale-metro" +} diff --git a/site/public/v1/games/dead-by-daylight-a-binding-of-kin-chapter/index.json b/site/public/v1/games/dead-by-daylight-a-binding-of-kin-chapter/index.json new file mode 100644 index 000000000000..30ef362f121c --- /dev/null +++ b/site/public/v1/games/dead-by-daylight-a-binding-of-kin-chapter/index.json @@ -0,0 +1,33 @@ +{ + "id": 36036, + "slug": "dead-by-daylight-a-binding-of-kin-chapter", + "name": "Dead by Daylight - A Binding of Kin Chapter", + "release_date": "2020-12-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "survival horror" + ], + "stores": [], + "developers": [ + "Behaviour Interactive" + ], + "publishers": [ + "Behaviour Interactive" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125761009" + ], + "created_at": "2026-07-10T10:10:07.636526", + "updated_at": "2026-07-10T10:10:07.636526", + "url": "/v1/games/dead-by-daylight-a-binding-of-kin-chapter" +} diff --git a/site/public/v1/games/dead-by-daylight-all-kill-chapter/index.json b/site/public/v1/games/dead-by-daylight-all-kill-chapter/index.json new file mode 100644 index 000000000000..3b035b98d49e --- /dev/null +++ b/site/public/v1/games/dead-by-daylight-all-kill-chapter/index.json @@ -0,0 +1,33 @@ +{ + "id": 36037, + "slug": "dead-by-daylight-all-kill-chapter", + "name": "Dead by Daylight - All-Kill Chapter", + "release_date": "2021-03-30", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "survival horror" + ], + "stores": [], + "developers": [ + "Behaviour Interactive" + ], + "publishers": [ + "Behaviour Interactive" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125760955" + ], + "created_at": "2026-07-10T10:10:07.636526", + "updated_at": "2026-07-10T10:10:07.636526", + "url": "/v1/games/dead-by-daylight-all-kill-chapter" +} diff --git a/site/public/v1/games/dead-by-daylight-bloodstained-sack/index.json b/site/public/v1/games/dead-by-daylight-bloodstained-sack/index.json new file mode 100644 index 000000000000..f6a92ac3fa3f --- /dev/null +++ b/site/public/v1/games/dead-by-daylight-bloodstained-sack/index.json @@ -0,0 +1,27 @@ +{ + "id": 36038, + "slug": "dead-by-daylight-bloodstained-sack", + "name": "Dead by Daylight: Bloodstained Sack", + "release_date": "2016-11-17", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q98802595" + ], + "created_at": "2026-07-10T10:10:07.636526", + "updated_at": "2026-07-10T10:10:07.636526", + "url": "/v1/games/dead-by-daylight-bloodstained-sack" +} diff --git a/site/public/v1/games/dead-by-daylight-descend-beyond-chapter/index.json b/site/public/v1/games/dead-by-daylight-descend-beyond-chapter/index.json new file mode 100644 index 000000000000..56ef5256e504 --- /dev/null +++ b/site/public/v1/games/dead-by-daylight-descend-beyond-chapter/index.json @@ -0,0 +1,33 @@ +{ + "id": 36039, + "slug": "dead-by-daylight-descend-beyond-chapter", + "name": "Dead by Daylight - Descend Beyond chapter", + "release_date": "2020-09-08", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "survival horror" + ], + "stores": [], + "developers": [ + "Behaviour Interactive" + ], + "publishers": [ + "Behaviour Interactive" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125769048" + ], + "created_at": "2026-07-10T10:10:07.636526", + "updated_at": "2026-07-10T10:10:07.636526", + "url": "/v1/games/dead-by-daylight-descend-beyond-chapter" +} diff --git a/site/public/v1/games/dead-by-daylight-end-transmission-chapter/index.json b/site/public/v1/games/dead-by-daylight-end-transmission-chapter/index.json new file mode 100644 index 000000000000..f0433712fd42 --- /dev/null +++ b/site/public/v1/games/dead-by-daylight-end-transmission-chapter/index.json @@ -0,0 +1,33 @@ +{ + "id": 36040, + "slug": "dead-by-daylight-end-transmission-chapter", + "name": "Dead by Daylight - End Transmission Chapter", + "release_date": "2023-06-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "survival horror" + ], + "stores": [], + "developers": [ + "Behaviour Interactive" + ], + "publishers": [ + "Behaviour Interactive" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125569895" + ], + "created_at": "2026-07-10T10:10:07.636526", + "updated_at": "2026-07-10T10:10:07.636526", + "url": "/v1/games/dead-by-daylight-end-transmission-chapter" +} diff --git a/site/public/v1/games/dead-by-daylight-escape-expansion-pack/index.json b/site/public/v1/games/dead-by-daylight-escape-expansion-pack/index.json new file mode 100644 index 000000000000..26fef659695d --- /dev/null +++ b/site/public/v1/games/dead-by-daylight-escape-expansion-pack/index.json @@ -0,0 +1,33 @@ +{ + "id": 36041, + "slug": "dead-by-daylight-escape-expansion-pack", + "name": "Dead by Daylight - Escape Expansion Pack", + "release_date": "2021-06-15", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "survival horror" + ], + "stores": [], + "developers": [ + "Behaviour Interactive" + ], + "publishers": [ + "Behaviour Interactive" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125760801" + ], + "created_at": "2026-07-10T10:10:07.637529", + "updated_at": "2026-07-10T10:10:07.637529", + "url": "/v1/games/dead-by-daylight-escape-expansion-pack" +} diff --git a/site/public/v1/games/dead-by-daylight-forged-in-fog-chapter/index.json b/site/public/v1/games/dead-by-daylight-forged-in-fog-chapter/index.json new file mode 100644 index 000000000000..4dbf0dedf567 --- /dev/null +++ b/site/public/v1/games/dead-by-daylight-forged-in-fog-chapter/index.json @@ -0,0 +1,33 @@ +{ + "id": 36042, + "slug": "dead-by-daylight-forged-in-fog-chapter", + "name": "Dead by Daylight - Forged in Fog Chapter", + "release_date": "2022-11-22", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "survival horror" + ], + "stores": [], + "developers": [ + "Behaviour Interactive" + ], + "publishers": [ + "Behaviour Interactive" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125570381" + ], + "created_at": "2026-07-10T10:10:07.637529", + "updated_at": "2026-07-10T10:10:07.637529", + "url": "/v1/games/dead-by-daylight-forged-in-fog-chapter" +} diff --git a/site/public/v1/games/dead-by-daylight-hellraiser-chapter/index.json b/site/public/v1/games/dead-by-daylight-hellraiser-chapter/index.json new file mode 100644 index 000000000000..fb78adcf6139 --- /dev/null +++ b/site/public/v1/games/dead-by-daylight-hellraiser-chapter/index.json @@ -0,0 +1,33 @@ +{ + "id": 36043, + "slug": "dead-by-daylight-hellraiser-chapter", + "name": "Dead by Daylight - Hellraiser chapter", + "release_date": "2021-09-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "survival horror" + ], + "stores": [], + "developers": [ + "Behaviour Interactive" + ], + "publishers": [ + "Behaviour Interactive" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125760779" + ], + "created_at": "2026-07-10T10:10:07.637529", + "updated_at": "2026-07-10T10:10:07.637529", + "url": "/v1/games/dead-by-daylight-hellraiser-chapter" +} diff --git a/site/public/v1/games/dead-by-daylight-hour-of-the-witch-chapter/index.json b/site/public/v1/games/dead-by-daylight-hour-of-the-witch-chapter/index.json new file mode 100644 index 000000000000..b5400f309c50 --- /dev/null +++ b/site/public/v1/games/dead-by-daylight-hour-of-the-witch-chapter/index.json @@ -0,0 +1,33 @@ +{ + "id": 36044, + "slug": "dead-by-daylight-hour-of-the-witch-chapter", + "name": "Dead by Daylight - Hour of the Witch Chapter", + "release_date": "2021-10-19", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "survival horror" + ], + "stores": [], + "developers": [ + "Behaviour Interactive" + ], + "publishers": [ + "Behaviour Interactive" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125760775" + ], + "created_at": "2026-07-10T10:10:07.637529", + "updated_at": "2026-07-10T10:10:07.637529", + "url": "/v1/games/dead-by-daylight-hour-of-the-witch-chapter" +} diff --git a/site/public/v1/games/dead-by-daylight-nicolas-cage-chapter-pack/index.json b/site/public/v1/games/dead-by-daylight-nicolas-cage-chapter-pack/index.json new file mode 100644 index 000000000000..7e99b653d6b3 --- /dev/null +++ b/site/public/v1/games/dead-by-daylight-nicolas-cage-chapter-pack/index.json @@ -0,0 +1,33 @@ +{ + "id": 36045, + "slug": "dead-by-daylight-nicolas-cage-chapter-pack", + "name": "Dead by Daylight - Nicolas Cage Chapter Pack", + "release_date": "2023-07-25", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "survival horror" + ], + "stores": [], + "developers": [ + "Behaviour Interactive" + ], + "publishers": [ + "Behaviour Interactive" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125569713" + ], + "created_at": "2026-07-10T10:10:07.637529", + "updated_at": "2026-07-10T10:10:07.637529", + "url": "/v1/games/dead-by-daylight-nicolas-cage-chapter-pack" +} diff --git a/site/public/v1/games/dead-by-daylight-portrait-of-a-murder/index.json b/site/public/v1/games/dead-by-daylight-portrait-of-a-murder/index.json new file mode 100644 index 000000000000..1795bf74995c --- /dev/null +++ b/site/public/v1/games/dead-by-daylight-portrait-of-a-murder/index.json @@ -0,0 +1,33 @@ +{ + "id": 36046, + "slug": "dead-by-daylight-portrait-of-a-murder", + "name": "Dead by Daylight - Portrait of a Murder", + "release_date": "2021-11-30", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "survival horror" + ], + "stores": [], + "developers": [ + "Behaviour Interactive" + ], + "publishers": [ + "Behaviour Interactive" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125570488" + ], + "created_at": "2026-07-10T10:10:07.638530", + "updated_at": "2026-07-10T10:10:07.638530", + "url": "/v1/games/dead-by-daylight-portrait-of-a-murder" +} diff --git a/site/public/v1/games/dead-by-daylight-resident-evil-chapter/index.json b/site/public/v1/games/dead-by-daylight-resident-evil-chapter/index.json new file mode 100644 index 000000000000..64e3fdc892ae --- /dev/null +++ b/site/public/v1/games/dead-by-daylight-resident-evil-chapter/index.json @@ -0,0 +1,33 @@ +{ + "id": 36047, + "slug": "dead-by-daylight-resident-evil-chapter", + "name": "Dead by Daylight - Resident Evil Chapter", + "release_date": "2021-06-15", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "survival horror" + ], + "stores": [], + "developers": [ + "Behaviour Interactive" + ], + "publishers": [ + "Behaviour Interactive" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125760789" + ], + "created_at": "2026-07-10T10:10:07.638530", + "updated_at": "2026-07-10T10:10:07.638530", + "url": "/v1/games/dead-by-daylight-resident-evil-chapter" +} diff --git a/site/public/v1/games/dead-by-daylight-resident-evil-project-w-chapter/index.json b/site/public/v1/games/dead-by-daylight-resident-evil-project-w-chapter/index.json new file mode 100644 index 000000000000..6918bbd0037f --- /dev/null +++ b/site/public/v1/games/dead-by-daylight-resident-evil-project-w-chapter/index.json @@ -0,0 +1,33 @@ +{ + "id": 36048, + "slug": "dead-by-daylight-resident-evil-project-w-chapter", + "name": "Dead by Daylight - Resident Evil: PROJECT W Chapter", + "release_date": "2022-08-30", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "survival horror" + ], + "stores": [], + "developers": [ + "Behaviour Interactive" + ], + "publishers": [ + "Behaviour Interactive" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125570392" + ], + "created_at": "2026-07-10T10:10:07.638530", + "updated_at": "2026-07-10T10:10:07.638530", + "url": "/v1/games/dead-by-daylight-resident-evil-project-w-chapter" +} diff --git a/site/public/v1/games/dead-by-daylight-roots-of-dread-chapter/index.json b/site/public/v1/games/dead-by-daylight-roots-of-dread-chapter/index.json new file mode 100644 index 000000000000..1656632475d8 --- /dev/null +++ b/site/public/v1/games/dead-by-daylight-roots-of-dread-chapter/index.json @@ -0,0 +1,33 @@ +{ + "id": 36049, + "slug": "dead-by-daylight-roots-of-dread-chapter", + "name": "Dead by Daylight - Roots of Dread Chapter", + "release_date": "2022-06-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "survival horror" + ], + "stores": [], + "developers": [ + "Behaviour Interactive" + ], + "publishers": [ + "Behaviour Interactive" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125570424" + ], + "created_at": "2026-07-10T10:10:07.638530", + "updated_at": "2026-07-10T10:10:07.638530", + "url": "/v1/games/dead-by-daylight-roots-of-dread-chapter" +} diff --git a/site/public/v1/games/dead-by-daylight-sadako-rising-chapter/index.json b/site/public/v1/games/dead-by-daylight-sadako-rising-chapter/index.json new file mode 100644 index 000000000000..90ef8073f310 --- /dev/null +++ b/site/public/v1/games/dead-by-daylight-sadako-rising-chapter/index.json @@ -0,0 +1,33 @@ +{ + "id": 36050, + "slug": "dead-by-daylight-sadako-rising-chapter", + "name": "Dead by Daylight - Sadako Rising Chapter", + "release_date": "2022-03-08", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "survival horror" + ], + "stores": [], + "developers": [ + "Behaviour Interactive" + ], + "publishers": [ + "Behaviour Interactive" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125570431" + ], + "created_at": "2026-07-10T10:10:07.638530", + "updated_at": "2026-07-10T10:10:07.638530", + "url": "/v1/games/dead-by-daylight-sadako-rising-chapter" +} diff --git a/site/public/v1/games/dead-by-daylight-terror-expansion-pack/index.json b/site/public/v1/games/dead-by-daylight-terror-expansion-pack/index.json new file mode 100644 index 000000000000..30fea01bb48c --- /dev/null +++ b/site/public/v1/games/dead-by-daylight-terror-expansion-pack/index.json @@ -0,0 +1,33 @@ +{ + "id": 36051, + "slug": "dead-by-daylight-terror-expansion-pack", + "name": "Dead by Daylight - Terror Expansion Pack", + "release_date": "2021-06-15", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "survival horror" + ], + "stores": [], + "developers": [ + "Behaviour Interactive" + ], + "publishers": [ + "Behaviour Interactive" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125760940" + ], + "created_at": "2026-07-10T10:10:07.638530", + "updated_at": "2026-07-10T10:10:07.638530", + "url": "/v1/games/dead-by-daylight-terror-expansion-pack" +} diff --git a/site/public/v1/games/dead-by-daylight-tools-of-torment-chapter/index.json b/site/public/v1/games/dead-by-daylight-tools-of-torment-chapter/index.json new file mode 100644 index 000000000000..c87d90455e95 --- /dev/null +++ b/site/public/v1/games/dead-by-daylight-tools-of-torment-chapter/index.json @@ -0,0 +1,33 @@ +{ + "id": 36052, + "slug": "dead-by-daylight-tools-of-torment-chapter", + "name": "Dead by Daylight - Tools of Torment Chapter", + "release_date": "2023-03-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "survival horror" + ], + "stores": [], + "developers": [ + "Behaviour Interactive" + ], + "publishers": [ + "Behaviour Interactive" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125570363" + ], + "created_at": "2026-07-10T10:10:07.639530", + "updated_at": "2026-07-10T10:10:07.639530", + "url": "/v1/games/dead-by-daylight-tools-of-torment-chapter" +} diff --git a/site/public/v1/games/dead-by-daylight-x-attack-on-titan-armored-pack/index.json b/site/public/v1/games/dead-by-daylight-x-attack-on-titan-armored-pack/index.json new file mode 100644 index 000000000000..5259ec5d8622 --- /dev/null +++ b/site/public/v1/games/dead-by-daylight-x-attack-on-titan-armored-pack/index.json @@ -0,0 +1,33 @@ +{ + "id": 36053, + "slug": "dead-by-daylight-x-attack-on-titan-armored-pack", + "name": "Dead by Daylight x Attack on Titan: Armored Pack", + "release_date": "2023-06-19", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "survival horror" + ], + "stores": [], + "developers": [ + "Behaviour Interactive" + ], + "publishers": [ + "Behaviour Interactive" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125569811" + ], + "created_at": "2026-07-10T10:10:07.639530", + "updated_at": "2026-07-10T10:10:07.639530", + "url": "/v1/games/dead-by-daylight-x-attack-on-titan-armored-pack" +} diff --git a/site/public/v1/games/dead-by-daylight-x-attack-on-titan-war-hammer-pack/index.json b/site/public/v1/games/dead-by-daylight-x-attack-on-titan-war-hammer-pack/index.json new file mode 100644 index 000000000000..10d47e319a36 --- /dev/null +++ b/site/public/v1/games/dead-by-daylight-x-attack-on-titan-war-hammer-pack/index.json @@ -0,0 +1,33 @@ +{ + "id": 36054, + "slug": "dead-by-daylight-x-attack-on-titan-war-hammer-pack", + "name": "Dead by Daylight x Attack on Titan: War Hammer Pack", + "release_date": "2023-06-19", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "survival horror" + ], + "stores": [], + "developers": [ + "Behaviour Interactive" + ], + "publishers": [ + "Behaviour Interactive" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125569791" + ], + "created_at": "2026-07-10T10:10:07.639530", + "updated_at": "2026-07-10T10:10:07.639530", + "url": "/v1/games/dead-by-daylight-x-attack-on-titan-war-hammer-pack" +} diff --git a/site/public/v1/games/dead-cells-fatal-falls/index.json b/site/public/v1/games/dead-cells-fatal-falls/index.json new file mode 100644 index 000000000000..f003657c475e --- /dev/null +++ b/site/public/v1/games/dead-cells-fatal-falls/index.json @@ -0,0 +1,34 @@ +{ + "id": 36060, + "slug": "dead-cells-fatal-falls", + "name": "Dead Cells: Fatal Falls", + "release_date": "2021-01-26", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 4", + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Evil Empire", + "Motion Twin" + ], + "publishers": [ + "Motion Twin" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q104793373" + ], + "created_at": "2026-07-10T10:10:07.641588", + "updated_at": "2026-07-10T10:10:07.641588", + "url": "/v1/games/dead-cells-fatal-falls" +} diff --git a/site/public/v1/games/dead-cells-q115625161/index.json b/site/public/v1/games/dead-cells-q115625161/index.json new file mode 100644 index 000000000000..2359ed7f3c2a --- /dev/null +++ b/site/public/v1/games/dead-cells-q115625161/index.json @@ -0,0 +1,31 @@ +{ + "id": 36061, + "slug": "dead-cells-q115625161", + "name": "Dead Cells+", + "release_date": "2022-12-02", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "iPadOS", + "tvOS", + "iOS" + ], + "genres": [], + "stores": [], + "developers": [ + "Playdigious" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115625161" + ], + "created_at": "2026-07-10T10:10:07.641588", + "updated_at": "2026-07-10T10:10:07.641588", + "url": "/v1/games/dead-cells-q115625161" +} diff --git a/site/public/v1/games/dead-cells-rise-of-the-giant/index.json b/site/public/v1/games/dead-cells-rise-of-the-giant/index.json new file mode 100644 index 000000000000..e548ebfeaa2f --- /dev/null +++ b/site/public/v1/games/dead-cells-rise-of-the-giant/index.json @@ -0,0 +1,25 @@ +{ + "id": 36062, + "slug": "dead-cells-rise-of-the-giant", + "name": "Dead Cells: Rise of the Giant", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q96239094" + ], + "created_at": "2026-07-10T10:10:07.641588", + "updated_at": "2026-07-10T10:10:07.641588", + "url": "/v1/games/dead-cells-rise-of-the-giant" +} diff --git a/site/public/v1/games/dead-cells-the-bad-seed/index.json b/site/public/v1/games/dead-cells-the-bad-seed/index.json new file mode 100644 index 000000000000..fe9505b47fa3 --- /dev/null +++ b/site/public/v1/games/dead-cells-the-bad-seed/index.json @@ -0,0 +1,34 @@ +{ + "id": 36063, + "slug": "dead-cells-the-bad-seed", + "name": "Dead Cells: The Bad Seed", + "release_date": "2020-02-11", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows", + "PlayStation 4" + ], + "genres": [], + "stores": [], + "developers": [ + "Evil Empire", + "Motion Twin" + ], + "publishers": [ + "Motion Twin" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q96239073" + ], + "created_at": "2026-07-10T10:10:07.641588", + "updated_at": "2026-07-10T10:10:07.641588", + "url": "/v1/games/dead-cells-the-bad-seed" +} diff --git a/site/public/v1/games/dead-cells-the-queen-and-the-sea/index.json b/site/public/v1/games/dead-cells-the-queen-and-the-sea/index.json new file mode 100644 index 000000000000..6ae370189f7e --- /dev/null +++ b/site/public/v1/games/dead-cells-the-queen-and-the-sea/index.json @@ -0,0 +1,37 @@ +{ + "id": 36064, + "slug": "dead-cells-the-queen-and-the-sea", + "name": "Dead Cells: The Queen and the Sea", + "release_date": "2022-01-06", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 4", + "macOS", + "Microsoft Windows" + ], + "genres": [ + "roguelite" + ], + "stores": [], + "developers": [ + "Evil Empire", + "Motion Twin" + ], + "publishers": [ + "Motion Twin" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109857533" + ], + "created_at": "2026-07-10T10:10:07.641588", + "updated_at": "2026-07-10T10:10:07.641588", + "url": "/v1/games/dead-cells-the-queen-and-the-sea" +} diff --git a/site/public/v1/games/dead-island-3/index.json b/site/public/v1/games/dead-island-3/index.json new file mode 100644 index 000000000000..321a7e2e5573 --- /dev/null +++ b/site/public/v1/games/dead-island-3/index.json @@ -0,0 +1,25 @@ +{ + "id": 36162, + "slug": "dead-island-3", + "name": "Dead Island 3", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118176561" + ], + "created_at": "2026-07-10T10:10:07.667575", + "updated_at": "2026-07-10T10:10:07.667575", + "url": "/v1/games/dead-island-3" +} diff --git a/site/public/v1/games/dead-island-epidemic/index.json b/site/public/v1/games/dead-island-epidemic/index.json new file mode 100644 index 000000000000..fa5cae7e8c08 --- /dev/null +++ b/site/public/v1/games/dead-island-epidemic/index.json @@ -0,0 +1,34 @@ +{ + "id": 36165, + "slug": "dead-island-epidemic", + "name": "Dead Island: Epidemic", + "release_date": "2014-05-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "real-time strategy", + "multiplayer online battle arena" + ], + "stores": [], + "developers": [ + "Stunlock Studios" + ], + "publishers": [ + "Deep Silver" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q61475221" + ], + "created_at": "2026-07-10T10:10:07.668577", + "updated_at": "2026-07-10T10:10:07.668577", + "url": "/v1/games/dead-island-epidemic" +} diff --git a/site/public/v1/games/dead-or-alive-6-core-fighters-20-character-set/index.json b/site/public/v1/games/dead-or-alive-6-core-fighters-20-character-set/index.json new file mode 100644 index 000000000000..06cfae048573 --- /dev/null +++ b/site/public/v1/games/dead-or-alive-6-core-fighters-20-character-set/index.json @@ -0,0 +1,34 @@ +{ + "id": 36217, + "slug": "dead-or-alive-6-core-fighters-20-character-set", + "name": "Dead or Alive 6: Core Fighters 20 Character Set", + "release_date": "2019-03-15", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "fighting game" + ], + "stores": [], + "developers": [ + "Team Ninja" + ], + "publishers": [ + "Koei Tecmo Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115312337" + ], + "created_at": "2026-07-10T10:10:07.681609", + "updated_at": "2026-07-10T10:10:07.681609", + "url": "/v1/games/dead-or-alive-6-core-fighters-20-character-set" +} diff --git a/site/public/v1/games/dead-or-alive-6-season-pass-1/index.json b/site/public/v1/games/dead-or-alive-6-season-pass-1/index.json new file mode 100644 index 000000000000..c1d5c7e6daef --- /dev/null +++ b/site/public/v1/games/dead-or-alive-6-season-pass-1/index.json @@ -0,0 +1,34 @@ +{ + "id": 36220, + "slug": "dead-or-alive-6-season-pass-1", + "name": "Dead or Alive 6 Season Pass 1", + "release_date": "2019-03-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "fighting game" + ], + "stores": [], + "developers": [ + "Team Ninja" + ], + "publishers": [ + "Koei Tecmo Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115312818" + ], + "created_at": "2026-07-10T10:10:07.682585", + "updated_at": "2026-07-10T10:10:07.682585", + "url": "/v1/games/dead-or-alive-6-season-pass-1" +} diff --git a/site/public/v1/games/dead-or-alive-6-season-pass-2/index.json b/site/public/v1/games/dead-or-alive-6-season-pass-2/index.json new file mode 100644 index 000000000000..b7a4237a2057 --- /dev/null +++ b/site/public/v1/games/dead-or-alive-6-season-pass-2/index.json @@ -0,0 +1,34 @@ +{ + "id": 36221, + "slug": "dead-or-alive-6-season-pass-2", + "name": "Dead or Alive 6 Season Pass 2", + "release_date": "2019-07-22", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "fighting game" + ], + "stores": [], + "developers": [ + "Team Ninja" + ], + "publishers": [ + "Koei Tecmo Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115312924" + ], + "created_at": "2026-07-10T10:10:07.682585", + "updated_at": "2026-07-10T10:10:07.682585", + "url": "/v1/games/dead-or-alive-6-season-pass-2" +} diff --git a/site/public/v1/games/dead-or-alive-6-season-pass-3/index.json b/site/public/v1/games/dead-or-alive-6-season-pass-3/index.json new file mode 100644 index 000000000000..c8c5011026c1 --- /dev/null +++ b/site/public/v1/games/dead-or-alive-6-season-pass-3/index.json @@ -0,0 +1,34 @@ +{ + "id": 36222, + "slug": "dead-or-alive-6-season-pass-3", + "name": "Dead or Alive 6 Season Pass 3", + "release_date": "2019-10-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "fighting game" + ], + "stores": [], + "developers": [ + "Team Ninja" + ], + "publishers": [ + "Koei Tecmo Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115312975" + ], + "created_at": "2026-07-10T10:10:07.682585", + "updated_at": "2026-07-10T10:10:07.682585", + "url": "/v1/games/dead-or-alive-6-season-pass-3" +} diff --git a/site/public/v1/games/dead-or-alive-6-season-pass-4/index.json b/site/public/v1/games/dead-or-alive-6-season-pass-4/index.json new file mode 100644 index 000000000000..3a704a456c11 --- /dev/null +++ b/site/public/v1/games/dead-or-alive-6-season-pass-4/index.json @@ -0,0 +1,34 @@ +{ + "id": 36223, + "slug": "dead-or-alive-6-season-pass-4", + "name": "Dead or Alive 6 Season Pass 4", + "release_date": "2020-01-20", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "fighting game" + ], + "stores": [], + "developers": [ + "Team Ninja" + ], + "publishers": [ + "Koei Tecmo Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115313151" + ], + "created_at": "2026-07-10T10:10:07.682585", + "updated_at": "2026-07-10T10:10:07.682585", + "url": "/v1/games/dead-or-alive-6-season-pass-4" +} diff --git a/site/public/v1/games/dead-or-alive-6-story-unlock-key/index.json b/site/public/v1/games/dead-or-alive-6-story-unlock-key/index.json new file mode 100644 index 000000000000..e6513e8b85e3 --- /dev/null +++ b/site/public/v1/games/dead-or-alive-6-story-unlock-key/index.json @@ -0,0 +1,34 @@ +{ + "id": 36224, + "slug": "dead-or-alive-6-story-unlock-key", + "name": "Dead or Alive 6: Story Unlock Key", + "release_date": "2019-03-15", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "fighting game" + ], + "stores": [], + "developers": [ + "Team Ninja" + ], + "publishers": [ + "Koei Tecmo Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115312697" + ], + "created_at": "2026-07-10T10:10:07.682585", + "updated_at": "2026-07-10T10:10:07.682585", + "url": "/v1/games/dead-or-alive-6-story-unlock-key" +} diff --git a/site/public/v1/games/dead-or-alive-code-chronos/index.json b/site/public/v1/games/dead-or-alive-code-chronos/index.json new file mode 100644 index 000000000000..60eebd66d136 --- /dev/null +++ b/site/public/v1/games/dead-or-alive-code-chronos/index.json @@ -0,0 +1,31 @@ +{ + "id": 36226, + "slug": "dead-or-alive-code-chronos", + "name": "Dead or Alive: Code Chronos", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "fighting game" + ], + "stores": [], + "developers": [ + "Team Ninja" + ], + "publishers": [ + "Tecmo" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5245507" + ], + "created_at": "2026-07-10T10:10:07.683586", + "updated_at": "2026-07-10T10:10:07.683586", + "url": "/v1/games/dead-or-alive-code-chronos" +} diff --git a/site/public/v1/games/dead-or-alive-new-project/index.json b/site/public/v1/games/dead-or-alive-new-project/index.json new file mode 100644 index 000000000000..924d1a2a7529 --- /dev/null +++ b/site/public/v1/games/dead-or-alive-new-project/index.json @@ -0,0 +1,33 @@ +{ + "id": 36228, + "slug": "dead-or-alive-new-project", + "name": "Dead or Alive New Project", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 5" + ], + "genres": [ + "3D fighting game" + ], + "stores": [], + "developers": [ + "Team Ninja" + ], + "publishers": [ + "Koei Tecmo Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138242017" + ], + "created_at": "2026-07-10T10:10:07.683586", + "updated_at": "2026-07-10T10:10:07.683586", + "url": "/v1/games/dead-or-alive-new-project" +} diff --git a/site/public/v1/games/dead-rails/index.json b/site/public/v1/games/dead-rails/index.json new file mode 100644 index 000000000000..d28736831fc3 --- /dev/null +++ b/site/public/v1/games/dead-rails/index.json @@ -0,0 +1,30 @@ +{ + "id": 36256, + "slug": "dead-rails", + "name": "Dead Rails", + "release_date": "2025-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "adventure video game", + "survival game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134732937" + ], + "created_at": "2026-07-10T10:10:07.690599", + "updated_at": "2026-07-10T10:10:07.690599", + "url": "/v1/games/dead-rails" +} diff --git a/site/public/v1/games/dead-rising-triple-bundle-pack/index.json b/site/public/v1/games/dead-rising-triple-bundle-pack/index.json new file mode 100644 index 000000000000..95913d42e039 --- /dev/null +++ b/site/public/v1/games/dead-rising-triple-bundle-pack/index.json @@ -0,0 +1,31 @@ +{ + "id": 36275, + "slug": "dead-rising-triple-bundle-pack", + "name": "Dead Rising Triple Bundle Pack", + "release_date": "2016-09-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Capcom" + ], + "publishers": [ + "Capcom" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q92203721" + ], + "created_at": "2026-07-10T10:10:07.694527", + "updated_at": "2026-07-10T10:10:07.694527", + "url": "/v1/games/dead-rising-triple-bundle-pack" +} diff --git a/site/public/v1/games/dead-to-rights-retribution/index.json b/site/public/v1/games/dead-to-rights-retribution/index.json new file mode 100644 index 000000000000..3a4f8a47a957 --- /dev/null +++ b/site/public/v1/games/dead-to-rights-retribution/index.json @@ -0,0 +1,34 @@ +{ + "id": 36324, + "slug": "dead-to-rights-retribution", + "name": "Dead to Rights: Retribution", + "release_date": "2010-04-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 3" + ], + "genres": [ + "action game", + "third-person shooter" + ], + "stores": [], + "developers": [ + "Volatile Games" + ], + "publishers": [ + "Bandai Namco Entertainment" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5245520" + ], + "created_at": "2026-07-10T10:10:07.706717", + "updated_at": "2026-07-10T10:10:07.706717", + "url": "/v1/games/dead-to-rights-retribution" +} diff --git a/site/public/v1/games/deadcraft-deluxe-edition/index.json b/site/public/v1/games/deadcraft-deluxe-edition/index.json new file mode 100644 index 000000000000..bcca5e1f8822 --- /dev/null +++ b/site/public/v1/games/deadcraft-deluxe-edition/index.json @@ -0,0 +1,31 @@ +{ + "id": 36367, + "slug": "deadcraft-deluxe-edition", + "name": "Deadcraft Deluxe Edition", + "release_date": "2022-05-19", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S" + ], + "genres": [], + "stores": [], + "developers": [ + "Marvelous" + ], + "publishers": [ + "Marvelous" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112925991" + ], + "created_at": "2026-07-10T10:10:07.718270", + "updated_at": "2026-07-10T10:10:07.718270", + "url": "/v1/games/deadcraft-deluxe-edition" +} diff --git a/site/public/v1/games/deathsmiles-i-ii/index.json b/site/public/v1/games/deathsmiles-i-ii/index.json new file mode 100644 index 000000000000..69c75c210811 --- /dev/null +++ b/site/public/v1/games/deathsmiles-i-ii/index.json @@ -0,0 +1,27 @@ +{ + "id": 36870, + "slug": "deathsmiles-i-ii", + "name": "Deathsmiles I & II", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "horizontally scrolling shooter" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137362876" + ], + "created_at": "2026-07-10T10:10:07.866076", + "updated_at": "2026-07-10T10:10:07.866076", + "url": "/v1/games/deathsmiles-i-ii" +} diff --git a/site/public/v1/games/decision-at-djerba/index.json b/site/public/v1/games/decision-at-djerba/index.json new file mode 100644 index 000000000000..6c01fefac317 --- /dev/null +++ b/site/public/v1/games/decision-at-djerba/index.json @@ -0,0 +1,27 @@ +{ + "id": 36980, + "slug": "decision-at-djerba", + "name": "Decision at Djerba", + "release_date": "1984-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Fantasy Games Unlimited" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134996103" + ], + "created_at": "2026-07-10T10:10:07.910178", + "updated_at": "2026-07-10T10:10:07.910178", + "url": "/v1/games/decision-at-djerba" +} diff --git a/site/public/v1/games/deck-of-ashes-complete-edition/index.json b/site/public/v1/games/deck-of-ashes-complete-edition/index.json new file mode 100644 index 000000000000..6811c3fc9c6f --- /dev/null +++ b/site/public/v1/games/deck-of-ashes-complete-edition/index.json @@ -0,0 +1,31 @@ +{ + "id": 37013, + "slug": "deck-of-ashes-complete-edition", + "name": "Deck of Ashes: Complete Edition", + "release_date": "2022-04-21", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S" + ], + "genres": [], + "stores": [], + "developers": [ + "AY Games" + ], + "publishers": [ + "Buka Entertainment" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111845209" + ], + "created_at": "2026-07-10T10:10:07.919464", + "updated_at": "2026-07-10T10:10:07.919464", + "url": "/v1/games/deck-of-ashes-complete-edition" +} diff --git a/site/public/v1/games/deep-rock-galactic-dark-future-pack/index.json b/site/public/v1/games/deep-rock-galactic-dark-future-pack/index.json new file mode 100644 index 000000000000..73030076f22c --- /dev/null +++ b/site/public/v1/games/deep-rock-galactic-dark-future-pack/index.json @@ -0,0 +1,31 @@ +{ + "id": 37201, + "slug": "deep-rock-galactic-dark-future-pack", + "name": "Deep Rock Galactic - Dark Future Pack", + "release_date": "2020-05-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Ghost Ship Games" + ], + "publishers": [ + "Coffee Stain Studios" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113179275" + ], + "created_at": "2026-07-10T10:10:07.970461", + "updated_at": "2026-07-10T10:10:07.970461", + "url": "/v1/games/deep-rock-galactic-dark-future-pack" +} diff --git a/site/public/v1/games/deep-rock-galactic-dawn-of-the-dread-pack/index.json b/site/public/v1/games/deep-rock-galactic-dawn-of-the-dread-pack/index.json new file mode 100644 index 000000000000..fd63468f7438 --- /dev/null +++ b/site/public/v1/games/deep-rock-galactic-dawn-of-the-dread-pack/index.json @@ -0,0 +1,31 @@ +{ + "id": 37202, + "slug": "deep-rock-galactic-dawn-of-the-dread-pack", + "name": "Deep Rock Galactic - Dawn of the Dread Pack", + "release_date": "2021-02-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Ghost Ship Games" + ], + "publishers": [ + "Coffee Stain Studios" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113179345" + ], + "created_at": "2026-07-10T10:10:07.970461", + "updated_at": "2026-07-10T10:10:07.970461", + "url": "/v1/games/deep-rock-galactic-dawn-of-the-dread-pack" +} diff --git a/site/public/v1/games/deep-rock-galactic-megacorp-pack/index.json b/site/public/v1/games/deep-rock-galactic-megacorp-pack/index.json new file mode 100644 index 000000000000..db6c5edc94a3 --- /dev/null +++ b/site/public/v1/games/deep-rock-galactic-megacorp-pack/index.json @@ -0,0 +1,31 @@ +{ + "id": 37203, + "slug": "deep-rock-galactic-megacorp-pack", + "name": "Deep Rock Galactic - MegaCorp Pack", + "release_date": "2020-05-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Ghost Ship Games" + ], + "publishers": [ + "Coffee Stain Studios" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113179295" + ], + "created_at": "2026-07-10T10:10:07.970461", + "updated_at": "2026-07-10T10:10:07.970461", + "url": "/v1/games/deep-rock-galactic-megacorp-pack" +} diff --git a/site/public/v1/games/deep-rock-galactic-rival-tech-pack/index.json b/site/public/v1/games/deep-rock-galactic-rival-tech-pack/index.json new file mode 100644 index 000000000000..57e76720421d --- /dev/null +++ b/site/public/v1/games/deep-rock-galactic-rival-tech-pack/index.json @@ -0,0 +1,31 @@ +{ + "id": 37204, + "slug": "deep-rock-galactic-rival-tech-pack", + "name": "Deep Rock Galactic - Rival Tech Pack", + "release_date": "2021-11-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Ghost Ship Games" + ], + "publishers": [ + "Coffee Stain Studios" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113179356" + ], + "created_at": "2026-07-10T10:10:07.971461", + "updated_at": "2026-07-10T10:10:07.971461", + "url": "/v1/games/deep-rock-galactic-rival-tech-pack" +} diff --git a/site/public/v1/games/deep-rock-galactic-robot-rebellion-pack/index.json b/site/public/v1/games/deep-rock-galactic-robot-rebellion-pack/index.json new file mode 100644 index 000000000000..28ab68836f5b --- /dev/null +++ b/site/public/v1/games/deep-rock-galactic-robot-rebellion-pack/index.json @@ -0,0 +1,31 @@ +{ + "id": 37205, + "slug": "deep-rock-galactic-robot-rebellion-pack", + "name": "Deep Rock Galactic - Robot Rebellion Pack", + "release_date": "2022-04-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Ghost Ship Games" + ], + "publishers": [ + "Coffee Stain Studios" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113179364" + ], + "created_at": "2026-07-10T10:10:07.971461", + "updated_at": "2026-07-10T10:10:07.971461", + "url": "/v1/games/deep-rock-galactic-robot-rebellion-pack" +} diff --git a/site/public/v1/games/deep-rock-galactic-roughneck-pack/index.json b/site/public/v1/games/deep-rock-galactic-roughneck-pack/index.json new file mode 100644 index 000000000000..2bc04e7c7450 --- /dev/null +++ b/site/public/v1/games/deep-rock-galactic-roughneck-pack/index.json @@ -0,0 +1,31 @@ +{ + "id": 37207, + "slug": "deep-rock-galactic-roughneck-pack", + "name": "Deep Rock Galactic - Roughneck Pack", + "release_date": "2020-10-22", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Ghost Ship Games" + ], + "publishers": [ + "Coffee Stain Studios" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113179326" + ], + "created_at": "2026-07-10T10:10:07.971461", + "updated_at": "2026-07-10T10:10:07.971461", + "url": "/v1/games/deep-rock-galactic-roughneck-pack" +} diff --git a/site/public/v1/games/deep-sleep-trilogy/index.json b/site/public/v1/games/deep-sleep-trilogy/index.json new file mode 100644 index 000000000000..fa12edbe51a7 --- /dev/null +++ b/site/public/v1/games/deep-sleep-trilogy/index.json @@ -0,0 +1,34 @@ +{ + "id": 37230, + "slug": "deep-sleep-trilogy", + "name": "Deep Sleep Trilogy", + "release_date": "2019-10-25", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "horror video game", + "point-and-click adventure" + ], + "stores": [], + "developers": [ + "Scriptwelder Studio" + ], + "publishers": [ + "Armor Games Studios" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q101601186" + ], + "created_at": "2026-07-10T10:10:07.977532", + "updated_at": "2026-07-10T10:10:07.977532", + "url": "/v1/games/deep-sleep-trilogy" +} diff --git a/site/public/v1/games/deep-space-waifu-academy/index.json b/site/public/v1/games/deep-space-waifu-academy/index.json new file mode 100644 index 000000000000..4e8d0c18702d --- /dev/null +++ b/site/public/v1/games/deep-space-waifu-academy/index.json @@ -0,0 +1,25 @@ +{ + "id": 37259, + "slug": "deep-space-waifu-academy", + "name": "DEEP SPACE WAIFU: ACADEMY", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q96247219" + ], + "created_at": "2026-07-10T10:10:07.985537", + "updated_at": "2026-07-10T10:10:07.985537", + "url": "/v1/games/deep-space-waifu-academy" +} diff --git a/site/public/v1/games/deepwoken/index.json b/site/public/v1/games/deepwoken/index.json new file mode 100644 index 000000000000..82730f30e560 --- /dev/null +++ b/site/public/v1/games/deepwoken/index.json @@ -0,0 +1,27 @@ +{ + "id": 37313, + "slug": "deepwoken", + "name": "Deepwoken", + "release_date": "2019-10-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "role-playing video game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126958222" + ], + "created_at": "2026-07-10T10:10:08.016837", + "updated_at": "2026-07-10T10:10:08.016837", + "url": "/v1/games/deepwoken" +} diff --git a/site/public/v1/games/deepzengo/index.json b/site/public/v1/games/deepzengo/index.json new file mode 100644 index 000000000000..299f336b5a79 --- /dev/null +++ b/site/public/v1/games/deepzengo/index.json @@ -0,0 +1,25 @@ +{ + "id": 37316, + "slug": "deepzengo", + "name": "DeepZenGo", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28416196" + ], + "created_at": "2026-07-10T10:10:08.018346", + "updated_at": "2026-07-10T10:10:08.018346", + "url": "/v1/games/deepzengo" +} diff --git a/site/public/v1/games/defcon-demo/index.json b/site/public/v1/games/defcon-demo/index.json new file mode 100644 index 000000000000..7a9a04a04b1e --- /dev/null +++ b/site/public/v1/games/defcon-demo/index.json @@ -0,0 +1,35 @@ +{ + "id": 37358, + "slug": "defcon-demo", + "name": "DEFCON Demo", + "release_date": "2006-09-29", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "real-time strategy", + "wargame", + "tactical role-playing game" + ], + "stores": [], + "developers": [ + "Introversion Software" + ], + "publishers": [ + "Introversion Software" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122705280" + ], + "created_at": "2026-07-10T10:10:08.029356", + "updated_at": "2026-07-10T10:10:08.029356", + "url": "/v1/games/defcon-demo" +} diff --git a/site/public/v1/games/defense-grid-containment-dlc/index.json b/site/public/v1/games/defense-grid-containment-dlc/index.json new file mode 100644 index 000000000000..4e1dc8057350 --- /dev/null +++ b/site/public/v1/games/defense-grid-containment-dlc/index.json @@ -0,0 +1,31 @@ +{ + "id": 37476, + "slug": "defense-grid-containment-dlc", + "name": "Defense Grid: Containment DLC", + "release_date": "2013-01-23", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Hidden Path Entertainment" + ], + "publishers": [ + "Hidden Path Entertainment" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116896954" + ], + "created_at": "2026-07-10T10:10:08.061355", + "updated_at": "2026-07-10T10:10:08.061355", + "url": "/v1/games/defense-grid-containment-dlc" +} diff --git a/site/public/v1/games/defense-grid-resurgence-map-pack-1/index.json b/site/public/v1/games/defense-grid-resurgence-map-pack-1/index.json new file mode 100644 index 000000000000..bc06ec5af162 --- /dev/null +++ b/site/public/v1/games/defense-grid-resurgence-map-pack-1/index.json @@ -0,0 +1,31 @@ +{ + "id": 37477, + "slug": "defense-grid-resurgence-map-pack-1", + "name": "Defense Grid: Resurgence Map Pack 1", + "release_date": "2010-06-02", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Hidden Path Entertainment" + ], + "publishers": [ + "Hidden Path Entertainment" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116896957" + ], + "created_at": "2026-07-10T10:10:08.061355", + "updated_at": "2026-07-10T10:10:08.061355", + "url": "/v1/games/defense-grid-resurgence-map-pack-1" +} diff --git a/site/public/v1/games/defense-grid-resurgence-map-pack-2/index.json b/site/public/v1/games/defense-grid-resurgence-map-pack-2/index.json new file mode 100644 index 000000000000..29a5ce2596e3 --- /dev/null +++ b/site/public/v1/games/defense-grid-resurgence-map-pack-2/index.json @@ -0,0 +1,31 @@ +{ + "id": 37478, + "slug": "defense-grid-resurgence-map-pack-2", + "name": "Defense Grid: Resurgence Map Pack 2", + "release_date": "2010-06-09", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Hidden Path Entertainment" + ], + "publishers": [ + "Hidden Path Entertainment" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116896959" + ], + "created_at": "2026-07-10T10:10:08.061355", + "updated_at": "2026-07-10T10:10:08.061355", + "url": "/v1/games/defense-grid-resurgence-map-pack-2" +} diff --git a/site/public/v1/games/defense-grid-resurgence-map-pack-3/index.json b/site/public/v1/games/defense-grid-resurgence-map-pack-3/index.json new file mode 100644 index 000000000000..1726fd03950f --- /dev/null +++ b/site/public/v1/games/defense-grid-resurgence-map-pack-3/index.json @@ -0,0 +1,31 @@ +{ + "id": 37479, + "slug": "defense-grid-resurgence-map-pack-3", + "name": "Defense Grid: Resurgence Map Pack 3", + "release_date": "2010-06-16", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Hidden Path Entertainment" + ], + "publishers": [ + "Hidden Path Entertainment" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116896961" + ], + "created_at": "2026-07-10T10:10:08.061355", + "updated_at": "2026-07-10T10:10:08.061355", + "url": "/v1/games/defense-grid-resurgence-map-pack-3" +} diff --git a/site/public/v1/games/defense-grid-resurgence-map-pack-4/index.json b/site/public/v1/games/defense-grid-resurgence-map-pack-4/index.json new file mode 100644 index 000000000000..4eedfd057955 --- /dev/null +++ b/site/public/v1/games/defense-grid-resurgence-map-pack-4/index.json @@ -0,0 +1,31 @@ +{ + "id": 37480, + "slug": "defense-grid-resurgence-map-pack-4", + "name": "Defense Grid: Resurgence Map Pack 4", + "release_date": "2010-06-23", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Hidden Path Entertainment" + ], + "publishers": [ + "Hidden Path Entertainment" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116896962" + ], + "created_at": "2026-07-10T10:10:08.061355", + "updated_at": "2026-07-10T10:10:08.061355", + "url": "/v1/games/defense-grid-resurgence-map-pack-4" +} diff --git a/site/public/v1/games/defense-grid-the-awakening-you-monster-dlc/index.json b/site/public/v1/games/defense-grid-the-awakening-you-monster-dlc/index.json new file mode 100644 index 000000000000..a9d0dbaa79bb --- /dev/null +++ b/site/public/v1/games/defense-grid-the-awakening-you-monster-dlc/index.json @@ -0,0 +1,31 @@ +{ + "id": 37481, + "slug": "defense-grid-the-awakening-you-monster-dlc", + "name": "Defense Grid: The Awakening - You Monster DLC", + "release_date": "2011-12-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Hidden Path Entertainment" + ], + "publishers": [ + "Hidden Path Entertainment" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116896956" + ], + "created_at": "2026-07-10T10:10:08.062471", + "updated_at": "2026-07-10T10:10:08.062471", + "url": "/v1/games/defense-grid-the-awakening-you-monster-dlc" +} diff --git a/site/public/v1/games/dekrim/index.json b/site/public/v1/games/dekrim/index.json new file mode 100644 index 000000000000..8cdf6ac831af --- /dev/null +++ b/site/public/v1/games/dekrim/index.json @@ -0,0 +1,27 @@ +{ + "id": 37597, + "slug": "dekrim", + "name": "Dekrim", + "release_date": "2002-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "massively multiplayer online game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10467801" + ], + "created_at": "2026-07-10T10:10:08.093356", + "updated_at": "2026-07-10T10:10:08.093356", + "url": "/v1/games/dekrim" +} diff --git a/site/public/v1/games/delicious-miracle-of-life-q123295209/index.json b/site/public/v1/games/delicious-miracle-of-life-q123295209/index.json new file mode 100644 index 000000000000..4ff81cd66d10 --- /dev/null +++ b/site/public/v1/games/delicious-miracle-of-life-q123295209/index.json @@ -0,0 +1,30 @@ +{ + "id": 37624, + "slug": "delicious-miracle-of-life-q123295209", + "name": "Delicious - Miracle of Life+", + "release_date": "2023-11-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "iPadOS", + "iOS" + ], + "genres": [], + "stores": [], + "developers": [ + "GameHouse" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123295209" + ], + "created_at": "2026-07-10T10:10:08.100355", + "updated_at": "2026-07-10T10:10:08.100355", + "url": "/v1/games/delicious-miracle-of-life-q123295209" +} diff --git a/site/public/v1/games/delphidoom/index.json b/site/public/v1/games/delphidoom/index.json new file mode 100644 index 000000000000..9b6a14ba49ca --- /dev/null +++ b/site/public/v1/games/delphidoom/index.json @@ -0,0 +1,25 @@ +{ + "id": 37692, + "slug": "delphidoom", + "name": "DelphiDoom", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q67221145" + ], + "created_at": "2026-07-10T10:10:08.118417", + "updated_at": "2026-07-10T10:10:08.118417", + "url": "/v1/games/delphidoom" +} diff --git a/site/public/v1/games/delta-force-black-hawk-down-team-sabre/index.json b/site/public/v1/games/delta-force-black-hawk-down-team-sabre/index.json new file mode 100644 index 000000000000..5a819b837a25 --- /dev/null +++ b/site/public/v1/games/delta-force-black-hawk-down-team-sabre/index.json @@ -0,0 +1,31 @@ +{ + "id": 37698, + "slug": "delta-force-black-hawk-down-team-sabre", + "name": "Delta Force: Black Hawk Down – Team Sabre", + "release_date": "2004-01-20", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter" + ], + "stores": [], + "developers": [ + "Ritual Entertainment" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1995800" + ], + "created_at": "2026-07-10T10:10:08.120034", + "updated_at": "2026-07-10T10:10:08.120034", + "url": "/v1/games/delta-force-black-hawk-down-team-sabre" +} diff --git a/site/public/v1/games/delta-force-bootcamp/index.json b/site/public/v1/games/delta-force-bootcamp/index.json new file mode 100644 index 000000000000..ecc7220d77bd --- /dev/null +++ b/site/public/v1/games/delta-force-bootcamp/index.json @@ -0,0 +1,27 @@ +{ + "id": 37700, + "slug": "delta-force-bootcamp", + "name": "Delta Force Bootcamp", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107528105" + ], + "created_at": "2026-07-10T10:10:08.120034", + "updated_at": "2026-07-10T10:10:08.120034", + "url": "/v1/games/delta-force-bootcamp" +} diff --git a/site/public/v1/games/delta-force-q126187152/index.json b/site/public/v1/games/delta-force-q126187152/index.json new file mode 100644 index 000000000000..25f5d3065c1a --- /dev/null +++ b/site/public/v1/games/delta-force-q126187152/index.json @@ -0,0 +1,25 @@ +{ + "id": 37701, + "slug": "delta-force-q126187152", + "name": "Delta Force", + "release_date": "1992-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126187152" + ], + "created_at": "2026-07-10T10:10:08.121052", + "updated_at": "2026-07-10T10:10:08.121052", + "url": "/v1/games/delta-force-q126187152" +} diff --git a/site/public/v1/games/delta-force-trilogy/index.json b/site/public/v1/games/delta-force-trilogy/index.json new file mode 100644 index 000000000000..c4b58e985ec0 --- /dev/null +++ b/site/public/v1/games/delta-force-trilogy/index.json @@ -0,0 +1,27 @@ +{ + "id": 37702, + "slug": "delta-force-trilogy", + "name": "Delta Force Trilogy", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107528101" + ], + "created_at": "2026-07-10T10:10:08.121052", + "updated_at": "2026-07-10T10:10:08.121052", + "url": "/v1/games/delta-force-trilogy" +} diff --git a/site/public/v1/games/delta-rising/index.json b/site/public/v1/games/delta-rising/index.json new file mode 100644 index 000000000000..67f4d6c832b5 --- /dev/null +++ b/site/public/v1/games/delta-rising/index.json @@ -0,0 +1,25 @@ +{ + "id": 37716, + "slug": "delta-rising", + "name": "Delta Rising", + "release_date": "2014-09-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q57973876" + ], + "created_at": "2026-07-10T10:10:08.125053", + "updated_at": "2026-07-10T10:10:08.125053", + "url": "/v1/games/delta-rising" +} diff --git a/site/public/v1/games/deltarune-chapter-1-the-beginning/index.json b/site/public/v1/games/deltarune-chapter-1-the-beginning/index.json new file mode 100644 index 000000000000..8fd52bdd956a --- /dev/null +++ b/site/public/v1/games/deltarune-chapter-1-the-beginning/index.json @@ -0,0 +1,25 @@ +{ + "id": 37733, + "slug": "deltarune-chapter-1-the-beginning", + "name": "Deltarune: Chapter 1 — The Beginning", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116425243" + ], + "created_at": "2026-07-10T10:10:08.130091", + "updated_at": "2026-07-10T10:10:08.130091", + "url": "/v1/games/deltarune-chapter-1-the-beginning" +} diff --git a/site/public/v1/games/deltarune-chapter-2-a-cyber-s-world/index.json b/site/public/v1/games/deltarune-chapter-2-a-cyber-s-world/index.json new file mode 100644 index 000000000000..828b5f2b5b88 --- /dev/null +++ b/site/public/v1/games/deltarune-chapter-2-a-cyber-s-world/index.json @@ -0,0 +1,31 @@ +{ + "id": 37734, + "slug": "deltarune-chapter-2-a-cyber-s-world", + "name": "Deltarune: Chapter 2 — A Cyber's World", + "release_date": "2021-09-17", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "role-playing video game" + ], + "stores": [], + "developers": [ + "Toby Fox" + ], + "publishers": [ + "Toby Fox" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116425246" + ], + "created_at": "2026-07-10T10:10:08.130091", + "updated_at": "2026-07-10T10:10:08.130091", + "url": "/v1/games/deltarune-chapter-2-a-cyber-s-world" +} diff --git a/site/public/v1/games/democracy-3-extremism/index.json b/site/public/v1/games/democracy-3-extremism/index.json new file mode 100644 index 000000000000..3d5dca53badd --- /dev/null +++ b/site/public/v1/games/democracy-3-extremism/index.json @@ -0,0 +1,34 @@ +{ + "id": 37806, + "slug": "democracy-3-extremism", + "name": "Democracy 3: Extremism", + "release_date": "2014-05-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "government simulation game" + ], + "stores": [], + "developers": [ + "Positech Games" + ], + "publishers": [ + "Positech Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q68215239" + ], + "created_at": "2026-07-10T10:10:08.162988", + "updated_at": "2026-07-10T10:10:08.162988", + "url": "/v1/games/democracy-3-extremism" +} diff --git a/site/public/v1/games/deponia-the-complete-journey/index.json b/site/public/v1/games/deponia-the-complete-journey/index.json new file mode 100644 index 000000000000..30e680dd4c96 --- /dev/null +++ b/site/public/v1/games/deponia-the-complete-journey/index.json @@ -0,0 +1,34 @@ +{ + "id": 38085, + "slug": "deponia-the-complete-journey", + "name": "Deponia: The Complete Journey", + "release_date": "2014-07-08", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "adventure video game" + ], + "stores": [], + "developers": [ + "Daedalic Entertainment" + ], + "publishers": [ + "Daedalic Entertainment" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116303968" + ], + "created_at": "2026-07-10T10:10:08.236711", + "updated_at": "2026-07-10T10:10:08.236711", + "url": "/v1/games/deponia-the-complete-journey" +} diff --git a/site/public/v1/games/der-clou-profidiskette/index.json b/site/public/v1/games/der-clou-profidiskette/index.json new file mode 100644 index 000000000000..a3dc36a32189 --- /dev/null +++ b/site/public/v1/games/der-clou-profidiskette/index.json @@ -0,0 +1,25 @@ +{ + "id": 38135, + "slug": "der-clou-profidiskette", + "name": "Der Clou!: Profidiskette", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q119846887" + ], + "created_at": "2026-07-10T10:10:08.252426", + "updated_at": "2026-07-10T10:10:08.252426", + "url": "/v1/games/der-clou-profidiskette" +} diff --git a/site/public/v1/games/derdiedas/index.json b/site/public/v1/games/derdiedas/index.json new file mode 100644 index 000000000000..b66ec14419da --- /dev/null +++ b/site/public/v1/games/derdiedas/index.json @@ -0,0 +1,25 @@ +{ + "id": 38167, + "slug": "derdiedas", + "name": "DerDieDas", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63379596" + ], + "created_at": "2026-07-10T10:10:08.261190", + "updated_at": "2026-07-10T10:10:08.261190", + "url": "/v1/games/derdiedas" +} diff --git a/site/public/v1/games/descent-freespace-silent-threat/index.json b/site/public/v1/games/descent-freespace-silent-threat/index.json new file mode 100644 index 000000000000..5c91acb1662a --- /dev/null +++ b/site/public/v1/games/descent-freespace-silent-threat/index.json @@ -0,0 +1,27 @@ +{ + "id": 38229, + "slug": "descent-freespace-silent-threat", + "name": "Descent: Freespace - Silent Threat", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Classic Mac OS" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q129196559" + ], + "created_at": "2026-07-10T10:10:08.279255", + "updated_at": "2026-07-10T10:10:08.279255", + "url": "/v1/games/descent-freespace-silent-threat" +} diff --git a/site/public/v1/games/descent-levels-of-the-world/index.json b/site/public/v1/games/descent-levels-of-the-world/index.json new file mode 100644 index 000000000000..1d0bc6bc213f --- /dev/null +++ b/site/public/v1/games/descent-levels-of-the-world/index.json @@ -0,0 +1,27 @@ +{ + "id": 38235, + "slug": "descent-levels-of-the-world", + "name": "Descent: Levels of the World", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Interplay Entertainment" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126942258" + ], + "created_at": "2026-07-10T10:10:08.280270", + "updated_at": "2026-07-10T10:10:08.280270", + "url": "/v1/games/descent-levels-of-the-world" +} diff --git a/site/public/v1/games/desert-combat/index.json b/site/public/v1/games/desert-combat/index.json new file mode 100644 index 000000000000..1ee66a408f4b --- /dev/null +++ b/site/public/v1/games/desert-combat/index.json @@ -0,0 +1,34 @@ +{ + "id": 38264, + "slug": "desert-combat", + "name": "Desert Combat", + "release_date": "2004-02-06", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "first-person shooter" + ], + "stores": [], + "developers": [ + "Trauma Studios" + ], + "publishers": [ + "Trauma Studios" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q32225" + ], + "created_at": "2026-07-10T10:10:08.291282", + "updated_at": "2026-07-10T10:10:08.291282", + "url": "/v1/games/desert-combat" +} diff --git a/site/public/v1/games/destiny-2-beyond-light/index.json b/site/public/v1/games/destiny-2-beyond-light/index.json new file mode 100644 index 000000000000..9f55225cd550 --- /dev/null +++ b/site/public/v1/games/destiny-2-beyond-light/index.json @@ -0,0 +1,31 @@ +{ + "id": 38506, + "slug": "destiny-2-beyond-light", + "name": "Destiny 2: Beyond Light", + "release_date": "2020-11-10", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "science fiction video game" + ], + "stores": [], + "developers": [ + "Bungie" + ], + "publishers": [ + "Bungie" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q97930215" + ], + "created_at": "2026-07-10T10:10:08.365380", + "updated_at": "2026-07-10T10:10:08.365380", + "url": "/v1/games/destiny-2-beyond-light" +} diff --git a/site/public/v1/games/destiny-2-forsaken/index.json b/site/public/v1/games/destiny-2-forsaken/index.json new file mode 100644 index 000000000000..b40780aa874b --- /dev/null +++ b/site/public/v1/games/destiny-2-forsaken/index.json @@ -0,0 +1,36 @@ +{ + "id": 38507, + "slug": "destiny-2-forsaken", + "name": "Destiny 2: Forsaken", + "release_date": "2018-09-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 4", + "personal computer" + ], + "genres": [ + "first-person shooter", + "action role-playing game", + "science fiction video game" + ], + "stores": [], + "developers": [ + "Bungie" + ], + "publishers": [ + "Activision" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q58447640" + ], + "created_at": "2026-07-10T10:10:08.365380", + "updated_at": "2026-07-10T10:10:08.365380", + "url": "/v1/games/destiny-2-forsaken" +} diff --git a/site/public/v1/games/destiny-2-lightfall/index.json b/site/public/v1/games/destiny-2-lightfall/index.json new file mode 100644 index 000000000000..70ce73e80975 --- /dev/null +++ b/site/public/v1/games/destiny-2-lightfall/index.json @@ -0,0 +1,29 @@ +{ + "id": 38508, + "slug": "destiny-2-lightfall", + "name": "Destiny 2: Lightfall", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [ + "Bungie" + ], + "publishers": [ + "Bungie" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116483246" + ], + "created_at": "2026-07-10T10:10:08.365380", + "updated_at": "2026-07-10T10:10:08.365380", + "url": "/v1/games/destiny-2-lightfall" +} diff --git a/site/public/v1/games/destiny-2-renegades/index.json b/site/public/v1/games/destiny-2-renegades/index.json new file mode 100644 index 000000000000..aa8baf3dda70 --- /dev/null +++ b/site/public/v1/games/destiny-2-renegades/index.json @@ -0,0 +1,25 @@ +{ + "id": 38509, + "slug": "destiny-2-renegades", + "name": "Destiny 2: Renegades", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137216280" + ], + "created_at": "2026-07-10T10:10:08.365380", + "updated_at": "2026-07-10T10:10:08.365380", + "url": "/v1/games/destiny-2-renegades" +} diff --git a/site/public/v1/games/destiny-2-shadowkeep/index.json b/site/public/v1/games/destiny-2-shadowkeep/index.json new file mode 100644 index 000000000000..c08fdc27639d --- /dev/null +++ b/site/public/v1/games/destiny-2-shadowkeep/index.json @@ -0,0 +1,36 @@ +{ + "id": 38510, + "slug": "destiny-2-shadowkeep", + "name": "Destiny 2: Shadowkeep", + "release_date": "2019-10-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "science fiction video game", + "post-apocalyptic video game" + ], + "stores": [], + "developers": [ + "Bungie" + ], + "publishers": [ + "Bungie" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q65040618" + ], + "created_at": "2026-07-10T10:10:08.366510", + "updated_at": "2026-07-10T10:10:08.366510", + "url": "/v1/games/destiny-2-shadowkeep" +} diff --git a/site/public/v1/games/destiny-2-the-final-shape/index.json b/site/public/v1/games/destiny-2-the-final-shape/index.json new file mode 100644 index 000000000000..28eb58e38fb8 --- /dev/null +++ b/site/public/v1/games/destiny-2-the-final-shape/index.json @@ -0,0 +1,37 @@ +{ + "id": 38511, + "slug": "destiny-2-the-final-shape", + "name": "Destiny 2: The Final Shape", + "release_date": "2024-06-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 5", + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "role-playing video game" + ], + "stores": [], + "developers": [ + "Bungie" + ], + "publishers": [ + "Bungie" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118645681" + ], + "created_at": "2026-07-10T10:10:08.366510", + "updated_at": "2026-07-10T10:10:08.366510", + "url": "/v1/games/destiny-2-the-final-shape" +} diff --git a/site/public/v1/games/destiny-2-the-witch-queen/index.json b/site/public/v1/games/destiny-2-the-witch-queen/index.json new file mode 100644 index 000000000000..1e07da1a9e69 --- /dev/null +++ b/site/public/v1/games/destiny-2-the-witch-queen/index.json @@ -0,0 +1,35 @@ +{ + "id": 38512, + "slug": "destiny-2-the-witch-queen", + "name": "Destiny 2: The Witch Queen", + "release_date": "2022-02-22", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 5", + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "action role-playing game" + ], + "stores": [], + "developers": [ + "Bungie" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108532561" + ], + "created_at": "2026-07-10T10:10:08.366510", + "updated_at": "2026-07-10T10:10:08.366510", + "url": "/v1/games/destiny-2-the-witch-queen" +} diff --git a/site/public/v1/games/destiny-post-release-content/index.json b/site/public/v1/games/destiny-post-release-content/index.json new file mode 100644 index 000000000000..d6977481a6c8 --- /dev/null +++ b/site/public/v1/games/destiny-post-release-content/index.json @@ -0,0 +1,28 @@ +{ + "id": 38532, + "slug": "destiny-post-release-content", + "name": "Destiny post-release content", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "science fiction video game", + "post-apocalyptic video game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22682093" + ], + "created_at": "2026-07-10T10:10:08.372378", + "updated_at": "2026-07-10T10:10:08.372378", + "url": "/v1/games/destiny-post-release-content" +} diff --git a/site/public/v1/games/destiny-rise-of-iron/index.json b/site/public/v1/games/destiny-rise-of-iron/index.json new file mode 100644 index 000000000000..23138de60d2d --- /dev/null +++ b/site/public/v1/games/destiny-rise-of-iron/index.json @@ -0,0 +1,35 @@ +{ + "id": 38533, + "slug": "destiny-rise-of-iron", + "name": "Destiny: Rise of Iron", + "release_date": "2016-09-20", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 4" + ], + "genres": [ + "first-person shooter", + "action role-playing game", + "science fiction video game" + ], + "stores": [], + "developers": [ + "Bungie" + ], + "publishers": [ + "Activision" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q24952170" + ], + "created_at": "2026-07-10T10:10:08.372378", + "updated_at": "2026-07-10T10:10:08.372378", + "url": "/v1/games/destiny-rise-of-iron" +} diff --git a/site/public/v1/games/destiny-sharefactory-theme/index.json b/site/public/v1/games/destiny-sharefactory-theme/index.json new file mode 100644 index 000000000000..8bbd628e9afe --- /dev/null +++ b/site/public/v1/games/destiny-sharefactory-theme/index.json @@ -0,0 +1,31 @@ +{ + "id": 38539, + "slug": "destiny-sharefactory-theme", + "name": "Destiny SHAREfactory Theme", + "release_date": "2015-02-10", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 4" + ], + "genres": [], + "stores": [], + "developers": [ + "Bungie" + ], + "publishers": [ + "Activision" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q61467755" + ], + "created_at": "2026-07-10T10:10:08.373384", + "updated_at": "2026-07-10T10:10:08.373384", + "url": "/v1/games/destiny-sharefactory-theme" +} diff --git a/site/public/v1/games/destiny-the-taken-king/index.json b/site/public/v1/games/destiny-the-taken-king/index.json new file mode 100644 index 000000000000..07ab8910f931 --- /dev/null +++ b/site/public/v1/games/destiny-the-taken-king/index.json @@ -0,0 +1,34 @@ +{ + "id": 38545, + "slug": "destiny-the-taken-king", + "name": "Destiny: The Taken King", + "release_date": "2015-09-15", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "first-person shooter", + "action role-playing game", + "science fiction video game", + "post-apocalyptic video game" + ], + "stores": [], + "developers": [ + "Bungie" + ], + "publishers": [ + "Activision" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q20992360" + ], + "created_at": "2026-07-10T10:10:08.375383", + "updated_at": "2026-07-10T10:10:08.375383", + "url": "/v1/games/destiny-the-taken-king" +} diff --git a/site/public/v1/games/destroy-all-humans-2-reprobed-single-player/index.json b/site/public/v1/games/destroy-all-humans-2-reprobed-single-player/index.json new file mode 100644 index 000000000000..e5b908935ec0 --- /dev/null +++ b/site/public/v1/games/destroy-all-humans-2-reprobed-single-player/index.json @@ -0,0 +1,34 @@ +{ + "id": 38553, + "slug": "destroy-all-humans-2-reprobed-single-player", + "name": "Destroy All Humans 2 – Reprobed: Single Player", + "release_date": "2023-06-27", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 4" + ], + "genres": [ + "action-adventure game", + "third-person shooter" + ], + "stores": [], + "developers": [ + "Black Forest Games" + ], + "publishers": [ + "THQ Nordic" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117648010" + ], + "created_at": "2026-07-10T10:10:08.377380", + "updated_at": "2026-07-10T10:10:08.377380", + "url": "/v1/games/destroy-all-humans-2-reprobed-single-player" +} diff --git a/site/public/v1/games/detective-opera-milky-holmes-td-disappeared-7-and-a-miracle-song/index.json b/site/public/v1/games/detective-opera-milky-holmes-td-disappeared-7-and-a-miracle-song/index.json new file mode 100644 index 000000000000..b8e65731bae7 --- /dev/null +++ b/site/public/v1/games/detective-opera-milky-holmes-td-disappeared-7-and-a-miracle-song/index.json @@ -0,0 +1,25 @@ +{ + "id": 38695, + "slug": "detective-opera-milky-holmes-td-disappeared-7-and-a-miracle-song", + "name": "Detective Opera Milky Holmes TD Disappeared 7 and a miracle song", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28777544" + ], + "created_at": "2026-07-10T10:10:08.415538", + "updated_at": "2026-07-10T10:10:08.415538", + "url": "/v1/games/detective-opera-milky-holmes-td-disappeared-7-and-a-miracle-song" +} diff --git a/site/public/v1/games/detroit-become-human-digital-deluxe-edition/index.json b/site/public/v1/games/detroit-become-human-digital-deluxe-edition/index.json new file mode 100644 index 000000000000..9b43608743e7 --- /dev/null +++ b/site/public/v1/games/detroit-become-human-digital-deluxe-edition/index.json @@ -0,0 +1,25 @@ +{ + "id": 38756, + "slug": "detroit-become-human-digital-deluxe-edition", + "name": "Detroit: Become Human - Digital Deluxe Edition", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107413744" + ], + "created_at": "2026-07-10T10:10:08.431153", + "updated_at": "2026-07-10T10:10:08.431153", + "url": "/v1/games/detroit-become-human-digital-deluxe-edition" +} diff --git a/site/public/v1/games/deus-ex-human-revolution-the-missing-link/index.json b/site/public/v1/games/deus-ex-human-revolution-the-missing-link/index.json new file mode 100644 index 000000000000..c28ca95e69a3 --- /dev/null +++ b/site/public/v1/games/deus-ex-human-revolution-the-missing-link/index.json @@ -0,0 +1,38 @@ +{ + "id": 38763, + "slug": "deus-ex-human-revolution-the-missing-link", + "name": "Deus Ex: Human Revolution - The Missing Link", + "release_date": "2011-10-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "PlayStation 3", + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "stealth game", + "action role-playing game", + "cyberpunk video game" + ], + "stores": [], + "developers": [ + "Eidos Montreal" + ], + "publishers": [ + "Square Enix" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q26678571" + ], + "created_at": "2026-07-10T10:10:08.433306", + "updated_at": "2026-07-10T10:10:08.433306", + "url": "/v1/games/deus-ex-human-revolution-the-missing-link" +} diff --git a/site/public/v1/games/devil-may-cry-5-special-edition/index.json b/site/public/v1/games/devil-may-cry-5-special-edition/index.json new file mode 100644 index 000000000000..3ced26daff64 --- /dev/null +++ b/site/public/v1/games/devil-may-cry-5-special-edition/index.json @@ -0,0 +1,35 @@ +{ + "id": 38857, + "slug": "devil-may-cry-5-special-edition", + "name": "Devil May Cry 5 Special Edition", + "release_date": "2020-11-10", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 5", + "Xbox Series X and Series S" + ], + "genres": [ + "action-adventure game", + "hack and slash" + ], + "stores": [], + "developers": [ + "Capcom" + ], + "publishers": [ + "Capcom" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q100391176" + ], + "created_at": "2026-07-10T10:10:08.457317", + "updated_at": "2026-07-10T10:10:08.457317", + "url": "/v1/games/devil-may-cry-5-special-edition" +} diff --git a/site/public/v1/games/devilman-ii-devil-resurrection/index.json b/site/public/v1/games/devilman-ii-devil-resurrection/index.json new file mode 100644 index 000000000000..af1ec7ae75cb --- /dev/null +++ b/site/public/v1/games/devilman-ii-devil-resurrection/index.json @@ -0,0 +1,25 @@ +{ + "id": 38924, + "slug": "devilman-ii-devil-resurrection", + "name": "Devilman II Devil Resurrection", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11320707" + ], + "created_at": "2026-07-10T10:10:08.476395", + "updated_at": "2026-07-10T10:10:08.476395", + "url": "/v1/games/devilman-ii-devil-resurrection" +} diff --git a/site/public/v1/games/dhewm3/index.json b/site/public/v1/games/dhewm3/index.json new file mode 100644 index 000000000000..d400d6ed99dd --- /dev/null +++ b/site/public/v1/games/dhewm3/index.json @@ -0,0 +1,25 @@ +{ + "id": 39000, + "slug": "dhewm3", + "name": "dhewm3", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124469292" + ], + "created_at": "2026-07-10T10:10:08.497397", + "updated_at": "2026-07-10T10:10:08.497397", + "url": "/v1/games/dhewm3" +} diff --git a/site/public/v1/games/diablo-hellfire/index.json b/site/public/v1/games/diablo-hellfire/index.json new file mode 100644 index 000000000000..6f4fab9c4135 --- /dev/null +++ b/site/public/v1/games/diablo-hellfire/index.json @@ -0,0 +1,36 @@ +{ + "id": 39009, + "slug": "diablo-hellfire", + "name": "Diablo: Hellfire", + "release_date": "1997-11-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "role-playing video game", + "roguelike", + "hack and slash", + "action role-playing game" + ], + "stores": [], + "developers": [ + "Synergistic Software" + ], + "publishers": [ + "Sierra Entertainment" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q669687" + ], + "created_at": "2026-07-10T10:10:08.499398", + "updated_at": "2026-07-10T10:10:08.499398", + "url": "/v1/games/diablo-hellfire" +} diff --git a/site/public/v1/games/diablo-ii-lord-of-destruction/index.json b/site/public/v1/games/diablo-ii-lord-of-destruction/index.json new file mode 100644 index 000000000000..4d257ee78624 --- /dev/null +++ b/site/public/v1/games/diablo-ii-lord-of-destruction/index.json @@ -0,0 +1,36 @@ +{ + "id": 39010, + "slug": "diablo-ii-lord-of-destruction", + "name": "Diablo II: Lord of Destruction", + "release_date": "2001-06-27", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Classic Mac OS", + "macOS", + "Microsoft Windows" + ], + "genres": [ + "role-playing video game", + "action role-playing game" + ], + "stores": [], + "developers": [ + "Blizzard North" + ], + "publishers": [ + "Blizzard Entertainment" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q835084" + ], + "created_at": "2026-07-10T10:10:08.499398", + "updated_at": "2026-07-10T10:10:08.499398", + "url": "/v1/games/diablo-ii-lord-of-destruction" +} diff --git a/site/public/v1/games/diablo-iii-eternal-collection/index.json b/site/public/v1/games/diablo-iii-eternal-collection/index.json new file mode 100644 index 000000000000..779f603b1863 --- /dev/null +++ b/site/public/v1/games/diablo-iii-eternal-collection/index.json @@ -0,0 +1,25 @@ +{ + "id": 39013, + "slug": "diablo-iii-eternal-collection", + "name": "Diablo III: Eternal Collection", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123335605" + ], + "created_at": "2026-07-10T10:10:08.500397", + "updated_at": "2026-07-10T10:10:08.500397", + "url": "/v1/games/diablo-iii-eternal-collection" +} diff --git a/site/public/v1/games/diablo-iii-reaper-of-souls/index.json b/site/public/v1/games/diablo-iii-reaper-of-souls/index.json new file mode 100644 index 000000000000..db4cc17a4d31 --- /dev/null +++ b/site/public/v1/games/diablo-iii-reaper-of-souls/index.json @@ -0,0 +1,36 @@ +{ + "id": 39014, + "slug": "diablo-iii-reaper-of-souls", + "name": "Diablo III: Reaper of Souls", + "release_date": "2014-03-25", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 4", + "macOS", + "PlayStation 3", + "Microsoft Windows" + ], + "genres": [ + "action role-playing game" + ], + "stores": [], + "developers": [ + "Blizzard Entertainment" + ], + "publishers": [ + "Blizzard Entertainment" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q14917711" + ], + "created_at": "2026-07-10T10:10:08.500397", + "updated_at": "2026-07-10T10:10:08.500397", + "url": "/v1/games/diablo-iii-reaper-of-souls" +} diff --git a/site/public/v1/games/diablo-iii-rise-of-the-necromancer/index.json b/site/public/v1/games/diablo-iii-rise-of-the-necromancer/index.json new file mode 100644 index 000000000000..36dff986ce94 --- /dev/null +++ b/site/public/v1/games/diablo-iii-rise-of-the-necromancer/index.json @@ -0,0 +1,35 @@ +{ + "id": 39015, + "slug": "diablo-iii-rise-of-the-necromancer", + "name": "Diablo III: Rise of the Necromancer", + "release_date": "2017-06-27", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 4", + "macOS", + "Microsoft Windows" + ], + "genres": [ + "action role-playing game" + ], + "stores": [], + "developers": [ + "Blizzard Entertainment" + ], + "publishers": [ + "Blizzard Entertainment" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q42266768" + ], + "created_at": "2026-07-10T10:10:08.500397", + "updated_at": "2026-07-10T10:10:08.500397", + "url": "/v1/games/diablo-iii-rise-of-the-necromancer" +} diff --git a/site/public/v1/games/diamond-bingo/index.json b/site/public/v1/games/diamond-bingo/index.json new file mode 100644 index 000000000000..51e0cfa3d0bd --- /dev/null +++ b/site/public/v1/games/diamond-bingo/index.json @@ -0,0 +1,27 @@ +{ + "id": 39064, + "slug": "diamond-bingo", + "name": "Diamond Bingo", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "arcade cabinet" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60614490" + ], + "created_at": "2026-07-10T10:10:08.513406", + "updated_at": "2026-07-10T10:10:08.513406", + "url": "/v1/games/diamond-bingo" +} diff --git a/site/public/v1/games/die-ralf-glau-edition/index.json b/site/public/v1/games/die-ralf-glau-edition/index.json new file mode 100644 index 000000000000..5cea9a56e34d --- /dev/null +++ b/site/public/v1/games/die-ralf-glau-edition/index.json @@ -0,0 +1,25 @@ +{ + "id": 39294, + "slug": "die-ralf-glau-edition", + "name": "Die Ralf Glau Edition", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126040211" + ], + "created_at": "2026-07-10T10:10:08.575917", + "updated_at": "2026-07-10T10:10:08.575917", + "url": "/v1/games/die-ralf-glau-edition" +} diff --git a/site/public/v1/games/dig-limited-bundle-1-2020/index.json b/site/public/v1/games/dig-limited-bundle-1-2020/index.json new file mode 100644 index 000000000000..1b80a55b7411 --- /dev/null +++ b/site/public/v1/games/dig-limited-bundle-1-2020/index.json @@ -0,0 +1,31 @@ +{ + "id": 39378, + "slug": "dig-limited-bundle-1-2020", + "name": "DIG Limited Bundle 1 (2020)", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [], + "publishers": [ + "MoyBatya" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121133251" + ], + "created_at": "2026-07-10T10:10:08.598918", + "updated_at": "2026-07-10T10:10:08.598918", + "url": "/v1/games/dig-limited-bundle-1-2020" +} diff --git a/site/public/v1/games/dig-weekly-bundle-125/index.json b/site/public/v1/games/dig-weekly-bundle-125/index.json new file mode 100644 index 000000000000..1ab16e1ff8a8 --- /dev/null +++ b/site/public/v1/games/dig-weekly-bundle-125/index.json @@ -0,0 +1,31 @@ +{ + "id": 39387, + "slug": "dig-weekly-bundle-125", + "name": "DIG Weekly Bundle 125", + "release_date": "2020-02-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [], + "publishers": [ + "MoyBatya" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121133264" + ], + "created_at": "2026-07-10T10:10:08.600918", + "updated_at": "2026-07-10T10:10:08.600918", + "url": "/v1/games/dig-weekly-bundle-125" +} diff --git a/site/public/v1/games/dig-weekly-bundle-127/index.json b/site/public/v1/games/dig-weekly-bundle-127/index.json new file mode 100644 index 000000000000..8b16b379b37f --- /dev/null +++ b/site/public/v1/games/dig-weekly-bundle-127/index.json @@ -0,0 +1,31 @@ +{ + "id": 39388, + "slug": "dig-weekly-bundle-127", + "name": "DIG Weekly Bundle 127", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [], + "publishers": [ + "MoyBatya" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121302303" + ], + "created_at": "2026-07-10T10:10:08.600918", + "updated_at": "2026-07-10T10:10:08.600918", + "url": "/v1/games/dig-weekly-bundle-127" +} diff --git a/site/public/v1/games/dig-weekly-bundle-346/index.json b/site/public/v1/games/dig-weekly-bundle-346/index.json new file mode 100644 index 000000000000..4fff3b3c89b0 --- /dev/null +++ b/site/public/v1/games/dig-weekly-bundle-346/index.json @@ -0,0 +1,31 @@ +{ + "id": 39389, + "slug": "dig-weekly-bundle-346", + "name": "DIG Weekly Bundle 346", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [], + "publishers": [ + "MoyBatya" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121302252" + ], + "created_at": "2026-07-10T10:10:08.600918", + "updated_at": "2026-07-10T10:10:08.600918", + "url": "/v1/games/dig-weekly-bundle-346" +} diff --git a/site/public/v1/games/digimon-story-cyber-sleuth-complete-edition/index.json b/site/public/v1/games/digimon-story-cyber-sleuth-complete-edition/index.json new file mode 100644 index 000000000000..f32c5fe8784a --- /dev/null +++ b/site/public/v1/games/digimon-story-cyber-sleuth-complete-edition/index.json @@ -0,0 +1,35 @@ +{ + "id": 39442, + "slug": "digimon-story-cyber-sleuth-complete-edition", + "name": "Digimon Story Cyber Sleuth: Complete Edition", + "release_date": "2019-10-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 5", + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "role-playing video game" + ], + "stores": [], + "developers": [ + "Media.Vision" + ], + "publishers": [ + "Bandai Namco Entertainment" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q119726642" + ], + "created_at": "2026-07-10T10:10:08.614067", + "updated_at": "2026-07-10T10:10:08.614067", + "url": "/v1/games/digimon-story-cyber-sleuth-complete-edition" +} diff --git a/site/public/v1/games/dinamic-5-aniversario/index.json b/site/public/v1/games/dinamic-5-aniversario/index.json new file mode 100644 index 000000000000..6ce88316f1c8 --- /dev/null +++ b/site/public/v1/games/dinamic-5-aniversario/index.json @@ -0,0 +1,29 @@ +{ + "id": 39640, + "slug": "dinamic-5-aniversario", + "name": "Dinamic 5° Aniversario", + "release_date": "1989-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "ZX Spectrum" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Dinamic Software" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63052769" + ], + "created_at": "2026-07-10T10:10:08.680674", + "updated_at": "2026-07-10T10:10:08.680674", + "url": "/v1/games/dinamic-5-aniversario" +} diff --git a/site/public/v1/games/dinamic-hits-collection/index.json b/site/public/v1/games/dinamic-hits-collection/index.json new file mode 100644 index 000000000000..99f581addc61 --- /dev/null +++ b/site/public/v1/games/dinamic-hits-collection/index.json @@ -0,0 +1,30 @@ +{ + "id": 39641, + "slug": "dinamic-hits-collection", + "name": "Dinamic Hits Collection", + "release_date": "1988-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Amstrad CPC", + "ZX Spectrum" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Dinamic Software" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62698507" + ], + "created_at": "2026-07-10T10:10:08.681687", + "updated_at": "2026-07-10T10:10:08.681687", + "url": "/v1/games/dinamic-hits-collection" +} diff --git a/site/public/v1/games/diner-dash-flo-through-time/index.json b/site/public/v1/games/diner-dash-flo-through-time/index.json new file mode 100644 index 000000000000..6b536c8e818f --- /dev/null +++ b/site/public/v1/games/diner-dash-flo-through-time/index.json @@ -0,0 +1,25 @@ +{ + "id": 39651, + "slug": "diner-dash-flo-through-time", + "name": "Diner Dash: Flo Through Time", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28127415" + ], + "created_at": "2026-07-10T10:10:08.683689", + "updated_at": "2026-07-10T10:10:08.683689", + "url": "/v1/games/diner-dash-flo-through-time" +} diff --git a/site/public/v1/games/dino-crisis-5th-anniversary/index.json b/site/public/v1/games/dino-crisis-5th-anniversary/index.json new file mode 100644 index 000000000000..6c8316c12f10 --- /dev/null +++ b/site/public/v1/games/dino-crisis-5th-anniversary/index.json @@ -0,0 +1,25 @@ +{ + "id": 39692, + "slug": "dino-crisis-5th-anniversary", + "name": "Dino Crisis 5th Anniversary", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q133848277" + ], + "created_at": "2026-07-10T10:10:08.694677", + "updated_at": "2026-07-10T10:10:08.694677", + "url": "/v1/games/dino-crisis-5th-anniversary" +} diff --git a/site/public/v1/games/dinosaur-planet/index.json b/site/public/v1/games/dinosaur-planet/index.json new file mode 100644 index 000000000000..0ae5b6e17730 --- /dev/null +++ b/site/public/v1/games/dinosaur-planet/index.json @@ -0,0 +1,33 @@ +{ + "id": 39809, + "slug": "dinosaur-planet", + "name": "Dinosaur Planet", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Nintendo 64" + ], + "genres": [ + "action-adventure game" + ], + "stores": [], + "developers": [ + "Rare Ltd." + ], + "publishers": [ + "Nintendo" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q64620866" + ], + "created_at": "2026-07-10T10:10:08.725412", + "updated_at": "2026-07-10T10:10:08.725412", + "url": "/v1/games/dinosaur-planet" +} diff --git a/site/public/v1/games/dirk-valentine-and-the-fortress-of-steam/index.json b/site/public/v1/games/dirk-valentine-and-the-fortress-of-steam/index.json new file mode 100644 index 000000000000..41b4420493f0 --- /dev/null +++ b/site/public/v1/games/dirk-valentine-and-the-fortress-of-steam/index.json @@ -0,0 +1,30 @@ +{ + "id": 39892, + "slug": "dirk-valentine-and-the-fortress-of-steam", + "name": "Dirk Valentine and the Fortress of Steam", + "release_date": "2008-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "action game", + "side-scrolling video game" + ], + "stores": [], + "developers": [ + "Nitrome" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107023295" + ], + "created_at": "2026-07-10T10:10:08.747343", + "updated_at": "2026-07-10T10:10:08.747343", + "url": "/v1/games/dirk-valentine-and-the-fortress-of-steam" +} diff --git a/site/public/v1/games/dirty-harry-q5281019/index.json b/site/public/v1/games/dirty-harry-q5281019/index.json new file mode 100644 index 000000000000..dff238ba6b5c --- /dev/null +++ b/site/public/v1/games/dirty-harry-q5281019/index.json @@ -0,0 +1,33 @@ +{ + "id": 39924, + "slug": "dirty-harry-q5281019", + "name": "Dirty Harry", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 3" + ], + "genres": [ + "action game" + ], + "stores": [], + "developers": [ + "The Collective" + ], + "publishers": [ + "Warner Bros. Entertainment" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5281019" + ], + "created_at": "2026-07-10T10:10:08.755392", + "updated_at": "2026-07-10T10:10:08.755392", + "url": "/v1/games/dirty-harry-q5281019" +} diff --git a/site/public/v1/games/disciples-iii-resurrection/index.json b/site/public/v1/games/disciples-iii-resurrection/index.json new file mode 100644 index 000000000000..7f0895566310 --- /dev/null +++ b/site/public/v1/games/disciples-iii-resurrection/index.json @@ -0,0 +1,34 @@ +{ + "id": 40013, + "slug": "disciples-iii-resurrection", + "name": "Disciples III: Resurrection", + "release_date": "2011-10-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "strategy game" + ], + "stores": [], + "developers": [ + ".dat", + "Akella" + ], + "publishers": [ + "Kalypso Media" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110817100" + ], + "created_at": "2026-07-10T10:10:08.778416", + "updated_at": "2026-07-10T10:10:08.778416", + "url": "/v1/games/disciples-iii-resurrection" +} diff --git a/site/public/v1/games/disciples-liberation-digital-deluxe-edition/index.json b/site/public/v1/games/disciples-liberation-digital-deluxe-edition/index.json new file mode 100644 index 000000000000..489d4b264ac9 --- /dev/null +++ b/site/public/v1/games/disciples-liberation-digital-deluxe-edition/index.json @@ -0,0 +1,33 @@ +{ + "id": 40014, + "slug": "disciples-liberation-digital-deluxe-edition", + "name": "Disciples: Liberation Digital Deluxe Edition", + "release_date": "2021-10-21", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S" + ], + "genres": [ + "role-playing video game" + ], + "stores": [], + "developers": [ + "Frima Studio" + ], + "publishers": [ + "Kalypso Media" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109004972" + ], + "created_at": "2026-07-10T10:10:08.778416", + "updated_at": "2026-07-10T10:10:08.778416", + "url": "/v1/games/disciples-liberation-digital-deluxe-edition" +} diff --git a/site/public/v1/games/disenchanted-demo/index.json b/site/public/v1/games/disenchanted-demo/index.json new file mode 100644 index 000000000000..0fa48e26fd4c --- /dev/null +++ b/site/public/v1/games/disenchanted-demo/index.json @@ -0,0 +1,25 @@ +{ + "id": 40092, + "slug": "disenchanted-demo", + "name": "Disenchanted DEMO", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131619624" + ], + "created_at": "2026-07-10T10:10:08.815485", + "updated_at": "2026-07-10T10:10:08.815485", + "url": "/v1/games/disenchanted-demo" +} diff --git a/site/public/v1/games/disk-ng/index.json b/site/public/v1/games/disk-ng/index.json new file mode 100644 index 000000000000..8501902c11e1 --- /dev/null +++ b/site/public/v1/games/disk-ng/index.json @@ -0,0 +1,29 @@ +{ + "id": 40139, + "slug": "disk-ng", + "name": "Disk NG", + "release_date": "1990-03-09", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "MSX" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Bandai Namco Entertainment" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17217055" + ], + "created_at": "2026-07-10T10:10:08.827159", + "updated_at": "2026-07-10T10:10:08.827159", + "url": "/v1/games/disk-ng" +} diff --git a/site/public/v1/games/disney-coloring-world-q118234977/index.json b/site/public/v1/games/disney-coloring-world-q118234977/index.json new file mode 100644 index 000000000000..0a9204fb07fb --- /dev/null +++ b/site/public/v1/games/disney-coloring-world-q118234977/index.json @@ -0,0 +1,28 @@ +{ + "id": 40153, + "slug": "disney-coloring-world-q118234977", + "name": "Disney Coloring World+", + "release_date": "2023-05-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "iPadOS", + "iOS" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118234977" + ], + "created_at": "2026-07-10T10:10:08.831130", + "updated_at": "2026-07-10T10:10:08.831130", + "url": "/v1/games/disney-coloring-world-q118234977" +} diff --git a/site/public/v1/games/disney-dreamlight-valley-a-rift-in-time/index.json b/site/public/v1/games/disney-dreamlight-valley-a-rift-in-time/index.json new file mode 100644 index 000000000000..1ad428fa0566 --- /dev/null +++ b/site/public/v1/games/disney-dreamlight-valley-a-rift-in-time/index.json @@ -0,0 +1,28 @@ +{ + "id": 40157, + "slug": "disney-dreamlight-valley-a-rift-in-time", + "name": "Disney Dreamlight Valley: A Rift in Time", + "release_date": "2023-12-05", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123688687" + ], + "created_at": "2026-07-10T10:10:08.832169", + "updated_at": "2026-07-10T10:10:08.832169", + "url": "/v1/games/disney-dreamlight-valley-a-rift-in-time" +} diff --git a/site/public/v1/games/disney-dreamlight-valley-arcade-edition/index.json b/site/public/v1/games/disney-dreamlight-valley-arcade-edition/index.json new file mode 100644 index 000000000000..04c1c8b406b3 --- /dev/null +++ b/site/public/v1/games/disney-dreamlight-valley-arcade-edition/index.json @@ -0,0 +1,30 @@ +{ + "id": 40158, + "slug": "disney-dreamlight-valley-arcade-edition", + "name": "Disney Dreamlight Valley Arcade Edition", + "release_date": "2023-12-05", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "iPadOS", + "tvOS", + "iOS", + "macOS" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123717295" + ], + "created_at": "2026-07-10T10:10:08.833144", + "updated_at": "2026-07-10T10:10:08.833144", + "url": "/v1/games/disney-dreamlight-valley-arcade-edition" +} diff --git a/site/public/v1/games/disney-getaway-blast-q118235078/index.json b/site/public/v1/games/disney-getaway-blast-q118235078/index.json new file mode 100644 index 000000000000..55c6b8d9f309 --- /dev/null +++ b/site/public/v1/games/disney-getaway-blast-q118235078/index.json @@ -0,0 +1,28 @@ +{ + "id": 40163, + "slug": "disney-getaway-blast-q118235078", + "name": "Disney Getaway Blast+", + "release_date": "2023-05-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "iPadOS", + "iOS" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118235078" + ], + "created_at": "2026-07-10T10:10:08.834142", + "updated_at": "2026-07-10T10:10:08.834142", + "url": "/v1/games/disney-getaway-blast-q118235078" +} diff --git a/site/public/v1/games/distant-worlds-return-of-the-shakturi/index.json b/site/public/v1/games/distant-worlds-return-of-the-shakturi/index.json new file mode 100644 index 000000000000..6bc01c17bb9b --- /dev/null +++ b/site/public/v1/games/distant-worlds-return-of-the-shakturi/index.json @@ -0,0 +1,25 @@ +{ + "id": 40355, + "slug": "distant-worlds-return-of-the-shakturi", + "name": "Distant Worlds: Return of the Shakturi", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140471137" + ], + "created_at": "2026-07-10T10:10:08.892125", + "updated_at": "2026-07-10T10:10:08.892125", + "url": "/v1/games/distant-worlds-return-of-the-shakturi" +} diff --git a/site/public/v1/games/divination-console-edition/index.json b/site/public/v1/games/divination-console-edition/index.json new file mode 100644 index 000000000000..962c3bcf8741 --- /dev/null +++ b/site/public/v1/games/divination-console-edition/index.json @@ -0,0 +1,29 @@ +{ + "id": 40437, + "slug": "divination-console-edition", + "name": "Divination: Console Edition", + "release_date": "2022-05-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Eastasiasoft" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112246286" + ], + "created_at": "2026-07-10T10:10:08.927293", + "updated_at": "2026-07-10T10:10:08.927293", + "url": "/v1/games/divination-console-edition" +} diff --git a/site/public/v1/games/divinity-ii-flames-of-vengeance/index.json b/site/public/v1/games/divinity-ii-flames-of-vengeance/index.json new file mode 100644 index 000000000000..f3a701d31452 --- /dev/null +++ b/site/public/v1/games/divinity-ii-flames-of-vengeance/index.json @@ -0,0 +1,25 @@ +{ + "id": 40488, + "slug": "divinity-ii-flames-of-vengeance", + "name": "Divinity II: Flames of Vengeance", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110155722" + ], + "created_at": "2026-07-10T10:10:08.940307", + "updated_at": "2026-07-10T10:10:08.940307", + "url": "/v1/games/divinity-ii-flames-of-vengeance" +} diff --git a/site/public/v1/games/dizzy-collection/index.json b/site/public/v1/games/dizzy-collection/index.json new file mode 100644 index 000000000000..760f43f5e501 --- /dev/null +++ b/site/public/v1/games/dizzy-collection/index.json @@ -0,0 +1,25 @@ +{ + "id": 40511, + "slug": "dizzy-collection", + "name": "Dizzy Collection", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126184262" + ], + "created_at": "2026-07-10T10:10:08.946312", + "updated_at": "2026-07-10T10:10:08.946312", + "url": "/v1/games/dizzy-collection" +} diff --git a/site/public/v1/games/djmax-respect/index.json b/site/public/v1/games/djmax-respect/index.json new file mode 100644 index 000000000000..7a30bfe8d1f5 --- /dev/null +++ b/site/public/v1/games/djmax-respect/index.json @@ -0,0 +1,37 @@ +{ + "id": 40548, + "slug": "djmax-respect", + "name": "DJMax Respect", + "release_date": "2017-07-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "music video game", + "rhythm game" + ], + "stores": [], + "developers": [ + "Neowiz" + ], + "publishers": [ + "Neowiz", + "Arc System Works" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q24204182" + ], + "created_at": "2026-07-10T10:10:08.955292", + "updated_at": "2026-07-10T10:10:08.955292", + "url": "/v1/games/djmax-respect" +} diff --git a/site/public/v1/games/dk-island-emerald-rush/index.json b/site/public/v1/games/dk-island-emerald-rush/index.json new file mode 100644 index 000000000000..3f5ae5fc272b --- /dev/null +++ b/site/public/v1/games/dk-island-emerald-rush/index.json @@ -0,0 +1,31 @@ +{ + "id": 40556, + "slug": "dk-island-emerald-rush", + "name": "DK Island & Emerald Rush", + "release_date": "2025-09-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "action-adventure game" + ], + "stores": [], + "developers": [ + "Nintendo Entertainment Planning & Development" + ], + "publishers": [ + "Nintendo" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137909392" + ], + "created_at": "2026-07-10T10:10:08.956280", + "updated_at": "2026-07-10T10:10:08.956280", + "url": "/v1/games/dk-island-emerald-rush" +} diff --git a/site/public/v1/games/dmc-devil-may-cry-vergil-s-downfall/index.json b/site/public/v1/games/dmc-devil-may-cry-vergil-s-downfall/index.json new file mode 100644 index 000000000000..10d2f1e99729 --- /dev/null +++ b/site/public/v1/games/dmc-devil-may-cry-vergil-s-downfall/index.json @@ -0,0 +1,27 @@ +{ + "id": 40565, + "slug": "dmc-devil-may-cry-vergil-s-downfall", + "name": "DmC Devil May Cry: Vergil's Downfall", + "release_date": "2013-03-05", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120809265" + ], + "created_at": "2026-07-10T10:10:08.959323", + "updated_at": "2026-07-10T10:10:08.959323", + "url": "/v1/games/dmc-devil-may-cry-vergil-s-downfall" +} diff --git a/site/public/v1/games/dmc-devil-may-cry/index.json b/site/public/v1/games/dmc-devil-may-cry/index.json new file mode 100644 index 000000000000..f81a23a4c2d6 --- /dev/null +++ b/site/public/v1/games/dmc-devil-may-cry/index.json @@ -0,0 +1,37 @@ +{ + "id": 40566, + "slug": "dmc-devil-may-cry", + "name": "DmC: Devil May Cry", + "release_date": "2013-01-15", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 4", + "PlayStation 3", + "Microsoft Windows" + ], + "genres": [ + "action-adventure game", + "hack and slash", + "dark fantasy video game" + ], + "stores": [], + "developers": [ + "Ninja Theory" + ], + "publishers": [ + "Capcom" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1826997" + ], + "created_at": "2026-07-10T10:10:08.959323", + "updated_at": "2026-07-10T10:10:08.959323", + "url": "/v1/games/dmc-devil-may-cry" +} diff --git a/site/public/v1/games/doctor-who-the-adventure-games/index.json b/site/public/v1/games/doctor-who-the-adventure-games/index.json new file mode 100644 index 000000000000..b137bce7e9c1 --- /dev/null +++ b/site/public/v1/games/doctor-who-the-adventure-games/index.json @@ -0,0 +1,25 @@ +{ + "id": 40701, + "slug": "doctor-who-the-adventure-games", + "name": "Doctor Who: The Adventure Games", + "release_date": "2010-06-05", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q65951402" + ], + "created_at": "2026-07-10T10:10:09.020981", + "updated_at": "2026-07-10T10:10:09.020981", + "url": "/v1/games/doctor-who-the-adventure-games" +} diff --git a/site/public/v1/games/dogwalk/index.json b/site/public/v1/games/dogwalk/index.json new file mode 100644 index 000000000000..a8a51e7ab505 --- /dev/null +++ b/site/public/v1/games/dogwalk/index.json @@ -0,0 +1,30 @@ +{ + "id": 40909, + "slug": "dogwalk", + "name": "DogWalk", + "release_date": "2025-07-11", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Blender Animation Studio" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134737596" + ], + "created_at": "2026-07-10T10:10:09.107139", + "updated_at": "2026-07-10T10:10:09.107139", + "url": "/v1/games/dogwalk" +} diff --git a/site/public/v1/games/dolbaram-ai/index.json b/site/public/v1/games/dolbaram-ai/index.json new file mode 100644 index 000000000000..72632b54f667 --- /dev/null +++ b/site/public/v1/games/dolbaram-ai/index.json @@ -0,0 +1,25 @@ +{ + "id": 40984, + "slug": "dolbaram-ai", + "name": "DolBaram AI", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q55729229" + ], + "created_at": "2026-07-10T10:10:09.125655", + "updated_at": "2026-07-10T10:10:09.125655", + "url": "/v1/games/dolbaram-ai" +} diff --git a/site/public/v1/games/don-t-buy-this/index.json b/site/public/v1/games/don-t-buy-this/index.json new file mode 100644 index 000000000000..65e6a00ab045 --- /dev/null +++ b/site/public/v1/games/don-t-buy-this/index.json @@ -0,0 +1,27 @@ +{ + "id": 41172, + "slug": "don-t-buy-this", + "name": "Don't Buy This", + "release_date": "1985-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "ZX Spectrum" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5291495" + ], + "created_at": "2026-07-10T10:10:09.175175", + "updated_at": "2026-07-10T10:10:09.175175", + "url": "/v1/games/don-t-buy-this" +} diff --git a/site/public/v1/games/don-t-escape-trilogy/index.json b/site/public/v1/games/don-t-escape-trilogy/index.json new file mode 100644 index 000000000000..2fe6180d71f4 --- /dev/null +++ b/site/public/v1/games/don-t-escape-trilogy/index.json @@ -0,0 +1,33 @@ +{ + "id": 41209, + "slug": "don-t-escape-trilogy", + "name": "Don't Escape Trilogy", + "release_date": "2019-07-29", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "point-and-click adventure" + ], + "stores": [], + "developers": [ + "Scriptwelder Studio" + ], + "publishers": [ + "Armor Games Studios" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q101598179" + ], + "created_at": "2026-07-10T10:10:09.184224", + "updated_at": "2026-07-10T10:10:09.184224", + "url": "/v1/games/don-t-escape-trilogy" +} diff --git a/site/public/v1/games/don-t-starve-giant-edition-shipwrecked-expansion/index.json b/site/public/v1/games/don-t-starve-giant-edition-shipwrecked-expansion/index.json new file mode 100644 index 000000000000..1ebe4436f712 --- /dev/null +++ b/site/public/v1/games/don-t-starve-giant-edition-shipwrecked-expansion/index.json @@ -0,0 +1,25 @@ +{ + "id": 41320, + "slug": "don-t-starve-giant-edition-shipwrecked-expansion", + "name": "Don't Starve: Giant Edition + Shipwrecked Expansion", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q92203940" + ], + "created_at": "2026-07-10T10:10:09.215331", + "updated_at": "2026-07-10T10:10:09.215331", + "url": "/v1/games/don-t-starve-giant-edition-shipwrecked-expansion" +} diff --git a/site/public/v1/games/don-t-starve-giant-edition/index.json b/site/public/v1/games/don-t-starve-giant-edition/index.json new file mode 100644 index 000000000000..3b680a8dae96 --- /dev/null +++ b/site/public/v1/games/don-t-starve-giant-edition/index.json @@ -0,0 +1,27 @@ +{ + "id": 41321, + "slug": "don-t-starve-giant-edition", + "name": "Don't Starve: Giant Edition", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Wii U" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q92204067" + ], + "created_at": "2026-07-10T10:10:09.215331", + "updated_at": "2026-07-10T10:10:09.215331", + "url": "/v1/games/don-t-starve-giant-edition" +} diff --git a/site/public/v1/games/don-t-starve-pocket-edition/index.json b/site/public/v1/games/don-t-starve-pocket-edition/index.json new file mode 100644 index 000000000000..7ceb2b2867ae --- /dev/null +++ b/site/public/v1/games/don-t-starve-pocket-edition/index.json @@ -0,0 +1,30 @@ +{ + "id": 41322, + "slug": "don-t-starve-pocket-edition", + "name": "Don't Starve: Pocket Edition+", + "release_date": "2021-04-03", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "iPadOS", + "iOS" + ], + "genres": [], + "stores": [], + "developers": [ + "Klei Entertainment" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107148158" + ], + "created_at": "2026-07-10T10:10:09.215331", + "updated_at": "2026-07-10T10:10:09.215331", + "url": "/v1/games/don-t-starve-pocket-edition" +} diff --git a/site/public/v1/games/donkey-kong-classics/index.json b/site/public/v1/games/donkey-kong-classics/index.json new file mode 100644 index 000000000000..2d85c06da170 --- /dev/null +++ b/site/public/v1/games/donkey-kong-classics/index.json @@ -0,0 +1,32 @@ +{ + "id": 41393, + "slug": "donkey-kong-classics", + "name": "Donkey Kong Classics", + "release_date": "1988-10-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Nintendo Entertainment System" + ], + "genres": [], + "stores": [], + "developers": [ + "Nintendo Entertainment Analysis & Development", + "Nintendo" + ], + "publishers": [ + "Nintendo" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2606702" + ], + "created_at": "2026-07-10T10:10:09.233944", + "updated_at": "2026-07-10T10:10:09.233944", + "url": "/v1/games/donkey-kong-classics" +} diff --git a/site/public/v1/games/doodle-champion-island-games/index.json b/site/public/v1/games/doodle-champion-island-games/index.json new file mode 100644 index 000000000000..b8899d0cea71 --- /dev/null +++ b/site/public/v1/games/doodle-champion-island-games/index.json @@ -0,0 +1,35 @@ +{ + "id": 41440, + "slug": "doodle-champion-island-games", + "name": "Doodle Champion Island Games", + "release_date": "2021-07-23", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "web browser" + ], + "genres": [ + "role-playing video game", + "athletics video game" + ], + "stores": [], + "developers": [ + "Google" + ], + "publishers": [ + "Google", + "Studio 4°C" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107627602" + ], + "created_at": "2026-07-10T10:10:09.244947", + "updated_at": "2026-07-10T10:10:09.244947", + "url": "/v1/games/doodle-champion-island-games" +} diff --git a/site/public/v1/games/doom-3-mr-smiley-head-s-safari/index.json b/site/public/v1/games/doom-3-mr-smiley-head-s-safari/index.json new file mode 100644 index 000000000000..2d03580ee8e9 --- /dev/null +++ b/site/public/v1/games/doom-3-mr-smiley-head-s-safari/index.json @@ -0,0 +1,27 @@ +{ + "id": 41496, + "slug": "doom-3-mr-smiley-head-s-safari", + "name": "Doom 3: Mr. Smiley Head's Safari", + "release_date": "1995-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "first-person shooter" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q67471576" + ], + "created_at": "2026-07-10T10:10:09.258868", + "updated_at": "2026-07-10T10:10:09.258868", + "url": "/v1/games/doom-3-mr-smiley-head-s-safari" +} diff --git a/site/public/v1/games/doom-32x-resurrection/index.json b/site/public/v1/games/doom-32x-resurrection/index.json new file mode 100644 index 000000000000..2de474e545f1 --- /dev/null +++ b/site/public/v1/games/doom-32x-resurrection/index.json @@ -0,0 +1,27 @@ +{ + "id": 41498, + "slug": "doom-32x-resurrection", + "name": "DOOM 32X: Resurrection", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "first-person shooter" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124414108" + ], + "created_at": "2026-07-10T10:10:09.258868", + "updated_at": "2026-07-10T10:10:09.258868", + "url": "/v1/games/doom-32x-resurrection" +} diff --git a/site/public/v1/games/doom-eternal-the-ancient-gods-part-one-q106166973/index.json b/site/public/v1/games/doom-eternal-the-ancient-gods-part-one-q106166973/index.json new file mode 100644 index 000000000000..3a73606111b4 --- /dev/null +++ b/site/public/v1/games/doom-eternal-the-ancient-gods-part-one-q106166973/index.json @@ -0,0 +1,36 @@ +{ + "id": 41508, + "slug": "doom-eternal-the-ancient-gods-part-one-q106166973", + "name": "Doom Eternal: The Ancient Gods - Part One", + "release_date": "2020-10-20", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 5", + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "first-person shooter" + ], + "stores": [], + "developers": [ + "id Software" + ], + "publishers": [ + "Bethesda Softworks" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106166973" + ], + "created_at": "2026-07-10T10:10:09.261867", + "updated_at": "2026-07-10T10:10:09.261867", + "url": "/v1/games/doom-eternal-the-ancient-gods-part-one-q106166973" +} diff --git a/site/public/v1/games/doom-eternal-the-ancient-gods-part-two/index.json b/site/public/v1/games/doom-eternal-the-ancient-gods-part-two/index.json new file mode 100644 index 000000000000..3acd8fd1bce2 --- /dev/null +++ b/site/public/v1/games/doom-eternal-the-ancient-gods-part-two/index.json @@ -0,0 +1,36 @@ +{ + "id": 41510, + "slug": "doom-eternal-the-ancient-gods-part-two", + "name": "Doom Eternal: The Ancient Gods – Part Two", + "release_date": "2021-03-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 5", + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "first-person shooter" + ], + "stores": [], + "developers": [ + "id Software" + ], + "publishers": [ + "Bethesda Softworks" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106167320" + ], + "created_at": "2026-07-10T10:10:09.261867", + "updated_at": "2026-07-10T10:10:09.261867", + "url": "/v1/games/doom-eternal-the-ancient-gods-part-two" +} diff --git a/site/public/v1/games/doom-legacy/index.json b/site/public/v1/games/doom-legacy/index.json new file mode 100644 index 000000000000..bd6da47036a9 --- /dev/null +++ b/site/public/v1/games/doom-legacy/index.json @@ -0,0 +1,27 @@ +{ + "id": 41518, + "slug": "doom-legacy", + "name": "Doom Legacy", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Classic Mac OS" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11856277" + ], + "created_at": "2026-07-10T10:10:09.263867", + "updated_at": "2026-07-10T10:10:09.263867", + "url": "/v1/games/doom-legacy" +} diff --git a/site/public/v1/games/doom-q513867/index.json b/site/public/v1/games/doom-q513867/index.json new file mode 100644 index 000000000000..26cf65accbcc --- /dev/null +++ b/site/public/v1/games/doom-q513867/index.json @@ -0,0 +1,35 @@ +{ + "id": 41521, + "slug": "doom-q513867", + "name": "Doom", + "release_date": "2016-05-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "first-person shooter" + ], + "stores": [], + "developers": [ + "Bethesda Game Studios", + "id Software" + ], + "publishers": [ + "Bethesda Softworks" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q513867" + ], + "created_at": "2026-07-10T10:10:09.264867", + "updated_at": "2026-07-10T10:10:09.264867", + "url": "/v1/games/doom-q513867" +} diff --git a/site/public/v1/games/doom-retro/index.json b/site/public/v1/games/doom-retro/index.json new file mode 100644 index 000000000000..61ea0d09df15 --- /dev/null +++ b/site/public/v1/games/doom-retro/index.json @@ -0,0 +1,25 @@ +{ + "id": 41524, + "slug": "doom-retro", + "name": "DOOM Retro", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q67221151" + ], + "created_at": "2026-07-10T10:10:09.265867", + "updated_at": "2026-07-10T10:10:09.265867", + "url": "/v1/games/doom-retro" +} diff --git a/site/public/v1/games/doom-utilities/index.json b/site/public/v1/games/doom-utilities/index.json new file mode 100644 index 000000000000..904da447fe86 --- /dev/null +++ b/site/public/v1/games/doom-utilities/index.json @@ -0,0 +1,29 @@ +{ + "id": 41534, + "slug": "doom-utilities", + "name": "Doom Utilities", + "release_date": "1994-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "first-person shooter" + ], + "stores": [], + "developers": [], + "publishers": [ + "Cobra Computing" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131406722" + ], + "created_at": "2026-07-10T10:10:09.268866", + "updated_at": "2026-07-10T10:10:09.268866", + "url": "/v1/games/doom-utilities" +} diff --git a/site/public/v1/games/doom8088/index.json b/site/public/v1/games/doom8088/index.json new file mode 100644 index 000000000000..393466b98a7c --- /dev/null +++ b/site/public/v1/games/doom8088/index.json @@ -0,0 +1,27 @@ +{ + "id": 41538, + "slug": "doom8088", + "name": "Doom8088", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "personal computer" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124473648" + ], + "created_at": "2026-07-10T10:10:09.269866", + "updated_at": "2026-07-10T10:10:09.269866", + "url": "/v1/games/doom8088" +} diff --git a/site/public/v1/games/doomgeneric/index.json b/site/public/v1/games/doomgeneric/index.json new file mode 100644 index 000000000000..c1a9eea121ae --- /dev/null +++ b/site/public/v1/games/doomgeneric/index.json @@ -0,0 +1,25 @@ +{ + "id": 41559, + "slug": "doomgeneric", + "name": "doomgeneric", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124473763" + ], + "created_at": "2026-07-10T10:10:09.274866", + "updated_at": "2026-07-10T10:10:09.274866", + "url": "/v1/games/doomgeneric" +} diff --git a/site/public/v1/games/doomsday-engine/index.json b/site/public/v1/games/doomsday-engine/index.json new file mode 100644 index 000000000000..3486b6a5e9b4 --- /dev/null +++ b/site/public/v1/games/doomsday-engine/index.json @@ -0,0 +1,25 @@ +{ + "id": 41570, + "slug": "doomsday-engine", + "name": "Doomsday Engine", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q67196248" + ], + "created_at": "2026-07-10T10:10:09.277867", + "updated_at": "2026-07-10T10:10:09.277867", + "url": "/v1/games/doomsday-engine" +} diff --git a/site/public/v1/games/doors-q116141717/index.json b/site/public/v1/games/doors-q116141717/index.json new file mode 100644 index 000000000000..82a4e4a953a6 --- /dev/null +++ b/site/public/v1/games/doors-q116141717/index.json @@ -0,0 +1,32 @@ +{ + "id": 41622, + "slug": "doors-q116141717", + "name": "Doors", + "release_date": "2022-08-10", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S", + "iOS", + "macOS", + "Microsoft Windows" + ], + "genres": [ + "horror video game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116141717" + ], + "created_at": "2026-07-10T10:10:09.291958", + "updated_at": "2026-07-10T10:10:09.291958", + "url": "/v1/games/doors-q116141717" +} diff --git a/site/public/v1/games/dosdoom/index.json b/site/public/v1/games/dosdoom/index.json new file mode 100644 index 000000000000..0bdd236cf0e0 --- /dev/null +++ b/site/public/v1/games/dosdoom/index.json @@ -0,0 +1,25 @@ +{ + "id": 41723, + "slug": "dosdoom", + "name": "DOSDoom", + "release_date": "1997-12-23", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q67198934" + ], + "created_at": "2026-07-10T10:10:09.318002", + "updated_at": "2026-07-10T10:10:09.318002", + "url": "/v1/games/dosdoom" +} diff --git a/site/public/v1/games/double-dragon-neon/index.json b/site/public/v1/games/double-dragon-neon/index.json new file mode 100644 index 000000000000..040bc3ef88e1 --- /dev/null +++ b/site/public/v1/games/double-dragon-neon/index.json @@ -0,0 +1,34 @@ +{ + "id": 41798, + "slug": "double-dragon-neon", + "name": "Double Dragon Neon", + "release_date": "2012-09-11", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 3", + "Microsoft Windows" + ], + "genres": [ + "beat 'em up" + ], + "stores": [], + "developers": [ + "WayForward Technologies" + ], + "publishers": [ + "Majesco Entertainment" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3037447" + ], + "created_at": "2026-07-10T10:10:09.336679", + "updated_at": "2026-07-10T10:10:09.336679", + "url": "/v1/games/double-dragon-neon" +} diff --git a/site/public/v1/games/downwell-q123295662/index.json b/site/public/v1/games/downwell-q123295662/index.json new file mode 100644 index 000000000000..faed806316eb --- /dev/null +++ b/site/public/v1/games/downwell-q123295662/index.json @@ -0,0 +1,28 @@ +{ + "id": 41956, + "slug": "downwell-q123295662", + "name": "Downwell+", + "release_date": "2023-11-21", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "iPadOS", + "iOS" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123295662" + ], + "created_at": "2026-07-10T10:10:09.388343", + "updated_at": "2026-07-10T10:10:09.388343", + "url": "/v1/games/downwell-q123295662" +} diff --git a/site/public/v1/games/dracula-q11322942/index.json b/site/public/v1/games/dracula-q11322942/index.json new file mode 100644 index 000000000000..6f47afe7638c --- /dev/null +++ b/site/public/v1/games/dracula-q11322942/index.json @@ -0,0 +1,25 @@ +{ + "id": 42100, + "slug": "dracula-q11322942", + "name": "Dracula", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11322942" + ], + "created_at": "2026-07-10T10:10:09.428084", + "updated_at": "2026-07-10T10:10:09.428084", + "url": "/v1/games/dracula-q11322942" +} diff --git a/site/public/v1/games/dragon-age-ii-legacy/index.json b/site/public/v1/games/dragon-age-ii-legacy/index.json new file mode 100644 index 000000000000..fd84dac4529b --- /dev/null +++ b/site/public/v1/games/dragon-age-ii-legacy/index.json @@ -0,0 +1,25 @@ +{ + "id": 42192, + "slug": "dragon-age-ii-legacy", + "name": "Dragon Age II: Legacy", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113504399" + ], + "created_at": "2026-07-10T10:10:09.450140", + "updated_at": "2026-07-10T10:10:09.450140", + "url": "/v1/games/dragon-age-ii-legacy" +} diff --git a/site/public/v1/games/dragon-age-inquisition-jaws-of-hakkon/index.json b/site/public/v1/games/dragon-age-inquisition-jaws-of-hakkon/index.json new file mode 100644 index 000000000000..07d6b9ba6ef8 --- /dev/null +++ b/site/public/v1/games/dragon-age-inquisition-jaws-of-hakkon/index.json @@ -0,0 +1,27 @@ +{ + "id": 42194, + "slug": "dragon-age-inquisition-jaws-of-hakkon", + "name": "Dragon Age: Inquisition – Jaws of Hakkon", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [ + "BioWare" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q96376608" + ], + "created_at": "2026-07-10T10:10:09.450140", + "updated_at": "2026-07-10T10:10:09.450140", + "url": "/v1/games/dragon-age-inquisition-jaws-of-hakkon" +} diff --git a/site/public/v1/games/dragon-age-inquisition-the-descent/index.json b/site/public/v1/games/dragon-age-inquisition-the-descent/index.json new file mode 100644 index 000000000000..a58a7cbd496a --- /dev/null +++ b/site/public/v1/games/dragon-age-inquisition-the-descent/index.json @@ -0,0 +1,25 @@ +{ + "id": 42195, + "slug": "dragon-age-inquisition-the-descent", + "name": "Dragon Age: Inquisition – The Descent", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105564026" + ], + "created_at": "2026-07-10T10:10:09.451100", + "updated_at": "2026-07-10T10:10:09.451100", + "url": "/v1/games/dragon-age-inquisition-the-descent" +} diff --git a/site/public/v1/games/dragon-age-inquisition-trespasser/index.json b/site/public/v1/games/dragon-age-inquisition-trespasser/index.json new file mode 100644 index 000000000000..34ac79e5ccd0 --- /dev/null +++ b/site/public/v1/games/dragon-age-inquisition-trespasser/index.json @@ -0,0 +1,34 @@ +{ + "id": 42196, + "slug": "dragon-age-inquisition-trespasser", + "name": "Dragon Age: Inquisition – Trespasser", + "release_date": "2015-09-08", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "action role-playing game" + ], + "stores": [], + "developers": [ + "BioWare" + ], + "publishers": [ + "Electronic Arts" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105564044" + ], + "created_at": "2026-07-10T10:10:09.451100", + "updated_at": "2026-07-10T10:10:09.451100", + "url": "/v1/games/dragon-age-inquisition-trespasser" +} diff --git a/site/public/v1/games/dragon-age-origins-awakening/index.json b/site/public/v1/games/dragon-age-origins-awakening/index.json new file mode 100644 index 000000000000..66b814ca13b7 --- /dev/null +++ b/site/public/v1/games/dragon-age-origins-awakening/index.json @@ -0,0 +1,35 @@ +{ + "id": 42199, + "slug": "dragon-age-origins-awakening", + "name": "Dragon Age: Origins – Awakening", + "release_date": "2010-03-16", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "PlayStation 3", + "Microsoft Windows" + ], + "genres": [ + "role-playing video game" + ], + "stores": [], + "developers": [ + "BioWare" + ], + "publishers": [ + "Electronic Arts" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q769833" + ], + "created_at": "2026-07-10T10:10:09.451100", + "updated_at": "2026-07-10T10:10:09.451100", + "url": "/v1/games/dragon-age-origins-awakening" +} diff --git a/site/public/v1/games/dragon-age-origins-leliana-s-song/index.json b/site/public/v1/games/dragon-age-origins-leliana-s-song/index.json new file mode 100644 index 000000000000..eda5dcaecb97 --- /dev/null +++ b/site/public/v1/games/dragon-age-origins-leliana-s-song/index.json @@ -0,0 +1,25 @@ +{ + "id": 42200, + "slug": "dragon-age-origins-leliana-s-song", + "name": "Dragon Age: Origins - Leliana's Song", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110155020" + ], + "created_at": "2026-07-10T10:10:09.452157", + "updated_at": "2026-07-10T10:10:09.452157", + "url": "/v1/games/dragon-age-origins-leliana-s-song" +} diff --git a/site/public/v1/games/dragon-age-origins-return-to-ostagar/index.json b/site/public/v1/games/dragon-age-origins-return-to-ostagar/index.json new file mode 100644 index 000000000000..47a17fc28d8e --- /dev/null +++ b/site/public/v1/games/dragon-age-origins-return-to-ostagar/index.json @@ -0,0 +1,34 @@ +{ + "id": 42201, + "slug": "dragon-age-origins-return-to-ostagar", + "name": "Dragon Age: Origins – Return to Ostagar", + "release_date": "2010-01-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 3", + "Microsoft Windows" + ], + "genres": [ + "action role-playing game" + ], + "stores": [], + "developers": [ + "BioWare" + ], + "publishers": [ + "Electronic Arts" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106142565" + ], + "created_at": "2026-07-10T10:10:09.452157", + "updated_at": "2026-07-10T10:10:09.452157", + "url": "/v1/games/dragon-age-origins-return-to-ostagar" +} diff --git a/site/public/v1/games/dragon-age-origins-the-darkspawn-chronicles/index.json b/site/public/v1/games/dragon-age-origins-the-darkspawn-chronicles/index.json new file mode 100644 index 000000000000..1bbbac6bb4ec --- /dev/null +++ b/site/public/v1/games/dragon-age-origins-the-darkspawn-chronicles/index.json @@ -0,0 +1,25 @@ +{ + "id": 42202, + "slug": "dragon-age-origins-the-darkspawn-chronicles", + "name": "Dragon Age: Origins - The Darkspawn Chronicles", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110155006" + ], + "created_at": "2026-07-10T10:10:09.452157", + "updated_at": "2026-07-10T10:10:09.452157", + "url": "/v1/games/dragon-age-origins-the-darkspawn-chronicles" +} diff --git a/site/public/v1/games/dragon-age-origins-the-golems-of-amgarrak/index.json b/site/public/v1/games/dragon-age-origins-the-golems-of-amgarrak/index.json new file mode 100644 index 000000000000..94d4e192d78e --- /dev/null +++ b/site/public/v1/games/dragon-age-origins-the-golems-of-amgarrak/index.json @@ -0,0 +1,25 @@ +{ + "id": 42203, + "slug": "dragon-age-origins-the-golems-of-amgarrak", + "name": "Dragon Age: Origins – The Golems of Amgarrak", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110155031" + ], + "created_at": "2026-07-10T10:10:09.452157", + "updated_at": "2026-07-10T10:10:09.453442", + "url": "/v1/games/dragon-age-origins-the-golems-of-amgarrak" +} diff --git a/site/public/v1/games/dragon-age-origins-the-stone-prisoner/index.json b/site/public/v1/games/dragon-age-origins-the-stone-prisoner/index.json new file mode 100644 index 000000000000..dc8f339a15e9 --- /dev/null +++ b/site/public/v1/games/dragon-age-origins-the-stone-prisoner/index.json @@ -0,0 +1,25 @@ +{ + "id": 42204, + "slug": "dragon-age-origins-the-stone-prisoner", + "name": "Dragon Age: Origins – The Stone Prisoner", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110154983" + ], + "created_at": "2026-07-10T10:10:09.453442", + "updated_at": "2026-07-10T10:10:09.453442", + "url": "/v1/games/dragon-age-origins-the-stone-prisoner" +} diff --git a/site/public/v1/games/dragon-age-origins-warden-s-keep/index.json b/site/public/v1/games/dragon-age-origins-warden-s-keep/index.json new file mode 100644 index 000000000000..511b8b4a0883 --- /dev/null +++ b/site/public/v1/games/dragon-age-origins-warden-s-keep/index.json @@ -0,0 +1,25 @@ +{ + "id": 42205, + "slug": "dragon-age-origins-warden-s-keep", + "name": "Dragon Age: Origins – Warden's Keep", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110154964" + ], + "created_at": "2026-07-10T10:10:09.453442", + "updated_at": "2026-07-10T10:10:09.453442", + "url": "/v1/games/dragon-age-origins-warden-s-keep" +} diff --git a/site/public/v1/games/dragon-age-origins-witch-hunt/index.json b/site/public/v1/games/dragon-age-origins-witch-hunt/index.json new file mode 100644 index 000000000000..e13c370ac90f --- /dev/null +++ b/site/public/v1/games/dragon-age-origins-witch-hunt/index.json @@ -0,0 +1,25 @@ +{ + "id": 42206, + "slug": "dragon-age-origins-witch-hunt", + "name": "Dragon Age: Origins - Witch Hunt", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110155043" + ], + "created_at": "2026-07-10T10:10:09.453442", + "updated_at": "2026-07-10T10:10:09.453442", + "url": "/v1/games/dragon-age-origins-witch-hunt" +} diff --git a/site/public/v1/games/dragon-cave-q122762545/index.json b/site/public/v1/games/dragon-cave-q122762545/index.json new file mode 100644 index 000000000000..a2cfd6fe1255 --- /dev/null +++ b/site/public/v1/games/dragon-cave-q122762545/index.json @@ -0,0 +1,25 @@ +{ + "id": 42310, + "slug": "dragon-cave-q122762545", + "name": "Dragon Cave", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122762545" + ], + "created_at": "2026-07-10T10:10:09.483558", + "updated_at": "2026-07-10T10:10:09.483558", + "url": "/v1/games/dragon-cave-q122762545" +} diff --git a/site/public/v1/games/dragon-crusade/index.json b/site/public/v1/games/dragon-crusade/index.json new file mode 100644 index 000000000000..069760f03adb --- /dev/null +++ b/site/public/v1/games/dragon-crusade/index.json @@ -0,0 +1,25 @@ +{ + "id": 42325, + "slug": "dragon-crusade", + "name": "Dragon Crusade", + "release_date": "2009-04-23", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11322987" + ], + "created_at": "2026-07-10T10:10:09.488447", + "updated_at": "2026-07-10T10:10:09.488447", + "url": "/v1/games/dragon-crusade" +} diff --git a/site/public/v1/games/dragon-quest-25-sh-nen-kinen-famicom-super-famicom-dragon-quest-i-ii-iii/index.json b/site/public/v1/games/dragon-quest-25-sh-nen-kinen-famicom-super-famicom-dragon-quest-i-ii-iii/index.json new file mode 100644 index 000000000000..255f8ac23502 --- /dev/null +++ b/site/public/v1/games/dragon-quest-25-sh-nen-kinen-famicom-super-famicom-dragon-quest-i-ii-iii/index.json @@ -0,0 +1,31 @@ +{ + "id": 42424, + "slug": "dragon-quest-25-sh-nen-kinen-famicom-super-famicom-dragon-quest-i-ii-iii", + "name": "Dragon Quest 25 Shūnen Kinen Famicom & Super Famicom Dragon Quest I・II・III", + "release_date": "2011-09-15", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Wii" + ], + "genres": [], + "stores": [], + "developers": [ + "Square Enix" + ], + "publishers": [ + "Square Enix" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q406363" + ], + "created_at": "2026-07-10T10:10:09.513607", + "updated_at": "2026-07-10T10:10:09.513607", + "url": "/v1/games/dragon-quest-25-sh-nen-kinen-famicom-super-famicom-dragon-quest-i-ii-iii" +} diff --git a/site/public/v1/games/dragon-quest-25-shuunen-kinen-famicom-super-famicom-dragon-quest-i-ii-iii/index.json b/site/public/v1/games/dragon-quest-25-shuunen-kinen-famicom-super-famicom-dragon-quest-i-ii-iii/index.json new file mode 100644 index 000000000000..bc00547bbfd3 --- /dev/null +++ b/site/public/v1/games/dragon-quest-25-shuunen-kinen-famicom-super-famicom-dragon-quest-i-ii-iii/index.json @@ -0,0 +1,31 @@ +{ + "id": 42425, + "slug": "dragon-quest-25-shuunen-kinen-famicom-super-famicom-dragon-quest-i-ii-iii", + "name": "Dragon Quest 25 Shuunen Kinen: Famicom & Super Famicom Dragon Quest I-II-III", + "release_date": "2011-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Wii" + ], + "genres": [], + "stores": [], + "developers": [ + "Square Enix" + ], + "publishers": [ + "Square Enix" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110414790" + ], + "created_at": "2026-07-10T10:10:09.513607", + "updated_at": "2026-07-10T10:10:09.513607", + "url": "/v1/games/dragon-quest-25-shuunen-kinen-famicom-super-famicom-dragon-quest-i-ii-iii" +} diff --git a/site/public/v1/games/dragon-quest-x-the-sleeping-hero-and-the-guiding-ally-offline/index.json b/site/public/v1/games/dragon-quest-x-the-sleeping-hero-and-the-guiding-ally-offline/index.json new file mode 100644 index 000000000000..ca9a3b56325a --- /dev/null +++ b/site/public/v1/games/dragon-quest-x-the-sleeping-hero-and-the-guiding-ally-offline/index.json @@ -0,0 +1,34 @@ +{ + "id": 42470, + "slug": "dragon-quest-x-the-sleeping-hero-and-the-guiding-ally-offline", + "name": "Dragon Quest X: The Sleeping Hero and the Guiding Ally Offline", + "release_date": "2023-06-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 5", + "PlayStation 4", + "personal computer" + ], + "genres": [], + "stores": [], + "developers": [ + "Bandai Namco Forge Digitals", + "Square Enix" + ], + "publishers": [ + "Square Enix" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q114723316" + ], + "created_at": "2026-07-10T10:10:09.523238", + "updated_at": "2026-07-10T10:10:09.523238", + "url": "/v1/games/dragon-quest-x-the-sleeping-hero-and-the-guiding-ally-offline" +} diff --git a/site/public/v1/games/dragon-sword/index.json b/site/public/v1/games/dragon-sword/index.json new file mode 100644 index 000000000000..8988adb3006d --- /dev/null +++ b/site/public/v1/games/dragon-sword/index.json @@ -0,0 +1,34 @@ +{ + "id": 42557, + "slug": "dragon-sword", + "name": "Dragon Sword", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Nintendo 64", + "Microsoft Windows" + ], + "genres": [ + "action role-playing game" + ], + "stores": [], + "developers": [ + "Blitz Games" + ], + "publishers": [ + "MGM Interactive" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q103820038" + ], + "created_at": "2026-07-10T10:10:09.545247", + "updated_at": "2026-07-10T10:10:09.545247", + "url": "/v1/games/dragon-sword" +} diff --git a/site/public/v1/games/dragoon-episodes/index.json b/site/public/v1/games/dragoon-episodes/index.json new file mode 100644 index 000000000000..689455d64856 --- /dev/null +++ b/site/public/v1/games/dragoon-episodes/index.json @@ -0,0 +1,29 @@ +{ + "id": 42660, + "slug": "dragoon-episodes", + "name": "Dragoon Episodes", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "action game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110817101" + ], + "created_at": "2026-07-10T10:10:09.572235", + "updated_at": "2026-07-10T10:10:09.572235", + "url": "/v1/games/dragoon-episodes" +} diff --git a/site/public/v1/games/dragoon-the-prussian-war-machine/index.json b/site/public/v1/games/dragoon-the-prussian-war-machine/index.json new file mode 100644 index 000000000000..e7cc502cc352 --- /dev/null +++ b/site/public/v1/games/dragoon-the-prussian-war-machine/index.json @@ -0,0 +1,25 @@ +{ + "id": 42662, + "slug": "dragoon-the-prussian-war-machine", + "name": "Dragoon: The Prussian War Machine", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140471353" + ], + "created_at": "2026-07-10T10:10:09.573236", + "updated_at": "2026-07-10T10:10:09.573236", + "url": "/v1/games/dragoon-the-prussian-war-machine" +} diff --git a/site/public/v1/games/drakensang-phileasson-s-secret/index.json b/site/public/v1/games/drakensang-phileasson-s-secret/index.json new file mode 100644 index 000000000000..d0ad11c666d9 --- /dev/null +++ b/site/public/v1/games/drakensang-phileasson-s-secret/index.json @@ -0,0 +1,27 @@ +{ + "id": 42693, + "slug": "drakensang-phileasson-s-secret", + "name": "Drakensang: Phileasson's Secret", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16550668" + ], + "created_at": "2026-07-10T10:10:09.580248", + "updated_at": "2026-07-10T10:10:09.580248", + "url": "/v1/games/drakensang-phileasson-s-secret" +} diff --git a/site/public/v1/games/drawn-to-life-collection/index.json b/site/public/v1/games/drawn-to-life-collection/index.json new file mode 100644 index 000000000000..d846db8cee72 --- /dev/null +++ b/site/public/v1/games/drawn-to-life-collection/index.json @@ -0,0 +1,27 @@ +{ + "id": 42765, + "slug": "drawn-to-life-collection", + "name": "Drawn to Life Collection", + "release_date": "2010-11-23", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Nintendo DS" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q67203893" + ], + "created_at": "2026-07-10T10:10:09.600249", + "updated_at": "2026-07-10T10:10:09.600249", + "url": "/v1/games/drawn-to-life-collection" +} diff --git a/site/public/v1/games/drawrace-2-racing-evolved/index.json b/site/public/v1/games/drawrace-2-racing-evolved/index.json new file mode 100644 index 000000000000..c20da966d7e1 --- /dev/null +++ b/site/public/v1/games/drawrace-2-racing-evolved/index.json @@ -0,0 +1,25 @@ +{ + "id": 42774, + "slug": "drawrace-2-racing-evolved", + "name": "DrawRace 2: Racing Evolved", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140472167" + ], + "created_at": "2026-07-10T10:10:09.602247", + "updated_at": "2026-07-10T10:10:09.602247", + "url": "/v1/games/drawrace-2-racing-evolved" +} diff --git a/site/public/v1/games/dread-delusion-demo/index.json b/site/public/v1/games/dread-delusion-demo/index.json new file mode 100644 index 000000000000..6c774bcb4b60 --- /dev/null +++ b/site/public/v1/games/dread-delusion-demo/index.json @@ -0,0 +1,35 @@ +{ + "id": 42783, + "slug": "dread-delusion-demo", + "name": "Dread Delusion (Demo)", + "release_date": "2020-02-06", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "action role-playing game", + "Metroidvania", + "soulslike" + ], + "stores": [], + "developers": [ + "James Wragg" + ], + "publishers": [ + "DreadXP" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126036981" + ], + "created_at": "2026-07-10T10:10:09.604278", + "updated_at": "2026-07-10T10:10:09.604278", + "url": "/v1/games/dread-delusion-demo" +} diff --git a/site/public/v1/games/dream-team-the/index.json b/site/public/v1/games/dream-team-the/index.json new file mode 100644 index 000000000000..02edb169d959 --- /dev/null +++ b/site/public/v1/games/dream-team-the/index.json @@ -0,0 +1,25 @@ +{ + "id": 43012, + "slug": "dream-team-the", + "name": "Dream Team, The", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126184279" + ], + "created_at": "2026-07-10T10:10:09.660778", + "updated_at": "2026-07-10T10:10:09.660778", + "url": "/v1/games/dream-team-the" +} diff --git a/site/public/v1/games/dreamcast-collection/index.json b/site/public/v1/games/dreamcast-collection/index.json new file mode 100644 index 000000000000..5867342976d8 --- /dev/null +++ b/site/public/v1/games/dreamcast-collection/index.json @@ -0,0 +1,31 @@ +{ + "id": 43037, + "slug": "dreamcast-collection", + "name": "Dreamcast Collection", + "release_date": "2011-02-22", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Sega" + ], + "publishers": [ + "Sega" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5306537" + ], + "created_at": "2026-07-10T10:10:09.665777", + "updated_at": "2026-07-10T10:10:09.665777", + "url": "/v1/games/dreamcast-collection" +} diff --git a/site/public/v1/games/dredge-the-iron-rig/index.json b/site/public/v1/games/dredge-the-iron-rig/index.json new file mode 100644 index 000000000000..f09b2b2494b1 --- /dev/null +++ b/site/public/v1/games/dredge-the-iron-rig/index.json @@ -0,0 +1,39 @@ +{ + "id": 43183, + "slug": "dredge-the-iron-rig", + "name": "Dredge: The Iron Rig", + "release_date": "2024-08-15", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 5", + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "adventure video game", + "fishing video game", + "cosmic horror video game", + "role-playing video game" + ], + "stores": [], + "developers": [ + "Black Salt Games" + ], + "publishers": [ + "Team17" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130975373" + ], + "created_at": "2026-07-10T10:10:09.697786", + "updated_at": "2026-07-10T10:10:09.697786", + "url": "/v1/games/dredge-the-iron-rig" +} diff --git a/site/public/v1/games/dredge-the-pale-reach/index.json b/site/public/v1/games/dredge-the-pale-reach/index.json new file mode 100644 index 000000000000..6405875bb14c --- /dev/null +++ b/site/public/v1/games/dredge-the-pale-reach/index.json @@ -0,0 +1,39 @@ +{ + "id": 43184, + "slug": "dredge-the-pale-reach", + "name": "Dredge: The Pale Reach", + "release_date": "2023-11-16", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 5", + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "adventure video game", + "fishing video game", + "cosmic horror video game", + "role-playing video game" + ], + "stores": [], + "developers": [ + "Black Salt Games" + ], + "publishers": [ + "Team17" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131147188" + ], + "created_at": "2026-07-10T10:10:09.697786", + "updated_at": "2026-07-10T10:10:09.697786", + "url": "/v1/games/dredge-the-pale-reach" +} diff --git a/site/public/v1/games/dress-to-impress/index.json b/site/public/v1/games/dress-to-impress/index.json new file mode 100644 index 000000000000..66370ecc05ad --- /dev/null +++ b/site/public/v1/games/dress-to-impress/index.json @@ -0,0 +1,27 @@ +{ + "id": 43198, + "slug": "dress-to-impress", + "name": "Dress to Impress", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "dress-up video game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130535729" + ], + "created_at": "2026-07-10T10:10:09.700783", + "updated_at": "2026-07-10T10:10:09.700783", + "url": "/v1/games/dress-to-impress" +} diff --git a/site/public/v1/games/drunk-or-dead-on-the-road/index.json b/site/public/v1/games/drunk-or-dead-on-the-road/index.json new file mode 100644 index 000000000000..e5266298241f --- /dev/null +++ b/site/public/v1/games/drunk-or-dead-on-the-road/index.json @@ -0,0 +1,31 @@ +{ + "id": 43632, + "slug": "drunk-or-dead-on-the-road", + "name": "Drunk or Dead - On the Road", + "release_date": "2018-01-10", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "4 I Lab" + ], + "publishers": [ + "4 I Lab" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120965502" + ], + "created_at": "2026-07-10T10:10:10.455110", + "updated_at": "2026-07-10T10:10:10.455110", + "url": "/v1/games/drunk-or-dead-on-the-road" +} diff --git a/site/public/v1/games/drunk-or-dead-uncensored/index.json b/site/public/v1/games/drunk-or-dead-uncensored/index.json new file mode 100644 index 000000000000..93a79c73acc0 --- /dev/null +++ b/site/public/v1/games/drunk-or-dead-uncensored/index.json @@ -0,0 +1,31 @@ +{ + "id": 43633, + "slug": "drunk-or-dead-uncensored", + "name": "Drunk or Dead - Uncensored", + "release_date": "2017-10-20", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "4 I Lab" + ], + "publishers": [ + "4 I Lab" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120965499" + ], + "created_at": "2026-07-10T10:10:10.456089", + "updated_at": "2026-07-10T10:10:10.456089", + "url": "/v1/games/drunk-or-dead-uncensored" +} diff --git a/site/public/v1/games/dsda-doom/index.json b/site/public/v1/games/dsda-doom/index.json new file mode 100644 index 000000000000..7fa0875723b5 --- /dev/null +++ b/site/public/v1/games/dsda-doom/index.json @@ -0,0 +1,25 @@ +{ + "id": 43677, + "slug": "dsda-doom", + "name": "DSDA-Doom", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124429100" + ], + "created_at": "2026-07-10T10:10:10.468925", + "updated_at": "2026-07-10T10:10:10.468925", + "url": "/v1/games/dsda-doom" +} diff --git a/site/public/v1/games/duke-nukem-3d-kill-a-ton-collection/index.json b/site/public/v1/games/duke-nukem-3d-kill-a-ton-collection/index.json new file mode 100644 index 000000000000..6bde35f2e7c1 --- /dev/null +++ b/site/public/v1/games/duke-nukem-3d-kill-a-ton-collection/index.json @@ -0,0 +1,25 @@ +{ + "id": 43917, + "slug": "duke-nukem-3d-kill-a-ton-collection", + "name": "Duke Nukem 3D: Kill a Ton Collection", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121083485" + ], + "created_at": "2026-07-10T10:10:10.598069", + "updated_at": "2026-07-10T10:10:10.598069", + "url": "/v1/games/duke-nukem-3d-kill-a-ton-collection" +} diff --git a/site/public/v1/games/duke-nukem-3d-plutonium-pak/index.json b/site/public/v1/games/duke-nukem-3d-plutonium-pak/index.json new file mode 100644 index 000000000000..9fb5b777048a --- /dev/null +++ b/site/public/v1/games/duke-nukem-3d-plutonium-pak/index.json @@ -0,0 +1,25 @@ +{ + "id": 43919, + "slug": "duke-nukem-3d-plutonium-pak", + "name": "Duke Nukem 3D: Plutonium Pak", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121083413" + ], + "created_at": "2026-07-10T10:10:10.599059", + "updated_at": "2026-07-10T10:10:10.599059", + "url": "/v1/games/duke-nukem-3d-plutonium-pak" +} diff --git a/site/public/v1/games/duke-nukem-3d-reloaded/index.json b/site/public/v1/games/duke-nukem-3d-reloaded/index.json new file mode 100644 index 000000000000..8f10944d6305 --- /dev/null +++ b/site/public/v1/games/duke-nukem-3d-reloaded/index.json @@ -0,0 +1,33 @@ +{ + "id": 43920, + "slug": "duke-nukem-3d-reloaded", + "name": "Duke Nukem 3D: Reloaded", + "release_date": "2010-10-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter" + ], + "stores": [], + "developers": [ + "Slipgate Ironworks" + ], + "publishers": [ + "Gearbox Software" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4037670" + ], + "created_at": "2026-07-10T10:10:10.599059", + "updated_at": "2026-07-10T10:10:10.599059", + "url": "/v1/games/duke-nukem-3d-reloaded" +} diff --git a/site/public/v1/games/duke-nukem-kill-a-ton-collection/index.json b/site/public/v1/games/duke-nukem-kill-a-ton-collection/index.json new file mode 100644 index 000000000000..45fdfe2e9bd3 --- /dev/null +++ b/site/public/v1/games/duke-nukem-kill-a-ton-collection/index.json @@ -0,0 +1,25 @@ +{ + "id": 43928, + "slug": "duke-nukem-kill-a-ton-collection", + "name": "Duke Nukem: Kill-A-Ton Collection", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121083494" + ], + "created_at": "2026-07-10T10:10:10.601086", + "updated_at": "2026-07-10T10:10:10.601086", + "url": "/v1/games/duke-nukem-kill-a-ton-collection" +} diff --git a/site/public/v1/games/dune-ii-q5314939/index.json b/site/public/v1/games/dune-ii-q5314939/index.json new file mode 100644 index 000000000000..0c6fc285a626 --- /dev/null +++ b/site/public/v1/games/dune-ii-q5314939/index.json @@ -0,0 +1,27 @@ +{ + "id": 44006, + "slug": "dune-ii-q5314939", + "name": "Dune II", + "release_date": "1992-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "cross-platform" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5314939" + ], + "created_at": "2026-07-10T10:10:10.622734", + "updated_at": "2026-07-10T10:10:10.622734", + "url": "/v1/games/dune-ii-q5314939" +} diff --git a/site/public/v1/games/dungeon-hearts-dx/index.json b/site/public/v1/games/dungeon-hearts-dx/index.json new file mode 100644 index 000000000000..2ec034fcb58c --- /dev/null +++ b/site/public/v1/games/dungeon-hearts-dx/index.json @@ -0,0 +1,31 @@ +{ + "id": 44160, + "slug": "dungeon-hearts-dx", + "name": "Dungeon Hearts DX", + "release_date": "2016-11-10", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Wii U" + ], + "genres": [], + "stores": [], + "developers": [ + "Wolfgame" + ], + "publishers": [ + "Wolfgame" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130528066" + ], + "created_at": "2026-07-10T10:10:10.670966", + "updated_at": "2026-07-10T10:10:10.670966", + "url": "/v1/games/dungeon-hearts-dx" +} diff --git a/site/public/v1/games/dungeon-keeper-3/index.json b/site/public/v1/games/dungeon-keeper-3/index.json new file mode 100644 index 000000000000..fa3f18df47c8 --- /dev/null +++ b/site/public/v1/games/dungeon-keeper-3/index.json @@ -0,0 +1,34 @@ +{ + "id": 44183, + "slug": "dungeon-keeper-3", + "name": "Dungeon Keeper 3", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "real-time strategy", + "god game" + ], + "stores": [], + "developers": [ + "Bullfrog Productions" + ], + "publishers": [ + "Electronic Arts" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1402904" + ], + "created_at": "2026-07-10T10:10:10.677932", + "updated_at": "2026-07-10T10:10:10.677932", + "url": "/v1/games/dungeon-keeper-3" +} diff --git a/site/public/v1/games/dungeon-keeper-gold/index.json b/site/public/v1/games/dungeon-keeper-gold/index.json new file mode 100644 index 000000000000..684097aaa761 --- /dev/null +++ b/site/public/v1/games/dungeon-keeper-gold/index.json @@ -0,0 +1,25 @@ +{ + "id": 44184, + "slug": "dungeon-keeper-gold", + "name": "Dungeon Keeper Gold", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120835999" + ], + "created_at": "2026-07-10T10:10:10.677932", + "updated_at": "2026-07-10T10:10:10.677932", + "url": "/v1/games/dungeon-keeper-gold" +} diff --git a/site/public/v1/games/dungeon-keeper-the-deeper-dungeons/index.json b/site/public/v1/games/dungeon-keeper-the-deeper-dungeons/index.json new file mode 100644 index 000000000000..0c9a6542c941 --- /dev/null +++ b/site/public/v1/games/dungeon-keeper-the-deeper-dungeons/index.json @@ -0,0 +1,25 @@ +{ + "id": 44187, + "slug": "dungeon-keeper-the-deeper-dungeons", + "name": "Dungeon Keeper: The Deeper Dungeons", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125472332" + ], + "created_at": "2026-07-10T10:10:10.678917", + "updated_at": "2026-07-10T10:10:10.678917", + "url": "/v1/games/dungeon-keeper-the-deeper-dungeons" +} diff --git a/site/public/v1/games/dungeon-lords-the-orb-and-the-oracle/index.json b/site/public/v1/games/dungeon-lords-the-orb-and-the-oracle/index.json new file mode 100644 index 000000000000..ac144335d46c --- /dev/null +++ b/site/public/v1/games/dungeon-lords-the-orb-and-the-oracle/index.json @@ -0,0 +1,31 @@ +{ + "id": 44206, + "slug": "dungeon-lords-the-orb-and-the-oracle", + "name": "Dungeon Lords: The Orb and the Oracle", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "role-playing video game" + ], + "stores": [], + "developers": [ + "Heuristic Park" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5315132" + ], + "created_at": "2026-07-10T10:10:10.683966", + "updated_at": "2026-07-10T10:10:10.683966", + "url": "/v1/games/dungeon-lords-the-orb-and-the-oracle" +} diff --git a/site/public/v1/games/dungeon-siege-ii-broken-world/index.json b/site/public/v1/games/dungeon-siege-ii-broken-world/index.json new file mode 100644 index 000000000000..dcf2132216bd --- /dev/null +++ b/site/public/v1/games/dungeon-siege-ii-broken-world/index.json @@ -0,0 +1,33 @@ +{ + "id": 44316, + "slug": "dungeon-siege-ii-broken-world", + "name": "Dungeon Siege II: Broken World", + "release_date": "2006-08-22", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "action role-playing game" + ], + "stores": [], + "developers": [ + "Wargaming Seattle" + ], + "publishers": [ + "2K" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1056878" + ], + "created_at": "2026-07-10T10:10:10.713010", + "updated_at": "2026-07-10T10:10:10.713010", + "url": "/v1/games/dungeon-siege-ii-broken-world" +} diff --git a/site/public/v1/games/dungeon-siege-iii-treasures-of-the-sun/index.json b/site/public/v1/games/dungeon-siege-iii-treasures-of-the-sun/index.json new file mode 100644 index 000000000000..14017efeb4fe --- /dev/null +++ b/site/public/v1/games/dungeon-siege-iii-treasures-of-the-sun/index.json @@ -0,0 +1,27 @@ +{ + "id": 44318, + "slug": "dungeon-siege-iii-treasures-of-the-sun", + "name": "Dungeon Siege III: Treasures of the Sun", + "release_date": "2011-10-25", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5315151" + ], + "created_at": "2026-07-10T10:10:10.714008", + "updated_at": "2026-07-10T10:10:10.714008", + "url": "/v1/games/dungeon-siege-iii-treasures-of-the-sun" +} diff --git a/site/public/v1/games/dungeon-siege-legends-of-aranna/index.json b/site/public/v1/games/dungeon-siege-legends-of-aranna/index.json new file mode 100644 index 000000000000..a3149d56e717 --- /dev/null +++ b/site/public/v1/games/dungeon-siege-legends-of-aranna/index.json @@ -0,0 +1,34 @@ +{ + "id": 44320, + "slug": "dungeon-siege-legends-of-aranna", + "name": "Dungeon Siege: Legends of Aranna", + "release_date": "2003-11-11", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "role-playing video game" + ], + "stores": [], + "developers": [ + "Wargaming Seattle" + ], + "publishers": [ + "Xbox Game Studios" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2668030" + ], + "created_at": "2026-07-10T10:10:10.714008", + "updated_at": "2026-07-10T10:10:10.714008", + "url": "/v1/games/dungeon-siege-legends-of-aranna" +} diff --git a/site/public/v1/games/dungeon-slime-collection/index.json b/site/public/v1/games/dungeon-slime-collection/index.json new file mode 100644 index 000000000000..6499be72c88b --- /dev/null +++ b/site/public/v1/games/dungeon-slime-collection/index.json @@ -0,0 +1,31 @@ +{ + "id": 44327, + "slug": "dungeon-slime-collection", + "name": "Dungeon Slime Collection", + "release_date": "2022-07-22", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S" + ], + "genres": [], + "stores": [], + "developers": [ + "Pequi studios" + ], + "publishers": [ + "Ratalaika Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115299981" + ], + "created_at": "2026-07-10T10:10:10.715990", + "updated_at": "2026-07-10T10:10:10.715990", + "url": "/v1/games/dungeon-slime-collection" +} diff --git a/site/public/v1/games/dungeons-dragons-chronicles-of-mystara/index.json b/site/public/v1/games/dungeons-dragons-chronicles-of-mystara/index.json new file mode 100644 index 000000000000..d5203e4b0c7a --- /dev/null +++ b/site/public/v1/games/dungeons-dragons-chronicles-of-mystara/index.json @@ -0,0 +1,34 @@ +{ + "id": 44417, + "slug": "dungeons-dragons-chronicles-of-mystara", + "name": "Dungeons & Dragons: Chronicles of Mystara", + "release_date": "2013-06-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 3", + "Microsoft Windows" + ], + "genres": [ + "beat 'em up" + ], + "stores": [], + "developers": [ + "Capcom" + ], + "publishers": [ + "Capcom" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16267657" + ], + "created_at": "2026-07-10T10:10:10.739693", + "updated_at": "2026-07-10T10:10:10.739693", + "url": "/v1/games/dungeons-dragons-chronicles-of-mystara" +} diff --git a/site/public/v1/games/dungeons-dragons-collection/index.json b/site/public/v1/games/dungeons-dragons-collection/index.json new file mode 100644 index 000000000000..822a9aef0bc6 --- /dev/null +++ b/site/public/v1/games/dungeons-dragons-collection/index.json @@ -0,0 +1,30 @@ +{ + "id": 44418, + "slug": "dungeons-dragons-collection", + "name": "Dungeons & Dragons Collection", + "release_date": "1999-03-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "role-playing video game", + "beat 'em up" + ], + "stores": [], + "developers": [ + "Capcom" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5315172" + ], + "created_at": "2026-07-10T10:10:10.739693", + "updated_at": "2026-07-10T10:10:10.739693", + "url": "/v1/games/dungeons-dragons-collection" +} diff --git a/site/public/v1/games/dungeons-dragons-dark-sun-series/index.json b/site/public/v1/games/dungeons-dragons-dark-sun-series/index.json new file mode 100644 index 000000000000..bf4d985a51ce --- /dev/null +++ b/site/public/v1/games/dungeons-dragons-dark-sun-series/index.json @@ -0,0 +1,29 @@ +{ + "id": 44422, + "slug": "dungeons-dragons-dark-sun-series", + "name": "Dungeons & Dragons: Dark Sun Series", + "release_date": "2022-03-29", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "role-playing video game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135021241" + ], + "created_at": "2026-07-10T10:10:10.740678", + "updated_at": "2026-07-10T10:10:10.740678", + "url": "/v1/games/dungeons-dragons-dark-sun-series" +} diff --git a/site/public/v1/games/dungeons-dragons-krynn-series/index.json b/site/public/v1/games/dungeons-dragons-krynn-series/index.json new file mode 100644 index 000000000000..d845d3629b42 --- /dev/null +++ b/site/public/v1/games/dungeons-dragons-krynn-series/index.json @@ -0,0 +1,29 @@ +{ + "id": 44427, + "slug": "dungeons-dragons-krynn-series", + "name": "Dungeons & Dragons: Krynn Series", + "release_date": "2022-03-29", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "role-playing video game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134964867" + ], + "created_at": "2026-07-10T10:10:10.741720", + "updated_at": "2026-07-10T10:10:10.741720", + "url": "/v1/games/dungeons-dragons-krynn-series" +} diff --git a/site/public/v1/games/dungeons-dragons-ravenloft-series/index.json b/site/public/v1/games/dungeons-dragons-ravenloft-series/index.json new file mode 100644 index 000000000000..208774ab4c18 --- /dev/null +++ b/site/public/v1/games/dungeons-dragons-ravenloft-series/index.json @@ -0,0 +1,25 @@ +{ + "id": 44430, + "slug": "dungeons-dragons-ravenloft-series", + "name": "Dungeons & Dragons: Ravenloft Series", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135491468" + ], + "created_at": "2026-07-10T10:10:10.742690", + "updated_at": "2026-07-10T10:10:10.742690", + "url": "/v1/games/dungeons-dragons-ravenloft-series" +} diff --git a/site/public/v1/games/dunk-star/index.json b/site/public/v1/games/dunk-star/index.json new file mode 100644 index 000000000000..727d48b5d57e --- /dev/null +++ b/site/public/v1/games/dunk-star/index.json @@ -0,0 +1,25 @@ +{ + "id": 44512, + "slug": "dunk-star", + "name": "Dunk Star", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q86253528" + ], + "created_at": "2026-07-10T10:10:10.764620", + "updated_at": "2026-07-10T10:10:10.764620", + "url": "/v1/games/dunk-star" +} diff --git a/site/public/v1/games/duolingo/index.json b/site/public/v1/games/duolingo/index.json new file mode 100644 index 000000000000..6e71d43fb648 --- /dev/null +++ b/site/public/v1/games/duolingo/index.json @@ -0,0 +1,31 @@ +{ + "id": 44534, + "slug": "duolingo", + "name": "Duolingo", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "iOS", + "Windows Phone", + "web browser" + ], + "genres": [ + "educational game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2918660" + ], + "created_at": "2026-07-10T10:10:10.770685", + "updated_at": "2026-07-10T10:10:10.770685", + "url": "/v1/games/duolingo" +} diff --git a/site/public/v1/games/durak-ntr-total-humiliation/index.json b/site/public/v1/games/durak-ntr-total-humiliation/index.json new file mode 100644 index 000000000000..ec75beb09056 --- /dev/null +++ b/site/public/v1/games/durak-ntr-total-humiliation/index.json @@ -0,0 +1,33 @@ +{ + "id": 44547, + "slug": "durak-ntr-total-humiliation", + "name": "Durak NTR: Total Humiliation", + "release_date": "2025-02-15", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "erotic video game", + "card video game" + ], + "stores": [], + "developers": [ + "Swimming Rock", + "Zee Vital" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136098819" + ], + "created_at": "2026-07-10T10:10:10.774623", + "updated_at": "2026-07-10T10:10:10.774623", + "url": "/v1/games/durak-ntr-total-humiliation" +} diff --git a/site/public/v1/games/dying-light-2-stay-human-bloody-ties/index.json b/site/public/v1/games/dying-light-2-stay-human-bloody-ties/index.json new file mode 100644 index 000000000000..154e6ca65f4e --- /dev/null +++ b/site/public/v1/games/dying-light-2-stay-human-bloody-ties/index.json @@ -0,0 +1,33 @@ +{ + "id": 44758, + "slug": "dying-light-2-stay-human-bloody-ties", + "name": "Dying Light 2 Stay Human: Bloody Ties", + "release_date": "2022-11-10", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 5", + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "survival horror", + "action role-playing game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113585969" + ], + "created_at": "2026-07-10T10:10:10.833266", + "updated_at": "2026-07-10T10:10:10.833266", + "url": "/v1/games/dying-light-2-stay-human-bloody-ties" +} diff --git a/site/public/v1/games/dying-light-the-bozak-horde/index.json b/site/public/v1/games/dying-light-the-bozak-horde/index.json new file mode 100644 index 000000000000..452791ec3a19 --- /dev/null +++ b/site/public/v1/games/dying-light-the-bozak-horde/index.json @@ -0,0 +1,35 @@ +{ + "id": 44761, + "slug": "dying-light-the-bozak-horde", + "name": "Dying Light: The Bozak Horde", + "release_date": "2015-05-26", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows", + "PlayStation 4" + ], + "genres": [ + "first-person shooter", + "survival horror", + "action-adventure game" + ], + "stores": [], + "developers": [], + "publishers": [ + "Warner Bros. Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q93960909" + ], + "created_at": "2026-07-10T10:10:10.833266", + "updated_at": "2026-07-10T10:10:10.833266", + "url": "/v1/games/dying-light-the-bozak-horde" +} diff --git a/site/public/v1/games/dying-light-the-following/index.json b/site/public/v1/games/dying-light-the-following/index.json new file mode 100644 index 000000000000..0293488e2d54 --- /dev/null +++ b/site/public/v1/games/dying-light-the-following/index.json @@ -0,0 +1,35 @@ +{ + "id": 44762, + "slug": "dying-light-the-following", + "name": "Dying Light: The Following", + "release_date": "2016-02-08", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 4", + "macOS", + "Microsoft Windows" + ], + "genres": [ + "survival horror", + "action role-playing game", + "post-apocalyptic video game" + ], + "stores": [], + "developers": [], + "publishers": [ + "Warner Bros. Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22662531" + ], + "created_at": "2026-07-10T10:10:10.834194", + "updated_at": "2026-07-10T10:10:10.834194", + "url": "/v1/games/dying-light-the-following" +} diff --git a/site/public/v1/games/dyn-aero-mcr-01ultralight/index.json b/site/public/v1/games/dyn-aero-mcr-01ultralight/index.json new file mode 100644 index 000000000000..74bf92752539 --- /dev/null +++ b/site/public/v1/games/dyn-aero-mcr-01ultralight/index.json @@ -0,0 +1,25 @@ +{ + "id": 44789, + "slug": "dyn-aero-mcr-01ultralight", + "name": "Dyn'Aero MCR-01Ultralight", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140458594" + ], + "created_at": "2026-07-10T10:10:10.843269", + "updated_at": "2026-07-10T10:10:10.843269", + "url": "/v1/games/dyn-aero-mcr-01ultralight" +} diff --git a/site/public/v1/games/dynasty-warriors-9-empires-deluxe-edition/index.json b/site/public/v1/games/dynasty-warriors-9-empires-deluxe-edition/index.json new file mode 100644 index 000000000000..683b8d5653b7 --- /dev/null +++ b/site/public/v1/games/dynasty-warriors-9-empires-deluxe-edition/index.json @@ -0,0 +1,27 @@ +{ + "id": 44858, + "slug": "dynasty-warriors-9-empires-deluxe-edition", + "name": "Dynasty Warriors 9 Empires Deluxe Edition", + "release_date": "2022-02-15", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110975553" + ], + "created_at": "2026-07-10T10:10:10.861449", + "updated_at": "2026-07-10T10:10:10.861449", + "url": "/v1/games/dynasty-warriors-9-empires-deluxe-edition" +} diff --git a/site/public/v1/games/ea-classics-mega-collection/index.json b/site/public/v1/games/ea-classics-mega-collection/index.json new file mode 100644 index 000000000000..bcac648a2ea6 --- /dev/null +++ b/site/public/v1/games/ea-classics-mega-collection/index.json @@ -0,0 +1,39 @@ +{ + "id": 44974, + "slug": "ea-classics-mega-collection", + "name": "EA Classics Mega Collection", + "release_date": "2023-05-15", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Spicy Horse", + "Visceral Games", + "Aspyr", + "DICE", + "Maxis", + "BioWare", + "Electronic Arts" + ], + "publishers": [ + "Electronic Arts", + "Aspyr" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125686490" + ], + "created_at": "2026-07-10T10:10:10.891449", + "updated_at": "2026-07-10T10:10:10.891449", + "url": "/v1/games/ea-classics-mega-collection" +} diff --git a/site/public/v1/games/ea-replay/index.json b/site/public/v1/games/ea-replay/index.json new file mode 100644 index 000000000000..fe5c26a775d2 --- /dev/null +++ b/site/public/v1/games/ea-replay/index.json @@ -0,0 +1,31 @@ +{ + "id": 44977, + "slug": "ea-replay", + "name": "EA Replay", + "release_date": "2006-11-14", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation Portable" + ], + "genres": [], + "stores": [], + "developers": [ + "EA Vancouver" + ], + "publishers": [ + "Electronic Arts" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5322547" + ], + "created_at": "2026-07-10T10:10:10.892498", + "updated_at": "2026-07-10T10:10:10.892498", + "url": "/v1/games/ea-replay" +} diff --git a/site/public/v1/games/ea-sports-06-collection/index.json b/site/public/v1/games/ea-sports-06-collection/index.json new file mode 100644 index 000000000000..d8c76809bfbf --- /dev/null +++ b/site/public/v1/games/ea-sports-06-collection/index.json @@ -0,0 +1,25 @@ +{ + "id": 44978, + "slug": "ea-sports-06-collection", + "name": "EA Sports: 06 Collection", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q85758132" + ], + "created_at": "2026-07-10T10:10:10.892498", + "updated_at": "2026-07-10T10:10:10.892498", + "url": "/v1/games/ea-sports-06-collection" +} diff --git a/site/public/v1/games/ea-sports-07-collection/index.json b/site/public/v1/games/ea-sports-07-collection/index.json new file mode 100644 index 000000000000..8ea8de76dedf --- /dev/null +++ b/site/public/v1/games/ea-sports-07-collection/index.json @@ -0,0 +1,25 @@ +{ + "id": 44979, + "slug": "ea-sports-07-collection", + "name": "EA Sports: 07 Collection", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q85758135" + ], + "created_at": "2026-07-10T10:10:10.893446", + "updated_at": "2026-07-10T10:10:10.893446", + "url": "/v1/games/ea-sports-07-collection" +} diff --git a/site/public/v1/games/ea-sports-08-collection/index.json b/site/public/v1/games/ea-sports-08-collection/index.json new file mode 100644 index 000000000000..cee7a208cd68 --- /dev/null +++ b/site/public/v1/games/ea-sports-08-collection/index.json @@ -0,0 +1,25 @@ +{ + "id": 44980, + "slug": "ea-sports-08-collection", + "name": "EA Sports 08 Collection", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q85758137" + ], + "created_at": "2026-07-10T10:10:10.893446", + "updated_at": "2026-07-10T10:10:10.893446", + "url": "/v1/games/ea-sports-08-collection" +} diff --git a/site/public/v1/games/ea-sports-fc-tactical/index.json b/site/public/v1/games/ea-sports-fc-tactical/index.json new file mode 100644 index 000000000000..a14df0663091 --- /dev/null +++ b/site/public/v1/games/ea-sports-fc-tactical/index.json @@ -0,0 +1,25 @@ +{ + "id": 44991, + "slug": "ea-sports-fc-tactical", + "name": "EA Sports FC Tactical", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140471138" + ], + "created_at": "2026-07-10T10:10:10.895441", + "updated_at": "2026-07-10T10:10:10.895441", + "url": "/v1/games/ea-sports-fc-tactical" +} diff --git a/site/public/v1/games/ea-sports-fifa-18-nba-live-18-the-one-edition-bundle/index.json b/site/public/v1/games/ea-sports-fifa-18-nba-live-18-the-one-edition-bundle/index.json new file mode 100644 index 000000000000..5f72e4696e50 --- /dev/null +++ b/site/public/v1/games/ea-sports-fifa-18-nba-live-18-the-one-edition-bundle/index.json @@ -0,0 +1,25 @@ +{ + "id": 44992, + "slug": "ea-sports-fifa-18-nba-live-18-the-one-edition-bundle", + "name": "EA SPORTS FIFA 18 & NBA LIVE 18 The One Edition Bundle", + "release_date": "2017-11-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q87914646" + ], + "created_at": "2026-07-10T10:10:10.896437", + "updated_at": "2026-07-10T10:10:10.896437", + "url": "/v1/games/ea-sports-fifa-18-nba-live-18-the-one-edition-bundle" +} diff --git a/site/public/v1/games/ea-sports-fifa-18-need-for-speed-payback-bundle/index.json b/site/public/v1/games/ea-sports-fifa-18-need-for-speed-payback-bundle/index.json new file mode 100644 index 000000000000..b5ef6d4ecd7c --- /dev/null +++ b/site/public/v1/games/ea-sports-fifa-18-need-for-speed-payback-bundle/index.json @@ -0,0 +1,25 @@ +{ + "id": 44993, + "slug": "ea-sports-fifa-18-need-for-speed-payback-bundle", + "name": "EA Sports FIFA 18 & Need for Speed Payback Bundle", + "release_date": "2017-11-14", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q87914285" + ], + "created_at": "2026-07-10T10:10:10.896437", + "updated_at": "2026-07-10T10:10:10.896437", + "url": "/v1/games/ea-sports-fifa-18-need-for-speed-payback-bundle" +} diff --git a/site/public/v1/games/ea-sports-fifa-18-nhl-18-bundle/index.json b/site/public/v1/games/ea-sports-fifa-18-nhl-18-bundle/index.json new file mode 100644 index 000000000000..4edecbbc8978 --- /dev/null +++ b/site/public/v1/games/ea-sports-fifa-18-nhl-18-bundle/index.json @@ -0,0 +1,25 @@ +{ + "id": 44994, + "slug": "ea-sports-fifa-18-nhl-18-bundle", + "name": "EA SPORTS FIFA 18 & NHL 18 Bundle", + "release_date": "2017-11-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q87914774" + ], + "created_at": "2026-07-10T10:10:10.896437", + "updated_at": "2026-07-10T10:10:10.896437", + "url": "/v1/games/ea-sports-fifa-18-nhl-18-bundle" +} diff --git a/site/public/v1/games/earth-2140-mission-pack-1/index.json b/site/public/v1/games/earth-2140-mission-pack-1/index.json new file mode 100644 index 000000000000..dfec304e3c7d --- /dev/null +++ b/site/public/v1/games/earth-2140-mission-pack-1/index.json @@ -0,0 +1,25 @@ +{ + "id": 45053, + "slug": "earth-2140-mission-pack-1", + "name": "Earth 2140: Mission Pack 1", + "release_date": "1998-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110154891" + ], + "created_at": "2026-07-10T10:10:10.912534", + "updated_at": "2026-07-10T10:10:10.912534", + "url": "/v1/games/earth-2140-mission-pack-1" +} diff --git a/site/public/v1/games/earth-2140-mission-pack-2-final-conflict/index.json b/site/public/v1/games/earth-2140-mission-pack-2-final-conflict/index.json new file mode 100644 index 000000000000..617c4b9647f3 --- /dev/null +++ b/site/public/v1/games/earth-2140-mission-pack-2-final-conflict/index.json @@ -0,0 +1,25 @@ +{ + "id": 45054, + "slug": "earth-2140-mission-pack-2-final-conflict", + "name": "Earth 2140: Mission Pack 2 - Final Conflict", + "release_date": "1998-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110154902" + ], + "created_at": "2026-07-10T10:10:10.912534", + "updated_at": "2026-07-10T10:10:10.912534", + "url": "/v1/games/earth-2140-mission-pack-2-final-conflict" +} diff --git a/site/public/v1/games/earth-no-more/index.json b/site/public/v1/games/earth-no-more/index.json new file mode 100644 index 000000000000..99b574cf9c89 --- /dev/null +++ b/site/public/v1/games/earth-no-more/index.json @@ -0,0 +1,34 @@ +{ + "id": 45091, + "slug": "earth-no-more", + "name": "Earth No More", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 4", + "PlayStation 3", + "Microsoft Windows" + ], + "genres": [ + "science fiction video game", + "first-person shooter" + ], + "stores": [], + "developers": [ + "Radar Group" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4886197" + ], + "created_at": "2026-07-10T10:10:10.921529", + "updated_at": "2026-07-10T10:10:10.921529", + "url": "/v1/games/earth-no-more" +} diff --git a/site/public/v1/games/earth-year-2066/index.json b/site/public/v1/games/earth-year-2066/index.json new file mode 100644 index 000000000000..6017bd3f7c9e --- /dev/null +++ b/site/public/v1/games/earth-year-2066/index.json @@ -0,0 +1,34 @@ +{ + "id": 45109, + "slug": "earth-year-2066", + "name": "Earth: Year 2066", + "release_date": "2014-04-16", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "survival game" + ], + "stores": [], + "developers": [ + "Killing Day Studios" + ], + "publishers": [ + "Killing Day Studios" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60173748" + ], + "created_at": "2026-07-10T10:10:10.925236", + "updated_at": "2026-07-10T10:10:10.925236", + "url": "/v1/games/earth-year-2066" +} diff --git a/site/public/v1/games/earthblade/index.json b/site/public/v1/games/earthblade/index.json new file mode 100644 index 000000000000..a1f713c806af --- /dev/null +++ b/site/public/v1/games/earthblade/index.json @@ -0,0 +1,34 @@ +{ + "id": 45110, + "slug": "earthblade", + "name": "Earthblade", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "action-adventure game", + "platformer" + ], + "stores": [], + "developers": [ + "Extremely OK Games" + ], + "publishers": [ + "Extremely OK Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q114881816" + ], + "created_at": "2026-07-10T10:10:10.926213", + "updated_at": "2026-07-10T10:10:10.926213", + "url": "/v1/games/earthblade" +} diff --git a/site/public/v1/games/earthworm-jim-q5327338/index.json b/site/public/v1/games/earthworm-jim-q5327338/index.json new file mode 100644 index 000000000000..77ef957c915f --- /dev/null +++ b/site/public/v1/games/earthworm-jim-q5327338/index.json @@ -0,0 +1,33 @@ +{ + "id": 45150, + "slug": "earthworm-jim-q5327338", + "name": "Earthworm Jim", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation Portable" + ], + "genres": [ + "platformer" + ], + "stores": [], + "developers": [ + "Shiny Entertainment" + ], + "publishers": [ + "Atari" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5327338" + ], + "created_at": "2026-07-10T10:10:10.936484", + "updated_at": "2026-07-10T10:10:10.936484", + "url": "/v1/games/earthworm-jim-q5327338" +} diff --git a/site/public/v1/games/eastward-octopia/index.json b/site/public/v1/games/eastward-octopia/index.json new file mode 100644 index 000000000000..11cb4245b7f9 --- /dev/null +++ b/site/public/v1/games/eastward-octopia/index.json @@ -0,0 +1,37 @@ +{ + "id": 45200, + "slug": "eastward-octopia", + "name": "Eastward: Octopia", + "release_date": "2024-01-31", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Nintendo 3DS", + "Microsoft Windows" + ], + "genres": [ + "action-adventure game", + "life simulation game", + "farming simulation game", + "post-apocalyptic video game" + ], + "stores": [], + "developers": [ + "Pixpil" + ], + "publishers": [ + "Chucklefish" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124043819" + ], + "created_at": "2026-07-10T10:10:10.949414", + "updated_at": "2026-07-10T10:10:10.949414", + "url": "/v1/games/eastward-octopia" +} diff --git a/site/public/v1/games/ecco-ii-sentinels-of-the-universe/index.json b/site/public/v1/games/ecco-ii-sentinels-of-the-universe/index.json new file mode 100644 index 000000000000..13ed8b8727d0 --- /dev/null +++ b/site/public/v1/games/ecco-ii-sentinels-of-the-universe/index.json @@ -0,0 +1,25 @@ +{ + "id": 45295, + "slug": "ecco-ii-sentinels-of-the-universe", + "name": "Ecco II: Sentinels of the Universe", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116257472" + ], + "created_at": "2026-07-10T10:10:10.976638", + "updated_at": "2026-07-10T10:10:10.976638", + "url": "/v1/games/ecco-ii-sentinels-of-the-universe" +} diff --git a/site/public/v1/games/echonox-24-36/index.json b/site/public/v1/games/echonox-24-36/index.json new file mode 100644 index 000000000000..7f34cb12d95d --- /dev/null +++ b/site/public/v1/games/echonox-24-36/index.json @@ -0,0 +1,30 @@ +{ + "id": 45450, + "slug": "echonox-24-36", + "name": "Echonox 24/36", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "iOS" + ], + "genres": [ + "computer wargame", + "anime/gacha game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140236984" + ], + "created_at": "2026-07-10T10:10:11.019732", + "updated_at": "2026-07-10T10:10:11.019732", + "url": "/v1/games/echonox-24-36" +} diff --git a/site/public/v1/games/ecity-q11865428/index.json b/site/public/v1/games/ecity-q11865428/index.json new file mode 100644 index 000000000000..d1dc6c1be6d2 --- /dev/null +++ b/site/public/v1/games/ecity-q11865428/index.json @@ -0,0 +1,25 @@ +{ + "id": 45458, + "slug": "ecity-q11865428", + "name": "eCity", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11865428" + ], + "created_at": "2026-07-10T10:10:11.021735", + "updated_at": "2026-07-10T10:10:11.021735", + "url": "/v1/games/ecity-q11865428" +} diff --git a/site/public/v1/games/eclipse-q5332996/index.json b/site/public/v1/games/eclipse-q5332996/index.json new file mode 100644 index 000000000000..f70b0295141d --- /dev/null +++ b/site/public/v1/games/eclipse-q5332996/index.json @@ -0,0 +1,30 @@ +{ + "id": 45477, + "slug": "eclipse-q5332996", + "name": "Eclipse", + "release_date": "2005-06-17", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "puzzle video game", + "action-adventure game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5332996" + ], + "created_at": "2026-07-10T10:10:11.028324", + "updated_at": "2026-07-10T10:10:11.028324", + "url": "/v1/games/eclipse-q5332996" +} diff --git a/site/public/v1/games/edge-classic/index.json b/site/public/v1/games/edge-classic/index.json new file mode 100644 index 000000000000..f637d11beae7 --- /dev/null +++ b/site/public/v1/games/edge-classic/index.json @@ -0,0 +1,25 @@ +{ + "id": 45592, + "slug": "edge-classic", + "name": "EDGE-Classic", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124654505" + ], + "created_at": "2026-07-10T10:10:11.058421", + "updated_at": "2026-07-10T10:10:11.058421", + "url": "/v1/games/edge-classic" +} diff --git a/site/public/v1/games/edge-q67196228/index.json b/site/public/v1/games/edge-q67196228/index.json new file mode 100644 index 000000000000..97da8d7fdea6 --- /dev/null +++ b/site/public/v1/games/edge-q67196228/index.json @@ -0,0 +1,25 @@ +{ + "id": 45619, + "slug": "edge-q67196228", + "name": "EDGE", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q67196228" + ], + "created_at": "2026-07-10T10:10:11.065387", + "updated_at": "2026-07-10T10:10:11.065387", + "url": "/v1/games/edge-q67196228" +} diff --git a/site/public/v1/games/eduke32/index.json b/site/public/v1/games/eduke32/index.json new file mode 100644 index 000000000000..ed29066afe25 --- /dev/null +++ b/site/public/v1/games/eduke32/index.json @@ -0,0 +1,27 @@ +{ + "id": 45659, + "slug": "eduke32", + "name": "EDuke32", + "release_date": "2004-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q64167651" + ], + "created_at": "2026-07-10T10:10:11.075391", + "updated_at": "2026-07-10T10:10:11.075391", + "url": "/v1/games/eduke32" +} diff --git a/site/public/v1/games/eight-days/index.json b/site/public/v1/games/eight-days/index.json new file mode 100644 index 000000000000..9d36c11a01a0 --- /dev/null +++ b/site/public/v1/games/eight-days/index.json @@ -0,0 +1,35 @@ +{ + "id": 45845, + "slug": "eight-days", + "name": "Eight Days", + "release_date": "2009-10-02", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 3" + ], + "genres": [ + "action game", + "action-adventure game", + "third-person shooter" + ], + "stores": [], + "developers": [ + "London Studio" + ], + "publishers": [ + "Sony Interactive Entertainment" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3720611" + ], + "created_at": "2026-07-10T10:10:11.125076", + "updated_at": "2026-07-10T10:10:11.125076", + "url": "/v1/games/eight-days" +} diff --git a/site/public/v1/games/el-pogo-loco/index.json b/site/public/v1/games/el-pogo-loco/index.json new file mode 100644 index 000000000000..c374cbe36fdc --- /dev/null +++ b/site/public/v1/games/el-pogo-loco/index.json @@ -0,0 +1,25 @@ +{ + "id": 45939, + "slug": "el-pogo-loco", + "name": "El Pogo Loco", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q41654058" + ], + "created_at": "2026-07-10T10:10:11.151137", + "updated_at": "2026-07-10T10:10:11.151137", + "url": "/v1/games/el-pogo-loco" +} diff --git a/site/public/v1/games/elden-ring-nightreign-the-forsaken-hollows/index.json b/site/public/v1/games/elden-ring-nightreign-the-forsaken-hollows/index.json new file mode 100644 index 000000000000..b05a721b7953 --- /dev/null +++ b/site/public/v1/games/elden-ring-nightreign-the-forsaken-hollows/index.json @@ -0,0 +1,29 @@ +{ + "id": 45973, + "slug": "elden-ring-nightreign-the-forsaken-hollows", + "name": "Elden Ring Nightreign: The Forsaken Hollows", + "release_date": "2025-12-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "FromSoftware" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137299371" + ], + "created_at": "2026-07-10T10:10:11.160076", + "updated_at": "2026-07-10T10:10:11.160076", + "url": "/v1/games/elden-ring-nightreign-the-forsaken-hollows" +} diff --git a/site/public/v1/games/elden-ring-shadow-of-the-erdtree-deluxe-edition/index.json b/site/public/v1/games/elden-ring-shadow-of-the-erdtree-deluxe-edition/index.json new file mode 100644 index 000000000000..885a44d84225 --- /dev/null +++ b/site/public/v1/games/elden-ring-shadow-of-the-erdtree-deluxe-edition/index.json @@ -0,0 +1,35 @@ +{ + "id": 45975, + "slug": "elden-ring-shadow-of-the-erdtree-deluxe-edition", + "name": "Elden Ring: Shadow of the Erdtree Deluxe Edition", + "release_date": "2022-02-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "action-adventure game", + "action role-playing game" + ], + "stores": [], + "developers": [ + "FromSoftware" + ], + "publishers": [ + "FromSoftware", + "Bandai Namco Entertainment" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135767772" + ], + "created_at": "2026-07-10T10:10:11.160076", + "updated_at": "2026-07-10T10:10:11.160076", + "url": "/v1/games/elden-ring-shadow-of-the-erdtree-deluxe-edition" +} diff --git a/site/public/v1/games/elden-ring-shadow-of-the-erdtree-edition/index.json b/site/public/v1/games/elden-ring-shadow-of-the-erdtree-edition/index.json new file mode 100644 index 000000000000..6a56c8649573 --- /dev/null +++ b/site/public/v1/games/elden-ring-shadow-of-the-erdtree-edition/index.json @@ -0,0 +1,36 @@ +{ + "id": 45976, + "slug": "elden-ring-shadow-of-the-erdtree-edition", + "name": "Elden Ring: Shadow of the Erdtree Edition", + "release_date": "2022-02-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 4", + "PlayStation 5", + "Microsoft Windows" + ], + "genres": [ + "action role-playing game" + ], + "stores": [], + "developers": [ + "FromSoftware" + ], + "publishers": [ + "FromSoftware", + "Bandai Namco Entertainment" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135725592" + ], + "created_at": "2026-07-10T10:10:11.161077", + "updated_at": "2026-07-10T10:10:11.161077", + "url": "/v1/games/elden-ring-shadow-of-the-erdtree-edition" +} diff --git a/site/public/v1/games/eldritch-horror-mountains-of-madness/index.json b/site/public/v1/games/eldritch-horror-mountains-of-madness/index.json new file mode 100644 index 000000000000..c71d3407477a --- /dev/null +++ b/site/public/v1/games/eldritch-horror-mountains-of-madness/index.json @@ -0,0 +1,25 @@ +{ + "id": 46020, + "slug": "eldritch-horror-mountains-of-madness", + "name": "Eldritch Horror: Mountains of Madness", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q31890383" + ], + "created_at": "2026-07-10T10:10:11.172076", + "updated_at": "2026-07-10T10:10:11.172076", + "url": "/v1/games/eldritch-horror-mountains-of-madness" +} diff --git a/site/public/v1/games/elemental-fallen-enchantress-legendary-heroes/index.json b/site/public/v1/games/elemental-fallen-enchantress-legendary-heroes/index.json new file mode 100644 index 000000000000..f7289b029ca4 --- /dev/null +++ b/site/public/v1/games/elemental-fallen-enchantress-legendary-heroes/index.json @@ -0,0 +1,25 @@ +{ + "id": 46161, + "slug": "elemental-fallen-enchantress-legendary-heroes", + "name": "Elemental: Fallen Enchantress - Legendary Heroes", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140471228" + ], + "created_at": "2026-07-10T10:10:11.211088", + "updated_at": "2026-07-10T10:10:11.211088", + "url": "/v1/games/elemental-fallen-enchantress-legendary-heroes" +} diff --git a/site/public/v1/games/elf-bowling-1-2/index.json b/site/public/v1/games/elf-bowling-1-2/index.json new file mode 100644 index 000000000000..4472a8380981 --- /dev/null +++ b/site/public/v1/games/elf-bowling-1-2/index.json @@ -0,0 +1,34 @@ +{ + "id": 46292, + "slug": "elf-bowling-1-2", + "name": "Elf Bowling: 1 & 2", + "release_date": "2005-11-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Game Boy Advance", + "Nintendo DS" + ], + "genres": [ + "sports video game" + ], + "stores": [], + "developers": [ + "NStorm" + ], + "publishers": [ + "Ignition Entertainment Ltd." + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q59616789" + ], + "created_at": "2026-07-10T10:10:11.244791", + "updated_at": "2026-07-10T10:10:11.244791", + "url": "/v1/games/elf-bowling-1-2" +} diff --git a/site/public/v1/games/elf-opengo/index.json b/site/public/v1/games/elf-opengo/index.json new file mode 100644 index 000000000000..527e2d7ae28e --- /dev/null +++ b/site/public/v1/games/elf-opengo/index.json @@ -0,0 +1,25 @@ +{ + "id": 46309, + "slug": "elf-opengo", + "name": "ELF OpenGo", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q55715870" + ], + "created_at": "2026-07-10T10:10:11.248818", + "updated_at": "2026-07-10T10:10:11.248818", + "url": "/v1/games/elf-opengo" +} diff --git a/site/public/v1/games/elite-dangerous-horizons/index.json b/site/public/v1/games/elite-dangerous-horizons/index.json new file mode 100644 index 000000000000..cc3c6250f645 --- /dev/null +++ b/site/public/v1/games/elite-dangerous-horizons/index.json @@ -0,0 +1,30 @@ +{ + "id": 46371, + "slug": "elite-dangerous-horizons", + "name": "Elite Dangerous: Horizons", + "release_date": "2015-12-15", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Frontier Developments" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22344569" + ], + "created_at": "2026-07-10T10:10:11.264814", + "updated_at": "2026-07-10T10:10:11.264814", + "url": "/v1/games/elite-dangerous-horizons" +} diff --git a/site/public/v1/games/elite-dangerous-odyssey/index.json b/site/public/v1/games/elite-dangerous-odyssey/index.json new file mode 100644 index 000000000000..21dc3eb461a6 --- /dev/null +++ b/site/public/v1/games/elite-dangerous-odyssey/index.json @@ -0,0 +1,31 @@ +{ + "id": 46372, + "slug": "elite-dangerous-odyssey", + "name": "Elite Dangerous: Odyssey", + "release_date": "2021-05-19", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Frontier Developments" + ], + "publishers": [ + "Frontier Developments" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107650749" + ], + "created_at": "2026-07-10T10:10:11.264814", + "updated_at": "2026-07-10T10:10:11.264814", + "url": "/v1/games/elite-dangerous-odyssey" +} diff --git a/site/public/v1/games/ellie-theme/index.json b/site/public/v1/games/ellie-theme/index.json new file mode 100644 index 000000000000..696e8900b165 --- /dev/null +++ b/site/public/v1/games/ellie-theme/index.json @@ -0,0 +1,31 @@ +{ + "id": 46422, + "slug": "ellie-theme", + "name": "Ellie Theme", + "release_date": "2018-09-26", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 4" + ], + "genres": [], + "stores": [], + "developers": [ + "Sony Interactive Entertainment" + ], + "publishers": [ + "Sony Interactive Entertainment" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q84991127" + ], + "created_at": "2026-07-10T10:10:11.277819", + "updated_at": "2026-07-10T10:10:11.277819", + "url": "/v1/games/ellie-theme" +} diff --git a/site/public/v1/games/elven-legacy-magic/index.json b/site/public/v1/games/elven-legacy-magic/index.json new file mode 100644 index 000000000000..b6ad41eaf8cf --- /dev/null +++ b/site/public/v1/games/elven-legacy-magic/index.json @@ -0,0 +1,29 @@ +{ + "id": 46508, + "slug": "elven-legacy-magic", + "name": "Elven Legacy: Magic", + "release_date": "2009-12-03", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "strategy video game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135081840" + ], + "created_at": "2026-07-10T10:10:11.302182", + "updated_at": "2026-07-10T10:10:11.302182", + "url": "/v1/games/elven-legacy-magic" +} diff --git a/site/public/v1/games/elven-legacy-ranger/index.json b/site/public/v1/games/elven-legacy-ranger/index.json new file mode 100644 index 000000000000..94f015a00409 --- /dev/null +++ b/site/public/v1/games/elven-legacy-ranger/index.json @@ -0,0 +1,27 @@ +{ + "id": 46509, + "slug": "elven-legacy-ranger", + "name": "Elven Legacy: Ranger", + "release_date": "2009-10-20", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112263596" + ], + "created_at": "2026-07-10T10:10:11.303184", + "updated_at": "2026-07-10T10:10:11.303184", + "url": "/v1/games/elven-legacy-ranger" +} diff --git a/site/public/v1/games/elven-legacy-siege/index.json b/site/public/v1/games/elven-legacy-siege/index.json new file mode 100644 index 000000000000..6e33ed62690e --- /dev/null +++ b/site/public/v1/games/elven-legacy-siege/index.json @@ -0,0 +1,29 @@ +{ + "id": 46510, + "slug": "elven-legacy-siege", + "name": "Elven Legacy: Siege", + "release_date": "2009-11-17", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "strategy video game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134965609" + ], + "created_at": "2026-07-10T10:10:11.303184", + "updated_at": "2026-07-10T10:10:11.303184", + "url": "/v1/games/elven-legacy-siege" +} diff --git a/site/public/v1/games/emacs-chess/index.json b/site/public/v1/games/emacs-chess/index.json new file mode 100644 index 000000000000..907fa4c9eb27 --- /dev/null +++ b/site/public/v1/games/emacs-chess/index.json @@ -0,0 +1,27 @@ +{ + "id": 46564, + "slug": "emacs-chess", + "name": "emacs-chess", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "GNU Emacs" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q133935584" + ], + "created_at": "2026-07-10T10:10:11.317331", + "updated_at": "2026-07-10T10:10:11.317331", + "url": "/v1/games/emacs-chess" +} diff --git a/site/public/v1/games/emergence-q57973884/index.json b/site/public/v1/games/emergence-q57973884/index.json new file mode 100644 index 000000000000..a50c3a8a89c7 --- /dev/null +++ b/site/public/v1/games/emergence-q57973884/index.json @@ -0,0 +1,25 @@ +{ + "id": 46656, + "slug": "emergence-q57973884", + "name": "Emergence", + "release_date": "2017-09-03", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q57973884" + ], + "created_at": "2026-07-10T10:10:11.342866", + "updated_at": "2026-07-10T10:10:11.342866", + "url": "/v1/games/emergence-q57973884" +} diff --git a/site/public/v1/games/emet-hunter-medic-class/index.json b/site/public/v1/games/emet-hunter-medic-class/index.json new file mode 100644 index 000000000000..8c0168b3d52d --- /dev/null +++ b/site/public/v1/games/emet-hunter-medic-class/index.json @@ -0,0 +1,32 @@ +{ + "id": 46695, + "slug": "emet-hunter-medic-class", + "name": "Emet - Hunter (Medic Class)", + "release_date": "2015-12-16", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "science fiction video game" + ], + "stores": [], + "developers": [], + "publishers": [ + "2K" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124637525" + ], + "created_at": "2026-07-10T10:10:11.351866", + "updated_at": "2026-07-10T10:10:11.351866", + "url": "/v1/games/emet-hunter-medic-class" +} diff --git a/site/public/v1/games/empire-earth-ii-the-art-of-supremacy/index.json b/site/public/v1/games/empire-earth-ii-the-art-of-supremacy/index.json new file mode 100644 index 000000000000..50d0de813bae --- /dev/null +++ b/site/public/v1/games/empire-earth-ii-the-art-of-supremacy/index.json @@ -0,0 +1,31 @@ +{ + "id": 46786, + "slug": "empire-earth-ii-the-art-of-supremacy", + "name": "Empire Earth II: The Art of Supremacy", + "release_date": "2006-02-14", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "real-time strategy" + ], + "stores": [], + "developers": [ + "Rockstar New England" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2582988" + ], + "created_at": "2026-07-10T10:10:11.374963", + "updated_at": "2026-07-10T10:10:11.374963", + "url": "/v1/games/empire-earth-ii-the-art-of-supremacy" +} diff --git a/site/public/v1/games/empire-earth-the-art-of-conquest/index.json b/site/public/v1/games/empire-earth-the-art-of-conquest/index.json new file mode 100644 index 000000000000..850789b10853 --- /dev/null +++ b/site/public/v1/games/empire-earth-the-art-of-conquest/index.json @@ -0,0 +1,33 @@ +{ + "id": 46790, + "slug": "empire-earth-the-art-of-conquest", + "name": "Empire Earth: The Art of Conquest", + "release_date": "2002-09-17", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "real-time strategy" + ], + "stores": [], + "developers": [ + "Rockstar New England" + ], + "publishers": [ + "Sierra Entertainment" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2733002" + ], + "created_at": "2026-07-10T10:10:11.375866", + "updated_at": "2026-07-10T10:10:11.375866", + "url": "/v1/games/empire-earth-the-art-of-conquest" +} diff --git a/site/public/v1/games/empire-of-the-ants-add-on/index.json b/site/public/v1/games/empire-of-the-ants-add-on/index.json new file mode 100644 index 000000000000..c1276d256a24 --- /dev/null +++ b/site/public/v1/games/empire-of-the-ants-add-on/index.json @@ -0,0 +1,29 @@ +{ + "id": 46811, + "slug": "empire-of-the-ants-add-on", + "name": "Empire of the Ants: Add-on", + "release_date": "2000-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "action game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3232768" + ], + "created_at": "2026-07-10T10:10:11.381936", + "updated_at": "2026-07-10T10:10:11.381936", + "url": "/v1/games/empire-of-the-ants-add-on" +} diff --git a/site/public/v1/games/enderal/index.json b/site/public/v1/games/enderal/index.json new file mode 100644 index 000000000000..8493fa180a5f --- /dev/null +++ b/site/public/v1/games/enderal/index.json @@ -0,0 +1,33 @@ +{ + "id": 47045, + "slug": "enderal", + "name": "Enderal", + "release_date": "2016-07-03", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "action role-playing game" + ], + "stores": [], + "developers": [ + "SureAI" + ], + "publishers": [ + "SureAI" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q30169921" + ], + "created_at": "2026-07-10T10:10:11.443657", + "updated_at": "2026-07-10T10:10:11.443657", + "url": "/v1/games/enderal" +} diff --git a/site/public/v1/games/endless-legend-guardians/index.json b/site/public/v1/games/endless-legend-guardians/index.json new file mode 100644 index 000000000000..9965b38f36ec --- /dev/null +++ b/site/public/v1/games/endless-legend-guardians/index.json @@ -0,0 +1,25 @@ +{ + "id": 47128, + "slug": "endless-legend-guardians", + "name": "Endless Legend: Guardians", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140447252" + ], + "created_at": "2026-07-10T10:10:11.465587", + "updated_at": "2026-07-10T10:10:11.465587", + "url": "/v1/games/endless-legend-guardians" +} diff --git a/site/public/v1/games/endless-legend-shadows/index.json b/site/public/v1/games/endless-legend-shadows/index.json new file mode 100644 index 000000000000..e3ed46c0f481 --- /dev/null +++ b/site/public/v1/games/endless-legend-shadows/index.json @@ -0,0 +1,25 @@ +{ + "id": 47131, + "slug": "endless-legend-shadows", + "name": "Endless Legend: Shadows", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140447202" + ], + "created_at": "2026-07-10T10:10:11.466578", + "updated_at": "2026-07-10T10:10:11.466578", + "url": "/v1/games/endless-legend-shadows" +} diff --git a/site/public/v1/games/endless-legend-shifters/index.json b/site/public/v1/games/endless-legend-shifters/index.json new file mode 100644 index 000000000000..6b248887528a --- /dev/null +++ b/site/public/v1/games/endless-legend-shifters/index.json @@ -0,0 +1,25 @@ +{ + "id": 47132, + "slug": "endless-legend-shifters", + "name": "Endless Legend: Shifters", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140447184" + ], + "created_at": "2026-07-10T10:10:11.467586", + "updated_at": "2026-07-10T10:10:11.467586", + "url": "/v1/games/endless-legend-shifters" +} diff --git a/site/public/v1/games/endless-legend-symbiosis/index.json b/site/public/v1/games/endless-legend-symbiosis/index.json new file mode 100644 index 000000000000..cd090fad2a7d --- /dev/null +++ b/site/public/v1/games/endless-legend-symbiosis/index.json @@ -0,0 +1,25 @@ +{ + "id": 47133, + "slug": "endless-legend-symbiosis", + "name": "Endless Legend: Symbiosis", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140455120" + ], + "created_at": "2026-07-10T10:10:11.467586", + "updated_at": "2026-07-10T10:10:11.467586", + "url": "/v1/games/endless-legend-symbiosis" +} diff --git a/site/public/v1/games/endzone-a-world-apart-survivor-edition/index.json b/site/public/v1/games/endzone-a-world-apart-survivor-edition/index.json new file mode 100644 index 000000000000..3f991a00017a --- /dev/null +++ b/site/public/v1/games/endzone-a-world-apart-survivor-edition/index.json @@ -0,0 +1,31 @@ +{ + "id": 47248, + "slug": "endzone-a-world-apart-survivor-edition", + "name": "Endzone: A World Apart - Survivor Edition", + "release_date": "2022-05-19", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S" + ], + "genres": [], + "stores": [], + "developers": [ + "Gentlymad Studios" + ], + "publishers": [ + "Assemble Entertainment" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112926202" + ], + "created_at": "2026-07-10T10:10:11.497587", + "updated_at": "2026-07-10T10:10:11.497587", + "url": "/v1/games/endzone-a-world-apart-survivor-edition" +} diff --git a/site/public/v1/games/engalus/index.json b/site/public/v1/games/engalus/index.json new file mode 100644 index 000000000000..08e6f2bc2a37 --- /dev/null +++ b/site/public/v1/games/engalus/index.json @@ -0,0 +1,25 @@ +{ + "id": 47321, + "slug": "engalus", + "name": "Engalus", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q12686092" + ], + "created_at": "2026-07-10T10:10:11.516776", + "updated_at": "2026-07-10T10:10:11.516776", + "url": "/v1/games/engalus" +} diff --git a/site/public/v1/games/enigma-q603040/index.json b/site/public/v1/games/enigma-q603040/index.json new file mode 100644 index 000000000000..c78db6adfa75 --- /dev/null +++ b/site/public/v1/games/enigma-q603040/index.json @@ -0,0 +1,31 @@ +{ + "id": 47368, + "slug": "enigma-q603040", + "name": "Enigma", + "release_date": "2013-04-02", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Mac operating system", + "macOS", + "Microsoft Windows" + ], + "genres": [ + "puzzle video game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q603040" + ], + "created_at": "2026-07-10T10:10:11.529451", + "updated_at": "2026-07-10T10:10:11.529451", + "url": "/v1/games/enigma-q603040" +} diff --git a/site/public/v1/games/enter-the-dominatrix-q63849212/index.json b/site/public/v1/games/enter-the-dominatrix-q63849212/index.json new file mode 100644 index 000000000000..14ab37efb7fc --- /dev/null +++ b/site/public/v1/games/enter-the-dominatrix-q63849212/index.json @@ -0,0 +1,30 @@ +{ + "id": 47447, + "slug": "enter-the-dominatrix-q63849212", + "name": "Enter the Dominatrix", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 3", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "THQ" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63849212" + ], + "created_at": "2026-07-10T10:10:11.551436", + "updated_at": "2026-07-10T10:10:11.551436", + "url": "/v1/games/enter-the-dominatrix-q63849212" +} diff --git a/site/public/v1/games/enter-the-dominatrix/index.json b/site/public/v1/games/enter-the-dominatrix/index.json new file mode 100644 index 000000000000..3b6d290efd66 --- /dev/null +++ b/site/public/v1/games/enter-the-dominatrix/index.json @@ -0,0 +1,31 @@ +{ + "id": 47448, + "slug": "enter-the-dominatrix", + "name": "Enter the Dominatrix", + "release_date": "2013-10-23", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "action-adventure game" + ], + "stores": [], + "developers": [], + "publishers": [ + "Deep Silver" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17509320" + ], + "created_at": "2026-07-10T10:10:11.551436", + "updated_at": "2026-07-10T10:10:11.551436", + "url": "/v1/games/enter-the-dominatrix" +} diff --git a/site/public/v1/games/entry-point-freelancer-s-cut/index.json b/site/public/v1/games/entry-point-freelancer-s-cut/index.json new file mode 100644 index 000000000000..d718673021a0 --- /dev/null +++ b/site/public/v1/games/entry-point-freelancer-s-cut/index.json @@ -0,0 +1,32 @@ +{ + "id": 47506, + "slug": "entry-point-freelancer-s-cut", + "name": "Entry Point: Freelancer's Cut", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "shooter game", + "theft" + ], + "stores": [], + "developers": [ + "Cishshato" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137682690" + ], + "created_at": "2026-07-10T10:10:11.566452", + "updated_at": "2026-07-10T10:10:11.566452", + "url": "/v1/games/entry-point-freelancer-s-cut" +} diff --git a/site/public/v1/games/entry-point/index.json b/site/public/v1/games/entry-point/index.json new file mode 100644 index 000000000000..f657131c7554 --- /dev/null +++ b/site/public/v1/games/entry-point/index.json @@ -0,0 +1,32 @@ +{ + "id": 47507, + "slug": "entry-point", + "name": "Entry Point", + "release_date": "2017-04-14", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "theft", + "shooter game" + ], + "stores": [], + "developers": [ + "Cishshato" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126958203" + ], + "created_at": "2026-07-10T10:10:11.567470", + "updated_at": "2026-07-10T10:10:11.567470", + "url": "/v1/games/entry-point" +} diff --git a/site/public/v1/games/episode-1/index.json b/site/public/v1/games/episode-1/index.json new file mode 100644 index 000000000000..ad3bf966877e --- /dev/null +++ b/site/public/v1/games/episode-1/index.json @@ -0,0 +1,25 @@ +{ + "id": 47684, + "slug": "episode-1", + "name": "Episode 1", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117485897" + ], + "created_at": "2026-07-10T10:10:11.613552", + "updated_at": "2026-07-10T10:10:11.613552", + "url": "/v1/games/episode-1" +} diff --git a/site/public/v1/games/episode-2/index.json b/site/public/v1/games/episode-2/index.json new file mode 100644 index 000000000000..a63664b87f64 --- /dev/null +++ b/site/public/v1/games/episode-2/index.json @@ -0,0 +1,25 @@ +{ + "id": 47685, + "slug": "episode-2", + "name": "Episode 2", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117487063" + ], + "created_at": "2026-07-10T10:10:11.613552", + "updated_at": "2026-07-10T10:10:11.613552", + "url": "/v1/games/episode-2" +} diff --git a/site/public/v1/games/episode-3/index.json b/site/public/v1/games/episode-3/index.json new file mode 100644 index 000000000000..4b0be90e0f60 --- /dev/null +++ b/site/public/v1/games/episode-3/index.json @@ -0,0 +1,25 @@ +{ + "id": 47686, + "slug": "episode-3", + "name": "Episode 3", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117487065" + ], + "created_at": "2026-07-10T10:10:11.613552", + "updated_at": "2026-07-10T10:10:11.613552", + "url": "/v1/games/episode-3" +} diff --git a/site/public/v1/games/episode-4/index.json b/site/public/v1/games/episode-4/index.json new file mode 100644 index 000000000000..a47f77d24ea4 --- /dev/null +++ b/site/public/v1/games/episode-4/index.json @@ -0,0 +1,25 @@ +{ + "id": 47687, + "slug": "episode-4", + "name": "Episode 4", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117487072" + ], + "created_at": "2026-07-10T10:10:11.614549", + "updated_at": "2026-07-10T10:10:11.614549", + "url": "/v1/games/episode-4" +} diff --git a/site/public/v1/games/episode-shadow/index.json b/site/public/v1/games/episode-shadow/index.json new file mode 100644 index 000000000000..e3663726ed6f --- /dev/null +++ b/site/public/v1/games/episode-shadow/index.json @@ -0,0 +1,27 @@ +{ + "id": 47689, + "slug": "episode-shadow", + "name": "Episode Shadow", + "release_date": "2017-11-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q42428903" + ], + "created_at": "2026-07-10T10:10:11.614549", + "updated_at": "2026-07-10T10:10:11.614549", + "url": "/v1/games/episode-shadow" +} diff --git a/site/public/v1/games/erudite-trivia-games-quiz/index.json b/site/public/v1/games/erudite-trivia-games-quiz/index.json new file mode 100644 index 000000000000..7dd42bdd684f --- /dev/null +++ b/site/public/v1/games/erudite-trivia-games-quiz/index.json @@ -0,0 +1,31 @@ +{ + "id": 47890, + "slug": "erudite-trivia-games-quiz", + "name": "Erudite: Trivia Games & Quiz", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "iOS" + ], + "genres": [ + "trivia" + ], + "stores": [], + "developers": [ + "Mioris" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140392719" + ], + "created_at": "2026-07-10T10:10:11.673758", + "updated_at": "2026-07-10T10:10:11.673758", + "url": "/v1/games/erudite-trivia-games-quiz" +} diff --git a/site/public/v1/games/escalation-q57973883/index.json b/site/public/v1/games/escalation-q57973883/index.json new file mode 100644 index 000000000000..b5366f583a0f --- /dev/null +++ b/site/public/v1/games/escalation-q57973883/index.json @@ -0,0 +1,25 @@ +{ + "id": 47912, + "slug": "escalation-q57973883", + "name": "Escalation", + "release_date": "2017-04-25", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q57973883" + ], + "created_at": "2026-07-10T10:10:11.680705", + "updated_at": "2026-07-10T10:10:11.680705", + "url": "/v1/games/escalation-q57973883" +} diff --git a/site/public/v1/games/escape-from-woomera/index.json b/site/public/v1/games/escape-from-woomera/index.json new file mode 100644 index 000000000000..01c896ce8455 --- /dev/null +++ b/site/public/v1/games/escape-from-woomera/index.json @@ -0,0 +1,30 @@ +{ + "id": 48110, + "slug": "escape-from-woomera", + "name": "Escape From Woomera", + "release_date": "2004-05-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "serious game", + "point-and-click adventure" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5396941" + ], + "created_at": "2026-07-10T10:10:11.734186", + "updated_at": "2026-07-10T10:10:11.734186", + "url": "/v1/games/escape-from-woomera" +} diff --git a/site/public/v1/games/escape-the-undertaker/index.json b/site/public/v1/games/escape-the-undertaker/index.json new file mode 100644 index 000000000000..82a651d4c697 --- /dev/null +++ b/site/public/v1/games/escape-the-undertaker/index.json @@ -0,0 +1,25 @@ +{ + "id": 48274, + "slug": "escape-the-undertaker", + "name": "Escape the Undertaker", + "release_date": "2021-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108827997" + ], + "created_at": "2026-07-10T10:10:11.780171", + "updated_at": "2026-07-10T10:10:11.780171", + "url": "/v1/games/escape-the-undertaker" +} diff --git a/site/public/v1/games/esp32-doom/index.json b/site/public/v1/games/esp32-doom/index.json new file mode 100644 index 000000000000..63f17d0b2314 --- /dev/null +++ b/site/public/v1/games/esp32-doom/index.json @@ -0,0 +1,27 @@ +{ + "id": 48360, + "slug": "esp32-doom", + "name": "ESP32-DOOM", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "ESP32" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124473487" + ], + "created_at": "2026-07-10T10:10:11.808109", + "updated_at": "2026-07-10T10:10:11.808109", + "url": "/v1/games/esp32-doom" +} diff --git a/site/public/v1/games/eternal-silence/index.json b/site/public/v1/games/eternal-silence/index.json new file mode 100644 index 000000000000..d2fb32f84476 --- /dev/null +++ b/site/public/v1/games/eternal-silence/index.json @@ -0,0 +1,29 @@ +{ + "id": 48579, + "slug": "eternal-silence", + "name": "Eternal Silence", + "release_date": "2006-09-23", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5402688" + ], + "created_at": "2026-07-10T10:10:11.868742", + "updated_at": "2026-07-10T10:10:11.868742", + "url": "/v1/games/eternal-silence" +} diff --git a/site/public/v1/games/eternity-engine/index.json b/site/public/v1/games/eternity-engine/index.json new file mode 100644 index 000000000000..b713bd6cbe7e --- /dev/null +++ b/site/public/v1/games/eternity-engine/index.json @@ -0,0 +1,25 @@ +{ + "id": 48616, + "slug": "eternity-engine", + "name": "Eternity Engine", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q67219617" + ], + "created_at": "2026-07-10T10:10:11.878707", + "updated_at": "2026-07-10T10:10:11.878707", + "url": "/v1/games/eternity-engine" +} diff --git a/site/public/v1/games/etrian-odyssey-origins-collection/index.json b/site/public/v1/games/etrian-odyssey-origins-collection/index.json new file mode 100644 index 000000000000..160d19901b76 --- /dev/null +++ b/site/public/v1/games/etrian-odyssey-origins-collection/index.json @@ -0,0 +1,31 @@ +{ + "id": 48686, + "slug": "etrian-odyssey-origins-collection", + "name": "Etrian Odyssey Origins Collection", + "release_date": "2023-06-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "role-playing video game" + ], + "stores": [], + "developers": [], + "publishers": [ + "Sega" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118213365" + ], + "created_at": "2026-07-10T10:10:11.900723", + "updated_at": "2026-07-10T10:10:11.900723", + "url": "/v1/games/etrian-odyssey-origins-collection" +} diff --git a/site/public/v1/games/eun-byul/index.json b/site/public/v1/games/eun-byul/index.json new file mode 100644 index 000000000000..49c6ecbecdd1 --- /dev/null +++ b/site/public/v1/games/eun-byul/index.json @@ -0,0 +1,27 @@ +{ + "id": 48714, + "slug": "eun-byul", + "name": "Eun-Byul", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [ + "Korea Computer Center" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q23995003" + ], + "created_at": "2026-07-10T10:10:11.908654", + "updated_at": "2026-07-10T10:10:11.908654", + "url": "/v1/games/eun-byul" +} diff --git a/site/public/v1/games/euro-truck-simulator-2-actros-tuning-pack/index.json b/site/public/v1/games/euro-truck-simulator-2-actros-tuning-pack/index.json new file mode 100644 index 000000000000..4ebec3179b99 --- /dev/null +++ b/site/public/v1/games/euro-truck-simulator-2-actros-tuning-pack/index.json @@ -0,0 +1,32 @@ +{ + "id": 48731, + "slug": "euro-truck-simulator-2-actros-tuning-pack", + "name": "Euro Truck Simulator 2: Actros Tuning Pack", + "release_date": "2019-09-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113178532" + ], + "created_at": "2026-07-10T10:10:11.912794", + "updated_at": "2026-07-10T10:10:11.912794", + "url": "/v1/games/euro-truck-simulator-2-actros-tuning-pack" +} diff --git a/site/public/v1/games/euro-truck-simulator-2-australian-paint-jobs-pack/index.json b/site/public/v1/games/euro-truck-simulator-2-australian-paint-jobs-pack/index.json new file mode 100644 index 000000000000..2a9b9cc57187 --- /dev/null +++ b/site/public/v1/games/euro-truck-simulator-2-australian-paint-jobs-pack/index.json @@ -0,0 +1,32 @@ +{ + "id": 48732, + "slug": "euro-truck-simulator-2-australian-paint-jobs-pack", + "name": "Euro Truck Simulator 2: Australian Paint Jobs Pack", + "release_date": "2017-01-20", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113178342" + ], + "created_at": "2026-07-10T10:10:11.913814", + "updated_at": "2026-07-10T10:10:11.913814", + "url": "/v1/games/euro-truck-simulator-2-australian-paint-jobs-pack" +} diff --git a/site/public/v1/games/euro-truck-simulator-2-austrian-paint-jobs-pack/index.json b/site/public/v1/games/euro-truck-simulator-2-austrian-paint-jobs-pack/index.json new file mode 100644 index 000000000000..16a3089a7e98 --- /dev/null +++ b/site/public/v1/games/euro-truck-simulator-2-austrian-paint-jobs-pack/index.json @@ -0,0 +1,32 @@ +{ + "id": 48733, + "slug": "euro-truck-simulator-2-austrian-paint-jobs-pack", + "name": "Euro Truck Simulator 2: Austrian Paint Jobs Pack", + "release_date": "2016-07-15", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113178105" + ], + "created_at": "2026-07-10T10:10:11.913814", + "updated_at": "2026-07-10T10:10:11.913814", + "url": "/v1/games/euro-truck-simulator-2-austrian-paint-jobs-pack" +} diff --git a/site/public/v1/games/euro-truck-simulator-2-belgian-paint-jobs-pack/index.json b/site/public/v1/games/euro-truck-simulator-2-belgian-paint-jobs-pack/index.json new file mode 100644 index 000000000000..abb58f802b7f --- /dev/null +++ b/site/public/v1/games/euro-truck-simulator-2-belgian-paint-jobs-pack/index.json @@ -0,0 +1,32 @@ +{ + "id": 48734, + "slug": "euro-truck-simulator-2-belgian-paint-jobs-pack", + "name": "Euro Truck Simulator 2: Belgian Paint Jobs Pack", + "release_date": "2016-12-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113178299" + ], + "created_at": "2026-07-10T10:10:11.913814", + "updated_at": "2026-07-10T10:10:11.913814", + "url": "/v1/games/euro-truck-simulator-2-belgian-paint-jobs-pack" +} diff --git a/site/public/v1/games/euro-truck-simulator-2-beyond-the-baltic-sea/index.json b/site/public/v1/games/euro-truck-simulator-2-beyond-the-baltic-sea/index.json new file mode 100644 index 000000000000..f1d7f5f85a68 --- /dev/null +++ b/site/public/v1/games/euro-truck-simulator-2-beyond-the-baltic-sea/index.json @@ -0,0 +1,32 @@ +{ + "id": 48735, + "slug": "euro-truck-simulator-2-beyond-the-baltic-sea", + "name": "Euro Truck Simulator 2: Beyond the Baltic Sea", + "release_date": "2018-11-29", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113178414" + ], + "created_at": "2026-07-10T10:10:11.913814", + "updated_at": "2026-07-10T10:10:11.913814", + "url": "/v1/games/euro-truck-simulator-2-beyond-the-baltic-sea" +} diff --git a/site/public/v1/games/euro-truck-simulator-2-brazilian-paint-jobs-pack/index.json b/site/public/v1/games/euro-truck-simulator-2-brazilian-paint-jobs-pack/index.json new file mode 100644 index 000000000000..aeec9ff40903 --- /dev/null +++ b/site/public/v1/games/euro-truck-simulator-2-brazilian-paint-jobs-pack/index.json @@ -0,0 +1,32 @@ +{ + "id": 48736, + "slug": "euro-truck-simulator-2-brazilian-paint-jobs-pack", + "name": "Euro Truck Simulator 2: Brazilian Paint Jobs Pack", + "release_date": "2014-06-11", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113177590" + ], + "created_at": "2026-07-10T10:10:11.913814", + "updated_at": "2026-07-10T10:10:11.913814", + "url": "/v1/games/euro-truck-simulator-2-brazilian-paint-jobs-pack" +} diff --git a/site/public/v1/games/euro-truck-simulator-2-bulgarian-paint-jobs-pack/index.json b/site/public/v1/games/euro-truck-simulator-2-bulgarian-paint-jobs-pack/index.json new file mode 100644 index 000000000000..b52672b0c894 --- /dev/null +++ b/site/public/v1/games/euro-truck-simulator-2-bulgarian-paint-jobs-pack/index.json @@ -0,0 +1,32 @@ +{ + "id": 48737, + "slug": "euro-truck-simulator-2-bulgarian-paint-jobs-pack", + "name": "Euro Truck Simulator 2: Bulgarian Paint Jobs Pack", + "release_date": "2019-12-05", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113178580" + ], + "created_at": "2026-07-10T10:10:11.914784", + "updated_at": "2026-07-10T10:10:11.914784", + "url": "/v1/games/euro-truck-simulator-2-bulgarian-paint-jobs-pack" +} diff --git a/site/public/v1/games/euro-truck-simulator-2-cabin-accessories/index.json b/site/public/v1/games/euro-truck-simulator-2-cabin-accessories/index.json new file mode 100644 index 000000000000..ac8c9803846f --- /dev/null +++ b/site/public/v1/games/euro-truck-simulator-2-cabin-accessories/index.json @@ -0,0 +1,32 @@ +{ + "id": 48738, + "slug": "euro-truck-simulator-2-cabin-accessories", + "name": "Euro Truck Simulator 2: Cabin Accessories", + "release_date": "2015-09-30", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113177927" + ], + "created_at": "2026-07-10T10:10:11.914784", + "updated_at": "2026-07-10T10:10:11.914784", + "url": "/v1/games/euro-truck-simulator-2-cabin-accessories" +} diff --git a/site/public/v1/games/euro-truck-simulator-2-canadian-paint-jobs-pack/index.json b/site/public/v1/games/euro-truck-simulator-2-canadian-paint-jobs-pack/index.json new file mode 100644 index 000000000000..e9fbc4e43119 --- /dev/null +++ b/site/public/v1/games/euro-truck-simulator-2-canadian-paint-jobs-pack/index.json @@ -0,0 +1,32 @@ +{ + "id": 48739, + "slug": "euro-truck-simulator-2-canadian-paint-jobs-pack", + "name": "Euro Truck Simulator 2: Canadian Paint Jobs Pack", + "release_date": "2014-07-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113177662" + ], + "created_at": "2026-07-10T10:10:11.914784", + "updated_at": "2026-07-10T10:10:11.914784", + "url": "/v1/games/euro-truck-simulator-2-canadian-paint-jobs-pack" +} diff --git a/site/public/v1/games/euro-truck-simulator-2-chinese-paint-jobs-pack/index.json b/site/public/v1/games/euro-truck-simulator-2-chinese-paint-jobs-pack/index.json new file mode 100644 index 000000000000..261528d7870d --- /dev/null +++ b/site/public/v1/games/euro-truck-simulator-2-chinese-paint-jobs-pack/index.json @@ -0,0 +1,32 @@ +{ + "id": 48740, + "slug": "euro-truck-simulator-2-chinese-paint-jobs-pack", + "name": "Euro Truck Simulator 2: Chinese Paint Jobs Pack", + "release_date": "2016-06-21", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113178202" + ], + "created_at": "2026-07-10T10:10:11.914784", + "updated_at": "2026-07-10T10:10:11.914784", + "url": "/v1/games/euro-truck-simulator-2-chinese-paint-jobs-pack" +} diff --git a/site/public/v1/games/euro-truck-simulator-2-christmas-paint-jobs-pack/index.json b/site/public/v1/games/euro-truck-simulator-2-christmas-paint-jobs-pack/index.json new file mode 100644 index 000000000000..a2da5cfa7145 --- /dev/null +++ b/site/public/v1/games/euro-truck-simulator-2-christmas-paint-jobs-pack/index.json @@ -0,0 +1,32 @@ +{ + "id": 48741, + "slug": "euro-truck-simulator-2-christmas-paint-jobs-pack", + "name": "Euro Truck Simulator 2: Christmas Paint Jobs Pack", + "release_date": "2014-12-03", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113177765" + ], + "created_at": "2026-07-10T10:10:11.915798", + "updated_at": "2026-07-10T10:10:11.915798", + "url": "/v1/games/euro-truck-simulator-2-christmas-paint-jobs-pack" +} diff --git a/site/public/v1/games/euro-truck-simulator-2-czech-paint-jobs-pack/index.json b/site/public/v1/games/euro-truck-simulator-2-czech-paint-jobs-pack/index.json new file mode 100644 index 000000000000..62a181570746 --- /dev/null +++ b/site/public/v1/games/euro-truck-simulator-2-czech-paint-jobs-pack/index.json @@ -0,0 +1,32 @@ +{ + "id": 48742, + "slug": "euro-truck-simulator-2-czech-paint-jobs-pack", + "name": "Euro Truck Simulator 2: Czech Paint Jobs Pack", + "release_date": "2014-10-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113177745" + ], + "created_at": "2026-07-10T10:10:11.915798", + "updated_at": "2026-07-10T10:10:11.915798", + "url": "/v1/games/euro-truck-simulator-2-czech-paint-jobs-pack" +} diff --git a/site/public/v1/games/euro-truck-simulator-2-daf-xg-xg/index.json b/site/public/v1/games/euro-truck-simulator-2-daf-xg-xg/index.json new file mode 100644 index 000000000000..50a4dc89d494 --- /dev/null +++ b/site/public/v1/games/euro-truck-simulator-2-daf-xg-xg/index.json @@ -0,0 +1,32 @@ +{ + "id": 48743, + "slug": "euro-truck-simulator-2-daf-xg-xg", + "name": "Euro Truck Simulator 2: DAF XG/XG+", + "release_date": "2021-06-10", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113178649" + ], + "created_at": "2026-07-10T10:10:11.915798", + "updated_at": "2026-07-10T10:10:11.915798", + "url": "/v1/games/euro-truck-simulator-2-daf-xg-xg" +} diff --git a/site/public/v1/games/euro-truck-simulator-2-danish-paint-jobs-pack/index.json b/site/public/v1/games/euro-truck-simulator-2-danish-paint-jobs-pack/index.json new file mode 100644 index 000000000000..a7450a930419 --- /dev/null +++ b/site/public/v1/games/euro-truck-simulator-2-danish-paint-jobs-pack/index.json @@ -0,0 +1,32 @@ +{ + "id": 48744, + "slug": "euro-truck-simulator-2-danish-paint-jobs-pack", + "name": "Euro Truck Simulator 2: Danish Paint Jobs Pack", + "release_date": "2015-05-06", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113177843" + ], + "created_at": "2026-07-10T10:10:11.915798", + "updated_at": "2026-07-10T10:10:11.915798", + "url": "/v1/games/euro-truck-simulator-2-danish-paint-jobs-pack" +} diff --git a/site/public/v1/games/euro-truck-simulator-2-dragon-truck-design-pack/index.json b/site/public/v1/games/euro-truck-simulator-2-dragon-truck-design-pack/index.json new file mode 100644 index 000000000000..fd6af3988593 --- /dev/null +++ b/site/public/v1/games/euro-truck-simulator-2-dragon-truck-design-pack/index.json @@ -0,0 +1,31 @@ +{ + "id": 48745, + "slug": "euro-truck-simulator-2-dragon-truck-design-pack", + "name": "Euro Truck Simulator 2: Dragon Truck Design Pack", + "release_date": "2017-02-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113178310" + ], + "created_at": "2026-07-10T10:10:11.916793", + "updated_at": "2026-07-10T10:10:11.916793", + "url": "/v1/games/euro-truck-simulator-2-dragon-truck-design-pack" +} diff --git a/site/public/v1/games/euro-truck-simulator-2-dutch-paint-jobs-pack/index.json b/site/public/v1/games/euro-truck-simulator-2-dutch-paint-jobs-pack/index.json new file mode 100644 index 000000000000..c7c57146d14f --- /dev/null +++ b/site/public/v1/games/euro-truck-simulator-2-dutch-paint-jobs-pack/index.json @@ -0,0 +1,32 @@ +{ + "id": 48746, + "slug": "euro-truck-simulator-2-dutch-paint-jobs-pack", + "name": "Euro Truck Simulator 2: Dutch Paint Jobs Pack", + "release_date": "2018-07-26", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113178403" + ], + "created_at": "2026-07-10T10:10:11.916793", + "updated_at": "2026-07-10T10:10:11.916793", + "url": "/v1/games/euro-truck-simulator-2-dutch-paint-jobs-pack" +} diff --git a/site/public/v1/games/euro-truck-simulator-2-estonian-paint-jobs-pack/index.json b/site/public/v1/games/euro-truck-simulator-2-estonian-paint-jobs-pack/index.json new file mode 100644 index 000000000000..d0294e151a4c --- /dev/null +++ b/site/public/v1/games/euro-truck-simulator-2-estonian-paint-jobs-pack/index.json @@ -0,0 +1,32 @@ +{ + "id": 48747, + "slug": "euro-truck-simulator-2-estonian-paint-jobs-pack", + "name": "Euro Truck Simulator 2: Estonian Paint Jobs Pack", + "release_date": "2018-11-29", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113178458" + ], + "created_at": "2026-07-10T10:10:11.916793", + "updated_at": "2026-07-10T10:10:11.916793", + "url": "/v1/games/euro-truck-simulator-2-estonian-paint-jobs-pack" +} diff --git a/site/public/v1/games/euro-truck-simulator-2-fantasy-paint-jobs-pack/index.json b/site/public/v1/games/euro-truck-simulator-2-fantasy-paint-jobs-pack/index.json new file mode 100644 index 000000000000..8f3a4e3d7131 --- /dev/null +++ b/site/public/v1/games/euro-truck-simulator-2-fantasy-paint-jobs-pack/index.json @@ -0,0 +1,32 @@ +{ + "id": 48748, + "slug": "euro-truck-simulator-2-fantasy-paint-jobs-pack", + "name": "Euro Truck Simulator 2: Fantasy Paint Jobs Pack", + "release_date": "2014-07-15", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113177612" + ], + "created_at": "2026-07-10T10:10:11.916793", + "updated_at": "2026-07-10T10:10:11.916793", + "url": "/v1/games/euro-truck-simulator-2-fantasy-paint-jobs-pack" +} diff --git a/site/public/v1/games/euro-truck-simulator-2-fh-tuning-pack/index.json b/site/public/v1/games/euro-truck-simulator-2-fh-tuning-pack/index.json new file mode 100644 index 000000000000..23ec0bd82552 --- /dev/null +++ b/site/public/v1/games/euro-truck-simulator-2-fh-tuning-pack/index.json @@ -0,0 +1,32 @@ +{ + "id": 48749, + "slug": "euro-truck-simulator-2-fh-tuning-pack", + "name": "Euro Truck Simulator 2: FH Tuning Pack", + "release_date": "2020-06-02", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113178625" + ], + "created_at": "2026-07-10T10:10:11.916793", + "updated_at": "2026-07-10T10:10:11.916793", + "url": "/v1/games/euro-truck-simulator-2-fh-tuning-pack" +} diff --git a/site/public/v1/games/euro-truck-simulator-2-finnish-paint-jobs-pack/index.json b/site/public/v1/games/euro-truck-simulator-2-finnish-paint-jobs-pack/index.json new file mode 100644 index 000000000000..4897acc7f697 --- /dev/null +++ b/site/public/v1/games/euro-truck-simulator-2-finnish-paint-jobs-pack/index.json @@ -0,0 +1,32 @@ +{ + "id": 48750, + "slug": "euro-truck-simulator-2-finnish-paint-jobs-pack", + "name": "Euro Truck Simulator 2: Finnish Paint Jobs Pack", + "release_date": "2016-12-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113178287" + ], + "created_at": "2026-07-10T10:10:11.917794", + "updated_at": "2026-07-10T10:10:11.917794", + "url": "/v1/games/euro-truck-simulator-2-finnish-paint-jobs-pack" +} diff --git a/site/public/v1/games/euro-truck-simulator-2-flip-paint-designs/index.json b/site/public/v1/games/euro-truck-simulator-2-flip-paint-designs/index.json new file mode 100644 index 000000000000..ad3b0c2bc397 --- /dev/null +++ b/site/public/v1/games/euro-truck-simulator-2-flip-paint-designs/index.json @@ -0,0 +1,32 @@ +{ + "id": 48751, + "slug": "euro-truck-simulator-2-flip-paint-designs", + "name": "Euro Truck Simulator 2: Flip Paint Designs", + "release_date": "2014-05-29", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113177543" + ], + "created_at": "2026-07-10T10:10:11.917794", + "updated_at": "2026-07-10T10:10:11.917794", + "url": "/v1/games/euro-truck-simulator-2-flip-paint-designs" +} diff --git a/site/public/v1/games/euro-truck-simulator-2-force-of-nature-paint-jobs-pack/index.json b/site/public/v1/games/euro-truck-simulator-2-force-of-nature-paint-jobs-pack/index.json new file mode 100644 index 000000000000..cc59cd4fbdfe --- /dev/null +++ b/site/public/v1/games/euro-truck-simulator-2-force-of-nature-paint-jobs-pack/index.json @@ -0,0 +1,32 @@ +{ + "id": 48752, + "slug": "euro-truck-simulator-2-force-of-nature-paint-jobs-pack", + "name": "Euro Truck Simulator 2: Force of Nature Paint Jobs Pack", + "release_date": "2014-04-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113177419" + ], + "created_at": "2026-07-10T10:10:11.917794", + "updated_at": "2026-07-10T10:10:11.917794", + "url": "/v1/games/euro-truck-simulator-2-force-of-nature-paint-jobs-pack" +} diff --git a/site/public/v1/games/euro-truck-simulator-2-french-paint-jobs-pack/index.json b/site/public/v1/games/euro-truck-simulator-2-french-paint-jobs-pack/index.json new file mode 100644 index 000000000000..f41ef54edf26 --- /dev/null +++ b/site/public/v1/games/euro-truck-simulator-2-french-paint-jobs-pack/index.json @@ -0,0 +1,32 @@ +{ + "id": 48753, + "slug": "euro-truck-simulator-2-french-paint-jobs-pack", + "name": "Euro Truck Simulator 2: French Paint Jobs Pack", + "release_date": "2014-10-10", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113177715" + ], + "created_at": "2026-07-10T10:10:11.917794", + "updated_at": "2026-07-10T10:10:11.917794", + "url": "/v1/games/euro-truck-simulator-2-french-paint-jobs-pack" +} diff --git a/site/public/v1/games/euro-truck-simulator-2-german-paint-jobs-pack/index.json b/site/public/v1/games/euro-truck-simulator-2-german-paint-jobs-pack/index.json new file mode 100644 index 000000000000..0f26a08078ca --- /dev/null +++ b/site/public/v1/games/euro-truck-simulator-2-german-paint-jobs-pack/index.json @@ -0,0 +1,32 @@ +{ + "id": 48754, + "slug": "euro-truck-simulator-2-german-paint-jobs-pack", + "name": "Euro Truck Simulator 2: German Paint Jobs Pack", + "release_date": "2014-10-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113177695" + ], + "created_at": "2026-07-10T10:10:11.918844", + "updated_at": "2026-07-10T10:10:11.918844", + "url": "/v1/games/euro-truck-simulator-2-german-paint-jobs-pack" +} diff --git a/site/public/v1/games/euro-truck-simulator-2-going-east/index.json b/site/public/v1/games/euro-truck-simulator-2-going-east/index.json new file mode 100644 index 000000000000..91333f53ba9b --- /dev/null +++ b/site/public/v1/games/euro-truck-simulator-2-going-east/index.json @@ -0,0 +1,32 @@ +{ + "id": 48755, + "slug": "euro-truck-simulator-2-going-east", + "name": "Euro Truck Simulator 2: Going East!", + "release_date": "2013-09-19", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16946978" + ], + "created_at": "2026-07-10T10:10:11.918844", + "updated_at": "2026-07-10T10:10:11.918844", + "url": "/v1/games/euro-truck-simulator-2-going-east" +} diff --git a/site/public/v1/games/euro-truck-simulator-2-goodyear-tyres-pack/index.json b/site/public/v1/games/euro-truck-simulator-2-goodyear-tyres-pack/index.json new file mode 100644 index 000000000000..ddd1dafb1914 --- /dev/null +++ b/site/public/v1/games/euro-truck-simulator-2-goodyear-tyres-pack/index.json @@ -0,0 +1,32 @@ +{ + "id": 48756, + "slug": "euro-truck-simulator-2-goodyear-tyres-pack", + "name": "Euro Truck Simulator 2: Goodyear Tyres Pack", + "release_date": "2019-08-02", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113178569" + ], + "created_at": "2026-07-10T10:10:11.918844", + "updated_at": "2026-07-10T10:10:11.918844", + "url": "/v1/games/euro-truck-simulator-2-goodyear-tyres-pack" +} diff --git a/site/public/v1/games/euro-truck-simulator-2-halloween-paint-jobs-pack/index.json b/site/public/v1/games/euro-truck-simulator-2-halloween-paint-jobs-pack/index.json new file mode 100644 index 000000000000..46e341732ec9 --- /dev/null +++ b/site/public/v1/games/euro-truck-simulator-2-halloween-paint-jobs-pack/index.json @@ -0,0 +1,32 @@ +{ + "id": 48757, + "slug": "euro-truck-simulator-2-halloween-paint-jobs-pack", + "name": "Euro Truck Simulator 2: Halloween Paint Jobs Pack", + "release_date": "2013-10-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113177342" + ], + "created_at": "2026-07-10T10:10:11.918844", + "updated_at": "2026-07-10T10:10:11.918844", + "url": "/v1/games/euro-truck-simulator-2-halloween-paint-jobs-pack" +} diff --git a/site/public/v1/games/euro-truck-simulator-2-heart-of-russia/index.json b/site/public/v1/games/euro-truck-simulator-2-heart-of-russia/index.json new file mode 100644 index 000000000000..c4bdb99b3d08 --- /dev/null +++ b/site/public/v1/games/euro-truck-simulator-2-heart-of-russia/index.json @@ -0,0 +1,32 @@ +{ + "id": 48758, + "slug": "euro-truck-simulator-2-heart-of-russia", + "name": "Euro Truck Simulator 2: Heart of Russia", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113178636" + ], + "created_at": "2026-07-10T10:10:11.918844", + "updated_at": "2026-07-10T10:10:11.918844", + "url": "/v1/games/euro-truck-simulator-2-heart-of-russia" +} diff --git a/site/public/v1/games/euro-truck-simulator-2-heavy-cargo-pack/index.json b/site/public/v1/games/euro-truck-simulator-2-heavy-cargo-pack/index.json new file mode 100644 index 000000000000..fad9a8b09616 --- /dev/null +++ b/site/public/v1/games/euro-truck-simulator-2-heavy-cargo-pack/index.json @@ -0,0 +1,32 @@ +{ + "id": 48759, + "slug": "euro-truck-simulator-2-heavy-cargo-pack", + "name": "Euro Truck Simulator 2: Heavy Cargo Pack", + "release_date": "2017-05-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113178279" + ], + "created_at": "2026-07-10T10:10:11.919809", + "updated_at": "2026-07-10T10:10:11.919809", + "url": "/v1/games/euro-truck-simulator-2-heavy-cargo-pack" +} diff --git a/site/public/v1/games/euro-truck-simulator-2-high-power-cargo-pack/index.json b/site/public/v1/games/euro-truck-simulator-2-high-power-cargo-pack/index.json new file mode 100644 index 000000000000..0d57f106861c --- /dev/null +++ b/site/public/v1/games/euro-truck-simulator-2-high-power-cargo-pack/index.json @@ -0,0 +1,32 @@ +{ + "id": 48760, + "slug": "euro-truck-simulator-2-high-power-cargo-pack", + "name": "Euro Truck Simulator 2: High Power Cargo Pack", + "release_date": "2014-08-14", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113177679" + ], + "created_at": "2026-07-10T10:10:11.919809", + "updated_at": "2026-07-10T10:10:11.919809", + "url": "/v1/games/euro-truck-simulator-2-high-power-cargo-pack" +} diff --git a/site/public/v1/games/euro-truck-simulator-2-hs-schoch-tuning-pack/index.json b/site/public/v1/games/euro-truck-simulator-2-hs-schoch-tuning-pack/index.json new file mode 100644 index 000000000000..9ad1bfc7779a --- /dev/null +++ b/site/public/v1/games/euro-truck-simulator-2-hs-schoch-tuning-pack/index.json @@ -0,0 +1,32 @@ +{ + "id": 48761, + "slug": "euro-truck-simulator-2-hs-schoch-tuning-pack", + "name": "Euro Truck Simulator 2: HS-Schoch Tuning Pack", + "release_date": "2020-03-19", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113178618" + ], + "created_at": "2026-07-10T10:10:11.919809", + "updated_at": "2026-07-10T10:10:11.919809", + "url": "/v1/games/euro-truck-simulator-2-hs-schoch-tuning-pack" +} diff --git a/site/public/v1/games/euro-truck-simulator-2-hungarian-paint-jobs-pack/index.json b/site/public/v1/games/euro-truck-simulator-2-hungarian-paint-jobs-pack/index.json new file mode 100644 index 000000000000..1f2fb8123eb2 --- /dev/null +++ b/site/public/v1/games/euro-truck-simulator-2-hungarian-paint-jobs-pack/index.json @@ -0,0 +1,32 @@ +{ + "id": 48762, + "slug": "euro-truck-simulator-2-hungarian-paint-jobs-pack", + "name": "Euro Truck Simulator 2: Hungarian Paint Jobs Pack", + "release_date": "2016-04-19", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113178041" + ], + "created_at": "2026-07-10T10:10:11.919809", + "updated_at": "2026-07-10T10:10:11.919809", + "url": "/v1/games/euro-truck-simulator-2-hungarian-paint-jobs-pack" +} diff --git a/site/public/v1/games/euro-truck-simulator-2-iberia/index.json b/site/public/v1/games/euro-truck-simulator-2-iberia/index.json new file mode 100644 index 000000000000..73fa4b0aeef0 --- /dev/null +++ b/site/public/v1/games/euro-truck-simulator-2-iberia/index.json @@ -0,0 +1,32 @@ +{ + "id": 48763, + "slug": "euro-truck-simulator-2-iberia", + "name": "Euro Truck Simulator 2: Iberia", + "release_date": "2021-04-08", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113178598" + ], + "created_at": "2026-07-10T10:10:11.920782", + "updated_at": "2026-07-10T10:10:11.920782", + "url": "/v1/games/euro-truck-simulator-2-iberia" +} diff --git a/site/public/v1/games/euro-truck-simulator-2-ice-cold-paint-jobs-pack/index.json b/site/public/v1/games/euro-truck-simulator-2-ice-cold-paint-jobs-pack/index.json new file mode 100644 index 000000000000..d445398238fb --- /dev/null +++ b/site/public/v1/games/euro-truck-simulator-2-ice-cold-paint-jobs-pack/index.json @@ -0,0 +1,32 @@ +{ + "id": 48764, + "slug": "euro-truck-simulator-2-ice-cold-paint-jobs-pack", + "name": "Euro Truck Simulator 2: Ice Cold Paint Jobs Pack", + "release_date": "2013-12-10", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113177364" + ], + "created_at": "2026-07-10T10:10:11.920782", + "updated_at": "2026-07-10T10:10:11.920782", + "url": "/v1/games/euro-truck-simulator-2-ice-cold-paint-jobs-pack" +} diff --git a/site/public/v1/games/euro-truck-simulator-2-irish-paint-jobs-pack/index.json b/site/public/v1/games/euro-truck-simulator-2-irish-paint-jobs-pack/index.json new file mode 100644 index 000000000000..6599560690b9 --- /dev/null +++ b/site/public/v1/games/euro-truck-simulator-2-irish-paint-jobs-pack/index.json @@ -0,0 +1,32 @@ +{ + "id": 48765, + "slug": "euro-truck-simulator-2-irish-paint-jobs-pack", + "name": "Euro Truck Simulator 2: Irish Paint Jobs Pack", + "release_date": "2014-05-20", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113177493" + ], + "created_at": "2026-07-10T10:10:11.920782", + "updated_at": "2026-07-10T10:10:11.920782", + "url": "/v1/games/euro-truck-simulator-2-irish-paint-jobs-pack" +} diff --git a/site/public/v1/games/euro-truck-simulator-2-italia/index.json b/site/public/v1/games/euro-truck-simulator-2-italia/index.json new file mode 100644 index 000000000000..71d5e7ecef54 --- /dev/null +++ b/site/public/v1/games/euro-truck-simulator-2-italia/index.json @@ -0,0 +1,32 @@ +{ + "id": 48766, + "slug": "euro-truck-simulator-2-italia", + "name": "Euro Truck Simulator 2: Italia", + "release_date": "2017-12-05", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113178369" + ], + "created_at": "2026-07-10T10:10:11.920782", + "updated_at": "2026-07-10T10:10:11.920782", + "url": "/v1/games/euro-truck-simulator-2-italia" +} diff --git a/site/public/v1/games/euro-truck-simulator-2-italian-paint-jobs-pack/index.json b/site/public/v1/games/euro-truck-simulator-2-italian-paint-jobs-pack/index.json new file mode 100644 index 000000000000..75a3cee73de7 --- /dev/null +++ b/site/public/v1/games/euro-truck-simulator-2-italian-paint-jobs-pack/index.json @@ -0,0 +1,32 @@ +{ + "id": 48767, + "slug": "euro-truck-simulator-2-italian-paint-jobs-pack", + "name": "Euro Truck Simulator 2: Italian Paint Jobs Pack", + "release_date": "2016-05-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113178015" + ], + "created_at": "2026-07-10T10:10:11.920782", + "updated_at": "2026-07-10T10:10:11.920782", + "url": "/v1/games/euro-truck-simulator-2-italian-paint-jobs-pack" +} diff --git a/site/public/v1/games/euro-truck-simulator-2-japanese-paint-jobs-pack/index.json b/site/public/v1/games/euro-truck-simulator-2-japanese-paint-jobs-pack/index.json new file mode 100644 index 000000000000..853bdf34bd7d --- /dev/null +++ b/site/public/v1/games/euro-truck-simulator-2-japanese-paint-jobs-pack/index.json @@ -0,0 +1,32 @@ +{ + "id": 48768, + "slug": "euro-truck-simulator-2-japanese-paint-jobs-pack", + "name": "Euro Truck Simulator 2: Japanese Paint Jobs Pack", + "release_date": "2015-11-09", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113177963" + ], + "created_at": "2026-07-10T10:10:11.921807", + "updated_at": "2026-07-10T10:10:11.921807", + "url": "/v1/games/euro-truck-simulator-2-japanese-paint-jobs-pack" +} diff --git a/site/public/v1/games/euro-truck-simulator-2-krone-trailer-pack/index.json b/site/public/v1/games/euro-truck-simulator-2-krone-trailer-pack/index.json new file mode 100644 index 000000000000..ec252c4838e1 --- /dev/null +++ b/site/public/v1/games/euro-truck-simulator-2-krone-trailer-pack/index.json @@ -0,0 +1,32 @@ +{ + "id": 48769, + "slug": "euro-truck-simulator-2-krone-trailer-pack", + "name": "Euro Truck Simulator 2: Krone Trailer Pack", + "release_date": "2018-09-17", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113178436" + ], + "created_at": "2026-07-10T10:10:11.921807", + "updated_at": "2026-07-10T10:10:11.921807", + "url": "/v1/games/euro-truck-simulator-2-krone-trailer-pack" +} diff --git a/site/public/v1/games/euro-truck-simulator-2-latvian-paint-jobs-pack/index.json b/site/public/v1/games/euro-truck-simulator-2-latvian-paint-jobs-pack/index.json new file mode 100644 index 000000000000..a993dddef388 --- /dev/null +++ b/site/public/v1/games/euro-truck-simulator-2-latvian-paint-jobs-pack/index.json @@ -0,0 +1,32 @@ +{ + "id": 48770, + "slug": "euro-truck-simulator-2-latvian-paint-jobs-pack", + "name": "Euro Truck Simulator 2: Latvian Paint Jobs Pack", + "release_date": "2018-11-29", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113178474" + ], + "created_at": "2026-07-10T10:10:11.921807", + "updated_at": "2026-07-10T10:10:11.921807", + "url": "/v1/games/euro-truck-simulator-2-latvian-paint-jobs-pack" +} diff --git a/site/public/v1/games/euro-truck-simulator-2-lithuanian-paint-jobs-pack/index.json b/site/public/v1/games/euro-truck-simulator-2-lithuanian-paint-jobs-pack/index.json new file mode 100644 index 000000000000..15fa2488e779 --- /dev/null +++ b/site/public/v1/games/euro-truck-simulator-2-lithuanian-paint-jobs-pack/index.json @@ -0,0 +1,32 @@ +{ + "id": 48771, + "slug": "euro-truck-simulator-2-lithuanian-paint-jobs-pack", + "name": "Euro Truck Simulator 2: Lithuanian Paint Jobs Pack", + "release_date": "2018-11-29", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113178490" + ], + "created_at": "2026-07-10T10:10:11.921807", + "updated_at": "2026-07-10T10:10:11.921807", + "url": "/v1/games/euro-truck-simulator-2-lithuanian-paint-jobs-pack" +} diff --git a/site/public/v1/games/euro-truck-simulator-2-lunar-new-year-pack/index.json b/site/public/v1/games/euro-truck-simulator-2-lunar-new-year-pack/index.json new file mode 100644 index 000000000000..d0847f4e10e3 --- /dev/null +++ b/site/public/v1/games/euro-truck-simulator-2-lunar-new-year-pack/index.json @@ -0,0 +1,32 @@ +{ + "id": 48772, + "slug": "euro-truck-simulator-2-lunar-new-year-pack", + "name": "Euro Truck Simulator 2: Lunar New Year Pack", + "release_date": "2021-02-10", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113178247" + ], + "created_at": "2026-07-10T10:10:11.921807", + "updated_at": "2026-07-10T10:10:11.921807", + "url": "/v1/games/euro-truck-simulator-2-lunar-new-year-pack" +} diff --git a/site/public/v1/games/euro-truck-simulator-2-metallic-paint-jobs-pack/index.json b/site/public/v1/games/euro-truck-simulator-2-metallic-paint-jobs-pack/index.json new file mode 100644 index 000000000000..9ea64dc21ec1 --- /dev/null +++ b/site/public/v1/games/euro-truck-simulator-2-metallic-paint-jobs-pack/index.json @@ -0,0 +1,32 @@ +{ + "id": 48773, + "slug": "euro-truck-simulator-2-metallic-paint-jobs-pack", + "name": "Euro Truck Simulator 2: Metallic Paint Jobs Pack", + "release_date": "2014-05-19", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113177439" + ], + "created_at": "2026-07-10T10:10:11.922778", + "updated_at": "2026-07-10T10:10:11.922778", + "url": "/v1/games/euro-truck-simulator-2-metallic-paint-jobs-pack" +} diff --git a/site/public/v1/games/euro-truck-simulator-2-michelin-fan-pack/index.json b/site/public/v1/games/euro-truck-simulator-2-michelin-fan-pack/index.json new file mode 100644 index 000000000000..586fe0b42f0b --- /dev/null +++ b/site/public/v1/games/euro-truck-simulator-2-michelin-fan-pack/index.json @@ -0,0 +1,32 @@ +{ + "id": 48774, + "slug": "euro-truck-simulator-2-michelin-fan-pack", + "name": "Euro Truck Simulator 2: Michelin Fan Pack", + "release_date": "2017-01-10", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113177946" + ], + "created_at": "2026-07-10T10:10:11.922778", + "updated_at": "2026-07-10T10:10:11.922778", + "url": "/v1/games/euro-truck-simulator-2-michelin-fan-pack" +} diff --git a/site/public/v1/games/euro-truck-simulator-2-mighty-griffin-tuning-pack/index.json b/site/public/v1/games/euro-truck-simulator-2-mighty-griffin-tuning-pack/index.json new file mode 100644 index 000000000000..6e0f0fd865af --- /dev/null +++ b/site/public/v1/games/euro-truck-simulator-2-mighty-griffin-tuning-pack/index.json @@ -0,0 +1,32 @@ +{ + "id": 48775, + "slug": "euro-truck-simulator-2-mighty-griffin-tuning-pack", + "name": "Euro Truck Simulator 2: Mighty Griffin Tuning Pack", + "release_date": "2016-06-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113178135" + ], + "created_at": "2026-07-10T10:10:11.922778", + "updated_at": "2026-07-10T10:10:11.922778", + "url": "/v1/games/euro-truck-simulator-2-mighty-griffin-tuning-pack" +} diff --git a/site/public/v1/games/euro-truck-simulator-2-nordic-horizons/index.json b/site/public/v1/games/euro-truck-simulator-2-nordic-horizons/index.json new file mode 100644 index 000000000000..8d67baa4dfeb --- /dev/null +++ b/site/public/v1/games/euro-truck-simulator-2-nordic-horizons/index.json @@ -0,0 +1,25 @@ +{ + "id": 48776, + "slug": "euro-truck-simulator-2-nordic-horizons", + "name": "Euro Truck Simulator 2: Nordic Horizons", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140420098" + ], + "created_at": "2026-07-10T10:10:11.923771", + "updated_at": "2026-07-10T10:10:11.923771", + "url": "/v1/games/euro-truck-simulator-2-nordic-horizons" +} diff --git a/site/public/v1/games/euro-truck-simulator-2-norwegian-paint-jobs-pack/index.json b/site/public/v1/games/euro-truck-simulator-2-norwegian-paint-jobs-pack/index.json new file mode 100644 index 000000000000..455b975a03af --- /dev/null +++ b/site/public/v1/games/euro-truck-simulator-2-norwegian-paint-jobs-pack/index.json @@ -0,0 +1,32 @@ +{ + "id": 48777, + "slug": "euro-truck-simulator-2-norwegian-paint-jobs-pack", + "name": "Euro Truck Simulator 2: Norwegian Paint Jobs Pack", + "release_date": "2015-05-06", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113177821" + ], + "created_at": "2026-07-10T10:10:11.923771", + "updated_at": "2026-07-10T10:10:11.923771", + "url": "/v1/games/euro-truck-simulator-2-norwegian-paint-jobs-pack" +} diff --git a/site/public/v1/games/euro-truck-simulator-2-pink-ribbon-charity-pack/index.json b/site/public/v1/games/euro-truck-simulator-2-pink-ribbon-charity-pack/index.json new file mode 100644 index 000000000000..818bfb77e754 --- /dev/null +++ b/site/public/v1/games/euro-truck-simulator-2-pink-ribbon-charity-pack/index.json @@ -0,0 +1,32 @@ +{ + "id": 48778, + "slug": "euro-truck-simulator-2-pink-ribbon-charity-pack", + "name": "Euro Truck Simulator 2: Pink Ribbon Charity Pack", + "release_date": "2019-10-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113178550" + ], + "created_at": "2026-07-10T10:10:11.923771", + "updated_at": "2026-07-10T10:10:11.923771", + "url": "/v1/games/euro-truck-simulator-2-pink-ribbon-charity-pack" +} diff --git a/site/public/v1/games/euro-truck-simulator-2-pirate-paint-jobs-pack/index.json b/site/public/v1/games/euro-truck-simulator-2-pirate-paint-jobs-pack/index.json new file mode 100644 index 000000000000..0786c22f5e26 --- /dev/null +++ b/site/public/v1/games/euro-truck-simulator-2-pirate-paint-jobs-pack/index.json @@ -0,0 +1,32 @@ +{ + "id": 48779, + "slug": "euro-truck-simulator-2-pirate-paint-jobs-pack", + "name": "Euro Truck Simulator 2: Pirate Paint Jobs Pack", + "release_date": "2016-09-19", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113178218" + ], + "created_at": "2026-07-10T10:10:11.923771", + "updated_at": "2026-07-10T10:10:11.923771", + "url": "/v1/games/euro-truck-simulator-2-pirate-paint-jobs-pack" +} diff --git a/site/public/v1/games/euro-truck-simulator-2-polish-paint-jobs-pack/index.json b/site/public/v1/games/euro-truck-simulator-2-polish-paint-jobs-pack/index.json new file mode 100644 index 000000000000..677bfdb6de83 --- /dev/null +++ b/site/public/v1/games/euro-truck-simulator-2-polish-paint-jobs-pack/index.json @@ -0,0 +1,32 @@ +{ + "id": 48780, + "slug": "euro-truck-simulator-2-polish-paint-jobs-pack", + "name": "Euro Truck Simulator 2: Polish Paint Jobs Pack", + "release_date": "2014-06-30", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113177569" + ], + "created_at": "2026-07-10T10:10:11.923771", + "updated_at": "2026-07-10T10:10:11.923771", + "url": "/v1/games/euro-truck-simulator-2-polish-paint-jobs-pack" +} diff --git a/site/public/v1/games/euro-truck-simulator-2-portuguese-paint-jobs-pack/index.json b/site/public/v1/games/euro-truck-simulator-2-portuguese-paint-jobs-pack/index.json new file mode 100644 index 000000000000..65f8bd3e5288 --- /dev/null +++ b/site/public/v1/games/euro-truck-simulator-2-portuguese-paint-jobs-pack/index.json @@ -0,0 +1,32 @@ +{ + "id": 48781, + "slug": "euro-truck-simulator-2-portuguese-paint-jobs-pack", + "name": "Euro Truck Simulator 2: Portuguese Paint Jobs Pack", + "release_date": "2018-06-08", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113178390" + ], + "created_at": "2026-07-10T10:10:11.923771", + "updated_at": "2026-07-10T10:10:11.923771", + "url": "/v1/games/euro-truck-simulator-2-portuguese-paint-jobs-pack" +} diff --git a/site/public/v1/games/euro-truck-simulator-2-prehistoric-paint-jobs-pack/index.json b/site/public/v1/games/euro-truck-simulator-2-prehistoric-paint-jobs-pack/index.json new file mode 100644 index 000000000000..0482125e3a3e --- /dev/null +++ b/site/public/v1/games/euro-truck-simulator-2-prehistoric-paint-jobs-pack/index.json @@ -0,0 +1,32 @@ +{ + "id": 48782, + "slug": "euro-truck-simulator-2-prehistoric-paint-jobs-pack", + "name": "Euro Truck Simulator 2: Prehistoric Paint Jobs Pack", + "release_date": "2015-07-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113177392" + ], + "created_at": "2026-07-10T10:10:11.923771", + "updated_at": "2026-07-10T10:10:11.923771", + "url": "/v1/games/euro-truck-simulator-2-prehistoric-paint-jobs-pack" +} diff --git a/site/public/v1/games/euro-truck-simulator-2-raven-truck-design-pack/index.json b/site/public/v1/games/euro-truck-simulator-2-raven-truck-design-pack/index.json new file mode 100644 index 000000000000..5c41d3dce107 --- /dev/null +++ b/site/public/v1/games/euro-truck-simulator-2-raven-truck-design-pack/index.json @@ -0,0 +1,32 @@ +{ + "id": 48783, + "slug": "euro-truck-simulator-2-raven-truck-design-pack", + "name": "Euro Truck Simulator 2: Raven Truck Design Pack", + "release_date": "2014-12-08", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113177794" + ], + "created_at": "2026-07-10T10:10:11.923771", + "updated_at": "2026-07-10T10:10:11.923771", + "url": "/v1/games/euro-truck-simulator-2-raven-truck-design-pack" +} diff --git a/site/public/v1/games/euro-truck-simulator-2-renault-trucks-t-tuning-pack/index.json b/site/public/v1/games/euro-truck-simulator-2-renault-trucks-t-tuning-pack/index.json new file mode 100644 index 000000000000..85aa6c73c762 --- /dev/null +++ b/site/public/v1/games/euro-truck-simulator-2-renault-trucks-t-tuning-pack/index.json @@ -0,0 +1,32 @@ +{ + "id": 48784, + "slug": "euro-truck-simulator-2-renault-trucks-t-tuning-pack", + "name": "Euro Truck Simulator 2: Renault Trucks T Tuning Pack", + "release_date": "2022-05-25", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113178679" + ], + "created_at": "2026-07-10T10:10:11.925339", + "updated_at": "2026-07-10T10:10:11.925339", + "url": "/v1/games/euro-truck-simulator-2-renault-trucks-t-tuning-pack" +} diff --git a/site/public/v1/games/euro-truck-simulator-2-road-to-the-black-sea/index.json b/site/public/v1/games/euro-truck-simulator-2-road-to-the-black-sea/index.json new file mode 100644 index 000000000000..ce3dff7235f6 --- /dev/null +++ b/site/public/v1/games/euro-truck-simulator-2-road-to-the-black-sea/index.json @@ -0,0 +1,32 @@ +{ + "id": 48785, + "slug": "euro-truck-simulator-2-road-to-the-black-sea", + "name": "Euro Truck Simulator 2: Road to the Black Sea", + "release_date": "2019-12-05", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113178513" + ], + "created_at": "2026-07-10T10:10:11.925339", + "updated_at": "2026-07-10T10:10:11.925339", + "url": "/v1/games/euro-truck-simulator-2-road-to-the-black-sea" +} diff --git a/site/public/v1/games/euro-truck-simulator-2-romanian-paint-jobs-pack/index.json b/site/public/v1/games/euro-truck-simulator-2-romanian-paint-jobs-pack/index.json new file mode 100644 index 000000000000..e380ee6ca5f0 --- /dev/null +++ b/site/public/v1/games/euro-truck-simulator-2-romanian-paint-jobs-pack/index.json @@ -0,0 +1,32 @@ +{ + "id": 48786, + "slug": "euro-truck-simulator-2-romanian-paint-jobs-pack", + "name": "Euro Truck Simulator 2: Romanian Paint Jobs Pack", + "release_date": "2017-01-20", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113178322" + ], + "created_at": "2026-07-10T10:10:11.925339", + "updated_at": "2026-07-10T10:10:11.925339", + "url": "/v1/games/euro-truck-simulator-2-romanian-paint-jobs-pack" +} diff --git a/site/public/v1/games/euro-truck-simulator-2-russian-paint-jobs-pack/index.json b/site/public/v1/games/euro-truck-simulator-2-russian-paint-jobs-pack/index.json new file mode 100644 index 000000000000..a18f4ced6090 --- /dev/null +++ b/site/public/v1/games/euro-truck-simulator-2-russian-paint-jobs-pack/index.json @@ -0,0 +1,32 @@ +{ + "id": 48787, + "slug": "euro-truck-simulator-2-russian-paint-jobs-pack", + "name": "Euro Truck Simulator 2: Russian Paint Jobs Pack", + "release_date": "2015-03-23", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113177908" + ], + "created_at": "2026-07-10T10:10:11.925339", + "updated_at": "2026-07-10T10:10:11.925339", + "url": "/v1/games/euro-truck-simulator-2-russian-paint-jobs-pack" +} diff --git a/site/public/v1/games/euro-truck-simulator-2-scandinavia/index.json b/site/public/v1/games/euro-truck-simulator-2-scandinavia/index.json new file mode 100644 index 000000000000..1226b5a85026 --- /dev/null +++ b/site/public/v1/games/euro-truck-simulator-2-scandinavia/index.json @@ -0,0 +1,32 @@ +{ + "id": 48788, + "slug": "euro-truck-simulator-2-scandinavia", + "name": "Euro Truck Simulator 2: Scandinavia", + "release_date": "2015-05-06", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22262432" + ], + "created_at": "2026-07-10T10:10:11.926427", + "updated_at": "2026-07-10T10:10:11.926427", + "url": "/v1/games/euro-truck-simulator-2-scandinavia" +} diff --git a/site/public/v1/games/euro-truck-simulator-2-schwarzm-ller-trailer-pack/index.json b/site/public/v1/games/euro-truck-simulator-2-schwarzm-ller-trailer-pack/index.json new file mode 100644 index 000000000000..f7ba1da0118a --- /dev/null +++ b/site/public/v1/games/euro-truck-simulator-2-schwarzm-ller-trailer-pack/index.json @@ -0,0 +1,32 @@ +{ + "id": 48789, + "slug": "euro-truck-simulator-2-schwarzm-ller-trailer-pack", + "name": "Euro Truck Simulator 2: Schwarzmüller Trailer Pack", + "release_date": "2016-09-16", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113178027" + ], + "created_at": "2026-07-10T10:10:11.926427", + "updated_at": "2026-07-10T10:10:11.926427", + "url": "/v1/games/euro-truck-simulator-2-schwarzm-ller-trailer-pack" +} diff --git a/site/public/v1/games/euro-truck-simulator-2-scottish-paint-jobs-pack/index.json b/site/public/v1/games/euro-truck-simulator-2-scottish-paint-jobs-pack/index.json new file mode 100644 index 000000000000..d00fb28fcfb4 --- /dev/null +++ b/site/public/v1/games/euro-truck-simulator-2-scottish-paint-jobs-pack/index.json @@ -0,0 +1,32 @@ +{ + "id": 48790, + "slug": "euro-truck-simulator-2-scottish-paint-jobs-pack", + "name": "Euro Truck Simulator 2: Scottish Paint Jobs Pack", + "release_date": "2014-05-20", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113177519" + ], + "created_at": "2026-07-10T10:10:11.926427", + "updated_at": "2026-07-10T10:10:11.926427", + "url": "/v1/games/euro-truck-simulator-2-scottish-paint-jobs-pack" +} diff --git a/site/public/v1/games/euro-truck-simulator-2-slovak-paint-jobs-pack/index.json b/site/public/v1/games/euro-truck-simulator-2-slovak-paint-jobs-pack/index.json new file mode 100644 index 000000000000..0529a5b0becd --- /dev/null +++ b/site/public/v1/games/euro-truck-simulator-2-slovak-paint-jobs-pack/index.json @@ -0,0 +1,32 @@ +{ + "id": 48791, + "slug": "euro-truck-simulator-2-slovak-paint-jobs-pack", + "name": "Euro Truck Simulator 2: Slovak Paint Jobs Pack", + "release_date": "2016-05-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113178052" + ], + "created_at": "2026-07-10T10:10:11.926427", + "updated_at": "2026-07-10T10:10:11.926427", + "url": "/v1/games/euro-truck-simulator-2-slovak-paint-jobs-pack" +} diff --git a/site/public/v1/games/euro-truck-simulator-2-south-korean-paint-jobs-pack/index.json b/site/public/v1/games/euro-truck-simulator-2-south-korean-paint-jobs-pack/index.json new file mode 100644 index 000000000000..682539249a4c --- /dev/null +++ b/site/public/v1/games/euro-truck-simulator-2-south-korean-paint-jobs-pack/index.json @@ -0,0 +1,32 @@ +{ + "id": 48792, + "slug": "euro-truck-simulator-2-south-korean-paint-jobs-pack", + "name": "Euro Truck Simulator 2: South Korean Paint Jobs Pack", + "release_date": "2016-06-21", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113178157" + ], + "created_at": "2026-07-10T10:10:11.926427", + "updated_at": "2026-07-10T10:10:11.926427", + "url": "/v1/games/euro-truck-simulator-2-south-korean-paint-jobs-pack" +} diff --git a/site/public/v1/games/euro-truck-simulator-2-space-paint-jobs-pack/index.json b/site/public/v1/games/euro-truck-simulator-2-space-paint-jobs-pack/index.json new file mode 100644 index 000000000000..d47d5e31ad85 --- /dev/null +++ b/site/public/v1/games/euro-truck-simulator-2-space-paint-jobs-pack/index.json @@ -0,0 +1,32 @@ +{ + "id": 48793, + "slug": "euro-truck-simulator-2-space-paint-jobs-pack", + "name": "Euro Truck Simulator 2: Space Paint Jobs Pack", + "release_date": "2018-08-31", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113178423" + ], + "created_at": "2026-07-10T10:10:11.927349", + "updated_at": "2026-07-10T10:10:11.927349", + "url": "/v1/games/euro-truck-simulator-2-space-paint-jobs-pack" +} diff --git a/site/public/v1/games/euro-truck-simulator-2-spanish-paint-jobs-pack/index.json b/site/public/v1/games/euro-truck-simulator-2-spanish-paint-jobs-pack/index.json new file mode 100644 index 000000000000..55f175b956af --- /dev/null +++ b/site/public/v1/games/euro-truck-simulator-2-spanish-paint-jobs-pack/index.json @@ -0,0 +1,32 @@ +{ + "id": 48794, + "slug": "euro-truck-simulator-2-spanish-paint-jobs-pack", + "name": "Euro Truck Simulator 2: Spanish Paint Jobs Pack", + "release_date": "2016-06-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113178061" + ], + "created_at": "2026-07-10T10:10:11.927349", + "updated_at": "2026-07-10T10:10:11.927349", + "url": "/v1/games/euro-truck-simulator-2-spanish-paint-jobs-pack" +} diff --git a/site/public/v1/games/euro-truck-simulator-2-special-transport/index.json b/site/public/v1/games/euro-truck-simulator-2-special-transport/index.json new file mode 100644 index 000000000000..52545c92a64f --- /dev/null +++ b/site/public/v1/games/euro-truck-simulator-2-special-transport/index.json @@ -0,0 +1,32 @@ +{ + "id": 48795, + "slug": "euro-truck-simulator-2-special-transport", + "name": "Euro Truck Simulator 2: Special Transport", + "release_date": "2017-12-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113178380" + ], + "created_at": "2026-07-10T10:10:11.927349", + "updated_at": "2026-07-10T10:10:11.927349", + "url": "/v1/games/euro-truck-simulator-2-special-transport" +} diff --git a/site/public/v1/games/euro-truck-simulator-2-super-stripes-paint-jobs-pack/index.json b/site/public/v1/games/euro-truck-simulator-2-super-stripes-paint-jobs-pack/index.json new file mode 100644 index 000000000000..7b074a9d3432 --- /dev/null +++ b/site/public/v1/games/euro-truck-simulator-2-super-stripes-paint-jobs-pack/index.json @@ -0,0 +1,32 @@ +{ + "id": 48796, + "slug": "euro-truck-simulator-2-super-stripes-paint-jobs-pack", + "name": "Euro Truck Simulator 2: Super Stripes Paint Jobs Pack", + "release_date": "2020-09-17", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113178631" + ], + "created_at": "2026-07-10T10:10:11.927349", + "updated_at": "2026-07-10T10:10:11.927349", + "url": "/v1/games/euro-truck-simulator-2-super-stripes-paint-jobs-pack" +} diff --git a/site/public/v1/games/euro-truck-simulator-2-swedish-paint-jobs-pack/index.json b/site/public/v1/games/euro-truck-simulator-2-swedish-paint-jobs-pack/index.json new file mode 100644 index 000000000000..0f7d3011c169 --- /dev/null +++ b/site/public/v1/games/euro-truck-simulator-2-swedish-paint-jobs-pack/index.json @@ -0,0 +1,32 @@ +{ + "id": 48797, + "slug": "euro-truck-simulator-2-swedish-paint-jobs-pack", + "name": "Euro Truck Simulator 2: Swedish Paint Jobs Pack", + "release_date": "2015-05-06", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113177867" + ], + "created_at": "2026-07-10T10:10:11.928424", + "updated_at": "2026-07-10T10:10:11.928424", + "url": "/v1/games/euro-truck-simulator-2-swedish-paint-jobs-pack" +} diff --git a/site/public/v1/games/euro-truck-simulator-2-swiss-paint-jobs-pack/index.json b/site/public/v1/games/euro-truck-simulator-2-swiss-paint-jobs-pack/index.json new file mode 100644 index 000000000000..1e1f2a627a8c --- /dev/null +++ b/site/public/v1/games/euro-truck-simulator-2-swiss-paint-jobs-pack/index.json @@ -0,0 +1,32 @@ +{ + "id": 48798, + "slug": "euro-truck-simulator-2-swiss-paint-jobs-pack", + "name": "Euro Truck Simulator 2: Swiss Paint Jobs Pack", + "release_date": "2016-07-15", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113178173" + ], + "created_at": "2026-07-10T10:10:11.928424", + "updated_at": "2026-07-10T10:10:11.928424", + "url": "/v1/games/euro-truck-simulator-2-swiss-paint-jobs-pack" +} diff --git a/site/public/v1/games/euro-truck-simulator-2-turkish-paint-jobs-pack/index.json b/site/public/v1/games/euro-truck-simulator-2-turkish-paint-jobs-pack/index.json new file mode 100644 index 000000000000..c02bce74ca8a --- /dev/null +++ b/site/public/v1/games/euro-truck-simulator-2-turkish-paint-jobs-pack/index.json @@ -0,0 +1,32 @@ +{ + "id": 48799, + "slug": "euro-truck-simulator-2-turkish-paint-jobs-pack", + "name": "Euro Truck Simulator 2: Turkish Paint Jobs Pack", + "release_date": "2016-04-19", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113177982" + ], + "created_at": "2026-07-10T10:10:11.928424", + "updated_at": "2026-07-10T10:10:11.928424", + "url": "/v1/games/euro-truck-simulator-2-turkish-paint-jobs-pack" +} diff --git a/site/public/v1/games/euro-truck-simulator-2-uk-paint-jobs-pack/index.json b/site/public/v1/games/euro-truck-simulator-2-uk-paint-jobs-pack/index.json new file mode 100644 index 000000000000..9e9b25c62c45 --- /dev/null +++ b/site/public/v1/games/euro-truck-simulator-2-uk-paint-jobs-pack/index.json @@ -0,0 +1,32 @@ +{ + "id": 48800, + "slug": "euro-truck-simulator-2-uk-paint-jobs-pack", + "name": "Euro Truck Simulator 2: UK Paint Jobs Pack", + "release_date": "2014-05-20", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113177466" + ], + "created_at": "2026-07-10T10:10:11.928424", + "updated_at": "2026-07-10T10:10:11.928424", + "url": "/v1/games/euro-truck-simulator-2-uk-paint-jobs-pack" +} diff --git a/site/public/v1/games/euro-truck-simulator-2-ukrainian-paint-jobs-pack/index.json b/site/public/v1/games/euro-truck-simulator-2-ukrainian-paint-jobs-pack/index.json new file mode 100644 index 000000000000..e327dcb852d2 --- /dev/null +++ b/site/public/v1/games/euro-truck-simulator-2-ukrainian-paint-jobs-pack/index.json @@ -0,0 +1,32 @@ +{ + "id": 48801, + "slug": "euro-truck-simulator-2-ukrainian-paint-jobs-pack", + "name": "Euro Truck Simulator 2: Ukrainian Paint Jobs Pack", + "release_date": "2022-03-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113178661" + ], + "created_at": "2026-07-10T10:10:11.928424", + "updated_at": "2026-07-10T10:10:11.928424", + "url": "/v1/games/euro-truck-simulator-2-ukrainian-paint-jobs-pack" +} diff --git a/site/public/v1/games/euro-truck-simulator-2-usa-paint-jobs-pack/index.json b/site/public/v1/games/euro-truck-simulator-2-usa-paint-jobs-pack/index.json new file mode 100644 index 000000000000..d1f559b02d75 --- /dev/null +++ b/site/public/v1/games/euro-truck-simulator-2-usa-paint-jobs-pack/index.json @@ -0,0 +1,32 @@ +{ + "id": 48802, + "slug": "euro-truck-simulator-2-usa-paint-jobs-pack", + "name": "Euro Truck Simulator 2: USA Paint Jobs Pack", + "release_date": "2014-07-03", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113177640" + ], + "created_at": "2026-07-10T10:10:11.929444", + "updated_at": "2026-07-10T10:10:11.929444", + "url": "/v1/games/euro-truck-simulator-2-usa-paint-jobs-pack" +} diff --git a/site/public/v1/games/euro-truck-simulator-2-valentine-s-paint-jobs-pack/index.json b/site/public/v1/games/euro-truck-simulator-2-valentine-s-paint-jobs-pack/index.json new file mode 100644 index 000000000000..c06ee3277e38 --- /dev/null +++ b/site/public/v1/games/euro-truck-simulator-2-valentine-s-paint-jobs-pack/index.json @@ -0,0 +1,32 @@ +{ + "id": 48803, + "slug": "euro-truck-simulator-2-valentine-s-paint-jobs-pack", + "name": "Euro Truck Simulator 2: Valentine's Paint Jobs Pack", + "release_date": "2017-02-10", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113178354" + ], + "created_at": "2026-07-10T10:10:11.929444", + "updated_at": "2026-07-10T10:10:11.929444", + "url": "/v1/games/euro-truck-simulator-2-valentine-s-paint-jobs-pack" +} diff --git a/site/public/v1/games/euro-truck-simulator-2-viking-legends/index.json b/site/public/v1/games/euro-truck-simulator-2-viking-legends/index.json new file mode 100644 index 000000000000..2add63f88091 --- /dev/null +++ b/site/public/v1/games/euro-truck-simulator-2-viking-legends/index.json @@ -0,0 +1,32 @@ +{ + "id": 48804, + "slug": "euro-truck-simulator-2-viking-legends", + "name": "Euro Truck Simulator 2: Viking Legends", + "release_date": "2015-05-06", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113177888" + ], + "created_at": "2026-07-10T10:10:11.929444", + "updated_at": "2026-07-10T10:10:11.929444", + "url": "/v1/games/euro-truck-simulator-2-viking-legends" +} diff --git a/site/public/v1/games/euro-truck-simulator-2-vive-la-france/index.json b/site/public/v1/games/euro-truck-simulator-2-vive-la-france/index.json new file mode 100644 index 000000000000..27ab84f411d2 --- /dev/null +++ b/site/public/v1/games/euro-truck-simulator-2-vive-la-france/index.json @@ -0,0 +1,32 @@ +{ + "id": 48805, + "slug": "euro-truck-simulator-2-vive-la-france", + "name": "Euro Truck Simulator 2: Vive la France!", + "release_date": "2016-12-05", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113178263" + ], + "created_at": "2026-07-10T10:10:11.929444", + "updated_at": "2026-07-10T10:10:11.929444", + "url": "/v1/games/euro-truck-simulator-2-vive-la-france" +} diff --git a/site/public/v1/games/euro-truck-simulator-2-volvo-construction-equipment/index.json b/site/public/v1/games/euro-truck-simulator-2-volvo-construction-equipment/index.json new file mode 100644 index 000000000000..a073e202355c --- /dev/null +++ b/site/public/v1/games/euro-truck-simulator-2-volvo-construction-equipment/index.json @@ -0,0 +1,32 @@ +{ + "id": 48806, + "slug": "euro-truck-simulator-2-volvo-construction-equipment", + "name": "Euro Truck Simulator 2: Volvo Construction Equipment", + "release_date": "2021-09-23", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113178652" + ], + "created_at": "2026-07-10T10:10:11.930429", + "updated_at": "2026-07-10T10:10:11.930429", + "url": "/v1/games/euro-truck-simulator-2-volvo-construction-equipment" +} diff --git a/site/public/v1/games/euro-truck-simulator-2-west-balkans/index.json b/site/public/v1/games/euro-truck-simulator-2-west-balkans/index.json new file mode 100644 index 000000000000..7e52345dfbd8 --- /dev/null +++ b/site/public/v1/games/euro-truck-simulator-2-west-balkans/index.json @@ -0,0 +1,32 @@ +{ + "id": 48807, + "slug": "euro-truck-simulator-2-west-balkans", + "name": "Euro Truck Simulator 2: West Balkans", + "release_date": "2023-10-19", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113178694" + ], + "created_at": "2026-07-10T10:10:11.930429", + "updated_at": "2026-07-10T10:10:11.930429", + "url": "/v1/games/euro-truck-simulator-2-west-balkans" +} diff --git a/site/public/v1/games/euro-truck-simulator-2-wheel-tuning-pack/index.json b/site/public/v1/games/euro-truck-simulator-2-wheel-tuning-pack/index.json new file mode 100644 index 000000000000..26a3d7f9cb4a --- /dev/null +++ b/site/public/v1/games/euro-truck-simulator-2-wheel-tuning-pack/index.json @@ -0,0 +1,32 @@ +{ + "id": 48808, + "slug": "euro-truck-simulator-2-wheel-tuning-pack", + "name": "Euro Truck Simulator 2: Wheel Tuning Pack", + "release_date": "2016-04-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113177996" + ], + "created_at": "2026-07-10T10:10:11.930429", + "updated_at": "2026-07-10T10:10:11.930429", + "url": "/v1/games/euro-truck-simulator-2-wheel-tuning-pack" +} diff --git a/site/public/v1/games/euro-truck-simulator-2-window-flags/index.json b/site/public/v1/games/euro-truck-simulator-2-window-flags/index.json new file mode 100644 index 000000000000..3d07b7e308ca --- /dev/null +++ b/site/public/v1/games/euro-truck-simulator-2-window-flags/index.json @@ -0,0 +1,32 @@ +{ + "id": 48809, + "slug": "euro-truck-simulator-2-window-flags", + "name": "Euro Truck Simulator 2: Window Flags", + "release_date": "2016-06-08", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113178087" + ], + "created_at": "2026-07-10T10:10:11.930429", + "updated_at": "2026-07-10T10:10:11.930429", + "url": "/v1/games/euro-truck-simulator-2-window-flags" +} diff --git a/site/public/v1/games/euro-truck-simulator-2-xf-tuning-pack/index.json b/site/public/v1/games/euro-truck-simulator-2-xf-tuning-pack/index.json new file mode 100644 index 000000000000..d1377d2b443b --- /dev/null +++ b/site/public/v1/games/euro-truck-simulator-2-xf-tuning-pack/index.json @@ -0,0 +1,32 @@ +{ + "id": 48810, + "slug": "euro-truck-simulator-2-xf-tuning-pack", + "name": "Euro Truck Simulator 2: XF Tuning Pack", + "release_date": "2017-08-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "SCS Software" + ], + "publishers": [ + "SCS Software" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113178231" + ], + "created_at": "2026-07-10T10:10:11.930429", + "updated_at": "2026-07-10T10:10:11.930429", + "url": "/v1/games/euro-truck-simulator-2-xf-tuning-pack" +} diff --git a/site/public/v1/games/europa-universalis-iii-divine-wind/index.json b/site/public/v1/games/europa-universalis-iii-divine-wind/index.json new file mode 100644 index 000000000000..12d41c27752f --- /dev/null +++ b/site/public/v1/games/europa-universalis-iii-divine-wind/index.json @@ -0,0 +1,33 @@ +{ + "id": 48821, + "slug": "europa-universalis-iii-divine-wind", + "name": "Europa Universalis III: Divine Wind", + "release_date": "2007-12-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "grand strategy wargame" + ], + "stores": [], + "developers": [ + "Paradox Interactive" + ], + "publishers": [ + "Paradox Interactive" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4038317" + ], + "created_at": "2026-07-10T10:10:11.933407", + "updated_at": "2026-07-10T10:10:11.933407", + "url": "/v1/games/europa-universalis-iii-divine-wind" +} diff --git a/site/public/v1/games/europa-universalis-iii-heir-to-the-throne/index.json b/site/public/v1/games/europa-universalis-iii-heir-to-the-throne/index.json new file mode 100644 index 000000000000..1ddeaf5fbfb6 --- /dev/null +++ b/site/public/v1/games/europa-universalis-iii-heir-to-the-throne/index.json @@ -0,0 +1,33 @@ +{ + "id": 48822, + "slug": "europa-universalis-iii-heir-to-the-throne", + "name": "Europa Universalis III: Heir to the Throne", + "release_date": "2009-12-15", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "grand strategy wargame" + ], + "stores": [], + "developers": [ + "Paradox Interactive" + ], + "publishers": [ + "Snowball Studios" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4038316" + ], + "created_at": "2026-07-10T10:10:11.933407", + "updated_at": "2026-07-10T10:10:11.933407", + "url": "/v1/games/europa-universalis-iii-heir-to-the-throne" +} diff --git a/site/public/v1/games/europa-universalis-iii-in-nomine/index.json b/site/public/v1/games/europa-universalis-iii-in-nomine/index.json new file mode 100644 index 000000000000..03477f9466b4 --- /dev/null +++ b/site/public/v1/games/europa-universalis-iii-in-nomine/index.json @@ -0,0 +1,33 @@ +{ + "id": 48823, + "slug": "europa-universalis-iii-in-nomine", + "name": "Europa Universalis III: In Nomine", + "release_date": "2008-05-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "grand strategy wargame" + ], + "stores": [], + "developers": [ + "Paradox Interactive" + ], + "publishers": [ + "Snowball Studios" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4038318" + ], + "created_at": "2026-07-10T10:10:11.933407", + "updated_at": "2026-07-10T10:10:11.933407", + "url": "/v1/games/europa-universalis-iii-in-nomine" +} diff --git a/site/public/v1/games/europa-universalis-iv-art-of-war/index.json b/site/public/v1/games/europa-universalis-iv-art-of-war/index.json new file mode 100644 index 000000000000..b4f1278942c6 --- /dev/null +++ b/site/public/v1/games/europa-universalis-iv-art-of-war/index.json @@ -0,0 +1,28 @@ +{ + "id": 48826, + "slug": "europa-universalis-iv-art-of-war", + "name": "Europa Universalis IV: Art of War", + "release_date": "2014-10-30", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115701558" + ], + "created_at": "2026-07-10T10:10:11.934439", + "updated_at": "2026-07-10T10:10:11.934439", + "url": "/v1/games/europa-universalis-iv-art-of-war" +} diff --git a/site/public/v1/games/europa-universalis-iv-common-sense/index.json b/site/public/v1/games/europa-universalis-iv-common-sense/index.json new file mode 100644 index 000000000000..28546c050cfa --- /dev/null +++ b/site/public/v1/games/europa-universalis-iv-common-sense/index.json @@ -0,0 +1,28 @@ +{ + "id": 48827, + "slug": "europa-universalis-iv-common-sense", + "name": "Europa Universalis IV: Common Sense", + "release_date": "2015-06-09", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115701598" + ], + "created_at": "2026-07-10T10:10:11.934439", + "updated_at": "2026-07-10T10:10:11.934439", + "url": "/v1/games/europa-universalis-iv-common-sense" +} diff --git a/site/public/v1/games/europa-universalis-iv-wealth-of-nations/index.json b/site/public/v1/games/europa-universalis-iv-wealth-of-nations/index.json new file mode 100644 index 000000000000..4faf376276d8 --- /dev/null +++ b/site/public/v1/games/europa-universalis-iv-wealth-of-nations/index.json @@ -0,0 +1,27 @@ +{ + "id": 48837, + "slug": "europa-universalis-iv-wealth-of-nations", + "name": "Europa Universalis IV: Wealth of Nations", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125156590" + ], + "created_at": "2026-07-10T10:10:11.938418", + "updated_at": "2026-07-10T10:10:11.938418", + "url": "/v1/games/europa-universalis-iv-wealth-of-nations" +} diff --git a/site/public/v1/games/europa-universalis-rome-vae-victis/index.json b/site/public/v1/games/europa-universalis-rome-vae-victis/index.json new file mode 100644 index 000000000000..18b2e756a600 --- /dev/null +++ b/site/public/v1/games/europa-universalis-rome-vae-victis/index.json @@ -0,0 +1,27 @@ +{ + "id": 48840, + "slug": "europa-universalis-rome-vae-victis", + "name": "Europa Universalis: Rome – Vae Victis", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16544349" + ], + "created_at": "2026-07-10T10:10:11.939411", + "updated_at": "2026-07-10T10:10:11.939411", + "url": "/v1/games/europa-universalis-rome-vae-victis" +} diff --git a/site/public/v1/games/european-release-of-chrono-trigger-for-nintendo-ds/index.json b/site/public/v1/games/european-release-of-chrono-trigger-for-nintendo-ds/index.json new file mode 100644 index 000000000000..6a1873caf235 --- /dev/null +++ b/site/public/v1/games/european-release-of-chrono-trigger-for-nintendo-ds/index.json @@ -0,0 +1,25 @@ +{ + "id": 48863, + "slug": "european-release-of-chrono-trigger-for-nintendo-ds", + "name": "European Release of Chrono Trigger for Nintendo DS", + "release_date": "2009-02-06", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q15063326" + ], + "created_at": "2026-07-10T10:10:11.945353", + "updated_at": "2026-07-10T10:10:11.945353", + "url": "/v1/games/european-release-of-chrono-trigger-for-nintendo-ds" +} diff --git a/site/public/v1/games/ev3doom/index.json b/site/public/v1/games/ev3doom/index.json new file mode 100644 index 000000000000..8754ae06c424 --- /dev/null +++ b/site/public/v1/games/ev3doom/index.json @@ -0,0 +1,27 @@ +{ + "id": 48877, + "slug": "ev3doom", + "name": "EV3DOOM", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Lego Mindstorms EV3" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124473734" + ], + "created_at": "2026-07-10T10:10:11.949470", + "updated_at": "2026-07-10T10:10:11.949470", + "url": "/v1/games/ev3doom" +} diff --git a/site/public/v1/games/eve-online-incursion/index.json b/site/public/v1/games/eve-online-incursion/index.json new file mode 100644 index 000000000000..bbbbc08748d1 --- /dev/null +++ b/site/public/v1/games/eve-online-incursion/index.json @@ -0,0 +1,33 @@ +{ + "id": 48924, + "slug": "eve-online-incursion", + "name": "EVE Online: Incursion", + "release_date": "2010-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "massively multiplayer online role-playing game" + ], + "stores": [], + "developers": [ + "Fenris Creations" + ], + "publishers": [ + "Fenris Creations" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110724541" + ], + "created_at": "2026-07-10T10:10:11.962418", + "updated_at": "2026-07-10T10:10:11.962418", + "url": "/v1/games/eve-online-incursion" +} diff --git a/site/public/v1/games/eve-online-the-second-genesis/index.json b/site/public/v1/games/eve-online-the-second-genesis/index.json new file mode 100644 index 000000000000..3f498bd64002 --- /dev/null +++ b/site/public/v1/games/eve-online-the-second-genesis/index.json @@ -0,0 +1,31 @@ +{ + "id": 48925, + "slug": "eve-online-the-second-genesis", + "name": "EVE Online: The Second Genesis", + "release_date": "2003-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "role-playing video game" + ], + "stores": [], + "developers": [ + "Fenris Creations" + ], + "publishers": [ + "Fenris Creations" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110782681" + ], + "created_at": "2026-07-10T10:10:11.962418", + "updated_at": "2026-07-10T10:10:11.962418", + "url": "/v1/games/eve-online-the-second-genesis" +} diff --git a/site/public/v1/games/eve-online-trinity/index.json b/site/public/v1/games/eve-online-trinity/index.json new file mode 100644 index 000000000000..bf8212938a9d --- /dev/null +++ b/site/public/v1/games/eve-online-trinity/index.json @@ -0,0 +1,25 @@ +{ + "id": 48926, + "slug": "eve-online-trinity", + "name": "Eve Online: Trinity", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134321880" + ], + "created_at": "2026-07-10T10:10:11.963417", + "updated_at": "2026-07-10T10:10:11.963417", + "url": "/v1/games/eve-online-trinity" +} diff --git a/site/public/v1/games/everland/index.json b/site/public/v1/games/everland/index.json new file mode 100644 index 000000000000..e81e8c6cd423 --- /dev/null +++ b/site/public/v1/games/everland/index.json @@ -0,0 +1,29 @@ +{ + "id": 49027, + "slug": "everland", + "name": "Everland", + "release_date": "2020-05-16", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "massively multiplayer online game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112609316" + ], + "created_at": "2026-07-10T10:10:11.989413", + "updated_at": "2026-07-10T10:10:11.989413", + "url": "/v1/games/everland" +} diff --git a/site/public/v1/games/everquest-call-of-the-forsaken/index.json b/site/public/v1/games/everquest-call-of-the-forsaken/index.json new file mode 100644 index 000000000000..8a55f549f806 --- /dev/null +++ b/site/public/v1/games/everquest-call-of-the-forsaken/index.json @@ -0,0 +1,33 @@ +{ + "id": 49061, + "slug": "everquest-call-of-the-forsaken", + "name": "EverQuest: Call of the Forsaken", + "release_date": "2013-10-08", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "personal computer" + ], + "genres": [ + "massively multiplayer online role-playing game" + ], + "stores": [], + "developers": [ + "Daybreak Game Company" + ], + "publishers": [ + "Daybreak Game Company" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16259498" + ], + "created_at": "2026-07-10T10:10:11.999427", + "updated_at": "2026-07-10T10:10:11.999427", + "url": "/v1/games/everquest-call-of-the-forsaken" +} diff --git a/site/public/v1/games/everquest-depths-of-darkhollow/index.json b/site/public/v1/games/everquest-depths-of-darkhollow/index.json new file mode 100644 index 000000000000..32d9868fe243 --- /dev/null +++ b/site/public/v1/games/everquest-depths-of-darkhollow/index.json @@ -0,0 +1,33 @@ +{ + "id": 49062, + "slug": "everquest-depths-of-darkhollow", + "name": "EverQuest: Depths of Darkhollow", + "release_date": "2005-09-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "massively multiplayer online role-playing game" + ], + "stores": [], + "developers": [ + "Daybreak Game Company" + ], + "publishers": [ + "Daybreak Game Company" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5416807" + ], + "created_at": "2026-07-10T10:10:11.999427", + "updated_at": "2026-07-10T10:10:11.999427", + "url": "/v1/games/everquest-depths-of-darkhollow" +} diff --git a/site/public/v1/games/everquest-dragons-of-norrath/index.json b/site/public/v1/games/everquest-dragons-of-norrath/index.json new file mode 100644 index 000000000000..085b9905af51 --- /dev/null +++ b/site/public/v1/games/everquest-dragons-of-norrath/index.json @@ -0,0 +1,33 @@ +{ + "id": 49063, + "slug": "everquest-dragons-of-norrath", + "name": "EverQuest: Dragons of Norrath", + "release_date": "2005-02-15", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "massively multiplayer online role-playing game" + ], + "stores": [], + "developers": [ + "Daybreak Game Company" + ], + "publishers": [ + "Daybreak Game Company" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5416806" + ], + "created_at": "2026-07-10T10:10:11.999427", + "updated_at": "2026-07-10T10:10:11.999427", + "url": "/v1/games/everquest-dragons-of-norrath" +} diff --git a/site/public/v1/games/everquest-empires-of-kunark/index.json b/site/public/v1/games/everquest-empires-of-kunark/index.json new file mode 100644 index 000000000000..54849546c19f --- /dev/null +++ b/site/public/v1/games/everquest-empires-of-kunark/index.json @@ -0,0 +1,25 @@ +{ + "id": 49064, + "slug": "everquest-empires-of-kunark", + "name": "EverQuest: Empires of Kunark", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140454933" + ], + "created_at": "2026-07-10T10:10:12.000434", + "updated_at": "2026-07-10T10:10:12.000434", + "url": "/v1/games/everquest-empires-of-kunark" +} diff --git a/site/public/v1/games/everquest-gates-of-discord/index.json b/site/public/v1/games/everquest-gates-of-discord/index.json new file mode 100644 index 000000000000..d1602c405451 --- /dev/null +++ b/site/public/v1/games/everquest-gates-of-discord/index.json @@ -0,0 +1,33 @@ +{ + "id": 49065, + "slug": "everquest-gates-of-discord", + "name": "EverQuest: Gates of Discord", + "release_date": "2004-02-10", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "massively multiplayer online role-playing game" + ], + "stores": [], + "developers": [ + "Daybreak Game Company" + ], + "publishers": [ + "Daybreak Game Company" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3062536" + ], + "created_at": "2026-07-10T10:10:12.000434", + "updated_at": "2026-07-10T10:10:12.000434", + "url": "/v1/games/everquest-gates-of-discord" +} diff --git a/site/public/v1/games/everquest-house-of-thule/index.json b/site/public/v1/games/everquest-house-of-thule/index.json new file mode 100644 index 000000000000..88bf82ec0e8f --- /dev/null +++ b/site/public/v1/games/everquest-house-of-thule/index.json @@ -0,0 +1,33 @@ +{ + "id": 49066, + "slug": "everquest-house-of-thule", + "name": "EverQuest: House of Thule", + "release_date": "2010-10-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "massively multiplayer online role-playing game" + ], + "stores": [], + "developers": [ + "Daybreak Game Company" + ], + "publishers": [ + "Daybreak Game Company" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5416809" + ], + "created_at": "2026-07-10T10:10:12.000434", + "updated_at": "2026-07-10T10:10:12.000434", + "url": "/v1/games/everquest-house-of-thule" +} diff --git a/site/public/v1/games/everquest-ii-age-of-discovery/index.json b/site/public/v1/games/everquest-ii-age-of-discovery/index.json new file mode 100644 index 000000000000..21e39c2f9996 --- /dev/null +++ b/site/public/v1/games/everquest-ii-age-of-discovery/index.json @@ -0,0 +1,31 @@ +{ + "id": 49067, + "slug": "everquest-ii-age-of-discovery", + "name": "EverQuest II: Age of Discovery", + "release_date": "2011-12-06", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "massively multiplayer online role-playing game" + ], + "stores": [], + "developers": [ + "Daybreak Game Company" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5416823" + ], + "created_at": "2026-07-10T10:10:12.000434", + "updated_at": "2026-07-10T10:10:12.000434", + "url": "/v1/games/everquest-ii-age-of-discovery" +} diff --git a/site/public/v1/games/everquest-ii-chains-of-eternity/index.json b/site/public/v1/games/everquest-ii-chains-of-eternity/index.json new file mode 100644 index 000000000000..541c3c2ae719 --- /dev/null +++ b/site/public/v1/games/everquest-ii-chains-of-eternity/index.json @@ -0,0 +1,31 @@ +{ + "id": 49069, + "slug": "everquest-ii-chains-of-eternity", + "name": "EverQuest II: Chains of Eternity", + "release_date": "2012-11-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "massively multiplayer online role-playing game" + ], + "stores": [], + "developers": [ + "Daybreak Game Company" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16259484" + ], + "created_at": "2026-07-10T10:10:12.001408", + "updated_at": "2026-07-10T10:10:12.001408", + "url": "/v1/games/everquest-ii-chains-of-eternity" +} diff --git a/site/public/v1/games/everquest-ii-desert-of-flames/index.json b/site/public/v1/games/everquest-ii-desert-of-flames/index.json new file mode 100644 index 000000000000..0cdb517076fd --- /dev/null +++ b/site/public/v1/games/everquest-ii-desert-of-flames/index.json @@ -0,0 +1,33 @@ +{ + "id": 49070, + "slug": "everquest-ii-desert-of-flames", + "name": "EverQuest II: Desert of Flames", + "release_date": "2005-09-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "massively multiplayer online role-playing game" + ], + "stores": [], + "developers": [ + "Daybreak Game Company" + ], + "publishers": [ + "Daybreak Game Company" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5416824" + ], + "created_at": "2026-07-10T10:10:12.001408", + "updated_at": "2026-07-10T10:10:12.001408", + "url": "/v1/games/everquest-ii-desert-of-flames" +} diff --git a/site/public/v1/games/everquest-ii-destiny-of-velious/index.json b/site/public/v1/games/everquest-ii-destiny-of-velious/index.json new file mode 100644 index 000000000000..77ec5fada86c --- /dev/null +++ b/site/public/v1/games/everquest-ii-destiny-of-velious/index.json @@ -0,0 +1,33 @@ +{ + "id": 49071, + "slug": "everquest-ii-destiny-of-velious", + "name": "EverQuest II: Destiny of Velious", + "release_date": "2011-02-22", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "massively multiplayer online role-playing game" + ], + "stores": [], + "developers": [ + "Daybreak Game Company" + ], + "publishers": [ + "Daybreak Game Company" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5416825" + ], + "created_at": "2026-07-10T10:10:12.001408", + "updated_at": "2026-07-10T10:10:12.001408", + "url": "/v1/games/everquest-ii-destiny-of-velious" +} diff --git a/site/public/v1/games/everquest-ii-east/index.json b/site/public/v1/games/everquest-ii-east/index.json new file mode 100644 index 000000000000..bc0ba7e32adf --- /dev/null +++ b/site/public/v1/games/everquest-ii-east/index.json @@ -0,0 +1,33 @@ +{ + "id": 49072, + "slug": "everquest-ii-east", + "name": "EverQuest II: East", + "release_date": "2005-04-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "massively multiplayer online role-playing game" + ], + "stores": [], + "developers": [ + "Daybreak Game Company" + ], + "publishers": [ + "AGE" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16255636" + ], + "created_at": "2026-07-10T10:10:12.002423", + "updated_at": "2026-07-10T10:10:12.002423", + "url": "/v1/games/everquest-ii-east" +} diff --git a/site/public/v1/games/everquest-ii-echoes-of-faydwer/index.json b/site/public/v1/games/everquest-ii-echoes-of-faydwer/index.json new file mode 100644 index 000000000000..0aa46ce1224d --- /dev/null +++ b/site/public/v1/games/everquest-ii-echoes-of-faydwer/index.json @@ -0,0 +1,31 @@ +{ + "id": 49073, + "slug": "everquest-ii-echoes-of-faydwer", + "name": "EverQuest II: Echoes of Faydwer", + "release_date": "2006-11-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "massively multiplayer online role-playing game" + ], + "stores": [], + "developers": [ + "Daybreak Game Company" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3061444" + ], + "created_at": "2026-07-10T10:10:12.002423", + "updated_at": "2026-07-10T10:10:12.002423", + "url": "/v1/games/everquest-ii-echoes-of-faydwer" +} diff --git a/site/public/v1/games/everquest-ii-kingdom-of-sky/index.json b/site/public/v1/games/everquest-ii-kingdom-of-sky/index.json new file mode 100644 index 000000000000..03e190ae32b8 --- /dev/null +++ b/site/public/v1/games/everquest-ii-kingdom-of-sky/index.json @@ -0,0 +1,33 @@ +{ + "id": 49074, + "slug": "everquest-ii-kingdom-of-sky", + "name": "EverQuest II: Kingdom of Sky", + "release_date": "2006-02-21", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "massively multiplayer online role-playing game" + ], + "stores": [], + "developers": [ + "Daybreak Game Company" + ], + "publishers": [ + "Daybreak Game Company" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5416835" + ], + "created_at": "2026-07-10T10:10:12.002423", + "updated_at": "2026-07-10T10:10:12.002423", + "url": "/v1/games/everquest-ii-kingdom-of-sky" +} diff --git a/site/public/v1/games/everquest-ii-rise-of-kunark/index.json b/site/public/v1/games/everquest-ii-rise-of-kunark/index.json new file mode 100644 index 000000000000..49c47d9561f6 --- /dev/null +++ b/site/public/v1/games/everquest-ii-rise-of-kunark/index.json @@ -0,0 +1,33 @@ +{ + "id": 49075, + "slug": "everquest-ii-rise-of-kunark", + "name": "EverQuest II: Rise of Kunark", + "release_date": "2007-11-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "massively multiplayer online role-playing game" + ], + "stores": [], + "developers": [ + "Daybreak Game Company" + ], + "publishers": [ + "Daybreak Game Company" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5416826" + ], + "created_at": "2026-07-10T10:10:12.002423", + "updated_at": "2026-07-10T10:10:12.002423", + "url": "/v1/games/everquest-ii-rise-of-kunark" +} diff --git a/site/public/v1/games/everquest-ii-sentinel-s-fate/index.json b/site/public/v1/games/everquest-ii-sentinel-s-fate/index.json new file mode 100644 index 000000000000..12724589c05f --- /dev/null +++ b/site/public/v1/games/everquest-ii-sentinel-s-fate/index.json @@ -0,0 +1,33 @@ +{ + "id": 49076, + "slug": "everquest-ii-sentinel-s-fate", + "name": "EverQuest II: Sentinel's Fate", + "release_date": "2010-02-16", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "massively multiplayer online role-playing game" + ], + "stores": [], + "developers": [ + "Daybreak Game Company" + ], + "publishers": [ + "Daybreak Game Company" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5416828" + ], + "created_at": "2026-07-10T10:10:12.002423", + "updated_at": "2026-07-10T10:10:12.002423", + "url": "/v1/games/everquest-ii-sentinel-s-fate" +} diff --git a/site/public/v1/games/everquest-ii-tears-of-veeshan/index.json b/site/public/v1/games/everquest-ii-tears-of-veeshan/index.json new file mode 100644 index 000000000000..1972f4938937 --- /dev/null +++ b/site/public/v1/games/everquest-ii-tears-of-veeshan/index.json @@ -0,0 +1,33 @@ +{ + "id": 49077, + "slug": "everquest-ii-tears-of-veeshan", + "name": "EverQuest II: Tears of Veeshan", + "release_date": "2013-11-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "massively multiplayer online role-playing game" + ], + "stores": [], + "developers": [ + "Daybreak Game Company" + ], + "publishers": [ + "Daybreak Game Company" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16259494" + ], + "created_at": "2026-07-10T10:10:12.002423", + "updated_at": "2026-07-10T10:10:12.002423", + "url": "/v1/games/everquest-ii-tears-of-veeshan" +} diff --git a/site/public/v1/games/everquest-ii-the-shadow-odyssey/index.json b/site/public/v1/games/everquest-ii-the-shadow-odyssey/index.json new file mode 100644 index 000000000000..56101542f3ed --- /dev/null +++ b/site/public/v1/games/everquest-ii-the-shadow-odyssey/index.json @@ -0,0 +1,33 @@ +{ + "id": 49078, + "slug": "everquest-ii-the-shadow-odyssey", + "name": "EverQuest II: The Shadow Odyssey", + "release_date": "2008-11-17", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "massively multiplayer online role-playing game" + ], + "stores": [], + "developers": [ + "Daybreak Game Company" + ], + "publishers": [ + "Daybreak Game Company" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5416829" + ], + "created_at": "2026-07-10T10:10:12.003422", + "updated_at": "2026-07-10T10:10:12.003422", + "url": "/v1/games/everquest-ii-the-shadow-odyssey" +} diff --git a/site/public/v1/games/everquest-lost-dungeons-of-norrath/index.json b/site/public/v1/games/everquest-lost-dungeons-of-norrath/index.json new file mode 100644 index 000000000000..644af601e3f4 --- /dev/null +++ b/site/public/v1/games/everquest-lost-dungeons-of-norrath/index.json @@ -0,0 +1,33 @@ +{ + "id": 49080, + "slug": "everquest-lost-dungeons-of-norrath", + "name": "EverQuest: Lost Dungeons of Norrath", + "release_date": "2003-09-09", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "personal computer" + ], + "genres": [ + "massively multiplayer online role-playing game" + ], + "stores": [], + "developers": [ + "Daybreak Game Company" + ], + "publishers": [ + "Daybreak Game Company" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16259503" + ], + "created_at": "2026-07-10T10:10:12.003422", + "updated_at": "2026-07-10T10:10:12.003422", + "url": "/v1/games/everquest-lost-dungeons-of-norrath" +} diff --git a/site/public/v1/games/everquest-omens-of-war/index.json b/site/public/v1/games/everquest-omens-of-war/index.json new file mode 100644 index 000000000000..a0ec13f2f44c --- /dev/null +++ b/site/public/v1/games/everquest-omens-of-war/index.json @@ -0,0 +1,33 @@ +{ + "id": 49082, + "slug": "everquest-omens-of-war", + "name": "EverQuest: Omens of War", + "release_date": "2004-09-14", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "massively multiplayer online role-playing game" + ], + "stores": [], + "developers": [ + "Daybreak Game Company" + ], + "publishers": [ + "Daybreak Game Company" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5416810" + ], + "created_at": "2026-07-10T10:10:12.003422", + "updated_at": "2026-07-10T10:10:12.003422", + "url": "/v1/games/everquest-omens-of-war" +} diff --git a/site/public/v1/games/everquest-prophecy-of-ro/index.json b/site/public/v1/games/everquest-prophecy-of-ro/index.json new file mode 100644 index 000000000000..eb6e2450a1b7 --- /dev/null +++ b/site/public/v1/games/everquest-prophecy-of-ro/index.json @@ -0,0 +1,33 @@ +{ + "id": 49084, + "slug": "everquest-prophecy-of-ro", + "name": "EverQuest: Prophecy of Ro", + "release_date": "2006-02-21", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "massively multiplayer online role-playing game" + ], + "stores": [], + "developers": [ + "Daybreak Game Company" + ], + "publishers": [ + "Daybreak Game Company" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5416811" + ], + "created_at": "2026-07-10T10:10:12.004705", + "updated_at": "2026-07-10T10:10:12.004705", + "url": "/v1/games/everquest-prophecy-of-ro" +} diff --git a/site/public/v1/games/everquest-rain-of-fear/index.json b/site/public/v1/games/everquest-rain-of-fear/index.json new file mode 100644 index 000000000000..bda7b9885d21 --- /dev/null +++ b/site/public/v1/games/everquest-rain-of-fear/index.json @@ -0,0 +1,33 @@ +{ + "id": 49085, + "slug": "everquest-rain-of-fear", + "name": "EverQuest: Rain of Fear", + "release_date": "2012-11-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "massively multiplayer online role-playing game" + ], + "stores": [], + "developers": [ + "Daybreak Game Company" + ], + "publishers": [ + "Daybreak Game Company" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5416812" + ], + "created_at": "2026-07-10T10:10:12.004705", + "updated_at": "2026-07-10T10:10:12.004705", + "url": "/v1/games/everquest-rain-of-fear" +} diff --git a/site/public/v1/games/everquest-secrets-of-faydwer/index.json b/site/public/v1/games/everquest-secrets-of-faydwer/index.json new file mode 100644 index 000000000000..f9add1219bd4 --- /dev/null +++ b/site/public/v1/games/everquest-secrets-of-faydwer/index.json @@ -0,0 +1,33 @@ +{ + "id": 49086, + "slug": "everquest-secrets-of-faydwer", + "name": "EverQuest: Secrets of Faydwer", + "release_date": "2007-11-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "massively multiplayer online role-playing game" + ], + "stores": [], + "developers": [ + "Daybreak Game Company" + ], + "publishers": [ + "Daybreak Game Company" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5416814" + ], + "created_at": "2026-07-10T10:10:12.004705", + "updated_at": "2026-07-10T10:10:12.004705", + "url": "/v1/games/everquest-secrets-of-faydwer" +} diff --git a/site/public/v1/games/everquest-seeds-of-destruction/index.json b/site/public/v1/games/everquest-seeds-of-destruction/index.json new file mode 100644 index 000000000000..c6557b2d1238 --- /dev/null +++ b/site/public/v1/games/everquest-seeds-of-destruction/index.json @@ -0,0 +1,33 @@ +{ + "id": 49087, + "slug": "everquest-seeds-of-destruction", + "name": "EverQuest: Seeds of Destruction", + "release_date": "2008-10-21", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "massively multiplayer online role-playing game" + ], + "stores": [], + "developers": [ + "Daybreak Game Company" + ], + "publishers": [ + "Daybreak Game Company" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5416815" + ], + "created_at": "2026-07-10T10:10:12.004705", + "updated_at": "2026-07-10T10:10:12.004705", + "url": "/v1/games/everquest-seeds-of-destruction" +} diff --git a/site/public/v1/games/everquest-the-buried-sea/index.json b/site/public/v1/games/everquest-the-buried-sea/index.json new file mode 100644 index 000000000000..fb04f30dfeb2 --- /dev/null +++ b/site/public/v1/games/everquest-the-buried-sea/index.json @@ -0,0 +1,33 @@ +{ + "id": 49089, + "slug": "everquest-the-buried-sea", + "name": "EverQuest: The Buried Sea", + "release_date": "2007-02-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "massively multiplayer online role-playing game" + ], + "stores": [], + "developers": [ + "Daybreak Game Company" + ], + "publishers": [ + "Daybreak Game Company" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16259507" + ], + "created_at": "2026-07-10T10:10:12.005718", + "updated_at": "2026-07-10T10:10:12.005718", + "url": "/v1/games/everquest-the-buried-sea" +} diff --git a/site/public/v1/games/everquest-the-legacy-of-ykesha/index.json b/site/public/v1/games/everquest-the-legacy-of-ykesha/index.json new file mode 100644 index 000000000000..1c9a46a11df4 --- /dev/null +++ b/site/public/v1/games/everquest-the-legacy-of-ykesha/index.json @@ -0,0 +1,33 @@ +{ + "id": 49091, + "slug": "everquest-the-legacy-of-ykesha", + "name": "EverQuest: The Legacy of Ykesha", + "release_date": "2003-02-25", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "personal computer" + ], + "genres": [ + "massively multiplayer online role-playing game" + ], + "stores": [], + "developers": [ + "Daybreak Game Company" + ], + "publishers": [ + "Daybreak Game Company" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16259512" + ], + "created_at": "2026-07-10T10:10:12.005718", + "updated_at": "2026-07-10T10:10:12.005718", + "url": "/v1/games/everquest-the-legacy-of-ykesha" +} diff --git a/site/public/v1/games/everquest-the-ruins-of-kunark/index.json b/site/public/v1/games/everquest-the-ruins-of-kunark/index.json new file mode 100644 index 000000000000..8f5765326b7a --- /dev/null +++ b/site/public/v1/games/everquest-the-ruins-of-kunark/index.json @@ -0,0 +1,33 @@ +{ + "id": 49093, + "slug": "everquest-the-ruins-of-kunark", + "name": "EverQuest: The Ruins of Kunark", + "release_date": "2000-04-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "personal computer" + ], + "genres": [ + "massively multiplayer online role-playing game" + ], + "stores": [], + "developers": [ + "Daybreak Game Company" + ], + "publishers": [ + "Daybreak Game Company" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16259515" + ], + "created_at": "2026-07-10T10:10:12.006717", + "updated_at": "2026-07-10T10:10:12.006717", + "url": "/v1/games/everquest-the-ruins-of-kunark" +} diff --git a/site/public/v1/games/everquest-the-serpent-s-spine/index.json b/site/public/v1/games/everquest-the-serpent-s-spine/index.json new file mode 100644 index 000000000000..07c3c80ca649 --- /dev/null +++ b/site/public/v1/games/everquest-the-serpent-s-spine/index.json @@ -0,0 +1,33 @@ +{ + "id": 49095, + "slug": "everquest-the-serpent-s-spine", + "name": "EverQuest: The Serpent's Spine", + "release_date": "2006-09-19", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "massively multiplayer online role-playing game" + ], + "stores": [], + "developers": [ + "Daybreak Game Company" + ], + "publishers": [ + "Daybreak Game Company" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5416817" + ], + "created_at": "2026-07-10T10:10:12.006717", + "updated_at": "2026-07-10T10:10:12.006717", + "url": "/v1/games/everquest-the-serpent-s-spine" +} diff --git a/site/public/v1/games/everquest-the-shadows-of-luclin/index.json b/site/public/v1/games/everquest-the-shadows-of-luclin/index.json new file mode 100644 index 000000000000..25138b9ba731 --- /dev/null +++ b/site/public/v1/games/everquest-the-shadows-of-luclin/index.json @@ -0,0 +1,33 @@ +{ + "id": 49096, + "slug": "everquest-the-shadows-of-luclin", + "name": "EverQuest: The Shadows of Luclin", + "release_date": "2001-12-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "personal computer" + ], + "genres": [ + "massively multiplayer online role-playing game" + ], + "stores": [], + "developers": [ + "Daybreak Game Company" + ], + "publishers": [ + "Daybreak Game Company" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16259213" + ], + "created_at": "2026-07-10T10:10:12.006717", + "updated_at": "2026-07-10T10:10:12.006717", + "url": "/v1/games/everquest-the-shadows-of-luclin" +} diff --git a/site/public/v1/games/everquest-underfoot/index.json b/site/public/v1/games/everquest-underfoot/index.json new file mode 100644 index 000000000000..2068ca670cff --- /dev/null +++ b/site/public/v1/games/everquest-underfoot/index.json @@ -0,0 +1,33 @@ +{ + "id": 49097, + "slug": "everquest-underfoot", + "name": "EverQuest: Underfoot", + "release_date": "2009-12-15", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "massively multiplayer online role-playing game" + ], + "stores": [], + "developers": [ + "Daybreak Game Company" + ], + "publishers": [ + "Daybreak Game Company" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5416820" + ], + "created_at": "2026-07-10T10:10:12.007719", + "updated_at": "2026-07-10T10:10:12.007719", + "url": "/v1/games/everquest-underfoot" +} diff --git a/site/public/v1/games/everquest-veil-of-alaris/index.json b/site/public/v1/games/everquest-veil-of-alaris/index.json new file mode 100644 index 000000000000..cc3522f7fc9f --- /dev/null +++ b/site/public/v1/games/everquest-veil-of-alaris/index.json @@ -0,0 +1,33 @@ +{ + "id": 49098, + "slug": "everquest-veil-of-alaris", + "name": "EverQuest: Veil of Alaris", + "release_date": "2011-11-15", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "massively multiplayer online role-playing game" + ], + "stores": [], + "developers": [ + "Daybreak Game Company" + ], + "publishers": [ + "Daybreak Game Company" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5416822" + ], + "created_at": "2026-07-10T10:10:12.007719", + "updated_at": "2026-07-10T10:10:12.007719", + "url": "/v1/games/everquest-veil-of-alaris" +} diff --git a/site/public/v1/games/everspace-encounters/index.json b/site/public/v1/games/everspace-encounters/index.json new file mode 100644 index 000000000000..6f1d628a0427 --- /dev/null +++ b/site/public/v1/games/everspace-encounters/index.json @@ -0,0 +1,35 @@ +{ + "id": 49112, + "slug": "everspace-encounters", + "name": "Everspace: Encounters", + "release_date": "2017-10-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "space combat simulation game", + "roguelite" + ], + "stores": [], + "developers": [ + "ROCKFISH Games" + ], + "publishers": [ + "ROCKFISH Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136036309" + ], + "created_at": "2026-07-10T10:10:12.010845", + "updated_at": "2026-07-10T10:10:12.010845", + "url": "/v1/games/everspace-encounters" +} diff --git a/site/public/v1/games/everwild/index.json b/site/public/v1/games/everwild/index.json new file mode 100644 index 000000000000..1d66fa959c79 --- /dev/null +++ b/site/public/v1/games/everwild/index.json @@ -0,0 +1,34 @@ +{ + "id": 49126, + "slug": "everwild", + "name": "Everwild", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S", + "Microsoft Windows" + ], + "genres": [ + "action-adventure game" + ], + "stores": [], + "developers": [ + "Rare Ltd." + ], + "publishers": [ + "Xbox Game Studios" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q79420097" + ], + "created_at": "2026-07-10T10:10:12.014788", + "updated_at": "2026-07-10T10:10:12.014788", + "url": "/v1/games/everwild" +} diff --git a/site/public/v1/games/everything-is-connected/index.json b/site/public/v1/games/everything-is-connected/index.json new file mode 100644 index 000000000000..53bbaf835a9e --- /dev/null +++ b/site/public/v1/games/everything-is-connected/index.json @@ -0,0 +1,28 @@ +{ + "id": 49185, + "slug": "everything-is-connected", + "name": "Everything Is Connected", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "puzzle video game", + "wikigames" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63379592" + ], + "created_at": "2026-07-10T10:10:12.029405", + "updated_at": "2026-07-10T10:10:12.029405", + "url": "/v1/games/everything-is-connected" +} diff --git a/site/public/v1/games/evil-dead-the-game-deluxe-edition/index.json b/site/public/v1/games/evil-dead-the-game-deluxe-edition/index.json new file mode 100644 index 000000000000..a21886d6f880 --- /dev/null +++ b/site/public/v1/games/evil-dead-the-game-deluxe-edition/index.json @@ -0,0 +1,32 @@ +{ + "id": 49221, + "slug": "evil-dead-the-game-deluxe-edition", + "name": "Evil Dead: The Game - Deluxe Edition", + "release_date": "2022-05-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S" + ], + "genres": [], + "stores": [], + "developers": [ + "Saber Interactive" + ], + "publishers": [ + "Boss Team Games", + "Saber Interactive" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112158336" + ], + "created_at": "2026-07-10T10:10:12.039305", + "updated_at": "2026-07-10T10:10:12.039305", + "url": "/v1/games/evil-dead-the-game-deluxe-edition" +} diff --git a/site/public/v1/games/evil-dead-the-game-game-of-the-year-edition/index.json b/site/public/v1/games/evil-dead-the-game-game-of-the-year-edition/index.json new file mode 100644 index 000000000000..6290b25ea1be --- /dev/null +++ b/site/public/v1/games/evil-dead-the-game-game-of-the-year-edition/index.json @@ -0,0 +1,32 @@ +{ + "id": 49222, + "slug": "evil-dead-the-game-game-of-the-year-edition", + "name": "Evil Dead: The Game - Game of the Year Edition", + "release_date": "2023-04-26", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S" + ], + "genres": [], + "stores": [], + "developers": [ + "Saber Interactive" + ], + "publishers": [ + "Boss Team Games", + "Saber Interactive" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123221077" + ], + "created_at": "2026-07-10T10:10:12.039305", + "updated_at": "2026-07-10T10:10:12.039305", + "url": "/v1/games/evil-dead-the-game-game-of-the-year-edition" +} diff --git a/site/public/v1/games/evolve-founder/index.json b/site/public/v1/games/evolve-founder/index.json new file mode 100644 index 000000000000..bbaf83436be6 --- /dev/null +++ b/site/public/v1/games/evolve-founder/index.json @@ -0,0 +1,32 @@ +{ + "id": 49368, + "slug": "evolve-founder", + "name": "Evolve Founder", + "release_date": "2021-04-06", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "science fiction video game" + ], + "stores": [], + "developers": [], + "publishers": [ + "2K" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124635479" + ], + "created_at": "2026-07-10T10:10:12.077797", + "updated_at": "2026-07-10T10:10:12.077797", + "url": "/v1/games/evolve-founder" +} diff --git a/site/public/v1/games/evolve-hunters-quest/index.json b/site/public/v1/games/evolve-hunters-quest/index.json new file mode 100644 index 000000000000..6bf0206e204e --- /dev/null +++ b/site/public/v1/games/evolve-hunters-quest/index.json @@ -0,0 +1,25 @@ +{ + "id": 49369, + "slug": "evolve-hunters-quest", + "name": "Evolve: Hunters Quest", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140471128" + ], + "created_at": "2026-07-10T10:10:12.078777", + "updated_at": "2026-07-10T10:10:12.078777", + "url": "/v1/games/evolve-hunters-quest" +} diff --git a/site/public/v1/games/evolve-hunting-season-2/index.json b/site/public/v1/games/evolve-hunting-season-2/index.json new file mode 100644 index 000000000000..8a32df93e5ee --- /dev/null +++ b/site/public/v1/games/evolve-hunting-season-2/index.json @@ -0,0 +1,32 @@ +{ + "id": 49370, + "slug": "evolve-hunting-season-2", + "name": "Evolve Hunting Season 2", + "release_date": "2015-06-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "science fiction video game" + ], + "stores": [], + "developers": [], + "publishers": [ + "2K" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124637419" + ], + "created_at": "2026-07-10T10:10:12.078777", + "updated_at": "2026-07-10T10:10:12.078777", + "url": "/v1/games/evolve-hunting-season-2" +} diff --git a/site/public/v1/games/evolve-stage-2/index.json b/site/public/v1/games/evolve-stage-2/index.json new file mode 100644 index 000000000000..f8ab292bcf31 --- /dev/null +++ b/site/public/v1/games/evolve-stage-2/index.json @@ -0,0 +1,32 @@ +{ + "id": 49373, + "slug": "evolve-stage-2", + "name": "Evolve Stage 2", + "release_date": "2016-07-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "science fiction video game" + ], + "stores": [], + "developers": [], + "publishers": [ + "2K" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124642176" + ], + "created_at": "2026-07-10T10:10:12.079767", + "updated_at": "2026-07-10T10:10:12.079767", + "url": "/v1/games/evolve-stage-2" +} diff --git a/site/public/v1/games/explorer-q11289806/index.json b/site/public/v1/games/explorer-q11289806/index.json new file mode 100644 index 000000000000..53c06738eb3f --- /dev/null +++ b/site/public/v1/games/explorer-q11289806/index.json @@ -0,0 +1,25 @@ +{ + "id": 49772, + "slug": "explorer-q11289806", + "name": "Explorer", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11289806" + ], + "created_at": "2026-07-10T10:10:12.196377", + "updated_at": "2026-07-10T10:10:12.196377", + "url": "/v1/games/explorer-q11289806" +} diff --git a/site/public/v1/games/explosive-combat-pack/index.json b/site/public/v1/games/explosive-combat-pack/index.json new file mode 100644 index 000000000000..d4bcc8c98979 --- /dev/null +++ b/site/public/v1/games/explosive-combat-pack/index.json @@ -0,0 +1,27 @@ +{ + "id": 49786, + "slug": "explosive-combat-pack", + "name": "Explosive Combat Pack", + "release_date": "2011-12-09", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60586784" + ], + "created_at": "2026-07-10T10:10:12.200444", + "updated_at": "2026-07-10T10:10:12.200444", + "url": "/v1/games/explosive-combat-pack" +} diff --git a/site/public/v1/games/exponential-idle/index.json b/site/public/v1/games/exponential-idle/index.json new file mode 100644 index 000000000000..feae549f2b50 --- /dev/null +++ b/site/public/v1/games/exponential-idle/index.json @@ -0,0 +1,29 @@ +{ + "id": 49798, + "slug": "exponential-idle", + "name": "Exponential Idle", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "iOS" + ], + "genres": [ + "incremental game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113501446" + ], + "created_at": "2026-07-10T10:10:12.203443", + "updated_at": "2026-07-10T10:10:12.203443", + "url": "/v1/games/exponential-idle" +} diff --git a/site/public/v1/games/ezquake/index.json b/site/public/v1/games/ezquake/index.json new file mode 100644 index 000000000000..4142046fc78b --- /dev/null +++ b/site/public/v1/games/ezquake/index.json @@ -0,0 +1,25 @@ +{ + "id": 50055, + "slug": "ezquake", + "name": "ezQuake", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116688195" + ], + "created_at": "2026-07-10T10:10:12.273382", + "updated_at": "2026-07-10T10:10:12.273382", + "url": "/v1/games/ezquake" +} diff --git a/site/public/v1/games/f-15c-aggressors-bfm-campaign/index.json b/site/public/v1/games/f-15c-aggressors-bfm-campaign/index.json new file mode 100644 index 000000000000..0b4aabe98517 --- /dev/null +++ b/site/public/v1/games/f-15c-aggressors-bfm-campaign/index.json @@ -0,0 +1,29 @@ +{ + "id": 50081, + "slug": "f-15c-aggressors-bfm-campaign", + "name": "F-15C: Aggressors BFM Campaign", + "release_date": "2018-08-22", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Eagle Dynamics" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097572" + ], + "created_at": "2026-07-10T10:10:12.279385", + "updated_at": "2026-07-10T10:10:12.279385", + "url": "/v1/games/f-15c-aggressors-bfm-campaign" +} diff --git a/site/public/v1/games/f-15c-for-dcs-world/index.json b/site/public/v1/games/f-15c-for-dcs-world/index.json new file mode 100644 index 000000000000..43fd8975e465 --- /dev/null +++ b/site/public/v1/games/f-15c-for-dcs-world/index.json @@ -0,0 +1,31 @@ +{ + "id": 50082, + "slug": "f-15c-for-dcs-world", + "name": "F-15C for DCS World", + "release_date": "2014-04-30", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Eagle Dynamics" + ], + "publishers": [ + "Eagle Dynamics" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097370" + ], + "created_at": "2026-07-10T10:10:12.279385", + "updated_at": "2026-07-10T10:10:12.279385", + "url": "/v1/games/f-15c-for-dcs-world" +} diff --git a/site/public/v1/games/f-15c-red-flag-campaign/index.json b/site/public/v1/games/f-15c-red-flag-campaign/index.json new file mode 100644 index 000000000000..708c06e6b81e --- /dev/null +++ b/site/public/v1/games/f-15c-red-flag-campaign/index.json @@ -0,0 +1,31 @@ +{ + "id": 50083, + "slug": "f-15c-red-flag-campaign", + "name": "F-15C: Red Flag Campaign", + "release_date": "2017-08-30", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Eagle Dynamics" + ], + "publishers": [ + "Eagle Dynamics" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097419" + ], + "created_at": "2026-07-10T10:10:12.279385", + "updated_at": "2026-07-10T10:10:12.279385", + "url": "/v1/games/f-15c-red-flag-campaign" +} diff --git a/site/public/v1/games/f-15c-the-georgian-war-campaign/index.json b/site/public/v1/games/f-15c-the-georgian-war-campaign/index.json new file mode 100644 index 000000000000..acb794216e4a --- /dev/null +++ b/site/public/v1/games/f-15c-the-georgian-war-campaign/index.json @@ -0,0 +1,29 @@ +{ + "id": 50084, + "slug": "f-15c-the-georgian-war-campaign", + "name": "F-15C: The Georgian War Campaign", + "release_date": "2018-01-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Eagle Dynamics" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097562" + ], + "created_at": "2026-07-10T10:10:12.279385", + "updated_at": "2026-07-10T10:10:12.279385", + "url": "/v1/games/f-15c-the-georgian-war-campaign" +} diff --git a/site/public/v1/games/f-5e-aggressors-air-combat-maneuver-campaign/index.json b/site/public/v1/games/f-5e-aggressors-air-combat-maneuver-campaign/index.json new file mode 100644 index 000000000000..a702a22d1c9c --- /dev/null +++ b/site/public/v1/games/f-5e-aggressors-air-combat-maneuver-campaign/index.json @@ -0,0 +1,29 @@ +{ + "id": 50097, + "slug": "f-5e-aggressors-air-combat-maneuver-campaign", + "name": "F-5E: Aggressors Air Combat Maneuver Campaign", + "release_date": "2017-10-06", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Eagle Dynamics" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097558" + ], + "created_at": "2026-07-10T10:10:12.283381", + "updated_at": "2026-07-10T10:10:12.283381", + "url": "/v1/games/f-5e-aggressors-air-combat-maneuver-campaign" +} diff --git a/site/public/v1/games/f-5e-aggressors-basic-fighter-maneuvers-campaign/index.json b/site/public/v1/games/f-5e-aggressors-basic-fighter-maneuvers-campaign/index.json new file mode 100644 index 000000000000..2ee593c29915 --- /dev/null +++ b/site/public/v1/games/f-5e-aggressors-basic-fighter-maneuvers-campaign/index.json @@ -0,0 +1,29 @@ +{ + "id": 50098, + "slug": "f-5e-aggressors-basic-fighter-maneuvers-campaign", + "name": "F-5E: Aggressors Basic Fighter Maneuvers Campaign", + "release_date": "2017-09-08", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Eagle Dynamics" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097551" + ], + "created_at": "2026-07-10T10:10:12.283381", + "updated_at": "2026-07-10T10:10:12.283381", + "url": "/v1/games/f-5e-aggressors-basic-fighter-maneuvers-campaign" +} diff --git a/site/public/v1/games/f-a-18c-aggressors-bfm-campaign/index.json b/site/public/v1/games/f-a-18c-aggressors-bfm-campaign/index.json new file mode 100644 index 000000000000..d0bb3a4ad408 --- /dev/null +++ b/site/public/v1/games/f-a-18c-aggressors-bfm-campaign/index.json @@ -0,0 +1,29 @@ +{ + "id": 50102, + "slug": "f-a-18c-aggressors-bfm-campaign", + "name": "F/A-18C: Aggressors BFM Campaign", + "release_date": "2019-11-20", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Eagle Dynamics" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097584" + ], + "created_at": "2026-07-10T10:10:12.284387", + "updated_at": "2026-07-10T10:10:12.284387", + "url": "/v1/games/f-a-18c-aggressors-bfm-campaign" +} diff --git a/site/public/v1/games/f-e-a-r-2-reborn/index.json b/site/public/v1/games/f-e-a-r-2-reborn/index.json new file mode 100644 index 000000000000..38db31ccb457 --- /dev/null +++ b/site/public/v1/games/f-e-a-r-2-reborn/index.json @@ -0,0 +1,35 @@ +{ + "id": 50112, + "slug": "f-e-a-r-2-reborn", + "name": "F.E.A.R. 2: Reborn", + "release_date": "2009-09-03", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 3", + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "psychological horror fiction" + ], + "stores": [], + "developers": [ + "Monolith Productions" + ], + "publishers": [ + "Warner Bros. Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4038490" + ], + "created_at": "2026-07-10T10:10:12.287357", + "updated_at": "2026-07-10T10:10:12.287357", + "url": "/v1/games/f-e-a-r-2-reborn" +} diff --git a/site/public/v1/games/f-e-a-r-extraction-point/index.json b/site/public/v1/games/f-e-a-r-extraction-point/index.json new file mode 100644 index 000000000000..35a6ffbfd43a --- /dev/null +++ b/site/public/v1/games/f-e-a-r-extraction-point/index.json @@ -0,0 +1,34 @@ +{ + "id": 50115, + "slug": "f-e-a-r-extraction-point", + "name": "F.E.A.R. Extraction Point", + "release_date": "2006-10-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "psychological horror fiction" + ], + "stores": [], + "developers": [ + "TimeGate Studios" + ], + "publishers": [ + "Vivendi" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q775655" + ], + "created_at": "2026-07-10T10:10:12.287357", + "updated_at": "2026-07-10T10:10:12.287357", + "url": "/v1/games/f-e-a-r-extraction-point" +} diff --git a/site/public/v1/games/f-e-a-r-files/index.json b/site/public/v1/games/f-e-a-r-files/index.json new file mode 100644 index 000000000000..edd91da9b41b --- /dev/null +++ b/site/public/v1/games/f-e-a-r-files/index.json @@ -0,0 +1,29 @@ +{ + "id": 50116, + "slug": "f-e-a-r-files", + "name": "F.E.A.R. Files", + "release_date": "2007-11-06", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "psychological horror fiction" + ], + "stores": [], + "developers": [], + "publishers": [ + "Sierra Entertainment" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4038491" + ], + "created_at": "2026-07-10T10:10:12.288372", + "updated_at": "2026-07-10T10:10:12.288372", + "url": "/v1/games/f-e-a-r-files" +} diff --git a/site/public/v1/games/f-e-a-r-perseus-mandate/index.json b/site/public/v1/games/f-e-a-r-perseus-mandate/index.json new file mode 100644 index 000000000000..a1e6e724be10 --- /dev/null +++ b/site/public/v1/games/f-e-a-r-perseus-mandate/index.json @@ -0,0 +1,34 @@ +{ + "id": 50118, + "slug": "f-e-a-r-perseus-mandate", + "name": "F.E.A.R. Perseus Mandate", + "release_date": "2007-11-06", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "psychological horror fiction" + ], + "stores": [], + "developers": [ + "TimeGate Studios" + ], + "publishers": [ + "Sierra Entertainment" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2569879" + ], + "created_at": "2026-07-10T10:10:12.288372", + "updated_at": "2026-07-10T10:10:12.288372", + "url": "/v1/games/f-e-a-r-perseus-mandate" +} diff --git a/site/public/v1/games/f-zero-q61598553/index.json b/site/public/v1/games/f-zero-q61598553/index.json new file mode 100644 index 000000000000..19a09dc8b46e --- /dev/null +++ b/site/public/v1/games/f-zero-q61598553/index.json @@ -0,0 +1,29 @@ +{ + "id": 50145, + "slug": "f-zero-q61598553", + "name": "F - ZERO", + "release_date": "1990-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Super Nintendo Entertainment System" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Nintendo" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q61598553" + ], + "created_at": "2026-07-10T10:10:12.295375", + "updated_at": "2026-07-10T10:10:12.295375", + "url": "/v1/games/f-zero-q61598553" +} diff --git a/site/public/v1/games/f1-game-franchise-bundle/index.json b/site/public/v1/games/f1-game-franchise-bundle/index.json new file mode 100644 index 000000000000..0c6ff26ff471 --- /dev/null +++ b/site/public/v1/games/f1-game-franchise-bundle/index.json @@ -0,0 +1,29 @@ +{ + "id": 50176, + "slug": "f1-game-franchise-bundle", + "name": "F1 Game Franchise Bundle", + "release_date": "2016-06-10", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "racing video game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q104665565" + ], + "created_at": "2026-07-10T10:10:12.301397", + "updated_at": "2026-07-10T10:10:12.301397", + "url": "/v1/games/f1-game-franchise-bundle" +} diff --git a/site/public/v1/games/factorio-space-age/index.json b/site/public/v1/games/factorio-space-age/index.json new file mode 100644 index 000000000000..ed3ae2db4ce5 --- /dev/null +++ b/site/public/v1/games/factorio-space-age/index.json @@ -0,0 +1,25 @@ +{ + "id": 50313, + "slug": "factorio-space-age", + "name": "Factorio: Space Age", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140462911" + ], + "created_at": "2026-07-10T10:10:12.335123", + "updated_at": "2026-07-10T10:10:12.335123", + "url": "/v1/games/factorio-space-age" +} diff --git a/site/public/v1/games/falcon-collection/index.json b/site/public/v1/games/falcon-collection/index.json new file mode 100644 index 000000000000..2d8bc3c96bdd --- /dev/null +++ b/site/public/v1/games/falcon-collection/index.json @@ -0,0 +1,25 @@ +{ + "id": 50571, + "slug": "falcon-collection", + "name": "Falcon: Collection", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125997367" + ], + "created_at": "2026-07-10T10:10:12.403152", + "updated_at": "2026-07-10T10:10:12.403152", + "url": "/v1/games/falcon-collection" +} diff --git a/site/public/v1/games/falcon-gold/index.json b/site/public/v1/games/falcon-gold/index.json new file mode 100644 index 000000000000..2e839e7c4c19 --- /dev/null +++ b/site/public/v1/games/falcon-gold/index.json @@ -0,0 +1,30 @@ +{ + "id": 50572, + "slug": "falcon-gold", + "name": "Falcon Gold", + "release_date": "1994-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game", + "vehicular combat game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125997393" + ], + "created_at": "2026-07-10T10:10:12.403152", + "updated_at": "2026-07-10T10:10:12.403152", + "url": "/v1/games/falcon-gold" +} diff --git a/site/public/v1/games/fallen-age/index.json b/site/public/v1/games/fallen-age/index.json new file mode 100644 index 000000000000..405cb1c9b1f7 --- /dev/null +++ b/site/public/v1/games/fallen-age/index.json @@ -0,0 +1,27 @@ +{ + "id": 50638, + "slug": "fallen-age", + "name": "Fallen Age", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113108990" + ], + "created_at": "2026-07-10T10:10:12.421214", + "updated_at": "2026-07-10T10:10:12.421214", + "url": "/v1/games/fallen-age" +} diff --git a/site/public/v1/games/fallen-knights/index.json b/site/public/v1/games/fallen-knights/index.json new file mode 100644 index 000000000000..c24f3a33a71b --- /dev/null +++ b/site/public/v1/games/fallen-knights/index.json @@ -0,0 +1,34 @@ +{ + "id": 50684, + "slug": "fallen-knights", + "name": "Fallen Knights", + "release_date": "2019-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation Vita" + ], + "genres": [ + "dark fantasy video game", + "soulslike" + ], + "stores": [], + "developers": [ + "VitaHEX games" + ], + "publishers": [ + "VitaHEX games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127225317" + ], + "created_at": "2026-07-10T10:10:12.432865", + "updated_at": "2026-07-10T10:10:12.432865", + "url": "/v1/games/fallen-knights" +} diff --git a/site/public/v1/games/fallen-lights-demo/index.json b/site/public/v1/games/fallen-lights-demo/index.json new file mode 100644 index 000000000000..03faf7e38f11 --- /dev/null +++ b/site/public/v1/games/fallen-lights-demo/index.json @@ -0,0 +1,25 @@ +{ + "id": 50691, + "slug": "fallen-lights-demo", + "name": "Fallen Lights DEMO", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131619548" + ], + "created_at": "2026-07-10T10:10:12.434849", + "updated_at": "2026-07-10T10:10:12.434849", + "url": "/v1/games/fallen-lights-demo" +} diff --git a/site/public/v1/games/fallout-1-5-resurrection/index.json b/site/public/v1/games/fallout-1-5-resurrection/index.json new file mode 100644 index 000000000000..c33477260bb8 --- /dev/null +++ b/site/public/v1/games/fallout-1-5-resurrection/index.json @@ -0,0 +1,27 @@ +{ + "id": 50768, + "slug": "fallout-1-5-resurrection", + "name": "Fallout 1.5: Resurrection", + "release_date": "2013-10-03", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q15089300" + ], + "created_at": "2026-07-10T10:10:12.455905", + "updated_at": "2026-07-10T10:10:12.455905", + "url": "/v1/games/fallout-1-5-resurrection" +} diff --git a/site/public/v1/games/fallout-3-broken-steel/index.json b/site/public/v1/games/fallout-3-broken-steel/index.json new file mode 100644 index 000000000000..8ce9c87b3c3b --- /dev/null +++ b/site/public/v1/games/fallout-3-broken-steel/index.json @@ -0,0 +1,34 @@ +{ + "id": 50771, + "slug": "fallout-3-broken-steel", + "name": "Fallout 3: Broken Steel", + "release_date": "2009-05-05", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 3", + "Microsoft Windows" + ], + "genres": [ + "action role-playing game" + ], + "stores": [], + "developers": [ + "Bethesda Game Studios" + ], + "publishers": [ + "Bethesda Softworks" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110713735" + ], + "created_at": "2026-07-10T10:10:12.456967", + "updated_at": "2026-07-10T10:10:12.456967", + "url": "/v1/games/fallout-3-broken-steel" +} diff --git a/site/public/v1/games/fallout-3-game-of-the-year-edition/index.json b/site/public/v1/games/fallout-3-game-of-the-year-edition/index.json new file mode 100644 index 000000000000..e0474ca712db --- /dev/null +++ b/site/public/v1/games/fallout-3-game-of-the-year-edition/index.json @@ -0,0 +1,33 @@ +{ + "id": 50772, + "slug": "fallout-3-game-of-the-year-edition", + "name": "Fallout 3: Game Of The Year Edition", + "release_date": "2009-10-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "role-playing video game" + ], + "stores": [], + "developers": [ + "Bethesda Game Studios" + ], + "publishers": [ + "Bethesda Softworks" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108022844" + ], + "created_at": "2026-07-10T10:10:12.456967", + "updated_at": "2026-07-10T10:10:12.456967", + "url": "/v1/games/fallout-3-game-of-the-year-edition" +} diff --git a/site/public/v1/games/fallout-3-mothership-zeta/index.json b/site/public/v1/games/fallout-3-mothership-zeta/index.json new file mode 100644 index 000000000000..4aebf6ff1da6 --- /dev/null +++ b/site/public/v1/games/fallout-3-mothership-zeta/index.json @@ -0,0 +1,34 @@ +{ + "id": 50773, + "slug": "fallout-3-mothership-zeta", + "name": "Fallout 3: Mothership Zeta", + "release_date": "2009-08-03", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 3", + "Microsoft Windows" + ], + "genres": [ + "action role-playing game" + ], + "stores": [], + "developers": [ + "Bethesda Game Studios" + ], + "publishers": [ + "Bethesda Softworks" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110713870" + ], + "created_at": "2026-07-10T10:10:12.456967", + "updated_at": "2026-07-10T10:10:12.456967", + "url": "/v1/games/fallout-3-mothership-zeta" +} diff --git a/site/public/v1/games/fallout-3-operation-anchorage/index.json b/site/public/v1/games/fallout-3-operation-anchorage/index.json new file mode 100644 index 000000000000..3d76b59341ca --- /dev/null +++ b/site/public/v1/games/fallout-3-operation-anchorage/index.json @@ -0,0 +1,34 @@ +{ + "id": 50774, + "slug": "fallout-3-operation-anchorage", + "name": "Fallout 3: Operation Anchorage", + "release_date": "2009-01-27", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 3", + "Microsoft Windows" + ], + "genres": [ + "action role-playing game" + ], + "stores": [], + "developers": [ + "Bethesda Game Studios" + ], + "publishers": [ + "Bethesda Softworks" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110714005" + ], + "created_at": "2026-07-10T10:10:12.457964", + "updated_at": "2026-07-10T10:10:12.457964", + "url": "/v1/games/fallout-3-operation-anchorage" +} diff --git a/site/public/v1/games/fallout-3-remake/index.json b/site/public/v1/games/fallout-3-remake/index.json new file mode 100644 index 000000000000..9148d00c8cbf --- /dev/null +++ b/site/public/v1/games/fallout-3-remake/index.json @@ -0,0 +1,25 @@ +{ + "id": 50776, + "slug": "fallout-3-remake", + "name": "Fallout 3 Remake", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140018993" + ], + "created_at": "2026-07-10T10:10:12.457964", + "updated_at": "2026-07-10T10:10:12.457964", + "url": "/v1/games/fallout-3-remake" +} diff --git a/site/public/v1/games/fallout-3-the-pitt/index.json b/site/public/v1/games/fallout-3-the-pitt/index.json new file mode 100644 index 000000000000..e8ad5dd223a3 --- /dev/null +++ b/site/public/v1/games/fallout-3-the-pitt/index.json @@ -0,0 +1,25 @@ +{ + "id": 50777, + "slug": "fallout-3-the-pitt", + "name": "Fallout 3: The Pitt", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126870688" + ], + "created_at": "2026-07-10T10:10:12.458963", + "updated_at": "2026-07-10T10:10:12.458963", + "url": "/v1/games/fallout-3-the-pitt" +} diff --git a/site/public/v1/games/fallout-4-automatron/index.json b/site/public/v1/games/fallout-4-automatron/index.json new file mode 100644 index 000000000000..58b476e2aeca --- /dev/null +++ b/site/public/v1/games/fallout-4-automatron/index.json @@ -0,0 +1,34 @@ +{ + "id": 50779, + "slug": "fallout-4-automatron", + "name": "Fallout 4: Automatron", + "release_date": "2016-03-22", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "action role-playing game" + ], + "stores": [], + "developers": [ + "Bethesda Game Studios" + ], + "publishers": [ + "Bethesda Softworks" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q24807299" + ], + "created_at": "2026-07-10T10:10:12.458963", + "updated_at": "2026-07-10T10:10:12.458963", + "url": "/v1/games/fallout-4-automatron" +} diff --git a/site/public/v1/games/fallout-4-contraptions-workshop/index.json b/site/public/v1/games/fallout-4-contraptions-workshop/index.json new file mode 100644 index 000000000000..3cd48de054b6 --- /dev/null +++ b/site/public/v1/games/fallout-4-contraptions-workshop/index.json @@ -0,0 +1,25 @@ +{ + "id": 50780, + "slug": "fallout-4-contraptions-workshop", + "name": "Fallout 4: Contraptions Workshop", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q26658655" + ], + "created_at": "2026-07-10T10:10:12.458963", + "updated_at": "2026-07-10T10:10:12.458963", + "url": "/v1/games/fallout-4-contraptions-workshop" +} diff --git a/site/public/v1/games/fallout-4-far-harbor/index.json b/site/public/v1/games/fallout-4-far-harbor/index.json new file mode 100644 index 000000000000..891ee5a656b2 --- /dev/null +++ b/site/public/v1/games/fallout-4-far-harbor/index.json @@ -0,0 +1,34 @@ +{ + "id": 50781, + "slug": "fallout-4-far-harbor", + "name": "Fallout 4: Far Harbor", + "release_date": "2016-05-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "action role-playing game" + ], + "stores": [], + "developers": [ + "Bethesda Game Studios" + ], + "publishers": [ + "Bethesda Softworks" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q24807292" + ], + "created_at": "2026-07-10T10:10:12.458963", + "updated_at": "2026-07-10T10:10:12.458963", + "url": "/v1/games/fallout-4-far-harbor" +} diff --git a/site/public/v1/games/fallout-4-high-resolution-texture-pack/index.json b/site/public/v1/games/fallout-4-high-resolution-texture-pack/index.json new file mode 100644 index 000000000000..04b70d88d7c8 --- /dev/null +++ b/site/public/v1/games/fallout-4-high-resolution-texture-pack/index.json @@ -0,0 +1,27 @@ +{ + "id": 50782, + "slug": "fallout-4-high-resolution-texture-pack", + "name": "Fallout 4 - High Resolution Texture Pack", + "release_date": "2017-02-06", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130753459" + ], + "created_at": "2026-07-10T10:10:12.460017", + "updated_at": "2026-07-10T10:10:12.460017", + "url": "/v1/games/fallout-4-high-resolution-texture-pack" +} diff --git a/site/public/v1/games/fallout-4-nuka-world/index.json b/site/public/v1/games/fallout-4-nuka-world/index.json new file mode 100644 index 000000000000..79bf05420fe9 --- /dev/null +++ b/site/public/v1/games/fallout-4-nuka-world/index.json @@ -0,0 +1,36 @@ +{ + "id": 50783, + "slug": "fallout-4-nuka-world", + "name": "Fallout 4: Nuka-World", + "release_date": "2016-08-29", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 5", + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "action role-playing game" + ], + "stores": [], + "developers": [ + "Bethesda Game Studios" + ], + "publishers": [ + "Bethesda Softworks" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q26480005" + ], + "created_at": "2026-07-10T10:10:12.460017", + "updated_at": "2026-07-10T10:10:12.460017", + "url": "/v1/games/fallout-4-nuka-world" +} diff --git a/site/public/v1/games/fallout-4-vault-tec-workshop/index.json b/site/public/v1/games/fallout-4-vault-tec-workshop/index.json new file mode 100644 index 000000000000..d1f27e82f0f7 --- /dev/null +++ b/site/public/v1/games/fallout-4-vault-tec-workshop/index.json @@ -0,0 +1,25 @@ +{ + "id": 50784, + "slug": "fallout-4-vault-tec-workshop", + "name": "Fallout 4: Vault-Tec Workshop", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q26658739" + ], + "created_at": "2026-07-10T10:10:12.460017", + "updated_at": "2026-07-10T10:10:12.460017", + "url": "/v1/games/fallout-4-vault-tec-workshop" +} diff --git a/site/public/v1/games/fallout-4-wasteland-workshop/index.json b/site/public/v1/games/fallout-4-wasteland-workshop/index.json new file mode 100644 index 000000000000..2d8c4ee165dc --- /dev/null +++ b/site/public/v1/games/fallout-4-wasteland-workshop/index.json @@ -0,0 +1,25 @@ +{ + "id": 50786, + "slug": "fallout-4-wasteland-workshop", + "name": "Fallout 4: Wasteland Workshop", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q26658514" + ], + "created_at": "2026-07-10T10:10:12.460970", + "updated_at": "2026-07-10T10:10:12.460970", + "url": "/v1/games/fallout-4-wasteland-workshop" +} diff --git a/site/public/v1/games/fallout-brotherhood-of-steel-2/index.json b/site/public/v1/games/fallout-brotherhood-of-steel-2/index.json new file mode 100644 index 000000000000..a9e84a0befee --- /dev/null +++ b/site/public/v1/games/fallout-brotherhood-of-steel-2/index.json @@ -0,0 +1,31 @@ +{ + "id": 50789, + "slug": "fallout-brotherhood-of-steel-2", + "name": "Fallout: Brotherhood of Steel 2", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "post-apocalyptic video game" + ], + "stores": [], + "developers": [ + "Interplay Entertainment" + ], + "publishers": [ + "Interplay Entertainment" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5432426" + ], + "created_at": "2026-07-10T10:10:12.461962", + "updated_at": "2026-07-10T10:10:12.461962", + "url": "/v1/games/fallout-brotherhood-of-steel-2" +} diff --git a/site/public/v1/games/fallout-london/index.json b/site/public/v1/games/fallout-london/index.json new file mode 100644 index 000000000000..62f8488e1cbe --- /dev/null +++ b/site/public/v1/games/fallout-london/index.json @@ -0,0 +1,27 @@ +{ + "id": 50792, + "slug": "fallout-london", + "name": "Fallout: London", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112655898" + ], + "created_at": "2026-07-10T10:10:12.461962", + "updated_at": "2026-07-10T10:10:12.461962", + "url": "/v1/games/fallout-london" +} diff --git a/site/public/v1/games/fallout-new-california/index.json b/site/public/v1/games/fallout-new-california/index.json new file mode 100644 index 000000000000..f71ee1cb178f --- /dev/null +++ b/site/public/v1/games/fallout-new-california/index.json @@ -0,0 +1,29 @@ +{ + "id": 50793, + "slug": "fallout-new-california", + "name": "Fallout: New California", + "release_date": "2013-05-31", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "action role-playing game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16740993" + ], + "created_at": "2026-07-10T10:10:12.461962", + "updated_at": "2026-07-10T10:10:12.461962", + "url": "/v1/games/fallout-new-california" +} diff --git a/site/public/v1/games/fallout-new-vegas-dead-money/index.json b/site/public/v1/games/fallout-new-vegas-dead-money/index.json new file mode 100644 index 000000000000..e88bab35162b --- /dev/null +++ b/site/public/v1/games/fallout-new-vegas-dead-money/index.json @@ -0,0 +1,34 @@ +{ + "id": 50794, + "slug": "fallout-new-vegas-dead-money", + "name": "Fallout: New Vegas – Dead Money", + "release_date": "2010-12-21", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 3", + "Microsoft Windows" + ], + "genres": [ + "action role-playing game" + ], + "stores": [], + "developers": [ + "Obsidian Entertainment" + ], + "publishers": [ + "Bethesda Softworks" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110714167" + ], + "created_at": "2026-07-10T10:10:12.462988", + "updated_at": "2026-07-10T10:10:12.462988", + "url": "/v1/games/fallout-new-vegas-dead-money" +} diff --git a/site/public/v1/games/fallout-new-vegas-gun-runners-arsenal/index.json b/site/public/v1/games/fallout-new-vegas-gun-runners-arsenal/index.json new file mode 100644 index 000000000000..b0a599bb939a --- /dev/null +++ b/site/public/v1/games/fallout-new-vegas-gun-runners-arsenal/index.json @@ -0,0 +1,25 @@ +{ + "id": 50795, + "slug": "fallout-new-vegas-gun-runners-arsenal", + "name": "Fallout - New Vegas: Gun Runners’ Arsenal", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126870767" + ], + "created_at": "2026-07-10T10:10:12.462988", + "updated_at": "2026-07-10T10:10:12.462988", + "url": "/v1/games/fallout-new-vegas-gun-runners-arsenal" +} diff --git a/site/public/v1/games/fallout-new-vegas-honest-hearts/index.json b/site/public/v1/games/fallout-new-vegas-honest-hearts/index.json new file mode 100644 index 000000000000..1ea63db98e57 --- /dev/null +++ b/site/public/v1/games/fallout-new-vegas-honest-hearts/index.json @@ -0,0 +1,34 @@ +{ + "id": 50796, + "slug": "fallout-new-vegas-honest-hearts", + "name": "Fallout: New Vegas – Honest Hearts", + "release_date": "2011-05-17", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 3", + "Microsoft Windows" + ], + "genres": [ + "action role-playing game" + ], + "stores": [], + "developers": [ + "Obsidian Entertainment" + ], + "publishers": [ + "Bethesda Softworks" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110714316" + ], + "created_at": "2026-07-10T10:10:12.462988", + "updated_at": "2026-07-10T10:10:12.462988", + "url": "/v1/games/fallout-new-vegas-honest-hearts" +} diff --git a/site/public/v1/games/fallout-new-vegas-old-world-blues/index.json b/site/public/v1/games/fallout-new-vegas-old-world-blues/index.json new file mode 100644 index 000000000000..6ae02b1ceabd --- /dev/null +++ b/site/public/v1/games/fallout-new-vegas-old-world-blues/index.json @@ -0,0 +1,34 @@ +{ + "id": 50797, + "slug": "fallout-new-vegas-old-world-blues", + "name": "Fallout: New Vegas — Old World Blues", + "release_date": "2011-07-19", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 3", + "Microsoft Windows" + ], + "genres": [ + "role-playing video game" + ], + "stores": [], + "developers": [ + "Obsidian Entertainment" + ], + "publishers": [ + "Bethesda Softworks" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4045709" + ], + "created_at": "2026-07-10T10:10:12.462988", + "updated_at": "2026-07-10T10:10:12.462988", + "url": "/v1/games/fallout-new-vegas-old-world-blues" +} diff --git a/site/public/v1/games/fallout-new-vegas-remake/index.json b/site/public/v1/games/fallout-new-vegas-remake/index.json new file mode 100644 index 000000000000..03e78717473f --- /dev/null +++ b/site/public/v1/games/fallout-new-vegas-remake/index.json @@ -0,0 +1,40 @@ +{ + "id": 50798, + "slug": "fallout-new-vegas-remake", + "name": "Fallout: New Vegas Remake", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "third-person shooter", + "action role-playing game", + "science fiction Western", + "science fiction video game", + "LGBT-themed video game", + "post-apocalyptic video game", + "Western video game" + ], + "stores": [], + "developers": [ + "Iron Galaxy Studios" + ], + "publishers": [ + "Bethesda Softworks" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140018987" + ], + "created_at": "2026-07-10T10:10:12.463978", + "updated_at": "2026-07-10T10:10:12.463978", + "url": "/v1/games/fallout-new-vegas-remake" +} diff --git a/site/public/v1/games/fallout-online/index.json b/site/public/v1/games/fallout-online/index.json new file mode 100644 index 000000000000..8ce024b420cc --- /dev/null +++ b/site/public/v1/games/fallout-online/index.json @@ -0,0 +1,33 @@ +{ + "id": 50801, + "slug": "fallout-online", + "name": "Fallout Online", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "massively multiplayer online role-playing game" + ], + "stores": [], + "developers": [ + "Masthead Studios" + ], + "publishers": [ + "Interplay Entertainment" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4038606" + ], + "created_at": "2026-07-10T10:10:12.463978", + "updated_at": "2026-07-10T10:10:12.463978", + "url": "/v1/games/fallout-online" +} diff --git a/site/public/v1/games/fallout-pack/index.json b/site/public/v1/games/fallout-pack/index.json new file mode 100644 index 000000000000..734c4f0d8efe --- /dev/null +++ b/site/public/v1/games/fallout-pack/index.json @@ -0,0 +1,34 @@ +{ + "id": 50802, + "slug": "fallout-pack", + "name": "Fallout Pack", + "release_date": "2011-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 3", + "Microsoft Windows" + ], + "genres": [ + "first-person shooter" + ], + "stores": [], + "developers": [ + "Splash Damage" + ], + "publishers": [ + "Bethesda Softworks" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q69920372" + ], + "created_at": "2026-07-10T10:10:12.463978", + "updated_at": "2026-07-10T10:10:12.463978", + "url": "/v1/games/fallout-pack" +} diff --git a/site/public/v1/games/fallout-tactics-2/index.json b/site/public/v1/games/fallout-tactics-2/index.json new file mode 100644 index 000000000000..5172fdd8adb1 --- /dev/null +++ b/site/public/v1/games/fallout-tactics-2/index.json @@ -0,0 +1,29 @@ +{ + "id": 50805, + "slug": "fallout-tactics-2", + "name": "Fallout Tactics 2", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Micro Forté" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q101206175" + ], + "created_at": "2026-07-10T10:10:12.465554", + "updated_at": "2026-07-10T10:10:12.465554", + "url": "/v1/games/fallout-tactics-2" +} diff --git a/site/public/v1/games/fantasy-five/index.json b/site/public/v1/games/fantasy-five/index.json new file mode 100644 index 000000000000..0756db646c01 --- /dev/null +++ b/site/public/v1/games/fantasy-five/index.json @@ -0,0 +1,25 @@ +{ + "id": 51075, + "slug": "fantasy-five", + "name": "Fantasy Five", + "release_date": "1985-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q54917775" + ], + "created_at": "2026-07-10T10:10:12.537819", + "updated_at": "2026-07-10T10:10:12.537819", + "url": "/v1/games/fantasy-five" +} diff --git a/site/public/v1/games/far-cry-2-fortunes-pack/index.json b/site/public/v1/games/far-cry-2-fortunes-pack/index.json new file mode 100644 index 000000000000..0a0d809c41f9 --- /dev/null +++ b/site/public/v1/games/far-cry-2-fortunes-pack/index.json @@ -0,0 +1,25 @@ +{ + "id": 51235, + "slug": "far-cry-2-fortunes-pack", + "name": "Far Cry 2: Fortunes Pack", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110155965" + ], + "created_at": "2026-07-10T10:10:12.582782", + "updated_at": "2026-07-10T10:10:12.582782", + "url": "/v1/games/far-cry-2-fortunes-pack" +} diff --git a/site/public/v1/games/far-cry-4-gold-edition/index.json b/site/public/v1/games/far-cry-4-gold-edition/index.json new file mode 100644 index 000000000000..18397de19591 --- /dev/null +++ b/site/public/v1/games/far-cry-4-gold-edition/index.json @@ -0,0 +1,25 @@ +{ + "id": 51242, + "slug": "far-cry-4-gold-edition", + "name": "Far Cry 4 Gold Edition", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q92204055" + ], + "created_at": "2026-07-10T10:10:12.584786", + "updated_at": "2026-07-10T10:10:12.584786", + "url": "/v1/games/far-cry-4-gold-edition" +} diff --git a/site/public/v1/games/far-cry-5-gold-edition/index.json b/site/public/v1/games/far-cry-5-gold-edition/index.json new file mode 100644 index 000000000000..cbec8b1e60d8 --- /dev/null +++ b/site/public/v1/games/far-cry-5-gold-edition/index.json @@ -0,0 +1,25 @@ +{ + "id": 51244, + "slug": "far-cry-5-gold-edition", + "name": "Far Cry 5: Gold Edition", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121889081" + ], + "created_at": "2026-07-10T10:10:12.584786", + "updated_at": "2026-07-10T10:10:12.585792", + "url": "/v1/games/far-cry-5-gold-edition" +} diff --git a/site/public/v1/games/far-cry-bundle-q126414297/index.json b/site/public/v1/games/far-cry-bundle-q126414297/index.json new file mode 100644 index 000000000000..c9f5c3b6451e --- /dev/null +++ b/site/public/v1/games/far-cry-bundle-q126414297/index.json @@ -0,0 +1,29 @@ +{ + "id": 51247, + "slug": "far-cry-bundle-q126414297", + "name": "Far Cry Bundle", + "release_date": "2017-12-23", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126414297" + ], + "created_at": "2026-07-10T10:10:12.585792", + "updated_at": "2026-07-10T10:10:12.585792", + "url": "/v1/games/far-cry-bundle-q126414297" +} diff --git a/site/public/v1/games/far-cry-bundle/index.json b/site/public/v1/games/far-cry-bundle/index.json new file mode 100644 index 000000000000..ab3a2198e715 --- /dev/null +++ b/site/public/v1/games/far-cry-bundle/index.json @@ -0,0 +1,29 @@ +{ + "id": 51248, + "slug": "far-cry-bundle", + "name": "Far Cry Bundle", + "release_date": "2022-06-08", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q104660821" + ], + "created_at": "2026-07-10T10:10:12.586821", + "updated_at": "2026-07-10T10:10:12.586821", + "url": "/v1/games/far-cry-bundle" +} diff --git a/site/public/v1/games/far-cry-classic-trial/index.json b/site/public/v1/games/far-cry-classic-trial/index.json new file mode 100644 index 000000000000..bb69a91c3f8d --- /dev/null +++ b/site/public/v1/games/far-cry-classic-trial/index.json @@ -0,0 +1,30 @@ +{ + "id": 51249, + "slug": "far-cry-classic-trial", + "name": "Far Cry Classic Trial", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 3" + ], + "genres": [ + "first-person shooter", + "science fiction video game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130431999" + ], + "created_at": "2026-07-10T10:10:12.586821", + "updated_at": "2026-07-10T10:10:12.586821", + "url": "/v1/games/far-cry-classic-trial" +} diff --git a/site/public/v1/games/far-cry-primal-apex-edition/index.json b/site/public/v1/games/far-cry-primal-apex-edition/index.json new file mode 100644 index 000000000000..5fa050eb129b --- /dev/null +++ b/site/public/v1/games/far-cry-primal-apex-edition/index.json @@ -0,0 +1,25 @@ +{ + "id": 51255, + "slug": "far-cry-primal-apex-edition", + "name": "Far Cry Primal - Apex Edition", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q92203764" + ], + "created_at": "2026-07-10T10:10:12.588795", + "updated_at": "2026-07-10T10:10:12.588795", + "url": "/v1/games/far-cry-primal-apex-edition" +} diff --git a/site/public/v1/games/far-cry-wild-expedition/index.json b/site/public/v1/games/far-cry-wild-expedition/index.json new file mode 100644 index 000000000000..073c2c0dd765 --- /dev/null +++ b/site/public/v1/games/far-cry-wild-expedition/index.json @@ -0,0 +1,25 @@ +{ + "id": 51259, + "slug": "far-cry-wild-expedition", + "name": "Far Cry: Wild Expedition", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16635860" + ], + "created_at": "2026-07-10T10:10:12.588795", + "updated_at": "2026-07-10T10:10:12.588795", + "url": "/v1/games/far-cry-wild-expedition" +} diff --git a/site/public/v1/games/farming-simulator-20-q118235140/index.json b/site/public/v1/games/farming-simulator-20-q118235140/index.json new file mode 100644 index 000000000000..173c01576da8 --- /dev/null +++ b/site/public/v1/games/farming-simulator-20-q118235140/index.json @@ -0,0 +1,28 @@ +{ + "id": 51452, + "slug": "farming-simulator-20-q118235140", + "name": "Farming Simulator 20+", + "release_date": "2023-05-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "iPadOS", + "iOS" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118235140" + ], + "created_at": "2026-07-10T10:10:12.640024", + "updated_at": "2026-07-10T10:10:12.640024", + "url": "/v1/games/farming-simulator-20-q118235140" +} diff --git a/site/public/v1/games/fashion-flamb/index.json b/site/public/v1/games/fashion-flamb/index.json new file mode 100644 index 000000000000..47deb0cde51f --- /dev/null +++ b/site/public/v1/games/fashion-flamb/index.json @@ -0,0 +1,25 @@ +{ + "id": 51526, + "slug": "fashion-flamb", + "name": "Fashion Flambé", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q128014874" + ], + "created_at": "2026-07-10T10:10:12.660007", + "updated_at": "2026-07-10T10:10:12.660007", + "url": "/v1/games/fashion-flamb" +} diff --git a/site/public/v1/games/fastdoom/index.json b/site/public/v1/games/fastdoom/index.json new file mode 100644 index 000000000000..6be744932be8 --- /dev/null +++ b/site/public/v1/games/fastdoom/index.json @@ -0,0 +1,25 @@ +{ + "id": 51603, + "slug": "fastdoom", + "name": "FastDOOM", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124655020" + ], + "created_at": "2026-07-10T10:10:12.680033", + "updated_at": "2026-07-10T10:10:12.680033", + "url": "/v1/games/fastdoom" +} diff --git a/site/public/v1/games/fathammer-classics-pack/index.json b/site/public/v1/games/fathammer-classics-pack/index.json new file mode 100644 index 000000000000..9a14471afc5f --- /dev/null +++ b/site/public/v1/games/fathammer-classics-pack/index.json @@ -0,0 +1,32 @@ +{ + "id": 51787, + "slug": "fathammer-classics-pack", + "name": "Fathammer Classics Pack", + "release_date": "2005-03-19", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Symbian", + "Windows Mobile" + ], + "genres": [ + "puzzle video game" + ], + "stores": [], + "developers": [], + "publishers": [ + "Gizmondo" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5437527" + ], + "created_at": "2026-07-10T10:10:12.726675", + "updated_at": "2026-07-10T10:10:12.726675", + "url": "/v1/games/fathammer-classics-pack" +} diff --git a/site/public/v1/games/faust-q11331939/index.json b/site/public/v1/games/faust-q11331939/index.json new file mode 100644 index 000000000000..18930cf94ad9 --- /dev/null +++ b/site/public/v1/games/faust-q11331939/index.json @@ -0,0 +1,25 @@ +{ + "id": 51824, + "slug": "faust-q11331939", + "name": "FAUST", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11331939" + ], + "created_at": "2026-07-10T10:10:12.736688", + "updated_at": "2026-07-10T10:10:12.736688", + "url": "/v1/games/faust-q11331939" +} diff --git a/site/public/v1/games/fbdoom/index.json b/site/public/v1/games/fbdoom/index.json new file mode 100644 index 000000000000..48e880d3fc70 --- /dev/null +++ b/site/public/v1/games/fbdoom/index.json @@ -0,0 +1,25 @@ +{ + "id": 51853, + "slug": "fbdoom", + "name": "fbDOOM", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124473767" + ], + "created_at": "2026-07-10T10:10:12.745005", + "updated_at": "2026-07-10T10:10:12.745005", + "url": "/v1/games/fbdoom" +} diff --git a/site/public/v1/games/fear-effect-inferno/index.json b/site/public/v1/games/fear-effect-inferno/index.json new file mode 100644 index 000000000000..54b73a531ed2 --- /dev/null +++ b/site/public/v1/games/fear-effect-inferno/index.json @@ -0,0 +1,27 @@ +{ + "id": 51869, + "slug": "fear-effect-inferno", + "name": "Fear Effect Inferno", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "action game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3740574" + ], + "created_at": "2026-07-10T10:10:12.748993", + "updated_at": "2026-07-10T10:10:12.748993", + "url": "/v1/games/fear-effect-inferno" +} diff --git a/site/public/v1/games/feathermuck/index.json b/site/public/v1/games/feathermuck/index.json new file mode 100644 index 000000000000..18c027111f33 --- /dev/null +++ b/site/public/v1/games/feathermuck/index.json @@ -0,0 +1,25 @@ +{ + "id": 51971, + "slug": "feathermuck", + "name": "FeatherMuck", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121506714" + ], + "created_at": "2026-07-10T10:10:12.776359", + "updated_at": "2026-07-10T10:10:12.776359", + "url": "/v1/games/feathermuck" +} diff --git a/site/public/v1/games/feed-the-crown-deluxe-edition-movement-demo/index.json b/site/public/v1/games/feed-the-crown-deluxe-edition-movement-demo/index.json new file mode 100644 index 000000000000..8531d6b462e9 --- /dev/null +++ b/site/public/v1/games/feed-the-crown-deluxe-edition-movement-demo/index.json @@ -0,0 +1,34 @@ +{ + "id": 51997, + "slug": "feed-the-crown-deluxe-edition-movement-demo", + "name": "Feed the Crown: Deluxe Edition (Movement Demo)", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "platformer", + "erotic video game" + ], + "stores": [], + "developers": [ + "SofterCode" + ], + "publishers": [ + "SofterCode" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124668380" + ], + "created_at": "2026-07-10T10:10:12.783429", + "updated_at": "2026-07-10T10:10:12.783429", + "url": "/v1/games/feed-the-crown-deluxe-edition-movement-demo" +} diff --git a/site/public/v1/games/femdom-game-world-aunt-demo/index.json b/site/public/v1/games/femdom-game-world-aunt-demo/index.json new file mode 100644 index 000000000000..eb0c76e6fdac --- /dev/null +++ b/site/public/v1/games/femdom-game-world-aunt-demo/index.json @@ -0,0 +1,34 @@ +{ + "id": 52091, + "slug": "femdom-game-world-aunt-demo", + "name": "Femdom Game World: Aunt Demo", + "release_date": "2024-06-22", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "visual novel", + "erotic video game" + ], + "stores": [], + "developers": [ + "Femdom Game World" + ], + "publishers": [ + "Femdom Game World" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q129548394" + ], + "created_at": "2026-07-10T10:10:12.809445", + "updated_at": "2026-07-10T10:10:12.809445", + "url": "/v1/games/femdom-game-world-aunt-demo" +} diff --git a/site/public/v1/games/femdom-game-world-stepsister-demo/index.json b/site/public/v1/games/femdom-game-world-stepsister-demo/index.json new file mode 100644 index 000000000000..dac252135155 --- /dev/null +++ b/site/public/v1/games/femdom-game-world-stepsister-demo/index.json @@ -0,0 +1,34 @@ +{ + "id": 52097, + "slug": "femdom-game-world-stepsister-demo", + "name": "Femdom Game World: Stepsister Demo", + "release_date": "2024-03-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "visual novel", + "erotic video game" + ], + "stores": [], + "developers": [ + "Femdom Game World" + ], + "publishers": [ + "Femdom Game World" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q129549260" + ], + "created_at": "2026-07-10T10:10:12.810434", + "updated_at": "2026-07-10T10:10:12.810434", + "url": "/v1/games/femdom-game-world-stepsister-demo" +} diff --git a/site/public/v1/games/femdom-lines-mindbreak/index.json b/site/public/v1/games/femdom-lines-mindbreak/index.json new file mode 100644 index 000000000000..acfc68fd0598 --- /dev/null +++ b/site/public/v1/games/femdom-lines-mindbreak/index.json @@ -0,0 +1,31 @@ +{ + "id": 52099, + "slug": "femdom-lines-mindbreak", + "name": "Femdom Lines: Mindbreak", + "release_date": "2024-08-02", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "erotic video game" + ], + "stores": [], + "developers": [ + "Zee Vital" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130380898" + ], + "created_at": "2026-07-10T10:10:12.811532", + "updated_at": "2026-07-10T10:10:12.811532", + "url": "/v1/games/femdom-lines-mindbreak" +} diff --git a/site/public/v1/games/femdom-lines-mistress-akira/index.json b/site/public/v1/games/femdom-lines-mistress-akira/index.json new file mode 100644 index 000000000000..71b4e8c1f741 --- /dev/null +++ b/site/public/v1/games/femdom-lines-mistress-akira/index.json @@ -0,0 +1,31 @@ +{ + "id": 52100, + "slug": "femdom-lines-mistress-akira", + "name": "Femdom Lines: Mistress Akira", + "release_date": "2019-11-05", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "erotic video game" + ], + "stores": [], + "developers": [ + "Zee Vital" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130380915" + ], + "created_at": "2026-07-10T10:10:12.811532", + "updated_at": "2026-07-10T10:10:12.811532", + "url": "/v1/games/femdom-lines-mistress-akira" +} diff --git a/site/public/v1/games/femdom-lines-mistress-yuki/index.json b/site/public/v1/games/femdom-lines-mistress-yuki/index.json new file mode 100644 index 000000000000..f090142ec891 --- /dev/null +++ b/site/public/v1/games/femdom-lines-mistress-yuki/index.json @@ -0,0 +1,31 @@ +{ + "id": 52101, + "slug": "femdom-lines-mistress-yuki", + "name": "Femdom Lines: Mistress Yuki", + "release_date": "2019-08-06", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "erotic video game" + ], + "stores": [], + "developers": [ + "Zee Vital" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130380919" + ], + "created_at": "2026-07-10T10:10:12.811532", + "updated_at": "2026-07-10T10:10:12.811532", + "url": "/v1/games/femdom-lines-mistress-yuki" +} diff --git a/site/public/v1/games/femdom-lines-total-obedience-pack/index.json b/site/public/v1/games/femdom-lines-total-obedience-pack/index.json new file mode 100644 index 000000000000..029326dd21df --- /dev/null +++ b/site/public/v1/games/femdom-lines-total-obedience-pack/index.json @@ -0,0 +1,31 @@ +{ + "id": 52102, + "slug": "femdom-lines-total-obedience-pack", + "name": "Femdom Lines: Total Obedience Pack", + "release_date": "2021-08-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "erotic video game" + ], + "stores": [], + "developers": [ + "Zee Vital" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130380908" + ], + "created_at": "2026-07-10T10:10:12.811532", + "updated_at": "2026-07-10T10:10:12.811532", + "url": "/v1/games/femdom-lines-total-obedience-pack" +} diff --git a/site/public/v1/games/femdom-waifu-bikini-summer-pack/index.json b/site/public/v1/games/femdom-waifu-bikini-summer-pack/index.json new file mode 100644 index 000000000000..fb6a036810d4 --- /dev/null +++ b/site/public/v1/games/femdom-waifu-bikini-summer-pack/index.json @@ -0,0 +1,32 @@ +{ + "id": 52107, + "slug": "femdom-waifu-bikini-summer-pack", + "name": "Femdom Waifu: Bikini Summer Pack", + "release_date": "2021-07-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "erotic video game" + ], + "stores": [], + "developers": [ + "Zee Vital", + "Marco Marco" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q129588811" + ], + "created_at": "2026-07-10T10:10:12.812498", + "updated_at": "2026-07-10T10:10:12.812498", + "url": "/v1/games/femdom-waifu-bikini-summer-pack" +} diff --git a/site/public/v1/games/femdom-waifu-findom-mode/index.json b/site/public/v1/games/femdom-waifu-findom-mode/index.json new file mode 100644 index 000000000000..5c3db9640d4a --- /dev/null +++ b/site/public/v1/games/femdom-waifu-findom-mode/index.json @@ -0,0 +1,32 @@ +{ + "id": 52108, + "slug": "femdom-waifu-findom-mode", + "name": "Femdom Waifu: Findom Mode", + "release_date": "2019-09-03", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "erotic video game" + ], + "stores": [], + "developers": [ + "Zee Vital", + "Marco Marco" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q129588260" + ], + "created_at": "2026-07-10T10:10:12.812498", + "updated_at": "2026-07-10T10:10:12.812498", + "url": "/v1/games/femdom-waifu-findom-mode" +} diff --git a/site/public/v1/games/femdom-waifu-foot-fetish-pack/index.json b/site/public/v1/games/femdom-waifu-foot-fetish-pack/index.json new file mode 100644 index 000000000000..c3ad8c220507 --- /dev/null +++ b/site/public/v1/games/femdom-waifu-foot-fetish-pack/index.json @@ -0,0 +1,32 @@ +{ + "id": 52109, + "slug": "femdom-waifu-foot-fetish-pack", + "name": "Femdom Waifu: Foot Fetish Pack", + "release_date": "2019-04-08", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "erotic video game" + ], + "stores": [], + "developers": [ + "Zee Vital", + "Marco Marco" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q129586031" + ], + "created_at": "2026-07-10T10:10:12.812498", + "updated_at": "2026-07-10T10:10:12.812498", + "url": "/v1/games/femdom-waifu-foot-fetish-pack" +} diff --git a/site/public/v1/games/femdom-waifu-latex-suits-pack/index.json b/site/public/v1/games/femdom-waifu-latex-suits-pack/index.json new file mode 100644 index 000000000000..51816fa065f6 --- /dev/null +++ b/site/public/v1/games/femdom-waifu-latex-suits-pack/index.json @@ -0,0 +1,32 @@ +{ + "id": 52110, + "slug": "femdom-waifu-latex-suits-pack", + "name": "Femdom Waifu: Latex Suits Pack", + "release_date": "2019-10-15", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "erotic video game" + ], + "stores": [], + "developers": [ + "Zee Vital", + "Marco Marco" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q129588597" + ], + "created_at": "2026-07-10T10:10:12.813568", + "updated_at": "2026-07-10T10:10:12.813568", + "url": "/v1/games/femdom-waifu-latex-suits-pack" +} diff --git a/site/public/v1/games/femdom-waifu-shorts-and-tops-pack/index.json b/site/public/v1/games/femdom-waifu-shorts-and-tops-pack/index.json new file mode 100644 index 000000000000..a3c7a8a34c7c --- /dev/null +++ b/site/public/v1/games/femdom-waifu-shorts-and-tops-pack/index.json @@ -0,0 +1,32 @@ +{ + "id": 52111, + "slug": "femdom-waifu-shorts-and-tops-pack", + "name": "Femdom Waifu: Shorts and Tops Pack", + "release_date": "2020-06-03", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "erotic video game" + ], + "stores": [], + "developers": [ + "Zee Vital", + "Marco Marco" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q129588728" + ], + "created_at": "2026-07-10T10:10:12.813568", + "updated_at": "2026-07-10T10:10:12.813568", + "url": "/v1/games/femdom-waifu-shorts-and-tops-pack" +} diff --git a/site/public/v1/games/femdom-waifu-swimsuit-pack/index.json b/site/public/v1/games/femdom-waifu-swimsuit-pack/index.json new file mode 100644 index 000000000000..387f845e0f01 --- /dev/null +++ b/site/public/v1/games/femdom-waifu-swimsuit-pack/index.json @@ -0,0 +1,32 @@ +{ + "id": 52112, + "slug": "femdom-waifu-swimsuit-pack", + "name": "Femdom Waifu: Swimsuit Pack", + "release_date": "2019-07-09", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "erotic video game" + ], + "stores": [], + "developers": [ + "Zee Vital", + "Marco Marco" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q129586524" + ], + "created_at": "2026-07-10T10:10:12.813568", + "updated_at": "2026-07-10T10:10:12.813568", + "url": "/v1/games/femdom-waifu-swimsuit-pack" +} diff --git a/site/public/v1/games/femdom-waifu-vr-latex-lingerie-pack/index.json b/site/public/v1/games/femdom-waifu-vr-latex-lingerie-pack/index.json new file mode 100644 index 000000000000..27492075f606 --- /dev/null +++ b/site/public/v1/games/femdom-waifu-vr-latex-lingerie-pack/index.json @@ -0,0 +1,31 @@ +{ + "id": 52113, + "slug": "femdom-waifu-vr-latex-lingerie-pack", + "name": "Femdom Waifu VR: Latex Lingerie Pack", + "release_date": "2022-06-03", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "erotic video game" + ], + "stores": [], + "developers": [ + "Zee Vital" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q129585278" + ], + "created_at": "2026-07-10T10:10:12.814530", + "updated_at": "2026-07-10T10:10:12.814530", + "url": "/v1/games/femdom-waifu-vr-latex-lingerie-pack" +} diff --git a/site/public/v1/games/femdom-wife-game-zoe-demo/index.json b/site/public/v1/games/femdom-wife-game-zoe-demo/index.json new file mode 100644 index 000000000000..630f077019bb --- /dev/null +++ b/site/public/v1/games/femdom-wife-game-zoe-demo/index.json @@ -0,0 +1,34 @@ +{ + "id": 52116, + "slug": "femdom-wife-game-zoe-demo", + "name": "Femdom Wife Game - Zoe Demo", + "release_date": "2023-04-21", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "erotic video game" + ], + "stores": [], + "developers": [ + "Femdom Wife Game" + ], + "publishers": [ + "Femdom Wife Game" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131545263" + ], + "created_at": "2026-07-10T10:10:12.814530", + "updated_at": "2026-07-10T10:10:12.814530", + "url": "/v1/games/femdom-wife-game-zoe-demo" +} diff --git a/site/public/v1/games/ferion/index.json b/site/public/v1/games/ferion/index.json new file mode 100644 index 000000000000..d1f0077bf6ae --- /dev/null +++ b/site/public/v1/games/ferion/index.json @@ -0,0 +1,27 @@ +{ + "id": 52162, + "slug": "ferion", + "name": "Ferion", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "massively multiplayer online role-playing game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q13156283" + ], + "created_at": "2026-07-10T10:10:12.828011", + "updated_at": "2026-07-10T10:10:12.828011", + "url": "/v1/games/ferion" +} diff --git a/site/public/v1/games/fernbus-simulator-poland/index.json b/site/public/v1/games/fernbus-simulator-poland/index.json new file mode 100644 index 000000000000..d5d3e4c799c6 --- /dev/null +++ b/site/public/v1/games/fernbus-simulator-poland/index.json @@ -0,0 +1,25 @@ +{ + "id": 52169, + "slug": "fernbus-simulator-poland", + "name": "Fernbus Simulator: Poland", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140400653" + ], + "created_at": "2026-07-10T10:10:12.830029", + "updated_at": "2026-07-10T10:10:12.830029", + "url": "/v1/games/fernbus-simulator-poland" +} diff --git a/site/public/v1/games/fever-all-seven/index.json b/site/public/v1/games/fever-all-seven/index.json new file mode 100644 index 000000000000..5178b5224c73 --- /dev/null +++ b/site/public/v1/games/fever-all-seven/index.json @@ -0,0 +1,25 @@ +{ + "id": 52244, + "slug": "fever-all-seven", + "name": "Fever All Seven", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135236545" + ], + "created_at": "2026-07-10T10:10:12.865972", + "updated_at": "2026-07-10T10:10:12.865972", + "url": "/v1/games/fever-all-seven" +} diff --git a/site/public/v1/games/fever-girl-s-i/index.json b/site/public/v1/games/fever-girl-s-i/index.json new file mode 100644 index 000000000000..5f1a3963afe0 --- /dev/null +++ b/site/public/v1/games/fever-girl-s-i/index.json @@ -0,0 +1,25 @@ +{ + "id": 52248, + "slug": "fever-girl-s-i", + "name": "Fever Girl's I", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11332562" + ], + "created_at": "2026-07-10T10:10:12.866952", + "updated_at": "2026-07-10T10:10:12.866952", + "url": "/v1/games/fever-girl-s-i" +} diff --git a/site/public/v1/games/fever-powerful/index.json b/site/public/v1/games/fever-powerful/index.json new file mode 100644 index 000000000000..664203577e63 --- /dev/null +++ b/site/public/v1/games/fever-powerful/index.json @@ -0,0 +1,25 @@ +{ + "id": 52250, + "slug": "fever-powerful", + "name": "Fever Powerful", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11332565" + ], + "created_at": "2026-07-10T10:10:12.867950", + "updated_at": "2026-07-10T10:10:12.867950", + "url": "/v1/games/fever-powerful" +} diff --git a/site/public/v1/games/fifa-18-ea-access-demo/index.json b/site/public/v1/games/fifa-18-ea-access-demo/index.json new file mode 100644 index 000000000000..103b83d400af --- /dev/null +++ b/site/public/v1/games/fifa-18-ea-access-demo/index.json @@ -0,0 +1,25 @@ +{ + "id": 52381, + "slug": "fifa-18-ea-access-demo", + "name": "FIFA 18 EA Access Demo", + "release_date": "2017-09-29", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q87914788" + ], + "created_at": "2026-07-10T10:10:12.902146", + "updated_at": "2026-07-10T10:10:12.902146", + "url": "/v1/games/fifa-18-ea-access-demo" +} diff --git a/site/public/v1/games/fifa-18-ronaldo-edition/index.json b/site/public/v1/games/fifa-18-ronaldo-edition/index.json new file mode 100644 index 000000000000..cf7bdc2d1c04 --- /dev/null +++ b/site/public/v1/games/fifa-18-ronaldo-edition/index.json @@ -0,0 +1,25 @@ +{ + "id": 52383, + "slug": "fifa-18-ronaldo-edition", + "name": "FIFA 18 Ronaldo Edition", + "release_date": "2017-09-26", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q87915143" + ], + "created_at": "2026-07-10T10:10:12.903152", + "updated_at": "2026-07-10T10:10:12.903152", + "url": "/v1/games/fifa-18-ronaldo-edition" +} diff --git a/site/public/v1/games/fifa-21-legacy-edition/index.json b/site/public/v1/games/fifa-21-legacy-edition/index.json new file mode 100644 index 000000000000..af90525ebacd --- /dev/null +++ b/site/public/v1/games/fifa-21-legacy-edition/index.json @@ -0,0 +1,34 @@ +{ + "id": 52389, + "slug": "fifa-21-legacy-edition", + "name": "FIFA 21: Legacy Edition", + "release_date": "2020-10-09", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "association football video game" + ], + "stores": [], + "developers": [ + "EA Romania", + "EA Vancouver" + ], + "publishers": [ + "EA Sports" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q100293163" + ], + "created_at": "2026-07-10T10:10:12.904149", + "updated_at": "2026-07-10T10:10:12.904149", + "url": "/v1/games/fifa-21-legacy-edition" +} diff --git a/site/public/v1/games/fifa-23-ultimate-edition/index.json b/site/public/v1/games/fifa-23-ultimate-edition/index.json new file mode 100644 index 000000000000..5427f3f480e9 --- /dev/null +++ b/site/public/v1/games/fifa-23-ultimate-edition/index.json @@ -0,0 +1,35 @@ +{ + "id": 52392, + "slug": "fifa-23-ultimate-edition", + "name": "FIFA 23 Ultimate Edition", + "release_date": "2022-09-27", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S", + "Microsoft Windows" + ], + "genres": [ + "association football video game" + ], + "stores": [], + "developers": [ + "EA Romania", + "EA Vancouver" + ], + "publishers": [ + "Electronic Arts" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q114040576" + ], + "created_at": "2026-07-10T10:10:12.904149", + "updated_at": "2026-07-10T10:10:12.904149", + "url": "/v1/games/fifa-23-ultimate-edition" +} diff --git a/site/public/v1/games/fight-my-monster/index.json b/site/public/v1/games/fight-my-monster/index.json new file mode 100644 index 000000000000..e936317787fc --- /dev/null +++ b/site/public/v1/games/fight-my-monster/index.json @@ -0,0 +1,27 @@ +{ + "id": 52469, + "slug": "fight-my-monster", + "name": "Fight My Monster", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "web browser" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115266708" + ], + "created_at": "2026-07-10T10:10:12.922158", + "updated_at": "2026-07-10T10:10:12.922158", + "url": "/v1/games/fight-my-monster" +} diff --git a/site/public/v1/games/final-fantasy-collection/index.json b/site/public/v1/games/final-fantasy-collection/index.json new file mode 100644 index 000000000000..ea54af3bd751 --- /dev/null +++ b/site/public/v1/games/final-fantasy-collection/index.json @@ -0,0 +1,31 @@ +{ + "id": 52726, + "slug": "final-fantasy-collection", + "name": "Final Fantasy Collection", + "release_date": "2001-04-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "Japanese role-playing video game" + ], + "stores": [], + "developers": [ + "Square" + ], + "publishers": [ + "Square" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18367960" + ], + "created_at": "2026-07-10T10:10:13.004024", + "updated_at": "2026-07-10T10:10:13.004024", + "url": "/v1/games/final-fantasy-collection" +} diff --git a/site/public/v1/games/final-fantasy-i-vi-collection-anniversary-edition/index.json b/site/public/v1/games/final-fantasy-i-vi-collection-anniversary-edition/index.json new file mode 100644 index 000000000000..5c1fea3caa03 --- /dev/null +++ b/site/public/v1/games/final-fantasy-i-vi-collection-anniversary-edition/index.json @@ -0,0 +1,32 @@ +{ + "id": 52742, + "slug": "final-fantasy-i-vi-collection-anniversary-edition", + "name": "Final Fantasy I-VI Collection Anniversary Edition", + "release_date": "2024-10-08", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 4" + ], + "genres": [ + "Japanese role-playing video game" + ], + "stores": [], + "developers": [], + "publishers": [ + "Square Enix", + "CRI Middleware" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131303213" + ], + "created_at": "2026-07-10T10:10:13.007028", + "updated_at": "2026-07-10T10:10:13.008028", + "url": "/v1/games/final-fantasy-i-vi-collection-anniversary-edition" +} diff --git a/site/public/v1/games/final-fantasy-ii-20th-anniversary-edition/index.json b/site/public/v1/games/final-fantasy-ii-20th-anniversary-edition/index.json new file mode 100644 index 000000000000..4d725d865770 --- /dev/null +++ b/site/public/v1/games/final-fantasy-ii-20th-anniversary-edition/index.json @@ -0,0 +1,31 @@ +{ + "id": 52743, + "slug": "final-fantasy-ii-20th-anniversary-edition", + "name": "Final Fantasy II: 20th Anniversary Edition", + "release_date": "2007-06-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation Portable" + ], + "genres": [ + "role-playing video game" + ], + "stores": [], + "developers": [], + "publishers": [ + "Square Enix" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135405295" + ], + "created_at": "2026-07-10T10:10:13.008028", + "updated_at": "2026-07-10T10:10:13.008028", + "url": "/v1/games/final-fantasy-ii-20th-anniversary-edition" +} diff --git a/site/public/v1/games/final-fantasy-iv-the-complete-collection/index.json b/site/public/v1/games/final-fantasy-iv-the-complete-collection/index.json new file mode 100644 index 000000000000..1f98b896ea0d --- /dev/null +++ b/site/public/v1/games/final-fantasy-iv-the-complete-collection/index.json @@ -0,0 +1,31 @@ +{ + "id": 52752, + "slug": "final-fantasy-iv-the-complete-collection", + "name": "Final Fantasy IV: The Complete Collection", + "release_date": "2011-03-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation Portable" + ], + "genres": [ + "role-playing video game" + ], + "stores": [], + "developers": [ + "Square Enix" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5449389" + ], + "created_at": "2026-07-10T10:10:13.009035", + "updated_at": "2026-07-10T10:10:13.009035", + "url": "/v1/games/final-fantasy-iv-the-complete-collection" +} diff --git a/site/public/v1/games/final-fantasy-origins/index.json b/site/public/v1/games/final-fantasy-origins/index.json new file mode 100644 index 000000000000..9c4892b5ed17 --- /dev/null +++ b/site/public/v1/games/final-fantasy-origins/index.json @@ -0,0 +1,31 @@ +{ + "id": 52759, + "slug": "final-fantasy-origins", + "name": "Final Fantasy Origins", + "release_date": "2002-10-31", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "role-playing video game" + ], + "stores": [], + "developers": [ + "Square" + ], + "publishers": [ + "Square" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2305500" + ], + "created_at": "2026-07-10T10:10:13.011033", + "updated_at": "2026-07-10T10:10:13.011033", + "url": "/v1/games/final-fantasy-origins" +} diff --git a/site/public/v1/games/final-fantasy-vii-remake-episode-intermission/index.json b/site/public/v1/games/final-fantasy-vii-remake-episode-intermission/index.json new file mode 100644 index 000000000000..fc54d3ddcb3b --- /dev/null +++ b/site/public/v1/games/final-fantasy-vii-remake-episode-intermission/index.json @@ -0,0 +1,34 @@ +{ + "id": 52784, + "slug": "final-fantasy-vii-remake-episode-intermission", + "name": "Final Fantasy VII Remake: Episode Intermission", + "release_date": "2021-06-10", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 5", + "Microsoft Windows" + ], + "genres": [ + "action role-playing game" + ], + "stores": [], + "developers": [ + "Square Enix" + ], + "publishers": [ + "Square Enix" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109690723" + ], + "created_at": "2026-07-10T10:10:13.016046", + "updated_at": "2026-07-10T10:10:13.016046", + "url": "/v1/games/final-fantasy-vii-remake-episode-intermission" +} diff --git a/site/public/v1/games/final-fantasy-xiii-demo/index.json b/site/public/v1/games/final-fantasy-xiii-demo/index.json new file mode 100644 index 000000000000..06bd5b78d87b --- /dev/null +++ b/site/public/v1/games/final-fantasy-xiii-demo/index.json @@ -0,0 +1,27 @@ +{ + "id": 52803, + "slug": "final-fantasy-xiii-demo", + "name": "Final Fantasy XIII demo", + "release_date": "2009-04-16", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 3" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122852874" + ], + "created_at": "2026-07-10T10:10:13.020046", + "updated_at": "2026-07-10T10:10:13.020046", + "url": "/v1/games/final-fantasy-xiii-demo" +} diff --git a/site/public/v1/games/final-fantasy-xiv-dawntrail/index.json b/site/public/v1/games/final-fantasy-xiv-dawntrail/index.json new file mode 100644 index 000000000000..5e778a1e1f33 --- /dev/null +++ b/site/public/v1/games/final-fantasy-xiv-dawntrail/index.json @@ -0,0 +1,37 @@ +{ + "id": 52806, + "slug": "final-fantasy-xiv-dawntrail", + "name": "Final Fantasy XIV: Dawntrail", + "release_date": "2024-07-02", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 5", + "PlayStation 4", + "macOS", + "Microsoft Windows" + ], + "genres": [ + "massively multiplayer online role-playing game" + ], + "stores": [], + "developers": [ + "Square Enix" + ], + "publishers": [ + "Square Enix" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125117412" + ], + "created_at": "2026-07-10T10:10:13.020046", + "updated_at": "2026-07-10T10:10:13.020046", + "url": "/v1/games/final-fantasy-xiv-dawntrail" +} diff --git a/site/public/v1/games/final-fantasy-xiv-endwalker/index.json b/site/public/v1/games/final-fantasy-xiv-endwalker/index.json new file mode 100644 index 000000000000..567e52bc0f9f --- /dev/null +++ b/site/public/v1/games/final-fantasy-xiv-endwalker/index.json @@ -0,0 +1,36 @@ +{ + "id": 52807, + "slug": "final-fantasy-xiv-endwalker", + "name": "Final Fantasy XIV: Endwalker", + "release_date": "2021-12-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 5", + "PlayStation 4", + "macOS", + "Microsoft Windows" + ], + "genres": [ + "massively multiplayer online role-playing game" + ], + "stores": [], + "developers": [ + "Square Enix" + ], + "publishers": [ + "Square Enix" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106767005" + ], + "created_at": "2026-07-10T10:10:13.021116", + "updated_at": "2026-07-10T10:10:13.021116", + "url": "/v1/games/final-fantasy-xiv-endwalker" +} diff --git a/site/public/v1/games/final-fantasy-xiv-evercold/index.json b/site/public/v1/games/final-fantasy-xiv-evercold/index.json new file mode 100644 index 000000000000..13595ec6e1d3 --- /dev/null +++ b/site/public/v1/games/final-fantasy-xiv-evercold/index.json @@ -0,0 +1,29 @@ +{ + "id": 52808, + "slug": "final-fantasy-xiv-evercold", + "name": "Final Fantasy XIV: Evercold", + "release_date": "2027-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [ + "Square Enix" + ], + "publishers": [ + "Square Enix" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139561386" + ], + "created_at": "2026-07-10T10:10:13.021116", + "updated_at": "2026-07-10T10:10:13.021116", + "url": "/v1/games/final-fantasy-xiv-evercold" +} diff --git a/site/public/v1/games/final-fantasy-xiv-shadowbringers/index.json b/site/public/v1/games/final-fantasy-xiv-shadowbringers/index.json new file mode 100644 index 000000000000..2c2f8352a96b --- /dev/null +++ b/site/public/v1/games/final-fantasy-xiv-shadowbringers/index.json @@ -0,0 +1,31 @@ +{ + "id": 52811, + "slug": "final-fantasy-xiv-shadowbringers", + "name": "Final Fantasy XIV: Shadowbringers", + "release_date": "2019-07-02", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 4", + "macOS", + "Microsoft Windows" + ], + "genres": [ + "massively multiplayer online role-playing game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q64952865" + ], + "created_at": "2026-07-10T10:10:13.022103", + "updated_at": "2026-07-10T10:10:13.022103", + "url": "/v1/games/final-fantasy-xiv-shadowbringers" +} diff --git a/site/public/v1/games/final-fantasy-xiv-stormblood/index.json b/site/public/v1/games/final-fantasy-xiv-stormblood/index.json new file mode 100644 index 000000000000..de6bafa1417a --- /dev/null +++ b/site/public/v1/games/final-fantasy-xiv-stormblood/index.json @@ -0,0 +1,35 @@ +{ + "id": 52812, + "slug": "final-fantasy-xiv-stormblood", + "name": "Final Fantasy XIV: Stormblood", + "release_date": "2017-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 4", + "macOS", + "Microsoft Windows" + ], + "genres": [ + "massively multiplayer online role-playing game" + ], + "stores": [], + "developers": [ + "Square Enix" + ], + "publishers": [ + "Square Enix" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q27513059" + ], + "created_at": "2026-07-10T10:10:13.022103", + "updated_at": "2026-07-10T10:10:13.022103", + "url": "/v1/games/final-fantasy-xiv-stormblood" +} diff --git a/site/public/v1/games/final-fantasy-xv-episode-duscae/index.json b/site/public/v1/games/final-fantasy-xv-episode-duscae/index.json new file mode 100644 index 000000000000..0835ed8e2597 --- /dev/null +++ b/site/public/v1/games/final-fantasy-xv-episode-duscae/index.json @@ -0,0 +1,28 @@ +{ + "id": 52815, + "slug": "final-fantasy-xv-episode-duscae", + "name": "Final Fantasy XV Episode Duscae", + "release_date": "2015-03-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122924998" + ], + "created_at": "2026-07-10T10:10:13.022103", + "updated_at": "2026-07-10T10:10:13.022103", + "url": "/v1/games/final-fantasy-xv-episode-duscae" +} diff --git a/site/public/v1/games/final-fantasy-xvi-echoes-of-the-fallen/index.json b/site/public/v1/games/final-fantasy-xvi-echoes-of-the-fallen/index.json new file mode 100644 index 000000000000..7b02c7fb0e68 --- /dev/null +++ b/site/public/v1/games/final-fantasy-xvi-echoes-of-the-fallen/index.json @@ -0,0 +1,25 @@ +{ + "id": 52820, + "slug": "final-fantasy-xvi-echoes-of-the-fallen", + "name": "Final Fantasy XVI: Echoes of the Fallen", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123785377" + ], + "created_at": "2026-07-10T10:10:13.024118", + "updated_at": "2026-07-10T10:10:13.024118", + "url": "/v1/games/final-fantasy-xvi-echoes-of-the-fallen" +} diff --git a/site/public/v1/games/final-fantasy-xvi-the-rising-tide/index.json b/site/public/v1/games/final-fantasy-xvi-the-rising-tide/index.json new file mode 100644 index 000000000000..c715a069f7ab --- /dev/null +++ b/site/public/v1/games/final-fantasy-xvi-the-rising-tide/index.json @@ -0,0 +1,25 @@ +{ + "id": 52821, + "slug": "final-fantasy-xvi-the-rising-tide", + "name": "Final Fantasy XVI: The Rising Tide", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123785382" + ], + "created_at": "2026-07-10T10:10:13.024118", + "updated_at": "2026-07-10T10:10:13.024118", + "url": "/v1/games/final-fantasy-xvi-the-rising-tide" +} diff --git a/site/public/v1/games/fine-art/index.json b/site/public/v1/games/fine-art/index.json new file mode 100644 index 000000000000..6c9010669a8d --- /dev/null +++ b/site/public/v1/games/fine-art/index.json @@ -0,0 +1,27 @@ +{ + "id": 53069, + "slug": "fine-art", + "name": "Fine Art", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [ + "Tencent" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28689952" + ], + "created_at": "2026-07-10T10:10:13.113579", + "updated_at": "2026-07-10T10:10:13.113579", + "url": "/v1/games/fine-art" +} diff --git a/site/public/v1/games/fire-emblem-ankoku-no-miko/index.json b/site/public/v1/games/fire-emblem-ankoku-no-miko/index.json new file mode 100644 index 000000000000..ae7bab05e047 --- /dev/null +++ b/site/public/v1/games/fire-emblem-ankoku-no-miko/index.json @@ -0,0 +1,27 @@ +{ + "id": 53165, + "slug": "fire-emblem-ankoku-no-miko", + "name": "Fire Emblem: Ankoku no Miko", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "tactical role-playing game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q74015087" + ], + "created_at": "2026-07-10T10:10:13.138711", + "updated_at": "2026-07-10T10:10:13.138711", + "url": "/v1/games/fire-emblem-ankoku-no-miko" +} diff --git a/site/public/v1/games/fire-emblem-fates-revelation/index.json b/site/public/v1/games/fire-emblem-fates-revelation/index.json new file mode 100644 index 000000000000..1af2f3bc3a44 --- /dev/null +++ b/site/public/v1/games/fire-emblem-fates-revelation/index.json @@ -0,0 +1,31 @@ +{ + "id": 53171, + "slug": "fire-emblem-fates-revelation", + "name": "Fire Emblem Fates: Revelation", + "release_date": "2015-07-09", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Nintendo 3DS" + ], + "genres": [], + "stores": [], + "developers": [ + "Intelligent Systems" + ], + "publishers": [ + "Nintendo" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123254896" + ], + "created_at": "2026-07-10T10:10:13.140702", + "updated_at": "2026-07-10T10:10:13.140702", + "url": "/v1/games/fire-emblem-fates-revelation" +} diff --git a/site/public/v1/games/fire-emblem-fates-special-edition/index.json b/site/public/v1/games/fire-emblem-fates-special-edition/index.json new file mode 100644 index 000000000000..56bc27f8bad0 --- /dev/null +++ b/site/public/v1/games/fire-emblem-fates-special-edition/index.json @@ -0,0 +1,31 @@ +{ + "id": 53172, + "slug": "fire-emblem-fates-special-edition", + "name": "Fire Emblem Fates: Special Edition", + "release_date": "2015-06-25", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Nintendo 3DS" + ], + "genres": [], + "stores": [], + "developers": [ + "Intelligent Systems" + ], + "publishers": [ + "Nintendo" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130720338" + ], + "created_at": "2026-07-10T10:10:13.140702", + "updated_at": "2026-07-10T10:10:13.140702", + "url": "/v1/games/fire-emblem-fates-special-edition" +} diff --git a/site/public/v1/games/firefly-the-game-blue-sun-expansion/index.json b/site/public/v1/games/firefly-the-game-blue-sun-expansion/index.json new file mode 100644 index 000000000000..292c562d8964 --- /dev/null +++ b/site/public/v1/games/firefly-the-game-blue-sun-expansion/index.json @@ -0,0 +1,25 @@ +{ + "id": 53308, + "slug": "firefly-the-game-blue-sun-expansion", + "name": "Firefly: The Game – Blue Sun Expansion", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q47539274" + ], + "created_at": "2026-07-10T10:10:13.175734", + "updated_at": "2026-07-10T10:10:13.175734", + "url": "/v1/games/firefly-the-game-blue-sun-expansion" +} diff --git a/site/public/v1/games/fisheye-quake/index.json b/site/public/v1/games/fisheye-quake/index.json new file mode 100644 index 000000000000..ccb5c1095c72 --- /dev/null +++ b/site/public/v1/games/fisheye-quake/index.json @@ -0,0 +1,25 @@ +{ + "id": 53541, + "slug": "fisheye-quake", + "name": "Fisheye Quake", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121409828" + ], + "created_at": "2026-07-10T10:10:13.239382", + "updated_at": "2026-07-10T10:10:13.239382", + "url": "/v1/games/fisheye-quake" +} diff --git a/site/public/v1/games/fitzquake/index.json b/site/public/v1/games/fitzquake/index.json new file mode 100644 index 000000000000..0902eefbb541 --- /dev/null +++ b/site/public/v1/games/fitzquake/index.json @@ -0,0 +1,25 @@ +{ + "id": 53676, + "slug": "fitzquake", + "name": "FitzQuake", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120671240" + ], + "created_at": "2026-07-10T10:10:13.275462", + "updated_at": "2026-07-10T10:10:13.275462", + "url": "/v1/games/fitzquake" +} diff --git a/site/public/v1/games/five-nights-at-freddy-s-security-breach-ruin/index.json b/site/public/v1/games/five-nights-at-freddy-s-security-breach-ruin/index.json new file mode 100644 index 000000000000..b61e46b28fa2 --- /dev/null +++ b/site/public/v1/games/five-nights-at-freddy-s-security-breach-ruin/index.json @@ -0,0 +1,31 @@ +{ + "id": 53725, + "slug": "five-nights-at-freddy-s-security-breach-ruin", + "name": "Five Nights at Freddy's: Security Breach - Ruin", + "release_date": "2023-07-25", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 4", + "PlayStation 5", + "Microsoft Windows" + ], + "genres": [ + "survival horror" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121318668" + ], + "created_at": "2026-07-10T10:10:13.288440", + "updated_at": "2026-07-10T10:10:13.288440", + "url": "/v1/games/five-nights-at-freddy-s-security-breach-ruin" +} diff --git a/site/public/v1/games/five-nights-at-freddy-s-survival-crew/index.json b/site/public/v1/games/five-nights-at-freddy-s-survival-crew/index.json new file mode 100644 index 000000000000..a23b29af1c50 --- /dev/null +++ b/site/public/v1/games/five-nights-at-freddy-s-survival-crew/index.json @@ -0,0 +1,25 @@ +{ + "id": 53730, + "slug": "five-nights-at-freddy-s-survival-crew", + "name": "Five Nights at Freddy's: Survival Crew", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127272617" + ], + "created_at": "2026-07-10T10:10:13.290438", + "updated_at": "2026-07-10T10:10:13.290438", + "url": "/v1/games/five-nights-at-freddy-s-survival-crew" +} diff --git a/site/public/v1/games/fivem/index.json b/site/public/v1/games/fivem/index.json new file mode 100644 index 000000000000..6a0998d1ce0c --- /dev/null +++ b/site/public/v1/games/fivem/index.json @@ -0,0 +1,29 @@ +{ + "id": 53766, + "slug": "fivem", + "name": "FiveM", + "release_date": "2016-06-30", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "action-adventure game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q68206674" + ], + "created_at": "2026-07-10T10:10:13.299510", + "updated_at": "2026-07-10T10:10:13.299510", + "url": "/v1/games/fivem" +} diff --git a/site/public/v1/games/flashback-legend/index.json b/site/public/v1/games/flashback-legend/index.json new file mode 100644 index 000000000000..b0e281d2e97e --- /dev/null +++ b/site/public/v1/games/flashback-legend/index.json @@ -0,0 +1,25 @@ +{ + "id": 53909, + "slug": "flashback-legend", + "name": "Flashback Legend", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131632585" + ], + "created_at": "2026-07-10T10:10:13.369651", + "updated_at": "2026-07-10T10:10:13.369651", + "url": "/v1/games/flashback-legend" +} diff --git a/site/public/v1/games/flight-of-nova-demo/index.json b/site/public/v1/games/flight-of-nova-demo/index.json new file mode 100644 index 000000000000..8ebf6041cbc1 --- /dev/null +++ b/site/public/v1/games/flight-of-nova-demo/index.json @@ -0,0 +1,35 @@ +{ + "id": 54076, + "slug": "flight-of-nova-demo", + "name": "Flight of Nova Demo", + "release_date": "2022-02-21", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "space flight simulation game", + "science fiction video game" + ], + "stores": [], + "developers": [ + "David Lloyd", + "Aerovery Lab" + ], + "publishers": [ + "Aerovery Lab" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122756330" + ], + "created_at": "2026-07-10T10:10:13.414237", + "updated_at": "2026-07-10T10:10:13.414237", + "url": "/v1/games/flight-of-nova-demo" +} diff --git a/site/public/v1/games/flipflop-solitaire/index.json b/site/public/v1/games/flipflop-solitaire/index.json new file mode 100644 index 000000000000..2b950c03d57e --- /dev/null +++ b/site/public/v1/games/flipflop-solitaire/index.json @@ -0,0 +1,30 @@ +{ + "id": 54145, + "slug": "flipflop-solitaire", + "name": "Flipflop Solitaire+", + "release_date": "2021-04-02", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "iPadOS", + "iOS" + ], + "genres": [], + "stores": [], + "developers": [ + "Zach Gage" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107174439" + ], + "created_at": "2026-07-10T10:10:13.432731", + "updated_at": "2026-07-10T10:10:13.432731", + "url": "/v1/games/flipflop-solitaire" +} diff --git a/site/public/v1/games/flipping-filip/index.json b/site/public/v1/games/flipping-filip/index.json new file mode 100644 index 000000000000..bfcc5df0f5c4 --- /dev/null +++ b/site/public/v1/games/flipping-filip/index.json @@ -0,0 +1,25 @@ +{ + "id": 54168, + "slug": "flipping-filip", + "name": "Flipping Filip", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120669795" + ], + "created_at": "2026-07-10T10:10:13.438677", + "updated_at": "2026-07-10T10:10:13.438677", + "url": "/v1/games/flipping-filip" +} diff --git a/site/public/v1/games/flipside/index.json b/site/public/v1/games/flipside/index.json new file mode 100644 index 000000000000..a75abe009258 --- /dev/null +++ b/site/public/v1/games/flipside/index.json @@ -0,0 +1,29 @@ +{ + "id": 54176, + "slug": "flipside", + "name": "Flipside", + "release_date": "2007-06-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "platformer" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5459732" + ], + "created_at": "2026-07-10T10:10:13.440753", + "updated_at": "2026-07-10T10:10:13.440753", + "url": "/v1/games/flipside" +} diff --git a/site/public/v1/games/fluffy-friends-2-wallpapers-ost/index.json b/site/public/v1/games/fluffy-friends-2-wallpapers-ost/index.json new file mode 100644 index 000000000000..9234b2dbbe04 --- /dev/null +++ b/site/public/v1/games/fluffy-friends-2-wallpapers-ost/index.json @@ -0,0 +1,32 @@ +{ + "id": 54416, + "slug": "fluffy-friends-2-wallpapers-ost", + "name": "Fluffy Friends 2 - Wallpapers & OST", + "release_date": "2017-11-22", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "For Kids" + ], + "publishers": [ + "For Kids" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117835908" + ], + "created_at": "2026-07-10T10:10:13.579319", + "updated_at": "2026-07-10T10:10:13.579319", + "url": "/v1/games/fluffy-friends-2-wallpapers-ost" +} diff --git a/site/public/v1/games/fluffy-friends-dlc/index.json b/site/public/v1/games/fluffy-friends-dlc/index.json new file mode 100644 index 000000000000..5e350cd92494 --- /dev/null +++ b/site/public/v1/games/fluffy-friends-dlc/index.json @@ -0,0 +1,32 @@ +{ + "id": 54418, + "slug": "fluffy-friends-dlc", + "name": "Fluffy Friends - DLC", + "release_date": "2017-11-29", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "For Kids" + ], + "publishers": [ + "For Kids" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117835906" + ], + "created_at": "2026-07-10T10:10:13.579319", + "updated_at": "2026-07-10T10:10:13.579319", + "url": "/v1/games/fluffy-friends-dlc" +} diff --git a/site/public/v1/games/flyin-high-data-disk-1/index.json b/site/public/v1/games/flyin-high-data-disk-1/index.json new file mode 100644 index 000000000000..9b30c4a7fa0c --- /dev/null +++ b/site/public/v1/games/flyin-high-data-disk-1/index.json @@ -0,0 +1,25 @@ +{ + "id": 54524, + "slug": "flyin-high-data-disk-1", + "name": "Flyin' High Data Disk 1", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126184338" + ], + "created_at": "2026-07-10T10:10:13.629943", + "updated_at": "2026-07-10T10:10:13.629943", + "url": "/v1/games/flyin-high-data-disk-1" +} diff --git a/site/public/v1/games/fnaf-franchise-bundle/index.json b/site/public/v1/games/fnaf-franchise-bundle/index.json new file mode 100644 index 000000000000..c0991f5db093 --- /dev/null +++ b/site/public/v1/games/fnaf-franchise-bundle/index.json @@ -0,0 +1,33 @@ +{ + "id": 54613, + "slug": "fnaf-franchise-bundle", + "name": "FNaF Franchise Bundle", + "release_date": "2016-10-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "survival horror" + ], + "stores": [], + "developers": [ + "Scott Cawthon" + ], + "publishers": [ + "Scott Cawthon" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q70599351" + ], + "created_at": "2026-07-10T10:10:13.653944", + "updated_at": "2026-07-10T10:10:13.653944", + "url": "/v1/games/fnaf-franchise-bundle" +} diff --git a/site/public/v1/games/football-manager-2021-mobile/index.json b/site/public/v1/games/football-manager-2021-mobile/index.json new file mode 100644 index 000000000000..3b7a396fba12 --- /dev/null +++ b/site/public/v1/games/football-manager-2021-mobile/index.json @@ -0,0 +1,27 @@ +{ + "id": 54846, + "slug": "football-manager-2021-mobile", + "name": "Football Manager 2021 Mobile", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "association football video game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135553269" + ], + "created_at": "2026-07-10T10:10:13.714154", + "updated_at": "2026-07-10T10:10:13.714154", + "url": "/v1/games/football-manager-2021-mobile" +} diff --git a/site/public/v1/games/football-manager-2022-mobile/index.json b/site/public/v1/games/football-manager-2022-mobile/index.json new file mode 100644 index 000000000000..69b3310c2c7f --- /dev/null +++ b/site/public/v1/games/football-manager-2022-mobile/index.json @@ -0,0 +1,29 @@ +{ + "id": 54849, + "slug": "football-manager-2022-mobile", + "name": "Football Manager 2022 Mobile", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "iOS" + ], + "genres": [ + "association football video game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135553279" + ], + "created_at": "2026-07-10T10:10:13.715209", + "updated_at": "2026-07-10T10:10:13.715209", + "url": "/v1/games/football-manager-2022-mobile" +} diff --git a/site/public/v1/games/football-manager-2023-console/index.json b/site/public/v1/games/football-manager-2023-console/index.json new file mode 100644 index 000000000000..ab430d97e600 --- /dev/null +++ b/site/public/v1/games/football-manager-2023-console/index.json @@ -0,0 +1,35 @@ +{ + "id": 54852, + "slug": "football-manager-2023-console", + "name": "Football Manager 2023 Console", + "release_date": "2022-11-08", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 5", + "Microsoft Windows" + ], + "genres": [ + "association football management game" + ], + "stores": [], + "developers": [ + "Sports Interactive" + ], + "publishers": [ + "SEGA Europe" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116940065" + ], + "created_at": "2026-07-10T10:10:13.716172", + "updated_at": "2026-07-10T10:10:13.716172", + "url": "/v1/games/football-manager-2023-console" +} diff --git a/site/public/v1/games/football-manager-2023-touch/index.json b/site/public/v1/games/football-manager-2023-touch/index.json new file mode 100644 index 000000000000..0d649c82b439 --- /dev/null +++ b/site/public/v1/games/football-manager-2023-touch/index.json @@ -0,0 +1,32 @@ +{ + "id": 54853, + "slug": "football-manager-2023-touch", + "name": "Football Manager 2023 Touch", + "release_date": "2022-11-08", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "iPadOS", + "macOS", + "tvOS", + "iOS" + ], + "genres": [ + "association football management game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113884499" + ], + "created_at": "2026-07-10T10:10:13.716172", + "updated_at": "2026-07-10T10:10:13.716172", + "url": "/v1/games/football-manager-2023-touch" +} diff --git a/site/public/v1/games/football-manager-2024-mobile/index.json b/site/public/v1/games/football-manager-2024-mobile/index.json new file mode 100644 index 000000000000..54543d8ad2c5 --- /dev/null +++ b/site/public/v1/games/football-manager-2024-mobile/index.json @@ -0,0 +1,30 @@ +{ + "id": 54855, + "slug": "football-manager-2024-mobile", + "name": "Football Manager 2024 Mobile", + "release_date": "2023-11-06", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "iPadOS", + "iOS" + ], + "genres": [ + "association football management game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124156731" + ], + "created_at": "2026-07-10T10:10:13.716172", + "updated_at": "2026-07-10T10:10:13.716172", + "url": "/v1/games/football-manager-2024-mobile" +} diff --git a/site/public/v1/games/football-manager-2024-touch/index.json b/site/public/v1/games/football-manager-2024-touch/index.json new file mode 100644 index 000000000000..862578b25539 --- /dev/null +++ b/site/public/v1/games/football-manager-2024-touch/index.json @@ -0,0 +1,32 @@ +{ + "id": 54856, + "slug": "football-manager-2024-touch", + "name": "Football Manager 2024 Touch", + "release_date": "2023-11-06", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "iPadOS", + "tvOS", + "iOS", + "macOS" + ], + "genres": [ + "association football management game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124156559" + ], + "created_at": "2026-07-10T10:10:13.717165", + "updated_at": "2026-07-10T10:10:13.717165", + "url": "/v1/games/football-manager-2024-touch" +} diff --git a/site/public/v1/games/force/index.json b/site/public/v1/games/force/index.json new file mode 100644 index 000000000000..716fa1983d5d --- /dev/null +++ b/site/public/v1/games/force/index.json @@ -0,0 +1,25 @@ +{ + "id": 55014, + "slug": "force", + "name": "FORCE", + "release_date": "1982-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60792607" + ], + "created_at": "2026-07-10T10:10:13.759670", + "updated_at": "2026-07-10T10:10:13.759670", + "url": "/v1/games/force" +} diff --git a/site/public/v1/games/forgotten-hope-q24496/index.json b/site/public/v1/games/forgotten-hope-q24496/index.json new file mode 100644 index 000000000000..9a86da90b656 --- /dev/null +++ b/site/public/v1/games/forgotten-hope-q24496/index.json @@ -0,0 +1,34 @@ +{ + "id": 55273, + "slug": "forgotten-hope-q24496", + "name": "Forgotten Hope", + "release_date": "2006-03-14", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "first-person shooter" + ], + "stores": [], + "developers": [ + "Forgotten Hope Devs" + ], + "publishers": [ + "Forgotten Hope Devs" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q24496" + ], + "created_at": "2026-07-10T10:10:13.879585", + "updated_at": "2026-07-10T10:10:13.879585", + "url": "/v1/games/forgotten-hope-q24496" +} diff --git a/site/public/v1/games/forgotten-realms-the-archives-collection-one/index.json b/site/public/v1/games/forgotten-realms-the-archives-collection-one/index.json new file mode 100644 index 000000000000..2b35718650fa --- /dev/null +++ b/site/public/v1/games/forgotten-realms-the-archives-collection-one/index.json @@ -0,0 +1,29 @@ +{ + "id": 55300, + "slug": "forgotten-realms-the-archives-collection-one", + "name": "Forgotten Realms: The Archives - Collection One", + "release_date": "2022-03-29", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "role-playing video game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135020867" + ], + "created_at": "2026-07-10T10:10:13.897650", + "updated_at": "2026-07-10T10:10:13.897650", + "url": "/v1/games/forgotten-realms-the-archives-collection-one" +} diff --git a/site/public/v1/games/forgotten-realms-the-archives-collection-three/index.json b/site/public/v1/games/forgotten-realms-the-archives-collection-three/index.json new file mode 100644 index 000000000000..edfe011eead5 --- /dev/null +++ b/site/public/v1/games/forgotten-realms-the-archives-collection-three/index.json @@ -0,0 +1,32 @@ +{ + "id": 55301, + "slug": "forgotten-realms-the-archives-collection-three", + "name": "Forgotten Realms: The Archives - Collection Three", + "release_date": "2022-03-29", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "action game", + "role-playing video game" + ], + "stores": [], + "developers": [ + "DreamForge Intertainment" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122307050" + ], + "created_at": "2026-07-10T10:10:13.897650", + "updated_at": "2026-07-10T10:10:13.897650", + "url": "/v1/games/forgotten-realms-the-archives-collection-three" +} diff --git a/site/public/v1/games/forgotten-realms-the-archives-collection-two/index.json b/site/public/v1/games/forgotten-realms-the-archives-collection-two/index.json new file mode 100644 index 000000000000..56a0b214f004 --- /dev/null +++ b/site/public/v1/games/forgotten-realms-the-archives-collection-two/index.json @@ -0,0 +1,29 @@ +{ + "id": 55302, + "slug": "forgotten-realms-the-archives-collection-two", + "name": "Forgotten Realms: The Archives - Collection Two", + "release_date": "2022-03-29", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "role-playing video game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135020869" + ], + "created_at": "2026-07-10T10:10:13.898646", + "updated_at": "2026-07-10T10:10:13.898646", + "url": "/v1/games/forgotten-realms-the-archives-collection-two" +} diff --git a/site/public/v1/games/forsaken-patrol/index.json b/site/public/v1/games/forsaken-patrol/index.json new file mode 100644 index 000000000000..4ebffe741e6b --- /dev/null +++ b/site/public/v1/games/forsaken-patrol/index.json @@ -0,0 +1,25 @@ +{ + "id": 55430, + "slug": "forsaken-patrol", + "name": "Forsaken Patrol", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140360872" + ], + "created_at": "2026-07-10T10:10:13.937596", + "updated_at": "2026-07-10T10:10:13.937596", + "url": "/v1/games/forsaken-patrol" +} diff --git a/site/public/v1/games/forspoken-in-tanta-we-trust/index.json b/site/public/v1/games/forspoken-in-tanta-we-trust/index.json new file mode 100644 index 000000000000..1e2fc5a454e5 --- /dev/null +++ b/site/public/v1/games/forspoken-in-tanta-we-trust/index.json @@ -0,0 +1,25 @@ +{ + "id": 55450, + "slug": "forspoken-in-tanta-we-trust", + "name": "Forspoken: In Tanta We Trust", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140447667" + ], + "created_at": "2026-07-10T10:10:13.943605", + "updated_at": "2026-07-10T10:10:13.943605", + "url": "/v1/games/forspoken-in-tanta-we-trust" +} diff --git a/site/public/v1/games/fortress-q153070/index.json b/site/public/v1/games/fortress-q153070/index.json new file mode 100644 index 000000000000..6efb7fbb6d61 --- /dev/null +++ b/site/public/v1/games/fortress-q153070/index.json @@ -0,0 +1,34 @@ +{ + "id": 55510, + "slug": "fortress-q153070", + "name": "Fortress", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 3", + "Microsoft Windows" + ], + "genres": [ + "action role-playing game" + ], + "stores": [], + "developers": [ + "Grin" + ], + "publishers": [ + "Square Enix" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q153070" + ], + "created_at": "2026-07-10T10:10:13.964286", + "updated_at": "2026-07-10T10:10:13.964286", + "url": "/v1/games/fortress-q153070" +} diff --git a/site/public/v1/games/forts-high-seas/index.json b/site/public/v1/games/forts-high-seas/index.json new file mode 100644 index 000000000000..d005d0d36627 --- /dev/null +++ b/site/public/v1/games/forts-high-seas/index.json @@ -0,0 +1,29 @@ +{ + "id": 55522, + "slug": "forts-high-seas", + "name": "Forts - High Seas", + "release_date": "2022-03-25", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "EarthWork Games" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111366575" + ], + "created_at": "2026-07-10T10:10:13.967291", + "updated_at": "2026-07-10T10:10:13.967291", + "url": "/v1/games/forts-high-seas" +} diff --git a/site/public/v1/games/forts-moonshot/index.json b/site/public/v1/games/forts-moonshot/index.json new file mode 100644 index 000000000000..c39aae670c6a --- /dev/null +++ b/site/public/v1/games/forts-moonshot/index.json @@ -0,0 +1,29 @@ +{ + "id": 55523, + "slug": "forts-moonshot", + "name": "Forts - Moonshot", + "release_date": "2019-06-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "EarthWork Games" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111354042" + ], + "created_at": "2026-07-10T10:10:13.967291", + "updated_at": "2026-07-10T10:10:13.967291", + "url": "/v1/games/forts-moonshot" +} diff --git a/site/public/v1/games/fortune-tiger/index.json b/site/public/v1/games/fortune-tiger/index.json new file mode 100644 index 000000000000..392d786500a5 --- /dev/null +++ b/site/public/v1/games/fortune-tiger/index.json @@ -0,0 +1,27 @@ +{ + "id": 55555, + "slug": "fortune-tiger", + "name": "Fortune Tiger", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "slot machine" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126884564" + ], + "created_at": "2026-07-10T10:10:13.976290", + "updated_at": "2026-07-10T10:10:13.976290", + "url": "/v1/games/fortune-tiger" +} diff --git a/site/public/v1/games/forward-escape-the-fold-demo/index.json b/site/public/v1/games/forward-escape-the-fold-demo/index.json new file mode 100644 index 000000000000..4281a820b458 --- /dev/null +++ b/site/public/v1/games/forward-escape-the-fold-demo/index.json @@ -0,0 +1,35 @@ +{ + "id": 55568, + "slug": "forward-escape-the-fold-demo", + "name": "Forward: Escape the Fold Demo", + "release_date": "2022-02-09", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "dungeon crawl", + "roguelike deck-building game" + ], + "stores": [], + "developers": [ + "Two Tiny Dice" + ], + "publishers": [ + "Indie Asylum" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125491153" + ], + "created_at": "2026-07-10T10:10:13.980350", + "updated_at": "2026-07-10T10:10:13.980350", + "url": "/v1/games/forward-escape-the-fold-demo" +} diff --git a/site/public/v1/games/forza-horizon-5-hot-wheels/index.json b/site/public/v1/games/forza-horizon-5-hot-wheels/index.json new file mode 100644 index 000000000000..aaa39e49fe95 --- /dev/null +++ b/site/public/v1/games/forza-horizon-5-hot-wheels/index.json @@ -0,0 +1,25 @@ +{ + "id": 55581, + "slug": "forza-horizon-5-hot-wheels", + "name": "Forza Horizon 5: Hot Wheels", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140472310" + ], + "created_at": "2026-07-10T10:10:13.983369", + "updated_at": "2026-07-10T10:10:13.983369", + "url": "/v1/games/forza-horizon-5-hot-wheels" +} diff --git a/site/public/v1/games/four-seasons-theme/index.json b/site/public/v1/games/four-seasons-theme/index.json new file mode 100644 index 000000000000..4b12c42f365b --- /dev/null +++ b/site/public/v1/games/four-seasons-theme/index.json @@ -0,0 +1,31 @@ +{ + "id": 55668, + "slug": "four-seasons-theme", + "name": "Four Seasons Theme", + "release_date": "2014-10-02", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation Vita" + ], + "genres": [], + "stores": [], + "developers": [ + "Sony Interactive Entertainment" + ], + "publishers": [ + "Sony Interactive Entertainment" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q61517547" + ], + "created_at": "2026-07-10T10:10:14.041447", + "updated_at": "2026-07-10T10:10:14.041447", + "url": "/v1/games/four-seasons-theme" +} diff --git a/site/public/v1/games/fous-du-volant-les/index.json b/site/public/v1/games/fous-du-volant-les/index.json new file mode 100644 index 000000000000..068bb878f3fb --- /dev/null +++ b/site/public/v1/games/fous-du-volant-les/index.json @@ -0,0 +1,25 @@ +{ + "id": 55688, + "slug": "fous-du-volant-les", + "name": "Fous Du Volant, Les", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126188325" + ], + "created_at": "2026-07-10T10:10:14.066447", + "updated_at": "2026-07-10T10:10:14.066447", + "url": "/v1/games/fous-du-volant-les" +} diff --git a/site/public/v1/games/framed-collection/index.json b/site/public/v1/games/framed-collection/index.json new file mode 100644 index 000000000000..d08c3fb3a5a8 --- /dev/null +++ b/site/public/v1/games/framed-collection/index.json @@ -0,0 +1,33 @@ +{ + "id": 55925, + "slug": "framed-collection", + "name": "Framed Collection", + "release_date": "2018-05-17", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Mac", + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Loveshack Entertainment" + ], + "publishers": [ + "Fellow Traveller" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q102046491" + ], + "created_at": "2026-07-10T10:10:14.168934", + "updated_at": "2026-07-10T10:10:14.168934", + "url": "/v1/games/framed-collection" +} diff --git a/site/public/v1/games/free-internet-chess-server/index.json b/site/public/v1/games/free-internet-chess-server/index.json new file mode 100644 index 000000000000..f3ec4f0e564d --- /dev/null +++ b/site/public/v1/games/free-internet-chess-server/index.json @@ -0,0 +1,25 @@ +{ + "id": 56088, + "slug": "free-internet-chess-server", + "name": "Free Internet Chess Server", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1198511" + ], + "created_at": "2026-07-10T10:10:14.245665", + "updated_at": "2026-07-10T10:10:14.245665", + "url": "/v1/games/free-internet-chess-server" +} diff --git a/site/public/v1/games/freehl/index.json b/site/public/v1/games/freehl/index.json new file mode 100644 index 000000000000..bc0b3d6d6c85 --- /dev/null +++ b/site/public/v1/games/freehl/index.json @@ -0,0 +1,25 @@ +{ + "id": 56175, + "slug": "freehl", + "name": "FreeHL", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122170864" + ], + "created_at": "2026-07-10T10:10:14.268722", + "updated_at": "2026-07-10T10:10:14.268722", + "url": "/v1/games/freehl" +} diff --git a/site/public/v1/games/freeze-putt/index.json b/site/public/v1/games/freeze-putt/index.json new file mode 100644 index 000000000000..a59e9976ca5d --- /dev/null +++ b/site/public/v1/games/freeze-putt/index.json @@ -0,0 +1,25 @@ +{ + "id": 56230, + "slug": "freeze-putt", + "name": "Freeze-Putt", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q128014875" + ], + "created_at": "2026-07-10T10:10:14.284758", + "updated_at": "2026-07-10T10:10:14.284758", + "url": "/v1/games/freeze-putt" +} diff --git a/site/public/v1/games/frontlines/index.json b/site/public/v1/games/frontlines/index.json new file mode 100644 index 000000000000..7d0fe38d4bca --- /dev/null +++ b/site/public/v1/games/frontlines/index.json @@ -0,0 +1,30 @@ +{ + "id": 56712, + "slug": "frontlines", + "name": "Frontlines", + "release_date": "2022-02-22", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "first-person shooter" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q119822390" + ], + "created_at": "2026-07-10T10:10:14.518388", + "updated_at": "2026-07-10T10:10:14.518388", + "url": "/v1/games/frontlines" +} diff --git a/site/public/v1/games/frostpunk-on-the-edge/index.json b/site/public/v1/games/frostpunk-on-the-edge/index.json new file mode 100644 index 000000000000..8eafd7c5efd9 --- /dev/null +++ b/site/public/v1/games/frostpunk-on-the-edge/index.json @@ -0,0 +1,32 @@ +{ + "id": 56743, + "slug": "frostpunk-on-the-edge", + "name": "Frostpunk: On The Edge", + "release_date": "2020-08-20", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "11 Bit Studios" + ], + "publishers": [ + "11 Bit Studios" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113178900" + ], + "created_at": "2026-07-10T10:10:14.526336", + "updated_at": "2026-07-10T10:10:14.526336", + "url": "/v1/games/frostpunk-on-the-edge" +} diff --git a/site/public/v1/games/frostpunk-the-last-autumn/index.json b/site/public/v1/games/frostpunk-the-last-autumn/index.json new file mode 100644 index 000000000000..89dd6561cd52 --- /dev/null +++ b/site/public/v1/games/frostpunk-the-last-autumn/index.json @@ -0,0 +1,32 @@ +{ + "id": 56744, + "slug": "frostpunk-the-last-autumn", + "name": "Frostpunk: The Last Autumn", + "release_date": "2020-01-21", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "11 Bit Studios" + ], + "publishers": [ + "11 Bit Studios" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113178878" + ], + "created_at": "2026-07-10T10:10:14.526336", + "updated_at": "2026-07-10T10:10:14.526336", + "url": "/v1/games/frostpunk-the-last-autumn" +} diff --git a/site/public/v1/games/frostpunk-the-rifts/index.json b/site/public/v1/games/frostpunk-the-rifts/index.json new file mode 100644 index 000000000000..49a733ee0f14 --- /dev/null +++ b/site/public/v1/games/frostpunk-the-rifts/index.json @@ -0,0 +1,32 @@ +{ + "id": 56745, + "slug": "frostpunk-the-rifts", + "name": "Frostpunk: The Rifts", + "release_date": "2019-08-27", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "11 Bit Studios" + ], + "publishers": [ + "11 Bit Studios" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113178862" + ], + "created_at": "2026-07-10T10:10:14.526336", + "updated_at": "2026-07-10T10:10:14.526336", + "url": "/v1/games/frostpunk-the-rifts" +} diff --git a/site/public/v1/games/fruit-couple-extra/index.json b/site/public/v1/games/fruit-couple-extra/index.json new file mode 100644 index 000000000000..287b16194d26 --- /dev/null +++ b/site/public/v1/games/fruit-couple-extra/index.json @@ -0,0 +1,34 @@ +{ + "id": 56788, + "slug": "fruit-couple-extra", + "name": "Fruit couple🍉 EXTRA", + "release_date": "2019-04-15", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "match-three video game" + ], + "stores": [], + "developers": [ + "Sly" + ], + "publishers": [ + "SlyGames" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q71004552" + ], + "created_at": "2026-07-10T10:10:14.537931", + "updated_at": "2026-07-10T10:10:14.537931", + "url": "/v1/games/fruit-couple-extra" +} diff --git a/site/public/v1/games/fruit-ninja-classic/index.json b/site/public/v1/games/fruit-ninja-classic/index.json new file mode 100644 index 000000000000..8450dcb4a06c --- /dev/null +++ b/site/public/v1/games/fruit-ninja-classic/index.json @@ -0,0 +1,32 @@ +{ + "id": 56812, + "slug": "fruit-ninja-classic", + "name": "Fruit Ninja Classic+", + "release_date": "2021-04-02", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "iPadOS", + "iOS" + ], + "genres": [], + "stores": [], + "developers": [ + "Halfbrick Studios" + ], + "publishers": [ + "Australia" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107174899" + ], + "created_at": "2026-07-10T10:10:14.543858", + "updated_at": "2026-07-10T10:10:14.543858", + "url": "/v1/games/fruit-ninja-classic" +} diff --git a/site/public/v1/games/full-blast/index.json b/site/public/v1/games/full-blast/index.json new file mode 100644 index 000000000000..8a47ecf3271a --- /dev/null +++ b/site/public/v1/games/full-blast/index.json @@ -0,0 +1,25 @@ +{ + "id": 56925, + "slug": "full-blast", + "name": "Full Blast", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126185792" + ], + "created_at": "2026-07-10T10:10:14.588854", + "updated_at": "2026-07-10T10:10:14.588854", + "url": "/v1/games/full-blast" +} diff --git a/site/public/v1/games/full-throttle-hell-on-wheels/index.json b/site/public/v1/games/full-throttle-hell-on-wheels/index.json new file mode 100644 index 000000000000..950ac8854ae7 --- /dev/null +++ b/site/public/v1/games/full-throttle-hell-on-wheels/index.json @@ -0,0 +1,25 @@ +{ + "id": 56973, + "slug": "full-throttle-hell-on-wheels", + "name": "Full Throttle: Hell on Wheels", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123572461" + ], + "created_at": "2026-07-10T10:10:14.600924", + "updated_at": "2026-07-10T10:10:14.600924", + "url": "/v1/games/full-throttle-hell-on-wheels" +} diff --git a/site/public/v1/games/full-throttle-payback/index.json b/site/public/v1/games/full-throttle-payback/index.json new file mode 100644 index 000000000000..0b207ceadbd3 --- /dev/null +++ b/site/public/v1/games/full-throttle-payback/index.json @@ -0,0 +1,25 @@ +{ + "id": 56974, + "slug": "full-throttle-payback", + "name": "Full Throttle: Payback", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123572484" + ], + "created_at": "2026-07-10T10:10:14.600924", + "updated_at": "2026-07-10T10:10:14.600924", + "url": "/v1/games/full-throttle-payback" +} diff --git a/site/public/v1/games/fun-radio-la-compil-micro-2-la-passion-du-sport-s-affiche/index.json b/site/public/v1/games/fun-radio-la-compil-micro-2-la-passion-du-sport-s-affiche/index.json new file mode 100644 index 000000000000..b9dcd9d69202 --- /dev/null +++ b/site/public/v1/games/fun-radio-la-compil-micro-2-la-passion-du-sport-s-affiche/index.json @@ -0,0 +1,25 @@ +{ + "id": 57027, + "slug": "fun-radio-la-compil-micro-2-la-passion-du-sport-s-affiche", + "name": "Fun Radio La Compil Micro 2: La Passion Du Sport S'Affiche!", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126185502" + ], + "created_at": "2026-07-10T10:10:14.615027", + "updated_at": "2026-07-10T10:10:14.615027", + "url": "/v1/games/fun-radio-la-compil-micro-2-la-passion-du-sport-s-affiche" +} diff --git a/site/public/v1/games/funfair-dlc/index.json b/site/public/v1/games/funfair-dlc/index.json new file mode 100644 index 000000000000..d8f6d1b72ddc --- /dev/null +++ b/site/public/v1/games/funfair-dlc/index.json @@ -0,0 +1,28 @@ +{ + "id": 57066, + "slug": "funfair-dlc", + "name": "Funfair DLC", + "release_date": "2012-10-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60607938" + ], + "created_at": "2026-07-10T10:10:14.627039", + "updated_at": "2026-07-10T10:10:14.627039", + "url": "/v1/games/funfair-dlc" +} diff --git a/site/public/v1/games/funtime-pack/index.json b/site/public/v1/games/funtime-pack/index.json new file mode 100644 index 000000000000..712be2689152 --- /dev/null +++ b/site/public/v1/games/funtime-pack/index.json @@ -0,0 +1,27 @@ +{ + "id": 57144, + "slug": "funtime-pack", + "name": "FUNTIME! Pack", + "release_date": "2012-02-14", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60586783" + ], + "created_at": "2026-07-10T10:10:14.648752", + "updated_at": "2026-07-10T10:10:14.648752", + "url": "/v1/games/funtime-pack" +} diff --git a/site/public/v1/games/furi-one-more-fight/index.json b/site/public/v1/games/furi-one-more-fight/index.json new file mode 100644 index 000000000000..940c5c8dabc2 --- /dev/null +++ b/site/public/v1/games/furi-one-more-fight/index.json @@ -0,0 +1,27 @@ +{ + "id": 57175, + "slug": "furi-one-more-fight", + "name": "Furi - One More Fight", + "release_date": "2017-03-15", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q104417612" + ], + "created_at": "2026-07-10T10:10:14.657878", + "updated_at": "2026-07-10T10:10:14.657878", + "url": "/v1/games/furi-one-more-fight" +} diff --git a/site/public/v1/games/future-strike/index.json b/site/public/v1/games/future-strike/index.json new file mode 100644 index 000000000000..82220e1fc3a0 --- /dev/null +++ b/site/public/v1/games/future-strike/index.json @@ -0,0 +1,25 @@ +{ + "id": 57487, + "slug": "future-strike", + "name": "Future Strike", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110909272" + ], + "created_at": "2026-07-10T10:10:14.740503", + "updated_at": "2026-07-10T10:10:14.740503", + "url": "/v1/games/future-strike" +} diff --git a/site/public/v1/games/galactic-civilizations-altarian-prophecy/index.json b/site/public/v1/games/galactic-civilizations-altarian-prophecy/index.json new file mode 100644 index 000000000000..accc1d401f04 --- /dev/null +++ b/site/public/v1/games/galactic-civilizations-altarian-prophecy/index.json @@ -0,0 +1,25 @@ +{ + "id": 57759, + "slug": "galactic-civilizations-altarian-prophecy", + "name": "Galactic Civilizations: Altarian Prophecy", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110155812" + ], + "created_at": "2026-07-10T10:10:14.856224", + "updated_at": "2026-07-10T10:10:14.856224", + "url": "/v1/games/galactic-civilizations-altarian-prophecy" +} diff --git a/site/public/v1/games/galactic-civilizations-ii-dark-avatar/index.json b/site/public/v1/games/galactic-civilizations-ii-dark-avatar/index.json new file mode 100644 index 000000000000..c376d400ed55 --- /dev/null +++ b/site/public/v1/games/galactic-civilizations-ii-dark-avatar/index.json @@ -0,0 +1,33 @@ +{ + "id": 57760, + "slug": "galactic-civilizations-ii-dark-avatar", + "name": "Galactic Civilizations II: Dark Avatar", + "release_date": "2007-02-08", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "turn-based strategy video game" + ], + "stores": [], + "developers": [ + "Stardock" + ], + "publishers": [ + "Stardock" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2001887" + ], + "created_at": "2026-07-10T10:10:14.856224", + "updated_at": "2026-07-10T10:10:14.856224", + "url": "/v1/games/galactic-civilizations-ii-dark-avatar" +} diff --git a/site/public/v1/games/galactic-civilizations-ii-twilight-of-the-arnor/index.json b/site/public/v1/games/galactic-civilizations-ii-twilight-of-the-arnor/index.json new file mode 100644 index 000000000000..eb5cbc196b0b --- /dev/null +++ b/site/public/v1/games/galactic-civilizations-ii-twilight-of-the-arnor/index.json @@ -0,0 +1,33 @@ +{ + "id": 57762, + "slug": "galactic-civilizations-ii-twilight-of-the-arnor", + "name": "Galactic Civilizations II: Twilight of the Arnor", + "release_date": "2008-04-30", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "turn-based strategy video game" + ], + "stores": [], + "developers": [ + "Stardock" + ], + "publishers": [ + "Stardock" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2090511" + ], + "created_at": "2026-07-10T10:10:14.857221", + "updated_at": "2026-07-10T10:10:14.857221", + "url": "/v1/games/galactic-civilizations-ii-twilight-of-the-arnor" +} diff --git a/site/public/v1/games/galactic-civilizations-iii-crusade/index.json b/site/public/v1/games/galactic-civilizations-iii-crusade/index.json new file mode 100644 index 000000000000..1cc3ec55270c --- /dev/null +++ b/site/public/v1/games/galactic-civilizations-iii-crusade/index.json @@ -0,0 +1,31 @@ +{ + "id": 57763, + "slug": "galactic-civilizations-iii-crusade", + "name": "Galactic Civilizations III: Crusade", + "release_date": "2017-05-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Stardock" + ], + "publishers": [ + "Stardock" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113283487" + ], + "created_at": "2026-07-10T10:10:14.857221", + "updated_at": "2026-07-10T10:10:14.857221", + "url": "/v1/games/galactic-civilizations-iii-crusade" +} diff --git a/site/public/v1/games/galactic-civilizations-iii-intrigue/index.json b/site/public/v1/games/galactic-civilizations-iii-intrigue/index.json new file mode 100644 index 000000000000..f844068c8ab7 --- /dev/null +++ b/site/public/v1/games/galactic-civilizations-iii-intrigue/index.json @@ -0,0 +1,31 @@ +{ + "id": 57764, + "slug": "galactic-civilizations-iii-intrigue", + "name": "Galactic Civilizations III: Intrigue", + "release_date": "2018-04-11", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Stardock" + ], + "publishers": [ + "Stardock" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113283493" + ], + "created_at": "2026-07-10T10:10:14.857221", + "updated_at": "2026-07-10T10:10:14.857221", + "url": "/v1/games/galactic-civilizations-iii-intrigue" +} diff --git a/site/public/v1/games/galactic-civilizations-iii-mercenaries/index.json b/site/public/v1/games/galactic-civilizations-iii-mercenaries/index.json new file mode 100644 index 000000000000..93af80b21da4 --- /dev/null +++ b/site/public/v1/games/galactic-civilizations-iii-mercenaries/index.json @@ -0,0 +1,25 @@ +{ + "id": 57765, + "slug": "galactic-civilizations-iii-mercenaries", + "name": "Galactic Civilizations III: Mercenaries", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127164682" + ], + "created_at": "2026-07-10T10:10:14.858226", + "updated_at": "2026-07-10T10:10:14.858226", + "url": "/v1/games/galactic-civilizations-iii-mercenaries" +} diff --git a/site/public/v1/games/galactic-civilizations-iii-retribution-expansion/index.json b/site/public/v1/games/galactic-civilizations-iii-retribution-expansion/index.json new file mode 100644 index 000000000000..f363b47403c7 --- /dev/null +++ b/site/public/v1/games/galactic-civilizations-iii-retribution-expansion/index.json @@ -0,0 +1,25 @@ +{ + "id": 57766, + "slug": "galactic-civilizations-iii-retribution-expansion", + "name": "Galactic Civilizations III: Retribution Expansion", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137859646" + ], + "created_at": "2026-07-10T10:10:14.858226", + "updated_at": "2026-07-10T10:10:14.858226", + "url": "/v1/games/galactic-civilizations-iii-retribution-expansion" +} diff --git a/site/public/v1/games/galaga-30th-collection/index.json b/site/public/v1/games/galaga-30th-collection/index.json new file mode 100644 index 000000000000..a4365079795a --- /dev/null +++ b/site/public/v1/games/galaga-30th-collection/index.json @@ -0,0 +1,29 @@ +{ + "id": 57890, + "slug": "galaga-30th-collection", + "name": "Galaga 30th Collection", + "release_date": "2011-07-23", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "iOS" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Bandai Namco Holdings" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5517860" + ], + "created_at": "2026-07-10T10:10:14.892277", + "updated_at": "2026-07-10T10:10:14.892277", + "url": "/v1/games/galaga-30th-collection" +} diff --git a/site/public/v1/games/galaga-wars-q109303617/index.json b/site/public/v1/games/galaga-wars-q109303617/index.json new file mode 100644 index 000000000000..8115f5c7189f --- /dev/null +++ b/site/public/v1/games/galaga-wars-q109303617/index.json @@ -0,0 +1,34 @@ +{ + "id": 57898, + "slug": "galaga-wars-q109303617", + "name": "Galaga Wars+", + "release_date": "2021-11-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "iPadOS", + "iOS" + ], + "genres": [ + "shoot 'em up" + ], + "stores": [], + "developers": [ + "Bandai Namco Entertainment" + ], + "publishers": [ + "Bandai Namco Entertainment" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109303617" + ], + "created_at": "2026-07-10T10:10:14.894302", + "updated_at": "2026-07-10T10:10:14.894302", + "url": "/v1/games/galaga-wars-q109303617" +} diff --git a/site/public/v1/games/galaxy-of-games-201/index.json b/site/public/v1/games/galaxy-of-games-201/index.json new file mode 100644 index 000000000000..e3847b67345b --- /dev/null +++ b/site/public/v1/games/galaxy-of-games-201/index.json @@ -0,0 +1,29 @@ +{ + "id": 57996, + "slug": "galaxy-of-games-201", + "name": "Galaxy of Games 201", + "release_date": "2002-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "eGames" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125526735" + ], + "created_at": "2026-07-10T10:10:14.920406", + "updated_at": "2026-07-10T10:10:14.920406", + "url": "/v1/games/galaxy-of-games-201" +} diff --git a/site/public/v1/games/gambit-q63065589/index.json b/site/public/v1/games/gambit-q63065589/index.json new file mode 100644 index 000000000000..ac7fb0f09beb --- /dev/null +++ b/site/public/v1/games/gambit-q63065589/index.json @@ -0,0 +1,25 @@ +{ + "id": 58100, + "slug": "gambit-q63065589", + "name": "Gambit", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065589" + ], + "created_at": "2026-07-10T10:10:14.949016", + "updated_at": "2026-07-10T10:10:14.949016", + "url": "/v1/games/gambit-q63065589" +} diff --git a/site/public/v1/games/game-box-s-rie-corridas/index.json b/site/public/v1/games/game-box-s-rie-corridas/index.json new file mode 100644 index 000000000000..f78ea132fde9 --- /dev/null +++ b/site/public/v1/games/game-box-s-rie-corridas/index.json @@ -0,0 +1,25 @@ +{ + "id": 58119, + "slug": "game-box-s-rie-corridas", + "name": "Game Box Série Corridas", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108037799" + ], + "created_at": "2026-07-10T10:10:14.954023", + "updated_at": "2026-07-10T10:10:14.954023", + "url": "/v1/games/game-box-s-rie-corridas" +} diff --git a/site/public/v1/games/game-box-s-rie-esportes-radicais/index.json b/site/public/v1/games/game-box-s-rie-esportes-radicais/index.json new file mode 100644 index 000000000000..8d3a1bebb76a --- /dev/null +++ b/site/public/v1/games/game-box-s-rie-esportes-radicais/index.json @@ -0,0 +1,25 @@ +{ + "id": 58120, + "slug": "game-box-s-rie-esportes-radicais", + "name": "Game Box Série Esportes Radicais", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108037778" + ], + "created_at": "2026-07-10T10:10:14.954955", + "updated_at": "2026-07-10T10:10:14.954955", + "url": "/v1/games/game-box-s-rie-esportes-radicais" +} diff --git a/site/public/v1/games/game-box-s-rie-esportes/index.json b/site/public/v1/games/game-box-s-rie-esportes/index.json new file mode 100644 index 000000000000..3bdd18dee1c1 --- /dev/null +++ b/site/public/v1/games/game-box-s-rie-esportes/index.json @@ -0,0 +1,25 @@ +{ + "id": 58121, + "slug": "game-box-s-rie-esportes", + "name": "Game Box Série Esportes", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108037761" + ], + "created_at": "2026-07-10T10:10:14.954955", + "updated_at": "2026-07-10T10:10:14.954955", + "url": "/v1/games/game-box-s-rie-esportes" +} diff --git a/site/public/v1/games/game-box-s-rie-lutas/index.json b/site/public/v1/games/game-box-s-rie-lutas/index.json new file mode 100644 index 000000000000..b25e63ffd95b --- /dev/null +++ b/site/public/v1/games/game-box-s-rie-lutas/index.json @@ -0,0 +1,25 @@ +{ + "id": 58122, + "slug": "game-box-s-rie-lutas", + "name": "Game Box Série Lutas", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q74238390" + ], + "created_at": "2026-07-10T10:10:14.955954", + "updated_at": "2026-07-10T10:10:14.955954", + "url": "/v1/games/game-box-s-rie-lutas" +} diff --git a/site/public/v1/games/game-boy-advance-nintendo-classics/index.json b/site/public/v1/games/game-boy-advance-nintendo-classics/index.json new file mode 100644 index 000000000000..cf747ca3c26d --- /dev/null +++ b/site/public/v1/games/game-boy-advance-nintendo-classics/index.json @@ -0,0 +1,27 @@ +{ + "id": 58123, + "slug": "game-boy-advance-nintendo-classics", + "name": "Game Boy Advance – Nintendo Classics", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Nintendo" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120336447" + ], + "created_at": "2026-07-10T10:10:14.955954", + "updated_at": "2026-07-10T10:10:14.955954", + "url": "/v1/games/game-boy-advance-nintendo-classics" +} diff --git a/site/public/v1/games/game-boy-nintendo-classics/index.json b/site/public/v1/games/game-boy-nintendo-classics/index.json new file mode 100644 index 000000000000..f527cca828e6 --- /dev/null +++ b/site/public/v1/games/game-boy-nintendo-classics/index.json @@ -0,0 +1,27 @@ +{ + "id": 58127, + "slug": "game-boy-nintendo-classics", + "name": "Game Boy – Nintendo Classics", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Nintendo" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116741356" + ], + "created_at": "2026-07-10T10:10:14.956957", + "updated_at": "2026-07-10T10:10:14.956957", + "url": "/v1/games/game-boy-nintendo-classics" +} diff --git a/site/public/v1/games/game-boy-wars-advance-1-2/index.json b/site/public/v1/games/game-boy-wars-advance-1-2/index.json new file mode 100644 index 000000000000..bae7b0fe55fc --- /dev/null +++ b/site/public/v1/games/game-boy-wars-advance-1-2/index.json @@ -0,0 +1,28 @@ +{ + "id": 58130, + "slug": "game-boy-wars-advance-1-2", + "name": "Game Boy Wars Advance 1+2", + "release_date": "2004-11-25", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Game Boy Advance", + "Wii U" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108744960" + ], + "created_at": "2026-07-10T10:10:14.958054", + "updated_at": "2026-07-10T10:10:14.958054", + "url": "/v1/games/game-boy-wars-advance-1-2" +} diff --git a/site/public/v1/games/game-dev-story-q107342977/index.json b/site/public/v1/games/game-dev-story-q107342977/index.json new file mode 100644 index 000000000000..a5a602e6e46f --- /dev/null +++ b/site/public/v1/games/game-dev-story-q107342977/index.json @@ -0,0 +1,32 @@ +{ + "id": 58151, + "slug": "game-dev-story-q107342977", + "name": "Game Dev Story+", + "release_date": "2021-06-17", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "iPadOS", + "iOS" + ], + "genres": [], + "stores": [], + "developers": [ + "Kairosoft" + ], + "publishers": [ + "Kairosoft" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107342977" + ], + "created_at": "2026-07-10T10:10:14.963957", + "updated_at": "2026-07-10T10:10:14.963957", + "url": "/v1/games/game-dev-story-q107342977" +} diff --git a/site/public/v1/games/game-lab-at-peppermill-reno/index.json b/site/public/v1/games/game-lab-at-peppermill-reno/index.json new file mode 100644 index 000000000000..b0601b0bfce4 --- /dev/null +++ b/site/public/v1/games/game-lab-at-peppermill-reno/index.json @@ -0,0 +1,25 @@ +{ + "id": 58170, + "slug": "game-lab-at-peppermill-reno", + "name": "Game Lab at Peppermill Reno", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q64840993" + ], + "created_at": "2026-07-10T10:10:14.969044", + "updated_at": "2026-07-10T10:10:14.969044", + "url": "/v1/games/game-lab-at-peppermill-reno" +} diff --git a/site/public/v1/games/game-watch-collection-2/index.json b/site/public/v1/games/game-watch-collection-2/index.json new file mode 100644 index 000000000000..4c8a21dc8821 --- /dev/null +++ b/site/public/v1/games/game-watch-collection-2/index.json @@ -0,0 +1,25 @@ +{ + "id": 58271, + "slug": "game-watch-collection-2", + "name": "Game & Watch Collection 2", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138030819" + ], + "created_at": "2026-07-10T10:10:14.995956", + "updated_at": "2026-07-10T10:10:14.995956", + "url": "/v1/games/game-watch-collection-2" +} diff --git a/site/public/v1/games/gameassistant-special-edition/index.json b/site/public/v1/games/gameassistant-special-edition/index.json new file mode 100644 index 000000000000..93e36a7db7d3 --- /dev/null +++ b/site/public/v1/games/gameassistant-special-edition/index.json @@ -0,0 +1,31 @@ +{ + "id": 58304, + "slug": "gameassistant-special-edition", + "name": "GameAssistant - Special Edition", + "release_date": "2020-03-02", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "GameAssistant Team" + ], + "publishers": [ + "GameAssistant Team" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q87750646" + ], + "created_at": "2026-07-10T10:10:15.004057", + "updated_at": "2026-07-10T10:10:15.004057", + "url": "/v1/games/gameassistant-special-edition" +} diff --git a/site/public/v1/games/gamer-girl/index.json b/site/public/v1/games/gamer-girl/index.json new file mode 100644 index 000000000000..e6f1c2c7a259 --- /dev/null +++ b/site/public/v1/games/gamer-girl/index.json @@ -0,0 +1,34 @@ +{ + "id": 58336, + "slug": "gamer-girl", + "name": "Gamer Girl", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "adventure video game", + "full motion video", + "horror video game" + ], + "stores": [], + "developers": [], + "publishers": [ + "Wales Interactive" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q97475632" + ], + "created_at": "2026-07-10T10:10:15.012504", + "updated_at": "2026-07-10T10:10:15.012504", + "url": "/v1/games/gamer-girl" +} diff --git a/site/public/v1/games/gangstas-in-space/index.json b/site/public/v1/games/gangstas-in-space/index.json new file mode 100644 index 000000000000..13de6db3c9e3 --- /dev/null +++ b/site/public/v1/games/gangstas-in-space/index.json @@ -0,0 +1,30 @@ +{ + "id": 58459, + "slug": "gangstas-in-space", + "name": "Gangstas in Space", + "release_date": "2012-02-21", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 3", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Deep Silver" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60563805" + ], + "created_at": "2026-07-10T10:10:15.045450", + "updated_at": "2026-07-10T10:10:15.045450", + "url": "/v1/games/gangstas-in-space" +} diff --git a/site/public/v1/games/garfield-q2803678/index.json b/site/public/v1/games/garfield-q2803678/index.json new file mode 100644 index 000000000000..3a27de87b586 --- /dev/null +++ b/site/public/v1/games/garfield-q2803678/index.json @@ -0,0 +1,33 @@ +{ + "id": 58596, + "slug": "garfield-q2803678", + "name": "Garfield", + "release_date": "1984-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Atari 2600" + ], + "genres": [ + "platformer" + ], + "stores": [], + "developers": [ + "Atari" + ], + "publishers": [ + "Atari" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2803678" + ], + "created_at": "2026-07-10T10:10:15.080589", + "updated_at": "2026-07-10T10:10:15.080589", + "url": "/v1/games/garfield-q2803678" +} diff --git a/site/public/v1/games/gartic/index.json b/site/public/v1/games/gartic/index.json new file mode 100644 index 000000000000..b7f0a1836e7f --- /dev/null +++ b/site/public/v1/games/gartic/index.json @@ -0,0 +1,29 @@ +{ + "id": 58645, + "slug": "gartic", + "name": "Gartic", + "release_date": "2008-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "web browser" + ], + "genres": [ + "quiz video game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q80741181" + ], + "created_at": "2026-07-10T10:10:15.093253", + "updated_at": "2026-07-10T10:10:15.093253", + "url": "/v1/games/gartic" +} diff --git a/site/public/v1/games/gast/index.json b/site/public/v1/games/gast/index.json new file mode 100644 index 000000000000..7a50b8b3a08d --- /dev/null +++ b/site/public/v1/games/gast/index.json @@ -0,0 +1,25 @@ +{ + "id": 58689, + "slug": "gast", + "name": "Gast", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140471293" + ], + "created_at": "2026-07-10T10:10:15.104165", + "updated_at": "2026-07-10T10:10:15.104165", + "url": "/v1/games/gast" +} diff --git a/site/public/v1/games/gauntlet-the-deeper-dungeons/index.json b/site/public/v1/games/gauntlet-the-deeper-dungeons/index.json new file mode 100644 index 000000000000..9186dd651bab --- /dev/null +++ b/site/public/v1/games/gauntlet-the-deeper-dungeons/index.json @@ -0,0 +1,25 @@ +{ + "id": 58781, + "slug": "gauntlet-the-deeper-dungeons", + "name": "Gauntlet: The Deeper Dungeons", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108293389" + ], + "created_at": "2026-07-10T10:10:15.128250", + "updated_at": "2026-07-10T10:10:15.128250", + "url": "/v1/games/gauntlet-the-deeper-dungeons" +} diff --git a/site/public/v1/games/gbadoom/index.json b/site/public/v1/games/gbadoom/index.json new file mode 100644 index 000000000000..619549604801 --- /dev/null +++ b/site/public/v1/games/gbadoom/index.json @@ -0,0 +1,27 @@ +{ + "id": 58824, + "slug": "gbadoom", + "name": "GBADoom", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Game Boy Advance" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124473641" + ], + "created_at": "2026-07-10T10:10:15.139071", + "updated_at": "2026-07-10T10:10:15.139071", + "url": "/v1/games/gbadoom" +} diff --git a/site/public/v1/games/gcompris/index.json b/site/public/v1/games/gcompris/index.json new file mode 100644 index 000000000000..901447f5fc51 --- /dev/null +++ b/site/public/v1/games/gcompris/index.json @@ -0,0 +1,27 @@ +{ + "id": 58827, + "slug": "gcompris", + "name": "GCompris", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "educational video game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1147042" + ], + "created_at": "2026-07-10T10:10:15.140089", + "updated_at": "2026-07-10T10:10:15.140089", + "url": "/v1/games/gcompris" +} diff --git a/site/public/v1/games/gear-club-unlimited-2-ultimate-edition/index.json b/site/public/v1/games/gear-club-unlimited-2-ultimate-edition/index.json new file mode 100644 index 000000000000..6c0926a14c38 --- /dev/null +++ b/site/public/v1/games/gear-club-unlimited-2-ultimate-edition/index.json @@ -0,0 +1,33 @@ +{ + "id": 58837, + "slug": "gear-club-unlimited-2-ultimate-edition", + "name": "Gear.Club Unlimited 2: Ultimate Edition", + "release_date": "2021-12-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 5", + "Microsoft Windows" + ], + "genres": [ + "racing video game" + ], + "stores": [], + "developers": [ + "Eden Games" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110011520" + ], + "created_at": "2026-07-10T10:10:15.143065", + "updated_at": "2026-07-10T10:10:15.143065", + "url": "/v1/games/gear-club-unlimited-2-ultimate-edition" +} diff --git a/site/public/v1/games/gears-5-hivebusters/index.json b/site/public/v1/games/gears-5-hivebusters/index.json new file mode 100644 index 000000000000..87f601aecc39 --- /dev/null +++ b/site/public/v1/games/gears-5-hivebusters/index.json @@ -0,0 +1,34 @@ +{ + "id": 58866, + "slug": "gears-5-hivebusters", + "name": "Gears 5: Hivebusters", + "release_date": "2020-12-15", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S", + "Microsoft Windows" + ], + "genres": [ + "third-person shooter" + ], + "stores": [], + "developers": [ + "The Coalition" + ], + "publishers": [ + "Xbox Game Studios" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106096435" + ], + "created_at": "2026-07-10T10:10:15.151058", + "updated_at": "2026-07-10T10:10:15.151058", + "url": "/v1/games/gears-5-hivebusters" +} diff --git a/site/public/v1/games/gears-of-war-exile/index.json b/site/public/v1/games/gears-of-war-exile/index.json new file mode 100644 index 000000000000..2fd6a2c830e6 --- /dev/null +++ b/site/public/v1/games/gears-of-war-exile/index.json @@ -0,0 +1,27 @@ +{ + "id": 58876, + "slug": "gears-of-war-exile", + "name": "Gears of War : Exile", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [ + "Epic Games" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5876552" + ], + "created_at": "2026-07-10T10:10:15.153122", + "updated_at": "2026-07-10T10:10:15.153122", + "url": "/v1/games/gears-of-war-exile" +} diff --git a/site/public/v1/games/gears-of-war-ultimate-edition-day-one-version/index.json b/site/public/v1/games/gears-of-war-ultimate-edition-day-one-version/index.json new file mode 100644 index 000000000000..ee77f8474390 --- /dev/null +++ b/site/public/v1/games/gears-of-war-ultimate-edition-day-one-version/index.json @@ -0,0 +1,25 @@ +{ + "id": 58879, + "slug": "gears-of-war-ultimate-edition-day-one-version", + "name": "Gears of War: Ultimate Edition - Day One Version", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q90134244" + ], + "created_at": "2026-07-10T10:10:15.155073", + "updated_at": "2026-07-10T10:10:15.155073", + "url": "/v1/games/gears-of-war-ultimate-edition-day-one-version" +} diff --git a/site/public/v1/games/genesis/index.json b/site/public/v1/games/genesis/index.json new file mode 100644 index 000000000000..70589c845d0d --- /dev/null +++ b/site/public/v1/games/genesis/index.json @@ -0,0 +1,25 @@ +{ + "id": 59109, + "slug": "genesis", + "name": "Genesis", + "release_date": "2010-12-09", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q57974037" + ], + "created_at": "2026-07-10T10:10:15.224778", + "updated_at": "2026-07-10T10:10:15.224778", + "url": "/v1/games/genesis" +} diff --git a/site/public/v1/games/genki-girl-pack/index.json b/site/public/v1/games/genki-girl-pack/index.json new file mode 100644 index 000000000000..90503bcacf0b --- /dev/null +++ b/site/public/v1/games/genki-girl-pack/index.json @@ -0,0 +1,27 @@ +{ + "id": 59147, + "slug": "genki-girl-pack", + "name": "Genki Girl Pack", + "release_date": "2012-07-03", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60586781" + ], + "created_at": "2026-07-10T10:10:15.234425", + "updated_at": "2026-07-10T10:10:15.234425", + "url": "/v1/games/genki-girl-pack" +} diff --git a/site/public/v1/games/genkibowl-vii/index.json b/site/public/v1/games/genkibowl-vii/index.json new file mode 100644 index 000000000000..b03a4a60bb1f --- /dev/null +++ b/site/public/v1/games/genkibowl-vii/index.json @@ -0,0 +1,28 @@ +{ + "id": 59148, + "slug": "genkibowl-vii", + "name": "Genkibowl VII", + "release_date": "2012-01-17", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 3", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60563806" + ], + "created_at": "2026-07-10T10:10:15.234425", + "updated_at": "2026-07-10T10:10:15.234425", + "url": "/v1/games/genkibowl-vii" +} diff --git a/site/public/v1/games/getting-over-it/index.json b/site/public/v1/games/getting-over-it/index.json new file mode 100644 index 000000000000..8db84f352af6 --- /dev/null +++ b/site/public/v1/games/getting-over-it/index.json @@ -0,0 +1,28 @@ +{ + "id": 59450, + "slug": "getting-over-it", + "name": "Getting Over It+", + "release_date": "2023-05-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "iPadOS", + "iOS" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118234996" + ], + "created_at": "2026-07-10T10:10:15.342425", + "updated_at": "2026-07-10T10:10:15.342425", + "url": "/v1/games/getting-over-it" +} diff --git a/site/public/v1/games/ghost-of-tsushima-iki-island/index.json b/site/public/v1/games/ghost-of-tsushima-iki-island/index.json new file mode 100644 index 000000000000..f97846ab0ca5 --- /dev/null +++ b/site/public/v1/games/ghost-of-tsushima-iki-island/index.json @@ -0,0 +1,33 @@ +{ + "id": 59569, + "slug": "ghost-of-tsushima-iki-island", + "name": "Ghost of Tsushima: Iki Island", + "release_date": "2021-08-20", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 5", + "PlayStation 4" + ], + "genres": [ + "action-adventure game", + "stealth game" + ], + "stores": [], + "developers": [], + "publishers": [ + "Sony Interactive Entertainment" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109690722" + ], + "created_at": "2026-07-10T10:10:15.373735", + "updated_at": "2026-07-10T10:10:15.373735", + "url": "/v1/games/ghost-of-tsushima-iki-island" +} diff --git a/site/public/v1/games/ghosts-of-tabor-care-package-edition-upgrade/index.json b/site/public/v1/games/ghosts-of-tabor-care-package-edition-upgrade/index.json new file mode 100644 index 000000000000..461de1bd999a --- /dev/null +++ b/site/public/v1/games/ghosts-of-tabor-care-package-edition-upgrade/index.json @@ -0,0 +1,34 @@ +{ + "id": 59690, + "slug": "ghosts-of-tabor-care-package-edition-upgrade", + "name": "Ghosts of Tabor - Care Package Edition Upgrade", + "release_date": "2023-03-21", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "battle royale game" + ], + "stores": [], + "developers": [ + "Combat Waffle Studios" + ], + "publishers": [ + "Beyond Frames Entertainment" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122197162" + ], + "created_at": "2026-07-10T10:10:15.456485", + "updated_at": "2026-07-10T10:10:15.456485", + "url": "/v1/games/ghosts-of-tabor-care-package-edition-upgrade" +} diff --git a/site/public/v1/games/ghosts-of-tabor-join-or-die-edition-upgrade/index.json b/site/public/v1/games/ghosts-of-tabor-join-or-die-edition-upgrade/index.json new file mode 100644 index 000000000000..a7bdb397f7c1 --- /dev/null +++ b/site/public/v1/games/ghosts-of-tabor-join-or-die-edition-upgrade/index.json @@ -0,0 +1,34 @@ +{ + "id": 59691, + "slug": "ghosts-of-tabor-join-or-die-edition-upgrade", + "name": "Ghosts of Tabor - Join or Die Edition Upgrade", + "release_date": "2023-03-21", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "battle royale game" + ], + "stores": [], + "developers": [ + "Combat Waffle Studios" + ], + "publishers": [ + "Beyond Frames Entertainment" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122197159" + ], + "created_at": "2026-07-10T10:10:15.456485", + "updated_at": "2026-07-10T10:10:15.456485", + "url": "/v1/games/ghosts-of-tabor-join-or-die-edition-upgrade" +} diff --git a/site/public/v1/games/ghosts-of-tabor-nuclear-night-edition-upgrade/index.json b/site/public/v1/games/ghosts-of-tabor-nuclear-night-edition-upgrade/index.json new file mode 100644 index 000000000000..1b421a379dd5 --- /dev/null +++ b/site/public/v1/games/ghosts-of-tabor-nuclear-night-edition-upgrade/index.json @@ -0,0 +1,34 @@ +{ + "id": 59692, + "slug": "ghosts-of-tabor-nuclear-night-edition-upgrade", + "name": "Ghosts of Tabor - Nuclear Night Edition Upgrade", + "release_date": "2023-03-21", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "battle royale game" + ], + "stores": [], + "developers": [ + "Combat Waffle Studios" + ], + "publishers": [ + "Beyond Frames Entertainment" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122197146" + ], + "created_at": "2026-07-10T10:10:15.456485", + "updated_at": "2026-07-10T10:10:15.456485", + "url": "/v1/games/ghosts-of-tabor-nuclear-night-edition-upgrade" +} diff --git a/site/public/v1/games/ghosts-of-tabor-starter-pack-bundle/index.json b/site/public/v1/games/ghosts-of-tabor-starter-pack-bundle/index.json new file mode 100644 index 000000000000..a9abea7ad7a3 --- /dev/null +++ b/site/public/v1/games/ghosts-of-tabor-starter-pack-bundle/index.json @@ -0,0 +1,34 @@ +{ + "id": 59693, + "slug": "ghosts-of-tabor-starter-pack-bundle", + "name": "Ghosts of Tabor Starter Pack Bundle", + "release_date": "2023-06-20", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "battle royale game" + ], + "stores": [], + "developers": [ + "Combat Waffle Studios" + ], + "publishers": [ + "Beyond Frames Entertainment" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122197166" + ], + "created_at": "2026-07-10T10:10:15.456485", + "updated_at": "2026-07-10T10:10:15.456485", + "url": "/v1/games/ghosts-of-tabor-starter-pack-bundle" +} diff --git a/site/public/v1/games/gigalomania/index.json b/site/public/v1/games/gigalomania/index.json new file mode 100644 index 000000000000..8178cce200f3 --- /dev/null +++ b/site/public/v1/games/gigalomania/index.json @@ -0,0 +1,27 @@ +{ + "id": 59794, + "slug": "gigalomania", + "name": "Gigalomania", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "real-time strategy" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127500663" + ], + "created_at": "2026-07-10T10:10:15.521700", + "updated_at": "2026-07-10T10:10:15.521700", + "url": "/v1/games/gigalomania" +} diff --git a/site/public/v1/games/gin-rummy-classic/index.json b/site/public/v1/games/gin-rummy-classic/index.json new file mode 100644 index 000000000000..f7b0b539f90b --- /dev/null +++ b/site/public/v1/games/gin-rummy-classic/index.json @@ -0,0 +1,30 @@ +{ + "id": 59842, + "slug": "gin-rummy-classic", + "name": "Gin Rummy Classic+", + "release_date": "2022-10-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "iPadOS", + "iOS" + ], + "genres": [ + "card video game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q114840443" + ], + "created_at": "2026-07-10T10:10:15.537373", + "updated_at": "2026-07-10T10:10:15.537373", + "url": "/v1/games/gin-rummy-classic" +} diff --git a/site/public/v1/games/gingira-panic/index.json b/site/public/v1/games/gingira-panic/index.json new file mode 100644 index 000000000000..cdab6ddce27f --- /dev/null +++ b/site/public/v1/games/gingira-panic/index.json @@ -0,0 +1,25 @@ +{ + "id": 59857, + "slug": "gingira-panic", + "name": "Gingira Panic", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11298347" + ], + "created_at": "2026-07-10T10:10:15.541372", + "updated_at": "2026-07-10T10:10:15.541372", + "url": "/v1/games/gingira-panic" +} diff --git a/site/public/v1/games/gingira-paradise/index.json b/site/public/v1/games/gingira-paradise/index.json new file mode 100644 index 000000000000..3e53c71351af --- /dev/null +++ b/site/public/v1/games/gingira-paradise/index.json @@ -0,0 +1,25 @@ +{ + "id": 59858, + "slug": "gingira-paradise", + "name": "Gingira Paradise", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11298350" + ], + "created_at": "2026-07-10T10:10:15.542364", + "updated_at": "2026-07-10T10:10:15.542364", + "url": "/v1/games/gingira-paradise" +} diff --git a/site/public/v1/games/gldoom/index.json b/site/public/v1/games/gldoom/index.json new file mode 100644 index 000000000000..c6bf9478ecd9 --- /dev/null +++ b/site/public/v1/games/gldoom/index.json @@ -0,0 +1,25 @@ +{ + "id": 60122, + "slug": "gldoom", + "name": "glDoom", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q67200469" + ], + "created_at": "2026-07-10T10:10:15.628471", + "updated_at": "2026-07-10T10:10:15.628471", + "url": "/v1/games/gldoom" +} diff --git a/site/public/v1/games/gloomhaven-jaws-of-the-lion/index.json b/site/public/v1/games/gloomhaven-jaws-of-the-lion/index.json new file mode 100644 index 000000000000..dcbcf1fd8af7 --- /dev/null +++ b/site/public/v1/games/gloomhaven-jaws-of-the-lion/index.json @@ -0,0 +1,36 @@ +{ + "id": 60294, + "slug": "gloomhaven-jaws-of-the-lion", + "name": "Gloomhaven: Jaws of the Lion", + "release_date": "2022-05-17", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "board video game", + "dungeon crawl", + "tactical role-playing game" + ], + "stores": [], + "developers": [ + "Flaming Fowl Studios" + ], + "publishers": [ + "Twin Sails Interactive" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111680474" + ], + "created_at": "2026-07-10T10:10:15.676145", + "updated_at": "2026-07-10T10:10:15.676145", + "url": "/v1/games/gloomhaven-jaws-of-the-lion" +} diff --git a/site/public/v1/games/glquake/index.json b/site/public/v1/games/glquake/index.json new file mode 100644 index 000000000000..bd443aa89c4d --- /dev/null +++ b/site/public/v1/games/glquake/index.json @@ -0,0 +1,29 @@ +{ + "id": 60379, + "slug": "glquake", + "name": "GLQuake", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Classic Mac OS" + ], + "genres": [], + "stores": [], + "developers": [ + "id Software" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120671255" + ], + "created_at": "2026-07-10T10:10:15.699107", + "updated_at": "2026-07-10T10:10:15.699107", + "url": "/v1/games/glquake" +} diff --git a/site/public/v1/games/gnome-chess/index.json b/site/public/v1/games/gnome-chess/index.json new file mode 100644 index 000000000000..ae3c4c88fbf8 --- /dev/null +++ b/site/public/v1/games/gnome-chess/index.json @@ -0,0 +1,27 @@ +{ + "id": 60429, + "slug": "gnome-chess", + "name": "GNOME Chess", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [ + "The GNOME Project" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1019252" + ], + "created_at": "2026-07-10T10:10:15.712643", + "updated_at": "2026-07-10T10:10:15.712643", + "url": "/v1/games/gnome-chess" +} diff --git a/site/public/v1/games/gnu-chess/index.json b/site/public/v1/games/gnu-chess/index.json new file mode 100644 index 000000000000..7914ea3c6a4c --- /dev/null +++ b/site/public/v1/games/gnu-chess/index.json @@ -0,0 +1,32 @@ +{ + "id": 60475, + "slug": "gnu-chess", + "name": "GNU Chess", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Intel P6", + "x86-64" + ], + "genres": [ + "chess video game" + ], + "stores": [], + "developers": [ + "GNU Project" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q494713" + ], + "created_at": "2026-07-10T10:10:15.724735", + "updated_at": "2026-07-10T10:10:15.724735", + "url": "/v1/games/gnu-chess" +} diff --git a/site/public/v1/games/goat-simulator-q112231075/index.json b/site/public/v1/games/goat-simulator-q112231075/index.json new file mode 100644 index 000000000000..62fc333fa01d --- /dev/null +++ b/site/public/v1/games/goat-simulator-q112231075/index.json @@ -0,0 +1,28 @@ +{ + "id": 60633, + "slug": "goat-simulator-q112231075", + "name": "Goat Simulator+", + "release_date": "2022-05-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "iPadOS", + "iOS" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112231075" + ], + "created_at": "2026-07-10T10:10:15.767094", + "updated_at": "2026-07-10T10:10:15.767094", + "url": "/v1/games/goat-simulator-q112231075" +} diff --git a/site/public/v1/games/god-of-war-collection-q5576061/index.json b/site/public/v1/games/god-of-war-collection-q5576061/index.json new file mode 100644 index 000000000000..02410b6efbff --- /dev/null +++ b/site/public/v1/games/god-of-war-collection-q5576061/index.json @@ -0,0 +1,35 @@ +{ + "id": 60814, + "slug": "god-of-war-collection-q5576061", + "name": "God of War Collection", + "release_date": "2009-11-17", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation Vita", + "PlayStation 3" + ], + "genres": [ + "hack and slash" + ], + "stores": [], + "developers": [ + "Santa Monica Studio", + "Ready at Dawn" + ], + "publishers": [ + "Sony Interactive Entertainment" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5576061" + ], + "created_at": "2026-07-10T10:10:15.815163", + "updated_at": "2026-07-10T10:10:15.815163", + "url": "/v1/games/god-of-war-collection-q5576061" +} diff --git a/site/public/v1/games/god-of-war-collection-volume-ii/index.json b/site/public/v1/games/god-of-war-collection-volume-ii/index.json new file mode 100644 index 000000000000..786f1b1cf3e4 --- /dev/null +++ b/site/public/v1/games/god-of-war-collection-volume-ii/index.json @@ -0,0 +1,25 @@ +{ + "id": 60815, + "slug": "god-of-war-collection-volume-ii", + "name": "God Of War Collection: Volume II", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123337770" + ], + "created_at": "2026-07-10T10:10:15.816204", + "updated_at": "2026-07-10T10:10:15.816204", + "url": "/v1/games/god-of-war-collection-volume-ii" +} diff --git a/site/public/v1/games/god-of-war-ragnar-k-valhalla/index.json b/site/public/v1/games/god-of-war-ragnar-k-valhalla/index.json new file mode 100644 index 000000000000..70c423ae7704 --- /dev/null +++ b/site/public/v1/games/god-of-war-ragnar-k-valhalla/index.json @@ -0,0 +1,25 @@ +{ + "id": 60825, + "slug": "god-of-war-ragnar-k-valhalla", + "name": "God of War Ragnarök: Valhalla", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123698932" + ], + "created_at": "2026-07-10T10:10:15.818295", + "updated_at": "2026-07-10T10:10:15.818295", + "url": "/v1/games/god-of-war-ragnar-k-valhalla" +} diff --git a/site/public/v1/games/god-of-war-saga-collection/index.json b/site/public/v1/games/god-of-war-saga-collection/index.json new file mode 100644 index 000000000000..df8b04f3603d --- /dev/null +++ b/site/public/v1/games/god-of-war-saga-collection/index.json @@ -0,0 +1,25 @@ +{ + "id": 60826, + "slug": "god-of-war-saga-collection", + "name": "God of War: Saga Collection", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11682150" + ], + "created_at": "2026-07-10T10:10:15.819271", + "updated_at": "2026-07-10T10:10:15.819271", + "url": "/v1/games/god-of-war-saga-collection" +} diff --git a/site/public/v1/games/godfall-ultimate-edition/index.json b/site/public/v1/games/godfall-ultimate-edition/index.json new file mode 100644 index 000000000000..852ac33b7c55 --- /dev/null +++ b/site/public/v1/games/godfall-ultimate-edition/index.json @@ -0,0 +1,37 @@ +{ + "id": 60882, + "slug": "godfall-ultimate-edition", + "name": "Godfall: Ultimate Edition", + "release_date": "2022-04-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 5", + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "action game", + "role-playing video game" + ], + "stores": [], + "developers": [ + "Counterplay Games Inc." + ], + "publishers": [ + "Gearbox Publishing" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111793372" + ], + "created_at": "2026-07-10T10:10:15.834039", + "updated_at": "2026-07-10T10:10:15.834039", + "url": "/v1/games/godfall-ultimate-edition" +} diff --git a/site/public/v1/games/godmaster/index.json b/site/public/v1/games/godmaster/index.json new file mode 100644 index 000000000000..46b33c554180 --- /dev/null +++ b/site/public/v1/games/godmaster/index.json @@ -0,0 +1,27 @@ +{ + "id": 60904, + "slug": "godmaster", + "name": "Godmaster", + "release_date": "2018-08-23", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [ + "Team Cherry" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116592537" + ], + "created_at": "2026-07-10T10:10:15.839906", + "updated_at": "2026-07-10T10:10:15.839906", + "url": "/v1/games/godmaster" +} diff --git a/site/public/v1/games/golaxy/index.json b/site/public/v1/games/golaxy/index.json new file mode 100644 index 000000000000..9d4b1804597f --- /dev/null +++ b/site/public/v1/games/golaxy/index.json @@ -0,0 +1,25 @@ +{ + "id": 61034, + "slug": "golaxy", + "name": "Golaxy", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q104549592" + ], + "created_at": "2026-07-10T10:10:15.887903", + "updated_at": "2026-07-10T10:10:15.887903", + "url": "/v1/games/golaxy" +} diff --git a/site/public/v1/games/gold-games-2/index.json b/site/public/v1/games/gold-games-2/index.json new file mode 100644 index 000000000000..242ade92f1f3 --- /dev/null +++ b/site/public/v1/games/gold-games-2/index.json @@ -0,0 +1,27 @@ +{ + "id": 61049, + "slug": "gold-games-2", + "name": "Gold Games 2", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "TopWare Interactive" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125556586" + ], + "created_at": "2026-07-10T10:10:15.891902", + "updated_at": "2026-07-10T10:10:15.891902", + "url": "/v1/games/gold-games-2" +} diff --git a/site/public/v1/games/gold-games-3/index.json b/site/public/v1/games/gold-games-3/index.json new file mode 100644 index 000000000000..5cf50471acc3 --- /dev/null +++ b/site/public/v1/games/gold-games-3/index.json @@ -0,0 +1,25 @@ +{ + "id": 61050, + "slug": "gold-games-3", + "name": "Gold Games 3", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125203089" + ], + "created_at": "2026-07-10T10:10:15.892967", + "updated_at": "2026-07-10T10:10:15.892967", + "url": "/v1/games/gold-games-3" +} diff --git a/site/public/v1/games/gold-games-4/index.json b/site/public/v1/games/gold-games-4/index.json new file mode 100644 index 000000000000..620062a9c786 --- /dev/null +++ b/site/public/v1/games/gold-games-4/index.json @@ -0,0 +1,27 @@ +{ + "id": 61051, + "slug": "gold-games-4", + "name": "Gold Games 4", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "TopWare Interactive" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125556571" + ], + "created_at": "2026-07-10T10:10:15.892967", + "updated_at": "2026-07-10T10:10:15.892967", + "url": "/v1/games/gold-games-4" +} diff --git a/site/public/v1/games/gold-games/index.json b/site/public/v1/games/gold-games/index.json new file mode 100644 index 000000000000..052243ce6453 --- /dev/null +++ b/site/public/v1/games/gold-games/index.json @@ -0,0 +1,25 @@ +{ + "id": 61052, + "slug": "gold-games", + "name": "Gold Games", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125556595" + ], + "created_at": "2026-07-10T10:10:15.892967", + "updated_at": "2026-07-10T10:10:15.892967", + "url": "/v1/games/gold-games" +} diff --git a/site/public/v1/games/gold-miner-q2267917/index.json b/site/public/v1/games/gold-miner-q2267917/index.json new file mode 100644 index 000000000000..fb9c90f0c4d0 --- /dev/null +++ b/site/public/v1/games/gold-miner-q2267917/index.json @@ -0,0 +1,25 @@ +{ + "id": 61064, + "slug": "gold-miner-q2267917", + "name": "Gold Miner", + "release_date": "2002-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2267917" + ], + "created_at": "2026-07-10T10:10:15.897004", + "updated_at": "2026-07-10T10:10:15.897004", + "url": "/v1/games/gold-miner-q2267917" +} diff --git a/site/public/v1/games/golden-axe-beast-rider/index.json b/site/public/v1/games/golden-axe-beast-rider/index.json new file mode 100644 index 000000000000..23b3b69d7fff --- /dev/null +++ b/site/public/v1/games/golden-axe-beast-rider/index.json @@ -0,0 +1,33 @@ +{ + "id": 61087, + "slug": "golden-axe-beast-rider", + "name": "Golden Axe: Beast Rider", + "release_date": "2008-10-14", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 3" + ], + "genres": [ + "hack and slash" + ], + "stores": [], + "developers": [ + "Sega Studios San Francisco" + ], + "publishers": [ + "Sega" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5579170" + ], + "created_at": "2026-07-10T10:10:15.902990", + "updated_at": "2026-07-10T10:10:15.902990", + "url": "/v1/games/golden-axe-beast-rider" +} diff --git a/site/public/v1/games/golden-oldies-volume-1-computer-software-classics/index.json b/site/public/v1/games/golden-oldies-volume-1-computer-software-classics/index.json new file mode 100644 index 000000000000..268316e51dae --- /dev/null +++ b/site/public/v1/games/golden-oldies-volume-1-computer-software-classics/index.json @@ -0,0 +1,27 @@ +{ + "id": 61137, + "slug": "golden-oldies-volume-1-computer-software-classics", + "name": "Golden Oldies: Volume 1 - Computer Software Classics", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Software Country" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q104855976" + ], + "created_at": "2026-07-10T10:10:15.914904", + "updated_at": "2026-07-10T10:10:15.914904", + "url": "/v1/games/golden-oldies-volume-1-computer-software-classics" +} diff --git a/site/public/v1/games/goldenland-cold-heaven/index.json b/site/public/v1/games/goldenland-cold-heaven/index.json new file mode 100644 index 000000000000..7921db7db0f9 --- /dev/null +++ b/site/public/v1/games/goldenland-cold-heaven/index.json @@ -0,0 +1,33 @@ +{ + "id": 61178, + "slug": "goldenland-cold-heaven", + "name": "GoldenLand: Cold Heaven", + "release_date": "2004-01-23", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "role-playing video game" + ], + "stores": [], + "developers": [ + "Burut CT" + ], + "publishers": [ + "Russobit-M" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4192385" + ], + "created_at": "2026-07-10T10:10:15.924989", + "updated_at": "2026-07-10T10:10:15.924989", + "url": "/v1/games/goldenland-cold-heaven" +} diff --git a/site/public/v1/games/goldrunner-ii-scenery-disk-1/index.json b/site/public/v1/games/goldrunner-ii-scenery-disk-1/index.json new file mode 100644 index 000000000000..90f6674f0056 --- /dev/null +++ b/site/public/v1/games/goldrunner-ii-scenery-disk-1/index.json @@ -0,0 +1,28 @@ +{ + "id": 61187, + "slug": "goldrunner-ii-scenery-disk-1", + "name": "Goldrunner II: Scenery Disk 1", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Atari ST", + "Commodore Amiga" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126185071" + ], + "created_at": "2026-07-10T10:10:15.928010", + "updated_at": "2026-07-10T10:10:15.928010", + "url": "/v1/games/goldrunner-ii-scenery-disk-1" +} diff --git a/site/public/v1/games/goldrunner-ii-scenery-disk-2/index.json b/site/public/v1/games/goldrunner-ii-scenery-disk-2/index.json new file mode 100644 index 000000000000..ea4c02a653d5 --- /dev/null +++ b/site/public/v1/games/goldrunner-ii-scenery-disk-2/index.json @@ -0,0 +1,28 @@ +{ + "id": 61188, + "slug": "goldrunner-ii-scenery-disk-2", + "name": "Goldrunner II: Scenery Disk 2", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Atari ST", + "Commodore Amiga" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126185073" + ], + "created_at": "2026-07-10T10:10:15.928010", + "updated_at": "2026-07-10T10:10:15.928010", + "url": "/v1/games/goldrunner-ii-scenery-disk-2" +} diff --git a/site/public/v1/games/good-sudoku/index.json b/site/public/v1/games/good-sudoku/index.json new file mode 100644 index 000000000000..ee6a69914882 --- /dev/null +++ b/site/public/v1/games/good-sudoku/index.json @@ -0,0 +1,32 @@ +{ + "id": 61409, + "slug": "good-sudoku", + "name": "Good Sudoku+", + "release_date": "2021-04-02", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "iPadOS", + "iOS" + ], + "genres": [ + "sudoku video game" + ], + "stores": [], + "developers": [ + "Zach Gage" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107349456" + ], + "created_at": "2026-07-10T10:10:16.014266", + "updated_at": "2026-07-10T10:10:16.014266", + "url": "/v1/games/good-sudoku" +} diff --git a/site/public/v1/games/google-pac-man/index.json b/site/public/v1/games/google-pac-man/index.json new file mode 100644 index 000000000000..4c41cafecf25 --- /dev/null +++ b/site/public/v1/games/google-pac-man/index.json @@ -0,0 +1,29 @@ +{ + "id": 61450, + "slug": "google-pac-man", + "name": "Google Pac-Man", + "release_date": "2010-05-21", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [ + "Google" + ], + "publishers": [ + "Google" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q52074855" + ], + "created_at": "2026-07-10T10:10:16.025385", + "updated_at": "2026-07-10T10:10:16.025385", + "url": "/v1/games/google-pac-man" +} diff --git a/site/public/v1/games/gorkamorka/index.json b/site/public/v1/games/gorkamorka/index.json new file mode 100644 index 000000000000..568e9995fa95 --- /dev/null +++ b/site/public/v1/games/gorkamorka/index.json @@ -0,0 +1,33 @@ +{ + "id": 61561, + "slug": "gorkamorka", + "name": "Gorkamorka", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "vehicular combat game" + ], + "stores": [], + "developers": [ + "Realtime Associates" + ], + "publishers": [ + "Ripcord Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112063550" + ], + "created_at": "2026-07-10T10:10:16.063081", + "updated_at": "2026-07-10T10:10:16.063081", + "url": "/v1/games/gorkamorka" +} diff --git a/site/public/v1/games/gotcha-q65040599/index.json b/site/public/v1/games/gotcha-q65040599/index.json new file mode 100644 index 000000000000..5cdb718f2f67 --- /dev/null +++ b/site/public/v1/games/gotcha-q65040599/index.json @@ -0,0 +1,32 @@ +{ + "id": 61597, + "slug": "gotcha-q65040599", + "name": "Gotcha!", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "IBM Personal Computer", + "Atari Jaguar" + ], + "genres": [ + "action game" + ], + "stores": [], + "developers": [], + "publishers": [ + "Atari Corporation" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q65040599" + ], + "created_at": "2026-07-10T10:10:16.085164", + "updated_at": "2026-07-10T10:10:16.085164", + "url": "/v1/games/gotcha-q65040599" +} diff --git a/site/public/v1/games/gothic-3-forsaken-gods/index.json b/site/public/v1/games/gothic-3-forsaken-gods/index.json new file mode 100644 index 000000000000..7811b522ea55 --- /dev/null +++ b/site/public/v1/games/gothic-3-forsaken-gods/index.json @@ -0,0 +1,35 @@ +{ + "id": 61610, + "slug": "gothic-3-forsaken-gods", + "name": "Gothic 3: Forsaken Gods", + "release_date": "2008-11-21", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "role-playing video game" + ], + "stores": [], + "developers": [ + "Trine Game Studios", + "Mad Vulture Games" + ], + "publishers": [ + "JoWooD Entertainment", + "THQ Nordic" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2657755" + ], + "created_at": "2026-07-10T10:10:16.088168", + "updated_at": "2026-07-10T10:10:16.088168", + "url": "/v1/games/gothic-3-forsaken-gods" +} diff --git a/site/public/v1/games/governor-of-poker-2-premium-edition/index.json b/site/public/v1/games/governor-of-poker-2-premium-edition/index.json new file mode 100644 index 000000000000..90e0f7400caa --- /dev/null +++ b/site/public/v1/games/governor-of-poker-2-premium-edition/index.json @@ -0,0 +1,27 @@ +{ + "id": 61652, + "slug": "governor-of-poker-2-premium-edition", + "name": "Governor of Poker 2 - Premium Edition", + "release_date": "2010-10-11", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124066298" + ], + "created_at": "2026-07-10T10:10:16.099183", + "updated_at": "2026-07-10T10:10:16.099183", + "url": "/v1/games/governor-of-poker-2-premium-edition" +} diff --git a/site/public/v1/games/grab-a-roni-gondola/index.json b/site/public/v1/games/grab-a-roni-gondola/index.json new file mode 100644 index 000000000000..4ca18f3fd70c --- /dev/null +++ b/site/public/v1/games/grab-a-roni-gondola/index.json @@ -0,0 +1,25 @@ +{ + "id": 61684, + "slug": "grab-a-roni-gondola", + "name": "Grab-a-Roni Gondola", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q128014877" + ], + "created_at": "2026-07-10T10:10:16.108145", + "updated_at": "2026-07-10T10:10:16.108145", + "url": "/v1/games/grab-a-roni-gondola" +} diff --git a/site/public/v1/games/gradius-collection/index.json b/site/public/v1/games/gradius-collection/index.json new file mode 100644 index 000000000000..e5be0e0d2344 --- /dev/null +++ b/site/public/v1/games/gradius-collection/index.json @@ -0,0 +1,33 @@ +{ + "id": 61715, + "slug": "gradius-collection", + "name": "Gradius Collection", + "release_date": "2006-02-09", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation Portable" + ], + "genres": [ + "shooter game" + ], + "stores": [], + "developers": [ + "Konami" + ], + "publishers": [ + "Konami" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4387082" + ], + "created_at": "2026-07-10T10:10:16.122297", + "updated_at": "2026-07-10T10:10:16.122297", + "url": "/v1/games/gradius-collection" +} diff --git a/site/public/v1/games/gradius-the-slot/index.json b/site/public/v1/games/gradius-the-slot/index.json new file mode 100644 index 000000000000..9a311604db62 --- /dev/null +++ b/site/public/v1/games/gradius-the-slot/index.json @@ -0,0 +1,31 @@ +{ + "id": 61727, + "slug": "gradius-the-slot", + "name": "Gradius: The Slot", + "release_date": "2011-07-25", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "slot machine" + ], + "stores": [], + "developers": [ + "KPE" + ], + "publishers": [ + "KPE" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11300196" + ], + "created_at": "2026-07-10T10:10:16.131715", + "updated_at": "2026-07-10T10:10:16.131715", + "url": "/v1/games/gradius-the-slot" +} diff --git a/site/public/v1/games/gran-turismo-8/index.json b/site/public/v1/games/gran-turismo-8/index.json new file mode 100644 index 000000000000..68d50993c7b4 --- /dev/null +++ b/site/public/v1/games/gran-turismo-8/index.json @@ -0,0 +1,31 @@ +{ + "id": 61778, + "slug": "gran-turismo-8", + "name": "Gran Turismo 8", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "racing video game" + ], + "stores": [], + "developers": [ + "Polyphony Digital" + ], + "publishers": [ + "Sony Interactive Entertainment" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116729231" + ], + "created_at": "2026-07-10T10:10:16.143787", + "updated_at": "2026-07-10T10:10:16.143787", + "url": "/v1/games/gran-turismo-8" +} diff --git a/site/public/v1/games/gran-turismo-for-boys/index.json b/site/public/v1/games/gran-turismo-for-boys/index.json new file mode 100644 index 000000000000..20b2129ee9f2 --- /dev/null +++ b/site/public/v1/games/gran-turismo-for-boys/index.json @@ -0,0 +1,33 @@ +{ + "id": 61780, + "slug": "gran-turismo-for-boys", + "name": "Gran Turismo for Boys", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 3" + ], + "genres": [ + "sim racing" + ], + "stores": [], + "developers": [ + "Polyphony Digital" + ], + "publishers": [ + "Sony Interactive Entertainment" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124259186" + ], + "created_at": "2026-07-10T10:10:16.143787", + "updated_at": "2026-07-10T10:10:16.143787", + "url": "/v1/games/gran-turismo-for-boys" +} diff --git a/site/public/v1/games/grand-mountain-adventure-q118233902/index.json b/site/public/v1/games/grand-mountain-adventure-q118233902/index.json new file mode 100644 index 000000000000..6a94c80e8551 --- /dev/null +++ b/site/public/v1/games/grand-mountain-adventure-q118233902/index.json @@ -0,0 +1,30 @@ +{ + "id": 61833, + "slug": "grand-mountain-adventure-q118233902", + "name": "Grand Mountain Adventure+", + "release_date": "2023-04-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "iPadOS", + "iOS" + ], + "genres": [], + "stores": [], + "developers": [ + "Toppluva" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118233902" + ], + "created_at": "2026-07-10T10:10:16.157788", + "updated_at": "2026-07-10T10:10:16.157788", + "url": "/v1/games/grand-mountain-adventure-q118233902" +} diff --git a/site/public/v1/games/grand-prix-racing-online/index.json b/site/public/v1/games/grand-prix-racing-online/index.json new file mode 100644 index 000000000000..3b520f1ec9b5 --- /dev/null +++ b/site/public/v1/games/grand-prix-racing-online/index.json @@ -0,0 +1,25 @@ +{ + "id": 61855, + "slug": "grand-prix-racing-online", + "name": "Grand Prix Racing Online", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8964946" + ], + "created_at": "2026-07-10T10:10:16.162839", + "updated_at": "2026-07-10T10:10:16.162839", + "url": "/v1/games/grand-prix-racing-online" +} diff --git a/site/public/v1/games/grand-theft-auto-collection/index.json b/site/public/v1/games/grand-theft-auto-collection/index.json new file mode 100644 index 000000000000..3d58db6c05a3 --- /dev/null +++ b/site/public/v1/games/grand-theft-auto-collection/index.json @@ -0,0 +1,27 @@ +{ + "id": 61878, + "slug": "grand-theft-auto-collection", + "name": "Grand Theft Auto Collection", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q78669829" + ], + "created_at": "2026-07-10T10:10:16.168724", + "updated_at": "2026-07-10T10:10:16.168724", + "url": "/v1/games/grand-theft-auto-collection" +} diff --git a/site/public/v1/games/grand-theft-auto-director-s-cut/index.json b/site/public/v1/games/grand-theft-auto-director-s-cut/index.json new file mode 100644 index 000000000000..216ee3ec8769 --- /dev/null +++ b/site/public/v1/games/grand-theft-auto-director-s-cut/index.json @@ -0,0 +1,32 @@ +{ + "id": 61879, + "slug": "grand-theft-auto-director-s-cut", + "name": "Grand Theft Auto: Director's Cut", + "release_date": "1999-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "DOS", + "Microsoft Windows" + ], + "genres": [ + "top-down shooter" + ], + "stores": [], + "developers": [ + "DMA Design" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109931593" + ], + "created_at": "2026-07-10T10:10:16.169722", + "updated_at": "2026-07-10T10:10:16.169722", + "url": "/v1/games/grand-theft-auto-director-s-cut" +} diff --git a/site/public/v1/games/grand-theft-auto-double-pack/index.json b/site/public/v1/games/grand-theft-auto-double-pack/index.json new file mode 100644 index 000000000000..8c9bdf084feb --- /dev/null +++ b/site/public/v1/games/grand-theft-auto-double-pack/index.json @@ -0,0 +1,25 @@ +{ + "id": 61880, + "slug": "grand-theft-auto-double-pack", + "name": "Grand Theft Auto Double Pack", + "release_date": "2003-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4039655" + ], + "created_at": "2026-07-10T10:10:16.169722", + "updated_at": "2026-07-10T10:10:16.169722", + "url": "/v1/games/grand-theft-auto-double-pack" +} diff --git a/site/public/v1/games/grand-theft-auto-iv-complete-edition/index.json b/site/public/v1/games/grand-theft-auto-iv-complete-edition/index.json new file mode 100644 index 000000000000..37dd8de14154 --- /dev/null +++ b/site/public/v1/games/grand-theft-auto-iv-complete-edition/index.json @@ -0,0 +1,31 @@ +{ + "id": 61882, + "slug": "grand-theft-auto-iv-complete-edition", + "name": "Grand Theft Auto IV: Complete Edition", + "release_date": "2010-10-27", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 3", + "Microsoft Windows" + ], + "genres": [ + "action-adventure game", + "third-person shooter" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4039657" + ], + "created_at": "2026-07-10T10:10:16.169722", + "updated_at": "2026-07-10T10:10:16.169722", + "url": "/v1/games/grand-theft-auto-iv-complete-edition" +} diff --git a/site/public/v1/games/grand-theft-auto-iv-grand-theft-auto-san-andreas/index.json b/site/public/v1/games/grand-theft-auto-iv-grand-theft-auto-san-andreas/index.json new file mode 100644 index 000000000000..b552b3ef39bd --- /dev/null +++ b/site/public/v1/games/grand-theft-auto-iv-grand-theft-auto-san-andreas/index.json @@ -0,0 +1,27 @@ +{ + "id": 61883, + "slug": "grand-theft-auto-iv-grand-theft-auto-san-andreas", + "name": "Grand Theft Auto IV + Grand Theft Auto: San Andreas", + "release_date": "2018-11-19", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q78163089" + ], + "created_at": "2026-07-10T10:10:16.170726", + "updated_at": "2026-07-10T10:10:16.170726", + "url": "/v1/games/grand-theft-auto-iv-grand-theft-auto-san-andreas" +} diff --git a/site/public/v1/games/grand-theft-auto-q63284897/index.json b/site/public/v1/games/grand-theft-auto-q63284897/index.json new file mode 100644 index 000000000000..f1ec2183f142 --- /dev/null +++ b/site/public/v1/games/grand-theft-auto-q63284897/index.json @@ -0,0 +1,25 @@ +{ + "id": 61884, + "slug": "grand-theft-auto-q63284897", + "name": "Grand Theft Auto", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63284897" + ], + "created_at": "2026-07-10T10:10:16.170726", + "updated_at": "2026-07-10T10:10:16.170726", + "url": "/v1/games/grand-theft-auto-q63284897" +} diff --git a/site/public/v1/games/grand-theft-auto-the-classics-collection/index.json b/site/public/v1/games/grand-theft-auto-the-classics-collection/index.json new file mode 100644 index 000000000000..933b7c5fbcc8 --- /dev/null +++ b/site/public/v1/games/grand-theft-auto-the-classics-collection/index.json @@ -0,0 +1,29 @@ +{ + "id": 61885, + "slug": "grand-theft-auto-the-classics-collection", + "name": "Grand Theft Auto: The Classics Collection", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Take-Two Interactive" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4039654" + ], + "created_at": "2026-07-10T10:10:16.170726", + "updated_at": "2026-07-10T10:10:16.170726", + "url": "/v1/games/grand-theft-auto-the-classics-collection" +} diff --git a/site/public/v1/games/grand-theft-auto-the-trilogy/index.json b/site/public/v1/games/grand-theft-auto-the-trilogy/index.json new file mode 100644 index 000000000000..127bfbd977e7 --- /dev/null +++ b/site/public/v1/games/grand-theft-auto-the-trilogy/index.json @@ -0,0 +1,29 @@ +{ + "id": 61886, + "slug": "grand-theft-auto-the-trilogy", + "name": "Grand Theft Auto: The Trilogy", + "release_date": "2005-10-17", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "action-adventure game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q888978" + ], + "created_at": "2026-07-10T10:10:16.171725", + "updated_at": "2026-07-10T10:10:16.171725", + "url": "/v1/games/grand-theft-auto-the-trilogy" +} diff --git a/site/public/v1/games/grand-theft-auto-v-great-white-shark-cash-card/index.json b/site/public/v1/games/grand-theft-auto-v-great-white-shark-cash-card/index.json new file mode 100644 index 000000000000..c275a8f12372 --- /dev/null +++ b/site/public/v1/games/grand-theft-auto-v-great-white-shark-cash-card/index.json @@ -0,0 +1,27 @@ +{ + "id": 61888, + "slug": "grand-theft-auto-v-great-white-shark-cash-card", + "name": "Grand Theft Auto V & Great White Shark Cash Card", + "release_date": "2019-01-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q78664676" + ], + "created_at": "2026-07-10T10:10:16.171725", + "updated_at": "2026-07-10T10:10:16.171725", + "url": "/v1/games/grand-theft-auto-v-great-white-shark-cash-card" +} diff --git a/site/public/v1/games/grand-theft-auto-v-premium-online-edition-great-white-shark-card-bundle/index.json b/site/public/v1/games/grand-theft-auto-v-premium-online-edition-great-white-shark-card-bundle/index.json new file mode 100644 index 000000000000..75e364ae3b6a --- /dev/null +++ b/site/public/v1/games/grand-theft-auto-v-premium-online-edition-great-white-shark-card-bundle/index.json @@ -0,0 +1,27 @@ +{ + "id": 61889, + "slug": "grand-theft-auto-v-premium-online-edition-great-white-shark-card-bundle", + "name": "Grand Theft Auto V: Premium Online Edition & Great White Shark Card Bundle", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q78667259" + ], + "created_at": "2026-07-10T10:10:16.172725", + "updated_at": "2026-07-10T10:10:16.172725", + "url": "/v1/games/grand-theft-auto-v-premium-online-edition-great-white-shark-card-bundle" +} diff --git a/site/public/v1/games/grand-theft-auto-v-premium-online-edition-megalodon-shark-card-bundle/index.json b/site/public/v1/games/grand-theft-auto-v-premium-online-edition-megalodon-shark-card-bundle/index.json new file mode 100644 index 000000000000..6b605930d00b --- /dev/null +++ b/site/public/v1/games/grand-theft-auto-v-premium-online-edition-megalodon-shark-card-bundle/index.json @@ -0,0 +1,27 @@ +{ + "id": 61890, + "slug": "grand-theft-auto-v-premium-online-edition-megalodon-shark-card-bundle", + "name": "Grand Theft Auto V: Premium Online Edition & Megalodon Shark Card Bundle", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q78667885" + ], + "created_at": "2026-07-10T10:10:16.172725", + "updated_at": "2026-07-10T10:10:16.172725", + "url": "/v1/games/grand-theft-auto-v-premium-online-edition-megalodon-shark-card-bundle" +} diff --git a/site/public/v1/games/grand-theft-auto-v-premium-online-edition-whale-shark-card-bundle/index.json b/site/public/v1/games/grand-theft-auto-v-premium-online-edition-whale-shark-card-bundle/index.json new file mode 100644 index 000000000000..5d38163c8feb --- /dev/null +++ b/site/public/v1/games/grand-theft-auto-v-premium-online-edition-whale-shark-card-bundle/index.json @@ -0,0 +1,27 @@ +{ + "id": 61891, + "slug": "grand-theft-auto-v-premium-online-edition-whale-shark-card-bundle", + "name": "Grand Theft Auto V: Premium Online Edition & Whale Shark Card Bundle", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q78667848" + ], + "created_at": "2026-07-10T10:10:16.172725", + "updated_at": "2026-07-10T10:10:16.172725", + "url": "/v1/games/grand-theft-auto-v-premium-online-edition-whale-shark-card-bundle" +} diff --git a/site/public/v1/games/grand-theft-auto-v-premium-online-edition/index.json b/site/public/v1/games/grand-theft-auto-v-premium-online-edition/index.json new file mode 100644 index 000000000000..1fa5d01052e2 --- /dev/null +++ b/site/public/v1/games/grand-theft-auto-v-premium-online-edition/index.json @@ -0,0 +1,27 @@ +{ + "id": 61892, + "slug": "grand-theft-auto-v-premium-online-edition", + "name": "Grand Theft Auto V: Premium Online Edition", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q78667917" + ], + "created_at": "2026-07-10T10:10:16.173820", + "updated_at": "2026-07-10T10:10:16.173820", + "url": "/v1/games/grand-theft-auto-v-premium-online-edition" +} diff --git a/site/public/v1/games/grand-theft-auto/index.json b/site/public/v1/games/grand-theft-auto/index.json new file mode 100644 index 000000000000..b0dc81db85c0 --- /dev/null +++ b/site/public/v1/games/grand-theft-auto/index.json @@ -0,0 +1,34 @@ +{ + "id": 61893, + "slug": "grand-theft-auto", + "name": "Grand Theft Auto", + "release_date": "1999-11-22", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Game Boy Color" + ], + "genres": [ + "action-adventure game", + "sandbox game" + ], + "stores": [], + "developers": [ + "Rockstar Lincoln" + ], + "publishers": [ + "Take-Two Interactive" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105265216" + ], + "created_at": "2026-07-10T10:10:16.173820", + "updated_at": "2026-07-10T10:10:16.173820", + "url": "/v1/games/grand-theft-auto" +} diff --git a/site/public/v1/games/grandmaster-chess-cd-rom-edition/index.json b/site/public/v1/games/grandmaster-chess-cd-rom-edition/index.json new file mode 100644 index 000000000000..6d41b592e43b --- /dev/null +++ b/site/public/v1/games/grandmaster-chess-cd-rom-edition/index.json @@ -0,0 +1,29 @@ +{ + "id": 61922, + "slug": "grandmaster-chess-cd-rom-edition", + "name": "Grandmaster Chess (CD-ROM Edition)", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "DOS" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Capstone Software" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126888470" + ], + "created_at": "2026-07-10T10:10:16.180811", + "updated_at": "2026-07-10T10:10:16.180811", + "url": "/v1/games/grandmaster-chess-cd-rom-edition" +} diff --git a/site/public/v1/games/graveyard-keeper-better-save-soul/index.json b/site/public/v1/games/graveyard-keeper-better-save-soul/index.json new file mode 100644 index 000000000000..e2b091d0b7e1 --- /dev/null +++ b/site/public/v1/games/graveyard-keeper-better-save-soul/index.json @@ -0,0 +1,28 @@ +{ + "id": 62091, + "slug": "graveyard-keeper-better-save-soul", + "name": "Graveyard Keeper - Better Save Soul", + "release_date": "2021-10-27", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115700444" + ], + "created_at": "2026-07-10T10:10:16.226881", + "updated_at": "2026-07-10T10:10:16.226881", + "url": "/v1/games/graveyard-keeper-better-save-soul" +} diff --git a/site/public/v1/games/graveyard-keeper-game-of-crone/index.json b/site/public/v1/games/graveyard-keeper-game-of-crone/index.json new file mode 100644 index 000000000000..85c3c6c4a8a6 --- /dev/null +++ b/site/public/v1/games/graveyard-keeper-game-of-crone/index.json @@ -0,0 +1,28 @@ +{ + "id": 62092, + "slug": "graveyard-keeper-game-of-crone", + "name": "Graveyard Keeper - Game Of Crone", + "release_date": "2020-10-27", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115700427" + ], + "created_at": "2026-07-10T10:10:16.227893", + "updated_at": "2026-07-10T10:10:16.227893", + "url": "/v1/games/graveyard-keeper-game-of-crone" +} diff --git a/site/public/v1/games/graveyard-keeper-stranger-sins/index.json b/site/public/v1/games/graveyard-keeper-stranger-sins/index.json new file mode 100644 index 000000000000..2de8821b8436 --- /dev/null +++ b/site/public/v1/games/graveyard-keeper-stranger-sins/index.json @@ -0,0 +1,28 @@ +{ + "id": 62094, + "slug": "graveyard-keeper-stranger-sins", + "name": "Graveyard Keeper - Stranger Sins", + "release_date": "2019-10-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115695238" + ], + "created_at": "2026-07-10T10:10:16.227893", + "updated_at": "2026-07-10T10:10:16.227893", + "url": "/v1/games/graveyard-keeper-stranger-sins" +} diff --git a/site/public/v1/games/gridlee/index.json b/site/public/v1/games/gridlee/index.json new file mode 100644 index 000000000000..55558e123145 --- /dev/null +++ b/site/public/v1/games/gridlee/index.json @@ -0,0 +1,25 @@ +{ + "id": 62599, + "slug": "gridlee", + "name": "Gridlee", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5608646" + ], + "created_at": "2026-07-10T10:10:16.371153", + "updated_at": "2026-07-10T10:10:16.371153", + "url": "/v1/games/gridlee" +} diff --git a/site/public/v1/games/griff-the-winged-lion/index.json b/site/public/v1/games/griff-the-winged-lion/index.json new file mode 100644 index 000000000000..6296442c5f6e --- /dev/null +++ b/site/public/v1/games/griff-the-winged-lion/index.json @@ -0,0 +1,27 @@ +{ + "id": 62621, + "slug": "griff-the-winged-lion", + "name": "Griff the Winged Lion", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 4" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q64170683" + ], + "created_at": "2026-07-10T10:10:16.377091", + "updated_at": "2026-07-10T10:10:16.377091", + "url": "/v1/games/griff-the-winged-lion" +} diff --git a/site/public/v1/games/grim-dawn-ashes-of-malmouth/index.json b/site/public/v1/games/grim-dawn-ashes-of-malmouth/index.json new file mode 100644 index 000000000000..2a159a56e77c --- /dev/null +++ b/site/public/v1/games/grim-dawn-ashes-of-malmouth/index.json @@ -0,0 +1,25 @@ +{ + "id": 62632, + "slug": "grim-dawn-ashes-of-malmouth", + "name": "Grim Dawn: Ashes of Malmouth", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140470764" + ], + "created_at": "2026-07-10T10:10:16.380152", + "updated_at": "2026-07-10T10:10:16.380152", + "url": "/v1/games/grim-dawn-ashes-of-malmouth" +} diff --git a/site/public/v1/games/grim-dawn-definitive-edition/index.json b/site/public/v1/games/grim-dawn-definitive-edition/index.json new file mode 100644 index 000000000000..1b1e6efe3582 --- /dev/null +++ b/site/public/v1/games/grim-dawn-definitive-edition/index.json @@ -0,0 +1,31 @@ +{ + "id": 62633, + "slug": "grim-dawn-definitive-edition", + "name": "Grim Dawn: Definitive Edition", + "release_date": "2021-12-03", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S" + ], + "genres": [], + "stores": [], + "developers": [ + "Crate Entertainment" + ], + "publishers": [ + "Crate Entertainment" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109978991" + ], + "created_at": "2026-07-10T10:10:16.381201", + "updated_at": "2026-07-10T10:10:16.381201", + "url": "/v1/games/grim-dawn-definitive-edition" +} diff --git a/site/public/v1/games/gris-q113660360/index.json b/site/public/v1/games/gris-q113660360/index.json new file mode 100644 index 000000000000..85126154e107 --- /dev/null +++ b/site/public/v1/games/gris-q113660360/index.json @@ -0,0 +1,30 @@ +{ + "id": 62789, + "slug": "gris-q113660360", + "name": "GRIS+", + "release_date": "2022-09-30", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "iPadOS", + "tvOS", + "iOS", + "macOS" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113660360" + ], + "created_at": "2026-07-10T10:10:16.428166", + "updated_at": "2026-07-10T10:10:16.428166", + "url": "/v1/games/gris-q113660360" +} diff --git a/site/public/v1/games/ground-control-dark-conspiracy/index.json b/site/public/v1/games/ground-control-dark-conspiracy/index.json new file mode 100644 index 000000000000..1b0bc5146cfc --- /dev/null +++ b/site/public/v1/games/ground-control-dark-conspiracy/index.json @@ -0,0 +1,31 @@ +{ + "id": 62878, + "slug": "ground-control-dark-conspiracy", + "name": "Ground Control: Dark Conspiracy", + "release_date": "2000-12-14", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "real-time tactics" + ], + "stores": [], + "developers": [], + "publishers": [ + "Sierra Entertainment" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3777147" + ], + "created_at": "2026-07-10T10:10:16.450911", + "updated_at": "2026-07-10T10:10:16.450911", + "url": "/v1/games/ground-control-dark-conspiracy" +} diff --git a/site/public/v1/games/grow-a-garden/index.json b/site/public/v1/games/grow-a-garden/index.json new file mode 100644 index 000000000000..88fb1d723c41 --- /dev/null +++ b/site/public/v1/games/grow-a-garden/index.json @@ -0,0 +1,34 @@ +{ + "id": 62921, + "slug": "grow-a-garden", + "name": "Grow a Garden", + "release_date": "2025-03-26", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "iOS", + "macOS", + "Microsoft Windows", + "Google Chrome" + ], + "genres": [ + "casual game", + "simulation video game", + "incremental game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134739925" + ], + "created_at": "2026-07-10T10:10:16.462921", + "updated_at": "2026-07-10T10:10:16.462921", + "url": "/v1/games/grow-a-garden" +} diff --git a/site/public/v1/games/grunge-theme/index.json b/site/public/v1/games/grunge-theme/index.json new file mode 100644 index 000000000000..ca6ddb0b4fcb --- /dev/null +++ b/site/public/v1/games/grunge-theme/index.json @@ -0,0 +1,31 @@ +{ + "id": 62989, + "slug": "grunge-theme", + "name": "Grunge Theme", + "release_date": "2019-09-26", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 4" + ], + "genres": [], + "stores": [], + "developers": [ + "Sony Interactive Entertainment" + ], + "publishers": [ + "Sony Interactive Entertainment" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q85045446" + ], + "created_at": "2026-07-10T10:10:16.481342", + "updated_at": "2026-07-10T10:10:16.481342", + "url": "/v1/games/grunge-theme" +} diff --git a/site/public/v1/games/gta-online-beach-bum-update/index.json b/site/public/v1/games/gta-online-beach-bum-update/index.json new file mode 100644 index 000000000000..19c9863873d6 --- /dev/null +++ b/site/public/v1/games/gta-online-beach-bum-update/index.json @@ -0,0 +1,27 @@ +{ + "id": 63021, + "slug": "gta-online-beach-bum-update", + "name": "GTA Online: Beach Bum Update", + "release_date": "2013-11-19", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Take-Two Interactive" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109637197" + ], + "created_at": "2026-07-10T10:10:16.489277", + "updated_at": "2026-07-10T10:10:16.489277", + "url": "/v1/games/gta-online-beach-bum-update" +} diff --git a/site/public/v1/games/gta-online-business-update/index.json b/site/public/v1/games/gta-online-business-update/index.json new file mode 100644 index 000000000000..5b514d0ad70c --- /dev/null +++ b/site/public/v1/games/gta-online-business-update/index.json @@ -0,0 +1,27 @@ +{ + "id": 63022, + "slug": "gta-online-business-update", + "name": "GTA Online: Business Update", + "release_date": "2014-03-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Take-Two Interactive" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109637264" + ], + "created_at": "2026-07-10T10:10:16.489277", + "updated_at": "2026-07-10T10:10:16.489277", + "url": "/v1/games/gta-online-business-update" +} diff --git a/site/public/v1/games/gta-online-capture-creator/index.json b/site/public/v1/games/gta-online-capture-creator/index.json new file mode 100644 index 000000000000..98ac3ccac277 --- /dev/null +++ b/site/public/v1/games/gta-online-capture-creator/index.json @@ -0,0 +1,27 @@ +{ + "id": 63023, + "slug": "gta-online-capture-creator", + "name": "GTA Online: Capture Creator", + "release_date": "2014-04-11", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Take-Two Interactive" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109637280" + ], + "created_at": "2026-07-10T10:10:16.490277", + "updated_at": "2026-07-10T10:10:16.490277", + "url": "/v1/games/gta-online-capture-creator" +} diff --git a/site/public/v1/games/gta-online-capture-update/index.json b/site/public/v1/games/gta-online-capture-update/index.json new file mode 100644 index 000000000000..be883dfd9cfa --- /dev/null +++ b/site/public/v1/games/gta-online-capture-update/index.json @@ -0,0 +1,27 @@ +{ + "id": 63024, + "slug": "gta-online-capture-update", + "name": "GTA Online: Capture Update", + "release_date": "2013-12-17", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Take-Two Interactive" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109637228" + ], + "created_at": "2026-07-10T10:10:16.490277", + "updated_at": "2026-07-10T10:10:16.490277", + "url": "/v1/games/gta-online-capture-update" +} diff --git a/site/public/v1/games/gta-online-deathmatch-race-creators/index.json b/site/public/v1/games/gta-online-deathmatch-race-creators/index.json new file mode 100644 index 000000000000..96ea70510bda --- /dev/null +++ b/site/public/v1/games/gta-online-deathmatch-race-creators/index.json @@ -0,0 +1,27 @@ +{ + "id": 63025, + "slug": "gta-online-deathmatch-race-creators", + "name": "GTA Online: Deathmatch & Race Creators", + "release_date": "2013-12-11", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Take-Two Interactive" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109637213" + ], + "created_at": "2026-07-10T10:10:16.490277", + "updated_at": "2026-07-10T10:10:16.490277", + "url": "/v1/games/gta-online-deathmatch-race-creators" +} diff --git a/site/public/v1/games/gta-online-festive-surprise/index.json b/site/public/v1/games/gta-online-festive-surprise/index.json new file mode 100644 index 000000000000..8ed936b69f60 --- /dev/null +++ b/site/public/v1/games/gta-online-festive-surprise/index.json @@ -0,0 +1,27 @@ +{ + "id": 63026, + "slug": "gta-online-festive-surprise", + "name": "GTA Online: Festive Surprise", + "release_date": "2014-12-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Take-Two Interactive" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109637357" + ], + "created_at": "2026-07-10T10:10:16.491277", + "updated_at": "2026-07-10T10:10:16.491277", + "url": "/v1/games/gta-online-festive-surprise" +} diff --git a/site/public/v1/games/gta-online-heists/index.json b/site/public/v1/games/gta-online-heists/index.json new file mode 100644 index 000000000000..5b70b3f0916f --- /dev/null +++ b/site/public/v1/games/gta-online-heists/index.json @@ -0,0 +1,27 @@ +{ + "id": 63027, + "slug": "gta-online-heists", + "name": "GTA Online: Heists", + "release_date": "2015-03-10", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Take-Two Interactive" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109637378" + ], + "created_at": "2026-07-10T10:10:16.491277", + "updated_at": "2026-07-10T10:10:16.491277", + "url": "/v1/games/gta-online-heists" +} diff --git a/site/public/v1/games/gta-online-high-life-update/index.json b/site/public/v1/games/gta-online-high-life-update/index.json new file mode 100644 index 000000000000..482a3fe27434 --- /dev/null +++ b/site/public/v1/games/gta-online-high-life-update/index.json @@ -0,0 +1,27 @@ +{ + "id": 63028, + "slug": "gta-online-high-life-update", + "name": "GTA Online: High Life Update", + "release_date": "2014-05-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Take-Two Interactive" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109637291" + ], + "created_at": "2026-07-10T10:10:16.491277", + "updated_at": "2026-07-10T10:10:16.491277", + "url": "/v1/games/gta-online-high-life-update" +} diff --git a/site/public/v1/games/gta-online-holiday-gifts/index.json b/site/public/v1/games/gta-online-holiday-gifts/index.json new file mode 100644 index 000000000000..67e892df3606 --- /dev/null +++ b/site/public/v1/games/gta-online-holiday-gifts/index.json @@ -0,0 +1,27 @@ +{ + "id": 63029, + "slug": "gta-online-holiday-gifts", + "name": "GTA Online: Holiday Gifts", + "release_date": "2013-12-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Take-Two Interactive" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109637235" + ], + "created_at": "2026-07-10T10:10:16.492277", + "updated_at": "2026-07-10T10:10:16.492277", + "url": "/v1/games/gta-online-holiday-gifts" +} diff --git a/site/public/v1/games/gta-online-i-m-not-a-hipster/index.json b/site/public/v1/games/gta-online-i-m-not-a-hipster/index.json new file mode 100644 index 000000000000..a36328db927e --- /dev/null +++ b/site/public/v1/games/gta-online-i-m-not-a-hipster/index.json @@ -0,0 +1,27 @@ +{ + "id": 63030, + "slug": "gta-online-i-m-not-a-hipster", + "name": "GTA Online: I'm Not a Hipster", + "release_date": "2014-06-17", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Take-Two Interactive" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109637302" + ], + "created_at": "2026-07-10T10:10:16.492277", + "updated_at": "2026-07-10T10:10:16.492277", + "url": "/v1/games/gta-online-i-m-not-a-hipster" +} diff --git a/site/public/v1/games/gta-online-independence-day-special/index.json b/site/public/v1/games/gta-online-independence-day-special/index.json new file mode 100644 index 000000000000..bb6ba6ee5aca --- /dev/null +++ b/site/public/v1/games/gta-online-independence-day-special/index.json @@ -0,0 +1,27 @@ +{ + "id": 63031, + "slug": "gta-online-independence-day-special", + "name": "GTA Online: Independence Day Special", + "release_date": "2014-07-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Take-Two Interactive" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109637315" + ], + "created_at": "2026-07-10T10:10:16.492277", + "updated_at": "2026-07-10T10:10:16.492277", + "url": "/v1/games/gta-online-independence-day-special" +} diff --git a/site/public/v1/games/gta-online-last-team-standing/index.json b/site/public/v1/games/gta-online-last-team-standing/index.json new file mode 100644 index 000000000000..7267168d004a --- /dev/null +++ b/site/public/v1/games/gta-online-last-team-standing/index.json @@ -0,0 +1,27 @@ +{ + "id": 63032, + "slug": "gta-online-last-team-standing", + "name": "GTA Online: Last Team Standing", + "release_date": "2014-10-02", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Take-Two Interactive" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109637345" + ], + "created_at": "2026-07-10T10:10:16.492277", + "updated_at": "2026-07-10T10:10:16.492277", + "url": "/v1/games/gta-online-last-team-standing" +} diff --git a/site/public/v1/games/gta-online-san-andreas-flight-school/index.json b/site/public/v1/games/gta-online-san-andreas-flight-school/index.json new file mode 100644 index 000000000000..6fbe9565d6e3 --- /dev/null +++ b/site/public/v1/games/gta-online-san-andreas-flight-school/index.json @@ -0,0 +1,27 @@ +{ + "id": 63033, + "slug": "gta-online-san-andreas-flight-school", + "name": "GTA Online: San Andreas Flight School", + "release_date": "2014-08-19", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Take-Two Interactive" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109637327" + ], + "created_at": "2026-07-10T10:10:16.493276", + "updated_at": "2026-07-10T10:10:16.493276", + "url": "/v1/games/gta-online-san-andreas-flight-school" +} diff --git a/site/public/v1/games/gta-online-valentine-s-day-massacre-special/index.json b/site/public/v1/games/gta-online-valentine-s-day-massacre-special/index.json new file mode 100644 index 000000000000..87ba613c10b2 --- /dev/null +++ b/site/public/v1/games/gta-online-valentine-s-day-massacre-special/index.json @@ -0,0 +1,27 @@ +{ + "id": 63034, + "slug": "gta-online-valentine-s-day-massacre-special", + "name": "GTA Online: Valentine's Day Massacre Special", + "release_date": "2014-02-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Take-Two Interactive" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109637250" + ], + "created_at": "2026-07-10T10:10:16.493276", + "updated_at": "2026-07-10T10:10:16.493276", + "url": "/v1/games/gta-online-valentine-s-day-massacre-special" +} diff --git a/site/public/v1/games/gtr-evolution/index.json b/site/public/v1/games/gtr-evolution/index.json new file mode 100644 index 000000000000..74f6022dc5f4 --- /dev/null +++ b/site/public/v1/games/gtr-evolution/index.json @@ -0,0 +1,33 @@ +{ + "id": 63045, + "slug": "gtr-evolution", + "name": "GTR Evolution", + "release_date": "2008-09-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "sim racing" + ], + "stores": [], + "developers": [ + "SimBin" + ], + "publishers": [ + "Atari" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1487380" + ], + "created_at": "2026-07-10T10:10:16.496275", + "updated_at": "2026-07-10T10:10:16.496275", + "url": "/v1/games/gtr-evolution" +} diff --git a/site/public/v1/games/guardians-of-the-ashes-the-lost-memories-r18/index.json b/site/public/v1/games/guardians-of-the-ashes-the-lost-memories-r18/index.json new file mode 100644 index 000000000000..5c8c7de075cf --- /dev/null +++ b/site/public/v1/games/guardians-of-the-ashes-the-lost-memories-r18/index.json @@ -0,0 +1,35 @@ +{ + "id": 63128, + "slug": "guardians-of-the-ashes-the-lost-memories-r18", + "name": "Guardians of the Ashes - The Lost Memories (R18)", + "release_date": "2020-02-21", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "action-adventure game", + "role-playing video game", + "erotic video game" + ], + "stores": [], + "developers": [ + "Mature Games" + ], + "publishers": [ + "Mature Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q129457347" + ], + "created_at": "2026-07-10T10:10:16.518278", + "updated_at": "2026-07-10T10:10:16.518278", + "url": "/v1/games/guardians-of-the-ashes-the-lost-memories-r18" +} diff --git a/site/public/v1/games/guardians-of-the-galaxy-the-telltale-series-episode-1/index.json b/site/public/v1/games/guardians-of-the-galaxy-the-telltale-series-episode-1/index.json new file mode 100644 index 000000000000..74088a807b28 --- /dev/null +++ b/site/public/v1/games/guardians-of-the-galaxy-the-telltale-series-episode-1/index.json @@ -0,0 +1,28 @@ +{ + "id": 63131, + "slug": "guardians-of-the-galaxy-the-telltale-series-episode-1", + "name": "Guardians of the Galaxy: The Telltale Series - Episode 1", + "release_date": "2017-04-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q90133202" + ], + "created_at": "2026-07-10T10:10:16.518278", + "updated_at": "2026-07-10T10:10:16.518278", + "url": "/v1/games/guardians-of-the-galaxy-the-telltale-series-episode-1" +} diff --git a/site/public/v1/games/guess-the-correlation/index.json b/site/public/v1/games/guess-the-correlation/index.json new file mode 100644 index 000000000000..ed95021e3c5a --- /dev/null +++ b/site/public/v1/games/guess-the-correlation/index.json @@ -0,0 +1,25 @@ +{ + "id": 63172, + "slug": "guess-the-correlation", + "name": "Guess the Correlation", + "release_date": "2016-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q39056373" + ], + "created_at": "2026-07-10T10:10:16.529349", + "updated_at": "2026-07-10T10:10:16.529349", + "url": "/v1/games/guess-the-correlation" +} diff --git a/site/public/v1/games/guild-wars-2-end-of-dragons/index.json b/site/public/v1/games/guild-wars-2-end-of-dragons/index.json new file mode 100644 index 000000000000..ecd3f1294cf3 --- /dev/null +++ b/site/public/v1/games/guild-wars-2-end-of-dragons/index.json @@ -0,0 +1,27 @@ +{ + "id": 63213, + "slug": "guild-wars-2-end-of-dragons", + "name": "Guild Wars 2: End of Dragons", + "release_date": "2022-02-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "massively multiplayer online role-playing game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107676489" + ], + "created_at": "2026-07-10T10:10:16.540874", + "updated_at": "2026-07-10T10:10:16.540874", + "url": "/v1/games/guild-wars-2-end-of-dragons" +} diff --git a/site/public/v1/games/guild-wars-2-heart-of-thorns/index.json b/site/public/v1/games/guild-wars-2-heart-of-thorns/index.json new file mode 100644 index 000000000000..6619559357fe --- /dev/null +++ b/site/public/v1/games/guild-wars-2-heart-of-thorns/index.json @@ -0,0 +1,34 @@ +{ + "id": 63214, + "slug": "guild-wars-2-heart-of-thorns", + "name": "Guild Wars 2: Heart of Thorns", + "release_date": "2015-10-23", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "massively multiplayer online role-playing game" + ], + "stores": [], + "developers": [ + "ArenaNet" + ], + "publishers": [ + "NC" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q21198240" + ], + "created_at": "2026-07-10T10:10:16.540874", + "updated_at": "2026-07-10T10:10:16.540874", + "url": "/v1/games/guild-wars-2-heart-of-thorns" +} diff --git a/site/public/v1/games/guild-wars-2-path-of-fire/index.json b/site/public/v1/games/guild-wars-2-path-of-fire/index.json new file mode 100644 index 000000000000..3db73862b8b3 --- /dev/null +++ b/site/public/v1/games/guild-wars-2-path-of-fire/index.json @@ -0,0 +1,29 @@ +{ + "id": 63215, + "slug": "guild-wars-2-path-of-fire", + "name": "Guild Wars 2: Path of Fire", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "ArenaNet" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q39057941" + ], + "created_at": "2026-07-10T10:10:16.540874", + "updated_at": "2026-07-10T10:10:16.540874", + "url": "/v1/games/guild-wars-2-path-of-fire" +} diff --git a/site/public/v1/games/guild-wars-eye-of-the-north/index.json b/site/public/v1/games/guild-wars-eye-of-the-north/index.json new file mode 100644 index 000000000000..05665799ff2d --- /dev/null +++ b/site/public/v1/games/guild-wars-eye-of-the-north/index.json @@ -0,0 +1,33 @@ +{ + "id": 63217, + "slug": "guild-wars-eye-of-the-north", + "name": "Guild Wars: Eye of the North", + "release_date": "2007-08-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "action role-playing game" + ], + "stores": [], + "developers": [ + "ArenaNet" + ], + "publishers": [ + "NC" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2187062" + ], + "created_at": "2026-07-10T10:10:16.540874", + "updated_at": "2026-07-10T10:10:16.540874", + "url": "/v1/games/guild-wars-eye-of-the-north" +} diff --git a/site/public/v1/games/guild01/index.json b/site/public/v1/games/guild01/index.json new file mode 100644 index 000000000000..2f3aab2839fe --- /dev/null +++ b/site/public/v1/games/guild01/index.json @@ -0,0 +1,31 @@ +{ + "id": 63222, + "slug": "guild01", + "name": "Guild01", + "release_date": "2012-05-31", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Nintendo 3DS" + ], + "genres": [], + "stores": [], + "developers": [ + "Level-5" + ], + "publishers": [ + "Level-5" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112706978" + ], + "created_at": "2026-07-10T10:10:16.541873", + "updated_at": "2026-07-10T10:10:16.541873", + "url": "/v1/games/guild01" +} diff --git a/site/public/v1/games/guild02/index.json b/site/public/v1/games/guild02/index.json new file mode 100644 index 000000000000..6f8ae6301aee --- /dev/null +++ b/site/public/v1/games/guild02/index.json @@ -0,0 +1,31 @@ +{ + "id": 63223, + "slug": "guild02", + "name": "Guild02", + "release_date": "2013-03-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Nintendo 3DS" + ], + "genres": [], + "stores": [], + "developers": [ + "Level-5" + ], + "publishers": [ + "Level-5" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112706713" + ], + "created_at": "2026-07-10T10:10:16.542856", + "updated_at": "2026-07-10T10:10:16.542856", + "url": "/v1/games/guild02" +} diff --git a/site/public/v1/games/gumboy-demo/index.json b/site/public/v1/games/gumboy-demo/index.json new file mode 100644 index 000000000000..8d6449f468fa --- /dev/null +++ b/site/public/v1/games/gumboy-demo/index.json @@ -0,0 +1,33 @@ +{ + "id": 63335, + "slug": "gumboy-demo", + "name": "Gumboy Demo", + "release_date": "2007-01-25", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "casual game" + ], + "stores": [], + "developers": [ + "Cinemax" + ], + "publishers": [ + "Meridian4" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122706735" + ], + "created_at": "2026-07-10T10:10:16.570870", + "updated_at": "2026-07-10T10:10:16.570870", + "url": "/v1/games/gumboy-demo" +} diff --git a/site/public/v1/games/gunpoint-extras-pack-1/index.json b/site/public/v1/games/gunpoint-extras-pack-1/index.json new file mode 100644 index 000000000000..cd690a2cd40a --- /dev/null +++ b/site/public/v1/games/gunpoint-extras-pack-1/index.json @@ -0,0 +1,25 @@ +{ + "id": 63581, + "slug": "gunpoint-extras-pack-1", + "name": "Gunpoint Extras Pack 1", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131886162" + ], + "created_at": "2026-07-10T10:10:16.664541", + "updated_at": "2026-07-10T10:10:16.664541", + "url": "/v1/games/gunpoint-extras-pack-1" +} diff --git a/site/public/v1/games/gunship-2000-cd-rom-edition/index.json b/site/public/v1/games/gunship-2000-cd-rom-edition/index.json new file mode 100644 index 000000000000..7404af0fb82f --- /dev/null +++ b/site/public/v1/games/gunship-2000-cd-rom-edition/index.json @@ -0,0 +1,25 @@ +{ + "id": 63639, + "slug": "gunship-2000-cd-rom-edition", + "name": "Gunship 2000 CD-ROM Edition", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126032266" + ], + "created_at": "2026-07-10T10:10:16.679466", + "updated_at": "2026-07-10T10:10:16.679466", + "url": "/v1/games/gunship-2000-cd-rom-edition" +} diff --git a/site/public/v1/games/gunship-2000-philippine-islands-antarctica-scenario-disk-with-mission-builder/index.json b/site/public/v1/games/gunship-2000-philippine-islands-antarctica-scenario-disk-with-mission-builder/index.json new file mode 100644 index 000000000000..c13e0eb2607c --- /dev/null +++ b/site/public/v1/games/gunship-2000-philippine-islands-antarctica-scenario-disk-with-mission-builder/index.json @@ -0,0 +1,25 @@ +{ + "id": 63640, + "slug": "gunship-2000-philippine-islands-antarctica-scenario-disk-with-mission-builder", + "name": "Gunship 2000: Philippine Islands & Antarctica Scenario Disk With Mission Builder", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126032311" + ], + "created_at": "2026-07-10T10:10:16.679466", + "updated_at": "2026-07-10T10:10:16.679466", + "url": "/v1/games/gunship-2000-philippine-islands-antarctica-scenario-disk-with-mission-builder" +} diff --git a/site/public/v1/games/gunvari-collection-time-crisis/index.json b/site/public/v1/games/gunvari-collection-time-crisis/index.json new file mode 100644 index 000000000000..2eeebab2d22e --- /dev/null +++ b/site/public/v1/games/gunvari-collection-time-crisis/index.json @@ -0,0 +1,25 @@ +{ + "id": 63697, + "slug": "gunvari-collection-time-crisis", + "name": "Gunvari Collection + Time Crisis", + "release_date": "2002-12-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5619539" + ], + "created_at": "2026-07-10T10:10:16.695554", + "updated_at": "2026-07-10T10:10:16.695554", + "url": "/v1/games/gunvari-collection-time-crisis" +} diff --git a/site/public/v1/games/guts-blackpowder/index.json b/site/public/v1/games/guts-blackpowder/index.json new file mode 100644 index 000000000000..bf00c6de1be3 --- /dev/null +++ b/site/public/v1/games/guts-blackpowder/index.json @@ -0,0 +1,28 @@ +{ + "id": 63744, + "slug": "guts-blackpowder", + "name": "Guts & Blackpowder", + "release_date": "2023-01-31", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "zombie video game", + "historical video game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126958175" + ], + "created_at": "2026-07-10T10:10:16.707517", + "updated_at": "2026-07-10T10:10:16.707517", + "url": "/v1/games/guts-blackpowder" +} diff --git a/site/public/v1/games/gx-games/index.json b/site/public/v1/games/gx-games/index.json new file mode 100644 index 000000000000..64ea31ae16af --- /dev/null +++ b/site/public/v1/games/gx-games/index.json @@ -0,0 +1,25 @@ +{ + "id": 63773, + "slug": "gx-games", + "name": "GX Games", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127326833" + ], + "created_at": "2026-07-10T10:10:16.715590", + "updated_at": "2026-07-10T10:10:16.715590", + "url": "/v1/games/gx-games" +} diff --git a/site/public/v1/games/gzdoom/index.json b/site/public/v1/games/gzdoom/index.json new file mode 100644 index 000000000000..00341280b9ea --- /dev/null +++ b/site/public/v1/games/gzdoom/index.json @@ -0,0 +1,25 @@ +{ + "id": 63823, + "slug": "gzdoom", + "name": "GZDoom", + "release_date": "2005-08-30", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q64223614" + ], + "created_at": "2026-07-10T10:10:16.728561", + "updated_at": "2026-07-10T10:10:16.728561", + "url": "/v1/games/gzdoom" +} diff --git a/site/public/v1/games/h-ma-hunter-lime-special-collection-vol-1/index.json b/site/public/v1/games/h-ma-hunter-lime-special-collection-vol-1/index.json new file mode 100644 index 000000000000..e6439a1f7d53 --- /dev/null +++ b/site/public/v1/games/h-ma-hunter-lime-special-collection-vol-1/index.json @@ -0,0 +1,25 @@ +{ + "id": 63850, + "slug": "h-ma-hunter-lime-special-collection-vol-1", + "name": "Hōma Hunter Lime: Special Collection Vol. 1", + "release_date": "1994-12-22", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107319666" + ], + "created_at": "2026-07-10T10:10:16.736211", + "updated_at": "2026-07-10T10:10:16.736211", + "url": "/v1/games/h-ma-hunter-lime-special-collection-vol-1" +} diff --git a/site/public/v1/games/hacx/index.json b/site/public/v1/games/hacx/index.json new file mode 100644 index 000000000000..b2d267e266cd --- /dev/null +++ b/site/public/v1/games/hacx/index.json @@ -0,0 +1,25 @@ +{ + "id": 63966, + "slug": "hacx", + "name": "Hacx", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134570987" + ], + "created_at": "2026-07-10T10:10:16.766231", + "updated_at": "2026-07-10T10:10:16.766231", + "url": "/v1/games/hacx" +} diff --git a/site/public/v1/games/half-life-1-anthology/index.json b/site/public/v1/games/half-life-1-anthology/index.json new file mode 100644 index 000000000000..8ff8971a4243 --- /dev/null +++ b/site/public/v1/games/half-life-1-anthology/index.json @@ -0,0 +1,31 @@ +{ + "id": 64089, + "slug": "half-life-1-anthology", + "name": "Half-Life 1 Anthology", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Valve Corporation" + ], + "publishers": [ + "Valve Corporation" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4040353" + ], + "created_at": "2026-07-10T10:10:16.800160", + "updated_at": "2026-07-10T10:10:16.800160", + "url": "/v1/games/half-life-1-anthology" +} diff --git a/site/public/v1/games/half-life-1-source/index.json b/site/public/v1/games/half-life-1-source/index.json new file mode 100644 index 000000000000..1ab4af948b92 --- /dev/null +++ b/site/public/v1/games/half-life-1-source/index.json @@ -0,0 +1,27 @@ +{ + "id": 64090, + "slug": "half-life-1-source", + "name": "Half-Life 1: Source", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q78781807" + ], + "created_at": "2026-07-10T10:10:16.800160", + "updated_at": "2026-07-10T10:10:16.800160", + "url": "/v1/games/half-life-1-source" +} diff --git a/site/public/v1/games/half-life-2-demo/index.json b/site/public/v1/games/half-life-2-demo/index.json new file mode 100644 index 000000000000..ed883740bdb7 --- /dev/null +++ b/site/public/v1/games/half-life-2-demo/index.json @@ -0,0 +1,34 @@ +{ + "id": 64092, + "slug": "half-life-2-demo", + "name": "Half-Life 2: Demo", + "release_date": "2004-12-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "first-person shooter" + ], + "stores": [], + "developers": [ + "Valve Corporation" + ], + "publishers": [ + "Valve Corporation" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122658349" + ], + "created_at": "2026-07-10T10:10:16.801158", + "updated_at": "2026-07-10T10:10:16.801158", + "url": "/v1/games/half-life-2-demo" +} diff --git a/site/public/v1/games/half-life-2-episode-one-q78782453/index.json b/site/public/v1/games/half-life-2-episode-one-q78782453/index.json new file mode 100644 index 000000000000..10710cc7d423 --- /dev/null +++ b/site/public/v1/games/half-life-2-episode-one-q78782453/index.json @@ -0,0 +1,27 @@ +{ + "id": 64093, + "slug": "half-life-2-episode-one-q78782453", + "name": "Half-Life 2: Episode One", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q78782453" + ], + "created_at": "2026-07-10T10:10:16.801158", + "updated_at": "2026-07-10T10:10:16.801158", + "url": "/v1/games/half-life-2-episode-one-q78782453" +} diff --git a/site/public/v1/games/half-life-2-episode-three/index.json b/site/public/v1/games/half-life-2-episode-three/index.json new file mode 100644 index 000000000000..21c2baf09d64 --- /dev/null +++ b/site/public/v1/games/half-life-2-episode-three/index.json @@ -0,0 +1,33 @@ +{ + "id": 64095, + "slug": "half-life-2-episode-three", + "name": "Half-Life 2: Episode Three", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter" + ], + "stores": [], + "developers": [ + "Valve Corporation" + ], + "publishers": [ + "Valve Corporation" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q913503" + ], + "created_at": "2026-07-10T10:10:16.801158", + "updated_at": "2026-07-10T10:10:16.801158", + "url": "/v1/games/half-life-2-episode-three" +} diff --git a/site/public/v1/games/half-life-2-ravenholm/index.json b/site/public/v1/games/half-life-2-ravenholm/index.json new file mode 100644 index 000000000000..ce25bc6f2acb --- /dev/null +++ b/site/public/v1/games/half-life-2-ravenholm/index.json @@ -0,0 +1,29 @@ +{ + "id": 64098, + "slug": "half-life-2-ravenholm", + "name": "Half-Life 2: Ravenholm", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110722249" + ], + "created_at": "2026-07-10T10:10:16.802167", + "updated_at": "2026-07-10T10:10:16.802167", + "url": "/v1/games/half-life-2-ravenholm" +} diff --git a/site/public/v1/games/half-life-3/index.json b/site/public/v1/games/half-life-3/index.json new file mode 100644 index 000000000000..e2d2f81e02d1 --- /dev/null +++ b/site/public/v1/games/half-life-3/index.json @@ -0,0 +1,29 @@ +{ + "id": 64102, + "slug": "half-life-3", + "name": "Half-Life 3", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [ + "Valve Corporation" + ], + "publishers": [ + "Valve Corporation" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q66809476" + ], + "created_at": "2026-07-10T10:10:16.803250", + "updated_at": "2026-07-10T10:10:16.803250", + "url": "/v1/games/half-life-3" +} diff --git a/site/public/v1/games/half-life-a-place-in-the-west-chapter-2/index.json b/site/public/v1/games/half-life-a-place-in-the-west-chapter-2/index.json new file mode 100644 index 000000000000..619790f7e45a --- /dev/null +++ b/site/public/v1/games/half-life-a-place-in-the-west-chapter-2/index.json @@ -0,0 +1,28 @@ +{ + "id": 64103, + "slug": "half-life-a-place-in-the-west-chapter-2", + "name": "Half-Life: A Place in the West - Chapter 2", + "release_date": "2017-02-16", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113176984" + ], + "created_at": "2026-07-10T10:10:16.803250", + "updated_at": "2026-07-10T10:10:16.803250", + "url": "/v1/games/half-life-a-place-in-the-west-chapter-2" +} diff --git a/site/public/v1/games/half-life-a-place-in-the-west-chapter-3/index.json b/site/public/v1/games/half-life-a-place-in-the-west-chapter-3/index.json new file mode 100644 index 000000000000..2e04195e7eea --- /dev/null +++ b/site/public/v1/games/half-life-a-place-in-the-west-chapter-3/index.json @@ -0,0 +1,28 @@ +{ + "id": 64104, + "slug": "half-life-a-place-in-the-west-chapter-3", + "name": "Half-Life: A Place in the West - Chapter 3", + "release_date": "2017-07-21", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113176993" + ], + "created_at": "2026-07-10T10:10:16.803250", + "updated_at": "2026-07-10T10:10:16.803250", + "url": "/v1/games/half-life-a-place-in-the-west-chapter-3" +} diff --git a/site/public/v1/games/half-life-a-place-in-the-west-chapter-4/index.json b/site/public/v1/games/half-life-a-place-in-the-west-chapter-4/index.json new file mode 100644 index 000000000000..40b264be4cfc --- /dev/null +++ b/site/public/v1/games/half-life-a-place-in-the-west-chapter-4/index.json @@ -0,0 +1,28 @@ +{ + "id": 64105, + "slug": "half-life-a-place-in-the-west-chapter-4", + "name": "Half-Life: A Place in the West - Chapter 4", + "release_date": "2017-11-29", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113177001" + ], + "created_at": "2026-07-10T10:10:16.804237", + "updated_at": "2026-07-10T10:10:16.804237", + "url": "/v1/games/half-life-a-place-in-the-west-chapter-4" +} diff --git a/site/public/v1/games/half-life-a-place-in-the-west-chapter-5/index.json b/site/public/v1/games/half-life-a-place-in-the-west-chapter-5/index.json new file mode 100644 index 000000000000..f502af4c708c --- /dev/null +++ b/site/public/v1/games/half-life-a-place-in-the-west-chapter-5/index.json @@ -0,0 +1,28 @@ +{ + "id": 64106, + "slug": "half-life-a-place-in-the-west-chapter-5", + "name": "Half-Life: A Place in the West - Chapter 5", + "release_date": "2018-07-23", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113177011" + ], + "created_at": "2026-07-10T10:10:16.804237", + "updated_at": "2026-07-10T10:10:16.804237", + "url": "/v1/games/half-life-a-place-in-the-west-chapter-5" +} diff --git a/site/public/v1/games/half-life-a-place-in-the-west-chapter-6/index.json b/site/public/v1/games/half-life-a-place-in-the-west-chapter-6/index.json new file mode 100644 index 000000000000..53d287a95c06 --- /dev/null +++ b/site/public/v1/games/half-life-a-place-in-the-west-chapter-6/index.json @@ -0,0 +1,28 @@ +{ + "id": 64107, + "slug": "half-life-a-place-in-the-west-chapter-6", + "name": "Half-Life: A Place in the West - Chapter 6", + "release_date": "2019-06-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113177020" + ], + "created_at": "2026-07-10T10:10:16.805260", + "updated_at": "2026-07-10T10:10:16.805260", + "url": "/v1/games/half-life-a-place-in-the-west-chapter-6" +} diff --git a/site/public/v1/games/half-life-a-place-in-the-west-chapter-7/index.json b/site/public/v1/games/half-life-a-place-in-the-west-chapter-7/index.json new file mode 100644 index 000000000000..59eb83d6fbcb --- /dev/null +++ b/site/public/v1/games/half-life-a-place-in-the-west-chapter-7/index.json @@ -0,0 +1,28 @@ +{ + "id": 64108, + "slug": "half-life-a-place-in-the-west-chapter-7", + "name": "Half-Life: A Place in the West - Chapter 7", + "release_date": "2021-05-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113177028" + ], + "created_at": "2026-07-10T10:10:16.805260", + "updated_at": "2026-07-10T10:10:16.805260", + "url": "/v1/games/half-life-a-place-in-the-west-chapter-7" +} diff --git a/site/public/v1/games/half-life-a-place-in-the-west-chapter-8/index.json b/site/public/v1/games/half-life-a-place-in-the-west-chapter-8/index.json new file mode 100644 index 000000000000..9b092c6f33b4 --- /dev/null +++ b/site/public/v1/games/half-life-a-place-in-the-west-chapter-8/index.json @@ -0,0 +1,28 @@ +{ + "id": 64109, + "slug": "half-life-a-place-in-the-west-chapter-8", + "name": "Half-Life: A Place in the West - Chapter 8", + "release_date": "2022-06-19", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113177036" + ], + "created_at": "2026-07-10T10:10:16.805260", + "updated_at": "2026-07-10T10:10:16.805260", + "url": "/v1/games/half-life-a-place-in-the-west-chapter-8" +} diff --git a/site/public/v1/games/half-life-adrenaline-pack/index.json b/site/public/v1/games/half-life-adrenaline-pack/index.json new file mode 100644 index 000000000000..f194170fc52c --- /dev/null +++ b/site/public/v1/games/half-life-adrenaline-pack/index.json @@ -0,0 +1,25 @@ +{ + "id": 64111, + "slug": "half-life-adrenaline-pack", + "name": "Half-Life: Adrenaline Pack", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q132129086" + ], + "created_at": "2026-07-10T10:10:16.806236", + "updated_at": "2026-07-10T10:10:16.806236", + "url": "/v1/games/half-life-adrenaline-pack" +} diff --git a/site/public/v1/games/half-life-complete/index.json b/site/public/v1/games/half-life-complete/index.json new file mode 100644 index 000000000000..6761042bfa55 --- /dev/null +++ b/site/public/v1/games/half-life-complete/index.json @@ -0,0 +1,28 @@ +{ + "id": 64115, + "slug": "half-life-complete", + "name": "Half-Life Complete", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q78781164" + ], + "created_at": "2026-07-10T10:10:16.807223", + "updated_at": "2026-07-10T10:10:16.807223", + "url": "/v1/games/half-life-complete" +} diff --git a/site/public/v1/games/half-life-day-one/index.json b/site/public/v1/games/half-life-day-one/index.json new file mode 100644 index 000000000000..7f8f20a59ab8 --- /dev/null +++ b/site/public/v1/games/half-life-day-one/index.json @@ -0,0 +1,25 @@ +{ + "id": 64116, + "slug": "half-life-day-one", + "name": "Half-Life: Day One", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4040350" + ], + "created_at": "2026-07-10T10:10:16.807223", + "updated_at": "2026-07-10T10:10:16.807223", + "url": "/v1/games/half-life-day-one" +} diff --git a/site/public/v1/games/half-life-escape-2-0/index.json b/site/public/v1/games/half-life-escape-2-0/index.json new file mode 100644 index 000000000000..0c97e6fc8b81 --- /dev/null +++ b/site/public/v1/games/half-life-escape-2-0/index.json @@ -0,0 +1,27 @@ +{ + "id": 64119, + "slug": "half-life-escape-2-0", + "name": "Half-Life: Escape 2.0", + "release_date": "2024-03-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135164296" + ], + "created_at": "2026-07-10T10:10:16.808298", + "updated_at": "2026-07-10T10:10:16.808298", + "url": "/v1/games/half-life-escape-2-0" +} diff --git a/site/public/v1/games/half-life-high-definition-pack/index.json b/site/public/v1/games/half-life-high-definition-pack/index.json new file mode 100644 index 000000000000..ebc340cd8a94 --- /dev/null +++ b/site/public/v1/games/half-life-high-definition-pack/index.json @@ -0,0 +1,25 @@ +{ + "id": 64120, + "slug": "half-life-high-definition-pack", + "name": "Half-Life High Definition Pack", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q20917511" + ], + "created_at": "2026-07-10T10:10:16.808298", + "updated_at": "2026-07-10T10:10:16.808298", + "url": "/v1/games/half-life-high-definition-pack" +} diff --git a/site/public/v1/games/half-life-initial-encounter/index.json b/site/public/v1/games/half-life-initial-encounter/index.json new file mode 100644 index 000000000000..ff68bf585a85 --- /dev/null +++ b/site/public/v1/games/half-life-initial-encounter/index.json @@ -0,0 +1,25 @@ +{ + "id": 64121, + "slug": "half-life-initial-encounter", + "name": "Half-Life: Initial Encounter", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q133505119" + ], + "created_at": "2026-07-10T10:10:16.809255", + "updated_at": "2026-07-10T10:10:16.809255", + "url": "/v1/games/half-life-initial-encounter" +} diff --git a/site/public/v1/games/half-life-platinum-collection/index.json b/site/public/v1/games/half-life-platinum-collection/index.json new file mode 100644 index 000000000000..dc495546fa67 --- /dev/null +++ b/site/public/v1/games/half-life-platinum-collection/index.json @@ -0,0 +1,25 @@ +{ + "id": 64123, + "slug": "half-life-platinum-collection", + "name": "Half-Life: Platinum Collection", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q132129074" + ], + "created_at": "2026-07-10T10:10:16.809255", + "updated_at": "2026-07-10T10:10:16.809255", + "url": "/v1/games/half-life-platinum-collection" +} diff --git a/site/public/v1/games/half-life-platinum/index.json b/site/public/v1/games/half-life-platinum/index.json new file mode 100644 index 000000000000..8479b1739219 --- /dev/null +++ b/site/public/v1/games/half-life-platinum/index.json @@ -0,0 +1,25 @@ +{ + "id": 64124, + "slug": "half-life-platinum", + "name": "Half-Life: Platinum", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q132129103" + ], + "created_at": "2026-07-10T10:10:16.810229", + "updated_at": "2026-07-10T10:10:16.810229", + "url": "/v1/games/half-life-platinum" +} diff --git a/site/public/v1/games/half-life-uplink/index.json b/site/public/v1/games/half-life-uplink/index.json new file mode 100644 index 000000000000..866f77920ed6 --- /dev/null +++ b/site/public/v1/games/half-life-uplink/index.json @@ -0,0 +1,33 @@ +{ + "id": 64127, + "slug": "half-life-uplink", + "name": "Half-Life: Uplink", + "release_date": "1999-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter" + ], + "stores": [], + "developers": [ + "Valve Corporation" + ], + "publishers": [ + "Sierra Entertainment" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3000988" + ], + "created_at": "2026-07-10T10:10:16.810229", + "updated_at": "2026-07-10T10:10:16.810229", + "url": "/v1/games/half-life-uplink" +} diff --git a/site/public/v1/games/hallway-hunt/index.json b/site/public/v1/games/hallway-hunt/index.json new file mode 100644 index 000000000000..918cacb40f8d --- /dev/null +++ b/site/public/v1/games/hallway-hunt/index.json @@ -0,0 +1,25 @@ +{ + "id": 64236, + "slug": "hallway-hunt", + "name": "Hallway Hunt", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q128014884" + ], + "created_at": "2026-07-10T10:10:16.839941", + "updated_at": "2026-07-10T10:10:16.839941", + "url": "/v1/games/hallway-hunt" +} diff --git a/site/public/v1/games/halo-3-odst/index.json b/site/public/v1/games/halo-3-odst/index.json new file mode 100644 index 000000000000..d934fc9468e6 --- /dev/null +++ b/site/public/v1/games/halo-3-odst/index.json @@ -0,0 +1,31 @@ +{ + "id": 64249, + "slug": "halo-3-odst", + "name": "Halo 3: ODST", + "release_date": "2009-09-22", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "first-person shooter" + ], + "stores": [], + "developers": [ + "Bungie" + ], + "publishers": [ + "Xbox Game Studios" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1628364" + ], + "created_at": "2026-07-10T10:10:16.842927", + "updated_at": "2026-07-10T10:10:16.842927", + "url": "/v1/games/halo-3-odst" +} diff --git a/site/public/v1/games/halo-custom-edition/index.json b/site/public/v1/games/halo-custom-edition/index.json new file mode 100644 index 000000000000..a66a8067d421 --- /dev/null +++ b/site/public/v1/games/halo-custom-edition/index.json @@ -0,0 +1,31 @@ +{ + "id": 64260, + "slug": "halo-custom-edition", + "name": "Halo Custom Edition", + "release_date": "2004-06-09", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Gearbox Software" + ], + "publishers": [ + "Xbox Game Studios" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3782753" + ], + "created_at": "2026-07-10T10:10:16.844916", + "updated_at": "2026-07-10T10:10:16.844916", + "url": "/v1/games/halo-custom-edition" +} diff --git a/site/public/v1/games/halo-wars-2-awakening-the-nightmare/index.json b/site/public/v1/games/halo-wars-2-awakening-the-nightmare/index.json new file mode 100644 index 000000000000..1d8d998719f1 --- /dev/null +++ b/site/public/v1/games/halo-wars-2-awakening-the-nightmare/index.json @@ -0,0 +1,30 @@ +{ + "id": 64270, + "slug": "halo-wars-2-awakening-the-nightmare", + "name": "Halo Wars 2: Awakening the Nightmare", + "release_date": "2017-09-26", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [ + "Creative Assembly", + "Halo Studios" + ], + "publishers": [ + "Xbox Game Studios" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q64614890" + ], + "created_at": "2026-07-10T10:10:16.847910", + "updated_at": "2026-07-10T10:10:16.847910", + "url": "/v1/games/halo-wars-2-awakening-the-nightmare" +} diff --git a/site/public/v1/games/halo-wars-historical-battle-map-pack/index.json b/site/public/v1/games/halo-wars-historical-battle-map-pack/index.json new file mode 100644 index 000000000000..771c568bd317 --- /dev/null +++ b/site/public/v1/games/halo-wars-historical-battle-map-pack/index.json @@ -0,0 +1,25 @@ +{ + "id": 64273, + "slug": "halo-wars-historical-battle-map-pack", + "name": "Halo Wars: Historical Battle Map Pack", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127464590" + ], + "created_at": "2026-07-10T10:10:16.848906", + "updated_at": "2026-07-10T10:10:16.848906", + "url": "/v1/games/halo-wars-historical-battle-map-pack" +} diff --git a/site/public/v1/games/halo-wars-strategic-options/index.json b/site/public/v1/games/halo-wars-strategic-options/index.json new file mode 100644 index 000000000000..2b52dbc6c47c --- /dev/null +++ b/site/public/v1/games/halo-wars-strategic-options/index.json @@ -0,0 +1,25 @@ +{ + "id": 64274, + "slug": "halo-wars-strategic-options", + "name": "Halo Wars: Strategic Options", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127464574" + ], + "created_at": "2026-07-10T10:10:16.848906", + "updated_at": "2026-07-10T10:10:16.848906", + "url": "/v1/games/halo-wars-strategic-options" +} diff --git a/site/public/v1/games/hamulet-demo/index.json b/site/public/v1/games/hamulet-demo/index.json new file mode 100644 index 000000000000..9aa177ea601c --- /dev/null +++ b/site/public/v1/games/hamulet-demo/index.json @@ -0,0 +1,25 @@ +{ + "id": 64376, + "slug": "hamulet-demo", + "name": "Hamulet (Demo)", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126188311" + ], + "created_at": "2026-07-10T10:10:16.874936", + "updated_at": "2026-07-10T10:10:16.874936", + "url": "/v1/games/hamulet-demo" +} diff --git a/site/public/v1/games/handball-q104591944/index.json b/site/public/v1/games/handball-q104591944/index.json new file mode 100644 index 000000000000..aa1ee617bf0c --- /dev/null +++ b/site/public/v1/games/handball-q104591944/index.json @@ -0,0 +1,27 @@ +{ + "id": 64445, + "slug": "handball-q104591944", + "name": "Handball", + "release_date": "1974-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "handball video game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q104591944" + ], + "created_at": "2026-07-10T10:10:16.892946", + "updated_at": "2026-07-10T10:10:16.892946", + "url": "/v1/games/handball-q104591944" +} diff --git a/site/public/v1/games/hannah-montana-pop-star-exclusive/index.json b/site/public/v1/games/hannah-montana-pop-star-exclusive/index.json new file mode 100644 index 000000000000..42bb9b810fef --- /dev/null +++ b/site/public/v1/games/hannah-montana-pop-star-exclusive/index.json @@ -0,0 +1,27 @@ +{ + "id": 64524, + "slug": "hannah-montana-pop-star-exclusive", + "name": "Hannah Montana: Pop Star Exclusive", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Nintendo DS" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106620098" + ], + "created_at": "2026-07-10T10:10:16.914961", + "updated_at": "2026-07-10T10:10:16.914961", + "url": "/v1/games/hannah-montana-pop-star-exclusive" +} diff --git a/site/public/v1/games/happy-aquarium/index.json b/site/public/v1/games/happy-aquarium/index.json new file mode 100644 index 000000000000..e5be0f39e1ef --- /dev/null +++ b/site/public/v1/games/happy-aquarium/index.json @@ -0,0 +1,27 @@ +{ + "id": 64570, + "slug": "happy-aquarium", + "name": "Happy Aquarium", + "release_date": "2009-08-03", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [ + "Happy Elements" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5892165" + ], + "created_at": "2026-07-10T10:10:16.927060", + "updated_at": "2026-07-10T10:10:16.927060", + "url": "/v1/games/happy-aquarium" +} diff --git a/site/public/v1/games/hard-vacuum-q126681220/index.json b/site/public/v1/games/hard-vacuum-q126681220/index.json new file mode 100644 index 000000000000..86e0ce6e3d7c --- /dev/null +++ b/site/public/v1/games/hard-vacuum-q126681220/index.json @@ -0,0 +1,27 @@ +{ + "id": 64779, + "slug": "hard-vacuum-q126681220", + "name": "Hard Vacuum", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "real-time strategy" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126681220" + ], + "created_at": "2026-07-10T10:10:16.983446", + "updated_at": "2026-07-10T10:10:16.983446", + "url": "/v1/games/hard-vacuum-q126681220" +} diff --git a/site/public/v1/games/hardcore-pinball/index.json b/site/public/v1/games/hardcore-pinball/index.json new file mode 100644 index 000000000000..b505a9cff468 --- /dev/null +++ b/site/public/v1/games/hardcore-pinball/index.json @@ -0,0 +1,25 @@ +{ + "id": 64806, + "slug": "hardcore-pinball", + "name": "hardcore pinball", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140472099" + ], + "created_at": "2026-07-10T10:10:16.990668", + "updated_at": "2026-07-10T10:10:16.990668", + "url": "/v1/games/hardcore-pinball" +} diff --git a/site/public/v1/games/harvest-moon-home-sweet-home-special-edition/index.json b/site/public/v1/games/harvest-moon-home-sweet-home-special-edition/index.json new file mode 100644 index 000000000000..ee932834d841 --- /dev/null +++ b/site/public/v1/games/harvest-moon-home-sweet-home-special-edition/index.json @@ -0,0 +1,31 @@ +{ + "id": 65062, + "slug": "harvest-moon-home-sweet-home-special-edition", + "name": "Harvest Moon: Home Sweet Home Special Edition", + "release_date": "2025-10-30", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 5", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Natsume Inc." + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134979822" + ], + "created_at": "2026-07-10T10:10:17.057295", + "updated_at": "2026-07-10T10:10:17.057295", + "url": "/v1/games/harvest-moon-home-sweet-home-special-edition" +} diff --git a/site/public/v1/games/harvest-moon-q21233492/index.json b/site/public/v1/games/harvest-moon-q21233492/index.json new file mode 100644 index 000000000000..60a99e545b56 --- /dev/null +++ b/site/public/v1/games/harvest-moon-q21233492/index.json @@ -0,0 +1,29 @@ +{ + "id": 65069, + "slug": "harvest-moon-q21233492", + "name": "Harvest Moon", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "role-playing video game", + "construction and management simulation", + "simulation video game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q21233492" + ], + "created_at": "2026-07-10T10:10:17.058314", + "updated_at": "2026-07-10T10:10:17.058314", + "url": "/v1/games/harvest-moon-q21233492" +} diff --git a/site/public/v1/games/haunted-cities-volume-2-q125024700/index.json b/site/public/v1/games/haunted-cities-volume-2-q125024700/index.json new file mode 100644 index 000000000000..7968b12c60aa --- /dev/null +++ b/site/public/v1/games/haunted-cities-volume-2-q125024700/index.json @@ -0,0 +1,34 @@ +{ + "id": 65232, + "slug": "haunted-cities-volume-2-q125024700", + "name": "Haunted Cities Volume 2", + "release_date": "2017-10-31", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "adventure video game" + ], + "stores": [], + "developers": [ + "Kitty Horrorshow" + ], + "publishers": [ + "Kitty Horrorshow" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125024700" + ], + "created_at": "2026-07-10T10:10:17.111229", + "updated_at": "2026-07-10T10:10:17.111229", + "url": "/v1/games/haunted-cities-volume-2-q125024700" +} diff --git a/site/public/v1/games/haunted-cities-volume-3/index.json b/site/public/v1/games/haunted-cities-volume-3/index.json new file mode 100644 index 000000000000..330ec28ecd74 --- /dev/null +++ b/site/public/v1/games/haunted-cities-volume-3/index.json @@ -0,0 +1,34 @@ +{ + "id": 65234, + "slug": "haunted-cities-volume-3", + "name": "Haunted Cities Volume 3", + "release_date": "2018-10-20", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "adventure video game" + ], + "stores": [], + "developers": [ + "Kitty Horrorshow" + ], + "publishers": [ + "Kitty Horrorshow" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125024703" + ], + "created_at": "2026-07-10T10:10:17.112225", + "updated_at": "2026-07-10T10:10:17.112225", + "url": "/v1/games/haunted-cities-volume-3" +} diff --git a/site/public/v1/games/haunted-cities-volume-4/index.json b/site/public/v1/games/haunted-cities-volume-4/index.json new file mode 100644 index 000000000000..1d0fa310dd20 --- /dev/null +++ b/site/public/v1/games/haunted-cities-volume-4/index.json @@ -0,0 +1,34 @@ +{ + "id": 65235, + "slug": "haunted-cities-volume-4", + "name": "Haunted Cities Volume 4", + "release_date": "2020-11-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "adventure video game" + ], + "stores": [], + "developers": [ + "Kitty Horrorshow" + ], + "publishers": [ + "Kitty Horrorshow" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125024706" + ], + "created_at": "2026-07-10T10:10:17.112225", + "updated_at": "2026-07-10T10:10:17.112225", + "url": "/v1/games/haunted-cities-volume-4" +} diff --git a/site/public/v1/games/haunted-cities/index.json b/site/public/v1/games/haunted-cities/index.json new file mode 100644 index 000000000000..0f74aea68a47 --- /dev/null +++ b/site/public/v1/games/haunted-cities/index.json @@ -0,0 +1,34 @@ +{ + "id": 65236, + "slug": "haunted-cities", + "name": "Haunted Cities", + "release_date": "2016-05-06", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "adventure video game" + ], + "stores": [], + "developers": [ + "Kitty Horrorshow" + ], + "publishers": [ + "Kitty Horrorshow" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125024698" + ], + "created_at": "2026-07-10T10:10:17.112225", + "updated_at": "2026-07-10T10:10:17.112225", + "url": "/v1/games/haunted-cities" +} diff --git a/site/public/v1/games/haunted-house-q16975489/index.json b/site/public/v1/games/haunted-house-q16975489/index.json new file mode 100644 index 000000000000..64f56c6ca9b7 --- /dev/null +++ b/site/public/v1/games/haunted-house-q16975489/index.json @@ -0,0 +1,25 @@ +{ + "id": 65279, + "slug": "haunted-house-q16975489", + "name": "Haunted House", + "release_date": "1972-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16975489" + ], + "created_at": "2026-07-10T10:10:17.123323", + "updated_at": "2026-07-10T10:10:17.123323", + "url": "/v1/games/haunted-house-q16975489" +} diff --git a/site/public/v1/games/hay-day-pop/index.json b/site/public/v1/games/hay-day-pop/index.json new file mode 100644 index 000000000000..92525c3c2f9e --- /dev/null +++ b/site/public/v1/games/hay-day-pop/index.json @@ -0,0 +1,33 @@ +{ + "id": 65402, + "slug": "hay-day-pop", + "name": "Hay Day Pop", + "release_date": "2020-03-16", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "iOS" + ], + "genres": [ + "puzzle video game" + ], + "stores": [], + "developers": [ + "Supercell" + ], + "publishers": [ + "Supercell" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q87773204" + ], + "created_at": "2026-07-10T10:10:17.156957", + "updated_at": "2026-07-10T10:10:17.156957", + "url": "/v1/games/hay-day-pop" +} diff --git a/site/public/v1/games/hearthstone-ashes-of-outland/index.json b/site/public/v1/games/hearthstone-ashes-of-outland/index.json new file mode 100644 index 000000000000..2b40c8e6c5fc --- /dev/null +++ b/site/public/v1/games/hearthstone-ashes-of-outland/index.json @@ -0,0 +1,25 @@ +{ + "id": 65659, + "slug": "hearthstone-ashes-of-outland", + "name": "Hearthstone: Ashes of Outland", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140419740" + ], + "created_at": "2026-07-10T10:10:17.305026", + "updated_at": "2026-07-10T10:10:17.305026", + "url": "/v1/games/hearthstone-ashes-of-outland" +} diff --git a/site/public/v1/games/hearthstone-blackrock-mountain/index.json b/site/public/v1/games/hearthstone-blackrock-mountain/index.json new file mode 100644 index 000000000000..3f1a65446964 --- /dev/null +++ b/site/public/v1/games/hearthstone-blackrock-mountain/index.json @@ -0,0 +1,25 @@ +{ + "id": 65660, + "slug": "hearthstone-blackrock-mountain", + "name": "Hearthstone: Blackrock Mountain", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140419399" + ], + "created_at": "2026-07-10T10:10:17.305026", + "updated_at": "2026-07-10T10:10:17.305026", + "url": "/v1/games/hearthstone-blackrock-mountain" +} diff --git a/site/public/v1/games/hearthstone-curse-of-naxxramas/index.json b/site/public/v1/games/hearthstone-curse-of-naxxramas/index.json new file mode 100644 index 000000000000..d2295581a1e1 --- /dev/null +++ b/site/public/v1/games/hearthstone-curse-of-naxxramas/index.json @@ -0,0 +1,25 @@ +{ + "id": 65661, + "slug": "hearthstone-curse-of-naxxramas", + "name": "Hearthstone: Curse of Naxxramas", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q31090152" + ], + "created_at": "2026-07-10T10:10:17.306036", + "updated_at": "2026-07-10T10:10:17.306036", + "url": "/v1/games/hearthstone-curse-of-naxxramas" +} diff --git a/site/public/v1/games/hearthstone-descent-of-dragons/index.json b/site/public/v1/games/hearthstone-descent-of-dragons/index.json new file mode 100644 index 000000000000..4f0022715d13 --- /dev/null +++ b/site/public/v1/games/hearthstone-descent-of-dragons/index.json @@ -0,0 +1,25 @@ +{ + "id": 65662, + "slug": "hearthstone-descent-of-dragons", + "name": "Hearthstone: Descent of Dragons", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140419732" + ], + "created_at": "2026-07-10T10:10:17.306036", + "updated_at": "2026-07-10T10:10:17.306036", + "url": "/v1/games/hearthstone-descent-of-dragons" +} diff --git a/site/public/v1/games/hearthstone-forged-in-the-barrens/index.json b/site/public/v1/games/hearthstone-forged-in-the-barrens/index.json new file mode 100644 index 000000000000..d8db6aabffb3 --- /dev/null +++ b/site/public/v1/games/hearthstone-forged-in-the-barrens/index.json @@ -0,0 +1,25 @@ +{ + "id": 65664, + "slug": "hearthstone-forged-in-the-barrens", + "name": "Hearthstone: Forged in the Barrens", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140419763" + ], + "created_at": "2026-07-10T10:10:17.307031", + "updated_at": "2026-07-10T10:10:17.307031", + "url": "/v1/games/hearthstone-forged-in-the-barrens" +} diff --git a/site/public/v1/games/hearthstone-goblins-vs-gnomes/index.json b/site/public/v1/games/hearthstone-goblins-vs-gnomes/index.json new file mode 100644 index 000000000000..1a9e2ccbd3d9 --- /dev/null +++ b/site/public/v1/games/hearthstone-goblins-vs-gnomes/index.json @@ -0,0 +1,25 @@ +{ + "id": 65666, + "slug": "hearthstone-goblins-vs-gnomes", + "name": "Hearthstone: Goblins vs Gnomes", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140419374" + ], + "created_at": "2026-07-10T10:10:17.308060", + "updated_at": "2026-07-10T10:10:17.308060", + "url": "/v1/games/hearthstone-goblins-vs-gnomes" +} diff --git a/site/public/v1/games/hearthstone-journey-to-un-goro/index.json b/site/public/v1/games/hearthstone-journey-to-un-goro/index.json new file mode 100644 index 000000000000..b54136e3392a --- /dev/null +++ b/site/public/v1/games/hearthstone-journey-to-un-goro/index.json @@ -0,0 +1,25 @@ +{ + "id": 65667, + "slug": "hearthstone-journey-to-un-goro", + "name": "Hearthstone: Journey to Un'Goro", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140419565" + ], + "created_at": "2026-07-10T10:10:17.308060", + "updated_at": "2026-07-10T10:10:17.308060", + "url": "/v1/games/hearthstone-journey-to-un-goro" +} diff --git a/site/public/v1/games/hearthstone-knights-of-the-frozen-throne/index.json b/site/public/v1/games/hearthstone-knights-of-the-frozen-throne/index.json new file mode 100644 index 000000000000..99397205f69a --- /dev/null +++ b/site/public/v1/games/hearthstone-knights-of-the-frozen-throne/index.json @@ -0,0 +1,25 @@ +{ + "id": 65668, + "slug": "hearthstone-knights-of-the-frozen-throne", + "name": "Hearthstone: Knights of the Frozen Throne", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140419570" + ], + "created_at": "2026-07-10T10:10:17.308060", + "updated_at": "2026-07-10T10:10:17.308060", + "url": "/v1/games/hearthstone-knights-of-the-frozen-throne" +} diff --git a/site/public/v1/games/hearthstone-mean-streets-of-gadgetzan/index.json b/site/public/v1/games/hearthstone-mean-streets-of-gadgetzan/index.json new file mode 100644 index 000000000000..ccf875287095 --- /dev/null +++ b/site/public/v1/games/hearthstone-mean-streets-of-gadgetzan/index.json @@ -0,0 +1,25 @@ +{ + "id": 65673, + "slug": "hearthstone-mean-streets-of-gadgetzan", + "name": "Hearthstone: Mean Streets of Gadgetzan", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140419544" + ], + "created_at": "2026-07-10T10:10:17.310069", + "updated_at": "2026-07-10T10:10:17.310069", + "url": "/v1/games/hearthstone-mean-streets-of-gadgetzan" +} diff --git a/site/public/v1/games/hearthstone-one-night-in-karazhan/index.json b/site/public/v1/games/hearthstone-one-night-in-karazhan/index.json new file mode 100644 index 000000000000..b5b26b4fd353 --- /dev/null +++ b/site/public/v1/games/hearthstone-one-night-in-karazhan/index.json @@ -0,0 +1,25 @@ +{ + "id": 65675, + "slug": "hearthstone-one-night-in-karazhan", + "name": "Hearthstone: One Night in Karazhan", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140419535" + ], + "created_at": "2026-07-10T10:10:17.311045", + "updated_at": "2026-07-10T10:10:17.311045", + "url": "/v1/games/hearthstone-one-night-in-karazhan" +} diff --git a/site/public/v1/games/hearthstone-rastakhan-s-rumble/index.json b/site/public/v1/games/hearthstone-rastakhan-s-rumble/index.json new file mode 100644 index 000000000000..6326efd2ce56 --- /dev/null +++ b/site/public/v1/games/hearthstone-rastakhan-s-rumble/index.json @@ -0,0 +1,25 @@ +{ + "id": 65676, + "slug": "hearthstone-rastakhan-s-rumble", + "name": "Hearthstone: Rastakhan's Rumble", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140419634" + ], + "created_at": "2026-07-10T10:10:17.311045", + "updated_at": "2026-07-10T10:10:17.311045", + "url": "/v1/games/hearthstone-rastakhan-s-rumble" +} diff --git a/site/public/v1/games/hearthstone-rise-of-shadows/index.json b/site/public/v1/games/hearthstone-rise-of-shadows/index.json new file mode 100644 index 000000000000..f5e8ad554df8 --- /dev/null +++ b/site/public/v1/games/hearthstone-rise-of-shadows/index.json @@ -0,0 +1,25 @@ +{ + "id": 65677, + "slug": "hearthstone-rise-of-shadows", + "name": "Hearthstone: Rise of Shadows", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140419710" + ], + "created_at": "2026-07-10T10:10:17.312038", + "updated_at": "2026-07-10T10:10:17.312038", + "url": "/v1/games/hearthstone-rise-of-shadows" +} diff --git a/site/public/v1/games/hearthstone-saviors-of-uldum/index.json b/site/public/v1/games/hearthstone-saviors-of-uldum/index.json new file mode 100644 index 000000000000..d3d59650d513 --- /dev/null +++ b/site/public/v1/games/hearthstone-saviors-of-uldum/index.json @@ -0,0 +1,25 @@ +{ + "id": 65678, + "slug": "hearthstone-saviors-of-uldum", + "name": "Hearthstone: Saviors of Uldum", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140419727" + ], + "created_at": "2026-07-10T10:10:17.312038", + "updated_at": "2026-07-10T10:10:17.312038", + "url": "/v1/games/hearthstone-saviors-of-uldum" +} diff --git a/site/public/v1/games/hearthstone-scholomance-academy/index.json b/site/public/v1/games/hearthstone-scholomance-academy/index.json new file mode 100644 index 000000000000..24d50bd33747 --- /dev/null +++ b/site/public/v1/games/hearthstone-scholomance-academy/index.json @@ -0,0 +1,25 @@ +{ + "id": 65679, + "slug": "hearthstone-scholomance-academy", + "name": "Hearthstone: Scholomance Academy", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140419747" + ], + "created_at": "2026-07-10T10:10:17.312038", + "updated_at": "2026-07-10T10:10:17.312038", + "url": "/v1/games/hearthstone-scholomance-academy" +} diff --git a/site/public/v1/games/hearthstone-showdown-in-the-badlands/index.json b/site/public/v1/games/hearthstone-showdown-in-the-badlands/index.json new file mode 100644 index 000000000000..fb68ab18642e --- /dev/null +++ b/site/public/v1/games/hearthstone-showdown-in-the-badlands/index.json @@ -0,0 +1,25 @@ +{ + "id": 65680, + "slug": "hearthstone-showdown-in-the-badlands", + "name": "Hearthstone: Showdown in the Badlands", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140419877" + ], + "created_at": "2026-07-10T10:10:17.313057", + "updated_at": "2026-07-10T10:10:17.313057", + "url": "/v1/games/hearthstone-showdown-in-the-badlands" +} diff --git a/site/public/v1/games/hearthstone-the-boomsday-project/index.json b/site/public/v1/games/hearthstone-the-boomsday-project/index.json new file mode 100644 index 000000000000..2726953d8b06 --- /dev/null +++ b/site/public/v1/games/hearthstone-the-boomsday-project/index.json @@ -0,0 +1,25 @@ +{ + "id": 65681, + "slug": "hearthstone-the-boomsday-project", + "name": "Hearthstone: The Boomsday Project", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140419618" + ], + "created_at": "2026-07-10T10:10:17.313057", + "updated_at": "2026-07-10T10:10:17.313057", + "url": "/v1/games/hearthstone-the-boomsday-project" +} diff --git a/site/public/v1/games/hearthstone-the-witchwood/index.json b/site/public/v1/games/hearthstone-the-witchwood/index.json new file mode 100644 index 000000000000..1874e7e8092a --- /dev/null +++ b/site/public/v1/games/hearthstone-the-witchwood/index.json @@ -0,0 +1,25 @@ +{ + "id": 65683, + "slug": "hearthstone-the-witchwood", + "name": "Hearthstone: The Witchwood", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140419609" + ], + "created_at": "2026-07-10T10:10:17.314019", + "updated_at": "2026-07-10T10:10:17.315049", + "url": "/v1/games/hearthstone-the-witchwood" +} diff --git a/site/public/v1/games/hearthstone-titans/index.json b/site/public/v1/games/hearthstone-titans/index.json new file mode 100644 index 000000000000..80fd6c76edfb --- /dev/null +++ b/site/public/v1/games/hearthstone-titans/index.json @@ -0,0 +1,25 @@ +{ + "id": 65684, + "slug": "hearthstone-titans", + "name": "Hearthstone: Titans", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140419875" + ], + "created_at": "2026-07-10T10:10:17.317038", + "updated_at": "2026-07-10T10:10:17.318050", + "url": "/v1/games/hearthstone-titans" +} diff --git a/site/public/v1/games/hearts-card-game-q110453685/index.json b/site/public/v1/games/hearts-card-game-q110453685/index.json new file mode 100644 index 000000000000..97cae134fb8e --- /dev/null +++ b/site/public/v1/games/hearts-card-game-q110453685/index.json @@ -0,0 +1,28 @@ +{ + "id": 65708, + "slug": "hearts-card-game-q110453685", + "name": "Hearts: Card Game+", + "release_date": "2022-01-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "iPadOS", + "iOS" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110453685" + ], + "created_at": "2026-07-10T10:10:17.345919", + "updated_at": "2026-07-10T10:10:17.345919", + "url": "/v1/games/hearts-card-game-q110453685" +} diff --git a/site/public/v1/games/hearts-of-iron-iv-arms-against-tyranny/index.json b/site/public/v1/games/hearts-of-iron-iv-arms-against-tyranny/index.json new file mode 100644 index 000000000000..16c8080dafb8 --- /dev/null +++ b/site/public/v1/games/hearts-of-iron-iv-arms-against-tyranny/index.json @@ -0,0 +1,32 @@ +{ + "id": 65719, + "slug": "hearts-of-iron-iv-arms-against-tyranny", + "name": "Hearts of Iron IV: Arms Against Tyranny", + "release_date": "2023-10-10", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Development Studio" + ], + "publishers": [ + "Paradox Interactive" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q119160111" + ], + "created_at": "2026-07-10T10:10:17.349946", + "updated_at": "2026-07-10T10:10:17.349946", + "url": "/v1/games/hearts-of-iron-iv-arms-against-tyranny" +} diff --git a/site/public/v1/games/hearts-of-iron-iv-battle-for-the-bosporus/index.json b/site/public/v1/games/hearts-of-iron-iv-battle-for-the-bosporus/index.json new file mode 100644 index 000000000000..0895a7d38600 --- /dev/null +++ b/site/public/v1/games/hearts-of-iron-iv-battle-for-the-bosporus/index.json @@ -0,0 +1,32 @@ +{ + "id": 65720, + "slug": "hearts-of-iron-iv-battle-for-the-bosporus", + "name": "Hearts of Iron IV: Battle for the Bosporus", + "release_date": "2020-10-15", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Development Studio" + ], + "publishers": [ + "Paradox Interactive" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107476643" + ], + "created_at": "2026-07-10T10:10:17.349946", + "updated_at": "2026-07-10T10:10:17.349946", + "url": "/v1/games/hearts-of-iron-iv-battle-for-the-bosporus" +} diff --git a/site/public/v1/games/hearts-of-iron-iv-by-blood-alone/index.json b/site/public/v1/games/hearts-of-iron-iv-by-blood-alone/index.json new file mode 100644 index 000000000000..c80196e5de33 --- /dev/null +++ b/site/public/v1/games/hearts-of-iron-iv-by-blood-alone/index.json @@ -0,0 +1,32 @@ +{ + "id": 65721, + "slug": "hearts-of-iron-iv-by-blood-alone", + "name": "Hearts of Iron IV: By Blood Alone", + "release_date": "2022-09-27", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Development Studio" + ], + "publishers": [ + "Paradox Interactive" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112265733" + ], + "created_at": "2026-07-10T10:10:17.349946", + "updated_at": "2026-07-10T10:10:17.349946", + "url": "/v1/games/hearts-of-iron-iv-by-blood-alone" +} diff --git a/site/public/v1/games/hearts-of-iron-iv-death-or-dishonor/index.json b/site/public/v1/games/hearts-of-iron-iv-death-or-dishonor/index.json new file mode 100644 index 000000000000..4f40b54bb248 --- /dev/null +++ b/site/public/v1/games/hearts-of-iron-iv-death-or-dishonor/index.json @@ -0,0 +1,32 @@ +{ + "id": 65722, + "slug": "hearts-of-iron-iv-death-or-dishonor", + "name": "Hearts of Iron IV: Death or Dishonor", + "release_date": "2017-06-14", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Development Studio" + ], + "publishers": [ + "Paradox Interactive" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107476639" + ], + "created_at": "2026-07-10T10:10:17.349946", + "updated_at": "2026-07-10T10:10:17.349946", + "url": "/v1/games/hearts-of-iron-iv-death-or-dishonor" +} diff --git a/site/public/v1/games/hearts-of-iron-iv-la-r-sistance/index.json b/site/public/v1/games/hearts-of-iron-iv-la-r-sistance/index.json new file mode 100644 index 000000000000..4617fa1a13fe --- /dev/null +++ b/site/public/v1/games/hearts-of-iron-iv-la-r-sistance/index.json @@ -0,0 +1,32 @@ +{ + "id": 65723, + "slug": "hearts-of-iron-iv-la-r-sistance", + "name": "Hearts of Iron IV: La Résistance", + "release_date": "2020-02-25", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Development Studio" + ], + "publishers": [ + "Paradox Interactive" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107476642" + ], + "created_at": "2026-07-10T10:10:17.350939", + "updated_at": "2026-07-10T10:10:17.350939", + "url": "/v1/games/hearts-of-iron-iv-la-r-sistance" +} diff --git a/site/public/v1/games/hearts-of-iron-iv-man-the-guns/index.json b/site/public/v1/games/hearts-of-iron-iv-man-the-guns/index.json new file mode 100644 index 000000000000..bae8b6a5ca3b --- /dev/null +++ b/site/public/v1/games/hearts-of-iron-iv-man-the-guns/index.json @@ -0,0 +1,32 @@ +{ + "id": 65724, + "slug": "hearts-of-iron-iv-man-the-guns", + "name": "Hearts of Iron IV: Man the Guns", + "release_date": "2019-02-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Development Studio" + ], + "publishers": [ + "Paradox Interactive" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107476638" + ], + "created_at": "2026-07-10T10:10:17.350939", + "updated_at": "2026-07-10T10:10:17.350939", + "url": "/v1/games/hearts-of-iron-iv-man-the-guns" +} diff --git a/site/public/v1/games/hearts-of-iron-iv-no-step-back/index.json b/site/public/v1/games/hearts-of-iron-iv-no-step-back/index.json new file mode 100644 index 000000000000..4ba7d3258486 --- /dev/null +++ b/site/public/v1/games/hearts-of-iron-iv-no-step-back/index.json @@ -0,0 +1,32 @@ +{ + "id": 65725, + "slug": "hearts-of-iron-iv-no-step-back", + "name": "Hearts of Iron IV: No Step Back", + "release_date": "2021-11-23", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Development Studio" + ], + "publishers": [ + "Paradox Interactive" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111586197" + ], + "created_at": "2026-07-10T10:10:17.350939", + "updated_at": "2026-07-10T10:10:17.350939", + "url": "/v1/games/hearts-of-iron-iv-no-step-back" +} diff --git a/site/public/v1/games/hearts-of-iron-iv-together-for-victory/index.json b/site/public/v1/games/hearts-of-iron-iv-together-for-victory/index.json new file mode 100644 index 000000000000..43a0b3fb1323 --- /dev/null +++ b/site/public/v1/games/hearts-of-iron-iv-together-for-victory/index.json @@ -0,0 +1,32 @@ +{ + "id": 65726, + "slug": "hearts-of-iron-iv-together-for-victory", + "name": "Hearts of Iron IV: Together for Victory", + "release_date": "2016-12-15", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Development Studio" + ], + "publishers": [ + "Paradox Interactive" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107476640" + ], + "created_at": "2026-07-10T10:10:17.350939", + "updated_at": "2026-07-10T10:10:17.350939", + "url": "/v1/games/hearts-of-iron-iv-together-for-victory" +} diff --git a/site/public/v1/games/hearts-of-iron-iv-waking-the-tiger/index.json b/site/public/v1/games/hearts-of-iron-iv-waking-the-tiger/index.json new file mode 100644 index 000000000000..b015534c54da --- /dev/null +++ b/site/public/v1/games/hearts-of-iron-iv-waking-the-tiger/index.json @@ -0,0 +1,32 @@ +{ + "id": 65727, + "slug": "hearts-of-iron-iv-waking-the-tiger", + "name": "Hearts of Iron IV: Waking the Tiger", + "release_date": "2018-03-08", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Development Studio" + ], + "publishers": [ + "Paradox Interactive" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107476641" + ], + "created_at": "2026-07-10T10:10:17.351948", + "updated_at": "2026-07-10T10:10:17.351948", + "url": "/v1/games/hearts-of-iron-iv-waking-the-tiger" +} diff --git a/site/public/v1/games/heavy-duty/index.json b/site/public/v1/games/heavy-duty/index.json new file mode 100644 index 000000000000..b05591354a73 --- /dev/null +++ b/site/public/v1/games/heavy-duty/index.json @@ -0,0 +1,31 @@ +{ + "id": 65842, + "slug": "heavy-duty", + "name": "Heavy Duty", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "shooter game" + ], + "stores": [], + "developers": [], + "publishers": [ + "Akella" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110817109" + ], + "created_at": "2026-07-10T10:10:17.405426", + "updated_at": "2026-07-10T10:10:17.405426", + "url": "/v1/games/heavy-duty" +} diff --git a/site/public/v1/games/heavyweight-transport-simulator/index.json b/site/public/v1/games/heavyweight-transport-simulator/index.json new file mode 100644 index 000000000000..f50898a8b718 --- /dev/null +++ b/site/public/v1/games/heavyweight-transport-simulator/index.json @@ -0,0 +1,25 @@ +{ + "id": 65888, + "slug": "heavyweight-transport-simulator", + "name": "Heavyweight Transport Simulator", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140472963" + ], + "created_at": "2026-07-10T10:10:17.420491", + "updated_at": "2026-07-10T10:10:17.420491", + "url": "/v1/games/heavyweight-transport-simulator" +} diff --git a/site/public/v1/games/hell-let-loose-spearhead-edition/index.json b/site/public/v1/games/hell-let-loose-spearhead-edition/index.json new file mode 100644 index 000000000000..25011afc961a --- /dev/null +++ b/site/public/v1/games/hell-let-loose-spearhead-edition/index.json @@ -0,0 +1,31 @@ +{ + "id": 66076, + "slug": "hell-let-loose-spearhead-edition", + "name": "Hell Let Loose: Spearhead Edition", + "release_date": "2021-12-03", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S" + ], + "genres": [], + "stores": [], + "developers": [ + "Black Matter" + ], + "publishers": [ + "Team17" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109985891" + ], + "created_at": "2026-07-10T10:10:17.483158", + "updated_at": "2026-07-10T10:10:17.483158", + "url": "/v1/games/hell-let-loose-spearhead-edition" +} diff --git a/site/public/v1/games/hello-kitty-beauty-salon/index.json b/site/public/v1/games/hello-kitty-beauty-salon/index.json new file mode 100644 index 000000000000..353089671139 --- /dev/null +++ b/site/public/v1/games/hello-kitty-beauty-salon/index.json @@ -0,0 +1,25 @@ +{ + "id": 66226, + "slug": "hello-kitty-beauty-salon", + "name": "Hello Kitty Beauty Salon", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131302508" + ], + "created_at": "2026-07-10T10:10:17.564438", + "updated_at": "2026-07-10T10:10:17.564438", + "url": "/v1/games/hello-kitty-beauty-salon" +} diff --git a/site/public/v1/games/hellpoint-blue-sun/index.json b/site/public/v1/games/hellpoint-blue-sun/index.json new file mode 100644 index 000000000000..ffb8bb353b6b --- /dev/null +++ b/site/public/v1/games/hellpoint-blue-sun/index.json @@ -0,0 +1,29 @@ +{ + "id": 66277, + "slug": "hellpoint-blue-sun", + "name": "Hellpoint: Blue Sun", + "release_date": "2022-07-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S" + ], + "genres": [], + "stores": [], + "developers": [ + "Cradle Games" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q114930424" + ], + "created_at": "2026-07-10T10:10:17.578438", + "updated_at": "2026-07-10T10:10:17.578438", + "url": "/v1/games/hellpoint-blue-sun" +} diff --git a/site/public/v1/games/hellpoint-ultimate-edition/index.json b/site/public/v1/games/hellpoint-ultimate-edition/index.json new file mode 100644 index 000000000000..68e50ee05dec --- /dev/null +++ b/site/public/v1/games/hellpoint-ultimate-edition/index.json @@ -0,0 +1,29 @@ +{ + "id": 66279, + "slug": "hellpoint-ultimate-edition", + "name": "Hellpoint Ultimate Edition", + "release_date": "2022-07-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S" + ], + "genres": [], + "stores": [], + "developers": [ + "Cradle Games" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q114930346" + ], + "created_at": "2026-07-10T10:10:17.578438", + "updated_at": "2026-07-10T10:10:17.578438", + "url": "/v1/games/hellpoint-ultimate-edition" +} diff --git a/site/public/v1/games/hellraid/index.json b/site/public/v1/games/hellraid/index.json new file mode 100644 index 000000000000..e36137d4fdc7 --- /dev/null +++ b/site/public/v1/games/hellraid/index.json @@ -0,0 +1,31 @@ +{ + "id": 66282, + "slug": "hellraid", + "name": "Hellraid", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 4", + "PlayStation 3", + "Microsoft Windows" + ], + "genres": [ + "action game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q13635768" + ], + "created_at": "2026-07-10T10:10:17.579438", + "updated_at": "2026-07-10T10:10:17.579438", + "url": "/v1/games/hellraid" +} diff --git a/site/public/v1/games/hentai-area-51-adult-patch-18/index.json b/site/public/v1/games/hentai-area-51-adult-patch-18/index.json new file mode 100644 index 000000000000..381574138503 --- /dev/null +++ b/site/public/v1/games/hentai-area-51-adult-patch-18/index.json @@ -0,0 +1,35 @@ +{ + "id": 66402, + "slug": "hentai-area-51-adult-patch-18", + "name": "Hentai Area 51 - Adult Patch 18+", + "release_date": "2019-08-19", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "third-person shooter", + "erotic video game" + ], + "stores": [], + "developers": [ + "LoveAnime", + "AmagSwag Games" + ], + "publishers": [ + "AmagSwag Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136116270" + ], + "created_at": "2026-07-10T10:10:17.612528", + "updated_at": "2026-07-10T10:10:17.612528", + "url": "/v1/games/hentai-area-51-adult-patch-18" +} diff --git a/site/public/v1/games/hentai-area-51-soundtrack/index.json b/site/public/v1/games/hentai-area-51-soundtrack/index.json new file mode 100644 index 000000000000..b736c200c03f --- /dev/null +++ b/site/public/v1/games/hentai-area-51-soundtrack/index.json @@ -0,0 +1,35 @@ +{ + "id": 66403, + "slug": "hentai-area-51-soundtrack", + "name": "Hentai Area 51 - Soundtrack", + "release_date": "2019-08-21", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "third-person shooter", + "erotic video game" + ], + "stores": [], + "developers": [ + "LoveAnime", + "AmagSwag Games" + ], + "publishers": [ + "AmagSwag Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136116257" + ], + "created_at": "2026-07-10T10:10:17.612528", + "updated_at": "2026-07-10T10:10:17.612528", + "url": "/v1/games/hentai-area-51-soundtrack" +} diff --git a/site/public/v1/games/hentai-arena-adult-patch-18/index.json b/site/public/v1/games/hentai-arena-adult-patch-18/index.json new file mode 100644 index 000000000000..7aee54309d51 --- /dev/null +++ b/site/public/v1/games/hentai-arena-adult-patch-18/index.json @@ -0,0 +1,36 @@ +{ + "id": 66405, + "slug": "hentai-arena-adult-patch-18", + "name": "Hentai Arena - Adult Patch 18+", + "release_date": "2019-07-16", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "action game", + "erotic video game", + "battle royale game" + ], + "stores": [], + "developers": [ + "LoveAnime" + ], + "publishers": [ + "AmagSwag Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136098095" + ], + "created_at": "2026-07-10T10:10:17.612528", + "updated_at": "2026-07-10T10:10:17.612528", + "url": "/v1/games/hentai-arena-adult-patch-18" +} diff --git a/site/public/v1/games/hentai-crush-uncensored-18/index.json b/site/public/v1/games/hentai-crush-uncensored-18/index.json new file mode 100644 index 000000000000..fdf65fc61d94 --- /dev/null +++ b/site/public/v1/games/hentai-crush-uncensored-18/index.json @@ -0,0 +1,36 @@ +{ + "id": 66467, + "slug": "hentai-crush-uncensored-18", + "name": "Hentai Crush - Uncensored (18+)", + "release_date": "2019-03-15", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "dating sim", + "casual game", + "erotic video game", + "tile-matching video game" + ], + "stores": [], + "developers": [ + "Mature Games" + ], + "publishers": [ + "Mature Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q129379571" + ], + "created_at": "2026-07-10T10:10:17.629596", + "updated_at": "2026-07-10T10:10:17.629596", + "url": "/v1/games/hentai-crush-uncensored-18" +} diff --git a/site/public/v1/games/hentai-girl-division-uncensored-18/index.json b/site/public/v1/games/hentai-girl-division-uncensored-18/index.json new file mode 100644 index 000000000000..fd9dcade9a46 --- /dev/null +++ b/site/public/v1/games/hentai-girl-division-uncensored-18/index.json @@ -0,0 +1,38 @@ +{ + "id": 66519, + "slug": "hentai-girl-division-uncensored-18", + "name": "Hentai Girl Division Uncensored (18+)", + "release_date": "2019-08-23", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "adventure video game", + "dating sim", + "casual game", + "erotic video game", + "tile-matching video game", + "role-playing video game" + ], + "stores": [], + "developers": [ + "Mature Games" + ], + "publishers": [ + "Mature Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q129380374" + ], + "created_at": "2026-07-10T10:10:17.644269", + "updated_at": "2026-07-10T10:10:17.644269", + "url": "/v1/games/hentai-girl-division-uncensored-18" +} diff --git a/site/public/v1/games/hentai-jail-dlc/index.json b/site/public/v1/games/hentai-jail-dlc/index.json new file mode 100644 index 000000000000..7492c931d4a9 --- /dev/null +++ b/site/public/v1/games/hentai-jail-dlc/index.json @@ -0,0 +1,35 @@ +{ + "id": 66557, + "slug": "hentai-jail-dlc", + "name": "Hentai - Jail DLC", + "release_date": "2017-10-25", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "adventure video game", + "action game", + "casual game" + ], + "stores": [], + "developers": [ + "PinkySwear" + ], + "publishers": [ + "PinkySwear" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130320008" + ], + "created_at": "2026-07-10T10:10:17.653156", + "updated_at": "2026-07-10T10:10:17.653156", + "url": "/v1/games/hentai-jail-dlc" +} diff --git a/site/public/v1/games/hentai-nazi-adult-patch-18/index.json b/site/public/v1/games/hentai-nazi-adult-patch-18/index.json new file mode 100644 index 000000000000..ab16654177f6 --- /dev/null +++ b/site/public/v1/games/hentai-nazi-adult-patch-18/index.json @@ -0,0 +1,36 @@ +{ + "id": 66620, + "slug": "hentai-nazi-adult-patch-18", + "name": "Hentai Nazi - Adult Patch 18+", + "release_date": "2020-09-08", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "action game", + "third-person shooter", + "erotic video game" + ], + "stores": [], + "developers": [ + "LoveAnime", + "AmagSwag Games" + ], + "publishers": [ + "AmagSwag Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136174698" + ], + "created_at": "2026-07-10T10:10:17.670353", + "updated_at": "2026-07-10T10:10:17.670353", + "url": "/v1/games/hentai-nazi-adult-patch-18" +} diff --git a/site/public/v1/games/hentai-nazi-hitler-is-back-adult-patch-18/index.json b/site/public/v1/games/hentai-nazi-hitler-is-back-adult-patch-18/index.json new file mode 100644 index 000000000000..565d66d33c94 --- /dev/null +++ b/site/public/v1/games/hentai-nazi-hitler-is-back-adult-patch-18/index.json @@ -0,0 +1,35 @@ +{ + "id": 66623, + "slug": "hentai-nazi-hitler-is-back-adult-patch-18", + "name": "Hentai Nazi HITLER is Back - Adult Patch 18+", + "release_date": "2020-04-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "action game", + "erotic video game" + ], + "stores": [], + "developers": [ + "LoveAnime", + "AmagSwag Games" + ], + "publishers": [ + "AmagSwag Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136174704" + ], + "created_at": "2026-07-10T10:10:17.671353", + "updated_at": "2026-07-10T10:10:17.671353", + "url": "/v1/games/hentai-nazi-hitler-is-back-adult-patch-18" +} diff --git a/site/public/v1/games/hentai-nazi-stalin-edition/index.json b/site/public/v1/games/hentai-nazi-stalin-edition/index.json new file mode 100644 index 000000000000..f5a553ee5da8 --- /dev/null +++ b/site/public/v1/games/hentai-nazi-stalin-edition/index.json @@ -0,0 +1,36 @@ +{ + "id": 66625, + "slug": "hentai-nazi-stalin-edition", + "name": "Hentai Nazi Stalin Edition", + "release_date": "2020-09-08", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "action game", + "third-person shooter", + "erotic video game" + ], + "stores": [], + "developers": [ + "LoveAnime", + "AmagSwag Games" + ], + "publishers": [ + "AmagSwag Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136174697" + ], + "created_at": "2026-07-10T10:10:17.671353", + "updated_at": "2026-07-10T10:10:17.671353", + "url": "/v1/games/hentai-nazi-stalin-edition" +} diff --git a/site/public/v1/games/hentai-neighbors-sweet-summer-18-uncensored/index.json b/site/public/v1/games/hentai-neighbors-sweet-summer-18-uncensored/index.json new file mode 100644 index 000000000000..7c991fe33948 --- /dev/null +++ b/site/public/v1/games/hentai-neighbors-sweet-summer-18-uncensored/index.json @@ -0,0 +1,35 @@ +{ + "id": 66627, + "slug": "hentai-neighbors-sweet-summer-18-uncensored", + "name": "Hentai Neighbors - Sweet Summer (18+ Uncensored)", + "release_date": "2018-11-09", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "casual game", + "erotic video game", + "tile-matching video game" + ], + "stores": [], + "developers": [ + "Mature Games" + ], + "publishers": [ + "Mature Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q129332108" + ], + "created_at": "2026-07-10T10:10:17.672432", + "updated_at": "2026-07-10T10:10:17.672432", + "url": "/v1/games/hentai-neighbors-sweet-summer-18-uncensored" +} diff --git a/site/public/v1/games/hentai-soundtrack-of-the-year-soty/index.json b/site/public/v1/games/hentai-soundtrack-of-the-year-soty/index.json new file mode 100644 index 000000000000..a1b518d12f40 --- /dev/null +++ b/site/public/v1/games/hentai-soundtrack-of-the-year-soty/index.json @@ -0,0 +1,35 @@ +{ + "id": 66718, + "slug": "hentai-soundtrack-of-the-year-soty", + "name": "Hentai - Soundtrack Of The Year (SOTY)", + "release_date": "2017-09-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "adventure video game", + "action game", + "casual game" + ], + "stores": [], + "developers": [ + "PinkySwear" + ], + "publishers": [ + "PinkySwear" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130320114" + ], + "created_at": "2026-07-10T10:10:17.696412", + "updated_at": "2026-07-10T10:10:17.696412", + "url": "/v1/games/hentai-soundtrack-of-the-year-soty" +} diff --git a/site/public/v1/games/her-challenges/index.json b/site/public/v1/games/her-challenges/index.json new file mode 100644 index 000000000000..c168d094c07a --- /dev/null +++ b/site/public/v1/games/her-challenges/index.json @@ -0,0 +1,27 @@ +{ + "id": 66824, + "slug": "her-challenges", + "name": "Her Challenges", + "release_date": "2021-08-31", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "QUByte Interactive" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113686219" + ], + "created_at": "2026-07-10T10:10:17.724408", + "updated_at": "2026-07-10T10:10:17.724408", + "url": "/v1/games/her-challenges" +} diff --git a/site/public/v1/games/heretic-hexen-q126186926/index.json b/site/public/v1/games/heretic-hexen-q126186926/index.json new file mode 100644 index 000000000000..87f9034e2618 --- /dev/null +++ b/site/public/v1/games/heretic-hexen-q126186926/index.json @@ -0,0 +1,25 @@ +{ + "id": 66900, + "slug": "heretic-hexen-q126186926", + "name": "Heretic & Hexen", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126186926" + ], + "created_at": "2026-07-10T10:10:17.744937", + "updated_at": "2026-07-10T10:10:17.744937", + "url": "/v1/games/heretic-hexen-q126186926" +} diff --git a/site/public/v1/games/heretic-ii-the-siege/index.json b/site/public/v1/games/heretic-ii-the-siege/index.json new file mode 100644 index 000000000000..1480a75eb024 --- /dev/null +++ b/site/public/v1/games/heretic-ii-the-siege/index.json @@ -0,0 +1,25 @@ +{ + "id": 66902, + "slug": "heretic-ii-the-siege", + "name": "Heretic II: The Siege", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126186095" + ], + "created_at": "2026-07-10T10:10:17.744937", + "updated_at": "2026-07-10T10:10:17.744937", + "url": "/v1/games/heretic-ii-the-siege" +} diff --git a/site/public/v1/games/hero-by-chance-lady-man/index.json b/site/public/v1/games/hero-by-chance-lady-man/index.json new file mode 100644 index 000000000000..ed302ca5b8bb --- /dev/null +++ b/site/public/v1/games/hero-by-chance-lady-man/index.json @@ -0,0 +1,31 @@ +{ + "id": 66952, + "slug": "hero-by-chance-lady-man", + "name": "Hero by Chance: Lady Man", + "release_date": "2020-11-30", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Reborn Entertainment" + ], + "publishers": [ + "Reborn Entertainment" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116152678" + ], + "created_at": "2026-07-10T10:10:17.758929", + "updated_at": "2026-07-10T10:10:17.758929", + "url": "/v1/games/hero-by-chance-lady-man" +} diff --git a/site/public/v1/games/heroes-chronicles-masters-of-the-elements/index.json b/site/public/v1/games/heroes-chronicles-masters-of-the-elements/index.json new file mode 100644 index 000000000000..6b1983b87e3e --- /dev/null +++ b/site/public/v1/games/heroes-chronicles-masters-of-the-elements/index.json @@ -0,0 +1,25 @@ +{ + "id": 67087, + "slug": "heroes-chronicles-masters-of-the-elements", + "name": "Heroes Chronicles: Masters of the Elements", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111008063" + ], + "created_at": "2026-07-10T10:10:17.793998", + "updated_at": "2026-07-10T10:10:17.793998", + "url": "/v1/games/heroes-chronicles-masters-of-the-elements" +} diff --git a/site/public/v1/games/heroes-chronicles-the-sword-of-frost/index.json b/site/public/v1/games/heroes-chronicles-the-sword-of-frost/index.json new file mode 100644 index 000000000000..6ecd9c37ec55 --- /dev/null +++ b/site/public/v1/games/heroes-chronicles-the-sword-of-frost/index.json @@ -0,0 +1,25 @@ +{ + "id": 67089, + "slug": "heroes-chronicles-the-sword-of-frost", + "name": "Heroes Chronicles: The Sword of Frost", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140472089" + ], + "created_at": "2026-07-10T10:10:17.794990", + "updated_at": "2026-07-10T10:10:17.794990", + "url": "/v1/games/heroes-chronicles-the-sword-of-frost" +} diff --git a/site/public/v1/games/heroes-chronicles/index.json b/site/public/v1/games/heroes-chronicles/index.json new file mode 100644 index 000000000000..f6f873a06af0 --- /dev/null +++ b/site/public/v1/games/heroes-chronicles/index.json @@ -0,0 +1,33 @@ +{ + "id": 67090, + "slug": "heroes-chronicles", + "name": "Heroes Chronicles", + "release_date": "2000-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "turn-based strategy video game" + ], + "stores": [], + "developers": [ + "New World Computing" + ], + "publishers": [ + "The 3DO Company" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q747348" + ], + "created_at": "2026-07-10T10:10:17.794990", + "updated_at": "2026-07-10T10:10:17.794990", + "url": "/v1/games/heroes-chronicles" +} diff --git a/site/public/v1/games/heroes-of-might-and-magic-ii-the-price-of-loyalty/index.json b/site/public/v1/games/heroes-of-might-and-magic-ii-the-price-of-loyalty/index.json new file mode 100644 index 000000000000..42ef1fd025bd --- /dev/null +++ b/site/public/v1/games/heroes-of-might-and-magic-ii-the-price-of-loyalty/index.json @@ -0,0 +1,33 @@ +{ + "id": 67165, + "slug": "heroes-of-might-and-magic-ii-the-price-of-loyalty", + "name": "Heroes of Might and Magic II: The Price of Loyalty", + "release_date": "1997-04-30", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "turn-based strategy video game" + ], + "stores": [], + "developers": [ + "Cyberlore Studios" + ], + "publishers": [ + "The 3DO Company" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3109545" + ], + "created_at": "2026-07-10T10:10:17.814934", + "updated_at": "2026-07-10T10:10:17.814934", + "url": "/v1/games/heroes-of-might-and-magic-ii-the-price-of-loyalty" +} diff --git a/site/public/v1/games/heroes-of-might-and-magic-iii-armageddon-s-blade/index.json b/site/public/v1/games/heroes-of-might-and-magic-iii-armageddon-s-blade/index.json new file mode 100644 index 000000000000..3256e408ea61 --- /dev/null +++ b/site/public/v1/games/heroes-of-might-and-magic-iii-armageddon-s-blade/index.json @@ -0,0 +1,34 @@ +{ + "id": 67168, + "slug": "heroes-of-might-and-magic-iii-armageddon-s-blade", + "name": "Heroes of Might and Magic III: Armageddon's Blade", + "release_date": "1999-09-30", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Classic Mac OS", + "Microsoft Windows" + ], + "genres": [ + "turn-based strategy video game" + ], + "stores": [], + "developers": [ + "New World Computing" + ], + "publishers": [ + "The 3DO Company" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q507074" + ], + "created_at": "2026-07-10T10:10:17.815933", + "updated_at": "2026-07-10T10:10:17.815933", + "url": "/v1/games/heroes-of-might-and-magic-iii-armageddon-s-blade" +} diff --git a/site/public/v1/games/heroes-of-might-and-magic-iii-complete/index.json b/site/public/v1/games/heroes-of-might-and-magic-iii-complete/index.json new file mode 100644 index 000000000000..7fceb08f81fd --- /dev/null +++ b/site/public/v1/games/heroes-of-might-and-magic-iii-complete/index.json @@ -0,0 +1,27 @@ +{ + "id": 67169, + "slug": "heroes-of-might-and-magic-iii-complete", + "name": "Heroes of Might and Magic III: Complete", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Classic Mac OS" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q132128969" + ], + "created_at": "2026-07-10T10:10:17.815933", + "updated_at": "2026-07-10T10:10:17.815933", + "url": "/v1/games/heroes-of-might-and-magic-iii-complete" +} diff --git a/site/public/v1/games/heroes-of-might-and-magic-iv-the-gathering-storm/index.json b/site/public/v1/games/heroes-of-might-and-magic-iv-the-gathering-storm/index.json new file mode 100644 index 000000000000..3437ad2ea41e --- /dev/null +++ b/site/public/v1/games/heroes-of-might-and-magic-iv-the-gathering-storm/index.json @@ -0,0 +1,31 @@ +{ + "id": 67173, + "slug": "heroes-of-might-and-magic-iv-the-gathering-storm", + "name": "Heroes of Might and Magic IV: The Gathering Storm", + "release_date": "2002-09-26", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "New World Computing" + ], + "publishers": [ + "The 3DO Company" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2651488" + ], + "created_at": "2026-07-10T10:10:17.816933", + "updated_at": "2026-07-10T10:10:17.816933", + "url": "/v1/games/heroes-of-might-and-magic-iv-the-gathering-storm" +} diff --git a/site/public/v1/games/heroes-of-might-and-magic-iv-winds-of-war/index.json b/site/public/v1/games/heroes-of-might-and-magic-iv-winds-of-war/index.json new file mode 100644 index 000000000000..06340534cc12 --- /dev/null +++ b/site/public/v1/games/heroes-of-might-and-magic-iv-winds-of-war/index.json @@ -0,0 +1,31 @@ +{ + "id": 67174, + "slug": "heroes-of-might-and-magic-iv-winds-of-war", + "name": "Heroes of Might and Magic IV: Winds of War", + "release_date": "2003-02-23", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "New World Computing" + ], + "publishers": [ + "The 3DO Company" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2652783" + ], + "created_at": "2026-07-10T10:10:17.816933", + "updated_at": "2026-07-10T10:10:17.816933", + "url": "/v1/games/heroes-of-might-and-magic-iv-winds-of-war" +} diff --git a/site/public/v1/games/heroes-of-might-and-magic-v-hammers-of-fate/index.json b/site/public/v1/games/heroes-of-might-and-magic-v-hammers-of-fate/index.json new file mode 100644 index 000000000000..50528ab5b66a --- /dev/null +++ b/site/public/v1/games/heroes-of-might-and-magic-v-hammers-of-fate/index.json @@ -0,0 +1,31 @@ +{ + "id": 67179, + "slug": "heroes-of-might-and-magic-v-hammers-of-fate", + "name": "Heroes of Might and Magic V: Hammers of Fate", + "release_date": "2006-11-14", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "turn-based strategy video game" + ], + "stores": [], + "developers": [ + "Nival" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2470" + ], + "created_at": "2026-07-10T10:10:17.817933", + "updated_at": "2026-07-10T10:10:17.817933", + "url": "/v1/games/heroes-of-might-and-magic-v-hammers-of-fate" +} diff --git a/site/public/v1/games/heroes-of-might-and-magic-v/index.json b/site/public/v1/games/heroes-of-might-and-magic-v/index.json new file mode 100644 index 000000000000..aef271719d7a --- /dev/null +++ b/site/public/v1/games/heroes-of-might-and-magic-v/index.json @@ -0,0 +1,32 @@ +{ + "id": 67181, + "slug": "heroes-of-might-and-magic-v", + "name": "Heroes of Might and Magic V", + "release_date": "2006-05-16", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "turn-based strategy video game" + ], + "stores": [], + "developers": [ + "Nival" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2450" + ], + "created_at": "2026-07-10T10:10:17.817933", + "updated_at": "2026-07-10T10:10:17.817933", + "url": "/v1/games/heroes-of-might-and-magic-v" +} diff --git a/site/public/v1/games/heroes-rise-herofall-ad-space/index.json b/site/public/v1/games/heroes-rise-herofall-ad-space/index.json new file mode 100644 index 000000000000..be3bc8d7a9ef --- /dev/null +++ b/site/public/v1/games/heroes-rise-herofall-ad-space/index.json @@ -0,0 +1,32 @@ +{ + "id": 67233, + "slug": "heroes-rise-herofall-ad-space", + "name": "Heroes Rise: HeroFall - Ad Space", + "release_date": "2014-07-11", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Choice of Games" + ], + "publishers": [ + "Choice of Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115016111" + ], + "created_at": "2026-07-10T10:10:17.831990", + "updated_at": "2026-07-10T10:10:17.831990", + "url": "/v1/games/heroes-rise-herofall-ad-space" +} diff --git a/site/public/v1/games/heroes-rise-herofall-perfect-legend-guide/index.json b/site/public/v1/games/heroes-rise-herofall-perfect-legend-guide/index.json new file mode 100644 index 000000000000..402b523ead2c --- /dev/null +++ b/site/public/v1/games/heroes-rise-herofall-perfect-legend-guide/index.json @@ -0,0 +1,32 @@ +{ + "id": 67234, + "slug": "heroes-rise-herofall-perfect-legend-guide", + "name": "Heroes Rise: HeroFall - Perfect Legend Guide", + "release_date": "2014-07-11", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Choice of Games" + ], + "publishers": [ + "Choice of Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115016106" + ], + "created_at": "2026-07-10T10:10:17.831990", + "updated_at": "2026-07-10T10:10:17.831990", + "url": "/v1/games/heroes-rise-herofall-perfect-legend-guide" +} diff --git a/site/public/v1/games/heroes-rise-herofall-warning-system/index.json b/site/public/v1/games/heroes-rise-herofall-warning-system/index.json new file mode 100644 index 000000000000..f8f88238b3e7 --- /dev/null +++ b/site/public/v1/games/heroes-rise-herofall-warning-system/index.json @@ -0,0 +1,32 @@ +{ + "id": 67235, + "slug": "heroes-rise-herofall-warning-system", + "name": "Heroes Rise: HeroFall - Warning System", + "release_date": "2014-07-11", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Choice of Games" + ], + "publishers": [ + "Choice of Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115016104" + ], + "created_at": "2026-07-10T10:10:17.831990", + "updated_at": "2026-07-10T10:10:17.831990", + "url": "/v1/games/heroes-rise-herofall-warning-system" +} diff --git a/site/public/v1/games/heroes-rise-the-hero-project-perfect-legend-guide/index.json b/site/public/v1/games/heroes-rise-the-hero-project-perfect-legend-guide/index.json new file mode 100644 index 000000000000..d79b4579e601 --- /dev/null +++ b/site/public/v1/games/heroes-rise-the-hero-project-perfect-legend-guide/index.json @@ -0,0 +1,32 @@ +{ + "id": 67237, + "slug": "heroes-rise-the-hero-project-perfect-legend-guide", + "name": "Heroes Rise: The Hero Project - Perfect Legend Guide", + "release_date": "2013-09-20", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Choice of Games" + ], + "publishers": [ + "Choice of Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115016097" + ], + "created_at": "2026-07-10T10:10:17.832992", + "updated_at": "2026-07-10T10:10:17.832992", + "url": "/v1/games/heroes-rise-the-hero-project-perfect-legend-guide" +} diff --git a/site/public/v1/games/heroes-rise-the-hero-project-warning-system/index.json b/site/public/v1/games/heroes-rise-the-hero-project-warning-system/index.json new file mode 100644 index 000000000000..54ffc7e00ff4 --- /dev/null +++ b/site/public/v1/games/heroes-rise-the-hero-project-warning-system/index.json @@ -0,0 +1,32 @@ +{ + "id": 67238, + "slug": "heroes-rise-the-hero-project-warning-system", + "name": "Heroes Rise: The Hero Project - Warning System", + "release_date": "2013-09-20", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Choice of Games" + ], + "publishers": [ + "Choice of Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115016089" + ], + "created_at": "2026-07-10T10:10:17.832992", + "updated_at": "2026-07-10T10:10:17.832992", + "url": "/v1/games/heroes-rise-the-hero-project-warning-system" +} diff --git a/site/public/v1/games/heroes-rise-the-prodigy-perfect-legend-guide/index.json b/site/public/v1/games/heroes-rise-the-prodigy-perfect-legend-guide/index.json new file mode 100644 index 000000000000..3c159e2564f8 --- /dev/null +++ b/site/public/v1/games/heroes-rise-the-prodigy-perfect-legend-guide/index.json @@ -0,0 +1,32 @@ +{ + "id": 67240, + "slug": "heroes-rise-the-prodigy-perfect-legend-guide", + "name": "Heroes Rise: The Prodigy - Perfect Legend Guide", + "release_date": "2012-07-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Choice of Games" + ], + "publishers": [ + "Choice of Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115016101" + ], + "created_at": "2026-07-10T10:10:17.832992", + "updated_at": "2026-07-10T10:10:17.832992", + "url": "/v1/games/heroes-rise-the-prodigy-perfect-legend-guide" +} diff --git a/site/public/v1/games/hexagon/index.json b/site/public/v1/games/hexagon/index.json new file mode 100644 index 000000000000..10aa223a5184 --- /dev/null +++ b/site/public/v1/games/hexagon/index.json @@ -0,0 +1,27 @@ +{ + "id": 67376, + "slug": "hexagon", + "name": "Hexagon", + "release_date": "2012-02-26", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "action game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q20873045" + ], + "created_at": "2026-07-10T10:10:17.869750", + "updated_at": "2026-07-10T10:10:17.869750", + "url": "/v1/games/hexagon" +} diff --git a/site/public/v1/games/hexen-beyond-heretic-demo/index.json b/site/public/v1/games/hexen-beyond-heretic-demo/index.json new file mode 100644 index 000000000000..8cbb1331b9a2 --- /dev/null +++ b/site/public/v1/games/hexen-beyond-heretic-demo/index.json @@ -0,0 +1,25 @@ +{ + "id": 67430, + "slug": "hexen-beyond-heretic-demo", + "name": "Hexen: Beyond Heretic DEMO", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123003058" + ], + "created_at": "2026-07-10T10:10:17.884743", + "updated_at": "2026-07-10T10:10:17.884743", + "url": "/v1/games/hexen-beyond-heretic-demo" +} diff --git a/site/public/v1/games/hexen-ii-portal-of-praevus/index.json b/site/public/v1/games/hexen-ii-portal-of-praevus/index.json new file mode 100644 index 000000000000..2ac3d3f711ba --- /dev/null +++ b/site/public/v1/games/hexen-ii-portal-of-praevus/index.json @@ -0,0 +1,30 @@ +{ + "id": 67433, + "slug": "hexen-ii-portal-of-praevus", + "name": "Hexen II: Portal of Praevus", + "release_date": "1998-04-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "first-person shooter" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3135056" + ], + "created_at": "2026-07-10T10:10:17.885759", + "updated_at": "2026-07-10T10:10:17.885759", + "url": "/v1/games/hexen-ii-portal-of-praevus" +} diff --git a/site/public/v1/games/hidden-dangerous-2-sabre-squadron/index.json b/site/public/v1/games/hidden-dangerous-2-sabre-squadron/index.json new file mode 100644 index 000000000000..28136eeebad2 --- /dev/null +++ b/site/public/v1/games/hidden-dangerous-2-sabre-squadron/index.json @@ -0,0 +1,25 @@ +{ + "id": 67651, + "slug": "hidden-dangerous-2-sabre-squadron", + "name": "Hidden & Dangerous 2: Sabre Squadron", + "release_date": "2004-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3135241" + ], + "created_at": "2026-07-10T10:10:17.944466", + "updated_at": "2026-07-10T10:10:17.944466", + "url": "/v1/games/hidden-dangerous-2-sabre-squadron" +} diff --git a/site/public/v1/games/hidden-dangerous-action-pack/index.json b/site/public/v1/games/hidden-dangerous-action-pack/index.json new file mode 100644 index 000000000000..616d08eda5f5 --- /dev/null +++ b/site/public/v1/games/hidden-dangerous-action-pack/index.json @@ -0,0 +1,25 @@ +{ + "id": 67653, + "slug": "hidden-dangerous-action-pack", + "name": "Hidden & Dangerous Action Pack", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131535316" + ], + "created_at": "2026-07-10T10:10:17.945458", + "updated_at": "2026-07-10T10:10:17.945458", + "url": "/v1/games/hidden-dangerous-action-pack" +} diff --git a/site/public/v1/games/hidden-dangerous-fight-for-freedom/index.json b/site/public/v1/games/hidden-dangerous-fight-for-freedom/index.json new file mode 100644 index 000000000000..432c9dd94c54 --- /dev/null +++ b/site/public/v1/games/hidden-dangerous-fight-for-freedom/index.json @@ -0,0 +1,25 @@ +{ + "id": 67655, + "slug": "hidden-dangerous-fight-for-freedom", + "name": "Hidden & Dangerous: Fight For Freedom", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110156662" + ], + "created_at": "2026-07-10T10:10:17.945458", + "updated_at": "2026-07-10T10:10:17.945458", + "url": "/v1/games/hidden-dangerous-fight-for-freedom" +} diff --git a/site/public/v1/games/hidden-dreams/index.json b/site/public/v1/games/hidden-dreams/index.json new file mode 100644 index 000000000000..94e272901ad3 --- /dev/null +++ b/site/public/v1/games/hidden-dreams/index.json @@ -0,0 +1,27 @@ +{ + "id": 67662, + "slug": "hidden-dreams", + "name": "Hidden Dreams", + "release_date": "2017-08-03", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [ + "Team Cherry" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116592495" + ], + "created_at": "2026-07-10T10:10:17.948398", + "updated_at": "2026-07-10T10:10:17.948398", + "url": "/v1/games/hidden-dreams" +} diff --git a/site/public/v1/games/hidden-folks-q110453487/index.json b/site/public/v1/games/hidden-folks-q110453487/index.json new file mode 100644 index 000000000000..70a6e3b55895 --- /dev/null +++ b/site/public/v1/games/hidden-folks-q110453487/index.json @@ -0,0 +1,30 @@ +{ + "id": 67683, + "slug": "hidden-folks-q110453487", + "name": "Hidden Folks+", + "release_date": "2022-01-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "iPadOS", + "tvOS", + "iOS", + "macOS" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110453487" + ], + "created_at": "2026-07-10T10:10:17.953463", + "updated_at": "2026-07-10T10:10:17.953463", + "url": "/v1/games/hidden-folks-q110453487" +} diff --git a/site/public/v1/games/hidden-shapes-animals-lovely-cats/index.json b/site/public/v1/games/hidden-shapes-animals-lovely-cats/index.json new file mode 100644 index 000000000000..e93dbd2e2b85 --- /dev/null +++ b/site/public/v1/games/hidden-shapes-animals-lovely-cats/index.json @@ -0,0 +1,30 @@ +{ + "id": 67779, + "slug": "hidden-shapes-animals-lovely-cats", + "name": "Hidden Shapes: Animals + Lovely Cats", + "release_date": "2022-04-14", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 4" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "QUByte Interactive" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111805002" + ], + "created_at": "2026-07-10T10:10:17.977456", + "updated_at": "2026-07-10T10:10:17.977456", + "url": "/v1/games/hidden-shapes-animals-lovely-cats" +} diff --git a/site/public/v1/games/hidden-shapes-black-skull-old-west/index.json b/site/public/v1/games/hidden-shapes-black-skull-old-west/index.json new file mode 100644 index 000000000000..90cb3e2e568d --- /dev/null +++ b/site/public/v1/games/hidden-shapes-black-skull-old-west/index.json @@ -0,0 +1,31 @@ +{ + "id": 67781, + "slug": "hidden-shapes-black-skull-old-west", + "name": "Hidden Shapes: Black Skull + Old West", + "release_date": "2022-08-25", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S" + ], + "genres": [], + "stores": [], + "developers": [ + "YAW Studios" + ], + "publishers": [ + "QUByte Interactive" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115978612" + ], + "created_at": "2026-07-10T10:10:17.978455", + "updated_at": "2026-07-10T10:10:17.978455", + "url": "/v1/games/hidden-shapes-black-skull-old-west" +} diff --git a/site/public/v1/games/hidden-through-time-aztec-rituals/index.json b/site/public/v1/games/hidden-through-time-aztec-rituals/index.json new file mode 100644 index 000000000000..49505f2325e1 --- /dev/null +++ b/site/public/v1/games/hidden-through-time-aztec-rituals/index.json @@ -0,0 +1,28 @@ +{ + "id": 67799, + "slug": "hidden-through-time-aztec-rituals", + "name": "Hidden Through Time - Aztec Rituals", + "release_date": "2022-07-21", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115201669" + ], + "created_at": "2026-07-10T10:10:17.982477", + "updated_at": "2026-07-10T10:10:17.982477", + "url": "/v1/games/hidden-through-time-aztec-rituals" +} diff --git a/site/public/v1/games/hidden-through-time-legends-of-japan/index.json b/site/public/v1/games/hidden-through-time-legends-of-japan/index.json new file mode 100644 index 000000000000..28098e4d2e7b --- /dev/null +++ b/site/public/v1/games/hidden-through-time-legends-of-japan/index.json @@ -0,0 +1,28 @@ +{ + "id": 67800, + "slug": "hidden-through-time-legends-of-japan", + "name": "Hidden Through Time - Legends of Japan", + "release_date": "2020-09-10", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115201674" + ], + "created_at": "2026-07-10T10:10:17.982477", + "updated_at": "2026-07-10T10:10:17.982477", + "url": "/v1/games/hidden-through-time-legends-of-japan" +} diff --git a/site/public/v1/games/hidden-through-time-pirate-treasures/index.json b/site/public/v1/games/hidden-through-time-pirate-treasures/index.json new file mode 100644 index 000000000000..20b14983c1b0 --- /dev/null +++ b/site/public/v1/games/hidden-through-time-pirate-treasures/index.json @@ -0,0 +1,28 @@ +{ + "id": 67801, + "slug": "hidden-through-time-pirate-treasures", + "name": "Hidden Through Time - Pirate Treasures", + "release_date": "2022-07-21", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115201666" + ], + "created_at": "2026-07-10T10:10:17.983491", + "updated_at": "2026-07-10T10:10:17.983491", + "url": "/v1/games/hidden-through-time-pirate-treasures" +} diff --git a/site/public/v1/games/hidden-through-time-road-to-rome/index.json b/site/public/v1/games/hidden-through-time-road-to-rome/index.json new file mode 100644 index 000000000000..dcbee258fb9e --- /dev/null +++ b/site/public/v1/games/hidden-through-time-road-to-rome/index.json @@ -0,0 +1,28 @@ +{ + "id": 67802, + "slug": "hidden-through-time-road-to-rome", + "name": "Hidden Through Time - Road to Rome", + "release_date": "2021-04-22", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115201673" + ], + "created_at": "2026-07-10T10:10:17.983491", + "updated_at": "2026-07-10T10:10:17.983491", + "url": "/v1/games/hidden-through-time-road-to-rome" +} diff --git a/site/public/v1/games/hidden-through-time-viking-tales/index.json b/site/public/v1/games/hidden-through-time-viking-tales/index.json new file mode 100644 index 000000000000..61377dc055c3 --- /dev/null +++ b/site/public/v1/games/hidden-through-time-viking-tales/index.json @@ -0,0 +1,28 @@ +{ + "id": 67803, + "slug": "hidden-through-time-viking-tales", + "name": "Hidden Through Time - Viking Tales", + "release_date": "2020-05-15", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115201687" + ], + "created_at": "2026-07-10T10:10:17.983491", + "updated_at": "2026-07-10T10:10:17.983491", + "url": "/v1/games/hidden-through-time-viking-tales" +} diff --git a/site/public/v1/games/higurashi-no-naku-koro-ni-himatsubushi-hen/index.json b/site/public/v1/games/higurashi-no-naku-koro-ni-himatsubushi-hen/index.json new file mode 100644 index 000000000000..3b96b192d793 --- /dev/null +++ b/site/public/v1/games/higurashi-no-naku-koro-ni-himatsubushi-hen/index.json @@ -0,0 +1,32 @@ +{ + "id": 68077, + "slug": "higurashi-no-naku-koro-ni-himatsubushi-hen", + "name": "Higurashi no Naku Koro ni: Himatsubushi-hen", + "release_date": "2004-08-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "sound novel", + "horror video game" + ], + "stores": [], + "developers": [ + "07th Expansion" + ], + "publishers": [ + "07th Expansion" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q104093781" + ], + "created_at": "2026-07-10T10:10:18.059218", + "updated_at": "2026-07-10T10:10:18.059218", + "url": "/v1/games/higurashi-no-naku-koro-ni-himatsubushi-hen" +} diff --git a/site/public/v1/games/higurashi-no-naku-koro-ni-kai-matsuribayashi-hen/index.json b/site/public/v1/games/higurashi-no-naku-koro-ni-kai-matsuribayashi-hen/index.json new file mode 100644 index 000000000000..16e8deaab4a0 --- /dev/null +++ b/site/public/v1/games/higurashi-no-naku-koro-ni-kai-matsuribayashi-hen/index.json @@ -0,0 +1,32 @@ +{ + "id": 68080, + "slug": "higurashi-no-naku-koro-ni-kai-matsuribayashi-hen", + "name": "Higurashi no Naku Koro ni Kai: Matsuribayashi-hen", + "release_date": "2006-08-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "sound novel", + "horror video game" + ], + "stores": [], + "developers": [ + "07th Expansion" + ], + "publishers": [ + "07th Expansion" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5966528" + ], + "created_at": "2026-07-10T10:10:18.059218", + "updated_at": "2026-07-10T10:10:18.059218", + "url": "/v1/games/higurashi-no-naku-koro-ni-kai-matsuribayashi-hen" +} diff --git a/site/public/v1/games/higurashi-no-naku-koro-ni-kai-meakashi-hen/index.json b/site/public/v1/games/higurashi-no-naku-koro-ni-kai-meakashi-hen/index.json new file mode 100644 index 000000000000..dcb1824fc7db --- /dev/null +++ b/site/public/v1/games/higurashi-no-naku-koro-ni-kai-meakashi-hen/index.json @@ -0,0 +1,32 @@ +{ + "id": 68081, + "slug": "higurashi-no-naku-koro-ni-kai-meakashi-hen", + "name": "Higurashi no Naku Koro ni Kai: Meakashi-hen", + "release_date": "2004-12-30", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "sound novel", + "horror video game" + ], + "stores": [], + "developers": [ + "07th Expansion" + ], + "publishers": [ + "07th Expansion" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5966408" + ], + "created_at": "2026-07-10T10:10:18.060269", + "updated_at": "2026-07-10T10:10:18.060269", + "url": "/v1/games/higurashi-no-naku-koro-ni-kai-meakashi-hen" +} diff --git a/site/public/v1/games/higurashi-no-naku-koro-ni-kai-minagoroshi-hen/index.json b/site/public/v1/games/higurashi-no-naku-koro-ni-kai-minagoroshi-hen/index.json new file mode 100644 index 000000000000..92995681ff3b --- /dev/null +++ b/site/public/v1/games/higurashi-no-naku-koro-ni-kai-minagoroshi-hen/index.json @@ -0,0 +1,32 @@ +{ + "id": 68082, + "slug": "higurashi-no-naku-koro-ni-kai-minagoroshi-hen", + "name": "Higurashi no Naku Koro ni Kai: Minagoroshi-hen", + "release_date": "2005-12-30", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "sound novel", + "horror video game" + ], + "stores": [], + "developers": [ + "07th Expansion" + ], + "publishers": [ + "07th Expansion" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5967394" + ], + "created_at": "2026-07-10T10:10:18.060269", + "updated_at": "2026-07-10T10:10:18.060269", + "url": "/v1/games/higurashi-no-naku-koro-ni-kai-minagoroshi-hen" +} diff --git a/site/public/v1/games/higurashi-no-naku-koro-ni-kai-tsumihoroboshi-hen/index.json b/site/public/v1/games/higurashi-no-naku-koro-ni-kai-tsumihoroboshi-hen/index.json new file mode 100644 index 000000000000..959ad40051fe --- /dev/null +++ b/site/public/v1/games/higurashi-no-naku-koro-ni-kai-tsumihoroboshi-hen/index.json @@ -0,0 +1,32 @@ +{ + "id": 68083, + "slug": "higurashi-no-naku-koro-ni-kai-tsumihoroboshi-hen", + "name": "Higurashi no Naku Koro ni Kai: Tsumihoroboshi-hen", + "release_date": "2005-08-14", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "sound novel", + "horror video game" + ], + "stores": [], + "developers": [ + "07th Expansion" + ], + "publishers": [ + "07th Expansion" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5966807" + ], + "created_at": "2026-07-10T10:10:18.060269", + "updated_at": "2026-07-10T10:10:18.060269", + "url": "/v1/games/higurashi-no-naku-koro-ni-kai-tsumihoroboshi-hen" +} diff --git a/site/public/v1/games/higurashi-no-naku-koro-ni-kai/index.json b/site/public/v1/games/higurashi-no-naku-koro-ni-kai/index.json new file mode 100644 index 000000000000..bc0c030326ca --- /dev/null +++ b/site/public/v1/games/higurashi-no-naku-koro-ni-kai/index.json @@ -0,0 +1,32 @@ +{ + "id": 68084, + "slug": "higurashi-no-naku-koro-ni-kai", + "name": "Higurashi no Naku Koro ni Kai", + "release_date": "2006-08-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "sound novel", + "horror video game" + ], + "stores": [], + "developers": [ + "07th Expansion" + ], + "publishers": [ + "07th Expansion" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11276166" + ], + "created_at": "2026-07-10T10:10:18.060269", + "updated_at": "2026-07-10T10:10:18.060269", + "url": "/v1/games/higurashi-no-naku-koro-ni-kai" +} diff --git a/site/public/v1/games/higurashi-no-naku-koro-ni-onikakushi-hen/index.json b/site/public/v1/games/higurashi-no-naku-koro-ni-onikakushi-hen/index.json new file mode 100644 index 000000000000..149bb950e239 --- /dev/null +++ b/site/public/v1/games/higurashi-no-naku-koro-ni-onikakushi-hen/index.json @@ -0,0 +1,39 @@ +{ + "id": 68087, + "slug": "higurashi-no-naku-koro-ni-onikakushi-hen", + "name": "Higurashi no Naku Koro ni: Onikakushi-hen", + "release_date": "2002-08-10", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 3", + "PlayStation 4", + "PlayStation Vita", + "Nintendo DS", + "macOS", + "Microsoft Windows" + ], + "genres": [ + "kinetic novel" + ], + "stores": [], + "developers": [ + "07th Expansion" + ], + "publishers": [ + "07th Expansion", + "MangaGamer" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11090454" + ], + "created_at": "2026-07-10T10:10:18.061231", + "updated_at": "2026-07-10T10:10:18.061231", + "url": "/v1/games/higurashi-no-naku-koro-ni-onikakushi-hen" +} diff --git a/site/public/v1/games/higurashi-no-naku-koro-ni-tatarigoroshi-hen/index.json b/site/public/v1/games/higurashi-no-naku-koro-ni-tatarigoroshi-hen/index.json new file mode 100644 index 000000000000..6fd2429c41b2 --- /dev/null +++ b/site/public/v1/games/higurashi-no-naku-koro-ni-tatarigoroshi-hen/index.json @@ -0,0 +1,32 @@ +{ + "id": 68090, + "slug": "higurashi-no-naku-koro-ni-tatarigoroshi-hen", + "name": "Higurashi no Naku Koro ni: Tatarigoroshi-hen", + "release_date": "2003-08-15", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "sound novel", + "horror video game" + ], + "stores": [], + "developers": [ + "07th Expansion" + ], + "publishers": [ + "07th Expansion" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5966459" + ], + "created_at": "2026-07-10T10:10:18.062201", + "updated_at": "2026-07-10T10:10:18.062201", + "url": "/v1/games/higurashi-no-naku-koro-ni-tatarigoroshi-hen" +} diff --git a/site/public/v1/games/higurashi-no-naku-koro-ni-watanagashi-hen/index.json b/site/public/v1/games/higurashi-no-naku-koro-ni-watanagashi-hen/index.json new file mode 100644 index 000000000000..01807232ece3 --- /dev/null +++ b/site/public/v1/games/higurashi-no-naku-koro-ni-watanagashi-hen/index.json @@ -0,0 +1,32 @@ +{ + "id": 68091, + "slug": "higurashi-no-naku-koro-ni-watanagashi-hen", + "name": "Higurashi no Naku Koro ni: Watanagashi-hen", + "release_date": "2002-12-29", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "sound novel", + "horror video game" + ], + "stores": [], + "developers": [ + "07th Expansion" + ], + "publishers": [ + "07th Expansion" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5966621" + ], + "created_at": "2026-07-10T10:10:18.062201", + "updated_at": "2026-07-10T10:10:18.062201", + "url": "/v1/games/higurashi-no-naku-koro-ni-watanagashi-hen" +} diff --git a/site/public/v1/games/hill-climb-racing-q118235025/index.json b/site/public/v1/games/hill-climb-racing-q118235025/index.json new file mode 100644 index 000000000000..8f611bfd1891 --- /dev/null +++ b/site/public/v1/games/hill-climb-racing-q118235025/index.json @@ -0,0 +1,28 @@ +{ + "id": 68138, + "slug": "hill-climb-racing-q118235025", + "name": "Hill Climb Racing+", + "release_date": "2023-05-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "iPadOS", + "iOS" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118235025" + ], + "created_at": "2026-07-10T10:10:18.075227", + "updated_at": "2026-07-10T10:10:18.075227", + "url": "/v1/games/hill-climb-racing-q118235025" +} diff --git a/site/public/v1/games/him-her-collection/index.json b/site/public/v1/games/him-her-collection/index.json new file mode 100644 index 000000000000..040300ff1fe8 --- /dev/null +++ b/site/public/v1/games/him-her-collection/index.json @@ -0,0 +1,34 @@ +{ + "id": 68162, + "slug": "him-her-collection", + "name": "Him & Her Collection", + "release_date": "2022-06-23", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "puzzle-platformer" + ], + "stores": [], + "developers": [], + "publishers": [ + "QUByte Interactive", + "Game Nacional" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113686227" + ], + "created_at": "2026-07-10T10:10:18.081229", + "updated_at": "2026-07-10T10:10:18.081229", + "url": "/v1/games/him-her-collection" +} diff --git a/site/public/v1/games/hishou-same-same-same/index.json b/site/public/v1/games/hishou-same-same-same/index.json new file mode 100644 index 000000000000..02d41fe92050 --- /dev/null +++ b/site/public/v1/games/hishou-same-same-same/index.json @@ -0,0 +1,32 @@ +{ + "id": 68269, + "slug": "hishou-same-same-same", + "name": "Hishou Same! Same! Same!", + "release_date": "2022-04-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 4" + ], + "genres": [], + "stores": [], + "developers": [ + "Toaplan", + "M2" + ], + "publishers": [ + "M2" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q129087374" + ], + "created_at": "2026-07-10T10:10:18.112206", + "updated_at": "2026-07-10T10:10:18.112206", + "url": "/v1/games/hishou-same-same-same" +} diff --git a/site/public/v1/games/hitman-game-of-the-year-edition/index.json b/site/public/v1/games/hitman-game-of-the-year-edition/index.json new file mode 100644 index 000000000000..c809b154e96e --- /dev/null +++ b/site/public/v1/games/hitman-game-of-the-year-edition/index.json @@ -0,0 +1,25 @@ +{ + "id": 68344, + "slug": "hitman-game-of-the-year-edition", + "name": "Hitman - Game of the Year Edition", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q90135376" + ], + "created_at": "2026-07-10T10:10:18.132293", + "updated_at": "2026-07-10T10:10:18.132293", + "url": "/v1/games/hitman-game-of-the-year-edition" +} diff --git a/site/public/v1/games/hitman-hd-enhanced-collection/index.json b/site/public/v1/games/hitman-hd-enhanced-collection/index.json new file mode 100644 index 000000000000..54b0278ca7ae --- /dev/null +++ b/site/public/v1/games/hitman-hd-enhanced-collection/index.json @@ -0,0 +1,27 @@ +{ + "id": 68346, + "slug": "hitman-hd-enhanced-collection", + "name": "Hitman HD Enhanced Collection", + "release_date": "2019-01-11", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 4" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123337713" + ], + "created_at": "2026-07-10T10:10:18.133284", + "updated_at": "2026-07-10T10:10:18.133284", + "url": "/v1/games/hitman-hd-enhanced-collection" +} diff --git a/site/public/v1/games/hitman-hd-trilogy/index.json b/site/public/v1/games/hitman-hd-trilogy/index.json new file mode 100644 index 000000000000..ca7d4a00a035 --- /dev/null +++ b/site/public/v1/games/hitman-hd-trilogy/index.json @@ -0,0 +1,29 @@ +{ + "id": 68347, + "slug": "hitman-hd-trilogy", + "name": "Hitman: HD Trilogy", + "release_date": "2013-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 3" + ], + "genres": [ + "action-adventure game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17633848" + ], + "created_at": "2026-07-10T10:10:18.133284", + "updated_at": "2026-07-10T10:10:18.133284", + "url": "/v1/games/hitman-hd-trilogy" +} diff --git a/site/public/v1/games/hitman-trilogy/index.json b/site/public/v1/games/hitman-trilogy/index.json new file mode 100644 index 000000000000..f51fe3873511 --- /dev/null +++ b/site/public/v1/games/hitman-trilogy/index.json @@ -0,0 +1,25 @@ +{ + "id": 68350, + "slug": "hitman-trilogy", + "name": "Hitman Trilogy", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63049475" + ], + "created_at": "2026-07-10T10:10:18.134303", + "updated_at": "2026-07-10T10:10:18.134303", + "url": "/v1/games/hitman-trilogy" +} diff --git a/site/public/v1/games/hitman-world-of-assassination/index.json b/site/public/v1/games/hitman-world-of-assassination/index.json new file mode 100644 index 000000000000..4d8b4cc66ba8 --- /dev/null +++ b/site/public/v1/games/hitman-world-of-assassination/index.json @@ -0,0 +1,34 @@ +{ + "id": 68351, + "slug": "hitman-world-of-assassination", + "name": "Hitman World of Assassination", + "release_date": "2022-01-20", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 5", + "PlayStation 4", + "iOS", + "Microsoft Windows" + ], + "genres": [ + "stealth game", + "immersive sim" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116680138" + ], + "created_at": "2026-07-10T10:10:18.134303", + "updated_at": "2026-07-10T10:10:18.134303", + "url": "/v1/games/hitman-world-of-assassination" +} diff --git a/site/public/v1/games/hits-vol-1/index.json b/site/public/v1/games/hits-vol-1/index.json new file mode 100644 index 000000000000..ab3f4e869807 --- /dev/null +++ b/site/public/v1/games/hits-vol-1/index.json @@ -0,0 +1,29 @@ +{ + "id": 68375, + "slug": "hits-vol-1", + "name": "Hits! Vol 1", + "release_date": "1986-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Amstrad CPC" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Krome Studios Melbourne" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131564904" + ], + "created_at": "2026-07-10T10:10:18.142029", + "updated_at": "2026-07-10T10:10:18.142029", + "url": "/v1/games/hits-vol-1" +} diff --git a/site/public/v1/games/hocus-pocus-doom/index.json b/site/public/v1/games/hocus-pocus-doom/index.json new file mode 100644 index 000000000000..1598b5f8d043 --- /dev/null +++ b/site/public/v1/games/hocus-pocus-doom/index.json @@ -0,0 +1,25 @@ +{ + "id": 68465, + "slug": "hocus-pocus-doom", + "name": "Hocus Pocus Doom", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108027627" + ], + "created_at": "2026-07-10T10:10:18.166034", + "updated_at": "2026-07-10T10:10:18.166034", + "url": "/v1/games/hocus-pocus-doom" +} diff --git a/site/public/v1/games/hollywood-collection-q124029760/index.json b/site/public/v1/games/hollywood-collection-q124029760/index.json new file mode 100644 index 000000000000..daf090a26107 --- /dev/null +++ b/site/public/v1/games/hollywood-collection-q124029760/index.json @@ -0,0 +1,29 @@ +{ + "id": 68642, + "slug": "hollywood-collection-q124029760", + "name": "Hollywood Collection", + "release_date": "1990-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Amstrad CPC" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Ocean Software" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124029760" + ], + "created_at": "2026-07-10T10:10:18.215026", + "updated_at": "2026-07-10T10:10:18.215026", + "url": "/v1/games/hollywood-collection-q124029760" +} diff --git a/site/public/v1/games/home-run-derby-q128014886/index.json b/site/public/v1/games/home-run-derby-q128014886/index.json new file mode 100644 index 000000000000..63a1a018afea --- /dev/null +++ b/site/public/v1/games/home-run-derby-q128014886/index.json @@ -0,0 +1,25 @@ +{ + "id": 68807, + "slug": "home-run-derby-q128014886", + "name": "Home Run Derby", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q128014886" + ], + "created_at": "2026-07-10T10:10:18.259661", + "updated_at": "2026-07-10T10:10:18.259661", + "url": "/v1/games/home-run-derby-q128014886" +} diff --git a/site/public/v1/games/homestar-ruiner/index.json b/site/public/v1/games/homestar-ruiner/index.json new file mode 100644 index 000000000000..3c8c4e9ac204 --- /dev/null +++ b/site/public/v1/games/homestar-ruiner/index.json @@ -0,0 +1,35 @@ +{ + "id": 68873, + "slug": "homestar-ruiner", + "name": "Homestar Ruiner", + "release_date": "2008-08-11", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 3", + "Wii", + "Microsoft Windows" + ], + "genres": [ + "graphic adventure game" + ], + "stores": [], + "developers": [ + "Telltale Games" + ], + "publishers": [ + "Telltale Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135448928" + ], + "created_at": "2026-07-10T10:10:18.276741", + "updated_at": "2026-07-10T10:10:18.276741", + "url": "/v1/games/homestar-ruiner" +} diff --git a/site/public/v1/games/homeworld-deserts-of-kharak-khaaneph-fleet-pack/index.json b/site/public/v1/games/homeworld-deserts-of-kharak-khaaneph-fleet-pack/index.json new file mode 100644 index 000000000000..f0b47b49e4e3 --- /dev/null +++ b/site/public/v1/games/homeworld-deserts-of-kharak-khaaneph-fleet-pack/index.json @@ -0,0 +1,32 @@ +{ + "id": 68889, + "slug": "homeworld-deserts-of-kharak-khaaneph-fleet-pack", + "name": "Homeworld: Deserts of Kharak - Khaaneph Fleet Pack", + "release_date": "2016-04-26", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Blackbird Interactive" + ], + "publishers": [ + "Gearbox Software" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112263305" + ], + "created_at": "2026-07-10T10:10:18.280730", + "updated_at": "2026-07-10T10:10:18.280730", + "url": "/v1/games/homeworld-deserts-of-kharak-khaaneph-fleet-pack" +} diff --git a/site/public/v1/games/homeworld-deserts-of-kharak-soban-fleet-pack/index.json b/site/public/v1/games/homeworld-deserts-of-kharak-soban-fleet-pack/index.json new file mode 100644 index 000000000000..ebd0bc6d5842 --- /dev/null +++ b/site/public/v1/games/homeworld-deserts-of-kharak-soban-fleet-pack/index.json @@ -0,0 +1,32 @@ +{ + "id": 68890, + "slug": "homeworld-deserts-of-kharak-soban-fleet-pack", + "name": "Homeworld: Deserts of Kharak - Soban Fleet Pack", + "release_date": "2016-03-22", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Blackbird Interactive" + ], + "publishers": [ + "Gearbox Software" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112263312" + ], + "created_at": "2026-07-10T10:10:18.280730", + "updated_at": "2026-07-10T10:10:18.280730", + "url": "/v1/games/homeworld-deserts-of-kharak-soban-fleet-pack" +} diff --git a/site/public/v1/games/homicipher-demo/index.json b/site/public/v1/games/homicipher-demo/index.json new file mode 100644 index 000000000000..73a3eca67f26 --- /dev/null +++ b/site/public/v1/games/homicipher-demo/index.json @@ -0,0 +1,30 @@ +{ + "id": 68900, + "slug": "homicipher-demo", + "name": "Homicipher: Demo", + "release_date": "2023-05-31", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "adventure video game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122309759" + ], + "created_at": "2026-07-10T10:10:18.282730", + "updated_at": "2026-07-10T10:10:18.282730", + "url": "/v1/games/homicipher-demo" +} diff --git a/site/public/v1/games/homosexuality-in-video-games/index.json b/site/public/v1/games/homosexuality-in-video-games/index.json new file mode 100644 index 000000000000..f39c252afaab --- /dev/null +++ b/site/public/v1/games/homosexuality-in-video-games/index.json @@ -0,0 +1,25 @@ +{ + "id": 68908, + "slug": "homosexuality-in-video-games", + "name": "homosexuality in video games", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134610478" + ], + "created_at": "2026-07-10T10:10:18.285738", + "updated_at": "2026-07-10T10:10:18.285738", + "url": "/v1/games/homosexuality-in-video-games" +} diff --git a/site/public/v1/games/honeymoon/index.json b/site/public/v1/games/honeymoon/index.json new file mode 100644 index 000000000000..51c74d430063 --- /dev/null +++ b/site/public/v1/games/honeymoon/index.json @@ -0,0 +1,25 @@ +{ + "id": 68951, + "slug": "honeymoon", + "name": "Honeymoon", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q97342252" + ], + "created_at": "2026-07-10T10:10:18.296664", + "updated_at": "2026-07-10T10:10:18.296664", + "url": "/v1/games/honeymoon" +} diff --git a/site/public/v1/games/honeywood/index.json b/site/public/v1/games/honeywood/index.json new file mode 100644 index 000000000000..7c84b59313fa --- /dev/null +++ b/site/public/v1/games/honeywood/index.json @@ -0,0 +1,25 @@ +{ + "id": 68954, + "slug": "honeywood", + "name": "Honeywood", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116854060" + ], + "created_at": "2026-07-10T10:10:18.296664", + "updated_at": "2026-07-10T10:10:18.297733", + "url": "/v1/games/honeywood" +} diff --git a/site/public/v1/games/hopkins-fbi-2-don-t-cry-baby/index.json b/site/public/v1/games/hopkins-fbi-2-don-t-cry-baby/index.json new file mode 100644 index 000000000000..43ee531f6f40 --- /dev/null +++ b/site/public/v1/games/hopkins-fbi-2-don-t-cry-baby/index.json @@ -0,0 +1,27 @@ +{ + "id": 69136, + "slug": "hopkins-fbi-2-don-t-cry-baby", + "name": "Hopkins FBI 2: Don't Cry, Baby", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115113761" + ], + "created_at": "2026-07-10T10:10:19.328794", + "updated_at": "2026-07-10T10:10:19.328794", + "url": "/v1/games/hopkins-fbi-2-don-t-cry-baby" +} diff --git a/site/public/v1/games/horizon-steel-frontiers/index.json b/site/public/v1/games/horizon-steel-frontiers/index.json new file mode 100644 index 000000000000..87b1c88fcaa6 --- /dev/null +++ b/site/public/v1/games/horizon-steel-frontiers/index.json @@ -0,0 +1,32 @@ +{ + "id": 69222, + "slug": "horizon-steel-frontiers", + "name": "Horizon Steel Frontiers", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "iOS", + "Microsoft Windows" + ], + "genres": [ + "massively multiplayer online role-playing game" + ], + "stores": [], + "developers": [ + "NC" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136791182" + ], + "created_at": "2026-07-10T10:10:19.359262", + "updated_at": "2026-07-10T10:10:19.359262", + "url": "/v1/games/horizon-steel-frontiers" +} diff --git a/site/public/v1/games/horizon-zero-dawn-complete-edition/index.json b/site/public/v1/games/horizon-zero-dawn-complete-edition/index.json new file mode 100644 index 000000000000..d0b528970e60 --- /dev/null +++ b/site/public/v1/games/horizon-zero-dawn-complete-edition/index.json @@ -0,0 +1,32 @@ +{ + "id": 69228, + "slug": "horizon-zero-dawn-complete-edition", + "name": "Horizon Zero Dawn Complete Edition", + "release_date": "2020-08-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Guerrilla Games" + ], + "publishers": [ + "PlayStation PC LLC" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116771326" + ], + "created_at": "2026-07-10T10:10:19.360283", + "updated_at": "2026-07-10T10:10:19.360283", + "url": "/v1/games/horizon-zero-dawn-complete-edition" +} diff --git a/site/public/v1/games/horizon-zero-dawn-the-frozen-wilds/index.json b/site/public/v1/games/horizon-zero-dawn-the-frozen-wilds/index.json new file mode 100644 index 000000000000..235d59dce85d --- /dev/null +++ b/site/public/v1/games/horizon-zero-dawn-the-frozen-wilds/index.json @@ -0,0 +1,34 @@ +{ + "id": 69230, + "slug": "horizon-zero-dawn-the-frozen-wilds", + "name": "Horizon Zero Dawn: The Frozen Wilds", + "release_date": "2017-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 4" + ], + "genres": [ + "action-adventure game", + "action role-playing game" + ], + "stores": [], + "developers": [ + "Guerrilla Games" + ], + "publishers": [ + "Sony Interactive Entertainment" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q48790334" + ], + "created_at": "2026-07-10T10:10:19.361255", + "updated_at": "2026-07-10T10:10:19.361255", + "url": "/v1/games/horizon-zero-dawn-the-frozen-wilds" +} diff --git a/site/public/v1/games/hornets/index.json b/site/public/v1/games/hornets/index.json new file mode 100644 index 000000000000..87bbb9021474 --- /dev/null +++ b/site/public/v1/games/hornets/index.json @@ -0,0 +1,33 @@ +{ + "id": 69244, + "slug": "hornets", + "name": "Hornets", + "release_date": "2015-04-20", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "web browser", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Kitty Horrorshow" + ], + "publishers": [ + "Kitty Horrorshow" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125112132" + ], + "created_at": "2026-07-10T10:10:19.365189", + "updated_at": "2026-07-10T10:10:19.365189", + "url": "/v1/games/hornets" +} diff --git a/site/public/v1/games/horror-pack/index.json b/site/public/v1/games/horror-pack/index.json new file mode 100644 index 000000000000..a55f61ac0830 --- /dev/null +++ b/site/public/v1/games/horror-pack/index.json @@ -0,0 +1,27 @@ +{ + "id": 69330, + "slug": "horror-pack", + "name": "Horror Pack", + "release_date": "2012-07-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60586780" + ], + "created_at": "2026-07-10T10:10:19.389251", + "updated_at": "2026-07-10T10:10:19.389251", + "url": "/v1/games/horror-pack" +} diff --git a/site/public/v1/games/horror-sports-pinball/index.json b/site/public/v1/games/horror-sports-pinball/index.json new file mode 100644 index 000000000000..9199f7ccc097 --- /dev/null +++ b/site/public/v1/games/horror-sports-pinball/index.json @@ -0,0 +1,29 @@ +{ + "id": 69338, + "slug": "horror-sports-pinball", + "name": "Horror & Sports Pinball", + "release_date": "2021-12-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "pinball video game" + ], + "stores": [], + "developers": [], + "publishers": [ + "Super PowerUp Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110410493" + ], + "created_at": "2026-07-10T10:10:19.391283", + "updated_at": "2026-07-10T10:10:19.391283", + "url": "/v1/games/horror-sports-pinball" +} diff --git a/site/public/v1/games/horror-tales-the-wine/index.json b/site/public/v1/games/horror-tales-the-wine/index.json new file mode 100644 index 000000000000..ed97a6574736 --- /dev/null +++ b/site/public/v1/games/horror-tales-the-wine/index.json @@ -0,0 +1,34 @@ +{ + "id": 69351, + "slug": "horror-tales-the-wine", + "name": "HORROR TALES: The Wine", + "release_date": "2021-07-30", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 5", + "Microsoft Windows" + ], + "genres": [ + "adventure video game" + ], + "stores": [], + "developers": [ + "Carlos Coronado" + ], + "publishers": [ + "Carlos Coronado" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111982645" + ], + "created_at": "2026-07-10T10:10:19.395253", + "updated_at": "2026-07-10T10:10:19.395253", + "url": "/v1/games/horror-tales-the-wine" +} diff --git a/site/public/v1/games/horse-armor-pack/index.json b/site/public/v1/games/horse-armor-pack/index.json new file mode 100644 index 000000000000..42f13a8654d4 --- /dev/null +++ b/site/public/v1/games/horse-armor-pack/index.json @@ -0,0 +1,29 @@ +{ + "id": 69370, + "slug": "horse-armor-pack", + "name": "Horse Armor Pack", + "release_date": "2006-04-03", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Bethesda Softworks" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115051311" + ], + "created_at": "2026-07-10T10:10:19.400286", + "updated_at": "2026-07-10T10:10:19.400286", + "url": "/v1/games/horse-armor-pack" +} diff --git a/site/public/v1/games/horse-racing-machine/index.json b/site/public/v1/games/horse-racing-machine/index.json new file mode 100644 index 000000000000..cb36e275d127 --- /dev/null +++ b/site/public/v1/games/horse-racing-machine/index.json @@ -0,0 +1,25 @@ +{ + "id": 69387, + "slug": "horse-racing-machine", + "name": "Horse racing machine", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112889032" + ], + "created_at": "2026-07-10T10:10:19.405265", + "updated_at": "2026-07-10T10:10:19.405265", + "url": "/v1/games/horse-racing-machine" +} diff --git a/site/public/v1/games/hot-coffee/index.json b/site/public/v1/games/hot-coffee/index.json new file mode 100644 index 000000000000..438ebf086819 --- /dev/null +++ b/site/public/v1/games/hot-coffee/index.json @@ -0,0 +1,27 @@ +{ + "id": 69495, + "slug": "hot-coffee", + "name": "Hot Coffee", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q720367" + ], + "created_at": "2026-07-10T10:10:19.482109", + "updated_at": "2026-07-10T10:10:19.482109", + "url": "/v1/games/hot-coffee" +} diff --git a/site/public/v1/games/hot-shot/index.json b/site/public/v1/games/hot-shot/index.json new file mode 100644 index 000000000000..b1cd3da126cc --- /dev/null +++ b/site/public/v1/games/hot-shot/index.json @@ -0,0 +1,25 @@ +{ + "id": 69570, + "slug": "hot-shot", + "name": "Hot Shot", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q128014888" + ], + "created_at": "2026-07-10T10:10:19.503058", + "updated_at": "2026-07-10T10:10:19.503058", + "url": "/v1/games/hot-shot" +} diff --git a/site/public/v1/games/hotline-miami-collection/index.json b/site/public/v1/games/hotline-miami-collection/index.json new file mode 100644 index 000000000000..659fa6c8a307 --- /dev/null +++ b/site/public/v1/games/hotline-miami-collection/index.json @@ -0,0 +1,25 @@ +{ + "id": 69712, + "slug": "hotline-miami-collection", + "name": "Hotline Miami Collection", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125208073" + ], + "created_at": "2026-07-10T10:10:19.555554", + "updated_at": "2026-07-10T10:10:19.555554", + "url": "/v1/games/hotline-miami-collection" +} diff --git a/site/public/v1/games/howl-q116873461/index.json b/site/public/v1/games/howl-q116873461/index.json new file mode 100644 index 000000000000..71b2ed7f45ba --- /dev/null +++ b/site/public/v1/games/howl-q116873461/index.json @@ -0,0 +1,29 @@ +{ + "id": 69982, + "slug": "howl-q116873461", + "name": "Howl", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "shooter game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116873461" + ], + "created_at": "2026-07-10T10:10:19.660592", + "updated_at": "2026-07-10T10:10:19.660592", + "url": "/v1/games/howl-q116873461" +} diff --git a/site/public/v1/games/human-fall-flat-4-pack/index.json b/site/public/v1/games/human-fall-flat-4-pack/index.json new file mode 100644 index 000000000000..22b59441a317 --- /dev/null +++ b/site/public/v1/games/human-fall-flat-4-pack/index.json @@ -0,0 +1,25 @@ +{ + "id": 70126, + "slug": "human-fall-flat-4-pack", + "name": "Human: Fall Flat 4-Pack", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q78671490" + ], + "created_at": "2026-07-10T10:10:19.702657", + "updated_at": "2026-07-10T10:10:19.702657", + "url": "/v1/games/human-fall-flat-4-pack" +} diff --git a/site/public/v1/games/human-fall-flat-q117357432/index.json b/site/public/v1/games/human-fall-flat-q117357432/index.json new file mode 100644 index 000000000000..8a9a39dcd871 --- /dev/null +++ b/site/public/v1/games/human-fall-flat-q117357432/index.json @@ -0,0 +1,28 @@ +{ + "id": 70127, + "slug": "human-fall-flat-q117357432", + "name": "Human: Fall Flat+", + "release_date": "2023-03-31", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "iPadOS", + "iOS" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117357432" + ], + "created_at": "2026-07-10T10:10:19.702657", + "updated_at": "2026-07-10T10:10:19.702657", + "url": "/v1/games/human-fall-flat-q117357432" +} diff --git a/site/public/v1/games/humankind-cultures-of-africa/index.json b/site/public/v1/games/humankind-cultures-of-africa/index.json new file mode 100644 index 000000000000..70630778c82f --- /dev/null +++ b/site/public/v1/games/humankind-cultures-of-africa/index.json @@ -0,0 +1,31 @@ +{ + "id": 70169, + "slug": "humankind-cultures-of-africa", + "name": "Humankind: Cultures of Africa", + "release_date": "2022-01-20", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "strategy video game" + ], + "stores": [], + "developers": [], + "publishers": [ + "Sega" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110728520" + ], + "created_at": "2026-07-10T10:10:19.714661", + "updated_at": "2026-07-10T10:10:19.714661", + "url": "/v1/games/humankind-cultures-of-africa" +} diff --git a/site/public/v1/games/humble-indie-bundle-2/index.json b/site/public/v1/games/humble-indie-bundle-2/index.json new file mode 100644 index 000000000000..8b060b770239 --- /dev/null +++ b/site/public/v1/games/humble-indie-bundle-2/index.json @@ -0,0 +1,27 @@ +{ + "id": 70190, + "slug": "humble-indie-bundle-2", + "name": "Humble Indie Bundle 2", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Humble Bundle, Inc." + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q41991546" + ], + "created_at": "2026-07-10T10:10:19.720588", + "updated_at": "2026-07-10T10:10:19.720588", + "url": "/v1/games/humble-indie-bundle-2" +} diff --git a/site/public/v1/games/humble-indie-bundle/index.json b/site/public/v1/games/humble-indie-bundle/index.json new file mode 100644 index 000000000000..41fadd1ea722 --- /dev/null +++ b/site/public/v1/games/humble-indie-bundle/index.json @@ -0,0 +1,27 @@ +{ + "id": 70191, + "slug": "humble-indie-bundle", + "name": "Humble Indie Bundle", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Humble Bundle, Inc." + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q41972688" + ], + "created_at": "2026-07-10T10:10:19.720588", + "updated_at": "2026-07-10T10:10:19.720588", + "url": "/v1/games/humble-indie-bundle" +} diff --git a/site/public/v1/games/huniepop-deluxe-edition-upgrade/index.json b/site/public/v1/games/huniepop-deluxe-edition-upgrade/index.json new file mode 100644 index 000000000000..3da71b50345c --- /dev/null +++ b/site/public/v1/games/huniepop-deluxe-edition-upgrade/index.json @@ -0,0 +1,36 @@ +{ + "id": 70279, + "slug": "huniepop-deluxe-edition-upgrade", + "name": "HuniePop - Deluxe Edition Upgrade", + "release_date": "2015-01-19", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "dating sim", + "erotic video game", + "match-three video game" + ], + "stores": [], + "developers": [ + "HuniePotDev" + ], + "publishers": [ + "HuniePotDev" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q78162382" + ], + "created_at": "2026-07-10T10:10:19.745290", + "updated_at": "2026-07-10T10:10:19.745290", + "url": "/v1/games/huniepop-deluxe-edition-upgrade" +} diff --git a/site/public/v1/games/huniepop-deluxe-edition/index.json b/site/public/v1/games/huniepop-deluxe-edition/index.json new file mode 100644 index 000000000000..8428b8031621 --- /dev/null +++ b/site/public/v1/games/huniepop-deluxe-edition/index.json @@ -0,0 +1,36 @@ +{ + "id": 70280, + "slug": "huniepop-deluxe-edition", + "name": "HuniePop Deluxe Edition", + "release_date": "2018-11-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "dating sim", + "erotic video game", + "match-three video game" + ], + "stores": [], + "developers": [ + "HuniePotDev" + ], + "publishers": [ + "HuniePotDev" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q78163018" + ], + "created_at": "2026-07-10T10:10:19.745290", + "updated_at": "2026-07-10T10:10:19.745290", + "url": "/v1/games/huniepop-deluxe-edition" +} diff --git a/site/public/v1/games/huniepop-official-digital-art-collection/index.json b/site/public/v1/games/huniepop-official-digital-art-collection/index.json new file mode 100644 index 000000000000..b48b32697674 --- /dev/null +++ b/site/public/v1/games/huniepop-official-digital-art-collection/index.json @@ -0,0 +1,36 @@ +{ + "id": 70281, + "slug": "huniepop-official-digital-art-collection", + "name": "HuniePop Official Digital Art Collection", + "release_date": "2015-02-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "dating sim", + "erotic video game", + "match-three video game" + ], + "stores": [], + "developers": [ + "HuniePotDev" + ], + "publishers": [ + "HuniePotDev" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q78162835" + ], + "created_at": "2026-07-10T10:10:19.745290", + "updated_at": "2026-07-10T10:10:19.745290", + "url": "/v1/games/huniepop-official-digital-art-collection" +} diff --git a/site/public/v1/games/hyper-rush/index.json b/site/public/v1/games/hyper-rush/index.json new file mode 100644 index 000000000000..66cdc85c29c6 --- /dev/null +++ b/site/public/v1/games/hyper-rush/index.json @@ -0,0 +1,25 @@ +{ + "id": 70592, + "slug": "hyper-rush", + "name": "HYPER RUSH", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11326118" + ], + "created_at": "2026-07-10T10:10:19.828809", + "updated_at": "2026-07-10T10:10:19.828809", + "url": "/v1/games/hyper-rush" +} diff --git a/site/public/v1/games/hypertext-hotel/index.json b/site/public/v1/games/hypertext-hotel/index.json new file mode 100644 index 000000000000..fd6cf65ffeb7 --- /dev/null +++ b/site/public/v1/games/hypertext-hotel/index.json @@ -0,0 +1,25 @@ +{ + "id": 70730, + "slug": "hypertext-hotel", + "name": "Hypertext Hotel", + "release_date": "1992-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q132197684" + ], + "created_at": "2026-07-10T10:10:19.871248", + "updated_at": "2026-07-10T10:10:19.871248", + "url": "/v1/games/hypertext-hotel" +} diff --git a/site/public/v1/games/i-g-i-origins/index.json b/site/public/v1/games/i-g-i-origins/index.json new file mode 100644 index 000000000000..69d71768a167 --- /dev/null +++ b/site/public/v1/games/i-g-i-origins/index.json @@ -0,0 +1,31 @@ +{ + "id": 71019, + "slug": "i-g-i-origins", + "name": "I.G.I. Origins", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "tactical shooter" + ], + "stores": [], + "developers": [ + "Antimatter Games" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120702822" + ], + "created_at": "2026-07-10T10:10:19.949089", + "updated_at": "2026-07-10T10:10:19.949089", + "url": "/v1/games/i-g-i-origins" +} diff --git a/site/public/v1/games/i-gladiator-kolhid-sword/index.json b/site/public/v1/games/i-gladiator-kolhid-sword/index.json new file mode 100644 index 000000000000..8ea89af5ed1c --- /dev/null +++ b/site/public/v1/games/i-gladiator-kolhid-sword/index.json @@ -0,0 +1,29 @@ +{ + "id": 71021, + "slug": "i-gladiator-kolhid-sword", + "name": "I, Gladiator - Kolhid Sword", + "release_date": "2015-06-02", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Steel Monkeys" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120983437" + ], + "created_at": "2026-07-10T10:10:19.949089", + "updated_at": "2026-07-10T10:10:19.949089", + "url": "/v1/games/i-gladiator-kolhid-sword" +} diff --git a/site/public/v1/games/i-gladiator-soundtracks/index.json b/site/public/v1/games/i-gladiator-soundtracks/index.json new file mode 100644 index 000000000000..8b77aab23a6c --- /dev/null +++ b/site/public/v1/games/i-gladiator-soundtracks/index.json @@ -0,0 +1,29 @@ +{ + "id": 71022, + "slug": "i-gladiator-soundtracks", + "name": "I, Gladiator - Soundtracks", + "release_date": "2015-04-16", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Steel Monkeys" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120983440" + ], + "created_at": "2026-07-10T10:10:19.949089", + "updated_at": "2026-07-10T10:10:19.949089", + "url": "/v1/games/i-gladiator-soundtracks" +} diff --git a/site/public/v1/games/i-just-want-to-be-single-season-one/index.json b/site/public/v1/games/i-just-want-to-be-single-season-one/index.json new file mode 100644 index 000000000000..3acd5525a10a --- /dev/null +++ b/site/public/v1/games/i-just-want-to-be-single-season-one/index.json @@ -0,0 +1,29 @@ +{ + "id": 71066, + "slug": "i-just-want-to-be-single-season-one", + "name": "I Just Want to be Single!! Season One", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "personal computer" + ], + "genres": [ + "dating sim" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q132731625" + ], + "created_at": "2026-07-10T10:10:19.961079", + "updated_at": "2026-07-10T10:10:19.961079", + "url": "/v1/games/i-just-want-to-be-single-season-one" +} diff --git a/site/public/v1/games/i-mode-mo-issyo/index.json b/site/public/v1/games/i-mode-mo-issyo/index.json new file mode 100644 index 000000000000..6361d02bd60c --- /dev/null +++ b/site/public/v1/games/i-mode-mo-issyo/index.json @@ -0,0 +1,25 @@ +{ + "id": 71169, + "slug": "i-mode-mo-issyo", + "name": "i-mode mo issyo", + "release_date": "2001-05-27", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11224979" + ], + "created_at": "2026-07-10T10:10:19.989197", + "updated_at": "2026-07-10T10:10:19.989197", + "url": "/v1/games/i-mode-mo-issyo" +} diff --git a/site/public/v1/games/i-smoke-weed/index.json b/site/public/v1/games/i-smoke-weed/index.json new file mode 100644 index 000000000000..76a36094dd56 --- /dev/null +++ b/site/public/v1/games/i-smoke-weed/index.json @@ -0,0 +1,35 @@ +{ + "id": 71204, + "slug": "i-smoke-weed", + "name": "I smoke weed", + "release_date": "2017-09-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "adventure video game", + "action game", + "casual game" + ], + "stores": [], + "developers": [ + "PinkySwear" + ], + "publishers": [ + "PinkySwear" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130320120" + ], + "created_at": "2026-07-10T10:10:19.999117", + "updated_at": "2026-07-10T10:10:19.999117", + "url": "/v1/games/i-smoke-weed" +} diff --git a/site/public/v1/games/i-will-be-there-demo/index.json b/site/public/v1/games/i-will-be-there-demo/index.json new file mode 100644 index 000000000000..261249d3949a --- /dev/null +++ b/site/public/v1/games/i-will-be-there-demo/index.json @@ -0,0 +1,35 @@ +{ + "id": 71277, + "slug": "i-will-be-there-demo", + "name": "I Will Be There Demo", + "release_date": "2022-07-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "role-playing video game", + "zombie video game" + ], + "stores": [], + "developers": [ + "Tayfun Tuna" + ], + "publishers": [ + "Tayfun Tuna" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122912569" + ], + "created_at": "2026-07-10T10:10:20.018713", + "updated_at": "2026-07-10T10:10:20.018713", + "url": "/v1/games/i-will-be-there-demo" +} diff --git a/site/public/v1/games/i-will-be-there-original-soundtrack/index.json b/site/public/v1/games/i-will-be-there-original-soundtrack/index.json new file mode 100644 index 000000000000..024dcbcbefa0 --- /dev/null +++ b/site/public/v1/games/i-will-be-there-original-soundtrack/index.json @@ -0,0 +1,30 @@ +{ + "id": 71278, + "slug": "i-will-be-there-original-soundtrack", + "name": "I WILL BE THERE - Original Soundtrack", + "release_date": "2023-02-14", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "video game music" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122902689" + ], + "created_at": "2026-07-10T10:10:20.019763", + "updated_at": "2026-07-10T10:10:20.019763", + "url": "/v1/games/i-will-be-there-original-soundtrack" +} diff --git a/site/public/v1/games/i-will-be-there-ost-edition/index.json b/site/public/v1/games/i-will-be-there-ost-edition/index.json new file mode 100644 index 000000000000..6cec54fe76f3 --- /dev/null +++ b/site/public/v1/games/i-will-be-there-ost-edition/index.json @@ -0,0 +1,35 @@ +{ + "id": 71279, + "slug": "i-will-be-there-ost-edition", + "name": "I WILL BE THERE - OST Edition", + "release_date": "2023-02-15", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "role-playing video game", + "zombie video game" + ], + "stores": [], + "developers": [ + "Tayfun Tuna" + ], + "publishers": [ + "Tayfun Tuna" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122912653" + ], + "created_at": "2026-07-10T10:10:20.019763", + "updated_at": "2026-07-10T10:10:20.019763", + "url": "/v1/games/i-will-be-there-ost-edition" +} diff --git a/site/public/v1/games/icewind-dale-heart-of-winter-trials-of-the-luremaster/index.json b/site/public/v1/games/icewind-dale-heart-of-winter-trials-of-the-luremaster/index.json new file mode 100644 index 000000000000..c9ff604a9525 --- /dev/null +++ b/site/public/v1/games/icewind-dale-heart-of-winter-trials-of-the-luremaster/index.json @@ -0,0 +1,25 @@ +{ + "id": 71430, + "slug": "icewind-dale-heart-of-winter-trials-of-the-luremaster", + "name": "Icewind Dale: Heart of Winter - Trials of the Luremaster", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120885570" + ], + "created_at": "2026-07-10T10:10:20.059503", + "updated_at": "2026-07-10T10:10:20.059503", + "url": "/v1/games/icewind-dale-heart-of-winter-trials-of-the-luremaster" +} diff --git a/site/public/v1/games/icewind-dale-heart-of-winter/index.json b/site/public/v1/games/icewind-dale-heart-of-winter/index.json new file mode 100644 index 000000000000..c468f869d088 --- /dev/null +++ b/site/public/v1/games/icewind-dale-heart-of-winter/index.json @@ -0,0 +1,33 @@ +{ + "id": 71431, + "slug": "icewind-dale-heart-of-winter", + "name": "Icewind Dale: Heart of Winter", + "release_date": "2001-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "role-playing video game" + ], + "stores": [], + "developers": [ + "Black Isle Studios" + ], + "publishers": [ + "Interplay Entertainment" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2634084" + ], + "created_at": "2026-07-10T10:10:20.059503", + "updated_at": "2026-07-10T10:10:20.059503", + "url": "/v1/games/icewind-dale-heart-of-winter" +} diff --git a/site/public/v1/games/il-2-sturmovik-1946/index.json b/site/public/v1/games/il-2-sturmovik-1946/index.json new file mode 100644 index 000000000000..b15adef8ca6e --- /dev/null +++ b/site/public/v1/games/il-2-sturmovik-1946/index.json @@ -0,0 +1,31 @@ +{ + "id": 71860, + "slug": "il-2-sturmovik-1946", + "name": "IL-2 Sturmovik: 1946", + "release_date": "2006-12-08", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "combat flight simulator game" + ], + "stores": [], + "developers": [ + "1C Company" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5971671" + ], + "created_at": "2026-07-10T10:10:20.175580", + "updated_at": "2026-07-10T10:10:20.175580", + "url": "/v1/games/il-2-sturmovik-1946" +} diff --git a/site/public/v1/games/il-2-sturmovik-forgotten-battles-ace-expansion-pack/index.json b/site/public/v1/games/il-2-sturmovik-forgotten-battles-ace-expansion-pack/index.json new file mode 100644 index 000000000000..3ec49c369a11 --- /dev/null +++ b/site/public/v1/games/il-2-sturmovik-forgotten-battles-ace-expansion-pack/index.json @@ -0,0 +1,25 @@ +{ + "id": 71865, + "slug": "il-2-sturmovik-forgotten-battles-ace-expansion-pack", + "name": "IL-2 Sturmovik: Forgotten Battles - Ace Expansion Pack", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60677555" + ], + "created_at": "2026-07-10T10:10:20.176532", + "updated_at": "2026-07-10T10:10:20.176532", + "url": "/v1/games/il-2-sturmovik-forgotten-battles-ace-expansion-pack" +} diff --git a/site/public/v1/games/imperial-saga/index.json b/site/public/v1/games/imperial-saga/index.json new file mode 100644 index 000000000000..20e94b5d4c29 --- /dev/null +++ b/site/public/v1/games/imperial-saga/index.json @@ -0,0 +1,25 @@ +{ + "id": 72153, + "slug": "imperial-saga", + "name": "Imperial SaGa", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22127610" + ], + "created_at": "2026-07-10T10:10:20.254584", + "updated_at": "2026-07-10T10:10:20.254584", + "url": "/v1/games/imperial-saga" +} diff --git a/site/public/v1/games/in-harm-s-way-q17513624/index.json b/site/public/v1/games/in-harm-s-way-q17513624/index.json new file mode 100644 index 000000000000..045b81b52b51 --- /dev/null +++ b/site/public/v1/games/in-harm-s-way-q17513624/index.json @@ -0,0 +1,27 @@ +{ + "id": 72310, + "slug": "in-harm-s-way-q17513624", + "name": "In Harm's Way", + "release_date": "2014-05-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 4" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17513624" + ], + "created_at": "2026-07-10T10:10:20.297612", + "updated_at": "2026-07-10T10:10:20.297612", + "url": "/v1/games/in-harm-s-way-q17513624" +} diff --git a/site/public/v1/games/in-the-valley-of-gods/index.json b/site/public/v1/games/in-the-valley-of-gods/index.json new file mode 100644 index 000000000000..f30a0479674e --- /dev/null +++ b/site/public/v1/games/in-the-valley-of-gods/index.json @@ -0,0 +1,34 @@ +{ + "id": 72417, + "slug": "in-the-valley-of-gods", + "name": "In the Valley of Gods", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "adventure video game" + ], + "stores": [], + "developers": [ + "Campo Santo" + ], + "publishers": [ + "Campo Santo" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q55662705" + ], + "created_at": "2026-07-10T10:10:20.326533", + "updated_at": "2026-07-10T10:10:20.326533", + "url": "/v1/games/in-the-valley-of-gods" +} diff --git a/site/public/v1/games/inazuma-eleven-1-2-3-end-mamoru-densetsu/index.json b/site/public/v1/games/inazuma-eleven-1-2-3-end-mamoru-densetsu/index.json new file mode 100644 index 000000000000..801a484d4f3b --- /dev/null +++ b/site/public/v1/games/inazuma-eleven-1-2-3-end-mamoru-densetsu/index.json @@ -0,0 +1,34 @@ +{ + "id": 72458, + "slug": "inazuma-eleven-1-2-3-end-mamoru-densetsu", + "name": "Inazuma Eleven 1-2-3!! Endō Mamoru densetsu", + "release_date": "2012-12-27", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Nintendo 3DS" + ], + "genres": [ + "role-playing video game", + "association football video game" + ], + "stores": [], + "developers": [ + "Level-5" + ], + "publishers": [ + "Level-5" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q539763" + ], + "created_at": "2026-07-10T10:10:20.337603", + "updated_at": "2026-07-10T10:10:20.337603", + "url": "/v1/games/inazuma-eleven-1-2-3-end-mamoru-densetsu" +} diff --git a/site/public/v1/games/incubation-mission-pack/index.json b/site/public/v1/games/incubation-mission-pack/index.json new file mode 100644 index 000000000000..1f2645fdc12a --- /dev/null +++ b/site/public/v1/games/incubation-mission-pack/index.json @@ -0,0 +1,25 @@ +{ + "id": 72585, + "slug": "incubation-mission-pack", + "name": "Incubation: Mission Pack", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q129196946" + ], + "created_at": "2026-07-10T10:10:20.370820", + "updated_at": "2026-07-10T10:10:20.370820", + "url": "/v1/games/incubation-mission-pack" +} diff --git a/site/public/v1/games/index.json b/site/public/v1/games/index.json index 6f4994a1fce0..a1679e177047 100644 --- a/site/public/v1/games/index.json +++ b/site/public/v1/games/index.json @@ -1,5 +1,5 @@ { - "count": 168883, + "count": 175683, "results": [ { "slug": "fishy", @@ -201,6 +201,11 @@ "name": "$1 Ride", "url": "/v1/games/1-ride" }, + { + "slug": "100-000-pyramid-demo", + "name": "$100,000 Pyramid demo", + "url": "/v1/games/100-000-pyramid-demo" + }, { "slug": "derby-stallion-q115616057", "name": "''DERBY STALLION''", @@ -271,6 +276,11 @@ "name": "'n Verlore Verstand", "url": "/v1/games/n-verlore-verstand" }, + { + "slug": "ramming-santa", + "name": "'ramming Santa", + "url": "/v1/games/ramming-santa" + }, { "slug": "dis-assemble", "name": "(Dis)assemble", @@ -1061,6 +1071,31 @@ "name": "10 Cent Classics: Shady Pack", "url": "/v1/games/10-cent-classics-shady-pack" }, + { + "slug": "10-computer-hits", + "name": "10 Computer Hits", + "url": "/v1/games/10-computer-hits" + }, + { + "slug": "10-computer-hits-2", + "name": "10 Computer Hits 2", + "url": "/v1/games/10-computer-hits-2" + }, + { + "slug": "10-computer-hits-3", + "name": "10 Computer Hits 3", + "url": "/v1/games/10-computer-hits-3" + }, + { + "slug": "10-computer-hits-4", + "name": "10 Computer Hits 4", + "url": "/v1/games/10-computer-hits-4" + }, + { + "slug": "10-computer-hits-5", + "name": "10 Computer Hits 5", + "url": "/v1/games/10-computer-hits-5" + }, { "slug": "10-days-under-the-sea", "name": "10 Days Under the Sea", @@ -1181,6 +1216,26 @@ "name": "10 Gnomes in Venice", "url": "/v1/games/10-gnomes-in-venice" }, + { + "slug": "10-great-games", + "name": "10 Great Games", + "url": "/v1/games/10-great-games" + }, + { + "slug": "10-intelligent-strategy-games", + "name": "10 Intelligent Strategy Games", + "url": "/v1/games/10-intelligent-strategy-games" + }, + { + "slug": "10-megahits-vol-2", + "name": "10 Megahits Vol 2", + "url": "/v1/games/10-megahits-vol-2" + }, + { + "slug": "10-megahits-vol-3", + "name": "10 Megahits Vol 3", + "url": "/v1/games/10-megahits-vol-3" + }, { "slug": "10-miles-to-safety", "name": "10 Miles To Safety", @@ -1446,6 +1501,11 @@ "name": "100 Berlin Cats", "url": "/v1/games/100-berlin-cats" }, + { + "slug": "100-bullets", + "name": "100 Bullets", + "url": "/v1/games/100-bullets" + }, { "slug": "100-caliber-dash", "name": "100 Caliber Dash", @@ -3016,6 +3076,11 @@ "name": "1166", "url": "/v1/games/1166" }, + { + "slug": "1171", + "name": "1171", + "url": "/v1/games/1171" + }, { "slug": "11f", "name": "11F", @@ -3196,6 +3261,11 @@ "name": "12 bananas", "url": "/v1/games/12-bananas" }, + { + "slug": "12-is-better-than-6-the-apostles", + "name": "12 is Better Than 6: The Apostles", + "url": "/v1/games/12-is-better-than-6-the-apostles" + }, { "slug": "12-locks-and-keys", "name": "12 locks and keys", @@ -3396,6 +3466,11 @@ "name": "1428: Shadows over Silesia", "url": "/v1/games/1428-shadows-over-silesia" }, + { + "slug": "1428-shadows-over-silesia-tourney-at-the-bear-rock", + "name": "1428: Shadows over Silesia - Tourney at the Bear Rock", + "url": "/v1/games/1428-shadows-over-silesia-tourney-at-the-bear-rock" + }, { "slug": "1453-1821-the-coming-of-liberation", "name": "1453–1821: The Coming of Liberation", @@ -3521,11 +3596,21 @@ "name": "16 Ways to Kill a Vampire at McDonalds", "url": "/v1/games/16-ways-to-kill-a-vampire-at-mcdonalds" }, + { + "slug": "16-bit-collection-data-east-vol-1", + "name": "16-Bit Collection: Data East Vol. 1", + "url": "/v1/games/16-bit-collection-data-east-vol-1" + }, { "slug": "16-bit-soccer", "name": "16-Bit Soccer", "url": "/v1/games/16-bit-soccer" }, + { + "slug": "1602-a-d-by-royal-command", + "name": "1602 A.D.: By Royal Command", + "url": "/v1/games/1602-a-d-by-royal-command" + }, { "slug": "1630-the-thirty-years-war", "name": "1630 - The Thirty Years' War", @@ -3606,6 +3691,11 @@ "name": "17.waves TD", "url": "/v1/games/17-waves-td" }, + { + "slug": "1701-a-d-gold-edition", + "name": "1701 A.D. Gold Edition", + "url": "/v1/games/1701-a-d-gold-edition" + }, { "slug": "171", "name": "171", @@ -4196,6 +4286,11 @@ "name": "1px", "url": "/v1/games/1px" }, + { + "slug": "1st-cd-edition", + "name": "1st CD Edition", + "url": "/v1/games/1st-cd-edition" + }, { "slug": "1st-degree-murder-mystery-bl-yaoi-vn-updated-demo", "name": "1st Degree: Murder-Mystery BL/Yaoi VN [UPDATED DEMO]", @@ -4286,6 +4381,11 @@ "name": "2 Planets Fire and Ice", "url": "/v1/games/2-planets-fire-and-ice" }, + { + "slug": "2-por-1-basketball-two-on-two-star-raiders-ii", + "name": "2 Por 1 - Basketball Two-On-Two + Star Raiders II", + "url": "/v1/games/2-por-1-basketball-two-on-two-star-raiders-ii" + }, { "slug": "2-spicy", "name": "2 Spicy", @@ -4321,6 +4421,11 @@ "name": "2-Headed Boy", "url": "/v1/games/2-headed-boy" }, + { + "slug": "2-hot-2-handle", + "name": "2-Hot 2-Handle", + "url": "/v1/games/2-hot-2-handle" + }, { "slug": "2-bit-cowboy", "name": "2-bit Cowboy", @@ -4356,6 +4461,11 @@ "name": "20 Small Mazes", "url": "/v1/games/20-small-mazes" }, + { + "slug": "20-em-1", + "name": "20 em 1", + "url": "/v1/games/20-em-1" + }, { "slug": "20-000-leagues-above-the-clouds", "name": "20,000 Leagues Above the Clouds", @@ -4476,6 +4586,11 @@ "name": "2017 VR", "url": "/v1/games/2017-vr" }, + { + "slug": "2018-fifa-world-cup", + "name": "2018 FIFA World Cup", + "url": "/v1/games/2018-fifa-world-cup" + }, { "slug": "2020-super-baseball", "name": "2020 Super Baseball", @@ -5281,6 +5396,11 @@ "name": "3 in 1 College & Pro Football", "url": "/v1/games/3-in-1-college-pro-football" }, + { + "slug": "3-in-1-supergun", + "name": "3 in 1 Supergun", + "url": "/v1/games/3-in-1-supergun" + }, { "slug": "3-in-three", "name": "3 in Three", @@ -5451,6 +5571,11 @@ "name": "30 Days Another", "url": "/v1/games/30-days-another" }, + { + "slug": "30-days-until-wedding-bells", + "name": "30 Days Until Wedding Bells", + "url": "/v1/games/30-days-until-wedding-bells" + }, { "slug": "30-days-of-tower", "name": "30 Days of Tower", @@ -5536,6 +5661,11 @@ "name": "301 Warriors", "url": "/v1/games/301-warriors" }, + { + "slug": "303-game-collection", + "name": "303 Game Collection", + "url": "/v1/games/303-game-collection" + }, { "slug": "303-squadron-battle-of-britain", "name": "303 Squadron: Battle of Britain", @@ -5776,6 +5906,11 @@ "name": "3D Billiards - Pool & Snooker", "url": "/v1/games/3d-billiards-pool-snooker" }, + { + "slug": "3d-biohazard-skull-theme", + "name": "3D Biohazard Skull Theme", + "url": "/v1/games/3d-biohazard-skull-theme" + }, { "slug": "3d-block-out", "name": "3D Block Out", @@ -6561,6 +6696,11 @@ "name": "3DDX", "url": "/v1/games/3ddx" }, + { + "slug": "3dge", + "name": "3DGE", + "url": "/v1/games/3dge" + }, { "slug": "3drpg", "name": "3DRPG", @@ -6801,11 +6941,21 @@ "name": "4 Months of You", "url": "/v1/games/4-months-of-you" }, + { + "slug": "4-most-super-sports", + "name": "4 Most Super Sports", + "url": "/v1/games/4-most-super-sports" + }, { "slug": "4-nin-uchi-mahjong", "name": "4 Nin Uchi Mahjong", "url": "/v1/games/4-nin-uchi-mahjong" }, + { + "slug": "4-pak-all-action", + "name": "4 PAK All Action", + "url": "/v1/games/4-pak-all-action" + }, { "slug": "4-pics-1-word", "name": "4 Pics 1 Word", @@ -6921,6 +7071,11 @@ "name": "40 Winks", "url": "/v1/games/40-winks" }, + { + "slug": "400-days", + "name": "400 Days", + "url": "/v1/games/400-days" + }, { "slug": "400-years", "name": "400 Years", @@ -7271,6 +7426,11 @@ "name": "5 A Day Adventures", "url": "/v1/games/5-a-day-adventures" }, + { + "slug": "5-arcade-gems", + "name": "5 Arcade Gems", + "url": "/v1/games/5-arcade-gems" + }, { "slug": "5-bucks-for-the-bus", "name": "5 Bucks for the Bus", @@ -7451,6 +7611,11 @@ "name": "50 Floors: The Paranormal Investigators Prologue", "url": "/v1/games/50-floors-the-paranormal-investigators-prologue" }, + { + "slug": "50-great-games-q114340981", + "name": "50 Great Games", + "url": "/v1/games/50-great-games-q114340981" + }, { "slug": "50-great-games", "name": "50 Great Games", @@ -7676,6 +7841,11 @@ "name": "6-Mon Adventure", "url": "/v1/games/6-mon-adventure" }, + { + "slug": "6-pak", + "name": "6-Pak", + "url": "/v1/games/6-pak" + }, { "slug": "6-sided-stories", "name": "6-Sided Stories", @@ -8061,6 +8231,11 @@ "name": "7 Mages", "url": "/v1/games/7-mages" }, + { + "slug": "7-meters-away-wallpaper", + "name": "7 Meters away - Wallpaper", + "url": "/v1/games/7-meters-away-wallpaper" + }, { "slug": "7-meters-away-oscar-and-the-cell-of-the-soul", "name": "7 Meters away. Oscar and the Cell of the Soul", @@ -8396,6 +8571,11 @@ "name": "7th Sign Project Playtest", "url": "/v1/games/7th-sign-project-playtest" }, + { + "slug": "7th-street", + "name": "7th Street", + "url": "/v1/games/7th-street" + }, { "slug": "8", "name": "8", @@ -8496,6 +8676,11 @@ "name": "8-Bit Armies: Arena", "url": "/v1/games/8-bit-armies-arena" }, + { + "slug": "8-bit-armies-guardians-campaign", + "name": "8-Bit Armies: Guardians Campaign", + "url": "/v1/games/8-bit-armies-guardians-campaign" + }, { "slug": "8-bit-attack", "name": "8-Bit Attack", @@ -8521,6 +8706,11 @@ "name": "8-Bit Invaders!", "url": "/v1/games/8-bit-invaders" }, + { + "slug": "8-bit-is-enough", + "name": "8-Bit Is Enough", + "url": "/v1/games/8-bit-is-enough" + }, { "slug": "8-bit-rebellion", "name": "8-Bit Rebellion!", @@ -8681,11 +8871,21 @@ "name": "89: La Revolution Francaise", "url": "/v1/games/89-la-revolution-francaise" }, + { + "slug": "8-11-demo", + "name": "8:11 (Demo)", + "url": "/v1/games/8-11-demo" + }, { "slug": "8-46", "name": "8:46", "url": "/v1/games/8-46" }, + { + "slug": "8-d-3", + "name": "8=D~<3", + "url": "/v1/games/8-d-3" + }, { "slug": "8alloween", "name": "8ALLOWEEN", @@ -9531,6 +9731,11 @@ "name": "A Castle Full of Cats", "url": "/v1/games/a-castle-full-of-cats" }, + { + "slug": "a-castle-full-of-cats-bag-of-treats", + "name": "A Castle Full of Cats: Bag of Treats", + "url": "/v1/games/a-castle-full-of-cats-bag-of-treats" + }, { "slug": "a-cat-his-boy", "name": "A Cat & His Boy", @@ -9676,16 +9881,31 @@ "name": "A Clockwork Ley-Line: The Borderline of Dusk", "url": "/v1/games/a-clockwork-ley-line-the-borderline-of-dusk" }, + { + "slug": "a-closed-world", + "name": "A Closed World", + "url": "/v1/games/a-closed-world" + }, { "slug": "a-clumsy-flight", "name": "A Clumsy Flight", "url": "/v1/games/a-clumsy-flight" }, + { + "slug": "a-collection-of-activision-classic-games-for-the-atari-2600", + "name": "A Collection of Activision Classic Games for the Atari 2600", + "url": "/v1/games/a-collection-of-activision-classic-games-for-the-atari-2600" + }, { "slug": "a-collection-of-bad-moments", "name": "A Collection of Bad Moments", "url": "/v1/games/a-collection-of-bad-moments" }, + { + "slug": "a-collection-of-intellivision-classic-games", + "name": "A Collection of Intellivision Classic Games", + "url": "/v1/games/a-collection-of-intellivision-classic-games" + }, { "slug": "a-collection-of-mini-games", "name": "A Collection of Mini-Games", @@ -9756,6 +9976,11 @@ "name": "A Crown of Thorns", "url": "/v1/games/a-crown-of-thorns" }, + { + "slug": "a-cup-of-tea", + "name": "A Cup of Tea", + "url": "/v1/games/a-cup-of-tea" + }, { "slug": "a-cure-for-jessica", "name": "A Cure for Jessica", @@ -10166,6 +10391,11 @@ "name": "A Fine Mess", "url": "/v1/games/a-fine-mess" }, + { + "slug": "a-fine-night", + "name": "A Fine Night", + "url": "/v1/games/a-fine-night" + }, { "slug": "a-firm-handshake", "name": "A Firm Handshake", @@ -10521,6 +10751,11 @@ "name": "A Good Truck Driver", "url": "/v1/games/a-good-truck-driver" }, + { + "slug": "a-google-a-day", + "name": "A Google A Day", + "url": "/v1/games/a-google-a-day" + }, { "slug": "a-gorilla-vs-100-men-simulator", "name": "A Gorilla vs 100 Men Simulator", @@ -10606,6 +10841,21 @@ "name": "A Hat in Time", "url": "/v1/games/a-hat-in-time" }, + { + "slug": "a-hat-in-time-nyakuza-metro", + "name": "A Hat in Time - Nyakuza Metro", + "url": "/v1/games/a-hat-in-time-nyakuza-metro" + }, + { + "slug": "a-hat-in-time-nyakuza-metro-online-party", + "name": "A Hat in Time - Nyakuza Metro + Online Party", + "url": "/v1/games/a-hat-in-time-nyakuza-metro-online-party" + }, + { + "slug": "a-hat-in-time-seal-the-deal", + "name": "A Hat in Time - Seal the Deal", + "url": "/v1/games/a-hat-in-time-seal-the-deal" + }, { "slug": "a-haunting-witching-hour", "name": "A Haunting : Witching Hour", @@ -10686,6 +10936,11 @@ "name": "A Hot Springs Vacation with my Married Office Lady Superior", "url": "/v1/games/a-hot-springs-vacation-with-my-married-office-lady-superior" }, + { + "slug": "a-house-divided", + "name": "A House Divided", + "url": "/v1/games/a-house-divided" + }, { "slug": "a-house-for-alesa-remake", "name": "A House for Alesa Remake", @@ -11186,6 +11441,11 @@ "name": "A Mazing Cheesesnake", "url": "/v1/games/a-mazing-cheesesnake" }, + { + "slug": "a-meadow-of-opal", + "name": "A Meadow of Opal", + "url": "/v1/games/a-meadow-of-opal" + }, { "slug": "a-memoir-blue", "name": "A Memoir Blue", @@ -11216,6 +11476,11 @@ "name": "A Midsummer Night's Choice", "url": "/v1/games/a-midsummer-night-s-choice" }, + { + "slug": "a-midsummer-night-s-choice-commentary-track", + "name": "A Midsummer Night's Choice - Commentary Track", + "url": "/v1/games/a-midsummer-night-s-choice-commentary-track" + }, { "slug": "a-million-conquests", "name": "A Million Conquests", @@ -11376,11 +11641,21 @@ "name": "A Nest for Us", "url": "/v1/games/a-nest-for-us" }, + { + "slug": "a-new-accord", + "name": "A New Accord", + "url": "/v1/games/a-new-accord" + }, { "slug": "a-new-beginning", "name": "A New Beginning", "url": "/v1/games/a-new-beginning" }, + { + "slug": "a-new-day", + "name": "A New Day", + "url": "/v1/games/a-new-day" + }, { "slug": "a-new-leaf-memories", "name": "A New Leaf: Memories", @@ -12681,6 +12956,21 @@ "name": "A Top-Down Job: Blood Gain", "url": "/v1/games/a-top-down-job-blood-gain" }, + { + "slug": "a-total-war-saga-troy-mythos", + "name": "A Total War Saga : Troy - Mythos", + "url": "/v1/games/a-total-war-saga-troy-mythos" + }, + { + "slug": "a-total-war-saga-troy-rhesus-memnon", + "name": "A Total War Saga : Troy - Rhesus & Memnon", + "url": "/v1/games/a-total-war-saga-troy-rhesus-memnon" + }, + { + "slug": "a-total-war-saga-thrones-of-britannia-blood-sweat-and-spears", + "name": "A Total War Saga: THRONES OF BRITANNIA - Blood, Sweat and Spears", + "url": "/v1/games/a-total-war-saga-thrones-of-britannia-blood-sweat-and-spears" + }, { "slug": "a-totally-legal-archaeology-adventure", "name": "A Totally Legal Archaeology Adventure", @@ -13091,6 +13381,11 @@ "name": "A Wizard's Wool", "url": "/v1/games/a-wizard-s-wool" }, + { + "slug": "a-wolf-or-other", + "name": "A Wolf Or Other", + "url": "/v1/games/a-wolf-or-other" + }, { "slug": "a-wolf-in-autumn", "name": "A Wolf in Autumn", @@ -13401,6 +13696,31 @@ "name": "A-10 VR", "url": "/v1/games/a-10-vr" }, + { + "slug": "a-10c-advanced-aircraft-training-qualification-campaign", + "name": "A-10C: Advanced Aircraft Training Qualification Campaign", + "url": "/v1/games/a-10c-advanced-aircraft-training-qualification-campaign" + }, + { + "slug": "a-10c-basic-flight-training-campaign", + "name": "A-10C: Basic Flight Training Campaign", + "url": "/v1/games/a-10c-basic-flight-training-campaign" + }, + { + "slug": "a-10c-red-flag-campaign", + "name": "A-10C: Red Flag Campaign", + "url": "/v1/games/a-10c-red-flag-campaign" + }, + { + "slug": "a-10c-stone-shield-campaign", + "name": "A-10C: Stone Shield Campaign", + "url": "/v1/games/a-10c-stone-shield-campaign" + }, + { + "slug": "a-10c-tactical-training-qualification-campaign", + "name": "A-10C: Tactical Training Qualification Campaign", + "url": "/v1/games/a-10c-tactical-training-qualification-campaign" + }, { "slug": "a-escape-vr", "name": "A-Escape VR", @@ -13471,6 +13791,11 @@ "name": "A-Star Theft", "url": "/v1/games/a-star-theft" }, + { + "slug": "a-team", + "name": "A-Team", + "url": "/v1/games/a-team" + }, { "slug": "a-tech-cybernetic-vr", "name": "A-Tech Cybernetic VR", @@ -13496,6 +13821,11 @@ "name": "A-Train", "url": "/v1/games/a-train" }, + { + "slug": "a-train-construction-set-q56033870", + "name": "A-Train + Construction Set", + "url": "/v1/games/a-train-construction-set-q56033870" + }, { "slug": "a-train-3d-city-simulator", "name": "A-Train 3D : City Simulator", @@ -13521,6 +13851,11 @@ "name": "A-Train 9 V5.0 : Japan Train Simulator Ultimate Edition", "url": "/v1/games/a-train-9-v5-0-japan-train-simulator-ultimate-edition" }, + { + "slug": "a-train-construction-set", + "name": "A-Train Construction Set", + "url": "/v1/games/a-train-construction-set" + }, { "slug": "a-train-ds", "name": "A-Train DS", @@ -13761,6 +14096,11 @@ "name": "A.W.O.L.", "url": "/v1/games/a-w-o-l" }, + { + "slug": "a-b-street", + "name": "A/B Street", + "url": "/v1/games/a-b-street" + }, { "slug": "a-x-101", "name": "A/X-101", @@ -13956,6 +14296,11 @@ "name": "ABC: Audioreactive Beat Circle", "url": "/v1/games/abc-audioreactive-beat-circle" }, + { + "slug": "abc-audioreactive-beat-circle-premium-edition", + "name": "ABC: Audioreactive Beat Circle - Premium Edition", + "url": "/v1/games/abc-audioreactive-beat-circle-premium-edition" + }, { "slug": "abcgames", "name": "ABCgames", @@ -14061,6 +14406,26 @@ "name": "AC/DC Live: Rock Band Track Pack", "url": "/v1/games/ac-dc-live-rock-band-track-pack" }, + { + "slug": "aca-neogeo-selection-vol-1", + "name": "ACA NEOGEO Selection Vol. 1", + "url": "/v1/games/aca-neogeo-selection-vol-1" + }, + { + "slug": "aca-neogeo-selection-vol-2", + "name": "ACA NEOGEO Selection Vol. 2", + "url": "/v1/games/aca-neogeo-selection-vol-2" + }, + { + "slug": "aca-neogeo-selection-vol-3", + "name": "ACA NEOGEO Selection Vol. 3", + "url": "/v1/games/aca-neogeo-selection-vol-3" + }, + { + "slug": "aca-neogeo-selection-vol-4", + "name": "ACA NEOGEO Selection Vol. 4", + "url": "/v1/games/aca-neogeo-selection-vol-4" + }, { "slug": "acb-total-2010-2011", "name": "ACB Total 2010/2011", @@ -14201,6 +14566,11 @@ "name": "AD BLOCKER: An Action Puzzle Game", "url": "/v1/games/ad-blocker-an-action-puzzle-game" }, + { + "slug": "ad-d-masterpiece-collection", + "name": "AD&D Masterpiece Collection", + "url": "/v1/games/ad-d-masterpiece-collection" + }, { "slug": "ada-tainted-soil", "name": "ADA: Tainted Soil", @@ -14391,6 +14761,11 @@ "name": "ADIOS Amigos: Galactic Explorers", "url": "/v1/games/adios-amigos-galactic-explorers" }, + { + "slug": "adk-tamashii", + "name": "ADK Tamashii", + "url": "/v1/games/adk-tamashii" + }, { "slug": "adk-world", "name": "ADK World", @@ -14461,6 +14836,11 @@ "name": "ADW: A Villain's Heart", "url": "/v1/games/adw-a-villain-s-heart" }, + { + "slug": "adoom", + "name": "ADoom", + "url": "/v1/games/adoom" + }, { "slug": "adventure-lib", "name": "ADventure Lib", @@ -15031,6 +15411,11 @@ "name": "AI War: Fleet Command", "url": "/v1/games/ai-war-fleet-command" }, + { + "slug": "ai-war-vengeance-of-the-machine", + "name": "AI War: Vengeance of the Machine", + "url": "/v1/games/ai-war-vengeance-of-the-machine" + }, { "slug": "ai-syoujyo", "name": "AI*Syoujyo", @@ -15461,6 +15846,11 @@ "name": "ALONE", "url": "/v1/games/alone" }, + { + "slug": "alone-free", + "name": "ALONE (Free)", + "url": "/v1/games/alone-free" + }, { "slug": "alone-in-space", "name": "ALONE IN SPACE", @@ -16136,6 +16526,11 @@ "name": "APT. 407", "url": "/v1/games/apt-407" }, + { + "slug": "aq", + "name": "AQ", + "url": "/v1/games/aq" + }, { "slug": "aqra-tenses-learn-english", "name": "AQRA Tenses [Learn English]", @@ -16456,6 +16851,21 @@ "name": "ARK and ADE", "url": "/v1/games/ark-and-ade" }, + { + "slug": "ark-aberration", + "name": "ARK: Aberration", + "url": "/v1/games/ark-aberration" + }, + { + "slug": "ark-extinction", + "name": "ARK: Extinction", + "url": "/v1/games/ark-extinction" + }, + { + "slug": "ark-scorched-earth", + "name": "ARK: Scorched Earth", + "url": "/v1/games/ark-scorched-earth" + }, { "slug": "ark-survival-of-the-fittest", "name": "ARK: Survival Of The Fittest", @@ -16466,6 +16876,11 @@ "name": "ARK: Ultimate Mobile Edition", "url": "/v1/games/ark-ultimate-mobile-edition" }, + { + "slug": "ark-ultimate-survivor-edition", + "name": "ARK: Ultimate Survivor Edition", + "url": "/v1/games/ark-ultimate-survivor-edition" + }, { "slug": "arka-kraya", "name": "ARKA KRAYA", @@ -16496,6 +16911,11 @@ "name": "ARMA 2", "url": "/v1/games/arma-2" }, + { + "slug": "arma-2-operation-arrowhead", + "name": "ARMA 2: Operation Arrowhead", + "url": "/v1/games/arma-2-operation-arrowhead" + }, { "slug": "arma-3", "name": "ARMA 3", @@ -16511,6 +16931,11 @@ "name": "ARMA: Armed Assault", "url": "/v1/games/arma-armed-assault" }, + { + "slug": "arma-queen-s-gambit", + "name": "ARMA: Queen's Gambit", + "url": "/v1/games/arma-queen-s-gambit" + }, { "slug": "armed-decobot", "name": "ARMED DECOBOT", @@ -16611,6 +17036,11 @@ "name": "ARTificial", "url": "/v1/games/artificial" }, + { + "slug": "artigo", + "name": "ARTigo", + "url": "/v1/games/artigo" + }, { "slug": "arvis-knock-out", "name": "ARVIS Knock Out!", @@ -17011,6 +17441,11 @@ "name": "ATAX", "url": "/v1/games/atax" }, + { + "slug": "atb-doom", + "name": "ATB Doom", + "url": "/v1/games/atb-doom" + }, { "slug": "atc-flight-operator", "name": "ATC Flight Operator", @@ -17261,6 +17696,11 @@ "name": "ATV: Quad Kings", "url": "/v1/games/atv-quad-kings" }, + { + "slug": "atv-quad-power-racing-3", + "name": "ATV: Quad Power Racing 3", + "url": "/v1/games/atv-quad-power-racing-3" + }, { "slug": "atv-thunder-ridge-riders", "name": "ATV: Thunder Ridge Riders", @@ -17641,6 +18081,11 @@ "name": "Aabs Animals", "url": "/v1/games/aabs-animals" }, + { + "slug": "aabs-animals-ps-vita-and-ps3-bundle", + "name": "Aabs Animals ('PS Vita' and PS3™) Bundle", + "url": "/v1/games/aabs-animals-ps-vita-and-ps3-bundle" + }, { "slug": "aackobase", "name": "Aackobase", @@ -17716,6 +18161,11 @@ "name": "Aatral Origins", "url": "/v1/games/aatral-origins" }, + { + "slug": "abacus-q104545373", + "name": "Abacus", + "url": "/v1/games/abacus-q104545373" + }, { "slug": "abacus", "name": "Abacus", @@ -17751,6 +18201,11 @@ "name": "Abadox", "url": "/v1/games/abadox" }, + { + "slug": "abaku", + "name": "Abaku", + "url": "/v1/games/abaku" + }, { "slug": "abala-burn", "name": "Abala Burn", @@ -18591,6 +19046,11 @@ "name": "Absolute Canasta for Windows 11", "url": "/v1/games/absolute-canasta-for-windows-11" }, + { + "slug": "absolute-despair-collection", + "name": "Absolute Despair Collection", + "url": "/v1/games/absolute-despair-collection" + }, { "slug": "absolute-doppelkopf-for-windows-11", "name": "Absolute Doppelkopf for Windows 11", @@ -19361,6 +19821,11 @@ "name": "Acceleration of Suguri 2", "url": "/v1/games/acceleration-of-suguri-2" }, + { + "slug": "acceleration-of-suguri-x-edition", + "name": "Acceleration of Suguri X Edition", + "url": "/v1/games/acceleration-of-suguri-x-edition" + }, { "slug": "accelerator", "name": "Accelerator", @@ -19611,6 +20076,21 @@ "name": "Ace Combat 7: Skies Unknown", "url": "/v1/games/ace-combat-7-skies-unknown" }, + { + "slug": "ace-combat-7-skies-unknown-top-gun-maverick-edition", + "name": "Ace Combat 7: Skies Unknown - Top Gun: Maverick Edition", + "url": "/v1/games/ace-combat-7-skies-unknown-top-gun-maverick-edition" + }, + { + "slug": "ace-combat-7-skies-unknown-top-gun-maverick-ultimate-edition", + "name": "Ace Combat 7: Skies Unknown - Top Gun: Maverick Ultimate Edition", + "url": "/v1/games/ace-combat-7-skies-unknown-top-gun-maverick-ultimate-edition" + }, + { + "slug": "ace-combat-7-skies-unknown-sharefactory-theme", + "name": "Ace Combat 7: Skies Unknown SHAREfactory Theme", + "url": "/v1/games/ace-combat-7-skies-unknown-sharefactory-theme" + }, { "slug": "ace-combat-advance", "name": "Ace Combat Advance", @@ -20526,6 +21006,11 @@ "name": "Act of War: Direct Action (Collector's Edition)", "url": "/v1/games/act-of-war-direct-action-collector-s-edition" }, + { + "slug": "act-of-war-gold-edition", + "name": "Act of War: Gold Edition", + "url": "/v1/games/act-of-war-gold-edition" + }, { "slug": "act-fancer-cybernetick-hyper-weapon", "name": "Act-Fancer: Cybernetick Hyper Weapon", @@ -20556,6 +21041,26 @@ "name": "Actias", "url": "/v1/games/actias" }, + { + "slug": "action-bumping-games", + "name": "Action & Bumping Games", + "url": "/v1/games/action-bumping-games" + }, + { + "slug": "action-52-q139888877", + "name": "Action 52", + "url": "/v1/games/action-52-q139888877" + }, + { + "slug": "action-52-q343608", + "name": "Action 52", + "url": "/v1/games/action-52-q343608" + }, + { + "slug": "action-52", + "name": "Action 52", + "url": "/v1/games/action-52" + }, { "slug": "action-alien", "name": "Action Alien", @@ -20906,6 +21411,11 @@ "name": "Active Opposition", "url": "/v1/games/active-opposition" }, + { + "slug": "active-shooter-demo", + "name": "Active Shooter Demo", + "url": "/v1/games/active-shooter-demo" + }, { "slug": "active-soccer-2-dx", "name": "Active Soccer 2 DX", @@ -20926,6 +21436,11 @@ "name": "Active Worlds", "url": "/v1/games/active-worlds" }, + { + "slug": "activision-anthology", + "name": "Activision Anthology", + "url": "/v1/games/activision-anthology" + }, { "slug": "activision-hits-remixed", "name": "Activision Hits Remixed", @@ -21186,6 +21701,26 @@ "name": "Adam Wolfe", "url": "/v1/games/adam-wolfe" }, + { + "slug": "adam-wolfe-episode-1-the-ancient-flame", + "name": "Adam Wolfe: Episode 1 - The Ancient Flame", + "url": "/v1/games/adam-wolfe-episode-1-the-ancient-flame" + }, + { + "slug": "adam-wolfe-episode-2-the-devil-you-know", + "name": "Adam Wolfe: Episode 2 - The Devil You Know", + "url": "/v1/games/adam-wolfe-episode-2-the-devil-you-know" + }, + { + "slug": "adam-wolfe-episode-3-lady-and-the-painter", + "name": "Adam Wolfe: Episode 3 - Lady and the Painter", + "url": "/v1/games/adam-wolfe-episode-3-lady-and-the-painter" + }, + { + "slug": "adam-wolfe-episode-4-zero-hour", + "name": "Adam Wolfe: Episode 4 - Zero Hour", + "url": "/v1/games/adam-wolfe-episode-4-zero-hour" + }, { "slug": "adam-and-eve-the-game-chapter-1", "name": "Adam and Eve: The Game - Chapter 1", @@ -21546,6 +22081,11 @@ "name": "Adonthell", "url": "/v1/games/adonthell" }, + { + "slug": "adopt-me", + "name": "Adopt Me!", + "url": "/v1/games/adopt-me" + }, { "slug": "adopted-passion-realize-your-dream", "name": "Adopted Passion Realize Your Dream", @@ -21816,6 +22356,11 @@ "name": "Advance Wars", "url": "/v1/games/advance-wars" }, + { + "slug": "advance-wars-1-2-re-boot-camp", + "name": "Advance Wars 1+2: Re-Boot Camp", + "url": "/v1/games/advance-wars-1-2-re-boot-camp" + }, { "slug": "advance-wars-2-black-hole-rising", "name": "Advance Wars 2: Black Hole Rising", @@ -23931,6 +24476,21 @@ "name": "Affairs of the Court: Choice of Romance", "url": "/v1/games/affairs-of-the-court-choice-of-romance" }, + { + "slug": "affairs-of-the-court-choice-of-romance-a-life-mage-child", + "name": "Affairs of the Court: Choice of Romance - A Life Mage Child", + "url": "/v1/games/affairs-of-the-court-choice-of-romance-a-life-mage-child" + }, + { + "slug": "affairs-of-the-court-choice-of-romance-death-to-the-princess", + "name": "Affairs of the Court: Choice of Romance - Death to the Princess", + "url": "/v1/games/affairs-of-the-court-choice-of-romance-death-to-the-princess" + }, + { + "slug": "affairs-of-the-court-choice-of-romance-play-as-the-consort", + "name": "Affairs of the Court: Choice of Romance - Play as the Consort", + "url": "/v1/games/affairs-of-the-court-choice-of-romance-play-as-the-consort" + }, { "slug": "affected-zone-tactics", "name": "Affected Zone Tactics", @@ -24591,6 +25151,11 @@ "name": "Afterlife Empire", "url": "/v1/games/afterlife-empire" }, + { + "slug": "afterlife-empire-demo", + "name": "Afterlife Empire Demo", + "url": "/v1/games/afterlife-empire-demo" + }, { "slug": "afterlife-gladiator", "name": "Afterlife Gladiator", @@ -24851,6 +25416,11 @@ "name": "Agarta", "url": "/v1/games/agarta" }, + { + "slug": "agartha-q2826430", + "name": "Agartha", + "url": "/v1/games/agartha-q2826430" + }, { "slug": "agartha", "name": "Agartha", @@ -24956,6 +25526,21 @@ "name": "Age Of Warbots", "url": "/v1/games/age-of-warbots" }, + { + "slug": "age-of-wonders-planetfall-invasions", + "name": "Age Of Wonders: Planetfall - Invasions", + "url": "/v1/games/age-of-wonders-planetfall-invasions" + }, + { + "slug": "age-of-wonders-planetfall-revelations", + "name": "Age Of Wonders: Planetfall - Revelations", + "url": "/v1/games/age-of-wonders-planetfall-revelations" + }, + { + "slug": "age-of-wonders-planetfall-star-kings", + "name": "Age Of Wonders: Planetfall - Star Kings", + "url": "/v1/games/age-of-wonders-planetfall-star-kings" + }, { "slug": "age-of-1911", "name": "Age of 1911", @@ -24966,6 +25551,11 @@ "name": "Age of Advent", "url": "/v1/games/age-of-advent" }, + { + "slug": "age-of-adventure", + "name": "Age of Adventure", + "url": "/v1/games/age-of-adventure" + }, { "slug": "age-of-amazones", "name": "Age of Amazones", @@ -25001,6 +25591,11 @@ "name": "Age of Cavemen", "url": "/v1/games/age-of-cavemen" }, + { + "slug": "age-of-chivalry", + "name": "Age of Chivalry", + "url": "/v1/games/age-of-chivalry" + }, { "slug": "age-of-civilizations", "name": "Age of Civilizations", @@ -25011,6 +25606,11 @@ "name": "Age of Conan", "url": "/v1/games/age-of-conan" }, + { + "slug": "age-of-conan-rise-of-the-godslayer", + "name": "Age of Conan: Rise of the Godslayer", + "url": "/v1/games/age-of-conan-rise-of-the-godslayer" + }, { "slug": "age-of-conquest-iii", "name": "Age of Conquest III", @@ -25041,6 +25641,11 @@ "name": "Age of Defense: Prehistory", "url": "/v1/games/age-of-defense-prehistory" }, + { + "slug": "age-of-discovery-q57973944", + "name": "Age of Discovery", + "url": "/v1/games/age-of-discovery-q57973944" + }, { "slug": "age-of-discovery", "name": "Age of Discovery", @@ -25071,6 +25676,21 @@ "name": "Age of Empires II Deluxe Mobile", "url": "/v1/games/age-of-empires-ii-deluxe-mobile" }, + { + "slug": "age-of-empires-ii-hd-rise-of-the-rajas", + "name": "Age of Empires II HD: Rise of the Rajas", + "url": "/v1/games/age-of-empires-ii-hd-rise-of-the-rajas" + }, + { + "slug": "age-of-empires-ii-hd-the-african-kingdoms", + "name": "Age of Empires II HD: The African Kingdoms", + "url": "/v1/games/age-of-empires-ii-hd-the-african-kingdoms" + }, + { + "slug": "age-of-empires-ii-hd-the-forgotten", + "name": "Age of Empires II HD: The Forgotten", + "url": "/v1/games/age-of-empires-ii-hd-the-forgotten" + }, { "slug": "age-of-empires-ii-mobile", "name": "Age of Empires II Mobile", @@ -25086,6 +25706,36 @@ "name": "Age of Empires II: Definitive Edition - Chronicles: Battle for Greece", "url": "/v1/games/age-of-empires-ii-definitive-edition-chronicles-battle-for-greece" }, + { + "slug": "age-of-empires-ii-definitive-edition-lords-of-the-west", + "name": "Age of Empires II: Definitive Edition - Lords of the West", + "url": "/v1/games/age-of-empires-ii-definitive-edition-lords-of-the-west" + }, + { + "slug": "age-of-empires-ii-definitive-edition-return-of-rome", + "name": "Age of Empires II: Definitive Edition - Return of Rome", + "url": "/v1/games/age-of-empires-ii-definitive-edition-return-of-rome" + }, + { + "slug": "age-of-empires-ii-definitive-edition-victors-and-vanquished", + "name": "Age of Empires II: Definitive Edition - Victors and Vanquished", + "url": "/v1/games/age-of-empires-ii-definitive-edition-victors-and-vanquished" + }, + { + "slug": "age-of-empires-ii-definitive-edition-dawn-of-the-dukes", + "name": "Age of Empires II: Definitive Edition – Dawn of the Dukes", + "url": "/v1/games/age-of-empires-ii-definitive-edition-dawn-of-the-dukes" + }, + { + "slug": "age-of-empires-ii-definitive-edition-dynasties-of-india", + "name": "Age of Empires II: Definitive Edition – Dynasties Of India", + "url": "/v1/games/age-of-empires-ii-definitive-edition-dynasties-of-india" + }, + { + "slug": "age-of-empires-ii-definitive-edition-the-mountain-royals", + "name": "Age of Empires II: Definitive Edition – The Mountain Royals", + "url": "/v1/games/age-of-empires-ii-definitive-edition-the-mountain-royals" + }, { "slug": "age-of-empires-ii-gold-edition", "name": "Age of Empires II: Gold Edition", @@ -25101,6 +25751,16 @@ "name": "Age of Empires II: The Age of Kings", "url": "/v1/games/age-of-empires-ii-the-age-of-kings" }, + { + "slug": "age-of-empires-ii-the-american-world", + "name": "Age of Empires II: The American World", + "url": "/v1/games/age-of-empires-ii-the-american-world" + }, + { + "slug": "age-of-empires-ii-the-conquerors", + "name": "Age of Empires II: The Conquerors", + "url": "/v1/games/age-of-empires-ii-the-conquerors" + }, { "slug": "age-of-empires-iii", "name": "Age of Empires III", @@ -25116,6 +25776,41 @@ "name": "Age of Empires III: Definitive Edition", "url": "/v1/games/age-of-empires-iii-definitive-edition" }, + { + "slug": "age-of-empires-iii-definitive-edition-knights-of-the-mediterranean", + "name": "Age of Empires III: Definitive Edition - Knights of the Mediterranean", + "url": "/v1/games/age-of-empires-iii-definitive-edition-knights-of-the-mediterranean" + }, + { + "slug": "age-of-empires-iii-definitive-edition-mexico-civilization", + "name": "Age of Empires III: Definitive Edition - Mexico Civilization", + "url": "/v1/games/age-of-empires-iii-definitive-edition-mexico-civilization" + }, + { + "slug": "age-of-empires-iii-definitive-edition-the-african-royals", + "name": "Age of Empires III: Definitive Edition - The African Royals", + "url": "/v1/games/age-of-empires-iii-definitive-edition-the-african-royals" + }, + { + "slug": "age-of-empires-iii-definitive-edition-united-states-civilization", + "name": "Age of Empires III: Definitive Edition - United States Civilization", + "url": "/v1/games/age-of-empires-iii-definitive-edition-united-states-civilization" + }, + { + "slug": "age-of-empires-iii-gold-edition", + "name": "Age of Empires III: Gold Edition", + "url": "/v1/games/age-of-empires-iii-gold-edition" + }, + { + "slug": "age-of-empires-iii-the-asian-dynasties", + "name": "Age of Empires III: The Asian Dynasties", + "url": "/v1/games/age-of-empires-iii-the-asian-dynasties" + }, + { + "slug": "age-of-empires-iii-the-warchiefs", + "name": "Age of Empires III: The WarChiefs", + "url": "/v1/games/age-of-empires-iii-the-warchiefs" + }, { "slug": "age-of-empires-iv", "name": "Age of Empires IV", @@ -25131,6 +25826,11 @@ "name": "Age of Empires IV: Knights of Cross and Rose", "url": "/v1/games/age-of-empires-iv-knights-of-cross-and-rose" }, + { + "slug": "age-of-empires-iv-the-sultans-ascend", + "name": "Age of Empires IV: The Sultans Ascend", + "url": "/v1/games/age-of-empires-iv-the-sultans-ascend" + }, { "slug": "age-of-empires-mobile", "name": "Age of Empires Mobile", @@ -25151,6 +25851,11 @@ "name": "Age of Empires: Definitive Edition", "url": "/v1/games/age-of-empires-definitive-edition" }, + { + "slug": "age-of-empires-gold-edition", + "name": "Age of Empires: Gold Edition", + "url": "/v1/games/age-of-empires-gold-edition" + }, { "slug": "age-of-empires-mythologies", "name": "Age of Empires: Mythologies", @@ -25161,6 +25866,11 @@ "name": "Age of Empires: The Age of Kings", "url": "/v1/games/age-of-empires-the-age-of-kings" }, + { + "slug": "age-of-empires-the-rise-of-rome", + "name": "Age of Empires: The Rise of Rome", + "url": "/v1/games/age-of-empires-the-rise-of-rome" + }, { "slug": "age-of-empires-world-domination", "name": "Age of Empires: World Domination", @@ -25336,11 +26046,36 @@ "name": "Age of Mythology: Retold", "url": "/v1/games/age-of-mythology-retold" }, + { + "slug": "age-of-mythology-retold-beta", + "name": "Age of Mythology: Retold (Beta)", + "url": "/v1/games/age-of-mythology-retold-beta" + }, + { + "slug": "age-of-mythology-retold-immortal-pillars", + "name": "Age of Mythology: Retold - Immortal Pillars", + "url": "/v1/games/age-of-mythology-retold-immortal-pillars" + }, { "slug": "age-of-mythology-retold-premium-edition", "name": "Age of Mythology: Retold Premium Edition", "url": "/v1/games/age-of-mythology-retold-premium-edition" }, + { + "slug": "age-of-mythology-retold-heavenly-spear", + "name": "Age of Mythology: Retold – Heavenly Spear", + "url": "/v1/games/age-of-mythology-retold-heavenly-spear" + }, + { + "slug": "age-of-mythology-tale-of-the-dragon", + "name": "Age of Mythology: Tale of the Dragon", + "url": "/v1/games/age-of-mythology-tale-of-the-dragon" + }, + { + "slug": "age-of-mythology-the-titans", + "name": "Age of Mythology: The Titans", + "url": "/v1/games/age-of-mythology-the-titans" + }, { "slug": "age-of-origins", "name": "Age of Origins", @@ -25361,6 +26096,11 @@ "name": "Age of Pirates: Caribbean Tales", "url": "/v1/games/age-of-pirates-caribbean-tales" }, + { + "slug": "age-of-pirates-dead-man-s-chest", + "name": "Age of Pirates: Dead Man's Chest", + "url": "/v1/games/age-of-pirates-dead-man-s-chest" + }, { "slug": "age-of-pirates-return-of-the-legend", "name": "Age of Pirates: Return of the Legend", @@ -25501,11 +26241,21 @@ "name": "Age of Wonders 4", "url": "/v1/games/age-of-wonders-4" }, + { + "slug": "age-of-wonders-4-eldritch-realms", + "name": "Age of Wonders 4: Eldritch Realms", + "url": "/v1/games/age-of-wonders-4-eldritch-realms" + }, { "slug": "age-of-wonders-4-empires-ashes", "name": "Age of Wonders 4: Empires & Ashes", "url": "/v1/games/age-of-wonders-4-empires-ashes" }, + { + "slug": "age-of-wonders-4-premium-edition", + "name": "Age of Wonders 4: Premium Edition", + "url": "/v1/games/age-of-wonders-4-premium-edition" + }, { "slug": "age-of-wonders-ii-the-wizard-s-throne", "name": "Age of Wonders II: The Wizard's Throne", @@ -25516,6 +26266,21 @@ "name": "Age of Wonders III", "url": "/v1/games/age-of-wonders-iii" }, + { + "slug": "age-of-wonders-iii-deluxe-edition", + "name": "Age of Wonders III (Deluxe Edition)", + "url": "/v1/games/age-of-wonders-iii-deluxe-edition" + }, + { + "slug": "age-of-wonders-iii-golden-realms", + "name": "Age of Wonders III - Golden Realms", + "url": "/v1/games/age-of-wonders-iii-golden-realms" + }, + { + "slug": "age-of-wonders-iii-eternal-lords", + "name": "Age of Wonders III: Eternal Lords", + "url": "/v1/games/age-of-wonders-iii-eternal-lords" + }, { "slug": "age-of-wonders-planetfall", "name": "Age of Wonders: Planetfall", @@ -25576,6 +26341,11 @@ "name": "Agenda", "url": "/v1/games/agenda" }, + { + "slug": "agent", + "name": "Agent", + "url": "/v1/games/agent" + }, { "slug": "agent-01", "name": "Agent 01", @@ -25821,6 +26591,16 @@ "name": "AgentRoy - Secure The Temple", "url": "/v1/games/agentroy-secure-the-temple" }, + { + "slug": "agents-of-yesterday", + "name": "Agents Of Yesterday", + "url": "/v1/games/agents-of-yesterday" + }, + { + "slug": "agents-of-yesterday-artifacts", + "name": "Agents Of Yesterday: Artifacts", + "url": "/v1/games/agents-of-yesterday-artifacts" + }, { "slug": "agents-of-aggro-city-online", "name": "Agents of Aggro City Online", @@ -26031,6 +26811,11 @@ "name": "Agony Increment", "url": "/v1/games/agony-increment" }, + { + "slug": "agony-unrated", + "name": "Agony Unrated", + "url": "/v1/games/agony-unrated" + }, { "slug": "agony-vr", "name": "Agony VR", @@ -26726,6 +27511,11 @@ "name": "Aion Classic", "url": "/v1/games/aion-classic" }, + { + "slug": "aion-assault-on-balaurea", + "name": "Aion: Assault on Balaurea", + "url": "/v1/games/aion-assault-on-balaurea" + }, { "slug": "aion-empyrean-calling", "name": "Aion: Empyrean Calling", @@ -27226,6 +28016,11 @@ "name": "Air-Sea War – Battle", "url": "/v1/games/air-sea-war-battle" }, + { + "slug": "air-sea-supremacy-q118005685", + "name": "Air/Sea Supremacy", + "url": "/v1/games/air-sea-supremacy-q118005685" + }, { "slug": "air-sea-supremacy", "name": "Air/Sea Supremacy", @@ -27586,11 +28381,36 @@ "name": "Airline Tycoon 2", "url": "/v1/games/airline-tycoon-2" }, + { + "slug": "airline-tycoon-2-falcon-airlines", + "name": "Airline Tycoon 2: Falcon Airlines", + "url": "/v1/games/airline-tycoon-2-falcon-airlines" + }, + { + "slug": "airline-tycoon-2-gold-edition", + "name": "Airline Tycoon 2: Gold Edition", + "url": "/v1/games/airline-tycoon-2-gold-edition" + }, + { + "slug": "airline-tycoon-2-honey-airlines", + "name": "Airline Tycoon 2: Honey Airlines", + "url": "/v1/games/airline-tycoon-2-honey-airlines" + }, + { + "slug": "airline-tycoon-deluxe", + "name": "Airline Tycoon Deluxe", + "url": "/v1/games/airline-tycoon-deluxe" + }, { "slug": "airline-tycoon-evolution", "name": "Airline Tycoon Evolution", "url": "/v1/games/airline-tycoon-evolution" }, + { + "slug": "airline-tycoon-first-class", + "name": "Airline Tycoon: First Class", + "url": "/v1/games/airline-tycoon-first-class" + }, { "slug": "airlinesim", "name": "AirlineSim", @@ -27971,6 +28791,11 @@ "name": "Airway", "url": "/v1/games/airway" }, + { + "slug": "airwaysim", + "name": "AirwaySim", + "url": "/v1/games/airwaysim" + }, { "slug": "airwolf-q101252563", "name": "Airwolf", @@ -28471,6 +29296,11 @@ "name": "Akizora ni Mau Confetti", "url": "/v1/games/akizora-ni-mau-confetti" }, + { + "slug": "akka-arrh-q117826663", + "name": "Akka Arrh", + "url": "/v1/games/akka-arrh-q117826663" + }, { "slug": "akka-arrh", "name": "Akka Arrh", @@ -28776,11 +29606,31 @@ "name": "Alan Wake", "url": "/v1/games/alan-wake" }, + { + "slug": "alan-wake-ii-night-springs", + "name": "Alan Wake II: Night Springs", + "url": "/v1/games/alan-wake-ii-night-springs" + }, + { + "slug": "alan-wake-ii-the-lake-house", + "name": "Alan Wake II: The Lake House", + "url": "/v1/games/alan-wake-ii-the-lake-house" + }, { "slug": "alan-wake-s-american-nightmare", "name": "Alan Wake's American Nightmare", "url": "/v1/games/alan-wake-s-american-nightmare" }, + { + "slug": "alan-wake-the-signal", + "name": "Alan Wake: The Signal", + "url": "/v1/games/alan-wake-the-signal" + }, + { + "slug": "alan-wake-the-writer", + "name": "Alan Wake: The Writer", + "url": "/v1/games/alan-wake-the-writer" + }, { "slug": "alan-and-the-kid", "name": "Alan and the kid", @@ -29536,6 +30386,11 @@ "name": "Alea Jacta Est", "url": "/v1/games/alea-jacta-est" }, + { + "slug": "alea-jacta-est-cantabrian-wars", + "name": "Alea Jacta Est: Cantabrian Wars", + "url": "/v1/games/alea-jacta-est-cantabrian-wars" + }, { "slug": "alea-akaki-tsuki-o-haruka-ni-nozomi", "name": "Alea: Akaki Tsuki o Haruka ni Nozomi", @@ -29671,6 +30526,11 @@ "name": "Aleste 2", "url": "/v1/games/aleste-2" }, + { + "slug": "aleste-collection", + "name": "Aleste Collection", + "url": "/v1/games/aleste-collection" + }, { "slug": "aleste-gaiden", "name": "Aleste Gaiden", @@ -30061,6 +30921,11 @@ "name": "Algotica Iterations", "url": "/v1/games/algotica-iterations" }, + { + "slug": "alhambra", + "name": "Alhambra", + "url": "/v1/games/alhambra" + }, { "slug": "ali-baba", "name": "Ali Baba", @@ -30411,6 +31276,11 @@ "name": "Alice: An Interactive Museum", "url": "/v1/games/alice-an-interactive-museum" }, + { + "slug": "alice-asylum", + "name": "Alice: Asylum", + "url": "/v1/games/alice-asylum" + }, { "slug": "alice-madness-returns", "name": "Alice: Madness Returns", @@ -30601,6 +31471,11 @@ "name": "Alien Breakout", "url": "/v1/games/alien-breakout" }, + { + "slug": "alien-breed-92-se-qwak", + "name": "Alien Breed '92 SE & Qwak", + "url": "/v1/games/alien-breed-92-se-qwak" + }, { "slug": "alien-breed-2-assault", "name": "Alien Breed 2: Assault", @@ -30616,16 +31491,41 @@ "name": "Alien Breed 3D", "url": "/v1/games/alien-breed-3d" }, + { + "slug": "alien-breed-3d-non-playable-demo", + "name": "Alien Breed 3D (Non-Playable Demo)", + "url": "/v1/games/alien-breed-3d-non-playable-demo" + }, + { + "slug": "alien-breed-3d-playable-demo-1", + "name": "Alien Breed 3D (Playable Demo #1)", + "url": "/v1/games/alien-breed-3d-playable-demo-1" + }, + { + "slug": "alien-breed-3d-playable-demo-2", + "name": "Alien Breed 3D (Playable Demo #2)", + "url": "/v1/games/alien-breed-3d-playable-demo-2" + }, { "slug": "alien-breed-3d-ii-the-killing-grounds", "name": "Alien Breed 3D II: The Killing Grounds", "url": "/v1/games/alien-breed-3d-ii-the-killing-grounds" }, + { + "slug": "alien-breed-evolution", + "name": "Alien Breed Evolution", + "url": "/v1/games/alien-breed-evolution" + }, { "slug": "alien-breed-ii-the-horror-continues", "name": "Alien Breed II: The Horror Continues", "url": "/v1/games/alien-breed-ii-the-horror-continues" }, + { + "slug": "alien-breed-trilogy", + "name": "Alien Breed Trilogy", + "url": "/v1/games/alien-breed-trilogy" + }, { "slug": "alien-breed-special-edition-92", "name": "Alien Breed: Special Edition 92", @@ -31051,6 +31951,11 @@ "name": "Alien Nations", "url": "/v1/games/alien-nations" }, + { + "slug": "alien-nations-mission-pack", + "name": "Alien Nations: Mission Pack", + "url": "/v1/games/alien-nations-mission-pack" + }, { "slug": "alien-odyssey", "name": "Alien Odyssey", @@ -31386,6 +32291,11 @@ "name": "Alien street battle", "url": "/v1/games/alien-street-battle" }, + { + "slug": "alien-vs-predator-q10405222", + "name": "Alien vs Predator", + "url": "/v1/games/alien-vs-predator-q10405222" + }, { "slug": "alien-vs-predator-q1891593", "name": "Alien vs Predator", @@ -31446,6 +32356,16 @@ "name": "Alien: Isolation", "url": "/v1/games/alien-isolation" }, + { + "slug": "alien-isolation-crew-expendable", + "name": "Alien: Isolation - Crew Expendable", + "url": "/v1/games/alien-isolation-crew-expendable" + }, + { + "slug": "alien-isolation-the-collection", + "name": "Alien: Isolation - The Collection", + "url": "/v1/games/alien-isolation-the-collection" + }, { "slug": "alien-rogue-incursion", "name": "Alien: Rogue Incursion", @@ -31561,6 +32481,11 @@ "name": "Aliens Versus Predator", "url": "/v1/games/aliens-versus-predator" }, + { + "slug": "aliens-versus-predator-millennium-expansion-pack", + "name": "Aliens Versus Predator: Millennium Expansion Pack", + "url": "/v1/games/aliens-versus-predator-millennium-expansion-pack" + }, { "slug": "aliens-and-asteroids", "name": "Aliens and Asteroids", @@ -31586,6 +32511,11 @@ "name": "Aliens versus Predator: Gold Edition", "url": "/v1/games/aliens-versus-predator-gold-edition" }, + { + "slug": "aliens-vs-predator-2-primal-hunt", + "name": "Aliens vs Predator 2: Primal Hunt", + "url": "/v1/games/aliens-vs-predator-2-primal-hunt" + }, { "slug": "aliens-vs-ghosts", "name": "Aliens vs. Ghosts", @@ -31626,11 +32556,21 @@ "name": "Aliens: Alien 2", "url": "/v1/games/aliens-alien-2" }, + { + "slug": "aliens-colonial-marines-stasis-interrupted", + "name": "Aliens: Colonial Marines - Stasis Interrupted", + "url": "/v1/games/aliens-colonial-marines-stasis-interrupted" + }, { "slug": "aliens-extermination", "name": "Aliens: Extermination", "url": "/v1/games/aliens-extermination" }, + { + "slug": "aliens-fireteam-elite-into-the-hive-edition", + "name": "Aliens: Fireteam Elite Into The Hive Edition", + "url": "/v1/games/aliens-fireteam-elite-into-the-hive-edition" + }, { "slug": "aliens-neoplasma-zx-spectrum-zx-spectrum-next", "name": "Aliens: Neoplasma | ZX Spectrum | ZX Spectrum Next", @@ -32236,6 +33176,11 @@ "name": "All Systems Operational", "url": "/v1/games/all-systems-operational" }, + { + "slug": "all-that-i-touch", + "name": "All That I Touch", + "url": "/v1/games/all-that-i-touch" + }, { "slug": "all-that-matters", "name": "All That Matters", @@ -32261,6 +33206,11 @@ "name": "All The Stars", "url": "/v1/games/all-the-stars" }, + { + "slug": "all-things-go-boom", + "name": "All Things Go Boom!", + "url": "/v1/games/all-things-go-boom" + }, { "slug": "all-those-who-wander", "name": "All Those Who Wander", @@ -32271,6 +33221,11 @@ "name": "All To Race", "url": "/v1/games/all-to-race" }, + { + "slug": "all-tomorrow-s-parties", + "name": "All Tomorrow’s Parties", + "url": "/v1/games/all-tomorrow-s-parties" + }, { "slug": "all-valley-karate-championships", "name": "All Valley Karate Championships", @@ -33381,6 +34336,26 @@ "name": "AlphaFurry", "url": "/v1/games/alphafurry" }, + { + "slug": "alphago", + "name": "AlphaGo", + "url": "/v1/games/alphago" + }, + { + "slug": "alphago-fan", + "name": "AlphaGo Fan", + "url": "/v1/games/alphago-fan" + }, + { + "slug": "alphago-master", + "name": "AlphaGo Master", + "url": "/v1/games/alphago-master" + }, + { + "slug": "alphago-zero", + "name": "AlphaGo Zero", + "url": "/v1/games/alphago-zero" + }, { "slug": "alphalink", "name": "AlphaLink", @@ -33446,6 +34421,11 @@ "name": "Alphadia Genesis", "url": "/v1/games/alphadia-genesis" }, + { + "slug": "alphadia-genesis-1-2", + "name": "Alphadia Genesis 1 & 2", + "url": "/v1/games/alphadia-genesis-1-2" + }, { "slug": "alphadia-genesis-2", "name": "Alphadia Genesis 2", @@ -33471,6 +34451,11 @@ "name": "Alphageddon", "url": "/v1/games/alphageddon" }, + { + "slug": "alphalock", + "name": "Alphalock", + "url": "/v1/games/alphalock" + }, { "slug": "alphaman-q115868461", "name": "Alphaman", @@ -33576,6 +34561,11 @@ "name": "Alt-Frequencies", "url": "/v1/games/alt-frequencies" }, + { + "slug": "alt-play-jason-rohrer-anthology", + "name": "Alt-Play: Jason Rohrer Anthology", + "url": "/v1/games/alt-play-jason-rohrer-anthology" + }, { "slug": "alt254", "name": "Alt254", @@ -33726,6 +34716,11 @@ "name": "Altered Anomalies", "url": "/v1/games/altered-anomalies" }, + { + "slug": "altered-beast-q4736304", + "name": "Altered Beast", + "url": "/v1/games/altered-beast-q4736304" + }, { "slug": "altered-beast", "name": "Altered Beast", @@ -33901,6 +34896,11 @@ "name": "Alto's Odyssey", "url": "/v1/games/alto-s-odyssey" }, + { + "slug": "alto-s-odyssey-the-lost-city", + "name": "Alto's Odyssey: The Lost City", + "url": "/v1/games/alto-s-odyssey-the-lost-city" + }, { "slug": "altorius", "name": "Altorius", @@ -34391,6 +35391,11 @@ "name": "Amarillo's Vehicular Manslaughter", "url": "/v1/games/amarillo-s-vehicular-manslaughter" }, + { + "slug": "amarok-dreams-demo", + "name": "Amarok Dreams Demo", + "url": "/v1/games/amarok-dreams-demo" + }, { "slug": "amaroo-s-christmas-shop-simulator", "name": "Amaroo's Christmas Shop Simulator", @@ -35366,6 +36371,11 @@ "name": "American Gladiators", "url": "/v1/games/american-gladiators" }, + { + "slug": "american-hero-q63049699", + "name": "American Hero", + "url": "/v1/games/american-hero-q63049699" + }, { "slug": "american-hero", "name": "American Hero", @@ -35506,16 +36516,186 @@ "name": "American Truck Simulator", "url": "/v1/games/american-truck-simulator" }, + { + "slug": "american-truck-simulator-arizona", + "name": "American Truck Simulator: Arizona", + "url": "/v1/games/american-truck-simulator-arizona" + }, + { + "slug": "american-truck-simulator-cabin-accessories", + "name": "American Truck Simulator: Cabin Accessories", + "url": "/v1/games/american-truck-simulator-cabin-accessories" + }, + { + "slug": "american-truck-simulator-christmas-paint-jobs-pack", + "name": "American Truck Simulator: Christmas Paint Jobs Pack", + "url": "/v1/games/american-truck-simulator-christmas-paint-jobs-pack" + }, + { + "slug": "american-truck-simulator-classic-stripes-paint-jobs-pack", + "name": "American Truck Simulator: Classic Stripes Paint Jobs Pack", + "url": "/v1/games/american-truck-simulator-classic-stripes-paint-jobs-pack" + }, + { + "slug": "american-truck-simulator-colorado", + "name": "American Truck Simulator: Colorado", + "url": "/v1/games/american-truck-simulator-colorado" + }, + { + "slug": "american-truck-simulator-dragon-truck-design-pack", + "name": "American Truck Simulator: Dragon Truck Design Pack", + "url": "/v1/games/american-truck-simulator-dragon-truck-design-pack" + }, + { + "slug": "american-truck-simulator-forest-machinery", + "name": "American Truck Simulator: Forest Machinery", + "url": "/v1/games/american-truck-simulator-forest-machinery" + }, + { + "slug": "american-truck-simulator-freightliner-cascadia", + "name": "American Truck Simulator: Freightliner Cascadia", + "url": "/v1/games/american-truck-simulator-freightliner-cascadia" + }, + { + "slug": "american-truck-simulator-goodyear-tires-pack", + "name": "American Truck Simulator: Goodyear Tires Pack", + "url": "/v1/games/american-truck-simulator-goodyear-tires-pack" + }, + { + "slug": "american-truck-simulator-halloween-paint-jobs-pack", + "name": "American Truck Simulator: Halloween Paint Jobs Pack", + "url": "/v1/games/american-truck-simulator-halloween-paint-jobs-pack" + }, + { + "slug": "american-truck-simulator-heavy-cargo-pack", + "name": "American Truck Simulator: Heavy Cargo Pack", + "url": "/v1/games/american-truck-simulator-heavy-cargo-pack" + }, + { + "slug": "american-truck-simulator-idaho", + "name": "American Truck Simulator: Idaho", + "url": "/v1/games/american-truck-simulator-idaho" + }, + { + "slug": "american-truck-simulator-international-9900i", + "name": "American Truck Simulator: International 9900i", + "url": "/v1/games/american-truck-simulator-international-9900i" + }, + { + "slug": "american-truck-simulator-international-lt", + "name": "American Truck Simulator: International LT", + "url": "/v1/games/american-truck-simulator-international-lt" + }, + { + "slug": "american-truck-simulator-iowa", + "name": "American Truck Simulator: Iowa", + "url": "/v1/games/american-truck-simulator-iowa" + }, + { + "slug": "american-truck-simulator-lode-king-prestige-trailers-pack", + "name": "American Truck Simulator: Lode King & Prestige Trailers Pack", + "url": "/v1/games/american-truck-simulator-lode-king-prestige-trailers-pack" + }, { "slug": "american-truck-simulator-louisiana", "name": "American Truck Simulator: Louisiana", "url": "/v1/games/american-truck-simulator-louisiana" }, + { + "slug": "american-truck-simulator-mack-anthem", + "name": "American Truck Simulator: Mack Anthem", + "url": "/v1/games/american-truck-simulator-mack-anthem" + }, + { + "slug": "american-truck-simulator-montana", + "name": "American Truck Simulator: Montana", + "url": "/v1/games/american-truck-simulator-montana" + }, + { + "slug": "american-truck-simulator-nebraska", + "name": "American Truck Simulator: Nebraska", + "url": "/v1/games/american-truck-simulator-nebraska" + }, + { + "slug": "american-truck-simulator-new-mexico", + "name": "American Truck Simulator: New Mexico", + "url": "/v1/games/american-truck-simulator-new-mexico" + }, + { + "slug": "american-truck-simulator-oregon", + "name": "American Truck Simulator: Oregon", + "url": "/v1/games/american-truck-simulator-oregon" + }, + { + "slug": "american-truck-simulator-pink-ribbon-charity-pack", + "name": "American Truck Simulator: Pink Ribbon Charity Pack", + "url": "/v1/games/american-truck-simulator-pink-ribbon-charity-pack" + }, + { + "slug": "american-truck-simulator-retrowave-paint-jobs-pack", + "name": "American Truck Simulator: Retrowave Paint Jobs Pack", + "url": "/v1/games/american-truck-simulator-retrowave-paint-jobs-pack" + }, { "slug": "american-truck-simulator-south-dakota", "name": "American Truck Simulator: South Dakota", "url": "/v1/games/american-truck-simulator-south-dakota" }, + { + "slug": "american-truck-simulator-space-paint-jobs-pack", + "name": "American Truck Simulator: Space Paint Jobs Pack", + "url": "/v1/games/american-truck-simulator-space-paint-jobs-pack" + }, + { + "slug": "american-truck-simulator-special-transport", + "name": "American Truck Simulator: Special Transport", + "url": "/v1/games/american-truck-simulator-special-transport" + }, + { + "slug": "american-truck-simulator-steering-creations-pack", + "name": "American Truck Simulator: Steering Creations Pack", + "url": "/v1/games/american-truck-simulator-steering-creations-pack" + }, + { + "slug": "american-truck-simulator-texas", + "name": "American Truck Simulator: Texas", + "url": "/v1/games/american-truck-simulator-texas" + }, + { + "slug": "american-truck-simulator-utah", + "name": "American Truck Simulator: Utah", + "url": "/v1/games/american-truck-simulator-utah" + }, + { + "slug": "american-truck-simulator-valentine-s-paint-jobs-pack", + "name": "American Truck Simulator: Valentine's Paint Jobs Pack", + "url": "/v1/games/american-truck-simulator-valentine-s-paint-jobs-pack" + }, + { + "slug": "american-truck-simulator-volvo-construction-equipment", + "name": "American Truck Simulator: Volvo Construction Equipment", + "url": "/v1/games/american-truck-simulator-volvo-construction-equipment" + }, + { + "slug": "american-truck-simulator-washington", + "name": "American Truck Simulator: Washington", + "url": "/v1/games/american-truck-simulator-washington" + }, + { + "slug": "american-truck-simulator-western-star-49x", + "name": "American Truck Simulator: Western Star 49X", + "url": "/v1/games/american-truck-simulator-western-star-49x" + }, + { + "slug": "american-truck-simulator-wheel-tuning-pack", + "name": "American Truck Simulator: Wheel Tuning Pack", + "url": "/v1/games/american-truck-simulator-wheel-tuning-pack" + }, + { + "slug": "american-truck-simulator-wyoming", + "name": "American Truck Simulator: Wyoming", + "url": "/v1/games/american-truck-simulator-wyoming" + }, { "slug": "american-university-life-welcome-week", "name": "American University Life ~Welcome Week!~", @@ -35601,6 +36781,11 @@ "name": "Amid Evil", "url": "/v1/games/amid-evil" }, + { + "slug": "amid-the-ruins", + "name": "Amid the Ruins", + "url": "/v1/games/amid-the-ruins" + }, { "slug": "amida", "name": "Amida", @@ -35621,6 +36806,11 @@ "name": "Amidst The Haze", "url": "/v1/games/amidst-the-haze" }, + { + "slug": "amiga-500-deluxe", + "name": "Amiga 500 Deluxe", + "url": "/v1/games/amiga-500-deluxe" + }, { "slug": "amiga-arena-games-edition-2002", "name": "Amiga Arena - Games Edition 2002", @@ -35741,6 +36931,11 @@ "name": "Amiga U.S.A.", "url": "/v1/games/amiga-u-s-a" }, + { + "slug": "amigadoom", + "name": "AmigaDoom", + "url": "/v1/games/amigadoom" + }, { "slug": "amigafelek", "name": "Amigafelek", @@ -35856,6 +37051,21 @@ "name": "Amnesia Crowd", "url": "/v1/games/amnesia-crowd" }, + { + "slug": "amnesia-fortnight-2012", + "name": "Amnesia Fortnight 2012", + "url": "/v1/games/amnesia-fortnight-2012" + }, + { + "slug": "amnesia-fortnight-2014", + "name": "Amnesia Fortnight 2014", + "url": "/v1/games/amnesia-fortnight-2014" + }, + { + "slug": "amnesia-fortnight-2017", + "name": "Amnesia Fortnight 2017", + "url": "/v1/games/amnesia-fortnight-2017" + }, { "slug": "amnesia-later", "name": "Amnesia Later", @@ -35876,6 +37086,11 @@ "name": "Amnesia: Collection", "url": "/v1/games/amnesia-collection" }, + { + "slug": "amnesia-justine", + "name": "Amnesia: Justine", + "url": "/v1/games/amnesia-justine" + }, { "slug": "amnesia-later-x-crowd", "name": "Amnesia: Later x Crowd", @@ -36041,6 +37256,46 @@ "name": "Among Us", "url": "/v1/games/among-us" }, + { + "slug": "among-us-bedcrab-pet-bundle", + "name": "Among Us - Bedcrab Pet Bundle", + "url": "/v1/games/among-us-bedcrab-pet-bundle" + }, + { + "slug": "among-us-brainslug-pet-bundle", + "name": "Among Us - Brainslug Pet Bundle", + "url": "/v1/games/among-us-brainslug-pet-bundle" + }, + { + "slug": "among-us-hamster-pet-bundle", + "name": "Among Us - Hamster Pet Bundle", + "url": "/v1/games/among-us-hamster-pet-bundle" + }, + { + "slug": "among-us-mira-hq-skins", + "name": "Among Us - MIRA HQ Skins", + "url": "/v1/games/among-us-mira-hq-skins" + }, + { + "slug": "among-us-mini-crewmate-bundle", + "name": "Among Us - Mini Crewmate Bundle", + "url": "/v1/games/among-us-mini-crewmate-bundle" + }, + { + "slug": "among-us-polus-skins", + "name": "Among Us - Polus Skins", + "url": "/v1/games/among-us-polus-skins" + }, + { + "slug": "among-us-stickmin-pet-bundle", + "name": "Among Us - Stickmin Pet Bundle", + "url": "/v1/games/among-us-stickmin-pet-bundle" + }, + { + "slug": "among-us-2", + "name": "Among Us 2", + "url": "/v1/games/among-us-2" + }, { "slug": "among-us-3d", "name": "Among Us 3D", @@ -36831,6 +38086,11 @@ "name": "Anarchy Online: Shadowlands", "url": "/v1/games/anarchy-online-shadowlands" }, + { + "slug": "anarchy-online-the-notum-wars", + "name": "Anarchy Online: The Notum Wars", + "url": "/v1/games/anarchy-online-the-notum-wars" + }, { "slug": "anarchy-park", "name": "Anarchy Park", @@ -36991,6 +38251,11 @@ "name": "Ancestors Legacy", "url": "/v1/games/ancestors-legacy" }, + { + "slug": "ancestors-legacy-saladin-s-conquest", + "name": "Ancestors Legacy - Saladin's Conquest", + "url": "/v1/games/ancestors-legacy-saladin-s-conquest" + }, { "slug": "ancestors-legacy-free-peasant-edition", "name": "Ancestors Legacy Free Peasant Edition", @@ -37171,6 +38436,11 @@ "name": "Ancient Dungeon", "url": "/v1/games/ancient-dungeon" }, + { + "slug": "ancient-enemies", + "name": "Ancient Enemies", + "url": "/v1/games/ancient-enemies" + }, { "slug": "ancient-enemy", "name": "Ancient Enemy", @@ -37926,6 +39196,11 @@ "name": "Angel Beats!", "url": "/v1/games/angel-beats" }, + { + "slug": "angel-beats-1st-beat", + "name": "Angel Beats! 1st Beat", + "url": "/v1/games/angel-beats-1st-beat" + }, { "slug": "angel-blade", "name": "Angel Blade", @@ -38256,6 +39531,11 @@ "name": "Angelique Etoile", "url": "/v1/games/angelique-etoile" }, + { + "slug": "angelique-history", + "name": "Angelique History", + "url": "/v1/games/angelique-history" + }, { "slug": "angelique-luminarise", "name": "Angelique Luminarise", @@ -38616,6 +39896,11 @@ "name": "Angry Birds Block Quest", "url": "/v1/games/angry-birds-block-quest" }, + { + "slug": "angry-birds-dice", + "name": "Angry Birds Dice", + "url": "/v1/games/angry-birds-dice" + }, { "slug": "angry-birds-dream-blast", "name": "Angry Birds Dream Blast", @@ -38701,6 +39986,11 @@ "name": "Angry Birds Transformers", "url": "/v1/games/angry-birds-transformers" }, + { + "slug": "angry-birds-trilogy", + "name": "Angry Birds Trilogy", + "url": "/v1/games/angry-birds-trilogy" + }, { "slug": "angry-birds-vr-isle-of-pigs", "name": "Angry Birds VR: Isle of Pigs", @@ -38866,6 +40156,11 @@ "name": "Angry Video Game Nerd 8-bit", "url": "/v1/games/angry-video-game-nerd-8-bit" }, + { + "slug": "angry-video-game-nerd-bundle", + "name": "Angry Video Game Nerd Bundle", + "url": "/v1/games/angry-video-game-nerd-bundle" + }, { "slug": "angry-video-game-nerd-i-ii-deluxe", "name": "Angry Video Game Nerd I & II Deluxe", @@ -39281,6 +40576,11 @@ "name": "Animal Crossing: New Horizons", "url": "/v1/games/animal-crossing-new-horizons" }, + { + "slug": "animal-crossing-new-horizons-happy-home-paradise", + "name": "Animal Crossing: New Horizons – Happy Home Paradise", + "url": "/v1/games/animal-crossing-new-horizons-happy-home-paradise" + }, { "slug": "animal-crossing-new-leaf", "name": "Animal Crossing: New Leaf", @@ -39906,6 +41206,11 @@ "name": "Animated Puzzles", "url": "/v1/games/animated-puzzles" }, + { + "slug": "animation-arts-collection", + "name": "Animation Arts Collection", + "url": "/v1/games/animation-arts-collection" + }, { "slug": "animation-classics-pack-the", "name": "Animation Classics Pack, The", @@ -39956,11 +41261,36 @@ "name": "Anime Artist", "url": "/v1/games/anime-artist" }, + { + "slug": "anime-artist-elisa-the-innkeeper-pack", + "name": "Anime Artist - Elisa the Innkeeper Pack", + "url": "/v1/games/anime-artist-elisa-the-innkeeper-pack" + }, + { + "slug": "anime-artist-2-cutest-girls-pack", + "name": "Anime Artist 2: Cutest Girls Pack", + "url": "/v1/games/anime-artist-2-cutest-girls-pack" + }, { "slug": "anime-artist-2-lovely-danya", "name": "Anime Artist 2: Lovely Danya", "url": "/v1/games/anime-artist-2-lovely-danya" }, + { + "slug": "anime-artist-2-the-more-the-better-pack", + "name": "Anime Artist 2: The More, The Better Pack", + "url": "/v1/games/anime-artist-2-the-more-the-better-pack" + }, + { + "slug": "anime-artist-3-a-better-artist", + "name": "Anime Artist 3 - A better Artist", + "url": "/v1/games/anime-artist-3-a-better-artist" + }, + { + "slug": "anime-artist-3-extended-wardrobe", + "name": "Anime Artist 3 - Extended Wardrobe", + "url": "/v1/games/anime-artist-3-extended-wardrobe" + }, { "slug": "anime-artist-3-harem", "name": "Anime Artist 3: Harem", @@ -40056,6 +41386,11 @@ "name": "Anime Feet 2", "url": "/v1/games/anime-feet-2" }, + { + "slug": "anime-fighting-simulator", + "name": "Anime Fighting Simulator", + "url": "/v1/games/anime-fighting-simulator" + }, { "slug": "anime-friends", "name": "Anime Friends", @@ -40596,16 +41931,36 @@ "name": "Anno 1404", "url": "/v1/games/anno-1404" }, + { + "slug": "anno-1404-venice", + "name": "Anno 1404 Venice", + "url": "/v1/games/anno-1404-venice" + }, { "slug": "anno-1503", "name": "Anno 1503", "url": "/v1/games/anno-1503" }, + { + "slug": "anno-1503-royal-edition", + "name": "Anno 1503: Royal Edition", + "url": "/v1/games/anno-1503-royal-edition" + }, + { + "slug": "anno-1503-treasures-monsters-and-pirates", + "name": "Anno 1503: Treasures, Monsters and Pirates", + "url": "/v1/games/anno-1503-treasures-monsters-and-pirates" + }, { "slug": "anno-1602", "name": "Anno 1602", "url": "/v1/games/anno-1602" }, + { + "slug": "anno-1602-new-islands-new-adventures", + "name": "Anno 1602: New Islands, New Adventures", + "url": "/v1/games/anno-1602-new-islands-new-adventures" + }, { "slug": "anno-1701", "name": "Anno 1701", @@ -40621,16 +41976,56 @@ "name": "Anno 1701: Dawn of Discovery", "url": "/v1/games/anno-1701-dawn-of-discovery" }, + { + "slug": "anno-1701-the-sunken-dragon", + "name": "Anno 1701: The Sunken Dragon", + "url": "/v1/games/anno-1701-the-sunken-dragon" + }, { "slug": "anno-1800", "name": "Anno 1800", "url": "/v1/games/anno-1800" }, + { + "slug": "anno-1800-sunken-treasure", + "name": "Anno 1800 - Sunken Treasure", + "url": "/v1/games/anno-1800-sunken-treasure" + }, + { + "slug": "anno-1800-console-edition", + "name": "Anno 1800 Console Edition", + "url": "/v1/games/anno-1800-console-edition" + }, + { + "slug": "anno-1800-seat-of-power", + "name": "Anno 1800: Seat of Power", + "url": "/v1/games/anno-1800-seat-of-power" + }, { "slug": "anno-2070", "name": "Anno 2070", "url": "/v1/games/anno-2070" }, + { + "slug": "anno-2070-deep-ocean", + "name": "Anno 2070: Deep Ocean", + "url": "/v1/games/anno-2070-deep-ocean" + }, + { + "slug": "anno-2205-frontiers", + "name": "Anno 2205™ - Frontiers", + "url": "/v1/games/anno-2205-frontiers" + }, + { + "slug": "anno-2205-orbit", + "name": "Anno 2205™ - Orbit", + "url": "/v1/games/anno-2205-orbit" + }, + { + "slug": "anno-2205-tundra", + "name": "Anno 2205™ - Tundra", + "url": "/v1/games/anno-2205-tundra" + }, { "slug": "anno-domini-godfather", "name": "Anno Domini Godfather", @@ -40641,6 +42036,11 @@ "name": "Anno Dominis", "url": "/v1/games/anno-dominis" }, + { + "slug": "anno-history-collection", + "name": "Anno History Collection", + "url": "/v1/games/anno-history-collection" + }, { "slug": "anno-online", "name": "Anno Online", @@ -41506,6 +42906,11 @@ "name": "Another_World", "url": "/v1/games/another-world-q135451701" }, + { + "slug": "anothereal", + "name": "Anothereal", + "url": "/v1/games/anothereal" + }, { "slug": "anoxemia", "name": "Anoxemia", @@ -41836,6 +43241,11 @@ "name": "AntharioN", "url": "/v1/games/antharion" }, + { + "slug": "antheads", + "name": "Antheads", + "url": "/v1/games/antheads" + }, { "slug": "anthelion", "name": "Anthelion", @@ -42636,6 +44046,11 @@ "name": "Apache", "url": "/v1/games/apache" }, + { + "slug": "apache-overdrive-demo", + "name": "Apache & Overdrive (Demo)", + "url": "/v1/games/apache-overdrive-demo" + }, { "slug": "apache-3", "name": "Apache 3", @@ -42836,6 +44251,16 @@ "name": "Aperture Hand Lab", "url": "/v1/games/aperture-hand-lab" }, + { + "slug": "aperture-science-3d", + "name": "Aperture Science 3D", + "url": "/v1/games/aperture-science-3d" + }, + { + "slug": "aperture-science-ds", + "name": "Aperture Science DS", + "url": "/v1/games/aperture-science-ds" + }, { "slug": "aperture-tag", "name": "Aperture Tag", @@ -43326,6 +44751,11 @@ "name": "Apollo Justice: Ace Attorney", "url": "/v1/games/apollo-justice-ace-attorney" }, + { + "slug": "apollo-justice-ace-attorney-trilogy", + "name": "Apollo Justice: Ace Attorney Trilogy", + "url": "/v1/games/apollo-justice-ace-attorney-trilogy" + }, { "slug": "apollo-lunar-mission", "name": "Apollo Lunar Mission", @@ -44021,6 +45451,11 @@ "name": "AquaNimble", "url": "/v1/games/aquanimble" }, + { + "slug": "aquanox-the-angel-s-tears", + "name": "AquaNox: The Angel's Tears", + "url": "/v1/games/aquanox-the-angel-s-tears" + }, { "slug": "aquaphobia", "name": "AquaPhobia", @@ -44561,6 +45996,11 @@ "name": "Aragami 2", "url": "/v1/games/aragami-2" }, + { + "slug": "aragami-nightfall", + "name": "Aragami: Nightfall", + "url": "/v1/games/aragami-nightfall" + }, { "slug": "aragami-shadow-edition", "name": "Aragami: Shadow Edition", @@ -44776,6 +46216,11 @@ "name": "Arc the Lad", "url": "/v1/games/arc-the-lad" }, + { + "slug": "arc-the-lad-collection", + "name": "Arc the Lad Collection", + "url": "/v1/games/arc-the-lad-collection" + }, { "slug": "arc-the-lad-ii", "name": "Arc the Lad II", @@ -44881,6 +46326,26 @@ "name": "Arcade Classic", "url": "/v1/games/arcade-classic" }, + { + "slug": "arcade-classic-no-1-asteroids-missile-command", + "name": "Arcade Classic No. 1: Asteroids / Missile Command", + "url": "/v1/games/arcade-classic-no-1-asteroids-missile-command" + }, + { + "slug": "arcade-classic-no-2-centipede-millipede", + "name": "Arcade Classic No. 2: Centipede / Millipede", + "url": "/v1/games/arcade-classic-no-2-centipede-millipede" + }, + { + "slug": "arcade-classics-q4785072", + "name": "Arcade Classics", + "url": "/v1/games/arcade-classics-q4785072" + }, + { + "slug": "arcade-classics-q4785073", + "name": "Arcade Classics", + "url": "/v1/games/arcade-classics-q4785073" + }, { "slug": "arcade-classics", "name": "Arcade Classics", @@ -45026,6 +46491,11 @@ "name": "Arcade Party", "url": "/v1/games/arcade-party" }, + { + "slug": "arcade-party-pak", + "name": "Arcade Party Pak", + "url": "/v1/games/arcade-party-pak" + }, { "slug": "arcade-pool", "name": "Arcade Pool", @@ -45056,6 +46526,16 @@ "name": "Arcade Shop Simulator", "url": "/v1/games/arcade-shop-simulator" }, + { + "slug": "arcade-smash-hits-q55365862", + "name": "Arcade Smash Hits", + "url": "/v1/games/arcade-smash-hits-q55365862" + }, + { + "slug": "arcade-smash-hits", + "name": "Arcade Smash Hits", + "url": "/v1/games/arcade-smash-hits" + }, { "slug": "arcade-snooker", "name": "Arcade Snooker", @@ -45126,6 +46606,21 @@ "name": "Arcade games collection", "url": "/v1/games/arcade-games-collection" }, + { + "slug": "arcade-s-greatest-hits-the-atari-collection-1", + "name": "Arcade's Greatest Hits: The Atari Collection 1", + "url": "/v1/games/arcade-s-greatest-hits-the-atari-collection-1" + }, + { + "slug": "arcade-s-greatest-hits-the-atari-collection-2", + "name": "Arcade's Greatest Hits: The Atari Collection 2", + "url": "/v1/games/arcade-s-greatest-hits-the-atari-collection-2" + }, + { + "slug": "arcade-s-greatest-hits-the-midway-collection-2", + "name": "Arcade's Greatest Hits: The Midway Collection 2", + "url": "/v1/games/arcade-s-greatest-hits-the-midway-collection-2" + }, { "slug": "arcade-shooting-gallery-q139770350", "name": "Arcade: Shooting Gallery", @@ -45661,6 +47156,11 @@ "name": "Arcania", "url": "/v1/games/arcania" }, + { + "slug": "arcania-fall-of-setarrif", + "name": "Arcania: Fall of Setarrif", + "url": "/v1/games/arcania-fall-of-setarrif" + }, { "slug": "arcanika", "name": "Arcanika", @@ -47726,6 +49226,11 @@ "name": "Ark's Wonder Dungeon", "url": "/v1/games/ark-s-wonder-dungeon" }, + { + "slug": "ark-genesis", + "name": "Ark: Genesis", + "url": "/v1/games/ark-genesis" + }, { "slug": "ark-survival-ascended", "name": "Ark: Survival Ascended", @@ -47766,6 +49271,11 @@ "name": "Arkan: The dog adventurer", "url": "/v1/games/arkan-the-dog-adventurer" }, + { + "slug": "arkane-anniversary-collection", + "name": "Arkane Anniversary Collection", + "url": "/v1/games/arkane-anniversary-collection" + }, { "slug": "arkane-rush", "name": "Arkane Rush", @@ -48011,11 +49521,91 @@ "name": "Arm of Satan: Chapter 1", "url": "/v1/games/arm-of-satan-chapter-1" }, + { + "slug": "arma-2-army-of-the-czech-republic", + "name": "ArmA 2: Army of the Czech Republic", + "url": "/v1/games/arma-2-army-of-the-czech-republic" + }, + { + "slug": "arma-2-british-armed-forces", + "name": "ArmA 2: British Armed Forces", + "url": "/v1/games/arma-2-british-armed-forces" + }, + { + "slug": "arma-2-private-military-company", + "name": "ArmA 2: Private Military Company", + "url": "/v1/games/arma-2-private-military-company" + }, + { + "slug": "arma-3-apex", + "name": "ArmA 3: Apex", + "url": "/v1/games/arma-3-apex" + }, + { + "slug": "arma-armed-assault-gold-edition", + "name": "ArmA: Armed Assault - Gold Edition", + "url": "/v1/games/arma-armed-assault-gold-edition" + }, + { + "slug": "arma-3-creator-dlc-global-mobilization-cold-war-germany", + "name": "Arma 3 Creator DLC: Global Mobilization - Cold War Germany", + "url": "/v1/games/arma-3-creator-dlc-global-mobilization-cold-war-germany" + }, + { + "slug": "arma-3-helicopters", + "name": "Arma 3 Helicopters", + "url": "/v1/games/arma-3-helicopters" + }, + { + "slug": "arma-3-jets", + "name": "Arma 3 Jets", + "url": "/v1/games/arma-3-jets" + }, + { + "slug": "arma-3-laws-of-war", + "name": "Arma 3 Laws of War", + "url": "/v1/games/arma-3-laws-of-war" + }, + { + "slug": "arma-3-malden", + "name": "Arma 3 Malden", + "url": "/v1/games/arma-3-malden" + }, + { + "slug": "arma-3-marksmen", + "name": "Arma 3 Marksmen", + "url": "/v1/games/arma-3-marksmen" + }, + { + "slug": "arma-3-tac-ops-mission-pack", + "name": "Arma 3 Tac-Ops Mission Pack", + "url": "/v1/games/arma-3-tac-ops-mission-pack" + }, + { + "slug": "arma-3-tanks", + "name": "Arma 3 Tanks", + "url": "/v1/games/arma-3-tanks" + }, { "slug": "arma-3-tools", "name": "Arma 3 Tools", "url": "/v1/games/arma-3-tools" }, + { + "slug": "arma-3-zeus", + "name": "Arma 3 Zeus", + "url": "/v1/games/arma-3-zeus" + }, + { + "slug": "arma-3-contact", + "name": "Arma 3: Contact", + "url": "/v1/games/arma-3-contact" + }, + { + "slug": "arma-3-karts", + "name": "Arma 3: Karts", + "url": "/v1/games/arma-3-karts" + }, { "slug": "arma-4", "name": "Arma 4", @@ -49061,6 +50651,11 @@ "name": "Around", "url": "/v1/games/around" }, + { + "slug": "around-every-corner", + "name": "Around Every Corner", + "url": "/v1/games/around-every-corner" + }, { "slug": "around-the-world", "name": "Around The World", @@ -49316,6 +50911,11 @@ "name": "ArsGoetia", "url": "/v1/games/arsgoetia" }, + { + "slug": "arsenal-q116143185", + "name": "Arsenal", + "url": "/v1/games/arsenal-q116143185" + }, { "slug": "arsenal", "name": "Arsenal", @@ -49536,6 +51136,11 @@ "name": "Art Together", "url": "/v1/games/art-together" }, + { + "slug": "art-and-video-pack", + "name": "Art and Video pack", + "url": "/v1/games/art-and-video-pack" + }, { "slug": "art-by-numbers", "name": "Art by Numbers", @@ -49601,6 +51206,11 @@ "name": "Art of Fighting 3", "url": "/v1/games/art-of-fighting-3" }, + { + "slug": "art-of-fighting-anthology", + "name": "Art of Fighting Anthology", + "url": "/v1/games/art-of-fighting-anthology" + }, { "slug": "art-of-fury-virtual-gallery", "name": "Art of Fury: Virtual Gallery", @@ -50301,6 +51911,11 @@ "name": "Arx Fatalis", "url": "/v1/games/arx-fatalis" }, + { + "slug": "arx-fatalis-demo", + "name": "Arx Fatalis Demo", + "url": "/v1/games/arx-fatalis-demo" + }, { "slug": "arx-libertatis", "name": "Arx Libertatis", @@ -50821,6 +52436,11 @@ "name": "Asdivine Saga", "url": "/v1/games/asdivine-saga" }, + { + "slug": "aselia-the-eternal", + "name": "Aselia the Eternal", + "url": "/v1/games/aselia-the-eternal" + }, { "slug": "aselia-the-eternal-the-spirit-of-eternity-sword", "name": "Aselia the Eternal -The Spirit of Eternity Sword-", @@ -51556,6 +53176,11 @@ "name": "Asphalt 7: Heat", "url": "/v1/games/asphalt-7-heat" }, + { + "slug": "asphalt-8-airborne", + "name": "Asphalt 8: Airborne+", + "url": "/v1/games/asphalt-8-airborne" + }, { "slug": "asphalt-audi-rs-3", "name": "Asphalt Audi RS 3", @@ -51681,6 +53306,11 @@ "name": "Assassin's Creed", "url": "/v1/games/assassin-s-creed" }, + { + "slug": "assassin-s-creed-1-2-welcome-pack", + "name": "Assassin's Creed 1+2 Welcome Pack", + "url": "/v1/games/assassin-s-creed-1-2-welcome-pack" + }, { "slug": "assassin-s-creed-chronicles-china", "name": "Assassin's Creed Chronicles: China", @@ -51696,11 +53326,21 @@ "name": "Assassin's Creed Chronicles: Russia", "url": "/v1/games/assassin-s-creed-chronicles-russia" }, + { + "slug": "assassin-s-creed-chronicles-trilogy", + "name": "Assassin's Creed Chronicles: Trilogy", + "url": "/v1/games/assassin-s-creed-chronicles-trilogy" + }, { "slug": "assassin-s-creed-codename-hexe", "name": "Assassin's Creed Codename Hexe", "url": "/v1/games/assassin-s-creed-codename-hexe" }, + { + "slug": "assassin-s-creed-connor-saga", + "name": "Assassin's Creed Connor Saga", + "url": "/v1/games/assassin-s-creed-connor-saga" + }, { "slug": "assassin-s-creed-ii", "name": "Assassin's Creed II", @@ -51731,6 +53371,11 @@ "name": "Assassin's Creed III: Liberation", "url": "/v1/games/assassin-s-creed-iii-liberation" }, + { + "slug": "assassin-s-creed-iii-the-tyranny-of-king-washington", + "name": "Assassin's Creed III: The Tyranny of King Washington", + "url": "/v1/games/assassin-s-creed-iii-the-tyranny-of-king-washington" + }, { "slug": "assassin-s-creed-iv-black-flag", "name": "Assassin's Creed IV: Black Flag", @@ -51756,6 +53401,11 @@ "name": "Assassin's Creed Odyssey", "url": "/v1/games/assassin-s-creed-odyssey" }, + { + "slug": "assassin-s-creed-odyssey-legacy-of-the-first-blade", + "name": "Assassin's Creed Odyssey – Legacy of the First Blade", + "url": "/v1/games/assassin-s-creed-odyssey-legacy-of-the-first-blade" + }, { "slug": "assassin-s-creed-odyssey-the-fate-of-atlantis", "name": "Assassin's Creed Odyssey – The Fate of Atlantis", @@ -51771,11 +53421,26 @@ "name": "Assassin's Creed Rogue", "url": "/v1/games/assassin-s-creed-rogue" }, + { + "slug": "assassin-s-creed-shadows-claws-of-awaji", + "name": "Assassin's Creed Shadows: Claws of Awaji", + "url": "/v1/games/assassin-s-creed-shadows-claws-of-awaji" + }, { "slug": "assassin-s-creed-syndicate", "name": "Assassin's Creed Syndicate", "url": "/v1/games/assassin-s-creed-syndicate" }, + { + "slug": "assassin-s-creed-syndicate-gold-edition", + "name": "Assassin's Creed Syndicate Gold Edition", + "url": "/v1/games/assassin-s-creed-syndicate-gold-edition" + }, + { + "slug": "assassin-s-creed-syndicate-jack-the-ripper", + "name": "Assassin's Creed Syndicate: Jack the Ripper", + "url": "/v1/games/assassin-s-creed-syndicate-jack-the-ripper" + }, { "slug": "assassin-s-creed-the-ezio-collection", "name": "Assassin's Creed The Ezio Collection", @@ -51791,6 +53456,36 @@ "name": "Assassin's Creed Valhalla", "url": "/v1/games/assassin-s-creed-valhalla" }, + { + "slug": "assassin-s-creed-valhalla-complete-edition", + "name": "Assassin's Creed Valhalla Complete Edition", + "url": "/v1/games/assassin-s-creed-valhalla-complete-edition" + }, + { + "slug": "assassin-s-creed-valhalla-ragnar-k-edition", + "name": "Assassin's Creed Valhalla Ragnarök Edition", + "url": "/v1/games/assassin-s-creed-valhalla-ragnar-k-edition" + }, + { + "slug": "assassin-s-creed-valhalla-dawn-of-ragnar-k", + "name": "Assassin's Creed Valhalla: Dawn of Ragnarök", + "url": "/v1/games/assassin-s-creed-valhalla-dawn-of-ragnar-k" + }, + { + "slug": "assassin-s-creed-valhalla-the-siege-of-paris", + "name": "Assassin's Creed Valhalla: The Siege of Paris", + "url": "/v1/games/assassin-s-creed-valhalla-the-siege-of-paris" + }, + { + "slug": "assassin-s-creed-valhalla-tombs-of-the-fallen-pack-2", + "name": "Assassin's Creed Valhalla: Tombs of the Fallen Pack 2", + "url": "/v1/games/assassin-s-creed-valhalla-tombs-of-the-fallen-pack-2" + }, + { + "slug": "assassin-s-creed-valhalla-wrath-of-the-druids", + "name": "Assassin's Creed Valhalla: Wrath of the Druids", + "url": "/v1/games/assassin-s-creed-valhalla-wrath-of-the-druids" + }, { "slug": "assassin-s-creed-alta-r-s-chronicles", "name": "Assassin's Creed: Altaïr's Chronicles", @@ -51826,6 +53521,11 @@ "name": "Assassin's Creed: Revelations", "url": "/v1/games/assassin-s-creed-revelations" }, + { + "slug": "assassin-s-creed-the-rebel-collection", + "name": "Assassin's Creed: The Rebel Collection", + "url": "/v1/games/assassin-s-creed-the-rebel-collection" + }, { "slug": "assassin-s-shadows", "name": "Assassin's Shadows", @@ -51936,6 +53636,11 @@ "name": "Assault Fire", "url": "/v1/games/assault-fire" }, + { + "slug": "assault-gear", + "name": "Assault Gear", + "url": "/v1/games/assault-gear" + }, { "slug": "assault-heroes", "name": "Assault Heroes", @@ -52171,6 +53876,11 @@ "name": "Assetto Corsa Rally", "url": "/v1/games/assetto-corsa-rally" }, + { + "slug": "assetto-corsa-porsche-pack-ii", + "name": "Assetto Corsa: Porsche Pack II", + "url": "/v1/games/assetto-corsa-porsche-pack-ii" + }, { "slug": "assia-returning-to-dreams", "name": "Assia:Returning to Dreams", @@ -52336,6 +54046,11 @@ "name": "Asterigos: Curse of the Stars", "url": "/v1/games/asterigos-curse-of-the-stars" }, + { + "slug": "asterigos-curse-of-the-stars-deluxe-edition", + "name": "Asterigos: Curse of the Stars Deluxe Edition", + "url": "/v1/games/asterigos-curse-of-the-stars-deluxe-edition" + }, { "slug": "asterika-phantom-rose-refrain", "name": "Asterika: Phantom Rose Refrain", @@ -53661,6 +55376,11 @@ "name": "Astro Warrior", "url": "/v1/games/astro-warrior" }, + { + "slug": "astro-warrior-pit-pot", + "name": "Astro Warrior / Pit Pot", + "url": "/v1/games/astro-warrior-pit-pot" + }, { "slug": "astro-wars-q135453402", "name": "Astro Wars", @@ -54036,6 +55756,11 @@ "name": "Astroneer", "url": "/v1/games/astroneer" }, + { + "slug": "astroneer-glitchwalkers", + "name": "Astroneer: Glitchwalkers", + "url": "/v1/games/astroneer-glitchwalkers" + }, { "slug": "astronimo", "name": "Astronimo", @@ -54621,11 +56346,21 @@ "name": "Atari 50: The Anniversary Celebration Expanded Edition", "url": "/v1/games/atari-50-the-anniversary-celebration-expanded-edition" }, + { + "slug": "atari-anniversary-edition", + "name": "Atari Anniversary Edition", + "url": "/v1/games/atari-anniversary-edition" + }, { "slug": "atari-anniversary-edition-redux", "name": "Atari Anniversary Edition Redux", "url": "/v1/games/atari-anniversary-edition-redux" }, + { + "slug": "atari-anthology", + "name": "Atari Anthology", + "url": "/v1/games/atari-anthology" + }, { "slug": "atari-classics-evolved", "name": "Atari Classics Evolved", @@ -54636,11 +56371,21 @@ "name": "Atari Flashback Classics Vol 1", "url": "/v1/games/atari-flashback-classics-vol-1" }, + { + "slug": "atari-flashback-classics-vol-2", + "name": "Atari Flashback Classics Vol.2", + "url": "/v1/games/atari-flashback-classics-vol-2" + }, { "slug": "atari-football", "name": "Atari Football", "url": "/v1/games/atari-football" }, + { + "slug": "atari-greatest-hits", + "name": "Atari Greatest Hits", + "url": "/v1/games/atari-greatest-hits" + }, { "slug": "atari-karts", "name": "Atari Karts", @@ -54651,6 +56396,16 @@ "name": "Atari Mania", "url": "/v1/games/atari-mania" }, + { + "slug": "atari-masterpieces-vol-i", + "name": "Atari Masterpieces Vol. I", + "url": "/v1/games/atari-masterpieces-vol-i" + }, + { + "slug": "atari-masterpieces-vol-ii", + "name": "Atari Masterpieces Vol. II", + "url": "/v1/games/atari-masterpieces-vol-ii" + }, { "slug": "atari-outlaw", "name": "Atari Outlaw", @@ -54986,6 +56741,11 @@ "name": "Athena Crisis", "url": "/v1/games/athena-crisis" }, + { + "slug": "athena-sword", + "name": "Athena Sword", + "url": "/v1/games/athena-sword" + }, { "slug": "athena-trivia", "name": "Athena Trivia", @@ -55506,6 +57266,21 @@ "name": "Atomic Hazard", "url": "/v1/games/atomic-hazard" }, + { + "slug": "atomic-heart-annihilation-instinct", + "name": "Atomic Heart: Annihilation Instinct", + "url": "/v1/games/atomic-heart-annihilation-instinct" + }, + { + "slug": "atomic-heart-enchantment-under-the-sea", + "name": "Atomic Heart: Enchantment Under the Sea", + "url": "/v1/games/atomic-heart-enchantment-under-the-sea" + }, + { + "slug": "atomic-heart-trapped-in-limbo", + "name": "Atomic Heart: Trapped in Limbo", + "url": "/v1/games/atomic-heart-trapped-in-limbo" + }, { "slug": "atomic-heist", "name": "Atomic Heist", @@ -56826,6 +58601,11 @@ "name": "Australian Football Coach 2023-24", "url": "/v1/games/australian-football-coach-2023-24" }, + { + "slug": "australian-release-of-chrono-trigger-for-nintendo-ds", + "name": "Australian Release of Chrono Trigger for Nintendo DS", + "url": "/v1/games/australian-release-of-chrono-trigger-for-nintendo-ds" + }, { "slug": "australian-road-trains", "name": "Australian Road Trains", @@ -57641,6 +59421,11 @@ "name": "Avalon", "url": "/v1/games/avalon-q135451977" }, + { + "slug": "avalon-q4827545", + "name": "Avalon", + "url": "/v1/games/avalon-q4827545" + }, { "slug": "avalon", "name": "Avalon", @@ -57786,11 +59571,21 @@ "name": "Avatar Avenue", "url": "/v1/games/avatar-avenue" }, + { + "slug": "avatar-avenue-trial", + "name": "Avatar Avenue (Trial)", + "url": "/v1/games/avatar-avenue-trial" + }, { "slug": "avatar-connection", "name": "Avatar Connection", "url": "/v1/games/avatar-connection" }, + { + "slug": "avatar-connection-trial", + "name": "Avatar Connection (Trial)", + "url": "/v1/games/avatar-connection-trial" + }, { "slug": "avatar-generations", "name": "Avatar Generations", @@ -57806,11 +59601,21 @@ "name": "Avatar Laser Wars", "url": "/v1/games/avatar-laser-wars" }, + { + "slug": "avatar-laser-wars-trial", + "name": "Avatar Laser Wars (Trial)", + "url": "/v1/games/avatar-laser-wars-trial" + }, { "slug": "avatar-laser-wars-2", "name": "Avatar Laser Wars 2", "url": "/v1/games/avatar-laser-wars-2" }, + { + "slug": "avatar-laser-wars-2-trial", + "name": "Avatar Laser Wars 2 (Trial)", + "url": "/v1/games/avatar-laser-wars-2-trial" + }, { "slug": "avatar-motocross-madness", "name": "Avatar Motocross Madness", @@ -57826,6 +59631,11 @@ "name": "Avatar Warfare!", "url": "/v1/games/avatar-warfare" }, + { + "slug": "avatar-warfare-trial", + "name": "Avatar Warfare! (Trial)", + "url": "/v1/games/avatar-warfare-trial" + }, { "slug": "avatar-world", "name": "Avatar World", @@ -58756,6 +60566,11 @@ "name": "Axe Prime", "url": "/v1/games/axe-prime" }, + { + "slug": "axe-rock", + "name": "Axe Rock", + "url": "/v1/games/axe-rock" + }, { "slug": "axe-slasher", "name": "Axe Slasher", @@ -59621,6 +61436,11 @@ "name": "Azure Striker Gunvolt 3", "url": "/v1/games/azure-striker-gunvolt-3" }, + { + "slug": "azure-striker-gunvolt-striker-pack", + "name": "Azure Striker Gunvolt: Striker Pack", + "url": "/v1/games/azure-striker-gunvolt-striker-pack" + }, { "slug": "azure-wing-rising-gale", "name": "Azure Wing: Rising Gale", @@ -59741,6 +61561,11 @@ "name": "B-Horror: Subway", "url": "/v1/games/b-horror-subway" }, + { + "slug": "b-max", + "name": "B-MAX", + "url": "/v1/games/b-max" + }, { "slug": "b-project-ryusei-fantasia", "name": "B-PROJECT RYUSEI*FANTASIA", @@ -60571,6 +62396,11 @@ "name": "BBlocks", "url": "/v1/games/bblocks" }, + { + "slug": "bc", + "name": "BC", + "url": "/v1/games/bc" + }, { "slug": "bc-kings", "name": "BC Kings", @@ -60666,6 +62496,11 @@ "name": "BDSM: Big Drunk Satanic Massacre", "url": "/v1/games/bdsm-big-drunk-satanic-massacre" }, + { + "slug": "bdsm-big-drunk-satanic-massacre-demo", + "name": "BDSM: Big Drunk Satanic Massacre Demo", + "url": "/v1/games/bdsm-big-drunk-satanic-massacre-demo" + }, { "slug": "be-hunted", "name": "BE HUNTED", @@ -60846,6 +62681,16 @@ "name": "BETA-SIXDOUZE", "url": "/v1/games/beta-sixdouze" }, + { + "slug": "beta-ivry-driver-for-steamvr-psvr2-lite-edition", + "name": "BETA: iVRy Driver for SteamVR (PSVR2 Lite Edition)", + "url": "/v1/games/beta-ivry-driver-for-steamvr-psvr2-lite-edition" + }, + { + "slug": "beta-ivry-driver-for-steamvr-psvr2-premium-edition", + "name": "BETA: iVRy Driver for SteamVR (PSVR2 Premium Edition)", + "url": "/v1/games/beta-ivry-driver-for-steamvr-psvr2-premium-edition" + }, { "slug": "beton-brutal", "name": "BETON BRUTAL", @@ -61791,6 +63636,11 @@ "name": "BOOBS", "url": "/v1/games/boobs" }, + { + "slug": "book-of-hours-soundtrack-bundle", + "name": "BOOK OF HOURS + Soundtrack bundle", + "url": "/v1/games/book-of-hours-soundtrack-bundle" + }, { "slug": "books", "name": "BOOKS", @@ -62396,6 +64246,11 @@ "name": "BS The Legend of Zelda: Ancient Stone Tablets", "url": "/v1/games/bs-the-legend-of-zelda-ancient-stone-tablets" }, + { + "slug": "bsd-games", + "name": "BSD games", + "url": "/v1/games/bsd-games" + }, { "slug": "bsl-winter-games-challenge", "name": "BSL Winter Games Challenge", @@ -63021,6 +64876,11 @@ "name": "Baby Redemption", "url": "/v1/games/baby-redemption" }, + { + "slug": "baby-shaker", + "name": "Baby Shaker", + "url": "/v1/games/baby-shaker" + }, { "slug": "baby-shark-vr-dancing", "name": "Baby Shark VR Dancing", @@ -63051,6 +64911,11 @@ "name": "Baby Walking Simulator", "url": "/v1/games/baby-walking-simulator" }, + { + "slug": "baby-s-day-out", + "name": "Baby's Day Out", + "url": "/v1/games/baby-s-day-out" + }, { "slug": "baby-s-on-fire-99-virgins", "name": "Baby's on fire: 99 virgins", @@ -63481,6 +65346,11 @@ "name": "Back to the Future: The Game - Episode 3: Citizen Brown", "url": "/v1/games/back-to-the-future-the-game-episode-3-citizen-brown" }, + { + "slug": "back-to-the-future-the-game-episode-4-double-visions", + "name": "Back to the Future: The Game - Episode 4: Double Visions", + "url": "/v1/games/back-to-the-future-the-game-episode-4-double-visions" + }, { "slug": "back-to-the-future-the-game-episode-5-outatime", "name": "Back to the Future: The Game - Episode 5: OUTATIME", @@ -63661,6 +65531,11 @@ "name": "Backgammon Royale", "url": "/v1/games/backgammon-royale" }, + { + "slug": "backgammon-q106753118", + "name": "Backgammon+", + "url": "/v1/games/backgammon-q106753118" + }, { "slug": "background-bells", "name": "Background Bells", @@ -63756,6 +65631,21 @@ "name": "Backpacker 3", "url": "/v1/games/backpacker-3" }, + { + "slug": "backpacker-3-americana", + "name": "Backpacker 3: Americana", + "url": "/v1/games/backpacker-3-americana" + }, + { + "slug": "backpacker-3-mediterraneo", + "name": "Backpacker 3: Mediterraneo", + "url": "/v1/games/backpacker-3-mediterraneo" + }, + { + "slug": "backpacker-3-the-collection", + "name": "Backpacker 3: The Collection", + "url": "/v1/games/backpacker-3-the-collection" + }, { "slug": "backpacker-guild", "name": "Backpacker Guild", @@ -65026,6 +66916,11 @@ "name": "Badboy Brother", "url": "/v1/games/badboy-brother" }, + { + "slug": "baddest-of-the-bands", + "name": "Baddest of the Bands", + "url": "/v1/games/baddest-of-the-bands" + }, { "slug": "badiya", "name": "Badiya", @@ -65056,6 +66951,11 @@ "name": "Badland Party", "url": "/v1/games/badland-party" }, + { + "slug": "badland-q106800567", + "name": "Badland+", + "url": "/v1/games/badland-q106800567" + }, { "slug": "badlanders", "name": "Badlanders", @@ -65781,6 +67681,11 @@ "name": "Balder's Grove", "url": "/v1/games/balder-s-grove" }, + { + "slug": "baldi-s-basics-field-trip", + "name": "Baldi's Basics - Field Trip", + "url": "/v1/games/baldi-s-basics-field-trip" + }, { "slug": "baldi-s-basics-birthday-bash", "name": "Baldi's Basics Birthday Bash", @@ -65876,6 +67781,21 @@ "name": "Baldur's Gate II: Shadows of Amn", "url": "/v1/games/baldur-s-gate-ii-shadows-of-amn" }, + { + "slug": "baldur-s-gate-ii-the-collection", + "name": "Baldur's Gate II: The Collection", + "url": "/v1/games/baldur-s-gate-ii-the-collection" + }, + { + "slug": "baldur-s-gate-ii-throne-of-bhaal", + "name": "Baldur's Gate II: Throne of Bhaal", + "url": "/v1/games/baldur-s-gate-ii-throne-of-bhaal" + }, + { + "slug": "baldur-s-gate-iii-the-black-hound", + "name": "Baldur's Gate III: The Black Hound", + "url": "/v1/games/baldur-s-gate-iii-the-black-hound" + }, { "slug": "baldur-s-gate-dark-alliance-q116179311", "name": "Baldur's Gate: Dark Alliance", @@ -65896,6 +67816,21 @@ "name": "Baldur's Gate: Enhanced Edition", "url": "/v1/games/baldur-s-gate-enhanced-edition" }, + { + "slug": "baldur-s-gate-enhanced-edition-siege-of-dragonspear", + "name": "Baldur's Gate: Enhanced Edition - Siege of Dragonspear", + "url": "/v1/games/baldur-s-gate-enhanced-edition-siege-of-dragonspear" + }, + { + "slug": "baldur-s-gate-tales-of-the-sword-coast", + "name": "Baldur's Gate: Tales of the Sword Coast", + "url": "/v1/games/baldur-s-gate-tales-of-the-sword-coast" + }, + { + "slug": "baldur-s-gate-the-original-saga", + "name": "Baldur's Gate: The Original Saga", + "url": "/v1/games/baldur-s-gate-the-original-saga" + }, { "slug": "baldwin-s-bear", "name": "Baldwin's Bear", @@ -68666,6 +70601,11 @@ "name": "Barking Puzzle", "url": "/v1/games/barking-puzzle" }, + { + "slug": "barkley-2", + "name": "Barkley 2", + "url": "/v1/games/barkley-2" + }, { "slug": "barkley-shut-up-and-jam", "name": "Barkley Shut Up and Jam!", @@ -70016,6 +71956,11 @@ "name": "Bassmaster Fishing 2022", "url": "/v1/games/bassmaster-fishing-2022" }, + { + "slug": "bassmaster-fishing-2022-2022-bassmaster-classic", + "name": "Bassmaster Fishing 2022: 2022 Bassmaster Classic", + "url": "/v1/games/bassmaster-fishing-2022-2022-bassmaster-classic" + }, { "slug": "bastard-q120965732", "name": "Bastard", @@ -70396,6 +72341,11 @@ "name": "Batman: Arkham Shadow", "url": "/v1/games/batman-arkham-shadow" }, + { + "slug": "batman-arkham-trilogy", + "name": "Batman: Arkham Trilogy", + "url": "/v1/games/batman-arkham-trilogy" + }, { "slug": "batman-arkham-underworld", "name": "Batman: Arkham Underworld", @@ -70416,6 +72366,11 @@ "name": "Batman: Dark Tomorrow", "url": "/v1/games/batman-dark-tomorrow" }, + { + "slug": "batman-death-in-the-family", + "name": "Batman: Death in the Family", + "url": "/v1/games/batman-death-in-the-family" + }, { "slug": "batman-gotham-city-racer", "name": "Batman: Gotham City Racer", @@ -70436,6 +72391,11 @@ "name": "Batman: Return of the Joker", "url": "/v1/games/batman-return-of-the-joker" }, + { + "slug": "batman-return-to-arkham", + "name": "Batman: Return to Arkham", + "url": "/v1/games/batman-return-to-arkham" + }, { "slug": "batman-revenge-of-the-joker", "name": "Batman: Revenge of the Joker", @@ -70476,6 +72436,26 @@ "name": "Batman: The Telltale Series", "url": "/v1/games/batman-the-telltale-series" }, + { + "slug": "batman-the-telltale-series-episode-1-realm-of-shadows", + "name": "Batman: The Telltale Series - Episode 1: Realm of Shadows", + "url": "/v1/games/batman-the-telltale-series-episode-1-realm-of-shadows" + }, + { + "slug": "batman-the-telltale-series-episode-2-children-of-arkham", + "name": "Batman: The Telltale Series - Episode 2: Children of Arkham", + "url": "/v1/games/batman-the-telltale-series-episode-2-children-of-arkham" + }, + { + "slug": "batman-the-telltale-series-episode-3-new-world-order", + "name": "Batman: The Telltale Series - Episode 3: New World Order", + "url": "/v1/games/batman-the-telltale-series-episode-3-new-world-order" + }, + { + "slug": "batman-the-telltale-series-episode-4-guardian-of-gotham", + "name": "Batman: The Telltale Series - Episode 4: Guardian of Gotham", + "url": "/v1/games/batman-the-telltale-series-episode-4-guardian-of-gotham" + }, { "slug": "batman-the-video-game-q123196063", "name": "Batman: The Video Game", @@ -71191,6 +73171,11 @@ "name": "Battle Fantasy", "url": "/v1/games/battle-fantasy" }, + { + "slug": "battle-field-creator", + "name": "Battle Field Creator", + "url": "/v1/games/battle-field-creator" + }, { "slug": "battle-fleet-2", "name": "Battle Fleet 2", @@ -71406,6 +73391,11 @@ "name": "Battle Isle", "url": "/v1/games/battle-isle" }, + { + "slug": "battle-isle-93-the-moon-of-chromos", + "name": "Battle Isle '93: The Moon of Chromos", + "url": "/v1/games/battle-isle-93-the-moon-of-chromos" + }, { "slug": "battle-isle-2200", "name": "Battle Isle 2200", @@ -71416,6 +73406,21 @@ "name": "Battle Isle 2220: Shadow of the Emperor", "url": "/v1/games/battle-isle-2220-shadow-of-the-emperor" }, + { + "slug": "battle-isle-2-titan-s-legacy", + "name": "Battle Isle 2: Titan's Legacy", + "url": "/v1/games/battle-isle-2-titan-s-legacy" + }, + { + "slug": "battle-isle-platinum", + "name": "Battle Isle Platinum", + "url": "/v1/games/battle-isle-platinum" + }, + { + "slug": "battle-isle-scenario-disk-volume-one", + "name": "Battle Isle: Scenario Disk Volume One", + "url": "/v1/games/battle-isle-scenario-disk-volume-one" + }, { "slug": "battle-isle-the-andosia-war", "name": "Battle Isle: The Andosia War", @@ -71721,6 +73726,11 @@ "name": "Battle Realms", "url": "/v1/games/battle-realms" }, + { + "slug": "battle-realms-winter-of-the-wolf", + "name": "Battle Realms: Winter of the Wolf", + "url": "/v1/games/battle-realms-winter-of-the-wolf" + }, { "slug": "battle-record-graizor", "name": "Battle Record: Graizor", @@ -72006,6 +74016,11 @@ "name": "Battle Survive Hentai", "url": "/v1/games/battle-survive-hentai" }, + { + "slug": "battle-survive-hentai-nudity-18", + "name": "Battle Survive Hentai - Nudity (18+)", + "url": "/v1/games/battle-survive-hentai-nudity-18" + }, { "slug": "battle-sweeper", "name": "Battle Sweeper", @@ -72971,6 +74986,11 @@ "name": "Battlefield 1942", "url": "/v1/games/battlefield-1942" }, + { + "slug": "battlefield-1942-secret-weapons-of-wwii", + "name": "Battlefield 1942: Secret Weapons of WWII", + "url": "/v1/games/battlefield-1942-secret-weapons-of-wwii" + }, { "slug": "battlefield-1942-the-road-to-rome", "name": "Battlefield 1942: The Road to Rome", @@ -72996,31 +75016,96 @@ "name": "Battlefield 2142", "url": "/v1/games/battlefield-2142" }, + { + "slug": "battlefield-2142-northern-strike", + "name": "Battlefield 2142: Northern Strike", + "url": "/v1/games/battlefield-2142-northern-strike" + }, + { + "slug": "battlefield-2-armored-fury", + "name": "Battlefield 2: Armored Fury", + "url": "/v1/games/battlefield-2-armored-fury" + }, + { + "slug": "battlefield-2-euro-force", + "name": "Battlefield 2: Euro Force", + "url": "/v1/games/battlefield-2-euro-force" + }, { "slug": "battlefield-2-modern-combat", "name": "Battlefield 2: Modern Combat", "url": "/v1/games/battlefield-2-modern-combat" }, + { + "slug": "battlefield-2-special-forces", + "name": "Battlefield 2: Special Forces", + "url": "/v1/games/battlefield-2-special-forces" + }, { "slug": "battlefield-3", "name": "Battlefield 3", "url": "/v1/games/battlefield-3" }, + { + "slug": "battlefield-3-back-to-karkand", + "name": "Battlefield 3 – Back to Karkand", + "url": "/v1/games/battlefield-3-back-to-karkand" + }, { "slug": "battlefield-3-aftermath", "name": "Battlefield 3: Aftermath", "url": "/v1/games/battlefield-3-aftermath" }, + { + "slug": "battlefield-3-armored-kill", + "name": "Battlefield 3: Armored Kill", + "url": "/v1/games/battlefield-3-armored-kill" + }, + { + "slug": "battlefield-3-close-quarters", + "name": "Battlefield 3: Close Quarters", + "url": "/v1/games/battlefield-3-close-quarters" + }, + { + "slug": "battlefield-3-end-game", + "name": "Battlefield 3: End Game", + "url": "/v1/games/battlefield-3-end-game" + }, { "slug": "battlefield-4", "name": "Battlefield 4", "url": "/v1/games/battlefield-4" }, + { + "slug": "battlefield-4-premium-edition", + "name": "Battlefield 4 Premium Edition", + "url": "/v1/games/battlefield-4-premium-edition" + }, + { + "slug": "battlefield-4-china-rising", + "name": "Battlefield 4: China Rising", + "url": "/v1/games/battlefield-4-china-rising" + }, + { + "slug": "battlefield-4-final-stand", + "name": "Battlefield 4: Final Stand", + "url": "/v1/games/battlefield-4-final-stand" + }, + { + "slug": "battlefield-4-second-assault", + "name": "Battlefield 4: Second Assault", + "url": "/v1/games/battlefield-4-second-assault" + }, { "slug": "battlefield-alliance", "name": "Battlefield Alliance", "url": "/v1/games/battlefield-alliance" }, + { + "slug": "battlefield-bundle", + "name": "Battlefield Bundle", + "url": "/v1/games/battlefield-bundle" + }, { "slug": "battlefield-command-europe-at-war-1939-1945", "name": "Battlefield Command: Europe at War 1939 - 1945", @@ -73041,6 +75126,11 @@ "name": "Battlefield Hardline", "url": "/v1/games/battlefield-hardline" }, + { + "slug": "battlefield-mobile", + "name": "Battlefield Mobile", + "url": "/v1/games/battlefield-mobile" + }, { "slug": "battlefield-online", "name": "Battlefield Online", @@ -73071,6 +75161,16 @@ "name": "Battlefield: Bad Company", "url": "/v1/games/battlefield-bad-company" }, + { + "slug": "battlefield-bad-company-2-ultimate-edition", + "name": "Battlefield: Bad Company 2 Ultimate Edition", + "url": "/v1/games/battlefield-bad-company-2-ultimate-edition" + }, + { + "slug": "battlefield-bad-company-2-vietnam", + "name": "Battlefield: Bad Company 2: Vietnam", + "url": "/v1/games/battlefield-bad-company-2-vietnam" + }, { "slug": "battlefieldcars", "name": "BattlefieldCars", @@ -73231,6 +75331,11 @@ "name": "Battleheart Legacy", "url": "/v1/games/battleheart-legacy" }, + { + "slug": "battleheart-legacy-q115240295", + "name": "Battleheart Legacy+", + "url": "/v1/games/battleheart-legacy-q115240295" + }, { "slug": "battleline-steel-warfare", "name": "Battleline: Steel Warfare", @@ -73576,6 +75681,11 @@ "name": "Battletoads", "url": "/v1/games/battletoads-q19598913" }, + { + "slug": "battletoads-q55210617", + "name": "Battletoads", + "url": "/v1/games/battletoads-q55210617" + }, { "slug": "battletoads", "name": "Battletoads", @@ -76576,6 +78686,11 @@ "name": "Bee Simulator: The Hive", "url": "/v1/games/bee-simulator-the-hive" }, + { + "slug": "bee-swarm-simulator", + "name": "Bee Swarm Simulator", + "url": "/v1/games/bee-swarm-simulator" + }, { "slug": "bee-welcome", "name": "Bee Welcome!", @@ -77286,6 +79401,11 @@ "name": "Beholder", "url": "/v1/games/beholder" }, + { + "slug": "beholder-blissful-sleep", + "name": "Beholder - Blissful Sleep", + "url": "/v1/games/beholder-blissful-sleep" + }, { "slug": "beholder-2", "name": "Beholder 2", @@ -77851,6 +79971,11 @@ "name": "Bendy: Secrets of the Machine", "url": "/v1/games/bendy-secrets-of-the-machine" }, + { + "slug": "beneath", + "name": "Beneath", + "url": "/v1/games/beneath" + }, { "slug": "beneath-beyond", "name": "Beneath & Beyond", @@ -78101,6 +80226,11 @@ "name": "Bentley's Hackpack", "url": "/v1/games/bentley-s-hackpack" }, + { + "slug": "bentley-s-hackpack-trial-version", + "name": "Bentley's Hackpack Trial Version", + "url": "/v1/games/bentley-s-hackpack-trial-version" + }, { "slug": "bento-blocks", "name": "Bento Blocks", @@ -78676,6 +80806,11 @@ "name": "Best in the West", "url": "/v1/games/best-in-the-west" }, + { + "slug": "best-of-microsoft-entertainment-pack", + "name": "Best of Microsoft Entertainment Pack", + "url": "/v1/games/best-of-microsoft-entertainment-pack" + }, { "slug": "best-of-tests-ds", "name": "Best of Tests DS", @@ -79836,6 +81971,11 @@ "name": "Beyond the Red Door", "url": "/v1/games/beyond-the-red-door" }, + { + "slug": "beyond-the-red-line", + "name": "Beyond the Red Line", + "url": "/v1/games/beyond-the-red-line" + }, { "slug": "beyond-the-sky", "name": "Beyond the Sky", @@ -80871,6 +83011,11 @@ "name": "Big Pharma", "url": "/v1/games/big-pharma" }, + { + "slug": "big-pharma-marketing-and-malpractice", + "name": "Big Pharma: Marketing and Malpractice", + "url": "/v1/games/big-pharma-marketing-and-malpractice" + }, { "slug": "big-picture-the", "name": "Big Picture, The", @@ -81776,6 +83921,11 @@ "name": "Binding of Elements", "url": "/v1/games/binding-of-elements" }, + { + "slug": "binding-of-isaac-wrath-of-the-lamb", + "name": "Binding of Isaac: Wrath of the Lamb", + "url": "/v1/games/binding-of-isaac-wrath-of-the-lamb" + }, { "slug": "bindmancer", "name": "Bindmancer", @@ -82036,11 +84186,21 @@ "name": "BioShock 2 Remastered", "url": "/v1/games/bioshock-2-remastered" }, + { + "slug": "bioshock-2-minerva-s-den", + "name": "BioShock 2: Minerva's Den", + "url": "/v1/games/bioshock-2-minerva-s-den" + }, { "slug": "bioshock-infinite", "name": "BioShock Infinite", "url": "/v1/games/bioshock-infinite" }, + { + "slug": "bioshock-infinite-burial-at-sea", + "name": "BioShock Infinite: Burial at Sea", + "url": "/v1/games/bioshock-infinite-burial-at-sea" + }, { "slug": "bioshock-remastered", "name": "BioShock Remastered", @@ -82301,6 +84461,11 @@ "name": "Bionicle Heroes", "url": "/v1/games/bionicle-heroes" }, + { + "slug": "bionicle-masks-of-power", + "name": "Bionicle: Masks of Power", + "url": "/v1/games/bionicle-masks-of-power" + }, { "slug": "bionicle-matoran-adventures", "name": "Bionicle: Matoran Adventures", @@ -82356,6 +84521,11 @@ "name": "Bioscopia", "url": "/v1/games/bioscopia" }, + { + "slug": "biosector", + "name": "Biosector", + "url": "/v1/games/biosector" + }, { "slug": "biosupremacy", "name": "Biosupremacy", @@ -83216,6 +85386,11 @@ "name": "Bit.Trip Beat", "url": "/v1/games/bit-trip-beat" }, + { + "slug": "bit-trip-complete", + "name": "Bit.Trip Complete", + "url": "/v1/games/bit-trip-complete" + }, { "slug": "bit-trip-core", "name": "Bit.Trip Core", @@ -83236,6 +85411,11 @@ "name": "Bit.Trip Runner", "url": "/v1/games/bit-trip-runner" }, + { + "slug": "bit-trip-saga", + "name": "Bit.Trip Saga", + "url": "/v1/games/bit-trip-saga" + }, { "slug": "bit-trip-void", "name": "Bit.Trip Void", @@ -83641,6 +85821,16 @@ "name": "Bitva Geroev 2", "url": "/v1/games/bitva-geroev-2" }, + { + "slug": "bitva-geroev-2-ekho-voiny", + "name": "Bitva Geroev 2: Ekho Voiny", + "url": "/v1/games/bitva-geroev-2-ekho-voiny" + }, + { + "slug": "bitva-geroev-padenie-imperii", + "name": "Bitva Geroev: Padenie Imperii", + "url": "/v1/games/bitva-geroev-padenie-imperii" + }, { "slug": "bitweb", "name": "Bitweb", @@ -83726,6 +85916,11 @@ "name": "BlaZeon", "url": "/v1/games/blazeon" }, + { + "slug": "blablaland", + "name": "Blablaland", + "url": "/v1/games/blablaland" + }, { "slug": "black-q137643804", "name": "Black", @@ -83741,11 +85936,21 @@ "name": "Black & White", "url": "/v1/games/black-white" }, + { + "slug": "black-white-2-battle-of-the-gods", + "name": "Black & White 2: Battle of the Gods", + "url": "/v1/games/black-white-2-battle-of-the-gods" + }, { "slug": "black-white-bushido", "name": "Black & White Bushido", "url": "/v1/games/black-white-bushido" }, + { + "slug": "black-white-creature-isle", + "name": "Black & White: Creature Isle", + "url": "/v1/games/black-white-creature-isle" + }, { "slug": "black-abyss", "name": "Black Abyss", @@ -84291,6 +86496,11 @@ "name": "Black Mesa", "url": "/v1/games/black-mesa" }, + { + "slug": "black-mesa-inbound", + "name": "Black Mesa Inbound", + "url": "/v1/games/black-mesa-inbound" + }, { "slug": "black-metal", "name": "Black Metal", @@ -84341,6 +86551,11 @@ "name": "Black Myth:Destiny Man", "url": "/v1/games/black-myth-destiny-man" }, + { + "slug": "black-ocean-q110713009", + "name": "Black Ocean", + "url": "/v1/games/black-ocean-q110713009" + }, { "slug": "black-ocean", "name": "Black Ocean", @@ -84516,6 +86731,11 @@ "name": "Black Shadow", "url": "/v1/games/black-shadow" }, + { + "slug": "black-shark-2-republic-campaign", + "name": "Black Shark 2: Republic Campaign", + "url": "/v1/games/black-shark-2-republic-campaign" + }, { "slug": "black-sheep-q135044424", "name": "Black Sheep", @@ -85036,6 +87256,11 @@ "name": "Blackjack at Carrot", "url": "/v1/games/blackjack-at-carrot" }, + { + "slug": "blackjack-by-mobilityware", + "name": "Blackjack by MobilityWare+", + "url": "/v1/games/blackjack-by-mobilityware" + }, { "slug": "blackjack-for-the-95lx", "name": "Blackjack for the 95LX", @@ -85311,6 +87536,11 @@ "name": "Blackwater", "url": "/v1/games/blackwater" }, + { + "slug": "blackwell-bundle", + "name": "Blackwell Bundle", + "url": "/v1/games/blackwell-bundle" + }, { "slug": "blackwell-convergence", "name": "Blackwell Convergence", @@ -85421,6 +87651,11 @@ "name": "Blade Assault", "url": "/v1/games/blade-assault" }, + { + "slug": "blade-ball", + "name": "Blade Ball", + "url": "/v1/games/blade-ball" + }, { "slug": "blade-ball-arena", "name": "Blade Ball Arena", @@ -85786,6 +88021,11 @@ "name": "Blades of Jianghu: Ballad of Wind and Dust", "url": "/v1/games/blades-of-jianghu-ballad-of-wind-and-dust" }, + { + "slug": "blades-of-passage", + "name": "Blades of Passage", + "url": "/v1/games/blades-of-passage" + }, { "slug": "blades-of-steel", "name": "Blades of Steel", @@ -85801,6 +88041,11 @@ "name": "Blades of Thunder II", "url": "/v1/games/blades-of-thunder-ii" }, + { + "slug": "blades-of-time", + "name": "Blades of Time", + "url": "/v1/games/blades-of-time" + }, { "slug": "blades-of-vengeance", "name": "Blades of Vengeance", @@ -86036,6 +88281,11 @@ "name": "Blasphemer", "url": "/v1/games/blasphemer" }, + { + "slug": "blasphemous-2-mea-culpa", + "name": "Blasphemous 2: Mea Culpa", + "url": "/v1/games/blasphemous-2-mea-culpa" + }, { "slug": "blast", "name": "Blast", @@ -86521,6 +88771,11 @@ "name": "BlazBlue: Continuum Shift", "url": "/v1/games/blazblue-continuum-shift" }, + { + "slug": "blazblue-continuum-shift-extend", + "name": "BlazBlue: Continuum Shift Extend", + "url": "/v1/games/blazblue-continuum-shift-extend" + }, { "slug": "blazblue-continuum-shift-ii", "name": "BlazBlue: Continuum Shift II", @@ -86531,6 +88786,11 @@ "name": "BlazBlue: Cross Tag Battle", "url": "/v1/games/blazblue-cross-tag-battle" }, + { + "slug": "blazblue-cross-tag-battle-special-edition", + "name": "BlazBlue: Cross Tag Battle Special Edition", + "url": "/v1/games/blazblue-cross-tag-battle-special-edition" + }, { "slug": "blaze-q126187486", "name": "Blaze", @@ -86941,11 +89201,21 @@ "name": "Blek", "url": "/v1/games/blek" }, + { + "slug": "blek-q106803076", + "name": "Blek+", + "url": "/v1/games/blek-q106803076" + }, { "slug": "blend-x-brand", "name": "Blend X Brand", "url": "/v1/games/blend-x-brand" }, + { + "slug": "blender-ball", + "name": "Blender Ball", + "url": "/v1/games/blender-ball" + }, { "slug": "blender-bros", "name": "Blender Bros.", @@ -87421,6 +89691,11 @@ "name": "Blink: Rogues", "url": "/v1/games/blink-rogues" }, + { + "slug": "blinky-q121409786", + "name": "Blinky", + "url": "/v1/games/blinky-q121409786" + }, { "slug": "blinky", "name": "Blinky", @@ -87576,6 +89851,11 @@ "name": "Blitz! Action Football", "url": "/v1/games/blitz-action-football" }, + { + "slug": "blitz-the-league-q102293489", + "name": "Blitz: The League", + "url": "/v1/games/blitz-the-league-q102293489" + }, { "slug": "blitz-the-league", "name": "Blitz: The League", @@ -87606,6 +89886,11 @@ "name": "BlitzRift", "url": "/v1/games/blitzrift" }, + { + "slug": "blitzball", + "name": "Blitzball", + "url": "/v1/games/blitzball" + }, { "slug": "blitzcrank-s-poro-roundup", "name": "Blitzcrank's Poro Roundup", @@ -87646,6 +89931,21 @@ "name": "Blitzkrieg at the Ardennes", "url": "/v1/games/blitzkrieg-at-the-ardennes" }, + { + "slug": "blitzkrieg-burning-horizon", + "name": "Blitzkrieg: Burning Horizon", + "url": "/v1/games/blitzkrieg-burning-horizon" + }, + { + "slug": "blitzkrieg-green-devils", + "name": "Blitzkrieg: Green Devils", + "url": "/v1/games/blitzkrieg-green-devils" + }, + { + "slug": "blitzkrieg-rolling-thunder", + "name": "Blitzkrieg: Rolling Thunder", + "url": "/v1/games/blitzkrieg-rolling-thunder" + }, { "slug": "blitzpoint", "name": "Blitzpoint", @@ -89041,6 +91341,91 @@ "name": "Blood Bowl 2", "url": "/v1/games/blood-bowl-2" }, + { + "slug": "blood-bowl-2-amazon", + "name": "Blood Bowl 2 - Amazon", + "url": "/v1/games/blood-bowl-2-amazon" + }, + { + "slug": "blood-bowl-2-chaos-dwarfs", + "name": "Blood Bowl 2 - Chaos Dwarfs", + "url": "/v1/games/blood-bowl-2-chaos-dwarfs" + }, + { + "slug": "blood-bowl-2-death-zone", + "name": "Blood Bowl 2 - DEATH ZONE", + "url": "/v1/games/blood-bowl-2-death-zone" + }, + { + "slug": "blood-bowl-2-elven-union", + "name": "Blood Bowl 2 - Elven Union", + "url": "/v1/games/blood-bowl-2-elven-union" + }, + { + "slug": "blood-bowl-2-goblins", + "name": "Blood Bowl 2 - Goblins", + "url": "/v1/games/blood-bowl-2-goblins" + }, + { + "slug": "blood-bowl-2-halflings", + "name": "Blood Bowl 2 - Halflings", + "url": "/v1/games/blood-bowl-2-halflings" + }, + { + "slug": "blood-bowl-2-khemri", + "name": "Blood Bowl 2 - Khemri", + "url": "/v1/games/blood-bowl-2-khemri" + }, + { + "slug": "blood-bowl-2-kislev-circus", + "name": "Blood Bowl 2 - Kislev Circus", + "url": "/v1/games/blood-bowl-2-kislev-circus" + }, + { + "slug": "blood-bowl-2-lizardmen", + "name": "Blood Bowl 2 - Lizardmen", + "url": "/v1/games/blood-bowl-2-lizardmen" + }, + { + "slug": "blood-bowl-2-necromantic", + "name": "Blood Bowl 2 - Necromantic", + "url": "/v1/games/blood-bowl-2-necromantic" + }, + { + "slug": "blood-bowl-2-norse", + "name": "Blood Bowl 2 - Norse", + "url": "/v1/games/blood-bowl-2-norse" + }, + { + "slug": "blood-bowl-2-nurgle", + "name": "Blood Bowl 2 - Nurgle", + "url": "/v1/games/blood-bowl-2-nurgle" + }, + { + "slug": "blood-bowl-2-ogre", + "name": "Blood Bowl 2 - Ogre", + "url": "/v1/games/blood-bowl-2-ogre" + }, + { + "slug": "blood-bowl-2-undead", + "name": "Blood Bowl 2 - Undead", + "url": "/v1/games/blood-bowl-2-undead" + }, + { + "slug": "blood-bowl-2-underworld-denizens", + "name": "Blood Bowl 2 - Underworld Denizens", + "url": "/v1/games/blood-bowl-2-underworld-denizens" + }, + { + "slug": "blood-bowl-2-vampire", + "name": "Blood Bowl 2 - Vampire", + "url": "/v1/games/blood-bowl-2-vampire" + }, + { + "slug": "blood-bowl-2-wood-elves", + "name": "Blood Bowl 2 - Wood Elves", + "url": "/v1/games/blood-bowl-2-wood-elves" + }, { "slug": "blood-bowl-3", "name": "Blood Bowl 3", @@ -89196,6 +91581,11 @@ "name": "Blood II: The Chosen", "url": "/v1/games/blood-ii-the-chosen" }, + { + "slug": "blood-ii-the-chosen-the-nightmare-levels", + "name": "Blood II: The Chosen - The Nightmare Levels", + "url": "/v1/games/blood-ii-the-chosen-the-nightmare-levels" + }, { "slug": "blood-impact", "name": "Blood Impact", @@ -89641,6 +92031,11 @@ "name": "Blood of Darkness", "url": "/v1/games/blood-of-darkness" }, + { + "slug": "blood-of-heroes", + "name": "Blood of Heroes", + "url": "/v1/games/blood-of-heroes" + }, { "slug": "blood-of-inquisition", "name": "Blood of Inquisition", @@ -89726,6 +92121,11 @@ "name": "Blood: Fresh Supply", "url": "/v1/games/blood-fresh-supply" }, + { + "slug": "blood-plasma-pak", + "name": "Blood: Plasma Pak", + "url": "/v1/games/blood-plasma-pak" + }, { "slug": "blood-refreshed-supply", "name": "Blood: Refreshed Supply", @@ -89821,6 +92221,11 @@ "name": "BloodRayne: Terminal Cut", "url": "/v1/games/bloodrayne-terminal-cut" }, + { + "slug": "bloodrayne-the-shroud", + "name": "BloodRayne: The Shroud", + "url": "/v1/games/bloodrayne-the-shroud" + }, { "slug": "bloodrush-undying-wish", "name": "BloodRush: Undying Wish", @@ -89871,6 +92276,11 @@ "name": "Bloodborne PSX", "url": "/v1/games/bloodborne-psx" }, + { + "slug": "bloodborne-the-old-hunters", + "name": "Bloodborne: The Old Hunters", + "url": "/v1/games/bloodborne-the-old-hunters" + }, { "slug": "bloodbound", "name": "Bloodbound", @@ -90116,11 +92526,21 @@ "name": "Bloodstone: An Epic Dwarven Tale", "url": "/v1/games/bloodstone-an-epic-dwarven-tale" }, + { + "slug": "bloodstrike", + "name": "Bloodstrike", + "url": "/v1/games/bloodstrike" + }, { "slug": "bloodstroke", "name": "Bloodstroke", "url": "/v1/games/bloodstroke" }, + { + "slug": "bloodsucker-pack", + "name": "Bloodsucker Pack", + "url": "/v1/games/bloodsucker-pack" + }, { "slug": "bloodthief", "name": "Bloodthief", @@ -90626,6 +93046,11 @@ "name": "Bloons TD 6", "url": "/v1/games/bloons-td-6" }, + { + "slug": "bloons-td-6-q110797896", + "name": "Bloons TD 6+", + "url": "/v1/games/bloons-td-6-q110797896" + }, { "slug": "bloons-td-battles", "name": "Bloons TD Battles", @@ -91116,6 +93541,16 @@ "name": "Blue Funk", "url": "/v1/games/blue-funk" }, + { + "slug": "blue-gale-complete-pack", + "name": "Blue Gale Complete Pack", + "url": "/v1/games/blue-gale-complete-pack" + }, + { + "slug": "blue-gale-memorial-collection", + "name": "Blue Gale Memorial Collection", + "url": "/v1/games/blue-gale-memorial-collection" + }, { "slug": "blue-hawk", "name": "Blue Hawk", @@ -91631,6 +94066,11 @@ "name": "Blues Brothers 2000", "url": "/v1/games/blues-brothers-2000" }, + { + "slug": "blues-brothers-2-jukebox-adventure", + "name": "Blues Brothers 2: Jukebox Adventure", + "url": "/v1/games/blues-brothers-2-jukebox-adventure" + }, { "slug": "blueshift", "name": "Blueshift", @@ -91716,6 +94156,11 @@ "name": "Blur", "url": "/v1/games/blur" }, + { + "slug": "blur-2", + "name": "Blur 2", + "url": "/v1/games/blur-2" + }, { "slug": "blur-overdrive", "name": "Blur Overdrive", @@ -92606,6 +95051,11 @@ "name": "Boin", "url": "/v1/games/boin" }, + { + "slug": "boing-q113517043", + "name": "Boing", + "url": "/v1/games/boing-q113517043" + }, { "slug": "boing", "name": "Boing", @@ -92846,6 +95296,11 @@ "name": "Bold Moves", "url": "/v1/games/bold-moves" }, + { + "slug": "bold-moves-q119947068", + "name": "Bold Moves+", + "url": "/v1/games/bold-moves-q119947068" + }, { "slug": "boldly-forward", "name": "Boldly Forward", @@ -93026,6 +95481,11 @@ "name": "Bomb Bowling X", "url": "/v1/games/bomb-bowling-x" }, + { + "slug": "bomb-buddies", + "name": "Bomb Buddies", + "url": "/v1/games/bomb-buddies" + }, { "slug": "bomb-busters", "name": "Bomb Busters", @@ -93041,6 +95501,11 @@ "name": "Bomb Club Deluxe", "url": "/v1/games/bomb-club-deluxe" }, + { + "slug": "bomb-crypto", + "name": "Bomb Crypto", + "url": "/v1/games/bomb-crypto" + }, { "slug": "bomb-defense", "name": "Bomb Defense", @@ -93456,6 +95921,11 @@ "name": "Bombermaaan", "url": "/v1/games/bombermaaan" }, + { + "slug": "bomberman-q104873002", + "name": "Bomberman", + "url": "/v1/games/bomberman-q104873002" + }, { "slug": "bomberman-q11338852", "name": "Bomberman", @@ -93706,6 +96176,11 @@ "name": "Bomberman World", "url": "/v1/games/bomberman-world" }, + { + "slug": "bomberman-act-zero", + "name": "Bomberman: Act Zero", + "url": "/v1/games/bomberman-act-zero" + }, { "slug": "bomberman-bakufuu-sentai-bombermen", "name": "Bomberman: Bakufuu Sentai Bombermen", @@ -94411,6 +96886,16 @@ "name": "Bonus", "url": "/v1/games/bonus" }, + { + "slug": "bonus-spin-x", + "name": "Bonus Spin X", + "url": "/v1/games/bonus-spin-x" + }, + { + "slug": "bonus-spin-z", + "name": "Bonus Spin Z", + "url": "/v1/games/bonus-spin-z" + }, { "slug": "bonville-bandit", "name": "Bonville Bandit", @@ -94936,6 +97421,11 @@ "name": "Boom", "url": "/v1/games/boom-q135454270" }, + { + "slug": "boom-q67197270", + "name": "Boom", + "url": "/v1/games/boom-q67197270" + }, { "slug": "boom", "name": "Boom", @@ -95656,6 +98146,11 @@ "name": "Borderlands 2 VR", "url": "/v1/games/borderlands-2-vr" }, + { + "slug": "borderlands-2-tiny-tina-s-assault-on-dragon-keep", + "name": "Borderlands 2: Tiny Tina's Assault on Dragon Keep", + "url": "/v1/games/borderlands-2-tiny-tina-s-assault-on-dragon-keep" + }, { "slug": "borderlands-3", "name": "Borderlands 3", @@ -95671,6 +98166,11 @@ "name": "Borderlands 4", "url": "/v1/games/borderlands-4" }, + { + "slug": "borderlands-legendary-collection", + "name": "Borderlands Legendary Collection", + "url": "/v1/games/borderlands-legendary-collection" + }, { "slug": "borderlands-legends", "name": "Borderlands Legends", @@ -98431,6 +100931,11 @@ "name": "BrainAccelerator", "url": "/v1/games/brainaccelerator" }, + { + "slug": "brainbread", + "name": "BrainBread", + "url": "/v1/games/brainbread" + }, { "slug": "brainbread-2", "name": "BrainBread 2", @@ -98661,6 +101166,11 @@ "name": "Brash Monster Simulator", "url": "/v1/games/brash-monster-simulator" }, + { + "slug": "brashs-super-games-pack", + "name": "Brashs Super Games Pack", + "url": "/v1/games/brashs-super-games-pack" + }, { "slug": "brasil-fusion", "name": "Brasil Fusion", @@ -99446,6 +101956,11 @@ "name": "Brazilian Street Food Simulator", "url": "/v1/games/brazilian-street-food-simulator" }, + { + "slug": "breach-q112275098", + "name": "Breach", + "url": "/v1/games/breach-q112275098" + }, { "slug": "breach-q33101006", "name": "Breach", @@ -99871,6 +102386,11 @@ "name": "BreakOut Revolution", "url": "/v1/games/breakout-revolution" }, + { + "slug": "breakoutx", + "name": "BreakOutX", + "url": "/v1/games/breakoutx" + }, { "slug": "breakquest", "name": "BreakQuest", @@ -99896,6 +102416,16 @@ "name": "Break_In", "url": "/v1/games/break-in-q124063745" }, + { + "slug": "breakaway-q28453070", + "name": "Breakaway", + "url": "/v1/games/breakaway-q28453070" + }, + { + "slug": "breakaway", + "name": "Breakaway", + "url": "/v1/games/breakaway" + }, { "slug": "breakdown-q100876491", "name": "Breakdown", @@ -99956,6 +102486,11 @@ "name": "Breakfall: Nuclear Winter", "url": "/v1/games/breakfall-nuclear-winter" }, + { + "slug": "breakfast-blast", + "name": "Breakfast Blast", + "url": "/v1/games/breakfast-blast" + }, { "slug": "breakforcist", "name": "Breakforcist", @@ -101051,6 +103586,11 @@ "name": "Bridge Constructor Stunts", "url": "/v1/games/bridge-constructor-stunts" }, + { + "slug": "bridge-constructor-q110797838", + "name": "Bridge Constructor+", + "url": "/v1/games/bridge-constructor-q110797838" + }, { "slug": "bridge-constructor-the-walking-dead", "name": "Bridge Constructor: The Walking Dead", @@ -101371,6 +103911,11 @@ "name": "Bright Paw", "url": "/v1/games/bright-paw" }, + { + "slug": "bright-paw-definitive-edition", + "name": "Bright Paw: Definitive Edition", + "url": "/v1/games/bright-paw-definitive-edition" + }, { "slug": "bright-side-quiz", "name": "Bright Side: Quiz", @@ -101626,6 +104171,26 @@ "name": "Brink of War", "url": "/v1/games/brink-of-war" }, + { + "slug": "brink-agents-of-change", + "name": "Brink: Agents of Change", + "url": "/v1/games/brink-agents-of-change" + }, + { + "slug": "brink-complete-pack", + "name": "Brink: Complete Pack", + "url": "/v1/games/brink-complete-pack" + }, + { + "slug": "brink-doom-the-psycho-combo-pack", + "name": "Brink: Doom/The Psycho Combo Pack", + "url": "/v1/games/brink-doom-the-psycho-combo-pack" + }, + { + "slug": "brink-fallout-specops-combo-pack", + "name": "Brink: Fallout/SpecOps Combo Pack", + "url": "/v1/games/brink-fallout-specops-combo-pack" + }, { "slug": "brinkmanship-q135050523", "name": "Brinkmanship", @@ -102381,6 +104946,11 @@ "name": "Brookhaven Grimoire", "url": "/v1/games/brookhaven-grimoire" }, + { + "slug": "brookhaven-rp", + "name": "Brookhaven RP", + "url": "/v1/games/brookhaven-rp" + }, { "slug": "brooks-in-wild-west", "name": "Brooks in Wild West", @@ -102546,6 +105116,11 @@ "name": "Brothers in Arms: D-Day", "url": "/v1/games/brothers-in-arms-d-day" }, + { + "slug": "brothers-in-arms-double-time", + "name": "Brothers in Arms: Double Time", + "url": "/v1/games/brothers-in-arms-double-time" + }, { "slug": "brothers-in-arms-earned-in-blood", "name": "Brothers in Arms: Earned in Blood", @@ -103131,6 +105706,11 @@ "name": "Bubble Bobble Neo!", "url": "/v1/games/bubble-bobble-neo" }, + { + "slug": "bubble-bobble-nostalgie", + "name": "Bubble Bobble Nostalgie", + "url": "/v1/games/bubble-bobble-nostalgie" + }, { "slug": "bubble-bobble-part-2", "name": "Bubble Bobble Part 2", @@ -103851,6 +106431,11 @@ "name": "Buddy Simulator 1984", "url": "/v1/games/buddy-simulator-1984" }, + { + "slug": "buddy-thunderstruck-the-maybe-pile", + "name": "Buddy Thunderstruck: The Maybe Pile", + "url": "/v1/games/buddy-thunderstruck-the-maybe-pile" + }, { "slug": "buddy-and-friends-on-halloween", "name": "Buddy and Friends on Halloween", @@ -104381,6 +106966,11 @@ "name": "Bugsnax", "url": "/v1/games/bugsnax" }, + { + "slug": "bugsnax-the-isle-of-bigsnax", + "name": "Bugsnax: The Isle of BIGsnax", + "url": "/v1/games/bugsnax-the-isle-of-bigsnax" + }, { "slug": "bugspeed-collider", "name": "Bugspeed Collider", @@ -105341,6 +107931,11 @@ "name": "Bully", "url": "/v1/games/bully" }, + { + "slug": "bully-2", + "name": "Bully 2", + "url": "/v1/games/bully-2" + }, { "slug": "bully-ball-brigade", "name": "Bully Ball Brigade", @@ -105671,6 +108266,16 @@ "name": "Bundle Kitt", "url": "/v1/games/bundle-kitt" }, + { + "slug": "bundle-for-racial-justice-and-equality", + "name": "Bundle for Racial Justice and Equality", + "url": "/v1/games/bundle-for-racial-justice-and-equality" + }, + { + "slug": "bundle-for-ukraine", + "name": "Bundle for Ukraine", + "url": "/v1/games/bundle-for-ukraine" + }, { "slug": "bundle-of-joy", "name": "Bundle of Joy", @@ -105681,6 +108286,11 @@ "name": "Bung Ball", "url": "/v1/games/bung-ball" }, + { + "slug": "bungo-and-alchemist", + "name": "Bungo and Alchemist", + "url": "/v1/games/bungo-and-alchemist" + }, { "slug": "bungo-s-bungite-collector", "name": "Bungo's Bungite Collector", @@ -106511,6 +109121,11 @@ "name": "Burgerwise the Clown", "url": "/v1/games/burgerwise-the-clown" }, + { + "slug": "burgerzilla", + "name": "Burgerzilla", + "url": "/v1/games/burgerzilla" + }, { "slug": "burggeist", "name": "Burggeist", @@ -106806,6 +109421,11 @@ "name": "Burning Brick Breaker", "url": "/v1/games/burning-brick-breaker" }, + { + "slug": "burning-car-theme", + "name": "Burning Car Theme", + "url": "/v1/games/burning-car-theme" + }, { "slug": "burning-cars", "name": "Burning Cars", @@ -107526,6 +110146,11 @@ "name": "Buster Ball", "url": "/v1/games/buster-ball" }, + { + "slug": "buster-bros-collection", + "name": "Buster Bros. Collection", + "url": "/v1/games/buster-bros-collection" + }, { "slug": "buster-fight", "name": "Buster Fight", @@ -108406,6 +111031,11 @@ "name": "C.E.O.", "url": "/v1/games/c-e-o" }, + { + "slug": "c-h-a-i-n-q124307573", + "name": "C.H.A.I.N.", + "url": "/v1/games/c-h-a-i-n-q124307573" + }, { "slug": "c-h-a-i-n", "name": "C.H.A.I.N.", @@ -109116,6 +111746,11 @@ "name": "CATpillAr", "url": "/v1/games/catpillar" }, + { + "slug": "cave-shooting-collection", + "name": "CAVE Shooting Collection", + "url": "/v1/games/cave-shooting-collection" + }, { "slug": "cave-vr", "name": "CAVE VR", @@ -109291,6 +111926,11 @@ "name": "CGENcore", "url": "/v1/games/cgencore" }, + { + "slug": "cgi", + "name": "CGI", + "url": "/v1/games/cgi" + }, { "slug": "cgi-the-game", "name": "CGI™: The Game", @@ -109301,6 +111941,11 @@ "name": "CHAIN SAW", "url": "/v1/games/chain-saw" }, + { + "slug": "chainsaw-dance-demo", + "name": "CHAINSAW DANCE DEMO", + "url": "/v1/games/chainsaw-dance-demo" + }, { "slug": "chairs", "name": "CHAIRS", @@ -109631,6 +112276,11 @@ "name": "CINEMA", "url": "/v1/games/cinema-q135059814" }, + { + "slug": "cinema-keiba-japan-world-cup", + "name": "CINEMA KEIBA/JAPAN WORLD CUP", + "url": "/v1/games/cinema-keiba-japan-world-cup" + }, { "slug": "cineris-somnia", "name": "CINERIS SOMNIA", @@ -110496,6 +113146,141 @@ "name": "CPU Invaders", "url": "/v1/games/cpu-invaders" }, + { + "slug": "cr-deluxe-sea-story", + "name": "CR Deluxe Sea Story", + "url": "/v1/games/cr-deluxe-sea-story" + }, + { + "slug": "cr-drum-sea-story", + "name": "CR Drum Sea Story", + "url": "/v1/games/cr-drum-sea-story" + }, + { + "slug": "cr-drum-sea-story-black", + "name": "CR Drum Sea Story Black", + "url": "/v1/games/cr-drum-sea-story-black" + }, + { + "slug": "cr-go-go-marine", + "name": "CR GO!GO! Marine", + "url": "/v1/games/cr-go-go-marine" + }, + { + "slug": "cr-garo", + "name": "CR Garo", + "url": "/v1/games/cr-garo" + }, + { + "slug": "cr-gingira-paradise-2", + "name": "CR Gingira Paradise 2", + "url": "/v1/games/cr-gingira-paradise-2" + }, + { + "slug": "cr-gokuj-parodius", + "name": "CR Gokujō Parodius!", + "url": "/v1/games/cr-gokuj-parodius" + }, + { + "slug": "cr-great-sea-story", + "name": "CR Great Sea Story", + "url": "/v1/games/cr-great-sea-story" + }, + { + "slug": "cr-great-sea-story-2", + "name": "CR Great Sea Story 2", + "url": "/v1/games/cr-great-sea-story-2" + }, + { + "slug": "cr-great-sea-story-3", + "name": "CR Great Sea Story 3", + "url": "/v1/games/cr-great-sea-story-3" + }, + { + "slug": "cr-great-sea-story-4", + "name": "CR Great Sea Story 4", + "url": "/v1/games/cr-great-sea-story-4" + }, + { + "slug": "cr-great-sea-story-special", + "name": "CR Great Sea Story Special", + "url": "/v1/games/cr-great-sea-story-special" + }, + { + "slug": "cr-hyper-sea-story-in-caribbean", + "name": "CR Hyper Sea Story in Caribbean", + "url": "/v1/games/cr-hyper-sea-story-in-caribbean" + }, + { + "slug": "cr-new-sea-story", + "name": "CR New Sea Story", + "url": "/v1/games/cr-new-sea-story" + }, + { + "slug": "cr-new-sea-story-with-agnes-lum", + "name": "CR New Sea Story With Agnes Lum", + "url": "/v1/games/cr-new-sea-story-with-agnes-lum" + }, + { + "slug": "cr-pachinko-akb48", + "name": "CR Pachinko AKB48", + "url": "/v1/games/cr-pachinko-akb48" + }, + { + "slug": "cr-parodius-da", + "name": "CR Parodius Da!", + "url": "/v1/games/cr-parodius-da" + }, + { + "slug": "cr-premium-sea-story", + "name": "CR Premium Sea Story", + "url": "/v1/games/cr-premium-sea-story" + }, + { + "slug": "cr-sea-story-3r", + "name": "CR Sea Story 3R", + "url": "/v1/games/cr-sea-story-3r" + }, + { + "slug": "cr-sea-story-aqua", + "name": "CR Sea Story Aqua", + "url": "/v1/games/cr-sea-story-aqua" + }, + { + "slug": "cr-super-sea-story", + "name": "CR Super Sea Story", + "url": "/v1/games/cr-super-sea-story" + }, + { + "slug": "cr-super-sea-story-in-japan", + "name": "CR Super Sea Story in Japan", + "url": "/v1/games/cr-super-sea-story-in-japan" + }, + { + "slug": "cr-super-sea-story-in-okinawa", + "name": "CR Super Sea Story in Okinawa", + "url": "/v1/games/cr-super-sea-story-in-okinawa" + }, + { + "slug": "cr-super-sea-story-in-okinawa-2", + "name": "CR Super Sea Story in Okinawa 2", + "url": "/v1/games/cr-super-sea-story-in-okinawa-2" + }, + { + "slug": "cr-super-sea-story-in-okinawa-3", + "name": "CR Super Sea Story in Okinawa 3", + "url": "/v1/games/cr-super-sea-story-in-okinawa-3" + }, + { + "slug": "cr-super-sea-story-in-okinawa-4", + "name": "CR Super Sea Story in Okinawa 4", + "url": "/v1/games/cr-super-sea-story-in-okinawa-4" + }, + { + "slug": "cra-sea-story-wing", + "name": "CRA Sea Story-Wing", + "url": "/v1/games/cra-sea-story-wing" + }, { "slug": "crackhead", "name": "CRACKHEAD", @@ -110721,6 +113506,11 @@ "name": "CROSSWIRE", "url": "/v1/games/crosswire" }, + { + "slug": "croteam-vr-bundle", + "name": "CROTEAM VR Bundle", + "url": "/v1/games/croteam-vr-bundle" + }, { "slug": "crow", "name": "CROW", @@ -111386,6 +114176,11 @@ "name": "Cabaret Asteroids", "url": "/v1/games/cabaret-asteroids" }, + { + "slug": "cabbage", + "name": "Cabbage", + "url": "/v1/games/cabbage" + }, { "slug": "cabbage-crop", "name": "Cabbage Crop", @@ -111501,11 +114296,21 @@ "name": "Cabela's Big Game Hunter II", "url": "/v1/games/cabela-s-big-game-hunter-ii" }, + { + "slug": "cabela-s-big-game-hunter-ii-open-season", + "name": "Cabela's Big Game Hunter II: Open Season", + "url": "/v1/games/cabela-s-big-game-hunter-ii-open-season" + }, { "slug": "cabela-s-big-game-hunter-iii", "name": "Cabela's Big Game Hunter III", "url": "/v1/games/cabela-s-big-game-hunter-iii" }, + { + "slug": "cabela-s-big-game-hunter-iii-the-next-harvest", + "name": "Cabela's Big Game Hunter III: The Next Harvest", + "url": "/v1/games/cabela-s-big-game-hunter-iii-the-next-harvest" + }, { "slug": "cabela-s-big-game-hunter-2004-season", "name": "Cabela's Big Game Hunter: 2004 Season", @@ -111831,6 +114636,11 @@ "name": "Cadaver: The Last Supper", "url": "/v1/games/cadaver-the-last-supper" }, + { + "slug": "cadaver-the-payoff", + "name": "Cadaver: The Payoff", + "url": "/v1/games/cadaver-the-payoff" + }, { "slug": "caddy-s-tea-service", "name": "Caddy's Tea Service", @@ -112516,6 +115326,11 @@ "name": "Calico & Co.", "url": "/v1/games/calico-co" }, + { + "slug": "calico-doom", + "name": "Calico Doom", + "url": "/v1/games/calico-doom" + }, { "slug": "california-escapades", "name": "California Escapades", @@ -112696,6 +115511,11 @@ "name": "Call of Cthulhu: Dark Corners of the Earth", "url": "/v1/games/call-of-cthulhu-dark-corners-of-the-earth" }, + { + "slug": "call-of-cthulhu-destiny-s-end", + "name": "Call of Cthulhu: Destiny's End", + "url": "/v1/games/call-of-cthulhu-destiny-s-end" + }, { "slug": "call-of-cthulhu-the-wasted-land", "name": "Call of Cthulhu: The Wasted Land", @@ -112766,11 +115586,21 @@ "name": "Call of Duty: Black Ops", "url": "/v1/games/call-of-duty-black-ops" }, + { + "slug": "call-of-duty-black-ops-mac-edition", + "name": "Call of Duty: Black Ops - Mac Edition", + "url": "/v1/games/call-of-duty-black-ops-mac-edition" + }, { "slug": "call-of-duty-black-ops-4", "name": "Call of Duty: Black Ops 4", "url": "/v1/games/call-of-duty-black-ops-4" }, + { + "slug": "call-of-duty-black-ops-5", + "name": "Call of Duty: Black Ops 5", + "url": "/v1/games/call-of-duty-black-ops-5" + }, { "slug": "call-of-duty-black-ops-6-zombies", "name": "Call of Duty: Black Ops 6 Zombies", @@ -112786,6 +115616,11 @@ "name": "Call of Duty: Black Ops III", "url": "/v1/games/call-of-duty-black-ops-iii" }, + { + "slug": "call-of-duty-black-ops-iii-zombies-chronicles", + "name": "Call of Duty: Black Ops III - Zombies Chronicles", + "url": "/v1/games/call-of-duty-black-ops-iii-zombies-chronicles" + }, { "slug": "call-of-duty-black-ops-zombies", "name": "Call of Duty: Black Ops – Zombies", @@ -112796,6 +115631,11 @@ "name": "Call of Duty: Finest Hour", "url": "/v1/games/call-of-duty-finest-hour" }, + { + "slug": "call-of-duty-future-warfare", + "name": "Call of Duty: Future Warfare", + "url": "/v1/games/call-of-duty-future-warfare" + }, { "slug": "call-of-duty-global-operations", "name": "Call of Duty: Global Operations", @@ -112811,6 +115651,11 @@ "name": "Call of Duty: Infinite Warfare", "url": "/v1/games/call-of-duty-infinite-warfare" }, + { + "slug": "call-of-duty-legacy", + "name": "Call of Duty: Legacy", + "url": "/v1/games/call-of-duty-legacy" + }, { "slug": "call-of-duty-modern-warfare", "name": "Call of Duty: Modern Warfare", @@ -112841,6 +115686,16 @@ "name": "Call of Duty: Modern Warfare III", "url": "/v1/games/call-of-duty-modern-warfare-iii" }, + { + "slug": "call-of-duty-modern-warfare-iii-tracer-pack-ghost-punk-pro-pack", + "name": "Call of Duty: Modern Warfare III - Tracer Pack: Ghost Punk Pro Pack", + "url": "/v1/games/call-of-duty-modern-warfare-iii-tracer-pack-ghost-punk-pro-pack" + }, + { + "slug": "call-of-duty-modern-warfare-iii-tracer-pack-underboss-pro-pack", + "name": "Call of Duty: Modern Warfare III - Tracer Pack: Underboss Pro Pack", + "url": "/v1/games/call-of-duty-modern-warfare-iii-tracer-pack-underboss-pro-pack" + }, { "slug": "call-of-duty-modern-warfare-remastered", "name": "Call of Duty: Modern Warfare Remastered", @@ -112861,6 +115716,11 @@ "name": "Call of Duty: Strike Team", "url": "/v1/games/call-of-duty-strike-team" }, + { + "slug": "call-of-duty-united-offensive", + "name": "Call of Duty: United Offensive", + "url": "/v1/games/call-of-duty-united-offensive" + }, { "slug": "call-of-duty-wwii", "name": "Call of Duty: WWII", @@ -113011,6 +115871,11 @@ "name": "Call of VII", "url": "/v1/games/call-of-vii" }, + { + "slug": "call-of-vita-hackzone", + "name": "Call of Vita: Hackzone", + "url": "/v1/games/call-of-vita-hackzone" + }, { "slug": "call-of-waifu-warzone", "name": "Call of Waifu : Warzone", @@ -113081,6 +115946,11 @@ "name": "Call the Tune", "url": "/v1/games/call-the-tune" }, + { + "slug": "call-to-arms-q57974040", + "name": "Call to Arms", + "url": "/v1/games/call-to-arms-q57974040" + }, { "slug": "call-to-arms-q97585741", "name": "Call to Arms", @@ -113091,6 +115961,16 @@ "name": "Call to Arms", "url": "/v1/games/call-to-arms" }, + { + "slug": "call-to-arms-gates-of-hell-ostfront", + "name": "Call to Arms - Gates of Hell: Ostfront", + "url": "/v1/games/call-to-arms-gates-of-hell-ostfront" + }, + { + "slug": "call-to-arms-gates-of-hell-talvisota", + "name": "Call to Arms - Gates of Hell: Talvisota", + "url": "/v1/games/call-to-arms-gates-of-hell-talvisota" + }, { "slug": "call-to-arms-panzer-elite", "name": "Call to Arms: Panzer Elite", @@ -113261,6 +116141,11 @@ "name": "Calrivar Cluster", "url": "/v1/games/calrivar-cluster" }, + { + "slug": "caltron-6-in-1", + "name": "Caltron 6 in 1", + "url": "/v1/games/caltron-6-in-1" + }, { "slug": "calturin", "name": "Calturin", @@ -113556,6 +116441,11 @@ "name": "Campaign Clicker", "url": "/v1/games/campaign-clicker" }, + { + "slug": "campaign-eckmuhl", + "name": "Campaign Eckmuhl", + "url": "/v1/games/campaign-eckmuhl" + }, { "slug": "campaign-ii", "name": "Campaign II", @@ -114051,6 +116941,11 @@ "name": "Candy Blast", "url": "/v1/games/candy-blast" }, + { + "slug": "candy-box", + "name": "Candy Box", + "url": "/v1/games/candy-box" + }, { "slug": "candy-box-2", "name": "Candy Box 2", @@ -114246,6 +117141,11 @@ "name": "Candy, Please!", "url": "/v1/games/candy-please" }, + { + "slug": "candy-please-demo", + "name": "Candy, Please! (Demo)", + "url": "/v1/games/candy-please-demo" + }, { "slug": "candymeleon", "name": "CandyMeleon", @@ -114276,6 +117176,11 @@ "name": "Candyboy", "url": "/v1/games/candyboy" }, + { + "slug": "candytron-3000", + "name": "Candytron 3000", + "url": "/v1/games/candytron-3000" + }, { "slug": "candyville-cafe", "name": "Candyville Cafe", @@ -114786,31 +117691,76 @@ "name": "CapRiders: Euro Soccer", "url": "/v1/games/capriders-euro-soccer" }, + { + "slug": "capcom-arcade-2nd-stadium", + "name": "Capcom Arcade 2nd Stadium", + "url": "/v1/games/capcom-arcade-2nd-stadium" + }, { "slug": "capcom-arcade-cabinet", "name": "Capcom Arcade Cabinet", "url": "/v1/games/capcom-arcade-cabinet" }, + { + "slug": "capcom-arcade-stadium", + "name": "Capcom Arcade Stadium", + "url": "/v1/games/capcom-arcade-stadium" + }, { "slug": "capcom-baseball", "name": "Capcom Baseball", "url": "/v1/games/capcom-baseball" }, + { + "slug": "capcom-beat-em-up-bundle", + "name": "Capcom Beat 'Em Up Bundle", + "url": "/v1/games/capcom-beat-em-up-bundle" + }, { "slug": "capcom-bowling", "name": "Capcom Bowling", "url": "/v1/games/capcom-bowling" }, + { + "slug": "capcom-classics-collection", + "name": "Capcom Classics Collection", + "url": "/v1/games/capcom-classics-collection" + }, + { + "slug": "capcom-classics-mini-mix", + "name": "Capcom Classics Mini Mix", + "url": "/v1/games/capcom-classics-mini-mix" + }, + { + "slug": "capcom-collection", + "name": "Capcom Collection", + "url": "/v1/games/capcom-collection" + }, + { + "slug": "capcom-digital-collection", + "name": "Capcom Digital Collection", + "url": "/v1/games/capcom-digital-collection" + }, { "slug": "capcom-fighting-all-stars", "name": "Capcom Fighting All-Stars", "url": "/v1/games/capcom-fighting-all-stars" }, + { + "slug": "capcom-fighting-collection-q111353645", + "name": "Capcom Fighting Collection", + "url": "/v1/games/capcom-fighting-collection-q111353645" + }, { "slug": "capcom-fighting-collection", "name": "Capcom Fighting Collection", "url": "/v1/games/capcom-fighting-collection" }, + { + "slug": "capcom-fighting-collection-2", + "name": "Capcom Fighting Collection 2", + "url": "/v1/games/capcom-fighting-collection-2" + }, { "slug": "capcom-fighting-evolution", "name": "Capcom Fighting Evolution", @@ -114821,11 +117771,26 @@ "name": "Capcom Generation 2", "url": "/v1/games/capcom-generation-2" }, + { + "slug": "capcom-generations", + "name": "Capcom Generations", + "url": "/v1/games/capcom-generations" + }, { "slug": "capcom-golf", "name": "Capcom Golf", "url": "/v1/games/capcom-golf" }, + { + "slug": "capcom-platinum-hits-triple-pack", + "name": "Capcom Platinum Hits Triple Pack", + "url": "/v1/games/capcom-platinum-hits-triple-pack" + }, + { + "slug": "capcom-puzzle-world", + "name": "Capcom Puzzle World", + "url": "/v1/games/capcom-puzzle-world" + }, { "slug": "capcom-sports-club", "name": "Capcom Sports Club", @@ -115491,6 +118456,11 @@ "name": "Captain Prosper", "url": "/v1/games/captain-prosper" }, + { + "slug": "captain-pulsar", + "name": "Captain Pulsar", + "url": "/v1/games/captain-pulsar" + }, { "slug": "captain-quazar", "name": "Captain Quazar", @@ -115666,6 +118636,11 @@ "name": "Captain Tsubasa: Ōgon Sedai no Chōsen", "url": "/v1/games/captain-tsubasa-gon-sedai-no-ch-sen" }, + { + "slug": "captain-underpants-epic-choice-o-rama", + "name": "Captain Underpants: Epic Choice-o-rama", + "url": "/v1/games/captain-underpants-epic-choice-o-rama" + }, { "slug": "captain-velvet-meteor-the-jump-dimensions", "name": "Captain Velvet Meteor: The Jump+ Dimensions", @@ -116511,6 +119486,11 @@ "name": "Caravan SandWitch", "url": "/v1/games/caravan-sandwitch" }, + { + "slug": "caravan-shooting-collection", + "name": "Caravan Shooting Collection", + "url": "/v1/games/caravan-shooting-collection" + }, { "slug": "caravan-stories", "name": "Caravan Stories", @@ -117771,6 +120751,11 @@ "name": "Carmageddon: Reincarnation", "url": "/v1/games/carmageddon-reincarnation" }, + { + "slug": "carmageddon-splat-pack", + "name": "Carmageddon: Splat Pack", + "url": "/v1/games/carmageddon-splat-pack" + }, { "slug": "carmen-sandiego", "name": "Carmen Sandiego", @@ -117816,6 +120801,11 @@ "name": "Carmen Sandiego: The Secret of the Stolen Drums", "url": "/v1/games/carmen-sandiego-the-secret-of-the-stolen-drums" }, + { + "slug": "carmen-sandiego-to-steal-or-not-to-steal", + "name": "Carmen Sandiego: To Steal or Not to Steal", + "url": "/v1/games/carmen-sandiego-to-steal-or-not-to-steal" + }, { "slug": "carminia", "name": "Carminia", @@ -118281,6 +121271,16 @@ "name": "Carrier Trail", "url": "/v1/games/carrier-trail" }, + { + "slug": "carrier-trail-digital-deluxe", + "name": "Carrier Trail - Digital Deluxe", + "url": "/v1/games/carrier-trail-digital-deluxe" + }, + { + "slug": "carrier-trail-soundtrack", + "name": "Carrier Trail - Soundtrack", + "url": "/v1/games/carrier-trail-soundtrack" + }, { "slug": "carriers-at-war-q4035902", "name": "Carriers at War", @@ -118501,6 +121501,11 @@ "name": "Cart Racer", "url": "/v1/games/cart-racer" }, + { + "slug": "cart-surfer", + "name": "Cart Surfer", + "url": "/v1/games/cart-surfer" + }, { "slug": "cart-to-the-end", "name": "Cart To The End", @@ -118636,6 +121641,16 @@ "name": "Cartoon Cagematch", "url": "/v1/games/cartoon-cagematch" }, + { + "slug": "cartoon-collection", + "name": "Cartoon Collection", + "url": "/v1/games/cartoon-collection" + }, + { + "slug": "cartoon-combatt-flying-circus", + "name": "Cartoon Combatt: Flying Circus", + "url": "/v1/games/cartoon-combatt-flying-circus" + }, { "slug": "cartoon-kreedz-christmas-season", "name": "Cartoon Kreedz: Christmas Season", @@ -119326,6 +122341,11 @@ "name": "Cassandra's Fabulous Foray", "url": "/v1/games/cassandra-s-fabulous-foray" }, + { + "slug": "cassette-50", + "name": "Cassette 50", + "url": "/v1/games/cassette-50" + }, { "slug": "cassette-beasts", "name": "Cassette Beasts", @@ -119916,6 +122936,11 @@ "name": "Castle Of Void", "url": "/v1/games/castle-of-void" }, + { + "slug": "castle-paths", + "name": "Castle Paths", + "url": "/v1/games/castle-paths" + }, { "slug": "castle-push", "name": "Castle Push", @@ -120161,6 +123186,11 @@ "name": "Castle of Temptation", "url": "/v1/games/castle-of-temptation" }, + { + "slug": "castle-of-temptation-v0-1-4", + "name": "Castle of Temptation V0.1.4", + "url": "/v1/games/castle-of-temptation-v0-1-4" + }, { "slug": "castle-of-terror", "name": "Castle of Terror", @@ -120246,6 +123276,11 @@ "name": "CastleMiner Z", "url": "/v1/games/castleminer-z" }, + { + "slug": "castleminer-z-trial", + "name": "CastleMiner Z (Trial)", + "url": "/v1/games/castleminer-z-trial" + }, { "slug": "castleminer-z-resurrection", "name": "CastleMiner Z : Resurrection", @@ -120266,6 +123301,11 @@ "name": "CastleStorm Complete", "url": "/v1/games/castlestorm-complete" }, + { + "slug": "castlestorm-definitive-edition", + "name": "CastleStorm: Definitive Edition", + "url": "/v1/games/castlestorm-definitive-edition" + }, { "slug": "castlestorm-vr-edition", "name": "CastleStorm: VR Edition", @@ -120341,6 +123381,16 @@ "name": "Castlevania AGA", "url": "/v1/games/castlevania-aga" }, + { + "slug": "castlevania-advance-collection", + "name": "Castlevania Advance Collection", + "url": "/v1/games/castlevania-advance-collection" + }, + { + "slug": "castlevania-anniversary-collection", + "name": "Castlevania Anniversary Collection", + "url": "/v1/games/castlevania-anniversary-collection" + }, { "slug": "castlevania-chronicles", "name": "Castlevania Chronicles", @@ -120441,6 +123491,16 @@ "name": "Castlevania: Legacy of Darkness", "url": "/v1/games/castlevania-legacy-of-darkness" }, + { + "slug": "castlevania-lords-of-shadow", + "name": "Castlevania: Lords of Shadow", + "url": "/v1/games/castlevania-lords-of-shadow" + }, + { + "slug": "castlevania-lords-of-shadow-reverie", + "name": "Castlevania: Lords of Shadow - Reverie", + "url": "/v1/games/castlevania-lords-of-shadow-reverie" + }, { "slug": "castlevania-lords-of-shadow-2", "name": "Castlevania: Lords of Shadow 2", @@ -121706,6 +124766,11 @@ "name": "Catacombs Of The Yokai", "url": "/v1/games/catacombs-of-the-yokai" }, + { + "slug": "catacombs-pack", + "name": "Catacombs Pack", + "url": "/v1/games/catacombs-pack" + }, { "slug": "catacombs-of-the-undercity", "name": "Catacombs of the Undercity", @@ -121811,6 +124876,11 @@ "name": "Catan: World Explorers", "url": "/v1/games/catan-world-explorers" }, + { + "slug": "catan-console-edition", + "name": "Catan: console edition", + "url": "/v1/games/catan-console-edition" + }, { "slug": "catana-q120970581", "name": "Catana", @@ -121826,6 +124896,11 @@ "name": "Cataplexy", "url": "/v1/games/cataplexy" }, + { + "slug": "catapult", + "name": "Catapult", + "url": "/v1/games/catapult" + }, { "slug": "catapult-king", "name": "Catapult King", @@ -122101,6 +125176,11 @@ "name": "Catchick", "url": "/v1/games/catchick" }, + { + "slug": "catchin-waves", + "name": "Catchin' Waves", + "url": "/v1/games/catchin-waves" + }, { "slug": "catching", "name": "Catching", @@ -123906,11 +126986,21 @@ "name": "Cel Damage", "url": "/v1/games/cel-damage" }, + { + "slug": "cel-damage-2", + "name": "Cel Damage 2", + "url": "/v1/games/cel-damage-2" + }, { "slug": "cel-damage-hd", "name": "Cel Damage HD", "url": "/v1/games/cel-damage-hd" }, + { + "slug": "cel-damage-overdrive", + "name": "Cel Damage Overdrive", + "url": "/v1/games/cel-damage-overdrive" + }, { "slug": "celv-run", "name": "CelV Run", @@ -124661,6 +127751,11 @@ "name": "Century", "url": "/v1/games/century" }, + { + "slug": "century-games", + "name": "Century Games", + "url": "/v1/games/century-games" + }, { "slug": "century-of-anticipation", "name": "Century of Anticipation", @@ -124681,6 +127776,36 @@ "name": "Century: Age of Ashes", "url": "/v1/games/century-age-of-ashes" }, + { + "slug": "century-age-of-ashes-bloodshed-edition", + "name": "Century: Age of Ashes - Bloodshed Edition", + "url": "/v1/games/century-age-of-ashes-bloodshed-edition" + }, + { + "slug": "century-age-of-ashes-colossus-deluxe-edition", + "name": "Century: Age of Ashes - Colossus Deluxe Edition", + "url": "/v1/games/century-age-of-ashes-colossus-deluxe-edition" + }, + { + "slug": "century-age-of-ashes-dragon-eggs-edition", + "name": "Century: Age of Ashes - Dragon Eggs Edition", + "url": "/v1/games/century-age-of-ashes-dragon-eggs-edition" + }, + { + "slug": "century-age-of-ashes-fellow-edition", + "name": "Century: Age of Ashes - Fellow Edition", + "url": "/v1/games/century-age-of-ashes-fellow-edition" + }, + { + "slug": "century-age-of-ashes-first-flight-edition", + "name": "Century: Age of Ashes - First Flight Edition", + "url": "/v1/games/century-age-of-ashes-first-flight-edition" + }, + { + "slug": "century-age-of-ashes-myth-starter-edition", + "name": "Century: Age of Ashes - Myth Starter Edition", + "url": "/v1/games/century-age-of-ashes-myth-starter-edition" + }, { "slug": "cepheus-protocol", "name": "Cepheus Protocol", @@ -125196,6 +128321,11 @@ "name": "Challenger's Odyssey", "url": "/v1/games/challenger-s-odyssey" }, + { + "slug": "challengers", + "name": "Challengers", + "url": "/v1/games/challengers" + }, { "slug": "challenges-of-the-cursed-island", "name": "Challenges of the Cursed Island", @@ -125326,6 +128456,11 @@ "name": "Chameleon Run Deluxe Edition", "url": "/v1/games/chameleon-run-deluxe-edition" }, + { + "slug": "chameleon-run-q106803128", + "name": "Chameleon Run+", + "url": "/v1/games/chameleon-run-q106803128" + }, { "slug": "chameleon-twist", "name": "Chameleon Twist", @@ -126086,6 +129221,11 @@ "name": "Chao Dream Touch! Happy Anniversary", "url": "/v1/games/chao-dream-touch-happy-anniversary" }, + { + "slug": "chao-garden", + "name": "Chao Garden", + "url": "/v1/games/chao-garden" + }, { "slug": "chao-s-collection-of-random-games", "name": "Chao's Collection of Random Games", @@ -126351,6 +129491,11 @@ "name": "Chaos League", "url": "/v1/games/chaos-league" }, + { + "slug": "chaos-league-sudden-death", + "name": "Chaos League: Sudden Death", + "url": "/v1/games/chaos-league-sudden-death" + }, { "slug": "chaos-legion", "name": "Chaos Legion", @@ -126466,6 +129611,11 @@ "name": "Chaos Starter", "url": "/v1/games/chaos-starter" }, + { + "slug": "chaos-strikes-back", + "name": "Chaos Strikes Back", + "url": "/v1/games/chaos-strikes-back" + }, { "slug": "chaos-theory", "name": "Chaos Theory", @@ -126656,6 +129806,221 @@ "name": "Chaperone", "url": "/v1/games/chaperone" }, + { + "slug": "chapter-1-1-the-adventure-unfolds", + "name": "Chapter 1-1: The Adventure Unfolds", + "url": "/v1/games/chapter-1-1-the-adventure-unfolds" + }, + { + "slug": "chapter-1-2-afoot-in-the-foothills", + "name": "Chapter 1-2: Afoot in the Foothills", + "url": "/v1/games/chapter-1-2-afoot-in-the-foothills" + }, + { + "slug": "chapter-1-3-the-sands-of-yold", + "name": "Chapter 1-3: The Sands of Yold", + "url": "/v1/games/chapter-1-3-the-sands-of-yold" + }, + { + "slug": "chapter-1-4-monster-of-the-ruins", + "name": "Chapter 1-4: Monster of the Ruins", + "url": "/v1/games/chapter-1-4-monster-of-the-ruins" + }, + { + "slug": "chapter-1-lineland", + "name": "Chapter 1: Lineland", + "url": "/v1/games/chapter-1-lineland" + }, + { + "slug": "chapter-2-1-bogging-to-merlee-s", + "name": "Chapter 2-1: Bogging to Merlee's", + "url": "/v1/games/chapter-2-1-bogging-to-merlee-s" + }, + { + "slug": "chapter-2-2-tricks-treats-traps", + "name": "Chapter 2-2: Tricks, Treats, Traps", + "url": "/v1/games/chapter-2-2-tricks-treats-traps" + }, + { + "slug": "chapter-2-3-breaking-the-bank", + "name": "Chapter 2-3: Breaking the Bank", + "url": "/v1/games/chapter-2-3-breaking-the-bank" + }, + { + "slug": "chapter-2-4-the-basement-face-off", + "name": "Chapter 2-4: The Basement Face-Off", + "url": "/v1/games/chapter-2-4-the-basement-face-off" + }, + { + "slug": "chapter-2-gloam-valley", + "name": "Chapter 2: Gloam Valley", + "url": "/v1/games/chapter-2-gloam-valley" + }, + { + "slug": "chapter-3-1-when-geeks-attack", + "name": "Chapter 3-1: When Geeks Attack", + "url": "/v1/games/chapter-3-1-when-geeks-attack" + }, + { + "slug": "chapter-3-2-bloops-ahoy", + "name": "Chapter 3-2: Bloops Ahoy", + "url": "/v1/games/chapter-3-2-bloops-ahoy" + }, + { + "slug": "chapter-3-3-up-up-and-a-tree", + "name": "Chapter 3-3: Up, Up, and a Tree", + "url": "/v1/games/chapter-3-3-up-up-and-a-tree" + }, + { + "slug": "chapter-3-4-the-battle-of-fort-francis", + "name": "Chapter 3-4: The Battle of Fort Francis", + "url": "/v1/games/chapter-3-4-the-battle-of-fort-francis" + }, + { + "slug": "chapter-3-the-bitlands", + "name": "Chapter 3: The Bitlands", + "url": "/v1/games/chapter-3-the-bitlands" + }, + { + "slug": "chapter-4-1-into-outer-space", + "name": "Chapter 4-1: Into Outer Space", + "url": "/v1/games/chapter-4-1-into-outer-space" + }, + { + "slug": "chapter-4-2-a-paper-emergency", + "name": "Chapter 4-2: A Paper Emergency", + "url": "/v1/games/chapter-4-2-a-paper-emergency" + }, + { + "slug": "chapter-4-3-the-gates-of-space", + "name": "Chapter 4-3: The Gates of Space", + "url": "/v1/games/chapter-4-3-the-gates-of-space" + }, + { + "slug": "chapter-4-4-the-mysterious-mr-l", + "name": "Chapter 4-4: The Mysterious Mr. L", + "url": "/v1/games/chapter-4-4-the-mysterious-mr-l" + }, + { + "slug": "chapter-4-outer-space", + "name": "Chapter 4: Outer Space", + "url": "/v1/games/chapter-4-outer-space" + }, + { + "slug": "chapter-5-1-downtown-of-crag", + "name": "Chapter 5-1: Downtown of Crag", + "url": "/v1/games/chapter-5-1-downtown-of-crag" + }, + { + "slug": "chapter-5-2-pixls-tablets-and-crag", + "name": "Chapter 5-2: Pixls, Tablets and Crag", + "url": "/v1/games/chapter-5-2-pixls-tablets-and-crag" + }, + { + "slug": "chapter-5-3-a-crag-in-the-dark", + "name": "Chapter 5-3: A Crag in the Dark", + "url": "/v1/games/chapter-5-3-a-crag-in-the-dark" + }, + { + "slug": "chapter-5-4-the-menace-of-king-croacus", + "name": "Chapter 5-4: The Menace of King Croacus", + "url": "/v1/games/chapter-5-4-the-menace-of-king-croacus" + }, + { + "slug": "chapter-5-land-of-the-cragnons", + "name": "Chapter 5: Land of the Cragnons", + "url": "/v1/games/chapter-5-land-of-the-cragnons" + }, + { + "slug": "chapter-6-1", + "name": "Chapter 6-1", + "url": "/v1/games/chapter-6-1" + }, + { + "slug": "chapter-6-1-sammer-guy-showdown", + "name": "Chapter 6-1: Sammer Guy Showdown", + "url": "/v1/games/chapter-6-1-sammer-guy-showdown" + }, + { + "slug": "chapter-6-1-sammer-s-kingdom", + "name": "Chapter 6-1: Sammer's Kingdom", + "url": "/v1/games/chapter-6-1-sammer-s-kingdom" + }, + { + "slug": "chapter-6-2-sammer-s-early-duels", + "name": "Chapter 6-2: Sammer's Early Duels", + "url": "/v1/games/chapter-6-2-sammer-s-early-duels" + }, + { + "slug": "chapter-6-2-the-end-of-a-world", + "name": "Chapter 6-2: The End of a World", + "url": "/v1/games/chapter-6-2-the-end-of-a-world" + }, + { + "slug": "chapter-6-3-sammer-s-proving-grounds", + "name": "Chapter 6-3: Sammer's Proving Grounds", + "url": "/v1/games/chapter-6-3-sammer-s-proving-grounds" + }, + { + "slug": "chapter-6-4-sammer-s-endgame", + "name": "Chapter 6-4: Sammer's Endgame", + "url": "/v1/games/chapter-6-4-sammer-s-endgame" + }, + { + "slug": "chapter-6-sammer-s-kingdom", + "name": "Chapter 6: Sammer's Kingdom", + "url": "/v1/games/chapter-6-sammer-s-kingdom" + }, + { + "slug": "chapter-7-1-subterranean-vacation", + "name": "Chapter 7-1: Subterranean Vacation", + "url": "/v1/games/chapter-7-1-subterranean-vacation" + }, + { + "slug": "chapter-7-2-the-sealed-doors-three", + "name": "Chapter 7-2: The Sealed Doors Three", + "url": "/v1/games/chapter-7-2-the-sealed-doors-three" + }, + { + "slug": "chapter-7-3-the-forbidden-apple", + "name": "Chapter 7-3: The Forbidden Apple", + "url": "/v1/games/chapter-7-3-the-forbidden-apple" + }, + { + "slug": "chapter-7-4-a-bone-chilling-tale", + "name": "Chapter 7-4: A Bone-Chilling Tale", + "url": "/v1/games/chapter-7-4-a-bone-chilling-tale" + }, + { + "slug": "chapter-7-the-underwhere", + "name": "Chapter 7: The Underwhere", + "url": "/v1/games/chapter-7-the-underwhere" + }, + { + "slug": "chapter-8-1-the-impending-darkness", + "name": "Chapter 8-1: The Impending Darkness", + "url": "/v1/games/chapter-8-1-the-impending-darkness" + }, + { + "slug": "chapter-8-2-the-crash", + "name": "Chapter 8-2: The Crash", + "url": "/v1/games/chapter-8-2-the-crash" + }, + { + "slug": "chapter-8-3-countdown-to-destruction", + "name": "Chapter 8-3: Countdown to Destruction", + "url": "/v1/games/chapter-8-3-countdown-to-destruction" + }, + { + "slug": "chapter-8-4-tippi-and-count-bleck", + "name": "Chapter 8-4: Tippi and Count Bleck", + "url": "/v1/games/chapter-8-4-tippi-and-count-bleck" + }, + { + "slug": "chapter-8-castle-bleck", + "name": "Chapter 8: Castle Bleck", + "url": "/v1/games/chapter-8-castle-bleck" + }, { "slug": "chapter-wars", "name": "Chapter Wars", @@ -127051,6 +130416,11 @@ "name": "Charset Crossfire", "url": "/v1/games/charset-crossfire" }, + { + "slug": "chart-attack", + "name": "Chart Attack", + "url": "/v1/games/chart-attack" + }, { "slug": "chart-raiders", "name": "Chart Raiders", @@ -127431,6 +130801,11 @@ "name": "Cheaphaven", "url": "/v1/games/cheaphaven" }, + { + "slug": "cheapyd-pack", + "name": "CheapyD Pack", + "url": "/v1/games/cheapyd-pack" + }, { "slug": "cheat-day", "name": "Cheat Day", @@ -127576,6 +130951,11 @@ "name": "Checkers RPG: Online Battles", "url": "/v1/games/checkers-rpg-online-battles" }, + { + "slug": "checkers-royal", + "name": "Checkers Royal+", + "url": "/v1/games/checkers-royal" + }, { "slug": "checkers-twist", "name": "Checkers Twist", @@ -127591,6 +130971,11 @@ "name": "Checkmage!", "url": "/v1/games/checkmage" }, + { + "slug": "checkmate-q140472680", + "name": "Checkmate", + "url": "/v1/games/checkmate-q140472680" + }, { "slug": "checkmate-challenge", "name": "Checkmate Challenge", @@ -127746,6 +131131,11 @@ "name": "Cheese Shooter", "url": "/v1/games/cheese-shooter" }, + { + "slug": "cheese-skin-pack", + "name": "Cheese Skin Pack", + "url": "/v1/games/cheese-skin-pack" + }, { "slug": "cheesecube", "name": "CheeseCube", @@ -127801,6 +131191,11 @@ "name": "Chef Life: A Restaurant Simulator", "url": "/v1/games/chef-life-a-restaurant-simulator" }, + { + "slug": "chef-life-a-restaurant-simulator-al-forno-edition", + "name": "Chef Life: A Restaurant Simulator - Al Forno Edition", + "url": "/v1/games/chef-life-a-restaurant-simulator-al-forno-edition" + }, { "slug": "chef-life-cooking-lab", "name": "Chef Life: Cooking Lab", @@ -128116,6 +131511,11 @@ "name": "Chertovica", "url": "/v1/games/chertovica" }, + { + "slug": "chesmac", + "name": "Chesmac", + "url": "/v1/games/chesmac" + }, { "slug": "chesnakisnak", "name": "Chesnakisnak", @@ -128146,6 +131546,11 @@ "name": "Chess 'n' Blocks", "url": "/v1/games/chess-n-blocks" }, + { + "slug": "chess-play-learn", + "name": "Chess - Play & Learn+", + "url": "/v1/games/chess-play-learn" + }, { "slug": "chess-2", "name": "Chess 2", @@ -128416,6 +131821,11 @@ "name": "Chess Universe", "url": "/v1/games/chess-universe" }, + { + "slug": "chess-universe-q118235199", + "name": "Chess Universe+", + "url": "/v1/games/chess-universe-q118235199" + }, { "slug": "chess-vr-multiverse-journey", "name": "Chess VR: Multiverse Journey", @@ -128511,6 +131921,11 @@ "name": "Chess, but...", "url": "/v1/games/chess-but" }, + { + "slug": "chess-com", + "name": "Chess.com", + "url": "/v1/games/chess-com" + }, { "slug": "chess3d", "name": "Chess3D", @@ -128566,6 +131981,11 @@ "name": "ChessRogue", "url": "/v1/games/chessrogue" }, + { + "slug": "chesstempo-com", + "name": "ChessTempo.com", + "url": "/v1/games/chesstempo-com" + }, { "slug": "chessv", "name": "ChessV", @@ -129846,6 +133266,11 @@ "name": "Children of the Galaxy", "url": "/v1/games/children-of-the-galaxy" }, + { + "slug": "children-of-the-nile-pack", + "name": "Children of the Nile Pack", + "url": "/v1/games/children-of-the-nile-pack" + }, { "slug": "children-of-the-nile-alexandria", "name": "Children of the Nile: Alexandria", @@ -130036,6 +133461,11 @@ "name": "ChilloutVR", "url": "/v1/games/chilloutvr" }, + { + "slug": "chilloutvr-unlocked-account", + "name": "ChilloutVR - Unlocked Account", + "url": "/v1/games/chilloutvr-unlocked-account" + }, { "slug": "chillquarium", "name": "Chillquarium", @@ -130086,6 +133516,11 @@ "name": "Chimera", "url": "/v1/games/chimera" }, + { + "slug": "chimera-beast", + "name": "Chimera Beast", + "url": "/v1/games/chimera-beast" + }, { "slug": "chimera-custom-xg", "name": "Chimera CUSTOM XG", @@ -130871,6 +134306,11 @@ "name": "Chocolate Castle", "url": "/v1/games/chocolate-castle" }, + { + "slug": "chocolate-doom", + "name": "Chocolate Doom", + "url": "/v1/games/chocolate-doom" + }, { "slug": "chocolate-factory", "name": "Chocolate Factory", @@ -131071,6 +134511,11 @@ "name": "Choice of Zombies", "url": "/v1/games/choice-of-zombies" }, + { + "slug": "choice-of-zombies-delta-force-operator", + "name": "Choice of Zombies - Delta Force Operator", + "url": "/v1/games/choice-of-zombies-delta-force-operator" + }, { "slug": "choice-of-the-cat", "name": "Choice of the Cat", @@ -131646,6 +135091,11 @@ "name": "Chris Sawyer's Locomotion", "url": "/v1/games/chris-sawyer-s-locomotion" }, + { + "slug": "chris-taylor-s-kings-and-castles", + "name": "Chris Taylor's Kings and Castles", + "url": "/v1/games/chris-taylor-s-kings-and-castles" + }, { "slug": "chris-story", "name": "Chris' Story", @@ -131751,6 +135201,11 @@ "name": "Christmas Clix", "url": "/v1/games/christmas-clix" }, + { + "slug": "christmas-collection", + "name": "Christmas Collection", + "url": "/v1/games/christmas-collection" + }, { "slug": "christmas-corp", "name": "Christmas Corp", @@ -132456,6 +135911,11 @@ "name": "Chrome", "url": "/v1/games/chrome" }, + { + "slug": "chrome-2", + "name": "Chrome 2", + "url": "/v1/games/chrome-2" + }, { "slug": "chrome-jumper", "name": "Chrome Jumper", @@ -132846,6 +136306,11 @@ "name": "Chrono Ark", "url": "/v1/games/chrono-ark" }, + { + "slug": "chrono-break", + "name": "Chrono Break", + "url": "/v1/games/chrono-break" + }, { "slug": "chrono-bullet", "name": "Chrono Bullet", @@ -133431,6 +136896,11 @@ "name": "Chumps Chained", "url": "/v1/games/chumps-chained" }, + { + "slug": "chunithm", + "name": "Chunithm", + "url": "/v1/games/chunithm" + }, { "slug": "chunk", "name": "Chunk", @@ -133836,6 +137306,11 @@ "name": "Cinemaster Cinema Simulator", "url": "/v1/games/cinemaster-cinema-simulator" }, + { + "slug": "cinematic-mod", + "name": "Cinematic Mod", + "url": "/v1/games/cinematic-mod" + }, { "slug": "cinemaware-anthology-1986-1991", "name": "Cinemaware Anthology: 1986-1991", @@ -133921,6 +137396,11 @@ "name": "Circa Infinity", "url": "/v1/games/circa-infinity" }, + { + "slug": "circa-infinity-ultimate-edition", + "name": "Circa Infinity Ultimate Edition", + "url": "/v1/games/circa-infinity-ultimate-edition" + }, { "slug": "circadial", "name": "Circadial", @@ -134341,6 +137821,11 @@ "name": "Cisco Heat", "url": "/v1/games/cisco-heat" }, + { + "slug": "cisco-heat-playable-demo", + "name": "Cisco Heat - Playable Demo", + "url": "/v1/games/cisco-heat-playable-demo" + }, { "slug": "citadrill", "name": "CitaDrill", @@ -134471,6 +137956,11 @@ "name": "Cities Domination", "url": "/v1/games/cities-domination" }, + { + "slug": "cities-in-motion-design-dreams", + "name": "Cities In Motion: Design Dreams", + "url": "/v1/games/cities-in-motion-design-dreams" + }, { "slug": "cities-restored", "name": "Cities Restored", @@ -134516,6 +138006,121 @@ "name": "Cities in Motion 2", "url": "/v1/games/cities-in-motion-2" }, + { + "slug": "cities-in-motion-2-trekking-trolleys", + "name": "Cities in Motion 2: Trekking Trolleys", + "url": "/v1/games/cities-in-motion-2-trekking-trolleys" + }, + { + "slug": "cities-in-motion-2-back-to-the-past", + "name": "Cities in Motion 2: Back to the Past", + "url": "/v1/games/cities-in-motion-2-back-to-the-past" + }, + { + "slug": "cities-in-motion-2-bus-mania", + "name": "Cities in Motion 2: Bus Mania", + "url": "/v1/games/cities-in-motion-2-bus-mania" + }, + { + "slug": "cities-in-motion-2-european-cities", + "name": "Cities in Motion 2: European Cities", + "url": "/v1/games/cities-in-motion-2-european-cities" + }, + { + "slug": "cities-in-motion-2-european-vehicle-pack", + "name": "Cities in Motion 2: European Vehicle Pack", + "url": "/v1/games/cities-in-motion-2-european-vehicle-pack" + }, + { + "slug": "cities-in-motion-2-lofty-landmarks", + "name": "Cities in Motion 2: Lofty Landmarks", + "url": "/v1/games/cities-in-motion-2-lofty-landmarks" + }, + { + "slug": "cities-in-motion-2-marvellous-monorails", + "name": "Cities in Motion 2: Marvellous Monorails", + "url": "/v1/games/cities-in-motion-2-marvellous-monorails" + }, + { + "slug": "cities-in-motion-2-metro-madness", + "name": "Cities in Motion 2: Metro Madness", + "url": "/v1/games/cities-in-motion-2-metro-madness" + }, + { + "slug": "cities-in-motion-2-olden-times", + "name": "Cities in Motion 2: Olden Times", + "url": "/v1/games/cities-in-motion-2-olden-times" + }, + { + "slug": "cities-in-motion-2-players-choice-vehicle-pack", + "name": "Cities in Motion 2: Players Choice Vehicle Pack", + "url": "/v1/games/cities-in-motion-2-players-choice-vehicle-pack" + }, + { + "slug": "cities-in-motion-2-wending-waterbuses", + "name": "Cities in Motion 2: Wending Waterbuses", + "url": "/v1/games/cities-in-motion-2-wending-waterbuses" + }, + { + "slug": "cities-in-motion-design-classics", + "name": "Cities in Motion: Design Classics", + "url": "/v1/games/cities-in-motion-design-classics" + }, + { + "slug": "cities-in-motion-design-marvels", + "name": "Cities in Motion: Design Marvels", + "url": "/v1/games/cities-in-motion-design-marvels" + }, + { + "slug": "cities-in-motion-design-now", + "name": "Cities in Motion: Design Now", + "url": "/v1/games/cities-in-motion-design-now" + }, + { + "slug": "cities-in-motion-design-quirks", + "name": "Cities in Motion: Design Quirks", + "url": "/v1/games/cities-in-motion-design-quirks" + }, + { + "slug": "cities-in-motion-german-cities", + "name": "Cities in Motion: German Cities", + "url": "/v1/games/cities-in-motion-german-cities" + }, + { + "slug": "cities-in-motion-london", + "name": "Cities in Motion: London", + "url": "/v1/games/cities-in-motion-london" + }, + { + "slug": "cities-in-motion-metro-stations", + "name": "Cities in Motion: Metro Stations", + "url": "/v1/games/cities-in-motion-metro-stations" + }, + { + "slug": "cities-in-motion-paris", + "name": "Cities in Motion: Paris", + "url": "/v1/games/cities-in-motion-paris" + }, + { + "slug": "cities-in-motion-st-petersburg", + "name": "Cities in Motion: St. Petersburg", + "url": "/v1/games/cities-in-motion-st-petersburg" + }, + { + "slug": "cities-in-motion-tokyo", + "name": "Cities in Motion: Tokyo", + "url": "/v1/games/cities-in-motion-tokyo" + }, + { + "slug": "cities-in-motion-us-cities", + "name": "Cities in Motion: US Cities", + "url": "/v1/games/cities-in-motion-us-cities" + }, + { + "slug": "cities-in-motion-ulm", + "name": "Cities in Motion: Ulm", + "url": "/v1/games/cities-in-motion-ulm" + }, { "slug": "cities-of-the-world-jigsaw-puzzles", "name": "Cities of the World Jigsaw Puzzles", @@ -134526,6 +138131,71 @@ "name": "Cities: Skylines - Remastered", "url": "/v1/games/cities-skylines-remastered" }, + { + "slug": "cities-skylines-after-dark", + "name": "Cities: Skylines – After Dark", + "url": "/v1/games/cities-skylines-after-dark" + }, + { + "slug": "cities-skylines-airports", + "name": "Cities: Skylines – Airports", + "url": "/v1/games/cities-skylines-airports" + }, + { + "slug": "cities-skylines-campus", + "name": "Cities: Skylines – Campus", + "url": "/v1/games/cities-skylines-campus" + }, + { + "slug": "cities-skylines-concerts", + "name": "Cities: Skylines – Concerts", + "url": "/v1/games/cities-skylines-concerts" + }, + { + "slug": "cities-skylines-green-cities", + "name": "Cities: Skylines – Green Cities", + "url": "/v1/games/cities-skylines-green-cities" + }, + { + "slug": "cities-skylines-industries", + "name": "Cities: Skylines – Industries", + "url": "/v1/games/cities-skylines-industries" + }, + { + "slug": "cities-skylines-mass-transit", + "name": "Cities: Skylines – Mass Transit", + "url": "/v1/games/cities-skylines-mass-transit" + }, + { + "slug": "cities-skylines-match-day", + "name": "Cities: Skylines – Match Day", + "url": "/v1/games/cities-skylines-match-day" + }, + { + "slug": "cities-skylines-natural-disasters", + "name": "Cities: Skylines – Natural Disasters", + "url": "/v1/games/cities-skylines-natural-disasters" + }, + { + "slug": "cities-skylines-parklife", + "name": "Cities: Skylines – Parklife", + "url": "/v1/games/cities-skylines-parklife" + }, + { + "slug": "cities-skylines-plazas-promenades", + "name": "Cities: Skylines – Plazas & Promenades", + "url": "/v1/games/cities-skylines-plazas-promenades" + }, + { + "slug": "cities-skylines-snowfall", + "name": "Cities: Skylines – Snowfall", + "url": "/v1/games/cities-skylines-snowfall" + }, + { + "slug": "cities-skylines-sunset-harbor", + "name": "Cities: Skylines – Sunset Harbor", + "url": "/v1/games/cities-skylines-sunset-harbor" + }, { "slug": "cities-vr", "name": "Cities: VR", @@ -134711,6 +138381,11 @@ "name": "City Bus Simulator 2010 - New York", "url": "/v1/games/city-bus-simulator-2010-new-york" }, + { + "slug": "city-bus-simulator-2010-region-usedom", + "name": "City Bus Simulator 2010 Region Usedom", + "url": "/v1/games/city-bus-simulator-2010-region-usedom" + }, { "slug": "city-bus-simulator-2018", "name": "City Bus Simulator 2018", @@ -135196,6 +138871,11 @@ "name": "City of Graves", "url": "/v1/games/city-of-graves" }, + { + "slug": "city-of-light", + "name": "City of Light", + "url": "/v1/games/city-of-light" + }, { "slug": "city-of-murals", "name": "City of Murals", @@ -135471,6 +139151,11 @@ "name": "Civilio", "url": "/v1/games/civilio" }, + { + "slug": "civilization-q126185171", + "name": "Civilization", + "url": "/v1/games/civilization-q126185171" + }, { "slug": "civilization", "name": "Civilization", @@ -135491,16 +139176,51 @@ "name": "Civilization Eras and Allies", "url": "/v1/games/civilization-eras-and-allies" }, + { + "slug": "civilization-ii-conflicts-in-civilization", + "name": "Civilization II: Conflicts in Civilization", + "url": "/v1/games/civilization-ii-conflicts-in-civilization" + }, + { + "slug": "civilization-ii-fantastic-worlds", + "name": "Civilization II: Fantastic Worlds", + "url": "/v1/games/civilization-ii-fantastic-worlds" + }, + { + "slug": "civilization-ii-multiplayer-gold-edition", + "name": "Civilization II: Multiplayer Gold Edition", + "url": "/v1/games/civilization-ii-multiplayer-gold-edition" + }, { "slug": "civilization-ii-test-of-time", "name": "Civilization II: Test of Time", "url": "/v1/games/civilization-ii-test-of-time" }, + { + "slug": "civilization-iii-conquests", + "name": "Civilization III: Conquests", + "url": "/v1/games/civilization-iii-conquests" + }, + { + "slug": "civilization-iii-play-the-world", + "name": "Civilization III: Play the World", + "url": "/v1/games/civilization-iii-play-the-world" + }, + { + "slug": "civilization-iv-beyond-the-sword", + "name": "Civilization IV: Beyond the Sword", + "url": "/v1/games/civilization-iv-beyond-the-sword" + }, { "slug": "civilization-iv-colonization", "name": "Civilization IV: Colonization", "url": "/v1/games/civilization-iv-colonization" }, + { + "slug": "civilization-iv-warlords", + "name": "Civilization IV: Warlords", + "url": "/v1/games/civilization-iv-warlords" + }, { "slug": "civilization-online", "name": "Civilization Online", @@ -135526,11 +139246,26 @@ "name": "Civilization V", "url": "/v1/games/civilization-v" }, + { + "slug": "civilization-v-brave-new-world", + "name": "Civilization V: Brave New World", + "url": "/v1/games/civilization-v-brave-new-world" + }, + { + "slug": "civilization-v-gods-kings", + "name": "Civilization V: Gods & Kings", + "url": "/v1/games/civilization-v-gods-kings" + }, { "slug": "civilization-vi", "name": "Civilization VI", "url": "/v1/games/civilization-vi" }, + { + "slug": "civilization-vi-gathering-storm", + "name": "Civilization VI: Gathering Storm", + "url": "/v1/games/civilization-vi-gathering-storm" + }, { "slug": "civilization-vi-rise-and-fall", "name": "Civilization VI: Rise and Fall", @@ -135551,11 +139286,21 @@ "name": "Civilization World", "url": "/v1/games/civilization-world" }, + { + "slug": "civilization-beyond-earth-rising-tide", + "name": "Civilization: Beyond Earth - Rising Tide", + "url": "/v1/games/civilization-beyond-earth-rising-tide" + }, { "slug": "civilization-call-to-power", "name": "Civilization: Call to Power", "url": "/v1/games/civilization-call-to-power" }, + { + "slug": "civilizationedu", + "name": "CivilizationEDU", + "url": "/v1/games/civilizationedu" + }, { "slug": "civitatem", "name": "Civitatem", @@ -135866,6 +139611,11 @@ "name": "Clash Force", "url": "/v1/games/clash-force" }, + { + "slug": "clash-heroes", + "name": "Clash Heroes", + "url": "/v1/games/clash-heroes" + }, { "slug": "clash-ii", "name": "Clash II", @@ -135876,6 +139626,11 @@ "name": "Clash Memory Game", "url": "/v1/games/clash-memory-game" }, + { + "slug": "clash-mini", + "name": "Clash Mini", + "url": "/v1/games/clash-mini" + }, { "slug": "clash-of-emojis", "name": "Clash Of Emojis", @@ -135886,6 +139641,11 @@ "name": "Clash Of Empires", "url": "/v1/games/clash-of-empires" }, + { + "slug": "clash-quest", + "name": "Clash Quest", + "url": "/v1/games/clash-quest" + }, { "slug": "clash-at-demonhead", "name": "Clash at Demonhead", @@ -136106,6 +139866,11 @@ "name": "Class of '09", "url": "/v1/games/class-of-09" }, + { + "slug": "class-of-09-the-double-up", + "name": "Class of '09: The Double Up", + "url": "/v1/games/class-of-09-the-double-up" + }, { "slug": "class-of-09-the-flip-side", "name": "Class of '09: The Flip Side", @@ -136346,6 +140111,11 @@ "name": "Classic Sudoku", "url": "/v1/games/classic-sudoku" }, + { + "slug": "classic-text-adventure-masterpieces-of-infocom", + "name": "Classic Text Adventure Masterpieces of Infocom", + "url": "/v1/games/classic-text-adventure-masterpieces-of-infocom" + }, { "slug": "classical-bullet-hell", "name": "Classical Bullet Hell", @@ -136991,6 +140761,11 @@ "name": "Cleopatra no Mahō", "url": "/v1/games/cleopatra-no-mah" }, + { + "slug": "cleopatra-queen-of-the-nile", + "name": "Cleopatra: Queen of the Nile", + "url": "/v1/games/cleopatra-queen-of-the-nile" + }, { "slug": "cleopatra-riddle-of-the-tomb", "name": "Cleopatra: Riddle of the Tomb", @@ -137181,6 +140956,11 @@ "name": "Click Space Miner 2", "url": "/v1/games/click-space-miner-2" }, + { + "slug": "click-speed-test", + "name": "Click Speed Test", + "url": "/v1/games/click-speed-test" + }, { "slug": "click-to-continue", "name": "Click To Continue", @@ -137831,6 +141611,11 @@ "name": "Cloak of Darkness", "url": "/v1/games/cloak-of-darkness" }, + { + "slug": "cloak-the-naked-mind", + "name": "Cloak: The Naked Mind", + "url": "/v1/games/cloak-the-naked-mind" + }, { "slug": "cloaked-protocol-stealth-action-thriller", "name": "Cloaked Protocol: Stealth Action Thriller", @@ -138481,6 +142266,11 @@ "name": "Cloud Climber", "url": "/v1/games/cloud-climber" }, + { + "slug": "cloud-climber-fan-pack", + "name": "Cloud Climber - Fan Pack", + "url": "/v1/games/cloud-climber-fan-pack" + }, { "slug": "cloud-crashers", "name": "Cloud Crashers", @@ -138646,6 +142436,11 @@ "name": "Cloudpunk", "url": "/v1/games/cloudpunk" }, + { + "slug": "cloudpunk-city-of-ghosts", + "name": "Cloudpunk - City of Ghosts", + "url": "/v1/games/cloudpunk-city-of-ghosts" + }, { "slug": "cloudrift", "name": "Cloudrift", @@ -139106,11 +142901,21 @@ "name": "Clue For Your Thoughts", "url": "/v1/games/clue-for-your-thoughts" }, + { + "slug": "clue-vcr-mystery-game", + "name": "Clue VCR Mystery Game", + "url": "/v1/games/clue-vcr-mystery-game" + }, { "slug": "clue-cluedo", "name": "Clue/Cluedo", "url": "/v1/games/clue-cluedo" }, + { + "slug": "clue-classic-edition", + "name": "Clue: Classic Edition+", + "url": "/v1/games/clue-classic-edition" + }, { "slug": "clue-master-detective", "name": "Clue: Master Detective", @@ -139141,6 +142946,11 @@ "name": "Cluedo DVD Game", "url": "/v1/games/cluedo-dvd-game" }, + { + "slug": "cluedo-hasbro-s-mystery-game", + "name": "Cluedo: Hasbro's Mystery Game+", + "url": "/v1/games/cluedo-hasbro-s-mystery-game" + }, { "slug": "cluedo-the-mysteries-continue", "name": "Cluedo: The Mysteries Continue", @@ -139841,6 +143651,11 @@ "name": "Cocoto Magic Circus", "url": "/v1/games/cocoto-magic-circus" }, + { + "slug": "cocoto-magic-circus-2", + "name": "Cocoto Magic Circus 2", + "url": "/v1/games/cocoto-magic-circus-2" + }, { "slug": "cocoto-platform-jumper", "name": "Cocoto Platform Jumper", @@ -140276,6 +144091,11 @@ "name": "CodeX", "url": "/v1/games/codex" }, + { + "slug": "code-18", + "name": "Code_18", + "url": "/v1/games/code-18" + }, { "slug": "codebound", "name": "Codebound", @@ -140946,6 +144766,11 @@ "name": "Coin Crypt", "url": "/v1/games/coin-crypt" }, + { + "slug": "coin-crypt-sea-and-sky", + "name": "Coin Crypt: Sea and Sky", + "url": "/v1/games/coin-crypt-sea-and-sky" + }, { "slug": "coin-dash", "name": "Coin Dash", @@ -141056,6 +144881,11 @@ "name": "Coin x Union", "url": "/v1/games/coin-x-union" }, + { + "slug": "coin-op-hits-ii", + "name": "Coin-Op Hits II", + "url": "/v1/games/coin-op-hits-ii" + }, { "slug": "coin-op-kingdom", "name": "Coin-Op Kingdom", @@ -141081,6 +144911,11 @@ "name": "Coinage", "url": "/v1/games/coinage" }, + { + "slug": "coincentration", + "name": "Coincentration", + "url": "/v1/games/coincentration" + }, { "slug": "coincremental", "name": "Coincremental", @@ -141621,6 +145456,16 @@ "name": "Collection Quest", "url": "/v1/games/collection-quest" }, + { + "slug": "collection-of-mana", + "name": "Collection of Mana", + "url": "/v1/games/collection-of-mana" + }, + { + "slug": "collection-of-saga-final-fantasy-legend", + "name": "Collection of SaGa: Final Fantasy Legend", + "url": "/v1/games/collection-of-saga-final-fantasy-legend" + }, { "slug": "collection-of-silly-games", "name": "Collection of Silly Games", @@ -143026,6 +146871,11 @@ "name": "Colossal Crisis", "url": "/v1/games/colossal-crisis" }, + { + "slug": "colossal-kaiju-combat", + "name": "Colossal Kaiju Combat", + "url": "/v1/games/colossal-kaiju-combat" + }, { "slug": "colossal-kickoff", "name": "Colossal Kickoff", @@ -143256,6 +147106,11 @@ "name": "Comanche 4", "url": "/v1/games/comanche-4" }, + { + "slug": "comanche-cd", + "name": "Comanche CD", + "url": "/v1/games/comanche-cd" + }, { "slug": "comanche-gold", "name": "Comanche Gold", @@ -143266,6 +147121,16 @@ "name": "Comanche: Maximum Overkill", "url": "/v1/games/comanche-maximum-overkill" }, + { + "slug": "comanche-maximum-overkill-mission-disk-1", + "name": "Comanche: Maximum Overkill - Mission Disk 1", + "url": "/v1/games/comanche-maximum-overkill-mission-disk-1" + }, + { + "slug": "comanche-over-the-edge", + "name": "Comanche: Over the Edge", + "url": "/v1/games/comanche-over-the-edge" + }, { "slug": "comando-rio", "name": "Comando Rio", @@ -144161,11 +148026,21 @@ "name": "Commanager Tycoon", "url": "/v1/games/commanager-tycoon" }, + { + "slug": "command-conquer-q2985699", + "name": "Command & Conquer", + "url": "/v1/games/command-conquer-q2985699" + }, { "slug": "command-conquer", "name": "Command & Conquer", "url": "/v1/games/command-conquer" }, + { + "slug": "command-conquer-3-kane-s-wrath", + "name": "Command & Conquer 3: Kane's Wrath", + "url": "/v1/games/command-conquer-3-kane-s-wrath" + }, { "slug": "command-conquer-3-tiberium-wars", "name": "Command & Conquer 3: Tiberium Wars", @@ -144176,6 +148051,11 @@ "name": "Command & Conquer 4: Tiberian Twilight", "url": "/v1/games/command-conquer-4-tiberian-twilight" }, + { + "slug": "command-conquer-remastered-collection", + "name": "Command & Conquer Remastered Collection", + "url": "/v1/games/command-conquer-remastered-collection" + }, { "slug": "command-conquer-legions", "name": "Command & Conquer: Legions", @@ -144201,6 +148081,11 @@ "name": "Command & Conquer: Red Alert 3 - Commander's Challenge", "url": "/v1/games/command-conquer-red-alert-3-commander-s-challenge" }, + { + "slug": "command-conquer-red-alert-3-uprising", + "name": "Command & Conquer: Red Alert 3 – Uprising", + "url": "/v1/games/command-conquer-red-alert-3-uprising" + }, { "slug": "command-conquer-red-alert-mobile-q113081779", "name": "Command & Conquer: Red Alert Mobile", @@ -144246,16 +148131,46 @@ "name": "Command & Conquer: Sole Survivor Online", "url": "/v1/games/command-conquer-sole-survivor-online" }, + { + "slug": "command-conquer-special-gold-edition", + "name": "Command & Conquer: Special Gold Edition", + "url": "/v1/games/command-conquer-special-gold-edition" + }, + { + "slug": "command-conquer-the-covert-operations", + "name": "Command & Conquer: The Covert Operations", + "url": "/v1/games/command-conquer-the-covert-operations" + }, + { + "slug": "command-conquer-the-first-decade", + "name": "Command & Conquer: The First Decade", + "url": "/v1/games/command-conquer-the-first-decade" + }, { "slug": "command-conquer-tiberian-sun", "name": "Command & Conquer: Tiberian Sun", "url": "/v1/games/command-conquer-tiberian-sun" }, + { + "slug": "command-conquer-tiberian-sun-firestorm", + "name": "Command & Conquer: Tiberian Sun + Firestorm", + "url": "/v1/games/command-conquer-tiberian-sun-firestorm" + }, { "slug": "command-conquer-tiberium-alliances", "name": "Command & Conquer: Tiberium Alliances", "url": "/v1/games/command-conquer-tiberium-alliances" }, + { + "slug": "command-conquer-ultimate-collection", + "name": "Command & Conquer: Ultimate Collection", + "url": "/v1/games/command-conquer-ultimate-collection" + }, + { + "slug": "command-conquer-yuri-s-revenge", + "name": "Command & Conquer: Yuri's Revenge", + "url": "/v1/games/command-conquer-yuri-s-revenge" + }, { "slug": "command-control", "name": "Command & Control", @@ -144411,6 +148326,11 @@ "name": "Commander Cool 2", "url": "/v1/games/commander-cool-2" }, + { + "slug": "commander-keen-q114564469", + "name": "Commander Keen", + "url": "/v1/games/commander-keen-q114564469" + }, { "slug": "commander-keen", "name": "Commander Keen", @@ -144636,6 +148556,11 @@ "name": "Commandos Pro Simulator", "url": "/v1/games/commandos-pro-simulator" }, + { + "slug": "commandos-ammo-pack", + "name": "Commandos: Ammo Pack", + "url": "/v1/games/commandos-ammo-pack" + }, { "slug": "commandos-behind-enemy-lines", "name": "Commandos: Behind Enemy Lines", @@ -144681,6 +148606,11 @@ "name": "Committed: Mystery at Shady Pines - Premium Edition", "url": "/v1/games/committed-mystery-at-shady-pines-premium-edition" }, + { + "slug": "common-ground", + "name": "Common Ground", + "url": "/v1/games/common-ground" + }, { "slug": "common-ground-one-night-in-a-three-story-house", "name": "Common Ground: One Night in a Three-story House", @@ -144766,6 +148696,11 @@ "name": "Comp IV", "url": "/v1/games/comp-iv" }, + { + "slug": "comp-sys-sinclair-crap-games-competition", + "name": "Comp.sys.sinclair Crap Games Competition", + "url": "/v1/games/comp-sys-sinclair-crap-games-competition" + }, { "slug": "compacto-idle-game", "name": "CompactO - Idle Game", @@ -144816,11 +148751,21 @@ "name": "Company of Heroes 2 - The British Forces", "url": "/v1/games/company-of-heroes-2-the-british-forces" }, + { + "slug": "company-of-heroes-2-complete-collection", + "name": "Company of Heroes 2: Complete Collection", + "url": "/v1/games/company-of-heroes-2-complete-collection" + }, { "slug": "company-of-heroes-2-the-western-front-armies", "name": "Company of Heroes 2: The Western Front Armies", "url": "/v1/games/company-of-heroes-2-the-western-front-armies" }, + { + "slug": "company-of-heroes-3-fire-steel", + "name": "Company of Heroes 3: Fire & Steel", + "url": "/v1/games/company-of-heroes-3-fire-steel" + }, { "slug": "company-of-heroes-collection", "name": "Company of Heroes Collection", @@ -144831,6 +148776,11 @@ "name": "Company of Heroes Online", "url": "/v1/games/company-of-heroes-online" }, + { + "slug": "company-of-heroes-opposing-fronts", + "name": "Company of Heroes: Opposing Fronts", + "url": "/v1/games/company-of-heroes-opposing-fronts" + }, { "slug": "company-of-heroes-tales-of-valor", "name": "Company of Heroes: Tales of Valor", @@ -144841,6 +148791,11 @@ "name": "Compass Lost", "url": "/v1/games/compass-lost" }, + { + "slug": "compass-point-west", + "name": "Compass Point: West", + "url": "/v1/games/compass-point-west" + }, { "slug": "compass-of-destiny-istanbul", "name": "Compass of Destiny: Istanbul", @@ -145101,6 +149056,11 @@ "name": "Computer Programmer", "url": "/v1/games/computer-programmer" }, + { + "slug": "computer-quarterback-q60339155", + "name": "Computer Quarterback", + "url": "/v1/games/computer-quarterback-q60339155" + }, { "slug": "computer-quarterback", "name": "Computer Quarterback", @@ -145696,6 +149656,16 @@ "name": "Conflict of Heroes: Awakening the Bear", "url": "/v1/games/conflict-of-heroes-awakening-the-bear" }, + { + "slug": "conflict-of-heroes-ghost-divisions", + "name": "Conflict of Heroes: Ghost Divisions", + "url": "/v1/games/conflict-of-heroes-ghost-divisions" + }, + { + "slug": "conflict-of-heroes-storms-of-steel", + "name": "Conflict of Heroes: Storms of Steel", + "url": "/v1/games/conflict-of-heroes-storms-of-steel" + }, { "slug": "conflict-denied-ops", "name": "Conflict: Denied Ops", @@ -145961,11 +149931,21 @@ "name": "Conker's Big Reunion", "url": "/v1/games/conker-s-big-reunion" }, + { + "slug": "conker-s-other-bad-fur-day", + "name": "Conker's Other Bad Fur Day", + "url": "/v1/games/conker-s-other-bad-fur-day" + }, { "slug": "conker-s-pocket-tales", "name": "Conker's Pocket Tales", "url": "/v1/games/conker-s-pocket-tales" }, + { + "slug": "conker-gettin-medieval", + "name": "Conker: Gettin' Medieval", + "url": "/v1/games/conker-gettin-medieval" + }, { "slug": "conker-live-reloaded", "name": "Conker: Live & Reloaded", @@ -146681,6 +150661,11 @@ "name": "Construction Simulator 2", "url": "/v1/games/construction-simulator-2" }, + { + "slug": "construction-simulator-2-q112231322", + "name": "Construction Simulator 2+", + "url": "/v1/games/construction-simulator-2-q112231322" + }, { "slug": "construction-simulator-2014", "name": "Construction Simulator 2014", @@ -146796,6 +150781,11 @@ "name": "Contagion", "url": "/v1/games/contagion" }, + { + "slug": "contagion-4-pack", + "name": "Contagion 4 Pack", + "url": "/v1/games/contagion-4-pack" + }, { "slug": "contagion-protocol", "name": "Contagion Protocol", @@ -147001,6 +150991,11 @@ "name": "Contra 4", "url": "/v1/games/contra-4" }, + { + "slug": "contra-anniversary-collection", + "name": "Contra Anniversary Collection", + "url": "/v1/games/contra-anniversary-collection" + }, { "slug": "contra-force", "name": "Contra Force", @@ -147011,6 +151006,11 @@ "name": "Contra III: The Alien Wars", "url": "/v1/games/contra-iii-the-alien-wars" }, + { + "slug": "contra-rebirth", + "name": "Contra ReBirth", + "url": "/v1/games/contra-rebirth" + }, { "slug": "contra-returns", "name": "Contra Returns", @@ -147056,6 +151056,11 @@ "name": "Contra: The War of the Worlds", "url": "/v1/games/contra-the-war-of-the-worlds" }, + { + "slug": "contraband", + "name": "Contraband", + "url": "/v1/games/contraband" + }, { "slug": "contraband-police", "name": "Contraband Police", @@ -147096,6 +151101,11 @@ "name": "Contract Demon", "url": "/v1/games/contract-demon" }, + { + "slug": "contract-j-a-c-k", + "name": "Contract J.A.C.K.", + "url": "/v1/games/contract-j-a-c-k" + }, { "slug": "contract-killer", "name": "Contract Killer", @@ -147266,6 +151276,21 @@ "name": "Control Yourself", "url": "/v1/games/control-yourself" }, + { + "slug": "control-awe", + "name": "Control: AWE", + "url": "/v1/games/control-awe" + }, + { + "slug": "control-the-foundation", + "name": "Control: The Foundation", + "url": "/v1/games/control-the-foundation" + }, + { + "slug": "control-ultimate-edition", + "name": "Control: Ultimate Edition", + "url": "/v1/games/control-ultimate-edition" + }, { "slug": "control-override", "name": "Control:Override", @@ -147736,6 +151761,11 @@ "name": "Cookies vs. Claus", "url": "/v1/games/cookies-vs-claus" }, + { + "slug": "cooking-academy", + "name": "Cooking Academy", + "url": "/v1/games/cooking-academy" + }, { "slug": "cooking-clash", "name": "Cooking Clash", @@ -148031,6 +152061,11 @@ "name": "Cool Riders", "url": "/v1/games/cool-riders" }, + { + "slug": "cool-shot", + "name": "Cool Shot", + "url": "/v1/games/cool-shot" + }, { "slug": "cool-spot", "name": "Cool Spot", @@ -150521,6 +154556,16 @@ "name": "Cossacks 3", "url": "/v1/games/cossacks-3" }, + { + "slug": "cossacks-3-days-of-brilliance", + "name": "Cossacks 3: Days of Brilliance", + "url": "/v1/games/cossacks-3-days-of-brilliance" + }, + { + "slug": "cossacks-ii-battle-for-europe", + "name": "Cossacks II: Battle for Europe", + "url": "/v1/games/cossacks-ii-battle-for-europe" + }, { "slug": "cossacks-ii-napoleonic-wars", "name": "Cossacks II: Napoleonic Wars", @@ -150666,6 +154711,11 @@ "name": "Cotton Fantasy: Superlative Night Dreams", "url": "/v1/games/cotton-fantasy-superlative-night-dreams" }, + { + "slug": "cotton-guardian-force-saturn-tribute", + "name": "Cotton Guardian Force Saturn Tribute", + "url": "/v1/games/cotton-guardian-force-saturn-tribute" + }, { "slug": "cotton-reboot", "name": "Cotton Reboot!", @@ -150891,6 +154941,11 @@ "name": "Counter Spell", "url": "/v1/games/counter-spell" }, + { + "slug": "counter-strike-nintendo-ds", + "name": "Counter Strike Nintendo DS", + "url": "/v1/games/counter-strike-nintendo-ds" + }, { "slug": "counter-terrorism-minesweeper", "name": "Counter Terrorism - Minesweeper", @@ -150901,6 +154956,21 @@ "name": "Counter Terrorist Agency", "url": "/v1/games/counter-terrorist-agency" }, + { + "slug": "counter-strike-1-anthology", + "name": "Counter-Strike 1 Anthology", + "url": "/v1/games/counter-strike-1-anthology" + }, + { + "slug": "counter-strike-2-prime-status-upgrade", + "name": "Counter-Strike 2 Prime Status Upgrade", + "url": "/v1/games/counter-strike-2-prime-status-upgrade" + }, + { + "slug": "counter-strike-complete", + "name": "Counter-Strike Complete", + "url": "/v1/games/counter-strike-complete" + }, { "slug": "counter-strike-neo", "name": "Counter-Strike Neo", @@ -150926,6 +154996,21 @@ "name": "Counter-Strike Online 2", "url": "/v1/games/counter-strike-online-2" }, + { + "slug": "counter-strike-condition-zero", + "name": "Counter-Strike: Condition Zero", + "url": "/v1/games/counter-strike-condition-zero" + }, + { + "slug": "counter-strike-condition-zero-deleted-scenes", + "name": "Counter-Strike: Condition Zero Deleted Scenes", + "url": "/v1/games/counter-strike-condition-zero-deleted-scenes" + }, + { + "slug": "counter-strike-source-garry-s-mod", + "name": "Counter-Strike: Source + Garry's Mod", + "url": "/v1/games/counter-strike-source-garry-s-mod" + }, { "slug": "counter-stroke-grand-building", "name": "Counter-Stroke: Grand Building", @@ -152206,6 +156291,16 @@ "name": "Cracking the Cryptic", "url": "/v1/games/cracking-the-cryptic" }, + { + "slug": "cracking-the-cryptic-domino-sudoku", + "name": "Cracking the Cryptic - Domino Sudoku", + "url": "/v1/games/cracking-the-cryptic-domino-sudoku" + }, + { + "slug": "cracking-the-cryptic-gas-volume-1", + "name": "Cracking the Cryptic - GAS Volume #1", + "url": "/v1/games/cracking-the-cryptic-gas-volume-1" + }, { "slug": "cracking-the-stone", "name": "Cracking the Stone", @@ -152736,6 +156831,11 @@ "name": "Crash Bandicoot 4: It's About Time", "url": "/v1/games/crash-bandicoot-4-it-s-about-time" }, + { + "slug": "crash-bandicoot-n-sane-trilogy", + "name": "Crash Bandicoot N. Sane Trilogy", + "url": "/v1/games/crash-bandicoot-n-sane-trilogy" + }, { "slug": "crash-bandicoot-nitro-kart-2", "name": "Crash Bandicoot Nitro Kart 2", @@ -153101,6 +157201,11 @@ "name": "Crashlands 2", "url": "/v1/games/crashlands-2" }, + { + "slug": "crashlands-q110453695", + "name": "Crashlands+", + "url": "/v1/games/crashlands-q110453695" + }, { "slug": "crashmo", "name": "Crashmo", @@ -153286,6 +157391,11 @@ "name": "Crayola Create and Play", "url": "/v1/games/crayola-create-and-play" }, + { + "slug": "crayola-create-and-play-q108740529", + "name": "Crayola Create and Play+", + "url": "/v1/games/crayola-create-and-play-q108740529" + }, { "slug": "crayola-scoot", "name": "Crayola Scoot", @@ -153536,6 +157646,11 @@ "name": "Crazy Chicken Xtreme", "url": "/v1/games/crazy-chicken-xtreme" }, + { + "slug": "crazy-chicken-atlantis", + "name": "Crazy Chicken: Atlantis", + "url": "/v1/games/crazy-chicken-atlantis" + }, { "slug": "crazy-chicken-heart-of-tibet", "name": "Crazy Chicken: Heart of Tibet", @@ -154091,6 +158206,11 @@ "name": "Crazy Toad", "url": "/v1/games/crazy-toad" }, + { + "slug": "crazy-traffic-jam-3d", + "name": "Crazy Traffic Jam 3D", + "url": "/v1/games/crazy-traffic-jam-3d" + }, { "slug": "crazy-traffic-racer", "name": "Crazy Traffic Racer", @@ -154586,6 +158706,11 @@ "name": "Creatures By Candlelight", "url": "/v1/games/creatures-by-candlelight" }, + { + "slug": "creatures-deluxe", + "name": "Creatures Deluxe", + "url": "/v1/games/creatures-deluxe" + }, { "slug": "creatures-docking-station", "name": "Creatures Docking Station", @@ -155446,6 +159571,11 @@ "name": "CrimeCraft", "url": "/v1/games/crimecraft" }, + { + "slug": "crimecraft-gangwars", + "name": "CrimeCraft: GangWars", + "url": "/v1/games/crimecraft-gangwars" + }, { "slug": "crimewave", "name": "CrimeWave", @@ -156036,6 +160166,11 @@ "name": "Crisp Cube", "url": "/v1/games/crisp-cube" }, + { + "slug": "crispy-doom", + "name": "Crispy Doom", + "url": "/v1/games/crispy-doom" + }, { "slug": "crispy-kart", "name": "Crispy Kart", @@ -157016,6 +161151,11 @@ "name": "Crossfire", "url": "/v1/games/crossfire-q401659" }, + { + "slug": "crossfire-q57974038", + "name": "Crossfire", + "url": "/v1/games/crossfire-q57974038" + }, { "slug": "crossfire", "name": "Crossfire", @@ -157266,11 +161406,21 @@ "name": "Crossword Explorer", "url": "/v1/games/crossword-explorer" }, + { + "slug": "crossword-explorer-q124079795", + "name": "Crossword Explorer+", + "url": "/v1/games/crossword-explorer-q124079795" + }, { "slug": "crossword-jam", "name": "Crossword Jam", "url": "/v1/games/crossword-jam" }, + { + "slug": "crossword-jam-q122945661", + "name": "Crossword Jam+", + "url": "/v1/games/crossword-jam-q122945661" + }, { "slug": "crossword-magic-4-0", "name": "Crossword Magic 4.0", @@ -157316,6 +161466,16 @@ "name": "Crossy Road Castle", "url": "/v1/games/crossy-road-castle" }, + { + "slug": "crossy-road-clone", + "name": "Crossy Road Clone", + "url": "/v1/games/crossy-road-clone" + }, + { + "slug": "crossy-road-q108368010", + "name": "Crossy Road+", + "url": "/v1/games/crossy-road-q108368010" + }, { "slug": "croswa", "name": "Croswa", @@ -157331,6 +161491,11 @@ "name": "Crouching Tiger, Hidden Dragon", "url": "/v1/games/crouching-tiger-hidden-dragon" }, + { + "slug": "crouching-tiger-hidden-dragon-2003", + "name": "Crouching Tiger, Hidden Dragon 2003", + "url": "/v1/games/crouching-tiger-hidden-dragon-2003" + }, { "slug": "crow-country", "name": "Crow Country", @@ -157681,6 +161846,11 @@ "name": "Crucial Throw", "url": "/v1/games/crucial-throw" }, + { + "slug": "crucible-q93360353", + "name": "Crucible", + "url": "/v1/games/crucible-q93360353" + }, { "slug": "crucible", "name": "Crucible", @@ -157966,6 +162136,26 @@ "name": "Crusader Kings II", "url": "/v1/games/crusader-kings-ii" }, + { + "slug": "crusader-kings-ii-holy-fury", + "name": "Crusader Kings II: Holy Fury", + "url": "/v1/games/crusader-kings-ii-holy-fury" + }, + { + "slug": "crusader-kings-ii-sons-of-abraham", + "name": "Crusader Kings II: Sons of Abraham", + "url": "/v1/games/crusader-kings-ii-sons-of-abraham" + }, + { + "slug": "crusader-kings-ii-sunset-invasion", + "name": "Crusader Kings II: Sunset Invasion", + "url": "/v1/games/crusader-kings-ii-sunset-invasion" + }, + { + "slug": "crusader-kings-ii-sword-of-islam", + "name": "Crusader Kings II: Sword of Islam", + "url": "/v1/games/crusader-kings-ii-sword-of-islam" + }, { "slug": "crusader-kings-iii", "name": "Crusader Kings III", @@ -157976,6 +162166,16 @@ "name": "Crusader Kings III: All Under Heaven", "url": "/v1/games/crusader-kings-iii-all-under-heaven" }, + { + "slug": "crusader-kings-iii-fate-of-iberia", + "name": "Crusader Kings III: Fate of Iberia", + "url": "/v1/games/crusader-kings-iii-fate-of-iberia" + }, + { + "slug": "crusader-kings-iii-friends-foes", + "name": "Crusader Kings III: Friends & Foes", + "url": "/v1/games/crusader-kings-iii-friends-foes" + }, { "slug": "crusader-kings-iii-khans-of-the-steppe", "name": "Crusader Kings III: Khans of the Steppe", @@ -157986,11 +162186,26 @@ "name": "Crusader Kings III: Legends of the Dead", "url": "/v1/games/crusader-kings-iii-legends-of-the-dead" }, + { + "slug": "crusader-kings-iii-northern-lords", + "name": "Crusader Kings III: Northern Lords", + "url": "/v1/games/crusader-kings-iii-northern-lords" + }, { "slug": "crusader-kings-iii-roads-to-power", "name": "Crusader Kings III: Roads to Power", "url": "/v1/games/crusader-kings-iii-roads-to-power" }, + { + "slug": "crusader-kings-iii-royal-court", + "name": "Crusader Kings III: Royal Court", + "url": "/v1/games/crusader-kings-iii-royal-court" + }, + { + "slug": "crusader-kings-iii-royal-edition", + "name": "Crusader Kings III: Royal Edition", + "url": "/v1/games/crusader-kings-iii-royal-edition" + }, { "slug": "crusader-kings-iii-wandering-nobles", "name": "Crusader Kings III: Wandering Nobles", @@ -158246,6 +162461,11 @@ "name": "Cry Baby", "url": "/v1/games/cry-baby" }, + { + "slug": "cry-on", + "name": "Cry On", + "url": "/v1/games/cry-on" + }, { "slug": "cry-pic", "name": "Cry Pic.", @@ -158491,6 +162711,11 @@ "name": "Cryptic Escape", "url": "/v1/games/cryptic-escape" }, + { + "slug": "cryptic-passage-for-blood", + "name": "Cryptic Passage for Blood", + "url": "/v1/games/cryptic-passage-for-blood" + }, { "slug": "cryptic-rooms", "name": "Cryptic Rooms", @@ -158706,6 +162931,11 @@ "name": "Cryptographer", "url": "/v1/games/cryptographer" }, + { + "slug": "cryptokitties", + "name": "Cryptokitties", + "url": "/v1/games/cryptokitties" + }, { "slug": "cryptonaut", "name": "Cryptonaut", @@ -158761,6 +162991,11 @@ "name": "Crysis 3 Remastered", "url": "/v1/games/crysis-3-remastered" }, + { + "slug": "crysis-3-the-lost-island", + "name": "Crysis 3: The Lost Island", + "url": "/v1/games/crysis-3-the-lost-island" + }, { "slug": "crysis-4", "name": "Crysis 4", @@ -158771,6 +163006,16 @@ "name": "Crysis Remastered", "url": "/v1/games/crysis-remastered" }, + { + "slug": "crysis-remastered-trilogy", + "name": "Crysis Remastered Trilogy", + "url": "/v1/games/crysis-remastered-trilogy" + }, + { + "slug": "crysis-warhead", + "name": "Crysis Warhead", + "url": "/v1/games/crysis-warhead" + }, { "slug": "crysis-wars", "name": "Crysis Wars", @@ -159201,6 +163446,11 @@ "name": "Crystal Tales Tactics: Echoes of the Libertas War", "url": "/v1/games/crystal-tales-tactics-echoes-of-the-libertas-war" }, + { + "slug": "crystal-theme", + "name": "Crystal Theme", + "url": "/v1/games/crystal-theme" + }, { "slug": "crystal-tower-defense", "name": "Crystal Tower Defense", @@ -159716,6 +163966,11 @@ "name": "Cube Escape", "url": "/v1/games/cube-escape" }, + { + "slug": "cube-escape-collection", + "name": "Cube Escape Collection", + "url": "/v1/games/cube-escape-collection" + }, { "slug": "cube-escape-arles", "name": "Cube Escape: Arles", @@ -160776,11 +165031,26 @@ "name": "Cuckold Simulator", "url": "/v1/games/cuckold-simulator" }, + { + "slug": "cuckold-simulator-coomer-s-delight", + "name": "Cuckold Simulator: Coomer's Delight", + "url": "/v1/games/cuckold-simulator-coomer-s-delight" + }, + { + "slug": "cuckold-simulator-covid-19-mask", + "name": "Cuckold Simulator: Covid-19 Mask", + "url": "/v1/games/cuckold-simulator-covid-19-mask" + }, { "slug": "cuckold-simulator-life-as-a-beta-male-cuck", "name": "Cuckold Simulator: Life as a Beta Male Cuck", "url": "/v1/games/cuckold-simulator-life-as-a-beta-male-cuck" }, + { + "slug": "cuckold-simulator-ukraine-supporter-pack", + "name": "Cuckold Simulator: Ukraine Supporter Pack", + "url": "/v1/games/cuckold-simulator-ukraine-supporter-pack" + }, { "slug": "cuckoo-castle", "name": "Cuckoo Castle", @@ -160941,6 +165211,11 @@ "name": "Culpa Innata", "url": "/v1/games/culpa-innata" }, + { + "slug": "culpa-innata-ii-chaos-rising", + "name": "Culpa Innata II: Chaos Rising", + "url": "/v1/games/culpa-innata-ii-chaos-rising" + }, { "slug": "culprit", "name": "Culprit", @@ -161046,6 +165321,11 @@ "name": "Cult of the Lamb", "url": "/v1/games/cult-of-the-lamb" }, + { + "slug": "cult-of-the-lamb-cultist-edition", + "name": "Cult of the Lamb: Cultist Edition", + "url": "/v1/games/cult-of-the-lamb-cultist-edition" + }, { "slug": "cult-of-the-sons", "name": "Cult of the Sons", @@ -161086,6 +165366,36 @@ "name": "Cultist Simulator", "url": "/v1/games/cultist-simulator" }, + { + "slug": "cultist-simulator-anthology-edition", + "name": "Cultist Simulator Anthology Edition", + "url": "/v1/games/cultist-simulator-anthology-edition" + }, + { + "slug": "cultist-simulator-initiate-edition", + "name": "Cultist Simulator: Initiate Edition", + "url": "/v1/games/cultist-simulator-initiate-edition" + }, + { + "slug": "cultist-simulator-the-dancer", + "name": "Cultist Simulator: The Dancer", + "url": "/v1/games/cultist-simulator-the-dancer" + }, + { + "slug": "cultist-simulator-the-exile", + "name": "Cultist Simulator: The Exile", + "url": "/v1/games/cultist-simulator-the-exile" + }, + { + "slug": "cultist-simulator-the-ghoul", + "name": "Cultist Simulator: The Ghoul", + "url": "/v1/games/cultist-simulator-the-ghoul" + }, + { + "slug": "cultist-simulator-the-priest", + "name": "Cultist Simulator: The Priest", + "url": "/v1/games/cultist-simulator-the-priest" + }, { "slug": "cultivation", "name": "Cultivation", @@ -161161,6 +165471,11 @@ "name": "Cultures: 8th Wonder of the World", "url": "/v1/games/cultures-8th-wonder-of-the-world" }, + { + "slug": "cultures-die-rache-des-regengottes", + "name": "Cultures: Die Rache des Regengottes", + "url": "/v1/games/cultures-die-rache-des-regengottes" + }, { "slug": "cultures-discovery-of-vinland", "name": "Cultures: Discovery of Vinland", @@ -161231,6 +165546,11 @@ "name": "Cuphead", "url": "/v1/games/cuphead" }, + { + "slug": "cuphead-the-delicious-last-course", + "name": "Cuphead: The Delicious Last Course", + "url": "/v1/games/cuphead-the-delicious-last-course" + }, { "slug": "cupiclaw", "name": "Cupiclaw", @@ -162401,6 +166721,16 @@ "name": "Custom Robo V2", "url": "/v1/games/custom-robo-v2" }, + { + "slug": "customer-cravings", + "name": "Customer Cravings", + "url": "/v1/games/customer-cravings" + }, + { + "slug": "customer-cravings-returns", + "name": "Customer Cravings Returns", + "url": "/v1/games/customer-cravings-returns" + }, { "slug": "customer-disservice", "name": "Customer Disservice", @@ -162411,6 +166741,11 @@ "name": "Customers From Hell", "url": "/v1/games/customers-from-hell" }, + { + "slug": "customization-pack", + "name": "Customization Pack", + "url": "/v1/games/customization-pack" + }, { "slug": "customplay-golf-2010", "name": "Customplay Golf 2010", @@ -162796,6 +167131,11 @@ "name": "CuteMaze", "url": "/v1/games/cutemaze" }, + { + "slug": "cutedressup", + "name": "Cutedressup", + "url": "/v1/games/cutedressup" + }, { "slug": "cuthbert-goes-digging", "name": "Cuthbert Goes Digging", @@ -163096,6 +167436,11 @@ "name": "Cyber Bay", "url": "/v1/games/cyber-bay" }, + { + "slug": "cyber-blades-demo", + "name": "Cyber Blades - Demo", + "url": "/v1/games/cyber-blades-demo" + }, { "slug": "cyber-bodies", "name": "Cyber Bodies", @@ -164476,6 +168821,11 @@ "name": "Cyberpunk 2077", "url": "/v1/games/cyberpunk-2077" }, + { + "slug": "cyberpunk-2077-ultimate-edition", + "name": "Cyberpunk 2077: Ultimate Edition", + "url": "/v1/games/cyberpunk-2077-ultimate-edition" + }, { "slug": "cyberpunk-3776", "name": "Cyberpunk 3776", @@ -165541,6 +169891,11 @@ "name": "D.I.C.E.", "url": "/v1/games/d-i-c-e" }, + { + "slug": "d-i-p-r-i-p-warm-up", + "name": "D.I.P.R.I.P. Warm Up", + "url": "/v1/games/d-i-p-r-i-p-warm-up" + }, { "slug": "d-i-s-c-damned-into-space-craft", "name": "D.I.S.C.: Damned into Space-Craft", @@ -166156,16 +170511,531 @@ "name": "DCR: Drive.Crash.Repeat", "url": "/v1/games/dcr-drive-crash-repeat" }, + { + "slug": "dcs-a-10a-warthog", + "name": "DCS: A-10A Warthog", + "url": "/v1/games/dcs-a-10a-warthog" + }, + { + "slug": "dcs-a-10c-ii-iron-flag-part-1-campaign", + "name": "DCS: A-10C II Iron Flag Part 1 Campaign", + "url": "/v1/games/dcs-a-10c-ii-iron-flag-part-1-campaign" + }, + { + "slug": "dcs-a-10c-ii-operation-persian-freedom-campaign", + "name": "DCS: A-10C II Operation Persian Freedom Campaign", + "url": "/v1/games/dcs-a-10c-ii-operation-persian-freedom-campaign" + }, + { + "slug": "dcs-a-10c-ii-tank-killer", + "name": "DCS: A-10C II Tank Killer", + "url": "/v1/games/dcs-a-10c-ii-tank-killer" + }, + { + "slug": "dcs-a-10c-operation-agile-spear-campaign", + "name": "DCS: A-10C Operation Agile Spear Campaign", + "url": "/v1/games/dcs-a-10c-operation-agile-spear-campaign" + }, { "slug": "dcs-a-10c-warthog", "name": "DCS: A-10C Warthog", "url": "/v1/games/dcs-a-10c-warthog" }, + { + "slug": "dcs-a-10c-warthog-the-enemy-within-3-0-campaign", + "name": "DCS: A-10C Warthog - The Enemy Within 3.0 Campaign", + "url": "/v1/games/dcs-a-10c-warthog-the-enemy-within-3-0-campaign" + }, + { + "slug": "dcs-ah-64d", + "name": "DCS: AH-64D", + "url": "/v1/games/dcs-ah-64d" + }, + { + "slug": "dcs-ajs-37-viggen", + "name": "DCS: AJS-37 Viggen", + "url": "/v1/games/dcs-ajs-37-viggen" + }, + { + "slug": "dcs-av-8b-hormuz-freedom-campaign", + "name": "DCS: AV-8B Hormuz Freedom Campaign", + "url": "/v1/games/dcs-av-8b-hormuz-freedom-campaign" + }, + { + "slug": "dcs-av-8b-kerman-campaign-by-ground-pounder-sims", + "name": "DCS: AV-8B Kerman Campaign by Ground Pounder Sims", + "url": "/v1/games/dcs-av-8b-kerman-campaign-by-ground-pounder-sims" + }, + { + "slug": "dcs-av-8b-night-attack-v-stol", + "name": "DCS: AV-8B Night Attack V/STOL", + "url": "/v1/games/dcs-av-8b-night-attack-v-stol" + }, + { + "slug": "dcs-av-8b-sky-warrior-campaign", + "name": "DCS: AV-8B Sky Warrior Campaign", + "url": "/v1/games/dcs-av-8b-sky-warrior-campaign" + }, + { + "slug": "dcs-bf-109-k-4-kurf-rst", + "name": "DCS: Bf 109 K-4 Kurfürst", + "url": "/v1/games/dcs-bf-109-k-4-kurf-rst" + }, + { + "slug": "dcs-bf-109-k-4-kurf-rst-jagdflieger-campaign", + "name": "DCS: Bf 109 K-4 Kurfürst - Jagdflieger Campaign", + "url": "/v1/games/dcs-bf-109-k-4-kurf-rst-jagdflieger-campaign" + }, { "slug": "dcs-black-shark", "name": "DCS: Black Shark", "url": "/v1/games/dcs-black-shark" }, + { + "slug": "dcs-black-shark-2-pandemic-campaign", + "name": "DCS: Black Shark 2 Pandemic Campaign", + "url": "/v1/games/dcs-black-shark-2-pandemic-campaign" + }, + { + "slug": "dcs-black-shark-3", + "name": "DCS: Black Shark 3", + "url": "/v1/games/dcs-black-shark-3" + }, + { + "slug": "dcs-black-shark-3-upgrade", + "name": "DCS: Black Shark 3 Upgrade", + "url": "/v1/games/dcs-black-shark-3-upgrade" + }, + { + "slug": "dcs-c-101-aviojet", + "name": "DCS: C-101 Aviojet", + "url": "/v1/games/dcs-c-101-aviojet" + }, + { + "slug": "dcs-christen-eagle-ii", + "name": "DCS: Christen Eagle II", + "url": "/v1/games/dcs-christen-eagle-ii" + }, + { + "slug": "dcs-combined-arms", + "name": "DCS: Combined Arms", + "url": "/v1/games/dcs-combined-arms" + }, + { + "slug": "dcs-combined-arms-frontlines-georgia-campaign", + "name": "DCS: Combined Arms Frontlines Georgia Campaign", + "url": "/v1/games/dcs-combined-arms-frontlines-georgia-campaign" + }, + { + "slug": "dcs-f-14a-fear-the-bones-campaign", + "name": "DCS: F-14A Fear the Bones Campaign", + "url": "/v1/games/dcs-f-14a-fear-the-bones-campaign" + }, + { + "slug": "dcs-f-14a-zone-5-campaign", + "name": "DCS: F-14A Zone 5 Campaign", + "url": "/v1/games/dcs-f-14a-zone-5-campaign" + }, + { + "slug": "dcs-f-14a-b-tomcat", + "name": "DCS: F-14A/B Tomcat", + "url": "/v1/games/dcs-f-14a-b-tomcat" + }, + { + "slug": "dcs-f-14b-operation-sandworm-campaign", + "name": "DCS: F-14B Operation Sandworm Campaign", + "url": "/v1/games/dcs-f-14b-operation-sandworm-campaign" + }, + { + "slug": "dcs-f-14b-speed-and-angels-campaign", + "name": "DCS: F-14B Speed and Angels Campaign", + "url": "/v1/games/dcs-f-14b-speed-and-angels-campaign" + }, + { + "slug": "dcs-f-15e", + "name": "DCS: F-15E", + "url": "/v1/games/dcs-f-15e" + }, + { + "slug": "dcs-f-16c-red-flag-21-1-campaign", + "name": "DCS: F-16C Red Flag 21-1 Campaign", + "url": "/v1/games/dcs-f-16c-red-flag-21-1-campaign" + }, + { + "slug": "dcs-f-16c-viper", + "name": "DCS: F-16C Viper", + "url": "/v1/games/dcs-f-16c-viper" + }, + { + "slug": "dcs-f-5e-black-sea-resolve-79-campaign", + "name": "DCS: F-5E Black Sea Resolve '79 Campaign", + "url": "/v1/games/dcs-f-5e-black-sea-resolve-79-campaign" + }, + { + "slug": "dcs-f-5e-tiger-ii", + "name": "DCS: F-5E Tiger II", + "url": "/v1/games/dcs-f-5e-tiger-ii" + }, + { + "slug": "dcs-f-86f-sabre", + "name": "DCS: F-86F Sabre", + "url": "/v1/games/dcs-f-86f-sabre" + }, + { + "slug": "dcs-f-86f-sabre-hunters-over-the-yalu-campaign", + "name": "DCS: F-86F Sabre Hunters Over the Yalu Campaign", + "url": "/v1/games/dcs-f-86f-sabre-hunters-over-the-yalu-campaign" + }, + { + "slug": "dcs-f-a-18c", + "name": "DCS: F/A-18C", + "url": "/v1/games/dcs-f-a-18c" + }, + { + "slug": "dcs-f-a-18c-flaming-sunrise-campaign-by-sandman-simulations", + "name": "DCS: F/A-18C Flaming Sunrise Campaign by Sandman Simulations", + "url": "/v1/games/dcs-f-a-18c-flaming-sunrise-campaign-by-sandman-simulations" + }, + { + "slug": "dcs-f-a-18c-hornet-raven-one-ampaign", + "name": "DCS: F/A-18C Hornet Raven One Сampaign", + "url": "/v1/games/dcs-f-a-18c-hornet-raven-one-ampaign" + }, + { + "slug": "dcs-f-a-18c-hornet-the-serpent-s-head-2-campaign", + "name": "DCS: F/A-18C Hornet The Serpent's Head 2 Campaign", + "url": "/v1/games/dcs-f-a-18c-hornet-the-serpent-s-head-2-campaign" + }, + { + "slug": "dcs-f-a-18c-inherent-resolve-campaign-by-looking-glass", + "name": "DCS: F/A-18C Inherent Resolve Campaign by Looking Glass", + "url": "/v1/games/dcs-f-a-18c-inherent-resolve-campaign-by-looking-glass" + }, + { + "slug": "dcs-f-a-18c-operation-cerberus-north", + "name": "DCS: F/A-18C Operation Cerberus North", + "url": "/v1/games/dcs-f-a-18c-operation-cerberus-north" + }, + { + "slug": "dcs-f-a-18c-operation-pontus-campaign", + "name": "DCS: F/A-18C Operation Pontus Campaign", + "url": "/v1/games/dcs-f-a-18c-operation-pontus-campaign" + }, + { + "slug": "dcs-f-a-18c-raven-one-dominant-fury-campaign", + "name": "DCS: F/A-18C Raven One: Dominant Fury Campaign", + "url": "/v1/games/dcs-f-a-18c-raven-one-dominant-fury-campaign" + }, + { + "slug": "dcs-f-a-18c-rise-of-the-persian-lion-campaign", + "name": "DCS: F/A-18C Rise of the Persian Lion Campaign", + "url": "/v1/games/dcs-f-a-18c-rise-of-the-persian-lion-campaign" + }, + { + "slug": "dcs-f-a-18c-rise-of-the-persian-lion-ii-campaign", + "name": "DCS: F/A-18C Rise of the Persian Lion II Campaign", + "url": "/v1/games/dcs-f-a-18c-rise-of-the-persian-lion-ii-campaign" + }, + { + "slug": "dcs-f-a-18c-rising-squall-campaign", + "name": "DCS: F/A-18C Rising Squall Campaign", + "url": "/v1/games/dcs-f-a-18c-rising-squall-campaign" + }, + { + "slug": "dcs-flaming-cliffs-3", + "name": "DCS: Flaming Cliffs 3", + "url": "/v1/games/dcs-flaming-cliffs-3" + }, + { + "slug": "dcs-fw-190-a-8", + "name": "DCS: Fw 190 A-8", + "url": "/v1/games/dcs-fw-190-a-8" + }, + { + "slug": "dcs-fw-190-a-8-horrido-campaign", + "name": "DCS: Fw 190 A-8 Horrido! Campaign", + "url": "/v1/games/dcs-fw-190-a-8-horrido-campaign" + }, + { + "slug": "dcs-fw-190-d-9-dora", + "name": "DCS: Fw 190 D-9 Dora", + "url": "/v1/games/dcs-fw-190-d-9-dora" + }, + { + "slug": "dcs-i-16", + "name": "DCS: I-16", + "url": "/v1/games/dcs-i-16" + }, + { + "slug": "dcs-jf-17-thunder", + "name": "DCS: JF-17 Thunder", + "url": "/v1/games/dcs-jf-17-thunder" + }, + { + "slug": "dcs-l-39-albatros", + "name": "DCS: L-39 Albatros", + "url": "/v1/games/dcs-l-39-albatros" + }, + { + "slug": "dcs-l-39-albatros-kursant-campaign", + "name": "DCS: L-39 Albatros - Kursant Campaign", + "url": "/v1/games/dcs-l-39-albatros-kursant-campaign" + }, + { + "slug": "dcs-m-2000c", + "name": "DCS: M-2000C", + "url": "/v1/games/dcs-m-2000c" + }, + { + "slug": "dcs-m-2000c-red-flag-campaign", + "name": "DCS: M-2000C - Red Flag Campaign", + "url": "/v1/games/dcs-m-2000c-red-flag-campaign" + }, + { + "slug": "dcs-mad-ah-64d-campaign", + "name": "DCS: MAD AH-64D Campaign", + "url": "/v1/games/dcs-mad-ah-64d-campaign" + }, + { + "slug": "dcs-mad-campaign", + "name": "DCS: MAD Campaign", + "url": "/v1/games/dcs-mad-campaign" + }, + { + "slug": "dcs-mad-jf-17-thunder-campaign", + "name": "DCS: MAD JF-17 Thunder Campaign", + "url": "/v1/games/dcs-mad-jf-17-thunder-campaign" + }, + { + "slug": "dcs-mb-339", + "name": "DCS: MB-339", + "url": "/v1/games/dcs-mb-339" + }, + { + "slug": "dcs-marianas", + "name": "DCS: Marianas", + "url": "/v1/games/dcs-marianas" + }, + { + "slug": "dcs-mi-24p-hind", + "name": "DCS: Mi-24P HIND", + "url": "/v1/games/dcs-mi-24p-hind" + }, + { + "slug": "dcs-mi-8-mtv2-magnificent-eight", + "name": "DCS: Mi-8 MTV2 Magnificent Eight", + "url": "/v1/games/dcs-mi-8-mtv2-magnificent-eight" + }, + { + "slug": "dcs-mi-8mtv2-crew-part-1-campaign", + "name": "DCS: Mi-8MTV2 Crew Part 1 Campaign", + "url": "/v1/games/dcs-mi-8mtv2-crew-part-1-campaign" + }, + { + "slug": "dcs-mi-8mtv2-and-ka-50-memory-of-a-hero-campaign", + "name": "DCS: Mi-8MTV2 and Ka-50 Memory of a Hero Campaign", + "url": "/v1/games/dcs-mi-8mtv2-and-ka-50-memory-of-a-hero-campaign" + }, + { + "slug": "dcs-mig-15bis", + "name": "DCS: MiG-15Bis", + "url": "/v1/games/dcs-mig-15bis" + }, + { + "slug": "dcs-mig-19p-farmer", + "name": "DCS: MiG-19P Farmer", + "url": "/v1/games/dcs-mig-19p-farmer" + }, + { + "slug": "dcs-mig-21bis", + "name": "DCS: MiG-21Bis", + "url": "/v1/games/dcs-mig-21bis" + }, + { + "slug": "dcs-mig-21bis-battle-of-krasnodar-campaign", + "name": "DCS: MiG-21bis Battle of Krasnodar Campaign", + "url": "/v1/games/dcs-mig-21bis-battle-of-krasnodar-campaign" + }, + { + "slug": "dcs-mig-21bis-constant-peg-campaign", + "name": "DCS: MiG-21bis Constant Peg Campaign", + "url": "/v1/games/dcs-mig-21bis-constant-peg-campaign" + }, + { + "slug": "dcs-mirage-f1", + "name": "DCS: Mirage F1", + "url": "/v1/games/dcs-mirage-f1" + }, + { + "slug": "dcs-mosquito-fb-iv-v-for-victory-campaign-reflected-simulations", + "name": "DCS: Mosquito FB IV - V for Victory Campaign Reflected Simulations", + "url": "/v1/games/dcs-mosquito-fb-iv-v-for-victory-campaign-reflected-simulations" + }, + { + "slug": "dcs-mosquito-fb-vi", + "name": "DCS: Mosquito FB VI", + "url": "/v1/games/dcs-mosquito-fb-vi" + }, + { + "slug": "dcs-nevada-test-and-training-range-map", + "name": "DCS: NEVADA Test and Training Range Map", + "url": "/v1/games/dcs-nevada-test-and-training-range-map" + }, + { + "slug": "dcs-ns-430-navigation-system", + "name": "DCS: NS 430 Navigation System", + "url": "/v1/games/dcs-ns-430-navigation-system" + }, + { + "slug": "dcs-ns-430-navigation-system-for-c-101eb", + "name": "DCS: NS 430 Navigation System for C-101EB", + "url": "/v1/games/dcs-ns-430-navigation-system-for-c-101eb" + }, + { + "slug": "dcs-ns-430-navigation-system-for-c-101", + "name": "DCS: NS 430 Navigation System for C-101СС", + "url": "/v1/games/dcs-ns-430-navigation-system-for-c-101" + }, + { + "slug": "dcs-ns-430-navigation-system-for-l-39", + "name": "DCS: NS 430 Navigation System for L-39С", + "url": "/v1/games/dcs-ns-430-navigation-system-for-l-39" + }, + { + "slug": "dcs-ns-430-navigation-system-for-mi-8mtv2", + "name": "DCS: NS 430 Navigation System for Mi-8MTV2", + "url": "/v1/games/dcs-ns-430-navigation-system-for-mi-8mtv2" + }, + { + "slug": "dcs-ns-430-navigation-system-for-sa342-gazelle", + "name": "DCS: NS 430 Navigation System for SA342 Gazelle", + "url": "/v1/games/dcs-ns-430-navigation-system-for-sa342-gazelle" + }, + { + "slug": "dcs-normandy-1944-map", + "name": "DCS: Normandy 1944 Map", + "url": "/v1/games/dcs-normandy-1944-map" + }, + { + "slug": "dcs-normandy-2-upgrade-from-normandy-1944", + "name": "DCS: Normandy 2 Upgrade from Normandy 1944", + "url": "/v1/games/dcs-normandy-2-upgrade-from-normandy-1944" + }, + { + "slug": "dcs-normandy-2-0", + "name": "DCS: Normandy 2.0", + "url": "/v1/games/dcs-normandy-2-0" + }, + { + "slug": "dcs-normandy-2-0-upgrade-from-the-channel", + "name": "DCS: Normandy 2.0 Upgrade from The Channel", + "url": "/v1/games/dcs-normandy-2-0-upgrade-from-the-channel" + }, + { + "slug": "dcs-p-47d-thunderbolt", + "name": "DCS: P-47D Thunderbolt", + "url": "/v1/games/dcs-p-47d-thunderbolt" + }, + { + "slug": "dcs-p-47d-wolfpack-campaign", + "name": "DCS: P-47D Wolfpack Campaign", + "url": "/v1/games/dcs-p-47d-wolfpack-campaign" + }, + { + "slug": "dcs-p-51d-mustang", + "name": "DCS: P-51D Mustang", + "url": "/v1/games/dcs-p-51d-mustang" + }, + { + "slug": "dcs-p-51d-mustang-operation-charnwood-campaign", + "name": "DCS: P-51D Mustang - Operation Charnwood Campaign", + "url": "/v1/games/dcs-p-51d-mustang-operation-charnwood-campaign" + }, + { + "slug": "dcs-p-51d-mustang-blue-nosed-bastards-of-bodney-campaign", + "name": "DCS: P-51D Mustang Blue Nosed Bastards of Bodney Campaign", + "url": "/v1/games/dcs-p-51d-mustang-blue-nosed-bastards-of-bodney-campaign" + }, + { + "slug": "dcs-persian-gulf", + "name": "DCS: Persian Gulf", + "url": "/v1/games/dcs-persian-gulf" + }, + { + "slug": "dcs-sa342-gazelle", + "name": "DCS: SA342 Gazelle", + "url": "/v1/games/dcs-sa342-gazelle" + }, + { + "slug": "dcs-sinai-map-by-onretech", + "name": "DCS: Sinai Map by OnReTech", + "url": "/v1/games/dcs-sinai-map-by-onretech" + }, + { + "slug": "dcs-south-atlantic", + "name": "DCS: South Atlantic", + "url": "/v1/games/dcs-south-atlantic" + }, + { + "slug": "dcs-spitfire-beware-beware-campaign", + "name": "DCS: Spitfire Beware! Beware! Campaign", + "url": "/v1/games/dcs-spitfire-beware-beware-campaign" + }, + { + "slug": "dcs-spitfire-lf-mk-ix", + "name": "DCS: Spitfire LF Mk IX", + "url": "/v1/games/dcs-spitfire-lf-mk-ix" + }, + { + "slug": "dcs-spitfire-lf-mk-ix-the-big-show-campaign", + "name": "DCS: Spitfire LF Mk.IX The Big Show Campaign", + "url": "/v1/games/dcs-spitfire-lf-mk-ix-the-big-show-campaign" + }, + { + "slug": "dcs-supercarrier", + "name": "DCS: Supercarrier", + "url": "/v1/games/dcs-supercarrier" + }, + { + "slug": "dcs-syria", + "name": "DCS: Syria", + "url": "/v1/games/dcs-syria" + }, + { + "slug": "dcs-the-channel", + "name": "DCS: The Channel", + "url": "/v1/games/dcs-the-channel" + }, + { + "slug": "dcs-uh-1h-huey", + "name": "DCS: UH-1H Huey", + "url": "/v1/games/dcs-uh-1h-huey" + }, + { + "slug": "dcs-uh-1h-huey-worlds-apart-spring-2025-campaign", + "name": "DCS: UH-1H Huey - Worlds Apart Spring 2025 Campaign", + "url": "/v1/games/dcs-uh-1h-huey-worlds-apart-spring-2025-campaign" + }, + { + "slug": "dcs-uh-1h-paradise-lost-campaign", + "name": "DCS: UH-1H Paradise Lost Campaign", + "url": "/v1/games/dcs-uh-1h-paradise-lost-campaign" + }, + { + "slug": "dcs-uh-1h-the-huey-last-show-campaign-by-sorelro", + "name": "DCS: UH-1H The Huey Last Show Campaign by SorelRo", + "url": "/v1/games/dcs-uh-1h-the-huey-last-show-campaign-by-sorelro" + }, + { + "slug": "dcs-world-war-ii-assets-pack", + "name": "DCS: World War II Assets Pack", + "url": "/v1/games/dcs-world-war-ii-assets-pack" + }, + { + "slug": "dcs-yak-52", + "name": "DCS: Yak-52", + "url": "/v1/games/dcs-yak-52" + }, { "slug": "ddi-rally-championship", "name": "DDI Rally Championship", @@ -166576,6 +171446,11 @@ "name": "DEEP SIX", "url": "/v1/games/deep-six" }, + { + "slug": "deep-space-waifu-academy", + "name": "DEEP SPACE WAIFU: ACADEMY", + "url": "/v1/games/deep-space-waifu-academy" + }, { "slug": "deep-space-waifu-fantasy", "name": "DEEP SPACE WAIFU: FANTASY", @@ -166631,6 +171506,11 @@ "name": "DEFCON", "url": "/v1/games/defcon" }, + { + "slug": "defcon-demo", + "name": "DEFCON Demo", + "url": "/v1/games/defcon-demo" + }, { "slug": "defcon-vr", "name": "DEFCON VR", @@ -167131,6 +172011,11 @@ "name": "DIG IT! - A Digger Simulator", "url": "/v1/games/dig-it-a-digger-simulator" }, + { + "slug": "dig-limited-bundle-1-2020", + "name": "DIG Limited Bundle 1 (2020)", + "url": "/v1/games/dig-limited-bundle-1-2020" + }, { "slug": "dig-the-ground", "name": "DIG THE GROUND", @@ -167141,6 +172026,21 @@ "name": "DIG VR", "url": "/v1/games/dig-vr" }, + { + "slug": "dig-weekly-bundle-125", + "name": "DIG Weekly Bundle 125", + "url": "/v1/games/dig-weekly-bundle-125" + }, + { + "slug": "dig-weekly-bundle-127", + "name": "DIG Weekly Bundle 127", + "url": "/v1/games/dig-weekly-bundle-127" + }, + { + "slug": "dig-weekly-bundle-346", + "name": "DIG Weekly Bundle 346", + "url": "/v1/games/dig-weekly-bundle-346" + }, { "slug": "dig-it-q126187252", "name": "DIG iT !?!", @@ -167451,6 +172351,11 @@ "name": "DJMax Ray", "url": "/v1/games/djmax-ray" }, + { + "slug": "djmax-respect", + "name": "DJMax Respect", + "url": "/v1/games/djmax-respect" + }, { "slug": "djmax-technika", "name": "DJMax Technika", @@ -167481,6 +172386,11 @@ "name": "DJMax Trilogy", "url": "/v1/games/djmax-trilogy" }, + { + "slug": "dk-island-emerald-rush", + "name": "DK Island & Emerald Rush", + "url": "/v1/games/dk-island-emerald-rush" + }, { "slug": "dk-jungle-climber", "name": "DK Jungle Climber", @@ -167931,6 +172841,11 @@ "name": "DOOM 3", "url": "/v1/games/doom-3" }, + { + "slug": "doom-32x-resurrection", + "name": "DOOM 32X: Resurrection", + "url": "/v1/games/doom-32x-resurrection" + }, { "slug": "doom-day", "name": "DOOM DAY", @@ -167951,6 +172866,11 @@ "name": "DOOM Eternal: idStudio", "url": "/v1/games/doom-eternal-idstudio" }, + { + "slug": "doom-retro", + "name": "DOOM Retro", + "url": "/v1/games/doom-retro" + }, { "slug": "doom-spiral", "name": "DOOM SPIRAL", @@ -168041,6 +172961,11 @@ "name": "DOS - Steve Pardo", "url": "/v1/games/dos-steve-pardo" }, + { + "slug": "dosdoom", + "name": "DOSDoom", + "url": "/v1/games/dosdoom" + }, { "slug": "dosi", "name": "DOSI", @@ -168511,6 +173436,11 @@ "name": "DS Puzzler Numplay Fan and Oekaki Logic", "url": "/v1/games/ds-puzzler-numplay-fan-and-oekaki-logic" }, + { + "slug": "dsda-doom", + "name": "DSDA-Doom", + "url": "/v1/games/dsda-doom" + }, { "slug": "dss-2-war-industry", "name": "DSS 2: War Industry", @@ -168956,6 +173886,11 @@ "name": "Dachs Hunter", "url": "/v1/games/dachs-hunter" }, + { + "slug": "dactyl-joust", + "name": "Dactyl Joust", + "url": "/v1/games/dactyl-joust" + }, { "slug": "dactyl-nightmare", "name": "Dactyl Nightmare", @@ -169796,6 +174731,11 @@ "name": "Damage Incorporated", "url": "/v1/games/damage-incorporated" }, + { + "slug": "damage-inc", + "name": "Damage, Inc.", + "url": "/v1/games/damage-inc" + }, { "slug": "damage-the-sadistic-butchering-of-humanity", "name": "Damage: The Sadistic Butchering of Humanity", @@ -170076,6 +175016,11 @@ "name": "Dan's Odyssey", "url": "/v1/games/dan-s-odyssey" }, + { + "slug": "dan-ku-ga", + "name": "Dan-Ku-Ga", + "url": "/v1/games/dan-ku-ga" + }, { "slug": "dancop-daniela-on-duty", "name": "DanCop - Daniela on Duty", @@ -170176,6 +175121,11 @@ "name": "Dance Collider", "url": "/v1/games/dance-collider" }, + { + "slug": "dance-contest", + "name": "Dance Contest", + "url": "/v1/games/dance-contest" + }, { "slug": "dance-dance-immolation", "name": "Dance Dance Immolation", @@ -170841,6 +175791,11 @@ "name": "Dandara", "url": "/v1/games/dandara" }, + { + "slug": "dandara-trials-of-fear", + "name": "Dandara: Trials of Fear+", + "url": "/v1/games/dandara-trials-of-fear" + }, { "slug": "dandelia", "name": "Dandelia", @@ -170896,6 +175851,11 @@ "name": "Dandy Dungeon: Legend of Brave Yamada", "url": "/v1/games/dandy-dungeon-legend-of-brave-yamada" }, + { + "slug": "dandy-s-world", + "name": "Dandy's World", + "url": "/v1/games/dandy-s-world" + }, { "slug": "dandy-s-world-bake-night-terror", "name": "Dandy's World - Bake Night Terror!", @@ -170921,11 +175881,26 @@ "name": "Dangan GB2", "url": "/v1/games/dangan-gb2" }, + { + "slug": "danganronpa-1-2", + "name": "Danganronpa 1 + 2", + "url": "/v1/games/danganronpa-1-2" + }, + { + "slug": "danganronpa-1-2-v3", + "name": "Danganronpa 1/2/V3", + "url": "/v1/games/danganronpa-1-2-v3" + }, { "slug": "danganronpa-2-goodbye-despair", "name": "Danganronpa 2: Goodbye Despair", "url": "/v1/games/danganronpa-2-goodbye-despair" }, + { + "slug": "danganronpa-2-goodbye-despair-anniversary-edition", + "name": "Danganronpa 2: Goodbye Despair Anniversary Edition", + "url": "/v1/games/danganronpa-2-goodbye-despair-anniversary-edition" + }, { "slug": "danganronpa-2-2", "name": "Danganronpa 2×2", @@ -170951,6 +175926,11 @@ "name": "Danganronpa V3: Killing Harmony", "url": "/v1/games/danganronpa-v3-killing-harmony" }, + { + "slug": "danganronpa-v3-killing-harmony-anniversary-edition", + "name": "Danganronpa V3: Killing Harmony Anniversary Edition", + "url": "/v1/games/danganronpa-v3-killing-harmony-anniversary-edition" + }, { "slug": "danganronpa-dead-end", "name": "Danganronpa: Dead End", @@ -170966,6 +175946,11 @@ "name": "Danganronpa: Trigger Happy Havoc", "url": "/v1/games/danganronpa-trigger-happy-havoc" }, + { + "slug": "danganronpa-trigger-happy-havoc-anniversary-edition", + "name": "Danganronpa: Trigger Happy Havoc Anniversary Edition", + "url": "/v1/games/danganronpa-trigger-happy-havoc-anniversary-edition" + }, { "slug": "danganronpa-unlimited-battle", "name": "Danganronpa: Unlimited Battle", @@ -171196,6 +176181,11 @@ "name": "DangerSpace", "url": "/v1/games/dangerspace" }, + { + "slug": "dangeresque-3-the-criminal-projective", + "name": "Dangeresque 3: The Criminal Projective", + "url": "/v1/games/dangeresque-3-the-criminal-projective" + }, { "slug": "dangeresque-the-roomisode-triungulate", "name": "Dangeresque: The Roomisode Triungulate", @@ -171726,6 +176716,11 @@ "name": "Daredevil Dennis", "url": "/v1/games/daredevil-dennis" }, + { + "slug": "daredevil-the-man-without-fear", + "name": "Daredevil: The Man Without Fear", + "url": "/v1/games/daredevil-the-man-without-fear" + }, { "slug": "dareka-no-tame-ni-dekiru-koto-innocent-identity", "name": "Dareka no Tame ni Dekiru Koto ~Innocent Identity~", @@ -171886,11 +176881,26 @@ "name": "Dark Age of Camelot", "url": "/v1/games/dark-age-of-camelot" }, + { + "slug": "dark-age-of-camelot-darkness-rising", + "name": "Dark Age of Camelot: Darkness Rising", + "url": "/v1/games/dark-age-of-camelot-darkness-rising" + }, { "slug": "dark-age-of-camelot-labyrinth-of-the-minotaur", "name": "Dark Age of Camelot: Labyrinth of the Minotaur", "url": "/v1/games/dark-age-of-camelot-labyrinth-of-the-minotaur" }, + { + "slug": "dark-age-of-camelot-shrouded-isles", + "name": "Dark Age of Camelot: Shrouded Isles", + "url": "/v1/games/dark-age-of-camelot-shrouded-isles" + }, + { + "slug": "dark-age-of-camelot-trials-of-atlantis", + "name": "Dark Age of Camelot: Trials of Atlantis", + "url": "/v1/games/dark-age-of-camelot-trials-of-atlantis" + }, { "slug": "dark-age-of-death", "name": "Dark Age of Death", @@ -172036,6 +177046,11 @@ "name": "Dark Bunny", "url": "/v1/games/dark-bunny" }, + { + "slug": "dark-burial-enhanced-edition", + "name": "Dark Burial: Enhanced Edition", + "url": "/v1/games/dark-burial-enhanced-edition" + }, { "slug": "dark-canvas-a-brush-with-death-collector-s-edition", "name": "Dark Canvas: A Brush With Death Collector's Edition", @@ -172141,6 +177156,11 @@ "name": "Dark Colony", "url": "/v1/games/dark-colony" }, + { + "slug": "dark-colony-the-council-wars", + "name": "Dark Colony: The Council Wars", + "url": "/v1/games/dark-colony-the-council-wars" + }, { "slug": "dark-colors", "name": "Dark Colors", @@ -172406,6 +177426,11 @@ "name": "Dark Earth", "url": "/v1/games/dark-earth" }, + { + "slug": "dark-earth-vienna-calling", + "name": "Dark Earth: Vienna Calling", + "url": "/v1/games/dark-earth-vienna-calling" + }, { "slug": "dark-echo", "name": "Dark Echo", @@ -172991,6 +178016,11 @@ "name": "Dark Memories: Prologue", "url": "/v1/games/dark-memories-prologue" }, + { + "slug": "dark-messiah-of-might-magic-singleplayer-demo", + "name": "Dark Messiah of Might & Magic Singleplayer Demo", + "url": "/v1/games/dark-messiah-of-might-magic-singleplayer-demo" + }, { "slug": "dark-messiah-of-might-and-magic", "name": "Dark Messiah of Might and Magic", @@ -173646,6 +178676,11 @@ "name": "Dark Sky", "url": "/v1/games/dark-sky" }, + { + "slug": "dark-skyes", + "name": "Dark Skyes", + "url": "/v1/games/dark-skyes" + }, { "slug": "dark-solitaire-mystical-circus", "name": "Dark Solitaire. Mystical Circus", @@ -173661,6 +178696,21 @@ "name": "Dark Souls II", "url": "/v1/games/dark-souls-ii" }, + { + "slug": "dark-souls-ii-crown-of-the-ivory-king", + "name": "Dark Souls II: Crown of the Ivory King", + "url": "/v1/games/dark-souls-ii-crown-of-the-ivory-king" + }, + { + "slug": "dark-souls-ii-crown-of-the-old-iron-king", + "name": "Dark Souls II: Crown of the Old Iron King", + "url": "/v1/games/dark-souls-ii-crown-of-the-old-iron-king" + }, + { + "slug": "dark-souls-ii-crown-of-the-sunken-king", + "name": "Dark Souls II: Crown of the Sunken King", + "url": "/v1/games/dark-souls-ii-crown-of-the-sunken-king" + }, { "slug": "dark-souls-ii-scholar-of-the-first-sin", "name": "Dark Souls II: Scholar of the First Sin", @@ -173671,6 +178721,31 @@ "name": "Dark Souls III", "url": "/v1/games/dark-souls-iii" }, + { + "slug": "dark-souls-iii-ashes-of-ariandel", + "name": "Dark Souls III: Ashes of Ariandel", + "url": "/v1/games/dark-souls-iii-ashes-of-ariandel" + }, + { + "slug": "dark-souls-iii-the-ringed-city", + "name": "Dark Souls III: The Ringed City", + "url": "/v1/games/dark-souls-iii-the-ringed-city" + }, + { + "slug": "dark-souls-trilogy", + "name": "Dark Souls Trilogy", + "url": "/v1/games/dark-souls-trilogy" + }, + { + "slug": "dark-souls-artorias-of-the-abyss", + "name": "Dark Souls: Artorias of the Abyss", + "url": "/v1/games/dark-souls-artorias-of-the-abyss" + }, + { + "slug": "dark-souls-prepare-to-die-edition", + "name": "Dark Souls: Prepare to Die Edition", + "url": "/v1/games/dark-souls-prepare-to-die-edition" + }, { "slug": "dark-souls-remastered", "name": "Dark Souls: Remastered", @@ -174691,6 +179766,11 @@ "name": "Darkstalkers Chronicle: The Chaos Tower", "url": "/v1/games/darkstalkers-chronicle-the-chaos-tower" }, + { + "slug": "darkstalkers-resurrection", + "name": "Darkstalkers Resurrection", + "url": "/v1/games/darkstalkers-resurrection" + }, { "slug": "darkstalkers-the-night-warriors", "name": "Darkstalkers: The Night Warriors", @@ -174816,6 +179896,11 @@ "name": "Darq", "url": "/v1/games/darq" }, + { + "slug": "darq-ultimate-edition", + "name": "Darq Ultimate Edition", + "url": "/v1/games/darq-ultimate-edition" + }, { "slug": "darsana", "name": "Darsana", @@ -174926,6 +180011,16 @@ "name": "Darwinia", "url": "/v1/games/darwinia" }, + { + "slug": "darwinia-demo", + "name": "Darwinia Demo", + "url": "/v1/games/darwinia-demo" + }, + { + "slug": "darwinia-q123046128", + "name": "Darwinia+", + "url": "/v1/games/darwinia-q123046128" + }, { "slug": "darwins-trash", "name": "Darwins Trash", @@ -175296,6 +180391,11 @@ "name": "Data Drift: Cyberpunk Shooter Top Down indie action", "url": "/v1/games/data-drift-cyberpunk-shooter-top-down-indie-action" }, + { + "slug": "data-east-arcade-classics", + "name": "Data East Arcade Classics", + "url": "/v1/games/data-east-arcade-classics" + }, { "slug": "data-garden", "name": "Data Garden", @@ -175421,6 +180521,11 @@ "name": "Dataminers", "url": "/v1/games/dataminers" }, + { + "slug": "dataran-tanjung-mas", + "name": "Dataran Tanjung Mas", + "url": "/v1/games/dataran-tanjung-mas" + }, { "slug": "datascape", "name": "Datascape", @@ -175656,6 +180761,11 @@ "name": "Daughter of Shadows: An SCP Breach Event", "url": "/v1/games/daughter-of-shadows-an-scp-breach-event" }, + { + "slug": "daughter-of-shadows-an-scp-breach-event-friend-and-foe-expansion", + "name": "Daughter of Shadows: An SCP Breach Event - Friend and Foe Expansion", + "url": "/v1/games/daughter-of-shadows-an-scp-breach-event-friend-and-foe-expansion" + }, { "slug": "daughters-of-the-dragon", "name": "Daughters of the Dragon", @@ -175711,6 +180821,11 @@ "name": "Dave the Diver", "url": "/v1/games/dave-the-diver" }, + { + "slug": "dave-the-diver-godzilla", + "name": "Dave the Diver: Godzilla", + "url": "/v1/games/dave-the-diver-godzilla" + }, { "slug": "dave-s-fun-algebra-class-remastered", "name": "Dave's Fun Algebra Class: Remastered", @@ -176226,6 +181341,11 @@ "name": "Dawnsbury Days", "url": "/v1/games/dawnsbury-days" }, + { + "slug": "dawnseekers", + "name": "Dawnseekers", + "url": "/v1/games/dawnseekers" + }, { "slug": "dawnspire-prelude", "name": "Dawnspire: Prelude", @@ -176506,6 +181626,11 @@ "name": "DayOff: Moonriver incident", "url": "/v1/games/dayoff-moonriver-incident" }, + { + "slug": "dayz-frostline", + "name": "DayZ Frostline", + "url": "/v1/games/dayz-frostline" + }, { "slug": "daybreak", "name": "Daybreak", @@ -176816,6 +181941,11 @@ "name": "De Conditione Mortalis: BLOODBATH/metanoia", "url": "/v1/games/de-conditione-mortalis-bloodbath-metanoia" }, + { + "slug": "de-digitale-metro", + "name": "De Digitale Metro", + "url": "/v1/games/de-digitale-metro" + }, { "slug": "de-feet", "name": "De Feet", @@ -177061,6 +182191,31 @@ "name": "Dead Cells", "url": "/v1/games/dead-cells" }, + { + "slug": "dead-cells-q115625161", + "name": "Dead Cells+", + "url": "/v1/games/dead-cells-q115625161" + }, + { + "slug": "dead-cells-fatal-falls", + "name": "Dead Cells: Fatal Falls", + "url": "/v1/games/dead-cells-fatal-falls" + }, + { + "slug": "dead-cells-rise-of-the-giant", + "name": "Dead Cells: Rise of the Giant", + "url": "/v1/games/dead-cells-rise-of-the-giant" + }, + { + "slug": "dead-cells-the-bad-seed", + "name": "Dead Cells: The Bad Seed", + "url": "/v1/games/dead-cells-the-bad-seed" + }, + { + "slug": "dead-cells-the-queen-and-the-sea", + "name": "Dead Cells: The Queen and the Sea", + "url": "/v1/games/dead-cells-the-queen-and-the-sea" + }, { "slug": "dead-charge", "name": "Dead Charge", @@ -177441,6 +182596,11 @@ "name": "Dead Island 2", "url": "/v1/games/dead-island-2" }, + { + "slug": "dead-island-3", + "name": "Dead Island 3", + "url": "/v1/games/dead-island-3" + }, { "slug": "dead-island-retro-revenge", "name": "Dead Island Retro Revenge", @@ -177456,6 +182616,11 @@ "name": "Dead Island: Definitive Edition", "url": "/v1/games/dead-island-definitive-edition" }, + { + "slug": "dead-island-epidemic", + "name": "Dead Island: Epidemic", + "url": "/v1/games/dead-island-epidemic" + }, { "slug": "dead-island-riptide", "name": "Dead Island: Riptide", @@ -177671,6 +182836,11 @@ "name": "Dead Purge: Outbreak", "url": "/v1/games/dead-purge-outbreak" }, + { + "slug": "dead-rails", + "name": "Dead Rails", + "url": "/v1/games/dead-rails" + }, { "slug": "dead-rain-new-zombie-virus", "name": "Dead Rain - New Zombie Virus", @@ -177761,6 +182931,11 @@ "name": "Dead Rising Deluxe Remaster", "url": "/v1/games/dead-rising-deluxe-remaster" }, + { + "slug": "dead-rising-triple-bundle-pack", + "name": "Dead Rising Triple Bundle Pack", + "url": "/v1/games/dead-rising-triple-bundle-pack" + }, { "slug": "dead-rising-chop-till-you-drop", "name": "Dead Rising: Chop Till You Drop", @@ -178101,6 +183276,101 @@ "name": "Dead by Daylight", "url": "/v1/games/dead-by-daylight" }, + { + "slug": "dead-by-daylight-a-binding-of-kin-chapter", + "name": "Dead by Daylight - A Binding of Kin Chapter", + "url": "/v1/games/dead-by-daylight-a-binding-of-kin-chapter" + }, + { + "slug": "dead-by-daylight-all-kill-chapter", + "name": "Dead by Daylight - All-Kill Chapter", + "url": "/v1/games/dead-by-daylight-all-kill-chapter" + }, + { + "slug": "dead-by-daylight-descend-beyond-chapter", + "name": "Dead by Daylight - Descend Beyond chapter", + "url": "/v1/games/dead-by-daylight-descend-beyond-chapter" + }, + { + "slug": "dead-by-daylight-end-transmission-chapter", + "name": "Dead by Daylight - End Transmission Chapter", + "url": "/v1/games/dead-by-daylight-end-transmission-chapter" + }, + { + "slug": "dead-by-daylight-escape-expansion-pack", + "name": "Dead by Daylight - Escape Expansion Pack", + "url": "/v1/games/dead-by-daylight-escape-expansion-pack" + }, + { + "slug": "dead-by-daylight-forged-in-fog-chapter", + "name": "Dead by Daylight - Forged in Fog Chapter", + "url": "/v1/games/dead-by-daylight-forged-in-fog-chapter" + }, + { + "slug": "dead-by-daylight-hellraiser-chapter", + "name": "Dead by Daylight - Hellraiser chapter", + "url": "/v1/games/dead-by-daylight-hellraiser-chapter" + }, + { + "slug": "dead-by-daylight-hour-of-the-witch-chapter", + "name": "Dead by Daylight - Hour of the Witch Chapter", + "url": "/v1/games/dead-by-daylight-hour-of-the-witch-chapter" + }, + { + "slug": "dead-by-daylight-nicolas-cage-chapter-pack", + "name": "Dead by Daylight - Nicolas Cage Chapter Pack", + "url": "/v1/games/dead-by-daylight-nicolas-cage-chapter-pack" + }, + { + "slug": "dead-by-daylight-portrait-of-a-murder", + "name": "Dead by Daylight - Portrait of a Murder", + "url": "/v1/games/dead-by-daylight-portrait-of-a-murder" + }, + { + "slug": "dead-by-daylight-resident-evil-chapter", + "name": "Dead by Daylight - Resident Evil Chapter", + "url": "/v1/games/dead-by-daylight-resident-evil-chapter" + }, + { + "slug": "dead-by-daylight-resident-evil-project-w-chapter", + "name": "Dead by Daylight - Resident Evil: PROJECT W Chapter", + "url": "/v1/games/dead-by-daylight-resident-evil-project-w-chapter" + }, + { + "slug": "dead-by-daylight-roots-of-dread-chapter", + "name": "Dead by Daylight - Roots of Dread Chapter", + "url": "/v1/games/dead-by-daylight-roots-of-dread-chapter" + }, + { + "slug": "dead-by-daylight-sadako-rising-chapter", + "name": "Dead by Daylight - Sadako Rising Chapter", + "url": "/v1/games/dead-by-daylight-sadako-rising-chapter" + }, + { + "slug": "dead-by-daylight-terror-expansion-pack", + "name": "Dead by Daylight - Terror Expansion Pack", + "url": "/v1/games/dead-by-daylight-terror-expansion-pack" + }, + { + "slug": "dead-by-daylight-tools-of-torment-chapter", + "name": "Dead by Daylight - Tools of Torment Chapter", + "url": "/v1/games/dead-by-daylight-tools-of-torment-chapter" + }, + { + "slug": "dead-by-daylight-x-attack-on-titan-armored-pack", + "name": "Dead by Daylight x Attack on Titan: Armored Pack", + "url": "/v1/games/dead-by-daylight-x-attack-on-titan-armored-pack" + }, + { + "slug": "dead-by-daylight-x-attack-on-titan-war-hammer-pack", + "name": "Dead by Daylight x Attack on Titan: War Hammer Pack", + "url": "/v1/games/dead-by-daylight-x-attack-on-titan-war-hammer-pack" + }, + { + "slug": "dead-by-daylight-bloodstained-sack", + "name": "Dead by Daylight: Bloodstained Sack", + "url": "/v1/games/dead-by-daylight-bloodstained-sack" + }, { "slug": "dead-by-death", "name": "Dead by Death", @@ -178236,11 +183506,46 @@ "name": "Dead or Alive 6 Last Round", "url": "/v1/games/dead-or-alive-6-last-round" }, + { + "slug": "dead-or-alive-6-season-pass-1", + "name": "Dead or Alive 6 Season Pass 1", + "url": "/v1/games/dead-or-alive-6-season-pass-1" + }, + { + "slug": "dead-or-alive-6-season-pass-2", + "name": "Dead or Alive 6 Season Pass 2", + "url": "/v1/games/dead-or-alive-6-season-pass-2" + }, + { + "slug": "dead-or-alive-6-season-pass-3", + "name": "Dead or Alive 6 Season Pass 3", + "url": "/v1/games/dead-or-alive-6-season-pass-3" + }, + { + "slug": "dead-or-alive-6-season-pass-4", + "name": "Dead or Alive 6 Season Pass 4", + "url": "/v1/games/dead-or-alive-6-season-pass-4" + }, { "slug": "dead-or-alive-6-core-fighters", "name": "Dead or Alive 6: Core Fighters", "url": "/v1/games/dead-or-alive-6-core-fighters" }, + { + "slug": "dead-or-alive-6-core-fighters-20-character-set", + "name": "Dead or Alive 6: Core Fighters 20 Character Set", + "url": "/v1/games/dead-or-alive-6-core-fighters-20-character-set" + }, + { + "slug": "dead-or-alive-6-story-unlock-key", + "name": "Dead or Alive 6: Story Unlock Key", + "url": "/v1/games/dead-or-alive-6-story-unlock-key" + }, + { + "slug": "dead-or-alive-new-project", + "name": "Dead or Alive New Project", + "url": "/v1/games/dead-or-alive-new-project" + }, { "slug": "dead-or-alive-online", "name": "Dead or Alive Online", @@ -178296,6 +183601,11 @@ "name": "Dead or Alive++", "url": "/v1/games/dead-or-alive-q123436301" }, + { + "slug": "dead-or-alive-code-chronos", + "name": "Dead or Alive: Code Chronos", + "url": "/v1/games/dead-or-alive-code-chronos" + }, { "slug": "dead-or-alive-dimensions", "name": "Dead or Alive: Dimensions", @@ -178331,6 +183641,11 @@ "name": "Dead to Rights: Reckoning", "url": "/v1/games/dead-to-rights-reckoning" }, + { + "slug": "dead-to-rights-retribution", + "name": "Dead to Rights: Retribution", + "url": "/v1/games/dead-to-rights-retribution" + }, { "slug": "dead-s-prison-watcher", "name": "Dead's Prison Watcher", @@ -178486,6 +183801,11 @@ "name": "Deadcraft", "url": "/v1/games/deadcraft" }, + { + "slug": "deadcraft-deluxe-edition", + "name": "Deadcraft Deluxe Edition", + "url": "/v1/games/deadcraft-deluxe-edition" + }, { "slug": "deaded-the-runner", "name": "Deaded The Runner", @@ -180866,6 +186186,11 @@ "name": "Deathsmiles", "url": "/v1/games/deathsmiles" }, + { + "slug": "deathsmiles-i-ii", + "name": "Deathsmiles I & II", + "url": "/v1/games/deathsmiles-i-ii" + }, { "slug": "deathsmiles-ii", "name": "Deathsmiles II", @@ -181311,6 +186636,11 @@ "name": "Decision Legacy Collection", "url": "/v1/games/decision-legacy-collection" }, + { + "slug": "decision-at-djerba", + "name": "Decision at Djerba", + "url": "/v1/games/decision-at-djerba" + }, { "slug": "decision-at-gettysburg", "name": "Decision at Gettysburg", @@ -181476,6 +186806,11 @@ "name": "Deck of Ashes", "url": "/v1/games/deck-of-ashes" }, + { + "slug": "deck-of-ashes-complete-edition", + "name": "Deck of Ashes: Complete Edition", + "url": "/v1/games/deck-of-ashes-complete-edition" + }, { "slug": "deck-of-bullets", "name": "Deck of Bullets", @@ -182276,6 +187611,36 @@ "name": "Deep Rock Galactic", "url": "/v1/games/deep-rock-galactic" }, + { + "slug": "deep-rock-galactic-dark-future-pack", + "name": "Deep Rock Galactic - Dark Future Pack", + "url": "/v1/games/deep-rock-galactic-dark-future-pack" + }, + { + "slug": "deep-rock-galactic-dawn-of-the-dread-pack", + "name": "Deep Rock Galactic - Dawn of the Dread Pack", + "url": "/v1/games/deep-rock-galactic-dawn-of-the-dread-pack" + }, + { + "slug": "deep-rock-galactic-megacorp-pack", + "name": "Deep Rock Galactic - MegaCorp Pack", + "url": "/v1/games/deep-rock-galactic-megacorp-pack" + }, + { + "slug": "deep-rock-galactic-rival-tech-pack", + "name": "Deep Rock Galactic - Rival Tech Pack", + "url": "/v1/games/deep-rock-galactic-rival-tech-pack" + }, + { + "slug": "deep-rock-galactic-robot-rebellion-pack", + "name": "Deep Rock Galactic - Robot Rebellion Pack", + "url": "/v1/games/deep-rock-galactic-robot-rebellion-pack" + }, + { + "slug": "deep-rock-galactic-roughneck-pack", + "name": "Deep Rock Galactic - Roughneck Pack", + "url": "/v1/games/deep-rock-galactic-roughneck-pack" + }, { "slug": "deep-rock-galactic-rogue-core", "name": "Deep Rock Galactic: Rogue Core", @@ -182376,6 +187741,11 @@ "name": "Deep Sleep", "url": "/v1/games/deep-sleep" }, + { + "slug": "deep-sleep-trilogy", + "name": "Deep Sleep Trilogy", + "url": "/v1/games/deep-sleep-trilogy" + }, { "slug": "deep-sleep-labyrinth-of-the-forsaken", "name": "Deep Sleep: Labyrinth of the Forsaken", @@ -182651,6 +188021,11 @@ "name": "DeepWeb Simulator: Prologue", "url": "/v1/games/deepweb-simulator-prologue" }, + { + "slug": "deepzengo", + "name": "DeepZenGo", + "url": "/v1/games/deepzengo" + }, { "slug": "deepcut", "name": "Deepcut", @@ -182776,6 +188151,11 @@ "name": "Deepwell", "url": "/v1/games/deepwell" }, + { + "slug": "deepwoken", + "name": "Deepwoken", + "url": "/v1/games/deepwoken" + }, { "slug": "deepworld", "name": "Deepworld", @@ -183506,11 +188886,41 @@ "name": "Defense Grid 2", "url": "/v1/games/defense-grid-2" }, + { + "slug": "defense-grid-containment-dlc", + "name": "Defense Grid: Containment DLC", + "url": "/v1/games/defense-grid-containment-dlc" + }, + { + "slug": "defense-grid-resurgence-map-pack-1", + "name": "Defense Grid: Resurgence Map Pack 1", + "url": "/v1/games/defense-grid-resurgence-map-pack-1" + }, + { + "slug": "defense-grid-resurgence-map-pack-2", + "name": "Defense Grid: Resurgence Map Pack 2", + "url": "/v1/games/defense-grid-resurgence-map-pack-2" + }, + { + "slug": "defense-grid-resurgence-map-pack-3", + "name": "Defense Grid: Resurgence Map Pack 3", + "url": "/v1/games/defense-grid-resurgence-map-pack-3" + }, + { + "slug": "defense-grid-resurgence-map-pack-4", + "name": "Defense Grid: Resurgence Map Pack 4", + "url": "/v1/games/defense-grid-resurgence-map-pack-4" + }, { "slug": "defense-grid-the-awakening", "name": "Defense Grid: The Awakening", "url": "/v1/games/defense-grid-the-awakening" }, + { + "slug": "defense-grid-the-awakening-you-monster-dlc", + "name": "Defense Grid: The Awakening - You Monster DLC", + "url": "/v1/games/defense-grid-the-awakening-you-monster-dlc" + }, { "slug": "defense-legend-5-survivor-td", "name": "Defense Legend 5: Survivor TD", @@ -184066,6 +189476,11 @@ "name": "Dekitate High School", "url": "/v1/games/dekitate-high-school" }, + { + "slug": "dekrim", + "name": "Dekrim", + "url": "/v1/games/dekrim" + }, { "slug": "delares", "name": "Delares", @@ -184186,6 +189601,11 @@ "name": "Delicious - Miracle of Life", "url": "/v1/games/delicious-miracle-of-life" }, + { + "slug": "delicious-miracle-of-life-q123295209", + "name": "Delicious - Miracle of Life+", + "url": "/v1/games/delicious-miracle-of-life-q123295209" + }, { "slug": "delicious-moms-vs-dads", "name": "Delicious - Moms vs Dads", @@ -184506,6 +189926,11 @@ "name": "Delos: Space Traffic Control", "url": "/v1/games/delos-space-traffic-control" }, + { + "slug": "delphidoom", + "name": "DelphiDoom", + "url": "/v1/games/delphidoom" + }, { "slug": "delphine-collection", "name": "Delphine Collection", @@ -184536,16 +189961,36 @@ "name": "Delta 16", "url": "/v1/games/delta-16" }, + { + "slug": "delta-force-q126187152", + "name": "Delta Force", + "url": "/v1/games/delta-force-q126187152" + }, { "slug": "delta-force", "name": "Delta Force", "url": "/v1/games/delta-force" }, + { + "slug": "delta-force-bootcamp", + "name": "Delta Force Bootcamp", + "url": "/v1/games/delta-force-bootcamp" + }, + { + "slug": "delta-force-trilogy", + "name": "Delta Force Trilogy", + "url": "/v1/games/delta-force-trilogy" + }, { "slug": "delta-force-black-hawk-down", "name": "Delta Force: Black Hawk Down", "url": "/v1/games/delta-force-black-hawk-down" }, + { + "slug": "delta-force-black-hawk-down-team-sabre", + "name": "Delta Force: Black Hawk Down – Team Sabre", + "url": "/v1/games/delta-force-black-hawk-down-team-sabre" + }, { "slug": "delta-force-urban-warfare", "name": "Delta Force: Urban Warfare", @@ -184596,6 +190041,11 @@ "name": "Delta Perspective", "url": "/v1/games/delta-perspective" }, + { + "slug": "delta-rising", + "name": "Delta Rising", + "url": "/v1/games/delta-rising" + }, { "slug": "delta-run", "name": "Delta Run", @@ -184686,6 +190136,16 @@ "name": "Deltarune", "url": "/v1/games/deltarune" }, + { + "slug": "deltarune-chapter-1-the-beginning", + "name": "Deltarune: Chapter 1 — The Beginning", + "url": "/v1/games/deltarune-chapter-1-the-beginning" + }, + { + "slug": "deltarune-chapter-2-a-cyber-s-world", + "name": "Deltarune: Chapter 2 — A Cyber's World", + "url": "/v1/games/deltarune-chapter-2-a-cyber-s-world" + }, { "slug": "deltatile", "name": "Deltatile", @@ -185006,6 +190466,11 @@ "name": "Democracy 3: Africa", "url": "/v1/games/democracy-3-africa" }, + { + "slug": "democracy-3-extremism", + "name": "Democracy 3: Extremism", + "url": "/v1/games/democracy-3-extremism" + }, { "slug": "democracy-4", "name": "Democracy 4", @@ -186311,6 +191776,11 @@ "name": "Deponia Doomsday", "url": "/v1/games/deponia-doomsday" }, + { + "slug": "deponia-the-complete-journey", + "name": "Deponia: The Complete Journey", + "url": "/v1/games/deponia-the-complete-journey" + }, { "slug": "depopulation", "name": "Depopulation", @@ -186546,6 +192016,11 @@ "name": "Der Blaue Diamant", "url": "/v1/games/der-blaue-diamant" }, + { + "slug": "der-clou-profidiskette", + "name": "Der Clou!: Profidiskette", + "url": "/v1/games/der-clou-profidiskette" + }, { "slug": "der-geisterj-ger-the-ghost-hunter", "name": "Der Geisterjäger / The Ghost Hunter", @@ -186611,6 +192086,11 @@ "name": "Der verlorene Pfad", "url": "/v1/games/der-verlorene-pfad" }, + { + "slug": "derdiedas", + "name": "DerDieDas", + "url": "/v1/games/derdiedas" + }, { "slug": "derail-valley", "name": "Derail Valley", @@ -187016,11 +192496,21 @@ "name": "Descent: FreeSpace – The Great War", "url": "/v1/games/descent-freespace-the-great-war" }, + { + "slug": "descent-freespace-silent-threat", + "name": "Descent: Freespace - Silent Threat", + "url": "/v1/games/descent-freespace-silent-threat" + }, { "slug": "descent-legends-of-the-dark", "name": "Descent: Legends of the Dark", "url": "/v1/games/descent-legends-of-the-dark" }, + { + "slug": "descent-levels-of-the-world", + "name": "Descent: Levels of the World", + "url": "/v1/games/descent-levels-of-the-world" + }, { "slug": "descent-road-to-legend", "name": "Descent: Road to Legend", @@ -187101,6 +192591,11 @@ "name": "Desert Child", "url": "/v1/games/desert-child" }, + { + "slug": "desert-combat", + "name": "Desert Combat", + "url": "/v1/games/desert-combat" + }, { "slug": "desert-commander", "name": "Desert Commander", @@ -188251,6 +193746,41 @@ "name": "Destiny 2", "url": "/v1/games/destiny-2" }, + { + "slug": "destiny-2-beyond-light", + "name": "Destiny 2: Beyond Light", + "url": "/v1/games/destiny-2-beyond-light" + }, + { + "slug": "destiny-2-forsaken", + "name": "Destiny 2: Forsaken", + "url": "/v1/games/destiny-2-forsaken" + }, + { + "slug": "destiny-2-lightfall", + "name": "Destiny 2: Lightfall", + "url": "/v1/games/destiny-2-lightfall" + }, + { + "slug": "destiny-2-renegades", + "name": "Destiny 2: Renegades", + "url": "/v1/games/destiny-2-renegades" + }, + { + "slug": "destiny-2-shadowkeep", + "name": "Destiny 2: Shadowkeep", + "url": "/v1/games/destiny-2-shadowkeep" + }, + { + "slug": "destiny-2-the-final-shape", + "name": "Destiny 2: The Final Shape", + "url": "/v1/games/destiny-2-the-final-shape" + }, + { + "slug": "destiny-2-the-witch-queen", + "name": "Destiny 2: The Witch Queen", + "url": "/v1/games/destiny-2-the-witch-queen" + }, { "slug": "destiny-child", "name": "Destiny Child", @@ -188286,6 +193816,11 @@ "name": "Destiny Online", "url": "/v1/games/destiny-online" }, + { + "slug": "destiny-sharefactory-theme", + "name": "Destiny SHAREfactory Theme", + "url": "/v1/games/destiny-sharefactory-theme" + }, { "slug": "destiny-sphere", "name": "Destiny Sphere", @@ -188371,6 +193906,11 @@ "name": "Destiny or Fate", "url": "/v1/games/destiny-or-fate" }, + { + "slug": "destiny-post-release-content", + "name": "Destiny post-release content", + "url": "/v1/games/destiny-post-release-content" + }, { "slug": "destiny-s-divide", "name": "Destiny's Divide", @@ -188386,11 +193926,21 @@ "name": "Destiny's Sword", "url": "/v1/games/destiny-s-sword" }, + { + "slug": "destiny-rise-of-iron", + "name": "Destiny: Rise of Iron", + "url": "/v1/games/destiny-rise-of-iron" + }, { "slug": "destiny-rising", "name": "Destiny: Rising", "url": "/v1/games/destiny-rising" }, + { + "slug": "destiny-the-taken-king", + "name": "Destiny: The Taken King", + "url": "/v1/games/destiny-the-taken-king" + }, { "slug": "destiny-world-domination-from-stone-age-to-space-age", "name": "Destiny: World Domination from Stone Age to Space Age", @@ -188421,6 +193971,11 @@ "name": "Destropolis", "url": "/v1/games/destropolis" }, + { + "slug": "destroy-all-humans-2-reprobed-single-player", + "name": "Destroy All Humans 2 – Reprobed: Single Player", + "url": "/v1/games/destroy-all-humans-2-reprobed-single-player" + }, { "slug": "destroy-all-humans-q65016995", "name": "Destroy All Humans!", @@ -189081,6 +194636,11 @@ "name": "Detective Montgomery Fox: The Revenge of Victor Draven", "url": "/v1/games/detective-montgomery-fox-the-revenge-of-victor-draven" }, + { + "slug": "detective-opera-milky-holmes-td-disappeared-7-and-a-miracle-song", + "name": "Detective Opera Milky Holmes TD Disappeared 7 and a miracle song", + "url": "/v1/games/detective-opera-milky-holmes-td-disappeared-7-and-a-miracle-song" + }, { "slug": "detective-penguin", "name": "Detective Penguin", @@ -189366,6 +194926,11 @@ "name": "Detroit", "url": "/v1/games/detroit" }, + { + "slug": "detroit-become-human-digital-deluxe-edition", + "name": "Detroit: Become Human - Digital Deluxe Edition", + "url": "/v1/games/detroit-become-human-digital-deluxe-edition" + }, { "slug": "deuces-wild-video-poker", "name": "Deuces Wild - Video Poker", @@ -189401,6 +194966,11 @@ "name": "Deus Ex: Human Revolution - Director's Cut", "url": "/v1/games/deus-ex-human-revolution-director-s-cut" }, + { + "slug": "deus-ex-human-revolution-the-missing-link", + "name": "Deus Ex: Human Revolution - The Missing Link", + "url": "/v1/games/deus-ex-human-revolution-the-missing-link" + }, { "slug": "deus-ex-invisible-war", "name": "Deus Ex: Invisible War", @@ -189781,6 +195351,11 @@ "name": "Devil May Cry 5", "url": "/v1/games/devil-may-cry-5" }, + { + "slug": "devil-may-cry-5-special-edition", + "name": "Devil May Cry 5 Special Edition", + "url": "/v1/games/devil-may-cry-5-special-edition" + }, { "slug": "devil-may-cry-hd-collection", "name": "Devil May Cry: HD Collection", @@ -190131,6 +195706,11 @@ "name": "Devilish: Ball Bounder", "url": "/v1/games/devilish-ball-bounder" }, + { + "slug": "devilman-ii-devil-resurrection", + "name": "Devilman II Devil Resurrection", + "url": "/v1/games/devilman-ii-devil-resurrection" + }, { "slug": "devilry", "name": "Devilry", @@ -190491,6 +196071,11 @@ "name": "Diablo II", "url": "/v1/games/diablo-ii" }, + { + "slug": "diablo-ii-lord-of-destruction", + "name": "Diablo II: Lord of Destruction", + "url": "/v1/games/diablo-ii-lord-of-destruction" + }, { "slug": "diablo-ii-resurrected", "name": "Diablo II: Resurrected", @@ -190501,6 +196086,21 @@ "name": "Diablo III", "url": "/v1/games/diablo-iii" }, + { + "slug": "diablo-iii-eternal-collection", + "name": "Diablo III: Eternal Collection", + "url": "/v1/games/diablo-iii-eternal-collection" + }, + { + "slug": "diablo-iii-reaper-of-souls", + "name": "Diablo III: Reaper of Souls", + "url": "/v1/games/diablo-iii-reaper-of-souls" + }, + { + "slug": "diablo-iii-rise-of-the-necromancer", + "name": "Diablo III: Rise of the Necromancer", + "url": "/v1/games/diablo-iii-rise-of-the-necromancer" + }, { "slug": "diablo-iv", "name": "Diablo IV", @@ -190526,6 +196126,11 @@ "name": "Diablo The Abyss", "url": "/v1/games/diablo-the-abyss" }, + { + "slug": "diablo-hellfire", + "name": "Diablo: Hellfire", + "url": "/v1/games/diablo-hellfire" + }, { "slug": "diabolic", "name": "Diabolic", @@ -190736,6 +196341,11 @@ "name": "Diamond", "url": "/v1/games/diamond" }, + { + "slug": "diamond-bingo", + "name": "Diamond Bingo", + "url": "/v1/games/diamond-bingo" + }, { "slug": "diamond-board", "name": "Diamond Board", @@ -191766,6 +197376,11 @@ "name": "Die O'Clock", "url": "/v1/games/die-o-clock" }, + { + "slug": "die-ralf-glau-edition", + "name": "Die Ralf Glau Edition", + "url": "/v1/games/die-ralf-glau-edition" + }, { "slug": "die-rangliste", "name": "Die Rangliste", @@ -192476,6 +198091,11 @@ "name": "Digimon Rumble Arena 2", "url": "/v1/games/digimon-rumble-arena-2" }, + { + "slug": "digimon-story-cyber-sleuth-complete-edition", + "name": "Digimon Story Cyber Sleuth: Complete Edition", + "url": "/v1/games/digimon-story-cyber-sleuth-complete-edition" + }, { "slug": "digimon-story-lost-evolution", "name": "Digimon Story Lost Evolution", @@ -193421,6 +199041,16 @@ "name": "DinD", "url": "/v1/games/dind" }, + { + "slug": "dinamic-5-aniversario", + "name": "Dinamic 5° Aniversario", + "url": "/v1/games/dinamic-5-aniversario" + }, + { + "slug": "dinamic-hits-collection", + "name": "Dinamic Hits Collection", + "url": "/v1/games/dinamic-hits-collection" + }, { "slug": "dine-n-bash", "name": "Dine 'n Bash", @@ -193466,6 +199096,11 @@ "name": "Diner Dash 5: Boom!", "url": "/v1/games/diner-dash-5-boom" }, + { + "slug": "diner-dash-flo-through-time", + "name": "Diner Dash: Flo Through Time", + "url": "/v1/games/diner-dash-flo-through-time" + }, { "slug": "diner-dash-flo-on-the-go", "name": "Diner Dash: Flo on the Go", @@ -193666,6 +199301,11 @@ "name": "Dino Crisis 3", "url": "/v1/games/dino-crisis-3" }, + { + "slug": "dino-crisis-5th-anniversary", + "name": "Dino Crisis 5th Anniversary", + "url": "/v1/games/dino-crisis-5th-anniversary" + }, { "slug": "dino-crisis-dungeon-in-chaos", "name": "Dino Crisis: Dungeon in Chaos", @@ -194231,6 +199871,11 @@ "name": "Dinosaur Park – Primeval Zoo", "url": "/v1/games/dinosaur-park-primeval-zoo" }, + { + "slug": "dinosaur-planet", + "name": "Dinosaur Planet", + "url": "/v1/games/dinosaur-planet" + }, { "slug": "dinosaur-safari", "name": "Dinosaur Safari", @@ -194601,6 +200246,11 @@ "name": "Dirk Dagger and the Fallen Idol", "url": "/v1/games/dirk-dagger-and-the-fallen-idol" }, + { + "slug": "dirk-valentine-and-the-fortress-of-steam", + "name": "Dirk Valentine and the Fortress of Steam", + "url": "/v1/games/dirk-valentine-and-the-fortress-of-steam" + }, { "slug": "dirt-and-flo", "name": "Dirt And Flo", @@ -194741,6 +200391,11 @@ "name": "Dirty Girls", "url": "/v1/games/dirty-girls" }, + { + "slug": "dirty-harry-q5281019", + "name": "Dirty Harry", + "url": "/v1/games/dirty-harry-q5281019" + }, { "slug": "dirty-harry", "name": "Dirty Harry", @@ -195171,6 +200826,11 @@ "name": "Disciples III: Renaissance", "url": "/v1/games/disciples-iii-renaissance" }, + { + "slug": "disciples-iii-resurrection", + "name": "Disciples III: Resurrection", + "url": "/v1/games/disciples-iii-resurrection" + }, { "slug": "disciples-of-steel", "name": "Disciples of Steel", @@ -195191,6 +200851,11 @@ "name": "Disciples: Liberation", "url": "/v1/games/disciples-liberation" }, + { + "slug": "disciples-liberation-digital-deluxe-edition", + "name": "Disciples: Liberation Digital Deluxe Edition", + "url": "/v1/games/disciples-liberation-digital-deluxe-edition" + }, { "slug": "disciples-sacred-lands", "name": "Disciples: Sacred Lands", @@ -195546,6 +201211,11 @@ "name": "Disembowel", "url": "/v1/games/disembowel" }, + { + "slug": "disenchanted-demo", + "name": "Disenchanted DEMO", + "url": "/v1/games/disenchanted-demo" + }, { "slug": "disfigure", "name": "Disfigure", @@ -195771,6 +201441,11 @@ "name": "Disk Dashers", "url": "/v1/games/disk-dashers" }, + { + "slug": "disk-ng", + "name": "Disk NG", + "url": "/v1/games/disk-ng" + }, { "slug": "diskr-tna-cesta-do-b", "name": "Diskrétna cesta do B.", @@ -195841,6 +201516,11 @@ "name": "Disney Coloring World", "url": "/v1/games/disney-coloring-world" }, + { + "slug": "disney-coloring-world-q118234977", + "name": "Disney Coloring World+", + "url": "/v1/games/disney-coloring-world-q118234977" + }, { "slug": "disney-crossy-road", "name": "Disney Crossy Road", @@ -195851,6 +201531,16 @@ "name": "Disney Digital Books: Disney Villains Challenge", "url": "/v1/games/disney-digital-books-disney-villains-challenge" }, + { + "slug": "disney-dreamlight-valley-arcade-edition", + "name": "Disney Dreamlight Valley Arcade Edition", + "url": "/v1/games/disney-dreamlight-valley-arcade-edition" + }, + { + "slug": "disney-dreamlight-valley-a-rift-in-time", + "name": "Disney Dreamlight Valley: A Rift in Time", + "url": "/v1/games/disney-dreamlight-valley-a-rift-in-time" + }, { "slug": "disney-emoji-blitz", "name": "Disney Emoji Blitz", @@ -195876,6 +201566,11 @@ "name": "Disney Getaway Blast", "url": "/v1/games/disney-getaway-blast" }, + { + "slug": "disney-getaway-blast-q118235078", + "name": "Disney Getaway Blast+", + "url": "/v1/games/disney-getaway-blast-q118235078" + }, { "slug": "disney-golf", "name": "Disney Golf", @@ -196816,6 +202511,11 @@ "name": "Distant Worlds 2", "url": "/v1/games/distant-worlds-2" }, + { + "slug": "distant-worlds-return-of-the-shakturi", + "name": "Distant Worlds: Return of the Shakturi", + "url": "/v1/games/distant-worlds-return-of-the-shakturi" + }, { "slug": "distant-castle", "name": "Distant castle", @@ -197196,6 +202896,11 @@ "name": "Divination", "url": "/v1/games/divination" }, + { + "slug": "divination-console-edition", + "name": "Divination: Console Edition", + "url": "/v1/games/divination-console-edition" + }, { "slug": "divine-adventure-rpg", "name": "Divine Adventure RPG", @@ -197421,6 +203126,11 @@ "name": "Divinity II", "url": "/v1/games/divinity-ii" }, + { + "slug": "divinity-ii-flames-of-vengeance", + "name": "Divinity II: Flames of Vengeance", + "url": "/v1/games/divinity-ii-flames-of-vengeance" + }, { "slug": "divinity-dragon-commander", "name": "Divinity: Dragon Commander", @@ -197501,6 +203211,11 @@ "name": "Dizzy", "url": "/v1/games/dizzy" }, + { + "slug": "dizzy-collection", + "name": "Dizzy Collection", + "url": "/v1/games/dizzy-collection" + }, { "slug": "dizzy-dice", "name": "Dizzy Dice", @@ -197596,11 +203311,21 @@ "name": "Dkdkdk Granny 3", "url": "/v1/games/dkdkdk-granny-3" }, + { + "slug": "dmc-devil-may-cry-vergil-s-downfall", + "name": "DmC Devil May Cry: Vergil's Downfall", + "url": "/v1/games/dmc-devil-may-cry-vergil-s-downfall" + }, { "slug": "dmc-definitive-edition", "name": "DmC: Definitive Edition", "url": "/v1/games/dmc-definitive-edition" }, + { + "slug": "dmc-devil-may-cry", + "name": "DmC: Devil May Cry", + "url": "/v1/games/dmc-devil-may-cry" + }, { "slug": "dnb-starfighter", "name": "DnB Starfighter", @@ -198126,6 +203851,11 @@ "name": "Doctor Who: TARDIS", "url": "/v1/games/doctor-who-tardis" }, + { + "slug": "doctor-who-the-adventure-games", + "name": "Doctor Who: The Adventure Games", + "url": "/v1/games/doctor-who-the-adventure-games" + }, { "slug": "doctor-who-the-edge-of-time", "name": "Doctor Who: The Edge Of Time", @@ -198736,6 +204466,11 @@ "name": "DogPunk", "url": "/v1/games/dogpunk" }, + { + "slug": "dogwalk", + "name": "DogWalk", + "url": "/v1/games/dogwalk" + }, { "slug": "dog-fox-bunny", "name": "Dog_Fox_Bunny", @@ -199371,6 +205106,11 @@ "name": "Dokuro", "url": "/v1/games/dokuro" }, + { + "slug": "dolbaram-ai", + "name": "DolBaram AI", + "url": "/v1/games/dolbaram-ai" + }, { "slug": "doler", "name": "Doler", @@ -200251,6 +205991,11 @@ "name": "Don't Breathe", "url": "/v1/games/don-t-breathe" }, + { + "slug": "don-t-buy-this", + "name": "Don't Buy This", + "url": "/v1/games/don-t-buy-this" + }, { "slug": "don-t-byte-your-tongue", "name": "Don't Byte Your Tongue", @@ -200411,6 +206156,11 @@ "name": "Don't Escape 3", "url": "/v1/games/don-t-escape-3" }, + { + "slug": "don-t-escape-trilogy", + "name": "Don't Escape Trilogy", + "url": "/v1/games/don-t-escape-trilogy" + }, { "slug": "don-t-escape-4-days-to-survive", "name": "Don't Escape: 4 Days to Survive", @@ -200856,6 +206606,21 @@ "name": "Don't Starve Together", "url": "/v1/games/don-t-starve-together" }, + { + "slug": "don-t-starve-giant-edition", + "name": "Don't Starve: Giant Edition", + "url": "/v1/games/don-t-starve-giant-edition" + }, + { + "slug": "don-t-starve-giant-edition-shipwrecked-expansion", + "name": "Don't Starve: Giant Edition + Shipwrecked Expansion", + "url": "/v1/games/don-t-starve-giant-edition-shipwrecked-expansion" + }, + { + "slug": "don-t-starve-pocket-edition", + "name": "Don't Starve: Pocket Edition+", + "url": "/v1/games/don-t-starve-pocket-edition" + }, { "slug": "don-t-steal-my-christmas", "name": "Don't Steal My Christmas!", @@ -201246,6 +207011,11 @@ "name": "Donkey Kong Barrel Blast", "url": "/v1/games/donkey-kong-barrel-blast" }, + { + "slug": "donkey-kong-classics", + "name": "Donkey Kong Classics", + "url": "/v1/games/donkey-kong-classics" + }, { "slug": "donkey-kong-country", "name": "Donkey Kong Country", @@ -201491,6 +207261,11 @@ "name": "Doodle Cats", "url": "/v1/games/doodle-cats" }, + { + "slug": "doodle-champion-island-games", + "name": "Doodle Champion Island Games", + "url": "/v1/games/doodle-champion-island-games" + }, { "slug": "doodle-champs", "name": "Doodle Champs", @@ -201751,6 +207526,11 @@ "name": "Dooly Bravo Land", "url": "/v1/games/dooly-bravo-land" }, + { + "slug": "doom-q513867", + "name": "Doom", + "url": "/v1/games/doom-q513867" + }, { "slug": "doom", "name": "Doom", @@ -201781,6 +207561,11 @@ "name": "Doom 3 BFG Edition", "url": "/v1/games/doom-3-bfg-edition" }, + { + "slug": "doom-3-mr-smiley-head-s-safari", + "name": "Doom 3: Mr. Smiley Head's Safari", + "url": "/v1/games/doom-3-mr-smiley-head-s-safari" + }, { "slug": "doom-64", "name": "Doom 64", @@ -201806,6 +207591,16 @@ "name": "Doom Eternal", "url": "/v1/games/doom-eternal" }, + { + "slug": "doom-eternal-the-ancient-gods-part-one-q106166973", + "name": "Doom Eternal: The Ancient Gods - Part One", + "url": "/v1/games/doom-eternal-the-ancient-gods-part-one-q106166973" + }, + { + "slug": "doom-eternal-the-ancient-gods-part-two", + "name": "Doom Eternal: The Ancient Gods – Part Two", + "url": "/v1/games/doom-eternal-the-ancient-gods-part-two" + }, { "slug": "doom-ii", "name": "Doom II", @@ -201821,6 +207616,11 @@ "name": "Doom Infinite", "url": "/v1/games/doom-infinite" }, + { + "slug": "doom-legacy", + "name": "Doom Legacy", + "url": "/v1/games/doom-legacy" + }, { "slug": "doom-rpg", "name": "Doom RPG", @@ -201856,6 +207656,11 @@ "name": "Doom Troopers: Mutant Chronicles", "url": "/v1/games/doom-troopers-mutant-chronicles" }, + { + "slug": "doom-utilities", + "name": "Doom Utilities", + "url": "/v1/games/doom-utilities" + }, { "slug": "doom-vfr", "name": "Doom VFR", @@ -201876,6 +207681,11 @@ "name": "Doom's Day", "url": "/v1/games/doom-s-day" }, + { + "slug": "doom8088", + "name": "Doom8088", + "url": "/v1/games/doom8088" + }, { "slug": "doom-the-dark-ages", "name": "Doom: The Dark Ages", @@ -202016,6 +207826,11 @@ "name": "Doomsday Dispute", "url": "/v1/games/doomsday-dispute" }, + { + "slug": "doomsday-engine", + "name": "Doomsday Engine", + "url": "/v1/games/doomsday-engine" + }, { "slug": "doomsday-fodder", "name": "Doomsday Fodder", @@ -202181,6 +207996,11 @@ "name": "Dooria", "url": "/v1/games/dooria" }, + { + "slug": "doors-q116141717", + "name": "Doors", + "url": "/v1/games/doors-q116141717" + }, { "slug": "doors-q135076886", "name": "Doors", @@ -203036,6 +208856,11 @@ "name": "Double Dragon IV", "url": "/v1/games/double-dragon-iv" }, + { + "slug": "double-dragon-neon", + "name": "Double Dragon Neon", + "url": "/v1/games/double-dragon-neon" + }, { "slug": "double-dragon-reloaded-alternate", "name": "Double Dragon Reloaded Alternate", @@ -203771,6 +209596,11 @@ "name": "Downwell", "url": "/v1/games/downwell" }, + { + "slug": "downwell-q123295662", + "name": "Downwell+", + "url": "/v1/games/downwell-q123295662" + }, { "slug": "dowon", "name": "Dowon", @@ -204346,6 +210176,11 @@ "name": "Dracu-riot!", "url": "/v1/games/dracu-riot" }, + { + "slug": "dracula-q11322942", + "name": "Dracula", + "url": "/v1/games/dracula-q11322942" + }, { "slug": "dracula-q55310014", "name": "Dracula", @@ -204886,6 +210721,11 @@ "name": "Dragon Age II", "url": "/v1/games/dragon-age-ii" }, + { + "slug": "dragon-age-ii-legacy", + "name": "Dragon Age II: Legacy", + "url": "/v1/games/dragon-age-ii-legacy" + }, { "slug": "dragon-age-legends", "name": "Dragon Age Legends", @@ -204896,11 +210736,66 @@ "name": "Dragon Age: Inquisition", "url": "/v1/games/dragon-age-inquisition" }, + { + "slug": "dragon-age-inquisition-jaws-of-hakkon", + "name": "Dragon Age: Inquisition – Jaws of Hakkon", + "url": "/v1/games/dragon-age-inquisition-jaws-of-hakkon" + }, + { + "slug": "dragon-age-inquisition-the-descent", + "name": "Dragon Age: Inquisition – The Descent", + "url": "/v1/games/dragon-age-inquisition-the-descent" + }, + { + "slug": "dragon-age-inquisition-trespasser", + "name": "Dragon Age: Inquisition – Trespasser", + "url": "/v1/games/dragon-age-inquisition-trespasser" + }, { "slug": "dragon-age-origins", "name": "Dragon Age: Origins", "url": "/v1/games/dragon-age-origins" }, + { + "slug": "dragon-age-origins-leliana-s-song", + "name": "Dragon Age: Origins - Leliana's Song", + "url": "/v1/games/dragon-age-origins-leliana-s-song" + }, + { + "slug": "dragon-age-origins-the-darkspawn-chronicles", + "name": "Dragon Age: Origins - The Darkspawn Chronicles", + "url": "/v1/games/dragon-age-origins-the-darkspawn-chronicles" + }, + { + "slug": "dragon-age-origins-witch-hunt", + "name": "Dragon Age: Origins - Witch Hunt", + "url": "/v1/games/dragon-age-origins-witch-hunt" + }, + { + "slug": "dragon-age-origins-awakening", + "name": "Dragon Age: Origins – Awakening", + "url": "/v1/games/dragon-age-origins-awakening" + }, + { + "slug": "dragon-age-origins-return-to-ostagar", + "name": "Dragon Age: Origins – Return to Ostagar", + "url": "/v1/games/dragon-age-origins-return-to-ostagar" + }, + { + "slug": "dragon-age-origins-the-golems-of-amgarrak", + "name": "Dragon Age: Origins – The Golems of Amgarrak", + "url": "/v1/games/dragon-age-origins-the-golems-of-amgarrak" + }, + { + "slug": "dragon-age-origins-the-stone-prisoner", + "name": "Dragon Age: Origins – The Stone Prisoner", + "url": "/v1/games/dragon-age-origins-the-stone-prisoner" + }, + { + "slug": "dragon-age-origins-warden-s-keep", + "name": "Dragon Age: Origins – Warden's Keep", + "url": "/v1/games/dragon-age-origins-warden-s-keep" + }, { "slug": "dragon-age-the-veilguard", "name": "Dragon Age: The Veilguard", @@ -205396,6 +211291,11 @@ "name": "Dragon Castle: The Board Game", "url": "/v1/games/dragon-castle-the-board-game" }, + { + "slug": "dragon-cave-q122762545", + "name": "Dragon Cave", + "url": "/v1/games/dragon-cave-q122762545" + }, { "slug": "dragon-cave", "name": "Dragon Cave", @@ -205466,6 +211366,11 @@ "name": "Dragon Creek", "url": "/v1/games/dragon-creek" }, + { + "slug": "dragon-crusade", + "name": "Dragon Crusade", + "url": "/v1/games/dragon-crusade" + }, { "slug": "dragon-crystal", "name": "Dragon Crystal", @@ -205936,6 +211841,16 @@ "name": "Dragon Quest & Final Fantasy in Itadaki Street Special", "url": "/v1/games/dragon-quest-final-fantasy-in-itadaki-street-special" }, + { + "slug": "dragon-quest-25-shuunen-kinen-famicom-super-famicom-dragon-quest-i-ii-iii", + "name": "Dragon Quest 25 Shuunen Kinen: Famicom & Super Famicom Dragon Quest I-II-III", + "url": "/v1/games/dragon-quest-25-shuunen-kinen-famicom-super-famicom-dragon-quest-i-ii-iii" + }, + { + "slug": "dragon-quest-25-sh-nen-kinen-famicom-super-famicom-dragon-quest-i-ii-iii", + "name": "Dragon Quest 25 Shūnen Kinen Famicom & Super Famicom Dragon Quest I・II・III", + "url": "/v1/games/dragon-quest-25-sh-nen-kinen-famicom-super-famicom-dragon-quest-i-ii-iii" + }, { "slug": "dragon-quest-builders", "name": "Dragon Quest Builders", @@ -206116,6 +212031,11 @@ "name": "Dragon Quest X Offline", "url": "/v1/games/dragon-quest-x-offline" }, + { + "slug": "dragon-quest-x-the-sleeping-hero-and-the-guiding-ally-offline", + "name": "Dragon Quest X: The Sleeping Hero and the Guiding Ally Offline", + "url": "/v1/games/dragon-quest-x-the-sleeping-hero-and-the-guiding-ally-offline" + }, { "slug": "dragon-quest-xi-s-echoes-of-an-elusive-age-definitive-edition", "name": "Dragon Quest XI S: Echoes of an Elusive Age - Definitive Edition", @@ -206361,6 +212281,11 @@ "name": "Dragon Survivors", "url": "/v1/games/dragon-survivors" }, + { + "slug": "dragon-sword", + "name": "Dragon Sword", + "url": "/v1/games/dragon-sword" + }, { "slug": "dragon-takers", "name": "Dragon Takers", @@ -207091,11 +213016,21 @@ "name": "Dragoon Ascension", "url": "/v1/games/dragoon-ascension" }, + { + "slug": "dragoon-episodes", + "name": "Dragoon Episodes", + "url": "/v1/games/dragoon-episodes" + }, { "slug": "dragoon-might", "name": "Dragoon Might", "url": "/v1/games/dragoon-might" }, + { + "slug": "dragoon-the-prussian-war-machine", + "name": "Dragoon: The Prussian War Machine", + "url": "/v1/games/dragoon-the-prussian-war-machine" + }, { "slug": "dragow", "name": "Dragow", @@ -207241,6 +213176,11 @@ "name": "Drakensang Online", "url": "/v1/games/drakensang-online" }, + { + "slug": "drakensang-phileasson-s-secret", + "name": "Drakensang: Phileasson's Secret", + "url": "/v1/games/drakensang-phileasson-s-secret" + }, { "slug": "drakensang-the-dark-eye", "name": "Drakensang: The Dark Eye", @@ -207481,6 +213421,11 @@ "name": "DrawRace 2", "url": "/v1/games/drawrace-2" }, + { + "slug": "drawrace-2-racing-evolved", + "name": "DrawRace 2: Racing Evolved", + "url": "/v1/games/drawrace-2-racing-evolved" + }, { "slug": "drawception", "name": "Drawception", @@ -207571,6 +213516,11 @@ "name": "Drawn to Life", "url": "/v1/games/drawn-to-life" }, + { + "slug": "drawn-to-life-collection", + "name": "Drawn to Life Collection", + "url": "/v1/games/drawn-to-life-collection" + }, { "slug": "drawn-to-life-spongebob-squarepants-edition", "name": "Drawn to Life: SpongeBob SquarePants Edition", @@ -207661,6 +213611,11 @@ "name": "Dread Delusion", "url": "/v1/games/dread-delusion" }, + { + "slug": "dread-delusion-demo", + "name": "Dread Delusion (Demo)", + "url": "/v1/games/dread-delusion-demo" + }, { "slug": "dread-descent", "name": "Dread Descent", @@ -208701,6 +214656,11 @@ "name": "Dream Team Supreme", "url": "/v1/games/dream-team-supreme" }, + { + "slug": "dream-team-the", + "name": "Dream Team, The", + "url": "/v1/games/dream-team-the" + }, { "slug": "dream-town-island", "name": "Dream Town Island", @@ -208981,6 +214941,11 @@ "name": "Dreamcage Escape", "url": "/v1/games/dreamcage-escape" }, + { + "slug": "dreamcast-collection", + "name": "Dreamcast Collection", + "url": "/v1/games/dreamcast-collection" + }, { "slug": "dreamcatchers", "name": "Dreamcatchers", @@ -209531,6 +215496,16 @@ "name": "Dredge", "url": "/v1/games/dredge" }, + { + "slug": "dredge-the-iron-rig", + "name": "Dredge: The Iron Rig", + "url": "/v1/games/dredge-the-iron-rig" + }, + { + "slug": "dredge-the-pale-reach", + "name": "Dredge: The Pale Reach", + "url": "/v1/games/dredge-the-pale-reach" + }, { "slug": "dredgers", "name": "Dredgers", @@ -209586,6 +215561,11 @@ "name": "Dress the Duel", "url": "/v1/games/dress-the-duel" }, + { + "slug": "dress-to-impress", + "name": "Dress to Impress", + "url": "/v1/games/dress-to-impress" + }, { "slug": "dress-up-pups", "name": "Dress-up Pups", @@ -211586,6 +217566,16 @@ "name": "Drunk or Dead", "url": "/v1/games/drunk-or-dead" }, + { + "slug": "drunk-or-dead-on-the-road", + "name": "Drunk or Dead - On the Road", + "url": "/v1/games/drunk-or-dead-on-the-road" + }, + { + "slug": "drunk-or-dead-uncensored", + "name": "Drunk or Dead - Uncensored", + "url": "/v1/games/drunk-or-dead-uncensored" + }, { "slug": "drunk-or-dead-2", "name": "Drunk or Dead 2", @@ -212851,11 +218841,26 @@ "name": "Duke Nukem 3D: Atomic Edition", "url": "/v1/games/duke-nukem-3d-atomic-edition" }, + { + "slug": "duke-nukem-3d-kill-a-ton-collection", + "name": "Duke Nukem 3D: Kill a Ton Collection", + "url": "/v1/games/duke-nukem-3d-kill-a-ton-collection" + }, { "slug": "duke-nukem-3d-megaton-edition", "name": "Duke Nukem 3D: Megaton Edition", "url": "/v1/games/duke-nukem-3d-megaton-edition" }, + { + "slug": "duke-nukem-3d-plutonium-pak", + "name": "Duke Nukem 3D: Plutonium Pak", + "url": "/v1/games/duke-nukem-3d-plutonium-pak" + }, + { + "slug": "duke-nukem-3d-reloaded", + "name": "Duke Nukem 3D: Reloaded", + "url": "/v1/games/duke-nukem-3d-reloaded" + }, { "slug": "duke-nukem-64", "name": "Duke Nukem 64", @@ -212901,6 +218906,11 @@ "name": "Duke Nukem: Critical Mass", "url": "/v1/games/duke-nukem-critical-mass" }, + { + "slug": "duke-nukem-kill-a-ton-collection", + "name": "Duke Nukem: Kill-A-Ton Collection", + "url": "/v1/games/duke-nukem-kill-a-ton-collection" + }, { "slug": "duke-nukem-land-of-the-babes", "name": "Duke Nukem: Land of the Babes", @@ -213256,6 +219266,11 @@ "name": "Dune Girls Attack!", "url": "/v1/games/dune-girls-attack" }, + { + "slug": "dune-ii-q5314939", + "name": "Dune II", + "url": "/v1/games/dune-ii-q5314939" + }, { "slug": "dune-ii", "name": "Dune II", @@ -213991,6 +220006,11 @@ "name": "Dungeon Hearts Blitz", "url": "/v1/games/dungeon-hearts-blitz" }, + { + "slug": "dungeon-hearts-dx", + "name": "Dungeon Hearts DX", + "url": "/v1/games/dungeon-hearts-dx" + }, { "slug": "dungeon-hero-q135453825", "name": "Dungeon Hero", @@ -214081,11 +220101,26 @@ "name": "Dungeon Keeper", "url": "/v1/games/dungeon-keeper" }, + { + "slug": "dungeon-keeper-3", + "name": "Dungeon Keeper 3", + "url": "/v1/games/dungeon-keeper-3" + }, + { + "slug": "dungeon-keeper-gold", + "name": "Dungeon Keeper Gold", + "url": "/v1/games/dungeon-keeper-gold" + }, { "slug": "dungeon-keeper-labyrinth-legacy", "name": "Dungeon Keeper: Labyrinth Legacy", "url": "/v1/games/dungeon-keeper-labyrinth-legacy" }, + { + "slug": "dungeon-keeper-the-deeper-dungeons", + "name": "Dungeon Keeper: The Deeper Dungeons", + "url": "/v1/games/dungeon-keeper-the-deeper-dungeons" + }, { "slug": "dungeon-kid", "name": "Dungeon Kid", @@ -214176,6 +220211,11 @@ "name": "Dungeon Lords MMXII", "url": "/v1/games/dungeon-lords-mmxii" }, + { + "slug": "dungeon-lords-the-orb-and-the-oracle", + "name": "Dungeon Lords: The Orb and the Oracle", + "url": "/v1/games/dungeon-lords-the-orb-and-the-oracle" + }, { "slug": "dungeon-lurk-ii-leona", "name": "Dungeon Lurk II - Leona", @@ -214586,11 +220626,26 @@ "name": "Dungeon Siege II", "url": "/v1/games/dungeon-siege-ii" }, + { + "slug": "dungeon-siege-ii-broken-world", + "name": "Dungeon Siege II: Broken World", + "url": "/v1/games/dungeon-siege-ii-broken-world" + }, { "slug": "dungeon-siege-iii", "name": "Dungeon Siege III", "url": "/v1/games/dungeon-siege-iii" }, + { + "slug": "dungeon-siege-iii-treasures-of-the-sun", + "name": "Dungeon Siege III: Treasures of the Sun", + "url": "/v1/games/dungeon-siege-iii-treasures-of-the-sun" + }, + { + "slug": "dungeon-siege-legends-of-aranna", + "name": "Dungeon Siege: Legends of Aranna", + "url": "/v1/games/dungeon-siege-legends-of-aranna" + }, { "slug": "dungeon-siege-throne-of-agony", "name": "Dungeon Siege: Throne of Agony", @@ -214611,6 +220666,11 @@ "name": "Dungeon Slime 2: Puzzle in the Dark Forest", "url": "/v1/games/dungeon-slime-2-puzzle-in-the-dark-forest" }, + { + "slug": "dungeon-slime-collection", + "name": "Dungeon Slime Collection", + "url": "/v1/games/dungeon-slime-collection" + }, { "slug": "dungeon-slime-hero", "name": "Dungeon Slime Hero", @@ -215141,6 +221201,11 @@ "name": "Dungeons & Dragons - Stronghold: Kingdom Simulator", "url": "/v1/games/dungeons-dragons-stronghold-kingdom-simulator" }, + { + "slug": "dungeons-dragons-collection", + "name": "Dungeons & Dragons Collection", + "url": "/v1/games/dungeons-dragons-collection" + }, { "slug": "dungeons-dragons-computer-fantasy-game", "name": "Dungeons & Dragons Computer Fantasy Game", @@ -215161,6 +221226,11 @@ "name": "Dungeons & Dragons Tactics", "url": "/v1/games/dungeons-dragons-tactics" }, + { + "slug": "dungeons-dragons-chronicles-of-mystara", + "name": "Dungeons & Dragons: Chronicles of Mystara", + "url": "/v1/games/dungeons-dragons-chronicles-of-mystara" + }, { "slug": "dungeons-dragons-daggerdale", "name": "Dungeons & Dragons: Daggerdale", @@ -215171,6 +221241,11 @@ "name": "Dungeons & Dragons: Dark Alliance", "url": "/v1/games/dungeons-dragons-dark-alliance" }, + { + "slug": "dungeons-dragons-dark-sun-series", + "name": "Dungeons & Dragons: Dark Sun Series", + "url": "/v1/games/dungeons-dragons-dark-sun-series" + }, { "slug": "dungeons-dragons-dragonshard", "name": "Dungeons & Dragons: Dragonshard", @@ -215191,6 +221266,16 @@ "name": "Dungeons & Dragons: Heroes of Neverwinter", "url": "/v1/games/dungeons-dragons-heroes-of-neverwinter" }, + { + "slug": "dungeons-dragons-krynn-series", + "name": "Dungeons & Dragons: Krynn Series", + "url": "/v1/games/dungeons-dragons-krynn-series" + }, + { + "slug": "dungeons-dragons-ravenloft-series", + "name": "Dungeons & Dragons: Ravenloft Series", + "url": "/v1/games/dungeons-dragons-ravenloft-series" + }, { "slug": "dungeons-dragons-shadow-over-mystara", "name": "Dungeons & Dragons: Shadow over Mystara", @@ -215636,6 +221721,11 @@ "name": "Dunk Mania", "url": "/v1/games/dunk-mania" }, + { + "slug": "dunk-star", + "name": "Dunk Star", + "url": "/v1/games/dunk-star" + }, { "slug": "dunkratz", "name": "DunkRatz", @@ -215731,6 +221821,11 @@ "name": "DuolBots", "url": "/v1/games/duolbots" }, + { + "slug": "duolingo", + "name": "Duolingo", + "url": "/v1/games/duolingo" + }, { "slug": "duped", "name": "Duped", @@ -215776,6 +221871,11 @@ "name": "Dura Vita Online", "url": "/v1/games/dura-vita-online" }, + { + "slug": "durak-ntr-total-humiliation", + "name": "Durak NTR: Total Humiliation", + "url": "/v1/games/durak-ntr-total-humiliation" + }, { "slug": "durak-ntr-the-fool-who-lost-his-gf-in-a-card-game", "name": "Durak NTR: the Fool who lost his gf in a card game", @@ -216716,11 +222816,26 @@ "name": "Dying Light 2 Stay Human", "url": "/v1/games/dying-light-2-stay-human" }, + { + "slug": "dying-light-2-stay-human-bloody-ties", + "name": "Dying Light 2 Stay Human: Bloody Ties", + "url": "/v1/games/dying-light-2-stay-human-bloody-ties" + }, { "slug": "dying-light-bad-blood", "name": "Dying Light: Bad Blood", "url": "/v1/games/dying-light-bad-blood" }, + { + "slug": "dying-light-the-bozak-horde", + "name": "Dying Light: The Bozak Horde", + "url": "/v1/games/dying-light-the-bozak-horde" + }, + { + "slug": "dying-light-the-following", + "name": "Dying Light: The Following", + "url": "/v1/games/dying-light-the-following" + }, { "slug": "dying-night-sex-with-zombi", "name": "Dying Night SEX with ZOMBI", @@ -216836,6 +222951,11 @@ "name": "Dymension:Scary Horror Survival Shooter", "url": "/v1/games/dymension-scary-horror-survival-shooter" }, + { + "slug": "dyn-aero-mcr-01ultralight", + "name": "Dyn'Aero MCR-01Ultralight", + "url": "/v1/games/dyn-aero-mcr-01ultralight" + }, { "slug": "dyna-bomb", "name": "Dyna Bomb", @@ -217166,6 +223286,11 @@ "name": "Dynasty Warriors 9 Empires", "url": "/v1/games/dynasty-warriors-9-empires" }, + { + "slug": "dynasty-warriors-9-empires-deluxe-edition", + "name": "Dynasty Warriors 9 Empires Deluxe Edition", + "url": "/v1/games/dynasty-warriors-9-empires-deluxe-edition" + }, { "slug": "dynasty-warriors-advance", "name": "Dynasty Warriors Advance", @@ -217756,6 +223881,11 @@ "name": "E9uations", "url": "/v1/games/e9uations" }, + { + "slug": "ea-classics-mega-collection", + "name": "EA Classics Mega Collection", + "url": "/v1/games/ea-classics-mega-collection" + }, { "slug": "ea-play", "name": "EA Play", @@ -217766,6 +223896,11 @@ "name": "EA Playground", "url": "/v1/games/ea-playground" }, + { + "slug": "ea-replay", + "name": "EA Replay", + "url": "/v1/games/ea-replay" + }, { "slug": "ea-sports-fc-empires", "name": "EA SPORTS FC EMPIRES", @@ -217776,6 +223911,21 @@ "name": "EA SPORTS FC™ 24", "url": "/v1/games/ea-sports-fc-24-q135452445" }, + { + "slug": "ea-sports-fifa-18-nba-live-18-the-one-edition-bundle", + "name": "EA SPORTS FIFA 18 & NBA LIVE 18 The One Edition Bundle", + "url": "/v1/games/ea-sports-fifa-18-nba-live-18-the-one-edition-bundle" + }, + { + "slug": "ea-sports-fifa-18-nhl-18-bundle", + "name": "EA SPORTS FIFA 18 & NHL 18 Bundle", + "url": "/v1/games/ea-sports-fifa-18-nhl-18-bundle" + }, + { + "slug": "ea-sports-08-collection", + "name": "EA Sports 08 Collection", + "url": "/v1/games/ea-sports-08-collection" + }, { "slug": "ea-sports-active", "name": "EA Sports Active", @@ -217816,6 +223966,16 @@ "name": "EA Sports FC Online", "url": "/v1/games/ea-sports-fc-online" }, + { + "slug": "ea-sports-fc-tactical", + "name": "EA Sports FC Tactical", + "url": "/v1/games/ea-sports-fc-tactical" + }, + { + "slug": "ea-sports-fifa-18-need-for-speed-payback-bundle", + "name": "EA Sports FIFA 18 & Need for Speed Payback Bundle", + "url": "/v1/games/ea-sports-fifa-18-need-for-speed-payback-bundle" + }, { "slug": "ea-sports-fifa-superstars", "name": "EA Sports FIFA Superstars", @@ -217866,6 +224026,16 @@ "name": "EA Sports UFC 6", "url": "/v1/games/ea-sports-ufc-6" }, + { + "slug": "ea-sports-06-collection", + "name": "EA Sports: 06 Collection", + "url": "/v1/games/ea-sports-06-collection" + }, + { + "slug": "ea-sports-07-collection", + "name": "EA Sports: 07 Collection", + "url": "/v1/games/ea-sports-07-collection" + }, { "slug": "eagle-special-forces", "name": "EAGLE: Special Forces", @@ -218026,11 +224196,21 @@ "name": "EDEN: Create World", "url": "/v1/games/eden-create-world" }, + { + "slug": "edge-q67196228", + "name": "EDGE", + "url": "/v1/games/edge-q67196228" + }, { "slug": "edge-of-dawn", "name": "EDGE OF DAWN", "url": "/v1/games/edge-of-dawn" }, + { + "slug": "edge-classic", + "name": "EDGE-Classic", + "url": "/v1/games/edge-classic" + }, { "slug": "edgy", "name": "EDGY", @@ -218051,6 +224231,11 @@ "name": "EDYN", "url": "/v1/games/edyn" }, + { + "slug": "eduke32", + "name": "EDuke32", + "url": "/v1/games/eduke32" + }, { "slug": "eep-16-expert-eisenbahn-aufbau-und-steuerungssimulation", "name": "EEP 16 Expert Eisenbahn Aufbau- und Steuerungssimulation", @@ -218281,6 +224466,11 @@ "name": "ELEX 2", "url": "/v1/games/elex-2" }, + { + "slug": "elf-opengo", + "name": "ELF OpenGo", + "url": "/v1/games/elf-opengo" + }, { "slug": "elhkia", "name": "ELHKIA", @@ -219026,6 +225216,11 @@ "name": "ESP Ra.De.", "url": "/v1/games/esp-ra-de" }, + { + "slug": "esp32-doom", + "name": "ESP32-DOOM", + "url": "/v1/games/esp32-doom" + }, { "slug": "esper", "name": "ESPER", @@ -219286,6 +225481,11 @@ "name": "EV3 - Drag Racing", "url": "/v1/games/ev3-drag-racing" }, + { + "slug": "ev3doom", + "name": "EV3DOOM", + "url": "/v1/games/ev3doom" + }, { "slug": "eva", "name": "EVA", @@ -219321,6 +225521,16 @@ "name": "EVE Online", "url": "/v1/games/eve-online" }, + { + "slug": "eve-online-incursion", + "name": "EVE Online: Incursion", + "url": "/v1/games/eve-online-incursion" + }, + { + "slug": "eve-online-the-second-genesis", + "name": "EVE Online: The Second Genesis", + "url": "/v1/games/eve-online-the-second-genesis" + }, { "slug": "eve-vanguard", "name": "EVE Vanguard", @@ -219956,6 +226166,16 @@ "name": "Earth & Beyond", "url": "/v1/games/earth-beyond" }, + { + "slug": "earth-2140-mission-pack-1", + "name": "Earth 2140: Mission Pack 1", + "url": "/v1/games/earth-2140-mission-pack-1" + }, + { + "slug": "earth-2140-mission-pack-2-final-conflict", + "name": "Earth 2140: Mission Pack 2 - Final Conflict", + "url": "/v1/games/earth-2140-mission-pack-2-final-conflict" + }, { "slug": "earth-2150", "name": "Earth 2150", @@ -220106,6 +226326,11 @@ "name": "Earth Muncher", "url": "/v1/games/earth-muncher" }, + { + "slug": "earth-no-more", + "name": "Earth No More", + "url": "/v1/games/earth-no-more" + }, { "slug": "earth-orbit-stations", "name": "Earth Orbit Stations", @@ -220201,6 +226426,11 @@ "name": "Earth: Revival", "url": "/v1/games/earth-revival" }, + { + "slug": "earth-year-2066", + "name": "Earth: Year 2066", + "url": "/v1/games/earth-year-2066" + }, { "slug": "earthbound", "name": "EarthBound", @@ -220246,6 +226476,11 @@ "name": "EarthX 2", "url": "/v1/games/earthx-2" }, + { + "slug": "earthblade", + "name": "Earthblade", + "url": "/v1/games/earthblade" + }, { "slug": "earthborne", "name": "Earthborne", @@ -220381,6 +226616,11 @@ "name": "Earthtongue", "url": "/v1/games/earthtongue" }, + { + "slug": "earthworm-jim-q5327338", + "name": "Earthworm Jim", + "url": "/v1/games/earthworm-jim-q5327338" + }, { "slug": "earthworm-jim", "name": "Earthworm Jim", @@ -220641,6 +226881,11 @@ "name": "Eastward", "url": "/v1/games/eastward" }, + { + "slug": "eastward-octopia", + "name": "Eastward: Octopia", + "url": "/v1/games/eastward-octopia" + }, { "slug": "eastwind-adventures-chapter-1", "name": "Eastwind Adventures: Chapter 1", @@ -221026,6 +227271,11 @@ "name": "Ecchi Spirit", "url": "/v1/games/ecchi-spirit" }, + { + "slug": "ecco-ii-sentinels-of-the-universe", + "name": "Ecco II: Sentinels of the Universe", + "url": "/v1/games/ecco-ii-sentinels-of-the-universe" + }, { "slug": "ecco-jr", "name": "Ecco Jr.", @@ -221751,6 +228001,11 @@ "name": "Echomnesia", "url": "/v1/games/echomnesia" }, + { + "slug": "echonox-24-36", + "name": "Echonox 24/36", + "url": "/v1/games/echonox-24-36" + }, { "slug": "echoshift", "name": "Echoshift", @@ -221791,6 +228046,11 @@ "name": "Eclipse", "url": "/v1/games/eclipse-q135453953" }, + { + "slug": "eclipse-q5332996", + "name": "Eclipse", + "url": "/v1/games/eclipse-q5332996" + }, { "slug": "eclipse", "name": "Eclipse", @@ -223426,6 +229686,11 @@ "name": "Eight Balls", "url": "/v1/games/eight-balls" }, + { + "slug": "eight-days", + "name": "Eight Days", + "url": "/v1/games/eight-days" + }, { "slug": "eight-dragons", "name": "Eight Dragons", @@ -223856,6 +230121,11 @@ "name": "El Pescador", "url": "/v1/games/el-pescador" }, + { + "slug": "el-pogo-loco", + "name": "El Pogo Loco", + "url": "/v1/games/el-pogo-loco" + }, { "slug": "el-salar", "name": "El Salar", @@ -224021,6 +230291,21 @@ "name": "Elden Ring Nightreign", "url": "/v1/games/elden-ring-nightreign" }, + { + "slug": "elden-ring-nightreign-the-forsaken-hollows", + "name": "Elden Ring Nightreign: The Forsaken Hollows", + "url": "/v1/games/elden-ring-nightreign-the-forsaken-hollows" + }, + { + "slug": "elden-ring-shadow-of-the-erdtree-deluxe-edition", + "name": "Elden Ring: Shadow of the Erdtree Deluxe Edition", + "url": "/v1/games/elden-ring-shadow-of-the-erdtree-deluxe-edition" + }, + { + "slug": "elden-ring-shadow-of-the-erdtree-edition", + "name": "Elden Ring: Shadow of the Erdtree Edition", + "url": "/v1/games/elden-ring-shadow-of-the-erdtree-edition" + }, { "slug": "elden-sword", "name": "Elden Sword", @@ -224206,6 +230491,11 @@ "name": "Eldritch Exterminators", "url": "/v1/games/eldritch-exterminators" }, + { + "slug": "eldritch-horror-mountains-of-madness", + "name": "Eldritch Horror: Mountains of Madness", + "url": "/v1/games/eldritch-horror-mountains-of-madness" + }, { "slug": "eldritch-hunter", "name": "Eldritch Hunter", @@ -225041,6 +231331,11 @@ "name": "Elemental: Fallen Enchantress", "url": "/v1/games/elemental-fallen-enchantress" }, + { + "slug": "elemental-fallen-enchantress-legendary-heroes", + "name": "Elemental: Fallen Enchantress - Legendary Heroes", + "url": "/v1/games/elemental-fallen-enchantress-legendary-heroes" + }, { "slug": "elemental-war-of-magic", "name": "Elemental: War of Magic", @@ -225511,6 +231806,11 @@ "name": "Elf Bowling 7 ⅐: The Last Insult", "url": "/v1/games/elf-bowling-7-the-last-insult" }, + { + "slug": "elf-bowling-1-2", + "name": "Elf Bowling: 1 & 2", + "url": "/v1/games/elf-bowling-1-2" + }, { "slug": "elf-bowling-bocce-style", "name": "Elf Bowling: Bocce Style", @@ -225856,6 +232156,16 @@ "name": "Elite Dangerous: Arena", "url": "/v1/games/elite-dangerous-arena" }, + { + "slug": "elite-dangerous-horizons", + "name": "Elite Dangerous: Horizons", + "url": "/v1/games/elite-dangerous-horizons" + }, + { + "slug": "elite-dangerous-odyssey", + "name": "Elite Dangerous: Odyssey", + "url": "/v1/games/elite-dangerous-odyssey" + }, { "slug": "elite-darts", "name": "Elite Darts", @@ -226086,6 +232396,11 @@ "name": "Elli", "url": "/v1/games/elli" }, + { + "slug": "ellie-theme", + "name": "Ellie Theme", + "url": "/v1/games/ellie-theme" + }, { "slug": "ellie-s-travel-diary", "name": "Ellie's Travel Diary", @@ -226501,6 +232816,21 @@ "name": "Elven Legacy", "url": "/v1/games/elven-legacy" }, + { + "slug": "elven-legacy-magic", + "name": "Elven Legacy: Magic", + "url": "/v1/games/elven-legacy-magic" + }, + { + "slug": "elven-legacy-ranger", + "name": "Elven Legacy: Ranger", + "url": "/v1/games/elven-legacy-ranger" + }, + { + "slug": "elven-legacy-siege", + "name": "Elven Legacy: Siege", + "url": "/v1/games/elven-legacy-siege" + }, { "slug": "elven-legend", "name": "Elven Legend", @@ -227176,6 +233506,11 @@ "name": "EmergeNYC", "url": "/v1/games/emergenyc" }, + { + "slug": "emergence-q57973884", + "name": "Emergence", + "url": "/v1/games/emergence-q57973884" + }, { "slug": "emergence", "name": "Emergence", @@ -227346,6 +233681,11 @@ "name": "Emery Hearts", "url": "/v1/games/emery-hearts" }, + { + "slug": "emet-hunter-medic-class", + "name": "Emet - Hunter (Medic Class)", + "url": "/v1/games/emet-hunter-medic-class" + }, { "slug": "emetic-skimmer", "name": "Emetic Skimmer", @@ -227801,6 +234141,11 @@ "name": "Empire Earth II", "url": "/v1/games/empire-earth-ii" }, + { + "slug": "empire-earth-ii-the-art-of-supremacy", + "name": "Empire Earth II: The Art of Supremacy", + "url": "/v1/games/empire-earth-ii-the-art-of-supremacy" + }, { "slug": "empire-earth-iii", "name": "Empire Earth III", @@ -227811,6 +234156,11 @@ "name": "Empire Earth Mobile", "url": "/v1/games/empire-earth-mobile" }, + { + "slug": "empire-earth-the-art-of-conquest", + "name": "Empire Earth: The Art of Conquest", + "url": "/v1/games/empire-earth-the-art-of-conquest" + }, { "slug": "empire-eternal", "name": "Empire Eternal", @@ -227936,6 +234286,11 @@ "name": "Empire of the Ants", "url": "/v1/games/empire-of-the-ants" }, + { + "slug": "empire-of-the-ants-add-on", + "name": "Empire of the Ants: Add-on", + "url": "/v1/games/empire-of-the-ants-add-on" + }, { "slug": "empire-of-the-fallen-steel", "name": "Empire of the Fallen Steel", @@ -228906,6 +235261,11 @@ "name": "Ender's Game: Battle Room", "url": "/v1/games/ender-s-game-battle-room" }, + { + "slug": "enderal", + "name": "Enderal", + "url": "/v1/games/enderal" + }, { "slug": "enderal-forgotten-stories-special-edition", "name": "Enderal: Forgotten Stories (Special Edition)", @@ -229326,11 +235686,31 @@ "name": "Endless Legend II", "url": "/v1/games/endless-legend-ii" }, + { + "slug": "endless-legend-guardians", + "name": "Endless Legend: Guardians", + "url": "/v1/games/endless-legend-guardians" + }, { "slug": "endless-legend-inferno", "name": "Endless Legend: Inferno", "url": "/v1/games/endless-legend-inferno" }, + { + "slug": "endless-legend-shadows", + "name": "Endless Legend: Shadows", + "url": "/v1/games/endless-legend-shadows" + }, + { + "slug": "endless-legend-shifters", + "name": "Endless Legend: Shifters", + "url": "/v1/games/endless-legend-shifters" + }, + { + "slug": "endless-legend-symbiosis", + "name": "Endless Legend: Symbiosis", + "url": "/v1/games/endless-legend-symbiosis" + }, { "slug": "endless-leveling-in-mycelium-dungeons-from-zero-to-infinity", "name": "Endless Leveling In Mycelium Dungeons: from zero to infinity", @@ -229831,6 +236211,11 @@ "name": "Endzone: A World Apart", "url": "/v1/games/endzone-a-world-apart" }, + { + "slug": "endzone-a-world-apart-survivor-edition", + "name": "Endzone: A World Apart - Survivor Edition", + "url": "/v1/games/endzone-a-world-apart-survivor-edition" + }, { "slug": "enelia-dawn-of-madness", "name": "Enelia: Dawn of Madness", @@ -230156,6 +236541,11 @@ "name": "Engaging Destiny", "url": "/v1/games/engaging-destiny" }, + { + "slug": "engalus", + "name": "Engalus", + "url": "/v1/games/engalus" + }, { "slug": "engare", "name": "Engare", @@ -230316,6 +236706,11 @@ "name": "Enid", "url": "/v1/games/enid" }, + { + "slug": "enigma-q603040", + "name": "Enigma", + "url": "/v1/games/enigma-q603040" + }, { "slug": "enigma-q60755300", "name": "Enigma", @@ -230746,6 +237141,16 @@ "name": "Enter the Dojo", "url": "/v1/games/enter-the-dojo" }, + { + "slug": "enter-the-dominatrix-q63849212", + "name": "Enter the Dominatrix", + "url": "/v1/games/enter-the-dominatrix-q63849212" + }, + { + "slug": "enter-the-dominatrix", + "name": "Enter the Dominatrix", + "url": "/v1/games/enter-the-dominatrix" + }, { "slug": "enter-the-gungeon", "name": "Enter the Gungeon", @@ -230991,6 +237396,16 @@ "name": "Entropy: Zero 2", "url": "/v1/games/entropy-zero-2" }, + { + "slug": "entry-point", + "name": "Entry Point", + "url": "/v1/games/entry-point" + }, + { + "slug": "entry-point-freelancer-s-cut", + "name": "Entry Point: Freelancer's Cut", + "url": "/v1/games/entry-point-freelancer-s-cut" + }, { "slug": "entwined", "name": "Entwined", @@ -231741,16 +238156,41 @@ "name": "Episode", "url": "/v1/games/episode" }, + { + "slug": "episode-1", + "name": "Episode 1", + "url": "/v1/games/episode-1" + }, { "slug": "episode-1-missionkt", "name": "Episode 1: MissionKT", "url": "/v1/games/episode-1-missionkt" }, + { + "slug": "episode-2", + "name": "Episode 2", + "url": "/v1/games/episode-2" + }, + { + "slug": "episode-3", + "name": "Episode 3", + "url": "/v1/games/episode-3" + }, + { + "slug": "episode-4", + "name": "Episode 4", + "url": "/v1/games/episode-4" + }, { "slug": "episode-666", "name": "Episode 666", "url": "/v1/games/episode-666" }, + { + "slug": "episode-shadow", + "name": "Episode Shadow", + "url": "/v1/games/episode-shadow" + }, { "slug": "episode-xoxo", "name": "Episode Xoxo", @@ -232611,6 +239051,11 @@ "name": "Ertugrul of Ulukayin", "url": "/v1/games/ertugrul-of-ulukayin" }, + { + "slug": "erudite-trivia-games-quiz", + "name": "Erudite: Trivia Games & Quiz", + "url": "/v1/games/erudite-trivia-games-quiz" + }, { "slug": "erunaaku-no-zaihou", "name": "Erunaaku no Zaihou", @@ -232681,6 +239126,11 @@ "name": "Escalating Duel", "url": "/v1/games/escalating-duel" }, + { + "slug": "escalation-q57973883", + "name": "Escalation", + "url": "/v1/games/escalation-q57973883" + }, { "slug": "escalation", "name": "Escalation!", @@ -233221,6 +239671,11 @@ "name": "Escape From Warehouse", "url": "/v1/games/escape-from-warehouse" }, + { + "slug": "escape-from-woomera", + "name": "Escape From Woomera", + "url": "/v1/games/escape-from-woomera" + }, { "slug": "escape-from-zombie-u-reloaded", "name": "Escape From Zombie U:reloaded", @@ -234411,6 +240866,11 @@ "name": "Escape the Underground", "url": "/v1/games/escape-the-underground" }, + { + "slug": "escape-the-undertaker", + "name": "Escape the Undertaker", + "url": "/v1/games/escape-the-undertaker" + }, { "slug": "escape-the-unknown-awaken-the-realm", "name": "Escape the Unknown: Awaken the Realm", @@ -235681,6 +242141,11 @@ "name": "Eternal Siege", "url": "/v1/games/eternal-siege" }, + { + "slug": "eternal-silence", + "name": "Eternal Silence", + "url": "/v1/games/eternal-silence" + }, { "slug": "eternal-skies-tcg", "name": "Eternal Skies TCG", @@ -235856,6 +242321,11 @@ "name": "Eternity Egg", "url": "/v1/games/eternity-egg" }, + { + "slug": "eternity-engine", + "name": "Eternity Engine", + "url": "/v1/games/eternity-engine" + }, { "slug": "eternity-guards", "name": "Eternity Guards", @@ -236171,6 +242641,11 @@ "name": "Etrian Odyssey Nexus", "url": "/v1/games/etrian-odyssey-nexus" }, + { + "slug": "etrian-odyssey-origins-collection", + "name": "Etrian Odyssey Origins Collection", + "url": "/v1/games/etrian-odyssey-origins-collection" + }, { "slug": "etrian-odyssey-untold-the-millennium-girl", "name": "Etrian Odyssey Untold: The Millennium Girl", @@ -236301,6 +242776,11 @@ "name": "Eulogy of an Insect", "url": "/v1/games/eulogy-of-an-insect" }, + { + "slug": "eun-byul", + "name": "Eun-Byul", + "url": "/v1/games/eun-byul" + }, { "slug": "euphionia-the-tree-spirit-s-curse", "name": "Euphionia: The Tree Spirit's Curse", @@ -236376,6 +242856,406 @@ "name": "Euro Truck Simulator", "url": "/v1/games/euro-truck-simulator" }, + { + "slug": "euro-truck-simulator-2-actros-tuning-pack", + "name": "Euro Truck Simulator 2: Actros Tuning Pack", + "url": "/v1/games/euro-truck-simulator-2-actros-tuning-pack" + }, + { + "slug": "euro-truck-simulator-2-australian-paint-jobs-pack", + "name": "Euro Truck Simulator 2: Australian Paint Jobs Pack", + "url": "/v1/games/euro-truck-simulator-2-australian-paint-jobs-pack" + }, + { + "slug": "euro-truck-simulator-2-austrian-paint-jobs-pack", + "name": "Euro Truck Simulator 2: Austrian Paint Jobs Pack", + "url": "/v1/games/euro-truck-simulator-2-austrian-paint-jobs-pack" + }, + { + "slug": "euro-truck-simulator-2-belgian-paint-jobs-pack", + "name": "Euro Truck Simulator 2: Belgian Paint Jobs Pack", + "url": "/v1/games/euro-truck-simulator-2-belgian-paint-jobs-pack" + }, + { + "slug": "euro-truck-simulator-2-beyond-the-baltic-sea", + "name": "Euro Truck Simulator 2: Beyond the Baltic Sea", + "url": "/v1/games/euro-truck-simulator-2-beyond-the-baltic-sea" + }, + { + "slug": "euro-truck-simulator-2-brazilian-paint-jobs-pack", + "name": "Euro Truck Simulator 2: Brazilian Paint Jobs Pack", + "url": "/v1/games/euro-truck-simulator-2-brazilian-paint-jobs-pack" + }, + { + "slug": "euro-truck-simulator-2-bulgarian-paint-jobs-pack", + "name": "Euro Truck Simulator 2: Bulgarian Paint Jobs Pack", + "url": "/v1/games/euro-truck-simulator-2-bulgarian-paint-jobs-pack" + }, + { + "slug": "euro-truck-simulator-2-cabin-accessories", + "name": "Euro Truck Simulator 2: Cabin Accessories", + "url": "/v1/games/euro-truck-simulator-2-cabin-accessories" + }, + { + "slug": "euro-truck-simulator-2-canadian-paint-jobs-pack", + "name": "Euro Truck Simulator 2: Canadian Paint Jobs Pack", + "url": "/v1/games/euro-truck-simulator-2-canadian-paint-jobs-pack" + }, + { + "slug": "euro-truck-simulator-2-chinese-paint-jobs-pack", + "name": "Euro Truck Simulator 2: Chinese Paint Jobs Pack", + "url": "/v1/games/euro-truck-simulator-2-chinese-paint-jobs-pack" + }, + { + "slug": "euro-truck-simulator-2-christmas-paint-jobs-pack", + "name": "Euro Truck Simulator 2: Christmas Paint Jobs Pack", + "url": "/v1/games/euro-truck-simulator-2-christmas-paint-jobs-pack" + }, + { + "slug": "euro-truck-simulator-2-czech-paint-jobs-pack", + "name": "Euro Truck Simulator 2: Czech Paint Jobs Pack", + "url": "/v1/games/euro-truck-simulator-2-czech-paint-jobs-pack" + }, + { + "slug": "euro-truck-simulator-2-daf-xg-xg", + "name": "Euro Truck Simulator 2: DAF XG/XG+", + "url": "/v1/games/euro-truck-simulator-2-daf-xg-xg" + }, + { + "slug": "euro-truck-simulator-2-danish-paint-jobs-pack", + "name": "Euro Truck Simulator 2: Danish Paint Jobs Pack", + "url": "/v1/games/euro-truck-simulator-2-danish-paint-jobs-pack" + }, + { + "slug": "euro-truck-simulator-2-dragon-truck-design-pack", + "name": "Euro Truck Simulator 2: Dragon Truck Design Pack", + "url": "/v1/games/euro-truck-simulator-2-dragon-truck-design-pack" + }, + { + "slug": "euro-truck-simulator-2-dutch-paint-jobs-pack", + "name": "Euro Truck Simulator 2: Dutch Paint Jobs Pack", + "url": "/v1/games/euro-truck-simulator-2-dutch-paint-jobs-pack" + }, + { + "slug": "euro-truck-simulator-2-estonian-paint-jobs-pack", + "name": "Euro Truck Simulator 2: Estonian Paint Jobs Pack", + "url": "/v1/games/euro-truck-simulator-2-estonian-paint-jobs-pack" + }, + { + "slug": "euro-truck-simulator-2-fh-tuning-pack", + "name": "Euro Truck Simulator 2: FH Tuning Pack", + "url": "/v1/games/euro-truck-simulator-2-fh-tuning-pack" + }, + { + "slug": "euro-truck-simulator-2-fantasy-paint-jobs-pack", + "name": "Euro Truck Simulator 2: Fantasy Paint Jobs Pack", + "url": "/v1/games/euro-truck-simulator-2-fantasy-paint-jobs-pack" + }, + { + "slug": "euro-truck-simulator-2-finnish-paint-jobs-pack", + "name": "Euro Truck Simulator 2: Finnish Paint Jobs Pack", + "url": "/v1/games/euro-truck-simulator-2-finnish-paint-jobs-pack" + }, + { + "slug": "euro-truck-simulator-2-flip-paint-designs", + "name": "Euro Truck Simulator 2: Flip Paint Designs", + "url": "/v1/games/euro-truck-simulator-2-flip-paint-designs" + }, + { + "slug": "euro-truck-simulator-2-force-of-nature-paint-jobs-pack", + "name": "Euro Truck Simulator 2: Force of Nature Paint Jobs Pack", + "url": "/v1/games/euro-truck-simulator-2-force-of-nature-paint-jobs-pack" + }, + { + "slug": "euro-truck-simulator-2-french-paint-jobs-pack", + "name": "Euro Truck Simulator 2: French Paint Jobs Pack", + "url": "/v1/games/euro-truck-simulator-2-french-paint-jobs-pack" + }, + { + "slug": "euro-truck-simulator-2-german-paint-jobs-pack", + "name": "Euro Truck Simulator 2: German Paint Jobs Pack", + "url": "/v1/games/euro-truck-simulator-2-german-paint-jobs-pack" + }, + { + "slug": "euro-truck-simulator-2-going-east", + "name": "Euro Truck Simulator 2: Going East!", + "url": "/v1/games/euro-truck-simulator-2-going-east" + }, + { + "slug": "euro-truck-simulator-2-goodyear-tyres-pack", + "name": "Euro Truck Simulator 2: Goodyear Tyres Pack", + "url": "/v1/games/euro-truck-simulator-2-goodyear-tyres-pack" + }, + { + "slug": "euro-truck-simulator-2-hs-schoch-tuning-pack", + "name": "Euro Truck Simulator 2: HS-Schoch Tuning Pack", + "url": "/v1/games/euro-truck-simulator-2-hs-schoch-tuning-pack" + }, + { + "slug": "euro-truck-simulator-2-halloween-paint-jobs-pack", + "name": "Euro Truck Simulator 2: Halloween Paint Jobs Pack", + "url": "/v1/games/euro-truck-simulator-2-halloween-paint-jobs-pack" + }, + { + "slug": "euro-truck-simulator-2-heart-of-russia", + "name": "Euro Truck Simulator 2: Heart of Russia", + "url": "/v1/games/euro-truck-simulator-2-heart-of-russia" + }, + { + "slug": "euro-truck-simulator-2-heavy-cargo-pack", + "name": "Euro Truck Simulator 2: Heavy Cargo Pack", + "url": "/v1/games/euro-truck-simulator-2-heavy-cargo-pack" + }, + { + "slug": "euro-truck-simulator-2-high-power-cargo-pack", + "name": "Euro Truck Simulator 2: High Power Cargo Pack", + "url": "/v1/games/euro-truck-simulator-2-high-power-cargo-pack" + }, + { + "slug": "euro-truck-simulator-2-hungarian-paint-jobs-pack", + "name": "Euro Truck Simulator 2: Hungarian Paint Jobs Pack", + "url": "/v1/games/euro-truck-simulator-2-hungarian-paint-jobs-pack" + }, + { + "slug": "euro-truck-simulator-2-iberia", + "name": "Euro Truck Simulator 2: Iberia", + "url": "/v1/games/euro-truck-simulator-2-iberia" + }, + { + "slug": "euro-truck-simulator-2-ice-cold-paint-jobs-pack", + "name": "Euro Truck Simulator 2: Ice Cold Paint Jobs Pack", + "url": "/v1/games/euro-truck-simulator-2-ice-cold-paint-jobs-pack" + }, + { + "slug": "euro-truck-simulator-2-irish-paint-jobs-pack", + "name": "Euro Truck Simulator 2: Irish Paint Jobs Pack", + "url": "/v1/games/euro-truck-simulator-2-irish-paint-jobs-pack" + }, + { + "slug": "euro-truck-simulator-2-italia", + "name": "Euro Truck Simulator 2: Italia", + "url": "/v1/games/euro-truck-simulator-2-italia" + }, + { + "slug": "euro-truck-simulator-2-italian-paint-jobs-pack", + "name": "Euro Truck Simulator 2: Italian Paint Jobs Pack", + "url": "/v1/games/euro-truck-simulator-2-italian-paint-jobs-pack" + }, + { + "slug": "euro-truck-simulator-2-japanese-paint-jobs-pack", + "name": "Euro Truck Simulator 2: Japanese Paint Jobs Pack", + "url": "/v1/games/euro-truck-simulator-2-japanese-paint-jobs-pack" + }, + { + "slug": "euro-truck-simulator-2-krone-trailer-pack", + "name": "Euro Truck Simulator 2: Krone Trailer Pack", + "url": "/v1/games/euro-truck-simulator-2-krone-trailer-pack" + }, + { + "slug": "euro-truck-simulator-2-latvian-paint-jobs-pack", + "name": "Euro Truck Simulator 2: Latvian Paint Jobs Pack", + "url": "/v1/games/euro-truck-simulator-2-latvian-paint-jobs-pack" + }, + { + "slug": "euro-truck-simulator-2-lithuanian-paint-jobs-pack", + "name": "Euro Truck Simulator 2: Lithuanian Paint Jobs Pack", + "url": "/v1/games/euro-truck-simulator-2-lithuanian-paint-jobs-pack" + }, + { + "slug": "euro-truck-simulator-2-lunar-new-year-pack", + "name": "Euro Truck Simulator 2: Lunar New Year Pack", + "url": "/v1/games/euro-truck-simulator-2-lunar-new-year-pack" + }, + { + "slug": "euro-truck-simulator-2-metallic-paint-jobs-pack", + "name": "Euro Truck Simulator 2: Metallic Paint Jobs Pack", + "url": "/v1/games/euro-truck-simulator-2-metallic-paint-jobs-pack" + }, + { + "slug": "euro-truck-simulator-2-michelin-fan-pack", + "name": "Euro Truck Simulator 2: Michelin Fan Pack", + "url": "/v1/games/euro-truck-simulator-2-michelin-fan-pack" + }, + { + "slug": "euro-truck-simulator-2-mighty-griffin-tuning-pack", + "name": "Euro Truck Simulator 2: Mighty Griffin Tuning Pack", + "url": "/v1/games/euro-truck-simulator-2-mighty-griffin-tuning-pack" + }, + { + "slug": "euro-truck-simulator-2-nordic-horizons", + "name": "Euro Truck Simulator 2: Nordic Horizons", + "url": "/v1/games/euro-truck-simulator-2-nordic-horizons" + }, + { + "slug": "euro-truck-simulator-2-norwegian-paint-jobs-pack", + "name": "Euro Truck Simulator 2: Norwegian Paint Jobs Pack", + "url": "/v1/games/euro-truck-simulator-2-norwegian-paint-jobs-pack" + }, + { + "slug": "euro-truck-simulator-2-pink-ribbon-charity-pack", + "name": "Euro Truck Simulator 2: Pink Ribbon Charity Pack", + "url": "/v1/games/euro-truck-simulator-2-pink-ribbon-charity-pack" + }, + { + "slug": "euro-truck-simulator-2-pirate-paint-jobs-pack", + "name": "Euro Truck Simulator 2: Pirate Paint Jobs Pack", + "url": "/v1/games/euro-truck-simulator-2-pirate-paint-jobs-pack" + }, + { + "slug": "euro-truck-simulator-2-polish-paint-jobs-pack", + "name": "Euro Truck Simulator 2: Polish Paint Jobs Pack", + "url": "/v1/games/euro-truck-simulator-2-polish-paint-jobs-pack" + }, + { + "slug": "euro-truck-simulator-2-portuguese-paint-jobs-pack", + "name": "Euro Truck Simulator 2: Portuguese Paint Jobs Pack", + "url": "/v1/games/euro-truck-simulator-2-portuguese-paint-jobs-pack" + }, + { + "slug": "euro-truck-simulator-2-prehistoric-paint-jobs-pack", + "name": "Euro Truck Simulator 2: Prehistoric Paint Jobs Pack", + "url": "/v1/games/euro-truck-simulator-2-prehistoric-paint-jobs-pack" + }, + { + "slug": "euro-truck-simulator-2-raven-truck-design-pack", + "name": "Euro Truck Simulator 2: Raven Truck Design Pack", + "url": "/v1/games/euro-truck-simulator-2-raven-truck-design-pack" + }, + { + "slug": "euro-truck-simulator-2-renault-trucks-t-tuning-pack", + "name": "Euro Truck Simulator 2: Renault Trucks T Tuning Pack", + "url": "/v1/games/euro-truck-simulator-2-renault-trucks-t-tuning-pack" + }, + { + "slug": "euro-truck-simulator-2-road-to-the-black-sea", + "name": "Euro Truck Simulator 2: Road to the Black Sea", + "url": "/v1/games/euro-truck-simulator-2-road-to-the-black-sea" + }, + { + "slug": "euro-truck-simulator-2-romanian-paint-jobs-pack", + "name": "Euro Truck Simulator 2: Romanian Paint Jobs Pack", + "url": "/v1/games/euro-truck-simulator-2-romanian-paint-jobs-pack" + }, + { + "slug": "euro-truck-simulator-2-russian-paint-jobs-pack", + "name": "Euro Truck Simulator 2: Russian Paint Jobs Pack", + "url": "/v1/games/euro-truck-simulator-2-russian-paint-jobs-pack" + }, + { + "slug": "euro-truck-simulator-2-scandinavia", + "name": "Euro Truck Simulator 2: Scandinavia", + "url": "/v1/games/euro-truck-simulator-2-scandinavia" + }, + { + "slug": "euro-truck-simulator-2-schwarzm-ller-trailer-pack", + "name": "Euro Truck Simulator 2: Schwarzmüller Trailer Pack", + "url": "/v1/games/euro-truck-simulator-2-schwarzm-ller-trailer-pack" + }, + { + "slug": "euro-truck-simulator-2-scottish-paint-jobs-pack", + "name": "Euro Truck Simulator 2: Scottish Paint Jobs Pack", + "url": "/v1/games/euro-truck-simulator-2-scottish-paint-jobs-pack" + }, + { + "slug": "euro-truck-simulator-2-slovak-paint-jobs-pack", + "name": "Euro Truck Simulator 2: Slovak Paint Jobs Pack", + "url": "/v1/games/euro-truck-simulator-2-slovak-paint-jobs-pack" + }, + { + "slug": "euro-truck-simulator-2-south-korean-paint-jobs-pack", + "name": "Euro Truck Simulator 2: South Korean Paint Jobs Pack", + "url": "/v1/games/euro-truck-simulator-2-south-korean-paint-jobs-pack" + }, + { + "slug": "euro-truck-simulator-2-space-paint-jobs-pack", + "name": "Euro Truck Simulator 2: Space Paint Jobs Pack", + "url": "/v1/games/euro-truck-simulator-2-space-paint-jobs-pack" + }, + { + "slug": "euro-truck-simulator-2-spanish-paint-jobs-pack", + "name": "Euro Truck Simulator 2: Spanish Paint Jobs Pack", + "url": "/v1/games/euro-truck-simulator-2-spanish-paint-jobs-pack" + }, + { + "slug": "euro-truck-simulator-2-special-transport", + "name": "Euro Truck Simulator 2: Special Transport", + "url": "/v1/games/euro-truck-simulator-2-special-transport" + }, + { + "slug": "euro-truck-simulator-2-super-stripes-paint-jobs-pack", + "name": "Euro Truck Simulator 2: Super Stripes Paint Jobs Pack", + "url": "/v1/games/euro-truck-simulator-2-super-stripes-paint-jobs-pack" + }, + { + "slug": "euro-truck-simulator-2-swedish-paint-jobs-pack", + "name": "Euro Truck Simulator 2: Swedish Paint Jobs Pack", + "url": "/v1/games/euro-truck-simulator-2-swedish-paint-jobs-pack" + }, + { + "slug": "euro-truck-simulator-2-swiss-paint-jobs-pack", + "name": "Euro Truck Simulator 2: Swiss Paint Jobs Pack", + "url": "/v1/games/euro-truck-simulator-2-swiss-paint-jobs-pack" + }, + { + "slug": "euro-truck-simulator-2-turkish-paint-jobs-pack", + "name": "Euro Truck Simulator 2: Turkish Paint Jobs Pack", + "url": "/v1/games/euro-truck-simulator-2-turkish-paint-jobs-pack" + }, + { + "slug": "euro-truck-simulator-2-uk-paint-jobs-pack", + "name": "Euro Truck Simulator 2: UK Paint Jobs Pack", + "url": "/v1/games/euro-truck-simulator-2-uk-paint-jobs-pack" + }, + { + "slug": "euro-truck-simulator-2-usa-paint-jobs-pack", + "name": "Euro Truck Simulator 2: USA Paint Jobs Pack", + "url": "/v1/games/euro-truck-simulator-2-usa-paint-jobs-pack" + }, + { + "slug": "euro-truck-simulator-2-ukrainian-paint-jobs-pack", + "name": "Euro Truck Simulator 2: Ukrainian Paint Jobs Pack", + "url": "/v1/games/euro-truck-simulator-2-ukrainian-paint-jobs-pack" + }, + { + "slug": "euro-truck-simulator-2-valentine-s-paint-jobs-pack", + "name": "Euro Truck Simulator 2: Valentine's Paint Jobs Pack", + "url": "/v1/games/euro-truck-simulator-2-valentine-s-paint-jobs-pack" + }, + { + "slug": "euro-truck-simulator-2-viking-legends", + "name": "Euro Truck Simulator 2: Viking Legends", + "url": "/v1/games/euro-truck-simulator-2-viking-legends" + }, + { + "slug": "euro-truck-simulator-2-vive-la-france", + "name": "Euro Truck Simulator 2: Vive la France!", + "url": "/v1/games/euro-truck-simulator-2-vive-la-france" + }, + { + "slug": "euro-truck-simulator-2-volvo-construction-equipment", + "name": "Euro Truck Simulator 2: Volvo Construction Equipment", + "url": "/v1/games/euro-truck-simulator-2-volvo-construction-equipment" + }, + { + "slug": "euro-truck-simulator-2-west-balkans", + "name": "Euro Truck Simulator 2: West Balkans", + "url": "/v1/games/euro-truck-simulator-2-west-balkans" + }, + { + "slug": "euro-truck-simulator-2-wheel-tuning-pack", + "name": "Euro Truck Simulator 2: Wheel Tuning Pack", + "url": "/v1/games/euro-truck-simulator-2-wheel-tuning-pack" + }, + { + "slug": "euro-truck-simulator-2-window-flags", + "name": "Euro Truck Simulator 2: Window Flags", + "url": "/v1/games/euro-truck-simulator-2-window-flags" + }, + { + "slug": "euro-truck-simulator-2-xf-tuning-pack", + "name": "Euro Truck Simulator 2: XF Tuning Pack", + "url": "/v1/games/euro-truck-simulator-2-xf-tuning-pack" + }, { "slug": "eurobi-racing", "name": "Eurobi Racing", @@ -236431,6 +243311,21 @@ "name": "Europa Universalis III", "url": "/v1/games/europa-universalis-iii" }, + { + "slug": "europa-universalis-iii-divine-wind", + "name": "Europa Universalis III: Divine Wind", + "url": "/v1/games/europa-universalis-iii-divine-wind" + }, + { + "slug": "europa-universalis-iii-heir-to-the-throne", + "name": "Europa Universalis III: Heir to the Throne", + "url": "/v1/games/europa-universalis-iii-heir-to-the-throne" + }, + { + "slug": "europa-universalis-iii-in-nomine", + "name": "Europa Universalis III: In Nomine", + "url": "/v1/games/europa-universalis-iii-in-nomine" + }, { "slug": "europa-universalis-iii-napoleon-s-ambition", "name": "Europa Universalis III: Napoleon's Ambition", @@ -236441,6 +243336,16 @@ "name": "Europa Universalis IV", "url": "/v1/games/europa-universalis-iv" }, + { + "slug": "europa-universalis-iv-art-of-war", + "name": "Europa Universalis IV: Art of War", + "url": "/v1/games/europa-universalis-iv-art-of-war" + }, + { + "slug": "europa-universalis-iv-common-sense", + "name": "Europa Universalis IV: Common Sense", + "url": "/v1/games/europa-universalis-iv-common-sense" + }, { "slug": "europa-universalis-iv-dharma", "name": "Europa Universalis IV: Dharma", @@ -236486,6 +243391,11 @@ "name": "Europa Universalis IV: Rule Britannia", "url": "/v1/games/europa-universalis-iv-rule-britannia" }, + { + "slug": "europa-universalis-iv-wealth-of-nations", + "name": "Europa Universalis IV: Wealth of Nations", + "url": "/v1/games/europa-universalis-iv-wealth-of-nations" + }, { "slug": "europa-universalis-iv-winds-of-change", "name": "Europa Universalis IV: Winds of Change", @@ -236506,6 +243416,11 @@ "name": "Europa Universalis: Rome", "url": "/v1/games/europa-universalis-rome" }, + { + "slug": "europa-universalis-rome-vae-victis", + "name": "Europa Universalis: Rome – Vae Victis", + "url": "/v1/games/europa-universalis-rome-vae-victis" + }, { "slug": "europe-2041-resistance", "name": "Europe 2041: Resistance", @@ -236591,6 +243506,11 @@ "name": "European Mystery: The Face of Envy Collector's Edition", "url": "/v1/games/european-mystery-the-face-of-envy-collector-s-edition" }, + { + "slug": "european-release-of-chrono-trigger-for-nintendo-ds", + "name": "European Release of Chrono Trigger for Nintendo DS", + "url": "/v1/games/european-release-of-chrono-trigger-for-nintendo-ds" + }, { "slug": "european-ship-simulator", "name": "European Ship Simulator", @@ -236806,6 +243726,11 @@ "name": "Eve Of The Storm", "url": "/v1/games/eve-of-the-storm" }, + { + "slug": "eve-online-trinity", + "name": "Eve Online: Trinity", + "url": "/v1/games/eve-online-trinity" + }, { "slug": "eve-valkyrie", "name": "Eve Valkyrie", @@ -237161,11 +244086,66 @@ "name": "EverQuest II", "url": "/v1/games/everquest-ii" }, + { + "slug": "everquest-ii-age-of-discovery", + "name": "EverQuest II: Age of Discovery", + "url": "/v1/games/everquest-ii-age-of-discovery" + }, { "slug": "everquest-ii-altar-of-malice", "name": "EverQuest II: Altar of Malice", "url": "/v1/games/everquest-ii-altar-of-malice" }, + { + "slug": "everquest-ii-chains-of-eternity", + "name": "EverQuest II: Chains of Eternity", + "url": "/v1/games/everquest-ii-chains-of-eternity" + }, + { + "slug": "everquest-ii-desert-of-flames", + "name": "EverQuest II: Desert of Flames", + "url": "/v1/games/everquest-ii-desert-of-flames" + }, + { + "slug": "everquest-ii-destiny-of-velious", + "name": "EverQuest II: Destiny of Velious", + "url": "/v1/games/everquest-ii-destiny-of-velious" + }, + { + "slug": "everquest-ii-east", + "name": "EverQuest II: East", + "url": "/v1/games/everquest-ii-east" + }, + { + "slug": "everquest-ii-echoes-of-faydwer", + "name": "EverQuest II: Echoes of Faydwer", + "url": "/v1/games/everquest-ii-echoes-of-faydwer" + }, + { + "slug": "everquest-ii-kingdom-of-sky", + "name": "EverQuest II: Kingdom of Sky", + "url": "/v1/games/everquest-ii-kingdom-of-sky" + }, + { + "slug": "everquest-ii-rise-of-kunark", + "name": "EverQuest II: Rise of Kunark", + "url": "/v1/games/everquest-ii-rise-of-kunark" + }, + { + "slug": "everquest-ii-sentinel-s-fate", + "name": "EverQuest II: Sentinel's Fate", + "url": "/v1/games/everquest-ii-sentinel-s-fate" + }, + { + "slug": "everquest-ii-tears-of-veeshan", + "name": "EverQuest II: Tears of Veeshan", + "url": "/v1/games/everquest-ii-tears-of-veeshan" + }, + { + "slug": "everquest-ii-the-shadow-odyssey", + "name": "EverQuest II: The Shadow Odyssey", + "url": "/v1/games/everquest-ii-the-shadow-odyssey" + }, { "slug": "everquest-next", "name": "EverQuest Next", @@ -237176,26 +244156,121 @@ "name": "EverQuest Online Adventures", "url": "/v1/games/everquest-online-adventures" }, + { + "slug": "everquest-call-of-the-forsaken", + "name": "EverQuest: Call of the Forsaken", + "url": "/v1/games/everquest-call-of-the-forsaken" + }, + { + "slug": "everquest-depths-of-darkhollow", + "name": "EverQuest: Depths of Darkhollow", + "url": "/v1/games/everquest-depths-of-darkhollow" + }, + { + "slug": "everquest-dragons-of-norrath", + "name": "EverQuest: Dragons of Norrath", + "url": "/v1/games/everquest-dragons-of-norrath" + }, + { + "slug": "everquest-empires-of-kunark", + "name": "EverQuest: Empires of Kunark", + "url": "/v1/games/everquest-empires-of-kunark" + }, + { + "slug": "everquest-gates-of-discord", + "name": "EverQuest: Gates of Discord", + "url": "/v1/games/everquest-gates-of-discord" + }, + { + "slug": "everquest-house-of-thule", + "name": "EverQuest: House of Thule", + "url": "/v1/games/everquest-house-of-thule" + }, + { + "slug": "everquest-lost-dungeons-of-norrath", + "name": "EverQuest: Lost Dungeons of Norrath", + "url": "/v1/games/everquest-lost-dungeons-of-norrath" + }, + { + "slug": "everquest-omens-of-war", + "name": "EverQuest: Omens of War", + "url": "/v1/games/everquest-omens-of-war" + }, + { + "slug": "everquest-prophecy-of-ro", + "name": "EverQuest: Prophecy of Ro", + "url": "/v1/games/everquest-prophecy-of-ro" + }, + { + "slug": "everquest-rain-of-fear", + "name": "EverQuest: Rain of Fear", + "url": "/v1/games/everquest-rain-of-fear" + }, + { + "slug": "everquest-secrets-of-faydwer", + "name": "EverQuest: Secrets of Faydwer", + "url": "/v1/games/everquest-secrets-of-faydwer" + }, + { + "slug": "everquest-seeds-of-destruction", + "name": "EverQuest: Seeds of Destruction", + "url": "/v1/games/everquest-seeds-of-destruction" + }, { "slug": "everquest-the-broken-mirror", "name": "EverQuest: The Broken Mirror", "url": "/v1/games/everquest-the-broken-mirror" }, + { + "slug": "everquest-the-buried-sea", + "name": "EverQuest: The Buried Sea", + "url": "/v1/games/everquest-the-buried-sea" + }, { "slug": "everquest-the-darkened-sea", "name": "EverQuest: The Darkened Sea", "url": "/v1/games/everquest-the-darkened-sea" }, + { + "slug": "everquest-the-legacy-of-ykesha", + "name": "EverQuest: The Legacy of Ykesha", + "url": "/v1/games/everquest-the-legacy-of-ykesha" + }, { "slug": "everquest-the-planes-of-power", "name": "EverQuest: The Planes of Power", "url": "/v1/games/everquest-the-planes-of-power" }, + { + "slug": "everquest-the-ruins-of-kunark", + "name": "EverQuest: The Ruins of Kunark", + "url": "/v1/games/everquest-the-ruins-of-kunark" + }, { "slug": "everquest-the-scars-of-velious", "name": "EverQuest: The Scars of Velious", "url": "/v1/games/everquest-the-scars-of-velious" }, + { + "slug": "everquest-the-serpent-s-spine", + "name": "EverQuest: The Serpent's Spine", + "url": "/v1/games/everquest-the-serpent-s-spine" + }, + { + "slug": "everquest-the-shadows-of-luclin", + "name": "EverQuest: The Shadows of Luclin", + "url": "/v1/games/everquest-the-shadows-of-luclin" + }, + { + "slug": "everquest-underfoot", + "name": "EverQuest: Underfoot", + "url": "/v1/games/everquest-underfoot" + }, + { + "slug": "everquest-veil-of-alaris", + "name": "EverQuest: Veil of Alaris", + "url": "/v1/games/everquest-veil-of-alaris" + }, { "slug": "eversiege-untold-ages", "name": "EverSiege: Untold Ages", @@ -237401,6 +244476,11 @@ "name": "Everise", "url": "/v1/games/everise" }, + { + "slug": "everland", + "name": "Everland", + "url": "/v1/games/everland" + }, { "slug": "everlasting-abundance", "name": "Everlasting Abundance", @@ -237561,6 +244641,11 @@ "name": "Everspace 2", "url": "/v1/games/everspace-2" }, + { + "slug": "everspace-encounters", + "name": "Everspace: Encounters", + "url": "/v1/games/everspace-encounters" + }, { "slug": "everspell", "name": "Everspell", @@ -237616,6 +244701,11 @@ "name": "Everwayne", "url": "/v1/games/everwayne" }, + { + "slug": "everwild", + "name": "Everwild", + "url": "/v1/games/everwild" + }, { "slug": "everwind", "name": "Everwind", @@ -237886,6 +244976,11 @@ "name": "Everything Has Arms", "url": "/v1/games/everything-has-arms" }, + { + "slug": "everything-is-connected", + "name": "Everything Is Connected", + "url": "/v1/games/everything-is-connected" + }, { "slug": "everything-is-fine", "name": "Everything Is Fine", @@ -238061,6 +245156,16 @@ "name": "Evil Dead: The Game", "url": "/v1/games/evil-dead-the-game" }, + { + "slug": "evil-dead-the-game-deluxe-edition", + "name": "Evil Dead: The Game - Deluxe Edition", + "url": "/v1/games/evil-dead-the-game-deluxe-edition" + }, + { + "slug": "evil-dead-the-game-game-of-the-year-edition", + "name": "Evil Dead: The Game - Game of the Year Edition", + "url": "/v1/games/evil-dead-the-game-game-of-the-year-edition" + }, { "slug": "evil-defenders", "name": "Evil Defenders", @@ -238771,11 +245876,31 @@ "name": "Evolve", "url": "/v1/games/evolve" }, + { + "slug": "evolve-founder", + "name": "Evolve Founder", + "url": "/v1/games/evolve-founder" + }, + { + "slug": "evolve-hunting-season-2", + "name": "Evolve Hunting Season 2", + "url": "/v1/games/evolve-hunting-season-2" + }, { "slug": "evolve-lab", "name": "Evolve Lab", "url": "/v1/games/evolve-lab" }, + { + "slug": "evolve-stage-2", + "name": "Evolve Stage 2", + "url": "/v1/games/evolve-stage-2" + }, + { + "slug": "evolve-hunters-quest", + "name": "Evolve: Hunters Quest", + "url": "/v1/games/evolve-hunters-quest" + }, { "slug": "evolve-mecha-squad", "name": "Evolve:Mecha Squad", @@ -240456,6 +247581,11 @@ "name": "Explore The Backrooms", "url": "/v1/games/explore-the-backrooms" }, + { + "slug": "explorer-q11289806", + "name": "Explorer", + "url": "/v1/games/explorer-q11289806" + }, { "slug": "explorer-q126186155", "name": "Explorer", @@ -240531,6 +247661,11 @@ "name": "Explosive Candy World", "url": "/v1/games/explosive-candy-world" }, + { + "slug": "explosive-combat-pack", + "name": "Explosive Combat Pack", + "url": "/v1/games/explosive-combat-pack" + }, { "slug": "explosive-dinosaurs", "name": "Explosive Dinosaurs", @@ -240581,6 +247716,11 @@ "name": "Explottens: Rise of K.L.A.W", "url": "/v1/games/explottens-rise-of-k-l-a-w" }, + { + "slug": "exponential-idle", + "name": "Exponential Idle", + "url": "/v1/games/exponential-idle" + }, { "slug": "export-simulator", "name": "Export Simulator", @@ -241781,6 +248921,11 @@ "name": "E×E", "url": "/v1/games/e-e" }, + { + "slug": "f-zero-q61598553", + "name": "F - ZERO", + "url": "/v1/games/f-zero-q61598553" + }, { "slug": "f-fanatic", "name": "F Fanatic", @@ -241911,6 +249056,26 @@ "name": "F-15 Strike Eagle III", "url": "/v1/games/f-15-strike-eagle-iii" }, + { + "slug": "f-15c-for-dcs-world", + "name": "F-15C for DCS World", + "url": "/v1/games/f-15c-for-dcs-world" + }, + { + "slug": "f-15c-aggressors-bfm-campaign", + "name": "F-15C: Aggressors BFM Campaign", + "url": "/v1/games/f-15c-aggressors-bfm-campaign" + }, + { + "slug": "f-15c-red-flag-campaign", + "name": "F-15C: Red Flag Campaign", + "url": "/v1/games/f-15c-red-flag-campaign" + }, + { + "slug": "f-15c-the-georgian-war-campaign", + "name": "F-15C: The Georgian War Campaign", + "url": "/v1/games/f-15c-the-georgian-war-campaign" + }, { "slug": "f-16-aggressor", "name": "F-16 Aggressor", @@ -241971,6 +249136,16 @@ "name": "F-22: Air Dominance Fighter", "url": "/v1/games/f-22-air-dominance-fighter" }, + { + "slug": "f-5e-aggressors-air-combat-maneuver-campaign", + "name": "F-5E: Aggressors Air Combat Maneuver Campaign", + "url": "/v1/games/f-5e-aggressors-air-combat-maneuver-campaign" + }, + { + "slug": "f-5e-aggressors-basic-fighter-maneuvers-campaign", + "name": "F-5E: Aggressors Basic Fighter Maneuvers Campaign", + "url": "/v1/games/f-5e-aggressors-basic-fighter-maneuvers-campaign" + }, { "slug": "f-out", "name": "F-Out", @@ -242061,6 +249236,11 @@ "name": "F.E.A.R. 2: Project Origin", "url": "/v1/games/f-e-a-r-2-project-origin" }, + { + "slug": "f-e-a-r-2-reborn", + "name": "F.E.A.R. 2: Reborn", + "url": "/v1/games/f-e-a-r-2-reborn" + }, { "slug": "f-e-a-r-3", "name": "F.E.A.R. 3", @@ -242071,11 +249251,26 @@ "name": "F.E.A.R. Combat", "url": "/v1/games/f-e-a-r-combat" }, + { + "slug": "f-e-a-r-extraction-point", + "name": "F.E.A.R. Extraction Point", + "url": "/v1/games/f-e-a-r-extraction-point" + }, + { + "slug": "f-e-a-r-files", + "name": "F.E.A.R. Files", + "url": "/v1/games/f-e-a-r-files" + }, { "slug": "f-e-a-r-online", "name": "F.E.A.R. Online", "url": "/v1/games/f-e-a-r-online" }, + { + "slug": "f-e-a-r-perseus-mandate", + "name": "F.E.A.R. Perseus Mandate", + "url": "/v1/games/f-e-a-r-perseus-mandate" + }, { "slug": "f-e-x-forced-evolution-experiment", "name": "F.E.X (Forced Evolution Experiment)", @@ -242141,6 +249336,11 @@ "name": "F/A-18 Interceptor", "url": "/v1/games/f-a-18-interceptor" }, + { + "slug": "f-a-18c-aggressors-bfm-campaign", + "name": "F/A-18C: Aggressors BFM Campaign", + "url": "/v1/games/f-a-18c-aggressors-bfm-campaign" + }, { "slug": "f-a-18e-super-hornet-q135454223", "name": "F/A-18E Super Hornet", @@ -242296,6 +249496,11 @@ "name": "F1 GP Circuits", "url": "/v1/games/f1-gp-circuits" }, + { + "slug": "f1-game-franchise-bundle", + "name": "F1 Game Franchise Bundle", + "url": "/v1/games/f1-game-franchise-bundle" + }, { "slug": "f1-grand-prix", "name": "F1 Grand Prix", @@ -242761,6 +249966,11 @@ "name": "FAUCET VR", "url": "/v1/games/faucet-vr" }, + { + "slug": "faust-q11331939", + "name": "FAUST", + "url": "/v1/games/faust-q11331939" + }, { "slug": "favor", "name": "FAVOR", @@ -243081,6 +250291,16 @@ "name": "FIFA 18", "url": "/v1/games/fifa-18" }, + { + "slug": "fifa-18-ea-access-demo", + "name": "FIFA 18 EA Access Demo", + "url": "/v1/games/fifa-18-ea-access-demo" + }, + { + "slug": "fifa-18-ronaldo-edition", + "name": "FIFA 18 Ronaldo Edition", + "url": "/v1/games/fifa-18-ronaldo-edition" + }, { "slug": "fifa-18-legacy-edition", "name": "FIFA 18: Legacy Edition", @@ -243111,6 +250331,11 @@ "name": "FIFA 21", "url": "/v1/games/fifa-21" }, + { + "slug": "fifa-21-legacy-edition", + "name": "FIFA 21: Legacy Edition", + "url": "/v1/games/fifa-21-legacy-edition" + }, { "slug": "fifa-22", "name": "FIFA 22", @@ -243121,6 +250346,11 @@ "name": "FIFA 23", "url": "/v1/games/fifa-23" }, + { + "slug": "fifa-23-ultimate-edition", + "name": "FIFA 23 Ultimate Edition", + "url": "/v1/games/fifa-23-ultimate-edition" + }, { "slug": "fifa-97", "name": "FIFA 97", @@ -243856,6 +251086,11 @@ "name": "FNAF Simulator: Origins", "url": "/v1/games/fnaf-simulator-origins" }, + { + "slug": "fnaf-franchise-bundle", + "name": "FNaF Franchise Bundle", + "url": "/v1/games/fnaf-franchise-bundle" + }, { "slug": "fnaf-world", "name": "FNaF World", @@ -243931,6 +251166,11 @@ "name": "FORBIDDEN FORMULA", "url": "/v1/games/forbidden-formula" }, + { + "slug": "force", + "name": "FORCE", + "url": "/v1/games/force" + }, { "slug": "foreman-frenzy", "name": "FOREMAN FRENZY!", @@ -244546,6 +251786,11 @@ "name": "FUNKYHEART", "url": "/v1/games/funkyheart" }, + { + "slug": "funtime-pack", + "name": "FUNTIME! Pack", + "url": "/v1/games/funtime-pack" + }, { "slug": "funwreckers", "name": "FUNWRECKERS", @@ -245156,6 +252401,11 @@ "name": "Factorio", "url": "/v1/games/factorio" }, + { + "slug": "factorio-space-age", + "name": "Factorio: Space Age", + "url": "/v1/games/factorio-space-age" + }, { "slug": "factorization", "name": "Factorization", @@ -246376,6 +253626,11 @@ "name": "Falcon City", "url": "/v1/games/falcon-city" }, + { + "slug": "falcon-gold", + "name": "Falcon Gold", + "url": "/v1/games/falcon-gold" + }, { "slug": "falcon-mission-disk-operation-counterstrike", "name": "Falcon Mission Disk - Operation: Counterstrike", @@ -246401,6 +253656,11 @@ "name": "Falcon's Eye", "url": "/v1/games/falcon-s-eye" }, + { + "slug": "falcon-collection", + "name": "Falcon: Collection", + "url": "/v1/games/falcon-collection" + }, { "slug": "falcon-the-classic-collection", "name": "Falcon: The Classic Collection", @@ -246666,6 +253926,11 @@ "name": "Fallen Aces", "url": "/v1/games/fallen-aces" }, + { + "slug": "fallen-age", + "name": "Fallen Age", + "url": "/v1/games/fallen-age" + }, { "slug": "fallen-angel-q114945551", "name": "Fallen Angel", @@ -246866,6 +254131,11 @@ "name": "Fallen Knight", "url": "/v1/games/fallen-knight" }, + { + "slug": "fallen-knights", + "name": "Fallen Knights", + "url": "/v1/games/fallen-knights" + }, { "slug": "fallen-leaf", "name": "Fallen Leaf", @@ -246896,6 +254166,11 @@ "name": "Fallen Light", "url": "/v1/games/fallen-light" }, + { + "slug": "fallen-lights-demo", + "name": "Fallen Lights DEMO", + "url": "/v1/games/fallen-lights-demo" + }, { "slug": "fallen-london", "name": "Fallen London", @@ -247271,6 +254546,16 @@ "name": "Fallopian Frenzy! Come Again?", "url": "/v1/games/fallopian-frenzy-come-again" }, + { + "slug": "fallout-new-vegas-gun-runners-arsenal", + "name": "Fallout - New Vegas: Gun Runners’ Arsenal", + "url": "/v1/games/fallout-new-vegas-gun-runners-arsenal" + }, + { + "slug": "fallout-1-5-resurrection", + "name": "Fallout 1.5: Resurrection", + "url": "/v1/games/fallout-1-5-resurrection" + }, { "slug": "fallout-2", "name": "Fallout 2", @@ -247286,21 +254571,86 @@ "name": "Fallout 3", "url": "/v1/games/fallout-3" }, + { + "slug": "fallout-3-remake", + "name": "Fallout 3 Remake", + "url": "/v1/games/fallout-3-remake" + }, + { + "slug": "fallout-3-broken-steel", + "name": "Fallout 3: Broken Steel", + "url": "/v1/games/fallout-3-broken-steel" + }, + { + "slug": "fallout-3-game-of-the-year-edition", + "name": "Fallout 3: Game Of The Year Edition", + "url": "/v1/games/fallout-3-game-of-the-year-edition" + }, + { + "slug": "fallout-3-mothership-zeta", + "name": "Fallout 3: Mothership Zeta", + "url": "/v1/games/fallout-3-mothership-zeta" + }, + { + "slug": "fallout-3-operation-anchorage", + "name": "Fallout 3: Operation Anchorage", + "url": "/v1/games/fallout-3-operation-anchorage" + }, { "slug": "fallout-3-point-lookout", "name": "Fallout 3: Point Lookout", "url": "/v1/games/fallout-3-point-lookout" }, + { + "slug": "fallout-3-the-pitt", + "name": "Fallout 3: The Pitt", + "url": "/v1/games/fallout-3-the-pitt" + }, { "slug": "fallout-4", "name": "Fallout 4", "url": "/v1/games/fallout-4" }, + { + "slug": "fallout-4-high-resolution-texture-pack", + "name": "Fallout 4 - High Resolution Texture Pack", + "url": "/v1/games/fallout-4-high-resolution-texture-pack" + }, { "slug": "fallout-4-vr", "name": "Fallout 4 VR", "url": "/v1/games/fallout-4-vr" }, + { + "slug": "fallout-4-automatron", + "name": "Fallout 4: Automatron", + "url": "/v1/games/fallout-4-automatron" + }, + { + "slug": "fallout-4-contraptions-workshop", + "name": "Fallout 4: Contraptions Workshop", + "url": "/v1/games/fallout-4-contraptions-workshop" + }, + { + "slug": "fallout-4-far-harbor", + "name": "Fallout 4: Far Harbor", + "url": "/v1/games/fallout-4-far-harbor" + }, + { + "slug": "fallout-4-nuka-world", + "name": "Fallout 4: Nuka-World", + "url": "/v1/games/fallout-4-nuka-world" + }, + { + "slug": "fallout-4-vault-tec-workshop", + "name": "Fallout 4: Vault-Tec Workshop", + "url": "/v1/games/fallout-4-vault-tec-workshop" + }, + { + "slug": "fallout-4-wasteland-workshop", + "name": "Fallout 4: Wasteland Workshop", + "url": "/v1/games/fallout-4-wasteland-workshop" + }, { "slug": "fallout-76", "name": "Fallout 76", @@ -247311,6 +254661,16 @@ "name": "Fallout Extreme", "url": "/v1/games/fallout-extreme" }, + { + "slug": "fallout-online", + "name": "Fallout Online", + "url": "/v1/games/fallout-online" + }, + { + "slug": "fallout-pack", + "name": "Fallout Pack", + "url": "/v1/games/fallout-pack" + }, { "slug": "fallout-shelter", "name": "Fallout Shelter", @@ -247321,6 +254681,11 @@ "name": "Fallout Shelter Online", "url": "/v1/games/fallout-shelter-online" }, + { + "slug": "fallout-tactics-2", + "name": "Fallout Tactics 2", + "url": "/v1/games/fallout-tactics-2" + }, { "slug": "fallout-tactics-brotherhood-of-steel", "name": "Fallout Tactics: Brotherhood of Steel", @@ -247336,11 +254701,46 @@ "name": "Fallout: Brotherhood of Steel", "url": "/v1/games/fallout-brotherhood-of-steel" }, + { + "slug": "fallout-brotherhood-of-steel-2", + "name": "Fallout: Brotherhood of Steel 2", + "url": "/v1/games/fallout-brotherhood-of-steel-2" + }, + { + "slug": "fallout-london", + "name": "Fallout: London", + "url": "/v1/games/fallout-london" + }, + { + "slug": "fallout-new-california", + "name": "Fallout: New California", + "url": "/v1/games/fallout-new-california" + }, { "slug": "fallout-new-vegas", "name": "Fallout: New Vegas", "url": "/v1/games/fallout-new-vegas" }, + { + "slug": "fallout-new-vegas-remake", + "name": "Fallout: New Vegas Remake", + "url": "/v1/games/fallout-new-vegas-remake" + }, + { + "slug": "fallout-new-vegas-dead-money", + "name": "Fallout: New Vegas – Dead Money", + "url": "/v1/games/fallout-new-vegas-dead-money" + }, + { + "slug": "fallout-new-vegas-honest-hearts", + "name": "Fallout: New Vegas – Honest Hearts", + "url": "/v1/games/fallout-new-vegas-honest-hearts" + }, + { + "slug": "fallout-new-vegas-old-world-blues", + "name": "Fallout: New Vegas — Old World Blues", + "url": "/v1/games/fallout-new-vegas-old-world-blues" + }, { "slug": "fallow", "name": "Fallow", @@ -248636,6 +256036,11 @@ "name": "Fantasy Fishing Town", "url": "/v1/games/fantasy-fishing-town" }, + { + "slug": "fantasy-five", + "name": "Fantasy Five", + "url": "/v1/games/fantasy-five" + }, { "slug": "fantasy-flyer", "name": "Fantasy Flyer", @@ -249436,6 +256841,11 @@ "name": "Far Cry 2", "url": "/v1/games/far-cry-2" }, + { + "slug": "far-cry-2-fortunes-pack", + "name": "Far Cry 2: Fortunes Pack", + "url": "/v1/games/far-cry-2-fortunes-pack" + }, { "slug": "far-cry-3", "name": "Far Cry 3", @@ -249466,21 +256876,46 @@ "name": "Far Cry 4 + Far Cry Primal Bundle", "url": "/v1/games/far-cry-4-far-cry-primal-bundle" }, + { + "slug": "far-cry-4-gold-edition", + "name": "Far Cry 4 Gold Edition", + "url": "/v1/games/far-cry-4-gold-edition" + }, { "slug": "far-cry-5", "name": "Far Cry 5", "url": "/v1/games/far-cry-5" }, + { + "slug": "far-cry-5-gold-edition", + "name": "Far Cry 5: Gold Edition", + "url": "/v1/games/far-cry-5-gold-edition" + }, { "slug": "far-cry-6", "name": "Far Cry 6", "url": "/v1/games/far-cry-6" }, + { + "slug": "far-cry-bundle-q126414297", + "name": "Far Cry Bundle", + "url": "/v1/games/far-cry-bundle-q126414297" + }, + { + "slug": "far-cry-bundle", + "name": "Far Cry Bundle", + "url": "/v1/games/far-cry-bundle" + }, { "slug": "far-cry-classic", "name": "Far Cry Classic", "url": "/v1/games/far-cry-classic" }, + { + "slug": "far-cry-classic-trial", + "name": "Far Cry Classic Trial", + "url": "/v1/games/far-cry-classic-trial" + }, { "slug": "far-cry-instincts", "name": "Far Cry Instincts", @@ -249506,6 +256941,11 @@ "name": "Far Cry Primal", "url": "/v1/games/far-cry-primal" }, + { + "slug": "far-cry-primal-apex-edition", + "name": "Far Cry Primal - Apex Edition", + "url": "/v1/games/far-cry-primal-apex-edition" + }, { "slug": "far-cry-vr-dive-into-insanity", "name": "Far Cry VR: Dive Into Insanity", @@ -249516,6 +256956,11 @@ "name": "Far Cry Vengeance", "url": "/v1/games/far-cry-vengeance" }, + { + "slug": "far-cry-wild-expedition", + "name": "Far Cry: Wild Expedition", + "url": "/v1/games/far-cry-wild-expedition" + }, { "slug": "far-dawn", "name": "Far Dawn", @@ -250476,6 +257921,11 @@ "name": "Farming Simulator 20", "url": "/v1/games/farming-simulator-20" }, + { + "slug": "farming-simulator-20-q118235140", + "name": "Farming Simulator 20+", + "url": "/v1/games/farming-simulator-20-q118235140" + }, { "slug": "farming-simulator-2009", "name": "Farming Simulator 2009", @@ -250766,6 +258216,11 @@ "name": "Fashion Dreamer", "url": "/v1/games/fashion-dreamer" }, + { + "slug": "fashion-flamb", + "name": "Fashion Flambé", + "url": "/v1/games/fashion-flamb" + }, { "slug": "fashion-holiday-a-game-of-texas-hold-em", "name": "Fashion Holiday: A Game of Texas Hold 'Em", @@ -251136,6 +258591,11 @@ "name": "FastCrawl", "url": "/v1/games/fastcrawl" }, + { + "slug": "fastdoom", + "name": "FastDOOM", + "url": "/v1/games/fastdoom" + }, { "slug": "fastmoba", "name": "FastMoBa", @@ -252036,6 +259496,11 @@ "name": "Fateweaver: The Alchemist's Quandary", "url": "/v1/games/fateweaver-the-alchemist-s-quandary" }, + { + "slug": "fathammer-classics-pack", + "name": "Fathammer Classics Pack", + "url": "/v1/games/fathammer-classics-pack" + }, { "slug": "father-a-tribute", "name": "Father - A Tribute", @@ -252361,6 +259826,11 @@ "name": "Fear Effect 2: Retro Helix", "url": "/v1/games/fear-effect-2-retro-helix" }, + { + "slug": "fear-effect-inferno", + "name": "Fear Effect Inferno", + "url": "/v1/games/fear-effect-inferno" + }, { "slug": "fear-effect-sedna", "name": "Fear Effect Sedna", @@ -252796,6 +260266,11 @@ "name": "FeatherCall", "url": "/v1/games/feathercall" }, + { + "slug": "feathermuck", + "name": "FeatherMuck", + "url": "/v1/games/feathermuck" + }, { "slug": "featherborn", "name": "Featherborn", @@ -252951,6 +260426,11 @@ "name": "Feed the Crown", "url": "/v1/games/feed-the-crown" }, + { + "slug": "feed-the-crown-deluxe-edition-movement-demo", + "name": "Feed the Crown: Deluxe Edition (Movement Demo)", + "url": "/v1/games/feed-the-crown-deluxe-edition-movement-demo" + }, { "slug": "feed-the-cups", "name": "Feed the Cups", @@ -253391,6 +260871,11 @@ "name": "Femdom Game World: Aunt", "url": "/v1/games/femdom-game-world-aunt" }, + { + "slug": "femdom-game-world-aunt-demo", + "name": "Femdom Game World: Aunt Demo", + "url": "/v1/games/femdom-game-world-aunt-demo" + }, { "slug": "femdom-game-world-mistress-s-dungeon", "name": "Femdom Game World: Mistress's Dungeon", @@ -253416,11 +260901,36 @@ "name": "Femdom Game World: Stepsister", "url": "/v1/games/femdom-game-world-stepsister" }, + { + "slug": "femdom-game-world-stepsister-demo", + "name": "Femdom Game World: Stepsister Demo", + "url": "/v1/games/femdom-game-world-stepsister-demo" + }, { "slug": "femdom-lines", "name": "Femdom Lines", "url": "/v1/games/femdom-lines" }, + { + "slug": "femdom-lines-mindbreak", + "name": "Femdom Lines: Mindbreak", + "url": "/v1/games/femdom-lines-mindbreak" + }, + { + "slug": "femdom-lines-mistress-akira", + "name": "Femdom Lines: Mistress Akira", + "url": "/v1/games/femdom-lines-mistress-akira" + }, + { + "slug": "femdom-lines-mistress-yuki", + "name": "Femdom Lines: Mistress Yuki", + "url": "/v1/games/femdom-lines-mistress-yuki" + }, + { + "slug": "femdom-lines-total-obedience-pack", + "name": "Femdom Lines: Total Obedience Pack", + "url": "/v1/games/femdom-lines-total-obedience-pack" + }, { "slug": "femdom-stories-findom-simulator-sex-game", "name": "Femdom Stories: Findom Simulator Sex Game", @@ -253441,6 +260951,41 @@ "name": "Femdom Waifu VR", "url": "/v1/games/femdom-waifu-vr" }, + { + "slug": "femdom-waifu-vr-latex-lingerie-pack", + "name": "Femdom Waifu VR: Latex Lingerie Pack", + "url": "/v1/games/femdom-waifu-vr-latex-lingerie-pack" + }, + { + "slug": "femdom-waifu-bikini-summer-pack", + "name": "Femdom Waifu: Bikini Summer Pack", + "url": "/v1/games/femdom-waifu-bikini-summer-pack" + }, + { + "slug": "femdom-waifu-findom-mode", + "name": "Femdom Waifu: Findom Mode", + "url": "/v1/games/femdom-waifu-findom-mode" + }, + { + "slug": "femdom-waifu-foot-fetish-pack", + "name": "Femdom Waifu: Foot Fetish Pack", + "url": "/v1/games/femdom-waifu-foot-fetish-pack" + }, + { + "slug": "femdom-waifu-latex-suits-pack", + "name": "Femdom Waifu: Latex Suits Pack", + "url": "/v1/games/femdom-waifu-latex-suits-pack" + }, + { + "slug": "femdom-waifu-shorts-and-tops-pack", + "name": "Femdom Waifu: Shorts and Tops Pack", + "url": "/v1/games/femdom-waifu-shorts-and-tops-pack" + }, + { + "slug": "femdom-waifu-swimsuit-pack", + "name": "Femdom Waifu: Swimsuit Pack", + "url": "/v1/games/femdom-waifu-swimsuit-pack" + }, { "slug": "femdom-wife-game-emily", "name": "Femdom Wife Game - Emily", @@ -253451,6 +260996,11 @@ "name": "Femdom Wife Game - Zoe", "url": "/v1/games/femdom-wife-game-zoe" }, + { + "slug": "femdom-wife-game-zoe-demo", + "name": "Femdom Wife Game - Zoe Demo", + "url": "/v1/games/femdom-wife-game-zoe-demo" + }, { "slug": "femida", "name": "Femida", @@ -253641,6 +261191,11 @@ "name": "Feria d'Arles", "url": "/v1/games/feria-d-arles" }, + { + "slug": "ferion", + "name": "Ferion", + "url": "/v1/games/ferion" + }, { "slug": "fermi-s-path", "name": "Fermi's Path", @@ -253676,6 +261231,11 @@ "name": "Fernbus Simulator", "url": "/v1/games/fernbus-simulator" }, + { + "slug": "fernbus-simulator-poland", + "name": "Fernbus Simulator: Poland", + "url": "/v1/games/fernbus-simulator-poland" + }, { "slug": "fernz-gate", "name": "Fernz Gate", @@ -254021,6 +261581,11 @@ "name": "Fever", "url": "/v1/games/fever" }, + { + "slug": "fever-all-seven", + "name": "Fever All Seven", + "url": "/v1/games/fever-all-seven" + }, { "slug": "fever-cabin", "name": "Fever Cabin", @@ -254031,11 +261596,21 @@ "name": "Fever Dream", "url": "/v1/games/fever-dream" }, + { + "slug": "fever-girl-s-i", + "name": "Fever Girl's I", + "url": "/v1/games/fever-girl-s-i" + }, { "slug": "fever-pitch-soccer", "name": "Fever Pitch Soccer", "url": "/v1/games/fever-pitch-soccer" }, + { + "slug": "fever-powerful", + "name": "Fever Powerful", + "url": "/v1/games/fever-powerful" + }, { "slug": "fevercide", "name": "Fevercide", @@ -254676,6 +262251,11 @@ "name": "Fight Me Bro!", "url": "/v1/games/fight-me-bro" }, + { + "slug": "fight-my-monster", + "name": "Fight My Monster", + "url": "/v1/games/fight-my-monster" + }, { "slug": "fight-n-fall", "name": "Fight N' Fall", @@ -255916,6 +263496,11 @@ "name": "Final Fantasy Chronicles", "url": "/v1/games/final-fantasy-chronicles" }, + { + "slug": "final-fantasy-collection", + "name": "Final Fantasy Collection", + "url": "/v1/games/final-fantasy-collection" + }, { "slug": "final-fantasy-crystal-chronicles", "name": "Final Fantasy Crystal Chronicles", @@ -255991,6 +263576,11 @@ "name": "Final Fantasy I-II", "url": "/v1/games/final-fantasy-i-ii" }, + { + "slug": "final-fantasy-i-vi-collection-anniversary-edition", + "name": "Final Fantasy I-VI Collection Anniversary Edition", + "url": "/v1/games/final-fantasy-i-vi-collection-anniversary-edition" + }, { "slug": "final-fantasy-ii-q110492211", "name": "Final Fantasy II", @@ -256001,6 +263591,11 @@ "name": "Final Fantasy II", "url": "/v1/games/final-fantasy-ii" }, + { + "slug": "final-fantasy-ii-20th-anniversary-edition", + "name": "Final Fantasy II: 20th Anniversary Edition", + "url": "/v1/games/final-fantasy-ii-20th-anniversary-edition" + }, { "slug": "final-fantasy-iii-q110492939", "name": "Final Fantasy III", @@ -256036,6 +263631,11 @@ "name": "Final Fantasy IV: The After Years", "url": "/v1/games/final-fantasy-iv-the-after-years" }, + { + "slug": "final-fantasy-iv-the-complete-collection", + "name": "Final Fantasy IV: The Complete Collection", + "url": "/v1/games/final-fantasy-iv-the-complete-collection" + }, { "slug": "final-fantasy-ix", "name": "Final Fantasy IX", @@ -256061,6 +263661,11 @@ "name": "Final Fantasy Mystic Quest", "url": "/v1/games/final-fantasy-mystic-quest" }, + { + "slug": "final-fantasy-origins", + "name": "Final Fantasy Origins", + "url": "/v1/games/final-fantasy-origins" + }, { "slug": "final-fantasy-pixel-remaster", "name": "Final Fantasy Pixel Remaster", @@ -256171,6 +263776,11 @@ "name": "Final Fantasy VII Remake Intergrade", "url": "/v1/games/final-fantasy-vii-remake-intergrade" }, + { + "slug": "final-fantasy-vii-remake-episode-intermission", + "name": "Final Fantasy VII Remake: Episode Intermission", + "url": "/v1/games/final-fantasy-vii-remake-episode-intermission" + }, { "slug": "final-fantasy-vii-ever-crisis", "name": "Final Fantasy VII: Ever Crisis", @@ -256246,6 +263856,11 @@ "name": "Final Fantasy XIII", "url": "/v1/games/final-fantasy-xiii" }, + { + "slug": "final-fantasy-xiii-demo", + "name": "Final Fantasy XIII demo", + "url": "/v1/games/final-fantasy-xiii-demo" + }, { "slug": "final-fantasy-xiii-2", "name": "Final Fantasy XIII-2", @@ -256266,16 +263881,46 @@ "name": "Final Fantasy XIV: A Realm Reborn", "url": "/v1/games/final-fantasy-xiv-a-realm-reborn" }, + { + "slug": "final-fantasy-xiv-dawntrail", + "name": "Final Fantasy XIV: Dawntrail", + "url": "/v1/games/final-fantasy-xiv-dawntrail" + }, + { + "slug": "final-fantasy-xiv-endwalker", + "name": "Final Fantasy XIV: Endwalker", + "url": "/v1/games/final-fantasy-xiv-endwalker" + }, + { + "slug": "final-fantasy-xiv-evercold", + "name": "Final Fantasy XIV: Evercold", + "url": "/v1/games/final-fantasy-xiv-evercold" + }, { "slug": "final-fantasy-xiv-heavensward", "name": "Final Fantasy XIV: Heavensward", "url": "/v1/games/final-fantasy-xiv-heavensward" }, + { + "slug": "final-fantasy-xiv-shadowbringers", + "name": "Final Fantasy XIV: Shadowbringers", + "url": "/v1/games/final-fantasy-xiv-shadowbringers" + }, + { + "slug": "final-fantasy-xiv-stormblood", + "name": "Final Fantasy XIV: Stormblood", + "url": "/v1/games/final-fantasy-xiv-stormblood" + }, { "slug": "final-fantasy-xv", "name": "Final Fantasy XV", "url": "/v1/games/final-fantasy-xv" }, + { + "slug": "final-fantasy-xv-episode-duscae", + "name": "Final Fantasy XV Episode Duscae", + "url": "/v1/games/final-fantasy-xv-episode-duscae" + }, { "slug": "final-fantasy-xv-a-new-empire", "name": "Final Fantasy XV: A New Empire", @@ -256296,6 +263941,16 @@ "name": "Final Fantasy XVI", "url": "/v1/games/final-fantasy-xvi" }, + { + "slug": "final-fantasy-xvi-echoes-of-the-fallen", + "name": "Final Fantasy XVI: Echoes of the Fallen", + "url": "/v1/games/final-fantasy-xvi-echoes-of-the-fallen" + }, + { + "slug": "final-fantasy-xvi-the-rising-tide", + "name": "Final Fantasy XVI: The Rising Tide", + "url": "/v1/games/final-fantasy-xvi-the-rising-tide" + }, { "slug": "final-fantasy-20th-anniversary-edition", "name": "Final Fantasy: 20th Anniversary Edition", @@ -257461,6 +265116,11 @@ "name": "Finding the Soul Orb", "url": "/v1/games/finding-the-soul-orb" }, + { + "slug": "fine-art", + "name": "Fine Art", + "url": "/v1/games/fine-art" + }, { "slug": "fine-china", "name": "Fine China", @@ -257891,6 +265551,16 @@ "name": "Fire Emblem Fates: Conquest", "url": "/v1/games/fire-emblem-fates-conquest" }, + { + "slug": "fire-emblem-fates-revelation", + "name": "Fire Emblem Fates: Revelation", + "url": "/v1/games/fire-emblem-fates-revelation" + }, + { + "slug": "fire-emblem-fates-special-edition", + "name": "Fire Emblem Fates: Special Edition", + "url": "/v1/games/fire-emblem-fates-special-edition" + }, { "slug": "fire-emblem-gaiden", "name": "Fire Emblem Gaiden", @@ -257916,6 +265586,11 @@ "name": "Fire Emblem Warriors: Three Hopes", "url": "/v1/games/fire-emblem-warriors-three-hopes" }, + { + "slug": "fire-emblem-ankoku-no-miko", + "name": "Fire Emblem: Ankoku no Miko", + "url": "/v1/games/fire-emblem-ankoku-no-miko" + }, { "slug": "fire-emblem-fortune-s-weave", "name": "Fire Emblem: Fortune's Weave", @@ -258646,6 +266321,11 @@ "name": "Firefly Witch", "url": "/v1/games/firefly-witch" }, + { + "slug": "firefly-the-game-blue-sun-expansion", + "name": "Firefly: The Game – Blue Sun Expansion", + "url": "/v1/games/firefly-the-game-blue-sun-expansion" + }, { "slug": "fireforce", "name": "Fireforce", @@ -259701,6 +267381,11 @@ "name": "Fisheye", "url": "/v1/games/fisheye" }, + { + "slug": "fisheye-quake", + "name": "Fisheye Quake", + "url": "/v1/games/fisheye-quake" + }, { "slug": "fishhead-blueprint", "name": "Fishhead: Blueprint", @@ -260291,6 +267976,11 @@ "name": "Fitz the Fox", "url": "/v1/games/fitz-the-fox" }, + { + "slug": "fitzquake", + "name": "FitzQuake", + "url": "/v1/games/fitzquake" + }, { "slug": "five-a-day", "name": "Five A Day", @@ -260531,6 +268221,11 @@ "name": "Five Nights at Freddy's: Security Breach", "url": "/v1/games/five-nights-at-freddy-s-security-breach" }, + { + "slug": "five-nights-at-freddy-s-security-breach-ruin", + "name": "Five Nights at Freddy's: Security Breach - Ruin", + "url": "/v1/games/five-nights-at-freddy-s-security-breach-ruin" + }, { "slug": "five-nights-at-freddy-s-sister-location", "name": "Five Nights at Freddy's: Sister Location", @@ -260541,6 +268236,11 @@ "name": "Five Nights at Freddy's: Special Delivery", "url": "/v1/games/five-nights-at-freddy-s-special-delivery" }, + { + "slug": "five-nights-at-freddy-s-survival-crew", + "name": "Five Nights at Freddy's: Survival Crew", + "url": "/v1/games/five-nights-at-freddy-s-survival-crew" + }, { "slug": "five-nights-at-leon-s", "name": "Five Nights at Leon's", @@ -260706,6 +268406,11 @@ "name": "Five-a-Side Soccer", "url": "/v1/games/five-a-side-soccer" }, + { + "slug": "fivem", + "name": "FiveM", + "url": "/v1/games/fivem" + }, { "slug": "fix-foxi-das-erbe-von-burg-fuxmoor", "name": "Fix & Foxi: Das Erbe von Burg Fuxmoor", @@ -261371,6 +269076,11 @@ "name": "Flashback 2", "url": "/v1/games/flashback-2" }, + { + "slug": "flashback-legend", + "name": "Flashback Legend", + "url": "/v1/games/flashback-legend" + }, { "slug": "flashcard-hero", "name": "Flashcard Hero", @@ -262176,6 +269886,11 @@ "name": "Flight of Nova", "url": "/v1/games/flight-of-nova" }, + { + "slug": "flight-of-nova-demo", + "name": "Flight of Nova Demo", + "url": "/v1/games/flight-of-nova-demo" + }, { "slug": "flight-of-the-amazon-queen", "name": "Flight of the Amazon Queen", @@ -262461,6 +270176,11 @@ "name": "FlipWitch - Forbidden Sex Hex", "url": "/v1/games/flipwitch-forbidden-sex-hex" }, + { + "slug": "flipflop-solitaire", + "name": "Flipflop Solitaire+", + "url": "/v1/games/flipflop-solitaire" + }, { "slug": "flipnic-ultimate-pinball", "name": "Flipnic: Ultimate Pinball", @@ -262571,6 +270291,11 @@ "name": "Flipping Death", "url": "/v1/games/flipping-death" }, + { + "slug": "flipping-filip", + "name": "Flipping Filip", + "url": "/v1/games/flipping-filip" + }, { "slug": "flipping-legend-dx", "name": "Flipping Legend DX", @@ -262596,6 +270321,11 @@ "name": "Flipshot", "url": "/v1/games/flipshot" }, + { + "slug": "flipside", + "name": "Flipside", + "url": "/v1/games/flipside" + }, { "slug": "flipside-genesis", "name": "Flipside Genesis", @@ -263716,11 +271446,21 @@ "name": "Fluffy Friends", "url": "/v1/games/fluffy-friends" }, + { + "slug": "fluffy-friends-dlc", + "name": "Fluffy Friends - DLC", + "url": "/v1/games/fluffy-friends-dlc" + }, { "slug": "fluffy-friends-2", "name": "Fluffy Friends 2", "url": "/v1/games/fluffy-friends-2" }, + { + "slug": "fluffy-friends-2-wallpapers-ost", + "name": "Fluffy Friends 2 - Wallpapers & OST", + "url": "/v1/games/fluffy-friends-2-wallpapers-ost" + }, { "slug": "fluffy-gore", "name": "Fluffy Gore", @@ -264246,6 +271986,11 @@ "name": "Flyin' High", "url": "/v1/games/flyin-high" }, + { + "slug": "flyin-high-data-disk-1", + "name": "Flyin' High Data Disk 1", + "url": "/v1/games/flyin-high-data-disk-1" + }, { "slug": "flyin-high-data-disk-2", "name": "Flyin' High Data Disk 2", @@ -265731,6 +273476,11 @@ "name": "Football Manager 2021", "url": "/v1/games/football-manager-2021" }, + { + "slug": "football-manager-2021-mobile", + "name": "Football Manager 2021 Mobile", + "url": "/v1/games/football-manager-2021-mobile" + }, { "slug": "football-manager-2021-touch", "name": "Football Manager 2021 Touch", @@ -265741,6 +273491,11 @@ "name": "Football Manager 2022", "url": "/v1/games/football-manager-2022" }, + { + "slug": "football-manager-2022-mobile", + "name": "Football Manager 2022 Mobile", + "url": "/v1/games/football-manager-2022-mobile" + }, { "slug": "football-manager-2022-touch", "name": "Football Manager 2022 Touch", @@ -265751,11 +273506,31 @@ "name": "Football Manager 2023", "url": "/v1/games/football-manager-2023" }, + { + "slug": "football-manager-2023-console", + "name": "Football Manager 2023 Console", + "url": "/v1/games/football-manager-2023-console" + }, + { + "slug": "football-manager-2023-touch", + "name": "Football Manager 2023 Touch", + "url": "/v1/games/football-manager-2023-touch" + }, { "slug": "football-manager-2024", "name": "Football Manager 2024", "url": "/v1/games/football-manager-2024" }, + { + "slug": "football-manager-2024-mobile", + "name": "Football Manager 2024 Mobile", + "url": "/v1/games/football-manager-2024-mobile" + }, + { + "slug": "football-manager-2024-touch", + "name": "Football Manager 2024 Touch", + "url": "/v1/games/football-manager-2024-touch" + }, { "slug": "football-manager-26", "name": "Football Manager 26", @@ -267741,6 +275516,11 @@ "name": "Forgotten Hill: The Wardrobe", "url": "/v1/games/forgotten-hill-the-wardrobe" }, + { + "slug": "forgotten-hope-q24496", + "name": "Forgotten Hope", + "url": "/v1/games/forgotten-hope-q24496" + }, { "slug": "forgotten-hope", "name": "Forgotten Hope", @@ -267856,6 +275636,21 @@ "name": "Forgotten Realms: Demon Stone", "url": "/v1/games/forgotten-realms-demon-stone" }, + { + "slug": "forgotten-realms-the-archives-collection-one", + "name": "Forgotten Realms: The Archives - Collection One", + "url": "/v1/games/forgotten-realms-the-archives-collection-one" + }, + { + "slug": "forgotten-realms-the-archives-collection-three", + "name": "Forgotten Realms: The Archives - Collection Three", + "url": "/v1/games/forgotten-realms-the-archives-collection-three" + }, + { + "slug": "forgotten-realms-the-archives-collection-two", + "name": "Forgotten Realms: The Archives - Collection Two", + "url": "/v1/games/forgotten-realms-the-archives-collection-two" + }, { "slug": "forgotten-realms-unlimited-adventures", "name": "Forgotten Realms: Unlimited Adventures", @@ -268481,6 +276276,11 @@ "name": "Forsaken Ones", "url": "/v1/games/forsaken-ones" }, + { + "slug": "forsaken-patrol", + "name": "Forsaken Patrol", + "url": "/v1/games/forsaken-patrol" + }, { "slug": "forsaken-portals", "name": "Forsaken Portals", @@ -268556,6 +276356,11 @@ "name": "Forsekir:First Invasion", "url": "/v1/games/forsekir-first-invasion" }, + { + "slug": "forspoken-in-tanta-we-trust", + "name": "Forspoken: In Tanta We Trust", + "url": "/v1/games/forspoken-in-tanta-we-trust" + }, { "slug": "forsworn", "name": "Forsworn", @@ -268771,6 +276576,11 @@ "name": "Fortress", "url": "/v1/games/fortress-q126185618" }, + { + "slug": "fortress-q153070", + "name": "Fortress", + "url": "/v1/games/fortress-q153070" + }, { "slug": "fortress-q25215439", "name": "Fortress", @@ -268891,6 +276701,16 @@ "name": "Forts", "url": "/v1/games/forts" }, + { + "slug": "forts-high-seas", + "name": "Forts - High Seas", + "url": "/v1/games/forts-high-seas" + }, + { + "slug": "forts-moonshot", + "name": "Forts - Moonshot", + "url": "/v1/games/forts-moonshot" + }, { "slug": "fortuito-lost-history", "name": "Fortuito: Lost History", @@ -269011,6 +276831,11 @@ "name": "Fortune Summoners: Secret of the Elemental Stone", "url": "/v1/games/fortune-summoners-secret-of-the-elemental-stone" }, + { + "slug": "fortune-tiger", + "name": "Fortune Tiger", + "url": "/v1/games/fortune-tiger" + }, { "slug": "fortune-tiles-gold", "name": "Fortune Tiles Gold", @@ -269111,6 +276936,11 @@ "name": "Forward: Escape the Fold - Ultimate Edition", "url": "/v1/games/forward-escape-the-fold-ultimate-edition" }, + { + "slug": "forward-escape-the-fold-demo", + "name": "Forward: Escape the Fold Demo", + "url": "/v1/games/forward-escape-the-fold-demo" + }, { "slug": "forwards", "name": "Forwards", @@ -269151,6 +276981,11 @@ "name": "Forza Horizon 5", "url": "/v1/games/forza-horizon-5" }, + { + "slug": "forza-horizon-5-hot-wheels", + "name": "Forza Horizon 5: Hot Wheels", + "url": "/v1/games/forza-horizon-5-hot-wheels" + }, { "slug": "forza-motorsport-q107611729", "name": "Forza Motorsport", @@ -269536,6 +277371,11 @@ "name": "Four Seals", "url": "/v1/games/four-seals" }, + { + "slug": "four-seasons-theme", + "name": "Four Seasons Theme", + "url": "/v1/games/four-seasons-theme" + }, { "slug": "four-second-forever", "name": "Four Second Forever", @@ -269651,6 +277491,11 @@ "name": "Fous Du Foot, Les", "url": "/v1/games/fous-du-foot-les" }, + { + "slug": "fous-du-volant-les", + "name": "Fous Du Volant, Les", + "url": "/v1/games/fous-du-volant-les" + }, { "slug": "foviki-empieria", "name": "Foviki Empieria", @@ -270651,6 +278496,11 @@ "name": "Framed 2", "url": "/v1/games/framed-2" }, + { + "slug": "framed-collection", + "name": "Framed Collection", + "url": "/v1/games/framed-collection" + }, { "slug": "framed-fear", "name": "Framed Fear", @@ -271401,6 +279251,11 @@ "name": "Free Fire Max", "url": "/v1/games/free-fire-max" }, + { + "slug": "free-internet-chess-server", + "name": "Free Internet Chess Server", + "url": "/v1/games/free-internet-chess-server" + }, { "slug": "free-kick-football-3d-soccer", "name": "Free Kick Football: 3D Soccer", @@ -271566,6 +279421,11 @@ "name": "FreeFly Burning", "url": "/v1/games/freefly-burning" }, + { + "slug": "freehl", + "name": "FreeHL", + "url": "/v1/games/freehl" + }, { "slug": "freeholder", "name": "FreeHolder", @@ -272101,6 +279961,11 @@ "name": "Freeze!", "url": "/v1/games/freeze" }, + { + "slug": "freeze-putt", + "name": "Freeze-Putt", + "url": "/v1/games/freeze-putt" + }, { "slug": "freezeme", "name": "FreezeME", @@ -274351,6 +282216,11 @@ "name": "Frontline: World War II", "url": "/v1/games/frontline-world-war-ii" }, + { + "slug": "frontlines", + "name": "Frontlines", + "url": "/v1/games/frontlines" + }, { "slug": "frontlines-fuel-of-war", "name": "Frontlines: Fuel of War", @@ -274506,6 +282376,21 @@ "name": "Frostpunk: Beyond the Ice", "url": "/v1/games/frostpunk-beyond-the-ice" }, + { + "slug": "frostpunk-on-the-edge", + "name": "Frostpunk: On The Edge", + "url": "/v1/games/frostpunk-on-the-edge" + }, + { + "slug": "frostpunk-the-last-autumn", + "name": "Frostpunk: The Last Autumn", + "url": "/v1/games/frostpunk-the-last-autumn" + }, + { + "slug": "frostpunk-the-rifts", + "name": "Frostpunk: The Rifts", + "url": "/v1/games/frostpunk-the-rifts" + }, { "slug": "frostrail", "name": "Frostrail", @@ -274801,6 +282686,11 @@ "name": "Fruit Ninja 2", "url": "/v1/games/fruit-ninja-2" }, + { + "slug": "fruit-ninja-classic", + "name": "Fruit Ninja Classic+", + "url": "/v1/games/fruit-ninja-classic" + }, { "slug": "fruit-ninja-kinect-2", "name": "Fruit Ninja Kinect 2", @@ -274911,6 +282801,11 @@ "name": "Fruit couple", "url": "/v1/games/fruit-couple" }, + { + "slug": "fruit-couple-extra", + "name": "Fruit couple🍉 EXTRA", + "url": "/v1/games/fruit-couple-extra" + }, { "slug": "fruit-for-the-village", "name": "Fruit for the Village", @@ -275301,6 +283196,11 @@ "name": "Full BET - Fighting Casino -", "url": "/v1/games/full-bet-fighting-casino" }, + { + "slug": "full-blast", + "name": "Full Blast", + "url": "/v1/games/full-blast" + }, { "slug": "full-bloom", "name": "Full Bloom", @@ -275536,6 +283436,16 @@ "name": "Full Throttle: All-American Racing", "url": "/v1/games/full-throttle-all-american-racing" }, + { + "slug": "full-throttle-hell-on-wheels", + "name": "Full Throttle: Hell on Wheels", + "url": "/v1/games/full-throttle-hell-on-wheels" + }, + { + "slug": "full-throttle-payback", + "name": "Full Throttle: Payback", + "url": "/v1/games/full-throttle-payback" + }, { "slug": "full-throttle-remastered", "name": "Full Throttle: Remastered", @@ -275746,6 +283656,11 @@ "name": "Fun Quest", "url": "/v1/games/fun-quest" }, + { + "slug": "fun-radio-la-compil-micro-2-la-passion-du-sport-s-affiche", + "name": "Fun Radio La Compil Micro 2: La Passion Du Sport S'Affiche!", + "url": "/v1/games/fun-radio-la-compil-micro-2-la-passion-du-sport-s-affiche" + }, { "slug": "fun-radio-la-compil-micro-3-pleins-feux-sur-lucasarts", "name": "Fun Radio La Compil Micro 3: Pleins Feux Sur LucasArts", @@ -275971,6 +283886,11 @@ "name": "Funfair Billionaire", "url": "/v1/games/funfair-billionaire" }, + { + "slug": "funfair-dlc", + "name": "Funfair DLC", + "url": "/v1/games/funfair-dlc" + }, { "slug": "funfair-ride-simulator-3", "name": "Funfair Ride Simulator 3", @@ -276426,6 +284346,11 @@ "name": "Furi", "url": "/v1/games/furi" }, + { + "slug": "furi-one-more-fight", + "name": "Furi - One More Fight", + "url": "/v1/games/furi-one-more-fight" + }, { "slug": "furi-demake-the-chain", "name": "Furi Demake - The Chain", @@ -277891,6 +285816,11 @@ "name": "Future Spy", "url": "/v1/games/future-spy" }, + { + "slug": "future-strike", + "name": "Future Strike", + "url": "/v1/games/future-strike" + }, { "slug": "future-tactics-the-uprising", "name": "Future Tactics: The Uprising", @@ -278681,11 +286611,21 @@ "name": "GBA Championship Basketball: Two-on-Two", "url": "/v1/games/gba-championship-basketball-two-on-two" }, + { + "slug": "gbadoom", + "name": "GBADoom", + "url": "/v1/games/gbadoom" + }, { "slug": "gcs-salvage-rat", "name": "GCS: Salvage Rat", "url": "/v1/games/gcs-salvage-rat" }, + { + "slug": "gcompris", + "name": "GCompris", + "url": "/v1/games/gcompris" + }, { "slug": "gdo-masters", "name": "GDO Masters", @@ -279151,6 +287091,11 @@ "name": "GLOWCOMA: chapter 1", "url": "/v1/games/glowcoma-chapter-1" }, + { + "slug": "glquake", + "name": "GLQuake", + "url": "/v1/games/glquake" + }, { "slug": "glr10x10", "name": "GLR10X10", @@ -279206,6 +287151,11 @@ "name": "GNOM", "url": "/v1/games/gnom" }, + { + "slug": "gnome-chess", + "name": "GNOME Chess", + "url": "/v1/games/gnome-chess" + }, { "slug": "gnome-klotski", "name": "GNOME Klotski", @@ -279246,6 +287196,11 @@ "name": "GNRBLEX", "url": "/v1/games/gnrblex" }, + { + "slug": "gnu-chess", + "name": "GNU Chess", + "url": "/v1/games/gnu-chess" + }, { "slug": "gnu-go", "name": "GNU Go", @@ -279871,6 +287826,11 @@ "name": "GRIPPY", "url": "/v1/games/grippy" }, + { + "slug": "gris-q113660360", + "name": "GRIS+", + "url": "/v1/games/gris-q113660360" + }, { "slug": "grits-racing", "name": "GRITS Racing", @@ -280041,6 +288001,76 @@ "name": "GT:VR", "url": "/v1/games/gt-vr" }, + { + "slug": "gta-online-beach-bum-update", + "name": "GTA Online: Beach Bum Update", + "url": "/v1/games/gta-online-beach-bum-update" + }, + { + "slug": "gta-online-business-update", + "name": "GTA Online: Business Update", + "url": "/v1/games/gta-online-business-update" + }, + { + "slug": "gta-online-capture-creator", + "name": "GTA Online: Capture Creator", + "url": "/v1/games/gta-online-capture-creator" + }, + { + "slug": "gta-online-capture-update", + "name": "GTA Online: Capture Update", + "url": "/v1/games/gta-online-capture-update" + }, + { + "slug": "gta-online-deathmatch-race-creators", + "name": "GTA Online: Deathmatch & Race Creators", + "url": "/v1/games/gta-online-deathmatch-race-creators" + }, + { + "slug": "gta-online-festive-surprise", + "name": "GTA Online: Festive Surprise", + "url": "/v1/games/gta-online-festive-surprise" + }, + { + "slug": "gta-online-heists", + "name": "GTA Online: Heists", + "url": "/v1/games/gta-online-heists" + }, + { + "slug": "gta-online-high-life-update", + "name": "GTA Online: High Life Update", + "url": "/v1/games/gta-online-high-life-update" + }, + { + "slug": "gta-online-holiday-gifts", + "name": "GTA Online: Holiday Gifts", + "url": "/v1/games/gta-online-holiday-gifts" + }, + { + "slug": "gta-online-i-m-not-a-hipster", + "name": "GTA Online: I'm Not a Hipster", + "url": "/v1/games/gta-online-i-m-not-a-hipster" + }, + { + "slug": "gta-online-independence-day-special", + "name": "GTA Online: Independence Day Special", + "url": "/v1/games/gta-online-independence-day-special" + }, + { + "slug": "gta-online-last-team-standing", + "name": "GTA Online: Last Team Standing", + "url": "/v1/games/gta-online-last-team-standing" + }, + { + "slug": "gta-online-san-andreas-flight-school", + "name": "GTA Online: San Andreas Flight School", + "url": "/v1/games/gta-online-san-andreas-flight-school" + }, + { + "slug": "gta-online-valentine-s-day-massacre-special", + "name": "GTA Online: Valentine's Day Massacre Special", + "url": "/v1/games/gta-online-valentine-s-day-massacre-special" + }, { "slug": "gtfo", "name": "GTFO", @@ -280091,6 +288121,11 @@ "name": "GTR 3: FIA GT Racing Game", "url": "/v1/games/gtr-3-fia-gt-racing-game" }, + { + "slug": "gtr-evolution", + "name": "GTR Evolution", + "url": "/v1/games/gtr-evolution" + }, { "slug": "gtr-fia-gt-racing-game", "name": "GTR – FIA GT Racing Game", @@ -280311,6 +288346,11 @@ "name": "GX Sudoku", "url": "/v1/games/gx-sudoku" }, + { + "slug": "gx-games", + "name": "GX Games", + "url": "/v1/games/gx-games" + }, { "slug": "gyatm-dragon-edition", "name": "GYATM Dragon Edition", @@ -280326,6 +288366,11 @@ "name": "GYM ORGASM", "url": "/v1/games/gym-orgasm" }, + { + "slug": "gzdoom", + "name": "GZDoom", + "url": "/v1/games/gzdoom" + }, { "slug": "gzlna", "name": "GZLNA", @@ -281061,16 +289106,46 @@ "name": "Galactic Civilizations", "url": "/v1/games/galactic-civilizations" }, + { + "slug": "galactic-civilizations-ii-dark-avatar", + "name": "Galactic Civilizations II: Dark Avatar", + "url": "/v1/games/galactic-civilizations-ii-dark-avatar" + }, { "slug": "galactic-civilizations-ii-dread-lords", "name": "Galactic Civilizations II: Dread Lords", "url": "/v1/games/galactic-civilizations-ii-dread-lords" }, + { + "slug": "galactic-civilizations-ii-twilight-of-the-arnor", + "name": "Galactic Civilizations II: Twilight of the Arnor", + "url": "/v1/games/galactic-civilizations-ii-twilight-of-the-arnor" + }, { "slug": "galactic-civilizations-iii", "name": "Galactic Civilizations III", "url": "/v1/games/galactic-civilizations-iii" }, + { + "slug": "galactic-civilizations-iii-crusade", + "name": "Galactic Civilizations III: Crusade", + "url": "/v1/games/galactic-civilizations-iii-crusade" + }, + { + "slug": "galactic-civilizations-iii-intrigue", + "name": "Galactic Civilizations III: Intrigue", + "url": "/v1/games/galactic-civilizations-iii-intrigue" + }, + { + "slug": "galactic-civilizations-iii-mercenaries", + "name": "Galactic Civilizations III: Mercenaries", + "url": "/v1/games/galactic-civilizations-iii-mercenaries" + }, + { + "slug": "galactic-civilizations-iii-retribution-expansion", + "name": "Galactic Civilizations III: Retribution Expansion", + "url": "/v1/games/galactic-civilizations-iii-retribution-expansion" + }, { "slug": "galactic-civilizations-iv", "name": "Galactic Civilizations IV", @@ -281081,6 +289156,11 @@ "name": "Galactic Civilizations IV: Tales of the Arnor", "url": "/v1/games/galactic-civilizations-iv-tales-of-the-arnor" }, + { + "slug": "galactic-civilizations-altarian-prophecy", + "name": "Galactic Civilizations: Altarian Prophecy", + "url": "/v1/games/galactic-civilizations-altarian-prophecy" + }, { "slug": "galactic-coffee-shop", "name": "Galactic Coffee Shop", @@ -281691,6 +289771,11 @@ "name": "Galaga '91", "url": "/v1/games/galaga-91" }, + { + "slug": "galaga-30th-collection", + "name": "Galaga 30th Collection", + "url": "/v1/games/galaga-30th-collection" + }, { "slug": "galaga-94", "name": "Galaga 94", @@ -281716,6 +289801,11 @@ "name": "Galaga Wars", "url": "/v1/games/galaga-wars" }, + { + "slug": "galaga-wars-q109303617", + "name": "Galaga Wars+", + "url": "/v1/games/galaga-wars-q109303617" + }, { "slug": "galaga-destination-earth", "name": "Galaga: Destination Earth", @@ -282301,6 +290391,11 @@ "name": "Galaxy of Drones", "url": "/v1/games/galaxy-of-drones" }, + { + "slug": "galaxy-of-games-201", + "name": "Galaxy of Games 201", + "url": "/v1/games/galaxy-of-games-201" + }, { "slug": "galaxy-of-pen-and-paper", "name": "Galaxy of Pen and Paper", @@ -282666,6 +290761,11 @@ "name": "Gambetto", "url": "/v1/games/gambetto" }, + { + "slug": "gambit-q63065589", + "name": "Gambit", + "url": "/v1/games/gambit-q63065589" + }, { "slug": "gambit-gun", "name": "Gambit Gun", @@ -282766,6 +290866,11 @@ "name": "Game & Watch Collection", "url": "/v1/games/game-watch-collection" }, + { + "slug": "game-watch-collection-2", + "name": "Game & Watch Collection 2", + "url": "/v1/games/game-watch-collection-2" + }, { "slug": "game-watch-donkey-kong-ii", "name": "Game & Watch Donkey Kong II", @@ -282926,6 +291031,26 @@ "name": "Game & Watch: The Legend of Zelda", "url": "/v1/games/game-watch-the-legend-of-zelda" }, + { + "slug": "game-box-s-rie-corridas", + "name": "Game Box Série Corridas", + "url": "/v1/games/game-box-s-rie-corridas" + }, + { + "slug": "game-box-s-rie-esportes", + "name": "Game Box Série Esportes", + "url": "/v1/games/game-box-s-rie-esportes" + }, + { + "slug": "game-box-s-rie-esportes-radicais", + "name": "Game Box Série Esportes Radicais", + "url": "/v1/games/game-box-s-rie-esportes-radicais" + }, + { + "slug": "game-box-s-rie-lutas", + "name": "Game Box Série Lutas", + "url": "/v1/games/game-box-s-rie-lutas" + }, { "slug": "game-boy-advance-video-nicktoons-volume-3-model-agb-mn3e-usa", "name": "Game Boy Advance Video - Nicktoons - Volume 3 Model AGB-MN3E-USA", @@ -282936,6 +291061,11 @@ "name": "Game Boy Advance Video: Super Robot Monkey Team Hyper Force Go! - Volume 1", "url": "/v1/games/game-boy-advance-video-super-robot-monkey-team-hyper-force-go-volume-1" }, + { + "slug": "game-boy-advance-nintendo-classics", + "name": "Game Boy Advance – Nintendo Classics", + "url": "/v1/games/game-boy-advance-nintendo-classics" + }, { "slug": "game-boy-gallery", "name": "Game Boy Gallery", @@ -282956,11 +291086,21 @@ "name": "Game Boy Wars 3", "url": "/v1/games/game-boy-wars-3" }, + { + "slug": "game-boy-wars-advance-1-2", + "name": "Game Boy Wars Advance 1+2", + "url": "/v1/games/game-boy-wars-advance-1-2" + }, { "slug": "game-boy-wars-turbo", "name": "Game Boy Wars Turbo", "url": "/v1/games/game-boy-wars-turbo" }, + { + "slug": "game-boy-nintendo-classics", + "name": "Game Boy – Nintendo Classics", + "url": "/v1/games/game-boy-nintendo-classics" + }, { "slug": "game-breaker", "name": "Game Breaker", @@ -283046,6 +291186,11 @@ "name": "Game Dev Story", "url": "/v1/games/game-dev-story" }, + { + "slug": "game-dev-story-q107342977", + "name": "Game Dev Story+", + "url": "/v1/games/game-dev-story-q107342977" + }, { "slug": "game-dev-studio", "name": "Game Dev Studio", @@ -283101,6 +291246,11 @@ "name": "Game Giant", "url": "/v1/games/game-giant" }, + { + "slug": "game-lab-at-peppermill-reno", + "name": "Game Lab at Peppermill Reno", + "url": "/v1/games/game-lab-at-peppermill-reno" + }, { "slug": "game-localization", "name": "Game Localization", @@ -283601,6 +291751,11 @@ "name": "Game-Maker", "url": "/v1/games/game-maker" }, + { + "slug": "gameassistant-special-edition", + "name": "GameAssistant - Special Edition", + "url": "/v1/games/gameassistant-special-edition" + }, { "slug": "gamebook", "name": "GameBook", @@ -283761,6 +291916,11 @@ "name": "Gamer Career Tycoon", "url": "/v1/games/gamer-career-tycoon" }, + { + "slug": "gamer-girl", + "name": "Gamer Girl", + "url": "/v1/games/gamer-girl" + }, { "slug": "gamer-girls", "name": "Gamer Girls", @@ -284346,6 +292506,11 @@ "name": "Gangstar: West Coast Hustle", "url": "/v1/games/gangstar-west-coast-hustle" }, + { + "slug": "gangstas-in-space", + "name": "Gangstas in Space", + "url": "/v1/games/gangstas-in-space" + }, { "slug": "gangster-alley", "name": "Gangster Alley", @@ -284921,6 +293086,11 @@ "name": "Garetto", "url": "/v1/games/garetto" }, + { + "slug": "garfield-q2803678", + "name": "Garfield", + "url": "/v1/games/garfield-q2803678" + }, { "slug": "garfield", "name": "Garfield", @@ -285196,6 +293366,11 @@ "name": "Garten of Banban VR: Distorting Clay", "url": "/v1/games/garten-of-banban-vr-distorting-clay" }, + { + "slug": "gartic", + "name": "Gartic", + "url": "/v1/games/gartic" + }, { "slug": "gartic-phone", "name": "Gartic Phone", @@ -285401,6 +293576,11 @@ "name": "Gassy Man", "url": "/v1/games/gassy-man" }, + { + "slug": "gast", + "name": "Gast", + "url": "/v1/games/gast" + }, { "slug": "gastova-the-witches-of-arkana", "name": "Gastova: The Witches of Arkana", @@ -285841,6 +294021,11 @@ "name": "Gauntlet: Seven Sorrows", "url": "/v1/games/gauntlet-seven-sorrows" }, + { + "slug": "gauntlet-the-deeper-dungeons", + "name": "Gauntlet: The Deeper Dungeons", + "url": "/v1/games/gauntlet-the-deeper-dungeons" + }, { "slug": "gauntlet-the-third-encounter", "name": "Gauntlet: The Third Encounter", @@ -286101,6 +294286,11 @@ "name": "Gear.Club Unlimited 2 - Definitive Edition", "url": "/v1/games/gear-club-unlimited-2-definitive-edition" }, + { + "slug": "gear-club-unlimited-2-ultimate-edition", + "name": "Gear.Club Unlimited 2: Ultimate Edition", + "url": "/v1/games/gear-club-unlimited-2-ultimate-edition" + }, { "slug": "gearblocks", "name": "GearBlocks", @@ -286191,6 +294381,11 @@ "name": "Gears 5", "url": "/v1/games/gears-5" }, + { + "slug": "gears-5-hivebusters", + "name": "Gears 5: Hivebusters", + "url": "/v1/games/gears-5-hivebusters" + }, { "slug": "gears-of-time", "name": "Gears Of Time", @@ -286251,6 +294446,11 @@ "name": "Gears of War 4", "url": "/v1/games/gears-of-war-4" }, + { + "slug": "gears-of-war-exile", + "name": "Gears of War : Exile", + "url": "/v1/games/gears-of-war-exile" + }, { "slug": "gears-of-war-judgment", "name": "Gears of War: Judgment", @@ -286266,6 +294466,11 @@ "name": "Gears of War: Ultimate Edition", "url": "/v1/games/gears-of-war-ultimate-edition" }, + { + "slug": "gears-of-war-ultimate-edition-day-one-version", + "name": "Gears of War: Ultimate Edition - Day One Version", + "url": "/v1/games/gears-of-war-ultimate-edition-day-one-version" + }, { "slug": "gearshifters", "name": "Gearshifters", @@ -287281,6 +295486,11 @@ "name": "Genesia Legacy: Ultimate Domain", "url": "/v1/games/genesia-legacy-ultimate-domain" }, + { + "slug": "genesis", + "name": "Genesis", + "url": "/v1/games/genesis" + }, { "slug": "genesis-alpha-one", "name": "Genesis Alpha One", @@ -287491,6 +295701,16 @@ "name": "Genkai: Primal Awakening", "url": "/v1/games/genkai-primal-awakening" }, + { + "slug": "genki-girl-pack", + "name": "Genki Girl Pack", + "url": "/v1/games/genki-girl-pack" + }, + { + "slug": "genkibowl-vii", + "name": "Genkibowl VII", + "url": "/v1/games/genkibowl-vii" + }, { "slug": "genmukan-aiyoku-to-ry-joku-no-inzai", "name": "Genmukan: Aiyoku to Ryōjoku no Inzai", @@ -288896,6 +297116,11 @@ "name": "Getting Over It with Bennett Foddy", "url": "/v1/games/getting-over-it-with-bennett-foddy" }, + { + "slug": "getting-over-it", + "name": "Getting Over It+", + "url": "/v1/games/getting-over-it" + }, { "slug": "getting-there", "name": "Getting There", @@ -289661,6 +297886,11 @@ "name": "Ghost of Tsushima Director's Cut", "url": "/v1/games/ghost-of-tsushima-director-s-cut" }, + { + "slug": "ghost-of-tsushima-iki-island", + "name": "Ghost of Tsushima: Iki Island", + "url": "/v1/games/ghost-of-tsushima-iki-island" + }, { "slug": "ghost-of-tsushima-legends", "name": "Ghost of Tsushima: Legends", @@ -290016,6 +298246,26 @@ "name": "Ghosts of Tabor", "url": "/v1/games/ghosts-of-tabor" }, + { + "slug": "ghosts-of-tabor-care-package-edition-upgrade", + "name": "Ghosts of Tabor - Care Package Edition Upgrade", + "url": "/v1/games/ghosts-of-tabor-care-package-edition-upgrade" + }, + { + "slug": "ghosts-of-tabor-join-or-die-edition-upgrade", + "name": "Ghosts of Tabor - Join or Die Edition Upgrade", + "url": "/v1/games/ghosts-of-tabor-join-or-die-edition-upgrade" + }, + { + "slug": "ghosts-of-tabor-nuclear-night-edition-upgrade", + "name": "Ghosts of Tabor - Nuclear Night Edition Upgrade", + "url": "/v1/games/ghosts-of-tabor-nuclear-night-edition-upgrade" + }, + { + "slug": "ghosts-of-tabor-starter-pack-bundle", + "name": "Ghosts of Tabor Starter Pack Bundle", + "url": "/v1/games/ghosts-of-tabor-starter-pack-bundle" + }, { "slug": "ghosts-of-war-battle-royale-ww2-shooting-games", "name": "Ghosts of War: Battle Royale WW2 Shooting games", @@ -290466,6 +298716,11 @@ "name": "Gigai no Alruna", "url": "/v1/games/gigai-no-alruna" }, + { + "slug": "gigalomania", + "name": "Gigalomania", + "url": "/v1/games/gigalomania" + }, { "slug": "gigandes", "name": "Gigandes", @@ -290676,6 +298931,11 @@ "name": "Gin Rummy 3D Premium", "url": "/v1/games/gin-rummy-3d-premium" }, + { + "slug": "gin-rummy-classic", + "name": "Gin Rummy Classic+", + "url": "/v1/games/gin-rummy-classic" + }, { "slug": "gin-no-eclipse", "name": "Gin no Eclipse", @@ -290751,6 +299011,16 @@ "name": "Gingerbread Story", "url": "/v1/games/gingerbread-story" }, + { + "slug": "gingira-panic", + "name": "Gingira Panic", + "url": "/v1/games/gingira-panic" + }, + { + "slug": "gingira-paradise", + "name": "Gingira Paradise", + "url": "/v1/games/gingira-paradise" + }, { "slug": "ginka", "name": "Ginka", @@ -292776,6 +301046,11 @@ "name": "Gloomhaven", "url": "/v1/games/gloomhaven" }, + { + "slug": "gloomhaven-jaws-of-the-lion", + "name": "Gloomhaven: Jaws of the Lion", + "url": "/v1/games/gloomhaven-jaws-of-the-lion" + }, { "slug": "gloomscape", "name": "Gloomscape", @@ -294256,6 +302531,11 @@ "name": "Goat Simulator 3", "url": "/v1/games/goat-simulator-3" }, + { + "slug": "goat-simulator-q112231075", + "name": "Goat Simulator+", + "url": "/v1/games/goat-simulator-q112231075" + }, { "slug": "goat-simulator-remastered", "name": "Goat Simulator: Remastered", @@ -295026,6 +303306,11 @@ "name": "God Of This World", "url": "/v1/games/god-of-this-world" }, + { + "slug": "god-of-war-collection-volume-ii", + "name": "God Of War Collection: Volume II", + "url": "/v1/games/god-of-war-collection-volume-ii" + }, { "slug": "god-of-weapons", "name": "God Of Weapons", @@ -295156,6 +303441,11 @@ "name": "God of War", "url": "/v1/games/god-of-war" }, + { + "slug": "god-of-war-collection-q5576061", + "name": "God of War Collection", + "url": "/v1/games/god-of-war-collection-q5576061" + }, { "slug": "god-of-war-collection", "name": "God of War Collection", @@ -295186,6 +303476,11 @@ "name": "God of War III Remastered", "url": "/v1/games/god-of-war-iii-remastered" }, + { + "slug": "god-of-war-ragnar-k-valhalla", + "name": "God of War Ragnarök: Valhalla", + "url": "/v1/games/god-of-war-ragnar-k-valhalla" + }, { "slug": "god-of-war-ascension", "name": "God of War: Ascension", @@ -295221,6 +303516,11 @@ "name": "God of War: Origins Collection", "url": "/v1/games/god-of-war-origins-collection" }, + { + "slug": "god-of-war-saga-collection", + "name": "God of War: Saga Collection", + "url": "/v1/games/god-of-war-saga-collection" + }, { "slug": "god-of-word", "name": "God of Word", @@ -295431,6 +303731,11 @@ "name": "Godfall: Fire & Darkness", "url": "/v1/games/godfall-fire-darkness" }, + { + "slug": "godfall-ultimate-edition", + "name": "Godfall: Ultimate Edition", + "url": "/v1/games/godfall-ultimate-edition" + }, { "slug": "godfist", "name": "Godfist", @@ -295526,6 +303831,11 @@ "name": "Godly Visage", "url": "/v1/games/godly-visage" }, + { + "slug": "godmaster", + "name": "Godmaster", + "url": "/v1/games/godmaster" + }, { "slug": "godmode-epochs", "name": "Godmode Epochs", @@ -296091,6 +304401,11 @@ "name": "Golan Front", "url": "/v1/games/golan-front" }, + { + "slug": "golaxy", + "name": "Golaxy", + "url": "/v1/games/golaxy" + }, { "slug": "golazo", "name": "Golazo!", @@ -296136,6 +304451,26 @@ "name": "Gold Finger", "url": "/v1/games/gold-finger" }, + { + "slug": "gold-games", + "name": "Gold Games", + "url": "/v1/games/gold-games" + }, + { + "slug": "gold-games-2", + "name": "Gold Games 2", + "url": "/v1/games/gold-games-2" + }, + { + "slug": "gold-games-3", + "name": "Gold Games 3", + "url": "/v1/games/gold-games-3" + }, + { + "slug": "gold-games-4", + "name": "Gold Games 4", + "url": "/v1/games/gold-games-4" + }, { "slug": "gold-gold-adventure-gold", "name": "Gold Gold Adventure Gold", @@ -296176,6 +304511,11 @@ "name": "Gold Mine Dash", "url": "/v1/games/gold-mine-dash" }, + { + "slug": "gold-miner-q2267917", + "name": "Gold Miner", + "url": "/v1/games/gold-miner-q2267917" + }, { "slug": "gold-miner", "name": "Gold Miner", @@ -296341,6 +304681,11 @@ "name": "Golden Axe Warrior", "url": "/v1/games/golden-axe-warrior" }, + { + "slug": "golden-axe-beast-rider", + "name": "Golden Axe: Beast Rider", + "url": "/v1/games/golden-axe-beast-rider" + }, { "slug": "golden-axe-the-duel", "name": "Golden Axe: The Duel", @@ -296546,6 +304891,11 @@ "name": "Golden Oldies: Volume 1", "url": "/v1/games/golden-oldies-volume-1" }, + { + "slug": "golden-oldies-volume-1-computer-software-classics", + "name": "Golden Oldies: Volume 1 - Computer Software Classics", + "url": "/v1/games/golden-oldies-volume-1-computer-software-classics" + }, { "slug": "golden-panic", "name": "Golden Panic", @@ -296736,6 +305086,11 @@ "name": "GoldenLand", "url": "/v1/games/goldenland" }, + { + "slug": "goldenland-cold-heaven", + "name": "GoldenLand: Cold Heaven", + "url": "/v1/games/goldenland-cold-heaven" + }, { "slug": "goldenheart", "name": "Goldenheart", @@ -296781,6 +305136,16 @@ "name": "Goldrunner II", "url": "/v1/games/goldrunner-ii" }, + { + "slug": "goldrunner-ii-scenery-disk-1", + "name": "Goldrunner II: Scenery Disk 1", + "url": "/v1/games/goldrunner-ii-scenery-disk-1" + }, + { + "slug": "goldrunner-ii-scenery-disk-2", + "name": "Goldrunner II: Scenery Disk 2", + "url": "/v1/games/goldrunner-ii-scenery-disk-2" + }, { "slug": "goldrush", "name": "Goldrush", @@ -297771,6 +306136,11 @@ "name": "Good Soup", "url": "/v1/games/good-soup" }, + { + "slug": "good-sudoku", + "name": "Good Sudoku+", + "url": "/v1/games/good-sudoku" + }, { "slug": "good-worker", "name": "Good Worker", @@ -297981,6 +306351,11 @@ "name": "Google Lively", "url": "/v1/games/google-lively" }, + { + "slug": "google-pac-man", + "name": "Google Pac-Man", + "url": "/v1/games/google-pac-man" + }, { "slug": "google-santa-tracker", "name": "Google Santa Tracker", @@ -298476,6 +306851,11 @@ "name": "Goritaire", "url": "/v1/games/goritaire" }, + { + "slug": "gorkamorka", + "name": "Gorkamorka", + "url": "/v1/games/gorkamorka" + }, { "slug": "gorky-17", "name": "Gorky 17", @@ -298611,6 +306991,11 @@ "name": "Gotcha!", "url": "/v1/games/gotcha-q126185075" }, + { + "slug": "gotcha-q65040599", + "name": "Gotcha!", + "url": "/v1/games/gotcha-q65040599" + }, { "slug": "gotcha-the-sport", "name": "Gotcha! The Sport!", @@ -298671,6 +307056,11 @@ "name": "Gothic 3", "url": "/v1/games/gothic-3" }, + { + "slug": "gothic-3-forsaken-gods", + "name": "Gothic 3: Forsaken Gods", + "url": "/v1/games/gothic-3-forsaken-gods" + }, { "slug": "gothic-3-the-beginning", "name": "Gothic 3: The Beginning", @@ -298861,6 +307251,11 @@ "name": "Governor of Poker 2", "url": "/v1/games/governor-of-poker-2" }, + { + "slug": "governor-of-poker-2-premium-edition", + "name": "Governor of Poker 2 - Premium Edition", + "url": "/v1/games/governor-of-poker-2-premium-edition" + }, { "slug": "governor-of-poker-3", "name": "Governor of Poker 3", @@ -299011,6 +307406,11 @@ "name": "Grab the Bottle", "url": "/v1/games/grab-the-bottle" }, + { + "slug": "grab-a-roni-gondola", + "name": "Grab-a-Roni Gondola", + "url": "/v1/games/grab-a-roni-gondola" + }, { "slug": "grabbag", "name": "GrabBag", @@ -299121,6 +307521,11 @@ "name": "Gradius Advance", "url": "/v1/games/gradius-advance" }, + { + "slug": "gradius-collection", + "name": "Gradius Collection", + "url": "/v1/games/gradius-collection" + }, { "slug": "gradius-deluxe-pack", "name": "Gradius Deluxe Pack", @@ -299181,6 +307586,11 @@ "name": "Gradius: The Interstellar Assault", "url": "/v1/games/gradius-the-interstellar-assault" }, + { + "slug": "gradius-the-slot", + "name": "Gradius: The Slot", + "url": "/v1/games/gradius-the-slot" + }, { "slug": "graduation", "name": "Graduation", @@ -299366,6 +307776,11 @@ "name": "Gran Turismo 7", "url": "/v1/games/gran-turismo-7" }, + { + "slug": "gran-turismo-8", + "name": "Gran Turismo 8", + "url": "/v1/games/gran-turismo-8" + }, { "slug": "gran-turismo-concept", "name": "Gran Turismo Concept", @@ -299381,6 +307796,11 @@ "name": "Gran Turismo Sport", "url": "/v1/games/gran-turismo-sport" }, + { + "slug": "gran-turismo-for-boys", + "name": "Gran Turismo for Boys", + "url": "/v1/games/gran-turismo-for-boys" + }, { "slug": "gran-vitreous", "name": "Gran Vitreous", @@ -299626,6 +308046,11 @@ "name": "Grand Mountain Adventure", "url": "/v1/games/grand-mountain-adventure" }, + { + "slug": "grand-mountain-adventure-q118233902", + "name": "Grand Mountain Adventure+", + "url": "/v1/games/grand-mountain-adventure-q118233902" + }, { "slug": "grand-mountain-adventure-wonderlands", "name": "Grand Mountain Adventure: Wonderlands", @@ -299731,6 +308156,11 @@ "name": "Grand Prix Racing On Line", "url": "/v1/games/grand-prix-racing-on-line" }, + { + "slug": "grand-prix-racing-online", + "name": "Grand Prix Racing Online", + "url": "/v1/games/grand-prix-racing-online" + }, { "slug": "grand-prix-rock-n-racing", "name": "Grand Prix Rock 'N Racing", @@ -299831,11 +308261,81 @@ "name": "Grand Tanks: WW2 Tank Games", "url": "/v1/games/grand-tanks-ww2-tank-games" }, + { + "slug": "grand-theft-auto-q63284897", + "name": "Grand Theft Auto", + "url": "/v1/games/grand-theft-auto-q63284897" + }, + { + "slug": "grand-theft-auto", + "name": "Grand Theft Auto", + "url": "/v1/games/grand-theft-auto" + }, + { + "slug": "grand-theft-auto-collection", + "name": "Grand Theft Auto Collection", + "url": "/v1/games/grand-theft-auto-collection" + }, + { + "slug": "grand-theft-auto-double-pack", + "name": "Grand Theft Auto Double Pack", + "url": "/v1/games/grand-theft-auto-double-pack" + }, + { + "slug": "grand-theft-auto-iv-grand-theft-auto-san-andreas", + "name": "Grand Theft Auto IV + Grand Theft Auto: San Andreas", + "url": "/v1/games/grand-theft-auto-iv-grand-theft-auto-san-andreas" + }, + { + "slug": "grand-theft-auto-iv-complete-edition", + "name": "Grand Theft Auto IV: Complete Edition", + "url": "/v1/games/grand-theft-auto-iv-complete-edition" + }, + { + "slug": "grand-theft-auto-v-great-white-shark-cash-card", + "name": "Grand Theft Auto V & Great White Shark Cash Card", + "url": "/v1/games/grand-theft-auto-v-great-white-shark-cash-card" + }, { "slug": "grand-theft-auto-v-enhanced", "name": "Grand Theft Auto V Enhanced", "url": "/v1/games/grand-theft-auto-v-enhanced" }, + { + "slug": "grand-theft-auto-v-premium-online-edition", + "name": "Grand Theft Auto V: Premium Online Edition", + "url": "/v1/games/grand-theft-auto-v-premium-online-edition" + }, + { + "slug": "grand-theft-auto-v-premium-online-edition-great-white-shark-card-bundle", + "name": "Grand Theft Auto V: Premium Online Edition & Great White Shark Card Bundle", + "url": "/v1/games/grand-theft-auto-v-premium-online-edition-great-white-shark-card-bundle" + }, + { + "slug": "grand-theft-auto-v-premium-online-edition-megalodon-shark-card-bundle", + "name": "Grand Theft Auto V: Premium Online Edition & Megalodon Shark Card Bundle", + "url": "/v1/games/grand-theft-auto-v-premium-online-edition-megalodon-shark-card-bundle" + }, + { + "slug": "grand-theft-auto-v-premium-online-edition-whale-shark-card-bundle", + "name": "Grand Theft Auto V: Premium Online Edition & Whale Shark Card Bundle", + "url": "/v1/games/grand-theft-auto-v-premium-online-edition-whale-shark-card-bundle" + }, + { + "slug": "grand-theft-auto-director-s-cut", + "name": "Grand Theft Auto: Director's Cut", + "url": "/v1/games/grand-theft-auto-director-s-cut" + }, + { + "slug": "grand-theft-auto-the-classics-collection", + "name": "Grand Theft Auto: The Classics Collection", + "url": "/v1/games/grand-theft-auto-the-classics-collection" + }, + { + "slug": "grand-theft-auto-the-trilogy", + "name": "Grand Theft Auto: The Trilogy", + "url": "/v1/games/grand-theft-auto-the-trilogy" + }, { "slug": "grand-theft-auto-ifruit", "name": "Grand Theft Auto: iFruit", @@ -299996,6 +308496,11 @@ "name": "Grandmaster Chess", "url": "/v1/games/grandmaster-chess" }, + { + "slug": "grandmaster-chess-cd-rom-edition", + "name": "Grandmaster Chess (CD-ROM Edition)", + "url": "/v1/games/grandmaster-chess-cd-rom-edition" + }, { "slug": "grandmaster-s-gambit", "name": "Grandmaster's Gambit", @@ -300801,6 +309306,21 @@ "name": "Graveyard Keeper", "url": "/v1/games/graveyard-keeper" }, + { + "slug": "graveyard-keeper-better-save-soul", + "name": "Graveyard Keeper - Better Save Soul", + "url": "/v1/games/graveyard-keeper-better-save-soul" + }, + { + "slug": "graveyard-keeper-game-of-crone", + "name": "Graveyard Keeper - Game Of Crone", + "url": "/v1/games/graveyard-keeper-game-of-crone" + }, + { + "slug": "graveyard-keeper-stranger-sins", + "name": "Graveyard Keeper - Stranger Sins", + "url": "/v1/games/graveyard-keeper-stranger-sins" + }, { "slug": "graveyard-keeper-2", "name": "Graveyard Keeper 2", @@ -303196,6 +311716,11 @@ "name": "Gridle", "url": "/v1/games/gridle" }, + { + "slug": "gridlee", + "name": "Gridlee", + "url": "/v1/games/gridlee" + }, { "slug": "gridlink", "name": "Gridlink", @@ -303286,6 +311811,11 @@ "name": "Grieve", "url": "/v1/games/grieve" }, + { + "slug": "griff-the-winged-lion", + "name": "Griff the Winged Lion", + "url": "/v1/games/griff-the-winged-lion" + }, { "slug": "griffin", "name": "Griffin", @@ -303351,6 +311881,16 @@ "name": "Grim Dawn", "url": "/v1/games/grim-dawn" }, + { + "slug": "grim-dawn-ashes-of-malmouth", + "name": "Grim Dawn: Ashes of Malmouth", + "url": "/v1/games/grim-dawn-ashes-of-malmouth" + }, + { + "slug": "grim-dawn-definitive-edition", + "name": "Grim Dawn: Definitive Edition", + "url": "/v1/games/grim-dawn-definitive-edition" + }, { "slug": "grim-diary", "name": "Grim Diary", @@ -304491,6 +313031,11 @@ "name": "Ground Control II: Operation Exodus", "url": "/v1/games/ground-control-ii-operation-exodus" }, + { + "slug": "ground-control-dark-conspiracy", + "name": "Ground Control: Dark Conspiracy", + "url": "/v1/games/ground-control-dark-conspiracy" + }, { "slug": "ground-divers", "name": "Ground Divers!", @@ -304746,6 +313291,11 @@ "name": "Grow a Carrot", "url": "/v1/games/grow-a-carrot" }, + { + "slug": "grow-a-garden", + "name": "Grow a Garden", + "url": "/v1/games/grow-a-garden" + }, { "slug": "grow-a-garden-3d", "name": "Grow a Garden 3D", @@ -304991,6 +313541,11 @@ "name": "Grunenberg", "url": "/v1/games/grunenberg" }, + { + "slug": "grunge-theme", + "name": "Grunge Theme", + "url": "/v1/games/grunge-theme" + }, { "slug": "grunn", "name": "Grunn", @@ -305461,6 +314016,11 @@ "name": "Guardians of the Ashes", "url": "/v1/games/guardians-of-the-ashes" }, + { + "slug": "guardians-of-the-ashes-the-lost-memories-r18", + "name": "Guardians of the Ashes - The Lost Memories (R18)", + "url": "/v1/games/guardians-of-the-ashes-the-lost-memories-r18" + }, { "slug": "guardians-of-the-forest", "name": "Guardians of the Forest", @@ -305476,6 +314036,11 @@ "name": "Guardians of the Galaxy: The Telltale Series", "url": "/v1/games/guardians-of-the-galaxy-the-telltale-series" }, + { + "slug": "guardians-of-the-galaxy-the-telltale-series-episode-1", + "name": "Guardians of the Galaxy: The Telltale Series - Episode 1", + "url": "/v1/games/guardians-of-the-galaxy-the-telltale-series-episode-1" + }, { "slug": "guardians-of-the-sanctree", "name": "Guardians of the Sanctree", @@ -305641,6 +314206,11 @@ "name": "Guess That Album", "url": "/v1/games/guess-that-album" }, + { + "slug": "guess-the-correlation", + "name": "Guess the Correlation", + "url": "/v1/games/guess-the-correlation" + }, { "slug": "guess-the-flag", "name": "Guess the Flag!", @@ -305801,6 +314371,21 @@ "name": "Guild Wars 2", "url": "/v1/games/guild-wars-2" }, + { + "slug": "guild-wars-2-end-of-dragons", + "name": "Guild Wars 2: End of Dragons", + "url": "/v1/games/guild-wars-2-end-of-dragons" + }, + { + "slug": "guild-wars-2-heart-of-thorns", + "name": "Guild Wars 2: Heart of Thorns", + "url": "/v1/games/guild-wars-2-heart-of-thorns" + }, + { + "slug": "guild-wars-2-path-of-fire", + "name": "Guild Wars 2: Path of Fire", + "url": "/v1/games/guild-wars-2-path-of-fire" + }, { "slug": "guild-wars-factions", "name": "Guild Wars Factions", @@ -305811,6 +314396,11 @@ "name": "Guild Wars Nightfall", "url": "/v1/games/guild-wars-nightfall" }, + { + "slug": "guild-wars-eye-of-the-north", + "name": "Guild Wars: Eye of the North", + "url": "/v1/games/guild-wars-eye-of-the-north" + }, { "slug": "guild-wars-trilogy", "name": "Guild Wars® Trilogy", @@ -305846,6 +314436,16 @@ "name": "Guild of Rogues", "url": "/v1/games/guild-of-rogues" }, + { + "slug": "guild01", + "name": "Guild01", + "url": "/v1/games/guild01" + }, + { + "slug": "guild02", + "name": "Guild02", + "url": "/v1/games/guild02" + }, { "slug": "guildmestar", "name": "GuildMestar", @@ -306376,6 +314976,11 @@ "name": "Gumbowl's Adventure", "url": "/v1/games/gumbowl-s-adventure" }, + { + "slug": "gumboy-demo", + "name": "Gumboy Demo", + "url": "/v1/games/gumboy-demo" + }, { "slug": "gumboy-tournament", "name": "Gumboy Tournament", @@ -307586,6 +316191,11 @@ "name": "Gunpoint", "url": "/v1/games/gunpoint" }, + { + "slug": "gunpoint-extras-pack-1", + "name": "Gunpoint Extras Pack 1", + "url": "/v1/games/gunpoint-extras-pack-1" + }, { "slug": "gunpowder", "name": "Gunpowder", @@ -307861,6 +316471,16 @@ "name": "Gunship 2000", "url": "/v1/games/gunship-2000" }, + { + "slug": "gunship-2000-cd-rom-edition", + "name": "Gunship 2000 CD-ROM Edition", + "url": "/v1/games/gunship-2000-cd-rom-edition" + }, + { + "slug": "gunship-2000-philippine-islands-antarctica-scenario-disk-with-mission-builder", + "name": "Gunship 2000: Philippine Islands & Antarctica Scenario Disk With Mission Builder", + "url": "/v1/games/gunship-2000-philippine-islands-antarctica-scenario-disk-with-mission-builder" + }, { "slug": "gunship-apocalypse", "name": "Gunship Apocalypse", @@ -308076,6 +316696,11 @@ "name": "Gunvalkyrie", "url": "/v1/games/gunvalkyrie" }, + { + "slug": "gunvari-collection-time-crisis", + "name": "Gunvari Collection + Time Crisis", + "url": "/v1/games/gunvari-collection-time-crisis" + }, { "slug": "gunvein", "name": "Gunvein", @@ -308256,6 +316881,11 @@ "name": "Gutfarm", "url": "/v1/games/gutfarm" }, + { + "slug": "guts-blackpowder", + "name": "Guts & Blackpowder", + "url": "/v1/games/guts-blackpowder" + }, { "slug": "guts-n-grunts", "name": "Guts 'n Grunts", @@ -310036,6 +318666,11 @@ "name": "HOROS - Web of Shadows", "url": "/v1/games/horos-web-of-shadows" }, + { + "slug": "horror-tales-the-wine", + "name": "HORROR TALES: The Wine", + "url": "/v1/games/horror-tales-the-wine" + }, { "slug": "horror-romance-a-slasher-dating-simulator", "name": "HORROR/ROMANCE a slasher dating simulator", @@ -310451,6 +319086,11 @@ "name": "HYPER PRIMATE", "url": "/v1/games/hyper-primate" }, + { + "slug": "hyper-rush", + "name": "HYPER RUSH", + "url": "/v1/games/hyper-rush" + }, { "slug": "hyperball-tachyon", "name": "HYPERBALL TACHYON", @@ -310956,6 +319596,11 @@ "name": "Hackycat", "url": "/v1/games/hackycat" }, + { + "slug": "hacx", + "name": "Hacx", + "url": "/v1/games/hacx" + }, { "slug": "hadarot", "name": "Hadarot", @@ -311501,6 +320146,16 @@ "name": "Half-Life", "url": "/v1/games/half-life" }, + { + "slug": "half-life-1-anthology", + "name": "Half-Life 1 Anthology", + "url": "/v1/games/half-life-1-anthology" + }, + { + "slug": "half-life-1-source", + "name": "Half-Life 1: Source", + "url": "/v1/games/half-life-1-source" + }, { "slug": "half-life-2", "name": "Half-Life 2", @@ -311516,11 +320171,26 @@ "name": "Half-Life 2: Deathmatch", "url": "/v1/games/half-life-2-deathmatch" }, + { + "slug": "half-life-2-demo", + "name": "Half-Life 2: Demo", + "url": "/v1/games/half-life-2-demo" + }, + { + "slug": "half-life-2-episode-one-q78782453", + "name": "Half-Life 2: Episode One", + "url": "/v1/games/half-life-2-episode-one-q78782453" + }, { "slug": "half-life-2-episode-one", "name": "Half-Life 2: Episode One", "url": "/v1/games/half-life-2-episode-one" }, + { + "slug": "half-life-2-episode-three", + "name": "Half-Life 2: Episode Three", + "url": "/v1/games/half-life-2-episode-three" + }, { "slug": "half-life-2-episode-two", "name": "Half-Life 2: Episode Two", @@ -311531,16 +320201,36 @@ "name": "Half-Life 2: Lost Coast", "url": "/v1/games/half-life-2-lost-coast" }, + { + "slug": "half-life-2-ravenholm", + "name": "Half-Life 2: Ravenholm", + "url": "/v1/games/half-life-2-ravenholm" + }, { "slug": "half-life-2-survivor", "name": "Half-Life 2: Survivor", "url": "/v1/games/half-life-2-survivor" }, + { + "slug": "half-life-3", + "name": "Half-Life 3", + "url": "/v1/games/half-life-3" + }, + { + "slug": "half-life-complete", + "name": "Half-Life Complete", + "url": "/v1/games/half-life-complete" + }, { "slug": "half-life-deathmatch-source", "name": "Half-Life Deathmatch: Source", "url": "/v1/games/half-life-deathmatch-source" }, + { + "slug": "half-life-high-definition-pack", + "name": "Half-Life High Definition Pack", + "url": "/v1/games/half-life-high-definition-pack" + }, { "slug": "half-life-rally", "name": "Half-Life Rally", @@ -311551,6 +320241,46 @@ "name": "Half-Life: A Place in the West", "url": "/v1/games/half-life-a-place-in-the-west" }, + { + "slug": "half-life-a-place-in-the-west-chapter-2", + "name": "Half-Life: A Place in the West - Chapter 2", + "url": "/v1/games/half-life-a-place-in-the-west-chapter-2" + }, + { + "slug": "half-life-a-place-in-the-west-chapter-3", + "name": "Half-Life: A Place in the West - Chapter 3", + "url": "/v1/games/half-life-a-place-in-the-west-chapter-3" + }, + { + "slug": "half-life-a-place-in-the-west-chapter-4", + "name": "Half-Life: A Place in the West - Chapter 4", + "url": "/v1/games/half-life-a-place-in-the-west-chapter-4" + }, + { + "slug": "half-life-a-place-in-the-west-chapter-5", + "name": "Half-Life: A Place in the West - Chapter 5", + "url": "/v1/games/half-life-a-place-in-the-west-chapter-5" + }, + { + "slug": "half-life-a-place-in-the-west-chapter-6", + "name": "Half-Life: A Place in the West - Chapter 6", + "url": "/v1/games/half-life-a-place-in-the-west-chapter-6" + }, + { + "slug": "half-life-a-place-in-the-west-chapter-7", + "name": "Half-Life: A Place in the West - Chapter 7", + "url": "/v1/games/half-life-a-place-in-the-west-chapter-7" + }, + { + "slug": "half-life-a-place-in-the-west-chapter-8", + "name": "Half-Life: A Place in the West - Chapter 8", + "url": "/v1/games/half-life-a-place-in-the-west-chapter-8" + }, + { + "slug": "half-life-adrenaline-pack", + "name": "Half-Life: Adrenaline Pack", + "url": "/v1/games/half-life-adrenaline-pack" + }, { "slug": "half-life-alyx", "name": "Half-Life: Alyx", @@ -311566,21 +320296,51 @@ "name": "Half-Life: Blue Shift", "url": "/v1/games/half-life-blue-shift" }, + { + "slug": "half-life-day-one", + "name": "Half-Life: Day One", + "url": "/v1/games/half-life-day-one" + }, { "slug": "half-life-decay", "name": "Half-Life: Decay", "url": "/v1/games/half-life-decay" }, + { + "slug": "half-life-escape-2-0", + "name": "Half-Life: Escape 2.0", + "url": "/v1/games/half-life-escape-2-0" + }, + { + "slug": "half-life-initial-encounter", + "name": "Half-Life: Initial Encounter", + "url": "/v1/games/half-life-initial-encounter" + }, { "slug": "half-life-opposing-force", "name": "Half-Life: Opposing Force", "url": "/v1/games/half-life-opposing-force" }, + { + "slug": "half-life-platinum", + "name": "Half-Life: Platinum", + "url": "/v1/games/half-life-platinum" + }, + { + "slug": "half-life-platinum-collection", + "name": "Half-Life: Platinum Collection", + "url": "/v1/games/half-life-platinum-collection" + }, { "slug": "half-life-source", "name": "Half-Life: Source", "url": "/v1/games/half-life-source" }, + { + "slug": "half-life-uplink", + "name": "Half-Life: Uplink", + "url": "/v1/games/half-life-uplink" + }, { "slug": "half-minute-hero", "name": "Half-Minute Hero", @@ -312086,6 +320846,11 @@ "name": "Hallway Defender", "url": "/v1/games/hallway-defender" }, + { + "slug": "hallway-hunt", + "name": "Hallway Hunt", + "url": "/v1/games/hallway-hunt" + }, { "slug": "hallway-shot", "name": "Hallway Shot", @@ -312146,6 +320911,11 @@ "name": "Halo 3 Mod Tools - MCC", "url": "/v1/games/halo-3-mod-tools-mcc" }, + { + "slug": "halo-3-odst", + "name": "Halo 3: ODST", + "url": "/v1/games/halo-3-odst" + }, { "slug": "halo-3-odst-mod-tools-mcc", "name": "Halo 3: ODST Mod Tools - MCC", @@ -312176,6 +320946,11 @@ "name": "Halo Beats!", "url": "/v1/games/halo-beats" }, + { + "slug": "halo-custom-edition", + "name": "Halo Custom Edition", + "url": "/v1/games/halo-custom-edition" + }, { "slug": "halo-infinite-multiplayer", "name": "Halo Infinite Multiplayer", @@ -312201,11 +320976,26 @@ "name": "Halo Wars 2", "url": "/v1/games/halo-wars-2" }, + { + "slug": "halo-wars-2-awakening-the-nightmare", + "name": "Halo Wars 2: Awakening the Nightmare", + "url": "/v1/games/halo-wars-2-awakening-the-nightmare" + }, { "slug": "halo-wars-definitive-edition", "name": "Halo Wars: Definitive Edition", "url": "/v1/games/halo-wars-definitive-edition" }, + { + "slug": "halo-wars-historical-battle-map-pack", + "name": "Halo Wars: Historical Battle Map Pack", + "url": "/v1/games/halo-wars-historical-battle-map-pack" + }, + { + "slug": "halo-wars-strategic-options", + "name": "Halo Wars: Strategic Options", + "url": "/v1/games/halo-wars-strategic-options" + }, { "slug": "halo-waypoint", "name": "Halo Waypoint", @@ -312731,6 +321521,11 @@ "name": "Hamtaro: Wake Up Snoozer!", "url": "/v1/games/hamtaro-wake-up-snoozer" }, + { + "slug": "hamulet-demo", + "name": "Hamulet (Demo)", + "url": "/v1/games/hamulet-demo" + }, { "slug": "hamurabi", "name": "Hamurabi", @@ -313026,6 +321821,11 @@ "name": "HandPass VR", "url": "/v1/games/handpass-vr" }, + { + "slug": "handball-q104591944", + "name": "Handball", + "url": "/v1/games/handball-q104591944" + }, { "slug": "handball", "name": "Handball", @@ -313411,6 +322211,11 @@ "name": "Hannah Montana: Music Jam", "url": "/v1/games/hannah-montana-music-jam" }, + { + "slug": "hannah-montana-pop-star-exclusive", + "name": "Hannah Montana: Pop Star Exclusive", + "url": "/v1/games/hannah-montana-pop-star-exclusive" + }, { "slug": "hannah-montana-rock-out-the-show", "name": "Hannah Montana: Rock Out the Show", @@ -313621,6 +322426,11 @@ "name": "Happy Animal Testing", "url": "/v1/games/happy-animal-testing" }, + { + "slug": "happy-aquarium", + "name": "Happy Aquarium", + "url": "/v1/games/happy-aquarium" + }, { "slug": "happy-bastards", "name": "Happy Bastards", @@ -314576,6 +323386,11 @@ "name": "Hard Truck: Road to Victory", "url": "/v1/games/hard-truck-road-to-victory" }, + { + "slug": "hard-vacuum-q126681220", + "name": "Hard Vacuum", + "url": "/v1/games/hard-vacuum-q126681220" + }, { "slug": "hard-vacuum", "name": "Hard Vacuum", @@ -315856,6 +324671,11 @@ "name": "Harvest Mana", "url": "/v1/games/harvest-mana" }, + { + "slug": "harvest-moon-q21233492", + "name": "Harvest Moon", + "url": "/v1/games/harvest-moon-q21233492" + }, { "slug": "harvest-moon", "name": "Harvest Moon", @@ -315951,6 +324771,11 @@ "name": "Harvest Moon: Home Sweet Home", "url": "/v1/games/harvest-moon-home-sweet-home" }, + { + "slug": "harvest-moon-home-sweet-home-special-edition", + "name": "Harvest Moon: Home Sweet Home Special Edition", + "url": "/v1/games/harvest-moon-home-sweet-home-special-edition" + }, { "slug": "harvest-moon-light-of-hope", "name": "Harvest Moon: Light of Hope", @@ -316746,11 +325571,31 @@ "name": "Haunted Chocolatier", "url": "/v1/games/haunted-chocolatier" }, + { + "slug": "haunted-cities", + "name": "Haunted Cities", + "url": "/v1/games/haunted-cities" + }, + { + "slug": "haunted-cities-volume-2-q125024700", + "name": "Haunted Cities Volume 2", + "url": "/v1/games/haunted-cities-volume-2-q125024700" + }, { "slug": "haunted-cities-volume-2", "name": "Haunted Cities Volume 2", "url": "/v1/games/haunted-cities-volume-2" }, + { + "slug": "haunted-cities-volume-3", + "name": "Haunted Cities Volume 3", + "url": "/v1/games/haunted-cities-volume-3" + }, + { + "slug": "haunted-cities-volume-4", + "name": "Haunted Cities Volume 4", + "url": "/v1/games/haunted-cities-volume-4" + }, { "slug": "haunted-dorm", "name": "Haunted Dorm", @@ -316936,6 +325781,11 @@ "name": "Haunted House", "url": "/v1/games/haunted-house-q139784649" }, + { + "slug": "haunted-house-q16975489", + "name": "Haunted House", + "url": "/v1/games/haunted-house-q16975489" + }, { "slug": "haunted-house-q3128364", "name": "Haunted House", @@ -317541,6 +326391,11 @@ "name": "Hay Day", "url": "/v1/games/hay-day" }, + { + "slug": "hay-day-pop", + "name": "Hay Day Pop", + "url": "/v1/games/hay-day-pop" + }, { "slug": "haya-oshi-kanji-stadium", "name": "Haya Oshi! Kanji Stadium", @@ -318771,16 +327626,56 @@ "name": "Hearthstone", "url": "/v1/games/hearthstone" }, + { + "slug": "hearthstone-ashes-of-outland", + "name": "Hearthstone: Ashes of Outland", + "url": "/v1/games/hearthstone-ashes-of-outland" + }, + { + "slug": "hearthstone-blackrock-mountain", + "name": "Hearthstone: Blackrock Mountain", + "url": "/v1/games/hearthstone-blackrock-mountain" + }, + { + "slug": "hearthstone-curse-of-naxxramas", + "name": "Hearthstone: Curse of Naxxramas", + "url": "/v1/games/hearthstone-curse-of-naxxramas" + }, + { + "slug": "hearthstone-descent-of-dragons", + "name": "Hearthstone: Descent of Dragons", + "url": "/v1/games/hearthstone-descent-of-dragons" + }, { "slug": "hearthstone-festival-of-legends", "name": "Hearthstone: Festival of Legends", "url": "/v1/games/hearthstone-festival-of-legends" }, + { + "slug": "hearthstone-forged-in-the-barrens", + "name": "Hearthstone: Forged in the Barrens", + "url": "/v1/games/hearthstone-forged-in-the-barrens" + }, { "slug": "hearthstone-fractured-in-alterac-valley", "name": "Hearthstone: Fractured in Alterac Valley", "url": "/v1/games/hearthstone-fractured-in-alterac-valley" }, + { + "slug": "hearthstone-goblins-vs-gnomes", + "name": "Hearthstone: Goblins vs Gnomes", + "url": "/v1/games/hearthstone-goblins-vs-gnomes" + }, + { + "slug": "hearthstone-journey-to-un-goro", + "name": "Hearthstone: Journey to Un'Goro", + "url": "/v1/games/hearthstone-journey-to-un-goro" + }, + { + "slug": "hearthstone-knights-of-the-frozen-throne", + "name": "Hearthstone: Knights of the Frozen Throne", + "url": "/v1/games/hearthstone-knights-of-the-frozen-throne" + }, { "slug": "hearthstone-kobolds-and-catacombs", "name": "Hearthstone: Kobolds and Catacombs", @@ -318801,16 +327696,66 @@ "name": "Hearthstone: March of the Lich King", "url": "/v1/games/hearthstone-march-of-the-lich-king" }, + { + "slug": "hearthstone-mean-streets-of-gadgetzan", + "name": "Hearthstone: Mean Streets of Gadgetzan", + "url": "/v1/games/hearthstone-mean-streets-of-gadgetzan" + }, { "slug": "hearthstone-murder-at-castle-nathria", "name": "Hearthstone: Murder at Castle Nathria", "url": "/v1/games/hearthstone-murder-at-castle-nathria" }, + { + "slug": "hearthstone-one-night-in-karazhan", + "name": "Hearthstone: One Night in Karazhan", + "url": "/v1/games/hearthstone-one-night-in-karazhan" + }, + { + "slug": "hearthstone-rastakhan-s-rumble", + "name": "Hearthstone: Rastakhan's Rumble", + "url": "/v1/games/hearthstone-rastakhan-s-rumble" + }, + { + "slug": "hearthstone-rise-of-shadows", + "name": "Hearthstone: Rise of Shadows", + "url": "/v1/games/hearthstone-rise-of-shadows" + }, + { + "slug": "hearthstone-saviors-of-uldum", + "name": "Hearthstone: Saviors of Uldum", + "url": "/v1/games/hearthstone-saviors-of-uldum" + }, + { + "slug": "hearthstone-scholomance-academy", + "name": "Hearthstone: Scholomance Academy", + "url": "/v1/games/hearthstone-scholomance-academy" + }, + { + "slug": "hearthstone-showdown-in-the-badlands", + "name": "Hearthstone: Showdown in the Badlands", + "url": "/v1/games/hearthstone-showdown-in-the-badlands" + }, + { + "slug": "hearthstone-the-boomsday-project", + "name": "Hearthstone: The Boomsday Project", + "url": "/v1/games/hearthstone-the-boomsday-project" + }, { "slug": "hearthstone-the-grand-tournament", "name": "Hearthstone: The Grand Tournament", "url": "/v1/games/hearthstone-the-grand-tournament" }, + { + "slug": "hearthstone-the-witchwood", + "name": "Hearthstone: The Witchwood", + "url": "/v1/games/hearthstone-the-witchwood" + }, + { + "slug": "hearthstone-titans", + "name": "Hearthstone: Titans", + "url": "/v1/games/hearthstone-titans" + }, { "slug": "hearthstone-united-in-stormwind", "name": "Hearthstone: United in Stormwind", @@ -318956,6 +327901,51 @@ "name": "Hearts of Iron III: Semper Fi", "url": "/v1/games/hearts-of-iron-iii-semper-fi" }, + { + "slug": "hearts-of-iron-iv-arms-against-tyranny", + "name": "Hearts of Iron IV: Arms Against Tyranny", + "url": "/v1/games/hearts-of-iron-iv-arms-against-tyranny" + }, + { + "slug": "hearts-of-iron-iv-battle-for-the-bosporus", + "name": "Hearts of Iron IV: Battle for the Bosporus", + "url": "/v1/games/hearts-of-iron-iv-battle-for-the-bosporus" + }, + { + "slug": "hearts-of-iron-iv-by-blood-alone", + "name": "Hearts of Iron IV: By Blood Alone", + "url": "/v1/games/hearts-of-iron-iv-by-blood-alone" + }, + { + "slug": "hearts-of-iron-iv-death-or-dishonor", + "name": "Hearts of Iron IV: Death or Dishonor", + "url": "/v1/games/hearts-of-iron-iv-death-or-dishonor" + }, + { + "slug": "hearts-of-iron-iv-la-r-sistance", + "name": "Hearts of Iron IV: La Résistance", + "url": "/v1/games/hearts-of-iron-iv-la-r-sistance" + }, + { + "slug": "hearts-of-iron-iv-man-the-guns", + "name": "Hearts of Iron IV: Man the Guns", + "url": "/v1/games/hearts-of-iron-iv-man-the-guns" + }, + { + "slug": "hearts-of-iron-iv-no-step-back", + "name": "Hearts of Iron IV: No Step Back", + "url": "/v1/games/hearts-of-iron-iv-no-step-back" + }, + { + "slug": "hearts-of-iron-iv-together-for-victory", + "name": "Hearts of Iron IV: Together for Victory", + "url": "/v1/games/hearts-of-iron-iv-together-for-victory" + }, + { + "slug": "hearts-of-iron-iv-waking-the-tiger", + "name": "Hearts of Iron IV: Waking the Tiger", + "url": "/v1/games/hearts-of-iron-iv-waking-the-tiger" + }, { "slug": "hearts-of-the-dungeon-list", "name": "Hearts of the Dungeon List", @@ -318966,6 +327956,11 @@ "name": "Hearts: Card Game", "url": "/v1/games/hearts-card-game" }, + { + "slug": "hearts-card-game-q110453685", + "name": "Hearts: Card Game+", + "url": "/v1/games/hearts-card-game-q110453685" + }, { "slug": "heartseeker", "name": "Heartseeker", @@ -319461,6 +328456,11 @@ "name": "Heavy Dreams", "url": "/v1/games/heavy-dreams" }, + { + "slug": "heavy-duty", + "name": "Heavy Duty", + "url": "/v1/games/heavy-duty" + }, { "slug": "heavy-duty-challenge-the-off-road-truck-simulator", "name": "Heavy Duty Challenge: The Off-Road Truck Simulator", @@ -319681,6 +328681,11 @@ "name": "Heavyweight Champ", "url": "/v1/games/heavyweight-champ" }, + { + "slug": "heavyweight-transport-simulator", + "name": "Heavyweight Transport Simulator", + "url": "/v1/games/heavyweight-transport-simulator" + }, { "slug": "heavyweight-transport-simulator-3", "name": "Heavyweight Transport Simulator 3", @@ -320521,6 +329526,11 @@ "name": "Hell Knights", "url": "/v1/games/hell-knights" }, + { + "slug": "hell-let-loose-spearhead-edition", + "name": "Hell Let Loose: Spearhead Edition", + "url": "/v1/games/hell-let-loose-spearhead-edition" + }, { "slug": "hell-let-loose-vietnam", "name": "Hell Let Loose: Vietnam", @@ -321206,6 +330216,11 @@ "name": "Hello Guest: Hello Neighbor 2 pre-alpha", "url": "/v1/games/hello-guest-hello-neighbor-2-pre-alpha" }, + { + "slug": "hello-kitty-beauty-salon", + "name": "Hello Kitty Beauty Salon", + "url": "/v1/games/hello-kitty-beauty-salon" + }, { "slug": "hello-kitty-birthday-adventures", "name": "Hello Kitty Birthday Adventures", @@ -321486,11 +330501,26 @@ "name": "Hellpoint", "url": "/v1/games/hellpoint" }, + { + "slug": "hellpoint-ultimate-edition", + "name": "Hellpoint Ultimate Edition", + "url": "/v1/games/hellpoint-ultimate-edition" + }, + { + "slug": "hellpoint-blue-sun", + "name": "Hellpoint: Blue Sun", + "url": "/v1/games/hellpoint-blue-sun" + }, { "slug": "hellpoint-the-thespian-feast", "name": "Hellpoint: The Thespian Feast", "url": "/v1/games/hellpoint-the-thespian-feast" }, + { + "slug": "hellraid", + "name": "Hellraid", + "url": "/v1/games/hellraid" + }, { "slug": "hellraider", "name": "Hellraider", @@ -321966,6 +330996,16 @@ "name": "Hentai - Area 51", "url": "/v1/games/hentai-area-51" }, + { + "slug": "hentai-jail-dlc", + "name": "Hentai - Jail DLC", + "url": "/v1/games/hentai-jail-dlc" + }, + { + "slug": "hentai-soundtrack-of-the-year-soty", + "name": "Hentai - Soundtrack Of The Year (SOTY)", + "url": "/v1/games/hentai-soundtrack-of-the-year-soty" + }, { "slug": "hentai-3018", "name": "Hentai 3018", @@ -322031,6 +331071,21 @@ "name": "Hentai Aori", "url": "/v1/games/hentai-aori" }, + { + "slug": "hentai-area-51-adult-patch-18", + "name": "Hentai Area 51 - Adult Patch 18+", + "url": "/v1/games/hentai-area-51-adult-patch-18" + }, + { + "slug": "hentai-area-51-soundtrack", + "name": "Hentai Area 51 - Soundtrack", + "url": "/v1/games/hentai-area-51-soundtrack" + }, + { + "slug": "hentai-arena-adult-patch-18", + "name": "Hentai Arena - Adult Patch 18+", + "url": "/v1/games/hentai-arena-adult-patch-18" + }, { "slug": "hentai-arena-battle-royale", "name": "Hentai Arena | Battle Royale", @@ -322311,6 +331366,11 @@ "name": "Hentai Crush - Director's Cut", "url": "/v1/games/hentai-crush-director-s-cut" }, + { + "slug": "hentai-crush-uncensored-18", + "name": "Hentai Crush - Uncensored (18+)", + "url": "/v1/games/hentai-crush-uncensored-18" + }, { "slug": "hentai-crystals", "name": "Hentai Crystals", @@ -322541,6 +331601,11 @@ "name": "Hentai Girl Division", "url": "/v1/games/hentai-girl-division" }, + { + "slug": "hentai-girl-division-uncensored-18", + "name": "Hentai Girl Division Uncensored (18+)", + "url": "/v1/games/hentai-girl-division-uncensored-18" + }, { "slug": "hentai-girl-fantasy", "name": "Hentai Girl Fantasy", @@ -323001,11 +332066,26 @@ "name": "Hentai Nazi", "url": "/v1/games/hentai-nazi" }, + { + "slug": "hentai-nazi-adult-patch-18", + "name": "Hentai Nazi - Adult Patch 18+", + "url": "/v1/games/hentai-nazi-adult-patch-18" + }, { "slug": "hentai-nazi-hitler-is-back", "name": "Hentai Nazi HITLER is Back", "url": "/v1/games/hentai-nazi-hitler-is-back" }, + { + "slug": "hentai-nazi-hitler-is-back-adult-patch-18", + "name": "Hentai Nazi HITLER is Back - Adult Patch 18+", + "url": "/v1/games/hentai-nazi-hitler-is-back-adult-patch-18" + }, + { + "slug": "hentai-nazi-stalin-edition", + "name": "Hentai Nazi Stalin Edition", + "url": "/v1/games/hentai-nazi-stalin-edition" + }, { "slug": "hentai-nazi-battle-of-japan", "name": "Hentai Nazi: Battle of Japan", @@ -323016,6 +332096,11 @@ "name": "Hentai Neighbors", "url": "/v1/games/hentai-neighbors" }, + { + "slug": "hentai-neighbors-sweet-summer-18-uncensored", + "name": "Hentai Neighbors - Sweet Summer (18+ Uncensored)", + "url": "/v1/games/hentai-neighbors-sweet-summer-18-uncensored" + }, { "slug": "hentai-neko", "name": "Hentai Neko", @@ -323991,6 +333076,11 @@ "name": "Heptic Arena", "url": "/v1/games/heptic-arena" }, + { + "slug": "her-challenges", + "name": "Her Challenges", + "url": "/v1/games/her-challenges" + }, { "slug": "her-feet", "name": "Her Feet", @@ -324351,6 +333441,11 @@ "name": "Heretic", "url": "/v1/games/heretic" }, + { + "slug": "heretic-hexen-q126186926", + "name": "Heretic & Hexen", + "url": "/v1/games/heretic-hexen-q126186926" + }, { "slug": "heretic-hexen", "name": "Heretic + Hexen", @@ -324361,6 +333456,11 @@ "name": "Heretic II", "url": "/v1/games/heretic-ii" }, + { + "slug": "heretic-ii-the-siege", + "name": "Heretic II: The Siege", + "url": "/v1/games/heretic-ii-the-siege" + }, { "slug": "heretic-kingdoms-reluctant-hero", "name": "Heretic Kingdoms: Reluctant Hero", @@ -324926,6 +334026,11 @@ "name": "Hero by Chance", "url": "/v1/games/hero-by-chance" }, + { + "slug": "hero-by-chance-lady-man", + "name": "Hero by Chance: Lady Man", + "url": "/v1/games/hero-by-chance-lady-man" + }, { "slug": "hero-for-hire", "name": "Hero for Hire", @@ -325281,11 +334386,26 @@ "name": "Heroes Arena", "url": "/v1/games/heroes-arena" }, + { + "slug": "heroes-chronicles", + "name": "Heroes Chronicles", + "url": "/v1/games/heroes-chronicles" + }, + { + "slug": "heroes-chronicles-masters-of-the-elements", + "name": "Heroes Chronicles: Masters of the Elements", + "url": "/v1/games/heroes-chronicles-masters-of-the-elements" + }, { "slug": "heroes-chronicles-the-fiery-moon", "name": "Heroes Chronicles: The Fiery Moon", "url": "/v1/games/heroes-chronicles-the-fiery-moon" }, + { + "slug": "heroes-chronicles-the-sword-of-frost", + "name": "Heroes Chronicles: The Sword of Frost", + "url": "/v1/games/heroes-chronicles-the-sword-of-frost" + }, { "slug": "heroes-city-superman-edition", "name": "Heroes City Superman Edition", @@ -325406,16 +334526,46 @@ "name": "Heroes Rise: HeroFall", "url": "/v1/games/heroes-rise-herofall" }, + { + "slug": "heroes-rise-herofall-ad-space", + "name": "Heroes Rise: HeroFall - Ad Space", + "url": "/v1/games/heroes-rise-herofall-ad-space" + }, + { + "slug": "heroes-rise-herofall-perfect-legend-guide", + "name": "Heroes Rise: HeroFall - Perfect Legend Guide", + "url": "/v1/games/heroes-rise-herofall-perfect-legend-guide" + }, + { + "slug": "heroes-rise-herofall-warning-system", + "name": "Heroes Rise: HeroFall - Warning System", + "url": "/v1/games/heroes-rise-herofall-warning-system" + }, { "slug": "heroes-rise-the-hero-project", "name": "Heroes Rise: The Hero Project", "url": "/v1/games/heroes-rise-the-hero-project" }, + { + "slug": "heroes-rise-the-hero-project-perfect-legend-guide", + "name": "Heroes Rise: The Hero Project - Perfect Legend Guide", + "url": "/v1/games/heroes-rise-the-hero-project-perfect-legend-guide" + }, + { + "slug": "heroes-rise-the-hero-project-warning-system", + "name": "Heroes Rise: The Hero Project - Warning System", + "url": "/v1/games/heroes-rise-the-hero-project-warning-system" + }, { "slug": "heroes-rise-the-prodigy", "name": "Heroes Rise: The Prodigy", "url": "/v1/games/heroes-rise-the-prodigy" }, + { + "slug": "heroes-rise-the-prodigy-perfect-legend-guide", + "name": "Heroes Rise: The Prodigy - Perfect Legend Guide", + "url": "/v1/games/heroes-rise-the-prodigy-perfect-legend-guide" + }, { "slug": "heroes-stand-tall-m-e-t-a", "name": "Heroes Stand Tall: M.E.T.A", @@ -325726,11 +334876,26 @@ "name": "Heroes of Might and Magic II", "url": "/v1/games/heroes-of-might-and-magic-ii" }, + { + "slug": "heroes-of-might-and-magic-ii-the-price-of-loyalty", + "name": "Heroes of Might and Magic II: The Price of Loyalty", + "url": "/v1/games/heroes-of-might-and-magic-ii-the-price-of-loyalty" + }, { "slug": "heroes-of-might-and-magic-iii", "name": "Heroes of Might and Magic III", "url": "/v1/games/heroes-of-might-and-magic-iii" }, + { + "slug": "heroes-of-might-and-magic-iii-armageddon-s-blade", + "name": "Heroes of Might and Magic III: Armageddon's Blade", + "url": "/v1/games/heroes-of-might-and-magic-iii-armageddon-s-blade" + }, + { + "slug": "heroes-of-might-and-magic-iii-complete", + "name": "Heroes of Might and Magic III: Complete", + "url": "/v1/games/heroes-of-might-and-magic-iii-complete" + }, { "slug": "heroes-of-might-and-magic-iii-in-the-wake-of-gods", "name": "Heroes of Might and Magic III: In the Wake of Gods", @@ -325746,11 +334911,31 @@ "name": "Heroes of Might and Magic IV", "url": "/v1/games/heroes-of-might-and-magic-iv" }, + { + "slug": "heroes-of-might-and-magic-iv-the-gathering-storm", + "name": "Heroes of Might and Magic IV: The Gathering Storm", + "url": "/v1/games/heroes-of-might-and-magic-iv-the-gathering-storm" + }, + { + "slug": "heroes-of-might-and-magic-iv-winds-of-war", + "name": "Heroes of Might and Magic IV: Winds of War", + "url": "/v1/games/heroes-of-might-and-magic-iv-winds-of-war" + }, { "slug": "heroes-of-might-and-magic-online", "name": "Heroes of Might and Magic Online", "url": "/v1/games/heroes-of-might-and-magic-online" }, + { + "slug": "heroes-of-might-and-magic-v", + "name": "Heroes of Might and Magic V", + "url": "/v1/games/heroes-of-might-and-magic-v" + }, + { + "slug": "heroes-of-might-and-magic-v-hammers-of-fate", + "name": "Heroes of Might and Magic V: Hammers of Fate", + "url": "/v1/games/heroes-of-might-and-magic-v-hammers-of-fate" + }, { "slug": "heroes-of-might-and-magic-v-tribes-of-the-east", "name": "Heroes of Might and Magic V: Tribes of the East", @@ -326576,6 +335761,11 @@ "name": "Hexagod", "url": "/v1/games/hexagod" }, + { + "slug": "hexagon", + "name": "Hexagon", + "url": "/v1/games/hexagon" + }, { "slug": "hexagon-experiments", "name": "Hexagon Experiments", @@ -326801,11 +335991,21 @@ "name": "Hexen II", "url": "/v1/games/hexen-ii" }, + { + "slug": "hexen-ii-portal-of-praevus", + "name": "Hexen II: Portal of Praevus", + "url": "/v1/games/hexen-ii-portal-of-praevus" + }, { "slug": "hexen-beyond-heretic", "name": "Hexen: Beyond Heretic", "url": "/v1/games/hexen-beyond-heretic" }, + { + "slug": "hexen-beyond-heretic-demo", + "name": "Hexen: Beyond Heretic DEMO", + "url": "/v1/games/hexen-beyond-heretic-demo" + }, { "slug": "hexen-deathkings-of-the-dark-citadel", "name": "Hexen: Deathkings of the Dark Citadel", @@ -327381,11 +336581,26 @@ "name": "Hidden & Dangerous 2", "url": "/v1/games/hidden-dangerous-2" }, + { + "slug": "hidden-dangerous-2-sabre-squadron", + "name": "Hidden & Dangerous 2: Sabre Squadron", + "url": "/v1/games/hidden-dangerous-2-sabre-squadron" + }, + { + "slug": "hidden-dangerous-action-pack", + "name": "Hidden & Dangerous Action Pack", + "url": "/v1/games/hidden-dangerous-action-pack" + }, { "slug": "hidden-dangerous-deluxe", "name": "Hidden & Dangerous Deluxe", "url": "/v1/games/hidden-dangerous-deluxe" }, + { + "slug": "hidden-dangerous-fight-for-freedom", + "name": "Hidden & Dangerous: Fight For Freedom", + "url": "/v1/games/hidden-dangerous-fight-for-freedom" + }, { "slug": "hidden-agenda-q30612014", "name": "Hidden Agenda", @@ -327796,6 +337011,11 @@ "name": "Hidden Dragon: Legend", "url": "/v1/games/hidden-dragon-legend" }, + { + "slug": "hidden-dreams", + "name": "Hidden Dreams", + "url": "/v1/games/hidden-dreams" + }, { "slug": "hidden-dungeon-top-down-3d", "name": "Hidden Dungeon Top-Down 3D", @@ -327906,6 +337126,11 @@ "name": "Hidden Folks", "url": "/v1/games/hidden-folks" }, + { + "slug": "hidden-folks-q110453487", + "name": "Hidden Folks+", + "url": "/v1/games/hidden-folks-q110453487" + }, { "slug": "hidden-forest", "name": "Hidden Forest", @@ -328341,11 +337566,21 @@ "name": "Hidden Shapes Lovely Cats - Jigsaw Puzzle Game", "url": "/v1/games/hidden-shapes-lovely-cats-jigsaw-puzzle-game" }, + { + "slug": "hidden-shapes-animals-lovely-cats", + "name": "Hidden Shapes: Animals + Lovely Cats", + "url": "/v1/games/hidden-shapes-animals-lovely-cats" + }, { "slug": "hidden-shapes-black-skull", "name": "Hidden Shapes: Black Skull", "url": "/v1/games/hidden-shapes-black-skull" }, + { + "slug": "hidden-shapes-black-skull-old-west", + "name": "Hidden Shapes: Black Skull + Old West", + "url": "/v1/games/hidden-shapes-black-skull-old-west" + }, { "slug": "hidden-shapes-cat-realm", "name": "Hidden Shapes: Cat Realm", @@ -328411,6 +337646,31 @@ "name": "Hidden Through Time", "url": "/v1/games/hidden-through-time" }, + { + "slug": "hidden-through-time-aztec-rituals", + "name": "Hidden Through Time - Aztec Rituals", + "url": "/v1/games/hidden-through-time-aztec-rituals" + }, + { + "slug": "hidden-through-time-legends-of-japan", + "name": "Hidden Through Time - Legends of Japan", + "url": "/v1/games/hidden-through-time-legends-of-japan" + }, + { + "slug": "hidden-through-time-pirate-treasures", + "name": "Hidden Through Time - Pirate Treasures", + "url": "/v1/games/hidden-through-time-pirate-treasures" + }, + { + "slug": "hidden-through-time-road-to-rome", + "name": "Hidden Through Time - Road to Rome", + "url": "/v1/games/hidden-through-time-road-to-rome" + }, + { + "slug": "hidden-through-time-viking-tales", + "name": "Hidden Through Time - Viking Tales", + "url": "/v1/games/hidden-through-time-viking-tales" + }, { "slug": "hidden-through-time-2-discovery", "name": "Hidden Through Time 2: Discovery", @@ -329806,6 +339066,31 @@ "name": "Higurashi no Naku Koro ni Jan", "url": "/v1/games/higurashi-no-naku-koro-ni-jan" }, + { + "slug": "higurashi-no-naku-koro-ni-kai", + "name": "Higurashi no Naku Koro ni Kai", + "url": "/v1/games/higurashi-no-naku-koro-ni-kai" + }, + { + "slug": "higurashi-no-naku-koro-ni-kai-meakashi-hen", + "name": "Higurashi no Naku Koro ni Kai: Meakashi-hen", + "url": "/v1/games/higurashi-no-naku-koro-ni-kai-meakashi-hen" + }, + { + "slug": "higurashi-no-naku-koro-ni-kai-matsuribayashi-hen", + "name": "Higurashi no Naku Koro ni Kai: Matsuribayashi-hen", + "url": "/v1/games/higurashi-no-naku-koro-ni-kai-matsuribayashi-hen" + }, + { + "slug": "higurashi-no-naku-koro-ni-kai-minagoroshi-hen", + "name": "Higurashi no Naku Koro ni Kai: Minagoroshi-hen", + "url": "/v1/games/higurashi-no-naku-koro-ni-kai-minagoroshi-hen" + }, + { + "slug": "higurashi-no-naku-koro-ni-kai-tsumihoroboshi-hen", + "name": "Higurashi no Naku Koro ni Kai: Tsumihoroboshi-hen", + "url": "/v1/games/higurashi-no-naku-koro-ni-kai-tsumihoroboshi-hen" + }, { "slug": "higurashi-no-naku-koro-ni-matsuri", "name": "Higurashi no Naku Koro ni Matsuri", @@ -329826,6 +339111,26 @@ "name": "Higurashi no Naku Koro ni Tactics", "url": "/v1/games/higurashi-no-naku-koro-ni-tactics" }, + { + "slug": "higurashi-no-naku-koro-ni-himatsubushi-hen", + "name": "Higurashi no Naku Koro ni: Himatsubushi-hen", + "url": "/v1/games/higurashi-no-naku-koro-ni-himatsubushi-hen" + }, + { + "slug": "higurashi-no-naku-koro-ni-onikakushi-hen", + "name": "Higurashi no Naku Koro ni: Onikakushi-hen", + "url": "/v1/games/higurashi-no-naku-koro-ni-onikakushi-hen" + }, + { + "slug": "higurashi-no-naku-koro-ni-tatarigoroshi-hen", + "name": "Higurashi no Naku Koro ni: Tatarigoroshi-hen", + "url": "/v1/games/higurashi-no-naku-koro-ni-tatarigoroshi-hen" + }, + { + "slug": "higurashi-no-naku-koro-ni-watanagashi-hen", + "name": "Higurashi no Naku Koro ni: Watanagashi-hen", + "url": "/v1/games/higurashi-no-naku-koro-ni-watanagashi-hen" + }, { "slug": "hiiro", "name": "Hiiro", @@ -329996,6 +339301,11 @@ "name": "Hill Climb Racing 2", "url": "/v1/games/hill-climb-racing-2" }, + { + "slug": "hill-climb-racing-q118235025", + "name": "Hill Climb Racing+", + "url": "/v1/games/hill-climb-racing-q118235025" + }, { "slug": "hill-dig-the-mysterious-signal", "name": "Hill Dig: The Mysterious Signal", @@ -330106,6 +339416,11 @@ "name": "Him & Her 3", "url": "/v1/games/him-her-3" }, + { + "slug": "him-her-collection", + "name": "Him & Her Collection", + "url": "/v1/games/him-her-collection" + }, { "slug": "him-and-i", "name": "Him and I", @@ -330596,6 +339911,11 @@ "name": "Hisho x Hisho", "url": "/v1/games/hisho-x-hisho" }, + { + "slug": "hishou-same-same-same", + "name": "Hishou Same! Same! Same!", + "url": "/v1/games/hishou-same-same-same" + }, { "slug": "hispania", "name": "Hispania", @@ -330911,6 +340231,11 @@ "name": "Hitmaker Tycoon", "url": "/v1/games/hitmaker-tycoon" }, + { + "slug": "hitman-game-of-the-year-edition", + "name": "Hitman - Game of the Year Edition", + "url": "/v1/games/hitman-game-of-the-year-edition" + }, { "slug": "hitman-2-silent-assassin", "name": "Hitman 2: Silent Assassin", @@ -330931,6 +340256,21 @@ "name": "Hitman Go", "url": "/v1/games/hitman-go" }, + { + "slug": "hitman-hd-enhanced-collection", + "name": "Hitman HD Enhanced Collection", + "url": "/v1/games/hitman-hd-enhanced-collection" + }, + { + "slug": "hitman-trilogy", + "name": "Hitman Trilogy", + "url": "/v1/games/hitman-trilogy" + }, + { + "slug": "hitman-world-of-assassination", + "name": "Hitman World of Assassination", + "url": "/v1/games/hitman-world-of-assassination" + }, { "slug": "hitman-absolution", "name": "Hitman: Absolution", @@ -330946,6 +340286,11 @@ "name": "Hitman: Blood Money Reprisal", "url": "/v1/games/hitman-blood-money-reprisal" }, + { + "slug": "hitman-hd-trilogy", + "name": "Hitman: HD Trilogy", + "url": "/v1/games/hitman-hd-trilogy" + }, { "slug": "hitman-sniper", "name": "Hitman: Sniper", @@ -331066,6 +340411,11 @@ "name": "Hits For Six Volume 8", "url": "/v1/games/hits-for-six-volume-8" }, + { + "slug": "hits-vol-1", + "name": "Hits! Vol 1", + "url": "/v1/games/hits-vol-1" + }, { "slug": "hitstream", "name": "Hitstream", @@ -331491,6 +340841,11 @@ "name": "Hocus Pocus", "url": "/v1/games/hocus-pocus" }, + { + "slug": "hocus-pocus-doom", + "name": "Hocus Pocus Doom", + "url": "/v1/games/hocus-pocus-doom" + }, { "slug": "hocus-potions", "name": "Hocus Potions", @@ -332306,6 +341661,11 @@ "name": "Hollywood Animal", "url": "/v1/games/hollywood-animal" }, + { + "slug": "hollywood-collection-q124029760", + "name": "Hollywood Collection", + "url": "/v1/games/hollywood-collection-q124029760" + }, { "slug": "hollywood-collection", "name": "Hollywood Collection", @@ -333031,6 +342391,11 @@ "name": "Home Run Battle 3D", "url": "/v1/games/home-run-battle-3d" }, + { + "slug": "home-run-derby-q128014886", + "name": "Home Run Derby", + "url": "/v1/games/home-run-derby-q128014886" + }, { "slug": "home-run-derby", "name": "Home Run Derby", @@ -333356,6 +342721,11 @@ "name": "Homestar Portable", "url": "/v1/games/homestar-portable" }, + { + "slug": "homestar-ruiner", + "name": "Homestar Ruiner", + "url": "/v1/games/homestar-ruiner" + }, { "slug": "homestar-runner-halloween-hide-n-seek-q122382953", "name": "Homestar Runner: Halloween Hide n' Seek", @@ -333451,6 +342821,16 @@ "name": "Homeworld: Deserts of Kharak", "url": "/v1/games/homeworld-deserts-of-kharak" }, + { + "slug": "homeworld-deserts-of-kharak-khaaneph-fleet-pack", + "name": "Homeworld: Deserts of Kharak - Khaaneph Fleet Pack", + "url": "/v1/games/homeworld-deserts-of-kharak-khaaneph-fleet-pack" + }, + { + "slug": "homeworld-deserts-of-kharak-soban-fleet-pack", + "name": "Homeworld: Deserts of Kharak - Soban Fleet Pack", + "url": "/v1/games/homeworld-deserts-of-kharak-soban-fleet-pack" + }, { "slug": "homeworld-vast-reaches", "name": "Homeworld: Vast Reaches", @@ -333471,6 +342851,11 @@ "name": "Homicipher", "url": "/v1/games/homicipher" }, + { + "slug": "homicipher-demo", + "name": "Homicipher: Demo", + "url": "/v1/games/homicipher-demo" + }, { "slug": "homie-rollerz", "name": "Homie Rollerz", @@ -333701,11 +343086,21 @@ "name": "Honeymancer", "url": "/v1/games/honeymancer" }, + { + "slug": "honeymoon", + "name": "Honeymoon", + "url": "/v1/games/honeymoon" + }, { "slug": "honeymoon-mystery-journey", "name": "Honeymoon : Mystery Journey", "url": "/v1/games/honeymoon-mystery-journey" }, + { + "slug": "honeywood", + "name": "Honeywood", + "url": "/v1/games/honeywood" + }, { "slug": "hong-gildong-jeon", "name": "Hong Gildong-jeon", @@ -334586,6 +343981,11 @@ "name": "Hopkins FBI", "url": "/v1/games/hopkins-fbi" }, + { + "slug": "hopkins-fbi-2-don-t-cry-baby", + "name": "Hopkins FBI 2: Don't Cry, Baby", + "url": "/v1/games/hopkins-fbi-2-don-t-cry-baby" + }, { "slug": "hoplegs", "name": "Hoplegs", @@ -334956,6 +344356,11 @@ "name": "Horizon Springs", "url": "/v1/games/horizon-springs" }, + { + "slug": "horizon-steel-frontiers", + "name": "Horizon Steel Frontiers", + "url": "/v1/games/horizon-steel-frontiers" + }, { "slug": "horizon-to-crinoa-have-faith-in-radiance-prototype", "name": "Horizon To Crinoa: Have Faith in Radiance -Prototype-", @@ -334981,11 +344386,21 @@ "name": "Horizon Zero Dawn", "url": "/v1/games/horizon-zero-dawn" }, + { + "slug": "horizon-zero-dawn-complete-edition", + "name": "Horizon Zero Dawn Complete Edition", + "url": "/v1/games/horizon-zero-dawn-complete-edition" + }, { "slug": "horizon-zero-dawn-remastered", "name": "Horizon Zero Dawn Remastered", "url": "/v1/games/horizon-zero-dawn-remastered" }, + { + "slug": "horizon-zero-dawn-the-frozen-wilds", + "name": "Horizon Zero Dawn: The Frozen Wilds", + "url": "/v1/games/horizon-zero-dawn-the-frozen-wilds" + }, { "slug": "horizon-of-horus", "name": "Horizon of Horus", @@ -335061,6 +344476,11 @@ "name": "Hornet Virus: Steel Alcimus II", "url": "/v1/games/hornet-virus-steel-alcimus-ii" }, + { + "slug": "hornets", + "name": "Hornets", + "url": "/v1/games/hornets" + }, { "slug": "horns-of-fear", "name": "Horns of Fear", @@ -335276,6 +344696,11 @@ "name": "Horripilant", "url": "/v1/games/horripilant" }, + { + "slug": "horror-sports-pinball", + "name": "Horror & Sports Pinball", + "url": "/v1/games/horror-sports-pinball" + }, { "slug": "horror-adventure", "name": "Horror Adventure", @@ -335436,6 +344861,11 @@ "name": "Horror Office", "url": "/v1/games/horror-office" }, + { + "slug": "horror-pack", + "name": "Horror Pack", + "url": "/v1/games/horror-pack" + }, { "slug": "horror-prison", "name": "Horror Prison", @@ -335646,6 +345076,11 @@ "name": "Horse Adventure: Tale of Etria", "url": "/v1/games/horse-adventure-tale-of-etria" }, + { + "slug": "horse-armor-pack", + "name": "Horse Armor Pack", + "url": "/v1/games/horse-armor-pack" + }, { "slug": "horse-club-adventures", "name": "Horse Club Adventures", @@ -335781,6 +345216,11 @@ "name": "Horse and Go Seek", "url": "/v1/games/horse-and-go-seek" }, + { + "slug": "horse-racing-machine", + "name": "Horse racing machine", + "url": "/v1/games/horse-racing-machine" + }, { "slug": "horseland", "name": "Horseland", @@ -336211,6 +345651,11 @@ "name": "Hot Cocoa Magic!", "url": "/v1/games/hot-cocoa-magic" }, + { + "slug": "hot-coffee", + "name": "Hot Coffee", + "url": "/v1/games/hot-coffee" + }, { "slug": "hot-dawg", "name": "Hot Dawg", @@ -336536,6 +345981,11 @@ "name": "Hot Shocker", "url": "/v1/games/hot-shocker" }, + { + "slug": "hot-shot", + "name": "Hot Shot", + "url": "/v1/games/hot-shot" + }, { "slug": "hot-shot-burn", "name": "Hot Shot Burn", @@ -337246,6 +346696,11 @@ "name": "Hotline Miami 2: Wrong Number Digital Comic", "url": "/v1/games/hotline-miami-2-wrong-number-digital-comic" }, + { + "slug": "hotline-miami-collection", + "name": "Hotline Miami Collection", + "url": "/v1/games/hotline-miami-collection" + }, { "slug": "hotloop", "name": "Hotloop", @@ -338516,6 +347971,11 @@ "name": "Howdy, Jacob!", "url": "/v1/games/howdy-jacob" }, + { + "slug": "howl-q116873461", + "name": "Howl", + "url": "/v1/games/howl-q116873461" + }, { "slug": "howl", "name": "Howl", @@ -339286,6 +348746,16 @@ "name": "Human: Fall Flat", "url": "/v1/games/human-fall-flat" }, + { + "slug": "human-fall-flat-4-pack", + "name": "Human: Fall Flat 4-Pack", + "url": "/v1/games/human-fall-flat-4-pack" + }, + { + "slug": "human-fall-flat-q117357432", + "name": "Human: Fall Flat+", + "url": "/v1/games/human-fall-flat-q117357432" + }, { "slug": "humanica", "name": "Humanica", @@ -339341,6 +348811,11 @@ "name": "Humankind in a nutshell", "url": "/v1/games/humankind-in-a-nutshell" }, + { + "slug": "humankind-cultures-of-africa", + "name": "Humankind: Cultures of Africa", + "url": "/v1/games/humankind-cultures-of-africa" + }, { "slug": "humanless", "name": "Humanless", @@ -339426,6 +348901,16 @@ "name": "Humble Holiday Horrors", "url": "/v1/games/humble-holiday-horrors" }, + { + "slug": "humble-indie-bundle", + "name": "Humble Indie Bundle", + "url": "/v1/games/humble-indie-bundle" + }, + { + "slug": "humble-indie-bundle-2", + "name": "Humble Indie Bundle 2", + "url": "/v1/games/humble-indie-bundle-2" + }, { "slug": "humble-pie", "name": "Humble Pie", @@ -339821,11 +349306,26 @@ "name": "HuniePop", "url": "/v1/games/huniepop" }, + { + "slug": "huniepop-deluxe-edition-upgrade", + "name": "HuniePop - Deluxe Edition Upgrade", + "url": "/v1/games/huniepop-deluxe-edition-upgrade" + }, { "slug": "huniepop-2-double-date", "name": "HuniePop 2: Double Date", "url": "/v1/games/huniepop-2-double-date" }, + { + "slug": "huniepop-deluxe-edition", + "name": "HuniePop Deluxe Edition", + "url": "/v1/games/huniepop-deluxe-edition" + }, + { + "slug": "huniepop-official-digital-art-collection", + "name": "HuniePop Official Digital Art Collection", + "url": "/v1/games/huniepop-official-digital-art-collection" + }, { "slug": "hunkenstein", "name": "Hunkenstein", @@ -341856,6 +351356,11 @@ "name": "Hyperstrix", "url": "/v1/games/hyperstrix" }, + { + "slug": "hypertext-hotel", + "name": "Hypertext Hotel", + "url": "/v1/games/hypertext-hotel" + }, { "slug": "hypertrain", "name": "Hypertrain", @@ -342201,6 +351706,11 @@ "name": "Hōkago no Senpai", "url": "/v1/games/h-kago-no-senpai" }, + { + "slug": "h-ma-hunter-lime-special-collection-vol-1", + "name": "Hōma Hunter Lime: Special Collection Vol. 1", + "url": "/v1/games/h-ma-hunter-lime-special-collection-vol-1" + }, { "slug": "h-ma-hunter-lime-special-collection-vol-2", "name": "Hōma Hunter Lime: Special Collection Vol. 2", @@ -342816,6 +352326,11 @@ "name": "I Hope You Die!", "url": "/v1/games/i-hope-you-die" }, + { + "slug": "i-just-want-to-be-single-season-one", + "name": "I Just Want to be Single!! Season One", + "url": "/v1/games/i-just-want-to-be-single-season-one" + }, { "slug": "i-know-your-address", "name": "I KNOW YOUR ADDRESS", @@ -343141,6 +352656,16 @@ "name": "I Touched Tips with a Femboy", "url": "/v1/games/i-touched-tips-with-a-femboy" }, + { + "slug": "i-will-be-there-ost-edition", + "name": "I WILL BE THERE - OST Edition", + "url": "/v1/games/i-will-be-there-ost-edition" + }, + { + "slug": "i-will-be-there-original-soundtrack", + "name": "I WILL BE THERE - Original Soundtrack", + "url": "/v1/games/i-will-be-there-original-soundtrack" + }, { "slug": "i-walk-among-zombies-vol-0", "name": "I Walk Among Zombies Vol. 0", @@ -343321,6 +352846,11 @@ "name": "I Will Be There", "url": "/v1/games/i-will-be-there" }, + { + "slug": "i-will-be-there-demo", + "name": "I Will Be There Demo", + "url": "/v1/games/i-will-be-there-demo" + }, { "slug": "i-will-be-your-eyes", "name": "I Will Be Your Eyes", @@ -343976,6 +353506,11 @@ "name": "I saw IT", "url": "/v1/games/i-saw-it" }, + { + "slug": "i-smoke-weed", + "name": "I smoke weed", + "url": "/v1/games/i-smoke-weed" + }, { "slug": "i-took-away-my-idol-friend-s-virginity-and-did-something-similar-to-ntr", "name": "I took away my idol friend's virginity,and did something similar to NTR", @@ -344416,6 +353951,16 @@ "name": "I, Gladiator", "url": "/v1/games/i-gladiator" }, + { + "slug": "i-gladiator-kolhid-sword", + "name": "I, Gladiator - Kolhid Sword", + "url": "/v1/games/i-gladiator-kolhid-sword" + }, + { + "slug": "i-gladiator-soundtracks", + "name": "I, Gladiator - Soundtracks", + "url": "/v1/games/i-gladiator-soundtracks" + }, { "slug": "i-hope", "name": "I, Hope", @@ -344516,6 +354061,11 @@ "name": "I.F.O", "url": "/v1/games/i-f-o" }, + { + "slug": "i-g-i-origins", + "name": "I.G.I. Origins", + "url": "/v1/games/i-g-i-origins" + }, { "slug": "i-g-i-2-covert-strike", "name": "I.G.I.-2: Covert Strike", @@ -344946,6 +354496,11 @@ "name": "IL DIVINO: Michelangelo's Sistine Ceiling in VR", "url": "/v1/games/il-divino-michelangelo-s-sistine-ceiling-in-vr" }, + { + "slug": "il-2-sturmovik-1946", + "name": "IL-2 Sturmovik: 1946", + "url": "/v1/games/il-2-sturmovik-1946" + }, { "slug": "il-2-sturmovik-battle-of-stalingrad", "name": "IL-2 Sturmovik: Battle of Stalingrad", @@ -344971,6 +354526,11 @@ "name": "IL-2 Sturmovik: Forgotten Battles", "url": "/v1/games/il-2-sturmovik-forgotten-battles" }, + { + "slug": "il-2-sturmovik-forgotten-battles-ace-expansion-pack", + "name": "IL-2 Sturmovik: Forgotten Battles - Ace Expansion Pack", + "url": "/v1/games/il-2-sturmovik-forgotten-battles-ace-expansion-pack" + }, { "slug": "il-2-sturmovik-great-battles", "name": "IL-2 Sturmovik: Great Battles", @@ -345386,6 +354946,11 @@ "name": "INKS.", "url": "/v1/games/inks" }, + { + "slug": "inks-q107147746", + "name": "INKS.+", + "url": "/v1/games/inks-q107147746" + }, { "slug": "inmate-survival", "name": "INMATE: Survival", @@ -346051,6 +355616,11 @@ "name": "IVRI", "url": "/v1/games/ivri" }, + { + "slug": "ivry-monado-tracker-for-steamvr", + "name": "IVRy Monado Tracker for SteamVR", + "url": "/v1/games/ivry-monado-tracker-for-steamvr" + }, { "slug": "iwo-bloodbath-in-the-bonins", "name": "IWO: Bloodbath in the Bonins", @@ -346591,6 +356161,16 @@ "name": "Icewind Dale: Enhanced Edition", "url": "/v1/games/icewind-dale-enhanced-edition" }, + { + "slug": "icewind-dale-heart-of-winter", + "name": "Icewind Dale: Heart of Winter", + "url": "/v1/games/icewind-dale-heart-of-winter" + }, + { + "slug": "icewind-dale-heart-of-winter-trials-of-the-luremaster", + "name": "Icewind Dale: Heart of Winter - Trials of the Luremaster", + "url": "/v1/games/icewind-dale-heart-of-winter-trials-of-the-luremaster" + }, { "slug": "icewords", "name": "Icewords", @@ -349551,6 +359131,11 @@ "name": "Imperial Lovers", "url": "/v1/games/imperial-lovers" }, + { + "slug": "imperial-saga", + "name": "Imperial SaGa", + "url": "/v1/games/imperial-saga" + }, { "slug": "imperial-saga-eclipce", "name": "Imperial SaGa Eclipce", @@ -350266,6 +359851,11 @@ "name": "In Good Faith", "url": "/v1/games/in-good-faith" }, + { + "slug": "in-harm-s-way-q17513624", + "name": "In Harm's Way", + "url": "/v1/games/in-harm-s-way-q17513624" + }, { "slug": "in-harm-s-way", "name": "In Harm's Way", @@ -350811,6 +360401,11 @@ "name": "In the Service of Mrs. Claus", "url": "/v1/games/in-the-service-of-mrs-claus" }, + { + "slug": "in-the-valley-of-gods", + "name": "In the Valley of Gods", + "url": "/v1/games/in-the-valley-of-gods" + }, { "slug": "in-the-village-of-grandfather-summer-sun-heat", "name": "In the Village of Grandfather: Summer,Sun,Heat.", @@ -351041,6 +360636,11 @@ "name": "Inazuma Eleven", "url": "/v1/games/inazuma-eleven" }, + { + "slug": "inazuma-eleven-1-2-3-end-mamoru-densetsu", + "name": "Inazuma Eleven 1-2-3!! Endō Mamoru densetsu", + "url": "/v1/games/inazuma-eleven-1-2-3-end-mamoru-densetsu" + }, { "slug": "inazuma-eleven-2", "name": "Inazuma Eleven 2", @@ -351626,6 +361226,11 @@ "name": "Incremental Town RPG", "url": "/v1/games/incremental-town-rpg" }, + { + "slug": "incubation-mission-pack", + "name": "Incubation: Mission Pack", + "url": "/v1/games/incubation-mission-pack" + }, { "slug": "incubation-the-wilderness-missions", "name": "Incubation: The Wilderness Missions", @@ -351961,6 +361566,11 @@ "name": "Indie Pogo", "url": "/v1/games/indie-pogo" }, + { + "slug": "indie-royale", + "name": "Indie Royale", + "url": "/v1/games/indie-royale" + }, { "slug": "indiecalypse", "name": "Indiecalypse", @@ -352181,6 +361791,16 @@ "name": "Industry Giant II", "url": "/v1/games/industry-giant-ii" }, + { + "slug": "industry-giant-ii-1980-2020", + "name": "Industry Giant II: 1980-2020", + "url": "/v1/games/industry-giant-ii-1980-2020" + }, + { + "slug": "industry-giant-expansion-set", + "name": "Industry Giant: Expansion Set", + "url": "/v1/games/industry-giant-expansion-set" + }, { "slug": "industry-idle", "name": "Industry Idle", @@ -353066,6 +362686,11 @@ "name": "Infinite Borders", "url": "/v1/games/infinite-borders" }, + { + "slug": "infinite-breakout-ds", + "name": "Infinite Breakout DS", + "url": "/v1/games/infinite-breakout-ds" + }, { "slug": "infinite-brick-breaker", "name": "Infinite Brick Breaker", @@ -353726,6 +363351,11 @@ "name": "Infinity: HexaDome Tactics", "url": "/v1/games/infinity-hexadome-tactics" }, + { + "slug": "infinity-the-quest-for-earth", + "name": "Infinity: The Quest for Earth", + "url": "/v1/games/infinity-the-quest-for-earth" + }, { "slug": "infinityvr", "name": "InfinityVR", @@ -353976,6 +363606,11 @@ "name": "Initial D Arcade Stage Ver.3", "url": "/v1/games/initial-d-arcade-stage-ver-3" }, + { + "slug": "initial-d-arcade-stage-zero", + "name": "Initial D Arcade Stage Zero", + "url": "/v1/games/initial-d-arcade-stage-zero" + }, { "slug": "initial-d-extreme-stage", "name": "Initial D Extreme Stage", @@ -353991,6 +363626,11 @@ "name": "Initial D Second Stage: Taipingu Kantō Saisoku Purojekuto", "url": "/v1/games/initial-d-second-stage-taipingu-kant-saisoku-purojekuto" }, + { + "slug": "initial-d-the-arcade", + "name": "Initial D The Arcade", + "url": "/v1/games/initial-d-the-arcade" + }, { "slug": "initial-d-another-stage", "name": "Initial D: Another Stage", @@ -354071,6 +363711,11 @@ "name": "Initiation", "url": "/v1/games/initiation" }, + { + "slug": "initiation-station", + "name": "Initiation Station", + "url": "/v1/games/initiation-station" + }, { "slug": "initium", "name": "Initium", @@ -355496,6 +365141,11 @@ "name": "Instant Farmer - Logic Puzzle", "url": "/v1/games/instant-farmer-logic-puzzle" }, + { + "slug": "instant-indie-collection", + "name": "Instant Indie Collection", + "url": "/v1/games/instant-indie-collection" + }, { "slug": "instant-jam", "name": "Instant Jam", @@ -355631,6 +365281,11 @@ "name": "Insurgency", "url": "/v1/games/insurgency" }, + { + "slug": "insurgency-modern-infantry-combat", + "name": "Insurgency: Modern Infantry Combat", + "url": "/v1/games/insurgency-modern-infantry-combat" + }, { "slug": "insurgency-sandstorm", "name": "Insurgency: Sandstorm", @@ -355901,6 +365556,11 @@ "name": "Interactive Storybook DS Series 1", "url": "/v1/games/interactive-storybook-ds-series-1" }, + { + "slug": "interactive-web-stories", + "name": "Interactive web stories", + "url": "/v1/games/interactive-web-stories" + }, { "slug": "interactivity-the-interactive-experience", "name": "Interactivity: The Interactive Experience", @@ -356236,6 +365896,11 @@ "name": "International Cup '94", "url": "/v1/games/international-cup-94" }, + { + "slug": "international-doom", + "name": "International Doom", + "url": "/v1/games/international-doom" + }, { "slug": "international-golf", "name": "International Golf", @@ -356521,6 +366186,11 @@ "name": "Internet Court", "url": "/v1/games/internet-court" }, + { + "slug": "internet-diplomacy", + "name": "Internet Diplomacy", + "url": "/v1/games/internet-diplomacy" + }, { "slug": "internet-entrepreneurship-simulator", "name": "Internet Entrepreneurship Simulator", @@ -356646,6 +366316,11 @@ "name": "Interstate '76", "url": "/v1/games/interstate-76" }, + { + "slug": "interstate-76-nitro-pack", + "name": "Interstate '76 Nitro Pack", + "url": "/v1/games/interstate-76-nitro-pack" + }, { "slug": "interstate-82", "name": "Interstate '82", @@ -357591,6 +367266,16 @@ "name": "Invader Terminator", "url": "/v1/games/invader-terminator" }, + { + "slug": "invader-zim-dib-s-nanochase", + "name": "Invader Zim: Dib's Nanochase", + "url": "/v1/games/invader-zim-dib-s-nanochase" + }, + { + "slug": "invader-zim-in-sanitation", + "name": "Invader Zim: In-Sanitation", + "url": "/v1/games/invader-zim-in-sanitation" + }, { "slug": "invadercraft", "name": "InvaderCraft", @@ -357706,6 +367391,11 @@ "name": "Invasion", "url": "/v1/games/invasion-q52685075" }, + { + "slug": "invasion-q63247569", + "name": "Invasion", + "url": "/v1/games/invasion-q63247569" + }, { "slug": "invasion-q74069549", "name": "Invasion", @@ -358081,6 +367771,11 @@ "name": "Invincible Medusa", "url": "/v1/games/invincible-medusa" }, + { + "slug": "invincible-pack", + "name": "Invincible Pack", + "url": "/v1/games/invincible-pack" + }, { "slug": "invincible-presents-atom-eve", "name": "Invincible Presents: Atom Eve", @@ -358256,6 +367951,11 @@ "name": "Inzo", "url": "/v1/games/inzo" }, + { + "slug": "io-q122639777", + "name": "Io", + "url": "/v1/games/io-q122639777" + }, { "slug": "ion-assault", "name": "Ion Assault", @@ -358706,6 +368406,11 @@ "name": "Iron Harvest", "url": "/v1/games/iron-harvest" }, + { + "slug": "iron-harvest-complete-edition", + "name": "Iron Harvest Complete Edition", + "url": "/v1/games/iron-harvest-complete-edition" + }, { "slug": "iron-heart", "name": "Iron Heart", @@ -358801,6 +368506,11 @@ "name": "Iron Marines Invasion", "url": "/v1/games/iron-marines-invasion" }, + { + "slug": "iron-marines-q118235269", + "name": "Iron Marines+", + "url": "/v1/games/iron-marines-q118235269" + }, { "slug": "iron-meat", "name": "Iron Meat", @@ -359856,6 +369566,11 @@ "name": "Island Robot Farm", "url": "/v1/games/island-robot-farm" }, + { + "slug": "island-royale", + "name": "Island Royale", + "url": "/v1/games/island-royale" + }, { "slug": "island-rush", "name": "Island Rush", @@ -360491,6 +370206,11 @@ "name": "Isozuri: Ritou Hen", "url": "/v1/games/isozuri-ritou-hen" }, + { + "slug": "israeli-palestinian-conflict-in-video-games", + "name": "Israeli–Palestinian conflict in video games", + "url": "/v1/games/israeli-palestinian-conflict-in-video-games" + }, { "slug": "issho-ni-gohan", "name": "Issho ni Gohan.", @@ -361316,6 +371036,11 @@ "name": "Ivorfall", "url": "/v1/games/ivorfall" }, + { + "slug": "ivy-park", + "name": "Ivy Park", + "url": "/v1/games/ivy-park" + }, { "slug": "ivy-the-kiwi", "name": "Ivy the Kiwi?", @@ -361361,6 +371086,11 @@ "name": "Ixion", "url": "/v1/games/ixion" }, + { + "slug": "ixion-saga", + "name": "Ixion Saga", + "url": "/v1/games/ixion-saga" + }, { "slug": "iyashi-no-megami-no-marmot", "name": "Iyashi no Megami no Marmot", @@ -361861,6 +371591,11 @@ "name": "JDM: Japanese Drift Master", "url": "/v1/games/jdm-japanese-drift-master" }, + { + "slug": "jdoom", + "name": "JDoom", + "url": "/v1/games/jdoom" + }, { "slug": "jef", "name": "JEF", @@ -362161,6 +371896,11 @@ "name": "JUDGEMENT SILVERSWORD - Resurrection -", "url": "/v1/games/judgement-silversword-resurrection" }, + { + "slug": "juggler-q11309718", + "name": "JUGGLER", + "url": "/v1/games/juggler-q11309718" + }, { "slug": "juicy-ass", "name": "JUICY ASS", @@ -362691,6 +372431,11 @@ "name": "Jack's Labyrinth", "url": "/v1/games/jack-s-labyrinth" }, + { + "slug": "jack-in-a-castle-demo", + "name": "Jack-In-A-Castle Demo", + "url": "/v1/games/jack-in-a-castle-demo" + }, { "slug": "jack-o-lantern-covers-of-darkness", "name": "Jack-O-Lantern Covers of Darkness", @@ -363016,11 +372761,21 @@ "name": "Jagged Alliance", "url": "/v1/games/jagged-alliance" }, + { + "slug": "jagged-alliance-1-gold-edition", + "name": "Jagged Alliance 1: Gold Edition", + "url": "/v1/games/jagged-alliance-1-gold-edition" + }, { "slug": "jagged-alliance-2", "name": "Jagged Alliance 2", "url": "/v1/games/jagged-alliance-2" }, + { + "slug": "jagged-alliance-2-gold", + "name": "Jagged Alliance 2: Gold", + "url": "/v1/games/jagged-alliance-2-gold" + }, { "slug": "jagged-alliance-2-stracciatella", "name": "Jagged Alliance 2: Stracciatella", @@ -363041,6 +372796,11 @@ "name": "Jagged Alliance Online: Reloaded", "url": "/v1/games/jagged-alliance-online-reloaded" }, + { + "slug": "jagged-alliance-world", + "name": "Jagged Alliance World", + "url": "/v1/games/jagged-alliance-world" + }, { "slug": "jagged-alliance-back-in-action", "name": "Jagged Alliance: Back in Action", @@ -363081,6 +372841,11 @@ "name": "Jaguar Bomberman", "url": "/v1/games/jaguar-bomberman" }, + { + "slug": "jaguar-doom", + "name": "Jaguar Doom", + "url": "/v1/games/jaguar-doom" + }, { "slug": "jaguar-suns", "name": "Jaguar Suns", @@ -363131,6 +372896,11 @@ "name": "Jailbirds", "url": "/v1/games/jailbirds" }, + { + "slug": "jailbreak-q97338690", + "name": "Jailbreak", + "url": "/v1/games/jailbreak-q97338690" + }, { "slug": "jailbreak", "name": "Jailbreak", @@ -363166,6 +372936,11 @@ "name": "Jak X: Combat Racing", "url": "/v1/games/jak-x-combat-racing" }, + { + "slug": "jak-and-daxter-collection", + "name": "Jak and Daxter Collection", + "url": "/v1/games/jak-and-daxter-collection" + }, { "slug": "jak-and-daxter-the-lost-frontier", "name": "Jak and Daxter: The Lost Frontier", @@ -363556,6 +373331,11 @@ "name": "Jampa Buggys", "url": "/v1/games/jampa-buggys" }, + { + "slug": "jampack", + "name": "Jampack", + "url": "/v1/games/jampack" + }, { "slug": "jamsouls", "name": "Jamsouls", @@ -363876,6 +373656,11 @@ "name": "Japanese MILF", "url": "/v1/games/japanese-milf" }, + { + "slug": "japanese-nintendo-ds-release-of-chrono-trigger", + "name": "Japanese Nintendo DS Release of Chrono Trigger", + "url": "/v1/games/japanese-nintendo-ds-release-of-chrono-trigger" + }, { "slug": "japanese-psycho", "name": "Japanese Psycho", @@ -364806,6 +374591,11 @@ "name": "Jeopardy! World Tour", "url": "/v1/games/jeopardy-world-tour" }, + { + "slug": "jeopardy-world-tour-q122932578", + "name": "Jeopardy! World Tour+", + "url": "/v1/games/jeopardy-world-tour-q122932578" + }, { "slug": "jera", "name": "Jera", @@ -364846,6 +374636,11 @@ "name": "Jerez's Arena", "url": "/v1/games/jerez-s-arena" }, + { + "slug": "jerez-s-arena-series-bundle", + "name": "Jerez's Arena Series Bundle", + "url": "/v1/games/jerez-s-arena-series-bundle" + }, { "slug": "jerez-s-arena-q127790564", "name": "Jerez's Arena Ⅱ", @@ -364916,6 +374711,11 @@ "name": "Jery Mice vs Cats: Home Invasion", "url": "/v1/games/jery-mice-vs-cats-home-invasion" }, + { + "slug": "jessballds", + "name": "JessballDS", + "url": "/v1/games/jessballds" + }, { "slug": "jessica-deliverson", "name": "Jessica Deliverson", @@ -365516,6 +375316,16 @@ "name": "Jetpack Joyride 2", "url": "/v1/games/jetpack-joyride-2" }, + { + "slug": "jetpack-joyride-deluxe", + "name": "Jetpack Joyride Deluxe", + "url": "/v1/games/jetpack-joyride-deluxe" + }, + { + "slug": "jetpack-joyride-q107342969", + "name": "Jetpack Joyride+", + "url": "/v1/games/jetpack-joyride-q107342969" + }, { "slug": "jetpack-kiwi", "name": "Jetpack Kiwi", @@ -366016,6 +375826,16 @@ "name": "JezzBall Atomic", "url": "/v1/games/jezzball-atomic" }, + { + "slug": "jezzballu", + "name": "JezzBallU", + "url": "/v1/games/jezzballu" + }, + { + "slug": "jezzball-3ds", + "name": "Jezzball 3DS", + "url": "/v1/games/jezzball-3ds" + }, { "slug": "jezzball-classic-deluxe-edition", "name": "Jezzball Classic Deluxe Edition", @@ -366371,6 +376191,11 @@ "name": "Jigsaw Puzzle World Memories", "url": "/v1/games/jigsaw-puzzle-world-memories" }, + { + "slug": "jigsaw-puzzle-by-mobilityware", + "name": "Jigsaw Puzzle by MobilityWare+", + "url": "/v1/games/jigsaw-puzzle-by-mobilityware" + }, { "slug": "jigsaw-puzzle-belgium-through-the-lens", "name": "Jigsaw Puzzle: Belgium Through The Lens", @@ -366716,6 +376541,11 @@ "name": "Jill of the Jungle: Jill Saves the Prince", "url": "/v1/games/jill-of-the-jungle-jill-saves-the-prince" }, + { + "slug": "jill-of-the-jungle-the-complete-trilogy", + "name": "Jill of the Jungle: The Complete Trilogy", + "url": "/v1/games/jill-of-the-jungle-the-complete-trilogy" + }, { "slug": "jillian-michaels-fitness-ultimatum-2011", "name": "Jillian Michaels Fitness Ultimatum 2011", @@ -366856,6 +376686,11 @@ "name": "Jimmy's Super League", "url": "/v1/games/jimmy-s-super-league" }, + { + "slug": "jimmy-s-vendetta", + "name": "Jimmy's Vendetta", + "url": "/v1/games/jimmy-s-vendetta" + }, { "slug": "jimmycraft", "name": "JimmyCraft", @@ -367136,6 +376971,11 @@ "name": "JoJo's Bizarre Adventure: All Star Battle", "url": "/v1/games/jojo-s-bizarre-adventure-all-star-battle" }, + { + "slug": "jojo-s-bizarre-adventure-all-star-battle-r-deluxe-edition", + "name": "JoJo's Bizarre Adventure: All-Star Battle R Deluxe Edition", + "url": "/v1/games/jojo-s-bizarre-adventure-all-star-battle-r-deluxe-edition" + }, { "slug": "jojo-s-bizarre-adventure-diamond-records", "name": "JoJo's Bizarre Adventure: Diamond Records", @@ -367336,6 +377176,11 @@ "name": "Joe Dever's Lone Wolf", "url": "/v1/games/joe-dever-s-lone-wolf" }, + { + "slug": "joe-dever-s-lone-wolf-console-edition", + "name": "Joe Dever's Lone Wolf Console Edition", + "url": "/v1/games/joe-dever-s-lone-wolf-console-edition" + }, { "slug": "joe-dever-s-lone-wolf-hd-remastered", "name": "Joe Dever's Lone Wolf HD Remastered", @@ -367426,6 +377271,11 @@ "name": "Joe's Wrath", "url": "/v1/games/joe-s-wrath" }, + { + "slug": "joequake", + "name": "JoeQuake", + "url": "/v1/games/joequake" + }, { "slug": "joey-kramer-hit-hard", "name": "Joey Kramer Hit Hard", @@ -367756,6 +377606,11 @@ "name": "Joint Operations: Combined Arms Gold", "url": "/v1/games/joint-operations-combined-arms-gold" }, + { + "slug": "joint-operations-escalation", + "name": "Joint Operations: Escalation", + "url": "/v1/games/joint-operations-escalation" + }, { "slug": "joint-operations-typhoon-rising", "name": "Joint Operations: Typhoon Rising", @@ -367776,6 +377631,11 @@ "name": "Joint War", "url": "/v1/games/joint-war" }, + { + "slug": "jojo-s-burger-match", + "name": "Jojo's Burger Match", + "url": "/v1/games/jojo-s-burger-match" + }, { "slug": "joker-order-deckbuilding", "name": "Joker Order: Deckbuilding", @@ -367951,6 +377811,11 @@ "name": "JongRo 3_Street", "url": "/v1/games/jongro-3-street" }, + { + "slug": "jonny-blastoff-and-the-kremling-armada", + "name": "Jonny Blastoff and the Kremling Armada", + "url": "/v1/games/jonny-blastoff-and-the-kremling-armada" + }, { "slug": "jonny-moseley-mad-trix", "name": "Jonny Moseley Mad Trix", @@ -368206,6 +378071,11 @@ "name": "Journey To The Center Of The Earth", "url": "/v1/games/journey-to-the-center-of-the-earth-q135454084" }, + { + "slug": "journey-to-the-savage-planet-employee-of-the-month", + "name": "Journey To The Savage Planet: Employee Of The Month", + "url": "/v1/games/journey-to-the-savage-planet-employee-of-the-month" + }, { "slug": "journey-to-the-wand", "name": "Journey To The Wand", @@ -368696,6 +378566,11 @@ "name": "Ju-on: The Grudge", "url": "/v1/games/ju-on-the-grudge" }, + { + "slug": "jugame", + "name": "JuGame", + "url": "/v1/games/jugame" + }, { "slug": "juventures", "name": "JuVentures", @@ -368891,6 +378766,11 @@ "name": "Juggernauts", "url": "/v1/games/juggernauts" }, + { + "slug": "juggler-q113518288", + "name": "Juggler", + "url": "/v1/games/juggler-q113518288" + }, { "slug": "juggler", "name": "Juggler", @@ -369481,6 +379361,11 @@ "name": "Jump With Dragons", "url": "/v1/games/jump-with-dragons" }, + { + "slug": "jump-and-roll", + "name": "Jump and Roll", + "url": "/v1/games/jump-and-roll" + }, { "slug": "jump-on-clouds", "name": "Jump on clouds", @@ -369831,6 +379716,11 @@ "name": "Jumpfox: Always Running", "url": "/v1/games/jumpfox-always-running" }, + { + "slug": "jumpgate-evolution", + "name": "Jumpgate Evolution", + "url": "/v1/games/jumpgate-evolution" + }, { "slug": "jumpgate-the-reconstruction-initiative", "name": "Jumpgate: The Reconstruction Initiative", @@ -370121,6 +380011,11 @@ "name": "Jumpy Ball Happy Fun Time", "url": "/v1/games/jumpy-ball-happy-fun-time" }, + { + "slug": "jumpy-cat", + "name": "Jumpy Cat", + "url": "/v1/games/jumpy-cat" + }, { "slug": "jumpy-haha", "name": "Jumpy Haha", @@ -370781,6 +380676,11 @@ "name": "Jurassic Park Interactive", "url": "/v1/games/jurassic-park-interactive" }, + { + "slug": "jurassic-park-survival-q123699010", + "name": "Jurassic Park Survival", + "url": "/v1/games/jurassic-park-survival-q123699010" + }, { "slug": "jurassic-park-builder", "name": "Jurassic Park: Builder", @@ -370861,6 +380761,11 @@ "name": "Jurassic World Evolution 2", "url": "/v1/games/jurassic-world-evolution-2" }, + { + "slug": "jurassic-world-evolution-complete-edition", + "name": "Jurassic World Evolution: Complete Edition", + "url": "/v1/games/jurassic-world-evolution-complete-edition" + }, { "slug": "jurassic-world-the-game", "name": "Jurassic World: The Game", @@ -371101,11 +381006,21 @@ "name": "Just Cause 3", "url": "/v1/games/just-cause-3" }, + { + "slug": "just-cause-3-mech-land-assault", + "name": "Just Cause 3: Mech Land Assault", + "url": "/v1/games/just-cause-3-mech-land-assault" + }, { "slug": "just-cause-4", "name": "Just Cause 4", "url": "/v1/games/just-cause-4" }, + { + "slug": "just-cause-demo", + "name": "Just Cause Demo", + "url": "/v1/games/just-cause-demo" + }, { "slug": "just-cause-3-multiplayer-mod", "name": "Just Cause™ 3: Multiplayer Mod", @@ -372731,6 +382646,11 @@ "name": "KERO", "url": "/v1/games/kero" }, + { + "slug": "kfmod", + "name": "KFMod", + "url": "/v1/games/kfmod" + }, { "slug": "kfz", "name": "KFZ", @@ -372926,6 +382846,11 @@ "name": "KING PONG", "url": "/v1/games/king-pong" }, + { + "slug": "king-pulsar", + "name": "KING PULSAR", + "url": "/v1/games/king-pulsar" + }, { "slug": "kingdom-cum", "name": "KINGDOM CUM", @@ -373396,6 +383321,11 @@ "name": "KTGAME", "url": "/v1/games/ktgame" }, + { + "slug": "ktuberling", + "name": "KTuberling", + "url": "/v1/games/ktuberling" + }, { "slug": "kubi-zuka", "name": "KUBI ZUKA", @@ -373646,6 +383576,11 @@ "name": "Kaboom!", "url": "/v1/games/kaboom" }, + { + "slug": "kaboom-the-suicide-bombing-game", + "name": "Kaboom: The Suicide Bombing Game", + "url": "/v1/games/kaboom-the-suicide-bombing-game" + }, { "slug": "kabounce", "name": "Kabounce", @@ -373981,6 +383916,11 @@ "name": "Kaiju Panic", "url": "/v1/games/kaiju-panic" }, + { + "slug": "kaiju-paradise", + "name": "Kaiju Paradise", + "url": "/v1/games/kaiju-paradise" + }, { "slug": "kaiju-princess", "name": "Kaiju Princess", @@ -374026,6 +383966,11 @@ "name": "Kainga: Seeds of Civilization", "url": "/v1/games/kainga-seeds-of-civilization" }, + { + "slug": "kaio-king-of-pirates", + "name": "Kaio: King of Pirates", + "url": "/v1/games/kaio-king-of-pirates" + }, { "slug": "kaion-tale-mmorpg", "name": "Kaion Tale MMORPG", @@ -374096,6 +384041,11 @@ "name": "Kaiserpunk", "url": "/v1/games/kaiserpunk" }, + { + "slug": "kaiserreich", + "name": "Kaiserreich", + "url": "/v1/games/kaiserreich" + }, { "slug": "kaisuo", "name": "Kaisuo", @@ -374351,6 +384301,11 @@ "name": "Kal Online", "url": "/v1/games/kal-online" }, + { + "slug": "kala-hunter-support-class", + "name": "Kala - Hunter (Support Class)", + "url": "/v1/games/kala-hunter-support-class" + }, { "slug": "kalaban", "name": "Kalaban", @@ -374576,6 +384531,11 @@ "name": "Kamen Rider Black: Taiketsu Shadow Moon", "url": "/v1/games/kamen-rider-black-taiketsu-shadow-moon" }, + { + "slug": "kamen-rider-buttoba-soul", + "name": "Kamen Rider Buttoba Soul", + "url": "/v1/games/kamen-rider-buttoba-soul" + }, { "slug": "kamen-rider-city-wars", "name": "Kamen Rider City Wars", @@ -375331,6 +385291,11 @@ "name": "Kao no nai Tsuki - Matsuyoi no Soutsubaki", "url": "/v1/games/kao-no-nai-tsuki-matsuyoi-no-soutsubaki" }, + { + "slug": "kao-the-kangaroo-q110247557", + "name": "Kao the Kangaroo", + "url": "/v1/games/kao-the-kangaroo-q110247557" + }, { "slug": "kao-the-kangaroo-q86351816", "name": "Kao the Kangaroo", @@ -375521,6 +385486,16 @@ "name": "Karamalz Cup", "url": "/v1/games/karamalz-cup" }, + { + "slug": "karamari-hospital", + "name": "Karamari Hospital", + "url": "/v1/games/karamari-hospital" + }, + { + "slug": "karamari-hospital-ost", + "name": "Karamari Hospital OST", + "url": "/v1/games/karamari-hospital-ost" + }, { "slug": "karamaru-chindouchuu", "name": "Karamaru Chindouchuu", @@ -376351,6 +386326,11 @@ "name": "Kat's Run: All Japan K-Car Championship", "url": "/v1/games/kat-s-run-all-japan-k-car-championship" }, + { + "slug": "katago", + "name": "KataGo", + "url": "/v1/games/katago" + }, { "slug": "katagiri-san-is-relying-on-me", "name": "Katagiri-san is relying on me", @@ -377026,6 +387006,11 @@ "name": "Kebabstar", "url": "/v1/games/kebabstar" }, + { + "slug": "kecleon-bazaar", + "name": "Kecleon Bazaar", + "url": "/v1/games/kecleon-bazaar" + }, { "slug": "kedemara-the-orphan-s-ballad-ch-1-4", "name": "Kedemara - The Orphan's Ballad (Ch. 1-4)", @@ -377941,6 +387926,31 @@ "name": "Kentucky Route Zero", "url": "/v1/games/kentucky-route-zero" }, + { + "slug": "kentucky-route-zero-act-i", + "name": "Kentucky Route Zero: Act I", + "url": "/v1/games/kentucky-route-zero-act-i" + }, + { + "slug": "kentucky-route-zero-act-ii", + "name": "Kentucky Route Zero: Act II", + "url": "/v1/games/kentucky-route-zero-act-ii" + }, + { + "slug": "kentucky-route-zero-act-iii", + "name": "Kentucky Route Zero: Act III", + "url": "/v1/games/kentucky-route-zero-act-iii" + }, + { + "slug": "kentucky-route-zero-act-iv", + "name": "Kentucky Route Zero: Act IV", + "url": "/v1/games/kentucky-route-zero-act-iv" + }, + { + "slug": "kentucky-route-zero-act-v", + "name": "Kentucky Route Zero: Act V", + "url": "/v1/games/kentucky-route-zero-act-v" + }, { "slug": "kentum", "name": "Kentum", @@ -378116,6 +388126,11 @@ "name": "Kessler Syndrome", "url": "/v1/games/kessler-syndrome" }, + { + "slug": "kestrel-q110291209", + "name": "Kestrel", + "url": "/v1/games/kestrel-q110291209" + }, { "slug": "kestrel", "name": "Kestrel", @@ -378296,6 +388311,11 @@ "name": "KeyWe", "url": "/v1/games/keywe" }, + { + "slug": "keyball", + "name": "Keyball", + "url": "/v1/games/keyball" + }, { "slug": "keyboard-cadet", "name": "Keyboard Cadet", @@ -378766,6 +388786,21 @@ "name": "Kick Off 2", "url": "/v1/games/kick-off-2" }, + { + "slug": "kick-off-2-giants-of-europe", + "name": "Kick Off 2: Giants Of Europe", + "url": "/v1/games/kick-off-2-giants-of-europe" + }, + { + "slug": "kick-off-2-return-to-europe", + "name": "Kick Off 2: Return To Europe", + "url": "/v1/games/kick-off-2-return-to-europe" + }, + { + "slug": "kick-off-2-the-final-whistle", + "name": "Kick Off 2: The Final Whistle", + "url": "/v1/games/kick-off-2-the-final-whistle" + }, { "slug": "kick-off-3", "name": "Kick Off 3", @@ -378921,6 +388956,11 @@ "name": "Kickshot", "url": "/v1/games/kickshot" }, + { + "slug": "kickster-online-street-soccer", + "name": "Kickster Online Street Soccer", + "url": "/v1/games/kickster-online-street-soccer" + }, { "slug": "kid-a-mnesia-exhibition", "name": "Kid A Mnesia Exhibition", @@ -379001,6 +389041,11 @@ "name": "Kid Icarus: Of Myths and Monsters", "url": "/v1/games/kid-icarus-of-myths-and-monsters" }, + { + "slug": "kid-icarus-uprising", + "name": "Kid Icarus: Uprising", + "url": "/v1/games/kid-icarus-uprising" + }, { "slug": "kid-kharagma", "name": "Kid Kharagma", @@ -379281,6 +389326,16 @@ "name": "Kidz Sports International Soccer", "url": "/v1/games/kidz-sports-international-soccer" }, + { + "slug": "kidz-sports-american-football", + "name": "Kidz Sports: American Football", + "url": "/v1/games/kidz-sports-american-football" + }, + { + "slug": "kidz-sports-baseball", + "name": "Kidz Sports: Baseball", + "url": "/v1/games/kidz-sports-baseball" + }, { "slug": "kidz-sports-crazy-mini-golf-2", "name": "Kidz Sports: Crazy Mini Golf 2", @@ -379891,6 +389946,11 @@ "name": "Kill the Hentai", "url": "/v1/games/kill-the-hentai" }, + { + "slug": "kill-the-hentai-adult-patch-18", + "name": "Kill the Hentai - Adult Patch 18+", + "url": "/v1/games/kill-the-hentai-adult-patch-18" + }, { "slug": "kill-the-man-in-the-house", "name": "Kill the Man in the House", @@ -380066,6 +390126,11 @@ "name": "Killer Inside Us", "url": "/v1/games/killer-inside-us" }, + { + "slug": "killer-instinct-q13522696", + "name": "Killer Instinct", + "url": "/v1/games/killer-instinct-q13522696" + }, { "slug": "killer-instinct", "name": "Killer Instinct", @@ -380081,6 +390146,11 @@ "name": "Killer Instinct Gold", "url": "/v1/games/killer-instinct-gold" }, + { + "slug": "killer-instinct-definitive-edition", + "name": "Killer Instinct: Definitive Edition", + "url": "/v1/games/killer-instinct-definitive-edition" + }, { "slug": "killer-is-dead", "name": "Killer Is Dead", @@ -380226,6 +390296,11 @@ "name": "Killing Cloud, The", "url": "/v1/games/killing-cloud-the" }, + { + "slug": "killing-day", + "name": "Killing Day", + "url": "/v1/games/killing-day" + }, { "slug": "killing-dead", "name": "Killing Dead", @@ -380246,6 +390321,21 @@ "name": "Killing Floor 2", "url": "/v1/games/killing-floor-2" }, + { + "slug": "killing-floor-2-digital-deluxe-edition", + "name": "Killing Floor 2 Digital Deluxe Edition", + "url": "/v1/games/killing-floor-2-digital-deluxe-edition" + }, + { + "slug": "killing-floor-2-digital-deluxe-edition-upgrade", + "name": "Killing Floor 2 Digital Deluxe Edition Upgrade", + "url": "/v1/games/killing-floor-2-digital-deluxe-edition-upgrade" + }, + { + "slug": "killing-floor-mod-defence-alliance-2", + "name": "Killing Floor Mod: Defence Alliance 2", + "url": "/v1/games/killing-floor-mod-defence-alliance-2" + }, { "slug": "killing-floor-incursion", "name": "Killing Floor: Incursion", @@ -380376,6 +390466,11 @@ "name": "Killzone: Shadow Fall Intercept", "url": "/v1/games/killzone-shadow-fall-intercept" }, + { + "slug": "killzone-shadow-fall-sharefactory-theme", + "name": "Killzone: Shadow Fall SHAREfactory Theme", + "url": "/v1/games/killzone-shadow-fall-sharefactory-theme" + }, { "slug": "kilmonger", "name": "Kilmonger", @@ -381381,6 +391476,11 @@ "name": "King of Avalon", "url": "/v1/games/king-of-avalon" }, + { + "slug": "king-of-avalon-dragon-warfare", + "name": "King of Avalon: Dragon Warfare", + "url": "/v1/games/king-of-avalon-dragon-warfare" + }, { "slug": "king-of-bali", "name": "King of Bali", @@ -381521,6 +391621,11 @@ "name": "King of Kinks", "url": "/v1/games/king-of-kinks" }, + { + "slug": "king-of-kinks-wallpapers", + "name": "King of Kinks Wallpapers", + "url": "/v1/games/king-of-kinks-wallpapers" + }, { "slug": "king-of-meat", "name": "King of Meat", @@ -381761,6 +391866,16 @@ "name": "King's Bounty: Armored Princess", "url": "/v1/games/king-s-bounty-armored-princess" }, + { + "slug": "king-s-bounty-armored-princess-demo", + "name": "King's Bounty: Armored Princess - Demo", + "url": "/v1/games/king-s-bounty-armored-princess-demo" + }, + { + "slug": "king-s-bounty-crossworlds", + "name": "King's Bounty: Crossworlds", + "url": "/v1/games/king-s-bounty-crossworlds" + }, { "slug": "king-s-bounty-dark-side", "name": "King's Bounty: Dark Side", @@ -381781,6 +391896,11 @@ "name": "King's Bounty: Warriors of the North", "url": "/v1/games/king-s-bounty-warriors-of-the-north" }, + { + "slug": "king-s-bounty-warriors-of-the-north-ice-and-fire", + "name": "King's Bounty: Warriors of the North - Ice and Fire", + "url": "/v1/games/king-s-bounty-warriors-of-the-north-ice-and-fire" + }, { "slug": "king-s-cup-the-online-multiplayer-drinking-game", "name": "King's Cup: The online multiplayer drinking game", @@ -381861,11 +391981,21 @@ "name": "King's Legacy: A Crown Divided Collector's Edition", "url": "/v1/games/king-s-legacy-a-crown-divided-collector-s-edition" }, + { + "slug": "king-s-quest", + "name": "King's Quest", + "url": "/v1/games/king-s-quest" + }, { "slug": "king-s-quest-chapter-1-a-knight-to-remember", "name": "King's Quest Chapter 1: A Knight to Remember", "url": "/v1/games/king-s-quest-chapter-1-a-knight-to-remember" }, + { + "slug": "king-s-quest-collection", + "name": "King's Quest Collection", + "url": "/v1/games/king-s-quest-collection" + }, { "slug": "king-s-quest-i", "name": "King's Quest I", @@ -382011,6 +392141,16 @@ "name": "Kingdom Come: Deliverance", "url": "/v1/games/kingdom-come-deliverance" }, + { + "slug": "kingdom-come-deliverance-ii-mysteria-ecclesiae", + "name": "Kingdom Come: Deliverance II - Mysteria Ecclesiae", + "url": "/v1/games/kingdom-come-deliverance-ii-mysteria-ecclesiae" + }, + { + "slug": "kingdom-come-deliverance-ii-legacy-of-the-forge", + "name": "Kingdom Come: Deliverance II: Legacy of the Forge", + "url": "/v1/games/kingdom-come-deliverance-ii-legacy-of-the-forge" + }, { "slug": "kingdom-conquest", "name": "Kingdom Conquest", @@ -382166,11 +392306,21 @@ "name": "Kingdom Hearts III", "url": "/v1/games/kingdom-hearts-iii" }, + { + "slug": "kingdom-hearts-iii-re-mind", + "name": "Kingdom Hearts III Re Mind", + "url": "/v1/games/kingdom-hearts-iii-re-mind" + }, { "slug": "kingdom-hearts-iv", "name": "Kingdom Hearts IV", "url": "/v1/games/kingdom-hearts-iv" }, + { + "slug": "kingdom-hearts-missing-link", + "name": "Kingdom Hearts Missing-Link", + "url": "/v1/games/kingdom-hearts-missing-link" + }, { "slug": "kingdom-hearts-mobile", "name": "Kingdom Hearts Mobile", @@ -382316,6 +392466,11 @@ "name": "Kingdom Rush Frontiers", "url": "/v1/games/kingdom-rush-frontiers" }, + { + "slug": "kingdom-rush-frontiers-td", + "name": "Kingdom Rush Frontiers TD+", + "url": "/v1/games/kingdom-rush-frontiers-td" + }, { "slug": "kingdom-rush-origins", "name": "Kingdom Rush Origins", @@ -382326,6 +392481,11 @@ "name": "Kingdom Rush Vengeance", "url": "/v1/games/kingdom-rush-vengeance" }, + { + "slug": "kingdom-rush-vengeance-td", + "name": "Kingdom Rush Vengeance TD+", + "url": "/v1/games/kingdom-rush-vengeance-td" + }, { "slug": "kingdom-savannah", "name": "Kingdom Savannah", @@ -382366,6 +392526,11 @@ "name": "Kingdom Two Crowns", "url": "/v1/games/kingdom-two-crowns" }, + { + "slug": "kingdom-two-crowns-q118234787", + "name": "Kingdom Two Crowns+", + "url": "/v1/games/kingdom-two-crowns-q118234787" + }, { "slug": "kingdom-under-fire-ii", "name": "Kingdom Under Fire II", @@ -383341,6 +393506,11 @@ "name": "Kirby and the Forgotten Land", "url": "/v1/games/kirby-and-the-forgotten-land" }, + { + "slug": "kirby-and-the-forgotten-land-nintendo-switch-2-edition-star-crossed-world-upgrade-pack", + "name": "Kirby and the Forgotten Land – Nintendo Switch 2 Edition + Star-Crossed World Upgrade Pack", + "url": "/v1/games/kirby-and-the-forgotten-land-nintendo-switch-2-edition-star-crossed-world-upgrade-pack" + }, { "slug": "kirby-and-the-rainbow-curse", "name": "Kirby and the Rainbow Curse", @@ -383371,6 +393541,11 @@ "name": "Kirby's Dream Buffet", "url": "/v1/games/kirby-s-dream-buffet" }, + { + "slug": "kirby-s-dream-collection", + "name": "Kirby's Dream Collection", + "url": "/v1/games/kirby-s-dream-collection" + }, { "slug": "kirby-s-dream-course", "name": "Kirby's Dream Course", @@ -384136,6 +394311,11 @@ "name": "Kitty Convenience", "url": "/v1/games/kitty-convenience" }, + { + "slug": "kitty-glitter", + "name": "Kitty Glitter", + "url": "/v1/games/kitty-glitter" + }, { "slug": "kitty-hawk", "name": "Kitty Hawk", @@ -384246,6 +394426,11 @@ "name": "Kitty's Venture", "url": "/v1/games/kitty-s-venture" }, + { + "slug": "kittyrace", + "name": "KittyRace", + "url": "/v1/games/kittyrace" + }, { "slug": "kittypocalypse", "name": "Kittypocalypse", @@ -384611,6 +394796,11 @@ "name": "Klonoa Heroes: Densetsu no Star Medal", "url": "/v1/games/klonoa-heroes-densetsu-no-star-medal" }, + { + "slug": "klonoa-phantasy-reverie-series", + "name": "Klonoa Phantasy Reverie Series", + "url": "/v1/games/klonoa-phantasy-reverie-series" + }, { "slug": "klonoa-door-to-phantomile", "name": "Klonoa: Door to Phantomile", @@ -385971,6 +396161,11 @@ "name": "Knotwords", "url": "/v1/games/knotwords" }, + { + "slug": "knotwords-q123295255", + "name": "Knotwords+", + "url": "/v1/games/knotwords-q123295255" + }, { "slug": "know-your-limits", "name": "Know Your Limits", @@ -386111,6 +396306,11 @@ "name": "Koa: The Forgotten Gods", "url": "/v1/games/koa-the-forgotten-gods" }, + { + "slug": "koala-cafe", + "name": "Koala Cafe", + "url": "/v1/games/koala-cafe" + }, { "slug": "koala-kids", "name": "Koala Kids", @@ -386276,6 +396476,11 @@ "name": "Kohan II: Kings of War", "url": "/v1/games/kohan-ii-kings-of-war" }, + { + "slug": "kohan-ahriman-s-gift", + "name": "Kohan: Ahriman's Gift", + "url": "/v1/games/kohan-ahriman-s-gift" + }, { "slug": "kohan-immortal-sovereigns", "name": "Kohan: Immortal Sovereigns", @@ -386781,6 +396986,16 @@ "name": "Kombat Hamster", "url": "/v1/games/kombat-hamster" }, + { + "slug": "kombat-pack", + "name": "Kombat Pack", + "url": "/v1/games/kombat-pack" + }, + { + "slug": "kombat-pack-2", + "name": "Kombat Pack 2", + "url": "/v1/games/kombat-pack-2" + }, { "slug": "kombate-mexicano-elexiones", "name": "Kombate Mexicano Elexiones", @@ -386891,6 +397106,11 @@ "name": "Konami Arcade Classics", "url": "/v1/games/konami-arcade-classics" }, + { + "slug": "konami-classics", + "name": "Konami Classics", + "url": "/v1/games/konami-classics" + }, { "slug": "konami-classics-series-arcade-hits", "name": "Konami Classics Series: Arcade Hits", @@ -387001,6 +397221,11 @@ "name": "Koneko Neko Neko", "url": "/v1/games/koneko-neko-neko" }, + { + "slug": "koneko-mo-issyo", + "name": "Koneko mo Issyo", + "url": "/v1/games/koneko-mo-issyo" + }, { "slug": "konfronto", "name": "Konfronto", @@ -387411,6 +397636,11 @@ "name": "Koropokkur in Love ~A Little Fairy’s Tale~", "url": "/v1/games/koropokkur-in-love-a-little-fairy-s-tale" }, + { + "slug": "kororinpa-q104773412", + "name": "Kororinpa", + "url": "/v1/games/kororinpa-q104773412" + }, { "slug": "kororinpa", "name": "Kororinpa", @@ -388296,6 +398526,11 @@ "name": "Krymini", "url": "/v1/games/krymini" }, + { + "slug": "krynea-imperial-wars", + "name": "Krynea Imperial Wars", + "url": "/v1/games/krynea-imperial-wars" + }, { "slug": "krypt", "name": "Krypt", @@ -388886,6 +399121,11 @@ "name": "Kung Fury: Street Rage", "url": "/v1/games/kung-fury-street-rage" }, + { + "slug": "kung-fury-street-rage-ultimate-edition", + "name": "Kung Fury: Street Rage - Ultimate Edition", + "url": "/v1/games/kung-fury-street-rage-ultimate-edition" + }, { "slug": "kung-pao-banqi", "name": "Kung Pao Banqi", @@ -389686,6 +399926,11 @@ "name": "Kyuiin", "url": "/v1/games/kyuiin" }, + { + "slug": "kyukyoku-tiger-heli", + "name": "Kyukyoku Tiger-Heli", + "url": "/v1/games/kyukyoku-tiger-heli" + }, { "slug": "kyurinaga-s-revenge", "name": "Kyurinaga's Revenge", @@ -389901,6 +400146,16 @@ "name": "L.A. Machineguns", "url": "/v1/games/l-a-machineguns" }, + { + "slug": "l-a-noire-reefer-madness", + "name": "L.A. Noire: Reefer Madness", + "url": "/v1/games/l-a-noire-reefer-madness" + }, + { + "slug": "l-a-noire-the-complete-edition", + "name": "L.A. Noire: The Complete Edition", + "url": "/v1/games/l-a-noire-the-complete-edition" + }, { "slug": "l-a-noire-the-vr-case-files", "name": "L.A. Noire: The VR Case Files", @@ -390396,6 +400651,11 @@ "name": "LEGO Island 2: The Brickster's Revenge", "url": "/v1/games/lego-island-2-the-brickster-s-revenge" }, + { + "slug": "lego-marvel-s-avengers-deluxe-edition", + "name": "LEGO Marvel’s Avengers Deluxe Edition", + "url": "/v1/games/lego-marvel-s-avengers-deluxe-edition" + }, { "slug": "lego-pirates-of-the-caribbean-the-video-game", "name": "LEGO Pirates of the Caribbean: The Video Game", @@ -390416,6 +400676,11 @@ "name": "LEGO Star Wars: Microfighters", "url": "/v1/games/lego-star-wars-microfighters" }, + { + "slug": "lego-star-wars-the-force-awakens-deluxe-edition", + "name": "LEGO Star Wars: The Force Awakens Deluxe Edition", + "url": "/v1/games/lego-star-wars-the-force-awakens-deluxe-edition" + }, { "slug": "lego-voyagers", "name": "LEGO Voyagers", @@ -390516,6 +400781,11 @@ "name": "LGBT Color by Number for Adults", "url": "/v1/games/lgbt-color-by-number-for-adults" }, + { + "slug": "lgames", + "name": "LGames", + "url": "/v1/games/lgames" + }, { "slug": "lhea-and-the-word-spirit", "name": "LHEA and the Word Spirit", @@ -390606,6 +400876,11 @@ "name": "LIGHTS OUT: TPP SHOOTER", "url": "/v1/games/lights-out-tpp-shooter" }, + { + "slug": "lilith-izm", + "name": "LILITH-IZM", + "url": "/v1/games/lilith-izm" + }, { "slug": "lilt", "name": "LILT", @@ -390766,6 +401041,11 @@ "name": "LISA the Hopeful", "url": "/v1/games/lisa-the-hopeful" }, + { + "slug": "lisa-the-joyful", + "name": "LISA the Joyful", + "url": "/v1/games/lisa-the-joyful" + }, { "slug": "lisa-the-first", "name": "LISA: The First", @@ -390821,6 +401101,11 @@ "name": "LMA Manager 2006", "url": "/v1/games/lma-manager-2006" }, + { + "slug": "lmno", + "name": "LMNO", + "url": "/v1/games/lmno" + }, { "slug": "ln-of-zombies", "name": "LN OF Zombies", @@ -390921,11 +401206,51 @@ "name": "LOGistICAL", "url": "/v1/games/logistical" }, + { + "slug": "logistical-canada", + "name": "LOGistICAL - Canada", + "url": "/v1/games/logistical-canada" + }, + { + "slug": "logistical-egypt", + "name": "LOGistICAL - Egypt", + "url": "/v1/games/logistical-egypt" + }, + { + "slug": "logistical-germany", + "name": "LOGistICAL - Germany", + "url": "/v1/games/logistical-germany" + }, + { + "slug": "logistical-new-zealand", + "name": "LOGistICAL - New Zealand", + "url": "/v1/games/logistical-new-zealand" + }, + { + "slug": "logistical-the-netherlands", + "name": "LOGistICAL - The Netherlands", + "url": "/v1/games/logistical-the-netherlands" + }, + { + "slug": "logistical-usa-california", + "name": "LOGistICAL - USA - California", + "url": "/v1/games/logistical-usa-california" + }, + { + "slug": "logistical-usa-hawaii", + "name": "LOGistICAL - USA - Hawaii", + "url": "/v1/games/logistical-usa-hawaii" + }, { "slug": "logistical-2", "name": "LOGistICAL 2", "url": "/v1/games/logistical-2" }, + { + "slug": "logistical-2-suriname-xmas-2018", + "name": "LOGistICAL 2 - Suriname (Xmas 2018)", + "url": "/v1/games/logistical-2-suriname-xmas-2018" + }, { "slug": "logistical-2-belgium", "name": "LOGistICAL 2: Belgium", @@ -390936,16 +401261,61 @@ "name": "LOGistICAL 2: France", "url": "/v1/games/logistical-2-france" }, + { + "slug": "logistical-2-indonesia-bundle", + "name": "LOGistICAL 2: Indonesia - Bundle", + "url": "/v1/games/logistical-2-indonesia-bundle" + }, + { + "slug": "logistical-2-indonesia-sample", + "name": "LOGistICAL 2: Indonesia - Sample", + "url": "/v1/games/logistical-2-indonesia-sample" + }, + { + "slug": "logistical-2-mall-rats", + "name": "LOGistICAL 2: Mall Rats", + "url": "/v1/games/logistical-2-mall-rats" + }, + { + "slug": "logistical-2-sweden", + "name": "LOGistICAL 2: Sweden", + "url": "/v1/games/logistical-2-sweden" + }, { "slug": "logistical-2-usa-nevada", "name": "LOGistICAL 2: USA - Nevada", "url": "/v1/games/logistical-2-usa-nevada" }, + { + "slug": "logistical-2-usa-texas-bundle", + "name": "LOGistICAL 2: USA - Texas - Bundle", + "url": "/v1/games/logistical-2-usa-texas-bundle" + }, + { + "slug": "logistical-2-usa-texas-sample", + "name": "LOGistICAL 2: USA - Texas - Sample", + "url": "/v1/games/logistical-2-usa-texas-sample" + }, { "slug": "logistical-2-vampires-free-as-l2-dlc", "name": "LOGistICAL 2: Vampires (FREE as L2 DLC)", "url": "/v1/games/logistical-2-vampires-free-as-l2-dlc" }, + { + "slug": "logistical-2-vampires-bundle", + "name": "LOGistICAL 2: Vampires - Bundle", + "url": "/v1/games/logistical-2-vampires-bundle" + }, + { + "slug": "logistical-2-vampires-sample", + "name": "LOGistICAL 2: Vampires - Sample", + "url": "/v1/games/logistical-2-vampires-sample" + }, + { + "slug": "logistical-2-washington", + "name": "LOGistICAL 2: Washington", + "url": "/v1/games/logistical-2-washington" + }, { "slug": "logistical-3", "name": "LOGistICAL 3", @@ -391566,6 +401936,11 @@ "name": "LYNE", "url": "/v1/games/lyne" }, + { + "slug": "lzdoom", + "name": "LZDoom", + "url": "/v1/games/lzdoom" + }, { "slug": "la-abad-a-del-crimen", "name": "La Abadía del Crimen", @@ -392391,6 +402766,11 @@ "name": "Lacuna Passage", "url": "/v1/games/lacuna-passage" }, + { + "slug": "lacuna-prologue", + "name": "Lacuna: Prologue", + "url": "/v1/games/lacuna-prologue" + }, { "slug": "lad", "name": "Lad", @@ -392891,6 +403271,11 @@ "name": "Lambda Wars", "url": "/v1/games/lambda-wars" }, + { + "slug": "lambdamoo", + "name": "LambdaMOO", + "url": "/v1/games/lambdamoo" + }, { "slug": "lamborghini", "name": "Lamborghini", @@ -393226,6 +403611,11 @@ "name": "Land of Crystals", "url": "/v1/games/land-of-crystals" }, + { + "slug": "land-of-dangun", + "name": "Land of Dangun", + "url": "/v1/games/land-of-dangun" + }, { "slug": "land-of-dread", "name": "Land of Dread", @@ -393796,6 +404186,11 @@ "name": "Language Learning Simulator - Alphabet", "url": "/v1/games/language-learning-simulator-alphabet" }, + { + "slug": "language-pack", + "name": "Language Pack", + "url": "/v1/games/language-pack" + }, { "slug": "language-worm", "name": "Language Worm", @@ -394351,6 +404746,11 @@ "name": "Laser Squad", "url": "/v1/games/laser-squad" }, + { + "slug": "laser-squad-kit-1", + "name": "Laser Squad - Kit 1", + "url": "/v1/games/laser-squad-kit-1" + }, { "slug": "laser-squad-nemesis", "name": "Laser Squad Nemesis", @@ -396666,6 +407066,11 @@ "name": "Layers of Fear VR", "url": "/v1/games/layers-of-fear-vr" }, + { + "slug": "layers-of-fear-inheritance", + "name": "Layers of Fear: Inheritance", + "url": "/v1/games/layers-of-fear-inheritance" + }, { "slug": "layerworld", "name": "Layerworld", @@ -396696,6 +407101,11 @@ "name": "Layton's Mystery Journey: Katrielle and the Millionaires' Conspiracy", "url": "/v1/games/layton-s-mystery-journey-katrielle-and-the-millionaires-conspiracy" }, + { + "slug": "layton-s-mystery-journey", + "name": "Layton’s Mystery Journey+", + "url": "/v1/games/layton-s-mystery-journey" + }, { "slug": "layup-legends", "name": "Layup Legends™", @@ -397886,6 +408296,16 @@ "name": "Leeds United Champions", "url": "/v1/games/leeds-united-champions" }, + { + "slug": "leela", + "name": "Leela", + "url": "/v1/games/leela" + }, + { + "slug": "leela-zero", + "name": "Leela Zero", + "url": "/v1/games/leela-zero" + }, { "slug": "leelh", "name": "Leelh", @@ -397916,6 +408336,31 @@ "name": "Left 4 Dead 2", "url": "/v1/games/left-4-dead-2" }, + { + "slug": "left-4-dead-2-demo", + "name": "Left 4 Dead 2 Demo", + "url": "/v1/games/left-4-dead-2-demo" + }, + { + "slug": "left-4-dead-2-the-passing", + "name": "Left 4 Dead 2: The Passing", + "url": "/v1/games/left-4-dead-2-the-passing" + }, + { + "slug": "left-4-dead-3", + "name": "Left 4 Dead 3", + "url": "/v1/games/left-4-dead-3" + }, + { + "slug": "left-4-dead-bundle", + "name": "Left 4 Dead Bundle", + "url": "/v1/games/left-4-dead-bundle" + }, + { + "slug": "left-4-dead-demo", + "name": "Left 4 Dead Demo", + "url": "/v1/games/left-4-dead-demo" + }, { "slug": "left-4-dead-survivors", "name": "Left 4 Dead: Survivors", @@ -398181,6 +408626,11 @@ "name": "Legacy of Kain: Soul Reaver 1-2 Remastered", "url": "/v1/games/legacy-of-kain-soul-reaver-1-2-remastered" }, + { + "slug": "legacy-of-romulus", + "name": "Legacy of Romulus", + "url": "/v1/games/legacy-of-romulus" + }, { "slug": "legacy-of-sin-blood-oath", "name": "Legacy of Sin blood oath", @@ -398386,6 +408836,11 @@ "name": "Legend Of The Valley", "url": "/v1/games/legend-of-the-valley" }, + { + "slug": "legend-online-ii", + "name": "Legend Online II", + "url": "/v1/games/legend-online-ii" + }, { "slug": "legend-of-ares-q124067441", "name": "Legend of Ares", @@ -399301,6 +409756,21 @@ "name": "Legends of Eisenwald", "url": "/v1/games/legends-of-eisenwald" }, + { + "slug": "legends-of-eisenwald-season-pass", + "name": "Legends of Eisenwald Season Pass", + "url": "/v1/games/legends-of-eisenwald-season-pass" + }, + { + "slug": "legends-of-eisenwald-knight-s-pack", + "name": "Legends of Eisenwald: Knight's Pack", + "url": "/v1/games/legends-of-eisenwald-knight-s-pack" + }, + { + "slug": "legends-of-eisenwald-road-to-iron-forest", + "name": "Legends of Eisenwald: Road to Iron Forest", + "url": "/v1/games/legends-of-eisenwald-road-to-iron-forest" + }, { "slug": "legends-of-elysium-q135453682", "name": "Legends of Elysium", @@ -399851,6 +410321,11 @@ "name": "Lego Duplo World", "url": "/v1/games/lego-duplo-world" }, + { + "slug": "lego-duplo-world-q122704734", + "name": "Lego Duplo World+", + "url": "/v1/games/lego-duplo-world-q122704734" + }, { "slug": "lego-fortnite", "name": "Lego Fortnite", @@ -400046,6 +410521,11 @@ "name": "Lego Star Wars: The Skywalker Saga", "url": "/v1/games/lego-star-wars-the-skywalker-saga" }, + { + "slug": "lego-star-wars-the-skywalker-saga-deluxe-edition", + "name": "Lego Star Wars: The Skywalker Saga Deluxe Edition", + "url": "/v1/games/lego-star-wars-the-skywalker-saga-deluxe-edition" + }, { "slug": "lego-star-wars-the-video-game", "name": "Lego Star Wars: The Video Game", @@ -400156,11 +410636,21 @@ "name": "Leisure Suit Larry 8: Lust in Space", "url": "/v1/games/leisure-suit-larry-8-lust-in-space" }, + { + "slug": "leisure-suit-larry-collection", + "name": "Leisure Suit Larry Collection", + "url": "/v1/games/leisure-suit-larry-collection" + }, { "slug": "leisure-suit-larry-goes-looking-for-love-in-several-wrong-places", "name": "Leisure Suit Larry Goes Looking for Love (in Several Wrong Places)", "url": "/v1/games/leisure-suit-larry-goes-looking-for-love-in-several-wrong-places" }, + { + "slug": "leisure-suit-larry-vii-love-for-sail-demo", + "name": "Leisure Suit Larry VII: Love for Sail! demo", + "url": "/v1/games/leisure-suit-larry-vii-love-for-sail-demo" + }, { "slug": "leisure-suit-larry-in-the-land-of-the-lounge-lizards", "name": "Leisure Suit Larry in the Land of the Lounge Lizards", @@ -400171,6 +410661,11 @@ "name": "Leisure Suit Larry's Casino", "url": "/v1/games/leisure-suit-larry-s-casino" }, + { + "slug": "leisure-suit-larry-s-casino-demo", + "name": "Leisure Suit Larry's Casino demo", + "url": "/v1/games/leisure-suit-larry-s-casino-demo" + }, { "slug": "leisure-suit-larry-box-office-bust", "name": "Leisure Suit Larry: Box Office Bust", @@ -400186,6 +410681,11 @@ "name": "Leisure Suit Larry: Magna Cum Laude", "url": "/v1/games/leisure-suit-larry-magna-cum-laude" }, + { + "slug": "leisure-suit-larry-magna-cum-laude-demo", + "name": "Leisure Suit Larry: Magna Cum Laude demo", + "url": "/v1/games/leisure-suit-larry-magna-cum-laude-demo" + }, { "slug": "leisure-suit-larry-reloaded", "name": "Leisure Suit Larry: Reloaded", @@ -400491,6 +410991,11 @@ "name": "Leo's Fortune", "url": "/v1/games/leo-s-fortune" }, + { + "slug": "leo-s-fortune-q107147662", + "name": "Leo's Fortune+", + "url": "/v1/games/leo-s-fortune-q107147662" + }, { "slug": "leo-the-firefighter-cat", "name": "Leo: The Firefighter Cat", @@ -400891,6 +411396,11 @@ "name": "Let's Build a Zoo", "url": "/v1/games/let-s-build-a-zoo" }, + { + "slug": "let-s-build-a-zoo-dinosaur-island", + "name": "Let's Build a Zoo: Dinosaur Island", + "url": "/v1/games/let-s-build-a-zoo-dinosaur-island" + }, { "slug": "let-s-caf", "name": "Let's Café", @@ -401456,6 +411966,11 @@ "name": "Let's! Revolution!", "url": "/v1/games/let-s-revolution" }, + { + "slug": "let-s-tv-play-classic", + "name": "Let's! TV play classic", + "url": "/v1/games/let-s-tv-play-classic" + }, { "slug": "letmeout", "name": "LetMeOut", @@ -401506,6 +412021,11 @@ "name": "Lethal Enforcers 3", "url": "/v1/games/lethal-enforcers-3" }, + { + "slug": "lethal-enforcers-i-ii", + "name": "Lethal Enforcers I & II", + "url": "/v1/games/lethal-enforcers-i-ii" + }, { "slug": "lethal-enforcers-ii-gun-fighters", "name": "Lethal Enforcers II: Gun Fighters", @@ -402466,6 +412986,11 @@ "name": "Liberated", "url": "/v1/games/liberated" }, + { + "slug": "liberated-enhanced-edition", + "name": "Liberated: Enhanced Edition", + "url": "/v1/games/liberated-enhanced-edition" + }, { "slug": "liberation-q135017884", "name": "Liberation", @@ -402556,6 +413081,11 @@ "name": "Libertad o Muerte!", "url": "/v1/games/libertad-o-muerte" }, + { + "slug": "liberty-bell", + "name": "Liberty Bell", + "url": "/v1/games/liberty-bell" + }, { "slug": "liberty-belle", "name": "Liberty Belle", @@ -402706,6 +413236,11 @@ "name": "Lichenvale", "url": "/v1/games/lichenvale" }, + { + "slug": "lichess", + "name": "Lichess", + "url": "/v1/games/lichess" + }, { "slug": "lichgate-tower-survivor", "name": "Lichgate: Tower Survivor", @@ -402996,6 +413531,11 @@ "name": "Life Is Strange 2", "url": "/v1/games/life-is-strange-2" }, + { + "slug": "life-is-strange-2-episode-1-roads", + "name": "Life Is Strange 2: Episode 1 - Roads", + "url": "/v1/games/life-is-strange-2-episode-1-roads" + }, { "slug": "life-is-strange-before-the-storm", "name": "Life Is Strange: Before the Storm", @@ -403136,6 +413676,11 @@ "name": "Life as a Lich", "url": "/v1/games/life-as-a-lich" }, + { + "slug": "life-by-you", + "name": "Life by You", + "url": "/v1/games/life-by-you" + }, { "slug": "life-in-adventure", "name": "Life in Adventure", @@ -403216,6 +413761,11 @@ "name": "Life is Strange Remastered", "url": "/v1/games/life-is-strange-remastered" }, + { + "slug": "life-is-strange-remastered-collection", + "name": "Life is Strange Remastered Collection", + "url": "/v1/games/life-is-strange-remastered-collection" + }, { "slug": "life-is-strange-before-the-storm-deluxe-edition", "name": "Life is Strange: Before the Storm Deluxe Edition", @@ -403451,6 +414001,11 @@ "name": "LifeZ - Survival", "url": "/v1/games/lifez-survival" }, + { + "slug": "lifeblood-q116592516", + "name": "Lifeblood", + "url": "/v1/games/lifeblood-q116592516" + }, { "slug": "lifeblood", "name": "Lifeblood", @@ -403531,6 +414086,11 @@ "name": "Lifeline 2: Bloodline", "url": "/v1/games/lifeline-2-bloodline" }, + { + "slug": "lifeline-q116720201", + "name": "Lifeline+", + "url": "/v1/games/lifeline-q116720201" + }, { "slug": "lifeline-beside-you-in-time", "name": "Lifeline: Beside You in Time", @@ -403566,6 +414126,11 @@ "name": "Lifelong", "url": "/v1/games/lifelong" }, + { + "slug": "lifesaver-donation", + "name": "Lifesaver donation", + "url": "/v1/games/lifesaver-donation" + }, { "slug": "lifesigns", "name": "Lifesigns", @@ -405161,6 +415726,11 @@ "name": "Limbo of the Lost", "url": "/v1/games/limbo-of-the-lost" }, + { + "slug": "limbo-q118234805", + "name": "Limbo+", + "url": "/v1/games/limbo-q118234805" + }, { "slug": "limbonauts", "name": "Limbonauts", @@ -405346,6 +415916,11 @@ "name": "Limit Choice", "url": "/v1/games/limit-choice" }, + { + "slug": "limit-theory", + "name": "Limit Theory", + "url": "/v1/games/limit-theory" + }, { "slug": "limit-of-defense", "name": "Limit of defense", @@ -405681,6 +416256,11 @@ "name": "Lineage II Essence", "url": "/v1/games/lineage-ii-essence" }, + { + "slug": "lineage-ii-the-chaotic-throne-the-kamael-the-1st-throne", + "name": "Lineage II: The Chaotic Throne - The Kamael: The 1st Throne", + "url": "/v1/games/lineage-ii-the-chaotic-throne-the-kamael-the-1st-throne" + }, { "slug": "lineage-m", "name": "Lineage M", @@ -406076,6 +416656,11 @@ "name": "Linux Air Combat", "url": "/v1/games/linux-air-combat" }, + { + "slug": "linux-doom", + "name": "Linux Doom", + "url": "/v1/games/linux-doom" + }, { "slug": "linux-tycoon", "name": "Linux Tycoon", @@ -406191,6 +416776,11 @@ "name": "Lips Breaker", "url": "/v1/games/lips-breaker" }, + { + "slug": "lips-egao-no-yukue", + "name": "Lips ~Egao no Yukue~", + "url": "/v1/games/lips-egao-no-yukue" + }, { "slug": "lips-canta-en-espa-ol", "name": "Lips: Canta en Español", @@ -407046,6 +417636,11 @@ "name": "Little Kitty, Big City", "url": "/v1/games/little-kitty-big-city" }, + { + "slug": "little-kitty-big-city-demo", + "name": "Little Kitty, Big City Demo", + "url": "/v1/games/little-kitty-big-city-demo" + }, { "slug": "little-knight-q135059525", "name": "Little Knight", @@ -408481,6 +419076,11 @@ "name": "LlamaRPG: Farm to Fable", "url": "/v1/games/llamarpg-farm-to-fable" }, + { + "slug": "llamasoft-the-jeff-minter-story", + "name": "Llamasoft: The Jeff Minter Story", + "url": "/v1/games/llamasoft-the-jeff-minter-story" + }, { "slug": "llamatron", "name": "Llamatron", @@ -408686,6 +419286,11 @@ "name": "Lobotomy Corporation", "url": "/v1/games/lobotomy-corporation" }, + { + "slug": "lobotomy-corporation-art-book", + "name": "Lobotomy Corporation Art Book", + "url": "/v1/games/lobotomy-corporation-art-book" + }, { "slug": "lobotrypo", "name": "Lobotrypo", @@ -409196,6 +419801,11 @@ "name": "Lode Runner", "url": "/v1/games/lode-runner-q29907119" }, + { + "slug": "lode-runner-q65056784", + "name": "Lode Runner", + "url": "/v1/games/lode-runner-q65056784" + }, { "slug": "lode-runner-q78649215", "name": "Lode Runner", @@ -410286,6 +420896,11 @@ "name": "Long Road", "url": "/v1/games/long-road" }, + { + "slug": "long-road-ahead", + "name": "Long Road Ahead", + "url": "/v1/games/long-road-ahead" + }, { "slug": "long-shot", "name": "Long Shot", @@ -411561,6 +422176,11 @@ "name": "Lords of Magic", "url": "/v1/games/lords-of-magic" }, + { + "slug": "lords-of-magic-legends-of-urak", + "name": "Lords of Magic: Legends of Urak", + "url": "/v1/games/lords-of-magic-legends-of-urak" + }, { "slug": "lords-of-midnight-the-citadel", "name": "Lords of Midnight: The Citadel", @@ -411636,6 +422256,11 @@ "name": "Lords of the Darkreign", "url": "/v1/games/lords-of-the-darkreign" }, + { + "slug": "lords-of-the-earth", + "name": "Lords of the Earth", + "url": "/v1/games/lords-of-the-earth" + }, { "slug": "lords-of-the-fallen-q121157516", "name": "Lords of the Fallen", @@ -411646,6 +422271,11 @@ "name": "Lords of the Fallen", "url": "/v1/games/lords-of-the-fallen" }, + { + "slug": "lords-of-the-fallen-ancient-labyrinth", + "name": "Lords of the Fallen: Ancient Labyrinth", + "url": "/v1/games/lords-of-the-fallen-ancient-labyrinth" + }, { "slug": "lords-of-the-realm", "name": "Lords of the Realm", @@ -411781,6 +422411,11 @@ "name": "Lorn's Lure", "url": "/v1/games/lorn-s-lure" }, + { + "slug": "lorna-q114027887", + "name": "Lorna", + "url": "/v1/games/lorna-q114027887" + }, { "slug": "lorna", "name": "Lorna", @@ -413056,6 +423691,11 @@ "name": "Lost Paws", "url": "/v1/games/lost-paws" }, + { + "slug": "lost-phones-stories", + "name": "Lost Phones Stories", + "url": "/v1/games/lost-phones-stories" + }, { "slug": "lost-pig", "name": "Lost Pig", @@ -413736,6 +424376,11 @@ "name": "Lost in the tomb", "url": "/v1/games/lost-in-the-tomb" }, + { + "slug": "lost-on-island", + "name": "Lost on Island", + "url": "/v1/games/lost-on-island" + }, { "slug": "lost-to-time", "name": "Lost to Time", @@ -414716,6 +425361,11 @@ "name": "Love You to Bits", "url": "/v1/games/love-you-to-bits" }, + { + "slug": "love-you-to-bits-q113655200", + "name": "Love You to Bits+", + "url": "/v1/games/love-you-to-bits-q113655200" + }, { "slug": "love-all-you-have-left", "name": "Love all you have left", @@ -414906,6 +425556,11 @@ "name": "Love n War: Warlord by Chance", "url": "/v1/games/love-n-war-warlord-by-chance" }, + { + "slug": "love-n-war-warlord-by-chance-sisters-of-castus", + "name": "Love n War: Warlord by Chance - Sisters of Castus", + "url": "/v1/games/love-n-war-warlord-by-chance-sisters-of-castus" + }, { "slug": "love-n-war-warlord-by-chance-ii", "name": "Love n War: Warlord by Chance II", @@ -415441,6 +426096,11 @@ "name": "Lover Bands", "url": "/v1/games/lover-bands" }, + { + "slug": "lover-boy", + "name": "Lover Boy", + "url": "/v1/games/lover-boy" + }, { "slug": "lover-interface", "name": "Lover Interface", @@ -415556,6 +426216,11 @@ "name": "Loving You Fully", "url": "/v1/games/loving-you-fully" }, + { + "slug": "loving-donation", + "name": "Loving donation", + "url": "/v1/games/loving-donation" + }, { "slug": "lovingly-evil", "name": "Lovingly Evil", @@ -415816,6 +426481,11 @@ "name": "LucasArts Collection / LucasArts Classic Adventures", "url": "/v1/games/lucasarts-collection-lucasarts-classic-adventures" }, + { + "slug": "lucasarts-classic-adventures", + "name": "Lucasarts Classic Adventures", + "url": "/v1/games/lucasarts-classic-adventures" + }, { "slug": "lucent-bounds", "name": "Lucent Bounds", @@ -416696,6 +427366,11 @@ "name": "Lula Flipper", "url": "/v1/games/lula-flipper" }, + { + "slug": "lula-online", + "name": "Lula Online", + "url": "/v1/games/lula-online" + }, { "slug": "lula-strip-poker", "name": "Lula Strip Poker", @@ -416706,6 +427381,11 @@ "name": "Lula Virtual Babe", "url": "/v1/games/lula-virtual-babe" }, + { + "slug": "lula-s-wet-pack", + "name": "Lula's Wet Pack", + "url": "/v1/games/lula-s-wet-pack" + }, { "slug": "lula-the-sexy-empire", "name": "Lula: The Sexy Empire", @@ -417561,6 +428241,11 @@ "name": "Lunar Rebirth: Dungeon of Eternal Return", "url": "/v1/games/lunar-rebirth-dungeon-of-eternal-return" }, + { + "slug": "lunar-remastered-collection", + "name": "Lunar Remastered Collection", + "url": "/v1/games/lunar-remastered-collection" + }, { "slug": "lunar-rescue-q122272431", "name": "Lunar Rescue", @@ -418596,6 +429281,11 @@ "name": "Luxury Supermarket Simulator", "url": "/v1/games/luxury-supermarket-simulator" }, + { + "slug": "luxy-s-space-adventure", + "name": "Luxy's Space Adventure", + "url": "/v1/games/luxy-s-space-adventure" + }, { "slug": "luyen-nguc", "name": "Luyen Nguc", @@ -418921,6 +429611,11 @@ "name": "M.A.V.", "url": "/v1/games/m-a-v" }, + { + "slug": "m-a-x-m-a-x-2", + "name": "M.A.X. & M.A.X. 2", + "url": "/v1/games/m-a-x-m-a-x-2" + }, { "slug": "m-c-kids", "name": "M.C. Kids", @@ -419126,6 +429821,11 @@ "name": "MACROSS ULTIMATE FRONTIER", "url": "/v1/games/macross-ultimate-frontier" }, + { + "slug": "mad", + "name": "MAD", + "url": "/v1/games/mad" + }, { "slug": "mad-maze", "name": "MAD Maze", @@ -419636,6 +430336,11 @@ "name": "MAiZE", "url": "/v1/games/maize-q135072072" }, + { + "slug": "mbf", + "name": "MBF", + "url": "/v1/games/mbf" + }, { "slug": "mbhl20", "name": "MBHL20", @@ -420256,6 +430961,11 @@ "name": "MILF", "url": "/v1/games/milf" }, + { + "slug": "milf-artwork", + "name": "MILF - Artwork", + "url": "/v1/games/milf-artwork" + }, { "slug": "milf-conditioning", "name": "MILF Conditioning", @@ -420756,6 +431466,16 @@ "name": "MLB: The Show 22", "url": "/v1/games/mlb-the-show-22" }, + { + "slug": "mlb-the-show-22-digital-deluxe-edition", + "name": "MLB: The Show 22 Digital Deluxe Edition", + "url": "/v1/games/mlb-the-show-22-digital-deluxe-edition" + }, + { + "slug": "mlb-the-show-22-mvp-edition", + "name": "MLB: The Show 22 MVP Edition", + "url": "/v1/games/mlb-the-show-22-mvp-edition" + }, { "slug": "mlbpa-baseball", "name": "MLBPA Baseball", @@ -420921,6 +431641,11 @@ "name": "MOBA GM", "url": "/v1/games/moba-gm" }, + { + "slug": "mobius-band", + "name": "MOBIUS BAND*", + "url": "/v1/games/mobius-band" + }, { "slug": "mochi-a-girl", "name": "MOCHI A GIRL", @@ -423006,6 +433731,11 @@ "name": "Mad Smartphone Tycoon", "url": "/v1/games/mad-smartphone-tycoon" }, + { + "slug": "mad-snake", + "name": "Mad Snake", + "url": "/v1/games/mad-snake" + }, { "slug": "mad-snowboarding", "name": "Mad Snowboarding", @@ -423876,6 +434606,11 @@ "name": "Maeve's Academy", "url": "/v1/games/maeve-s-academy" }, + { + "slug": "mafago-nft", + "name": "Mafago NFT", + "url": "/v1/games/mafago-nft" + }, { "slug": "mafdet-and-the-book-of-the-dead", "name": "Mafdet And The Book Of The Dead", @@ -423891,6 +434626,11 @@ "name": "Mafia", "url": "/v1/games/mafia" }, + { + "slug": "mafia-2-joe-s-adventures", + "name": "Mafia 2: Joe's Adventures", + "url": "/v1/games/mafia-2-joe-s-adventures" + }, { "slug": "mafia-billiard-tricks", "name": "Mafia Billiard Tricks", @@ -423926,6 +434666,11 @@ "name": "Mafia II: Definitive Edition", "url": "/v1/games/mafia-ii-definitive-edition" }, + { + "slug": "mafia-ii-the-betrayal-of-jimmy", + "name": "Mafia II: The Betrayal of Jimmy", + "url": "/v1/games/mafia-ii-the-betrayal-of-jimmy" + }, { "slug": "mafia-iii", "name": "Mafia III", @@ -423956,6 +434701,11 @@ "name": "Mafia Simulator", "url": "/v1/games/mafia-simulator" }, + { + "slug": "mafia-triple-pack", + "name": "Mafia Triple Pack", + "url": "/v1/games/mafia-triple-pack" + }, { "slug": "mafia-wars", "name": "Mafia Wars", @@ -423981,6 +434731,11 @@ "name": "Mafia: Definitive Edition", "url": "/v1/games/mafia-definitive-edition" }, + { + "slug": "mafia-trilogy", + "name": "Mafia: Trilogy", + "url": "/v1/games/mafia-trilogy" + }, { "slug": "mafioso-s-dice", "name": "Mafioso's Dice", @@ -425266,6 +436021,11 @@ "name": "Magic Technology", "url": "/v1/games/magic-technology" }, + { + "slug": "magic-tennis", + "name": "Magic Tennis", + "url": "/v1/games/magic-tennis" + }, { "slug": "magic-thief", "name": "Magic Thief", @@ -425876,6 +436636,11 @@ "name": "Magical Halloween", "url": "/v1/games/magical-halloween" }, + { + "slug": "magical-halloween-2", + "name": "Magical Halloween 2", + "url": "/v1/games/magical-halloween-2" + }, { "slug": "magical-harvest", "name": "Magical Harvest", @@ -426226,6 +436991,11 @@ "name": "Magicka: The Stars are Left", "url": "/v1/games/magicka-the-stars-are-left" }, + { + "slug": "magicka-vietnam", + "name": "Magicka: Vietnam", + "url": "/v1/games/magicka-vietnam" + }, { "slug": "magicka-wizard-wars", "name": "Magicka: Wizard Wars", @@ -427166,6 +437936,11 @@ "name": "Mahjong Tiles", "url": "/v1/games/mahjong-tiles" }, + { + "slug": "mahjong-titan", + "name": "Mahjong Titan+", + "url": "/v1/games/mahjong-titan" + }, { "slug": "mahjong-titans", "name": "Mahjong Titans", @@ -427836,6 +438611,21 @@ "name": "Majesty 2 Collection", "url": "/v1/games/majesty-2-collection" }, + { + "slug": "majesty-2-battles-of-ardania", + "name": "Majesty 2: Battles of Ardania", + "url": "/v1/games/majesty-2-battles-of-ardania" + }, + { + "slug": "majesty-2-kingmaker", + "name": "Majesty 2: Kingmaker", + "url": "/v1/games/majesty-2-kingmaker" + }, + { + "slug": "majesty-2-monster-kingdom", + "name": "Majesty 2: Monster Kingdom", + "url": "/v1/games/majesty-2-monster-kingdom" + }, { "slug": "majesty-2-the-fantasy-kingdom-sim", "name": "Majesty 2: The Fantasy Kingdom Sim", @@ -427846,6 +438636,11 @@ "name": "Majesty: The Fantasy Kingdom Sim", "url": "/v1/games/majesty-the-fantasy-kingdom-sim" }, + { + "slug": "majesty-the-northern-expansion", + "name": "Majesty: The Northern Expansion", + "url": "/v1/games/majesty-the-northern-expansion" + }, { "slug": "maji-suki-marginal-skip", "name": "Maji Suki: Marginal Skip", @@ -428111,6 +438906,11 @@ "name": "Major\\Minor 2.0: (Re)Vision", "url": "/v1/games/major-minor-2-0-re-vision" }, + { + "slug": "major-minor-complete-edition", + "name": "Major\\Minor: Complete Edition", + "url": "/v1/games/major-minor-complete-edition" + }, { "slug": "majorelle-mystery", "name": "Majorelle Mystery", @@ -428911,6 +439711,11 @@ "name": "Mall Tycoon 2", "url": "/v1/games/mall-tycoon-2" }, + { + "slug": "mall-tycoon-2-deluxe", + "name": "Mall Tycoon 2 Deluxe", + "url": "/v1/games/mall-tycoon-2-deluxe" + }, { "slug": "mall-tycoon-3", "name": "Mall Tycoon 3", @@ -429531,6 +440336,11 @@ "name": "Manafinder", "url": "/v1/games/manafinder" }, + { + "slug": "managed-doom", + "name": "Managed Doom", + "url": "/v1/games/managed-doom" + }, { "slug": "management-in-space", "name": "Management In Space", @@ -429966,6 +440776,11 @@ "name": "Maniac Mansion", "url": "/v1/games/maniac-mansion" }, + { + "slug": "maniac-mansion-deluxe", + "name": "Maniac Mansion Deluxe", + "url": "/v1/games/maniac-mansion-deluxe" + }, { "slug": "maniac-path", "name": "Maniac Path", @@ -430571,6 +441386,11 @@ "name": "Maple County", "url": "/v1/games/maple-county" }, + { + "slug": "maple-shot", + "name": "Maple Shot", + "url": "/v1/games/maple-shot" + }, { "slug": "maple-wars", "name": "Maple Wars", @@ -430611,6 +441431,11 @@ "name": "MapleStory R: Evolution", "url": "/v1/games/maplestory-r-evolution" }, + { + "slug": "maplestory-universe", + "name": "MapleStory Universe", + "url": "/v1/games/maplestory-universe" + }, { "slug": "maplestory-worlds", "name": "MapleStory Worlds", @@ -431306,6 +442131,11 @@ "name": "Mare Mare Mare", "url": "/v1/games/mare-mare-mare" }, + { + "slug": "mare-nostrum", + "name": "Mare Nostrum", + "url": "/v1/games/mare-nostrum" + }, { "slug": "mare-nostrvm", "name": "Mare Nostrvm", @@ -431716,11 +442546,21 @@ "name": "Mario + Rabbids Kingdom Battle", "url": "/v1/games/mario-rabbids-kingdom-battle" }, + { + "slug": "mario-rabbids-kingdom-battle-donkey-kong-adventure", + "name": "Mario + Rabbids Kingdom Battle: Donkey Kong Adventure", + "url": "/v1/games/mario-rabbids-kingdom-battle-donkey-kong-adventure" + }, { "slug": "mario-rabbids-sparks-of-hope", "name": "Mario + Rabbids Sparks of Hope", "url": "/v1/games/mario-rabbids-sparks-of-hope" }, + { + "slug": "mario-rabbids-kingdom-battle-gold-edition", + "name": "Mario + Rabbids: Kingdom Battle - Gold Edition", + "url": "/v1/games/mario-rabbids-kingdom-battle-gold-edition" + }, { "slug": "mario-16", "name": "Mario 16", @@ -431851,6 +442691,11 @@ "name": "Mario Kart 8 Deluxe", "url": "/v1/games/mario-kart-8-deluxe" }, + { + "slug": "mario-kart-8-deluxe-booster-course-pass", + "name": "Mario Kart 8 Deluxe – Booster Course Pass", + "url": "/v1/games/mario-kart-8-deluxe-booster-course-pass" + }, { "slug": "mario-kart-arcade-gp", "name": "Mario Kart Arcade GP", @@ -432851,6 +443696,11 @@ "name": "Mars Odyssey", "url": "/v1/games/mars-odyssey" }, + { + "slug": "mars-pack", + "name": "Mars Pack", + "url": "/v1/games/mars-pack" + }, { "slug": "mars-plan", "name": "Mars Plan", @@ -434011,16 +444861,66 @@ "name": "Mass Effect 2", "url": "/v1/games/mass-effect-2" }, + { + "slug": "mass-effect-2-arrival", + "name": "Mass Effect 2: Arrival", + "url": "/v1/games/mass-effect-2-arrival" + }, { "slug": "mass-effect-2-firewalker-pack", "name": "Mass Effect 2: Firewalker Pack", "url": "/v1/games/mass-effect-2-firewalker-pack" }, + { + "slug": "mass-effect-2-kasumi-stolen-memory", + "name": "Mass Effect 2: Kasumi - Stolen Memory", + "url": "/v1/games/mass-effect-2-kasumi-stolen-memory" + }, + { + "slug": "mass-effect-2-lair-of-the-shadow-broker", + "name": "Mass Effect 2: Lair of the Shadow Broker", + "url": "/v1/games/mass-effect-2-lair-of-the-shadow-broker" + }, + { + "slug": "mass-effect-2-overlord", + "name": "Mass Effect 2: Overlord", + "url": "/v1/games/mass-effect-2-overlord" + }, + { + "slug": "mass-effect-2-zaeed-the-price-of-revenge", + "name": "Mass Effect 2: Zaeed - The Price of Revenge", + "url": "/v1/games/mass-effect-2-zaeed-the-price-of-revenge" + }, { "slug": "mass-effect-3", "name": "Mass Effect 3", "url": "/v1/games/mass-effect-3" }, + { + "slug": "mass-effect-3-citadel", + "name": "Mass Effect 3: Citadel", + "url": "/v1/games/mass-effect-3-citadel" + }, + { + "slug": "mass-effect-3-extended-cut", + "name": "Mass Effect 3: Extended Cut", + "url": "/v1/games/mass-effect-3-extended-cut" + }, + { + "slug": "mass-effect-3-from-ashes", + "name": "Mass Effect 3: From Ashes", + "url": "/v1/games/mass-effect-3-from-ashes" + }, + { + "slug": "mass-effect-3-leviathan", + "name": "Mass Effect 3: Leviathan", + "url": "/v1/games/mass-effect-3-leviathan" + }, + { + "slug": "mass-effect-3-omega", + "name": "Mass Effect 3: Omega", + "url": "/v1/games/mass-effect-3-omega" + }, { "slug": "mass-effect-galaxy", "name": "Mass Effect Galaxy", @@ -434036,11 +444936,21 @@ "name": "Mass Effect Legendary Edition", "url": "/v1/games/mass-effect-legendary-edition" }, + { + "slug": "mass-effect-trilogy", + "name": "Mass Effect Trilogy", + "url": "/v1/games/mass-effect-trilogy" + }, { "slug": "mass-effect-andromeda", "name": "Mass Effect: Andromeda", "url": "/v1/games/mass-effect-andromeda" }, + { + "slug": "mass-effect-pinnacle-station", + "name": "Mass Effect: Pinnacle Station", + "url": "/v1/games/mass-effect-pinnacle-station" + }, { "slug": "mass-exodus", "name": "Mass Exodus", @@ -434151,6 +445061,11 @@ "name": "Massive Snowboarding", "url": "/v1/games/massive-snowboarding" }, + { + "slug": "massive-donation", + "name": "Massive donation", + "url": "/v1/games/massive-donation" + }, { "slug": "mast-up-seas-of-desire", "name": "Mast Up! Seas of Desire", @@ -434226,6 +445141,11 @@ "name": "Master Forge", "url": "/v1/games/master-forge" }, + { + "slug": "master-games-1", + "name": "Master Games 1", + "url": "/v1/games/master-games-1" + }, { "slug": "master-hanzi", "name": "Master Hanzi", @@ -434521,6 +445441,11 @@ "name": "Master of Orion III", "url": "/v1/games/master-of-orion-iii" }, + { + "slug": "master-of-orion-conquer-the-stars", + "name": "Master of Orion: Conquer the Stars", + "url": "/v1/games/master-of-orion-conquer-the-stars" + }, { "slug": "master-of-piece", "name": "Master of Piece", @@ -434686,6 +445611,11 @@ "name": "Mastercube", "url": "/v1/games/mastercube" }, + { + "slug": "mastermind-q17286", + "name": "Mastermind", + "url": "/v1/games/mastermind-q17286" + }, { "slug": "mastermine", "name": "Mastermine", @@ -434801,6 +445731,11 @@ "name": "Masterspace", "url": "/v1/games/masterspace" }, + { + "slug": "mastertronic-compilation-5", + "name": "Mastertronic Compilation 5", + "url": "/v1/games/mastertronic-compilation-5" + }, { "slug": "mastery-of-fate-phantom-king-s-rise", "name": "Mastery of Fate: Phantom King's Rise", @@ -434821,6 +445756,11 @@ "name": "Masuzoe Youichi: Asa Made Famicom", "url": "/v1/games/masuzoe-youichi-asa-made-famicom" }, + { + "slug": "masyu", + "name": "Masyu", + "url": "/v1/games/masyu" + }, { "slug": "maszyna-czasu", "name": "Maszyna Czasu", @@ -435121,6 +446061,11 @@ "name": "Matchmania Donate", "url": "/v1/games/matchmania-donate" }, + { + "slug": "matcho", + "name": "Matcho", + "url": "/v1/games/matcho" + }, { "slug": "matchology", "name": "Matchology", @@ -435756,6 +446701,11 @@ "name": "Mattami Restaurant & Cafe Tycoon", "url": "/v1/games/mattami-restaurant-cafe-tycoon" }, + { + "slug": "matter-q6789726", + "name": "Matter", + "url": "/v1/games/matter-q6789726" + }, { "slug": "matter", "name": "Matter", @@ -435896,6 +446846,11 @@ "name": "Maverick Hunter", "url": "/v1/games/maverick-hunter" }, + { + "slug": "mavericks-proving-grounds", + "name": "Mavericks: Proving Grounds", + "url": "/v1/games/mavericks-proving-grounds" + }, { "slug": "maverta", "name": "Maverta", @@ -436101,6 +447056,11 @@ "name": "Max, an Autistic Journey", "url": "/v1/games/max-an-autistic-journey" }, + { + "slug": "max-the-curse-of-brotherhood", + "name": "Max: The Curse of Brotherhood", + "url": "/v1/games/max-the-curse-of-brotherhood" + }, { "slug": "maxplay-classic-games-volume-1", "name": "MaxPlay Classic Games Volume 1", @@ -436206,6 +447166,11 @@ "name": "Maximum Override", "url": "/v1/games/maximum-override" }, + { + "slug": "maximum-pleasure-pack", + "name": "Maximum Pleasure Pack", + "url": "/v1/games/maximum-pleasure-pack" + }, { "slug": "maximum-pool", "name": "Maximum Pool", @@ -437751,6 +448716,11 @@ "name": "Meanings hidden in plain sight", "url": "/v1/games/meanings-hidden-in-plain-sight" }, + { + "slug": "meantime", + "name": "Meantime", + "url": "/v1/games/meantime" + }, { "slug": "meanwhile-an-interactive-comic-book", "name": "Meanwhile: An Interactive Comic Book", @@ -437951,6 +448921,11 @@ "name": "Mech Chip", "url": "/v1/games/mech-chip" }, + { + "slug": "mech-commander-2-hd", + "name": "Mech Commander 2 HD", + "url": "/v1/games/mech-commander-2-hd" + }, { "slug": "mech-commander-gold", "name": "Mech Commander: Gold", @@ -438171,6 +449146,11 @@ "name": "MechWarrior 2: 31st Century Combat", "url": "/v1/games/mechwarrior-2-31st-century-combat" }, + { + "slug": "mechwarrior-2-ghost-bear-s-legacy", + "name": "MechWarrior 2: Ghost Bear's Legacy", + "url": "/v1/games/mechwarrior-2-ghost-bear-s-legacy" + }, { "slug": "mechwarrior-2-mercenaries", "name": "MechWarrior 2: Mercenaries", @@ -438191,6 +449171,11 @@ "name": "MechWarrior 4: Black Knight", "url": "/v1/games/mechwarrior-4-black-knight" }, + { + "slug": "mechwarrior-4-mercenaries", + "name": "MechWarrior 4: Mercenaries", + "url": "/v1/games/mechwarrior-4-mercenaries" + }, { "slug": "mechwarrior-4-vengeance", "name": "MechWarrior 4: Vengeance", @@ -438211,6 +449196,11 @@ "name": "MechWarrior Online", "url": "/v1/games/mechwarrior-online" }, + { + "slug": "mechwarrior-tactics", + "name": "MechWarrior Tactics", + "url": "/v1/games/mechwarrior-tactics" + }, { "slug": "mechwarrior-living-legends", "name": "MechWarrior: Living Legends", @@ -438711,6 +449701,11 @@ "name": "Medal of Honor", "url": "/v1/games/medal-of-honor" }, + { + "slug": "medal-of-honor-allied-assault-war-chest", + "name": "Medal of Honor Allied Assault War Chest", + "url": "/v1/games/medal-of-honor-allied-assault-war-chest" + }, { "slug": "medal-of-honor-above-and-beyond", "name": "Medal of Honor: Above and Beyond", @@ -438841,11 +449836,21 @@ "name": "Medic Mayhem", "url": "/v1/games/medic-mayhem" }, + { + "slug": "medic-night-hunter-skin-pack", + "name": "Medic Night Hunter Skin Pack", + "url": "/v1/games/medic-night-hunter-skin-pack" + }, { "slug": "medic-simulator", "name": "Medic Simulator", "url": "/v1/games/medic-simulator" }, + { + "slug": "medic-victory-skin-pack", + "name": "Medic Victory Skin Pack", + "url": "/v1/games/medic-victory-skin-pack" + }, { "slug": "medic-pacific-war", "name": "Medic: Pacific War", @@ -439071,6 +450076,11 @@ "name": "Medieval II: Total War", "url": "/v1/games/medieval-ii-total-war" }, + { + "slug": "medieval-ii-total-war-kingdoms", + "name": "Medieval II: Total War: Kingdoms", + "url": "/v1/games/medieval-ii-total-war-kingdoms" + }, { "slug": "medieval-idle-quest", "name": "Medieval Idle: Quest", @@ -439146,6 +450156,11 @@ "name": "Medieval Mayhem", "url": "/v1/games/medieval-mayhem" }, + { + "slug": "medieval-mayor", + "name": "Medieval Mayor", + "url": "/v1/games/medieval-mayor" + }, { "slug": "medieval-mercs", "name": "Medieval Mercs", @@ -439246,6 +450261,11 @@ "name": "Medieval Story", "url": "/v1/games/medieval-story" }, + { + "slug": "medieval-tales-dlc", + "name": "Medieval Tales DLC", + "url": "/v1/games/medieval-tales-dlc" + }, { "slug": "medieval-tales-solitaire", "name": "Medieval Tales Solitaire", @@ -439296,6 +450316,11 @@ "name": "Medieval: Total War", "url": "/v1/games/medieval-total-war" }, + { + "slug": "medieval-total-war-viking-invasion", + "name": "Medieval: Total War – Viking Invasion", + "url": "/v1/games/medieval-total-war-viking-invasion" + }, { "slug": "medievalien", "name": "Medievalien", @@ -439891,6 +450916,16 @@ "name": "Mega Man IV", "url": "/v1/games/mega-man-iv" }, + { + "slug": "mega-man-legacy-collection", + "name": "Mega Man Legacy Collection", + "url": "/v1/games/mega-man-legacy-collection" + }, + { + "slug": "mega-man-legacy-collection-2", + "name": "Mega Man Legacy Collection 2", + "url": "/v1/games/mega-man-legacy-collection-2" + }, { "slug": "mega-man-legends", "name": "Mega Man Legends", @@ -439901,11 +450936,21 @@ "name": "Mega Man Legends 2", "url": "/v1/games/mega-man-legends-2" }, + { + "slug": "mega-man-legends-3", + "name": "Mega Man Legends 3", + "url": "/v1/games/mega-man-legends-3" + }, { "slug": "mega-man-maker", "name": "Mega Man Maker", "url": "/v1/games/mega-man-maker" }, + { + "slug": "mega-man-mania", + "name": "Mega Man Mania", + "url": "/v1/games/mega-man-mania" + }, { "slug": "mega-man-maverick-hunter-x", "name": "Mega Man Maverick Hunter X", @@ -439986,6 +451031,11 @@ "name": "Mega Man Star Force: Pegasus", "url": "/v1/games/mega-man-star-force-pegasus" }, + { + "slug": "mega-man-universe", + "name": "Mega Man Universe", + "url": "/v1/games/mega-man-universe" + }, { "slug": "mega-man-unlimited", "name": "Mega Man Unlimited", @@ -440016,6 +451066,11 @@ "name": "Mega Man X Legacy Collection", "url": "/v1/games/mega-man-x-legacy-collection" }, + { + "slug": "mega-man-x-legacy-collection-1-2", + "name": "Mega Man X Legacy Collection 1 + 2", + "url": "/v1/games/mega-man-x-legacy-collection-1-2" + }, { "slug": "mega-man-x2", "name": "Mega Man X2", @@ -440101,6 +451156,11 @@ "name": "Mega Man Zero 4", "url": "/v1/games/mega-man-zero-4" }, + { + "slug": "mega-man-zero-collection", + "name": "Mega Man Zero Collection", + "url": "/v1/games/mega-man-zero-collection" + }, { "slug": "mega-man-zero-zx-legacy-collection", "name": "Mega Man Zero/ZX Legacy Collection", @@ -440116,11 +451176,21 @@ "name": "Mega Man: Dr. Wily's Revenge", "url": "/v1/games/mega-man-dr-wily-s-revenge" }, + { + "slug": "mega-man-legacy-collection-1-2-combo-pack", + "name": "Mega Man: Legacy Collection 1 & 2 Combo Pack", + "url": "/v1/games/mega-man-legacy-collection-1-2-combo-pack" + }, { "slug": "mega-man-the-power-battle", "name": "Mega Man: The Power Battle", "url": "/v1/games/mega-man-the-power-battle" }, + { + "slug": "mega-man-the-wily-wars", + "name": "Mega Man: The Wily Wars", + "url": "/v1/games/mega-man-the-wily-wars" + }, { "slug": "mega-maze", "name": "Mega Maze", @@ -441301,6 +452371,11 @@ "name": "Meme Mayhem", "url": "/v1/games/meme-mayhem" }, + { + "slug": "meme-mayhem-demo", + "name": "Meme Mayhem Demo", + "url": "/v1/games/meme-mayhem-demo" + }, { "slug": "meme-quiz", "name": "Meme Quiz", @@ -441496,6 +452571,11 @@ "name": "Memorial Park of Hypoxia", "url": "/v1/games/memorial-park-of-hypoxia" }, + { + "slug": "memorial-series", + "name": "Memorial Series", + "url": "/v1/games/memorial-series" + }, { "slug": "memorial-song", "name": "Memorial Song", @@ -442201,6 +453281,11 @@ "name": "Menace from the Deep", "url": "/v1/games/menace-from-the-deep" }, + { + "slug": "menacer-6-game-cartridge", + "name": "Menacer 6-game cartridge", + "url": "/v1/games/menacer-6-game-cartridge" + }, { "slug": "menagerie-ii-presentable-liberty", "name": "Menagerie II: Presentable Liberty", @@ -442671,6 +453756,11 @@ "name": "Meowventures - Inside The Mirror Realm", "url": "/v1/games/meowventures-inside-the-mirror-realm" }, + { + "slug": "mephisto", + "name": "Mephisto", + "url": "/v1/games/mephisto" + }, { "slug": "merfight", "name": "MerFight", @@ -442856,6 +453946,11 @@ "name": "Mercenary Warriors", "url": "/v1/games/mercenary-warriors" }, + { + "slug": "mercenary-of-the-dark-future", + "name": "Mercenary of the Dark Future", + "url": "/v1/games/mercenary-of-the-dark-future" + }, { "slug": "mercenary-the-second-city", "name": "Mercenary: The Second City", @@ -442991,6 +454086,11 @@ "name": "Mercs Fully Loaded", "url": "/v1/games/mercs-fully-loaded" }, + { + "slug": "mercs-inc-q6818521", + "name": "Mercs Inc", + "url": "/v1/games/mercs-inc-q6818521" + }, { "slug": "mercuria-mizu-no-miyako-ni-koi-no-hanataba-o", "name": "Mercuria ~Mizu no Miyako ni Koi no Hanataba o~", @@ -443076,6 +454176,11 @@ "name": "Merely a Regret", "url": "/v1/games/merely-a-regret" }, + { + "slug": "meren-hengitys", + "name": "Meren hengitys", + "url": "/v1/games/meren-hengitys" + }, { "slug": "mereonozis-2d-the-kingdom-of-gremlins", "name": "Mereonozis 2D: The Kingdom of Gremlins", @@ -443996,11 +455101,26 @@ "name": "Metal Gear Online", "url": "/v1/games/metal-gear-online" }, + { + "slug": "metal-gear-rising-revengeance-ultimate-edition", + "name": "Metal Gear Rising Revengeance Ultimate Edition", + "url": "/v1/games/metal-gear-rising-revengeance-ultimate-edition" + }, { "slug": "metal-gear-rising-revengeance", "name": "Metal Gear Rising: Revengeance", "url": "/v1/games/metal-gear-rising-revengeance" }, + { + "slug": "metal-gear-rising-revengeance-blade-wolf", + "name": "Metal Gear Rising: Revengeance - Blade Wolf", + "url": "/v1/games/metal-gear-rising-revengeance-blade-wolf" + }, + { + "slug": "metal-gear-rising-revengeance-jetstream", + "name": "Metal Gear Rising: Revengeance - Jetstream", + "url": "/v1/games/metal-gear-rising-revengeance-jetstream" + }, { "slug": "metal-gear-solid-q6582527", "name": "Metal Gear Solid", @@ -444081,6 +455201,16 @@ "name": "Metal Gear Solid: Digital Graphic Novel", "url": "/v1/games/metal-gear-solid-digital-graphic-novel" }, + { + "slug": "metal-gear-solid-hd-edition", + "name": "Metal Gear Solid: HD Edition", + "url": "/v1/games/metal-gear-solid-hd-edition" + }, + { + "slug": "metal-gear-solid-master-collection-vol-1", + "name": "Metal Gear Solid: Master Collection Vol. 1", + "url": "/v1/games/metal-gear-solid-master-collection-vol-1" + }, { "slug": "metal-gear-solid-peace-walker", "name": "Metal Gear Solid: Peace Walker", @@ -444111,6 +455241,11 @@ "name": "Metal Gear Solid: Social Ops", "url": "/v1/games/metal-gear-solid-social-ops" }, + { + "slug": "metal-gear-solid-the-legacy-collection", + "name": "Metal Gear Solid: The Legacy Collection", + "url": "/v1/games/metal-gear-solid-the-legacy-collection" + }, { "slug": "metal-gear-solid-the-twin-snakes", "name": "Metal Gear Solid: The Twin Snakes", @@ -444181,6 +455316,11 @@ "name": "Metal Knight", "url": "/v1/games/metal-knight" }, + { + "slug": "metal-knight-dark-front", + "name": "Metal Knight: Dark Front", + "url": "/v1/games/metal-knight-dark-front" + }, { "slug": "metal-kombat", "name": "Metal Kombat", @@ -444261,6 +455401,11 @@ "name": "Metal Max: Fireworks", "url": "/v1/games/metal-max-fireworks" }, + { + "slug": "metal-max-wild-west", + "name": "Metal Max: Wild West", + "url": "/v1/games/metal-max-wild-west" + }, { "slug": "metal-mech", "name": "Metal Mech", @@ -444426,6 +455571,11 @@ "name": "Metal Slug Mobile Impact", "url": "/v1/games/metal-slug-mobile-impact" }, + { + "slug": "metal-slug-pc-collection", + "name": "Metal Slug PC Collection", + "url": "/v1/games/metal-slug-pc-collection" + }, { "slug": "metal-slug-tactics", "name": "Metal Slug Tactics", @@ -444441,6 +455591,11 @@ "name": "Metal Slug XX", "url": "/v1/games/metal-slug-xx" }, + { + "slug": "metal-slug-zero-online", + "name": "Metal Slug Zero Online", + "url": "/v1/games/metal-slug-zero-online" + }, { "slug": "metal-slug-awakening", "name": "Metal Slug: Awakening", @@ -445246,6 +456401,11 @@ "name": "Metro: Last Light Redux", "url": "/v1/games/metro-last-light-redux" }, + { + "slug": "metro-last-light-complete-edition", + "name": "Metro: Last Light – Complete Edition", + "url": "/v1/games/metro-last-light-complete-edition" + }, { "slug": "metroland-q135059359", "name": "MetroLand", @@ -445286,6 +456446,11 @@ "name": "Metroid", "url": "/v1/games/metroid" }, + { + "slug": "metroid-64", + "name": "Metroid 64", + "url": "/v1/games/metroid-64" + }, { "slug": "metroid-dread", "name": "Metroid Dread", @@ -445341,6 +456506,11 @@ "name": "Metroid Prime: Federation Force", "url": "/v1/games/metroid-prime-federation-force" }, + { + "slug": "metroid-prime-trilogy", + "name": "Metroid Prime: Trilogy", + "url": "/v1/games/metroid-prime-trilogy" + }, { "slug": "metroid-other-m", "name": "Metroid: Other M", @@ -445576,6 +456746,16 @@ "name": "Mi Scusi", "url": "/v1/games/mi-scusi" }, + { + "slug": "mi-8mtv2-oilfield-campaign", + "name": "Mi-8MTV2: Oilfield Campaign", + "url": "/v1/games/mi-8mtv2-oilfield-campaign" + }, + { + "slug": "mi-8mtv2-the-border-campaign", + "name": "Mi-8MTV2: The Border Campaign", + "url": "/v1/games/mi-8mtv2-the-border-campaign" + }, { "slug": "mi-ko-ko-n", "name": "Mi-ko-ko-n", @@ -445611,6 +456791,11 @@ "name": "MiG-29 Fulcrum", "url": "/v1/games/mig-29-fulcrum" }, + { + "slug": "mig-29-for-dcs-world", + "name": "MiG-29 for DCS World", + "url": "/v1/games/mig-29-for-dcs-world" + }, { "slug": "mig-29-fighter-pilot", "name": "MiG-29: Fighter Pilot", @@ -446481,6 +457666,11 @@ "name": "Microsoft Ants", "url": "/v1/games/microsoft-ants" }, + { + "slug": "microsoft-arcade", + "name": "Microsoft Arcade", + "url": "/v1/games/microsoft-arcade" + }, { "slug": "microsoft-art-gallery", "name": "Microsoft Art Gallery", @@ -446506,6 +457696,11 @@ "name": "Microsoft Bubbles", "url": "/v1/games/microsoft-bubbles" }, + { + "slug": "microsoft-children-s-miracle-network-games-bundle", + "name": "Microsoft Children's Miracle Network Games Bundle", + "url": "/v1/games/microsoft-children-s-miracle-network-games-bundle" + }, { "slug": "microsoft-combat-flight-simulator", "name": "Microsoft Combat Flight Simulator", @@ -446521,6 +457716,11 @@ "name": "Microsoft Entertainment Pack", "url": "/v1/games/microsoft-entertainment-pack" }, + { + "slug": "microsoft-entertainment-pack-1", + "name": "Microsoft Entertainment Pack 1", + "url": "/v1/games/microsoft-entertainment-pack-1" + }, { "slug": "microsoft-entertainment-pack-the-puzzle-collection", "name": "Microsoft Entertainment Pack: The Puzzle Collection", @@ -446601,11 +457801,21 @@ "name": "Microsoft Flight Simulator X", "url": "/v1/games/microsoft-flight-simulator-x" }, + { + "slug": "microsoft-flight-simulator-x-acceleration", + "name": "Microsoft Flight Simulator X: Acceleration", + "url": "/v1/games/microsoft-flight-simulator-x-acceleration" + }, { "slug": "microsoft-flight-simulator-for-windows-95", "name": "Microsoft Flight Simulator for Windows 95", "url": "/v1/games/microsoft-flight-simulator-for-windows-95" }, + { + "slug": "microsoft-flight-simulator-top-gun-maverick", + "name": "Microsoft Flight Simulator: Top Gun Maverick", + "url": "/v1/games/microsoft-flight-simulator-top-gun-maverick" + }, { "slug": "microsoft-freecell", "name": "Microsoft FreeCell", @@ -446671,6 +457881,11 @@ "name": "Microsoft Return of Arcade", "url": "/v1/games/microsoft-return-of-arcade" }, + { + "slug": "microsoft-revenge-of-arcade", + "name": "Microsoft Revenge of Arcade", + "url": "/v1/games/microsoft-revenge-of-arcade" + }, { "slug": "microsoft-reversi", "name": "Microsoft Reversi", @@ -446736,6 +457951,11 @@ "name": "Microworld", "url": "/v1/games/microworld" }, + { + "slug": "mictlan-an-ancient-mythical-tale", + "name": "Mictlan: An Ancient Mythical Tale", + "url": "/v1/games/mictlan-an-ancient-mythical-tale" + }, { "slug": "mid", "name": "Mid", @@ -446831,6 +458051,16 @@ "name": "Middle-earth: Shadow of Mordor", "url": "/v1/games/middle-earth-shadow-of-mordor" }, + { + "slug": "middle-earth-shadow-of-mordor-game-of-the-year-edition", + "name": "Middle-earth: Shadow of Mordor - Game of the Year Edition", + "url": "/v1/games/middle-earth-shadow-of-mordor-game-of-the-year-edition" + }, + { + "slug": "middle-earth-shadow-of-mordor-lord-of-the-hunt", + "name": "Middle-earth: Shadow of Mordor - Lord of the Hunt", + "url": "/v1/games/middle-earth-shadow-of-mordor-lord-of-the-hunt" + }, { "slug": "middle-earth-shadow-of-war-q103708144", "name": "Middle-earth: Shadow of War", @@ -446891,6 +458121,11 @@ "name": "Midnight Alert", "url": "/v1/games/midnight-alert" }, + { + "slug": "midnight-animal", + "name": "Midnight Animal", + "url": "/v1/games/midnight-animal" + }, { "slug": "midnight-arcade", "name": "Midnight Arcade", @@ -447671,6 +458906,11 @@ "name": "Midway's Greatest Arcade Hits", "url": "/v1/games/midway-s-greatest-arcade-hits" }, + { + "slug": "midway-s-greatest-arcade-hits-volume-i", + "name": "Midway's Greatest Arcade Hits Volume I", + "url": "/v1/games/midway-s-greatest-arcade-hits-volume-i" + }, { "slug": "midway-the-battle-that-doomed-japan", "name": "Midway: The Battle that Doomed Japan", @@ -447876,6 +459116,11 @@ "name": "Might and Magic: Heroes VII – Trial by Fire", "url": "/v1/games/might-and-magic-heroes-vii-trial-by-fire" }, + { + "slug": "might-and-magic-world-of-xeen", + "name": "Might and Magic: World of Xeen", + "url": "/v1/games/might-and-magic-world-of-xeen" + }, { "slug": "might-is-right", "name": "Might is Right", @@ -448546,6 +459791,11 @@ "name": "Milestone Shooting Collection 2", "url": "/v1/games/milestone-shooting-collection-2" }, + { + "slug": "milestones-q126186572", + "name": "Milestones", + "url": "/v1/games/milestones-q126186572" + }, { "slug": "milestones", "name": "Milestones", @@ -449121,6 +460371,11 @@ "name": "Millionaire Trivia: TV Game", "url": "/v1/games/millionaire-trivia-tv-game" }, + { + "slug": "millionaire-trivia-tv-game-q122704832", + "name": "Millionaire Trivia: TV Game+", + "url": "/v1/games/millionaire-trivia-tv-game-q122704832" + }, { "slug": "millionaire-the-stock-market-simulation", "name": "Millionaire: The Stock Market Simulation", @@ -450216,6 +461471,11 @@ "name": "Minecraft Dungeons", "url": "/v1/games/minecraft-dungeons" }, + { + "slug": "minecraft-dungeons-flames-of-the-nether", + "name": "Minecraft Dungeons: Flames of the Nether", + "url": "/v1/games/minecraft-dungeons-flames-of-the-nether" + }, { "slug": "minecraft-dungeons-hidden-depths", "name": "Minecraft Dungeons: Hidden Depths", @@ -451091,6 +462351,11 @@ "name": "Mini Metro", "url": "/v1/games/mini-metro" }, + { + "slug": "mini-metro-q106750525", + "name": "Mini Metro+", + "url": "/v1/games/mini-metro-q106750525" + }, { "slug": "mini-micro-racing", "name": "Mini Micro Racing", @@ -451181,6 +462446,11 @@ "name": "Mini Racer: Mini 4WD", "url": "/v1/games/mini-racer-mini-4wd" }, + { + "slug": "mini-racers", + "name": "Mini Racers", + "url": "/v1/games/mini-racers" + }, { "slug": "mini-racing-online", "name": "Mini Racing Online", @@ -451661,6 +462931,11 @@ "name": "Minigames Mayhem", "url": "/v1/games/minigames-mayhem" }, + { + "slug": "minigo", + "name": "Minigo", + "url": "/v1/games/minigo" + }, { "slug": "minigolf-q126187881", "name": "Minigolf", @@ -452371,6 +463646,11 @@ "name": "Miracle Journey - 3D Find Differences", "url": "/v1/games/miracle-journey-3d-find-differences" }, + { + "slug": "miracle-juggler", + "name": "Miracle Juggler", + "url": "/v1/games/miracle-juggler" + }, { "slug": "miracle-merchant", "name": "Miracle Merchant", @@ -452561,6 +463841,11 @@ "name": "Miraibo GO", "url": "/v1/games/miraibo-go" }, + { + "slug": "mirakl", + "name": "Mirakl", + "url": "/v1/games/mirakl" + }, { "slug": "miramar", "name": "Miramar", @@ -452746,6 +464031,26 @@ "name": "Mirror's Edge", "url": "/v1/games/mirror-s-edge" }, + { + "slug": "mirror-s-edge-catalyst-collector-s-edition", + "name": "Mirror's Edge: Catalyst (Collector's Edition)", + "url": "/v1/games/mirror-s-edge-catalyst-collector-s-edition" + }, + { + "slug": "mirror-s-edge-catalyst-combat-runner-kit", + "name": "Mirror's Edge: Catalyst - Combat Runner Kit", + "url": "/v1/games/mirror-s-edge-catalyst-combat-runner-kit" + }, + { + "slug": "mirror-s-edge-catalyst-speed-runner-kit", + "name": "Mirror's Edge: Catalyst - Speed Runner Kit", + "url": "/v1/games/mirror-s-edge-catalyst-speed-runner-kit" + }, + { + "slug": "mirror-s-edge-catalyst-runner-kit-bundle", + "name": "Mirror's Edge™ Catalyst Runner Kit Bundle", + "url": "/v1/games/mirror-s-edge-catalyst-runner-kit-bundle" + }, { "slug": "mirrormoon-ep", "name": "MirrorMoon EP", @@ -454151,6 +465456,11 @@ "name": "Mitch", "url": "/v1/games/mitch" }, + { + "slug": "mitch-s-mess", + "name": "Mitch's Mess", + "url": "/v1/games/mitch-s-mess" + }, { "slug": "mitch-berry-challenge", "name": "Mitch: Berry Challenge", @@ -455131,6 +466441,11 @@ "name": "Moccoletti", "url": "/v1/games/moccoletti" }, + { + "slug": "mocha-doom", + "name": "Mocha Doom", + "url": "/v1/games/mocha-doom" + }, { "slug": "mochi-conquest", "name": "Mochi Conquest", @@ -455141,6 +466456,11 @@ "name": "Mochi Jump", "url": "/v1/games/mochi-jump" }, + { + "slug": "mochi-mayhem", + "name": "Mochi Mayhem", + "url": "/v1/games/mochi-mayhem" + }, { "slug": "mochi-mochi-boy", "name": "Mochi Mochi Boy", @@ -455931,6 +467251,11 @@ "name": "Mole Mania", "url": "/v1/games/mole-mania" }, + { + "slug": "mole-manor", + "name": "Mole Manor", + "url": "/v1/games/mole-manor" + }, { "slug": "mole-mayhem", "name": "Mole Mayhem", @@ -456836,6 +468161,11 @@ "name": "MoneyFalls - Coin Pusher Simulator", "url": "/v1/games/moneyfalls-coin-pusher-simulator" }, + { + "slug": "moneyshot-pack", + "name": "Moneyshot Pack", + "url": "/v1/games/moneyshot-pack" + }, { "slug": "mongil-star-dive", "name": "Mongil: Star Dive", @@ -457021,6 +468351,16 @@ "name": "Monkey Island 2: LeChuck's Revenge", "url": "/v1/games/monkey-island-2-lechuck-s-revenge" }, + { + "slug": "monkey-island-madness", + "name": "Monkey Island Madness", + "url": "/v1/games/monkey-island-madness" + }, + { + "slug": "monkey-island-special", + "name": "Monkey Island Special", + "url": "/v1/games/monkey-island-special" + }, { "slug": "monkey-king-escape", "name": "Monkey King Escape", @@ -457396,6 +468736,11 @@ "name": "Monolit", "url": "/v1/games/monolit" }, + { + "slug": "monolith-q110817192", + "name": "Monolith", + "url": "/v1/games/monolith-q110817192" + }, { "slug": "monolith-q134990621", "name": "Monolith", @@ -458086,6 +469431,11 @@ "name": "Monster Girl Invasion RPG", "url": "/v1/games/monster-girl-invasion-rpg" }, + { + "slug": "monster-girl-island-prologue", + "name": "Monster Girl Island: Prologue", + "url": "/v1/games/monster-girl-island-prologue" + }, { "slug": "monster-girl-maker", "name": "Monster Girl Maker", @@ -458251,6 +469601,11 @@ "name": "Monster Hunter Freedom 2", "url": "/v1/games/monster-hunter-freedom-2" }, + { + "slug": "monster-hunter-freedom-unite", + "name": "Monster Hunter Freedom Unite", + "url": "/v1/games/monster-hunter-freedom-unite" + }, { "slug": "monster-hunter-frontier-online", "name": "Monster Hunter Frontier Online", @@ -458296,6 +469651,11 @@ "name": "Monster Hunter Rise", "url": "/v1/games/monster-hunter-rise" }, + { + "slug": "monster-hunter-rise-sunbreak", + "name": "Monster Hunter Rise: Sunbreak", + "url": "/v1/games/monster-hunter-rise-sunbreak" + }, { "slug": "monster-hunter-rise-sunbreak-demo", "name": "Monster Hunter Rise: Sunbreak Demo", @@ -458311,6 +469671,11 @@ "name": "Monster Hunter Stories 2: Wings of Ruin", "url": "/v1/games/monster-hunter-stories-2-wings-of-ruin" }, + { + "slug": "monster-hunter-stories-q107611422", + "name": "Monster Hunter Stories+", + "url": "/v1/games/monster-hunter-stories-q107611422" + }, { "slug": "monster-hunter-wilds", "name": "Monster Hunter Wilds", @@ -458776,6 +470141,11 @@ "name": "Monster Prom 4: Monster Con", "url": "/v1/games/monster-prom-4-monster-con" }, + { + "slug": "monster-prom-second-term", + "name": "Monster Prom: Second Term", + "url": "/v1/games/monster-prom-second-term" + }, { "slug": "monster-pub", "name": "Monster Pub", @@ -459866,11 +471236,21 @@ "name": "Monument Valley 2", "url": "/v1/games/monument-valley-2" }, + { + "slug": "monument-valley-2-q111154332", + "name": "Monument Valley 2+", + "url": "/v1/games/monument-valley-2-q111154332" + }, { "slug": "monument-valley-3", "name": "Monument Valley 3", "url": "/v1/games/monument-valley-3" }, + { + "slug": "monument-valley-q107349527", + "name": "Monument Valley+", + "url": "/v1/games/monument-valley-q107349527" + }, { "slug": "monument-village", "name": "Monument village", @@ -461031,6 +472411,11 @@ "name": "MopGarden's Veggie Cart", "url": "/v1/games/mopgarden-s-veggie-cart" }, + { + "slug": "mope-io", + "name": "Mope.io", + "url": "/v1/games/mope-io" + }, { "slug": "mopi-ranger", "name": "Mopi Ranger", @@ -461711,6 +473096,16 @@ "name": "Mortal Kombat 11", "url": "/v1/games/mortal-kombat-11" }, + { + "slug": "mortal-kombat-11-ultimate-edition", + "name": "Mortal Kombat 11: Ultimate Edition", + "url": "/v1/games/mortal-kombat-11-ultimate-edition" + }, + { + "slug": "mortal-kombat-12", + "name": "Mortal Kombat 12", + "url": "/v1/games/mortal-kombat-12" + }, { "slug": "mortal-kombat-3", "name": "Mortal Kombat 3", @@ -461726,6 +473121,11 @@ "name": "Mortal Kombat Advance", "url": "/v1/games/mortal-kombat-advance" }, + { + "slug": "mortal-kombat-arcade-kollection", + "name": "Mortal Kombat Arcade Kollection", + "url": "/v1/games/mortal-kombat-arcade-kollection" + }, { "slug": "mortal-kombat-gold", "name": "Mortal Kombat Gold", @@ -461766,6 +473166,11 @@ "name": "Mortal Kombat X", "url": "/v1/games/mortal-kombat-x" }, + { + "slug": "mortal-kombat-xl-pack", + "name": "Mortal Kombat XL Pack", + "url": "/v1/games/mortal-kombat-xl-pack" + }, { "slug": "mortal-kombat-vs-dc-universe", "name": "Mortal Kombat vs. DC Universe", @@ -461786,6 +473191,11 @@ "name": "Mortal Kombat: Deception", "url": "/v1/games/mortal-kombat-deception" }, + { + "slug": "mortal-kombat-legacy-kollection", + "name": "Mortal Kombat: Legacy Kollection", + "url": "/v1/games/mortal-kombat-legacy-kollection" + }, { "slug": "mortal-kombat-onslaught", "name": "Mortal Kombat: Onslaught", @@ -461861,6 +473271,11 @@ "name": "Mortal Shell: Enhanced Edition", "url": "/v1/games/mortal-shell-enhanced-edition" }, + { + "slug": "mortal-shell-the-virtuous-cycle", + "name": "Mortal Shell: The Virtuous Cycle", + "url": "/v1/games/mortal-shell-the-virtuous-cycle" + }, { "slug": "mortal-sin", "name": "Mortal Sin", @@ -462406,6 +473821,11 @@ "name": "Mother", "url": "/v1/games/mother" }, + { + "slug": "mother-1-2", + "name": "Mother 1 + 2", + "url": "/v1/games/mother-1-2" + }, { "slug": "mother-3", "name": "Mother 3", @@ -462471,6 +473891,11 @@ "name": "Mother Stone", "url": "/v1/games/mother-stone" }, + { + "slug": "mother-of-all-secrets", + "name": "Mother of All Secrets", + "url": "/v1/games/mother-of-all-secrets" + }, { "slug": "mother-s-embrace", "name": "Mother's Embrace", @@ -462666,6 +474091,11 @@ "name": "Moto Racer Advance", "url": "/v1/games/moto-racer-advance" }, + { + "slug": "moto-racer-collection", + "name": "Moto Racer Collection", + "url": "/v1/games/moto-racer-collection" + }, { "slug": "moto-racer-ds", "name": "Moto Racer DS", @@ -463326,6 +474756,11 @@ "name": "Mount & Blade: Warband - Napoleonic Wars", "url": "/v1/games/mount-blade-warband-napoleonic-wars" }, + { + "slug": "mount-blade-with-fire-sword", + "name": "Mount & Blade: With Fire & Sword", + "url": "/v1/games/mount-blade-with-fire-sword" + }, { "slug": "mount-and-sword", "name": "Mount And Sword", @@ -463351,6 +474786,11 @@ "name": "Mount Serenity: Guardian of the Spirits", "url": "/v1/games/mount-serenity-guardian-of-the-spirits" }, + { + "slug": "mount-tepid", + "name": "Mount Tepid", + "url": "/v1/games/mount-tepid" + }, { "slug": "mount-wingsuit", "name": "Mount Wingsuit", @@ -463891,6 +475331,11 @@ "name": "Moves Of The Diamond Hand", "url": "/v1/games/moves-of-the-diamond-hand" }, + { + "slug": "movidle", + "name": "Movidle", + "url": "/v1/games/movidle" + }, { "slug": "movie-actor-trivia", "name": "Movie Actor Trivia", @@ -463946,6 +475391,11 @@ "name": "MovieCat!", "url": "/v1/games/moviecat" }, + { + "slug": "moviestarplanet", + "name": "MovieStarPlanet", + "url": "/v1/games/moviestarplanet" + }, { "slug": "moviehouse-the-film-studio-tycoon", "name": "Moviehouse – The Film Studio Tycoon", @@ -464706,6 +476156,11 @@ "name": "Mr. Sleepy Man", "url": "/v1/games/mr-sleepy-man" }, + { + "slug": "mr-smiley-head-s-safari-2", + "name": "Mr. Smiley Head's Safari 2", + "url": "/v1/games/mr-smiley-head-s-safari-2" + }, { "slug": "mr-stretch-and-the-stolen-fortune", "name": "Mr. Stretch and the Stolen Fortune", @@ -465001,6 +476456,11 @@ "name": "Ms.LemonS", "url": "/v1/games/ms-lemons" }, + { + "slug": "mt-travail", + "name": "Mt. Travail", + "url": "/v1/games/mt-travail" + }, { "slug": "mtn-chaos", "name": "Mtn Chaos", @@ -465381,6 +476841,16 @@ "name": "Mulite Sword Man", "url": "/v1/games/mulite-sword-man" }, + { + "slug": "mulle-meck-builds-a-car", + "name": "Mulle Meck Builds a Car", + "url": "/v1/games/mulle-meck-builds-a-car" + }, + { + "slug": "mulle-meck-builds-a-boat", + "name": "Mulle Meck builds a boat", + "url": "/v1/games/mulle-meck-builds-a-boat" + }, { "slug": "mulle-meck-s-boats", "name": "Mulle Meck's Boats", @@ -465426,6 +476896,21 @@ "name": "Multi Idle", "url": "/v1/games/multi-idle" }, + { + "slug": "multi-theft-auto", + "name": "Multi Theft Auto", + "url": "/v1/games/multi-theft-auto" + }, + { + "slug": "multi-theft-auto-san-andreas", + "name": "Multi Theft Auto: San Andreas", + "url": "/v1/games/multi-theft-auto-san-andreas" + }, + { + "slug": "multi-theft-auto-vice-city", + "name": "Multi Theft Auto: Vice City", + "url": "/v1/games/multi-theft-auto-vice-city" + }, { "slug": "multi-turret-academy", "name": "Multi Turret Academy", @@ -465521,6 +477006,11 @@ "name": "Multibombers", "url": "/v1/games/multibombers" }, + { + "slug": "multibowl", + "name": "Multibowl", + "url": "/v1/games/multibowl" + }, { "slug": "multicatan", "name": "Multicatan", @@ -465776,6 +477266,11 @@ "name": "Multiwinia", "url": "/v1/games/multiwinia" }, + { + "slug": "multiwinia-demo", + "name": "Multiwinia Demo", + "url": "/v1/games/multiwinia-demo" + }, { "slug": "multiworlds", "name": "Multiworlds", @@ -465951,6 +477446,11 @@ "name": "Mundial de Fútbol", "url": "/v1/games/mundial-de-f-tbol" }, + { + "slug": "mundo-gaturro", + "name": "Mundo Gaturro", + "url": "/v1/games/mundo-gaturro" + }, { "slug": "mundus-impossible-universe", "name": "Mundus - Impossible Universe", @@ -466226,6 +477726,16 @@ "name": "Murder Miners X", "url": "/v1/games/murder-miners-x" }, + { + "slug": "murder-mystery-2-q135721427", + "name": "Murder Mystery 2", + "url": "/v1/games/murder-mystery-2-q135721427" + }, + { + "slug": "murder-mystery-2", + "name": "Murder Mystery 2", + "url": "/v1/games/murder-mystery-2" + }, { "slug": "murder-mystery-adventure", "name": "Murder Mystery Adventure", @@ -467776,6 +479286,11 @@ "name": "Mutus Meteora", "url": "/v1/games/mutus-meteora" }, + { + "slug": "muumipappa-kalassa", + "name": "Muumipappa kalassa", + "url": "/v1/games/muumipappa-kalassa" + }, { "slug": "muumit-ja-taikurin-hattu", "name": "Muumit ja Taikurin hattu", @@ -468111,6 +479626,11 @@ "name": "My Bowling 3D", "url": "/v1/games/my-bowling-3d" }, + { + "slug": "my-bowling-3d-q113660205", + "name": "My Bowling 3D+", + "url": "/v1/games/my-bowling-3d-q113660205" + }, { "slug": "my-boyfriend-is-a-martian", "name": "My Boyfriend is a Martian👰❤️👽", @@ -468791,6 +480311,11 @@ "name": "My Friend Peppa Pig", "url": "/v1/games/my-friend-peppa-pig" }, + { + "slug": "my-friend-peppa-pig-complete-edition", + "name": "My Friend Peppa Pig - Complete Edition", + "url": "/v1/games/my-friend-peppa-pig-complete-edition" + }, { "slug": "my-friend-stalin", "name": "My Friend Stalin", @@ -469836,6 +481361,11 @@ "name": "My NAUGHTY Shotgun", "url": "/v1/games/my-naughty-shotgun" }, + { + "slug": "my-nba-2k23", + "name": "My NBA 2K23", + "url": "/v1/games/my-nba-2k23" + }, { "slug": "my-name-is-mayo-2", "name": "My Name Is Mayo 2", @@ -470541,6 +482071,11 @@ "name": "My Talking Angela 2", "url": "/v1/games/my-talking-angela-2" }, + { + "slug": "my-talking-angela-2-q122699733", + "name": "My Talking Angela 2+", + "url": "/v1/games/my-talking-angela-2-q122699733" + }, { "slug": "my-talking-hank-islands", "name": "My Talking Hank: Islands", @@ -470566,6 +482101,11 @@ "name": "My Talking Tom Friends 2", "url": "/v1/games/my-talking-tom-friends-2" }, + { + "slug": "my-talking-tom-q113509687", + "name": "My Talking Tom+", + "url": "/v1/games/my-talking-tom-q113509687" + }, { "slug": "my-tamagotchi-forever", "name": "My Tamagotchi Forever", @@ -471101,6 +482641,11 @@ "name": "MyLittlePool", "url": "/v1/games/mylittlepool" }, + { + "slug": "myminicity", + "name": "MyMiniCity", + "url": "/v1/games/myminicity" + }, { "slug": "mypawnshop", "name": "MyPawnShop", @@ -471146,6 +482691,16 @@ "name": "MySims SkyHeroes", "url": "/v1/games/mysims-skyheroes" }, + { + "slug": "mysims-social", + "name": "MySims Social", + "url": "/v1/games/mysims-social" + }, + { + "slug": "mysims-cozy-bundle", + "name": "MySims: Cozy Bundle", + "url": "/v1/games/mysims-cozy-bundle" + }, { "slug": "mytavern", "name": "MyTavern", @@ -471356,6 +482911,11 @@ "name": "Myst IV: Revelation", "url": "/v1/games/myst-iv-revelation" }, + { + "slug": "myst-online-uru-live", + "name": "Myst Online: Uru Live", + "url": "/v1/games/myst-online-uru-live" + }, { "slug": "myst-v-end-of-ages", "name": "Myst V: End of Ages", @@ -473756,6 +485316,11 @@ "name": "NAMELESS", "url": "/v1/games/nameless-q134965726" }, + { + "slug": "nanasy", + "name": "NANASY", + "url": "/v1/games/nanasy" + }, { "slug": "nanna", "name": "NANNA", @@ -474216,26 +485781,51 @@ "name": "NBA 2K21", "url": "/v1/games/nba-2k21" }, + { + "slug": "nba-2k21-arcade-edition", + "name": "NBA 2K21 Arcade Edition", + "url": "/v1/games/nba-2k21-arcade-edition" + }, { "slug": "nba-2k22", "name": "NBA 2K22", "url": "/v1/games/nba-2k22" }, + { + "slug": "nba-2k22-arcade-edition", + "name": "NBA 2K22 Arcade Edition", + "url": "/v1/games/nba-2k22-arcade-edition" + }, { "slug": "nba-2k23", "name": "NBA 2K23", "url": "/v1/games/nba-2k23" }, + { + "slug": "nba-2k23-arcade-edition", + "name": "NBA 2K23 Arcade Edition", + "url": "/v1/games/nba-2k23-arcade-edition" + }, { "slug": "nba-2k24", "name": "NBA 2K24", "url": "/v1/games/nba-2k24" }, + { + "slug": "nba-2k24-arcade-edition", + "name": "NBA 2K24 Arcade Edition", + "url": "/v1/games/nba-2k24-arcade-edition" + }, { "slug": "nba-2k25", "name": "NBA 2K25", "url": "/v1/games/nba-2k25" }, + { + "slug": "nba-2k25-arcade-edition", + "name": "NBA 2K25 Arcade Edition", + "url": "/v1/games/nba-2k25-arcade-edition" + }, { "slug": "nba-2k26", "name": "NBA 2K26", @@ -474276,6 +485866,11 @@ "name": "NBA 2KVR Experience", "url": "/v1/games/nba-2kvr-experience" }, + { + "slug": "nba-action-q3334218", + "name": "NBA Action", + "url": "/v1/games/nba-action-q3334218" + }, { "slug": "nba-action", "name": "NBA Action", @@ -474911,6 +486506,11 @@ "name": "NCAA GameBreaker 2001", "url": "/v1/games/ncaa-gamebreaker-2001" }, + { + "slug": "ncaa-gamebreaker-2002", + "name": "NCAA GameBreaker 2002", + "url": "/v1/games/ncaa-gamebreaker-2002" + }, { "slug": "ncaa-gamebreaker-2003", "name": "NCAA GameBreaker 2003", @@ -475166,6 +486766,11 @@ "name": "NEKOPARA Extra", "url": "/v1/games/nekopara-extra" }, + { + "slug": "nekopara-ova-set", + "name": "NEKOPARA OVA Set", + "url": "/v1/games/nekopara-ova-set" + }, { "slug": "nekopara-vol-0", "name": "NEKOPARA Vol. 0", @@ -475181,6 +486786,11 @@ "name": "NEKOPARA Vol. 3", "url": "/v1/games/nekopara-vol-3" }, + { + "slug": "nekopara-vol-3-18-dlc", + "name": "NEKOPARA Vol. 3 18+ DLC", + "url": "/v1/games/nekopara-vol-3-18-dlc" + }, { "slug": "nekopara-vol-4", "name": "NEKOPARA Vol. 4", @@ -475366,6 +486976,11 @@ "name": "NES Play Action Football", "url": "/v1/games/nes-play-action-football" }, + { + "slug": "nes-remix", + "name": "NES Remix", + "url": "/v1/games/nes-remix" + }, { "slug": "nes-remix-2", "name": "NES Remix 2", @@ -475441,6 +487056,11 @@ "name": "NEW TERRA", "url": "/v1/games/new-terra" }, + { + "slug": "nexo-q139505423", + "name": "NEXO", + "url": "/v1/games/nexo-q139505423" + }, { "slug": "nexo", "name": "NEXO", @@ -475556,6 +487176,11 @@ "name": "NFL Blitz 2000", "url": "/v1/games/nfl-blitz-2000" }, + { + "slug": "nfl-blitz-2000-gold-edition", + "name": "NFL Blitz 2000 Gold Edition", + "url": "/v1/games/nfl-blitz-2000-gold-edition" + }, { "slug": "nfl-blitz-2001-q113324389", "name": "NFL Blitz 2001", @@ -475826,6 +487451,11 @@ "name": "NFL's Greatest: San Francisco vs. Dallas 1978-1993", "url": "/v1/games/nfl-s-greatest-san-francisco-vs-dallas-1978-1993" }, + { + "slug": "nfs-most-wanted-complete", + "name": "NFS Most Wanted Complete", + "url": "/v1/games/nfs-most-wanted-complete" + }, { "slug": "nft-simulator", "name": "NFT Simulator", @@ -476176,6 +487806,11 @@ "name": "NHL FaceOff 99", "url": "/v1/games/nhl-faceoff-99" }, + { + "slug": "nhl-faceoff-2002", + "name": "NHL Faceoff 2002", + "url": "/v1/games/nhl-faceoff-2002" + }, { "slug": "nhl-hitz-2002", "name": "NHL Hitz 2002", @@ -476251,6 +487886,16 @@ "name": "NHRA Championship Drag Racing: Speed For All", "url": "/v1/games/nhra-championship-drag-racing-speed-for-all" }, + { + "slug": "nhra-championship-drag-racing-speed-for-all-deluxe-edition", + "name": "NHRA Championship Drag Racing: Speed for All - Deluxe Edition", + "url": "/v1/games/nhra-championship-drag-racing-speed-for-all-deluxe-edition" + }, + { + "slug": "nhra-championship-drag-racing-speed-for-all-ultimate-edition", + "name": "NHRA Championship Drag Racing: Speed for All - Ultimate Edition", + "url": "/v1/games/nhra-championship-drag-racing-speed-for-all-ultimate-edition" + }, { "slug": "nhra-drag-racing", "name": "NHRA Drag Racing", @@ -476751,6 +488396,11 @@ "name": "NOOO! MY BODY!", "url": "/v1/games/nooo-my-body" }, + { + "slug": "norco-act-one", + "name": "NORCO Act One", + "url": "/v1/games/norco-act-one" + }, { "slug": "noren", "name": "NOREN", @@ -477656,11 +489306,36 @@ "name": "Namaste Virtual Yoga Retreat", "url": "/v1/games/namaste-virtual-yoga-retreat" }, + { + "slug": "namco-anthology-1", + "name": "Namco Anthology 1", + "url": "/v1/games/namco-anthology-1" + }, + { + "slug": "namco-anthology-2", + "name": "Namco Anthology 2", + "url": "/v1/games/namco-anthology-2" + }, { "slug": "namco-arcade", "name": "Namco Arcade", "url": "/v1/games/namco-arcade" }, + { + "slug": "namco-classic-collection-vol-1", + "name": "Namco Classic Collection Vol. 1", + "url": "/v1/games/namco-classic-collection-vol-1" + }, + { + "slug": "namco-classic-collection-vol-2", + "name": "Namco Classic Collection Vol. 2", + "url": "/v1/games/namco-classic-collection-vol-2" + }, + { + "slug": "namco-collection", + "name": "Namco Collection", + "url": "/v1/games/namco-collection" + }, { "slug": "namco-gallery", "name": "Namco Gallery", @@ -477676,6 +489351,21 @@ "name": "Namco Mahjong: Sparrow Garden", "url": "/v1/games/namco-mahjong-sparrow-garden" }, + { + "slug": "namco-museum-q20240929", + "name": "Namco Museum", + "url": "/v1/games/namco-museum-q20240929" + }, + { + "slug": "namco-museum-q20240936", + "name": "Namco Museum", + "url": "/v1/games/namco-museum-q20240936" + }, + { + "slug": "namco-museum", + "name": "Namco Museum", + "url": "/v1/games/namco-museum" + }, { "slug": "namco-museum-64", "name": "Namco Museum 64", @@ -477691,6 +489381,11 @@ "name": "Namco Museum DS", "url": "/v1/games/namco-museum-ds" }, + { + "slug": "namco-museum-encore", + "name": "Namco Museum Encore", + "url": "/v1/games/namco-museum-encore" + }, { "slug": "namco-museum-essentials", "name": "Namco Museum Essentials", @@ -477706,11 +489401,41 @@ "name": "Namco Museum Remix", "url": "/v1/games/namco-museum-remix" }, + { + "slug": "namco-museum-virtual-arcade", + "name": "Namco Museum Virtual Arcade", + "url": "/v1/games/namco-museum-virtual-arcade" + }, { "slug": "namco-museum-vol-1", "name": "Namco Museum Vol. 1", "url": "/v1/games/namco-museum-vol-1" }, + { + "slug": "namco-museum-vol-2-q1830261", + "name": "Namco Museum Vol. 2", + "url": "/v1/games/namco-museum-vol-2-q1830261" + }, + { + "slug": "namco-museum-vol-3", + "name": "Namco Museum Vol. 3", + "url": "/v1/games/namco-museum-vol-3" + }, + { + "slug": "namco-museum-vol-4", + "name": "Namco Museum Vol. 4", + "url": "/v1/games/namco-museum-vol-4" + }, + { + "slug": "namco-museum-vol-5", + "name": "Namco Museum Vol. 5", + "url": "/v1/games/namco-museum-vol-5" + }, + { + "slug": "namco-museum-vol-2", + "name": "Namco Museum Vol.2", + "url": "/v1/games/namco-museum-vol-2" + }, { "slug": "namco-museum-50th-anniversary", "name": "Namco Museum: 50th Anniversary", @@ -478341,6 +490066,11 @@ "name": "Napalm: The Crimson Crisis", "url": "/v1/games/napalm-the-crimson-crisis" }, + { + "slug": "nape-retroverse-collection", + "name": "Nape Retroverse Collection", + "url": "/v1/games/nape-retroverse-collection" + }, { "slug": "napoleon", "name": "Napoleon", @@ -478666,6 +490396,11 @@ "name": "Naruto Shippuden: Ultimate Ninja Storm 4", "url": "/v1/games/naruto-shippuden-ultimate-ninja-storm-4" }, + { + "slug": "naruto-shippuden-ultimate-ninja-storm-4-road-to-boruto", + "name": "Naruto Shippuden: Ultimate Ninja Storm 4 - Road to Boruto", + "url": "/v1/games/naruto-shippuden-ultimate-ninja-storm-4-road-to-boruto" + }, { "slug": "naruto-shippuden-ultimate-ninja-storm-generations", "name": "Naruto Shippuden: Ultimate Ninja Storm Generations", @@ -479021,6 +490756,11 @@ "name": "National Geographic Panda", "url": "/v1/games/national-geographic-panda" }, + { + "slug": "national-geographic-of-azeroth", + "name": "National Geographic of Azeroth", + "url": "/v1/games/national-geographic-of-azeroth" + }, { "slug": "national-machine", "name": "National Machine", @@ -479311,6 +491051,11 @@ "name": "Natural Craft", "url": "/v1/games/natural-craft" }, + { + "slug": "natural-disaster-survival", + "name": "Natural Disaster Survival", + "url": "/v1/games/natural-disaster-survival" + }, { "slug": "natural-disaster-a-butterfly-s-guide-to-mass-destruction", "name": "Natural Disaster: A Butterfly's Guide to Mass Destruction", @@ -479341,6 +491086,11 @@ "name": "Natural Instincts", "url": "/v1/games/natural-instincts" }, + { + "slug": "natural-selection", + "name": "Natural Selection", + "url": "/v1/games/natural-selection" + }, { "slug": "natural-selection-2", "name": "Natural Selection 2", @@ -480276,6 +492026,11 @@ "name": "Nebulus 2: Pogo a gogo", "url": "/v1/games/nebulus-2-pogo-a-gogo" }, + { + "slug": "necessary-force", + "name": "Necessary Force", + "url": "/v1/games/necessary-force" + }, { "slug": "necesse", "name": "Necesse", @@ -480941,6 +492696,11 @@ "name": "Need for Speed Mobile", "url": "/v1/games/need-for-speed-mobile" }, + { + "slug": "need-for-speed-most-wanted-complete-dlc-bundle", + "name": "Need for Speed Most Wanted Complete DLC Bundle", + "url": "/v1/games/need-for-speed-most-wanted-complete-dlc-bundle" + }, { "slug": "need-for-speed-payback", "name": "Need for Speed Payback", @@ -480991,6 +492751,16 @@ "name": "Need for Speed: Most Wanted", "url": "/v1/games/need-for-speed-most-wanted" }, + { + "slug": "need-for-speed-most-wanted-terminal-velocity", + "name": "Need for Speed: Most Wanted - Terminal Velocity", + "url": "/v1/games/need-for-speed-most-wanted-terminal-velocity" + }, + { + "slug": "need-for-speed-most-wanted-ultimate-speed-pack", + "name": "Need for Speed: Most Wanted - Ultimate Speed Pack", + "url": "/v1/games/need-for-speed-most-wanted-ultimate-speed-pack" + }, { "slug": "need-for-speed-most-wanted-5-1-0", "name": "Need for Speed: Most Wanted 5-1-0", @@ -481326,6 +493096,11 @@ "name": "Neighbours from Hell 2: On Vacation", "url": "/v1/games/neighbours-from-hell-2-on-vacation" }, + { + "slug": "neighbours-from-hell-compilation", + "name": "Neighbours from Hell Compilation", + "url": "/v1/games/neighbours-from-hell-compilation" + }, { "slug": "neighbours-the-adventure", "name": "Neighbours: The Adventure", @@ -481356,26 +493131,76 @@ "name": "NejicomiSimulator TMA01 - Continuous orgasm training of a big-boob maid with a powerful piston dildo! - (Gapping)", "url": "/v1/games/nejicomisimulator-tma01-continuous-orgasm-training-of-a-big-boob-maid-with-a-powerful-pist" }, + { + "slug": "nejicomisimulator-tma01-uncensored-unlock-all-settings-pack", + "name": "NejicomiSimulator TMA01 -Uncensored & Unlock all settings Pack-", + "url": "/v1/games/nejicomisimulator-tma01-uncensored-unlock-all-settings-pack" + }, + { + "slug": "nejicomisimulator-tma02-uncensored-unlock-all-settings-pack", + "name": "NejicomiSimulator TMA02 -Uncensored & Unlock all settings Pack-", + "url": "/v1/games/nejicomisimulator-tma02-uncensored-unlock-all-settings-pack" + }, + { + "slug": "nejicomisimulator-tma02-dignity-destruction-pack", + "name": "NejicomiSimulator TMA02 Dignity Destruction Pack", + "url": "/v1/games/nejicomisimulator-tma02-dignity-destruction-pack" + }, { "slug": "nejicomisimulator-vol-1-gapping-amputee-sex-slave-petrify-time-stop", "name": "NejicomiSimulator Vol.1 (Gapping, Amputee sex slave, Petrify, Time Stop)", "url": "/v1/games/nejicomisimulator-vol-1-gapping-amputee-sex-slave-petrify-time-stop" }, + { + "slug": "nejicomisimulator-vol-1-uncensored-pack", + "name": "NejicomiSimulator Vol.1 -Uncensored Pack-", + "url": "/v1/games/nejicomisimulator-vol-1-uncensored-pack" + }, + { + "slug": "nejicomisimulator-vol-1-demo-gapping-amputee-sex-slave-petrify-time-stop", + "name": "NejicomiSimulator Vol.1 Demo (Gapping, Amputee sex slave, Petrify, Time Stop)", + "url": "/v1/games/nejicomisimulator-vol-1-demo-gapping-amputee-sex-slave-petrify-time-stop" + }, { "slug": "nejicomisimulator-vol-2-gapping-amputee-sex-slave-petrify-time-stop", "name": "NejicomiSimulator Vol.2 (Gapping, Amputee sex slave, Petrify, Time Stop)", "url": "/v1/games/nejicomisimulator-vol-2-gapping-amputee-sex-slave-petrify-time-stop" }, + { + "slug": "nejicomisimulator-vol-2-unlock-all-settings-pack", + "name": "NejicomiSimulator Vol.2 -Unlock All Settings Pack-", + "url": "/v1/games/nejicomisimulator-vol-2-unlock-all-settings-pack" + }, + { + "slug": "nejicomisimulator-vol-2-demo", + "name": "NejicomiSimulator Vol.2 Demo", + "url": "/v1/games/nejicomisimulator-vol-2-demo" + }, { "slug": "nejicomisimulator-vol-4", "name": "NejicomiSimulator Vol.4", "url": "/v1/games/nejicomisimulator-vol-4" }, + { + "slug": "nejicomisimulator-vol-4-unlock-all-settings-pack", + "name": "NejicomiSimulator Vol.4 -Unlock All Settings Pack-", + "url": "/v1/games/nejicomisimulator-vol-4-unlock-all-settings-pack" + }, + { + "slug": "nejicomisimulator-vol-4-demo", + "name": "NejicomiSimulator Vol.4 Demo", + "url": "/v1/games/nejicomisimulator-vol-4-demo" + }, { "slug": "nejicomisimulator-vol-5-big-boob-goat-chan-is-hung-and-fucked-while-her-boobs-are-bouncing", "name": "NejicomiSimulator Vol.5 - Big-boob Goat-chan is hung and fucked while her boobs are bouncing around!! - (Gapping, hard sex)", "url": "/v1/games/nejicomisimulator-vol-5-big-boob-goat-chan-is-hung-and-fucked-while-her-boobs-are-bouncing" }, + { + "slug": "nejicomisimulator-vol-5-uncensored-unlock-all-settings-pack", + "name": "NejicomiSimulator Vol.5 -Uncensored & Unlock all settings Pack-", + "url": "/v1/games/nejicomisimulator-vol-5-uncensored-unlock-all-settings-pack" + }, { "slug": "nekketsu-inou-bukatsu-tan-trigger-kiss", "name": "Nekketsu Inou Bukatsu-tan Trigger Kiss", @@ -481421,6 +493246,11 @@ "name": "Neko Atsume 2", "url": "/v1/games/neko-atsume-2" }, + { + "slug": "neko-atsume-kitty-collector", + "name": "Neko Atsume: Kitty Collector+", + "url": "/v1/games/neko-atsume-kitty-collector" + }, { "slug": "neko-beach", "name": "Neko Beach", @@ -481671,6 +493501,11 @@ "name": "Nekograms", "url": "/v1/games/nekograms" }, + { + "slug": "nekograms-q122704230", + "name": "Nekograms+", + "url": "/v1/games/nekograms-q122704230" + }, { "slug": "nekogumi", "name": "Nekogumi", @@ -481751,6 +493586,16 @@ "name": "Nekopara Vol. 1", "url": "/v1/games/nekopara-vol-1" }, + { + "slug": "nekopara-vol-1-18-dlc", + "name": "Nekopara Vol. 1 18+ DLC", + "url": "/v1/games/nekopara-vol-1-18-dlc" + }, + { + "slug": "nekopara-vol-2-18-dlc", + "name": "Nekopara Vol. 2 18+ DLC", + "url": "/v1/games/nekopara-vol-2-18-dlc" + }, { "slug": "nekopirate", "name": "Nekopirate", @@ -482086,6 +493931,11 @@ "name": "Neo Geo Heroes: Ultimate Shooting", "url": "/v1/games/neo-geo-heroes-ultimate-shooting" }, + { + "slug": "neo-geo-online-collection", + "name": "Neo Geo Online Collection", + "url": "/v1/games/neo-geo-online-collection" + }, { "slug": "neo-habits", "name": "Neo HaBits", @@ -482111,6 +493961,11 @@ "name": "Neo Mr. Do!", "url": "/v1/games/neo-mr-do" }, + { + "slug": "neo-party", + "name": "Neo Party", + "url": "/v1/games/neo-party" + }, { "slug": "neo-planet-q29830245", "name": "Neo Planet", @@ -482146,6 +494001,11 @@ "name": "Neo Turf Masters", "url": "/v1/games/neo-turf-masters" }, + { + "slug": "neo-geo-cd-special", + "name": "Neo-Geo CD Special", + "url": "/v1/games/neo-geo-cd-special" + }, { "slug": "neo-zero", "name": "Neo-Zero", @@ -483241,6 +495101,11 @@ "name": "Neopets", "url": "/v1/games/neopets" }, + { + "slug": "neopets-metaverse", + "name": "Neopets Metaverse", + "url": "/v1/games/neopets-metaverse" + }, { "slug": "neopets-puzzle-adventure", "name": "Neopets Puzzle Adventure", @@ -484056,6 +495921,11 @@ "name": "NeuroWorm", "url": "/v1/games/neuroworm" }, + { + "slug": "neurocracy", + "name": "Neurocracy", + "url": "/v1/games/neurocracy" + }, { "slug": "neurodeck", "name": "Neurodeck", @@ -484186,6 +496056,16 @@ "name": "Never Alone 2", "url": "/v1/games/never-alone-2" }, + { + "slug": "never-alone-arctic-collection", + "name": "Never Alone Arctic Collection", + "url": "/v1/games/never-alone-arctic-collection" + }, + { + "slug": "never-alone-foxtales", + "name": "Never Alone: Foxtales", + "url": "/v1/games/never-alone-foxtales" + }, { "slug": "never-be-alone", "name": "Never Be Alone", @@ -484551,11 +496431,66 @@ "name": "Neverwinter Nights 2", "url": "/v1/games/neverwinter-nights-2" }, + { + "slug": "neverwinter-nights-2-mask-of-the-betrayer", + "name": "Neverwinter Nights 2: Mask of the Betrayer", + "url": "/v1/games/neverwinter-nights-2-mask-of-the-betrayer" + }, + { + "slug": "neverwinter-nights-2-mysteries-of-westgate", + "name": "Neverwinter Nights 2: Mysteries of Westgate", + "url": "/v1/games/neverwinter-nights-2-mysteries-of-westgate" + }, + { + "slug": "neverwinter-nights-2-storm-of-zehir", + "name": "Neverwinter Nights 2: Storm of Zehir", + "url": "/v1/games/neverwinter-nights-2-storm-of-zehir" + }, + { + "slug": "neverwinter-nights-darkness-over-daggerford", + "name": "Neverwinter Nights: Darkness over Daggerford", + "url": "/v1/games/neverwinter-nights-darkness-over-daggerford" + }, { "slug": "neverwinter-nights-enhanced-edition", "name": "Neverwinter Nights: Enhanced Edition", "url": "/v1/games/neverwinter-nights-enhanced-edition" }, + { + "slug": "neverwinter-nights-hordes-of-the-underdark", + "name": "Neverwinter Nights: Hordes of the Underdark", + "url": "/v1/games/neverwinter-nights-hordes-of-the-underdark" + }, + { + "slug": "neverwinter-nights-infinite-dungeons", + "name": "Neverwinter Nights: Infinite Dungeons", + "url": "/v1/games/neverwinter-nights-infinite-dungeons" + }, + { + "slug": "neverwinter-nights-kingmaker", + "name": "Neverwinter Nights: Kingmaker", + "url": "/v1/games/neverwinter-nights-kingmaker" + }, + { + "slug": "neverwinter-nights-pirates-of-the-sword-coast", + "name": "Neverwinter Nights: Pirates of the Sword Coast", + "url": "/v1/games/neverwinter-nights-pirates-of-the-sword-coast" + }, + { + "slug": "neverwinter-nights-shadows-of-undrentide", + "name": "Neverwinter Nights: Shadows of Undrentide", + "url": "/v1/games/neverwinter-nights-shadows-of-undrentide" + }, + { + "slug": "neverwinter-nights-witch-s-wake", + "name": "Neverwinter Nights: Witch's Wake", + "url": "/v1/games/neverwinter-nights-witch-s-wake" + }, + { + "slug": "neverwinter-nights-wyvern-crown-of-cormyr", + "name": "Neverwinter Nights: Wyvern Crown of Cormyr", + "url": "/v1/games/neverwinter-nights-wyvern-crown-of-cormyr" + }, { "slug": "neves", "name": "Neves", @@ -484671,6 +496606,11 @@ "name": "New Cycle", "url": "/v1/games/new-cycle" }, + { + "slug": "new-dawn-q57973878", + "name": "New Dawn", + "url": "/v1/games/new-dawn-q57973878" + }, { "slug": "new-dawn", "name": "New Dawn", @@ -484911,6 +496851,11 @@ "name": "New Roanoke", "url": "/v1/games/new-roanoke" }, + { + "slug": "new-romulus", + "name": "New Romulus", + "url": "/v1/games/new-romulus" + }, { "slug": "new-roots", "name": "New Roots", @@ -484981,6 +496926,11 @@ "name": "New Super Lucky's Tale", "url": "/v1/games/new-super-lucky-s-tale" }, + { + "slug": "new-super-luigi-u", + "name": "New Super Luigi U", + "url": "/v1/games/new-super-luigi-u" + }, { "slug": "new-super-mario-bros", "name": "New Super Mario Bros.", @@ -485496,6 +497446,11 @@ "name": "Nexomon", "url": "/v1/games/nexomon" }, + { + "slug": "nexomon-nexomon-extinction-complete-collection", + "name": "Nexomon + Nexomon: Extinction - Complete Collection", + "url": "/v1/games/nexomon-nexomon-extinction-complete-collection" + }, { "slug": "nexomon-3", "name": "Nexomon 3", @@ -485776,6 +497731,11 @@ "name": "Ni no Kuni II: Revenant Kingdom", "url": "/v1/games/ni-no-kuni-ii-revenant-kingdom" }, + { + "slug": "ni-no-kuni-ii-revenant-kingdom-the-prince-s-edition", + "name": "Ni no Kuni II: Revenant Kingdom - The Prince's Edition", + "url": "/v1/games/ni-no-kuni-ii-revenant-kingdom-the-prince-s-edition" + }, { "slug": "ni-no-kuni-mobile-games", "name": "Ni no Kuni mobile games", @@ -486001,6 +497961,11 @@ "name": "Nick Jr. Party Adventure", "url": "/v1/games/nick-jr-party-adventure" }, + { + "slug": "nick-kingdoms", + "name": "Nick Kingdoms", + "url": "/v1/games/nick-kingdoms" + }, { "slug": "nick-logic-for-kids", "name": "Nick Logic for Kids", @@ -487511,6 +499476,16 @@ "name": "Nightmare Frames", "url": "/v1/games/nightmare-frames" }, + { + "slug": "nightmare-frames-demo", + "name": "Nightmare Frames Demo", + "url": "/v1/games/nightmare-frames-demo" + }, + { + "slug": "nightmare-frames-prologue", + "name": "Nightmare Frames Prologue", + "url": "/v1/games/nightmare-frames-prologue" + }, { "slug": "nightmare-frontier", "name": "Nightmare Frontier", @@ -487531,6 +499506,11 @@ "name": "Nightmare Halls", "url": "/v1/games/nightmare-halls" }, + { + "slug": "nightmare-house-2", + "name": "Nightmare House 2", + "url": "/v1/games/nightmare-house-2" + }, { "slug": "nightmare-house-reimagined", "name": "Nightmare House: Reimagined", @@ -487866,6 +499846,11 @@ "name": "Nightrunner", "url": "/v1/games/nightrunner" }, + { + "slug": "nights", + "name": "Nights", + "url": "/v1/games/nights" + }, { "slug": "nights-at-the-clown-maze", "name": "Nights at the Clown Maze", @@ -488876,6 +500861,11 @@ "name": "Ninja Gaiden Sigma Plus", "url": "/v1/games/ninja-gaiden-sigma-plus" }, + { + "slug": "ninja-gaiden-trilogy", + "name": "Ninja Gaiden Trilogy", + "url": "/v1/games/ninja-gaiden-trilogy" + }, { "slug": "ninja-gaiden-dragon-sword", "name": "Ninja Gaiden: Dragon Sword", @@ -489296,6 +501286,11 @@ "name": "Ninja Turdle", "url": "/v1/games/ninja-turdle" }, + { + "slug": "ninja-turtles-the-next-mutation", + "name": "Ninja Turtles: The Next Mutation", + "url": "/v1/games/ninja-turtles-the-next-mutation" + }, { "slug": "ninja-twins-q122040390", "name": "Ninja Twins", @@ -489431,6 +501426,11 @@ "name": "Ninjabread Man", "url": "/v1/games/ninjabread-man" }, + { + "slug": "ninjabread-man-2-the-blades-of-fury", + "name": "Ninjabread Man 2: The Blades of Fury", + "url": "/v1/games/ninjabread-man-2-the-blades-of-fury" + }, { "slug": "ninjabun", "name": "Ninjabun", @@ -489556,6 +501556,11 @@ "name": "Nintendo 3DS Guide: Louvre", "url": "/v1/games/nintendo-3ds-guide-louvre" }, + { + "slug": "nintendo-64-nintendo-classics", + "name": "Nintendo 64 – Nintendo Classics", + "url": "/v1/games/nintendo-64-nintendo-classics" + }, { "slug": "nintendo-badge-arcade", "name": "Nintendo Badge Arcade", @@ -489581,11 +501586,21 @@ "name": "Nintendo DS Digital TV Tuner", "url": "/v1/games/nintendo-ds-digital-tv-tuner" }, + { + "slug": "nintendo-entertainment-system-nintendo-classics", + "name": "Nintendo Entertainment System – Nintendo Classics", + "url": "/v1/games/nintendo-entertainment-system-nintendo-classics" + }, { "slug": "nintendo-gamecube-preview-disc", "name": "Nintendo GameCube Preview Disc", "url": "/v1/games/nintendo-gamecube-preview-disc" }, + { + "slug": "nintendo-gamecube-nintendo-classics", + "name": "Nintendo GameCube – Nintendo Classics", + "url": "/v1/games/nintendo-gamecube-nintendo-classics" + }, { "slug": "nintendo-labo-toy-con-01-variety-kit", "name": "Nintendo Labo Toy-Con 01 Variety Kit", @@ -490311,6 +502326,11 @@ "name": "No God For Us", "url": "/v1/games/no-god-for-us" }, + { + "slug": "no-going-back-q18155628", + "name": "No Going Back", + "url": "/v1/games/no-going-back-q18155628" + }, { "slug": "no-going-back", "name": "No Going Back", @@ -490906,6 +502926,11 @@ "name": "No Time For Pants", "url": "/v1/games/no-time-for-pants" }, + { + "slug": "no-time-left", + "name": "No Time Left", + "url": "/v1/games/no-time-left" + }, { "slug": "no-time-to-explain-remastered", "name": "No Time To Explain Remastered", @@ -492316,6 +504341,11 @@ "name": "Nonogos", "url": "/v1/games/nonogos" }, + { + "slug": "nonogram", + "name": "Nonogram", + "url": "/v1/games/nonogram" + }, { "slug": "nonogram-master-s-legacy", "name": "Nonogram - Master's Legacy", @@ -492751,6 +504781,11 @@ "name": "North American Hunting Extravaganza 2", "url": "/v1/games/north-american-hunting-extravaganza-2" }, + { + "slug": "north-american-release-of-chrono-trigger-for-nintendo-ds", + "name": "North American Release of Chrono Trigger for Nintendo DS", + "url": "/v1/games/north-american-release-of-chrono-trigger-for-nintendo-ds" + }, { "slug": "north-atlantic-86", "name": "North Atlantic '86", @@ -493311,6 +505346,11 @@ "name": "Not Tonight 2", "url": "/v1/games/not-tonight-2" }, + { + "slug": "not-tonight-one-love", + "name": "Not Tonight: One Love", + "url": "/v1/games/not-tonight-one-love" + }, { "slug": "not-treasure-hunter", "name": "Not Treasure Hunter", @@ -493586,6 +505626,11 @@ "name": "Notmads", "url": "/v1/games/notmads" }, + { + "slug": "notoriety", + "name": "Notoriety", + "url": "/v1/games/notoriety" + }, { "slug": "notoris-the-goblin-war", "name": "Notoris: The Goblin War", @@ -493756,6 +505801,11 @@ "name": "Nova Odessa - The Strange Tower", "url": "/v1/games/nova-odessa-the-strange-tower" }, + { + "slug": "nova-online", + "name": "Nova Online", + "url": "/v1/games/nova-online" + }, { "slug": "nova-pinball", "name": "Nova Pinball", @@ -494446,6 +506496,11 @@ "name": "Nuga-Cel!", "url": "/v1/games/nuga-cel" }, + { + "slug": "nugget-doom", + "name": "Nugget Doom", + "url": "/v1/games/nugget-doom" + }, { "slug": "nugget-royale", "name": "Nugget Royale", @@ -494491,6 +506546,16 @@ "name": "Nukes on the Loose", "url": "/v1/games/nukes-on-the-loose" }, + { + "slug": "nukicolle-vol-31-oni-chichi-1-2", + "name": "Nukicolle vol.31 - Oni Chichi 1 + 2", + "url": "/v1/games/nukicolle-vol-31-oni-chichi-1-2" + }, + { + "slug": "nukicolle-vol-51-tsugunai-1-2", + "name": "Nukicolle vol.51 - Tsugunai 1+2", + "url": "/v1/games/nukicolle-vol-51-tsugunai-1-2" + }, { "slug": "nukitashi", "name": "Nukitashi", @@ -494861,6 +506926,11 @@ "name": "Nuremberg: VRdict of Nations", "url": "/v1/games/nuremberg-vrdict-of-nations" }, + { + "slug": "nurikabe-q240004", + "name": "Nurikabe", + "url": "/v1/games/nurikabe-q240004" + }, { "slug": "nurikabe", "name": "Nurikabe", @@ -494971,6 +507041,11 @@ "name": "NutShot", "url": "/v1/games/nutshot" }, + { + "slug": "nutaku-love-forever", + "name": "Nutaku: Love Forever", + "url": "/v1/games/nutaku-love-forever" + }, { "slug": "nutcraka", "name": "Nutcraka", @@ -495316,6 +507391,11 @@ "name": "Nysunder", "url": "/v1/games/nysunder" }, + { + "slug": "nyte-blayde-pack", + "name": "Nyte Blayde Pack", + "url": "/v1/games/nyte-blayde-pack" + }, { "slug": "nyxquest-kindred-spirits", "name": "NyxQuest: Kindred Spirits", @@ -495336,6 +507416,11 @@ "name": "Nyxx", "url": "/v1/games/nyxx" }, + { + "slug": "n-ppistaituri", + "name": "NäppisTaituri", + "url": "/v1/games/n-ppistaituri" + }, { "slug": "n-r-karusellerna-sover", "name": "När karusellerna sover", @@ -495406,6 +507491,11 @@ "name": "O.D.T.", "url": "/v1/games/o-d-t" }, + { + "slug": "o-n-g-e-k-i", + "name": "O.N.G.E.K.I.", + "url": "/v1/games/o-n-g-e-k-i" + }, { "slug": "o-r-b-off-world-resource-base", "name": "O.R.B: Off-World Resource Base", @@ -496856,6 +508946,11 @@ "name": "Obby", "url": "/v1/games/obby" }, + { + "slug": "obby-creator", + "name": "Obby Creator", + "url": "/v1/games/obby-creator" + }, { "slug": "obby-pet-simulator-x", "name": "Obby Pet Simulator X", @@ -497951,6 +510046,11 @@ "name": "Octodad: Dadliest Catch", "url": "/v1/games/octodad-dadliest-catch" }, + { + "slug": "octodad-dadliest-catch-q118234877", + "name": "Octodad: Dadliest Catch+", + "url": "/v1/games/octodad-dadliest-catch-q118234877" + }, { "slug": "octofight-escape", "name": "Octofight Escape", @@ -498051,6 +510151,11 @@ "name": "Odama", "url": "/v1/games/odama" }, + { + "slug": "odamex", + "name": "Odamex", + "url": "/v1/games/odamex" + }, { "slug": "odania-sports-arena", "name": "Odania Sports Arena", @@ -498171,6 +510276,11 @@ "name": "Oddmar", "url": "/v1/games/oddmar" }, + { + "slug": "oddmar-q109413882", + "name": "Oddmar+", + "url": "/v1/games/oddmar-q109413882" + }, { "slug": "oddment", "name": "Oddment", @@ -498386,6 +510496,11 @@ "name": "Odysseus: Long Way Home", "url": "/v1/games/odysseus-long-way-home" }, + { + "slug": "odyssey-q124361635", + "name": "Odyssey", + "url": "/v1/games/odyssey-q124361635" + }, { "slug": "odyssey-q124423547", "name": "Odyssey", @@ -498741,6 +510856,11 @@ "name": "Off You Go", "url": "/v1/games/off-you-go" }, + { + "slug": "off-zarken", + "name": "Off Zarken", + "url": "/v1/games/off-zarken" + }, { "slug": "off-the-record-the-final-interview-collector-s-edition", "name": "Off the Record: The Final Interview Collector's Edition", @@ -499221,6 +511341,66 @@ "name": "Offworld Trading Company", "url": "/v1/games/offworld-trading-company" }, + { + "slug": "offworld-trading-company-almanac-dlc", + "name": "Offworld Trading Company - Almanac DLC", + "url": "/v1/games/offworld-trading-company-almanac-dlc" + }, + { + "slug": "offworld-trading-company-blue-chip-ventures-dlc", + "name": "Offworld Trading Company - Blue Chip Ventures DLC", + "url": "/v1/games/offworld-trading-company-blue-chip-ventures-dlc" + }, + { + "slug": "offworld-trading-company-conspicuous-consumption-dlc", + "name": "Offworld Trading Company - Conspicuous Consumption DLC", + "url": "/v1/games/offworld-trading-company-conspicuous-consumption-dlc" + }, + { + "slug": "offworld-trading-company-interdimensional-dlc", + "name": "Offworld Trading Company - Interdimensional DLC", + "url": "/v1/games/offworld-trading-company-interdimensional-dlc" + }, + { + "slug": "offworld-trading-company-limited-supply-dlc", + "name": "Offworld Trading Company - Limited Supply DLC", + "url": "/v1/games/offworld-trading-company-limited-supply-dlc" + }, + { + "slug": "offworld-trading-company-market-corrections-dlc", + "name": "Offworld Trading Company - Market Corrections DLC", + "url": "/v1/games/offworld-trading-company-market-corrections-dlc" + }, + { + "slug": "offworld-trading-company-real-mars-map-pack-dlc", + "name": "Offworld Trading Company - Real Mars Map Pack DLC", + "url": "/v1/games/offworld-trading-company-real-mars-map-pack-dlc" + }, + { + "slug": "offworld-trading-company-scenario-toolkit-dlc", + "name": "Offworld Trading Company - Scenario Toolkit DLC", + "url": "/v1/games/offworld-trading-company-scenario-toolkit-dlc" + }, + { + "slug": "offworld-trading-company-the-ceres-initiative-dlc", + "name": "Offworld Trading Company - The Ceres Initiative DLC", + "url": "/v1/games/offworld-trading-company-the-ceres-initiative-dlc" + }, + { + "slug": "offworld-trading-company-the-patron-and-the-patriot-dlc", + "name": "Offworld Trading Company - The Patron and the Patriot DLC", + "url": "/v1/games/offworld-trading-company-the-patron-and-the-patriot-dlc" + }, + { + "slug": "offworld-trading-company-jupiter-s-forge-expansion-pack", + "name": "Offworld Trading Company: Jupiter's Forge Expansion Pack", + "url": "/v1/games/offworld-trading-company-jupiter-s-forge-expansion-pack" + }, + { + "slug": "offworld-trading-company-the-europa-wager-expansion", + "name": "Offworld Trading Company: The Europa Wager Expansion", + "url": "/v1/games/offworld-trading-company-the-europa-wager-expansion" + }, { "slug": "offworlders", "name": "Offworlders", @@ -500146,6 +512326,11 @@ "name": "Old Man's Journey", "url": "/v1/games/old-man-s-journey" }, + { + "slug": "old-man-s-journey-q115240177", + "name": "Old Man’s Journey+", + "url": "/v1/games/old-man-s-journey-q115240177" + }, { "slug": "old-market-simulator", "name": "Old Market Simulator", @@ -500276,6 +512461,11 @@ "name": "Oldish Stuff", "url": "/v1/games/oldish-stuff" }, + { + "slug": "oldorf-s-revenge", + "name": "Oldorf's Revenge", + "url": "/v1/games/oldorf-s-revenge" + }, { "slug": "oldowan", "name": "Oldowan", @@ -501536,6 +513726,11 @@ "name": "Once Upon a Slime", "url": "/v1/games/once-upon-a-slime" }, + { + "slug": "once-upon-a-time-in-japan-earth", + "name": "Once Upon a Time in Japan: Earth", + "url": "/v1/games/once-upon-a-time-in-japan-earth" + }, { "slug": "once-upon-a-time-in-roswell", "name": "Once Upon a Time in Roswell", @@ -501661,6 +513856,11 @@ "name": "Onde", "url": "/v1/games/onde" }, + { + "slug": "ondeh-ondeh", + "name": "Ondeh Ondeh", + "url": "/v1/games/ondeh-ondeh" + }, { "slug": "onder", "name": "Onder", @@ -502961,6 +515161,11 @@ "name": "One Turn Kill", "url": "/v1/games/one-turn-kill" }, + { + "slug": "one-unit-whole-blood", + "name": "One Unit Whole Blood", + "url": "/v1/games/one-unit-whole-blood" + }, { "slug": "one-upon-light", "name": "One Upon Light", @@ -503151,6 +515356,11 @@ "name": "One-Punch Man: A Hero Nobody Knows", "url": "/v1/games/one-punch-man-a-hero-nobody-knows" }, + { + "slug": "one-stop-fun-shop", + "name": "One-Stop Fun Shop", + "url": "/v1/games/one-stop-fun-shop" + }, { "slug": "one-thousand-cuts", "name": "One-Thousand Cuts", @@ -504321,6 +516531,11 @@ "name": "Ooe", "url": "/v1/games/ooe" }, + { + "slug": "oof-simulator", + "name": "Oof Simulator", + "url": "/v1/games/oof-simulator" + }, { "slug": "ooga", "name": "Ooga", @@ -504766,6 +516981,21 @@ "name": "OpenFrag", "url": "/v1/games/openfrag" }, + { + "slug": "openjk", + "name": "OpenJK", + "url": "/v1/games/openjk" + }, + { + "slug": "openliero", + "name": "OpenLiero", + "url": "/v1/games/openliero" + }, + { + "slug": "openlierox", + "name": "OpenLieroX", + "url": "/v1/games/openlierox" + }, { "slug": "openlife-grid", "name": "OpenLife Grid", @@ -504796,11 +517026,26 @@ "name": "OpenRW", "url": "/v1/games/openrw" }, + { + "slug": "opensa", + "name": "OpenSA", + "url": "/v1/games/opensa" + }, + { + "slug": "openspades", + "name": "OpenSpades", + "url": "/v1/games/openspades" + }, { "slug": "opentyrian", "name": "OpenTyrian", "url": "/v1/games/opentyrian" }, + { + "slug": "openut", + "name": "OpenUT", + "url": "/v1/games/openut" + }, { "slug": "openxcom", "name": "OpenXcom", @@ -505051,11 +517296,26 @@ "name": "Operation Flashpoint: Dragon Rising", "url": "/v1/games/operation-flashpoint-dragon-rising" }, + { + "slug": "operation-flashpoint-gold-edition", + "name": "Operation Flashpoint: Gold Edition", + "url": "/v1/games/operation-flashpoint-gold-edition" + }, + { + "slug": "operation-flashpoint-red-hammer", + "name": "Operation Flashpoint: Red Hammer", + "url": "/v1/games/operation-flashpoint-red-hammer" + }, { "slug": "operation-flashpoint-red-river", "name": "Operation Flashpoint: Red River", "url": "/v1/games/operation-flashpoint-red-river" }, + { + "slug": "operation-flashpoint-resistance", + "name": "Operation Flashpoint: Resistance", + "url": "/v1/games/operation-flashpoint-resistance" + }, { "slug": "operation-food-to-gold", "name": "Operation Food to Gold", @@ -505521,6 +517781,11 @@ "name": "Operator: Observation", "url": "/v1/games/operator-observation" }, + { + "slug": "operators", + "name": "Operators", + "url": "/v1/games/operators" + }, { "slug": "operencia-the-stolen-sun", "name": "Operencia: The Stolen Sun", @@ -506741,6 +519006,11 @@ "name": "Order of Ataxia: Initial Effects", "url": "/v1/games/order-of-ataxia-initial-effects" }, + { + "slug": "order-of-battle-allies-defiant", + "name": "Order of Battle: Allies Defiant", + "url": "/v1/games/order-of-battle-allies-defiant" + }, { "slug": "order-of-battle-kriegsmarine", "name": "Order of Battle: Kriegsmarine", @@ -507006,6 +519276,11 @@ "name": "Orestruck: Space Miner", "url": "/v1/games/orestruck-space-miner" }, + { + "slug": "oretachi-geasen-zoku-sono", + "name": "Oretachi Geasen Zoku Sono", + "url": "/v1/games/oretachi-geasen-zoku-sono" + }, { "slug": "organ-quarter", "name": "Organ Quarter", @@ -507741,11 +520016,21 @@ "name": "Osmos", "url": "/v1/games/osmos" }, + { + "slug": "osmos-q117357568", + "name": "Osmos+", + "url": "/v1/games/osmos-q117357568" + }, { "slug": "osomatsu-sanpo", "name": "Osomatsu Sanpo", "url": "/v1/games/osomatsu-sanpo" }, + { + "slug": "osomatsu-kun", + "name": "Osomatsu-kun", + "url": "/v1/games/osomatsu-kun" + }, { "slug": "osomatsu-kun-hachamecha-gekij", "name": "Osomatsu-kun: Hachamecha Gekijō", @@ -508676,6 +520961,11 @@ "name": "Our Life: Beginnings & Always", "url": "/v1/games/our-life-beginnings-always" }, + { + "slug": "our-life-beginnings-always-voiced-name-expansion", + "name": "Our Life: Beginnings & Always - Voiced Name Expansion", + "url": "/v1/games/our-life-beginnings-always-voiced-name-expansion" + }, { "slug": "our-life-now-forever", "name": "Our Life: Now & Forever", @@ -509051,6 +521341,11 @@ "name": "Out of Hand: Deluxe", "url": "/v1/games/out-of-hand-deluxe" }, + { + "slug": "out-of-hell-q4046079", + "name": "Out of Hell", + "url": "/v1/games/out-of-hell-q4046079" + }, { "slug": "out-of-jail", "name": "Out of Jail", @@ -509636,6 +521931,16 @@ "name": "Outer Wilds", "url": "/v1/games/outer-wilds" }, + { + "slug": "outer-wilds-archaeologist-edition", + "name": "Outer Wilds: Archaeologist Edition", + "url": "/v1/games/outer-wilds-archaeologist-edition" + }, + { + "slug": "outer-wilds-echoes-of-the-eye", + "name": "Outer Wilds: Echoes of the Eye", + "url": "/v1/games/outer-wilds-echoes-of-the-eye" + }, { "slug": "outerrealm", "name": "OuterRealm", @@ -509761,6 +522066,11 @@ "name": "Outlast : Journey of a Gladiator", "url": "/v1/games/outlast-journey-of-a-gladiator" }, + { + "slug": "outlast-bundle-of-terror", + "name": "Outlast: Bundle of Terror", + "url": "/v1/games/outlast-bundle-of-terror" + }, { "slug": "outlast-whistleblower", "name": "Outlast: Whistleblower", @@ -509846,6 +522156,11 @@ "name": "Outlaws: Corwin's Treasure", "url": "/v1/games/outlaws-corwin-s-treasure" }, + { + "slug": "outlaws-handful-of-missions", + "name": "Outlaws: Handful of Missions", + "url": "/v1/games/outlaws-handful-of-missions" + }, { "slug": "outlawyer", "name": "Outlawyer", @@ -510176,6 +522491,11 @@ "name": "Outward", "url": "/v1/games/outward" }, + { + "slug": "outward-definitive-edition", + "name": "Outward: Definitive Edition", + "url": "/v1/games/outward-definitive-edition" + }, { "slug": "outwars", "name": "Outwars", @@ -510931,6 +523251,11 @@ "name": "Overlord: Minions", "url": "/v1/games/overlord-minions" }, + { + "slug": "overlord-raising-hell", + "name": "Overlord: Raising Hell", + "url": "/v1/games/overlord-raising-hell" + }, { "slug": "overlord-nobody-know-victory-better-than-me", "name": "Overlord : Nobody know victory better than me", @@ -511116,11 +523441,156 @@ "name": "Overturn", "url": "/v1/games/overturn" }, + { + "slug": "overwatch-2-watchpoint-pack", + "name": "Overwatch 2: Watchpoint Pack", + "url": "/v1/games/overwatch-2-watchpoint-pack" + }, + { + "slug": "overwatch-league-100-league-tokens", + "name": "Overwatch League™ - 100 League Tokens", + "url": "/v1/games/overwatch-league-100-league-tokens" + }, { "slug": "overwatch-rush", "name": "Overwatch Rush", "url": "/v1/games/overwatch-rush" }, + { + "slug": "overwatch-collector-s-edition", + "name": "Overwatch: Collector's Edition", + "url": "/v1/games/overwatch-collector-s-edition" + }, + { + "slug": "overwatch-game-of-the-year-edition", + "name": "Overwatch: Game of the Year Edition", + "url": "/v1/games/overwatch-game-of-the-year-edition" + }, + { + "slug": "overwatch-legendary-edition", + "name": "Overwatch: Legendary Edition", + "url": "/v1/games/overwatch-legendary-edition" + }, + { + "slug": "overwatch-origins-edition", + "name": "Overwatch: Origins Edition", + "url": "/v1/games/overwatch-origins-edition" + }, + { + "slug": "overwatch-2-1000-overwatch-coins", + "name": "Overwatch® 2 - 1000 Overwatch Coins", + "url": "/v1/games/overwatch-2-1000-overwatch-coins" + }, + { + "slug": "overwatch-2-10000-5000-bonus-overwatch-coins-limited-time", + "name": "Overwatch® 2 - 10000 (+5000 Bonus) Overwatch Coins - Limited Time!", + "url": "/v1/games/overwatch-2-10000-5000-bonus-overwatch-coins-limited-time" + }, + { + "slug": "overwatch-2-2000-200-bonus-overwatch-coins", + "name": "Overwatch® 2 - 2000 (+200 Bonus) Overwatch Coins", + "url": "/v1/games/overwatch-2-2000-200-bonus-overwatch-coins" + }, + { + "slug": "overwatch-2-500-overwatch-coins", + "name": "Overwatch® 2 - 500 Overwatch Coins", + "url": "/v1/games/overwatch-2-500-overwatch-coins" + }, + { + "slug": "overwatch-2-5000-2500-bonus-overwatch-coins-limited-time", + "name": "Overwatch® 2 - 5000 (+2500 Bonus) Overwatch Coins - Limited Time!", + "url": "/v1/games/overwatch-2-5000-2500-bonus-overwatch-coins-limited-time" + }, + { + "slug": "overwatch-2-complete-hero-collection", + "name": "Overwatch® 2 - Complete Hero Collection", + "url": "/v1/games/overwatch-2-complete-hero-collection" + }, + { + "slug": "overwatch-2-hero-collection", + "name": "Overwatch® 2 - Hero Collection", + "url": "/v1/games/overwatch-2-hero-collection" + }, + { + "slug": "overwatch-2-invasion-bundle", + "name": "Overwatch® 2 - Invasion Bundle", + "url": "/v1/games/overwatch-2-invasion-bundle" + }, + { + "slug": "overwatch-2-invasion-ultimate-bundle", + "name": "Overwatch® 2 - Invasion Ultimate Bundle", + "url": "/v1/games/overwatch-2-invasion-ultimate-bundle" + }, + { + "slug": "overwatch-2-playstation-plus-mega-bundle", + "name": "Overwatch® 2 - PlayStation® Plus Mega Bundle", + "url": "/v1/games/overwatch-2-playstation-plus-mega-bundle" + }, + { + "slug": "overwatch-2-starter-pack-season-seven", + "name": "Overwatch® 2 - Starter Pack: Season Seven", + "url": "/v1/games/overwatch-2-starter-pack-season-seven" + }, + { + "slug": "overwatch-2-ultimate-battle-pass-bundle-season-10", + "name": "Overwatch® 2 - Ultimate Battle Pass Bundle: Season 10", + "url": "/v1/games/overwatch-2-ultimate-battle-pass-bundle-season-10" + }, + { + "slug": "overwatch-2-ultimate-battle-pass-bundle-season-11", + "name": "Overwatch® 2 - Ultimate Battle Pass Bundle: Season 11", + "url": "/v1/games/overwatch-2-ultimate-battle-pass-bundle-season-11" + }, + { + "slug": "overwatch-2-ultimate-battle-pass-bundle-season-8", + "name": "Overwatch® 2 - Ultimate Battle Pass Bundle: Season 8", + "url": "/v1/games/overwatch-2-ultimate-battle-pass-bundle-season-8" + }, + { + "slug": "overwatch-2-ultimate-battle-pass-bundle-season-9", + "name": "Overwatch® 2 - Ultimate Battle Pass Bundle: Season 9", + "url": "/v1/games/overwatch-2-ultimate-battle-pass-bundle-season-9" + }, + { + "slug": "overwatch-2-ultimate-battle-pass-bundle-season-seven", + "name": "Overwatch® 2 - Ultimate Battle Pass Bundle: Season Seven", + "url": "/v1/games/overwatch-2-ultimate-battle-pass-bundle-season-seven" + }, + { + "slug": "overwatch-2-starter-pack-season-11", + "name": "Overwatch® 2 Starter Pack: Season 11", + "url": "/v1/games/overwatch-2-starter-pack-season-11" + }, + { + "slug": "overwatch-2-starter-pack-season-8", + "name": "Overwatch® 2 Starter Pack: Season 8", + "url": "/v1/games/overwatch-2-starter-pack-season-8" + }, + { + "slug": "overwatch-2-complete-hero-collection-upgrade", + "name": "Overwatch® 2: Complete Hero Collection Upgrade", + "url": "/v1/games/overwatch-2-complete-hero-collection-upgrade" + }, + { + "slug": "overwatch-2-invasion-ultimate-bundle-upgrade", + "name": "Overwatch® 2: Invasion Ultimate Bundle Upgrade", + "url": "/v1/games/overwatch-2-invasion-ultimate-bundle-upgrade" + }, + { + "slug": "overwatch-2-pink-mercy-skin", + "name": "Overwatch® 2: Pink Mercy Skin", + "url": "/v1/games/overwatch-2-pink-mercy-skin" + }, + { + "slug": "overwatch-2-reinhardt-mythic-weapon-skin-bundle", + "name": "Overwatch® 2: Reinhardt Mythic Weapon Skin Bundle", + "url": "/v1/games/overwatch-2-reinhardt-mythic-weapon-skin-bundle" + }, + { + "slug": "overwatch-2-rose-gold-mercy-bundle", + "name": "Overwatch® 2: Rose Gold Mercy Bundle", + "url": "/v1/games/overwatch-2-rose-gold-mercy-bundle" + }, { "slug": "overwork-empire", "name": "Overwork Empire", @@ -511461,11 +523931,41 @@ "name": "Ozzy & Drix", "url": "/v1/games/ozzy-drix" }, + { + "slug": "p-big-sea-story-5", + "name": "P Big Sea Story 5", + "url": "/v1/games/p-big-sea-story-5" + }, + { + "slug": "p-big-sea-story-5-special", + "name": "P Big Sea Story 5 Special", + "url": "/v1/games/p-big-sea-story-5-special" + }, + { + "slug": "p-great-sea-story-4-special", + "name": "P Great Sea Story 4 Special", + "url": "/v1/games/p-great-sea-story-4-special" + }, { "slug": "p-r-i-s-m-a-visual-novel", "name": "P R I S M - A Visual Novel", "url": "/v1/games/p-r-i-s-m-a-visual-novel" }, + { + "slug": "p-sea-story-kiwami-japan", + "name": "P Sea Story Kiwami Japan", + "url": "/v1/games/p-sea-story-kiwami-japan" + }, + { + "slug": "p-super-sea-story-in-okinawa-5", + "name": "P Super Sea Story in Okinawa 5", + "url": "/v1/games/p-super-sea-story-in-okinawa-5" + }, + { + "slug": "p-super-sea-story-in-okinawa-6", + "name": "P Super Sea Story in Okinawa 6", + "url": "/v1/games/p-super-sea-story-in-okinawa-6" + }, { "slug": "p-world", "name": "P WORLD", @@ -511496,6 +523996,11 @@ "name": "P-47 II MD", "url": "/v1/games/p-47-ii-md" }, + { + "slug": "p-51d-high-stakes-campaign", + "name": "P-51D: High Stakes Campaign", + "url": "/v1/games/p-51d-high-stakes-campaign" + }, { "slug": "p-bot", "name": "P-BOT", @@ -511561,6 +524066,11 @@ "name": "P.E. Noire", "url": "/v1/games/p-e-noire" }, + { + "slug": "p-h-a-s-e-of-resurgence", + "name": "P.H.A.S.E. of Resurgence", + "url": "/v1/games/p-h-a-s-e-of-resurgence" + }, { "slug": "p-i", "name": "P.I.", @@ -511671,6 +524181,21 @@ "name": "P4ST3L", "url": "/v1/games/p4st3l" }, + { + "slug": "pa-drum-sea-story-in-japan", + "name": "PA Drum Sea Story in Japan", + "url": "/v1/games/pa-drum-sea-story-in-japan" + }, + { + "slug": "pa-drum-sea-story-in-okinawa", + "name": "PA Drum Sea Story in Okinawa", + "url": "/v1/games/pa-drum-sea-story-in-okinawa" + }, + { + "slug": "pa-new-sea-story", + "name": "PA New Sea Story", + "url": "/v1/games/pa-new-sea-story" + }, { "slug": "paath-z", "name": "PAATH-Z", @@ -512211,6 +524736,11 @@ "name": "PBA Tour Bowling 2001", "url": "/v1/games/pba-tour-bowling-2001" }, + { + "slug": "pc-arcade", + "name": "PC Arcade", + "url": "/v1/games/pc-arcade" + }, { "slug": "pc-basket-2-0", "name": "PC Basket 2.0", @@ -512256,11 +524786,21 @@ "name": "PC Creator - PC Building Simulator", "url": "/v1/games/pc-creator-pc-building-simulator" }, + { + "slug": "pc-engine-best-collection", + "name": "PC Engine Best Collection", + "url": "/v1/games/pc-engine-best-collection" + }, { "slug": "pc-futbol-2000", "name": "PC Futbol 2000", "url": "/v1/games/pc-futbol-2000" }, + { + "slug": "pc-futbol-2000-expansion-pack", + "name": "PC Futbol 2000 Expansion pack", + "url": "/v1/games/pc-futbol-2000-expansion-pack" + }, { "slug": "pc-futbol-2001", "name": "PC Futbol 2001", @@ -513701,6 +526241,11 @@ "name": "PPKP", "url": "/v1/games/ppkp" }, + { + "slug": "ppkp-q118235365", + "name": "PPKP+", + "url": "/v1/games/ppkp-q118235365" + }, { "slug": "ppp", "name": "PPP", @@ -513776,6 +526321,11 @@ "name": "PRIMITIVE HEARTS", "url": "/v1/games/primitive-hearts" }, + { + "slug": "primitive-link", + "name": "PRIMITIVE LINK", + "url": "/v1/games/primitive-link" + }, { "slug": "prin-c1", "name": "PRIN-C1", @@ -514096,6 +526646,11 @@ "name": "PRiO", "url": "/v1/games/prio" }, + { + "slug": "ps3-pong", + "name": "PS3 Pong", + "url": "/v1/games/ps3-pong" + }, { "slug": "pseudoku", "name": "PSEUDOKU", @@ -514131,6 +526686,11 @@ "name": "PSIONIC", "url": "/v1/games/psionic" }, + { + "slug": "psx-doom", + "name": "PSX Doom", + "url": "/v1/games/psx-doom" + }, { "slug": "psx-horror", "name": "PSX HORROR", @@ -514646,6 +527206,11 @@ "name": "Pac-Man Bounce", "url": "/v1/games/pac-man-bounce" }, + { + "slug": "pac-man-carnival", + "name": "Pac-Man Carnival", + "url": "/v1/games/pac-man-carnival" + }, { "slug": "pac-man-championship-edition", "name": "Pac-Man Championship Edition", @@ -514661,6 +527226,11 @@ "name": "Pac-Man Championship Edition DX", "url": "/v1/games/pac-man-championship-edition-dx" }, + { + "slug": "pac-man-collection", + "name": "Pac-Man Collection", + "url": "/v1/games/pac-man-collection" + }, { "slug": "pac-man-community", "name": "Pac-Man Community", @@ -514676,11 +527246,31 @@ "name": "Pac-Man Fever", "url": "/v1/games/pac-man-fever" }, + { + "slug": "pac-man-games", + "name": "Pac-Man Games", + "url": "/v1/games/pac-man-games" + }, + { + "slug": "pac-man-ghost-zone", + "name": "Pac-Man Ghost Zone", + "url": "/v1/games/pac-man-ghost-zone" + }, { "slug": "pac-man-monsters", "name": "Pac-Man Monsters", "url": "/v1/games/pac-man-monsters" }, + { + "slug": "pac-man-museum-q17042687", + "name": "Pac-Man Museum", + "url": "/v1/games/pac-man-museum-q17042687" + }, + { + "slug": "pac-man-museum", + "name": "Pac-Man Museum+", + "url": "/v1/games/pac-man-museum" + }, { "slug": "pac-man-party", "name": "Pac-Man Party", @@ -514711,6 +527301,11 @@ "name": "Pac-Man Vs.", "url": "/v1/games/pac-man-vs" }, + { + "slug": "pac-man-vs-pac-man-world-2", + "name": "Pac-Man Vs. / Pac-Man World 2", + "url": "/v1/games/pac-man-vs-pac-man-world-2" + }, { "slug": "pac-man-world", "name": "Pac-Man World", @@ -514751,6 +527346,11 @@ "name": "Pac-Man and the Ghostly Adventures 2", "url": "/v1/games/pac-man-and-the-ghostly-adventures-2" }, + { + "slug": "pac-man-anniversary-arcade-machines", + "name": "Pac-Man anniversary arcade machines", + "url": "/v1/games/pac-man-anniversary-arcade-machines" + }, { "slug": "pac-man-adventures-in-time", "name": "Pac-Man: Adventures in Time", @@ -515046,6 +527646,11 @@ "name": "Pacify", "url": "/v1/games/pacify" }, + { + "slug": "pack-2-jogos", + "name": "Pack 2 Jogos", + "url": "/v1/games/pack-2-jogos" + }, { "slug": "pack-it-out", "name": "Pack It Out", @@ -515411,6 +528016,21 @@ "name": "Painkiller", "url": "/v1/games/painkiller" }, + { + "slug": "painkiller-demo", + "name": "Painkiller Demo", + "url": "/v1/games/painkiller-demo" + }, + { + "slug": "painkiller-overdose-demo", + "name": "Painkiller Overdose Demo", + "url": "/v1/games/painkiller-overdose-demo" + }, + { + "slug": "painkiller-battle-out-of-hell", + "name": "Painkiller: Battle out of Hell", + "url": "/v1/games/painkiller-battle-out-of-hell" + }, { "slug": "painkiller-black-edition", "name": "Painkiller: Black Edition", @@ -515421,6 +528041,11 @@ "name": "Painkiller: Hell & Damnation", "url": "/v1/games/painkiller-hell-damnation" }, + { + "slug": "painkiller-overdose", + "name": "Painkiller: Overdose", + "url": "/v1/games/painkiller-overdose" + }, { "slug": "painkiller-recurring-evil", "name": "Painkiller: Recurring Evil", @@ -516366,6 +528991,11 @@ "name": "Pan-Pan", "url": "/v1/games/pan-pan" }, + { + "slug": "panquake", + "name": "PanQuake", + "url": "/v1/games/panquake" + }, { "slug": "panacea-last-will", "name": "Panacea: Last Will", @@ -517351,6 +529981,46 @@ "name": "Panzer Corps 2", "url": "/v1/games/panzer-corps-2" }, + { + "slug": "panzer-corps-2-axis-operations-1939", + "name": "Panzer Corps 2: Axis Operations - 1939", + "url": "/v1/games/panzer-corps-2-axis-operations-1939" + }, + { + "slug": "panzer-corps-2-axis-operations-1940", + "name": "Panzer Corps 2: Axis Operations - 1940", + "url": "/v1/games/panzer-corps-2-axis-operations-1940" + }, + { + "slug": "panzer-corps-2-axis-operations-1941", + "name": "Panzer Corps 2: Axis Operations - 1941", + "url": "/v1/games/panzer-corps-2-axis-operations-1941" + }, + { + "slug": "panzer-corps-2-axis-operations-1942", + "name": "Panzer Corps 2: Axis Operations - 1942", + "url": "/v1/games/panzer-corps-2-axis-operations-1942" + }, + { + "slug": "panzer-corps-2-axis-operations-1943", + "name": "Panzer Corps 2: Axis Operations - 1943", + "url": "/v1/games/panzer-corps-2-axis-operations-1943" + }, + { + "slug": "panzer-corps-2-axis-operations-1944", + "name": "Panzer Corps 2: Axis Operations - 1944", + "url": "/v1/games/panzer-corps-2-axis-operations-1944" + }, + { + "slug": "panzer-corps-2-axis-operations-1945", + "name": "Panzer Corps 2: Axis Operations - 1945", + "url": "/v1/games/panzer-corps-2-axis-operations-1945" + }, + { + "slug": "panzer-corps-2-axis-operations-spanish-civil-war", + "name": "Panzer Corps 2: Axis Operations - Spanish Civil War", + "url": "/v1/games/panzer-corps-2-axis-operations-spanish-civil-war" + }, { "slug": "panzer-corps-afrika-korps", "name": "Panzer Corps: Afrika Korps", @@ -517666,6 +530336,11 @@ "name": "Papa's Quiz", "url": "/v1/games/papa-s-quiz" }, + { + "slug": "papa-s-raceway", + "name": "Papa's Raceway", + "url": "/v1/games/papa-s-raceway" + }, { "slug": "papa-s-scooperia", "name": "Papa's Scooperia", @@ -518406,6 +531081,11 @@ "name": "Papper Balls", "url": "/v1/games/papper-balls" }, + { + "slug": "paprium", + "name": "Paprium", + "url": "/v1/games/paprium" + }, { "slug": "papuwa", "name": "Papuwa", @@ -518491,6 +531171,11 @@ "name": "ParaWorld", "url": "/v1/games/paraworld" }, + { + "slug": "parabellum", + "name": "Parabellum", + "url": "/v1/games/parabellum" + }, { "slug": "parabellum-beta", "name": "Parabellum Beta", @@ -518796,6 +531481,11 @@ "name": "Paradox Guardians", "url": "/v1/games/paradox-guardians" }, + { + "slug": "paradox-meta", + "name": "Paradox Meta", + "url": "/v1/games/paradox-meta" + }, { "slug": "paradox-metal", "name": "Paradox Metal", @@ -520546,6 +533236,11 @@ "name": "Party Panic", "url": "/v1/games/party-panic" }, + { + "slug": "party-panic-4-pack", + "name": "Party Panic 4-Pack", + "url": "/v1/games/party-panic-4-pack" + }, { "slug": "party-parkade", "name": "Party Parkade", @@ -520671,6 +533366,11 @@ "name": "Party Words", "url": "/v1/games/party-words" }, + { + "slug": "party-incident-demo", + "name": "Party incident Demo", + "url": "/v1/games/party-incident-demo" + }, { "slug": "party-of-sin", "name": "Party of Sin", @@ -521621,6 +534321,11 @@ "name": "Pathologic Classic HD", "url": "/v1/games/pathologic-classic-hd" }, + { + "slug": "pathologic-the-marble-nest", + "name": "Pathologic: The Marble Nest", + "url": "/v1/games/pathologic-the-marble-nest" + }, { "slug": "pathological-tires", "name": "Pathological Tires", @@ -521736,6 +534441,16 @@ "name": "Patrician IV", "url": "/v1/games/patrician-iv" }, + { + "slug": "patrician-iv-gold-edition", + "name": "Patrician IV: Gold Edition", + "url": "/v1/games/patrician-iv-gold-edition" + }, + { + "slug": "patrician-iv-rise-of-a-dynasty", + "name": "Patrician IV: Rise of a Dynasty", + "url": "/v1/games/patrician-iv-rise-of-a-dynasty" + }, { "slug": "patrick-s-parabox", "name": "Patrick's Parabox", @@ -521821,6 +534536,11 @@ "name": "Patternis", "url": "/v1/games/patternis" }, + { + "slug": "patterns", + "name": "Patterns", + "url": "/v1/games/patterns" + }, { "slug": "patton-strikes-back", "name": "Patton Strikes Back", @@ -522331,6 +535051,16 @@ "name": "PayBack 2", "url": "/v1/games/payback-2" }, + { + "slug": "payday-2-armored-transport", + "name": "PayDay 2: Armored Transport", + "url": "/v1/games/payday-2-armored-transport" + }, + { + "slug": "payday-2-gage-shotgun-pack", + "name": "PayDay 2: Gage Shotgun Pack", + "url": "/v1/games/payday-2-gage-shotgun-pack" + }, { "slug": "paygame", "name": "PayGame", @@ -522341,6 +535071,11 @@ "name": "Payasos & Balazos", "url": "/v1/games/payasos-balazos" }, + { + "slug": "payazzo", + "name": "Payazzo", + "url": "/v1/games/payazzo" + }, { "slug": "payback", "name": "Payback", @@ -522621,6 +535356,16 @@ "name": "Peaks of Yore", "url": "/v1/games/peaks-of-yore" }, + { + "slug": "peaks-of-yore-the-great-alps", + "name": "Peaks of Yore - The Great Alps", + "url": "/v1/games/peaks-of-yore-the-great-alps" + }, + { + "slug": "peaks-of-yore-demo", + "name": "Peaks of Yore DEMO", + "url": "/v1/games/peaks-of-yore-demo" + }, { "slug": "peaky-blinders-mastermind", "name": "Peaky Blinders: Mastermind", @@ -523786,6 +536531,11 @@ "name": "Penthouse Hot Numbers Deluxe", "url": "/v1/games/penthouse-hot-numbers-deluxe" }, + { + "slug": "penthouse-pack", + "name": "Penthouse Pack", + "url": "/v1/games/penthouse-pack" + }, { "slug": "pentiment", "name": "Pentiment", @@ -523816,6 +536566,11 @@ "name": "Penumbra: Black Plague", "url": "/v1/games/penumbra-black-plague" }, + { + "slug": "penumbra-necrologue", + "name": "Penumbra: Necrologue", + "url": "/v1/games/penumbra-necrologue" + }, { "slug": "penumbra-overture", "name": "Penumbra: Overture", @@ -524026,6 +536781,11 @@ "name": "Per Aspera Test", "url": "/v1/games/per-aspera-test" }, + { + "slug": "per-aspera-blue-mars", + "name": "Per Aspera: Blue Mars", + "url": "/v1/games/per-aspera-blue-mars" + }, { "slug": "per-reliquias", "name": "Per Reliquias", @@ -524236,6 +536996,11 @@ "name": "Perfect Crime", "url": "/v1/games/perfect-crime" }, + { + "slug": "perfect-dark-q106547243", + "name": "Perfect Dark", + "url": "/v1/games/perfect-dark-q106547243" + }, { "slug": "perfect-dark-q3375307", "name": "Perfect Dark", @@ -524896,6 +537661,11 @@ "name": "Persona 3 Aegis: The First Mission", "url": "/v1/games/persona-3-aegis-the-first-mission" }, + { + "slug": "persona-3-fes", + "name": "Persona 3 FES", + "url": "/v1/games/persona-3-fes" + }, { "slug": "persona-3-portable", "name": "Persona 3 Portable", @@ -525286,6 +538056,11 @@ "name": "Pet Shop World", "url": "/v1/games/pet-shop-world" }, + { + "slug": "pet-simulator-99", + "name": "Pet Simulator 99", + "url": "/v1/games/pet-simulator-99" + }, { "slug": "pet-soccer", "name": "Pet Soccer", @@ -525721,6 +538496,11 @@ "name": "Petty's Adventure: Volcano", "url": "/v1/games/petty-s-adventure-volcano" }, + { + "slug": "petz", + "name": "Petz", + "url": "/v1/games/petz" + }, { "slug": "petz-beach", "name": "Petz Beach", @@ -526086,6 +538866,11 @@ "name": "Phantasy Star Adventure", "url": "/v1/games/phantasy-star-adventure" }, + { + "slug": "phantasy-star-collection", + "name": "Phantasy Star Collection", + "url": "/v1/games/phantasy-star-collection" + }, { "slug": "phantasy-star-complete-collection", "name": "Phantasy Star Complete Collection", @@ -526331,6 +539116,11 @@ "name": "Phantom Fighter", "url": "/v1/games/phantom-fighter" }, + { + "slug": "phantom-forces", + "name": "Phantom Forces", + "url": "/v1/games/phantom-forces" + }, { "slug": "phantom-gear", "name": "Phantom Gear", @@ -527211,6 +540001,11 @@ "name": "Phoenix Point", "url": "/v1/games/phoenix-point" }, + { + "slug": "phoenix-point-kaos-engines", + "name": "Phoenix Point: Kaos Engines", + "url": "/v1/games/phoenix-point-kaos-engines" + }, { "slug": "phoenix-springs", "name": "Phoenix Springs", @@ -527276,6 +540071,11 @@ "name": "Phoenix: The Fall", "url": "/v1/games/phoenix-the-fall" }, + { + "slug": "phoenixgo", + "name": "PhoenixGo", + "url": "/v1/games/phoenixgo" + }, { "slug": "phoenotopia-awakening", "name": "Phoenotopia: Awakening", @@ -527386,6 +540186,11 @@ "name": "Photo Kano Kiss", "url": "/v1/games/photo-kano-kiss" }, + { + "slug": "photo-play", + "name": "Photo Play", + "url": "/v1/games/photo-play" + }, { "slug": "photo-playhouse", "name": "Photo Playhouse", @@ -527556,6 +540361,11 @@ "name": "Photos with Mario", "url": "/v1/games/photos-with-mario" }, + { + "slug": "photoshop-contest", + "name": "Photoshop contest", + "url": "/v1/games/photoshop-contest" + }, { "slug": "phozon", "name": "Phozon", @@ -528891,6 +541701,11 @@ "name": "Piggly Pagly Boom", "url": "/v1/games/piggly-pagly-boom" }, + { + "slug": "piggy", + "name": "Piggy", + "url": "/v1/games/piggy" + }, { "slug": "piggy-disco", "name": "Piggy Disco", @@ -529001,6 +541816,16 @@ "name": "Pik the Archon", "url": "/v1/games/pik-the-archon" }, + { + "slug": "pika-goro-v", + "name": "Pika Goro V", + "url": "/v1/games/pika-goro-v" + }, + { + "slug": "pika-land", + "name": "Pika Land", + "url": "/v1/games/pika-land" + }, { "slug": "pika-pika-nurse-monogatari-2", "name": "Pika Pika Nurse Monogatari 2", @@ -529011,6 +541836,11 @@ "name": "Pike and Shot : Campaigns", "url": "/v1/games/pike-and-shot-campaigns" }, + { + "slug": "pike-operacija-giedi-prime", + "name": "Pike: Operacija Giedi Prime", + "url": "/v1/games/pike-operacija-giedi-prime" + }, { "slug": "pike-operacija-gromoverzhec", "name": "Pike: Operacija Gromoverzhec", @@ -529246,6 +542076,11 @@ "name": "Pillars of Eternity: Complete Edition", "url": "/v1/games/pillars-of-eternity-complete-edition" }, + { + "slug": "pillars-of-eternity-the-white-march", + "name": "Pillars of Eternity: The White March", + "url": "/v1/games/pillars-of-eternity-the-white-march" + }, { "slug": "pillars-of-garendall", "name": "Pillars of Garendall", @@ -529666,6 +542501,16 @@ "name": "Pinball FX2 VR", "url": "/v1/games/pinball-fx2-vr" }, + { + "slug": "pinball-fx3-aliens-vs-pinball", + "name": "Pinball FX3 - Aliens vs Pinball", + "url": "/v1/games/pinball-fx3-aliens-vs-pinball" + }, + { + "slug": "pinball-fx3-portal-pinball", + "name": "Pinball FX3 - Portal Pinball", + "url": "/v1/games/pinball-fx3-portal-pinball" + }, { "slug": "pinball-factory", "name": "Pinball Factory", @@ -529736,6 +542581,11 @@ "name": "Pinball Inside: A VR Arcade Game", "url": "/v1/games/pinball-inside-a-vr-arcade-game" }, + { + "slug": "pinball-jam-q110572248", + "name": "Pinball Jam", + "url": "/v1/games/pinball-jam-q110572248" + }, { "slug": "pinball-jam-q135453769", "name": "Pinball Jam", @@ -529756,6 +542606,31 @@ "name": "Pinball M", "url": "/v1/games/pinball-m" }, + { + "slug": "pinball-m-chucky-s-killer-pinball", + "name": "Pinball M - Chucky's Killer Pinball", + "url": "/v1/games/pinball-m-chucky-s-killer-pinball" + }, + { + "slug": "pinball-m-dead-by-daylight-pinball", + "name": "Pinball M - Dead by Daylight Pinball", + "url": "/v1/games/pinball-m-dead-by-daylight-pinball" + }, + { + "slug": "pinball-m-death-save-bundle", + "name": "Pinball M - Death Save Bundle", + "url": "/v1/games/pinball-m-death-save-bundle" + }, + { + "slug": "pinball-m-duke-nukem-s-big-shot-pinball", + "name": "Pinball M - Duke Nukem's Big Shot Pinball", + "url": "/v1/games/pinball-m-duke-nukem-s-big-shot-pinball" + }, + { + "slug": "pinball-m-the-thing-pinball", + "name": "Pinball M - The Thing Pinball", + "url": "/v1/games/pinball-m-the-thing-pinball" + }, { "slug": "pinball-magic", "name": "Pinball Magic", @@ -529856,6 +542731,11 @@ "name": "Pinballer (3D Pinball)", "url": "/v1/games/pinballer-3d-pinball" }, + { + "slug": "pinballistik", + "name": "Pinballistik", + "url": "/v1/games/pinballistik" + }, { "slug": "pinbleton-park", "name": "Pinbleton Park", @@ -531226,6 +544106,11 @@ "name": "Pirates of the Caribbean Pinball", "url": "/v1/games/pirates-of-the-caribbean-pinball" }, + { + "slug": "pirates-of-the-caribbean-armada-of-the-damned", + "name": "Pirates of the Caribbean: Armada of the Damned", + "url": "/v1/games/pirates-of-the-caribbean-armada-of-the-damned" + }, { "slug": "pirates-of-the-caribbean-at-world-s-end", "name": "Pirates of the Caribbean: At World's End", @@ -532881,6 +545766,11 @@ "name": "PixelJunk Eden 2", "url": "/v1/games/pixeljunk-eden-2" }, + { + "slug": "pixeljunk-eden-encore", + "name": "PixelJunk Eden Encore", + "url": "/v1/games/pixeljunk-eden-encore" + }, { "slug": "pixeljunk-monsters", "name": "PixelJunk Monsters", @@ -533151,6 +546041,11 @@ "name": "Pixelmancy", "url": "/v1/games/pixelmancy" }, + { + "slug": "pixelmon", + "name": "Pixelmon", + "url": "/v1/games/pixelmon" + }, { "slug": "pixelmon-arena", "name": "Pixelmon Arena", @@ -533461,6 +546356,11 @@ "name": "Pizza Master VR", "url": "/v1/games/pizza-master-vr" }, + { + "slug": "pizza-pachinko", + "name": "Pizza Pachinko", + "url": "/v1/games/pizza-pachinko" + }, { "slug": "pizza-party", "name": "Pizza Party", @@ -533581,6 +546481,11 @@ "name": "Pizzaro Project Deep Dish", "url": "/v1/games/pizzaro-project-deep-dish" }, + { + "slug": "pizzatron-3000", + "name": "Pizzatron 3000", + "url": "/v1/games/pizzatron-3000" + }, { "slug": "pizzeria", "name": "Pizzeria", @@ -534026,11 +546931,71 @@ "name": "Planet Coaster", "url": "/v1/games/planet-coaster" }, + { + "slug": "planet-coaster-adventure-pack", + "name": "Planet Coaster - Adventure Pack", + "url": "/v1/games/planet-coaster-adventure-pack" + }, + { + "slug": "planet-coaster-back-to-the-future-time-machine-construction-kit", + "name": "Planet Coaster - Back to the Future Time Machine Construction Kit", + "url": "/v1/games/planet-coaster-back-to-the-future-time-machine-construction-kit" + }, + { + "slug": "planet-coaster-classic-rides-collection", + "name": "Planet Coaster - Classic Rides Collection", + "url": "/v1/games/planet-coaster-classic-rides-collection" + }, + { + "slug": "planet-coaster-knight-rider-k-i-t-t-construction-kit", + "name": "Planet Coaster - Knight Rider K.I.T.T. Construction Kit", + "url": "/v1/games/planet-coaster-knight-rider-k-i-t-t-construction-kit" + }, + { + "slug": "planet-coaster-magnificent-rides-collection", + "name": "Planet Coaster - Magnificent Rides Collection", + "url": "/v1/games/planet-coaster-magnificent-rides-collection" + }, + { + "slug": "planet-coaster-quick-draw-interactive-shooting-ride", + "name": "Planet Coaster - Quick Draw Interactive Shooting Ride", + "url": "/v1/games/planet-coaster-quick-draw-interactive-shooting-ride" + }, + { + "slug": "planet-coaster-spooky-pack", + "name": "Planet Coaster - Spooky Pack", + "url": "/v1/games/planet-coaster-spooky-pack" + }, + { + "slug": "planet-coaster-studios-pack", + "name": "Planet Coaster - Studios Pack", + "url": "/v1/games/planet-coaster-studios-pack" + }, + { + "slug": "planet-coaster-the-munsters-munster-koach-construction-kit", + "name": "Planet Coaster - The Munsters Munster Koach Construction Kit", + "url": "/v1/games/planet-coaster-the-munsters-munster-koach-construction-kit" + }, + { + "slug": "planet-coaster-vintage-pack", + "name": "Planet Coaster - Vintage Pack", + "url": "/v1/games/planet-coaster-vintage-pack" + }, + { + "slug": "planet-coaster-world-s-fair-pack", + "name": "Planet Coaster - World's Fair Pack", + "url": "/v1/games/planet-coaster-world-s-fair-pack" + }, { "slug": "planet-coaster-2", "name": "Planet Coaster 2", "url": "/v1/games/planet-coaster-2" }, + { + "slug": "planet-coaster-ghostbusters", + "name": "Planet Coaster: Ghostbusters", + "url": "/v1/games/planet-coaster-ghostbusters" + }, { "slug": "planet-collectors-episode-earth", "name": "Planet Collectors: Episode Earth", @@ -534286,6 +547251,11 @@ "name": "Planet S", "url": "/v1/games/planet-s" }, + { + "slug": "planet-saints-pack", + "name": "Planet Saints Pack", + "url": "/v1/games/planet-saints-pack" + }, { "slug": "planet-scanner", "name": "Planet Scanner", @@ -534401,6 +547371,66 @@ "name": "Planet Zoo 2", "url": "/v1/games/planet-zoo-2" }, + { + "slug": "planet-zoo-africa-pack", + "name": "Planet Zoo: Africa Pack", + "url": "/v1/games/planet-zoo-africa-pack" + }, + { + "slug": "planet-zoo-aquatic-pack", + "name": "Planet Zoo: Aquatic Pack", + "url": "/v1/games/planet-zoo-aquatic-pack" + }, + { + "slug": "planet-zoo-arctic-pack", + "name": "Planet Zoo: Arctic Pack", + "url": "/v1/games/planet-zoo-arctic-pack" + }, + { + "slug": "planet-zoo-australia-pack", + "name": "Planet Zoo: Australia Pack", + "url": "/v1/games/planet-zoo-australia-pack" + }, + { + "slug": "planet-zoo-conservation-pack", + "name": "Planet Zoo: Conservation Pack", + "url": "/v1/games/planet-zoo-conservation-pack" + }, + { + "slug": "planet-zoo-europe-pack", + "name": "Planet Zoo: Europe Pack", + "url": "/v1/games/planet-zoo-europe-pack" + }, + { + "slug": "planet-zoo-grasslands-animal-pack", + "name": "Planet Zoo: Grasslands Animal Pack", + "url": "/v1/games/planet-zoo-grasslands-animal-pack" + }, + { + "slug": "planet-zoo-north-america-animal-pack", + "name": "Planet Zoo: North America Animal Pack", + "url": "/v1/games/planet-zoo-north-america-animal-pack" + }, + { + "slug": "planet-zoo-south-america-pack", + "name": "Planet Zoo: South America Pack", + "url": "/v1/games/planet-zoo-south-america-pack" + }, + { + "slug": "planet-zoo-southeast-asia-animal-pack", + "name": "Planet Zoo: Southeast Asia Animal Pack", + "url": "/v1/games/planet-zoo-southeast-asia-animal-pack" + }, + { + "slug": "planet-zoo-twilight-pack", + "name": "Planet Zoo: Twilight Pack", + "url": "/v1/games/planet-zoo-twilight-pack" + }, + { + "slug": "planet-zoo-wetlands-animal-pack", + "name": "Planet Zoo: Wetlands Animal Pack", + "url": "/v1/games/planet-zoo-wetlands-animal-pack" + }, { "slug": "planet-after-us", "name": "Planet after us", @@ -535626,6 +548656,11 @@ "name": "PlayCOQ: The Coop Defender", "url": "/v1/games/playcoq-the-coop-defender" }, + { + "slug": "playchoice-10", + "name": "PlayChoice-10", + "url": "/v1/games/playchoice-10" + }, { "slug": "playform-human-dynamics", "name": "PlayForm: Human Dynamics", @@ -535646,6 +548681,11 @@ "name": "PlayMaker Football", "url": "/v1/games/playmaker-football" }, + { + "slug": "playstation-20th-anniversary-theme", + "name": "PlayStation 20th Anniversary Theme", + "url": "/v1/games/playstation-20th-anniversary-theme" + }, { "slug": "playstation-all-stars-battle-royale", "name": "PlayStation All-Stars Battle Royale", @@ -535671,6 +548711,16 @@ "name": "PlayStation Move Heroes", "url": "/v1/games/playstation-move-heroes" }, + { + "slug": "playstation-vr-demo-disc", + "name": "PlayStation VR Demo Disc", + "url": "/v1/games/playstation-vr-demo-disc" + }, + { + "slug": "playstation-vr-worlds", + "name": "PlayStation VR Worlds", + "url": "/v1/games/playstation-vr-worlds" + }, { "slug": "playstation-vita-pets", "name": "PlayStation Vita Pets", @@ -535731,6 +548781,11 @@ "name": "Playboy the Game", "url": "/v1/games/playboy-the-game" }, + { + "slug": "playboy-the-mansion-private-party", + "name": "Playboy the Mansion: Private Party", + "url": "/v1/games/playboy-the-mansion-private-party" + }, { "slug": "playboy-s-complete-massage", "name": "Playboy's Complete Massage", @@ -535741,6 +548796,11 @@ "name": "Playboy: The Mansion", "url": "/v1/games/playboy-the-mansion" }, + { + "slug": "playboy-the-mansion-gold-edition", + "name": "Playboy: The Mansion - Gold Edition", + "url": "/v1/games/playboy-the-mansion-gold-edition" + }, { "slug": "playclub", "name": "Playclub", @@ -536831,6 +549891,11 @@ "name": "Pocket Build", "url": "/v1/games/pocket-build" }, + { + "slug": "pocket-build-q111516800", + "name": "Pocket Build+", + "url": "/v1/games/pocket-build-q111516800" + }, { "slug": "pocket-card-jockey", "name": "Pocket Card Jockey", @@ -537286,6 +550351,11 @@ "name": "Pocoman", "url": "/v1/games/pocoman" }, + { + "slug": "pocoyo-circuits", + "name": "Pocoyo Circuits", + "url": "/v1/games/pocoyo-circuits" + }, { "slug": "pocoyo-racing", "name": "Pocoyo Racing", @@ -537366,6 +550436,11 @@ "name": "Pogglewash", "url": "/v1/games/pogglewash" }, + { + "slug": "poglings", + "name": "Poglings", + "url": "/v1/games/poglings" + }, { "slug": "pogo", "name": "Pogo", @@ -537391,6 +550466,16 @@ "name": "Pogo Knight", "url": "/v1/games/pogo-knight" }, + { + "slug": "pogo-padlock", + "name": "Pogo Padlock", + "url": "/v1/games/pogo-padlock" + }, + { + "slug": "pogo-painter", + "name": "Pogo Painter", + "url": "/v1/games/pogo-painter" + }, { "slug": "pogo-pogo", "name": "Pogo Pogo", @@ -537421,6 +550506,11 @@ "name": "Pogo-Gogo", "url": "/v1/games/pogo-gogo" }, + { + "slug": "pogo-a-gogo", + "name": "Pogo-a-Gogo", + "url": "/v1/games/pogo-a-gogo" + }, { "slug": "pogo3d", "name": "Pogo3D", @@ -537466,6 +550556,11 @@ "name": "Poibos Part 1", "url": "/v1/games/poibos-part-1" }, + { + "slug": "poietic-generator", + "name": "Poietic Generator", + "url": "/v1/games/poietic-generator" + }, { "slug": "poing", "name": "Poing", @@ -537556,6 +550651,11 @@ "name": "Pointless", "url": "/v1/games/pointless" }, + { + "slug": "pointman-the-akkadian-wars", + "name": "Pointman: the Akkadian Wars", + "url": "/v1/games/pointman-the-akkadian-wars" + }, { "slug": "poison-control", "name": "Poison Control", @@ -537926,6 +551026,11 @@ "name": "Pokris", "url": "/v1/games/pokris" }, + { + "slug": "pok-forest", + "name": "Poké Forest", + "url": "/v1/games/pok-forest" + }, { "slug": "pok-force", "name": "PokéForce", @@ -538011,6 +551116,11 @@ "name": "Pokémon Box: Ruby & Sapphire", "url": "/v1/games/pok-mon-box-ruby-sapphire" }, + { + "slug": "pok-mon-brick-bronze", + "name": "Pokémon Brick Bronze", + "url": "/v1/games/pok-mon-brick-bronze" + }, { "slug": "pok-mon-brilliant-diamond", "name": "Pokémon Brilliant Diamond", @@ -538151,6 +551261,11 @@ "name": "Pokémon Legends: Z-A", "url": "/v1/games/pok-mon-legends-z-a" }, + { + "slug": "pok-mon-legends-z-a-mega-dimension", + "name": "Pokémon Legends: Z-A - Mega Dimension", + "url": "/v1/games/pok-mon-legends-z-a-mega-dimension" + }, { "slug": "pok-mon-let-s-go-eevee", "name": "Pokémon Let's Go, Eevee!", @@ -538211,11 +551326,21 @@ "name": "Pokémon Mystery Dungeon: Gates to Infinity", "url": "/v1/games/pok-mon-mystery-dungeon-gates-to-infinity" }, + { + "slug": "pok-mon-mystery-dungeon-gates-to-infinity-demo", + "name": "Pokémon Mystery Dungeon: Gates to Infinity demo", + "url": "/v1/games/pok-mon-mystery-dungeon-gates-to-infinity-demo" + }, { "slug": "pok-mon-mystery-dungeon-go-storm-adventure-team", "name": "Pokémon Mystery Dungeon: Go! Storm Adventure Team", "url": "/v1/games/pok-mon-mystery-dungeon-go-storm-adventure-team" }, + { + "slug": "pok-mon-mystery-dungeon-gold-rescue-team", + "name": "Pokémon Mystery Dungeon: Gold Rescue Team", + "url": "/v1/games/pok-mon-mystery-dungeon-gold-rescue-team" + }, { "slug": "pok-mon-mystery-dungeon-red-rescue-team", "name": "Pokémon Mystery Dungeon: Red Rescue Team", @@ -538246,6 +551371,11 @@ "name": "Pokémon Picross", "url": "/v1/games/pok-mon-picross" }, + { + "slug": "pok-mon-picross-gbc", + "name": "Pokémon Picross GBC", + "url": "/v1/games/pok-mon-picross-gbc" + }, { "slug": "pok-mon-pinball", "name": "Pokémon Pinball", @@ -538286,6 +551416,11 @@ "name": "Pokémon Poké Ball Launcher", "url": "/v1/games/pok-mon-pok-ball-launcher" }, + { + "slug": "pok-mon-prism", + "name": "Pokémon Prism", + "url": "/v1/games/pok-mon-prism" + }, { "slug": "pok-mon-project-studio", "name": "Pokémon Project Studio", @@ -538386,6 +551521,11 @@ "name": "Pokémon Scarlet", "url": "/v1/games/pok-mon-scarlet" }, + { + "slug": "pok-mon-scarlet-and-violet-the-teal-mask", + "name": "Pokémon Scarlet and Violet: The Teal Mask", + "url": "/v1/games/pok-mon-scarlet-and-violet-the-teal-mask" + }, { "slug": "pok-mon-seek-find", "name": "Pokémon Seek & Find", @@ -538426,6 +551566,11 @@ "name": "Pokémon Snap", "url": "/v1/games/pok-mon-snap" }, + { + "slug": "pok-mon-snap-station", + "name": "Pokémon Snap Station", + "url": "/v1/games/pok-mon-snap-station" + }, { "slug": "pok-mon-sodate-ya-san-mini", "name": "Pokémon Sodate-ya-san mini", @@ -538461,6 +551606,11 @@ "name": "Pokémon Sword", "url": "/v1/games/pok-mon-sword" }, + { + "slug": "pok-mon-sword-and-shield-expansion-pass", + "name": "Pokémon Sword and Shield Expansion Pass", + "url": "/v1/games/pok-mon-sword-and-shield-expansion-pass" + }, { "slug": "pok-mon-tcg-online", "name": "Pokémon TCG Online", @@ -538921,6 +552071,11 @@ "name": "Police Patrol", "url": "/v1/games/police-patrol" }, + { + "slug": "police-quest-collection", + "name": "Police Quest Collection", + "url": "/v1/games/police-quest-collection" + }, { "slug": "police-quest-ii-the-vengeance", "name": "Police Quest II: The Vengeance", @@ -538951,6 +552106,11 @@ "name": "Police Quest: SWAT", "url": "/v1/games/police-quest-swat" }, + { + "slug": "police-quest-swat-1-2", + "name": "Police Quest: SWAT 1+2", + "url": "/v1/games/police-quest-swat-1-2" + }, { "slug": "police-quest-swat-2", "name": "Police Quest: SWAT 2", @@ -538981,6 +552141,11 @@ "name": "Police Shootout: Prologue", "url": "/v1/games/police-shootout-prologue" }, + { + "slug": "police-simulator-2", + "name": "Police Simulator 2", + "url": "/v1/games/police-simulator-2" + }, { "slug": "police-simulator-patrol-duty", "name": "Police Simulator: Patrol Duty", @@ -540111,6 +553276,11 @@ "name": "Pon Para and the Great Southern Labyrinth", "url": "/v1/games/pon-para-and-the-great-southern-labyrinth" }, + { + "slug": "pon-para-and-the-great-southern-labyrinth-love-and-shadows", + "name": "Pon Para and the Great Southern Labyrinth - Love and Shadows", + "url": "/v1/games/pon-para-and-the-great-southern-labyrinth-love-and-shadows" + }, { "slug": "pon-para-and-the-unconquerable-scorpion", "name": "Pon Para and the Unconquerable Scorpion", @@ -540696,6 +553866,11 @@ "name": "Pop DS", "url": "/v1/games/pop-ds" }, + { + "slug": "pop-dart", + "name": "Pop Dart", + "url": "/v1/games/pop-dart" + }, { "slug": "pop-flamer", "name": "Pop Flamer", @@ -541016,6 +554191,11 @@ "name": "Popcorn!", "url": "/v1/games/popcorn-q135057451" }, + { + "slug": "popex", + "name": "Popex", + "url": "/v1/games/popex" + }, { "slug": "popeye-q108885209", "name": "Popeye", @@ -541156,6 +554336,26 @@ "name": "Poppy Playtime", "url": "/v1/games/poppy-playtime" }, + { + "slug": "poppy-playtime-chapter-1", + "name": "Poppy Playtime - Chapter 1", + "url": "/v1/games/poppy-playtime-chapter-1" + }, + { + "slug": "poppy-playtime-chapter-2", + "name": "Poppy Playtime - Chapter 2", + "url": "/v1/games/poppy-playtime-chapter-2" + }, + { + "slug": "poppy-playtime-chapter-3", + "name": "Poppy Playtime - Chapter 3", + "url": "/v1/games/poppy-playtime-chapter-3" + }, + { + "slug": "poppy-playtime-chapter-4", + "name": "Poppy Playtime - Chapter 4", + "url": "/v1/games/poppy-playtime-chapter-4" + }, { "slug": "poppy-sanctum", "name": "Poppy Sanctum", @@ -541226,6 +554426,11 @@ "name": "Populous: The Beginning", "url": "/v1/games/populous-the-beginning" }, + { + "slug": "populous-world-editor", + "name": "Populous: World Editor", + "url": "/v1/games/populous-world-editor" + }, { "slug": "populus-run", "name": "Populus Run", @@ -541486,6 +554691,16 @@ "name": "Portal Brawlers", "url": "/v1/games/portal-brawlers" }, + { + "slug": "portal-bundle", + "name": "Portal Bundle", + "url": "/v1/games/portal-bundle" + }, + { + "slug": "portal-companion-collection", + "name": "Portal Companion Collection", + "url": "/v1/games/portal-companion-collection" + }, { "slug": "portal-defect", "name": "Portal Defect", @@ -541606,11 +554821,21 @@ "name": "Portal: Still Alive", "url": "/v1/games/portal-still-alive" }, + { + "slug": "portal-the-first-slice", + "name": "Portal: The First Slice", + "url": "/v1/games/portal-the-first-slice" + }, { "slug": "portal-the-flash-version", "name": "Portal: The Flash Version", "url": "/v1/games/portal-the-flash-version" }, + { + "slug": "portal-wii-u-edition", + "name": "Portal: Wii U Edition", + "url": "/v1/games/portal-wii-u-edition" + }, { "slug": "portalbox", "name": "PortalBox", @@ -541676,6 +554901,11 @@ "name": "Portugal Tourism GP!", "url": "/v1/games/portugal-tourism-gp" }, + { + "slug": "portugal-virtual", + "name": "Portugal Virtual", + "url": "/v1/games/portugal-virtual" + }, { "slug": "posable-heroes", "name": "Posable Heroes", @@ -541696,6 +554926,11 @@ "name": "Poseidon Wars 3-D", "url": "/v1/games/poseidon-wars-3-d" }, + { + "slug": "poseidon-master-of-atlantis", + "name": "Poseidon: Master of Atlantis", + "url": "/v1/games/poseidon-master-of-atlantis" + }, { "slug": "posey-picks-and-the-bus-stop", "name": "Posey Picks and the Bus Stop", @@ -541801,6 +555036,11 @@ "name": "Post Apocalyptic Mayhem", "url": "/v1/games/post-apocalyptic-mayhem" }, + { + "slug": "post-apocalyptic-mayhem-chaos-pack", + "name": "Post Apocalyptic Mayhem: Chaos Pack", + "url": "/v1/games/post-apocalyptic-mayhem-chaos-pack" + }, { "slug": "post-cards", "name": "Post Cards", @@ -541881,6 +555121,11 @@ "name": "Post-Apo Builder: Prologue", "url": "/v1/games/post-apo-builder-prologue" }, + { + "slug": "post-self-muck", + "name": "Post-Self MUCK", + "url": "/v1/games/post-self-muck" + }, { "slug": "post-speed-drive-for-blood", "name": "Post-Speed: Drive for Blood", @@ -541916,6 +555161,51 @@ "name": "Postal 2 Redux", "url": "/v1/games/postal-2-redux" }, + { + "slug": "postal-2-a-week-in-paradise", + "name": "Postal 2: A Week in Paradise", + "url": "/v1/games/postal-2-a-week-in-paradise" + }, + { + "slug": "postal-2-apocalypse-weekend", + "name": "Postal 2: Apocalypse Weekend", + "url": "/v1/games/postal-2-apocalypse-weekend" + }, + { + "slug": "postal-2-complete", + "name": "Postal 2: Complete", + "url": "/v1/games/postal-2-complete" + }, + { + "slug": "postal-2-corkscrew-rules", + "name": "Postal 2: Corkscrew Rules!", + "url": "/v1/games/postal-2-corkscrew-rules" + }, + { + "slug": "postal-2-eternal-damnation", + "name": "Postal 2: Eternal Damnation", + "url": "/v1/games/postal-2-eternal-damnation" + }, + { + "slug": "postal-2-paradise-lost", + "name": "Postal 2: Paradise Lost", + "url": "/v1/games/postal-2-paradise-lost" + }, + { + "slug": "postal-2-share-the-pain", + "name": "Postal 2: Share the Pain", + "url": "/v1/games/postal-2-share-the-pain" + }, + { + "slug": "postal-2-share-the-pain-demo", + "name": "Postal 2: Share the Pain demo", + "url": "/v1/games/postal-2-share-the-pain-demo" + }, + { + "slug": "postal-3-catharsis-reborn", + "name": "Postal 3: Catharsis Reborn", + "url": "/v1/games/postal-3-catharsis-reborn" + }, { "slug": "postal-4-no-regerts", "name": "Postal 4: No Regerts", @@ -541931,16 +555221,46 @@ "name": "Postal III", "url": "/v1/games/postal-iii" }, + { + "slug": "postal-plus", + "name": "Postal Plus", + "url": "/v1/games/postal-plus" + }, { "slug": "postal-redux", "name": "Postal Redux", "url": "/v1/games/postal-redux" }, + { + "slug": "postal-unlimited", + "name": "Postal Unlimited", + "url": "/v1/games/postal-unlimited" + }, + { + "slug": "postal-10th-anniversary-collector-s-edition", + "name": "Postal: 10th Anniversary Collector's Edition", + "url": "/v1/games/postal-10th-anniversary-collector-s-edition" + }, { "slug": "postal-brain-damaged", "name": "Postal: Brain Damaged", "url": "/v1/games/postal-brain-damaged" }, + { + "slug": "postal-classic-and-uncut", + "name": "Postal: Classic and Uncut", + "url": "/v1/games/postal-classic-and-uncut" + }, + { + "slug": "postal-fudge-pack", + "name": "Postal: Fudge Pack", + "url": "/v1/games/postal-fudge-pack" + }, + { + "slug": "postal-special-delivery", + "name": "Postal: Special Delivery", + "url": "/v1/games/postal-special-delivery" + }, { "slug": "postapo-mechanic-simulator", "name": "Postapo Mechanic Simulator", @@ -542686,6 +556006,11 @@ "name": "Power Drive", "url": "/v1/games/power-drive" }, + { + "slug": "power-drive-2000", + "name": "Power Drive 2000", + "url": "/v1/games/power-drive-2000" + }, { "slug": "power-drive-rally", "name": "Power Drive Rally", @@ -543006,6 +556331,11 @@ "name": "Power Rangers Time Force", "url": "/v1/games/power-rangers-time-force" }, + { + "slug": "power-rangers-versus-teenage-mutant-ninja-turtles-ultimate-hero-clash-2", + "name": "Power Rangers Versus Teenage Mutant Ninja Turtles: Ultimate Hero Clash 2", + "url": "/v1/games/power-rangers-versus-teenage-mutant-ninja-turtles-ultimate-hero-clash-2" + }, { "slug": "power-rangers-wild-force", "name": "Power Rangers Wild Force", @@ -543026,6 +556356,11 @@ "name": "Power Rangers Zeo: Full Tilt Battle Pinball", "url": "/v1/games/power-rangers-zeo-full-tilt-battle-pinball" }, + { + "slug": "power-rangers-vs-teenage-mutant-ninja-turtles-ultimate-hero-clash-2", + "name": "Power Rangers vs Teenage Mutant Ninja Turtles: Ultimate Hero Clash 2", + "url": "/v1/games/power-rangers-vs-teenage-mutant-ninja-turtles-ultimate-hero-clash-2" + }, { "slug": "power-rangers-battle-for-the-grid", "name": "Power Rangers: Battle for the Grid", @@ -543276,6 +556611,11 @@ "name": "Power, The", "url": "/v1/games/power-the" }, + { + "slug": "power-soft", + "name": "Power-Soft", + "url": "/v1/games/power-soft" + }, { "slug": "power-up", "name": "Power-Up", @@ -543606,6 +556946,16 @@ "name": "Pporite", "url": "/v1/games/pporite" }, + { + "slug": "prboom", + "name": "PrBoom", + "url": "/v1/games/prboom" + }, + { + "slug": "prboom-q67197321", + "name": "PrBoom+", + "url": "/v1/games/prboom-q67197321" + }, { "slug": "practical-composition-i", "name": "Practical Composition I", @@ -544871,6 +558221,16 @@ "name": "Prey", "url": "/v1/games/prey" }, + { + "slug": "prey-mooncrash", + "name": "Prey - Mooncrash", + "url": "/v1/games/prey-mooncrash" + }, + { + "slug": "prey-2", + "name": "Prey 2", + "url": "/v1/games/prey-2" + }, { "slug": "prey-invasion", "name": "Prey Invasion", @@ -544896,6 +558256,11 @@ "name": "Prey: Typhon Hunter", "url": "/v1/games/prey-typhon-hunter" }, + { + "slug": "prezident-21", + "name": "Prezident 21", + "url": "/v1/games/prezident-21" + }, { "slug": "prezzemolo-in-una-giornata-da-incubo", "name": "Prezzemolo in una Giornata da Incubo", @@ -545576,6 +558941,11 @@ "name": "Prince of Evil", "url": "/v1/games/prince-of-evil" }, + { + "slug": "prince-of-persia", + "name": "Prince of Persia", + "url": "/v1/games/prince-of-persia" + }, { "slug": "prince-of-persia-2-the-shadow-and-the-flame", "name": "Prince of Persia 2: The Shadow and the Flame", @@ -545591,6 +558961,11 @@ "name": "Prince of Persia Classic", "url": "/v1/games/prince-of-persia-classic" }, + { + "slug": "prince-of-persia-trilogy", + "name": "Prince of Persia Trilogy", + "url": "/v1/games/prince-of-persia-trilogy" + }, { "slug": "prince-of-persia-epilogue", "name": "Prince of Persia: Epilogue", @@ -545646,6 +559021,11 @@ "name": "Prince of Persia: The Lost Crown", "url": "/v1/games/prince-of-persia-the-lost-crown" }, + { + "slug": "prince-of-persia-the-lost-crown-mask-of-darkness", + "name": "Prince of Persia: The Lost Crown - Mask of Darkness", + "url": "/v1/games/prince-of-persia-the-lost-crown-mask-of-darkness" + }, { "slug": "prince-of-persia-the-sands-of-time-q99309488", "name": "Prince of Persia: The Sands of Time", @@ -545691,6 +559071,16 @@ "name": "Princess & Conquest", "url": "/v1/games/princess-conquest" }, + { + "slug": "princess-conquest-additional-characters-2", + "name": "Princess & Conquest - Additional Characters #2", + "url": "/v1/games/princess-conquest-additional-characters-2" + }, + { + "slug": "princess-conquest-additional-characters-1", + "name": "Princess & Conquest Additional Characters #1", + "url": "/v1/games/princess-conquest-additional-characters-1" + }, { "slug": "princess-arthur", "name": "Princess Arthur", @@ -546416,6 +559806,11 @@ "name": "Prison Architect", "url": "/v1/games/prison-architect" }, + { + "slug": "prison-architect-gangs", + "name": "Prison Architect - Gangs", + "url": "/v1/games/prison-architect-gangs" + }, { "slug": "prison-architect-2", "name": "Prison Architect 2", @@ -546426,6 +559821,11 @@ "name": "Prison Architect: Going Green", "url": "/v1/games/prison-architect-going-green" }, + { + "slug": "prison-architect-second-chances", + "name": "Prison Architect: Second Chances", + "url": "/v1/games/prison-architect-second-chances" + }, { "slug": "prison-bomber", "name": "Prison Bomber", @@ -546816,6 +560216,11 @@ "name": "Privateer 2: The Darkening", "url": "/v1/games/privateer-2-the-darkening" }, + { + "slug": "privateer-cd-rom-edition", + "name": "Privateer CD-ROM Edition", + "url": "/v1/games/privateer-cd-rom-edition" + }, { "slug": "privateer-escape", "name": "Privateer Escape", @@ -547086,6 +560491,11 @@ "name": "Pro Darts 2022", "url": "/v1/games/pro-darts-2022" }, + { + "slug": "pro-darts-2022-q112230960", + "name": "Pro Darts 2022+", + "url": "/v1/games/pro-darts-2022-q112230960" + }, { "slug": "pro-deer-hunting-2", "name": "Pro Deer Hunting 2", @@ -547166,6 +560576,11 @@ "name": "Pro Evolution Soccer 2014 (Blue Samurai Challenge)", "url": "/v1/games/pro-evolution-soccer-2014-blue-samurai-challenge" }, + { + "slug": "pro-evolution-soccer-2014-blue-samurai-challenge-demo-version", + "name": "Pro Evolution Soccer 2014 (Blue Samurai Challenge) Demo Version", + "url": "/v1/games/pro-evolution-soccer-2014-blue-samurai-challenge-demo-version" + }, { "slug": "pro-evolution-soccer-2015", "name": "Pro Evolution Soccer 2015", @@ -547181,6 +560596,11 @@ "name": "Pro Evolution Soccer 2016", "url": "/v1/games/pro-evolution-soccer-2016" }, + { + "slug": "pro-evolution-soccer-2016-myclub-edition", + "name": "Pro Evolution Soccer 2016 (myClub edition)", + "url": "/v1/games/pro-evolution-soccer-2016-myclub-edition" + }, { "slug": "pro-evolution-soccer-2017", "name": "Pro Evolution Soccer 2017", @@ -547201,6 +560621,11 @@ "name": "Pro Evolution Soccer 2018 Barcelona Edition", "url": "/v1/games/pro-evolution-soccer-2018-barcelona-edition" }, + { + "slug": "pro-evolution-soccer-2018-demo", + "name": "Pro Evolution Soccer 2018 Demo", + "url": "/v1/games/pro-evolution-soccer-2018-demo" + }, { "slug": "pro-evolution-soccer-2018-lite", "name": "Pro Evolution Soccer 2018 Lite", @@ -547456,6 +560881,11 @@ "name": "Pro Snooker & Pool 2022", "url": "/v1/games/pro-snooker-pool-2022" }, + { + "slug": "pro-snooker-pool-2022-q112231211", + "name": "Pro Snooker & Pool 2022+", + "url": "/v1/games/pro-snooker-pool-2022-q112231211" + }, { "slug": "pro-soccer", "name": "Pro Soccer", @@ -548531,6 +561961,11 @@ "name": "Project Berserk", "url": "/v1/games/project-berserk" }, + { + "slug": "project-black-sun", + "name": "Project Black Sun", + "url": "/v1/games/project-black-sun" + }, { "slug": "project-blind", "name": "Project Blind", @@ -548696,6 +562131,11 @@ "name": "Project Colored Mountains", "url": "/v1/games/project-colored-mountains" }, + { + "slug": "project-copernicus", + "name": "Project Copernicus", + "url": "/v1/games/project-copernicus" + }, { "slug": "project-coreward", "name": "Project Coreward", @@ -549046,6 +562486,11 @@ "name": "Project Gotham Racing 4", "url": "/v1/games/project-gotham-racing-4" }, + { + "slug": "project-gotham-racing-5", + "name": "Project Gotham Racing 5", + "url": "/v1/games/project-gotham-racing-5" + }, { "slug": "project-gotham-racing-mobile", "name": "Project Gotham Racing Mobile", @@ -549156,6 +562601,16 @@ "name": "Project Highrise", "url": "/v1/games/project-highrise" }, + { + "slug": "project-highrise-las-vegas", + "name": "Project Highrise: Las Vegas", + "url": "/v1/games/project-highrise-las-vegas" + }, + { + "slug": "project-highrise-miami-malls", + "name": "Project Highrise: Miami Malls", + "url": "/v1/games/project-highrise-miami-malls" + }, { "slug": "project-hive", "name": "Project Hive", @@ -549261,6 +562716,11 @@ "name": "Project Justice", "url": "/v1/games/project-justice" }, + { + "slug": "project-kv", + "name": "Project KV", + "url": "/v1/games/project-kv" + }, { "slug": "project-kvasir", "name": "Project KVASIR", @@ -549321,6 +562781,11 @@ "name": "Project Landsword", "url": "/v1/games/project-landsword" }, + { + "slug": "project-lazarus-q127272613", + "name": "Project Lazarus", + "url": "/v1/games/project-lazarus-q127272613" + }, { "slug": "project-lazarus", "name": "Project Lazarus", @@ -549411,6 +562876,11 @@ "name": "Project Microchip", "url": "/v1/games/project-microchip" }, + { + "slug": "project-milo", + "name": "Project Milo", + "url": "/v1/games/project-milo" + }, { "slug": "project-mind", "name": "Project Mind", @@ -549981,6 +563451,11 @@ "name": "Project Snowblind", "url": "/v1/games/project-snowblind" }, + { + "slug": "project-socjus", + "name": "Project SocJus", + "url": "/v1/games/project-socjus" + }, { "slug": "project-solar", "name": "Project Solar", @@ -550861,6 +564336,11 @@ "name": "Project_0: A Favour", "url": "/v1/games/project-0-a-favour" }, + { + "slug": "project-basement-dating-demo", + "name": "Project_Basement_Dating: DEMO", + "url": "/v1/games/project-basement-dating-demo" + }, { "slug": "projectile-arena", "name": "Projectile Arena", @@ -551161,6 +564641,11 @@ "name": "Propagation VR", "url": "/v1/games/propagation-vr" }, + { + "slug": "propagation-vr-co-op", + "name": "Propagation VR - Co-op", + "url": "/v1/games/propagation-vr-co-op" + }, { "slug": "propagation-paradise-hotel", "name": "Propagation: Paradise Hotel", @@ -551961,6 +565446,11 @@ "name": "Prune & Milo", "url": "/v1/games/prune-milo" }, + { + "slug": "prune-q111516726", + "name": "Prune+", + "url": "/v1/games/prune-q111516726" + }, { "slug": "pry-into-the-void", "name": "Pry Into The Void", @@ -552131,6 +565621,11 @@ "name": "PsyBurst", "url": "/v1/games/psyburst" }, + { + "slug": "psydoom", + "name": "PsyDoom", + "url": "/v1/games/psydoom" + }, { "slug": "psyops-solutions", "name": "PsyOps Solutions", @@ -552271,6 +565766,11 @@ "name": "Psychic Guardian Super Splendor", "url": "/v1/games/psychic-guardian-super-splendor" }, + { + "slug": "psychic-hearts", + "name": "Psychic Hearts", + "url": "/v1/games/psychic-hearts" + }, { "slug": "psychic-investigation-of-sakuragi-haru", "name": "Psychic Investigation of Sakuragi Haru", @@ -554191,6 +567691,11 @@ "name": "Purple Noise Echo", "url": "/v1/games/purple-noise-echo" }, + { + "slug": "purple-ops-pack", + "name": "Purple Ops Pack", + "url": "/v1/games/purple-ops-pack" + }, { "slug": "purple-place-classic-games", "name": "Purple Place - Classic Games", @@ -554666,6 +568171,11 @@ "name": "Puss 'n Boots: Pero's Great Adventure", "url": "/v1/games/puss-n-boots-pero-s-great-adventure" }, + { + "slug": "puss-in-book-trapped-in-an-epic-tale", + "name": "Puss in Book: Trapped in an Epic Tale", + "url": "/v1/games/puss-in-book-trapped-in-an-epic-tale" + }, { "slug": "puss-in-boots", "name": "Puss in Boots", @@ -556731,6 +570241,11 @@ "name": "Pyrene", "url": "/v1/games/pyrene" }, + { + "slug": "pyrene-demo", + "name": "Pyrene Demo", + "url": "/v1/games/pyrene-demo" + }, { "slug": "pyreside-waltz", "name": "Pyreside Waltz", @@ -556991,6 +570506,11 @@ "name": "Q-YO Blaster", "url": "/v1/games/q-yo-blaster" }, + { + "slug": "q-zandronum", + "name": "Q-Zandronum", + "url": "/v1/games/q-zandronum" + }, { "slug": "q-zone", "name": "Q-Zone", @@ -557021,6 +570541,11 @@ "name": "Q2 Humanity", "url": "/v1/games/q2-humanity" }, + { + "slug": "q2pro", + "name": "Q2Pro", + "url": "/v1/games/q2pro" + }, { "slug": "qanga", "name": "QANGA", @@ -557106,6 +570631,11 @@ "name": "QQ Pet", "url": "/v1/games/qq-pet" }, + { + "slug": "qq-pet-fight", + "name": "QQ Pet Fight", + "url": "/v1/games/qq-pet-fight" + }, { "slug": "qq-sanguo", "name": "QQ Sanguo", @@ -557206,11 +570736,21 @@ "name": "QUByte Classics - The Humans by PIKO", "url": "/v1/games/qubyte-classics-the-humans-by-piko" }, + { + "slug": "qubyte-classics-thunderbolt-collection-by-piko", + "name": "QUByte Classics: Thunderbolt Collection by PIKO", + "url": "/v1/games/qubyte-classics-thunderbolt-collection-by-piko" + }, { "slug": "qubyte-classics-tin-head-by-piko", "name": "QUByte Classics: Tin Head by PIKO", "url": "/v1/games/qubyte-classics-tin-head-by-piko" }, + { + "slug": "qubyte-classics-zero-tolerance-collection-by-piko", + "name": "QUByte Classics: Zero Tolerance Collection by PIKO", + "url": "/v1/games/qubyte-classics-zero-tolerance-collection-by-piko" + }, { "slug": "quest-together", "name": "QUEST TOGETHER", @@ -557786,6 +571326,11 @@ "name": "Quake 4", "url": "/v1/games/quake-4" }, + { + "slug": "quake-4-special-dvd-edition", + "name": "Quake 4: Special DVD Edition", + "url": "/v1/games/quake-4-special-dvd-edition" + }, { "slug": "quake-arena-arcade", "name": "Quake Arena Arcade", @@ -557801,6 +571346,21 @@ "name": "Quake II", "url": "/v1/games/quake-ii" }, + { + "slug": "quake-ii-rtx", + "name": "Quake II RTX", + "url": "/v1/games/quake-ii-rtx" + }, + { + "slug": "quake-ii-ground-zero", + "name": "Quake II: Ground Zero", + "url": "/v1/games/quake-ii-ground-zero" + }, + { + "slug": "quake-ii-the-reckoning", + "name": "Quake II: The Reckoning", + "url": "/v1/games/quake-ii-the-reckoning" + }, { "slug": "quake-iii-arena", "name": "Quake III Arena", @@ -557821,6 +571381,16 @@ "name": "Quake Minus One", "url": "/v1/games/quake-minus-one" }, + { + "slug": "quake-mission-pack-1-scourge-of-armagon", + "name": "Quake Mission Pack 1: Scourge of Armagon", + "url": "/v1/games/quake-mission-pack-1-scourge-of-armagon" + }, + { + "slug": "quake-mission-pack-2-dissolution-of-eternity", + "name": "Quake Mission Pack 2: Dissolution of Eternity", + "url": "/v1/games/quake-mission-pack-2-dissolution-of-eternity" + }, { "slug": "quake-survivor", "name": "Quake Survivor", @@ -557831,11 +571401,26 @@ "name": "Quake: Resurrection Pack", "url": "/v1/games/quake-resurrection-pack" }, + { + "slug": "quake-the-fight-for-justice", + "name": "Quake: The Fight for Justice", + "url": "/v1/games/quake-the-fight-for-justice" + }, + { + "slug": "quakespasm", + "name": "QuakeSpasm", + "url": "/v1/games/quakespasm" + }, { "slug": "quakeworld", "name": "QuakeWorld", "url": "/v1/games/quakeworld" }, + { + "slug": "quakecon-2020-bundle", + "name": "Quakecon 2020 Bundle", + "url": "/v1/games/quakecon-2020-bundle" + }, { "slug": "quakeline", "name": "Quakeline", @@ -558766,6 +572351,11 @@ "name": "Queen's Blade: Spiral Chaos", "url": "/v1/games/queen-s-blade-spiral-chaos" }, + { + "slug": "queen-s-blood", + "name": "Queen's Blood", + "url": "/v1/games/queen-s-blood" + }, { "slug": "queen-s-cards", "name": "Queen's Cards", @@ -558936,6 +572526,16 @@ "name": "Queeny Army 2", "url": "/v1/games/queeny-army-2" }, + { + "slug": "queer-games-bundle", + "name": "Queer Games Bundle", + "url": "/v1/games/queer-games-bundle" + }, + { + "slug": "queer-games-bundle-2", + "name": "Queer Games Bundle 2", + "url": "/v1/games/queer-games-bundle-2" + }, { "slug": "queer-man-peering-into-a-rock-pool-jpg", "name": "Queer Man Peering Into A Rock Pool.jpg", @@ -559206,6 +572806,11 @@ "name": "Quest for Fame", "url": "/v1/games/quest-for-fame" }, + { + "slug": "quest-for-glory-1-5", + "name": "Quest for Glory 1-5", + "url": "/v1/games/quest-for-glory-1-5" + }, { "slug": "quest-for-glory-ii-trial-by-fire", "name": "Quest for Glory II: Trial by Fire", @@ -559661,6 +573266,11 @@ "name": "QuickCalculation", "url": "/v1/games/quickcalculation" }, + { + "slug": "quickdraw-q16267682", + "name": "QuickDraw", + "url": "/v1/games/quickdraw-q16267682" + }, { "slug": "quickspot", "name": "QuickSpot", @@ -559721,6 +573331,11 @@ "name": "Quiet Christmas", "url": "/v1/games/quiet-christmas" }, + { + "slug": "quiet-christmas-demo", + "name": "Quiet Christmas (Demo)", + "url": "/v1/games/quiet-christmas-demo" + }, { "slug": "quiet-classroom", "name": "Quiet Classroom", @@ -559801,6 +573416,11 @@ "name": "Quiet, Please!", "url": "/v1/games/quiet-please" }, + { + "slug": "quiet-please-demo", + "name": "Quiet, Please! (Demo)", + "url": "/v1/games/quiet-please-demo" + }, { "slug": "quietmansion1", "name": "QuietMansion1", @@ -560036,6 +573656,11 @@ "name": "Quiz Carnage", "url": "/v1/games/quiz-carnage" }, + { + "slug": "quiz-channel-question", + "name": "Quiz Channel Question", + "url": "/v1/games/quiz-channel-question" + }, { "slug": "quiz-daisousa-sen-the-last-count-down", "name": "Quiz Daisousa Sen: The Last Count Down", @@ -560371,6 +573996,11 @@ "name": "R-Type", "url": "/v1/games/r-type" }, + { + "slug": "r-type-dx", + "name": "R-Type DX", + "url": "/v1/games/r-type-dx" + }, { "slug": "r-type-delta", "name": "R-Type Delta", @@ -560746,6 +574376,11 @@ "name": "RABIT", "url": "/v1/games/rabit" }, + { + "slug": "raccoin-coin-pusher-roguelike", + "name": "RACCOIN: Coin Pusher Roguelike", + "url": "/v1/games/raccoin-coin-pusher-roguelike" + }, { "slug": "race-injection", "name": "RACE Injection", @@ -561351,6 +574986,11 @@ "name": "RE:Jump Boy", "url": "/v1/games/re-jump-boy" }, + { + "slug": "re-loaded-carmine", + "name": "RE:LOADED CARMINE", + "url": "/v1/games/re-loaded-carmine" + }, { "slug": "re-ozma", "name": "RE:OZMA", @@ -562236,6 +575876,11 @@ "name": "RIKI", "url": "/v1/games/riki" }, + { + "slug": "riki-8bit-game-collection", + "name": "RIKI 8Bit Game Collection", + "url": "/v1/games/riki-8bit-game-collection" + }, { "slug": "rim-soul-jar", "name": "RIM:Soul Jar", @@ -562276,6 +575921,11 @@ "name": "RIP", "url": "/v1/games/rip" }, + { + "slug": "rip-3-the-last-hero-demo", + "name": "RIP 3 - The Last Hero Demo", + "url": "/v1/games/rip-3-the-last-hero-demo" + }, { "slug": "rip-party", "name": "RIP Party", @@ -562751,6 +576401,11 @@ "name": "ROPOKO for Steam", "url": "/v1/games/ropoko-for-steam" }, + { + "slug": "rordoom", + "name": "RORDoom", + "url": "/v1/games/rordoom" + }, { "slug": "ros", "name": "ROS", @@ -562836,6 +576491,11 @@ "name": "ROWROW", "url": "/v1/games/rowrow" }, + { + "slug": "rp2040-doom", + "name": "RP2040 Doom", + "url": "/v1/games/rp2040-doom" + }, { "slug": "rp7-spin-your-own-encounter", "name": "RP7: Spin Your Own Encounter", @@ -564251,6 +577911,11 @@ "name": "Racing Lagoon", "url": "/v1/games/racing-lagoon" }, + { + "slug": "racing-madness", + "name": "Racing Madness", + "url": "/v1/games/racing-madness" + }, { "slug": "racing-manager-2014", "name": "Racing Manager 2014", @@ -565041,6 +578706,11 @@ "name": "Rag Doll Kung Fu", "url": "/v1/games/rag-doll-kung-fu" }, + { + "slug": "rag-doll-kung-fu-demo", + "name": "Rag Doll Kung Fu Demo", + "url": "/v1/games/rag-doll-kung-fu-demo" + }, { "slug": "rag-doll-kung-fu-fists-of-plastic", "name": "Rag Doll Kung Fu: Fists of Plastic", @@ -565826,6 +579496,11 @@ "name": "Raiden Fighters Jet", "url": "/v1/games/raiden-fighters-jet" }, + { + "slug": "raiden-ii-q24159643", + "name": "Raiden II", + "url": "/v1/games/raiden-ii-q24159643" + }, { "slug": "raiden-ii", "name": "Raiden II", @@ -565841,6 +579516,11 @@ "name": "Raiden III x MIKADO MANIAX", "url": "/v1/games/raiden-iii-x-mikado-maniax" }, + { + "slug": "raiden-iii-x-mikado-maniax-q121125866", + "name": "Raiden III x Mikado Maniax", + "url": "/v1/games/raiden-iii-x-mikado-maniax-q121125866" + }, { "slug": "raiden-iv", "name": "Raiden IV", @@ -565931,6 +579611,11 @@ "name": "Raiders of the Icepeak Mountains", "url": "/v1/games/raiders-of-the-icepeak-mountains" }, + { + "slug": "raiders-of-the-lost-ark-q135273090", + "name": "Raiders of the Lost Ark", + "url": "/v1/games/raiders-of-the-lost-ark-q135273090" + }, { "slug": "raiders-of-the-lost-ark", "name": "Raiders of the Lost Ark", @@ -566216,6 +579901,26 @@ "name": "Railroad Tycoon II", "url": "/v1/games/railroad-tycoon-ii" }, + { + "slug": "railroad-tycoon-ii-platinum", + "name": "Railroad Tycoon II Platinum", + "url": "/v1/games/railroad-tycoon-ii-platinum" + }, + { + "slug": "railroad-tycoon-ii-gold-edition-q123244367", + "name": "Railroad Tycoon II: Gold Edition", + "url": "/v1/games/railroad-tycoon-ii-gold-edition-q123244367" + }, + { + "slug": "railroad-tycoon-ii-gold-edition", + "name": "Railroad Tycoon II: Gold Edition", + "url": "/v1/games/railroad-tycoon-ii-gold-edition" + }, + { + "slug": "railroad-tycoon-ii-the-second-century", + "name": "Railroad Tycoon II: The Second Century", + "url": "/v1/games/railroad-tycoon-ii-the-second-century" + }, { "slug": "railroad-x", "name": "Railroad X", @@ -566276,6 +579981,11 @@ "name": "Railway Empire 2", "url": "/v1/games/railway-empire-2" }, + { + "slug": "railway-empire-2-high-voltage", + "name": "Railway Empire 2: High Voltage", + "url": "/v1/games/railway-empire-2-high-voltage" + }, { "slug": "railway-fugitive", "name": "Railway Fugitive", @@ -566381,6 +580091,11 @@ "name": "Rain World", "url": "/v1/games/rain-world" }, + { + "slug": "rain-world-downpour", + "name": "Rain World: Downpour", + "url": "/v1/games/rain-world-downpour" + }, { "slug": "rain-and-respite", "name": "Rain and Respite", @@ -567271,6 +580986,11 @@ "name": "Ramon's Spell", "url": "/v1/games/ramon-s-spell" }, + { + "slug": "rampage-q56275027", + "name": "Rampage", + "url": "/v1/games/rampage-q56275027" + }, { "slug": "rampage", "name": "Rampage", @@ -568486,11 +582206,21 @@ "name": "Ratchet & Clank", "url": "/v1/games/ratchet-clank" }, + { + "slug": "ratchet-clank-collection", + "name": "Ratchet & Clank Collection", + "url": "/v1/games/ratchet-clank-collection" + }, { "slug": "ratchet-clank-future-a-crack-in-time", "name": "Ratchet & Clank Future: A Crack in Time", "url": "/v1/games/ratchet-clank-future-a-crack-in-time" }, + { + "slug": "ratchet-clank-future-a-crack-in-time-ratchet-demo", + "name": "Ratchet & Clank Future: A Crack in Time Ratchet (DEMO)", + "url": "/v1/games/ratchet-clank-future-a-crack-in-time-ratchet-demo" + }, { "slug": "ratchet-clank-future-quest-for-booty", "name": "Ratchet & Clank Future: Quest for Booty", @@ -568511,6 +582241,11 @@ "name": "Ratchet & Clank: Before the Nexus", "url": "/v1/games/ratchet-clank-before-the-nexus" }, + { + "slug": "ratchet-clank-clone-home", + "name": "Ratchet & Clank: Clone Home", + "url": "/v1/games/ratchet-clank-clone-home" + }, { "slug": "ratchet-clank-full-frontal-assault", "name": "Ratchet & Clank: Full Frontal Assault", @@ -569221,6 +582956,11 @@ "name": "Rayman Activity Centre", "url": "/v1/games/rayman-activity-centre" }, + { + "slug": "rayman-adventures-q64170859", + "name": "Rayman Adventures", + "url": "/v1/games/rayman-adventures-q64170859" + }, { "slug": "rayman-adventures", "name": "Rayman Adventures", @@ -569246,6 +582986,11 @@ "name": "Rayman Garden", "url": "/v1/games/rayman-garden" }, + { + "slug": "rayman-gold", + "name": "Rayman Gold", + "url": "/v1/games/rayman-gold" + }, { "slug": "rayman-golf", "name": "Rayman Golf", @@ -569311,6 +583056,11 @@ "name": "Rayman Rush", "url": "/v1/games/rayman-rush" }, + { + "slug": "rayman-ducation", + "name": "Rayman Éducation", + "url": "/v1/games/rayman-ducation" + }, { "slug": "rayman-fiesta-run", "name": "Rayman: Fiesta Run", @@ -569376,11 +583126,21 @@ "name": "Ray’z Arcade Chronology", "url": "/v1/games/ray-z-arcade-chronology" }, + { + "slug": "raze", + "name": "Raze", + "url": "/v1/games/raze" + }, { "slug": "raze-s-hell", "name": "Raze's Hell", "url": "/v1/games/raze-s-hell" }, + { + "slug": "razexr", + "name": "RazeXR", + "url": "/v1/games/razexr" + }, { "slug": "razed-earth", "name": "Razed Earth", @@ -570751,6 +584511,11 @@ "name": "Real Soccer", "url": "/v1/games/real-soccer" }, + { + "slug": "real-sound-2-kiri-no-orgel", + "name": "Real Sound 2: Kiri no Orgel", + "url": "/v1/games/real-sound-2-kiri-no-orgel" + }, { "slug": "real-sound-kaze-no-regret", "name": "Real Sound: Kaze no Regret", @@ -570801,6 +584566,11 @@ "name": "Real War", "url": "/v1/games/real-war" }, + { + "slug": "real-war-rogue-states", + "name": "Real War: Rogue States", + "url": "/v1/games/real-war-rogue-states" + }, { "slug": "real-warfare-1242", "name": "Real Warfare 1242", @@ -571061,6 +584831,11 @@ "name": "Realize", "url": "/v1/games/realize" }, + { + "slug": "really-bad-chess-q107357074", + "name": "Really Bad Chess", + "url": "/v1/games/really-bad-chess-q107357074" + }, { "slug": "really-bad-chess", "name": "Really Bad Chess", @@ -571401,6 +585176,11 @@ "name": "Realms of Arkania: Blade of Destiny", "url": "/v1/games/realms-of-arkania-blade-of-destiny" }, + { + "slug": "realms-of-arkania-blade-of-destiny-for-the-gods", + "name": "Realms of Arkania: Blade of Destiny - For the Gods", + "url": "/v1/games/realms-of-arkania-blade-of-destiny-for-the-gods" + }, { "slug": "realms-of-arkania-shadows-over-riva", "name": "Realms of Arkania: Shadows over Riva", @@ -572281,6 +586061,11 @@ "name": "Reckless Space Pirates", "url": "/v1/games/reckless-space-pirates" }, + { + "slug": "reckoning", + "name": "Reckoning", + "url": "/v1/games/reckoning" + }, { "slug": "reckpunk", "name": "Reckpunk", @@ -572901,6 +586686,21 @@ "name": "Red Baron II", "url": "/v1/games/red-baron-ii" }, + { + "slug": "red-baron-pack", + "name": "Red Baron Pack", + "url": "/v1/games/red-baron-pack" + }, + { + "slug": "red-baron-with-mission-builder", + "name": "Red Baron with Mission Builder", + "url": "/v1/games/red-baron-with-mission-builder" + }, + { + "slug": "red-baron-mission-builder", + "name": "Red Baron: Mission Builder", + "url": "/v1/games/red-baron-mission-builder" + }, { "slug": "red-barrels-go-boom", "name": "Red Barrels Go Boom", @@ -573071,6 +586871,11 @@ "name": "Red Crucible: Phoenix Rising", "url": "/v1/games/red-crucible-phoenix-rising" }, + { + "slug": "red-dead-redemption-3", + "name": "Red Dead Redemption 3", + "url": "/v1/games/red-dead-redemption-3" + }, { "slug": "red-death", "name": "Red Death", @@ -573151,6 +586956,11 @@ "name": "Red Eye", "url": "/v1/games/red-eye" }, + { + "slug": "red-faction-collection", + "name": "Red Faction Collection", + "url": "/v1/games/red-faction-collection" + }, { "slug": "red-faction-guerrilla-re-mars-tered", "name": "Red Faction Guerrilla Re-Mars-tered", @@ -573526,6 +587336,11 @@ "name": "Red Ops: The First Infection", "url": "/v1/games/red-ops-the-first-infection" }, + { + "slug": "red-orchestra-2-rising-storm", + "name": "Red Orchestra 2: Rising Storm", + "url": "/v1/games/red-orchestra-2-rising-storm" + }, { "slug": "red-orchestra-combined-arms", "name": "Red Orchestra: Combined Arms", @@ -574471,6 +588286,11 @@ "name": "Redout 2", "url": "/v1/games/redout-2" }, + { + "slug": "redout-lightspeed-edition", + "name": "Redout: Lightspeed Edition", + "url": "/v1/games/redout-lightspeed-edition" + }, { "slug": "redout-space-assault", "name": "Redout: Space Assault", @@ -575091,6 +588911,11 @@ "name": "Refuse: Home Sweep Home", "url": "/v1/games/refuse-home-sweep-home" }, + { + "slug": "refusion", + "name": "Refusion", + "url": "/v1/games/refusion" + }, { "slug": "refuted-wind", "name": "Refuted Wind", @@ -575411,6 +589236,11 @@ "name": "Reigns", "url": "/v1/games/reigns" }, + { + "slug": "reigns-q107357083", + "name": "Reigns+", + "url": "/v1/games/reigns-q107357083" + }, { "slug": "reigns-beyond", "name": "Reigns: Beyond", @@ -576546,6 +590376,11 @@ "name": "Remyadry", "url": "/v1/games/remyadry" }, + { + "slug": "ren-stimpy-happy-happy-joy-joy-collection", + "name": "Ren & Stimpy Happy, Happy, Joy, Joy, Collection", + "url": "/v1/games/ren-stimpy-happy-happy-joy-joy-collection" + }, { "slug": "ren-stimpy-stimpy-s-invention", "name": "Ren & Stimpy: Stimpy's Invention", @@ -576736,6 +590571,11 @@ "name": "Rendition", "url": "/v1/games/rendition" }, + { + "slug": "rendition-guantanamo", + "name": "Rendition: Guantanamo", + "url": "/v1/games/rendition-guantanamo" + }, { "slug": "rendsword", "name": "Rendsword", @@ -577561,6 +591401,11 @@ "name": "Rescue Shot", "url": "/v1/games/rescue-shot" }, + { + "slug": "rescue-simulator-2014", + "name": "Rescue Simulator 2014", + "url": "/v1/games/rescue-simulator-2014" + }, { "slug": "rescue-squad", "name": "Rescue Squad", @@ -577856,6 +591701,16 @@ "name": "Resident Evil 2", "url": "/v1/games/resident-evil-2" }, + { + "slug": "resident-evil-2-sharefactory-theme", + "name": "Resident Evil 2 SHAREfactory Theme", + "url": "/v1/games/resident-evil-2-sharefactory-theme" + }, + { + "slug": "resident-evil-2-1-shot-demo", + "name": "Resident Evil 2: 1-Shot Demo", + "url": "/v1/games/resident-evil-2-1-shot-demo" + }, { "slug": "resident-evil-3", "name": "Resident Evil 3", @@ -577901,6 +591756,11 @@ "name": "Resident Evil 5", "url": "/v1/games/resident-evil-5" }, + { + "slug": "resident-evil-5-gold-edition", + "name": "Resident Evil 5: Gold Edition", + "url": "/v1/games/resident-evil-5-gold-edition" + }, { "slug": "resident-evil-6-q108823077", "name": "Resident Evil 6", @@ -577916,16 +591776,31 @@ "name": "Resident Evil 7: Biohazard", "url": "/v1/games/resident-evil-7-biohazard" }, + { + "slug": "resident-evil-7-biohazard-end-of-zoe", + "name": "Resident Evil 7: Biohazard - End of Zoe", + "url": "/v1/games/resident-evil-7-biohazard-end-of-zoe" + }, { "slug": "resident-evil-archives-resident-evil", "name": "Resident Evil Archives: Resident Evil", "url": "/v1/games/resident-evil-archives-resident-evil" }, + { + "slug": "resident-evil-chronicles-hd-collection", + "name": "Resident Evil Chronicles HD Collection", + "url": "/v1/games/resident-evil-chronicles-hd-collection" + }, { "slug": "resident-evil-confidential-report", "name": "Resident Evil Confidential Report", "url": "/v1/games/resident-evil-confidential-report" }, + { + "slug": "resident-evil-director-s-cut-dual-shock", + "name": "Resident Evil Director's Cut Dual Shock", + "url": "/v1/games/resident-evil-director-s-cut-dual-shock" + }, { "slug": "resident-evil-gaiden", "name": "Resident Evil Gaiden", @@ -577951,6 +591826,11 @@ "name": "Resident Evil Outbreak: File 2", "url": "/v1/games/resident-evil-outbreak-file-2" }, + { + "slug": "resident-evil-portable", + "name": "Resident Evil Portable", + "url": "/v1/games/resident-evil-portable" + }, { "slug": "resident-evil-re-verse", "name": "Resident Evil Re:Verse", @@ -577976,6 +591856,11 @@ "name": "Resident Evil Village", "url": "/v1/games/resident-evil-village" }, + { + "slug": "resident-evil-village-shadows-of-rose", + "name": "Resident Evil Village: Shadows of Rose", + "url": "/v1/games/resident-evil-village-shadows-of-rose" + }, { "slug": "resident-evil-zero", "name": "Resident Evil Zero", @@ -578001,6 +591886,11 @@ "name": "Resident Evil: Deadly Silence", "url": "/v1/games/resident-evil-deadly-silence" }, + { + "slug": "resident-evil-director-s-cut", + "name": "Resident Evil: Director's Cut", + "url": "/v1/games/resident-evil-director-s-cut" + }, { "slug": "resident-evil-genesis", "name": "Resident Evil: Genesis", @@ -578211,6 +592101,11 @@ "name": "Resogun", "url": "/v1/games/resogun" }, + { + "slug": "resogun-defenders", + "name": "Resogun: Defenders", + "url": "/v1/games/resogun-defenders" + }, { "slug": "resolute-bay", "name": "Resolute Bay", @@ -578896,6 +592791,11 @@ "name": "Retro Arcade Toppers", "url": "/v1/games/retro-arcade-toppers" }, + { + "slug": "retro-atari-classics", + "name": "Retro Atari Classics", + "url": "/v1/games/retro-atari-classics" + }, { "slug": "retro-ball", "name": "Retro Ball", @@ -578916,11 +592816,21 @@ "name": "Retro Bowl", "url": "/v1/games/retro-bowl" }, + { + "slug": "retro-bowl-q119945560", + "name": "Retro Bowl+", + "url": "/v1/games/retro-bowl-q119945560" + }, { "slug": "retro-city-rampage", "name": "Retro City Rampage", "url": "/v1/games/retro-city-rampage" }, + { + "slug": "retro-classics", + "name": "Retro Classics", + "url": "/v1/games/retro-classics" + }, { "slug": "retro-classix-bad-dudes", "name": "Retro Classix: Bad Dudes", @@ -579046,6 +592956,11 @@ "name": "Retro Goal", "url": "/v1/games/retro-goal" }, + { + "slug": "retro-goal-q119881505", + "name": "Retro Goal+", + "url": "/v1/games/retro-goal-q119881505" + }, { "slug": "retro-golden-age-goody", "name": "Retro Golden Age - Goody", @@ -579601,6 +593516,11 @@ "name": "Return Fire 2", "url": "/v1/games/return-fire-2" }, + { + "slug": "return-fire-maps-o-death", + "name": "Return Fire: Maps o' Death", + "url": "/v1/games/return-fire-maps-o-death" + }, { "slug": "return-home-q134965613", "name": "Return Home", @@ -580081,6 +594001,11 @@ "name": "Revenant Dogma", "url": "/v1/games/revenant-dogma" }, + { + "slug": "revenant-hill", + "name": "Revenant Hill", + "url": "/v1/games/revenant-hill" + }, { "slug": "revenant-march", "name": "Revenant March", @@ -580811,6 +594736,11 @@ "name": "Rework", "url": "/v1/games/rework" }, + { + "slug": "rewrite-q123553138", + "name": "Rewrite", + "url": "/v1/games/rewrite-q123553138" + }, { "slug": "rewrite", "name": "Rewrite", @@ -580821,6 +594751,11 @@ "name": "Rewrite - DYH", "url": "/v1/games/rewrite-dyh" }, + { + "slug": "rewrite-harvest-festa-q123553191", + "name": "Rewrite Harvest festa!", + "url": "/v1/games/rewrite-harvest-festa-q123553191" + }, { "slug": "rewrite-harvest-festa", "name": "Rewrite Harvest festa!", @@ -580916,6 +594851,11 @@ "name": "Rez Infinite", "url": "/v1/games/rez-infinite" }, + { + "slug": "rez-infinite-digital-deluxe-dlc", + "name": "Rez Infinite Digital Deluxe DLC", + "url": "/v1/games/rez-infinite-digital-deluxe-dlc" + }, { "slug": "rezarus", "name": "Rezarus", @@ -581781,6 +595721,11 @@ "name": "Rico London", "url": "/v1/games/rico-london" }, + { + "slug": "rico-s-chiliworks", + "name": "Rico's Chiliworks", + "url": "/v1/games/rico-s-chiliworks" + }, { "slug": "rico-s-theater", "name": "Rico's Theater", @@ -582796,6 +596741,36 @@ "name": "RimWorld", "url": "/v1/games/rimworld" }, + { + "slug": "rimworld-anomaly", + "name": "RimWorld - Anomaly", + "url": "/v1/games/rimworld-anomaly" + }, + { + "slug": "rimworld-biotech", + "name": "RimWorld - Biotech", + "url": "/v1/games/rimworld-biotech" + }, + { + "slug": "rimworld-ideology", + "name": "RimWorld - Ideology", + "url": "/v1/games/rimworld-ideology" + }, + { + "slug": "rimworld-odyssey", + "name": "RimWorld - Odyssey", + "url": "/v1/games/rimworld-odyssey" + }, + { + "slug": "rimworld-royalty", + "name": "RimWorld - Royalty", + "url": "/v1/games/rimworld-royalty" + }, + { + "slug": "rimworld-console-edition", + "name": "RimWorld Console Edition", + "url": "/v1/games/rimworld-console-edition" + }, { "slug": "rimal-the-rise-of-the-lost-land", "name": "Rimal\"The Rise of the Lost Land\"", @@ -583356,6 +597331,11 @@ "name": "Riptide GP: Renegade", "url": "/v1/games/riptide-gp-renegade" }, + { + "slug": "riptide-gp-renegade-q116719952", + "name": "Riptide GP: Renegade+", + "url": "/v1/games/riptide-gp-renegade-q116719952" + }, { "slug": "risa-no-y-sei-densetsu", "name": "Risa no Yōsei Densetsu", @@ -583656,6 +597636,11 @@ "name": "Rise of Mavros", "url": "/v1/games/rise-of-mavros" }, + { + "slug": "rise-of-nations-q116142353", + "name": "Rise of Nations", + "url": "/v1/games/rise-of-nations-q116142353" + }, { "slug": "rise-of-nations", "name": "Rise of Nations", @@ -583666,6 +597651,11 @@ "name": "Rise of Nations: Rise of Legends", "url": "/v1/games/rise-of-nations-rise-of-legends" }, + { + "slug": "rise-of-nations-thrones-and-patriots", + "name": "Rise of Nations: Thrones and Patriots", + "url": "/v1/games/rise-of-nations-thrones-and-patriots" + }, { "slug": "rise-of-nightmares", "name": "Rise of Nightmares", @@ -583831,6 +597821,11 @@ "name": "Rise of the Pirates", "url": "/v1/games/rise-of-the-pirates" }, + { + "slug": "rise-of-the-prim", + "name": "Rise of the Prim", + "url": "/v1/games/rise-of-the-prim" + }, { "slug": "rise-of-the-robots", "name": "Rise of the Robots", @@ -583856,6 +597851,11 @@ "name": "Rise of the Slime: Prologue", "url": "/v1/games/rise-of-the-slime-prologue" }, + { + "slug": "rise-of-the-teenage-mutant-ninja-turtles-city-showdown", + "name": "Rise of the Teenage Mutant Ninja Turtles: City Showdown", + "url": "/v1/games/rise-of-the-teenage-mutant-ninja-turtles-city-showdown" + }, { "slug": "rise-of-the-teenage-mutant-ninja-turtles-ninja-run", "name": "Rise of the Teenage Mutant Ninja Turtles: Ninja Run", @@ -583876,6 +597876,16 @@ "name": "Rise of the Tomb Raider", "url": "/v1/games/rise-of-the-tomb-raider" }, + { + "slug": "rise-of-the-tomb-raider-20-year-celebration", + "name": "Rise of the Tomb Raider: 20 Year Celebration", + "url": "/v1/games/rise-of-the-tomb-raider-20-year-celebration" + }, + { + "slug": "rise-of-the-tomb-raider-blood-ties", + "name": "Rise of the Tomb Raider: Blood Ties", + "url": "/v1/games/rise-of-the-tomb-raider-blood-ties" + }, { "slug": "rise-of-the-triad-q7335963", "name": "Rise of the Triad", @@ -583956,11 +597966,21 @@ "name": "Risen 3: Titan Lords", "url": "/v1/games/risen-3-titan-lords" }, + { + "slug": "risen-3-titan-lords-enhanced-edition", + "name": "Risen 3: Titan Lords – Enhanced Edition", + "url": "/v1/games/risen-3-titan-lords-enhanced-edition" + }, { "slug": "risen-kingdom", "name": "Risen Kingdom", "url": "/v1/games/risen-kingdom" }, + { + "slug": "risen3d", + "name": "Risen3D", + "url": "/v1/games/risen3d" + }, { "slug": "riseofcommander", "name": "RiseofCommander", @@ -584096,6 +598116,11 @@ "name": "Rising Star 2", "url": "/v1/games/rising-star-2" }, + { + "slug": "rising-storm", + "name": "Rising Storm", + "url": "/v1/games/rising-storm" + }, { "slug": "rising-storm-2-vietnam", "name": "Rising Storm 2: Vietnam", @@ -584211,6 +598236,11 @@ "name": "Risk of Rain 2", "url": "/v1/games/risk-of-rain-2" }, + { + "slug": "risk-of-rain-2-survivors-of-the-void", + "name": "Risk of Rain 2: Survivors of the Void", + "url": "/v1/games/risk-of-rain-2-survivors-of-the-void" + }, { "slug": "risk-of-rain-returns", "name": "Risk of Rain Returns", @@ -588081,6 +602111,11 @@ "name": "Rocket Bytes+", "url": "/v1/games/rocket-bytes" }, + { + "slug": "rocket-cars-vita", + "name": "Rocket Cars Vita", + "url": "/v1/games/rocket-cars-vita" + }, { "slug": "rocket-catch", "name": "Rocket Catch", @@ -588651,6 +602686,11 @@ "name": "Rockman Xover", "url": "/v1/games/rockman-xover" }, + { + "slug": "rockman-power-battle-fighters", + "name": "Rockman: Power Battle Fighters", + "url": "/v1/games/rockman-power-battle-fighters" + }, { "slug": "rocko-s-modern-life-spunky-s-dangerous-day", "name": "Rocko's Modern Life: Spunky's Dangerous Day", @@ -588706,6 +602746,11 @@ "name": "Rocksmith+", "url": "/v1/games/rocksmith-q107208573" }, + { + "slug": "rocksmith-all-new-2014-edition-cake-never-there", + "name": "Rocksmith: All-new 2014 Edition - Cake: Never There", + "url": "/v1/games/rocksmith-all-new-2014-edition-cake-never-there" + }, { "slug": "rockstar-games-collection", "name": "Rockstar Games Collection", @@ -588801,6 +602846,11 @@ "name": "Rocky's Boots", "url": "/v1/games/rocky-s-boots" }, + { + "slug": "rockymud", + "name": "RockyMUD", + "url": "/v1/games/rockymud" + }, { "slug": "rockytown", "name": "Rockytown", @@ -589271,6 +603321,11 @@ "name": "Rogue Lords", "url": "/v1/games/rogue-lords" }, + { + "slug": "rogue-lords-day-one-edition", + "name": "Rogue Lords Day One Edition", + "url": "/v1/games/rogue-lords-day-one-edition" + }, { "slug": "rogue-mansion", "name": "Rogue Mansion", @@ -590091,6 +604146,11 @@ "name": "Roketz", "url": "/v1/games/roketz" }, + { + "slug": "rokh", + "name": "Rokh", + "url": "/v1/games/rokh" + }, { "slug": "rokka", "name": "Rokka", @@ -590461,6 +604521,11 @@ "name": "Roller Coaster Rumbler", "url": "/v1/games/roller-coaster-rumbler" }, + { + "slug": "roller-coaster-tycoon-deluxe", + "name": "Roller Coaster Tycoon Deluxe", + "url": "/v1/games/roller-coaster-tycoon-deluxe" + }, { "slug": "roller-drama", "name": "Roller Drama", @@ -590516,11 +604581,46 @@ "name": "RollerCoaster Tycoon 2", "url": "/v1/games/rollercoaster-tycoon-2" }, + { + "slug": "rollercoaster-tycoon-2-combo-park-pack", + "name": "RollerCoaster Tycoon 2: Combo Park Pack", + "url": "/v1/games/rollercoaster-tycoon-2-combo-park-pack" + }, + { + "slug": "rollercoaster-tycoon-2-time-twister", + "name": "RollerCoaster Tycoon 2: Time Twister", + "url": "/v1/games/rollercoaster-tycoon-2-time-twister" + }, + { + "slug": "rollercoaster-tycoon-2-triple-thrill-pack", + "name": "RollerCoaster Tycoon 2: Triple Thrill Pack", + "url": "/v1/games/rollercoaster-tycoon-2-triple-thrill-pack" + }, + { + "slug": "rollercoaster-tycoon-2-wacky-worlds", + "name": "RollerCoaster Tycoon 2: Wacky Worlds", + "url": "/v1/games/rollercoaster-tycoon-2-wacky-worlds" + }, { "slug": "rollercoaster-tycoon-3", "name": "RollerCoaster Tycoon 3", "url": "/v1/games/rollercoaster-tycoon-3" }, + { + "slug": "rollercoaster-tycoon-3-complete-edition", + "name": "RollerCoaster Tycoon 3: Complete Edition", + "url": "/v1/games/rollercoaster-tycoon-3-complete-edition" + }, + { + "slug": "rollercoaster-tycoon-3-soaked", + "name": "RollerCoaster Tycoon 3: Soaked!", + "url": "/v1/games/rollercoaster-tycoon-3-soaked" + }, + { + "slug": "rollercoaster-tycoon-3-wild", + "name": "RollerCoaster Tycoon 3: Wild!", + "url": "/v1/games/rollercoaster-tycoon-3-wild" + }, { "slug": "rollercoaster-tycoon-3d", "name": "RollerCoaster Tycoon 3D", @@ -590551,6 +604651,26 @@ "name": "RollerCoaster Tycoon World", "url": "/v1/games/rollercoaster-tycoon-world" }, + { + "slug": "rollercoaster-tycoon-corkscrew-follies", + "name": "RollerCoaster Tycoon: Corkscrew Follies", + "url": "/v1/games/rollercoaster-tycoon-corkscrew-follies" + }, + { + "slug": "rollercoaster-tycoon-gold-edition", + "name": "RollerCoaster Tycoon: Gold Edition", + "url": "/v1/games/rollercoaster-tycoon-gold-edition" + }, + { + "slug": "rollercoaster-tycoon-loopy-landscapes-q136522335", + "name": "RollerCoaster Tycoon: Loopy Landscapes", + "url": "/v1/games/rollercoaster-tycoon-loopy-landscapes-q136522335" + }, + { + "slug": "rollercoaster-tycoon-loopy-landscapes", + "name": "RollerCoaster Tycoon: Loopy Landscapes", + "url": "/v1/games/rollercoaster-tycoon-loopy-landscapes" + }, { "slug": "rollercoaster-vr-universe", "name": "RollerCoaster VR Universe", @@ -590601,6 +604721,11 @@ "name": "Rollercoaster Tycoon - Touch", "url": "/v1/games/rollercoaster-tycoon-touch" }, + { + "slug": "rollercoaster-tycoon-adventures-deluxe", + "name": "Rollercoaster Tycoon Adventures Deluxe", + "url": "/v1/games/rollercoaster-tycoon-adventures-deluxe" + }, { "slug": "rollercoaster-xperience", "name": "Rollercoaster Xperience", @@ -590811,6 +604936,11 @@ "name": "Rolling Sky 2", "url": "/v1/games/rolling-sky-2" }, + { + "slug": "rolling-sky-collection", + "name": "Rolling Sky Collection", + "url": "/v1/games/rolling-sky-collection" + }, { "slug": "rolling-stone-drum-king", "name": "Rolling Stone: Drum King", @@ -591086,6 +605216,11 @@ "name": "Romance Detective", "url": "/v1/games/romance-detective" }, + { + "slug": "romance-detective-2", + "name": "Romance Detective 2", + "url": "/v1/games/romance-detective-2" + }, { "slug": "romance-in-space", "name": "Romance In Space", @@ -591406,6 +605541,16 @@ "name": "Rome: Total War", "url": "/v1/games/rome-total-war" }, + { + "slug": "rome-total-war-alexander", + "name": "Rome: Total War: Alexander", + "url": "/v1/games/rome-total-war-alexander" + }, + { + "slug": "rome-total-war-barbarian-invasion", + "name": "Rome: Total War: Barbarian Invasion", + "url": "/v1/games/rome-total-war-barbarian-invasion" + }, { "slug": "romeo-must-live", "name": "Romeo Must Live", @@ -591941,6 +606086,11 @@ "name": "Roommate 3: Ryōko Kaze no Kagayaku Asa ni", "url": "/v1/games/roommate-3-ry-ko-kaze-no-kagayaku-asa-ni" }, + { + "slug": "roommate-complete-box", + "name": "Roommate Complete Box", + "url": "/v1/games/roommate-complete-box" + }, { "slug": "roommate-corruption", "name": "Roommate Corruption 😈", @@ -592361,6 +606511,11 @@ "name": "Rosario + Vampire Capu 2: The Rhapsody of Love and Dreams", "url": "/v1/games/rosario-vampire-capu-2-the-rhapsody-of-love-and-dreams" }, + { + "slug": "rosario-vampire-fvn", + "name": "Rosario + Vampire FVN", + "url": "/v1/games/rosario-vampire-fvn" + }, { "slug": "rosario-vampire-tanabata-s-miss-yokai-academy", "name": "Rosario + Vampire: Tanabata's Miss Yokai Academy", @@ -593186,6 +607341,11 @@ "name": "Rover Mechanic Simulator", "url": "/v1/games/rover-mechanic-simulator" }, + { + "slug": "rover-mechanic-simulator-perseverance-rover-dlc", + "name": "Rover Mechanic Simulator - Perseverance Rover DLC", + "url": "/v1/games/rover-mechanic-simulator-perseverance-rover-dlc" + }, { "slug": "rover-mechanic-simulator-training-day", "name": "Rover Mechanic Simulator: Training Day", @@ -593651,6 +607811,11 @@ "name": "Royale Battle: Warzone", "url": "/v1/games/royale-battle-warzone" }, + { + "slug": "royale-high", + "name": "Royale High", + "url": "/v1/games/royale-high" + }, { "slug": "royale-island-showdown", "name": "Royale Island Showdown", @@ -594216,6 +608381,11 @@ "name": "Rugby Union Team Manager 2017", "url": "/v1/games/rugby-union-team-manager-2017" }, + { + "slug": "rugby-union-team-manager-2017-season-2017-18-update", + "name": "Rugby Union Team Manager 2017: Season 2017/18 Update", + "url": "/v1/games/rugby-union-team-manager-2017-season-2017-18-update" + }, { "slug": "rugby-union-team-manager-3", "name": "Rugby Union Team Manager 3", @@ -594306,6 +608476,11 @@ "name": "Rugrats: I Gotta Go Party", "url": "/v1/games/rugrats-i-gotta-go-party" }, + { + "slug": "rugrats-retro-rewind-collection", + "name": "Rugrats: Retro Rewind Collection", + "url": "/v1/games/rugrats-retro-rewind-collection" + }, { "slug": "rugrats-royal-ransom", "name": "Rugrats: Royal Ransom", @@ -595806,6 +609981,11 @@ "name": "Runemancer", "url": "/v1/games/runemancer" }, + { + "slug": "runemaster", + "name": "Runemaster", + "url": "/v1/games/runemaster" + }, { "slug": "runemon", "name": "Runemon", @@ -596006,6 +610186,11 @@ "name": "Runner2", "url": "/v1/games/runner2" }, + { + "slug": "runner2-good-friends-character-pack", + "name": "Runner2 - Good Friends Character Pack", + "url": "/v1/games/runner2-good-friends-character-pack" + }, { "slug": "runner3", "name": "Runner3", @@ -596456,11 +610641,21 @@ "name": "Rush Ultimate", "url": "/v1/games/rush-ultimate" }, + { + "slug": "rush-wars", + "name": "Rush Wars", + "url": "/v1/games/rush-wars" + }, { "slug": "rush-for-berlin", "name": "Rush for Berlin", "url": "/v1/games/rush-for-berlin" }, + { + "slug": "rush-for-berlin-rush-for-the-bomb", + "name": "Rush for Berlin: Rush for the Bomb", + "url": "/v1/games/rush-for-berlin-rush-for-the-bomb" + }, { "slug": "rush-for-glory", "name": "Rush for Glory", @@ -597276,6 +611471,11 @@ "name": "Ryoujoku Joshi Gakuen", "url": "/v1/games/ryoujoku-joshi-gakuen" }, + { + "slug": "ryse-legendary-edition", + "name": "Ryse: Legendary Edition", + "url": "/v1/games/ryse-legendary-edition" + }, { "slug": "ryse-son-of-rome", "name": "Ryse: Son of Rome", @@ -597626,6 +611826,11 @@ "name": "S.T.A.L.K.E.R.: Clear Sky - Enhanced Edition", "url": "/v1/games/s-t-a-l-k-e-r-clear-sky-enhanced-edition" }, + { + "slug": "s-t-a-l-k-e-r-legends-of-the-zone-trilogy", + "name": "S.T.A.L.K.E.R.: Legends of the Zone Trilogy", + "url": "/v1/games/s-t-a-l-k-e-r-legends-of-the-zone-trilogy" + }, { "slug": "s-t-a-l-k-e-r-lost-alpha", "name": "S.T.A.L.K.E.R.: Lost Alpha", @@ -597806,6 +612011,11 @@ "name": "SAHUR: Escape Together", "url": "/v1/games/sahur-escape-together" }, + { + "slug": "sai-q85873373", + "name": "SAI", + "url": "/v1/games/sai-q85873373" + }, { "slug": "saibi", "name": "SAIBI", @@ -598306,6 +612516,11 @@ "name": "SCP - Containment Breach", "url": "/v1/games/scp-containment-breach" }, + { + "slug": "scp-containment-breach-multiplayer-mod", + "name": "SCP - Containment Breach Multiplayer Mod", + "url": "/v1/games/scp-containment-breach-multiplayer-mod" + }, { "slug": "scp-the-mystery-man", "name": "SCP - The Mystery Man", @@ -598356,6 +612571,21 @@ "name": "SCP Strategy", "url": "/v1/games/scp-strategy" }, + { + "slug": "scp-unity", + "name": "SCP Unity", + "url": "/v1/games/scp-unity" + }, + { + "slug": "scp-015", + "name": "SCP-015", + "url": "/v1/games/scp-015" + }, + { + "slug": "scp-015-demo", + "name": "SCP-015 Demo", + "url": "/v1/games/scp-015-demo" + }, { "slug": "scp-069-j-the-sisters-of-cheyenne-point", "name": "SCP-069-J: The Sisters of Cheyenne Point", @@ -598401,11 +612631,26 @@ "name": "SCP-479: Shadows of the Mind", "url": "/v1/games/scp-479-shadows-of-the-mind" }, + { + "slug": "scp-610", + "name": "SCP-610", + "url": "/v1/games/scp-610" + }, { "slug": "scp-970-the-recursive-room", "name": "SCP-970 The Recursive Room", "url": "/v1/games/scp-970-the-recursive-room" }, + { + "slug": "scp-nightmares", + "name": "SCP-Nightmares", + "url": "/v1/games/scp-nightmares" + }, + { + "slug": "scp-j-lite", + "name": "SCP-____-J Lite", + "url": "/v1/games/scp-j-lite" + }, { "slug": "scp022", "name": "SCP022", @@ -598676,6 +612921,11 @@ "name": "SCP: Valravn", "url": "/v1/games/scp-valravn" }, + { + "slug": "scp-wander", + "name": "SCP: Wander", + "url": "/v1/games/scp-wander" + }, { "slug": "scpcb-unity", "name": "SCPCB: Unity", @@ -598751,6 +613001,11 @@ "name": "SD Gundam Battle Alliance", "url": "/v1/games/sd-gundam-battle-alliance" }, + { + "slug": "sd-gundam-battle-alliance-deluxe-edition", + "name": "SD Gundam Battle Alliance Deluxe Edition", + "url": "/v1/games/sd-gundam-battle-alliance-deluxe-edition" + }, { "slug": "sd-gundam-capsule-fighter-online", "name": "SD Gundam Capsule Fighter Online", @@ -599106,6 +613361,16 @@ "name": "SDIES", "url": "/v1/games/sdies" }, + { + "slug": "sdl-asylum", + "name": "SDL Asylum", + "url": "/v1/games/sdl-asylum" + }, + { + "slug": "sdl-sopwith", + "name": "SDL Sopwith", + "url": "/v1/games/sdl-sopwith" + }, { "slug": "sdl-ball", "name": "SDL-Ball", @@ -600951,6 +615216,11 @@ "name": "SMITE Blitz", "url": "/v1/games/smite-blitz" }, + { + "slug": "smmu", + "name": "SMMU", + "url": "/v1/games/smmu" + }, { "slug": "smoked", "name": "SMOKED", @@ -601016,6 +615286,16 @@ "name": "SNIPERPUNK", "url": "/v1/games/sniperpunk" }, + { + "slug": "snk-40th-anniversary-collection", + "name": "SNK 40th Anniversary Collection", + "url": "/v1/games/snk-40th-anniversary-collection" + }, + { + "slug": "snk-arcade-classics-vol-1", + "name": "SNK Arcade Classics Vol. 1", + "url": "/v1/games/snk-arcade-classics-vol-1" + }, { "slug": "snk-gals-fighters", "name": "SNK Gals' Fighters", @@ -601361,6 +615641,11 @@ "name": "SON of SPARTA", "url": "/v1/games/son-of-sparta" }, + { + "slug": "song-of-horror-complete-edition", + "name": "SONG OF HORROR COMPLETE EDITION", + "url": "/v1/games/song-of-horror-complete-edition" + }, { "slug": "song-of-the-dead", "name": "SONG OF THE DEAD", @@ -602576,6 +616861,11 @@ "name": "STAaRS", "url": "/v1/games/staars" }, + { + "slug": "stcc-the-game", + "name": "STCC – The Game", + "url": "/v1/games/stcc-the-game" + }, { "slug": "ste-save-the-earth", "name": "STE : Save The Earth", @@ -602686,6 +616976,11 @@ "name": "STLD Redux: Episode 02", "url": "/v1/games/stld-redux-episode-02" }, + { + "slug": "stm32doom", + "name": "STM32Doom", + "url": "/v1/games/stm32doom" + }, { "slug": "stolen-city", "name": "STOLEN CITY", @@ -603491,11 +617786,26 @@ "name": "SWAT 3: Close Quarters Battle", "url": "/v1/games/swat-3-close-quarters-battle" }, + { + "slug": "swat-3-close-quarters-battle-elite-edition", + "name": "SWAT 3: Close Quarters Battle: Elite Edition", + "url": "/v1/games/swat-3-close-quarters-battle-elite-edition" + }, + { + "slug": "swat-3-tactical-game-of-the-year-edition", + "name": "SWAT 3: Tactical Game of the Year Edition", + "url": "/v1/games/swat-3-tactical-game-of-the-year-edition" + }, { "slug": "swat-4", "name": "SWAT 4", "url": "/v1/games/swat-4" }, + { + "slug": "swat-4-the-stetchkov-syndicate", + "name": "SWAT 4: The Stetchkov Syndicate", + "url": "/v1/games/swat-4-the-stetchkov-syndicate" + }, { "slug": "swat-commander-prologue", "name": "SWAT Commander: Prologue", @@ -603936,6 +618246,11 @@ "name": "Saboteur", "url": "/v1/games/saboteur-q135452076" }, + { + "slug": "saboteur-q7396310", + "name": "Saboteur", + "url": "/v1/games/saboteur-q7396310" + }, { "slug": "saboteur", "name": "Saboteur", @@ -604071,11 +618386,21 @@ "name": "Sacred 2: Fallen Angel", "url": "/v1/games/sacred-2-fallen-angel" }, + { + "slug": "sacred-2-ice-blood", + "name": "Sacred 2: Ice & Blood", + "url": "/v1/games/sacred-2-ice-blood" + }, { "slug": "sacred-3", "name": "Sacred 3", "url": "/v1/games/sacred-3" }, + { + "slug": "sacred-3-gold-edition", + "name": "Sacred 3: Gold Edition", + "url": "/v1/games/sacred-3-gold-edition" + }, { "slug": "sacred-almanac-traces-of-greed", "name": "Sacred Almanac Traces of Greed", @@ -604166,6 +618491,11 @@ "name": "Sacred Odyssey: Rise of Ayden", "url": "/v1/games/sacred-odyssey-rise-of-ayden" }, + { + "slug": "sacred-plus", + "name": "Sacred Plus", + "url": "/v1/games/sacred-plus" + }, { "slug": "sacred-safar", "name": "Sacred Safar", @@ -604191,6 +618521,11 @@ "name": "Sacred Sword Princesses", "url": "/v1/games/sacred-sword-princesses" }, + { + "slug": "sacred-underworld", + "name": "Sacred Underworld", + "url": "/v1/games/sacred-underworld" + }, { "slug": "sacred-valley", "name": "Sacred Valley", @@ -605126,6 +619461,11 @@ "name": "Saints Row", "url": "/v1/games/saints-row-q63244018" }, + { + "slug": "saints-row-q77472508", + "name": "Saints Row", + "url": "/v1/games/saints-row-q77472508" + }, { "slug": "saints-row", "name": "Saints Row", @@ -605141,31 +619481,121 @@ "name": "Saints Row 2", "url": "/v1/games/saints-row-2" }, + { + "slug": "saints-row-2-corporate-warfare", + "name": "Saints Row 2: Corporate Warfare", + "url": "/v1/games/saints-row-2-corporate-warfare" + }, + { + "slug": "saints-row-2-ultor-exposed", + "name": "Saints Row 2: Ultor Exposed", + "url": "/v1/games/saints-row-2-ultor-exposed" + }, { "slug": "saints-row-iv", "name": "Saints Row IV", "url": "/v1/games/saints-row-iv" }, + { + "slug": "saints-row-iv-online-pass", + "name": "Saints Row IV Online Pass", + "url": "/v1/games/saints-row-iv-online-pass" + }, { "slug": "saints-row-iv-game-of-the-century-edition", "name": "Saints Row IV: Game of the Century Edition", "url": "/v1/games/saints-row-iv-game-of-the-century-edition" }, + { + "slug": "saints-row-iv-re-elected", + "name": "Saints Row IV: Re-Elected", + "url": "/v1/games/saints-row-iv-re-elected" + }, + { + "slug": "saints-row-criminal-customs-editions", + "name": "Saints Row: Criminal Customs Editions", + "url": "/v1/games/saints-row-criminal-customs-editions" + }, + { + "slug": "saints-row-drive-by", + "name": "Saints Row: Drive-By", + "url": "/v1/games/saints-row-drive-by" + }, { "slug": "saints-row-gat-out-of-hell", "name": "Saints Row: Gat out of Hell", "url": "/v1/games/saints-row-gat-out-of-hell" }, + { + "slug": "saints-row-gold-edition", + "name": "Saints Row: Gold Edition", + "url": "/v1/games/saints-row-gold-edition" + }, + { + "slug": "saints-row-legacy-edition", + "name": "Saints Row: Legacy Edition", + "url": "/v1/games/saints-row-legacy-edition" + }, + { + "slug": "saints-row-money-shot", + "name": "Saints Row: Money Shot", + "url": "/v1/games/saints-row-money-shot" + }, + { + "slug": "saints-row-notorious-edition", + "name": "Saints Row: Notorious Edition", + "url": "/v1/games/saints-row-notorious-edition" + }, + { + "slug": "saints-row-platinum-edition", + "name": "Saints Row: Platinum Edition", + "url": "/v1/games/saints-row-platinum-edition" + }, + { + "slug": "saints-row-santo-ileso-pack", + "name": "Saints Row: Santo Ileso Pack", + "url": "/v1/games/saints-row-santo-ileso-pack" + }, + { + "slug": "saints-row-the-cooler", + "name": "Saints Row: The Cooler", + "url": "/v1/games/saints-row-the-cooler" + }, { "slug": "saints-row-the-third", "name": "Saints Row: The Third", "url": "/v1/games/saints-row-the-third" }, + { + "slug": "saints-row-the-third-the-full-package", + "name": "Saints Row: The Third - The Full Package", + "url": "/v1/games/saints-row-the-third-the-full-package" + }, + { + "slug": "saints-row-the-third-online-pass", + "name": "Saints Row: The Third Online Pass", + "url": "/v1/games/saints-row-the-third-online-pass" + }, { "slug": "saints-row-the-third-remastered", "name": "Saints Row: The Third Remastered", "url": "/v1/games/saints-row-the-third-remastered" }, + { + "slug": "saints-row-the-third-season-pass-dlc-pack", + "name": "Saints Row: The Third Season Pass DLC Pack", + "url": "/v1/games/saints-row-the-third-season-pass-dlc-pack" + }, + { + "slug": "saints-row-total-control", + "name": "Saints Row: Total Control", + "url": "/v1/games/saints-row-total-control" + }, + { + "slug": "saints-row-undercover", + "name": "Saints Row: Undercover", + "url": "/v1/games/saints-row-undercover" + }, { "slug": "saints-and-sinners", "name": "Saints and Sinners", @@ -606216,21 +620646,56 @@ "name": "Sam & Max Save the World", "url": "/v1/games/sam-max-save-the-world" }, + { + "slug": "sam-max-abe-lincoln-must-die", + "name": "Sam & Max: Abe Lincoln Must Die!", + "url": "/v1/games/sam-max-abe-lincoln-must-die" + }, { "slug": "sam-max-beyond-time-and-space-remastered", "name": "Sam & Max: Beyond Time and Space Remastered", "url": "/v1/games/sam-max-beyond-time-and-space-remastered" }, + { + "slug": "sam-max-beyond-the-alley-of-the-dolls", + "name": "Sam & Max: Beyond the Alley of the Dolls", + "url": "/v1/games/sam-max-beyond-the-alley-of-the-dolls" + }, { "slug": "sam-max-bright-side-of-the-moon", "name": "Sam & Max: Bright Side of the Moon", "url": "/v1/games/sam-max-bright-side-of-the-moon" }, + { + "slug": "sam-max-chariots-of-the-dogs", + "name": "Sam & Max: Chariots of the Dogs", + "url": "/v1/games/sam-max-chariots-of-the-dogs" + }, { "slug": "sam-max-culture-shock", "name": "Sam & Max: Culture Shock", "url": "/v1/games/sam-max-culture-shock" }, + { + "slug": "sam-max-freelance-police", + "name": "Sam & Max: Freelance Police", + "url": "/v1/games/sam-max-freelance-police" + }, + { + "slug": "sam-max-ice-station-santa", + "name": "Sam & Max: Ice Station Santa", + "url": "/v1/games/sam-max-ice-station-santa" + }, + { + "slug": "sam-max-moai-better-blues", + "name": "Sam & Max: Moai Better Blues", + "url": "/v1/games/sam-max-moai-better-blues" + }, + { + "slug": "sam-max-night-of-the-raving-dead", + "name": "Sam & Max: Night of the Raving Dead", + "url": "/v1/games/sam-max-night-of-the-raving-dead" + }, { "slug": "sam-max-reality-2-0", "name": "Sam & Max: Reality 2.0", @@ -606241,6 +620706,11 @@ "name": "Sam & Max: Situation: Comedy", "url": "/v1/games/sam-max-situation-comedy" }, + { + "slug": "sam-max-the-city-that-dares-not-sleep", + "name": "Sam & Max: The City That Dares Not Sleep", + "url": "/v1/games/sam-max-the-city-that-dares-not-sleep" + }, { "slug": "sam-max-the-devil-s-playhouse", "name": "Sam & Max: The Devil's Playhouse", @@ -606261,6 +620731,16 @@ "name": "Sam & Max: The Penal Zone", "url": "/v1/games/sam-max-the-penal-zone" }, + { + "slug": "sam-max-the-tomb-of-sammun-mak", + "name": "Sam & Max: The Tomb of Sammun-Mak", + "url": "/v1/games/sam-max-the-tomb-of-sammun-mak" + }, + { + "slug": "sam-max-they-stole-max-s-brain", + "name": "Sam & Max: They Stole Max’s Brain", + "url": "/v1/games/sam-max-they-stole-max-s-brain" + }, { "slug": "sam-max-this-time-it-s-virtual", "name": "Sam & Max: This Time It's Virtual!", @@ -606301,6 +620781,11 @@ "name": "Sam's Last Nightmare", "url": "/v1/games/sam-s-last-nightmare" }, + { + "slug": "sam-s-story", + "name": "Sam's Story", + "url": "/v1/games/sam-s-story" + }, { "slug": "samorai", "name": "SamOrai", @@ -606496,6 +620981,11 @@ "name": "Samorost 3", "url": "/v1/games/samorost-3" }, + { + "slug": "samorost-3-q113660232", + "name": "Samorost 3+", + "url": "/v1/games/samorost-3-q113660232" + }, { "slug": "samosbor", "name": "Samosbor", @@ -606806,6 +621296,11 @@ "name": "Samurai Shiba", "url": "/v1/games/samurai-shiba" }, + { + "slug": "samurai-shodown-q60743293", + "name": "Samurai Shodown", + "url": "/v1/games/samurai-shodown-q60743293" + }, { "slug": "samurai-shodown", "name": "Samurai Shodown", @@ -606821,6 +621316,11 @@ "name": "Samurai Shodown 64: Warriors Rage", "url": "/v1/games/samurai-shodown-64-warriors-rage" }, + { + "slug": "samurai-shodown-anthology", + "name": "Samurai Shodown Anthology", + "url": "/v1/games/samurai-shodown-anthology" + }, { "slug": "samurai-shodown-ii", "name": "Samurai Shodown II", @@ -606836,6 +621336,11 @@ "name": "Samurai Shodown IV: Amakusa's Revenge", "url": "/v1/games/samurai-shodown-iv-amakusa-s-revenge" }, + { + "slug": "samurai-shodown-neogeo-collection", + "name": "Samurai Shodown NeoGeo Collection", + "url": "/v1/games/samurai-shodown-neogeo-collection" + }, { "slug": "samurai-shodown-sen", "name": "Samurai Shodown Sen", @@ -606976,6 +621481,11 @@ "name": "Samurai Warriors 4", "url": "/v1/games/samurai-warriors-4" }, + { + "slug": "samurai-warriors-4-empires", + "name": "Samurai Warriors 4: Empires", + "url": "/v1/games/samurai-warriors-4-empires" + }, { "slug": "samurai-warriors-5", "name": "Samurai Warriors 5", @@ -607096,6 +621606,11 @@ "name": "Samuraï Evolution", "url": "/v1/games/samura-evolution" }, + { + "slug": "san-andreas-multiplayer", + "name": "San Andreas Multiplayer", + "url": "/v1/games/san-andreas-multiplayer" + }, { "slug": "san-camillo-ii", "name": "San Camillo II", @@ -607186,6 +621701,11 @@ "name": "Sanator: Scarlet Scarf", "url": "/v1/games/sanator-scarlet-scarf" }, + { + "slug": "sanatorium", + "name": "Sanatorium", + "url": "/v1/games/sanatorium" + }, { "slug": "sanatorium-a-mental-asylum-simulator", "name": "Sanatorium - A Mental Asylum Simulator", @@ -608386,6 +622906,11 @@ "name": "Sara is Missing", "url": "/v1/games/sara-is-missing" }, + { + "slug": "sara-s-school-life", + "name": "Sara's School Life", + "url": "/v1/games/sara-s-school-life" + }, { "slug": "sarab-2-thalj-mountains", "name": "Sarab 2: Thalj Mountains", @@ -608641,6 +623166,11 @@ "name": "Satanislas", "url": "/v1/games/satanislas" }, + { + "slug": "satebo-s-wordgame", + "name": "Satebo's Wordgame", + "url": "/v1/games/satebo-s-wordgame" + }, { "slug": "satelital", "name": "Satelital", @@ -608886,6 +623416,11 @@ "name": "Saucers", "url": "/v1/games/saucers" }, + { + "slug": "saucy-shot", + "name": "Saucy Shot", + "url": "/v1/games/saucy-shot" + }, { "slug": "saudade-q135073609", "name": "Saudade", @@ -609016,6 +623551,11 @@ "name": "Savage Island", "url": "/v1/games/savage-island" }, + { + "slug": "savage-island-series", + "name": "Savage Island Series", + "url": "/v1/games/savage-island-series" + }, { "slug": "savage-lands", "name": "Savage Lands", @@ -609926,6 +624466,11 @@ "name": "Scalak", "url": "/v1/games/scalak" }, + { + "slug": "scalchop-beach", + "name": "Scalchop Beach", + "url": "/v1/games/scalchop-beach" + }, { "slug": "scale", "name": "Scale", @@ -609946,6 +624491,11 @@ "name": "ScaleBox", "url": "/v1/games/scalebox" }, + { + "slug": "scalebound", + "name": "Scalebound", + "url": "/v1/games/scalebound" + }, { "slug": "scaledeep", "name": "Scaledeep", @@ -610761,11 +625311,21 @@ "name": "Scenery Disk 11 (Flight Simulator II & Jet)", "url": "/v1/games/scenery-disk-11-flight-simulator-ii-jet" }, + { + "slug": "scenery-disk-12-flight-simulator-ii-jet", + "name": "Scenery Disk 12 (Flight Simulator II & Jet)", + "url": "/v1/games/scenery-disk-12-flight-simulator-ii-jet" + }, { "slug": "scenery-disk-7-flight-simulator-ii-jet", "name": "Scenery Disk 7 (Flight Simulator II & Jet)", "url": "/v1/games/scenery-disk-7-flight-simulator-ii-jet" }, + { + "slug": "scenery-disk-9-flight-simulator-ii-jet", + "name": "Scenery Disk 9 (Flight Simulator II & Jet)", + "url": "/v1/games/scenery-disk-9-flight-simulator-ii-jet" + }, { "slug": "scenes-from-the-heart-part-1", "name": "Scenes from the Heart - Part 1", @@ -611151,6 +625711,11 @@ "name": "School Rumble: Nēsan Jiken Desu!", "url": "/v1/games/school-rumble-n-san-jiken-desu" }, + { + "slug": "school-shooter-north-american-tour-2012", + "name": "School Shooter: North American Tour 2012", + "url": "/v1/games/school-shooter-north-american-tour-2012" + }, { "slug": "school-simulator-rpg", "name": "School Simulator RPG", @@ -611401,6 +625966,11 @@ "name": "Science Soldier", "url": "/v1/games/science-soldier" }, + { + "slug": "science-and-industry", + "name": "Science and Industry", + "url": "/v1/games/science-and-industry" + }, { "slug": "science-the-game", "name": "Science: The Game", @@ -612451,6 +627021,11 @@ "name": "Scratches", "url": "/v1/games/scratches" }, + { + "slug": "scratches-director-s-cut", + "name": "Scratches: Director's Cut", + "url": "/v1/games/scratches-director-s-cut" + }, { "slug": "scratchin-melodii", "name": "Scratchin' Melodii", @@ -613291,6 +627866,11 @@ "name": "Sea Sniffers", "url": "/v1/games/sea-sniffers" }, + { + "slug": "sea-story", + "name": "Sea Story", + "url": "/v1/games/sea-story" + }, { "slug": "sea-struggles", "name": "Sea Struggles", @@ -613426,6 +628006,11 @@ "name": "Sea of Solitude", "url": "/v1/games/sea-of-solitude" }, + { + "slug": "sea-of-sorrow", + "name": "Sea of Sorrow", + "url": "/v1/games/sea-of-sorrow" + }, { "slug": "sea-of-souls", "name": "Sea of Souls", @@ -613996,6 +628581,11 @@ "name": "Season of 12 Colors", "url": "/v1/games/season-of-12-colors" }, + { + "slug": "season-of-infamy", + "name": "Season of Infamy", + "url": "/v1/games/season-of-infamy" + }, { "slug": "season-of-the-sakura", "name": "Season of the Sakura", @@ -614491,6 +629081,11 @@ "name": "Secret Game Code:Revise", "url": "/v1/games/secret-game-code-revise" }, + { + "slug": "secret-garden-q113535713", + "name": "Secret Garden", + "url": "/v1/games/secret-garden-q113535713" + }, { "slug": "secret-garden", "name": "Secret Garden", @@ -614936,6 +629531,11 @@ "name": "Secrets of Grindea", "url": "/v1/games/secrets-of-grindea" }, + { + "slug": "secrets-of-light-and-shadow", + "name": "Secrets of Light and Shadow", + "url": "/v1/games/secrets-of-light-and-shadow" + }, { "slug": "secrets-of-magic-2-witches-and-wizards", "name": "Secrets of Magic 2: Witches and Wizards", @@ -615431,6 +630031,11 @@ "name": "Seeb Defender", "url": "/v1/games/seeb-defender" }, + { + "slug": "seeburg-ray-o-lite", + "name": "Seeburg Ray-O-Lite", + "url": "/v1/games/seeburg-ray-o-lite" + }, { "slug": "seed-q48814824", "name": "Seed", @@ -615801,6 +630406,11 @@ "name": "Seeking Adventure", "url": "/v1/games/seeking-adventure" }, + { + "slug": "seeking-asylum-lionheart-demo", + "name": "Seeking Asylum: LionHeart (DEMO)", + "url": "/v1/games/seeking-asylum-lionheart-demo" + }, { "slug": "seeking-asylum-the-game-demo", "name": "Seeking Asylum: The Game (DEMO)", @@ -615906,6 +630516,21 @@ "name": "Sega 3D Classics Collection", "url": "/v1/games/sega-3d-classics-collection" }, + { + "slug": "sega-3d-reprint-archives", + "name": "Sega 3D Reprint Archives", + "url": "/v1/games/sega-3d-reprint-archives" + }, + { + "slug": "sega-3d-reprint-archives-3-final-stage", + "name": "Sega 3D Reprint Archives 3: Final Stage", + "url": "/v1/games/sega-3d-reprint-archives-3-final-stage" + }, + { + "slug": "sega-ages", + "name": "Sega Ages", + "url": "/v1/games/sega-ages" + }, { "slug": "sega-ages-2500-series-vol-14-alien-syndrome", "name": "Sega Ages 2500 Series Vol.14 - Alien Syndrome", @@ -615916,6 +630541,16 @@ "name": "Sega Ages: Dragon Force", "url": "/v1/games/sega-ages-dragon-force" }, + { + "slug": "sega-ages-i-love-mickey-mouse", + "name": "Sega Ages: I Love Mickey Mouse", + "url": "/v1/games/sega-ages-i-love-mickey-mouse" + }, + { + "slug": "sega-arcade-gallery", + "name": "Sega Arcade Gallery", + "url": "/v1/games/sega-arcade-gallery" + }, { "slug": "sega-arcade-turbo", "name": "Sega Arcade Turbo", @@ -615946,6 +630581,11 @@ "name": "Sega Classics Arcade Collection", "url": "/v1/games/sega-classics-arcade-collection" }, + { + "slug": "sega-classics-collection", + "name": "Sega Classics Collection", + "url": "/v1/games/sega-classics-collection" + }, { "slug": "sega-driving-simulator", "name": "Sega Driving Simulator", @@ -615981,6 +630621,11 @@ "name": "Sega Genesis Collection", "url": "/v1/games/sega-genesis-collection" }, + { + "slug": "sega-genesis-nintendo-classics", + "name": "Sega Genesis – Nintendo Classics", + "url": "/v1/games/sega-genesis-nintendo-classics" + }, { "slug": "sega-marine-fishing", "name": "Sega Marine Fishing", @@ -615991,6 +630636,11 @@ "name": "Sega Mega Drive Classic Collection", "url": "/v1/games/sega-mega-drive-classic-collection" }, + { + "slug": "sega-memorial-selection", + "name": "Sega Memorial Selection", + "url": "/v1/games/sega-memorial-selection" + }, { "slug": "sega-ninja", "name": "Sega Ninja", @@ -616106,6 +630756,11 @@ "name": "Sega Worldwide Soccer 2000", "url": "/v1/games/sega-worldwide-soccer-2000" }, + { + "slug": "segasonic-bros", + "name": "SegaSonic Bros.", + "url": "/v1/games/segasonic-bros" + }, { "slug": "segasonic-cosmo-fighter", "name": "SegaSonic Cosmo Fighter", @@ -616191,6 +630846,11 @@ "name": "Seijuu Maden: Beasts & Blades", "url": "/v1/games/seijuu-maden-beasts-blades" }, + { + "slug": "seiken-densetsu-the-emergence-of-excalibur", + "name": "Seiken Densetsu: The Emergence of Excalibur", + "url": "/v1/games/seiken-densetsu-the-emergence-of-excalibur" + }, { "slug": "seiken-psycho-caliber-maj-no-mori-densetsu", "name": "Seiken Psycho Caliber: Majū no Mori Densetsu", @@ -616776,6 +631436,11 @@ "name": "Sengoku 3", "url": "/v1/games/sengoku-3" }, + { + "slug": "sengoku-anthology", + "name": "Sengoku Anthology", + "url": "/v1/games/sengoku-anthology" + }, { "slug": "sengoku-baccarat", "name": "Sengoku Baccarat", @@ -617921,6 +632586,11 @@ "name": "Serious Sally", "url": "/v1/games/serious-sally" }, + { + "slug": "serious-sam-3-bonus-content-dlc", + "name": "Serious Sam 3 Bonus Content DLC", + "url": "/v1/games/serious-sam-3-bonus-content-dlc" + }, { "slug": "serious-sam-3-vr-bfe", "name": "Serious Sam 3 VR: BFE", @@ -617931,6 +632601,16 @@ "name": "Serious Sam 3: BFE", "url": "/v1/games/serious-sam-3-bfe" }, + { + "slug": "serious-sam-3-bfe-gold-edition", + "name": "Serious Sam 3: BFE Gold Edition", + "url": "/v1/games/serious-sam-3-bfe-gold-edition" + }, + { + "slug": "serious-sam-3-jewel-of-the-nile", + "name": "Serious Sam 3: Jewel of the Nile", + "url": "/v1/games/serious-sam-3-jewel-of-the-nile" + }, { "slug": "serious-sam-4", "name": "Serious Sam 4", @@ -617946,11 +632626,46 @@ "name": "Serious Sam Classics: Revolution", "url": "/v1/games/serious-sam-classics-revolution" }, + { + "slug": "serious-sam-collection", + "name": "Serious Sam Collection", + "url": "/v1/games/serious-sam-collection" + }, + { + "slug": "serious-sam-complete-pack", + "name": "Serious Sam Complete Pack", + "url": "/v1/games/serious-sam-complete-pack" + }, { "slug": "serious-sam-double-d", "name": "Serious Sam Double D", "url": "/v1/games/serious-sam-double-d" }, + { + "slug": "serious-sam-double-d-xxl", + "name": "Serious Sam Double D XXL", + "url": "/v1/games/serious-sam-double-d-xxl" + }, + { + "slug": "serious-sam-fusion-2017", + "name": "Serious Sam Fusion 2017", + "url": "/v1/games/serious-sam-fusion-2017" + }, + { + "slug": "serious-sam-hd-q122204580", + "name": "Serious Sam HD", + "url": "/v1/games/serious-sam-hd-q122204580" + }, + { + "slug": "serious-sam-hd", + "name": "Serious Sam HD", + "url": "/v1/games/serious-sam-hd" + }, + { + "slug": "serious-sam-hd-gold-collection", + "name": "Serious Sam HD Gold Collection", + "url": "/v1/games/serious-sam-hd-gold-collection" + }, { "slug": "serious-sam-hd-the-first-encounter", "name": "Serious Sam HD: The First Encounter", @@ -617961,6 +632676,26 @@ "name": "Serious Sam HD: The Second Encounter", "url": "/v1/games/serious-sam-hd-the-second-encounter" }, + { + "slug": "serious-sam-hd-the-second-encounter-legend-of-the-beast", + "name": "Serious Sam HD: The Second Encounter - Legend of the Beast", + "url": "/v1/games/serious-sam-hd-the-second-encounter-legend-of-the-beast" + }, + { + "slug": "serious-sam-hd-the-second-encounter-serious-8-dlc", + "name": "Serious Sam HD: The Second Encounter - Serious 8 DLC", + "url": "/v1/games/serious-sam-hd-the-second-encounter-serious-8-dlc" + }, + { + "slug": "serious-sam-vr-bundle", + "name": "Serious Sam VR Bundle", + "url": "/v1/games/serious-sam-vr-bundle" + }, + { + "slug": "serious-sam-vr-the-first-encounter-q121307091", + "name": "Serious Sam VR: The First Encounter", + "url": "/v1/games/serious-sam-vr-the-first-encounter-q121307091" + }, { "slug": "serious-sam-vr-the-first-encounter", "name": "Serious Sam VR: The First Encounter", @@ -617981,6 +632716,11 @@ "name": "Serious Sam's Bogus Detour", "url": "/v1/games/serious-sam-s-bogus-detour" }, + { + "slug": "serious-sam-gold-edition", + "name": "Serious Sam: Gold Edition", + "url": "/v1/games/serious-sam-gold-edition" + }, { "slug": "serious-sam-kamikaze-attack", "name": "Serious Sam: Kamikaze Attack!", @@ -617991,6 +632731,11 @@ "name": "Serious Sam: Next Encounter", "url": "/v1/games/serious-sam-next-encounter" }, + { + "slug": "serious-sam-siberian-mayhem", + "name": "Serious Sam: Siberian Mayhem", + "url": "/v1/games/serious-sam-siberian-mayhem" + }, { "slug": "serious-sam-the-first-encounter", "name": "Serious Sam: The First Encounter", @@ -618016,6 +632761,11 @@ "name": "Serious Sam: Tormental", "url": "/v1/games/serious-sam-tormental" }, + { + "slug": "serious-savings", + "name": "Serious Savings", + "url": "/v1/games/serious-savings" + }, { "slug": "serious-scramblers", "name": "Serious Scramblers", @@ -619476,6 +634226,11 @@ "name": "Sex Standing", "url": "/v1/games/sex-standing" }, + { + "slug": "sex-story-cuckold-life-episode-1", + "name": "Sex Story - Cuckold Life - Episode 1", + "url": "/v1/games/sex-story-cuckold-life-episode-1" + }, { "slug": "sex-story-cuckold-life-episode-2", "name": "Sex Story - Cuckold Life - Episode 2", @@ -620391,6 +635146,11 @@ "name": "Shadow Blade", "url": "/v1/games/shadow-blade" }, + { + "slug": "shadow-blade-q111154317", + "name": "Shadow Blade+", + "url": "/v1/games/shadow-blade-q111154317" + }, { "slug": "shadow-blade-reload", "name": "Shadow Blade: Reload", @@ -620631,6 +635391,11 @@ "name": "Shadow Gadget", "url": "/v1/games/shadow-gadget" }, + { + "slug": "shadow-gambit-zagan-s-ritual", + "name": "Shadow Gambit: Zagan's Ritual", + "url": "/v1/games/shadow-gambit-zagan-s-ritual" + }, { "slug": "shadow-gangs", "name": "Shadow Gangs", @@ -621046,6 +635811,16 @@ "name": "Shadow Warrior Classic Redux", "url": "/v1/games/shadow-warrior-classic-redux" }, + { + "slug": "shadow-warrior-twin-dragon", + "name": "Shadow Warrior: Twin Dragon", + "url": "/v1/games/shadow-warrior-twin-dragon" + }, + { + "slug": "shadow-warrior-wanton-destruction", + "name": "Shadow Warrior: Wanton Destruction", + "url": "/v1/games/shadow-warrior-wanton-destruction" + }, { "slug": "shadow-watch", "name": "Shadow Watch", @@ -621251,6 +636026,11 @@ "name": "Shadow of the Devil", "url": "/v1/games/shadow-of-the-devil" }, + { + "slug": "shadow-of-the-eternals", + "name": "Shadow of the Eternals", + "url": "/v1/games/shadow-of-the-eternals" + }, { "slug": "shadow-of-the-guild", "name": "Shadow of the Guild", @@ -621296,6 +636076,11 @@ "name": "Shadow of the Tomb Raider", "url": "/v1/games/shadow-of-the-tomb-raider" }, + { + "slug": "shadow-of-the-tomb-raider-definitive-edition", + "name": "Shadow of the Tomb Raider: Definitive Edition", + "url": "/v1/games/shadow-of-the-tomb-raider-definitive-edition" + }, { "slug": "shadow-of-the-treasure", "name": "Shadow of the Treasure", @@ -621426,6 +636211,11 @@ "name": "Shadowbane", "url": "/v1/games/shadowbane" }, + { + "slug": "shadowbane-throne-of-oblivion", + "name": "Shadowbane: Throne of Oblivion", + "url": "/v1/games/shadowbane-throne-of-oblivion" + }, { "slug": "shadowbridge-the-genesis", "name": "Shadowbridge - The Genesis", @@ -621516,6 +636306,11 @@ "name": "Shadowgrounds", "url": "/v1/games/shadowgrounds" }, + { + "slug": "shadowgrounds-demo", + "name": "Shadowgrounds Demo", + "url": "/v1/games/shadowgrounds-demo" + }, { "slug": "shadowgrounds-survivor", "name": "Shadowgrounds: Survivor", @@ -621646,6 +636441,11 @@ "name": "Shadowrun Trilogy", "url": "/v1/games/shadowrun-trilogy" }, + { + "slug": "shadowrun-dragonfall", + "name": "Shadowrun: Dragonfall", + "url": "/v1/games/shadowrun-dragonfall" + }, { "slug": "shadowrun-dragonfall-director-s-cut", "name": "Shadowrun: Dragonfall - Director's Cut", @@ -621956,6 +636756,16 @@ "name": "Shadows of time", "url": "/v1/games/shadows-of-time" }, + { + "slug": "shadows-on-the-vatican-act-1-greed", + "name": "Shadows on the Vatican - Act 1: Greed", + "url": "/v1/games/shadows-on-the-vatican-act-1-greed" + }, + { + "slug": "shadows-on-the-vatican-act-ii-wrath", + "name": "Shadows on the Vatican - Act II: Wrath", + "url": "/v1/games/shadows-on-the-vatican-act-ii-wrath" + }, { "slug": "shadows-on-the-vatican-act-iii-sloth", "name": "Shadows on the Vatican - Act III: Sloth", @@ -622056,6 +636866,11 @@ "name": "Shady Lewd Kart", "url": "/v1/games/shady-lewd-kart" }, + { + "slug": "shady-o-grady-s-rising-star", + "name": "Shady O'Grady's Rising Star", + "url": "/v1/games/shady-o-grady-s-rising-star" + }, { "slug": "shady-part-of-me", "name": "Shady Part of Me", @@ -622081,11 +636896,21 @@ "name": "Shaiya", "url": "/v1/games/shaiya" }, + { + "slug": "shake-q11306932", + "name": "Shake", + "url": "/v1/games/shake-q11306932" + }, { "slug": "shake-ground", "name": "Shake Ground", "url": "/v1/games/shake-ground" }, + { + "slug": "shake-ii", + "name": "Shake II", + "url": "/v1/games/shake-ii" + }, { "slug": "shake-it-up", "name": "Shake It Up", @@ -623041,6 +637866,11 @@ "name": "Shark Attack Deathmatch 2", "url": "/v1/games/shark-attack-deathmatch-2" }, + { + "slug": "shark-attack-pack", + "name": "Shark Attack Pack", + "url": "/v1/games/shark-attack-pack" + }, { "slug": "shark-castle", "name": "Shark Castle", @@ -624351,6 +639181,11 @@ "name": "Sherlock Holmes: The Devil's Daughter", "url": "/v1/games/sherlock-holmes-the-devil-s-daughter" }, + { + "slug": "sherlock-holmes-the-devil-s-daughter-redux", + "name": "Sherlock Holmes: The Devil’s Daughter Redux", + "url": "/v1/games/sherlock-holmes-the-devil-s-daughter-redux" + }, { "slug": "sherlock-holmes-the-mystery-of-the-mummy", "name": "Sherlock Holmes: The Mystery of the Mummy", @@ -624446,6 +639281,11 @@ "name": "Shhh!Saw", "url": "/v1/games/shhh-saw" }, + { + "slug": "shi-kong-xing-shou", + "name": "Shi Kong Xing Shou", + "url": "/v1/games/shi-kong-xing-shou" + }, { "slug": "shiawase-kazoku-bu", "name": "Shiawase Kazoku-bu", @@ -625126,6 +639966,11 @@ "name": "Shin'ainaru Kodoku to Kunou e", "url": "/v1/games/shin-ainaru-kodoku-to-kunou-e" }, + { + "slug": "shin-yoshimune", + "name": "Shin-Yoshimune", + "url": "/v1/games/shin-yoshimune" + }, { "slug": "shin-chan-me-and-the-professor-on-summer-vacation-the-endless-seven-day-journey", "name": "Shin-chan: Me and the Professor on Summer Vacation – The Endless Seven-Day Journey", @@ -625556,6 +640401,11 @@ "name": "Shinkyoku Sōkai Polyphonica", "url": "/v1/games/shinkyoku-s-kai-polyphonica" }, + { + "slug": "shinobi-q2327011", + "name": "Shinobi", + "url": "/v1/games/shinobi-q2327011" + }, { "slug": "shinobi", "name": "Shinobi", @@ -626521,11 +641371,21 @@ "name": "Shogun: Total War", "url": "/v1/games/shogun-total-war" }, + { + "slug": "shogun-total-war-the-mongol-invasion", + "name": "Shogun: Total War: The Mongol Invasion", + "url": "/v1/games/shogun-total-war-the-mongol-invasion" + }, { "slug": "shogunaria", "name": "Shogunaria", "url": "/v1/games/shogunaria" }, + { + "slug": "shogunate", + "name": "Shogunate", + "url": "/v1/games/shogunate" + }, { "slug": "shohei-s-adult-streaming-channel", "name": "Shohei's Adult Streaming Channel", @@ -627696,6 +642556,11 @@ "name": "Shovel Knight Pocket Dungeon", "url": "/v1/games/shovel-knight-pocket-dungeon" }, + { + "slug": "shovel-knight-king-of-cards", + "name": "Shovel Knight: King of Cards", + "url": "/v1/games/shovel-knight-king-of-cards" + }, { "slug": "shovel-knight-plague-of-shadows", "name": "Shovel Knight: Plague of Shadows", @@ -627866,6 +642731,11 @@ "name": "Shrak", "url": "/v1/games/shrak" }, + { + "slug": "shrak-for-quake", + "name": "Shrak for Quake", + "url": "/v1/games/shrak-for-quake" + }, { "slug": "shrapnel", "name": "Shrapnel", @@ -627926,6 +642796,11 @@ "name": "Shredders", "url": "/v1/games/shredders" }, + { + "slug": "shredfest", + "name": "Shredfest", + "url": "/v1/games/shredfest" + }, { "slug": "shrek", "name": "Shrek", @@ -627946,6 +642821,11 @@ "name": "Shrek 2: Beg for Mercy", "url": "/v1/games/shrek-2-beg-for-mercy" }, + { + "slug": "shrek-2-team-action", + "name": "Shrek 2: Team Action", + "url": "/v1/games/shrek-2-team-action" + }, { "slug": "shrek-extra-large", "name": "Shrek Extra Large", @@ -628741,6 +643621,21 @@ "name": "SiN Episodes: Emergence", "url": "/v1/games/sin-episodes-emergence" }, + { + "slug": "sin-episodes-emergence-german", + "name": "SiN Episodes: Emergence German", + "url": "/v1/games/sin-episodes-emergence-german" + }, + { + "slug": "sin-gold", + "name": "SiN Gold", + "url": "/v1/games/sin-gold" + }, + { + "slug": "sin-wages-of-sin", + "name": "SiN: Wages of Sin", + "url": "/v1/games/sin-wages-of-sin" + }, { "slug": "sinkr", "name": "SiNKR", @@ -628906,6 +643801,11 @@ "name": "Sid Meier's Ace Patrol", "url": "/v1/games/sid-meier-s-ace-patrol" }, + { + "slug": "sid-meier-s-alien-crossfire", + "name": "Sid Meier's Alien Crossfire", + "url": "/v1/games/sid-meier-s-alien-crossfire" + }, { "slug": "sid-meier-s-alpha-centauri", "name": "Sid Meier's Alpha Centauri", @@ -628921,11 +643821,21 @@ "name": "Sid Meier's CivNet", "url": "/v1/games/sid-meier-s-civnet" }, + { + "slug": "sid-meier-s-civil-war-collection", + "name": "Sid Meier's Civil War Collection", + "url": "/v1/games/sid-meier-s-civil-war-collection" + }, { "slug": "sid-meier-s-civilization-chronicles", "name": "Sid Meier's Civilization Chronicles", "url": "/v1/games/sid-meier-s-civilization-chronicles" }, + { + "slug": "sid-meier-s-civilization-iii-complete", + "name": "Sid Meier's Civilization III Complete", + "url": "/v1/games/sid-meier-s-civilization-iii-complete" + }, { "slug": "sid-meier-s-colonization", "name": "Sid Meier's Colonization", @@ -629316,6 +644226,11 @@ "name": "Sierra Sports NFL Football Pro '99", "url": "/v1/games/sierra-sports-nfl-football-pro-99" }, + { + "slug": "sierra-sports-nfl-football-pro-2000", + "name": "Sierra Sports NFL Football Pro 2000", + "url": "/v1/games/sierra-sports-nfl-football-pro-2000" + }, { "slug": "sierra-sports-skiing-1999-edition", "name": "Sierra Sports: Skiing 1999 Edition", @@ -629421,6 +644336,11 @@ "name": "Sigi - A Fart for Melusina", "url": "/v1/games/sigi-a-fart-for-melusina" }, + { + "slug": "sigil", + "name": "Sigil", + "url": "/v1/games/sigil" + }, { "slug": "sigil-of-chaos", "name": "Sigil Of Chaos", @@ -629871,6 +644791,11 @@ "name": "Silent Hill 2: Director's Cut", "url": "/v1/games/silent-hill-2-director-s-cut" }, + { + "slug": "silent-hill-2-restless-dreams", + "name": "Silent Hill 2: Restless Dreams", + "url": "/v1/games/silent-hill-2-restless-dreams" + }, { "slug": "silent-hill-3", "name": "Silent Hill 3", @@ -629881,6 +644806,16 @@ "name": "Silent Hill 4: The Room", "url": "/v1/games/silent-hill-4-the-room" }, + { + "slug": "silent-hill-collection", + "name": "Silent Hill Collection", + "url": "/v1/games/silent-hill-collection" + }, + { + "slug": "silent-hill-hd-collection", + "name": "Silent Hill HD Collection", + "url": "/v1/games/silent-hill-hd-collection" + }, { "slug": "silent-hill-ascension", "name": "Silent Hill: Ascension", @@ -629966,6 +644901,11 @@ "name": "Silent Hunter 4: Wolves of the Pacific", "url": "/v1/games/silent-hunter-4-wolves-of-the-pacific" }, + { + "slug": "silent-hunter-4-wolves-of-the-pacific-u-boat-missions", + "name": "Silent Hunter 4: Wolves of the Pacific U-Boat Missions", + "url": "/v1/games/silent-hunter-4-wolves-of-the-pacific-u-boat-missions" + }, { "slug": "silent-hunter-5-battle-of-the-atlantic", "name": "Silent Hunter 5: Battle of the Atlantic", @@ -630106,6 +645046,11 @@ "name": "Silent Scope 3", "url": "/v1/games/silent-scope-3" }, + { + "slug": "silent-scope-complete", + "name": "Silent Scope Complete", + "url": "/v1/games/silent-scope-complete" + }, { "slug": "silent-sector", "name": "Silent Sector", @@ -630151,6 +645096,11 @@ "name": "Silent Sonata", "url": "/v1/games/silent-sonata" }, + { + "slug": "silent-space", + "name": "Silent Space", + "url": "/v1/games/silent-space" + }, { "slug": "silent-station", "name": "Silent Station", @@ -630561,6 +645511,11 @@ "name": "Silver Blue", "url": "/v1/games/silver-blue" }, + { + "slug": "silver-box-classics", + "name": "Silver Box Classics", + "url": "/v1/games/silver-box-classics" + }, { "slug": "silver-bullet-prometheus", "name": "Silver Bullet: Prometheus", @@ -630611,6 +645566,11 @@ "name": "Silver Eagle", "url": "/v1/games/silver-eagle" }, + { + "slug": "silver-falls-survive", + "name": "Silver Falls Survive", + "url": "/v1/games/silver-falls-survive" + }, { "slug": "silver-falls-3-down-stars", "name": "Silver Falls: 3 Down Stars", @@ -630676,6 +645636,11 @@ "name": "Silver Star Chess", "url": "/v1/games/silver-star-chess" }, + { + "slug": "silver-star-go", + "name": "Silver Star Go", + "url": "/v1/games/silver-star-go" + }, { "slug": "silver-star-reversi", "name": "Silver Star Reversi", @@ -630751,6 +645716,11 @@ "name": "Silverfall", "url": "/v1/games/silverfall" }, + { + "slug": "silverfall-earth-awakening", + "name": "Silverfall: Earth Awakening", + "url": "/v1/games/silverfall-earth-awakening" + }, { "slug": "silverfish", "name": "Silverfish", @@ -630821,16 +645791,46 @@ "name": "Sim City", "url": "/v1/games/sim-city" }, + { + "slug": "sim-city-2000-cd-collection", + "name": "Sim City 2000 - CD Collection", + "url": "/v1/games/sim-city-2000-cd-collection" + }, + { + "slug": "sim-city-2000-urban-renewal-kit", + "name": "Sim City 2000: Urban Renewal Kit", + "url": "/v1/games/sim-city-2000-urban-renewal-kit" + }, { "slug": "sim-city-accessories", "name": "Sim City Accessories", "url": "/v1/games/sim-city-accessories" }, + { + "slug": "sim-city-architecture-1-future-cities", + "name": "Sim City Architecture 1: Future Cities", + "url": "/v1/games/sim-city-architecture-1-future-cities" + }, { "slug": "sim-city-architecture-2-ancient-cities", "name": "Sim City Architecture 2: Ancient Cities", "url": "/v1/games/sim-city-architecture-2-ancient-cities" }, + { + "slug": "sim-city-classic-the-original-city-simulator", + "name": "Sim City Classic: The Original City Simulator", + "url": "/v1/games/sim-city-classic-the-original-city-simulator" + }, + { + "slug": "sim-city-deluxe", + "name": "Sim City Deluxe", + "url": "/v1/games/sim-city-deluxe" + }, + { + "slug": "sim-city-terrain-editor", + "name": "Sim City: Terrain Editor", + "url": "/v1/games/sim-city-terrain-editor" + }, { "slug": "sim-classics-maxis-collections-i", "name": "Sim Classics: Maxis Collections I", @@ -630906,6 +645906,11 @@ "name": "SimCity 2000: Network Edition", "url": "/v1/games/simcity-2000-network-edition" }, + { + "slug": "simcity-2000-scenarios-volume-i-great-disasters", + "name": "SimCity 2000: Scenarios Volume I: Great Disasters", + "url": "/v1/games/simcity-2000-scenarios-volume-i-great-disasters" + }, { "slug": "simcity-3000", "name": "SimCity 3000", @@ -630916,6 +645921,16 @@ "name": "SimCity 4", "url": "/v1/games/simcity-4" }, + { + "slug": "simcity-4-deluxe-edition", + "name": "SimCity 4 Deluxe Edition", + "url": "/v1/games/simcity-4-deluxe-edition" + }, + { + "slug": "simcity-4-rush-hour", + "name": "SimCity 4: Rush Hour", + "url": "/v1/games/simcity-4-rush-hour" + }, { "slug": "simcity-64", "name": "SimCity 64", @@ -630926,6 +645941,11 @@ "name": "SimCity BuildIt", "url": "/v1/games/simcity-buildit" }, + { + "slug": "simcity-classic", + "name": "SimCity Classic", + "url": "/v1/games/simcity-classic" + }, { "slug": "simcity-creator", "name": "SimCity Creator", @@ -630941,6 +645961,11 @@ "name": "SimCity DS 2", "url": "/v1/games/simcity-ds-2" }, + { + "slug": "simcity-de-luxe", + "name": "SimCity De Luxe", + "url": "/v1/games/simcity-de-luxe" + }, { "slug": "simcity-deluxe", "name": "SimCity Deluxe", @@ -630951,6 +645976,11 @@ "name": "SimCity Enhanced", "url": "/v1/games/simcity-enhanced" }, + { + "slug": "simcity-graphics-set-2-future-cities", + "name": "SimCity Graphics Set 2: Future Cities", + "url": "/v1/games/simcity-graphics-set-2-future-cities" + }, { "slug": "simcity-social", "name": "SimCity Social", @@ -630961,11 +645991,21 @@ "name": "SimCity Societies", "url": "/v1/games/simcity-societies" }, + { + "slug": "simcity-societies-destinations", + "name": "SimCity Societies: Destinations", + "url": "/v1/games/simcity-societies-destinations" + }, { "slug": "simcity-world", "name": "SimCity World", "url": "/v1/games/simcity-world" }, + { + "slug": "simcity-cities-of-tomorrow", + "name": "SimCity: Cities Of Tomorrow", + "url": "/v1/games/simcity-cities-of-tomorrow" + }, { "slug": "simearth", "name": "SimEarth", @@ -631001,6 +646041,11 @@ "name": "SimLife", "url": "/v1/games/simlife" }, + { + "slug": "simmars", + "name": "SimMars", + "url": "/v1/games/simmars" + }, { "slug": "simpark", "name": "SimPark", @@ -631691,6 +646736,11 @@ "name": "Simraceway", "url": "/v1/games/simraceway" }, + { + "slug": "simsville", + "name": "SimsVille", + "url": "/v1/games/simsville" + }, { "slug": "simson-tuningwerkstatt-3d", "name": "Simson Tuningwerkstatt 3D", @@ -631816,6 +646866,11 @@ "name": "Simulator: Parking Lot", "url": "/v1/games/simulator-parking-lot" }, + { + "slug": "simulators-of-our-life", + "name": "Simulators of our life", + "url": "/v1/games/simulators-of-our-life" + }, { "slug": "simulators2021", "name": "Simulators2021", @@ -632616,6 +647671,16 @@ "name": "Sins of a Solar Empire II", "url": "/v1/games/sins-of-a-solar-empire-ii" }, + { + "slug": "sins-of-a-solar-empire-diplomacy", + "name": "Sins of a Solar Empire: Diplomacy", + "url": "/v1/games/sins-of-a-solar-empire-diplomacy" + }, + { + "slug": "sins-of-a-solar-empire-entrenchment", + "name": "Sins of a Solar Empire: Entrenchment", + "url": "/v1/games/sins-of-a-solar-empire-entrenchment" + }, { "slug": "sins-of-a-solar-empire-rebellion", "name": "Sins of a Solar Empire: Rebellion", @@ -633016,6 +648081,11 @@ "name": "Sister Ray", "url": "/v1/games/sister-ray" }, + { + "slug": "sister-sonic", + "name": "Sister Sonic", + "url": "/v1/games/sister-sonic" + }, { "slug": "sister-travel", "name": "Sister Travel", @@ -633126,6 +648196,11 @@ "name": "Sisyphus Reborn", "url": "/v1/games/sisyphus-reborn" }, + { + "slug": "sisyphus-simulator", + "name": "Sisyphus Simulator", + "url": "/v1/games/sisyphus-simulator" + }, { "slug": "sisyphus-the-game", "name": "Sisyphus The Game", @@ -633336,6 +648411,11 @@ "name": "Six-Ear Macaque: Awakening", "url": "/v1/games/six-ear-macaque-awakening" }, + { + "slug": "six-eight-two", + "name": "Six-Eight-Two", + "url": "/v1/games/six-eight-two" + }, { "slug": "six-gun-shootout", "name": "Six-Gun Shootout", @@ -634566,6 +649646,11 @@ "name": "Skill Random Defense", "url": "/v1/games/skill-random-defense" }, + { + "slug": "skill-treasury", + "name": "Skill Treasury", + "url": "/v1/games/skill-treasury" + }, { "slug": "skill-up", "name": "Skill Up!", @@ -634696,6 +649781,11 @@ "name": "Skinwalkers", "url": "/v1/games/skinwalkers" }, + { + "slug": "skip-barber-racing", + "name": "Skip Barber Racing", + "url": "/v1/games/skip-barber-racing" + }, { "slug": "skip-lake", "name": "Skip Lake", @@ -635101,6 +650191,11 @@ "name": "Skullgirls", "url": "/v1/games/skullgirls" }, + { + "slug": "skullgirls-2nd-encore", + "name": "Skullgirls: 2nd Encore", + "url": "/v1/games/skullgirls-2nd-encore" + }, { "slug": "skullhunter-a-worm-s-tale", "name": "Skullhunter A Worm's Tale", @@ -635136,6 +650231,11 @@ "name": "Skullstone", "url": "/v1/games/skullstone" }, + { + "slug": "skulltag", + "name": "Skulltag", + "url": "/v1/games/skulltag" + }, { "slug": "skulltide", "name": "Skulltide", @@ -635951,6 +651051,11 @@ "name": "Skyblazer", "url": "/v1/games/skyblazer" }, + { + "slug": "skyblivion", + "name": "Skyblivion", + "url": "/v1/games/skyblivion" + }, { "slug": "skyblocker", "name": "Skyblocker", @@ -636336,6 +651441,11 @@ "name": "Skyraine", "url": "/v1/games/skyraine" }, + { + "slug": "skyrama", + "name": "Skyrama", + "url": "/v1/games/skyrama" + }, { "slug": "skyrates", "name": "Skyrates", @@ -637176,6 +652286,11 @@ "name": "SlaveCorporation", "url": "/v1/games/slavecorporation" }, + { + "slug": "slavehack", + "name": "SlaveHack", + "url": "/v1/games/slavehack" + }, { "slug": "slaveblade", "name": "Slaveblade", @@ -637291,11 +652406,31 @@ "name": "Slay the Minotaur", "url": "/v1/games/slay-the-minotaur" }, + { + "slug": "slay-the-princess-supporters-pack", + "name": "Slay the Princess - Supporters Pack", + "url": "/v1/games/slay-the-princess-supporters-pack" + }, + { + "slug": "slay-the-princess-the-pristine-cut", + "name": "Slay the Princess - The Pristine Cut", + "url": "/v1/games/slay-the-princess-the-pristine-cut" + }, + { + "slug": "slay-the-princess-demo", + "name": "Slay the Princess Demo", + "url": "/v1/games/slay-the-princess-demo" + }, { "slug": "slay-the-spire", "name": "Slay the Spire", "url": "/v1/games/slay-the-spire" }, + { + "slug": "slay-the-spire-q122704798", + "name": "Slay the Spire+", + "url": "/v1/games/slay-the-spire-q122704798" + }, { "slug": "slay-one", "name": "Slay.one", @@ -637551,6 +652686,11 @@ "name": "Sleepin' Guy", "url": "/v1/games/sleepin-guy" }, + { + "slug": "sleepin-guy-deluxe-edition", + "name": "Sleepin' Guy Deluxe Edition", + "url": "/v1/games/sleepin-guy-deluxe-edition" + }, { "slug": "sleeping-beauty-q122379366", "name": "Sleeping Beauty", @@ -637781,6 +652921,11 @@ "name": "Slenderman", "url": "/v1/games/slenderman" }, + { + "slug": "slenderman-eyes", + "name": "Slenderman Eyes", + "url": "/v1/games/slenderman-eyes" + }, { "slug": "slenderman-s-shadow", "name": "Slenderman's Shadow", @@ -638096,6 +653241,11 @@ "name": "Slider", "url": "/v1/games/slider" }, + { + "slug": "slider-escape", + "name": "Slider Escape", + "url": "/v1/games/slider-escape" + }, { "slug": "slider-scouts", "name": "Slider Scouts", @@ -638771,6 +653921,11 @@ "name": "Slime-san", "url": "/v1/games/slime-san" }, + { + "slug": "slime-san-superslime-edition", + "name": "Slime-san Superslime Edition", + "url": "/v1/games/slime-san-superslime-edition" + }, { "slug": "slime-san-blackbird-s-kraken", "name": "Slime-san: Blackbird's Kraken", @@ -639236,6 +654391,11 @@ "name": "Slitherise", "url": "/v1/games/slitherise" }, + { + "slug": "slitherlink", + "name": "Slitherlink", + "url": "/v1/games/slitherlink" + }, { "slug": "slitterhead", "name": "Slitterhead", @@ -639641,6 +654801,11 @@ "name": "Sly 2: Band of Thieves", "url": "/v1/games/sly-2-band-of-thieves" }, + { + "slug": "sly-2-band-of-thieves-demo", + "name": "Sly 2: Band of Thieves demo", + "url": "/v1/games/sly-2-band-of-thieves-demo" + }, { "slug": "sly-3-honor-among-thieves", "name": "Sly 3: Honor Among Thieves", @@ -640126,6 +655291,11 @@ "name": "Smash Boats", "url": "/v1/games/smash-boats" }, + { + "slug": "smash-boats-waterlogged-edition", + "name": "Smash Boats Waterlogged Edition", + "url": "/v1/games/smash-boats-waterlogged-edition" + }, { "slug": "smash-champs", "name": "Smash Champs", @@ -640466,6 +655636,11 @@ "name": "Smile Company", "url": "/v1/games/smile-company" }, + { + "slug": "smile-for-today", + "name": "Smile For Today", + "url": "/v1/games/smile-for-today" + }, { "slug": "smile-thief", "name": "Smile Thief", @@ -641371,6 +656546,11 @@ "name": "Snake.io", "url": "/v1/games/snake-io" }, + { + "slug": "snake-io-q118235248", + "name": "Snake.io+", + "url": "/v1/games/snake-io-q118235248" + }, { "slug": "snake-road-to-apple", "name": "Snake: Road to apple", @@ -641591,6 +656771,11 @@ "name": "Snappy Wizard", "url": "/v1/games/snappy-wizard" }, + { + "slug": "snappy-v", + "name": "Snappy v", + "url": "/v1/games/snappy-v" + }, { "slug": "snaps", "name": "Snaps", @@ -641861,6 +657046,11 @@ "name": "Sniper Elite", "url": "/v1/games/sniper-elite" }, + { + "slug": "sniper-elite-3-ultimate-edition", + "name": "Sniper Elite 3 Ultimate Edition", + "url": "/v1/games/sniper-elite-3-ultimate-edition" + }, { "slug": "sniper-elite-4", "name": "Sniper Elite 4", @@ -641871,6 +657061,16 @@ "name": "Sniper Elite 5", "url": "/v1/games/sniper-elite-5" }, + { + "slug": "sniper-elite-5-deluxe-edition", + "name": "Sniper Elite 5 Deluxe Edition", + "url": "/v1/games/sniper-elite-5-deluxe-edition" + }, + { + "slug": "sniper-elite-complete-pack", + "name": "Sniper Elite Complete Pack", + "url": "/v1/games/sniper-elite-complete-pack" + }, { "slug": "sniper-elite-iii", "name": "Sniper Elite III", @@ -641936,6 +657136,16 @@ "name": "Sniper Ghost Warrior Contracts 2", "url": "/v1/games/sniper-ghost-warrior-contracts-2" }, + { + "slug": "sniper-ghost-warrior-contracts-2-complete-edition", + "name": "Sniper Ghost Warrior Contracts 2 Complete Edition", + "url": "/v1/games/sniper-ghost-warrior-contracts-2-complete-edition" + }, + { + "slug": "sniper-ghost-warrior-contracts-full-arsenal-edition", + "name": "Sniper Ghost Warrior Contracts Full Arsenal Edition", + "url": "/v1/games/sniper-ghost-warrior-contracts-full-arsenal-edition" + }, { "slug": "sniper-hunter-adventure-3d", "name": "Sniper Hunter Adventure 3D", @@ -643706,6 +658916,11 @@ "name": "Soda Sabotage", "url": "/v1/games/soda-sabotage" }, + { + "slug": "soda-shot", + "name": "Soda Shot", + "url": "/v1/games/soda-shot" + }, { "slug": "soda-splash", "name": "Soda Splash", @@ -644151,6 +659366,11 @@ "name": "Sokoboxes Duo", "url": "/v1/games/sokoboxes-duo" }, + { + "slug": "sokocat-combo", + "name": "Sokocat: Combo", + "url": "/v1/games/sokocat-combo" + }, { "slug": "sokocat-dungeon", "name": "Sokocat: Dungeon", @@ -644891,6 +660111,11 @@ "name": "Soldier of Fortune: Payback", "url": "/v1/games/soldier-of-fortune-payback" }, + { + "slug": "soldier-of-fortune-platinum-edition", + "name": "Soldier of Fortune: Platinum Edition", + "url": "/v1/games/soldier-of-fortune-platinum-edition" + }, { "slug": "soldier-of-the-future", "name": "Soldier of the Future", @@ -645351,6 +660576,11 @@ "name": "Solitaire Victorian Picnic 2", "url": "/v1/games/solitaire-victorian-picnic-2" }, + { + "slug": "solitaire-by-mobilityware", + "name": "Solitaire by MobilityWare+", + "url": "/v1/games/solitaire-by-mobilityware" + }, { "slug": "solitaire-of-stygian-shadows", "name": "Solitaire of Stygian Shadows", @@ -646501,11 +661731,21 @@ "name": "Sonic & Knuckles", "url": "/v1/games/sonic-knuckles" }, + { + "slug": "sonic-knuckles-collection", + "name": "Sonic & Knuckles Collection", + "url": "/v1/games/sonic-knuckles-collection" + }, { "slug": "sonic-sega-all-stars-racing", "name": "Sonic & Sega All-Stars Racing", "url": "/v1/games/sonic-sega-all-stars-racing" }, + { + "slug": "sonic-2-in-1", + "name": "Sonic 2 in 1", + "url": "/v1/games/sonic-2-in-1" + }, { "slug": "sonic-3-knuckles", "name": "Sonic 3 & Knuckles", @@ -646616,6 +661856,11 @@ "name": "Sonic Chronicles: The Dark Brotherhood", "url": "/v1/games/sonic-chronicles-the-dark-brotherhood" }, + { + "slug": "sonic-classic-collection", + "name": "Sonic Classic Collection", + "url": "/v1/games/sonic-classic-collection" + }, { "slug": "sonic-colors-q116312711", "name": "Sonic Colors", @@ -646631,6 +661876,11 @@ "name": "Sonic Colors: Ultimate", "url": "/v1/games/sonic-colors-ultimate" }, + { + "slug": "sonic-compilation", + "name": "Sonic Compilation", + "url": "/v1/games/sonic-compilation" + }, { "slug": "sonic-crackers", "name": "Sonic Crackers", @@ -646651,11 +661901,21 @@ "name": "Sonic Dash Extreme", "url": "/v1/games/sonic-dash-extreme" }, + { + "slug": "sonic-dash-q111516771", + "name": "Sonic Dash+", + "url": "/v1/games/sonic-dash-q111516771" + }, { "slug": "sonic-dream-team", "name": "Sonic Dream Team", "url": "/v1/games/sonic-dream-team" }, + { + "slug": "sonic-dreams-collection", + "name": "Sonic Dreams Collection", + "url": "/v1/games/sonic-dreams-collection" + }, { "slug": "sonic-drift", "name": "Sonic Drift", @@ -646676,6 +661936,11 @@ "name": "Sonic Eraser", "url": "/v1/games/sonic-eraser" }, + { + "slug": "sonic-extreme", + "name": "Sonic Extreme", + "url": "/v1/games/sonic-extreme" + }, { "slug": "sonic-forces", "name": "Sonic Forces", @@ -646701,6 +661966,11 @@ "name": "Sonic GT", "url": "/v1/games/sonic-gt" }, + { + "slug": "sonic-gems-collection", + "name": "Sonic Gems Collection", + "url": "/v1/games/sonic-gems-collection" + }, { "slug": "sonic-generations-q106921080", "name": "Sonic Generations", @@ -646716,11 +661986,26 @@ "name": "Sonic Generations (console/PC)", "url": "/v1/games/sonic-generations-console-pc" }, + { + "slug": "sonic-generations-casino-night-pinball", + "name": "Sonic Generations ‘Casino Night’ Pinball", + "url": "/v1/games/sonic-generations-casino-night-pinball" + }, + { + "slug": "sonic-hits-collection", + "name": "Sonic Hits Collection", + "url": "/v1/games/sonic-hits-collection" + }, { "slug": "sonic-hunter-vr", "name": "Sonic Hunter VR", "url": "/v1/games/sonic-hunter-vr" }, + { + "slug": "sonic-jam", + "name": "Sonic Jam", + "url": "/v1/games/sonic-jam" + }, { "slug": "sonic-jump-q104696176", "name": "Sonic Jump", @@ -646766,11 +662051,26 @@ "name": "Sonic Mania Plus", "url": "/v1/games/sonic-mania-plus" }, + { + "slug": "sonic-mega-collection", + "name": "Sonic Mega Collection", + "url": "/v1/games/sonic-mega-collection" + }, + { + "slug": "sonic-mega-collection-plus", + "name": "Sonic Mega Collection Plus", + "url": "/v1/games/sonic-mega-collection-plus" + }, { "slug": "sonic-omens", "name": "Sonic Omens", "url": "/v1/games/sonic-omens" }, + { + "slug": "sonic-origins", + "name": "Sonic Origins", + "url": "/v1/games/sonic-origins" + }, { "slug": "sonic-origins-plus", "name": "Sonic Origins Plus", @@ -646781,6 +662081,11 @@ "name": "Sonic P-06", "url": "/v1/games/sonic-p-06" }, + { + "slug": "sonic-pc-collection", + "name": "Sonic PC Collection", + "url": "/v1/games/sonic-pc-collection" + }, { "slug": "sonic-pinball-party", "name": "Sonic Pinball Party", @@ -646861,11 +662166,21 @@ "name": "Sonic Rush Adventure", "url": "/v1/games/sonic-rush-adventure" }, + { + "slug": "sonic-saturn", + "name": "Sonic Saturn", + "url": "/v1/games/sonic-saturn" + }, { "slug": "sonic-shuffle", "name": "Sonic Shuffle", "url": "/v1/games/sonic-shuffle" }, + { + "slug": "sonic-speed-simulator", + "name": "Sonic Speed Simulator", + "url": "/v1/games/sonic-speed-simulator" + }, { "slug": "sonic-suggests", "name": "Sonic Suggests", @@ -646911,6 +662226,11 @@ "name": "Sonic Wings Special", "url": "/v1/games/sonic-wings-special" }, + { + "slug": "sonic-world", + "name": "Sonic World", + "url": "/v1/games/sonic-world" + }, { "slug": "sonic-x-shadow-generations", "name": "Sonic X Shadow Generations", @@ -647011,6 +662331,11 @@ "name": "Sonic the Hedgehog 4: Episode II", "url": "/v1/games/sonic-the-hedgehog-4-episode-ii" }, + { + "slug": "sonic-the-hedgehog-4-episode-iii", + "name": "Sonic the Hedgehog 4: Episode III", + "url": "/v1/games/sonic-the-hedgehog-4-episode-iii" + }, { "slug": "sonic-the-hedgehog-cd", "name": "Sonic the Hedgehog CD", @@ -647046,6 +662371,11 @@ "name": "Sonic's Schoolhouse", "url": "/v1/games/sonic-s-schoolhouse" }, + { + "slug": "sonic-s-ultimate-genesis-collection", + "name": "Sonic's Ultimate Genesis Collection", + "url": "/v1/games/sonic-s-ultimate-genesis-collection" + }, { "slug": "sonicn", "name": "SonicN", @@ -648081,6 +663411,16 @@ "name": "Soul Gambler", "url": "/v1/games/soul-gambler" }, + { + "slug": "soul-gambler-artbook-soundtrack", + "name": "Soul Gambler: Artbook & Soundtrack", + "url": "/v1/games/soul-gambler-artbook-soundtrack" + }, + { + "slug": "soul-gambler-dark-arts-edition", + "name": "Soul Gambler: Dark Arts Edition", + "url": "/v1/games/soul-gambler-dark-arts-edition" + }, { "slug": "soul-gather", "name": "Soul Gather", @@ -648276,6 +663616,11 @@ "name": "Soul Sacrifice: Delta", "url": "/v1/games/soul-sacrifice-delta" }, + { + "slug": "soul-sacrifice-2", + "name": "Soul Sacrifice 2", + "url": "/v1/games/soul-sacrifice-2" + }, { "slug": "soul-sader", "name": "Soul Sader", @@ -649261,6 +664606,11 @@ "name": "Soundscape VR: 2017", "url": "/v1/games/soundscape-vr-2017" }, + { + "slug": "soundtrack-and-wallpaper-bonus-pack", + "name": "Soundtrack and Wallpaper Bonus Pack", + "url": "/v1/games/soundtrack-and-wallpaper-bonus-pack" + }, { "slug": "soundward-the-lost-signal", "name": "Soundward: The Lost Signal", @@ -649316,6 +664666,11 @@ "name": "Source Code", "url": "/v1/games/source-code" }, + { + "slug": "source-multiplayer-pack", + "name": "Source Multiplayer Pack", + "url": "/v1/games/source-multiplayer-pack" + }, { "slug": "source-of-light", "name": "Source of Light", @@ -651241,6 +666596,11 @@ "name": "Space Invaders Infinity Gene", "url": "/v1/games/space-invaders-infinity-gene" }, + { + "slug": "space-invaders-invincible-collection", + "name": "Space Invaders Invincible Collection", + "url": "/v1/games/space-invaders-invincible-collection" + }, { "slug": "space-invaders-part-ii", "name": "Space Invaders Part II", @@ -652016,6 +667376,11 @@ "name": "Space Raft", "url": "/v1/games/space-raft" }, + { + "slug": "space-raiders", + "name": "Space Raiders", + "url": "/v1/games/space-raiders" + }, { "slug": "space-raiders-rpg", "name": "Space Raiders RPG", @@ -652051,6 +667416,11 @@ "name": "Space Rangers", "url": "/v1/games/space-rangers" }, + { + "slug": "space-rangers-2-reboot", + "name": "Space Rangers 2: Reboot", + "url": "/v1/games/space-rangers-2-reboot" + }, { "slug": "space-rangers-2-rise-of-the-dominators", "name": "Space Rangers 2: Rise of the Dominators", @@ -652671,6 +668041,11 @@ "name": "Space Tail: Every Journey Leads Home", "url": "/v1/games/space-tail-every-journey-leads-home" }, + { + "slug": "space-tail-every-journey-leads-home-ultimate-edition", + "name": "Space Tail: Every Journey Leads Home Ultimate Edition", + "url": "/v1/games/space-tail-every-journey-leads-home-ultimate-edition" + }, { "slug": "space-tail-lost-in-the-sands", "name": "Space Tail: Lost in the Sands", @@ -652916,6 +668291,11 @@ "name": "Space War / Space Wars", "url": "/v1/games/space-war-space-wars" }, + { + "slug": "space-war-2000", + "name": "Space War 2000", + "url": "/v1/games/space-war-2000" + }, { "slug": "space-war-attack", "name": "Space War Attack", @@ -654001,6 +669381,11 @@ "name": "Spades: Card Game", "url": "/v1/games/spades-card-game" }, + { + "slug": "spades-card-game-q110453652", + "name": "Spades: Card Game+", + "url": "/v1/games/spades-card-game-q110453652" + }, { "slug": "spadyssey", "name": "Spadyssey", @@ -654596,6 +669981,16 @@ "name": "Spear of Destiny", "url": "/v1/games/spear-of-destiny" }, + { + "slug": "spear-of-destiny-mission-2-return-to-danger", + "name": "Spear of Destiny: Mission 2 Return to Danger", + "url": "/v1/games/spear-of-destiny-mission-2-return-to-danger" + }, + { + "slug": "spear-of-destiny-mission-3-ultimate-challenge", + "name": "Spear of Destiny: Mission 3: Ultimate Challenge", + "url": "/v1/games/spear-of-destiny-mission-3-ultimate-challenge" + }, { "slug": "spearfrog", "name": "SpearFrog", @@ -654771,11 +670166,21 @@ "name": "Special Operations Unit - SIGNAL FORCES", "url": "/v1/games/special-operations-unit-signal-forces" }, + { + "slug": "special-ops-vehicle-pack", + "name": "Special Ops Vehicle Pack", + "url": "/v1/games/special-ops-vehicle-pack" + }, { "slug": "special-ops-operation-assault", "name": "Special Ops: Operation Assault", "url": "/v1/games/special-ops-operation-assault" }, + { + "slug": "special-permit-the-expansion-pack-for-cabela-s-big-game-hunter", + "name": "Special Permit: The Expansion Pack for Cabela's Big Game Hunter", + "url": "/v1/games/special-permit-the-expansion-pack-for-cabela-s-big-game-hunter" + }, { "slug": "special-tactics", "name": "Special Tactics", @@ -654786,6 +670191,11 @@ "name": "Special squad versus zombies", "url": "/v1/games/special-squad-versus-zombies" }, + { + "slug": "special-s-forces", + "name": "Special\"S\"Forces", + "url": "/v1/games/special-s-forces" + }, { "slug": "species-artificial-life-real-evolution", "name": "Species: Artificial Life, Real Evolution", @@ -655991,6 +671401,11 @@ "name": "SpellChain", "url": "/v1/games/spellchain" }, + { + "slug": "spellforce-2-demons-of-the-past", + "name": "SpellForce 2: Demons of the Past", + "url": "/v1/games/spellforce-2-demons-of-the-past" + }, { "slug": "spellforce-2-shadow-wars", "name": "SpellForce 2: Shadow Wars", @@ -656001,6 +671416,11 @@ "name": "SpellForce 3", "url": "/v1/games/spellforce-3" }, + { + "slug": "spellforce-3-fallen-god", + "name": "SpellForce 3: Fallen God", + "url": "/v1/games/spellforce-3-fallen-god" + }, { "slug": "spellforce-3-soul-harvest", "name": "SpellForce 3: Soul Harvest", @@ -656016,11 +671436,26 @@ "name": "SpellForce III Reforced", "url": "/v1/games/spellforce-iii-reforced" }, + { + "slug": "spellforce-iii-reforced-complete-edition", + "name": "SpellForce III Reforced: Complete Edition", + "url": "/v1/games/spellforce-iii-reforced-complete-edition" + }, { "slug": "spellforce-conquest-of-eo", "name": "SpellForce: Conquest of Eo", "url": "/v1/games/spellforce-conquest-of-eo" }, + { + "slug": "spellforce-shadow-of-the-phoenix", + "name": "SpellForce: Shadow of the Phoenix", + "url": "/v1/games/spellforce-shadow-of-the-phoenix" + }, + { + "slug": "spellforce-the-breath-of-winter", + "name": "SpellForce: The Breath of Winter", + "url": "/v1/games/spellforce-the-breath-of-winter" + }, { "slug": "spellforce-the-order-of-dawn", "name": "SpellForce: The Order of Dawn", @@ -656096,6 +671531,11 @@ "name": "SpellTower", "url": "/v1/games/spelltower" }, + { + "slug": "spelltower-q107539541", + "name": "SpellTower+", + "url": "/v1/games/spelltower-q107539541" + }, { "slug": "spellwheel", "name": "SpellWheel", @@ -656336,6 +671776,11 @@ "name": "Spellcasting 301: Spring Break", "url": "/v1/games/spellcasting-301-spring-break" }, + { + "slug": "spellcasting-collection", + "name": "Spellcasting Collection", + "url": "/v1/games/spellcasting-collection" + }, { "slug": "spellcats-auto-card-tactics", "name": "Spellcats: Auto Card Tactics", @@ -656416,6 +671861,21 @@ "name": "Spellforce 2: Anniversary Edition", "url": "/v1/games/spellforce-2-anniversary-edition" }, + { + "slug": "spellforce-2-dragon-storm", + "name": "Spellforce 2: Dragon Storm", + "url": "/v1/games/spellforce-2-dragon-storm" + }, + { + "slug": "spellforce-2-faith-in-destiny", + "name": "Spellforce 2: Faith in Destiny", + "url": "/v1/games/spellforce-2-faith-in-destiny" + }, + { + "slug": "spellforce-conquest-of-eo-children-of-nor", + "name": "Spellforce: Conquest of Eo - Children of Nor", + "url": "/v1/games/spellforce-conquest-of-eo-children-of-nor" + }, { "slug": "spellforge", "name": "Spellforge", @@ -656561,6 +672021,11 @@ "name": "Spellsided", "url": "/v1/games/spellsided" }, + { + "slug": "spellsinger", + "name": "Spellsinger", + "url": "/v1/games/spellsinger" + }, { "slug": "spellslayer", "name": "Spellslayer", @@ -656946,6 +672411,11 @@ "name": "Spheroid", "url": "/v1/games/spheroid" }, + { + "slug": "spheroid-demo", + "name": "Spheroid Demo", + "url": "/v1/games/spheroid-demo" + }, { "slug": "spheroids-q126187996", "name": "Spheroids", @@ -657166,6 +672636,11 @@ "name": "Spider Solitaire Online", "url": "/v1/games/spider-solitaire-online" }, + { + "slug": "spider-solitaire-card-game", + "name": "Spider Solitaire: Card Game+", + "url": "/v1/games/spider-solitaire-card-game" + }, { "slug": "spider-wars", "name": "Spider Wars", @@ -657326,6 +672801,11 @@ "name": "Spider-Man: Shattered Dimensions", "url": "/v1/games/spider-man-shattered-dimensions" }, + { + "slug": "spider-man-the-city-that-never-sleeps", + "name": "Spider-Man: The City That Never Sleeps", + "url": "/v1/games/spider-man-the-city-that-never-sleeps" + }, { "slug": "spider-man-the-video-game", "name": "Spider-Man: The Video Game", @@ -657596,6 +673076,11 @@ "name": "Spin Jam", "url": "/v1/games/spin-jam" }, + { + "slug": "spin-n-sauce", + "name": "Spin N' Sauce", + "url": "/v1/games/spin-n-sauce" + }, { "slug": "spin-out", "name": "Spin Out", @@ -658146,6 +673631,11 @@ "name": "Spirit Realm Saga", "url": "/v1/games/spirit-realm-saga" }, + { + "slug": "spirit-riding-free-ride-along-adventure", + "name": "Spirit Riding Free: Ride Along Adventure", + "url": "/v1/games/spirit-riding-free-ride-along-adventure" + }, { "slug": "spirit-roots", "name": "Spirit Roots", @@ -658616,6 +674106,11 @@ "name": "Spitfire Ace", "url": "/v1/games/spitfire-ace" }, + { + "slug": "spitfire-epsom-campaign", + "name": "Spitfire: Epsom Campaign", + "url": "/v1/games/spitfire-epsom-campaign" + }, { "slug": "spitkiss", "name": "Spitkiss", @@ -658806,11 +674301,21 @@ "name": "Splatoon 2", "url": "/v1/games/splatoon-2" }, + { + "slug": "splatoon-2-octo-expansion", + "name": "Splatoon 2: Octo Expansion", + "url": "/v1/games/splatoon-2-octo-expansion" + }, { "slug": "splatoon-3", "name": "Splatoon 3", "url": "/v1/games/splatoon-3" }, + { + "slug": "splatoon-3-side-order", + "name": "Splatoon 3: Side Order", + "url": "/v1/games/splatoon-3-side-order" + }, { "slug": "splatoon-raiders", "name": "Splatoon Raiders", @@ -658866,6 +674371,11 @@ "name": "Splatterpus", "url": "/v1/games/splatterpus" }, + { + "slug": "spleef", + "name": "Spleef", + "url": "/v1/games/spleef" + }, { "slug": "spleef-game", "name": "Spleef Game", @@ -658896,6 +674406,11 @@ "name": "Splinter", "url": "/v1/games/splinter" }, + { + "slug": "splinter-cell-trilogy", + "name": "Splinter Cell Trilogy", + "url": "/v1/games/splinter-cell-trilogy" + }, { "slug": "splinter-colony", "name": "Splinter Colony", @@ -659036,6 +674551,11 @@ "name": "Splitter Critters", "url": "/v1/games/splitter-critters" }, + { + "slug": "splitter-critters-q109562484", + "name": "Splitter Critters+", + "url": "/v1/games/splitter-critters-q109562484" + }, { "slug": "splittown", "name": "Splittown", @@ -659551,6 +675071,11 @@ "name": "Spooky Shooter 3D", "url": "/v1/games/spooky-shooter-3d" }, + { + "slug": "spooky-shot", + "name": "Spooky Shot", + "url": "/v1/games/spooky-shot" + }, { "slug": "spooky-speakeasy", "name": "Spooky Speakeasy", @@ -659676,11 +675201,41 @@ "name": "Spore", "url": "/v1/games/spore" }, + { + "slug": "spore-bot-parts-pack", + "name": "Spore Bot Parts Pack", + "url": "/v1/games/spore-bot-parts-pack" + }, + { + "slug": "spore-complete-pack", + "name": "Spore Complete Pack", + "url": "/v1/games/spore-complete-pack" + }, + { + "slug": "spore-creature-creator", + "name": "Spore Creature Creator", + "url": "/v1/games/spore-creature-creator" + }, + { + "slug": "spore-creature-keeper", + "name": "Spore Creature Keeper", + "url": "/v1/games/spore-creature-keeper" + }, { "slug": "spore-creatures", "name": "Spore Creatures", "url": "/v1/games/spore-creatures" }, + { + "slug": "spore-galactic-adventures", + "name": "Spore Galactic Adventures", + "url": "/v1/games/spore-galactic-adventures" + }, + { + "slug": "spore-galactic-edition", + "name": "Spore Galactic Edition", + "url": "/v1/games/spore-galactic-edition" + }, { "slug": "spore-hero", "name": "Spore Hero", @@ -659701,6 +675256,11 @@ "name": "Spore Valley", "url": "/v1/games/spore-valley" }, + { + "slug": "spore-creepy-cute", + "name": "Spore: Creepy & Cute", + "url": "/v1/games/spore-creepy-cute" + }, { "slug": "sporebloom-mycelium-master", "name": "SporeBloom: Mycelium Master", @@ -659846,6 +675406,11 @@ "name": "Sports City Tycoon", "url": "/v1/games/sports-city-tycoon" }, + { + "slug": "sports-collection-q7579711", + "name": "Sports Collection", + "url": "/v1/games/sports-collection-q7579711" + }, { "slug": "sports-collection", "name": "Sports Collection", @@ -660656,6 +676221,11 @@ "name": "Spy Hunter", "url": "/v1/games/spy-hunter-q1788165" }, + { + "slug": "spy-hunter-q3967325", + "name": "Spy Hunter", + "url": "/v1/games/spy-hunter-q3967325" + }, { "slug": "spy-hunter", "name": "Spy Hunter", @@ -660666,6 +676236,11 @@ "name": "Spy Hunter II", "url": "/v1/games/spy-hunter-ii" }, + { + "slug": "spy-hunter-nowhere-to-run", + "name": "Spy Hunter: Nowhere to Run", + "url": "/v1/games/spy-hunter-nowhere-to-run" + }, { "slug": "spy-kids-3d-game-over", "name": "Spy Kids 3D: Game Over", @@ -660771,6 +676346,11 @@ "name": "SpyHunter 2", "url": "/v1/games/spyhunter-2" }, + { + "slug": "spyhunter-nowhere-to-run-terrorist-takedown-3", + "name": "SpyHunter: Nowhere to Run / Terrorist Takedown 3", + "url": "/v1/games/spyhunter-nowhere-to-run-terrorist-takedown-3" + }, { "slug": "spylens-sex-in-focus", "name": "SpyLens: Sex in focus", @@ -663626,6 +679206,11 @@ "name": "Star Rangers", "url": "/v1/games/star-rangers" }, + { + "slug": "star-rangers-vr-free-demo", + "name": "Star Rangers VR - Free Demo", + "url": "/v1/games/star-rangers-vr-free-demo" + }, { "slug": "star-rangers-xe", "name": "Star Rangers™ XE", @@ -664111,6 +679696,11 @@ "name": "Star Trek Trexels", "url": "/v1/games/star-trek-trexels" }, + { + "slug": "star-trek-v-the-final-frontier-q90573432", + "name": "Star Trek V: The Final Frontier", + "url": "/v1/games/star-trek-v-the-final-frontier-q90573432" + }, { "slug": "star-trek-v-the-final-frontier", "name": "Star Trek V: The Final Frontier", @@ -664191,6 +679781,11 @@ "name": "Star Trek: Elite Force II", "url": "/v1/games/star-trek-elite-force-ii" }, + { + "slug": "star-trek-first-contact-q78326985", + "name": "Star Trek: First Contact", + "url": "/v1/games/star-trek-first-contact-q78326985" + }, { "slug": "star-trek-first-contact", "name": "Star Trek: First Contact", @@ -664206,6 +679801,11 @@ "name": "Star Trek: Infinite", "url": "/v1/games/star-trek-infinite" }, + { + "slug": "star-trek-infinite-designing-the-galaxy", + "name": "Star Trek: Infinite – Designing the Galaxy", + "url": "/v1/games/star-trek-infinite-designing-the-galaxy" + }, { "slug": "star-trek-judgment-rites", "name": "Star Trek: Judgment Rites", @@ -664331,6 +679931,11 @@ "name": "Star Trek: The Next Generation", "url": "/v1/games/star-trek-the-next-generation" }, + { + "slug": "star-trek-the-next-generation-interactive-vcr-board-game-a-klingon-challenge", + "name": "Star Trek: The Next Generation Interactive VCR Board Game – A Klingon Challenge", + "url": "/v1/games/star-trek-the-next-generation-interactive-vcr-board-game-a-klingon-challenge" + }, { "slug": "star-trek-the-next-generation-trivia", "name": "Star Trek: The Next Generation Trivia", @@ -664476,6 +680081,11 @@ "name": "Star Wars - The Old Republic: Legacy of the Sith", "url": "/v1/games/star-wars-the-old-republic-legacy-of-the-sith" }, + { + "slug": "star-wars-1313", + "name": "Star Wars 1313", + "url": "/v1/games/star-wars-1313" + }, { "slug": "star-wars-arcade", "name": "Star Wars Arcade", @@ -664486,6 +680096,11 @@ "name": "Star Wars Battle Pod", "url": "/v1/games/star-wars-battle-pod" }, + { + "slug": "star-wars-battlefront", + "name": "Star Wars Battlefront", + "url": "/v1/games/star-wars-battlefront" + }, { "slug": "star-wars-battlefront-ii-q29154231", "name": "Star Wars Battlefront II", @@ -664556,6 +680171,26 @@ "name": "Star Wars Galaxies", "url": "/v1/games/star-wars-galaxies" }, + { + "slug": "star-wars-galaxies-episode-iii-rage-of-the-wookiees", + "name": "Star Wars Galaxies: Episode III Rage of the Wookiees", + "url": "/v1/games/star-wars-galaxies-episode-iii-rage-of-the-wookiees" + }, + { + "slug": "star-wars-galaxies-jump-to-lightspeed", + "name": "Star Wars Galaxies: Jump to Lightspeed", + "url": "/v1/games/star-wars-galaxies-jump-to-lightspeed" + }, + { + "slug": "star-wars-galaxies-the-complete-online-adventures", + "name": "Star Wars Galaxies: The Complete Online Adventures", + "url": "/v1/games/star-wars-galaxies-the-complete-online-adventures" + }, + { + "slug": "star-wars-galaxies-trials-of-obi-wan", + "name": "Star Wars Galaxies: Trials of Obi-Wan", + "url": "/v1/games/star-wars-galaxies-trials-of-obi-wan" + }, { "slug": "star-wars-jedi-knight-2-lady-jedi", "name": "Star Wars Jedi Knight 2: Lady Jedi", @@ -664576,6 +680211,11 @@ "name": "Star Wars Jedi Knight: Jedi Academy", "url": "/v1/games/star-wars-jedi-knight-jedi-academy" }, + { + "slug": "star-wars-jedi-knight-mysteries-of-the-sith", + "name": "Star Wars Jedi Knight: Mysteries of the Sith", + "url": "/v1/games/star-wars-jedi-knight-mysteries-of-the-sith" + }, { "slug": "star-wars-jedi-fallen-order", "name": "Star Wars Jedi: Fallen Order", @@ -664626,6 +680266,11 @@ "name": "Star Wars Racer Revenge", "url": "/v1/games/star-wars-racer-revenge" }, + { + "slug": "star-wars-rebel-assault-ii-the-hidden-empire-rebel-assault", + "name": "Star Wars Rebel Assault II: The Hidden Empire / Rebel Assault", + "url": "/v1/games/star-wars-rebel-assault-ii-the-hidden-empire-rebel-assault" + }, { "slug": "star-wars-rogue-squadron-ii-rogue-leader", "name": "Star Wars Rogue Squadron II: Rogue Leader", @@ -664651,6 +680296,11 @@ "name": "Star Wars Trilogy: Apprentice of the Force", "url": "/v1/games/star-wars-trilogy-apprentice-of-the-force" }, + { + "slug": "star-wars-x-wing-tour-of-duty-imperial-pursuit", + "name": "Star Wars X-Wing: Tour of Duty – Imperial Pursuit", + "url": "/v1/games/star-wars-x-wing-tour-of-duty-imperial-pursuit" + }, { "slug": "star-wars-anakin-s-speedway-build-and-drive", "name": "Star Wars: Anakin's Speedway - Build and Drive", @@ -664661,11 +680311,26 @@ "name": "Star Wars: Attack on the Death Star", "url": "/v1/games/star-wars-attack-on-the-death-star" }, + { + "slug": "star-wars-battle-of-the-sith-lords", + "name": "Star Wars: Battle of the Sith Lords", + "url": "/v1/games/star-wars-battle-of-the-sith-lords" + }, + { + "slug": "star-wars-battlefront-classic-collection", + "name": "Star Wars: Battlefront Classic Collection", + "url": "/v1/games/star-wars-battlefront-classic-collection" + }, { "slug": "star-wars-battlefront-ii", "name": "Star Wars: Battlefront II", "url": "/v1/games/star-wars-battlefront-ii" }, + { + "slug": "star-wars-battlefront-iii", + "name": "Star Wars: Battlefront III", + "url": "/v1/games/star-wars-battlefront-iii" + }, { "slug": "star-wars-behind-the-magic", "name": "Star Wars: Behind the Magic", @@ -664721,6 +680386,11 @@ "name": "Star Wars: Empire at War", "url": "/v1/games/star-wars-empire-at-war" }, + { + "slug": "star-wars-empire-at-war-forces-of-corruption", + "name": "Star Wars: Empire at War: Forces of Corruption", + "url": "/v1/games/star-wars-empire-at-war-forces-of-corruption" + }, { "slug": "star-wars-episode-i-the-phantom-menace", "name": "Star Wars: Episode I – The Phantom Menace", @@ -664771,6 +680441,11 @@ "name": "Star Wars: Galactic Battlegrounds Saga", "url": "/v1/games/star-wars-galactic-battlegrounds-saga" }, + { + "slug": "star-wars-galactic-battlegrounds-clone-campaigns", + "name": "Star Wars: Galactic Battlegrounds: Clone Campaigns", + "url": "/v1/games/star-wars-galactic-battlegrounds-clone-campaigns" + }, { "slug": "star-wars-galactic-defense", "name": "Star Wars: Galactic Defense", @@ -664891,6 +680566,11 @@ "name": "Star Wars: Return of the Jedi - Death Star Battle", "url": "/v1/games/star-wars-return-of-the-jedi-death-star-battle" }, + { + "slug": "star-wars-return-of-the-jedi-ewok-adventure", + "name": "Star Wars: Return of the Jedi: Ewok Adventure", + "url": "/v1/games/star-wars-return-of-the-jedi-ewok-adventure" + }, { "slug": "star-wars-rise-to-power", "name": "Star Wars: Rise to Power", @@ -664926,11 +680606,21 @@ "name": "Star Wars: TIE Fighter", "url": "/v1/games/star-wars-tie-fighter" }, + { + "slug": "star-wars-tie-fighter-collector-s-cd-rom", + "name": "Star Wars: TIE Fighter - Collector's CD-ROM", + "url": "/v1/games/star-wars-tie-fighter-collector-s-cd-rom" + }, { "slug": "star-wars-tie-fighter-enemies-of-the-empire", "name": "Star Wars: TIE Fighter - Enemies of the Empire", "url": "/v1/games/star-wars-tie-fighter-enemies-of-the-empire" }, + { + "slug": "star-wars-tie-fighter-special-edition", + "name": "Star Wars: TIE Fighter - Special Edition", + "url": "/v1/games/star-wars-tie-fighter-special-edition" + }, { "slug": "star-wars-tie-fighter-defender-of-the-empire", "name": "Star Wars: TIE Fighter: Defender of the Empire", @@ -664991,11 +680681,21 @@ "name": "Star Wars: The Force Unleashed", "url": "/v1/games/star-wars-the-force-unleashed" }, + { + "slug": "star-wars-the-force-unleashed-ultimate-sith-edition", + "name": "Star Wars: The Force Unleashed - Ultimate Sith Edition", + "url": "/v1/games/star-wars-the-force-unleashed-ultimate-sith-edition" + }, { "slug": "star-wars-the-force-unleashed-ii", "name": "Star Wars: The Force Unleashed II", "url": "/v1/games/star-wars-the-force-unleashed-ii" }, + { + "slug": "star-wars-the-interactive-video-board-game", + "name": "Star Wars: The Interactive Video Board Game", + "url": "/v1/games/star-wars-the-interactive-video-board-game" + }, { "slug": "star-wars-the-new-droid-army", "name": "Star Wars: The New Droid Army", @@ -665006,6 +680706,41 @@ "name": "Star Wars: The Old Republic", "url": "/v1/games/star-wars-the-old-republic" }, + { + "slug": "star-wars-the-old-republic-galactic-starfighter", + "name": "Star Wars: The Old Republic: Galactic Starfighter", + "url": "/v1/games/star-wars-the-old-republic-galactic-starfighter" + }, + { + "slug": "star-wars-the-old-republic-galactic-strongholds", + "name": "Star Wars: The Old Republic: Galactic Strongholds", + "url": "/v1/games/star-wars-the-old-republic-galactic-strongholds" + }, + { + "slug": "star-wars-the-old-republic-knights-of-the-eternal-throne", + "name": "Star Wars: The Old Republic: Knights of the Eternal Throne", + "url": "/v1/games/star-wars-the-old-republic-knights-of-the-eternal-throne" + }, + { + "slug": "star-wars-the-old-republic-knights-of-the-fallen-empire", + "name": "Star Wars: The Old Republic: Knights of the Fallen Empire", + "url": "/v1/games/star-wars-the-old-republic-knights-of-the-fallen-empire" + }, + { + "slug": "star-wars-the-old-republic-onslaught", + "name": "Star Wars: The Old Republic: Onslaught", + "url": "/v1/games/star-wars-the-old-republic-onslaught" + }, + { + "slug": "star-wars-the-old-republic-rise-of-the-hutt-cartel", + "name": "Star Wars: The Old Republic: Rise of the Hutt Cartel", + "url": "/v1/games/star-wars-the-old-republic-rise-of-the-hutt-cartel" + }, + { + "slug": "star-wars-the-old-republic-shadow-of-revan", + "name": "Star Wars: The Old Republic: Shadow of Revan", + "url": "/v1/games/star-wars-the-old-republic-shadow-of-revan" + }, { "slug": "star-wars-tiny-death-star", "name": "Star Wars: Tiny Death Star", @@ -665021,6 +680756,11 @@ "name": "Star Wars: Uprising", "url": "/v1/games/star-wars-uprising" }, + { + "slug": "star-wars-x-wing-collector-series", + "name": "Star Wars: X-Wing - Collector Series", + "url": "/v1/games/star-wars-x-wing-collector-series" + }, { "slug": "star-wars-x-wing-trilogy", "name": "Star Wars: X-Wing - Trilogy", @@ -665036,6 +680776,16 @@ "name": "Star Wars: X-Wing vs. TIE Fighter", "url": "/v1/games/star-wars-x-wing-vs-tie-fighter" }, + { + "slug": "star-wars-x-wing-vs-tie-fighter-balance-of-power", + "name": "Star Wars: X-Wing vs. TIE Fighter - Balance of Power", + "url": "/v1/games/star-wars-x-wing-vs-tie-fighter-balance-of-power" + }, + { + "slug": "star-wars-x-wing-vs-tie-fighter-balance-of-power-campaigns", + "name": "Star Wars: X-Wing vs. TIE Fighter - Balance of Power Campaigns", + "url": "/v1/games/star-wars-x-wing-vs-tie-fighter-balance-of-power-campaigns" + }, { "slug": "star-wars-x-wing-vs-tie-fighter-flight-school", "name": "Star Wars: X-Wing vs. TIE Fighter - Flight School", @@ -665086,6 +680836,11 @@ "name": "Star Wolves 2", "url": "/v1/games/star-wolves-2" }, + { + "slug": "star-wolves-3-ashes-of-victory", + "name": "Star Wolves 3: Ashes of Victory", + "url": "/v1/games/star-wolves-3-ashes-of-victory" + }, { "slug": "star-wolves-3-civil-war", "name": "Star Wolves 3: Civil War", @@ -665096,6 +680851,11 @@ "name": "Star Words - The Board Game", "url": "/v1/games/star-words-the-board-game" }, + { + "slug": "star-worlds-arcade", + "name": "Star Worlds Arcade", + "url": "/v1/games/star-worlds-arcade" + }, { "slug": "star-wraith", "name": "Star Wraith", @@ -665246,16 +681006,46 @@ "name": "StarCore Legacy", "url": "/v1/games/starcore-legacy" }, + { + "slug": "starcraft", + "name": "StarCraft", + "url": "/v1/games/starcraft" + }, { "slug": "starcraft-adventures", "name": "StarCraft Adventures", "url": "/v1/games/starcraft-adventures" }, + { + "slug": "starcraft-ii-heart-of-the-swarm", + "name": "StarCraft II: Heart of the Swarm", + "url": "/v1/games/starcraft-ii-heart-of-the-swarm" + }, + { + "slug": "starcraft-brood-war", + "name": "StarCraft: Brood War", + "url": "/v1/games/starcraft-brood-war" + }, + { + "slug": "starcraft-ghost", + "name": "StarCraft: Ghost", + "url": "/v1/games/starcraft-ghost" + }, + { + "slug": "starcraft-insurrection", + "name": "StarCraft: Insurrection", + "url": "/v1/games/starcraft-insurrection" + }, { "slug": "starcraft-remastered", "name": "StarCraft: Remastered", "url": "/v1/games/starcraft-remastered" }, + { + "slug": "starcraft-retribution", + "name": "StarCraft: Retribution", + "url": "/v1/games/starcraft-retribution" + }, { "slug": "starcrawlers", "name": "StarCrawlers", @@ -665611,6 +681401,11 @@ "name": "Starblaze", "url": "/v1/games/starblaze" }, + { + "slug": "starblazer-q105703007", + "name": "Starblazer", + "url": "/v1/games/starblazer-q105703007" + }, { "slug": "starblazer", "name": "Starblazer", @@ -665786,6 +681581,11 @@ "name": "Stardew Valley Character Creator", "url": "/v1/games/stardew-valley-character-creator" }, + { + "slug": "stardew-valley-q122704284", + "name": "Stardew Valley+", + "url": "/v1/games/stardew-valley-q122704284" + }, { "slug": "stardiver", "name": "Stardiver", @@ -665966,6 +681766,26 @@ "name": "Starfield Battlegrounds", "url": "/v1/games/starfield-battlegrounds" }, + { + "slug": "starfield-constellation-edition", + "name": "Starfield Constellation Edition", + "url": "/v1/games/starfield-constellation-edition" + }, + { + "slug": "starfield-premium-edition", + "name": "Starfield Premium Edition", + "url": "/v1/games/starfield-premium-edition" + }, + { + "slug": "starfield-standard-edition", + "name": "Starfield Standard Edition", + "url": "/v1/games/starfield-standard-edition" + }, + { + "slug": "starfield-shattered-space", + "name": "Starfield: Shattered Space", + "url": "/v1/games/starfield-shattered-space" + }, { "slug": "starfighter", "name": "Starfighter", @@ -666096,11 +681916,21 @@ "name": "Stargate Network", "url": "/v1/games/stargate-network" }, + { + "slug": "stargate-sg-1-the-alliance", + "name": "Stargate SG-1: The Alliance", + "url": "/v1/games/stargate-sg-1-the-alliance" + }, { "slug": "stargate-sg-1-unleashed", "name": "Stargate SG-1: Unleashed", "url": "/v1/games/stargate-sg-1-unleashed" }, + { + "slug": "stargate-worlds", + "name": "Stargate Worlds", + "url": "/v1/games/stargate-worlds" + }, { "slug": "stargate-resistance", "name": "Stargate: Resistance", @@ -666571,6 +682401,1006 @@ "name": "Starry Moon Island 2", "url": "/v1/games/starry-moon-island-2" }, + { + "slug": "starry-moon-island-2-break-out-mp01", + "name": "Starry Moon Island 2 Break Out MP01", + "url": "/v1/games/starry-moon-island-2-break-out-mp01" + }, + { + "slug": "starry-moon-island-2-break-out-mp02", + "name": "Starry Moon Island 2 Break Out MP02", + "url": "/v1/games/starry-moon-island-2-break-out-mp02" + }, + { + "slug": "starry-moon-island-2-break-out-mp03", + "name": "Starry Moon Island 2 Break Out MP03", + "url": "/v1/games/starry-moon-island-2-break-out-mp03" + }, + { + "slug": "starry-moon-island-2-break-out-mp04", + "name": "Starry Moon Island 2 Break Out MP04", + "url": "/v1/games/starry-moon-island-2-break-out-mp04" + }, + { + "slug": "starry-moon-island-2-break-out-mp05", + "name": "Starry Moon Island 2 Break Out MP05", + "url": "/v1/games/starry-moon-island-2-break-out-mp05" + }, + { + "slug": "starry-moon-island-2-break-out-mp06", + "name": "Starry Moon Island 2 Break Out MP06", + "url": "/v1/games/starry-moon-island-2-break-out-mp06" + }, + { + "slug": "starry-moon-island-2-break-out-mp07", + "name": "Starry Moon Island 2 Break Out MP07", + "url": "/v1/games/starry-moon-island-2-break-out-mp07" + }, + { + "slug": "starry-moon-island-2-break-out-mp08", + "name": "Starry Moon Island 2 Break Out MP08", + "url": "/v1/games/starry-moon-island-2-break-out-mp08" + }, + { + "slug": "starry-moon-island-2-break-out-mp09", + "name": "Starry Moon Island 2 Break Out MP09", + "url": "/v1/games/starry-moon-island-2-break-out-mp09" + }, + { + "slug": "starry-moon-island-2-break-out-mp10", + "name": "Starry Moon Island 2 Break Out MP10", + "url": "/v1/games/starry-moon-island-2-break-out-mp10" + }, + { + "slug": "starry-moon-island-2-cannon-war-mp01", + "name": "Starry Moon Island 2 Cannon War MP01", + "url": "/v1/games/starry-moon-island-2-cannon-war-mp01" + }, + { + "slug": "starry-moon-island-2-cannon-war-mp02", + "name": "Starry Moon Island 2 Cannon War MP02", + "url": "/v1/games/starry-moon-island-2-cannon-war-mp02" + }, + { + "slug": "starry-moon-island-2-cannon-war-mp03", + "name": "Starry Moon Island 2 Cannon War MP03", + "url": "/v1/games/starry-moon-island-2-cannon-war-mp03" + }, + { + "slug": "starry-moon-island-2-cannon-war-mp04", + "name": "Starry Moon Island 2 Cannon War MP04", + "url": "/v1/games/starry-moon-island-2-cannon-war-mp04" + }, + { + "slug": "starry-moon-island-2-cannon-war-mp05", + "name": "Starry Moon Island 2 Cannon War MP05", + "url": "/v1/games/starry-moon-island-2-cannon-war-mp05" + }, + { + "slug": "starry-moon-island-2-cannon-war-mp06", + "name": "Starry Moon Island 2 Cannon War MP06", + "url": "/v1/games/starry-moon-island-2-cannon-war-mp06" + }, + { + "slug": "starry-moon-island-2-cannon-war-mp07", + "name": "Starry Moon Island 2 Cannon War MP07", + "url": "/v1/games/starry-moon-island-2-cannon-war-mp07" + }, + { + "slug": "starry-moon-island-2-cannon-war-mp08", + "name": "Starry Moon Island 2 Cannon War MP08", + "url": "/v1/games/starry-moon-island-2-cannon-war-mp08" + }, + { + "slug": "starry-moon-island-2-cannon-war-mp09", + "name": "Starry Moon Island 2 Cannon War MP09", + "url": "/v1/games/starry-moon-island-2-cannon-war-mp09" + }, + { + "slug": "starry-moon-island-2-cannon-war-mp10", + "name": "Starry Moon Island 2 Cannon War MP10", + "url": "/v1/games/starry-moon-island-2-cannon-war-mp10" + }, + { + "slug": "starry-moon-island-2-cannonade-mp01", + "name": "Starry Moon Island 2 Cannonade MP01", + "url": "/v1/games/starry-moon-island-2-cannonade-mp01" + }, + { + "slug": "starry-moon-island-2-cannonade-mp02", + "name": "Starry Moon Island 2 Cannonade MP02", + "url": "/v1/games/starry-moon-island-2-cannonade-mp02" + }, + { + "slug": "starry-moon-island-2-cannonade-mp03", + "name": "Starry Moon Island 2 Cannonade MP03", + "url": "/v1/games/starry-moon-island-2-cannonade-mp03" + }, + { + "slug": "starry-moon-island-2-cannonade-mp04", + "name": "Starry Moon Island 2 Cannonade MP04", + "url": "/v1/games/starry-moon-island-2-cannonade-mp04" + }, + { + "slug": "starry-moon-island-2-cannonade-mp05", + "name": "Starry Moon Island 2 Cannonade MP05", + "url": "/v1/games/starry-moon-island-2-cannonade-mp05" + }, + { + "slug": "starry-moon-island-2-cannonade-mp06", + "name": "Starry Moon Island 2 Cannonade MP06", + "url": "/v1/games/starry-moon-island-2-cannonade-mp06" + }, + { + "slug": "starry-moon-island-2-cannonade-mp07", + "name": "Starry Moon Island 2 Cannonade MP07", + "url": "/v1/games/starry-moon-island-2-cannonade-mp07" + }, + { + "slug": "starry-moon-island-2-cannonade-mp08", + "name": "Starry Moon Island 2 Cannonade MP08", + "url": "/v1/games/starry-moon-island-2-cannonade-mp08" + }, + { + "slug": "starry-moon-island-2-cannonade-mp09", + "name": "Starry Moon Island 2 Cannonade MP09", + "url": "/v1/games/starry-moon-island-2-cannonade-mp09" + }, + { + "slug": "starry-moon-island-2-cannonade-mp10", + "name": "Starry Moon Island 2 Cannonade MP10", + "url": "/v1/games/starry-moon-island-2-cannonade-mp10" + }, + { + "slug": "starry-moon-island-2-dna-war-mp01", + "name": "Starry Moon Island 2 DNA War MP01", + "url": "/v1/games/starry-moon-island-2-dna-war-mp01" + }, + { + "slug": "starry-moon-island-2-dna-war-mp02", + "name": "Starry Moon Island 2 DNA War MP02", + "url": "/v1/games/starry-moon-island-2-dna-war-mp02" + }, + { + "slug": "starry-moon-island-2-dna-war-mp03", + "name": "Starry Moon Island 2 DNA War MP03", + "url": "/v1/games/starry-moon-island-2-dna-war-mp03" + }, + { + "slug": "starry-moon-island-2-dna-war-mp04", + "name": "Starry Moon Island 2 DNA War MP04", + "url": "/v1/games/starry-moon-island-2-dna-war-mp04" + }, + { + "slug": "starry-moon-island-2-dna-war-mp05", + "name": "Starry Moon Island 2 DNA War MP05", + "url": "/v1/games/starry-moon-island-2-dna-war-mp05" + }, + { + "slug": "starry-moon-island-2-dna-war-mp06", + "name": "Starry Moon Island 2 DNA War MP06", + "url": "/v1/games/starry-moon-island-2-dna-war-mp06" + }, + { + "slug": "starry-moon-island-2-dna-war-mp07", + "name": "Starry Moon Island 2 DNA War MP07", + "url": "/v1/games/starry-moon-island-2-dna-war-mp07" + }, + { + "slug": "starry-moon-island-2-dna-war-mp08", + "name": "Starry Moon Island 2 DNA War MP08", + "url": "/v1/games/starry-moon-island-2-dna-war-mp08" + }, + { + "slug": "starry-moon-island-2-dna-war-mp09", + "name": "Starry Moon Island 2 DNA War MP09", + "url": "/v1/games/starry-moon-island-2-dna-war-mp09" + }, + { + "slug": "starry-moon-island-2-dna-war-mp10", + "name": "Starry Moon Island 2 DNA War MP10", + "url": "/v1/games/starry-moon-island-2-dna-war-mp10" + }, + { + "slug": "starry-moon-island-2-mobile-stronghold-mp01", + "name": "Starry Moon Island 2 Mobile Stronghold MP01", + "url": "/v1/games/starry-moon-island-2-mobile-stronghold-mp01" + }, + { + "slug": "starry-moon-island-2-mobile-stronghold-mp02", + "name": "Starry Moon Island 2 Mobile Stronghold MP02", + "url": "/v1/games/starry-moon-island-2-mobile-stronghold-mp02" + }, + { + "slug": "starry-moon-island-2-mobile-stronghold-mp03", + "name": "Starry Moon Island 2 Mobile Stronghold MP03", + "url": "/v1/games/starry-moon-island-2-mobile-stronghold-mp03" + }, + { + "slug": "starry-moon-island-2-mobile-stronghold-mp04", + "name": "Starry Moon Island 2 Mobile Stronghold MP04", + "url": "/v1/games/starry-moon-island-2-mobile-stronghold-mp04" + }, + { + "slug": "starry-moon-island-2-mobile-stronghold-mp05", + "name": "Starry Moon Island 2 Mobile Stronghold MP05", + "url": "/v1/games/starry-moon-island-2-mobile-stronghold-mp05" + }, + { + "slug": "starry-moon-island-2-mobile-stronghold-mp06", + "name": "Starry Moon Island 2 Mobile Stronghold MP06", + "url": "/v1/games/starry-moon-island-2-mobile-stronghold-mp06" + }, + { + "slug": "starry-moon-island-2-mobile-stronghold-mp07", + "name": "Starry Moon Island 2 Mobile Stronghold MP07", + "url": "/v1/games/starry-moon-island-2-mobile-stronghold-mp07" + }, + { + "slug": "starry-moon-island-2-mobile-stronghold-mp08", + "name": "Starry Moon Island 2 Mobile Stronghold MP08", + "url": "/v1/games/starry-moon-island-2-mobile-stronghold-mp08" + }, + { + "slug": "starry-moon-island-2-mobile-stronghold-mp09", + "name": "Starry Moon Island 2 Mobile Stronghold MP09", + "url": "/v1/games/starry-moon-island-2-mobile-stronghold-mp09" + }, + { + "slug": "starry-moon-island-2-mobile-stronghold-mp10", + "name": "Starry Moon Island 2 Mobile Stronghold MP10", + "url": "/v1/games/starry-moon-island-2-mobile-stronghold-mp10" + }, + { + "slug": "starry-moon-island-2-out-of-control-mp01", + "name": "Starry Moon Island 2 Out Of Control MP01", + "url": "/v1/games/starry-moon-island-2-out-of-control-mp01" + }, + { + "slug": "starry-moon-island-2-out-of-control-mp02", + "name": "Starry Moon Island 2 Out Of Control MP02", + "url": "/v1/games/starry-moon-island-2-out-of-control-mp02" + }, + { + "slug": "starry-moon-island-2-out-of-control-mp03", + "name": "Starry Moon Island 2 Out Of Control MP03", + "url": "/v1/games/starry-moon-island-2-out-of-control-mp03" + }, + { + "slug": "starry-moon-island-2-out-of-control-mp04", + "name": "Starry Moon Island 2 Out Of Control MP04", + "url": "/v1/games/starry-moon-island-2-out-of-control-mp04" + }, + { + "slug": "starry-moon-island-2-out-of-control-mp05", + "name": "Starry Moon Island 2 Out Of Control MP05", + "url": "/v1/games/starry-moon-island-2-out-of-control-mp05" + }, + { + "slug": "starry-moon-island-2-out-of-control-mp06", + "name": "Starry Moon Island 2 Out Of Control MP06", + "url": "/v1/games/starry-moon-island-2-out-of-control-mp06" + }, + { + "slug": "starry-moon-island-2-out-of-control-mp07", + "name": "Starry Moon Island 2 Out Of Control MP07", + "url": "/v1/games/starry-moon-island-2-out-of-control-mp07" + }, + { + "slug": "starry-moon-island-2-out-of-control-mp08", + "name": "Starry Moon Island 2 Out Of Control MP08", + "url": "/v1/games/starry-moon-island-2-out-of-control-mp08" + }, + { + "slug": "starry-moon-island-2-out-of-control-mp09", + "name": "Starry Moon Island 2 Out Of Control MP09", + "url": "/v1/games/starry-moon-island-2-out-of-control-mp09" + }, + { + "slug": "starry-moon-island-2-out-of-control-mp10", + "name": "Starry Moon Island 2 Out Of Control MP10", + "url": "/v1/games/starry-moon-island-2-out-of-control-mp10" + }, + { + "slug": "starry-moon-island-2-perimeter-mp01", + "name": "Starry Moon Island 2 Perimeter MP01", + "url": "/v1/games/starry-moon-island-2-perimeter-mp01" + }, + { + "slug": "starry-moon-island-2-perimeter-mp02", + "name": "Starry Moon Island 2 Perimeter MP02", + "url": "/v1/games/starry-moon-island-2-perimeter-mp02" + }, + { + "slug": "starry-moon-island-2-perimeter-mp03", + "name": "Starry Moon Island 2 Perimeter MP03", + "url": "/v1/games/starry-moon-island-2-perimeter-mp03" + }, + { + "slug": "starry-moon-island-2-perimeter-mp04", + "name": "Starry Moon Island 2 Perimeter MP04", + "url": "/v1/games/starry-moon-island-2-perimeter-mp04" + }, + { + "slug": "starry-moon-island-2-perimeter-mp05", + "name": "Starry Moon Island 2 Perimeter MP05", + "url": "/v1/games/starry-moon-island-2-perimeter-mp05" + }, + { + "slug": "starry-moon-island-2-perimeter-mp06", + "name": "Starry Moon Island 2 Perimeter MP06", + "url": "/v1/games/starry-moon-island-2-perimeter-mp06" + }, + { + "slug": "starry-moon-island-2-perimeter-mp07", + "name": "Starry Moon Island 2 Perimeter MP07", + "url": "/v1/games/starry-moon-island-2-perimeter-mp07" + }, + { + "slug": "starry-moon-island-2-perimeter-mp08", + "name": "Starry Moon Island 2 Perimeter MP08", + "url": "/v1/games/starry-moon-island-2-perimeter-mp08" + }, + { + "slug": "starry-moon-island-2-perimeter-mp09", + "name": "Starry Moon Island 2 Perimeter MP09", + "url": "/v1/games/starry-moon-island-2-perimeter-mp09" + }, + { + "slug": "starry-moon-island-2-perimeter-mp10", + "name": "Starry Moon Island 2 Perimeter MP10", + "url": "/v1/games/starry-moon-island-2-perimeter-mp10" + }, + { + "slug": "starry-moon-island-2-red-snake-mp01", + "name": "Starry Moon Island 2 Red Snake MP01", + "url": "/v1/games/starry-moon-island-2-red-snake-mp01" + }, + { + "slug": "starry-moon-island-2-red-snake-mp02", + "name": "Starry Moon Island 2 Red Snake MP02", + "url": "/v1/games/starry-moon-island-2-red-snake-mp02" + }, + { + "slug": "starry-moon-island-2-red-snake-mp03", + "name": "Starry Moon Island 2 Red Snake MP03", + "url": "/v1/games/starry-moon-island-2-red-snake-mp03" + }, + { + "slug": "starry-moon-island-2-red-snake-mp04", + "name": "Starry Moon Island 2 Red Snake MP04", + "url": "/v1/games/starry-moon-island-2-red-snake-mp04" + }, + { + "slug": "starry-moon-island-2-red-snake-mp05", + "name": "Starry Moon Island 2 Red Snake MP05", + "url": "/v1/games/starry-moon-island-2-red-snake-mp05" + }, + { + "slug": "starry-moon-island-2-red-snake-mp06", + "name": "Starry Moon Island 2 Red Snake MP06", + "url": "/v1/games/starry-moon-island-2-red-snake-mp06" + }, + { + "slug": "starry-moon-island-2-red-snake-mp07", + "name": "Starry Moon Island 2 Red Snake MP07", + "url": "/v1/games/starry-moon-island-2-red-snake-mp07" + }, + { + "slug": "starry-moon-island-2-red-snake-mp08", + "name": "Starry Moon Island 2 Red Snake MP08", + "url": "/v1/games/starry-moon-island-2-red-snake-mp08" + }, + { + "slug": "starry-moon-island-2-red-snake-mp09", + "name": "Starry Moon Island 2 Red Snake MP09", + "url": "/v1/games/starry-moon-island-2-red-snake-mp09" + }, + { + "slug": "starry-moon-island-2-red-snake-mp10", + "name": "Starry Moon Island 2 Red Snake MP10", + "url": "/v1/games/starry-moon-island-2-red-snake-mp10" + }, + { + "slug": "starry-moon-island-2-star-ocean-mp01", + "name": "Starry Moon Island 2 Star Ocean MP01", + "url": "/v1/games/starry-moon-island-2-star-ocean-mp01" + }, + { + "slug": "starry-moon-island-2-star-ocean-mp02", + "name": "Starry Moon Island 2 Star Ocean MP02", + "url": "/v1/games/starry-moon-island-2-star-ocean-mp02" + }, + { + "slug": "starry-moon-island-2-star-ocean-mp03", + "name": "Starry Moon Island 2 Star Ocean MP03", + "url": "/v1/games/starry-moon-island-2-star-ocean-mp03" + }, + { + "slug": "starry-moon-island-2-star-ocean-mp04", + "name": "Starry Moon Island 2 Star Ocean MP04", + "url": "/v1/games/starry-moon-island-2-star-ocean-mp04" + }, + { + "slug": "starry-moon-island-2-star-ocean-mp05", + "name": "Starry Moon Island 2 Star Ocean MP05", + "url": "/v1/games/starry-moon-island-2-star-ocean-mp05" + }, + { + "slug": "starry-moon-island-2-star-ocean-mp06", + "name": "Starry Moon Island 2 Star Ocean MP06", + "url": "/v1/games/starry-moon-island-2-star-ocean-mp06" + }, + { + "slug": "starry-moon-island-2-star-ocean-mp07", + "name": "Starry Moon Island 2 Star Ocean MP07", + "url": "/v1/games/starry-moon-island-2-star-ocean-mp07" + }, + { + "slug": "starry-moon-island-2-star-ocean-mp08", + "name": "Starry Moon Island 2 Star Ocean MP08", + "url": "/v1/games/starry-moon-island-2-star-ocean-mp08" + }, + { + "slug": "starry-moon-island-2-star-ocean-mp09", + "name": "Starry Moon Island 2 Star Ocean MP09", + "url": "/v1/games/starry-moon-island-2-star-ocean-mp09" + }, + { + "slug": "starry-moon-island-2-star-ocean-mp10", + "name": "Starry Moon Island 2 Star Ocean MP10", + "url": "/v1/games/starry-moon-island-2-star-ocean-mp10" + }, + { + "slug": "starry-moon-island-2-tank-advance-mp01", + "name": "Starry Moon Island 2 Tank Advance MP01", + "url": "/v1/games/starry-moon-island-2-tank-advance-mp01" + }, + { + "slug": "starry-moon-island-2-tank-advance-mp02", + "name": "Starry Moon Island 2 Tank Advance MP02", + "url": "/v1/games/starry-moon-island-2-tank-advance-mp02" + }, + { + "slug": "starry-moon-island-2-tank-advance-mp03", + "name": "Starry Moon Island 2 Tank Advance MP03", + "url": "/v1/games/starry-moon-island-2-tank-advance-mp03" + }, + { + "slug": "starry-moon-island-2-tank-advance-mp04", + "name": "Starry Moon Island 2 Tank Advance MP04", + "url": "/v1/games/starry-moon-island-2-tank-advance-mp04" + }, + { + "slug": "starry-moon-island-2-tank-advance-mp05", + "name": "Starry Moon Island 2 Tank Advance MP05", + "url": "/v1/games/starry-moon-island-2-tank-advance-mp05" + }, + { + "slug": "starry-moon-island-2-tank-advance-mp06", + "name": "Starry Moon Island 2 Tank Advance MP06", + "url": "/v1/games/starry-moon-island-2-tank-advance-mp06" + }, + { + "slug": "starry-moon-island-2-tank-advance-mp07", + "name": "Starry Moon Island 2 Tank Advance MP07", + "url": "/v1/games/starry-moon-island-2-tank-advance-mp07" + }, + { + "slug": "starry-moon-island-2-tank-advance-mp08", + "name": "Starry Moon Island 2 Tank Advance MP08", + "url": "/v1/games/starry-moon-island-2-tank-advance-mp08" + }, + { + "slug": "starry-moon-island-2-tank-advance-mp09", + "name": "Starry Moon Island 2 Tank Advance MP09", + "url": "/v1/games/starry-moon-island-2-tank-advance-mp09" + }, + { + "slug": "starry-moon-island-2-tank-advance-mp10", + "name": "Starry Moon Island 2 Tank Advance MP10", + "url": "/v1/games/starry-moon-island-2-tank-advance-mp10" + }, + { + "slug": "starry-moon-island-break-out-mp01", + "name": "Starry Moon Island Break Out MP01", + "url": "/v1/games/starry-moon-island-break-out-mp01" + }, + { + "slug": "starry-moon-island-break-out-mp02", + "name": "Starry Moon Island Break Out MP02", + "url": "/v1/games/starry-moon-island-break-out-mp02" + }, + { + "slug": "starry-moon-island-break-out-mp03", + "name": "Starry Moon Island Break Out MP03", + "url": "/v1/games/starry-moon-island-break-out-mp03" + }, + { + "slug": "starry-moon-island-break-out-mp04", + "name": "Starry Moon Island Break Out MP04", + "url": "/v1/games/starry-moon-island-break-out-mp04" + }, + { + "slug": "starry-moon-island-break-out-mp05", + "name": "Starry Moon Island Break Out MP05", + "url": "/v1/games/starry-moon-island-break-out-mp05" + }, + { + "slug": "starry-moon-island-break-out-mp06", + "name": "Starry Moon Island Break Out MP06", + "url": "/v1/games/starry-moon-island-break-out-mp06" + }, + { + "slug": "starry-moon-island-break-out-mp07", + "name": "Starry Moon Island Break Out MP07", + "url": "/v1/games/starry-moon-island-break-out-mp07" + }, + { + "slug": "starry-moon-island-break-out-mp08", + "name": "Starry Moon Island Break Out MP08", + "url": "/v1/games/starry-moon-island-break-out-mp08" + }, + { + "slug": "starry-moon-island-break-out-mp09", + "name": "Starry Moon Island Break Out MP09", + "url": "/v1/games/starry-moon-island-break-out-mp09" + }, + { + "slug": "starry-moon-island-break-out-mp10", + "name": "Starry Moon Island Break Out MP10", + "url": "/v1/games/starry-moon-island-break-out-mp10" + }, + { + "slug": "starry-moon-island-cannon-war-mp01", + "name": "Starry Moon Island Cannon War MP01", + "url": "/v1/games/starry-moon-island-cannon-war-mp01" + }, + { + "slug": "starry-moon-island-cannon-war-mp02", + "name": "Starry Moon Island Cannon War MP02", + "url": "/v1/games/starry-moon-island-cannon-war-mp02" + }, + { + "slug": "starry-moon-island-cannon-war-mp03", + "name": "Starry Moon Island Cannon War MP03", + "url": "/v1/games/starry-moon-island-cannon-war-mp03" + }, + { + "slug": "starry-moon-island-cannon-war-mp04", + "name": "Starry Moon Island Cannon War MP04", + "url": "/v1/games/starry-moon-island-cannon-war-mp04" + }, + { + "slug": "starry-moon-island-cannon-war-mp05", + "name": "Starry Moon Island Cannon War MP05", + "url": "/v1/games/starry-moon-island-cannon-war-mp05" + }, + { + "slug": "starry-moon-island-cannon-war-mp06", + "name": "Starry Moon Island Cannon War MP06", + "url": "/v1/games/starry-moon-island-cannon-war-mp06" + }, + { + "slug": "starry-moon-island-cannon-war-mp07", + "name": "Starry Moon Island Cannon War MP07", + "url": "/v1/games/starry-moon-island-cannon-war-mp07" + }, + { + "slug": "starry-moon-island-cannon-war-mp08", + "name": "Starry Moon Island Cannon War MP08", + "url": "/v1/games/starry-moon-island-cannon-war-mp08" + }, + { + "slug": "starry-moon-island-cannon-war-mp09", + "name": "Starry Moon Island Cannon War MP09", + "url": "/v1/games/starry-moon-island-cannon-war-mp09" + }, + { + "slug": "starry-moon-island-cannon-war-mp10", + "name": "Starry Moon Island Cannon War MP10", + "url": "/v1/games/starry-moon-island-cannon-war-mp10" + }, + { + "slug": "starry-moon-island-cannonade-mp01", + "name": "Starry Moon Island Cannonade MP01", + "url": "/v1/games/starry-moon-island-cannonade-mp01" + }, + { + "slug": "starry-moon-island-cannonade-mp02", + "name": "Starry Moon Island Cannonade MP02", + "url": "/v1/games/starry-moon-island-cannonade-mp02" + }, + { + "slug": "starry-moon-island-cannonade-mp03", + "name": "Starry Moon Island Cannonade MP03", + "url": "/v1/games/starry-moon-island-cannonade-mp03" + }, + { + "slug": "starry-moon-island-cannonade-mp04", + "name": "Starry Moon Island Cannonade MP04", + "url": "/v1/games/starry-moon-island-cannonade-mp04" + }, + { + "slug": "starry-moon-island-cannonade-mp05", + "name": "Starry Moon Island Cannonade MP05", + "url": "/v1/games/starry-moon-island-cannonade-mp05" + }, + { + "slug": "starry-moon-island-cannonade-mp06", + "name": "Starry Moon Island Cannonade MP06", + "url": "/v1/games/starry-moon-island-cannonade-mp06" + }, + { + "slug": "starry-moon-island-cannonade-mp07", + "name": "Starry Moon Island Cannonade MP07", + "url": "/v1/games/starry-moon-island-cannonade-mp07" + }, + { + "slug": "starry-moon-island-cannonade-mp08", + "name": "Starry Moon Island Cannonade MP08", + "url": "/v1/games/starry-moon-island-cannonade-mp08" + }, + { + "slug": "starry-moon-island-cannonade-mp09", + "name": "Starry Moon Island Cannonade MP09", + "url": "/v1/games/starry-moon-island-cannonade-mp09" + }, + { + "slug": "starry-moon-island-cannonade-mp10", + "name": "Starry Moon Island Cannonade MP10", + "url": "/v1/games/starry-moon-island-cannonade-mp10" + }, + { + "slug": "starry-moon-island-dna-war-mp01", + "name": "Starry Moon Island DNA War MP01", + "url": "/v1/games/starry-moon-island-dna-war-mp01" + }, + { + "slug": "starry-moon-island-dna-war-mp02", + "name": "Starry Moon Island DNA War MP02", + "url": "/v1/games/starry-moon-island-dna-war-mp02" + }, + { + "slug": "starry-moon-island-dna-war-mp03", + "name": "Starry Moon Island DNA War MP03", + "url": "/v1/games/starry-moon-island-dna-war-mp03" + }, + { + "slug": "starry-moon-island-dna-war-mp04", + "name": "Starry Moon Island DNA War MP04", + "url": "/v1/games/starry-moon-island-dna-war-mp04" + }, + { + "slug": "starry-moon-island-dna-war-mp05", + "name": "Starry Moon Island DNA War MP05", + "url": "/v1/games/starry-moon-island-dna-war-mp05" + }, + { + "slug": "starry-moon-island-dna-war-mp06", + "name": "Starry Moon Island DNA War MP06", + "url": "/v1/games/starry-moon-island-dna-war-mp06" + }, + { + "slug": "starry-moon-island-dna-war-mp07", + "name": "Starry Moon Island DNA War MP07", + "url": "/v1/games/starry-moon-island-dna-war-mp07" + }, + { + "slug": "starry-moon-island-dna-war-mp08", + "name": "Starry Moon Island DNA War MP08", + "url": "/v1/games/starry-moon-island-dna-war-mp08" + }, + { + "slug": "starry-moon-island-dna-war-mp09", + "name": "Starry Moon Island DNA War MP09", + "url": "/v1/games/starry-moon-island-dna-war-mp09" + }, + { + "slug": "starry-moon-island-dna-war-mp10", + "name": "Starry Moon Island DNA War MP10", + "url": "/v1/games/starry-moon-island-dna-war-mp10" + }, + { + "slug": "starry-moon-island-mobile-stronghold-mp01", + "name": "Starry Moon Island Mobile Stronghold MP01", + "url": "/v1/games/starry-moon-island-mobile-stronghold-mp01" + }, + { + "slug": "starry-moon-island-mobile-stronghold-mp02", + "name": "Starry Moon Island Mobile Stronghold MP02", + "url": "/v1/games/starry-moon-island-mobile-stronghold-mp02" + }, + { + "slug": "starry-moon-island-mobile-stronghold-mp03", + "name": "Starry Moon Island Mobile Stronghold MP03", + "url": "/v1/games/starry-moon-island-mobile-stronghold-mp03" + }, + { + "slug": "starry-moon-island-mobile-stronghold-mp04", + "name": "Starry Moon Island Mobile Stronghold MP04", + "url": "/v1/games/starry-moon-island-mobile-stronghold-mp04" + }, + { + "slug": "starry-moon-island-mobile-stronghold-mp05", + "name": "Starry Moon Island Mobile Stronghold MP05", + "url": "/v1/games/starry-moon-island-mobile-stronghold-mp05" + }, + { + "slug": "starry-moon-island-mobile-stronghold-mp06", + "name": "Starry Moon Island Mobile Stronghold MP06", + "url": "/v1/games/starry-moon-island-mobile-stronghold-mp06" + }, + { + "slug": "starry-moon-island-mobile-stronghold-mp07", + "name": "Starry Moon Island Mobile Stronghold MP07", + "url": "/v1/games/starry-moon-island-mobile-stronghold-mp07" + }, + { + "slug": "starry-moon-island-mobile-stronghold-mp08", + "name": "Starry Moon Island Mobile Stronghold MP08", + "url": "/v1/games/starry-moon-island-mobile-stronghold-mp08" + }, + { + "slug": "starry-moon-island-mobile-stronghold-mp09", + "name": "Starry Moon Island Mobile Stronghold MP09", + "url": "/v1/games/starry-moon-island-mobile-stronghold-mp09" + }, + { + "slug": "starry-moon-island-mobile-stronghold-mp10", + "name": "Starry Moon Island Mobile Stronghold MP10", + "url": "/v1/games/starry-moon-island-mobile-stronghold-mp10" + }, + { + "slug": "starry-moon-island-out-of-control-mp01", + "name": "Starry Moon Island Out Of Control MP01", + "url": "/v1/games/starry-moon-island-out-of-control-mp01" + }, + { + "slug": "starry-moon-island-out-of-control-mp02", + "name": "Starry Moon Island Out Of Control MP02", + "url": "/v1/games/starry-moon-island-out-of-control-mp02" + }, + { + "slug": "starry-moon-island-out-of-control-mp03", + "name": "Starry Moon Island Out Of Control MP03", + "url": "/v1/games/starry-moon-island-out-of-control-mp03" + }, + { + "slug": "starry-moon-island-out-of-control-mp04", + "name": "Starry Moon Island Out Of Control MP04", + "url": "/v1/games/starry-moon-island-out-of-control-mp04" + }, + { + "slug": "starry-moon-island-out-of-control-mp05", + "name": "Starry Moon Island Out Of Control MP05", + "url": "/v1/games/starry-moon-island-out-of-control-mp05" + }, + { + "slug": "starry-moon-island-out-of-control-mp06", + "name": "Starry Moon Island Out Of Control MP06", + "url": "/v1/games/starry-moon-island-out-of-control-mp06" + }, + { + "slug": "starry-moon-island-out-of-control-mp07", + "name": "Starry Moon Island Out Of Control MP07", + "url": "/v1/games/starry-moon-island-out-of-control-mp07" + }, + { + "slug": "starry-moon-island-out-of-control-mp08", + "name": "Starry Moon Island Out Of Control MP08", + "url": "/v1/games/starry-moon-island-out-of-control-mp08" + }, + { + "slug": "starry-moon-island-out-of-control-mp09", + "name": "Starry Moon Island Out Of Control MP09", + "url": "/v1/games/starry-moon-island-out-of-control-mp09" + }, + { + "slug": "starry-moon-island-out-of-control-mp10", + "name": "Starry Moon Island Out Of Control MP10", + "url": "/v1/games/starry-moon-island-out-of-control-mp10" + }, + { + "slug": "starry-moon-island-perimeter-mp01", + "name": "Starry Moon Island Perimeter MP01", + "url": "/v1/games/starry-moon-island-perimeter-mp01" + }, + { + "slug": "starry-moon-island-perimeter-mp02", + "name": "Starry Moon Island Perimeter MP02", + "url": "/v1/games/starry-moon-island-perimeter-mp02" + }, + { + "slug": "starry-moon-island-perimeter-mp03", + "name": "Starry Moon Island Perimeter MP03", + "url": "/v1/games/starry-moon-island-perimeter-mp03" + }, + { + "slug": "starry-moon-island-perimeter-mp04", + "name": "Starry Moon Island Perimeter MP04", + "url": "/v1/games/starry-moon-island-perimeter-mp04" + }, + { + "slug": "starry-moon-island-perimeter-mp05", + "name": "Starry Moon Island Perimeter MP05", + "url": "/v1/games/starry-moon-island-perimeter-mp05" + }, + { + "slug": "starry-moon-island-perimeter-mp06", + "name": "Starry Moon Island Perimeter MP06", + "url": "/v1/games/starry-moon-island-perimeter-mp06" + }, + { + "slug": "starry-moon-island-perimeter-mp07", + "name": "Starry Moon Island Perimeter MP07", + "url": "/v1/games/starry-moon-island-perimeter-mp07" + }, + { + "slug": "starry-moon-island-perimeter-mp08", + "name": "Starry Moon Island Perimeter MP08", + "url": "/v1/games/starry-moon-island-perimeter-mp08" + }, + { + "slug": "starry-moon-island-perimeter-mp09", + "name": "Starry Moon Island Perimeter MP09", + "url": "/v1/games/starry-moon-island-perimeter-mp09" + }, + { + "slug": "starry-moon-island-perimeter-mp10", + "name": "Starry Moon Island Perimeter MP10", + "url": "/v1/games/starry-moon-island-perimeter-mp10" + }, + { + "slug": "starry-moon-island-red-snake-mp01", + "name": "Starry Moon Island Red Snake MP01", + "url": "/v1/games/starry-moon-island-red-snake-mp01" + }, + { + "slug": "starry-moon-island-red-snake-mp02", + "name": "Starry Moon Island Red Snake MP02", + "url": "/v1/games/starry-moon-island-red-snake-mp02" + }, + { + "slug": "starry-moon-island-red-snake-mp03", + "name": "Starry Moon Island Red Snake MP03", + "url": "/v1/games/starry-moon-island-red-snake-mp03" + }, + { + "slug": "starry-moon-island-red-snake-mp04", + "name": "Starry Moon Island Red Snake MP04", + "url": "/v1/games/starry-moon-island-red-snake-mp04" + }, + { + "slug": "starry-moon-island-red-snake-mp05", + "name": "Starry Moon Island Red Snake MP05", + "url": "/v1/games/starry-moon-island-red-snake-mp05" + }, + { + "slug": "starry-moon-island-red-snake-mp06", + "name": "Starry Moon Island Red Snake MP06", + "url": "/v1/games/starry-moon-island-red-snake-mp06" + }, + { + "slug": "starry-moon-island-red-snake-mp07", + "name": "Starry Moon Island Red Snake MP07", + "url": "/v1/games/starry-moon-island-red-snake-mp07" + }, + { + "slug": "starry-moon-island-red-snake-mp08", + "name": "Starry Moon Island Red Snake MP08", + "url": "/v1/games/starry-moon-island-red-snake-mp08" + }, + { + "slug": "starry-moon-island-red-snake-mp09", + "name": "Starry Moon Island Red Snake MP09", + "url": "/v1/games/starry-moon-island-red-snake-mp09" + }, + { + "slug": "starry-moon-island-red-snake-mp10", + "name": "Starry Moon Island Red Snake MP10", + "url": "/v1/games/starry-moon-island-red-snake-mp10" + }, + { + "slug": "starry-moon-island-star-ocean-mp01", + "name": "Starry Moon Island Star Ocean MP01", + "url": "/v1/games/starry-moon-island-star-ocean-mp01" + }, + { + "slug": "starry-moon-island-star-ocean-mp02", + "name": "Starry Moon Island Star Ocean MP02", + "url": "/v1/games/starry-moon-island-star-ocean-mp02" + }, + { + "slug": "starry-moon-island-star-ocean-mp03", + "name": "Starry Moon Island Star Ocean MP03", + "url": "/v1/games/starry-moon-island-star-ocean-mp03" + }, + { + "slug": "starry-moon-island-star-ocean-mp04", + "name": "Starry Moon Island Star Ocean MP04", + "url": "/v1/games/starry-moon-island-star-ocean-mp04" + }, + { + "slug": "starry-moon-island-star-ocean-mp05", + "name": "Starry Moon Island Star Ocean MP05", + "url": "/v1/games/starry-moon-island-star-ocean-mp05" + }, + { + "slug": "starry-moon-island-star-ocean-mp06", + "name": "Starry Moon Island Star Ocean MP06", + "url": "/v1/games/starry-moon-island-star-ocean-mp06" + }, + { + "slug": "starry-moon-island-star-ocean-mp07", + "name": "Starry Moon Island Star Ocean MP07", + "url": "/v1/games/starry-moon-island-star-ocean-mp07" + }, + { + "slug": "starry-moon-island-star-ocean-mp08", + "name": "Starry Moon Island Star Ocean MP08", + "url": "/v1/games/starry-moon-island-star-ocean-mp08" + }, + { + "slug": "starry-moon-island-star-ocean-mp09", + "name": "Starry Moon Island Star Ocean MP09", + "url": "/v1/games/starry-moon-island-star-ocean-mp09" + }, + { + "slug": "starry-moon-island-star-ocean-mp10", + "name": "Starry Moon Island Star Ocean MP10", + "url": "/v1/games/starry-moon-island-star-ocean-mp10" + }, + { + "slug": "starry-moon-island-tank-advance-mp01", + "name": "Starry Moon Island Tank Advance MP01", + "url": "/v1/games/starry-moon-island-tank-advance-mp01" + }, + { + "slug": "starry-moon-island-tank-advance-mp02", + "name": "Starry Moon Island Tank Advance MP02", + "url": "/v1/games/starry-moon-island-tank-advance-mp02" + }, + { + "slug": "starry-moon-island-tank-advance-mp03", + "name": "Starry Moon Island Tank Advance MP03", + "url": "/v1/games/starry-moon-island-tank-advance-mp03" + }, + { + "slug": "starry-moon-island-tank-advance-mp04", + "name": "Starry Moon Island Tank Advance MP04", + "url": "/v1/games/starry-moon-island-tank-advance-mp04" + }, + { + "slug": "starry-moon-island-tank-advance-mp05", + "name": "Starry Moon Island Tank Advance MP05", + "url": "/v1/games/starry-moon-island-tank-advance-mp05" + }, + { + "slug": "starry-moon-island-tank-advance-mp06", + "name": "Starry Moon Island Tank Advance MP06", + "url": "/v1/games/starry-moon-island-tank-advance-mp06" + }, + { + "slug": "starry-moon-island-tank-advance-mp07", + "name": "Starry Moon Island Tank Advance MP07", + "url": "/v1/games/starry-moon-island-tank-advance-mp07" + }, + { + "slug": "starry-moon-island-tank-advance-mp08", + "name": "Starry Moon Island Tank Advance MP08", + "url": "/v1/games/starry-moon-island-tank-advance-mp08" + }, + { + "slug": "starry-moon-island-tank-advance-mp09", + "name": "Starry Moon Island Tank Advance MP09", + "url": "/v1/games/starry-moon-island-tank-advance-mp09" + }, + { + "slug": "starry-moon-island-tank-advance-mp10", + "name": "Starry Moon Island Tank Advance MP10", + "url": "/v1/games/starry-moon-island-tank-advance-mp10" + }, { "slug": "starry-nights-helix", "name": "Starry Nights : Helix", @@ -666621,6 +683451,11 @@ "name": "Stars Arisen", "url": "/v1/games/stars-arisen" }, + { + "slug": "stars-beyond-reach", + "name": "Stars Beyond Reach", + "url": "/v1/games/stars-beyond-reach" + }, { "slug": "stars-die", "name": "Stars Die", @@ -667226,6 +684061,11 @@ "name": "Startup Company", "url": "/v1/games/startup-company" }, + { + "slug": "startup-company-console-edition", + "name": "Startup Company Console Edition", + "url": "/v1/games/startup-company-console-edition" + }, { "slug": "startup-freak", "name": "Startup Freak", @@ -667261,6 +684101,11 @@ "name": "Starve.io", "url": "/v1/games/starve-io" }, + { + "slug": "starved-for-help", + "name": "Starved for Help", + "url": "/v1/games/starved-for-help" + }, { "slug": "starved-for-light", "name": "Starved for Light", @@ -667286,6 +684131,11 @@ "name": "Starving Cat", "url": "/v1/games/starving-cat" }, + { + "slug": "starvoid", + "name": "Starvoid", + "url": "/v1/games/starvoid" + }, { "slug": "starvoly", "name": "Starvoly", @@ -667976,6 +684826,16 @@ "name": "Steal The Pig", "url": "/v1/games/steal-the-pig" }, + { + "slug": "steal-a-brainrot", + "name": "Steal a Brainrot", + "url": "/v1/games/steal-a-brainrot" + }, + { + "slug": "steal-a-country", + "name": "Steal a Country", + "url": "/v1/games/steal-a-country" + }, { "slug": "steal-then-just-escape-the-real-thrill", "name": "Steal, Then Just Escape: The Real Thrill", @@ -668306,6 +685166,11 @@ "name": "SteamWorld Dig 2", "url": "/v1/games/steamworld-dig-2" }, + { + "slug": "steamworld-headhunter", + "name": "SteamWorld Headhunter", + "url": "/v1/games/steamworld-headhunter" + }, { "slug": "steamworld-heist", "name": "SteamWorld Heist", @@ -668606,6 +685471,31 @@ "name": "Steel Division 2", "url": "/v1/games/steel-division-2" }, + { + "slug": "steel-division-2-death-on-the-vistula", + "name": "Steel Division 2 - Death on the Vistula", + "url": "/v1/games/steel-division-2-death-on-the-vistula" + }, + { + "slug": "steel-division-2-the-fate-of-finland", + "name": "Steel Division 2 - The Fate of Finland", + "url": "/v1/games/steel-division-2-the-fate-of-finland" + }, + { + "slug": "steel-division-2-black-sunday", + "name": "Steel Division 2: Black Sunday", + "url": "/v1/games/steel-division-2-black-sunday" + }, + { + "slug": "steel-division-normandy-44-back-to-hell", + "name": "Steel Division: Normandy 44 - Back to Hell", + "url": "/v1/games/steel-division-normandy-44-back-to-hell" + }, + { + "slug": "steel-division-normandy-44-second-wave", + "name": "Steel Division: Normandy 44 - Second Wave", + "url": "/v1/games/steel-division-normandy-44-second-wave" + }, { "slug": "steel-eagle-q65088557", "name": "Steel Eagle", @@ -668846,6 +685736,11 @@ "name": "Steel Storm", "url": "/v1/games/steel-storm" }, + { + "slug": "steel-storm-forgotten-prison-dlc", + "name": "Steel Storm: Forgotten Prison DLC", + "url": "/v1/games/steel-storm-forgotten-prison-dlc" + }, { "slug": "steel-swarm-apocalypse", "name": "Steel Swarm: APOCALYPSE", @@ -668941,11 +685836,21 @@ "name": "Steelbreakers", "url": "/v1/games/steelbreakers" }, + { + "slug": "steelport-gangs-pack", + "name": "Steelport Gangs Pack", + "url": "/v1/games/steelport-gangs-pack" + }, { "slug": "steelrising", "name": "Steelrising", "url": "/v1/games/steelrising" }, + { + "slug": "steelrising-bastille-edition", + "name": "Steelrising - Bastille Edition", + "url": "/v1/games/steelrising-bastille-edition" + }, { "slug": "steep", "name": "Steep", @@ -669166,6 +686071,16 @@ "name": "Stellar Bewitching (Remastered)", "url": "/v1/games/stellar-bewitching-remastered" }, + { + "slug": "stellar-blade-x-goddess-of-victory-nikke", + "name": "Stellar Blade x Goddess of Victory: Nikke", + "url": "/v1/games/stellar-blade-x-goddess-of-victory-nikke" + }, + { + "slug": "stellar-blade-x-nier-automata", + "name": "Stellar Blade x NieR:Automata", + "url": "/v1/games/stellar-blade-x-nier-automata" + }, { "slug": "stellar-cardworks", "name": "Stellar Cardworks", @@ -669206,6 +686121,11 @@ "name": "Stellar Crusade", "url": "/v1/games/stellar-crusade" }, + { + "slug": "stellar-dawn", + "name": "Stellar Dawn", + "url": "/v1/games/stellar-dawn" + }, { "slug": "stellar-dawn-survivor", "name": "Stellar Dawn: Survivor", @@ -669531,6 +686451,11 @@ "name": "StellarPlans", "url": "/v1/games/stellarplans" }, + { + "slug": "stellarace-demo", + "name": "Stellarace (Demo)", + "url": "/v1/games/stellarace-demo" + }, { "slug": "stellarcraft", "name": "Stellarcraft", @@ -669566,6 +686491,26 @@ "name": "Stellaris Nexus", "url": "/v1/games/stellaris-nexus" }, + { + "slug": "stellaris-ancient-relics-story-pack", + "name": "Stellaris: Ancient Relics Story Pack", + "url": "/v1/games/stellaris-ancient-relics-story-pack" + }, + { + "slug": "stellaris-apocalypse", + "name": "Stellaris: Apocalypse", + "url": "/v1/games/stellaris-apocalypse" + }, + { + "slug": "stellaris-aquatics-species-pack", + "name": "Stellaris: Aquatics Species Pack", + "url": "/v1/games/stellaris-aquatics-species-pack" + }, + { + "slug": "stellaris-astral-planes", + "name": "Stellaris: Astral Planes", + "url": "/v1/games/stellaris-astral-planes" + }, { "slug": "stellaris-biogenesis", "name": "Stellaris: BioGenesis", @@ -669576,11 +686521,26 @@ "name": "Stellaris: Cosmic Storms", "url": "/v1/games/stellaris-cosmic-storms" }, + { + "slug": "stellaris-distant-stars-story-pack", + "name": "Stellaris: Distant Stars Story Pack", + "url": "/v1/games/stellaris-distant-stars-story-pack" + }, + { + "slug": "stellaris-federations", + "name": "Stellaris: Federations", + "url": "/v1/games/stellaris-federations" + }, { "slug": "stellaris-first-contact", "name": "Stellaris: First Contact", "url": "/v1/games/stellaris-first-contact" }, + { + "slug": "stellaris-galactic-paragons", + "name": "Stellaris: Galactic Paragons", + "url": "/v1/games/stellaris-galactic-paragons" + }, { "slug": "stellaris-galaxy-command", "name": "Stellaris: Galaxy Command", @@ -669591,6 +686551,71 @@ "name": "Stellaris: Grand Archive", "url": "/v1/games/stellaris-grand-archive" }, + { + "slug": "stellaris-humanoids-species-pack", + "name": "Stellaris: Humanoids Species Pack", + "url": "/v1/games/stellaris-humanoids-species-pack" + }, + { + "slug": "stellaris-leviathans-story-pack", + "name": "Stellaris: Leviathans Story Pack", + "url": "/v1/games/stellaris-leviathans-story-pack" + }, + { + "slug": "stellaris-lithoids-species-pack", + "name": "Stellaris: Lithoids Species Pack", + "url": "/v1/games/stellaris-lithoids-species-pack" + }, + { + "slug": "stellaris-megacorp", + "name": "Stellaris: MegaCorp", + "url": "/v1/games/stellaris-megacorp" + }, + { + "slug": "stellaris-necroids-species-pack", + "name": "Stellaris: Necroids Species Pack", + "url": "/v1/games/stellaris-necroids-species-pack" + }, + { + "slug": "stellaris-nemesis", + "name": "Stellaris: Nemesis", + "url": "/v1/games/stellaris-nemesis" + }, + { + "slug": "stellaris-overlord", + "name": "Stellaris: Overlord", + "url": "/v1/games/stellaris-overlord" + }, + { + "slug": "stellaris-plantoids-species-pack", + "name": "Stellaris: Plantoids Species Pack", + "url": "/v1/games/stellaris-plantoids-species-pack" + }, + { + "slug": "stellaris-shadows-of-the-shroud", + "name": "Stellaris: Shadows of the Shroud", + "url": "/v1/games/stellaris-shadows-of-the-shroud" + }, + { + "slug": "stellaris-synthetic-dawn-story-pack", + "name": "Stellaris: Synthetic Dawn Story Pack", + "url": "/v1/games/stellaris-synthetic-dawn-story-pack" + }, + { + "slug": "stellaris-the-machine-age", + "name": "Stellaris: The Machine Age", + "url": "/v1/games/stellaris-the-machine-age" + }, + { + "slug": "stellaris-toxoids-species-pack", + "name": "Stellaris: Toxoids Species Pack", + "url": "/v1/games/stellaris-toxoids-species-pack" + }, + { + "slug": "stellaris-utopia", + "name": "Stellaris: Utopia", + "url": "/v1/games/stellaris-utopia" + }, { "slug": "stellarium", "name": "Stellarium", @@ -669856,6 +686881,11 @@ "name": "Steve Garvey vs. Jose Canseco in Grand Slam Baseball", "url": "/v1/games/steve-garvey-vs-jose-canseco-in-grand-slam-baseball" }, + { + "slug": "steve-jackson-s-sorcery", + "name": "Steve Jackson's Sorcery!", + "url": "/v1/games/steve-jackson-s-sorcery" + }, { "slug": "steve-s-hardcore-worldtour", "name": "Steve's HardCore WorldTour", @@ -669946,6 +686976,11 @@ "name": "Stick Fight: The Game", "url": "/v1/games/stick-fight-the-game" }, + { + "slug": "stick-fight-the-game-4-pack", + "name": "Stick Fight: The Game 4-Pack", + "url": "/v1/games/stick-fight-the-game-4-pack" + }, { "slug": "stick-figure-combat", "name": "Stick Figure Combat", @@ -670446,6 +687481,11 @@ "name": "Still There", "url": "/v1/games/still-there" }, + { + "slug": "still-wakes-the-deep-siren-s-rest", + "name": "Still Wakes the Deep: Siren's Rest", + "url": "/v1/games/still-wakes-the-deep-siren-s-rest" + }, { "slug": "still-water", "name": "Still Water", @@ -670581,6 +687621,11 @@ "name": "Stitched: Mother's Nightmare", "url": "/v1/games/stitched-mother-s-nightmare" }, + { + "slug": "stitching-theme", + "name": "Stitching Theme", + "url": "/v1/games/stitching-theme" + }, { "slug": "stitchy-in-tooki-trouble", "name": "Stitchy in Tooki Trouble", @@ -671111,6 +688156,11 @@ "name": "Stonga Bird", "url": "/v1/games/stonga-bird" }, + { + "slug": "stonia", + "name": "Stonia", + "url": "/v1/games/stonia" + }, { "slug": "stonicorn", "name": "Stonicorn", @@ -671151,6 +688201,11 @@ "name": "Stop Santa - Tower Defense", "url": "/v1/games/stop-santa-tower-defense" }, + { + "slug": "stop-sign-theme", + "name": "Stop Sign Theme", + "url": "/v1/games/stop-sign-theme" + }, { "slug": "stop-that-roach", "name": "Stop That Roach!", @@ -671676,6 +688731,11 @@ "name": "Stormbinders", "url": "/v1/games/stormbinders" }, + { + "slug": "stormbirds", + "name": "Stormbirds", + "url": "/v1/games/stormbirds" + }, { "slug": "stormblades", "name": "Stormblades", @@ -672531,6 +689591,11 @@ "name": "Stranger of Paradise: Final Fantasy Origin", "url": "/v1/games/stranger-of-paradise-final-fantasy-origin" }, + { + "slug": "stranger-of-paradise-final-fantasy-origin-digital-deluxe-edition", + "name": "Stranger of Paradise: Final Fantasy Origin Digital Deluxe Edition", + "url": "/v1/games/stranger-of-paradise-final-fantasy-origin-digital-deluxe-edition" + }, { "slug": "stranger-of-sword-city", "name": "Stranger of Sword City", @@ -672636,6 +689701,11 @@ "name": "Strategic Command 2: Blitzkrieg", "url": "/v1/games/strategic-command-2-blitzkrieg" }, + { + "slug": "strategic-command-2-patton-drives-east", + "name": "Strategic Command 2: Patton Drives East", + "url": "/v1/games/strategic-command-2-patton-drives-east" + }, { "slug": "strategic-command-classic-global-conflict", "name": "Strategic Command Classic: Global Conflict", @@ -672856,6 +689926,11 @@ "name": "Stratus: Battle For The Sky", "url": "/v1/games/stratus-battle-for-the-sky" }, + { + "slug": "straw-hat-samurai-duels", + "name": "Straw Hat Samurai: Duels", + "url": "/v1/games/straw-hat-samurai-duels" + }, { "slug": "strawb", "name": "Strawb", @@ -672986,6 +690061,11 @@ "name": "Stray Souls: Dollhouse Story", "url": "/v1/games/stray-souls-dollhouse-story" }, + { + "slug": "stray-souls-dollhouse-story-collector-s-edition", + "name": "Stray Souls: Dollhouse Story Collector's Edition", + "url": "/v1/games/stray-souls-dollhouse-story-collector-s-edition" + }, { "slug": "stray-tekirs", "name": "Stray Tekirs", @@ -673426,6 +690506,16 @@ "name": "Street Fighter 2010: The Final Fight", "url": "/v1/games/street-fighter-2010-the-final-fight" }, + { + "slug": "street-fighter-3-third-strike-online-edition", + "name": "Street Fighter 3 Third-Strike Online Edition", + "url": "/v1/games/street-fighter-3-third-strike-online-edition" + }, + { + "slug": "street-fighter-30th-anniversary-collection", + "name": "Street Fighter 30th Anniversary Collection", + "url": "/v1/games/street-fighter-30th-anniversary-collection" + }, { "slug": "street-fighter-6", "name": "Street Fighter 6", @@ -673461,6 +690551,21 @@ "name": "Street Fighter Alpha Anthology", "url": "/v1/games/street-fighter-alpha-anthology" }, + { + "slug": "street-fighter-anniversary-collection", + "name": "Street Fighter Anniversary Collection", + "url": "/v1/games/street-fighter-anniversary-collection" + }, + { + "slug": "street-fighter-collection", + "name": "Street Fighter Collection", + "url": "/v1/games/street-fighter-collection" + }, + { + "slug": "street-fighter-collection-2", + "name": "Street Fighter Collection 2", + "url": "/v1/games/street-fighter-collection-2" + }, { "slug": "street-fighter-duel", "name": "Street Fighter Duel", @@ -673506,6 +690611,11 @@ "name": "Street Fighter II Turbo", "url": "/v1/games/street-fighter-ii-turbo" }, + { + "slug": "street-fighter-ii-special-champion-edition", + "name": "Street Fighter II': Special Champion Edition", + "url": "/v1/games/street-fighter-ii-special-champion-edition" + }, { "slug": "street-fighter-ii-champion-edition", "name": "Street Fighter II: Champion Edition", @@ -674036,6 +691146,11 @@ "name": "Streets of London", "url": "/v1/games/streets-of-london" }, + { + "slug": "streets-of-moscow", + "name": "Streets of Moscow", + "url": "/v1/games/streets-of-moscow" + }, { "slug": "streets-of-neotokio", "name": "Streets of Neotokio", @@ -674061,6 +691176,11 @@ "name": "Streets of Rage 4", "url": "/v1/games/streets-of-rage-4" }, + { + "slug": "streets-of-rage-4-mr-x-nightmare", + "name": "Streets of Rage 4: Mr. X Nightmare", + "url": "/v1/games/streets-of-rage-4-mr-x-nightmare" + }, { "slug": "streets-of-rage-remake", "name": "Streets of Rage Remake", @@ -674191,6 +691311,11 @@ "name": "Stressed Out", "url": "/v1/games/stressed-out" }, + { + "slug": "stretch-armstrong-the-breakout", + "name": "Stretch Armstrong: The Breakout", + "url": "/v1/games/stretch-armstrong-the-breakout" + }, { "slug": "stretch-panic", "name": "Stretch Panic", @@ -674241,6 +691366,11 @@ "name": "Striden", "url": "/v1/games/striden" }, + { + "slug": "strider-q14928351", + "name": "Strider", + "url": "/v1/games/strider-q14928351" + }, { "slug": "strider-q3500399", "name": "Strider", @@ -674456,6 +691586,11 @@ "name": "Strike Master Apocalypse", "url": "/v1/games/strike-master-apocalypse" }, + { + "slug": "strike-out", + "name": "Strike Out!", + "url": "/v1/games/strike-out" + }, { "slug": "strike-solitaire", "name": "Strike Solitaire", @@ -674736,6 +691871,11 @@ "name": "Stringtropy", "url": "/v1/games/stringtropy" }, + { + "slug": "strinova-q131897555", + "name": "Strinova", + "url": "/v1/games/strinova-q131897555" + }, { "slug": "strinova", "name": "Strinova", @@ -674916,6 +692056,11 @@ "name": "Strip Poker Live", "url": "/v1/games/strip-poker-live" }, + { + "slug": "strip-poker-night-at-the-inventory", + "name": "Strip Poker Night at the Inventory", + "url": "/v1/games/strip-poker-night-at-the-inventory" + }, { "slug": "strip-poker-professional", "name": "Strip Poker Professional", @@ -675011,6 +692156,11 @@ "name": "Strong Bad's Cool Game for Attractive People: Season 1", "url": "/v1/games/strong-bad-s-cool-game-for-attractive-people-season-1" }, + { + "slug": "strong-badia-the-free", + "name": "Strong Badia the Free", + "url": "/v1/games/strong-badia-the-free" + }, { "slug": "strong-crab", "name": "Strong Crab", @@ -675036,6 +692186,11 @@ "name": "Strongest Imp", "url": "/v1/games/strongest-imp" }, + { + "slug": "strongest-trail", + "name": "Strongest Trail", + "url": "/v1/games/strongest-trail" + }, { "slug": "strongest-angel-zerachiel", "name": "Strongest☆Angel Zerachiel!", @@ -675536,6 +692691,11 @@ "name": "StuntMANIA Reloaded", "url": "/v1/games/stuntmania-reloaded" }, + { + "slug": "stuntfest", + "name": "Stuntfest", + "url": "/v1/games/stuntfest" + }, { "slug": "stuntman", "name": "Stuntman", @@ -675631,6 +692791,11 @@ "name": "Stupid Stories", "url": "/v1/games/stupid-stories" }, + { + "slug": "sturmoviks-over-manchuria", + "name": "Sturmoviks over Manchuria", + "url": "/v1/games/sturmoviks-over-manchuria" + }, { "slug": "sturmtruppen-the-videogame", "name": "Sturmtruppen: The Videogame", @@ -675731,11 +692896,31 @@ "name": "Su Hack", "url": "/v1/games/su-hack" }, + { + "slug": "su-25-for-dcs-world", + "name": "Su-25 for DCS World", + "url": "/v1/games/su-25-for-dcs-world" + }, { "slug": "su-27-flanker-squadron-commander-s-edition", "name": "Su-27 Flanker: Squadron Commander's Edition", "url": "/v1/games/su-27-flanker-squadron-commander-s-edition" }, + { + "slug": "su-27-for-dcs-world", + "name": "Su-27 for DCS World", + "url": "/v1/games/su-27-for-dcs-world" + }, + { + "slug": "su-27-the-ultimate-argument-campaign", + "name": "Su-27: The Ultimate Argument Campaign", + "url": "/v1/games/su-27-the-ultimate-argument-campaign" + }, + { + "slug": "su-33-for-dcs-world", + "name": "Su-33 for DCS World", + "url": "/v1/games/su-33-for-dcs-world" + }, { "slug": "sugirly-wish", "name": "SuGirly Wish", @@ -675776,6 +692961,11 @@ "name": "Sub Hunter", "url": "/v1/games/sub-hunter" }, + { + "slug": "sub-hunter-premium-edition", + "name": "Sub Hunter (Premium Edition)", + "url": "/v1/games/sub-hunter-premium-edition" + }, { "slug": "sub-optimal-co", "name": "Sub Optimal Co.", @@ -676161,6 +693351,11 @@ "name": "Subsequence", "url": "/v1/games/subsequence" }, + { + "slug": "subside", + "name": "Subside", + "url": "/v1/games/subside" + }, { "slug": "subsideria", "name": "Subsideria", @@ -676321,6 +693516,11 @@ "name": "Subwar 2050", "url": "/v1/games/subwar-2050" }, + { + "slug": "subwar-2050-the-plot-deepens", + "name": "Subwar 2050: The Plot Deepens", + "url": "/v1/games/subwar-2050-the-plot-deepens" + }, { "slug": "subway-exorcist-girl", "name": "Subway Exorcist Girl", @@ -676786,11 +693986,36 @@ "name": "Sudden Strike Forever", "url": "/v1/games/sudden-strike-forever" }, + { + "slug": "sudden-strike-ii-gold", + "name": "Sudden Strike II Gold", + "url": "/v1/games/sudden-strike-ii-gold" + }, + { + "slug": "sudden-strike-gold", + "name": "Sudden Strike: Gold", + "url": "/v1/games/sudden-strike-gold" + }, + { + "slug": "sudden-strike-gold-edition", + "name": "Sudden Strike: Gold Edition", + "url": "/v1/games/sudden-strike-gold-edition" + }, { "slug": "sudden-strike-resource-war", "name": "Sudden Strike: Resource War", "url": "/v1/games/sudden-strike-resource-war" }, + { + "slug": "sudden-strike-the-last-stand", + "name": "Sudden Strike: The Last Stand", + "url": "/v1/games/sudden-strike-the-last-stand" + }, + { + "slug": "sudden-strike-total-war", + "name": "Sudden Strike: Total War", + "url": "/v1/games/sudden-strike-total-war" + }, { "slug": "sudden-way", "name": "Sudden Way", @@ -676836,6 +694061,11 @@ "name": "Sudocats", "url": "/v1/games/sudocats" }, + { + "slug": "sudocats-paper", + "name": "Sudocats Paper", + "url": "/v1/games/sudocats-paper" + }, { "slug": "sudocity", "name": "Sudocity", @@ -676941,6 +694171,11 @@ "name": "Sudoku Zenkai", "url": "/v1/games/sudoku-zenkai" }, + { + "slug": "sudoku-and-3-puzzles", + "name": "Sudoku and 3 Puzzles", + "url": "/v1/games/sudoku-and-3-puzzles" + }, { "slug": "sudoku-constellation", "name": "Sudoku constellation", @@ -677266,6 +694501,16 @@ "name": "Suicide Guy", "url": "/v1/games/suicide-guy" }, + { + "slug": "suicide-guy-bundle", + "name": "Suicide Guy Bundle", + "url": "/v1/games/suicide-guy-bundle" + }, + { + "slug": "suicide-guy-collection", + "name": "Suicide Guy Collection", + "url": "/v1/games/suicide-guy-collection" + }, { "slug": "suicide-guy-deluxe-plus", "name": "Suicide Guy Deluxe Plus", @@ -677391,6 +694636,11 @@ "name": "Suikoden", "url": "/v1/games/suikoden" }, + { + "slug": "suikoden-i-ii", + "name": "Suikoden I & II", + "url": "/v1/games/suikoden-i-ii" + }, { "slug": "suikoden-i-ii-hd-remaster-gate-rune-and-dunan-unification-wars", "name": "Suikoden I & II HD Remaster: Gate Rune and Dunan Unification Wars", @@ -678676,6 +695926,11 @@ "name": "Suncore Chronicles: The Tower", "url": "/v1/games/suncore-chronicles-the-tower" }, + { + "slug": "sundae-shot", + "name": "Sundae Shot", + "url": "/v1/games/sundae-shot" + }, { "slug": "sundance", "name": "Sundance", @@ -678721,6 +695976,11 @@ "name": "Sundered", "url": "/v1/games/sundered" }, + { + "slug": "sundered-eldritch-edition", + "name": "Sundered: Eldritch Edition", + "url": "/v1/games/sundered-eldritch-edition" + }, { "slug": "sunderfolk", "name": "Sunderfolk", @@ -678861,6 +696121,11 @@ "name": "Sunless Sea", "url": "/v1/games/sunless-sea" }, + { + "slug": "sunless-sea-zubmariner", + "name": "Sunless Sea: Zubmariner", + "url": "/v1/games/sunless-sea-zubmariner" + }, { "slug": "sunless-skies-sovereign-edition", "name": "Sunless Skies: Sovereign Edition", @@ -679161,6 +696426,11 @@ "name": "Sunset Overdrive", "url": "/v1/games/sunset-overdrive" }, + { + "slug": "sunset-overdrive-deluxe-edition", + "name": "Sunset Overdrive Deluxe Edition", + "url": "/v1/games/sunset-overdrive-deluxe-edition" + }, { "slug": "sunset-planet", "name": "Sunset Planet", @@ -679871,6 +697141,11 @@ "name": "Super Bomberman 5", "url": "/v1/games/super-bomberman-5" }, + { + "slug": "super-bomberman-collection", + "name": "Super Bomberman Collection", + "url": "/v1/games/super-bomberman-collection" + }, { "slug": "super-bomberman-r", "name": "Super Bomberman R", @@ -679976,6 +697251,11 @@ "name": "Super Brawl Rush", "url": "/v1/games/super-brawl-rush" }, + { + "slug": "super-brawl-showdown", + "name": "Super Brawl Showdown!", + "url": "/v1/games/super-brawl-showdown" + }, { "slug": "super-breakout", "name": "Super Breakout", @@ -680986,6 +698266,11 @@ "name": "Super Friends Party", "url": "/v1/games/super-friends-party" }, + { + "slug": "super-frog", + "name": "Super Frog", + "url": "/v1/games/super-frog" + }, { "slug": "super-fruit-fall", "name": "Super Fruit Fall", @@ -681196,6 +698481,11 @@ "name": "Super Grave Snatchers", "url": "/v1/games/super-grave-snatchers" }, + { + "slug": "super-gravitron", + "name": "Super Gravitron", + "url": "/v1/games/super-gravitron" + }, { "slug": "super-gravity-ball", "name": "Super Gravity Ball", @@ -681376,6 +698666,11 @@ "name": "Super House of Dead Ninjas", "url": "/v1/games/super-house-of-dead-ninjas" }, + { + "slug": "super-house-of-dead-ninjas-true-ninja-pack", + "name": "Super House of Dead Ninjas: True Ninja Pack", + "url": "/v1/games/super-house-of-dead-ninjas-true-ninja-pack" + }, { "slug": "super-huey-uh-ix", "name": "Super Huey UH-IX", @@ -681901,6 +699196,16 @@ "name": "Super Mario 127", "url": "/v1/games/super-mario-127" }, + { + "slug": "super-mario-128", + "name": "Super Mario 128", + "url": "/v1/games/super-mario-128" + }, + { + "slug": "super-mario-3d-all-stars", + "name": "Super Mario 3D All-Stars", + "url": "/v1/games/super-mario-3d-all-stars" + }, { "slug": "super-mario-3d-land", "name": "Super Mario 3D Land", @@ -681926,6 +699231,11 @@ "name": "Super Mario 64", "url": "/v1/games/super-mario-64" }, + { + "slug": "super-mario-64-2", + "name": "Super Mario 64 2", + "url": "/v1/games/super-mario-64-2" + }, { "slug": "super-mario-64-coop-deluxe", "name": "Super Mario 64 Coop Deluxe", @@ -681951,6 +699261,16 @@ "name": "Super Mario All-Stars", "url": "/v1/games/super-mario-all-stars" }, + { + "slug": "super-mario-all-stars-super-mario-world", + "name": "Super Mario All-Stars + Super Mario World", + "url": "/v1/games/super-mario-all-stars-super-mario-world" + }, + { + "slug": "super-mario-all-stars-25th-anniversary-edition", + "name": "Super Mario All-Stars 25th Anniversary Edition", + "url": "/v1/games/super-mario-all-stars-25th-anniversary-edition" + }, { "slug": "super-mario-bros-mini", "name": "Super Mario Bros Mini", @@ -681976,6 +699296,11 @@ "name": "Super Mario Bros. & Friends: When I Grow Up", "url": "/v1/games/super-mario-bros-friends-when-i-grow-up" }, + { + "slug": "super-mario-bros-duck-hunt-world-class-track-meet", + "name": "Super Mario Bros. / Duck Hunt / World Class Track Meet", + "url": "/v1/games/super-mario-bros-duck-hunt-world-class-track-meet" + }, { "slug": "super-mario-bros-2", "name": "Super Mario Bros. 2", @@ -682041,6 +699366,16 @@ "name": "Super Mario Bros. X", "url": "/v1/games/super-mario-bros-x" }, + { + "slug": "super-mario-bros-duck-hunt", + "name": "Super Mario Bros./Duck Hunt", + "url": "/v1/games/super-mario-bros-duck-hunt" + }, + { + "slug": "super-mario-bros-tetris-nintendo-world-cup", + "name": "Super Mario Bros./Tetris/Nintendo World Cup", + "url": "/v1/games/super-mario-bros-tetris-nintendo-world-cup" + }, { "slug": "super-mario-bros-the-lost-levels", "name": "Super Mario Bros.: The Lost Levels", @@ -682116,6 +699451,11 @@ "name": "Super Mario Run", "url": "/v1/games/super-mario-run" }, + { + "slug": "super-mario-spikers", + "name": "Super Mario Spikers", + "url": "/v1/games/super-mario-spikers" + }, { "slug": "super-mario-strikers", "name": "Super Mario Strikers", @@ -682166,6 +699506,11 @@ "name": "Super Mario X", "url": "/v1/games/super-mario-x" }, + { + "slug": "super-mario-s-wacky-worlds", + "name": "Super Mario's Wacky Worlds", + "url": "/v1/games/super-mario-s-wacky-worlds" + }, { "slug": "super-marisa-land", "name": "Super Marisa Land", @@ -682601,6 +699946,11 @@ "name": "Super Ninja Miner", "url": "/v1/games/super-ninja-miner" }, + { + "slug": "super-nintendo-entertainment-system-nintendo-classics", + "name": "Super Nintendo Entertainment System – Nintendo Classics", + "url": "/v1/games/super-nintendo-entertainment-system-nintendo-classics" + }, { "slug": "super-no-crying-in-baseball", "name": "Super No Crying in Baseball", @@ -682891,6 +700241,11 @@ "name": "Super Poop", "url": "/v1/games/super-poop" }, + { + "slug": "super-postal", + "name": "Super Postal", + "url": "/v1/games/super-postal" + }, { "slug": "super-potato-bruh", "name": "Super Potato Bruh", @@ -683111,6 +700466,46 @@ "name": "Super Real Baseball", "url": "/v1/games/super-real-baseball" }, + { + "slug": "super-real-mahjong", + "name": "Super Real Mahjong", + "url": "/v1/games/super-real-mahjong" + }, + { + "slug": "super-real-mahjong-p7", + "name": "Super Real Mahjong P7", + "url": "/v1/games/super-real-mahjong-p7" + }, + { + "slug": "super-real-mahjong-pi", + "name": "Super Real Mahjong PI", + "url": "/v1/games/super-real-mahjong-pi" + }, + { + "slug": "super-real-mahjong-pii", + "name": "Super Real Mahjong PII", + "url": "/v1/games/super-real-mahjong-pii" + }, + { + "slug": "super-real-mahjong-piii", + "name": "Super Real Mahjong PIII", + "url": "/v1/games/super-real-mahjong-piii" + }, + { + "slug": "super-real-mahjong-piv", + "name": "Super Real Mahjong PIV", + "url": "/v1/games/super-real-mahjong-piv" + }, + { + "slug": "super-real-mahjong-pv", + "name": "Super Real Mahjong PV", + "url": "/v1/games/super-real-mahjong-pv" + }, + { + "slug": "super-real-mahjong-pvi", + "name": "Super Real Mahjong PVI", + "url": "/v1/games/super-real-mahjong-pvi" + }, { "slug": "super-rebellion", "name": "Super Rebellion", @@ -684231,6 +701626,11 @@ "name": "Super Stickman Golf 3", "url": "/v1/games/super-stickman-golf-3" }, + { + "slug": "super-stickman-golf-3-q107452141", + "name": "Super Stickman Golf 3+", + "url": "/v1/games/super-stickman-golf-3-q107452141" + }, { "slug": "super-stone-legacy", "name": "Super Stone Legacy", @@ -684511,6 +701911,11 @@ "name": "Super Toy Cars 2", "url": "/v1/games/super-toy-cars-2" }, + { + "slug": "super-toy-cars-collection", + "name": "Super Toy Cars Collection", + "url": "/v1/games/super-toy-cars-collection" + }, { "slug": "super-toy-cars-offroad", "name": "Super Toy Cars Offroad", @@ -685981,6 +703386,11 @@ "name": "Support", "url": "/v1/games/support" }, + { + "slug": "support-victory-skin-pack", + "name": "Support Victory Skin Pack", + "url": "/v1/games/support-victory-skin-pack" + }, { "slug": "supposedly-wonderful-future", "name": "Supposedly Wonderful Future", @@ -686006,6 +703416,11 @@ "name": "Supraland", "url": "/v1/games/supraland" }, + { + "slug": "supraland-crash", + "name": "Supraland Crash", + "url": "/v1/games/supraland-crash" + }, { "slug": "supraland-six-inches-under", "name": "Supraland Six Inches Under", @@ -686161,6 +703576,11 @@ "name": "Supreme Ruler: Cold War", "url": "/v1/games/supreme-ruler-cold-war" }, + { + "slug": "supreme-ruler-trump-rising", + "name": "Supreme Ruler: Trump Rising", + "url": "/v1/games/supreme-ruler-trump-rising" + }, { "slug": "supreme-snowboarding", "name": "Supreme Snowboarding", @@ -686286,6 +703706,11 @@ "name": "Surface Tension", "url": "/v1/games/surface-tension-q124370510" }, + { + "slug": "surface-tension-q124370513", + "name": "Surface Tension", + "url": "/v1/games/surface-tension-q124370513" + }, { "slug": "surface-tension", "name": "Surface Tension", @@ -686451,6 +703876,11 @@ "name": "Surgeon Simulator VR: Meet The Medic", "url": "/v1/games/surgeon-simulator-vr-meet-the-medic" }, + { + "slug": "surgeon-simulator-anniversary-edition", + "name": "Surgeon Simulator: Anniversary Edition", + "url": "/v1/games/surgeon-simulator-anniversary-edition" + }, { "slug": "surgeon-simulator-experience-reality", "name": "Surgeon Simulator: Experience Reality", @@ -687556,6 +704986,11 @@ "name": "Survivor", "url": "/v1/games/survivor-q20874901" }, + { + "slug": "survivor-q7647257", + "name": "Survivor", + "url": "/v1/games/survivor-q7647257" + }, { "slug": "survivor", "name": "Survivor", @@ -688391,6 +705826,11 @@ "name": "Swapshot", "url": "/v1/games/swapshot" }, + { + "slug": "swargame", + "name": "Swargame", + "url": "/v1/games/swargame" + }, { "slug": "swarm-q122366673", "name": "Swarm", @@ -689726,6 +707166,11 @@ "name": "Swoon! Earth Escape", "url": "/v1/games/swoon-earth-escape" }, + { + "slug": "swoon-exe", + "name": "Swoon.exe", + "url": "/v1/games/swoon-exe" + }, { "slug": "swooning-over-stans", "name": "Swooning Over Stans", @@ -689801,6 +707246,11 @@ "name": "Sword 'N' Board", "url": "/v1/games/sword-n-board" }, + { + "slug": "sword-and-magic", + "name": "Sword And Magic", + "url": "/v1/games/sword-and-magic" + }, { "slug": "sword-art-online-alicization-lycoris", "name": "Sword Art Online: Alicization Lycoris", @@ -690251,6 +707701,16 @@ "name": "Sword of the Stars: A Murder of Crows", "url": "/v1/games/sword-of-the-stars-a-murder-of-crows" }, + { + "slug": "sword-of-the-stars-argos-naval-yard", + "name": "Sword of the Stars: Argos Naval Yard", + "url": "/v1/games/sword-of-the-stars-argos-naval-yard" + }, + { + "slug": "sword-of-the-stars-born-of-blood", + "name": "Sword of the Stars: Born of Blood", + "url": "/v1/games/sword-of-the-stars-born-of-blood" + }, { "slug": "sword-of-the-stars-the-pit", "name": "Sword of the Stars: The Pit", @@ -691141,6 +708601,11 @@ "name": "Syndicate", "url": "/v1/games/syndicate" }, + { + "slug": "syndicate-plus", + "name": "Syndicate Plus", + "url": "/v1/games/syndicate-plus" + }, { "slug": "syndicate-wars", "name": "Syndicate Wars", @@ -691151,6 +708616,11 @@ "name": "Syndicate of Souls", "url": "/v1/games/syndicate-of-souls" }, + { + "slug": "syndicate-american-revolt", + "name": "Syndicate: American Revolt", + "url": "/v1/games/syndicate-american-revolt" + }, { "slug": "syndrome", "name": "Syndrome", @@ -691536,6 +709006,11 @@ "name": "Syphon Filter 3", "url": "/v1/games/syphon-filter-3" }, + { + "slug": "syphon-filter-4", + "name": "Syphon Filter 4", + "url": "/v1/games/syphon-filter-4" + }, { "slug": "syphon-filter-combat-ops", "name": "Syphon Filter: Combat Ops", @@ -691616,6 +709091,11 @@ "name": "System Escape", "url": "/v1/games/system-escape" }, + { + "slug": "system-flaw-q61601987", + "name": "System Flaw", + "url": "/v1/games/system-flaw-q61601987" + }, { "slug": "system-flaw", "name": "System Flaw", @@ -691681,6 +709161,11 @@ "name": "System Shock 2: 25th Anniversary Remaster", "url": "/v1/games/system-shock-2-25th-anniversary-remaster" }, + { + "slug": "system-shock-3", + "name": "System Shock 3", + "url": "/v1/games/system-shock-3" + }, { "slug": "system-shock-enhanced-edition", "name": "System Shock: Enhanced Edition", @@ -691976,6 +709461,11 @@ "name": "T1WRE3: NONAME", "url": "/v1/games/t1wre3-noname" }, + { + "slug": "t2002", + "name": "T2002", + "url": "/v1/games/t2002" + }, { "slug": "t3-take-the-turn", "name": "T3 - Take the Turn", @@ -692986,6 +710476,46 @@ "name": "THE FERRY", "url": "/v1/games/the-ferry" }, + { + "slug": "the-finals-1150-multibucks", + "name": "THE FINALS - 1150 Multibucks", + "url": "/v1/games/the-finals-1150-multibucks" + }, + { + "slug": "the-finals-13-000-multibucks", + "name": "THE FINALS - 13 000 Multibucks", + "url": "/v1/games/the-finals-13-000-multibucks" + }, + { + "slug": "the-finals-2-400-multibucks", + "name": "THE FINALS - 2 400 Multibucks", + "url": "/v1/games/the-finals-2-400-multibucks" + }, + { + "slug": "the-finals-500-multibucks", + "name": "THE FINALS - 500 Multibucks", + "url": "/v1/games/the-finals-500-multibucks" + }, + { + "slug": "the-finals-6-250-multibucks", + "name": "THE FINALS - 6 250 Multibucks", + "url": "/v1/games/the-finals-6-250-multibucks" + }, + { + "slug": "the-finals-bank-rabbit-set", + "name": "THE FINALS - Bank Rabbit Set", + "url": "/v1/games/the-finals-bank-rabbit-set" + }, + { + "slug": "the-finals-s-o-sleek-bundle", + "name": "THE FINALS - S.O Sleek Bundle", + "url": "/v1/games/the-finals-s-o-sleek-bundle" + }, + { + "slug": "the-finals-volpe-immersion-bundle", + "name": "THE FINALS - VOLPE Immersion Bundle", + "url": "/v1/games/the-finals-volpe-immersion-bundle" + }, { "slug": "the-game-q135020141", "name": "THE GAME", @@ -693466,6 +710996,11 @@ "name": "THE_ABYSS_HAS_WALLS", "url": "/v1/games/the-abyss-has-walls" }, + { + "slug": "the-bishibashi", + "name": "THE★BishiBashi", + "url": "/v1/games/the-bishibashi" + }, { "slug": "thgitw", "name": "THGITW", @@ -693551,6 +711086,11 @@ "name": "THRUD: Broken Heaven", "url": "/v1/games/thrud-broken-heaven" }, + { + "slug": "thug-pro", + "name": "THUG Pro", + "url": "/v1/games/thug-pro" + }, { "slug": "thunder-blaster", "name": "THUNDER BLASTER", @@ -693821,6 +711361,11 @@ "name": "TMNT: Battle Tycoon", "url": "/v1/games/tmnt-battle-tycoon" }, + { + "slug": "tmnt-ninja-adventures", + "name": "TMNT: Ninja Adventures", + "url": "/v1/games/tmnt-ninja-adventures" + }, { "slug": "tmnt-the-power-of-4", "name": "TMNT: The Power of 4", @@ -694676,6 +712221,701 @@ "name": "TS FANTASY", "url": "/v1/games/ts-fantasy" }, + { + "slug": "ts-marketplace-1800s-rolling-stock-pack-01-add-on", + "name": "TS Marketplace: 1800s Rolling Stock Pack 01 Add-On", + "url": "/v1/games/ts-marketplace-1800s-rolling-stock-pack-01-add-on" + }, + { + "slug": "ts-marketplace-1800s-rolling-stock-pack-02-add-on", + "name": "TS Marketplace: 1800s Rolling Stock Pack 02 Add-On", + "url": "/v1/games/ts-marketplace-1800s-rolling-stock-pack-02-add-on" + }, + { + "slug": "ts-marketplace-alaska-railroad-scenario-pack-01", + "name": "TS Marketplace: Alaska Railroad Scenario Pack 01", + "url": "/v1/games/ts-marketplace-alaska-railroad-scenario-pack-01" + }, + { + "slug": "ts-marketplace-amtrak-e8-scenario-pack-01-add-on", + "name": "TS Marketplace: Amtrak E8 Scenario Pack 01 Add-On", + "url": "/v1/games/ts-marketplace-amtrak-e8-scenario-pack-01-add-on" + }, + { + "slug": "ts-marketplace-br-hawksworth-coach-pack-01-add-on", + "name": "TS Marketplace: BR Hawksworth Coach Pack 01 Add-On", + "url": "/v1/games/ts-marketplace-br-hawksworth-coach-pack-01-add-on" + }, + { + "slug": "ts-marketplace-br-hawksworth-coach-pack-02-add-on", + "name": "TS Marketplace: BR Hawksworth Coach Pack 02 Add-On", + "url": "/v1/games/ts-marketplace-br-hawksworth-coach-pack-02-add-on" + }, + { + "slug": "ts-marketplace-br-porthole-coach-pack-01-add-on", + "name": "TS Marketplace: BR Porthole Coach Pack 01 Add-On", + "url": "/v1/games/ts-marketplace-br-porthole-coach-pack-01-add-on" + }, + { + "slug": "ts-marketplace-br-porthole-coach-pack-02-add-on", + "name": "TS Marketplace: BR Porthole Coach Pack 02 Add-On", + "url": "/v1/games/ts-marketplace-br-porthole-coach-pack-02-add-on" + }, + { + "slug": "ts-marketplace-br-saint-tpo-livery-pack-add-on", + "name": "TS Marketplace: BR Saint & TPO Livery Pack Add-On", + "url": "/v1/games/ts-marketplace-br-saint-tpo-livery-pack-add-on" + }, + { + "slug": "ts-marketplace-baltimore-ohio-rf-16-livery-pack", + "name": "TS Marketplace: Baltimore & Ohio RF-16 Livery Pack", + "url": "/v1/games/ts-marketplace-baltimore-ohio-rf-16-livery-pack" + }, + { + "slug": "ts-marketplace-baltimore-and-ohio-ge-44-add-on", + "name": "TS Marketplace: Baltimore and Ohio GE 44 Add-On", + "url": "/v1/games/ts-marketplace-baltimore-and-ohio-ge-44-add-on" + }, + { + "slug": "ts-marketplace-baltimore-and-ohio-gp30-liveries-add-on", + "name": "TS Marketplace: Baltimore and Ohio GP30 Liveries Add-On", + "url": "/v1/games/ts-marketplace-baltimore-and-ohio-gp30-liveries-add-on" + }, + { + "slug": "ts-marketplace-barnum-coaches-pack-01-add-on", + "name": "TS Marketplace: Barnum Coaches Pack 01 Add-On", + "url": "/v1/games/ts-marketplace-barnum-coaches-pack-01-add-on" + }, + { + "slug": "ts-marketplace-british-railways-class-a2-livery-pack-add-on", + "name": "TS Marketplace: British Railways Class A2 Livery Pack Add-On", + "url": "/v1/games/ts-marketplace-british-railways-class-a2-livery-pack-add-on" + }, + { + "slug": "ts-marketplace-british-railways-s15-livery-pack-add-on", + "name": "TS Marketplace: British Railways S15 Livery Pack Add-On", + "url": "/v1/games/ts-marketplace-british-railways-s15-livery-pack-add-on" + }, + { + "slug": "ts-marketplace-bulleid-coach-pack-01-add-on", + "name": "TS Marketplace: Bulleid Coach Pack 01 Add-On", + "url": "/v1/games/ts-marketplace-bulleid-coach-pack-01-add-on" + }, + { + "slug": "ts-marketplace-bulleid-coach-pack-02-add-on", + "name": "TS Marketplace: Bulleid Coach Pack 02 Add-On", + "url": "/v1/games/ts-marketplace-bulleid-coach-pack-02-add-on" + }, + { + "slug": "ts-marketplace-bulleid-coach-pack-03-add-on", + "name": "TS Marketplace: Bulleid Coach Pack 03 Add-On", + "url": "/v1/games/ts-marketplace-bulleid-coach-pack-03-add-on" + }, + { + "slug": "ts-marketplace-csx-hanover-subdivision-scenario-pack-01", + "name": "TS Marketplace: CSX Hanover Subdivision Scenario Pack 01", + "url": "/v1/games/ts-marketplace-csx-hanover-subdivision-scenario-pack-01" + }, + { + "slug": "ts-marketplace-csx-sd50-livery-add-on", + "name": "TS Marketplace: CSX SD50 Livery Add-On", + "url": "/v1/games/ts-marketplace-csx-sd50-livery-add-on" + }, + { + "slug": "ts-marketplace-csx-scenario-pack-01", + "name": "TS Marketplace: CSX Scenario Pack 01", + "url": "/v1/games/ts-marketplace-csx-scenario-pack-01" + }, + { + "slug": "ts-marketplace-caledonian-railway-45ft-non-corridor-caledonian-railway-add-on", + "name": "TS Marketplace: Caledonian Railway 45ft Non-Corridor - Caledonian Railway Add-On", + "url": "/v1/games/ts-marketplace-caledonian-railway-45ft-non-corridor-caledonian-railway-add-on" + }, + { + "slug": "ts-marketplace-caledonian-railway-45ft-non-corridor-lms-period-1-add-on", + "name": "TS Marketplace: Caledonian Railway 45ft Non-Corridor - LMS Period 1 Add-On", + "url": "/v1/games/ts-marketplace-caledonian-railway-45ft-non-corridor-lms-period-1-add-on" + }, + { + "slug": "ts-marketplace-caledonian-railway-65ft-grampian-br-crimson-cream-coach-pack-add-on", + "name": "TS Marketplace: Caledonian Railway 65ft Grampian BR Crimson & Cream Coach Pack Add-On", + "url": "/v1/games/ts-marketplace-caledonian-railway-65ft-grampian-br-crimson-cream-coach-pack-add-on" + }, + { + "slug": "ts-marketplace-caledonian-railway-65ft-grampian-coach-pack-add-on", + "name": "TS Marketplace: Caledonian Railway 65ft Grampian Coach Pack Add-On", + "url": "/v1/games/ts-marketplace-caledonian-railway-65ft-grampian-coach-pack-add-on" + }, + { + "slug": "ts-marketplace-caledonian-railway-65ft-grampian-lms-period-1-coach-pack", + "name": "TS Marketplace: Caledonian Railway 65ft Grampian LMS Period 1 Coach Pack", + "url": "/v1/games/ts-marketplace-caledonian-railway-65ft-grampian-lms-period-1-coach-pack" + }, + { + "slug": "ts-marketplace-caledonian-railway-65ft-grampian-lms-period-3-coach-pack", + "name": "TS Marketplace: Caledonian Railway 65ft Grampian LMS Period 3 Coach Pack", + "url": "/v1/games/ts-marketplace-caledonian-railway-65ft-grampian-lms-period-3-coach-pack" + }, + { + "slug": "ts-marketplace-chatham-main-line-scenario-pack-01-add-on", + "name": "TS Marketplace: Chatham Main Line Scenario Pack 01 Add-On", + "url": "/v1/games/ts-marketplace-chatham-main-line-scenario-pack-01-add-on" + }, + { + "slug": "ts-marketplace-chessie-systems-gp30-livery-add-on", + "name": "TS Marketplace: Chessie Systems GP30 Livery Add-On", + "url": "/v1/games/ts-marketplace-chessie-systems-gp30-livery-add-on" + }, + { + "slug": "ts-marketplace-class-465-southeastern-livery-pack-add-on", + "name": "TS Marketplace: Class 465 Southeastern Livery Pack Add-On", + "url": "/v1/games/ts-marketplace-class-465-southeastern-livery-pack-add-on" + }, + { + "slug": "ts-marketplace-clinchfield-railroad-scenario-pack-01", + "name": "TS Marketplace: Clinchfield Railroad Scenario Pack 01", + "url": "/v1/games/ts-marketplace-clinchfield-railroad-scenario-pack-01" + }, + { + "slug": "ts-marketplace-collet-coaches-pack-02", + "name": "TS Marketplace: Collet Coaches Pack 02", + "url": "/v1/games/ts-marketplace-collet-coaches-pack-02" + }, + { + "slug": "ts-marketplace-db-sgns-container-wagon-pack", + "name": "TS Marketplace: DB Sgns Container Wagon Pack", + "url": "/v1/games/ts-marketplace-db-sgns-container-wagon-pack" + }, + { + "slug": "ts-marketplace-db-sgns-hopper-pack", + "name": "TS Marketplace: DB Sgns Hopper Pack", + "url": "/v1/games/ts-marketplace-db-sgns-hopper-pack" + }, + { + "slug": "ts-marketplace-dd35-demonstrator-add-on", + "name": "TS Marketplace: DD35 Demonstrator Add-On", + "url": "/v1/games/ts-marketplace-dd35-demonstrator-add-on" + }, + { + "slug": "ts-marketplace-drg-br-86-grey-livery-pack-add-on", + "name": "TS Marketplace: DRG BR 86 Grey Livery Pack Add-On", + "url": "/v1/games/ts-marketplace-drg-br-86-grey-livery-pack-add-on" + }, + { + "slug": "ts-marketplace-donner-pass-scenario-pack-01-add-on", + "name": "TS Marketplace: Donner Pass Scenario Pack 01 Add-On", + "url": "/v1/games/ts-marketplace-donner-pass-scenario-pack-01-add-on" + }, + { + "slug": "ts-marketplace-ecml-peterborough-york-modern-scenario-pack-01", + "name": "TS Marketplace: ECML Peterborough York Modern Scenario Pack 01", + "url": "/v1/games/ts-marketplace-ecml-peterborough-york-modern-scenario-pack-01" + }, + { + "slug": "ts-marketplace-ews-class-58-add-on-livery", + "name": "TS Marketplace: EWS Class 58 Add-On Livery", + "url": "/v1/games/ts-marketplace-ews-class-58-add-on-livery" + }, + { + "slug": "ts-marketplace-fads-177-wagon-pack-add-on", + "name": "TS Marketplace: Fads 177 Wagon Pack Add-On", + "url": "/v1/games/ts-marketplace-fads-177-wagon-pack-add-on" + }, + { + "slug": "ts-marketplace-falns-121-wagon-pack-add-on", + "name": "TS Marketplace: Falns 121 Wagon Pack Add-On", + "url": "/v1/games/ts-marketplace-falns-121-wagon-pack-add-on" + }, + { + "slug": "ts-marketplace-feather-river-canyon-scenario-pack-01", + "name": "TS Marketplace: Feather River Canyon Scenario Pack 01", + "url": "/v1/games/ts-marketplace-feather-river-canyon-scenario-pack-01" + }, + { + "slug": "ts-marketplace-feather-river-canyon-scenario-pack-02", + "name": "TS Marketplace: Feather River Canyon Scenario Pack 02", + "url": "/v1/games/ts-marketplace-feather-river-canyon-scenario-pack-02" + }, + { + "slug": "ts-marketplace-gp40-2-mini-scenario-pack-01-add-on", + "name": "TS Marketplace: GP40-2 Mini Scenario Pack 01 Add-On", + "url": "/v1/games/ts-marketplace-gp40-2-mini-scenario-pack-01-add-on" + }, + { + "slug": "ts-marketplace-gp40-2-mini-scenario-pack-02-add-on", + "name": "TS Marketplace: GP40-2 Mini Scenario Pack 02 Add-On", + "url": "/v1/games/ts-marketplace-gp40-2-mini-scenario-pack-02-add-on" + }, + { + "slug": "ts-marketplace-gwr-churchward-panelled-toplights-pack-01-add-on", + "name": "TS Marketplace: GWR Churchward Panelled Toplights Pack 01 Add-On", + "url": "/v1/games/ts-marketplace-gwr-churchward-panelled-toplights-pack-01-add-on" + }, + { + "slug": "ts-marketplace-gwr-churchward-panelled-toplights-pack-02-add-on", + "name": "TS Marketplace: GWR Churchward Panelled Toplights Pack 02 Add-On", + "url": "/v1/games/ts-marketplace-gwr-churchward-panelled-toplights-pack-02-add-on" + }, + { + "slug": "ts-marketplace-gwr-churchward-panelled-toplights-pack-03-add-on", + "name": "TS Marketplace: GWR Churchward Panelled Toplights Pack 03 Add-On", + "url": "/v1/games/ts-marketplace-gwr-churchward-panelled-toplights-pack-03-add-on" + }, + { + "slug": "ts-marketplace-gwr-churchward-panelled-toplights-pack-04-add-on", + "name": "TS Marketplace: GWR Churchward Panelled Toplights Pack 04 Add-On", + "url": "/v1/games/ts-marketplace-gwr-churchward-panelled-toplights-pack-04-add-on" + }, + { + "slug": "ts-marketplace-gwr-churchward-panelled-toplights-pack-05-add-on", + "name": "TS Marketplace: GWR Churchward Panelled Toplights Pack 05 Add-On", + "url": "/v1/games/ts-marketplace-gwr-churchward-panelled-toplights-pack-05-add-on" + }, + { + "slug": "ts-marketplace-gwr-churchward-panelled-toplights-pack-06-add-on", + "name": "TS Marketplace: GWR Churchward Panelled Toplights Pack 06 Add-On", + "url": "/v1/games/ts-marketplace-gwr-churchward-panelled-toplights-pack-06-add-on" + }, + { + "slug": "ts-marketplace-gwr-high-waist-collett-coaches-pack-01-add-on", + "name": "TS Marketplace: GWR High Waist Collett Coaches Pack 01 Add-On", + "url": "/v1/games/ts-marketplace-gwr-high-waist-collett-coaches-pack-01-add-on" + }, + { + "slug": "ts-marketplace-gwr-high-waist-collett-coaches-pack-02-add-on", + "name": "TS Marketplace: GWR High Waist Collett Coaches Pack 02 Add-On", + "url": "/v1/games/ts-marketplace-gwr-high-waist-collett-coaches-pack-02-add-on" + }, + { + "slug": "ts-marketplace-gwr-high-waist-collett-coaches-pack-03-add-on", + "name": "TS Marketplace: GWR High Waist Collett Coaches Pack 03 Add-On", + "url": "/v1/games/ts-marketplace-gwr-high-waist-collett-coaches-pack-03-add-on" + }, + { + "slug": "ts-marketplace-gwr-large-prairies-lined-liveries-add-on", + "name": "TS Marketplace: GWR Large Prairies Lined Liveries Add-on", + "url": "/v1/games/ts-marketplace-gwr-large-prairies-lined-liveries-add-on" + }, + { + "slug": "ts-marketplace-gwr-toplight-coaches-pack-01", + "name": "TS Marketplace: GWR Toplight Coaches Pack 01", + "url": "/v1/games/ts-marketplace-gwr-toplight-coaches-pack-01" + }, + { + "slug": "ts-marketplace-gwr-toplight-coaches-pack-02", + "name": "TS Marketplace: GWR Toplight Coaches Pack 02", + "url": "/v1/games/ts-marketplace-gwr-toplight-coaches-pack-02" + }, + { + "slug": "ts-marketplace-granger-heartland-scenario-pack-01", + "name": "TS Marketplace: Granger Heartland Scenario Pack 01", + "url": "/v1/games/ts-marketplace-granger-heartland-scenario-pack-01" + }, + { + "slug": "ts-marketplace-gresley-coach-pack-01", + "name": "TS Marketplace: Gresley Coach Pack 01", + "url": "/v1/games/ts-marketplace-gresley-coach-pack-01" + }, + { + "slug": "ts-marketplace-gresley-coach-pack-02", + "name": "TS Marketplace: Gresley Coach Pack 02", + "url": "/v1/games/ts-marketplace-gresley-coach-pack-02" + }, + { + "slug": "ts-marketplace-gresley-coach-pack-03", + "name": "TS Marketplace: Gresley Coach Pack 03", + "url": "/v1/games/ts-marketplace-gresley-coach-pack-03" + }, + { + "slug": "ts-marketplace-gresley-coach-pack-04-add-on", + "name": "TS Marketplace: Gresley Coach Pack 04 Add-On", + "url": "/v1/games/ts-marketplace-gresley-coach-pack-04-add-on" + }, + { + "slug": "ts-marketplace-hxd3d-electric-locomotive-add-on", + "name": "TS Marketplace: HXD3D Electric Locomotive Add-On", + "url": "/v1/games/ts-marketplace-hxd3d-electric-locomotive-add-on" + }, + { + "slug": "ts-marketplace-hbillns-303-wagon-pack-add-on", + "name": "TS Marketplace: Hbillns 303 Wagon Pack Add-On", + "url": "/v1/games/ts-marketplace-hbillns-303-wagon-pack-add-on" + }, + { + "slug": "ts-marketplace-horseshoe-curve-scenario-pack-01-add-on", + "name": "TS Marketplace: Horseshoe Curve Scenario Pack 01 Add-On", + "url": "/v1/games/ts-marketplace-horseshoe-curve-scenario-pack-01-add-on" + }, + { + "slug": "ts-marketplace-hudson-line-scenario-pack-01", + "name": "TS Marketplace: Hudson Line Scenario Pack 01", + "url": "/v1/games/ts-marketplace-hudson-line-scenario-pack-01" + }, + { + "slug": "ts-marketplace-k-ln-koblenz-scenario-pack-01-add-on", + "name": "TS Marketplace: Köln Koblenz Scenario Pack 01 Add-On", + "url": "/v1/games/ts-marketplace-k-ln-koblenz-scenario-pack-01-add-on" + }, + { + "slug": "ts-marketplace-lms-p1-p2-br-crimson-cream-coach-pack-add-on", + "name": "TS Marketplace: LMS P1&P2 BR Crimson & Cream Coach Pack Add-On", + "url": "/v1/games/ts-marketplace-lms-p1-p2-br-crimson-cream-coach-pack-add-on" + }, + { + "slug": "ts-marketplace-lms-p1-p2-br-maroon-coach-pack-add-on", + "name": "TS Marketplace: LMS P1&P2 BR Maroon Coach Pack Add-On", + "url": "/v1/games/ts-marketplace-lms-p1-p2-br-maroon-coach-pack-add-on" + }, + { + "slug": "ts-marketplace-lms-p1-p2-lms-early-coach-pack-add-on", + "name": "TS Marketplace: LMS P1&P2 LMS Early Coach Pack Add-On", + "url": "/v1/games/ts-marketplace-lms-p1-p2-lms-early-coach-pack-add-on" + }, + { + "slug": "ts-marketplace-lms-p1-p2-lms-late-coach-pack-add-on", + "name": "TS Marketplace: LMS P1&P2 LMS Late Coach Pack Add-On", + "url": "/v1/games/ts-marketplace-lms-p1-p2-lms-late-coach-pack-add-on" + }, + { + "slug": "ts-marketplace-lms-p3-coaches-pack-03-add-on", + "name": "TS Marketplace: LMS P3 Coaches Pack 03 Add-On", + "url": "/v1/games/ts-marketplace-lms-p3-coaches-pack-03-add-on" + }, + { + "slug": "ts-marketplace-lms-p3-coaches-pack-04-add-on", + "name": "TS Marketplace: LMS P3 Coaches Pack 04 Add-On", + "url": "/v1/games/ts-marketplace-lms-p3-coaches-pack-04-add-on" + }, + { + "slug": "ts-marketplace-lms-period-1-non-corridor-coach-pack-br-crimson", + "name": "TS Marketplace: LMS Period 1 Non-Corridor Coach Pack BR Crimson", + "url": "/v1/games/ts-marketplace-lms-period-1-non-corridor-coach-pack-br-crimson" + }, + { + "slug": "ts-marketplace-lms-period-1-non-corridor-coach-pack-br-maroon", + "name": "TS Marketplace: LMS Period 1 Non-Corridor Coach Pack BR Maroon", + "url": "/v1/games/ts-marketplace-lms-period-1-non-corridor-coach-pack-br-maroon" + }, + { + "slug": "ts-marketplace-lms-period-1-non-corridor-coach-pack-early-add-on", + "name": "TS Marketplace: LMS Period 1 Non-Corridor Coach Pack Early Add-On", + "url": "/v1/games/ts-marketplace-lms-period-1-non-corridor-coach-pack-early-add-on" + }, + { + "slug": "ts-marketplace-lms-period-1-non-corridor-coach-pack-late-add-on", + "name": "TS Marketplace: LMS Period 1 Non-Corridor Coach Pack Late Add-On", + "url": "/v1/games/ts-marketplace-lms-period-1-non-corridor-coach-pack-late-add-on" + }, + { + "slug": "ts-marketplace-london-brighton-reigate-expansion-add-on", + "name": "TS Marketplace: London - Brighton Reigate Expansion Add-On", + "url": "/v1/games/ts-marketplace-london-brighton-reigate-expansion-add-on" + }, + { + "slug": "ts-marketplace-maunsell-59ft-low-window-corridor-coach-pack-br-green", + "name": "TS Marketplace: Maunsell 59ft Low Window Corridor Coach Pack BR Green", + "url": "/v1/games/ts-marketplace-maunsell-59ft-low-window-corridor-coach-pack-br-green" + }, + { + "slug": "ts-marketplace-maunsell-59ft-low-window-corridor-coach-pack-crimson-cream", + "name": "TS Marketplace: Maunsell 59ft Low Window Corridor Coach Pack Crimson Cream", + "url": "/v1/games/ts-marketplace-maunsell-59ft-low-window-corridor-coach-pack-crimson-cream" + }, + { + "slug": "ts-marketplace-maunsell-59ft-low-window-corridor-coach-pack-southern-malachite-green", + "name": "TS Marketplace: Maunsell 59ft Low Window Corridor Coach Pack Southern Malachite Green", + "url": "/v1/games/ts-marketplace-maunsell-59ft-low-window-corridor-coach-pack-southern-malachite-green" + }, + { + "slug": "ts-marketplace-maunsell-59ft-low-window-corridor-coach-pack-southern-olive-green", + "name": "TS Marketplace: Maunsell 59ft Low Window Corridor Coach Pack Southern Olive Green", + "url": "/v1/games/ts-marketplace-maunsell-59ft-low-window-corridor-coach-pack-southern-olive-green" + }, + { + "slug": "ts-marketplace-metro-north-scenario-pack-01", + "name": "TS Marketplace: Metro-North Scenario Pack 01", + "url": "/v1/games/ts-marketplace-metro-north-scenario-pack-01" + }, + { + "slug": "ts-marketplace-miami-west-palm-beach-scenario-pack-01-add-on", + "name": "TS Marketplace: Miami – West Palm Beach Scenario Pack 01 Add-On", + "url": "/v1/games/ts-marketplace-miami-west-palm-beach-scenario-pack-01-add-on" + }, + { + "slug": "ts-marketplace-mittenwaldbahn-scenario-pack-01-add-on", + "name": "TS Marketplace: Mittenwaldbahn Scenario Pack 01 Add-On", + "url": "/v1/games/ts-marketplace-mittenwaldbahn-scenario-pack-01-add-on" + }, + { + "slug": "ts-marketplace-montana-hi-line-scenario-pack-01-add-on", + "name": "TS Marketplace: Montana Hi-Line Scenario Pack 01 Add-On", + "url": "/v1/games/ts-marketplace-montana-hi-line-scenario-pack-01-add-on" + }, + { + "slug": "ts-marketplace-munich-to-garmisch-scenario-pack-01-add-on", + "name": "TS Marketplace: Munich to Garmisch Scenario Pack 01 Add-On", + "url": "/v1/games/ts-marketplace-munich-to-garmisch-scenario-pack-01-add-on" + }, + { + "slug": "ts-marketplace-munich-augsburg-scenario-pack-01", + "name": "TS Marketplace: Munich-Augsburg Scenario Pack 01", + "url": "/v1/games/ts-marketplace-munich-augsburg-scenario-pack-01" + }, + { + "slug": "ts-marketplace-ner-gnr-non-corridor-br-pack", + "name": "TS Marketplace: NER/GNR Non-Corridor BR Pack", + "url": "/v1/games/ts-marketplace-ner-gnr-non-corridor-br-pack" + }, + { + "slug": "ts-marketplace-ner-gnr-non-corridor-lner-pack", + "name": "TS Marketplace: NER/GNR Non-Corridor LNER Pack", + "url": "/v1/games/ts-marketplace-ner-gnr-non-corridor-lner-pack" + }, + { + "slug": "ts-marketplace-network-southeast-br-class-313-livery-pack", + "name": "TS Marketplace: Network Southeast BR Class 313 Livery Pack", + "url": "/v1/games/ts-marketplace-network-southeast-br-class-313-livery-pack" + }, + { + "slug": "ts-marketplace-new-york-central-rf-16-livery-add-on", + "name": "TS Marketplace: New York Central RF-16 Livery Add-On", + "url": "/v1/games/ts-marketplace-new-york-central-rf-16-livery-add-on" + }, + { + "slug": "ts-marketplace-new-york-new-haven-scenario-pack-01-add-on", + "name": "TS Marketplace: New York – New Haven Scenario Pack 01 Add-On", + "url": "/v1/games/ts-marketplace-new-york-new-haven-scenario-pack-01-add-on" + }, + { + "slug": "ts-marketplace-new-york-new-haven-scenario-pack-02-add-on", + "name": "TS Marketplace: New York – New Haven Scenario Pack 02 Add-On", + "url": "/v1/games/ts-marketplace-new-york-new-haven-scenario-pack-02-add-on" + }, + { + "slug": "ts-marketplace-norfolk-southern-coal-district-scenario-pack-01-add-on", + "name": "TS Marketplace: Norfolk Southern Coal District Scenario Pack 01 Add-On", + "url": "/v1/games/ts-marketplace-norfolk-southern-coal-district-scenario-pack-01-add-on" + }, + { + "slug": "ts-marketplace-norfolk-southern-n-line-scenario-pack-01", + "name": "TS Marketplace: Norfolk Southern N-Line Scenario Pack 01", + "url": "/v1/games/ts-marketplace-norfolk-southern-n-line-scenario-pack-01" + }, + { + "slug": "ts-marketplace-norfolk-southern-sd60e-livery-pack-01", + "name": "TS Marketplace: Norfolk Southern SD60E Livery Pack 01", + "url": "/v1/games/ts-marketplace-norfolk-southern-sd60e-livery-pack-01" + }, + { + "slug": "ts-marketplace-north-jersey-coast-morristown-lines-scenario-pack-01-add-on", + "name": "TS Marketplace: North Jersey Coast & Morristown Lines Scenario Pack 01 Add-On", + "url": "/v1/games/ts-marketplace-north-jersey-coast-morristown-lines-scenario-pack-01-add-on" + }, + { + "slug": "ts-marketplace-north-jersey-coast-line-scenario-pack-01-add-on", + "name": "TS Marketplace: North Jersey Coast Line Scenario Pack 01 Add-On", + "url": "/v1/games/ts-marketplace-north-jersey-coast-line-scenario-pack-01-add-on" + }, + { + "slug": "ts-marketplace-northeast-corridor-scenario-pack-01-add-on", + "name": "TS Marketplace: Northeast Corridor Scenario Pack 01 Add-On", + "url": "/v1/games/ts-marketplace-northeast-corridor-scenario-pack-01-add-on" + }, + { + "slug": "ts-marketplace-ootz-42-wagon-pack-add-on", + "name": "TS Marketplace: Ootz 42 Wagon Pack Add-On", + "url": "/v1/games/ts-marketplace-ootz-42-wagon-pack-add-on" + }, + { + "slug": "ts-marketplace-prr-x23-boxcar-wagon-pack-add-on", + "name": "TS Marketplace: PRR X23 Boxcar Wagon Pack Add-On", + "url": "/v1/games/ts-marketplace-prr-x23-boxcar-wagon-pack-add-on" + }, + { + "slug": "ts-marketplace-peninsula-corridor-san-francisco-gilroy-scenario-mini-pack-01-add-on", + "name": "TS Marketplace: Peninsula Corridor: San Francisco - Gilroy Scenario Mini-Pack 01 Add-On", + "url": "/v1/games/ts-marketplace-peninsula-corridor-san-francisco-gilroy-scenario-mini-pack-01-add-on" + }, + { + "slug": "ts-marketplace-peninsula-corridor-san-francisco-gilroy-scenario-mini-pack-02-add-on", + "name": "TS Marketplace: Peninsula Corridor: San Francisco - Gilroy Scenario Mini-Pack 02 Add-On", + "url": "/v1/games/ts-marketplace-peninsula-corridor-san-francisco-gilroy-scenario-mini-pack-02-add-on" + }, + { + "slug": "ts-marketplace-secr-60ft-birdcage-br-crimson-add-on", + "name": "TS Marketplace: SECR 60FT Birdcage BR Crimson Add-on", + "url": "/v1/games/ts-marketplace-secr-60ft-birdcage-br-crimson-add-on" + }, + { + "slug": "ts-marketplace-secr-60ft-birdcage-secr-crimson-lake-add-on", + "name": "TS Marketplace: SECR 60FT Birdcage SECR Crimson Lake Add-On", + "url": "/v1/games/ts-marketplace-secr-60ft-birdcage-secr-crimson-lake-add-on" + }, + { + "slug": "ts-marketplace-secr-60ft-birdcage-sr-green-add-on", + "name": "TS Marketplace: SECR 60FT Birdcage SR Green Add-On", + "url": "/v1/games/ts-marketplace-secr-60ft-birdcage-sr-green-add-on" + }, + { + "slug": "ts-marketplace-sahimms-901-wagon-pack-add-on", + "name": "TS Marketplace: Sahimms 901 Wagon Pack Add-On", + "url": "/v1/games/ts-marketplace-sahimms-901-wagon-pack-add-on" + }, + { + "slug": "ts-marketplace-seaboard-sd50-livery-pack", + "name": "TS Marketplace: Seaboard SD50 Livery Pack", + "url": "/v1/games/ts-marketplace-seaboard-sd50-livery-pack" + }, + { + "slug": "ts-marketplace-seacow-wagon-pack-add-on", + "name": "TS Marketplace: Seacow Wagon Pack Add-On", + "url": "/v1/games/ts-marketplace-seacow-wagon-pack-add-on" + }, + { + "slug": "ts-marketplace-sherman-hill-scenario-pack-01-add-on", + "name": "TS Marketplace: Sherman Hill Scenario Pack 01 Add-On", + "url": "/v1/games/ts-marketplace-sherman-hill-scenario-pack-01-add-on" + }, + { + "slug": "ts-marketplace-soldier-summit-salt-lake-city-scenario-pack-01-add-on", + "name": "TS Marketplace: Soldier Summit & Salt Lake City Scenario Pack 01 Add-On", + "url": "/v1/games/ts-marketplace-soldier-summit-salt-lake-city-scenario-pack-01-add-on" + }, + { + "slug": "ts-marketplace-soldier-summit-salt-lake-city-scenario-pack-02-add-on", + "name": "TS Marketplace: Soldier Summit & Salt Lake City Scenario Pack 02 Add-On", + "url": "/v1/games/ts-marketplace-soldier-summit-salt-lake-city-scenario-pack-02-add-on" + }, + { + "slug": "ts-marketplace-soldier-summit-scenario-pack-01-add-on", + "name": "TS Marketplace: Soldier Summit Scenario Pack 01 Add-On", + "url": "/v1/games/ts-marketplace-soldier-summit-scenario-pack-01-add-on" + }, + { + "slug": "ts-marketplace-south-london-network-scenario-pack-01", + "name": "TS Marketplace: South London Network Scenario Pack 01", + "url": "/v1/games/ts-marketplace-south-london-network-scenario-pack-01" + }, + { + "slug": "ts-marketplace-southern-pacific-cotton-belt-gp30-livery-add-on", + "name": "TS Marketplace: Southern Pacific/Cotton Belt GP30 Livery Add-On", + "url": "/v1/games/ts-marketplace-southern-pacific-cotton-belt-gp30-livery-add-on" + }, + { + "slug": "ts-marketplace-springfield-line-scenario-pack-01", + "name": "TS Marketplace: Springfield Line Scenario Pack 01", + "url": "/v1/games/ts-marketplace-springfield-line-scenario-pack-01" + }, + { + "slug": "ts-marketplace-surselva-line-christmas-scenario-pack", + "name": "TS Marketplace: Surselva Line Christmas Scenario Pack", + "url": "/v1/games/ts-marketplace-surselva-line-christmas-scenario-pack" + }, + { + "slug": "ts-marketplace-tagnoos-898-wagon-pack-add-on", + "name": "TS Marketplace: Tagnoos 898 Wagon Pack Add-On", + "url": "/v1/games/ts-marketplace-tagnoos-898-wagon-pack-add-on" + }, + { + "slug": "ts-marketplace-tamns-893-wagon-pack-add-on", + "name": "TS Marketplace: Tamns 893 Wagon Pack Add-On", + "url": "/v1/games/ts-marketplace-tamns-893-wagon-pack-add-on" + }, + { + "slug": "ts-marketplace-tfl-rail-br-class-315-emu-livery-add-on", + "name": "TS Marketplace: TfL Rail BR Class 315 EMU Livery Add-On", + "url": "/v1/games/ts-marketplace-tfl-rail-br-class-315-emu-livery-add-on" + }, + { + "slug": "ts-marketplace-thompson-corridor-coaches-pack-03-add-on", + "name": "TS Marketplace: Thompson Corridor Coaches Pack 03 Add-On", + "url": "/v1/games/ts-marketplace-thompson-corridor-coaches-pack-03-add-on" + }, + { + "slug": "ts-marketplace-thompson-suburban-coaches-pack-01-add-on", + "name": "TS Marketplace: Thompson Suburban Coaches Pack 01 Add-On", + "url": "/v1/games/ts-marketplace-thompson-suburban-coaches-pack-01-add-on" + }, + { + "slug": "ts-marketplace-thompson-suburban-coaches-pack-02-add-on", + "name": "TS Marketplace: Thompson Suburban Coaches Pack 02 Add-On", + "url": "/v1/games/ts-marketplace-thompson-suburban-coaches-pack-02-add-on" + }, + { + "slug": "ts-marketplace-three-country-corner-scenario-pack-01-add-on", + "name": "TS Marketplace: Three Country Corner Scenario Pack 01 Add-On", + "url": "/v1/games/ts-marketplace-three-country-corner-scenario-pack-01-add-on" + }, + { + "slug": "ts-marketplace-union-pacific-scenario-pack-01-add-on", + "name": "TS Marketplace: Union Pacific Scenario Pack 01 Add-On", + "url": "/v1/games/ts-marketplace-union-pacific-scenario-pack-01-add-on" + }, + { + "slug": "ts-marketplace-union-pacific-scenario-pack-02-add-on", + "name": "TS Marketplace: Union Pacific Scenario Pack 02 Add-On", + "url": "/v1/games/ts-marketplace-union-pacific-scenario-pack-02-add-on" + }, + { + "slug": "ts-marketplace-vga-vka-wagon-pack-add-on", + "name": "TS Marketplace: VGA/VKA Wagon Pack Add-On", + "url": "/v1/games/ts-marketplace-vga-vka-wagon-pack-add-on" + }, + { + "slug": "ts-marketplace-weardale-teesdale-scenario-pack-01", + "name": "TS Marketplace: Weardale & Teesdale Scenario Pack 01", + "url": "/v1/games/ts-marketplace-weardale-teesdale-scenario-pack-01" + }, + { + "slug": "ts-marketplace-woodhead-electric-railway-in-blue-scenario-pack-01", + "name": "TS Marketplace: Woodhead Electric Railway in Blue Scenario Pack 01", + "url": "/v1/games/ts-marketplace-woodhead-electric-railway-in-blue-scenario-pack-01" + }, + { + "slug": "ts-marketplace-zacns-wagon-pack-01-add-on", + "name": "TS Marketplace: Zacns Wagon Pack 01 Add-On", + "url": "/v1/games/ts-marketplace-zacns-wagon-pack-01-add-on" + }, + { + "slug": "ts-marketplace-zacns-wagon-pack-02-add-on", + "name": "TS Marketplace: Zacns Wagon Pack 02 Add-On", + "url": "/v1/games/ts-marketplace-zacns-wagon-pack-02-add-on" + }, + { + "slug": "ts-marketplace-zags-pack-01-add-on", + "name": "TS Marketplace: Zags Pack 01 Add-On", + "url": "/v1/games/ts-marketplace-zags-pack-01-add-on" + }, + { + "slug": "ts-marketplace-zags-pack-02-add-on", + "name": "TS Marketplace: Zags Pack 02 Add-On", + "url": "/v1/games/ts-marketplace-zags-pack-02-add-on" + }, + { + "slug": "ts-marketplace-bb-1044-100-livery-add-on", + "name": "TS Marketplace: ÖBB 1044 '100' Livery Add-On", + "url": "/v1/games/ts-marketplace-bb-1044-100-livery-add-on" + }, + { + "slug": "ts-marketplace-bb-1144-livery-pack-add-on", + "name": "TS Marketplace: ÖBB 1144 Livery Pack Add-On", + "url": "/v1/games/ts-marketplace-bb-1144-livery-pack-add-on" + }, + { + "slug": "ts-marketplace-bb-rnoos-wagon-pack-add-on", + "name": "TS Marketplace: ÖBB Rnoos Wagon Pack Add-On", + "url": "/v1/games/ts-marketplace-bb-rnoos-wagon-pack-add-on" + }, + { + "slug": "ts-marketplace-bb-sgns-container-wagon-pack", + "name": "TS Marketplace: ÖBB Sgns Container Wagon Pack", + "url": "/v1/games/ts-marketplace-bb-sgns-container-wagon-pack" + }, + { + "slug": "ts-marketplace-bb-sgns-hopper-pack", + "name": "TS Marketplace: ÖBB Sgns Hopper Pack", + "url": "/v1/games/ts-marketplace-bb-sgns-hopper-pack" + }, { "slug": "tsa-frisky", "name": "TSA Frisky", @@ -694906,6 +713146,11 @@ "name": "TV Sports: Football", "url": "/v1/games/tv-sports-football" }, + { + "slug": "tv-sports-football-1989-nfl-season", + "name": "TV Sports: Football - 1989 NFL Season", + "url": "/v1/games/tv-sports-football-1989-nfl-season" + }, { "slug": "tv-studio-story", "name": "TV Studio Story", @@ -695046,6 +713291,11 @@ "name": "TYRONE SOULZ", "url": "/v1/games/tyrone-soulz" }, + { + "slug": "tyrone-soulz-bitch-ass-pussy-mode", + "name": "TYRONE SOULZ: Bitch Ass Pussy Mode", + "url": "/v1/games/tyrone-soulz-bitch-ass-pussy-mode" + }, { "slug": "tzompantli", "name": "TZOMPANTLI", @@ -696136,6 +714386,11 @@ "name": "Taiko no Tatsujin: Rhythm Festival", "url": "/v1/games/taiko-no-tatsujin-rhythm-festival" }, + { + "slug": "taiko-no-tatsujin-rhythmic-adventure-pack", + "name": "Taiko no Tatsujin: Rhythmic Adventure Pack", + "url": "/v1/games/taiko-no-tatsujin-rhythmic-adventure-pack" + }, { "slug": "taiko-no-tatsujin-tatakon-de-dodon-ga-don", "name": "Taiko no Tatsujin: Tatakon de Dodon ga Don", @@ -696366,6 +714621,11 @@ "name": "Taimanin Asagi", "url": "/v1/games/taimanin-asagi" }, + { + "slug": "taimanin-asagi-1-trial", + "name": "Taimanin Asagi 1: Trial", + "url": "/v1/games/taimanin-asagi-1-trial" + }, { "slug": "taimanin-asagi-2", "name": "Taimanin Asagi 2", @@ -696431,6 +714691,11 @@ "name": "Taimanin Yukikaze", "url": "/v1/games/taimanin-yukikaze" }, + { + "slug": "taimanin-yukikaze-1-trial", + "name": "Taimanin Yukikaze 1: Trial", + "url": "/v1/games/taimanin-yukikaze-1-trial" + }, { "slug": "taimanin-yukikaze-2", "name": "Taimanin Yukikaze 2", @@ -696491,6 +714756,11 @@ "name": "Taisen Puzzle Dama", "url": "/v1/games/taisen-puzzle-dama" }, + { + "slug": "taisen-tanto-r-sashissu", + "name": "Taisen Tanto-R Sashissu!!", + "url": "/v1/games/taisen-tanto-r-sashissu" + }, { "slug": "taisho-mebiusline-chicchaisan", "name": "Taisho Mebiusline Chicchaisan", @@ -696541,6 +714811,51 @@ "name": "Taito Legends Power-Up", "url": "/v1/games/taito-legends-power-up" }, + { + "slug": "taito-memories", + "name": "Taito Memories", + "url": "/v1/games/taito-memories" + }, + { + "slug": "taito-memories-ii-gekan", + "name": "Taito Memories II: Gekan", + "url": "/v1/games/taito-memories-ii-gekan" + }, + { + "slug": "taito-memories-ii-joukan", + "name": "Taito Memories II: Joukan", + "url": "/v1/games/taito-memories-ii-joukan" + }, + { + "slug": "taito-memories-pocket", + "name": "Taito Memories Pocket", + "url": "/v1/games/taito-memories-pocket" + }, + { + "slug": "taito-memories-gekan", + "name": "Taito Memories: Gekan", + "url": "/v1/games/taito-memories-gekan" + }, + { + "slug": "taito-memories-joukan", + "name": "Taito Memories: Joukan", + "url": "/v1/games/taito-memories-joukan" + }, + { + "slug": "taito-milestones", + "name": "Taito Milestones", + "url": "/v1/games/taito-milestones" + }, + { + "slug": "taito-milestones-2", + "name": "Taito Milestones 2", + "url": "/v1/games/taito-milestones-2" + }, + { + "slug": "taito-milestones-3", + "name": "Taito Milestones 3", + "url": "/v1/games/taito-milestones-3" + }, { "slug": "taito-power-goal", "name": "Taito Power Goal", @@ -697646,6 +715961,11 @@ "name": "Tales of Arise", "url": "/v1/games/tales-of-arise" }, + { + "slug": "tales-of-arise-beyond-the-dawn-expansion", + "name": "Tales of Arise - Beyond the Dawn Expansion", + "url": "/v1/games/tales-of-arise-beyond-the-dawn-expansion" + }, { "slug": "tales-of-asteria", "name": "Tales of Asteria", @@ -697966,6 +716286,21 @@ "name": "Tales of Monkey Island", "url": "/v1/games/tales-of-monkey-island" }, + { + "slug": "tales-of-monkey-island-chapter-1-launch-of-the-screaming-narwhal", + "name": "Tales of Monkey Island Chapter 1: Launch of the Screaming Narwhal", + "url": "/v1/games/tales-of-monkey-island-chapter-1-launch-of-the-screaming-narwhal" + }, + { + "slug": "tales-of-monkey-island-chapter-3-lair-of-the-leviathan", + "name": "Tales of Monkey Island Chapter 3: Lair of the Leviathan", + "url": "/v1/games/tales-of-monkey-island-chapter-3-lair-of-the-leviathan" + }, + { + "slug": "tales-of-monkey-island-chapter-5-rise-of-the-pirate-god", + "name": "Tales of Monkey Island Chapter 5: Rise of the Pirate God", + "url": "/v1/games/tales-of-monkey-island-chapter-5-rise-of-the-pirate-god" + }, { "slug": "tales-of-monkey-island-chapter-2-the-siege-of-spinner-cay", "name": "Tales of Monkey Island: Chapter 2 - The Siege of Spinner Cay", @@ -698516,11 +716851,21 @@ "name": "TaliVan", "url": "/v1/games/talivan" }, + { + "slug": "talisman-q97290219", + "name": "Talisman", + "url": "/v1/games/talisman-q97290219" + }, { "slug": "talisman", "name": "Talisman", "url": "/v1/games/talisman" }, + { + "slug": "talisman-dungeon", + "name": "Talisman Dungeon", + "url": "/v1/games/talisman-dungeon" + }, { "slug": "talisman-online", "name": "Talisman Online", @@ -700631,6 +718976,11 @@ "name": "Tartapolis", "url": "/v1/games/tartapolis" }, + { + "slug": "tartar", + "name": "Tartar", + "url": "/v1/games/tartar" + }, { "slug": "tartaria-the-forgotten-tale", "name": "Tartaria: The forgotten tale", @@ -701346,6 +719696,11 @@ "name": "Taya's Alphabet", "url": "/v1/games/taya-s-alphabet" }, + { + "slug": "tayfun-tuna-games", + "name": "Tayfun Tuna Games", + "url": "/v1/games/tayfun-tuna-games" + }, { "slug": "tayutama-2-you-re-the-only-one", "name": "Tayutama 2: You're the Only One", @@ -701551,6 +719906,11 @@ "name": "TealGrounds", "url": "/v1/games/tealgrounds" }, + { + "slug": "team-17-collection-volume-1", + "name": "Team 17 Collection Volume 1", + "url": "/v1/games/team-17-collection-volume-1" + }, { "slug": "team-a-r-g-anthology", "name": "Team A.R.G. Anthology", @@ -701611,11 +719971,21 @@ "name": "Team Fortress 2 Classified", "url": "/v1/games/team-fortress-2-classified" }, + { + "slug": "team-fortress-2-brotherhood-of-arms", + "name": "Team Fortress 2: Brotherhood of Arms", + "url": "/v1/games/team-fortress-2-brotherhood-of-arms" + }, { "slug": "team-fortress-classic", "name": "Team Fortress Classic", "url": "/v1/games/team-fortress-classic" }, + { + "slug": "team-fortress-source-2", + "name": "Team Fortress: Source 2", + "url": "/v1/games/team-fortress-source-2" + }, { "slug": "team-four-star-rpg", "name": "Team Four Star RPG", @@ -701651,6 +720021,11 @@ "name": "Team Rise", "url": "/v1/games/team-rise" }, + { + "slug": "team-sneed-megapack", + "name": "Team SNEED Megapack", + "url": "/v1/games/team-sneed-megapack" + }, { "slug": "team-sonic-racing", "name": "Team Sonic Racing", @@ -702311,6 +720686,11 @@ "name": "Tecmo Classic Arcade", "url": "/v1/games/tecmo-classic-arcade" }, + { + "slug": "tecmo-cup-football-game", + "name": "Tecmo Cup Football Game", + "url": "/v1/games/tecmo-cup-football-game" + }, { "slug": "tecmo-cup-soccer-game", "name": "Tecmo Cup Soccer Game", @@ -702636,6 +721016,11 @@ "name": "Teenage Mutant Ninja Turtles Arcade: Wrath of the Mutants", "url": "/v1/games/teenage-mutant-ninja-turtles-arcade-wrath-of-the-mutants" }, + { + "slug": "teenage-mutant-ninja-turtles-double-pack", + "name": "Teenage Mutant Ninja Turtles Double Pack", + "url": "/v1/games/teenage-mutant-ninja-turtles-double-pack" + }, { "slug": "teenage-mutant-ninja-turtles-fast-forward-ninja-training-nyc", "name": "Teenage Mutant Ninja Turtles Fast Forward: Ninja Training NYC", @@ -702671,6 +721056,11 @@ "name": "Teenage Mutant Ninja Turtles Legends", "url": "/v1/games/teenage-mutant-ninja-turtles-legends" }, + { + "slug": "teenage-mutant-ninja-turtles-vs-power-rangers-ultimate-hero-clash", + "name": "Teenage Mutant Ninja Turtles VS Power Rangers: Ultimate Hero Clash", + "url": "/v1/games/teenage-mutant-ninja-turtles-vs-power-rangers-ultimate-hero-clash" + }, { "slug": "teenage-mutant-ninja-turtles-x-hello-kitty-and-friends", "name": "Teenage Mutant Ninja Turtles x Hello Kitty and Friends", @@ -702711,6 +721101,16 @@ "name": "Teenage Mutant Ninja Turtles: Danger of the Ooze", "url": "/v1/games/teenage-mutant-ninja-turtles-danger-of-the-ooze" }, + { + "slug": "teenage-mutant-ninja-turtles-dark-horizons", + "name": "Teenage Mutant Ninja Turtles: Dark Horizons", + "url": "/v1/games/teenage-mutant-ninja-turtles-dark-horizons" + }, + { + "slug": "teenage-mutant-ninja-turtles-deep-space-april", + "name": "Teenage Mutant Ninja Turtles: Deep Space April", + "url": "/v1/games/teenage-mutant-ninja-turtles-deep-space-april" + }, { "slug": "teenage-mutant-ninja-turtles-double-damage", "name": "Teenage Mutant Ninja Turtles: Double Damage", @@ -702731,6 +721131,11 @@ "name": "Teenage Mutant Ninja Turtles: Half-Shell Heroes", "url": "/v1/games/teenage-mutant-ninja-turtles-half-shell-heroes" }, + { + "slug": "teenage-mutant-ninja-turtles-heist-in-a-half-shell", + "name": "Teenage Mutant Ninja Turtles: Heist in a Half Shell", + "url": "/v1/games/teenage-mutant-ninja-turtles-heist-in-a-half-shell" + }, { "slug": "teenage-mutant-ninja-turtles-kickin-it-old-school", "name": "Teenage Mutant Ninja Turtles: Kickin' it Old School", @@ -702821,6 +721226,11 @@ "name": "Teenage Mutant Ninja Turtles: Tactical Takedown", "url": "/v1/games/teenage-mutant-ninja-turtles-tactical-takedown" }, + { + "slug": "teenage-mutant-ninja-turtles-the-cowabunga-collection", + "name": "Teenage Mutant Ninja Turtles: The Cowabunga Collection", + "url": "/v1/games/teenage-mutant-ninja-turtles-the-cowabunga-collection" + }, { "slug": "teenage-mutant-ninja-turtles-the-hyperstone-heist", "name": "Teenage Mutant Ninja Turtles: The Hyperstone Heist", @@ -703101,6 +721511,11 @@ "name": "Tekken Tag Tournament 2", "url": "/v1/games/tekken-tag-tournament-2" }, + { + "slug": "tekken-x-street-fighter", + "name": "Tekken X Street Fighter", + "url": "/v1/games/tekken-x-street-fighter" + }, { "slug": "tekkyu-fight-the-great-battle-gaiden", "name": "Tekkyu Fight! The Great Battle Gaiden", @@ -703256,6 +721671,11 @@ "name": "Telenet RPG Collection", "url": "/v1/games/telenet-rpg-collection" }, + { + "slug": "telenet-shooting-collection", + "name": "Telenet Shooting Collection", + "url": "/v1/games/telenet-shooting-collection" + }, { "slug": "telenet-shooting-collection-ii", "name": "Telenet Shooting Collection II", @@ -703446,6 +721866,11 @@ "name": "Telos Pragmaton", "url": "/v1/games/telos-pragmaton" }, + { + "slug": "telsport-302", + "name": "Telsport 302", + "url": "/v1/games/telsport-302" + }, { "slug": "telvoikai", "name": "Telvoikai", @@ -703621,6 +722046,11 @@ "name": "Temple Run 2", "url": "/v1/games/temple-run-2" }, + { + "slug": "temple-run", + "name": "Temple Run+", + "url": "/v1/games/temple-run" + }, { "slug": "temple-run-puzzle-adventure", "name": "Temple Run: Puzzle Adventure", @@ -704001,6 +722431,11 @@ "name": "Temtem", "url": "/v1/games/temtem" }, + { + "slug": "temtem-deluxe-edition", + "name": "Temtem - Deluxe Edition", + "url": "/v1/games/temtem-deluxe-edition" + }, { "slug": "temtem-showdown", "name": "Temtem: Showdown", @@ -704036,6 +722471,11 @@ "name": "Ten Dates", "url": "/v1/games/ten-dates" }, + { + "slug": "ten-great-games", + "name": "Ten Great Games", + "url": "/v1/games/ten-great-games" + }, { "slug": "ten-on-ten", "name": "Ten On Ten", @@ -705791,6 +724231,16 @@ "name": "Terraria", "url": "/v1/games/terraria" }, + { + "slug": "terraria-2", + "name": "Terraria 2", + "url": "/v1/games/terraria-2" + }, + { + "slug": "terraria-otherworld", + "name": "Terraria: Otherworld", + "url": "/v1/games/terraria-otherworld" + }, { "slug": "terrarium", "name": "Terrarium", @@ -706701,6 +725151,11 @@ "name": "Tetris", "url": "/v1/games/tetris" }, + { + "slug": "tetris-dr-mario", + "name": "Tetris & Dr. Mario", + "url": "/v1/games/tetris-dr-mario" + }, { "slug": "tetris-2-q19897934", "name": "Tetris 2", @@ -706821,6 +725276,11 @@ "name": "Tetris Journey", "url": "/v1/games/tetris-journey" }, + { + "slug": "tetris-online-inc", + "name": "Tetris Online, Inc.", + "url": "/v1/games/tetris-online-inc" + }, { "slug": "tetris-party", "name": "Tetris Party", @@ -706911,6 +725371,11 @@ "name": "Tetris: The Grand Master 3 - Terror Instinct", "url": "/v1/games/tetris-the-grand-master-3-terror-instinct" }, + { + "slug": "tetris-the-grand-master-4-the-masters-of-round", + "name": "Tetris: The Grand Master 4 - The Masters of Round", + "url": "/v1/games/tetris-the-grand-master-4-the-masters-of-round" + }, { "slug": "tetris-the-grand-master-ace", "name": "Tetris: The Grand Master Ace", @@ -707661,6 +726126,11 @@ "name": "Thayer's Quest", "url": "/v1/games/thayer-s-quest" }, + { + "slug": "the-quiet-please-collection", + "name": "The \"Quiet, Please!\" Collection", + "url": "/v1/games/the-quiet-please-collection" + }, { "slug": "the-1-000-000-pyramid", "name": "The $1,000,000 Pyramid", @@ -708746,6 +727216,11 @@ "name": "The Agency: Chapter 2", "url": "/v1/games/the-agency-chapter-2" }, + { + "slug": "the-agency-covert-ops", + "name": "The Agency: Covert Ops", + "url": "/v1/games/the-agency-covert-ops" + }, { "slug": "the-agnietta-the-holy-healer-the-cursed-dungeon", "name": "The Agnietta ~The holy healer & the cursed dungeon~", @@ -708926,6 +727401,11 @@ "name": "The Altered Lands", "url": "/v1/games/the-altered-lands" }, + { + "slug": "the-alto-collection", + "name": "The Alto Collection", + "url": "/v1/games/the-alto-collection" + }, { "slug": "the-aly-aj-adventure", "name": "The Aly & AJ Adventure", @@ -708971,6 +727451,11 @@ "name": "The Amazing Crackpots Club!", "url": "/v1/games/the-amazing-crackpots-club" }, + { + "slug": "the-amazing-eternals", + "name": "The Amazing Eternals", + "url": "/v1/games/the-amazing-eternals" + }, { "slug": "the-amazing-fantastics-issue-1", "name": "The Amazing Fantastics: Issue 1", @@ -709611,6 +728096,11 @@ "name": "The Assailant's Arrival", "url": "/v1/games/the-assailant-s-arrival" }, + { + "slug": "the-assassin", + "name": "The Assassin", + "url": "/v1/games/the-assassin" + }, { "slug": "the-assembly", "name": "The Assembly", @@ -709761,6 +728251,11 @@ "name": "The Automaton of Second London", "url": "/v1/games/the-automaton-of-second-london" }, + { + "slug": "the-avengers", + "name": "The Avengers", + "url": "/v1/games/the-avengers" + }, { "slug": "the-avengers-the-mobile-game", "name": "The Avengers: The Mobile Game", @@ -709941,6 +728436,11 @@ "name": "The Backrooms Game", "url": "/v1/games/the-backrooms-game" }, + { + "slug": "the-backrooms-game-support-this-game", + "name": "The Backrooms Game - Support This Game! 😎👉👉", + "url": "/v1/games/the-backrooms-game-support-this-game" + }, { "slug": "the-backrooms-multiplayer", "name": "The Backrooms Multiplayer", @@ -710361,6 +728861,11 @@ "name": "The Basement", "url": "/v1/games/the-basement" }, + { + "slug": "the-basement-collection", + "name": "The Basement Collection", + "url": "/v1/games/the-basement-collection" + }, { "slug": "the-basement-ritual", "name": "The Basement Ritual", @@ -710746,6 +729251,11 @@ "name": "The Berlin Apartment", "url": "/v1/games/the-berlin-apartment" }, + { + "slug": "the-berlin-wall", + "name": "The Berlin Wall", + "url": "/v1/games/the-berlin-wall" + }, { "slug": "the-bernard-zakheim-murals-history-of-medicine-in-california", "name": "The Bernard Zakheim Murals: History of Medicine in California", @@ -710886,6 +729396,11 @@ "name": "The Big Con", "url": "/v1/games/the-big-con" }, + { + "slug": "the-big-con-and-rainbow-billy-wholesome-bundle", + "name": "The Big Con and Rainbow Billy Wholesome Bundle", + "url": "/v1/games/the-big-con-and-rainbow-billy-wholesome-bundle" + }, { "slug": "the-big-heap", "name": "The Big Heap", @@ -710991,11 +729506,51 @@ "name": "The Binding of Isaac", "url": "/v1/games/the-binding-of-isaac" }, + { + "slug": "the-binding-of-isaac-unholy-edition", + "name": "The Binding of Isaac (Unholy Edition)", + "url": "/v1/games/the-binding-of-isaac-unholy-edition" + }, + { + "slug": "the-binding-of-isaac-collection", + "name": "The Binding of Isaac Collection", + "url": "/v1/games/the-binding-of-isaac-collection" + }, + { + "slug": "the-binding-of-isaac-demo", + "name": "The Binding of Isaac demo", + "url": "/v1/games/the-binding-of-isaac-demo" + }, + { + "slug": "the-binding-of-isaac-afterbirth-q61009986", + "name": "The Binding of Isaac: Afterbirth", + "url": "/v1/games/the-binding-of-isaac-afterbirth-q61009986" + }, + { + "slug": "the-binding-of-isaac-afterbirth", + "name": "The Binding of Isaac: Afterbirth+", + "url": "/v1/games/the-binding-of-isaac-afterbirth" + }, + { + "slug": "the-binding-of-isaac-afterbirth-bundle", + "name": "The Binding of Isaac: Afterbirth+ Bundle", + "url": "/v1/games/the-binding-of-isaac-afterbirth-bundle" + }, { "slug": "the-binding-of-isaac-rebirth", "name": "The Binding of Isaac: Rebirth", "url": "/v1/games/the-binding-of-isaac-rebirth" }, + { + "slug": "the-binding-of-isaac-rebirth-complete-bundle", + "name": "The Binding of Isaac: Rebirth Complete Bundle", + "url": "/v1/games/the-binding-of-isaac-rebirth-complete-bundle" + }, + { + "slug": "the-binding-of-isaac-repentance", + "name": "The Binding of Isaac: Repentance", + "url": "/v1/games/the-binding-of-isaac-repentance" + }, { "slug": "the-bingo-room", "name": "The Bingo Room", @@ -711036,6 +729591,11 @@ "name": "The Bit's Escape", "url": "/v1/games/the-bit-s-escape" }, + { + "slug": "the-bitmap-brothers-compilation", + "name": "The Bitmap Brothers Compilation", + "url": "/v1/games/the-bitmap-brothers-compilation" + }, { "slug": "the-bitmap-brothers-volume-1", "name": "The Bitmap Brothers Volume 1", @@ -711241,6 +729801,11 @@ "name": "The Blade of Blackpoole", "url": "/v1/games/the-blade-of-blackpoole" }, + { + "slug": "the-blair-witch-project", + "name": "The Blair Witch Project", + "url": "/v1/games/the-blair-witch-project" + }, { "slug": "the-bleakest-keep", "name": "The Bleakest Keep", @@ -711591,6 +730156,11 @@ "name": "The Book of Unwritten Tales", "url": "/v1/games/the-book-of-unwritten-tales" }, + { + "slug": "the-book-of-unwritten-tales-the-critter-chronicles", + "name": "The Book of Unwritten Tales: The Critter Chronicles", + "url": "/v1/games/the-book-of-unwritten-tales-the-critter-chronicles" + }, { "slug": "the-book-of-warriors", "name": "The Book of Warriors", @@ -711646,6 +730216,11 @@ "name": "The Bornless", "url": "/v1/games/the-bornless" }, + { + "slug": "the-boss-baby-get-that-baby", + "name": "The Boss Baby: Get That Baby!", + "url": "/v1/games/the-boss-baby-get-that-baby" + }, { "slug": "the-boss-gangsters-nightlife", "name": "The Boss Gangsters : Nightlife", @@ -712131,6 +730706,11 @@ "name": "The C.H.A.O.S. Continuum", "url": "/v1/games/the-c-h-a-o-s-continuum" }, + { + "slug": "the-cd-games-pack", + "name": "The CD Games Pack", + "url": "/v1/games/the-cd-games-pack" + }, { "slug": "the-ceo-love-me", "name": "The CEO Love Me", @@ -712826,6 +731406,11 @@ "name": "The Cheetah Girls: Pop Star Sensations", "url": "/v1/games/the-cheetah-girls-pop-star-sensations" }, + { + "slug": "the-cheetahmen", + "name": "The Cheetahmen", + "url": "/v1/games/the-cheetahmen" + }, { "slug": "the-chef-s-shift", "name": "The Chef's Shift", @@ -713006,6 +731591,11 @@ "name": "The Chronicler", "url": "/v1/games/the-chronicler" }, + { + "slug": "the-chronicles-of-myrtana-archolos", + "name": "The Chronicles Of Myrtana: Archolos", + "url": "/v1/games/the-chronicles-of-myrtana-archolos" + }, { "slug": "the-chronicles-of-confucius-s-journey", "name": "The Chronicles of Confucius's Journey", @@ -713111,6 +731701,11 @@ "name": "The Chronicles of Riddick: Escape from Butcher Bay", "url": "/v1/games/the-chronicles-of-riddick-escape-from-butcher-bay" }, + { + "slug": "the-chronicles-of-riddick-escape-from-butcher-bay-developer-s-cut", + "name": "The Chronicles of Riddick: Escape from Butcher Bay – Developer's Cut", + "url": "/v1/games/the-chronicles-of-riddick-escape-from-butcher-bay-developer-s-cut" + }, { "slug": "the-chronicles-of-riddick-the-hunt-for-riddick", "name": "The Chronicles of Riddick: The Hunt for Riddick", @@ -713216,6 +731811,11 @@ "name": "The City of Lost Children", "url": "/v1/games/the-city-of-lost-children" }, + { + "slug": "the-city-of-metronome", + "name": "The City of Metronome", + "url": "/v1/games/the-city-of-metronome" + }, { "slug": "the-city-of-time", "name": "The City of Time", @@ -713451,6 +732051,11 @@ "name": "The ClueFinders: The Incredible Toy Store Adventure!", "url": "/v1/games/the-cluefinders-the-incredible-toy-store-adventure" }, + { + "slug": "the-coffin-of-andy-and-leyley-demo", + "name": "The Coffin of Andy and Leyley Demo", + "url": "/v1/games/the-coffin-of-andy-and-leyley-demo" + }, { "slug": "the-coin-game", "name": "The Coin Game", @@ -713651,6 +732256,21 @@ "name": "The Complete Computer Fireworks Celebration Kit", "url": "/v1/games/the-complete-computer-fireworks-celebration-kit" }, + { + "slug": "the-complete-doom-accessory-pack", + "name": "The Complete Doom Accessory Pack", + "url": "/v1/games/the-complete-doom-accessory-pack" + }, + { + "slug": "the-complete-doom-accessory-pack-volume-ii", + "name": "The Complete Doom Accessory Pack, Volume II", + "url": "/v1/games/the-complete-doom-accessory-pack-volume-ii" + }, + { + "slug": "the-complete-doom-accessory-pack-volume-iii", + "name": "The Complete Doom Accessory Pack, Volume III", + "url": "/v1/games/the-complete-doom-accessory-pack-volume-iii" + }, { "slug": "the-complex", "name": "The Complex", @@ -713961,6 +732581,11 @@ "name": "The Count Lucanor", "url": "/v1/games/the-count-lucanor" }, + { + "slug": "the-count-of-monster-disco", + "name": "The Count of Monster Disco", + "url": "/v1/games/the-count-of-monster-disco" + }, { "slug": "the-count-of-monte-carlo", "name": "The Count of Monte Carlo", @@ -714131,6 +732756,11 @@ "name": "The Crew Motorfest", "url": "/v1/games/the-crew-motorfest" }, + { + "slug": "the-crew-wild-run", + "name": "The Crew: Wild Run", + "url": "/v1/games/the-crew-wild-run" + }, { "slug": "the-crimping", "name": "The Crimping", @@ -714271,6 +732901,11 @@ "name": "The Crown Stones: Mirrah", "url": "/v1/games/the-crown-stones-mirrah" }, + { + "slug": "the-crown-tundra", + "name": "The Crown Tundra", + "url": "/v1/games/the-crown-tundra" + }, { "slug": "the-crown-of-kings", "name": "The Crown of Kings", @@ -714281,6 +732916,11 @@ "name": "The Crown of Leaves", "url": "/v1/games/the-crown-of-leaves" }, + { + "slug": "the-crown-of-leaves-chapter-2", + "name": "The Crown of Leaves: Chapter 2", + "url": "/v1/games/the-crown-of-leaves-chapter-2" + }, { "slug": "the-crown-of-wu", "name": "The Crown of Wu", @@ -714486,6 +733126,11 @@ "name": "The Curator - Prologue", "url": "/v1/games/the-curator-prologue" }, + { + "slug": "the-cures-of-monkey-island-demo", + "name": "The Cures of Monkey Island Demo", + "url": "/v1/games/the-cures-of-monkey-island-demo" + }, { "slug": "the-curiosity", "name": "The Curiosity", @@ -715051,6 +733696,11 @@ "name": "The Dark Inside Me - Chapter II", "url": "/v1/games/the-dark-inside-me-chapter-ii" }, + { + "slug": "the-dark-knight", + "name": "The Dark Knight", + "url": "/v1/games/the-dark-knight" + }, { "slug": "the-dark-knight-rises", "name": "The Dark Knight Rises", @@ -716016,6 +734666,11 @@ "name": "The Devil's Garden", "url": "/v1/games/the-devil-s-garden" }, + { + "slug": "the-devil-s-men", + "name": "The Devil's Men", + "url": "/v1/games/the-devil-s-men" + }, { "slug": "the-devil-s-shoes", "name": "The Devil's Shoes", @@ -716196,6 +734851,11 @@ "name": "The Dishwasher: Vampire Smile", "url": "/v1/games/the-dishwasher-vampire-smile" }, + { + "slug": "the-disney-afternoon-collection", + "name": "The Disney Afternoon Collection", + "url": "/v1/games/the-disney-afternoon-collection" + }, { "slug": "the-dispatcher", "name": "The Dispatcher", @@ -716696,6 +735356,11 @@ "name": "The Drifter", "url": "/v1/games/the-drifter" }, + { + "slug": "the-drifter-demo", + "name": "The Drifter Demo", + "url": "/v1/games/the-drifter-demo" + }, { "slug": "the-drill-rpg", "name": "The Drill RPG", @@ -716956,6 +735621,11 @@ "name": "The E-Collector", "url": "/v1/games/the-e-collector" }, + { + "slug": "the-ea-sports-collection", + "name": "The EA Sports Collection", + "url": "/v1/games/the-ea-sports-collection" + }, { "slug": "the-end-of-sanity", "name": "The END of Sanity", @@ -716966,6 +735636,16 @@ "name": "The ER: Patient Typhon", "url": "/v1/games/the-er-patient-typhon" }, + { + "slug": "the-er-patient-typhon-being-a-monster", + "name": "The ER: Patient Typhon - Being a monster", + "url": "/v1/games/the-er-patient-typhon-being-a-monster" + }, + { + "slug": "the-er-patient-typhon-sos", + "name": "The ER: Patient Typhon - SOS", + "url": "/v1/games/the-er-patient-typhon-sos" + }, { "slug": "the-eagle-s-heir", "name": "The Eagle's Heir", @@ -717161,6 +735841,21 @@ "name": "The Elder Scrolls II: Daggerfall", "url": "/v1/games/the-elder-scrolls-ii-daggerfall" }, + { + "slug": "the-elder-scrolls-iii-bloodmoon", + "name": "The Elder Scrolls III: Bloodmoon", + "url": "/v1/games/the-elder-scrolls-iii-bloodmoon" + }, + { + "slug": "the-elder-scrolls-iii-tribunal", + "name": "The Elder Scrolls III: Tribunal", + "url": "/v1/games/the-elder-scrolls-iii-tribunal" + }, + { + "slug": "the-elder-scrolls-iv-knights-of-the-nine", + "name": "The Elder Scrolls IV: Knights of the Nine", + "url": "/v1/games/the-elder-scrolls-iv-knights-of-the-nine" + }, { "slug": "the-elder-scrolls-iv-oblivion", "name": "The Elder Scrolls IV: Oblivion", @@ -717171,6 +735866,16 @@ "name": "The Elder Scrolls IV: Oblivion Mobile", "url": "/v1/games/the-elder-scrolls-iv-oblivion-mobile" }, + { + "slug": "the-elder-scrolls-iv-shivering-isles", + "name": "The Elder Scrolls IV: Shivering Isles", + "url": "/v1/games/the-elder-scrolls-iv-shivering-isles" + }, + { + "slug": "the-elder-scrolls-legends-moons-of-elsweyr", + "name": "The Elder Scrolls Legends: Moons of Elsweyr", + "url": "/v1/games/the-elder-scrolls-legends-moons-of-elsweyr" + }, { "slug": "the-elder-scrolls-online", "name": "The Elder Scrolls Online", @@ -717186,11 +735891,171 @@ "name": "The Elder Scrolls Online - Elsweyr", "url": "/v1/games/the-elder-scrolls-online-elsweyr" }, + { + "slug": "the-elder-scrolls-online-ascending-tide", + "name": "The Elder Scrolls Online: Ascending Tide", + "url": "/v1/games/the-elder-scrolls-online-ascending-tide" + }, + { + "slug": "the-elder-scrolls-online-blackwood-q108871621", + "name": "The Elder Scrolls Online: Blackwood", + "url": "/v1/games/the-elder-scrolls-online-blackwood-q108871621" + }, + { + "slug": "the-elder-scrolls-online-clockwork-city", + "name": "The Elder Scrolls Online: Clockwork City", + "url": "/v1/games/the-elder-scrolls-online-clockwork-city" + }, + { + "slug": "the-elder-scrolls-online-dark-brotherhood", + "name": "The Elder Scrolls Online: Dark Brotherhood", + "url": "/v1/games/the-elder-scrolls-online-dark-brotherhood" + }, + { + "slug": "the-elder-scrolls-online-deadlands", + "name": "The Elder Scrolls Online: Deadlands", + "url": "/v1/games/the-elder-scrolls-online-deadlands" + }, + { + "slug": "the-elder-scrolls-online-dragon-bones", + "name": "The Elder Scrolls Online: Dragon Bones", + "url": "/v1/games/the-elder-scrolls-online-dragon-bones" + }, + { + "slug": "the-elder-scrolls-online-dragonhold", + "name": "The Elder Scrolls Online: Dragonhold", + "url": "/v1/games/the-elder-scrolls-online-dragonhold" + }, + { + "slug": "the-elder-scrolls-online-elsweyr-q108871641", + "name": "The Elder Scrolls Online: Elsweyr", + "url": "/v1/games/the-elder-scrolls-online-elsweyr-q108871641" + }, + { + "slug": "the-elder-scrolls-online-fallen-banners", + "name": "The Elder Scrolls Online: Fallen Banners", + "url": "/v1/games/the-elder-scrolls-online-fallen-banners" + }, + { + "slug": "the-elder-scrolls-online-firesong", + "name": "The Elder Scrolls Online: Firesong", + "url": "/v1/games/the-elder-scrolls-online-firesong" + }, + { + "slug": "the-elder-scrolls-online-flames-of-ambition", + "name": "The Elder Scrolls Online: Flames of Ambition", + "url": "/v1/games/the-elder-scrolls-online-flames-of-ambition" + }, + { + "slug": "the-elder-scrolls-online-gold-road", + "name": "The Elder Scrolls Online: Gold Road", + "url": "/v1/games/the-elder-scrolls-online-gold-road" + }, { "slug": "the-elder-scrolls-online-greymoor", "name": "The Elder Scrolls Online: Greymoor", "url": "/v1/games/the-elder-scrolls-online-greymoor" }, + { + "slug": "the-elder-scrolls-online-harrowstorm", + "name": "The Elder Scrolls Online: Harrowstorm", + "url": "/v1/games/the-elder-scrolls-online-harrowstorm" + }, + { + "slug": "the-elder-scrolls-online-high-isle", + "name": "The Elder Scrolls Online: High Isle", + "url": "/v1/games/the-elder-scrolls-online-high-isle" + }, + { + "slug": "the-elder-scrolls-online-horns-of-the-reach", + "name": "The Elder Scrolls Online: Horns of the Reach", + "url": "/v1/games/the-elder-scrolls-online-horns-of-the-reach" + }, + { + "slug": "the-elder-scrolls-online-imperial-city", + "name": "The Elder Scrolls Online: Imperial City", + "url": "/v1/games/the-elder-scrolls-online-imperial-city" + }, + { + "slug": "the-elder-scrolls-online-lost-depths", + "name": "The Elder Scrolls Online: Lost Depths", + "url": "/v1/games/the-elder-scrolls-online-lost-depths" + }, + { + "slug": "the-elder-scrolls-online-markarth", + "name": "The Elder Scrolls Online: Markarth", + "url": "/v1/games/the-elder-scrolls-online-markarth" + }, + { + "slug": "the-elder-scrolls-online-morrowind", + "name": "The Elder Scrolls Online: Morrowind", + "url": "/v1/games/the-elder-scrolls-online-morrowind" + }, + { + "slug": "the-elder-scrolls-online-murkmire", + "name": "The Elder Scrolls Online: Murkmire", + "url": "/v1/games/the-elder-scrolls-online-murkmire" + }, + { + "slug": "the-elder-scrolls-online-necrom", + "name": "The Elder Scrolls Online: Necrom", + "url": "/v1/games/the-elder-scrolls-online-necrom" + }, + { + "slug": "the-elder-scrolls-online-orsinium", + "name": "The Elder Scrolls Online: Orsinium", + "url": "/v1/games/the-elder-scrolls-online-orsinium" + }, + { + "slug": "the-elder-scrolls-online-scalebreaker", + "name": "The Elder Scrolls Online: Scalebreaker", + "url": "/v1/games/the-elder-scrolls-online-scalebreaker" + }, + { + "slug": "the-elder-scrolls-online-scions-of-ithelia", + "name": "The Elder Scrolls Online: Scions of Ithelia", + "url": "/v1/games/the-elder-scrolls-online-scions-of-ithelia" + }, + { + "slug": "the-elder-scrolls-online-scribes-of-fate", + "name": "The Elder Scrolls Online: Scribes of Fate", + "url": "/v1/games/the-elder-scrolls-online-scribes-of-fate" + }, + { + "slug": "the-elder-scrolls-online-seasons-of-the-worm-cult", + "name": "The Elder Scrolls Online: Seasons of the Worm Cult", + "url": "/v1/games/the-elder-scrolls-online-seasons-of-the-worm-cult" + }, + { + "slug": "the-elder-scrolls-online-shadows-of-the-hist", + "name": "The Elder Scrolls Online: Shadows of the Hist", + "url": "/v1/games/the-elder-scrolls-online-shadows-of-the-hist" + }, + { + "slug": "the-elder-scrolls-online-stonethorn", + "name": "The Elder Scrolls Online: Stonethorn", + "url": "/v1/games/the-elder-scrolls-online-stonethorn" + }, + { + "slug": "the-elder-scrolls-online-summerset", + "name": "The Elder Scrolls Online: Summerset", + "url": "/v1/games/the-elder-scrolls-online-summerset" + }, + { + "slug": "the-elder-scrolls-online-thieves-guild", + "name": "The Elder Scrolls Online: Thieves Guild", + "url": "/v1/games/the-elder-scrolls-online-thieves-guild" + }, + { + "slug": "the-elder-scrolls-online-waking-flame", + "name": "The Elder Scrolls Online: Waking Flame", + "url": "/v1/games/the-elder-scrolls-online-waking-flame" + }, + { + "slug": "the-elder-scrolls-online-wolfhunter", + "name": "The Elder Scrolls Online: Wolfhunter", + "url": "/v1/games/the-elder-scrolls-online-wolfhunter" + }, { "slug": "the-elder-scrolls-online-wrathstone", "name": "The Elder Scrolls Online: Wrathstone", @@ -717201,6 +736066,11 @@ "name": "The Elder Scrolls Travels: Dawnstar", "url": "/v1/games/the-elder-scrolls-travels-dawnstar" }, + { + "slug": "the-elder-scrolls-travels-oblivion", + "name": "The Elder Scrolls Travels: Oblivion", + "url": "/v1/games/the-elder-scrolls-travels-oblivion" + }, { "slug": "the-elder-scrolls-travels-shadowkey", "name": "The Elder Scrolls Travels: Shadowkey", @@ -717216,6 +736086,11 @@ "name": "The Elder Scrolls V: Skyrim", "url": "/v1/games/the-elder-scrolls-v-skyrim" }, + { + "slug": "the-elder-scrolls-v-skyrim-anniversary-edition", + "name": "The Elder Scrolls V: Skyrim Anniversary Edition", + "url": "/v1/games/the-elder-scrolls-v-skyrim-anniversary-edition" + }, { "slug": "the-elder-scrolls-v-skyrim-special-edition", "name": "The Elder Scrolls V: Skyrim Special Edition", @@ -717226,6 +736101,21 @@ "name": "The Elder Scrolls V: Skyrim VR", "url": "/v1/games/the-elder-scrolls-v-skyrim-vr" }, + { + "slug": "the-elder-scrolls-v-skyrim-dawnguard", + "name": "The Elder Scrolls V: Skyrim – Dawnguard", + "url": "/v1/games/the-elder-scrolls-v-skyrim-dawnguard" + }, + { + "slug": "the-elder-scrolls-v-skyrim-dragonborn", + "name": "The Elder Scrolls V: Skyrim – Dragonborn", + "url": "/v1/games/the-elder-scrolls-v-skyrim-dragonborn" + }, + { + "slug": "the-elder-scrolls-v-skyrim-hearthfire", + "name": "The Elder Scrolls V: Skyrim – Hearthfire", + "url": "/v1/games/the-elder-scrolls-v-skyrim-hearthfire" + }, { "slug": "the-elder-scrolls-arena", "name": "The Elder Scrolls: Arena", @@ -718016,6 +736906,16 @@ "name": "The Evil Within 2", "url": "/v1/games/the-evil-within-2" }, + { + "slug": "the-evil-within-the-assignment", + "name": "The Evil Within: The Assignment", + "url": "/v1/games/the-evil-within-the-assignment" + }, + { + "slug": "the-evil-within-the-executioner", + "name": "The Evil Within: The Executioner", + "url": "/v1/games/the-evil-within-the-executioner" + }, { "slug": "the-evil-in-the-forest", "name": "The Evil in the Forest", @@ -718046,6 +736946,11 @@ "name": "The Excavation of Hob's Barrow", "url": "/v1/games/the-excavation-of-hob-s-barrow" }, + { + "slug": "the-excellent-dizzy-collection", + "name": "The Excellent Dizzy Collection", + "url": "/v1/games/the-excellent-dizzy-collection" + }, { "slug": "the-exclusion-zone-online", "name": "The Exclusion Zone Online", @@ -718471,6 +737376,11 @@ "name": "The Fall", "url": "/v1/games/the-fall" }, + { + "slug": "the-fall-mutant-city", + "name": "The Fall - Mutant City", + "url": "/v1/games/the-fall-mutant-city" + }, { "slug": "the-fall-guy", "name": "The Fall Guy", @@ -719701,6 +738611,11 @@ "name": "The Forest Quartet", "url": "/v1/games/the-forest-quartet" }, + { + "slug": "the-forest-song", + "name": "The Forest Song", + "url": "/v1/games/the-forest-song" + }, { "slug": "the-forest-of-black-eden", "name": "The Forest of Black Eden", @@ -719901,6 +738816,11 @@ "name": "The Fortress of Varnolis", "url": "/v1/games/the-fortress-of-varnolis" }, + { + "slug": "the-fountain-of-youth", + "name": "The Fountain of Youth", + "url": "/v1/games/the-fountain-of-youth" + }, { "slug": "the-four-colour-theorem", "name": "The Four Colour Theorem", @@ -719986,6 +738906,11 @@ "name": "The Fragment", "url": "/v1/games/the-fragment" }, + { + "slug": "the-francy-droo-friends-collection", + "name": "The Francy Droo & Friends Collection", + "url": "/v1/games/the-francy-droo-friends-collection" + }, { "slug": "the-franz-kafka-videogame", "name": "The Franz Kafka Videogame", @@ -720251,6 +739176,11 @@ "name": "The Game of Fourtune", "url": "/v1/games/the-game-of-fourtune" }, + { + "slug": "the-game-of-gnomes", + "name": "The Game of Gnomes", + "url": "/v1/games/the-game-of-gnomes" + }, { "slug": "the-game-of-life", "name": "The Game of Life", @@ -720386,6 +739316,11 @@ "name": "The Gardens Between", "url": "/v1/games/the-gardens-between" }, + { + "slug": "the-gardens-between-q114840396", + "name": "The Gardens Between+", + "url": "/v1/games/the-gardens-between-q114840396" + }, { "slug": "the-garfield-show-threat-of-the-space-lasagna", "name": "The Garfield Show: Threat of the Space Lasagna", @@ -720526,6 +739461,11 @@ "name": "The Getaway", "url": "/v1/games/the-getaway" }, + { + "slug": "the-getaway-3", + "name": "The Getaway 3", + "url": "/v1/games/the-getaway-3" + }, { "slug": "the-getaway-black-monday", "name": "The Getaway: Black Monday", @@ -721261,6 +740201,11 @@ "name": "The Great Ace Attorney 2: Resolve", "url": "/v1/games/the-great-ace-attorney-2-resolve" }, + { + "slug": "the-great-ace-attorney-chronicles", + "name": "The Great Ace Attorney Chronicles", + "url": "/v1/games/the-great-ace-attorney-chronicles" + }, { "slug": "the-great-ace-attorney-adventures", "name": "The Great Ace Attorney: Adventures", @@ -721726,6 +740671,11 @@ "name": "The Grim and I", "url": "/v1/games/the-grim-and-i" }, + { + "slug": "the-grimm-troupe", + "name": "The Grimm Troupe", + "url": "/v1/games/the-grimm-troupe" + }, { "slug": "the-grimsworth-reports-woodfall", "name": "The Grimsworth Reports: Woodfall", @@ -721891,6 +740841,11 @@ "name": "The Guild 2: Pirates of the European Seas", "url": "/v1/games/the-guild-2-pirates-of-the-european-seas" }, + { + "slug": "the-guild-2-venice", + "name": "The Guild 2: Venice", + "url": "/v1/games/the-guild-2-venice" + }, { "slug": "the-guild-3", "name": "The Guild 3", @@ -722501,11 +741456,31 @@ "name": "The Hero Project: Open Season", "url": "/v1/games/the-hero-project-open-season" }, + { + "slug": "the-hero-project-open-season-mechip-warning-system-9-0", + "name": "The Hero Project: Open Season - MeChip Warning System 9.0", + "url": "/v1/games/the-hero-project-open-season-mechip-warning-system-9-0" + }, + { + "slug": "the-hero-project-open-season-prodigal-s-database-for-powereds", + "name": "The Hero Project: Open Season - Prodigal's Database for Powereds", + "url": "/v1/games/the-hero-project-open-season-prodigal-s-database-for-powereds" + }, { "slug": "the-hero-project-redemption-season", "name": "The Hero Project: Redemption Season", "url": "/v1/games/the-hero-project-redemption-season" }, + { + "slug": "the-hero-project-redemption-season-mechip-warning-system", + "name": "The Hero Project: Redemption Season - MeChip Warning System", + "url": "/v1/games/the-hero-project-redemption-season-mechip-warning-system" + }, + { + "slug": "the-hero-project-redemption-season-the-youpower-project", + "name": "The Hero Project: Redemption Season - The YouPower Project", + "url": "/v1/games/the-hero-project-redemption-season-the-youpower-project" + }, { "slug": "the-hero-unmasked", "name": "The Hero Unmasked!", @@ -722631,6 +741606,11 @@ "name": "The Hidden Scrolls", "url": "/v1/games/the-hidden-scrolls" }, + { + "slug": "the-hidden-treasure-of-area-zero", + "name": "The Hidden Treasure of Area Zero", + "url": "/v1/games/the-hidden-treasure-of-area-zero" + }, { "slug": "the-hidden-village-of-witches-and-catgirls", "name": "The Hidden Village of Witches and Catgirls", @@ -722786,6 +741766,11 @@ "name": "The Hole Town", "url": "/v1/games/the-hole-town" }, + { + "slug": "the-holiday-express", + "name": "The Holiday Express", + "url": "/v1/games/the-holiday-express" + }, { "slug": "the-hollow-line", "name": "The Hollow Line", @@ -723181,6 +742166,11 @@ "name": "The House of the Dead 2", "url": "/v1/games/the-house-of-the-dead-2" }, + { + "slug": "the-house-of-the-dead-2-3-return", + "name": "The House of the Dead 2 & 3 Return", + "url": "/v1/games/the-house-of-the-dead-2-3-return" + }, { "slug": "the-house-of-the-dead-2-remake", "name": "The House of the Dead 2: Remake", @@ -723201,6 +742191,11 @@ "name": "The House of the Dead: Overkill", "url": "/v1/games/the-house-of-the-dead-overkill" }, + { + "slug": "the-house-of-the-dead-overkill-extended-cut", + "name": "The House of the Dead: Overkill – Extended Cut", + "url": "/v1/games/the-house-of-the-dead-overkill-extended-cut" + }, { "slug": "the-house-of-the-dead-remake", "name": "The House of the Dead: Remake", @@ -723316,6 +742311,11 @@ "name": "The Hundredth Hike", "url": "/v1/games/the-hundredth-hike" }, + { + "slug": "the-hunger-games-panem-rising", + "name": "The Hunger Games: Panem Rising", + "url": "/v1/games/the-hunger-games-panem-rising" + }, { "slug": "the-hunger-games-ensemble", "name": "The Hunger: Games Ensemble", @@ -723571,11 +742571,21 @@ "name": "The Ice Cream Culprit", "url": "/v1/games/the-ice-cream-culprit" }, + { + "slug": "the-ico-shadow-of-the-colossus-collection", + "name": "The Ico & Shadow of the Colossus Collection", + "url": "/v1/games/the-ico-shadow-of-the-colossus-collection" + }, { "slug": "the-icon-battles-game", "name": "The Icon Battles: Game", "url": "/v1/games/the-icon-battles-game" }, + { + "slug": "the-iconian-war", + "name": "The Iconian War", + "url": "/v1/games/the-iconian-war" + }, { "slug": "the-idiot-s-tale", "name": "The Idiot's Tale", @@ -723926,6 +742936,11 @@ "name": "The Incredible Machine", "url": "/v1/games/the-incredible-machine" }, + { + "slug": "the-incredible-machine-mega-pack", + "name": "The Incredible Machine Mega Pack", + "url": "/v1/games/the-incredible-machine-mega-pack" + }, { "slug": "the-incredible-machine-even-more-contraptions", "name": "The Incredible Machine: Even More Contraptions", @@ -723996,6 +743011,11 @@ "name": "The Indifferent Wonder of an Edible Place", "url": "/v1/games/the-indifferent-wonder-of-an-edible-place" }, + { + "slug": "the-indigo-disk", + "name": "The Indigo Disk", + "url": "/v1/games/the-indigo-disk" + }, { "slug": "the-indigo-parallel", "name": "The Indigo Parallel", @@ -724231,6 +743251,11 @@ "name": "The Internal", "url": "/v1/games/the-internal" }, + { + "slug": "the-internet-hunt", + "name": "The Internet Hunt", + "url": "/v1/games/the-internet-hunt" + }, { "slug": "the-interview", "name": "The Interview", @@ -724456,6 +743481,11 @@ "name": "The Isle Tide Hotel", "url": "/v1/games/the-isle-tide-hotel" }, + { + "slug": "the-isle-of-armor", + "name": "The Isle of Armor", + "url": "/v1/games/the-isle-of-armor" + }, { "slug": "the-isle-of-cats", "name": "The Isle of Cats", @@ -726461,6 +745491,11 @@ "name": "The Last Kids On Earth and the Staff of Doom", "url": "/v1/games/the-last-kids-on-earth-and-the-staff-of-doom" }, + { + "slug": "the-last-kids-on-earth-happy-apocalypse-to-you", + "name": "The Last Kids on Earth: Happy Apocalypse to You", + "url": "/v1/games/the-last-kids-on-earth-happy-apocalypse-to-you" + }, { "slug": "the-last-king", "name": "The Last King", @@ -727196,21 +746231,61 @@ "name": "The Last of Us", "url": "/v1/games/the-last-of-us" }, + { + "slug": "the-last-of-us-online", + "name": "The Last of Us Online", + "url": "/v1/games/the-last-of-us-online" + }, { "slug": "the-last-of-us-part-i", "name": "The Last of Us Part I", "url": "/v1/games/the-last-of-us-part-i" }, + { + "slug": "the-last-of-us-part-i-digital-deluxe-edition", + "name": "The Last of Us Part I (Digital Deluxe Edition)", + "url": "/v1/games/the-last-of-us-part-i-digital-deluxe-edition" + }, + { + "slug": "the-last-of-us-part-i-firefly-edition", + "name": "The Last of Us Part I (Firefly Edition)", + "url": "/v1/games/the-last-of-us-part-i-firefly-edition" + }, { "slug": "the-last-of-us-part-ii", "name": "The Last of Us Part II", "url": "/v1/games/the-last-of-us-part-ii" }, + { + "slug": "the-last-of-us-part-ii-collector-s-edition", + "name": "The Last of Us Part II (Collector's Edition)", + "url": "/v1/games/the-last-of-us-part-ii-collector-s-edition" + }, + { + "slug": "the-last-of-us-part-ii-digital-deluxe-edition", + "name": "The Last of Us Part II (Digital Deluxe Edition)", + "url": "/v1/games/the-last-of-us-part-ii-digital-deluxe-edition" + }, + { + "slug": "the-last-of-us-part-ii-ellie-edition", + "name": "The Last of Us Part II (Ellie Edition)", + "url": "/v1/games/the-last-of-us-part-ii-ellie-edition" + }, + { + "slug": "the-last-of-us-part-ii-special-edition", + "name": "The Last of Us Part II (Special Edition)", + "url": "/v1/games/the-last-of-us-part-ii-special-edition" + }, { "slug": "the-last-of-us-part-ii-remastered", "name": "The Last of Us Part II Remastered", "url": "/v1/games/the-last-of-us-part-ii-remastered" }, + { + "slug": "the-last-of-us-part-iii", + "name": "The Last of Us Part III", + "url": "/v1/games/the-last-of-us-part-iii" + }, { "slug": "the-last-of-us-remastered", "name": "The Last of Us Remastered", @@ -727836,6 +746911,11 @@ "name": "The Legend of Spyro : A New Beginning (J2ME)", "url": "/v1/games/the-legend-of-spyro-a-new-beginning-j2me" }, + { + "slug": "the-legend-of-spyro-a-new-beginning", + "name": "The Legend of Spyro: A New Beginning", + "url": "/v1/games/the-legend-of-spyro-a-new-beginning" + }, { "slug": "the-legend-of-spyro-dawn-of-the-dragon", "name": "The Legend of Spyro: Dawn of the Dragon", @@ -727981,6 +747061,26 @@ "name": "The Legend of Zelda: Breath of the Wild", "url": "/v1/games/the-legend-of-zelda-breath-of-the-wild" }, + { + "slug": "the-legend-of-zelda-breath-of-the-wild-nintendo-switch-2-edition", + "name": "The Legend of Zelda: Breath of the Wild Nintendo Switch 2 Edition", + "url": "/v1/games/the-legend-of-zelda-breath-of-the-wild-nintendo-switch-2-edition" + }, + { + "slug": "the-legend-of-zelda-breath-of-the-wild-the-champions-ballad", + "name": "The Legend of Zelda: Breath of the Wild – The Champions' Ballad", + "url": "/v1/games/the-legend-of-zelda-breath-of-the-wild-the-champions-ballad" + }, + { + "slug": "the-legend-of-zelda-breath-of-the-wild-the-master-trials", + "name": "The Legend of Zelda: Breath of the Wild – The Master Trials", + "url": "/v1/games/the-legend-of-zelda-breath-of-the-wild-the-master-trials" + }, + { + "slug": "the-legend-of-zelda-collector-s-edition", + "name": "The Legend of Zelda: Collector's Edition", + "url": "/v1/games/the-legend-of-zelda-collector-s-edition" + }, { "slug": "the-legend-of-zelda-echoes-of-wisdom", "name": "The Legend of Zelda: Echoes of Wisdom", @@ -728026,6 +747126,11 @@ "name": "The Legend of Zelda: Majora's Mask 3D", "url": "/v1/games/the-legend-of-zelda-majora-s-mask-3d" }, + { + "slug": "the-legend-of-zelda-mystical-seed-of-courage", + "name": "The Legend of Zelda: Mystical Seed of Courage", + "url": "/v1/games/the-legend-of-zelda-mystical-seed-of-courage" + }, { "slug": "the-legend-of-zelda-ocarina-of-time", "name": "The Legend of Zelda: Ocarina of Time", @@ -728051,6 +747156,11 @@ "name": "The Legend of Zelda: Oracle of Seasons", "url": "/v1/games/the-legend-of-zelda-oracle-of-seasons" }, + { + "slug": "the-legend-of-zelda-oracle-of-seasons-and-oracle-of-ages", + "name": "The Legend of Zelda: Oracle of Seasons and Oracle of Ages", + "url": "/v1/games/the-legend-of-zelda-oracle-of-seasons-and-oracle-of-ages" + }, { "slug": "the-legend-of-zelda-phantom-hourglass", "name": "The Legend of Zelda: Phantom Hourglass", @@ -728081,6 +747191,11 @@ "name": "The Legend of Zelda: Tears of the Kingdom", "url": "/v1/games/the-legend-of-zelda-tears-of-the-kingdom" }, + { + "slug": "the-legend-of-zelda-tears-of-the-kingdom-nintendo-switch-2-edition", + "name": "The Legend of Zelda: Tears of the Kingdom Nintendo Switch 2 Edition", + "url": "/v1/games/the-legend-of-zelda-tears-of-the-kingdom-nintendo-switch-2-edition" + }, { "slug": "the-legend-of-zelda-the-minish-cap", "name": "The Legend of Zelda: The Minish Cap", @@ -728971,6 +748086,11 @@ "name": "The Long Road North", "url": "/v1/games/the-long-road-north" }, + { + "slug": "the-long-siege", + "name": "The Long Siege", + "url": "/v1/games/the-long-siege" + }, { "slug": "the-long-sky", "name": "The Long Sky", @@ -729101,16 +748221,56 @@ "name": "The Lord of the Rings Online", "url": "/v1/games/the-lord-of-the-rings-online" }, + { + "slug": "the-lord-of-the-rings-online-before-the-shadow", + "name": "The Lord of the Rings Online: Before the Shadow", + "url": "/v1/games/the-lord-of-the-rings-online-before-the-shadow" + }, + { + "slug": "the-lord-of-the-rings-online-fate-of-gundabad", + "name": "The Lord of the Rings Online: Fate of Gundabad", + "url": "/v1/games/the-lord-of-the-rings-online-fate-of-gundabad" + }, + { + "slug": "the-lord-of-the-rings-online-helm-s-deep", + "name": "The Lord of the Rings Online: Helm's Deep", + "url": "/v1/games/the-lord-of-the-rings-online-helm-s-deep" + }, { "slug": "the-lord-of-the-rings-online-minas-morgul", "name": "The Lord of the Rings Online: Minas Morgul", "url": "/v1/games/the-lord-of-the-rings-online-minas-morgul" }, + { + "slug": "the-lord-of-the-rings-online-mines-of-moria", + "name": "The Lord of the Rings Online: Mines of Moria", + "url": "/v1/games/the-lord-of-the-rings-online-mines-of-moria" + }, { "slug": "the-lord-of-the-rings-online-mordor", "name": "The Lord of the Rings Online: Mordor", "url": "/v1/games/the-lord-of-the-rings-online-mordor" }, + { + "slug": "the-lord-of-the-rings-online-riders-of-rohan", + "name": "The Lord of the Rings Online: Riders of Rohan", + "url": "/v1/games/the-lord-of-the-rings-online-riders-of-rohan" + }, + { + "slug": "the-lord-of-the-rings-online-rise-of-isengard", + "name": "The Lord of the Rings Online: Rise of Isengard", + "url": "/v1/games/the-lord-of-the-rings-online-rise-of-isengard" + }, + { + "slug": "the-lord-of-the-rings-online-siege-of-mirkwood", + "name": "The Lord of the Rings Online: Siege of Mirkwood", + "url": "/v1/games/the-lord-of-the-rings-online-siege-of-mirkwood" + }, + { + "slug": "the-lord-of-the-rings-online-war-of-three-peaks", + "name": "The Lord of the Rings Online: War of Three Peaks", + "url": "/v1/games/the-lord-of-the-rings-online-war-of-three-peaks" + }, { "slug": "the-lord-of-the-rings-adventure-card-game-definitive-edition", "name": "The Lord of the Rings: Adventure Card Game - Definitive Edition", @@ -729166,6 +748326,11 @@ "name": "The Lord of the Rings: The Battle for Middle-earth II", "url": "/v1/games/the-lord-of-the-rings-the-battle-for-middle-earth-ii" }, + { + "slug": "the-lord-of-the-rings-the-battle-for-middle-earth-ii-the-rise-of-the-witch-king", + "name": "The Lord of the Rings: The Battle for Middle-earth II: The Rise of the Witch-king", + "url": "/v1/games/the-lord-of-the-rings-the-battle-for-middle-earth-ii-the-rise-of-the-witch-king" + }, { "slug": "the-lord-of-the-rings-the-fellowship-of-the-ring", "name": "The Lord of the Rings: The Fellowship of the Ring", @@ -729191,6 +748356,11 @@ "name": "The Lord of the Rings: The Two Towers", "url": "/v1/games/the-lord-of-the-rings-the-two-towers" }, + { + "slug": "the-lord-of-the-rings-the-white-council", + "name": "The Lord of the Rings: The White Council", + "url": "/v1/games/the-lord-of-the-rings-the-white-council" + }, { "slug": "the-lord-of-the-rings-war-in-the-north", "name": "The Lord of the Rings: War in the North", @@ -729596,6 +748766,11 @@ "name": "The Lost Treasures Of Infocom", "url": "/v1/games/the-lost-treasures-of-infocom" }, + { + "slug": "the-lost-treasures-of-infocom-q7748761", + "name": "The Lost Treasures of Infocom", + "url": "/v1/games/the-lost-treasures-of-infocom-q7748761" + }, { "slug": "the-lost-uncle", "name": "The Lost Uncle", @@ -729706,6 +748881,16 @@ "name": "The Lubs: True Alliance", "url": "/v1/games/the-lubs-true-alliance" }, + { + "slug": "the-lucasarts-archives", + "name": "The LucasArts Archives", + "url": "/v1/games/the-lucasarts-archives" + }, + { + "slug": "the-lucasarts-archives-vol-iii", + "name": "The LucasArts Archives vol. III", + "url": "/v1/games/the-lucasarts-archives-vol-iii" + }, { "slug": "the-luckiest-in-the-megaverse", "name": "The Luckiest in the Megaverse", @@ -730001,6 +749186,11 @@ "name": "The Magnet Trials", "url": "/v1/games/the-magnet-trials" }, + { + "slug": "the-magnetic-scrolls-collection", + "name": "The Magnetic Scrolls Collection", + "url": "/v1/games/the-magnetic-scrolls-collection" + }, { "slug": "the-magnets", "name": "The Magnets", @@ -730326,6 +749516,11 @@ "name": "The Martian VR Experience", "url": "/v1/games/the-martian-vr-experience" }, + { + "slug": "the-martian-bring-him-home", + "name": "The Martian: Bring Him Home", + "url": "/v1/games/the-martian-bring-him-home" + }, { "slug": "the-marvellous-miss-take", "name": "The Marvellous Miss Take", @@ -730676,6 +749871,11 @@ "name": "The Messenger", "url": "/v1/games/the-messenger" }, + { + "slug": "the-messenger-picnic-panic", + "name": "The Messenger: Picnic Panic", + "url": "/v1/games/the-messenger-picnic-panic" + }, { "slug": "the-metamorphosis", "name": "The Metamorphosis", @@ -730836,6 +750036,11 @@ "name": "The Milliner", "url": "/v1/games/the-milliner" }, + { + "slug": "the-mimic-q133283755", + "name": "The Mimic", + "url": "/v1/games/the-mimic-q133283755" + }, { "slug": "the-mimic", "name": "The Mimic", @@ -731571,6 +750776,11 @@ "name": "The Muscle Bunny Girls Caught Me Cheatin'!!!", "url": "/v1/games/the-muscle-bunny-girls-caught-me-cheatin" }, + { + "slug": "the-museum-relic-campaign", + "name": "The Museum Relic Campaign", + "url": "/v1/games/the-museum-relic-campaign" + }, { "slug": "the-museum-of-hauntology", "name": "The Museum of Hauntology", @@ -732236,6 +751446,11 @@ "name": "The Night Fisherman", "url": "/v1/games/the-night-fisherman" }, + { + "slug": "the-night-games-collection", + "name": "The Night Games Collection", + "url": "/v1/games/the-night-games-collection" + }, { "slug": "the-night-guard", "name": "The Night Guard", @@ -732916,6 +752131,11 @@ "name": "The Oni Taiji - Mezase! 2-Daime Momotarou", "url": "/v1/games/the-oni-taiji-mezase-2-daime-momotarou" }, + { + "slug": "the-only-traitor", + "name": "The Only Traitor", + "url": "/v1/games/the-only-traitor" + }, { "slug": "the-only-wise", "name": "The Only Wise", @@ -732981,6 +752201,11 @@ "name": "The Orange", "url": "/v1/games/the-orange" }, + { + "slug": "the-orange-box", + "name": "The Orange Box", + "url": "/v1/games/the-orange-box" + }, { "slug": "the-orange-of-tomorrow", "name": "The Orange of Tomorrow", @@ -733301,6 +752526,21 @@ "name": "The Outer Worlds 2", "url": "/v1/games/the-outer-worlds-2" }, + { + "slug": "the-outer-worlds-murder-on-eridanos", + "name": "The Outer Worlds: Murder on Eridanos", + "url": "/v1/games/the-outer-worlds-murder-on-eridanos" + }, + { + "slug": "the-outer-worlds-peril-on-gorgon", + "name": "The Outer Worlds: Peril on Gorgon", + "url": "/v1/games/the-outer-worlds-peril-on-gorgon" + }, + { + "slug": "the-outer-worlds-spacer-s-choice-edition", + "name": "The Outer Worlds: Spacer’s Choice Edition", + "url": "/v1/games/the-outer-worlds-spacer-s-choice-edition" + }, { "slug": "the-outer-zone-survival-tactics", "name": "The Outer Zone: Survival Tactics", @@ -733341,6 +752581,11 @@ "name": "The Outpost Nine: Episode 1", "url": "/v1/games/the-outpost-nine-episode-1" }, + { + "slug": "the-outsider", + "name": "The Outsider", + "url": "/v1/games/the-outsider" + }, { "slug": "the-overdreamer", "name": "The Overdreamer", @@ -733396,6 +752641,16 @@ "name": "The PARADOGX Incident", "url": "/v1/games/the-paradogx-incident" }, + { + "slug": "the-postal-2-collection", + "name": "The POSTAL 2 Collection", + "url": "/v1/games/the-postal-2-collection" + }, + { + "slug": "the-postal-package-curated-classics", + "name": "The POSTAL Package: Curated Classics", + "url": "/v1/games/the-postal-package-curated-classics" + }, { "slug": "the-pacifist-s-great-and-final-nightmare", "name": "The Pacifist's Great and Final Nightmare", @@ -733651,6 +752906,11 @@ "name": "The Passengers", "url": "/v1/games/the-passengers" }, + { + "slug": "the-passengers-vr", + "name": "The Passengers (VR)", + "url": "/v1/games/the-passengers-vr" + }, { "slug": "the-password-game", "name": "The Password Game", @@ -734501,6 +753761,11 @@ "name": "The Political Machine 2024", "url": "/v1/games/the-political-machine-2024" }, + { + "slug": "the-political-machine-express-2008", + "name": "The Political Machine Express 2008", + "url": "/v1/games/the-political-machine-express-2008" + }, { "slug": "the-political-process", "name": "The Political Process", @@ -735151,6 +754416,11 @@ "name": "The Quarry", "url": "/v1/games/the-quarry" }, + { + "slug": "the-quarry-deluxe-edition", + "name": "The Quarry: Deluxe Edition", + "url": "/v1/games/the-quarry-deluxe-edition" + }, { "slug": "the-quarter-game", "name": "The Quarter Game", @@ -735441,6 +754711,11 @@ "name": "The Rage of Valhalla", "url": "/v1/games/the-rage-of-valhalla" }, + { + "slug": "the-raiden-project", + "name": "The Raiden Project", + "url": "/v1/games/the-raiden-project" + }, { "slug": "the-raiders", "name": "The Raiders", @@ -736276,6 +755551,11 @@ "name": "The Ripe Blood Anthology: This World Is Just for the Two of Us", "url": "/v1/games/the-ripe-blood-anthology-this-world-is-just-for-the-two-of-us" }, + { + "slug": "the-ripper", + "name": "The Ripper", + "url": "/v1/games/the-ripper" + }, { "slug": "the-rise", "name": "The Rise", @@ -736421,6 +755701,11 @@ "name": "The Road to Hades", "url": "/v1/games/the-road-to-hades" }, + { + "slug": "the-roberta-williams-anthology", + "name": "The Roberta Williams Anthology", + "url": "/v1/games/the-roberta-williams-anthology" + }, { "slug": "the-robot-girl-meets-the-human", "name": "The Robot Girl Meets The Human!", @@ -736546,6 +755831,11 @@ "name": "The Room Two", "url": "/v1/games/the-room-two" }, + { + "slug": "the-room-two-q124080278", + "name": "The Room Two+", + "url": "/v1/games/the-room-two-q124080278" + }, { "slug": "the-room-vr-a-dark-matter", "name": "The Room VR: A Dark Matter", @@ -737171,6 +756461,11 @@ "name": "The Scream", "url": "/v1/games/the-scream" }, + { + "slug": "the-scriptwelder-collection", + "name": "The Scriptwelder Collection", + "url": "/v1/games/the-scriptwelder-collection" + }, { "slug": "the-scrolling-enigma", "name": "The Scrolling Enigma", @@ -737661,6 +756956,11 @@ "name": "The Settlers 7: Paths to a Kingdom", "url": "/v1/games/the-settlers-7-paths-to-a-kingdom" }, + { + "slug": "the-settlers-7-paths-to-a-kingdom-gold-edition", + "name": "The Settlers 7: Paths to a Kingdom - Gold Edition", + "url": "/v1/games/the-settlers-7-paths-to-a-kingdom-gold-edition" + }, { "slug": "the-settlers-ds", "name": "The Settlers DS", @@ -737671,6 +756971,26 @@ "name": "The Settlers II", "url": "/v1/games/the-settlers-ii" }, + { + "slug": "the-settlers-ii-10th-anniversary-gold-edition", + "name": "The Settlers II (10th Anniversary) Gold Edition", + "url": "/v1/games/the-settlers-ii-10th-anniversary-gold-edition" + }, + { + "slug": "the-settlers-ii-10th-anniversary-vikings", + "name": "The Settlers II: 10th Anniversary - Vikings", + "url": "/v1/games/the-settlers-ii-10th-anniversary-vikings" + }, + { + "slug": "the-settlers-ii-gold-edition", + "name": "The Settlers II: Gold Edition", + "url": "/v1/games/the-settlers-ii-gold-edition" + }, + { + "slug": "the-settlers-ii-mission-cd", + "name": "The Settlers II: Mission CD", + "url": "/v1/games/the-settlers-ii-mission-cd" + }, { "slug": "the-settlers-ii-the-next-generation", "name": "The Settlers II: The Next Generation", @@ -737691,11 +757011,36 @@ "name": "The Settlers III", "url": "/v1/games/the-settlers-iii" }, + { + "slug": "the-settlers-iii-gold-edition", + "name": "The Settlers III: Gold Edition", + "url": "/v1/games/the-settlers-iii-gold-edition" + }, + { + "slug": "the-settlers-iii-mission-cd", + "name": "The Settlers III: Mission CD", + "url": "/v1/games/the-settlers-iii-mission-cd" + }, + { + "slug": "the-settlers-iii-quest-of-the-amazons", + "name": "The Settlers III: Quest of the Amazons", + "url": "/v1/games/the-settlers-iii-quest-of-the-amazons" + }, { "slug": "the-settlers-iv", "name": "The Settlers IV", "url": "/v1/games/the-settlers-iv" }, + { + "slug": "the-settlers-iv-mission-cd", + "name": "The Settlers IV Mission CD", + "url": "/v1/games/the-settlers-iv-mission-cd" + }, + { + "slug": "the-settlers-iv-gold-edition", + "name": "The Settlers IV: Gold Edition", + "url": "/v1/games/the-settlers-iv-gold-edition" + }, { "slug": "the-settlers-online", "name": "The Settlers Online", @@ -737716,16 +757061,46 @@ "name": "The Settlers: Heritage of Kings", "url": "/v1/games/the-settlers-heritage-of-kings" }, + { + "slug": "the-settlers-heritage-of-kings-expansion-disc", + "name": "The Settlers: Heritage of Kings - Expansion Disc", + "url": "/v1/games/the-settlers-heritage-of-kings-expansion-disc" + }, + { + "slug": "the-settlers-heritage-of-kings-gold-edition", + "name": "The Settlers: Heritage of Kings - Gold Edition", + "url": "/v1/games/the-settlers-heritage-of-kings-gold-edition" + }, + { + "slug": "the-settlers-heritage-of-kings-legends-expansion-disc", + "name": "The Settlers: Heritage of Kings - Legends Expansion Disc", + "url": "/v1/games/the-settlers-heritage-of-kings-legends-expansion-disc" + }, + { + "slug": "the-settlers-history-collection", + "name": "The Settlers: History Collection", + "url": "/v1/games/the-settlers-history-collection" + }, { "slug": "the-settlers-new-allies", "name": "The Settlers: New Allies", "url": "/v1/games/the-settlers-new-allies" }, + { + "slug": "the-settlers-rise-of-an-empire-empire-of-the-east", + "name": "The Settlers: Rise of An Empire – Empire of the East", + "url": "/v1/games/the-settlers-rise-of-an-empire-empire-of-the-east" + }, { "slug": "the-settlers-rise-of-an-empire", "name": "The Settlers: Rise of an Empire", "url": "/v1/games/the-settlers-rise-of-an-empire" }, + { + "slug": "the-settlers-rise-of-an-empire-the-eastern-realm", + "name": "The Settlers: Rise of an Empire - The Eastern Realm", + "url": "/v1/games/the-settlers-rise-of-an-empire-the-eastern-realm" + }, { "slug": "the-settlers-smack-a-thief", "name": "The Settlers: Smack a Thief!", @@ -738411,6 +757786,11 @@ "name": "The Silver Lining", "url": "/v1/games/the-silver-lining" }, + { + "slug": "the-simcity-box", + "name": "The SimCity Box", + "url": "/v1/games/the-simcity-box" + }, { "slug": "the-simple-apocalypse", "name": "The Simple Apocalypse", @@ -738506,6 +757886,11 @@ "name": "The Simpsons: Hit & Run", "url": "/v1/games/the-simpsons-hit-run" }, + { + "slug": "the-simpsons-hit-run-2", + "name": "The Simpsons: Hit & Run 2", + "url": "/v1/games/the-simpsons-hit-run-2" + }, { "slug": "the-simpsons-itchy-scratchy-land", "name": "The Simpsons: Itchy & Scratchy Land", @@ -738591,11 +757976,26 @@ "name": "The Sims 2 Pets (mobile)", "url": "/v1/games/the-sims-2-pets-mobile" }, + { + "slug": "the-sims-2-stuff-packs", + "name": "The Sims 2 Stuff packs", + "url": "/v1/games/the-sims-2-stuff-packs" + }, + { + "slug": "the-sims-2-apartment-life", + "name": "The Sims 2: Apartment Life", + "url": "/v1/games/the-sims-2-apartment-life" + }, { "slug": "the-sims-2-apartment-pets", "name": "The Sims 2: Apartment Pets", "url": "/v1/games/the-sims-2-apartment-pets" }, + { + "slug": "the-sims-2-bon-voyage", + "name": "The Sims 2: Bon Voyage", + "url": "/v1/games/the-sims-2-bon-voyage" + }, { "slug": "the-sims-2-castaway-q97190444", "name": "The Sims 2: Castaway", @@ -738606,11 +758006,86 @@ "name": "The Sims 2: Castaway", "url": "/v1/games/the-sims-2-castaway" }, + { + "slug": "the-sims-2-celebration-stuff", + "name": "The Sims 2: Celebration! Stuff", + "url": "/v1/games/the-sims-2-celebration-stuff" + }, + { + "slug": "the-sims-2-christmas-party-pack", + "name": "The Sims 2: Christmas Party Pack", + "url": "/v1/games/the-sims-2-christmas-party-pack" + }, + { + "slug": "the-sims-2-family-fun-stuff", + "name": "The Sims 2: Family Fun Stuff", + "url": "/v1/games/the-sims-2-family-fun-stuff" + }, + { + "slug": "the-sims-2-freetime", + "name": "The Sims 2: FreeTime", + "url": "/v1/games/the-sims-2-freetime" + }, + { + "slug": "the-sims-2-glamour-life-stuff", + "name": "The Sims 2: Glamour Life Stuff", + "url": "/v1/games/the-sims-2-glamour-life-stuff" + }, + { + "slug": "the-sims-2-h-m-fashion-stuff", + "name": "The Sims 2: H&M Fashion Stuff", + "url": "/v1/games/the-sims-2-h-m-fashion-stuff" + }, + { + "slug": "the-sims-2-happy-holiday-stuff", + "name": "The Sims 2: Happy Holiday Stuff", + "url": "/v1/games/the-sims-2-happy-holiday-stuff" + }, { "slug": "the-sims-2-holiday-edition", "name": "The Sims 2: Holiday Edition", "url": "/v1/games/the-sims-2-holiday-edition" }, + { + "slug": "the-sims-2-holiday-edition-2006", + "name": "The Sims 2: Holiday Edition (2006)", + "url": "/v1/games/the-sims-2-holiday-edition-2006" + }, + { + "slug": "the-sims-2-holiday-party-pack", + "name": "The Sims 2: Holiday Party Pack", + "url": "/v1/games/the-sims-2-holiday-party-pack" + }, + { + "slug": "the-sims-2-ikea-home-stuff", + "name": "The Sims 2: IKEA Home Stuff", + "url": "/v1/games/the-sims-2-ikea-home-stuff" + }, + { + "slug": "the-sims-2-kitchen-bath-interior-design-stuff", + "name": "The Sims 2: Kitchen & Bath Interior Design Stuff", + "url": "/v1/games/the-sims-2-kitchen-bath-interior-design-stuff" + }, + { + "slug": "the-sims-2-mansion-garden-stuff", + "name": "The Sims 2: Mansion & Garden Stuff", + "url": "/v1/games/the-sims-2-mansion-garden-stuff" + }, + { + "slug": "the-sims-2-nightlife", + "name": "The Sims 2: Nightlife", + "url": "/v1/games/the-sims-2-nightlife" + }, + { + "slug": "the-sims-2-open-for-business", + "name": "The Sims 2: Open for Business", + "url": "/v1/games/the-sims-2-open-for-business" + }, + { + "slug": "the-sims-2-pets-q751329", + "name": "The Sims 2: Pets", + "url": "/v1/games/the-sims-2-pets-q751329" + }, { "slug": "the-sims-2-pets", "name": "The Sims 2: Pets", @@ -738626,6 +758101,26 @@ "name": "The Sims 2: Pets (Nintendo DS)", "url": "/v1/games/the-sims-2-pets-nintendo-ds" }, + { + "slug": "the-sims-2-seasons", + "name": "The Sims 2: Seasons", + "url": "/v1/games/the-sims-2-seasons" + }, + { + "slug": "the-sims-2-teen-style-stuff", + "name": "The Sims 2: Teen Style Stuff", + "url": "/v1/games/the-sims-2-teen-style-stuff" + }, + { + "slug": "the-sims-2-ultimate-collection", + "name": "The Sims 2: Ultimate Collection", + "url": "/v1/games/the-sims-2-ultimate-collection" + }, + { + "slug": "the-sims-2-university", + "name": "The Sims 2: University", + "url": "/v1/games/the-sims-2-university" + }, { "slug": "the-sims-3-q56345668", "name": "The Sims 3", @@ -738651,16 +758146,126 @@ "name": "The Sims 3 (handheld)", "url": "/v1/games/the-sims-3-handheld" }, + { + "slug": "the-sims-3-stuff-packs", + "name": "The Sims 3 Stuff packs", + "url": "/v1/games/the-sims-3-stuff-packs" + }, + { + "slug": "the-sims-3-ultimate-bundle", + "name": "The Sims 3 Ultimate Bundle", + "url": "/v1/games/the-sims-3-ultimate-bundle" + }, + { + "slug": "the-sims-3-70s-80s-90s-stuff", + "name": "The Sims 3: 70s, 80s, & 90s Stuff", + "url": "/v1/games/the-sims-3-70s-80s-90s-stuff" + }, + { + "slug": "the-sims-3-ambitions", + "name": "The Sims 3: Ambitions", + "url": "/v1/games/the-sims-3-ambitions" + }, { "slug": "the-sims-3-ambitions-mobile", "name": "The Sims 3: Ambitions (mobile)", "url": "/v1/games/the-sims-3-ambitions-mobile" }, + { + "slug": "the-sims-3-diesel-stuff", + "name": "The Sims 3: Diesel Stuff", + "url": "/v1/games/the-sims-3-diesel-stuff" + }, + { + "slug": "the-sims-3-fast-lane-stuff", + "name": "The Sims 3: Fast Lane Stuff", + "url": "/v1/games/the-sims-3-fast-lane-stuff" + }, + { + "slug": "the-sims-3-generations", + "name": "The Sims 3: Generations", + "url": "/v1/games/the-sims-3-generations" + }, + { + "slug": "the-sims-3-high-end-loft-stuff", + "name": "The Sims 3: High-End Loft Stuff", + "url": "/v1/games/the-sims-3-high-end-loft-stuff" + }, + { + "slug": "the-sims-3-into-the-future", + "name": "The Sims 3: Into the Future", + "url": "/v1/games/the-sims-3-into-the-future" + }, + { + "slug": "the-sims-3-island-paradise", + "name": "The Sims 3: Island Paradise", + "url": "/v1/games/the-sims-3-island-paradise" + }, + { + "slug": "the-sims-3-katy-perry-s-sweet-treats", + "name": "The Sims 3: Katy Perry's Sweet Treats", + "url": "/v1/games/the-sims-3-katy-perry-s-sweet-treats" + }, + { + "slug": "the-sims-3-late-night", + "name": "The Sims 3: Late Night", + "url": "/v1/games/the-sims-3-late-night" + }, + { + "slug": "the-sims-3-master-suite-stuff", + "name": "The Sims 3: Master Suite Stuff", + "url": "/v1/games/the-sims-3-master-suite-stuff" + }, + { + "slug": "the-sims-3-movie-stuff", + "name": "The Sims 3: Movie Stuff", + "url": "/v1/games/the-sims-3-movie-stuff" + }, + { + "slug": "the-sims-3-outdoor-living-stuff", + "name": "The Sims 3: Outdoor Living Stuff", + "url": "/v1/games/the-sims-3-outdoor-living-stuff" + }, + { + "slug": "the-sims-3-pets-q2072073", + "name": "The Sims 3: Pets", + "url": "/v1/games/the-sims-3-pets-q2072073" + }, { "slug": "the-sims-3-pets", "name": "The Sims 3: Pets", "url": "/v1/games/the-sims-3-pets" }, + { + "slug": "the-sims-3-seasons", + "name": "The Sims 3: Seasons", + "url": "/v1/games/the-sims-3-seasons" + }, + { + "slug": "the-sims-3-showtime", + "name": "The Sims 3: Showtime", + "url": "/v1/games/the-sims-3-showtime" + }, + { + "slug": "the-sims-3-supernatural", + "name": "The Sims 3: Supernatural", + "url": "/v1/games/the-sims-3-supernatural" + }, + { + "slug": "the-sims-3-town-life-stuff", + "name": "The Sims 3: Town Life Stuff", + "url": "/v1/games/the-sims-3-town-life-stuff" + }, + { + "slug": "the-sims-3-university-life", + "name": "The Sims 3: University Life", + "url": "/v1/games/the-sims-3-university-life" + }, + { + "slug": "the-sims-3-world-adventures", + "name": "The Sims 3: World Adventures", + "url": "/v1/games/the-sims-3-world-adventures" + }, { "slug": "the-sims-3-world-adventures-mobile", "name": "The Sims 3: World Adventures Mobile", @@ -738671,11 +758276,311 @@ "name": "The Sims 4", "url": "/v1/games/the-sims-4" }, + { + "slug": "the-sims-4-star-wars-journey-to-batuu-bundle", + "name": "The Sims 4 + Star Wars: Journey to Batuu Bundle", + "url": "/v1/games/the-sims-4-star-wars-journey-to-batuu-bundle" + }, + { + "slug": "the-sims-4-star-wars-journey-to-batuu", + "name": "The Sims 4 Star Wars: Journey to Batuu", + "url": "/v1/games/the-sims-4-star-wars-journey-to-batuu" + }, + { + "slug": "the-sims-4-stuff-bundle-fitness-cool-kitchen-laundry-day-perfect-patio", + "name": "The Sims 4 Stuff Bundle - Fitness, Cool Kitchen, Laundry Day, Perfect Patio", + "url": "/v1/games/the-sims-4-stuff-bundle-fitness-cool-kitchen-laundry-day-perfect-patio" + }, + { + "slug": "the-sims-4-stuff-packs", + "name": "The Sims 4 Stuff packs", + "url": "/v1/games/the-sims-4-stuff-packs" + }, + { + "slug": "the-sims-4-adventure-awaits", + "name": "The Sims 4: Adventure Awaits", + "url": "/v1/games/the-sims-4-adventure-awaits" + }, + { + "slug": "the-sims-4-backyard-stuff", + "name": "The Sims 4: Backyard Stuff", + "url": "/v1/games/the-sims-4-backyard-stuff" + }, + { + "slug": "the-sims-4-bowling-night-stuff", + "name": "The Sims 4: Bowling Night Stuff", + "url": "/v1/games/the-sims-4-bowling-night-stuff" + }, + { + "slug": "the-sims-4-businesses-hobbies", + "name": "The Sims 4: Businesses & Hobbies", + "url": "/v1/games/the-sims-4-businesses-hobbies" + }, + { + "slug": "the-sims-4-bust-the-dust-kit", + "name": "The Sims 4: Bust the Dust Kit", + "url": "/v1/games/the-sims-4-bust-the-dust-kit" + }, + { + "slug": "the-sims-4-cats-dogs", + "name": "The Sims 4: Cats & Dogs", + "url": "/v1/games/the-sims-4-cats-dogs" + }, + { + "slug": "the-sims-4-city-living", + "name": "The Sims 4: City Living", + "url": "/v1/games/the-sims-4-city-living" + }, + { + "slug": "the-sims-4-cool-kitchen-stuff", + "name": "The Sims 4: Cool Kitchen Stuff", + "url": "/v1/games/the-sims-4-cool-kitchen-stuff" + }, + { + "slug": "the-sims-4-cottage-living", + "name": "The Sims 4: Cottage Living", + "url": "/v1/games/the-sims-4-cottage-living" + }, + { + "slug": "the-sims-4-country-kitchen-kit", + "name": "The Sims 4: Country Kitchen Kit", + "url": "/v1/games/the-sims-4-country-kitchen-kit" + }, + { + "slug": "the-sims-4-crystal-creations-stuff", + "name": "The Sims 4: Crystal Creations Stuff", + "url": "/v1/games/the-sims-4-crystal-creations-stuff" + }, + { + "slug": "the-sims-4-dine-out", + "name": "The Sims 4: Dine Out", + "url": "/v1/games/the-sims-4-dine-out" + }, + { + "slug": "the-sims-4-discover-university", + "name": "The Sims 4: Discover University", + "url": "/v1/games/the-sims-4-discover-university" + }, + { + "slug": "the-sims-4-dream-home-decorator", + "name": "The Sims 4: Dream Home Decorator", + "url": "/v1/games/the-sims-4-dream-home-decorator" + }, + { + "slug": "the-sims-4-eco-lifestyle", + "name": "The Sims 4: Eco Lifestyle", + "url": "/v1/games/the-sims-4-eco-lifestyle" + }, + { + "slug": "the-sims-4-enchanted-by-nature", + "name": "The Sims 4: Enchanted by Nature", + "url": "/v1/games/the-sims-4-enchanted-by-nature" + }, + { + "slug": "the-sims-4-fitness-stuff", + "name": "The Sims 4: Fitness Stuff", + "url": "/v1/games/the-sims-4-fitness-stuff" + }, + { + "slug": "the-sims-4-for-rent", + "name": "The Sims 4: For Rent", + "url": "/v1/games/the-sims-4-for-rent" + }, + { + "slug": "the-sims-4-get-famous", + "name": "The Sims 4: Get Famous", + "url": "/v1/games/the-sims-4-get-famous" + }, + { + "slug": "the-sims-4-get-together", + "name": "The Sims 4: Get Together", + "url": "/v1/games/the-sims-4-get-together" + }, + { + "slug": "the-sims-4-get-to-work", + "name": "The Sims 4: Get to Work", + "url": "/v1/games/the-sims-4-get-to-work" + }, + { + "slug": "the-sims-4-growing-together", + "name": "The Sims 4: Growing Together", + "url": "/v1/games/the-sims-4-growing-together" + }, + { + "slug": "the-sims-4-high-school-years", + "name": "The Sims 4: High School Years", + "url": "/v1/games/the-sims-4-high-school-years" + }, + { + "slug": "the-sims-4-home-chef-hustle-stuff", + "name": "The Sims 4: Home Chef Hustle Stuff", + "url": "/v1/games/the-sims-4-home-chef-hustle-stuff" + }, + { + "slug": "the-sims-4-horse-ranch", + "name": "The Sims 4: Horse Ranch", + "url": "/v1/games/the-sims-4-horse-ranch" + }, + { + "slug": "the-sims-4-island-living", + "name": "The Sims 4: Island Living", + "url": "/v1/games/the-sims-4-island-living" + }, + { + "slug": "the-sims-4-jungle-adventure", + "name": "The Sims 4: Jungle Adventure", + "url": "/v1/games/the-sims-4-jungle-adventure" + }, + { + "slug": "the-sims-4-kids-room-stuff", + "name": "The Sims 4: Kids Room Stuff", + "url": "/v1/games/the-sims-4-kids-room-stuff" + }, + { + "slug": "the-sims-4-laundry-day-stuff", + "name": "The Sims 4: Laundry Day Stuff", + "url": "/v1/games/the-sims-4-laundry-day-stuff" + }, + { + "slug": "the-sims-4-life-death", + "name": "The Sims 4: Life & Death", + "url": "/v1/games/the-sims-4-life-death" + }, { "slug": "the-sims-4-lovestruck", "name": "The Sims 4: Lovestruck", "url": "/v1/games/the-sims-4-lovestruck" }, + { + "slug": "the-sims-4-luxury-party-stuff", + "name": "The Sims 4: Luxury Party Stuff", + "url": "/v1/games/the-sims-4-luxury-party-stuff" + }, + { + "slug": "the-sims-4-moschino-stuff", + "name": "The Sims 4: Moschino Stuff", + "url": "/v1/games/the-sims-4-moschino-stuff" + }, + { + "slug": "the-sims-4-movie-hangout-stuff", + "name": "The Sims 4: Movie Hangout Stuff", + "url": "/v1/games/the-sims-4-movie-hangout-stuff" + }, + { + "slug": "the-sims-4-my-first-pet-stuff", + "name": "The Sims 4: My First Pet Stuff", + "url": "/v1/games/the-sims-4-my-first-pet-stuff" + }, + { + "slug": "the-sims-4-my-wedding-stories", + "name": "The Sims 4: My Wedding Stories", + "url": "/v1/games/the-sims-4-my-wedding-stories" + }, + { + "slug": "the-sims-4-nifty-knitting-stuff", + "name": "The Sims 4: Nifty Knitting Stuff", + "url": "/v1/games/the-sims-4-nifty-knitting-stuff" + }, + { + "slug": "the-sims-4-outdoor-retreat", + "name": "The Sims 4: Outdoor Retreat", + "url": "/v1/games/the-sims-4-outdoor-retreat" + }, + { + "slug": "the-sims-4-paranormal-stuff", + "name": "The Sims 4: Paranormal Stuff", + "url": "/v1/games/the-sims-4-paranormal-stuff" + }, + { + "slug": "the-sims-4-parenthood", + "name": "The Sims 4: Parenthood", + "url": "/v1/games/the-sims-4-parenthood" + }, + { + "slug": "the-sims-4-perfect-patio-stuff", + "name": "The Sims 4: Perfect Patio Stuff", + "url": "/v1/games/the-sims-4-perfect-patio-stuff" + }, + { + "slug": "the-sims-4-realm-of-magic", + "name": "The Sims 4: Realm of Magic", + "url": "/v1/games/the-sims-4-realm-of-magic" + }, + { + "slug": "the-sims-4-romantic-garden-stuff", + "name": "The Sims 4: Romantic Garden Stuff", + "url": "/v1/games/the-sims-4-romantic-garden-stuff" + }, + { + "slug": "the-sims-4-royalty-and-legacy", + "name": "The Sims 4: Royalty and Legacy", + "url": "/v1/games/the-sims-4-royalty-and-legacy" + }, + { + "slug": "the-sims-4-seasons", + "name": "The Sims 4: Seasons", + "url": "/v1/games/the-sims-4-seasons" + }, + { + "slug": "the-sims-4-snowy-escape", + "name": "The Sims 4: Snowy Escape", + "url": "/v1/games/the-sims-4-snowy-escape" + }, + { + "slug": "the-sims-4-spa-day", + "name": "The Sims 4: Spa Day", + "url": "/v1/games/the-sims-4-spa-day" + }, + { + "slug": "the-sims-4-spooky-stuff", + "name": "The Sims 4: Spooky Stuff", + "url": "/v1/games/the-sims-4-spooky-stuff" + }, + { + "slug": "the-sims-4-strangerville", + "name": "The Sims 4: StrangerVille", + "url": "/v1/games/the-sims-4-strangerville" + }, + { + "slug": "the-sims-4-throwback-fit-kit", + "name": "The Sims 4: Throwback Fit Kit", + "url": "/v1/games/the-sims-4-throwback-fit-kit" + }, + { + "slug": "the-sims-4-tiny-living-stuff", + "name": "The Sims 4: Tiny Living Stuff", + "url": "/v1/games/the-sims-4-tiny-living-stuff" + }, + { + "slug": "the-sims-4-toddler-stuff", + "name": "The Sims 4: Toddler Stuff", + "url": "/v1/games/the-sims-4-toddler-stuff" + }, + { + "slug": "the-sims-4-vampires", + "name": "The Sims 4: Vampires", + "url": "/v1/games/the-sims-4-vampires" + }, + { + "slug": "the-sims-4-vintage-glamour-stuff", + "name": "The Sims 4: Vintage Glamour Stuff", + "url": "/v1/games/the-sims-4-vintage-glamour-stuff" + }, + { + "slug": "the-sims-4-werewolves-q136511463", + "name": "The Sims 4: Werewolves", + "url": "/v1/games/the-sims-4-werewolves-q136511463" + }, + { + "slug": "the-sims-4-werewolves", + "name": "The Sims 4: Werewolves", + "url": "/v1/games/the-sims-4-werewolves" + }, + { + "slug": "the-sims-5", + "name": "The Sims 5", + "url": "/v1/games/the-sims-5" + }, { "slug": "the-sims-bowling", "name": "The Sims Bowling", @@ -738736,11 +758641,21 @@ "name": "The Sims Medieval", "url": "/v1/games/the-sims-medieval" }, + { + "slug": "the-sims-medieval-pirates-and-nobles", + "name": "The Sims Medieval: Pirates and Nobles", + "url": "/v1/games/the-sims-medieval-pirates-and-nobles" + }, { "slug": "the-sims-mobile", "name": "The Sims Mobile", "url": "/v1/games/the-sims-mobile" }, + { + "slug": "the-sims-olympus", + "name": "The Sims Olympus", + "url": "/v1/games/the-sims-olympus" + }, { "slug": "the-sims-online", "name": "The Sims Online", @@ -738761,11 +758676,41 @@ "name": "The Sims Social", "url": "/v1/games/the-sims-social" }, + { + "slug": "the-sims-hot-date", + "name": "The Sims: Hot Date", + "url": "/v1/games/the-sims-hot-date" + }, + { + "slug": "the-sims-house-party", + "name": "The Sims: House Party", + "url": "/v1/games/the-sims-house-party" + }, + { + "slug": "the-sims-livin-large", + "name": "The Sims: Livin' Large", + "url": "/v1/games/the-sims-livin-large" + }, + { + "slug": "the-sims-makin-magic", + "name": "The Sims: Makin' Magic", + "url": "/v1/games/the-sims-makin-magic" + }, + { + "slug": "the-sims-superstar", + "name": "The Sims: Superstar", + "url": "/v1/games/the-sims-superstar" + }, { "slug": "the-sims-unleashed", "name": "The Sims: Unleashed", "url": "/v1/games/the-sims-unleashed" }, + { + "slug": "the-sims-vacation", + "name": "The Sims: Vacation", + "url": "/v1/games/the-sims-vacation" + }, { "slug": "the-simulacrum", "name": "The Simulacrum", @@ -739551,6 +759496,11 @@ "name": "The Spewnicorn", "url": "/v1/games/the-spewnicorn" }, + { + "slug": "the-sphere", + "name": "The Sphere", + "url": "/v1/games/the-sphere" + }, { "slug": "the-sphere-of-abyss", "name": "The Sphere of Abyss", @@ -739791,6 +759741,11 @@ "name": "The Stanford Ocean Acidification Experience", "url": "/v1/games/the-stanford-ocean-acidification-experience" }, + { + "slug": "the-stanley-parable-q116683903", + "name": "The Stanley Parable", + "url": "/v1/games/the-stanley-parable-q116683903" + }, { "slug": "the-stanley-parable", "name": "The Stanley Parable", @@ -739806,6 +759761,11 @@ "name": "The Star Named EOS", "url": "/v1/games/the-star-named-eos" }, + { + "slug": "the-star-wars-trilogy", + "name": "The Star Wars Trilogy", + "url": "/v1/games/the-star-wars-trilogy" + }, { "slug": "the-stare", "name": "The Stare", @@ -740411,6 +760371,11 @@ "name": "The Surge 2", "url": "/v1/games/the-surge-2" }, + { + "slug": "the-surge-a-walk-in-the-park", + "name": "The Surge: A Walk in the Park", + "url": "/v1/games/the-surge-a-walk-in-the-park" + }, { "slug": "the-surgeon", "name": "The Surgeon", @@ -740796,6 +760761,11 @@ "name": "The Talos Principle: Reawakened", "url": "/v1/games/the-talos-principle-reawakened" }, + { + "slug": "the-talos-principle-road-to-gehenna", + "name": "The Talos Principle: Road To Gehenna", + "url": "/v1/games/the-talos-principle-road-to-gehenna" + }, { "slug": "the-tape", "name": "The Tape", @@ -740851,6 +760821,11 @@ "name": "The Tawashi", "url": "/v1/games/the-tawashi" }, + { + "slug": "the-teal-mask", + "name": "The Teal Mask", + "url": "/v1/games/the-teal-mask" + }, { "slug": "the-tearoom", "name": "The Tearoom", @@ -740881,6 +760856,16 @@ "name": "The Teleport", "url": "/v1/games/the-teleport" }, + { + "slug": "the-telltale-batman-shadows-edition", + "name": "The Telltale Batman: Shadows Edition", + "url": "/v1/games/the-telltale-batman-shadows-edition" + }, + { + "slug": "the-telltale-games-collection", + "name": "The Telltale Games Collection", + "url": "/v1/games/the-telltale-games-collection" + }, { "slug": "the-telwynium", "name": "The Telwynium", @@ -740991,6 +760976,11 @@ "name": "The Terminator 2029", "url": "/v1/games/the-terminator-2029" }, + { + "slug": "the-terminator-2029-operation-scour", + "name": "The Terminator 2029: Operation Scour", + "url": "/v1/games/the-terminator-2029-operation-scour" + }, { "slug": "the-terminator-dawn-of-fate", "name": "The Terminator: Dawn of Fate", @@ -741431,6 +761421,11 @@ "name": "The Titty-Fucking Hot Spring Ryokan Ghost", "url": "/v1/games/the-titty-fucking-hot-spring-ryokan-ghost" }, + { + "slug": "the-toll", + "name": "The Toll", + "url": "/v1/games/the-toll" + }, { "slug": "the-tomb-of-corruption", "name": "The Tomb of Corruption", @@ -741586,11 +761581,481 @@ "name": "The Tower Of TigerQiuQiu 2", "url": "/v1/games/the-tower-of-tigerqiuqiu-2" }, + { + "slug": "the-tower-of-tigerqiuqiu-4-way-dodge-the-ball", + "name": "The Tower Of TigerQiuQiu 4-way Dodge the ball", + "url": "/v1/games/the-tower-of-tigerqiuqiu-4-way-dodge-the-ball" + }, + { + "slug": "the-tower-of-tigerqiuqiu-armored-fighter-arena", + "name": "The Tower Of TigerQiuQiu Armored Fighter Arena", + "url": "/v1/games/the-tower-of-tigerqiuqiu-armored-fighter-arena" + }, + { + "slug": "the-tower-of-tigerqiuqiu-axe-sword-bow", + "name": "The Tower Of TigerQiuQiu Axe Sword Bow", + "url": "/v1/games/the-tower-of-tigerqiuqiu-axe-sword-bow" + }, + { + "slug": "the-tower-of-tigerqiuqiu-ball-war", + "name": "The Tower Of TigerQiuQiu Ball War", + "url": "/v1/games/the-tower-of-tigerqiuqiu-ball-war" + }, + { + "slug": "the-tower-of-tigerqiuqiu-battleship-defense", + "name": "The Tower Of TigerQiuQiu Battleship Defense", + "url": "/v1/games/the-tower-of-tigerqiuqiu-battleship-defense" + }, + { + "slug": "the-tower-of-tigerqiuqiu-birds-cave", + "name": "The Tower Of TigerQiuQiu Birds Cave", + "url": "/v1/games/the-tower-of-tigerqiuqiu-birds-cave" + }, + { + "slug": "the-tower-of-tigerqiuqiu-bomber-level-up", + "name": "The Tower Of TigerQiuQiu Bomber Level Up", + "url": "/v1/games/the-tower-of-tigerqiuqiu-bomber-level-up" + }, + { + "slug": "the-tower-of-tigerqiuqiu-bomber-the-rolling-stone", + "name": "The Tower Of TigerQiuQiu Bomber The Rolling Stone", + "url": "/v1/games/the-tower-of-tigerqiuqiu-bomber-the-rolling-stone" + }, + { + "slug": "the-tower-of-tigerqiuqiu-bomber-the-ruby-sword", + "name": "The Tower Of TigerQiuQiu Bomber The Ruby Sword", + "url": "/v1/games/the-tower-of-tigerqiuqiu-bomber-the-ruby-sword" + }, + { + "slug": "the-tower-of-tigerqiuqiu-bomber-tiger", + "name": "The Tower Of TigerQiuQiu Bomber Tiger", + "url": "/v1/games/the-tower-of-tigerqiuqiu-bomber-tiger" + }, + { + "slug": "the-tower-of-tigerqiuqiu-bomber-treasure", + "name": "The Tower Of TigerQiuQiu Bomber Treasure", + "url": "/v1/games/the-tower-of-tigerqiuqiu-bomber-treasure" + }, + { + "slug": "the-tower-of-tigerqiuqiu-brick-breaker", + "name": "The Tower Of TigerQiuQiu Brick Breaker", + "url": "/v1/games/the-tower-of-tigerqiuqiu-brick-breaker" + }, + { + "slug": "the-tower-of-tigerqiuqiu-bubble-gun", + "name": "The Tower Of TigerQiuQiu Bubble Gun", + "url": "/v1/games/the-tower-of-tigerqiuqiu-bubble-gun" + }, + { + "slug": "the-tower-of-tigerqiuqiu-deepwater-bomb", + "name": "The Tower Of TigerQiuQiu Deepwater Bomb", + "url": "/v1/games/the-tower-of-tigerqiuqiu-deepwater-bomb" + }, + { + "slug": "the-tower-of-tigerqiuqiu-dodge-the-ball", + "name": "The Tower Of TigerQiuQiu Dodge the ball", + "url": "/v1/games/the-tower-of-tigerqiuqiu-dodge-the-ball" + }, + { + "slug": "the-tower-of-tigerqiuqiu-down-to-hole", + "name": "The Tower Of TigerQiuQiu Down To Hole", + "url": "/v1/games/the-tower-of-tigerqiuqiu-down-to-hole" + }, + { + "slug": "the-tower-of-tigerqiuqiu-drop-balls", + "name": "The Tower Of TigerQiuQiu Drop Balls", + "url": "/v1/games/the-tower-of-tigerqiuqiu-drop-balls" + }, + { + "slug": "the-tower-of-tigerqiuqiu-duck-war", + "name": "The Tower Of TigerQiuQiu Duck War", + "url": "/v1/games/the-tower-of-tigerqiuqiu-duck-war" + }, + { + "slug": "the-tower-of-tigerqiuqiu-elevators-war", + "name": "The Tower Of TigerQiuQiu Elevators War", + "url": "/v1/games/the-tower-of-tigerqiuqiu-elevators-war" + }, + { + "slug": "the-tower-of-tigerqiuqiu-falling-stone", + "name": "The Tower Of TigerQiuQiu Falling Stone", + "url": "/v1/games/the-tower-of-tigerqiuqiu-falling-stone" + }, + { + "slug": "the-tower-of-tigerqiuqiu-girl-breaker-alice", + "name": "The Tower Of TigerQiuQiu Girl Breaker Alice", + "url": "/v1/games/the-tower-of-tigerqiuqiu-girl-breaker-alice" + }, + { + "slug": "the-tower-of-tigerqiuqiu-girl-breaker-anna", + "name": "The Tower Of TigerQiuQiu Girl Breaker Anna", + "url": "/v1/games/the-tower-of-tigerqiuqiu-girl-breaker-anna" + }, + { + "slug": "the-tower-of-tigerqiuqiu-girl-breaker-ava", + "name": "The Tower Of TigerQiuQiu Girl Breaker Ava", + "url": "/v1/games/the-tower-of-tigerqiuqiu-girl-breaker-ava" + }, + { + "slug": "the-tower-of-tigerqiuqiu-girl-breaker-chloe", + "name": "The Tower Of TigerQiuQiu Girl Breaker Chloe", + "url": "/v1/games/the-tower-of-tigerqiuqiu-girl-breaker-chloe" + }, + { + "slug": "the-tower-of-tigerqiuqiu-girl-breaker-elizabeth", + "name": "The Tower Of TigerQiuQiu Girl Breaker Elizabeth", + "url": "/v1/games/the-tower-of-tigerqiuqiu-girl-breaker-elizabeth" + }, + { + "slug": "the-tower-of-tigerqiuqiu-girl-breaker-emily", + "name": "The Tower Of TigerQiuQiu Girl Breaker Emily", + "url": "/v1/games/the-tower-of-tigerqiuqiu-girl-breaker-emily" + }, + { + "slug": "the-tower-of-tigerqiuqiu-girl-breaker-emma", + "name": "The Tower Of TigerQiuQiu Girl Breaker Emma", + "url": "/v1/games/the-tower-of-tigerqiuqiu-girl-breaker-emma" + }, + { + "slug": "the-tower-of-tigerqiuqiu-girl-breaker-fang", + "name": "The Tower Of TigerQiuQiu Girl Breaker Fang", + "url": "/v1/games/the-tower-of-tigerqiuqiu-girl-breaker-fang" + }, + { + "slug": "the-tower-of-tigerqiuqiu-girl-breaker-grace", + "name": "The Tower Of TigerQiuQiu Girl Breaker Grace", + "url": "/v1/games/the-tower-of-tigerqiuqiu-girl-breaker-grace" + }, + { + "slug": "the-tower-of-tigerqiuqiu-girl-breaker-hannah", + "name": "The Tower Of TigerQiuQiu Girl Breaker Hannah", + "url": "/v1/games/the-tower-of-tigerqiuqiu-girl-breaker-hannah" + }, + { + "slug": "the-tower-of-tigerqiuqiu-girl-breaker-isabella", + "name": "The Tower Of TigerQiuQiu Girl Breaker Isabella", + "url": "/v1/games/the-tower-of-tigerqiuqiu-girl-breaker-isabella" + }, + { + "slug": "the-tower-of-tigerqiuqiu-girl-breaker-lily", + "name": "The Tower Of TigerQiuQiu Girl Breaker Lily", + "url": "/v1/games/the-tower-of-tigerqiuqiu-girl-breaker-lily" + }, + { + "slug": "the-tower-of-tigerqiuqiu-girl-breaker-lucy", + "name": "The Tower Of TigerQiuQiu Girl Breaker Lucy", + "url": "/v1/games/the-tower-of-tigerqiuqiu-girl-breaker-lucy" + }, + { + "slug": "the-tower-of-tigerqiuqiu-girl-breaker-madison", + "name": "The Tower Of TigerQiuQiu Girl Breaker Madison", + "url": "/v1/games/the-tower-of-tigerqiuqiu-girl-breaker-madison" + }, + { + "slug": "the-tower-of-tigerqiuqiu-girl-breaker-mairy", + "name": "The Tower Of TigerQiuQiu Girl Breaker Mairy", + "url": "/v1/games/the-tower-of-tigerqiuqiu-girl-breaker-mairy" + }, + { + "slug": "the-tower-of-tigerqiuqiu-girl-breaker-nana", + "name": "The Tower Of TigerQiuQiu Girl Breaker NaNa", + "url": "/v1/games/the-tower-of-tigerqiuqiu-girl-breaker-nana" + }, + { + "slug": "the-tower-of-tigerqiuqiu-girl-breaker-olivia", + "name": "The Tower Of TigerQiuQiu Girl Breaker Olivia", + "url": "/v1/games/the-tower-of-tigerqiuqiu-girl-breaker-olivia" + }, + { + "slug": "the-tower-of-tigerqiuqiu-girl-breaker-sophia", + "name": "The Tower Of TigerQiuQiu Girl Breaker Sophia", + "url": "/v1/games/the-tower-of-tigerqiuqiu-girl-breaker-sophia" + }, + { + "slug": "the-tower-of-tigerqiuqiu-guardian", + "name": "The Tower Of TigerQiuQiu Guardian", + "url": "/v1/games/the-tower-of-tigerqiuqiu-guardian" + }, + { + "slug": "the-tower-of-tigerqiuqiu-hit-balls", + "name": "The Tower Of TigerQiuQiu Hit Balls", + "url": "/v1/games/the-tower-of-tigerqiuqiu-hit-balls" + }, + { + "slug": "the-tower-of-tigerqiuqiu-image-breaker", + "name": "The Tower Of TigerQiuQiu Image Breaker", + "url": "/v1/games/the-tower-of-tigerqiuqiu-image-breaker" + }, + { + "slug": "the-tower-of-tigerqiuqiu-insect-invade", + "name": "The Tower Of TigerQiuQiu Insect Invade", + "url": "/v1/games/the-tower-of-tigerqiuqiu-insect-invade" + }, + { + "slug": "the-tower-of-tigerqiuqiu-insect-invade-2", + "name": "The Tower Of TigerQiuQiu Insect Invade 2", + "url": "/v1/games/the-tower-of-tigerqiuqiu-insect-invade-2" + }, + { + "slug": "the-tower-of-tigerqiuqiu-into-the-blue", + "name": "The Tower Of TigerQiuQiu Into The Blue", + "url": "/v1/games/the-tower-of-tigerqiuqiu-into-the-blue" + }, + { + "slug": "the-tower-of-tigerqiuqiu-kamov-kv-51", + "name": "The Tower Of TigerQiuQiu Kamov Kv-51", + "url": "/v1/games/the-tower-of-tigerqiuqiu-kamov-kv-51" + }, + { + "slug": "the-tower-of-tigerqiuqiu-knife-darts", + "name": "The Tower Of TigerQiuQiu Knife Darts", + "url": "/v1/games/the-tower-of-tigerqiuqiu-knife-darts" + }, + { + "slug": "the-tower-of-tigerqiuqiu-ladder", + "name": "The Tower Of TigerQiuQiu Ladder", + "url": "/v1/games/the-tower-of-tigerqiuqiu-ladder" + }, + { + "slug": "the-tower-of-tigerqiuqiu-match-3", + "name": "The Tower Of TigerQiuQiu Match 3", + "url": "/v1/games/the-tower-of-tigerqiuqiu-match-3" + }, + { + "slug": "the-tower-of-tigerqiuqiu-moth-snake", + "name": "The Tower Of TigerQiuQiu Moth Snake", + "url": "/v1/games/the-tower-of-tigerqiuqiu-moth-snake" + }, + { + "slug": "the-tower-of-tigerqiuqiu-ninja-alpha", + "name": "The Tower Of TigerQiuQiu Ninja Alpha", + "url": "/v1/games/the-tower-of-tigerqiuqiu-ninja-alpha" + }, + { + "slug": "the-tower-of-tigerqiuqiu-ninja-beta", + "name": "The Tower Of TigerQiuQiu Ninja Beta", + "url": "/v1/games/the-tower-of-tigerqiuqiu-ninja-beta" + }, + { + "slug": "the-tower-of-tigerqiuqiu-ninja-delta", + "name": "The Tower Of TigerQiuQiu Ninja Delta", + "url": "/v1/games/the-tower-of-tigerqiuqiu-ninja-delta" + }, + { + "slug": "the-tower-of-tigerqiuqiu-ninja-epsilon", + "name": "The Tower Of TigerQiuQiu Ninja Epsilon", + "url": "/v1/games/the-tower-of-tigerqiuqiu-ninja-epsilon" + }, + { + "slug": "the-tower-of-tigerqiuqiu-ninja-eta", + "name": "The Tower Of TigerQiuQiu Ninja Eta", + "url": "/v1/games/the-tower-of-tigerqiuqiu-ninja-eta" + }, + { + "slug": "the-tower-of-tigerqiuqiu-ninja-gamma", + "name": "The Tower Of TigerQiuQiu Ninja Gamma", + "url": "/v1/games/the-tower-of-tigerqiuqiu-ninja-gamma" + }, + { + "slug": "the-tower-of-tigerqiuqiu-ninja-one", + "name": "The Tower Of TigerQiuQiu Ninja One", + "url": "/v1/games/the-tower-of-tigerqiuqiu-ninja-one" + }, + { + "slug": "the-tower-of-tigerqiuqiu-ninja-plus", + "name": "The Tower Of TigerQiuQiu Ninja Plus", + "url": "/v1/games/the-tower-of-tigerqiuqiu-ninja-plus" + }, + { + "slug": "the-tower-of-tigerqiuqiu-ninja-s", + "name": "The Tower Of TigerQiuQiu Ninja S", + "url": "/v1/games/the-tower-of-tigerqiuqiu-ninja-s" + }, + { + "slug": "the-tower-of-tigerqiuqiu-ninja-the-wind", + "name": "The Tower Of TigerQiuQiu Ninja The Wind", + "url": "/v1/games/the-tower-of-tigerqiuqiu-ninja-the-wind" + }, + { + "slug": "the-tower-of-tigerqiuqiu-ninja-thet", + "name": "The Tower Of TigerQiuQiu Ninja Thet", + "url": "/v1/games/the-tower-of-tigerqiuqiu-ninja-thet" + }, + { + "slug": "the-tower-of-tigerqiuqiu-ninja-tiger-qiuqiu", + "name": "The Tower Of TigerQiuQiu Ninja Tiger:QiuQiu", + "url": "/v1/games/the-tower-of-tigerqiuqiu-ninja-tiger-qiuqiu" + }, + { + "slug": "the-tower-of-tigerqiuqiu-ninja-w", + "name": "The Tower Of TigerQiuQiu Ninja W", + "url": "/v1/games/the-tower-of-tigerqiuqiu-ninja-w" + }, + { + "slug": "the-tower-of-tigerqiuqiu-ninja-zeta", + "name": "The Tower Of TigerQiuQiu Ninja Zeta", + "url": "/v1/games/the-tower-of-tigerqiuqiu-ninja-zeta" + }, + { + "slug": "the-tower-of-tigerqiuqiu-nyaa-invaders-1", + "name": "The Tower Of TigerQiuQiu Nyaa Invaders 1", + "url": "/v1/games/the-tower-of-tigerqiuqiu-nyaa-invaders-1" + }, + { + "slug": "the-tower-of-tigerqiuqiu-nyaa-invaders-2", + "name": "The Tower Of TigerQiuQiu Nyaa Invaders 2", + "url": "/v1/games/the-tower-of-tigerqiuqiu-nyaa-invaders-2" + }, + { + "slug": "the-tower-of-tigerqiuqiu-nyaa-invaders-3", + "name": "The Tower Of TigerQiuQiu Nyaa Invaders 3", + "url": "/v1/games/the-tower-of-tigerqiuqiu-nyaa-invaders-3" + }, + { + "slug": "the-tower-of-tigerqiuqiu-nyaa-invaders-4", + "name": "The Tower Of TigerQiuQiu Nyaa Invaders 4", + "url": "/v1/games/the-tower-of-tigerqiuqiu-nyaa-invaders-4" + }, + { + "slug": "the-tower-of-tigerqiuqiu-police-cat", + "name": "The Tower Of TigerQiuQiu Police Cat", + "url": "/v1/games/the-tower-of-tigerqiuqiu-police-cat" + }, + { + "slug": "the-tower-of-tigerqiuqiu-raid-on-sea", + "name": "The Tower Of TigerQiuQiu Raid On Sea", + "url": "/v1/games/the-tower-of-tigerqiuqiu-raid-on-sea" + }, + { + "slug": "the-tower-of-tigerqiuqiu-road-race", + "name": "The Tower Of TigerQiuQiu Road Race", + "url": "/v1/games/the-tower-of-tigerqiuqiu-road-race" + }, + { + "slug": "the-tower-of-tigerqiuqiu-sneak", + "name": "The Tower Of TigerQiuQiu Sneak", + "url": "/v1/games/the-tower-of-tigerqiuqiu-sneak" + }, + { + "slug": "the-tower-of-tigerqiuqiu-sniper", + "name": "The Tower Of TigerQiuQiu Sniper", + "url": "/v1/games/the-tower-of-tigerqiuqiu-sniper" + }, + { + "slug": "the-tower-of-tigerqiuqiu-soapbubble", + "name": "The Tower Of TigerQiuQiu Soapbubble", + "url": "/v1/games/the-tower-of-tigerqiuqiu-soapbubble" + }, + { + "slug": "the-tower-of-tigerqiuqiu-space-bubble-and-bricks", + "name": "The Tower Of TigerQiuQiu Space Bubble And Bricks", + "url": "/v1/games/the-tower-of-tigerqiuqiu-space-bubble-and-bricks" + }, + { + "slug": "the-tower-of-tigerqiuqiu-space-force", + "name": "The Tower Of TigerQiuQiu Space Force", + "url": "/v1/games/the-tower-of-tigerqiuqiu-space-force" + }, + { + "slug": "the-tower-of-tigerqiuqiu-spot-the-difference", + "name": "The Tower Of TigerQiuQiu Spot The Difference", + "url": "/v1/games/the-tower-of-tigerqiuqiu-spot-the-difference" + }, + { + "slug": "the-tower-of-tigerqiuqiu-super-tigerio", + "name": "The Tower Of TigerQiuQiu Super Tigerio", + "url": "/v1/games/the-tower-of-tigerqiuqiu-super-tigerio" + }, + { + "slug": "the-tower-of-tigerqiuqiu-the-deep-the-hill", + "name": "The Tower Of TigerQiuQiu The Deep The Hill", + "url": "/v1/games/the-tower-of-tigerqiuqiu-the-deep-the-hill" + }, + { + "slug": "the-tower-of-tigerqiuqiu-the-grenadier", + "name": "The Tower Of TigerQiuQiu The Grenadier", + "url": "/v1/games/the-tower-of-tigerqiuqiu-the-grenadier" + }, + { + "slug": "the-tower-of-tigerqiuqiu-the-wind", + "name": "The Tower Of TigerQiuQiu The Wind", + "url": "/v1/games/the-tower-of-tigerqiuqiu-the-wind" + }, + { + "slug": "the-tower-of-tigerqiuqiu-thief-mouse", + "name": "The Tower Of TigerQiuQiu Thief Mouse", + "url": "/v1/games/the-tower-of-tigerqiuqiu-thief-mouse" + }, + { + "slug": "the-tower-of-tigerqiuqiu-tiger-1952", + "name": "The Tower Of TigerQiuQiu Tiger 1952", + "url": "/v1/games/the-tower-of-tigerqiuqiu-tiger-1952" + }, + { + "slug": "the-tower-of-tigerqiuqiu-tiger-bomber", + "name": "The Tower Of TigerQiuQiu Tiger Bomber", + "url": "/v1/games/the-tower-of-tigerqiuqiu-tiger-bomber" + }, + { + "slug": "the-tower-of-tigerqiuqiu-tiger-tank-60", + "name": "The Tower Of TigerQiuQiu Tiger Tank 60", + "url": "/v1/games/the-tower-of-tigerqiuqiu-tiger-tank-60" + }, + { + "slug": "the-tower-of-tigerqiuqiu-tiger-tank-61", + "name": "The Tower Of TigerQiuQiu Tiger Tank 61", + "url": "/v1/games/the-tower-of-tigerqiuqiu-tiger-tank-61" + }, { "slug": "the-tower-of-tigerqiuqiu-tiger-tank-62", "name": "The Tower Of TigerQiuQiu Tiger Tank 62", "url": "/v1/games/the-tower-of-tigerqiuqiu-tiger-tank-62" }, + { + "slug": "the-tower-of-tigerqiuqiu-tiger-tank-63", + "name": "The Tower Of TigerQiuQiu Tiger Tank 63", + "url": "/v1/games/the-tower-of-tigerqiuqiu-tiger-tank-63" + }, + { + "slug": "the-tower-of-tigerqiuqiu-tiger-tank-64", + "name": "The Tower Of TigerQiuQiu Tiger Tank 64", + "url": "/v1/games/the-tower-of-tigerqiuqiu-tiger-tank-64" + }, + { + "slug": "the-tower-of-tigerqiuqiu-tiger-tank-65", + "name": "The Tower Of TigerQiuQiu Tiger Tank 65", + "url": "/v1/games/the-tower-of-tigerqiuqiu-tiger-tank-65" + }, + { + "slug": "the-tower-of-tigerqiuqiu-tiger-tank-defense", + "name": "The Tower Of TigerQiuQiu Tiger Tank Defense", + "url": "/v1/games/the-tower-of-tigerqiuqiu-tiger-tank-defense" + }, + { + "slug": "the-tower-of-tigerqiuqiu-tiger-tank-defense-s", + "name": "The Tower Of TigerQiuQiu Tiger Tank Defense S", + "url": "/v1/games/the-tower-of-tigerqiuqiu-tiger-tank-defense-s" + }, + { + "slug": "the-tower-of-tigerqiuqiu-tiger-tank-g", + "name": "The Tower Of TigerQiuQiu Tiger Tank G", + "url": "/v1/games/the-tower-of-tigerqiuqiu-tiger-tank-g" + }, + { + "slug": "the-tower-of-tigerqiuqiu-tigscores", + "name": "The Tower Of TigerQiuQiu Tigscores", + "url": "/v1/games/the-tower-of-tigerqiuqiu-tigscores" + }, + { + "slug": "the-tower-of-tigerqiuqiu-war-combat", + "name": "The Tower Of TigerQiuQiu War Combat", + "url": "/v1/games/the-tower-of-tigerqiuqiu-war-combat" + }, + { + "slug": "the-tower-of-tigerqiuqiu-warp-tiger", + "name": "The Tower Of TigerQiuQiu Warp Tiger", + "url": "/v1/games/the-tower-of-tigerqiuqiu-warp-tiger" + }, { "slug": "the-tower-sp", "name": "The Tower SP", @@ -741641,6 +762106,26 @@ "name": "The Tower of Luminus", "url": "/v1/games/the-tower-of-luminus" }, + { + "slug": "the-tower-of-tigerqiuqiu-bomber-the-falling-stone", + "name": "The Tower of TigerQiuQiu BOMBER The Falling Stone", + "url": "/v1/games/the-tower-of-tigerqiuqiu-bomber-the-falling-stone" + }, + { + "slug": "the-tower-of-tigerqiuqiu-bomber-the-ruby-magic", + "name": "The Tower of TigerQiuQiu Bomber The Ruby Magic", + "url": "/v1/games/the-tower-of-tigerqiuqiu-bomber-the-ruby-magic" + }, + { + "slug": "the-tower-of-tigerqiuqiu-pinball-killer", + "name": "The Tower of TigerqiuQiu Pinball killer", + "url": "/v1/games/the-tower-of-tigerqiuqiu-pinball-killer" + }, + { + "slug": "the-tower-of-tigerqiuqiu-square-snake", + "name": "The Tower of Tigerqiuqiu Square Snake", + "url": "/v1/games/the-tower-of-tigerqiuqiu-square-snake" + }, { "slug": "the-tower-of-worth", "name": "The Tower of Worth", @@ -742061,6 +762546,11 @@ "name": "The Trooper", "url": "/v1/games/the-trooper" }, + { + "slug": "the-trouble-with-clones", + "name": "The Trouble with Clones", + "url": "/v1/games/the-trouble-with-clones" + }, { "slug": "the-truck-game", "name": "The Truck Game", @@ -742766,6 +763256,11 @@ "name": "The Upturned", "url": "/v1/games/the-upturned" }, + { + "slug": "the-urbz-2", + "name": "The Urbz 2", + "url": "/v1/games/the-urbz-2" + }, { "slug": "the-urbz-sims-in-the-city-q65173091", "name": "The Urbz: Sims in the City", @@ -743381,6 +763876,11 @@ "name": "The Walking Dead: Saints & Sinners – Chapter 2: Retribution", "url": "/v1/games/the-walking-dead-saints-sinners-chapter-2-retribution" }, + { + "slug": "the-walking-dead-season-1-and-season-2-bundle", + "name": "The Walking Dead: Season 1 and Season 2 - Bundle", + "url": "/v1/games/the-walking-dead-season-1-and-season-2-bundle" + }, { "slug": "the-walking-dead-season-one", "name": "The Walking Dead: Season One", @@ -743391,6 +763891,11 @@ "name": "The Walking Dead: Season Two", "url": "/v1/games/the-walking-dead-season-two" }, + { + "slug": "the-walking-dead-season-two-episode-1-all-that-remains", + "name": "The Walking Dead: Season Two Episode 1 - All That Remains", + "url": "/v1/games/the-walking-dead-season-two-episode-1-all-that-remains" + }, { "slug": "the-walking-dead-survival-instinct", "name": "The Walking Dead: Survival Instinct", @@ -743401,6 +763906,11 @@ "name": "The Walking Dead: Survivors", "url": "/v1/games/the-walking-dead-survivors" }, + { + "slug": "the-walking-dead-the-complete-first-season", + "name": "The Walking Dead: The Complete First Season", + "url": "/v1/games/the-walking-dead-the-complete-first-season" + }, { "slug": "the-walking-dead-the-final-season", "name": "The Walking Dead: The Final Season", @@ -744441,6 +764951,11 @@ "name": "The Witch and the Hundred Knight 2", "url": "/v1/games/the-witch-and-the-hundred-knight-2" }, + { + "slug": "the-witch-and-the-hundred-knight-revival-edition", + "name": "The Witch and the Hundred Knight: Revival Edition", + "url": "/v1/games/the-witch-and-the-hundred-knight-revival-edition" + }, { "slug": "the-witch-in-the-forest", "name": "The Witch in the Forest", @@ -744566,11 +765081,31 @@ "name": "The Witcher 2: Assassins of Kings", "url": "/v1/games/the-witcher-2-assassins-of-kings" }, + { + "slug": "the-witcher-2-assassins-of-kings-enhanced-edition", + "name": "The Witcher 2: Assassins of Kings Enhanced Edition", + "url": "/v1/games/the-witcher-2-assassins-of-kings-enhanced-edition" + }, { "slug": "the-witcher-3-wild-hunt", "name": "The Witcher 3: Wild Hunt", "url": "/v1/games/the-witcher-3-wild-hunt" }, + { + "slug": "the-witcher-3-wild-hunt-blood-and-wine", + "name": "The Witcher 3: Wild Hunt – Blood and Wine", + "url": "/v1/games/the-witcher-3-wild-hunt-blood-and-wine" + }, + { + "slug": "the-witcher-3-wild-hunt-hearts-of-stone", + "name": "The Witcher 3: Wild Hunt – Hearts of Stone", + "url": "/v1/games/the-witcher-3-wild-hunt-hearts-of-stone" + }, + { + "slug": "the-witcher-3-wild-hunt-songs-of-the-past", + "name": "The Witcher 3: Wild Hunt – Songs of the Past", + "url": "/v1/games/the-witcher-3-wild-hunt-songs-of-the-past" + }, { "slug": "the-witcher-adventure-game", "name": "The Witcher Adventure Game", @@ -744581,6 +765116,11 @@ "name": "The Witcher Battle Arena", "url": "/v1/games/the-witcher-battle-arena" }, + { + "slug": "the-witcher-iv", + "name": "The Witcher IV", + "url": "/v1/games/the-witcher-iv" + }, { "slug": "the-witcher-crimson-trail", "name": "The Witcher: Crimson Trail", @@ -744601,6 +765141,16 @@ "name": "The Witcher: Rise of the White Wolf", "url": "/v1/games/the-witcher-rise-of-the-white-wolf" }, + { + "slug": "the-witcher-side-effects", + "name": "The Witcher: Side Effects", + "url": "/v1/games/the-witcher-side-effects" + }, + { + "slug": "the-witcher-the-price-of-neutrality", + "name": "The Witcher: The Price of Neutrality", + "url": "/v1/games/the-witcher-the-price-of-neutrality" + }, { "slug": "the-witcher-versus", "name": "The Witcher: Versus", @@ -744741,6 +765291,11 @@ "name": "The Wolf Among Us", "url": "/v1/games/the-wolf-among-us" }, + { + "slug": "the-wolf-among-us-episode-2-smoke-and-mirrors", + "name": "The Wolf Among Us: Episode 2 - Smoke and Mirrors", + "url": "/v1/games/the-wolf-among-us-episode-2-smoke-and-mirrors" + }, { "slug": "the-wolf-is-dead", "name": "The Wolf Is Dead", @@ -744851,6 +765406,11 @@ "name": "The World After", "url": "/v1/games/the-world-after" }, + { + "slug": "the-world-drowns", + "name": "The World Drowns", + "url": "/v1/games/the-world-drowns" + }, { "slug": "the-world-ends-in-ohio", "name": "The World Ends in Ohio", @@ -745156,6 +765716,11 @@ "name": "The X-Rated Adventure: volume I", "url": "/v1/games/the-x-rated-adventure-volume-i" }, + { + "slug": "the-yakuza-remastered-collection", + "name": "The Yakuza Remastered Collection", + "url": "/v1/games/the-yakuza-remastered-collection" + }, { "slug": "the-yakyuuken-special-kon-ya-wa-12-kaisen", "name": "The Yakyuuken Special: Kon'ya wa 12-kaisen!!", @@ -746851,6 +767416,11 @@ "name": "These nights in Cairo", "url": "/v1/games/these-nights-in-cairo" }, + { + "slug": "theseis", + "name": "Theseis", + "url": "/v1/games/theseis" + }, { "slug": "theseus-q124074883", "name": "Theseus", @@ -747101,6 +767671,11 @@ "name": "They Fear The Mist", "url": "/v1/games/they-fear-the-mist" }, + { + "slug": "they-hunger-lost-souls", + "name": "They Hunger: Lost Souls", + "url": "/v1/games/they-hunger-lost-souls" + }, { "slug": "they-killed-your-cat", "name": "They Killed Your Cat", @@ -747336,6 +767911,11 @@ "name": "Thief: Gold", "url": "/v1/games/thief-gold" }, + { + "slug": "thief-the-bank-heist", + "name": "Thief: The Bank Heist", + "url": "/v1/games/thief-the-bank-heist" + }, { "slug": "thief-the-dark-project", "name": "Thief: The Dark Project", @@ -747381,6 +767961,11 @@ "name": "Thimbleweed Park", "url": "/v1/games/thimbleweed-park" }, + { + "slug": "thin-ice-q9778010", + "name": "Thin Ice", + "url": "/v1/games/thin-ice-q9778010" + }, { "slug": "thin-ice", "name": "Thin Ice", @@ -747611,6 +768196,11 @@ "name": "Third Wild", "url": "/v1/games/third-wild" }, + { + "slug": "third-world", + "name": "Third World", + "url": "/v1/games/third-world" + }, { "slug": "third-world-the-bottom-dimension", "name": "Third World: The Bottom Dimension", @@ -747946,11 +768536,21 @@ "name": "This Throne Is Mine - The Card Game", "url": "/v1/games/this-throne-is-mine-the-card-game" }, + { + "slug": "this-war-of-mine-complete-edition", + "name": "This War of Mine: Complete Edition", + "url": "/v1/games/this-war-of-mine-complete-edition" + }, { "slug": "this-war-of-mine-final-cut", "name": "This War of Mine: Final Cut", "url": "/v1/games/this-war-of-mine-final-cut" }, + { + "slug": "this-war-of-mine-the-little-ones", + "name": "This War of Mine: The Little Ones", + "url": "/v1/games/this-war-of-mine-the-little-ones" + }, { "slug": "this-way-madness-lies", "name": "This Way Madness Lies", @@ -748021,6 +768621,11 @@ "name": "This is Normal", "url": "/v1/games/this-is-normal" }, + { + "slug": "this-is-vegas", + "name": "This is Vegas", + "url": "/v1/games/this-is-vegas" + }, { "slug": "this-is-a-ghost", "name": "This is a Ghost", @@ -748456,6 +769061,11 @@ "name": "ThreadSpace: Hyperbol", "url": "/v1/games/threadspace-hyperbol" }, + { + "slug": "threadspace-hyperbol-demo", + "name": "ThreadSpace: Hyperbol Demo", + "url": "/v1/games/threadspace-hyperbol-demo" + }, { "slug": "threadbound", "name": "Threadbound", @@ -748861,6 +769471,11 @@ "name": "Threes", "url": "/v1/games/threes" }, + { + "slug": "threes-q124080274", + "name": "Threes!+", + "url": "/v1/games/threes-q124080274" + }, { "slug": "threshold-q122822597", "name": "Threshold", @@ -748931,6 +769546,11 @@ "name": "Thrill Drive 3", "url": "/v1/games/thrill-drive-3" }, + { + "slug": "thrill-kill", + "name": "Thrill Kill", + "url": "/v1/games/thrill-kill" + }, { "slug": "thrill-of-winning-the-volume-ii", "name": "Thrill Of Winning, The: Volume II", @@ -749466,6 +770086,11 @@ "name": "Thrust Legend", "url": "/v1/games/thrust-legend" }, + { + "slug": "thrust-shot", + "name": "Thrust Shot", + "url": "/v1/games/thrust-shot" + }, { "slug": "thrust-twist-n-turn", "name": "Thrust, Twist 'n' Turn", @@ -749571,6 +770196,11 @@ "name": "Thumper", "url": "/v1/games/thumper" }, + { + "slug": "thumper-pocket-edition", + "name": "Thumper: Pocket Edition+", + "url": "/v1/games/thumper-pocket-edition" + }, { "slug": "thumpies", "name": "Thumpies", @@ -749651,6 +770281,16 @@ "name": "Thunder Force AC", "url": "/v1/games/thunder-force-ac" }, + { + "slug": "thunder-force-gold-pack-1", + "name": "Thunder Force Gold Pack 1", + "url": "/v1/games/thunder-force-gold-pack-1" + }, + { + "slug": "thunder-force-gold-pack-2", + "name": "Thunder Force Gold Pack 2", + "url": "/v1/games/thunder-force-gold-pack-2" + }, { "slug": "thunder-force-ii", "name": "Thunder Force II", @@ -749741,6 +770381,11 @@ "name": "Thunder Spheres - Virtual Reality 3D Pool", "url": "/v1/games/thunder-spheres-virtual-reality-3d-pool" }, + { + "slug": "thunder-storm-lx-3-roadblaster", + "name": "Thunder Storm LX-3 & Roadblaster", + "url": "/v1/games/thunder-storm-lx-3-roadblaster" + }, { "slug": "thunder-tier-one", "name": "Thunder Tier One", @@ -750026,6 +770671,16 @@ "name": "Tiani", "url": "/v1/games/tiani" }, + { + "slug": "tianrang", + "name": "Tianrang", + "url": "/v1/games/tianrang" + }, + { + "slug": "tiberium", + "name": "Tiberium", + "url": "/v1/games/tiberium" + }, { "slug": "tibetan-quest-beyond-the-world-s-end", "name": "Tibetan Quest: Beyond the World's End", @@ -750416,26 +771071,2526 @@ "name": "Tiger Fighter 1931", "url": "/v1/games/tiger-fighter-1931" }, + { + "slug": "tiger-fighter-1931-mp001", + "name": "Tiger Fighter 1931 MP001", + "url": "/v1/games/tiger-fighter-1931-mp001" + }, + { + "slug": "tiger-fighter-1931-mp002", + "name": "Tiger Fighter 1931 MP002", + "url": "/v1/games/tiger-fighter-1931-mp002" + }, + { + "slug": "tiger-fighter-1931-mp003", + "name": "Tiger Fighter 1931 MP003", + "url": "/v1/games/tiger-fighter-1931-mp003" + }, + { + "slug": "tiger-fighter-1931-mp004", + "name": "Tiger Fighter 1931 MP004", + "url": "/v1/games/tiger-fighter-1931-mp004" + }, + { + "slug": "tiger-fighter-1931-mp005", + "name": "Tiger Fighter 1931 MP005", + "url": "/v1/games/tiger-fighter-1931-mp005" + }, + { + "slug": "tiger-fighter-1931-mp006", + "name": "Tiger Fighter 1931 MP006", + "url": "/v1/games/tiger-fighter-1931-mp006" + }, + { + "slug": "tiger-fighter-1931-mp007", + "name": "Tiger Fighter 1931 MP007", + "url": "/v1/games/tiger-fighter-1931-mp007" + }, + { + "slug": "tiger-fighter-1931-mp008", + "name": "Tiger Fighter 1931 MP008", + "url": "/v1/games/tiger-fighter-1931-mp008" + }, + { + "slug": "tiger-fighter-1931-mp009", + "name": "Tiger Fighter 1931 MP009", + "url": "/v1/games/tiger-fighter-1931-mp009" + }, + { + "slug": "tiger-fighter-1931-mp010", + "name": "Tiger Fighter 1931 MP010", + "url": "/v1/games/tiger-fighter-1931-mp010" + }, + { + "slug": "tiger-fighter-1931-mp011", + "name": "Tiger Fighter 1931 MP011", + "url": "/v1/games/tiger-fighter-1931-mp011" + }, + { + "slug": "tiger-fighter-1931-mp012", + "name": "Tiger Fighter 1931 MP012", + "url": "/v1/games/tiger-fighter-1931-mp012" + }, + { + "slug": "tiger-fighter-1931-mp013", + "name": "Tiger Fighter 1931 MP013", + "url": "/v1/games/tiger-fighter-1931-mp013" + }, + { + "slug": "tiger-fighter-1931-mp014", + "name": "Tiger Fighter 1931 MP014", + "url": "/v1/games/tiger-fighter-1931-mp014" + }, + { + "slug": "tiger-fighter-1931-mp015", + "name": "Tiger Fighter 1931 MP015", + "url": "/v1/games/tiger-fighter-1931-mp015" + }, + { + "slug": "tiger-fighter-1931-mp016", + "name": "Tiger Fighter 1931 MP016", + "url": "/v1/games/tiger-fighter-1931-mp016" + }, + { + "slug": "tiger-fighter-1931-mp017", + "name": "Tiger Fighter 1931 MP017", + "url": "/v1/games/tiger-fighter-1931-mp017" + }, + { + "slug": "tiger-fighter-1931-mp018", + "name": "Tiger Fighter 1931 MP018", + "url": "/v1/games/tiger-fighter-1931-mp018" + }, + { + "slug": "tiger-fighter-1931-mp019", + "name": "Tiger Fighter 1931 MP019", + "url": "/v1/games/tiger-fighter-1931-mp019" + }, + { + "slug": "tiger-fighter-1931-mp020", + "name": "Tiger Fighter 1931 MP020", + "url": "/v1/games/tiger-fighter-1931-mp020" + }, + { + "slug": "tiger-fighter-1931-mp021", + "name": "Tiger Fighter 1931 MP021", + "url": "/v1/games/tiger-fighter-1931-mp021" + }, + { + "slug": "tiger-fighter-1931-mp022", + "name": "Tiger Fighter 1931 MP022", + "url": "/v1/games/tiger-fighter-1931-mp022" + }, + { + "slug": "tiger-fighter-1931-mp023", + "name": "Tiger Fighter 1931 MP023", + "url": "/v1/games/tiger-fighter-1931-mp023" + }, + { + "slug": "tiger-fighter-1931-mp024", + "name": "Tiger Fighter 1931 MP024", + "url": "/v1/games/tiger-fighter-1931-mp024" + }, + { + "slug": "tiger-fighter-1931-mp025", + "name": "Tiger Fighter 1931 MP025", + "url": "/v1/games/tiger-fighter-1931-mp025" + }, + { + "slug": "tiger-fighter-1931-mp026", + "name": "Tiger Fighter 1931 MP026", + "url": "/v1/games/tiger-fighter-1931-mp026" + }, + { + "slug": "tiger-fighter-1931-mp027", + "name": "Tiger Fighter 1931 MP027", + "url": "/v1/games/tiger-fighter-1931-mp027" + }, + { + "slug": "tiger-fighter-1931-mp028", + "name": "Tiger Fighter 1931 MP028", + "url": "/v1/games/tiger-fighter-1931-mp028" + }, + { + "slug": "tiger-fighter-1931-mp029", + "name": "Tiger Fighter 1931 MP029", + "url": "/v1/games/tiger-fighter-1931-mp029" + }, + { + "slug": "tiger-fighter-1931-mp030", + "name": "Tiger Fighter 1931 MP030", + "url": "/v1/games/tiger-fighter-1931-mp030" + }, + { + "slug": "tiger-fighter-1931-mp031", + "name": "Tiger Fighter 1931 MP031", + "url": "/v1/games/tiger-fighter-1931-mp031" + }, + { + "slug": "tiger-fighter-1931-mp032", + "name": "Tiger Fighter 1931 MP032", + "url": "/v1/games/tiger-fighter-1931-mp032" + }, + { + "slug": "tiger-fighter-1931-mp033", + "name": "Tiger Fighter 1931 MP033", + "url": "/v1/games/tiger-fighter-1931-mp033" + }, + { + "slug": "tiger-fighter-1931-mp034", + "name": "Tiger Fighter 1931 MP034", + "url": "/v1/games/tiger-fighter-1931-mp034" + }, + { + "slug": "tiger-fighter-1931-mp035", + "name": "Tiger Fighter 1931 MP035", + "url": "/v1/games/tiger-fighter-1931-mp035" + }, + { + "slug": "tiger-fighter-1931-mp036", + "name": "Tiger Fighter 1931 MP036", + "url": "/v1/games/tiger-fighter-1931-mp036" + }, + { + "slug": "tiger-fighter-1931-mp037", + "name": "Tiger Fighter 1931 MP037", + "url": "/v1/games/tiger-fighter-1931-mp037" + }, + { + "slug": "tiger-fighter-1931-mp038", + "name": "Tiger Fighter 1931 MP038", + "url": "/v1/games/tiger-fighter-1931-mp038" + }, + { + "slug": "tiger-fighter-1931-mp039", + "name": "Tiger Fighter 1931 MP039", + "url": "/v1/games/tiger-fighter-1931-mp039" + }, + { + "slug": "tiger-fighter-1931-mp040", + "name": "Tiger Fighter 1931 MP040", + "url": "/v1/games/tiger-fighter-1931-mp040" + }, + { + "slug": "tiger-fighter-1931-mp041", + "name": "Tiger Fighter 1931 MP041", + "url": "/v1/games/tiger-fighter-1931-mp041" + }, + { + "slug": "tiger-fighter-1931-mp042", + "name": "Tiger Fighter 1931 MP042", + "url": "/v1/games/tiger-fighter-1931-mp042" + }, + { + "slug": "tiger-fighter-1931-mp043", + "name": "Tiger Fighter 1931 MP043", + "url": "/v1/games/tiger-fighter-1931-mp043" + }, + { + "slug": "tiger-fighter-1931-mp044", + "name": "Tiger Fighter 1931 MP044", + "url": "/v1/games/tiger-fighter-1931-mp044" + }, + { + "slug": "tiger-fighter-1931-mp045", + "name": "Tiger Fighter 1931 MP045", + "url": "/v1/games/tiger-fighter-1931-mp045" + }, + { + "slug": "tiger-fighter-1931-mp046", + "name": "Tiger Fighter 1931 MP046", + "url": "/v1/games/tiger-fighter-1931-mp046" + }, + { + "slug": "tiger-fighter-1931-mp047", + "name": "Tiger Fighter 1931 MP047", + "url": "/v1/games/tiger-fighter-1931-mp047" + }, + { + "slug": "tiger-fighter-1931-mp048", + "name": "Tiger Fighter 1931 MP048", + "url": "/v1/games/tiger-fighter-1931-mp048" + }, + { + "slug": "tiger-fighter-1931-mp049", + "name": "Tiger Fighter 1931 MP049", + "url": "/v1/games/tiger-fighter-1931-mp049" + }, + { + "slug": "tiger-fighter-1931-mp050", + "name": "Tiger Fighter 1931 MP050", + "url": "/v1/games/tiger-fighter-1931-mp050" + }, + { + "slug": "tiger-fighter-1931-mp051", + "name": "Tiger Fighter 1931 MP051", + "url": "/v1/games/tiger-fighter-1931-mp051" + }, + { + "slug": "tiger-fighter-1931-mp052", + "name": "Tiger Fighter 1931 MP052", + "url": "/v1/games/tiger-fighter-1931-mp052" + }, + { + "slug": "tiger-fighter-1931-mp053", + "name": "Tiger Fighter 1931 MP053", + "url": "/v1/games/tiger-fighter-1931-mp053" + }, + { + "slug": "tiger-fighter-1931-mp054", + "name": "Tiger Fighter 1931 MP054", + "url": "/v1/games/tiger-fighter-1931-mp054" + }, + { + "slug": "tiger-fighter-1931-mp055", + "name": "Tiger Fighter 1931 MP055", + "url": "/v1/games/tiger-fighter-1931-mp055" + }, + { + "slug": "tiger-fighter-1931-mp056", + "name": "Tiger Fighter 1931 MP056", + "url": "/v1/games/tiger-fighter-1931-mp056" + }, + { + "slug": "tiger-fighter-1931-mp057", + "name": "Tiger Fighter 1931 MP057", + "url": "/v1/games/tiger-fighter-1931-mp057" + }, + { + "slug": "tiger-fighter-1931-mp058", + "name": "Tiger Fighter 1931 MP058", + "url": "/v1/games/tiger-fighter-1931-mp058" + }, + { + "slug": "tiger-fighter-1931-mp059", + "name": "Tiger Fighter 1931 MP059", + "url": "/v1/games/tiger-fighter-1931-mp059" + }, + { + "slug": "tiger-fighter-1931-mp060", + "name": "Tiger Fighter 1931 MP060", + "url": "/v1/games/tiger-fighter-1931-mp060" + }, + { + "slug": "tiger-fighter-1931-mp061", + "name": "Tiger Fighter 1931 MP061", + "url": "/v1/games/tiger-fighter-1931-mp061" + }, + { + "slug": "tiger-fighter-1931-mp062", + "name": "Tiger Fighter 1931 MP062", + "url": "/v1/games/tiger-fighter-1931-mp062" + }, + { + "slug": "tiger-fighter-1931-mp063", + "name": "Tiger Fighter 1931 MP063", + "url": "/v1/games/tiger-fighter-1931-mp063" + }, + { + "slug": "tiger-fighter-1931-mp064", + "name": "Tiger Fighter 1931 MP064", + "url": "/v1/games/tiger-fighter-1931-mp064" + }, + { + "slug": "tiger-fighter-1931-mp065", + "name": "Tiger Fighter 1931 MP065", + "url": "/v1/games/tiger-fighter-1931-mp065" + }, + { + "slug": "tiger-fighter-1931-mp066", + "name": "Tiger Fighter 1931 MP066", + "url": "/v1/games/tiger-fighter-1931-mp066" + }, + { + "slug": "tiger-fighter-1931-mp067", + "name": "Tiger Fighter 1931 MP067", + "url": "/v1/games/tiger-fighter-1931-mp067" + }, + { + "slug": "tiger-fighter-1931-mp068", + "name": "Tiger Fighter 1931 MP068", + "url": "/v1/games/tiger-fighter-1931-mp068" + }, + { + "slug": "tiger-fighter-1931-mp069", + "name": "Tiger Fighter 1931 MP069", + "url": "/v1/games/tiger-fighter-1931-mp069" + }, + { + "slug": "tiger-fighter-1931-mp070", + "name": "Tiger Fighter 1931 MP070", + "url": "/v1/games/tiger-fighter-1931-mp070" + }, + { + "slug": "tiger-fighter-1931-mp071", + "name": "Tiger Fighter 1931 MP071", + "url": "/v1/games/tiger-fighter-1931-mp071" + }, + { + "slug": "tiger-fighter-1931-mp072", + "name": "Tiger Fighter 1931 MP072", + "url": "/v1/games/tiger-fighter-1931-mp072" + }, + { + "slug": "tiger-fighter-1931-mp073", + "name": "Tiger Fighter 1931 MP073", + "url": "/v1/games/tiger-fighter-1931-mp073" + }, + { + "slug": "tiger-fighter-1931-mp074", + "name": "Tiger Fighter 1931 MP074", + "url": "/v1/games/tiger-fighter-1931-mp074" + }, + { + "slug": "tiger-fighter-1931-mp075", + "name": "Tiger Fighter 1931 MP075", + "url": "/v1/games/tiger-fighter-1931-mp075" + }, + { + "slug": "tiger-fighter-1931-mp076", + "name": "Tiger Fighter 1931 MP076", + "url": "/v1/games/tiger-fighter-1931-mp076" + }, + { + "slug": "tiger-fighter-1931-mp077", + "name": "Tiger Fighter 1931 MP077", + "url": "/v1/games/tiger-fighter-1931-mp077" + }, + { + "slug": "tiger-fighter-1931-mp078", + "name": "Tiger Fighter 1931 MP078", + "url": "/v1/games/tiger-fighter-1931-mp078" + }, + { + "slug": "tiger-fighter-1931-mp079", + "name": "Tiger Fighter 1931 MP079", + "url": "/v1/games/tiger-fighter-1931-mp079" + }, + { + "slug": "tiger-fighter-1931-mp080", + "name": "Tiger Fighter 1931 MP080", + "url": "/v1/games/tiger-fighter-1931-mp080" + }, + { + "slug": "tiger-fighter-1931-mp081", + "name": "Tiger Fighter 1931 MP081", + "url": "/v1/games/tiger-fighter-1931-mp081" + }, + { + "slug": "tiger-fighter-1931-mp082", + "name": "Tiger Fighter 1931 MP082", + "url": "/v1/games/tiger-fighter-1931-mp082" + }, + { + "slug": "tiger-fighter-1931-mp083", + "name": "Tiger Fighter 1931 MP083", + "url": "/v1/games/tiger-fighter-1931-mp083" + }, + { + "slug": "tiger-fighter-1931-mp084", + "name": "Tiger Fighter 1931 MP084", + "url": "/v1/games/tiger-fighter-1931-mp084" + }, + { + "slug": "tiger-fighter-1931-mp085", + "name": "Tiger Fighter 1931 MP085", + "url": "/v1/games/tiger-fighter-1931-mp085" + }, + { + "slug": "tiger-fighter-1931-mp086", + "name": "Tiger Fighter 1931 MP086", + "url": "/v1/games/tiger-fighter-1931-mp086" + }, + { + "slug": "tiger-fighter-1931-mp087", + "name": "Tiger Fighter 1931 MP087", + "url": "/v1/games/tiger-fighter-1931-mp087" + }, + { + "slug": "tiger-fighter-1931-mp088", + "name": "Tiger Fighter 1931 MP088", + "url": "/v1/games/tiger-fighter-1931-mp088" + }, + { + "slug": "tiger-fighter-1931-mp089", + "name": "Tiger Fighter 1931 MP089", + "url": "/v1/games/tiger-fighter-1931-mp089" + }, + { + "slug": "tiger-fighter-1931-mp090", + "name": "Tiger Fighter 1931 MP090", + "url": "/v1/games/tiger-fighter-1931-mp090" + }, + { + "slug": "tiger-fighter-1931-mp091", + "name": "Tiger Fighter 1931 MP091", + "url": "/v1/games/tiger-fighter-1931-mp091" + }, + { + "slug": "tiger-fighter-1931-mp092", + "name": "Tiger Fighter 1931 MP092", + "url": "/v1/games/tiger-fighter-1931-mp092" + }, + { + "slug": "tiger-fighter-1931-mp093", + "name": "Tiger Fighter 1931 MP093", + "url": "/v1/games/tiger-fighter-1931-mp093" + }, + { + "slug": "tiger-fighter-1931-mp094", + "name": "Tiger Fighter 1931 MP094", + "url": "/v1/games/tiger-fighter-1931-mp094" + }, + { + "slug": "tiger-fighter-1931-mp095", + "name": "Tiger Fighter 1931 MP095", + "url": "/v1/games/tiger-fighter-1931-mp095" + }, + { + "slug": "tiger-fighter-1931-mp096", + "name": "Tiger Fighter 1931 MP096", + "url": "/v1/games/tiger-fighter-1931-mp096" + }, + { + "slug": "tiger-fighter-1931-mp097", + "name": "Tiger Fighter 1931 MP097", + "url": "/v1/games/tiger-fighter-1931-mp097" + }, + { + "slug": "tiger-fighter-1931-mp098", + "name": "Tiger Fighter 1931 MP098", + "url": "/v1/games/tiger-fighter-1931-mp098" + }, + { + "slug": "tiger-fighter-1931-mp099", + "name": "Tiger Fighter 1931 MP099", + "url": "/v1/games/tiger-fighter-1931-mp099" + }, + { + "slug": "tiger-fighter-1931-mp100", + "name": "Tiger Fighter 1931 MP100", + "url": "/v1/games/tiger-fighter-1931-mp100" + }, { "slug": "tiger-fighter-1931-sunset", "name": "Tiger Fighter 1931 Sunset", "url": "/v1/games/tiger-fighter-1931-sunset" }, + { + "slug": "tiger-fighter-1931-sunset-mp001", + "name": "Tiger Fighter 1931 Sunset MP001", + "url": "/v1/games/tiger-fighter-1931-sunset-mp001" + }, + { + "slug": "tiger-fighter-1931-sunset-mp002", + "name": "Tiger Fighter 1931 Sunset MP002", + "url": "/v1/games/tiger-fighter-1931-sunset-mp002" + }, + { + "slug": "tiger-fighter-1931-sunset-mp003", + "name": "Tiger Fighter 1931 Sunset MP003", + "url": "/v1/games/tiger-fighter-1931-sunset-mp003" + }, + { + "slug": "tiger-fighter-1931-sunset-mp004", + "name": "Tiger Fighter 1931 Sunset MP004", + "url": "/v1/games/tiger-fighter-1931-sunset-mp004" + }, + { + "slug": "tiger-fighter-1931-sunset-mp005", + "name": "Tiger Fighter 1931 Sunset MP005", + "url": "/v1/games/tiger-fighter-1931-sunset-mp005" + }, + { + "slug": "tiger-fighter-1931-sunset-mp006", + "name": "Tiger Fighter 1931 Sunset MP006", + "url": "/v1/games/tiger-fighter-1931-sunset-mp006" + }, + { + "slug": "tiger-fighter-1931-sunset-mp007", + "name": "Tiger Fighter 1931 Sunset MP007", + "url": "/v1/games/tiger-fighter-1931-sunset-mp007" + }, + { + "slug": "tiger-fighter-1931-sunset-mp008", + "name": "Tiger Fighter 1931 Sunset MP008", + "url": "/v1/games/tiger-fighter-1931-sunset-mp008" + }, + { + "slug": "tiger-fighter-1931-sunset-mp009", + "name": "Tiger Fighter 1931 Sunset MP009", + "url": "/v1/games/tiger-fighter-1931-sunset-mp009" + }, + { + "slug": "tiger-fighter-1931-sunset-mp010", + "name": "Tiger Fighter 1931 Sunset MP010", + "url": "/v1/games/tiger-fighter-1931-sunset-mp010" + }, + { + "slug": "tiger-fighter-1931-sunset-mp011", + "name": "Tiger Fighter 1931 Sunset MP011", + "url": "/v1/games/tiger-fighter-1931-sunset-mp011" + }, + { + "slug": "tiger-fighter-1931-sunset-mp012", + "name": "Tiger Fighter 1931 Sunset MP012", + "url": "/v1/games/tiger-fighter-1931-sunset-mp012" + }, + { + "slug": "tiger-fighter-1931-sunset-mp013", + "name": "Tiger Fighter 1931 Sunset MP013", + "url": "/v1/games/tiger-fighter-1931-sunset-mp013" + }, + { + "slug": "tiger-fighter-1931-sunset-mp014", + "name": "Tiger Fighter 1931 Sunset MP014", + "url": "/v1/games/tiger-fighter-1931-sunset-mp014" + }, + { + "slug": "tiger-fighter-1931-sunset-mp015", + "name": "Tiger Fighter 1931 Sunset MP015", + "url": "/v1/games/tiger-fighter-1931-sunset-mp015" + }, + { + "slug": "tiger-fighter-1931-sunset-mp016", + "name": "Tiger Fighter 1931 Sunset MP016", + "url": "/v1/games/tiger-fighter-1931-sunset-mp016" + }, + { + "slug": "tiger-fighter-1931-sunset-mp017", + "name": "Tiger Fighter 1931 Sunset MP017", + "url": "/v1/games/tiger-fighter-1931-sunset-mp017" + }, + { + "slug": "tiger-fighter-1931-sunset-mp018", + "name": "Tiger Fighter 1931 Sunset MP018", + "url": "/v1/games/tiger-fighter-1931-sunset-mp018" + }, + { + "slug": "tiger-fighter-1931-sunset-mp019", + "name": "Tiger Fighter 1931 Sunset MP019", + "url": "/v1/games/tiger-fighter-1931-sunset-mp019" + }, + { + "slug": "tiger-fighter-1931-sunset-mp020", + "name": "Tiger Fighter 1931 Sunset MP020", + "url": "/v1/games/tiger-fighter-1931-sunset-mp020" + }, + { + "slug": "tiger-fighter-1931-sunset-mp021", + "name": "Tiger Fighter 1931 Sunset MP021", + "url": "/v1/games/tiger-fighter-1931-sunset-mp021" + }, + { + "slug": "tiger-fighter-1931-sunset-mp022", + "name": "Tiger Fighter 1931 Sunset MP022", + "url": "/v1/games/tiger-fighter-1931-sunset-mp022" + }, + { + "slug": "tiger-fighter-1931-sunset-mp023", + "name": "Tiger Fighter 1931 Sunset MP023", + "url": "/v1/games/tiger-fighter-1931-sunset-mp023" + }, + { + "slug": "tiger-fighter-1931-sunset-mp024", + "name": "Tiger Fighter 1931 Sunset MP024", + "url": "/v1/games/tiger-fighter-1931-sunset-mp024" + }, + { + "slug": "tiger-fighter-1931-sunset-mp025", + "name": "Tiger Fighter 1931 Sunset MP025", + "url": "/v1/games/tiger-fighter-1931-sunset-mp025" + }, + { + "slug": "tiger-fighter-1931-sunset-mp026", + "name": "Tiger Fighter 1931 Sunset MP026", + "url": "/v1/games/tiger-fighter-1931-sunset-mp026" + }, + { + "slug": "tiger-fighter-1931-sunset-mp027", + "name": "Tiger Fighter 1931 Sunset MP027", + "url": "/v1/games/tiger-fighter-1931-sunset-mp027" + }, + { + "slug": "tiger-fighter-1931-sunset-mp028", + "name": "Tiger Fighter 1931 Sunset MP028", + "url": "/v1/games/tiger-fighter-1931-sunset-mp028" + }, + { + "slug": "tiger-fighter-1931-sunset-mp029", + "name": "Tiger Fighter 1931 Sunset MP029", + "url": "/v1/games/tiger-fighter-1931-sunset-mp029" + }, + { + "slug": "tiger-fighter-1931-sunset-mp030", + "name": "Tiger Fighter 1931 Sunset MP030", + "url": "/v1/games/tiger-fighter-1931-sunset-mp030" + }, + { + "slug": "tiger-fighter-1931-sunset-mp031", + "name": "Tiger Fighter 1931 Sunset MP031", + "url": "/v1/games/tiger-fighter-1931-sunset-mp031" + }, + { + "slug": "tiger-fighter-1931-sunset-mp032", + "name": "Tiger Fighter 1931 Sunset MP032", + "url": "/v1/games/tiger-fighter-1931-sunset-mp032" + }, + { + "slug": "tiger-fighter-1931-sunset-mp033", + "name": "Tiger Fighter 1931 Sunset MP033", + "url": "/v1/games/tiger-fighter-1931-sunset-mp033" + }, + { + "slug": "tiger-fighter-1931-sunset-mp034", + "name": "Tiger Fighter 1931 Sunset MP034", + "url": "/v1/games/tiger-fighter-1931-sunset-mp034" + }, + { + "slug": "tiger-fighter-1931-sunset-mp035", + "name": "Tiger Fighter 1931 Sunset MP035", + "url": "/v1/games/tiger-fighter-1931-sunset-mp035" + }, + { + "slug": "tiger-fighter-1931-sunset-mp036", + "name": "Tiger Fighter 1931 Sunset MP036", + "url": "/v1/games/tiger-fighter-1931-sunset-mp036" + }, + { + "slug": "tiger-fighter-1931-sunset-mp037", + "name": "Tiger Fighter 1931 Sunset MP037", + "url": "/v1/games/tiger-fighter-1931-sunset-mp037" + }, + { + "slug": "tiger-fighter-1931-sunset-mp038", + "name": "Tiger Fighter 1931 Sunset MP038", + "url": "/v1/games/tiger-fighter-1931-sunset-mp038" + }, + { + "slug": "tiger-fighter-1931-sunset-mp039", + "name": "Tiger Fighter 1931 Sunset MP039", + "url": "/v1/games/tiger-fighter-1931-sunset-mp039" + }, + { + "slug": "tiger-fighter-1931-sunset-mp040", + "name": "Tiger Fighter 1931 Sunset MP040", + "url": "/v1/games/tiger-fighter-1931-sunset-mp040" + }, + { + "slug": "tiger-fighter-1931-sunset-mp041", + "name": "Tiger Fighter 1931 Sunset MP041", + "url": "/v1/games/tiger-fighter-1931-sunset-mp041" + }, + { + "slug": "tiger-fighter-1931-sunset-mp042", + "name": "Tiger Fighter 1931 Sunset MP042", + "url": "/v1/games/tiger-fighter-1931-sunset-mp042" + }, + { + "slug": "tiger-fighter-1931-sunset-mp043", + "name": "Tiger Fighter 1931 Sunset MP043", + "url": "/v1/games/tiger-fighter-1931-sunset-mp043" + }, + { + "slug": "tiger-fighter-1931-sunset-mp044", + "name": "Tiger Fighter 1931 Sunset MP044", + "url": "/v1/games/tiger-fighter-1931-sunset-mp044" + }, + { + "slug": "tiger-fighter-1931-sunset-mp045", + "name": "Tiger Fighter 1931 Sunset MP045", + "url": "/v1/games/tiger-fighter-1931-sunset-mp045" + }, + { + "slug": "tiger-fighter-1931-sunset-mp046", + "name": "Tiger Fighter 1931 Sunset MP046", + "url": "/v1/games/tiger-fighter-1931-sunset-mp046" + }, + { + "slug": "tiger-fighter-1931-sunset-mp047", + "name": "Tiger Fighter 1931 Sunset MP047", + "url": "/v1/games/tiger-fighter-1931-sunset-mp047" + }, + { + "slug": "tiger-fighter-1931-sunset-mp048", + "name": "Tiger Fighter 1931 Sunset MP048", + "url": "/v1/games/tiger-fighter-1931-sunset-mp048" + }, + { + "slug": "tiger-fighter-1931-sunset-mp049", + "name": "Tiger Fighter 1931 Sunset MP049", + "url": "/v1/games/tiger-fighter-1931-sunset-mp049" + }, + { + "slug": "tiger-fighter-1931-sunset-mp050", + "name": "Tiger Fighter 1931 Sunset MP050", + "url": "/v1/games/tiger-fighter-1931-sunset-mp050" + }, + { + "slug": "tiger-fighter-1931-sunset-mp051", + "name": "Tiger Fighter 1931 Sunset MP051", + "url": "/v1/games/tiger-fighter-1931-sunset-mp051" + }, + { + "slug": "tiger-fighter-1931-sunset-mp052", + "name": "Tiger Fighter 1931 Sunset MP052", + "url": "/v1/games/tiger-fighter-1931-sunset-mp052" + }, + { + "slug": "tiger-fighter-1931-sunset-mp053", + "name": "Tiger Fighter 1931 Sunset MP053", + "url": "/v1/games/tiger-fighter-1931-sunset-mp053" + }, + { + "slug": "tiger-fighter-1931-sunset-mp054", + "name": "Tiger Fighter 1931 Sunset MP054", + "url": "/v1/games/tiger-fighter-1931-sunset-mp054" + }, + { + "slug": "tiger-fighter-1931-sunset-mp055", + "name": "Tiger Fighter 1931 Sunset MP055", + "url": "/v1/games/tiger-fighter-1931-sunset-mp055" + }, + { + "slug": "tiger-fighter-1931-sunset-mp056", + "name": "Tiger Fighter 1931 Sunset MP056", + "url": "/v1/games/tiger-fighter-1931-sunset-mp056" + }, + { + "slug": "tiger-fighter-1931-sunset-mp057", + "name": "Tiger Fighter 1931 Sunset MP057", + "url": "/v1/games/tiger-fighter-1931-sunset-mp057" + }, + { + "slug": "tiger-fighter-1931-sunset-mp058", + "name": "Tiger Fighter 1931 Sunset MP058", + "url": "/v1/games/tiger-fighter-1931-sunset-mp058" + }, + { + "slug": "tiger-fighter-1931-sunset-mp059", + "name": "Tiger Fighter 1931 Sunset MP059", + "url": "/v1/games/tiger-fighter-1931-sunset-mp059" + }, + { + "slug": "tiger-fighter-1931-sunset-mp060", + "name": "Tiger Fighter 1931 Sunset MP060", + "url": "/v1/games/tiger-fighter-1931-sunset-mp060" + }, + { + "slug": "tiger-fighter-1931-sunset-mp061", + "name": "Tiger Fighter 1931 Sunset MP061", + "url": "/v1/games/tiger-fighter-1931-sunset-mp061" + }, + { + "slug": "tiger-fighter-1931-sunset-mp062", + "name": "Tiger Fighter 1931 Sunset MP062", + "url": "/v1/games/tiger-fighter-1931-sunset-mp062" + }, + { + "slug": "tiger-fighter-1931-sunset-mp063", + "name": "Tiger Fighter 1931 Sunset MP063", + "url": "/v1/games/tiger-fighter-1931-sunset-mp063" + }, + { + "slug": "tiger-fighter-1931-sunset-mp064", + "name": "Tiger Fighter 1931 Sunset MP064", + "url": "/v1/games/tiger-fighter-1931-sunset-mp064" + }, + { + "slug": "tiger-fighter-1931-sunset-mp065", + "name": "Tiger Fighter 1931 Sunset MP065", + "url": "/v1/games/tiger-fighter-1931-sunset-mp065" + }, + { + "slug": "tiger-fighter-1931-sunset-mp066", + "name": "Tiger Fighter 1931 Sunset MP066", + "url": "/v1/games/tiger-fighter-1931-sunset-mp066" + }, + { + "slug": "tiger-fighter-1931-sunset-mp067", + "name": "Tiger Fighter 1931 Sunset MP067", + "url": "/v1/games/tiger-fighter-1931-sunset-mp067" + }, + { + "slug": "tiger-fighter-1931-sunset-mp068", + "name": "Tiger Fighter 1931 Sunset MP068", + "url": "/v1/games/tiger-fighter-1931-sunset-mp068" + }, + { + "slug": "tiger-fighter-1931-sunset-mp069", + "name": "Tiger Fighter 1931 Sunset MP069", + "url": "/v1/games/tiger-fighter-1931-sunset-mp069" + }, + { + "slug": "tiger-fighter-1931-sunset-mp070", + "name": "Tiger Fighter 1931 Sunset MP070", + "url": "/v1/games/tiger-fighter-1931-sunset-mp070" + }, + { + "slug": "tiger-fighter-1931-sunset-mp071", + "name": "Tiger Fighter 1931 Sunset MP071", + "url": "/v1/games/tiger-fighter-1931-sunset-mp071" + }, + { + "slug": "tiger-fighter-1931-sunset-mp072", + "name": "Tiger Fighter 1931 Sunset MP072", + "url": "/v1/games/tiger-fighter-1931-sunset-mp072" + }, + { + "slug": "tiger-fighter-1931-sunset-mp073", + "name": "Tiger Fighter 1931 Sunset MP073", + "url": "/v1/games/tiger-fighter-1931-sunset-mp073" + }, + { + "slug": "tiger-fighter-1931-sunset-mp074", + "name": "Tiger Fighter 1931 Sunset MP074", + "url": "/v1/games/tiger-fighter-1931-sunset-mp074" + }, + { + "slug": "tiger-fighter-1931-sunset-mp075", + "name": "Tiger Fighter 1931 Sunset MP075", + "url": "/v1/games/tiger-fighter-1931-sunset-mp075" + }, + { + "slug": "tiger-fighter-1931-sunset-mp076", + "name": "Tiger Fighter 1931 Sunset MP076", + "url": "/v1/games/tiger-fighter-1931-sunset-mp076" + }, + { + "slug": "tiger-fighter-1931-sunset-mp077", + "name": "Tiger Fighter 1931 Sunset MP077", + "url": "/v1/games/tiger-fighter-1931-sunset-mp077" + }, + { + "slug": "tiger-fighter-1931-sunset-mp078", + "name": "Tiger Fighter 1931 Sunset MP078", + "url": "/v1/games/tiger-fighter-1931-sunset-mp078" + }, + { + "slug": "tiger-fighter-1931-sunset-mp079", + "name": "Tiger Fighter 1931 Sunset MP079", + "url": "/v1/games/tiger-fighter-1931-sunset-mp079" + }, + { + "slug": "tiger-fighter-1931-sunset-mp080", + "name": "Tiger Fighter 1931 Sunset MP080", + "url": "/v1/games/tiger-fighter-1931-sunset-mp080" + }, + { + "slug": "tiger-fighter-1931-sunset-mp081", + "name": "Tiger Fighter 1931 Sunset MP081", + "url": "/v1/games/tiger-fighter-1931-sunset-mp081" + }, + { + "slug": "tiger-fighter-1931-sunset-mp082", + "name": "Tiger Fighter 1931 Sunset MP082", + "url": "/v1/games/tiger-fighter-1931-sunset-mp082" + }, + { + "slug": "tiger-fighter-1931-sunset-mp083", + "name": "Tiger Fighter 1931 Sunset MP083", + "url": "/v1/games/tiger-fighter-1931-sunset-mp083" + }, + { + "slug": "tiger-fighter-1931-sunset-mp084", + "name": "Tiger Fighter 1931 Sunset MP084", + "url": "/v1/games/tiger-fighter-1931-sunset-mp084" + }, + { + "slug": "tiger-fighter-1931-sunset-mp085", + "name": "Tiger Fighter 1931 Sunset MP085", + "url": "/v1/games/tiger-fighter-1931-sunset-mp085" + }, + { + "slug": "tiger-fighter-1931-sunset-mp086", + "name": "Tiger Fighter 1931 Sunset MP086", + "url": "/v1/games/tiger-fighter-1931-sunset-mp086" + }, + { + "slug": "tiger-fighter-1931-sunset-mp087", + "name": "Tiger Fighter 1931 Sunset MP087", + "url": "/v1/games/tiger-fighter-1931-sunset-mp087" + }, + { + "slug": "tiger-fighter-1931-sunset-mp088", + "name": "Tiger Fighter 1931 Sunset MP088", + "url": "/v1/games/tiger-fighter-1931-sunset-mp088" + }, + { + "slug": "tiger-fighter-1931-sunset-mp089", + "name": "Tiger Fighter 1931 Sunset MP089", + "url": "/v1/games/tiger-fighter-1931-sunset-mp089" + }, + { + "slug": "tiger-fighter-1931-sunset-mp090", + "name": "Tiger Fighter 1931 Sunset MP090", + "url": "/v1/games/tiger-fighter-1931-sunset-mp090" + }, + { + "slug": "tiger-fighter-1931-sunset-mp091", + "name": "Tiger Fighter 1931 Sunset MP091", + "url": "/v1/games/tiger-fighter-1931-sunset-mp091" + }, + { + "slug": "tiger-fighter-1931-sunset-mp092", + "name": "Tiger Fighter 1931 Sunset MP092", + "url": "/v1/games/tiger-fighter-1931-sunset-mp092" + }, + { + "slug": "tiger-fighter-1931-sunset-mp093", + "name": "Tiger Fighter 1931 Sunset MP093", + "url": "/v1/games/tiger-fighter-1931-sunset-mp093" + }, + { + "slug": "tiger-fighter-1931-sunset-mp094", + "name": "Tiger Fighter 1931 Sunset MP094", + "url": "/v1/games/tiger-fighter-1931-sunset-mp094" + }, + { + "slug": "tiger-fighter-1931-sunset-mp095", + "name": "Tiger Fighter 1931 Sunset MP095", + "url": "/v1/games/tiger-fighter-1931-sunset-mp095" + }, + { + "slug": "tiger-fighter-1931-sunset-mp096", + "name": "Tiger Fighter 1931 Sunset MP096", + "url": "/v1/games/tiger-fighter-1931-sunset-mp096" + }, + { + "slug": "tiger-fighter-1931-sunset-mp097", + "name": "Tiger Fighter 1931 Sunset MP097", + "url": "/v1/games/tiger-fighter-1931-sunset-mp097" + }, + { + "slug": "tiger-fighter-1931-sunset-mp098", + "name": "Tiger Fighter 1931 Sunset MP098", + "url": "/v1/games/tiger-fighter-1931-sunset-mp098" + }, + { + "slug": "tiger-fighter-1931-sunset-mp099", + "name": "Tiger Fighter 1931 Sunset MP099", + "url": "/v1/games/tiger-fighter-1931-sunset-mp099" + }, + { + "slug": "tiger-fighter-1931-sunset-mp100", + "name": "Tiger Fighter 1931 Sunset MP100", + "url": "/v1/games/tiger-fighter-1931-sunset-mp100" + }, { "slug": "tiger-fighter-1931-tora", "name": "Tiger Fighter 1931 Tora!", "url": "/v1/games/tiger-fighter-1931-tora" }, + { + "slug": "tiger-fighter-1931-tora-mp001", + "name": "Tiger Fighter 1931 Tora! MP001", + "url": "/v1/games/tiger-fighter-1931-tora-mp001" + }, + { + "slug": "tiger-fighter-1931-tora-mp002", + "name": "Tiger Fighter 1931 Tora! MP002", + "url": "/v1/games/tiger-fighter-1931-tora-mp002" + }, + { + "slug": "tiger-fighter-1931-tora-mp003", + "name": "Tiger Fighter 1931 Tora! MP003", + "url": "/v1/games/tiger-fighter-1931-tora-mp003" + }, + { + "slug": "tiger-fighter-1931-tora-mp004", + "name": "Tiger Fighter 1931 Tora! MP004", + "url": "/v1/games/tiger-fighter-1931-tora-mp004" + }, + { + "slug": "tiger-fighter-1931-tora-mp005", + "name": "Tiger Fighter 1931 Tora! MP005", + "url": "/v1/games/tiger-fighter-1931-tora-mp005" + }, + { + "slug": "tiger-fighter-1931-tora-mp006", + "name": "Tiger Fighter 1931 Tora! MP006", + "url": "/v1/games/tiger-fighter-1931-tora-mp006" + }, + { + "slug": "tiger-fighter-1931-tora-mp007", + "name": "Tiger Fighter 1931 Tora! MP007", + "url": "/v1/games/tiger-fighter-1931-tora-mp007" + }, + { + "slug": "tiger-fighter-1931-tora-mp008", + "name": "Tiger Fighter 1931 Tora! MP008", + "url": "/v1/games/tiger-fighter-1931-tora-mp008" + }, + { + "slug": "tiger-fighter-1931-tora-mp009", + "name": "Tiger Fighter 1931 Tora! MP009", + "url": "/v1/games/tiger-fighter-1931-tora-mp009" + }, + { + "slug": "tiger-fighter-1931-tora-mp010", + "name": "Tiger Fighter 1931 Tora! MP010", + "url": "/v1/games/tiger-fighter-1931-tora-mp010" + }, + { + "slug": "tiger-fighter-1931-tora-mp011", + "name": "Tiger Fighter 1931 Tora! MP011", + "url": "/v1/games/tiger-fighter-1931-tora-mp011" + }, + { + "slug": "tiger-fighter-1931-tora-mp012", + "name": "Tiger Fighter 1931 Tora! MP012", + "url": "/v1/games/tiger-fighter-1931-tora-mp012" + }, + { + "slug": "tiger-fighter-1931-tora-mp013", + "name": "Tiger Fighter 1931 Tora! MP013", + "url": "/v1/games/tiger-fighter-1931-tora-mp013" + }, + { + "slug": "tiger-fighter-1931-tora-mp014", + "name": "Tiger Fighter 1931 Tora! MP014", + "url": "/v1/games/tiger-fighter-1931-tora-mp014" + }, + { + "slug": "tiger-fighter-1931-tora-mp015", + "name": "Tiger Fighter 1931 Tora! MP015", + "url": "/v1/games/tiger-fighter-1931-tora-mp015" + }, + { + "slug": "tiger-fighter-1931-tora-mp016", + "name": "Tiger Fighter 1931 Tora! MP016", + "url": "/v1/games/tiger-fighter-1931-tora-mp016" + }, + { + "slug": "tiger-fighter-1931-tora-mp017", + "name": "Tiger Fighter 1931 Tora! MP017", + "url": "/v1/games/tiger-fighter-1931-tora-mp017" + }, + { + "slug": "tiger-fighter-1931-tora-mp018", + "name": "Tiger Fighter 1931 Tora! MP018", + "url": "/v1/games/tiger-fighter-1931-tora-mp018" + }, + { + "slug": "tiger-fighter-1931-tora-mp019", + "name": "Tiger Fighter 1931 Tora! MP019", + "url": "/v1/games/tiger-fighter-1931-tora-mp019" + }, + { + "slug": "tiger-fighter-1931-tora-mp020", + "name": "Tiger Fighter 1931 Tora! MP020", + "url": "/v1/games/tiger-fighter-1931-tora-mp020" + }, + { + "slug": "tiger-fighter-1931-tora-mp021", + "name": "Tiger Fighter 1931 Tora! MP021", + "url": "/v1/games/tiger-fighter-1931-tora-mp021" + }, + { + "slug": "tiger-fighter-1931-tora-mp022", + "name": "Tiger Fighter 1931 Tora! MP022", + "url": "/v1/games/tiger-fighter-1931-tora-mp022" + }, + { + "slug": "tiger-fighter-1931-tora-mp023", + "name": "Tiger Fighter 1931 Tora! MP023", + "url": "/v1/games/tiger-fighter-1931-tora-mp023" + }, + { + "slug": "tiger-fighter-1931-tora-mp024", + "name": "Tiger Fighter 1931 Tora! MP024", + "url": "/v1/games/tiger-fighter-1931-tora-mp024" + }, + { + "slug": "tiger-fighter-1931-tora-mp025", + "name": "Tiger Fighter 1931 Tora! MP025", + "url": "/v1/games/tiger-fighter-1931-tora-mp025" + }, + { + "slug": "tiger-fighter-1931-tora-mp026", + "name": "Tiger Fighter 1931 Tora! MP026", + "url": "/v1/games/tiger-fighter-1931-tora-mp026" + }, + { + "slug": "tiger-fighter-1931-tora-mp027", + "name": "Tiger Fighter 1931 Tora! MP027", + "url": "/v1/games/tiger-fighter-1931-tora-mp027" + }, + { + "slug": "tiger-fighter-1931-tora-mp028", + "name": "Tiger Fighter 1931 Tora! MP028", + "url": "/v1/games/tiger-fighter-1931-tora-mp028" + }, + { + "slug": "tiger-fighter-1931-tora-mp029", + "name": "Tiger Fighter 1931 Tora! MP029", + "url": "/v1/games/tiger-fighter-1931-tora-mp029" + }, + { + "slug": "tiger-fighter-1931-tora-mp030", + "name": "Tiger Fighter 1931 Tora! MP030", + "url": "/v1/games/tiger-fighter-1931-tora-mp030" + }, + { + "slug": "tiger-fighter-1931-tora-mp031", + "name": "Tiger Fighter 1931 Tora! MP031", + "url": "/v1/games/tiger-fighter-1931-tora-mp031" + }, + { + "slug": "tiger-fighter-1931-tora-mp032", + "name": "Tiger Fighter 1931 Tora! MP032", + "url": "/v1/games/tiger-fighter-1931-tora-mp032" + }, + { + "slug": "tiger-fighter-1931-tora-mp033", + "name": "Tiger Fighter 1931 Tora! MP033", + "url": "/v1/games/tiger-fighter-1931-tora-mp033" + }, + { + "slug": "tiger-fighter-1931-tora-mp034", + "name": "Tiger Fighter 1931 Tora! MP034", + "url": "/v1/games/tiger-fighter-1931-tora-mp034" + }, + { + "slug": "tiger-fighter-1931-tora-mp035", + "name": "Tiger Fighter 1931 Tora! MP035", + "url": "/v1/games/tiger-fighter-1931-tora-mp035" + }, + { + "slug": "tiger-fighter-1931-tora-mp036", + "name": "Tiger Fighter 1931 Tora! MP036", + "url": "/v1/games/tiger-fighter-1931-tora-mp036" + }, + { + "slug": "tiger-fighter-1931-tora-mp037", + "name": "Tiger Fighter 1931 Tora! MP037", + "url": "/v1/games/tiger-fighter-1931-tora-mp037" + }, + { + "slug": "tiger-fighter-1931-tora-mp038", + "name": "Tiger Fighter 1931 Tora! MP038", + "url": "/v1/games/tiger-fighter-1931-tora-mp038" + }, + { + "slug": "tiger-fighter-1931-tora-mp039", + "name": "Tiger Fighter 1931 Tora! MP039", + "url": "/v1/games/tiger-fighter-1931-tora-mp039" + }, + { + "slug": "tiger-fighter-1931-tora-mp040", + "name": "Tiger Fighter 1931 Tora! MP040", + "url": "/v1/games/tiger-fighter-1931-tora-mp040" + }, + { + "slug": "tiger-fighter-1931-tora-mp041", + "name": "Tiger Fighter 1931 Tora! MP041", + "url": "/v1/games/tiger-fighter-1931-tora-mp041" + }, + { + "slug": "tiger-fighter-1931-tora-mp042", + "name": "Tiger Fighter 1931 Tora! MP042", + "url": "/v1/games/tiger-fighter-1931-tora-mp042" + }, + { + "slug": "tiger-fighter-1931-tora-mp043", + "name": "Tiger Fighter 1931 Tora! MP043", + "url": "/v1/games/tiger-fighter-1931-tora-mp043" + }, + { + "slug": "tiger-fighter-1931-tora-mp044", + "name": "Tiger Fighter 1931 Tora! MP044", + "url": "/v1/games/tiger-fighter-1931-tora-mp044" + }, + { + "slug": "tiger-fighter-1931-tora-mp045", + "name": "Tiger Fighter 1931 Tora! MP045", + "url": "/v1/games/tiger-fighter-1931-tora-mp045" + }, + { + "slug": "tiger-fighter-1931-tora-mp046", + "name": "Tiger Fighter 1931 Tora! MP046", + "url": "/v1/games/tiger-fighter-1931-tora-mp046" + }, + { + "slug": "tiger-fighter-1931-tora-mp047", + "name": "Tiger Fighter 1931 Tora! MP047", + "url": "/v1/games/tiger-fighter-1931-tora-mp047" + }, + { + "slug": "tiger-fighter-1931-tora-mp048", + "name": "Tiger Fighter 1931 Tora! MP048", + "url": "/v1/games/tiger-fighter-1931-tora-mp048" + }, + { + "slug": "tiger-fighter-1931-tora-mp049", + "name": "Tiger Fighter 1931 Tora! MP049", + "url": "/v1/games/tiger-fighter-1931-tora-mp049" + }, + { + "slug": "tiger-fighter-1931-tora-mp050", + "name": "Tiger Fighter 1931 Tora! MP050", + "url": "/v1/games/tiger-fighter-1931-tora-mp050" + }, + { + "slug": "tiger-fighter-1931-tora-mp051", + "name": "Tiger Fighter 1931 Tora! MP051", + "url": "/v1/games/tiger-fighter-1931-tora-mp051" + }, + { + "slug": "tiger-fighter-1931-tora-mp052", + "name": "Tiger Fighter 1931 Tora! MP052", + "url": "/v1/games/tiger-fighter-1931-tora-mp052" + }, + { + "slug": "tiger-fighter-1931-tora-mp053", + "name": "Tiger Fighter 1931 Tora! MP053", + "url": "/v1/games/tiger-fighter-1931-tora-mp053" + }, + { + "slug": "tiger-fighter-1931-tora-mp054", + "name": "Tiger Fighter 1931 Tora! MP054", + "url": "/v1/games/tiger-fighter-1931-tora-mp054" + }, + { + "slug": "tiger-fighter-1931-tora-mp055", + "name": "Tiger Fighter 1931 Tora! MP055", + "url": "/v1/games/tiger-fighter-1931-tora-mp055" + }, + { + "slug": "tiger-fighter-1931-tora-mp056", + "name": "Tiger Fighter 1931 Tora! MP056", + "url": "/v1/games/tiger-fighter-1931-tora-mp056" + }, + { + "slug": "tiger-fighter-1931-tora-mp057", + "name": "Tiger Fighter 1931 Tora! MP057", + "url": "/v1/games/tiger-fighter-1931-tora-mp057" + }, + { + "slug": "tiger-fighter-1931-tora-mp058", + "name": "Tiger Fighter 1931 Tora! MP058", + "url": "/v1/games/tiger-fighter-1931-tora-mp058" + }, + { + "slug": "tiger-fighter-1931-tora-mp059", + "name": "Tiger Fighter 1931 Tora! MP059", + "url": "/v1/games/tiger-fighter-1931-tora-mp059" + }, + { + "slug": "tiger-fighter-1931-tora-mp060", + "name": "Tiger Fighter 1931 Tora! MP060", + "url": "/v1/games/tiger-fighter-1931-tora-mp060" + }, + { + "slug": "tiger-fighter-1931-tora-mp061", + "name": "Tiger Fighter 1931 Tora! MP061", + "url": "/v1/games/tiger-fighter-1931-tora-mp061" + }, + { + "slug": "tiger-fighter-1931-tora-mp062", + "name": "Tiger Fighter 1931 Tora! MP062", + "url": "/v1/games/tiger-fighter-1931-tora-mp062" + }, + { + "slug": "tiger-fighter-1931-tora-mp063", + "name": "Tiger Fighter 1931 Tora! MP063", + "url": "/v1/games/tiger-fighter-1931-tora-mp063" + }, + { + "slug": "tiger-fighter-1931-tora-mp064", + "name": "Tiger Fighter 1931 Tora! MP064", + "url": "/v1/games/tiger-fighter-1931-tora-mp064" + }, + { + "slug": "tiger-fighter-1931-tora-mp065", + "name": "Tiger Fighter 1931 Tora! MP065", + "url": "/v1/games/tiger-fighter-1931-tora-mp065" + }, + { + "slug": "tiger-fighter-1931-tora-mp066", + "name": "Tiger Fighter 1931 Tora! MP066", + "url": "/v1/games/tiger-fighter-1931-tora-mp066" + }, + { + "slug": "tiger-fighter-1931-tora-mp067", + "name": "Tiger Fighter 1931 Tora! MP067", + "url": "/v1/games/tiger-fighter-1931-tora-mp067" + }, + { + "slug": "tiger-fighter-1931-tora-mp068", + "name": "Tiger Fighter 1931 Tora! MP068", + "url": "/v1/games/tiger-fighter-1931-tora-mp068" + }, + { + "slug": "tiger-fighter-1931-tora-mp069", + "name": "Tiger Fighter 1931 Tora! MP069", + "url": "/v1/games/tiger-fighter-1931-tora-mp069" + }, + { + "slug": "tiger-fighter-1931-tora-mp070", + "name": "Tiger Fighter 1931 Tora! MP070", + "url": "/v1/games/tiger-fighter-1931-tora-mp070" + }, + { + "slug": "tiger-fighter-1931-tora-mp071", + "name": "Tiger Fighter 1931 Tora! MP071", + "url": "/v1/games/tiger-fighter-1931-tora-mp071" + }, + { + "slug": "tiger-fighter-1931-tora-mp072", + "name": "Tiger Fighter 1931 Tora! MP072", + "url": "/v1/games/tiger-fighter-1931-tora-mp072" + }, + { + "slug": "tiger-fighter-1931-tora-mp073", + "name": "Tiger Fighter 1931 Tora! MP073", + "url": "/v1/games/tiger-fighter-1931-tora-mp073" + }, + { + "slug": "tiger-fighter-1931-tora-mp074", + "name": "Tiger Fighter 1931 Tora! MP074", + "url": "/v1/games/tiger-fighter-1931-tora-mp074" + }, + { + "slug": "tiger-fighter-1931-tora-mp075", + "name": "Tiger Fighter 1931 Tora! MP075", + "url": "/v1/games/tiger-fighter-1931-tora-mp075" + }, + { + "slug": "tiger-fighter-1931-tora-mp076", + "name": "Tiger Fighter 1931 Tora! MP076", + "url": "/v1/games/tiger-fighter-1931-tora-mp076" + }, + { + "slug": "tiger-fighter-1931-tora-mp077", + "name": "Tiger Fighter 1931 Tora! MP077", + "url": "/v1/games/tiger-fighter-1931-tora-mp077" + }, + { + "slug": "tiger-fighter-1931-tora-mp078", + "name": "Tiger Fighter 1931 Tora! MP078", + "url": "/v1/games/tiger-fighter-1931-tora-mp078" + }, + { + "slug": "tiger-fighter-1931-tora-mp079", + "name": "Tiger Fighter 1931 Tora! MP079", + "url": "/v1/games/tiger-fighter-1931-tora-mp079" + }, + { + "slug": "tiger-fighter-1931-tora-mp080", + "name": "Tiger Fighter 1931 Tora! MP080", + "url": "/v1/games/tiger-fighter-1931-tora-mp080" + }, + { + "slug": "tiger-fighter-1931-tora-mp081", + "name": "Tiger Fighter 1931 Tora! MP081", + "url": "/v1/games/tiger-fighter-1931-tora-mp081" + }, + { + "slug": "tiger-fighter-1931-tora-mp082", + "name": "Tiger Fighter 1931 Tora! MP082", + "url": "/v1/games/tiger-fighter-1931-tora-mp082" + }, + { + "slug": "tiger-fighter-1931-tora-mp083", + "name": "Tiger Fighter 1931 Tora! MP083", + "url": "/v1/games/tiger-fighter-1931-tora-mp083" + }, + { + "slug": "tiger-fighter-1931-tora-mp084", + "name": "Tiger Fighter 1931 Tora! MP084", + "url": "/v1/games/tiger-fighter-1931-tora-mp084" + }, + { + "slug": "tiger-fighter-1931-tora-mp085", + "name": "Tiger Fighter 1931 Tora! MP085", + "url": "/v1/games/tiger-fighter-1931-tora-mp085" + }, + { + "slug": "tiger-fighter-1931-tora-mp086", + "name": "Tiger Fighter 1931 Tora! MP086", + "url": "/v1/games/tiger-fighter-1931-tora-mp086" + }, + { + "slug": "tiger-fighter-1931-tora-mp087", + "name": "Tiger Fighter 1931 Tora! MP087", + "url": "/v1/games/tiger-fighter-1931-tora-mp087" + }, + { + "slug": "tiger-fighter-1931-tora-mp088", + "name": "Tiger Fighter 1931 Tora! MP088", + "url": "/v1/games/tiger-fighter-1931-tora-mp088" + }, + { + "slug": "tiger-fighter-1931-tora-mp089", + "name": "Tiger Fighter 1931 Tora! MP089", + "url": "/v1/games/tiger-fighter-1931-tora-mp089" + }, + { + "slug": "tiger-fighter-1931-tora-mp090", + "name": "Tiger Fighter 1931 Tora! MP090", + "url": "/v1/games/tiger-fighter-1931-tora-mp090" + }, + { + "slug": "tiger-fighter-1931-tora-mp091", + "name": "Tiger Fighter 1931 Tora! MP091", + "url": "/v1/games/tiger-fighter-1931-tora-mp091" + }, + { + "slug": "tiger-fighter-1931-tora-mp092", + "name": "Tiger Fighter 1931 Tora! MP092", + "url": "/v1/games/tiger-fighter-1931-tora-mp092" + }, + { + "slug": "tiger-fighter-1931-tora-mp093", + "name": "Tiger Fighter 1931 Tora! MP093", + "url": "/v1/games/tiger-fighter-1931-tora-mp093" + }, + { + "slug": "tiger-fighter-1931-tora-mp094", + "name": "Tiger Fighter 1931 Tora! MP094", + "url": "/v1/games/tiger-fighter-1931-tora-mp094" + }, + { + "slug": "tiger-fighter-1931-tora-mp095", + "name": "Tiger Fighter 1931 Tora! MP095", + "url": "/v1/games/tiger-fighter-1931-tora-mp095" + }, + { + "slug": "tiger-fighter-1931-tora-mp096", + "name": "Tiger Fighter 1931 Tora! MP096", + "url": "/v1/games/tiger-fighter-1931-tora-mp096" + }, + { + "slug": "tiger-fighter-1931-tora-mp097", + "name": "Tiger Fighter 1931 Tora! MP097", + "url": "/v1/games/tiger-fighter-1931-tora-mp097" + }, + { + "slug": "tiger-fighter-1931-tora-mp098", + "name": "Tiger Fighter 1931 Tora! MP098", + "url": "/v1/games/tiger-fighter-1931-tora-mp098" + }, + { + "slug": "tiger-fighter-1931-tora-mp099", + "name": "Tiger Fighter 1931 Tora! MP099", + "url": "/v1/games/tiger-fighter-1931-tora-mp099" + }, + { + "slug": "tiger-fighter-1931-tora-mp100", + "name": "Tiger Fighter 1931 Tora! MP100", + "url": "/v1/games/tiger-fighter-1931-tora-mp100" + }, { "slug": "tiger-fighter-1931-tora-tora", "name": "Tiger Fighter 1931 Tora!Tora!", "url": "/v1/games/tiger-fighter-1931-tora-tora" }, + { + "slug": "tiger-fighter-1931-tora-tora-mp001", + "name": "Tiger Fighter 1931 Tora!Tora! MP001", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp001" + }, + { + "slug": "tiger-fighter-1931-tora-tora-mp002", + "name": "Tiger Fighter 1931 Tora!Tora! MP002", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp002" + }, + { + "slug": "tiger-fighter-1931-tora-tora-mp003", + "name": "Tiger Fighter 1931 Tora!Tora! MP003", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp003" + }, + { + "slug": "tiger-fighter-1931-tora-tora-mp004", + "name": "Tiger Fighter 1931 Tora!Tora! MP004", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp004" + }, + { + "slug": "tiger-fighter-1931-tora-tora-mp005", + "name": "Tiger Fighter 1931 Tora!Tora! MP005", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp005" + }, + { + "slug": "tiger-fighter-1931-tora-tora-mp006", + "name": "Tiger Fighter 1931 Tora!Tora! MP006", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp006" + }, + { + "slug": "tiger-fighter-1931-tora-tora-mp007", + "name": "Tiger Fighter 1931 Tora!Tora! MP007", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp007" + }, + { + "slug": "tiger-fighter-1931-tora-tora-mp008", + "name": "Tiger Fighter 1931 Tora!Tora! MP008", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp008" + }, + { + "slug": "tiger-fighter-1931-tora-tora-mp009", + "name": "Tiger Fighter 1931 Tora!Tora! MP009", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp009" + }, + { + "slug": "tiger-fighter-1931-tora-tora-mp010", + "name": "Tiger Fighter 1931 Tora!Tora! MP010", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp010" + }, + { + "slug": "tiger-fighter-1931-tora-tora-mp011", + "name": "Tiger Fighter 1931 Tora!Tora! MP011", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp011" + }, + { + "slug": "tiger-fighter-1931-tora-tora-mp012", + "name": "Tiger Fighter 1931 Tora!Tora! MP012", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp012" + }, + { + "slug": "tiger-fighter-1931-tora-tora-mp013", + "name": "Tiger Fighter 1931 Tora!Tora! MP013", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp013" + }, + { + "slug": "tiger-fighter-1931-tora-tora-mp014", + "name": "Tiger Fighter 1931 Tora!Tora! MP014", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp014" + }, + { + "slug": "tiger-fighter-1931-tora-tora-mp015", + "name": "Tiger Fighter 1931 Tora!Tora! MP015", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp015" + }, + { + "slug": "tiger-fighter-1931-tora-tora-mp016", + "name": "Tiger Fighter 1931 Tora!Tora! MP016", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp016" + }, + { + "slug": "tiger-fighter-1931-tora-tora-mp017", + "name": "Tiger Fighter 1931 Tora!Tora! MP017", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp017" + }, + { + "slug": "tiger-fighter-1931-tora-tora-mp018", + "name": "Tiger Fighter 1931 Tora!Tora! MP018", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp018" + }, + { + "slug": "tiger-fighter-1931-tora-tora-mp019", + "name": "Tiger Fighter 1931 Tora!Tora! MP019", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp019" + }, + { + "slug": "tiger-fighter-1931-tora-tora-mp020", + "name": "Tiger Fighter 1931 Tora!Tora! MP020", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp020" + }, + { + "slug": "tiger-fighter-1931-tora-tora-mp021", + "name": "Tiger Fighter 1931 Tora!Tora! MP021", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp021" + }, + { + "slug": "tiger-fighter-1931-tora-tora-mp022", + "name": "Tiger Fighter 1931 Tora!Tora! MP022", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp022" + }, + { + "slug": "tiger-fighter-1931-tora-tora-mp023", + "name": "Tiger Fighter 1931 Tora!Tora! MP023", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp023" + }, + { + "slug": "tiger-fighter-1931-tora-tora-mp024", + "name": "Tiger Fighter 1931 Tora!Tora! MP024", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp024" + }, + { + "slug": "tiger-fighter-1931-tora-tora-mp025", + "name": "Tiger Fighter 1931 Tora!Tora! MP025", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp025" + }, + { + "slug": "tiger-fighter-1931-tora-tora-mp026", + "name": "Tiger Fighter 1931 Tora!Tora! MP026", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp026" + }, + { + "slug": "tiger-fighter-1931-tora-tora-mp027", + "name": "Tiger Fighter 1931 Tora!Tora! MP027", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp027" + }, + { + "slug": "tiger-fighter-1931-tora-tora-mp028", + "name": "Tiger Fighter 1931 Tora!Tora! MP028", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp028" + }, + { + "slug": "tiger-fighter-1931-tora-tora-mp029", + "name": "Tiger Fighter 1931 Tora!Tora! MP029", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp029" + }, + { + "slug": "tiger-fighter-1931-tora-tora-mp030", + "name": "Tiger Fighter 1931 Tora!Tora! MP030", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp030" + }, + { + "slug": "tiger-fighter-1931-tora-tora-mp031", + "name": "Tiger Fighter 1931 Tora!Tora! MP031", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp031" + }, + { + "slug": "tiger-fighter-1931-tora-tora-mp032", + "name": "Tiger Fighter 1931 Tora!Tora! MP032", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp032" + }, + { + "slug": "tiger-fighter-1931-tora-tora-mp033", + "name": "Tiger Fighter 1931 Tora!Tora! MP033", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp033" + }, + { + "slug": "tiger-fighter-1931-tora-tora-mp034", + "name": "Tiger Fighter 1931 Tora!Tora! MP034", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp034" + }, + { + "slug": "tiger-fighter-1931-tora-tora-mp035", + "name": "Tiger Fighter 1931 Tora!Tora! MP035", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp035" + }, + { + "slug": "tiger-fighter-1931-tora-tora-mp036", + "name": "Tiger Fighter 1931 Tora!Tora! MP036", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp036" + }, + { + "slug": "tiger-fighter-1931-tora-tora-mp037", + "name": "Tiger Fighter 1931 Tora!Tora! MP037", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp037" + }, + { + "slug": "tiger-fighter-1931-tora-tora-mp038", + "name": "Tiger Fighter 1931 Tora!Tora! MP038", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp038" + }, + { + "slug": "tiger-fighter-1931-tora-tora-mp039", + "name": "Tiger Fighter 1931 Tora!Tora! MP039", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp039" + }, + { + "slug": "tiger-fighter-1931-tora-tora-mp040", + "name": "Tiger Fighter 1931 Tora!Tora! MP040", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp040" + }, + { + "slug": "tiger-fighter-1931-tora-tora-mp041", + "name": "Tiger Fighter 1931 Tora!Tora! MP041", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp041" + }, + { + "slug": "tiger-fighter-1931-tora-tora-mp042", + "name": "Tiger Fighter 1931 Tora!Tora! MP042", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp042" + }, + { + "slug": "tiger-fighter-1931-tora-tora-mp043", + "name": "Tiger Fighter 1931 Tora!Tora! MP043", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp043" + }, + { + "slug": "tiger-fighter-1931-tora-tora-mp044", + "name": "Tiger Fighter 1931 Tora!Tora! MP044", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp044" + }, + { + "slug": "tiger-fighter-1931-tora-tora-mp045", + "name": "Tiger Fighter 1931 Tora!Tora! MP045", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp045" + }, + { + "slug": "tiger-fighter-1931-tora-tora-mp046", + "name": "Tiger Fighter 1931 Tora!Tora! MP046", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp046" + }, + { + "slug": "tiger-fighter-1931-tora-tora-mp047", + "name": "Tiger Fighter 1931 Tora!Tora! MP047", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp047" + }, + { + "slug": "tiger-fighter-1931-tora-tora-mp048", + "name": "Tiger Fighter 1931 Tora!Tora! MP048", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp048" + }, + { + "slug": "tiger-fighter-1931-tora-tora-mp049", + "name": "Tiger Fighter 1931 Tora!Tora! MP049", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp049" + }, + { + "slug": "tiger-fighter-1931-tora-tora-mp050", + "name": "Tiger Fighter 1931 Tora!Tora! MP050", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp050" + }, + { + "slug": "tiger-fighter-1931-tora-tora-mp051", + "name": "Tiger Fighter 1931 Tora!Tora! MP051", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp051" + }, + { + "slug": "tiger-fighter-1931-tora-tora-mp052", + "name": "Tiger Fighter 1931 Tora!Tora! MP052", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp052" + }, + { + "slug": "tiger-fighter-1931-tora-tora-mp053", + "name": "Tiger Fighter 1931 Tora!Tora! MP053", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp053" + }, + { + "slug": "tiger-fighter-1931-tora-tora-mp054", + "name": "Tiger Fighter 1931 Tora!Tora! MP054", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp054" + }, + { + "slug": "tiger-fighter-1931-tora-tora-mp055", + "name": "Tiger Fighter 1931 Tora!Tora! MP055", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp055" + }, + { + "slug": "tiger-fighter-1931-tora-tora-mp056", + "name": "Tiger Fighter 1931 Tora!Tora! MP056", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp056" + }, + { + "slug": "tiger-fighter-1931-tora-tora-mp057", + "name": "Tiger Fighter 1931 Tora!Tora! MP057", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp057" + }, + { + "slug": "tiger-fighter-1931-tora-tora-mp058", + "name": "Tiger Fighter 1931 Tora!Tora! MP058", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp058" + }, + { + "slug": "tiger-fighter-1931-tora-tora-mp059", + "name": "Tiger Fighter 1931 Tora!Tora! MP059", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp059" + }, + { + "slug": "tiger-fighter-1931-tora-tora-mp060", + "name": "Tiger Fighter 1931 Tora!Tora! MP060", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp060" + }, + { + "slug": "tiger-fighter-1931-tora-tora-mp061", + "name": "Tiger Fighter 1931 Tora!Tora! MP061", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp061" + }, + { + "slug": "tiger-fighter-1931-tora-tora-mp062", + "name": "Tiger Fighter 1931 Tora!Tora! MP062", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp062" + }, + { + "slug": "tiger-fighter-1931-tora-tora-mp063", + "name": "Tiger Fighter 1931 Tora!Tora! MP063", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp063" + }, + { + "slug": "tiger-fighter-1931-tora-tora-mp064", + "name": "Tiger Fighter 1931 Tora!Tora! MP064", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp064" + }, + { + "slug": "tiger-fighter-1931-tora-tora-mp065", + "name": "Tiger Fighter 1931 Tora!Tora! MP065", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp065" + }, + { + "slug": "tiger-fighter-1931-tora-tora-mp066", + "name": "Tiger Fighter 1931 Tora!Tora! MP066", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp066" + }, + { + "slug": "tiger-fighter-1931-tora-tora-mp067", + "name": "Tiger Fighter 1931 Tora!Tora! MP067", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp067" + }, + { + "slug": "tiger-fighter-1931-tora-tora-mp068", + "name": "Tiger Fighter 1931 Tora!Tora! MP068", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp068" + }, + { + "slug": "tiger-fighter-1931-tora-tora-mp069", + "name": "Tiger Fighter 1931 Tora!Tora! MP069", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp069" + }, + { + "slug": "tiger-fighter-1931-tora-tora-mp070", + "name": "Tiger Fighter 1931 Tora!Tora! MP070", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp070" + }, + { + "slug": "tiger-fighter-1931-tora-tora-mp071", + "name": "Tiger Fighter 1931 Tora!Tora! MP071", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp071" + }, + { + "slug": "tiger-fighter-1931-tora-tora-mp072", + "name": "Tiger Fighter 1931 Tora!Tora! MP072", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp072" + }, + { + "slug": "tiger-fighter-1931-tora-tora-mp073", + "name": "Tiger Fighter 1931 Tora!Tora! MP073", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp073" + }, + { + "slug": "tiger-fighter-1931-tora-tora-mp074", + "name": "Tiger Fighter 1931 Tora!Tora! MP074", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp074" + }, + { + "slug": "tiger-fighter-1931-tora-tora-mp075", + "name": "Tiger Fighter 1931 Tora!Tora! MP075", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp075" + }, + { + "slug": "tiger-fighter-1931-tora-tora-mp076", + "name": "Tiger Fighter 1931 Tora!Tora! MP076", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp076" + }, + { + "slug": "tiger-fighter-1931-tora-tora-mp077", + "name": "Tiger Fighter 1931 Tora!Tora! MP077", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp077" + }, + { + "slug": "tiger-fighter-1931-tora-tora-mp078", + "name": "Tiger Fighter 1931 Tora!Tora! MP078", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp078" + }, + { + "slug": "tiger-fighter-1931-tora-tora-mp079", + "name": "Tiger Fighter 1931 Tora!Tora! MP079", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp079" + }, + { + "slug": "tiger-fighter-1931-tora-tora-mp080", + "name": "Tiger Fighter 1931 Tora!Tora! MP080", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp080" + }, + { + "slug": "tiger-fighter-1931-tora-tora-mp081", + "name": "Tiger Fighter 1931 Tora!Tora! MP081", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp081" + }, + { + "slug": "tiger-fighter-1931-tora-tora-mp082", + "name": "Tiger Fighter 1931 Tora!Tora! MP082", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp082" + }, + { + "slug": "tiger-fighter-1931-tora-tora-mp083", + "name": "Tiger Fighter 1931 Tora!Tora! MP083", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp083" + }, + { + "slug": "tiger-fighter-1931-tora-tora-mp084", + "name": "Tiger Fighter 1931 Tora!Tora! MP084", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp084" + }, + { + "slug": "tiger-fighter-1931-tora-tora-mp085", + "name": "Tiger Fighter 1931 Tora!Tora! MP085", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp085" + }, + { + "slug": "tiger-fighter-1931-tora-tora-mp086", + "name": "Tiger Fighter 1931 Tora!Tora! MP086", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp086" + }, + { + "slug": "tiger-fighter-1931-tora-tora-mp087", + "name": "Tiger Fighter 1931 Tora!Tora! MP087", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp087" + }, + { + "slug": "tiger-fighter-1931-tora-tora-mp088", + "name": "Tiger Fighter 1931 Tora!Tora! MP088", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp088" + }, + { + "slug": "tiger-fighter-1931-tora-tora-mp089", + "name": "Tiger Fighter 1931 Tora!Tora! MP089", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp089" + }, + { + "slug": "tiger-fighter-1931-tora-tora-mp090", + "name": "Tiger Fighter 1931 Tora!Tora! MP090", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp090" + }, + { + "slug": "tiger-fighter-1931-tora-tora-mp091", + "name": "Tiger Fighter 1931 Tora!Tora! MP091", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp091" + }, + { + "slug": "tiger-fighter-1931-tora-tora-mp092", + "name": "Tiger Fighter 1931 Tora!Tora! MP092", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp092" + }, + { + "slug": "tiger-fighter-1931-tora-tora-mp093", + "name": "Tiger Fighter 1931 Tora!Tora! MP093", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp093" + }, + { + "slug": "tiger-fighter-1931-tora-tora-mp094", + "name": "Tiger Fighter 1931 Tora!Tora! MP094", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp094" + }, + { + "slug": "tiger-fighter-1931-tora-tora-mp095", + "name": "Tiger Fighter 1931 Tora!Tora! MP095", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp095" + }, + { + "slug": "tiger-fighter-1931-tora-tora-mp096", + "name": "Tiger Fighter 1931 Tora!Tora! MP096", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp096" + }, + { + "slug": "tiger-fighter-1931-tora-tora-mp097", + "name": "Tiger Fighter 1931 Tora!Tora! MP097", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp097" + }, + { + "slug": "tiger-fighter-1931-tora-tora-mp098", + "name": "Tiger Fighter 1931 Tora!Tora! MP098", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp098" + }, + { + "slug": "tiger-fighter-1931-tora-tora-mp099", + "name": "Tiger Fighter 1931 Tora!Tora! MP099", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp099" + }, + { + "slug": "tiger-fighter-1931-tora-tora-mp100", + "name": "Tiger Fighter 1931 Tora!Tora! MP100", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp100" + }, { "slug": "tiger-fighter-1931-tora-tora-tora", "name": "Tiger Fighter 1931 Tora!Tora!Tora!", "url": "/v1/games/tiger-fighter-1931-tora-tora-tora" }, + { + "slug": "tiger-fighter-1931-tora-tora-tora-mp001", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP001", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp001" + }, + { + "slug": "tiger-fighter-1931-tora-tora-tora-mp002", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP002", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp002" + }, + { + "slug": "tiger-fighter-1931-tora-tora-tora-mp003", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP003", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp003" + }, + { + "slug": "tiger-fighter-1931-tora-tora-tora-mp004", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP004", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp004" + }, + { + "slug": "tiger-fighter-1931-tora-tora-tora-mp005", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP005", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp005" + }, + { + "slug": "tiger-fighter-1931-tora-tora-tora-mp006", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP006", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp006" + }, + { + "slug": "tiger-fighter-1931-tora-tora-tora-mp007", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP007", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp007" + }, + { + "slug": "tiger-fighter-1931-tora-tora-tora-mp008", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP008", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp008" + }, + { + "slug": "tiger-fighter-1931-tora-tora-tora-mp009", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP009", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp009" + }, + { + "slug": "tiger-fighter-1931-tora-tora-tora-mp010", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP010", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp010" + }, + { + "slug": "tiger-fighter-1931-tora-tora-tora-mp011", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP011", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp011" + }, + { + "slug": "tiger-fighter-1931-tora-tora-tora-mp012", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP012", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp012" + }, + { + "slug": "tiger-fighter-1931-tora-tora-tora-mp013", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP013", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp013" + }, + { + "slug": "tiger-fighter-1931-tora-tora-tora-mp014", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP014", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp014" + }, + { + "slug": "tiger-fighter-1931-tora-tora-tora-mp015", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP015", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp015" + }, + { + "slug": "tiger-fighter-1931-tora-tora-tora-mp016", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP016", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp016" + }, + { + "slug": "tiger-fighter-1931-tora-tora-tora-mp017", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP017", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp017" + }, + { + "slug": "tiger-fighter-1931-tora-tora-tora-mp018", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP018", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp018" + }, + { + "slug": "tiger-fighter-1931-tora-tora-tora-mp019", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP019", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp019" + }, + { + "slug": "tiger-fighter-1931-tora-tora-tora-mp020", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP020", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp020" + }, + { + "slug": "tiger-fighter-1931-tora-tora-tora-mp021", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP021", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp021" + }, + { + "slug": "tiger-fighter-1931-tora-tora-tora-mp022", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP022", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp022" + }, + { + "slug": "tiger-fighter-1931-tora-tora-tora-mp023", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP023", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp023" + }, + { + "slug": "tiger-fighter-1931-tora-tora-tora-mp024", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP024", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp024" + }, + { + "slug": "tiger-fighter-1931-tora-tora-tora-mp025", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP025", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp025" + }, + { + "slug": "tiger-fighter-1931-tora-tora-tora-mp026", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP026", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp026" + }, + { + "slug": "tiger-fighter-1931-tora-tora-tora-mp027", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP027", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp027" + }, + { + "slug": "tiger-fighter-1931-tora-tora-tora-mp028", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP028", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp028" + }, + { + "slug": "tiger-fighter-1931-tora-tora-tora-mp029", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP029", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp029" + }, + { + "slug": "tiger-fighter-1931-tora-tora-tora-mp030", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP030", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp030" + }, + { + "slug": "tiger-fighter-1931-tora-tora-tora-mp031", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP031", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp031" + }, + { + "slug": "tiger-fighter-1931-tora-tora-tora-mp032", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP032", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp032" + }, + { + "slug": "tiger-fighter-1931-tora-tora-tora-mp033", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP033", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp033" + }, + { + "slug": "tiger-fighter-1931-tora-tora-tora-mp034", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP034", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp034" + }, + { + "slug": "tiger-fighter-1931-tora-tora-tora-mp035", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP035", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp035" + }, + { + "slug": "tiger-fighter-1931-tora-tora-tora-mp036", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP036", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp036" + }, + { + "slug": "tiger-fighter-1931-tora-tora-tora-mp037", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP037", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp037" + }, + { + "slug": "tiger-fighter-1931-tora-tora-tora-mp038", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP038", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp038" + }, + { + "slug": "tiger-fighter-1931-tora-tora-tora-mp039", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP039", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp039" + }, + { + "slug": "tiger-fighter-1931-tora-tora-tora-mp040", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP040", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp040" + }, + { + "slug": "tiger-fighter-1931-tora-tora-tora-mp041", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP041", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp041" + }, + { + "slug": "tiger-fighter-1931-tora-tora-tora-mp042", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP042", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp042" + }, + { + "slug": "tiger-fighter-1931-tora-tora-tora-mp043", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP043", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp043" + }, + { + "slug": "tiger-fighter-1931-tora-tora-tora-mp044", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP044", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp044" + }, + { + "slug": "tiger-fighter-1931-tora-tora-tora-mp045", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP045", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp045" + }, + { + "slug": "tiger-fighter-1931-tora-tora-tora-mp046", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP046", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp046" + }, + { + "slug": "tiger-fighter-1931-tora-tora-tora-mp047", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP047", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp047" + }, + { + "slug": "tiger-fighter-1931-tora-tora-tora-mp048", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP048", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp048" + }, + { + "slug": "tiger-fighter-1931-tora-tora-tora-mp049", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP049", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp049" + }, + { + "slug": "tiger-fighter-1931-tora-tora-tora-mp050", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP050", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp050" + }, + { + "slug": "tiger-fighter-1931-tora-tora-tora-mp051", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP051", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp051" + }, + { + "slug": "tiger-fighter-1931-tora-tora-tora-mp052", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP052", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp052" + }, + { + "slug": "tiger-fighter-1931-tora-tora-tora-mp053", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP053", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp053" + }, + { + "slug": "tiger-fighter-1931-tora-tora-tora-mp054", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP054", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp054" + }, + { + "slug": "tiger-fighter-1931-tora-tora-tora-mp055", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP055", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp055" + }, + { + "slug": "tiger-fighter-1931-tora-tora-tora-mp056", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP056", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp056" + }, + { + "slug": "tiger-fighter-1931-tora-tora-tora-mp057", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP057", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp057" + }, + { + "slug": "tiger-fighter-1931-tora-tora-tora-mp058", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP058", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp058" + }, + { + "slug": "tiger-fighter-1931-tora-tora-tora-mp059", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP059", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp059" + }, + { + "slug": "tiger-fighter-1931-tora-tora-tora-mp060", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP060", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp060" + }, + { + "slug": "tiger-fighter-1931-tora-tora-tora-mp061", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP061", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp061" + }, + { + "slug": "tiger-fighter-1931-tora-tora-tora-mp062", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP062", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp062" + }, + { + "slug": "tiger-fighter-1931-tora-tora-tora-mp063", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP063", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp063" + }, + { + "slug": "tiger-fighter-1931-tora-tora-tora-mp064", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP064", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp064" + }, + { + "slug": "tiger-fighter-1931-tora-tora-tora-mp065", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP065", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp065" + }, + { + "slug": "tiger-fighter-1931-tora-tora-tora-mp066", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP066", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp066" + }, + { + "slug": "tiger-fighter-1931-tora-tora-tora-mp067", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP067", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp067" + }, + { + "slug": "tiger-fighter-1931-tora-tora-tora-mp068", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP068", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp068" + }, + { + "slug": "tiger-fighter-1931-tora-tora-tora-mp069", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP069", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp069" + }, + { + "slug": "tiger-fighter-1931-tora-tora-tora-mp070", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP070", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp070" + }, + { + "slug": "tiger-fighter-1931-tora-tora-tora-mp071", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP071", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp071" + }, + { + "slug": "tiger-fighter-1931-tora-tora-tora-mp072", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP072", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp072" + }, + { + "slug": "tiger-fighter-1931-tora-tora-tora-mp073", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP073", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp073" + }, + { + "slug": "tiger-fighter-1931-tora-tora-tora-mp074", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP074", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp074" + }, + { + "slug": "tiger-fighter-1931-tora-tora-tora-mp075", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP075", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp075" + }, + { + "slug": "tiger-fighter-1931-tora-tora-tora-mp076", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP076", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp076" + }, + { + "slug": "tiger-fighter-1931-tora-tora-tora-mp077", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP077", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp077" + }, + { + "slug": "tiger-fighter-1931-tora-tora-tora-mp078", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP078", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp078" + }, + { + "slug": "tiger-fighter-1931-tora-tora-tora-mp079", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP079", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp079" + }, + { + "slug": "tiger-fighter-1931-tora-tora-tora-mp080", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP080", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp080" + }, + { + "slug": "tiger-fighter-1931-tora-tora-tora-mp081", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP081", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp081" + }, + { + "slug": "tiger-fighter-1931-tora-tora-tora-mp082", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP082", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp082" + }, + { + "slug": "tiger-fighter-1931-tora-tora-tora-mp083", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP083", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp083" + }, + { + "slug": "tiger-fighter-1931-tora-tora-tora-mp084", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP084", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp084" + }, + { + "slug": "tiger-fighter-1931-tora-tora-tora-mp085", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP085", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp085" + }, + { + "slug": "tiger-fighter-1931-tora-tora-tora-mp086", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP086", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp086" + }, + { + "slug": "tiger-fighter-1931-tora-tora-tora-mp087", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP087", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp087" + }, + { + "slug": "tiger-fighter-1931-tora-tora-tora-mp088", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP088", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp088" + }, + { + "slug": "tiger-fighter-1931-tora-tora-tora-mp089", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP089", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp089" + }, + { + "slug": "tiger-fighter-1931-tora-tora-tora-mp090", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP090", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp090" + }, + { + "slug": "tiger-fighter-1931-tora-tora-tora-mp091", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP091", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp091" + }, + { + "slug": "tiger-fighter-1931-tora-tora-tora-mp092", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP092", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp092" + }, + { + "slug": "tiger-fighter-1931-tora-tora-tora-mp093", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP093", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp093" + }, + { + "slug": "tiger-fighter-1931-tora-tora-tora-mp094", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP094", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp094" + }, + { + "slug": "tiger-fighter-1931-tora-tora-tora-mp095", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP095", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp095" + }, + { + "slug": "tiger-fighter-1931-tora-tora-tora-mp096", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP096", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp096" + }, + { + "slug": "tiger-fighter-1931-tora-tora-tora-mp097", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP097", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp097" + }, + { + "slug": "tiger-fighter-1931-tora-tora-tora-mp098", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP098", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp098" + }, + { + "slug": "tiger-fighter-1931-tora-tora-tora-mp099", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP099", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp099" + }, + { + "slug": "tiger-fighter-1931-tora-tora-tora-mp100", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP100", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp100" + }, { "slug": "tiger-girl-hill-breaker", "name": "Tiger Girl Hill Breaker", @@ -750466,11 +773621,1011 @@ "name": "Tiger Soldier Ⅰ", "url": "/v1/games/tiger-soldier" }, + { + "slug": "tiger-soldier-mp001", + "name": "Tiger Soldier Ⅰ MP001", + "url": "/v1/games/tiger-soldier-mp001" + }, + { + "slug": "tiger-soldier-mp002", + "name": "Tiger Soldier Ⅰ MP002", + "url": "/v1/games/tiger-soldier-mp002" + }, + { + "slug": "tiger-soldier-mp003", + "name": "Tiger Soldier Ⅰ MP003", + "url": "/v1/games/tiger-soldier-mp003" + }, + { + "slug": "tiger-soldier-mp004", + "name": "Tiger Soldier Ⅰ MP004", + "url": "/v1/games/tiger-soldier-mp004" + }, + { + "slug": "tiger-soldier-mp005", + "name": "Tiger Soldier Ⅰ MP005", + "url": "/v1/games/tiger-soldier-mp005" + }, + { + "slug": "tiger-soldier-mp006", + "name": "Tiger Soldier Ⅰ MP006", + "url": "/v1/games/tiger-soldier-mp006" + }, + { + "slug": "tiger-soldier-mp007", + "name": "Tiger Soldier Ⅰ MP007", + "url": "/v1/games/tiger-soldier-mp007" + }, + { + "slug": "tiger-soldier-mp008", + "name": "Tiger Soldier Ⅰ MP008", + "url": "/v1/games/tiger-soldier-mp008" + }, + { + "slug": "tiger-soldier-mp009", + "name": "Tiger Soldier Ⅰ MP009", + "url": "/v1/games/tiger-soldier-mp009" + }, + { + "slug": "tiger-soldier-mp010", + "name": "Tiger Soldier Ⅰ MP010", + "url": "/v1/games/tiger-soldier-mp010" + }, + { + "slug": "tiger-soldier-mp011", + "name": "Tiger Soldier Ⅰ MP011", + "url": "/v1/games/tiger-soldier-mp011" + }, + { + "slug": "tiger-soldier-mp012", + "name": "Tiger Soldier Ⅰ MP012", + "url": "/v1/games/tiger-soldier-mp012" + }, + { + "slug": "tiger-soldier-mp013", + "name": "Tiger Soldier Ⅰ MP013", + "url": "/v1/games/tiger-soldier-mp013" + }, + { + "slug": "tiger-soldier-mp014", + "name": "Tiger Soldier Ⅰ MP014", + "url": "/v1/games/tiger-soldier-mp014" + }, + { + "slug": "tiger-soldier-mp015", + "name": "Tiger Soldier Ⅰ MP015", + "url": "/v1/games/tiger-soldier-mp015" + }, + { + "slug": "tiger-soldier-mp016", + "name": "Tiger Soldier Ⅰ MP016", + "url": "/v1/games/tiger-soldier-mp016" + }, + { + "slug": "tiger-soldier-mp017", + "name": "Tiger Soldier Ⅰ MP017", + "url": "/v1/games/tiger-soldier-mp017" + }, + { + "slug": "tiger-soldier-mp018", + "name": "Tiger Soldier Ⅰ MP018", + "url": "/v1/games/tiger-soldier-mp018" + }, + { + "slug": "tiger-soldier-mp019", + "name": "Tiger Soldier Ⅰ MP019", + "url": "/v1/games/tiger-soldier-mp019" + }, + { + "slug": "tiger-soldier-mp020", + "name": "Tiger Soldier Ⅰ MP020", + "url": "/v1/games/tiger-soldier-mp020" + }, + { + "slug": "tiger-soldier-mp021", + "name": "Tiger Soldier Ⅰ MP021", + "url": "/v1/games/tiger-soldier-mp021" + }, + { + "slug": "tiger-soldier-mp022", + "name": "Tiger Soldier Ⅰ MP022", + "url": "/v1/games/tiger-soldier-mp022" + }, + { + "slug": "tiger-soldier-mp023", + "name": "Tiger Soldier Ⅰ MP023", + "url": "/v1/games/tiger-soldier-mp023" + }, + { + "slug": "tiger-soldier-mp024", + "name": "Tiger Soldier Ⅰ MP024", + "url": "/v1/games/tiger-soldier-mp024" + }, + { + "slug": "tiger-soldier-mp025", + "name": "Tiger Soldier Ⅰ MP025", + "url": "/v1/games/tiger-soldier-mp025" + }, + { + "slug": "tiger-soldier-mp026", + "name": "Tiger Soldier Ⅰ MP026", + "url": "/v1/games/tiger-soldier-mp026" + }, + { + "slug": "tiger-soldier-mp027", + "name": "Tiger Soldier Ⅰ MP027", + "url": "/v1/games/tiger-soldier-mp027" + }, + { + "slug": "tiger-soldier-mp028", + "name": "Tiger Soldier Ⅰ MP028", + "url": "/v1/games/tiger-soldier-mp028" + }, + { + "slug": "tiger-soldier-mp029", + "name": "Tiger Soldier Ⅰ MP029", + "url": "/v1/games/tiger-soldier-mp029" + }, + { + "slug": "tiger-soldier-mp030", + "name": "Tiger Soldier Ⅰ MP030", + "url": "/v1/games/tiger-soldier-mp030" + }, + { + "slug": "tiger-soldier-mp031", + "name": "Tiger Soldier Ⅰ MP031", + "url": "/v1/games/tiger-soldier-mp031" + }, + { + "slug": "tiger-soldier-mp032", + "name": "Tiger Soldier Ⅰ MP032", + "url": "/v1/games/tiger-soldier-mp032" + }, + { + "slug": "tiger-soldier-mp033", + "name": "Tiger Soldier Ⅰ MP033", + "url": "/v1/games/tiger-soldier-mp033" + }, + { + "slug": "tiger-soldier-mp034", + "name": "Tiger Soldier Ⅰ MP034", + "url": "/v1/games/tiger-soldier-mp034" + }, + { + "slug": "tiger-soldier-mp035", + "name": "Tiger Soldier Ⅰ MP035", + "url": "/v1/games/tiger-soldier-mp035" + }, + { + "slug": "tiger-soldier-mp036", + "name": "Tiger Soldier Ⅰ MP036", + "url": "/v1/games/tiger-soldier-mp036" + }, + { + "slug": "tiger-soldier-mp037", + "name": "Tiger Soldier Ⅰ MP037", + "url": "/v1/games/tiger-soldier-mp037" + }, + { + "slug": "tiger-soldier-mp038", + "name": "Tiger Soldier Ⅰ MP038", + "url": "/v1/games/tiger-soldier-mp038" + }, + { + "slug": "tiger-soldier-mp039", + "name": "Tiger Soldier Ⅰ MP039", + "url": "/v1/games/tiger-soldier-mp039" + }, + { + "slug": "tiger-soldier-mp040", + "name": "Tiger Soldier Ⅰ MP040", + "url": "/v1/games/tiger-soldier-mp040" + }, + { + "slug": "tiger-soldier-mp041", + "name": "Tiger Soldier Ⅰ MP041", + "url": "/v1/games/tiger-soldier-mp041" + }, + { + "slug": "tiger-soldier-mp042", + "name": "Tiger Soldier Ⅰ MP042", + "url": "/v1/games/tiger-soldier-mp042" + }, + { + "slug": "tiger-soldier-mp043", + "name": "Tiger Soldier Ⅰ MP043", + "url": "/v1/games/tiger-soldier-mp043" + }, + { + "slug": "tiger-soldier-mp044", + "name": "Tiger Soldier Ⅰ MP044", + "url": "/v1/games/tiger-soldier-mp044" + }, + { + "slug": "tiger-soldier-mp045", + "name": "Tiger Soldier Ⅰ MP045", + "url": "/v1/games/tiger-soldier-mp045" + }, + { + "slug": "tiger-soldier-mp046", + "name": "Tiger Soldier Ⅰ MP046", + "url": "/v1/games/tiger-soldier-mp046" + }, + { + "slug": "tiger-soldier-mp047", + "name": "Tiger Soldier Ⅰ MP047", + "url": "/v1/games/tiger-soldier-mp047" + }, + { + "slug": "tiger-soldier-mp048", + "name": "Tiger Soldier Ⅰ MP048", + "url": "/v1/games/tiger-soldier-mp048" + }, + { + "slug": "tiger-soldier-mp049", + "name": "Tiger Soldier Ⅰ MP049", + "url": "/v1/games/tiger-soldier-mp049" + }, + { + "slug": "tiger-soldier-mp050", + "name": "Tiger Soldier Ⅰ MP050", + "url": "/v1/games/tiger-soldier-mp050" + }, + { + "slug": "tiger-soldier-mp051", + "name": "Tiger Soldier Ⅰ MP051", + "url": "/v1/games/tiger-soldier-mp051" + }, + { + "slug": "tiger-soldier-mp052", + "name": "Tiger Soldier Ⅰ MP052", + "url": "/v1/games/tiger-soldier-mp052" + }, + { + "slug": "tiger-soldier-mp053", + "name": "Tiger Soldier Ⅰ MP053", + "url": "/v1/games/tiger-soldier-mp053" + }, + { + "slug": "tiger-soldier-mp054", + "name": "Tiger Soldier Ⅰ MP054", + "url": "/v1/games/tiger-soldier-mp054" + }, + { + "slug": "tiger-soldier-mp055", + "name": "Tiger Soldier Ⅰ MP055", + "url": "/v1/games/tiger-soldier-mp055" + }, + { + "slug": "tiger-soldier-mp056", + "name": "Tiger Soldier Ⅰ MP056", + "url": "/v1/games/tiger-soldier-mp056" + }, + { + "slug": "tiger-soldier-mp057", + "name": "Tiger Soldier Ⅰ MP057", + "url": "/v1/games/tiger-soldier-mp057" + }, + { + "slug": "tiger-soldier-mp058", + "name": "Tiger Soldier Ⅰ MP058", + "url": "/v1/games/tiger-soldier-mp058" + }, + { + "slug": "tiger-soldier-mp059", + "name": "Tiger Soldier Ⅰ MP059", + "url": "/v1/games/tiger-soldier-mp059" + }, + { + "slug": "tiger-soldier-mp060", + "name": "Tiger Soldier Ⅰ MP060", + "url": "/v1/games/tiger-soldier-mp060" + }, + { + "slug": "tiger-soldier-mp061", + "name": "Tiger Soldier Ⅰ MP061", + "url": "/v1/games/tiger-soldier-mp061" + }, + { + "slug": "tiger-soldier-mp062", + "name": "Tiger Soldier Ⅰ MP062", + "url": "/v1/games/tiger-soldier-mp062" + }, + { + "slug": "tiger-soldier-mp063", + "name": "Tiger Soldier Ⅰ MP063", + "url": "/v1/games/tiger-soldier-mp063" + }, + { + "slug": "tiger-soldier-mp064", + "name": "Tiger Soldier Ⅰ MP064", + "url": "/v1/games/tiger-soldier-mp064" + }, + { + "slug": "tiger-soldier-mp065", + "name": "Tiger Soldier Ⅰ MP065", + "url": "/v1/games/tiger-soldier-mp065" + }, + { + "slug": "tiger-soldier-mp066", + "name": "Tiger Soldier Ⅰ MP066", + "url": "/v1/games/tiger-soldier-mp066" + }, + { + "slug": "tiger-soldier-mp067", + "name": "Tiger Soldier Ⅰ MP067", + "url": "/v1/games/tiger-soldier-mp067" + }, + { + "slug": "tiger-soldier-mp068", + "name": "Tiger Soldier Ⅰ MP068", + "url": "/v1/games/tiger-soldier-mp068" + }, + { + "slug": "tiger-soldier-mp069", + "name": "Tiger Soldier Ⅰ MP069", + "url": "/v1/games/tiger-soldier-mp069" + }, + { + "slug": "tiger-soldier-mp070", + "name": "Tiger Soldier Ⅰ MP070", + "url": "/v1/games/tiger-soldier-mp070" + }, + { + "slug": "tiger-soldier-mp071", + "name": "Tiger Soldier Ⅰ MP071", + "url": "/v1/games/tiger-soldier-mp071" + }, + { + "slug": "tiger-soldier-mp072", + "name": "Tiger Soldier Ⅰ MP072", + "url": "/v1/games/tiger-soldier-mp072" + }, + { + "slug": "tiger-soldier-mp073", + "name": "Tiger Soldier Ⅰ MP073", + "url": "/v1/games/tiger-soldier-mp073" + }, + { + "slug": "tiger-soldier-mp074", + "name": "Tiger Soldier Ⅰ MP074", + "url": "/v1/games/tiger-soldier-mp074" + }, + { + "slug": "tiger-soldier-mp075", + "name": "Tiger Soldier Ⅰ MP075", + "url": "/v1/games/tiger-soldier-mp075" + }, + { + "slug": "tiger-soldier-mp076", + "name": "Tiger Soldier Ⅰ MP076", + "url": "/v1/games/tiger-soldier-mp076" + }, + { + "slug": "tiger-soldier-mp077", + "name": "Tiger Soldier Ⅰ MP077", + "url": "/v1/games/tiger-soldier-mp077" + }, + { + "slug": "tiger-soldier-mp078", + "name": "Tiger Soldier Ⅰ MP078", + "url": "/v1/games/tiger-soldier-mp078" + }, + { + "slug": "tiger-soldier-mp079", + "name": "Tiger Soldier Ⅰ MP079", + "url": "/v1/games/tiger-soldier-mp079" + }, + { + "slug": "tiger-soldier-mp080", + "name": "Tiger Soldier Ⅰ MP080", + "url": "/v1/games/tiger-soldier-mp080" + }, + { + "slug": "tiger-soldier-mp081", + "name": "Tiger Soldier Ⅰ MP081", + "url": "/v1/games/tiger-soldier-mp081" + }, + { + "slug": "tiger-soldier-mp082", + "name": "Tiger Soldier Ⅰ MP082", + "url": "/v1/games/tiger-soldier-mp082" + }, + { + "slug": "tiger-soldier-mp083", + "name": "Tiger Soldier Ⅰ MP083", + "url": "/v1/games/tiger-soldier-mp083" + }, + { + "slug": "tiger-soldier-mp084", + "name": "Tiger Soldier Ⅰ MP084", + "url": "/v1/games/tiger-soldier-mp084" + }, + { + "slug": "tiger-soldier-mp085", + "name": "Tiger Soldier Ⅰ MP085", + "url": "/v1/games/tiger-soldier-mp085" + }, + { + "slug": "tiger-soldier-mp086", + "name": "Tiger Soldier Ⅰ MP086", + "url": "/v1/games/tiger-soldier-mp086" + }, + { + "slug": "tiger-soldier-mp087", + "name": "Tiger Soldier Ⅰ MP087", + "url": "/v1/games/tiger-soldier-mp087" + }, + { + "slug": "tiger-soldier-mp088", + "name": "Tiger Soldier Ⅰ MP088", + "url": "/v1/games/tiger-soldier-mp088" + }, + { + "slug": "tiger-soldier-mp089", + "name": "Tiger Soldier Ⅰ MP089", + "url": "/v1/games/tiger-soldier-mp089" + }, + { + "slug": "tiger-soldier-mp090", + "name": "Tiger Soldier Ⅰ MP090", + "url": "/v1/games/tiger-soldier-mp090" + }, + { + "slug": "tiger-soldier-mp091", + "name": "Tiger Soldier Ⅰ MP091", + "url": "/v1/games/tiger-soldier-mp091" + }, + { + "slug": "tiger-soldier-mp092", + "name": "Tiger Soldier Ⅰ MP092", + "url": "/v1/games/tiger-soldier-mp092" + }, + { + "slug": "tiger-soldier-mp093", + "name": "Tiger Soldier Ⅰ MP093", + "url": "/v1/games/tiger-soldier-mp093" + }, + { + "slug": "tiger-soldier-mp094", + "name": "Tiger Soldier Ⅰ MP094", + "url": "/v1/games/tiger-soldier-mp094" + }, + { + "slug": "tiger-soldier-mp095", + "name": "Tiger Soldier Ⅰ MP095", + "url": "/v1/games/tiger-soldier-mp095" + }, + { + "slug": "tiger-soldier-mp096", + "name": "Tiger Soldier Ⅰ MP096", + "url": "/v1/games/tiger-soldier-mp096" + }, + { + "slug": "tiger-soldier-mp097", + "name": "Tiger Soldier Ⅰ MP097", + "url": "/v1/games/tiger-soldier-mp097" + }, + { + "slug": "tiger-soldier-mp098", + "name": "Tiger Soldier Ⅰ MP098", + "url": "/v1/games/tiger-soldier-mp098" + }, + { + "slug": "tiger-soldier-mp099", + "name": "Tiger Soldier Ⅰ MP099", + "url": "/v1/games/tiger-soldier-mp099" + }, + { + "slug": "tiger-soldier-mp100", + "name": "Tiger Soldier Ⅰ MP100", + "url": "/v1/games/tiger-soldier-mp100" + }, { "slug": "tiger-striker", "name": "Tiger Striker", "url": "/v1/games/tiger-striker" }, + { + "slug": "tiger-striker-mp001", + "name": "Tiger Striker MP001", + "url": "/v1/games/tiger-striker-mp001" + }, + { + "slug": "tiger-striker-mp002", + "name": "Tiger Striker MP002", + "url": "/v1/games/tiger-striker-mp002" + }, + { + "slug": "tiger-striker-mp003", + "name": "Tiger Striker MP003", + "url": "/v1/games/tiger-striker-mp003" + }, + { + "slug": "tiger-striker-mp004", + "name": "Tiger Striker MP004", + "url": "/v1/games/tiger-striker-mp004" + }, + { + "slug": "tiger-striker-mp005", + "name": "Tiger Striker MP005", + "url": "/v1/games/tiger-striker-mp005" + }, + { + "slug": "tiger-striker-mp006", + "name": "Tiger Striker MP006", + "url": "/v1/games/tiger-striker-mp006" + }, + { + "slug": "tiger-striker-mp007", + "name": "Tiger Striker MP007", + "url": "/v1/games/tiger-striker-mp007" + }, + { + "slug": "tiger-striker-mp008", + "name": "Tiger Striker MP008", + "url": "/v1/games/tiger-striker-mp008" + }, + { + "slug": "tiger-striker-mp009", + "name": "Tiger Striker MP009", + "url": "/v1/games/tiger-striker-mp009" + }, + { + "slug": "tiger-striker-mp010", + "name": "Tiger Striker MP010", + "url": "/v1/games/tiger-striker-mp010" + }, + { + "slug": "tiger-striker-mp011", + "name": "Tiger Striker MP011", + "url": "/v1/games/tiger-striker-mp011" + }, + { + "slug": "tiger-striker-mp012", + "name": "Tiger Striker MP012", + "url": "/v1/games/tiger-striker-mp012" + }, + { + "slug": "tiger-striker-mp013", + "name": "Tiger Striker MP013", + "url": "/v1/games/tiger-striker-mp013" + }, + { + "slug": "tiger-striker-mp014", + "name": "Tiger Striker MP014", + "url": "/v1/games/tiger-striker-mp014" + }, + { + "slug": "tiger-striker-mp015", + "name": "Tiger Striker MP015", + "url": "/v1/games/tiger-striker-mp015" + }, + { + "slug": "tiger-striker-mp016", + "name": "Tiger Striker MP016", + "url": "/v1/games/tiger-striker-mp016" + }, + { + "slug": "tiger-striker-mp017", + "name": "Tiger Striker MP017", + "url": "/v1/games/tiger-striker-mp017" + }, + { + "slug": "tiger-striker-mp018", + "name": "Tiger Striker MP018", + "url": "/v1/games/tiger-striker-mp018" + }, + { + "slug": "tiger-striker-mp019", + "name": "Tiger Striker MP019", + "url": "/v1/games/tiger-striker-mp019" + }, + { + "slug": "tiger-striker-mp020", + "name": "Tiger Striker MP020", + "url": "/v1/games/tiger-striker-mp020" + }, + { + "slug": "tiger-striker-mp021", + "name": "Tiger Striker MP021", + "url": "/v1/games/tiger-striker-mp021" + }, + { + "slug": "tiger-striker-mp022", + "name": "Tiger Striker MP022", + "url": "/v1/games/tiger-striker-mp022" + }, + { + "slug": "tiger-striker-mp023", + "name": "Tiger Striker MP023", + "url": "/v1/games/tiger-striker-mp023" + }, + { + "slug": "tiger-striker-mp024", + "name": "Tiger Striker MP024", + "url": "/v1/games/tiger-striker-mp024" + }, + { + "slug": "tiger-striker-mp025", + "name": "Tiger Striker MP025", + "url": "/v1/games/tiger-striker-mp025" + }, + { + "slug": "tiger-striker-mp026", + "name": "Tiger Striker MP026", + "url": "/v1/games/tiger-striker-mp026" + }, + { + "slug": "tiger-striker-mp027", + "name": "Tiger Striker MP027", + "url": "/v1/games/tiger-striker-mp027" + }, + { + "slug": "tiger-striker-mp028", + "name": "Tiger Striker MP028", + "url": "/v1/games/tiger-striker-mp028" + }, + { + "slug": "tiger-striker-mp029", + "name": "Tiger Striker MP029", + "url": "/v1/games/tiger-striker-mp029" + }, + { + "slug": "tiger-striker-mp030", + "name": "Tiger Striker MP030", + "url": "/v1/games/tiger-striker-mp030" + }, + { + "slug": "tiger-striker-mp031", + "name": "Tiger Striker MP031", + "url": "/v1/games/tiger-striker-mp031" + }, + { + "slug": "tiger-striker-mp032", + "name": "Tiger Striker MP032", + "url": "/v1/games/tiger-striker-mp032" + }, + { + "slug": "tiger-striker-mp033", + "name": "Tiger Striker MP033", + "url": "/v1/games/tiger-striker-mp033" + }, + { + "slug": "tiger-striker-mp034", + "name": "Tiger Striker MP034", + "url": "/v1/games/tiger-striker-mp034" + }, + { + "slug": "tiger-striker-mp035", + "name": "Tiger Striker MP035", + "url": "/v1/games/tiger-striker-mp035" + }, + { + "slug": "tiger-striker-mp036", + "name": "Tiger Striker MP036", + "url": "/v1/games/tiger-striker-mp036" + }, + { + "slug": "tiger-striker-mp037", + "name": "Tiger Striker MP037", + "url": "/v1/games/tiger-striker-mp037" + }, + { + "slug": "tiger-striker-mp038", + "name": "Tiger Striker MP038", + "url": "/v1/games/tiger-striker-mp038" + }, + { + "slug": "tiger-striker-mp039", + "name": "Tiger Striker MP039", + "url": "/v1/games/tiger-striker-mp039" + }, + { + "slug": "tiger-striker-mp040", + "name": "Tiger Striker MP040", + "url": "/v1/games/tiger-striker-mp040" + }, + { + "slug": "tiger-striker-mp041", + "name": "Tiger Striker MP041", + "url": "/v1/games/tiger-striker-mp041" + }, + { + "slug": "tiger-striker-mp042", + "name": "Tiger Striker MP042", + "url": "/v1/games/tiger-striker-mp042" + }, + { + "slug": "tiger-striker-mp043", + "name": "Tiger Striker MP043", + "url": "/v1/games/tiger-striker-mp043" + }, + { + "slug": "tiger-striker-mp044", + "name": "Tiger Striker MP044", + "url": "/v1/games/tiger-striker-mp044" + }, + { + "slug": "tiger-striker-mp045", + "name": "Tiger Striker MP045", + "url": "/v1/games/tiger-striker-mp045" + }, + { + "slug": "tiger-striker-mp046", + "name": "Tiger Striker MP046", + "url": "/v1/games/tiger-striker-mp046" + }, + { + "slug": "tiger-striker-mp047", + "name": "Tiger Striker MP047", + "url": "/v1/games/tiger-striker-mp047" + }, + { + "slug": "tiger-striker-mp048", + "name": "Tiger Striker MP048", + "url": "/v1/games/tiger-striker-mp048" + }, + { + "slug": "tiger-striker-mp049", + "name": "Tiger Striker MP049", + "url": "/v1/games/tiger-striker-mp049" + }, + { + "slug": "tiger-striker-mp050", + "name": "Tiger Striker MP050", + "url": "/v1/games/tiger-striker-mp050" + }, + { + "slug": "tiger-striker-mp051", + "name": "Tiger Striker MP051", + "url": "/v1/games/tiger-striker-mp051" + }, + { + "slug": "tiger-striker-mp052", + "name": "Tiger Striker MP052", + "url": "/v1/games/tiger-striker-mp052" + }, + { + "slug": "tiger-striker-mp053", + "name": "Tiger Striker MP053", + "url": "/v1/games/tiger-striker-mp053" + }, + { + "slug": "tiger-striker-mp054", + "name": "Tiger Striker MP054", + "url": "/v1/games/tiger-striker-mp054" + }, + { + "slug": "tiger-striker-mp055", + "name": "Tiger Striker MP055", + "url": "/v1/games/tiger-striker-mp055" + }, + { + "slug": "tiger-striker-mp056", + "name": "Tiger Striker MP056", + "url": "/v1/games/tiger-striker-mp056" + }, + { + "slug": "tiger-striker-mp057", + "name": "Tiger Striker MP057", + "url": "/v1/games/tiger-striker-mp057" + }, + { + "slug": "tiger-striker-mp058", + "name": "Tiger Striker MP058", + "url": "/v1/games/tiger-striker-mp058" + }, + { + "slug": "tiger-striker-mp059", + "name": "Tiger Striker MP059", + "url": "/v1/games/tiger-striker-mp059" + }, + { + "slug": "tiger-striker-mp060", + "name": "Tiger Striker MP060", + "url": "/v1/games/tiger-striker-mp060" + }, + { + "slug": "tiger-striker-mp061", + "name": "Tiger Striker MP061", + "url": "/v1/games/tiger-striker-mp061" + }, + { + "slug": "tiger-striker-mp062", + "name": "Tiger Striker MP062", + "url": "/v1/games/tiger-striker-mp062" + }, + { + "slug": "tiger-striker-mp063", + "name": "Tiger Striker MP063", + "url": "/v1/games/tiger-striker-mp063" + }, + { + "slug": "tiger-striker-mp064", + "name": "Tiger Striker MP064", + "url": "/v1/games/tiger-striker-mp064" + }, + { + "slug": "tiger-striker-mp065", + "name": "Tiger Striker MP065", + "url": "/v1/games/tiger-striker-mp065" + }, + { + "slug": "tiger-striker-mp066", + "name": "Tiger Striker MP066", + "url": "/v1/games/tiger-striker-mp066" + }, + { + "slug": "tiger-striker-mp067", + "name": "Tiger Striker MP067", + "url": "/v1/games/tiger-striker-mp067" + }, + { + "slug": "tiger-striker-mp068", + "name": "Tiger Striker MP068", + "url": "/v1/games/tiger-striker-mp068" + }, + { + "slug": "tiger-striker-mp069", + "name": "Tiger Striker MP069", + "url": "/v1/games/tiger-striker-mp069" + }, + { + "slug": "tiger-striker-mp070", + "name": "Tiger Striker MP070", + "url": "/v1/games/tiger-striker-mp070" + }, + { + "slug": "tiger-striker-mp071", + "name": "Tiger Striker MP071", + "url": "/v1/games/tiger-striker-mp071" + }, + { + "slug": "tiger-striker-mp072", + "name": "Tiger Striker MP072", + "url": "/v1/games/tiger-striker-mp072" + }, + { + "slug": "tiger-striker-mp073", + "name": "Tiger Striker MP073", + "url": "/v1/games/tiger-striker-mp073" + }, + { + "slug": "tiger-striker-mp074", + "name": "Tiger Striker MP074", + "url": "/v1/games/tiger-striker-mp074" + }, + { + "slug": "tiger-striker-mp075", + "name": "Tiger Striker MP075", + "url": "/v1/games/tiger-striker-mp075" + }, + { + "slug": "tiger-striker-mp076", + "name": "Tiger Striker MP076", + "url": "/v1/games/tiger-striker-mp076" + }, + { + "slug": "tiger-striker-mp077", + "name": "Tiger Striker MP077", + "url": "/v1/games/tiger-striker-mp077" + }, + { + "slug": "tiger-striker-mp078", + "name": "Tiger Striker MP078", + "url": "/v1/games/tiger-striker-mp078" + }, + { + "slug": "tiger-striker-mp079", + "name": "Tiger Striker MP079", + "url": "/v1/games/tiger-striker-mp079" + }, + { + "slug": "tiger-striker-mp080", + "name": "Tiger Striker MP080", + "url": "/v1/games/tiger-striker-mp080" + }, + { + "slug": "tiger-striker-mp081", + "name": "Tiger Striker MP081", + "url": "/v1/games/tiger-striker-mp081" + }, + { + "slug": "tiger-striker-mp082", + "name": "Tiger Striker MP082", + "url": "/v1/games/tiger-striker-mp082" + }, + { + "slug": "tiger-striker-mp083", + "name": "Tiger Striker MP083", + "url": "/v1/games/tiger-striker-mp083" + }, + { + "slug": "tiger-striker-mp084", + "name": "Tiger Striker MP084", + "url": "/v1/games/tiger-striker-mp084" + }, + { + "slug": "tiger-striker-mp085", + "name": "Tiger Striker MP085", + "url": "/v1/games/tiger-striker-mp085" + }, + { + "slug": "tiger-striker-mp086", + "name": "Tiger Striker MP086", + "url": "/v1/games/tiger-striker-mp086" + }, + { + "slug": "tiger-striker-mp087", + "name": "Tiger Striker MP087", + "url": "/v1/games/tiger-striker-mp087" + }, + { + "slug": "tiger-striker-mp088", + "name": "Tiger Striker MP088", + "url": "/v1/games/tiger-striker-mp088" + }, + { + "slug": "tiger-striker-mp089", + "name": "Tiger Striker MP089", + "url": "/v1/games/tiger-striker-mp089" + }, + { + "slug": "tiger-striker-mp090", + "name": "Tiger Striker MP090", + "url": "/v1/games/tiger-striker-mp090" + }, + { + "slug": "tiger-striker-mp091", + "name": "Tiger Striker MP091", + "url": "/v1/games/tiger-striker-mp091" + }, + { + "slug": "tiger-striker-mp092", + "name": "Tiger Striker MP092", + "url": "/v1/games/tiger-striker-mp092" + }, + { + "slug": "tiger-striker-mp093", + "name": "Tiger Striker MP093", + "url": "/v1/games/tiger-striker-mp093" + }, + { + "slug": "tiger-striker-mp094", + "name": "Tiger Striker MP094", + "url": "/v1/games/tiger-striker-mp094" + }, + { + "slug": "tiger-striker-mp095", + "name": "Tiger Striker MP095", + "url": "/v1/games/tiger-striker-mp095" + }, + { + "slug": "tiger-striker-mp096", + "name": "Tiger Striker MP096", + "url": "/v1/games/tiger-striker-mp096" + }, + { + "slug": "tiger-striker-mp097", + "name": "Tiger Striker MP097", + "url": "/v1/games/tiger-striker-mp097" + }, + { + "slug": "tiger-striker-mp098", + "name": "Tiger Striker MP098", + "url": "/v1/games/tiger-striker-mp098" + }, + { + "slug": "tiger-striker-mp099", + "name": "Tiger Striker MP099", + "url": "/v1/games/tiger-striker-mp099" + }, + { + "slug": "tiger-striker-mp100", + "name": "Tiger Striker MP100", + "url": "/v1/games/tiger-striker-mp100" + }, { "slug": "tiger-tank-q135451926", "name": "Tiger Tank", @@ -750491,46 +774646,5026 @@ "name": "Tiger Tank 59 Ⅰ", "url": "/v1/games/tiger-tank-59" }, + { + "slug": "tiger-tank-59-a-gun-mp001", + "name": "Tiger Tank 59 Ⅰ A-Gun MP001", + "url": "/v1/games/tiger-tank-59-a-gun-mp001" + }, + { + "slug": "tiger-tank-59-a-gun-mp002", + "name": "Tiger Tank 59 Ⅰ A-Gun MP002", + "url": "/v1/games/tiger-tank-59-a-gun-mp002" + }, + { + "slug": "tiger-tank-59-a-gun-mp003", + "name": "Tiger Tank 59 Ⅰ A-Gun MP003", + "url": "/v1/games/tiger-tank-59-a-gun-mp003" + }, + { + "slug": "tiger-tank-59-a-gun-mp004", + "name": "Tiger Tank 59 Ⅰ A-Gun MP004", + "url": "/v1/games/tiger-tank-59-a-gun-mp004" + }, + { + "slug": "tiger-tank-59-a-gun-mp005", + "name": "Tiger Tank 59 Ⅰ A-Gun MP005", + "url": "/v1/games/tiger-tank-59-a-gun-mp005" + }, + { + "slug": "tiger-tank-59-a-gun-mp006", + "name": "Tiger Tank 59 Ⅰ A-Gun MP006", + "url": "/v1/games/tiger-tank-59-a-gun-mp006" + }, + { + "slug": "tiger-tank-59-a-gun-mp007", + "name": "Tiger Tank 59 Ⅰ A-Gun MP007", + "url": "/v1/games/tiger-tank-59-a-gun-mp007" + }, + { + "slug": "tiger-tank-59-a-gun-mp008", + "name": "Tiger Tank 59 Ⅰ A-Gun MP008", + "url": "/v1/games/tiger-tank-59-a-gun-mp008" + }, + { + "slug": "tiger-tank-59-a-gun-mp009", + "name": "Tiger Tank 59 Ⅰ A-Gun MP009", + "url": "/v1/games/tiger-tank-59-a-gun-mp009" + }, + { + "slug": "tiger-tank-59-a-gun-mp010", + "name": "Tiger Tank 59 Ⅰ A-Gun MP010", + "url": "/v1/games/tiger-tank-59-a-gun-mp010" + }, + { + "slug": "tiger-tank-59-a-gun-mp011", + "name": "Tiger Tank 59 Ⅰ A-Gun MP011", + "url": "/v1/games/tiger-tank-59-a-gun-mp011" + }, + { + "slug": "tiger-tank-59-a-gun-mp012", + "name": "Tiger Tank 59 Ⅰ A-Gun MP012", + "url": "/v1/games/tiger-tank-59-a-gun-mp012" + }, + { + "slug": "tiger-tank-59-a-gun-mp013", + "name": "Tiger Tank 59 Ⅰ A-Gun MP013", + "url": "/v1/games/tiger-tank-59-a-gun-mp013" + }, + { + "slug": "tiger-tank-59-a-gun-mp014", + "name": "Tiger Tank 59 Ⅰ A-Gun MP014", + "url": "/v1/games/tiger-tank-59-a-gun-mp014" + }, + { + "slug": "tiger-tank-59-a-gun-mp015", + "name": "Tiger Tank 59 Ⅰ A-Gun MP015", + "url": "/v1/games/tiger-tank-59-a-gun-mp015" + }, + { + "slug": "tiger-tank-59-a-gun-mp016", + "name": "Tiger Tank 59 Ⅰ A-Gun MP016", + "url": "/v1/games/tiger-tank-59-a-gun-mp016" + }, + { + "slug": "tiger-tank-59-a-gun-mp017", + "name": "Tiger Tank 59 Ⅰ A-Gun MP017", + "url": "/v1/games/tiger-tank-59-a-gun-mp017" + }, + { + "slug": "tiger-tank-59-a-gun-mp018", + "name": "Tiger Tank 59 Ⅰ A-Gun MP018", + "url": "/v1/games/tiger-tank-59-a-gun-mp018" + }, + { + "slug": "tiger-tank-59-a-gun-mp019", + "name": "Tiger Tank 59 Ⅰ A-Gun MP019", + "url": "/v1/games/tiger-tank-59-a-gun-mp019" + }, + { + "slug": "tiger-tank-59-a-gun-mp020", + "name": "Tiger Tank 59 Ⅰ A-Gun MP020", + "url": "/v1/games/tiger-tank-59-a-gun-mp020" + }, + { + "slug": "tiger-tank-59-a-gun-mp021", + "name": "Tiger Tank 59 Ⅰ A-Gun MP021", + "url": "/v1/games/tiger-tank-59-a-gun-mp021" + }, + { + "slug": "tiger-tank-59-a-gun-mp022", + "name": "Tiger Tank 59 Ⅰ A-Gun MP022", + "url": "/v1/games/tiger-tank-59-a-gun-mp022" + }, + { + "slug": "tiger-tank-59-a-gun-mp023", + "name": "Tiger Tank 59 Ⅰ A-Gun MP023", + "url": "/v1/games/tiger-tank-59-a-gun-mp023" + }, + { + "slug": "tiger-tank-59-a-gun-mp024", + "name": "Tiger Tank 59 Ⅰ A-Gun MP024", + "url": "/v1/games/tiger-tank-59-a-gun-mp024" + }, + { + "slug": "tiger-tank-59-a-gun-mp025", + "name": "Tiger Tank 59 Ⅰ A-Gun MP025", + "url": "/v1/games/tiger-tank-59-a-gun-mp025" + }, + { + "slug": "tiger-tank-59-a-gun-mp026", + "name": "Tiger Tank 59 Ⅰ A-Gun MP026", + "url": "/v1/games/tiger-tank-59-a-gun-mp026" + }, + { + "slug": "tiger-tank-59-a-gun-mp027", + "name": "Tiger Tank 59 Ⅰ A-Gun MP027", + "url": "/v1/games/tiger-tank-59-a-gun-mp027" + }, + { + "slug": "tiger-tank-59-a-gun-mp028", + "name": "Tiger Tank 59 Ⅰ A-Gun MP028", + "url": "/v1/games/tiger-tank-59-a-gun-mp028" + }, + { + "slug": "tiger-tank-59-a-gun-mp029", + "name": "Tiger Tank 59 Ⅰ A-Gun MP029", + "url": "/v1/games/tiger-tank-59-a-gun-mp029" + }, + { + "slug": "tiger-tank-59-a-gun-mp030", + "name": "Tiger Tank 59 Ⅰ A-Gun MP030", + "url": "/v1/games/tiger-tank-59-a-gun-mp030" + }, + { + "slug": "tiger-tank-59-a-gun-mp031", + "name": "Tiger Tank 59 Ⅰ A-Gun MP031", + "url": "/v1/games/tiger-tank-59-a-gun-mp031" + }, + { + "slug": "tiger-tank-59-a-gun-mp032", + "name": "Tiger Tank 59 Ⅰ A-Gun MP032", + "url": "/v1/games/tiger-tank-59-a-gun-mp032" + }, + { + "slug": "tiger-tank-59-a-gun-mp033", + "name": "Tiger Tank 59 Ⅰ A-Gun MP033", + "url": "/v1/games/tiger-tank-59-a-gun-mp033" + }, + { + "slug": "tiger-tank-59-a-gun-mp034", + "name": "Tiger Tank 59 Ⅰ A-Gun MP034", + "url": "/v1/games/tiger-tank-59-a-gun-mp034" + }, + { + "slug": "tiger-tank-59-a-gun-mp035", + "name": "Tiger Tank 59 Ⅰ A-Gun MP035", + "url": "/v1/games/tiger-tank-59-a-gun-mp035" + }, + { + "slug": "tiger-tank-59-a-gun-mp036", + "name": "Tiger Tank 59 Ⅰ A-Gun MP036", + "url": "/v1/games/tiger-tank-59-a-gun-mp036" + }, + { + "slug": "tiger-tank-59-a-gun-mp037", + "name": "Tiger Tank 59 Ⅰ A-Gun MP037", + "url": "/v1/games/tiger-tank-59-a-gun-mp037" + }, + { + "slug": "tiger-tank-59-a-gun-mp038", + "name": "Tiger Tank 59 Ⅰ A-Gun MP038", + "url": "/v1/games/tiger-tank-59-a-gun-mp038" + }, + { + "slug": "tiger-tank-59-a-gun-mp039", + "name": "Tiger Tank 59 Ⅰ A-Gun MP039", + "url": "/v1/games/tiger-tank-59-a-gun-mp039" + }, + { + "slug": "tiger-tank-59-a-gun-mp040", + "name": "Tiger Tank 59 Ⅰ A-Gun MP040", + "url": "/v1/games/tiger-tank-59-a-gun-mp040" + }, + { + "slug": "tiger-tank-59-a-gun-mp041", + "name": "Tiger Tank 59 Ⅰ A-Gun MP041", + "url": "/v1/games/tiger-tank-59-a-gun-mp041" + }, + { + "slug": "tiger-tank-59-a-gun-mp042", + "name": "Tiger Tank 59 Ⅰ A-Gun MP042", + "url": "/v1/games/tiger-tank-59-a-gun-mp042" + }, + { + "slug": "tiger-tank-59-a-gun-mp043", + "name": "Tiger Tank 59 Ⅰ A-Gun MP043", + "url": "/v1/games/tiger-tank-59-a-gun-mp043" + }, + { + "slug": "tiger-tank-59-a-gun-mp044", + "name": "Tiger Tank 59 Ⅰ A-Gun MP044", + "url": "/v1/games/tiger-tank-59-a-gun-mp044" + }, + { + "slug": "tiger-tank-59-a-gun-mp045", + "name": "Tiger Tank 59 Ⅰ A-Gun MP045", + "url": "/v1/games/tiger-tank-59-a-gun-mp045" + }, + { + "slug": "tiger-tank-59-a-gun-mp046", + "name": "Tiger Tank 59 Ⅰ A-Gun MP046", + "url": "/v1/games/tiger-tank-59-a-gun-mp046" + }, + { + "slug": "tiger-tank-59-a-gun-mp047", + "name": "Tiger Tank 59 Ⅰ A-Gun MP047", + "url": "/v1/games/tiger-tank-59-a-gun-mp047" + }, + { + "slug": "tiger-tank-59-a-gun-mp048", + "name": "Tiger Tank 59 Ⅰ A-Gun MP048", + "url": "/v1/games/tiger-tank-59-a-gun-mp048" + }, + { + "slug": "tiger-tank-59-a-gun-mp049", + "name": "Tiger Tank 59 Ⅰ A-Gun MP049", + "url": "/v1/games/tiger-tank-59-a-gun-mp049" + }, + { + "slug": "tiger-tank-59-a-gun-mp050", + "name": "Tiger Tank 59 Ⅰ A-Gun MP050", + "url": "/v1/games/tiger-tank-59-a-gun-mp050" + }, + { + "slug": "tiger-tank-59-a-gun-mp051", + "name": "Tiger Tank 59 Ⅰ A-Gun MP051", + "url": "/v1/games/tiger-tank-59-a-gun-mp051" + }, + { + "slug": "tiger-tank-59-a-gun-mp052", + "name": "Tiger Tank 59 Ⅰ A-Gun MP052", + "url": "/v1/games/tiger-tank-59-a-gun-mp052" + }, + { + "slug": "tiger-tank-59-a-gun-mp053", + "name": "Tiger Tank 59 Ⅰ A-Gun MP053", + "url": "/v1/games/tiger-tank-59-a-gun-mp053" + }, + { + "slug": "tiger-tank-59-a-gun-mp054", + "name": "Tiger Tank 59 Ⅰ A-Gun MP054", + "url": "/v1/games/tiger-tank-59-a-gun-mp054" + }, + { + "slug": "tiger-tank-59-a-gun-mp055", + "name": "Tiger Tank 59 Ⅰ A-Gun MP055", + "url": "/v1/games/tiger-tank-59-a-gun-mp055" + }, + { + "slug": "tiger-tank-59-a-gun-mp056", + "name": "Tiger Tank 59 Ⅰ A-Gun MP056", + "url": "/v1/games/tiger-tank-59-a-gun-mp056" + }, + { + "slug": "tiger-tank-59-a-gun-mp057", + "name": "Tiger Tank 59 Ⅰ A-Gun MP057", + "url": "/v1/games/tiger-tank-59-a-gun-mp057" + }, + { + "slug": "tiger-tank-59-a-gun-mp058", + "name": "Tiger Tank 59 Ⅰ A-Gun MP058", + "url": "/v1/games/tiger-tank-59-a-gun-mp058" + }, + { + "slug": "tiger-tank-59-a-gun-mp059", + "name": "Tiger Tank 59 Ⅰ A-Gun MP059", + "url": "/v1/games/tiger-tank-59-a-gun-mp059" + }, + { + "slug": "tiger-tank-59-a-gun-mp060", + "name": "Tiger Tank 59 Ⅰ A-Gun MP060", + "url": "/v1/games/tiger-tank-59-a-gun-mp060" + }, + { + "slug": "tiger-tank-59-a-gun-mp061", + "name": "Tiger Tank 59 Ⅰ A-Gun MP061", + "url": "/v1/games/tiger-tank-59-a-gun-mp061" + }, + { + "slug": "tiger-tank-59-a-gun-mp062", + "name": "Tiger Tank 59 Ⅰ A-Gun MP062", + "url": "/v1/games/tiger-tank-59-a-gun-mp062" + }, + { + "slug": "tiger-tank-59-a-gun-mp063", + "name": "Tiger Tank 59 Ⅰ A-Gun MP063", + "url": "/v1/games/tiger-tank-59-a-gun-mp063" + }, + { + "slug": "tiger-tank-59-a-gun-mp064", + "name": "Tiger Tank 59 Ⅰ A-Gun MP064", + "url": "/v1/games/tiger-tank-59-a-gun-mp064" + }, + { + "slug": "tiger-tank-59-a-gun-mp065", + "name": "Tiger Tank 59 Ⅰ A-Gun MP065", + "url": "/v1/games/tiger-tank-59-a-gun-mp065" + }, + { + "slug": "tiger-tank-59-a-gun-mp066", + "name": "Tiger Tank 59 Ⅰ A-Gun MP066", + "url": "/v1/games/tiger-tank-59-a-gun-mp066" + }, + { + "slug": "tiger-tank-59-a-gun-mp067", + "name": "Tiger Tank 59 Ⅰ A-Gun MP067", + "url": "/v1/games/tiger-tank-59-a-gun-mp067" + }, + { + "slug": "tiger-tank-59-a-gun-mp068", + "name": "Tiger Tank 59 Ⅰ A-Gun MP068", + "url": "/v1/games/tiger-tank-59-a-gun-mp068" + }, + { + "slug": "tiger-tank-59-a-gun-mp069", + "name": "Tiger Tank 59 Ⅰ A-Gun MP069", + "url": "/v1/games/tiger-tank-59-a-gun-mp069" + }, + { + "slug": "tiger-tank-59-a-gun-mp070", + "name": "Tiger Tank 59 Ⅰ A-Gun MP070", + "url": "/v1/games/tiger-tank-59-a-gun-mp070" + }, + { + "slug": "tiger-tank-59-a-gun-mp071", + "name": "Tiger Tank 59 Ⅰ A-Gun MP071", + "url": "/v1/games/tiger-tank-59-a-gun-mp071" + }, + { + "slug": "tiger-tank-59-a-gun-mp072", + "name": "Tiger Tank 59 Ⅰ A-Gun MP072", + "url": "/v1/games/tiger-tank-59-a-gun-mp072" + }, + { + "slug": "tiger-tank-59-a-gun-mp073", + "name": "Tiger Tank 59 Ⅰ A-Gun MP073", + "url": "/v1/games/tiger-tank-59-a-gun-mp073" + }, + { + "slug": "tiger-tank-59-a-gun-mp074", + "name": "Tiger Tank 59 Ⅰ A-Gun MP074", + "url": "/v1/games/tiger-tank-59-a-gun-mp074" + }, + { + "slug": "tiger-tank-59-a-gun-mp075", + "name": "Tiger Tank 59 Ⅰ A-Gun MP075", + "url": "/v1/games/tiger-tank-59-a-gun-mp075" + }, + { + "slug": "tiger-tank-59-a-gun-mp076", + "name": "Tiger Tank 59 Ⅰ A-Gun MP076", + "url": "/v1/games/tiger-tank-59-a-gun-mp076" + }, + { + "slug": "tiger-tank-59-a-gun-mp077", + "name": "Tiger Tank 59 Ⅰ A-Gun MP077", + "url": "/v1/games/tiger-tank-59-a-gun-mp077" + }, + { + "slug": "tiger-tank-59-a-gun-mp078", + "name": "Tiger Tank 59 Ⅰ A-Gun MP078", + "url": "/v1/games/tiger-tank-59-a-gun-mp078" + }, + { + "slug": "tiger-tank-59-a-gun-mp079", + "name": "Tiger Tank 59 Ⅰ A-Gun MP079", + "url": "/v1/games/tiger-tank-59-a-gun-mp079" + }, + { + "slug": "tiger-tank-59-a-gun-mp080", + "name": "Tiger Tank 59 Ⅰ A-Gun MP080", + "url": "/v1/games/tiger-tank-59-a-gun-mp080" + }, + { + "slug": "tiger-tank-59-a-gun-mp081", + "name": "Tiger Tank 59 Ⅰ A-Gun MP081", + "url": "/v1/games/tiger-tank-59-a-gun-mp081" + }, + { + "slug": "tiger-tank-59-a-gun-mp082", + "name": "Tiger Tank 59 Ⅰ A-Gun MP082", + "url": "/v1/games/tiger-tank-59-a-gun-mp082" + }, + { + "slug": "tiger-tank-59-a-gun-mp083", + "name": "Tiger Tank 59 Ⅰ A-Gun MP083", + "url": "/v1/games/tiger-tank-59-a-gun-mp083" + }, + { + "slug": "tiger-tank-59-a-gun-mp084", + "name": "Tiger Tank 59 Ⅰ A-Gun MP084", + "url": "/v1/games/tiger-tank-59-a-gun-mp084" + }, + { + "slug": "tiger-tank-59-a-gun-mp085", + "name": "Tiger Tank 59 Ⅰ A-Gun MP085", + "url": "/v1/games/tiger-tank-59-a-gun-mp085" + }, + { + "slug": "tiger-tank-59-a-gun-mp086", + "name": "Tiger Tank 59 Ⅰ A-Gun MP086", + "url": "/v1/games/tiger-tank-59-a-gun-mp086" + }, + { + "slug": "tiger-tank-59-a-gun-mp087", + "name": "Tiger Tank 59 Ⅰ A-Gun MP087", + "url": "/v1/games/tiger-tank-59-a-gun-mp087" + }, + { + "slug": "tiger-tank-59-a-gun-mp088", + "name": "Tiger Tank 59 Ⅰ A-Gun MP088", + "url": "/v1/games/tiger-tank-59-a-gun-mp088" + }, + { + "slug": "tiger-tank-59-a-gun-mp089", + "name": "Tiger Tank 59 Ⅰ A-Gun MP089", + "url": "/v1/games/tiger-tank-59-a-gun-mp089" + }, + { + "slug": "tiger-tank-59-a-gun-mp090", + "name": "Tiger Tank 59 Ⅰ A-Gun MP090", + "url": "/v1/games/tiger-tank-59-a-gun-mp090" + }, + { + "slug": "tiger-tank-59-a-gun-mp091", + "name": "Tiger Tank 59 Ⅰ A-Gun MP091", + "url": "/v1/games/tiger-tank-59-a-gun-mp091" + }, + { + "slug": "tiger-tank-59-a-gun-mp092", + "name": "Tiger Tank 59 Ⅰ A-Gun MP092", + "url": "/v1/games/tiger-tank-59-a-gun-mp092" + }, + { + "slug": "tiger-tank-59-a-gun-mp093", + "name": "Tiger Tank 59 Ⅰ A-Gun MP093", + "url": "/v1/games/tiger-tank-59-a-gun-mp093" + }, + { + "slug": "tiger-tank-59-a-gun-mp094", + "name": "Tiger Tank 59 Ⅰ A-Gun MP094", + "url": "/v1/games/tiger-tank-59-a-gun-mp094" + }, + { + "slug": "tiger-tank-59-a-gun-mp095", + "name": "Tiger Tank 59 Ⅰ A-Gun MP095", + "url": "/v1/games/tiger-tank-59-a-gun-mp095" + }, + { + "slug": "tiger-tank-59-a-gun-mp096", + "name": "Tiger Tank 59 Ⅰ A-Gun MP096", + "url": "/v1/games/tiger-tank-59-a-gun-mp096" + }, + { + "slug": "tiger-tank-59-a-gun-mp097", + "name": "Tiger Tank 59 Ⅰ A-Gun MP097", + "url": "/v1/games/tiger-tank-59-a-gun-mp097" + }, + { + "slug": "tiger-tank-59-a-gun-mp098", + "name": "Tiger Tank 59 Ⅰ A-Gun MP098", + "url": "/v1/games/tiger-tank-59-a-gun-mp098" + }, + { + "slug": "tiger-tank-59-a-gun-mp099", + "name": "Tiger Tank 59 Ⅰ A-Gun MP099", + "url": "/v1/games/tiger-tank-59-a-gun-mp099" + }, + { + "slug": "tiger-tank-59-a-gun-mp100", + "name": "Tiger Tank 59 Ⅰ A-Gun MP100", + "url": "/v1/games/tiger-tank-59-a-gun-mp100" + }, { "slug": "tiger-tank-59-air-strike", "name": "Tiger Tank 59 Ⅰ Air Strike", "url": "/v1/games/tiger-tank-59-air-strike" }, + { + "slug": "tiger-tank-59-air-strike-mp001", + "name": "Tiger Tank 59 Ⅰ Air Strike MP001", + "url": "/v1/games/tiger-tank-59-air-strike-mp001" + }, + { + "slug": "tiger-tank-59-air-strike-mp002", + "name": "Tiger Tank 59 Ⅰ Air Strike MP002", + "url": "/v1/games/tiger-tank-59-air-strike-mp002" + }, + { + "slug": "tiger-tank-59-air-strike-mp003", + "name": "Tiger Tank 59 Ⅰ Air Strike MP003", + "url": "/v1/games/tiger-tank-59-air-strike-mp003" + }, + { + "slug": "tiger-tank-59-air-strike-mp004", + "name": "Tiger Tank 59 Ⅰ Air Strike MP004", + "url": "/v1/games/tiger-tank-59-air-strike-mp004" + }, + { + "slug": "tiger-tank-59-air-strike-mp005", + "name": "Tiger Tank 59 Ⅰ Air Strike MP005", + "url": "/v1/games/tiger-tank-59-air-strike-mp005" + }, + { + "slug": "tiger-tank-59-air-strike-mp006", + "name": "Tiger Tank 59 Ⅰ Air Strike MP006", + "url": "/v1/games/tiger-tank-59-air-strike-mp006" + }, + { + "slug": "tiger-tank-59-air-strike-mp007", + "name": "Tiger Tank 59 Ⅰ Air Strike MP007", + "url": "/v1/games/tiger-tank-59-air-strike-mp007" + }, + { + "slug": "tiger-tank-59-air-strike-mp008", + "name": "Tiger Tank 59 Ⅰ Air Strike MP008", + "url": "/v1/games/tiger-tank-59-air-strike-mp008" + }, + { + "slug": "tiger-tank-59-air-strike-mp009", + "name": "Tiger Tank 59 Ⅰ Air Strike MP009", + "url": "/v1/games/tiger-tank-59-air-strike-mp009" + }, + { + "slug": "tiger-tank-59-air-strike-mp010", + "name": "Tiger Tank 59 Ⅰ Air Strike MP010", + "url": "/v1/games/tiger-tank-59-air-strike-mp010" + }, + { + "slug": "tiger-tank-59-air-strike-mp011", + "name": "Tiger Tank 59 Ⅰ Air Strike MP011", + "url": "/v1/games/tiger-tank-59-air-strike-mp011" + }, + { + "slug": "tiger-tank-59-air-strike-mp012", + "name": "Tiger Tank 59 Ⅰ Air Strike MP012", + "url": "/v1/games/tiger-tank-59-air-strike-mp012" + }, + { + "slug": "tiger-tank-59-air-strike-mp013", + "name": "Tiger Tank 59 Ⅰ Air Strike MP013", + "url": "/v1/games/tiger-tank-59-air-strike-mp013" + }, + { + "slug": "tiger-tank-59-air-strike-mp014", + "name": "Tiger Tank 59 Ⅰ Air Strike MP014", + "url": "/v1/games/tiger-tank-59-air-strike-mp014" + }, + { + "slug": "tiger-tank-59-air-strike-mp015", + "name": "Tiger Tank 59 Ⅰ Air Strike MP015", + "url": "/v1/games/tiger-tank-59-air-strike-mp015" + }, + { + "slug": "tiger-tank-59-air-strike-mp016", + "name": "Tiger Tank 59 Ⅰ Air Strike MP016", + "url": "/v1/games/tiger-tank-59-air-strike-mp016" + }, + { + "slug": "tiger-tank-59-air-strike-mp017", + "name": "Tiger Tank 59 Ⅰ Air Strike MP017", + "url": "/v1/games/tiger-tank-59-air-strike-mp017" + }, + { + "slug": "tiger-tank-59-air-strike-mp018", + "name": "Tiger Tank 59 Ⅰ Air Strike MP018", + "url": "/v1/games/tiger-tank-59-air-strike-mp018" + }, + { + "slug": "tiger-tank-59-air-strike-mp019", + "name": "Tiger Tank 59 Ⅰ Air Strike MP019", + "url": "/v1/games/tiger-tank-59-air-strike-mp019" + }, + { + "slug": "tiger-tank-59-air-strike-mp020", + "name": "Tiger Tank 59 Ⅰ Air Strike MP020", + "url": "/v1/games/tiger-tank-59-air-strike-mp020" + }, + { + "slug": "tiger-tank-59-air-strike-mp021", + "name": "Tiger Tank 59 Ⅰ Air Strike MP021", + "url": "/v1/games/tiger-tank-59-air-strike-mp021" + }, + { + "slug": "tiger-tank-59-air-strike-mp022", + "name": "Tiger Tank 59 Ⅰ Air Strike MP022", + "url": "/v1/games/tiger-tank-59-air-strike-mp022" + }, + { + "slug": "tiger-tank-59-air-strike-mp023", + "name": "Tiger Tank 59 Ⅰ Air Strike MP023", + "url": "/v1/games/tiger-tank-59-air-strike-mp023" + }, + { + "slug": "tiger-tank-59-air-strike-mp024", + "name": "Tiger Tank 59 Ⅰ Air Strike MP024", + "url": "/v1/games/tiger-tank-59-air-strike-mp024" + }, + { + "slug": "tiger-tank-59-air-strike-mp025", + "name": "Tiger Tank 59 Ⅰ Air Strike MP025", + "url": "/v1/games/tiger-tank-59-air-strike-mp025" + }, + { + "slug": "tiger-tank-59-air-strike-mp026", + "name": "Tiger Tank 59 Ⅰ Air Strike MP026", + "url": "/v1/games/tiger-tank-59-air-strike-mp026" + }, + { + "slug": "tiger-tank-59-air-strike-mp027", + "name": "Tiger Tank 59 Ⅰ Air Strike MP027", + "url": "/v1/games/tiger-tank-59-air-strike-mp027" + }, + { + "slug": "tiger-tank-59-air-strike-mp028", + "name": "Tiger Tank 59 Ⅰ Air Strike MP028", + "url": "/v1/games/tiger-tank-59-air-strike-mp028" + }, + { + "slug": "tiger-tank-59-air-strike-mp029", + "name": "Tiger Tank 59 Ⅰ Air Strike MP029", + "url": "/v1/games/tiger-tank-59-air-strike-mp029" + }, + { + "slug": "tiger-tank-59-air-strike-mp030", + "name": "Tiger Tank 59 Ⅰ Air Strike MP030", + "url": "/v1/games/tiger-tank-59-air-strike-mp030" + }, + { + "slug": "tiger-tank-59-air-strike-mp031", + "name": "Tiger Tank 59 Ⅰ Air Strike MP031", + "url": "/v1/games/tiger-tank-59-air-strike-mp031" + }, + { + "slug": "tiger-tank-59-air-strike-mp032", + "name": "Tiger Tank 59 Ⅰ Air Strike MP032", + "url": "/v1/games/tiger-tank-59-air-strike-mp032" + }, + { + "slug": "tiger-tank-59-air-strike-mp033", + "name": "Tiger Tank 59 Ⅰ Air Strike MP033", + "url": "/v1/games/tiger-tank-59-air-strike-mp033" + }, + { + "slug": "tiger-tank-59-air-strike-mp034", + "name": "Tiger Tank 59 Ⅰ Air Strike MP034", + "url": "/v1/games/tiger-tank-59-air-strike-mp034" + }, + { + "slug": "tiger-tank-59-air-strike-mp035", + "name": "Tiger Tank 59 Ⅰ Air Strike MP035", + "url": "/v1/games/tiger-tank-59-air-strike-mp035" + }, + { + "slug": "tiger-tank-59-air-strike-mp036", + "name": "Tiger Tank 59 Ⅰ Air Strike MP036", + "url": "/v1/games/tiger-tank-59-air-strike-mp036" + }, + { + "slug": "tiger-tank-59-air-strike-mp037", + "name": "Tiger Tank 59 Ⅰ Air Strike MP037", + "url": "/v1/games/tiger-tank-59-air-strike-mp037" + }, + { + "slug": "tiger-tank-59-air-strike-mp038", + "name": "Tiger Tank 59 Ⅰ Air Strike MP038", + "url": "/v1/games/tiger-tank-59-air-strike-mp038" + }, + { + "slug": "tiger-tank-59-air-strike-mp039", + "name": "Tiger Tank 59 Ⅰ Air Strike MP039", + "url": "/v1/games/tiger-tank-59-air-strike-mp039" + }, + { + "slug": "tiger-tank-59-air-strike-mp040", + "name": "Tiger Tank 59 Ⅰ Air Strike MP040", + "url": "/v1/games/tiger-tank-59-air-strike-mp040" + }, + { + "slug": "tiger-tank-59-air-strike-mp041", + "name": "Tiger Tank 59 Ⅰ Air Strike MP041", + "url": "/v1/games/tiger-tank-59-air-strike-mp041" + }, + { + "slug": "tiger-tank-59-air-strike-mp042", + "name": "Tiger Tank 59 Ⅰ Air Strike MP042", + "url": "/v1/games/tiger-tank-59-air-strike-mp042" + }, + { + "slug": "tiger-tank-59-air-strike-mp043", + "name": "Tiger Tank 59 Ⅰ Air Strike MP043", + "url": "/v1/games/tiger-tank-59-air-strike-mp043" + }, + { + "slug": "tiger-tank-59-air-strike-mp044", + "name": "Tiger Tank 59 Ⅰ Air Strike MP044", + "url": "/v1/games/tiger-tank-59-air-strike-mp044" + }, + { + "slug": "tiger-tank-59-air-strike-mp045", + "name": "Tiger Tank 59 Ⅰ Air Strike MP045", + "url": "/v1/games/tiger-tank-59-air-strike-mp045" + }, + { + "slug": "tiger-tank-59-air-strike-mp046", + "name": "Tiger Tank 59 Ⅰ Air Strike MP046", + "url": "/v1/games/tiger-tank-59-air-strike-mp046" + }, + { + "slug": "tiger-tank-59-air-strike-mp047", + "name": "Tiger Tank 59 Ⅰ Air Strike MP047", + "url": "/v1/games/tiger-tank-59-air-strike-mp047" + }, + { + "slug": "tiger-tank-59-air-strike-mp048", + "name": "Tiger Tank 59 Ⅰ Air Strike MP048", + "url": "/v1/games/tiger-tank-59-air-strike-mp048" + }, + { + "slug": "tiger-tank-59-air-strike-mp049", + "name": "Tiger Tank 59 Ⅰ Air Strike MP049", + "url": "/v1/games/tiger-tank-59-air-strike-mp049" + }, + { + "slug": "tiger-tank-59-air-strike-mp050", + "name": "Tiger Tank 59 Ⅰ Air Strike MP050", + "url": "/v1/games/tiger-tank-59-air-strike-mp050" + }, + { + "slug": "tiger-tank-59-air-strike-mp051", + "name": "Tiger Tank 59 Ⅰ Air Strike MP051", + "url": "/v1/games/tiger-tank-59-air-strike-mp051" + }, + { + "slug": "tiger-tank-59-air-strike-mp052", + "name": "Tiger Tank 59 Ⅰ Air Strike MP052", + "url": "/v1/games/tiger-tank-59-air-strike-mp052" + }, + { + "slug": "tiger-tank-59-air-strike-mp053", + "name": "Tiger Tank 59 Ⅰ Air Strike MP053", + "url": "/v1/games/tiger-tank-59-air-strike-mp053" + }, + { + "slug": "tiger-tank-59-air-strike-mp054", + "name": "Tiger Tank 59 Ⅰ Air Strike MP054", + "url": "/v1/games/tiger-tank-59-air-strike-mp054" + }, + { + "slug": "tiger-tank-59-air-strike-mp055", + "name": "Tiger Tank 59 Ⅰ Air Strike MP055", + "url": "/v1/games/tiger-tank-59-air-strike-mp055" + }, + { + "slug": "tiger-tank-59-air-strike-mp056", + "name": "Tiger Tank 59 Ⅰ Air Strike MP056", + "url": "/v1/games/tiger-tank-59-air-strike-mp056" + }, + { + "slug": "tiger-tank-59-air-strike-mp057", + "name": "Tiger Tank 59 Ⅰ Air Strike MP057", + "url": "/v1/games/tiger-tank-59-air-strike-mp057" + }, + { + "slug": "tiger-tank-59-air-strike-mp058", + "name": "Tiger Tank 59 Ⅰ Air Strike MP058", + "url": "/v1/games/tiger-tank-59-air-strike-mp058" + }, + { + "slug": "tiger-tank-59-air-strike-mp059", + "name": "Tiger Tank 59 Ⅰ Air Strike MP059", + "url": "/v1/games/tiger-tank-59-air-strike-mp059" + }, + { + "slug": "tiger-tank-59-air-strike-mp060", + "name": "Tiger Tank 59 Ⅰ Air Strike MP060", + "url": "/v1/games/tiger-tank-59-air-strike-mp060" + }, + { + "slug": "tiger-tank-59-air-strike-mp061", + "name": "Tiger Tank 59 Ⅰ Air Strike MP061", + "url": "/v1/games/tiger-tank-59-air-strike-mp061" + }, + { + "slug": "tiger-tank-59-air-strike-mp062", + "name": "Tiger Tank 59 Ⅰ Air Strike MP062", + "url": "/v1/games/tiger-tank-59-air-strike-mp062" + }, + { + "slug": "tiger-tank-59-air-strike-mp063", + "name": "Tiger Tank 59 Ⅰ Air Strike MP063", + "url": "/v1/games/tiger-tank-59-air-strike-mp063" + }, + { + "slug": "tiger-tank-59-air-strike-mp064", + "name": "Tiger Tank 59 Ⅰ Air Strike MP064", + "url": "/v1/games/tiger-tank-59-air-strike-mp064" + }, + { + "slug": "tiger-tank-59-air-strike-mp065", + "name": "Tiger Tank 59 Ⅰ Air Strike MP065", + "url": "/v1/games/tiger-tank-59-air-strike-mp065" + }, + { + "slug": "tiger-tank-59-air-strike-mp066", + "name": "Tiger Tank 59 Ⅰ Air Strike MP066", + "url": "/v1/games/tiger-tank-59-air-strike-mp066" + }, + { + "slug": "tiger-tank-59-air-strike-mp067", + "name": "Tiger Tank 59 Ⅰ Air Strike MP067", + "url": "/v1/games/tiger-tank-59-air-strike-mp067" + }, + { + "slug": "tiger-tank-59-air-strike-mp068", + "name": "Tiger Tank 59 Ⅰ Air Strike MP068", + "url": "/v1/games/tiger-tank-59-air-strike-mp068" + }, + { + "slug": "tiger-tank-59-air-strike-mp069", + "name": "Tiger Tank 59 Ⅰ Air Strike MP069", + "url": "/v1/games/tiger-tank-59-air-strike-mp069" + }, + { + "slug": "tiger-tank-59-air-strike-mp070", + "name": "Tiger Tank 59 Ⅰ Air Strike MP070", + "url": "/v1/games/tiger-tank-59-air-strike-mp070" + }, + { + "slug": "tiger-tank-59-air-strike-mp071", + "name": "Tiger Tank 59 Ⅰ Air Strike MP071", + "url": "/v1/games/tiger-tank-59-air-strike-mp071" + }, + { + "slug": "tiger-tank-59-air-strike-mp072", + "name": "Tiger Tank 59 Ⅰ Air Strike MP072", + "url": "/v1/games/tiger-tank-59-air-strike-mp072" + }, + { + "slug": "tiger-tank-59-air-strike-mp073", + "name": "Tiger Tank 59 Ⅰ Air Strike MP073", + "url": "/v1/games/tiger-tank-59-air-strike-mp073" + }, + { + "slug": "tiger-tank-59-air-strike-mp074", + "name": "Tiger Tank 59 Ⅰ Air Strike MP074", + "url": "/v1/games/tiger-tank-59-air-strike-mp074" + }, + { + "slug": "tiger-tank-59-air-strike-mp075", + "name": "Tiger Tank 59 Ⅰ Air Strike MP075", + "url": "/v1/games/tiger-tank-59-air-strike-mp075" + }, + { + "slug": "tiger-tank-59-air-strike-mp076", + "name": "Tiger Tank 59 Ⅰ Air Strike MP076", + "url": "/v1/games/tiger-tank-59-air-strike-mp076" + }, + { + "slug": "tiger-tank-59-air-strike-mp077", + "name": "Tiger Tank 59 Ⅰ Air Strike MP077", + "url": "/v1/games/tiger-tank-59-air-strike-mp077" + }, + { + "slug": "tiger-tank-59-air-strike-mp078", + "name": "Tiger Tank 59 Ⅰ Air Strike MP078", + "url": "/v1/games/tiger-tank-59-air-strike-mp078" + }, + { + "slug": "tiger-tank-59-air-strike-mp079", + "name": "Tiger Tank 59 Ⅰ Air Strike MP079", + "url": "/v1/games/tiger-tank-59-air-strike-mp079" + }, + { + "slug": "tiger-tank-59-air-strike-mp080", + "name": "Tiger Tank 59 Ⅰ Air Strike MP080", + "url": "/v1/games/tiger-tank-59-air-strike-mp080" + }, + { + "slug": "tiger-tank-59-air-strike-mp081", + "name": "Tiger Tank 59 Ⅰ Air Strike MP081", + "url": "/v1/games/tiger-tank-59-air-strike-mp081" + }, + { + "slug": "tiger-tank-59-air-strike-mp082", + "name": "Tiger Tank 59 Ⅰ Air Strike MP082", + "url": "/v1/games/tiger-tank-59-air-strike-mp082" + }, + { + "slug": "tiger-tank-59-air-strike-mp083", + "name": "Tiger Tank 59 Ⅰ Air Strike MP083", + "url": "/v1/games/tiger-tank-59-air-strike-mp083" + }, + { + "slug": "tiger-tank-59-air-strike-mp084", + "name": "Tiger Tank 59 Ⅰ Air Strike MP084", + "url": "/v1/games/tiger-tank-59-air-strike-mp084" + }, + { + "slug": "tiger-tank-59-air-strike-mp085", + "name": "Tiger Tank 59 Ⅰ Air Strike MP085", + "url": "/v1/games/tiger-tank-59-air-strike-mp085" + }, + { + "slug": "tiger-tank-59-air-strike-mp086", + "name": "Tiger Tank 59 Ⅰ Air Strike MP086", + "url": "/v1/games/tiger-tank-59-air-strike-mp086" + }, + { + "slug": "tiger-tank-59-air-strike-mp087", + "name": "Tiger Tank 59 Ⅰ Air Strike MP087", + "url": "/v1/games/tiger-tank-59-air-strike-mp087" + }, + { + "slug": "tiger-tank-59-air-strike-mp088", + "name": "Tiger Tank 59 Ⅰ Air Strike MP088", + "url": "/v1/games/tiger-tank-59-air-strike-mp088" + }, + { + "slug": "tiger-tank-59-air-strike-mp089", + "name": "Tiger Tank 59 Ⅰ Air Strike MP089", + "url": "/v1/games/tiger-tank-59-air-strike-mp089" + }, + { + "slug": "tiger-tank-59-air-strike-mp090", + "name": "Tiger Tank 59 Ⅰ Air Strike MP090", + "url": "/v1/games/tiger-tank-59-air-strike-mp090" + }, + { + "slug": "tiger-tank-59-air-strike-mp091", + "name": "Tiger Tank 59 Ⅰ Air Strike MP091", + "url": "/v1/games/tiger-tank-59-air-strike-mp091" + }, + { + "slug": "tiger-tank-59-air-strike-mp092", + "name": "Tiger Tank 59 Ⅰ Air Strike MP092", + "url": "/v1/games/tiger-tank-59-air-strike-mp092" + }, + { + "slug": "tiger-tank-59-air-strike-mp093", + "name": "Tiger Tank 59 Ⅰ Air Strike MP093", + "url": "/v1/games/tiger-tank-59-air-strike-mp093" + }, + { + "slug": "tiger-tank-59-air-strike-mp094", + "name": "Tiger Tank 59 Ⅰ Air Strike MP094", + "url": "/v1/games/tiger-tank-59-air-strike-mp094" + }, + { + "slug": "tiger-tank-59-air-strike-mp095", + "name": "Tiger Tank 59 Ⅰ Air Strike MP095", + "url": "/v1/games/tiger-tank-59-air-strike-mp095" + }, + { + "slug": "tiger-tank-59-air-strike-mp096", + "name": "Tiger Tank 59 Ⅰ Air Strike MP096", + "url": "/v1/games/tiger-tank-59-air-strike-mp096" + }, + { + "slug": "tiger-tank-59-air-strike-mp097", + "name": "Tiger Tank 59 Ⅰ Air Strike MP097", + "url": "/v1/games/tiger-tank-59-air-strike-mp097" + }, + { + "slug": "tiger-tank-59-air-strike-mp098", + "name": "Tiger Tank 59 Ⅰ Air Strike MP098", + "url": "/v1/games/tiger-tank-59-air-strike-mp098" + }, + { + "slug": "tiger-tank-59-air-strike-mp099", + "name": "Tiger Tank 59 Ⅰ Air Strike MP099", + "url": "/v1/games/tiger-tank-59-air-strike-mp099" + }, + { + "slug": "tiger-tank-59-air-strike-mp100", + "name": "Tiger Tank 59 Ⅰ Air Strike MP100", + "url": "/v1/games/tiger-tank-59-air-strike-mp100" + }, { "slug": "tiger-tank-59-battleship", "name": "Tiger Tank 59 Ⅰ Battleship", "url": "/v1/games/tiger-tank-59-battleship" }, + { + "slug": "tiger-tank-59-battleship-mp001", + "name": "Tiger Tank 59 Ⅰ Battleship MP001", + "url": "/v1/games/tiger-tank-59-battleship-mp001" + }, + { + "slug": "tiger-tank-59-battleship-mp002", + "name": "Tiger Tank 59 Ⅰ Battleship MP002", + "url": "/v1/games/tiger-tank-59-battleship-mp002" + }, + { + "slug": "tiger-tank-59-battleship-mp003", + "name": "Tiger Tank 59 Ⅰ Battleship MP003", + "url": "/v1/games/tiger-tank-59-battleship-mp003" + }, + { + "slug": "tiger-tank-59-battleship-mp004", + "name": "Tiger Tank 59 Ⅰ Battleship MP004", + "url": "/v1/games/tiger-tank-59-battleship-mp004" + }, + { + "slug": "tiger-tank-59-battleship-mp005", + "name": "Tiger Tank 59 Ⅰ Battleship MP005", + "url": "/v1/games/tiger-tank-59-battleship-mp005" + }, + { + "slug": "tiger-tank-59-battleship-mp006", + "name": "Tiger Tank 59 Ⅰ Battleship MP006", + "url": "/v1/games/tiger-tank-59-battleship-mp006" + }, + { + "slug": "tiger-tank-59-battleship-mp007", + "name": "Tiger Tank 59 Ⅰ Battleship MP007", + "url": "/v1/games/tiger-tank-59-battleship-mp007" + }, + { + "slug": "tiger-tank-59-battleship-mp008", + "name": "Tiger Tank 59 Ⅰ Battleship MP008", + "url": "/v1/games/tiger-tank-59-battleship-mp008" + }, + { + "slug": "tiger-tank-59-battleship-mp009", + "name": "Tiger Tank 59 Ⅰ Battleship MP009", + "url": "/v1/games/tiger-tank-59-battleship-mp009" + }, + { + "slug": "tiger-tank-59-battleship-mp010", + "name": "Tiger Tank 59 Ⅰ Battleship MP010", + "url": "/v1/games/tiger-tank-59-battleship-mp010" + }, + { + "slug": "tiger-tank-59-battleship-mp011", + "name": "Tiger Tank 59 Ⅰ Battleship MP011", + "url": "/v1/games/tiger-tank-59-battleship-mp011" + }, + { + "slug": "tiger-tank-59-battleship-mp012", + "name": "Tiger Tank 59 Ⅰ Battleship MP012", + "url": "/v1/games/tiger-tank-59-battleship-mp012" + }, + { + "slug": "tiger-tank-59-battleship-mp013", + "name": "Tiger Tank 59 Ⅰ Battleship MP013", + "url": "/v1/games/tiger-tank-59-battleship-mp013" + }, + { + "slug": "tiger-tank-59-battleship-mp014", + "name": "Tiger Tank 59 Ⅰ Battleship MP014", + "url": "/v1/games/tiger-tank-59-battleship-mp014" + }, + { + "slug": "tiger-tank-59-battleship-mp015", + "name": "Tiger Tank 59 Ⅰ Battleship MP015", + "url": "/v1/games/tiger-tank-59-battleship-mp015" + }, + { + "slug": "tiger-tank-59-battleship-mp016", + "name": "Tiger Tank 59 Ⅰ Battleship MP016", + "url": "/v1/games/tiger-tank-59-battleship-mp016" + }, + { + "slug": "tiger-tank-59-battleship-mp017", + "name": "Tiger Tank 59 Ⅰ Battleship MP017", + "url": "/v1/games/tiger-tank-59-battleship-mp017" + }, + { + "slug": "tiger-tank-59-battleship-mp018", + "name": "Tiger Tank 59 Ⅰ Battleship MP018", + "url": "/v1/games/tiger-tank-59-battleship-mp018" + }, + { + "slug": "tiger-tank-59-battleship-mp019", + "name": "Tiger Tank 59 Ⅰ Battleship MP019", + "url": "/v1/games/tiger-tank-59-battleship-mp019" + }, + { + "slug": "tiger-tank-59-battleship-mp020", + "name": "Tiger Tank 59 Ⅰ Battleship MP020", + "url": "/v1/games/tiger-tank-59-battleship-mp020" + }, + { + "slug": "tiger-tank-59-battleship-mp021", + "name": "Tiger Tank 59 Ⅰ Battleship MP021", + "url": "/v1/games/tiger-tank-59-battleship-mp021" + }, + { + "slug": "tiger-tank-59-battleship-mp022", + "name": "Tiger Tank 59 Ⅰ Battleship MP022", + "url": "/v1/games/tiger-tank-59-battleship-mp022" + }, + { + "slug": "tiger-tank-59-battleship-mp023", + "name": "Tiger Tank 59 Ⅰ Battleship MP023", + "url": "/v1/games/tiger-tank-59-battleship-mp023" + }, + { + "slug": "tiger-tank-59-battleship-mp024", + "name": "Tiger Tank 59 Ⅰ Battleship MP024", + "url": "/v1/games/tiger-tank-59-battleship-mp024" + }, + { + "slug": "tiger-tank-59-battleship-mp025", + "name": "Tiger Tank 59 Ⅰ Battleship MP025", + "url": "/v1/games/tiger-tank-59-battleship-mp025" + }, + { + "slug": "tiger-tank-59-battleship-mp026", + "name": "Tiger Tank 59 Ⅰ Battleship MP026", + "url": "/v1/games/tiger-tank-59-battleship-mp026" + }, + { + "slug": "tiger-tank-59-battleship-mp027", + "name": "Tiger Tank 59 Ⅰ Battleship MP027", + "url": "/v1/games/tiger-tank-59-battleship-mp027" + }, + { + "slug": "tiger-tank-59-battleship-mp028", + "name": "Tiger Tank 59 Ⅰ Battleship MP028", + "url": "/v1/games/tiger-tank-59-battleship-mp028" + }, + { + "slug": "tiger-tank-59-battleship-mp029", + "name": "Tiger Tank 59 Ⅰ Battleship MP029", + "url": "/v1/games/tiger-tank-59-battleship-mp029" + }, + { + "slug": "tiger-tank-59-battleship-mp030", + "name": "Tiger Tank 59 Ⅰ Battleship MP030", + "url": "/v1/games/tiger-tank-59-battleship-mp030" + }, + { + "slug": "tiger-tank-59-battleship-mp031", + "name": "Tiger Tank 59 Ⅰ Battleship MP031", + "url": "/v1/games/tiger-tank-59-battleship-mp031" + }, + { + "slug": "tiger-tank-59-battleship-mp032", + "name": "Tiger Tank 59 Ⅰ Battleship MP032", + "url": "/v1/games/tiger-tank-59-battleship-mp032" + }, + { + "slug": "tiger-tank-59-battleship-mp033", + "name": "Tiger Tank 59 Ⅰ Battleship MP033", + "url": "/v1/games/tiger-tank-59-battleship-mp033" + }, + { + "slug": "tiger-tank-59-battleship-mp034", + "name": "Tiger Tank 59 Ⅰ Battleship MP034", + "url": "/v1/games/tiger-tank-59-battleship-mp034" + }, + { + "slug": "tiger-tank-59-battleship-mp035", + "name": "Tiger Tank 59 Ⅰ Battleship MP035", + "url": "/v1/games/tiger-tank-59-battleship-mp035" + }, + { + "slug": "tiger-tank-59-battleship-mp036", + "name": "Tiger Tank 59 Ⅰ Battleship MP036", + "url": "/v1/games/tiger-tank-59-battleship-mp036" + }, + { + "slug": "tiger-tank-59-battleship-mp037", + "name": "Tiger Tank 59 Ⅰ Battleship MP037", + "url": "/v1/games/tiger-tank-59-battleship-mp037" + }, + { + "slug": "tiger-tank-59-battleship-mp038", + "name": "Tiger Tank 59 Ⅰ Battleship MP038", + "url": "/v1/games/tiger-tank-59-battleship-mp038" + }, + { + "slug": "tiger-tank-59-battleship-mp039", + "name": "Tiger Tank 59 Ⅰ Battleship MP039", + "url": "/v1/games/tiger-tank-59-battleship-mp039" + }, + { + "slug": "tiger-tank-59-battleship-mp040", + "name": "Tiger Tank 59 Ⅰ Battleship MP040", + "url": "/v1/games/tiger-tank-59-battleship-mp040" + }, + { + "slug": "tiger-tank-59-battleship-mp041", + "name": "Tiger Tank 59 Ⅰ Battleship MP041", + "url": "/v1/games/tiger-tank-59-battleship-mp041" + }, + { + "slug": "tiger-tank-59-battleship-mp042", + "name": "Tiger Tank 59 Ⅰ Battleship MP042", + "url": "/v1/games/tiger-tank-59-battleship-mp042" + }, + { + "slug": "tiger-tank-59-battleship-mp043", + "name": "Tiger Tank 59 Ⅰ Battleship MP043", + "url": "/v1/games/tiger-tank-59-battleship-mp043" + }, + { + "slug": "tiger-tank-59-battleship-mp044", + "name": "Tiger Tank 59 Ⅰ Battleship MP044", + "url": "/v1/games/tiger-tank-59-battleship-mp044" + }, + { + "slug": "tiger-tank-59-battleship-mp045", + "name": "Tiger Tank 59 Ⅰ Battleship MP045", + "url": "/v1/games/tiger-tank-59-battleship-mp045" + }, + { + "slug": "tiger-tank-59-battleship-mp046", + "name": "Tiger Tank 59 Ⅰ Battleship MP046", + "url": "/v1/games/tiger-tank-59-battleship-mp046" + }, + { + "slug": "tiger-tank-59-battleship-mp047", + "name": "Tiger Tank 59 Ⅰ Battleship MP047", + "url": "/v1/games/tiger-tank-59-battleship-mp047" + }, + { + "slug": "tiger-tank-59-battleship-mp048", + "name": "Tiger Tank 59 Ⅰ Battleship MP048", + "url": "/v1/games/tiger-tank-59-battleship-mp048" + }, + { + "slug": "tiger-tank-59-battleship-mp049", + "name": "Tiger Tank 59 Ⅰ Battleship MP049", + "url": "/v1/games/tiger-tank-59-battleship-mp049" + }, + { + "slug": "tiger-tank-59-battleship-mp050", + "name": "Tiger Tank 59 Ⅰ Battleship MP050", + "url": "/v1/games/tiger-tank-59-battleship-mp050" + }, + { + "slug": "tiger-tank-59-battleship-mp051", + "name": "Tiger Tank 59 Ⅰ Battleship MP051", + "url": "/v1/games/tiger-tank-59-battleship-mp051" + }, + { + "slug": "tiger-tank-59-battleship-mp052", + "name": "Tiger Tank 59 Ⅰ Battleship MP052", + "url": "/v1/games/tiger-tank-59-battleship-mp052" + }, + { + "slug": "tiger-tank-59-battleship-mp053", + "name": "Tiger Tank 59 Ⅰ Battleship MP053", + "url": "/v1/games/tiger-tank-59-battleship-mp053" + }, + { + "slug": "tiger-tank-59-battleship-mp054", + "name": "Tiger Tank 59 Ⅰ Battleship MP054", + "url": "/v1/games/tiger-tank-59-battleship-mp054" + }, + { + "slug": "tiger-tank-59-battleship-mp055", + "name": "Tiger Tank 59 Ⅰ Battleship MP055", + "url": "/v1/games/tiger-tank-59-battleship-mp055" + }, + { + "slug": "tiger-tank-59-battleship-mp056", + "name": "Tiger Tank 59 Ⅰ Battleship MP056", + "url": "/v1/games/tiger-tank-59-battleship-mp056" + }, + { + "slug": "tiger-tank-59-battleship-mp057", + "name": "Tiger Tank 59 Ⅰ Battleship MP057", + "url": "/v1/games/tiger-tank-59-battleship-mp057" + }, + { + "slug": "tiger-tank-59-battleship-mp058", + "name": "Tiger Tank 59 Ⅰ Battleship MP058", + "url": "/v1/games/tiger-tank-59-battleship-mp058" + }, + { + "slug": "tiger-tank-59-battleship-mp059", + "name": "Tiger Tank 59 Ⅰ Battleship MP059", + "url": "/v1/games/tiger-tank-59-battleship-mp059" + }, + { + "slug": "tiger-tank-59-battleship-mp060", + "name": "Tiger Tank 59 Ⅰ Battleship MP060", + "url": "/v1/games/tiger-tank-59-battleship-mp060" + }, + { + "slug": "tiger-tank-59-battleship-mp061", + "name": "Tiger Tank 59 Ⅰ Battleship MP061", + "url": "/v1/games/tiger-tank-59-battleship-mp061" + }, + { + "slug": "tiger-tank-59-battleship-mp062", + "name": "Tiger Tank 59 Ⅰ Battleship MP062", + "url": "/v1/games/tiger-tank-59-battleship-mp062" + }, + { + "slug": "tiger-tank-59-battleship-mp063", + "name": "Tiger Tank 59 Ⅰ Battleship MP063", + "url": "/v1/games/tiger-tank-59-battleship-mp063" + }, + { + "slug": "tiger-tank-59-battleship-mp064", + "name": "Tiger Tank 59 Ⅰ Battleship MP064", + "url": "/v1/games/tiger-tank-59-battleship-mp064" + }, + { + "slug": "tiger-tank-59-battleship-mp065", + "name": "Tiger Tank 59 Ⅰ Battleship MP065", + "url": "/v1/games/tiger-tank-59-battleship-mp065" + }, + { + "slug": "tiger-tank-59-battleship-mp066", + "name": "Tiger Tank 59 Ⅰ Battleship MP066", + "url": "/v1/games/tiger-tank-59-battleship-mp066" + }, + { + "slug": "tiger-tank-59-battleship-mp067", + "name": "Tiger Tank 59 Ⅰ Battleship MP067", + "url": "/v1/games/tiger-tank-59-battleship-mp067" + }, + { + "slug": "tiger-tank-59-battleship-mp068", + "name": "Tiger Tank 59 Ⅰ Battleship MP068", + "url": "/v1/games/tiger-tank-59-battleship-mp068" + }, + { + "slug": "tiger-tank-59-battleship-mp069", + "name": "Tiger Tank 59 Ⅰ Battleship MP069", + "url": "/v1/games/tiger-tank-59-battleship-mp069" + }, + { + "slug": "tiger-tank-59-battleship-mp070", + "name": "Tiger Tank 59 Ⅰ Battleship MP070", + "url": "/v1/games/tiger-tank-59-battleship-mp070" + }, + { + "slug": "tiger-tank-59-battleship-mp071", + "name": "Tiger Tank 59 Ⅰ Battleship MP071", + "url": "/v1/games/tiger-tank-59-battleship-mp071" + }, + { + "slug": "tiger-tank-59-battleship-mp072", + "name": "Tiger Tank 59 Ⅰ Battleship MP072", + "url": "/v1/games/tiger-tank-59-battleship-mp072" + }, + { + "slug": "tiger-tank-59-battleship-mp073", + "name": "Tiger Tank 59 Ⅰ Battleship MP073", + "url": "/v1/games/tiger-tank-59-battleship-mp073" + }, + { + "slug": "tiger-tank-59-battleship-mp074", + "name": "Tiger Tank 59 Ⅰ Battleship MP074", + "url": "/v1/games/tiger-tank-59-battleship-mp074" + }, + { + "slug": "tiger-tank-59-battleship-mp075", + "name": "Tiger Tank 59 Ⅰ Battleship MP075", + "url": "/v1/games/tiger-tank-59-battleship-mp075" + }, + { + "slug": "tiger-tank-59-battleship-mp076", + "name": "Tiger Tank 59 Ⅰ Battleship MP076", + "url": "/v1/games/tiger-tank-59-battleship-mp076" + }, + { + "slug": "tiger-tank-59-battleship-mp077", + "name": "Tiger Tank 59 Ⅰ Battleship MP077", + "url": "/v1/games/tiger-tank-59-battleship-mp077" + }, + { + "slug": "tiger-tank-59-battleship-mp078", + "name": "Tiger Tank 59 Ⅰ Battleship MP078", + "url": "/v1/games/tiger-tank-59-battleship-mp078" + }, + { + "slug": "tiger-tank-59-battleship-mp079", + "name": "Tiger Tank 59 Ⅰ Battleship MP079", + "url": "/v1/games/tiger-tank-59-battleship-mp079" + }, + { + "slug": "tiger-tank-59-battleship-mp080", + "name": "Tiger Tank 59 Ⅰ Battleship MP080", + "url": "/v1/games/tiger-tank-59-battleship-mp080" + }, + { + "slug": "tiger-tank-59-battleship-mp081", + "name": "Tiger Tank 59 Ⅰ Battleship MP081", + "url": "/v1/games/tiger-tank-59-battleship-mp081" + }, + { + "slug": "tiger-tank-59-battleship-mp082", + "name": "Tiger Tank 59 Ⅰ Battleship MP082", + "url": "/v1/games/tiger-tank-59-battleship-mp082" + }, + { + "slug": "tiger-tank-59-battleship-mp083", + "name": "Tiger Tank 59 Ⅰ Battleship MP083", + "url": "/v1/games/tiger-tank-59-battleship-mp083" + }, + { + "slug": "tiger-tank-59-battleship-mp084", + "name": "Tiger Tank 59 Ⅰ Battleship MP084", + "url": "/v1/games/tiger-tank-59-battleship-mp084" + }, + { + "slug": "tiger-tank-59-battleship-mp085", + "name": "Tiger Tank 59 Ⅰ Battleship MP085", + "url": "/v1/games/tiger-tank-59-battleship-mp085" + }, + { + "slug": "tiger-tank-59-battleship-mp086", + "name": "Tiger Tank 59 Ⅰ Battleship MP086", + "url": "/v1/games/tiger-tank-59-battleship-mp086" + }, + { + "slug": "tiger-tank-59-battleship-mp087", + "name": "Tiger Tank 59 Ⅰ Battleship MP087", + "url": "/v1/games/tiger-tank-59-battleship-mp087" + }, + { + "slug": "tiger-tank-59-battleship-mp088", + "name": "Tiger Tank 59 Ⅰ Battleship MP088", + "url": "/v1/games/tiger-tank-59-battleship-mp088" + }, + { + "slug": "tiger-tank-59-battleship-mp089", + "name": "Tiger Tank 59 Ⅰ Battleship MP089", + "url": "/v1/games/tiger-tank-59-battleship-mp089" + }, + { + "slug": "tiger-tank-59-battleship-mp090", + "name": "Tiger Tank 59 Ⅰ Battleship MP090", + "url": "/v1/games/tiger-tank-59-battleship-mp090" + }, + { + "slug": "tiger-tank-59-battleship-mp091", + "name": "Tiger Tank 59 Ⅰ Battleship MP091", + "url": "/v1/games/tiger-tank-59-battleship-mp091" + }, + { + "slug": "tiger-tank-59-battleship-mp092", + "name": "Tiger Tank 59 Ⅰ Battleship MP092", + "url": "/v1/games/tiger-tank-59-battleship-mp092" + }, + { + "slug": "tiger-tank-59-battleship-mp093", + "name": "Tiger Tank 59 Ⅰ Battleship MP093", + "url": "/v1/games/tiger-tank-59-battleship-mp093" + }, + { + "slug": "tiger-tank-59-battleship-mp094", + "name": "Tiger Tank 59 Ⅰ Battleship MP094", + "url": "/v1/games/tiger-tank-59-battleship-mp094" + }, + { + "slug": "tiger-tank-59-battleship-mp095", + "name": "Tiger Tank 59 Ⅰ Battleship MP095", + "url": "/v1/games/tiger-tank-59-battleship-mp095" + }, + { + "slug": "tiger-tank-59-battleship-mp096", + "name": "Tiger Tank 59 Ⅰ Battleship MP096", + "url": "/v1/games/tiger-tank-59-battleship-mp096" + }, + { + "slug": "tiger-tank-59-battleship-mp097", + "name": "Tiger Tank 59 Ⅰ Battleship MP097", + "url": "/v1/games/tiger-tank-59-battleship-mp097" + }, + { + "slug": "tiger-tank-59-battleship-mp098", + "name": "Tiger Tank 59 Ⅰ Battleship MP098", + "url": "/v1/games/tiger-tank-59-battleship-mp098" + }, + { + "slug": "tiger-tank-59-battleship-mp099", + "name": "Tiger Tank 59 Ⅰ Battleship MP099", + "url": "/v1/games/tiger-tank-59-battleship-mp099" + }, + { + "slug": "tiger-tank-59-battleship-mp100", + "name": "Tiger Tank 59 Ⅰ Battleship MP100", + "url": "/v1/games/tiger-tank-59-battleship-mp100" + }, { "slug": "tiger-tank-59-black-hill-fortress", "name": "Tiger Tank 59 Ⅰ Black Hill Fortress", "url": "/v1/games/tiger-tank-59-black-hill-fortress" }, + { + "slug": "tiger-tank-59-black-hill-fortress-mp001", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP001", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp001" + }, + { + "slug": "tiger-tank-59-black-hill-fortress-mp002", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP002", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp002" + }, + { + "slug": "tiger-tank-59-black-hill-fortress-mp003", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP003", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp003" + }, + { + "slug": "tiger-tank-59-black-hill-fortress-mp004", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP004", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp004" + }, + { + "slug": "tiger-tank-59-black-hill-fortress-mp005", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP005", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp005" + }, + { + "slug": "tiger-tank-59-black-hill-fortress-mp006", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP006", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp006" + }, + { + "slug": "tiger-tank-59-black-hill-fortress-mp007", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP007", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp007" + }, + { + "slug": "tiger-tank-59-black-hill-fortress-mp008", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP008", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp008" + }, + { + "slug": "tiger-tank-59-black-hill-fortress-mp009", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP009", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp009" + }, + { + "slug": "tiger-tank-59-black-hill-fortress-mp010", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP010", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp010" + }, + { + "slug": "tiger-tank-59-black-hill-fortress-mp011", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP011", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp011" + }, + { + "slug": "tiger-tank-59-black-hill-fortress-mp012", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP012", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp012" + }, + { + "slug": "tiger-tank-59-black-hill-fortress-mp013", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP013", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp013" + }, + { + "slug": "tiger-tank-59-black-hill-fortress-mp014", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP014", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp014" + }, + { + "slug": "tiger-tank-59-black-hill-fortress-mp015", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP015", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp015" + }, + { + "slug": "tiger-tank-59-black-hill-fortress-mp016", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP016", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp016" + }, + { + "slug": "tiger-tank-59-black-hill-fortress-mp017", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP017", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp017" + }, + { + "slug": "tiger-tank-59-black-hill-fortress-mp018", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP018", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp018" + }, + { + "slug": "tiger-tank-59-black-hill-fortress-mp019", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP019", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp019" + }, + { + "slug": "tiger-tank-59-black-hill-fortress-mp020", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP020", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp020" + }, + { + "slug": "tiger-tank-59-black-hill-fortress-mp021", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP021", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp021" + }, + { + "slug": "tiger-tank-59-black-hill-fortress-mp022", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP022", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp022" + }, + { + "slug": "tiger-tank-59-black-hill-fortress-mp023", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP023", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp023" + }, + { + "slug": "tiger-tank-59-black-hill-fortress-mp024", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP024", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp024" + }, + { + "slug": "tiger-tank-59-black-hill-fortress-mp025", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP025", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp025" + }, + { + "slug": "tiger-tank-59-black-hill-fortress-mp026", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP026", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp026" + }, + { + "slug": "tiger-tank-59-black-hill-fortress-mp027", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP027", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp027" + }, + { + "slug": "tiger-tank-59-black-hill-fortress-mp028", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP028", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp028" + }, + { + "slug": "tiger-tank-59-black-hill-fortress-mp029", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP029", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp029" + }, + { + "slug": "tiger-tank-59-black-hill-fortress-mp030", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP030", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp030" + }, + { + "slug": "tiger-tank-59-black-hill-fortress-mp031", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP031", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp031" + }, + { + "slug": "tiger-tank-59-black-hill-fortress-mp032", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP032", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp032" + }, + { + "slug": "tiger-tank-59-black-hill-fortress-mp033", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP033", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp033" + }, + { + "slug": "tiger-tank-59-black-hill-fortress-mp034", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP034", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp034" + }, + { + "slug": "tiger-tank-59-black-hill-fortress-mp035", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP035", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp035" + }, + { + "slug": "tiger-tank-59-black-hill-fortress-mp036", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP036", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp036" + }, + { + "slug": "tiger-tank-59-black-hill-fortress-mp037", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP037", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp037" + }, + { + "slug": "tiger-tank-59-black-hill-fortress-mp038", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP038", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp038" + }, + { + "slug": "tiger-tank-59-black-hill-fortress-mp039", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP039", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp039" + }, + { + "slug": "tiger-tank-59-black-hill-fortress-mp040", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP040", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp040" + }, + { + "slug": "tiger-tank-59-black-hill-fortress-mp041", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP041", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp041" + }, + { + "slug": "tiger-tank-59-black-hill-fortress-mp042", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP042", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp042" + }, + { + "slug": "tiger-tank-59-black-hill-fortress-mp043", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP043", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp043" + }, + { + "slug": "tiger-tank-59-black-hill-fortress-mp044", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP044", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp044" + }, + { + "slug": "tiger-tank-59-black-hill-fortress-mp045", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP045", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp045" + }, + { + "slug": "tiger-tank-59-black-hill-fortress-mp046", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP046", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp046" + }, + { + "slug": "tiger-tank-59-black-hill-fortress-mp047", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP047", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp047" + }, + { + "slug": "tiger-tank-59-black-hill-fortress-mp048", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP048", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp048" + }, + { + "slug": "tiger-tank-59-black-hill-fortress-mp049", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP049", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp049" + }, + { + "slug": "tiger-tank-59-black-hill-fortress-mp050", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP050", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp050" + }, + { + "slug": "tiger-tank-59-black-hill-fortress-mp051", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP051", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp051" + }, + { + "slug": "tiger-tank-59-black-hill-fortress-mp052", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP052", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp052" + }, + { + "slug": "tiger-tank-59-black-hill-fortress-mp053", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP053", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp053" + }, + { + "slug": "tiger-tank-59-black-hill-fortress-mp054", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP054", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp054" + }, + { + "slug": "tiger-tank-59-black-hill-fortress-mp055", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP055", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp055" + }, + { + "slug": "tiger-tank-59-black-hill-fortress-mp056", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP056", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp056" + }, + { + "slug": "tiger-tank-59-black-hill-fortress-mp057", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP057", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp057" + }, + { + "slug": "tiger-tank-59-black-hill-fortress-mp058", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP058", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp058" + }, + { + "slug": "tiger-tank-59-black-hill-fortress-mp059", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP059", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp059" + }, + { + "slug": "tiger-tank-59-black-hill-fortress-mp060", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP060", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp060" + }, + { + "slug": "tiger-tank-59-black-hill-fortress-mp061", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP061", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp061" + }, + { + "slug": "tiger-tank-59-black-hill-fortress-mp062", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP062", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp062" + }, + { + "slug": "tiger-tank-59-black-hill-fortress-mp063", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP063", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp063" + }, + { + "slug": "tiger-tank-59-black-hill-fortress-mp064", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP064", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp064" + }, + { + "slug": "tiger-tank-59-black-hill-fortress-mp065", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP065", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp065" + }, + { + "slug": "tiger-tank-59-black-hill-fortress-mp066", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP066", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp066" + }, + { + "slug": "tiger-tank-59-black-hill-fortress-mp067", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP067", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp067" + }, + { + "slug": "tiger-tank-59-black-hill-fortress-mp068", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP068", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp068" + }, + { + "slug": "tiger-tank-59-black-hill-fortress-mp069", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP069", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp069" + }, + { + "slug": "tiger-tank-59-black-hill-fortress-mp070", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP070", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp070" + }, + { + "slug": "tiger-tank-59-black-hill-fortress-mp071", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP071", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp071" + }, + { + "slug": "tiger-tank-59-black-hill-fortress-mp072", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP072", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp072" + }, + { + "slug": "tiger-tank-59-black-hill-fortress-mp073", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP073", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp073" + }, + { + "slug": "tiger-tank-59-black-hill-fortress-mp074", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP074", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp074" + }, + { + "slug": "tiger-tank-59-black-hill-fortress-mp075", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP075", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp075" + }, + { + "slug": "tiger-tank-59-black-hill-fortress-mp076", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP076", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp076" + }, + { + "slug": "tiger-tank-59-black-hill-fortress-mp077", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP077", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp077" + }, + { + "slug": "tiger-tank-59-black-hill-fortress-mp078", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP078", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp078" + }, + { + "slug": "tiger-tank-59-black-hill-fortress-mp079", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP079", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp079" + }, + { + "slug": "tiger-tank-59-black-hill-fortress-mp080", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP080", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp080" + }, + { + "slug": "tiger-tank-59-black-hill-fortress-mp081", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP081", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp081" + }, + { + "slug": "tiger-tank-59-black-hill-fortress-mp082", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP082", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp082" + }, + { + "slug": "tiger-tank-59-black-hill-fortress-mp083", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP083", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp083" + }, + { + "slug": "tiger-tank-59-black-hill-fortress-mp084", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP084", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp084" + }, + { + "slug": "tiger-tank-59-black-hill-fortress-mp085", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP085", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp085" + }, + { + "slug": "tiger-tank-59-black-hill-fortress-mp086", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP086", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp086" + }, + { + "slug": "tiger-tank-59-black-hill-fortress-mp087", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP087", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp087" + }, + { + "slug": "tiger-tank-59-black-hill-fortress-mp088", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP088", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp088" + }, + { + "slug": "tiger-tank-59-black-hill-fortress-mp089", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP089", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp089" + }, + { + "slug": "tiger-tank-59-black-hill-fortress-mp090", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP090", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp090" + }, + { + "slug": "tiger-tank-59-black-hill-fortress-mp091", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP091", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp091" + }, + { + "slug": "tiger-tank-59-black-hill-fortress-mp092", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP092", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp092" + }, + { + "slug": "tiger-tank-59-black-hill-fortress-mp093", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP093", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp093" + }, + { + "slug": "tiger-tank-59-black-hill-fortress-mp094", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP094", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp094" + }, + { + "slug": "tiger-tank-59-black-hill-fortress-mp095", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP095", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp095" + }, + { + "slug": "tiger-tank-59-black-hill-fortress-mp096", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP096", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp096" + }, + { + "slug": "tiger-tank-59-black-hill-fortress-mp097", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP097", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp097" + }, + { + "slug": "tiger-tank-59-black-hill-fortress-mp098", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP098", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp098" + }, + { + "slug": "tiger-tank-59-black-hill-fortress-mp099", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP099", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp099" + }, + { + "slug": "tiger-tank-59-black-hill-fortress-mp100", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP100", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp100" + }, { "slug": "tiger-tank-59-break-the-fog", "name": "Tiger Tank 59 Ⅰ Break The Fog", "url": "/v1/games/tiger-tank-59-break-the-fog" }, + { + "slug": "tiger-tank-59-break-the-fog-mp001", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP001", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp001" + }, + { + "slug": "tiger-tank-59-break-the-fog-mp002", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP002", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp002" + }, + { + "slug": "tiger-tank-59-break-the-fog-mp003", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP003", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp003" + }, + { + "slug": "tiger-tank-59-break-the-fog-mp004", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP004", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp004" + }, + { + "slug": "tiger-tank-59-break-the-fog-mp005", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP005", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp005" + }, + { + "slug": "tiger-tank-59-break-the-fog-mp006", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP006", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp006" + }, + { + "slug": "tiger-tank-59-break-the-fog-mp007", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP007", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp007" + }, + { + "slug": "tiger-tank-59-break-the-fog-mp008", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP008", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp008" + }, + { + "slug": "tiger-tank-59-break-the-fog-mp009", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP009", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp009" + }, + { + "slug": "tiger-tank-59-break-the-fog-mp010", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP010", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp010" + }, + { + "slug": "tiger-tank-59-break-the-fog-mp011", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP011", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp011" + }, + { + "slug": "tiger-tank-59-break-the-fog-mp012", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP012", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp012" + }, + { + "slug": "tiger-tank-59-break-the-fog-mp013", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP013", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp013" + }, + { + "slug": "tiger-tank-59-break-the-fog-mp014", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP014", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp014" + }, + { + "slug": "tiger-tank-59-break-the-fog-mp015", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP015", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp015" + }, + { + "slug": "tiger-tank-59-break-the-fog-mp016", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP016", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp016" + }, + { + "slug": "tiger-tank-59-break-the-fog-mp017", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP017", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp017" + }, + { + "slug": "tiger-tank-59-break-the-fog-mp018", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP018", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp018" + }, + { + "slug": "tiger-tank-59-break-the-fog-mp019", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP019", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp019" + }, + { + "slug": "tiger-tank-59-break-the-fog-mp020", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP020", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp020" + }, + { + "slug": "tiger-tank-59-break-the-fog-mp021", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP021", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp021" + }, + { + "slug": "tiger-tank-59-break-the-fog-mp022", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP022", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp022" + }, + { + "slug": "tiger-tank-59-break-the-fog-mp023", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP023", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp023" + }, + { + "slug": "tiger-tank-59-break-the-fog-mp024", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP024", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp024" + }, + { + "slug": "tiger-tank-59-break-the-fog-mp025", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP025", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp025" + }, + { + "slug": "tiger-tank-59-break-the-fog-mp026", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP026", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp026" + }, + { + "slug": "tiger-tank-59-break-the-fog-mp027", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP027", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp027" + }, + { + "slug": "tiger-tank-59-break-the-fog-mp028", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP028", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp028" + }, + { + "slug": "tiger-tank-59-break-the-fog-mp029", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP029", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp029" + }, + { + "slug": "tiger-tank-59-break-the-fog-mp030", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP030", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp030" + }, + { + "slug": "tiger-tank-59-break-the-fog-mp031", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP031", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp031" + }, + { + "slug": "tiger-tank-59-break-the-fog-mp032", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP032", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp032" + }, + { + "slug": "tiger-tank-59-break-the-fog-mp033", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP033", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp033" + }, + { + "slug": "tiger-tank-59-break-the-fog-mp034", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP034", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp034" + }, + { + "slug": "tiger-tank-59-break-the-fog-mp035", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP035", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp035" + }, + { + "slug": "tiger-tank-59-break-the-fog-mp036", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP036", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp036" + }, + { + "slug": "tiger-tank-59-break-the-fog-mp037", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP037", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp037" + }, + { + "slug": "tiger-tank-59-break-the-fog-mp038", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP038", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp038" + }, + { + "slug": "tiger-tank-59-break-the-fog-mp039", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP039", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp039" + }, + { + "slug": "tiger-tank-59-break-the-fog-mp040", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP040", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp040" + }, + { + "slug": "tiger-tank-59-break-the-fog-mp041", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP041", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp041" + }, + { + "slug": "tiger-tank-59-break-the-fog-mp042", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP042", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp042" + }, + { + "slug": "tiger-tank-59-break-the-fog-mp043", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP043", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp043" + }, + { + "slug": "tiger-tank-59-break-the-fog-mp044", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP044", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp044" + }, + { + "slug": "tiger-tank-59-break-the-fog-mp045", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP045", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp045" + }, + { + "slug": "tiger-tank-59-break-the-fog-mp046", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP046", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp046" + }, + { + "slug": "tiger-tank-59-break-the-fog-mp047", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP047", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp047" + }, + { + "slug": "tiger-tank-59-break-the-fog-mp048", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP048", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp048" + }, + { + "slug": "tiger-tank-59-break-the-fog-mp049", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP049", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp049" + }, + { + "slug": "tiger-tank-59-break-the-fog-mp050", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP050", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp050" + }, + { + "slug": "tiger-tank-59-break-the-fog-mp051", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP051", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp051" + }, + { + "slug": "tiger-tank-59-break-the-fog-mp052", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP052", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp052" + }, + { + "slug": "tiger-tank-59-break-the-fog-mp053", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP053", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp053" + }, + { + "slug": "tiger-tank-59-break-the-fog-mp054", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP054", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp054" + }, + { + "slug": "tiger-tank-59-break-the-fog-mp055", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP055", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp055" + }, + { + "slug": "tiger-tank-59-break-the-fog-mp056", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP056", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp056" + }, + { + "slug": "tiger-tank-59-break-the-fog-mp057", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP057", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp057" + }, + { + "slug": "tiger-tank-59-break-the-fog-mp058", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP058", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp058" + }, + { + "slug": "tiger-tank-59-break-the-fog-mp059", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP059", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp059" + }, + { + "slug": "tiger-tank-59-break-the-fog-mp060", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP060", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp060" + }, + { + "slug": "tiger-tank-59-break-the-fog-mp061", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP061", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp061" + }, + { + "slug": "tiger-tank-59-break-the-fog-mp062", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP062", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp062" + }, + { + "slug": "tiger-tank-59-break-the-fog-mp063", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP063", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp063" + }, + { + "slug": "tiger-tank-59-break-the-fog-mp064", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP064", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp064" + }, + { + "slug": "tiger-tank-59-break-the-fog-mp065", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP065", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp065" + }, + { + "slug": "tiger-tank-59-break-the-fog-mp066", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP066", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp066" + }, + { + "slug": "tiger-tank-59-break-the-fog-mp067", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP067", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp067" + }, + { + "slug": "tiger-tank-59-break-the-fog-mp068", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP068", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp068" + }, + { + "slug": "tiger-tank-59-break-the-fog-mp069", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP069", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp069" + }, + { + "slug": "tiger-tank-59-break-the-fog-mp070", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP070", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp070" + }, + { + "slug": "tiger-tank-59-break-the-fog-mp071", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP071", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp071" + }, + { + "slug": "tiger-tank-59-break-the-fog-mp072", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP072", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp072" + }, + { + "slug": "tiger-tank-59-break-the-fog-mp073", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP073", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp073" + }, + { + "slug": "tiger-tank-59-break-the-fog-mp074", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP074", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp074" + }, + { + "slug": "tiger-tank-59-break-the-fog-mp075", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP075", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp075" + }, + { + "slug": "tiger-tank-59-break-the-fog-mp076", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP076", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp076" + }, + { + "slug": "tiger-tank-59-break-the-fog-mp077", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP077", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp077" + }, + { + "slug": "tiger-tank-59-break-the-fog-mp078", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP078", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp078" + }, + { + "slug": "tiger-tank-59-break-the-fog-mp079", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP079", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp079" + }, + { + "slug": "tiger-tank-59-break-the-fog-mp080", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP080", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp080" + }, + { + "slug": "tiger-tank-59-break-the-fog-mp081", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP081", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp081" + }, + { + "slug": "tiger-tank-59-break-the-fog-mp082", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP082", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp082" + }, + { + "slug": "tiger-tank-59-break-the-fog-mp083", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP083", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp083" + }, + { + "slug": "tiger-tank-59-break-the-fog-mp084", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP084", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp084" + }, + { + "slug": "tiger-tank-59-break-the-fog-mp085", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP085", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp085" + }, + { + "slug": "tiger-tank-59-break-the-fog-mp086", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP086", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp086" + }, + { + "slug": "tiger-tank-59-break-the-fog-mp087", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP087", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp087" + }, + { + "slug": "tiger-tank-59-break-the-fog-mp088", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP088", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp088" + }, + { + "slug": "tiger-tank-59-break-the-fog-mp089", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP089", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp089" + }, + { + "slug": "tiger-tank-59-break-the-fog-mp090", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP090", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp090" + }, + { + "slug": "tiger-tank-59-break-the-fog-mp091", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP091", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp091" + }, + { + "slug": "tiger-tank-59-break-the-fog-mp092", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP092", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp092" + }, + { + "slug": "tiger-tank-59-break-the-fog-mp093", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP093", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp093" + }, + { + "slug": "tiger-tank-59-break-the-fog-mp094", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP094", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp094" + }, + { + "slug": "tiger-tank-59-break-the-fog-mp095", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP095", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp095" + }, + { + "slug": "tiger-tank-59-break-the-fog-mp096", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP096", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp096" + }, + { + "slug": "tiger-tank-59-break-the-fog-mp097", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP097", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp097" + }, + { + "slug": "tiger-tank-59-break-the-fog-mp098", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP098", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp098" + }, + { + "slug": "tiger-tank-59-break-the-fog-mp099", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP099", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp099" + }, + { + "slug": "tiger-tank-59-break-the-fog-mp100", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP100", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp100" + }, + { + "slug": "tiger-tank-59-mission-pack-001", + "name": "Tiger Tank 59 Ⅰ Mission Pack 001", + "url": "/v1/games/tiger-tank-59-mission-pack-001" + }, + { + "slug": "tiger-tank-59-mission-pack-002", + "name": "Tiger Tank 59 Ⅰ Mission Pack 002", + "url": "/v1/games/tiger-tank-59-mission-pack-002" + }, + { + "slug": "tiger-tank-59-mission-pack-003", + "name": "Tiger Tank 59 Ⅰ Mission Pack 003", + "url": "/v1/games/tiger-tank-59-mission-pack-003" + }, + { + "slug": "tiger-tank-59-mission-pack-004", + "name": "Tiger Tank 59 Ⅰ Mission Pack 004", + "url": "/v1/games/tiger-tank-59-mission-pack-004" + }, + { + "slug": "tiger-tank-59-mission-pack-005", + "name": "Tiger Tank 59 Ⅰ Mission Pack 005", + "url": "/v1/games/tiger-tank-59-mission-pack-005" + }, + { + "slug": "tiger-tank-59-mission-pack-006", + "name": "Tiger Tank 59 Ⅰ Mission Pack 006", + "url": "/v1/games/tiger-tank-59-mission-pack-006" + }, + { + "slug": "tiger-tank-59-mission-pack-007", + "name": "Tiger Tank 59 Ⅰ Mission Pack 007", + "url": "/v1/games/tiger-tank-59-mission-pack-007" + }, + { + "slug": "tiger-tank-59-mission-pack-008", + "name": "Tiger Tank 59 Ⅰ Mission Pack 008", + "url": "/v1/games/tiger-tank-59-mission-pack-008" + }, + { + "slug": "tiger-tank-59-mission-pack-009", + "name": "Tiger Tank 59 Ⅰ Mission Pack 009", + "url": "/v1/games/tiger-tank-59-mission-pack-009" + }, + { + "slug": "tiger-tank-59-mission-pack-010", + "name": "Tiger Tank 59 Ⅰ Mission Pack 010", + "url": "/v1/games/tiger-tank-59-mission-pack-010" + }, + { + "slug": "tiger-tank-59-mission-pack-011", + "name": "Tiger Tank 59 Ⅰ Mission Pack 011", + "url": "/v1/games/tiger-tank-59-mission-pack-011" + }, + { + "slug": "tiger-tank-59-mission-pack-012", + "name": "Tiger Tank 59 Ⅰ Mission Pack 012", + "url": "/v1/games/tiger-tank-59-mission-pack-012" + }, + { + "slug": "tiger-tank-59-mission-pack-013", + "name": "Tiger Tank 59 Ⅰ Mission Pack 013", + "url": "/v1/games/tiger-tank-59-mission-pack-013" + }, + { + "slug": "tiger-tank-59-mission-pack-014", + "name": "Tiger Tank 59 Ⅰ Mission Pack 014", + "url": "/v1/games/tiger-tank-59-mission-pack-014" + }, + { + "slug": "tiger-tank-59-mission-pack-015", + "name": "Tiger Tank 59 Ⅰ Mission Pack 015", + "url": "/v1/games/tiger-tank-59-mission-pack-015" + }, + { + "slug": "tiger-tank-59-mission-pack-016", + "name": "Tiger Tank 59 Ⅰ Mission Pack 016", + "url": "/v1/games/tiger-tank-59-mission-pack-016" + }, + { + "slug": "tiger-tank-59-mission-pack-017", + "name": "Tiger Tank 59 Ⅰ Mission Pack 017", + "url": "/v1/games/tiger-tank-59-mission-pack-017" + }, + { + "slug": "tiger-tank-59-mission-pack-018", + "name": "Tiger Tank 59 Ⅰ Mission Pack 018", + "url": "/v1/games/tiger-tank-59-mission-pack-018" + }, + { + "slug": "tiger-tank-59-mission-pack-019", + "name": "Tiger Tank 59 Ⅰ Mission Pack 019", + "url": "/v1/games/tiger-tank-59-mission-pack-019" + }, + { + "slug": "tiger-tank-59-mission-pack-020", + "name": "Tiger Tank 59 Ⅰ Mission Pack 020", + "url": "/v1/games/tiger-tank-59-mission-pack-020" + }, + { + "slug": "tiger-tank-59-mission-pack-021", + "name": "Tiger Tank 59 Ⅰ Mission Pack 021", + "url": "/v1/games/tiger-tank-59-mission-pack-021" + }, + { + "slug": "tiger-tank-59-mission-pack-022", + "name": "Tiger Tank 59 Ⅰ Mission Pack 022", + "url": "/v1/games/tiger-tank-59-mission-pack-022" + }, + { + "slug": "tiger-tank-59-mission-pack-023", + "name": "Tiger Tank 59 Ⅰ Mission Pack 023", + "url": "/v1/games/tiger-tank-59-mission-pack-023" + }, + { + "slug": "tiger-tank-59-mission-pack-024", + "name": "Tiger Tank 59 Ⅰ Mission Pack 024", + "url": "/v1/games/tiger-tank-59-mission-pack-024" + }, + { + "slug": "tiger-tank-59-mission-pack-025", + "name": "Tiger Tank 59 Ⅰ Mission Pack 025", + "url": "/v1/games/tiger-tank-59-mission-pack-025" + }, + { + "slug": "tiger-tank-59-mission-pack-026", + "name": "Tiger Tank 59 Ⅰ Mission Pack 026", + "url": "/v1/games/tiger-tank-59-mission-pack-026" + }, + { + "slug": "tiger-tank-59-mission-pack-027", + "name": "Tiger Tank 59 Ⅰ Mission Pack 027", + "url": "/v1/games/tiger-tank-59-mission-pack-027" + }, + { + "slug": "tiger-tank-59-mission-pack-028", + "name": "Tiger Tank 59 Ⅰ Mission Pack 028", + "url": "/v1/games/tiger-tank-59-mission-pack-028" + }, + { + "slug": "tiger-tank-59-mission-pack-029", + "name": "Tiger Tank 59 Ⅰ Mission Pack 029", + "url": "/v1/games/tiger-tank-59-mission-pack-029" + }, + { + "slug": "tiger-tank-59-mission-pack-030", + "name": "Tiger Tank 59 Ⅰ Mission Pack 030", + "url": "/v1/games/tiger-tank-59-mission-pack-030" + }, + { + "slug": "tiger-tank-59-mission-pack-031", + "name": "Tiger Tank 59 Ⅰ Mission Pack 031", + "url": "/v1/games/tiger-tank-59-mission-pack-031" + }, + { + "slug": "tiger-tank-59-mission-pack-032", + "name": "Tiger Tank 59 Ⅰ Mission Pack 032", + "url": "/v1/games/tiger-tank-59-mission-pack-032" + }, + { + "slug": "tiger-tank-59-mission-pack-033", + "name": "Tiger Tank 59 Ⅰ Mission Pack 033", + "url": "/v1/games/tiger-tank-59-mission-pack-033" + }, + { + "slug": "tiger-tank-59-mission-pack-034", + "name": "Tiger Tank 59 Ⅰ Mission Pack 034", + "url": "/v1/games/tiger-tank-59-mission-pack-034" + }, + { + "slug": "tiger-tank-59-mission-pack-035", + "name": "Tiger Tank 59 Ⅰ Mission Pack 035", + "url": "/v1/games/tiger-tank-59-mission-pack-035" + }, + { + "slug": "tiger-tank-59-mission-pack-036", + "name": "Tiger Tank 59 Ⅰ Mission Pack 036", + "url": "/v1/games/tiger-tank-59-mission-pack-036" + }, + { + "slug": "tiger-tank-59-mission-pack-037", + "name": "Tiger Tank 59 Ⅰ Mission Pack 037", + "url": "/v1/games/tiger-tank-59-mission-pack-037" + }, + { + "slug": "tiger-tank-59-mission-pack-038", + "name": "Tiger Tank 59 Ⅰ Mission Pack 038", + "url": "/v1/games/tiger-tank-59-mission-pack-038" + }, + { + "slug": "tiger-tank-59-mission-pack-039", + "name": "Tiger Tank 59 Ⅰ Mission Pack 039", + "url": "/v1/games/tiger-tank-59-mission-pack-039" + }, + { + "slug": "tiger-tank-59-mission-pack-040", + "name": "Tiger Tank 59 Ⅰ Mission Pack 040", + "url": "/v1/games/tiger-tank-59-mission-pack-040" + }, + { + "slug": "tiger-tank-59-mission-pack-041", + "name": "Tiger Tank 59 Ⅰ Mission Pack 041", + "url": "/v1/games/tiger-tank-59-mission-pack-041" + }, + { + "slug": "tiger-tank-59-mission-pack-042", + "name": "Tiger Tank 59 Ⅰ Mission Pack 042", + "url": "/v1/games/tiger-tank-59-mission-pack-042" + }, + { + "slug": "tiger-tank-59-mission-pack-043", + "name": "Tiger Tank 59 Ⅰ Mission Pack 043", + "url": "/v1/games/tiger-tank-59-mission-pack-043" + }, + { + "slug": "tiger-tank-59-mission-pack-044", + "name": "Tiger Tank 59 Ⅰ Mission Pack 044", + "url": "/v1/games/tiger-tank-59-mission-pack-044" + }, + { + "slug": "tiger-tank-59-mission-pack-045", + "name": "Tiger Tank 59 Ⅰ Mission Pack 045", + "url": "/v1/games/tiger-tank-59-mission-pack-045" + }, + { + "slug": "tiger-tank-59-mission-pack-046", + "name": "Tiger Tank 59 Ⅰ Mission Pack 046", + "url": "/v1/games/tiger-tank-59-mission-pack-046" + }, + { + "slug": "tiger-tank-59-mission-pack-047", + "name": "Tiger Tank 59 Ⅰ Mission Pack 047", + "url": "/v1/games/tiger-tank-59-mission-pack-047" + }, + { + "slug": "tiger-tank-59-mission-pack-048", + "name": "Tiger Tank 59 Ⅰ Mission Pack 048", + "url": "/v1/games/tiger-tank-59-mission-pack-048" + }, + { + "slug": "tiger-tank-59-mission-pack-049", + "name": "Tiger Tank 59 Ⅰ Mission Pack 049", + "url": "/v1/games/tiger-tank-59-mission-pack-049" + }, + { + "slug": "tiger-tank-59-mission-pack-050", + "name": "Tiger Tank 59 Ⅰ Mission Pack 050", + "url": "/v1/games/tiger-tank-59-mission-pack-050" + }, + { + "slug": "tiger-tank-59-mission-pack-051", + "name": "Tiger Tank 59 Ⅰ Mission Pack 051", + "url": "/v1/games/tiger-tank-59-mission-pack-051" + }, + { + "slug": "tiger-tank-59-mission-pack-053", + "name": "Tiger Tank 59 Ⅰ Mission Pack 053", + "url": "/v1/games/tiger-tank-59-mission-pack-053" + }, + { + "slug": "tiger-tank-59-mission-pack-054", + "name": "Tiger Tank 59 Ⅰ Mission Pack 054", + "url": "/v1/games/tiger-tank-59-mission-pack-054" + }, + { + "slug": "tiger-tank-59-mission-pack-055", + "name": "Tiger Tank 59 Ⅰ Mission Pack 055", + "url": "/v1/games/tiger-tank-59-mission-pack-055" + }, + { + "slug": "tiger-tank-59-mission-pack-056", + "name": "Tiger Tank 59 Ⅰ Mission Pack 056", + "url": "/v1/games/tiger-tank-59-mission-pack-056" + }, + { + "slug": "tiger-tank-59-mission-pack-057", + "name": "Tiger Tank 59 Ⅰ Mission Pack 057", + "url": "/v1/games/tiger-tank-59-mission-pack-057" + }, + { + "slug": "tiger-tank-59-mission-pack-058", + "name": "Tiger Tank 59 Ⅰ Mission Pack 058", + "url": "/v1/games/tiger-tank-59-mission-pack-058" + }, + { + "slug": "tiger-tank-59-mission-pack-059", + "name": "Tiger Tank 59 Ⅰ Mission Pack 059", + "url": "/v1/games/tiger-tank-59-mission-pack-059" + }, + { + "slug": "tiger-tank-59-mission-pack-060", + "name": "Tiger Tank 59 Ⅰ Mission Pack 060", + "url": "/v1/games/tiger-tank-59-mission-pack-060" + }, + { + "slug": "tiger-tank-59-mission-pack-062", + "name": "Tiger Tank 59 Ⅰ Mission Pack 062", + "url": "/v1/games/tiger-tank-59-mission-pack-062" + }, + { + "slug": "tiger-tank-59-mission-pack-063", + "name": "Tiger Tank 59 Ⅰ Mission Pack 063", + "url": "/v1/games/tiger-tank-59-mission-pack-063" + }, + { + "slug": "tiger-tank-59-mission-pack-064", + "name": "Tiger Tank 59 Ⅰ Mission Pack 064", + "url": "/v1/games/tiger-tank-59-mission-pack-064" + }, + { + "slug": "tiger-tank-59-mission-pack-065", + "name": "Tiger Tank 59 Ⅰ Mission Pack 065", + "url": "/v1/games/tiger-tank-59-mission-pack-065" + }, + { + "slug": "tiger-tank-59-mission-pack-066", + "name": "Tiger Tank 59 Ⅰ Mission Pack 066", + "url": "/v1/games/tiger-tank-59-mission-pack-066" + }, + { + "slug": "tiger-tank-59-mission-pack-067", + "name": "Tiger Tank 59 Ⅰ Mission Pack 067", + "url": "/v1/games/tiger-tank-59-mission-pack-067" + }, + { + "slug": "tiger-tank-59-mission-pack-068", + "name": "Tiger Tank 59 Ⅰ Mission Pack 068", + "url": "/v1/games/tiger-tank-59-mission-pack-068" + }, + { + "slug": "tiger-tank-59-mission-pack-069", + "name": "Tiger Tank 59 Ⅰ Mission Pack 069", + "url": "/v1/games/tiger-tank-59-mission-pack-069" + }, + { + "slug": "tiger-tank-59-mission-pack-071", + "name": "Tiger Tank 59 Ⅰ Mission Pack 071", + "url": "/v1/games/tiger-tank-59-mission-pack-071" + }, + { + "slug": "tiger-tank-59-mission-pack-072", + "name": "Tiger Tank 59 Ⅰ Mission Pack 072", + "url": "/v1/games/tiger-tank-59-mission-pack-072" + }, + { + "slug": "tiger-tank-59-mission-pack-073", + "name": "Tiger Tank 59 Ⅰ Mission Pack 073", + "url": "/v1/games/tiger-tank-59-mission-pack-073" + }, + { + "slug": "tiger-tank-59-mission-pack-074", + "name": "Tiger Tank 59 Ⅰ Mission Pack 074", + "url": "/v1/games/tiger-tank-59-mission-pack-074" + }, + { + "slug": "tiger-tank-59-mission-pack-075", + "name": "Tiger Tank 59 Ⅰ Mission Pack 075", + "url": "/v1/games/tiger-tank-59-mission-pack-075" + }, + { + "slug": "tiger-tank-59-mission-pack-076", + "name": "Tiger Tank 59 Ⅰ Mission Pack 076", + "url": "/v1/games/tiger-tank-59-mission-pack-076" + }, + { + "slug": "tiger-tank-59-mission-pack-077", + "name": "Tiger Tank 59 Ⅰ Mission Pack 077", + "url": "/v1/games/tiger-tank-59-mission-pack-077" + }, + { + "slug": "tiger-tank-59-mission-pack-078", + "name": "Tiger Tank 59 Ⅰ Mission Pack 078", + "url": "/v1/games/tiger-tank-59-mission-pack-078" + }, + { + "slug": "tiger-tank-59-mission-pack-079", + "name": "Tiger Tank 59 Ⅰ Mission Pack 079", + "url": "/v1/games/tiger-tank-59-mission-pack-079" + }, + { + "slug": "tiger-tank-59-mission-pack-080", + "name": "Tiger Tank 59 Ⅰ Mission Pack 080", + "url": "/v1/games/tiger-tank-59-mission-pack-080" + }, + { + "slug": "tiger-tank-59-mission-pack-081", + "name": "Tiger Tank 59 Ⅰ Mission Pack 081", + "url": "/v1/games/tiger-tank-59-mission-pack-081" + }, + { + "slug": "tiger-tank-59-mission-pack-082", + "name": "Tiger Tank 59 Ⅰ Mission Pack 082", + "url": "/v1/games/tiger-tank-59-mission-pack-082" + }, + { + "slug": "tiger-tank-59-mission-pack-083", + "name": "Tiger Tank 59 Ⅰ Mission Pack 083", + "url": "/v1/games/tiger-tank-59-mission-pack-083" + }, + { + "slug": "tiger-tank-59-mission-pack-084", + "name": "Tiger Tank 59 Ⅰ Mission Pack 084", + "url": "/v1/games/tiger-tank-59-mission-pack-084" + }, + { + "slug": "tiger-tank-59-mission-pack-085", + "name": "Tiger Tank 59 Ⅰ Mission Pack 085", + "url": "/v1/games/tiger-tank-59-mission-pack-085" + }, + { + "slug": "tiger-tank-59-mission-pack-086", + "name": "Tiger Tank 59 Ⅰ Mission Pack 086", + "url": "/v1/games/tiger-tank-59-mission-pack-086" + }, + { + "slug": "tiger-tank-59-mission-pack-087", + "name": "Tiger Tank 59 Ⅰ Mission Pack 087", + "url": "/v1/games/tiger-tank-59-mission-pack-087" + }, + { + "slug": "tiger-tank-59-mission-pack-088", + "name": "Tiger Tank 59 Ⅰ Mission Pack 088", + "url": "/v1/games/tiger-tank-59-mission-pack-088" + }, + { + "slug": "tiger-tank-59-mission-pack-090", + "name": "Tiger Tank 59 Ⅰ Mission Pack 090", + "url": "/v1/games/tiger-tank-59-mission-pack-090" + }, + { + "slug": "tiger-tank-59-mission-pack-091", + "name": "Tiger Tank 59 Ⅰ Mission Pack 091", + "url": "/v1/games/tiger-tank-59-mission-pack-091" + }, + { + "slug": "tiger-tank-59-mission-pack-092", + "name": "Tiger Tank 59 Ⅰ Mission Pack 092", + "url": "/v1/games/tiger-tank-59-mission-pack-092" + }, + { + "slug": "tiger-tank-59-mission-pack-093", + "name": "Tiger Tank 59 Ⅰ Mission Pack 093", + "url": "/v1/games/tiger-tank-59-mission-pack-093" + }, + { + "slug": "tiger-tank-59-mission-pack-094", + "name": "Tiger Tank 59 Ⅰ Mission Pack 094", + "url": "/v1/games/tiger-tank-59-mission-pack-094" + }, + { + "slug": "tiger-tank-59-mission-pack-095", + "name": "Tiger Tank 59 Ⅰ Mission Pack 095", + "url": "/v1/games/tiger-tank-59-mission-pack-095" + }, + { + "slug": "tiger-tank-59-mission-pack-096", + "name": "Tiger Tank 59 Ⅰ Mission Pack 096", + "url": "/v1/games/tiger-tank-59-mission-pack-096" + }, + { + "slug": "tiger-tank-59-mission-pack-097", + "name": "Tiger Tank 59 Ⅰ Mission Pack 097", + "url": "/v1/games/tiger-tank-59-mission-pack-097" + }, + { + "slug": "tiger-tank-59-mission-pack-098", + "name": "Tiger Tank 59 Ⅰ Mission Pack 098", + "url": "/v1/games/tiger-tank-59-mission-pack-098" + }, + { + "slug": "tiger-tank-59-mission-pack-099", + "name": "Tiger Tank 59 Ⅰ Mission Pack 099", + "url": "/v1/games/tiger-tank-59-mission-pack-099" + }, + { + "slug": "tiger-tank-59-mission-pack-100", + "name": "Tiger Tank 59 Ⅰ Mission Pack 100", + "url": "/v1/games/tiger-tank-59-mission-pack-100" + }, { "slug": "tiger-tank-59-rainstorm", "name": "Tiger Tank 59 Ⅰ Rainstorm", "url": "/v1/games/tiger-tank-59-rainstorm" }, + { + "slug": "tiger-tank-59-rainstorm-mp001", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP001", + "url": "/v1/games/tiger-tank-59-rainstorm-mp001" + }, + { + "slug": "tiger-tank-59-rainstorm-mp002", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP002", + "url": "/v1/games/tiger-tank-59-rainstorm-mp002" + }, + { + "slug": "tiger-tank-59-rainstorm-mp003", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP003", + "url": "/v1/games/tiger-tank-59-rainstorm-mp003" + }, + { + "slug": "tiger-tank-59-rainstorm-mp004", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP004", + "url": "/v1/games/tiger-tank-59-rainstorm-mp004" + }, + { + "slug": "tiger-tank-59-rainstorm-mp005", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP005", + "url": "/v1/games/tiger-tank-59-rainstorm-mp005" + }, + { + "slug": "tiger-tank-59-rainstorm-mp006", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP006", + "url": "/v1/games/tiger-tank-59-rainstorm-mp006" + }, + { + "slug": "tiger-tank-59-rainstorm-mp007", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP007", + "url": "/v1/games/tiger-tank-59-rainstorm-mp007" + }, + { + "slug": "tiger-tank-59-rainstorm-mp008", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP008", + "url": "/v1/games/tiger-tank-59-rainstorm-mp008" + }, + { + "slug": "tiger-tank-59-rainstorm-mp009", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP009", + "url": "/v1/games/tiger-tank-59-rainstorm-mp009" + }, + { + "slug": "tiger-tank-59-rainstorm-mp010", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP010", + "url": "/v1/games/tiger-tank-59-rainstorm-mp010" + }, + { + "slug": "tiger-tank-59-rainstorm-mp011", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP011", + "url": "/v1/games/tiger-tank-59-rainstorm-mp011" + }, + { + "slug": "tiger-tank-59-rainstorm-mp012", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP012", + "url": "/v1/games/tiger-tank-59-rainstorm-mp012" + }, + { + "slug": "tiger-tank-59-rainstorm-mp013", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP013", + "url": "/v1/games/tiger-tank-59-rainstorm-mp013" + }, + { + "slug": "tiger-tank-59-rainstorm-mp014", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP014", + "url": "/v1/games/tiger-tank-59-rainstorm-mp014" + }, + { + "slug": "tiger-tank-59-rainstorm-mp015", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP015", + "url": "/v1/games/tiger-tank-59-rainstorm-mp015" + }, + { + "slug": "tiger-tank-59-rainstorm-mp016", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP016", + "url": "/v1/games/tiger-tank-59-rainstorm-mp016" + }, + { + "slug": "tiger-tank-59-rainstorm-mp017", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP017", + "url": "/v1/games/tiger-tank-59-rainstorm-mp017" + }, + { + "slug": "tiger-tank-59-rainstorm-mp018", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP018", + "url": "/v1/games/tiger-tank-59-rainstorm-mp018" + }, + { + "slug": "tiger-tank-59-rainstorm-mp019", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP019", + "url": "/v1/games/tiger-tank-59-rainstorm-mp019" + }, + { + "slug": "tiger-tank-59-rainstorm-mp020", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP020", + "url": "/v1/games/tiger-tank-59-rainstorm-mp020" + }, + { + "slug": "tiger-tank-59-rainstorm-mp021", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP021", + "url": "/v1/games/tiger-tank-59-rainstorm-mp021" + }, + { + "slug": "tiger-tank-59-rainstorm-mp022", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP022", + "url": "/v1/games/tiger-tank-59-rainstorm-mp022" + }, + { + "slug": "tiger-tank-59-rainstorm-mp023", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP023", + "url": "/v1/games/tiger-tank-59-rainstorm-mp023" + }, + { + "slug": "tiger-tank-59-rainstorm-mp024", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP024", + "url": "/v1/games/tiger-tank-59-rainstorm-mp024" + }, + { + "slug": "tiger-tank-59-rainstorm-mp025", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP025", + "url": "/v1/games/tiger-tank-59-rainstorm-mp025" + }, + { + "slug": "tiger-tank-59-rainstorm-mp026", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP026", + "url": "/v1/games/tiger-tank-59-rainstorm-mp026" + }, + { + "slug": "tiger-tank-59-rainstorm-mp027", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP027", + "url": "/v1/games/tiger-tank-59-rainstorm-mp027" + }, + { + "slug": "tiger-tank-59-rainstorm-mp028", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP028", + "url": "/v1/games/tiger-tank-59-rainstorm-mp028" + }, + { + "slug": "tiger-tank-59-rainstorm-mp029", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP029", + "url": "/v1/games/tiger-tank-59-rainstorm-mp029" + }, + { + "slug": "tiger-tank-59-rainstorm-mp030", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP030", + "url": "/v1/games/tiger-tank-59-rainstorm-mp030" + }, + { + "slug": "tiger-tank-59-rainstorm-mp031", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP031", + "url": "/v1/games/tiger-tank-59-rainstorm-mp031" + }, + { + "slug": "tiger-tank-59-rainstorm-mp032", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP032", + "url": "/v1/games/tiger-tank-59-rainstorm-mp032" + }, + { + "slug": "tiger-tank-59-rainstorm-mp033", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP033", + "url": "/v1/games/tiger-tank-59-rainstorm-mp033" + }, + { + "slug": "tiger-tank-59-rainstorm-mp034", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP034", + "url": "/v1/games/tiger-tank-59-rainstorm-mp034" + }, + { + "slug": "tiger-tank-59-rainstorm-mp035", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP035", + "url": "/v1/games/tiger-tank-59-rainstorm-mp035" + }, + { + "slug": "tiger-tank-59-rainstorm-mp036", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP036", + "url": "/v1/games/tiger-tank-59-rainstorm-mp036" + }, + { + "slug": "tiger-tank-59-rainstorm-mp037", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP037", + "url": "/v1/games/tiger-tank-59-rainstorm-mp037" + }, + { + "slug": "tiger-tank-59-rainstorm-mp038", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP038", + "url": "/v1/games/tiger-tank-59-rainstorm-mp038" + }, + { + "slug": "tiger-tank-59-rainstorm-mp039", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP039", + "url": "/v1/games/tiger-tank-59-rainstorm-mp039" + }, + { + "slug": "tiger-tank-59-rainstorm-mp040", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP040", + "url": "/v1/games/tiger-tank-59-rainstorm-mp040" + }, + { + "slug": "tiger-tank-59-rainstorm-mp041", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP041", + "url": "/v1/games/tiger-tank-59-rainstorm-mp041" + }, + { + "slug": "tiger-tank-59-rainstorm-mp042", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP042", + "url": "/v1/games/tiger-tank-59-rainstorm-mp042" + }, + { + "slug": "tiger-tank-59-rainstorm-mp043", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP043", + "url": "/v1/games/tiger-tank-59-rainstorm-mp043" + }, + { + "slug": "tiger-tank-59-rainstorm-mp044", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP044", + "url": "/v1/games/tiger-tank-59-rainstorm-mp044" + }, + { + "slug": "tiger-tank-59-rainstorm-mp045", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP045", + "url": "/v1/games/tiger-tank-59-rainstorm-mp045" + }, + { + "slug": "tiger-tank-59-rainstorm-mp046", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP046", + "url": "/v1/games/tiger-tank-59-rainstorm-mp046" + }, + { + "slug": "tiger-tank-59-rainstorm-mp047", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP047", + "url": "/v1/games/tiger-tank-59-rainstorm-mp047" + }, + { + "slug": "tiger-tank-59-rainstorm-mp048", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP048", + "url": "/v1/games/tiger-tank-59-rainstorm-mp048" + }, + { + "slug": "tiger-tank-59-rainstorm-mp049", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP049", + "url": "/v1/games/tiger-tank-59-rainstorm-mp049" + }, + { + "slug": "tiger-tank-59-rainstorm-mp050", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP050", + "url": "/v1/games/tiger-tank-59-rainstorm-mp050" + }, + { + "slug": "tiger-tank-59-rainstorm-mp051", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP051", + "url": "/v1/games/tiger-tank-59-rainstorm-mp051" + }, + { + "slug": "tiger-tank-59-rainstorm-mp052", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP052", + "url": "/v1/games/tiger-tank-59-rainstorm-mp052" + }, + { + "slug": "tiger-tank-59-rainstorm-mp053", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP053", + "url": "/v1/games/tiger-tank-59-rainstorm-mp053" + }, + { + "slug": "tiger-tank-59-rainstorm-mp054", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP054", + "url": "/v1/games/tiger-tank-59-rainstorm-mp054" + }, + { + "slug": "tiger-tank-59-rainstorm-mp055", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP055", + "url": "/v1/games/tiger-tank-59-rainstorm-mp055" + }, + { + "slug": "tiger-tank-59-rainstorm-mp056", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP056", + "url": "/v1/games/tiger-tank-59-rainstorm-mp056" + }, + { + "slug": "tiger-tank-59-rainstorm-mp057", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP057", + "url": "/v1/games/tiger-tank-59-rainstorm-mp057" + }, + { + "slug": "tiger-tank-59-rainstorm-mp058", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP058", + "url": "/v1/games/tiger-tank-59-rainstorm-mp058" + }, + { + "slug": "tiger-tank-59-rainstorm-mp059", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP059", + "url": "/v1/games/tiger-tank-59-rainstorm-mp059" + }, + { + "slug": "tiger-tank-59-rainstorm-mp060", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP060", + "url": "/v1/games/tiger-tank-59-rainstorm-mp060" + }, + { + "slug": "tiger-tank-59-rainstorm-mp061", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP061", + "url": "/v1/games/tiger-tank-59-rainstorm-mp061" + }, + { + "slug": "tiger-tank-59-rainstorm-mp062", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP062", + "url": "/v1/games/tiger-tank-59-rainstorm-mp062" + }, + { + "slug": "tiger-tank-59-rainstorm-mp063", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP063", + "url": "/v1/games/tiger-tank-59-rainstorm-mp063" + }, + { + "slug": "tiger-tank-59-rainstorm-mp064", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP064", + "url": "/v1/games/tiger-tank-59-rainstorm-mp064" + }, + { + "slug": "tiger-tank-59-rainstorm-mp065", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP065", + "url": "/v1/games/tiger-tank-59-rainstorm-mp065" + }, + { + "slug": "tiger-tank-59-rainstorm-mp066", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP066", + "url": "/v1/games/tiger-tank-59-rainstorm-mp066" + }, + { + "slug": "tiger-tank-59-rainstorm-mp067", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP067", + "url": "/v1/games/tiger-tank-59-rainstorm-mp067" + }, + { + "slug": "tiger-tank-59-rainstorm-mp068", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP068", + "url": "/v1/games/tiger-tank-59-rainstorm-mp068" + }, + { + "slug": "tiger-tank-59-rainstorm-mp069", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP069", + "url": "/v1/games/tiger-tank-59-rainstorm-mp069" + }, + { + "slug": "tiger-tank-59-rainstorm-mp070", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP070", + "url": "/v1/games/tiger-tank-59-rainstorm-mp070" + }, + { + "slug": "tiger-tank-59-rainstorm-mp071", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP071", + "url": "/v1/games/tiger-tank-59-rainstorm-mp071" + }, + { + "slug": "tiger-tank-59-rainstorm-mp072", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP072", + "url": "/v1/games/tiger-tank-59-rainstorm-mp072" + }, + { + "slug": "tiger-tank-59-rainstorm-mp073", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP073", + "url": "/v1/games/tiger-tank-59-rainstorm-mp073" + }, + { + "slug": "tiger-tank-59-rainstorm-mp074", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP074", + "url": "/v1/games/tiger-tank-59-rainstorm-mp074" + }, + { + "slug": "tiger-tank-59-rainstorm-mp075", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP075", + "url": "/v1/games/tiger-tank-59-rainstorm-mp075" + }, + { + "slug": "tiger-tank-59-rainstorm-mp076", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP076", + "url": "/v1/games/tiger-tank-59-rainstorm-mp076" + }, + { + "slug": "tiger-tank-59-rainstorm-mp077", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP077", + "url": "/v1/games/tiger-tank-59-rainstorm-mp077" + }, + { + "slug": "tiger-tank-59-rainstorm-mp078", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP078", + "url": "/v1/games/tiger-tank-59-rainstorm-mp078" + }, + { + "slug": "tiger-tank-59-rainstorm-mp079", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP079", + "url": "/v1/games/tiger-tank-59-rainstorm-mp079" + }, + { + "slug": "tiger-tank-59-rainstorm-mp080", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP080", + "url": "/v1/games/tiger-tank-59-rainstorm-mp080" + }, + { + "slug": "tiger-tank-59-rainstorm-mp081", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP081", + "url": "/v1/games/tiger-tank-59-rainstorm-mp081" + }, + { + "slug": "tiger-tank-59-rainstorm-mp082", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP082", + "url": "/v1/games/tiger-tank-59-rainstorm-mp082" + }, + { + "slug": "tiger-tank-59-rainstorm-mp083", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP083", + "url": "/v1/games/tiger-tank-59-rainstorm-mp083" + }, + { + "slug": "tiger-tank-59-rainstorm-mp084", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP084", + "url": "/v1/games/tiger-tank-59-rainstorm-mp084" + }, + { + "slug": "tiger-tank-59-rainstorm-mp085", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP085", + "url": "/v1/games/tiger-tank-59-rainstorm-mp085" + }, + { + "slug": "tiger-tank-59-rainstorm-mp086", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP086", + "url": "/v1/games/tiger-tank-59-rainstorm-mp086" + }, + { + "slug": "tiger-tank-59-rainstorm-mp087", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP087", + "url": "/v1/games/tiger-tank-59-rainstorm-mp087" + }, + { + "slug": "tiger-tank-59-rainstorm-mp088", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP088", + "url": "/v1/games/tiger-tank-59-rainstorm-mp088" + }, + { + "slug": "tiger-tank-59-rainstorm-mp089", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP089", + "url": "/v1/games/tiger-tank-59-rainstorm-mp089" + }, + { + "slug": "tiger-tank-59-rainstorm-mp090", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP090", + "url": "/v1/games/tiger-tank-59-rainstorm-mp090" + }, + { + "slug": "tiger-tank-59-rainstorm-mp091", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP091", + "url": "/v1/games/tiger-tank-59-rainstorm-mp091" + }, + { + "slug": "tiger-tank-59-rainstorm-mp092", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP092", + "url": "/v1/games/tiger-tank-59-rainstorm-mp092" + }, + { + "slug": "tiger-tank-59-rainstorm-mp093", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP093", + "url": "/v1/games/tiger-tank-59-rainstorm-mp093" + }, + { + "slug": "tiger-tank-59-rainstorm-mp094", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP094", + "url": "/v1/games/tiger-tank-59-rainstorm-mp094" + }, + { + "slug": "tiger-tank-59-rainstorm-mp095", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP095", + "url": "/v1/games/tiger-tank-59-rainstorm-mp095" + }, + { + "slug": "tiger-tank-59-rainstorm-mp096", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP096", + "url": "/v1/games/tiger-tank-59-rainstorm-mp096" + }, + { + "slug": "tiger-tank-59-rainstorm-mp097", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP097", + "url": "/v1/games/tiger-tank-59-rainstorm-mp097" + }, + { + "slug": "tiger-tank-59-rainstorm-mp098", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP098", + "url": "/v1/games/tiger-tank-59-rainstorm-mp098" + }, + { + "slug": "tiger-tank-59-rainstorm-mp099", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP099", + "url": "/v1/games/tiger-tank-59-rainstorm-mp099" + }, + { + "slug": "tiger-tank-59-rainstorm-mp100", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP100", + "url": "/v1/games/tiger-tank-59-rainstorm-mp100" + }, { "slug": "tiger-tank-59-super-tank", "name": "Tiger Tank 59 Ⅰ Super Tank", "url": "/v1/games/tiger-tank-59-super-tank" }, + { + "slug": "tiger-tank-59-super-tank-mp001", + "name": "Tiger Tank 59 Ⅰ Super Tank MP001", + "url": "/v1/games/tiger-tank-59-super-tank-mp001" + }, + { + "slug": "tiger-tank-59-super-tank-mp002", + "name": "Tiger Tank 59 Ⅰ Super Tank MP002", + "url": "/v1/games/tiger-tank-59-super-tank-mp002" + }, + { + "slug": "tiger-tank-59-super-tank-mp003", + "name": "Tiger Tank 59 Ⅰ Super Tank MP003", + "url": "/v1/games/tiger-tank-59-super-tank-mp003" + }, + { + "slug": "tiger-tank-59-super-tank-mp004", + "name": "Tiger Tank 59 Ⅰ Super Tank MP004", + "url": "/v1/games/tiger-tank-59-super-tank-mp004" + }, + { + "slug": "tiger-tank-59-super-tank-mp005", + "name": "Tiger Tank 59 Ⅰ Super Tank MP005", + "url": "/v1/games/tiger-tank-59-super-tank-mp005" + }, + { + "slug": "tiger-tank-59-super-tank-mp006", + "name": "Tiger Tank 59 Ⅰ Super Tank MP006", + "url": "/v1/games/tiger-tank-59-super-tank-mp006" + }, + { + "slug": "tiger-tank-59-super-tank-mp007", + "name": "Tiger Tank 59 Ⅰ Super Tank MP007", + "url": "/v1/games/tiger-tank-59-super-tank-mp007" + }, + { + "slug": "tiger-tank-59-super-tank-mp008", + "name": "Tiger Tank 59 Ⅰ Super Tank MP008", + "url": "/v1/games/tiger-tank-59-super-tank-mp008" + }, + { + "slug": "tiger-tank-59-super-tank-mp009", + "name": "Tiger Tank 59 Ⅰ Super Tank MP009", + "url": "/v1/games/tiger-tank-59-super-tank-mp009" + }, + { + "slug": "tiger-tank-59-super-tank-mp010", + "name": "Tiger Tank 59 Ⅰ Super Tank MP010", + "url": "/v1/games/tiger-tank-59-super-tank-mp010" + }, + { + "slug": "tiger-tank-59-super-tank-mp011", + "name": "Tiger Tank 59 Ⅰ Super Tank MP011", + "url": "/v1/games/tiger-tank-59-super-tank-mp011" + }, + { + "slug": "tiger-tank-59-super-tank-mp012", + "name": "Tiger Tank 59 Ⅰ Super Tank MP012", + "url": "/v1/games/tiger-tank-59-super-tank-mp012" + }, + { + "slug": "tiger-tank-59-super-tank-mp013", + "name": "Tiger Tank 59 Ⅰ Super Tank MP013", + "url": "/v1/games/tiger-tank-59-super-tank-mp013" + }, + { + "slug": "tiger-tank-59-super-tank-mp014", + "name": "Tiger Tank 59 Ⅰ Super Tank MP014", + "url": "/v1/games/tiger-tank-59-super-tank-mp014" + }, + { + "slug": "tiger-tank-59-super-tank-mp015", + "name": "Tiger Tank 59 Ⅰ Super Tank MP015", + "url": "/v1/games/tiger-tank-59-super-tank-mp015" + }, + { + "slug": "tiger-tank-59-super-tank-mp016", + "name": "Tiger Tank 59 Ⅰ Super Tank MP016", + "url": "/v1/games/tiger-tank-59-super-tank-mp016" + }, + { + "slug": "tiger-tank-59-super-tank-mp017", + "name": "Tiger Tank 59 Ⅰ Super Tank MP017", + "url": "/v1/games/tiger-tank-59-super-tank-mp017" + }, + { + "slug": "tiger-tank-59-super-tank-mp018", + "name": "Tiger Tank 59 Ⅰ Super Tank MP018", + "url": "/v1/games/tiger-tank-59-super-tank-mp018" + }, + { + "slug": "tiger-tank-59-super-tank-mp019", + "name": "Tiger Tank 59 Ⅰ Super Tank MP019", + "url": "/v1/games/tiger-tank-59-super-tank-mp019" + }, + { + "slug": "tiger-tank-59-super-tank-mp020", + "name": "Tiger Tank 59 Ⅰ Super Tank MP020", + "url": "/v1/games/tiger-tank-59-super-tank-mp020" + }, + { + "slug": "tiger-tank-59-super-tank-mp021", + "name": "Tiger Tank 59 Ⅰ Super Tank MP021", + "url": "/v1/games/tiger-tank-59-super-tank-mp021" + }, + { + "slug": "tiger-tank-59-super-tank-mp022", + "name": "Tiger Tank 59 Ⅰ Super Tank MP022", + "url": "/v1/games/tiger-tank-59-super-tank-mp022" + }, + { + "slug": "tiger-tank-59-super-tank-mp023", + "name": "Tiger Tank 59 Ⅰ Super Tank MP023", + "url": "/v1/games/tiger-tank-59-super-tank-mp023" + }, + { + "slug": "tiger-tank-59-super-tank-mp024", + "name": "Tiger Tank 59 Ⅰ Super Tank MP024", + "url": "/v1/games/tiger-tank-59-super-tank-mp024" + }, + { + "slug": "tiger-tank-59-super-tank-mp025", + "name": "Tiger Tank 59 Ⅰ Super Tank MP025", + "url": "/v1/games/tiger-tank-59-super-tank-mp025" + }, + { + "slug": "tiger-tank-59-super-tank-mp026", + "name": "Tiger Tank 59 Ⅰ Super Tank MP026", + "url": "/v1/games/tiger-tank-59-super-tank-mp026" + }, + { + "slug": "tiger-tank-59-super-tank-mp027", + "name": "Tiger Tank 59 Ⅰ Super Tank MP027", + "url": "/v1/games/tiger-tank-59-super-tank-mp027" + }, + { + "slug": "tiger-tank-59-super-tank-mp028", + "name": "Tiger Tank 59 Ⅰ Super Tank MP028", + "url": "/v1/games/tiger-tank-59-super-tank-mp028" + }, + { + "slug": "tiger-tank-59-super-tank-mp029", + "name": "Tiger Tank 59 Ⅰ Super Tank MP029", + "url": "/v1/games/tiger-tank-59-super-tank-mp029" + }, + { + "slug": "tiger-tank-59-super-tank-mp030", + "name": "Tiger Tank 59 Ⅰ Super Tank MP030", + "url": "/v1/games/tiger-tank-59-super-tank-mp030" + }, + { + "slug": "tiger-tank-59-super-tank-mp031", + "name": "Tiger Tank 59 Ⅰ Super Tank MP031", + "url": "/v1/games/tiger-tank-59-super-tank-mp031" + }, + { + "slug": "tiger-tank-59-super-tank-mp032", + "name": "Tiger Tank 59 Ⅰ Super Tank MP032", + "url": "/v1/games/tiger-tank-59-super-tank-mp032" + }, + { + "slug": "tiger-tank-59-super-tank-mp033", + "name": "Tiger Tank 59 Ⅰ Super Tank MP033", + "url": "/v1/games/tiger-tank-59-super-tank-mp033" + }, + { + "slug": "tiger-tank-59-super-tank-mp034", + "name": "Tiger Tank 59 Ⅰ Super Tank MP034", + "url": "/v1/games/tiger-tank-59-super-tank-mp034" + }, + { + "slug": "tiger-tank-59-super-tank-mp035", + "name": "Tiger Tank 59 Ⅰ Super Tank MP035", + "url": "/v1/games/tiger-tank-59-super-tank-mp035" + }, + { + "slug": "tiger-tank-59-super-tank-mp036", + "name": "Tiger Tank 59 Ⅰ Super Tank MP036", + "url": "/v1/games/tiger-tank-59-super-tank-mp036" + }, + { + "slug": "tiger-tank-59-super-tank-mp037", + "name": "Tiger Tank 59 Ⅰ Super Tank MP037", + "url": "/v1/games/tiger-tank-59-super-tank-mp037" + }, + { + "slug": "tiger-tank-59-super-tank-mp038", + "name": "Tiger Tank 59 Ⅰ Super Tank MP038", + "url": "/v1/games/tiger-tank-59-super-tank-mp038" + }, + { + "slug": "tiger-tank-59-super-tank-mp039", + "name": "Tiger Tank 59 Ⅰ Super Tank MP039", + "url": "/v1/games/tiger-tank-59-super-tank-mp039" + }, + { + "slug": "tiger-tank-59-super-tank-mp040", + "name": "Tiger Tank 59 Ⅰ Super Tank MP040", + "url": "/v1/games/tiger-tank-59-super-tank-mp040" + }, + { + "slug": "tiger-tank-59-super-tank-mp041", + "name": "Tiger Tank 59 Ⅰ Super Tank MP041", + "url": "/v1/games/tiger-tank-59-super-tank-mp041" + }, + { + "slug": "tiger-tank-59-super-tank-mp042", + "name": "Tiger Tank 59 Ⅰ Super Tank MP042", + "url": "/v1/games/tiger-tank-59-super-tank-mp042" + }, + { + "slug": "tiger-tank-59-super-tank-mp043", + "name": "Tiger Tank 59 Ⅰ Super Tank MP043", + "url": "/v1/games/tiger-tank-59-super-tank-mp043" + }, + { + "slug": "tiger-tank-59-super-tank-mp044", + "name": "Tiger Tank 59 Ⅰ Super Tank MP044", + "url": "/v1/games/tiger-tank-59-super-tank-mp044" + }, + { + "slug": "tiger-tank-59-super-tank-mp045", + "name": "Tiger Tank 59 Ⅰ Super Tank MP045", + "url": "/v1/games/tiger-tank-59-super-tank-mp045" + }, + { + "slug": "tiger-tank-59-super-tank-mp046", + "name": "Tiger Tank 59 Ⅰ Super Tank MP046", + "url": "/v1/games/tiger-tank-59-super-tank-mp046" + }, + { + "slug": "tiger-tank-59-super-tank-mp047", + "name": "Tiger Tank 59 Ⅰ Super Tank MP047", + "url": "/v1/games/tiger-tank-59-super-tank-mp047" + }, + { + "slug": "tiger-tank-59-super-tank-mp048", + "name": "Tiger Tank 59 Ⅰ Super Tank MP048", + "url": "/v1/games/tiger-tank-59-super-tank-mp048" + }, + { + "slug": "tiger-tank-59-super-tank-mp049", + "name": "Tiger Tank 59 Ⅰ Super Tank MP049", + "url": "/v1/games/tiger-tank-59-super-tank-mp049" + }, + { + "slug": "tiger-tank-59-super-tank-mp050", + "name": "Tiger Tank 59 Ⅰ Super Tank MP050", + "url": "/v1/games/tiger-tank-59-super-tank-mp050" + }, + { + "slug": "tiger-tank-59-super-tank-mp051", + "name": "Tiger Tank 59 Ⅰ Super Tank MP051", + "url": "/v1/games/tiger-tank-59-super-tank-mp051" + }, + { + "slug": "tiger-tank-59-super-tank-mp052", + "name": "Tiger Tank 59 Ⅰ Super Tank MP052", + "url": "/v1/games/tiger-tank-59-super-tank-mp052" + }, + { + "slug": "tiger-tank-59-super-tank-mp053", + "name": "Tiger Tank 59 Ⅰ Super Tank MP053", + "url": "/v1/games/tiger-tank-59-super-tank-mp053" + }, + { + "slug": "tiger-tank-59-super-tank-mp054", + "name": "Tiger Tank 59 Ⅰ Super Tank MP054", + "url": "/v1/games/tiger-tank-59-super-tank-mp054" + }, + { + "slug": "tiger-tank-59-super-tank-mp055", + "name": "Tiger Tank 59 Ⅰ Super Tank MP055", + "url": "/v1/games/tiger-tank-59-super-tank-mp055" + }, + { + "slug": "tiger-tank-59-super-tank-mp056", + "name": "Tiger Tank 59 Ⅰ Super Tank MP056", + "url": "/v1/games/tiger-tank-59-super-tank-mp056" + }, + { + "slug": "tiger-tank-59-super-tank-mp057", + "name": "Tiger Tank 59 Ⅰ Super Tank MP057", + "url": "/v1/games/tiger-tank-59-super-tank-mp057" + }, + { + "slug": "tiger-tank-59-super-tank-mp058", + "name": "Tiger Tank 59 Ⅰ Super Tank MP058", + "url": "/v1/games/tiger-tank-59-super-tank-mp058" + }, + { + "slug": "tiger-tank-59-super-tank-mp059", + "name": "Tiger Tank 59 Ⅰ Super Tank MP059", + "url": "/v1/games/tiger-tank-59-super-tank-mp059" + }, + { + "slug": "tiger-tank-59-super-tank-mp060", + "name": "Tiger Tank 59 Ⅰ Super Tank MP060", + "url": "/v1/games/tiger-tank-59-super-tank-mp060" + }, + { + "slug": "tiger-tank-59-super-tank-mp061", + "name": "Tiger Tank 59 Ⅰ Super Tank MP061", + "url": "/v1/games/tiger-tank-59-super-tank-mp061" + }, + { + "slug": "tiger-tank-59-super-tank-mp062", + "name": "Tiger Tank 59 Ⅰ Super Tank MP062", + "url": "/v1/games/tiger-tank-59-super-tank-mp062" + }, + { + "slug": "tiger-tank-59-super-tank-mp063", + "name": "Tiger Tank 59 Ⅰ Super Tank MP063", + "url": "/v1/games/tiger-tank-59-super-tank-mp063" + }, + { + "slug": "tiger-tank-59-super-tank-mp064", + "name": "Tiger Tank 59 Ⅰ Super Tank MP064", + "url": "/v1/games/tiger-tank-59-super-tank-mp064" + }, + { + "slug": "tiger-tank-59-super-tank-mp065", + "name": "Tiger Tank 59 Ⅰ Super Tank MP065", + "url": "/v1/games/tiger-tank-59-super-tank-mp065" + }, + { + "slug": "tiger-tank-59-super-tank-mp066", + "name": "Tiger Tank 59 Ⅰ Super Tank MP066", + "url": "/v1/games/tiger-tank-59-super-tank-mp066" + }, + { + "slug": "tiger-tank-59-super-tank-mp067", + "name": "Tiger Tank 59 Ⅰ Super Tank MP067", + "url": "/v1/games/tiger-tank-59-super-tank-mp067" + }, + { + "slug": "tiger-tank-59-super-tank-mp068", + "name": "Tiger Tank 59 Ⅰ Super Tank MP068", + "url": "/v1/games/tiger-tank-59-super-tank-mp068" + }, + { + "slug": "tiger-tank-59-super-tank-mp069", + "name": "Tiger Tank 59 Ⅰ Super Tank MP069", + "url": "/v1/games/tiger-tank-59-super-tank-mp069" + }, + { + "slug": "tiger-tank-59-super-tank-mp070", + "name": "Tiger Tank 59 Ⅰ Super Tank MP070", + "url": "/v1/games/tiger-tank-59-super-tank-mp070" + }, + { + "slug": "tiger-tank-59-super-tank-mp071", + "name": "Tiger Tank 59 Ⅰ Super Tank MP071", + "url": "/v1/games/tiger-tank-59-super-tank-mp071" + }, + { + "slug": "tiger-tank-59-super-tank-mp072", + "name": "Tiger Tank 59 Ⅰ Super Tank MP072", + "url": "/v1/games/tiger-tank-59-super-tank-mp072" + }, + { + "slug": "tiger-tank-59-super-tank-mp073", + "name": "Tiger Tank 59 Ⅰ Super Tank MP073", + "url": "/v1/games/tiger-tank-59-super-tank-mp073" + }, + { + "slug": "tiger-tank-59-super-tank-mp074", + "name": "Tiger Tank 59 Ⅰ Super Tank MP074", + "url": "/v1/games/tiger-tank-59-super-tank-mp074" + }, + { + "slug": "tiger-tank-59-super-tank-mp075", + "name": "Tiger Tank 59 Ⅰ Super Tank MP075", + "url": "/v1/games/tiger-tank-59-super-tank-mp075" + }, + { + "slug": "tiger-tank-59-super-tank-mp076", + "name": "Tiger Tank 59 Ⅰ Super Tank MP076", + "url": "/v1/games/tiger-tank-59-super-tank-mp076" + }, + { + "slug": "tiger-tank-59-super-tank-mp077", + "name": "Tiger Tank 59 Ⅰ Super Tank MP077", + "url": "/v1/games/tiger-tank-59-super-tank-mp077" + }, + { + "slug": "tiger-tank-59-super-tank-mp078", + "name": "Tiger Tank 59 Ⅰ Super Tank MP078", + "url": "/v1/games/tiger-tank-59-super-tank-mp078" + }, + { + "slug": "tiger-tank-59-super-tank-mp079", + "name": "Tiger Tank 59 Ⅰ Super Tank MP079", + "url": "/v1/games/tiger-tank-59-super-tank-mp079" + }, + { + "slug": "tiger-tank-59-super-tank-mp080", + "name": "Tiger Tank 59 Ⅰ Super Tank MP080", + "url": "/v1/games/tiger-tank-59-super-tank-mp080" + }, + { + "slug": "tiger-tank-59-super-tank-mp081", + "name": "Tiger Tank 59 Ⅰ Super Tank MP081", + "url": "/v1/games/tiger-tank-59-super-tank-mp081" + }, + { + "slug": "tiger-tank-59-super-tank-mp082", + "name": "Tiger Tank 59 Ⅰ Super Tank MP082", + "url": "/v1/games/tiger-tank-59-super-tank-mp082" + }, + { + "slug": "tiger-tank-59-super-tank-mp083", + "name": "Tiger Tank 59 Ⅰ Super Tank MP083", + "url": "/v1/games/tiger-tank-59-super-tank-mp083" + }, + { + "slug": "tiger-tank-59-super-tank-mp084", + "name": "Tiger Tank 59 Ⅰ Super Tank MP084", + "url": "/v1/games/tiger-tank-59-super-tank-mp084" + }, + { + "slug": "tiger-tank-59-super-tank-mp085", + "name": "Tiger Tank 59 Ⅰ Super Tank MP085", + "url": "/v1/games/tiger-tank-59-super-tank-mp085" + }, + { + "slug": "tiger-tank-59-super-tank-mp086", + "name": "Tiger Tank 59 Ⅰ Super Tank MP086", + "url": "/v1/games/tiger-tank-59-super-tank-mp086" + }, + { + "slug": "tiger-tank-59-super-tank-mp087", + "name": "Tiger Tank 59 Ⅰ Super Tank MP087", + "url": "/v1/games/tiger-tank-59-super-tank-mp087" + }, + { + "slug": "tiger-tank-59-super-tank-mp088", + "name": "Tiger Tank 59 Ⅰ Super Tank MP088", + "url": "/v1/games/tiger-tank-59-super-tank-mp088" + }, + { + "slug": "tiger-tank-59-super-tank-mp089", + "name": "Tiger Tank 59 Ⅰ Super Tank MP089", + "url": "/v1/games/tiger-tank-59-super-tank-mp089" + }, + { + "slug": "tiger-tank-59-super-tank-mp090", + "name": "Tiger Tank 59 Ⅰ Super Tank MP090", + "url": "/v1/games/tiger-tank-59-super-tank-mp090" + }, + { + "slug": "tiger-tank-59-super-tank-mp091", + "name": "Tiger Tank 59 Ⅰ Super Tank MP091", + "url": "/v1/games/tiger-tank-59-super-tank-mp091" + }, + { + "slug": "tiger-tank-59-super-tank-mp092", + "name": "Tiger Tank 59 Ⅰ Super Tank MP092", + "url": "/v1/games/tiger-tank-59-super-tank-mp092" + }, + { + "slug": "tiger-tank-59-super-tank-mp093", + "name": "Tiger Tank 59 Ⅰ Super Tank MP093", + "url": "/v1/games/tiger-tank-59-super-tank-mp093" + }, + { + "slug": "tiger-tank-59-super-tank-mp094", + "name": "Tiger Tank 59 Ⅰ Super Tank MP094", + "url": "/v1/games/tiger-tank-59-super-tank-mp094" + }, + { + "slug": "tiger-tank-59-super-tank-mp095", + "name": "Tiger Tank 59 Ⅰ Super Tank MP095", + "url": "/v1/games/tiger-tank-59-super-tank-mp095" + }, + { + "slug": "tiger-tank-59-super-tank-mp096", + "name": "Tiger Tank 59 Ⅰ Super Tank MP096", + "url": "/v1/games/tiger-tank-59-super-tank-mp096" + }, + { + "slug": "tiger-tank-59-super-tank-mp097", + "name": "Tiger Tank 59 Ⅰ Super Tank MP097", + "url": "/v1/games/tiger-tank-59-super-tank-mp097" + }, + { + "slug": "tiger-tank-59-super-tank-mp098", + "name": "Tiger Tank 59 Ⅰ Super Tank MP098", + "url": "/v1/games/tiger-tank-59-super-tank-mp098" + }, + { + "slug": "tiger-tank-59-super-tank-mp099", + "name": "Tiger Tank 59 Ⅰ Super Tank MP099", + "url": "/v1/games/tiger-tank-59-super-tank-mp099" + }, + { + "slug": "tiger-tank-59-super-tank-mp100", + "name": "Tiger Tank 59 Ⅰ Super Tank MP100", + "url": "/v1/games/tiger-tank-59-super-tank-mp100" + }, { "slug": "tiger-tank-59-volcano", "name": "Tiger Tank 59 Ⅰ Volcano", "url": "/v1/games/tiger-tank-59-volcano" }, + { + "slug": "tiger-tank-59-volcano-mp001", + "name": "Tiger Tank 59 Ⅰ Volcano MP001", + "url": "/v1/games/tiger-tank-59-volcano-mp001" + }, + { + "slug": "tiger-tank-59-volcano-mp002", + "name": "Tiger Tank 59 Ⅰ Volcano MP002", + "url": "/v1/games/tiger-tank-59-volcano-mp002" + }, + { + "slug": "tiger-tank-59-volcano-mp003", + "name": "Tiger Tank 59 Ⅰ Volcano MP003", + "url": "/v1/games/tiger-tank-59-volcano-mp003" + }, + { + "slug": "tiger-tank-59-volcano-mp004", + "name": "Tiger Tank 59 Ⅰ Volcano MP004", + "url": "/v1/games/tiger-tank-59-volcano-mp004" + }, + { + "slug": "tiger-tank-59-volcano-mp005", + "name": "Tiger Tank 59 Ⅰ Volcano MP005", + "url": "/v1/games/tiger-tank-59-volcano-mp005" + }, + { + "slug": "tiger-tank-59-volcano-mp006", + "name": "Tiger Tank 59 Ⅰ Volcano MP006", + "url": "/v1/games/tiger-tank-59-volcano-mp006" + }, + { + "slug": "tiger-tank-59-volcano-mp007", + "name": "Tiger Tank 59 Ⅰ Volcano MP007", + "url": "/v1/games/tiger-tank-59-volcano-mp007" + }, + { + "slug": "tiger-tank-59-volcano-mp008", + "name": "Tiger Tank 59 Ⅰ Volcano MP008", + "url": "/v1/games/tiger-tank-59-volcano-mp008" + }, + { + "slug": "tiger-tank-59-volcano-mp009", + "name": "Tiger Tank 59 Ⅰ Volcano MP009", + "url": "/v1/games/tiger-tank-59-volcano-mp009" + }, + { + "slug": "tiger-tank-59-volcano-mp010", + "name": "Tiger Tank 59 Ⅰ Volcano MP010", + "url": "/v1/games/tiger-tank-59-volcano-mp010" + }, + { + "slug": "tiger-tank-59-volcano-mp011", + "name": "Tiger Tank 59 Ⅰ Volcano MP011", + "url": "/v1/games/tiger-tank-59-volcano-mp011" + }, + { + "slug": "tiger-tank-59-volcano-mp012", + "name": "Tiger Tank 59 Ⅰ Volcano MP012", + "url": "/v1/games/tiger-tank-59-volcano-mp012" + }, + { + "slug": "tiger-tank-59-volcano-mp013", + "name": "Tiger Tank 59 Ⅰ Volcano MP013", + "url": "/v1/games/tiger-tank-59-volcano-mp013" + }, + { + "slug": "tiger-tank-59-volcano-mp014", + "name": "Tiger Tank 59 Ⅰ Volcano MP014", + "url": "/v1/games/tiger-tank-59-volcano-mp014" + }, + { + "slug": "tiger-tank-59-volcano-mp015", + "name": "Tiger Tank 59 Ⅰ Volcano MP015", + "url": "/v1/games/tiger-tank-59-volcano-mp015" + }, + { + "slug": "tiger-tank-59-volcano-mp016", + "name": "Tiger Tank 59 Ⅰ Volcano MP016", + "url": "/v1/games/tiger-tank-59-volcano-mp016" + }, + { + "slug": "tiger-tank-59-volcano-mp017", + "name": "Tiger Tank 59 Ⅰ Volcano MP017", + "url": "/v1/games/tiger-tank-59-volcano-mp017" + }, + { + "slug": "tiger-tank-59-volcano-mp018", + "name": "Tiger Tank 59 Ⅰ Volcano MP018", + "url": "/v1/games/tiger-tank-59-volcano-mp018" + }, + { + "slug": "tiger-tank-59-volcano-mp019", + "name": "Tiger Tank 59 Ⅰ Volcano MP019", + "url": "/v1/games/tiger-tank-59-volcano-mp019" + }, + { + "slug": "tiger-tank-59-volcano-mp020", + "name": "Tiger Tank 59 Ⅰ Volcano MP020", + "url": "/v1/games/tiger-tank-59-volcano-mp020" + }, + { + "slug": "tiger-tank-59-volcano-mp021", + "name": "Tiger Tank 59 Ⅰ Volcano MP021", + "url": "/v1/games/tiger-tank-59-volcano-mp021" + }, + { + "slug": "tiger-tank-59-volcano-mp022", + "name": "Tiger Tank 59 Ⅰ Volcano MP022", + "url": "/v1/games/tiger-tank-59-volcano-mp022" + }, + { + "slug": "tiger-tank-59-volcano-mp023", + "name": "Tiger Tank 59 Ⅰ Volcano MP023", + "url": "/v1/games/tiger-tank-59-volcano-mp023" + }, + { + "slug": "tiger-tank-59-volcano-mp024", + "name": "Tiger Tank 59 Ⅰ Volcano MP024", + "url": "/v1/games/tiger-tank-59-volcano-mp024" + }, + { + "slug": "tiger-tank-59-volcano-mp025", + "name": "Tiger Tank 59 Ⅰ Volcano MP025", + "url": "/v1/games/tiger-tank-59-volcano-mp025" + }, + { + "slug": "tiger-tank-59-volcano-mp026", + "name": "Tiger Tank 59 Ⅰ Volcano MP026", + "url": "/v1/games/tiger-tank-59-volcano-mp026" + }, + { + "slug": "tiger-tank-59-volcano-mp027", + "name": "Tiger Tank 59 Ⅰ Volcano MP027", + "url": "/v1/games/tiger-tank-59-volcano-mp027" + }, + { + "slug": "tiger-tank-59-volcano-mp028", + "name": "Tiger Tank 59 Ⅰ Volcano MP028", + "url": "/v1/games/tiger-tank-59-volcano-mp028" + }, + { + "slug": "tiger-tank-59-volcano-mp029", + "name": "Tiger Tank 59 Ⅰ Volcano MP029", + "url": "/v1/games/tiger-tank-59-volcano-mp029" + }, + { + "slug": "tiger-tank-59-volcano-mp030", + "name": "Tiger Tank 59 Ⅰ Volcano MP030", + "url": "/v1/games/tiger-tank-59-volcano-mp030" + }, + { + "slug": "tiger-tank-59-volcano-mp031", + "name": "Tiger Tank 59 Ⅰ Volcano MP031", + "url": "/v1/games/tiger-tank-59-volcano-mp031" + }, + { + "slug": "tiger-tank-59-volcano-mp032", + "name": "Tiger Tank 59 Ⅰ Volcano MP032", + "url": "/v1/games/tiger-tank-59-volcano-mp032" + }, + { + "slug": "tiger-tank-59-volcano-mp033", + "name": "Tiger Tank 59 Ⅰ Volcano MP033", + "url": "/v1/games/tiger-tank-59-volcano-mp033" + }, + { + "slug": "tiger-tank-59-volcano-mp034", + "name": "Tiger Tank 59 Ⅰ Volcano MP034", + "url": "/v1/games/tiger-tank-59-volcano-mp034" + }, + { + "slug": "tiger-tank-59-volcano-mp035", + "name": "Tiger Tank 59 Ⅰ Volcano MP035", + "url": "/v1/games/tiger-tank-59-volcano-mp035" + }, + { + "slug": "tiger-tank-59-volcano-mp036", + "name": "Tiger Tank 59 Ⅰ Volcano MP036", + "url": "/v1/games/tiger-tank-59-volcano-mp036" + }, + { + "slug": "tiger-tank-59-volcano-mp037", + "name": "Tiger Tank 59 Ⅰ Volcano MP037", + "url": "/v1/games/tiger-tank-59-volcano-mp037" + }, + { + "slug": "tiger-tank-59-volcano-mp038", + "name": "Tiger Tank 59 Ⅰ Volcano MP038", + "url": "/v1/games/tiger-tank-59-volcano-mp038" + }, + { + "slug": "tiger-tank-59-volcano-mp039", + "name": "Tiger Tank 59 Ⅰ Volcano MP039", + "url": "/v1/games/tiger-tank-59-volcano-mp039" + }, + { + "slug": "tiger-tank-59-volcano-mp040", + "name": "Tiger Tank 59 Ⅰ Volcano MP040", + "url": "/v1/games/tiger-tank-59-volcano-mp040" + }, + { + "slug": "tiger-tank-59-volcano-mp041", + "name": "Tiger Tank 59 Ⅰ Volcano MP041", + "url": "/v1/games/tiger-tank-59-volcano-mp041" + }, + { + "slug": "tiger-tank-59-volcano-mp042", + "name": "Tiger Tank 59 Ⅰ Volcano MP042", + "url": "/v1/games/tiger-tank-59-volcano-mp042" + }, + { + "slug": "tiger-tank-59-volcano-mp043", + "name": "Tiger Tank 59 Ⅰ Volcano MP043", + "url": "/v1/games/tiger-tank-59-volcano-mp043" + }, + { + "slug": "tiger-tank-59-volcano-mp044", + "name": "Tiger Tank 59 Ⅰ Volcano MP044", + "url": "/v1/games/tiger-tank-59-volcano-mp044" + }, + { + "slug": "tiger-tank-59-volcano-mp045", + "name": "Tiger Tank 59 Ⅰ Volcano MP045", + "url": "/v1/games/tiger-tank-59-volcano-mp045" + }, + { + "slug": "tiger-tank-59-volcano-mp046", + "name": "Tiger Tank 59 Ⅰ Volcano MP046", + "url": "/v1/games/tiger-tank-59-volcano-mp046" + }, + { + "slug": "tiger-tank-59-volcano-mp047", + "name": "Tiger Tank 59 Ⅰ Volcano MP047", + "url": "/v1/games/tiger-tank-59-volcano-mp047" + }, + { + "slug": "tiger-tank-59-volcano-mp048", + "name": "Tiger Tank 59 Ⅰ Volcano MP048", + "url": "/v1/games/tiger-tank-59-volcano-mp048" + }, + { + "slug": "tiger-tank-59-volcano-mp049", + "name": "Tiger Tank 59 Ⅰ Volcano MP049", + "url": "/v1/games/tiger-tank-59-volcano-mp049" + }, + { + "slug": "tiger-tank-59-volcano-mp050", + "name": "Tiger Tank 59 Ⅰ Volcano MP050", + "url": "/v1/games/tiger-tank-59-volcano-mp050" + }, + { + "slug": "tiger-tank-59-volcano-mp051", + "name": "Tiger Tank 59 Ⅰ Volcano MP051", + "url": "/v1/games/tiger-tank-59-volcano-mp051" + }, + { + "slug": "tiger-tank-59-volcano-mp052", + "name": "Tiger Tank 59 Ⅰ Volcano MP052", + "url": "/v1/games/tiger-tank-59-volcano-mp052" + }, + { + "slug": "tiger-tank-59-volcano-mp053", + "name": "Tiger Tank 59 Ⅰ Volcano MP053", + "url": "/v1/games/tiger-tank-59-volcano-mp053" + }, + { + "slug": "tiger-tank-59-volcano-mp054", + "name": "Tiger Tank 59 Ⅰ Volcano MP054", + "url": "/v1/games/tiger-tank-59-volcano-mp054" + }, + { + "slug": "tiger-tank-59-volcano-mp055", + "name": "Tiger Tank 59 Ⅰ Volcano MP055", + "url": "/v1/games/tiger-tank-59-volcano-mp055" + }, + { + "slug": "tiger-tank-59-volcano-mp056", + "name": "Tiger Tank 59 Ⅰ Volcano MP056", + "url": "/v1/games/tiger-tank-59-volcano-mp056" + }, + { + "slug": "tiger-tank-59-volcano-mp057", + "name": "Tiger Tank 59 Ⅰ Volcano MP057", + "url": "/v1/games/tiger-tank-59-volcano-mp057" + }, + { + "slug": "tiger-tank-59-volcano-mp058", + "name": "Tiger Tank 59 Ⅰ Volcano MP058", + "url": "/v1/games/tiger-tank-59-volcano-mp058" + }, + { + "slug": "tiger-tank-59-volcano-mp059", + "name": "Tiger Tank 59 Ⅰ Volcano MP059", + "url": "/v1/games/tiger-tank-59-volcano-mp059" + }, + { + "slug": "tiger-tank-59-volcano-mp060", + "name": "Tiger Tank 59 Ⅰ Volcano MP060", + "url": "/v1/games/tiger-tank-59-volcano-mp060" + }, + { + "slug": "tiger-tank-59-volcano-mp061", + "name": "Tiger Tank 59 Ⅰ Volcano MP061", + "url": "/v1/games/tiger-tank-59-volcano-mp061" + }, + { + "slug": "tiger-tank-59-volcano-mp062", + "name": "Tiger Tank 59 Ⅰ Volcano MP062", + "url": "/v1/games/tiger-tank-59-volcano-mp062" + }, + { + "slug": "tiger-tank-59-volcano-mp063", + "name": "Tiger Tank 59 Ⅰ Volcano MP063", + "url": "/v1/games/tiger-tank-59-volcano-mp063" + }, + { + "slug": "tiger-tank-59-volcano-mp064", + "name": "Tiger Tank 59 Ⅰ Volcano MP064", + "url": "/v1/games/tiger-tank-59-volcano-mp064" + }, + { + "slug": "tiger-tank-59-volcano-mp065", + "name": "Tiger Tank 59 Ⅰ Volcano MP065", + "url": "/v1/games/tiger-tank-59-volcano-mp065" + }, + { + "slug": "tiger-tank-59-volcano-mp066", + "name": "Tiger Tank 59 Ⅰ Volcano MP066", + "url": "/v1/games/tiger-tank-59-volcano-mp066" + }, + { + "slug": "tiger-tank-59-volcano-mp067", + "name": "Tiger Tank 59 Ⅰ Volcano MP067", + "url": "/v1/games/tiger-tank-59-volcano-mp067" + }, + { + "slug": "tiger-tank-59-volcano-mp068", + "name": "Tiger Tank 59 Ⅰ Volcano MP068", + "url": "/v1/games/tiger-tank-59-volcano-mp068" + }, + { + "slug": "tiger-tank-59-volcano-mp069", + "name": "Tiger Tank 59 Ⅰ Volcano MP069", + "url": "/v1/games/tiger-tank-59-volcano-mp069" + }, + { + "slug": "tiger-tank-59-volcano-mp070", + "name": "Tiger Tank 59 Ⅰ Volcano MP070", + "url": "/v1/games/tiger-tank-59-volcano-mp070" + }, + { + "slug": "tiger-tank-59-volcano-mp071", + "name": "Tiger Tank 59 Ⅰ Volcano MP071", + "url": "/v1/games/tiger-tank-59-volcano-mp071" + }, + { + "slug": "tiger-tank-59-volcano-mp072", + "name": "Tiger Tank 59 Ⅰ Volcano MP072", + "url": "/v1/games/tiger-tank-59-volcano-mp072" + }, + { + "slug": "tiger-tank-59-volcano-mp073", + "name": "Tiger Tank 59 Ⅰ Volcano MP073", + "url": "/v1/games/tiger-tank-59-volcano-mp073" + }, + { + "slug": "tiger-tank-59-volcano-mp074", + "name": "Tiger Tank 59 Ⅰ Volcano MP074", + "url": "/v1/games/tiger-tank-59-volcano-mp074" + }, + { + "slug": "tiger-tank-59-volcano-mp075", + "name": "Tiger Tank 59 Ⅰ Volcano MP075", + "url": "/v1/games/tiger-tank-59-volcano-mp075" + }, + { + "slug": "tiger-tank-59-volcano-mp076", + "name": "Tiger Tank 59 Ⅰ Volcano MP076", + "url": "/v1/games/tiger-tank-59-volcano-mp076" + }, + { + "slug": "tiger-tank-59-volcano-mp077", + "name": "Tiger Tank 59 Ⅰ Volcano MP077", + "url": "/v1/games/tiger-tank-59-volcano-mp077" + }, + { + "slug": "tiger-tank-59-volcano-mp078", + "name": "Tiger Tank 59 Ⅰ Volcano MP078", + "url": "/v1/games/tiger-tank-59-volcano-mp078" + }, + { + "slug": "tiger-tank-59-volcano-mp079", + "name": "Tiger Tank 59 Ⅰ Volcano MP079", + "url": "/v1/games/tiger-tank-59-volcano-mp079" + }, + { + "slug": "tiger-tank-59-volcano-mp080", + "name": "Tiger Tank 59 Ⅰ Volcano MP080", + "url": "/v1/games/tiger-tank-59-volcano-mp080" + }, + { + "slug": "tiger-tank-59-volcano-mp081", + "name": "Tiger Tank 59 Ⅰ Volcano MP081", + "url": "/v1/games/tiger-tank-59-volcano-mp081" + }, + { + "slug": "tiger-tank-59-volcano-mp082", + "name": "Tiger Tank 59 Ⅰ Volcano MP082", + "url": "/v1/games/tiger-tank-59-volcano-mp082" + }, + { + "slug": "tiger-tank-59-volcano-mp083", + "name": "Tiger Tank 59 Ⅰ Volcano MP083", + "url": "/v1/games/tiger-tank-59-volcano-mp083" + }, + { + "slug": "tiger-tank-59-volcano-mp084", + "name": "Tiger Tank 59 Ⅰ Volcano MP084", + "url": "/v1/games/tiger-tank-59-volcano-mp084" + }, + { + "slug": "tiger-tank-59-volcano-mp085", + "name": "Tiger Tank 59 Ⅰ Volcano MP085", + "url": "/v1/games/tiger-tank-59-volcano-mp085" + }, + { + "slug": "tiger-tank-59-volcano-mp086", + "name": "Tiger Tank 59 Ⅰ Volcano MP086", + "url": "/v1/games/tiger-tank-59-volcano-mp086" + }, + { + "slug": "tiger-tank-59-volcano-mp087", + "name": "Tiger Tank 59 Ⅰ Volcano MP087", + "url": "/v1/games/tiger-tank-59-volcano-mp087" + }, + { + "slug": "tiger-tank-59-volcano-mp088", + "name": "Tiger Tank 59 Ⅰ Volcano MP088", + "url": "/v1/games/tiger-tank-59-volcano-mp088" + }, + { + "slug": "tiger-tank-59-volcano-mp089", + "name": "Tiger Tank 59 Ⅰ Volcano MP089", + "url": "/v1/games/tiger-tank-59-volcano-mp089" + }, + { + "slug": "tiger-tank-59-volcano-mp090", + "name": "Tiger Tank 59 Ⅰ Volcano MP090", + "url": "/v1/games/tiger-tank-59-volcano-mp090" + }, + { + "slug": "tiger-tank-59-volcano-mp091", + "name": "Tiger Tank 59 Ⅰ Volcano MP091", + "url": "/v1/games/tiger-tank-59-volcano-mp091" + }, + { + "slug": "tiger-tank-59-volcano-mp092", + "name": "Tiger Tank 59 Ⅰ Volcano MP092", + "url": "/v1/games/tiger-tank-59-volcano-mp092" + }, + { + "slug": "tiger-tank-59-volcano-mp093", + "name": "Tiger Tank 59 Ⅰ Volcano MP093", + "url": "/v1/games/tiger-tank-59-volcano-mp093" + }, + { + "slug": "tiger-tank-59-volcano-mp094", + "name": "Tiger Tank 59 Ⅰ Volcano MP094", + "url": "/v1/games/tiger-tank-59-volcano-mp094" + }, + { + "slug": "tiger-tank-59-volcano-mp095", + "name": "Tiger Tank 59 Ⅰ Volcano MP095", + "url": "/v1/games/tiger-tank-59-volcano-mp095" + }, + { + "slug": "tiger-tank-59-volcano-mp096", + "name": "Tiger Tank 59 Ⅰ Volcano MP096", + "url": "/v1/games/tiger-tank-59-volcano-mp096" + }, + { + "slug": "tiger-tank-59-volcano-mp097", + "name": "Tiger Tank 59 Ⅰ Volcano MP097", + "url": "/v1/games/tiger-tank-59-volcano-mp097" + }, + { + "slug": "tiger-tank-59-volcano-mp098", + "name": "Tiger Tank 59 Ⅰ Volcano MP098", + "url": "/v1/games/tiger-tank-59-volcano-mp098" + }, + { + "slug": "tiger-tank-59-volcano-mp099", + "name": "Tiger Tank 59 Ⅰ Volcano MP099", + "url": "/v1/games/tiger-tank-59-volcano-mp099" + }, + { + "slug": "tiger-tank-59-volcano-mp100", + "name": "Tiger Tank 59 Ⅰ Volcano MP100", + "url": "/v1/games/tiger-tank-59-volcano-mp100" + }, { "slug": "tiger-tank-59-winter-assault", "name": "Tiger Tank 59 Ⅰ Winter Assault", "url": "/v1/games/tiger-tank-59-winter-assault" }, + { + "slug": "tiger-tank-59-winter-assault-mp001", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP001", + "url": "/v1/games/tiger-tank-59-winter-assault-mp001" + }, + { + "slug": "tiger-tank-59-winter-assault-mp002", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP002", + "url": "/v1/games/tiger-tank-59-winter-assault-mp002" + }, + { + "slug": "tiger-tank-59-winter-assault-mp003", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP003", + "url": "/v1/games/tiger-tank-59-winter-assault-mp003" + }, + { + "slug": "tiger-tank-59-winter-assault-mp004", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP004", + "url": "/v1/games/tiger-tank-59-winter-assault-mp004" + }, + { + "slug": "tiger-tank-59-winter-assault-mp005", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP005", + "url": "/v1/games/tiger-tank-59-winter-assault-mp005" + }, + { + "slug": "tiger-tank-59-winter-assault-mp006", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP006", + "url": "/v1/games/tiger-tank-59-winter-assault-mp006" + }, + { + "slug": "tiger-tank-59-winter-assault-mp007", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP007", + "url": "/v1/games/tiger-tank-59-winter-assault-mp007" + }, + { + "slug": "tiger-tank-59-winter-assault-mp008", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP008", + "url": "/v1/games/tiger-tank-59-winter-assault-mp008" + }, + { + "slug": "tiger-tank-59-winter-assault-mp009", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP009", + "url": "/v1/games/tiger-tank-59-winter-assault-mp009" + }, + { + "slug": "tiger-tank-59-winter-assault-mp010", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP010", + "url": "/v1/games/tiger-tank-59-winter-assault-mp010" + }, + { + "slug": "tiger-tank-59-winter-assault-mp011", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP011", + "url": "/v1/games/tiger-tank-59-winter-assault-mp011" + }, + { + "slug": "tiger-tank-59-winter-assault-mp012", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP012", + "url": "/v1/games/tiger-tank-59-winter-assault-mp012" + }, + { + "slug": "tiger-tank-59-winter-assault-mp013", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP013", + "url": "/v1/games/tiger-tank-59-winter-assault-mp013" + }, + { + "slug": "tiger-tank-59-winter-assault-mp014", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP014", + "url": "/v1/games/tiger-tank-59-winter-assault-mp014" + }, + { + "slug": "tiger-tank-59-winter-assault-mp015", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP015", + "url": "/v1/games/tiger-tank-59-winter-assault-mp015" + }, + { + "slug": "tiger-tank-59-winter-assault-mp016", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP016", + "url": "/v1/games/tiger-tank-59-winter-assault-mp016" + }, + { + "slug": "tiger-tank-59-winter-assault-mp017", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP017", + "url": "/v1/games/tiger-tank-59-winter-assault-mp017" + }, + { + "slug": "tiger-tank-59-winter-assault-mp018", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP018", + "url": "/v1/games/tiger-tank-59-winter-assault-mp018" + }, + { + "slug": "tiger-tank-59-winter-assault-mp019", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP019", + "url": "/v1/games/tiger-tank-59-winter-assault-mp019" + }, + { + "slug": "tiger-tank-59-winter-assault-mp020", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP020", + "url": "/v1/games/tiger-tank-59-winter-assault-mp020" + }, + { + "slug": "tiger-tank-59-winter-assault-mp021", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP021", + "url": "/v1/games/tiger-tank-59-winter-assault-mp021" + }, + { + "slug": "tiger-tank-59-winter-assault-mp022", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP022", + "url": "/v1/games/tiger-tank-59-winter-assault-mp022" + }, + { + "slug": "tiger-tank-59-winter-assault-mp023", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP023", + "url": "/v1/games/tiger-tank-59-winter-assault-mp023" + }, + { + "slug": "tiger-tank-59-winter-assault-mp024", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP024", + "url": "/v1/games/tiger-tank-59-winter-assault-mp024" + }, + { + "slug": "tiger-tank-59-winter-assault-mp025", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP025", + "url": "/v1/games/tiger-tank-59-winter-assault-mp025" + }, + { + "slug": "tiger-tank-59-winter-assault-mp026", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP026", + "url": "/v1/games/tiger-tank-59-winter-assault-mp026" + }, + { + "slug": "tiger-tank-59-winter-assault-mp027", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP027", + "url": "/v1/games/tiger-tank-59-winter-assault-mp027" + }, + { + "slug": "tiger-tank-59-winter-assault-mp028", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP028", + "url": "/v1/games/tiger-tank-59-winter-assault-mp028" + }, + { + "slug": "tiger-tank-59-winter-assault-mp029", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP029", + "url": "/v1/games/tiger-tank-59-winter-assault-mp029" + }, + { + "slug": "tiger-tank-59-winter-assault-mp030", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP030", + "url": "/v1/games/tiger-tank-59-winter-assault-mp030" + }, + { + "slug": "tiger-tank-59-winter-assault-mp031", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP031", + "url": "/v1/games/tiger-tank-59-winter-assault-mp031" + }, + { + "slug": "tiger-tank-59-winter-assault-mp032", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP032", + "url": "/v1/games/tiger-tank-59-winter-assault-mp032" + }, + { + "slug": "tiger-tank-59-winter-assault-mp033", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP033", + "url": "/v1/games/tiger-tank-59-winter-assault-mp033" + }, + { + "slug": "tiger-tank-59-winter-assault-mp034", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP034", + "url": "/v1/games/tiger-tank-59-winter-assault-mp034" + }, + { + "slug": "tiger-tank-59-winter-assault-mp035", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP035", + "url": "/v1/games/tiger-tank-59-winter-assault-mp035" + }, + { + "slug": "tiger-tank-59-winter-assault-mp036", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP036", + "url": "/v1/games/tiger-tank-59-winter-assault-mp036" + }, + { + "slug": "tiger-tank-59-winter-assault-mp037", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP037", + "url": "/v1/games/tiger-tank-59-winter-assault-mp037" + }, + { + "slug": "tiger-tank-59-winter-assault-mp038", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP038", + "url": "/v1/games/tiger-tank-59-winter-assault-mp038" + }, + { + "slug": "tiger-tank-59-winter-assault-mp039", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP039", + "url": "/v1/games/tiger-tank-59-winter-assault-mp039" + }, + { + "slug": "tiger-tank-59-winter-assault-mp040", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP040", + "url": "/v1/games/tiger-tank-59-winter-assault-mp040" + }, + { + "slug": "tiger-tank-59-winter-assault-mp041", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP041", + "url": "/v1/games/tiger-tank-59-winter-assault-mp041" + }, + { + "slug": "tiger-tank-59-winter-assault-mp042", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP042", + "url": "/v1/games/tiger-tank-59-winter-assault-mp042" + }, + { + "slug": "tiger-tank-59-winter-assault-mp043", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP043", + "url": "/v1/games/tiger-tank-59-winter-assault-mp043" + }, + { + "slug": "tiger-tank-59-winter-assault-mp044", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP044", + "url": "/v1/games/tiger-tank-59-winter-assault-mp044" + }, + { + "slug": "tiger-tank-59-winter-assault-mp045", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP045", + "url": "/v1/games/tiger-tank-59-winter-assault-mp045" + }, + { + "slug": "tiger-tank-59-winter-assault-mp046", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP046", + "url": "/v1/games/tiger-tank-59-winter-assault-mp046" + }, + { + "slug": "tiger-tank-59-winter-assault-mp047", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP047", + "url": "/v1/games/tiger-tank-59-winter-assault-mp047" + }, + { + "slug": "tiger-tank-59-winter-assault-mp048", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP048", + "url": "/v1/games/tiger-tank-59-winter-assault-mp048" + }, + { + "slug": "tiger-tank-59-winter-assault-mp049", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP049", + "url": "/v1/games/tiger-tank-59-winter-assault-mp049" + }, + { + "slug": "tiger-tank-59-winter-assault-mp050", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP050", + "url": "/v1/games/tiger-tank-59-winter-assault-mp050" + }, + { + "slug": "tiger-tank-59-winter-assault-mp051", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP051", + "url": "/v1/games/tiger-tank-59-winter-assault-mp051" + }, + { + "slug": "tiger-tank-59-winter-assault-mp052", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP052", + "url": "/v1/games/tiger-tank-59-winter-assault-mp052" + }, + { + "slug": "tiger-tank-59-winter-assault-mp053", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP053", + "url": "/v1/games/tiger-tank-59-winter-assault-mp053" + }, + { + "slug": "tiger-tank-59-winter-assault-mp054", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP054", + "url": "/v1/games/tiger-tank-59-winter-assault-mp054" + }, + { + "slug": "tiger-tank-59-winter-assault-mp055", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP055", + "url": "/v1/games/tiger-tank-59-winter-assault-mp055" + }, + { + "slug": "tiger-tank-59-winter-assault-mp056", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP056", + "url": "/v1/games/tiger-tank-59-winter-assault-mp056" + }, + { + "slug": "tiger-tank-59-winter-assault-mp057", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP057", + "url": "/v1/games/tiger-tank-59-winter-assault-mp057" + }, + { + "slug": "tiger-tank-59-winter-assault-mp058", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP058", + "url": "/v1/games/tiger-tank-59-winter-assault-mp058" + }, + { + "slug": "tiger-tank-59-winter-assault-mp059", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP059", + "url": "/v1/games/tiger-tank-59-winter-assault-mp059" + }, + { + "slug": "tiger-tank-59-winter-assault-mp060", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP060", + "url": "/v1/games/tiger-tank-59-winter-assault-mp060" + }, + { + "slug": "tiger-tank-59-winter-assault-mp061", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP061", + "url": "/v1/games/tiger-tank-59-winter-assault-mp061" + }, + { + "slug": "tiger-tank-59-winter-assault-mp062", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP062", + "url": "/v1/games/tiger-tank-59-winter-assault-mp062" + }, + { + "slug": "tiger-tank-59-winter-assault-mp063", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP063", + "url": "/v1/games/tiger-tank-59-winter-assault-mp063" + }, + { + "slug": "tiger-tank-59-winter-assault-mp064", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP064", + "url": "/v1/games/tiger-tank-59-winter-assault-mp064" + }, + { + "slug": "tiger-tank-59-winter-assault-mp065", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP065", + "url": "/v1/games/tiger-tank-59-winter-assault-mp065" + }, + { + "slug": "tiger-tank-59-winter-assault-mp066", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP066", + "url": "/v1/games/tiger-tank-59-winter-assault-mp066" + }, + { + "slug": "tiger-tank-59-winter-assault-mp067", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP067", + "url": "/v1/games/tiger-tank-59-winter-assault-mp067" + }, + { + "slug": "tiger-tank-59-winter-assault-mp068", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP068", + "url": "/v1/games/tiger-tank-59-winter-assault-mp068" + }, + { + "slug": "tiger-tank-59-winter-assault-mp069", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP069", + "url": "/v1/games/tiger-tank-59-winter-assault-mp069" + }, + { + "slug": "tiger-tank-59-winter-assault-mp070", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP070", + "url": "/v1/games/tiger-tank-59-winter-assault-mp070" + }, + { + "slug": "tiger-tank-59-winter-assault-mp071", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP071", + "url": "/v1/games/tiger-tank-59-winter-assault-mp071" + }, + { + "slug": "tiger-tank-59-winter-assault-mp072", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP072", + "url": "/v1/games/tiger-tank-59-winter-assault-mp072" + }, + { + "slug": "tiger-tank-59-winter-assault-mp073", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP073", + "url": "/v1/games/tiger-tank-59-winter-assault-mp073" + }, + { + "slug": "tiger-tank-59-winter-assault-mp074", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP074", + "url": "/v1/games/tiger-tank-59-winter-assault-mp074" + }, + { + "slug": "tiger-tank-59-winter-assault-mp075", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP075", + "url": "/v1/games/tiger-tank-59-winter-assault-mp075" + }, + { + "slug": "tiger-tank-59-winter-assault-mp076", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP076", + "url": "/v1/games/tiger-tank-59-winter-assault-mp076" + }, + { + "slug": "tiger-tank-59-winter-assault-mp077", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP077", + "url": "/v1/games/tiger-tank-59-winter-assault-mp077" + }, + { + "slug": "tiger-tank-59-winter-assault-mp078", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP078", + "url": "/v1/games/tiger-tank-59-winter-assault-mp078" + }, + { + "slug": "tiger-tank-59-winter-assault-mp079", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP079", + "url": "/v1/games/tiger-tank-59-winter-assault-mp079" + }, + { + "slug": "tiger-tank-59-winter-assault-mp080", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP080", + "url": "/v1/games/tiger-tank-59-winter-assault-mp080" + }, + { + "slug": "tiger-tank-59-winter-assault-mp081", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP081", + "url": "/v1/games/tiger-tank-59-winter-assault-mp081" + }, + { + "slug": "tiger-tank-59-winter-assault-mp082", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP082", + "url": "/v1/games/tiger-tank-59-winter-assault-mp082" + }, + { + "slug": "tiger-tank-59-winter-assault-mp083", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP083", + "url": "/v1/games/tiger-tank-59-winter-assault-mp083" + }, + { + "slug": "tiger-tank-59-winter-assault-mp084", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP084", + "url": "/v1/games/tiger-tank-59-winter-assault-mp084" + }, + { + "slug": "tiger-tank-59-winter-assault-mp085", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP085", + "url": "/v1/games/tiger-tank-59-winter-assault-mp085" + }, + { + "slug": "tiger-tank-59-winter-assault-mp086", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP086", + "url": "/v1/games/tiger-tank-59-winter-assault-mp086" + }, + { + "slug": "tiger-tank-59-winter-assault-mp087", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP087", + "url": "/v1/games/tiger-tank-59-winter-assault-mp087" + }, + { + "slug": "tiger-tank-59-winter-assault-mp088", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP088", + "url": "/v1/games/tiger-tank-59-winter-assault-mp088" + }, + { + "slug": "tiger-tank-59-winter-assault-mp089", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP089", + "url": "/v1/games/tiger-tank-59-winter-assault-mp089" + }, + { + "slug": "tiger-tank-59-winter-assault-mp090", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP090", + "url": "/v1/games/tiger-tank-59-winter-assault-mp090" + }, + { + "slug": "tiger-tank-59-winter-assault-mp091", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP091", + "url": "/v1/games/tiger-tank-59-winter-assault-mp091" + }, + { + "slug": "tiger-tank-59-winter-assault-mp092", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP092", + "url": "/v1/games/tiger-tank-59-winter-assault-mp092" + }, + { + "slug": "tiger-tank-59-winter-assault-mp093", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP093", + "url": "/v1/games/tiger-tank-59-winter-assault-mp093" + }, + { + "slug": "tiger-tank-59-winter-assault-mp094", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP094", + "url": "/v1/games/tiger-tank-59-winter-assault-mp094" + }, + { + "slug": "tiger-tank-59-winter-assault-mp095", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP095", + "url": "/v1/games/tiger-tank-59-winter-assault-mp095" + }, + { + "slug": "tiger-tank-59-winter-assault-mp096", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP096", + "url": "/v1/games/tiger-tank-59-winter-assault-mp096" + }, + { + "slug": "tiger-tank-59-winter-assault-mp097", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP097", + "url": "/v1/games/tiger-tank-59-winter-assault-mp097" + }, + { + "slug": "tiger-tank-59-winter-assault-mp098", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP098", + "url": "/v1/games/tiger-tank-59-winter-assault-mp098" + }, + { + "slug": "tiger-tank-59-winter-assault-mp099", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP099", + "url": "/v1/games/tiger-tank-59-winter-assault-mp099" + }, + { + "slug": "tiger-tank-59-winter-assault-mp100", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP100", + "url": "/v1/games/tiger-tank-59-winter-assault-mp100" + }, { "slug": "tiger-trio-s-tasty-travels", "name": "Tiger Trio's Tasty Travels", @@ -751526,6 +780661,11 @@ "name": "Time Locker", "url": "/v1/games/time-locker" }, + { + "slug": "time-locker-q118235323", + "name": "Time Locker+", + "url": "/v1/games/time-locker-q118235323" + }, { "slug": "time-loop-fighter", "name": "Time Loop Fighter", @@ -752181,6 +781321,11 @@ "name": "Time and Eternity", "url": "/v1/games/time-and-eternity" }, + { + "slug": "time-and-magik-the-trilogy", + "name": "Time and Magik: The Trilogy", + "url": "/v1/games/time-and-magik-the-trilogy" + }, { "slug": "time-for-bed", "name": "Time for Bed", @@ -752436,6 +781581,11 @@ "name": "TimeSplitters 2", "url": "/v1/games/timesplitters-2" }, + { + "slug": "timesplitters-4", + "name": "TimeSplitters 4", + "url": "/v1/games/timesplitters-4" + }, { "slug": "timesplitters-future-perfect", "name": "TimeSplitters: Future Perfect", @@ -752526,6 +781676,11 @@ "name": "Timekeepers Defense", "url": "/v1/games/timekeepers-defense" }, + { + "slug": "timekeepers-expansion-disk", + "name": "Timekeepers Expansion Disk", + "url": "/v1/games/timekeepers-expansion-disk" + }, { "slug": "timelake-time-travel-tactics", "name": "Timelake: Time Travel Tactics", @@ -754031,6 +783186,11 @@ "name": "Tiny Wings", "url": "/v1/games/tiny-wings" }, + { + "slug": "tiny-wings-q108559414", + "name": "Tiny Wings+", + "url": "/v1/games/tiny-wings-q108559414" + }, { "slug": "tiny-witch", "name": "Tiny Witch", @@ -754331,6 +783491,11 @@ "name": "TitTok Kitty", "url": "/v1/games/tittok-kitty" }, + { + "slug": "titan-q4350984", + "name": "Titan", + "url": "/v1/games/titan-q4350984" + }, { "slug": "titan", "name": "Titan", @@ -754346,6 +783511,11 @@ "name": "Titan Attacks!", "url": "/v1/games/titan-attacks" }, + { + "slug": "titan-brawl", + "name": "Titan Brawl", + "url": "/v1/games/titan-brawl" + }, { "slug": "titan-chaser", "name": "Titan Chaser", @@ -754381,11 +783551,21 @@ "name": "Titan Quest", "url": "/v1/games/titan-quest" }, + { + "slug": "titan-quest-anniversary-edition", + "name": "Titan Quest Anniversary Edition", + "url": "/v1/games/titan-quest-anniversary-edition" + }, { "slug": "titan-quest-ii", "name": "Titan Quest II", "url": "/v1/games/titan-quest-ii" }, + { + "slug": "titan-quest-immortal-throne", + "name": "Titan Quest: Immortal Throne", + "url": "/v1/games/titan-quest-immortal-throne" + }, { "slug": "titan-revenge", "name": "Titan Revenge", @@ -754431,6 +783611,11 @@ "name": "Titan: The Ascension", "url": "/v1/games/titan-the-ascension" }, + { + "slug": "titanreach", + "name": "TitanReach", + "url": "/v1/games/titanreach" + }, { "slug": "titanfall-the-final-hours", "name": "Titanfall - The Final Hours", @@ -754441,16 +783626,46 @@ "name": "Titanfall 2", "url": "/v1/games/titanfall-2" }, + { + "slug": "titanfall-2-ultimate-edition", + "name": "Titanfall 2: Ultimate Edition", + "url": "/v1/games/titanfall-2-ultimate-edition" + }, + { + "slug": "titanfall-3", + "name": "Titanfall 3", + "url": "/v1/games/titanfall-3" + }, + { + "slug": "titanfall-deluxe-edition", + "name": "Titanfall Deluxe Edition", + "url": "/v1/games/titanfall-deluxe-edition" + }, + { + "slug": "titanfall-online", + "name": "Titanfall Online", + "url": "/v1/games/titanfall-online" + }, { "slug": "titanfall-assault", "name": "Titanfall: Assault", "url": "/v1/games/titanfall-assault" }, + { + "slug": "titanfall-expedition", + "name": "Titanfall: Expedition", + "url": "/v1/games/titanfall-expedition" + }, { "slug": "titanfall-frontline", "name": "Titanfall: Frontline", "url": "/v1/games/titanfall-frontline" }, + { + "slug": "titanfall-imc-rising", + "name": "Titanfall: IMC Rising", + "url": "/v1/games/titanfall-imc-rising" + }, { "slug": "titanic", "name": "Titanic", @@ -755231,6 +784446,36 @@ "name": "Toads of the Bayou", "url": "/v1/games/toads-of-the-bayou" }, + { + "slug": "toaplan-arcade-shoot-em-up-collection-vol-1", + "name": "Toaplan Arcade Shoot 'Em Up Collection Vol. 1", + "url": "/v1/games/toaplan-arcade-shoot-em-up-collection-vol-1" + }, + { + "slug": "toaplan-arcade-shoot-em-up-collection-vol-2", + "name": "Toaplan Arcade Shoot 'Em Up Collection Vol. 2", + "url": "/v1/games/toaplan-arcade-shoot-em-up-collection-vol-2" + }, + { + "slug": "toaplan-arcade-shoot-em-up-collection-vol-3", + "name": "Toaplan Arcade Shoot 'Em Up Collection Vol. 3", + "url": "/v1/games/toaplan-arcade-shoot-em-up-collection-vol-3" + }, + { + "slug": "toaplan-arcade-shoot-em-up-collection-vol-4", + "name": "Toaplan Arcade Shoot 'Em Up Collection Vol. 4", + "url": "/v1/games/toaplan-arcade-shoot-em-up-collection-vol-4" + }, + { + "slug": "toaplan-arcade-shoot-em-up-ultimate-collection", + "name": "Toaplan Arcade Shoot 'Em Up Ultimate Collection", + "url": "/v1/games/toaplan-arcade-shoot-em-up-ultimate-collection" + }, + { + "slug": "toaplan-shooting-battle-1", + "name": "Toaplan Shooting Battle 1", + "url": "/v1/games/toaplan-shooting-battle-1" + }, { "slug": "toaru-kagaku-no-r-rugan-s-pazuru", "name": "Toaru Kagaku no Rērugan S Pazuru", @@ -756501,6 +785746,11 @@ "name": "Tom Clancy's Ghost Recon Breakpoint", "url": "/v1/games/tom-clancy-s-ghost-recon-breakpoint" }, + { + "slug": "tom-clancy-s-ghost-recon-frontline", + "name": "Tom Clancy's Ghost Recon Frontline", + "url": "/v1/games/tom-clancy-s-ghost-recon-frontline" + }, { "slug": "tom-clancy-s-ghost-recon-phantoms", "name": "Tom Clancy's Ghost Recon Phantoms", @@ -756521,11 +785771,26 @@ "name": "Tom Clancy's Ghost Recon: Commander", "url": "/v1/games/tom-clancy-s-ghost-recon-commander" }, + { + "slug": "tom-clancy-s-ghost-recon-desert-siege", + "name": "Tom Clancy's Ghost Recon: Desert Siege", + "url": "/v1/games/tom-clancy-s-ghost-recon-desert-siege" + }, { "slug": "tom-clancy-s-ghost-recon-future-soldier", "name": "Tom Clancy's Ghost Recon: Future Soldier", "url": "/v1/games/tom-clancy-s-ghost-recon-future-soldier" }, + { + "slug": "tom-clancy-s-ghost-recon-island-thunder", + "name": "Tom Clancy's Ghost Recon: Island Thunder", + "url": "/v1/games/tom-clancy-s-ghost-recon-island-thunder" + }, + { + "slug": "tom-clancy-s-ghost-recon-jungle-storm", + "name": "Tom Clancy's Ghost Recon: Jungle Storm", + "url": "/v1/games/tom-clancy-s-ghost-recon-jungle-storm" + }, { "slug": "tom-clancy-s-ghost-recon-shadow-wars", "name": "Tom Clancy's Ghost Recon: Shadow Wars", @@ -756546,6 +785811,11 @@ "name": "Tom Clancy's Politika", "url": "/v1/games/tom-clancy-s-politika" }, + { + "slug": "tom-clancy-s-rainbow-6-patriots", + "name": "Tom Clancy's Rainbow 6: Patriots", + "url": "/v1/games/tom-clancy-s-rainbow-6-patriots" + }, { "slug": "tom-clancy-s-rainbow-six", "name": "Tom Clancy's Rainbow Six", @@ -756676,6 +785946,11 @@ "name": "Tom Clancy's Splinter Cell: Essentials", "url": "/v1/games/tom-clancy-s-splinter-cell-essentials" }, + { + "slug": "tom-clancy-s-splinter-cell-mission-pack", + "name": "Tom Clancy's Splinter Cell: Mission Pack", + "url": "/v1/games/tom-clancy-s-splinter-cell-mission-pack" + }, { "slug": "tom-clancy-s-splinter-cell-pandora-tomorrow", "name": "Tom Clancy's Splinter Cell: Pandora Tomorrow", @@ -756696,6 +785971,11 @@ "name": "Tom Clancy's The Division 3", "url": "/v1/games/tom-clancy-s-the-division-3" }, + { + "slug": "tom-clancy-s-the-division-heartland", + "name": "Tom Clancy's The Division Heartland", + "url": "/v1/games/tom-clancy-s-the-division-heartland" + }, { "slug": "tom-clancy-s-the-division-resurgence", "name": "Tom Clancy's The Division Resurgence", @@ -756881,6 +786161,11 @@ "name": "Tomato Way 3", "url": "/v1/games/tomato-way-3" }, + { + "slug": "tomazquake", + "name": "TomazQuake", + "url": "/v1/games/tomazquake" + }, { "slug": "tomb-defender", "name": "Tomb Defender", @@ -756946,11 +786231,21 @@ "name": "Tomb Raider - The Final Hours Digital Book", "url": "/v1/games/tomb-raider-the-final-hours-digital-book" }, + { + "slug": "tomb-raider-i-iii-remastered", + "name": "Tomb Raider I-III Remastered", + "url": "/v1/games/tomb-raider-i-iii-remastered" + }, { "slug": "tomb-raider-ii", "name": "Tomb Raider II", "url": "/v1/games/tomb-raider-ii" }, + { + "slug": "tomb-raider-ii-golden-mask", + "name": "Tomb Raider II: Golden Mask", + "url": "/v1/games/tomb-raider-ii-golden-mask" + }, { "slug": "tomb-raider-iii", "name": "Tomb Raider III", @@ -756966,6 +786261,21 @@ "name": "Tomb Raider Reloaded", "url": "/v1/games/tomb-raider-reloaded" }, + { + "slug": "tomb-raider-trilogy", + "name": "Tomb Raider Trilogy", + "url": "/v1/games/tomb-raider-trilogy" + }, + { + "slug": "tomb-raider-underworld-beneath-the-ashes", + "name": "Tomb Raider Underworld: Beneath the Ashes", + "url": "/v1/games/tomb-raider-underworld-beneath-the-ashes" + }, + { + "slug": "tomb-raider-underworld-lara-s-shadow", + "name": "Tomb Raider Underworld: Lara's Shadow", + "url": "/v1/games/tomb-raider-underworld-lara-s-shadow" + }, { "slug": "tomb-raider-anniversary", "name": "Tomb Raider: Anniversary", @@ -756981,6 +786291,16 @@ "name": "Tomb Raider: Curse of the Sword", "url": "/v1/games/tomb-raider-curse-of-the-sword" }, + { + "slug": "tomb-raider-definitive-edition", + "name": "Tomb Raider: Definitive Edition", + "url": "/v1/games/tomb-raider-definitive-edition" + }, + { + "slug": "tomb-raider-definitive-survivor-trilogy", + "name": "Tomb Raider: Definitive Survivor Trilogy", + "url": "/v1/games/tomb-raider-definitive-survivor-trilogy" + }, { "slug": "tomb-raider-elixir-of-life", "name": "Tomb Raider: Elixir of Life", @@ -757026,6 +786346,11 @@ "name": "Tomb Raider: The Last Revelation", "url": "/v1/games/tomb-raider-the-last-revelation" }, + { + "slug": "tomb-raider-the-lost-artifact", + "name": "Tomb Raider: The Lost Artifact", + "url": "/v1/games/tomb-raider-the-lost-artifact" + }, { "slug": "tomb-raider-the-osiris-codex", "name": "Tomb Raider: The Osiris Codex", @@ -757501,6 +786826,11 @@ "name": "Tonic Trouble", "url": "/v1/games/tonic-trouble" }, + { + "slug": "tonic-trouble-2", + "name": "Tonic Trouble 2", + "url": "/v1/games/tonic-trouble-2" + }, { "slug": "tonight-we-riot", "name": "Tonight We Riot", @@ -757566,6 +786896,11 @@ "name": "Tony Hawk's American Wasteland", "url": "/v1/games/tony-hawk-s-american-wasteland" }, + { + "slug": "tony-hawk-s-american-wasteland-collector-s-edition", + "name": "Tony Hawk's American Wasteland: Collector's Edition", + "url": "/v1/games/tony-hawk-s-american-wasteland-collector-s-edition" + }, { "slug": "tony-hawk-s-downhill-jam", "name": "Tony Hawk's Downhill Jam", @@ -758556,6 +787891,11 @@ "name": "Top Troops", "url": "/v1/games/top-troops" }, + { + "slug": "top-trumps-adventures", + "name": "Top Trumps Adventures", + "url": "/v1/games/top-trumps-adventures" + }, { "slug": "top-trumps-adventures-dogs-and-dinosaurs", "name": "Top Trumps Adventures: Dogs and Dinosaurs", @@ -758886,6 +788226,11 @@ "name": "Toree Saturn", "url": "/v1/games/toree-saturn" }, + { + "slug": "toree-s-3d-platformer-collection", + "name": "Toree's 3D Platformer Collection", + "url": "/v1/games/toree-s-3d-platformer-collection" + }, { "slug": "toree-s-panic-pack", "name": "Toree's Panic Pack", @@ -759151,6 +788496,11 @@ "name": "Torn Veil", "url": "/v1/games/torn-veil" }, + { + "slug": "tornado-q122822233", + "name": "Tornado", + "url": "/v1/games/tornado-q122822233" + }, { "slug": "tornado-q136529111", "name": "Tornado", @@ -759211,6 +788561,11 @@ "name": "Tornado!", "url": "/v1/games/tornado-q122350368" }, + { + "slug": "tornado-operation-desert-storm", + "name": "Tornado: Operation Desert Storm", + "url": "/v1/games/tornado-operation-desert-storm" + }, { "slug": "tornado-research-and-rescue", "name": "Tornado: Research and Rescue", @@ -759236,6 +788591,11 @@ "name": "Toro", "url": "/v1/games/toro" }, + { + "slug": "toro-station", + "name": "Toro Station", + "url": "/v1/games/toro-station" + }, { "slug": "toro-and-friends-onsen-town", "name": "Toro and Friends: Onsen Town", @@ -759461,11 +788821,26 @@ "name": "Total Annihilation", "url": "/v1/games/total-annihilation" }, + { + "slug": "total-annihilation-2", + "name": "Total Annihilation 2", + "url": "/v1/games/total-annihilation-2" + }, + { + "slug": "total-annihilation-battle-tactics", + "name": "Total Annihilation: Battle Tactics", + "url": "/v1/games/total-annihilation-battle-tactics" + }, { "slug": "total-annihilation-kingdoms", "name": "Total Annihilation: Kingdoms", "url": "/v1/games/total-annihilation-kingdoms" }, + { + "slug": "total-annihilation-the-core-contingency", + "name": "Total Annihilation: The Core Contingency", + "url": "/v1/games/total-annihilation-the-core-contingency" + }, { "slug": "total-arcade-racing", "name": "Total Arcade Racing", @@ -759626,6 +789001,11 @@ "name": "Total Havoc", "url": "/v1/games/total-havoc" }, + { + "slug": "total-heaven", + "name": "Total Heaven", + "url": "/v1/games/total-heaven" + }, { "slug": "total-immersion-racing", "name": "Total Immersion Racing", @@ -759656,6 +789036,11 @@ "name": "Total Overdose", "url": "/v1/games/total-overdose" }, + { + "slug": "total-overdose-2-tequila-gunrise", + "name": "Total Overdose 2: Tequila Gunrise", + "url": "/v1/games/total-overdose-2-tequila-gunrise" + }, { "slug": "total-party-kill", "name": "Total Party Kill", @@ -759741,6 +789126,11 @@ "name": "Total Vengeance", "url": "/v1/games/total-vengeance" }, + { + "slug": "total-victory-victory-or-defeat", + "name": "Total Victory: Victory or Defeat", + "url": "/v1/games/total-victory-victory-or-defeat" + }, { "slug": "total-war", "name": "Total War", @@ -759786,6 +789176,11 @@ "name": "Total War: Empire", "url": "/v1/games/total-war-empire" }, + { + "slug": "total-war-eras", + "name": "Total War: Eras", + "url": "/v1/games/total-war-eras" + }, { "slug": "total-war-pharaoh-dynasties", "name": "Total War: PHARAOH DYNASTIES", @@ -759796,6 +789191,16 @@ "name": "Total War: Pharaoh", "url": "/v1/games/total-war-pharaoh" }, + { + "slug": "total-war-rome-ii-desert-kingdoms-culture-pack", + "name": "Total War: ROME II - Desert Kingdoms Culture Pack", + "url": "/v1/games/total-war-rome-ii-desert-kingdoms-culture-pack" + }, + { + "slug": "total-war-rome-ii-empire-divided-campaign-pack", + "name": "Total War: ROME II - Empire Divided Campaign Pack", + "url": "/v1/games/total-war-rome-ii-empire-divided-campaign-pack" + }, { "slug": "total-war-rome-ii", "name": "Total War: Rome II", @@ -759821,6 +789226,11 @@ "name": "Total War: Three Kingdoms", "url": "/v1/games/total-war-three-kingdoms" }, + { + "slug": "total-war-three-kingdoms-a-world-betrayed", + "name": "Total War: Three Kingdoms - A World Betrayed", + "url": "/v1/games/total-war-three-kingdoms-a-world-betrayed" + }, { "slug": "total-war-three-kingdoms-fates-divided", "name": "Total War: Three Kingdoms - Fates Divided", @@ -759836,6 +789246,11 @@ "name": "Total War: Warhammer II", "url": "/v1/games/total-war-warhammer-ii" }, + { + "slug": "total-war-warhammer-ii-mortal-empires", + "name": "Total War: Warhammer II - Mortal Empires", + "url": "/v1/games/total-war-warhammer-ii-mortal-empires" + }, { "slug": "total-war-warhammer-iii", "name": "Total War: Warhammer III", @@ -760221,6 +789636,11 @@ "name": "Touch Some Grass", "url": "/v1/games/touch-some-grass" }, + { + "slug": "touch-striker", + "name": "Touch Striker", + "url": "/v1/games/touch-striker" + }, { "slug": "touch-the-floor", "name": "Touch The Floor", @@ -761036,6 +790456,11 @@ "name": "Toupei55", "url": "/v1/games/toupei55" }, + { + "slug": "tour-golf-online", + "name": "Tour Golf Online", + "url": "/v1/games/tour-golf-online" + }, { "slug": "tour-manager-secret-stories", "name": "Tour Manager: Secret Stories", @@ -761361,6 +790786,11 @@ "name": "Tower Ball - Incremental Tower Defense", "url": "/v1/games/tower-ball-incremental-tower-defense" }, + { + "slug": "tower-battles", + "name": "Tower Battles", + "url": "/v1/games/tower-battles" + }, { "slug": "tower-behind-the-moon", "name": "Tower Behind the Moon", @@ -761411,6 +790841,11 @@ "name": "Tower Defender VR: Last Adventure", "url": "/v1/games/tower-defender-vr-last-adventure" }, + { + "slug": "tower-defenders", + "name": "Tower Defenders", + "url": "/v1/games/tower-defenders" + }, { "slug": "tower-defense", "name": "Tower Defense", @@ -761436,11 +790871,21 @@ "name": "Tower Defense RPG", "url": "/v1/games/tower-defense-rpg" }, + { + "slug": "tower-defense-simulator", + "name": "Tower Defense Simulator", + "url": "/v1/games/tower-defense-simulator" + }, { "slug": "tower-defense-sudden-attack", "name": "Tower Defense Sudden Attack", "url": "/v1/games/tower-defense-sudden-attack" }, + { + "slug": "tower-defense-x", + "name": "Tower Defense X", + "url": "/v1/games/tower-defense-x" + }, { "slug": "tower-defense-defender-of-the-kingdom", "name": "Tower Defense: Defender of the Kingdom", @@ -762361,6 +791806,11 @@ "name": "Town of Sins", "url": "/v1/games/town-of-sins" }, + { + "slug": "town-of-sins-demo", + "name": "Town of Sins Demo", + "url": "/v1/games/town-of-sins-demo" + }, { "slug": "town-of-zoz", "name": "Town of Zoz", @@ -762716,6 +792166,11 @@ "name": "Toy Soldiers: War Chest", "url": "/v1/games/toy-soldiers-war-chest" }, + { + "slug": "toy-soldiers-war-chest-hall-of-fame-edition", + "name": "Toy Soldiers: War Chest - Hall of Fame Edition", + "url": "/v1/games/toy-soldiers-war-chest-hall-of-fame-edition" + }, { "slug": "toy-sports", "name": "Toy Sports", @@ -762766,6 +792221,11 @@ "name": "Toy Story Racer", "url": "/v1/games/toy-story-racer" }, + { + "slug": "toy-story-retro-roundup", + "name": "Toy Story: Retro Roundup!", + "url": "/v1/games/toy-story-retro-roundup" + }, { "slug": "toy-story-smash-it", "name": "Toy Story: Smash It!", @@ -763141,6 +792601,11 @@ "name": "TrackMania Sunrise", "url": "/v1/games/trackmania-sunrise" }, + { + "slug": "trackmania-sunrise-extreme", + "name": "TrackMania Sunrise eXtreme", + "url": "/v1/games/trackmania-sunrise-extreme" + }, { "slug": "trackmania-turbo-q20669131", "name": "TrackMania Turbo", @@ -763166,6 +792631,11 @@ "name": "TrackMania Wii", "url": "/v1/games/trackmania-wii" }, + { + "slug": "trackmania-power-up", + "name": "TrackMania: Power Up!", + "url": "/v1/games/trackmania-power-up" + }, { "slug": "trackmania-stadium", "name": "TrackMania² Stadium", @@ -763316,6 +792786,11 @@ "name": "Tracon II: Australian Region Data", "url": "/v1/games/tracon-ii-australian-region-data" }, + { + "slug": "tracon-ii-canadian-region-data", + "name": "Tracon II: Canadian Region Data", + "url": "/v1/games/tracon-ii-canadian-region-data" + }, { "slug": "tracon-ii-central-region-data", "name": "Tracon II: Central Region Data", @@ -763336,6 +792811,11 @@ "name": "Tracon II: Pacific Region Data", "url": "/v1/games/tracon-ii-pacific-region-data" }, + { + "slug": "tracon-ii-western-region-data", + "name": "Tracon II: Western Region Data", + "url": "/v1/games/tracon-ii-western-region-data" + }, { "slug": "tracon-2012-se", "name": "Tracon!2012:SE", @@ -763576,6 +793056,11 @@ "name": "Traffic Giant", "url": "/v1/games/traffic-giant" }, + { + "slug": "traffic-giant-expansion", + "name": "Traffic Giant: Expansion", + "url": "/v1/games/traffic-giant-expansion" + }, { "slug": "traffic-giant-gold-edition", "name": "Traffic Giant: Gold Edition", @@ -764056,21 +793541,2436 @@ "name": "Train Simulator Real The Yamanote Line", "url": "/v1/games/train-simulator-real-the-yamanote-line" }, + { + "slug": "train-simulator-at-n-consolidation-class-280-157-loco-add-on", + "name": "Train Simulator: AT&N Consolidation Class 280-157 Loco Add-On", + "url": "/v1/games/train-simulator-at-n-consolidation-class-280-157-loco-add-on" + }, + { + "slug": "train-simulator-at-sf-sd45-2-loco-add-on", + "name": "Train Simulator: AT&SF SD45-2 Loco Add-On", + "url": "/v1/games/train-simulator-at-sf-sd45-2-loco-add-on" + }, + { + "slug": "train-simulator-aerotrain-streamlined-train-add-on", + "name": "Train Simulator: Aerotrain Streamlined Train Add-On", + "url": "/v1/games/train-simulator-aerotrain-streamlined-train-add-on" + }, + { + "slug": "train-simulator-albula-line-st-moritz-thusis-route-add-on", + "name": "Train Simulator: Albula Line: St Moritz - Thusis Route Add-On", + "url": "/v1/games/train-simulator-albula-line-st-moritz-thusis-route-add-on" + }, + { + "slug": "train-simulator-allg-ubahn-kempten-lindau-immenstadt-oberstdorf-route-add-on", + "name": "Train Simulator: Allgäubahn: Kempten - Lindau & Immenstadt - Oberstdorf Route Add-On", + "url": "/v1/games/train-simulator-allg-ubahn-kempten-lindau-immenstadt-oberstdorf-route-add-on" + }, + { + "slug": "train-simulator-amtrak-acela-express-emu-add-on", + "name": "Train Simulator: Amtrak Acela Express EMU Add-On", + "url": "/v1/games/train-simulator-amtrak-acela-express-emu-add-on" + }, + { + "slug": "train-simulator-amtrak-e8-loco-add-on", + "name": "Train Simulator: Amtrak E8 Loco Add-On", + "url": "/v1/games/train-simulator-amtrak-e8-loco-add-on" + }, + { + "slug": "train-simulator-amtrak-f40ph-california-zephyr-loco-add-on", + "name": "Train Simulator: Amtrak F40PH ‘California Zephyr’ Loco Add-On", + "url": "/v1/games/train-simulator-amtrak-f40ph-california-zephyr-loco-add-on" + }, + { + "slug": "train-simulator-amtrak-hhp-8-loco-add-on", + "name": "Train Simulator: Amtrak HHP-8 Loco Add-On", + "url": "/v1/games/train-simulator-amtrak-hhp-8-loco-add-on" + }, + { + "slug": "train-simulator-amtrak-p30ch-loco-add-on", + "name": "Train Simulator: Amtrak P30CH Loco Add-On", + "url": "/v1/games/train-simulator-amtrak-p30ch-loco-add-on" + }, + { + "slug": "train-simulator-amtrak-p42-dc-empire-builder-loco-add-on", + "name": "Train Simulator: Amtrak P42 DC 'Empire Builder' Loco Add-On", + "url": "/v1/games/train-simulator-amtrak-p42-dc-empire-builder-loco-add-on" + }, + { + "slug": "train-simulator-amtrak-sdp40f-loco-add-on", + "name": "Train Simulator: Amtrak SDP40F Loco Add-On", + "url": "/v1/games/train-simulator-amtrak-sdp40f-loco-add-on" + }, + { + "slug": "train-simulator-amtrak-dash-8-32bwh-loco-add-on", + "name": "Train Simulator: Amtrak® Dash 8-32BWH Loco Add-On", + "url": "/v1/games/train-simulator-amtrak-dash-8-32bwh-loco-add-on" + }, + { + "slug": "train-simulator-arizona-divide-winslow-williams-route-add-on", + "name": "Train Simulator: Arizona Divide: Winslow - Williams Route Add-on", + "url": "/v1/games/train-simulator-arizona-divide-winslow-williams-route-add-on" + }, + { + "slug": "train-simulator-arlbergbahn-innsbruck-bludenz-route-add-on", + "name": "Train Simulator: Arlbergbahn: Innsbruck - Bludenz Route Add-On", + "url": "/v1/games/train-simulator-arlbergbahn-innsbruck-bludenz-route-add-on" + }, + { + "slug": "train-simulator-arosa-line-route-add-on", + "name": "Train Simulator: Arosa Line Route Add-On", + "url": "/v1/games/train-simulator-arosa-line-route-add-on" + }, + { + "slug": "train-simulator-b-o-kingwood-branch-tunnelton-kingwood-route-add-on", + "name": "Train Simulator: B&O Kingwood Branch: Tunnelton - Kingwood Route Add-On", + "url": "/v1/games/train-simulator-b-o-kingwood-branch-tunnelton-kingwood-route-add-on" + }, + { + "slug": "train-simulator-br-266-loco-add-on", + "name": "Train Simulator: BR 266 Loco Add-On", + "url": "/v1/games/train-simulator-br-266-loco-add-on" + }, + { + "slug": "train-simulator-br-6mt-clan-class-loco-add-on", + "name": "Train Simulator: BR 6MT Clan Class Loco Add-On", + "url": "/v1/games/train-simulator-br-6mt-clan-class-loco-add-on" + }, + { + "slug": "train-simulator-br-9f-loco-add-on", + "name": "Train Simulator: BR 9F Loco Add-On", + "url": "/v1/games/train-simulator-br-9f-loco-add-on" + }, + { + "slug": "train-simulator-br-blue-diesel-electric-pack-loco-add-on", + "name": "Train Simulator: BR Blue Diesel Electric Pack Loco Add-On", + "url": "/v1/games/train-simulator-br-blue-diesel-electric-pack-loco-add-on" + }, + { + "slug": "train-simulator-br-blue-pack-loco-add-on", + "name": "Train Simulator: BR Blue Pack Loco Add-On", + "url": "/v1/games/train-simulator-br-blue-pack-loco-add-on" + }, + { + "slug": "train-simulator-br-castle-class-loco-add-on", + "name": "Train Simulator: BR Castle Class Loco Add-On", + "url": "/v1/games/train-simulator-br-castle-class-loco-add-on" + }, + { + "slug": "train-simulator-br-class-07-loco-add-on", + "name": "Train Simulator: BR Class 07 Loco Add-On", + "url": "/v1/games/train-simulator-br-class-07-loco-add-on" + }, + { + "slug": "train-simulator-br-class-101-dmu-add-on", + "name": "Train Simulator: BR Class 101 DMU Add-On", + "url": "/v1/games/train-simulator-br-class-101-dmu-add-on" + }, + { + "slug": "train-simulator-br-class-105-dmu-add-on", + "name": "Train Simulator: BR Class 105 DMU Add-On", + "url": "/v1/games/train-simulator-br-class-105-dmu-add-on" + }, + { + "slug": "train-simulator-br-class-14-loco-add-on", + "name": "Train Simulator: BR Class 14 Loco Add-On", + "url": "/v1/games/train-simulator-br-class-14-loco-add-on" + }, + { + "slug": "train-simulator-br-class-150-1-dmu-add-on", + "name": "Train Simulator: BR Class 150/1 DMU Add-On", + "url": "/v1/games/train-simulator-br-class-150-1-dmu-add-on" + }, + { + "slug": "train-simulator-br-class-170-turbostar-dmu-add-on", + "name": "Train Simulator: BR Class 170 ‘Turbostar’ DMU Add-On", + "url": "/v1/games/train-simulator-br-class-170-turbostar-dmu-add-on" + }, + { + "slug": "train-simulator-br-class-20-loco-add-on", + "name": "Train Simulator: BR Class 20 Loco Add-On", + "url": "/v1/games/train-simulator-br-class-20-loco-add-on" + }, + { + "slug": "train-simulator-br-class-24-loco-add-on", + "name": "Train Simulator: BR Class 24 Loco Add-On", + "url": "/v1/games/train-simulator-br-class-24-loco-add-on" + }, + { + "slug": "train-simulator-br-class-27-loco-add-on", + "name": "Train Simulator: BR Class 27 Loco Add-On", + "url": "/v1/games/train-simulator-br-class-27-loco-add-on" + }, + { + "slug": "train-simulator-br-class-303-emu-add-on", + "name": "Train Simulator: BR Class 303 EMU Add-On", + "url": "/v1/games/train-simulator-br-class-303-emu-add-on" + }, + { + "slug": "train-simulator-br-class-31-freight-loco-add-on", + "name": "Train Simulator: BR Class 31 Freight Loco Add-On", + "url": "/v1/games/train-simulator-br-class-31-freight-loco-add-on" + }, + { + "slug": "train-simulator-br-class-31-loco-add-on", + "name": "Train Simulator: BR Class 31 Loco Add-On", + "url": "/v1/games/train-simulator-br-class-31-loco-add-on" + }, + { + "slug": "train-simulator-br-class-33-loco-add-on", + "name": "Train Simulator: BR Class 33 Loco Add-On", + "url": "/v1/games/train-simulator-br-class-33-loco-add-on" + }, + { + "slug": "train-simulator-br-class-35-loco-add-on", + "name": "Train Simulator: BR Class 35 Loco Add-On", + "url": "/v1/games/train-simulator-br-class-35-loco-add-on" + }, + { + "slug": "train-simulator-br-class-40-40145-loco-add-on", + "name": "Train Simulator: BR Class 40 '40145' Loco Add-On", + "url": "/v1/games/train-simulator-br-class-40-40145-loco-add-on" + }, + { + "slug": "train-simulator-br-class-402-2-hal-emu-add-on", + "name": "Train Simulator: BR Class 402 '2-HAL' EMU Add-On", + "url": "/v1/games/train-simulator-br-class-402-2-hal-emu-add-on" + }, + { + "slug": "train-simulator-br-class-419-mlv-bemu-add-on", + "name": "Train Simulator: BR Class 419 MLV BEMU Add-On", + "url": "/v1/games/train-simulator-br-class-419-mlv-bemu-add-on" + }, + { + "slug": "train-simulator-br-class-421-4cig-loco", + "name": "Train Simulator: BR Class 421 '4CIG' Loco", + "url": "/v1/games/train-simulator-br-class-421-4cig-loco" + }, + { + "slug": "train-simulator-br-class-422-4big-emu-add-on", + "name": "Train Simulator: BR Class 422 ‘4BIG’ EMU Add-On", + "url": "/v1/games/train-simulator-br-class-422-4big-emu-add-on" + }, + { + "slug": "train-simulator-br-class-423-4vep-emu-add-on", + "name": "Train Simulator: BR Class 423 ‘4VEP’ EMU Add-On", + "url": "/v1/games/train-simulator-br-class-423-4vep-emu-add-on" + }, + { + "slug": "train-simulator-br-class-45-peak-loco-add-on", + "name": "Train Simulator: BR Class 45 'Peak' Loco Add-On", + "url": "/v1/games/train-simulator-br-class-45-peak-loco-add-on" + }, + { + "slug": "train-simulator-br-class-50-loco-add-on", + "name": "Train Simulator: BR Class 50 Loco Add-On", + "url": "/v1/games/train-simulator-br-class-50-loco-add-on" + }, + { + "slug": "train-simulator-br-class-52-loco-add-on", + "name": "Train Simulator: BR Class 52 Loco Add-On", + "url": "/v1/games/train-simulator-br-class-52-loco-add-on" + }, + { + "slug": "train-simulator-br-class-58-loco-add-on", + "name": "Train Simulator: BR Class 58 Loco Add-On", + "url": "/v1/games/train-simulator-br-class-58-loco-add-on" + }, + { + "slug": "train-simulator-br-class-73-gatwick-express-loco-add-on", + "name": "Train Simulator: BR Class 73 'Gatwick Express' Loco Add-On", + "url": "/v1/games/train-simulator-br-class-73-gatwick-express-loco-add-on" + }, + { + "slug": "train-simulator-br-class-76-77-loco-add-on", + "name": "Train Simulator: BR Class 76 & 77 Loco Add-On", + "url": "/v1/games/train-simulator-br-class-76-77-loco-add-on" + }, + { + "slug": "train-simulator-br-class-87-loco-add-on", + "name": "Train Simulator: BR Class 87 Loco Add-On", + "url": "/v1/games/train-simulator-br-class-87-loco-add-on" + }, + { + "slug": "train-simulator-br-dp1-deltic-loco-add-on", + "name": "Train Simulator: BR DP1 Deltic Loco Add-On", + "url": "/v1/games/train-simulator-br-dp1-deltic-loco-add-on" + }, + { + "slug": "train-simulator-br-gt3-turbine-loco-add-on", + "name": "Train Simulator: BR GT3 Turbine Loco Add-On", + "url": "/v1/games/train-simulator-br-gt3-turbine-loco-add-on" + }, + { + "slug": "train-simulator-br-rebuilt-west-country-battle-of-britain-class-steam-loco-add-on", + "name": "Train Simulator: BR Rebuilt West Country & Battle of Britain Class Steam Loco Add-On", + "url": "/v1/games/train-simulator-br-rebuilt-west-country-battle-of-britain-class-steam-loco-add-on" + }, + { + "slug": "train-simulator-br-regional-railways-class-101-dmu-add-on", + "name": "Train Simulator: BR Regional Railways Class 101 DMU Add-On", + "url": "/v1/games/train-simulator-br-regional-railways-class-101-dmu-add-on" + }, + { + "slug": "train-simulator-br-robinson-class-o4-loco-add-on", + "name": "Train Simulator: BR Robinson Class O4 Loco Add-On", + "url": "/v1/games/train-simulator-br-robinson-class-o4-loco-add-on" + }, + { + "slug": "train-simulator-br-sectors-class-56-loco-add-on", + "name": "Train Simulator: BR Sectors Class 56 Loco Add-On", + "url": "/v1/games/train-simulator-br-sectors-class-56-loco-add-on" + }, + { + "slug": "train-simulator-br-standard-class-2mt-loco-add-on", + "name": "Train Simulator: BR Standard Class 2MT Loco Add-On", + "url": "/v1/games/train-simulator-br-standard-class-2mt-loco-add-on" + }, + { + "slug": "train-simulator-br-standard-class-4mt", + "name": "Train Simulator: BR Standard Class 4MT", + "url": "/v1/games/train-simulator-br-standard-class-4mt" + }, + { + "slug": "train-simulator-br-standard-class-6-clan-class-steam-loco-add-on", + "name": "Train Simulator: BR Standard Class 6 ‘Clan Class’ Steam Loco Add-On", + "url": "/v1/games/train-simulator-br-standard-class-6-clan-class-steam-loco-add-on" + }, + { + "slug": "train-simulator-br-standard-class-7-britannia-class-steam-loco-add-on", + "name": "Train Simulator: BR Standard Class 7 ‘Britannia Class’ Steam Loco Add-On", + "url": "/v1/games/train-simulator-br-standard-class-7-britannia-class-steam-loco-add-on" + }, + { + "slug": "train-simulator-br-lner-class-j50-loco-add-on", + "name": "Train Simulator: BR/LNER Class J50 Loco Add-On", + "url": "/v1/games/train-simulator-br-lner-class-j50-loco-add-on" + }, + { + "slug": "train-simulator-bahnstrecke-riesa-dresden-route-add-on", + "name": "Train Simulator: Bahnstrecke Riesa - Dresden Route Add-On", + "url": "/v1/games/train-simulator-bahnstrecke-riesa-dresden-route-add-on" + }, + { + "slug": "train-simulator-battle-for-sherman-hill-add-on", + "name": "Train Simulator: Battle For Sherman Hill Add-On", + "url": "/v1/games/train-simulator-battle-for-sherman-hill-add-on" + }, + { + "slug": "train-simulator-berlin-leipzig-route-add-on", + "name": "Train Simulator: Berlin - Leipzig Route Add-On", + "url": "/v1/games/train-simulator-berlin-leipzig-route-add-on" + }, + { + "slug": "train-simulator-berlin-wittenberg-route-add-on", + "name": "Train Simulator: Berlin-Wittenberg Route Add-On", + "url": "/v1/games/train-simulator-berlin-wittenberg-route-add-on" + }, + { + "slug": "train-simulator-bernina-line-poschiavo-tirano-route-add-on", + "name": "Train Simulator: Bernina Line: Poschiavo - Tirano Route Add-On", + "url": "/v1/games/train-simulator-bernina-line-poschiavo-tirano-route-add-on" + }, + { + "slug": "train-simulator-bernina-pass-st-moritz-poschiavo-route-add-on", + "name": "Train Simulator: Bernina Pass: St Moritz – Poschiavo Route Add-On", + "url": "/v1/games/train-simulator-bernina-pass-st-moritz-poschiavo-route-add-on" + }, + { + "slug": "train-simulator-birmingham-cross-city-line-lichfield-bromsgrove-redditch-route-add-on", + "name": "Train Simulator: Birmingham Cross City Line: Lichfield - Bromsgrove & Redditch Route Add-On", + "url": "/v1/games/train-simulator-birmingham-cross-city-line-lichfield-bromsgrove-redditch-route-add-on" + }, + { + "slug": "train-simulator-black-forest-journeys-freiburg-hausach-route-add-on", + "name": "Train Simulator: Black Forest Journeys: Freiburg-Hausach Route Add-On", + "url": "/v1/games/train-simulator-black-forest-journeys-freiburg-hausach-route-add-on" + }, + { + "slug": "train-simulator-boston-maine-ge-44-loco-add-on", + "name": "Train Simulator: Boston & Maine GE 44 Loco Add-On", + "url": "/v1/games/train-simulator-boston-maine-ge-44-loco-add-on" + }, + { + "slug": "train-simulator-bristol-exeter-route-add-on", + "name": "Train Simulator: Bristol-Exeter Route Add-On", + "url": "/v1/games/train-simulator-bristol-exeter-route-add-on" + }, + { + "slug": "train-simulator-bulleid-q1-class-loco-add-on", + "name": "Train Simulator: Bulleid Q1 Class Loco Add-On", + "url": "/v1/games/train-simulator-bulleid-q1-class-loco-add-on" + }, + { + "slug": "train-simulator-cn-sd40-2-wide-nose-loco-add-on", + "name": "Train Simulator: CN SD40-2 Wide Nose Loco Add-On", + "url": "/v1/games/train-simulator-cn-sd40-2-wide-nose-loco-add-on" + }, + { + "slug": "train-simulator-cprr-4-4-0-no-60-jupiter-steam-loco-add-on", + "name": "Train Simulator: CPRR 4-4-0 No. 60 ‘Jupiter’ Steam Loco Add-On", + "url": "/v1/games/train-simulator-cprr-4-4-0-no-60-jupiter-steam-loco-add-on" + }, + { + "slug": "train-simulator-cprr-4-6-0-buffalo-steam-loco-add-on", + "name": "Train Simulator: CPRR 4-6-0 Buffalo Steam Loco Add-On", + "url": "/v1/games/train-simulator-cprr-4-6-0-buffalo-steam-loco-add-on" + }, + { + "slug": "train-simulator-crh-380a-high-speed-train-add-on", + "name": "Train Simulator: CRH 380A High Speed Train Add-On", + "url": "/v1/games/train-simulator-crh-380a-high-speed-train-add-on" + }, + { + "slug": "train-simulator-crh2a-emu-add-on", + "name": "Train Simulator: CRH2A EMU Add-On", + "url": "/v1/games/train-simulator-crh2a-emu-add-on" + }, + { + "slug": "train-simulator-crh380d-emu-add-on", + "name": "Train Simulator: CRH380D EMU Add-On", + "url": "/v1/games/train-simulator-crh380d-emu-add-on" + }, + { + "slug": "train-simulator-csx-ac6000cw-loco-add-on", + "name": "Train Simulator: CSX AC6000CW Loco Add-On", + "url": "/v1/games/train-simulator-csx-ac6000cw-loco-add-on" + }, + { + "slug": "train-simulator-csx-c30-7-loco-add-on", + "name": "Train Simulator: CSX C30-7 Loco Add-On", + "url": "/v1/games/train-simulator-csx-c30-7-loco-add-on" + }, + { + "slug": "train-simulator-csx-hanover-subdivision-hanover-hagerstown-route-add-on", + "name": "Train Simulator: CSX Hanover Subdivision: Hanover - Hagerstown Route Add-On", + "url": "/v1/games/train-simulator-csx-hanover-subdivision-hanover-hagerstown-route-add-on" + }, + { + "slug": "train-simulator-csx-nre-3gs-21b-genset-loco-add-on", + "name": "Train Simulator: CSX NRE 3GS-21B 'Genset' Loco Add-On", + "url": "/v1/games/train-simulator-csx-nre-3gs-21b-genset-loco-add-on" + }, + { + "slug": "train-simulator-csx-sd80mac-loco-add-on", + "name": "Train Simulator: CSX SD80MAC Loco Add-On", + "url": "/v1/games/train-simulator-csx-sd80mac-loco-add-on" + }, + { + "slug": "train-simulator-canadian-mountain-passes-revelstoke-lake-louise", + "name": "Train Simulator: Canadian Mountain Passes: Revelstoke-Lake Louise", + "url": "/v1/games/train-simulator-canadian-mountain-passes-revelstoke-lake-louise" + }, + { + "slug": "train-simulator-canadian-national-peace-river-route-add-on", + "name": "Train Simulator: Canadian National Peace River Route Add-On", + "url": "/v1/games/train-simulator-canadian-national-peace-river-route-add-on" + }, + { + "slug": "train-simulator-canadian-national-sd60-loco-add-on", + "name": "Train Simulator: Canadian National SD60 Loco Add-On", + "url": "/v1/games/train-simulator-canadian-national-sd60-loco-add-on" + }, + { + "slug": "train-simulator-canadian-national-sd70-loco-add-on", + "name": "Train Simulator: Canadian National SD70 Loco Add-On", + "url": "/v1/games/train-simulator-canadian-national-sd70-loco-add-on" + }, + { + "slug": "train-simulator-canadian-pacific-ac4400cw-loco-add-on", + "name": "Train Simulator: Canadian Pacific AC4400CW Loco Add-On", + "url": "/v1/games/train-simulator-canadian-pacific-ac4400cw-loco-add-on" + }, + { + "slug": "train-simulator-chatham-main-medway-valley-lines-route-add-on", + "name": "Train Simulator: Chatham Main & Medway Valley Lines Route Add-On", + "url": "/v1/games/train-simulator-chatham-main-medway-valley-lines-route-add-on" + }, + { + "slug": "train-simulator-chatham-main-line-london-gillingham-route-add-on", + "name": "Train Simulator: Chatham Main Line - London-Gillingham Route Add-On", + "url": "/v1/games/train-simulator-chatham-main-line-london-gillingham-route-add-on" + }, + { + "slug": "train-simulator-chengdu-suining-high-speed-route-add-on", + "name": "Train Simulator: Chengdu - Suining High Speed Route Add-On", + "url": "/v1/games/train-simulator-chengdu-suining-high-speed-route-add-on" + }, + { + "slug": "train-simulator-chengkun-railway-hanyuan-puxiong-route-add-on", + "name": "Train Simulator: Chengkun Railway: Hanyuan – Puxiong Route Add-On", + "url": "/v1/games/train-simulator-chengkun-railway-hanyuan-puxiong-route-add-on" + }, + { + "slug": "train-simulator-chessie-system-retro-pack", + "name": "Train Simulator: Chessie System Retro Pack", + "url": "/v1/games/train-simulator-chessie-system-retro-pack" + }, + { + "slug": "train-simulator-chessie-system-u30c-loco-add-on", + "name": "Train Simulator: Chessie System U30C Loco Add-On", + "url": "/v1/games/train-simulator-chessie-system-u30c-loco-add-on" + }, + { + "slug": "train-simulator-chiltern-main-line-london-birmingham-route-add-on", + "name": "Train Simulator: Chiltern Main Line: London - Birmingham Route Add-On", + "url": "/v1/games/train-simulator-chiltern-main-line-london-birmingham-route-add-on" + }, + { + "slug": "train-simulator-china-clay-for-export-route-add-on", + "name": "Train Simulator: China Clay for Export Route Add-On", + "url": "/v1/games/train-simulator-china-clay-for-export-route-add-on" + }, + { + "slug": "train-simulator-class-111-dmu-add-on", + "name": "Train Simulator: Class 111 DMU Add-On", + "url": "/v1/games/train-simulator-class-111-dmu-add-on" + }, + { + "slug": "train-simulator-class-156-loco-add-on", + "name": "Train Simulator: Class 156 Loco Add-On", + "url": "/v1/games/train-simulator-class-156-loco-add-on" + }, + { + "slug": "train-simulator-class-158-dmu-add-on", + "name": "Train Simulator: Class 158 DMU Add-On", + "url": "/v1/games/train-simulator-class-158-dmu-add-on" + }, + { + "slug": "train-simulator-class-2f-dock-tank-loco-add-on", + "name": "Train Simulator: Class 2F Dock Tank Loco Add-On", + "url": "/v1/games/train-simulator-class-2f-dock-tank-loco-add-on" + }, + { + "slug": "train-simulator-class-325-emu-add-on", + "name": "Train Simulator: Class 325 EMU Add-On", + "url": "/v1/games/train-simulator-class-325-emu-add-on" + }, + { + "slug": "train-simulator-class-390-emu-add-on", + "name": "Train Simulator: Class 390 EMU Add-On", + "url": "/v1/games/train-simulator-class-390-emu-add-on" + }, + { + "slug": "train-simulator-class-455-emu-add-on", + "name": "Train Simulator: Class 455 EMU Add-On", + "url": "/v1/games/train-simulator-class-455-emu-add-on" + }, + { + "slug": "train-simulator-class-57-rail-tour-loco-add-on", + "name": "Train Simulator: Class 57 Rail Tour Loco Add-On", + "url": "/v1/games/train-simulator-class-57-rail-tour-loco-add-on" + }, + { + "slug": "train-simulator-class-67-diamond-jubilee-loco-add-on", + "name": "Train Simulator: Class 67 Diamond Jubilee Loco Add-On", + "url": "/v1/games/train-simulator-class-67-diamond-jubilee-loco-add-on" + }, + { + "slug": "train-simulator-class-86-loco-add-on", + "name": "Train Simulator: Class 86 Loco Add-On", + "url": "/v1/games/train-simulator-class-86-loco-add-on" + }, + { + "slug": "train-simulator-class-a4-pacifics-loco-add-on", + "name": "Train Simulator: Class A4 Pacifics Loco Add-On", + "url": "/v1/games/train-simulator-class-a4-pacifics-loco-add-on" + }, + { + "slug": "train-simulator-class-j94-memories-of-maerdy-loco-add-on", + "name": "Train Simulator: Class J94 ‘Memories of Maerdy’ Loco Add-On", + "url": "/v1/games/train-simulator-class-j94-memories-of-maerdy-loco-add-on" + }, + { + "slug": "train-simulator-clear-creek-log-lumber-expansion-pack-add-on", + "name": "Train Simulator: Clear Creek Log & Lumber Expansion Pack Add-On", + "url": "/v1/games/train-simulator-clear-creek-log-lumber-expansion-pack-add-on" + }, + { + "slug": "train-simulator-clear-creek-narrow-gauge-route-add-on", + "name": "Train Simulator: Clear Creek Narrow Gauge Route Add-On", + "url": "/v1/games/train-simulator-clear-creek-narrow-gauge-route-add-on" + }, + { + "slug": "train-simulator-clear-creek-old-timer-rolling-stock-pack-add-on", + "name": "Train Simulator: Clear Creek Old Timer Rolling Stock Pack Add-On", + "url": "/v1/games/train-simulator-clear-creek-old-timer-rolling-stock-pack-add-on" + }, + { + "slug": "train-simulator-clinchfield-railroad-u36c-loco-add-on", + "name": "Train Simulator: Clinchfield Railroad U36C Loco Add-On", + "url": "/v1/games/train-simulator-clinchfield-railroad-u36c-loco-add-on" + }, + { + "slug": "train-simulator-clinchfield-railroad-elkhorn-city-st-paul-route-add-on", + "name": "Train Simulator: Clinchfield Railroad: Elkhorn City - St. Paul Route Add-On", + "url": "/v1/games/train-simulator-clinchfield-railroad-elkhorn-city-st-paul-route-add-on" + }, + { + "slug": "train-simulator-cologne-dusseldorf-route-add-on", + "name": "Train Simulator: Cologne-Dusseldorf Route Add-On", + "url": "/v1/games/train-simulator-cologne-dusseldorf-route-add-on" + }, + { + "slug": "train-simulator-colton-northern-route-add-on", + "name": "Train Simulator: Colton & Northern Route Add-On", + "url": "/v1/games/train-simulator-colton-northern-route-add-on" + }, + { + "slug": "train-simulator-cornish-main-line-plymouth-penzance-route-add-on", + "name": "Train Simulator: Cornish Main Line: Plymouth – Penzance Route Add-On", + "url": "/v1/games/train-simulator-cornish-main-line-plymouth-penzance-route-add-on" + }, + { + "slug": "train-simulator-corris-railway-expansion-pack-loco-add-on", + "name": "Train Simulator: Corris Railway Expansion Pack Loco Add-On", + "url": "/v1/games/train-simulator-corris-railway-expansion-pack-loco-add-on" + }, + { + "slug": "train-simulator-corris-railway-route-add-on", + "name": "Train Simulator: Corris Railway Route Add-On", + "url": "/v1/games/train-simulator-corris-railway-route-add-on" + }, + { + "slug": "train-simulator-d-rgw-sd50-loco-add-on", + "name": "Train Simulator: D&RGW SD50 Loco Add-On", + "url": "/v1/games/train-simulator-d-rgw-sd50-loco-add-on" + }, + { + "slug": "train-simulator-d-rgw-sd9-loco-add-on", + "name": "Train Simulator: D&RGW SD9 Loco Add-On", + "url": "/v1/games/train-simulator-d-rgw-sd9-loco-add-on" + }, + { + "slug": "train-simulator-d-rgw-sw1200-loco-add-on", + "name": "Train Simulator: D&RGW SW1200 Loco Add-On", + "url": "/v1/games/train-simulator-d-rgw-sw1200-loco-add-on" + }, + { + "slug": "train-simulator-db-br-10-steam-loco-add-on", + "name": "Train Simulator: DB BR 10 Steam Loco Add-On", + "url": "/v1/games/train-simulator-db-br-10-steam-loco-add-on" + }, + { + "slug": "train-simulator-db-br-101-loco-add-on", + "name": "Train Simulator: DB BR 101 Loco Add-On", + "url": "/v1/games/train-simulator-db-br-101-loco-add-on" + }, + { + "slug": "train-simulator-db-br-103-tee-loco-add-on", + "name": "Train Simulator: DB BR 103 TEE Loco Add-On", + "url": "/v1/games/train-simulator-db-br-103-tee-loco-add-on" + }, + { + "slug": "train-simulator-db-br-112-1-loco-add-on", + "name": "Train Simulator: DB BR 112.1 Loco Add-On", + "url": "/v1/games/train-simulator-db-br-112-1-loco-add-on" + }, + { + "slug": "train-simulator-db-br-114-loco-add-on", + "name": "Train Simulator: DB BR 114 Loco Add-On", + "url": "/v1/games/train-simulator-db-br-114-loco-add-on" + }, + { + "slug": "train-simulator-db-br-120-loco-add-on", + "name": "Train Simulator: DB BR 120 Loco Add-On", + "url": "/v1/games/train-simulator-db-br-120-loco-add-on" + }, + { + "slug": "train-simulator-db-br-145-loco-add-on", + "name": "Train Simulator: DB BR 145 Loco Add-On", + "url": "/v1/games/train-simulator-db-br-145-loco-add-on" + }, + { + "slug": "train-simulator-db-br-146-5-br-668-2-intercity-2-loco-add-on", + "name": "Train Simulator: DB BR 146.5 & BR 668.2 ‘Intercity 2’ Loco Add-On", + "url": "/v1/games/train-simulator-db-br-146-5-br-668-2-intercity-2-loco-add-on" + }, + { + "slug": "train-simulator-db-br-151-loco-add-on", + "name": "Train Simulator: DB BR 151 Loco Add-On", + "url": "/v1/games/train-simulator-db-br-151-loco-add-on" + }, + { + "slug": "train-simulator-db-br-152-loco-add-on", + "name": "Train Simulator: DB BR 152 Loco Add-On", + "url": "/v1/games/train-simulator-db-br-152-loco-add-on" + }, + { + "slug": "train-simulator-db-br-18-steam-loco-add-on", + "name": "Train Simulator: DB BR 18 Steam Loco Add-On", + "url": "/v1/games/train-simulator-db-br-18-steam-loco-add-on" + }, + { + "slug": "train-simulator-db-br-181-2-loco-add-on", + "name": "Train Simulator: DB BR 181.2 Loco Add-on", + "url": "/v1/games/train-simulator-db-br-181-2-loco-add-on" + }, + { + "slug": "train-simulator-db-br-204-loco-add-on", + "name": "Train Simulator: DB BR 204 Loco Add-On", + "url": "/v1/games/train-simulator-db-br-204-loco-add-on" + }, + { + "slug": "train-simulator-db-br-218-loco-add-on", + "name": "Train Simulator: DB BR 218 Loco Add-On", + "url": "/v1/games/train-simulator-db-br-218-loco-add-on" + }, + { + "slug": "train-simulator-db-br-261-voith-gravita-loco-add-on", + "name": "Train Simulator: DB BR 261 'Voith Gravita' Loco Add-On", + "url": "/v1/games/train-simulator-db-br-261-voith-gravita-loco-add-on" + }, + { + "slug": "train-simulator-db-br-361-loco-add-on", + "name": "Train Simulator: DB BR 361 Loco Add-On", + "url": "/v1/games/train-simulator-db-br-361-loco-add-on" + }, + { + "slug": "train-simulator-db-br-407-new-ice-3-emu-add-on", + "name": "Train Simulator: DB BR 407 ‘New ICE 3’ EMU Add-On", + "url": "/v1/games/train-simulator-db-br-407-new-ice-3-emu-add-on" + }, + { + "slug": "train-simulator-db-br-411-ice-t-emu-add-on", + "name": "Train Simulator: DB BR 411 'ICE-T' EMU Add-On", + "url": "/v1/games/train-simulator-db-br-411-ice-t-emu-add-on" + }, + { + "slug": "train-simulator-db-br-425-emu-add-on", + "name": "Train Simulator: DB BR 425 EMU Add-On", + "url": "/v1/games/train-simulator-db-br-425-emu-add-on" + }, + { + "slug": "train-simulator-db-br-440-coradia-continental-loco-add-on", + "name": "Train Simulator: DB BR 440 ‘Coradia Continental’ Loco Add-On", + "url": "/v1/games/train-simulator-db-br-440-coradia-continental-loco-add-on" + }, + { + "slug": "train-simulator-db-br-442-talent-2-emu-add-on", + "name": "Train Simulator: DB BR 442 'Talent 2' EMU Add-On", + "url": "/v1/games/train-simulator-db-br-442-talent-2-emu-add-on" + }, + { + "slug": "train-simulator-db-br-474-3-emu-add-on", + "name": "Train Simulator: DB BR 474.3 EMU Add-On", + "url": "/v1/games/train-simulator-db-br-474-3-emu-add-on" + }, + { + "slug": "train-simulator-db-br-605-ice-td-add-on", + "name": "Train Simulator: DB BR 605 ICE TD Add-On", + "url": "/v1/games/train-simulator-db-br-605-ice-td-add-on" + }, + { + "slug": "train-simulator-db-br-612-dmu-add-on", + "name": "Train Simulator: DB BR 612 DMU Add-On", + "url": "/v1/games/train-simulator-db-br-612-dmu-add-on" + }, + { + "slug": "train-simulator-db-br-642-dmu-add-on", + "name": "Train Simulator: DB BR 642 DMU Add-On", + "url": "/v1/games/train-simulator-db-br-642-dmu-add-on" + }, + { + "slug": "train-simulator-db-br-643-dmu-add-on", + "name": "Train Simulator: DB BR 643 DMU Add-On", + "url": "/v1/games/train-simulator-db-br-643-dmu-add-on" + }, + { + "slug": "train-simulator-db-br-648-loco-add-on", + "name": "Train Simulator: DB BR 648 Loco Add-On", + "url": "/v1/games/train-simulator-db-br-648-loco-add-on" + }, + { + "slug": "train-simulator-db-br111-loco-add-on", + "name": "Train Simulator: DB BR111 Loco Add-On", + "url": "/v1/games/train-simulator-db-br111-loco-add-on" + }, + { + "slug": "train-simulator-db-br143-loco-add-on", + "name": "Train Simulator: DB BR143 Loco Add-On", + "url": "/v1/games/train-simulator-db-br143-loco-add-on" + }, + { + "slug": "train-simulator-db-br232-loco-add-on", + "name": "Train Simulator: DB BR232 Loco Add-On", + "url": "/v1/games/train-simulator-db-br232-loco-add-on" + }, + { + "slug": "train-simulator-db-br420-emu-add-on", + "name": "Train Simulator: DB BR420 EMU Add-On", + "url": "/v1/games/train-simulator-db-br420-emu-add-on" + }, + { + "slug": "train-simulator-db-br423-emu-add-on", + "name": "Train Simulator: DB BR423 EMU Add-On", + "url": "/v1/games/train-simulator-db-br423-emu-add-on" + }, + { + "slug": "train-simulator-db-br424-emu-add-on", + "name": "Train Simulator: DB BR424 EMU Add-On", + "url": "/v1/games/train-simulator-db-br424-emu-add-on" + }, + { + "slug": "train-simulator-db-freight-1970s-loco-add-on", + "name": "Train Simulator: DB Freight: 1970s Loco Add-On", + "url": "/v1/games/train-simulator-db-freight-1970s-loco-add-on" + }, + { + "slug": "train-simulator-db-ice-1-emu-add-on", + "name": "Train Simulator: DB ICE 1 EMU Add-On", + "url": "/v1/games/train-simulator-db-ice-1-emu-add-on" + }, + { + "slug": "train-simulator-db-ice-2-emu-add-on", + "name": "Train Simulator: DB ICE 2 EMU Add-On", + "url": "/v1/games/train-simulator-db-ice-2-emu-add-on" + }, + { + "slug": "train-simulator-db-ice-3-emu-add-on", + "name": "Train Simulator: DB ICE 3 EMU Add-On", + "url": "/v1/games/train-simulator-db-ice-3-emu-add-on" + }, + { + "slug": "train-simulator-db-schenker-class-59-2-loco-add-on", + "name": "Train Simulator: DB Schenker Class 59/2 Loco Add-On", + "url": "/v1/games/train-simulator-db-schenker-class-59-2-loco-add-on" + }, + { + "slug": "train-simulator-dr-br-24-loco-add-on", + "name": "Train Simulator: DR BR 24 Loco Add-On", + "url": "/v1/games/train-simulator-dr-br-24-loco-add-on" + }, + { + "slug": "train-simulator-dr-br-44-loco-add-on", + "name": "Train Simulator: DR BR 44 Loco Add-On", + "url": "/v1/games/train-simulator-dr-br-44-loco-add-on" + }, + { + "slug": "train-simulator-dr-br-86-loco-add-on", + "name": "Train Simulator: DR BR 86 Loco Add-On", + "url": "/v1/games/train-simulator-dr-br-86-loco-add-on" + }, + { + "slug": "train-simulator-dispolok-br-189-loco-add-on", + "name": "Train Simulator: Dispolok BR 189 Loco Add-On", + "url": "/v1/games/train-simulator-dispolok-br-189-loco-add-on" + }, + { + "slug": "train-simulator-doncaster-works-route-add-on", + "name": "Train Simulator: Doncaster Works Route Add-On", + "url": "/v1/games/train-simulator-doncaster-works-route-add-on" + }, + { + "slug": "train-simulator-donner-pass-southern-pacific-route-add-on", + "name": "Train Simulator: Donner Pass: Southern Pacific Route Add-On", + "url": "/v1/games/train-simulator-donner-pass-southern-pacific-route-add-on" + }, + { + "slug": "train-simulator-duchess-of-sutherland-loco-add-on", + "name": "Train Simulator: Duchess of Sutherland Loco Add-On", + "url": "/v1/games/train-simulator-duchess-of-sutherland-loco-add-on" + }, + { + "slug": "train-simulator-e18-loco-add-on", + "name": "Train Simulator: E18 Loco Add-On", + "url": "/v1/games/train-simulator-e18-loco-add-on" + }, + { + "slug": "train-simulator-ecml-north-newcastle-edinburgh-route-add-on", + "name": "Train Simulator: ECML North: Newcastle - Edinburgh Route Add-On", + "url": "/v1/games/train-simulator-ecml-north-newcastle-edinburgh-route-add-on" + }, + { + "slug": "train-simulator-ews-freightliner-class-08s-loco-add-on", + "name": "Train Simulator: EWS & Freightliner Class 08s Loco Add-On", + "url": "/v1/games/train-simulator-ews-freightliner-class-08s-loco-add-on" + }, + { + "slug": "train-simulator-ews-class-66-v2-0-loco-add-on", + "name": "Train Simulator: EWS Class 66 v2.0 Loco Add-On", + "url": "/v1/games/train-simulator-ews-class-66-v2-0-loco-add-on" + }, + { + "slug": "train-simulator-ews-class-67-loco-add-on", + "name": "Train Simulator: EWS Class 67 Loco Add-On", + "url": "/v1/games/train-simulator-ews-class-67-loco-add-on" + }, + { + "slug": "train-simulator-ews-class-92-loco-add-on", + "name": "Train Simulator: EWS Class 92 Loco Add-On", + "url": "/v1/games/train-simulator-ews-class-92-loco-add-on" + }, + { + "slug": "train-simulator-east-coast-main-line-london-peterborough-route-add-on", + "name": "Train Simulator: East Coast Main Line London-Peterborough Route Add-On", + "url": "/v1/games/train-simulator-east-coast-main-line-london-peterborough-route-add-on" + }, + { + "slug": "train-simulator-east-coast-main-line-modern-york-peterborough-route-add-on", + "name": "Train Simulator: East Coast Main Line Modern: York - Peterborough Route Add-On", + "url": "/v1/games/train-simulator-east-coast-main-line-modern-york-peterborough-route-add-on" + }, + { + "slug": "train-simulator-east-coast-main-line-route-add-on", + "name": "Train Simulator: East Coast Main Line Route Add-On", + "url": "/v1/games/train-simulator-east-coast-main-line-route-add-on" + }, + { + "slug": "train-simulator-east-midlands-br-class-222-demu-add-on", + "name": "Train Simulator: East Midlands BR Class 222 DEMU Add-On", + "url": "/v1/games/train-simulator-east-midlands-br-class-222-demu-add-on" + }, + { + "slug": "train-simulator-east-midlands-coal-sherwood-high-marnham-route-add-on", + "name": "Train Simulator: East Midlands Coal: Sherwood - High Marnham Route Add-On", + "url": "/v1/games/train-simulator-east-midlands-coal-sherwood-high-marnham-route-add-on" + }, + { + "slug": "train-simulator-edinburgh-glasgow-route-add-on", + "name": "Train Simulator: Edinburgh-Glasgow Route Add-On", + "url": "/v1/games/train-simulator-edinburgh-glasgow-route-add-on" + }, + { + "slug": "train-simulator-engadin-linie-pontresina-scuol-tarasp-route-add-on", + "name": "Train Simulator: Engadin Linie: Pontresina - Scuol-Tarasp Route Add-On", + "url": "/v1/games/train-simulator-engadin-linie-pontresina-scuol-tarasp-route-add-on" + }, + { + "slug": "train-simulator-ennstalbahn-bishofshofen-selzthal-route-add-on", + "name": "Train Simulator: Ennstalbahn: Bishofshofen - Selzthal Route Add-On", + "url": "/v1/games/train-simulator-ennstalbahn-bishofshofen-selzthal-route-add-on" + }, + { + "slug": "train-simulator-european-loco-asset-pack", + "name": "Train Simulator: European Loco & Asset Pack", + "url": "/v1/games/train-simulator-european-loco-asset-pack" + }, + { + "slug": "train-simulator-falmouth-branch-route-add-on", + "name": "Train Simulator: Falmouth Branch Route Add-On", + "url": "/v1/games/train-simulator-falmouth-branch-route-add-on" + }, + { + "slug": "train-simulator-feather-river-canyon-route-add-on", + "name": "Train Simulator: Feather River Canyon Route Add-On", + "url": "/v1/games/train-simulator-feather-river-canyon-route-add-on" + }, + { + "slug": "train-simulator-fife-circle-line-edinburgh-dunfermline-route-add-on", + "name": "Train Simulator: Fife Circle Line: Edinburgh - Dunfermline Route Add-On", + "url": "/v1/games/train-simulator-fife-circle-line-edinburgh-dunfermline-route-add-on" + }, + { + "slug": "train-simulator-first-capital-connect-class-319-emu-add-on", + "name": "Train Simulator: First Capital Connect Class 319 EMU Add-On", + "url": "/v1/games/train-simulator-first-capital-connect-class-319-emu-add-on" + }, + { + "slug": "train-simulator-first-capital-connect-class-321-emu-add-on", + "name": "Train Simulator: First Capital Connect Class 321 EMU Add-On", + "url": "/v1/games/train-simulator-first-capital-connect-class-321-emu-add-on" + }, + { + "slug": "train-simulator-first-capital-connect-class-377-emu-add-on", + "name": "Train Simulator: First Capital Connect Class 377 EMU Add-On", + "url": "/v1/games/train-simulator-first-capital-connect-class-377-emu-add-on" + }, + { + "slug": "train-simulator-fort-kent-to-eagle-lake-route-add-on", + "name": "Train Simulator: Fort Kent to Eagle Lake Route Add-On", + "url": "/v1/games/train-simulator-fort-kent-to-eagle-lake-route-add-on" + }, + { + "slug": "train-simulator-fowler-4f-loco-add-on", + "name": "Train Simulator: Fowler 4F Loco Add-On", + "url": "/v1/games/train-simulator-fowler-4f-loco-add-on" + }, + { + "slug": "train-simulator-frankfurt-koblenz-route-add-on", + "name": "Train Simulator: Frankfurt - Koblenz Route Add-On", + "url": "/v1/games/train-simulator-frankfurt-koblenz-route-add-on" + }, + { + "slug": "train-simulator-frankfurt-high-speed-frankfurt-karlsruhe-route-extension-add-on", + "name": "Train Simulator: Frankfurt High Speed: Frankfurt – Karlsruhe Route Extension Add-On", + "url": "/v1/games/train-simulator-frankfurt-high-speed-frankfurt-karlsruhe-route-extension-add-on" + }, + { + "slug": "train-simulator-frankfurt-s-bahn-rhein-main-route-add-on", + "name": "Train Simulator: Frankfurt S-Bahn Rhein Main Route Add-On", + "url": "/v1/games/train-simulator-frankfurt-s-bahn-rhein-main-route-add-on" + }, + { + "slug": "train-simulator-frankfurt-u-bahn-route-add-on", + "name": "Train Simulator: Frankfurt U-Bahn Route Add-On", + "url": "/v1/games/train-simulator-frankfurt-u-bahn-route-add-on" + }, + { + "slug": "train-simulator-freightliner-class-57-0-loco-add-on", + "name": "Train Simulator: Freightliner Class 57/0 Loco Add-On", + "url": "/v1/games/train-simulator-freightliner-class-57-0-loco-add-on" + }, + { + "slug": "train-simulator-freightliner-class-66-v2-0-loco-add-on", + "name": "Train Simulator: Freightliner Class 66 v2.0 Loco Add-On", + "url": "/v1/games/train-simulator-freightliner-class-66-v2-0-loco-add-on" + }, + { + "slug": "train-simulator-freightliner-class-70-loco-add-on", + "name": "Train Simulator: Freightliner Class 70 Loco Add-On", + "url": "/v1/games/train-simulator-freightliner-class-70-loco-add-on" + }, + { + "slug": "train-simulator-geml-br-class-315-emu-add-on", + "name": "Train Simulator: GEML BR Class 315 EMU Add-On", + "url": "/v1/games/train-simulator-geml-br-class-315-emu-add-on" + }, + { + "slug": "train-simulator-geml-class-90-loco-add-on", + "name": "Train Simulator: GEML Class 90 Loco Add-On", + "url": "/v1/games/train-simulator-geml-class-90-loco-add-on" + }, + { + "slug": "train-simulator-gp40-2-loco-pack-add-on", + "name": "Train Simulator: GP40-2 Loco Pack Add-On", + "url": "/v1/games/train-simulator-gp40-2-loco-pack-add-on" + }, + { + "slug": "train-simulator-gwr-1000-class-county-class-steam-loco-add-on", + "name": "Train Simulator: GWR 1000 Class 'County Class' Steam Loco Add-On", + "url": "/v1/games/train-simulator-gwr-1000-class-county-class-steam-loco-add-on" + }, + { + "slug": "train-simulator-gwr-4200-5205-7200-2-8-0t-pack", + "name": "Train Simulator: GWR 4200/5205/7200 2-8-0T Pack", + "url": "/v1/games/train-simulator-gwr-4200-5205-7200-2-8-0t-pack" + }, + { + "slug": "train-simulator-gwr-56xx-loco-add-on", + "name": "Train Simulator: GWR 56XX Loco Add-On", + "url": "/v1/games/train-simulator-gwr-56xx-loco-add-on" + }, + { + "slug": "train-simulator-gwr-7800-manor-class-add-on", + "name": "Train Simulator: GWR 7800 'Manor' class Add-On", + "url": "/v1/games/train-simulator-gwr-7800-manor-class-add-on" + }, + { + "slug": "train-simulator-gwr-class-14xx-loco-add-on", + "name": "Train Simulator: GWR Class 14XX Loco Add-On", + "url": "/v1/games/train-simulator-gwr-class-14xx-loco-add-on" + }, + { + "slug": "train-simulator-gwr-large-prairies-steam-loco-add-on", + "name": "Train Simulator: GWR Large Prairies Steam Loco Add-On", + "url": "/v1/games/train-simulator-gwr-large-prairies-steam-loco-add-on" + }, + { + "slug": "train-simulator-gwr-nunney-castle-steam-loco-add-on", + "name": "Train Simulator: GWR Nunney Castle Steam Loco Add-On", + "url": "/v1/games/train-simulator-gwr-nunney-castle-steam-loco-add-on" + }, + { + "slug": "train-simulator-gwr-pannier-tank-pack-add-on", + "name": "Train Simulator: GWR Pannier Tank Pack Add-On", + "url": "/v1/games/train-simulator-gwr-pannier-tank-pack-add-on" + }, + { + "slug": "train-simulator-gwr-saint-class-travelling-post-office-loco-add-on", + "name": "Train Simulator: GWR Saint Class & Travelling Post Office Loco Add-On", + "url": "/v1/games/train-simulator-gwr-saint-class-travelling-post-office-loco-add-on" + }, + { + "slug": "train-simulator-gwr-small-prairies-loco-add-on", + "name": "Train Simulator: GWR Small Prairies Loco Add-On", + "url": "/v1/games/train-simulator-gwr-small-prairies-loco-add-on" + }, + { + "slug": "train-simulator-gwr-star-loco-add-on", + "name": "Train Simulator: GWR Star Loco Add-On", + "url": "/v1/games/train-simulator-gwr-star-loco-add-on" + }, + { + "slug": "train-simulator-gwr-steam-railmotor-loco-add-on", + "name": "Train Simulator: GWR Steam Railmotor Loco Add-On", + "url": "/v1/games/train-simulator-gwr-steam-railmotor-loco-add-on" + }, + { + "slug": "train-simulator-gatwick-express-br-class-460-juniper-emu-add-on", + "name": "Train Simulator: Gatwick Express BR Class 460 'Juniper' EMU Add-On", + "url": "/v1/games/train-simulator-gatwick-express-br-class-460-juniper-emu-add-on" + }, + { + "slug": "train-simulator-gatwick-express-class-442-wessex-emu-add-on", + "name": "Train Simulator: Gatwick Express Class 442 'Wessex' EMU Add-On", + "url": "/v1/games/train-simulator-gatwick-express-class-442-wessex-emu-add-on" + }, + { + "slug": "train-simulator-giselabahn-saalfelden-w-rgl-route-add-on", + "name": "Train Simulator: Giselabahn: Saalfelden - Wörgl Route Add-On", + "url": "/v1/games/train-simulator-giselabahn-saalfelden-w-rgl-route-add-on" + }, + { + "slug": "train-simulator-glasgow-airport-rail-link-route-add-on", + "name": "Train Simulator: Glasgow Airport Rail Link Route Add-On", + "url": "/v1/games/train-simulator-glasgow-airport-rail-link-route-add-on" + }, + { + "slug": "train-simulator-gotthardbahn-alpine-classic-erstfeld-bellinzona-route-add-on", + "name": "Train Simulator: Gotthardbahn Alpine Classic: Erstfeld – Bellinzona Route Add-On", + "url": "/v1/games/train-simulator-gotthardbahn-alpine-classic-erstfeld-bellinzona-route-add-on" + }, + { + "slug": "train-simulator-grand-central-class-180-adelante-dmu-add-on", + "name": "Train Simulator: Grand Central Class 180 'Adelante' DMU Add-On", + "url": "/v1/games/train-simulator-grand-central-class-180-adelante-dmu-add-on" + }, + { + "slug": "train-simulator-granger-heartland-kansas-city-topeka-route-add-on", + "name": "Train Simulator: Granger Heartland: Kansas City – Topeka Route Add-On", + "url": "/v1/games/train-simulator-granger-heartland-kansas-city-topeka-route-add-on" + }, + { + "slug": "train-simulator-great-eastern-main-line-london-ipswich-route-add-on", + "name": "Train Simulator: Great Eastern Main Line London-Ipswich Route Add-On", + "url": "/v1/games/train-simulator-great-eastern-main-line-london-ipswich-route-add-on" + }, + { + "slug": "train-simulator-great-western-main-line-route-add-on", + "name": "Train Simulator: Great Western Main Line Route Add-On", + "url": "/v1/games/train-simulator-great-western-main-line-route-add-on" + }, + { + "slug": "train-simulator-green-gold-hst-dmu-add-on", + "name": "Train Simulator: Green & Gold HST DMU Add-On", + "url": "/v1/games/train-simulator-green-gold-hst-dmu-add-on" + }, + { + "slug": "train-simulator-guiguang-high-speed-railway-guilin-hezhou-route-add-on", + "name": "Train Simulator: Guiguang High Speed Railway: Guilin - Hezhou Route Add-On", + "url": "/v1/games/train-simulator-guiguang-high-speed-railway-guilin-hezhou-route-add-on" + }, + { + "slug": "train-simulator-hamburg-s1-s-bahn-route-add-on", + "name": "Train Simulator: Hamburg S1 S-Bahn Route Add-On", + "url": "/v1/games/train-simulator-hamburg-s1-s-bahn-route-add-on" + }, + { + "slug": "train-simulator-hamburg-hanover-route-add-on", + "name": "Train Simulator: Hamburg-Hanover Route Add-On", + "url": "/v1/games/train-simulator-hamburg-hanover-route-add-on" + }, + { + "slug": "train-simulator-hamburg-l-beck-railway-route-add-on", + "name": "Train Simulator: Hamburg-Lübeck Railway Route Add-On", + "url": "/v1/games/train-simulator-hamburg-l-beck-railway-route-add-on" + }, + { + "slug": "train-simulator-hidaka-main-line-tomakomai-hidaka-mombetsu-route-add-on", + "name": "Train Simulator: Hidaka Main Line: Tomakomai - Hidaka-Mombetsu Route Add-On", + "url": "/v1/games/train-simulator-hidaka-main-line-tomakomai-hidaka-mombetsu-route-add-on" + }, + { + "slug": "train-simulator-horseshoe-curve-route-add-on", + "name": "Train Simulator: Horseshoe Curve Route Add-On", + "url": "/v1/games/train-simulator-horseshoe-curve-route-add-on" + }, + { + "slug": "train-simulator-hudson-line-new-york-croton-harmon-route-add-on", + "name": "Train Simulator: Hudson Line: New York – Croton-Harmon Route Add-On", + "url": "/v1/games/train-simulator-hudson-line-new-york-croton-harmon-route-add-on" + }, + { + "slug": "train-simulator-im-k-blitzer-bergland-route-add-on", + "name": "Train Simulator: Im Köblitzer Bergland Route Add-On", + "url": "/v1/games/train-simulator-im-k-blitzer-bergland-route-add-on" + }, + { + "slug": "train-simulator-inselbahn-stralsund-sassnitz-route-add-on", + "name": "Train Simulator: Inselbahn: Stralsund – Sassnitz Route Add-On", + "url": "/v1/games/train-simulator-inselbahn-stralsund-sassnitz-route-add-on" + }, + { + "slug": "train-simulator-intercity-br-class-370-apt-p-loco-add-on", + "name": "Train Simulator: InterCity BR Class 370 ‘APT-P’ Loco Add-On", + "url": "/v1/games/train-simulator-intercity-br-class-370-apt-p-loco-add-on" + }, + { + "slug": "train-simulator-intercity-br-class-89-badger-loco-add-on", + "name": "Train Simulator: InterCity BR Class 89 ‘Badger’ Loco Add-On", + "url": "/v1/games/train-simulator-intercity-br-class-89-badger-loco-add-on" + }, + { + "slug": "train-simulator-intercity-class-91-loco-add-on", + "name": "Train Simulator: InterCity Class 91 Loco Add-On", + "url": "/v1/games/train-simulator-intercity-class-91-loco-add-on" + }, + { + "slug": "train-simulator-isle-of-wight-route-add-on", + "name": "Train Simulator: Isle of Wight Route Add-On", + "url": "/v1/games/train-simulator-isle-of-wight-route-add-on" + }, + { + "slug": "train-simulator-karawankenbahn-ljubljana-villach-tarvisio-route-add-on", + "name": "Train Simulator: Karawankenbahn: Ljubljana, Villach & Tarvisio Route Add-On", + "url": "/v1/games/train-simulator-karawankenbahn-ljubljana-villach-tarvisio-route-add-on" + }, + { + "slug": "train-simulator-konstanz-villingen-route-extension-villingen-hausach-add-on", + "name": "Train Simulator: Konstanz - Villingen Route Extension: Villingen - Hausach Add-On", + "url": "/v1/games/train-simulator-konstanz-villingen-route-extension-villingen-hausach-add-on" + }, + { + "slug": "train-simulator-konstanz-villingen-route-add-on", + "name": "Train Simulator: Konstanz-Villingen Route Add-On", + "url": "/v1/games/train-simulator-konstanz-villingen-route-add-on" + }, + { + "slug": "train-simulator-kwazulu-natal-corridor-pietermaritzburg-ladysmith-add-on", + "name": "Train Simulator: KwaZulu-Natal Corridor: Pietermaritzburg-Ladysmith Add-On", + "url": "/v1/games/train-simulator-kwazulu-natal-corridor-pietermaritzburg-ladysmith-add-on" + }, + { + "slug": "train-simulator-k-ln-airport-link-route-extension-add-on", + "name": "Train Simulator: Köln Airport Link Route Extension Add-On", + "url": "/v1/games/train-simulator-k-ln-airport-link-route-extension-add-on" + }, + { + "slug": "train-simulator-lgv-rh-ne-alpes-m-diterran-e-route-extension-add-on", + "name": "Train Simulator: LGV Rhône-Alpes & Méditerranée Route Extension Add-On", + "url": "/v1/games/train-simulator-lgv-rh-ne-alpes-m-diterran-e-route-extension-add-on" + }, + { + "slug": "train-simulator-lgv-marseille-avignon-route-add-on", + "name": "Train Simulator: LGV: Marseille - Avignon Route Add-On", + "url": "/v1/games/train-simulator-lgv-marseille-avignon-route-add-on" + }, + { + "slug": "train-simulator-lms-5xp-jubilee-class-steam-loco-add-on", + "name": "Train Simulator: LMS 5XP Jubilee Class Steam Loco Add-On", + "url": "/v1/games/train-simulator-lms-5xp-jubilee-class-steam-loco-add-on" + }, + { + "slug": "train-simulator-lms-class-3f-jinty-loco-add-on", + "name": "Train Simulator: LMS Class 3F ‘Jinty’ Loco Add-On", + "url": "/v1/games/train-simulator-lms-class-3f-jinty-loco-add-on" + }, + { + "slug": "train-simulator-lms-coronation-class-duchess-of-hamilton-loco-add-on", + "name": "Train Simulator: LMS Coronation Class \"Duchess of Hamilton\" Loco Add-On", + "url": "/v1/games/train-simulator-lms-coronation-class-duchess-of-hamilton-loco-add-on" + }, + { + "slug": "train-simulator-lms-rebuilt-patriot-class-steam-loco-add-on", + "name": "Train Simulator: LMS Rebuilt Patriot Class Steam Loco Add-On", + "url": "/v1/games/train-simulator-lms-rebuilt-patriot-class-steam-loco-add-on" + }, + { + "slug": "train-simulator-lms-rebuilt-royal-scot-steam-loco-add-on", + "name": "Train Simulator: LMS Rebuilt Royal Scot Steam Loco Add-On", + "url": "/v1/games/train-simulator-lms-rebuilt-royal-scot-steam-loco-add-on" + }, + { + "slug": "train-simulator-lms-stanier-class-5-black-five-steam-loco-add-on", + "name": "Train Simulator: LMS Stanier Class 5 'Black Five' Steam Loco Add-On", + "url": "/v1/games/train-simulator-lms-stanier-class-5-black-five-steam-loco-add-on" + }, + { + "slug": "train-simulator-lms-stanier-class-8f-steam-loco-add-on", + "name": "Train Simulator: LMS Stanier Class 8F Steam Loco Add-On", + "url": "/v1/games/train-simulator-lms-stanier-class-8f-steam-loco-add-on" + }, + { + "slug": "train-simulator-lms-stanier-mogul-steam-loco-add-on", + "name": "Train Simulator: LMS Stanier Mogul Steam Loco Add-On", + "url": "/v1/games/train-simulator-lms-stanier-mogul-steam-loco-add-on" + }, + { + "slug": "train-simulator-lner-br-class-43-high-speed-train-remastered-loco-add-on", + "name": "Train Simulator: LNER BR Class 43 ‘High Speed Train’ Remastered Loco Add-On", + "url": "/v1/games/train-simulator-lner-br-class-43-high-speed-train-remastered-loco-add-on" + }, + { + "slug": "train-simulator-lner-black-class-a3-flying-scotsman-loco-add-on", + "name": "Train Simulator: LNER Black Class A3 ‘Flying Scotsman’ Loco Add-On", + "url": "/v1/games/train-simulator-lner-black-class-a3-flying-scotsman-loco-add-on" + }, + { + "slug": "train-simulator-lner-class-a3-flying-scotsman-loco-add-on", + "name": "Train Simulator: LNER Class A3 ‘Flying Scotsman’ Loco Add-On", + "url": "/v1/games/train-simulator-lner-class-a3-flying-scotsman-loco-add-on" + }, + { + "slug": "train-simulator-lner-class-v2-steam-loco-add-on", + "name": "Train Simulator: LNER Class V2 Steam Loco Add-On", + "url": "/v1/games/train-simulator-lner-class-v2-steam-loco-add-on" + }, + { + "slug": "train-simulator-lner-peppercorn-class-a2-blue-peter-loco-add-on", + "name": "Train Simulator: LNER Peppercorn Class A2 'Blue Peter' Loco Add-On", + "url": "/v1/games/train-simulator-lner-peppercorn-class-a2-blue-peter-loco-add-on" + }, + { + "slug": "train-simulator-lner-peppercorn-class-k1-loco-add-on", + "name": "Train Simulator: LNER Peppercorn Class K1 Loco Add-On", + "url": "/v1/games/train-simulator-lner-peppercorn-class-k1-loco-add-on" + }, + { + "slug": "train-simulator-lner-raven-q6-steam-loco-add-on", + "name": "Train Simulator: LNER Raven Q6 Steam Loco Add-On", + "url": "/v1/games/train-simulator-lner-raven-q6-steam-loco-add-on" + }, + { + "slug": "train-simulator-lner-br-class-a1-tornado-loco-add-on", + "name": "Train Simulator: LNER/BR Class A1 ‘Tornado’ Loco Add-On", + "url": "/v1/games/train-simulator-lner-br-class-a1-tornado-loco-add-on" + }, + { + "slug": "train-simulator-lner-br-class-j94-loco-add-on", + "name": "Train Simulator: LNER/BR Class J94 Loco Add-On", + "url": "/v1/games/train-simulator-lner-br-class-j94-loco-add-on" + }, + { + "slug": "train-simulator-lnwr-g2-super-d-steam-loco-add-on", + "name": "Train Simulator: LNWR G2 Super D Steam Loco Add-On", + "url": "/v1/games/train-simulator-lnwr-g2-super-d-steam-loco-add-on" + }, + { + "slug": "train-simulator-lake-constance-schaffhausen-kreuzlingen-route-add-on", + "name": "Train Simulator: Lake Constance: Schaffhausen – Kreuzlingen Route Add-On", + "url": "/v1/games/train-simulator-lake-constance-schaffhausen-kreuzlingen-route-add-on" + }, + { + "slug": "train-simulator-liverpool-manchester-route-add-on", + "name": "Train Simulator: Liverpool-Manchester Route Add-On", + "url": "/v1/games/train-simulator-liverpool-manchester-route-add-on" + }, + { + "slug": "train-simulator-livonia-division-monroe-subdivision-route-add-on", + "name": "Train Simulator: Livonia Division: Monroe - Subdivision Route Add-On", + "url": "/v1/games/train-simulator-livonia-division-monroe-subdivision-route-add-on" + }, + { + "slug": "train-simulator-london-marylebone-aylesbury-route-add-on", + "name": "Train Simulator: London Marylebone - Aylesbury Route Add-On", + "url": "/v1/games/train-simulator-london-marylebone-aylesbury-route-add-on" + }, + { + "slug": "train-simulator-london-overground-br-class-313-emu-add-on", + "name": "Train Simulator: London Overground BR Class 313 EMU Add-On", + "url": "/v1/games/train-simulator-london-overground-br-class-313-emu-add-on" + }, + { + "slug": "train-simulator-london-overground-class-378-capitalstar-emu-add-on", + "name": "Train Simulator: London Overground Class 378 'Capitalstar' EMU Add-On", + "url": "/v1/games/train-simulator-london-overground-class-378-capitalstar-emu-add-on" + }, { "slug": "train-simulator-london-subway", "name": "Train Simulator: London Subway", "url": "/v1/games/train-simulator-london-subway" }, + { + "slug": "train-simulator-london-transport-heritage-collection", + "name": "Train Simulator: London Transport Heritage Collection", + "url": "/v1/games/train-simulator-london-transport-heritage-collection" + }, + { + "slug": "train-simulator-london-underground-s7-1-emu-add-on", + "name": "Train Simulator: London Underground S7+1 EMU Add-On", + "url": "/v1/games/train-simulator-london-underground-s7-1-emu-add-on" + }, + { + "slug": "train-simulator-london-underground-s8-emu-add-on", + "name": "Train Simulator: London Underground S8 EMU Add-On", + "url": "/v1/games/train-simulator-london-underground-s8-emu-add-on" + }, + { + "slug": "train-simulator-london-to-brighton-route-add-on", + "name": "Train Simulator: London to Brighton Route Add-On", + "url": "/v1/games/train-simulator-london-to-brighton-route-add-on" + }, + { + "slug": "train-simulator-london-faversham-high-speed-route-add-on", + "name": "Train Simulator: London-Faversham High Speed Route Add-On", + "url": "/v1/games/train-simulator-london-faversham-high-speed-route-add-on" + }, + { + "slug": "train-simulator-longhai-railway-lingbao-mianchi-route-add-on", + "name": "Train Simulator: Longhai Railway: Lingbao - Mianchi Route Add-On", + "url": "/v1/games/train-simulator-longhai-railway-lingbao-mianchi-route-add-on" + }, + { + "slug": "train-simulator-los-angeles-commuter-rail-f59ph-loco-add-on", + "name": "Train Simulator: Los Angeles Commuter Rail F59PH Loco Add-On", + "url": "/v1/games/train-simulator-los-angeles-commuter-rail-f59ph-loco-add-on" + }, + { + "slug": "train-simulator-mrce-br-185-5-loco-add-on", + "name": "Train Simulator: MRCE BR 185.5 Loco Add-On", + "url": "/v1/games/train-simulator-mrce-br-185-5-loco-add-on" + }, + { + "slug": "train-simulator-mrce-dispolok-pack-loco-add-on", + "name": "Train Simulator: MRCE Dispolok Pack Loco Add-On", + "url": "/v1/games/train-simulator-mrce-dispolok-pack-loco-add-on" + }, + { + "slug": "train-simulator-mrce-er20-eurorunner-loco-add-on", + "name": "Train Simulator: MRCE ER20 Eurorunner Loco Add-On", + "url": "/v1/games/train-simulator-mrce-er20-eurorunner-loco-add-on" + }, + { + "slug": "train-simulator-mrce-es-64-u2-taurus-loco-add-on", + "name": "Train Simulator: MRCE ES 64 U2 'Taurus' Loco Add-On", + "url": "/v1/games/train-simulator-mrce-es-64-u2-taurus-loco-add-on" + }, + { + "slug": "train-simulator-malmesbury-branch-route-add-on", + "name": "Train Simulator: Malmesbury Branch Route Add-On", + "url": "/v1/games/train-simulator-malmesbury-branch-route-add-on" + }, + { + "slug": "train-simulator-marsdonshire-route-add-on", + "name": "Train Simulator: Marsdonshire Route Add-On", + "url": "/v1/games/train-simulator-marsdonshire-route-add-on" + }, + { + "slug": "train-simulator-merchant-navy-class-35028-clan-line-steam-loco-add-on", + "name": "Train Simulator: Merchant Navy Class 35028 ‘Clan Line’ Steam Loco Add-On", + "url": "/v1/games/train-simulator-merchant-navy-class-35028-clan-line-steam-loco-add-on" + }, + { + "slug": "train-simulator-metro-north-m2-emu-add-on", + "name": "Train Simulator: Metro North M2 EMU Add-On", + "url": "/v1/games/train-simulator-metro-north-m2-emu-add-on" + }, + { + "slug": "train-simulator-metro-north-kawasaki-m8-emu-add-on", + "name": "Train Simulator: Metro-North Kawasaki M8 EMU Add-On", + "url": "/v1/games/train-simulator-metro-north-kawasaki-m8-emu-add-on" + }, + { + "slug": "train-simulator-metro-north-p32-ac-dm-genesis-loco-add-on", + "name": "Train Simulator: Metro-North P32 AC-DM 'Genesis' Loco Add-On", + "url": "/v1/games/train-simulator-metro-north-p32-ac-dm-genesis-loco-add-on" + }, + { + "slug": "train-simulator-metronom-me-146-loco-add-on", + "name": "Train Simulator: Metronom ME 146 Loco Add-On", + "url": "/v1/games/train-simulator-metronom-me-146-loco-add-on" + }, + { + "slug": "train-simulator-metropolitan-line-aldgate-uxbridge-amersham-route-add-on", + "name": "Train Simulator: Metropolitan Line: Aldgate - Uxbridge & Amersham Route Add-On", + "url": "/v1/games/train-simulator-metropolitan-line-aldgate-uxbridge-amersham-route-add-on" + }, + { + "slug": "train-simulator-miami-west-palm-beach-route-add-on", + "name": "Train Simulator: Miami - West Palm Beach Route Add-On", + "url": "/v1/games/train-simulator-miami-west-palm-beach-route-add-on" + }, + { + "slug": "train-simulator-miami-commuter-rail-f40phl-2-loco-add-on", + "name": "Train Simulator: Miami Commuter Rail F40PHL-2 Loco Add-On", + "url": "/v1/games/train-simulator-miami-commuter-rail-f40phl-2-loco-add-on" + }, + { + "slug": "train-simulator-midland-line-aickens-springfield-route-add-on", + "name": "Train Simulator: Midland Line: Aickens - Springfield Route Add-On", + "url": "/v1/games/train-simulator-midland-line-aickens-springfield-route-add-on" + }, + { + "slug": "train-simulator-midland-main-line-leicester-derby-nottingham-route-add-on", + "name": "Train Simulator: Midland Main Line: Leicester - Derby & Nottingham Route Add-On", + "url": "/v1/games/train-simulator-midland-main-line-leicester-derby-nottingham-route-add-on" + }, + { + "slug": "train-simulator-midland-main-line-sheffield-derby-route-add-on", + "name": "Train Simulator: Midland Main Line: Sheffield - Derby Route Add-On", + "url": "/v1/games/train-simulator-midland-main-line-sheffield-derby-route-add-on" + }, + { + "slug": "train-simulator-mighty-seddin-freight-route-add-on", + "name": "Train Simulator: Mighty Seddin Freight Route Add-On", + "url": "/v1/games/train-simulator-mighty-seddin-freight-route-add-on" + }, + { + "slug": "train-simulator-mittenwaldbahn-garmisch-partenkirchen-innsbruck-route-add-on", + "name": "Train Simulator: Mittenwaldbahn: Garmisch-Partenkirchen - Innsbruck Route Add-On", + "url": "/v1/games/train-simulator-mittenwaldbahn-garmisch-partenkirchen-innsbruck-route-add-on" + }, + { + "slug": "train-simulator-montana-hi-line-shelby-havre-route-add-on", + "name": "Train Simulator: Montana Hi-Line: Shelby - Havre Route Add-On", + "url": "/v1/games/train-simulator-montana-hi-line-shelby-havre-route-add-on" + }, + { + "slug": "train-simulator-mosel-valley-koblenz-trier-route-add-on", + "name": "Train Simulator: Mosel Valley: Koblenz - Trier Route Add-On", + "url": "/v1/games/train-simulator-mosel-valley-koblenz-trier-route-add-on" + }, + { + "slug": "train-simulator-munich-garmisch-partenkirchen-route-add-on", + "name": "Train Simulator: Munich - Garmisch-Partenkirchen Route Add-On", + "url": "/v1/games/train-simulator-munich-garmisch-partenkirchen-route-add-on" + }, + { + "slug": "train-simulator-munich-rosenheim-route-add-on", + "name": "Train Simulator: Munich - Rosenheim Route Add-On", + "url": "/v1/games/train-simulator-munich-rosenheim-route-add-on" + }, + { + "slug": "train-simulator-munich-augsburg-route-add-on", + "name": "Train Simulator: Munich-Augsburg Route Add-On", + "url": "/v1/games/train-simulator-munich-augsburg-route-add-on" + }, + { + "slug": "train-simulator-m-nster-bremen-route-add-on", + "name": "Train Simulator: Münster - Bremen Route Add-On", + "url": "/v1/games/train-simulator-m-nster-bremen-route-add-on" + }, + { + "slug": "train-simulator-n15-king-arthur-class-sir-lamiel-loco-add-on", + "name": "Train Simulator: N15 King Arthur Class ‘Sir Lamiel’ Loco Add-On", + "url": "/v1/games/train-simulator-n15-king-arthur-class-sir-lamiel-loco-add-on" + }, + { + "slug": "train-simulator-nec-new-york-new-haven-route-add-on", + "name": "Train Simulator: NEC: New York-New Haven Route Add-On", + "url": "/v1/games/train-simulator-nec-new-york-new-haven-route-add-on" + }, + { + "slug": "train-simulator-nj-transit-alp-46-loco-add-on", + "name": "Train Simulator: NJ TRANSIT® ALP-46 Loco Add-On", + "url": "/v1/games/train-simulator-nj-transit-alp-46-loco-add-on" + }, + { + "slug": "train-simulator-nj-transit-arrow-iii-emu-add-on", + "name": "Train Simulator: NJ TRANSIT® Arrow III EMU Add-On", + "url": "/v1/games/train-simulator-nj-transit-arrow-iii-emu-add-on" + }, + { + "slug": "train-simulator-nj-transit-f40ph-2cat-loco-add-on", + "name": "Train Simulator: NJ TRANSIT® F40PH -2CAT Loco Add-On", + "url": "/v1/games/train-simulator-nj-transit-f40ph-2cat-loco-add-on" + }, + { + "slug": "train-simulator-nj-transit-gp40ph-2b-loco-add-on", + "name": "Train Simulator: NJ TRANSIT® GP40PH-2B Loco Add-On", + "url": "/v1/games/train-simulator-nj-transit-gp40ph-2b-loco-add-on" + }, + { + "slug": "train-simulator-nj-transit-u34ch-loco-add-on", + "name": "Train Simulator: NJ TRANSIT® U34CH Loco Add-On", + "url": "/v1/games/train-simulator-nj-transit-u34ch-loco-add-on" + }, + { + "slug": "train-simulator-nkp-s-2-class-berkshire-loco-add-on", + "name": "Train Simulator: NKP S-2 Class 'Berkshire' Loco Add-On", + "url": "/v1/games/train-simulator-nkp-s-2-class-berkshire-loco-add-on" + }, + { + "slug": "train-simulator-netherfield-nottingham-network-route-add-on", + "name": "Train Simulator: Netherfield: Nottingham Network Route Add-On", + "url": "/v1/games/train-simulator-netherfield-nottingham-network-route-add-on" + }, + { + "slug": "train-simulator-network-southeast-class-121-dmu-add-on", + "name": "Train Simulator: Network SouthEast Class 121 DMU Add-On", + "url": "/v1/games/train-simulator-network-southeast-class-121-dmu-add-on" + }, + { + "slug": "train-simulator-network-southeast-class-159-dmu-add-on", + "name": "Train Simulator: Network SouthEast Class 159 DMU Add-On", + "url": "/v1/games/train-simulator-network-southeast-class-159-dmu-add-on" + }, + { + "slug": "train-simulator-network-southeast-class-415-4epb-emu-add-on", + "name": "Train Simulator: Network SouthEast Class 415 '4EPB' EMU Add-On", + "url": "/v1/games/train-simulator-network-southeast-class-415-4epb-emu-add-on" + }, + { + "slug": "train-simulator-network-southeast-class-205-thumper-demu-add-on", + "name": "Train Simulator: Network Southeast Class 205 ‘Thumper’ DEMU Add-On", + "url": "/v1/games/train-simulator-network-southeast-class-205-thumper-demu-add-on" + }, + { + "slug": "train-simulator-network-southeast-class-47-loco-add-on", + "name": "Train Simulator: Network Southeast Class 47 Loco Add-On", + "url": "/v1/games/train-simulator-network-southeast-class-47-loco-add-on" + }, + { + "slug": "train-simulator-new-haven-dl-109-loco-add-on", + "name": "Train Simulator: New Haven DL-109 Loco Add-On", + "url": "/v1/games/train-simulator-new-haven-dl-109-loco-add-on" + }, + { + "slug": "train-simulator-new-haven-e-33-loco-add-on", + "name": "Train Simulator: New Haven E-33 Loco Add-On", + "url": "/v1/games/train-simulator-new-haven-e-33-loco-add-on" + }, + { + "slug": "train-simulator-new-haven-fl9-loco-add-on", + "name": "Train Simulator: New Haven FL9 Loco Add-On", + "url": "/v1/games/train-simulator-new-haven-fl9-loco-add-on" + }, + { + "slug": "train-simulator-norddeutsche-bahn-kiel-l-beck-route-add-on", + "name": "Train Simulator: Norddeutsche-Bahn: Kiel - Lübeck Route Add-On", + "url": "/v1/games/train-simulator-norddeutsche-bahn-kiel-l-beck-route-add-on" + }, + { + "slug": "train-simulator-norfolk-southern-big-7s-loco-add-on", + "name": "Train Simulator: Norfolk Southern Big 7s Loco Add-On", + "url": "/v1/games/train-simulator-norfolk-southern-big-7s-loco-add-on" + }, + { + "slug": "train-simulator-norfolk-southern-c39-8-loco-add-on", + "name": "Train Simulator: Norfolk Southern C39-8 Loco Add-On", + "url": "/v1/games/train-simulator-norfolk-southern-c39-8-loco-add-on" + }, + { + "slug": "train-simulator-norfolk-southern-coal-district-route-add-on", + "name": "Train Simulator: Norfolk Southern Coal District Route Add-On", + "url": "/v1/games/train-simulator-norfolk-southern-coal-district-route-add-on" + }, + { + "slug": "train-simulator-norfolk-southern-dash8-40c-loco-add-on", + "name": "Train Simulator: Norfolk Southern Dash8-40C Loco Add-On", + "url": "/v1/games/train-simulator-norfolk-southern-dash8-40c-loco-add-on" + }, + { + "slug": "train-simulator-norfolk-southern-gp33-eco-loco-add-on", + "name": "Train Simulator: Norfolk Southern GP33 ECO Loco Add-On", + "url": "/v1/games/train-simulator-norfolk-southern-gp33-eco-loco-add-on" + }, + { + "slug": "train-simulator-norfolk-southern-gp38-2-high-hood-loco-add-on", + "name": "Train Simulator: Norfolk Southern GP38-2 High Hood Loco Add-On", + "url": "/v1/games/train-simulator-norfolk-southern-gp38-2-high-hood-loco-add-on" + }, + { + "slug": "train-simulator-norfolk-southern-gp50hh-loco-add-on", + "name": "Train Simulator: Norfolk Southern GP50HH Loco Add-On", + "url": "/v1/games/train-simulator-norfolk-southern-gp50hh-loco-add-on" + }, + { + "slug": "train-simulator-norfolk-southern-gp60-loco-add-on", + "name": "Train Simulator: Norfolk Southern GP60 Loco Add-On", + "url": "/v1/games/train-simulator-norfolk-southern-gp60-loco-add-on" + }, + { + "slug": "train-simulator-norfolk-southern-heritage-sd70aces-loco-add-on", + "name": "Train Simulator: Norfolk Southern Heritage SD70ACes Loco Add-On", + "url": "/v1/games/train-simulator-norfolk-southern-heritage-sd70aces-loco-add-on" + }, + { + "slug": "train-simulator-norfolk-southern-n-line-route-add-on", + "name": "Train Simulator: Norfolk Southern N-Line Route Add-On", + "url": "/v1/games/train-simulator-norfolk-southern-n-line-route-add-on" + }, + { + "slug": "train-simulator-norfolk-southern-sd40-2-high-nose-loco-add-on", + "name": "Train Simulator: Norfolk Southern SD40-2 High Nose Loco Add-On", + "url": "/v1/games/train-simulator-norfolk-southern-sd40-2-high-nose-loco-add-on" + }, + { + "slug": "train-simulator-norfolk-southern-sd40-2-high-nose-long-hood-forward-loco-add-on", + "name": "Train Simulator: Norfolk Southern SD40-2 High Nose Long Hood Forward Loco Add-On", + "url": "/v1/games/train-simulator-norfolk-southern-sd40-2-high-nose-long-hood-forward-loco-add-on" + }, + { + "slug": "train-simulator-norfolk-southern-sd45-high-hoods-loco-add-on", + "name": "Train Simulator: Norfolk Southern SD45 High Hoods Loco Add-On", + "url": "/v1/games/train-simulator-norfolk-southern-sd45-high-hoods-loco-add-on" + }, + { + "slug": "train-simulator-norfolk-southern-sd60e-loco-add-on", + "name": "Train Simulator: Norfolk Southern SD60E Loco Add-On", + "url": "/v1/games/train-simulator-norfolk-southern-sd60e-loco-add-on" + }, + { + "slug": "train-simulator-north-jersey-coast-morristown-lines-route-add-on", + "name": "Train Simulator: North Jersey Coast & Morristown Lines Route Add-On", + "url": "/v1/games/train-simulator-north-jersey-coast-morristown-lines-route-add-on" + }, + { + "slug": "train-simulator-north-jersey-coast-line-route-add-on", + "name": "Train Simulator: North Jersey Coast Line Route Add-On", + "url": "/v1/games/train-simulator-north-jersey-coast-line-route-add-on" + }, + { + "slug": "train-simulator-north-london-goblin-lines-add-on", + "name": "Train Simulator: North London & Goblin Lines Add-On", + "url": "/v1/games/train-simulator-north-london-goblin-lines-add-on" + }, + { + "slug": "train-simulator-north-london-line-route-add-on", + "name": "Train Simulator: North London Line Route Add-On", + "url": "/v1/games/train-simulator-north-london-line-route-add-on" + }, + { + "slug": "train-simulator-north-somerset-railway-route-add-on", + "name": "Train Simulator: North Somerset Railway Route Add-On", + "url": "/v1/games/train-simulator-north-somerset-railway-route-add-on" + }, + { + "slug": "train-simulator-northeast-corridor-new-york-philadelphia-route-add-on", + "name": "Train Simulator: Northeast Corridor: New York - Philadelphia Route Add-On", + "url": "/v1/games/train-simulator-northeast-corridor-new-york-philadelphia-route-add-on" + }, + { + "slug": "train-simulator-northeast-corridor-washington-dc-baltimore-route-add-on", + "name": "Train Simulator: Northeast Corridor: Washington DC - Baltimore Route Add-On", + "url": "/v1/games/train-simulator-northeast-corridor-washington-dc-baltimore-route-add-on" + }, + { + "slug": "train-simulator-nuremberg-regensburg-bahn", + "name": "Train Simulator: Nuremberg & Regensburg Bahn", + "url": "/v1/games/train-simulator-nuremberg-regensburg-bahn" + }, + { + "slug": "train-simulator-ohio-steel-2-route-add-on", + "name": "Train Simulator: Ohio Steel 2 Route Add-On", + "url": "/v1/games/train-simulator-ohio-steel-2-route-add-on" + }, + { + "slug": "train-simulator-outeniqua-choo-tjoe-route-add-on", + "name": "Train Simulator: Outeniqua Choo Tjoe Route Add-On", + "url": "/v1/games/train-simulator-outeniqua-choo-tjoe-route-add-on" + }, + { + "slug": "train-simulator-prr-alco-rs11-loco-add-on", + "name": "Train Simulator: PRR Alco RS11 Loco Add-On", + "url": "/v1/games/train-simulator-prr-alco-rs11-loco-add-on" + }, + { + "slug": "train-simulator-prr-baldwin-centipede-loco-add-on", + "name": "Train Simulator: PRR Baldwin Centipede Loco Add-On", + "url": "/v1/games/train-simulator-prr-baldwin-centipede-loco-add-on" + }, + { + "slug": "train-simulator-prr-dr6-4-2000-broadway-limited-loco-add-on", + "name": "Train Simulator: PRR DR6-4-2000 & Broadway Limited Loco Add-On", + "url": "/v1/games/train-simulator-prr-dr6-4-2000-broadway-limited-loco-add-on" + }, + { + "slug": "train-simulator-prr-fa-1-fa-2-loco-add-on", + "name": "Train Simulator: PRR FA-1 & FA-2 Loco Add-On", + "url": "/v1/games/train-simulator-prr-fa-1-fa-2-loco-add-on" + }, + { + "slug": "train-simulator-prr-ge-44-loco-add-on", + "name": "Train Simulator: PRR GE 44 Loco Add-On", + "url": "/v1/games/train-simulator-prr-ge-44-loco-add-on" + }, + { + "slug": "train-simulator-prr-gg1-loco-add-on", + "name": "Train Simulator: PRR GG1 Loco Add-On", + "url": "/v1/games/train-simulator-prr-gg1-loco-add-on" + }, + { + "slug": "train-simulator-prr-k4-loco-add-on", + "name": "Train Simulator: PRR K4 Loco Add-On", + "url": "/v1/games/train-simulator-prr-k4-loco-add-on" + }, + { + "slug": "train-simulator-prr-rf-16-sharknose-loco-add-on", + "name": "Train Simulator: PRR RF-16 'Sharknose' Loco Add-On", + "url": "/v1/games/train-simulator-prr-rf-16-sharknose-loco-add-on" + }, { "slug": "train-simulator-pacific-surfliner-la-san-diego-route", "name": "Train Simulator: Pacific Surfliner® LA - San Diego Route", "url": "/v1/games/train-simulator-pacific-surfliner-la-san-diego-route" }, + { + "slug": "train-simulator-peninsula-corridor-san-francisco-gilroy-route-add-on", + "name": "Train Simulator: Peninsula Corridor: San Francisco - Gilroy Route Add-On", + "url": "/v1/games/train-simulator-peninsula-corridor-san-francisco-gilroy-route-add-on" + }, + { + "slug": "train-simulator-peninsula-corridor-san-francisco-san-jose-route-add-on", + "name": "Train Simulator: Peninsula Corridor: San Francisco – San Jose Route Add-On", + "url": "/v1/games/train-simulator-peninsula-corridor-san-francisco-san-jose-route-add-on" + }, + { + "slug": "train-simulator-portsmouth-direct-line-route-add-on", + "name": "Train Simulator: Portsmouth Direct Line Route Add-On", + "url": "/v1/games/train-simulator-portsmouth-direct-line-route-add-on" + }, + { + "slug": "train-simulator-portsmouth-direct-line-london-waterloo-portsmouth-route-add-on", + "name": "Train Simulator: Portsmouth Direct Line: London Waterloo - Portsmouth Route Add-On", + "url": "/v1/games/train-simulator-portsmouth-direct-line-london-waterloo-portsmouth-route-add-on" + }, + { + "slug": "train-simulator-powerhaul-class-66-v2-0-loco-add-on", + "name": "Train Simulator: Powerhaul Class 66 V2.0 Loco Add-On", + "url": "/v1/games/train-simulator-powerhaul-class-66-v2-0-loco-add-on" + }, + { + "slug": "train-simulator-promontory-summit-route-add-on", + "name": "Train Simulator: Promontory Summit Route Add-On", + "url": "/v1/games/train-simulator-promontory-summit-route-add-on" + }, + { + "slug": "train-simulator-rascal-cottonwood-route-add-on", + "name": "Train Simulator: Rascal & Cottonwood Route Add-On", + "url": "/v1/games/train-simulator-rascal-cottonwood-route-add-on" + }, + { + "slug": "train-simulator-raton-pass-trinidad-raton-route-add-on", + "name": "Train Simulator: Raton Pass: Trinidad - Raton Route Add-On", + "url": "/v1/games/train-simulator-raton-pass-trinidad-raton-route-add-on" + }, + { + "slug": "train-simulator-rebuilt-bulleid-light-pacific-steam-loco-add-on", + "name": "Train Simulator: Rebuilt Bulleid Light Pacific Steam Loco Add-On", + "url": "/v1/games/train-simulator-rebuilt-bulleid-light-pacific-steam-loco-add-on" + }, + { + "slug": "train-simulator-regional-railways-br-class-142-pacer-dmu", + "name": "Train Simulator: Regional Railways BR Class 142 'Pacer' DMU", + "url": "/v1/games/train-simulator-regional-railways-br-class-142-pacer-dmu" + }, + { + "slug": "train-simulator-return-to-maerdy-loco-add-on", + "name": "Train Simulator: Return to Maerdy Loco Add-On", + "url": "/v1/games/train-simulator-return-to-maerdy-loco-add-on" + }, + { + "slug": "train-simulator-rhb-enhancement-pack-01", + "name": "Train Simulator: RhB Enhancement Pack 01", + "url": "/v1/games/train-simulator-rhb-enhancement-pack-01" + }, + { + "slug": "train-simulator-rhb-enhancement-pack-02-add-on", + "name": "Train Simulator: RhB Enhancement Pack 02 Add-On", + "url": "/v1/games/train-simulator-rhb-enhancement-pack-02-add-on" + }, + { + "slug": "train-simulator-rhb-enhancement-pack-03-add-on", + "name": "Train Simulator: RhB Enhancement Pack 03 Add-On", + "url": "/v1/games/train-simulator-rhb-enhancement-pack-03-add-on" + }, + { + "slug": "train-simulator-rhb-enhancement-pack-04-add-on", + "name": "Train Simulator: RhB Enhancement Pack 04 Add-On", + "url": "/v1/games/train-simulator-rhb-enhancement-pack-04-add-on" + }, + { + "slug": "train-simulator-rhb-enhancement-pack-05-add-on", + "name": "Train Simulator: RhB Enhancement Pack 05 Add-On", + "url": "/v1/games/train-simulator-rhb-enhancement-pack-05-add-on" + }, + { + "slug": "train-simulator-rhine-valley-freiburg-basel-route-add-on", + "name": "Train Simulator: Rhine Valley: Freiburg - Basel Route Add-On", + "url": "/v1/games/train-simulator-rhine-valley-freiburg-basel-route-add-on" + }, + { + "slug": "train-simulator-riviera-line-in-the-fifties-exeter-kingswear-route-add-on", + "name": "Train Simulator: Riviera Line in the Fifties: Exeter - Kingswear Route Add-On", + "url": "/v1/games/train-simulator-riviera-line-in-the-fifties-exeter-kingswear-route-add-on" + }, + { + "slug": "train-simulator-ruhr-sieg-route-add-on", + "name": "Train Simulator: Ruhr-Sieg Route Add-On", + "url": "/v1/games/train-simulator-ruhr-sieg-route-add-on" + }, + { + "slug": "train-simulator-s25-heart-of-berlin-hennigsdorf-teltow-route-add-on", + "name": "Train Simulator: S25 Heart of Berlin: Hennigsdorf - Teltow Route Add-On", + "url": "/v1/games/train-simulator-s25-heart-of-berlin-hennigsdorf-teltow-route-add-on" + }, + { + "slug": "train-simulator-sbb-rabe-523-emu-add-on", + "name": "Train Simulator: SBB RABe 523 EMU Add-On", + "url": "/v1/games/train-simulator-sbb-rabe-523-emu-add-on" + }, + { + "slug": "train-simulator-sd40-2-independence-loco-add-on", + "name": "Train Simulator: SD40-2 Independence Loco Add-On", + "url": "/v1/games/train-simulator-sd40-2-independence-loco-add-on" + }, + { + "slug": "train-simulator-sacramento-northern-suisun-bay-san-francisco-route-add-on", + "name": "Train Simulator: Sacramento Northern: Suisun Bay – San Francisco Route Add-On", + "url": "/v1/games/train-simulator-sacramento-northern-suisun-bay-san-francisco-route-add-on" + }, + { + "slug": "train-simulator-salt-lake-city-route-extension-add-on", + "name": "Train Simulator: Salt Lake City Route Extension Add-On", + "url": "/v1/games/train-simulator-salt-lake-city-route-extension-add-on" + }, + { + "slug": "train-simulator-san-diego-commuter-rail-f59phi-loco-add-on", + "name": "Train Simulator: San Diego Commuter Rail F59PHI Loco Add-On", + "url": "/v1/games/train-simulator-san-diego-commuter-rail-f59phi-loco-add-on" + }, + { + "slug": "train-simulator-scotrail-class-380-emu-add-on", + "name": "Train Simulator: ScotRail Class 380 EMU Add-On", + "url": "/v1/games/train-simulator-scotrail-class-380-emu-add-on" + }, + { + "slug": "train-simulator-scotrail-class-68-loco-add-on", + "name": "Train Simulator: ScotRail Class 68 Loco Add-on", + "url": "/v1/games/train-simulator-scotrail-class-68-loco-add-on" + }, + { + "slug": "train-simulator-seaboard-ge-u36b-loco-add-on", + "name": "Train Simulator: Seaboard GE U36B Loco Add-On", + "url": "/v1/games/train-simulator-seaboard-ge-u36b-loco-add-on" + }, + { + "slug": "train-simulator-semmeringbahn-m-rzzuschlag-to-gloggnitz-route-add-on", + "name": "Train Simulator: Semmeringbahn - Mürzzuschlag to Gloggnitz Route Add-On", + "url": "/v1/games/train-simulator-semmeringbahn-m-rzzuschlag-to-gloggnitz-route-add-on" + }, + { + "slug": "train-simulator-settle-carlisle-specials-add-on", + "name": "Train Simulator: Settle Carlisle Specials Add-On", + "url": "/v1/games/train-simulator-settle-carlisle-specials-add-on" + }, + { + "slug": "train-simulator-settle-to-carlisle-route-add-on", + "name": "Train Simulator: Settle to Carlisle Route Add-on", + "url": "/v1/games/train-simulator-settle-to-carlisle-route-add-on" + }, + { + "slug": "train-simulator-shanghai-maglev-route-add-on", + "name": "Train Simulator: Shanghai Maglev Route Add-On", + "url": "/v1/games/train-simulator-shanghai-maglev-route-add-on" + }, + { + "slug": "train-simulator-sheerness-branch-extension-route-add-on", + "name": "Train Simulator: Sheerness Branch Extension Route Add-On", + "url": "/v1/games/train-simulator-sheerness-branch-extension-route-add-on" + }, + { + "slug": "train-simulator-sherman-hill-route-add-on", + "name": "Train Simulator: Sherman Hill Route Add-On", + "url": "/v1/games/train-simulator-sherman-hill-route-add-on" + }, + { + "slug": "train-simulator-soldier-summit-route-add-on", + "name": "Train Simulator: Soldier Summit Route Add-On", + "url": "/v1/games/train-simulator-soldier-summit-route-add-on" + }, + { + "slug": "train-simulator-somerset-dorset-railway-route-add-on", + "name": "Train Simulator: Somerset & Dorset Railway Route Add-On", + "url": "/v1/games/train-simulator-somerset-dorset-railway-route-add-on" + }, + { + "slug": "train-simulator-south-devon-main-line-highbridge-and-burnham-plymouth-route-add-on", + "name": "Train Simulator: South Devon Main Line: Highbridge and Burnham - Plymouth Route Add-On", + "url": "/v1/games/train-simulator-south-devon-main-line-highbridge-and-burnham-plymouth-route-add-on" + }, + { + "slug": "train-simulator-south-london-network-route-add-on", + "name": "Train Simulator: South London Network Route Add-On", + "url": "/v1/games/train-simulator-south-london-network-route-add-on" + }, + { + "slug": "train-simulator-south-wales-coastal-trainload-br-class-60-twin-pack", + "name": "Train Simulator: South Wales Coastal & Trainload BR Class 60 Twin Pack", + "url": "/v1/games/train-simulator-south-wales-coastal-trainload-br-class-60-twin-pack" + }, + { + "slug": "train-simulator-south-wales-coastal-bristol-swansea-route-add-on", + "name": "Train Simulator: South Wales Coastal: Bristol - Swansea Route Add-on", + "url": "/v1/games/train-simulator-south-wales-coastal-bristol-swansea-route-add-on" + }, + { + "slug": "train-simulator-south-west-china-high-speed-route-add-on", + "name": "Train Simulator: South West China High Speed Route Add-On", + "url": "/v1/games/train-simulator-south-west-china-high-speed-route-add-on" + }, + { + "slug": "train-simulator-south-west-trains-class-444-emu-add-on", + "name": "Train Simulator: South West Trains Class 444 EMU Add-On", + "url": "/v1/games/train-simulator-south-west-trains-class-444-emu-add-on" + }, + { + "slug": "train-simulator-south-western-main-line-southampton-bournemouth-route-add-on", + "name": "Train Simulator: South Western Main Line: Southampton - Bournemouth Route Add-On", + "url": "/v1/games/train-simulator-south-western-main-line-southampton-bournemouth-route-add-on" + }, + { + "slug": "train-simulator-southeastern-class-465-emu-add-on", + "name": "Train Simulator: Southeastern Class 465 EMU Add-On", + "url": "/v1/games/train-simulator-southeastern-class-465-emu-add-on" + }, + { + "slug": "train-simulator-southern-class-421-4cig-emu-add-on", + "name": "Train Simulator: Southern Class 421 ‘4CIG’ EMU Add-On", + "url": "/v1/games/train-simulator-southern-class-421-4cig-emu-add-on" + }, + { + "slug": "train-simulator-southern-class-455-8-emu-add-on", + "name": "Train Simulator: Southern Class 455/8 EMU Add-On", + "url": "/v1/games/train-simulator-southern-class-455-8-emu-add-on" + }, + { + "slug": "train-simulator-southern-pacific-cab-forward-loco-add-on", + "name": "Train Simulator: Southern Pacific Cab Forward Loco Add-On", + "url": "/v1/games/train-simulator-southern-pacific-cab-forward-loco-add-on" + }, + { + "slug": "train-simulator-southern-pacific-ge-44-loco-add-on", + "name": "Train Simulator: Southern Pacific GE 44 Loco Add-On", + "url": "/v1/games/train-simulator-southern-pacific-ge-44-loco-add-on" + }, + { + "slug": "train-simulator-southern-pacific-gp20-loco-add-on", + "name": "Train Simulator: Southern Pacific GP20 Loco Add-On", + "url": "/v1/games/train-simulator-southern-pacific-gp20-loco-add-on" + }, + { + "slug": "train-simulator-southern-pacific-gs-4-loco-add-on", + "name": "Train Simulator: Southern Pacific GS-4 Loco Add-On", + "url": "/v1/games/train-simulator-southern-pacific-gs-4-loco-add-on" + }, + { + "slug": "train-simulator-southern-pacific-sd45-loco-add-on", + "name": "Train Simulator: Southern Pacific SD45 Loco Add-On", + "url": "/v1/games/train-simulator-southern-pacific-sd45-loco-add-on" + }, + { + "slug": "train-simulator-southern-pacific-sd45t-2-loco-add-on", + "name": "Train Simulator: Southern Pacific SD45T-2 Loco Add-On", + "url": "/v1/games/train-simulator-southern-pacific-sd45t-2-loco-add-on" + }, + { + "slug": "train-simulator-southern-pacific-sd70m-loco-add-on", + "name": "Train Simulator: Southern Pacific SD70M Loco Add-On", + "url": "/v1/games/train-simulator-southern-pacific-sd70m-loco-add-on" + }, + { + "slug": "train-simulator-southern-pacific-u33c-loco-add-on", + "name": "Train Simulator: Southern Pacific U33C Loco Add-On", + "url": "/v1/games/train-simulator-southern-pacific-u33c-loco-add-on" + }, + { + "slug": "train-simulator-southern-railway-s15-class-steam-loco-add-on", + "name": "Train Simulator: Southern Railway S15 Class Steam Loco Add-On", + "url": "/v1/games/train-simulator-southern-railway-s15-class-steam-loco-add-on" + }, + { + "slug": "train-simulator-southwestern-expressways-reading-exeter-route-add-on", + "name": "Train Simulator: Southwestern Expressways: Reading - Exeter Route Add-On", + "url": "/v1/games/train-simulator-southwestern-expressways-reading-exeter-route-add-on" + }, + { + "slug": "train-simulator-springfield-line-springfield-new-haven-route-add-on", + "name": "Train Simulator: Springfield Line: Springfield – New Haven Route Add-On", + "url": "/v1/games/train-simulator-springfield-line-springfield-new-haven-route-add-on" + }, + { + "slug": "train-simulator-strathclyde-class-101-dmu-add-on", + "name": "Train Simulator: Strathclyde Class 101 DMU Add-On", + "url": "/v1/games/train-simulator-strathclyde-class-101-dmu-add-on" + }, + { + "slug": "train-simulator-stroudley-a1-a1x-class-terrier-steam-loco-add-on", + "name": "Train Simulator: Stroudley A1/A1X Class 'Terrier' Steam Loco Add-On", + "url": "/v1/games/train-simulator-stroudley-a1-a1x-class-terrier-steam-loco-add-on" + }, + { + "slug": "train-simulator-suburban-glasgow-northwest-springburn-helensburgh-route-add-on", + "name": "Train Simulator: Suburban Glasgow Northwest: Springburn - Helensburgh Route Add-On", + "url": "/v1/games/train-simulator-suburban-glasgow-northwest-springburn-helensburgh-route-add-on" + }, + { + "slug": "train-simulator-surselva-line-reichenau-tamins-disentis-must-r-route-add-on", + "name": "Train Simulator: Surselva Line: Reichenau-Tamins - Disentis/Mustér Route Add-On", + "url": "/v1/games/train-simulator-surselva-line-reichenau-tamins-disentis-must-r-route-add-on" + }, + { + "slug": "train-simulator-s-dbahn-bruck-an-der-mur-maribor-route-add-on", + "name": "Train Simulator: Südbahn: Bruck an der Mur - Maribor Route Add-On", + "url": "/v1/games/train-simulator-s-dbahn-bruck-an-der-mur-maribor-route-add-on" + }, + { + "slug": "train-simulator-s-series-363-loco-add-on", + "name": "Train Simulator: SŽ Series 363 Loco Add-On", + "url": "/v1/games/train-simulator-s-series-363-loco-add-on" + }, + { + "slug": "train-simulator-tadami-line-aizu-wakamatsu-tadami-route-add-on", + "name": "Train Simulator: Tadami Line: Aizu-Wakamatsu - Tadami Route Add-On", + "url": "/v1/games/train-simulator-tadami-line-aizu-wakamatsu-tadami-route-add-on" + }, + { + "slug": "train-simulator-tauernbahn-schwarzach-sankt-veit-spittal-an-der-drau-route-add-on", + "name": "Train Simulator: Tauernbahn: Schwarzach-Sankt Veit - Spittal an der Drau Route Add-On", + "url": "/v1/games/train-simulator-tauernbahn-schwarzach-sankt-veit-spittal-an-der-drau-route-add-on" + }, + { + "slug": "train-simulator-tehachapi-pass-mojave-bakersfield-route-add-on", + "name": "Train Simulator: Tehachapi Pass: Mojave - Bakersfield Route Add-On", + "url": "/v1/games/train-simulator-tehachapi-pass-mojave-bakersfield-route-add-on" + }, + { + "slug": "train-simulator-the-alaska-railroad-anchorage-seward-route-add-on", + "name": "Train Simulator: The Alaska Railroad: Anchorage - Seward Route Add-On", + "url": "/v1/games/train-simulator-the-alaska-railroad-anchorage-seward-route-add-on" + }, + { + "slug": "train-simulator-the-kyle-line-inverness-kyle-of-lochalsh-route-add-on", + "name": "Train Simulator: The Kyle Line: Inverness - Kyle of Lochalsh Route Add-On", + "url": "/v1/games/train-simulator-the-kyle-line-inverness-kyle-of-lochalsh-route-add-on" + }, + { + "slug": "train-simulator-the-pump-car-add-on", + "name": "Train Simulator: The Pump Car Add-On", + "url": "/v1/games/train-simulator-the-pump-car-add-on" + }, + { + "slug": "train-simulator-the-racetrack-aurora-chicago-route-add-on", + "name": "Train Simulator: The Racetrack: Aurora - Chicago Route Add-On", + "url": "/v1/games/train-simulator-the-racetrack-aurora-chicago-route-add-on" + }, + { + "slug": "train-simulator-the-rhine-railway-mannheim-karlsruhe-route-add-on", + "name": "Train Simulator: The Rhine Railway: Mannheim - Karlsruhe Route Add-On", + "url": "/v1/games/train-simulator-the-rhine-railway-mannheim-karlsruhe-route-add-on" + }, + { + "slug": "train-simulator-the-riviera-line-exeter-paignton-route-add-on", + "name": "Train Simulator: The Riviera Line: Exeter-Paignton Route Add-On", + "url": "/v1/games/train-simulator-the-riviera-line-exeter-paignton-route-add-on" + }, + { + "slug": "train-simulator-the-story-of-forest-rail-route-add-on", + "name": "Train Simulator: The Story of Forest Rail Route Add-On", + "url": "/v1/games/train-simulator-the-story-of-forest-rail-route-add-on" + }, + { + "slug": "train-simulator-thompson-class-b1-loco-add-on", + "name": "Train Simulator: Thompson Class B1 Loco Add-On", + "url": "/v1/games/train-simulator-thompson-class-b1-loco-add-on" + }, + { + "slug": "train-simulator-three-country-corner-route-add-on", + "name": "Train Simulator: Three Country Corner Route Add-On", + "url": "/v1/games/train-simulator-three-country-corner-route-add-on" + }, + { + "slug": "train-simulator-tirol-brenner-kufstein-route-add-on", + "name": "Train Simulator: Tirol: Brenner - Kufstein Route Add-On", + "url": "/v1/games/train-simulator-tirol-brenner-kufstein-route-add-on" + }, + { + "slug": "train-simulator-totham-passengers-power-freight-route-add-on", + "name": "Train Simulator: Totham – Passengers, Power & Freight Route Add-On", + "url": "/v1/games/train-simulator-totham-passengers-power-freight-route-add-on" + }, + { + "slug": "train-simulator-trainload-br-class-60-loco-add-on", + "name": "Train Simulator: Trainload BR Class 60 Loco Add-On", + "url": "/v1/games/train-simulator-trainload-br-class-60-loco-add-on" + }, + { + "slug": "train-simulator-uk-military-wagon-pack-add-on", + "name": "Train Simulator: UK Military Wagon Pack Add-On", + "url": "/v1/games/train-simulator-uk-military-wagon-pack-add-on" + }, + { + "slug": "train-simulator-up-ge-44-loco-add-on", + "name": "Train Simulator: UP GE 44 Loco Add-On", + "url": "/v1/games/train-simulator-up-ge-44-loco-add-on" + }, + { + "slug": "train-simulator-uprr-idaho-omaha-steam-loco-add-on", + "name": "Train Simulator: UPRR Idaho & Omaha Steam Loco Add-On", + "url": "/v1/games/train-simulator-uprr-idaho-omaha-steam-loco-add-on" + }, + { + "slug": "train-simulator-us-loco-asset-pack", + "name": "Train Simulator: US Loco & Asset Pack", + "url": "/v1/games/train-simulator-us-loco-asset-pack" + }, + { + "slug": "train-simulator-usatc-s160-loco-add-on", + "name": "Train Simulator: USATC S160 Loco Add-On", + "url": "/v1/games/train-simulator-usatc-s160-loco-add-on" + }, + { + "slug": "train-simulator-union-pacific-big-boy-loco-add-on", + "name": "Train Simulator: Union Pacific Big Boy Loco Add-On", + "url": "/v1/games/train-simulator-union-pacific-big-boy-loco-add-on" + }, + { + "slug": "train-simulator-union-pacific-big-boy-steam-loco-add-on", + "name": "Train Simulator: Union Pacific Big Boy Steam Loco Add-On", + "url": "/v1/games/train-simulator-union-pacific-big-boy-steam-loco-add-on" + }, + { + "slug": "train-simulator-union-pacific-challenger-loco-add-on", + "name": "Train Simulator: Union Pacific Challenger Loco Add-On", + "url": "/v1/games/train-simulator-union-pacific-challenger-loco-add-on" + }, + { + "slug": "train-simulator-union-pacific-dd35-add-on", + "name": "Train Simulator: Union Pacific DD35 Add-On", + "url": "/v1/games/train-simulator-union-pacific-dd35-add-on" + }, + { + "slug": "train-simulator-union-pacific-dda40x-centennial-loco-add-on", + "name": "Train Simulator: Union Pacific DDA40X Centennial Loco Add-On", + "url": "/v1/games/train-simulator-union-pacific-dda40x-centennial-loco-add-on" + }, + { + "slug": "train-simulator-union-pacific-fef-3-loco-add-on", + "name": "Train Simulator: Union Pacific FEF-3 Loco Add-On", + "url": "/v1/games/train-simulator-union-pacific-fef-3-loco-add-on" + }, + { + "slug": "train-simulator-union-pacific-gp30-loco-add-on", + "name": "Train Simulator: Union Pacific GP30 Loco Add-On", + "url": "/v1/games/train-simulator-union-pacific-gp30-loco-add-on" + }, + { + "slug": "train-simulator-union-pacific-gp40x-loco-add-on", + "name": "Train Simulator: Union Pacific GP40X Loco Add-On", + "url": "/v1/games/train-simulator-union-pacific-gp40x-loco-add-on" + }, + { + "slug": "train-simulator-union-pacific-gp50-loco-add-on", + "name": "Train Simulator: Union Pacific GP50 Loco Add-On", + "url": "/v1/games/train-simulator-union-pacific-gp50-loco-add-on" + }, + { + "slug": "train-simulator-union-pacific-gas-turbine-electric-loco-add-on", + "name": "Train Simulator: Union Pacific Gas Turbine-Electric Loco Add-On", + "url": "/v1/games/train-simulator-union-pacific-gas-turbine-electric-loco-add-on" + }, + { + "slug": "train-simulator-union-pacific-heritage-sd70aces-loco-add-on", + "name": "Train Simulator: Union Pacific Heritage SD70ACes Loco Add-On", + "url": "/v1/games/train-simulator-union-pacific-heritage-sd70aces-loco-add-on" + }, + { + "slug": "train-simulator-union-pacific-no-119-steam-loco-add-on", + "name": "Train Simulator: Union Pacific No. 119 Steam Loco Add-On", + "url": "/v1/games/train-simulator-union-pacific-no-119-steam-loco-add-on" + }, + { + "slug": "train-simulator-union-pacific-sd45-loco-add-on", + "name": "Train Simulator: Union Pacific SD45 Loco Add-On", + "url": "/v1/games/train-simulator-union-pacific-sd45-loco-add-on" + }, + { + "slug": "train-simulator-union-pacific-sd70ace-loco-add-on", + "name": "Train Simulator: Union Pacific SD70Ace Loco Add-On", + "url": "/v1/games/train-simulator-union-pacific-sd70ace-loco-add-on" + }, + { + "slug": "train-simulator-union-pacific-sd9043mac-loco-add-on", + "name": "Train Simulator: Union Pacific SD9043MAC Loco Add-On", + "url": "/v1/games/train-simulator-union-pacific-sd9043mac-loco-add-on" + }, + { + "slug": "train-simulator-union-pacific-u50-loco-add-on", + "name": "Train Simulator: Union Pacific U50 Loco Add-On", + "url": "/v1/games/train-simulator-union-pacific-u50-loco-add-on" + }, + { + "slug": "train-simulator-union-pacific-wasatch-grade-ogden-evanston-route-add-on", + "name": "Train Simulator: Union Pacific Wasatch Grade: Ogden - Evanston Route Add-On", + "url": "/v1/games/train-simulator-union-pacific-wasatch-grade-ogden-evanston-route-add-on" + }, + { + "slug": "train-simulator-valley-corridor-route-add-on", + "name": "Train Simulator: Valley Corridor Route Add-On", + "url": "/v1/games/train-simulator-valley-corridor-route-add-on" + }, + { + "slug": "train-simulator-wcml-south-london-euston-birmingham-route-add-on", + "name": "Train Simulator: WCML South: London Euston - Birmingham Route Add-On", + "url": "/v1/games/train-simulator-wcml-south-london-euston-birmingham-route-add-on" + }, + { + "slug": "train-simulator-wcml-trent-valley-route-add-on", + "name": "Train Simulator: WCML Trent Valley Route Add-On", + "url": "/v1/games/train-simulator-wcml-trent-valley-route-add-on" + }, + { + "slug": "train-simulator-wsr-diesels-loco-add-on", + "name": "Train Simulator: WSR Diesels Loco Add-On", + "url": "/v1/games/train-simulator-wsr-diesels-loco-add-on" + }, + { + "slug": "train-simulator-wakayama-sakurai-lines-route-add-on", + "name": "Train Simulator: Wakayama & Sakurai Lines Route Add-On", + "url": "/v1/games/train-simulator-wakayama-sakurai-lines-route-add-on" + }, + { + "slug": "train-simulator-weardale-teesdale-network-route-add-on", + "name": "Train Simulator: Weardale & Teesdale Network Route Add-On", + "url": "/v1/games/train-simulator-weardale-teesdale-network-route-add-on" + }, + { + "slug": "train-simulator-welsh-marches-newport-shrewsbury-route-add-on", + "name": "Train Simulator: Welsh Marches: Newport - Shrewsbury Route Add-On", + "url": "/v1/games/train-simulator-welsh-marches-newport-shrewsbury-route-add-on" + }, + { + "slug": "train-simulator-west-coast-main-line-north-route-add-on", + "name": "Train Simulator: West Coast Main Line North Route Add-On", + "url": "/v1/games/train-simulator-west-coast-main-line-north-route-add-on" + }, + { + "slug": "train-simulator-west-coast-main-line-over-shap-route-add-on", + "name": "Train Simulator: West Coast Main Line Over Shap Route Add-On", + "url": "/v1/games/train-simulator-west-coast-main-line-over-shap-route-add-on" + }, + { + "slug": "train-simulator-west-highland-line-south-route-add-on", + "name": "Train Simulator: West Highland Line (South) Route Add-On", + "url": "/v1/games/train-simulator-west-highland-line-south-route-add-on" + }, + { + "slug": "train-simulator-west-highland-line-extension-route-add-on", + "name": "Train Simulator: West Highland Line Extension Route Add-On", + "url": "/v1/games/train-simulator-west-highland-line-extension-route-add-on" + }, + { + "slug": "train-simulator-west-rhine-k-ln-koblenz-route-add-on", + "name": "Train Simulator: West Rhine: Köln - Koblenz Route Add-On", + "url": "/v1/games/train-simulator-west-rhine-k-ln-koblenz-route-add-on" + }, { "slug": "train-simulator-west-somerset-railway-route-add-on", "name": "Train Simulator: West Somerset Railway Route Add-On", "url": "/v1/games/train-simulator-west-somerset-railway-route-add-on" }, + { + "slug": "train-simulator-western-hydraulics-pack-add-on", + "name": "Train Simulator: Western Hydraulics Pack Add-On", + "url": "/v1/games/train-simulator-western-hydraulics-pack-add-on" + }, + { + "slug": "train-simulator-western-lines-of-scotland-route-add-on", + "name": "Train Simulator: Western Lines of Scotland Route Add-On", + "url": "/v1/games/train-simulator-western-lines-of-scotland-route-add-on" + }, + { + "slug": "train-simulator-western-maryland-railway-retro-pack", + "name": "Train Simulator: Western Maryland Railway Retro Pack", + "url": "/v1/games/train-simulator-western-maryland-railway-retro-pack" + }, + { + "slug": "train-simulator-western-pacific-fp7-california-zephyr-loco-add-on", + "name": "Train Simulator: Western Pacific FP7 ‘California Zephyr’ Loco Add-On", + "url": "/v1/games/train-simulator-western-pacific-fp7-california-zephyr-loco-add-on" + }, + { + "slug": "train-simulator-western-pacific-gp20-high-nose-loco-add-on", + "name": "Train Simulator: Western Pacific GP20 High Nose Loco Add-On", + "url": "/v1/games/train-simulator-western-pacific-gp20-high-nose-loco-add-on" + }, + { + "slug": "train-simulator-western-pacific-gp35-add-on", + "name": "Train Simulator: Western Pacific GP35 Add-On", + "url": "/v1/games/train-simulator-western-pacific-gp35-add-on" + }, + { + "slug": "train-simulator-western-sichuan-pass-dujiangyan-maoxian-mashancun-route-add-on", + "name": "Train Simulator: Western Sichuan Pass: Dujiangyan - Maoxian & Mashancun Route Add-On", + "url": "/v1/games/train-simulator-western-sichuan-pass-dujiangyan-maoxian-mashancun-route-add-on" + }, + { + "slug": "train-simulator-wherry-lines-norwich-great-yarmouth-lowestoft-route-add-on", + "name": "Train Simulator: Wherry Lines: Norwich – Great Yarmouth & Lowestoft Route Add-On", + "url": "/v1/games/train-simulator-wherry-lines-norwich-great-yarmouth-lowestoft-route-add-on" + }, + { + "slug": "train-simulator-woodhead-electric-railway-in-blue-route-add-on", + "name": "Train Simulator: Woodhead Electric Railway in Blue Route Add-On", + "url": "/v1/games/train-simulator-woodhead-electric-railway-in-blue-route-add-on" + }, + { + "slug": "train-simulator-woodhead-route-add-on", + "name": "Train Simulator: Woodhead Route Add-On", + "url": "/v1/games/train-simulator-woodhead-route-add-on" + }, + { + "slug": "train-simulator-worcester-mossel-bay-railway-route-add-on", + "name": "Train Simulator: Worcester - Mossel Bay Railway Route Add-On", + "url": "/v1/games/train-simulator-worcester-mossel-bay-railway-route-add-on" + }, + { + "slug": "train-simulator-wutachtalbahn-lauchringen-immendingen-route-add-on", + "name": "Train Simulator: Wutachtalbahn: Lauchringen – Immendingen Route Add-On", + "url": "/v1/games/train-simulator-wutachtalbahn-lauchringen-immendingen-route-add-on" + }, + { + "slug": "train-simulator-yellowhead-pass-jasper-valemount-route-add-on", + "name": "Train Simulator: Yellowhead Pass: Jasper - Valemount Route Add-On", + "url": "/v1/games/train-simulator-yellowhead-pass-jasper-valemount-route-add-on" + }, + { + "slug": "train-simulator-bb-1014-loco-add-on", + "name": "Train Simulator: ÖBB 1014 Loco Add-On", + "url": "/v1/games/train-simulator-bb-1014-loco-add-on" + }, + { + "slug": "train-simulator-bb-1044-loco-add-on", + "name": "Train Simulator: ÖBB 1044 Loco Add-On", + "url": "/v1/games/train-simulator-bb-1044-loco-add-on" + }, + { + "slug": "train-simulator-bb-1142-loco-add-on", + "name": "Train Simulator: ÖBB 1142 Loco Add-On", + "url": "/v1/games/train-simulator-bb-1142-loco-add-on" + }, + { + "slug": "train-simulator-bb-1144-cityshuttle-wiesel-loco-add-on", + "name": "Train Simulator: ÖBB 1144 & CityShuttle Wiesel Loco Add-On", + "url": "/v1/games/train-simulator-bb-1144-cityshuttle-wiesel-loco-add-on" + }, + { + "slug": "train-simulator-bb-1293-loco-add-on", + "name": "Train Simulator: ÖBB 1293 Loco Add-On", + "url": "/v1/games/train-simulator-bb-1293-loco-add-on" + }, + { + "slug": "train-simulator-bb-1822-loco-add-on", + "name": "Train Simulator: ÖBB 1822 Loco Add-On", + "url": "/v1/games/train-simulator-bb-1822-loco-add-on" + }, + { + "slug": "train-simulator-bb-4010-emu-add-on", + "name": "Train Simulator: ÖBB 4010 EMU Add-On", + "url": "/v1/games/train-simulator-bb-4010-emu-add-on" + }, + { + "slug": "train-simulator-bb-4020-emu-add-on", + "name": "Train Simulator: ÖBB 4020 EMU Add-On", + "url": "/v1/games/train-simulator-bb-4020-emu-add-on" + }, + { + "slug": "train-simulator-bb-4023-talent-emu-add-on", + "name": "Train Simulator: ÖBB 4023 ‘Talent' EMU Add-On", + "url": "/v1/games/train-simulator-bb-4023-talent-emu-add-on" + }, + { + "slug": "train-simulator-bb-4744-cityjet-emu-add-on", + "name": "Train Simulator: ÖBB 4744 ‘Cityjet’ EMU Add-On", + "url": "/v1/games/train-simulator-bb-4744-cityjet-emu-add-on" + }, + { + "slug": "train-simulator-bb-5047-dmu-add-on", + "name": "Train Simulator: ÖBB 5047 DMU Add-On", + "url": "/v1/games/train-simulator-bb-5047-dmu-add-on" + }, { "slug": "train-station-2", "name": "Train Station 2", @@ -764151,6 +796051,11 @@ "name": "Train Valley World", "url": "/v1/games/train-valley-world" }, + { + "slug": "train-valley-console-edition", + "name": "Train Valley: Console Edition", + "url": "/v1/games/train-valley-console-edition" + }, { "slug": "train-world", "name": "Train World", @@ -764531,6 +796436,11 @@ "name": "TramSim Munich", "url": "/v1/games/tramsim-munich" }, + { + "slug": "tramsim-console-edition", + "name": "TramSim: Console Edition", + "url": "/v1/games/tramsim-console-edition" + }, { "slug": "trample-on-schatten-kagefumi-no-uta", "name": "Trample on \"Schatten!!\" ~Kagefumi no Uta~", @@ -764906,6 +796816,11 @@ "name": "Transformers: Prime – The Game", "url": "/v1/games/transformers-prime-the-game" }, + { + "slug": "transformers-reactivate", + "name": "Transformers: Reactivate", + "url": "/v1/games/transformers-reactivate" + }, { "slug": "transformers-revenge-of-the-fallen", "name": "Transformers: Revenge of the Fallen", @@ -765081,11 +796996,21 @@ "name": "Transport Fever 2", "url": "/v1/games/transport-fever-2" }, + { + "slug": "transport-fever-2-console-edition", + "name": "Transport Fever 2: Console Edition", + "url": "/v1/games/transport-fever-2-console-edition" + }, { "slug": "transport-giant", "name": "Transport Giant", "url": "/v1/games/transport-giant" }, + { + "slug": "transport-gigant-down-under", + "name": "Transport Gigant: Down Under", + "url": "/v1/games/transport-gigant-down-under" + }, { "slug": "transport-inc", "name": "Transport INC", @@ -765111,6 +797036,11 @@ "name": "Transport Tycoon Deluxe", "url": "/v1/games/transport-tycoon-deluxe" }, + { + "slug": "transport-tycoon-world-editor", + "name": "Transport Tycoon: World Editor", + "url": "/v1/games/transport-tycoon-world-editor" + }, { "slug": "transportando-o-brasil", "name": "Transportando o Brasil", @@ -765466,6 +797396,16 @@ "name": "Trapper Knight, Sharpshooter Princess", "url": "/v1/games/trapper-knight-sharpshooter-princess" }, + { + "slug": "trapper-night-hunter-skin-pack", + "name": "Trapper Night Hunter Skin Pack", + "url": "/v1/games/trapper-night-hunter-skin-pack" + }, + { + "slug": "trapper-victory-skin-pack", + "name": "Trapper Victory Skin Pack", + "url": "/v1/games/trapper-victory-skin-pack" + }, { "slug": "trapper-s-delight", "name": "Trapper's Delight", @@ -766591,6 +798531,11 @@ "name": "Treasures of the Sunken Ship", "url": "/v1/games/treasures-of-the-sunken-ship" }, + { + "slug": "treat-road", + "name": "Treat Road", + "url": "/v1/games/treat-road" + }, { "slug": "treat-seeking-tricksters", "name": "Treat-Seeking Tricksters", @@ -766811,6 +798756,16 @@ "name": "Tremen", "url": "/v1/games/tremen" }, + { + "slug": "tremor-for-quake", + "name": "Tremor for quake", + "url": "/v1/games/tremor-for-quake" + }, + { + "slug": "tremors-the-game", + "name": "Tremors: The Game", + "url": "/v1/games/tremors-the-game" + }, { "slug": "tremulous", "name": "Tremulous", @@ -767026,6 +798981,11 @@ "name": "Triad Ball", "url": "/v1/games/triad-ball" }, + { + "slug": "triad-wars", + "name": "Triad Wars", + "url": "/v1/games/triad-wars" + }, { "slug": "triad-volume-1", "name": "Triad: Volume 1", @@ -767521,6 +799481,11 @@ "name": "Tribes of Midgard", "url": "/v1/games/tribes-of-midgard" }, + { + "slug": "tribes-of-midgard-deluxe-edition", + "name": "Tribes of Midgard Deluxe Edition", + "url": "/v1/games/tribes-of-midgard-deluxe-edition" + }, { "slug": "tribes-of-tis-te", "name": "Tribes of Tis'te", @@ -768141,11 +800106,21 @@ "name": "Trine 2", "url": "/v1/games/trine-2" }, + { + "slug": "trine-2-goblin-menace", + "name": "Trine 2: Goblin Menace", + "url": "/v1/games/trine-2-goblin-menace" + }, { "slug": "trine-3-the-artifacts-of-power", "name": "Trine 3: The Artifacts of Power", "url": "/v1/games/trine-3-the-artifacts-of-power" }, + { + "slug": "trine-4-melody-of-mystery", + "name": "Trine 4: Melody of Mystery", + "url": "/v1/games/trine-4-melody-of-mystery" + }, { "slug": "trine-4-the-nightmare-prince", "name": "Trine 4: The Nightmare Prince", @@ -768736,6 +800711,11 @@ "name": "Trivia Trove", "url": "/v1/games/trivia-trove" }, + { + "slug": "trivia-vault", + "name": "Trivia Vault", + "url": "/v1/games/trivia-vault" + }, { "slug": "trivia-vault-baseball-trivia", "name": "Trivia Vault Baseball Trivia", @@ -769391,6 +801371,11 @@ "name": "Tropical Hearts", "url": "/v1/games/tropical-hearts" }, + { + "slug": "tropical-island", + "name": "Tropical Island", + "url": "/v1/games/tropical-island" + }, { "slug": "tropical-kiss", "name": "Tropical Kiss", @@ -769471,11 +801456,31 @@ "name": "Tropico 3", "url": "/v1/games/tropico-3" }, + { + "slug": "tropico-3-gold-edition", + "name": "Tropico 3 Gold Edition", + "url": "/v1/games/tropico-3-gold-edition" + }, + { + "slug": "tropico-3-absolute-power", + "name": "Tropico 3: Absolute Power", + "url": "/v1/games/tropico-3-absolute-power" + }, { "slug": "tropico-4", "name": "Tropico 4", "url": "/v1/games/tropico-4" }, + { + "slug": "tropico-4-gold-edition", + "name": "Tropico 4: Gold Edition", + "url": "/v1/games/tropico-4-gold-edition" + }, + { + "slug": "tropico-4-modern-times", + "name": "Tropico 4: Modern Times", + "url": "/v1/games/tropico-4-modern-times" + }, { "slug": "tropico-5", "name": "Tropico 5", @@ -769486,16 +801491,41 @@ "name": "Tropico 5: Espionage", "url": "/v1/games/tropico-5-espionage" }, + { + "slug": "tropico-5-waterborne", + "name": "Tropico 5: Waterborne", + "url": "/v1/games/tropico-5-waterborne" + }, { "slug": "tropico-6", "name": "Tropico 6", "url": "/v1/games/tropico-6" }, + { + "slug": "tropico-6-next-gen-edition", + "name": "Tropico 6: Next Gen Edition", + "url": "/v1/games/tropico-6-next-gen-edition" + }, { "slug": "tropico-7", "name": "Tropico 7", "url": "/v1/games/tropico-7" }, + { + "slug": "tropico-reloaded", + "name": "Tropico Reloaded", + "url": "/v1/games/tropico-reloaded" + }, + { + "slug": "tropico-mucho-macho-edition", + "name": "Tropico: Mucho Macho Edition", + "url": "/v1/games/tropico-mucho-macho-edition" + }, + { + "slug": "tropico-paradise-island", + "name": "Tropico: Paradise Island", + "url": "/v1/games/tropico-paradise-island" + }, { "slug": "tropity", "name": "Tropity", @@ -769841,6 +801871,11 @@ "name": "Truck Simulator: WORLD", "url": "/v1/games/truck-simulator-world" }, + { + "slug": "truck-stop", + "name": "Truck Stop", + "url": "/v1/games/truck-stop" + }, { "slug": "truck-town-kids-and-toddlers-driving-game", "name": "Truck Town: Kids and Toddlers Driving Game", @@ -771266,6 +803301,11 @@ "name": "Tunche", "url": "/v1/games/tunche" }, + { + "slug": "tunche-arena", + "name": "Tunche: Arena", + "url": "/v1/games/tunche-arena" + }, { "slug": "tundralia-the-frigid-frontier", "name": "Tundralia: The Frigid Frontier", @@ -771451,6 +803491,11 @@ "name": "TunsTan", "url": "/v1/games/tunstan" }, + { + "slug": "tuper-tario-tros", + "name": "Tuper Tario Tros.", + "url": "/v1/games/tuper-tario-tros" + }, { "slug": "tupi-the-legend-of-arariboia", "name": "Tupi: The Legend of Arariboia", @@ -771491,6 +803536,11 @@ "name": "Turbo", "url": "/v1/games/turbo" }, + { + "slug": "turbo-1000", + "name": "Turbo 1000", + "url": "/v1/games/turbo-1000" + }, { "slug": "turbo-apex-redline", "name": "Turbo Apex Redline", @@ -771786,6 +803836,11 @@ "name": "Turbo Trax (Microdeal)", "url": "/v1/games/turbo-trax-microdeal" }, + { + "slug": "turbo-trio", + "name": "Turbo Trio", + "url": "/v1/games/turbo-trio" + }, { "slug": "turbo-tunnel", "name": "Turbo Tunnel", @@ -771951,11 +804006,21 @@ "name": "Turmoil", "url": "/v1/games/turmoil" }, + { + "slug": "turmoil-the-heat-is-on", + "name": "Turmoil - The Heat Is On", + "url": "/v1/games/turmoil-the-heat-is-on" + }, { "slug": "turmoil-uprising-dynasty", "name": "Turmoil Uprising: Dynasty", "url": "/v1/games/turmoil-uprising-dynasty" }, + { + "slug": "turmoil-q123283103", + "name": "Turmoil+", + "url": "/v1/games/turmoil-q123283103" + }, { "slug": "turn-q126187949", "name": "Turn", @@ -772101,6 +804166,11 @@ "name": "Turnabout", "url": "/v1/games/turnabout" }, + { + "slug": "turnabout-reclaimed", + "name": "Turnabout Reclaimed", + "url": "/v1/games/turnabout-reclaimed" + }, { "slug": "turnabout-time-traveler", "name": "Turnabout Time Traveler", @@ -774061,6 +806131,11 @@ "name": "Two Worlds II HD - Shattered Embrace", "url": "/v1/games/two-worlds-ii-hd-shattered-embrace" }, + { + "slug": "two-worlds-ii-call-of-the-tenebrae", + "name": "Two Worlds II: Call of the Tenebrae", + "url": "/v1/games/two-worlds-ii-call-of-the-tenebrae" + }, { "slug": "two-worlds-ii-pirates-of-the-flying-fortress", "name": "Two Worlds II: Pirates of The Flying Fortress", @@ -774071,6 +806146,16 @@ "name": "Two Worlds III", "url": "/v1/games/two-worlds-iii" }, + { + "slug": "two-worlds-tainted-blood", + "name": "Two Worlds: Tainted Blood", + "url": "/v1/games/two-worlds-tainted-blood" + }, + { + "slug": "two-worlds-the-temptation", + "name": "Two Worlds: The Temptation", + "url": "/v1/games/two-worlds-the-temptation" + }, { "slug": "two-by-one", "name": "Two by One", @@ -774581,6 +806666,11 @@ "name": "Tyr: Chains of Valhalla", "url": "/v1/games/tyr-chains-of-valhalla" }, + { + "slug": "tyrquake", + "name": "TyrQuake", + "url": "/v1/games/tyrquake" + }, { "slug": "tyraels-ascension-hell-walker-the-video-game", "name": "Tyraels Ascension: Hell Walker - The Video Game", @@ -774701,6 +806791,11 @@ "name": "Tyrone vs Cops VR", "url": "/v1/games/tyrone-vs-cops-vr" }, + { + "slug": "tyrone-vs-cops-golden-blicky", + "name": "Tyrone vs Cops: Golden Blicky", + "url": "/v1/games/tyrone-vs-cops-golden-blicky" + }, { "slug": "tyroom-vs-typing-gunner", "name": "Tyroom vs Typing Gunner", @@ -774806,6 +806901,11 @@ "name": "U-Boot: The Board Game - Digital Edition", "url": "/v1/games/u-boot-the-board-game-digital-edition" }, + { + "slug": "u-play-online", + "name": "U-Play Online", + "url": "/v1/games/u-play-online" + }, { "slug": "u-sharp-the-unity-coding-learning-game", "name": "U-Sharp: The Unity Coding Learning Game", @@ -775096,6 +807196,11 @@ "name": "UEFA Dream Soccer", "url": "/v1/games/uefa-dream-soccer" }, + { + "slug": "uefa-euro-2016-pro-evolution-soccer-2016", + "name": "UEFA EURO 2016 / Pro Evolution Soccer 2016", + "url": "/v1/games/uefa-euro-2016-pro-evolution-soccer-2016" + }, { "slug": "uefa-euro-2000", "name": "UEFA Euro 2000", @@ -775111,6 +807216,11 @@ "name": "UEFA Euro 2008", "url": "/v1/games/uefa-euro-2008" }, + { + "slug": "uefa-euro-2012", + "name": "UEFA Euro 2012", + "url": "/v1/games/uefa-euro-2012" + }, { "slug": "uefa-euro-96", "name": "UEFA Euro 96", @@ -775191,6 +807301,11 @@ "name": "UFO 2000", "url": "/v1/games/ufo-2000" }, + { + "slug": "ufo-50", + "name": "UFO 50", + "url": "/v1/games/ufo-50" + }, { "slug": "ufo-brawlers-from-beyond", "name": "UFO : Brawlers from Beyond", @@ -775326,6 +807441,11 @@ "name": "UFO: Enemy Unknown", "url": "/v1/games/ufo-enemy-unknown" }, + { + "slug": "ufo-enemy-unknown-x-com-terror-from-the-deep", + "name": "UFO: Enemy Unknown / X-COM: Terror from the Deep", + "url": "/v1/games/ufo-enemy-unknown-x-com-terror-from-the-deep" + }, { "slug": "ufo-extraterrestrials", "name": "UFO: Extraterrestrials", @@ -775381,6 +807501,11 @@ "name": "UGRA - Tale of Agna", "url": "/v1/games/ugra-tale-of-agna" }, + { + "slug": "uh-1h-argo-campaign", + "name": "UH-1H: Argo Campaign", + "url": "/v1/games/uh-1h-argo-campaign" + }, { "slug": "uhilant", "name": "UHILANT", @@ -775481,6 +807606,11 @@ "name": "ULTRAFUN", "url": "/v1/games/ultrafun" }, + { + "slug": "ultrakill-prelude", + "name": "ULTRAKILL Prelude", + "url": "/v1/games/ultrakill-prelude" + }, { "slug": "ultramassive", "name": "ULTRAMASSIVE", @@ -776396,6 +808526,11 @@ "name": "Uganda know de way", "url": "/v1/games/uganda-know-de-way" }, + { + "slug": "uganda-know-de-way-photo-album", + "name": "Uganda know de way – Photo Album", + "url": "/v1/games/uganda-know-de-way-photo-album" + }, { "slug": "ugano-game", "name": "Ugano-Game", @@ -776631,6 +808766,11 @@ "name": "Ultima Chess VR", "url": "/v1/games/ultima-chess-vr" }, + { + "slug": "ultima-collection", + "name": "Ultima Collection", + "url": "/v1/games/ultima-collection" + }, { "slug": "ultima-defesa", "name": "Ultima Defesa", @@ -776676,11 +808816,56 @@ "name": "Ultima Online", "url": "/v1/games/ultima-online" }, + { + "slug": "ultima-online-age-of-shadows", + "name": "Ultima Online: Age of Shadows", + "url": "/v1/games/ultima-online-age-of-shadows" + }, + { + "slug": "ultima-online-high-seas", + "name": "Ultima Online: High Seas", + "url": "/v1/games/ultima-online-high-seas" + }, { "slug": "ultima-online-kingdom-reborn", "name": "Ultima Online: Kingdom Reborn", "url": "/v1/games/ultima-online-kingdom-reborn" }, + { + "slug": "ultima-online-lord-blackthorn-s-revenge", + "name": "Ultima Online: Lord Blackthorn's Revenge", + "url": "/v1/games/ultima-online-lord-blackthorn-s-revenge" + }, + { + "slug": "ultima-online-mondain-s-legacy", + "name": "Ultima Online: Mondain's Legacy", + "url": "/v1/games/ultima-online-mondain-s-legacy" + }, + { + "slug": "ultima-online-renaissance", + "name": "Ultima Online: Renaissance", + "url": "/v1/games/ultima-online-renaissance" + }, + { + "slug": "ultima-online-samurai-empire", + "name": "Ultima Online: Samurai Empire", + "url": "/v1/games/ultima-online-samurai-empire" + }, + { + "slug": "ultima-online-stygian-abyss", + "name": "Ultima Online: Stygian Abyss", + "url": "/v1/games/ultima-online-stygian-abyss" + }, + { + "slug": "ultima-online-the-second-age", + "name": "Ultima Online: The Second Age", + "url": "/v1/games/ultima-online-the-second-age" + }, + { + "slug": "ultima-online-third-dawn", + "name": "Ultima Online: Third Dawn", + "url": "/v1/games/ultima-online-third-dawn" + }, { "slug": "ultima-ratio-regum", "name": "Ultima Ratio Regum", @@ -776881,6 +809066,11 @@ "name": "Ultimate Booster Experience", "url": "/v1/games/ultimate-booster-experience" }, + { + "slug": "ultimate-brain-games-q64427726", + "name": "Ultimate Brain Games", + "url": "/v1/games/ultimate-brain-games-q64427726" + }, { "slug": "ultimate-brain-games", "name": "Ultimate Brain Games", @@ -776926,6 +809116,11 @@ "name": "Ultimate Chicken Horse", "url": "/v1/games/ultimate-chicken-horse" }, + { + "slug": "ultimate-chicken-horse-4-pack", + "name": "Ultimate Chicken Horse 4 Pack", + "url": "/v1/games/ultimate-chicken-horse-4-pack" + }, { "slug": "ultimate-chopsticks", "name": "Ultimate Chopsticks", @@ -777186,6 +809381,11 @@ "name": "Ultimate Muscle: The Path of the Superhero", "url": "/v1/games/ultimate-muscle-the-path-of-the-superhero" }, + { + "slug": "ultimate-nes-remix", + "name": "Ultimate NES Remix", + "url": "/v1/games/ultimate-nes-remix" + }, { "slug": "ultimate-obstacle-course-prologue", "name": "Ultimate Obstacle Course - Prologue", @@ -777256,6 +809456,31 @@ "name": "Ultimate Protector", "url": "/v1/games/ultimate-protector" }, + { + "slug": "ultimate-quiz-ii-the-movies-data-disk", + "name": "Ultimate Quiz II, The: Movies Data Disk", + "url": "/v1/games/ultimate-quiz-ii-the-movies-data-disk" + }, + { + "slug": "ultimate-quiz-ii-the-pop-music-data-disk", + "name": "Ultimate Quiz II, The: Pop Music Data Disk", + "url": "/v1/games/ultimate-quiz-ii-the-pop-music-data-disk" + }, + { + "slug": "ultimate-quiz-ii-the-pot-luck-data-disk-1", + "name": "Ultimate Quiz II, The: Pot Luck Data Disk 1", + "url": "/v1/games/ultimate-quiz-ii-the-pot-luck-data-disk-1" + }, + { + "slug": "ultimate-quiz-ii-the-pot-luck-data-disk-2", + "name": "Ultimate Quiz II, The: Pot Luck Data Disk 2", + "url": "/v1/games/ultimate-quiz-ii-the-pot-luck-data-disk-2" + }, + { + "slug": "ultimate-quiz-ii-the-sports-data-disk", + "name": "Ultimate Quiz II, The: Sports Data Disk", + "url": "/v1/games/ultimate-quiz-ii-the-sports-data-disk" + }, { "slug": "ultimate-quiz-the", "name": "Ultimate Quiz, The", @@ -777321,6 +809546,11 @@ "name": "Ultimate Shifumi Championship", "url": "/v1/games/ultimate-shifumi-championship" }, + { + "slug": "ultimate-shooting-collection", + "name": "Ultimate Shooting Collection", + "url": "/v1/games/ultimate-shooting-collection" + }, { "slug": "ultimate-shotgun-championship", "name": "Ultimate Shotgun Championship", @@ -777501,6 +809731,11 @@ "name": "Ultimate War", "url": "/v1/games/ultimate-war" }, + { + "slug": "ultimate-wilds", + "name": "Ultimate Wilds", + "url": "/v1/games/ultimate-wilds" + }, { "slug": "ultimate-winter-games", "name": "Ultimate Winter Games", @@ -778301,6 +810536,51 @@ "name": "Umineko no Naku Koro ni", "url": "/v1/games/umineko-no-naku-koro-ni" }, + { + "slug": "umineko-no-naku-koro-ni-chiru", + "name": "Umineko no Naku Koro ni Chiru", + "url": "/v1/games/umineko-no-naku-koro-ni-chiru" + }, + { + "slug": "umineko-no-naku-koro-ni-chiru-episode-5-end-of-the-golden-witch", + "name": "Umineko no Naku Koro ni Chiru Episode 5: End of the Golden Witch", + "url": "/v1/games/umineko-no-naku-koro-ni-chiru-episode-5-end-of-the-golden-witch" + }, + { + "slug": "umineko-no-naku-koro-ni-chiru-episode-6-dawn-of-the-golden-witch", + "name": "Umineko no Naku Koro ni Chiru Episode 6: Dawn of the Golden Witch", + "url": "/v1/games/umineko-no-naku-koro-ni-chiru-episode-6-dawn-of-the-golden-witch" + }, + { + "slug": "umineko-no-naku-koro-ni-chiru-episode-7-requiem-of-the-golden-witch", + "name": "Umineko no Naku Koro ni Chiru Episode 7: Requiem of the Golden Witch", + "url": "/v1/games/umineko-no-naku-koro-ni-chiru-episode-7-requiem-of-the-golden-witch" + }, + { + "slug": "umineko-no-naku-koro-ni-chiru-episode-8-twilight-of-the-golden-witch", + "name": "Umineko no Naku Koro ni Chiru Episode 8: Twilight of the Golden Witch", + "url": "/v1/games/umineko-no-naku-koro-ni-chiru-episode-8-twilight-of-the-golden-witch" + }, + { + "slug": "umineko-no-naku-koro-ni-episode-1-legend-of-the-golden-witch", + "name": "Umineko no Naku Koro ni Episode 1: Legend of the Golden Witch", + "url": "/v1/games/umineko-no-naku-koro-ni-episode-1-legend-of-the-golden-witch" + }, + { + "slug": "umineko-no-naku-koro-ni-episode-2-turn-of-the-golden-witch", + "name": "Umineko no Naku Koro ni Episode 2: Turn of the Golden Witch", + "url": "/v1/games/umineko-no-naku-koro-ni-episode-2-turn-of-the-golden-witch" + }, + { + "slug": "umineko-no-naku-koro-ni-episode-3-banquet-of-the-golden-witch", + "name": "Umineko no Naku Koro ni Episode 3: Banquet of the Golden Witch", + "url": "/v1/games/umineko-no-naku-koro-ni-episode-3-banquet-of-the-golden-witch" + }, + { + "slug": "umineko-no-naku-koro-ni-episode-4-alliance-of-the-golden-witch", + "name": "Umineko no Naku Koro ni Episode 4: Alliance of the Golden Witch", + "url": "/v1/games/umineko-no-naku-koro-ni-episode-4-alliance-of-the-golden-witch" + }, { "slug": "umineko-no-naku-koro-ni-hane", "name": "Umineko no Naku Koro ni Hane", @@ -778346,6 +810626,11 @@ "name": "Umurangi Generation", "url": "/v1/games/umurangi-generation" }, + { + "slug": "umurangi-generation-special-edition", + "name": "Umurangi Generation: Special Edition", + "url": "/v1/games/umurangi-generation-special-edition" + }, { "slug": "umut-tarlalar-q126185529", "name": "Umut Tarlalarý", @@ -778646,6 +810931,11 @@ "name": "Unbreaded", "url": "/v1/games/unbreaded" }, + { + "slug": "unbreakable-kimmy-schmidt-kimmy-vs-the-reverend", + "name": "Unbreakable Kimmy Schmidt: Kimmy vs. the Reverend", + "url": "/v1/games/unbreakable-kimmy-schmidt-kimmy-vs-the-reverend" + }, { "slug": "unbreakable-vr-runner", "name": "Unbreakable Vr Runner", @@ -778751,6 +811041,11 @@ "name": "Uncharted 3: Drake's Deception", "url": "/v1/games/uncharted-3-drake-s-deception" }, + { + "slug": "uncharted-3-drake-s-deception-game-of-the-year-edition", + "name": "Uncharted 3: Drake's Deception - Game of the Year Edition", + "url": "/v1/games/uncharted-3-drake-s-deception-game-of-the-year-edition" + }, { "slug": "uncharted-4-a-thief-s-end", "name": "Uncharted 4: A Thief's End", @@ -778836,6 +811131,11 @@ "name": "Uncharted: Golden Abyss", "url": "/v1/games/uncharted-golden-abyss" }, + { + "slug": "uncharted-legacy-of-thieves-collection", + "name": "Uncharted: Legacy of Thieves Collection", + "url": "/v1/games/uncharted-legacy-of-thieves-collection" + }, { "slug": "uncharted-the-lost-legacy", "name": "Uncharted: The Lost Legacy", @@ -779536,6 +811836,11 @@ "name": "Under Siege", "url": "/v1/games/under-siege-q3825502" }, + { + "slug": "under-siege-q57974041", + "name": "Under Siege", + "url": "/v1/games/under-siege-q57974041" + }, { "slug": "under-siege", "name": "Under Siege", @@ -779696,6 +812001,11 @@ "name": "Under the Island", "url": "/v1/games/under-the-island" }, + { + "slug": "under-the-jolly-roger-complete-edition", + "name": "Under the Jolly Roger Complete Edition", + "url": "/v1/games/under-the-jolly-roger-complete-edition" + }, { "slug": "under-the-moon", "name": "Under the Moon", @@ -780766,6 +813076,11 @@ "name": "Unfinished Battle", "url": "/v1/games/unfinished-battle" }, + { + "slug": "unfinished-sarge-game-demo", + "name": "Unfinished Sarge Game Demo", + "url": "/v1/games/unfinished-sarge-game-demo" + }, { "slug": "unfolded-camellia-tales", "name": "Unfolded : Camellia Tales", @@ -781411,6 +813726,11 @@ "name": "UniverCity", "url": "/v1/games/univercity" }, + { + "slug": "univers-1-la-compil-universelle", + "name": "Univers 1 - La Compil' Universelle", + "url": "/v1/games/univers-1-la-compil-universelle" + }, { "slug": "univers-11-under-the-sky", "name": "Univers 11: Under the Sky", @@ -781981,6 +814301,11 @@ "name": "Unlimited Saga", "url": "/v1/games/unlimited-saga" }, + { + "slug": "unlimited-saga-collector-s-edition", + "name": "Unlimited Saga: Collector's Edition", + "url": "/v1/games/unlimited-saga-collector-s-edition" + }, { "slug": "unlimited-warriors", "name": "Unlimited Warriors", @@ -782071,6 +814396,11 @@ "name": "Unlock: The Game", "url": "/v1/games/unlock-the-game" }, + { + "slug": "unlockable-pack", + "name": "Unlockable Pack", + "url": "/v1/games/unlockable-pack" + }, { "slug": "unlocked", "name": "Unlocked", @@ -782201,6 +814531,11 @@ "name": "Unnamed Fiasco", "url": "/v1/games/unnamed-fiasco" }, + { + "slug": "unnamed-half-life-alyx-sequel", + "name": "Unnamed Half-Life Alyx sequel", + "url": "/v1/games/unnamed-half-life-alyx-sequel" + }, { "slug": "unnamed-project", "name": "Unnamed Project", @@ -782526,6 +814861,11 @@ "name": "Unreal Maze Survival", "url": "/v1/games/unreal-maze-survival" }, + { + "slug": "unreal-mission-pack-return-to-na-pali", + "name": "Unreal Mission Pack: Return to Na Pali", + "url": "/v1/games/unreal-mission-pack-return-to-na-pali" + }, { "slug": "unreal-physics", "name": "Unreal Physics", @@ -782546,6 +814886,11 @@ "name": "Unreal Strike", "url": "/v1/games/unreal-strike" }, + { + "slug": "unreal-tournament-q16796730", + "name": "Unreal Tournament", + "url": "/v1/games/unreal-tournament-q16796730" + }, { "slug": "unreal-tournament", "name": "Unreal Tournament", @@ -782566,6 +814911,11 @@ "name": "Unreal Tournament 3", "url": "/v1/games/unreal-tournament-3" }, + { + "slug": "unreal-tournament-game-of-the-year-edition", + "name": "Unreal Tournament: Game of the Year Edition", + "url": "/v1/games/unreal-tournament-game-of-the-year-edition" + }, { "slug": "unreal-vendetta", "name": "Unreal Vendetta", @@ -782821,6 +815171,11 @@ "name": "Unsolved Mystery Club: Ancient Astronauts (Collector´s Edition)", "url": "/v1/games/unsolved-mystery-club-ancient-astronauts-collector-s-edition" }, + { + "slug": "unsolved-riddles", + "name": "Unsolved Riddles", + "url": "/v1/games/unsolved-riddles" + }, { "slug": "unsolved-stories", "name": "Unsolved Stories", @@ -783996,6 +816351,11 @@ "name": "Ura Nyuugaku ~In'eki ni Nureta Kyoukasho~", "url": "/v1/games/ura-nyuugaku-in-eki-ni-nureta-kyoukasho" }, + { + "slug": "ura-zelda", + "name": "Ura Zelda", + "url": "/v1/games/ura-zelda" + }, { "slug": "uragun", "name": "Uragun", @@ -784426,6 +816786,11 @@ "name": "Uru: Ages Beyond Myst", "url": "/v1/games/uru-ages-beyond-myst" }, + { + "slug": "uru-the-complete-chronicles", + "name": "Uru: The Complete Chronicles", + "url": "/v1/games/uru-the-complete-chronicles" + }, { "slug": "uruc", "name": "Uruc", @@ -784636,6 +817001,11 @@ "name": "Uterine Supremacy", "url": "/v1/games/uterine-supremacy" }, + { + "slug": "utilities-for-doom-doom-ii", + "name": "Utilities for Doom & Doom II", + "url": "/v1/games/utilities-for-doom-doom-ii" + }, { "slug": "utility-for-the-soul", "name": "Utility for the Soul", @@ -784776,6 +817146,11 @@ "name": "Uyrh no Shohōsen", "url": "/v1/games/uyrh-no-shoh-sen" }, + { + "slug": "uzdoom", + "name": "Uzdoom", + "url": "/v1/games/uzdoom" + }, { "slug": "uzu-keobukseon", "name": "Uzu Keobukseon", @@ -785406,11 +817781,21 @@ "name": "VERSUS: The Elite Trials", "url": "/v1/games/versus-the-elite-trials" }, + { + "slug": "versus-the-elite-trials-worningbird-hints", + "name": "VERSUS: The Elite Trials - WorningBird Hints", + "url": "/v1/games/versus-the-elite-trials-worningbird-hints" + }, { "slug": "versus-the-lost-ones", "name": "VERSUS: The Lost Ones", "url": "/v1/games/versus-the-lost-ones" }, + { + "slug": "versus-the-lost-ones-worningbird-hints", + "name": "VERSUS: The Lost Ones - WorningBird Hints", + "url": "/v1/games/versus-the-lost-ones-worningbird-hints" + }, { "slug": "vertical-fighters", "name": "VERTICAL FIGHTERS", @@ -785876,6 +818261,11 @@ "name": "VOSS Turbo", "url": "/v1/games/voss-turbo" }, + { + "slug": "voss-turbo-demo", + "name": "VOSS Turbo Demo", + "url": "/v1/games/voss-turbo-demo" + }, { "slug": "vow", "name": "VOW", @@ -785911,6 +818301,11 @@ "name": "VQD", "url": "/v1/games/vqd" }, + { + "slug": "vquake", + "name": "VQuake", + "url": "/v1/games/vquake" + }, { "slug": "vr-avoid", "name": "VR # AVOID", @@ -786311,6 +818706,16 @@ "name": "VR Fitness", "url": "/v1/games/vr-fitness" }, + { + "slug": "vr-fitness-r18-dlc", + "name": "VR Fitness - R18 DLC", + "url": "/v1/games/vr-fitness-r18-dlc" + }, + { + "slug": "vr-fitness-demo", + "name": "VR Fitness Demo", + "url": "/v1/games/vr-fitness-demo" + }, { "slug": "vr-fitness-gym", "name": "VR Fitness Gym", @@ -786431,6 +818836,11 @@ "name": "VR Harem Sex ~Fucking the All Girls Around Me~", "url": "/v1/games/vr-harem-sex-fucking-the-all-girls-around-me" }, + { + "slug": "vr-harem-sex-fucking-the-all-girls-around-me-demo", + "name": "VR Harem Sex ~Fucking the All Girls Around Me~ Demo", + "url": "/v1/games/vr-harem-sex-fucking-the-all-girls-around-me-demo" + }, { "slug": "vr-head-football", "name": "VR Head Football", @@ -787596,6 +820006,11 @@ "name": "VVVVVV", "url": "/v1/games/vvvvvv" }, + { + "slug": "vaas-insanity", + "name": "Vaas: Insanity", + "url": "/v1/games/vaas-insanity" + }, { "slug": "vabank", "name": "Vabank", @@ -787936,6 +820351,21 @@ "name": "Vader Immortal: A Star Wars VR Series", "url": "/v1/games/vader-immortal-a-star-wars-vr-series" }, + { + "slug": "vader-immortal-a-star-wars-vr-series-episode-i", + "name": "Vader Immortal: A Star Wars VR Series – Episode I", + "url": "/v1/games/vader-immortal-a-star-wars-vr-series-episode-i" + }, + { + "slug": "vader-immortal-a-star-wars-vr-series-episode-ii", + "name": "Vader Immortal: A Star Wars VR Series – Episode II", + "url": "/v1/games/vader-immortal-a-star-wars-vr-series-episode-ii" + }, + { + "slug": "vader-immortal-a-star-wars-vr-series-episode-iii", + "name": "Vader Immortal: A Star Wars VR Series – Episode III", + "url": "/v1/games/vader-immortal-a-star-wars-vr-series-episode-iii" + }, { "slug": "vadine-bite-man", "name": "Vadine: Bite-Man", @@ -788546,6 +820976,11 @@ "name": "Valkyrie Star: A Cacophony Choir", "url": "/v1/games/valkyrie-star-a-cacophony-choir" }, + { + "slug": "valkyrie-tune-synthesis-of-souls", + "name": "Valkyrie Tune: Synthesis of Souls", + "url": "/v1/games/valkyrie-tune-synthesis-of-souls" + }, { "slug": "valkyrie-no-b-ken-toki-no-kagi-densetsu", "name": "Valkyrie no Bōken: Toki no Kagi Densetsu", @@ -788736,6 +821171,16 @@ "name": "Valor & Victory", "url": "/v1/games/valor-victory" }, + { + "slug": "valor-victory-shield-of-cholm", + "name": "Valor & Victory: Shield of Cholm", + "url": "/v1/games/valor-victory-shield-of-cholm" + }, + { + "slug": "valor-victory-stalingrad", + "name": "Valor & Victory: Stalingrad", + "url": "/v1/games/valor-victory-stalingrad" + }, { "slug": "valor-of-man", "name": "Valor Of Man", @@ -788796,6 +821241,21 @@ "name": "Valtric", "url": "/v1/games/valtric" }, + { + "slug": "valve-clothing-pack", + "name": "Valve Clothing Pack", + "url": "/v1/games/valve-clothing-pack" + }, + { + "slug": "valve-complete-pack", + "name": "Valve Complete Pack", + "url": "/v1/games/valve-complete-pack" + }, + { + "slug": "valve-s-team-fortress", + "name": "Valve's Team Fortress", + "url": "/v1/games/valve-s-team-fortress" + }, { "slug": "valyria-tear", "name": "Valyria Tear", @@ -789026,6 +821486,16 @@ "name": "Vampire Survivors", "url": "/v1/games/vampire-survivors" }, + { + "slug": "vampire-survivors-legacy-of-the-moonspell", + "name": "Vampire Survivors: Legacy of the Moonspell", + "url": "/v1/games/vampire-survivors-legacy-of-the-moonspell" + }, + { + "slug": "vampire-survivors-ode-to-castlevania", + "name": "Vampire Survivors: Ode to Castlevania", + "url": "/v1/games/vampire-survivors-ode-to-castlevania" + }, { "slug": "vampire-sweethearts", "name": "Vampire Sweethearts", @@ -789166,6 +821636,11 @@ "name": "Vampire: The Masquerade – Redemption", "url": "/v1/games/vampire-the-masquerade-redemption" }, + { + "slug": "vampire-the-masquerade-shadows-of-new-york", + "name": "Vampire: The Masquerade – Shadows of New York", + "url": "/v1/games/vampire-the-masquerade-shadows-of-new-york" + }, { "slug": "vampire-the-masquerade-sins-of-the-sires", "name": "Vampire: The Masquerade – Sins of the Sires", @@ -789226,6 +821701,11 @@ "name": "Vampires!", "url": "/v1/games/vampires" }, + { + "slug": "vampires-wallpapers-ost", + "name": "Vampires! - Wallpapers & OST", + "url": "/v1/games/vampires-wallpapers-ost" + }, { "slug": "vampires-melody", "name": "Vampires' Melody", @@ -789291,6 +821771,11 @@ "name": "Vamwolf Cross", "url": "/v1/games/vamwolf-cross" }, + { + "slug": "van-buren", + "name": "Van Buren", + "url": "/v1/games/van-buren" + }, { "slug": "van-gogh-s-masterpiece-jigsaw-puzzles", "name": "Van Gogh's Masterpiece Jigsaw Puzzles", @@ -789521,6 +822006,11 @@ "name": "Vanilla Click", "url": "/v1/games/vanilla-click" }, + { + "slug": "vanilla-conquer", + "name": "Vanilla Conquer", + "url": "/v1/games/vanilla-conquer" + }, { "slug": "vanilla-inspector", "name": "Vanilla Inspector", @@ -789866,6 +822356,11 @@ "name": "Vartra Abyss", "url": "/v1/games/vartra-abyss" }, + { + "slug": "varuna-s-forces", + "name": "Varuna's Forces", + "url": "/v1/games/varuna-s-forces" + }, { "slug": "vasfmc", "name": "VasFMC", @@ -790026,6 +822521,11 @@ "name": "Vavala", "url": "/v1/games/vavala" }, + { + "slug": "vavoom", + "name": "Vavoom", + "url": "/v1/games/vavoom" + }, { "slug": "vaxine", "name": "Vaxine", @@ -790241,6 +822741,11 @@ "name": "Vectorman 2", "url": "/v1/games/vectorman-2" }, + { + "slug": "vectorman-3", + "name": "Vectorman 3", + "url": "/v1/games/vectorman-3" + }, { "slug": "vectoroids", "name": "Vectoroids", @@ -790936,6 +823441,11 @@ "name": "Venandi In Silva", "url": "/v1/games/venandi-in-silva" }, + { + "slug": "venapro", + "name": "Venapro", + "url": "/v1/games/venapro" + }, { "slug": "venatio", "name": "Venatio", @@ -791976,6 +824486,11 @@ "name": "Very Little Nightmares", "url": "/v1/games/very-little-nightmares" }, + { + "slug": "very-little-nightmares-q118235287", + "name": "Very Little Nightmares+", + "url": "/v1/games/very-little-nightmares-q118235287" + }, { "slug": "very-real-chess", "name": "Very Real Chess", @@ -792486,6 +825001,11 @@ "name": "Victoria 3", "url": "/v1/games/victoria-3" }, + { + "slug": "victoria-3-voice-of-the-people", + "name": "Victoria 3: Voice of the People", + "url": "/v1/games/victoria-3-voice-of-the-people" + }, { "slug": "victoria-clair-and-the-mystery-express", "name": "Victoria Clair and the Mystery Express", @@ -792496,6 +825016,11 @@ "name": "Victoria II", "url": "/v1/games/victoria-ii" }, + { + "slug": "victoria-ii-heart-of-darkness", + "name": "Victoria II: Heart of Darkness", + "url": "/v1/games/victoria-ii-heart-of-darkness" + }, { "slug": "victoria-s-body", "name": "Victoria's Body", @@ -792686,6 +825211,11 @@ "name": "Victory at Sea Pacific", "url": "/v1/games/victory-at-sea-pacific" }, + { + "slug": "victory-is-life", + "name": "Victory is Life", + "url": "/v1/games/victory-is-life" + }, { "slug": "victory-of-seeker", "name": "Victory of Seeker", @@ -792781,6 +825311,11 @@ "name": "Video Olympics", "url": "/v1/games/video-olympics" }, + { + "slug": "video-pinball-q65951933", + "name": "Video Pinball", + "url": "/v1/games/video-pinball-q65951933" + }, { "slug": "video-pinball", "name": "Video Pinball", @@ -792976,6 +825511,16 @@ "name": "Vietcong 2", "url": "/v1/games/vietcong-2" }, + { + "slug": "vietcong-fist-alpha", + "name": "Vietcong: Fist Alpha", + "url": "/v1/games/vietcong-fist-alpha" + }, + { + "slug": "vietcong-red-dawn", + "name": "Vietcong: Red Dawn", + "url": "/v1/games/vietcong-red-dawn" + }, { "slug": "vietnam-66", "name": "Vietnam '66", @@ -793021,6 +825566,21 @@ "name": "ViewSelect Racing", "url": "/v1/games/viewselect-racing" }, + { + "slug": "viewer-pack-the-first", + "name": "Viewer Pack The First", + "url": "/v1/games/viewer-pack-the-first" + }, + { + "slug": "viewer-pack-the-second", + "name": "Viewer Pack The Second", + "url": "/v1/games/viewer-pack-the-second" + }, + { + "slug": "viewer-pack-the-third", + "name": "Viewer Pack The Third", + "url": "/v1/games/viewer-pack-the-third" + }, { "slug": "viewergames-racing", "name": "Viewergames Racing", @@ -793066,6 +825626,11 @@ "name": "Vigil of Glory - Part I", "url": "/v1/games/vigil-of-glory-part-i" }, + { + "slug": "vigil-blood-bitterness-demo", + "name": "Vigil: Blood Bitterness Demo", + "url": "/v1/games/vigil-blood-bitterness-demo" + }, { "slug": "vigil-the-longest-night", "name": "Vigil: The Longest Night", @@ -793776,6 +826341,11 @@ "name": "Vilomah", "url": "/v1/games/vilomah" }, + { + "slug": "vilse-i-vintergatan", + "name": "Vilse i Vintergatan", + "url": "/v1/games/vilse-i-vintergatan" + }, { "slug": "vilset", "name": "Vilset", @@ -794421,6 +826991,11 @@ "name": "Virtua Cop: Elite Edition", "url": "/v1/games/virtua-cop-elite-edition" }, + { + "slug": "virtua-fighter-q61601911", + "name": "Virtua Fighter", + "url": "/v1/games/virtua-fighter-q61601911" + }, { "slug": "virtua-fighter", "name": "Virtua Fighter", @@ -795056,6 +827631,11 @@ "name": "Virtual Reality Vol. 1", "url": "/v1/games/virtual-reality-vol-1" }, + { + "slug": "virtual-reality-volume-2", + "name": "Virtual Reality, Volume 2", + "url": "/v1/games/virtual-reality-volume-2" + }, { "slug": "virtual-regatta", "name": "Virtual Regatta", @@ -795571,6 +828151,16 @@ "name": "Viscera Cleanup Detail", "url": "/v1/games/viscera-cleanup-detail" }, + { + "slug": "viscera-cleanup-detail-the-vulcan-affair", + "name": "Viscera Cleanup Detail - The Vulcan Affair", + "url": "/v1/games/viscera-cleanup-detail-the-vulcan-affair" + }, + { + "slug": "viscera-cleanup-detail-house-of-horror", + "name": "Viscera Cleanup Detail: House of Horror", + "url": "/v1/games/viscera-cleanup-detail-house-of-horror" + }, { "slug": "viscera-cleanup-detail-santa-s-rampage", "name": "Viscera Cleanup Detail: Santa's Rampage", @@ -795766,11 +828356,21 @@ "name": "Vita Mahjong", "url": "/v1/games/vita-mahjong" }, + { + "slug": "vita-stacks", + "name": "Vita Stacks", + "url": "/v1/games/vita-stacks" + }, { "slug": "vita-rift-of-a-nation", "name": "Vita: Rift of a Nation", "url": "/v1/games/vita-rift-of-a-nation" }, + { + "slug": "vitahot", + "name": "VitaHot", + "url": "/v1/games/vitahot" + }, { "slug": "vital-light", "name": "Vital Light", @@ -795806,6 +828406,11 @@ "name": "VitaminZ", "url": "/v1/games/vitaminz" }, + { + "slug": "vitamon-go", + "name": "Vitamon GO", + "url": "/v1/games/vitamon-go" + }, { "slug": "viticulture-essential-edition", "name": "Viticulture Essential Edition", @@ -797961,6 +830566,11 @@ "name": "Voyage: Inspired by Jules Verne", "url": "/v1/games/voyage-inspired-by-jules-verne" }, + { + "slug": "voyage-xbox-edition", + "name": "Voyage: Xbox Edition", + "url": "/v1/games/voyage-xbox-edition" + }, { "slug": "voyager-q135451774", "name": "Voyager", @@ -798316,6 +830926,11 @@ "name": "W.A.R.P.", "url": "/v1/games/w-a-r-p" }, + { + "slug": "w-e-l-l-online", + "name": "W.E.L.L. Online", + "url": "/v1/games/w-e-l-l-online" + }, { "slug": "w-h-a-l-e", "name": "W.H.A.L.E.", @@ -798941,6 +831556,11 @@ "name": "WHITE ALBUM2", "url": "/v1/games/white-album2" }, + { + "slug": "white-album2-extended-edition", + "name": "WHITE ALBUM2 EXTENDED EDITION", + "url": "/v1/games/white-album2-extended-edition" + }, { "slug": "white-album2-introductory-chapter", "name": "WHITE ALBUM2 introductory chapter", @@ -799516,6 +832136,11 @@ "name": "WWE 2K15", "url": "/v1/games/wwe-2k15" }, + { + "slug": "wwe-2k15-digital-deluxe-edition", + "name": "WWE 2K15 Digital Deluxe Edition", + "url": "/v1/games/wwe-2k15-digital-deluxe-edition" + }, { "slug": "wwe-2k16", "name": "WWE 2K16", @@ -799551,6 +832176,16 @@ "name": "WWE 2K23", "url": "/v1/games/wwe-2k23" }, + { + "slug": "wwe-2k23-deluxe-edition", + "name": "WWE 2K23 Deluxe Edition", + "url": "/v1/games/wwe-2k23-deluxe-edition" + }, + { + "slug": "wwe-2k23-icon-edition", + "name": "WWE 2K23 Icon Edition", + "url": "/v1/games/wwe-2k23-icon-edition" + }, { "slug": "wwe-2k24", "name": "WWE 2K24", @@ -799641,6 +832276,11 @@ "name": "WWE SmackDown vs. Raw 2011", "url": "/v1/games/wwe-smackdown-vs-raw-2011" }, + { + "slug": "wwe-smackdown-vs-raw-online", + "name": "WWE SmackDown vs. Raw Online", + "url": "/v1/games/wwe-smackdown-vs-raw-online" + }, { "slug": "wwe-smackdown-here-comes-the-pain", "name": "WWE SmackDown! Here Comes the Pain", @@ -800186,6 +832826,11 @@ "name": "Waggle-O-Mania 2", "url": "/v1/games/waggle-o-mania-2" }, + { + "slug": "wagic-the-homebrew", + "name": "Wagic, The Homebrew ?!", + "url": "/v1/games/wagic-the-homebrew" + }, { "slug": "wagon-gloom", "name": "Wagon Gloom", @@ -800481,6 +833126,11 @@ "name": "Wait - Extended", "url": "/v1/games/wait-extended" }, + { + "slug": "wait-what-s-that", + "name": "Wait What's That", + "url": "/v1/games/wait-what-s-that" + }, { "slug": "wait-for-the-egg-to-hatch", "name": "Wait for the Egg to Hatch", @@ -802676,6 +835326,11 @@ "name": "WarChaos", "url": "/v1/games/warchaos" }, + { + "slug": "warcraft-ii-tides-of-darkness-q122890940", + "name": "WarCraft II: Tides of Darkness", + "url": "/v1/games/warcraft-ii-tides-of-darkness-q122890940" + }, { "slug": "wardogs-red-s-return", "name": "WarDogs: Red's Return", @@ -802956,16 +835611,46 @@ "name": "Warcoven", "url": "/v1/games/warcoven" }, + { + "slug": "warcraft-2000", + "name": "Warcraft 2000", + "url": "/v1/games/warcraft-2000" + }, + { + "slug": "warcraft-3-the-frozen-throne-nature-s-call-spider-queen", + "name": "Warcraft 3: The Frozen Throne: Nature's Call: Spider Queen", + "url": "/v1/games/warcraft-3-the-frozen-throne-nature-s-call-spider-queen" + }, + { + "slug": "warcraft-adventures-lord-of-the-clans", + "name": "Warcraft Adventures: Lord of the Clans", + "url": "/v1/games/warcraft-adventures-lord-of-the-clans" + }, { "slug": "warcraft-ii-battle-net-edition", "name": "Warcraft II: Battle.net Edition", "url": "/v1/games/warcraft-ii-battle-net-edition" }, + { + "slug": "warcraft-ii-beyond-the-dark-portal", + "name": "Warcraft II: Beyond the Dark Portal", + "url": "/v1/games/warcraft-ii-beyond-the-dark-portal" + }, + { + "slug": "warcraft-ii-the-dark-saga", + "name": "Warcraft II: The Dark Saga", + "url": "/v1/games/warcraft-ii-the-dark-saga" + }, { "slug": "warcraft-ii-tides-of-darkness", "name": "Warcraft II: Tides of Darkness", "url": "/v1/games/warcraft-ii-tides-of-darkness" }, + { + "slug": "warcraft-iii-gold-edition", + "name": "Warcraft III: Gold Edition", + "url": "/v1/games/warcraft-iii-gold-edition" + }, { "slug": "warcraft-iii-reforged", "name": "Warcraft III: Reforged", @@ -802976,6 +835661,11 @@ "name": "Warcraft III: Reign of Chaos", "url": "/v1/games/warcraft-iii-reign-of-chaos" }, + { + "slug": "warcraft-iii-reign-of-chaos-demo-version", + "name": "Warcraft III: Reign of Chaos Demo Version", + "url": "/v1/games/warcraft-iii-reign-of-chaos-demo-version" + }, { "slug": "warcraft-rumble", "name": "Warcraft Rumble", @@ -803376,6 +836066,11 @@ "name": "Warhammer 40,000: Dakka Squadron - Flyboyz Edition", "url": "/v1/games/warhammer-40-000-dakka-squadron-flyboyz-edition" }, + { + "slug": "warhammer-40-000-dark-heresy", + "name": "Warhammer 40,000: Dark Heresy", + "url": "/v1/games/warhammer-40-000-dark-heresy" + }, { "slug": "warhammer-40-000-dark-millennium", "name": "Warhammer 40,000: Dark Millennium", @@ -803396,16 +836091,46 @@ "name": "Warhammer 40,000: Dawn of War II", "url": "/v1/games/warhammer-40-000-dawn-of-war-ii" }, + { + "slug": "warhammer-40-000-dawn-of-war-ii-chaos-rising", + "name": "Warhammer 40,000: Dawn of War II – Chaos Rising", + "url": "/v1/games/warhammer-40-000-dawn-of-war-ii-chaos-rising" + }, + { + "slug": "warhammer-40-000-dawn-of-war-ii-retribution", + "name": "Warhammer 40,000: Dawn of War II – Retribution", + "url": "/v1/games/warhammer-40-000-dawn-of-war-ii-retribution" + }, { "slug": "warhammer-40-000-dawn-of-war-iii", "name": "Warhammer 40,000: Dawn of War III", "url": "/v1/games/warhammer-40-000-dawn-of-war-iii" }, + { + "slug": "warhammer-40-000-dawn-of-war-dark-crusade", + "name": "Warhammer 40,000: Dawn of War – Dark Crusade", + "url": "/v1/games/warhammer-40-000-dawn-of-war-dark-crusade" + }, { "slug": "warhammer-40-000-dawn-of-war-definitive-edition", "name": "Warhammer 40,000: Dawn of War – Definitive Edition", "url": "/v1/games/warhammer-40-000-dawn-of-war-definitive-edition" }, + { + "slug": "warhammer-40-000-dawn-of-war-dowpro", + "name": "Warhammer 40,000: Dawn of War – DowPro", + "url": "/v1/games/warhammer-40-000-dawn-of-war-dowpro" + }, + { + "slug": "warhammer-40-000-dawn-of-war-soulstorm", + "name": "Warhammer 40,000: Dawn of War – Soulstorm", + "url": "/v1/games/warhammer-40-000-dawn-of-war-soulstorm" + }, + { + "slug": "warhammer-40-000-dawn-of-war-winter-assault", + "name": "Warhammer 40,000: Dawn of War – Winter Assault", + "url": "/v1/games/warhammer-40-000-dawn-of-war-winter-assault" + }, { "slug": "warhammer-40-000-deathwatch", "name": "Warhammer 40,000: Deathwatch", @@ -803436,6 +836161,11 @@ "name": "Warhammer 40,000: Glory in Death", "url": "/v1/games/warhammer-40-000-glory-in-death" }, + { + "slug": "warhammer-40-000-inquisitor-prophecy-q130721078", + "name": "Warhammer 40,000: Inquisitor - Prophecy", + "url": "/v1/games/warhammer-40-000-inquisitor-prophecy-q130721078" + }, { "slug": "warhammer-40-000-inquisitor-prophecy", "name": "Warhammer 40,000: Inquisitor - Prophecy", @@ -803551,6 +836281,11 @@ "name": "Warhammer Online: Age of Reckoning", "url": "/v1/games/warhammer-online-age-of-reckoning" }, + { + "slug": "warhammer-online-age-of-reckoning-call-to-arms", + "name": "Warhammer Online: Age of Reckoning – Call to Arms", + "url": "/v1/games/warhammer-online-age-of-reckoning-call-to-arms" + }, { "slug": "warhammer-online-wrath-of-heroes", "name": "Warhammer Online: Wrath of Heroes", @@ -803631,6 +836366,61 @@ "name": "Warhammer: Vermintide 2", "url": "/v1/games/warhammer-vermintide-2" }, + { + "slug": "warhammer-vermintide-2-back-to-ubersreik", + "name": "Warhammer: Vermintide 2 - Back to Ubersreik", + "url": "/v1/games/warhammer-vermintide-2-back-to-ubersreik" + }, + { + "slug": "warhammer-vermintide-2-collector-s-edition-upgrade", + "name": "Warhammer: Vermintide 2 - Collector's Edition Upgrade", + "url": "/v1/games/warhammer-vermintide-2-collector-s-edition-upgrade" + }, + { + "slug": "warhammer-vermintide-2-forgotten-relics-pack", + "name": "Warhammer: Vermintide 2 - Forgotten Relics Pack", + "url": "/v1/games/warhammer-vermintide-2-forgotten-relics-pack" + }, + { + "slug": "warhammer-vermintide-2-grail-knight-career", + "name": "Warhammer: Vermintide 2 - Grail Knight Career", + "url": "/v1/games/warhammer-vermintide-2-grail-knight-career" + }, + { + "slug": "warhammer-vermintide-2-grail-knight-cosmetic-upgrade", + "name": "Warhammer: Vermintide 2 - Grail Knight Cosmetic Upgrade", + "url": "/v1/games/warhammer-vermintide-2-grail-knight-cosmetic-upgrade" + }, + { + "slug": "warhammer-vermintide-2-outcast-engineer-career", + "name": "Warhammer: Vermintide 2 - Outcast Engineer Career", + "url": "/v1/games/warhammer-vermintide-2-outcast-engineer-career" + }, + { + "slug": "warhammer-vermintide-2-outcast-engineer-cosmetic-upgrade", + "name": "Warhammer: Vermintide 2 - Outcast Engineer Cosmetic Upgrade", + "url": "/v1/games/warhammer-vermintide-2-outcast-engineer-cosmetic-upgrade" + }, + { + "slug": "warhammer-vermintide-2-shadows-over-b-genhafen", + "name": "Warhammer: Vermintide 2 - Shadows Over Bögenhafen", + "url": "/v1/games/warhammer-vermintide-2-shadows-over-b-genhafen" + }, + { + "slug": "warhammer-vermintide-2-sister-of-the-thorn", + "name": "Warhammer: Vermintide 2 - Sister of the Thorn", + "url": "/v1/games/warhammer-vermintide-2-sister-of-the-thorn" + }, + { + "slug": "warhammer-vermintide-2-sister-of-the-thorn-cosmetic-upgrade", + "name": "Warhammer: Vermintide 2 - Sister of the Thorn Cosmetic Upgrade", + "url": "/v1/games/warhammer-vermintide-2-sister-of-the-thorn-cosmetic-upgrade" + }, + { + "slug": "warhammer-vermintide-2-winds-of-magic", + "name": "Warhammer: Vermintide 2 - Winds of Magic", + "url": "/v1/games/warhammer-vermintide-2-winds-of-magic" + }, { "slug": "warhammer-vermintide-vr-hero-trials", "name": "Warhammer: Vermintide VR - Hero Trials", @@ -803681,6 +836471,11 @@ "name": "Warhead Circus", "url": "/v1/games/warhead-circus" }, + { + "slug": "warhound", + "name": "Warhound", + "url": "/v1/games/warhound" + }, { "slug": "warhounds", "name": "Warhounds", @@ -804031,6 +836826,16 @@ "name": "Warlords Battlecry: The Protectors of Etheria", "url": "/v1/games/warlords-battlecry-the-protectors-of-etheria" }, + { + "slug": "warlords-ds", + "name": "Warlords DS", + "url": "/v1/games/warlords-ds" + }, + { + "slug": "warlords-i-ii", + "name": "Warlords I + II", + "url": "/v1/games/warlords-i-ii" + }, { "slug": "warlords-ii", "name": "Warlords II", @@ -804166,6 +836971,11 @@ "name": "Warning Forever", "url": "/v1/games/warning-forever" }, + { + "slug": "warno-northag", + "name": "Warno: Northag", + "url": "/v1/games/warno-northag" + }, { "slug": "waronoi", "name": "Waronoi", @@ -804556,6 +837366,11 @@ "name": "Warrior Next", "url": "/v1/games/warrior-next" }, + { + "slug": "warrior-pack", + "name": "Warrior Pack", + "url": "/v1/games/warrior-pack" + }, { "slug": "warrior-paint-2005-goty-edition", "name": "Warrior Paint - 2005 GOTY Edition", @@ -804766,11 +837581,311 @@ "name": "Wars Across The World", "url": "/v1/games/wars-across-the-world" }, + { + "slug": "wars-across-the-world-bosworth-1485", + "name": "Wars Across The World: Bosworth 1485", + "url": "/v1/games/wars-across-the-world-bosworth-1485" + }, + { + "slug": "wars-across-the-world-bouvines-1214", + "name": "Wars Across The World: Bouvines 1214", + "url": "/v1/games/wars-across-the-world-bouvines-1214" + }, + { + "slug": "wars-across-the-world-burma-1942", + "name": "Wars Across The World: Burma 1942", + "url": "/v1/games/wars-across-the-world-burma-1942" + }, + { + "slug": "wars-across-the-world-columbus-1492", + "name": "Wars Across The World: Columbus 1492", + "url": "/v1/games/wars-across-the-world-columbus-1492" + }, + { + "slug": "wars-across-the-world-coral-sea-1942", + "name": "Wars Across The World: Coral Sea 1942", + "url": "/v1/games/wars-across-the-world-coral-sea-1942" + }, + { + "slug": "wars-across-the-world-cortenuova-1237", + "name": "Wars Across The World: Cortenuova 1237", + "url": "/v1/games/wars-across-the-world-cortenuova-1237" + }, + { + "slug": "wars-across-the-world-curupayti-1866", + "name": "Wars Across The World: Curupayti 1866", + "url": "/v1/games/wars-across-the-world-curupayti-1866" + }, + { + "slug": "wars-across-the-world-dublin-1916", + "name": "Wars Across The World: Dublin 1916", + "url": "/v1/games/wars-across-the-world-dublin-1916" + }, + { + "slug": "wars-across-the-world-eunus-133", + "name": "Wars Across The World: Eunus 133", + "url": "/v1/games/wars-across-the-world-eunus-133" + }, + { + "slug": "wars-across-the-world-finland-1808", + "name": "Wars Across The World: Finland 1808", + "url": "/v1/games/wars-across-the-world-finland-1808" + }, + { + "slug": "wars-across-the-world-franche-comt-1636", + "name": "Wars Across The World: Franche-Comté 1636", + "url": "/v1/games/wars-across-the-world-franche-comt-1636" + }, + { + "slug": "wars-across-the-world-galicia-1914", + "name": "Wars Across The World: Galicia 1914", + "url": "/v1/games/wars-across-the-world-galicia-1914" + }, + { + "slug": "wars-across-the-world-illyria-229", + "name": "Wars Across The World: Illyria 229", + "url": "/v1/games/wars-across-the-world-illyria-229" + }, + { + "slug": "wars-across-the-world-innsmouth-1928", + "name": "Wars Across The World: Innsmouth 1928", + "url": "/v1/games/wars-across-the-world-innsmouth-1928" + }, + { + "slug": "wars-across-the-world-kippur-1973", + "name": "Wars Across The World: Kippur 1973", + "url": "/v1/games/wars-across-the-world-kippur-1973" + }, + { + "slug": "wars-across-the-world-korea-1592", + "name": "Wars Across The World: Korea 1592", + "url": "/v1/games/wars-across-the-world-korea-1592" + }, + { + "slug": "wars-across-the-world-levant-1941", + "name": "Wars Across The World: Levant 1941", + "url": "/v1/games/wars-across-the-world-levant-1941" + }, + { + "slug": "wars-across-the-world-manchuria-1945", + "name": "Wars Across The World: Manchuria 1945", + "url": "/v1/games/wars-across-the-world-manchuria-1945" + }, + { + "slug": "wars-across-the-world-mexico-1519", + "name": "Wars Across The World: Mexico 1519", + "url": "/v1/games/wars-across-the-world-mexico-1519" + }, + { + "slug": "wars-across-the-world-nordwind-1945", + "name": "Wars Across The World: Nordwind 1945", + "url": "/v1/games/wars-across-the-world-nordwind-1945" + }, { "slug": "wars-across-the-world-russian-battles", "name": "Wars Across The World: Russian Battles", "url": "/v1/games/wars-across-the-world-russian-battles" }, + { + "slug": "wars-across-the-world-serbia-1914", + "name": "Wars Across The World: Serbia 1914", + "url": "/v1/games/wars-across-the-world-serbia-1914" + }, + { + "slug": "wars-across-the-world-soccer-1969", + "name": "Wars Across The World: Soccer 1969", + "url": "/v1/games/wars-across-the-world-soccer-1969" + }, + { + "slug": "wars-across-the-world-switzerland-1937", + "name": "Wars Across The World: Switzerland 1937", + "url": "/v1/games/wars-across-the-world-switzerland-1937" + }, + { + "slug": "wars-across-the-world-uganda-1979", + "name": "Wars Across The World: Uganda 1979", + "url": "/v1/games/wars-across-the-world-uganda-1979" + }, + { + "slug": "wars-across-the-world-zulu-1879", + "name": "Wars Across The World: Zulu 1879", + "url": "/v1/games/wars-across-the-world-zulu-1879" + }, + { + "slug": "wars-across-the-world-agathocles-312", + "name": "Wars Across the World: Agathocles 312", + "url": "/v1/games/wars-across-the-world-agathocles-312" + }, + { + "slug": "wars-across-the-world-armada-1588", + "name": "Wars Across the World: Armada 1588", + "url": "/v1/games/wars-across-the-world-armada-1588" + }, + { + "slug": "wars-across-the-world-austerlitz-1805", + "name": "Wars Across the World: Austerlitz 1805", + "url": "/v1/games/wars-across-the-world-austerlitz-1805" + }, + { + "slug": "wars-across-the-world-bull-run-1861", + "name": "Wars Across the World: Bull Run 1861", + "url": "/v1/games/wars-across-the-world-bull-run-1861" + }, + { + "slug": "wars-across-the-world-byzantium-1116", + "name": "Wars Across the World: Byzantium 1116", + "url": "/v1/games/wars-across-the-world-byzantium-1116" + }, + { + "slug": "wars-across-the-world-caesar-54", + "name": "Wars Across the World: Caesar 54", + "url": "/v1/games/wars-across-the-world-caesar-54" + }, + { + "slug": "wars-across-the-world-caesar-56", + "name": "Wars Across the World: Caesar 56", + "url": "/v1/games/wars-across-the-world-caesar-56" + }, + { + "slug": "wars-across-the-world-caesar-57", + "name": "Wars Across the World: Caesar 57", + "url": "/v1/games/wars-across-the-world-caesar-57" + }, + { + "slug": "wars-across-the-world-caesar-58", + "name": "Wars Across the World: Caesar 58", + "url": "/v1/games/wars-across-the-world-caesar-58" + }, + { + "slug": "wars-across-the-world-carrhae-53", + "name": "Wars Across the World: Carrhae 53", + "url": "/v1/games/wars-across-the-world-carrhae-53" + }, + { + "slug": "wars-across-the-world-congo-1964", + "name": "Wars Across the World: Congo 1964", + "url": "/v1/games/wars-across-the-world-congo-1964" + }, + { + "slug": "wars-across-the-world-estonia-1918", + "name": "Wars Across the World: Estonia 1918", + "url": "/v1/games/wars-across-the-world-estonia-1918" + }, + { + "slug": "wars-across-the-world-finland-1918", + "name": "Wars Across the World: Finland 1918", + "url": "/v1/games/wars-across-the-world-finland-1918" + }, + { + "slug": "wars-across-the-world-fornovo-1495", + "name": "Wars Across the World: Fornovo 1495", + "url": "/v1/games/wars-across-the-world-fornovo-1495" + }, + { + "slug": "wars-across-the-world-gandamak1842", + "name": "Wars Across the World: Gandamak1842", + "url": "/v1/games/wars-across-the-world-gandamak1842" + }, + { + "slug": "wars-across-the-world-gulf-1990", + "name": "Wars Across the World: Gulf 1990", + "url": "/v1/games/wars-across-the-world-gulf-1990" + }, + { + "slug": "wars-across-the-world-hamilkar-264", + "name": "Wars Across the World: Hamilkar 264", + "url": "/v1/games/wars-across-the-world-hamilkar-264" + }, + { + "slug": "wars-across-the-world-kavkaz-1804", + "name": "Wars Across the World: Kavkaz 1804", + "url": "/v1/games/wars-across-the-world-kavkaz-1804" + }, + { + "slug": "wars-across-the-world-kentucky-1861", + "name": "Wars Across the World: Kentucky 1861", + "url": "/v1/games/wars-across-the-world-kentucky-1861" + }, + { + "slug": "wars-across-the-world-koenigsberg-1945", + "name": "Wars Across the World: Koenigsberg 1945", + "url": "/v1/games/wars-across-the-world-koenigsberg-1945" + }, + { + "slug": "wars-across-the-world-korea-1950", + "name": "Wars Across the World: Korea 1950", + "url": "/v1/games/wars-across-the-world-korea-1950" + }, + { + "slug": "wars-across-the-world-malaya-1941", + "name": "Wars Across the World: Malaya 1941", + "url": "/v1/games/wars-across-the-world-malaya-1941" + }, + { + "slug": "wars-across-the-world-mali-2012", + "name": "Wars Across the World: Mali 2012", + "url": "/v1/games/wars-across-the-world-mali-2012" + }, + { + "slug": "wars-across-the-world-missouri-1861", + "name": "Wars Across the World: Missouri 1861", + "url": "/v1/games/wars-across-the-world-missouri-1861" + }, + { + "slug": "wars-across-the-world-morat-1476", + "name": "Wars Across the World: Morat 1476", + "url": "/v1/games/wars-across-the-world-morat-1476" + }, + { + "slug": "wars-across-the-world-normandy-1944", + "name": "Wars Across the World: Normandy 1944", + "url": "/v1/games/wars-across-the-world-normandy-1944" + }, + { + "slug": "wars-across-the-world-persia-1856", + "name": "Wars Across the World: Persia 1856", + "url": "/v1/games/wars-across-the-world-persia-1856" + }, + { + "slug": "wars-across-the-world-rhodesia-1972", + "name": "Wars Across the World: Rhodesia 1972", + "url": "/v1/games/wars-across-the-world-rhodesia-1972" + }, + { + "slug": "wars-across-the-world-sepoy-1857", + "name": "Wars Across the World: Sepoy 1857", + "url": "/v1/games/wars-across-the-world-sepoy-1857" + }, + { + "slug": "wars-across-the-world-sicily-1943", + "name": "Wars Across the World: Sicily 1943", + "url": "/v1/games/wars-across-the-world-sicily-1943" + }, + { + "slug": "wars-across-the-world-spain-1936", + "name": "Wars Across the World: Spain 1936", + "url": "/v1/games/wars-across-the-world-spain-1936" + }, + { + "slug": "wars-across-the-world-tannenberg-1914", + "name": "Wars Across the World: Tannenberg 1914", + "url": "/v1/games/wars-across-the-world-tannenberg-1914" + }, + { + "slug": "wars-across-the-world-waterloo-1815", + "name": "Wars Across the World: Waterloo 1815", + "url": "/v1/games/wars-across-the-world-waterloo-1815" + }, + { + "slug": "wars-across-the-world-west-virginia-1861", + "name": "Wars Across the World: West Virginia 1861", + "url": "/v1/games/wars-across-the-world-west-virginia-1861" + }, + { + "slug": "wars-across-the-world-bulge-1944", + "name": "Wars across the World: Bulge 1944", + "url": "/v1/games/wars-across-the-world-bulge-1944" + }, { "slug": "wars-and-battles-normandy", "name": "Wars and Battles: Normandy", @@ -805036,6 +838151,11 @@ "name": "Wash Card", "url": "/v1/games/wash-card" }, + { + "slug": "wash-simulator-cash-boost-dlc", + "name": "Wash Simulator - Cash Boost DLC", + "url": "/v1/games/wash-simulator-cash-boost-dlc" + }, { "slug": "wash-simulator-clean-garage-house-cars-business-tycoons", "name": "Wash Simulator - Clean Garage, House, Cars Business Tycoons", @@ -805296,11 +838416,26 @@ "name": "Watch Dogs 2", "url": "/v1/games/watch-dogs-2" }, + { + "slug": "watch-dogs-complete-edition", + "name": "Watch Dogs Complete Edition", + "url": "/v1/games/watch-dogs-complete-edition" + }, + { + "slug": "watch-dogs-bad-blood", + "name": "Watch Dogs: Bad Blood", + "url": "/v1/games/watch-dogs-bad-blood" + }, { "slug": "watch-dogs-legion", "name": "Watch Dogs: Legion", "url": "/v1/games/watch-dogs-legion" }, + { + "slug": "watch-dogs-legion-bloodline", + "name": "Watch Dogs: Legion - Bloodline", + "url": "/v1/games/watch-dogs-legion-bloodline" + }, { "slug": "watch-me-jump", "name": "Watch Me Jump", @@ -806051,6 +839186,11 @@ "name": "WaxHeart", "url": "/v1/games/waxheart" }, + { + "slug": "waxweb", + "name": "Waxweb", + "url": "/v1/games/waxweb" + }, { "slug": "waxworks-q7975732", "name": "Waxworks", @@ -806196,6 +839336,11 @@ "name": "Way of the Hunter", "url": "/v1/games/way-of-the-hunter" }, + { + "slug": "way-of-the-hunter-elite-edition", + "name": "Way of the Hunter: Elite Edition", + "url": "/v1/games/way-of-the-hunter-elite-edition" + }, { "slug": "way-of-the-orb", "name": "Way of the Orb", @@ -806661,6 +839806,11 @@ "name": "We Happy Few - Soundtrack and Digital Goods Bundle", "url": "/v1/games/we-happy-few-soundtrack-and-digital-goods-bundle" }, + { + "slug": "we-happy-few-we-all-fall-down", + "name": "We Happy Few: We All Fall Down", + "url": "/v1/games/we-happy-few-we-all-fall-down" + }, { "slug": "we-harvest-shadows", "name": "We Harvest Shadows", @@ -808746,6 +841896,11 @@ "name": "Westward 1847", "url": "/v1/games/westward-1847" }, + { + "slug": "westward-collection", + "name": "Westward Collection", + "url": "/v1/games/westward-collection" + }, { "slug": "westward-journey-3", "name": "Westward Journey 3", @@ -808991,6 +842146,11 @@ "name": "Whale's Voyage", "url": "/v1/games/whale-s-voyage" }, + { + "slug": "whale-s-voyage-2-cd", + "name": "Whale's Voyage 2 CD", + "url": "/v1/games/whale-s-voyage-2-cd" + }, { "slug": "whale-s-voyage-ii-die-bermacht", "name": "Whale's Voyage II: Die Übermacht", @@ -810461,6 +843621,11 @@ "name": "Where's my kitty", "url": "/v1/games/where-s-my-kitty" }, + { + "slug": "where-s-the-baby", + "name": "Where's the Baby!", + "url": "/v1/games/where-s-the-baby" + }, { "slug": "where-s-the-bathroom", "name": "Where's the Bathroom!?!", @@ -811386,6 +844551,11 @@ "name": "White Knuckle", "url": "/v1/games/white-knuckle" }, + { + "slug": "white-knuckle-demo", + "name": "White Knuckle Demo", + "url": "/v1/games/white-knuckle-demo" + }, { "slug": "white-lavender", "name": "White Lavender", @@ -812596,6 +845766,11 @@ "name": "WikiAsteroids", "url": "/v1/games/wikiasteroids" }, + { + "slug": "wikidata-game", + "name": "Wikidata Game", + "url": "/v1/games/wikidata-game" + }, { "slug": "wikidata-guessr", "name": "Wikidata Guessr", @@ -812631,6 +845806,11 @@ "name": "Wild", "url": "/v1/games/wild" }, + { + "slug": "wild-adventure-pinball", + "name": "Wild & Adventure Pinball", + "url": "/v1/games/wild-adventure-pinball" + }, { "slug": "wild-9", "name": "Wild 9", @@ -813931,6 +847111,11 @@ "name": "William's dad's secret", "url": "/v1/games/william-s-dad-s-secret" }, + { + "slug": "williams-arcade-s-greatest-hits", + "name": "Williams Arcade's Greatest Hits", + "url": "/v1/games/williams-arcade-s-greatest-hits" + }, { "slug": "williams-f1-team-driver", "name": "Williams F1 Team Driver", @@ -814121,16 +847306,36 @@ "name": "WinBack 2: Project Poseidon", "url": "/v1/games/winback-2-project-poseidon" }, + { + "slug": "windoom-q67221120", + "name": "WinDoom", + "url": "/v1/games/windoom-q67221120" + }, + { + "slug": "windoom", + "name": "WinDoom", + "url": "/v1/games/windoom" + }, { "slug": "winkings", "name": "WinKings", "url": "/v1/games/winkings" }, + { + "slug": "winmbf", + "name": "WinMBF", + "url": "/v1/games/winmbf" + }, { "slug": "winpolis", "name": "WinPolis", "url": "/v1/games/winpolis" }, + { + "slug": "winquake", + "name": "WinQuake", + "url": "/v1/games/winquake" + }, { "slug": "winbrick", "name": "Winbrick", @@ -814591,6 +847796,11 @@ "name": "Wing Commander Flat Universe", "url": "/v1/games/wing-commander-flat-universe" }, + { + "slug": "wing-commander-ii-deluxe-edition", + "name": "Wing Commander II: Deluxe Edition", + "url": "/v1/games/wing-commander-ii-deluxe-edition" + }, { "slug": "wing-commander-ii-vengeance-of-the-kilrathi", "name": "Wing Commander II: Vengeance of the Kilrathi", @@ -814621,11 +847831,21 @@ "name": "Wing Commander: Armada", "url": "/v1/games/wing-commander-armada" }, + { + "slug": "wing-commander-deluxe-edition", + "name": "Wing Commander: Deluxe Edition", + "url": "/v1/games/wing-commander-deluxe-edition" + }, { "slug": "wing-commander-privateer", "name": "Wing Commander: Privateer", "url": "/v1/games/wing-commander-privateer" }, + { + "slug": "wing-commander-privateer-speech-pack", + "name": "Wing Commander: Privateer - Speech Pack", + "url": "/v1/games/wing-commander-privateer-speech-pack" + }, { "slug": "wing-commander-prophecy", "name": "Wing Commander: Prophecy", @@ -814636,6 +847856,11 @@ "name": "Wing Commander: Secret Ops", "url": "/v1/games/wing-commander-secret-ops" }, + { + "slug": "wing-commander-the-kilrathi-saga", + "name": "Wing Commander: The Kilrathi Saga", + "url": "/v1/games/wing-commander-the-kilrathi-saga" + }, { "slug": "wing-commander-the-secret-missions", "name": "Wing Commander: The Secret Missions", @@ -814886,6 +848111,11 @@ "name": "Wings of Power II: WWII Fighters", "url": "/v1/games/wings-of-power-ii-wwii-fighters" }, + { + "slug": "wings-of-power-ii-wwii-fighters-special-edition", + "name": "Wings of Power II: WWII Fighters Special Edition", + "url": "/v1/games/wings-of-power-ii-wwii-fighters-special-edition" + }, { "slug": "wings-of-power-wwii-heavy-bombers-and-jets", "name": "Wings of Power: WWII Heavy Bombers and Jets", @@ -815686,6 +848916,11 @@ "name": "Winzer Deluxe", "url": "/v1/games/winzer-deluxe" }, + { + "slug": "wipeout-pure-stealth-edition", + "name": "WipEout Pure: Stealth Edition", + "url": "/v1/games/wipeout-pure-stealth-edition" + }, { "slug": "wipe-factor", "name": "Wipe Factor", @@ -815756,6 +848991,16 @@ "name": "Wipeout HD", "url": "/v1/games/wipeout-hd" }, + { + "slug": "wipeout-hd-fury", + "name": "Wipeout HD Fury", + "url": "/v1/games/wipeout-hd-fury" + }, + { + "slug": "wipeout-omega-collection", + "name": "Wipeout Omega Collection", + "url": "/v1/games/wipeout-omega-collection" + }, { "slug": "wipeout-pulse", "name": "Wipeout Pulse", @@ -816646,6 +849891,11 @@ "name": "Witches and Butchers", "url": "/v1/games/witches-and-butchers" }, + { + "slug": "witches-and-wieners-pack", + "name": "Witches and Wieners Pack", + "url": "/v1/games/witches-and-wieners-pack" + }, { "slug": "witches-of-the-fourth-multiplayer", "name": "Witches of the Fourth Multiplayer", @@ -817956,6 +851206,11 @@ "name": "Wizzy's Quest", "url": "/v1/games/wizzy-s-quest" }, + { + "slug": "wo-long-fallen-dynasty-digital-deluxe-edition", + "name": "Wo Long: Fallen Dynasty Digital Deluxe Edition", + "url": "/v1/games/wo-long-fallen-dynasty-digital-deluxe-edition" + }, { "slug": "women-in-science", "name": "WoMen in Science", @@ -818136,6 +851391,11 @@ "name": "Wolf Night", "url": "/v1/games/wolf-night" }, + { + "slug": "wolf-pack", + "name": "Wolf Pack", + "url": "/v1/games/wolf-pack" + }, { "slug": "wolf-peak-the-case-of-ruth-choi", "name": "Wolf Peak: The Case of Ruth Choi", @@ -818286,6 +851546,11 @@ "name": "WolfenDoom: Blade of Agony", "url": "/v1/games/wolfendoom-blade-of-agony" }, + { + "slug": "wolfenstein", + "name": "Wolfenstein", + "url": "/v1/games/wolfenstein" + }, { "slug": "wolfenstein-1-d", "name": "Wolfenstein 1-D", @@ -818331,6 +851596,11 @@ "name": "Wolfenstein: Enemy Territory", "url": "/v1/games/wolfenstein-enemy-territory" }, + { + "slug": "wolfenstein-resistance-bundle", + "name": "Wolfenstein: Resistance Bundle", + "url": "/v1/games/wolfenstein-resistance-bundle" + }, { "slug": "wolfenstein-the-new-order", "name": "Wolfenstein: The New Order", @@ -818341,6 +851611,11 @@ "name": "Wolfenstein: The Old Blood", "url": "/v1/games/wolfenstein-the-old-blood" }, + { + "slug": "wolfenstein-the-two-pack", + "name": "Wolfenstein: The Two-Pack", + "url": "/v1/games/wolfenstein-the-two-pack" + }, { "slug": "wolfenstein-youngblood", "name": "Wolfenstein: Youngblood", @@ -818426,6 +851701,11 @@ "name": "Wolfstar Adventures in the Inu System", "url": "/v1/games/wolfstar-adventures-in-the-inu-system" }, + { + "slug": "wolfstone-3d", + "name": "Wolfstone 3D", + "url": "/v1/games/wolfstone-3d" + }, { "slug": "wolfstride", "name": "Wolfstride", @@ -818706,6 +851986,11 @@ "name": "Wonder Wickets", "url": "/v1/games/wonder-wickets" }, + { + "slug": "wonder-woman", + "name": "Wonder Woman", + "url": "/v1/games/wonder-woman" + }, { "slug": "wonder-wonder-punch", "name": "Wonder Wonder Punch", @@ -819271,6 +852556,11 @@ "name": "Woof Blaster", "url": "/v1/games/woof-blaster" }, + { + "slug": "woof", + "name": "Woof!", + "url": "/v1/games/woof" + }, { "slug": "woofchat", "name": "WoofChat", @@ -819911,6 +853201,11 @@ "name": "Work Wrecker", "url": "/v1/games/work-wrecker" }, + { + "slug": "work-at-a-pizza-place", + "name": "Work at a Pizza Place", + "url": "/v1/games/work-at-a-pizza-place" + }, { "slug": "work-from-home", "name": "Work from Home", @@ -820561,6 +853856,11 @@ "name": "World Heroes 2 Jet", "url": "/v1/games/world-heroes-2-jet" }, + { + "slug": "world-heroes-anthology", + "name": "World Heroes Anthology", + "url": "/v1/games/world-heroes-anthology" + }, { "slug": "world-heroes-perfect", "name": "World Heroes Perfect", @@ -821176,6 +854476,11 @@ "name": "World War 2 Zombie Attack VR Coronavirus Simulator", "url": "/v1/games/world-war-2-zombie-attack-vr-coronavirus-simulator" }, + { + "slug": "world-war-2-road-to-victory", + "name": "World War 2: Road to Victory", + "url": "/v1/games/world-war-2-road-to-victory" + }, { "slug": "world-war-2-strategy-simulator", "name": "World War 2: Strategy Simulator", @@ -821296,6 +854601,11 @@ "name": "World War One", "url": "/v1/games/world-war-one" }, + { + "slug": "world-war-online", + "name": "World War Online", + "url": "/v1/games/world-war-online" + }, { "slug": "world-war-party-game-of-trump", "name": "World War Party: Game of Trump", @@ -821401,6 +854711,11 @@ "name": "World in Conflict", "url": "/v1/games/world-in-conflict" }, + { + "slug": "world-in-conflict-soviet-assault", + "name": "World in Conflict: Soviet Assault", + "url": "/v1/games/world-in-conflict-soviet-assault" + }, { "slug": "world-in-fire", "name": "World in fire", @@ -821476,6 +854791,11 @@ "name": "World of DASM, DASM Spell Quest", "url": "/v1/games/world-of-dasm-dasm-spell-quest" }, + { + "slug": "world-of-darkness-online", + "name": "World of Darkness Online", + "url": "/v1/games/world-of-darkness-online" + }, { "slug": "world-of-darkness-preludes-vampire-and-mage", "name": "World of Darkness Preludes: Vampire and Mage", @@ -821691,6 +855011,11 @@ "name": "World of Retailing", "url": "/v1/games/world-of-retailing" }, + { + "slug": "world-of-rollercoaster-tycoon", + "name": "World of RollerCoaster Tycoon", + "url": "/v1/games/world-of-rollercoaster-tycoon" + }, { "slug": "world-of-rune", "name": "World of Rune", @@ -821801,6 +855126,11 @@ "name": "World of Tennis: Roaring ’20s", "url": "/v1/games/world-of-tennis-roaring-20s" }, + { + "slug": "world-of-tides", + "name": "World of Tides", + "url": "/v1/games/world-of-tides" + }, { "slug": "world-of-titans-mmorpg", "name": "World of Titans MMORPG", @@ -821846,16 +855176,76 @@ "name": "World of Warcraft: Battle for Azeroth", "url": "/v1/games/world-of-warcraft-battle-for-azeroth" }, + { + "slug": "world-of-warcraft-cataclysm", + "name": "World of Warcraft: Cataclysm", + "url": "/v1/games/world-of-warcraft-cataclysm" + }, { "slug": "world-of-warcraft-cataclysm-classic", "name": "World of Warcraft: Cataclysm Classic", "url": "/v1/games/world-of-warcraft-cataclysm-classic" }, + { + "slug": "world-of-warcraft-dragonflight", + "name": "World of Warcraft: Dragonflight", + "url": "/v1/games/world-of-warcraft-dragonflight" + }, + { + "slug": "world-of-warcraft-free-trial", + "name": "World of Warcraft: Free Trial", + "url": "/v1/games/world-of-warcraft-free-trial" + }, + { + "slug": "world-of-warcraft-legion", + "name": "World of Warcraft: Legion", + "url": "/v1/games/world-of-warcraft-legion" + }, + { + "slug": "world-of-warcraft-midnight", + "name": "World of Warcraft: Midnight", + "url": "/v1/games/world-of-warcraft-midnight" + }, + { + "slug": "world-of-warcraft-mists-of-pandaria", + "name": "World of Warcraft: Mists of Pandaria", + "url": "/v1/games/world-of-warcraft-mists-of-pandaria" + }, { "slug": "world-of-warcraft-mists-of-pandaria-classic", "name": "World of Warcraft: Mists of Pandaria Classic", "url": "/v1/games/world-of-warcraft-mists-of-pandaria-classic" }, + { + "slug": "world-of-warcraft-shadowlands", + "name": "World of Warcraft: Shadowlands", + "url": "/v1/games/world-of-warcraft-shadowlands" + }, + { + "slug": "world-of-warcraft-the-burning-crusade", + "name": "World of Warcraft: The Burning Crusade", + "url": "/v1/games/world-of-warcraft-the-burning-crusade" + }, + { + "slug": "world-of-warcraft-the-last-titan", + "name": "World of Warcraft: The Last Titan", + "url": "/v1/games/world-of-warcraft-the-last-titan" + }, + { + "slug": "world-of-warcraft-the-war-within", + "name": "World of Warcraft: The War Within", + "url": "/v1/games/world-of-warcraft-the-war-within" + }, + { + "slug": "world-of-warcraft-warlords-of-draenor", + "name": "World of Warcraft: Warlords of Draenor", + "url": "/v1/games/world-of-warcraft-warlords-of-draenor" + }, + { + "slug": "world-of-warcraft-wrath-of-the-lich-king", + "name": "World of Warcraft: Wrath of the Lich King", + "url": "/v1/games/world-of-warcraft-wrath-of-the-lich-king" + }, { "slug": "world-of-warcraft-wrath-of-the-lich-king-classic", "name": "World of Warcraft: Wrath of the Lich King Classic", @@ -822376,6 +855766,16 @@ "name": "Worms Blast", "url": "/v1/games/worms-blast" }, + { + "slug": "worms-clan-wars-4-pack", + "name": "Worms Clan Wars 4-Pack", + "url": "/v1/games/worms-clan-wars-4-pack" + }, + { + "slug": "worms-collection", + "name": "Worms Collection", + "url": "/v1/games/worms-collection" + }, { "slug": "worms-crazy-golf", "name": "Worms Crazy Golf", @@ -822411,11 +855811,26 @@ "name": "Worms Reloaded", "url": "/v1/games/worms-reloaded" }, + { + "slug": "worms-reloaded-game-of-the-year-edition", + "name": "Worms Reloaded: Game of the Year Edition", + "url": "/v1/games/worms-reloaded-game-of-the-year-edition" + }, { "slug": "worms-revolution", "name": "Worms Revolution", "url": "/v1/games/worms-revolution" }, + { + "slug": "worms-revolution-4-pack", + "name": "Worms Revolution 4-pack", + "url": "/v1/games/worms-revolution-4-pack" + }, + { + "slug": "worms-revolution-gold-edition", + "name": "Worms Revolution: Gold Edition", + "url": "/v1/games/worms-revolution-gold-edition" + }, { "slug": "worms-rumble", "name": "Worms Rumble", @@ -822426,6 +855841,21 @@ "name": "Worms Ultimate Mayhem", "url": "/v1/games/worms-ultimate-mayhem" }, + { + "slug": "worms-ultimate-mayhem-deluxe-edition", + "name": "Worms Ultimate Mayhem - Deluxe Edition", + "url": "/v1/games/worms-ultimate-mayhem-deluxe-edition" + }, + { + "slug": "worms-ultimate-mayhem-four-pack", + "name": "Worms Ultimate Mayhem - Four Pack", + "url": "/v1/games/worms-ultimate-mayhem-four-pack" + }, + { + "slug": "worms-united", + "name": "Worms United", + "url": "/v1/games/worms-united" + }, { "slug": "worms-w-m-d", "name": "Worms W.M.D", @@ -822576,6 +856006,11 @@ "name": "Worthy", "url": "/v1/games/worthy" }, + { + "slug": "wotam", + "name": "Wotam", + "url": "/v1/games/wotam" + }, { "slug": "woten-dx-traveller-s-dream", "name": "Woten DX - Traveller's Dream", @@ -822991,6 +856426,11 @@ "name": "Wrestle Angels", "url": "/v1/games/wrestle-angels" }, + { + "slug": "wrestle-angels-2-top-eventer-omake-disk", + "name": "Wrestle Angels 2 - Top Eventer Omake Disk", + "url": "/v1/games/wrestle-angels-2-top-eventer-omake-disk" + }, { "slug": "wrestle-angels-2-top-eventer", "name": "Wrestle Angels 2: Top Eventer", @@ -823001,6 +856441,16 @@ "name": "Wrestle Angels 3", "url": "/v1/games/wrestle-angels-3" }, + { + "slug": "wrestle-angels-3-omake-disk", + "name": "Wrestle Angels 3 Omake Disk", + "url": "/v1/games/wrestle-angels-3-omake-disk" + }, + { + "slug": "wrestle-angels-omake-disk", + "name": "Wrestle Angels Omake Disk", + "url": "/v1/games/wrestle-angels-omake-disk" + }, { "slug": "wrestle-angels-special-mou-hitori-no-top-eventer", "name": "Wrestle Angels Special: Mou Hitori no Top Eventer", @@ -823401,6 +856851,11 @@ "name": "Wurmus", "url": "/v1/games/wurmus" }, + { + "slug": "wurmz", + "name": "Wurmz", + "url": "/v1/games/wurmz" + }, { "slug": "wurroom", "name": "Wurroom", @@ -823726,6 +857181,16 @@ "name": "X-COM", "url": "/v1/games/x-com" }, + { + "slug": "x-com-collection", + "name": "X-COM Collection", + "url": "/v1/games/x-com-collection" + }, + { + "slug": "x-com-alliance", + "name": "X-COM: Alliance", + "url": "/v1/games/x-com-alliance" + }, { "slug": "x-com-enforcer", "name": "X-COM: Enforcer", @@ -824166,11 +857631,26 @@ "name": "X3: Terran Conflict", "url": "/v1/games/x3-terran-conflict" }, + { + "slug": "x4-cradle-of-humanity", + "name": "X4: Cradle of Humanity", + "url": "/v1/games/x4-cradle-of-humanity" + }, { "slug": "x4-foundations", "name": "X4: Foundations", "url": "/v1/games/x4-foundations" }, + { + "slug": "x4-split-vendetta", + "name": "X4: Split Vendetta", + "url": "/v1/games/x4-split-vendetta" + }, + { + "slug": "x4-tides-of-avarice", + "name": "X4: Tides of Avarice", + "url": "/v1/games/x4-tides-of-avarice" + }, { "slug": "x8", "name": "X8", @@ -824181,6 +857661,11 @@ "name": "X: Beyond the Frontier", "url": "/v1/games/x-beyond-the-frontier" }, + { + "slug": "x-gold", + "name": "X: Gold", + "url": "/v1/games/x-gold" + }, { "slug": "xanarthraxia", "name": "XANARTHRAXIA", @@ -824236,6 +857721,26 @@ "name": "XCOM 2", "url": "/v1/games/xcom-2" }, + { + "slug": "xcom-2-collection", + "name": "XCOM 2 Collection", + "url": "/v1/games/xcom-2-collection" + }, + { + "slug": "xcom-2-digital-deluxe-edition", + "name": "XCOM 2: Digital Deluxe Edition", + "url": "/v1/games/xcom-2-digital-deluxe-edition" + }, + { + "slug": "xcom-2-reinforcement-pack", + "name": "XCOM 2: Reinforcement Pack", + "url": "/v1/games/xcom-2-reinforcement-pack" + }, + { + "slug": "xcom-2-war-of-the-chosen", + "name": "XCOM 2: War of the Chosen", + "url": "/v1/games/xcom-2-war-of-the-chosen" + }, { "slug": "xcom-legends", "name": "XCOM Legends", @@ -824251,6 +857756,11 @@ "name": "XCOM: Enemy Unknown", "url": "/v1/games/xcom-enemy-unknown" }, + { + "slug": "xcom-enemy-unknown-complete-pack", + "name": "XCOM: Enemy Unknown Complete Pack", + "url": "/v1/games/xcom-enemy-unknown-complete-pack" + }, { "slug": "xcom-enemy-unknown-plus", "name": "XCOM: Enemy Unknown: Plus", @@ -824271,6 +857781,11 @@ "name": "XCavalypse", "url": "/v1/games/xcavalypse" }, + { + "slug": "xd-8001", + "name": "XD 8001", + "url": "/v1/games/xd-8001" + }, { "slug": "xd-love-dance-music", "name": "XD: Love. Dance. Music", @@ -824286,6 +857801,11 @@ "name": "XDefiant", "url": "/v1/games/xdefiant" }, + { + "slug": "xdoom", + "name": "XDoom", + "url": "/v1/games/xdoom" + }, { "slug": "xearz", "name": "XEARZ", @@ -824811,6 +858331,11 @@ "name": "Xanadu Next", "url": "/v1/games/xanadu-next" }, + { + "slug": "xanadu-scenario-ii", + "name": "Xanadu Scenario II", + "url": "/v1/games/xanadu-scenario-ii" + }, { "slug": "xanagrams", "name": "Xanagrams", @@ -824891,6 +858416,11 @@ "name": "Xarom", "url": "/v1/games/xarom" }, + { + "slug": "xash3d-fwgs", + "name": "Xash3D FWGS", + "url": "/v1/games/xash3d-fwgs" + }, { "slug": "xatax", "name": "Xatax", @@ -824916,6 +858446,11 @@ "name": "Xblaze Code: Embryo", "url": "/v1/games/xblaze-code-embryo" }, + { + "slug": "xbox-exhibition-disks", + "name": "Xbox Exhibition disks", + "url": "/v1/games/xbox-exhibition-disks" + }, { "slug": "xbox-fitness", "name": "Xbox Fitness", @@ -825116,6 +858651,11 @@ "name": "Xenoblade Chronicles 2", "url": "/v1/games/xenoblade-chronicles-2" }, + { + "slug": "xenoblade-chronicles-2-nintendo-switch-2-edition-upgrade-pack", + "name": "Xenoblade Chronicles 2 – Nintendo Switch 2 Edition Upgrade Pack", + "url": "/v1/games/xenoblade-chronicles-2-nintendo-switch-2-edition-upgrade-pack" + }, { "slug": "xenoblade-chronicles-2-torna-the-golden-country", "name": "Xenoblade Chronicles 2: Torna – The Golden Country", @@ -825126,6 +858666,11 @@ "name": "Xenoblade Chronicles 3", "url": "/v1/games/xenoblade-chronicles-3" }, + { + "slug": "xenoblade-chronicles-3-nintendo-switch-2-edition-upgrade-pack", + "name": "Xenoblade Chronicles 3 – Nintendo Switch 2 Edition Upgrade Pack", + "url": "/v1/games/xenoblade-chronicles-3-nintendo-switch-2-edition-upgrade-pack" + }, { "slug": "xenoblade-chronicles-3-future-redeemed", "name": "Xenoblade Chronicles 3: Future Redeemed", @@ -825151,6 +858696,11 @@ "name": "Xenoblade Chronicles: Definitive Edition", "url": "/v1/games/xenoblade-chronicles-definitive-edition" }, + { + "slug": "xenoblade-chronicles-definitive-edition-nintendo-switch-2-edition-upgrade-pack", + "name": "Xenoblade Chronicles: Definitive Edition – Nintendo Switch 2 Edition Upgrade Pack", + "url": "/v1/games/xenoblade-chronicles-definitive-edition-nintendo-switch-2-edition-upgrade-pack" + }, { "slug": "xenobox-vr", "name": "Xenobox VR", @@ -826051,6 +859601,11 @@ "name": "Xyzolog", "url": "/v1/games/xyzolog" }, + { + "slug": "x-albion-prelude", + "name": "X³: Albion Prelude", + "url": "/v1/games/x-albion-prelude" + }, { "slug": "y-o-u", "name": "Y O U", @@ -826806,6 +860361,11 @@ "name": "Yamafuda! Summit", "url": "/v1/games/yamafuda-summit" }, + { + "slug": "yamagi-quake-ii", + "name": "Yamagi Quake II", + "url": "/v1/games/yamagi-quake-ii" + }, { "slug": "yamaha-supercross", "name": "Yamaha Supercross", @@ -827631,6 +861191,11 @@ "name": "Yeti's Parole Officer", "url": "/v1/games/yeti-s-parole-officer" }, + { + "slug": "yeti3ds", + "name": "Yeti3DS", + "url": "/v1/games/yeti3ds" + }, { "slug": "yetifree", "name": "YetiFree", @@ -827801,6 +861366,11 @@ "name": "Ynglet: Prologue", "url": "/v1/games/ynglet-prologue" }, + { + "slug": "yo-frankie", + "name": "Yo Frankie!", + "url": "/v1/games/yo-frankie" + }, { "slug": "yo-my-yo", "name": "Yo My Yo!", @@ -828026,6 +861596,11 @@ "name": "Yogurting", "url": "/v1/games/yogurting" }, + { + "slug": "yogventures", + "name": "Yogventures!", + "url": "/v1/games/yogventures" + }, { "slug": "yohane-the-parhelion-blaze-in-the-deepblue", "name": "Yohane the Parhelion: Blaze in the Deepblue", @@ -828866,16 +862441,31 @@ "name": "You Don't Know Jack: 5th Dementia", "url": "/v1/games/you-don-t-know-jack-5th-dementia" }, + { + "slug": "you-don-t-know-jack-jumbo", + "name": "You Don't Know Jack: Jumbo", + "url": "/v1/games/you-don-t-know-jack-jumbo" + }, { "slug": "you-don-t-know-jack-offline", "name": "You Don't Know Jack: Offline", "url": "/v1/games/you-don-t-know-jack-offline" }, + { + "slug": "you-don-t-know-jack-the-irreverent-collection", + "name": "You Don't Know Jack: The Irreverent Collection", + "url": "/v1/games/you-don-t-know-jack-the-irreverent-collection" + }, { "slug": "you-don-t-know-jack-the-netshow", "name": "You Don't Know Jack: The Netshow", "url": "/v1/games/you-don-t-know-jack-the-netshow" }, + { + "slug": "you-don-t-know-jack-xxl-x-tra-x-tra-large", + "name": "You Don’t Know Jack XXL: X-Tra X-Tra Large", + "url": "/v1/games/you-don-t-know-jack-xxl-x-tra-x-tra-large" + }, { "slug": "you-draw-i-guess", "name": "You Draw, I Guess", @@ -829196,6 +862786,11 @@ "name": "You're Not Special", "url": "/v1/games/you-re-not-special" }, + { + "slug": "you-re-under-arrest", + "name": "You're Under Arrest!", + "url": "/v1/games/you-re-under-arrest" + }, { "slug": "you-re-a-dad", "name": "You're a dad", @@ -829856,6 +863451,11 @@ "name": "Ys Eternal VE", "url": "/v1/games/ys-eternal-ve" }, + { + "slug": "ys-i-ii", + "name": "Ys I & II", + "url": "/v1/games/ys-i-ii" + }, { "slug": "ys-i-ii-chronicles-q126974316", "name": "Ys I & II Chronicles", @@ -831116,6 +864716,11 @@ "name": "Z Runaway", "url": "/v1/games/z-runaway" }, + { + "slug": "z-style-pack", + "name": "Z Style Pack", + "url": "/v1/games/z-style-pack" + }, { "slug": "z-virus-v-i-r-m-uprising", "name": "Z ViRus: V.I.R.M Uprising", @@ -831376,6 +864981,16 @@ "name": "ZDSimulator", "url": "/v1/games/zdsimulator" }, + { + "slug": "zdaemon", + "name": "ZDaemon", + "url": "/v1/games/zdaemon" + }, + { + "slug": "zdoom", + "name": "ZDoom", + "url": "/v1/games/zdoom" + }, { "slug": "zed", "name": "ZED", @@ -831406,6 +865021,11 @@ "name": "ZEEP", "url": "/v1/games/zeep" }, + { + "slug": "zelda-notes", + "name": "ZELDA NOTES", + "url": "/v1/games/zelda-notes" + }, { "slug": "zeno-remake", "name": "ZENO remake", @@ -831786,6 +865406,11 @@ "name": "Zaacar", "url": "/v1/games/zaacar" }, + { + "slug": "zaark-and-the-night-team", + "name": "Zaark and the Night Team", + "url": "/v1/games/zaark-and-the-night-team" + }, { "slug": "zaba-the-frog", "name": "Zaba The Frog", @@ -831926,6 +865551,21 @@ "name": "Zahhak", "url": "/v1/games/zahhak" }, + { + "slug": "zairo-il-primo-giorno", + "name": "Zairo - Il primo giorno", + "url": "/v1/games/zairo-il-primo-giorno" + }, + { + "slug": "zak-repixeled", + "name": "Zak - Repixeled", + "url": "/v1/games/zak-repixeled" + }, + { + "slug": "zak-mckracken-and-the-alien-rockstars", + "name": "Zak McKracken and the Alien Rockstars", + "url": "/v1/games/zak-mckracken-and-the-alien-rockstars" + }, { "slug": "zak-mckracken-between-time-and-space", "name": "Zak McKracken: Between Time and Space", @@ -832061,6 +865701,11 @@ "name": "Zanac", "url": "/v1/games/zanac" }, + { + "slug": "zandronum", + "name": "Zandronum", + "url": "/v1/games/zandronum" + }, { "slug": "zanfium-tower", "name": "Zanfium Tower", @@ -832246,6 +865891,11 @@ "name": "Zaron", "url": "/v1/games/zaron" }, + { + "slug": "zarta", + "name": "Zarta", + "url": "/v1/games/zarta" + }, { "slug": "zaru", "name": "Zaru", @@ -832751,6 +866401,11 @@ "name": "Zeminator", "url": "/v1/games/zeminator" }, + { + "slug": "zen-q17218591", + "name": "Zen", + "url": "/v1/games/zen-q17218591" + }, { "slug": "zen-aquarium", "name": "Zen Aquarium", @@ -832861,6 +866516,11 @@ "name": "Zen Pinball 2", "url": "/v1/games/zen-pinball-2" }, + { + "slug": "zen-pinball-2-zen-pinball-classics", + "name": "Zen Pinball 2: Zen Pinball Classics", + "url": "/v1/games/zen-pinball-2-zen-pinball-classics" + }, { "slug": "zen-pinball-party", "name": "Zen Pinball Party", @@ -833386,6 +867046,11 @@ "name": "Zero End: Chapter One", "url": "/v1/games/zero-end-chapter-one" }, + { + "slug": "zero-escape-the-nonary-games", + "name": "Zero Escape: The Nonary Games", + "url": "/v1/games/zero-escape-the-nonary-games" + }, { "slug": "zero-escape-virtue-s-last-reward", "name": "Zero Escape: Virtue's Last Reward", @@ -833511,6 +867176,11 @@ "name": "Zero Point Survivor", "url": "/v1/games/zero-point-survivor" }, + { + "slug": "zero-racers", + "name": "Zero Racers", + "url": "/v1/games/zero-racers" + }, { "slug": "zero-reflex-black-eye-edition", "name": "Zero Reflex : Black Eye Edition", @@ -833991,6 +867661,11 @@ "name": "Zexion", "url": "/v1/games/zexion" }, + { + "slug": "zezam", + "name": "Zezam", + "url": "/v1/games/zezam" + }, { "slug": "zezenia-online", "name": "Zezenia Online", @@ -834091,6 +867766,11 @@ "name": "Zico Soccer", "url": "/v1/games/zico-soccer" }, + { + "slug": "zid-journey-q117087191", + "name": "Zid Journey", + "url": "/v1/games/zid-journey-q117087191" + }, { "slug": "zid-journey", "name": "Zid Journey", @@ -834556,6 +868236,11 @@ "name": "Zodiacats", "url": "/v1/games/zodiacats" }, + { + "slug": "zodiacats-supporter-pack", + "name": "Zodiacats - Supporter Pack", + "url": "/v1/games/zodiacats-supporter-pack" + }, { "slug": "zodiack", "name": "Zodiack", @@ -834971,6 +868656,11 @@ "name": "Zombie Army 4: Dead War", "url": "/v1/games/zombie-army-4-dead-war" }, + { + "slug": "zombie-army-trilogy", + "name": "Zombie Army Trilogy", + "url": "/v1/games/zombie-army-trilogy" + }, { "slug": "zombie-army-vr", "name": "Zombie Army VR", @@ -835286,6 +868976,21 @@ "name": "Zombie Driver HD", "url": "/v1/games/zombie-driver-hd" }, + { + "slug": "zombie-driver-hd-complete-edition", + "name": "Zombie Driver HD Complete Edition", + "url": "/v1/games/zombie-driver-hd-complete-edition" + }, + { + "slug": "zombie-driver-ultimate-edition", + "name": "Zombie Driver Ultimate Edition", + "url": "/v1/games/zombie-driver-ultimate-edition" + }, + { + "slug": "zombie-driver-immortal-edition", + "name": "Zombie Driver: Immortal Edition", + "url": "/v1/games/zombie-driver-immortal-edition" + }, { "slug": "zombie-dungeon", "name": "Zombie Dungeon", @@ -835696,6 +869401,11 @@ "name": "Zombie Panic in Wonderland", "url": "/v1/games/zombie-panic-in-wonderland" }, + { + "slug": "zombie-panic", + "name": "Zombie Panic!", + "url": "/v1/games/zombie-panic" + }, { "slug": "zombie-panic-source", "name": "Zombie Panic! Source", @@ -836331,6 +870041,16 @@ "name": "ZombieWave-UnlimitedChallenges", "url": "/v1/games/zombiewave-unlimitedchallenges" }, + { + "slug": "zombiebound", + "name": "Zombiebound", + "url": "/v1/games/zombiebound" + }, + { + "slug": "zombiebound-reloaded", + "name": "Zombiebound Reloaded", + "url": "/v1/games/zombiebound-reloaded" + }, { "slug": "zombiefield", "name": "Zombiefield", @@ -836866,6 +870586,11 @@ "name": "Zone of the Enders", "url": "/v1/games/zone-of-the-enders" }, + { + "slug": "zone-of-the-enders-hd-collection", + "name": "Zone of the Enders HD Collection", + "url": "/v1/games/zone-of-the-enders-hd-collection" + }, { "slug": "zone-of-the-enders-the-2nd-runner", "name": "Zone of the Enders: The 2nd Runner", @@ -837026,6 +870751,31 @@ "name": "Zoo Tycoon 2 DS", "url": "/v1/games/zoo-tycoon-2-ds" }, + { + "slug": "zoo-tycoon-2-african-adventure", + "name": "Zoo Tycoon 2: African Adventure", + "url": "/v1/games/zoo-tycoon-2-african-adventure" + }, + { + "slug": "zoo-tycoon-2-dino-danger-pack", + "name": "Zoo Tycoon 2: Dino Danger Pack", + "url": "/v1/games/zoo-tycoon-2-dino-danger-pack" + }, + { + "slug": "zoo-tycoon-2-endangered-species", + "name": "Zoo Tycoon 2: Endangered Species", + "url": "/v1/games/zoo-tycoon-2-endangered-species" + }, + { + "slug": "zoo-tycoon-2-extinct-animals", + "name": "Zoo Tycoon 2: Extinct Animals", + "url": "/v1/games/zoo-tycoon-2-extinct-animals" + }, + { + "slug": "zoo-tycoon-2-marine-mania", + "name": "Zoo Tycoon 2: Marine Mania", + "url": "/v1/games/zoo-tycoon-2-marine-mania" + }, { "slug": "zoo-tycoon-2-marine-mania-mobile", "name": "Zoo Tycoon 2: Marine Mania Mobile", @@ -837041,11 +870791,21 @@ "name": "Zoo Tycoon: Complete Collection", "url": "/v1/games/zoo-tycoon-complete-collection" }, + { + "slug": "zoo-tycoon-dinosaur-digs", + "name": "Zoo Tycoon: Dinosaur Digs", + "url": "/v1/games/zoo-tycoon-dinosaur-digs" + }, { "slug": "zoo-tycoon-friends", "name": "Zoo Tycoon: Friends", "url": "/v1/games/zoo-tycoon-friends" }, + { + "slug": "zoo-tycoon-marine-mania", + "name": "Zoo Tycoon: Marine Mania", + "url": "/v1/games/zoo-tycoon-marine-mania" + }, { "slug": "zoo-tycoon-ultimate-animal-collection", "name": "Zoo Tycoon: Ultimate Animal Collection", @@ -837281,6 +871041,11 @@ "name": "Zoria: Prologue (2020)", "url": "/v1/games/zoria-prologue-2020" }, + { + "slug": "zork-anthology", + "name": "Zork Anthology", + "url": "/v1/games/zork-anthology" + }, { "slug": "zork-i", "name": "Zork I", @@ -838611,6 +872376,11 @@ "name": "bang shoot.", "url": "/v1/games/bang-shoot" }, + { + "slug": "baredoom", + "name": "bareDOOM", + "url": "/v1/games/baredoom" + }, { "slug": "barkvr", "name": "barkvr", @@ -838986,6 +872756,11 @@ "name": "cherry blossom fleet", "url": "/v1/games/cherry-blossom-fleet" }, + { + "slug": "chess-app", + "name": "chess.app", + "url": "/v1/games/chess-app" + }, { "slug": "chest-q134965306", "name": "chest", @@ -839051,6 +872826,11 @@ "name": "cluck-a-thon", "url": "/v1/games/cluck-a-thon" }, + { + "slug": "cluster", + "name": "cluster", + "url": "/v1/games/cluster" + }, { "slug": "clutchball", "name": "clutchball", @@ -839106,6 +872886,11 @@ "name": "cool go", "url": "/v1/games/cool-go" }, + { + "slug": "coredoom", + "name": "coreDOOM", + "url": "/v1/games/coredoom" + }, { "slug": "corpo-ghost", "name": "corpo/ghost", @@ -839136,6 +872921,11 @@ "name": "crying crystal", "url": "/v1/games/crying-crystal" }, + { + "slug": "csdoom", + "name": "csDoom", + "url": "/v1/games/csdoom" + }, { "slug": "cultivation-of-the-strong", "name": "cultivation of the strong", @@ -839171,6 +872961,11 @@ "name": "cyubeVR", "url": "/v1/games/cyubevr" }, + { + "slug": "d3wasm", + "name": "d3wasm", + "url": "/v1/games/d3wasm" + }, { "slug": "deskape", "name": "dEskape", @@ -839301,6 +873096,11 @@ "name": "dev_hell", "url": "/v1/games/dev-hell" }, + { + "slug": "dhewm3", + "name": "dhewm3", + "url": "/v1/games/dhewm3" + }, { "slug": "diep-io", "name": "diep.io", @@ -839371,6 +873171,11 @@ "name": "doom-nano", "url": "/v1/games/doom-nano" }, + { + "slug": "doomgeneric", + "name": "doomgeneric", + "url": "/v1/games/doomgeneric" + }, { "slug": "dot-tanki", "name": "dot TANKI", @@ -839511,6 +873316,11 @@ "name": "eCheese Zone", "url": "/v1/games/echeese-zone" }, + { + "slug": "ecity-q11865428", + "name": "eCity", + "url": "/v1/games/ecity-q11865428" + }, { "slug": "ecrew-development-program", "name": "eCrew Development Program", @@ -839691,6 +873501,11 @@ "name": "em.Path", "url": "/v1/games/em-path" }, + { + "slug": "emacs-chess", + "name": "emacs-chess", + "url": "/v1/games/emacs-chess" + }, { "slug": "emacs-slime-volleyball", "name": "emacs-slime-volleyball", @@ -839821,6 +873636,11 @@ "name": "eyeDASH", "url": "/v1/games/eyedash" }, + { + "slug": "ezquake", + "name": "ezQuake", + "url": "/v1/games/ezquake" + }, { "slug": "factions-mp", "name": "factions MP", @@ -839851,6 +873671,11 @@ "name": "fault - milestone two side: below", "url": "/v1/games/fault-milestone-two-side-below" }, + { + "slug": "fbdoom", + "name": "fbDOOM", + "url": "/v1/games/fbdoom" + }, { "slug": "ff-link", "name": "ff link", @@ -840091,6 +873916,11 @@ "name": "git gud", "url": "/v1/games/git-gud" }, + { + "slug": "gldoom", + "name": "glDoom", + "url": "/v1/games/gldoom" + }, { "slug": "glix", "name": "glix", @@ -840246,6 +874076,11 @@ "name": "happiness market", "url": "/v1/games/happiness-market" }, + { + "slug": "hardcore-pinball", + "name": "hardcore pinball", + "url": "/v1/games/hardcore-pinball" + }, { "slug": "harmony", "name": "harmony", @@ -840446,6 +874281,11 @@ "name": "homebound", "url": "/v1/games/homebound-q123404726" }, + { + "slug": "homosexuality-in-video-games", + "name": "homosexuality in video games", + "url": "/v1/games/homosexuality-in-video-games" + }, { "slug": "hoodgang-simulator", "name": "hoodgang simulator", @@ -840531,6 +874371,11 @@ "name": "i'm not a creep (i promise)", "url": "/v1/games/i-m-not-a-creep-i-promise" }, + { + "slug": "i-mode-mo-issyo", + "name": "i-mode mo issyo", + "url": "/v1/games/i-mode-mo-issyo" + }, { "slug": "ially", "name": "iAlly", @@ -840716,6 +874561,61 @@ "name": "iStunt 2", "url": "/v1/games/istunt-2" }, + { + "slug": "ivry-driver-for-steamvr-apple-vision-pro-premium-edition", + "name": "iVRy Driver for SteamVR (Apple Vision Pro Premium Edition)", + "url": "/v1/games/ivry-driver-for-steamvr-apple-vision-pro-premium-edition" + }, + { + "slug": "ivry-driver-for-steamvr-gearvr-oculus-premium-edition", + "name": "iVRy Driver for SteamVR (GearVR/Oculus Premium Edition)", + "url": "/v1/games/ivry-driver-for-steamvr-gearvr-oculus-premium-edition" + }, + { + "slug": "ivry-driver-for-steamvr-mobile-device-premium-edition", + "name": "iVRy Driver for SteamVR (Mobile Device Premium Edition)", + "url": "/v1/games/ivry-driver-for-steamvr-mobile-device-premium-edition" + }, + { + "slug": "ivry-driver-for-steamvr-psvr-lite-edition", + "name": "iVRy Driver for SteamVR (PSVR Lite Edition)", + "url": "/v1/games/ivry-driver-for-steamvr-psvr-lite-edition" + }, + { + "slug": "ivry-driver-for-steamvr-psvr-premium-edition", + "name": "iVRy Driver for SteamVR (PSVR Premium Edition)", + "url": "/v1/games/ivry-driver-for-steamvr-psvr-premium-edition" + }, + { + "slug": "ivry-driver-for-steamvr-pico-premium-edition", + "name": "iVRy Driver for SteamVR (Pico Premium Edition)", + "url": "/v1/games/ivry-driver-for-steamvr-pico-premium-edition" + }, + { + "slug": "ivry-gearvr-system-files-installer", + "name": "iVRy GearVR System Files Installer", + "url": "/v1/games/ivry-gearvr-system-files-installer" + }, + { + "slug": "ivry-psmoveservice-driver-for-steamvr", + "name": "iVRy PSMoveService Driver for SteamVR", + "url": "/v1/games/ivry-psmoveservice-driver-for-steamvr" + }, + { + "slug": "ivry-for-steamvr-android-daydream-app-installer", + "name": "iVRy for SteamVR (Android/Daydream App Installer)", + "url": "/v1/games/ivry-for-steamvr-android-daydream-app-installer" + }, + { + "slug": "ivry-for-steamvr-gearvr-oculus-app-installer", + "name": "iVRy for SteamVR (GearVR/Oculus App Installer)", + "url": "/v1/games/ivry-for-steamvr-gearvr-oculus-app-installer" + }, + { + "slug": "ivry-for-steamvr-pico-app-installer", + "name": "iVRy for SteamVR (Pico App Installer)", + "url": "/v1/games/ivry-for-steamvr-pico-app-installer" + }, { "slug": "izbot", "name": "iZBOT", @@ -840916,6 +874816,11 @@ "name": "ionAXXIA", "url": "/v1/games/ionaxxia" }, + { + "slug": "ioquake3", + "name": "ioquake3", + "url": "/v1/games/ioquake3" + }, { "slug": "iota", "name": "iota", @@ -841056,6 +874961,11 @@ "name": "kabuto", "url": "/v1/games/kabuto" }, + { + "slug": "kakuro-q212785", + "name": "kakuro", + "url": "/v1/games/kakuro-q212785" + }, { "slug": "kallio", "name": "kallio", @@ -841216,6 +875126,11 @@ "name": "let me go", "url": "/v1/games/let-me-go" }, + { + "slug": "lierolibre", + "name": "lierolibre", + "url": "/v1/games/lierolibre" + }, { "slug": "lightblue", "name": "lightblue", @@ -841361,6 +875276,11 @@ "name": "magical journey", "url": "/v1/games/magical-journey" }, + { + "slug": "maimai", + "name": "maimai", + "url": "/v1/games/maimai" + }, { "slug": "make-sure-it-s-closed", "name": "make sure it's closed", @@ -841371,6 +875291,11 @@ "name": "malViolence - Definitive Edition", "url": "/v1/games/malviolence-definitive-edition" }, + { + "slug": "map-pack", + "name": "map pack", + "url": "/v1/games/map-pack" + }, { "slug": "math-is-hard", "name": "math is hard", @@ -841661,6 +875586,11 @@ "name": "nStations", "url": "/v1/games/nstations" }, + { + "slug": "ntrap", + "name": "nTrap", + "url": "/v1/games/ntrap" + }, { "slug": "need-two-survive", "name": "need TWO survive", @@ -841771,6 +875701,11 @@ "name": "nothing_matters", "url": "/v1/games/nothing-matters" }, + { + "slug": "nudoku", + "name": "nudoku", + "url": "/v1/games/nudoku" + }, { "slug": "null-heart-break", "name": "null HEART break", @@ -842026,6 +875961,11 @@ "name": "pedalverse", "url": "/v1/games/pedalverse" }, + { + "slug": "pedantle", + "name": "pedantle", + "url": "/v1/games/pedantle" + }, { "slug": "pemsa", "name": "pemsa", @@ -842201,6 +876141,11 @@ "name": "protoViolence - Definitive Edition", "url": "/v1/games/protoviolence-definitive-edition" }, + { + "slug": "psdoom", + "name": "psDooM", + "url": "/v1/games/psdoom" + }, { "slug": "psy-relic", "name": "psy-relic", @@ -842631,6 +876576,11 @@ "name": "sfäre", "url": "/v1/games/sf-re" }, + { + "slug": "shapez-puzzle-dlc", + "name": "shapez - Puzzle DLC", + "url": "/v1/games/shapez-puzzle-dlc" + }, { "slug": "shapez-2", "name": "shapez 2", @@ -843411,6 +877361,11 @@ "name": "turkey hunting USA", "url": "/v1/games/turkey-hunting-usa" }, + { + "slug": "tuxdash", + "name": "tuxdash", + "url": "/v1/games/tuxdash" + }, { "slug": "twenty-in-total", "name": "twenty, in total", @@ -843481,11 +877436,41 @@ "name": "universe treasure", "url": "/v1/games/universe-treasure" }, + { + "slug": "unlockable-downloadable-content", + "name": "unlockable downloadable content", + "url": "/v1/games/unlockable-downloadable-content" + }, { "slug": "unparalleled", "name": "unparalleled", "url": "/v1/games/unparalleled" }, + { + "slug": "untitled-black-panther-video-game", + "name": "untitled Black Panther video game", + "url": "/v1/games/untitled-black-panther-video-game" + }, + { + "slug": "untitled-cuphead-sequel", + "name": "untitled Cuphead Sequel", + "url": "/v1/games/untitled-cuphead-sequel" + }, + { + "slug": "untitled-half-life-or-half-life-2-mod", + "name": "untitled Half-Life or Half-Life 2 mod", + "url": "/v1/games/untitled-half-life-or-half-life-2-mod" + }, + { + "slug": "untitled-iron-man-video-game", + "name": "untitled Iron Man video game", + "url": "/v1/games/untitled-iron-man-video-game" + }, + { + "slug": "untitled-mass-effect-video-game", + "name": "untitled Mass Effect video game", + "url": "/v1/games/untitled-mass-effect-video-game" + }, { "slug": "upg", "name": "upg", @@ -843576,6 +877561,11 @@ "name": "vivid/stasis", "url": "/v1/games/vivid-stasis" }, + { + "slug": "vkquake", + "name": "vkQuake", + "url": "/v1/games/vkquake" + }, { "slug": "void-link", "name": "void LINK", @@ -844361,6 +878351,16 @@ "name": "东方试闻广纪 ~ Perfect Memento of Touhou Question", "url": "/v1/games/perfect-memento-of-touhou-question" }, + { + "slug": "more-50-questions-part-1", + "name": "东方试闻广纪: More 50 Questions Part 1", + "url": "/v1/games/more-50-questions-part-1" + }, + { + "slug": "more-50-questions-part-2", + "name": "东方试闻广纪: More 50 Questions Part 2", + "url": "/v1/games/more-50-questions-part-2" + }, { "slug": "l-etranger", "name": "局外人 L'Etranger", diff --git a/site/public/v1/games/indie-royale/index.json b/site/public/v1/games/indie-royale/index.json new file mode 100644 index 000000000000..c610d92d8b5e --- /dev/null +++ b/site/public/v1/games/indie-royale/index.json @@ -0,0 +1,28 @@ +{ + "id": 72655, + "slug": "indie-royale", + "name": "Indie Royale", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6024495" + ], + "created_at": "2026-07-10T10:10:20.388816", + "updated_at": "2026-07-10T10:10:20.388816", + "url": "/v1/games/indie-royale" +} diff --git a/site/public/v1/games/industry-giant-expansion-set/index.json b/site/public/v1/games/industry-giant-expansion-set/index.json new file mode 100644 index 000000000000..2d68bcbf42f9 --- /dev/null +++ b/site/public/v1/games/industry-giant-expansion-set/index.json @@ -0,0 +1,25 @@ +{ + "id": 72700, + "slug": "industry-giant-expansion-set", + "name": "Industry Giant: Expansion Set", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q119847853" + ], + "created_at": "2026-07-10T10:10:20.400749", + "updated_at": "2026-07-10T10:10:20.400749", + "url": "/v1/games/industry-giant-expansion-set" +} diff --git a/site/public/v1/games/industry-giant-ii-1980-2020/index.json b/site/public/v1/games/industry-giant-ii-1980-2020/index.json new file mode 100644 index 000000000000..cafb142fcbf3 --- /dev/null +++ b/site/public/v1/games/industry-giant-ii-1980-2020/index.json @@ -0,0 +1,29 @@ +{ + "id": 72701, + "slug": "industry-giant-ii-1980-2020", + "name": "Industry Giant II: 1980-2020", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [ + "JoWooD Ebensee" + ], + "publishers": [ + "JoWooD Entertainment" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137909408" + ], + "created_at": "2026-07-10T10:10:20.401748", + "updated_at": "2026-07-10T10:10:20.401748", + "url": "/v1/games/industry-giant-ii-1980-2020" +} diff --git a/site/public/v1/games/infinite-breakout-ds/index.json b/site/public/v1/games/infinite-breakout-ds/index.json new file mode 100644 index 000000000000..b8c4942a48ed --- /dev/null +++ b/site/public/v1/games/infinite-breakout-ds/index.json @@ -0,0 +1,33 @@ +{ + "id": 72892, + "slug": "infinite-breakout-ds", + "name": "Infinite Breakout DS", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Nintendo DS" + ], + "genres": [ + "Breakout clone" + ], + "stores": [], + "developers": [ + "Raúl Bojalil" + ], + "publishers": [ + "Raúl Bojalil" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123177951" + ], + "created_at": "2026-07-10T10:10:20.451614", + "updated_at": "2026-07-10T10:10:20.451614", + "url": "/v1/games/infinite-breakout-ds" +} diff --git a/site/public/v1/games/infinity-the-quest-for-earth/index.json b/site/public/v1/games/infinity-the-quest-for-earth/index.json new file mode 100644 index 000000000000..754732d5af2e --- /dev/null +++ b/site/public/v1/games/infinity-the-quest-for-earth/index.json @@ -0,0 +1,34 @@ +{ + "id": 73018, + "slug": "infinity-the-quest-for-earth", + "name": "Infinity: The Quest for Earth", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "massively multiplayer online game", + "space trading and combat game" + ], + "stores": [], + "developers": [ + "I-Novae Studios" + ], + "publishers": [ + "I-Novae Studios" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q104884455" + ], + "created_at": "2026-07-10T10:10:20.485258", + "updated_at": "2026-07-10T10:10:20.485258", + "url": "/v1/games/infinity-the-quest-for-earth" +} diff --git a/site/public/v1/games/initial-d-arcade-stage-zero/index.json b/site/public/v1/games/initial-d-arcade-stage-zero/index.json new file mode 100644 index 000000000000..07d1c647b48f --- /dev/null +++ b/site/public/v1/games/initial-d-arcade-stage-zero/index.json @@ -0,0 +1,27 @@ +{ + "id": 73098, + "slug": "initial-d-arcade-stage-zero", + "name": "Initial D Arcade Stage Zero", + "release_date": "2017-03-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "racing video game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127514753" + ], + "created_at": "2026-07-10T10:10:20.507243", + "updated_at": "2026-07-10T10:10:20.507243", + "url": "/v1/games/initial-d-arcade-stage-zero" +} diff --git a/site/public/v1/games/initial-d-the-arcade/index.json b/site/public/v1/games/initial-d-the-arcade/index.json new file mode 100644 index 000000000000..876c0e57b5f4 --- /dev/null +++ b/site/public/v1/games/initial-d-the-arcade/index.json @@ -0,0 +1,27 @@ +{ + "id": 73110, + "slug": "initial-d-the-arcade", + "name": "Initial D The Arcade", + "release_date": "2021-02-25", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "racing video game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127514768" + ], + "created_at": "2026-07-10T10:10:20.510253", + "updated_at": "2026-07-10T10:10:20.510253", + "url": "/v1/games/initial-d-the-arcade" +} diff --git a/site/public/v1/games/initiation-station/index.json b/site/public/v1/games/initiation-station/index.json new file mode 100644 index 000000000000..4079dca4a895 --- /dev/null +++ b/site/public/v1/games/initiation-station/index.json @@ -0,0 +1,28 @@ +{ + "id": 73115, + "slug": "initiation-station", + "name": "Initiation Station", + "release_date": "2011-11-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 3", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60607908" + ], + "created_at": "2026-07-10T10:10:20.512279", + "updated_at": "2026-07-10T10:10:20.512279", + "url": "/v1/games/initiation-station" +} diff --git a/site/public/v1/games/inks-q107147746/index.json b/site/public/v1/games/inks-q107147746/index.json new file mode 100644 index 000000000000..811498be9041 --- /dev/null +++ b/site/public/v1/games/inks-q107147746/index.json @@ -0,0 +1,34 @@ +{ + "id": 73163, + "slug": "inks-q107147746", + "name": "INKS.+", + "release_date": "2021-06-25", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "iPadOS", + "iOS" + ], + "genres": [ + "pinball video game" + ], + "stores": [], + "developers": [ + "State of Play" + ], + "publishers": [ + "State of Play" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107147746" + ], + "created_at": "2026-07-10T10:10:20.525349", + "updated_at": "2026-07-10T10:10:20.525349", + "url": "/v1/games/inks-q107147746" +} diff --git a/site/public/v1/games/instant-indie-collection/index.json b/site/public/v1/games/instant-indie-collection/index.json new file mode 100644 index 000000000000..9635ff098399 --- /dev/null +++ b/site/public/v1/games/instant-indie-collection/index.json @@ -0,0 +1,25 @@ +{ + "id": 73435, + "slug": "instant-indie-collection", + "name": "Instant Indie Collection", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q90408790" + ], + "created_at": "2026-07-10T10:10:20.670889", + "updated_at": "2026-07-10T10:10:20.670889", + "url": "/v1/games/instant-indie-collection" +} diff --git a/site/public/v1/games/insurgency-modern-infantry-combat/index.json b/site/public/v1/games/insurgency-modern-infantry-combat/index.json new file mode 100644 index 000000000000..716351d05b62 --- /dev/null +++ b/site/public/v1/games/insurgency-modern-infantry-combat/index.json @@ -0,0 +1,32 @@ +{ + "id": 73463, + "slug": "insurgency-modern-infantry-combat", + "name": "Insurgency: Modern Infantry Combat", + "release_date": "2007-07-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "first-person shooter" + ], + "stores": [], + "developers": [], + "publishers": [ + "New World Interactive" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2267797" + ], + "created_at": "2026-07-10T10:10:20.683874", + "updated_at": "2026-07-10T10:10:20.683874", + "url": "/v1/games/insurgency-modern-infantry-combat" +} diff --git a/site/public/v1/games/interactive-web-stories/index.json b/site/public/v1/games/interactive-web-stories/index.json new file mode 100644 index 000000000000..bbdba0fb450f --- /dev/null +++ b/site/public/v1/games/interactive-web-stories/index.json @@ -0,0 +1,25 @@ +{ + "id": 73517, + "slug": "interactive-web-stories", + "name": "Interactive web stories", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6045431" + ], + "created_at": "2026-07-10T10:10:20.697862", + "updated_at": "2026-07-10T10:10:20.697862", + "url": "/v1/games/interactive-web-stories" +} diff --git a/site/public/v1/games/international-doom/index.json b/site/public/v1/games/international-doom/index.json new file mode 100644 index 000000000000..d8a1591076fe --- /dev/null +++ b/site/public/v1/games/international-doom/index.json @@ -0,0 +1,25 @@ +{ + "id": 73591, + "slug": "international-doom", + "name": "International Doom", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124428999" + ], + "created_at": "2026-07-10T10:10:20.717873", + "updated_at": "2026-07-10T10:10:20.717873", + "url": "/v1/games/international-doom" +} diff --git a/site/public/v1/games/internet-diplomacy/index.json b/site/public/v1/games/internet-diplomacy/index.json new file mode 100644 index 000000000000..8ef5ebea9b5b --- /dev/null +++ b/site/public/v1/games/internet-diplomacy/index.json @@ -0,0 +1,25 @@ +{ + "id": 73649, + "slug": "internet-diplomacy", + "name": "Internet Diplomacy", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16995030" + ], + "created_at": "2026-07-10T10:10:20.732948", + "updated_at": "2026-07-10T10:10:20.732948", + "url": "/v1/games/internet-diplomacy" +} diff --git a/site/public/v1/games/interstate-76-nitro-pack/index.json b/site/public/v1/games/interstate-76-nitro-pack/index.json new file mode 100644 index 000000000000..d593d9f6df31 --- /dev/null +++ b/site/public/v1/games/interstate-76-nitro-pack/index.json @@ -0,0 +1,31 @@ +{ + "id": 73681, + "slug": "interstate-76-nitro-pack", + "name": "Interstate '76 Nitro Pack", + "release_date": "1997-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "vehicular combat game" + ], + "stores": [], + "developers": [ + "Activision" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6056800" + ], + "created_at": "2026-07-10T10:10:20.741624", + "updated_at": "2026-07-10T10:10:20.741624", + "url": "/v1/games/interstate-76-nitro-pack" +} diff --git a/site/public/v1/games/invader-zim-dib-s-nanochase/index.json b/site/public/v1/games/invader-zim-dib-s-nanochase/index.json new file mode 100644 index 000000000000..12bb1b737d7b --- /dev/null +++ b/site/public/v1/games/invader-zim-dib-s-nanochase/index.json @@ -0,0 +1,25 @@ +{ + "id": 73880, + "slug": "invader-zim-dib-s-nanochase", + "name": "Invader Zim: Dib's Nanochase", + "release_date": "2001-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q51248073" + ], + "created_at": "2026-07-10T10:10:20.794593", + "updated_at": "2026-07-10T10:10:20.794593", + "url": "/v1/games/invader-zim-dib-s-nanochase" +} diff --git a/site/public/v1/games/invader-zim-in-sanitation/index.json b/site/public/v1/games/invader-zim-in-sanitation/index.json new file mode 100644 index 000000000000..9ac588e9ea5b --- /dev/null +++ b/site/public/v1/games/invader-zim-in-sanitation/index.json @@ -0,0 +1,25 @@ +{ + "id": 73881, + "slug": "invader-zim-in-sanitation", + "name": "Invader Zim: In-Sanitation", + "release_date": "2001-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q51248279" + ], + "created_at": "2026-07-10T10:10:20.795610", + "updated_at": "2026-07-10T10:10:20.795610", + "url": "/v1/games/invader-zim-in-sanitation" +} diff --git a/site/public/v1/games/invasion-q63247569/index.json b/site/public/v1/games/invasion-q63247569/index.json new file mode 100644 index 000000000000..c4afb8d955d0 --- /dev/null +++ b/site/public/v1/games/invasion-q63247569/index.json @@ -0,0 +1,25 @@ +{ + "id": 73930, + "slug": "invasion-q63247569", + "name": "Invasion", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63247569" + ], + "created_at": "2026-07-10T10:10:20.808869", + "updated_at": "2026-07-10T10:10:20.808869", + "url": "/v1/games/invasion-q63247569" +} diff --git a/site/public/v1/games/invincible-pack/index.json b/site/public/v1/games/invincible-pack/index.json new file mode 100644 index 000000000000..0177951fffa9 --- /dev/null +++ b/site/public/v1/games/invincible-pack/index.json @@ -0,0 +1,27 @@ +{ + "id": 73993, + "slug": "invincible-pack", + "name": "Invincible Pack", + "release_date": "2011-11-15", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60586778" + ], + "created_at": "2026-07-10T10:10:20.825137", + "updated_at": "2026-07-10T10:10:20.825137", + "url": "/v1/games/invincible-pack" +} diff --git a/site/public/v1/games/io-q122639777/index.json b/site/public/v1/games/io-q122639777/index.json new file mode 100644 index 000000000000..77784eabde4a --- /dev/null +++ b/site/public/v1/games/io-q122639777/index.json @@ -0,0 +1,27 @@ +{ + "id": 74039, + "slug": "io-q122639777", + "name": "Io", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "platformer" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122639777" + ], + "created_at": "2026-07-10T10:10:20.856861", + "updated_at": "2026-07-10T10:10:20.856861", + "url": "/v1/games/io-q122639777" +} diff --git a/site/public/v1/games/ioquake3/index.json b/site/public/v1/games/ioquake3/index.json new file mode 100644 index 000000000000..7921d8766fa5 --- /dev/null +++ b/site/public/v1/games/ioquake3/index.json @@ -0,0 +1,29 @@ +{ + "id": 74053, + "slug": "ioquake3", + "name": "ioquake3", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Classic Mac OS", + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q307516" + ], + "created_at": "2026-07-10T10:10:20.871837", + "updated_at": "2026-07-10T10:10:20.871837", + "url": "/v1/games/ioquake3" +} diff --git a/site/public/v1/games/iron-harvest-complete-edition/index.json b/site/public/v1/games/iron-harvest-complete-edition/index.json new file mode 100644 index 000000000000..d881170ae1e8 --- /dev/null +++ b/site/public/v1/games/iron-harvest-complete-edition/index.json @@ -0,0 +1,33 @@ +{ + "id": 74163, + "slug": "iron-harvest-complete-edition", + "name": "Iron Harvest Complete Edition", + "release_date": "2021-10-26", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S" + ], + "genres": [ + "real-time strategy" + ], + "stores": [], + "developers": [ + "King Art Games" + ], + "publishers": [ + "Plaion" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109417802" + ], + "created_at": "2026-07-10T10:10:20.902850", + "updated_at": "2026-07-10T10:10:20.902850", + "url": "/v1/games/iron-harvest-complete-edition" +} diff --git a/site/public/v1/games/iron-marines-q118235269/index.json b/site/public/v1/games/iron-marines-q118235269/index.json new file mode 100644 index 000000000000..bb606e98ed1e --- /dev/null +++ b/site/public/v1/games/iron-marines-q118235269/index.json @@ -0,0 +1,29 @@ +{ + "id": 74183, + "slug": "iron-marines-q118235269", + "name": "Iron Marines+", + "release_date": "2023-05-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "iPadOS", + "iOS", + "macOS" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118235269" + ], + "created_at": "2026-07-10T10:10:20.908068", + "updated_at": "2026-07-10T10:10:20.908068", + "url": "/v1/games/iron-marines-q118235269" +} diff --git a/site/public/v1/games/island-royale/index.json b/site/public/v1/games/island-royale/index.json new file mode 100644 index 000000000000..951324c1be50 --- /dev/null +++ b/site/public/v1/games/island-royale/index.json @@ -0,0 +1,28 @@ +{ + "id": 74434, + "slug": "island-royale", + "name": "Island Royale", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q55422138" + ], + "created_at": "2026-07-10T10:10:20.998211", + "updated_at": "2026-07-10T10:10:20.998211", + "url": "/v1/games/island-royale" +} diff --git a/site/public/v1/games/israeli-palestinian-conflict-in-video-games/index.json b/site/public/v1/games/israeli-palestinian-conflict-in-video-games/index.json new file mode 100644 index 000000000000..e47c96a6096a --- /dev/null +++ b/site/public/v1/games/israeli-palestinian-conflict-in-video-games/index.json @@ -0,0 +1,25 @@ +{ + "id": 74561, + "slug": "israeli-palestinian-conflict-in-video-games", + "name": "Israeli–Palestinian conflict in video games", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17513864" + ], + "created_at": "2026-07-10T10:10:21.039234", + "updated_at": "2026-07-10T10:10:21.039234", + "url": "/v1/games/israeli-palestinian-conflict-in-video-games" +} diff --git a/site/public/v1/games/ivry-driver-for-steamvr-apple-vision-pro-premium-edition/index.json b/site/public/v1/games/ivry-driver-for-steamvr-apple-vision-pro-premium-edition/index.json new file mode 100644 index 000000000000..3041873efad0 --- /dev/null +++ b/site/public/v1/games/ivry-driver-for-steamvr-apple-vision-pro-premium-edition/index.json @@ -0,0 +1,31 @@ +{ + "id": 74763, + "slug": "ivry-driver-for-steamvr-apple-vision-pro-premium-edition", + "name": "iVRy Driver for SteamVR (Apple Vision Pro Premium Edition)", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Mediator Software" + ], + "publishers": [ + "Mediator Software" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130436737" + ], + "created_at": "2026-07-10T10:10:21.095268", + "updated_at": "2026-07-10T10:10:21.095268", + "url": "/v1/games/ivry-driver-for-steamvr-apple-vision-pro-premium-edition" +} diff --git a/site/public/v1/games/ivry-driver-for-steamvr-gearvr-oculus-premium-edition/index.json b/site/public/v1/games/ivry-driver-for-steamvr-gearvr-oculus-premium-edition/index.json new file mode 100644 index 000000000000..1abff47f75d4 --- /dev/null +++ b/site/public/v1/games/ivry-driver-for-steamvr-gearvr-oculus-premium-edition/index.json @@ -0,0 +1,31 @@ +{ + "id": 74764, + "slug": "ivry-driver-for-steamvr-gearvr-oculus-premium-edition", + "name": "iVRy Driver for SteamVR (GearVR/Oculus Premium Edition)", + "release_date": "2020-12-31", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Mediator Software" + ], + "publishers": [ + "Mediator Software" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130436863" + ], + "created_at": "2026-07-10T10:10:21.095268", + "updated_at": "2026-07-10T10:10:21.095268", + "url": "/v1/games/ivry-driver-for-steamvr-gearvr-oculus-premium-edition" +} diff --git a/site/public/v1/games/ivry-driver-for-steamvr-mobile-device-premium-edition/index.json b/site/public/v1/games/ivry-driver-for-steamvr-mobile-device-premium-edition/index.json new file mode 100644 index 000000000000..ae42d15d930a --- /dev/null +++ b/site/public/v1/games/ivry-driver-for-steamvr-mobile-device-premium-edition/index.json @@ -0,0 +1,31 @@ +{ + "id": 74765, + "slug": "ivry-driver-for-steamvr-mobile-device-premium-edition", + "name": "iVRy Driver for SteamVR (Mobile Device Premium Edition)", + "release_date": "2019-01-23", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Mediator Software" + ], + "publishers": [ + "Mediator Software" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130436792" + ], + "created_at": "2026-07-10T10:10:21.095268", + "updated_at": "2026-07-10T10:10:21.095268", + "url": "/v1/games/ivry-driver-for-steamvr-mobile-device-premium-edition" +} diff --git a/site/public/v1/games/ivry-driver-for-steamvr-pico-premium-edition/index.json b/site/public/v1/games/ivry-driver-for-steamvr-pico-premium-edition/index.json new file mode 100644 index 000000000000..72591363ac9e --- /dev/null +++ b/site/public/v1/games/ivry-driver-for-steamvr-pico-premium-edition/index.json @@ -0,0 +1,31 @@ +{ + "id": 74766, + "slug": "ivry-driver-for-steamvr-pico-premium-edition", + "name": "iVRy Driver for SteamVR (Pico Premium Edition)", + "release_date": "2023-03-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Mediator Software" + ], + "publishers": [ + "Mediator Software" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130436765" + ], + "created_at": "2026-07-10T10:10:21.095268", + "updated_at": "2026-07-10T10:10:21.095268", + "url": "/v1/games/ivry-driver-for-steamvr-pico-premium-edition" +} diff --git a/site/public/v1/games/ivry-driver-for-steamvr-psvr-lite-edition/index.json b/site/public/v1/games/ivry-driver-for-steamvr-psvr-lite-edition/index.json new file mode 100644 index 000000000000..d54e6ed39808 --- /dev/null +++ b/site/public/v1/games/ivry-driver-for-steamvr-psvr-lite-edition/index.json @@ -0,0 +1,31 @@ +{ + "id": 74767, + "slug": "ivry-driver-for-steamvr-psvr-lite-edition", + "name": "iVRy Driver for SteamVR (PSVR Lite Edition)", + "release_date": "2019-01-23", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Mediator Software" + ], + "publishers": [ + "Mediator Software" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130436777" + ], + "created_at": "2026-07-10T10:10:21.096268", + "updated_at": "2026-07-10T10:10:21.096268", + "url": "/v1/games/ivry-driver-for-steamvr-psvr-lite-edition" +} diff --git a/site/public/v1/games/ivry-driver-for-steamvr-psvr-premium-edition/index.json b/site/public/v1/games/ivry-driver-for-steamvr-psvr-premium-edition/index.json new file mode 100644 index 000000000000..0eb36fbc3fc6 --- /dev/null +++ b/site/public/v1/games/ivry-driver-for-steamvr-psvr-premium-edition/index.json @@ -0,0 +1,31 @@ +{ + "id": 74768, + "slug": "ivry-driver-for-steamvr-psvr-premium-edition", + "name": "iVRy Driver for SteamVR (PSVR Premium Edition)", + "release_date": "2019-01-23", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Mediator Software" + ], + "publishers": [ + "Mediator Software" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130436781" + ], + "created_at": "2026-07-10T10:10:21.096268", + "updated_at": "2026-07-10T10:10:21.096268", + "url": "/v1/games/ivry-driver-for-steamvr-psvr-premium-edition" +} diff --git a/site/public/v1/games/ivry-for-steamvr-android-daydream-app-installer/index.json b/site/public/v1/games/ivry-for-steamvr-android-daydream-app-installer/index.json new file mode 100644 index 000000000000..617687e1e756 --- /dev/null +++ b/site/public/v1/games/ivry-for-steamvr-android-daydream-app-installer/index.json @@ -0,0 +1,31 @@ +{ + "id": 74769, + "slug": "ivry-for-steamvr-android-daydream-app-installer", + "name": "iVRy for SteamVR (Android/Daydream App Installer)", + "release_date": "2022-06-10", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Mediator Software" + ], + "publishers": [ + "Mediator Software" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130436862" + ], + "created_at": "2026-07-10T10:10:21.096268", + "updated_at": "2026-07-10T10:10:21.096268", + "url": "/v1/games/ivry-for-steamvr-android-daydream-app-installer" +} diff --git a/site/public/v1/games/ivry-for-steamvr-gearvr-oculus-app-installer/index.json b/site/public/v1/games/ivry-for-steamvr-gearvr-oculus-app-installer/index.json new file mode 100644 index 000000000000..51afea0e5c7e --- /dev/null +++ b/site/public/v1/games/ivry-for-steamvr-gearvr-oculus-app-installer/index.json @@ -0,0 +1,31 @@ +{ + "id": 74770, + "slug": "ivry-for-steamvr-gearvr-oculus-app-installer", + "name": "iVRy for SteamVR (GearVR/Oculus App Installer)", + "release_date": "2020-12-31", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Mediator Software" + ], + "publishers": [ + "Mediator Software" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130436860" + ], + "created_at": "2026-07-10T10:10:21.096268", + "updated_at": "2026-07-10T10:10:21.096268", + "url": "/v1/games/ivry-for-steamvr-gearvr-oculus-app-installer" +} diff --git a/site/public/v1/games/ivry-for-steamvr-pico-app-installer/index.json b/site/public/v1/games/ivry-for-steamvr-pico-app-installer/index.json new file mode 100644 index 000000000000..a7574eb4fb9f --- /dev/null +++ b/site/public/v1/games/ivry-for-steamvr-pico-app-installer/index.json @@ -0,0 +1,31 @@ +{ + "id": 74771, + "slug": "ivry-for-steamvr-pico-app-installer", + "name": "iVRy for SteamVR (Pico App Installer)", + "release_date": "2023-03-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Mediator Software" + ], + "publishers": [ + "Mediator Software" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130436769" + ], + "created_at": "2026-07-10T10:10:21.096268", + "updated_at": "2026-07-10T10:10:21.096268", + "url": "/v1/games/ivry-for-steamvr-pico-app-installer" +} diff --git a/site/public/v1/games/ivry-gearvr-system-files-installer/index.json b/site/public/v1/games/ivry-gearvr-system-files-installer/index.json new file mode 100644 index 000000000000..f3587f6b78da --- /dev/null +++ b/site/public/v1/games/ivry-gearvr-system-files-installer/index.json @@ -0,0 +1,31 @@ +{ + "id": 74772, + "slug": "ivry-gearvr-system-files-installer", + "name": "iVRy GearVR System Files Installer", + "release_date": "2024-10-06", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Mediator Software" + ], + "publishers": [ + "Mediator Software" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130443417" + ], + "created_at": "2026-07-10T10:10:21.097269", + "updated_at": "2026-07-10T10:10:21.097269", + "url": "/v1/games/ivry-gearvr-system-files-installer" +} diff --git a/site/public/v1/games/ivry-monado-tracker-for-steamvr/index.json b/site/public/v1/games/ivry-monado-tracker-for-steamvr/index.json new file mode 100644 index 000000000000..15f989cd7199 --- /dev/null +++ b/site/public/v1/games/ivry-monado-tracker-for-steamvr/index.json @@ -0,0 +1,31 @@ +{ + "id": 74773, + "slug": "ivry-monado-tracker-for-steamvr", + "name": "IVRy Monado Tracker for SteamVR", + "release_date": "2023-03-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Mediator Software" + ], + "publishers": [ + "Mediator Software" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130436771" + ], + "created_at": "2026-07-10T10:10:21.097269", + "updated_at": "2026-07-10T10:10:21.097269", + "url": "/v1/games/ivry-monado-tracker-for-steamvr" +} diff --git a/site/public/v1/games/ivry-psmoveservice-driver-for-steamvr/index.json b/site/public/v1/games/ivry-psmoveservice-driver-for-steamvr/index.json new file mode 100644 index 000000000000..7b510983c0e5 --- /dev/null +++ b/site/public/v1/games/ivry-psmoveservice-driver-for-steamvr/index.json @@ -0,0 +1,31 @@ +{ + "id": 74774, + "slug": "ivry-psmoveservice-driver-for-steamvr", + "name": "iVRy PSMoveService Driver for SteamVR", + "release_date": "2020-02-29", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Mediator Software" + ], + "publishers": [ + "Mediator Software" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130436821" + ], + "created_at": "2026-07-10T10:10:21.097269", + "updated_at": "2026-07-10T10:10:21.097269", + "url": "/v1/games/ivry-psmoveservice-driver-for-steamvr" +} diff --git a/site/public/v1/games/ivy-park/index.json b/site/public/v1/games/ivy-park/index.json new file mode 100644 index 000000000000..5acf76de6708 --- /dev/null +++ b/site/public/v1/games/ivy-park/index.json @@ -0,0 +1,25 @@ +{ + "id": 74775, + "slug": "ivy-park", + "name": "Ivy Park", + "release_date": "2013-04-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112582102" + ], + "created_at": "2026-07-10T10:10:21.098268", + "updated_at": "2026-07-10T10:10:21.098268", + "url": "/v1/games/ivy-park" +} diff --git a/site/public/v1/games/ixion-saga/index.json b/site/public/v1/games/ixion-saga/index.json new file mode 100644 index 000000000000..10b1bbbd508f --- /dev/null +++ b/site/public/v1/games/ixion-saga/index.json @@ -0,0 +1,25 @@ +{ + "id": 74785, + "slug": "ixion-saga", + "name": "Ixion Saga", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140472087" + ], + "created_at": "2026-07-10T10:10:21.100276", + "updated_at": "2026-07-10T10:10:21.100276", + "url": "/v1/games/ixion-saga" +} diff --git a/site/public/v1/games/jack-in-a-castle-demo/index.json b/site/public/v1/games/jack-in-a-castle-demo/index.json new file mode 100644 index 000000000000..999e48702136 --- /dev/null +++ b/site/public/v1/games/jack-in-a-castle-demo/index.json @@ -0,0 +1,35 @@ +{ + "id": 74891, + "slug": "jack-in-a-castle-demo", + "name": "Jack-In-A-Castle Demo", + "release_date": "2019-05-10", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "visual novel", + "Boys' Love game" + ], + "stores": [], + "developers": [ + "Nemlei" + ], + "publishers": [ + "Nemlei" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123158329" + ], + "created_at": "2026-07-10T10:10:21.128427", + "updated_at": "2026-07-10T10:10:21.128427", + "url": "/v1/games/jack-in-a-castle-demo" +} diff --git a/site/public/v1/games/jagged-alliance-1-gold-edition/index.json b/site/public/v1/games/jagged-alliance-1-gold-edition/index.json new file mode 100644 index 000000000000..1c76c72569ec --- /dev/null +++ b/site/public/v1/games/jagged-alliance-1-gold-edition/index.json @@ -0,0 +1,30 @@ +{ + "id": 75014, + "slug": "jagged-alliance-1-gold-edition", + "name": "Jagged Alliance 1: Gold Edition", + "release_date": "1994-06-02", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "THQ Nordic" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122307685" + ], + "created_at": "2026-07-10T10:10:21.175792", + "updated_at": "2026-07-10T10:10:21.175792", + "url": "/v1/games/jagged-alliance-1-gold-edition" +} diff --git a/site/public/v1/games/jagged-alliance-2-gold/index.json b/site/public/v1/games/jagged-alliance-2-gold/index.json new file mode 100644 index 000000000000..dabdbb3b90db --- /dev/null +++ b/site/public/v1/games/jagged-alliance-2-gold/index.json @@ -0,0 +1,25 @@ +{ + "id": 75015, + "slug": "jagged-alliance-2-gold", + "name": "Jagged Alliance 2: Gold", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130570490" + ], + "created_at": "2026-07-10T10:10:21.175792", + "updated_at": "2026-07-10T10:10:21.175792", + "url": "/v1/games/jagged-alliance-2-gold" +} diff --git a/site/public/v1/games/jagged-alliance-world/index.json b/site/public/v1/games/jagged-alliance-world/index.json new file mode 100644 index 000000000000..d442b440b745 --- /dev/null +++ b/site/public/v1/games/jagged-alliance-world/index.json @@ -0,0 +1,25 @@ +{ + "id": 75025, + "slug": "jagged-alliance-world", + "name": "Jagged Alliance World", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130570496" + ], + "created_at": "2026-07-10T10:10:21.178792", + "updated_at": "2026-07-10T10:10:21.178792", + "url": "/v1/games/jagged-alliance-world" +} diff --git a/site/public/v1/games/jaguar-doom/index.json b/site/public/v1/games/jaguar-doom/index.json new file mode 100644 index 000000000000..74fd2663c6a9 --- /dev/null +++ b/site/public/v1/games/jaguar-doom/index.json @@ -0,0 +1,29 @@ +{ + "id": 75031, + "slug": "jaguar-doom", + "name": "Jaguar Doom", + "release_date": "1994-11-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Atari Jaguar" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Atari Corporation" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120689576" + ], + "created_at": "2026-07-10T10:10:21.180792", + "updated_at": "2026-07-10T10:10:21.180792", + "url": "/v1/games/jaguar-doom" +} diff --git a/site/public/v1/games/jailbreak-q97338690/index.json b/site/public/v1/games/jailbreak-q97338690/index.json new file mode 100644 index 000000000000..65f568f4e5eb --- /dev/null +++ b/site/public/v1/games/jailbreak-q97338690/index.json @@ -0,0 +1,29 @@ +{ + "id": 75045, + "slug": "jailbreak-q97338690", + "name": "Jailbreak", + "release_date": "2017-01-06", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "iOS", + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q97338690" + ], + "created_at": "2026-07-10T10:10:21.183793", + "updated_at": "2026-07-10T10:10:21.183793", + "url": "/v1/games/jailbreak-q97338690" +} diff --git a/site/public/v1/games/jak-and-daxter-collection/index.json b/site/public/v1/games/jak-and-daxter-collection/index.json new file mode 100644 index 000000000000..9ac897ee8826 --- /dev/null +++ b/site/public/v1/games/jak-and-daxter-collection/index.json @@ -0,0 +1,34 @@ +{ + "id": 75053, + "slug": "jak-and-daxter-collection", + "name": "Jak and Daxter Collection", + "release_date": "2012-02-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation Vita", + "PlayStation 3" + ], + "genres": [ + "platformer" + ], + "stores": [], + "developers": [ + "Naughty Dog" + ], + "publishers": [ + "Sony Interactive Entertainment" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q15141672" + ], + "created_at": "2026-07-10T10:10:21.185798", + "updated_at": "2026-07-10T10:10:21.185798", + "url": "/v1/games/jak-and-daxter-collection" +} diff --git a/site/public/v1/games/jampack/index.json b/site/public/v1/games/jampack/index.json new file mode 100644 index 000000000000..e737ad78629e --- /dev/null +++ b/site/public/v1/games/jampack/index.json @@ -0,0 +1,29 @@ +{ + "id": 75138, + "slug": "jampack", + "name": "Jampack", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [ + "Sony Group" + ], + "publishers": [ + "Ingram Entertainment Holdings Inc." + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6148143" + ], + "created_at": "2026-07-10T10:10:21.206844", + "updated_at": "2026-07-10T10:10:21.206844", + "url": "/v1/games/jampack" +} diff --git a/site/public/v1/games/japanese-nintendo-ds-release-of-chrono-trigger/index.json b/site/public/v1/games/japanese-nintendo-ds-release-of-chrono-trigger/index.json new file mode 100644 index 000000000000..e3ca487565a8 --- /dev/null +++ b/site/public/v1/games/japanese-nintendo-ds-release-of-chrono-trigger/index.json @@ -0,0 +1,27 @@ +{ + "id": 75207, + "slug": "japanese-nintendo-ds-release-of-chrono-trigger", + "name": "Japanese Nintendo DS Release of Chrono Trigger", + "release_date": "2008-11-20", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Nintendo DS" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q15063311" + ], + "created_at": "2026-07-10T10:10:21.225876", + "updated_at": "2026-07-10T10:10:21.225876", + "url": "/v1/games/japanese-nintendo-ds-release-of-chrono-trigger" +} diff --git a/site/public/v1/games/jdoom/index.json b/site/public/v1/games/jdoom/index.json new file mode 100644 index 000000000000..b55ad4f05221 --- /dev/null +++ b/site/public/v1/games/jdoom/index.json @@ -0,0 +1,25 @@ +{ + "id": 75298, + "slug": "jdoom", + "name": "JDoom", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11865438" + ], + "created_at": "2026-07-10T10:10:21.249605", + "updated_at": "2026-07-10T10:10:21.249605", + "url": "/v1/games/jdoom" +} diff --git a/site/public/v1/games/jeopardy-world-tour-q122932578/index.json b/site/public/v1/games/jeopardy-world-tour-q122932578/index.json new file mode 100644 index 000000000000..c151b3edc60a --- /dev/null +++ b/site/public/v1/games/jeopardy-world-tour-q122932578/index.json @@ -0,0 +1,28 @@ +{ + "id": 75411, + "slug": "jeopardy-world-tour-q122932578", + "name": "Jeopardy! World Tour+", + "release_date": "2023-10-06", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "iPadOS", + "iOS" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122932578" + ], + "created_at": "2026-07-10T10:10:21.279605", + "updated_at": "2026-07-10T10:10:21.279605", + "url": "/v1/games/jeopardy-world-tour-q122932578" +} diff --git a/site/public/v1/games/jerez-s-arena-series-bundle/index.json b/site/public/v1/games/jerez-s-arena-series-bundle/index.json new file mode 100644 index 000000000000..7cb81e81a1e1 --- /dev/null +++ b/site/public/v1/games/jerez-s-arena-series-bundle/index.json @@ -0,0 +1,34 @@ +{ + "id": 75422, + "slug": "jerez-s-arena-series-bundle", + "name": "Jerez's Arena Series Bundle", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "erotic video game", + "strategy video game", + "role-playing video game" + ], + "stores": [], + "developers": [], + "publishers": [ + "Eternal Alice Studio" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127754136" + ], + "created_at": "2026-07-10T10:10:21.282605", + "updated_at": "2026-07-10T10:10:21.282605", + "url": "/v1/games/jerez-s-arena-series-bundle" +} diff --git a/site/public/v1/games/jessballds/index.json b/site/public/v1/games/jessballds/index.json new file mode 100644 index 000000000000..179c429ff897 --- /dev/null +++ b/site/public/v1/games/jessballds/index.json @@ -0,0 +1,34 @@ +{ + "id": 75438, + "slug": "jessballds", + "name": "JessballDS", + "release_date": "2008-05-29", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Nintendo DS" + ], + "genres": [ + "action game", + "arcade" + ], + "stores": [], + "developers": [ + "Raúl Bojalil" + ], + "publishers": [ + "Raúl Bojalil" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123177942" + ], + "created_at": "2026-07-10T10:10:21.286694", + "updated_at": "2026-07-10T10:10:21.286694", + "url": "/v1/games/jessballds" +} diff --git a/site/public/v1/games/jetpack-joyride-deluxe/index.json b/site/public/v1/games/jetpack-joyride-deluxe/index.json new file mode 100644 index 000000000000..8c9280a0d531 --- /dev/null +++ b/site/public/v1/games/jetpack-joyride-deluxe/index.json @@ -0,0 +1,25 @@ +{ + "id": 75559, + "slug": "jetpack-joyride-deluxe", + "name": "Jetpack Joyride Deluxe", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107424218" + ], + "created_at": "2026-07-10T10:10:21.323605", + "updated_at": "2026-07-10T10:10:21.323605", + "url": "/v1/games/jetpack-joyride-deluxe" +} diff --git a/site/public/v1/games/jetpack-joyride-q107342969/index.json b/site/public/v1/games/jetpack-joyride-q107342969/index.json new file mode 100644 index 000000000000..6af55bbd7ce1 --- /dev/null +++ b/site/public/v1/games/jetpack-joyride-q107342969/index.json @@ -0,0 +1,32 @@ +{ + "id": 75560, + "slug": "jetpack-joyride-q107342969", + "name": "Jetpack Joyride+", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "iPadOS", + "iOS" + ], + "genres": [], + "stores": [], + "developers": [ + "Halfbrick Studios" + ], + "publishers": [ + "Halfbrick Studios" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107342969" + ], + "created_at": "2026-07-10T10:10:21.323605", + "updated_at": "2026-07-10T10:10:21.323605", + "url": "/v1/games/jetpack-joyride-q107342969" +} diff --git a/site/public/v1/games/jezzball-3ds/index.json b/site/public/v1/games/jezzball-3ds/index.json new file mode 100644 index 000000000000..4c836b97bad5 --- /dev/null +++ b/site/public/v1/games/jezzball-3ds/index.json @@ -0,0 +1,33 @@ +{ + "id": 75669, + "slug": "jezzball-3ds", + "name": "Jezzball 3DS", + "release_date": "2014-07-27", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Nintendo 3DS" + ], + "genres": [ + "arcade" + ], + "stores": [], + "developers": [ + "Raúl Bojalil" + ], + "publishers": [ + "Raúl Bojalil" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123177939" + ], + "created_at": "2026-07-10T10:10:21.352141", + "updated_at": "2026-07-10T10:10:21.352141", + "url": "/v1/games/jezzball-3ds" +} diff --git a/site/public/v1/games/jezzballu/index.json b/site/public/v1/games/jezzballu/index.json new file mode 100644 index 000000000000..53f50932370f --- /dev/null +++ b/site/public/v1/games/jezzballu/index.json @@ -0,0 +1,33 @@ +{ + "id": 75673, + "slug": "jezzballu", + "name": "JezzBallU", + "release_date": "2021-10-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Wii U" + ], + "genres": [ + "arcade" + ], + "stores": [], + "developers": [ + "Raúl Bojalil" + ], + "publishers": [ + "Raúl Bojalil" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123177623" + ], + "created_at": "2026-07-10T10:10:21.353143", + "updated_at": "2026-07-10T10:10:21.353143", + "url": "/v1/games/jezzballu" +} diff --git a/site/public/v1/games/jigsaw-puzzle-by-mobilityware/index.json b/site/public/v1/games/jigsaw-puzzle-by-mobilityware/index.json new file mode 100644 index 000000000000..d8730d541467 --- /dev/null +++ b/site/public/v1/games/jigsaw-puzzle-by-mobilityware/index.json @@ -0,0 +1,30 @@ +{ + "id": 75731, + "slug": "jigsaw-puzzle-by-mobilityware", + "name": "Jigsaw Puzzle by MobilityWare+", + "release_date": "2022-06-10", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "iPadOS", + "iOS" + ], + "genres": [ + "jigsaw puzzle video game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112230706" + ], + "created_at": "2026-07-10T10:10:21.368142", + "updated_at": "2026-07-10T10:10:21.368142", + "url": "/v1/games/jigsaw-puzzle-by-mobilityware" +} diff --git a/site/public/v1/games/jill-of-the-jungle-the-complete-trilogy/index.json b/site/public/v1/games/jill-of-the-jungle-the-complete-trilogy/index.json new file mode 100644 index 000000000000..14779fcb9060 --- /dev/null +++ b/site/public/v1/games/jill-of-the-jungle-the-complete-trilogy/index.json @@ -0,0 +1,25 @@ +{ + "id": 75818, + "slug": "jill-of-the-jungle-the-complete-trilogy", + "name": "Jill of the Jungle: The Complete Trilogy", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q78859547" + ], + "created_at": "2026-07-10T10:10:21.391217", + "updated_at": "2026-07-10T10:10:21.391217", + "url": "/v1/games/jill-of-the-jungle-the-complete-trilogy" +} diff --git a/site/public/v1/games/jimmy-s-vendetta/index.json b/site/public/v1/games/jimmy-s-vendetta/index.json new file mode 100644 index 000000000000..9c08f18e642d --- /dev/null +++ b/site/public/v1/games/jimmy-s-vendetta/index.json @@ -0,0 +1,34 @@ +{ + "id": 75845, + "slug": "jimmy-s-vendetta", + "name": "Jimmy's Vendetta", + "release_date": "2010-09-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "PlayStation 3", + "Microsoft Windows" + ], + "genres": [ + "action-adventure game", + "third-person shooter" + ], + "stores": [], + "developers": [], + "publishers": [ + "2K" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q114837811" + ], + "created_at": "2026-07-10T10:10:21.398139", + "updated_at": "2026-07-10T10:10:21.398139", + "url": "/v1/games/jimmy-s-vendetta" +} diff --git a/site/public/v1/games/joe-dever-s-lone-wolf-console-edition/index.json b/site/public/v1/games/joe-dever-s-lone-wolf-console-edition/index.json new file mode 100644 index 000000000000..5ded6aeff057 --- /dev/null +++ b/site/public/v1/games/joe-dever-s-lone-wolf-console-edition/index.json @@ -0,0 +1,25 @@ +{ + "id": 75945, + "slug": "joe-dever-s-lone-wolf-console-edition", + "name": "Joe Dever's Lone Wolf Console Edition", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q90134086" + ], + "created_at": "2026-07-10T10:10:21.425194", + "updated_at": "2026-07-10T10:10:21.425194", + "url": "/v1/games/joe-dever-s-lone-wolf-console-edition" +} diff --git a/site/public/v1/games/joequake/index.json b/site/public/v1/games/joequake/index.json new file mode 100644 index 000000000000..783a65d0675a --- /dev/null +++ b/site/public/v1/games/joequake/index.json @@ -0,0 +1,29 @@ +{ + "id": 75969, + "slug": "joequake", + "name": "JoeQuake", + "release_date": "2006-05-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124581254" + ], + "created_at": "2026-07-10T10:10:21.431201", + "updated_at": "2026-07-10T10:10:21.431201", + "url": "/v1/games/joequake" +} diff --git a/site/public/v1/games/joint-operations-escalation/index.json b/site/public/v1/games/joint-operations-escalation/index.json new file mode 100644 index 000000000000..8c41bebd0876 --- /dev/null +++ b/site/public/v1/games/joint-operations-escalation/index.json @@ -0,0 +1,27 @@ +{ + "id": 76043, + "slug": "joint-operations-escalation", + "name": "Joint Operations: Escalation", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4041867" + ], + "created_at": "2026-07-10T10:10:21.451483", + "updated_at": "2026-07-10T10:10:21.451483", + "url": "/v1/games/joint-operations-escalation" +} diff --git a/site/public/v1/games/jojo-s-bizarre-adventure-all-star-battle-r-deluxe-edition/index.json b/site/public/v1/games/jojo-s-bizarre-adventure-all-star-battle-r-deluxe-edition/index.json new file mode 100644 index 000000000000..d9c24fa42158 --- /dev/null +++ b/site/public/v1/games/jojo-s-bizarre-adventure-all-star-battle-r-deluxe-edition/index.json @@ -0,0 +1,31 @@ +{ + "id": 76048, + "slug": "jojo-s-bizarre-adventure-all-star-battle-r-deluxe-edition", + "name": "JoJo's Bizarre Adventure: All-Star Battle R Deluxe Edition", + "release_date": "2022-09-02", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S" + ], + "genres": [], + "stores": [], + "developers": [ + "CyberConnect2" + ], + "publishers": [ + "Bandai Namco Entertainment" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116160421" + ], + "created_at": "2026-07-10T10:10:21.451483", + "updated_at": "2026-07-10T10:10:21.451483", + "url": "/v1/games/jojo-s-bizarre-adventure-all-star-battle-r-deluxe-edition" +} diff --git a/site/public/v1/games/jojo-s-burger-match/index.json b/site/public/v1/games/jojo-s-burger-match/index.json new file mode 100644 index 000000000000..54c21523f15d --- /dev/null +++ b/site/public/v1/games/jojo-s-burger-match/index.json @@ -0,0 +1,25 @@ +{ + "id": 76056, + "slug": "jojo-s-burger-match", + "name": "Jojo's Burger Match", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q128014890" + ], + "created_at": "2026-07-10T10:10:21.454792", + "updated_at": "2026-07-10T10:10:21.454792", + "url": "/v1/games/jojo-s-burger-match" +} diff --git a/site/public/v1/games/jonny-blastoff-and-the-kremling-armada/index.json b/site/public/v1/games/jonny-blastoff-and-the-kremling-armada/index.json new file mode 100644 index 000000000000..61bd804ace95 --- /dev/null +++ b/site/public/v1/games/jonny-blastoff-and-the-kremling-armada/index.json @@ -0,0 +1,25 @@ +{ + "id": 76097, + "slug": "jonny-blastoff-and-the-kremling-armada", + "name": "Jonny Blastoff and the Kremling Armada", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123492785" + ], + "created_at": "2026-07-10T10:10:21.467092", + "updated_at": "2026-07-10T10:10:21.467092", + "url": "/v1/games/jonny-blastoff-and-the-kremling-armada" +} diff --git a/site/public/v1/games/journey-to-the-savage-planet-employee-of-the-month/index.json b/site/public/v1/games/journey-to-the-savage-planet-employee-of-the-month/index.json new file mode 100644 index 000000000000..4e80f588af3e --- /dev/null +++ b/site/public/v1/games/journey-to-the-savage-planet-employee-of-the-month/index.json @@ -0,0 +1,31 @@ +{ + "id": 76197, + "slug": "journey-to-the-savage-planet-employee-of-the-month", + "name": "Journey To The Savage Planet: Employee Of The Month", + "release_date": "2023-02-14", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S" + ], + "genres": [], + "stores": [], + "developers": [ + "Raccoon Logic" + ], + "publishers": [ + "505 Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120802329" + ], + "created_at": "2026-07-10T10:10:21.497105", + "updated_at": "2026-07-10T10:10:21.497105", + "url": "/v1/games/journey-to-the-savage-planet-employee-of-the-month" +} diff --git a/site/public/v1/games/jugame/index.json b/site/public/v1/games/jugame/index.json new file mode 100644 index 000000000000..dcb08f8b5896 --- /dev/null +++ b/site/public/v1/games/jugame/index.json @@ -0,0 +1,25 @@ +{ + "id": 76309, + "slug": "jugame", + "name": "JuGame", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135094741" + ], + "created_at": "2026-07-10T10:10:21.528892", + "updated_at": "2026-07-10T10:10:21.528892", + "url": "/v1/games/jugame" +} diff --git a/site/public/v1/games/juggler-q11309718/index.json b/site/public/v1/games/juggler-q11309718/index.json new file mode 100644 index 000000000000..1ea41c8465c4 --- /dev/null +++ b/site/public/v1/games/juggler-q11309718/index.json @@ -0,0 +1,27 @@ +{ + "id": 76314, + "slug": "juggler-q11309718", + "name": "JUGGLER", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [ + "Kita Denshi" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11309718" + ], + "created_at": "2026-07-10T10:10:21.530901", + "updated_at": "2026-07-10T10:10:21.530901", + "url": "/v1/games/juggler-q11309718" +} diff --git a/site/public/v1/games/juggler-q113518288/index.json b/site/public/v1/games/juggler-q113518288/index.json new file mode 100644 index 000000000000..11c7339b5e94 --- /dev/null +++ b/site/public/v1/games/juggler-q113518288/index.json @@ -0,0 +1,29 @@ +{ + "id": 76315, + "slug": "juggler-q113518288", + "name": "Juggler", + "release_date": "1986-11-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Commodore Amiga" + ], + "genres": [], + "stores": [], + "developers": [ + "Eric Graham" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113518288" + ], + "created_at": "2026-07-10T10:10:21.530901", + "updated_at": "2026-07-10T10:10:21.530901", + "url": "/v1/games/juggler-q113518288" +} diff --git a/site/public/v1/games/jump-and-roll/index.json b/site/public/v1/games/jump-and-roll/index.json new file mode 100644 index 000000000000..fff7930623fa --- /dev/null +++ b/site/public/v1/games/jump-and-roll/index.json @@ -0,0 +1,31 @@ +{ + "id": 76369, + "slug": "jump-and-roll", + "name": "Jump and Roll", + "release_date": "2021-12-02", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S" + ], + "genres": [], + "stores": [], + "developers": [ + "Poor Cat" + ], + "publishers": [ + "Poor Cat" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109977727" + ], + "created_at": "2026-07-10T10:10:21.545532", + "updated_at": "2026-07-10T10:10:21.545532", + "url": "/v1/games/jump-and-roll" +} diff --git a/site/public/v1/games/jumpgate-evolution/index.json b/site/public/v1/games/jumpgate-evolution/index.json new file mode 100644 index 000000000000..f8a1d16c8ca2 --- /dev/null +++ b/site/public/v1/games/jumpgate-evolution/index.json @@ -0,0 +1,35 @@ +{ + "id": 76482, + "slug": "jumpgate-evolution", + "name": "Jumpgate Evolution", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "space flight simulation game", + "science fiction video game", + "space trading and combat game" + ], + "stores": [], + "developers": [ + "NetDevil" + ], + "publishers": [ + "Codemasters" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6311246" + ], + "created_at": "2026-07-10T10:10:21.575500", + "updated_at": "2026-07-10T10:10:21.575500", + "url": "/v1/games/jumpgate-evolution" +} diff --git a/site/public/v1/games/jumpy-cat/index.json b/site/public/v1/games/jumpy-cat/index.json new file mode 100644 index 000000000000..81a32cda4953 --- /dev/null +++ b/site/public/v1/games/jumpy-cat/index.json @@ -0,0 +1,31 @@ +{ + "id": 76579, + "slug": "jumpy-cat", + "name": "Jumpy Cat", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Wii U" + ], + "genres": [ + "2D platform game" + ], + "stores": [], + "developers": [], + "publishers": [ + "Ninja Pig Studios" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q129052911" + ], + "created_at": "2026-07-10T10:10:21.603418", + "updated_at": "2026-07-10T10:10:21.603418", + "url": "/v1/games/jumpy-cat" +} diff --git a/site/public/v1/games/jurassic-park-survival-q123699010/index.json b/site/public/v1/games/jurassic-park-survival-q123699010/index.json new file mode 100644 index 000000000000..d47cffc5b5b4 --- /dev/null +++ b/site/public/v1/games/jurassic-park-survival-q123699010/index.json @@ -0,0 +1,35 @@ +{ + "id": 76720, + "slug": "jurassic-park-survival-q123699010", + "name": "Jurassic Park Survival", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 5", + "Microsoft Windows" + ], + "genres": [ + "action-adventure game" + ], + "stores": [], + "developers": [ + "Saber Interactive" + ], + "publishers": [ + "Saber Interactive" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123699010" + ], + "created_at": "2026-07-10T10:10:21.642040", + "updated_at": "2026-07-10T10:10:21.642040", + "url": "/v1/games/jurassic-park-survival-q123699010" +} diff --git a/site/public/v1/games/jurassic-world-evolution-complete-edition/index.json b/site/public/v1/games/jurassic-world-evolution-complete-edition/index.json new file mode 100644 index 000000000000..8e5419d0f01d --- /dev/null +++ b/site/public/v1/games/jurassic-world-evolution-complete-edition/index.json @@ -0,0 +1,25 @@ +{ + "id": 76733, + "slug": "jurassic-world-evolution-complete-edition", + "name": "Jurassic World Evolution: Complete Edition", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127157726" + ], + "created_at": "2026-07-10T10:10:21.645108", + "updated_at": "2026-07-10T10:10:21.645108", + "url": "/v1/games/jurassic-world-evolution-complete-edition" +} diff --git a/site/public/v1/games/just-cause-3-mech-land-assault/index.json b/site/public/v1/games/just-cause-3-mech-land-assault/index.json new file mode 100644 index 000000000000..5e973ca891bd --- /dev/null +++ b/site/public/v1/games/just-cause-3-mech-land-assault/index.json @@ -0,0 +1,25 @@ +{ + "id": 76801, + "slug": "just-cause-3-mech-land-assault", + "name": "Just Cause 3: Mech Land Assault", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127270848" + ], + "created_at": "2026-07-10T10:10:21.664052", + "updated_at": "2026-07-10T10:10:21.664052", + "url": "/v1/games/just-cause-3-mech-land-assault" +} diff --git a/site/public/v1/games/just-cause-demo/index.json b/site/public/v1/games/just-cause-demo/index.json new file mode 100644 index 000000000000..c805a1fbbc65 --- /dev/null +++ b/site/public/v1/games/just-cause-demo/index.json @@ -0,0 +1,34 @@ +{ + "id": 76805, + "slug": "just-cause-demo", + "name": "Just Cause Demo", + "release_date": "2006-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "third-person shooter" + ], + "stores": [], + "developers": [ + "Avalanche Studios Group" + ], + "publishers": [ + "Square Enix", + "Eidos Interactive" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63341536" + ], + "created_at": "2026-07-10T10:10:21.664052", + "updated_at": "2026-07-10T10:10:21.664052", + "url": "/v1/games/just-cause-demo" +} diff --git a/site/public/v1/games/kaboom-the-suicide-bombing-game/index.json b/site/public/v1/games/kaboom-the-suicide-bombing-game/index.json new file mode 100644 index 000000000000..006287c69657 --- /dev/null +++ b/site/public/v1/games/kaboom-the-suicide-bombing-game/index.json @@ -0,0 +1,31 @@ +{ + "id": 77077, + "slug": "kaboom-the-suicide-bombing-game", + "name": "Kaboom: The Suicide Bombing Game", + "release_date": "2002-04-17", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "personal computer" + ], + "genres": [], + "stores": [], + "developers": [ + "fabulous999" + ], + "publishers": [ + "fabulous999" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16259721" + ], + "created_at": "2026-07-10T10:10:21.738060", + "updated_at": "2026-07-10T10:10:21.738060", + "url": "/v1/games/kaboom-the-suicide-bombing-game" +} diff --git a/site/public/v1/games/kaiju-paradise/index.json b/site/public/v1/games/kaiju-paradise/index.json new file mode 100644 index 000000000000..b6576c37d7e2 --- /dev/null +++ b/site/public/v1/games/kaiju-paradise/index.json @@ -0,0 +1,25 @@ +{ + "id": 77156, + "slug": "kaiju-paradise", + "name": "Kaiju Paradise", + "release_date": "2021-03-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137363224" + ], + "created_at": "2026-07-10T10:10:21.759573", + "updated_at": "2026-07-10T10:10:21.759573", + "url": "/v1/games/kaiju-paradise" +} diff --git a/site/public/v1/games/kaio-king-of-pirates/index.json b/site/public/v1/games/kaio-king-of-pirates/index.json new file mode 100644 index 000000000000..2ce4c9a980c5 --- /dev/null +++ b/site/public/v1/games/kaio-king-of-pirates/index.json @@ -0,0 +1,35 @@ +{ + "id": 77168, + "slug": "kaio-king-of-pirates", + "name": "Kaio: King of Pirates", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Nintendo 3DS" + ], + "genres": [ + "adventure video game", + "action game", + "action-adventure game" + ], + "stores": [], + "developers": [ + "Level-5 Comcept" + ], + "publishers": [ + "Marvelous" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6348166" + ], + "created_at": "2026-07-10T10:10:21.761572", + "updated_at": "2026-07-10T10:10:21.761572", + "url": "/v1/games/kaio-king-of-pirates" +} diff --git a/site/public/v1/games/kaiserreich/index.json b/site/public/v1/games/kaiserreich/index.json new file mode 100644 index 000000000000..4cdc62ad33fc --- /dev/null +++ b/site/public/v1/games/kaiserreich/index.json @@ -0,0 +1,31 @@ +{ + "id": 77183, + "slug": "kaiserreich", + "name": "Kaiserreich", + "release_date": "2016-12-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "alternate history", + "grand strategy wargame" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q102334825" + ], + "created_at": "2026-07-10T10:10:21.765574", + "updated_at": "2026-07-10T10:10:21.765574", + "url": "/v1/games/kaiserreich" +} diff --git a/site/public/v1/games/kakuro-q212785/index.json b/site/public/v1/games/kakuro-q212785/index.json new file mode 100644 index 000000000000..1af0738bc87c --- /dev/null +++ b/site/public/v1/games/kakuro-q212785/index.json @@ -0,0 +1,25 @@ +{ + "id": 77234, + "slug": "kakuro-q212785", + "name": "kakuro", + "release_date": "1966-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q212785" + ], + "created_at": "2026-07-10T10:10:21.780575", + "updated_at": "2026-07-10T10:10:21.780575", + "url": "/v1/games/kakuro-q212785" +} diff --git a/site/public/v1/games/kala-hunter-support-class/index.json b/site/public/v1/games/kala-hunter-support-class/index.json new file mode 100644 index 000000000000..dd1a77bceb05 --- /dev/null +++ b/site/public/v1/games/kala-hunter-support-class/index.json @@ -0,0 +1,32 @@ +{ + "id": 77241, + "slug": "kala-hunter-support-class", + "name": "Kala - Hunter (Support Class)", + "release_date": "2016-01-26", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "science fiction video game" + ], + "stores": [], + "developers": [], + "publishers": [ + "2K" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124637448" + ], + "created_at": "2026-07-10T10:10:21.782629", + "updated_at": "2026-07-10T10:10:21.782629", + "url": "/v1/games/kala-hunter-support-class" +} diff --git a/site/public/v1/games/kamen-rider-buttoba-soul/index.json b/site/public/v1/games/kamen-rider-buttoba-soul/index.json new file mode 100644 index 000000000000..eb759f54b2df --- /dev/null +++ b/site/public/v1/games/kamen-rider-buttoba-soul/index.json @@ -0,0 +1,25 @@ +{ + "id": 77294, + "slug": "kamen-rider-buttoba-soul", + "name": "Kamen Rider Buttoba Soul", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q30935720" + ], + "created_at": "2026-07-10T10:10:21.797573", + "updated_at": "2026-07-10T10:10:21.797573", + "url": "/v1/games/kamen-rider-buttoba-soul" +} diff --git a/site/public/v1/games/kao-the-kangaroo-q110247557/index.json b/site/public/v1/games/kao-the-kangaroo-q110247557/index.json new file mode 100644 index 000000000000..b5691cad780c --- /dev/null +++ b/site/public/v1/games/kao-the-kangaroo-q110247557/index.json @@ -0,0 +1,36 @@ +{ + "id": 77456, + "slug": "kao-the-kangaroo-q110247557", + "name": "Kao the Kangaroo", + "release_date": "2022-05-27", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 5", + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "platformer" + ], + "stores": [], + "developers": [ + "Tate Multimedia" + ], + "publishers": [ + "Tate Multimedia" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110247557" + ], + "created_at": "2026-07-10T10:10:21.838647", + "updated_at": "2026-07-10T10:10:21.838647", + "url": "/v1/games/kao-the-kangaroo-q110247557" +} diff --git a/site/public/v1/games/karamari-hospital-ost/index.json b/site/public/v1/games/karamari-hospital-ost/index.json new file mode 100644 index 000000000000..de9171f15396 --- /dev/null +++ b/site/public/v1/games/karamari-hospital-ost/index.json @@ -0,0 +1,27 @@ +{ + "id": 77500, + "slug": "karamari-hospital-ost", + "name": "Karamari Hospital OST", + "release_date": "2015-12-29", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "chiptune" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q66309435" + ], + "created_at": "2026-07-10T10:10:21.850224", + "updated_at": "2026-07-10T10:10:21.850224", + "url": "/v1/games/karamari-hospital-ost" +} diff --git a/site/public/v1/games/karamari-hospital/index.json b/site/public/v1/games/karamari-hospital/index.json new file mode 100644 index 000000000000..3e65126e6ba4 --- /dev/null +++ b/site/public/v1/games/karamari-hospital/index.json @@ -0,0 +1,33 @@ +{ + "id": 77501, + "slug": "karamari-hospital", + "name": "Karamari Hospital", + "release_date": "2015-12-29", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "survival horror" + ], + "stores": [], + "developers": [ + "Lag Studios" + ], + "publishers": [ + "Lag Studios" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q66226662" + ], + "created_at": "2026-07-10T10:10:21.850224", + "updated_at": "2026-07-10T10:10:21.850224", + "url": "/v1/games/karamari-hospital" +} diff --git a/site/public/v1/games/katago/index.json b/site/public/v1/games/katago/index.json new file mode 100644 index 000000000000..a0095a64c3bc --- /dev/null +++ b/site/public/v1/games/katago/index.json @@ -0,0 +1,25 @@ +{ + "id": 77688, + "slug": "katago", + "name": "KataGo", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q85872985" + ], + "created_at": "2026-07-10T10:10:21.900287", + "updated_at": "2026-07-10T10:10:21.900287", + "url": "/v1/games/katago" +} diff --git a/site/public/v1/games/kecleon-bazaar/index.json b/site/public/v1/games/kecleon-bazaar/index.json new file mode 100644 index 000000000000..b32abab2e908 --- /dev/null +++ b/site/public/v1/games/kecleon-bazaar/index.json @@ -0,0 +1,25 @@ +{ + "id": 77840, + "slug": "kecleon-bazaar", + "name": "Kecleon Bazaar", + "release_date": "2013-04-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112582108" + ], + "created_at": "2026-07-10T10:10:21.940380", + "updated_at": "2026-07-10T10:10:21.940380", + "url": "/v1/games/kecleon-bazaar" +} diff --git a/site/public/v1/games/kentucky-route-zero-act-i/index.json b/site/public/v1/games/kentucky-route-zero-act-i/index.json new file mode 100644 index 000000000000..3fa4d5756fca --- /dev/null +++ b/site/public/v1/games/kentucky-route-zero-act-i/index.json @@ -0,0 +1,34 @@ +{ + "id": 78039, + "slug": "kentucky-route-zero-act-i", + "name": "Kentucky Route Zero: Act I", + "release_date": "2013-01-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "adventure video game" + ], + "stores": [], + "developers": [ + "Cardboard Computer" + ], + "publishers": [ + "Cardboard Computer" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136511262" + ], + "created_at": "2026-07-10T10:10:21.995062", + "updated_at": "2026-07-10T10:10:21.995062", + "url": "/v1/games/kentucky-route-zero-act-i" +} diff --git a/site/public/v1/games/kentucky-route-zero-act-ii/index.json b/site/public/v1/games/kentucky-route-zero-act-ii/index.json new file mode 100644 index 000000000000..8d69349258ac --- /dev/null +++ b/site/public/v1/games/kentucky-route-zero-act-ii/index.json @@ -0,0 +1,34 @@ +{ + "id": 78040, + "slug": "kentucky-route-zero-act-ii", + "name": "Kentucky Route Zero: Act II", + "release_date": "2013-05-31", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "adventure video game" + ], + "stores": [], + "developers": [ + "Cardboard Computer" + ], + "publishers": [ + "Cardboard Computer" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136511385" + ], + "created_at": "2026-07-10T10:10:21.995062", + "updated_at": "2026-07-10T10:10:21.995062", + "url": "/v1/games/kentucky-route-zero-act-ii" +} diff --git a/site/public/v1/games/kentucky-route-zero-act-iii/index.json b/site/public/v1/games/kentucky-route-zero-act-iii/index.json new file mode 100644 index 000000000000..662e9bc5b125 --- /dev/null +++ b/site/public/v1/games/kentucky-route-zero-act-iii/index.json @@ -0,0 +1,34 @@ +{ + "id": 78041, + "slug": "kentucky-route-zero-act-iii", + "name": "Kentucky Route Zero: Act III", + "release_date": "2014-05-06", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "adventure video game" + ], + "stores": [], + "developers": [ + "Cardboard Computer" + ], + "publishers": [ + "Cardboard Computer" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136511386" + ], + "created_at": "2026-07-10T10:10:21.995062", + "updated_at": "2026-07-10T10:10:21.995062", + "url": "/v1/games/kentucky-route-zero-act-iii" +} diff --git a/site/public/v1/games/kentucky-route-zero-act-iv/index.json b/site/public/v1/games/kentucky-route-zero-act-iv/index.json new file mode 100644 index 000000000000..c95a44e47ec8 --- /dev/null +++ b/site/public/v1/games/kentucky-route-zero-act-iv/index.json @@ -0,0 +1,33 @@ +{ + "id": 78042, + "slug": "kentucky-route-zero-act-iv", + "name": "Kentucky Route Zero: Act IV", + "release_date": "2016-07-19", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "adventure video game" + ], + "stores": [], + "developers": [ + "Cardboard Computer" + ], + "publishers": [ + "Cardboard Computer" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136511387" + ], + "created_at": "2026-07-10T10:10:21.995062", + "updated_at": "2026-07-10T10:10:21.995062", + "url": "/v1/games/kentucky-route-zero-act-iv" +} diff --git a/site/public/v1/games/kentucky-route-zero-act-v/index.json b/site/public/v1/games/kentucky-route-zero-act-v/index.json new file mode 100644 index 000000000000..7cd6079c25c7 --- /dev/null +++ b/site/public/v1/games/kentucky-route-zero-act-v/index.json @@ -0,0 +1,34 @@ +{ + "id": 78043, + "slug": "kentucky-route-zero-act-v", + "name": "Kentucky Route Zero: Act V", + "release_date": "2020-01-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "adventure video game" + ], + "stores": [], + "developers": [ + "Cardboard Computer" + ], + "publishers": [ + "Cardboard Computer" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136511388" + ], + "created_at": "2026-07-10T10:10:21.995062", + "updated_at": "2026-07-10T10:10:21.995062", + "url": "/v1/games/kentucky-route-zero-act-v" +} diff --git a/site/public/v1/games/kestrel-q110291209/index.json b/site/public/v1/games/kestrel-q110291209/index.json new file mode 100644 index 000000000000..14c9fb79f227 --- /dev/null +++ b/site/public/v1/games/kestrel-q110291209/index.json @@ -0,0 +1,27 @@ +{ + "id": 78083, + "slug": "kestrel-q110291209", + "name": "Kestrel", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "first-person shooter" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110291209" + ], + "created_at": "2026-07-10T10:10:22.006522", + "updated_at": "2026-07-10T10:10:22.006522", + "url": "/v1/games/kestrel-q110291209" +} diff --git a/site/public/v1/games/keyball/index.json b/site/public/v1/games/keyball/index.json new file mode 100644 index 000000000000..ee0466bb76ad --- /dev/null +++ b/site/public/v1/games/keyball/index.json @@ -0,0 +1,27 @@ +{ + "id": 78115, + "slug": "keyball", + "name": "Keyball", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "association football video game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q12321754" + ], + "created_at": "2026-07-10T10:10:22.014525", + "updated_at": "2026-07-10T10:10:22.014525", + "url": "/v1/games/keyball" +} diff --git a/site/public/v1/games/kfmod/index.json b/site/public/v1/games/kfmod/index.json new file mode 100644 index 000000000000..79670095d884 --- /dev/null +++ b/site/public/v1/games/kfmod/index.json @@ -0,0 +1,34 @@ +{ + "id": 78163, + "slug": "kfmod", + "name": "KFMod", + "release_date": "2005-08-31", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "survival horror" + ], + "stores": [], + "developers": [ + "Shatterline Productions" + ], + "publishers": [ + "Shatterline Productions" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q59398000" + ], + "created_at": "2026-07-10T10:10:22.027609", + "updated_at": "2026-07-10T10:10:22.027609", + "url": "/v1/games/kfmod" +} diff --git a/site/public/v1/games/kick-off-2-giants-of-europe/index.json b/site/public/v1/games/kick-off-2-giants-of-europe/index.json new file mode 100644 index 000000000000..4410a2c3db42 --- /dev/null +++ b/site/public/v1/games/kick-off-2-giants-of-europe/index.json @@ -0,0 +1,25 @@ +{ + "id": 78228, + "slug": "kick-off-2-giants-of-europe", + "name": "Kick Off 2: Giants Of Europe", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126185325" + ], + "created_at": "2026-07-10T10:10:22.044344", + "updated_at": "2026-07-10T10:10:22.044344", + "url": "/v1/games/kick-off-2-giants-of-europe" +} diff --git a/site/public/v1/games/kick-off-2-return-to-europe/index.json b/site/public/v1/games/kick-off-2-return-to-europe/index.json new file mode 100644 index 000000000000..57cfbf06e5f4 --- /dev/null +++ b/site/public/v1/games/kick-off-2-return-to-europe/index.json @@ -0,0 +1,25 @@ +{ + "id": 78229, + "slug": "kick-off-2-return-to-europe", + "name": "Kick Off 2: Return To Europe", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126185007" + ], + "created_at": "2026-07-10T10:10:22.044344", + "updated_at": "2026-07-10T10:10:22.044344", + "url": "/v1/games/kick-off-2-return-to-europe" +} diff --git a/site/public/v1/games/kick-off-2-the-final-whistle/index.json b/site/public/v1/games/kick-off-2-the-final-whistle/index.json new file mode 100644 index 000000000000..9ff99186a211 --- /dev/null +++ b/site/public/v1/games/kick-off-2-the-final-whistle/index.json @@ -0,0 +1,25 @@ +{ + "id": 78230, + "slug": "kick-off-2-the-final-whistle", + "name": "Kick Off 2: The Final Whistle", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q55587234" + ], + "created_at": "2026-07-10T10:10:22.045364", + "updated_at": "2026-07-10T10:10:22.045364", + "url": "/v1/games/kick-off-2-the-final-whistle" +} diff --git a/site/public/v1/games/kickster-online-street-soccer/index.json b/site/public/v1/games/kickster-online-street-soccer/index.json new file mode 100644 index 000000000000..1dd055b0ed64 --- /dev/null +++ b/site/public/v1/games/kickster-online-street-soccer/index.json @@ -0,0 +1,25 @@ +{ + "id": 78259, + "slug": "kickster-online-street-soccer", + "name": "Kickster Online Street Soccer", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140471251" + ], + "created_at": "2026-07-10T10:10:22.053272", + "updated_at": "2026-07-10T10:10:22.053272", + "url": "/v1/games/kickster-online-street-soccer" +} diff --git a/site/public/v1/games/kid-icarus-uprising/index.json b/site/public/v1/games/kid-icarus-uprising/index.json new file mode 100644 index 000000000000..6be2eac15bc8 --- /dev/null +++ b/site/public/v1/games/kid-icarus-uprising/index.json @@ -0,0 +1,37 @@ +{ + "id": 78279, + "slug": "kid-icarus-uprising", + "name": "Kid Icarus: Uprising", + "release_date": "2012-03-22", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Nintendo 3DS" + ], + "genres": [ + "adventure video game", + "action game", + "action-adventure game", + "third-person shooter" + ], + "stores": [], + "developers": [ + "Project Sora", + "Sora Ltd." + ], + "publishers": [ + "Nintendo" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1506975" + ], + "created_at": "2026-07-10T10:10:22.057353", + "updated_at": "2026-07-10T10:10:22.057353", + "url": "/v1/games/kid-icarus-uprising" +} diff --git a/site/public/v1/games/kidz-sports-american-football/index.json b/site/public/v1/games/kidz-sports-american-football/index.json new file mode 100644 index 000000000000..cb59519fece4 --- /dev/null +++ b/site/public/v1/games/kidz-sports-american-football/index.json @@ -0,0 +1,31 @@ +{ + "id": 78353, + "slug": "kidz-sports-american-football", + "name": "Kidz Sports: American Football", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Wii" + ], + "genres": [ + "American football video game" + ], + "stores": [], + "developers": [ + "Data Design Interactive" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q97328070" + ], + "created_at": "2026-07-10T10:10:22.076275", + "updated_at": "2026-07-10T10:10:22.077272", + "url": "/v1/games/kidz-sports-american-football" +} diff --git a/site/public/v1/games/kidz-sports-baseball/index.json b/site/public/v1/games/kidz-sports-baseball/index.json new file mode 100644 index 000000000000..9fb6555648b9 --- /dev/null +++ b/site/public/v1/games/kidz-sports-baseball/index.json @@ -0,0 +1,34 @@ +{ + "id": 78354, + "slug": "kidz-sports-baseball", + "name": "Kidz Sports: Baseball", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Wii" + ], + "genres": [ + "baseball video game" + ], + "stores": [], + "developers": [ + "Data Design Interactive" + ], + "publishers": [ + "Data Design Interactive", + "Popcorn Arcade" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q64424654" + ], + "created_at": "2026-07-10T10:10:22.077272", + "updated_at": "2026-07-10T10:10:22.077272", + "url": "/v1/games/kidz-sports-baseball" +} diff --git a/site/public/v1/games/kill-the-hentai-adult-patch-18/index.json b/site/public/v1/games/kill-the-hentai-adult-patch-18/index.json new file mode 100644 index 000000000000..36611840ec20 --- /dev/null +++ b/site/public/v1/games/kill-the-hentai-adult-patch-18/index.json @@ -0,0 +1,35 @@ +{ + "id": 78452, + "slug": "kill-the-hentai-adult-patch-18", + "name": "Kill the Hentai - Adult Patch 18+", + "release_date": "2019-10-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "action game", + "erotic video game" + ], + "stores": [], + "developers": [ + "LoveAnime" + ], + "publishers": [ + "AmagSwag Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136116321" + ], + "created_at": "2026-07-10T10:10:22.103331", + "updated_at": "2026-07-10T10:10:22.103331", + "url": "/v1/games/kill-the-hentai-adult-patch-18" +} diff --git a/site/public/v1/games/killer-instinct-definitive-edition/index.json b/site/public/v1/games/killer-instinct-definitive-edition/index.json new file mode 100644 index 000000000000..28befa7a1370 --- /dev/null +++ b/site/public/v1/games/killer-instinct-definitive-edition/index.json @@ -0,0 +1,33 @@ +{ + "id": 78514, + "slug": "killer-instinct-definitive-edition", + "name": "Killer Instinct: Definitive Edition", + "release_date": "2016-09-30", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "fighting game" + ], + "stores": [], + "developers": [ + "Iron Galaxy Studios" + ], + "publishers": [ + "Xbox Game Studios" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q90135931" + ], + "created_at": "2026-07-10T10:10:22.120342", + "updated_at": "2026-07-10T10:10:22.120342", + "url": "/v1/games/killer-instinct-definitive-edition" +} diff --git a/site/public/v1/games/killer-instinct-q13522696/index.json b/site/public/v1/games/killer-instinct-q13522696/index.json new file mode 100644 index 000000000000..981e1dfa2f37 --- /dev/null +++ b/site/public/v1/games/killer-instinct-q13522696/index.json @@ -0,0 +1,34 @@ +{ + "id": 78516, + "slug": "killer-instinct-q13522696", + "name": "Killer Instinct", + "release_date": "2013-11-22", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "fighting game" + ], + "stores": [], + "developers": [ + "Iron Galaxy Studios", + "Double Helix Games" + ], + "publishers": [ + "Xbox Game Studios" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q13522696" + ], + "created_at": "2026-07-10T10:10:22.120342", + "updated_at": "2026-07-10T10:10:22.120342", + "url": "/v1/games/killer-instinct-q13522696" +} diff --git a/site/public/v1/games/killing-day/index.json b/site/public/v1/games/killing-day/index.json new file mode 100644 index 000000000000..d54a4e2fe021 --- /dev/null +++ b/site/public/v1/games/killing-day/index.json @@ -0,0 +1,29 @@ +{ + "id": 78549, + "slug": "killing-day", + "name": "Killing Day", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 3" + ], + "genres": [ + "first-person shooter" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6407693" + ], + "created_at": "2026-07-10T10:10:22.129332", + "updated_at": "2026-07-10T10:10:22.129332", + "url": "/v1/games/killing-day" +} diff --git a/site/public/v1/games/killing-floor-2-digital-deluxe-edition-upgrade/index.json b/site/public/v1/games/killing-floor-2-digital-deluxe-edition-upgrade/index.json new file mode 100644 index 000000000000..75e79f668dd6 --- /dev/null +++ b/site/public/v1/games/killing-floor-2-digital-deluxe-edition-upgrade/index.json @@ -0,0 +1,25 @@ +{ + "id": 78552, + "slug": "killing-floor-2-digital-deluxe-edition-upgrade", + "name": "Killing Floor 2 Digital Deluxe Edition Upgrade", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108028702" + ], + "created_at": "2026-07-10T10:10:22.130395", + "updated_at": "2026-07-10T10:10:22.130395", + "url": "/v1/games/killing-floor-2-digital-deluxe-edition-upgrade" +} diff --git a/site/public/v1/games/killing-floor-2-digital-deluxe-edition/index.json b/site/public/v1/games/killing-floor-2-digital-deluxe-edition/index.json new file mode 100644 index 000000000000..75aba118008e --- /dev/null +++ b/site/public/v1/games/killing-floor-2-digital-deluxe-edition/index.json @@ -0,0 +1,25 @@ +{ + "id": 78553, + "slug": "killing-floor-2-digital-deluxe-edition", + "name": "Killing Floor 2 Digital Deluxe Edition", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108028698" + ], + "created_at": "2026-07-10T10:10:22.130395", + "updated_at": "2026-07-10T10:10:22.130395", + "url": "/v1/games/killing-floor-2-digital-deluxe-edition" +} diff --git a/site/public/v1/games/killing-floor-mod-defence-alliance-2/index.json b/site/public/v1/games/killing-floor-mod-defence-alliance-2/index.json new file mode 100644 index 000000000000..5cf28b03c7ce --- /dev/null +++ b/site/public/v1/games/killing-floor-mod-defence-alliance-2/index.json @@ -0,0 +1,31 @@ +{ + "id": 78556, + "slug": "killing-floor-mod-defence-alliance-2", + "name": "Killing Floor Mod: Defence Alliance 2", + "release_date": "2009-10-22", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Defence Alliance Team" + ], + "publishers": [ + "Tripwire Interactive" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q64225353" + ], + "created_at": "2026-07-10T10:10:22.131382", + "updated_at": "2026-07-10T10:10:22.131382", + "url": "/v1/games/killing-floor-mod-defence-alliance-2" +} diff --git a/site/public/v1/games/killzone-shadow-fall-sharefactory-theme/index.json b/site/public/v1/games/killzone-shadow-fall-sharefactory-theme/index.json new file mode 100644 index 000000000000..b17ada1d396e --- /dev/null +++ b/site/public/v1/games/killzone-shadow-fall-sharefactory-theme/index.json @@ -0,0 +1,31 @@ +{ + "id": 78587, + "slug": "killzone-shadow-fall-sharefactory-theme", + "name": "Killzone: Shadow Fall SHAREfactory Theme", + "release_date": "2015-02-10", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 4" + ], + "genres": [], + "stores": [], + "developers": [ + "Sony Interactive Entertainment" + ], + "publishers": [ + "Sony Interactive Entertainment" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q61474754" + ], + "created_at": "2026-07-10T10:10:22.138401", + "updated_at": "2026-07-10T10:10:22.138401", + "url": "/v1/games/killzone-shadow-fall-sharefactory-theme" +} diff --git a/site/public/v1/games/king-of-avalon-dragon-warfare/index.json b/site/public/v1/games/king-of-avalon-dragon-warfare/index.json new file mode 100644 index 000000000000..cd8cb04d4a19 --- /dev/null +++ b/site/public/v1/games/king-of-avalon-dragon-warfare/index.json @@ -0,0 +1,25 @@ +{ + "id": 78770, + "slug": "king-of-avalon-dragon-warfare", + "name": "King of Avalon: Dragon Warfare", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140471221" + ], + "created_at": "2026-07-10T10:10:22.191157", + "updated_at": "2026-07-10T10:10:22.191157", + "url": "/v1/games/king-of-avalon-dragon-warfare" +} diff --git a/site/public/v1/games/king-of-kinks-wallpapers/index.json b/site/public/v1/games/king-of-kinks-wallpapers/index.json new file mode 100644 index 000000000000..07f28f558f16 --- /dev/null +++ b/site/public/v1/games/king-of-kinks-wallpapers/index.json @@ -0,0 +1,32 @@ +{ + "id": 78802, + "slug": "king-of-kinks-wallpapers", + "name": "King of Kinks Wallpapers", + "release_date": "2024-06-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "erotic video game", + "role-playing video game" + ], + "stores": [], + "developers": [ + "DPH Studio" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q129328282" + ], + "created_at": "2026-07-10T10:10:22.200162", + "updated_at": "2026-07-10T10:10:22.200162", + "url": "/v1/games/king-of-kinks-wallpapers" +} diff --git a/site/public/v1/games/king-pulsar/index.json b/site/public/v1/games/king-pulsar/index.json new file mode 100644 index 000000000000..be9130943d3b --- /dev/null +++ b/site/public/v1/games/king-pulsar/index.json @@ -0,0 +1,25 @@ +{ + "id": 78854, + "slug": "king-pulsar", + "name": "KING PULSAR", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11297909" + ], + "created_at": "2026-07-10T10:10:22.214253", + "updated_at": "2026-07-10T10:10:22.214253", + "url": "/v1/games/king-pulsar" +} diff --git a/site/public/v1/games/king-s-bounty-armored-princess-demo/index.json b/site/public/v1/games/king-s-bounty-armored-princess-demo/index.json new file mode 100644 index 000000000000..24e65b291bc6 --- /dev/null +++ b/site/public/v1/games/king-s-bounty-armored-princess-demo/index.json @@ -0,0 +1,36 @@ +{ + "id": 78863, + "slug": "king-s-bounty-armored-princess-demo", + "name": "King's Bounty: Armored Princess - Demo", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "role-playing video game", + "turn-based strategy video game", + "fantasy video game" + ], + "stores": [], + "developers": [ + "Katauri Interactive" + ], + "publishers": [ + "1C Company", + "Softclub" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122760098" + ], + "created_at": "2026-07-10T10:10:22.216253", + "updated_at": "2026-07-10T10:10:22.216253", + "url": "/v1/games/king-s-bounty-armored-princess-demo" +} diff --git a/site/public/v1/games/king-s-bounty-crossworlds/index.json b/site/public/v1/games/king-s-bounty-crossworlds/index.json new file mode 100644 index 000000000000..48447f1aaf7f --- /dev/null +++ b/site/public/v1/games/king-s-bounty-crossworlds/index.json @@ -0,0 +1,33 @@ +{ + "id": 78865, + "slug": "king-s-bounty-crossworlds", + "name": "King's Bounty: Crossworlds", + "release_date": "2010-09-17", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "tactical role-playing game" + ], + "stores": [], + "developers": [ + "Katauri Interactive" + ], + "publishers": [ + "1C Company" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1076308" + ], + "created_at": "2026-07-10T10:10:22.217254", + "updated_at": "2026-07-10T10:10:22.217254", + "url": "/v1/games/king-s-bounty-crossworlds" +} diff --git a/site/public/v1/games/king-s-bounty-warriors-of-the-north-ice-and-fire/index.json b/site/public/v1/games/king-s-bounty-warriors-of-the-north-ice-and-fire/index.json new file mode 100644 index 000000000000..85c0326b3c80 --- /dev/null +++ b/site/public/v1/games/king-s-bounty-warriors-of-the-north-ice-and-fire/index.json @@ -0,0 +1,28 @@ +{ + "id": 78870, + "slug": "king-s-bounty-warriors-of-the-north-ice-and-fire", + "name": "King's Bounty: Warriors of the North - Ice and Fire", + "release_date": "2014-01-30", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118279341" + ], + "created_at": "2026-07-10T10:10:22.217254", + "updated_at": "2026-07-10T10:10:22.217254", + "url": "/v1/games/king-s-bounty-warriors-of-the-north-ice-and-fire" +} diff --git a/site/public/v1/games/king-s-quest-collection/index.json b/site/public/v1/games/king-s-quest-collection/index.json new file mode 100644 index 000000000000..022ee021812d --- /dev/null +++ b/site/public/v1/games/king-s-quest-collection/index.json @@ -0,0 +1,31 @@ +{ + "id": 78891, + "slug": "king-s-quest-collection", + "name": "King's Quest Collection", + "release_date": "2006-09-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Sierra Entertainment" + ], + "publishers": [ + "Activision" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113575045" + ], + "created_at": "2026-07-10T10:10:22.229280", + "updated_at": "2026-07-10T10:10:22.229280", + "url": "/v1/games/king-s-quest-collection" +} diff --git a/site/public/v1/games/king-s-quest/index.json b/site/public/v1/games/king-s-quest/index.json new file mode 100644 index 000000000000..14ce670eff09 --- /dev/null +++ b/site/public/v1/games/king-s-quest/index.json @@ -0,0 +1,35 @@ +{ + "id": 78903, + "slug": "king-s-quest", + "name": "King's Quest", + "release_date": "2015-07-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 4", + "PlayStation 3", + "Microsoft Windows" + ], + "genres": [ + "adventure video game" + ], + "stores": [], + "developers": [ + "Sierra Entertainment" + ], + "publishers": [ + "Sierra Entertainment" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4042212" + ], + "created_at": "2026-07-10T10:10:22.237280", + "updated_at": "2026-07-10T10:10:22.237280", + "url": "/v1/games/king-s-quest" +} diff --git a/site/public/v1/games/kingdom-come-deliverance-ii-legacy-of-the-forge/index.json b/site/public/v1/games/kingdom-come-deliverance-ii-legacy-of-the-forge/index.json new file mode 100644 index 000000000000..9e2e1fd20e83 --- /dev/null +++ b/site/public/v1/games/kingdom-come-deliverance-ii-legacy-of-the-forge/index.json @@ -0,0 +1,25 @@ +{ + "id": 78928, + "slug": "kingdom-come-deliverance-ii-legacy-of-the-forge", + "name": "Kingdom Come: Deliverance II: Legacy of the Forge", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140470773" + ], + "created_at": "2026-07-10T10:10:22.247297", + "updated_at": "2026-07-10T10:10:22.247297", + "url": "/v1/games/kingdom-come-deliverance-ii-legacy-of-the-forge" +} diff --git a/site/public/v1/games/kingdom-come-deliverance-ii-mysteria-ecclesiae/index.json b/site/public/v1/games/kingdom-come-deliverance-ii-mysteria-ecclesiae/index.json new file mode 100644 index 000000000000..4a3b03b9ed58 --- /dev/null +++ b/site/public/v1/games/kingdom-come-deliverance-ii-mysteria-ecclesiae/index.json @@ -0,0 +1,25 @@ +{ + "id": 78929, + "slug": "kingdom-come-deliverance-ii-mysteria-ecclesiae", + "name": "Kingdom Come: Deliverance II - Mysteria Ecclesiae", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140471193" + ], + "created_at": "2026-07-10T10:10:22.247297", + "updated_at": "2026-07-10T10:10:22.247297", + "url": "/v1/games/kingdom-come-deliverance-ii-mysteria-ecclesiae" +} diff --git a/site/public/v1/games/kingdom-hearts-iii-re-mind/index.json b/site/public/v1/games/kingdom-hearts-iii-re-mind/index.json new file mode 100644 index 000000000000..5d91485467df --- /dev/null +++ b/site/public/v1/games/kingdom-hearts-iii-re-mind/index.json @@ -0,0 +1,29 @@ +{ + "id": 78964, + "slug": "kingdom-hearts-iii-re-mind", + "name": "Kingdom Hearts III Re Mind", + "release_date": "2020-01-23", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 4" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Square Enix" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q78114737" + ], + "created_at": "2026-07-10T10:10:22.256295", + "updated_at": "2026-07-10T10:10:22.256295", + "url": "/v1/games/kingdom-hearts-iii-re-mind" +} diff --git a/site/public/v1/games/kingdom-hearts-missing-link/index.json b/site/public/v1/games/kingdom-hearts-missing-link/index.json new file mode 100644 index 000000000000..1ab7c78dbceb --- /dev/null +++ b/site/public/v1/games/kingdom-hearts-missing-link/index.json @@ -0,0 +1,33 @@ +{ + "id": 78968, + "slug": "kingdom-hearts-missing-link", + "name": "Kingdom Hearts Missing-Link", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "iOS" + ], + "genres": [ + "action role-playing game" + ], + "stores": [], + "developers": [ + "Square Enix" + ], + "publishers": [ + "Square Enix" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116216523" + ], + "created_at": "2026-07-10T10:10:22.256295", + "updated_at": "2026-07-10T10:10:22.256295", + "url": "/v1/games/kingdom-hearts-missing-link" +} diff --git a/site/public/v1/games/kingdom-rush-frontiers-td/index.json b/site/public/v1/games/kingdom-rush-frontiers-td/index.json new file mode 100644 index 000000000000..c08644ff30ac --- /dev/null +++ b/site/public/v1/games/kingdom-rush-frontiers-td/index.json @@ -0,0 +1,31 @@ +{ + "id": 79023, + "slug": "kingdom-rush-frontiers-td", + "name": "Kingdom Rush Frontiers TD+", + "release_date": "2021-11-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "iPadOS", + "iOS", + "macOS" + ], + "genres": [ + "tower defense" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108901393" + ], + "created_at": "2026-07-10T10:10:22.272298", + "updated_at": "2026-07-10T10:10:22.272298", + "url": "/v1/games/kingdom-rush-frontiers-td" +} diff --git a/site/public/v1/games/kingdom-rush-vengeance-td/index.json b/site/public/v1/games/kingdom-rush-vengeance-td/index.json new file mode 100644 index 000000000000..914754f24445 --- /dev/null +++ b/site/public/v1/games/kingdom-rush-vengeance-td/index.json @@ -0,0 +1,29 @@ +{ + "id": 79026, + "slug": "kingdom-rush-vengeance-td", + "name": "Kingdom Rush Vengeance TD+", + "release_date": "2022-07-29", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "iPadOS", + "iOS", + "macOS" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113655769" + ], + "created_at": "2026-07-10T10:10:22.272298", + "updated_at": "2026-07-10T10:10:22.273298", + "url": "/v1/games/kingdom-rush-vengeance-td" +} diff --git a/site/public/v1/games/kingdom-two-crowns-q118234787/index.json b/site/public/v1/games/kingdom-two-crowns-q118234787/index.json new file mode 100644 index 000000000000..405a19e96813 --- /dev/null +++ b/site/public/v1/games/kingdom-two-crowns-q118234787/index.json @@ -0,0 +1,28 @@ +{ + "id": 79044, + "slug": "kingdom-two-crowns-q118234787", + "name": "Kingdom Two Crowns+", + "release_date": "2023-05-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "iPadOS", + "iOS" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118234787" + ], + "created_at": "2026-07-10T10:10:22.277297", + "updated_at": "2026-07-10T10:10:22.277297", + "url": "/v1/games/kingdom-two-crowns-q118234787" +} diff --git a/site/public/v1/games/kirby-and-the-forgotten-land-nintendo-switch-2-edition-star-crossed-world-upgrade-pack/index.json b/site/public/v1/games/kirby-and-the-forgotten-land-nintendo-switch-2-edition-star-crossed-world-upgrade-pack/index.json new file mode 100644 index 000000000000..ef7d281eacb6 --- /dev/null +++ b/site/public/v1/games/kirby-and-the-forgotten-land-nintendo-switch-2-edition-star-crossed-world-upgrade-pack/index.json @@ -0,0 +1,27 @@ +{ + "id": 79206, + "slug": "kirby-and-the-forgotten-land-nintendo-switch-2-edition-star-crossed-world-upgrade-pack", + "name": "Kirby and the Forgotten Land – Nintendo Switch 2 Edition + Star-Crossed World Upgrade Pack", + "release_date": "2025-08-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Nintendo" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137864341" + ], + "created_at": "2026-07-10T10:10:22.327300", + "updated_at": "2026-07-10T10:10:22.327300", + "url": "/v1/games/kirby-and-the-forgotten-land-nintendo-switch-2-edition-star-crossed-world-upgrade-pack" +} diff --git a/site/public/v1/games/kirby-s-dream-collection/index.json b/site/public/v1/games/kirby-s-dream-collection/index.json new file mode 100644 index 000000000000..bd182298a9a0 --- /dev/null +++ b/site/public/v1/games/kirby-s-dream-collection/index.json @@ -0,0 +1,33 @@ +{ + "id": 79221, + "slug": "kirby-s-dream-collection", + "name": "Kirby's Dream Collection", + "release_date": "2012-07-19", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Wii" + ], + "genres": [ + "platformer" + ], + "stores": [], + "developers": [ + "HAL Laboratory" + ], + "publishers": [ + "Nintendo" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2785011" + ], + "created_at": "2026-07-10T10:10:22.331339", + "updated_at": "2026-07-10T10:10:22.331339", + "url": "/v1/games/kirby-s-dream-collection" +} diff --git a/site/public/v1/games/kitty-glitter/index.json b/site/public/v1/games/kitty-glitter/index.json new file mode 100644 index 000000000000..2d52862a762d --- /dev/null +++ b/site/public/v1/games/kitty-glitter/index.json @@ -0,0 +1,25 @@ +{ + "id": 79385, + "slug": "kitty-glitter", + "name": "Kitty Glitter", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q75071310" + ], + "created_at": "2026-07-10T10:10:22.373923", + "updated_at": "2026-07-10T10:10:22.373923", + "url": "/v1/games/kitty-glitter" +} diff --git a/site/public/v1/games/kittyrace/index.json b/site/public/v1/games/kittyrace/index.json new file mode 100644 index 000000000000..37096a72d900 --- /dev/null +++ b/site/public/v1/games/kittyrace/index.json @@ -0,0 +1,25 @@ +{ + "id": 79411, + "slug": "kittyrace", + "name": "KittyRace", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112939989" + ], + "created_at": "2026-07-10T10:10:22.381867", + "updated_at": "2026-07-10T10:10:22.381867", + "url": "/v1/games/kittyrace" +} diff --git a/site/public/v1/games/klonoa-phantasy-reverie-series/index.json b/site/public/v1/games/klonoa-phantasy-reverie-series/index.json new file mode 100644 index 000000000000..7d5c267dbc3f --- /dev/null +++ b/site/public/v1/games/klonoa-phantasy-reverie-series/index.json @@ -0,0 +1,36 @@ +{ + "id": 79500, + "slug": "klonoa-phantasy-reverie-series", + "name": "Klonoa Phantasy Reverie Series", + "release_date": "2022-07-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 5", + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "platformer" + ], + "stores": [], + "developers": [ + "Monkey Craft" + ], + "publishers": [ + "Bandai Namco Entertainment" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111161407" + ], + "created_at": "2026-07-10T10:10:22.406867", + "updated_at": "2026-07-10T10:10:22.406867", + "url": "/v1/games/klonoa-phantasy-reverie-series" +} diff --git a/site/public/v1/games/knotwords-q123295255/index.json b/site/public/v1/games/knotwords-q123295255/index.json new file mode 100644 index 000000000000..0b9397f1d9d3 --- /dev/null +++ b/site/public/v1/games/knotwords-q123295255/index.json @@ -0,0 +1,28 @@ +{ + "id": 79780, + "slug": "knotwords-q123295255", + "name": "Knotwords+", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "iPadOS", + "iOS" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123295255" + ], + "created_at": "2026-07-10T10:10:22.520986", + "updated_at": "2026-07-10T10:10:22.520986", + "url": "/v1/games/knotwords-q123295255" +} diff --git a/site/public/v1/games/koala-cafe/index.json b/site/public/v1/games/koala-cafe/index.json new file mode 100644 index 000000000000..2ec179db1acb --- /dev/null +++ b/site/public/v1/games/koala-cafe/index.json @@ -0,0 +1,31 @@ +{ + "id": 79815, + "slug": "koala-cafe", + "name": "Koala Cafe", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "iOS", + "macOS", + "Microsoft Windows" + ], + "genres": [ + "role-playing video game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q65968866" + ], + "created_at": "2026-07-10T10:10:22.533538", + "updated_at": "2026-07-10T10:10:22.533538", + "url": "/v1/games/koala-cafe" +} diff --git a/site/public/v1/games/kohan-ahriman-s-gift/index.json b/site/public/v1/games/kohan-ahriman-s-gift/index.json new file mode 100644 index 000000000000..5c07728bc0c9 --- /dev/null +++ b/site/public/v1/games/kohan-ahriman-s-gift/index.json @@ -0,0 +1,34 @@ +{ + "id": 79857, + "slug": "kohan-ahriman-s-gift", + "name": "Kohan: Ahriman's Gift", + "release_date": "2001-11-06", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "real-time strategy" + ], + "stores": [], + "developers": [ + "TimeGate Studios" + ], + "publishers": [ + "TimeGate Studios", + "Strategy First" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110817111" + ], + "created_at": "2026-07-10T10:10:22.545938", + "updated_at": "2026-07-10T10:10:22.545938", + "url": "/v1/games/kohan-ahriman-s-gift" +} diff --git a/site/public/v1/games/kombat-pack-2/index.json b/site/public/v1/games/kombat-pack-2/index.json new file mode 100644 index 000000000000..a89d4f7d28c1 --- /dev/null +++ b/site/public/v1/games/kombat-pack-2/index.json @@ -0,0 +1,32 @@ +{ + "id": 79969, + "slug": "kombat-pack-2", + "name": "Kombat Pack 2", + "release_date": "2016-03-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "NetherRealm Studios" + ], + "publishers": [ + "Warner Bros. Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q64776944" + ], + "created_at": "2026-07-10T10:10:22.576940", + "updated_at": "2026-07-10T10:10:22.576940", + "url": "/v1/games/kombat-pack-2" +} diff --git a/site/public/v1/games/kombat-pack/index.json b/site/public/v1/games/kombat-pack/index.json new file mode 100644 index 000000000000..50f53dbb910f --- /dev/null +++ b/site/public/v1/games/kombat-pack/index.json @@ -0,0 +1,32 @@ +{ + "id": 79970, + "slug": "kombat-pack", + "name": "Kombat Pack", + "release_date": "2019-04-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "NetherRealm Studios" + ], + "publishers": [ + "Warner Bros. Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q64776877" + ], + "created_at": "2026-07-10T10:10:22.576940", + "updated_at": "2026-07-10T10:10:22.576940", + "url": "/v1/games/kombat-pack" +} diff --git a/site/public/v1/games/konami-classics/index.json b/site/public/v1/games/konami-classics/index.json new file mode 100644 index 000000000000..c39dd3c97732 --- /dev/null +++ b/site/public/v1/games/konami-classics/index.json @@ -0,0 +1,29 @@ +{ + "id": 79996, + "slug": "konami-classics", + "name": "Konami Classics", + "release_date": "2009-12-15", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "arcade" + ], + "stores": [], + "developers": [ + "Konami" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6428749" + ], + "created_at": "2026-07-10T10:10:22.583008", + "updated_at": "2026-07-10T10:10:22.583008", + "url": "/v1/games/konami-classics" +} diff --git a/site/public/v1/games/koneko-mo-issyo/index.json b/site/public/v1/games/koneko-mo-issyo/index.json new file mode 100644 index 000000000000..c36ff6fe1f73 --- /dev/null +++ b/site/public/v1/games/koneko-mo-issyo/index.json @@ -0,0 +1,29 @@ +{ + "id": 80017, + "slug": "koneko-mo-issyo", + "name": "Koneko mo Issyo", + "release_date": "2000-01-27", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation Vita" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Sony Interactive Entertainment" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126118636" + ], + "created_at": "2026-07-10T10:10:22.588033", + "updated_at": "2026-07-10T10:10:22.588033", + "url": "/v1/games/koneko-mo-issyo" +} diff --git a/site/public/v1/games/kororinpa-q104773412/index.json b/site/public/v1/games/kororinpa-q104773412/index.json new file mode 100644 index 000000000000..00eb5d1e2cc1 --- /dev/null +++ b/site/public/v1/games/kororinpa-q104773412/index.json @@ -0,0 +1,27 @@ +{ + "id": 80117, + "slug": "kororinpa-q104773412", + "name": "Kororinpa", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Nintendo 3DS" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q104773412" + ], + "created_at": "2026-07-10T10:10:22.613998", + "updated_at": "2026-07-10T10:10:22.613998", + "url": "/v1/games/kororinpa-q104773412" +} diff --git a/site/public/v1/games/krynea-imperial-wars/index.json b/site/public/v1/games/krynea-imperial-wars/index.json new file mode 100644 index 000000000000..20f577f519d0 --- /dev/null +++ b/site/public/v1/games/krynea-imperial-wars/index.json @@ -0,0 +1,30 @@ +{ + "id": 80310, + "slug": "krynea-imperial-wars", + "name": "Krynea Imperial Wars", + "release_date": "2010-08-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "massively multiplayer online role-playing game", + "strategy video game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q9018003" + ], + "created_at": "2026-07-10T10:10:22.667753", + "updated_at": "2026-07-10T10:10:22.667753", + "url": "/v1/games/krynea-imperial-wars" +} diff --git a/site/public/v1/games/ktuberling/index.json b/site/public/v1/games/ktuberling/index.json new file mode 100644 index 000000000000..5f042362ec5c --- /dev/null +++ b/site/public/v1/games/ktuberling/index.json @@ -0,0 +1,25 @@ +{ + "id": 80338, + "slug": "ktuberling", + "name": "KTuberling", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11929540" + ], + "created_at": "2026-07-10T10:10:22.675662", + "updated_at": "2026-07-10T10:10:22.675662", + "url": "/v1/games/ktuberling" +} diff --git a/site/public/v1/games/kung-fury-street-rage-ultimate-edition/index.json b/site/public/v1/games/kung-fury-street-rage-ultimate-edition/index.json new file mode 100644 index 000000000000..e361b97ce569 --- /dev/null +++ b/site/public/v1/games/kung-fury-street-rage-ultimate-edition/index.json @@ -0,0 +1,32 @@ +{ + "id": 80448, + "slug": "kung-fury-street-rage-ultimate-edition", + "name": "Kung Fury: Street Rage - Ultimate Edition", + "release_date": "2023-03-15", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 4" + ], + "genres": [], + "stores": [], + "developers": [ + "Hello There Games" + ], + "publishers": [ + "Hello There Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122829249" + ], + "created_at": "2026-07-10T10:10:22.704715", + "updated_at": "2026-07-10T10:10:22.704715", + "url": "/v1/games/kung-fury-street-rage-ultimate-edition" +} diff --git a/site/public/v1/games/kyukyoku-tiger-heli/index.json b/site/public/v1/games/kyukyoku-tiger-heli/index.json new file mode 100644 index 000000000000..844af7986653 --- /dev/null +++ b/site/public/v1/games/kyukyoku-tiger-heli/index.json @@ -0,0 +1,33 @@ +{ + "id": 80632, + "slug": "kyukyoku-tiger-heli", + "name": "Kyukyoku Tiger-Heli", + "release_date": "2021-10-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 4" + ], + "genres": [], + "stores": [], + "developers": [ + "M2", + "Toaplan" + ], + "publishers": [ + "M2", + "Limited Run Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q129647247" + ], + "created_at": "2026-07-10T10:10:22.754271", + "updated_at": "2026-07-10T10:10:22.754271", + "url": "/v1/games/kyukyoku-tiger-heli" +} diff --git a/site/public/v1/games/l-a-noire-reefer-madness/index.json b/site/public/v1/games/l-a-noire-reefer-madness/index.json new file mode 100644 index 000000000000..b136e653817c --- /dev/null +++ b/site/public/v1/games/l-a-noire-reefer-madness/index.json @@ -0,0 +1,25 @@ +{ + "id": 80642, + "slug": "l-a-noire-reefer-madness", + "name": "L.A. Noire: Reefer Madness", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127156379" + ], + "created_at": "2026-07-10T10:10:22.757190", + "updated_at": "2026-07-10T10:10:22.757190", + "url": "/v1/games/l-a-noire-reefer-madness" +} diff --git a/site/public/v1/games/l-a-noire-the-complete-edition/index.json b/site/public/v1/games/l-a-noire-the-complete-edition/index.json new file mode 100644 index 000000000000..daac591a6537 --- /dev/null +++ b/site/public/v1/games/l-a-noire-the-complete-edition/index.json @@ -0,0 +1,25 @@ +{ + "id": 80643, + "slug": "l-a-noire-the-complete-edition", + "name": "L.A. Noire: The Complete Edition", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127156486" + ], + "created_at": "2026-07-10T10:10:22.757190", + "updated_at": "2026-07-10T10:10:22.757190", + "url": "/v1/games/l-a-noire-the-complete-edition" +} diff --git a/site/public/v1/games/lacuna-prologue/index.json b/site/public/v1/games/lacuna-prologue/index.json new file mode 100644 index 000000000000..7ffca38ed4a0 --- /dev/null +++ b/site/public/v1/games/lacuna-prologue/index.json @@ -0,0 +1,27 @@ +{ + "id": 80866, + "slug": "lacuna-prologue", + "name": "Lacuna: Prologue", + "release_date": "2021-04-22", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131562290" + ], + "created_at": "2026-07-10T10:10:22.818257", + "updated_at": "2026-07-10T10:10:22.818257", + "url": "/v1/games/lacuna-prologue" +} diff --git a/site/public/v1/games/lambdamoo/index.json b/site/public/v1/games/lambdamoo/index.json new file mode 100644 index 000000000000..a037b2301750 --- /dev/null +++ b/site/public/v1/games/lambdamoo/index.json @@ -0,0 +1,31 @@ +{ + "id": 80974, + "slug": "lambdamoo", + "name": "LambdaMOO", + "release_date": "1990-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "cross-platform" + ], + "genres": [ + "MUD" + ], + "stores": [], + "developers": [ + "Pavel Curtis" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6481091" + ], + "created_at": "2026-07-10T10:10:22.846000", + "updated_at": "2026-07-10T10:10:22.846995", + "url": "/v1/games/lambdamoo" +} diff --git a/site/public/v1/games/land-of-dangun/index.json b/site/public/v1/games/land-of-dangun/index.json new file mode 100644 index 000000000000..9c6afaca4fa1 --- /dev/null +++ b/site/public/v1/games/land-of-dangun/index.json @@ -0,0 +1,25 @@ +{ + "id": 81043, + "slug": "land-of-dangun", + "name": "Land of Dangun", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q19349323" + ], + "created_at": "2026-07-10T10:10:22.885296", + "updated_at": "2026-07-10T10:10:22.885296", + "url": "/v1/games/land-of-dangun" +} diff --git a/site/public/v1/games/language-pack/index.json b/site/public/v1/games/language-pack/index.json new file mode 100644 index 000000000000..3ff96988877b --- /dev/null +++ b/site/public/v1/games/language-pack/index.json @@ -0,0 +1,25 @@ +{ + "id": 81168, + "slug": "language-pack", + "name": "Language Pack", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126186110" + ], + "created_at": "2026-07-10T10:10:22.918276", + "updated_at": "2026-07-10T10:10:22.918276", + "url": "/v1/games/language-pack" +} diff --git a/site/public/v1/games/laser-squad-kit-1/index.json b/site/public/v1/games/laser-squad-kit-1/index.json new file mode 100644 index 000000000000..f5198ff8aa15 --- /dev/null +++ b/site/public/v1/games/laser-squad-kit-1/index.json @@ -0,0 +1,25 @@ +{ + "id": 81285, + "slug": "laser-squad-kit-1", + "name": "Laser Squad - Kit 1", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63163709" + ], + "created_at": "2026-07-10T10:10:22.979119", + "updated_at": "2026-07-10T10:10:22.979119", + "url": "/v1/games/laser-squad-kit-1" +} diff --git a/site/public/v1/games/layers-of-fear-inheritance/index.json b/site/public/v1/games/layers-of-fear-inheritance/index.json new file mode 100644 index 000000000000..f5c67c774271 --- /dev/null +++ b/site/public/v1/games/layers-of-fear-inheritance/index.json @@ -0,0 +1,35 @@ +{ + "id": 81767, + "slug": "layers-of-fear-inheritance", + "name": "Layers of Fear: Inheritance", + "release_date": "2016-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 4", + "macOS", + "Microsoft Windows" + ], + "genres": [ + "psychological horror fiction" + ], + "stores": [], + "developers": [ + "Bloober Team" + ], + "publishers": [ + "Aspyr" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60837414" + ], + "created_at": "2026-07-10T10:10:23.159306", + "updated_at": "2026-07-10T10:10:23.159306", + "url": "/v1/games/layers-of-fear-inheritance" +} diff --git a/site/public/v1/games/layton-s-mystery-journey/index.json b/site/public/v1/games/layton-s-mystery-journey/index.json new file mode 100644 index 000000000000..2fad2f980822 --- /dev/null +++ b/site/public/v1/games/layton-s-mystery-journey/index.json @@ -0,0 +1,32 @@ +{ + "id": 81778, + "slug": "layton-s-mystery-journey", + "name": "Layton’s Mystery Journey+", + "release_date": "2021-09-03", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "iPadOS", + "iOS" + ], + "genres": [], + "stores": [], + "developers": [ + "Level-5" + ], + "publishers": [ + "Level-5" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107983422" + ], + "created_at": "2026-07-10T10:10:23.179235", + "updated_at": "2026-07-10T10:10:23.179235", + "url": "/v1/games/layton-s-mystery-journey" +} diff --git a/site/public/v1/games/leela-zero/index.json b/site/public/v1/games/leela-zero/index.json new file mode 100644 index 000000000000..7f677e5ee60d --- /dev/null +++ b/site/public/v1/games/leela-zero/index.json @@ -0,0 +1,27 @@ +{ + "id": 82030, + "slug": "leela-zero", + "name": "Leela Zero", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [ + "Gian-Carlo Pascutto" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q48938060" + ], + "created_at": "2026-07-10T10:10:23.261974", + "updated_at": "2026-07-10T10:10:23.261974", + "url": "/v1/games/leela-zero" +} diff --git a/site/public/v1/games/leela/index.json b/site/public/v1/games/leela/index.json new file mode 100644 index 000000000000..e76ce1af4a53 --- /dev/null +++ b/site/public/v1/games/leela/index.json @@ -0,0 +1,27 @@ +{ + "id": 82031, + "slug": "leela", + "name": "Leela", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [ + "Gian-Carlo Pascutto" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q43227078" + ], + "created_at": "2026-07-10T10:10:23.261974", + "updated_at": "2026-07-10T10:10:23.261974", + "url": "/v1/games/leela" +} diff --git a/site/public/v1/games/left-4-dead-2-demo/index.json b/site/public/v1/games/left-4-dead-2-demo/index.json new file mode 100644 index 000000000000..2508d965bf63 --- /dev/null +++ b/site/public/v1/games/left-4-dead-2-demo/index.json @@ -0,0 +1,33 @@ +{ + "id": 82039, + "slug": "left-4-dead-2-demo", + "name": "Left 4 Dead 2 Demo", + "release_date": "2009-10-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter" + ], + "stores": [], + "developers": [ + "Valve Corporation" + ], + "publishers": [ + "Valve Corporation" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122658430" + ], + "created_at": "2026-07-10T10:10:23.264999", + "updated_at": "2026-07-10T10:10:23.264999", + "url": "/v1/games/left-4-dead-2-demo" +} diff --git a/site/public/v1/games/left-4-dead-2-the-passing/index.json b/site/public/v1/games/left-4-dead-2-the-passing/index.json new file mode 100644 index 000000000000..49ad969e529b --- /dev/null +++ b/site/public/v1/games/left-4-dead-2-the-passing/index.json @@ -0,0 +1,25 @@ +{ + "id": 82040, + "slug": "left-4-dead-2-the-passing", + "name": "Left 4 Dead 2: The Passing", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127156706" + ], + "created_at": "2026-07-10T10:10:23.264999", + "updated_at": "2026-07-10T10:10:23.264999", + "url": "/v1/games/left-4-dead-2-the-passing" +} diff --git a/site/public/v1/games/left-4-dead-3/index.json b/site/public/v1/games/left-4-dead-3/index.json new file mode 100644 index 000000000000..971c43be9557 --- /dev/null +++ b/site/public/v1/games/left-4-dead-3/index.json @@ -0,0 +1,31 @@ +{ + "id": 82042, + "slug": "left-4-dead-3", + "name": "Left 4 Dead 3", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "survival horror" + ], + "stores": [], + "developers": [ + "Valve Corporation" + ], + "publishers": [ + "Valve Corporation" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q89270530" + ], + "created_at": "2026-07-10T10:10:23.264999", + "updated_at": "2026-07-10T10:10:23.264999", + "url": "/v1/games/left-4-dead-3" +} diff --git a/site/public/v1/games/left-4-dead-bundle/index.json b/site/public/v1/games/left-4-dead-bundle/index.json new file mode 100644 index 000000000000..2efaf483ba92 --- /dev/null +++ b/site/public/v1/games/left-4-dead-bundle/index.json @@ -0,0 +1,27 @@ +{ + "id": 82043, + "slug": "left-4-dead-bundle", + "name": "Left 4 Dead Bundle", + "release_date": "2016-06-10", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q71192586" + ], + "created_at": "2026-07-10T10:10:23.265976", + "updated_at": "2026-07-10T10:10:23.265976", + "url": "/v1/games/left-4-dead-bundle" +} diff --git a/site/public/v1/games/left-4-dead-demo/index.json b/site/public/v1/games/left-4-dead-demo/index.json new file mode 100644 index 000000000000..ae8215b135e2 --- /dev/null +++ b/site/public/v1/games/left-4-dead-demo/index.json @@ -0,0 +1,33 @@ +{ + "id": 82044, + "slug": "left-4-dead-demo", + "name": "Left 4 Dead Demo", + "release_date": "2008-11-06", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter" + ], + "stores": [], + "developers": [ + "Valve Corporation" + ], + "publishers": [ + "Valve Corporation" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122658398" + ], + "created_at": "2026-07-10T10:10:23.265976", + "updated_at": "2026-07-10T10:10:23.265976", + "url": "/v1/games/left-4-dead-demo" +} diff --git a/site/public/v1/games/legacy-of-romulus/index.json b/site/public/v1/games/legacy-of-romulus/index.json new file mode 100644 index 000000000000..ad1627acfa39 --- /dev/null +++ b/site/public/v1/games/legacy-of-romulus/index.json @@ -0,0 +1,25 @@ +{ + "id": 82092, + "slug": "legacy-of-romulus", + "name": "Legacy of Romulus", + "release_date": "2013-05-21", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q57973873" + ], + "created_at": "2026-07-10T10:10:23.278907", + "updated_at": "2026-07-10T10:10:23.278907", + "url": "/v1/games/legacy-of-romulus" +} diff --git a/site/public/v1/games/legend-online-ii/index.json b/site/public/v1/games/legend-online-ii/index.json new file mode 100644 index 000000000000..d731b8abf3e7 --- /dev/null +++ b/site/public/v1/games/legend-online-ii/index.json @@ -0,0 +1,25 @@ +{ + "id": 82251, + "slug": "legend-online-ii", + "name": "Legend Online II", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18766768" + ], + "created_at": "2026-07-10T10:10:23.331208", + "updated_at": "2026-07-10T10:10:23.331208", + "url": "/v1/games/legend-online-ii" +} diff --git a/site/public/v1/games/legends-of-eisenwald-knight-s-pack/index.json b/site/public/v1/games/legends-of-eisenwald-knight-s-pack/index.json new file mode 100644 index 000000000000..b867491af0bb --- /dev/null +++ b/site/public/v1/games/legends-of-eisenwald-knight-s-pack/index.json @@ -0,0 +1,25 @@ +{ + "id": 82317, + "slug": "legends-of-eisenwald-knight-s-pack", + "name": "Legends of Eisenwald: Knight's Pack", + "release_date": "2015-07-02", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120965766" + ], + "created_at": "2026-07-10T10:10:23.347790", + "updated_at": "2026-07-10T10:10:23.347790", + "url": "/v1/games/legends-of-eisenwald-knight-s-pack" +} diff --git a/site/public/v1/games/legends-of-eisenwald-road-to-iron-forest/index.json b/site/public/v1/games/legends-of-eisenwald-road-to-iron-forest/index.json new file mode 100644 index 000000000000..07bd536d37eb --- /dev/null +++ b/site/public/v1/games/legends-of-eisenwald-road-to-iron-forest/index.json @@ -0,0 +1,31 @@ +{ + "id": 82318, + "slug": "legends-of-eisenwald-road-to-iron-forest", + "name": "Legends of Eisenwald: Road to Iron Forest", + "release_date": "2015-11-05", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Aterdux Entertainment" + ], + "publishers": [ + "Aterdux Entertainment" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120965740" + ], + "created_at": "2026-07-10T10:10:23.348783", + "updated_at": "2026-07-10T10:10:23.348783", + "url": "/v1/games/legends-of-eisenwald-road-to-iron-forest" +} diff --git a/site/public/v1/games/legends-of-eisenwald-season-pass/index.json b/site/public/v1/games/legends-of-eisenwald-season-pass/index.json new file mode 100644 index 000000000000..bb66adc7a0d0 --- /dev/null +++ b/site/public/v1/games/legends-of-eisenwald-season-pass/index.json @@ -0,0 +1,31 @@ +{ + "id": 82319, + "slug": "legends-of-eisenwald-season-pass", + "name": "Legends of Eisenwald Season Pass", + "release_date": "2015-11-05", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Aterdux Entertainment" + ], + "publishers": [ + "Aterdux Entertainment" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120965734" + ], + "created_at": "2026-07-10T10:10:23.348783", + "updated_at": "2026-07-10T10:10:23.348783", + "url": "/v1/games/legends-of-eisenwald-season-pass" +} diff --git a/site/public/v1/games/lego-duplo-world-q122704734/index.json b/site/public/v1/games/lego-duplo-world-q122704734/index.json new file mode 100644 index 000000000000..ae3ba955e470 --- /dev/null +++ b/site/public/v1/games/lego-duplo-world-q122704734/index.json @@ -0,0 +1,28 @@ +{ + "id": 82445, + "slug": "lego-duplo-world-q122704734", + "name": "Lego Duplo World+", + "release_date": "2023-07-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "iPadOS", + "iOS" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122704734" + ], + "created_at": "2026-07-10T10:10:23.380814", + "updated_at": "2026-07-10T10:10:23.380814", + "url": "/v1/games/lego-duplo-world-q122704734" +} diff --git a/site/public/v1/games/lego-marvel-s-avengers-deluxe-edition/index.json b/site/public/v1/games/lego-marvel-s-avengers-deluxe-edition/index.json new file mode 100644 index 000000000000..a17e150a8dd6 --- /dev/null +++ b/site/public/v1/games/lego-marvel-s-avengers-deluxe-edition/index.json @@ -0,0 +1,25 @@ +{ + "id": 82469, + "slug": "lego-marvel-s-avengers-deluxe-edition", + "name": "LEGO Marvel’s Avengers Deluxe Edition", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q92203710" + ], + "created_at": "2026-07-10T10:10:23.386738", + "updated_at": "2026-07-10T10:10:23.386738", + "url": "/v1/games/lego-marvel-s-avengers-deluxe-edition" +} diff --git a/site/public/v1/games/lego-star-wars-the-force-awakens-deluxe-edition/index.json b/site/public/v1/games/lego-star-wars-the-force-awakens-deluxe-edition/index.json new file mode 100644 index 000000000000..9049fc42d964 --- /dev/null +++ b/site/public/v1/games/lego-star-wars-the-force-awakens-deluxe-edition/index.json @@ -0,0 +1,25 @@ +{ + "id": 82493, + "slug": "lego-star-wars-the-force-awakens-deluxe-edition", + "name": "LEGO Star Wars: The Force Awakens Deluxe Edition", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q92203826" + ], + "created_at": "2026-07-10T10:10:23.391825", + "updated_at": "2026-07-10T10:10:23.391825", + "url": "/v1/games/lego-star-wars-the-force-awakens-deluxe-edition" +} diff --git a/site/public/v1/games/lego-star-wars-the-skywalker-saga-deluxe-edition/index.json b/site/public/v1/games/lego-star-wars-the-skywalker-saga-deluxe-edition/index.json new file mode 100644 index 000000000000..35bdbe9679eb --- /dev/null +++ b/site/public/v1/games/lego-star-wars-the-skywalker-saga-deluxe-edition/index.json @@ -0,0 +1,34 @@ +{ + "id": 82495, + "slug": "lego-star-wars-the-skywalker-saga-deluxe-edition", + "name": "Lego Star Wars: The Skywalker Saga Deluxe Edition", + "release_date": "2022-04-05", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 5", + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TT Games" + ], + "publishers": [ + "Warner Bros. Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111781304" + ], + "created_at": "2026-07-10T10:10:23.391825", + "updated_at": "2026-07-10T10:10:23.391825", + "url": "/v1/games/lego-star-wars-the-skywalker-saga-deluxe-edition" +} diff --git a/site/public/v1/games/leisure-suit-larry-collection/index.json b/site/public/v1/games/leisure-suit-larry-collection/index.json new file mode 100644 index 000000000000..68bcaa9fc7df --- /dev/null +++ b/site/public/v1/games/leisure-suit-larry-collection/index.json @@ -0,0 +1,32 @@ +{ + "id": 82523, + "slug": "leisure-suit-larry-collection", + "name": "Leisure Suit Larry Collection", + "release_date": "2006-09-15", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "erotic video game", + "point-and-click adventure" + ], + "stores": [], + "developers": [], + "publishers": [ + "Sierra Entertainment" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q101579746" + ], + "created_at": "2026-07-10T10:10:23.397903", + "updated_at": "2026-07-10T10:10:23.397903", + "url": "/v1/games/leisure-suit-larry-collection" +} diff --git a/site/public/v1/games/leisure-suit-larry-magna-cum-laude-demo/index.json b/site/public/v1/games/leisure-suit-larry-magna-cum-laude-demo/index.json new file mode 100644 index 000000000000..58e62c3f449d --- /dev/null +++ b/site/public/v1/games/leisure-suit-larry-magna-cum-laude-demo/index.json @@ -0,0 +1,29 @@ +{ + "id": 82527, + "slug": "leisure-suit-larry-magna-cum-laude-demo", + "name": "Leisure Suit Larry: Magna Cum Laude demo", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "High Voltage Software" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q103015928" + ], + "created_at": "2026-07-10T10:10:23.398900", + "updated_at": "2026-07-10T10:10:23.398900", + "url": "/v1/games/leisure-suit-larry-magna-cum-laude-demo" +} diff --git a/site/public/v1/games/leisure-suit-larry-s-casino-demo/index.json b/site/public/v1/games/leisure-suit-larry-s-casino-demo/index.json new file mode 100644 index 000000000000..f3d049de2a02 --- /dev/null +++ b/site/public/v1/games/leisure-suit-larry-s-casino-demo/index.json @@ -0,0 +1,34 @@ +{ + "id": 82530, + "slug": "leisure-suit-larry-s-casino-demo", + "name": "Leisure Suit Larry's Casino demo", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "erotic video game", + "gambling video game" + ], + "stores": [], + "developers": [ + "Sierra Entertainment" + ], + "publishers": [ + "Sierra Entertainment" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q103820429" + ], + "created_at": "2026-07-10T10:10:23.399895", + "updated_at": "2026-07-10T10:10:23.399895", + "url": "/v1/games/leisure-suit-larry-s-casino-demo" +} diff --git a/site/public/v1/games/leisure-suit-larry-vii-love-for-sail-demo/index.json b/site/public/v1/games/leisure-suit-larry-vii-love-for-sail-demo/index.json new file mode 100644 index 000000000000..ed0594ba94a0 --- /dev/null +++ b/site/public/v1/games/leisure-suit-larry-vii-love-for-sail-demo/index.json @@ -0,0 +1,27 @@ +{ + "id": 82532, + "slug": "leisure-suit-larry-vii-love-for-sail-demo", + "name": "Leisure Suit Larry VII: Love for Sail! demo", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q104243707" + ], + "created_at": "2026-07-10T10:10:23.399895", + "updated_at": "2026-07-10T10:10:23.399895", + "url": "/v1/games/leisure-suit-larry-vii-love-for-sail-demo" +} diff --git a/site/public/v1/games/leo-s-fortune-q107147662/index.json b/site/public/v1/games/leo-s-fortune-q107147662/index.json new file mode 100644 index 000000000000..f4551b933433 --- /dev/null +++ b/site/public/v1/games/leo-s-fortune-q107147662/index.json @@ -0,0 +1,31 @@ +{ + "id": 82594, + "slug": "leo-s-fortune-q107147662", + "name": "Leo's Fortune+", + "release_date": "2021-06-25", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "tvOS", + "iPadOS", + "iOS" + ], + "genres": [ + "platformer" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107147662" + ], + "created_at": "2026-07-10T10:10:23.416891", + "updated_at": "2026-07-10T10:10:23.416891", + "url": "/v1/games/leo-s-fortune-q107147662" +} diff --git a/site/public/v1/games/let-s-build-a-zoo-dinosaur-island/index.json b/site/public/v1/games/let-s-build-a-zoo-dinosaur-island/index.json new file mode 100644 index 000000000000..ee2d3179347e --- /dev/null +++ b/site/public/v1/games/let-s-build-a-zoo-dinosaur-island/index.json @@ -0,0 +1,31 @@ +{ + "id": 82673, + "slug": "let-s-build-a-zoo-dinosaur-island", + "name": "Let's Build a Zoo: Dinosaur Island", + "release_date": "2022-05-26", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "construction and management simulation" + ], + "stores": [], + "developers": [], + "publishers": [ + "No More Robots" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112183291" + ], + "created_at": "2026-07-10T10:10:23.441022", + "updated_at": "2026-07-10T10:10:23.441022", + "url": "/v1/games/let-s-build-a-zoo-dinosaur-island" +} diff --git a/site/public/v1/games/let-s-tv-play-classic/index.json b/site/public/v1/games/let-s-tv-play-classic/index.json new file mode 100644 index 000000000000..b549220a5691 --- /dev/null +++ b/site/public/v1/games/let-s-tv-play-classic/index.json @@ -0,0 +1,25 @@ +{ + "id": 82788, + "slug": "let-s-tv-play-classic", + "name": "Let's! TV play classic", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6532213" + ], + "created_at": "2026-07-10T10:10:23.472613", + "updated_at": "2026-07-10T10:10:23.472613", + "url": "/v1/games/let-s-tv-play-classic" +} diff --git a/site/public/v1/games/lethal-enforcers-i-ii/index.json b/site/public/v1/games/lethal-enforcers-i-ii/index.json new file mode 100644 index 000000000000..d9c76610b58b --- /dev/null +++ b/site/public/v1/games/lethal-enforcers-i-ii/index.json @@ -0,0 +1,25 @@ +{ + "id": 82809, + "slug": "lethal-enforcers-i-ii", + "name": "Lethal Enforcers I & II", + "release_date": "1997-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109457153" + ], + "created_at": "2026-07-10T10:10:23.478615", + "updated_at": "2026-07-10T10:10:23.478615", + "url": "/v1/games/lethal-enforcers-i-ii" +} diff --git a/site/public/v1/games/lgames/index.json b/site/public/v1/games/lgames/index.json new file mode 100644 index 000000000000..094dd2435edb --- /dev/null +++ b/site/public/v1/games/lgames/index.json @@ -0,0 +1,25 @@ +{ + "id": 82970, + "slug": "lgames", + "name": "LGames", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123466569" + ], + "created_at": "2026-07-10T10:10:23.522134", + "updated_at": "2026-07-10T10:10:23.522134", + "url": "/v1/games/lgames" +} diff --git a/site/public/v1/games/liberated-enhanced-edition/index.json b/site/public/v1/games/liberated-enhanced-edition/index.json new file mode 100644 index 000000000000..cad26b581d2a --- /dev/null +++ b/site/public/v1/games/liberated-enhanced-edition/index.json @@ -0,0 +1,29 @@ +{ + "id": 83006, + "slug": "liberated-enhanced-edition", + "name": "Liberated: Enhanced Edition", + "release_date": "2022-04-20", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Walkabout Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111821055" + ], + "created_at": "2026-07-10T10:10:23.532713", + "updated_at": "2026-07-10T10:10:23.532713", + "url": "/v1/games/liberated-enhanced-edition" +} diff --git a/site/public/v1/games/liberty-bell/index.json b/site/public/v1/games/liberty-bell/index.json new file mode 100644 index 000000000000..baa872b3a8b9 --- /dev/null +++ b/site/public/v1/games/liberty-bell/index.json @@ -0,0 +1,25 @@ +{ + "id": 83027, + "slug": "liberty-bell", + "name": "Liberty Bell", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16932658" + ], + "created_at": "2026-07-10T10:10:23.537712", + "updated_at": "2026-07-10T10:10:23.537712", + "url": "/v1/games/liberty-bell" +} diff --git a/site/public/v1/games/lichess/index.json b/site/public/v1/games/lichess/index.json new file mode 100644 index 000000000000..9d912d85ee43 --- /dev/null +++ b/site/public/v1/games/lichess/index.json @@ -0,0 +1,28 @@ +{ + "id": 83061, + "slug": "lichess", + "name": "Lichess", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [ + "Thibault Duplessis", + "Niklas Fiekas" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q19831807" + ], + "created_at": "2026-07-10T10:10:23.547239", + "updated_at": "2026-07-10T10:10:23.547239", + "url": "/v1/games/lichess" +} diff --git a/site/public/v1/games/lierolibre/index.json b/site/public/v1/games/lierolibre/index.json new file mode 100644 index 000000000000..1f21d72b686a --- /dev/null +++ b/site/public/v1/games/lierolibre/index.json @@ -0,0 +1,25 @@ +{ + "id": 83082, + "slug": "lierolibre", + "name": "lierolibre", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120721801" + ], + "created_at": "2026-07-10T10:10:23.553233", + "updated_at": "2026-07-10T10:10:23.553233", + "url": "/v1/games/lierolibre" +} diff --git a/site/public/v1/games/life-by-you/index.json b/site/public/v1/games/life-by-you/index.json new file mode 100644 index 000000000000..b0f17e4b3172 --- /dev/null +++ b/site/public/v1/games/life-by-you/index.json @@ -0,0 +1,33 @@ +{ + "id": 83105, + "slug": "life-by-you", + "name": "Life by You", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ], + "stores": [], + "developers": [ + "Paradox Tectonic" + ], + "publishers": [ + "Paradox Interactive" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117004828" + ], + "created_at": "2026-07-10T10:10:23.560237", + "updated_at": "2026-07-10T10:10:23.560237", + "url": "/v1/games/life-by-you" +} diff --git a/site/public/v1/games/life-is-strange-2-episode-1-roads/index.json b/site/public/v1/games/life-is-strange-2-episode-1-roads/index.json new file mode 100644 index 000000000000..35b5af9f8f3c --- /dev/null +++ b/site/public/v1/games/life-is-strange-2-episode-1-roads/index.json @@ -0,0 +1,34 @@ +{ + "id": 83148, + "slug": "life-is-strange-2-episode-1-roads", + "name": "Life Is Strange 2: Episode 1 - Roads", + "release_date": "2018-09-27", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "adventure video game" + ], + "stores": [], + "developers": [ + "Don’t Nod" + ], + "publishers": [ + "Square Enix" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136511443" + ], + "created_at": "2026-07-10T10:10:23.571239", + "updated_at": "2026-07-10T10:10:23.571239", + "url": "/v1/games/life-is-strange-2-episode-1-roads" +} diff --git a/site/public/v1/games/life-is-strange-remastered-collection/index.json b/site/public/v1/games/life-is-strange-remastered-collection/index.json new file mode 100644 index 000000000000..1948deb56f87 --- /dev/null +++ b/site/public/v1/games/life-is-strange-remastered-collection/index.json @@ -0,0 +1,33 @@ +{ + "id": 83154, + "slug": "life-is-strange-remastered-collection", + "name": "Life is Strange Remastered Collection", + "release_date": "2022-02-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Deck Nine" + ], + "publishers": [ + "Square Enix" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110775460" + ], + "created_at": "2026-07-10T10:10:23.572232", + "updated_at": "2026-07-10T10:10:23.572232", + "url": "/v1/games/life-is-strange-remastered-collection" +} diff --git a/site/public/v1/games/lifeblood-q116592516/index.json b/site/public/v1/games/lifeblood-q116592516/index.json new file mode 100644 index 000000000000..0c85cd75478f --- /dev/null +++ b/site/public/v1/games/lifeblood-q116592516/index.json @@ -0,0 +1,27 @@ +{ + "id": 83216, + "slug": "lifeblood-q116592516", + "name": "Lifeblood", + "release_date": "2018-04-20", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [ + "Team Cherry" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116592516" + ], + "created_at": "2026-07-10T10:10:23.589237", + "updated_at": "2026-07-10T10:10:23.589237", + "url": "/v1/games/lifeblood-q116592516" +} diff --git a/site/public/v1/games/lifeline-q116720201/index.json b/site/public/v1/games/lifeline-q116720201/index.json new file mode 100644 index 000000000000..577baab51b18 --- /dev/null +++ b/site/public/v1/games/lifeline-q116720201/index.json @@ -0,0 +1,28 @@ +{ + "id": 83239, + "slug": "lifeline-q116720201", + "name": "Lifeline+", + "release_date": "2023-02-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "iPadOS", + "iOS" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116720201" + ], + "created_at": "2026-07-10T10:10:23.595316", + "updated_at": "2026-07-10T10:10:23.595316", + "url": "/v1/games/lifeline-q116720201" +} diff --git a/site/public/v1/games/lifesaver-donation/index.json b/site/public/v1/games/lifesaver-donation/index.json new file mode 100644 index 000000000000..9661ba7c3830 --- /dev/null +++ b/site/public/v1/games/lifesaver-donation/index.json @@ -0,0 +1,34 @@ +{ + "id": 83246, + "slug": "lifesaver-donation", + "name": "Lifesaver donation", + "release_date": "2019-03-11", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "casual game", + "advergame" + ], + "stores": [], + "developers": [ + "SS Studios" + ], + "publishers": [ + "SS Studios" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62027700" + ], + "created_at": "2026-07-10T10:10:23.597330", + "updated_at": "2026-07-10T10:10:23.597330", + "url": "/v1/games/lifesaver-donation" +} diff --git a/site/public/v1/games/lilith-izm/index.json b/site/public/v1/games/lilith-izm/index.json new file mode 100644 index 000000000000..2e1b4c17d632 --- /dev/null +++ b/site/public/v1/games/lilith-izm/index.json @@ -0,0 +1,27 @@ +{ + "id": 83533, + "slug": "lilith-izm", + "name": "LILITH-IZM", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [ + "Lilith" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17231388" + ], + "created_at": "2026-07-10T10:10:23.677844", + "updated_at": "2026-07-10T10:10:23.677844", + "url": "/v1/games/lilith-izm" +} diff --git a/site/public/v1/games/limbo-q118234805/index.json b/site/public/v1/games/limbo-q118234805/index.json new file mode 100644 index 000000000000..94c1a9090b52 --- /dev/null +++ b/site/public/v1/games/limbo-q118234805/index.json @@ -0,0 +1,29 @@ +{ + "id": 83586, + "slug": "limbo-q118234805", + "name": "Limbo+", + "release_date": "2023-05-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "iPadOS", + "iOS", + "macOS" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118234805" + ], + "created_at": "2026-07-10T10:10:23.691842", + "updated_at": "2026-07-10T10:10:23.691842", + "url": "/v1/games/limbo-q118234805" +} diff --git a/site/public/v1/games/limit-theory/index.json b/site/public/v1/games/limit-theory/index.json new file mode 100644 index 000000000000..ae1e2e0d53af --- /dev/null +++ b/site/public/v1/games/limit-theory/index.json @@ -0,0 +1,32 @@ +{ + "id": 83639, + "slug": "limit-theory", + "name": "Limit Theory", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "sandbox game", + "real-time strategy", + "role-playing video game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113381288" + ], + "created_at": "2026-07-10T10:10:23.705842", + "updated_at": "2026-07-10T10:10:23.705842", + "url": "/v1/games/limit-theory" +} diff --git a/site/public/v1/games/lineage-ii-the-chaotic-throne-the-kamael-the-1st-throne/index.json b/site/public/v1/games/lineage-ii-the-chaotic-throne-the-kamael-the-1st-throne/index.json new file mode 100644 index 000000000000..aee9c042023e --- /dev/null +++ b/site/public/v1/games/lineage-ii-the-chaotic-throne-the-kamael-the-1st-throne/index.json @@ -0,0 +1,29 @@ +{ + "id": 83699, + "slug": "lineage-ii-the-chaotic-throne-the-kamael-the-1st-throne", + "name": "Lineage II: The Chaotic Throne - The Kamael: The 1st Throne", + "release_date": "2007-12-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "NC" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130720186" + ], + "created_at": "2026-07-10T10:10:23.722932", + "updated_at": "2026-07-10T10:10:23.722932", + "url": "/v1/games/lineage-ii-the-chaotic-throne-the-kamael-the-1st-throne" +} diff --git a/site/public/v1/games/linux-doom/index.json b/site/public/v1/games/linux-doom/index.json new file mode 100644 index 000000000000..ab6fb68f7913 --- /dev/null +++ b/site/public/v1/games/linux-doom/index.json @@ -0,0 +1,27 @@ +{ + "id": 83796, + "slug": "linux-doom", + "name": "Linux Doom", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [ + "Dave Taylor" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q67198928" + ], + "created_at": "2026-07-10T10:10:23.748475", + "updated_at": "2026-07-10T10:10:23.748475", + "url": "/v1/games/linux-doom" +} diff --git a/site/public/v1/games/lips-egao-no-yukue/index.json b/site/public/v1/games/lips-egao-no-yukue/index.json new file mode 100644 index 000000000000..a1cfd1be11b6 --- /dev/null +++ b/site/public/v1/games/lips-egao-no-yukue/index.json @@ -0,0 +1,30 @@ +{ + "id": 83827, + "slug": "lips-egao-no-yukue", + "name": "Lips ~Egao no Yukue~", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "eroge", + "simulation video game" + ], + "stores": [], + "developers": [ + "I've Sound" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136334109" + ], + "created_at": "2026-07-10T10:10:23.757475", + "updated_at": "2026-07-10T10:10:23.757475", + "url": "/v1/games/lips-egao-no-yukue" +} diff --git a/site/public/v1/games/lisa-the-joyful/index.json b/site/public/v1/games/lisa-the-joyful/index.json new file mode 100644 index 000000000000..decf47ad29ec --- /dev/null +++ b/site/public/v1/games/lisa-the-joyful/index.json @@ -0,0 +1,28 @@ +{ + "id": 83862, + "slug": "lisa-the-joyful", + "name": "LISA the Joyful", + "release_date": "2015-08-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105697098" + ], + "created_at": "2026-07-10T10:10:23.766566", + "updated_at": "2026-07-10T10:10:23.766566", + "url": "/v1/games/lisa-the-joyful" +} diff --git a/site/public/v1/games/little-kitty-big-city-demo/index.json b/site/public/v1/games/little-kitty-big-city-demo/index.json new file mode 100644 index 000000000000..5ebe07580180 --- /dev/null +++ b/site/public/v1/games/little-kitty-big-city-demo/index.json @@ -0,0 +1,34 @@ +{ + "id": 84018, + "slug": "little-kitty-big-city-demo", + "name": "Little Kitty, Big City Demo", + "release_date": "2023-06-17", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "adventure video game", + "simulation video game" + ], + "stores": [], + "developers": [ + "Double Dagger Studio" + ], + "publishers": [ + "Double Dagger Studio" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122131059" + ], + "created_at": "2026-07-10T10:10:23.832147", + "updated_at": "2026-07-10T10:10:23.832147", + "url": "/v1/games/little-kitty-big-city-demo" +} diff --git a/site/public/v1/games/llamasoft-the-jeff-minter-story/index.json b/site/public/v1/games/llamasoft-the-jeff-minter-story/index.json new file mode 100644 index 000000000000..8c9da23b42b1 --- /dev/null +++ b/site/public/v1/games/llamasoft-the-jeff-minter-story/index.json @@ -0,0 +1,36 @@ +{ + "id": 84307, + "slug": "llamasoft-the-jeff-minter-story", + "name": "Llamasoft: The Jeff Minter Story", + "release_date": "2024-03-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 5", + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "arcade" + ], + "stores": [], + "developers": [ + "Digital Eclipse" + ], + "publishers": [ + "Digital Eclipse" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124612851" + ], + "created_at": "2026-07-10T10:10:23.947152", + "updated_at": "2026-07-10T10:10:23.947152", + "url": "/v1/games/llamasoft-the-jeff-minter-story" +} diff --git a/site/public/v1/games/lmno/index.json b/site/public/v1/games/lmno/index.json new file mode 100644 index 000000000000..a395c55c3682 --- /dev/null +++ b/site/public/v1/games/lmno/index.json @@ -0,0 +1,33 @@ +{ + "id": 84314, + "slug": "lmno", + "name": "LMNO", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter" + ], + "stores": [], + "developers": [ + "Electronic Arts" + ], + "publishers": [ + "Electronic Arts" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6459049" + ], + "created_at": "2026-07-10T10:10:23.948062", + "updated_at": "2026-07-10T10:10:23.948062", + "url": "/v1/games/lmno" +} diff --git a/site/public/v1/games/lobotomy-corporation-art-book/index.json b/site/public/v1/games/lobotomy-corporation-art-book/index.json new file mode 100644 index 000000000000..a4d7be4341a8 --- /dev/null +++ b/site/public/v1/games/lobotomy-corporation-art-book/index.json @@ -0,0 +1,29 @@ +{ + "id": 84350, + "slug": "lobotomy-corporation-art-book", + "name": "Lobotomy Corporation Art Book", + "release_date": "2018-07-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q78788605" + ], + "created_at": "2026-07-10T10:10:23.958129", + "updated_at": "2026-07-10T10:10:23.958129", + "url": "/v1/games/lobotomy-corporation-art-book" +} diff --git a/site/public/v1/games/lode-runner-q65056784/index.json b/site/public/v1/games/lode-runner-q65056784/index.json new file mode 100644 index 000000000000..e3b666bcf37b --- /dev/null +++ b/site/public/v1/games/lode-runner-q65056784/index.json @@ -0,0 +1,25 @@ +{ + "id": 84469, + "slug": "lode-runner-q65056784", + "name": "Lode Runner", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q65056784" + ], + "created_at": "2026-07-10T10:10:23.990170", + "updated_at": "2026-07-10T10:10:23.990170", + "url": "/v1/games/lode-runner-q65056784" +} diff --git a/site/public/v1/games/logistical-2-indonesia-bundle/index.json b/site/public/v1/games/logistical-2-indonesia-bundle/index.json new file mode 100644 index 000000000000..3a989575f179 --- /dev/null +++ b/site/public/v1/games/logistical-2-indonesia-bundle/index.json @@ -0,0 +1,31 @@ +{ + "id": 84556, + "slug": "logistical-2-indonesia-bundle", + "name": "LOGistICAL 2: Indonesia - Bundle", + "release_date": "2019-09-17", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Sacada" + ], + "publishers": [ + "Sacada" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117833432" + ], + "created_at": "2026-07-10T10:10:24.014139", + "updated_at": "2026-07-10T10:10:24.014139", + "url": "/v1/games/logistical-2-indonesia-bundle" +} diff --git a/site/public/v1/games/logistical-2-indonesia-sample/index.json b/site/public/v1/games/logistical-2-indonesia-sample/index.json new file mode 100644 index 000000000000..40c89fbdb287 --- /dev/null +++ b/site/public/v1/games/logistical-2-indonesia-sample/index.json @@ -0,0 +1,31 @@ +{ + "id": 84557, + "slug": "logistical-2-indonesia-sample", + "name": "LOGistICAL 2: Indonesia - Sample", + "release_date": "2019-08-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Sacada" + ], + "publishers": [ + "Sacada" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117833428" + ], + "created_at": "2026-07-10T10:10:24.015135", + "updated_at": "2026-07-10T10:10:24.015135", + "url": "/v1/games/logistical-2-indonesia-sample" +} diff --git a/site/public/v1/games/logistical-2-mall-rats/index.json b/site/public/v1/games/logistical-2-mall-rats/index.json new file mode 100644 index 000000000000..0f510662bdef --- /dev/null +++ b/site/public/v1/games/logistical-2-mall-rats/index.json @@ -0,0 +1,31 @@ +{ + "id": 84558, + "slug": "logistical-2-mall-rats", + "name": "LOGistICAL 2: Mall Rats", + "release_date": "2019-12-02", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Sacada" + ], + "publishers": [ + "Sacada" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117833450" + ], + "created_at": "2026-07-10T10:10:24.015135", + "updated_at": "2026-07-10T10:10:24.015135", + "url": "/v1/games/logistical-2-mall-rats" +} diff --git a/site/public/v1/games/logistical-2-suriname-xmas-2018/index.json b/site/public/v1/games/logistical-2-suriname-xmas-2018/index.json new file mode 100644 index 000000000000..d5e551dc59bb --- /dev/null +++ b/site/public/v1/games/logistical-2-suriname-xmas-2018/index.json @@ -0,0 +1,31 @@ +{ + "id": 84559, + "slug": "logistical-2-suriname-xmas-2018", + "name": "LOGistICAL 2 - Suriname (Xmas 2018)", + "release_date": "2019-08-11", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Sacada" + ], + "publishers": [ + "Sacada" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117833427" + ], + "created_at": "2026-07-10T10:10:24.015135", + "updated_at": "2026-07-10T10:10:24.015135", + "url": "/v1/games/logistical-2-suriname-xmas-2018" +} diff --git a/site/public/v1/games/logistical-2-sweden/index.json b/site/public/v1/games/logistical-2-sweden/index.json new file mode 100644 index 000000000000..1c6f1e004407 --- /dev/null +++ b/site/public/v1/games/logistical-2-sweden/index.json @@ -0,0 +1,31 @@ +{ + "id": 84560, + "slug": "logistical-2-sweden", + "name": "LOGistICAL 2: Sweden", + "release_date": "2020-01-31", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Sacada" + ], + "publishers": [ + "Sacada" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117833451" + ], + "created_at": "2026-07-10T10:10:24.015135", + "updated_at": "2026-07-10T10:10:24.015135", + "url": "/v1/games/logistical-2-sweden" +} diff --git a/site/public/v1/games/logistical-2-usa-texas-bundle/index.json b/site/public/v1/games/logistical-2-usa-texas-bundle/index.json new file mode 100644 index 000000000000..01224f6666d3 --- /dev/null +++ b/site/public/v1/games/logistical-2-usa-texas-bundle/index.json @@ -0,0 +1,31 @@ +{ + "id": 84562, + "slug": "logistical-2-usa-texas-bundle", + "name": "LOGistICAL 2: USA - Texas - Bundle", + "release_date": "2019-10-03", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Sacada" + ], + "publishers": [ + "Sacada" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117833441" + ], + "created_at": "2026-07-10T10:10:24.016177", + "updated_at": "2026-07-10T10:10:24.016177", + "url": "/v1/games/logistical-2-usa-texas-bundle" +} diff --git a/site/public/v1/games/logistical-2-usa-texas-sample/index.json b/site/public/v1/games/logistical-2-usa-texas-sample/index.json new file mode 100644 index 000000000000..f60beca4e0db --- /dev/null +++ b/site/public/v1/games/logistical-2-usa-texas-sample/index.json @@ -0,0 +1,31 @@ +{ + "id": 84563, + "slug": "logistical-2-usa-texas-sample", + "name": "LOGistICAL 2: USA - Texas - Sample", + "release_date": "2019-10-03", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Sacada" + ], + "publishers": [ + "Sacada" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117833436" + ], + "created_at": "2026-07-10T10:10:24.016177", + "updated_at": "2026-07-10T10:10:24.016177", + "url": "/v1/games/logistical-2-usa-texas-sample" +} diff --git a/site/public/v1/games/logistical-2-vampires-bundle/index.json b/site/public/v1/games/logistical-2-vampires-bundle/index.json new file mode 100644 index 000000000000..6d2852977ba1 --- /dev/null +++ b/site/public/v1/games/logistical-2-vampires-bundle/index.json @@ -0,0 +1,31 @@ +{ + "id": 84564, + "slug": "logistical-2-vampires-bundle", + "name": "LOGistICAL 2: Vampires - Bundle", + "release_date": "2019-11-06", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Sacada" + ], + "publishers": [ + "Sacada" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117833449" + ], + "created_at": "2026-07-10T10:10:24.016177", + "updated_at": "2026-07-10T10:10:24.016177", + "url": "/v1/games/logistical-2-vampires-bundle" +} diff --git a/site/public/v1/games/logistical-2-vampires-sample/index.json b/site/public/v1/games/logistical-2-vampires-sample/index.json new file mode 100644 index 000000000000..0ccee6913dbc --- /dev/null +++ b/site/public/v1/games/logistical-2-vampires-sample/index.json @@ -0,0 +1,31 @@ +{ + "id": 84566, + "slug": "logistical-2-vampires-sample", + "name": "LOGistICAL 2: Vampires - Sample", + "release_date": "2019-10-27", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Sacada" + ], + "publishers": [ + "Sacada" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117833445" + ], + "created_at": "2026-07-10T10:10:24.017140", + "updated_at": "2026-07-10T10:10:24.017140", + "url": "/v1/games/logistical-2-vampires-sample" +} diff --git a/site/public/v1/games/logistical-2-washington/index.json b/site/public/v1/games/logistical-2-washington/index.json new file mode 100644 index 000000000000..441fc3f139e2 --- /dev/null +++ b/site/public/v1/games/logistical-2-washington/index.json @@ -0,0 +1,31 @@ +{ + "id": 84567, + "slug": "logistical-2-washington", + "name": "LOGistICAL 2: Washington", + "release_date": "2019-09-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Sacada" + ], + "publishers": [ + "Sacada" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117833429" + ], + "created_at": "2026-07-10T10:10:24.017140", + "updated_at": "2026-07-10T10:10:24.017140", + "url": "/v1/games/logistical-2-washington" +} diff --git a/site/public/v1/games/logistical-canada/index.json b/site/public/v1/games/logistical-canada/index.json new file mode 100644 index 000000000000..eb28ad7e1b63 --- /dev/null +++ b/site/public/v1/games/logistical-canada/index.json @@ -0,0 +1,31 @@ +{ + "id": 84574, + "slug": "logistical-canada", + "name": "LOGistICAL - Canada", + "release_date": "2017-07-10", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Sacada" + ], + "publishers": [ + "Sacada" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117833423" + ], + "created_at": "2026-07-10T10:10:24.018143", + "updated_at": "2026-07-10T10:10:24.018143", + "url": "/v1/games/logistical-canada" +} diff --git a/site/public/v1/games/logistical-egypt/index.json b/site/public/v1/games/logistical-egypt/index.json new file mode 100644 index 000000000000..3a60a8d22422 --- /dev/null +++ b/site/public/v1/games/logistical-egypt/index.json @@ -0,0 +1,31 @@ +{ + "id": 84577, + "slug": "logistical-egypt", + "name": "LOGistICAL - Egypt", + "release_date": "2017-06-30", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Sacada" + ], + "publishers": [ + "Sacada" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117833426" + ], + "created_at": "2026-07-10T10:10:24.019156", + "updated_at": "2026-07-10T10:10:24.019156", + "url": "/v1/games/logistical-egypt" +} diff --git a/site/public/v1/games/logistical-germany/index.json b/site/public/v1/games/logistical-germany/index.json new file mode 100644 index 000000000000..9342e535d8ec --- /dev/null +++ b/site/public/v1/games/logistical-germany/index.json @@ -0,0 +1,31 @@ +{ + "id": 84578, + "slug": "logistical-germany", + "name": "LOGistICAL - Germany", + "release_date": "2017-06-15", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Sacada" + ], + "publishers": [ + "Sacada" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117833422" + ], + "created_at": "2026-07-10T10:10:24.019156", + "updated_at": "2026-07-10T10:10:24.019156", + "url": "/v1/games/logistical-germany" +} diff --git a/site/public/v1/games/logistical-new-zealand/index.json b/site/public/v1/games/logistical-new-zealand/index.json new file mode 100644 index 000000000000..e3e266090b41 --- /dev/null +++ b/site/public/v1/games/logistical-new-zealand/index.json @@ -0,0 +1,31 @@ +{ + "id": 84581, + "slug": "logistical-new-zealand", + "name": "LOGistICAL - New Zealand", + "release_date": "2017-04-25", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Sacada" + ], + "publishers": [ + "Sacada" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117833420" + ], + "created_at": "2026-07-10T10:10:24.020122", + "updated_at": "2026-07-10T10:10:24.020122", + "url": "/v1/games/logistical-new-zealand" +} diff --git a/site/public/v1/games/logistical-the-netherlands/index.json b/site/public/v1/games/logistical-the-netherlands/index.json new file mode 100644 index 000000000000..265858b812c7 --- /dev/null +++ b/site/public/v1/games/logistical-the-netherlands/index.json @@ -0,0 +1,31 @@ +{ + "id": 84586, + "slug": "logistical-the-netherlands", + "name": "LOGistICAL - The Netherlands", + "release_date": "2017-05-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Sacada" + ], + "publishers": [ + "Sacada" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117833421" + ], + "created_at": "2026-07-10T10:10:24.020122", + "updated_at": "2026-07-10T10:10:24.020122", + "url": "/v1/games/logistical-the-netherlands" +} diff --git a/site/public/v1/games/logistical-usa-california/index.json b/site/public/v1/games/logistical-usa-california/index.json new file mode 100644 index 000000000000..45f6129cd7db --- /dev/null +++ b/site/public/v1/games/logistical-usa-california/index.json @@ -0,0 +1,31 @@ +{ + "id": 84587, + "slug": "logistical-usa-california", + "name": "LOGistICAL - USA - California", + "release_date": "2017-05-26", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Sacada" + ], + "publishers": [ + "Sacada" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117833425" + ], + "created_at": "2026-07-10T10:10:24.021107", + "updated_at": "2026-07-10T10:10:24.021107", + "url": "/v1/games/logistical-usa-california" +} diff --git a/site/public/v1/games/logistical-usa-hawaii/index.json b/site/public/v1/games/logistical-usa-hawaii/index.json new file mode 100644 index 000000000000..ff61347635e8 --- /dev/null +++ b/site/public/v1/games/logistical-usa-hawaii/index.json @@ -0,0 +1,31 @@ +{ + "id": 84589, + "slug": "logistical-usa-hawaii", + "name": "LOGistICAL - USA - Hawaii", + "release_date": "2017-06-02", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Sacada" + ], + "publishers": [ + "Sacada" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117833424" + ], + "created_at": "2026-07-10T10:10:24.021107", + "updated_at": "2026-07-10T10:10:24.021107", + "url": "/v1/games/logistical-usa-hawaii" +} diff --git a/site/public/v1/games/long-road-ahead/index.json b/site/public/v1/games/long-road-ahead/index.json new file mode 100644 index 000000000000..2d02568ae966 --- /dev/null +++ b/site/public/v1/games/long-road-ahead/index.json @@ -0,0 +1,29 @@ +{ + "id": 84748, + "slug": "long-road-ahead", + "name": "Long Road Ahead", + "release_date": "2012-10-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 4" + ], + "genres": [], + "stores": [], + "developers": [ + "Telltale Games" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16746431" + ], + "created_at": "2026-07-10T10:10:24.073902", + "updated_at": "2026-07-10T10:10:24.073902", + "url": "/v1/games/long-road-ahead" +} diff --git a/site/public/v1/games/lords-of-magic-legends-of-urak/index.json b/site/public/v1/games/lords-of-magic-legends-of-urak/index.json new file mode 100644 index 000000000000..e4e7adcf9d0a --- /dev/null +++ b/site/public/v1/games/lords-of-magic-legends-of-urak/index.json @@ -0,0 +1,25 @@ +{ + "id": 85015, + "slug": "lords-of-magic-legends-of-urak", + "name": "Lords of Magic: Legends of Urak", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110156426" + ], + "created_at": "2026-07-10T10:10:24.146407", + "updated_at": "2026-07-10T10:10:24.146407", + "url": "/v1/games/lords-of-magic-legends-of-urak" +} diff --git a/site/public/v1/games/lords-of-the-earth/index.json b/site/public/v1/games/lords-of-the-earth/index.json new file mode 100644 index 000000000000..e25def9853bc --- /dev/null +++ b/site/public/v1/games/lords-of-the-earth/index.json @@ -0,0 +1,25 @@ +{ + "id": 85028, + "slug": "lords-of-the-earth", + "name": "Lords of the Earth", + "release_date": "1983-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115794209" + ], + "created_at": "2026-07-10T10:10:24.149493", + "updated_at": "2026-07-10T10:10:24.149493", + "url": "/v1/games/lords-of-the-earth" +} diff --git a/site/public/v1/games/lords-of-the-fallen-ancient-labyrinth/index.json b/site/public/v1/games/lords-of-the-fallen-ancient-labyrinth/index.json new file mode 100644 index 000000000000..507bc5aafb8b --- /dev/null +++ b/site/public/v1/games/lords-of-the-fallen-ancient-labyrinth/index.json @@ -0,0 +1,25 @@ +{ + "id": 85029, + "slug": "lords-of-the-fallen-ancient-labyrinth", + "name": "Lords of the Fallen: Ancient Labyrinth", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125156631" + ], + "created_at": "2026-07-10T10:10:24.150474", + "updated_at": "2026-07-10T10:10:24.150474", + "url": "/v1/games/lords-of-the-fallen-ancient-labyrinth" +} diff --git a/site/public/v1/games/lorna-q114027887/index.json b/site/public/v1/games/lorna-q114027887/index.json new file mode 100644 index 000000000000..a38a10f8916d --- /dev/null +++ b/site/public/v1/games/lorna-q114027887/index.json @@ -0,0 +1,25 @@ +{ + "id": 85066, + "slug": "lorna-q114027887", + "name": "Lorna", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q114027887" + ], + "created_at": "2026-07-10T10:10:24.160420", + "updated_at": "2026-07-10T10:10:24.160420", + "url": "/v1/games/lorna-q114027887" +} diff --git a/site/public/v1/games/lost-on-island/index.json b/site/public/v1/games/lost-on-island/index.json new file mode 100644 index 000000000000..9166d3e46cac --- /dev/null +++ b/site/public/v1/games/lost-on-island/index.json @@ -0,0 +1,33 @@ +{ + "id": 85386, + "slug": "lost-on-island", + "name": "Lost on Island", + "release_date": "2021-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation Vita" + ], + "genres": [ + "survival game" + ], + "stores": [], + "developers": [ + "VitaDev Games" + ], + "publishers": [ + "VitaDev Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124059823" + ], + "created_at": "2026-07-10T10:10:24.248791", + "updated_at": "2026-07-10T10:10:24.248791", + "url": "/v1/games/lost-on-island" +} diff --git a/site/public/v1/games/lost-phones-stories/index.json b/site/public/v1/games/lost-phones-stories/index.json new file mode 100644 index 000000000000..1a4f52887c9a --- /dev/null +++ b/site/public/v1/games/lost-phones-stories/index.json @@ -0,0 +1,33 @@ +{ + "id": 85393, + "slug": "lost-phones-stories", + "name": "Lost Phones Stories", + "release_date": "2018-07-19", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "puzzle video game", + "casual game" + ], + "stores": [], + "developers": [ + "Accidental Queens" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q91906107" + ], + "created_at": "2026-07-10T10:10:24.250789", + "updated_at": "2026-07-10T10:10:24.250789", + "url": "/v1/games/lost-phones-stories" +} diff --git a/site/public/v1/games/love-n-war-warlord-by-chance-sisters-of-castus/index.json b/site/public/v1/games/love-n-war-warlord-by-chance-sisters-of-castus/index.json new file mode 100644 index 000000000000..d9e70de9c593 --- /dev/null +++ b/site/public/v1/games/love-n-war-warlord-by-chance-sisters-of-castus/index.json @@ -0,0 +1,31 @@ +{ + "id": 85678, + "slug": "love-n-war-warlord-by-chance-sisters-of-castus", + "name": "Love n War: Warlord by Chance - Sisters of Castus", + "release_date": "2021-09-19", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Reborn Entertainment" + ], + "publishers": [ + "Reborn Entertainment" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116152656" + ], + "created_at": "2026-07-10T10:10:24.331635", + "updated_at": "2026-07-10T10:10:24.331635", + "url": "/v1/games/love-n-war-warlord-by-chance-sisters-of-castus" +} diff --git a/site/public/v1/games/love-you-to-bits-q113655200/index.json b/site/public/v1/games/love-you-to-bits-q113655200/index.json new file mode 100644 index 000000000000..b3e34263ca46 --- /dev/null +++ b/site/public/v1/games/love-you-to-bits-q113655200/index.json @@ -0,0 +1,28 @@ +{ + "id": 85758, + "slug": "love-you-to-bits-q113655200", + "name": "Love You to Bits+", + "release_date": "2022-08-26", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "iPadOS", + "iOS" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113655200" + ], + "created_at": "2026-07-10T10:10:24.353169", + "updated_at": "2026-07-10T10:10:24.353169", + "url": "/v1/games/love-you-to-bits-q113655200" +} diff --git a/site/public/v1/games/lover-boy/index.json b/site/public/v1/games/lover-boy/index.json new file mode 100644 index 000000000000..5e2ae00ad088 --- /dev/null +++ b/site/public/v1/games/lover-boy/index.json @@ -0,0 +1,27 @@ +{ + "id": 85831, + "slug": "lover-boy", + "name": "Lover Boy", + "release_date": "1983-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "maze video game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1872474" + ], + "created_at": "2026-07-10T10:10:24.374346", + "updated_at": "2026-07-10T10:10:24.374346", + "url": "/v1/games/lover-boy" +} diff --git a/site/public/v1/games/loving-donation/index.json b/site/public/v1/games/loving-donation/index.json new file mode 100644 index 000000000000..0ec96f9f1d42 --- /dev/null +++ b/site/public/v1/games/loving-donation/index.json @@ -0,0 +1,34 @@ +{ + "id": 85857, + "slug": "loving-donation", + "name": "Loving donation", + "release_date": "2019-03-11", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "casual game", + "advergame" + ], + "stores": [], + "developers": [ + "SS Studios" + ], + "publishers": [ + "SS Studios" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62027704" + ], + "created_at": "2026-07-10T10:10:24.381346", + "updated_at": "2026-07-10T10:10:24.381346", + "url": "/v1/games/loving-donation" +} diff --git a/site/public/v1/games/lucasarts-classic-adventures/index.json b/site/public/v1/games/lucasarts-classic-adventures/index.json new file mode 100644 index 000000000000..b49994632d20 --- /dev/null +++ b/site/public/v1/games/lucasarts-classic-adventures/index.json @@ -0,0 +1,25 @@ +{ + "id": 85926, + "slug": "lucasarts-classic-adventures", + "name": "Lucasarts Classic Adventures", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125203108" + ], + "created_at": "2026-07-10T10:10:24.400346", + "updated_at": "2026-07-10T10:10:24.400346", + "url": "/v1/games/lucasarts-classic-adventures" +} diff --git a/site/public/v1/games/lula-online/index.json b/site/public/v1/games/lula-online/index.json new file mode 100644 index 000000000000..0aecf39e6d90 --- /dev/null +++ b/site/public/v1/games/lula-online/index.json @@ -0,0 +1,34 @@ +{ + "id": 86112, + "slug": "lula-online", + "name": "Lula Online", + "release_date": "2012-02-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "web browser" + ], + "genres": [ + "massively multiplayer online role-playing game", + "erotic video game" + ], + "stores": [], + "developers": [ + "Lula Online" + ], + "publishers": [ + "Lula Online" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q103061515" + ], + "created_at": "2026-07-10T10:10:24.455873", + "updated_at": "2026-07-10T10:10:24.455873", + "url": "/v1/games/lula-online" +} diff --git a/site/public/v1/games/lula-s-wet-pack/index.json b/site/public/v1/games/lula-s-wet-pack/index.json new file mode 100644 index 000000000000..c61fdb1b4fec --- /dev/null +++ b/site/public/v1/games/lula-s-wet-pack/index.json @@ -0,0 +1,33 @@ +{ + "id": 86113, + "slug": "lula-s-wet-pack", + "name": "Lula's Wet Pack", + "release_date": "2001-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "erotic video game" + ], + "stores": [], + "developers": [ + "cdv Software Entertainment" + ], + "publishers": [ + "cdv Software Entertainment" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q103057075" + ], + "created_at": "2026-07-10T10:10:24.456873", + "updated_at": "2026-07-10T10:10:24.456873", + "url": "/v1/games/lula-s-wet-pack" +} diff --git a/site/public/v1/games/lunar-remastered-collection/index.json b/site/public/v1/games/lunar-remastered-collection/index.json new file mode 100644 index 000000000000..0992261a6871 --- /dev/null +++ b/site/public/v1/games/lunar-remastered-collection/index.json @@ -0,0 +1,35 @@ +{ + "id": 86302, + "slug": "lunar-remastered-collection", + "name": "Lunar Remastered Collection", + "release_date": "2025-04-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 5", + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "role-playing video game" + ], + "stores": [], + "developers": [ + "GungHo Online Entertainment" + ], + "publishers": [ + "GungHo Online Entertainment" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130360705" + ], + "created_at": "2026-07-10T10:10:24.508606", + "updated_at": "2026-07-10T10:10:24.508606", + "url": "/v1/games/lunar-remastered-collection" +} diff --git a/site/public/v1/games/luxy-s-space-adventure/index.json b/site/public/v1/games/luxy-s-space-adventure/index.json new file mode 100644 index 000000000000..ffafc334b30a --- /dev/null +++ b/site/public/v1/games/luxy-s-space-adventure/index.json @@ -0,0 +1,25 @@ +{ + "id": 86524, + "slug": "luxy-s-space-adventure", + "name": "Luxy's Space Adventure", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63248186" + ], + "created_at": "2026-07-10T10:10:24.567302", + "updated_at": "2026-07-10T10:10:24.567302", + "url": "/v1/games/luxy-s-space-adventure" +} diff --git a/site/public/v1/games/lzdoom/index.json b/site/public/v1/games/lzdoom/index.json new file mode 100644 index 000000000000..aa6266a91285 --- /dev/null +++ b/site/public/v1/games/lzdoom/index.json @@ -0,0 +1,25 @@ +{ + "id": 86569, + "slug": "lzdoom", + "name": "LZDoom", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124452085" + ], + "created_at": "2026-07-10T10:10:24.580234", + "updated_at": "2026-07-10T10:10:24.580234", + "url": "/v1/games/lzdoom" +} diff --git a/site/public/v1/games/m-a-x-m-a-x-2/index.json b/site/public/v1/games/m-a-x-m-a-x-2/index.json new file mode 100644 index 000000000000..d401c7f5880d --- /dev/null +++ b/site/public/v1/games/m-a-x-m-a-x-2/index.json @@ -0,0 +1,27 @@ +{ + "id": 86588, + "slug": "m-a-x-m-a-x-2", + "name": "M.A.X. & M.A.X. 2", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q90145130" + ], + "created_at": "2026-07-10T10:10:24.585247", + "updated_at": "2026-07-10T10:10:24.585247", + "url": "/v1/games/m-a-x-m-a-x-2" +} diff --git a/site/public/v1/games/mad-snake/index.json b/site/public/v1/games/mad-snake/index.json new file mode 100644 index 000000000000..1033fad3ff1f --- /dev/null +++ b/site/public/v1/games/mad-snake/index.json @@ -0,0 +1,30 @@ +{ + "id": 86867, + "slug": "mad-snake", + "name": "Mad Snake", + "release_date": "2026-03-06", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "iOS" + ], + "genres": [ + "casual game", + "arcade game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138659246" + ], + "created_at": "2026-07-10T10:10:24.659908", + "updated_at": "2026-07-10T10:10:24.659908", + "url": "/v1/games/mad-snake" +} diff --git a/site/public/v1/games/mad/index.json b/site/public/v1/games/mad/index.json new file mode 100644 index 000000000000..a518323b321c --- /dev/null +++ b/site/public/v1/games/mad/index.json @@ -0,0 +1,25 @@ +{ + "id": 86890, + "slug": "mad", + "name": "MAD", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6714096" + ], + "created_at": "2026-07-10T10:10:24.665904", + "updated_at": "2026-07-10T10:10:24.665904", + "url": "/v1/games/mad" +} diff --git a/site/public/v1/games/mafago-nft/index.json b/site/public/v1/games/mafago-nft/index.json new file mode 100644 index 000000000000..ba3f56cfd677 --- /dev/null +++ b/site/public/v1/games/mafago-nft/index.json @@ -0,0 +1,25 @@ +{ + "id": 87053, + "slug": "mafago-nft", + "name": "Mafago NFT", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112939868" + ], + "created_at": "2026-07-10T10:10:24.706905", + "updated_at": "2026-07-10T10:10:24.706905", + "url": "/v1/games/mafago-nft" +} diff --git a/site/public/v1/games/mafia-2-joe-s-adventures/index.json b/site/public/v1/games/mafia-2-joe-s-adventures/index.json new file mode 100644 index 000000000000..bec7fe07f75c --- /dev/null +++ b/site/public/v1/games/mafia-2-joe-s-adventures/index.json @@ -0,0 +1,27 @@ +{ + "id": 87055, + "slug": "mafia-2-joe-s-adventures", + "name": "Mafia 2: Joe's Adventures", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Warner Bros. Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28759740" + ], + "created_at": "2026-07-10T10:10:24.707910", + "updated_at": "2026-07-10T10:10:24.707910", + "url": "/v1/games/mafia-2-joe-s-adventures" +} diff --git a/site/public/v1/games/mafia-ii-the-betrayal-of-jimmy/index.json b/site/public/v1/games/mafia-ii-the-betrayal-of-jimmy/index.json new file mode 100644 index 000000000000..af29a24fe230 --- /dev/null +++ b/site/public/v1/games/mafia-ii-the-betrayal-of-jimmy/index.json @@ -0,0 +1,25 @@ +{ + "id": 87065, + "slug": "mafia-ii-the-betrayal-of-jimmy", + "name": "Mafia II: The Betrayal of Jimmy", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110160974" + ], + "created_at": "2026-07-10T10:10:24.710910", + "updated_at": "2026-07-10T10:10:24.710910", + "url": "/v1/games/mafia-ii-the-betrayal-of-jimmy" +} diff --git a/site/public/v1/games/mafia-trilogy/index.json b/site/public/v1/games/mafia-trilogy/index.json new file mode 100644 index 000000000000..816c0861869e --- /dev/null +++ b/site/public/v1/games/mafia-trilogy/index.json @@ -0,0 +1,33 @@ +{ + "id": 87077, + "slug": "mafia-trilogy", + "name": "Mafia: Trilogy", + "release_date": "2020-05-19", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "action-adventure game", + "third-person shooter" + ], + "stores": [], + "developers": [], + "publishers": [ + "2K" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q97096253" + ], + "created_at": "2026-07-10T10:10:24.713908", + "updated_at": "2026-07-10T10:10:24.713908", + "url": "/v1/games/mafia-trilogy" +} diff --git a/site/public/v1/games/mafia-triple-pack/index.json b/site/public/v1/games/mafia-triple-pack/index.json new file mode 100644 index 000000000000..48b3a2c3c672 --- /dev/null +++ b/site/public/v1/games/mafia-triple-pack/index.json @@ -0,0 +1,30 @@ +{ + "id": 87078, + "slug": "mafia-triple-pack", + "name": "Mafia Triple Pack", + "release_date": "2017-11-21", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "action-adventure game", + "third-person shooter" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q71192266" + ], + "created_at": "2026-07-10T10:10:24.713908", + "updated_at": "2026-07-10T10:10:24.713908", + "url": "/v1/games/mafia-triple-pack" +} diff --git a/site/public/v1/games/magic-tennis/index.json b/site/public/v1/games/magic-tennis/index.json new file mode 100644 index 000000000000..0223645973cf --- /dev/null +++ b/site/public/v1/games/magic-tennis/index.json @@ -0,0 +1,27 @@ +{ + "id": 87361, + "slug": "magic-tennis", + "name": "Magic Tennis", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [ + "Art & Magic" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105478030" + ], + "created_at": "2026-07-10T10:10:24.792812", + "updated_at": "2026-07-10T10:10:24.792812", + "url": "/v1/games/magic-tennis" +} diff --git a/site/public/v1/games/magical-halloween-2/index.json b/site/public/v1/games/magical-halloween-2/index.json new file mode 100644 index 000000000000..3ee3add7735e --- /dev/null +++ b/site/public/v1/games/magical-halloween-2/index.json @@ -0,0 +1,25 @@ +{ + "id": 87456, + "slug": "magical-halloween-2", + "name": "Magical Halloween 2", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11340197" + ], + "created_at": "2026-07-10T10:10:24.842891", + "updated_at": "2026-07-10T10:10:24.842891", + "url": "/v1/games/magical-halloween-2" +} diff --git a/site/public/v1/games/magicka-vietnam/index.json b/site/public/v1/games/magicka-vietnam/index.json new file mode 100644 index 000000000000..940e85b8df81 --- /dev/null +++ b/site/public/v1/games/magicka-vietnam/index.json @@ -0,0 +1,33 @@ +{ + "id": 87537, + "slug": "magicka-vietnam", + "name": "Magicka: Vietnam", + "release_date": "2011-04-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "role-playing video game" + ], + "stores": [], + "developers": [ + "Arrowhead Game Studios" + ], + "publishers": [ + "Paradox Interactive" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110817113" + ], + "created_at": "2026-07-10T10:10:24.864398", + "updated_at": "2026-07-10T10:10:24.864398", + "url": "/v1/games/magicka-vietnam" +} diff --git a/site/public/v1/games/mahjong-titan/index.json b/site/public/v1/games/mahjong-titan/index.json new file mode 100644 index 000000000000..268c2583cf25 --- /dev/null +++ b/site/public/v1/games/mahjong-titan/index.json @@ -0,0 +1,32 @@ +{ + "id": 87747, + "slug": "mahjong-titan", + "name": "Mahjong Titan+", + "release_date": "2021-04-02", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "iPadOS", + "iOS" + ], + "genres": [], + "stores": [], + "developers": [ + "Kristanix Games" + ], + "publishers": [ + "Kristanix Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107349470" + ], + "created_at": "2026-07-10T10:10:24.920491", + "updated_at": "2026-07-10T10:10:24.920491", + "url": "/v1/games/mahjong-titan" +} diff --git a/site/public/v1/games/maimai/index.json b/site/public/v1/games/maimai/index.json new file mode 100644 index 000000000000..61a227a74002 --- /dev/null +++ b/site/public/v1/games/maimai/index.json @@ -0,0 +1,32 @@ +{ + "id": 87832, + "slug": "maimai", + "name": "maimai", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "arcade video game machine" + ], + "genres": [ + "rhythm game", + "science fiction video game" + ], + "stores": [], + "developers": [ + "Sega" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11232688" + ], + "created_at": "2026-07-10T10:10:24.942528", + "updated_at": "2026-07-10T10:10:24.942528", + "url": "/v1/games/maimai" +} diff --git a/site/public/v1/games/majesty-2-battles-of-ardania/index.json b/site/public/v1/games/majesty-2-battles-of-ardania/index.json new file mode 100644 index 000000000000..29de93472dd5 --- /dev/null +++ b/site/public/v1/games/majesty-2-battles-of-ardania/index.json @@ -0,0 +1,31 @@ +{ + "id": 87878, + "slug": "majesty-2-battles-of-ardania", + "name": "Majesty 2: Battles of Ardania", + "release_date": "2010-05-21", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "real-time strategy" + ], + "stores": [], + "developers": [], + "publishers": [ + "Paradox Interactive" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110817115" + ], + "created_at": "2026-07-10T10:10:24.955206", + "updated_at": "2026-07-10T10:10:24.955206", + "url": "/v1/games/majesty-2-battles-of-ardania" +} diff --git a/site/public/v1/games/majesty-2-kingmaker/index.json b/site/public/v1/games/majesty-2-kingmaker/index.json new file mode 100644 index 000000000000..f26f36352fe7 --- /dev/null +++ b/site/public/v1/games/majesty-2-kingmaker/index.json @@ -0,0 +1,32 @@ +{ + "id": 87880, + "slug": "majesty-2-kingmaker", + "name": "Majesty 2: Kingmaker", + "release_date": "2010-03-26", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "real-time strategy" + ], + "stores": [], + "developers": [], + "publishers": [ + "Paradox Interactive" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110817116" + ], + "created_at": "2026-07-10T10:10:24.955206", + "updated_at": "2026-07-10T10:10:24.955206", + "url": "/v1/games/majesty-2-kingmaker" +} diff --git a/site/public/v1/games/majesty-2-monster-kingdom/index.json b/site/public/v1/games/majesty-2-monster-kingdom/index.json new file mode 100644 index 000000000000..f00734c34e35 --- /dev/null +++ b/site/public/v1/games/majesty-2-monster-kingdom/index.json @@ -0,0 +1,32 @@ +{ + "id": 87881, + "slug": "majesty-2-monster-kingdom", + "name": "Majesty 2: Monster Kingdom", + "release_date": "2011-01-11", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "real-time strategy" + ], + "stores": [], + "developers": [], + "publishers": [ + "Paradox Interactive", + "Softclub" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110817114" + ], + "created_at": "2026-07-10T10:10:24.956192", + "updated_at": "2026-07-10T10:10:24.956192", + "url": "/v1/games/majesty-2-monster-kingdom" +} diff --git a/site/public/v1/games/majesty-the-northern-expansion/index.json b/site/public/v1/games/majesty-the-northern-expansion/index.json new file mode 100644 index 000000000000..a1b16aeb4b81 --- /dev/null +++ b/site/public/v1/games/majesty-the-northern-expansion/index.json @@ -0,0 +1,25 @@ +{ + "id": 87884, + "slug": "majesty-the-northern-expansion", + "name": "Majesty: The Northern Expansion", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110156164" + ], + "created_at": "2026-07-10T10:10:24.957217", + "updated_at": "2026-07-10T10:10:24.957217", + "url": "/v1/games/majesty-the-northern-expansion" +} diff --git a/site/public/v1/games/major-minor-complete-edition/index.json b/site/public/v1/games/major-minor-complete-edition/index.json new file mode 100644 index 000000000000..4706c32603ca --- /dev/null +++ b/site/public/v1/games/major-minor-complete-edition/index.json @@ -0,0 +1,30 @@ +{ + "id": 87931, + "slug": "major-minor-complete-edition", + "name": "Major\\Minor: Complete Edition", + "release_date": "2016-10-11", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "visual novel" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120769478" + ], + "created_at": "2026-07-10T10:10:24.968207", + "updated_at": "2026-07-10T10:10:24.968207", + "url": "/v1/games/major-minor-complete-edition" +} diff --git a/site/public/v1/games/mall-tycoon-2-deluxe/index.json b/site/public/v1/games/mall-tycoon-2-deluxe/index.json new file mode 100644 index 000000000000..d4d767720b02 --- /dev/null +++ b/site/public/v1/games/mall-tycoon-2-deluxe/index.json @@ -0,0 +1,27 @@ +{ + "id": 88106, + "slug": "mall-tycoon-2-deluxe", + "name": "Mall Tycoon 2 Deluxe", + "release_date": "2004-10-05", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110211258" + ], + "created_at": "2026-07-10T10:10:25.015939", + "updated_at": "2026-07-10T10:10:25.015939", + "url": "/v1/games/mall-tycoon-2-deluxe" +} diff --git a/site/public/v1/games/managed-doom/index.json b/site/public/v1/games/managed-doom/index.json new file mode 100644 index 000000000000..7871034d16cf --- /dev/null +++ b/site/public/v1/games/managed-doom/index.json @@ -0,0 +1,25 @@ +{ + "id": 88232, + "slug": "managed-doom", + "name": "Managed Doom", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124654970" + ], + "created_at": "2026-07-10T10:10:25.050352", + "updated_at": "2026-07-10T10:10:25.050352", + "url": "/v1/games/managed-doom" +} diff --git a/site/public/v1/games/maniac-mansion-deluxe/index.json b/site/public/v1/games/maniac-mansion-deluxe/index.json new file mode 100644 index 000000000000..ecf9b3e1da99 --- /dev/null +++ b/site/public/v1/games/maniac-mansion-deluxe/index.json @@ -0,0 +1,25 @@ +{ + "id": 88326, + "slug": "maniac-mansion-deluxe", + "name": "Maniac Mansion Deluxe", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116681168" + ], + "created_at": "2026-07-10T10:10:25.076428", + "updated_at": "2026-07-10T10:10:25.076428", + "url": "/v1/games/maniac-mansion-deluxe" +} diff --git a/site/public/v1/games/map-pack/index.json b/site/public/v1/games/map-pack/index.json new file mode 100644 index 000000000000..d808ae68ce44 --- /dev/null +++ b/site/public/v1/games/map-pack/index.json @@ -0,0 +1,25 @@ +{ + "id": 88449, + "slug": "map-pack", + "name": "map pack", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107636709" + ], + "created_at": "2026-07-10T10:10:25.110122", + "updated_at": "2026-07-10T10:10:25.110122", + "url": "/v1/games/map-pack" +} diff --git a/site/public/v1/games/maple-shot/index.json b/site/public/v1/games/maple-shot/index.json new file mode 100644 index 000000000000..0c7eadeaefa8 --- /dev/null +++ b/site/public/v1/games/maple-shot/index.json @@ -0,0 +1,25 @@ +{ + "id": 88456, + "slug": "maple-shot", + "name": "Maple Shot", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q128014892" + ], + "created_at": "2026-07-10T10:10:25.112107", + "updated_at": "2026-07-10T10:10:25.112107", + "url": "/v1/games/maple-shot" +} diff --git a/site/public/v1/games/maplestory-universe/index.json b/site/public/v1/games/maplestory-universe/index.json new file mode 100644 index 000000000000..9cdddafd5618 --- /dev/null +++ b/site/public/v1/games/maplestory-universe/index.json @@ -0,0 +1,25 @@ +{ + "id": 88465, + "slug": "maplestory-universe", + "name": "MapleStory Universe", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q133455543" + ], + "created_at": "2026-07-10T10:10:25.114109", + "updated_at": "2026-07-10T10:10:25.114109", + "url": "/v1/games/maplestory-universe" +} diff --git a/site/public/v1/games/mare-nostrum/index.json b/site/public/v1/games/mare-nostrum/index.json new file mode 100644 index 000000000000..5091da933900 --- /dev/null +++ b/site/public/v1/games/mare-nostrum/index.json @@ -0,0 +1,34 @@ +{ + "id": 88607, + "slug": "mare-nostrum", + "name": "Mare Nostrum", + "release_date": "2008-03-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "first-person shooter" + ], + "stores": [], + "developers": [ + "Sandstorm Productions" + ], + "publishers": [ + "Tripwire Interactive" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130670" + ], + "created_at": "2026-07-10T10:10:25.151916", + "updated_at": "2026-07-10T10:10:25.151916", + "url": "/v1/games/mare-nostrum" +} diff --git a/site/public/v1/games/mario-kart-8-deluxe-booster-course-pass/index.json b/site/public/v1/games/mario-kart-8-deluxe-booster-course-pass/index.json new file mode 100644 index 000000000000..4f5325109e51 --- /dev/null +++ b/site/public/v1/games/mario-kart-8-deluxe-booster-course-pass/index.json @@ -0,0 +1,27 @@ +{ + "id": 88702, + "slug": "mario-kart-8-deluxe-booster-course-pass", + "name": "Mario Kart 8 Deluxe – Booster Course Pass", + "release_date": "2022-03-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Nintendo" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111307774" + ], + "created_at": "2026-07-10T10:10:25.177916", + "updated_at": "2026-07-10T10:10:25.177916", + "url": "/v1/games/mario-kart-8-deluxe-booster-course-pass" +} diff --git a/site/public/v1/games/mario-rabbids-kingdom-battle-donkey-kong-adventure/index.json b/site/public/v1/games/mario-rabbids-kingdom-battle-donkey-kong-adventure/index.json new file mode 100644 index 000000000000..cd801e20af76 --- /dev/null +++ b/site/public/v1/games/mario-rabbids-kingdom-battle-donkey-kong-adventure/index.json @@ -0,0 +1,27 @@ +{ + "id": 88752, + "slug": "mario-rabbids-kingdom-battle-donkey-kong-adventure", + "name": "Mario + Rabbids Kingdom Battle: Donkey Kong Adventure", + "release_date": "2018-06-26", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Nintendo Switch Lite" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q129414472" + ], + "created_at": "2026-07-10T10:10:25.187924", + "updated_at": "2026-07-10T10:10:25.187924", + "url": "/v1/games/mario-rabbids-kingdom-battle-donkey-kong-adventure" +} diff --git a/site/public/v1/games/mario-rabbids-kingdom-battle-gold-edition/index.json b/site/public/v1/games/mario-rabbids-kingdom-battle-gold-edition/index.json new file mode 100644 index 000000000000..917fc2706c1a --- /dev/null +++ b/site/public/v1/games/mario-rabbids-kingdom-battle-gold-edition/index.json @@ -0,0 +1,25 @@ +{ + "id": 88753, + "slug": "mario-rabbids-kingdom-battle-gold-edition", + "name": "Mario + Rabbids: Kingdom Battle - Gold Edition", + "release_date": "2017-11-17", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q129416260" + ], + "created_at": "2026-07-10T10:10:25.188817", + "updated_at": "2026-07-10T10:10:25.188817", + "url": "/v1/games/mario-rabbids-kingdom-battle-gold-edition" +} diff --git a/site/public/v1/games/mars-pack/index.json b/site/public/v1/games/mars-pack/index.json new file mode 100644 index 000000000000..9388691c9304 --- /dev/null +++ b/site/public/v1/games/mars-pack/index.json @@ -0,0 +1,27 @@ +{ + "id": 88930, + "slug": "mars-pack", + "name": "Mars Pack", + "release_date": "2012-11-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60607939" + ], + "created_at": "2026-07-10T10:10:25.234044", + "updated_at": "2026-07-10T10:10:25.234044", + "url": "/v1/games/mars-pack" +} diff --git a/site/public/v1/games/mass-effect-2-arrival/index.json b/site/public/v1/games/mass-effect-2-arrival/index.json new file mode 100644 index 000000000000..f45f51476e9e --- /dev/null +++ b/site/public/v1/games/mass-effect-2-arrival/index.json @@ -0,0 +1,35 @@ +{ + "id": 89172, + "slug": "mass-effect-2-arrival", + "name": "Mass Effect 2: Arrival", + "release_date": "2011-03-29", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 3", + "Microsoft Windows" + ], + "genres": [ + "action role-playing game", + "science fiction video game" + ], + "stores": [], + "developers": [ + "BioWare" + ], + "publishers": [ + "Electronic Arts" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6783995" + ], + "created_at": "2026-07-10T10:10:25.302550", + "updated_at": "2026-07-10T10:10:25.302550", + "url": "/v1/games/mass-effect-2-arrival" +} diff --git a/site/public/v1/games/mass-effect-2-kasumi-stolen-memory/index.json b/site/public/v1/games/mass-effect-2-kasumi-stolen-memory/index.json new file mode 100644 index 000000000000..8c95e06fa68d --- /dev/null +++ b/site/public/v1/games/mass-effect-2-kasumi-stolen-memory/index.json @@ -0,0 +1,34 @@ +{ + "id": 89174, + "slug": "mass-effect-2-kasumi-stolen-memory", + "name": "Mass Effect 2: Kasumi - Stolen Memory", + "release_date": "2010-04-06", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "action role-playing game", + "science fiction video game" + ], + "stores": [], + "developers": [ + "BioWare" + ], + "publishers": [ + "Electronic Arts" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16267701" + ], + "created_at": "2026-07-10T10:10:25.302550", + "updated_at": "2026-07-10T10:10:25.302550", + "url": "/v1/games/mass-effect-2-kasumi-stolen-memory" +} diff --git a/site/public/v1/games/mass-effect-2-lair-of-the-shadow-broker/index.json b/site/public/v1/games/mass-effect-2-lair-of-the-shadow-broker/index.json new file mode 100644 index 000000000000..752126501799 --- /dev/null +++ b/site/public/v1/games/mass-effect-2-lair-of-the-shadow-broker/index.json @@ -0,0 +1,34 @@ +{ + "id": 89175, + "slug": "mass-effect-2-lair-of-the-shadow-broker", + "name": "Mass Effect 2: Lair of the Shadow Broker", + "release_date": "2010-09-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "action role-playing game", + "science fiction video game" + ], + "stores": [], + "developers": [ + "BioWare" + ], + "publishers": [ + "Electronic Arts" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6223902" + ], + "created_at": "2026-07-10T10:10:25.302550", + "updated_at": "2026-07-10T10:10:25.302550", + "url": "/v1/games/mass-effect-2-lair-of-the-shadow-broker" +} diff --git a/site/public/v1/games/mass-effect-2-overlord/index.json b/site/public/v1/games/mass-effect-2-overlord/index.json new file mode 100644 index 000000000000..ccc74f04f5d6 --- /dev/null +++ b/site/public/v1/games/mass-effect-2-overlord/index.json @@ -0,0 +1,34 @@ +{ + "id": 89176, + "slug": "mass-effect-2-overlord", + "name": "Mass Effect 2: Overlord", + "release_date": "2010-06-15", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "action role-playing game", + "science fiction video game" + ], + "stores": [], + "developers": [ + "BioWare" + ], + "publishers": [ + "Electronic Arts" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16267640" + ], + "created_at": "2026-07-10T10:10:25.303551", + "updated_at": "2026-07-10T10:10:25.303551", + "url": "/v1/games/mass-effect-2-overlord" +} diff --git a/site/public/v1/games/mass-effect-2-zaeed-the-price-of-revenge/index.json b/site/public/v1/games/mass-effect-2-zaeed-the-price-of-revenge/index.json new file mode 100644 index 000000000000..e267922a1f4a --- /dev/null +++ b/site/public/v1/games/mass-effect-2-zaeed-the-price-of-revenge/index.json @@ -0,0 +1,25 @@ +{ + "id": 89177, + "slug": "mass-effect-2-zaeed-the-price-of-revenge", + "name": "Mass Effect 2: Zaeed - The Price of Revenge", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q96604631" + ], + "created_at": "2026-07-10T10:10:25.303551", + "updated_at": "2026-07-10T10:10:25.303551", + "url": "/v1/games/mass-effect-2-zaeed-the-price-of-revenge" +} diff --git a/site/public/v1/games/mass-effect-3-citadel/index.json b/site/public/v1/games/mass-effect-3-citadel/index.json new file mode 100644 index 000000000000..b46370fd46fd --- /dev/null +++ b/site/public/v1/games/mass-effect-3-citadel/index.json @@ -0,0 +1,35 @@ +{ + "id": 89179, + "slug": "mass-effect-3-citadel", + "name": "Mass Effect 3: Citadel", + "release_date": "2013-03-06", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 3", + "Microsoft Windows" + ], + "genres": [ + "space opera video game", + "science fiction video game" + ], + "stores": [], + "developers": [ + "BioWare" + ], + "publishers": [ + "Electronic Arts" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q51929681" + ], + "created_at": "2026-07-10T10:10:25.303551", + "updated_at": "2026-07-10T10:10:25.303551", + "url": "/v1/games/mass-effect-3-citadel" +} diff --git a/site/public/v1/games/mass-effect-3-extended-cut/index.json b/site/public/v1/games/mass-effect-3-extended-cut/index.json new file mode 100644 index 000000000000..6549bf253351 --- /dev/null +++ b/site/public/v1/games/mass-effect-3-extended-cut/index.json @@ -0,0 +1,30 @@ +{ + "id": 89180, + "slug": "mass-effect-3-extended-cut", + "name": "Mass Effect 3: Extended Cut", + "release_date": "2012-06-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 3", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "BioWare" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q51930098" + ], + "created_at": "2026-07-10T10:10:25.304555", + "updated_at": "2026-07-10T10:10:25.304555", + "url": "/v1/games/mass-effect-3-extended-cut" +} diff --git a/site/public/v1/games/mass-effect-3-from-ashes/index.json b/site/public/v1/games/mass-effect-3-from-ashes/index.json new file mode 100644 index 000000000000..8fafd15dbe61 --- /dev/null +++ b/site/public/v1/games/mass-effect-3-from-ashes/index.json @@ -0,0 +1,35 @@ +{ + "id": 89181, + "slug": "mass-effect-3-from-ashes", + "name": "Mass Effect 3: From Ashes", + "release_date": "2012-03-06", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Wii U", + "PlayStation 3" + ], + "genres": [ + "third-person shooter", + "action role-playing game" + ], + "stores": [], + "developers": [ + "BioWare" + ], + "publishers": [ + "Electronic Arts" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q51929525" + ], + "created_at": "2026-07-10T10:10:25.304555", + "updated_at": "2026-07-10T10:10:25.304555", + "url": "/v1/games/mass-effect-3-from-ashes" +} diff --git a/site/public/v1/games/mass-effect-3-leviathan/index.json b/site/public/v1/games/mass-effect-3-leviathan/index.json new file mode 100644 index 000000000000..513de79ae5ef --- /dev/null +++ b/site/public/v1/games/mass-effect-3-leviathan/index.json @@ -0,0 +1,35 @@ +{ + "id": 89182, + "slug": "mass-effect-3-leviathan", + "name": "Mass Effect 3: Leviathan", + "release_date": "2012-08-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 3", + "Microsoft Windows" + ], + "genres": [ + "space opera video game", + "science fiction video game" + ], + "stores": [], + "developers": [ + "BioWare" + ], + "publishers": [ + "Electronic Arts" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q51929202" + ], + "created_at": "2026-07-10T10:10:25.304555", + "updated_at": "2026-07-10T10:10:25.304555", + "url": "/v1/games/mass-effect-3-leviathan" +} diff --git a/site/public/v1/games/mass-effect-3-omega/index.json b/site/public/v1/games/mass-effect-3-omega/index.json new file mode 100644 index 000000000000..a1e4fbd90572 --- /dev/null +++ b/site/public/v1/games/mass-effect-3-omega/index.json @@ -0,0 +1,34 @@ +{ + "id": 89183, + "slug": "mass-effect-3-omega", + "name": "Mass Effect 3: Omega", + "release_date": "2012-11-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 3" + ], + "genres": [ + "space opera video game", + "science fiction video game" + ], + "stores": [], + "developers": [ + "BioWare" + ], + "publishers": [ + "Electronic Arts" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q51930253" + ], + "created_at": "2026-07-10T10:10:25.304555", + "updated_at": "2026-07-10T10:10:25.304555", + "url": "/v1/games/mass-effect-3-omega" +} diff --git a/site/public/v1/games/mass-effect-pinnacle-station/index.json b/site/public/v1/games/mass-effect-pinnacle-station/index.json new file mode 100644 index 000000000000..7eb873ca5644 --- /dev/null +++ b/site/public/v1/games/mass-effect-pinnacle-station/index.json @@ -0,0 +1,34 @@ +{ + "id": 89189, + "slug": "mass-effect-pinnacle-station", + "name": "Mass Effect: Pinnacle Station", + "release_date": "2009-08-25", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "third-person shooter", + "action role-playing game", + "science fiction video game", + "space opera video game" + ], + "stores": [], + "developers": [], + "publishers": [ + "Electronic Arts" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q102280642" + ], + "created_at": "2026-07-10T10:10:25.305551", + "updated_at": "2026-07-10T10:10:25.305551", + "url": "/v1/games/mass-effect-pinnacle-station" +} diff --git a/site/public/v1/games/mass-effect-trilogy/index.json b/site/public/v1/games/mass-effect-trilogy/index.json new file mode 100644 index 000000000000..5ef22ea3aa30 --- /dev/null +++ b/site/public/v1/games/mass-effect-trilogy/index.json @@ -0,0 +1,34 @@ +{ + "id": 89190, + "slug": "mass-effect-trilogy", + "name": "Mass Effect Trilogy", + "release_date": "2012-11-06", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 3", + "Microsoft Windows" + ], + "genres": [ + "action role-playing game" + ], + "stores": [], + "developers": [ + "BioWare" + ], + "publishers": [ + "Electronic Arts" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16267378" + ], + "created_at": "2026-07-10T10:10:25.305551", + "updated_at": "2026-07-10T10:10:25.305551", + "url": "/v1/games/mass-effect-trilogy" +} diff --git a/site/public/v1/games/massive-donation/index.json b/site/public/v1/games/massive-donation/index.json new file mode 100644 index 000000000000..ecb56f692c57 --- /dev/null +++ b/site/public/v1/games/massive-donation/index.json @@ -0,0 +1,34 @@ +{ + "id": 89211, + "slug": "massive-donation", + "name": "Massive donation", + "release_date": "2019-03-11", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "casual game", + "advergame" + ], + "stores": [], + "developers": [ + "SS Studios" + ], + "publishers": [ + "SS Studios" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62027798" + ], + "created_at": "2026-07-10T10:10:25.336558", + "updated_at": "2026-07-10T10:10:25.336558", + "url": "/v1/games/massive-donation" +} diff --git a/site/public/v1/games/master-games-1/index.json b/site/public/v1/games/master-games-1/index.json new file mode 100644 index 000000000000..f0ec533b57e4 --- /dev/null +++ b/site/public/v1/games/master-games-1/index.json @@ -0,0 +1,25 @@ +{ + "id": 89232, + "slug": "master-games-1", + "name": "Master Games 1", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108057324" + ], + "created_at": "2026-07-10T10:10:25.370068", + "updated_at": "2026-07-10T10:10:25.370068", + "url": "/v1/games/master-games-1" +} diff --git a/site/public/v1/games/master-of-orion-conquer-the-stars/index.json b/site/public/v1/games/master-of-orion-conquer-the-stars/index.json new file mode 100644 index 000000000000..dca28bf46c5a --- /dev/null +++ b/site/public/v1/games/master-of-orion-conquer-the-stars/index.json @@ -0,0 +1,36 @@ +{ + "id": 89272, + "slug": "master-of-orion-conquer-the-stars", + "name": "Master of Orion: Conquer the Stars", + "release_date": "2016-02-26", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "4X", + "turn-based strategy video game", + "grand strategy wargame" + ], + "stores": [], + "developers": [ + "Nimble Giant Entertainment" + ], + "publishers": [ + "Wargaming" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q20064659" + ], + "created_at": "2026-07-10T10:10:25.382068", + "updated_at": "2026-07-10T10:10:25.382068", + "url": "/v1/games/master-of-orion-conquer-the-stars" +} diff --git a/site/public/v1/games/mastermind-q17286/index.json b/site/public/v1/games/mastermind-q17286/index.json new file mode 100644 index 000000000000..00ea333dbc12 --- /dev/null +++ b/site/public/v1/games/mastermind-q17286/index.json @@ -0,0 +1,29 @@ +{ + "id": 89322, + "slug": "mastermind-q17286", + "name": "Mastermind", + "release_date": "1970-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [ + "Mordecai Meirowitz" + ], + "publishers": [ + "Hasbro" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17286" + ], + "created_at": "2026-07-10T10:10:25.396068", + "updated_at": "2026-07-10T10:10:25.396068", + "url": "/v1/games/mastermind-q17286" +} diff --git a/site/public/v1/games/mastertronic-compilation-5/index.json b/site/public/v1/games/mastertronic-compilation-5/index.json new file mode 100644 index 000000000000..61f77931db05 --- /dev/null +++ b/site/public/v1/games/mastertronic-compilation-5/index.json @@ -0,0 +1,29 @@ +{ + "id": 89350, + "slug": "mastertronic-compilation-5", + "name": "Mastertronic Compilation 5", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "ZX Spectrum" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Mastertronic" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62527872" + ], + "created_at": "2026-07-10T10:10:25.403150", + "updated_at": "2026-07-10T10:10:25.403150", + "url": "/v1/games/mastertronic-compilation-5" +} diff --git a/site/public/v1/games/masyu/index.json b/site/public/v1/games/masyu/index.json new file mode 100644 index 000000000000..d32e66dabf68 --- /dev/null +++ b/site/public/v1/games/masyu/index.json @@ -0,0 +1,25 @@ +{ + "id": 89357, + "slug": "masyu", + "name": "Masyu", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q477458" + ], + "created_at": "2026-07-10T10:10:25.405151", + "updated_at": "2026-07-10T10:10:25.405151", + "url": "/v1/games/masyu" +} diff --git a/site/public/v1/games/matcho/index.json b/site/public/v1/games/matcho/index.json new file mode 100644 index 000000000000..e6f41dbae56c --- /dev/null +++ b/site/public/v1/games/matcho/index.json @@ -0,0 +1,36 @@ +{ + "id": 89419, + "slug": "matcho", + "name": "Matcho", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 5", + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "match-three video game" + ], + "stores": [], + "developers": [ + "FiolaSoft Studio" + ], + "publishers": [ + "FiolaSoft Studio" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118698061" + ], + "created_at": "2026-07-10T10:10:25.422440", + "updated_at": "2026-07-10T10:10:25.422440", + "url": "/v1/games/matcho" +} diff --git a/site/public/v1/games/matter-q6789726/index.json b/site/public/v1/games/matter-q6789726/index.json new file mode 100644 index 000000000000..15b44022cc12 --- /dev/null +++ b/site/public/v1/games/matter-q6789726/index.json @@ -0,0 +1,29 @@ +{ + "id": 89555, + "slug": "matter-q6789726", + "name": "Matter", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [ + "Gore Verbinski" + ], + "publishers": [ + "Xbox Game Studios" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6789726" + ], + "created_at": "2026-07-10T10:10:25.460875", + "updated_at": "2026-07-10T10:10:25.460875", + "url": "/v1/games/matter-q6789726" +} diff --git a/site/public/v1/games/mavericks-proving-grounds/index.json b/site/public/v1/games/mavericks-proving-grounds/index.json new file mode 100644 index 000000000000..e36cb1a2a1e8 --- /dev/null +++ b/site/public/v1/games/mavericks-proving-grounds/index.json @@ -0,0 +1,25 @@ +{ + "id": 89584, + "slug": "mavericks-proving-grounds", + "name": "Mavericks: Proving Grounds", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q86723597" + ], + "created_at": "2026-07-10T10:10:25.468952", + "updated_at": "2026-07-10T10:10:25.468952", + "url": "/v1/games/mavericks-proving-grounds" +} diff --git a/site/public/v1/games/max-the-curse-of-brotherhood/index.json b/site/public/v1/games/max-the-curse-of-brotherhood/index.json new file mode 100644 index 000000000000..f16e96570b28 --- /dev/null +++ b/site/public/v1/games/max-the-curse-of-brotherhood/index.json @@ -0,0 +1,35 @@ +{ + "id": 89626, + "slug": "max-the-curse-of-brotherhood", + "name": "Max: The Curse of Brotherhood", + "release_date": "2013-12-20", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 4", + "iOS", + "Microsoft Windows" + ], + "genres": [ + "platformer" + ], + "stores": [], + "developers": [ + "Press Play" + ], + "publishers": [ + "Xbox Game Studios" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q13558831" + ], + "created_at": "2026-07-10T10:10:25.480956", + "updated_at": "2026-07-10T10:10:25.480956", + "url": "/v1/games/max-the-curse-of-brotherhood" +} diff --git a/site/public/v1/games/maximum-pleasure-pack/index.json b/site/public/v1/games/maximum-pleasure-pack/index.json new file mode 100644 index 000000000000..9e665f16bece --- /dev/null +++ b/site/public/v1/games/maximum-pleasure-pack/index.json @@ -0,0 +1,27 @@ +{ + "id": 89653, + "slug": "maximum-pleasure-pack", + "name": "Maximum Pleasure Pack", + "release_date": "2012-06-20", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 3" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60722673" + ], + "created_at": "2026-07-10T10:10:25.487956", + "updated_at": "2026-07-10T10:10:25.487956", + "url": "/v1/games/maximum-pleasure-pack" +} diff --git a/site/public/v1/games/mbf/index.json b/site/public/v1/games/mbf/index.json new file mode 100644 index 000000000000..93f115afd9a7 --- /dev/null +++ b/site/public/v1/games/mbf/index.json @@ -0,0 +1,25 @@ +{ + "id": 89901, + "slug": "mbf", + "name": "MBF", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q67219610" + ], + "created_at": "2026-07-10T10:10:25.563165", + "updated_at": "2026-07-10T10:10:25.563165", + "url": "/v1/games/mbf" +} diff --git a/site/public/v1/games/meantime/index.json b/site/public/v1/games/meantime/index.json new file mode 100644 index 000000000000..127eacd2a315 --- /dev/null +++ b/site/public/v1/games/meantime/index.json @@ -0,0 +1,31 @@ +{ + "id": 89988, + "slug": "meantime", + "name": "Meantime", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Apple II series" + ], + "genres": [ + "role-playing video game" + ], + "stores": [], + "developers": [ + "Interplay Entertainment" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1175224" + ], + "created_at": "2026-07-10T10:10:25.592227", + "updated_at": "2026-07-10T10:10:25.592227", + "url": "/v1/games/meantime" +} diff --git a/site/public/v1/games/mech-commander-2-hd/index.json b/site/public/v1/games/mech-commander-2-hd/index.json new file mode 100644 index 000000000000..3954c1418ea3 --- /dev/null +++ b/site/public/v1/games/mech-commander-2-hd/index.json @@ -0,0 +1,25 @@ +{ + "id": 90039, + "slug": "mech-commander-2-hd", + "name": "Mech Commander 2 HD", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122202924" + ], + "created_at": "2026-07-10T10:10:25.606164", + "updated_at": "2026-07-10T10:10:25.606164", + "url": "/v1/games/mech-commander-2-hd" +} diff --git a/site/public/v1/games/mechwarrior-2-ghost-bear-s-legacy/index.json b/site/public/v1/games/mechwarrior-2-ghost-bear-s-legacy/index.json new file mode 100644 index 000000000000..616447dab654 --- /dev/null +++ b/site/public/v1/games/mechwarrior-2-ghost-bear-s-legacy/index.json @@ -0,0 +1,29 @@ +{ + "id": 90172, + "slug": "mechwarrior-2-ghost-bear-s-legacy", + "name": "MechWarrior 2: Ghost Bear's Legacy", + "release_date": "1995-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3853474" + ], + "created_at": "2026-07-10T10:10:25.642255", + "updated_at": "2026-07-10T10:10:25.642255", + "url": "/v1/games/mechwarrior-2-ghost-bear-s-legacy" +} diff --git a/site/public/v1/games/mechwarrior-4-mercenaries/index.json b/site/public/v1/games/mechwarrior-4-mercenaries/index.json new file mode 100644 index 000000000000..e092e14631ae --- /dev/null +++ b/site/public/v1/games/mechwarrior-4-mercenaries/index.json @@ -0,0 +1,33 @@ +{ + "id": 90177, + "slug": "mechwarrior-4-mercenaries", + "name": "MechWarrior 4: Mercenaries", + "release_date": "2002-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "mech simulation game" + ], + "stores": [], + "developers": [ + "FASA Studio" + ], + "publishers": [ + "Xbox Game Studios" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q615716" + ], + "created_at": "2026-07-10T10:10:25.643255", + "updated_at": "2026-07-10T10:10:25.643255", + "url": "/v1/games/mechwarrior-4-mercenaries" +} diff --git a/site/public/v1/games/mechwarrior-tactics/index.json b/site/public/v1/games/mechwarrior-tactics/index.json new file mode 100644 index 000000000000..1cbabfaa6958 --- /dev/null +++ b/site/public/v1/games/mechwarrior-tactics/index.json @@ -0,0 +1,31 @@ +{ + "id": 90185, + "slug": "mechwarrior-tactics", + "name": "MechWarrior Tactics", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "turn-based tactics" + ], + "stores": [], + "developers": [], + "publishers": [ + "Infinite Game Publishing" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6425825" + ], + "created_at": "2026-07-10T10:10:25.644255", + "updated_at": "2026-07-10T10:10:25.644255", + "url": "/v1/games/mechwarrior-tactics" +} diff --git a/site/public/v1/games/medal-of-honor-allied-assault-war-chest/index.json b/site/public/v1/games/medal-of-honor-allied-assault-war-chest/index.json new file mode 100644 index 000000000000..07d535695afd --- /dev/null +++ b/site/public/v1/games/medal-of-honor-allied-assault-war-chest/index.json @@ -0,0 +1,25 @@ +{ + "id": 90202, + "slug": "medal-of-honor-allied-assault-war-chest", + "name": "Medal of Honor Allied Assault War Chest", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q12746014" + ], + "created_at": "2026-07-10T10:10:25.649004", + "updated_at": "2026-07-10T10:10:25.649004", + "url": "/v1/games/medal-of-honor-allied-assault-war-chest" +} diff --git a/site/public/v1/games/medic-night-hunter-skin-pack/index.json b/site/public/v1/games/medic-night-hunter-skin-pack/index.json new file mode 100644 index 000000000000..51e46b5c0267 --- /dev/null +++ b/site/public/v1/games/medic-night-hunter-skin-pack/index.json @@ -0,0 +1,32 @@ +{ + "id": 90224, + "slug": "medic-night-hunter-skin-pack", + "name": "Medic Night Hunter Skin Pack", + "release_date": "2015-06-09", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "science fiction video game" + ], + "stores": [], + "developers": [], + "publishers": [ + "2K" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124643238" + ], + "created_at": "2026-07-10T10:10:25.653932", + "updated_at": "2026-07-10T10:10:25.653932", + "url": "/v1/games/medic-night-hunter-skin-pack" +} diff --git a/site/public/v1/games/medic-victory-skin-pack/index.json b/site/public/v1/games/medic-victory-skin-pack/index.json new file mode 100644 index 000000000000..1a21a4346921 --- /dev/null +++ b/site/public/v1/games/medic-victory-skin-pack/index.json @@ -0,0 +1,32 @@ +{ + "id": 90227, + "slug": "medic-victory-skin-pack", + "name": "Medic Victory Skin Pack", + "release_date": "2015-07-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "science fiction video game" + ], + "stores": [], + "developers": [], + "publishers": [ + "2K" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124637412" + ], + "created_at": "2026-07-10T10:10:25.654933", + "updated_at": "2026-07-10T10:10:25.654933", + "url": "/v1/games/medic-victory-skin-pack" +} diff --git a/site/public/v1/games/medieval-ii-total-war-kingdoms/index.json b/site/public/v1/games/medieval-ii-total-war-kingdoms/index.json new file mode 100644 index 000000000000..615b9c2c1ca1 --- /dev/null +++ b/site/public/v1/games/medieval-ii-total-war-kingdoms/index.json @@ -0,0 +1,35 @@ +{ + "id": 90272, + "slug": "medieval-ii-total-war-kingdoms", + "name": "Medieval II: Total War: Kingdoms", + "release_date": "2007-08-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "turn-based strategy video game", + "real-time tactics" + ], + "stores": [], + "developers": [ + "Creative Assembly" + ], + "publishers": [ + "Sega" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2376092" + ], + "created_at": "2026-07-10T10:10:25.666940", + "updated_at": "2026-07-10T10:10:25.666940", + "url": "/v1/games/medieval-ii-total-war-kingdoms" +} diff --git a/site/public/v1/games/medieval-mayor/index.json b/site/public/v1/games/medieval-mayor/index.json new file mode 100644 index 000000000000..f2cf2305e2a3 --- /dev/null +++ b/site/public/v1/games/medieval-mayor/index.json @@ -0,0 +1,31 @@ +{ + "id": 90289, + "slug": "medieval-mayor", + "name": "Medieval Mayor", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "city-building game" + ], + "stores": [], + "developers": [ + "Tilted Mill Entertainment" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6806827" + ], + "created_at": "2026-07-10T10:10:25.671243", + "updated_at": "2026-07-10T10:10:25.671243", + "url": "/v1/games/medieval-mayor" +} diff --git a/site/public/v1/games/medieval-tales-dlc/index.json b/site/public/v1/games/medieval-tales-dlc/index.json new file mode 100644 index 000000000000..633272de4a48 --- /dev/null +++ b/site/public/v1/games/medieval-tales-dlc/index.json @@ -0,0 +1,27 @@ +{ + "id": 90313, + "slug": "medieval-tales-dlc", + "name": "Medieval Tales DLC", + "release_date": "2012-11-21", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60607937" + ], + "created_at": "2026-07-10T10:10:25.678243", + "updated_at": "2026-07-10T10:10:25.678243", + "url": "/v1/games/medieval-tales-dlc" +} diff --git a/site/public/v1/games/medieval-total-war-viking-invasion/index.json b/site/public/v1/games/medieval-total-war-viking-invasion/index.json new file mode 100644 index 000000000000..7ab798d6e749 --- /dev/null +++ b/site/public/v1/games/medieval-total-war-viking-invasion/index.json @@ -0,0 +1,29 @@ +{ + "id": 90316, + "slug": "medieval-total-war-viking-invasion", + "name": "Medieval: Total War – Viking Invasion", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "real-time tactics" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10328158" + ], + "created_at": "2026-07-10T10:10:25.678243", + "updated_at": "2026-07-10T10:10:25.678243", + "url": "/v1/games/medieval-total-war-viking-invasion" +} diff --git a/site/public/v1/games/mega-man-legacy-collection-1-2-combo-pack/index.json b/site/public/v1/games/mega-man-legacy-collection-1-2-combo-pack/index.json new file mode 100644 index 000000000000..db32a18b8ec1 --- /dev/null +++ b/site/public/v1/games/mega-man-legacy-collection-1-2-combo-pack/index.json @@ -0,0 +1,27 @@ +{ + "id": 90450, + "slug": "mega-man-legacy-collection-1-2-combo-pack", + "name": "Mega Man: Legacy Collection 1 & 2 Combo Pack", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q104717524" + ], + "created_at": "2026-07-10T10:10:25.712236", + "updated_at": "2026-07-10T10:10:25.712236", + "url": "/v1/games/mega-man-legacy-collection-1-2-combo-pack" +} diff --git a/site/public/v1/games/mega-man-legacy-collection-2/index.json b/site/public/v1/games/mega-man-legacy-collection-2/index.json new file mode 100644 index 000000000000..8e3792554e82 --- /dev/null +++ b/site/public/v1/games/mega-man-legacy-collection-2/index.json @@ -0,0 +1,35 @@ +{ + "id": 90451, + "slug": "mega-man-legacy-collection-2", + "name": "Mega Man Legacy Collection 2", + "release_date": "2017-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "action game", + "platformer" + ], + "stores": [], + "developers": [ + "Capcom" + ], + "publishers": [ + "Capcom" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q47392598" + ], + "created_at": "2026-07-10T10:10:25.712236", + "updated_at": "2026-07-10T10:10:25.712236", + "url": "/v1/games/mega-man-legacy-collection-2" +} diff --git a/site/public/v1/games/mega-man-legacy-collection/index.json b/site/public/v1/games/mega-man-legacy-collection/index.json new file mode 100644 index 000000000000..e4f0074b771c --- /dev/null +++ b/site/public/v1/games/mega-man-legacy-collection/index.json @@ -0,0 +1,37 @@ +{ + "id": 90452, + "slug": "mega-man-legacy-collection", + "name": "Mega Man Legacy Collection", + "release_date": "2015-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 4", + "Nintendo 3DS", + "IBM PC compatible", + "Microsoft Windows" + ], + "genres": [ + "action game", + "platformer" + ], + "stores": [], + "developers": [ + "Capcom" + ], + "publishers": [ + "Capcom" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q24866529" + ], + "created_at": "2026-07-10T10:10:25.712236", + "updated_at": "2026-07-10T10:10:25.712236", + "url": "/v1/games/mega-man-legacy-collection" +} diff --git a/site/public/v1/games/mega-man-legends-3/index.json b/site/public/v1/games/mega-man-legends-3/index.json new file mode 100644 index 000000000000..b0fd3ef5813d --- /dev/null +++ b/site/public/v1/games/mega-man-legends-3/index.json @@ -0,0 +1,33 @@ +{ + "id": 90454, + "slug": "mega-man-legends-3", + "name": "Mega Man Legends 3", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Nintendo 3DS" + ], + "genres": [ + "action role-playing game" + ], + "stores": [], + "developers": [ + "Capcom" + ], + "publishers": [ + "Capcom" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3041930" + ], + "created_at": "2026-07-10T10:10:25.712236", + "updated_at": "2026-07-10T10:10:25.712236", + "url": "/v1/games/mega-man-legends-3" +} diff --git a/site/public/v1/games/mega-man-mania/index.json b/site/public/v1/games/mega-man-mania/index.json new file mode 100644 index 000000000000..4cd46a678b6f --- /dev/null +++ b/site/public/v1/games/mega-man-mania/index.json @@ -0,0 +1,27 @@ +{ + "id": 90457, + "slug": "mega-man-mania", + "name": "Mega Man Mania", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Game Boy Advance" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11232914" + ], + "created_at": "2026-07-10T10:10:25.714246", + "updated_at": "2026-07-10T10:10:25.714246", + "url": "/v1/games/mega-man-mania" +} diff --git a/site/public/v1/games/mega-man-the-wily-wars/index.json b/site/public/v1/games/mega-man-the-wily-wars/index.json new file mode 100644 index 000000000000..c16b36d80faa --- /dev/null +++ b/site/public/v1/games/mega-man-the-wily-wars/index.json @@ -0,0 +1,33 @@ +{ + "id": 90477, + "slug": "mega-man-the-wily-wars", + "name": "Mega Man: The Wily Wars", + "release_date": "1994-10-21", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Sega Genesis" + ], + "genres": [ + "action game" + ], + "stores": [], + "developers": [ + "Capcom" + ], + "publishers": [ + "Capcom" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q979582" + ], + "created_at": "2026-07-10T10:10:25.718242", + "updated_at": "2026-07-10T10:10:25.718242", + "url": "/v1/games/mega-man-the-wily-wars" +} diff --git a/site/public/v1/games/mega-man-universe/index.json b/site/public/v1/games/mega-man-universe/index.json new file mode 100644 index 000000000000..00268d8ef774 --- /dev/null +++ b/site/public/v1/games/mega-man-universe/index.json @@ -0,0 +1,29 @@ +{ + "id": 90478, + "slug": "mega-man-universe", + "name": "Mega Man Universe", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "platformer" + ], + "stores": [], + "developers": [ + "Capcom" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6665587" + ], + "created_at": "2026-07-10T10:10:25.718242", + "updated_at": "2026-07-10T10:10:25.718242", + "url": "/v1/games/mega-man-universe" +} diff --git a/site/public/v1/games/mega-man-x-legacy-collection-1-2/index.json b/site/public/v1/games/mega-man-x-legacy-collection-1-2/index.json new file mode 100644 index 000000000000..fec3d527dda5 --- /dev/null +++ b/site/public/v1/games/mega-man-x-legacy-collection-1-2/index.json @@ -0,0 +1,34 @@ +{ + "id": 90485, + "slug": "mega-man-x-legacy-collection-1-2", + "name": "Mega Man X Legacy Collection 1 + 2", + "release_date": "2018-07-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "action game", + "platformer" + ], + "stores": [], + "developers": [ + "Capcom" + ], + "publishers": [ + "Capcom" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q56107307" + ], + "created_at": "2026-07-10T10:10:25.719243", + "updated_at": "2026-07-10T10:10:25.719243", + "url": "/v1/games/mega-man-x-legacy-collection-1-2" +} diff --git a/site/public/v1/games/mega-man-zero-collection/index.json b/site/public/v1/games/mega-man-zero-collection/index.json new file mode 100644 index 000000000000..e7b17bfae0d0 --- /dev/null +++ b/site/public/v1/games/mega-man-zero-collection/index.json @@ -0,0 +1,34 @@ +{ + "id": 90501, + "slug": "mega-man-zero-collection", + "name": "Mega Man Zero Collection", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Nintendo DS" + ], + "genres": [ + "action game", + "platformer" + ], + "stores": [], + "developers": [ + "Inti Creates" + ], + "publishers": [ + "Capcom" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17215546" + ], + "created_at": "2026-07-10T10:10:25.722243", + "updated_at": "2026-07-10T10:10:25.722243", + "url": "/v1/games/mega-man-zero-collection" +} diff --git a/site/public/v1/games/meme-mayhem-demo/index.json b/site/public/v1/games/meme-mayhem-demo/index.json new file mode 100644 index 000000000000..9d231821ca6e --- /dev/null +++ b/site/public/v1/games/meme-mayhem-demo/index.json @@ -0,0 +1,35 @@ +{ + "id": 90759, + "slug": "meme-mayhem-demo", + "name": "Meme Mayhem Demo", + "release_date": "2024-04-19", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "casual game", + "auto battler", + "roguelike deck-building game" + ], + "stores": [], + "developers": [ + "Cr3 Studio" + ], + "publishers": [ + "Cr3 Studio" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130324033" + ], + "created_at": "2026-07-10T10:10:25.794258", + "updated_at": "2026-07-10T10:10:25.794258", + "url": "/v1/games/meme-mayhem-demo" +} diff --git a/site/public/v1/games/memorial-series/index.json b/site/public/v1/games/memorial-series/index.json new file mode 100644 index 000000000000..afa24d2cd193 --- /dev/null +++ b/site/public/v1/games/memorial-series/index.json @@ -0,0 +1,29 @@ +{ + "id": 90813, + "slug": "memorial-series", + "name": "Memorial Series", + "release_date": "2001-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [ + "Microvision" + ], + "publishers": [ + "Sun Corporation" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6815507" + ], + "created_at": "2026-07-10T10:10:25.814259", + "updated_at": "2026-07-10T10:10:25.814259", + "url": "/v1/games/memorial-series" +} diff --git a/site/public/v1/games/menacer-6-game-cartridge/index.json b/site/public/v1/games/menacer-6-game-cartridge/index.json new file mode 100644 index 000000000000..2e463a108e7d --- /dev/null +++ b/site/public/v1/games/menacer-6-game-cartridge/index.json @@ -0,0 +1,27 @@ +{ + "id": 90959, + "slug": "menacer-6-game-cartridge", + "name": "Menacer 6-game cartridge", + "release_date": "1992-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Sega Genesis" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2416324" + ], + "created_at": "2026-07-10T10:10:25.854979", + "updated_at": "2026-07-10T10:10:25.854979", + "url": "/v1/games/menacer-6-game-cartridge" +} diff --git a/site/public/v1/games/mephisto/index.json b/site/public/v1/games/mephisto/index.json new file mode 100644 index 000000000000..4626b666f234 --- /dev/null +++ b/site/public/v1/games/mephisto/index.json @@ -0,0 +1,25 @@ +{ + "id": 91061, + "slug": "mephisto", + "name": "Mephisto", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11343949" + ], + "created_at": "2026-07-10T10:10:25.883953", + "updated_at": "2026-07-10T10:10:25.883953", + "url": "/v1/games/mephisto" +} diff --git a/site/public/v1/games/mercenary-of-the-dark-future/index.json b/site/public/v1/games/mercenary-of-the-dark-future/index.json new file mode 100644 index 000000000000..a38fd69347d5 --- /dev/null +++ b/site/public/v1/games/mercenary-of-the-dark-future/index.json @@ -0,0 +1,31 @@ +{ + "id": 91093, + "slug": "mercenary-of-the-dark-future", + "name": "Mercenary of the Dark Future", + "release_date": "2019-06-25", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 4" + ], + "genres": [], + "stores": [], + "developers": [ + "CD Projekt" + ], + "publishers": [ + "Sony Interactive Entertainment" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q87348872" + ], + "created_at": "2026-07-10T10:10:25.892864", + "updated_at": "2026-07-10T10:10:25.892864", + "url": "/v1/games/mercenary-of-the-dark-future" +} diff --git a/site/public/v1/games/mercs-inc-q6818521/index.json b/site/public/v1/games/mercs-inc-q6818521/index.json new file mode 100644 index 000000000000..2b89891d1ba9 --- /dev/null +++ b/site/public/v1/games/mercs-inc-q6818521/index.json @@ -0,0 +1,31 @@ +{ + "id": 91125, + "slug": "mercs-inc-q6818521", + "name": "Mercs Inc", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "third-person shooter" + ], + "stores": [], + "developers": [ + "Danger Close Games" + ], + "publishers": [ + "Electronic Arts" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6818521" + ], + "created_at": "2026-07-10T10:10:25.901863", + "updated_at": "2026-07-10T10:10:25.901863", + "url": "/v1/games/mercs-inc-q6818521" +} diff --git a/site/public/v1/games/meren-hengitys/index.json b/site/public/v1/games/meren-hengitys/index.json new file mode 100644 index 000000000000..7d516c91df62 --- /dev/null +++ b/site/public/v1/games/meren-hengitys/index.json @@ -0,0 +1,28 @@ +{ + "id": 91147, + "slug": "meren-hengitys", + "name": "Meren hengitys", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "digital poetry", + "film poetry" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115919258" + ], + "created_at": "2026-07-10T10:10:25.907864", + "updated_at": "2026-07-10T10:10:25.907864", + "url": "/v1/games/meren-hengitys" +} diff --git a/site/public/v1/games/metal-gear-rising-revengeance-blade-wolf/index.json b/site/public/v1/games/metal-gear-rising-revengeance-blade-wolf/index.json new file mode 100644 index 000000000000..e2133e71d699 --- /dev/null +++ b/site/public/v1/games/metal-gear-rising-revengeance-blade-wolf/index.json @@ -0,0 +1,25 @@ +{ + "id": 91340, + "slug": "metal-gear-rising-revengeance-blade-wolf", + "name": "Metal Gear Rising: Revengeance - Blade Wolf", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111439703" + ], + "created_at": "2026-07-10T10:10:25.958370", + "updated_at": "2026-07-10T10:10:25.958370", + "url": "/v1/games/metal-gear-rising-revengeance-blade-wolf" +} diff --git a/site/public/v1/games/metal-gear-rising-revengeance-jetstream/index.json b/site/public/v1/games/metal-gear-rising-revengeance-jetstream/index.json new file mode 100644 index 000000000000..72608216aa7f --- /dev/null +++ b/site/public/v1/games/metal-gear-rising-revengeance-jetstream/index.json @@ -0,0 +1,25 @@ +{ + "id": 91341, + "slug": "metal-gear-rising-revengeance-jetstream", + "name": "Metal Gear Rising: Revengeance - Jetstream", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111439701" + ], + "created_at": "2026-07-10T10:10:25.958370", + "updated_at": "2026-07-10T10:10:25.958370", + "url": "/v1/games/metal-gear-rising-revengeance-jetstream" +} diff --git a/site/public/v1/games/metal-gear-rising-revengeance-ultimate-edition/index.json b/site/public/v1/games/metal-gear-rising-revengeance-ultimate-edition/index.json new file mode 100644 index 000000000000..ae4cf87ffe0d --- /dev/null +++ b/site/public/v1/games/metal-gear-rising-revengeance-ultimate-edition/index.json @@ -0,0 +1,25 @@ +{ + "id": 91342, + "slug": "metal-gear-rising-revengeance-ultimate-edition", + "name": "Metal Gear Rising Revengeance Ultimate Edition", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107424226" + ], + "created_at": "2026-07-10T10:10:25.959370", + "updated_at": "2026-07-10T10:10:25.959370", + "url": "/v1/games/metal-gear-rising-revengeance-ultimate-edition" +} diff --git a/site/public/v1/games/metal-gear-solid-hd-edition/index.json b/site/public/v1/games/metal-gear-solid-hd-edition/index.json new file mode 100644 index 000000000000..e5e91a5dbc5c --- /dev/null +++ b/site/public/v1/games/metal-gear-solid-hd-edition/index.json @@ -0,0 +1,27 @@ +{ + "id": 91354, + "slug": "metal-gear-solid-hd-edition", + "name": "Metal Gear Solid: HD Edition", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Konami" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127164605" + ], + "created_at": "2026-07-10T10:10:25.961437", + "updated_at": "2026-07-10T10:10:25.961437", + "url": "/v1/games/metal-gear-solid-hd-edition" +} diff --git a/site/public/v1/games/metal-gear-solid-master-collection-vol-1/index.json b/site/public/v1/games/metal-gear-solid-master-collection-vol-1/index.json new file mode 100644 index 000000000000..f66e4df17680 --- /dev/null +++ b/site/public/v1/games/metal-gear-solid-master-collection-vol-1/index.json @@ -0,0 +1,37 @@ +{ + "id": 91356, + "slug": "metal-gear-solid-master-collection-vol-1", + "name": "Metal Gear Solid: Master Collection Vol. 1", + "release_date": "2023-10-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 5", + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "action game", + "stealth game" + ], + "stores": [], + "developers": [ + "Konami" + ], + "publishers": [ + "Konami" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118650385" + ], + "created_at": "2026-07-10T10:10:25.962425", + "updated_at": "2026-07-10T10:10:25.962425", + "url": "/v1/games/metal-gear-solid-master-collection-vol-1" +} diff --git a/site/public/v1/games/metal-gear-solid-the-legacy-collection/index.json b/site/public/v1/games/metal-gear-solid-the-legacy-collection/index.json new file mode 100644 index 000000000000..bb8234f1f25f --- /dev/null +++ b/site/public/v1/games/metal-gear-solid-the-legacy-collection/index.json @@ -0,0 +1,33 @@ +{ + "id": 91365, + "slug": "metal-gear-solid-the-legacy-collection", + "name": "Metal Gear Solid: The Legacy Collection", + "release_date": "2013-07-09", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 3" + ], + "genres": [ + "action-adventure game" + ], + "stores": [], + "developers": [ + "Kojima Productions" + ], + "publishers": [ + "Konami" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q15199106" + ], + "created_at": "2026-07-10T10:10:25.963423", + "updated_at": "2026-07-10T10:10:25.963423", + "url": "/v1/games/metal-gear-solid-the-legacy-collection" +} diff --git a/site/public/v1/games/metal-knight-dark-front/index.json b/site/public/v1/games/metal-knight-dark-front/index.json new file mode 100644 index 000000000000..43585b9d902a --- /dev/null +++ b/site/public/v1/games/metal-knight-dark-front/index.json @@ -0,0 +1,35 @@ +{ + "id": 91387, + "slug": "metal-knight-dark-front", + "name": "Metal Knight: Dark Front", + "release_date": "1998-08-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "real-time strategy", + "science fiction video game", + "space opera video game" + ], + "stores": [], + "developers": [ + "Object Software" + ], + "publishers": [ + "Object Software" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q132436095" + ], + "created_at": "2026-07-10T10:10:25.968376", + "updated_at": "2026-07-10T10:10:25.968376", + "url": "/v1/games/metal-knight-dark-front" +} diff --git a/site/public/v1/games/metal-max-wild-west/index.json b/site/public/v1/games/metal-max-wild-west/index.json new file mode 100644 index 000000000000..90e5649949a6 --- /dev/null +++ b/site/public/v1/games/metal-max-wild-west/index.json @@ -0,0 +1,27 @@ +{ + "id": 91403, + "slug": "metal-max-wild-west", + "name": "Metal Max: Wild West", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 4" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q97861265" + ], + "created_at": "2026-07-10T10:10:25.973447", + "updated_at": "2026-07-10T10:10:25.973447", + "url": "/v1/games/metal-max-wild-west" +} diff --git a/site/public/v1/games/metal-slug-pc-collection/index.json b/site/public/v1/games/metal-slug-pc-collection/index.json new file mode 100644 index 000000000000..95cc26b172ee --- /dev/null +++ b/site/public/v1/games/metal-slug-pc-collection/index.json @@ -0,0 +1,30 @@ +{ + "id": 91442, + "slug": "metal-slug-pc-collection", + "name": "Metal Slug PC Collection", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "shooter game", + "arcade" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3307234" + ], + "created_at": "2026-07-10T10:10:25.982683", + "updated_at": "2026-07-10T10:10:25.982683", + "url": "/v1/games/metal-slug-pc-collection" +} diff --git a/site/public/v1/games/metal-slug-zero-online/index.json b/site/public/v1/games/metal-slug-zero-online/index.json new file mode 100644 index 000000000000..639a4e541422 --- /dev/null +++ b/site/public/v1/games/metal-slug-zero-online/index.json @@ -0,0 +1,29 @@ +{ + "id": 91447, + "slug": "metal-slug-zero-online", + "name": "Metal Slug Zero Online", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "massively multiplayer online game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q486731" + ], + "created_at": "2026-07-10T10:10:25.983678", + "updated_at": "2026-07-10T10:10:25.983678", + "url": "/v1/games/metal-slug-zero-online" +} diff --git a/site/public/v1/games/metro-last-light-complete-edition/index.json b/site/public/v1/games/metro-last-light-complete-edition/index.json new file mode 100644 index 000000000000..5106c39f58c5 --- /dev/null +++ b/site/public/v1/games/metro-last-light-complete-edition/index.json @@ -0,0 +1,25 @@ +{ + "id": 91603, + "slug": "metro-last-light-complete-edition", + "name": "Metro: Last Light – Complete Edition", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107424227" + ], + "created_at": "2026-07-10T10:10:26.027296", + "updated_at": "2026-07-10T10:10:26.027296", + "url": "/v1/games/metro-last-light-complete-edition" +} diff --git a/site/public/v1/games/metroid-64/index.json b/site/public/v1/games/metroid-64/index.json new file mode 100644 index 000000000000..295d1cee5b42 --- /dev/null +++ b/site/public/v1/games/metroid-64/index.json @@ -0,0 +1,27 @@ +{ + "id": 91622, + "slug": "metroid-64", + "name": "Metroid 64", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Nintendo 64" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135493651" + ], + "created_at": "2026-07-10T10:10:26.031303", + "updated_at": "2026-07-10T10:10:26.031303", + "url": "/v1/games/metroid-64" +} diff --git a/site/public/v1/games/metroid-prime-trilogy/index.json b/site/public/v1/games/metroid-prime-trilogy/index.json new file mode 100644 index 000000000000..e09fb36b0024 --- /dev/null +++ b/site/public/v1/games/metroid-prime-trilogy/index.json @@ -0,0 +1,32 @@ +{ + "id": 91634, + "slug": "metroid-prime-trilogy", + "name": "Metroid Prime: Trilogy", + "release_date": "2009-08-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Wii", + "Wii U" + ], + "genres": [], + "stores": [], + "developers": [ + "Retro Studios" + ], + "publishers": [ + "Nintendo" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2539933" + ], + "created_at": "2026-07-10T10:10:26.033306", + "updated_at": "2026-07-10T10:10:26.033306", + "url": "/v1/games/metroid-prime-trilogy" +} diff --git a/site/public/v1/games/mi-8mtv2-oilfield-campaign/index.json b/site/public/v1/games/mi-8mtv2-oilfield-campaign/index.json new file mode 100644 index 000000000000..99032f0e2a9e --- /dev/null +++ b/site/public/v1/games/mi-8mtv2-oilfield-campaign/index.json @@ -0,0 +1,29 @@ +{ + "id": 91694, + "slug": "mi-8mtv2-oilfield-campaign", + "name": "Mi-8MTV2: Oilfield Campaign", + "release_date": "2017-12-08", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Eagle Dynamics" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097563" + ], + "created_at": "2026-07-10T10:10:26.046304", + "updated_at": "2026-07-10T10:10:26.046304", + "url": "/v1/games/mi-8mtv2-oilfield-campaign" +} diff --git a/site/public/v1/games/mi-8mtv2-the-border-campaign/index.json b/site/public/v1/games/mi-8mtv2-the-border-campaign/index.json new file mode 100644 index 000000000000..f07f93f85b11 --- /dev/null +++ b/site/public/v1/games/mi-8mtv2-the-border-campaign/index.json @@ -0,0 +1,29 @@ +{ + "id": 91695, + "slug": "mi-8mtv2-the-border-campaign", + "name": "Mi-8MTV2: The Border Campaign", + "release_date": "2017-08-25", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Eagle Dynamics" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097549" + ], + "created_at": "2026-07-10T10:10:26.046304", + "updated_at": "2026-07-10T10:10:26.046304", + "url": "/v1/games/mi-8mtv2-the-border-campaign" +} diff --git a/site/public/v1/games/microsoft-arcade/index.json b/site/public/v1/games/microsoft-arcade/index.json new file mode 100644 index 000000000000..5f2775cda55c --- /dev/null +++ b/site/public/v1/games/microsoft-arcade/index.json @@ -0,0 +1,30 @@ +{ + "id": 91867, + "slug": "microsoft-arcade", + "name": "Microsoft Arcade", + "release_date": "1993-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Classic Mac OS", + "Microsoft Windows" + ], + "genres": [ + "arcade" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17042551" + ], + "created_at": "2026-07-10T10:10:26.087828", + "updated_at": "2026-07-10T10:10:26.087828", + "url": "/v1/games/microsoft-arcade" +} diff --git a/site/public/v1/games/microsoft-children-s-miracle-network-games-bundle/index.json b/site/public/v1/games/microsoft-children-s-miracle-network-games-bundle/index.json new file mode 100644 index 000000000000..e3a90e40b4be --- /dev/null +++ b/site/public/v1/games/microsoft-children-s-miracle-network-games-bundle/index.json @@ -0,0 +1,27 @@ +{ + "id": 91873, + "slug": "microsoft-children-s-miracle-network-games-bundle", + "name": "Microsoft Children's Miracle Network Games Bundle", + "release_date": "2008-10-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Xbox Game Studios" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6840095" + ], + "created_at": "2026-07-10T10:10:26.089829", + "updated_at": "2026-07-10T10:10:26.089829", + "url": "/v1/games/microsoft-children-s-miracle-network-games-bundle" +} diff --git a/site/public/v1/games/microsoft-entertainment-pack-1/index.json b/site/public/v1/games/microsoft-entertainment-pack-1/index.json new file mode 100644 index 000000000000..3664b3f604c8 --- /dev/null +++ b/site/public/v1/games/microsoft-entertainment-pack-1/index.json @@ -0,0 +1,27 @@ +{ + "id": 91876, + "slug": "microsoft-entertainment-pack-1", + "name": "Microsoft Entertainment Pack 1", + "release_date": "1990-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q132295659" + ], + "created_at": "2026-07-10T10:10:26.090828", + "updated_at": "2026-07-10T10:10:26.090828", + "url": "/v1/games/microsoft-entertainment-pack-1" +} diff --git a/site/public/v1/games/microsoft-flight-simulator-top-gun-maverick/index.json b/site/public/v1/games/microsoft-flight-simulator-top-gun-maverick/index.json new file mode 100644 index 000000000000..356fc3e8c086 --- /dev/null +++ b/site/public/v1/games/microsoft-flight-simulator-top-gun-maverick/index.json @@ -0,0 +1,29 @@ +{ + "id": 91892, + "slug": "microsoft-flight-simulator-top-gun-maverick", + "name": "Microsoft Flight Simulator: Top Gun Maverick", + "release_date": "2022-05-26", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S", + "Steam", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136511455" + ], + "created_at": "2026-07-10T10:10:26.093827", + "updated_at": "2026-07-10T10:10:26.093827", + "url": "/v1/games/microsoft-flight-simulator-top-gun-maverick" +} diff --git a/site/public/v1/games/microsoft-flight-simulator-x-acceleration/index.json b/site/public/v1/games/microsoft-flight-simulator-x-acceleration/index.json new file mode 100644 index 000000000000..64e440400fed --- /dev/null +++ b/site/public/v1/games/microsoft-flight-simulator-x-acceleration/index.json @@ -0,0 +1,33 @@ +{ + "id": 91893, + "slug": "microsoft-flight-simulator-x-acceleration", + "name": "Microsoft Flight Simulator X: Acceleration", + "release_date": "2007-10-23", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "flight simulation video game" + ], + "stores": [], + "developers": [ + "Aces Studio" + ], + "publishers": [ + "Microsoft" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110716377" + ], + "created_at": "2026-07-10T10:10:26.094828", + "updated_at": "2026-07-10T10:10:26.094828", + "url": "/v1/games/microsoft-flight-simulator-x-acceleration" +} diff --git a/site/public/v1/games/microsoft-revenge-of-arcade/index.json b/site/public/v1/games/microsoft-revenge-of-arcade/index.json new file mode 100644 index 000000000000..85c9f8454dd8 --- /dev/null +++ b/site/public/v1/games/microsoft-revenge-of-arcade/index.json @@ -0,0 +1,25 @@ +{ + "id": 91910, + "slug": "microsoft-revenge-of-arcade", + "name": "Microsoft Revenge of Arcade", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q65089202" + ], + "created_at": "2026-07-10T10:10:26.098827", + "updated_at": "2026-07-10T10:10:26.098827", + "url": "/v1/games/microsoft-revenge-of-arcade" +} diff --git a/site/public/v1/games/mictlan-an-ancient-mythical-tale/index.json b/site/public/v1/games/mictlan-an-ancient-mythical-tale/index.json new file mode 100644 index 000000000000..2c51c9b19b10 --- /dev/null +++ b/site/public/v1/games/mictlan-an-ancient-mythical-tale/index.json @@ -0,0 +1,30 @@ +{ + "id": 91931, + "slug": "mictlan-an-ancient-mythical-tale", + "name": "Mictlan: An Ancient Mythical Tale", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "adventure video game", + "action game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107625856" + ], + "created_at": "2026-07-10T10:10:26.103888", + "updated_at": "2026-07-10T10:10:26.103888", + "url": "/v1/games/mictlan-an-ancient-mythical-tale" +} diff --git a/site/public/v1/games/middle-earth-shadow-of-mordor-game-of-the-year-edition/index.json b/site/public/v1/games/middle-earth-shadow-of-mordor-game-of-the-year-edition/index.json new file mode 100644 index 000000000000..cc894db6ade5 --- /dev/null +++ b/site/public/v1/games/middle-earth-shadow-of-mordor-game-of-the-year-edition/index.json @@ -0,0 +1,29 @@ +{ + "id": 91944, + "slug": "middle-earth-shadow-of-mordor-game-of-the-year-edition", + "name": "Middle-earth: Shadow of Mordor - Game of the Year Edition", + "release_date": "2015-05-05", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q92204212" + ], + "created_at": "2026-07-10T10:10:26.107827", + "updated_at": "2026-07-10T10:10:26.107827", + "url": "/v1/games/middle-earth-shadow-of-mordor-game-of-the-year-edition" +} diff --git a/site/public/v1/games/middle-earth-shadow-of-mordor-lord-of-the-hunt/index.json b/site/public/v1/games/middle-earth-shadow-of-mordor-lord-of-the-hunt/index.json new file mode 100644 index 000000000000..d895cfae0b8a --- /dev/null +++ b/site/public/v1/games/middle-earth-shadow-of-mordor-lord-of-the-hunt/index.json @@ -0,0 +1,36 @@ +{ + "id": 91945, + "slug": "middle-earth-shadow-of-mordor-lord-of-the-hunt", + "name": "Middle-earth: Shadow of Mordor - Lord of the Hunt", + "release_date": "2014-12-16", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 4", + "macOS", + "Microsoft Windows" + ], + "genres": [ + "action role-playing game" + ], + "stores": [], + "developers": [ + "Monolith Productions" + ], + "publishers": [ + "Feral Interactive", + "Warner Bros. Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109656366" + ], + "created_at": "2026-07-10T10:10:26.107827", + "updated_at": "2026-07-10T10:10:26.107827", + "url": "/v1/games/middle-earth-shadow-of-mordor-lord-of-the-hunt" +} diff --git a/site/public/v1/games/midnight-animal/index.json b/site/public/v1/games/midnight-animal/index.json new file mode 100644 index 000000000000..6750de13fd6c --- /dev/null +++ b/site/public/v1/games/midnight-animal/index.json @@ -0,0 +1,29 @@ +{ + "id": 91963, + "slug": "midnight-animal", + "name": "Midnight Animal", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "role-playing video game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q29907271" + ], + "created_at": "2026-07-10T10:10:26.111914", + "updated_at": "2026-07-10T10:10:26.111914", + "url": "/v1/games/midnight-animal" +} diff --git a/site/public/v1/games/midway-s-greatest-arcade-hits-volume-i/index.json b/site/public/v1/games/midway-s-greatest-arcade-hits-volume-i/index.json new file mode 100644 index 000000000000..bd27f673a6b2 --- /dev/null +++ b/site/public/v1/games/midway-s-greatest-arcade-hits-volume-i/index.json @@ -0,0 +1,27 @@ +{ + "id": 92127, + "slug": "midway-s-greatest-arcade-hits-volume-i", + "name": "Midway's Greatest Arcade Hits Volume I", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Nintendo 64" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108270202" + ], + "created_at": "2026-07-10T10:10:26.154366", + "updated_at": "2026-07-10T10:10:26.154366", + "url": "/v1/games/midway-s-greatest-arcade-hits-volume-i" +} diff --git a/site/public/v1/games/mig-29-for-dcs-world/index.json b/site/public/v1/games/mig-29-for-dcs-world/index.json new file mode 100644 index 000000000000..743717ac758e --- /dev/null +++ b/site/public/v1/games/mig-29-for-dcs-world/index.json @@ -0,0 +1,31 @@ +{ + "id": 92141, + "slug": "mig-29-for-dcs-world", + "name": "MiG-29 for DCS World", + "release_date": "2018-10-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Eagle Dynamics" + ], + "publishers": [ + "Eagle Dynamics" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097436" + ], + "created_at": "2026-07-10T10:10:26.158366", + "updated_at": "2026-07-10T10:10:26.158366", + "url": "/v1/games/mig-29-for-dcs-world" +} diff --git a/site/public/v1/games/might-and-magic-world-of-xeen/index.json b/site/public/v1/games/might-and-magic-world-of-xeen/index.json new file mode 100644 index 000000000000..f837a4561869 --- /dev/null +++ b/site/public/v1/games/might-and-magic-world-of-xeen/index.json @@ -0,0 +1,27 @@ +{ + "id": 92167, + "slug": "might-and-magic-world-of-xeen", + "name": "Might and Magic: World of Xeen", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "role-playing video game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q20726198" + ], + "created_at": "2026-07-10T10:10:26.164367", + "updated_at": "2026-07-10T10:10:26.164367", + "url": "/v1/games/might-and-magic-world-of-xeen" +} diff --git a/site/public/v1/games/milestones-q126186572/index.json b/site/public/v1/games/milestones-q126186572/index.json new file mode 100644 index 000000000000..0432a7125b2a --- /dev/null +++ b/site/public/v1/games/milestones-q126186572/index.json @@ -0,0 +1,25 @@ +{ + "id": 92320, + "slug": "milestones-q126186572", + "name": "Milestones", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126186572" + ], + "created_at": "2026-07-10T10:10:26.259899", + "updated_at": "2026-07-10T10:10:26.259899", + "url": "/v1/games/milestones-q126186572" +} diff --git a/site/public/v1/games/milf-artwork/index.json b/site/public/v1/games/milf-artwork/index.json new file mode 100644 index 000000000000..c9a62b25a630 --- /dev/null +++ b/site/public/v1/games/milf-artwork/index.json @@ -0,0 +1,35 @@ +{ + "id": 92322, + "slug": "milf-artwork", + "name": "MILF - Artwork", + "release_date": "2017-10-25", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "adventure video game", + "action game", + "casual game" + ], + "stores": [], + "developers": [ + "PinkySwear" + ], + "publishers": [ + "PinkySwear" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130320127" + ], + "created_at": "2026-07-10T10:10:26.260899", + "updated_at": "2026-07-10T10:10:26.260899", + "url": "/v1/games/milf-artwork" +} diff --git a/site/public/v1/games/millionaire-trivia-tv-game-q122704832/index.json b/site/public/v1/games/millionaire-trivia-tv-game-q122704832/index.json new file mode 100644 index 000000000000..fc87f16eca5d --- /dev/null +++ b/site/public/v1/games/millionaire-trivia-tv-game-q122704832/index.json @@ -0,0 +1,28 @@ +{ + "id": 92446, + "slug": "millionaire-trivia-tv-game-q122704832", + "name": "Millionaire Trivia: TV Game+", + "release_date": "2023-06-30", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "iPadOS", + "iOS" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122704832" + ], + "created_at": "2026-07-10T10:10:26.295236", + "updated_at": "2026-07-10T10:10:26.295236", + "url": "/v1/games/millionaire-trivia-tv-game-q122704832" +} diff --git a/site/public/v1/games/minecraft-dungeons-flames-of-the-nether/index.json b/site/public/v1/games/minecraft-dungeons-flames-of-the-nether/index.json new file mode 100644 index 000000000000..d242f37ad9c2 --- /dev/null +++ b/site/public/v1/games/minecraft-dungeons-flames-of-the-nether/index.json @@ -0,0 +1,25 @@ +{ + "id": 92677, + "slug": "minecraft-dungeons-flames-of-the-nether", + "name": "Minecraft Dungeons: Flames of the Nether", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140448037" + ], + "created_at": "2026-07-10T10:10:26.378603", + "updated_at": "2026-07-10T10:10:26.378603", + "url": "/v1/games/minecraft-dungeons-flames-of-the-nether" +} diff --git a/site/public/v1/games/mini-metro-q106750525/index.json b/site/public/v1/games/mini-metro-q106750525/index.json new file mode 100644 index 000000000000..cd3d6baab802 --- /dev/null +++ b/site/public/v1/games/mini-metro-q106750525/index.json @@ -0,0 +1,33 @@ +{ + "id": 92870, + "slug": "mini-metro-q106750525", + "name": "Mini Metro+", + "release_date": "2021-04-02", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "iPadOS", + "iOS", + "macOS" + ], + "genres": [], + "stores": [], + "developers": [ + "Dinosaur Polo Club" + ], + "publishers": [ + "Dinosaur Polo Club" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106750525" + ], + "created_at": "2026-07-10T10:10:26.434930", + "updated_at": "2026-07-10T10:10:26.434930", + "url": "/v1/games/mini-metro-q106750525" +} diff --git a/site/public/v1/games/mini-racers/index.json b/site/public/v1/games/mini-racers/index.json new file mode 100644 index 000000000000..2ee8b9d241eb --- /dev/null +++ b/site/public/v1/games/mini-racers/index.json @@ -0,0 +1,33 @@ +{ + "id": 92894, + "slug": "mini-racers", + "name": "Mini Racers", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Nintendo 64" + ], + "genres": [ + "racing video game" + ], + "stores": [], + "developers": [ + "Looking Glass Studios" + ], + "publishers": [ + "Nintendo" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127388614" + ], + "created_at": "2026-07-10T10:10:26.441935", + "updated_at": "2026-07-10T10:10:26.441935", + "url": "/v1/games/mini-racers" +} diff --git a/site/public/v1/games/minigo/index.json b/site/public/v1/games/minigo/index.json new file mode 100644 index 000000000000..15ad6047e90e --- /dev/null +++ b/site/public/v1/games/minigo/index.json @@ -0,0 +1,25 @@ +{ + "id": 92973, + "slug": "minigo", + "name": "Minigo", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q48938217" + ], + "created_at": "2026-07-10T10:10:26.463460", + "updated_at": "2026-07-10T10:10:26.463460", + "url": "/v1/games/minigo" +} diff --git a/site/public/v1/games/miracle-juggler/index.json b/site/public/v1/games/miracle-juggler/index.json new file mode 100644 index 000000000000..469403172ece --- /dev/null +++ b/site/public/v1/games/miracle-juggler/index.json @@ -0,0 +1,25 @@ +{ + "id": 93141, + "slug": "miracle-juggler", + "name": "Miracle Juggler", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11342792" + ], + "created_at": "2026-07-10T10:10:26.510965", + "updated_at": "2026-07-10T10:10:26.510965", + "url": "/v1/games/miracle-juggler" +} diff --git a/site/public/v1/games/mirakl/index.json b/site/public/v1/games/mirakl/index.json new file mode 100644 index 000000000000..e849ac27bb42 --- /dev/null +++ b/site/public/v1/games/mirakl/index.json @@ -0,0 +1,25 @@ +{ + "id": 93185, + "slug": "mirakl", + "name": "Mirakl", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11342781" + ], + "created_at": "2026-07-10T10:10:26.522966", + "updated_at": "2026-07-10T10:10:26.522966", + "url": "/v1/games/mirakl" +} diff --git a/site/public/v1/games/mirror-s-edge-catalyst-collector-s-edition/index.json b/site/public/v1/games/mirror-s-edge-catalyst-collector-s-edition/index.json new file mode 100644 index 000000000000..43433336a98a --- /dev/null +++ b/site/public/v1/games/mirror-s-edge-catalyst-collector-s-edition/index.json @@ -0,0 +1,35 @@ +{ + "id": 93218, + "slug": "mirror-s-edge-catalyst-collector-s-edition", + "name": "Mirror's Edge: Catalyst (Collector's Edition)", + "release_date": "2015-05-25", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "action-adventure game", + "parkour video game" + ], + "stores": [], + "developers": [ + "DICE" + ], + "publishers": [ + "Electronic Arts" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125884267" + ], + "created_at": "2026-07-10T10:10:26.530966", + "updated_at": "2026-07-10T10:10:26.530966", + "url": "/v1/games/mirror-s-edge-catalyst-collector-s-edition" +} diff --git a/site/public/v1/games/mirror-s-edge-catalyst-combat-runner-kit/index.json b/site/public/v1/games/mirror-s-edge-catalyst-combat-runner-kit/index.json new file mode 100644 index 000000000000..16fcce8bafe9 --- /dev/null +++ b/site/public/v1/games/mirror-s-edge-catalyst-combat-runner-kit/index.json @@ -0,0 +1,35 @@ +{ + "id": 93219, + "slug": "mirror-s-edge-catalyst-combat-runner-kit", + "name": "Mirror's Edge: Catalyst - Combat Runner Kit", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "action-adventure game", + "parkour video game" + ], + "stores": [], + "developers": [ + "DICE" + ], + "publishers": [ + "Electronic Arts" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125697579" + ], + "created_at": "2026-07-10T10:10:26.530966", + "updated_at": "2026-07-10T10:10:26.530966", + "url": "/v1/games/mirror-s-edge-catalyst-combat-runner-kit" +} diff --git a/site/public/v1/games/mirror-s-edge-catalyst-runner-kit-bundle/index.json b/site/public/v1/games/mirror-s-edge-catalyst-runner-kit-bundle/index.json new file mode 100644 index 000000000000..66e2a545ed65 --- /dev/null +++ b/site/public/v1/games/mirror-s-edge-catalyst-runner-kit-bundle/index.json @@ -0,0 +1,35 @@ +{ + "id": 93220, + "slug": "mirror-s-edge-catalyst-runner-kit-bundle", + "name": "Mirror's Edge™ Catalyst Runner Kit Bundle", + "release_date": "2015-05-25", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "action-adventure game", + "parkour video game" + ], + "stores": [], + "developers": [ + "DICE" + ], + "publishers": [ + "Electronic Arts" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125686797" + ], + "created_at": "2026-07-10T10:10:26.530966", + "updated_at": "2026-07-10T10:10:26.530966", + "url": "/v1/games/mirror-s-edge-catalyst-runner-kit-bundle" +} diff --git a/site/public/v1/games/mirror-s-edge-catalyst-speed-runner-kit/index.json b/site/public/v1/games/mirror-s-edge-catalyst-speed-runner-kit/index.json new file mode 100644 index 000000000000..9beac3be3efb --- /dev/null +++ b/site/public/v1/games/mirror-s-edge-catalyst-speed-runner-kit/index.json @@ -0,0 +1,36 @@ +{ + "id": 93221, + "slug": "mirror-s-edge-catalyst-speed-runner-kit", + "name": "Mirror's Edge: Catalyst - Speed Runner Kit", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "action-adventure game", + "parkour video game" + ], + "stores": [], + "developers": [ + "DICE" + ], + "publishers": [ + "Electronic Arts" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125697592" + ], + "created_at": "2026-07-10T10:10:26.531965", + "updated_at": "2026-07-10T10:10:26.531965", + "url": "/v1/games/mirror-s-edge-catalyst-speed-runner-kit" +} diff --git a/site/public/v1/games/mitch-s-mess/index.json b/site/public/v1/games/mitch-s-mess/index.json new file mode 100644 index 000000000000..c2a07e75b252 --- /dev/null +++ b/site/public/v1/games/mitch-s-mess/index.json @@ -0,0 +1,25 @@ +{ + "id": 93525, + "slug": "mitch-s-mess", + "name": "Mitch's Mess", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q128014893" + ], + "created_at": "2026-07-10T10:10:26.620490", + "updated_at": "2026-07-10T10:10:26.620490", + "url": "/v1/games/mitch-s-mess" +} diff --git a/site/public/v1/games/mlb-the-show-22-digital-deluxe-edition/index.json b/site/public/v1/games/mlb-the-show-22-digital-deluxe-edition/index.json new file mode 100644 index 000000000000..78a1235a5fdc --- /dev/null +++ b/site/public/v1/games/mlb-the-show-22-digital-deluxe-edition/index.json @@ -0,0 +1,31 @@ +{ + "id": 93634, + "slug": "mlb-the-show-22-digital-deluxe-edition", + "name": "MLB: The Show 22 Digital Deluxe Edition", + "release_date": "2022-04-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 5", + "PlayStation 4" + ], + "genres": [], + "stores": [], + "developers": [ + "San Diego Studio" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111781398" + ], + "created_at": "2026-07-10T10:10:26.652530", + "updated_at": "2026-07-10T10:10:26.652530", + "url": "/v1/games/mlb-the-show-22-digital-deluxe-edition" +} diff --git a/site/public/v1/games/mlb-the-show-22-mvp-edition/index.json b/site/public/v1/games/mlb-the-show-22-mvp-edition/index.json new file mode 100644 index 000000000000..6650faf762e8 --- /dev/null +++ b/site/public/v1/games/mlb-the-show-22-mvp-edition/index.json @@ -0,0 +1,31 @@ +{ + "id": 93635, + "slug": "mlb-the-show-22-mvp-edition", + "name": "MLB: The Show 22 MVP Edition", + "release_date": "2022-04-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 5", + "PlayStation 4" + ], + "genres": [], + "stores": [], + "developers": [ + "San Diego Studio" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111781432" + ], + "created_at": "2026-07-10T10:10:26.652530", + "updated_at": "2026-07-10T10:10:26.652530", + "url": "/v1/games/mlb-the-show-22-mvp-edition" +} diff --git a/site/public/v1/games/mobius-band/index.json b/site/public/v1/games/mobius-band/index.json new file mode 100644 index 000000000000..fa868874adbb --- /dev/null +++ b/site/public/v1/games/mobius-band/index.json @@ -0,0 +1,25 @@ +{ + "id": 93792, + "slug": "mobius-band", + "name": "MOBIUS BAND*", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125649385" + ], + "created_at": "2026-07-10T10:10:26.694521", + "updated_at": "2026-07-10T10:10:26.694521", + "url": "/v1/games/mobius-band" +} diff --git a/site/public/v1/games/mocha-doom/index.json b/site/public/v1/games/mocha-doom/index.json new file mode 100644 index 000000000000..90e0b805345a --- /dev/null +++ b/site/public/v1/games/mocha-doom/index.json @@ -0,0 +1,25 @@ +{ + "id": 93810, + "slug": "mocha-doom", + "name": "Mocha Doom", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120686226" + ], + "created_at": "2026-07-10T10:10:26.700521", + "updated_at": "2026-07-10T10:10:26.700521", + "url": "/v1/games/mocha-doom" +} diff --git a/site/public/v1/games/mochi-mayhem/index.json b/site/public/v1/games/mochi-mayhem/index.json new file mode 100644 index 000000000000..56f35079edc7 --- /dev/null +++ b/site/public/v1/games/mochi-mayhem/index.json @@ -0,0 +1,25 @@ +{ + "id": 93815, + "slug": "mochi-mayhem", + "name": "Mochi Mayhem", + "release_date": "2024-01-11", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130331650" + ], + "created_at": "2026-07-10T10:10:26.701522", + "updated_at": "2026-07-10T10:10:26.701522", + "url": "/v1/games/mochi-mayhem" +} diff --git a/site/public/v1/games/mole-manor/index.json b/site/public/v1/games/mole-manor/index.json new file mode 100644 index 000000000000..98a5f7fa1c9c --- /dev/null +++ b/site/public/v1/games/mole-manor/index.json @@ -0,0 +1,27 @@ +{ + "id": 93987, + "slug": "mole-manor", + "name": "Mole Manor", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [ + "Shanghai Taomee" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11078453" + ], + "created_at": "2026-07-10T10:10:26.747479", + "updated_at": "2026-07-10T10:10:26.747479", + "url": "/v1/games/mole-manor" +} diff --git a/site/public/v1/games/moneyshot-pack/index.json b/site/public/v1/games/moneyshot-pack/index.json new file mode 100644 index 000000000000..983a9a677ede --- /dev/null +++ b/site/public/v1/games/moneyshot-pack/index.json @@ -0,0 +1,27 @@ +{ + "id": 94183, + "slug": "moneyshot-pack", + "name": "Moneyshot Pack", + "release_date": "2012-02-14", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60602808" + ], + "created_at": "2026-07-10T10:10:26.807629", + "updated_at": "2026-07-10T10:10:26.807629", + "url": "/v1/games/moneyshot-pack" +} diff --git a/site/public/v1/games/monkey-island-madness/index.json b/site/public/v1/games/monkey-island-madness/index.json new file mode 100644 index 000000000000..8bb87fc6d4d1 --- /dev/null +++ b/site/public/v1/games/monkey-island-madness/index.json @@ -0,0 +1,27 @@ +{ + "id": 94226, + "slug": "monkey-island-madness", + "name": "Monkey Island Madness", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Lucasfilm Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124807732" + ], + "created_at": "2026-07-10T10:10:26.821638", + "updated_at": "2026-07-10T10:10:26.821638", + "url": "/v1/games/monkey-island-madness" +} diff --git a/site/public/v1/games/monkey-island-special/index.json b/site/public/v1/games/monkey-island-special/index.json new file mode 100644 index 000000000000..977e5691c48d --- /dev/null +++ b/site/public/v1/games/monkey-island-special/index.json @@ -0,0 +1,25 @@ +{ + "id": 94227, + "slug": "monkey-island-special", + "name": "Monkey Island Special", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125203030" + ], + "created_at": "2026-07-10T10:10:26.822639", + "updated_at": "2026-07-10T10:10:26.822639", + "url": "/v1/games/monkey-island-special" +} diff --git a/site/public/v1/games/monolith-q110817192/index.json b/site/public/v1/games/monolith-q110817192/index.json new file mode 100644 index 000000000000..d03eeb04082b --- /dev/null +++ b/site/public/v1/games/monolith-q110817192/index.json @@ -0,0 +1,32 @@ +{ + "id": 94305, + "slug": "monolith-q110817192", + "name": "Monolith", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "personal computer", + "PlayStation 3" + ], + "genres": [ + "action game" + ], + "stores": [], + "developers": [ + "Lesta Games" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110817192" + ], + "created_at": "2026-07-10T10:10:26.844648", + "updated_at": "2026-07-10T10:10:26.844648", + "url": "/v1/games/monolith-q110817192" +} diff --git a/site/public/v1/games/monster-girl-island-prologue/index.json b/site/public/v1/games/monster-girl-island-prologue/index.json new file mode 100644 index 000000000000..b517b71ee6c8 --- /dev/null +++ b/site/public/v1/games/monster-girl-island-prologue/index.json @@ -0,0 +1,35 @@ +{ + "id": 94448, + "slug": "monster-girl-island-prologue", + "name": "Monster Girl Island: Prologue", + "release_date": "2019-06-20", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "dating sim", + "erotic video game" + ], + "stores": [], + "developers": [ + "Redamz" + ], + "publishers": [ + "Redamz" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q84944311" + ], + "created_at": "2026-07-10T10:10:26.883220", + "updated_at": "2026-07-10T10:10:26.883220", + "url": "/v1/games/monster-girl-island-prologue" +} diff --git a/site/public/v1/games/monster-hunter-freedom-unite/index.json b/site/public/v1/games/monster-hunter-freedom-unite/index.json new file mode 100644 index 000000000000..dae5a58a763e --- /dev/null +++ b/site/public/v1/games/monster-hunter-freedom-unite/index.json @@ -0,0 +1,35 @@ +{ + "id": 94482, + "slug": "monster-hunter-freedom-unite", + "name": "Monster Hunter Freedom Unite", + "release_date": "2008-03-27", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation Portable", + "iOS" + ], + "genres": [ + "role-playing video game", + "action role-playing game" + ], + "stores": [], + "developers": [ + "Capcom" + ], + "publishers": [ + "Capcom" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q378928" + ], + "created_at": "2026-07-10T10:10:26.891170", + "updated_at": "2026-07-10T10:10:26.891170", + "url": "/v1/games/monster-hunter-freedom-unite" +} diff --git a/site/public/v1/games/monster-hunter-rise-sunbreak/index.json b/site/public/v1/games/monster-hunter-rise-sunbreak/index.json new file mode 100644 index 000000000000..610f26b8d7af --- /dev/null +++ b/site/public/v1/games/monster-hunter-rise-sunbreak/index.json @@ -0,0 +1,27 @@ +{ + "id": 94494, + "slug": "monster-hunter-rise-sunbreak", + "name": "Monster Hunter Rise: Sunbreak", + "release_date": "2022-06-30", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113087661" + ], + "created_at": "2026-07-10T10:10:26.894266", + "updated_at": "2026-07-10T10:10:26.894266", + "url": "/v1/games/monster-hunter-rise-sunbreak" +} diff --git a/site/public/v1/games/monster-hunter-stories-q107611422/index.json b/site/public/v1/games/monster-hunter-stories-q107611422/index.json new file mode 100644 index 000000000000..39b2511dcf8b --- /dev/null +++ b/site/public/v1/games/monster-hunter-stories-q107611422/index.json @@ -0,0 +1,32 @@ +{ + "id": 94497, + "slug": "monster-hunter-stories-q107611422", + "name": "Monster Hunter Stories+", + "release_date": "2021-08-06", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "iPadOS", + "iOS" + ], + "genres": [], + "stores": [], + "developers": [ + "Capcom" + ], + "publishers": [ + "Capcom" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107611422" + ], + "created_at": "2026-07-10T10:10:26.894266", + "updated_at": "2026-07-10T10:10:26.894266", + "url": "/v1/games/monster-hunter-stories-q107611422" +} diff --git a/site/public/v1/games/monster-prom-second-term/index.json b/site/public/v1/games/monster-prom-second-term/index.json new file mode 100644 index 000000000000..3edb509b6e40 --- /dev/null +++ b/site/public/v1/games/monster-prom-second-term/index.json @@ -0,0 +1,25 @@ +{ + "id": 94596, + "slug": "monster-prom-second-term", + "name": "Monster Prom: Second Term", + "release_date": "2019-02-14", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q99647456" + ], + "created_at": "2026-07-10T10:10:26.924171", + "updated_at": "2026-07-10T10:10:26.924171", + "url": "/v1/games/monster-prom-second-term" +} diff --git a/site/public/v1/games/monument-valley-2-q111154332/index.json b/site/public/v1/games/monument-valley-2-q111154332/index.json new file mode 100644 index 000000000000..2b082f09c488 --- /dev/null +++ b/site/public/v1/games/monument-valley-2-q111154332/index.json @@ -0,0 +1,28 @@ +{ + "id": 94816, + "slug": "monument-valley-2-q111154332", + "name": "Monument Valley 2+", + "release_date": "2022-03-11", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "iPadOS", + "iOS" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111154332" + ], + "created_at": "2026-07-10T10:10:26.987815", + "updated_at": "2026-07-10T10:10:26.987815", + "url": "/v1/games/monument-valley-2-q111154332" +} diff --git a/site/public/v1/games/monument-valley-q107349527/index.json b/site/public/v1/games/monument-valley-q107349527/index.json new file mode 100644 index 000000000000..c0e019e1a132 --- /dev/null +++ b/site/public/v1/games/monument-valley-q107349527/index.json @@ -0,0 +1,34 @@ +{ + "id": 94819, + "slug": "monument-valley-q107349527", + "name": "Monument Valley+", + "release_date": "2021-04-02", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "iPadOS", + "iOS" + ], + "genres": [ + "puzzle video game" + ], + "stores": [], + "developers": [ + "ustwo Games" + ], + "publishers": [ + "ustwo Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107349527" + ], + "created_at": "2026-07-10T10:10:26.987815", + "updated_at": "2026-07-10T10:10:26.987815", + "url": "/v1/games/monument-valley-q107349527" +} diff --git a/site/public/v1/games/mope-io/index.json b/site/public/v1/games/mope-io/index.json new file mode 100644 index 000000000000..faa239cdce4d --- /dev/null +++ b/site/public/v1/games/mope-io/index.json @@ -0,0 +1,27 @@ +{ + "id": 95066, + "slug": "mope-io", + "name": "Mope.io", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "strategy video game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121346088" + ], + "created_at": "2026-07-10T10:10:27.055273", + "updated_at": "2026-07-10T10:10:27.055273", + "url": "/v1/games/mope-io" +} diff --git a/site/public/v1/games/more-50-questions-part-1/index.json b/site/public/v1/games/more-50-questions-part-1/index.json new file mode 100644 index 000000000000..a2fc4030005c --- /dev/null +++ b/site/public/v1/games/more-50-questions-part-1/index.json @@ -0,0 +1,33 @@ +{ + "id": 95091, + "slug": "more-50-questions-part-1", + "name": "东方试闻广纪: More 50 Questions Part 1", + "release_date": "2018-08-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "trivia video game" + ], + "stores": [], + "developers": [ + "Bawu Team" + ], + "publishers": [ + "Bawu Team" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125720047" + ], + "created_at": "2026-07-10T10:10:27.062350", + "updated_at": "2026-07-10T10:10:27.062350", + "url": "/v1/games/more-50-questions-part-1" +} diff --git a/site/public/v1/games/more-50-questions-part-2/index.json b/site/public/v1/games/more-50-questions-part-2/index.json new file mode 100644 index 000000000000..ccc1d1226c75 --- /dev/null +++ b/site/public/v1/games/more-50-questions-part-2/index.json @@ -0,0 +1,33 @@ +{ + "id": 95092, + "slug": "more-50-questions-part-2", + "name": "东方试闻广纪: More 50 Questions Part 2", + "release_date": "2018-08-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "trivia video game" + ], + "stores": [], + "developers": [ + "Bawu Team" + ], + "publishers": [ + "Bawu Team" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125720277" + ], + "created_at": "2026-07-10T10:10:27.062350", + "updated_at": "2026-07-10T10:10:27.062350", + "url": "/v1/games/more-50-questions-part-2" +} diff --git a/site/public/v1/games/mortal-kombat-11-ultimate-edition/index.json b/site/public/v1/games/mortal-kombat-11-ultimate-edition/index.json new file mode 100644 index 000000000000..848de30cc01f --- /dev/null +++ b/site/public/v1/games/mortal-kombat-11-ultimate-edition/index.json @@ -0,0 +1,36 @@ +{ + "id": 95216, + "slug": "mortal-kombat-11-ultimate-edition", + "name": "Mortal Kombat 11: Ultimate Edition", + "release_date": "2020-11-17", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 5", + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "fighting game" + ], + "stores": [], + "developers": [ + "NetherRealm Studios" + ], + "publishers": [ + "Warner Bros. Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q104887249" + ], + "created_at": "2026-07-10T10:10:27.096272", + "updated_at": "2026-07-10T10:10:27.096272", + "url": "/v1/games/mortal-kombat-11-ultimate-edition" +} diff --git a/site/public/v1/games/mortal-kombat-12/index.json b/site/public/v1/games/mortal-kombat-12/index.json new file mode 100644 index 000000000000..3bb7423524f7 --- /dev/null +++ b/site/public/v1/games/mortal-kombat-12/index.json @@ -0,0 +1,31 @@ +{ + "id": 95218, + "slug": "mortal-kombat-12", + "name": "Mortal Kombat 12", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "fighting game" + ], + "stores": [], + "developers": [ + "NetherRealm Studios" + ], + "publishers": [ + "Warner Bros. Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111669943" + ], + "created_at": "2026-07-10T10:10:27.096272", + "updated_at": "2026-07-10T10:10:27.096272", + "url": "/v1/games/mortal-kombat-12" +} diff --git a/site/public/v1/games/mortal-kombat-arcade-kollection/index.json b/site/public/v1/games/mortal-kombat-arcade-kollection/index.json new file mode 100644 index 000000000000..c3ad652c3ce3 --- /dev/null +++ b/site/public/v1/games/mortal-kombat-arcade-kollection/index.json @@ -0,0 +1,35 @@ +{ + "id": 95222, + "slug": "mortal-kombat-arcade-kollection", + "name": "Mortal Kombat Arcade Kollection", + "release_date": "2011-08-31", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation Portable", + "PlayStation 3", + "Microsoft Windows" + ], + "genres": [ + "fighting game" + ], + "stores": [], + "developers": [ + "NetherRealm Studios" + ], + "publishers": [ + "Warner Bros. Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4044539" + ], + "created_at": "2026-07-10T10:10:27.097271", + "updated_at": "2026-07-10T10:10:27.097271", + "url": "/v1/games/mortal-kombat-arcade-kollection" +} diff --git a/site/public/v1/games/mortal-kombat-legacy-kollection/index.json b/site/public/v1/games/mortal-kombat-legacy-kollection/index.json new file mode 100644 index 000000000000..2c6d0222a3cd --- /dev/null +++ b/site/public/v1/games/mortal-kombat-legacy-kollection/index.json @@ -0,0 +1,36 @@ +{ + "id": 95230, + "slug": "mortal-kombat-legacy-kollection", + "name": "Mortal Kombat: Legacy Kollection", + "release_date": "2025-10-30", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 5", + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "2D fighting game" + ], + "stores": [], + "developers": [ + "Digital Eclipse" + ], + "publishers": [ + "Atari, Inc." + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134707692" + ], + "created_at": "2026-07-10T10:10:27.099275", + "updated_at": "2026-07-10T10:10:27.099275", + "url": "/v1/games/mortal-kombat-legacy-kollection" +} diff --git a/site/public/v1/games/mortal-kombat-xl-pack/index.json b/site/public/v1/games/mortal-kombat-xl-pack/index.json new file mode 100644 index 000000000000..b46e0adac1c0 --- /dev/null +++ b/site/public/v1/games/mortal-kombat-xl-pack/index.json @@ -0,0 +1,31 @@ +{ + "id": 95242, + "slug": "mortal-kombat-xl-pack", + "name": "Mortal Kombat XL Pack", + "release_date": "2016-03-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 4" + ], + "genres": [], + "stores": [], + "developers": [ + "NetherRealm Studios" + ], + "publishers": [ + "Warner Bros. Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q64776870" + ], + "created_at": "2026-07-10T10:10:27.101274", + "updated_at": "2026-07-10T10:10:27.101274", + "url": "/v1/games/mortal-kombat-xl-pack" +} diff --git a/site/public/v1/games/mortal-shell-the-virtuous-cycle/index.json b/site/public/v1/games/mortal-shell-the-virtuous-cycle/index.json new file mode 100644 index 000000000000..f967157c7fce --- /dev/null +++ b/site/public/v1/games/mortal-shell-the-virtuous-cycle/index.json @@ -0,0 +1,27 @@ +{ + "id": 95253, + "slug": "mortal-shell-the-virtuous-cycle", + "name": "Mortal Shell: The Virtuous Cycle", + "release_date": "2021-08-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107697187" + ], + "created_at": "2026-07-10T10:10:27.104330", + "updated_at": "2026-07-10T10:10:27.104330", + "url": "/v1/games/mortal-shell-the-virtuous-cycle" +} diff --git a/site/public/v1/games/mother-1-2/index.json b/site/public/v1/games/mother-1-2/index.json new file mode 100644 index 000000000000..ab47d895f42f --- /dev/null +++ b/site/public/v1/games/mother-1-2/index.json @@ -0,0 +1,27 @@ +{ + "id": 95368, + "slug": "mother-1-2", + "name": "Mother 1 + 2", + "release_date": "2003-06-20", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Game Boy Advance" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3108749" + ], + "created_at": "2026-07-10T10:10:27.135275", + "updated_at": "2026-07-10T10:10:27.135275", + "url": "/v1/games/mother-1-2" +} diff --git a/site/public/v1/games/mother-of-all-secrets/index.json b/site/public/v1/games/mother-of-all-secrets/index.json new file mode 100644 index 000000000000..01df8e65188c --- /dev/null +++ b/site/public/v1/games/mother-of-all-secrets/index.json @@ -0,0 +1,31 @@ +{ + "id": 95379, + "slug": "mother-of-all-secrets", + "name": "Mother of All Secrets", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Sever Studio" + ], + "publishers": [ + "101xp" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110740739" + ], + "created_at": "2026-07-10T10:10:27.138282", + "updated_at": "2026-07-10T10:10:27.138282", + "url": "/v1/games/mother-of-all-secrets" +} diff --git a/site/public/v1/games/moto-racer-collection/index.json b/site/public/v1/games/moto-racer-collection/index.json new file mode 100644 index 000000000000..45fe66755306 --- /dev/null +++ b/site/public/v1/games/moto-racer-collection/index.json @@ -0,0 +1,29 @@ +{ + "id": 95429, + "slug": "moto-racer-collection", + "name": "Moto Racer Collection", + "release_date": "2011-11-30", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "racing video game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q114284682" + ], + "created_at": "2026-07-10T10:10:27.151799", + "updated_at": "2026-07-10T10:10:27.151799", + "url": "/v1/games/moto-racer-collection" +} diff --git a/site/public/v1/games/mount-blade-with-fire-sword/index.json b/site/public/v1/games/mount-blade-with-fire-sword/index.json new file mode 100644 index 000000000000..2f03b607c9b2 --- /dev/null +++ b/site/public/v1/games/mount-blade-with-fire-sword/index.json @@ -0,0 +1,33 @@ +{ + "id": 95566, + "slug": "mount-blade-with-fire-sword", + "name": "Mount & Blade: With Fire & Sword", + "release_date": "2011-05-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "action role-playing game" + ], + "stores": [], + "developers": [ + "TaleWorlds" + ], + "publishers": [ + "Paradox Interactive" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2587253" + ], + "created_at": "2026-07-10T10:10:27.185888", + "updated_at": "2026-07-10T10:10:27.185888", + "url": "/v1/games/mount-blade-with-fire-sword" +} diff --git a/site/public/v1/games/mount-tepid/index.json b/site/public/v1/games/mount-tepid/index.json new file mode 100644 index 000000000000..19a562402dd0 --- /dev/null +++ b/site/public/v1/games/mount-tepid/index.json @@ -0,0 +1,25 @@ +{ + "id": 95572, + "slug": "mount-tepid", + "name": "Mount Tepid", + "release_date": "2013-04-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112582105" + ], + "created_at": "2026-07-10T10:10:27.187888", + "updated_at": "2026-07-10T10:10:27.187888", + "url": "/v1/games/mount-tepid" +} diff --git a/site/public/v1/games/movidle/index.json b/site/public/v1/games/movidle/index.json new file mode 100644 index 000000000000..01a77fccc50d --- /dev/null +++ b/site/public/v1/games/movidle/index.json @@ -0,0 +1,29 @@ +{ + "id": 95687, + "slug": "movidle", + "name": "Movidle", + "release_date": "2026-05-17", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "puzzle video game", + "quiz", + "word game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140285796" + ], + "created_at": "2026-07-10T10:10:27.218888", + "updated_at": "2026-07-10T10:10:27.218888", + "url": "/v1/games/movidle" +} diff --git a/site/public/v1/games/moviestarplanet/index.json b/site/public/v1/games/moviestarplanet/index.json new file mode 100644 index 000000000000..2abda51764b6 --- /dev/null +++ b/site/public/v1/games/moviestarplanet/index.json @@ -0,0 +1,29 @@ +{ + "id": 95703, + "slug": "moviestarplanet", + "name": "MovieStarPlanet", + "release_date": "2009-05-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "browser game", + "iOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3425948" + ], + "created_at": "2026-07-10T10:10:27.225888", + "updated_at": "2026-07-10T10:10:27.225888", + "url": "/v1/games/moviestarplanet" +} diff --git a/site/public/v1/games/mr-smiley-head-s-safari-2/index.json b/site/public/v1/games/mr-smiley-head-s-safari-2/index.json new file mode 100644 index 000000000000..5a065987c47a --- /dev/null +++ b/site/public/v1/games/mr-smiley-head-s-safari-2/index.json @@ -0,0 +1,29 @@ +{ + "id": 95878, + "slug": "mr-smiley-head-s-safari-2", + "name": "Mr. Smiley Head's Safari 2", + "release_date": "2016-09-29", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q67471766" + ], + "created_at": "2026-07-10T10:10:27.273024", + "updated_at": "2026-07-10T10:10:27.273024", + "url": "/v1/games/mr-smiley-head-s-safari-2" +} diff --git a/site/public/v1/games/mt-travail/index.json b/site/public/v1/games/mt-travail/index.json new file mode 100644 index 000000000000..862faf065cbc --- /dev/null +++ b/site/public/v1/games/mt-travail/index.json @@ -0,0 +1,25 @@ +{ + "id": 95937, + "slug": "mt-travail", + "name": "Mt. Travail", + "release_date": "2013-03-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112582106" + ], + "created_at": "2026-07-10T10:10:27.288967", + "updated_at": "2026-07-10T10:10:27.288967", + "url": "/v1/games/mt-travail" +} diff --git a/site/public/v1/games/mulle-meck-builds-a-boat/index.json b/site/public/v1/games/mulle-meck-builds-a-boat/index.json new file mode 100644 index 000000000000..352ad632bee0 --- /dev/null +++ b/site/public/v1/games/mulle-meck-builds-a-boat/index.json @@ -0,0 +1,27 @@ +{ + "id": 96040, + "slug": "mulle-meck-builds-a-boat", + "name": "Mulle Meck builds a boat", + "release_date": "2016-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Piu-Piu Team" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123083447" + ], + "created_at": "2026-07-10T10:10:27.316979", + "updated_at": "2026-07-10T10:10:27.316979", + "url": "/v1/games/mulle-meck-builds-a-boat" +} diff --git a/site/public/v1/games/mulle-meck-builds-a-car/index.json b/site/public/v1/games/mulle-meck-builds-a-car/index.json new file mode 100644 index 000000000000..67174c2bab0a --- /dev/null +++ b/site/public/v1/games/mulle-meck-builds-a-car/index.json @@ -0,0 +1,27 @@ +{ + "id": 96041, + "slug": "mulle-meck-builds-a-car", + "name": "Mulle Meck Builds a Car", + "release_date": "2016-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Piu-Piu Team" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123056123" + ], + "created_at": "2026-07-10T10:10:27.317977", + "updated_at": "2026-07-10T10:10:27.317977", + "url": "/v1/games/mulle-meck-builds-a-car" +} diff --git a/site/public/v1/games/multi-theft-auto-san-andreas/index.json b/site/public/v1/games/multi-theft-auto-san-andreas/index.json new file mode 100644 index 000000000000..7698b9465550 --- /dev/null +++ b/site/public/v1/games/multi-theft-auto-san-andreas/index.json @@ -0,0 +1,25 @@ +{ + "id": 96055, + "slug": "multi-theft-auto-san-andreas", + "name": "Multi Theft Auto: San Andreas", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q29364781" + ], + "created_at": "2026-07-10T10:10:27.320977", + "updated_at": "2026-07-10T10:10:27.320977", + "url": "/v1/games/multi-theft-auto-san-andreas" +} diff --git a/site/public/v1/games/multi-theft-auto-vice-city/index.json b/site/public/v1/games/multi-theft-auto-vice-city/index.json new file mode 100644 index 000000000000..9b5ef17235e3 --- /dev/null +++ b/site/public/v1/games/multi-theft-auto-vice-city/index.json @@ -0,0 +1,25 @@ +{ + "id": 96056, + "slug": "multi-theft-auto-vice-city", + "name": "Multi Theft Auto: Vice City", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q29364783" + ], + "created_at": "2026-07-10T10:10:27.322036", + "updated_at": "2026-07-10T10:10:27.322036", + "url": "/v1/games/multi-theft-auto-vice-city" +} diff --git a/site/public/v1/games/multi-theft-auto/index.json b/site/public/v1/games/multi-theft-auto/index.json new file mode 100644 index 000000000000..a41ab6dcdf68 --- /dev/null +++ b/site/public/v1/games/multi-theft-auto/index.json @@ -0,0 +1,29 @@ +{ + "id": 96057, + "slug": "multi-theft-auto", + "name": "Multi Theft Auto", + "release_date": "2006-01-22", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "third-person shooter" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q265656" + ], + "created_at": "2026-07-10T10:10:27.322036", + "updated_at": "2026-07-10T10:10:27.322036", + "url": "/v1/games/multi-theft-auto" +} diff --git a/site/public/v1/games/multibowl/index.json b/site/public/v1/games/multibowl/index.json new file mode 100644 index 000000000000..b75a57d8845b --- /dev/null +++ b/site/public/v1/games/multibowl/index.json @@ -0,0 +1,25 @@ +{ + "id": 96064, + "slug": "multibowl", + "name": "Multibowl", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q27536869" + ], + "created_at": "2026-07-10T10:10:27.324056", + "updated_at": "2026-07-10T10:10:27.324056", + "url": "/v1/games/multibowl" +} diff --git a/site/public/v1/games/multiwinia-demo/index.json b/site/public/v1/games/multiwinia-demo/index.json new file mode 100644 index 000000000000..644ad6b3481a --- /dev/null +++ b/site/public/v1/games/multiwinia-demo/index.json @@ -0,0 +1,33 @@ +{ + "id": 96131, + "slug": "multiwinia-demo", + "name": "Multiwinia Demo", + "release_date": "2008-09-19", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "real-time strategy" + ], + "stores": [], + "developers": [ + "Introversion Software" + ], + "publishers": [ + "Introversion Software" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122705458" + ], + "created_at": "2026-07-10T10:10:27.342079", + "updated_at": "2026-07-10T10:10:27.342079", + "url": "/v1/games/multiwinia-demo" +} diff --git a/site/public/v1/games/mundo-gaturro/index.json b/site/public/v1/games/mundo-gaturro/index.json new file mode 100644 index 000000000000..5e10e394ff76 --- /dev/null +++ b/site/public/v1/games/mundo-gaturro/index.json @@ -0,0 +1,34 @@ +{ + "id": 96172, + "slug": "mundo-gaturro", + "name": "Mundo Gaturro", + "release_date": "2010-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "iOS", + "macOS", + "Microsoft Windows" + ], + "genres": [ + "massively multiplayer online game", + "children's game" + ], + "stores": [], + "developers": [ + "QB9 Entertainment" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q20017260" + ], + "created_at": "2026-07-10T10:10:27.353510", + "updated_at": "2026-07-10T10:10:27.353510", + "url": "/v1/games/mundo-gaturro" +} diff --git a/site/public/v1/games/murder-mystery-2-q135721427/index.json b/site/public/v1/games/murder-mystery-2-q135721427/index.json new file mode 100644 index 000000000000..64107abf2829 --- /dev/null +++ b/site/public/v1/games/murder-mystery-2-q135721427/index.json @@ -0,0 +1,30 @@ +{ + "id": 96242, + "slug": "murder-mystery-2-q135721427", + "name": "Murder Mystery 2", + "release_date": "2014-01-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "horror video game", + "mystery video game" + ], + "stores": [], + "developers": [ + "Nikilis" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135721427" + ], + "created_at": "2026-07-10T10:10:27.370579", + "updated_at": "2026-07-10T10:10:27.370579", + "url": "/v1/games/murder-mystery-2-q135721427" +} diff --git a/site/public/v1/games/murder-mystery-2/index.json b/site/public/v1/games/murder-mystery-2/index.json new file mode 100644 index 000000000000..01220b34931e --- /dev/null +++ b/site/public/v1/games/murder-mystery-2/index.json @@ -0,0 +1,30 @@ +{ + "id": 96243, + "slug": "murder-mystery-2", + "name": "Murder Mystery 2", + "release_date": "2014-01-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "mystery fiction", + "mystery video game" + ], + "stores": [], + "developers": [ + "Nikilis" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126958164" + ], + "created_at": "2026-07-10T10:10:27.371575", + "updated_at": "2026-07-10T10:10:27.371575", + "url": "/v1/games/murder-mystery-2" +} diff --git a/site/public/v1/games/muumipappa-kalassa/index.json b/site/public/v1/games/muumipappa-kalassa/index.json new file mode 100644 index 000000000000..0a576c424290 --- /dev/null +++ b/site/public/v1/games/muumipappa-kalassa/index.json @@ -0,0 +1,31 @@ +{ + "id": 96554, + "slug": "muumipappa-kalassa", + "name": "Muumipappa kalassa", + "release_date": "2001-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Java" + ], + "genres": [ + "fishing video game" + ], + "stores": [], + "developers": [ + "RedLynx" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106310534" + ], + "created_at": "2026-07-10T10:10:27.453232", + "updated_at": "2026-07-10T10:10:27.453232", + "url": "/v1/games/muumipappa-kalassa" +} diff --git a/site/public/v1/games/my-bowling-3d-q113660205/index.json b/site/public/v1/games/my-bowling-3d-q113660205/index.json new file mode 100644 index 000000000000..bdabf10f909e --- /dev/null +++ b/site/public/v1/games/my-bowling-3d-q113660205/index.json @@ -0,0 +1,29 @@ +{ + "id": 96667, + "slug": "my-bowling-3d-q113660205", + "name": "My Bowling 3D+", + "release_date": "2022-07-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "iPadOS", + "iOS", + "macOS" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113660205" + ], + "created_at": "2026-07-10T10:10:27.481274", + "updated_at": "2026-07-10T10:10:27.481274", + "url": "/v1/games/my-bowling-3d-q113660205" +} diff --git a/site/public/v1/games/my-friend-peppa-pig-complete-edition/index.json b/site/public/v1/games/my-friend-peppa-pig-complete-edition/index.json new file mode 100644 index 000000000000..c6886d60ea94 --- /dev/null +++ b/site/public/v1/games/my-friend-peppa-pig-complete-edition/index.json @@ -0,0 +1,31 @@ +{ + "id": 96824, + "slug": "my-friend-peppa-pig-complete-edition", + "name": "My Friend Peppa Pig - Complete Edition", + "release_date": "2022-08-26", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S" + ], + "genres": [], + "stores": [], + "developers": [ + "Petoons Studio" + ], + "publishers": [ + "Outright Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115988027" + ], + "created_at": "2026-07-10T10:10:27.523233", + "updated_at": "2026-07-10T10:10:27.523233", + "url": "/v1/games/my-friend-peppa-pig-complete-edition" +} diff --git a/site/public/v1/games/my-nba-2k23/index.json b/site/public/v1/games/my-nba-2k23/index.json new file mode 100644 index 000000000000..45d5b06e4aea --- /dev/null +++ b/site/public/v1/games/my-nba-2k23/index.json @@ -0,0 +1,27 @@ +{ + "id": 97060, + "slug": "my-nba-2k23", + "name": "My NBA 2K23", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "basketball video game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135553338" + ], + "created_at": "2026-07-10T10:10:27.614895", + "updated_at": "2026-07-10T10:10:27.614895", + "url": "/v1/games/my-nba-2k23" +} diff --git a/site/public/v1/games/my-talking-angela-2-q122699733/index.json b/site/public/v1/games/my-talking-angela-2-q122699733/index.json new file mode 100644 index 000000000000..ba84241a7ec5 --- /dev/null +++ b/site/public/v1/games/my-talking-angela-2-q122699733/index.json @@ -0,0 +1,28 @@ +{ + "id": 97203, + "slug": "my-talking-angela-2-q122699733", + "name": "My Talking Angela 2+", + "release_date": "2023-09-08", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "iPadOS", + "iOS" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122699733" + ], + "created_at": "2026-07-10T10:10:27.653513", + "updated_at": "2026-07-10T10:10:27.653513", + "url": "/v1/games/my-talking-angela-2-q122699733" +} diff --git a/site/public/v1/games/my-talking-tom-q113509687/index.json b/site/public/v1/games/my-talking-tom-q113509687/index.json new file mode 100644 index 000000000000..cff57fecb758 --- /dev/null +++ b/site/public/v1/games/my-talking-tom-q113509687/index.json @@ -0,0 +1,28 @@ +{ + "id": 97210, + "slug": "my-talking-tom-q113509687", + "name": "My Talking Tom+", + "release_date": "2022-08-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "iPadOS", + "iOS" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113509687" + ], + "created_at": "2026-07-10T10:10:27.655514", + "updated_at": "2026-07-10T10:10:27.655514", + "url": "/v1/games/my-talking-tom-q113509687" +} diff --git a/site/public/v1/games/myminicity/index.json b/site/public/v1/games/myminicity/index.json new file mode 100644 index 000000000000..0f2bc384e2ba --- /dev/null +++ b/site/public/v1/games/myminicity/index.json @@ -0,0 +1,25 @@ +{ + "id": 97309, + "slug": "myminicity", + "name": "MyMiniCity", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q12746122" + ], + "created_at": "2026-07-10T10:10:27.681582", + "updated_at": "2026-07-10T10:10:27.681582", + "url": "/v1/games/myminicity" +} diff --git a/site/public/v1/games/mysims-cozy-bundle/index.json b/site/public/v1/games/mysims-cozy-bundle/index.json new file mode 100644 index 000000000000..1f0e70973600 --- /dev/null +++ b/site/public/v1/games/mysims-cozy-bundle/index.json @@ -0,0 +1,36 @@ +{ + "id": 97333, + "slug": "mysims-cozy-bundle", + "name": "MySims: Cozy Bundle", + "release_date": "2024-11-19", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 5", + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ], + "stores": [], + "developers": [ + "Visceral Games", + "Sylwestra" + ], + "publishers": [ + "Electronic Arts" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134316494" + ], + "created_at": "2026-07-10T10:10:27.688795", + "updated_at": "2026-07-10T10:10:27.688795", + "url": "/v1/games/mysims-cozy-bundle" +} diff --git a/site/public/v1/games/mysims-social/index.json b/site/public/v1/games/mysims-social/index.json new file mode 100644 index 000000000000..56901795176b --- /dev/null +++ b/site/public/v1/games/mysims-social/index.json @@ -0,0 +1,27 @@ +{ + "id": 97338, + "slug": "mysims-social", + "name": "MySims Social", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63247559" + ], + "created_at": "2026-07-10T10:10:27.689807", + "updated_at": "2026-07-10T10:10:27.689807", + "url": "/v1/games/mysims-social" +} diff --git a/site/public/v1/games/myst-online-uru-live/index.json b/site/public/v1/games/myst-online-uru-live/index.json new file mode 100644 index 000000000000..777c02a020da --- /dev/null +++ b/site/public/v1/games/myst-online-uru-live/index.json @@ -0,0 +1,33 @@ +{ + "id": 97346, + "slug": "myst-online-uru-live", + "name": "Myst Online: Uru Live", + "release_date": "2007-02-15", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "adventure video game", + "massively multiplayer online game" + ], + "stores": [], + "developers": [ + "Cyan Worlds" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3869157" + ], + "created_at": "2026-07-10T10:10:27.691784", + "updated_at": "2026-07-10T10:10:27.691784", + "url": "/v1/games/myst-online-uru-live" +} diff --git a/site/public/v1/games/n-ppistaituri/index.json b/site/public/v1/games/n-ppistaituri/index.json new file mode 100644 index 000000000000..9520f513b64d --- /dev/null +++ b/site/public/v1/games/n-ppistaituri/index.json @@ -0,0 +1,25 @@ +{ + "id": 97783, + "slug": "n-ppistaituri", + "name": "NäppisTaituri", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q100701590" + ], + "created_at": "2026-07-10T10:10:27.828779", + "updated_at": "2026-07-10T10:10:27.828779", + "url": "/v1/games/n-ppistaituri" +} diff --git a/site/public/v1/games/namco-anthology-1/index.json b/site/public/v1/games/namco-anthology-1/index.json new file mode 100644 index 000000000000..23a47a9d0b1c --- /dev/null +++ b/site/public/v1/games/namco-anthology-1/index.json @@ -0,0 +1,31 @@ +{ + "id": 97907, + "slug": "namco-anthology-1", + "name": "Namco Anthology 1", + "release_date": "1998-06-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "video game compilation" + ], + "stores": [], + "developers": [ + "Namco" + ], + "publishers": [ + "Namco" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q20240918" + ], + "created_at": "2026-07-10T10:10:27.868485", + "updated_at": "2026-07-10T10:10:27.868485", + "url": "/v1/games/namco-anthology-1" +} diff --git a/site/public/v1/games/namco-anthology-2/index.json b/site/public/v1/games/namco-anthology-2/index.json new file mode 100644 index 000000000000..a974c1a06416 --- /dev/null +++ b/site/public/v1/games/namco-anthology-2/index.json @@ -0,0 +1,31 @@ +{ + "id": 97908, + "slug": "namco-anthology-2", + "name": "Namco Anthology 2", + "release_date": "1998-09-23", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "video game compilation" + ], + "stores": [], + "developers": [ + "Namco" + ], + "publishers": [ + "Namco" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q20240919" + ], + "created_at": "2026-07-10T10:10:27.868485", + "updated_at": "2026-07-10T10:10:27.868485", + "url": "/v1/games/namco-anthology-2" +} diff --git a/site/public/v1/games/namco-classic-collection-vol-1/index.json b/site/public/v1/games/namco-classic-collection-vol-1/index.json new file mode 100644 index 000000000000..b9ad52110f78 --- /dev/null +++ b/site/public/v1/games/namco-classic-collection-vol-1/index.json @@ -0,0 +1,33 @@ +{ + "id": 97911, + "slug": "namco-classic-collection-vol-1", + "name": "Namco Classic Collection Vol. 1", + "release_date": "1995-11-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "arcade video game machine" + ], + "genres": [ + "arcade" + ], + "stores": [], + "developers": [ + "Namco" + ], + "publishers": [ + "Namco" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6961452" + ], + "created_at": "2026-07-10T10:10:27.869506", + "updated_at": "2026-07-10T10:10:27.869506", + "url": "/v1/games/namco-classic-collection-vol-1" +} diff --git a/site/public/v1/games/namco-classic-collection-vol-2/index.json b/site/public/v1/games/namco-classic-collection-vol-2/index.json new file mode 100644 index 000000000000..8947cd735f04 --- /dev/null +++ b/site/public/v1/games/namco-classic-collection-vol-2/index.json @@ -0,0 +1,33 @@ +{ + "id": 97912, + "slug": "namco-classic-collection-vol-2", + "name": "Namco Classic Collection Vol. 2", + "release_date": "1996-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "arcade video game machine" + ], + "genres": [ + "arcade" + ], + "stores": [], + "developers": [ + "Namco" + ], + "publishers": [ + "Namco" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16266791" + ], + "created_at": "2026-07-10T10:10:27.869506", + "updated_at": "2026-07-10T10:10:27.869506", + "url": "/v1/games/namco-classic-collection-vol-2" +} diff --git a/site/public/v1/games/namco-collection/index.json b/site/public/v1/games/namco-collection/index.json new file mode 100644 index 000000000000..aaa044e67959 --- /dev/null +++ b/site/public/v1/games/namco-collection/index.json @@ -0,0 +1,27 @@ +{ + "id": 97913, + "slug": "namco-collection", + "name": "Namco Collection", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6961454" + ], + "created_at": "2026-07-10T10:10:27.869506", + "updated_at": "2026-07-10T10:10:27.869506", + "url": "/v1/games/namco-collection" +} diff --git a/site/public/v1/games/namco-museum-encore/index.json b/site/public/v1/games/namco-museum-encore/index.json new file mode 100644 index 000000000000..ddf40d6ba8a5 --- /dev/null +++ b/site/public/v1/games/namco-museum-encore/index.json @@ -0,0 +1,27 @@ +{ + "id": 97923, + "slug": "namco-museum-encore", + "name": "Namco Museum Encore", + "release_date": "1997-10-30", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Namco" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q20240925" + ], + "created_at": "2026-07-10T10:10:27.872489", + "updated_at": "2026-07-10T10:10:27.872489", + "url": "/v1/games/namco-museum-encore" +} diff --git a/site/public/v1/games/namco-museum-q20240929/index.json b/site/public/v1/games/namco-museum-q20240929/index.json new file mode 100644 index 000000000000..c519357e8584 --- /dev/null +++ b/site/public/v1/games/namco-museum-q20240929/index.json @@ -0,0 +1,29 @@ +{ + "id": 97926, + "slug": "namco-museum-q20240929", + "name": "Namco Museum", + "release_date": "2001-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Game Boy Advance" + ], + "genres": [ + "video game compilation" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q20240929" + ], + "created_at": "2026-07-10T10:10:27.873483", + "updated_at": "2026-07-10T10:10:27.873483", + "url": "/v1/games/namco-museum-q20240929" +} diff --git a/site/public/v1/games/namco-museum-q20240936/index.json b/site/public/v1/games/namco-museum-q20240936/index.json new file mode 100644 index 000000000000..977dfe9b420a --- /dev/null +++ b/site/public/v1/games/namco-museum-q20240936/index.json @@ -0,0 +1,27 @@ +{ + "id": 97927, + "slug": "namco-museum-q20240936", + "name": "Namco Museum", + "release_date": "2002-10-09", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Nintendo GameCube" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q20240936" + ], + "created_at": "2026-07-10T10:10:27.873483", + "updated_at": "2026-07-10T10:10:27.873483", + "url": "/v1/games/namco-museum-q20240936" +} diff --git a/site/public/v1/games/namco-museum-virtual-arcade/index.json b/site/public/v1/games/namco-museum-virtual-arcade/index.json new file mode 100644 index 000000000000..3638e2f1faf4 --- /dev/null +++ b/site/public/v1/games/namco-museum-virtual-arcade/index.json @@ -0,0 +1,29 @@ +{ + "id": 97929, + "slug": "namco-museum-virtual-arcade", + "name": "Namco Museum Virtual Arcade", + "release_date": "2008-11-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [ + "Bandai Namco Entertainment" + ], + "publishers": [ + "Bandai Namco Entertainment" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106522050" + ], + "created_at": "2026-07-10T10:10:27.874477", + "updated_at": "2026-07-10T10:10:27.874477", + "url": "/v1/games/namco-museum-virtual-arcade" +} diff --git a/site/public/v1/games/namco-museum-vol-2-q1830261/index.json b/site/public/v1/games/namco-museum-vol-2-q1830261/index.json new file mode 100644 index 000000000000..9d0c299c6693 --- /dev/null +++ b/site/public/v1/games/namco-museum-vol-2-q1830261/index.json @@ -0,0 +1,27 @@ +{ + "id": 97931, + "slug": "namco-museum-vol-2-q1830261", + "name": "Namco Museum Vol. 2", + "release_date": "1996-02-09", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Namco" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1830261" + ], + "created_at": "2026-07-10T10:10:27.874477", + "updated_at": "2026-07-10T10:10:27.874477", + "url": "/v1/games/namco-museum-vol-2-q1830261" +} diff --git a/site/public/v1/games/namco-museum-vol-2/index.json b/site/public/v1/games/namco-museum-vol-2/index.json new file mode 100644 index 000000000000..780114cd1d42 --- /dev/null +++ b/site/public/v1/games/namco-museum-vol-2/index.json @@ -0,0 +1,32 @@ +{ + "id": 97932, + "slug": "namco-museum-vol-2", + "name": "Namco Museum Vol.2", + "release_date": "2006-02-23", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation Portable" + ], + "genres": [], + "stores": [], + "developers": [ + "Tose Co.", + "Gotch Technology Corp." + ], + "publishers": [ + "Namco" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127419972" + ], + "created_at": "2026-07-10T10:10:27.874477", + "updated_at": "2026-07-10T10:10:27.874477", + "url": "/v1/games/namco-museum-vol-2" +} diff --git a/site/public/v1/games/namco-museum-vol-3/index.json b/site/public/v1/games/namco-museum-vol-3/index.json new file mode 100644 index 000000000000..504f970ad990 --- /dev/null +++ b/site/public/v1/games/namco-museum-vol-3/index.json @@ -0,0 +1,27 @@ +{ + "id": 97933, + "slug": "namco-museum-vol-3", + "name": "Namco Museum Vol. 3", + "release_date": "1996-06-21", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Namco" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1833597" + ], + "created_at": "2026-07-10T10:10:27.875495", + "updated_at": "2026-07-10T10:10:27.875495", + "url": "/v1/games/namco-museum-vol-3" +} diff --git a/site/public/v1/games/namco-museum-vol-4/index.json b/site/public/v1/games/namco-museum-vol-4/index.json new file mode 100644 index 000000000000..bc6f60132f10 --- /dev/null +++ b/site/public/v1/games/namco-museum-vol-4/index.json @@ -0,0 +1,27 @@ +{ + "id": 97934, + "slug": "namco-museum-vol-4", + "name": "Namco Museum Vol. 4", + "release_date": "1996-11-08", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Namco" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2377059" + ], + "created_at": "2026-07-10T10:10:27.875495", + "updated_at": "2026-07-10T10:10:27.875495", + "url": "/v1/games/namco-museum-vol-4" +} diff --git a/site/public/v1/games/namco-museum-vol-5/index.json b/site/public/v1/games/namco-museum-vol-5/index.json new file mode 100644 index 000000000000..d8fddc85fbe5 --- /dev/null +++ b/site/public/v1/games/namco-museum-vol-5/index.json @@ -0,0 +1,27 @@ +{ + "id": 97935, + "slug": "namco-museum-vol-5", + "name": "Namco Museum Vol. 5", + "release_date": "1997-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Namco" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q13873811" + ], + "created_at": "2026-07-10T10:10:27.876415", + "updated_at": "2026-07-10T10:10:27.876415", + "url": "/v1/games/namco-museum-vol-5" +} diff --git a/site/public/v1/games/namco-museum/index.json b/site/public/v1/games/namco-museum/index.json new file mode 100644 index 000000000000..ca19e66b253b --- /dev/null +++ b/site/public/v1/games/namco-museum/index.json @@ -0,0 +1,32 @@ +{ + "id": 97936, + "slug": "namco-museum", + "name": "Namco Museum", + "release_date": "2005-02-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation Portable" + ], + "genres": [], + "stores": [], + "developers": [ + "Tose Co.", + "Gotch Technology Corp." + ], + "publishers": [ + "Namco" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127419823" + ], + "created_at": "2026-07-10T10:10:27.876415", + "updated_at": "2026-07-10T10:10:27.876415", + "url": "/v1/games/namco-museum" +} diff --git a/site/public/v1/games/nanasy/index.json b/site/public/v1/games/nanasy/index.json new file mode 100644 index 000000000000..d6c3e74aefa0 --- /dev/null +++ b/site/public/v1/games/nanasy/index.json @@ -0,0 +1,25 @@ +{ + "id": 97964, + "slug": "nanasy", + "name": "NANASY", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11323924" + ], + "created_at": "2026-07-10T10:10:27.884486", + "updated_at": "2026-07-10T10:10:27.884486", + "url": "/v1/games/nanasy" +} diff --git a/site/public/v1/games/nape-retroverse-collection/index.json b/site/public/v1/games/nape-retroverse-collection/index.json new file mode 100644 index 000000000000..8bfbd75d88fb --- /dev/null +++ b/site/public/v1/games/nape-retroverse-collection/index.json @@ -0,0 +1,31 @@ +{ + "id": 98071, + "slug": "nape-retroverse-collection", + "name": "Nape Retroverse Collection", + "release_date": "2022-02-10", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 5" + ], + "genres": [], + "stores": [], + "developers": [ + "Nape Games" + ], + "publishers": [ + "JanduSoft" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110939018" + ], + "created_at": "2026-07-10T10:10:27.910475", + "updated_at": "2026-07-10T10:10:27.910475", + "url": "/v1/games/nape-retroverse-collection" +} diff --git a/site/public/v1/games/naruto-shippuden-ultimate-ninja-storm-4-road-to-boruto/index.json b/site/public/v1/games/naruto-shippuden-ultimate-ninja-storm-4-road-to-boruto/index.json new file mode 100644 index 000000000000..4eeb111db674 --- /dev/null +++ b/site/public/v1/games/naruto-shippuden-ultimate-ninja-storm-4-road-to-boruto/index.json @@ -0,0 +1,25 @@ +{ + "id": 98175, + "slug": "naruto-shippuden-ultimate-ninja-storm-4-road-to-boruto", + "name": "Naruto Shippuden: Ultimate Ninja Storm 4 - Road to Boruto", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140472010" + ], + "created_at": "2026-07-10T10:10:27.937556", + "updated_at": "2026-07-10T10:10:27.937556", + "url": "/v1/games/naruto-shippuden-ultimate-ninja-storm-4-road-to-boruto" +} diff --git a/site/public/v1/games/national-geographic-of-azeroth/index.json b/site/public/v1/games/national-geographic-of-azeroth/index.json new file mode 100644 index 000000000000..8949329ad1af --- /dev/null +++ b/site/public/v1/games/national-geographic-of-azeroth/index.json @@ -0,0 +1,25 @@ +{ + "id": 98263, + "slug": "national-geographic-of-azeroth", + "name": "National Geographic of Azeroth", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q15900307" + ], + "created_at": "2026-07-10T10:10:27.961091", + "updated_at": "2026-07-10T10:10:27.961091", + "url": "/v1/games/national-geographic-of-azeroth" +} diff --git a/site/public/v1/games/natural-disaster-survival/index.json b/site/public/v1/games/natural-disaster-survival/index.json new file mode 100644 index 000000000000..315baba44a18 --- /dev/null +++ b/site/public/v1/games/natural-disaster-survival/index.json @@ -0,0 +1,27 @@ +{ + "id": 98327, + "slug": "natural-disaster-survival", + "name": "Natural Disaster Survival", + "release_date": "2008-03-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "survival game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118281148" + ], + "created_at": "2026-07-10T10:10:27.979990", + "updated_at": "2026-07-10T10:10:27.979990", + "url": "/v1/games/natural-disaster-survival" +} diff --git a/site/public/v1/games/natural-selection/index.json b/site/public/v1/games/natural-selection/index.json new file mode 100644 index 000000000000..bf27e0b6f4d7 --- /dev/null +++ b/site/public/v1/games/natural-selection/index.json @@ -0,0 +1,33 @@ +{ + "id": 98335, + "slug": "natural-selection", + "name": "Natural Selection", + "release_date": "2002-10-31", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "real-time strategy", + "science fiction video game" + ], + "stores": [], + "developers": [ + "Unknown Worlds Entertainment" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1809475" + ], + "created_at": "2026-07-10T10:10:27.981990", + "updated_at": "2026-07-10T10:10:27.981990", + "url": "/v1/games/natural-selection" +} diff --git a/site/public/v1/games/nba-2k21-arcade-edition/index.json b/site/public/v1/games/nba-2k21-arcade-edition/index.json new file mode 100644 index 000000000000..999edd732c34 --- /dev/null +++ b/site/public/v1/games/nba-2k21-arcade-edition/index.json @@ -0,0 +1,36 @@ +{ + "id": 98495, + "slug": "nba-2k21-arcade-edition", + "name": "NBA 2K21 Arcade Edition", + "release_date": "2021-04-02", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "iPadOS", + "tvOS", + "iOS", + "macOS" + ], + "genres": [ + "basketball video game" + ], + "stores": [], + "developers": [ + "Visual Concepts" + ], + "publishers": [ + "2K Sports" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107349537" + ], + "created_at": "2026-07-10T10:10:28.024624", + "updated_at": "2026-07-10T10:10:28.024624", + "url": "/v1/games/nba-2k21-arcade-edition" +} diff --git a/site/public/v1/games/nba-2k22-arcade-edition/index.json b/site/public/v1/games/nba-2k22-arcade-edition/index.json new file mode 100644 index 000000000000..08986b09f713 --- /dev/null +++ b/site/public/v1/games/nba-2k22-arcade-edition/index.json @@ -0,0 +1,34 @@ +{ + "id": 98497, + "slug": "nba-2k22-arcade-edition", + "name": "NBA 2K22 Arcade Edition", + "release_date": "2021-10-19", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "tvOS", + "iPadOS", + "iOS", + "macOS" + ], + "genres": [ + "basketball video game" + ], + "stores": [], + "developers": [], + "publishers": [ + "2K" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108553004" + ], + "created_at": "2026-07-10T10:10:28.024624", + "updated_at": "2026-07-10T10:10:28.024624", + "url": "/v1/games/nba-2k22-arcade-edition" +} diff --git a/site/public/v1/games/nba-2k23-arcade-edition/index.json b/site/public/v1/games/nba-2k23-arcade-edition/index.json new file mode 100644 index 000000000000..1305742c481b --- /dev/null +++ b/site/public/v1/games/nba-2k23-arcade-edition/index.json @@ -0,0 +1,32 @@ +{ + "id": 98499, + "slug": "nba-2k23-arcade-edition", + "name": "NBA 2K23 Arcade Edition", + "release_date": "2022-10-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "iPadOS", + "macOS", + "tvOS", + "iOS" + ], + "genres": [ + "basketball video game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113884475" + ], + "created_at": "2026-07-10T10:10:28.025663", + "updated_at": "2026-07-10T10:10:28.025663", + "url": "/v1/games/nba-2k23-arcade-edition" +} diff --git a/site/public/v1/games/nba-2k24-arcade-edition/index.json b/site/public/v1/games/nba-2k24-arcade-edition/index.json new file mode 100644 index 000000000000..3ad4c388e762 --- /dev/null +++ b/site/public/v1/games/nba-2k24-arcade-edition/index.json @@ -0,0 +1,32 @@ +{ + "id": 98501, + "slug": "nba-2k24-arcade-edition", + "name": "NBA 2K24 Arcade Edition", + "release_date": "2023-10-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "iPadOS", + "tvOS", + "iOS", + "macOS" + ], + "genres": [ + "basketball video game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122945872" + ], + "created_at": "2026-07-10T10:10:28.025663", + "updated_at": "2026-07-10T10:10:28.025663", + "url": "/v1/games/nba-2k24-arcade-edition" +} diff --git a/site/public/v1/games/nba-2k25-arcade-edition/index.json b/site/public/v1/games/nba-2k25-arcade-edition/index.json new file mode 100644 index 000000000000..776fc5330905 --- /dev/null +++ b/site/public/v1/games/nba-2k25-arcade-edition/index.json @@ -0,0 +1,27 @@ +{ + "id": 98503, + "slug": "nba-2k25-arcade-edition", + "name": "NBA 2K25 Arcade Edition", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "basketball video game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135553238" + ], + "created_at": "2026-07-10T10:10:28.026662", + "updated_at": "2026-07-10T10:10:28.026662", + "url": "/v1/games/nba-2k25-arcade-edition" +} diff --git a/site/public/v1/games/nba-action-q3334218/index.json b/site/public/v1/games/nba-action-q3334218/index.json new file mode 100644 index 000000000000..5bc406f1da02 --- /dev/null +++ b/site/public/v1/games/nba-action-q3334218/index.json @@ -0,0 +1,29 @@ +{ + "id": 98516, + "slug": "nba-action-q3334218", + "name": "NBA Action", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "basketball video game" + ], + "stores": [], + "developers": [], + "publishers": [ + "Sega" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3334218" + ], + "created_at": "2026-07-10T10:10:28.029666", + "updated_at": "2026-07-10T10:10:28.029666", + "url": "/v1/games/nba-action-q3334218" +} diff --git a/site/public/v1/games/ncaa-gamebreaker-2002/index.json b/site/public/v1/games/ncaa-gamebreaker-2002/index.json new file mode 100644 index 000000000000..adc113736e5b --- /dev/null +++ b/site/public/v1/games/ncaa-gamebreaker-2002/index.json @@ -0,0 +1,25 @@ +{ + "id": 98642, + "slug": "ncaa-gamebreaker-2002", + "name": "NCAA GameBreaker 2002", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q96632154" + ], + "created_at": "2026-07-10T10:10:28.059258", + "updated_at": "2026-07-10T10:10:28.059258", + "url": "/v1/games/ncaa-gamebreaker-2002" +} diff --git a/site/public/v1/games/necessary-force/index.json b/site/public/v1/games/necessary-force/index.json new file mode 100644 index 000000000000..1681761b478c --- /dev/null +++ b/site/public/v1/games/necessary-force/index.json @@ -0,0 +1,30 @@ +{ + "id": 98718, + "slug": "necessary-force", + "name": "Necessary Force", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 3", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Midway Studios – Newcastle" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110817118" + ], + "created_at": "2026-07-10T10:10:28.086375", + "updated_at": "2026-07-10T10:10:28.086375", + "url": "/v1/games/necessary-force" +} diff --git a/site/public/v1/games/need-for-speed-most-wanted-complete-dlc-bundle/index.json b/site/public/v1/games/need-for-speed-most-wanted-complete-dlc-bundle/index.json new file mode 100644 index 000000000000..3c0caa26308f --- /dev/null +++ b/site/public/v1/games/need-for-speed-most-wanted-complete-dlc-bundle/index.json @@ -0,0 +1,35 @@ +{ + "id": 98865, + "slug": "need-for-speed-most-wanted-complete-dlc-bundle", + "name": "Need for Speed Most Wanted Complete DLC Bundle", + "release_date": "2013-05-21", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 3", + "Microsoft Windows" + ], + "genres": [ + "action-adventure game", + "racing video game" + ], + "stores": [], + "developers": [ + "Criterion Games" + ], + "publishers": [ + "Electronic Arts" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q104786239" + ], + "created_at": "2026-07-10T10:10:28.130318", + "updated_at": "2026-07-10T10:10:28.130318", + "url": "/v1/games/need-for-speed-most-wanted-complete-dlc-bundle" +} diff --git a/site/public/v1/games/need-for-speed-most-wanted-terminal-velocity/index.json b/site/public/v1/games/need-for-speed-most-wanted-terminal-velocity/index.json new file mode 100644 index 000000000000..c49d40d2275d --- /dev/null +++ b/site/public/v1/games/need-for-speed-most-wanted-terminal-velocity/index.json @@ -0,0 +1,36 @@ +{ + "id": 98867, + "slug": "need-for-speed-most-wanted-terminal-velocity", + "name": "Need for Speed: Most Wanted - Terminal Velocity", + "release_date": "2013-02-26", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Wii U", + "PlayStation 3", + "Microsoft Windows" + ], + "genres": [ + "action-adventure game", + "racing video game" + ], + "stores": [], + "developers": [ + "Criterion Games" + ], + "publishers": [ + "Electronic Arts" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q104786725" + ], + "created_at": "2026-07-10T10:10:28.131364", + "updated_at": "2026-07-10T10:10:28.131364", + "url": "/v1/games/need-for-speed-most-wanted-terminal-velocity" +} diff --git a/site/public/v1/games/need-for-speed-most-wanted-ultimate-speed-pack/index.json b/site/public/v1/games/need-for-speed-most-wanted-ultimate-speed-pack/index.json new file mode 100644 index 000000000000..ebfc74163003 --- /dev/null +++ b/site/public/v1/games/need-for-speed-most-wanted-ultimate-speed-pack/index.json @@ -0,0 +1,36 @@ +{ + "id": 98868, + "slug": "need-for-speed-most-wanted-ultimate-speed-pack", + "name": "Need for Speed: Most Wanted - Ultimate Speed Pack", + "release_date": "2012-12-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Wii U", + "PlayStation 3", + "Microsoft Windows" + ], + "genres": [ + "action-adventure game", + "racing video game" + ], + "stores": [], + "developers": [ + "Criterion Games" + ], + "publishers": [ + "Electronic Arts" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q104786278" + ], + "created_at": "2026-07-10T10:10:28.131364", + "updated_at": "2026-07-10T10:10:28.131364", + "url": "/v1/games/need-for-speed-most-wanted-ultimate-speed-pack" +} diff --git a/site/public/v1/games/neighbours-from-hell-compilation/index.json b/site/public/v1/games/neighbours-from-hell-compilation/index.json new file mode 100644 index 000000000000..c652b79ca724 --- /dev/null +++ b/site/public/v1/games/neighbours-from-hell-compilation/index.json @@ -0,0 +1,27 @@ +{ + "id": 98944, + "slug": "neighbours-from-hell-compilation", + "name": "Neighbours from Hell Compilation", + "release_date": "2004-02-20", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q90004347" + ], + "created_at": "2026-07-10T10:10:28.151061", + "updated_at": "2026-07-10T10:10:28.151061", + "url": "/v1/games/neighbours-from-hell-compilation" +} diff --git a/site/public/v1/games/nejicomisimulator-tma01-uncensored-unlock-all-settings-pack/index.json b/site/public/v1/games/nejicomisimulator-tma01-uncensored-unlock-all-settings-pack/index.json new file mode 100644 index 000000000000..3087ba7a2c95 --- /dev/null +++ b/site/public/v1/games/nejicomisimulator-tma01-uncensored-unlock-all-settings-pack/index.json @@ -0,0 +1,34 @@ +{ + "id": 98953, + "slug": "nejicomisimulator-tma01-uncensored-unlock-all-settings-pack", + "name": "NejicomiSimulator TMA01 -Uncensored & Unlock all settings Pack-", + "release_date": "2023-04-27", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "casual game", + "eroge" + ], + "stores": [], + "developers": [ + "Yabukaratang" + ], + "publishers": [ + "Yabukaratang" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q129587750" + ], + "created_at": "2026-07-10T10:10:28.153099", + "updated_at": "2026-07-10T10:10:28.153099", + "url": "/v1/games/nejicomisimulator-tma01-uncensored-unlock-all-settings-pack" +} diff --git a/site/public/v1/games/nejicomisimulator-tma02-dignity-destruction-pack/index.json b/site/public/v1/games/nejicomisimulator-tma02-dignity-destruction-pack/index.json new file mode 100644 index 000000000000..2b78998ffe77 --- /dev/null +++ b/site/public/v1/games/nejicomisimulator-tma02-dignity-destruction-pack/index.json @@ -0,0 +1,35 @@ +{ + "id": 98954, + "slug": "nejicomisimulator-tma02-dignity-destruction-pack", + "name": "NejicomiSimulator TMA02 Dignity Destruction Pack", + "release_date": "2024-08-25", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "casual game", + "eroge" + ], + "stores": [], + "developers": [ + "Yabukaratang" + ], + "publishers": [ + "LewdLoco", + "Yabukaratang" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q129544471" + ], + "created_at": "2026-07-10T10:10:28.153099", + "updated_at": "2026-07-10T10:10:28.153099", + "url": "/v1/games/nejicomisimulator-tma02-dignity-destruction-pack" +} diff --git a/site/public/v1/games/nejicomisimulator-tma02-uncensored-unlock-all-settings-pack/index.json b/site/public/v1/games/nejicomisimulator-tma02-uncensored-unlock-all-settings-pack/index.json new file mode 100644 index 000000000000..007724387088 --- /dev/null +++ b/site/public/v1/games/nejicomisimulator-tma02-uncensored-unlock-all-settings-pack/index.json @@ -0,0 +1,35 @@ +{ + "id": 98955, + "slug": "nejicomisimulator-tma02-uncensored-unlock-all-settings-pack", + "name": "NejicomiSimulator TMA02 -Uncensored & Unlock all settings Pack-", + "release_date": "2024-05-23", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "casual game", + "eroge" + ], + "stores": [], + "developers": [ + "Yabukaratang" + ], + "publishers": [ + "LewdLoco", + "Yabukaratang" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q129459492" + ], + "created_at": "2026-07-10T10:10:28.154061", + "updated_at": "2026-07-10T10:10:28.154061", + "url": "/v1/games/nejicomisimulator-tma02-uncensored-unlock-all-settings-pack" +} diff --git a/site/public/v1/games/nejicomisimulator-vol-1-demo-gapping-amputee-sex-slave-petrify-time-stop/index.json b/site/public/v1/games/nejicomisimulator-vol-1-demo-gapping-amputee-sex-slave-petrify-time-stop/index.json new file mode 100644 index 000000000000..6abe2ae78318 --- /dev/null +++ b/site/public/v1/games/nejicomisimulator-vol-1-demo-gapping-amputee-sex-slave-petrify-time-stop/index.json @@ -0,0 +1,34 @@ +{ + "id": 98956, + "slug": "nejicomisimulator-vol-1-demo-gapping-amputee-sex-slave-petrify-time-stop", + "name": "NejicomiSimulator Vol.1 Demo (Gapping, Amputee sex slave, Petrify, Time Stop)", + "release_date": "2021-03-25", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "casual game", + "eroge" + ], + "stores": [], + "developers": [ + "Yabukaratang" + ], + "publishers": [ + "Yabukaratang" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130233227" + ], + "created_at": "2026-07-10T10:10:28.154061", + "updated_at": "2026-07-10T10:10:28.154061", + "url": "/v1/games/nejicomisimulator-vol-1-demo-gapping-amputee-sex-slave-petrify-time-stop" +} diff --git a/site/public/v1/games/nejicomisimulator-vol-1-uncensored-pack/index.json b/site/public/v1/games/nejicomisimulator-vol-1-uncensored-pack/index.json new file mode 100644 index 000000000000..ea7a5053a5da --- /dev/null +++ b/site/public/v1/games/nejicomisimulator-vol-1-uncensored-pack/index.json @@ -0,0 +1,34 @@ +{ + "id": 98958, + "slug": "nejicomisimulator-vol-1-uncensored-pack", + "name": "NejicomiSimulator Vol.1 -Uncensored Pack-", + "release_date": "2021-03-19", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "casual game", + "eroge" + ], + "stores": [], + "developers": [ + "Yabukaratang" + ], + "publishers": [ + "Yabukaratang" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130212278" + ], + "created_at": "2026-07-10T10:10:28.154061", + "updated_at": "2026-07-10T10:10:28.154061", + "url": "/v1/games/nejicomisimulator-vol-1-uncensored-pack" +} diff --git a/site/public/v1/games/nejicomisimulator-vol-2-demo/index.json b/site/public/v1/games/nejicomisimulator-vol-2-demo/index.json new file mode 100644 index 000000000000..ce36677f329b --- /dev/null +++ b/site/public/v1/games/nejicomisimulator-vol-2-demo/index.json @@ -0,0 +1,34 @@ +{ + "id": 98959, + "slug": "nejicomisimulator-vol-2-demo", + "name": "NejicomiSimulator Vol.2 Demo", + "release_date": "2021-07-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "casual game", + "eroge" + ], + "stores": [], + "developers": [ + "Yabukaratang" + ], + "publishers": [ + "Yabukaratang" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130233215" + ], + "created_at": "2026-07-10T10:10:28.154061", + "updated_at": "2026-07-10T10:10:28.154061", + "url": "/v1/games/nejicomisimulator-vol-2-demo" +} diff --git a/site/public/v1/games/nejicomisimulator-vol-2-unlock-all-settings-pack/index.json b/site/public/v1/games/nejicomisimulator-vol-2-unlock-all-settings-pack/index.json new file mode 100644 index 000000000000..537bb5c509d9 --- /dev/null +++ b/site/public/v1/games/nejicomisimulator-vol-2-unlock-all-settings-pack/index.json @@ -0,0 +1,34 @@ +{ + "id": 98961, + "slug": "nejicomisimulator-vol-2-unlock-all-settings-pack", + "name": "NejicomiSimulator Vol.2 -Unlock All Settings Pack-", + "release_date": "2021-06-19", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "casual game", + "eroge" + ], + "stores": [], + "developers": [ + "Yabukaratang" + ], + "publishers": [ + "Yabukaratang" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130320137" + ], + "created_at": "2026-07-10T10:10:28.155057", + "updated_at": "2026-07-10T10:10:28.155057", + "url": "/v1/games/nejicomisimulator-vol-2-unlock-all-settings-pack" +} diff --git a/site/public/v1/games/nejicomisimulator-vol-4-demo/index.json b/site/public/v1/games/nejicomisimulator-vol-4-demo/index.json new file mode 100644 index 000000000000..c89e105efcd0 --- /dev/null +++ b/site/public/v1/games/nejicomisimulator-vol-4-demo/index.json @@ -0,0 +1,34 @@ +{ + "id": 98962, + "slug": "nejicomisimulator-vol-4-demo", + "name": "NejicomiSimulator Vol.4 Demo", + "release_date": "2022-03-19", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "casual game", + "eroge" + ], + "stores": [], + "developers": [ + "Yabukaratang" + ], + "publishers": [ + "Yabukaratang" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130233207" + ], + "created_at": "2026-07-10T10:10:28.155057", + "updated_at": "2026-07-10T10:10:28.155057", + "url": "/v1/games/nejicomisimulator-vol-4-demo" +} diff --git a/site/public/v1/games/nejicomisimulator-vol-4-unlock-all-settings-pack/index.json b/site/public/v1/games/nejicomisimulator-vol-4-unlock-all-settings-pack/index.json new file mode 100644 index 000000000000..4a1ae28e83da --- /dev/null +++ b/site/public/v1/games/nejicomisimulator-vol-4-unlock-all-settings-pack/index.json @@ -0,0 +1,34 @@ +{ + "id": 98963, + "slug": "nejicomisimulator-vol-4-unlock-all-settings-pack", + "name": "NejicomiSimulator Vol.4 -Unlock All Settings Pack-", + "release_date": "2022-04-14", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "eroge", + "casual game" + ], + "stores": [], + "developers": [ + "Yabukaratang" + ], + "publishers": [ + "Yabukaratang" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q129411448" + ], + "created_at": "2026-07-10T10:10:28.155057", + "updated_at": "2026-07-10T10:10:28.155057", + "url": "/v1/games/nejicomisimulator-vol-4-unlock-all-settings-pack" +} diff --git a/site/public/v1/games/nejicomisimulator-vol-5-uncensored-unlock-all-settings-pack/index.json b/site/public/v1/games/nejicomisimulator-vol-5-uncensored-unlock-all-settings-pack/index.json new file mode 100644 index 000000000000..6e5a4c104ffe --- /dev/null +++ b/site/public/v1/games/nejicomisimulator-vol-5-uncensored-unlock-all-settings-pack/index.json @@ -0,0 +1,34 @@ +{ + "id": 98966, + "slug": "nejicomisimulator-vol-5-uncensored-unlock-all-settings-pack", + "name": "NejicomiSimulator Vol.5 -Uncensored & Unlock all settings Pack-", + "release_date": "2023-05-25", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "eroge", + "casual game" + ], + "stores": [], + "developers": [ + "Yabukaratang" + ], + "publishers": [ + "Yabukaratang" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q129382942" + ], + "created_at": "2026-07-10T10:10:28.156079", + "updated_at": "2026-07-10T10:10:28.156079", + "url": "/v1/games/nejicomisimulator-vol-5-uncensored-unlock-all-settings-pack" +} diff --git a/site/public/v1/games/neko-atsume-kitty-collector/index.json b/site/public/v1/games/neko-atsume-kitty-collector/index.json new file mode 100644 index 000000000000..0b8d008bdb80 --- /dev/null +++ b/site/public/v1/games/neko-atsume-kitty-collector/index.json @@ -0,0 +1,32 @@ +{ + "id": 98976, + "slug": "neko-atsume-kitty-collector", + "name": "Neko Atsume: Kitty Collector+", + "release_date": "2021-07-23", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "iPadOS", + "iOS" + ], + "genres": [], + "stores": [], + "developers": [ + "Hit-Point" + ], + "publishers": [ + "Hit-Point" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107643030" + ], + "created_at": "2026-07-10T10:10:28.158088", + "updated_at": "2026-07-10T10:10:28.158088", + "url": "/v1/games/neko-atsume-kitty-collector" +} diff --git a/site/public/v1/games/nekograms-q122704230/index.json b/site/public/v1/games/nekograms-q122704230/index.json new file mode 100644 index 000000000000..5614ecb1fa95 --- /dev/null +++ b/site/public/v1/games/nekograms-q122704230/index.json @@ -0,0 +1,30 @@ +{ + "id": 99035, + "slug": "nekograms-q122704230", + "name": "Nekograms+", + "release_date": "2023-08-11", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "iPadOS", + "iOS" + ], + "genres": [], + "stores": [], + "developers": [ + "Hungry Sky" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122704230" + ], + "created_at": "2026-07-10T10:10:28.173995", + "updated_at": "2026-07-10T10:10:28.173995", + "url": "/v1/games/nekograms-q122704230" +} diff --git a/site/public/v1/games/nekopara-ova-set/index.json b/site/public/v1/games/nekopara-ova-set/index.json new file mode 100644 index 000000000000..2970c6c3b67c --- /dev/null +++ b/site/public/v1/games/nekopara-ova-set/index.json @@ -0,0 +1,25 @@ +{ + "id": 99058, + "slug": "nekopara-ova-set", + "name": "NEKOPARA OVA Set", + "release_date": "2018-01-08", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q66696311" + ], + "created_at": "2026-07-10T10:10:28.179089", + "updated_at": "2026-07-10T10:10:28.179089", + "url": "/v1/games/nekopara-ova-set" +} diff --git a/site/public/v1/games/nekopara-vol-1-18-dlc/index.json b/site/public/v1/games/nekopara-vol-1-18-dlc/index.json new file mode 100644 index 000000000000..30ddfb31ee42 --- /dev/null +++ b/site/public/v1/games/nekopara-vol-1-18-dlc/index.json @@ -0,0 +1,25 @@ +{ + "id": 99061, + "slug": "nekopara-vol-1-18-dlc", + "name": "Nekopara Vol. 1 18+ DLC", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q66605745" + ], + "created_at": "2026-07-10T10:10:28.180063", + "updated_at": "2026-07-10T10:10:28.180063", + "url": "/v1/games/nekopara-vol-1-18-dlc" +} diff --git a/site/public/v1/games/nekopara-vol-2-18-dlc/index.json b/site/public/v1/games/nekopara-vol-2-18-dlc/index.json new file mode 100644 index 000000000000..7f229ff6c08f --- /dev/null +++ b/site/public/v1/games/nekopara-vol-2-18-dlc/index.json @@ -0,0 +1,25 @@ +{ + "id": 99063, + "slug": "nekopara-vol-2-18-dlc", + "name": "Nekopara Vol. 2 18+ DLC", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q66605758" + ], + "created_at": "2026-07-10T10:10:28.181067", + "updated_at": "2026-07-10T10:10:28.181067", + "url": "/v1/games/nekopara-vol-2-18-dlc" +} diff --git a/site/public/v1/games/nekopara-vol-3-18-dlc/index.json b/site/public/v1/games/nekopara-vol-3-18-dlc/index.json new file mode 100644 index 000000000000..3242bed40dde --- /dev/null +++ b/site/public/v1/games/nekopara-vol-3-18-dlc/index.json @@ -0,0 +1,25 @@ +{ + "id": 99065, + "slug": "nekopara-vol-3-18-dlc", + "name": "NEKOPARA Vol. 3 18+ DLC", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q66605769" + ], + "created_at": "2026-07-10T10:10:28.181067", + "updated_at": "2026-07-10T10:10:28.181067", + "url": "/v1/games/nekopara-vol-3-18-dlc" +} diff --git a/site/public/v1/games/neo-geo-cd-special/index.json b/site/public/v1/games/neo-geo-cd-special/index.json new file mode 100644 index 000000000000..11aa7614244d --- /dev/null +++ b/site/public/v1/games/neo-geo-cd-special/index.json @@ -0,0 +1,27 @@ +{ + "id": 99141, + "slug": "neo-geo-cd-special", + "name": "Neo-Geo CD Special", + "release_date": "1995-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Neo Geo CD" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17635669" + ], + "created_at": "2026-07-10T10:10:28.202051", + "updated_at": "2026-07-10T10:10:28.202051", + "url": "/v1/games/neo-geo-cd-special" +} diff --git a/site/public/v1/games/neo-geo-online-collection/index.json b/site/public/v1/games/neo-geo-online-collection/index.json new file mode 100644 index 000000000000..5a9cdc41bf76 --- /dev/null +++ b/site/public/v1/games/neo-geo-online-collection/index.json @@ -0,0 +1,27 @@ +{ + "id": 99145, + "slug": "neo-geo-online-collection", + "name": "Neo Geo Online Collection", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "fighting game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6991875" + ], + "created_at": "2026-07-10T10:10:28.202051", + "updated_at": "2026-07-10T10:10:28.202051", + "url": "/v1/games/neo-geo-online-collection" +} diff --git a/site/public/v1/games/neo-party/index.json b/site/public/v1/games/neo-party/index.json new file mode 100644 index 000000000000..ff24d537c34e --- /dev/null +++ b/site/public/v1/games/neo-party/index.json @@ -0,0 +1,25 @@ +{ + "id": 99153, + "slug": "neo-party", + "name": "Neo Party", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131315792" + ], + "created_at": "2026-07-10T10:10:28.204997", + "updated_at": "2026-07-10T10:10:28.204997", + "url": "/v1/games/neo-party" +} diff --git a/site/public/v1/games/neopets-metaverse/index.json b/site/public/v1/games/neopets-metaverse/index.json new file mode 100644 index 000000000000..9df5f9c64d2d --- /dev/null +++ b/site/public/v1/games/neopets-metaverse/index.json @@ -0,0 +1,25 @@ +{ + "id": 99396, + "slug": "neopets-metaverse", + "name": "Neopets Metaverse", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q114846353" + ], + "created_at": "2026-07-10T10:10:28.323374", + "updated_at": "2026-07-10T10:10:28.323374", + "url": "/v1/games/neopets-metaverse" +} diff --git a/site/public/v1/games/nes-remix/index.json b/site/public/v1/games/nes-remix/index.json new file mode 100644 index 000000000000..56414726ccea --- /dev/null +++ b/site/public/v1/games/nes-remix/index.json @@ -0,0 +1,33 @@ +{ + "id": 99481, + "slug": "nes-remix", + "name": "NES Remix", + "release_date": "2013-12-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Wii U" + ], + "genres": [ + "action game" + ], + "stores": [], + "developers": [ + "Nintendo Entertainment Analysis & Development" + ], + "publishers": [ + "Nintendo" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q15381821" + ], + "created_at": "2026-07-10T10:10:28.347475", + "updated_at": "2026-07-10T10:10:28.347475", + "url": "/v1/games/nes-remix" +} diff --git a/site/public/v1/games/neurocracy/index.json b/site/public/v1/games/neurocracy/index.json new file mode 100644 index 000000000000..82bef08f59c6 --- /dev/null +++ b/site/public/v1/games/neurocracy/index.json @@ -0,0 +1,27 @@ +{ + "id": 99575, + "slug": "neurocracy", + "name": "Neurocracy", + "release_date": "2021-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "web browser" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108803722" + ], + "created_at": "2026-07-10T10:10:28.372057", + "updated_at": "2026-07-10T10:10:28.372057", + "url": "/v1/games/neurocracy" +} diff --git a/site/public/v1/games/never-alone-arctic-collection/index.json b/site/public/v1/games/never-alone-arctic-collection/index.json new file mode 100644 index 000000000000..1de0521f62ae --- /dev/null +++ b/site/public/v1/games/never-alone-arctic-collection/index.json @@ -0,0 +1,25 @@ +{ + "id": 99610, + "slug": "never-alone-arctic-collection", + "name": "Never Alone Arctic Collection", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q90005743" + ], + "created_at": "2026-07-10T10:10:28.382116", + "updated_at": "2026-07-10T10:10:28.382116", + "url": "/v1/games/never-alone-arctic-collection" +} diff --git a/site/public/v1/games/never-alone-foxtales/index.json b/site/public/v1/games/never-alone-foxtales/index.json new file mode 100644 index 000000000000..58f143374a8b --- /dev/null +++ b/site/public/v1/games/never-alone-foxtales/index.json @@ -0,0 +1,25 @@ +{ + "id": 99611, + "slug": "never-alone-foxtales", + "name": "Never Alone: Foxtales", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q90005714" + ], + "created_at": "2026-07-10T10:10:28.382116", + "updated_at": "2026-07-10T10:10:28.382116", + "url": "/v1/games/never-alone-foxtales" +} diff --git a/site/public/v1/games/neverwinter-nights-2-mask-of-the-betrayer/index.json b/site/public/v1/games/neverwinter-nights-2-mask-of-the-betrayer/index.json new file mode 100644 index 000000000000..1cf292b80e38 --- /dev/null +++ b/site/public/v1/games/neverwinter-nights-2-mask-of-the-betrayer/index.json @@ -0,0 +1,33 @@ +{ + "id": 99684, + "slug": "neverwinter-nights-2-mask-of-the-betrayer", + "name": "Neverwinter Nights 2: Mask of the Betrayer", + "release_date": "2007-09-27", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "role-playing video game" + ], + "stores": [], + "developers": [ + "Obsidian Entertainment" + ], + "publishers": [ + "Atari" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2278874" + ], + "created_at": "2026-07-10T10:10:28.401104", + "updated_at": "2026-07-10T10:10:28.401104", + "url": "/v1/games/neverwinter-nights-2-mask-of-the-betrayer" +} diff --git a/site/public/v1/games/neverwinter-nights-2-mysteries-of-westgate/index.json b/site/public/v1/games/neverwinter-nights-2-mysteries-of-westgate/index.json new file mode 100644 index 000000000000..2a496324510f --- /dev/null +++ b/site/public/v1/games/neverwinter-nights-2-mysteries-of-westgate/index.json @@ -0,0 +1,33 @@ +{ + "id": 99685, + "slug": "neverwinter-nights-2-mysteries-of-westgate", + "name": "Neverwinter Nights 2: Mysteries of Westgate", + "release_date": "2009-04-29", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "role-playing video game" + ], + "stores": [], + "developers": [ + "Ossian Studios" + ], + "publishers": [ + "Atari" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4045286" + ], + "created_at": "2026-07-10T10:10:28.401104", + "updated_at": "2026-07-10T10:10:28.401104", + "url": "/v1/games/neverwinter-nights-2-mysteries-of-westgate" +} diff --git a/site/public/v1/games/neverwinter-nights-2-storm-of-zehir/index.json b/site/public/v1/games/neverwinter-nights-2-storm-of-zehir/index.json new file mode 100644 index 000000000000..14469039c47c --- /dev/null +++ b/site/public/v1/games/neverwinter-nights-2-storm-of-zehir/index.json @@ -0,0 +1,33 @@ +{ + "id": 99686, + "slug": "neverwinter-nights-2-storm-of-zehir", + "name": "Neverwinter Nights 2: Storm of Zehir", + "release_date": "2008-11-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "role-playing video game" + ], + "stores": [], + "developers": [ + "Obsidian Entertainment" + ], + "publishers": [ + "Atari" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2465393" + ], + "created_at": "2026-07-10T10:10:28.402117", + "updated_at": "2026-07-10T10:10:28.402117", + "url": "/v1/games/neverwinter-nights-2-storm-of-zehir" +} diff --git a/site/public/v1/games/neverwinter-nights-darkness-over-daggerford/index.json b/site/public/v1/games/neverwinter-nights-darkness-over-daggerford/index.json new file mode 100644 index 000000000000..00f739f1b91c --- /dev/null +++ b/site/public/v1/games/neverwinter-nights-darkness-over-daggerford/index.json @@ -0,0 +1,32 @@ +{ + "id": 99688, + "slug": "neverwinter-nights-darkness-over-daggerford", + "name": "Neverwinter Nights: Darkness over Daggerford", + "release_date": "2006-08-16", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "role-playing video game" + ], + "stores": [], + "developers": [ + "Ossian Studios" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4045283" + ], + "created_at": "2026-07-10T10:10:28.402117", + "updated_at": "2026-07-10T10:10:28.402117", + "url": "/v1/games/neverwinter-nights-darkness-over-daggerford" +} diff --git a/site/public/v1/games/neverwinter-nights-hordes-of-the-underdark/index.json b/site/public/v1/games/neverwinter-nights-hordes-of-the-underdark/index.json new file mode 100644 index 000000000000..10ab29c6480b --- /dev/null +++ b/site/public/v1/games/neverwinter-nights-hordes-of-the-underdark/index.json @@ -0,0 +1,32 @@ +{ + "id": 99690, + "slug": "neverwinter-nights-hordes-of-the-underdark", + "name": "Neverwinter Nights: Hordes of the Underdark", + "release_date": "2003-12-02", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "role-playing video game" + ], + "stores": [], + "developers": [ + "BioWare" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q936423" + ], + "created_at": "2026-07-10T10:10:28.402117", + "updated_at": "2026-07-10T10:10:28.402117", + "url": "/v1/games/neverwinter-nights-hordes-of-the-underdark" +} diff --git a/site/public/v1/games/neverwinter-nights-infinite-dungeons/index.json b/site/public/v1/games/neverwinter-nights-infinite-dungeons/index.json new file mode 100644 index 000000000000..5424e6772bcc --- /dev/null +++ b/site/public/v1/games/neverwinter-nights-infinite-dungeons/index.json @@ -0,0 +1,27 @@ +{ + "id": 99691, + "slug": "neverwinter-nights-infinite-dungeons", + "name": "Neverwinter Nights: Infinite Dungeons", + "release_date": "2006-05-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7004488" + ], + "created_at": "2026-07-10T10:10:28.403186", + "updated_at": "2026-07-10T10:10:28.403186", + "url": "/v1/games/neverwinter-nights-infinite-dungeons" +} diff --git a/site/public/v1/games/neverwinter-nights-kingmaker/index.json b/site/public/v1/games/neverwinter-nights-kingmaker/index.json new file mode 100644 index 000000000000..500a94f2d979 --- /dev/null +++ b/site/public/v1/games/neverwinter-nights-kingmaker/index.json @@ -0,0 +1,33 @@ +{ + "id": 99692, + "slug": "neverwinter-nights-kingmaker", + "name": "Neverwinter Nights: Kingmaker", + "release_date": "2005-10-02", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "role-playing video game" + ], + "stores": [], + "developers": [ + "BioWare" + ], + "publishers": [ + "Atari" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7004490" + ], + "created_at": "2026-07-10T10:10:28.403186", + "updated_at": "2026-07-10T10:10:28.403186", + "url": "/v1/games/neverwinter-nights-kingmaker" +} diff --git a/site/public/v1/games/neverwinter-nights-pirates-of-the-sword-coast/index.json b/site/public/v1/games/neverwinter-nights-pirates-of-the-sword-coast/index.json new file mode 100644 index 000000000000..e6ae903de92c --- /dev/null +++ b/site/public/v1/games/neverwinter-nights-pirates-of-the-sword-coast/index.json @@ -0,0 +1,33 @@ +{ + "id": 99693, + "slug": "neverwinter-nights-pirates-of-the-sword-coast", + "name": "Neverwinter Nights: Pirates of the Sword Coast", + "release_date": "2005-09-20", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "role-playing video game" + ], + "stores": [], + "developers": [ + "BioWare" + ], + "publishers": [ + "Atari" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7004492" + ], + "created_at": "2026-07-10T10:10:28.403186", + "updated_at": "2026-07-10T10:10:28.403186", + "url": "/v1/games/neverwinter-nights-pirates-of-the-sword-coast" +} diff --git a/site/public/v1/games/neverwinter-nights-shadows-of-undrentide/index.json b/site/public/v1/games/neverwinter-nights-shadows-of-undrentide/index.json new file mode 100644 index 000000000000..ac83561274bf --- /dev/null +++ b/site/public/v1/games/neverwinter-nights-shadows-of-undrentide/index.json @@ -0,0 +1,32 @@ +{ + "id": 99695, + "slug": "neverwinter-nights-shadows-of-undrentide", + "name": "Neverwinter Nights: Shadows of Undrentide", + "release_date": "2003-06-21", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "role-playing video game" + ], + "stores": [], + "developers": [ + "Floodgate Entertainment" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q305212" + ], + "created_at": "2026-07-10T10:10:28.403186", + "updated_at": "2026-07-10T10:10:28.403186", + "url": "/v1/games/neverwinter-nights-shadows-of-undrentide" +} diff --git a/site/public/v1/games/neverwinter-nights-witch-s-wake/index.json b/site/public/v1/games/neverwinter-nights-witch-s-wake/index.json new file mode 100644 index 000000000000..025b4ddc5a23 --- /dev/null +++ b/site/public/v1/games/neverwinter-nights-witch-s-wake/index.json @@ -0,0 +1,25 @@ +{ + "id": 99696, + "slug": "neverwinter-nights-witch-s-wake", + "name": "Neverwinter Nights: Witch's Wake", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q12071915" + ], + "created_at": "2026-07-10T10:10:28.404195", + "updated_at": "2026-07-10T10:10:28.404195", + "url": "/v1/games/neverwinter-nights-witch-s-wake" +} diff --git a/site/public/v1/games/neverwinter-nights-wyvern-crown-of-cormyr/index.json b/site/public/v1/games/neverwinter-nights-wyvern-crown-of-cormyr/index.json new file mode 100644 index 000000000000..fa9587c0e61f --- /dev/null +++ b/site/public/v1/games/neverwinter-nights-wyvern-crown-of-cormyr/index.json @@ -0,0 +1,30 @@ +{ + "id": 99697, + "slug": "neverwinter-nights-wyvern-crown-of-cormyr", + "name": "Neverwinter Nights: Wyvern Crown of Cormyr", + "release_date": "2006-09-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "role-playing video game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16267372" + ], + "created_at": "2026-07-10T10:10:28.404195", + "updated_at": "2026-07-10T10:10:28.404195", + "url": "/v1/games/neverwinter-nights-wyvern-crown-of-cormyr" +} diff --git a/site/public/v1/games/new-dawn-q57973878/index.json b/site/public/v1/games/new-dawn-q57973878/index.json new file mode 100644 index 000000000000..ef704fdd6cd6 --- /dev/null +++ b/site/public/v1/games/new-dawn-q57973878/index.json @@ -0,0 +1,25 @@ +{ + "id": 99724, + "slug": "new-dawn-q57973878", + "name": "New Dawn", + "release_date": "2015-09-27", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q57973878" + ], + "created_at": "2026-07-10T10:10:28.417792", + "updated_at": "2026-07-10T10:10:28.417792", + "url": "/v1/games/new-dawn-q57973878" +} diff --git a/site/public/v1/games/new-romulus/index.json b/site/public/v1/games/new-romulus/index.json new file mode 100644 index 000000000000..95343c719d27 --- /dev/null +++ b/site/public/v1/games/new-romulus/index.json @@ -0,0 +1,25 @@ +{ + "id": 99776, + "slug": "new-romulus", + "name": "New Romulus", + "release_date": "2012-11-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q57973872" + ], + "created_at": "2026-07-10T10:10:28.430857", + "updated_at": "2026-07-10T10:10:28.430857", + "url": "/v1/games/new-romulus" +} diff --git a/site/public/v1/games/new-super-luigi-u/index.json b/site/public/v1/games/new-super-luigi-u/index.json new file mode 100644 index 000000000000..93aa741e6c22 --- /dev/null +++ b/site/public/v1/games/new-super-luigi-u/index.json @@ -0,0 +1,33 @@ +{ + "id": 99795, + "slug": "new-super-luigi-u", + "name": "New Super Luigi U", + "release_date": "2013-06-19", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Wii U" + ], + "genres": [ + "platformer" + ], + "stores": [], + "developers": [ + "Nintendo Entertainment Analysis & Development" + ], + "publishers": [ + "Nintendo" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16611324" + ], + "created_at": "2026-07-10T10:10:28.435961", + "updated_at": "2026-07-10T10:10:28.435961", + "url": "/v1/games/new-super-luigi-u" +} diff --git a/site/public/v1/games/nexo-q139505423/index.json b/site/public/v1/games/nexo-q139505423/index.json new file mode 100644 index 000000000000..90e3512d861b --- /dev/null +++ b/site/public/v1/games/nexo-q139505423/index.json @@ -0,0 +1,27 @@ +{ + "id": 99896, + "slug": "nexo-q139505423", + "name": "NEXO", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "serious game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139505423" + ], + "created_at": "2026-07-10T10:10:28.461618", + "updated_at": "2026-07-10T10:10:28.461618", + "url": "/v1/games/nexo-q139505423" +} diff --git a/site/public/v1/games/nexomon-nexomon-extinction-complete-collection/index.json b/site/public/v1/games/nexomon-nexomon-extinction-complete-collection/index.json new file mode 100644 index 000000000000..fe50d437bc2c --- /dev/null +++ b/site/public/v1/games/nexomon-nexomon-extinction-complete-collection/index.json @@ -0,0 +1,31 @@ +{ + "id": 99900, + "slug": "nexomon-nexomon-extinction-complete-collection", + "name": "Nexomon + Nexomon: Extinction - Complete Collection", + "release_date": "2022-08-26", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S" + ], + "genres": [], + "stores": [], + "developers": [ + "Vewo Interactive" + ], + "publishers": [ + "PQube" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115988214" + ], + "created_at": "2026-07-10T10:10:28.462618", + "updated_at": "2026-07-10T10:10:28.462618", + "url": "/v1/games/nexomon-nexomon-extinction-complete-collection" +} diff --git a/site/public/v1/games/nfl-blitz-2000-gold-edition/index.json b/site/public/v1/games/nfl-blitz-2000-gold-edition/index.json new file mode 100644 index 000000000000..12ecd2ccb85c --- /dev/null +++ b/site/public/v1/games/nfl-blitz-2000-gold-edition/index.json @@ -0,0 +1,25 @@ +{ + "id": 99971, + "slug": "nfl-blitz-2000-gold-edition", + "name": "NFL Blitz 2000 Gold Edition", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q56757335" + ], + "created_at": "2026-07-10T10:10:28.481179", + "updated_at": "2026-07-10T10:10:28.481179", + "url": "/v1/games/nfl-blitz-2000-gold-edition" +} diff --git a/site/public/v1/games/nfs-most-wanted-complete/index.json b/site/public/v1/games/nfs-most-wanted-complete/index.json new file mode 100644 index 000000000000..755a26961967 --- /dev/null +++ b/site/public/v1/games/nfs-most-wanted-complete/index.json @@ -0,0 +1,34 @@ +{ + "id": 100033, + "slug": "nfs-most-wanted-complete", + "name": "NFS Most Wanted Complete", + "release_date": "2020-10-31", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "action-adventure game", + "racing video game" + ], + "stores": [], + "developers": [ + "Criterion Games" + ], + "publishers": [ + "Electronic Arts" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q104785213" + ], + "created_at": "2026-07-10T10:10:28.497205", + "updated_at": "2026-07-10T10:10:28.497205", + "url": "/v1/games/nfs-most-wanted-complete" +} diff --git a/site/public/v1/games/nhl-faceoff-2002/index.json b/site/public/v1/games/nhl-faceoff-2002/index.json new file mode 100644 index 000000000000..a8c50e37fe20 --- /dev/null +++ b/site/public/v1/games/nhl-faceoff-2002/index.json @@ -0,0 +1,27 @@ +{ + "id": 100099, + "slug": "nhl-faceoff-2002", + "name": "NHL Faceoff 2002", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "ice hockey video game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108653630" + ], + "created_at": "2026-07-10T10:10:28.511099", + "updated_at": "2026-07-10T10:10:28.511099", + "url": "/v1/games/nhl-faceoff-2002" +} diff --git a/site/public/v1/games/nhra-championship-drag-racing-speed-for-all-deluxe-edition/index.json b/site/public/v1/games/nhra-championship-drag-racing-speed-for-all-deluxe-edition/index.json new file mode 100644 index 000000000000..50dbf1a975aa --- /dev/null +++ b/site/public/v1/games/nhra-championship-drag-racing-speed-for-all-deluxe-edition/index.json @@ -0,0 +1,31 @@ +{ + "id": 100119, + "slug": "nhra-championship-drag-racing-speed-for-all-deluxe-edition", + "name": "NHRA Championship Drag Racing: Speed for All - Deluxe Edition", + "release_date": "2022-08-26", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S" + ], + "genres": [], + "stores": [], + "developers": [ + "Team6 Game Studios" + ], + "publishers": [ + "GameMill Publishing" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115987837" + ], + "created_at": "2026-07-10T10:10:28.516173", + "updated_at": "2026-07-10T10:10:28.516173", + "url": "/v1/games/nhra-championship-drag-racing-speed-for-all-deluxe-edition" +} diff --git a/site/public/v1/games/nhra-championship-drag-racing-speed-for-all-ultimate-edition/index.json b/site/public/v1/games/nhra-championship-drag-racing-speed-for-all-ultimate-edition/index.json new file mode 100644 index 000000000000..fb4ac89d4ae7 --- /dev/null +++ b/site/public/v1/games/nhra-championship-drag-racing-speed-for-all-ultimate-edition/index.json @@ -0,0 +1,31 @@ +{ + "id": 100120, + "slug": "nhra-championship-drag-racing-speed-for-all-ultimate-edition", + "name": "NHRA Championship Drag Racing: Speed for All - Ultimate Edition", + "release_date": "2022-08-26", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S" + ], + "genres": [], + "stores": [], + "developers": [ + "Team6 Game Studios" + ], + "publishers": [ + "GameMill Publishing" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115988071" + ], + "created_at": "2026-07-10T10:10:28.516173", + "updated_at": "2026-07-10T10:10:28.516173", + "url": "/v1/games/nhra-championship-drag-racing-speed-for-all-ultimate-edition" +} diff --git a/site/public/v1/games/ni-no-kuni-ii-revenant-kingdom-the-prince-s-edition/index.json b/site/public/v1/games/ni-no-kuni-ii-revenant-kingdom-the-prince-s-edition/index.json new file mode 100644 index 000000000000..794d2d499316 --- /dev/null +++ b/site/public/v1/games/ni-no-kuni-ii-revenant-kingdom-the-prince-s-edition/index.json @@ -0,0 +1,32 @@ +{ + "id": 100127, + "slug": "ni-no-kuni-ii-revenant-kingdom-the-prince-s-edition", + "name": "Ni no Kuni II: Revenant Kingdom - The Prince's Edition", + "release_date": "2023-03-21", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "QLOC" + ], + "publishers": [ + "Bandai Namco Entertainment" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122884738" + ], + "created_at": "2026-07-10T10:10:28.519177", + "updated_at": "2026-07-10T10:10:28.519177", + "url": "/v1/games/ni-no-kuni-ii-revenant-kingdom-the-prince-s-edition" +} diff --git a/site/public/v1/games/nick-kingdoms/index.json b/site/public/v1/games/nick-kingdoms/index.json new file mode 100644 index 000000000000..b5a320ce7405 --- /dev/null +++ b/site/public/v1/games/nick-kingdoms/index.json @@ -0,0 +1,25 @@ +{ + "id": 100170, + "slug": "nick-kingdoms", + "name": "Nick Kingdoms", + "release_date": "2014-08-27", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q97515047" + ], + "created_at": "2026-07-10T10:10:28.530171", + "updated_at": "2026-07-10T10:10:28.530171", + "url": "/v1/games/nick-kingdoms" +} diff --git a/site/public/v1/games/nightmare-frames-demo/index.json b/site/public/v1/games/nightmare-frames-demo/index.json new file mode 100644 index 000000000000..eee9435ae5af --- /dev/null +++ b/site/public/v1/games/nightmare-frames-demo/index.json @@ -0,0 +1,25 @@ +{ + "id": 100478, + "slug": "nightmare-frames-demo", + "name": "Nightmare Frames Demo", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124419298" + ], + "created_at": "2026-07-10T10:10:28.611838", + "updated_at": "2026-07-10T10:10:28.611838", + "url": "/v1/games/nightmare-frames-demo" +} diff --git a/site/public/v1/games/nightmare-frames-prologue/index.json b/site/public/v1/games/nightmare-frames-prologue/index.json new file mode 100644 index 000000000000..9e308c887f9b --- /dev/null +++ b/site/public/v1/games/nightmare-frames-prologue/index.json @@ -0,0 +1,33 @@ +{ + "id": 100479, + "slug": "nightmare-frames-prologue", + "name": "Nightmare Frames Prologue", + "release_date": "2021-10-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "adventure video game" + ], + "stores": [], + "developers": [ + "Postmodern Adventures" + ], + "publishers": [ + "Postmodern Adventures" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122912925" + ], + "created_at": "2026-07-10T10:10:28.611838", + "updated_at": "2026-07-10T10:10:28.611838", + "url": "/v1/games/nightmare-frames-prologue" +} diff --git a/site/public/v1/games/nightmare-house-2/index.json b/site/public/v1/games/nightmare-house-2/index.json new file mode 100644 index 000000000000..a849a7dbecd0 --- /dev/null +++ b/site/public/v1/games/nightmare-house-2/index.json @@ -0,0 +1,29 @@ +{ + "id": 100485, + "slug": "nightmare-house-2", + "name": "Nightmare House 2", + "release_date": "2010-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3054390" + ], + "created_at": "2026-07-10T10:10:28.613858", + "updated_at": "2026-07-10T10:10:28.613858", + "url": "/v1/games/nightmare-house-2" +} diff --git a/site/public/v1/games/nights/index.json b/site/public/v1/games/nights/index.json new file mode 100644 index 000000000000..e30757e5aec0 --- /dev/null +++ b/site/public/v1/games/nights/index.json @@ -0,0 +1,25 @@ +{ + "id": 100563, + "slug": "nights", + "name": "Nights", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11323582" + ], + "created_at": "2026-07-10T10:10:29.549222", + "updated_at": "2026-07-10T10:10:29.549222", + "url": "/v1/games/nights" +} diff --git a/site/public/v1/games/ninja-gaiden-trilogy/index.json b/site/public/v1/games/ninja-gaiden-trilogy/index.json new file mode 100644 index 000000000000..62a775dd3aee --- /dev/null +++ b/site/public/v1/games/ninja-gaiden-trilogy/index.json @@ -0,0 +1,33 @@ +{ + "id": 100777, + "slug": "ninja-gaiden-trilogy", + "name": "Ninja Gaiden Trilogy", + "release_date": "1995-08-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Super Nintendo Entertainment System" + ], + "genres": [ + "action game" + ], + "stores": [], + "developers": [ + "Team Ninja" + ], + "publishers": [ + "Tecmo" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3342014" + ], + "created_at": "2026-07-10T10:10:29.608003", + "updated_at": "2026-07-10T10:10:29.608003", + "url": "/v1/games/ninja-gaiden-trilogy" +} diff --git a/site/public/v1/games/ninja-turtles-the-next-mutation/index.json b/site/public/v1/games/ninja-turtles-the-next-mutation/index.json new file mode 100644 index 000000000000..ce7c03d90fe7 --- /dev/null +++ b/site/public/v1/games/ninja-turtles-the-next-mutation/index.json @@ -0,0 +1,25 @@ +{ + "id": 100881, + "slug": "ninja-turtles-the-next-mutation", + "name": "Ninja Turtles: The Next Mutation", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125297571" + ], + "created_at": "2026-07-10T10:10:29.636068", + "updated_at": "2026-07-10T10:10:29.636068", + "url": "/v1/games/ninja-turtles-the-next-mutation" +} diff --git a/site/public/v1/games/ninjabread-man-2-the-blades-of-fury/index.json b/site/public/v1/games/ninjabread-man-2-the-blades-of-fury/index.json new file mode 100644 index 000000000000..e576934d75ea --- /dev/null +++ b/site/public/v1/games/ninjabread-man-2-the-blades-of-fury/index.json @@ -0,0 +1,27 @@ +{ + "id": 100894, + "slug": "ninjabread-man-2-the-blades-of-fury", + "name": "Ninjabread Man 2: The Blades of Fury", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [ + "Data Design Interactive" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110290861" + ], + "created_at": "2026-07-10T10:10:29.639157", + "updated_at": "2026-07-10T10:10:29.639157", + "url": "/v1/games/ninjabread-man-2-the-blades-of-fury" +} diff --git a/site/public/v1/games/nintendo-64-nintendo-classics/index.json b/site/public/v1/games/nintendo-64-nintendo-classics/index.json new file mode 100644 index 000000000000..860e7c083dda --- /dev/null +++ b/site/public/v1/games/nintendo-64-nintendo-classics/index.json @@ -0,0 +1,27 @@ +{ + "id": 100928, + "slug": "nintendo-64-nintendo-classics", + "name": "Nintendo 64 – Nintendo Classics", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Nintendo" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109594929" + ], + "created_at": "2026-07-10T10:10:29.649074", + "updated_at": "2026-07-10T10:10:29.649074", + "url": "/v1/games/nintendo-64-nintendo-classics" +} diff --git a/site/public/v1/games/nintendo-entertainment-system-nintendo-classics/index.json b/site/public/v1/games/nintendo-entertainment-system-nintendo-classics/index.json new file mode 100644 index 000000000000..61f4fbb7a57b --- /dev/null +++ b/site/public/v1/games/nintendo-entertainment-system-nintendo-classics/index.json @@ -0,0 +1,27 @@ +{ + "id": 100934, + "slug": "nintendo-entertainment-system-nintendo-classics", + "name": "Nintendo Entertainment System – Nintendo Classics", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Nintendo" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60986256" + ], + "created_at": "2026-07-10T10:10:29.650078", + "updated_at": "2026-07-10T10:10:29.650078", + "url": "/v1/games/nintendo-entertainment-system-nintendo-classics" +} diff --git a/site/public/v1/games/nintendo-gamecube-nintendo-classics/index.json b/site/public/v1/games/nintendo-gamecube-nintendo-classics/index.json new file mode 100644 index 000000000000..bfe010ee64c7 --- /dev/null +++ b/site/public/v1/games/nintendo-gamecube-nintendo-classics/index.json @@ -0,0 +1,27 @@ +{ + "id": 100935, + "slug": "nintendo-gamecube-nintendo-classics", + "name": "Nintendo GameCube – Nintendo Classics", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Nintendo" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137691259" + ], + "created_at": "2026-07-10T10:10:29.651078", + "updated_at": "2026-07-10T10:10:29.651078", + "url": "/v1/games/nintendo-gamecube-nintendo-classics" +} diff --git a/site/public/v1/games/no-going-back-q18155628/index.json b/site/public/v1/games/no-going-back-q18155628/index.json new file mode 100644 index 000000000000..d7d50230174d --- /dev/null +++ b/site/public/v1/games/no-going-back-q18155628/index.json @@ -0,0 +1,27 @@ +{ + "id": 101102, + "slug": "no-going-back-q18155628", + "name": "No Going Back", + "release_date": "2014-08-26", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 4" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18155628" + ], + "created_at": "2026-07-10T10:10:29.698324", + "updated_at": "2026-07-10T10:10:29.698324", + "url": "/v1/games/no-going-back-q18155628" +} diff --git a/site/public/v1/games/no-time-left/index.json b/site/public/v1/games/no-time-left/index.json new file mode 100644 index 000000000000..45905fc7c96e --- /dev/null +++ b/site/public/v1/games/no-time-left/index.json @@ -0,0 +1,29 @@ +{ + "id": 101255, + "slug": "no-time-left", + "name": "No Time Left", + "release_date": "2012-11-20", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 4" + ], + "genres": [], + "stores": [], + "developers": [ + "Telltale Games" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16170394" + ], + "created_at": "2026-07-10T10:10:29.746253", + "updated_at": "2026-07-10T10:10:29.746253", + "url": "/v1/games/no-time-left" +} diff --git a/site/public/v1/games/nonogram/index.json b/site/public/v1/games/nonogram/index.json new file mode 100644 index 000000000000..542b205bb163 --- /dev/null +++ b/site/public/v1/games/nonogram/index.json @@ -0,0 +1,25 @@ +{ + "id": 101564, + "slug": "nonogram", + "name": "Nonogram", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q835894" + ], + "created_at": "2026-07-10T10:10:29.827777", + "updated_at": "2026-07-10T10:10:29.828776", + "url": "/v1/games/nonogram" +} diff --git a/site/public/v1/games/norco-act-one/index.json b/site/public/v1/games/norco-act-one/index.json new file mode 100644 index 000000000000..d0448c4654a2 --- /dev/null +++ b/site/public/v1/games/norco-act-one/index.json @@ -0,0 +1,25 @@ +{ + "id": 101607, + "slug": "norco-act-one", + "name": "NORCO Act One", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131562318" + ], + "created_at": "2026-07-10T10:10:29.841847", + "updated_at": "2026-07-10T10:10:29.841847", + "url": "/v1/games/norco-act-one" +} diff --git a/site/public/v1/games/north-american-release-of-chrono-trigger-for-nintendo-ds/index.json b/site/public/v1/games/north-american-release-of-chrono-trigger-for-nintendo-ds/index.json new file mode 100644 index 000000000000..8b1a9b521fb6 --- /dev/null +++ b/site/public/v1/games/north-american-release-of-chrono-trigger-for-nintendo-ds/index.json @@ -0,0 +1,25 @@ +{ + "id": 101655, + "slug": "north-american-release-of-chrono-trigger-for-nintendo-ds", + "name": "North American Release of Chrono Trigger for Nintendo DS", + "release_date": "2008-11-20", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q15063320" + ], + "created_at": "2026-07-10T10:10:29.854307", + "updated_at": "2026-07-10T10:10:29.854307", + "url": "/v1/games/north-american-release-of-chrono-trigger-for-nintendo-ds" +} diff --git a/site/public/v1/games/not-tonight-one-love/index.json b/site/public/v1/games/not-tonight-one-love/index.json new file mode 100644 index 000000000000..68b5daf282ae --- /dev/null +++ b/site/public/v1/games/not-tonight-one-love/index.json @@ -0,0 +1,27 @@ +{ + "id": 101785, + "slug": "not-tonight-one-love", + "name": "Not Tonight: One Love", + "release_date": "2019-06-25", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115121395" + ], + "created_at": "2026-07-10T10:10:29.889382", + "updated_at": "2026-07-10T10:10:29.889382", + "url": "/v1/games/not-tonight-one-love" +} diff --git a/site/public/v1/games/notoriety/index.json b/site/public/v1/games/notoriety/index.json new file mode 100644 index 000000000000..5a0a34e5c1c1 --- /dev/null +++ b/site/public/v1/games/notoriety/index.json @@ -0,0 +1,29 @@ +{ + "id": 101845, + "slug": "notoriety", + "name": "Notoriety", + "release_date": "2010-01-29", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "shooter game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135118565" + ], + "created_at": "2026-07-10T10:10:29.906351", + "updated_at": "2026-07-10T10:10:29.906351", + "url": "/v1/games/notoriety" +} diff --git a/site/public/v1/games/nova-online/index.json b/site/public/v1/games/nova-online/index.json new file mode 100644 index 000000000000..8e16d42d65e7 --- /dev/null +++ b/site/public/v1/games/nova-online/index.json @@ -0,0 +1,29 @@ +{ + "id": 101884, + "slug": "nova-online", + "name": "Nova Online", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "massively multiplayer online role-playing game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110716923" + ], + "created_at": "2026-07-10T10:10:29.916381", + "updated_at": "2026-07-10T10:10:29.916381", + "url": "/v1/games/nova-online" +} diff --git a/site/public/v1/games/ntrap/index.json b/site/public/v1/games/ntrap/index.json new file mode 100644 index 000000000000..f13b031bdf48 --- /dev/null +++ b/site/public/v1/games/ntrap/index.json @@ -0,0 +1,25 @@ +{ + "id": 101995, + "slug": "ntrap", + "name": "nTrap", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140361590" + ], + "created_at": "2026-07-10T10:10:29.946054", + "updated_at": "2026-07-10T10:10:29.946054", + "url": "/v1/games/ntrap" +} diff --git a/site/public/v1/games/nudoku/index.json b/site/public/v1/games/nudoku/index.json new file mode 100644 index 000000000000..c25febea3b0b --- /dev/null +++ b/site/public/v1/games/nudoku/index.json @@ -0,0 +1,27 @@ +{ + "id": 102055, + "slug": "nudoku", + "name": "nudoku", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "puzzle video game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q133105316" + ], + "created_at": "2026-07-10T10:10:29.961706", + "updated_at": "2026-07-10T10:10:29.961706", + "url": "/v1/games/nudoku" +} diff --git a/site/public/v1/games/nugget-doom/index.json b/site/public/v1/games/nugget-doom/index.json new file mode 100644 index 000000000000..c8af5e378bf0 --- /dev/null +++ b/site/public/v1/games/nugget-doom/index.json @@ -0,0 +1,25 @@ +{ + "id": 102058, + "slug": "nugget-doom", + "name": "Nugget Doom", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124429051" + ], + "created_at": "2026-07-10T10:10:29.962723", + "updated_at": "2026-07-10T10:10:29.962723", + "url": "/v1/games/nugget-doom" +} diff --git a/site/public/v1/games/nukicolle-vol-31-oni-chichi-1-2/index.json b/site/public/v1/games/nukicolle-vol-31-oni-chichi-1-2/index.json new file mode 100644 index 000000000000..d05e42bf750e --- /dev/null +++ b/site/public/v1/games/nukicolle-vol-31-oni-chichi-1-2/index.json @@ -0,0 +1,36 @@ +{ + "id": 102070, + "slug": "nukicolle-vol-31-oni-chichi-1-2", + "name": "Nukicolle vol.31 - Oni Chichi 1 + 2", + "release_date": "2023-02-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "visual novel", + "harem", + "eroge", + "slice of life" + ], + "stores": [], + "developers": [ + "Blue Gale" + ], + "publishers": [ + "Blue Gale" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125027983" + ], + "created_at": "2026-07-10T10:10:29.966687", + "updated_at": "2026-07-10T10:10:29.966687", + "url": "/v1/games/nukicolle-vol-31-oni-chichi-1-2" +} diff --git a/site/public/v1/games/nukicolle-vol-51-tsugunai-1-2/index.json b/site/public/v1/games/nukicolle-vol-51-tsugunai-1-2/index.json new file mode 100644 index 000000000000..ad1211cc26d0 --- /dev/null +++ b/site/public/v1/games/nukicolle-vol-51-tsugunai-1-2/index.json @@ -0,0 +1,34 @@ +{ + "id": 102071, + "slug": "nukicolle-vol-51-tsugunai-1-2", + "name": "Nukicolle vol.51 - Tsugunai 1+2", + "release_date": "2023-12-22", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "visual novel", + "eroge" + ], + "stores": [], + "developers": [ + "Blue Gale" + ], + "publishers": [ + "Blue Gale" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130280777" + ], + "created_at": "2026-07-10T10:10:29.966687", + "updated_at": "2026-07-10T10:10:29.966687", + "url": "/v1/games/nukicolle-vol-51-tsugunai-1-2" +} diff --git a/site/public/v1/games/nurikabe-q240004/index.json b/site/public/v1/games/nurikabe-q240004/index.json new file mode 100644 index 000000000000..b49bbbcdc583 --- /dev/null +++ b/site/public/v1/games/nurikabe-q240004/index.json @@ -0,0 +1,25 @@ +{ + "id": 102164, + "slug": "nurikabe-q240004", + "name": "Nurikabe", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q240004" + ], + "created_at": "2026-07-10T10:10:29.991744", + "updated_at": "2026-07-10T10:10:29.991744", + "url": "/v1/games/nurikabe-q240004" +} diff --git a/site/public/v1/games/nutaku-love-forever/index.json b/site/public/v1/games/nutaku-love-forever/index.json new file mode 100644 index 000000000000..3c0306fc8035 --- /dev/null +++ b/site/public/v1/games/nutaku-love-forever/index.json @@ -0,0 +1,29 @@ +{ + "id": 102186, + "slug": "nutaku-love-forever", + "name": "Nutaku: Love Forever", + "release_date": "2023-06-20", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Funky_Forest" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126209508" + ], + "created_at": "2026-07-10T10:10:29.996723", + "updated_at": "2026-07-10T10:10:29.996723", + "url": "/v1/games/nutaku-love-forever" +} diff --git a/site/public/v1/games/nyte-blayde-pack/index.json b/site/public/v1/games/nyte-blayde-pack/index.json new file mode 100644 index 000000000000..457bdef8b6af --- /dev/null +++ b/site/public/v1/games/nyte-blayde-pack/index.json @@ -0,0 +1,27 @@ +{ + "id": 102270, + "slug": "nyte-blayde-pack", + "name": "Nyte Blayde Pack", + "release_date": "2012-04-10", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60603627" + ], + "created_at": "2026-07-10T10:10:30.020697", + "updated_at": "2026-07-10T10:10:30.020697", + "url": "/v1/games/nyte-blayde-pack" +} diff --git a/site/public/v1/games/o-n-g-e-k-i/index.json b/site/public/v1/games/o-n-g-e-k-i/index.json new file mode 100644 index 000000000000..6c7c16670d74 --- /dev/null +++ b/site/public/v1/games/o-n-g-e-k-i/index.json @@ -0,0 +1,31 @@ +{ + "id": 102287, + "slug": "o-n-g-e-k-i", + "name": "O.N.G.E.K.I.", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "arcade video game machine" + ], + "genres": [ + "rhythm game" + ], + "stores": [], + "developers": [ + "Sega" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q55525471" + ], + "created_at": "2026-07-10T10:10:30.024642", + "updated_at": "2026-07-10T10:10:30.024642", + "url": "/v1/games/o-n-g-e-k-i" +} diff --git a/site/public/v1/games/obby-creator/index.json b/site/public/v1/games/obby-creator/index.json new file mode 100644 index 000000000000..046c001f7d79 --- /dev/null +++ b/site/public/v1/games/obby-creator/index.json @@ -0,0 +1,29 @@ +{ + "id": 102350, + "slug": "obby-creator", + "name": "Obby Creator", + "release_date": "2019-03-02", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "sandbox game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134724661" + ], + "created_at": "2026-07-10T10:10:30.041798", + "updated_at": "2026-07-10T10:10:30.041798", + "url": "/v1/games/obby-creator" +} diff --git a/site/public/v1/games/octodad-dadliest-catch-q118234877/index.json b/site/public/v1/games/octodad-dadliest-catch-q118234877/index.json new file mode 100644 index 000000000000..ff23f3abb77d --- /dev/null +++ b/site/public/v1/games/octodad-dadliest-catch-q118234877/index.json @@ -0,0 +1,29 @@ +{ + "id": 102581, + "slug": "octodad-dadliest-catch-q118234877", + "name": "Octodad: Dadliest Catch+", + "release_date": "2023-05-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "iPadOS", + "tvOS", + "iOS" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118234877" + ], + "created_at": "2026-07-10T10:10:30.103984", + "updated_at": "2026-07-10T10:10:30.103984", + "url": "/v1/games/octodad-dadliest-catch-q118234877" +} diff --git a/site/public/v1/games/odamex/index.json b/site/public/v1/games/odamex/index.json new file mode 100644 index 000000000000..1a5e1f377c05 --- /dev/null +++ b/site/public/v1/games/odamex/index.json @@ -0,0 +1,25 @@ +{ + "id": 102612, + "slug": "odamex", + "name": "Odamex", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q67221582" + ], + "created_at": "2026-07-10T10:10:30.111990", + "updated_at": "2026-07-10T10:10:30.111990", + "url": "/v1/games/odamex" +} diff --git a/site/public/v1/games/oddmar-q109413882/index.json b/site/public/v1/games/oddmar-q109413882/index.json new file mode 100644 index 000000000000..169748bc159f --- /dev/null +++ b/site/public/v1/games/oddmar-q109413882/index.json @@ -0,0 +1,30 @@ +{ + "id": 102639, + "slug": "oddmar-q109413882", + "name": "Oddmar+", + "release_date": "2021-12-03", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "iPadOS", + "tvOS", + "iOS", + "macOS" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109413882" + ], + "created_at": "2026-07-10T10:10:30.119973", + "updated_at": "2026-07-10T10:10:30.119973", + "url": "/v1/games/oddmar-q109413882" +} diff --git a/site/public/v1/games/odyssey-q124361635/index.json b/site/public/v1/games/odyssey-q124361635/index.json new file mode 100644 index 000000000000..21b10d91ce34 --- /dev/null +++ b/site/public/v1/games/odyssey-q124361635/index.json @@ -0,0 +1,31 @@ +{ + "id": 102698, + "slug": "odyssey-q124361635", + "name": "Odyssey", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "survival game" + ], + "stores": [], + "developers": [ + "Blizzard Entertainment" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124361635" + ], + "created_at": "2026-07-10T10:10:30.134997", + "updated_at": "2026-07-10T10:10:30.134997", + "url": "/v1/games/odyssey-q124361635" +} diff --git a/site/public/v1/games/off-zarken/index.json b/site/public/v1/games/off-zarken/index.json new file mode 100644 index 000000000000..62f9a056143d --- /dev/null +++ b/site/public/v1/games/off-zarken/index.json @@ -0,0 +1,27 @@ +{ + "id": 102787, + "slug": "off-zarken", + "name": "Off Zarken", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Nintendo Entertainment System" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60987411" + ], + "created_at": "2026-07-10T10:10:30.179623", + "updated_at": "2026-07-10T10:10:30.179623", + "url": "/v1/games/off-zarken" +} diff --git a/site/public/v1/games/offworld-trading-company-almanac-dlc/index.json b/site/public/v1/games/offworld-trading-company-almanac-dlc/index.json new file mode 100644 index 000000000000..7976ca13adcb --- /dev/null +++ b/site/public/v1/games/offworld-trading-company-almanac-dlc/index.json @@ -0,0 +1,32 @@ +{ + "id": 102873, + "slug": "offworld-trading-company-almanac-dlc", + "name": "Offworld Trading Company - Almanac DLC", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Mohawk Games" + ], + "publishers": [ + "Stardock" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113179024" + ], + "created_at": "2026-07-10T10:10:30.202594", + "updated_at": "2026-07-10T10:10:30.202594", + "url": "/v1/games/offworld-trading-company-almanac-dlc" +} diff --git a/site/public/v1/games/offworld-trading-company-blue-chip-ventures-dlc/index.json b/site/public/v1/games/offworld-trading-company-blue-chip-ventures-dlc/index.json new file mode 100644 index 000000000000..190ced56cc95 --- /dev/null +++ b/site/public/v1/games/offworld-trading-company-blue-chip-ventures-dlc/index.json @@ -0,0 +1,32 @@ +{ + "id": 102874, + "slug": "offworld-trading-company-blue-chip-ventures-dlc", + "name": "Offworld Trading Company - Blue Chip Ventures DLC", + "release_date": "2017-02-09", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Mohawk Games" + ], + "publishers": [ + "Stardock" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113179070" + ], + "created_at": "2026-07-10T10:10:30.202594", + "updated_at": "2026-07-10T10:10:30.202594", + "url": "/v1/games/offworld-trading-company-blue-chip-ventures-dlc" +} diff --git a/site/public/v1/games/offworld-trading-company-conspicuous-consumption-dlc/index.json b/site/public/v1/games/offworld-trading-company-conspicuous-consumption-dlc/index.json new file mode 100644 index 000000000000..93315e8ed694 --- /dev/null +++ b/site/public/v1/games/offworld-trading-company-conspicuous-consumption-dlc/index.json @@ -0,0 +1,32 @@ +{ + "id": 102875, + "slug": "offworld-trading-company-conspicuous-consumption-dlc", + "name": "Offworld Trading Company - Conspicuous Consumption DLC", + "release_date": "2017-10-09", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Mohawk Games" + ], + "publishers": [ + "Stardock" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113179097" + ], + "created_at": "2026-07-10T10:10:30.202594", + "updated_at": "2026-07-10T10:10:30.202594", + "url": "/v1/games/offworld-trading-company-conspicuous-consumption-dlc" +} diff --git a/site/public/v1/games/offworld-trading-company-interdimensional-dlc/index.json b/site/public/v1/games/offworld-trading-company-interdimensional-dlc/index.json new file mode 100644 index 000000000000..485b307a7429 --- /dev/null +++ b/site/public/v1/games/offworld-trading-company-interdimensional-dlc/index.json @@ -0,0 +1,32 @@ +{ + "id": 102876, + "slug": "offworld-trading-company-interdimensional-dlc", + "name": "Offworld Trading Company - Interdimensional DLC", + "release_date": "2021-03-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Mohawk Games" + ], + "publishers": [ + "Stardock" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113179152" + ], + "created_at": "2026-07-10T10:10:30.203587", + "updated_at": "2026-07-10T10:10:30.203587", + "url": "/v1/games/offworld-trading-company-interdimensional-dlc" +} diff --git a/site/public/v1/games/offworld-trading-company-jupiter-s-forge-expansion-pack/index.json b/site/public/v1/games/offworld-trading-company-jupiter-s-forge-expansion-pack/index.json new file mode 100644 index 000000000000..078ae90bcd1f --- /dev/null +++ b/site/public/v1/games/offworld-trading-company-jupiter-s-forge-expansion-pack/index.json @@ -0,0 +1,32 @@ +{ + "id": 102877, + "slug": "offworld-trading-company-jupiter-s-forge-expansion-pack", + "name": "Offworld Trading Company: Jupiter's Forge Expansion Pack", + "release_date": "2017-05-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Mohawk Games" + ], + "publishers": [ + "Stardock" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113179081" + ], + "created_at": "2026-07-10T10:10:30.203587", + "updated_at": "2026-07-10T10:10:30.203587", + "url": "/v1/games/offworld-trading-company-jupiter-s-forge-expansion-pack" +} diff --git a/site/public/v1/games/offworld-trading-company-limited-supply-dlc/index.json b/site/public/v1/games/offworld-trading-company-limited-supply-dlc/index.json new file mode 100644 index 000000000000..acc3eef6ff3a --- /dev/null +++ b/site/public/v1/games/offworld-trading-company-limited-supply-dlc/index.json @@ -0,0 +1,32 @@ +{ + "id": 102878, + "slug": "offworld-trading-company-limited-supply-dlc", + "name": "Offworld Trading Company - Limited Supply DLC", + "release_date": "2018-01-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Mohawk Games" + ], + "publishers": [ + "Stardock" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113179115" + ], + "created_at": "2026-07-10T10:10:30.203587", + "updated_at": "2026-07-10T10:10:30.203587", + "url": "/v1/games/offworld-trading-company-limited-supply-dlc" +} diff --git a/site/public/v1/games/offworld-trading-company-market-corrections-dlc/index.json b/site/public/v1/games/offworld-trading-company-market-corrections-dlc/index.json new file mode 100644 index 000000000000..fce54a10c8cd --- /dev/null +++ b/site/public/v1/games/offworld-trading-company-market-corrections-dlc/index.json @@ -0,0 +1,32 @@ +{ + "id": 102879, + "slug": "offworld-trading-company-market-corrections-dlc", + "name": "Offworld Trading Company - Market Corrections DLC", + "release_date": "2019-02-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Mohawk Games" + ], + "publishers": [ + "Stardock" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113179126" + ], + "created_at": "2026-07-10T10:10:30.203587", + "updated_at": "2026-07-10T10:10:30.203587", + "url": "/v1/games/offworld-trading-company-market-corrections-dlc" +} diff --git a/site/public/v1/games/offworld-trading-company-real-mars-map-pack-dlc/index.json b/site/public/v1/games/offworld-trading-company-real-mars-map-pack-dlc/index.json new file mode 100644 index 000000000000..00fecf4a6cd2 --- /dev/null +++ b/site/public/v1/games/offworld-trading-company-real-mars-map-pack-dlc/index.json @@ -0,0 +1,32 @@ +{ + "id": 102880, + "slug": "offworld-trading-company-real-mars-map-pack-dlc", + "name": "Offworld Trading Company - Real Mars Map Pack DLC", + "release_date": "2016-04-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Mohawk Games" + ], + "publishers": [ + "Stardock" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113179011" + ], + "created_at": "2026-07-10T10:10:30.204606", + "updated_at": "2026-07-10T10:10:30.204606", + "url": "/v1/games/offworld-trading-company-real-mars-map-pack-dlc" +} diff --git a/site/public/v1/games/offworld-trading-company-scenario-toolkit-dlc/index.json b/site/public/v1/games/offworld-trading-company-scenario-toolkit-dlc/index.json new file mode 100644 index 000000000000..cd1ac6590255 --- /dev/null +++ b/site/public/v1/games/offworld-trading-company-scenario-toolkit-dlc/index.json @@ -0,0 +1,32 @@ +{ + "id": 102881, + "slug": "offworld-trading-company-scenario-toolkit-dlc", + "name": "Offworld Trading Company - Scenario Toolkit DLC", + "release_date": "2016-06-20", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Mohawk Games" + ], + "publishers": [ + "Stardock" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113179034" + ], + "created_at": "2026-07-10T10:10:30.204606", + "updated_at": "2026-07-10T10:10:30.204606", + "url": "/v1/games/offworld-trading-company-scenario-toolkit-dlc" +} diff --git a/site/public/v1/games/offworld-trading-company-the-ceres-initiative-dlc/index.json b/site/public/v1/games/offworld-trading-company-the-ceres-initiative-dlc/index.json new file mode 100644 index 000000000000..3211a0b62265 --- /dev/null +++ b/site/public/v1/games/offworld-trading-company-the-ceres-initiative-dlc/index.json @@ -0,0 +1,32 @@ +{ + "id": 102882, + "slug": "offworld-trading-company-the-ceres-initiative-dlc", + "name": "Offworld Trading Company - The Ceres Initiative DLC", + "release_date": "2016-08-22", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Mohawk Games" + ], + "publishers": [ + "Stardock" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113179050" + ], + "created_at": "2026-07-10T10:10:30.204606", + "updated_at": "2026-07-10T10:10:30.204606", + "url": "/v1/games/offworld-trading-company-the-ceres-initiative-dlc" +} diff --git a/site/public/v1/games/offworld-trading-company-the-europa-wager-expansion/index.json b/site/public/v1/games/offworld-trading-company-the-europa-wager-expansion/index.json new file mode 100644 index 000000000000..01cda7baffb2 --- /dev/null +++ b/site/public/v1/games/offworld-trading-company-the-europa-wager-expansion/index.json @@ -0,0 +1,32 @@ +{ + "id": 102883, + "slug": "offworld-trading-company-the-europa-wager-expansion", + "name": "Offworld Trading Company: The Europa Wager Expansion", + "release_date": "2019-11-21", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Mohawk Games" + ], + "publishers": [ + "Stardock" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113179139" + ], + "created_at": "2026-07-10T10:10:30.204606", + "updated_at": "2026-07-10T10:10:30.204606", + "url": "/v1/games/offworld-trading-company-the-europa-wager-expansion" +} diff --git a/site/public/v1/games/offworld-trading-company-the-patron-and-the-patriot-dlc/index.json b/site/public/v1/games/offworld-trading-company-the-patron-and-the-patriot-dlc/index.json new file mode 100644 index 000000000000..077f7c02f304 --- /dev/null +++ b/site/public/v1/games/offworld-trading-company-the-patron-and-the-patriot-dlc/index.json @@ -0,0 +1,32 @@ +{ + "id": 102884, + "slug": "offworld-trading-company-the-patron-and-the-patriot-dlc", + "name": "Offworld Trading Company - The Patron and the Patriot DLC", + "release_date": "2016-10-27", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Mohawk Games" + ], + "publishers": [ + "Stardock" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113179059" + ], + "created_at": "2026-07-10T10:10:30.204606", + "updated_at": "2026-07-10T10:10:30.204606", + "url": "/v1/games/offworld-trading-company-the-patron-and-the-patriot-dlc" +} diff --git a/site/public/v1/games/old-man-s-journey-q115240177/index.json b/site/public/v1/games/old-man-s-journey-q115240177/index.json new file mode 100644 index 000000000000..ef93064336db --- /dev/null +++ b/site/public/v1/games/old-man-s-journey-q115240177/index.json @@ -0,0 +1,28 @@ +{ + "id": 103117, + "slug": "old-man-s-journey-q115240177", + "name": "Old Man’s Journey+", + "release_date": "2022-11-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "iPadOS", + "iOS" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115240177" + ], + "created_at": "2026-07-10T10:10:30.266314", + "updated_at": "2026-07-10T10:10:30.266314", + "url": "/v1/games/old-man-s-journey-q115240177" +} diff --git a/site/public/v1/games/oldorf-s-revenge/index.json b/site/public/v1/games/oldorf-s-revenge/index.json new file mode 100644 index 000000000000..819697d96632 --- /dev/null +++ b/site/public/v1/games/oldorf-s-revenge/index.json @@ -0,0 +1,30 @@ +{ + "id": 103147, + "slug": "oldorf-s-revenge", + "name": "Oldorf's Revenge", + "release_date": "1980-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Apple II", + "Atari 8-bit family" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Synergistic Software" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140472901" + ], + "created_at": "2026-07-10T10:10:30.274338", + "updated_at": "2026-07-10T10:10:30.274338", + "url": "/v1/games/oldorf-s-revenge" +} diff --git a/site/public/v1/games/once-upon-a-time-in-japan-earth/index.json b/site/public/v1/games/once-upon-a-time-in-japan-earth/index.json new file mode 100644 index 000000000000..08d5bd251319 --- /dev/null +++ b/site/public/v1/games/once-upon-a-time-in-japan-earth/index.json @@ -0,0 +1,27 @@ +{ + "id": 103446, + "slug": "once-upon-a-time-in-japan-earth", + "name": "Once Upon a Time in Japan: Earth", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "adventure video game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110817119" + ], + "created_at": "2026-07-10T10:10:30.372376", + "updated_at": "2026-07-10T10:10:30.372376", + "url": "/v1/games/once-upon-a-time-in-japan-earth" +} diff --git a/site/public/v1/games/ondeh-ondeh/index.json b/site/public/v1/games/ondeh-ondeh/index.json new file mode 100644 index 000000000000..7d6cf99c02d2 --- /dev/null +++ b/site/public/v1/games/ondeh-ondeh/index.json @@ -0,0 +1,33 @@ +{ + "id": 103458, + "slug": "ondeh-ondeh", + "name": "Ondeh Ondeh", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 5", + "Microsoft Windows" + ], + "genres": [ + "rhythm game" + ], + "stores": [], + "developers": [ + "Metronomik" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124499906" + ], + "created_at": "2026-07-10T10:10:30.376403", + "updated_at": "2026-07-10T10:10:30.376403", + "url": "/v1/games/ondeh-ondeh" +} diff --git a/site/public/v1/games/one-stop-fun-shop/index.json b/site/public/v1/games/one-stop-fun-shop/index.json new file mode 100644 index 000000000000..098ba347e2cb --- /dev/null +++ b/site/public/v1/games/one-stop-fun-shop/index.json @@ -0,0 +1,25 @@ +{ + "id": 103732, + "slug": "one-stop-fun-shop", + "name": "One-Stop Fun Shop", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q47006199" + ], + "created_at": "2026-07-10T10:10:30.457421", + "updated_at": "2026-07-10T10:10:30.457421", + "url": "/v1/games/one-stop-fun-shop" +} diff --git a/site/public/v1/games/one-unit-whole-blood/index.json b/site/public/v1/games/one-unit-whole-blood/index.json new file mode 100644 index 000000000000..7ba1b785ef5b --- /dev/null +++ b/site/public/v1/games/one-unit-whole-blood/index.json @@ -0,0 +1,25 @@ +{ + "id": 103754, + "slug": "one-unit-whole-blood", + "name": "One Unit Whole Blood", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122587367" + ], + "created_at": "2026-07-10T10:10:30.464417", + "updated_at": "2026-07-10T10:10:30.464417", + "url": "/v1/games/one-unit-whole-blood" +} diff --git a/site/public/v1/games/oof-simulator/index.json b/site/public/v1/games/oof-simulator/index.json new file mode 100644 index 000000000000..613fe507aba9 --- /dev/null +++ b/site/public/v1/games/oof-simulator/index.json @@ -0,0 +1,25 @@ +{ + "id": 104020, + "slug": "oof-simulator", + "name": "Oof Simulator", + "release_date": "2018-02-09", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136206157" + ], + "created_at": "2026-07-10T10:10:30.533998", + "updated_at": "2026-07-10T10:10:30.533998", + "url": "/v1/games/oof-simulator" +} diff --git a/site/public/v1/games/openjk/index.json b/site/public/v1/games/openjk/index.json new file mode 100644 index 000000000000..3a2f6326d201 --- /dev/null +++ b/site/public/v1/games/openjk/index.json @@ -0,0 +1,25 @@ +{ + "id": 104124, + "slug": "openjk", + "name": "OpenJK", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122202395" + ], + "created_at": "2026-07-10T10:10:30.563799", + "updated_at": "2026-07-10T10:10:30.563799", + "url": "/v1/games/openjk" +} diff --git a/site/public/v1/games/openliero/index.json b/site/public/v1/games/openliero/index.json new file mode 100644 index 000000000000..6c2461866d94 --- /dev/null +++ b/site/public/v1/games/openliero/index.json @@ -0,0 +1,28 @@ +{ + "id": 104125, + "slug": "openliero", + "name": "OpenLiero", + "release_date": "2007-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "side-scrolling video game", + "shooter game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120721656" + ], + "created_at": "2026-07-10T10:10:30.563799", + "updated_at": "2026-07-10T10:10:30.563799", + "url": "/v1/games/openliero" +} diff --git a/site/public/v1/games/openlierox/index.json b/site/public/v1/games/openlierox/index.json new file mode 100644 index 000000000000..84c566ac5eda --- /dev/null +++ b/site/public/v1/games/openlierox/index.json @@ -0,0 +1,28 @@ +{ + "id": 104126, + "slug": "openlierox", + "name": "OpenLieroX", + "release_date": "2006-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "DOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6051257" + ], + "created_at": "2026-07-10T10:10:30.564767", + "updated_at": "2026-07-10T10:10:30.564767", + "url": "/v1/games/openlierox" +} diff --git a/site/public/v1/games/opensa/index.json b/site/public/v1/games/opensa/index.json new file mode 100644 index 000000000000..54af30ada33d --- /dev/null +++ b/site/public/v1/games/opensa/index.json @@ -0,0 +1,25 @@ +{ + "id": 104133, + "slug": "opensa", + "name": "OpenSA", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122202424" + ], + "created_at": "2026-07-10T10:10:30.566775", + "updated_at": "2026-07-10T10:10:30.566775", + "url": "/v1/games/opensa" +} diff --git a/site/public/v1/games/openspades/index.json b/site/public/v1/games/openspades/index.json new file mode 100644 index 000000000000..3d4d8af9179c --- /dev/null +++ b/site/public/v1/games/openspades/index.json @@ -0,0 +1,25 @@ +{ + "id": 104134, + "slug": "openspades", + "name": "OpenSpades", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122202498" + ], + "created_at": "2026-07-10T10:10:30.566775", + "updated_at": "2026-07-10T10:10:30.566775", + "url": "/v1/games/openspades" +} diff --git a/site/public/v1/games/openut/index.json b/site/public/v1/games/openut/index.json new file mode 100644 index 000000000000..76c961f18e09 --- /dev/null +++ b/site/public/v1/games/openut/index.json @@ -0,0 +1,25 @@ +{ + "id": 104136, + "slug": "openut", + "name": "OpenUT", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122202522" + ], + "created_at": "2026-07-10T10:10:30.567784", + "updated_at": "2026-07-10T10:10:30.567784", + "url": "/v1/games/openut" +} diff --git a/site/public/v1/games/operation-flashpoint-gold-edition/index.json b/site/public/v1/games/operation-flashpoint-gold-edition/index.json new file mode 100644 index 000000000000..4f4468f4553d --- /dev/null +++ b/site/public/v1/games/operation-flashpoint-gold-edition/index.json @@ -0,0 +1,25 @@ +{ + "id": 104187, + "slug": "operation-flashpoint-gold-edition", + "name": "Operation Flashpoint: Gold Edition", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123558399" + ], + "created_at": "2026-07-10T10:10:30.581771", + "updated_at": "2026-07-10T10:10:30.581771", + "url": "/v1/games/operation-flashpoint-gold-edition" +} diff --git a/site/public/v1/games/operation-flashpoint-red-hammer/index.json b/site/public/v1/games/operation-flashpoint-red-hammer/index.json new file mode 100644 index 000000000000..756b18071bca --- /dev/null +++ b/site/public/v1/games/operation-flashpoint-red-hammer/index.json @@ -0,0 +1,27 @@ +{ + "id": 104188, + "slug": "operation-flashpoint-red-hammer", + "name": "Operation Flashpoint: Red Hammer", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q27627847" + ], + "created_at": "2026-07-10T10:10:30.581771", + "updated_at": "2026-07-10T10:10:30.581771", + "url": "/v1/games/operation-flashpoint-red-hammer" +} diff --git a/site/public/v1/games/operation-flashpoint-resistance/index.json b/site/public/v1/games/operation-flashpoint-resistance/index.json new file mode 100644 index 000000000000..4dc099cf94cc --- /dev/null +++ b/site/public/v1/games/operation-flashpoint-resistance/index.json @@ -0,0 +1,34 @@ +{ + "id": 104190, + "slug": "operation-flashpoint-resistance", + "name": "Operation Flashpoint: Resistance", + "release_date": "2002-07-10", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "tactical shooter" + ], + "stores": [], + "developers": [ + "Bohemia Interactive" + ], + "publishers": [ + "Codemasters" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11155063" + ], + "created_at": "2026-07-10T10:10:30.581771", + "updated_at": "2026-07-10T10:10:30.581771", + "url": "/v1/games/operation-flashpoint-resistance" +} diff --git a/site/public/v1/games/operators/index.json b/site/public/v1/games/operators/index.json new file mode 100644 index 000000000000..4e0e957c9d13 --- /dev/null +++ b/site/public/v1/games/operators/index.json @@ -0,0 +1,30 @@ +{ + "id": 104284, + "slug": "operators", + "name": "Operators", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Cishshato" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130487359" + ], + "created_at": "2026-07-10T10:10:30.621772", + "updated_at": "2026-07-10T10:10:30.621772", + "url": "/v1/games/operators" +} diff --git a/site/public/v1/games/order-of-battle-allies-defiant/index.json b/site/public/v1/games/order-of-battle-allies-defiant/index.json new file mode 100644 index 000000000000..c8ba5bd5efce --- /dev/null +++ b/site/public/v1/games/order-of-battle-allies-defiant/index.json @@ -0,0 +1,25 @@ +{ + "id": 104546, + "slug": "order-of-battle-allies-defiant", + "name": "Order of Battle: Allies Defiant", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140390612" + ], + "created_at": "2026-07-10T10:10:30.693207", + "updated_at": "2026-07-10T10:10:30.693207", + "url": "/v1/games/order-of-battle-allies-defiant" +} diff --git a/site/public/v1/games/oretachi-geasen-zoku-sono/index.json b/site/public/v1/games/oretachi-geasen-zoku-sono/index.json new file mode 100644 index 000000000000..618a66c90848 --- /dev/null +++ b/site/public/v1/games/oretachi-geasen-zoku-sono/index.json @@ -0,0 +1,25 @@ +{ + "id": 104608, + "slug": "oretachi-geasen-zoku-sono", + "name": "Oretachi Geasen Zoku Sono", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11292871" + ], + "created_at": "2026-07-10T10:10:30.710200", + "updated_at": "2026-07-10T10:10:30.710200", + "url": "/v1/games/oretachi-geasen-zoku-sono" +} diff --git a/site/public/v1/games/osmos-q117357568/index.json b/site/public/v1/games/osmos-q117357568/index.json new file mode 100644 index 000000000000..7e7c7dd34f2d --- /dev/null +++ b/site/public/v1/games/osmos-q117357568/index.json @@ -0,0 +1,28 @@ +{ + "id": 104775, + "slug": "osmos-q117357568", + "name": "Osmos+", + "release_date": "2023-03-17", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "iPadOS", + "iOS" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117357568" + ], + "created_at": "2026-07-10T10:10:30.761004", + "updated_at": "2026-07-10T10:10:30.761004", + "url": "/v1/games/osmos-q117357568" +} diff --git a/site/public/v1/games/osomatsu-kun/index.json b/site/public/v1/games/osomatsu-kun/index.json new file mode 100644 index 000000000000..2567f3efd911 --- /dev/null +++ b/site/public/v1/games/osomatsu-kun/index.json @@ -0,0 +1,25 @@ +{ + "id": 104778, + "slug": "osomatsu-kun", + "name": "Osomatsu-kun", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11261701" + ], + "created_at": "2026-07-10T10:10:30.762004", + "updated_at": "2026-07-10T10:10:30.762004", + "url": "/v1/games/osomatsu-kun" +} diff --git a/site/public/v1/games/our-life-beginnings-always-voiced-name-expansion/index.json b/site/public/v1/games/our-life-beginnings-always-voiced-name-expansion/index.json new file mode 100644 index 000000000000..91c3544d83de --- /dev/null +++ b/site/public/v1/games/our-life-beginnings-always-voiced-name-expansion/index.json @@ -0,0 +1,28 @@ +{ + "id": 104979, + "slug": "our-life-beginnings-always-voiced-name-expansion", + "name": "Our Life: Beginnings & Always - Voiced Name Expansion", + "release_date": "2020-11-30", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130723452" + ], + "created_at": "2026-07-10T10:10:30.815934", + "updated_at": "2026-07-10T10:10:30.815934", + "url": "/v1/games/our-life-beginnings-always-voiced-name-expansion" +} diff --git a/site/public/v1/games/out-of-hell-q4046079/index.json b/site/public/v1/games/out-of-hell-q4046079/index.json new file mode 100644 index 000000000000..a8b0997f7339 --- /dev/null +++ b/site/public/v1/games/out-of-hell-q4046079/index.json @@ -0,0 +1,30 @@ +{ + "id": 105046, + "slug": "out-of-hell-q4046079", + "name": "Out of Hell", + "release_date": "2009-11-02", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "survival horror" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4046079" + ], + "created_at": "2026-07-10T10:10:30.834024", + "updated_at": "2026-07-10T10:10:30.834024", + "url": "/v1/games/out-of-hell-q4046079" +} diff --git a/site/public/v1/games/outer-wilds-archaeologist-edition/index.json b/site/public/v1/games/outer-wilds-archaeologist-edition/index.json new file mode 100644 index 000000000000..73756b7ac3d5 --- /dev/null +++ b/site/public/v1/games/outer-wilds-archaeologist-edition/index.json @@ -0,0 +1,30 @@ +{ + "id": 105170, + "slug": "outer-wilds-archaeologist-edition", + "name": "Outer Wilds: Archaeologist Edition", + "release_date": "2021-09-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows", + "Xbox Series X and Series S" + ], + "genres": [], + "stores": [], + "developers": [ + "Mobius Digital" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110853997" + ], + "created_at": "2026-07-10T10:10:30.866570", + "updated_at": "2026-07-10T10:10:30.866570", + "url": "/v1/games/outer-wilds-archaeologist-edition" +} diff --git a/site/public/v1/games/outer-wilds-echoes-of-the-eye/index.json b/site/public/v1/games/outer-wilds-echoes-of-the-eye/index.json new file mode 100644 index 000000000000..4a521b3cf064 --- /dev/null +++ b/site/public/v1/games/outer-wilds-echoes-of-the-eye/index.json @@ -0,0 +1,33 @@ +{ + "id": 105171, + "slug": "outer-wilds-echoes-of-the-eye", + "name": "Outer Wilds: Echoes of the Eye", + "release_date": "2021-09-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "action-adventure game" + ], + "stores": [], + "developers": [ + "Mobius Digital" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108827615" + ], + "created_at": "2026-07-10T10:10:30.866570", + "updated_at": "2026-07-10T10:10:30.866570", + "url": "/v1/games/outer-wilds-echoes-of-the-eye" +} diff --git a/site/public/v1/games/outlast-bundle-of-terror/index.json b/site/public/v1/games/outlast-bundle-of-terror/index.json new file mode 100644 index 000000000000..098f4bf3daf1 --- /dev/null +++ b/site/public/v1/games/outlast-bundle-of-terror/index.json @@ -0,0 +1,29 @@ +{ + "id": 105198, + "slug": "outlast-bundle-of-terror", + "name": "Outlast: Bundle of Terror", + "release_date": "2018-02-27", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [ + "Red Barrels" + ], + "publishers": [ + "Red Barrels" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q92203639" + ], + "created_at": "2026-07-10T10:10:30.873464", + "updated_at": "2026-07-10T10:10:30.873464", + "url": "/v1/games/outlast-bundle-of-terror" +} diff --git a/site/public/v1/games/outlaws-handful-of-missions/index.json b/site/public/v1/games/outlaws-handful-of-missions/index.json new file mode 100644 index 000000000000..71cdc31908a7 --- /dev/null +++ b/site/public/v1/games/outlaws-handful-of-missions/index.json @@ -0,0 +1,25 @@ +{ + "id": 105214, + "slug": "outlaws-handful-of-missions", + "name": "Outlaws: Handful of Missions", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123051110" + ], + "created_at": "2026-07-10T10:10:30.877497", + "updated_at": "2026-07-10T10:10:30.877497", + "url": "/v1/games/outlaws-handful-of-missions" +} diff --git a/site/public/v1/games/outward-definitive-edition/index.json b/site/public/v1/games/outward-definitive-edition/index.json new file mode 100644 index 000000000000..2f32bb127daf --- /dev/null +++ b/site/public/v1/games/outward-definitive-edition/index.json @@ -0,0 +1,30 @@ +{ + "id": 105302, + "slug": "outward-definitive-edition", + "name": "Outward: Definitive Edition", + "release_date": "2022-05-17", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Nine Dots Studio" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112246302" + ], + "created_at": "2026-07-10T10:10:30.900458", + "updated_at": "2026-07-10T10:10:30.900458", + "url": "/v1/games/outward-definitive-edition" +} diff --git a/site/public/v1/games/overlord-raising-hell/index.json b/site/public/v1/games/overlord-raising-hell/index.json new file mode 100644 index 000000000000..8ad1a4157453 --- /dev/null +++ b/site/public/v1/games/overlord-raising-hell/index.json @@ -0,0 +1,35 @@ +{ + "id": 105457, + "slug": "overlord-raising-hell", + "name": "Overlord: Raising Hell", + "release_date": "2008-02-15", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "PlayStation 3", + "Microsoft Windows" + ], + "genres": [ + "action-adventure game" + ], + "stores": [], + "developers": [ + "Triumph Studios" + ], + "publishers": [ + "Codemasters" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q825346" + ], + "created_at": "2026-07-10T10:10:30.941481", + "updated_at": "2026-07-10T10:10:30.941481", + "url": "/v1/games/overlord-raising-hell" +} diff --git a/site/public/v1/games/overwatch-2-1000-overwatch-coins/index.json b/site/public/v1/games/overwatch-2-1000-overwatch-coins/index.json new file mode 100644 index 000000000000..901e9781a2f6 --- /dev/null +++ b/site/public/v1/games/overwatch-2-1000-overwatch-coins/index.json @@ -0,0 +1,36 @@ +{ + "id": 105509, + "slug": "overwatch-2-1000-overwatch-coins", + "name": "Overwatch® 2 - 1000 Overwatch Coins", + "release_date": "2023-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 5", + "PlayStation 4" + ], + "genres": [ + "first-person shooter", + "science fiction video game", + "hero shooter" + ], + "stores": [], + "developers": [ + "Blizzard Entertainment" + ], + "publishers": [ + "Blizzard Entertainment" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124658830" + ], + "created_at": "2026-07-10T10:10:30.955184", + "updated_at": "2026-07-10T10:10:30.955184", + "url": "/v1/games/overwatch-2-1000-overwatch-coins" +} diff --git a/site/public/v1/games/overwatch-2-10000-5000-bonus-overwatch-coins-limited-time/index.json b/site/public/v1/games/overwatch-2-10000-5000-bonus-overwatch-coins-limited-time/index.json new file mode 100644 index 000000000000..949e48eb51cc --- /dev/null +++ b/site/public/v1/games/overwatch-2-10000-5000-bonus-overwatch-coins-limited-time/index.json @@ -0,0 +1,31 @@ +{ + "id": 105510, + "slug": "overwatch-2-10000-5000-bonus-overwatch-coins-limited-time", + "name": "Overwatch® 2 - 10000 (+5000 Bonus) Overwatch Coins - Limited Time!", + "release_date": "2023-10-31", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Blizzard Entertainment" + ], + "publishers": [ + "Blizzard Entertainment" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124637531" + ], + "created_at": "2026-07-10T10:10:30.955184", + "updated_at": "2026-07-10T10:10:30.955184", + "url": "/v1/games/overwatch-2-10000-5000-bonus-overwatch-coins-limited-time" +} diff --git a/site/public/v1/games/overwatch-2-2000-200-bonus-overwatch-coins/index.json b/site/public/v1/games/overwatch-2-2000-200-bonus-overwatch-coins/index.json new file mode 100644 index 000000000000..86b65ff4dbd8 --- /dev/null +++ b/site/public/v1/games/overwatch-2-2000-200-bonus-overwatch-coins/index.json @@ -0,0 +1,36 @@ +{ + "id": 105511, + "slug": "overwatch-2-2000-200-bonus-overwatch-coins", + "name": "Overwatch® 2 - 2000 (+200 Bonus) Overwatch Coins", + "release_date": "2022-03-10", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 5", + "PlayStation 4" + ], + "genres": [ + "first-person shooter", + "science fiction video game", + "hero shooter" + ], + "stores": [], + "developers": [ + "Blizzard Entertainment" + ], + "publishers": [ + "Blizzard Entertainment" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125610560" + ], + "created_at": "2026-07-10T10:10:30.955184", + "updated_at": "2026-07-10T10:10:30.955184", + "url": "/v1/games/overwatch-2-2000-200-bonus-overwatch-coins" +} diff --git a/site/public/v1/games/overwatch-2-500-overwatch-coins/index.json b/site/public/v1/games/overwatch-2-500-overwatch-coins/index.json new file mode 100644 index 000000000000..46ea18695a11 --- /dev/null +++ b/site/public/v1/games/overwatch-2-500-overwatch-coins/index.json @@ -0,0 +1,36 @@ +{ + "id": 105512, + "slug": "overwatch-2-500-overwatch-coins", + "name": "Overwatch® 2 - 500 Overwatch Coins", + "release_date": "2022-03-10", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 5", + "PlayStation 4" + ], + "genres": [ + "first-person shooter", + "science fiction video game", + "hero shooter" + ], + "stores": [], + "developers": [ + "Blizzard Entertainment" + ], + "publishers": [ + "Blizzard Entertainment" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125417750" + ], + "created_at": "2026-07-10T10:10:30.956184", + "updated_at": "2026-07-10T10:10:30.956184", + "url": "/v1/games/overwatch-2-500-overwatch-coins" +} diff --git a/site/public/v1/games/overwatch-2-5000-2500-bonus-overwatch-coins-limited-time/index.json b/site/public/v1/games/overwatch-2-5000-2500-bonus-overwatch-coins-limited-time/index.json new file mode 100644 index 000000000000..77056510d335 --- /dev/null +++ b/site/public/v1/games/overwatch-2-5000-2500-bonus-overwatch-coins-limited-time/index.json @@ -0,0 +1,35 @@ +{ + "id": 105513, + "slug": "overwatch-2-5000-2500-bonus-overwatch-coins-limited-time", + "name": "Overwatch® 2 - 5000 (+2500 Bonus) Overwatch Coins - Limited Time!", + "release_date": "2023-10-31", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "science fiction video game", + "hero shooter" + ], + "stores": [], + "developers": [ + "Blizzard Entertainment" + ], + "publishers": [ + "Blizzard Entertainment" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124657964" + ], + "created_at": "2026-07-10T10:10:30.956184", + "updated_at": "2026-07-10T10:10:30.956184", + "url": "/v1/games/overwatch-2-5000-2500-bonus-overwatch-coins-limited-time" +} diff --git a/site/public/v1/games/overwatch-2-complete-hero-collection-upgrade/index.json b/site/public/v1/games/overwatch-2-complete-hero-collection-upgrade/index.json new file mode 100644 index 000000000000..2fcd0318cd8a --- /dev/null +++ b/site/public/v1/games/overwatch-2-complete-hero-collection-upgrade/index.json @@ -0,0 +1,37 @@ +{ + "id": 105514, + "slug": "overwatch-2-complete-hero-collection-upgrade", + "name": "Overwatch® 2: Complete Hero Collection Upgrade", + "release_date": "2023-08-10", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 5", + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "science fiction video game", + "hero shooter" + ], + "stores": [], + "developers": [ + "Blizzard Entertainment" + ], + "publishers": [ + "Blizzard Entertainment" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124658733" + ], + "created_at": "2026-07-10T10:10:30.956184", + "updated_at": "2026-07-10T10:10:30.956184", + "url": "/v1/games/overwatch-2-complete-hero-collection-upgrade" +} diff --git a/site/public/v1/games/overwatch-2-complete-hero-collection/index.json b/site/public/v1/games/overwatch-2-complete-hero-collection/index.json new file mode 100644 index 000000000000..828c1a5c9233 --- /dev/null +++ b/site/public/v1/games/overwatch-2-complete-hero-collection/index.json @@ -0,0 +1,35 @@ +{ + "id": 105515, + "slug": "overwatch-2-complete-hero-collection", + "name": "Overwatch® 2 - Complete Hero Collection", + "release_date": "2023-08-10", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "science fiction video game", + "hero shooter" + ], + "stores": [], + "developers": [ + "Blizzard Entertainment" + ], + "publishers": [ + "Blizzard Entertainment" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124658751" + ], + "created_at": "2026-07-10T10:10:30.956184", + "updated_at": "2026-07-10T10:10:30.956184", + "url": "/v1/games/overwatch-2-complete-hero-collection" +} diff --git a/site/public/v1/games/overwatch-2-hero-collection/index.json b/site/public/v1/games/overwatch-2-hero-collection/index.json new file mode 100644 index 000000000000..c6a84a9401da --- /dev/null +++ b/site/public/v1/games/overwatch-2-hero-collection/index.json @@ -0,0 +1,35 @@ +{ + "id": 105516, + "slug": "overwatch-2-hero-collection", + "name": "Overwatch® 2 - Hero Collection", + "release_date": "2023-08-10", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "science fiction video game", + "hero shooter" + ], + "stores": [], + "developers": [ + "Blizzard Entertainment" + ], + "publishers": [ + "Blizzard Entertainment" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124658742" + ], + "created_at": "2026-07-10T10:10:30.956184", + "updated_at": "2026-07-10T10:10:30.956184", + "url": "/v1/games/overwatch-2-hero-collection" +} diff --git a/site/public/v1/games/overwatch-2-invasion-bundle/index.json b/site/public/v1/games/overwatch-2-invasion-bundle/index.json new file mode 100644 index 000000000000..baebc4426e34 --- /dev/null +++ b/site/public/v1/games/overwatch-2-invasion-bundle/index.json @@ -0,0 +1,35 @@ +{ + "id": 105517, + "slug": "overwatch-2-invasion-bundle", + "name": "Overwatch® 2 - Invasion Bundle", + "release_date": "2023-08-10", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "science fiction video game", + "hero shooter" + ], + "stores": [], + "developers": [ + "Blizzard Entertainment" + ], + "publishers": [ + "Blizzard Entertainment" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125417667" + ], + "created_at": "2026-07-10T10:10:30.956184", + "updated_at": "2026-07-10T10:10:30.956184", + "url": "/v1/games/overwatch-2-invasion-bundle" +} diff --git a/site/public/v1/games/overwatch-2-invasion-ultimate-bundle-upgrade/index.json b/site/public/v1/games/overwatch-2-invasion-ultimate-bundle-upgrade/index.json new file mode 100644 index 000000000000..8e8d89e794dc --- /dev/null +++ b/site/public/v1/games/overwatch-2-invasion-ultimate-bundle-upgrade/index.json @@ -0,0 +1,35 @@ +{ + "id": 105518, + "slug": "overwatch-2-invasion-ultimate-bundle-upgrade", + "name": "Overwatch® 2: Invasion Ultimate Bundle Upgrade", + "release_date": "2023-08-10", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "science fiction video game", + "hero shooter" + ], + "stores": [], + "developers": [ + "Blizzard Entertainment" + ], + "publishers": [ + "Blizzard Entertainment" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125386673" + ], + "created_at": "2026-07-10T10:10:30.957189", + "updated_at": "2026-07-10T10:10:30.957189", + "url": "/v1/games/overwatch-2-invasion-ultimate-bundle-upgrade" +} diff --git a/site/public/v1/games/overwatch-2-invasion-ultimate-bundle/index.json b/site/public/v1/games/overwatch-2-invasion-ultimate-bundle/index.json new file mode 100644 index 000000000000..6118aa9f966c --- /dev/null +++ b/site/public/v1/games/overwatch-2-invasion-ultimate-bundle/index.json @@ -0,0 +1,35 @@ +{ + "id": 105519, + "slug": "overwatch-2-invasion-ultimate-bundle", + "name": "Overwatch® 2 - Invasion Ultimate Bundle", + "release_date": "2023-08-10", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "science fiction video game", + "hero shooter" + ], + "stores": [], + "developers": [ + "Blizzard Entertainment" + ], + "publishers": [ + "Blizzard Entertainment" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125417647" + ], + "created_at": "2026-07-10T10:10:30.957189", + "updated_at": "2026-07-10T10:10:30.957189", + "url": "/v1/games/overwatch-2-invasion-ultimate-bundle" +} diff --git a/site/public/v1/games/overwatch-2-pink-mercy-skin/index.json b/site/public/v1/games/overwatch-2-pink-mercy-skin/index.json new file mode 100644 index 000000000000..77e469336e69 --- /dev/null +++ b/site/public/v1/games/overwatch-2-pink-mercy-skin/index.json @@ -0,0 +1,37 @@ +{ + "id": 105520, + "slug": "overwatch-2-pink-mercy-skin", + "name": "Overwatch® 2: Pink Mercy Skin", + "release_date": "2024-06-25", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 5", + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "science fiction video game", + "hero shooter" + ], + "stores": [], + "developers": [ + "Blizzard Entertainment" + ], + "publishers": [ + "Blizzard Entertainment" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126954055" + ], + "created_at": "2026-07-10T10:10:30.957189", + "updated_at": "2026-07-10T10:10:30.957189", + "url": "/v1/games/overwatch-2-pink-mercy-skin" +} diff --git a/site/public/v1/games/overwatch-2-playstation-plus-mega-bundle/index.json b/site/public/v1/games/overwatch-2-playstation-plus-mega-bundle/index.json new file mode 100644 index 000000000000..c8907401b782 --- /dev/null +++ b/site/public/v1/games/overwatch-2-playstation-plus-mega-bundle/index.json @@ -0,0 +1,36 @@ +{ + "id": 105521, + "slug": "overwatch-2-playstation-plus-mega-bundle", + "name": "Overwatch® 2 - PlayStation® Plus Mega Bundle", + "release_date": "2024-02-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 5", + "PlayStation 4" + ], + "genres": [ + "first-person shooter", + "science fiction video game", + "hero shooter" + ], + "stores": [], + "developers": [ + "Blizzard Entertainment" + ], + "publishers": [ + "Blizzard Entertainment" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125417725" + ], + "created_at": "2026-07-10T10:10:30.957189", + "updated_at": "2026-07-10T10:10:30.957189", + "url": "/v1/games/overwatch-2-playstation-plus-mega-bundle" +} diff --git a/site/public/v1/games/overwatch-2-reinhardt-mythic-weapon-skin-bundle/index.json b/site/public/v1/games/overwatch-2-reinhardt-mythic-weapon-skin-bundle/index.json new file mode 100644 index 000000000000..a2d6df1379fb --- /dev/null +++ b/site/public/v1/games/overwatch-2-reinhardt-mythic-weapon-skin-bundle/index.json @@ -0,0 +1,35 @@ +{ + "id": 105522, + "slug": "overwatch-2-reinhardt-mythic-weapon-skin-bundle", + "name": "Overwatch® 2: Reinhardt Mythic Weapon Skin Bundle", + "release_date": "2024-07-23", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "science fiction video game", + "hero shooter" + ], + "stores": [], + "developers": [ + "Blizzard Entertainment" + ], + "publishers": [ + "Blizzard Entertainment" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q128822557" + ], + "created_at": "2026-07-10T10:10:30.957189", + "updated_at": "2026-07-10T10:10:30.957189", + "url": "/v1/games/overwatch-2-reinhardt-mythic-weapon-skin-bundle" +} diff --git a/site/public/v1/games/overwatch-2-rose-gold-mercy-bundle/index.json b/site/public/v1/games/overwatch-2-rose-gold-mercy-bundle/index.json new file mode 100644 index 000000000000..fd200e305266 --- /dev/null +++ b/site/public/v1/games/overwatch-2-rose-gold-mercy-bundle/index.json @@ -0,0 +1,37 @@ +{ + "id": 105523, + "slug": "overwatch-2-rose-gold-mercy-bundle", + "name": "Overwatch® 2: Rose Gold Mercy Bundle", + "release_date": "2024-06-25", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 5", + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "science fiction video game", + "hero shooter" + ], + "stores": [], + "developers": [ + "Blizzard Entertainment" + ], + "publishers": [ + "Blizzard Entertainment" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126954064" + ], + "created_at": "2026-07-10T10:10:30.957189", + "updated_at": "2026-07-10T10:10:30.957189", + "url": "/v1/games/overwatch-2-rose-gold-mercy-bundle" +} diff --git a/site/public/v1/games/overwatch-2-starter-pack-season-11/index.json b/site/public/v1/games/overwatch-2-starter-pack-season-11/index.json new file mode 100644 index 000000000000..f45bcd9f2a37 --- /dev/null +++ b/site/public/v1/games/overwatch-2-starter-pack-season-11/index.json @@ -0,0 +1,37 @@ +{ + "id": 105524, + "slug": "overwatch-2-starter-pack-season-11", + "name": "Overwatch® 2 Starter Pack: Season 11", + "release_date": "2024-06-20", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 5", + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "science fiction video game", + "hero shooter" + ], + "stores": [], + "developers": [ + "Blizzard Entertainment" + ], + "publishers": [ + "Blizzard Entertainment" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126953983" + ], + "created_at": "2026-07-10T10:10:30.958186", + "updated_at": "2026-07-10T10:10:30.958186", + "url": "/v1/games/overwatch-2-starter-pack-season-11" +} diff --git a/site/public/v1/games/overwatch-2-starter-pack-season-8/index.json b/site/public/v1/games/overwatch-2-starter-pack-season-8/index.json new file mode 100644 index 000000000000..de0eae0cdc1d --- /dev/null +++ b/site/public/v1/games/overwatch-2-starter-pack-season-8/index.json @@ -0,0 +1,35 @@ +{ + "id": 105525, + "slug": "overwatch-2-starter-pack-season-8", + "name": "Overwatch® 2 Starter Pack: Season 8", + "release_date": "2023-12-05", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "science fiction video game", + "hero shooter" + ], + "stores": [], + "developers": [ + "Blizzard Entertainment" + ], + "publishers": [ + "Blizzard Entertainment" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124657826" + ], + "created_at": "2026-07-10T10:10:30.958186", + "updated_at": "2026-07-10T10:10:30.958186", + "url": "/v1/games/overwatch-2-starter-pack-season-8" +} diff --git a/site/public/v1/games/overwatch-2-starter-pack-season-seven/index.json b/site/public/v1/games/overwatch-2-starter-pack-season-seven/index.json new file mode 100644 index 000000000000..f90d1630cf5d --- /dev/null +++ b/site/public/v1/games/overwatch-2-starter-pack-season-seven/index.json @@ -0,0 +1,35 @@ +{ + "id": 105526, + "slug": "overwatch-2-starter-pack-season-seven", + "name": "Overwatch® 2 - Starter Pack: Season Seven", + "release_date": "2023-10-10", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "science fiction video game", + "hero shooter" + ], + "stores": [], + "developers": [ + "Blizzard Entertainment" + ], + "publishers": [ + "Blizzard Entertainment" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124657985" + ], + "created_at": "2026-07-10T10:10:30.958186", + "updated_at": "2026-07-10T10:10:30.958186", + "url": "/v1/games/overwatch-2-starter-pack-season-seven" +} diff --git a/site/public/v1/games/overwatch-2-ultimate-battle-pass-bundle-season-10/index.json b/site/public/v1/games/overwatch-2-ultimate-battle-pass-bundle-season-10/index.json new file mode 100644 index 000000000000..0ffe5e9f3fed --- /dev/null +++ b/site/public/v1/games/overwatch-2-ultimate-battle-pass-bundle-season-10/index.json @@ -0,0 +1,35 @@ +{ + "id": 105527, + "slug": "overwatch-2-ultimate-battle-pass-bundle-season-10", + "name": "Overwatch® 2 - Ultimate Battle Pass Bundle: Season 10", + "release_date": "2024-04-16", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "science fiction video game", + "hero shooter" + ], + "stores": [], + "developers": [ + "Blizzard Entertainment" + ], + "publishers": [ + "Blizzard Entertainment" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125572608" + ], + "created_at": "2026-07-10T10:10:30.958186", + "updated_at": "2026-07-10T10:10:30.958186", + "url": "/v1/games/overwatch-2-ultimate-battle-pass-bundle-season-10" +} diff --git a/site/public/v1/games/overwatch-2-ultimate-battle-pass-bundle-season-11/index.json b/site/public/v1/games/overwatch-2-ultimate-battle-pass-bundle-season-11/index.json new file mode 100644 index 000000000000..8389be47d52c --- /dev/null +++ b/site/public/v1/games/overwatch-2-ultimate-battle-pass-bundle-season-11/index.json @@ -0,0 +1,37 @@ +{ + "id": 105528, + "slug": "overwatch-2-ultimate-battle-pass-bundle-season-11", + "name": "Overwatch® 2 - Ultimate Battle Pass Bundle: Season 11", + "release_date": "2024-06-20", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 5", + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "science fiction video game", + "hero shooter" + ], + "stores": [], + "developers": [ + "Blizzard Entertainment" + ], + "publishers": [ + "Blizzard Entertainment" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126953951" + ], + "created_at": "2026-07-10T10:10:30.958186", + "updated_at": "2026-07-10T10:10:30.958186", + "url": "/v1/games/overwatch-2-ultimate-battle-pass-bundle-season-11" +} diff --git a/site/public/v1/games/overwatch-2-ultimate-battle-pass-bundle-season-8/index.json b/site/public/v1/games/overwatch-2-ultimate-battle-pass-bundle-season-8/index.json new file mode 100644 index 000000000000..7d8a77362c33 --- /dev/null +++ b/site/public/v1/games/overwatch-2-ultimate-battle-pass-bundle-season-8/index.json @@ -0,0 +1,35 @@ +{ + "id": 105529, + "slug": "overwatch-2-ultimate-battle-pass-bundle-season-8", + "name": "Overwatch® 2 - Ultimate Battle Pass Bundle: Season 8", + "release_date": "2023-12-05", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "science fiction video game", + "hero shooter" + ], + "stores": [], + "developers": [ + "Blizzard Entertainment" + ], + "publishers": [ + "Blizzard Entertainment" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124637561" + ], + "created_at": "2026-07-10T10:10:30.959190", + "updated_at": "2026-07-10T10:10:30.959190", + "url": "/v1/games/overwatch-2-ultimate-battle-pass-bundle-season-8" +} diff --git a/site/public/v1/games/overwatch-2-ultimate-battle-pass-bundle-season-9/index.json b/site/public/v1/games/overwatch-2-ultimate-battle-pass-bundle-season-9/index.json new file mode 100644 index 000000000000..d20f6226e992 --- /dev/null +++ b/site/public/v1/games/overwatch-2-ultimate-battle-pass-bundle-season-9/index.json @@ -0,0 +1,35 @@ +{ + "id": 105530, + "slug": "overwatch-2-ultimate-battle-pass-bundle-season-9", + "name": "Overwatch® 2 - Ultimate Battle Pass Bundle: Season 9", + "release_date": "2024-02-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "science fiction video game", + "hero shooter" + ], + "stores": [], + "developers": [ + "Blizzard Entertainment" + ], + "publishers": [ + "Blizzard Entertainment" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124637534" + ], + "created_at": "2026-07-10T10:10:30.959190", + "updated_at": "2026-07-10T10:10:30.959190", + "url": "/v1/games/overwatch-2-ultimate-battle-pass-bundle-season-9" +} diff --git a/site/public/v1/games/overwatch-2-ultimate-battle-pass-bundle-season-seven/index.json b/site/public/v1/games/overwatch-2-ultimate-battle-pass-bundle-season-seven/index.json new file mode 100644 index 000000000000..edd4e62b532c --- /dev/null +++ b/site/public/v1/games/overwatch-2-ultimate-battle-pass-bundle-season-seven/index.json @@ -0,0 +1,35 @@ +{ + "id": 105531, + "slug": "overwatch-2-ultimate-battle-pass-bundle-season-seven", + "name": "Overwatch® 2 - Ultimate Battle Pass Bundle: Season Seven", + "release_date": "2023-10-10", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "science fiction video game", + "hero shooter" + ], + "stores": [], + "developers": [ + "Blizzard Entertainment" + ], + "publishers": [ + "Blizzard Entertainment" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124637565" + ], + "created_at": "2026-07-10T10:10:30.959190", + "updated_at": "2026-07-10T10:10:30.959190", + "url": "/v1/games/overwatch-2-ultimate-battle-pass-bundle-season-seven" +} diff --git a/site/public/v1/games/overwatch-2-watchpoint-pack/index.json b/site/public/v1/games/overwatch-2-watchpoint-pack/index.json new file mode 100644 index 000000000000..351545af3199 --- /dev/null +++ b/site/public/v1/games/overwatch-2-watchpoint-pack/index.json @@ -0,0 +1,38 @@ +{ + "id": 105532, + "slug": "overwatch-2-watchpoint-pack", + "name": "Overwatch 2: Watchpoint Pack", + "release_date": "2022-10-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 5", + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "science fiction video game", + "hero shooter" + ], + "stores": [], + "developers": [ + "Blizzard Entertainment" + ], + "publishers": [ + "Blizzard Entertainment" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125386712" + ], + "created_at": "2026-07-10T10:10:30.959190", + "updated_at": "2026-07-10T10:10:30.959190", + "url": "/v1/games/overwatch-2-watchpoint-pack" +} diff --git a/site/public/v1/games/overwatch-collector-s-edition/index.json b/site/public/v1/games/overwatch-collector-s-edition/index.json new file mode 100644 index 000000000000..cefec162e1c7 --- /dev/null +++ b/site/public/v1/games/overwatch-collector-s-edition/index.json @@ -0,0 +1,36 @@ +{ + "id": 105533, + "slug": "overwatch-collector-s-edition", + "name": "Overwatch: Collector's Edition", + "release_date": "2016-05-27", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "science fiction video game", + "hero shooter" + ], + "stores": [], + "developers": [ + "Blizzard Entertainment" + ], + "publishers": [ + "Blizzard Entertainment" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109370611" + ], + "created_at": "2026-07-10T10:10:30.959190", + "updated_at": "2026-07-10T10:10:30.959190", + "url": "/v1/games/overwatch-collector-s-edition" +} diff --git a/site/public/v1/games/overwatch-game-of-the-year-edition/index.json b/site/public/v1/games/overwatch-game-of-the-year-edition/index.json new file mode 100644 index 000000000000..a8ee21a75050 --- /dev/null +++ b/site/public/v1/games/overwatch-game-of-the-year-edition/index.json @@ -0,0 +1,36 @@ +{ + "id": 105534, + "slug": "overwatch-game-of-the-year-edition", + "name": "Overwatch: Game of the Year Edition", + "release_date": "2017-05-23", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "science fiction video game", + "hero shooter" + ], + "stores": [], + "developers": [ + "Blizzard Entertainment" + ], + "publishers": [ + "Blizzard Entertainment" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109370520" + ], + "created_at": "2026-07-10T10:10:30.959190", + "updated_at": "2026-07-10T10:10:30.959190", + "url": "/v1/games/overwatch-game-of-the-year-edition" +} diff --git a/site/public/v1/games/overwatch-league-100-league-tokens/index.json b/site/public/v1/games/overwatch-league-100-league-tokens/index.json new file mode 100644 index 000000000000..041cff9a3674 --- /dev/null +++ b/site/public/v1/games/overwatch-league-100-league-tokens/index.json @@ -0,0 +1,36 @@ +{ + "id": 105535, + "slug": "overwatch-league-100-league-tokens", + "name": "Overwatch League™ - 100 League Tokens", + "release_date": "2018-09-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 5", + "PlayStation 4" + ], + "genres": [ + "first-person shooter", + "science fiction video game", + "hero shooter" + ], + "stores": [], + "developers": [ + "Blizzard Entertainment" + ], + "publishers": [ + "Blizzard Entertainment" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125417765" + ], + "created_at": "2026-07-10T10:10:30.959190", + "updated_at": "2026-07-10T10:10:30.959190", + "url": "/v1/games/overwatch-league-100-league-tokens" +} diff --git a/site/public/v1/games/overwatch-legendary-edition/index.json b/site/public/v1/games/overwatch-legendary-edition/index.json new file mode 100644 index 000000000000..9126ad38f20e --- /dev/null +++ b/site/public/v1/games/overwatch-legendary-edition/index.json @@ -0,0 +1,37 @@ +{ + "id": 105536, + "slug": "overwatch-legendary-edition", + "name": "Overwatch: Legendary Edition", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "science fiction video game", + "hero shooter" + ], + "stores": [], + "developers": [ + "Blizzard Entertainment" + ], + "publishers": [ + "Blizzard Entertainment" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109370559" + ], + "created_at": "2026-07-10T10:10:30.960176", + "updated_at": "2026-07-10T10:10:30.960176", + "url": "/v1/games/overwatch-legendary-edition" +} diff --git a/site/public/v1/games/overwatch-origins-edition/index.json b/site/public/v1/games/overwatch-origins-edition/index.json new file mode 100644 index 000000000000..94a2879feffc --- /dev/null +++ b/site/public/v1/games/overwatch-origins-edition/index.json @@ -0,0 +1,36 @@ +{ + "id": 105537, + "slug": "overwatch-origins-edition", + "name": "Overwatch: Origins Edition", + "release_date": "2016-05-23", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "science fiction video game", + "hero shooter" + ], + "stores": [], + "developers": [ + "Blizzard Entertainment" + ], + "publishers": [ + "Blizzard Entertainment" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109370542" + ], + "created_at": "2026-07-10T10:10:30.960176", + "updated_at": "2026-07-10T10:10:30.960176", + "url": "/v1/games/overwatch-origins-edition" +} diff --git a/site/public/v1/games/p-51d-high-stakes-campaign/index.json b/site/public/v1/games/p-51d-high-stakes-campaign/index.json new file mode 100644 index 000000000000..5d83793cbfd2 --- /dev/null +++ b/site/public/v1/games/p-51d-high-stakes-campaign/index.json @@ -0,0 +1,31 @@ +{ + "id": 105629, + "slug": "p-51d-high-stakes-campaign", + "name": "P-51D: High Stakes Campaign", + "release_date": "2017-02-10", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Eagle Dynamics" + ], + "publishers": [ + "Eagle Dynamics" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097429" + ], + "created_at": "2026-07-10T10:10:30.990193", + "updated_at": "2026-07-10T10:10:30.990193", + "url": "/v1/games/p-51d-high-stakes-campaign" +} diff --git a/site/public/v1/games/p-big-sea-story-5-special/index.json b/site/public/v1/games/p-big-sea-story-5-special/index.json new file mode 100644 index 000000000000..b28bc33811d3 --- /dev/null +++ b/site/public/v1/games/p-big-sea-story-5-special/index.json @@ -0,0 +1,25 @@ +{ + "id": 105636, + "slug": "p-big-sea-story-5-special", + "name": "P Big Sea Story 5 Special", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140191550" + ], + "created_at": "2026-07-10T10:10:30.992251", + "updated_at": "2026-07-10T10:10:30.992251", + "url": "/v1/games/p-big-sea-story-5-special" +} diff --git a/site/public/v1/games/p-big-sea-story-5/index.json b/site/public/v1/games/p-big-sea-story-5/index.json new file mode 100644 index 000000000000..76915383e3de --- /dev/null +++ b/site/public/v1/games/p-big-sea-story-5/index.json @@ -0,0 +1,25 @@ +{ + "id": 105637, + "slug": "p-big-sea-story-5", + "name": "P Big Sea Story 5", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131122111" + ], + "created_at": "2026-07-10T10:10:30.992251", + "updated_at": "2026-07-10T10:10:30.992251", + "url": "/v1/games/p-big-sea-story-5" +} diff --git a/site/public/v1/games/p-great-sea-story-4-special/index.json b/site/public/v1/games/p-great-sea-story-4-special/index.json new file mode 100644 index 000000000000..01af337358d0 --- /dev/null +++ b/site/public/v1/games/p-great-sea-story-4-special/index.json @@ -0,0 +1,25 @@ +{ + "id": 105642, + "slug": "p-great-sea-story-4-special", + "name": "P Great Sea Story 4 Special", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131122048" + ], + "created_at": "2026-07-10T10:10:30.994246", + "updated_at": "2026-07-10T10:10:30.994246", + "url": "/v1/games/p-great-sea-story-4-special" +} diff --git a/site/public/v1/games/p-h-a-s-e-of-resurgence/index.json b/site/public/v1/games/p-h-a-s-e-of-resurgence/index.json new file mode 100644 index 000000000000..95ead952b4ba --- /dev/null +++ b/site/public/v1/games/p-h-a-s-e-of-resurgence/index.json @@ -0,0 +1,27 @@ +{ + "id": 105643, + "slug": "p-h-a-s-e-of-resurgence", + "name": "P.H.A.S.E. of Resurgence", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [ + "Sibilant Interactive" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110690029" + ], + "created_at": "2026-07-10T10:10:30.994246", + "updated_at": "2026-07-10T10:10:30.994246", + "url": "/v1/games/p-h-a-s-e-of-resurgence" +} diff --git a/site/public/v1/games/p-sea-story-kiwami-japan/index.json b/site/public/v1/games/p-sea-story-kiwami-japan/index.json new file mode 100644 index 000000000000..31aeac211cf3 --- /dev/null +++ b/site/public/v1/games/p-sea-story-kiwami-japan/index.json @@ -0,0 +1,25 @@ +{ + "id": 105658, + "slug": "p-sea-story-kiwami-japan", + "name": "P Sea Story Kiwami Japan", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134650546" + ], + "created_at": "2026-07-10T10:10:30.998273", + "updated_at": "2026-07-10T10:10:30.998273", + "url": "/v1/games/p-sea-story-kiwami-japan" +} diff --git a/site/public/v1/games/p-super-sea-story-in-okinawa-5/index.json b/site/public/v1/games/p-super-sea-story-in-okinawa-5/index.json new file mode 100644 index 000000000000..7f7b7632e6e9 --- /dev/null +++ b/site/public/v1/games/p-super-sea-story-in-okinawa-5/index.json @@ -0,0 +1,25 @@ +{ + "id": 105659, + "slug": "p-super-sea-story-in-okinawa-5", + "name": "P Super Sea Story in Okinawa 5", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134393959" + ], + "created_at": "2026-07-10T10:10:30.999197", + "updated_at": "2026-07-10T10:10:30.999197", + "url": "/v1/games/p-super-sea-story-in-okinawa-5" +} diff --git a/site/public/v1/games/p-super-sea-story-in-okinawa-6/index.json b/site/public/v1/games/p-super-sea-story-in-okinawa-6/index.json new file mode 100644 index 000000000000..794e36273df4 --- /dev/null +++ b/site/public/v1/games/p-super-sea-story-in-okinawa-6/index.json @@ -0,0 +1,25 @@ +{ + "id": 105660, + "slug": "p-super-sea-story-in-okinawa-6", + "name": "P Super Sea Story in Okinawa 6", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140191582" + ], + "created_at": "2026-07-10T10:10:30.999197", + "updated_at": "2026-07-10T10:10:30.999197", + "url": "/v1/games/p-super-sea-story-in-okinawa-6" +} diff --git a/site/public/v1/games/pa-drum-sea-story-in-japan/index.json b/site/public/v1/games/pa-drum-sea-story-in-japan/index.json new file mode 100644 index 000000000000..00e9554cb72f --- /dev/null +++ b/site/public/v1/games/pa-drum-sea-story-in-japan/index.json @@ -0,0 +1,25 @@ +{ + "id": 105676, + "slug": "pa-drum-sea-story-in-japan", + "name": "PA Drum Sea Story in Japan", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131143193" + ], + "created_at": "2026-07-10T10:10:31.004269", + "updated_at": "2026-07-10T10:10:31.004269", + "url": "/v1/games/pa-drum-sea-story-in-japan" +} diff --git a/site/public/v1/games/pa-drum-sea-story-in-okinawa/index.json b/site/public/v1/games/pa-drum-sea-story-in-okinawa/index.json new file mode 100644 index 000000000000..77a82ad8ee9b --- /dev/null +++ b/site/public/v1/games/pa-drum-sea-story-in-okinawa/index.json @@ -0,0 +1,25 @@ +{ + "id": 105677, + "slug": "pa-drum-sea-story-in-okinawa", + "name": "PA Drum Sea Story in Okinawa", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131143172" + ], + "created_at": "2026-07-10T10:10:31.004269", + "updated_at": "2026-07-10T10:10:31.004269", + "url": "/v1/games/pa-drum-sea-story-in-okinawa" +} diff --git a/site/public/v1/games/pa-new-sea-story/index.json b/site/public/v1/games/pa-new-sea-story/index.json new file mode 100644 index 000000000000..6c377fdd6d6c --- /dev/null +++ b/site/public/v1/games/pa-new-sea-story/index.json @@ -0,0 +1,25 @@ +{ + "id": 105679, + "slug": "pa-new-sea-story", + "name": "PA New Sea Story", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q132160353" + ], + "created_at": "2026-07-10T10:10:31.005199", + "updated_at": "2026-07-10T10:10:31.005199", + "url": "/v1/games/pa-new-sea-story" +} diff --git a/site/public/v1/games/pac-man-anniversary-arcade-machines/index.json b/site/public/v1/games/pac-man-anniversary-arcade-machines/index.json new file mode 100644 index 000000000000..6f4261717485 --- /dev/null +++ b/site/public/v1/games/pac-man-anniversary-arcade-machines/index.json @@ -0,0 +1,25 @@ +{ + "id": 105697, + "slug": "pac-man-anniversary-arcade-machines", + "name": "Pac-Man anniversary arcade machines", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7121850" + ], + "created_at": "2026-07-10T10:10:31.009412", + "updated_at": "2026-07-10T10:10:31.009412", + "url": "/v1/games/pac-man-anniversary-arcade-machines" +} diff --git a/site/public/v1/games/pac-man-carnival/index.json b/site/public/v1/games/pac-man-carnival/index.json new file mode 100644 index 000000000000..ccc74ae5610f --- /dev/null +++ b/site/public/v1/games/pac-man-carnival/index.json @@ -0,0 +1,27 @@ +{ + "id": 105701, + "slug": "pac-man-carnival", + "name": "Pac-Man Carnival", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Wii" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q48889559" + ], + "created_at": "2026-07-10T10:10:31.010417", + "updated_at": "2026-07-10T10:10:31.010417", + "url": "/v1/games/pac-man-carnival" +} diff --git a/site/public/v1/games/pac-man-collection/index.json b/site/public/v1/games/pac-man-collection/index.json new file mode 100644 index 000000000000..7c3d1b1d866c --- /dev/null +++ b/site/public/v1/games/pac-man-collection/index.json @@ -0,0 +1,33 @@ +{ + "id": 105705, + "slug": "pac-man-collection", + "name": "Pac-Man Collection", + "release_date": "2001-07-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Game Boy Advance" + ], + "genres": [ + "maze video game" + ], + "stores": [], + "developers": [ + "Mass Media Inc." + ], + "publishers": [ + "Namco" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3282468" + ], + "created_at": "2026-07-10T10:10:31.011669", + "updated_at": "2026-07-10T10:10:31.011669", + "url": "/v1/games/pac-man-collection" +} diff --git a/site/public/v1/games/pac-man-games/index.json b/site/public/v1/games/pac-man-games/index.json new file mode 100644 index 000000000000..0edfaeddde82 --- /dev/null +++ b/site/public/v1/games/pac-man-games/index.json @@ -0,0 +1,31 @@ +{ + "id": 105710, + "slug": "pac-man-games", + "name": "Pac-Man Games", + "release_date": "2012-03-29", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "iOS" + ], + "genres": [], + "stores": [], + "developers": [ + "Bandai Namco Entertainment" + ], + "publishers": [ + "Bandai Namco Entertainment" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7121844" + ], + "created_at": "2026-07-10T10:10:31.012220", + "updated_at": "2026-07-10T10:10:31.012220", + "url": "/v1/games/pac-man-games" +} diff --git a/site/public/v1/games/pac-man-ghost-zone/index.json b/site/public/v1/games/pac-man-ghost-zone/index.json new file mode 100644 index 000000000000..2c2a006c8690 --- /dev/null +++ b/site/public/v1/games/pac-man-ghost-zone/index.json @@ -0,0 +1,25 @@ +{ + "id": 105711, + "slug": "pac-man-ghost-zone", + "name": "Pac-Man Ghost Zone", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109589534" + ], + "created_at": "2026-07-10T10:10:31.013226", + "updated_at": "2026-07-10T10:10:31.013226", + "url": "/v1/games/pac-man-ghost-zone" +} diff --git a/site/public/v1/games/pac-man-museum-q17042687/index.json b/site/public/v1/games/pac-man-museum-q17042687/index.json new file mode 100644 index 000000000000..5f2453a07a53 --- /dev/null +++ b/site/public/v1/games/pac-man-museum-q17042687/index.json @@ -0,0 +1,29 @@ +{ + "id": 105714, + "slug": "pac-man-museum-q17042687", + "name": "Pac-Man Museum", + "release_date": "2014-02-25", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Bandai Namco Entertainment" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17042687" + ], + "created_at": "2026-07-10T10:10:31.013226", + "updated_at": "2026-07-10T10:10:31.013226", + "url": "/v1/games/pac-man-museum-q17042687" +} diff --git a/site/public/v1/games/pac-man-museum/index.json b/site/public/v1/games/pac-man-museum/index.json new file mode 100644 index 000000000000..288cdfb3a007 --- /dev/null +++ b/site/public/v1/games/pac-man-museum/index.json @@ -0,0 +1,38 @@ +{ + "id": 105715, + "slug": "pac-man-museum", + "name": "Pac-Man Museum+", + "release_date": "2022-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "puzzle video game", + "platformer", + "arcade" + ], + "stores": [], + "developers": [ + "Gotch Technology Corp.", + "Now Production" + ], + "publishers": [ + "Bandai Namco Entertainment" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109923478" + ], + "created_at": "2026-07-10T10:10:31.014230", + "updated_at": "2026-07-10T10:10:31.014230", + "url": "/v1/games/pac-man-museum" +} diff --git a/site/public/v1/games/pac-man-vs-pac-man-world-2/index.json b/site/public/v1/games/pac-man-vs-pac-man-world-2/index.json new file mode 100644 index 000000000000..8c21e92ada55 --- /dev/null +++ b/site/public/v1/games/pac-man-vs-pac-man-world-2/index.json @@ -0,0 +1,27 @@ +{ + "id": 105723, + "slug": "pac-man-vs-pac-man-world-2", + "name": "Pac-Man Vs. / Pac-Man World 2", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Nintendo GameCube" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121037474" + ], + "created_at": "2026-07-10T10:10:31.016230", + "updated_at": "2026-07-10T10:10:31.016230", + "url": "/v1/games/pac-man-vs-pac-man-world-2" +} diff --git a/site/public/v1/games/pack-2-jogos/index.json b/site/public/v1/games/pack-2-jogos/index.json new file mode 100644 index 000000000000..42ee5e3aafdc --- /dev/null +++ b/site/public/v1/games/pack-2-jogos/index.json @@ -0,0 +1,27 @@ +{ + "id": 105793, + "slug": "pack-2-jogos", + "name": "Pack 2 Jogos", + "release_date": "1990-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125934794" + ], + "created_at": "2026-07-10T10:10:31.033300", + "updated_at": "2026-07-10T10:10:31.033300", + "url": "/v1/games/pack-2-jogos" +} diff --git a/site/public/v1/games/painkiller-battle-out-of-hell/index.json b/site/public/v1/games/painkiller-battle-out-of-hell/index.json new file mode 100644 index 000000000000..8ac0dfe9e752 --- /dev/null +++ b/site/public/v1/games/painkiller-battle-out-of-hell/index.json @@ -0,0 +1,33 @@ +{ + "id": 105882, + "slug": "painkiller-battle-out-of-hell", + "name": "Painkiller: Battle out of Hell", + "release_date": "2004-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter" + ], + "stores": [], + "developers": [ + "People Can Fly" + ], + "publishers": [ + "DreamCatcher Interactive" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q13424646" + ], + "created_at": "2026-07-10T10:10:31.058484", + "updated_at": "2026-07-10T10:10:31.058484", + "url": "/v1/games/painkiller-battle-out-of-hell" +} diff --git a/site/public/v1/games/painkiller-demo/index.json b/site/public/v1/games/painkiller-demo/index.json new file mode 100644 index 000000000000..c8e72dcafb9b --- /dev/null +++ b/site/public/v1/games/painkiller-demo/index.json @@ -0,0 +1,33 @@ +{ + "id": 105884, + "slug": "painkiller-demo", + "name": "Painkiller Demo", + "release_date": "2007-01-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter" + ], + "stores": [], + "developers": [ + "People Can Fly" + ], + "publishers": [ + "THQ Nordic" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122790084" + ], + "created_at": "2026-07-10T10:10:31.058484", + "updated_at": "2026-07-10T10:10:31.058484", + "url": "/v1/games/painkiller-demo" +} diff --git a/site/public/v1/games/painkiller-overdose-demo/index.json b/site/public/v1/games/painkiller-overdose-demo/index.json new file mode 100644 index 000000000000..4cea81a671cd --- /dev/null +++ b/site/public/v1/games/painkiller-overdose-demo/index.json @@ -0,0 +1,33 @@ +{ + "id": 105886, + "slug": "painkiller-overdose-demo", + "name": "Painkiller Overdose Demo", + "release_date": "2007-10-17", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter" + ], + "stores": [], + "developers": [ + "Mindware Studios" + ], + "publishers": [ + "THQ Nordic" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122790104" + ], + "created_at": "2026-07-10T10:10:31.058484", + "updated_at": "2026-07-10T10:10:31.059505", + "url": "/v1/games/painkiller-overdose-demo" +} diff --git a/site/public/v1/games/painkiller-overdose/index.json b/site/public/v1/games/painkiller-overdose/index.json new file mode 100644 index 000000000000..825b1e9a896d --- /dev/null +++ b/site/public/v1/games/painkiller-overdose/index.json @@ -0,0 +1,33 @@ +{ + "id": 105887, + "slug": "painkiller-overdose", + "name": "Painkiller: Overdose", + "release_date": "2007-10-30", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter" + ], + "stores": [], + "developers": [ + "Mindware Studios" + ], + "publishers": [ + "DreamCatcher Interactive" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q685178" + ], + "created_at": "2026-07-10T10:10:31.059505", + "updated_at": "2026-07-10T10:10:31.059505", + "url": "/v1/games/painkiller-overdose" +} diff --git a/site/public/v1/games/panquake/index.json b/site/public/v1/games/panquake/index.json new file mode 100644 index 000000000000..5454fcce2ef0 --- /dev/null +++ b/site/public/v1/games/panquake/index.json @@ -0,0 +1,25 @@ +{ + "id": 106258, + "slug": "panquake", + "name": "PanQuake", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121380443" + ], + "created_at": "2026-07-10T10:10:31.157904", + "updated_at": "2026-07-10T10:10:31.157904", + "url": "/v1/games/panquake" +} diff --git a/site/public/v1/games/panzer-corps-2-axis-operations-1939/index.json b/site/public/v1/games/panzer-corps-2-axis-operations-1939/index.json new file mode 100644 index 000000000000..28c1771da9c3 --- /dev/null +++ b/site/public/v1/games/panzer-corps-2-axis-operations-1939/index.json @@ -0,0 +1,31 @@ +{ + "id": 106300, + "slug": "panzer-corps-2-axis-operations-1939", + "name": "Panzer Corps 2: Axis Operations - 1939", + "release_date": "2020-08-27", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Flashback Games" + ], + "publishers": [ + "Slitherine Software UK Limited" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121170284" + ], + "created_at": "2026-07-10T10:10:31.169790", + "updated_at": "2026-07-10T10:10:31.169790", + "url": "/v1/games/panzer-corps-2-axis-operations-1939" +} diff --git a/site/public/v1/games/panzer-corps-2-axis-operations-1940/index.json b/site/public/v1/games/panzer-corps-2-axis-operations-1940/index.json new file mode 100644 index 000000000000..5425caf50b0b --- /dev/null +++ b/site/public/v1/games/panzer-corps-2-axis-operations-1940/index.json @@ -0,0 +1,31 @@ +{ + "id": 106301, + "slug": "panzer-corps-2-axis-operations-1940", + "name": "Panzer Corps 2: Axis Operations - 1940", + "release_date": "2020-12-10", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Flashback Games" + ], + "publishers": [ + "Slitherine Software UK Limited" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121170375" + ], + "created_at": "2026-07-10T10:10:31.169790", + "updated_at": "2026-07-10T10:10:31.169790", + "url": "/v1/games/panzer-corps-2-axis-operations-1940" +} diff --git a/site/public/v1/games/panzer-corps-2-axis-operations-1941/index.json b/site/public/v1/games/panzer-corps-2-axis-operations-1941/index.json new file mode 100644 index 000000000000..c6df76a0f0bf --- /dev/null +++ b/site/public/v1/games/panzer-corps-2-axis-operations-1941/index.json @@ -0,0 +1,31 @@ +{ + "id": 106302, + "slug": "panzer-corps-2-axis-operations-1941", + "name": "Panzer Corps 2: Axis Operations - 1941", + "release_date": "2021-03-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Flashback Games" + ], + "publishers": [ + "Slitherine Software UK Limited" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121170391" + ], + "created_at": "2026-07-10T10:10:31.169790", + "updated_at": "2026-07-10T10:10:31.169790", + "url": "/v1/games/panzer-corps-2-axis-operations-1941" +} diff --git a/site/public/v1/games/panzer-corps-2-axis-operations-1942/index.json b/site/public/v1/games/panzer-corps-2-axis-operations-1942/index.json new file mode 100644 index 000000000000..09d1e490ff33 --- /dev/null +++ b/site/public/v1/games/panzer-corps-2-axis-operations-1942/index.json @@ -0,0 +1,31 @@ +{ + "id": 106303, + "slug": "panzer-corps-2-axis-operations-1942", + "name": "Panzer Corps 2: Axis Operations - 1942", + "release_date": "2021-07-08", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Flashback Games" + ], + "publishers": [ + "Slitherine Software UK Limited" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121170434" + ], + "created_at": "2026-07-10T10:10:31.170814", + "updated_at": "2026-07-10T10:10:31.170814", + "url": "/v1/games/panzer-corps-2-axis-operations-1942" +} diff --git a/site/public/v1/games/panzer-corps-2-axis-operations-1943/index.json b/site/public/v1/games/panzer-corps-2-axis-operations-1943/index.json new file mode 100644 index 000000000000..c1958e0b4183 --- /dev/null +++ b/site/public/v1/games/panzer-corps-2-axis-operations-1943/index.json @@ -0,0 +1,31 @@ +{ + "id": 106304, + "slug": "panzer-corps-2-axis-operations-1943", + "name": "Panzer Corps 2: Axis Operations - 1943", + "release_date": "2022-05-26", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Flashback Games" + ], + "publishers": [ + "Slitherine Software UK Limited" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121170486" + ], + "created_at": "2026-07-10T10:10:31.170814", + "updated_at": "2026-07-10T10:10:31.170814", + "url": "/v1/games/panzer-corps-2-axis-operations-1943" +} diff --git a/site/public/v1/games/panzer-corps-2-axis-operations-1944/index.json b/site/public/v1/games/panzer-corps-2-axis-operations-1944/index.json new file mode 100644 index 000000000000..eaa57a4b8355 --- /dev/null +++ b/site/public/v1/games/panzer-corps-2-axis-operations-1944/index.json @@ -0,0 +1,31 @@ +{ + "id": 106305, + "slug": "panzer-corps-2-axis-operations-1944", + "name": "Panzer Corps 2: Axis Operations - 1944", + "release_date": "2022-11-08", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Flashback Games" + ], + "publishers": [ + "Slitherine Software UK Limited" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121170516" + ], + "created_at": "2026-07-10T10:10:31.170814", + "updated_at": "2026-07-10T10:10:31.170814", + "url": "/v1/games/panzer-corps-2-axis-operations-1944" +} diff --git a/site/public/v1/games/panzer-corps-2-axis-operations-1945/index.json b/site/public/v1/games/panzer-corps-2-axis-operations-1945/index.json new file mode 100644 index 000000000000..86d6f6113cdf --- /dev/null +++ b/site/public/v1/games/panzer-corps-2-axis-operations-1945/index.json @@ -0,0 +1,31 @@ +{ + "id": 106306, + "slug": "panzer-corps-2-axis-operations-1945", + "name": "Panzer Corps 2: Axis Operations - 1945", + "release_date": "2023-06-22", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Flashback Games" + ], + "publishers": [ + "Slitherine Software UK Limited" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121170550" + ], + "created_at": "2026-07-10T10:10:31.170814", + "updated_at": "2026-07-10T10:10:31.170814", + "url": "/v1/games/panzer-corps-2-axis-operations-1945" +} diff --git a/site/public/v1/games/panzer-corps-2-axis-operations-spanish-civil-war/index.json b/site/public/v1/games/panzer-corps-2-axis-operations-spanish-civil-war/index.json new file mode 100644 index 000000000000..6ace6ca3c342 --- /dev/null +++ b/site/public/v1/games/panzer-corps-2-axis-operations-spanish-civil-war/index.json @@ -0,0 +1,31 @@ +{ + "id": 106307, + "slug": "panzer-corps-2-axis-operations-spanish-civil-war", + "name": "Panzer Corps 2: Axis Operations - Spanish Civil War", + "release_date": "2020-07-16", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Flashback Games" + ], + "publishers": [ + "Slitherine Software UK Limited" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121170317" + ], + "created_at": "2026-07-10T10:10:31.171806", + "updated_at": "2026-07-10T10:10:31.171806", + "url": "/v1/games/panzer-corps-2-axis-operations-spanish-civil-war" +} diff --git a/site/public/v1/games/papa-s-raceway/index.json b/site/public/v1/games/papa-s-raceway/index.json new file mode 100644 index 000000000000..a3e7ab5c30bc --- /dev/null +++ b/site/public/v1/games/papa-s-raceway/index.json @@ -0,0 +1,25 @@ +{ + "id": 106371, + "slug": "papa-s-raceway", + "name": "Papa's Raceway", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q128014895" + ], + "created_at": "2026-07-10T10:10:31.186809", + "updated_at": "2026-07-10T10:10:31.186809", + "url": "/v1/games/papa-s-raceway" +} diff --git a/site/public/v1/games/paprium/index.json b/site/public/v1/games/paprium/index.json new file mode 100644 index 000000000000..69f463bbc529 --- /dev/null +++ b/site/public/v1/games/paprium/index.json @@ -0,0 +1,29 @@ +{ + "id": 106530, + "slug": "paprium", + "name": "Paprium", + "release_date": "2020-12-16", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Sega Genesis" + ], + "genres": [ + "post-apocalyptic video game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107676088" + ], + "created_at": "2026-07-10T10:10:31.228324", + "updated_at": "2026-07-10T10:10:31.228324", + "url": "/v1/games/paprium" +} diff --git a/site/public/v1/games/parabellum/index.json b/site/public/v1/games/parabellum/index.json new file mode 100644 index 000000000000..c146cd5d3e7d --- /dev/null +++ b/site/public/v1/games/parabellum/index.json @@ -0,0 +1,29 @@ +{ + "id": 106547, + "slug": "parabellum", + "name": "Parabellum", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11239355" + ], + "created_at": "2026-07-10T10:10:31.233348", + "updated_at": "2026-07-10T10:10:31.233348", + "url": "/v1/games/parabellum" +} diff --git a/site/public/v1/games/paradox-meta/index.json b/site/public/v1/games/paradox-meta/index.json new file mode 100644 index 000000000000..1cb79a8c3d03 --- /dev/null +++ b/site/public/v1/games/paradox-meta/index.json @@ -0,0 +1,25 @@ +{ + "id": 106617, + "slug": "paradox-meta", + "name": "Paradox Meta", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115208631" + ], + "created_at": "2026-07-10T10:10:31.252451", + "updated_at": "2026-07-10T10:10:31.252451", + "url": "/v1/games/paradox-meta" +} diff --git a/site/public/v1/games/party-incident-demo/index.json b/site/public/v1/games/party-incident-demo/index.json new file mode 100644 index 000000000000..8cc1eeff007e --- /dev/null +++ b/site/public/v1/games/party-incident-demo/index.json @@ -0,0 +1,25 @@ +{ + "id": 106988, + "slug": "party-incident-demo", + "name": "Party incident Demo", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131619383" + ], + "created_at": "2026-07-10T10:10:31.355138", + "updated_at": "2026-07-10T10:10:31.355138", + "url": "/v1/games/party-incident-demo" +} diff --git a/site/public/v1/games/party-panic-4-pack/index.json b/site/public/v1/games/party-panic-4-pack/index.json new file mode 100644 index 000000000000..6d527996c1e2 --- /dev/null +++ b/site/public/v1/games/party-panic-4-pack/index.json @@ -0,0 +1,25 @@ +{ + "id": 107001, + "slug": "party-panic-4-pack", + "name": "Party Panic 4-Pack", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q78671535" + ], + "created_at": "2026-07-10T10:10:31.359143", + "updated_at": "2026-07-10T10:10:31.359143", + "url": "/v1/games/party-panic-4-pack" +} diff --git a/site/public/v1/games/pathologic-the-marble-nest/index.json b/site/public/v1/games/pathologic-the-marble-nest/index.json new file mode 100644 index 000000000000..b15b0c0b25b0 --- /dev/null +++ b/site/public/v1/games/pathologic-the-marble-nest/index.json @@ -0,0 +1,41 @@ +{ + "id": 107225, + "slug": "pathologic-the-marble-nest", + "name": "Pathologic: The Marble Nest", + "release_date": "2016-12-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "adventure video game", + "real-time strategy", + "third-person shooter", + "role-playing video game", + "interactive fiction", + "turn-based strategy video game", + "arcade", + "survival game", + "space trading and combat game" + ], + "stores": [], + "developers": [ + "Ice-Pick Lodge" + ], + "publishers": [ + "Ice-Pick Lodge" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63863170" + ], + "created_at": "2026-07-10T10:10:31.421215", + "updated_at": "2026-07-10T10:10:31.421215", + "url": "/v1/games/pathologic-the-marble-nest" +} diff --git a/site/public/v1/games/patrician-iv-gold-edition/index.json b/site/public/v1/games/patrician-iv-gold-edition/index.json new file mode 100644 index 000000000000..a5f75a029830 --- /dev/null +++ b/site/public/v1/games/patrician-iv-gold-edition/index.json @@ -0,0 +1,25 @@ +{ + "id": 107252, + "slug": "patrician-iv-gold-edition", + "name": "Patrician IV: Gold Edition", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121889093" + ], + "created_at": "2026-07-10T10:10:31.428245", + "updated_at": "2026-07-10T10:10:31.428245", + "url": "/v1/games/patrician-iv-gold-edition" +} diff --git a/site/public/v1/games/patrician-iv-rise-of-a-dynasty/index.json b/site/public/v1/games/patrician-iv-rise-of-a-dynasty/index.json new file mode 100644 index 000000000000..e3b0aec20ba3 --- /dev/null +++ b/site/public/v1/games/patrician-iv-rise-of-a-dynasty/index.json @@ -0,0 +1,25 @@ +{ + "id": 107253, + "slug": "patrician-iv-rise-of-a-dynasty", + "name": "Patrician IV: Rise of a Dynasty", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121889105" + ], + "created_at": "2026-07-10T10:10:31.429146", + "updated_at": "2026-07-10T10:10:31.429146", + "url": "/v1/games/patrician-iv-rise-of-a-dynasty" +} diff --git a/site/public/v1/games/patterns/index.json b/site/public/v1/games/patterns/index.json new file mode 100644 index 000000000000..e4c2ce849f4e --- /dev/null +++ b/site/public/v1/games/patterns/index.json @@ -0,0 +1,32 @@ +{ + "id": 107274, + "slug": "patterns", + "name": "Patterns", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Linden Lab" + ], + "publishers": [ + "Linden Lab" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7148404" + ], + "created_at": "2026-07-10T10:10:31.434324", + "updated_at": "2026-07-10T10:10:31.434324", + "url": "/v1/games/patterns" +} diff --git a/site/public/v1/games/payazzo/index.json b/site/public/v1/games/payazzo/index.json new file mode 100644 index 000000000000..49be9a6d7069 --- /dev/null +++ b/site/public/v1/games/payazzo/index.json @@ -0,0 +1,25 @@ +{ + "id": 107385, + "slug": "payazzo", + "name": "Payazzo", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q804125" + ], + "created_at": "2026-07-10T10:10:31.464422", + "updated_at": "2026-07-10T10:10:31.464422", + "url": "/v1/games/payazzo" +} diff --git a/site/public/v1/games/payday-2-armored-transport/index.json b/site/public/v1/games/payday-2-armored-transport/index.json new file mode 100644 index 000000000000..df18b03b857c --- /dev/null +++ b/site/public/v1/games/payday-2-armored-transport/index.json @@ -0,0 +1,25 @@ +{ + "id": 107388, + "slug": "payday-2-armored-transport", + "name": "PayDay 2: Armored Transport", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125156608" + ], + "created_at": "2026-07-10T10:10:31.465471", + "updated_at": "2026-07-10T10:10:31.465471", + "url": "/v1/games/payday-2-armored-transport" +} diff --git a/site/public/v1/games/payday-2-gage-shotgun-pack/index.json b/site/public/v1/games/payday-2-gage-shotgun-pack/index.json new file mode 100644 index 000000000000..b000c93b7bdb --- /dev/null +++ b/site/public/v1/games/payday-2-gage-shotgun-pack/index.json @@ -0,0 +1,25 @@ +{ + "id": 107389, + "slug": "payday-2-gage-shotgun-pack", + "name": "PayDay 2: Gage Shotgun Pack", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125156619" + ], + "created_at": "2026-07-10T10:10:31.465471", + "updated_at": "2026-07-10T10:10:31.465471", + "url": "/v1/games/payday-2-gage-shotgun-pack" +} diff --git a/site/public/v1/games/pc-arcade/index.json b/site/public/v1/games/pc-arcade/index.json new file mode 100644 index 000000000000..e102ba8a7a39 --- /dev/null +++ b/site/public/v1/games/pc-arcade/index.json @@ -0,0 +1,25 @@ +{ + "id": 107414, + "slug": "pc-arcade", + "name": "PC Arcade", + "release_date": "1983-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60792906" + ], + "created_at": "2026-07-10T10:10:31.472479", + "updated_at": "2026-07-10T10:10:31.472479", + "url": "/v1/games/pc-arcade" +} diff --git a/site/public/v1/games/pc-engine-best-collection/index.json b/site/public/v1/games/pc-engine-best-collection/index.json new file mode 100644 index 000000000000..068b14f4fbe2 --- /dev/null +++ b/site/public/v1/games/pc-engine-best-collection/index.json @@ -0,0 +1,25 @@ +{ + "id": 107424, + "slug": "pc-engine-best-collection", + "name": "PC Engine Best Collection", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11238494" + ], + "created_at": "2026-07-10T10:10:31.481423", + "updated_at": "2026-07-10T10:10:31.481423", + "url": "/v1/games/pc-engine-best-collection" +} diff --git a/site/public/v1/games/pc-futbol-2000-expansion-pack/index.json b/site/public/v1/games/pc-futbol-2000-expansion-pack/index.json new file mode 100644 index 000000000000..43bebda5e347 --- /dev/null +++ b/site/public/v1/games/pc-futbol-2000-expansion-pack/index.json @@ -0,0 +1,29 @@ +{ + "id": 107428, + "slug": "pc-futbol-2000-expansion-pack", + "name": "PC Futbol 2000 Expansion pack", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "association football video game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q9053802" + ], + "created_at": "2026-07-10T10:10:31.482434", + "updated_at": "2026-07-10T10:10:31.482434", + "url": "/v1/games/pc-futbol-2000-expansion-pack" +} diff --git a/site/public/v1/games/peaks-of-yore-demo/index.json b/site/public/v1/games/peaks-of-yore-demo/index.json new file mode 100644 index 000000000000..8586856c4a52 --- /dev/null +++ b/site/public/v1/games/peaks-of-yore-demo/index.json @@ -0,0 +1,33 @@ +{ + "id": 107495, + "slug": "peaks-of-yore-demo", + "name": "Peaks of Yore DEMO", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "platformer", + "first-person adventure" + ], + "stores": [], + "developers": [ + "Anders Grube Jensen" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134429001" + ], + "created_at": "2026-07-10T10:10:31.517575", + "updated_at": "2026-07-10T10:10:31.517575", + "url": "/v1/games/peaks-of-yore-demo" +} diff --git a/site/public/v1/games/peaks-of-yore-the-great-alps/index.json b/site/public/v1/games/peaks-of-yore-the-great-alps/index.json new file mode 100644 index 000000000000..52f4fb72af74 --- /dev/null +++ b/site/public/v1/games/peaks-of-yore-the-great-alps/index.json @@ -0,0 +1,29 @@ +{ + "id": 107496, + "slug": "peaks-of-yore-the-great-alps", + "name": "Peaks of Yore - The Great Alps", + "release_date": "2024-11-14", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Anders Grube Jensen" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q132590764" + ], + "created_at": "2026-07-10T10:10:31.517575", + "updated_at": "2026-07-10T10:10:31.517575", + "url": "/v1/games/peaks-of-yore-the-great-alps" +} diff --git a/site/public/v1/games/pedantle/index.json b/site/public/v1/games/pedantle/index.json new file mode 100644 index 000000000000..f4e37e6293cf --- /dev/null +++ b/site/public/v1/games/pedantle/index.json @@ -0,0 +1,25 @@ +{ + "id": 107552, + "slug": "pedantle", + "name": "pedantle", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125377053" + ], + "created_at": "2026-07-10T10:10:31.533504", + "updated_at": "2026-07-10T10:10:31.533504", + "url": "/v1/games/pedantle" +} diff --git a/site/public/v1/games/penthouse-pack/index.json b/site/public/v1/games/penthouse-pack/index.json new file mode 100644 index 000000000000..32e2d7a3b4e0 --- /dev/null +++ b/site/public/v1/games/penthouse-pack/index.json @@ -0,0 +1,28 @@ +{ + "id": 107746, + "slug": "penthouse-pack", + "name": "Penthouse Pack", + "release_date": "2012-05-22", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 3", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60607927" + ], + "created_at": "2026-07-10T10:10:31.602439", + "updated_at": "2026-07-10T10:10:31.602439", + "url": "/v1/games/penthouse-pack" +} diff --git a/site/public/v1/games/penumbra-necrologue/index.json b/site/public/v1/games/penumbra-necrologue/index.json new file mode 100644 index 000000000000..62dd8e1bee20 --- /dev/null +++ b/site/public/v1/games/penumbra-necrologue/index.json @@ -0,0 +1,32 @@ +{ + "id": 107753, + "slug": "penumbra-necrologue", + "name": "Penumbra: Necrologue", + "release_date": "2014-10-31", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "survival horror", + "science fiction video game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18785914" + ], + "created_at": "2026-07-10T10:10:31.603448", + "updated_at": "2026-07-10T10:10:31.603448", + "url": "/v1/games/penumbra-necrologue" +} diff --git a/site/public/v1/games/per-aspera-blue-mars/index.json b/site/public/v1/games/per-aspera-blue-mars/index.json new file mode 100644 index 000000000000..f50faa106fe0 --- /dev/null +++ b/site/public/v1/games/per-aspera-blue-mars/index.json @@ -0,0 +1,29 @@ +{ + "id": 107799, + "slug": "per-aspera-blue-mars", + "name": "Per Aspera: Blue Mars", + "release_date": "2022-05-02", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Raw Fury" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111605175" + ], + "created_at": "2026-07-10T10:10:31.616507", + "updated_at": "2026-07-10T10:10:31.616507", + "url": "/v1/games/per-aspera-blue-mars" +} diff --git a/site/public/v1/games/perfect-dark-q106547243/index.json b/site/public/v1/games/perfect-dark-q106547243/index.json new file mode 100644 index 000000000000..a94d078b1a45 --- /dev/null +++ b/site/public/v1/games/perfect-dark-q106547243/index.json @@ -0,0 +1,33 @@ +{ + "id": 107847, + "slug": "perfect-dark-q106547243", + "name": "Perfect Dark", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter" + ], + "stores": [], + "developers": [ + "The Initiative" + ], + "publishers": [ + "Xbox Game Studios" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106547243" + ], + "created_at": "2026-07-10T10:10:31.628443", + "updated_at": "2026-07-10T10:10:31.628443", + "url": "/v1/games/perfect-dark-q106547243" +} diff --git a/site/public/v1/games/persona-3-fes/index.json b/site/public/v1/games/persona-3-fes/index.json new file mode 100644 index 000000000000..e84002620c31 --- /dev/null +++ b/site/public/v1/games/persona-3-fes/index.json @@ -0,0 +1,29 @@ +{ + "id": 107991, + "slug": "persona-3-fes", + "name": "Persona 3 FES", + "release_date": "2007-04-19", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 3" + ], + "genres": [ + "role-playing video game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121368251" + ], + "created_at": "2026-07-10T10:10:31.668222", + "updated_at": "2026-07-10T10:10:31.668222", + "url": "/v1/games/persona-3-fes" +} diff --git a/site/public/v1/games/pet-simulator-99/index.json b/site/public/v1/games/pet-simulator-99/index.json new file mode 100644 index 000000000000..0b525435561d --- /dev/null +++ b/site/public/v1/games/pet-simulator-99/index.json @@ -0,0 +1,34 @@ +{ + "id": 108074, + "slug": "pet-simulator-99", + "name": "Pet Simulator 99", + "release_date": "2023-12-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 5", + "PlayStation 4", + "iOS", + "macOS", + "Microsoft Windows" + ], + "genres": [ + "virtual pet video game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130232736" + ], + "created_at": "2026-07-10T10:10:31.690244", + "updated_at": "2026-07-10T10:10:31.690244", + "url": "/v1/games/pet-simulator-99" +} diff --git a/site/public/v1/games/petz/index.json b/site/public/v1/games/petz/index.json new file mode 100644 index 000000000000..8796e6118c19 --- /dev/null +++ b/site/public/v1/games/petz/index.json @@ -0,0 +1,29 @@ +{ + "id": 108187, + "slug": "petz", + "name": "Petz", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "PF Magic" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131151624" + ], + "created_at": "2026-07-10T10:10:31.719457", + "updated_at": "2026-07-10T10:10:31.719457", + "url": "/v1/games/petz" +} diff --git a/site/public/v1/games/phantasy-star-collection/index.json b/site/public/v1/games/phantasy-star-collection/index.json new file mode 100644 index 000000000000..0d538957a264 --- /dev/null +++ b/site/public/v1/games/phantasy-star-collection/index.json @@ -0,0 +1,33 @@ +{ + "id": 108258, + "slug": "phantasy-star-collection", + "name": "Phantasy Star Collection", + "release_date": "1998-02-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Game Boy Advance" + ], + "genres": [ + "role-playing video game" + ], + "stores": [], + "developers": [ + "Sega" + ], + "publishers": [ + "Sega" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2078759" + ], + "created_at": "2026-07-10T10:10:31.737457", + "updated_at": "2026-07-10T10:10:31.737457", + "url": "/v1/games/phantasy-star-collection" +} diff --git a/site/public/v1/games/phantom-forces/index.json b/site/public/v1/games/phantom-forces/index.json new file mode 100644 index 000000000000..39707f8290f9 --- /dev/null +++ b/site/public/v1/games/phantom-forces/index.json @@ -0,0 +1,25 @@ +{ + "id": 108307, + "slug": "phantom-forces", + "name": "Phantom Forces", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127272615" + ], + "created_at": "2026-07-10T10:10:31.749102", + "updated_at": "2026-07-10T10:10:31.749102", + "url": "/v1/games/phantom-forces" +} diff --git a/site/public/v1/games/phoenix-point-kaos-engines/index.json b/site/public/v1/games/phoenix-point-kaos-engines/index.json new file mode 100644 index 000000000000..08c8973cbfe3 --- /dev/null +++ b/site/public/v1/games/phoenix-point-kaos-engines/index.json @@ -0,0 +1,28 @@ +{ + "id": 108496, + "slug": "phoenix-point-kaos-engines", + "name": "Phoenix Point: Kaos Engines", + "release_date": "2022-03-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120976442" + ], + "created_at": "2026-07-10T10:10:31.800633", + "updated_at": "2026-07-10T10:10:31.800633", + "url": "/v1/games/phoenix-point-kaos-engines" +} diff --git a/site/public/v1/games/phoenixgo/index.json b/site/public/v1/games/phoenixgo/index.json new file mode 100644 index 000000000000..95ffbcae2e3c --- /dev/null +++ b/site/public/v1/games/phoenixgo/index.json @@ -0,0 +1,27 @@ +{ + "id": 108514, + "slug": "phoenixgo", + "name": "PhoenixGo", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [ + "Tencent" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q55697098" + ], + "created_at": "2026-07-10T10:10:31.804715", + "updated_at": "2026-07-10T10:10:31.804715", + "url": "/v1/games/phoenixgo" +} diff --git a/site/public/v1/games/photo-play/index.json b/site/public/v1/games/photo-play/index.json new file mode 100644 index 000000000000..0181166cdebf --- /dev/null +++ b/site/public/v1/games/photo-play/index.json @@ -0,0 +1,25 @@ +{ + "id": 108539, + "slug": "photo-play", + "name": "Photo Play", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2088836" + ], + "created_at": "2026-07-10T10:10:31.810628", + "updated_at": "2026-07-10T10:10:31.811632", + "url": "/v1/games/photo-play" +} diff --git a/site/public/v1/games/photoshop-contest/index.json b/site/public/v1/games/photoshop-contest/index.json new file mode 100644 index 000000000000..f201e67496f8 --- /dev/null +++ b/site/public/v1/games/photoshop-contest/index.json @@ -0,0 +1,25 @@ +{ + "id": 108574, + "slug": "photoshop-contest", + "name": "Photoshop contest", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2176276" + ], + "created_at": "2026-07-10T10:10:31.822062", + "updated_at": "2026-07-10T10:10:31.822062", + "url": "/v1/games/photoshop-contest" +} diff --git a/site/public/v1/games/piggy/index.json b/site/public/v1/games/piggy/index.json new file mode 100644 index 000000000000..27cbc56115bf --- /dev/null +++ b/site/public/v1/games/piggy/index.json @@ -0,0 +1,27 @@ +{ + "id": 108864, + "slug": "piggy", + "name": "Piggy", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "horror video game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131756779" + ], + "created_at": "2026-07-10T10:10:31.898781", + "updated_at": "2026-07-10T10:10:31.898781", + "url": "/v1/games/piggy" +} diff --git a/site/public/v1/games/pika-goro-v/index.json b/site/public/v1/games/pika-goro-v/index.json new file mode 100644 index 000000000000..54b6436f4efa --- /dev/null +++ b/site/public/v1/games/pika-goro-v/index.json @@ -0,0 +1,25 @@ +{ + "id": 108884, + "slug": "pika-goro-v", + "name": "Pika Goro V", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11331384" + ], + "created_at": "2026-07-10T10:10:31.903809", + "updated_at": "2026-07-10T10:10:31.903809", + "url": "/v1/games/pika-goro-v" +} diff --git a/site/public/v1/games/pika-land/index.json b/site/public/v1/games/pika-land/index.json new file mode 100644 index 000000000000..e9df3117f63c --- /dev/null +++ b/site/public/v1/games/pika-land/index.json @@ -0,0 +1,25 @@ +{ + "id": 108885, + "slug": "pika-land", + "name": "Pika Land", + "release_date": "2013-03-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112582100" + ], + "created_at": "2026-07-10T10:10:31.903809", + "updated_at": "2026-07-10T10:10:31.903809", + "url": "/v1/games/pika-land" +} diff --git a/site/public/v1/games/pike-operacija-giedi-prime/index.json b/site/public/v1/games/pike-operacija-giedi-prime/index.json new file mode 100644 index 000000000000..63f7ffc19128 --- /dev/null +++ b/site/public/v1/games/pike-operacija-giedi-prime/index.json @@ -0,0 +1,29 @@ +{ + "id": 108888, + "slug": "pike-operacija-giedi-prime", + "name": "Pike: Operacija Giedi Prime", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "action game" + ], + "stores": [], + "developers": [ + "Snowball Studios" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124811834" + ], + "created_at": "2026-07-10T10:10:31.904773", + "updated_at": "2026-07-10T10:10:31.904773", + "url": "/v1/games/pike-operacija-giedi-prime" +} diff --git a/site/public/v1/games/pillars-of-eternity-the-white-march/index.json b/site/public/v1/games/pillars-of-eternity-the-white-march/index.json new file mode 100644 index 000000000000..6b602b2c82e1 --- /dev/null +++ b/site/public/v1/games/pillars-of-eternity-the-white-march/index.json @@ -0,0 +1,33 @@ +{ + "id": 108934, + "slug": "pillars-of-eternity-the-white-march", + "name": "Pillars of Eternity: The White March", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS" + ], + "genres": [ + "role-playing video game" + ], + "stores": [], + "developers": [ + "Obsidian Entertainment" + ], + "publishers": [ + "Paradox Interactive" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q21998250" + ], + "created_at": "2026-07-10T10:10:31.916777", + "updated_at": "2026-07-10T10:10:31.916777", + "url": "/v1/games/pillars-of-eternity-the-white-march" +} diff --git a/site/public/v1/games/pinball-fx3-aliens-vs-pinball/index.json b/site/public/v1/games/pinball-fx3-aliens-vs-pinball/index.json new file mode 100644 index 000000000000..a4c51ae900dd --- /dev/null +++ b/site/public/v1/games/pinball-fx3-aliens-vs-pinball/index.json @@ -0,0 +1,29 @@ +{ + "id": 109022, + "slug": "pinball-fx3-aliens-vs-pinball", + "name": "Pinball FX3 - Aliens vs Pinball", + "release_date": "2017-09-26", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127500721" + ], + "created_at": "2026-07-10T10:10:31.939707", + "updated_at": "2026-07-10T10:10:31.939707", + "url": "/v1/games/pinball-fx3-aliens-vs-pinball" +} diff --git a/site/public/v1/games/pinball-fx3-portal-pinball/index.json b/site/public/v1/games/pinball-fx3-portal-pinball/index.json new file mode 100644 index 000000000000..16cbff5d780a --- /dev/null +++ b/site/public/v1/games/pinball-fx3-portal-pinball/index.json @@ -0,0 +1,27 @@ +{ + "id": 109023, + "slug": "pinball-fx3-portal-pinball", + "name": "Pinball FX3 - Portal Pinball", + "release_date": "2017-09-26", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126477080" + ], + "created_at": "2026-07-10T10:10:31.939707", + "updated_at": "2026-07-10T10:10:31.939707", + "url": "/v1/games/pinball-fx3-portal-pinball" +} diff --git a/site/public/v1/games/pinball-jam-q110572248/index.json b/site/public/v1/games/pinball-jam-q110572248/index.json new file mode 100644 index 000000000000..e2cd379ae35d --- /dev/null +++ b/site/public/v1/games/pinball-jam-q110572248/index.json @@ -0,0 +1,29 @@ +{ + "id": 109035, + "slug": "pinball-jam-q110572248", + "name": "Pinball Jam", + "release_date": "2022-01-14", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "pinball video game" + ], + "stores": [], + "developers": [], + "publishers": [ + "Super PowerUp Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110572248" + ], + "created_at": "2026-07-10T10:10:31.943782", + "updated_at": "2026-07-10T10:10:31.943782", + "url": "/v1/games/pinball-jam-q110572248" +} diff --git a/site/public/v1/games/pinball-m-chucky-s-killer-pinball/index.json b/site/public/v1/games/pinball-m-chucky-s-killer-pinball/index.json new file mode 100644 index 000000000000..95cf52c3f508 --- /dev/null +++ b/site/public/v1/games/pinball-m-chucky-s-killer-pinball/index.json @@ -0,0 +1,30 @@ +{ + "id": 109039, + "slug": "pinball-m-chucky-s-killer-pinball", + "name": "Pinball M - Chucky's Killer Pinball", + "release_date": "2023-11-30", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 4", + "PlayStation 5", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123694233" + ], + "created_at": "2026-07-10T10:10:31.944773", + "updated_at": "2026-07-10T10:10:31.944773", + "url": "/v1/games/pinball-m-chucky-s-killer-pinball" +} diff --git a/site/public/v1/games/pinball-m-dead-by-daylight-pinball/index.json b/site/public/v1/games/pinball-m-dead-by-daylight-pinball/index.json new file mode 100644 index 000000000000..d84f09eb4b09 --- /dev/null +++ b/site/public/v1/games/pinball-m-dead-by-daylight-pinball/index.json @@ -0,0 +1,30 @@ +{ + "id": 109040, + "slug": "pinball-m-dead-by-daylight-pinball", + "name": "Pinball M - Dead by Daylight Pinball", + "release_date": "2023-11-30", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 4", + "PlayStation 5", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123694231" + ], + "created_at": "2026-07-10T10:10:31.944773", + "updated_at": "2026-07-10T10:10:31.944773", + "url": "/v1/games/pinball-m-dead-by-daylight-pinball" +} diff --git a/site/public/v1/games/pinball-m-death-save-bundle/index.json b/site/public/v1/games/pinball-m-death-save-bundle/index.json new file mode 100644 index 000000000000..308e8047a9c5 --- /dev/null +++ b/site/public/v1/games/pinball-m-death-save-bundle/index.json @@ -0,0 +1,27 @@ +{ + "id": 109041, + "slug": "pinball-m-death-save-bundle", + "name": "Pinball M - Death Save Bundle", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123694217" + ], + "created_at": "2026-07-10T10:10:31.944773", + "updated_at": "2026-07-10T10:10:31.944773", + "url": "/v1/games/pinball-m-death-save-bundle" +} diff --git a/site/public/v1/games/pinball-m-duke-nukem-s-big-shot-pinball/index.json b/site/public/v1/games/pinball-m-duke-nukem-s-big-shot-pinball/index.json new file mode 100644 index 000000000000..54dbec7d1969 --- /dev/null +++ b/site/public/v1/games/pinball-m-duke-nukem-s-big-shot-pinball/index.json @@ -0,0 +1,30 @@ +{ + "id": 109042, + "slug": "pinball-m-duke-nukem-s-big-shot-pinball", + "name": "Pinball M - Duke Nukem's Big Shot Pinball", + "release_date": "2023-11-30", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 5", + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123694227" + ], + "created_at": "2026-07-10T10:10:31.945779", + "updated_at": "2026-07-10T10:10:31.945779", + "url": "/v1/games/pinball-m-duke-nukem-s-big-shot-pinball" +} diff --git a/site/public/v1/games/pinball-m-the-thing-pinball/index.json b/site/public/v1/games/pinball-m-the-thing-pinball/index.json new file mode 100644 index 000000000000..c79324508192 --- /dev/null +++ b/site/public/v1/games/pinball-m-the-thing-pinball/index.json @@ -0,0 +1,30 @@ +{ + "id": 109043, + "slug": "pinball-m-the-thing-pinball", + "name": "Pinball M - The Thing Pinball", + "release_date": "2023-11-30", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 4", + "PlayStation 5", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123694232" + ], + "created_at": "2026-07-10T10:10:31.945779", + "updated_at": "2026-07-10T10:10:31.945779", + "url": "/v1/games/pinball-m-the-thing-pinball" +} diff --git a/site/public/v1/games/pinballistik/index.json b/site/public/v1/games/pinballistik/index.json new file mode 100644 index 000000000000..56916606d6f8 --- /dev/null +++ b/site/public/v1/games/pinballistik/index.json @@ -0,0 +1,25 @@ +{ + "id": 109071, + "slug": "pinballistik", + "name": "Pinballistik", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140471192" + ], + "created_at": "2026-07-10T10:10:31.953787", + "updated_at": "2026-07-10T10:10:31.953787", + "url": "/v1/games/pinballistik" +} diff --git a/site/public/v1/games/pirates-of-the-caribbean-armada-of-the-damned/index.json b/site/public/v1/games/pirates-of-the-caribbean-armada-of-the-damned/index.json new file mode 100644 index 000000000000..3bca60a2470e --- /dev/null +++ b/site/public/v1/games/pirates-of-the-caribbean-armada-of-the-damned/index.json @@ -0,0 +1,35 @@ +{ + "id": 109371, + "slug": "pirates-of-the-caribbean-armada-of-the-damned", + "name": "Pirates of the Caribbean: Armada of the Damned", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 3", + "Microsoft Windows" + ], + "genres": [ + "action-adventure game", + "role-playing video game" + ], + "stores": [], + "developers": [ + "Propaganda Games" + ], + "publishers": [ + "Disney Interactive Studios" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3508801" + ], + "created_at": "2026-07-10T10:10:32.033704", + "updated_at": "2026-07-10T10:10:32.033704", + "url": "/v1/games/pirates-of-the-caribbean-armada-of-the-damned" +} diff --git a/site/public/v1/games/pixeljunk-eden-encore/index.json b/site/public/v1/games/pixeljunk-eden-encore/index.json new file mode 100644 index 000000000000..5ce8326e95cb --- /dev/null +++ b/site/public/v1/games/pixeljunk-eden-encore/index.json @@ -0,0 +1,25 @@ +{ + "id": 109755, + "slug": "pixeljunk-eden-encore", + "name": "PixelJunk Eden Encore", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107424243" + ], + "created_at": "2026-07-10T10:10:32.136707", + "updated_at": "2026-07-10T10:10:32.136707", + "url": "/v1/games/pixeljunk-eden-encore" +} diff --git a/site/public/v1/games/pixelmon/index.json b/site/public/v1/games/pixelmon/index.json new file mode 100644 index 000000000000..c8597d19c2e4 --- /dev/null +++ b/site/public/v1/games/pixelmon/index.json @@ -0,0 +1,25 @@ +{ + "id": 109773, + "slug": "pixelmon", + "name": "Pixelmon", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q114396755" + ], + "created_at": "2026-07-10T10:10:32.140842", + "updated_at": "2026-07-10T10:10:32.140842", + "url": "/v1/games/pixelmon" +} diff --git a/site/public/v1/games/pizza-pachinko/index.json b/site/public/v1/games/pizza-pachinko/index.json new file mode 100644 index 000000000000..921181056c00 --- /dev/null +++ b/site/public/v1/games/pizza-pachinko/index.json @@ -0,0 +1,25 @@ +{ + "id": 109847, + "slug": "pizza-pachinko", + "name": "Pizza Pachinko", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q128014896" + ], + "created_at": "2026-07-10T10:10:32.161543", + "updated_at": "2026-07-10T10:10:32.161543", + "url": "/v1/games/pizza-pachinko" +} diff --git a/site/public/v1/games/pizzatron-3000/index.json b/site/public/v1/games/pizzatron-3000/index.json new file mode 100644 index 000000000000..5b2b648c65e7 --- /dev/null +++ b/site/public/v1/games/pizzatron-3000/index.json @@ -0,0 +1,30 @@ +{ + "id": 109873, + "slug": "pizzatron-3000", + "name": "Pizzatron 3000", + "release_date": "2007-02-26", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "iOS", + "web browser" + ], + "genres": [ + "cooking simulation video game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125721888" + ], + "created_at": "2026-07-10T10:10:32.168554", + "updated_at": "2026-07-10T10:10:32.168554", + "url": "/v1/games/pizzatron-3000" +} diff --git a/site/public/v1/games/planet-coaster-adventure-pack/index.json b/site/public/v1/games/planet-coaster-adventure-pack/index.json new file mode 100644 index 000000000000..16d1a9fddb6d --- /dev/null +++ b/site/public/v1/games/planet-coaster-adventure-pack/index.json @@ -0,0 +1,28 @@ +{ + "id": 109978, + "slug": "planet-coaster-adventure-pack", + "name": "Planet Coaster - Adventure Pack", + "release_date": "2017-12-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113813269" + ], + "created_at": "2026-07-10T10:10:32.196585", + "updated_at": "2026-07-10T10:10:32.196585", + "url": "/v1/games/planet-coaster-adventure-pack" +} diff --git a/site/public/v1/games/planet-coaster-back-to-the-future-time-machine-construction-kit/index.json b/site/public/v1/games/planet-coaster-back-to-the-future-time-machine-construction-kit/index.json new file mode 100644 index 000000000000..6818ef9e9825 --- /dev/null +++ b/site/public/v1/games/planet-coaster-back-to-the-future-time-machine-construction-kit/index.json @@ -0,0 +1,27 @@ +{ + "id": 109979, + "slug": "planet-coaster-back-to-the-future-time-machine-construction-kit", + "name": "Planet Coaster - Back to the Future Time Machine Construction Kit", + "release_date": "2017-07-21", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113813402" + ], + "created_at": "2026-07-10T10:10:32.196585", + "updated_at": "2026-07-10T10:10:32.196585", + "url": "/v1/games/planet-coaster-back-to-the-future-time-machine-construction-kit" +} diff --git a/site/public/v1/games/planet-coaster-classic-rides-collection/index.json b/site/public/v1/games/planet-coaster-classic-rides-collection/index.json new file mode 100644 index 000000000000..f81bd660d42a --- /dev/null +++ b/site/public/v1/games/planet-coaster-classic-rides-collection/index.json @@ -0,0 +1,28 @@ +{ + "id": 109980, + "slug": "planet-coaster-classic-rides-collection", + "name": "Planet Coaster - Classic Rides Collection", + "release_date": "2019-04-16", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113813363" + ], + "created_at": "2026-07-10T10:10:32.196585", + "updated_at": "2026-07-10T10:10:32.196585", + "url": "/v1/games/planet-coaster-classic-rides-collection" +} diff --git a/site/public/v1/games/planet-coaster-ghostbusters/index.json b/site/public/v1/games/planet-coaster-ghostbusters/index.json new file mode 100644 index 000000000000..a9bb797e2afd --- /dev/null +++ b/site/public/v1/games/planet-coaster-ghostbusters/index.json @@ -0,0 +1,28 @@ +{ + "id": 109981, + "slug": "planet-coaster-ghostbusters", + "name": "Planet Coaster: Ghostbusters", + "release_date": "2019-06-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113813304" + ], + "created_at": "2026-07-10T10:10:32.197648", + "updated_at": "2026-07-10T10:10:32.197648", + "url": "/v1/games/planet-coaster-ghostbusters" +} diff --git a/site/public/v1/games/planet-coaster-knight-rider-k-i-t-t-construction-kit/index.json b/site/public/v1/games/planet-coaster-knight-rider-k-i-t-t-construction-kit/index.json new file mode 100644 index 000000000000..5424a640e7e1 --- /dev/null +++ b/site/public/v1/games/planet-coaster-knight-rider-k-i-t-t-construction-kit/index.json @@ -0,0 +1,27 @@ +{ + "id": 109982, + "slug": "planet-coaster-knight-rider-k-i-t-t-construction-kit", + "name": "Planet Coaster - Knight Rider K.I.T.T. Construction Kit", + "release_date": "2017-07-21", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113813415" + ], + "created_at": "2026-07-10T10:10:32.197648", + "updated_at": "2026-07-10T10:10:32.197648", + "url": "/v1/games/planet-coaster-knight-rider-k-i-t-t-construction-kit" +} diff --git a/site/public/v1/games/planet-coaster-magnificent-rides-collection/index.json b/site/public/v1/games/planet-coaster-magnificent-rides-collection/index.json new file mode 100644 index 000000000000..332d5cbdb39c --- /dev/null +++ b/site/public/v1/games/planet-coaster-magnificent-rides-collection/index.json @@ -0,0 +1,28 @@ +{ + "id": 109983, + "slug": "planet-coaster-magnificent-rides-collection", + "name": "Planet Coaster - Magnificent Rides Collection", + "release_date": "2018-12-20", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113813352" + ], + "created_at": "2026-07-10T10:10:32.197648", + "updated_at": "2026-07-10T10:10:32.197648", + "url": "/v1/games/planet-coaster-magnificent-rides-collection" +} diff --git a/site/public/v1/games/planet-coaster-quick-draw-interactive-shooting-ride/index.json b/site/public/v1/games/planet-coaster-quick-draw-interactive-shooting-ride/index.json new file mode 100644 index 000000000000..861e5de5495a --- /dev/null +++ b/site/public/v1/games/planet-coaster-quick-draw-interactive-shooting-ride/index.json @@ -0,0 +1,28 @@ +{ + "id": 109984, + "slug": "planet-coaster-quick-draw-interactive-shooting-ride", + "name": "Planet Coaster - Quick Draw Interactive Shooting Ride", + "release_date": "2019-06-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113813422" + ], + "created_at": "2026-07-10T10:10:32.198665", + "updated_at": "2026-07-10T10:10:32.198665", + "url": "/v1/games/planet-coaster-quick-draw-interactive-shooting-ride" +} diff --git a/site/public/v1/games/planet-coaster-spooky-pack/index.json b/site/public/v1/games/planet-coaster-spooky-pack/index.json new file mode 100644 index 000000000000..d0a35f114a91 --- /dev/null +++ b/site/public/v1/games/planet-coaster-spooky-pack/index.json @@ -0,0 +1,32 @@ +{ + "id": 109985, + "slug": "planet-coaster-spooky-pack", + "name": "Planet Coaster - Spooky Pack", + "release_date": "2017-09-25", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Frontier Developments" + ], + "publishers": [ + "Frontier Developments" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109942839" + ], + "created_at": "2026-07-10T10:10:32.198665", + "updated_at": "2026-07-10T10:10:32.198665", + "url": "/v1/games/planet-coaster-spooky-pack" +} diff --git a/site/public/v1/games/planet-coaster-studios-pack/index.json b/site/public/v1/games/planet-coaster-studios-pack/index.json new file mode 100644 index 000000000000..a40498d5100f --- /dev/null +++ b/site/public/v1/games/planet-coaster-studios-pack/index.json @@ -0,0 +1,28 @@ +{ + "id": 109986, + "slug": "planet-coaster-studios-pack", + "name": "Planet Coaster - Studios Pack", + "release_date": "2018-03-27", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113813250" + ], + "created_at": "2026-07-10T10:10:32.198665", + "updated_at": "2026-07-10T10:10:32.198665", + "url": "/v1/games/planet-coaster-studios-pack" +} diff --git a/site/public/v1/games/planet-coaster-the-munsters-munster-koach-construction-kit/index.json b/site/public/v1/games/planet-coaster-the-munsters-munster-koach-construction-kit/index.json new file mode 100644 index 000000000000..a121b57cd176 --- /dev/null +++ b/site/public/v1/games/planet-coaster-the-munsters-munster-koach-construction-kit/index.json @@ -0,0 +1,27 @@ +{ + "id": 109987, + "slug": "planet-coaster-the-munsters-munster-koach-construction-kit", + "name": "Planet Coaster - The Munsters Munster Koach Construction Kit", + "release_date": "2017-07-21", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113813370" + ], + "created_at": "2026-07-10T10:10:32.198665", + "updated_at": "2026-07-10T10:10:32.198665", + "url": "/v1/games/planet-coaster-the-munsters-munster-koach-construction-kit" +} diff --git a/site/public/v1/games/planet-coaster-vintage-pack/index.json b/site/public/v1/games/planet-coaster-vintage-pack/index.json new file mode 100644 index 000000000000..ffcd96f3ca4d --- /dev/null +++ b/site/public/v1/games/planet-coaster-vintage-pack/index.json @@ -0,0 +1,28 @@ +{ + "id": 109988, + "slug": "planet-coaster-vintage-pack", + "name": "Planet Coaster - Vintage Pack", + "release_date": "2018-07-10", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113813320" + ], + "created_at": "2026-07-10T10:10:32.199668", + "updated_at": "2026-07-10T10:10:32.199668", + "url": "/v1/games/planet-coaster-vintage-pack" +} diff --git a/site/public/v1/games/planet-coaster-world-s-fair-pack/index.json b/site/public/v1/games/planet-coaster-world-s-fair-pack/index.json new file mode 100644 index 000000000000..083f36712976 --- /dev/null +++ b/site/public/v1/games/planet-coaster-world-s-fair-pack/index.json @@ -0,0 +1,28 @@ +{ + "id": 109989, + "slug": "planet-coaster-world-s-fair-pack", + "name": "Planet Coaster - World's Fair Pack", + "release_date": "2018-10-16", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113813343" + ], + "created_at": "2026-07-10T10:10:32.199668", + "updated_at": "2026-07-10T10:10:32.199668", + "url": "/v1/games/planet-coaster-world-s-fair-pack" +} diff --git a/site/public/v1/games/planet-saints-pack/index.json b/site/public/v1/games/planet-saints-pack/index.json new file mode 100644 index 000000000000..01c7eff895d3 --- /dev/null +++ b/site/public/v1/games/planet-saints-pack/index.json @@ -0,0 +1,27 @@ +{ + "id": 110054, + "slug": "planet-saints-pack", + "name": "Planet Saints Pack", + "release_date": "2012-08-22", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 3" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60722028" + ], + "created_at": "2026-07-10T10:10:32.216659", + "updated_at": "2026-07-10T10:10:32.216659", + "url": "/v1/games/planet-saints-pack" +} diff --git a/site/public/v1/games/planet-zoo-africa-pack/index.json b/site/public/v1/games/planet-zoo-africa-pack/index.json new file mode 100644 index 000000000000..153a6c3de5a4 --- /dev/null +++ b/site/public/v1/games/planet-zoo-africa-pack/index.json @@ -0,0 +1,31 @@ +{ + "id": 110078, + "slug": "planet-zoo-africa-pack", + "name": "Planet Zoo: Africa Pack", + "release_date": "2021-06-22", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Frontier Developments" + ], + "publishers": [ + "Frontier Developments" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110822279" + ], + "created_at": "2026-07-10T10:10:32.222683", + "updated_at": "2026-07-10T10:10:32.222683", + "url": "/v1/games/planet-zoo-africa-pack" +} diff --git a/site/public/v1/games/planet-zoo-aquatic-pack/index.json b/site/public/v1/games/planet-zoo-aquatic-pack/index.json new file mode 100644 index 000000000000..ffd15aed897c --- /dev/null +++ b/site/public/v1/games/planet-zoo-aquatic-pack/index.json @@ -0,0 +1,31 @@ +{ + "id": 110079, + "slug": "planet-zoo-aquatic-pack", + "name": "Planet Zoo: Aquatic Pack", + "release_date": "2020-12-08", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Frontier Developments" + ], + "publishers": [ + "Frontier Developments" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110817236" + ], + "created_at": "2026-07-10T10:10:32.222683", + "updated_at": "2026-07-10T10:10:32.222683", + "url": "/v1/games/planet-zoo-aquatic-pack" +} diff --git a/site/public/v1/games/planet-zoo-arctic-pack/index.json b/site/public/v1/games/planet-zoo-arctic-pack/index.json new file mode 100644 index 000000000000..3010fe1add0c --- /dev/null +++ b/site/public/v1/games/planet-zoo-arctic-pack/index.json @@ -0,0 +1,31 @@ +{ + "id": 110080, + "slug": "planet-zoo-arctic-pack", + "name": "Planet Zoo: Arctic Pack", + "release_date": "2019-12-17", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Frontier Developments" + ], + "publishers": [ + "Frontier Developments" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110817171" + ], + "created_at": "2026-07-10T10:10:32.222683", + "updated_at": "2026-07-10T10:10:32.222683", + "url": "/v1/games/planet-zoo-arctic-pack" +} diff --git a/site/public/v1/games/planet-zoo-australia-pack/index.json b/site/public/v1/games/planet-zoo-australia-pack/index.json new file mode 100644 index 000000000000..49abc2634267 --- /dev/null +++ b/site/public/v1/games/planet-zoo-australia-pack/index.json @@ -0,0 +1,31 @@ +{ + "id": 110081, + "slug": "planet-zoo-australia-pack", + "name": "Planet Zoo: Australia Pack", + "release_date": "2020-08-25", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Frontier Developments" + ], + "publishers": [ + "Frontier Developments" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110822161" + ], + "created_at": "2026-07-10T10:10:32.223669", + "updated_at": "2026-07-10T10:10:32.223669", + "url": "/v1/games/planet-zoo-australia-pack" +} diff --git a/site/public/v1/games/planet-zoo-conservation-pack/index.json b/site/public/v1/games/planet-zoo-conservation-pack/index.json new file mode 100644 index 000000000000..e3cbbb854d5f --- /dev/null +++ b/site/public/v1/games/planet-zoo-conservation-pack/index.json @@ -0,0 +1,31 @@ +{ + "id": 110082, + "slug": "planet-zoo-conservation-pack", + "name": "Planet Zoo: Conservation Pack", + "release_date": "2022-06-21", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Frontier Developments" + ], + "publishers": [ + "Frontier Developments" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112281892" + ], + "created_at": "2026-07-10T10:10:32.223669", + "updated_at": "2026-07-10T10:10:32.223669", + "url": "/v1/games/planet-zoo-conservation-pack" +} diff --git a/site/public/v1/games/planet-zoo-europe-pack/index.json b/site/public/v1/games/planet-zoo-europe-pack/index.json new file mode 100644 index 000000000000..b22bb523585b --- /dev/null +++ b/site/public/v1/games/planet-zoo-europe-pack/index.json @@ -0,0 +1,31 @@ +{ + "id": 110083, + "slug": "planet-zoo-europe-pack", + "name": "Planet Zoo: Europe Pack", + "release_date": "2021-12-14", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Frontier Developments" + ], + "publishers": [ + "Frontier Developments" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110822297" + ], + "created_at": "2026-07-10T10:10:32.223669", + "updated_at": "2026-07-10T10:10:32.223669", + "url": "/v1/games/planet-zoo-europe-pack" +} diff --git a/site/public/v1/games/planet-zoo-grasslands-animal-pack/index.json b/site/public/v1/games/planet-zoo-grasslands-animal-pack/index.json new file mode 100644 index 000000000000..a2e550b56a7d --- /dev/null +++ b/site/public/v1/games/planet-zoo-grasslands-animal-pack/index.json @@ -0,0 +1,31 @@ +{ + "id": 110084, + "slug": "planet-zoo-grasslands-animal-pack", + "name": "Planet Zoo: Grasslands Animal Pack", + "release_date": "2022-12-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Frontier Developments" + ], + "publishers": [ + "Frontier Developments" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115731822" + ], + "created_at": "2026-07-10T10:10:32.223669", + "updated_at": "2026-07-10T10:10:32.223669", + "url": "/v1/games/planet-zoo-grasslands-animal-pack" +} diff --git a/site/public/v1/games/planet-zoo-north-america-animal-pack/index.json b/site/public/v1/games/planet-zoo-north-america-animal-pack/index.json new file mode 100644 index 000000000000..ac12049ea415 --- /dev/null +++ b/site/public/v1/games/planet-zoo-north-america-animal-pack/index.json @@ -0,0 +1,31 @@ +{ + "id": 110085, + "slug": "planet-zoo-north-america-animal-pack", + "name": "Planet Zoo: North America Animal Pack", + "release_date": "2021-10-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Frontier Developments" + ], + "publishers": [ + "Frontier Developments" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110822336" + ], + "created_at": "2026-07-10T10:10:32.224659", + "updated_at": "2026-07-10T10:10:32.224659", + "url": "/v1/games/planet-zoo-north-america-animal-pack" +} diff --git a/site/public/v1/games/planet-zoo-south-america-pack/index.json b/site/public/v1/games/planet-zoo-south-america-pack/index.json new file mode 100644 index 000000000000..c30c9c187dce --- /dev/null +++ b/site/public/v1/games/planet-zoo-south-america-pack/index.json @@ -0,0 +1,31 @@ +{ + "id": 110086, + "slug": "planet-zoo-south-america-pack", + "name": "Planet Zoo: South America Pack", + "release_date": "2020-04-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Frontier Developments" + ], + "publishers": [ + "Frontier Developments" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110822209" + ], + "created_at": "2026-07-10T10:10:32.224659", + "updated_at": "2026-07-10T10:10:32.224659", + "url": "/v1/games/planet-zoo-south-america-pack" +} diff --git a/site/public/v1/games/planet-zoo-southeast-asia-animal-pack/index.json b/site/public/v1/games/planet-zoo-southeast-asia-animal-pack/index.json new file mode 100644 index 000000000000..34be114d1ed4 --- /dev/null +++ b/site/public/v1/games/planet-zoo-southeast-asia-animal-pack/index.json @@ -0,0 +1,31 @@ +{ + "id": 110087, + "slug": "planet-zoo-southeast-asia-animal-pack", + "name": "Planet Zoo: Southeast Asia Animal Pack", + "release_date": "2021-03-30", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Frontier Developments" + ], + "publishers": [ + "Frontier Developments" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110822369" + ], + "created_at": "2026-07-10T10:10:32.224659", + "updated_at": "2026-07-10T10:10:32.224659", + "url": "/v1/games/planet-zoo-southeast-asia-animal-pack" +} diff --git a/site/public/v1/games/planet-zoo-twilight-pack/index.json b/site/public/v1/games/planet-zoo-twilight-pack/index.json new file mode 100644 index 000000000000..92a08be5dbb6 --- /dev/null +++ b/site/public/v1/games/planet-zoo-twilight-pack/index.json @@ -0,0 +1,31 @@ +{ + "id": 110088, + "slug": "planet-zoo-twilight-pack", + "name": "Planet Zoo: Twilight Pack", + "release_date": "2022-10-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Frontier Developments" + ], + "publishers": [ + "Frontier Developments" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q114788341" + ], + "created_at": "2026-07-10T10:10:32.224659", + "updated_at": "2026-07-10T10:10:32.224659", + "url": "/v1/games/planet-zoo-twilight-pack" +} diff --git a/site/public/v1/games/planet-zoo-wetlands-animal-pack/index.json b/site/public/v1/games/planet-zoo-wetlands-animal-pack/index.json new file mode 100644 index 000000000000..101af0d4ffa5 --- /dev/null +++ b/site/public/v1/games/planet-zoo-wetlands-animal-pack/index.json @@ -0,0 +1,31 @@ +{ + "id": 110089, + "slug": "planet-zoo-wetlands-animal-pack", + "name": "Planet Zoo: Wetlands Animal Pack", + "release_date": "2022-04-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Frontier Developments" + ], + "publishers": [ + "Frontier Developments" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111587103" + ], + "created_at": "2026-07-10T10:10:32.224659", + "updated_at": "2026-07-10T10:10:32.224659", + "url": "/v1/games/planet-zoo-wetlands-animal-pack" +} diff --git a/site/public/v1/games/playboy-the-mansion-gold-edition/index.json b/site/public/v1/games/playboy-the-mansion-gold-edition/index.json new file mode 100644 index 000000000000..c5748583a566 --- /dev/null +++ b/site/public/v1/games/playboy-the-mansion-gold-edition/index.json @@ -0,0 +1,35 @@ +{ + "id": 110344, + "slug": "playboy-the-mansion-gold-edition", + "name": "Playboy: The Mansion - Gold Edition", + "release_date": "2005-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "business simulation game", + "erotic video game", + "advergame" + ], + "stores": [], + "developers": [ + "Cyberlore Studios" + ], + "publishers": [ + "Buka Entertainment" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q98793059" + ], + "created_at": "2026-07-10T10:10:32.295127", + "updated_at": "2026-07-10T10:10:32.295127", + "url": "/v1/games/playboy-the-mansion-gold-edition" +} diff --git a/site/public/v1/games/playboy-the-mansion-private-party/index.json b/site/public/v1/games/playboy-the-mansion-private-party/index.json new file mode 100644 index 000000000000..8e0ec61d2efe --- /dev/null +++ b/site/public/v1/games/playboy-the-mansion-private-party/index.json @@ -0,0 +1,35 @@ +{ + "id": 110345, + "slug": "playboy-the-mansion-private-party", + "name": "Playboy the Mansion: Private Party", + "release_date": "2005-12-15", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "business simulation game", + "erotic video game", + "advergame" + ], + "stores": [], + "developers": [ + "Cyberlore Studios" + ], + "publishers": [ + "Groove Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q98540723" + ], + "created_at": "2026-07-10T10:10:32.296123", + "updated_at": "2026-07-10T10:10:32.296123", + "url": "/v1/games/playboy-the-mansion-private-party" +} diff --git a/site/public/v1/games/playchoice-10/index.json b/site/public/v1/games/playchoice-10/index.json new file mode 100644 index 000000000000..c3c06fc576f1 --- /dev/null +++ b/site/public/v1/games/playchoice-10/index.json @@ -0,0 +1,29 @@ +{ + "id": 110347, + "slug": "playchoice-10", + "name": "PlayChoice-10", + "release_date": "1986-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "arcade video game machine" + ], + "genres": [], + "stores": [], + "developers": [ + "Nintendo" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q370601" + ], + "created_at": "2026-07-10T10:10:32.296123", + "updated_at": "2026-07-10T10:10:32.296123", + "url": "/v1/games/playchoice-10" +} diff --git a/site/public/v1/games/playstation-20th-anniversary-theme/index.json b/site/public/v1/games/playstation-20th-anniversary-theme/index.json new file mode 100644 index 000000000000..c82dd35e558f --- /dev/null +++ b/site/public/v1/games/playstation-20th-anniversary-theme/index.json @@ -0,0 +1,33 @@ +{ + "id": 110389, + "slug": "playstation-20th-anniversary-theme", + "name": "PlayStation 20th Anniversary Theme", + "release_date": "2014-12-03", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 4", + "PlayStation Vita", + "PlayStation 3" + ], + "genres": [], + "stores": [], + "developers": [ + "Sony Interactive Entertainment" + ], + "publishers": [ + "Sony Interactive Entertainment" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q61468034" + ], + "created_at": "2026-07-10T10:10:32.307104", + "updated_at": "2026-07-10T10:10:32.307104", + "url": "/v1/games/playstation-20th-anniversary-theme" +} diff --git a/site/public/v1/games/playstation-vr-demo-disc/index.json b/site/public/v1/games/playstation-vr-demo-disc/index.json new file mode 100644 index 000000000000..eb1c831bdc0c --- /dev/null +++ b/site/public/v1/games/playstation-vr-demo-disc/index.json @@ -0,0 +1,27 @@ +{ + "id": 110396, + "slug": "playstation-vr-demo-disc", + "name": "PlayStation VR Demo Disc", + "release_date": "2016-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 4" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122995499" + ], + "created_at": "2026-07-10T10:10:32.309135", + "updated_at": "2026-07-10T10:10:32.309135", + "url": "/v1/games/playstation-vr-demo-disc" +} diff --git a/site/public/v1/games/playstation-vr-worlds/index.json b/site/public/v1/games/playstation-vr-worlds/index.json new file mode 100644 index 000000000000..f5983d1d129f --- /dev/null +++ b/site/public/v1/games/playstation-vr-worlds/index.json @@ -0,0 +1,31 @@ +{ + "id": 110397, + "slug": "playstation-vr-worlds", + "name": "PlayStation VR Worlds", + "release_date": "2016-10-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 4" + ], + "genres": [], + "stores": [], + "developers": [ + "London Studio" + ], + "publishers": [ + "Sony Interactive Entertainment" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63563606" + ], + "created_at": "2026-07-10T10:10:32.309135", + "updated_at": "2026-07-10T10:10:32.309135", + "url": "/v1/games/playstation-vr-worlds" +} diff --git a/site/public/v1/games/pocket-build-q111516800/index.json b/site/public/v1/games/pocket-build-q111516800/index.json new file mode 100644 index 000000000000..5c531e0605c7 --- /dev/null +++ b/site/public/v1/games/pocket-build-q111516800/index.json @@ -0,0 +1,28 @@ +{ + "id": 110604, + "slug": "pocket-build-q111516800", + "name": "Pocket Build+", + "release_date": "2022-04-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "iPadOS", + "iOS" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111516800" + ], + "created_at": "2026-07-10T10:10:32.368065", + "updated_at": "2026-07-10T10:10:32.368065", + "url": "/v1/games/pocket-build-q111516800" +} diff --git a/site/public/v1/games/pocoyo-circuits/index.json b/site/public/v1/games/pocoyo-circuits/index.json new file mode 100644 index 000000000000..4e207c4b0dc2 --- /dev/null +++ b/site/public/v1/games/pocoyo-circuits/index.json @@ -0,0 +1,29 @@ +{ + "id": 110697, + "slug": "pocoyo-circuits", + "name": "Pocoyo Circuits", + "release_date": "2011-03-19", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "racing video game" + ], + "stores": [], + "developers": [], + "publishers": [ + "Zinkia Entertainment" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q96694241" + ], + "created_at": "2026-07-10T10:10:32.395064", + "updated_at": "2026-07-10T10:10:32.395064", + "url": "/v1/games/pocoyo-circuits" +} diff --git a/site/public/v1/games/poglings/index.json b/site/public/v1/games/poglings/index.json new file mode 100644 index 000000000000..da0aa8585882 --- /dev/null +++ b/site/public/v1/games/poglings/index.json @@ -0,0 +1,30 @@ +{ + "id": 110728, + "slug": "poglings", + "name": "Poglings", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "monster-taming game", + "virtual pet video game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123734530" + ], + "created_at": "2026-07-10T10:10:32.404063", + "updated_at": "2026-07-10T10:10:32.404063", + "url": "/v1/games/poglings" +} diff --git a/site/public/v1/games/pogo-a-gogo/index.json b/site/public/v1/games/pogo-a-gogo/index.json new file mode 100644 index 000000000000..4f99ce5d97e0 --- /dev/null +++ b/site/public/v1/games/pogo-a-gogo/index.json @@ -0,0 +1,25 @@ +{ + "id": 110729, + "slug": "pogo-a-gogo", + "name": "Pogo-a-Gogo", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q41653827" + ], + "created_at": "2026-07-10T10:10:32.404063", + "updated_at": "2026-07-10T10:10:32.404063", + "url": "/v1/games/pogo-a-gogo" +} diff --git a/site/public/v1/games/pogo-padlock/index.json b/site/public/v1/games/pogo-padlock/index.json new file mode 100644 index 000000000000..8446fa06370d --- /dev/null +++ b/site/public/v1/games/pogo-padlock/index.json @@ -0,0 +1,25 @@ +{ + "id": 110736, + "slug": "pogo-padlock", + "name": "Pogo Padlock", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q41654487" + ], + "created_at": "2026-07-10T10:10:32.406079", + "updated_at": "2026-07-10T10:10:32.406079", + "url": "/v1/games/pogo-padlock" +} diff --git a/site/public/v1/games/pogo-painter/index.json b/site/public/v1/games/pogo-painter/index.json new file mode 100644 index 000000000000..a3bef18f669e --- /dev/null +++ b/site/public/v1/games/pogo-painter/index.json @@ -0,0 +1,25 @@ +{ + "id": 110737, + "slug": "pogo-painter", + "name": "Pogo Painter", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q41636843" + ], + "created_at": "2026-07-10T10:10:32.407070", + "updated_at": "2026-07-10T10:10:32.407070", + "url": "/v1/games/pogo-painter" +} diff --git a/site/public/v1/games/poietic-generator/index.json b/site/public/v1/games/poietic-generator/index.json new file mode 100644 index 000000000000..9a9474c3fcbd --- /dev/null +++ b/site/public/v1/games/poietic-generator/index.json @@ -0,0 +1,27 @@ +{ + "id": 110758, + "slug": "poietic-generator", + "name": "Poietic Generator", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "social network game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3123142" + ], + "created_at": "2026-07-10T10:10:32.414071", + "updated_at": "2026-07-10T10:10:32.414071", + "url": "/v1/games/poietic-generator" +} diff --git a/site/public/v1/games/pointman-the-akkadian-wars/index.json b/site/public/v1/games/pointman-the-akkadian-wars/index.json new file mode 100644 index 000000000000..3e8436bcaf64 --- /dev/null +++ b/site/public/v1/games/pointman-the-akkadian-wars/index.json @@ -0,0 +1,31 @@ +{ + "id": 110777, + "slug": "pointman-the-akkadian-wars", + "name": "Pointman: the Akkadian Wars", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 3" + ], + "genres": [], + "stores": [], + "developers": [ + "Condorstrike" + ], + "publishers": [ + "Condorstrike" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124060164" + ], + "created_at": "2026-07-10T10:10:32.419073", + "updated_at": "2026-07-10T10:10:32.419073", + "url": "/v1/games/pointman-the-akkadian-wars" +} diff --git a/site/public/v1/games/pok-forest/index.json b/site/public/v1/games/pok-forest/index.json new file mode 100644 index 000000000000..9b21acc62f65 --- /dev/null +++ b/site/public/v1/games/pok-forest/index.json @@ -0,0 +1,25 @@ +{ + "id": 110787, + "slug": "pok-forest", + "name": "Poké Forest", + "release_date": "2013-03-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112582101" + ], + "created_at": "2026-07-10T10:10:32.423070", + "updated_at": "2026-07-10T10:10:32.423070", + "url": "/v1/games/pok-forest" +} diff --git a/site/public/v1/games/pok-mon-brick-bronze/index.json b/site/public/v1/games/pok-mon-brick-bronze/index.json new file mode 100644 index 000000000000..7a9e239a4e45 --- /dev/null +++ b/site/public/v1/games/pok-mon-brick-bronze/index.json @@ -0,0 +1,32 @@ +{ + "id": 110798, + "slug": "pok-mon-brick-bronze", + "name": "Pokémon Brick Bronze", + "release_date": "2015-10-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Classic Mac OS", + "iOS", + "macOS", + "Microsoft Windows" + ], + "genres": [ + "role-playing video game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q102691924" + ], + "created_at": "2026-07-10T10:10:32.426070", + "updated_at": "2026-07-10T10:10:32.427070", + "url": "/v1/games/pok-mon-brick-bronze" +} diff --git a/site/public/v1/games/pok-mon-legends-z-a-mega-dimension/index.json b/site/public/v1/games/pok-mon-legends-z-a-mega-dimension/index.json new file mode 100644 index 000000000000..95496fbee9ea --- /dev/null +++ b/site/public/v1/games/pok-mon-legends-z-a-mega-dimension/index.json @@ -0,0 +1,32 @@ +{ + "id": 110826, + "slug": "pok-mon-legends-z-a-mega-dimension", + "name": "Pokémon Legends: Z-A - Mega Dimension", + "release_date": "2025-12-10", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "action role-playing game" + ], + "stores": [], + "developers": [ + "Game Freak" + ], + "publishers": [ + "Nintendo", + "The Pokémon Company" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136338067" + ], + "created_at": "2026-07-10T10:10:32.434070", + "updated_at": "2026-07-10T10:10:32.434070", + "url": "/v1/games/pok-mon-legends-z-a-mega-dimension" +} diff --git a/site/public/v1/games/pok-mon-mystery-dungeon-gates-to-infinity-demo/index.json b/site/public/v1/games/pok-mon-mystery-dungeon-gates-to-infinity-demo/index.json new file mode 100644 index 000000000000..ae7223988fef --- /dev/null +++ b/site/public/v1/games/pok-mon-mystery-dungeon-gates-to-infinity-demo/index.json @@ -0,0 +1,27 @@ +{ + "id": 110840, + "slug": "pok-mon-mystery-dungeon-gates-to-infinity-demo", + "name": "Pokémon Mystery Dungeon: Gates to Infinity demo", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Nintendo 3DS" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112843134" + ], + "created_at": "2026-07-10T10:10:32.438070", + "updated_at": "2026-07-10T10:10:32.438070", + "url": "/v1/games/pok-mon-mystery-dungeon-gates-to-infinity-demo" +} diff --git a/site/public/v1/games/pok-mon-mystery-dungeon-gold-rescue-team/index.json b/site/public/v1/games/pok-mon-mystery-dungeon-gold-rescue-team/index.json new file mode 100644 index 000000000000..8c0027715550 --- /dev/null +++ b/site/public/v1/games/pok-mon-mystery-dungeon-gold-rescue-team/index.json @@ -0,0 +1,29 @@ +{ + "id": 110843, + "slug": "pok-mon-mystery-dungeon-gold-rescue-team", + "name": "Pokémon Mystery Dungeon: Gold Rescue Team", + "release_date": "2007-08-11", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Spike Chunsoft" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112611718" + ], + "created_at": "2026-07-10T10:10:32.438070", + "updated_at": "2026-07-10T10:10:32.438070", + "url": "/v1/games/pok-mon-mystery-dungeon-gold-rescue-team" +} diff --git a/site/public/v1/games/pok-mon-picross-gbc/index.json b/site/public/v1/games/pok-mon-picross-gbc/index.json new file mode 100644 index 000000000000..944d21b8bea1 --- /dev/null +++ b/site/public/v1/games/pok-mon-picross-gbc/index.json @@ -0,0 +1,27 @@ +{ + "id": 110849, + "slug": "pok-mon-picross-gbc", + "name": "Pokémon Picross GBC", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "nonogram video game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108741826" + ], + "created_at": "2026-07-10T10:10:32.439070", + "updated_at": "2026-07-10T10:10:32.439070", + "url": "/v1/games/pok-mon-picross-gbc" +} diff --git a/site/public/v1/games/pok-mon-prism/index.json b/site/public/v1/games/pok-mon-prism/index.json new file mode 100644 index 000000000000..373ff5f5e71f --- /dev/null +++ b/site/public/v1/games/pok-mon-prism/index.json @@ -0,0 +1,29 @@ +{ + "id": 110859, + "slug": "pok-mon-prism", + "name": "Pokémon Prism", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Game Boy Color" + ], + "genres": [ + "monster-taming game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120971776" + ], + "created_at": "2026-07-10T10:10:32.441129", + "updated_at": "2026-07-10T10:10:32.441129", + "url": "/v1/games/pok-mon-prism" +} diff --git a/site/public/v1/games/pok-mon-scarlet-and-violet-the-teal-mask/index.json b/site/public/v1/games/pok-mon-scarlet-and-violet-the-teal-mask/index.json new file mode 100644 index 000000000000..b88037a45630 --- /dev/null +++ b/site/public/v1/games/pok-mon-scarlet-and-violet-the-teal-mask/index.json @@ -0,0 +1,25 @@ +{ + "id": 110879, + "slug": "pok-mon-scarlet-and-violet-the-teal-mask", + "name": "Pokémon Scarlet and Violet: The Teal Mask", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135270402" + ], + "created_at": "2026-07-10T10:10:32.446139", + "updated_at": "2026-07-10T10:10:32.446139", + "url": "/v1/games/pok-mon-scarlet-and-violet-the-teal-mask" +} diff --git a/site/public/v1/games/pok-mon-snap-station/index.json b/site/public/v1/games/pok-mon-snap-station/index.json new file mode 100644 index 000000000000..ad8e18e792b3 --- /dev/null +++ b/site/public/v1/games/pok-mon-snap-station/index.json @@ -0,0 +1,25 @@ +{ + "id": 110888, + "slug": "pok-mon-snap-station", + "name": "Pokémon Snap Station", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18817158" + ], + "created_at": "2026-07-10T10:10:32.448138", + "updated_at": "2026-07-10T10:10:32.448138", + "url": "/v1/games/pok-mon-snap-station" +} diff --git a/site/public/v1/games/pok-mon-sword-and-shield-expansion-pass/index.json b/site/public/v1/games/pok-mon-sword-and-shield-expansion-pass/index.json new file mode 100644 index 000000000000..306853853cec --- /dev/null +++ b/site/public/v1/games/pok-mon-sword-and-shield-expansion-pass/index.json @@ -0,0 +1,27 @@ +{ + "id": 110896, + "slug": "pok-mon-sword-and-shield-expansion-pass", + "name": "Pokémon Sword and Shield Expansion Pass", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Nintendo Switch Lite" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q96440106" + ], + "created_at": "2026-07-10T10:10:32.450139", + "updated_at": "2026-07-10T10:10:32.450139", + "url": "/v1/games/pok-mon-sword-and-shield-expansion-pass" +} diff --git a/site/public/v1/games/police-quest-collection/index.json b/site/public/v1/games/police-quest-collection/index.json new file mode 100644 index 000000000000..c0847aa148ab --- /dev/null +++ b/site/public/v1/games/police-quest-collection/index.json @@ -0,0 +1,31 @@ +{ + "id": 111070, + "slug": "police-quest-collection", + "name": "Police Quest Collection", + "release_date": "1987-09-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Sierra Entertainment" + ], + "publishers": [ + "Activision" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q114692107" + ], + "created_at": "2026-07-10T10:10:32.496979", + "updated_at": "2026-07-10T10:10:32.496979", + "url": "/v1/games/police-quest-collection" +} diff --git a/site/public/v1/games/police-quest-swat-1-2/index.json b/site/public/v1/games/police-quest-swat-1-2/index.json new file mode 100644 index 000000000000..6a0ae9b8c6e8 --- /dev/null +++ b/site/public/v1/games/police-quest-swat-1-2/index.json @@ -0,0 +1,27 @@ +{ + "id": 111076, + "slug": "police-quest-swat-1-2", + "name": "Police Quest: SWAT 1+2", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Activision" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123412965" + ], + "created_at": "2026-07-10T10:10:32.498979", + "updated_at": "2026-07-10T10:10:32.498979", + "url": "/v1/games/police-quest-swat-1-2" +} diff --git a/site/public/v1/games/police-simulator-2/index.json b/site/public/v1/games/police-simulator-2/index.json new file mode 100644 index 000000000000..6e3eb7a9ae26 --- /dev/null +++ b/site/public/v1/games/police-simulator-2/index.json @@ -0,0 +1,25 @@ +{ + "id": 111084, + "slug": "police-simulator-2", + "name": "Police Simulator 2", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140472008" + ], + "created_at": "2026-07-10T10:10:32.500980", + "updated_at": "2026-07-10T10:10:32.500980", + "url": "/v1/games/police-simulator-2" +} diff --git a/site/public/v1/games/pon-para-and-the-great-southern-labyrinth-love-and-shadows/index.json b/site/public/v1/games/pon-para-and-the-great-southern-labyrinth-love-and-shadows/index.json new file mode 100644 index 000000000000..601b41c11dbc --- /dev/null +++ b/site/public/v1/games/pon-para-and-the-great-southern-labyrinth-love-and-shadows/index.json @@ -0,0 +1,32 @@ +{ + "id": 111318, + "slug": "pon-para-and-the-great-southern-labyrinth-love-and-shadows", + "name": "Pon Para and the Great Southern Labyrinth - Love and Shadows", + "release_date": "2019-05-09", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Choice of Games" + ], + "publishers": [ + "Choice of Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115016175" + ], + "created_at": "2026-07-10T10:10:32.565721", + "updated_at": "2026-07-10T10:10:32.565721", + "url": "/v1/games/pon-para-and-the-great-southern-labyrinth-love-and-shadows" +} diff --git a/site/public/v1/games/pop-dart/index.json b/site/public/v1/games/pop-dart/index.json new file mode 100644 index 000000000000..aa9a690edcb7 --- /dev/null +++ b/site/public/v1/games/pop-dart/index.json @@ -0,0 +1,25 @@ +{ + "id": 111452, + "slug": "pop-dart", + "name": "Pop Dart", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q128014898" + ], + "created_at": "2026-07-10T10:10:32.601866", + "updated_at": "2026-07-10T10:10:32.601866", + "url": "/v1/games/pop-dart" +} diff --git a/site/public/v1/games/popex/index.json b/site/public/v1/games/popex/index.json new file mode 100644 index 000000000000..e50c658ca6c8 --- /dev/null +++ b/site/public/v1/games/popex/index.json @@ -0,0 +1,27 @@ +{ + "id": 111519, + "slug": "popex", + "name": "Popex", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "business simulation game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7229278" + ], + "created_at": "2026-07-10T10:10:32.621869", + "updated_at": "2026-07-10T10:10:32.621869", + "url": "/v1/games/popex" +} diff --git a/site/public/v1/games/poppy-playtime-chapter-1/index.json b/site/public/v1/games/poppy-playtime-chapter-1/index.json new file mode 100644 index 000000000000..9f68c71cb952 --- /dev/null +++ b/site/public/v1/games/poppy-playtime-chapter-1/index.json @@ -0,0 +1,39 @@ +{ + "id": 111555, + "slug": "poppy-playtime-chapter-1", + "name": "Poppy Playtime - Chapter 1", + "release_date": "2021-10-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 5", + "PlayStation 4", + "iOS", + "Microsoft Windows" + ], + "genres": [ + "puzzle video game", + "survival horror", + "episodic video game", + "mascot horror video game" + ], + "stores": [], + "developers": [ + "Mob Entertainment" + ], + "publishers": [ + "Mob Entertainment" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126045789" + ], + "created_at": "2026-07-10T10:10:32.631865", + "updated_at": "2026-07-10T10:10:32.631865", + "url": "/v1/games/poppy-playtime-chapter-1" +} diff --git a/site/public/v1/games/poppy-playtime-chapter-2/index.json b/site/public/v1/games/poppy-playtime-chapter-2/index.json new file mode 100644 index 000000000000..2a6861d804ef --- /dev/null +++ b/site/public/v1/games/poppy-playtime-chapter-2/index.json @@ -0,0 +1,37 @@ +{ + "id": 111556, + "slug": "poppy-playtime-chapter-2", + "name": "Poppy Playtime - Chapter 2", + "release_date": "2022-05-05", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "iOS", + "Microsoft Windows" + ], + "genres": [ + "puzzle video game", + "survival horror", + "episodic video game", + "mascot horror video game" + ], + "stores": [], + "developers": [ + "Mob Entertainment" + ], + "publishers": [ + "Mob Entertainment" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126045643" + ], + "created_at": "2026-07-10T10:10:32.631865", + "updated_at": "2026-07-10T10:10:32.631865", + "url": "/v1/games/poppy-playtime-chapter-2" +} diff --git a/site/public/v1/games/poppy-playtime-chapter-3/index.json b/site/public/v1/games/poppy-playtime-chapter-3/index.json new file mode 100644 index 000000000000..322f1e824778 --- /dev/null +++ b/site/public/v1/games/poppy-playtime-chapter-3/index.json @@ -0,0 +1,37 @@ +{ + "id": 111557, + "slug": "poppy-playtime-chapter-3", + "name": "Poppy Playtime - Chapter 3", + "release_date": "2024-01-30", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "iOS", + "Microsoft Windows" + ], + "genres": [ + "puzzle video game", + "survival horror", + "episodic video game", + "mascot horror video game" + ], + "stores": [], + "developers": [ + "Mob Entertainment" + ], + "publishers": [ + "Mob Entertainment" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126045674" + ], + "created_at": "2026-07-10T10:10:32.631865", + "updated_at": "2026-07-10T10:10:32.631865", + "url": "/v1/games/poppy-playtime-chapter-3" +} diff --git a/site/public/v1/games/poppy-playtime-chapter-4/index.json b/site/public/v1/games/poppy-playtime-chapter-4/index.json new file mode 100644 index 000000000000..ce8a0d007c44 --- /dev/null +++ b/site/public/v1/games/poppy-playtime-chapter-4/index.json @@ -0,0 +1,37 @@ +{ + "id": 111558, + "slug": "poppy-playtime-chapter-4", + "name": "Poppy Playtime - Chapter 4", + "release_date": "2025-01-30", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "iOS", + "Microsoft Windows" + ], + "genres": [ + "puzzle video game", + "survival horror", + "episodic video game", + "mascot horror video game" + ], + "stores": [], + "developers": [ + "Mob Entertainment" + ], + "publishers": [ + "Mob Entertainment" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130392279" + ], + "created_at": "2026-07-10T10:10:32.631865", + "updated_at": "2026-07-10T10:10:32.631865", + "url": "/v1/games/poppy-playtime-chapter-4" +} diff --git a/site/public/v1/games/populous-world-editor/index.json b/site/public/v1/games/populous-world-editor/index.json new file mode 100644 index 000000000000..5d2710140cc8 --- /dev/null +++ b/site/public/v1/games/populous-world-editor/index.json @@ -0,0 +1,27 @@ +{ + "id": 111579, + "slug": "populous-world-editor", + "name": "Populous: World Editor", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Electronic Arts" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126197158" + ], + "created_at": "2026-07-10T10:10:32.636865", + "updated_at": "2026-07-10T10:10:32.636865", + "url": "/v1/games/populous-world-editor" +} diff --git a/site/public/v1/games/portal-bundle/index.json b/site/public/v1/games/portal-bundle/index.json new file mode 100644 index 000000000000..b089a1107fec --- /dev/null +++ b/site/public/v1/games/portal-bundle/index.json @@ -0,0 +1,35 @@ +{ + "id": 111635, + "slug": "portal-bundle", + "name": "Portal Bundle", + "release_date": "2018-03-14", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "science fiction", + "first-person shooter", + "puzzle-platformer" + ], + "stores": [], + "developers": [ + "Valve Corporation" + ], + "publishers": [ + "Valve Corporation" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q71192706" + ], + "created_at": "2026-07-10T10:10:32.650955", + "updated_at": "2026-07-10T10:10:32.650955", + "url": "/v1/games/portal-bundle" +} diff --git a/site/public/v1/games/portal-companion-collection/index.json b/site/public/v1/games/portal-companion-collection/index.json new file mode 100644 index 000000000000..c76a4b737e46 --- /dev/null +++ b/site/public/v1/games/portal-companion-collection/index.json @@ -0,0 +1,27 @@ +{ + "id": 111636, + "slug": "portal-companion-collection", + "name": "Portal Companion Collection", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [ + "NVIDIA Lightspeed Studios" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113572978" + ], + "created_at": "2026-07-10T10:10:32.650955", + "updated_at": "2026-07-10T10:10:32.650955", + "url": "/v1/games/portal-companion-collection" +} diff --git a/site/public/v1/games/portal-the-first-slice/index.json b/site/public/v1/games/portal-the-first-slice/index.json new file mode 100644 index 000000000000..92d43afec8dc --- /dev/null +++ b/site/public/v1/games/portal-the-first-slice/index.json @@ -0,0 +1,34 @@ +{ + "id": 111657, + "slug": "portal-the-first-slice", + "name": "Portal: The First Slice", + "release_date": "2008-05-08", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "puzzle video game" + ], + "stores": [], + "developers": [ + "Valve Corporation" + ], + "publishers": [ + "Valve Corporation" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122658378" + ], + "created_at": "2026-07-10T10:10:32.657479", + "updated_at": "2026-07-10T10:10:32.657479", + "url": "/v1/games/portal-the-first-slice" +} diff --git a/site/public/v1/games/portal-wii-u-edition/index.json b/site/public/v1/games/portal-wii-u-edition/index.json new file mode 100644 index 000000000000..8e9ec9afc082 --- /dev/null +++ b/site/public/v1/games/portal-wii-u-edition/index.json @@ -0,0 +1,33 @@ +{ + "id": 111663, + "slug": "portal-wii-u-edition", + "name": "Portal: Wii U Edition", + "release_date": "2023-08-09", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Wii U" + ], + "genres": [ + "puzzle video game" + ], + "stores": [], + "developers": [ + "Source Macchiato" + ], + "publishers": [ + "Source Macchiato" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123135943" + ], + "created_at": "2026-07-10T10:10:32.658479", + "updated_at": "2026-07-10T10:10:32.658479", + "url": "/v1/games/portal-wii-u-edition" +} diff --git a/site/public/v1/games/portugal-virtual/index.json b/site/public/v1/games/portugal-virtual/index.json new file mode 100644 index 000000000000..aabc2a522710 --- /dev/null +++ b/site/public/v1/games/portugal-virtual/index.json @@ -0,0 +1,27 @@ +{ + "id": 111680, + "slug": "portugal-virtual", + "name": "Portugal Virtual", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "cross-platform" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10352013" + ], + "created_at": "2026-07-10T10:10:32.663473", + "updated_at": "2026-07-10T10:10:32.663473", + "url": "/v1/games/portugal-virtual" +} diff --git a/site/public/v1/games/poseidon-master-of-atlantis/index.json b/site/public/v1/games/poseidon-master-of-atlantis/index.json new file mode 100644 index 000000000000..80a81e2984f7 --- /dev/null +++ b/site/public/v1/games/poseidon-master-of-atlantis/index.json @@ -0,0 +1,33 @@ +{ + "id": 111683, + "slug": "poseidon-master-of-atlantis", + "name": "Poseidon: Master of Atlantis", + "release_date": "2001-06-25", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "city-building game" + ], + "stores": [], + "developers": [ + "Impressions Games" + ], + "publishers": [ + "Sierra Entertainment" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1239599" + ], + "created_at": "2026-07-10T10:10:32.663473", + "updated_at": "2026-07-10T10:10:32.663473", + "url": "/v1/games/poseidon-master-of-atlantis" +} diff --git a/site/public/v1/games/post-apocalyptic-mayhem-chaos-pack/index.json b/site/public/v1/games/post-apocalyptic-mayhem-chaos-pack/index.json new file mode 100644 index 000000000000..f754a371df60 --- /dev/null +++ b/site/public/v1/games/post-apocalyptic-mayhem-chaos-pack/index.json @@ -0,0 +1,29 @@ +{ + "id": 111710, + "slug": "post-apocalyptic-mayhem-chaos-pack", + "name": "Post Apocalyptic Mayhem: Chaos Pack", + "release_date": "2011-09-29", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Steel Monkeys" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120983436" + ], + "created_at": "2026-07-10T10:10:32.670473", + "updated_at": "2026-07-10T10:10:32.670473", + "url": "/v1/games/post-apocalyptic-mayhem-chaos-pack" +} diff --git a/site/public/v1/games/post-self-muck/index.json b/site/public/v1/games/post-self-muck/index.json new file mode 100644 index 000000000000..28f746bc34e8 --- /dev/null +++ b/site/public/v1/games/post-self-muck/index.json @@ -0,0 +1,25 @@ +{ + "id": 111720, + "slug": "post-self-muck", + "name": "Post-Self MUCK", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122785257" + ], + "created_at": "2026-07-10T10:10:32.673479", + "updated_at": "2026-07-10T10:10:32.673479", + "url": "/v1/games/post-self-muck" +} diff --git a/site/public/v1/games/postal-10th-anniversary-collector-s-edition/index.json b/site/public/v1/games/postal-10th-anniversary-collector-s-edition/index.json new file mode 100644 index 000000000000..4a704580d1d6 --- /dev/null +++ b/site/public/v1/games/postal-10th-anniversary-collector-s-edition/index.json @@ -0,0 +1,42 @@ +{ + "id": 111728, + "slug": "postal-10th-anniversary-collector-s-edition", + "name": "Postal: 10th Anniversary Collector's Edition", + "release_date": "2007-10-27", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "black comedy", + "third-person shooter", + "shoot 'em up", + "parody video game", + "satirical video game", + "black comedy video game", + "self-reflexive video game" + ], + "stores": [], + "developers": [ + "Running with Scissors" + ], + "publishers": [ + "Akella", + "Running with Scissors" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107009929" + ], + "created_at": "2026-07-10T10:10:32.675482", + "updated_at": "2026-07-10T10:10:32.675482", + "url": "/v1/games/postal-10th-anniversary-collector-s-edition" +} diff --git a/site/public/v1/games/postal-2-a-week-in-paradise/index.json b/site/public/v1/games/postal-2-a-week-in-paradise/index.json new file mode 100644 index 000000000000..57cc2cc4781e --- /dev/null +++ b/site/public/v1/games/postal-2-a-week-in-paradise/index.json @@ -0,0 +1,39 @@ +{ + "id": 111729, + "slug": "postal-2-a-week-in-paradise", + "name": "Postal 2: A Week in Paradise", + "release_date": "2005-12-26", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "black comedy video game", + "self-reflexive video game", + "parody video game", + "satirical video game" + ], + "stores": [], + "developers": [ + "Resurrection Studios", + "Running with Scissors" + ], + "publishers": [ + "Running with Scissors", + "Resurrection Studios" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q59315077" + ], + "created_at": "2026-07-10T10:10:32.676479", + "updated_at": "2026-07-10T10:10:32.676479", + "url": "/v1/games/postal-2-a-week-in-paradise" +} diff --git a/site/public/v1/games/postal-2-apocalypse-weekend/index.json b/site/public/v1/games/postal-2-apocalypse-weekend/index.json new file mode 100644 index 000000000000..3cd992fdf7a3 --- /dev/null +++ b/site/public/v1/games/postal-2-apocalypse-weekend/index.json @@ -0,0 +1,38 @@ +{ + "id": 111730, + "slug": "postal-2-apocalypse-weekend", + "name": "Postal 2: Apocalypse Weekend", + "release_date": "2005-05-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "black comedy video game", + "self-reflexive video game", + "parody video game", + "satirical video game" + ], + "stores": [], + "developers": [ + "Running with Scissors" + ], + "publishers": [ + "Running with Scissors" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q59312186" + ], + "created_at": "2026-07-10T10:10:32.676479", + "updated_at": "2026-07-10T10:10:32.676479", + "url": "/v1/games/postal-2-apocalypse-weekend" +} diff --git a/site/public/v1/games/postal-2-complete/index.json b/site/public/v1/games/postal-2-complete/index.json new file mode 100644 index 000000000000..491e219165f1 --- /dev/null +++ b/site/public/v1/games/postal-2-complete/index.json @@ -0,0 +1,38 @@ +{ + "id": 111731, + "slug": "postal-2-complete", + "name": "Postal 2: Complete", + "release_date": "2012-11-02", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "self-reflexive video game", + "parody video game", + "satirical video game", + "black comedy video game" + ], + "stores": [], + "developers": [ + "Running with Scissors" + ], + "publishers": [ + "Running with Scissors" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124717664" + ], + "created_at": "2026-07-10T10:10:32.676479", + "updated_at": "2026-07-10T10:10:32.676479", + "url": "/v1/games/postal-2-complete" +} diff --git a/site/public/v1/games/postal-2-corkscrew-rules/index.json b/site/public/v1/games/postal-2-corkscrew-rules/index.json new file mode 100644 index 000000000000..88c48b02d552 --- /dev/null +++ b/site/public/v1/games/postal-2-corkscrew-rules/index.json @@ -0,0 +1,35 @@ +{ + "id": 111732, + "slug": "postal-2-corkscrew-rules", + "name": "Postal 2: Corkscrew Rules!", + "release_date": "2005-08-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "black comedy video game", + "self-reflexive video game", + "parody video game", + "satirical video game" + ], + "stores": [], + "developers": [], + "publishers": [ + "Akella" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4047276" + ], + "created_at": "2026-07-10T10:10:32.676479", + "updated_at": "2026-07-10T10:10:32.676479", + "url": "/v1/games/postal-2-corkscrew-rules" +} diff --git a/site/public/v1/games/postal-2-eternal-damnation/index.json b/site/public/v1/games/postal-2-eternal-damnation/index.json new file mode 100644 index 000000000000..dcaa7b8faa8e --- /dev/null +++ b/site/public/v1/games/postal-2-eternal-damnation/index.json @@ -0,0 +1,40 @@ +{ + "id": 111733, + "slug": "postal-2-eternal-damnation", + "name": "Postal 2: Eternal Damnation", + "release_date": "2006-11-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "survival horror", + "black comedy video game", + "self-reflexive video game", + "parody video game", + "satirical video game" + ], + "stores": [], + "developers": [ + "Resurrection Studios", + "Revival Games" + ], + "publishers": [ + "Running with Scissors", + "Resurrection Studios" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q59314969" + ], + "created_at": "2026-07-10T10:10:32.676479", + "updated_at": "2026-07-10T10:10:32.676479", + "url": "/v1/games/postal-2-eternal-damnation" +} diff --git a/site/public/v1/games/postal-2-paradise-lost/index.json b/site/public/v1/games/postal-2-paradise-lost/index.json new file mode 100644 index 000000000000..02a589bc4217 --- /dev/null +++ b/site/public/v1/games/postal-2-paradise-lost/index.json @@ -0,0 +1,36 @@ +{ + "id": 111734, + "slug": "postal-2-paradise-lost", + "name": "Postal 2: Paradise Lost", + "release_date": "2015-04-17", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "self-reflexive video game", + "parody video game" + ], + "stores": [], + "developers": [ + "Running with Scissors" + ], + "publishers": [ + "Running with Scissors" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q59312244" + ], + "created_at": "2026-07-10T10:10:32.676479", + "updated_at": "2026-07-10T10:10:32.676479", + "url": "/v1/games/postal-2-paradise-lost" +} diff --git a/site/public/v1/games/postal-2-share-the-pain-demo/index.json b/site/public/v1/games/postal-2-share-the-pain-demo/index.json new file mode 100644 index 000000000000..204423b43374 --- /dev/null +++ b/site/public/v1/games/postal-2-share-the-pain-demo/index.json @@ -0,0 +1,31 @@ +{ + "id": 111736, + "slug": "postal-2-share-the-pain-demo", + "name": "Postal 2: Share the Pain demo", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "first-person shooter" + ], + "stores": [], + "developers": [ + "Running with Scissors" + ], + "publishers": [ + "Running with Scissors" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q98352762" + ], + "created_at": "2026-07-10T10:10:32.677479", + "updated_at": "2026-07-10T10:10:32.677479", + "url": "/v1/games/postal-2-share-the-pain-demo" +} diff --git a/site/public/v1/games/postal-2-share-the-pain/index.json b/site/public/v1/games/postal-2-share-the-pain/index.json new file mode 100644 index 000000000000..e37c922cc793 --- /dev/null +++ b/site/public/v1/games/postal-2-share-the-pain/index.json @@ -0,0 +1,36 @@ +{ + "id": 111737, + "slug": "postal-2-share-the-pain", + "name": "Postal 2: Share the Pain", + "release_date": "2003-12-17", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "black comedy video game", + "satirical video game" + ], + "stores": [], + "developers": [ + "Resurrection Studios" + ], + "publishers": [ + "Running with Scissors" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q59312137" + ], + "created_at": "2026-07-10T10:10:32.677479", + "updated_at": "2026-07-10T10:10:32.677479", + "url": "/v1/games/postal-2-share-the-pain" +} diff --git a/site/public/v1/games/postal-3-catharsis-reborn/index.json b/site/public/v1/games/postal-3-catharsis-reborn/index.json new file mode 100644 index 000000000000..aa4f0940980a --- /dev/null +++ b/site/public/v1/games/postal-3-catharsis-reborn/index.json @@ -0,0 +1,29 @@ +{ + "id": 111740, + "slug": "postal-3-catharsis-reborn", + "name": "Postal 3: Catharsis Reborn", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "third-person shooter" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110817123" + ], + "created_at": "2026-07-10T10:10:32.678481", + "updated_at": "2026-07-10T10:10:32.678481", + "url": "/v1/games/postal-3-catharsis-reborn" +} diff --git a/site/public/v1/games/postal-classic-and-uncut/index.json b/site/public/v1/games/postal-classic-and-uncut/index.json new file mode 100644 index 000000000000..29432822431c --- /dev/null +++ b/site/public/v1/games/postal-classic-and-uncut/index.json @@ -0,0 +1,37 @@ +{ + "id": 111744, + "slug": "postal-classic-and-uncut", + "name": "Postal: Classic and Uncut", + "release_date": "2003-08-29", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "action game", + "shoot 'em up", + "horror video game" + ], + "stores": [], + "developers": [ + "Running with Scissors" + ], + "publishers": [ + "Running with Scissors", + "Whiptail Interactive" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113989979" + ], + "created_at": "2026-07-10T10:10:32.678481", + "updated_at": "2026-07-10T10:10:32.678481", + "url": "/v1/games/postal-classic-and-uncut" +} diff --git a/site/public/v1/games/postal-fudge-pack/index.json b/site/public/v1/games/postal-fudge-pack/index.json new file mode 100644 index 000000000000..e92b2b442c15 --- /dev/null +++ b/site/public/v1/games/postal-fudge-pack/index.json @@ -0,0 +1,38 @@ +{ + "id": 111745, + "slug": "postal-fudge-pack", + "name": "Postal: Fudge Pack", + "release_date": "2006-11-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "parody video game", + "satirical video game", + "black comedy video game", + "self-reflexive video game" + ], + "stores": [], + "developers": [ + "Resurrection Studios", + "Running with Scissors" + ], + "publishers": [ + "Running with Scissors" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q61968603" + ], + "created_at": "2026-07-10T10:10:32.679479", + "updated_at": "2026-07-10T10:10:32.679479", + "url": "/v1/games/postal-fudge-pack" +} diff --git a/site/public/v1/games/postal-plus/index.json b/site/public/v1/games/postal-plus/index.json new file mode 100644 index 000000000000..49b21fdc6c8d --- /dev/null +++ b/site/public/v1/games/postal-plus/index.json @@ -0,0 +1,33 @@ +{ + "id": 111747, + "slug": "postal-plus", + "name": "Postal Plus", + "release_date": "2001-03-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "shoot 'em up" + ], + "stores": [], + "developers": [ + "Running with Scissors" + ], + "publishers": [ + "Running with Scissors" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q59646230" + ], + "created_at": "2026-07-10T10:10:32.679479", + "updated_at": "2026-07-10T10:10:32.679479", + "url": "/v1/games/postal-plus" +} diff --git a/site/public/v1/games/postal-special-delivery/index.json b/site/public/v1/games/postal-special-delivery/index.json new file mode 100644 index 000000000000..eb6217fdbd87 --- /dev/null +++ b/site/public/v1/games/postal-special-delivery/index.json @@ -0,0 +1,35 @@ +{ + "id": 111749, + "slug": "postal-special-delivery", + "name": "Postal: Special Delivery", + "release_date": "1998-08-27", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Classic Mac OS", + "Microsoft Windows" + ], + "genres": [ + "shoot 'em up" + ], + "stores": [], + "developers": [ + "Running with Scissors" + ], + "publishers": [ + "Running with Scissors", + "Ripcord Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q59645675" + ], + "created_at": "2026-07-10T10:10:32.679479", + "updated_at": "2026-07-10T10:10:32.679479", + "url": "/v1/games/postal-special-delivery" +} diff --git a/site/public/v1/games/postal-unlimited/index.json b/site/public/v1/games/postal-unlimited/index.json new file mode 100644 index 000000000000..1b99b486ff56 --- /dev/null +++ b/site/public/v1/games/postal-unlimited/index.json @@ -0,0 +1,38 @@ +{ + "id": 111750, + "slug": "postal-unlimited", + "name": "Postal Unlimited", + "release_date": "2007-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "shoot 'em up", + "black comedy video game", + "self-reflexive video game", + "parody video game", + "satirical video game" + ], + "stores": [], + "developers": [ + "Running with Scissors" + ], + "publishers": [ + "Akella" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q59647082" + ], + "created_at": "2026-07-10T10:10:32.679479", + "updated_at": "2026-07-10T10:10:32.679479", + "url": "/v1/games/postal-unlimited" +} diff --git a/site/public/v1/games/power-drive-2000/index.json b/site/public/v1/games/power-drive-2000/index.json new file mode 100644 index 000000000000..630d16a5d7b8 --- /dev/null +++ b/site/public/v1/games/power-drive-2000/index.json @@ -0,0 +1,25 @@ +{ + "id": 111901, + "slug": "power-drive-2000", + "name": "Power Drive 2000", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140471356" + ], + "created_at": "2026-07-10T10:10:32.720547", + "updated_at": "2026-07-10T10:10:32.720547", + "url": "/v1/games/power-drive-2000" +} diff --git a/site/public/v1/games/power-rangers-versus-teenage-mutant-ninja-turtles-ultimate-hero-clash-2/index.json b/site/public/v1/games/power-rangers-versus-teenage-mutant-ninja-turtles-ultimate-hero-clash-2/index.json new file mode 100644 index 000000000000..4142539167c6 --- /dev/null +++ b/site/public/v1/games/power-rangers-versus-teenage-mutant-ninja-turtles-ultimate-hero-clash-2/index.json @@ -0,0 +1,25 @@ +{ + "id": 111985, + "slug": "power-rangers-versus-teenage-mutant-ninja-turtles-ultimate-hero-clash-2", + "name": "Power Rangers Versus Teenage Mutant Ninja Turtles: Ultimate Hero Clash 2", + "release_date": "2017-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q101246881" + ], + "created_at": "2026-07-10T10:10:32.746490", + "updated_at": "2026-07-10T10:10:32.746490", + "url": "/v1/games/power-rangers-versus-teenage-mutant-ninja-turtles-ultimate-hero-clash-2" +} diff --git a/site/public/v1/games/power-rangers-vs-teenage-mutant-ninja-turtles-ultimate-hero-clash-2/index.json b/site/public/v1/games/power-rangers-vs-teenage-mutant-ninja-turtles-ultimate-hero-clash-2/index.json new file mode 100644 index 000000000000..80ceb4a15756 --- /dev/null +++ b/site/public/v1/games/power-rangers-vs-teenage-mutant-ninja-turtles-ultimate-hero-clash-2/index.json @@ -0,0 +1,25 @@ +{ + "id": 111986, + "slug": "power-rangers-vs-teenage-mutant-ninja-turtles-ultimate-hero-clash-2", + "name": "Power Rangers vs Teenage Mutant Ninja Turtles: Ultimate Hero Clash 2", + "release_date": "2017-02-03", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140373196" + ], + "created_at": "2026-07-10T10:10:32.746490", + "updated_at": "2026-07-10T10:10:32.746490", + "url": "/v1/games/power-rangers-vs-teenage-mutant-ninja-turtles-ultimate-hero-clash-2" +} diff --git a/site/public/v1/games/power-soft/index.json b/site/public/v1/games/power-soft/index.json new file mode 100644 index 000000000000..36ac19ab2974 --- /dev/null +++ b/site/public/v1/games/power-soft/index.json @@ -0,0 +1,29 @@ +{ + "id": 112004, + "slug": "power-soft", + "name": "Power-Soft", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Amstrad CPC" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Tronic Verlag GmbH und Co." + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113509965" + ], + "created_at": "2026-07-10T10:10:32.751488", + "updated_at": "2026-07-10T10:10:32.751488", + "url": "/v1/games/power-soft" +} diff --git a/site/public/v1/games/ppkp-q118235365/index.json b/site/public/v1/games/ppkp-q118235365/index.json new file mode 100644 index 000000000000..b5ac5fe90c2e --- /dev/null +++ b/site/public/v1/games/ppkp-q118235365/index.json @@ -0,0 +1,28 @@ +{ + "id": 112109, + "slug": "ppkp-q118235365", + "name": "PPKP+", + "release_date": "2023-05-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "iPadOS", + "iOS" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118235365" + ], + "created_at": "2026-07-10T10:10:32.781389", + "updated_at": "2026-07-10T10:10:32.781389", + "url": "/v1/games/ppkp-q118235365" +} diff --git a/site/public/v1/games/prboom-q67197321/index.json b/site/public/v1/games/prboom-q67197321/index.json new file mode 100644 index 000000000000..eb3bd9fb4918 --- /dev/null +++ b/site/public/v1/games/prboom-q67197321/index.json @@ -0,0 +1,25 @@ +{ + "id": 112152, + "slug": "prboom-q67197321", + "name": "PrBoom+", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q67197321" + ], + "created_at": "2026-07-10T10:10:32.793476", + "updated_at": "2026-07-10T10:10:32.793476", + "url": "/v1/games/prboom-q67197321" +} diff --git a/site/public/v1/games/prboom/index.json b/site/public/v1/games/prboom/index.json new file mode 100644 index 000000000000..d5ecba64c9a5 --- /dev/null +++ b/site/public/v1/games/prboom/index.json @@ -0,0 +1,25 @@ +{ + "id": 112153, + "slug": "prboom", + "name": "PrBoom", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065211" + ], + "created_at": "2026-07-10T10:10:32.794461", + "updated_at": "2026-07-10T10:10:32.794461", + "url": "/v1/games/prboom" +} diff --git a/site/public/v1/games/prey-2/index.json b/site/public/v1/games/prey-2/index.json new file mode 100644 index 000000000000..d4407b2a084a --- /dev/null +++ b/site/public/v1/games/prey-2/index.json @@ -0,0 +1,31 @@ +{ + "id": 112376, + "slug": "prey-2", + "name": "Prey 2", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "science fiction video game" + ], + "stores": [], + "developers": [ + "Human Head Studios" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28489858" + ], + "created_at": "2026-07-10T10:10:32.854529", + "updated_at": "2026-07-10T10:10:32.854529", + "url": "/v1/games/prey-2" +} diff --git a/site/public/v1/games/prey-mooncrash/index.json b/site/public/v1/games/prey-mooncrash/index.json new file mode 100644 index 000000000000..a16392cddb34 --- /dev/null +++ b/site/public/v1/games/prey-mooncrash/index.json @@ -0,0 +1,25 @@ +{ + "id": 112379, + "slug": "prey-mooncrash", + "name": "Prey - Mooncrash", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63165006" + ], + "created_at": "2026-07-10T10:10:32.855465", + "updated_at": "2026-07-10T10:10:32.855465", + "url": "/v1/games/prey-mooncrash" +} diff --git a/site/public/v1/games/prezident-21/index.json b/site/public/v1/games/prezident-21/index.json new file mode 100644 index 000000000000..939ab02d468d --- /dev/null +++ b/site/public/v1/games/prezident-21/index.json @@ -0,0 +1,25 @@ +{ + "id": 112385, + "slug": "prezident-21", + "name": "Prezident 21", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28053437" + ], + "created_at": "2026-07-10T10:10:32.856465", + "updated_at": "2026-07-10T10:10:32.856465", + "url": "/v1/games/prezident-21" +} diff --git a/site/public/v1/games/primitive-link/index.json b/site/public/v1/games/primitive-link/index.json new file mode 100644 index 000000000000..276990d0d1d1 --- /dev/null +++ b/site/public/v1/games/primitive-link/index.json @@ -0,0 +1,25 @@ +{ + "id": 112498, + "slug": "primitive-link", + "name": "PRIMITIVE LINK", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11335642" + ], + "created_at": "2026-07-10T10:10:32.887037", + "updated_at": "2026-07-10T10:10:32.887037", + "url": "/v1/games/primitive-link" +} diff --git a/site/public/v1/games/prince-of-persia-the-lost-crown-mask-of-darkness/index.json b/site/public/v1/games/prince-of-persia-the-lost-crown-mask-of-darkness/index.json new file mode 100644 index 000000000000..994d03fd1a80 --- /dev/null +++ b/site/public/v1/games/prince-of-persia-the-lost-crown-mask-of-darkness/index.json @@ -0,0 +1,32 @@ +{ + "id": 112539, + "slug": "prince-of-persia-the-lost-crown-mask-of-darkness", + "name": "Prince of Persia: The Lost Crown - Mask of Darkness", + "release_date": "2024-09-17", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows", + "PlayStation 5", + "Xbox Series X and Series S", + "PlayStation 4" + ], + "genres": [ + "Metroidvania" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q132413360" + ], + "created_at": "2026-07-10T10:10:32.897982", + "updated_at": "2026-07-10T10:10:32.897982", + "url": "/v1/games/prince-of-persia-the-lost-crown-mask-of-darkness" +} diff --git a/site/public/v1/games/prince-of-persia-trilogy/index.json b/site/public/v1/games/prince-of-persia-trilogy/index.json new file mode 100644 index 000000000000..ea086e093c9b --- /dev/null +++ b/site/public/v1/games/prince-of-persia-trilogy/index.json @@ -0,0 +1,28 @@ +{ + "id": 112544, + "slug": "prince-of-persia-trilogy", + "name": "Prince of Persia Trilogy", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 3", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q99543224" + ], + "created_at": "2026-07-10T10:10:32.899982", + "updated_at": "2026-07-10T10:10:32.899982", + "url": "/v1/games/prince-of-persia-trilogy" +} diff --git a/site/public/v1/games/prince-of-persia/index.json b/site/public/v1/games/prince-of-persia/index.json new file mode 100644 index 000000000000..e9b846b5cd03 --- /dev/null +++ b/site/public/v1/games/prince-of-persia/index.json @@ -0,0 +1,31 @@ +{ + "id": 112546, + "slug": "prince-of-persia", + "name": "Prince of Persia", + "release_date": "2008-12-02", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "PlayStation 3", + "Microsoft Windows" + ], + "genres": [ + "action-adventure game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q852583" + ], + "created_at": "2026-07-10T10:10:32.899982", + "updated_at": "2026-07-10T10:10:32.899982", + "url": "/v1/games/prince-of-persia" +} diff --git a/site/public/v1/games/princess-conquest-additional-characters-1/index.json b/site/public/v1/games/princess-conquest-additional-characters-1/index.json new file mode 100644 index 000000000000..1b95969e11e1 --- /dev/null +++ b/site/public/v1/games/princess-conquest-additional-characters-1/index.json @@ -0,0 +1,31 @@ +{ + "id": 112569, + "slug": "princess-conquest-additional-characters-1", + "name": "Princess & Conquest Additional Characters #1", + "release_date": "2023-04-15", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Towerfag" + ], + "publishers": [ + "Critical Bliss" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126027955" + ], + "created_at": "2026-07-10T10:10:32.906044", + "updated_at": "2026-07-10T10:10:32.906044", + "url": "/v1/games/princess-conquest-additional-characters-1" +} diff --git a/site/public/v1/games/princess-conquest-additional-characters-2/index.json b/site/public/v1/games/princess-conquest-additional-characters-2/index.json new file mode 100644 index 000000000000..d712a33ce660 --- /dev/null +++ b/site/public/v1/games/princess-conquest-additional-characters-2/index.json @@ -0,0 +1,31 @@ +{ + "id": 112570, + "slug": "princess-conquest-additional-characters-2", + "name": "Princess & Conquest - Additional Characters #2", + "release_date": "2024-03-21", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Towerfag" + ], + "publishers": [ + "Critical Bliss" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126027965" + ], + "created_at": "2026-07-10T10:10:32.907113", + "updated_at": "2026-07-10T10:10:32.907113", + "url": "/v1/games/princess-conquest-additional-characters-2" +} diff --git a/site/public/v1/games/prison-architect-gangs/index.json b/site/public/v1/games/prison-architect-gangs/index.json new file mode 100644 index 000000000000..880c6396304d --- /dev/null +++ b/site/public/v1/games/prison-architect-gangs/index.json @@ -0,0 +1,33 @@ +{ + "id": 112712, + "slug": "prison-architect-gangs", + "name": "Prison Architect - Gangs", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Double Eleven", + "Introversion Software" + ], + "publishers": [ + "Paradox Interactive" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112206078" + ], + "created_at": "2026-07-10T10:10:32.945154", + "updated_at": "2026-07-10T10:10:32.945154", + "url": "/v1/games/prison-architect-gangs" +} diff --git a/site/public/v1/games/prison-architect-second-chances/index.json b/site/public/v1/games/prison-architect-second-chances/index.json new file mode 100644 index 000000000000..533b64375920 --- /dev/null +++ b/site/public/v1/games/prison-architect-second-chances/index.json @@ -0,0 +1,39 @@ +{ + "id": 112714, + "slug": "prison-architect-second-chances", + "name": "Prison Architect: Second Chances", + "release_date": "2021-06-16", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 4", + "iOS", + "macOS", + "Microsoft Windows" + ], + "genres": [ + "strategy video game", + "construction and management simulation", + "simulation video game" + ], + "stores": [], + "developers": [ + "Double Eleven", + "Introversion Software" + ], + "publishers": [ + "Paradox Interactive" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107616040" + ], + "created_at": "2026-07-10T10:10:32.946070", + "updated_at": "2026-07-10T10:10:32.946070", + "url": "/v1/games/prison-architect-second-chances" +} diff --git a/site/public/v1/games/privateer-cd-rom-edition/index.json b/site/public/v1/games/privateer-cd-rom-edition/index.json new file mode 100644 index 000000000000..efa48af35dc3 --- /dev/null +++ b/site/public/v1/games/privateer-cd-rom-edition/index.json @@ -0,0 +1,25 @@ +{ + "id": 112799, + "slug": "privateer-cd-rom-edition", + "name": "Privateer CD-ROM Edition", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126032096" + ], + "created_at": "2026-07-10T10:10:32.967788", + "updated_at": "2026-07-10T10:10:32.967788", + "url": "/v1/games/privateer-cd-rom-edition" +} diff --git a/site/public/v1/games/pro-darts-2022-q112230960/index.json b/site/public/v1/games/pro-darts-2022-q112230960/index.json new file mode 100644 index 000000000000..6ebc2eff243a --- /dev/null +++ b/site/public/v1/games/pro-darts-2022-q112230960/index.json @@ -0,0 +1,33 @@ +{ + "id": 112855, + "slug": "pro-darts-2022-q112230960", + "name": "Pro Darts 2022+", + "release_date": "2022-05-27", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "iPadOS", + "iOS", + "macOS" + ], + "genres": [ + "darts video game" + ], + "stores": [], + "developers": [ + "iWare Designs" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112230960" + ], + "created_at": "2026-07-10T10:10:32.982760", + "updated_at": "2026-07-10T10:10:32.982760", + "url": "/v1/games/pro-darts-2022-q112230960" +} diff --git a/site/public/v1/games/pro-evolution-soccer-2014-blue-samurai-challenge-demo-version/index.json b/site/public/v1/games/pro-evolution-soccer-2014-blue-samurai-challenge-demo-version/index.json new file mode 100644 index 000000000000..02ff18e3ef17 --- /dev/null +++ b/site/public/v1/games/pro-evolution-soccer-2014-blue-samurai-challenge-demo-version/index.json @@ -0,0 +1,25 @@ +{ + "id": 112874, + "slug": "pro-evolution-soccer-2014-blue-samurai-challenge-demo-version", + "name": "Pro Evolution Soccer 2014 (Blue Samurai Challenge) Demo Version", + "release_date": "2014-04-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q87831119" + ], + "created_at": "2026-07-10T10:10:32.986783", + "updated_at": "2026-07-10T10:10:32.986783", + "url": "/v1/games/pro-evolution-soccer-2014-blue-samurai-challenge-demo-version" +} diff --git a/site/public/v1/games/pro-evolution-soccer-2016-myclub-edition/index.json b/site/public/v1/games/pro-evolution-soccer-2016-myclub-edition/index.json new file mode 100644 index 000000000000..7c27136830eb --- /dev/null +++ b/site/public/v1/games/pro-evolution-soccer-2016-myclub-edition/index.json @@ -0,0 +1,25 @@ +{ + "id": 112879, + "slug": "pro-evolution-soccer-2016-myclub-edition", + "name": "Pro Evolution Soccer 2016 (myClub edition)", + "release_date": "2015-12-08", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q87410948" + ], + "created_at": "2026-07-10T10:10:32.988765", + "updated_at": "2026-07-10T10:10:32.988765", + "url": "/v1/games/pro-evolution-soccer-2016-myclub-edition" +} diff --git a/site/public/v1/games/pro-evolution-soccer-2018-demo/index.json b/site/public/v1/games/pro-evolution-soccer-2018-demo/index.json new file mode 100644 index 000000000000..1e67ffc0f77a --- /dev/null +++ b/site/public/v1/games/pro-evolution-soccer-2018-demo/index.json @@ -0,0 +1,25 @@ +{ + "id": 112884, + "slug": "pro-evolution-soccer-2018-demo", + "name": "Pro Evolution Soccer 2018 Demo", + "release_date": "2017-08-30", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q87410735" + ], + "created_at": "2026-07-10T10:10:32.989775", + "updated_at": "2026-07-10T10:10:32.989775", + "url": "/v1/games/pro-evolution-soccer-2018-demo" +} diff --git a/site/public/v1/games/pro-snooker-pool-2022-q112231211/index.json b/site/public/v1/games/pro-snooker-pool-2022-q112231211/index.json new file mode 100644 index 000000000000..eccb07f76af3 --- /dev/null +++ b/site/public/v1/games/pro-snooker-pool-2022-q112231211/index.json @@ -0,0 +1,35 @@ +{ + "id": 112940, + "slug": "pro-snooker-pool-2022-q112231211", + "name": "Pro Snooker & Pool 2022+", + "release_date": "2022-04-15", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "tvOS", + "iOS", + "macOS" + ], + "genres": [ + "cue sports video game" + ], + "stores": [], + "developers": [ + "iWare Designs" + ], + "publishers": [ + "iWare Designs" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112231211" + ], + "created_at": "2026-07-10T10:10:33.004784", + "updated_at": "2026-07-10T10:10:33.004784", + "url": "/v1/games/pro-snooker-pool-2022-q112231211" +} diff --git a/site/public/v1/games/project-basement-dating-demo/index.json b/site/public/v1/games/project-basement-dating-demo/index.json new file mode 100644 index 000000000000..1a4aa2c2a36e --- /dev/null +++ b/site/public/v1/games/project-basement-dating-demo/index.json @@ -0,0 +1,25 @@ +{ + "id": 113160, + "slug": "project-basement-dating-demo", + "name": "Project_Basement_Dating: DEMO", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131619255" + ], + "created_at": "2026-07-10T10:10:33.064495", + "updated_at": "2026-07-10T10:10:33.064495", + "url": "/v1/games/project-basement-dating-demo" +} diff --git a/site/public/v1/games/project-black-sun/index.json b/site/public/v1/games/project-black-sun/index.json new file mode 100644 index 000000000000..ce00bb6aa7d9 --- /dev/null +++ b/site/public/v1/games/project-black-sun/index.json @@ -0,0 +1,25 @@ +{ + "id": 113164, + "slug": "project-black-sun", + "name": "Project Black Sun", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140471208" + ], + "created_at": "2026-07-10T10:10:33.065513", + "updated_at": "2026-07-10T10:10:33.065513", + "url": "/v1/games/project-black-sun" +} diff --git a/site/public/v1/games/project-copernicus/index.json b/site/public/v1/games/project-copernicus/index.json new file mode 100644 index 000000000000..e4e66b5e20e8 --- /dev/null +++ b/site/public/v1/games/project-copernicus/index.json @@ -0,0 +1,31 @@ +{ + "id": 113203, + "slug": "project-copernicus", + "name": "Project Copernicus", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "massively multiplayer online role-playing game" + ], + "stores": [], + "developers": [ + "38 Studios" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116946903" + ], + "created_at": "2026-07-10T10:10:33.076443", + "updated_at": "2026-07-10T10:10:33.076443", + "url": "/v1/games/project-copernicus" +} diff --git a/site/public/v1/games/project-gotham-racing-5/index.json b/site/public/v1/games/project-gotham-racing-5/index.json new file mode 100644 index 000000000000..f95702af81f5 --- /dev/null +++ b/site/public/v1/games/project-gotham-racing-5/index.json @@ -0,0 +1,25 @@ +{ + "id": 113292, + "slug": "project-gotham-racing-5", + "name": "Project Gotham Racing 5", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107359018" + ], + "created_at": "2026-07-10T10:10:33.101035", + "updated_at": "2026-07-10T10:10:33.101035", + "url": "/v1/games/project-gotham-racing-5" +} diff --git a/site/public/v1/games/project-highrise-las-vegas/index.json b/site/public/v1/games/project-highrise-las-vegas/index.json new file mode 100644 index 000000000000..131b16f6413a --- /dev/null +++ b/site/public/v1/games/project-highrise-las-vegas/index.json @@ -0,0 +1,25 @@ +{ + "id": 113318, + "slug": "project-highrise-las-vegas", + "name": "Project Highrise: Las Vegas", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q104156910" + ], + "created_at": "2026-07-10T10:10:33.108021", + "updated_at": "2026-07-10T10:10:33.108021", + "url": "/v1/games/project-highrise-las-vegas" +} diff --git a/site/public/v1/games/project-highrise-miami-malls/index.json b/site/public/v1/games/project-highrise-miami-malls/index.json new file mode 100644 index 000000000000..4fc22bcd3e04 --- /dev/null +++ b/site/public/v1/games/project-highrise-miami-malls/index.json @@ -0,0 +1,28 @@ +{ + "id": 113319, + "slug": "project-highrise-miami-malls", + "name": "Project Highrise: Miami Malls", + "release_date": "2017-07-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122307043" + ], + "created_at": "2026-07-10T10:10:33.109042", + "updated_at": "2026-07-10T10:10:33.109042", + "url": "/v1/games/project-highrise-miami-malls" +} diff --git a/site/public/v1/games/project-kv/index.json b/site/public/v1/games/project-kv/index.json new file mode 100644 index 000000000000..5775986050ab --- /dev/null +++ b/site/public/v1/games/project-kv/index.json @@ -0,0 +1,27 @@ +{ + "id": 113357, + "slug": "project-kv", + "name": "Project KV", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [ + "Dynamis One" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136555897" + ], + "created_at": "2026-07-10T10:10:33.119054", + "updated_at": "2026-07-10T10:10:33.119054", + "url": "/v1/games/project-kv" +} diff --git a/site/public/v1/games/project-lazarus-q127272613/index.json b/site/public/v1/games/project-lazarus-q127272613/index.json new file mode 100644 index 000000000000..8662fd93882a --- /dev/null +++ b/site/public/v1/games/project-lazarus-q127272613/index.json @@ -0,0 +1,25 @@ +{ + "id": 113363, + "slug": "project-lazarus-q127272613", + "name": "Project Lazarus", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127272613" + ], + "created_at": "2026-07-10T10:10:33.121058", + "updated_at": "2026-07-10T10:10:33.121058", + "url": "/v1/games/project-lazarus-q127272613" +} diff --git a/site/public/v1/games/project-milo/index.json b/site/public/v1/games/project-milo/index.json new file mode 100644 index 000000000000..ac900be8c5f6 --- /dev/null +++ b/site/public/v1/games/project-milo/index.json @@ -0,0 +1,27 @@ +{ + "id": 113382, + "slug": "project-milo", + "name": "Project Milo", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [ + "Lionhead Studios" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3314412" + ], + "created_at": "2026-07-10T10:10:33.125960", + "updated_at": "2026-07-10T10:10:33.125960", + "url": "/v1/games/project-milo" +} diff --git a/site/public/v1/games/project-socjus/index.json b/site/public/v1/games/project-socjus/index.json new file mode 100644 index 000000000000..0d43421d3e78 --- /dev/null +++ b/site/public/v1/games/project-socjus/index.json @@ -0,0 +1,34 @@ +{ + "id": 113517, + "slug": "project-socjus", + "name": "Project SocJus", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "platformer", + "side-scrolling video game" + ], + "stores": [], + "developers": [ + "Anomalous Games" + ], + "publishers": [ + "Anomalous Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107289449" + ], + "created_at": "2026-07-10T10:10:33.163316", + "updated_at": "2026-07-10T10:10:33.163316", + "url": "/v1/games/project-socjus" +} diff --git a/site/public/v1/games/propagation-vr-co-op/index.json b/site/public/v1/games/propagation-vr-co-op/index.json new file mode 100644 index 000000000000..0aecfd46941a --- /dev/null +++ b/site/public/v1/games/propagation-vr-co-op/index.json @@ -0,0 +1,27 @@ +{ + "id": 113720, + "slug": "propagation-vr-co-op", + "name": "Propagation VR - Co-op", + "release_date": "2021-02-05", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q114946328" + ], + "created_at": "2026-07-10T10:10:33.218319", + "updated_at": "2026-07-10T10:10:33.218319", + "url": "/v1/games/propagation-vr-co-op" +} diff --git a/site/public/v1/games/prune-q111516726/index.json b/site/public/v1/games/prune-q111516726/index.json new file mode 100644 index 000000000000..2401d915b380 --- /dev/null +++ b/site/public/v1/games/prune-q111516726/index.json @@ -0,0 +1,28 @@ +{ + "id": 113901, + "slug": "prune-q111516726", + "name": "Prune+", + "release_date": "2022-04-29", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "iPadOS", + "iOS" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111516726" + ], + "created_at": "2026-07-10T10:10:33.267957", + "updated_at": "2026-07-10T10:10:33.267957", + "url": "/v1/games/prune-q111516726" +} diff --git a/site/public/v1/games/ps3-pong/index.json b/site/public/v1/games/ps3-pong/index.json new file mode 100644 index 000000000000..1c13e70c3f87 --- /dev/null +++ b/site/public/v1/games/ps3-pong/index.json @@ -0,0 +1,33 @@ +{ + "id": 113908, + "slug": "ps3-pong", + "name": "PS3 Pong", + "release_date": "2010-09-16", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 3" + ], + "genres": [ + "table tennis video game" + ], + "stores": [], + "developers": [ + "Lachrymose" + ], + "publishers": [ + "Lachrymose" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124044206" + ], + "created_at": "2026-07-10T10:10:33.268957", + "updated_at": "2026-07-10T10:10:33.269956", + "url": "/v1/games/ps3-pong" +} diff --git a/site/public/v1/games/psdoom/index.json b/site/public/v1/games/psdoom/index.json new file mode 100644 index 000000000000..53cad896ab10 --- /dev/null +++ b/site/public/v1/games/psdoom/index.json @@ -0,0 +1,27 @@ +{ + "id": 113911, + "slug": "psdoom", + "name": "psDooM", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [ + "Dennis L Chao" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124452754" + ], + "created_at": "2026-07-10T10:10:33.269956", + "updated_at": "2026-07-10T10:10:33.269956", + "url": "/v1/games/psdoom" +} diff --git a/site/public/v1/games/psx-doom/index.json b/site/public/v1/games/psx-doom/index.json new file mode 100644 index 000000000000..3e26af1a32ea --- /dev/null +++ b/site/public/v1/games/psx-doom/index.json @@ -0,0 +1,25 @@ +{ + "id": 113944, + "slug": "psx-doom", + "name": "PSX Doom", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120689588" + ], + "created_at": "2026-07-10T10:10:33.278954", + "updated_at": "2026-07-10T10:10:33.278954", + "url": "/v1/games/psx-doom" +} diff --git a/site/public/v1/games/psychic-hearts/index.json b/site/public/v1/games/psychic-hearts/index.json new file mode 100644 index 000000000000..19e2cfe14897 --- /dev/null +++ b/site/public/v1/games/psychic-hearts/index.json @@ -0,0 +1,25 @@ +{ + "id": 113976, + "slug": "psychic-hearts", + "name": "Psychic Hearts", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11304020" + ], + "created_at": "2026-07-10T10:10:33.286953", + "updated_at": "2026-07-10T10:10:33.286953", + "url": "/v1/games/psychic-hearts" +} diff --git a/site/public/v1/games/psydoom/index.json b/site/public/v1/games/psydoom/index.json new file mode 100644 index 000000000000..d14efcf3a5d7 --- /dev/null +++ b/site/public/v1/games/psydoom/index.json @@ -0,0 +1,27 @@ +{ + "id": 114047, + "slug": "psydoom", + "name": "PsyDoom", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "personal computer" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120686618" + ], + "created_at": "2026-07-10T10:10:33.316006", + "updated_at": "2026-07-10T10:10:33.316006", + "url": "/v1/games/psydoom" +} diff --git a/site/public/v1/games/purple-ops-pack/index.json b/site/public/v1/games/purple-ops-pack/index.json new file mode 100644 index 000000000000..d1eb25f344b7 --- /dev/null +++ b/site/public/v1/games/purple-ops-pack/index.json @@ -0,0 +1,27 @@ +{ + "id": 114409, + "slug": "purple-ops-pack", + "name": "Purple Ops Pack", + "release_date": "2012-06-20", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 3" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60722400" + ], + "created_at": "2026-07-10T10:10:33.413143", + "updated_at": "2026-07-10T10:10:33.413143", + "url": "/v1/games/purple-ops-pack" +} diff --git a/site/public/v1/games/puss-in-book-trapped-in-an-epic-tale/index.json b/site/public/v1/games/puss-in-book-trapped-in-an-epic-tale/index.json new file mode 100644 index 000000000000..f78e53d54f74 --- /dev/null +++ b/site/public/v1/games/puss-in-book-trapped-in-an-epic-tale/index.json @@ -0,0 +1,27 @@ +{ + "id": 114510, + "slug": "puss-in-book-trapped-in-an-epic-tale", + "name": "Puss in Book: Trapped in an Epic Tale", + "release_date": "2017-06-20", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "full motion video" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q52508891" + ], + "created_at": "2026-07-10T10:10:33.441678", + "updated_at": "2026-07-10T10:10:33.441678", + "url": "/v1/games/puss-in-book-trapped-in-an-epic-tale" +} diff --git a/site/public/v1/games/pyrene-demo/index.json b/site/public/v1/games/pyrene-demo/index.json new file mode 100644 index 000000000000..d55fc07bb116 --- /dev/null +++ b/site/public/v1/games/pyrene-demo/index.json @@ -0,0 +1,36 @@ +{ + "id": 114953, + "slug": "pyrene-demo", + "name": "Pyrene Demo", + "release_date": "2024-01-29", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "strategy video game", + "dungeon crawl", + "roguelike deck-building game" + ], + "stores": [], + "developers": [ + "Two Tiny Dice" + ], + "publishers": [ + "Indie Asylum" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125471595" + ], + "created_at": "2026-07-10T10:10:33.569077", + "updated_at": "2026-07-10T10:10:33.569077", + "url": "/v1/games/pyrene-demo" +} diff --git a/site/public/v1/games/q-zandronum/index.json b/site/public/v1/games/q-zandronum/index.json new file mode 100644 index 000000000000..a3be79125219 --- /dev/null +++ b/site/public/v1/games/q-zandronum/index.json @@ -0,0 +1,25 @@ +{ + "id": 115010, + "slug": "q-zandronum", + "name": "Q-Zandronum", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124452038" + ], + "created_at": "2026-07-10T10:10:33.585048", + "updated_at": "2026-07-10T10:10:33.585048", + "url": "/v1/games/q-zandronum" +} diff --git a/site/public/v1/games/q2pro/index.json b/site/public/v1/games/q2pro/index.json new file mode 100644 index 000000000000..279640b6d3bf --- /dev/null +++ b/site/public/v1/games/q2pro/index.json @@ -0,0 +1,25 @@ +{ + "id": 115014, + "slug": "q2pro", + "name": "Q2Pro", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122193603" + ], + "created_at": "2026-07-10T10:10:33.586060", + "updated_at": "2026-07-10T10:10:33.586060", + "url": "/v1/games/q2pro" +} diff --git a/site/public/v1/games/qq-pet-fight/index.json b/site/public/v1/games/qq-pet-fight/index.json new file mode 100644 index 000000000000..860cf4e2e888 --- /dev/null +++ b/site/public/v1/games/qq-pet-fight/index.json @@ -0,0 +1,27 @@ +{ + "id": 115071, + "slug": "qq-pet-fight", + "name": "QQ Pet Fight", + "release_date": "2010-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Tencent" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q48905139" + ], + "created_at": "2026-07-10T10:10:33.601116", + "updated_at": "2026-07-10T10:10:33.601116", + "url": "/v1/games/qq-pet-fight" +} diff --git a/site/public/v1/games/quake-4-special-dvd-edition/index.json b/site/public/v1/games/quake-4-special-dvd-edition/index.json new file mode 100644 index 000000000000..b6c432e8c628 --- /dev/null +++ b/site/public/v1/games/quake-4-special-dvd-edition/index.json @@ -0,0 +1,31 @@ +{ + "id": 115147, + "slug": "quake-4-special-dvd-edition", + "name": "Quake 4: Special DVD Edition", + "release_date": "2005-09-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter" + ], + "stores": [], + "developers": [], + "publishers": [ + "Activision" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q101086895" + ], + "created_at": "2026-07-10T10:10:33.622100", + "updated_at": "2026-07-10T10:10:33.622100", + "url": "/v1/games/quake-4-special-dvd-edition" +} diff --git a/site/public/v1/games/quake-ii-ground-zero/index.json b/site/public/v1/games/quake-ii-ground-zero/index.json new file mode 100644 index 000000000000..37c581a7e5cd --- /dev/null +++ b/site/public/v1/games/quake-ii-ground-zero/index.json @@ -0,0 +1,33 @@ +{ + "id": 115151, + "slug": "quake-ii-ground-zero", + "name": "Quake II: Ground Zero", + "release_date": "1998-08-31", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter" + ], + "stores": [], + "developers": [ + "Rogue Entertainment" + ], + "publishers": [ + "Activision" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2429827" + ], + "created_at": "2026-07-10T10:10:33.623054", + "updated_at": "2026-07-10T10:10:33.623054", + "url": "/v1/games/quake-ii-ground-zero" +} diff --git a/site/public/v1/games/quake-ii-rtx/index.json b/site/public/v1/games/quake-ii-rtx/index.json new file mode 100644 index 000000000000..e64abb1a5781 --- /dev/null +++ b/site/public/v1/games/quake-ii-rtx/index.json @@ -0,0 +1,33 @@ +{ + "id": 115152, + "slug": "quake-ii-rtx", + "name": "Quake II RTX", + "release_date": "2019-06-06", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter" + ], + "stores": [], + "developers": [ + "NVIDIA Lightspeed Studios" + ], + "publishers": [ + "Nvidia" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108025640" + ], + "created_at": "2026-07-10T10:10:33.623054", + "updated_at": "2026-07-10T10:10:33.623054", + "url": "/v1/games/quake-ii-rtx" +} diff --git a/site/public/v1/games/quake-ii-the-reckoning/index.json b/site/public/v1/games/quake-ii-the-reckoning/index.json new file mode 100644 index 000000000000..fdf7c758f647 --- /dev/null +++ b/site/public/v1/games/quake-ii-the-reckoning/index.json @@ -0,0 +1,31 @@ +{ + "id": 115153, + "slug": "quake-ii-the-reckoning", + "name": "Quake II: The Reckoning", + "release_date": "1998-05-30", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter" + ], + "stores": [], + "developers": [], + "publishers": [ + "Activision" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4047753" + ], + "created_at": "2026-07-10T10:10:33.623054", + "updated_at": "2026-07-10T10:10:33.623054", + "url": "/v1/games/quake-ii-the-reckoning" +} diff --git a/site/public/v1/games/quake-mission-pack-1-scourge-of-armagon/index.json b/site/public/v1/games/quake-mission-pack-1-scourge-of-armagon/index.json new file mode 100644 index 000000000000..68ea351d79bd --- /dev/null +++ b/site/public/v1/games/quake-mission-pack-1-scourge-of-armagon/index.json @@ -0,0 +1,31 @@ +{ + "id": 115160, + "slug": "quake-mission-pack-1-scourge-of-armagon", + "name": "Quake Mission Pack 1: Scourge of Armagon", + "release_date": "1997-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter" + ], + "stores": [], + "developers": [], + "publishers": [ + "Activision" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4047751" + ], + "created_at": "2026-07-10T10:10:33.625074", + "updated_at": "2026-07-10T10:10:33.625074", + "url": "/v1/games/quake-mission-pack-1-scourge-of-armagon" +} diff --git a/site/public/v1/games/quake-mission-pack-2-dissolution-of-eternity/index.json b/site/public/v1/games/quake-mission-pack-2-dissolution-of-eternity/index.json new file mode 100644 index 000000000000..a69cd80632f1 --- /dev/null +++ b/site/public/v1/games/quake-mission-pack-2-dissolution-of-eternity/index.json @@ -0,0 +1,33 @@ +{ + "id": 115161, + "slug": "quake-mission-pack-2-dissolution-of-eternity", + "name": "Quake Mission Pack 2: Dissolution of Eternity", + "release_date": "1997-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter" + ], + "stores": [], + "developers": [ + "Rogue Entertainment" + ], + "publishers": [ + "Activision" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4047747" + ], + "created_at": "2026-07-10T10:10:33.625074", + "updated_at": "2026-07-10T10:10:33.625074", + "url": "/v1/games/quake-mission-pack-2-dissolution-of-eternity" +} diff --git a/site/public/v1/games/quake-the-fight-for-justice/index.json b/site/public/v1/games/quake-the-fight-for-justice/index.json new file mode 100644 index 000000000000..d6ecfb0358ca --- /dev/null +++ b/site/public/v1/games/quake-the-fight-for-justice/index.json @@ -0,0 +1,29 @@ +{ + "id": 115165, + "slug": "quake-the-fight-for-justice", + "name": "Quake: The Fight for Justice", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "role-playing video game" + ], + "stores": [], + "developers": [ + "id Software" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115755080" + ], + "created_at": "2026-07-10T10:10:33.626080", + "updated_at": "2026-07-10T10:10:33.626080", + "url": "/v1/games/quake-the-fight-for-justice" +} diff --git a/site/public/v1/games/quakecon-2020-bundle/index.json b/site/public/v1/games/quakecon-2020-bundle/index.json new file mode 100644 index 000000000000..d8208297196e --- /dev/null +++ b/site/public/v1/games/quakecon-2020-bundle/index.json @@ -0,0 +1,27 @@ +{ + "id": 115167, + "slug": "quakecon-2020-bundle", + "name": "Quakecon 2020 Bundle", + "release_date": "2020-08-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q104774702" + ], + "created_at": "2026-07-10T10:10:33.627060", + "updated_at": "2026-07-10T10:10:33.627060", + "url": "/v1/games/quakecon-2020-bundle" +} diff --git a/site/public/v1/games/quakespasm/index.json b/site/public/v1/games/quakespasm/index.json new file mode 100644 index 000000000000..0f394f755cef --- /dev/null +++ b/site/public/v1/games/quakespasm/index.json @@ -0,0 +1,25 @@ +{ + "id": 115169, + "slug": "quakespasm", + "name": "QuakeSpasm", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120671224" + ], + "created_at": "2026-07-10T10:10:33.627060", + "updated_at": "2026-07-10T10:10:33.627060", + "url": "/v1/games/quakespasm" +} diff --git a/site/public/v1/games/qubyte-classics-thunderbolt-collection-by-piko/index.json b/site/public/v1/games/qubyte-classics-thunderbolt-collection-by-piko/index.json new file mode 100644 index 000000000000..b671061b02c9 --- /dev/null +++ b/site/public/v1/games/qubyte-classics-thunderbolt-collection-by-piko/index.json @@ -0,0 +1,32 @@ +{ + "id": 115337, + "slug": "qubyte-classics-thunderbolt-collection-by-piko", + "name": "QUByte Classics: Thunderbolt Collection by PIKO", + "release_date": "2022-08-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 4" + ], + "genres": [], + "stores": [], + "developers": [ + "Piko Interactive" + ], + "publishers": [ + "QUByte Interactive" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115471722" + ], + "created_at": "2026-07-10T10:10:33.695094", + "updated_at": "2026-07-10T10:10:33.695094", + "url": "/v1/games/qubyte-classics-thunderbolt-collection-by-piko" +} diff --git a/site/public/v1/games/qubyte-classics-zero-tolerance-collection-by-piko/index.json b/site/public/v1/games/qubyte-classics-zero-tolerance-collection-by-piko/index.json new file mode 100644 index 000000000000..cc55c6b7295d --- /dev/null +++ b/site/public/v1/games/qubyte-classics-zero-tolerance-collection-by-piko/index.json @@ -0,0 +1,31 @@ +{ + "id": 115339, + "slug": "qubyte-classics-zero-tolerance-collection-by-piko", + "name": "QUByte Classics: Zero Tolerance Collection by PIKO", + "release_date": "2022-07-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S" + ], + "genres": [], + "stores": [], + "developers": [ + "Piko Interactive" + ], + "publishers": [ + "QUByte Interactive" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113967929" + ], + "created_at": "2026-07-10T10:10:33.696002", + "updated_at": "2026-07-10T10:10:33.696002", + "url": "/v1/games/qubyte-classics-zero-tolerance-collection-by-piko" +} diff --git a/site/public/v1/games/queen-s-blood/index.json b/site/public/v1/games/queen-s-blood/index.json new file mode 100644 index 000000000000..4849cbaa4b81 --- /dev/null +++ b/site/public/v1/games/queen-s-blood/index.json @@ -0,0 +1,25 @@ +{ + "id": 115369, + "slug": "queen-s-blood", + "name": "Queen's Blood", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136653358" + ], + "created_at": "2026-07-10T10:10:33.703995", + "updated_at": "2026-07-10T10:10:33.703995", + "url": "/v1/games/queen-s-blood" +} diff --git a/site/public/v1/games/queer-games-bundle-2/index.json b/site/public/v1/games/queer-games-bundle-2/index.json new file mode 100644 index 000000000000..0342dcf8446f --- /dev/null +++ b/site/public/v1/games/queer-games-bundle-2/index.json @@ -0,0 +1,25 @@ +{ + "id": 115404, + "slug": "queer-games-bundle-2", + "name": "Queer Games Bundle 2", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q90438175" + ], + "created_at": "2026-07-10T10:10:33.713001", + "updated_at": "2026-07-10T10:10:33.713001", + "url": "/v1/games/queer-games-bundle-2" +} diff --git a/site/public/v1/games/queer-games-bundle/index.json b/site/public/v1/games/queer-games-bundle/index.json new file mode 100644 index 000000000000..2f9d281ac1ec --- /dev/null +++ b/site/public/v1/games/queer-games-bundle/index.json @@ -0,0 +1,27 @@ +{ + "id": 115405, + "slug": "queer-games-bundle", + "name": "Queer Games Bundle", + "release_date": "2018-08-09", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q90437164" + ], + "created_at": "2026-07-10T10:10:33.713001", + "updated_at": "2026-07-10T10:10:33.713001", + "url": "/v1/games/queer-games-bundle" +} diff --git a/site/public/v1/games/quest-for-glory-1-5/index.json b/site/public/v1/games/quest-for-glory-1-5/index.json new file mode 100644 index 000000000000..f8da65bdee5a --- /dev/null +++ b/site/public/v1/games/quest-for-glory-1-5/index.json @@ -0,0 +1,31 @@ +{ + "id": 115445, + "slug": "quest-for-glory-1-5", + "name": "Quest for Glory 1-5", + "release_date": "1989-10-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Sierra Entertainment" + ], + "publishers": [ + "Activision" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q114692072" + ], + "created_at": "2026-07-10T10:10:33.724002", + "updated_at": "2026-07-10T10:10:33.724002", + "url": "/v1/games/quest-for-glory-1-5" +} diff --git a/site/public/v1/games/quickdraw-q16267682/index.json b/site/public/v1/games/quickdraw-q16267682/index.json new file mode 100644 index 000000000000..9dfa571103c4 --- /dev/null +++ b/site/public/v1/games/quickdraw-q16267682/index.json @@ -0,0 +1,27 @@ +{ + "id": 115555, + "slug": "quickdraw-q16267682", + "name": "QuickDraw", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 4" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16267682" + ], + "created_at": "2026-07-10T10:10:33.778532", + "updated_at": "2026-07-10T10:10:33.778532", + "url": "/v1/games/quickdraw-q16267682" +} diff --git a/site/public/v1/games/quiet-christmas-demo/index.json b/site/public/v1/games/quiet-christmas-demo/index.json new file mode 100644 index 000000000000..ca9283ba1fa0 --- /dev/null +++ b/site/public/v1/games/quiet-christmas-demo/index.json @@ -0,0 +1,29 @@ +{ + "id": 115571, + "slug": "quiet-christmas-demo", + "name": "Quiet Christmas (Demo)", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [ + "Nostatic Software" + ], + "publishers": [ + "Nostatic Software" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125877616" + ], + "created_at": "2026-07-10T10:10:33.784528", + "updated_at": "2026-07-10T10:10:33.784528", + "url": "/v1/games/quiet-christmas-demo" +} diff --git a/site/public/v1/games/quiet-please-demo/index.json b/site/public/v1/games/quiet-please-demo/index.json new file mode 100644 index 000000000000..88852bafbea6 --- /dev/null +++ b/site/public/v1/games/quiet-please-demo/index.json @@ -0,0 +1,29 @@ +{ + "id": 115581, + "slug": "quiet-please-demo", + "name": "Quiet, Please! (Demo)", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [ + "Nostatic Software" + ], + "publishers": [ + "Nostatic Software" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125877541" + ], + "created_at": "2026-07-10T10:10:33.786526", + "updated_at": "2026-07-10T10:10:33.786526", + "url": "/v1/games/quiet-please-demo" +} diff --git a/site/public/v1/games/quiz-channel-question/index.json b/site/public/v1/games/quiz-channel-question/index.json new file mode 100644 index 000000000000..4825358e1cfd --- /dev/null +++ b/site/public/v1/games/quiz-channel-question/index.json @@ -0,0 +1,27 @@ +{ + "id": 115636, + "slug": "quiz-channel-question", + "name": "Quiz Channel Question", + "release_date": "1993-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "quiz show" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111244779" + ], + "created_at": "2026-07-10T10:10:33.798531", + "updated_at": "2026-07-10T10:10:33.798531", + "url": "/v1/games/quiz-channel-question" +} diff --git a/site/public/v1/games/r-type-dx/index.json b/site/public/v1/games/r-type-dx/index.json new file mode 100644 index 000000000000..d2f6f0c1a9a8 --- /dev/null +++ b/site/public/v1/games/r-type-dx/index.json @@ -0,0 +1,27 @@ +{ + "id": 115778, + "slug": "r-type-dx", + "name": "R-Type DX", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Game Boy Color" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110662911" + ], + "created_at": "2026-07-10T10:10:33.847623", + "updated_at": "2026-07-10T10:10:33.847623", + "url": "/v1/games/r-type-dx" +} diff --git a/site/public/v1/games/raccoin-coin-pusher-roguelike/index.json b/site/public/v1/games/raccoin-coin-pusher-roguelike/index.json new file mode 100644 index 000000000000..1cc6dff7c840 --- /dev/null +++ b/site/public/v1/games/raccoin-coin-pusher-roguelike/index.json @@ -0,0 +1,31 @@ +{ + "id": 115859, + "slug": "raccoin-coin-pusher-roguelike", + "name": "RACCOIN: Coin Pusher Roguelike", + "release_date": "2026-03-31", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "roguelike deck-building game" + ], + "stores": [], + "developers": [], + "publishers": [ + "Playstack" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140477817" + ], + "created_at": "2026-07-10T10:10:33.869063", + "updated_at": "2026-07-10T10:10:33.869063", + "url": "/v1/games/raccoin-coin-pusher-roguelike" +} diff --git a/site/public/v1/games/racing-madness/index.json b/site/public/v1/games/racing-madness/index.json new file mode 100644 index 000000000000..4561726aebc5 --- /dev/null +++ b/site/public/v1/games/racing-madness/index.json @@ -0,0 +1,25 @@ +{ + "id": 115967, + "slug": "racing-madness", + "name": "Racing Madness", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q102250817" + ], + "created_at": "2026-07-10T10:10:33.903612", + "updated_at": "2026-07-10T10:10:33.903612", + "url": "/v1/games/racing-madness" +} diff --git a/site/public/v1/games/rag-doll-kung-fu-demo/index.json b/site/public/v1/games/rag-doll-kung-fu-demo/index.json new file mode 100644 index 000000000000..51895514de06 --- /dev/null +++ b/site/public/v1/games/rag-doll-kung-fu-demo/index.json @@ -0,0 +1,33 @@ +{ + "id": 116138, + "slug": "rag-doll-kung-fu-demo", + "name": "Rag Doll Kung Fu Demo", + "release_date": "2005-10-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "fighting game" + ], + "stores": [], + "developers": [ + "Mark Healey" + ], + "publishers": [ + "Mark Healey" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122704142" + ], + "created_at": "2026-07-10T10:10:33.948780", + "updated_at": "2026-07-10T10:10:33.948780", + "url": "/v1/games/rag-doll-kung-fu-demo" +} diff --git a/site/public/v1/games/raiden-ii-q24159643/index.json b/site/public/v1/games/raiden-ii-q24159643/index.json new file mode 100644 index 000000000000..d4b3d7910602 --- /dev/null +++ b/site/public/v1/games/raiden-ii-q24159643/index.json @@ -0,0 +1,25 @@ +{ + "id": 116302, + "slug": "raiden-ii-q24159643", + "name": "Raiden II", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q24159643" + ], + "created_at": "2026-07-10T10:10:34.007147", + "updated_at": "2026-07-10T10:10:34.007147", + "url": "/v1/games/raiden-ii-q24159643" +} diff --git a/site/public/v1/games/raiden-iii-x-mikado-maniax-q121125866/index.json b/site/public/v1/games/raiden-iii-x-mikado-maniax-q121125866/index.json new file mode 100644 index 000000000000..813fd9600ca9 --- /dev/null +++ b/site/public/v1/games/raiden-iii-x-mikado-maniax-q121125866/index.json @@ -0,0 +1,33 @@ +{ + "id": 116304, + "slug": "raiden-iii-x-mikado-maniax-q121125866", + "name": "Raiden III x Mikado Maniax", + "release_date": "2023-02-23", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 4", + "PlayStation 5" + ], + "genres": [], + "stores": [], + "developers": [ + "MOSS" + ], + "publishers": [ + "NIS America" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121125866" + ], + "created_at": "2026-07-10T10:10:34.007147", + "updated_at": "2026-07-10T10:10:34.007147", + "url": "/v1/games/raiden-iii-x-mikado-maniax-q121125866" +} diff --git a/site/public/v1/games/raiders-of-the-lost-ark-q135273090/index.json b/site/public/v1/games/raiders-of-the-lost-ark-q135273090/index.json new file mode 100644 index 000000000000..7e466922693e --- /dev/null +++ b/site/public/v1/games/raiders-of-the-lost-ark-q135273090/index.json @@ -0,0 +1,29 @@ +{ + "id": 116322, + "slug": "raiders-of-the-lost-ark-q135273090", + "name": "Raiders of the Lost Ark", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "point-and-click adventure" + ], + "stores": [], + "developers": [ + "Lucasfan Games" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135273090" + ], + "created_at": "2026-07-10T10:10:34.012227", + "updated_at": "2026-07-10T10:10:34.012227", + "url": "/v1/games/raiders-of-the-lost-ark-q135273090" +} diff --git a/site/public/v1/games/railroad-tycoon-ii-gold-edition-q123244367/index.json b/site/public/v1/games/railroad-tycoon-ii-gold-edition-q123244367/index.json new file mode 100644 index 000000000000..d0a04cafb8ab --- /dev/null +++ b/site/public/v1/games/railroad-tycoon-ii-gold-edition-q123244367/index.json @@ -0,0 +1,25 @@ +{ + "id": 116385, + "slug": "railroad-tycoon-ii-gold-edition-q123244367", + "name": "Railroad Tycoon II: Gold Edition", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123244367" + ], + "created_at": "2026-07-10T10:10:34.028242", + "updated_at": "2026-07-10T10:10:34.028242", + "url": "/v1/games/railroad-tycoon-ii-gold-edition-q123244367" +} diff --git a/site/public/v1/games/railroad-tycoon-ii-gold-edition/index.json b/site/public/v1/games/railroad-tycoon-ii-gold-edition/index.json new file mode 100644 index 000000000000..0c6ca983f28b --- /dev/null +++ b/site/public/v1/games/railroad-tycoon-ii-gold-edition/index.json @@ -0,0 +1,27 @@ +{ + "id": 116386, + "slug": "railroad-tycoon-ii-gold-edition", + "name": "Railroad Tycoon II: Gold Edition", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Classic Mac OS" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123244363" + ], + "created_at": "2026-07-10T10:10:34.028242", + "updated_at": "2026-07-10T10:10:34.028242", + "url": "/v1/games/railroad-tycoon-ii-gold-edition" +} diff --git a/site/public/v1/games/railroad-tycoon-ii-platinum/index.json b/site/public/v1/games/railroad-tycoon-ii-platinum/index.json new file mode 100644 index 000000000000..18a5b4ec1c44 --- /dev/null +++ b/site/public/v1/games/railroad-tycoon-ii-platinum/index.json @@ -0,0 +1,25 @@ +{ + "id": 116387, + "slug": "railroad-tycoon-ii-platinum", + "name": "Railroad Tycoon II Platinum", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123244353" + ], + "created_at": "2026-07-10T10:10:34.029274", + "updated_at": "2026-07-10T10:10:34.029274", + "url": "/v1/games/railroad-tycoon-ii-platinum" +} diff --git a/site/public/v1/games/railroad-tycoon-ii-the-second-century/index.json b/site/public/v1/games/railroad-tycoon-ii-the-second-century/index.json new file mode 100644 index 000000000000..05de399b23a0 --- /dev/null +++ b/site/public/v1/games/railroad-tycoon-ii-the-second-century/index.json @@ -0,0 +1,25 @@ +{ + "id": 116388, + "slug": "railroad-tycoon-ii-the-second-century", + "name": "Railroad Tycoon II: The Second Century", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110156710" + ], + "created_at": "2026-07-10T10:10:34.029274", + "updated_at": "2026-07-10T10:10:34.029274", + "url": "/v1/games/railroad-tycoon-ii-the-second-century" +} diff --git a/site/public/v1/games/railway-empire-2-high-voltage/index.json b/site/public/v1/games/railway-empire-2-high-voltage/index.json new file mode 100644 index 000000000000..f034feeee07a --- /dev/null +++ b/site/public/v1/games/railway-empire-2-high-voltage/index.json @@ -0,0 +1,25 @@ +{ + "id": 116404, + "slug": "railway-empire-2-high-voltage", + "name": "Railway Empire 2: High Voltage", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140472069" + ], + "created_at": "2026-07-10T10:10:34.033230", + "updated_at": "2026-07-10T10:10:34.033230", + "url": "/v1/games/railway-empire-2-high-voltage" +} diff --git a/site/public/v1/games/rain-world-downpour/index.json b/site/public/v1/games/rain-world-downpour/index.json new file mode 100644 index 000000000000..c83e35a7fd51 --- /dev/null +++ b/site/public/v1/games/rain-world-downpour/index.json @@ -0,0 +1,27 @@ +{ + "id": 116440, + "slug": "rain-world-downpour", + "name": "Rain World: Downpour", + "release_date": "2023-01-19", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116590276" + ], + "created_at": "2026-07-10T10:10:34.043277", + "updated_at": "2026-07-10T10:10:34.043277", + "url": "/v1/games/rain-world-downpour" +} diff --git a/site/public/v1/games/ramming-santa/index.json b/site/public/v1/games/ramming-santa/index.json new file mode 100644 index 000000000000..e8c3674edf6a --- /dev/null +++ b/site/public/v1/games/ramming-santa/index.json @@ -0,0 +1,33 @@ +{ + "id": 116626, + "slug": "ramming-santa", + "name": "'ramming Santa", + "release_date": "2008-01-06", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Nintendo DS" + ], + "genres": [ + "Christmas video game" + ], + "stores": [], + "developers": [ + "Jimmy L" + ], + "publishers": [ + "Jimmy L" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123289626" + ], + "created_at": "2026-07-10T10:10:34.092431", + "updated_at": "2026-07-10T10:10:34.092431", + "url": "/v1/games/ramming-santa" +} diff --git a/site/public/v1/games/rampage-q56275027/index.json b/site/public/v1/games/rampage-q56275027/index.json new file mode 100644 index 000000000000..f90785a40c3b --- /dev/null +++ b/site/public/v1/games/rampage-q56275027/index.json @@ -0,0 +1,25 @@ +{ + "id": 116637, + "slug": "rampage-q56275027", + "name": "Rampage", + "release_date": "2018-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q56275027" + ], + "created_at": "2026-07-10T10:10:34.095424", + "updated_at": "2026-07-10T10:10:34.095424", + "url": "/v1/games/rampage-q56275027" +} diff --git a/site/public/v1/games/ratchet-clank-clone-home/index.json b/site/public/v1/games/ratchet-clank-clone-home/index.json new file mode 100644 index 000000000000..eebd2179b973 --- /dev/null +++ b/site/public/v1/games/ratchet-clank-clone-home/index.json @@ -0,0 +1,25 @@ +{ + "id": 116885, + "slug": "ratchet-clank-clone-home", + "name": "Ratchet & Clank: Clone Home", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3284934" + ], + "created_at": "2026-07-10T10:10:34.161449", + "updated_at": "2026-07-10T10:10:34.161449", + "url": "/v1/games/ratchet-clank-clone-home" +} diff --git a/site/public/v1/games/ratchet-clank-collection/index.json b/site/public/v1/games/ratchet-clank-collection/index.json new file mode 100644 index 000000000000..69d50e4314f6 --- /dev/null +++ b/site/public/v1/games/ratchet-clank-collection/index.json @@ -0,0 +1,36 @@ +{ + "id": 116886, + "slug": "ratchet-clank-collection", + "name": "Ratchet & Clank Collection", + "release_date": "2012-06-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation Vita", + "PlayStation 3" + ], + "genres": [ + "platformer" + ], + "stores": [], + "developers": [ + "Deck Nine", + "Mass Media Inc.", + "Insomniac Games" + ], + "publishers": [ + "Sony Interactive Entertainment" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2075684" + ], + "created_at": "2026-07-10T10:10:34.161449", + "updated_at": "2026-07-10T10:10:34.161449", + "url": "/v1/games/ratchet-clank-collection" +} diff --git a/site/public/v1/games/ratchet-clank-future-a-crack-in-time-ratchet-demo/index.json b/site/public/v1/games/ratchet-clank-future-a-crack-in-time-ratchet-demo/index.json new file mode 100644 index 000000000000..aab90cdd116d --- /dev/null +++ b/site/public/v1/games/ratchet-clank-future-a-crack-in-time-ratchet-demo/index.json @@ -0,0 +1,33 @@ +{ + "id": 116888, + "slug": "ratchet-clank-future-a-crack-in-time-ratchet-demo", + "name": "Ratchet & Clank Future: A Crack in Time Ratchet (DEMO)", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 3" + ], + "genres": [ + "platformer" + ], + "stores": [], + "developers": [ + "Insomniac Games" + ], + "publishers": [ + "Sony Interactive Entertainment" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122905669" + ], + "created_at": "2026-07-10T10:10:34.161449", + "updated_at": "2026-07-10T10:10:34.161449", + "url": "/v1/games/ratchet-clank-future-a-crack-in-time-ratchet-demo" +} diff --git a/site/public/v1/games/rayman-adventures-q64170859/index.json b/site/public/v1/games/rayman-adventures-q64170859/index.json new file mode 100644 index 000000000000..7dc84f359573 --- /dev/null +++ b/site/public/v1/games/rayman-adventures-q64170859/index.json @@ -0,0 +1,25 @@ +{ + "id": 117048, + "slug": "rayman-adventures-q64170859", + "name": "Rayman Adventures", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q64170859" + ], + "created_at": "2026-07-10T10:10:34.242193", + "updated_at": "2026-07-10T10:10:34.242193", + "url": "/v1/games/rayman-adventures-q64170859" +} diff --git a/site/public/v1/games/rayman-ducation/index.json b/site/public/v1/games/rayman-ducation/index.json new file mode 100644 index 000000000000..18d26804857b --- /dev/null +++ b/site/public/v1/games/rayman-ducation/index.json @@ -0,0 +1,27 @@ +{ + "id": 117053, + "slug": "rayman-ducation", + "name": "Rayman Éducation", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Nintendo DS" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q64170750" + ], + "created_at": "2026-07-10T10:10:34.243716", + "updated_at": "2026-07-10T10:10:34.243716", + "url": "/v1/games/rayman-ducation" +} diff --git a/site/public/v1/games/rayman-gold/index.json b/site/public/v1/games/rayman-gold/index.json new file mode 100644 index 000000000000..d6ddf65e7441 --- /dev/null +++ b/site/public/v1/games/rayman-gold/index.json @@ -0,0 +1,25 @@ +{ + "id": 117056, + "slug": "rayman-gold", + "name": "Rayman Gold", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122923412" + ], + "created_at": "2026-07-10T10:10:34.244717", + "updated_at": "2026-07-10T10:10:34.244717", + "url": "/v1/games/rayman-gold" +} diff --git a/site/public/v1/games/raze/index.json b/site/public/v1/games/raze/index.json new file mode 100644 index 000000000000..ebca69bf7ef7 --- /dev/null +++ b/site/public/v1/games/raze/index.json @@ -0,0 +1,25 @@ +{ + "id": 117088, + "slug": "raze", + "name": "Raze", + "release_date": "2019-11-21", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120685811" + ], + "created_at": "2026-07-10T10:10:34.252774", + "updated_at": "2026-07-10T10:10:34.252774", + "url": "/v1/games/raze" +} diff --git a/site/public/v1/games/razexr/index.json b/site/public/v1/games/razexr/index.json new file mode 100644 index 000000000000..c16f1174cdce --- /dev/null +++ b/site/public/v1/games/razexr/index.json @@ -0,0 +1,25 @@ +{ + "id": 117095, + "slug": "razexr", + "name": "RazeXR", + "release_date": "2023-09-30", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135773241" + ], + "created_at": "2026-07-10T10:10:34.254779", + "updated_at": "2026-07-10T10:10:34.254779", + "url": "/v1/games/razexr" +} diff --git a/site/public/v1/games/re-loaded-carmine/index.json b/site/public/v1/games/re-loaded-carmine/index.json new file mode 100644 index 000000000000..38eece88d730 --- /dev/null +++ b/site/public/v1/games/re-loaded-carmine/index.json @@ -0,0 +1,27 @@ +{ + "id": 117170, + "slug": "re-loaded-carmine", + "name": "RE:LOADED CARMINE", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "eroge" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139556411" + ], + "created_at": "2026-07-10T10:10:34.274535", + "updated_at": "2026-07-10T10:10:34.274535", + "url": "/v1/games/re-loaded-carmine" +} diff --git a/site/public/v1/games/real-sound-2-kiri-no-orgel/index.json b/site/public/v1/games/real-sound-2-kiri-no-orgel/index.json new file mode 100644 index 000000000000..a3bdab9ce79d --- /dev/null +++ b/site/public/v1/games/real-sound-2-kiri-no-orgel/index.json @@ -0,0 +1,29 @@ +{ + "id": 117367, + "slug": "real-sound-2-kiri-no-orgel", + "name": "Real Sound 2: Kiri no Orgel", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [ + "WARP" + ], + "publishers": [ + "WARP" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113500815" + ], + "created_at": "2026-07-10T10:10:34.361218", + "updated_at": "2026-07-10T10:10:34.361218", + "url": "/v1/games/real-sound-2-kiri-no-orgel" +} diff --git a/site/public/v1/games/real-war-rogue-states/index.json b/site/public/v1/games/real-war-rogue-states/index.json new file mode 100644 index 000000000000..4c1550e4f8ed --- /dev/null +++ b/site/public/v1/games/real-war-rogue-states/index.json @@ -0,0 +1,27 @@ +{ + "id": 117378, + "slug": "real-war-rogue-states", + "name": "Real War: Rogue States", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "real-time strategy" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125768562" + ], + "created_at": "2026-07-10T10:10:34.364197", + "updated_at": "2026-07-10T10:10:34.364197", + "url": "/v1/games/real-war-rogue-states" +} diff --git a/site/public/v1/games/really-bad-chess-q107357074/index.json b/site/public/v1/games/really-bad-chess-q107357074/index.json new file mode 100644 index 000000000000..0d9abc1b1779 --- /dev/null +++ b/site/public/v1/games/really-bad-chess-q107357074/index.json @@ -0,0 +1,32 @@ +{ + "id": 117422, + "slug": "really-bad-chess-q107357074", + "name": "Really Bad Chess", + "release_date": "2021-04-02", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "iPadOS", + "iOS" + ], + "genres": [ + "chess video game" + ], + "stores": [], + "developers": [ + "Zach Gage" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107357074" + ], + "created_at": "2026-07-10T10:10:34.376199", + "updated_at": "2026-07-10T10:10:34.376199", + "url": "/v1/games/really-bad-chess-q107357074" +} diff --git a/site/public/v1/games/realms-of-arkania-blade-of-destiny-for-the-gods/index.json b/site/public/v1/games/realms-of-arkania-blade-of-destiny-for-the-gods/index.json new file mode 100644 index 000000000000..f11c6ba5e9b9 --- /dev/null +++ b/site/public/v1/games/realms-of-arkania-blade-of-destiny-for-the-gods/index.json @@ -0,0 +1,25 @@ +{ + "id": 117482, + "slug": "realms-of-arkania-blade-of-destiny-for-the-gods", + "name": "Realms of Arkania: Blade of Destiny - For the Gods", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118255690" + ], + "created_at": "2026-07-10T10:10:34.392783", + "updated_at": "2026-07-10T10:10:34.392783", + "url": "/v1/games/realms-of-arkania-blade-of-destiny-for-the-gods" +} diff --git a/site/public/v1/games/reckoning/index.json b/site/public/v1/games/reckoning/index.json new file mode 100644 index 000000000000..6e88aa31b825 --- /dev/null +++ b/site/public/v1/games/reckoning/index.json @@ -0,0 +1,25 @@ +{ + "id": 117696, + "slug": "reckoning", + "name": "Reckoning", + "release_date": "2017-01-26", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q57973882" + ], + "created_at": "2026-07-10T10:10:34.450809", + "updated_at": "2026-07-10T10:10:34.450809", + "url": "/v1/games/reckoning" +} diff --git a/site/public/v1/games/red-baron-mission-builder/index.json b/site/public/v1/games/red-baron-mission-builder/index.json new file mode 100644 index 000000000000..fe19e8bc5469 --- /dev/null +++ b/site/public/v1/games/red-baron-mission-builder/index.json @@ -0,0 +1,25 @@ +{ + "id": 117835, + "slug": "red-baron-mission-builder", + "name": "Red Baron: Mission Builder", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134293700" + ], + "created_at": "2026-07-10T10:10:34.489149", + "updated_at": "2026-07-10T10:10:34.489149", + "url": "/v1/games/red-baron-mission-builder" +} diff --git a/site/public/v1/games/red-baron-pack/index.json b/site/public/v1/games/red-baron-pack/index.json new file mode 100644 index 000000000000..21552d5f0005 --- /dev/null +++ b/site/public/v1/games/red-baron-pack/index.json @@ -0,0 +1,25 @@ +{ + "id": 117836, + "slug": "red-baron-pack", + "name": "Red Baron Pack", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134293639" + ], + "created_at": "2026-07-10T10:10:34.489149", + "updated_at": "2026-07-10T10:10:34.489149", + "url": "/v1/games/red-baron-pack" +} diff --git a/site/public/v1/games/red-baron-with-mission-builder/index.json b/site/public/v1/games/red-baron-with-mission-builder/index.json new file mode 100644 index 000000000000..2592ea23d8e6 --- /dev/null +++ b/site/public/v1/games/red-baron-with-mission-builder/index.json @@ -0,0 +1,25 @@ +{ + "id": 117837, + "slug": "red-baron-with-mission-builder", + "name": "Red Baron with Mission Builder", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134293754" + ], + "created_at": "2026-07-10T10:10:34.490149", + "updated_at": "2026-07-10T10:10:34.490149", + "url": "/v1/games/red-baron-with-mission-builder" +} diff --git a/site/public/v1/games/red-dead-redemption-3/index.json b/site/public/v1/games/red-dead-redemption-3/index.json new file mode 100644 index 000000000000..17406dda18d2 --- /dev/null +++ b/site/public/v1/games/red-dead-redemption-3/index.json @@ -0,0 +1,28 @@ +{ + "id": 117876, + "slug": "red-dead-redemption-3", + "name": "Red Dead Redemption 3", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "action-adventure game", + "third-person shooter" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138416650" + ], + "created_at": "2026-07-10T10:10:34.500118", + "updated_at": "2026-07-10T10:10:34.500118", + "url": "/v1/games/red-dead-redemption-3" +} diff --git a/site/public/v1/games/red-faction-collection/index.json b/site/public/v1/games/red-faction-collection/index.json new file mode 100644 index 000000000000..a803db06896a --- /dev/null +++ b/site/public/v1/games/red-faction-collection/index.json @@ -0,0 +1,25 @@ +{ + "id": 117897, + "slug": "red-faction-collection", + "name": "Red Faction Collection", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140469785" + ], + "created_at": "2026-07-10T10:10:34.506441", + "updated_at": "2026-07-10T10:10:34.506441", + "url": "/v1/games/red-faction-collection" +} diff --git a/site/public/v1/games/red-orchestra-2-rising-storm/index.json b/site/public/v1/games/red-orchestra-2-rising-storm/index.json new file mode 100644 index 000000000000..f7543b67e6aa --- /dev/null +++ b/site/public/v1/games/red-orchestra-2-rising-storm/index.json @@ -0,0 +1,25 @@ +{ + "id": 117980, + "slug": "red-orchestra-2-rising-storm", + "name": "Red Orchestra 2: Rising Storm", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131547061" + ], + "created_at": "2026-07-10T10:10:34.528553", + "updated_at": "2026-07-10T10:10:34.528553", + "url": "/v1/games/red-orchestra-2-rising-storm" +} diff --git a/site/public/v1/games/redout-lightspeed-edition/index.json b/site/public/v1/games/redout-lightspeed-edition/index.json new file mode 100644 index 000000000000..d8c92177c93c --- /dev/null +++ b/site/public/v1/games/redout-lightspeed-edition/index.json @@ -0,0 +1,27 @@ +{ + "id": 118176, + "slug": "redout-lightspeed-edition", + "name": "Redout: Lightspeed Edition", + "release_date": "2017-08-31", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 4" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q46998091" + ], + "created_at": "2026-07-10T10:10:34.579246", + "updated_at": "2026-07-10T10:10:34.579246", + "url": "/v1/games/redout-lightspeed-edition" +} diff --git a/site/public/v1/games/refusion/index.json b/site/public/v1/games/refusion/index.json new file mode 100644 index 000000000000..fb3460f4a0ad --- /dev/null +++ b/site/public/v1/games/refusion/index.json @@ -0,0 +1,29 @@ +{ + "id": 118326, + "slug": "refusion", + "name": "Refusion", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "real-time strategy" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110817126" + ], + "created_at": "2026-07-10T10:10:34.619320", + "updated_at": "2026-07-10T10:10:34.619320", + "url": "/v1/games/refusion" +} diff --git a/site/public/v1/games/reigns-q107357083/index.json b/site/public/v1/games/reigns-q107357083/index.json new file mode 100644 index 000000000000..9d1042e018a4 --- /dev/null +++ b/site/public/v1/games/reigns-q107357083/index.json @@ -0,0 +1,32 @@ +{ + "id": 118403, + "slug": "reigns-q107357083", + "name": "Reigns+", + "release_date": "2021-04-02", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "iPadOS", + "iOS" + ], + "genres": [], + "stores": [], + "developers": [ + "Nerial" + ], + "publishers": [ + "Devolver Digital" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107357083" + ], + "created_at": "2026-07-10T10:10:34.639375", + "updated_at": "2026-07-10T10:10:34.639375", + "url": "/v1/games/reigns-q107357083" +} diff --git a/site/public/v1/games/ren-stimpy-happy-happy-joy-joy-collection/index.json b/site/public/v1/games/ren-stimpy-happy-happy-joy-joy-collection/index.json new file mode 100644 index 000000000000..0b0411b92656 --- /dev/null +++ b/site/public/v1/games/ren-stimpy-happy-happy-joy-joy-collection/index.json @@ -0,0 +1,27 @@ +{ + "id": 118663, + "slug": "ren-stimpy-happy-happy-joy-joy-collection", + "name": "Ren & Stimpy Happy, Happy, Joy, Joy, Collection", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138453314" + ], + "created_at": "2026-07-10T10:10:34.725850", + "updated_at": "2026-07-10T10:10:34.725850", + "url": "/v1/games/ren-stimpy-happy-happy-joy-joy-collection" +} diff --git a/site/public/v1/games/rendition-guantanamo/index.json b/site/public/v1/games/rendition-guantanamo/index.json new file mode 100644 index 000000000000..2e7cc7c11626 --- /dev/null +++ b/site/public/v1/games/rendition-guantanamo/index.json @@ -0,0 +1,33 @@ +{ + "id": 118692, + "slug": "rendition-guantanamo", + "name": "Rendition: Guantanamo", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "action game" + ], + "stores": [], + "developers": [ + "T-Enterprise" + ], + "publishers": [ + "T-Enterprise" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7312846" + ], + "created_at": "2026-07-10T10:10:34.733855", + "updated_at": "2026-07-10T10:10:34.733855", + "url": "/v1/games/rendition-guantanamo" +} diff --git a/site/public/v1/games/rescue-simulator-2014/index.json b/site/public/v1/games/rescue-simulator-2014/index.json new file mode 100644 index 000000000000..9fe5f51748b7 --- /dev/null +++ b/site/public/v1/games/rescue-simulator-2014/index.json @@ -0,0 +1,25 @@ +{ + "id": 118889, + "slug": "rescue-simulator-2014", + "name": "Rescue Simulator 2014", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140471807" + ], + "created_at": "2026-07-10T10:10:34.809324", + "updated_at": "2026-07-10T10:10:34.809324", + "url": "/v1/games/rescue-simulator-2014" +} diff --git a/site/public/v1/games/resident-evil-2-1-shot-demo/index.json b/site/public/v1/games/resident-evil-2-1-shot-demo/index.json new file mode 100644 index 000000000000..63a32fa4703e --- /dev/null +++ b/site/public/v1/games/resident-evil-2-1-shot-demo/index.json @@ -0,0 +1,34 @@ +{ + "id": 118945, + "slug": "resident-evil-2-1-shot-demo", + "name": "Resident Evil 2: 1-Shot Demo", + "release_date": "2019-01-11", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "survival horror" + ], + "stores": [], + "developers": [ + "Capcom" + ], + "publishers": [ + "Capcom" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q61448741" + ], + "created_at": "2026-07-10T10:10:34.821330", + "updated_at": "2026-07-10T10:10:34.821330", + "url": "/v1/games/resident-evil-2-1-shot-demo" +} diff --git a/site/public/v1/games/resident-evil-2-sharefactory-theme/index.json b/site/public/v1/games/resident-evil-2-sharefactory-theme/index.json new file mode 100644 index 000000000000..e1a5f3cf4ee1 --- /dev/null +++ b/site/public/v1/games/resident-evil-2-sharefactory-theme/index.json @@ -0,0 +1,27 @@ +{ + "id": 118947, + "slug": "resident-evil-2-sharefactory-theme", + "name": "Resident Evil 2 SHAREfactory Theme", + "release_date": "2019-01-25", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 4" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q61448975" + ], + "created_at": "2026-07-10T10:10:34.821330", + "updated_at": "2026-07-10T10:10:34.821330", + "url": "/v1/games/resident-evil-2-sharefactory-theme" +} diff --git a/site/public/v1/games/resident-evil-5-gold-edition/index.json b/site/public/v1/games/resident-evil-5-gold-edition/index.json new file mode 100644 index 000000000000..e428b5c40819 --- /dev/null +++ b/site/public/v1/games/resident-evil-5-gold-edition/index.json @@ -0,0 +1,29 @@ +{ + "id": 118957, + "slug": "resident-evil-5-gold-edition", + "name": "Resident Evil 5: Gold Edition", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 3" + ], + "genres": [], + "stores": [], + "developers": [ + "Capcom" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107424254" + ], + "created_at": "2026-07-10T10:10:34.823390", + "updated_at": "2026-07-10T10:10:34.823390", + "url": "/v1/games/resident-evil-5-gold-edition" +} diff --git a/site/public/v1/games/resident-evil-7-biohazard-end-of-zoe/index.json b/site/public/v1/games/resident-evil-7-biohazard-end-of-zoe/index.json new file mode 100644 index 000000000000..e7c462ec13eb --- /dev/null +++ b/site/public/v1/games/resident-evil-7-biohazard-end-of-zoe/index.json @@ -0,0 +1,35 @@ +{ + "id": 118961, + "slug": "resident-evil-7-biohazard-end-of-zoe", + "name": "Resident Evil 7: Biohazard - End of Zoe", + "release_date": "2017-12-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "survival horror" + ], + "stores": [], + "developers": [ + "Capcom" + ], + "publishers": [ + "Capcom" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109656599" + ], + "created_at": "2026-07-10T10:10:34.823390", + "updated_at": "2026-07-10T10:10:34.823390", + "url": "/v1/games/resident-evil-7-biohazard-end-of-zoe" +} diff --git a/site/public/v1/games/resident-evil-chronicles-hd-collection/index.json b/site/public/v1/games/resident-evil-chronicles-hd-collection/index.json new file mode 100644 index 000000000000..a362e254b095 --- /dev/null +++ b/site/public/v1/games/resident-evil-chronicles-hd-collection/index.json @@ -0,0 +1,25 @@ +{ + "id": 118964, + "slug": "resident-evil-chronicles-hd-collection", + "name": "Resident Evil Chronicles HD Collection", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107424258" + ], + "created_at": "2026-07-10T10:10:34.824413", + "updated_at": "2026-07-10T10:10:34.824413", + "url": "/v1/games/resident-evil-chronicles-hd-collection" +} diff --git a/site/public/v1/games/resident-evil-director-s-cut-dual-shock/index.json b/site/public/v1/games/resident-evil-director-s-cut-dual-shock/index.json new file mode 100644 index 000000000000..3de7ad85f359 --- /dev/null +++ b/site/public/v1/games/resident-evil-director-s-cut-dual-shock/index.json @@ -0,0 +1,25 @@ +{ + "id": 118970, + "slug": "resident-evil-director-s-cut-dual-shock", + "name": "Resident Evil Director's Cut Dual Shock", + "release_date": "1998-08-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112064673" + ], + "created_at": "2026-07-10T10:10:34.826331", + "updated_at": "2026-07-10T10:10:34.826331", + "url": "/v1/games/resident-evil-director-s-cut-dual-shock" +} diff --git a/site/public/v1/games/resident-evil-director-s-cut/index.json b/site/public/v1/games/resident-evil-director-s-cut/index.json new file mode 100644 index 000000000000..de379717b372 --- /dev/null +++ b/site/public/v1/games/resident-evil-director-s-cut/index.json @@ -0,0 +1,25 @@ +{ + "id": 118971, + "slug": "resident-evil-director-s-cut", + "name": "Resident Evil: Director's Cut", + "release_date": "1997-09-25", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112064742" + ], + "created_at": "2026-07-10T10:10:34.827346", + "updated_at": "2026-07-10T10:10:34.827346", + "url": "/v1/games/resident-evil-director-s-cut" +} diff --git a/site/public/v1/games/resident-evil-portable/index.json b/site/public/v1/games/resident-evil-portable/index.json new file mode 100644 index 000000000000..ac62a37f102d --- /dev/null +++ b/site/public/v1/games/resident-evil-portable/index.json @@ -0,0 +1,31 @@ +{ + "id": 118981, + "slug": "resident-evil-portable", + "name": "Resident Evil Portable", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation Portable" + ], + "genres": [ + "horror video game" + ], + "stores": [], + "developers": [ + "Capcom" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2623306" + ], + "created_at": "2026-07-10T10:10:34.831330", + "updated_at": "2026-07-10T10:10:34.831330", + "url": "/v1/games/resident-evil-portable" +} diff --git a/site/public/v1/games/resident-evil-village-shadows-of-rose/index.json b/site/public/v1/games/resident-evil-village-shadows-of-rose/index.json new file mode 100644 index 000000000000..8eacabb0d9c9 --- /dev/null +++ b/site/public/v1/games/resident-evil-village-shadows-of-rose/index.json @@ -0,0 +1,37 @@ +{ + "id": 118997, + "slug": "resident-evil-village-shadows-of-rose", + "name": "Resident Evil Village: Shadows of Rose", + "release_date": "2022-10-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 5", + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "survival horror", + "third-person shooter" + ], + "stores": [], + "developers": [ + "Capcom" + ], + "publishers": [ + "Capcom" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115074341" + ], + "created_at": "2026-07-10T10:10:34.835330", + "updated_at": "2026-07-10T10:10:34.835330", + "url": "/v1/games/resident-evil-village-shadows-of-rose" +} diff --git a/site/public/v1/games/resogun-defenders/index.json b/site/public/v1/games/resogun-defenders/index.json new file mode 100644 index 000000000000..4dabeeebb2bf --- /dev/null +++ b/site/public/v1/games/resogun-defenders/index.json @@ -0,0 +1,25 @@ +{ + "id": 119031, + "slug": "resogun-defenders", + "name": "Resogun: Defenders", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136522381" + ], + "created_at": "2026-07-10T10:10:34.859465", + "updated_at": "2026-07-10T10:10:34.859465", + "url": "/v1/games/resogun-defenders" +} diff --git a/site/public/v1/games/retro-atari-classics/index.json b/site/public/v1/games/retro-atari-classics/index.json new file mode 100644 index 000000000000..aefd16de7228 --- /dev/null +++ b/site/public/v1/games/retro-atari-classics/index.json @@ -0,0 +1,31 @@ +{ + "id": 119193, + "slug": "retro-atari-classics", + "name": "Retro Atari Classics", + "release_date": "2005-03-11", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Nintendo DS" + ], + "genres": [], + "stores": [], + "developers": [ + "Atari" + ], + "publishers": [ + "Atari, Inc." + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7316978" + ], + "created_at": "2026-07-10T10:10:34.909078", + "updated_at": "2026-07-10T10:10:34.909078", + "url": "/v1/games/retro-atari-classics" +} diff --git a/site/public/v1/games/retro-bowl-q119945560/index.json b/site/public/v1/games/retro-bowl-q119945560/index.json new file mode 100644 index 000000000000..35b101e2a80c --- /dev/null +++ b/site/public/v1/games/retro-bowl-q119945560/index.json @@ -0,0 +1,29 @@ +{ + "id": 119197, + "slug": "retro-bowl-q119945560", + "name": "Retro Bowl+", + "release_date": "2023-06-23", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "iPadOS", + "iOS", + "web browser" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q119945560" + ], + "created_at": "2026-07-10T10:10:34.910077", + "updated_at": "2026-07-10T10:10:34.910077", + "url": "/v1/games/retro-bowl-q119945560" +} diff --git a/site/public/v1/games/retro-classics/index.json b/site/public/v1/games/retro-classics/index.json new file mode 100644 index 000000000000..a63a552aa59a --- /dev/null +++ b/site/public/v1/games/retro-classics/index.json @@ -0,0 +1,32 @@ +{ + "id": 119200, + "slug": "retro-classics", + "name": "Retro Classics", + "release_date": "2025-05-21", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Antstream" + ], + "publishers": [ + "Xbox Game Studios" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134532029" + ], + "created_at": "2026-07-10T10:10:34.911078", + "updated_at": "2026-07-10T10:10:34.911078", + "url": "/v1/games/retro-classics" +} diff --git a/site/public/v1/games/retro-goal-q119881505/index.json b/site/public/v1/games/retro-goal-q119881505/index.json new file mode 100644 index 000000000000..980519a8ce59 --- /dev/null +++ b/site/public/v1/games/retro-goal-q119881505/index.json @@ -0,0 +1,28 @@ +{ + "id": 119225, + "slug": "retro-goal-q119881505", + "name": "Retro Goal+", + "release_date": "2023-06-23", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "iPadOS", + "iOS" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q119881505" + ], + "created_at": "2026-07-10T10:10:34.917152", + "updated_at": "2026-07-10T10:10:34.917152", + "url": "/v1/games/retro-goal-q119881505" +} diff --git a/site/public/v1/games/return-fire-maps-o-death/index.json b/site/public/v1/games/return-fire-maps-o-death/index.json new file mode 100644 index 000000000000..f3aa4a33eef7 --- /dev/null +++ b/site/public/v1/games/return-fire-maps-o-death/index.json @@ -0,0 +1,25 @@ +{ + "id": 119341, + "slug": "return-fire-maps-o-death", + "name": "Return Fire: Maps o' Death", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122974542" + ], + "created_at": "2026-07-10T10:10:34.984857", + "updated_at": "2026-07-10T10:10:34.984857", + "url": "/v1/games/return-fire-maps-o-death" +} diff --git a/site/public/v1/games/revenant-hill/index.json b/site/public/v1/games/revenant-hill/index.json new file mode 100644 index 000000000000..8b1e8e7b2dfb --- /dev/null +++ b/site/public/v1/games/revenant-hill/index.json @@ -0,0 +1,33 @@ +{ + "id": 119442, + "slug": "revenant-hill", + "name": "Revenant Hill", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 5", + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "adventure video game" + ], + "stores": [], + "developers": [], + "publishers": [ + "Finji" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118645573" + ], + "created_at": "2026-07-10T10:10:35.027833", + "updated_at": "2026-07-10T10:10:35.027833", + "url": "/v1/games/revenant-hill" +} diff --git a/site/public/v1/games/rewrite-harvest-festa-q123553191/index.json b/site/public/v1/games/rewrite-harvest-festa-q123553191/index.json new file mode 100644 index 000000000000..c841ce9b4c5f --- /dev/null +++ b/site/public/v1/games/rewrite-harvest-festa-q123553191/index.json @@ -0,0 +1,36 @@ +{ + "id": 119613, + "slug": "rewrite-harvest-festa-q123553191", + "name": "Rewrite Harvest festa!", + "release_date": "2012-07-27", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation Vita", + "Microsoft Windows" + ], + "genres": [ + "visual novel", + "bishōjo game" + ], + "stores": [], + "developers": [ + "Key" + ], + "publishers": [ + "Prototype", + "Visual Arts" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123553191" + ], + "created_at": "2026-07-10T10:10:35.074577", + "updated_at": "2026-07-10T10:10:35.074577", + "url": "/v1/games/rewrite-harvest-festa-q123553191" +} diff --git a/site/public/v1/games/rewrite-q123553138/index.json b/site/public/v1/games/rewrite-q123553138/index.json new file mode 100644 index 000000000000..f3edc47f31d5 --- /dev/null +++ b/site/public/v1/games/rewrite-q123553138/index.json @@ -0,0 +1,43 @@ +{ + "id": 119617, + "slug": "rewrite-q123553138", + "name": "Rewrite", + "release_date": "2011-06-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 4", + "PlayStation Portable", + "PlayStation Vita", + "PlayStation 3", + "Microsoft Windows" + ], + "genres": [ + "visual novel", + "drama anime and manga", + "school anime and manga", + "fantasy anime and manga", + "romance anime and manga" + ], + "stores": [], + "developers": [ + "Key" + ], + "publishers": [ + "Prototype", + "Sekai Project", + "Visual Arts" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123553138" + ], + "created_at": "2026-07-10T10:10:35.075601", + "updated_at": "2026-07-10T10:10:35.075601", + "url": "/v1/games/rewrite-q123553138" +} diff --git a/site/public/v1/games/rez-infinite-digital-deluxe-dlc/index.json b/site/public/v1/games/rez-infinite-digital-deluxe-dlc/index.json new file mode 100644 index 000000000000..d0658b45cd05 --- /dev/null +++ b/site/public/v1/games/rez-infinite-digital-deluxe-dlc/index.json @@ -0,0 +1,32 @@ +{ + "id": 119637, + "slug": "rez-infinite-digital-deluxe-dlc", + "name": "Rez Infinite Digital Deluxe DLC", + "release_date": "2017-08-09", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Resonair", + "Monstars" + ], + "publishers": [ + "Enhance" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q104158640" + ], + "created_at": "2026-07-10T10:10:35.080260", + "updated_at": "2026-07-10T10:10:35.080260", + "url": "/v1/games/rez-infinite-digital-deluxe-dlc" +} diff --git a/site/public/v1/games/rico-s-chiliworks/index.json b/site/public/v1/games/rico-s-chiliworks/index.json new file mode 100644 index 000000000000..8fea096b7782 --- /dev/null +++ b/site/public/v1/games/rico-s-chiliworks/index.json @@ -0,0 +1,25 @@ +{ + "id": 119840, + "slug": "rico-s-chiliworks", + "name": "Rico's Chiliworks", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q128014904" + ], + "created_at": "2026-07-10T10:10:35.142047", + "updated_at": "2026-07-10T10:10:35.142047", + "url": "/v1/games/rico-s-chiliworks" +} diff --git a/site/public/v1/games/riki-8bit-game-collection/index.json b/site/public/v1/games/riki-8bit-game-collection/index.json new file mode 100644 index 000000000000..0e3a5e2bfa73 --- /dev/null +++ b/site/public/v1/games/riki-8bit-game-collection/index.json @@ -0,0 +1,27 @@ +{ + "id": 120038, + "slug": "riki-8bit-game-collection", + "name": "RIKI 8Bit Game Collection", + "release_date": "2024-11-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "City Connection" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q128598319" + ], + "created_at": "2026-07-10T10:10:35.193831", + "updated_at": "2026-07-10T10:10:35.193831", + "url": "/v1/games/riki-8bit-game-collection" +} diff --git a/site/public/v1/games/rimworld-anomaly/index.json b/site/public/v1/games/rimworld-anomaly/index.json new file mode 100644 index 000000000000..f38ce21589a7 --- /dev/null +++ b/site/public/v1/games/rimworld-anomaly/index.json @@ -0,0 +1,30 @@ +{ + "id": 120064, + "slug": "rimworld-anomaly", + "name": "RimWorld - Anomaly", + "release_date": "2024-04-11", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Ludeon Studios" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135450604" + ], + "created_at": "2026-07-10T10:10:35.200768", + "updated_at": "2026-07-10T10:10:35.200768", + "url": "/v1/games/rimworld-anomaly" +} diff --git a/site/public/v1/games/rimworld-biotech/index.json b/site/public/v1/games/rimworld-biotech/index.json new file mode 100644 index 000000000000..2718e2332744 --- /dev/null +++ b/site/public/v1/games/rimworld-biotech/index.json @@ -0,0 +1,28 @@ +{ + "id": 120065, + "slug": "rimworld-biotech", + "name": "RimWorld - Biotech", + "release_date": "2022-10-21", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q114836832" + ], + "created_at": "2026-07-10T10:10:35.201777", + "updated_at": "2026-07-10T10:10:35.201777", + "url": "/v1/games/rimworld-biotech" +} diff --git a/site/public/v1/games/rimworld-console-edition/index.json b/site/public/v1/games/rimworld-console-edition/index.json new file mode 100644 index 000000000000..627a229c689e --- /dev/null +++ b/site/public/v1/games/rimworld-console-edition/index.json @@ -0,0 +1,33 @@ +{ + "id": 120066, + "slug": "rimworld-console-edition", + "name": "RimWorld Console Edition", + "release_date": "2022-07-29", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 4" + ], + "genres": [], + "stores": [], + "developers": [ + "Ludeon Studios", + "Double Eleven" + ], + "publishers": [ + "Double Eleven" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115459708" + ], + "created_at": "2026-07-10T10:10:35.201777", + "updated_at": "2026-07-10T10:10:35.201777", + "url": "/v1/games/rimworld-console-edition" +} diff --git a/site/public/v1/games/rimworld-ideology/index.json b/site/public/v1/games/rimworld-ideology/index.json new file mode 100644 index 000000000000..55021c2f92d9 --- /dev/null +++ b/site/public/v1/games/rimworld-ideology/index.json @@ -0,0 +1,35 @@ +{ + "id": 120067, + "slug": "rimworld-ideology", + "name": "RimWorld - Ideology", + "release_date": "2021-07-20", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "real-time strategy", + "simulation video game" + ], + "stores": [], + "developers": [ + "Ludeon Studios" + ], + "publishers": [ + "Ludeon Studios" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107600965" + ], + "created_at": "2026-07-10T10:10:35.201777", + "updated_at": "2026-07-10T10:10:35.201777", + "url": "/v1/games/rimworld-ideology" +} diff --git a/site/public/v1/games/rimworld-odyssey/index.json b/site/public/v1/games/rimworld-odyssey/index.json new file mode 100644 index 000000000000..979004c2dcba --- /dev/null +++ b/site/public/v1/games/rimworld-odyssey/index.json @@ -0,0 +1,30 @@ +{ + "id": 120068, + "slug": "rimworld-odyssey", + "name": "RimWorld - Odyssey", + "release_date": "2025-07-11", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Ludeon Studios" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135450345" + ], + "created_at": "2026-07-10T10:10:35.201777", + "updated_at": "2026-07-10T10:10:35.201777", + "url": "/v1/games/rimworld-odyssey" +} diff --git a/site/public/v1/games/rimworld-royalty/index.json b/site/public/v1/games/rimworld-royalty/index.json new file mode 100644 index 000000000000..1d8a060f10f0 --- /dev/null +++ b/site/public/v1/games/rimworld-royalty/index.json @@ -0,0 +1,35 @@ +{ + "id": 120069, + "slug": "rimworld-royalty", + "name": "RimWorld - Royalty", + "release_date": "2020-02-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "real-time strategy", + "simulation video game" + ], + "stores": [], + "developers": [ + "Ludeon Studios" + ], + "publishers": [ + "Ludeon Studios" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107600852" + ], + "created_at": "2026-07-10T10:10:35.201777", + "updated_at": "2026-07-10T10:10:35.201777", + "url": "/v1/games/rimworld-royalty" +} diff --git a/site/public/v1/games/rip-3-the-last-hero-demo/index.json b/site/public/v1/games/rip-3-the-last-hero-demo/index.json new file mode 100644 index 000000000000..34d2f1cfa3f2 --- /dev/null +++ b/site/public/v1/games/rip-3-the-last-hero-demo/index.json @@ -0,0 +1,33 @@ +{ + "id": 120157, + "slug": "rip-3-the-last-hero-demo", + "name": "RIP 3 - The Last Hero Demo", + "release_date": "2007-06-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "casual game" + ], + "stores": [], + "developers": [ + "Elephant Games" + ], + "publishers": [ + "Meridian4" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122706801" + ], + "created_at": "2026-07-10T10:10:35.224827", + "updated_at": "2026-07-10T10:10:35.224827", + "url": "/v1/games/rip-3-the-last-hero-demo" +} diff --git a/site/public/v1/games/riptide-gp-renegade-q116719952/index.json b/site/public/v1/games/riptide-gp-renegade-q116719952/index.json new file mode 100644 index 000000000000..0528bb4111ec --- /dev/null +++ b/site/public/v1/games/riptide-gp-renegade-q116719952/index.json @@ -0,0 +1,29 @@ +{ + "id": 120183, + "slug": "riptide-gp-renegade-q116719952", + "name": "Riptide GP: Renegade+", + "release_date": "2023-02-10", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "iPadOS", + "tvOS", + "iOS" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116719952" + ], + "created_at": "2026-07-10T10:10:35.237835", + "updated_at": "2026-07-10T10:10:35.237835", + "url": "/v1/games/riptide-gp-renegade-q116719952" +} diff --git a/site/public/v1/games/rise-of-nations-q116142353/index.json b/site/public/v1/games/rise-of-nations-q116142353/index.json new file mode 100644 index 000000000000..e80249838c0e --- /dev/null +++ b/site/public/v1/games/rise-of-nations-q116142353/index.json @@ -0,0 +1,33 @@ +{ + "id": 120240, + "slug": "rise-of-nations-q116142353", + "name": "Rise of Nations", + "release_date": "2018-11-14", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "real-time strategy", + "strategy video game" + ], + "stores": [], + "developers": [ + "Hyperant" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116142353" + ], + "created_at": "2026-07-10T10:10:35.251932", + "updated_at": "2026-07-10T10:10:35.251932", + "url": "/v1/games/rise-of-nations-q116142353" +} diff --git a/site/public/v1/games/rise-of-nations-thrones-and-patriots/index.json b/site/public/v1/games/rise-of-nations-thrones-and-patriots/index.json new file mode 100644 index 000000000000..b2109ac06f59 --- /dev/null +++ b/site/public/v1/games/rise-of-nations-thrones-and-patriots/index.json @@ -0,0 +1,34 @@ +{ + "id": 120242, + "slug": "rise-of-nations-thrones-and-patriots", + "name": "Rise of Nations: Thrones and Patriots", + "release_date": "2004-04-27", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "real-time strategy" + ], + "stores": [], + "developers": [ + "Big Huge Games" + ], + "publishers": [ + "Xbox Game Studios" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q426566" + ], + "created_at": "2026-07-10T10:10:35.252928", + "updated_at": "2026-07-10T10:10:35.252928", + "url": "/v1/games/rise-of-nations-thrones-and-patriots" +} diff --git a/site/public/v1/games/rise-of-the-prim/index.json b/site/public/v1/games/rise-of-the-prim/index.json new file mode 100644 index 000000000000..bb3257947b1a --- /dev/null +++ b/site/public/v1/games/rise-of-the-prim/index.json @@ -0,0 +1,25 @@ +{ + "id": 120272, + "slug": "rise-of-the-prim", + "name": "Rise of the Prim", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121510709" + ], + "created_at": "2026-07-10T10:10:35.260483", + "updated_at": "2026-07-10T10:10:35.260483", + "url": "/v1/games/rise-of-the-prim" +} diff --git a/site/public/v1/games/rise-of-the-teenage-mutant-ninja-turtles-city-showdown/index.json b/site/public/v1/games/rise-of-the-teenage-mutant-ninja-turtles-city-showdown/index.json new file mode 100644 index 000000000000..3e111d81bc08 --- /dev/null +++ b/site/public/v1/games/rise-of-the-teenage-mutant-ninja-turtles-city-showdown/index.json @@ -0,0 +1,27 @@ +{ + "id": 120279, + "slug": "rise-of-the-teenage-mutant-ninja-turtles-city-showdown", + "name": "Rise of the Teenage Mutant Ninja Turtles: City Showdown", + "release_date": "2018-07-26", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "web browser" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q97499033" + ], + "created_at": "2026-07-10T10:10:35.261577", + "updated_at": "2026-07-10T10:10:35.261577", + "url": "/v1/games/rise-of-the-teenage-mutant-ninja-turtles-city-showdown" +} diff --git a/site/public/v1/games/rise-of-the-tomb-raider-20-year-celebration/index.json b/site/public/v1/games/rise-of-the-tomb-raider-20-year-celebration/index.json new file mode 100644 index 000000000000..889e203b4038 --- /dev/null +++ b/site/public/v1/games/rise-of-the-tomb-raider-20-year-celebration/index.json @@ -0,0 +1,36 @@ +{ + "id": 120283, + "slug": "rise-of-the-tomb-raider-20-year-celebration", + "name": "Rise of the Tomb Raider: 20 Year Celebration", + "release_date": "2016-10-11", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "PlayStation 4", + "iOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Eidos Montreal", + "Crystal Dynamics" + ], + "publishers": [ + "Square Enix", + "Feral Interactive" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q92204235" + ], + "created_at": "2026-07-10T10:10:35.262560", + "updated_at": "2026-07-10T10:10:35.262560", + "url": "/v1/games/rise-of-the-tomb-raider-20-year-celebration" +} diff --git a/site/public/v1/games/rise-of-the-tomb-raider-blood-ties/index.json b/site/public/v1/games/rise-of-the-tomb-raider-blood-ties/index.json new file mode 100644 index 000000000000..2de70e289ffb --- /dev/null +++ b/site/public/v1/games/rise-of-the-tomb-raider-blood-ties/index.json @@ -0,0 +1,25 @@ +{ + "id": 120284, + "slug": "rise-of-the-tomb-raider-blood-ties", + "name": "Rise of the Tomb Raider: Blood Ties", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140471232" + ], + "created_at": "2026-07-10T10:10:35.263578", + "updated_at": "2026-07-10T10:10:35.263578", + "url": "/v1/games/rise-of-the-tomb-raider-blood-ties" +} diff --git a/site/public/v1/games/risen-3-titan-lords-enhanced-edition/index.json b/site/public/v1/games/risen-3-titan-lords-enhanced-edition/index.json new file mode 100644 index 000000000000..f4d3a776db33 --- /dev/null +++ b/site/public/v1/games/risen-3-titan-lords-enhanced-edition/index.json @@ -0,0 +1,25 @@ +{ + "id": 120313, + "slug": "risen-3-titan-lords-enhanced-edition", + "name": "Risen 3: Titan Lords – Enhanced Edition", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107424261" + ], + "created_at": "2026-07-10T10:10:35.271537", + "updated_at": "2026-07-10T10:10:35.271537", + "url": "/v1/games/risen-3-titan-lords-enhanced-edition" +} diff --git a/site/public/v1/games/risen3d/index.json b/site/public/v1/games/risen3d/index.json new file mode 100644 index 000000000000..464e1d31abb0 --- /dev/null +++ b/site/public/v1/games/risen3d/index.json @@ -0,0 +1,25 @@ +{ + "id": 120317, + "slug": "risen3d", + "name": "Risen3D", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q67246989" + ], + "created_at": "2026-07-10T10:10:35.271537", + "updated_at": "2026-07-10T10:10:35.271537", + "url": "/v1/games/risen3d" +} diff --git a/site/public/v1/games/rising-storm/index.json b/site/public/v1/games/rising-storm/index.json new file mode 100644 index 000000000000..596c9806ac00 --- /dev/null +++ b/site/public/v1/games/rising-storm/index.json @@ -0,0 +1,33 @@ +{ + "id": 120349, + "slug": "rising-storm", + "name": "Rising Storm", + "release_date": "2013-05-30", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter" + ], + "stores": [], + "developers": [ + "Tripwire Interactive" + ], + "publishers": [ + "Tripwire Interactive" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7336155" + ], + "created_at": "2026-07-10T10:10:35.280548", + "updated_at": "2026-07-10T10:10:35.280548", + "url": "/v1/games/rising-storm" +} diff --git a/site/public/v1/games/risk-of-rain-2-survivors-of-the-void/index.json b/site/public/v1/games/risk-of-rain-2-survivors-of-the-void/index.json new file mode 100644 index 000000000000..1b596711e5ac --- /dev/null +++ b/site/public/v1/games/risk-of-rain-2-survivors-of-the-void/index.json @@ -0,0 +1,27 @@ +{ + "id": 120367, + "slug": "risk-of-rain-2-survivors-of-the-void", + "name": "Risk of Rain 2: Survivors of the Void", + "release_date": "2022-03-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113175749" + ], + "created_at": "2026-07-10T10:10:35.285546", + "updated_at": "2026-07-10T10:10:35.285546", + "url": "/v1/games/risk-of-rain-2-survivors-of-the-void" +} diff --git a/site/public/v1/games/rocket-cars-vita/index.json b/site/public/v1/games/rocket-cars-vita/index.json new file mode 100644 index 000000000000..524881552e92 --- /dev/null +++ b/site/public/v1/games/rocket-cars-vita/index.json @@ -0,0 +1,33 @@ +{ + "id": 121174, + "slug": "rocket-cars-vita", + "name": "Rocket Cars Vita", + "release_date": "2023-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation Vita" + ], + "genres": [ + "association football video game" + ], + "stores": [], + "developers": [ + "VitaDev Games" + ], + "publishers": [ + "VitaDev Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124053146" + ], + "created_at": "2026-07-10T10:10:35.499713", + "updated_at": "2026-07-10T10:10:35.499713", + "url": "/v1/games/rocket-cars-vita" +} diff --git a/site/public/v1/games/rockman-power-battle-fighters/index.json b/site/public/v1/games/rockman-power-battle-fighters/index.json new file mode 100644 index 000000000000..8bd9e9467f78 --- /dev/null +++ b/site/public/v1/games/rockman-power-battle-fighters/index.json @@ -0,0 +1,27 @@ +{ + "id": 121291, + "slug": "rockman-power-battle-fighters", + "name": "Rockman: Power Battle Fighters", + "release_date": "2004-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [ + "Capcom" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q47461217" + ], + "created_at": "2026-07-10T10:10:35.530692", + "updated_at": "2026-07-10T10:10:35.530692", + "url": "/v1/games/rockman-power-battle-fighters" +} diff --git a/site/public/v1/games/rocksmith-all-new-2014-edition-cake-never-there/index.json b/site/public/v1/games/rocksmith-all-new-2014-edition-cake-never-there/index.json new file mode 100644 index 000000000000..4c9c32df0466 --- /dev/null +++ b/site/public/v1/games/rocksmith-all-new-2014-edition-cake-never-there/index.json @@ -0,0 +1,32 @@ +{ + "id": 121306, + "slug": "rocksmith-all-new-2014-edition-cake-never-there", + "name": "Rocksmith: All-new 2014 Edition - Cake: Never There", + "release_date": "2014-05-20", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 4", + "macOS", + "PlayStation 3", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Ubisoft San Francisco" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q51853649" + ], + "created_at": "2026-07-10T10:10:35.534647", + "updated_at": "2026-07-10T10:10:35.534647", + "url": "/v1/games/rocksmith-all-new-2014-edition-cake-never-there" +} diff --git a/site/public/v1/games/rockymud/index.json b/site/public/v1/games/rockymud/index.json new file mode 100644 index 000000000000..86c6bbd073a1 --- /dev/null +++ b/site/public/v1/games/rockymud/index.json @@ -0,0 +1,25 @@ +{ + "id": 121330, + "slug": "rockymud", + "name": "RockyMUD", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121543617" + ], + "created_at": "2026-07-10T10:10:35.541728", + "updated_at": "2026-07-10T10:10:35.541728", + "url": "/v1/games/rockymud" +} diff --git a/site/public/v1/games/rogue-lords-day-one-edition/index.json b/site/public/v1/games/rogue-lords-day-one-edition/index.json new file mode 100644 index 000000000000..59e1288adce1 --- /dev/null +++ b/site/public/v1/games/rogue-lords-day-one-edition/index.json @@ -0,0 +1,32 @@ +{ + "id": 121441, + "slug": "rogue-lords-day-one-edition", + "name": "Rogue Lords Day One Edition", + "release_date": "2022-04-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S" + ], + "genres": [], + "stores": [], + "developers": [ + "Leikir Studio", + "Cyanide" + ], + "publishers": [ + "Nacon" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111906657" + ], + "created_at": "2026-07-10T10:10:35.571426", + "updated_at": "2026-07-10T10:10:35.571426", + "url": "/v1/games/rogue-lords-day-one-edition" +} diff --git a/site/public/v1/games/rokh/index.json b/site/public/v1/games/rokh/index.json new file mode 100644 index 000000000000..ae6377848aac --- /dev/null +++ b/site/public/v1/games/rokh/index.json @@ -0,0 +1,30 @@ +{ + "id": 121616, + "slug": "rokh", + "name": "Rokh", + "release_date": "2017-05-16", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "science fiction video game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q24060063" + ], + "created_at": "2026-07-10T10:10:35.618461", + "updated_at": "2026-07-10T10:10:35.618461", + "url": "/v1/games/rokh" +} diff --git a/site/public/v1/games/roller-coaster-tycoon-deluxe/index.json b/site/public/v1/games/roller-coaster-tycoon-deluxe/index.json new file mode 100644 index 000000000000..5dd50bdeb870 --- /dev/null +++ b/site/public/v1/games/roller-coaster-tycoon-deluxe/index.json @@ -0,0 +1,25 @@ +{ + "id": 121688, + "slug": "roller-coaster-tycoon-deluxe", + "name": "Roller Coaster Tycoon Deluxe", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121200762" + ], + "created_at": "2026-07-10T10:10:35.638381", + "updated_at": "2026-07-10T10:10:35.638381", + "url": "/v1/games/roller-coaster-tycoon-deluxe" +} diff --git a/site/public/v1/games/rollercoaster-tycoon-2-combo-park-pack/index.json b/site/public/v1/games/rollercoaster-tycoon-2-combo-park-pack/index.json new file mode 100644 index 000000000000..83b1e4714de0 --- /dev/null +++ b/site/public/v1/games/rollercoaster-tycoon-2-combo-park-pack/index.json @@ -0,0 +1,25 @@ +{ + "id": 121705, + "slug": "rollercoaster-tycoon-2-combo-park-pack", + "name": "RollerCoaster Tycoon 2: Combo Park Pack", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127417957" + ], + "created_at": "2026-07-10T10:10:35.643461", + "updated_at": "2026-07-10T10:10:35.643461", + "url": "/v1/games/rollercoaster-tycoon-2-combo-park-pack" +} diff --git a/site/public/v1/games/rollercoaster-tycoon-2-time-twister/index.json b/site/public/v1/games/rollercoaster-tycoon-2-time-twister/index.json new file mode 100644 index 000000000000..6920ac5ca642 --- /dev/null +++ b/site/public/v1/games/rollercoaster-tycoon-2-time-twister/index.json @@ -0,0 +1,25 @@ +{ + "id": 121706, + "slug": "rollercoaster-tycoon-2-time-twister", + "name": "RollerCoaster Tycoon 2: Time Twister", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q9312094" + ], + "created_at": "2026-07-10T10:10:35.643461", + "updated_at": "2026-07-10T10:10:35.643461", + "url": "/v1/games/rollercoaster-tycoon-2-time-twister" +} diff --git a/site/public/v1/games/rollercoaster-tycoon-2-triple-thrill-pack/index.json b/site/public/v1/games/rollercoaster-tycoon-2-triple-thrill-pack/index.json new file mode 100644 index 000000000000..82ac0d182bba --- /dev/null +++ b/site/public/v1/games/rollercoaster-tycoon-2-triple-thrill-pack/index.json @@ -0,0 +1,25 @@ +{ + "id": 121707, + "slug": "rollercoaster-tycoon-2-triple-thrill-pack", + "name": "RollerCoaster Tycoon 2: Triple Thrill Pack", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121201675" + ], + "created_at": "2026-07-10T10:10:35.643461", + "updated_at": "2026-07-10T10:10:35.643461", + "url": "/v1/games/rollercoaster-tycoon-2-triple-thrill-pack" +} diff --git a/site/public/v1/games/rollercoaster-tycoon-2-wacky-worlds/index.json b/site/public/v1/games/rollercoaster-tycoon-2-wacky-worlds/index.json new file mode 100644 index 000000000000..30c60f23de6c --- /dev/null +++ b/site/public/v1/games/rollercoaster-tycoon-2-wacky-worlds/index.json @@ -0,0 +1,29 @@ +{ + "id": 121708, + "slug": "rollercoaster-tycoon-2-wacky-worlds", + "name": "RollerCoaster Tycoon 2: Wacky Worlds", + "release_date": "2003-01-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11835185" + ], + "created_at": "2026-07-10T10:10:35.644450", + "updated_at": "2026-07-10T10:10:35.644450", + "url": "/v1/games/rollercoaster-tycoon-2-wacky-worlds" +} diff --git a/site/public/v1/games/rollercoaster-tycoon-3-complete-edition/index.json b/site/public/v1/games/rollercoaster-tycoon-3-complete-edition/index.json new file mode 100644 index 000000000000..5934a6f5274c --- /dev/null +++ b/site/public/v1/games/rollercoaster-tycoon-3-complete-edition/index.json @@ -0,0 +1,27 @@ +{ + "id": 121710, + "slug": "rollercoaster-tycoon-3-complete-edition", + "name": "RollerCoaster Tycoon 3: Complete Edition", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126956530" + ], + "created_at": "2026-07-10T10:10:35.644450", + "updated_at": "2026-07-10T10:10:35.644450", + "url": "/v1/games/rollercoaster-tycoon-3-complete-edition" +} diff --git a/site/public/v1/games/rollercoaster-tycoon-3-soaked/index.json b/site/public/v1/games/rollercoaster-tycoon-3-soaked/index.json new file mode 100644 index 000000000000..ad3a0ab304af --- /dev/null +++ b/site/public/v1/games/rollercoaster-tycoon-3-soaked/index.json @@ -0,0 +1,25 @@ +{ + "id": 121711, + "slug": "rollercoaster-tycoon-3-soaked", + "name": "RollerCoaster Tycoon 3: Soaked!", + "release_date": "2005-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3440436" + ], + "created_at": "2026-07-10T10:10:35.645425", + "updated_at": "2026-07-10T10:10:35.645425", + "url": "/v1/games/rollercoaster-tycoon-3-soaked" +} diff --git a/site/public/v1/games/rollercoaster-tycoon-3-wild/index.json b/site/public/v1/games/rollercoaster-tycoon-3-wild/index.json new file mode 100644 index 000000000000..be98148402d9 --- /dev/null +++ b/site/public/v1/games/rollercoaster-tycoon-3-wild/index.json @@ -0,0 +1,25 @@ +{ + "id": 121712, + "slug": "rollercoaster-tycoon-3-wild", + "name": "RollerCoaster Tycoon 3: Wild!", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3440435" + ], + "created_at": "2026-07-10T10:10:35.645425", + "updated_at": "2026-07-10T10:10:35.645425", + "url": "/v1/games/rollercoaster-tycoon-3-wild" +} diff --git a/site/public/v1/games/rollercoaster-tycoon-adventures-deluxe/index.json b/site/public/v1/games/rollercoaster-tycoon-adventures-deluxe/index.json new file mode 100644 index 000000000000..3c5878399cc5 --- /dev/null +++ b/site/public/v1/games/rollercoaster-tycoon-adventures-deluxe/index.json @@ -0,0 +1,27 @@ +{ + "id": 121716, + "slug": "rollercoaster-tycoon-adventures-deluxe", + "name": "Rollercoaster Tycoon Adventures Deluxe", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "video game" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140472097" + ], + "created_at": "2026-07-10T10:10:35.646509", + "updated_at": "2026-07-10T10:10:35.646509", + "url": "/v1/games/rollercoaster-tycoon-adventures-deluxe" +} diff --git a/site/public/v1/games/rollercoaster-tycoon-corkscrew-follies/index.json b/site/public/v1/games/rollercoaster-tycoon-corkscrew-follies/index.json new file mode 100644 index 000000000000..890b67694cde --- /dev/null +++ b/site/public/v1/games/rollercoaster-tycoon-corkscrew-follies/index.json @@ -0,0 +1,25 @@ +{ + "id": 121719, + "slug": "rollercoaster-tycoon-corkscrew-follies", + "name": "RollerCoaster Tycoon: Corkscrew Follies", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q9312099" + ], + "created_at": "2026-07-10T10:10:35.647480", + "updated_at": "2026-07-10T10:10:35.647480", + "url": "/v1/games/rollercoaster-tycoon-corkscrew-follies" +} diff --git a/site/public/v1/games/rollercoaster-tycoon-gold-edition/index.json b/site/public/v1/games/rollercoaster-tycoon-gold-edition/index.json new file mode 100644 index 000000000000..ea307c085053 --- /dev/null +++ b/site/public/v1/games/rollercoaster-tycoon-gold-edition/index.json @@ -0,0 +1,25 @@ +{ + "id": 121720, + "slug": "rollercoaster-tycoon-gold-edition", + "name": "RollerCoaster Tycoon: Gold Edition", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121201093" + ], + "created_at": "2026-07-10T10:10:35.647480", + "updated_at": "2026-07-10T10:10:35.647480", + "url": "/v1/games/rollercoaster-tycoon-gold-edition" +} diff --git a/site/public/v1/games/rollercoaster-tycoon-loopy-landscapes-q136522335/index.json b/site/public/v1/games/rollercoaster-tycoon-loopy-landscapes-q136522335/index.json new file mode 100644 index 000000000000..918e2d259e07 --- /dev/null +++ b/site/public/v1/games/rollercoaster-tycoon-loopy-landscapes-q136522335/index.json @@ -0,0 +1,33 @@ +{ + "id": 121722, + "slug": "rollercoaster-tycoon-loopy-landscapes-q136522335", + "name": "RollerCoaster Tycoon: Loopy Landscapes", + "release_date": "2000-09-30", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "roguelike", + "business simulation game", + "action role-playing game" + ], + "stores": [], + "developers": [], + "publishers": [ + "Hasbro Interactive" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136522335" + ], + "created_at": "2026-07-10T10:10:35.647480", + "updated_at": "2026-07-10T10:10:35.647480", + "url": "/v1/games/rollercoaster-tycoon-loopy-landscapes-q136522335" +} diff --git a/site/public/v1/games/rollercoaster-tycoon-loopy-landscapes/index.json b/site/public/v1/games/rollercoaster-tycoon-loopy-landscapes/index.json new file mode 100644 index 000000000000..806dccaf5e93 --- /dev/null +++ b/site/public/v1/games/rollercoaster-tycoon-loopy-landscapes/index.json @@ -0,0 +1,29 @@ +{ + "id": 121723, + "slug": "rollercoaster-tycoon-loopy-landscapes", + "name": "RollerCoaster Tycoon: Loopy Landscapes", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11835186" + ], + "created_at": "2026-07-10T10:10:35.648503", + "updated_at": "2026-07-10T10:10:35.648503", + "url": "/v1/games/rollercoaster-tycoon-loopy-landscapes" +} diff --git a/site/public/v1/games/rolling-sky-collection/index.json b/site/public/v1/games/rolling-sky-collection/index.json new file mode 100644 index 000000000000..e72700b6ed37 --- /dev/null +++ b/site/public/v1/games/rolling-sky-collection/index.json @@ -0,0 +1,30 @@ +{ + "id": 121774, + "slug": "rolling-sky-collection", + "name": "Rolling Sky Collection", + "release_date": "2020-07-03", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "music video game", + "platformer" + ], + "stores": [], + "developers": [], + "publishers": [ + "Leoful" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121555599" + ], + "created_at": "2026-07-10T10:10:35.662117", + "updated_at": "2026-07-10T10:10:35.662117", + "url": "/v1/games/rolling-sky-collection" +} diff --git a/site/public/v1/games/romance-detective-2/index.json b/site/public/v1/games/romance-detective-2/index.json new file mode 100644 index 000000000000..6412d540af85 --- /dev/null +++ b/site/public/v1/games/romance-detective-2/index.json @@ -0,0 +1,29 @@ +{ + "id": 121836, + "slug": "romance-detective-2", + "name": "Romance Detective 2", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "visual novel" + ], + "stores": [], + "developers": [ + "NomnomNami" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q92018004" + ], + "created_at": "2026-07-10T10:10:35.680015", + "updated_at": "2026-07-10T10:10:35.680015", + "url": "/v1/games/romance-detective-2" +} diff --git a/site/public/v1/games/rome-total-war-alexander/index.json b/site/public/v1/games/rome-total-war-alexander/index.json new file mode 100644 index 000000000000..a816827e7ea4 --- /dev/null +++ b/site/public/v1/games/rome-total-war-alexander/index.json @@ -0,0 +1,38 @@ +{ + "id": 121904, + "slug": "rome-total-war-alexander", + "name": "Rome: Total War: Alexander", + "release_date": "2006-06-19", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "iOS", + "macOS", + "Microsoft Windows" + ], + "genres": [ + "turn-based strategy video game", + "real-time tactics", + "historical video game" + ], + "stores": [], + "developers": [ + "Feral Interactive", + "Creative Assembly" + ], + "publishers": [ + "Sega" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q864291" + ], + "created_at": "2026-07-10T10:10:35.695996", + "updated_at": "2026-07-10T10:10:35.695996", + "url": "/v1/games/rome-total-war-alexander" +} diff --git a/site/public/v1/games/rome-total-war-barbarian-invasion/index.json b/site/public/v1/games/rome-total-war-barbarian-invasion/index.json new file mode 100644 index 000000000000..a638ecf395c6 --- /dev/null +++ b/site/public/v1/games/rome-total-war-barbarian-invasion/index.json @@ -0,0 +1,36 @@ +{ + "id": 121905, + "slug": "rome-total-war-barbarian-invasion", + "name": "Rome: Total War: Barbarian Invasion", + "release_date": "2005-09-27", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "iOS", + "macOS", + "Microsoft Windows" + ], + "genres": [ + "turn-based strategy video game", + "real-time tactics" + ], + "stores": [], + "developers": [ + "Creative Assembly" + ], + "publishers": [ + "Sega" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q268505" + ], + "created_at": "2026-07-10T10:10:35.695996", + "updated_at": "2026-07-10T10:10:35.695996", + "url": "/v1/games/rome-total-war-barbarian-invasion" +} diff --git a/site/public/v1/games/roommate-complete-box/index.json b/site/public/v1/games/roommate-complete-box/index.json new file mode 100644 index 000000000000..66b913909258 --- /dev/null +++ b/site/public/v1/games/roommate-complete-box/index.json @@ -0,0 +1,25 @@ +{ + "id": 122033, + "slug": "roommate-complete-box", + "name": "Roommate Complete Box", + "release_date": "2000-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1848233" + ], + "created_at": "2026-07-10T10:10:35.730893", + "updated_at": "2026-07-10T10:10:35.730893", + "url": "/v1/games/roommate-complete-box" +} diff --git a/site/public/v1/games/rordoom/index.json b/site/public/v1/games/rordoom/index.json new file mode 100644 index 000000000000..c671fe9e21a0 --- /dev/null +++ b/site/public/v1/games/rordoom/index.json @@ -0,0 +1,25 @@ +{ + "id": 122119, + "slug": "rordoom", + "name": "RORDoom", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124654963" + ], + "created_at": "2026-07-10T10:10:35.755056", + "updated_at": "2026-07-10T10:10:35.755056", + "url": "/v1/games/rordoom" +} diff --git a/site/public/v1/games/rosario-vampire-fvn/index.json b/site/public/v1/games/rosario-vampire-fvn/index.json new file mode 100644 index 000000000000..513af3dc2adb --- /dev/null +++ b/site/public/v1/games/rosario-vampire-fvn/index.json @@ -0,0 +1,34 @@ +{ + "id": 122129, + "slug": "rosario-vampire-fvn", + "name": "Rosario + Vampire FVN", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "visual novel" + ], + "stores": [], + "developers": [ + "Grato Nite" + ], + "publishers": [ + "Grato Nite" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q104776444" + ], + "created_at": "2026-07-10T10:10:35.757089", + "updated_at": "2026-07-10T10:10:35.757089", + "url": "/v1/games/rosario-vampire-fvn" +} diff --git a/site/public/v1/games/rover-mechanic-simulator-perseverance-rover-dlc/index.json b/site/public/v1/games/rover-mechanic-simulator-perseverance-rover-dlc/index.json new file mode 100644 index 000000000000..b803007b6fe3 --- /dev/null +++ b/site/public/v1/games/rover-mechanic-simulator-perseverance-rover-dlc/index.json @@ -0,0 +1,29 @@ +{ + "id": 122312, + "slug": "rover-mechanic-simulator-perseverance-rover-dlc", + "name": "Rover Mechanic Simulator - Perseverance Rover DLC", + "release_date": "2021-02-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Pyramid Games" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108225319" + ], + "created_at": "2026-07-10T10:10:35.821717", + "updated_at": "2026-07-10T10:10:35.821717", + "url": "/v1/games/rover-mechanic-simulator-perseverance-rover-dlc" +} diff --git a/site/public/v1/games/royale-high/index.json b/site/public/v1/games/royale-high/index.json new file mode 100644 index 000000000000..2d6537131f26 --- /dev/null +++ b/site/public/v1/games/royale-high/index.json @@ -0,0 +1,29 @@ +{ + "id": 122411, + "slug": "royale-high", + "name": "Royale High", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "iOS", + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115715586" + ], + "created_at": "2026-07-10T10:10:35.846728", + "updated_at": "2026-07-10T10:10:35.846728", + "url": "/v1/games/royale-high" +} diff --git a/site/public/v1/games/rp2040-doom/index.json b/site/public/v1/games/rp2040-doom/index.json new file mode 100644 index 000000000000..265be8e0ac7d --- /dev/null +++ b/site/public/v1/games/rp2040-doom/index.json @@ -0,0 +1,27 @@ +{ + "id": 122420, + "slug": "rp2040-doom", + "name": "RP2040 Doom", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "RP2040" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124473397" + ], + "created_at": "2026-07-10T10:10:35.848786", + "updated_at": "2026-07-10T10:10:35.848786", + "url": "/v1/games/rp2040-doom" +} diff --git a/site/public/v1/games/rugby-union-team-manager-2017-season-2017-18-update/index.json b/site/public/v1/games/rugby-union-team-manager-2017-season-2017-18-update/index.json new file mode 100644 index 000000000000..709075f356e5 --- /dev/null +++ b/site/public/v1/games/rugby-union-team-manager-2017-season-2017-18-update/index.json @@ -0,0 +1,28 @@ +{ + "id": 122588, + "slug": "rugby-union-team-manager-2017-season-2017-18-update", + "name": "Rugby Union Team Manager 2017: Season 2017/18 Update", + "release_date": "2017-10-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76976304" + ], + "created_at": "2026-07-10T10:10:35.892251", + "updated_at": "2026-07-10T10:10:35.892251", + "url": "/v1/games/rugby-union-team-manager-2017-season-2017-18-update" +} diff --git a/site/public/v1/games/rugrats-retro-rewind-collection/index.json b/site/public/v1/games/rugrats-retro-rewind-collection/index.json new file mode 100644 index 000000000000..aece9a45abb8 --- /dev/null +++ b/site/public/v1/games/rugrats-retro-rewind-collection/index.json @@ -0,0 +1,27 @@ +{ + "id": 122609, + "slug": "rugrats-retro-rewind-collection", + "name": "Rugrats: Retro Rewind Collection", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140150839" + ], + "created_at": "2026-07-10T10:10:35.897255", + "updated_at": "2026-07-10T10:10:35.897255", + "url": "/v1/games/rugrats-retro-rewind-collection" +} diff --git a/site/public/v1/games/runemaster/index.json b/site/public/v1/games/runemaster/index.json new file mode 100644 index 000000000000..4187c41a2024 --- /dev/null +++ b/site/public/v1/games/runemaster/index.json @@ -0,0 +1,34 @@ +{ + "id": 122917, + "slug": "runemaster", + "name": "Runemaster", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "role-playing video game" + ], + "stores": [], + "developers": [ + "Development Studio" + ], + "publishers": [ + "Paradox Interactive" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q15957634" + ], + "created_at": "2026-07-10T10:10:35.978008", + "updated_at": "2026-07-10T10:10:35.978008", + "url": "/v1/games/runemaster" +} diff --git a/site/public/v1/games/runner2-good-friends-character-pack/index.json b/site/public/v1/games/runner2-good-friends-character-pack/index.json new file mode 100644 index 000000000000..156728898816 --- /dev/null +++ b/site/public/v1/games/runner2-good-friends-character-pack/index.json @@ -0,0 +1,28 @@ +{ + "id": 122976, + "slug": "runner2-good-friends-character-pack", + "name": "Runner2 - Good Friends Character Pack", + "release_date": "2013-07-11", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131618651" + ], + "created_at": "2026-07-10T10:10:35.994114", + "updated_at": "2026-07-10T10:10:35.994114", + "url": "/v1/games/runner2-good-friends-character-pack" +} diff --git a/site/public/v1/games/rush-for-berlin-rush-for-the-bomb/index.json b/site/public/v1/games/rush-for-berlin-rush-for-the-bomb/index.json new file mode 100644 index 000000000000..0474f4e6020c --- /dev/null +++ b/site/public/v1/games/rush-for-berlin-rush-for-the-bomb/index.json @@ -0,0 +1,25 @@ +{ + "id": 123058, + "slug": "rush-for-berlin-rush-for-the-bomb", + "name": "Rush for Berlin: Rush for the Bomb", + "release_date": "2007-04-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110160822" + ], + "created_at": "2026-07-10T10:10:36.017540", + "updated_at": "2026-07-10T10:10:36.017540", + "url": "/v1/games/rush-for-berlin-rush-for-the-bomb" +} diff --git a/site/public/v1/games/rush-wars/index.json b/site/public/v1/games/rush-wars/index.json new file mode 100644 index 000000000000..dccbda99ebeb --- /dev/null +++ b/site/public/v1/games/rush-wars/index.json @@ -0,0 +1,35 @@ +{ + "id": 123091, + "slug": "rush-wars", + "name": "Rush Wars", + "release_date": "2019-08-26", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "iOS" + ], + "genres": [ + "strategy video game", + "tower defense", + "massively multiplayer online real-time strategy game" + ], + "stores": [], + "developers": [ + "Supercell" + ], + "publishers": [ + "Supercell" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q66763279" + ], + "created_at": "2026-07-10T10:10:36.026622", + "updated_at": "2026-07-10T10:10:36.026622", + "url": "/v1/games/rush-wars" +} diff --git a/site/public/v1/games/ryse-legendary-edition/index.json b/site/public/v1/games/ryse-legendary-edition/index.json new file mode 100644 index 000000000000..39d094874fea --- /dev/null +++ b/site/public/v1/games/ryse-legendary-edition/index.json @@ -0,0 +1,25 @@ +{ + "id": 123275, + "slug": "ryse-legendary-edition", + "name": "Ryse: Legendary Edition", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q92203939" + ], + "created_at": "2026-07-10T10:10:36.075262", + "updated_at": "2026-07-10T10:10:36.075262", + "url": "/v1/games/ryse-legendary-edition" +} diff --git a/site/public/v1/games/s-t-a-l-k-e-r-legends-of-the-zone-trilogy/index.json b/site/public/v1/games/s-t-a-l-k-e-r-legends-of-the-zone-trilogy/index.json new file mode 100644 index 000000000000..12e60680e5e5 --- /dev/null +++ b/site/public/v1/games/s-t-a-l-k-e-r-legends-of-the-zone-trilogy/index.json @@ -0,0 +1,33 @@ +{ + "id": 123351, + "slug": "s-t-a-l-k-e-r-legends-of-the-zone-trilogy", + "name": "S.T.A.L.K.E.R.: Legends of the Zone Trilogy", + "release_date": "2024-03-06", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 4" + ], + "genres": [ + "first-person shooter" + ], + "stores": [], + "developers": [ + "GSC Game World" + ], + "publishers": [ + "GSC Game World" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124753650" + ], + "created_at": "2026-07-10T10:10:36.095328", + "updated_at": "2026-07-10T10:10:36.095328", + "url": "/v1/games/s-t-a-l-k-e-r-legends-of-the-zone-trilogy" +} diff --git a/site/public/v1/games/saboteur-q7396310/index.json b/site/public/v1/games/saboteur-q7396310/index.json new file mode 100644 index 000000000000..3ad96d6dec64 --- /dev/null +++ b/site/public/v1/games/saboteur-q7396310/index.json @@ -0,0 +1,29 @@ +{ + "id": 123411, + "slug": "saboteur-q7396310", + "name": "Saboteur", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "action game" + ], + "stores": [], + "developers": [], + "publishers": [ + "Eidos Interactive" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7396310" + ], + "created_at": "2026-07-10T10:10:36.111342", + "updated_at": "2026-07-10T10:10:36.111342", + "url": "/v1/games/saboteur-q7396310" +} diff --git a/site/public/v1/games/sacred-2-ice-blood/index.json b/site/public/v1/games/sacred-2-ice-blood/index.json new file mode 100644 index 000000000000..01aabdade437 --- /dev/null +++ b/site/public/v1/games/sacred-2-ice-blood/index.json @@ -0,0 +1,29 @@ +{ + "id": 123437, + "slug": "sacred-2-ice-blood", + "name": "Sacred 2: Ice & Blood", + "release_date": "2009-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "action role-playing game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q9332625" + ], + "created_at": "2026-07-10T10:10:36.118317", + "updated_at": "2026-07-10T10:10:36.118317", + "url": "/v1/games/sacred-2-ice-blood" +} diff --git a/site/public/v1/games/sacred-3-gold-edition/index.json b/site/public/v1/games/sacred-3-gold-edition/index.json new file mode 100644 index 000000000000..be80a1ed8c43 --- /dev/null +++ b/site/public/v1/games/sacred-3-gold-edition/index.json @@ -0,0 +1,25 @@ +{ + "id": 123438, + "slug": "sacred-3-gold-edition", + "name": "Sacred 3: Gold Edition", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107424262" + ], + "created_at": "2026-07-10T10:10:36.118317", + "updated_at": "2026-07-10T10:10:36.118317", + "url": "/v1/games/sacred-3-gold-edition" +} diff --git a/site/public/v1/games/sacred-plus/index.json b/site/public/v1/games/sacred-plus/index.json new file mode 100644 index 000000000000..99237434eac0 --- /dev/null +++ b/site/public/v1/games/sacred-plus/index.json @@ -0,0 +1,25 @@ +{ + "id": 123458, + "slug": "sacred-plus", + "name": "Sacred Plus", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110155953" + ], + "created_at": "2026-07-10T10:10:36.123262", + "updated_at": "2026-07-10T10:10:36.123262", + "url": "/v1/games/sacred-plus" +} diff --git a/site/public/v1/games/sacred-underworld/index.json b/site/public/v1/games/sacred-underworld/index.json new file mode 100644 index 000000000000..2d46f5b3c63a --- /dev/null +++ b/site/public/v1/games/sacred-underworld/index.json @@ -0,0 +1,31 @@ +{ + "id": 123464, + "slug": "sacred-underworld", + "name": "Sacred Underworld", + "release_date": "2005-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "action game" + ], + "stores": [], + "developers": [ + "Ascaron" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3460996" + ], + "created_at": "2026-07-10T10:10:36.125341", + "updated_at": "2026-07-10T10:10:36.125341", + "url": "/v1/games/sacred-underworld" +} diff --git a/site/public/v1/games/sai-q85873373/index.json b/site/public/v1/games/sai-q85873373/index.json new file mode 100644 index 000000000000..86c108fa88bf --- /dev/null +++ b/site/public/v1/games/sai-q85873373/index.json @@ -0,0 +1,25 @@ +{ + "id": 123576, + "slug": "sai-q85873373", + "name": "SAI", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q85873373" + ], + "created_at": "2026-07-10T10:10:36.155329", + "updated_at": "2026-07-10T10:10:36.155329", + "url": "/v1/games/sai-q85873373" +} diff --git a/site/public/v1/games/saints-row-2-corporate-warfare/index.json b/site/public/v1/games/saints-row-2-corporate-warfare/index.json new file mode 100644 index 000000000000..39f5cf0591f3 --- /dev/null +++ b/site/public/v1/games/saints-row-2-corporate-warfare/index.json @@ -0,0 +1,32 @@ +{ + "id": 123677, + "slug": "saints-row-2-corporate-warfare", + "name": "Saints Row 2: Corporate Warfare", + "release_date": "2009-05-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 3" + ], + "genres": [ + "action-adventure game", + "third-person shooter" + ], + "stores": [], + "developers": [], + "publishers": [ + "THQ" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7402435" + ], + "created_at": "2026-07-10T10:10:36.188027", + "updated_at": "2026-07-10T10:10:36.188027", + "url": "/v1/games/saints-row-2-corporate-warfare" +} diff --git a/site/public/v1/games/saints-row-2-ultor-exposed/index.json b/site/public/v1/games/saints-row-2-ultor-exposed/index.json new file mode 100644 index 000000000000..eb37c489924a --- /dev/null +++ b/site/public/v1/games/saints-row-2-ultor-exposed/index.json @@ -0,0 +1,33 @@ +{ + "id": 123679, + "slug": "saints-row-2-ultor-exposed", + "name": "Saints Row 2: Ultor Exposed", + "release_date": "2009-04-23", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 3" + ], + "genres": [ + "action-adventure game", + "third-person shooter", + "nonlinear gameplay" + ], + "stores": [], + "developers": [], + "publishers": [ + "THQ" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7402437" + ], + "created_at": "2026-07-10T10:10:36.188027", + "updated_at": "2026-07-10T10:10:36.188027", + "url": "/v1/games/saints-row-2-ultor-exposed" +} diff --git a/site/public/v1/games/saints-row-criminal-customs-editions/index.json b/site/public/v1/games/saints-row-criminal-customs-editions/index.json new file mode 100644 index 000000000000..9f7a39a28f1f --- /dev/null +++ b/site/public/v1/games/saints-row-criminal-customs-editions/index.json @@ -0,0 +1,36 @@ +{ + "id": 123681, + "slug": "saints-row-criminal-customs-editions", + "name": "Saints Row: Criminal Customs Editions", + "release_date": "2022-08-23", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 5", + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "action-adventure game", + "third-person shooter" + ], + "stores": [], + "developers": [], + "publishers": [ + "Deep Silver", + "THQ Nordic" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112965073" + ], + "created_at": "2026-07-10T10:10:36.188027", + "updated_at": "2026-07-10T10:10:36.188027", + "url": "/v1/games/saints-row-criminal-customs-editions" +} diff --git a/site/public/v1/games/saints-row-drive-by/index.json b/site/public/v1/games/saints-row-drive-by/index.json new file mode 100644 index 000000000000..76d2b37955c9 --- /dev/null +++ b/site/public/v1/games/saints-row-drive-by/index.json @@ -0,0 +1,29 @@ +{ + "id": 123682, + "slug": "saints-row-drive-by", + "name": "Saints Row: Drive-By", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Nintendo 3DS" + ], + "genres": [ + "action-adventure game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63244121" + ], + "created_at": "2026-07-10T10:10:36.189044", + "updated_at": "2026-07-10T10:10:36.189044", + "url": "/v1/games/saints-row-drive-by" +} diff --git a/site/public/v1/games/saints-row-gold-edition/index.json b/site/public/v1/games/saints-row-gold-edition/index.json new file mode 100644 index 000000000000..7c6c924cf0ae --- /dev/null +++ b/site/public/v1/games/saints-row-gold-edition/index.json @@ -0,0 +1,36 @@ +{ + "id": 123684, + "slug": "saints-row-gold-edition", + "name": "Saints Row: Gold Edition", + "release_date": "2022-08-23", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 5", + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "action-adventure game", + "third-person shooter" + ], + "stores": [], + "developers": [], + "publishers": [ + "Deep Silver", + "THQ Nordic" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111662708" + ], + "created_at": "2026-07-10T10:10:36.189044", + "updated_at": "2026-07-10T10:10:36.189044", + "url": "/v1/games/saints-row-gold-edition" +} diff --git a/site/public/v1/games/saints-row-iv-online-pass/index.json b/site/public/v1/games/saints-row-iv-online-pass/index.json new file mode 100644 index 000000000000..00372de0a952 --- /dev/null +++ b/site/public/v1/games/saints-row-iv-online-pass/index.json @@ -0,0 +1,27 @@ +{ + "id": 123686, + "slug": "saints-row-iv-online-pass", + "name": "Saints Row IV Online Pass", + "release_date": "2013-08-20", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 3" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60607921" + ], + "created_at": "2026-07-10T10:10:36.190025", + "updated_at": "2026-07-10T10:10:36.190025", + "url": "/v1/games/saints-row-iv-online-pass" +} diff --git a/site/public/v1/games/saints-row-iv-re-elected/index.json b/site/public/v1/games/saints-row-iv-re-elected/index.json new file mode 100644 index 000000000000..7c1d1a1699a3 --- /dev/null +++ b/site/public/v1/games/saints-row-iv-re-elected/index.json @@ -0,0 +1,33 @@ +{ + "id": 123687, + "slug": "saints-row-iv-re-elected", + "name": "Saints Row IV: Re-Elected", + "release_date": "2015-01-20", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 5", + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "action-adventure game" + ], + "stores": [], + "developers": [], + "publishers": [ + "Deep Silver" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107424264" + ], + "created_at": "2026-07-10T10:10:36.190025", + "updated_at": "2026-07-10T10:10:36.190025", + "url": "/v1/games/saints-row-iv-re-elected" +} diff --git a/site/public/v1/games/saints-row-legacy-edition/index.json b/site/public/v1/games/saints-row-legacy-edition/index.json new file mode 100644 index 000000000000..4d1773aeed90 --- /dev/null +++ b/site/public/v1/games/saints-row-legacy-edition/index.json @@ -0,0 +1,36 @@ +{ + "id": 123689, + "slug": "saints-row-legacy-edition", + "name": "Saints Row: Legacy Edition", + "release_date": "2022-08-23", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 5", + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "action-adventure game", + "third-person shooter" + ], + "stores": [], + "developers": [], + "publishers": [ + "Deep Silver", + "THQ Nordic" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112965388" + ], + "created_at": "2026-07-10T10:10:36.190025", + "updated_at": "2026-07-10T10:10:36.191046", + "url": "/v1/games/saints-row-legacy-edition" +} diff --git a/site/public/v1/games/saints-row-money-shot/index.json b/site/public/v1/games/saints-row-money-shot/index.json new file mode 100644 index 000000000000..b85347cc9482 --- /dev/null +++ b/site/public/v1/games/saints-row-money-shot/index.json @@ -0,0 +1,35 @@ +{ + "id": 123690, + "slug": "saints-row-money-shot", + "name": "Saints Row: Money Shot", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 3", + "Nintendo 3DS" + ], + "genres": [ + "first-person shooter", + "arcade" + ], + "stores": [], + "developers": [ + "THQ" + ], + "publishers": [ + "THQ" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63244000" + ], + "created_at": "2026-07-10T10:10:36.191046", + "updated_at": "2026-07-10T10:10:36.191046", + "url": "/v1/games/saints-row-money-shot" +} diff --git a/site/public/v1/games/saints-row-notorious-edition/index.json b/site/public/v1/games/saints-row-notorious-edition/index.json new file mode 100644 index 000000000000..cbe909c323df --- /dev/null +++ b/site/public/v1/games/saints-row-notorious-edition/index.json @@ -0,0 +1,36 @@ +{ + "id": 123691, + "slug": "saints-row-notorious-edition", + "name": "Saints Row: Notorious Edition", + "release_date": "2022-08-23", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 5", + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "action-adventure game", + "third-person shooter" + ], + "stores": [], + "developers": [], + "publishers": [ + "Deep Silver", + "THQ Nordic" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112965390" + ], + "created_at": "2026-07-10T10:10:36.191046", + "updated_at": "2026-07-10T10:10:36.191046", + "url": "/v1/games/saints-row-notorious-edition" +} diff --git a/site/public/v1/games/saints-row-platinum-edition/index.json b/site/public/v1/games/saints-row-platinum-edition/index.json new file mode 100644 index 000000000000..a318a15c00ce --- /dev/null +++ b/site/public/v1/games/saints-row-platinum-edition/index.json @@ -0,0 +1,36 @@ +{ + "id": 123692, + "slug": "saints-row-platinum-edition", + "name": "Saints Row: Platinum Edition", + "release_date": "2022-08-23", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 5", + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "action-adventure game", + "third-person shooter" + ], + "stores": [], + "developers": [], + "publishers": [ + "Deep Silver", + "THQ Nordic" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111662787" + ], + "created_at": "2026-07-10T10:10:36.191046", + "updated_at": "2026-07-10T10:10:36.191046", + "url": "/v1/games/saints-row-platinum-edition" +} diff --git a/site/public/v1/games/saints-row-q77472508/index.json b/site/public/v1/games/saints-row-q77472508/index.json new file mode 100644 index 000000000000..bcbfaade25f3 --- /dev/null +++ b/site/public/v1/games/saints-row-q77472508/index.json @@ -0,0 +1,34 @@ +{ + "id": 123694, + "slug": "saints-row-q77472508", + "name": "Saints Row", + "release_date": "2021-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 5", + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "action-adventure game" + ], + "stores": [], + "developers": [], + "publishers": [ + "Deep Silver" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q77472508" + ], + "created_at": "2026-07-10T10:10:36.192030", + "updated_at": "2026-07-10T10:10:36.192030", + "url": "/v1/games/saints-row-q77472508" +} diff --git a/site/public/v1/games/saints-row-santo-ileso-pack/index.json b/site/public/v1/games/saints-row-santo-ileso-pack/index.json new file mode 100644 index 000000000000..81ba8aef985e --- /dev/null +++ b/site/public/v1/games/saints-row-santo-ileso-pack/index.json @@ -0,0 +1,36 @@ +{ + "id": 123695, + "slug": "saints-row-santo-ileso-pack", + "name": "Saints Row: Santo Ileso Pack", + "release_date": "2022-08-23", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 5", + "PlayStation 4", + "Xbox Series X and Series S", + "Microsoft Windows" + ], + "genres": [ + "action-adventure game", + "third-person shooter" + ], + "stores": [], + "developers": [], + "publishers": [ + "Deep Silver", + "THQ Nordic" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112965555" + ], + "created_at": "2026-07-10T10:10:36.192030", + "updated_at": "2026-07-10T10:10:36.192030", + "url": "/v1/games/saints-row-santo-ileso-pack" +} diff --git a/site/public/v1/games/saints-row-the-cooler/index.json b/site/public/v1/games/saints-row-the-cooler/index.json new file mode 100644 index 000000000000..67087e07193a --- /dev/null +++ b/site/public/v1/games/saints-row-the-cooler/index.json @@ -0,0 +1,29 @@ +{ + "id": 123696, + "slug": "saints-row-the-cooler", + "name": "Saints Row: The Cooler", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 3" + ], + "genres": [ + "beat 'em up" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63244009" + ], + "created_at": "2026-07-10T10:10:36.192030", + "updated_at": "2026-07-10T10:10:36.192030", + "url": "/v1/games/saints-row-the-cooler" +} diff --git a/site/public/v1/games/saints-row-the-third-online-pass/index.json b/site/public/v1/games/saints-row-the-third-online-pass/index.json new file mode 100644 index 000000000000..7e6f6060263e --- /dev/null +++ b/site/public/v1/games/saints-row-the-third-online-pass/index.json @@ -0,0 +1,27 @@ +{ + "id": 123697, + "slug": "saints-row-the-third-online-pass", + "name": "Saints Row: The Third Online Pass", + "release_date": "2012-11-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 3" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60607894" + ], + "created_at": "2026-07-10T10:10:36.192030", + "updated_at": "2026-07-10T10:10:36.192030", + "url": "/v1/games/saints-row-the-third-online-pass" +} diff --git a/site/public/v1/games/saints-row-the-third-season-pass-dlc-pack/index.json b/site/public/v1/games/saints-row-the-third-season-pass-dlc-pack/index.json new file mode 100644 index 000000000000..c6a23859cfef --- /dev/null +++ b/site/public/v1/games/saints-row-the-third-season-pass-dlc-pack/index.json @@ -0,0 +1,30 @@ +{ + "id": 123699, + "slug": "saints-row-the-third-season-pass-dlc-pack", + "name": "Saints Row: The Third Season Pass DLC Pack", + "release_date": "2011-11-15", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 3", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Deep Silver" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60563802" + ], + "created_at": "2026-07-10T10:10:36.193038", + "updated_at": "2026-07-10T10:10:36.193038", + "url": "/v1/games/saints-row-the-third-season-pass-dlc-pack" +} diff --git a/site/public/v1/games/saints-row-the-third-the-full-package/index.json b/site/public/v1/games/saints-row-the-third-the-full-package/index.json new file mode 100644 index 000000000000..8bc5b5a7cad3 --- /dev/null +++ b/site/public/v1/games/saints-row-the-third-the-full-package/index.json @@ -0,0 +1,28 @@ +{ + "id": 123700, + "slug": "saints-row-the-third-the-full-package", + "name": "Saints Row: The Third - The Full Package", + "release_date": "2012-11-09", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 3", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60607899" + ], + "created_at": "2026-07-10T10:10:36.193038", + "updated_at": "2026-07-10T10:10:36.193038", + "url": "/v1/games/saints-row-the-third-the-full-package" +} diff --git a/site/public/v1/games/saints-row-total-control/index.json b/site/public/v1/games/saints-row-total-control/index.json new file mode 100644 index 000000000000..7d8cdc721d41 --- /dev/null +++ b/site/public/v1/games/saints-row-total-control/index.json @@ -0,0 +1,31 @@ +{ + "id": 123702, + "slug": "saints-row-total-control", + "name": "Saints Row: Total Control", + "release_date": "2011-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "web browser" + ], + "genres": [], + "stores": [], + "developers": [ + "Punch Entertainment" + ], + "publishers": [ + "THQ" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63244116" + ], + "created_at": "2026-07-10T10:10:36.193965", + "updated_at": "2026-07-10T10:10:36.193965", + "url": "/v1/games/saints-row-total-control" +} diff --git a/site/public/v1/games/saints-row-undercover/index.json b/site/public/v1/games/saints-row-undercover/index.json new file mode 100644 index 000000000000..041294e26ada --- /dev/null +++ b/site/public/v1/games/saints-row-undercover/index.json @@ -0,0 +1,34 @@ +{ + "id": 123703, + "slug": "saints-row-undercover", + "name": "Saints Row: Undercover", + "release_date": "2016-01-29", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation Portable" + ], + "genres": [ + "action-adventure game" + ], + "stores": [], + "developers": [ + "Savage Entertainment", + "Mass Media Inc." + ], + "publishers": [ + "THQ" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63241905" + ], + "created_at": "2026-07-10T10:10:36.193965", + "updated_at": "2026-07-10T10:10:36.193965", + "url": "/v1/games/saints-row-undercover" +} diff --git a/site/public/v1/games/sam-max-abe-lincoln-must-die/index.json b/site/public/v1/games/sam-max-abe-lincoln-must-die/index.json new file mode 100644 index 000000000000..52ba7d58ed6a --- /dev/null +++ b/site/public/v1/games/sam-max-abe-lincoln-must-die/index.json @@ -0,0 +1,31 @@ +{ + "id": 123916, + "slug": "sam-max-abe-lincoln-must-die", + "name": "Sam & Max: Abe Lincoln Must Die!", + "release_date": "2007-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "adventure video game" + ], + "stores": [], + "developers": [ + "Telltale Games" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2744439" + ], + "created_at": "2026-07-10T10:10:36.245965", + "updated_at": "2026-07-10T10:10:36.245965", + "url": "/v1/games/sam-max-abe-lincoln-must-die" +} diff --git a/site/public/v1/games/sam-max-beyond-the-alley-of-the-dolls/index.json b/site/public/v1/games/sam-max-beyond-the-alley-of-the-dolls/index.json new file mode 100644 index 000000000000..f11108895798 --- /dev/null +++ b/site/public/v1/games/sam-max-beyond-the-alley-of-the-dolls/index.json @@ -0,0 +1,25 @@ +{ + "id": 123917, + "slug": "sam-max-beyond-the-alley-of-the-dolls", + "name": "Sam & Max: Beyond the Alley of the Dolls", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107424269" + ], + "created_at": "2026-07-10T10:10:36.246974", + "updated_at": "2026-07-10T10:10:36.246974", + "url": "/v1/games/sam-max-beyond-the-alley-of-the-dolls" +} diff --git a/site/public/v1/games/sam-max-chariots-of-the-dogs/index.json b/site/public/v1/games/sam-max-chariots-of-the-dogs/index.json new file mode 100644 index 000000000000..e74d4164a393 --- /dev/null +++ b/site/public/v1/games/sam-max-chariots-of-the-dogs/index.json @@ -0,0 +1,33 @@ +{ + "id": 123921, + "slug": "sam-max-chariots-of-the-dogs", + "name": "Sam & Max: Chariots of the Dogs", + "release_date": "2008-03-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "adventure video game" + ], + "stores": [], + "developers": [ + "Telltale Games" + ], + "publishers": [ + "GameTap" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2957837" + ], + "created_at": "2026-07-10T10:10:36.246974", + "updated_at": "2026-07-10T10:10:36.246974", + "url": "/v1/games/sam-max-chariots-of-the-dogs" +} diff --git a/site/public/v1/games/sam-max-freelance-police/index.json b/site/public/v1/games/sam-max-freelance-police/index.json new file mode 100644 index 000000000000..19dd0416cc28 --- /dev/null +++ b/site/public/v1/games/sam-max-freelance-police/index.json @@ -0,0 +1,31 @@ +{ + "id": 123923, + "slug": "sam-max-freelance-police", + "name": "Sam & Max: Freelance Police", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "adventure video game" + ], + "stores": [], + "developers": [ + "Lucasfilm Games" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3470580" + ], + "created_at": "2026-07-10T10:10:36.248049", + "updated_at": "2026-07-10T10:10:36.248049", + "url": "/v1/games/sam-max-freelance-police" +} diff --git a/site/public/v1/games/sam-max-ice-station-santa/index.json b/site/public/v1/games/sam-max-ice-station-santa/index.json new file mode 100644 index 000000000000..517ff15a2710 --- /dev/null +++ b/site/public/v1/games/sam-max-ice-station-santa/index.json @@ -0,0 +1,35 @@ +{ + "id": 123926, + "slug": "sam-max-ice-station-santa", + "name": "Sam & Max: Ice Station Santa", + "release_date": "2007-11-08", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Wii", + "Microsoft Windows" + ], + "genres": [ + "adventure video game", + "Christmas video game" + ], + "stores": [], + "developers": [ + "Telltale Games" + ], + "publishers": [ + "GameTap" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2297485" + ], + "created_at": "2026-07-10T10:10:36.249074", + "updated_at": "2026-07-10T10:10:36.249074", + "url": "/v1/games/sam-max-ice-station-santa" +} diff --git a/site/public/v1/games/sam-max-moai-better-blues/index.json b/site/public/v1/games/sam-max-moai-better-blues/index.json new file mode 100644 index 000000000000..a8f806597892 --- /dev/null +++ b/site/public/v1/games/sam-max-moai-better-blues/index.json @@ -0,0 +1,33 @@ +{ + "id": 123927, + "slug": "sam-max-moai-better-blues", + "name": "Sam & Max: Moai Better Blues", + "release_date": "2008-01-10", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "adventure video game" + ], + "stores": [], + "developers": [ + "Telltale Games" + ], + "publishers": [ + "GameTap" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3317556" + ], + "created_at": "2026-07-10T10:10:36.249074", + "updated_at": "2026-07-10T10:10:36.249074", + "url": "/v1/games/sam-max-moai-better-blues" +} diff --git a/site/public/v1/games/sam-max-night-of-the-raving-dead/index.json b/site/public/v1/games/sam-max-night-of-the-raving-dead/index.json new file mode 100644 index 000000000000..2e0aaabbe7cc --- /dev/null +++ b/site/public/v1/games/sam-max-night-of-the-raving-dead/index.json @@ -0,0 +1,33 @@ +{ + "id": 123928, + "slug": "sam-max-night-of-the-raving-dead", + "name": "Sam & Max: Night of the Raving Dead", + "release_date": "2008-02-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "adventure video game" + ], + "stores": [], + "developers": [ + "Telltale Games" + ], + "publishers": [ + "GameTap" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3341409" + ], + "created_at": "2026-07-10T10:10:36.249074", + "updated_at": "2026-07-10T10:10:36.249074", + "url": "/v1/games/sam-max-night-of-the-raving-dead" +} diff --git a/site/public/v1/games/sam-max-the-city-that-dares-not-sleep/index.json b/site/public/v1/games/sam-max-the-city-that-dares-not-sleep/index.json new file mode 100644 index 000000000000..e5d1d76c2e5e --- /dev/null +++ b/site/public/v1/games/sam-max-the-city-that-dares-not-sleep/index.json @@ -0,0 +1,25 @@ +{ + "id": 123933, + "slug": "sam-max-the-city-that-dares-not-sleep", + "name": "Sam & Max: The City That Dares Not Sleep", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107424270" + ], + "created_at": "2026-07-10T10:10:36.250062", + "updated_at": "2026-07-10T10:10:36.250062", + "url": "/v1/games/sam-max-the-city-that-dares-not-sleep" +} diff --git a/site/public/v1/games/sam-max-the-tomb-of-sammun-mak/index.json b/site/public/v1/games/sam-max-the-tomb-of-sammun-mak/index.json new file mode 100644 index 000000000000..156e190a15d9 --- /dev/null +++ b/site/public/v1/games/sam-max-the-tomb-of-sammun-mak/index.json @@ -0,0 +1,25 @@ +{ + "id": 123938, + "slug": "sam-max-the-tomb-of-sammun-mak", + "name": "Sam & Max: The Tomb of Sammun-Mak", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107424266" + ], + "created_at": "2026-07-10T10:10:36.251048", + "updated_at": "2026-07-10T10:10:36.251048", + "url": "/v1/games/sam-max-the-tomb-of-sammun-mak" +} diff --git a/site/public/v1/games/sam-max-they-stole-max-s-brain/index.json b/site/public/v1/games/sam-max-they-stole-max-s-brain/index.json new file mode 100644 index 000000000000..525d3c883495 --- /dev/null +++ b/site/public/v1/games/sam-max-they-stole-max-s-brain/index.json @@ -0,0 +1,25 @@ +{ + "id": 123939, + "slug": "sam-max-they-stole-max-s-brain", + "name": "Sam & Max: They Stole Max’s Brain", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107424267" + ], + "created_at": "2026-07-10T10:10:36.252049", + "updated_at": "2026-07-10T10:10:36.252049", + "url": "/v1/games/sam-max-they-stole-max-s-brain" +} diff --git a/site/public/v1/games/sam-s-story/index.json b/site/public/v1/games/sam-s-story/index.json new file mode 100644 index 000000000000..50b7b13df88e --- /dev/null +++ b/site/public/v1/games/sam-s-story/index.json @@ -0,0 +1,28 @@ +{ + "id": 123945, + "slug": "sam-s-story", + "name": "Sam's Story", + "release_date": "2020-02-11", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q85973054" + ], + "created_at": "2026-07-10T10:10:36.253047", + "updated_at": "2026-07-10T10:10:36.253047", + "url": "/v1/games/sam-s-story" +} diff --git a/site/public/v1/games/samorost-3-q113660232/index.json b/site/public/v1/games/samorost-3-q113660232/index.json new file mode 100644 index 000000000000..cfadc3bba8cb --- /dev/null +++ b/site/public/v1/games/samorost-3-q113660232/index.json @@ -0,0 +1,29 @@ +{ + "id": 123988, + "slug": "samorost-3-q113660232", + "name": "Samorost 3+", + "release_date": "2022-07-08", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "iPadOS", + "iOS", + "macOS" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113660232" + ], + "created_at": "2026-07-10T10:10:36.265587", + "updated_at": "2026-07-10T10:10:36.265587", + "url": "/v1/games/samorost-3-q113660232" +} diff --git a/site/public/v1/games/samurai-shodown-anthology/index.json b/site/public/v1/games/samurai-shodown-anthology/index.json new file mode 100644 index 000000000000..1ae6eb4a3566 --- /dev/null +++ b/site/public/v1/games/samurai-shodown-anthology/index.json @@ -0,0 +1,34 @@ +{ + "id": 124071, + "slug": "samurai-shodown-anthology", + "name": "Samurai Shodown Anthology", + "release_date": "2008-07-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation Portable", + "Wii" + ], + "genres": [ + "fighting game" + ], + "stores": [], + "developers": [ + "SNK" + ], + "publishers": [ + "SNK" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3122108" + ], + "created_at": "2026-07-10T10:10:36.286644", + "updated_at": "2026-07-10T10:10:36.286644", + "url": "/v1/games/samurai-shodown-anthology" +} diff --git a/site/public/v1/games/samurai-shodown-neogeo-collection/index.json b/site/public/v1/games/samurai-shodown-neogeo-collection/index.json new file mode 100644 index 000000000000..b7eed08dad61 --- /dev/null +++ b/site/public/v1/games/samurai-shodown-neogeo-collection/index.json @@ -0,0 +1,34 @@ +{ + "id": 124075, + "slug": "samurai-shodown-neogeo-collection", + "name": "Samurai Shodown NeoGeo Collection", + "release_date": "2020-06-11", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows", + "PlayStation 4" + ], + "genres": [ + "fighting game" + ], + "stores": [], + "developers": [ + "Digital Eclipse" + ], + "publishers": [ + "SNK" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q95921242" + ], + "created_at": "2026-07-10T10:10:36.286644", + "updated_at": "2026-07-10T10:10:36.286644", + "url": "/v1/games/samurai-shodown-neogeo-collection" +} diff --git a/site/public/v1/games/samurai-shodown-q60743293/index.json b/site/public/v1/games/samurai-shodown-q60743293/index.json new file mode 100644 index 000000000000..b0184a80bf48 --- /dev/null +++ b/site/public/v1/games/samurai-shodown-q60743293/index.json @@ -0,0 +1,37 @@ +{ + "id": 124077, + "slug": "samurai-shodown-q60743293", + "name": "Samurai Shodown", + "release_date": "2019-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 4", + "arcade video game machine", + "Microsoft Windows" + ], + "genres": [ + "fighting game" + ], + "stores": [], + "developers": [ + "SNK", + "Safari Games" + ], + "publishers": [ + "SNK" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60743293" + ], + "created_at": "2026-07-10T10:10:36.287639", + "updated_at": "2026-07-10T10:10:36.287639", + "url": "/v1/games/samurai-shodown-q60743293" +} diff --git a/site/public/v1/games/samurai-warriors-4-empires/index.json b/site/public/v1/games/samurai-warriors-4-empires/index.json new file mode 100644 index 000000000000..314aa84eeb15 --- /dev/null +++ b/site/public/v1/games/samurai-warriors-4-empires/index.json @@ -0,0 +1,29 @@ +{ + "id": 124106, + "slug": "samurai-warriors-4-empires", + "name": "Samurai Warriors 4: Empires", + "release_date": "2015-09-17", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 4", + "PlayStation Vita", + "PlayStation 3" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q114056772" + ], + "created_at": "2026-07-10T10:10:36.294678", + "updated_at": "2026-07-10T10:10:36.294678", + "url": "/v1/games/samurai-warriors-4-empires" +} diff --git a/site/public/v1/games/san-andreas-multiplayer/index.json b/site/public/v1/games/san-andreas-multiplayer/index.json new file mode 100644 index 000000000000..7e0c17ccff40 --- /dev/null +++ b/site/public/v1/games/san-andreas-multiplayer/index.json @@ -0,0 +1,29 @@ +{ + "id": 124125, + "slug": "san-andreas-multiplayer", + "name": "San Andreas Multiplayer", + "release_date": "2006-05-09", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "third-person shooter" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2995713" + ], + "created_at": "2026-07-10T10:10:36.298653", + "updated_at": "2026-07-10T10:10:36.298653", + "url": "/v1/games/san-andreas-multiplayer" +} diff --git a/site/public/v1/games/sanatorium/index.json b/site/public/v1/games/sanatorium/index.json new file mode 100644 index 000000000000..62a01b43831a --- /dev/null +++ b/site/public/v1/games/sanatorium/index.json @@ -0,0 +1,36 @@ +{ + "id": 124149, + "slug": "sanatorium", + "name": "Sanatorium", + "release_date": "2012-08-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "survival horror" + ], + "stores": [], + "developers": [ + "Wray Burgess", + "Marc Steene" + ], + "publishers": [ + "Marc Steene", + "Wray Burgess" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111084081" + ], + "created_at": "2026-07-10T10:10:36.308587", + "updated_at": "2026-07-10T10:10:36.308587", + "url": "/v1/games/sanatorium" +} diff --git a/site/public/v1/games/sara-s-school-life/index.json b/site/public/v1/games/sara-s-school-life/index.json new file mode 100644 index 000000000000..347be38c378c --- /dev/null +++ b/site/public/v1/games/sara-s-school-life/index.json @@ -0,0 +1,32 @@ +{ + "id": 124402, + "slug": "sara-s-school-life", + "name": "Sara's School Life", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "stealth game", + "life simulation game" + ], + "stores": [], + "developers": [ + "SaraDev" + ], + "publishers": [ + "SaraDev" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q99568733" + ], + "created_at": "2026-07-10T10:10:36.390333", + "updated_at": "2026-07-10T10:10:36.390333", + "url": "/v1/games/sara-s-school-life" +} diff --git a/site/public/v1/games/satebo-s-wordgame/index.json b/site/public/v1/games/satebo-s-wordgame/index.json new file mode 100644 index 000000000000..c3889a185212 --- /dev/null +++ b/site/public/v1/games/satebo-s-wordgame/index.json @@ -0,0 +1,27 @@ +{ + "id": 124468, + "slug": "satebo-s-wordgame", + "name": "Satebo's Wordgame", + "release_date": "2023-07-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Satellaview" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122924861" + ], + "created_at": "2026-07-10T10:10:36.411362", + "updated_at": "2026-07-10T10:10:36.411362", + "url": "/v1/games/satebo-s-wordgame" +} diff --git a/site/public/v1/games/saucy-shot/index.json b/site/public/v1/games/saucy-shot/index.json new file mode 100644 index 000000000000..c1983f728f51 --- /dev/null +++ b/site/public/v1/games/saucy-shot/index.json @@ -0,0 +1,25 @@ +{ + "id": 124523, + "slug": "saucy-shot", + "name": "Saucy Shot", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q128014906" + ], + "created_at": "2026-07-10T10:10:36.427335", + "updated_at": "2026-07-10T10:10:36.427335", + "url": "/v1/games/saucy-shot" +} diff --git a/site/public/v1/games/savage-island-series/index.json b/site/public/v1/games/savage-island-series/index.json new file mode 100644 index 000000000000..43b38fef3f09 --- /dev/null +++ b/site/public/v1/games/savage-island-series/index.json @@ -0,0 +1,27 @@ +{ + "id": 124549, + "slug": "savage-island-series", + "name": "Savage Island Series", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Texas Instruments TI-99/4A" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q67718507" + ], + "created_at": "2026-07-10T10:10:36.437262", + "updated_at": "2026-07-10T10:10:36.437262", + "url": "/v1/games/savage-island-series" +} diff --git a/site/public/v1/games/scalchop-beach/index.json b/site/public/v1/games/scalchop-beach/index.json new file mode 100644 index 000000000000..597dee731f93 --- /dev/null +++ b/site/public/v1/games/scalchop-beach/index.json @@ -0,0 +1,25 @@ +{ + "id": 124762, + "slug": "scalchop-beach", + "name": "Scalchop Beach", + "release_date": "2013-04-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112582103" + ], + "created_at": "2026-07-10T10:10:36.494924", + "updated_at": "2026-07-10T10:10:36.494924", + "url": "/v1/games/scalchop-beach" +} diff --git a/site/public/v1/games/scalebound/index.json b/site/public/v1/games/scalebound/index.json new file mode 100644 index 000000000000..7a7530748034 --- /dev/null +++ b/site/public/v1/games/scalebound/index.json @@ -0,0 +1,27 @@ +{ + "id": 124767, + "slug": "scalebound", + "name": "Scalebound", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Xbox Game Studios" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17264591" + ], + "created_at": "2026-07-10T10:10:36.495925", + "updated_at": "2026-07-10T10:10:36.495925", + "url": "/v1/games/scalebound" +} diff --git a/site/public/v1/games/scenery-disk-12-flight-simulator-ii-jet/index.json b/site/public/v1/games/scenery-disk-12-flight-simulator-ii-jet/index.json new file mode 100644 index 000000000000..c94a607a1cb9 --- /dev/null +++ b/site/public/v1/games/scenery-disk-12-flight-simulator-ii-jet/index.json @@ -0,0 +1,25 @@ +{ + "id": 124942, + "slug": "scenery-disk-12-flight-simulator-ii-jet", + "name": "Scenery Disk 12 (Flight Simulator II & Jet)", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126186405" + ], + "created_at": "2026-07-10T10:10:36.542988", + "updated_at": "2026-07-10T10:10:36.542988", + "url": "/v1/games/scenery-disk-12-flight-simulator-ii-jet" +} diff --git a/site/public/v1/games/scenery-disk-9-flight-simulator-ii-jet/index.json b/site/public/v1/games/scenery-disk-9-flight-simulator-ii-jet/index.json new file mode 100644 index 000000000000..a2035041d440 --- /dev/null +++ b/site/public/v1/games/scenery-disk-9-flight-simulator-ii-jet/index.json @@ -0,0 +1,25 @@ +{ + "id": 124944, + "slug": "scenery-disk-9-flight-simulator-ii-jet", + "name": "Scenery Disk 9 (Flight Simulator II & Jet)", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126186403" + ], + "created_at": "2026-07-10T10:10:36.543998", + "updated_at": "2026-07-10T10:10:36.543998", + "url": "/v1/games/scenery-disk-9-flight-simulator-ii-jet" +} diff --git a/site/public/v1/games/school-shooter-north-american-tour-2012/index.json b/site/public/v1/games/school-shooter-north-american-tour-2012/index.json new file mode 100644 index 000000000000..d826d6d36091 --- /dev/null +++ b/site/public/v1/games/school-shooter-north-american-tour-2012/index.json @@ -0,0 +1,29 @@ +{ + "id": 125035, + "slug": "school-shooter-north-american-tour-2012", + "name": "School Shooter: North American Tour 2012", + "release_date": "2011-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4992871" + ], + "created_at": "2026-07-10T10:10:36.585659", + "updated_at": "2026-07-10T10:10:36.585659", + "url": "/v1/games/school-shooter-north-american-tour-2012" +} diff --git a/site/public/v1/games/science-and-industry/index.json b/site/public/v1/games/science-and-industry/index.json new file mode 100644 index 000000000000..4bd74a5924e5 --- /dev/null +++ b/site/public/v1/games/science-and-industry/index.json @@ -0,0 +1,29 @@ +{ + "id": 125075, + "slug": "science-and-industry", + "name": "Science and Industry", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q766561" + ], + "created_at": "2026-07-10T10:10:36.622716", + "updated_at": "2026-07-10T10:10:36.622716", + "url": "/v1/games/science-and-industry" +} diff --git a/site/public/v1/games/scp-015-demo/index.json b/site/public/v1/games/scp-015-demo/index.json new file mode 100644 index 000000000000..61529b110937 --- /dev/null +++ b/site/public/v1/games/scp-015-demo/index.json @@ -0,0 +1,33 @@ +{ + "id": 125207, + "slug": "scp-015-demo", + "name": "SCP-015 Demo", + "release_date": "2013-06-25", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "supernatural horror game" + ], + "stores": [], + "developers": [ + "AOUProductions" + ], + "publishers": [ + "AOUProductions" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107458617" + ], + "created_at": "2026-07-10T10:10:36.657829", + "updated_at": "2026-07-10T10:10:36.657829", + "url": "/v1/games/scp-015-demo" +} diff --git a/site/public/v1/games/scp-015/index.json b/site/public/v1/games/scp-015/index.json new file mode 100644 index 000000000000..75a1b7c643ba --- /dev/null +++ b/site/public/v1/games/scp-015/index.json @@ -0,0 +1,33 @@ +{ + "id": 125208, + "slug": "scp-015", + "name": "SCP-015", + "release_date": "2016-04-05", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "supernatural horror game" + ], + "stores": [], + "developers": [ + "AOUProductions" + ], + "publishers": [ + "AOUProductions" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107426369" + ], + "created_at": "2026-07-10T10:10:36.657829", + "updated_at": "2026-07-10T10:10:36.657829", + "url": "/v1/games/scp-015" +} diff --git a/site/public/v1/games/scp-610/index.json b/site/public/v1/games/scp-610/index.json new file mode 100644 index 000000000000..518b37ebde85 --- /dev/null +++ b/site/public/v1/games/scp-610/index.json @@ -0,0 +1,35 @@ +{ + "id": 125219, + "slug": "scp-610", + "name": "SCP-610", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "survival horror", + "stealth game", + "horror video game" + ], + "stores": [], + "developers": [ + "BJFowLer" + ], + "publishers": [ + "BJFowLer" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110984204" + ], + "created_at": "2026-07-10T10:10:36.659741", + "updated_at": "2026-07-10T10:10:36.659741", + "url": "/v1/games/scp-610" +} diff --git a/site/public/v1/games/scp-containment-breach-multiplayer-mod/index.json b/site/public/v1/games/scp-containment-breach-multiplayer-mod/index.json new file mode 100644 index 000000000000..4743744b36c4 --- /dev/null +++ b/site/public/v1/games/scp-containment-breach-multiplayer-mod/index.json @@ -0,0 +1,25 @@ +{ + "id": 125233, + "slug": "scp-containment-breach-multiplayer-mod", + "name": "SCP - Containment Breach Multiplayer Mod", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107494068" + ], + "created_at": "2026-07-10T10:10:36.664439", + "updated_at": "2026-07-10T10:10:36.664439", + "url": "/v1/games/scp-containment-breach-multiplayer-mod" +} diff --git a/site/public/v1/games/scp-j-lite/index.json b/site/public/v1/games/scp-j-lite/index.json new file mode 100644 index 000000000000..e0286baf8589 --- /dev/null +++ b/site/public/v1/games/scp-j-lite/index.json @@ -0,0 +1,33 @@ +{ + "id": 125256, + "slug": "scp-j-lite", + "name": "SCP-____-J Lite", + "release_date": "2013-02-08", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "supernatural horror game" + ], + "stores": [], + "developers": [ + "luigi123" + ], + "publishers": [ + "luigi123" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107372216" + ], + "created_at": "2026-07-10T10:10:36.670413", + "updated_at": "2026-07-10T10:10:36.670413", + "url": "/v1/games/scp-j-lite" +} diff --git a/site/public/v1/games/scp-nightmares/index.json b/site/public/v1/games/scp-nightmares/index.json new file mode 100644 index 000000000000..7f397852d468 --- /dev/null +++ b/site/public/v1/games/scp-nightmares/index.json @@ -0,0 +1,34 @@ +{ + "id": 125261, + "slug": "scp-nightmares", + "name": "SCP-Nightmares", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "supernatural horror game" + ], + "stores": [], + "developers": [ + "B&W Studios" + ], + "publishers": [ + "B&W Studios" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110990385" + ], + "created_at": "2026-07-10T10:10:36.671410", + "updated_at": "2026-07-10T10:10:36.671410", + "url": "/v1/games/scp-nightmares" +} diff --git a/site/public/v1/games/scp-unity/index.json b/site/public/v1/games/scp-unity/index.json new file mode 100644 index 000000000000..66ed4cb2606f --- /dev/null +++ b/site/public/v1/games/scp-unity/index.json @@ -0,0 +1,33 @@ +{ + "id": 125285, + "slug": "scp-unity", + "name": "SCP Unity", + "release_date": "2016-10-14", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "supernatural horror game" + ], + "stores": [], + "developers": [ + "Aerie Gaming Studios" + ], + "publishers": [ + "Aerie Gaming Studios" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q59536425" + ], + "created_at": "2026-07-10T10:10:36.678003", + "updated_at": "2026-07-10T10:10:36.678003", + "url": "/v1/games/scp-unity" +} diff --git a/site/public/v1/games/scp-wander/index.json b/site/public/v1/games/scp-wander/index.json new file mode 100644 index 000000000000..247f9bf32b53 --- /dev/null +++ b/site/public/v1/games/scp-wander/index.json @@ -0,0 +1,35 @@ +{ + "id": 125289, + "slug": "scp-wander", + "name": "SCP: Wander", + "release_date": "2013-08-02", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "role-playing video game", + "horror video game" + ], + "stores": [], + "developers": [ + "miroefox" + ], + "publishers": [ + "miroefox" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q65622031" + ], + "created_at": "2026-07-10T10:10:36.678993", + "updated_at": "2026-07-10T10:10:36.678993", + "url": "/v1/games/scp-wander" +} diff --git a/site/public/v1/games/scratches-director-s-cut/index.json b/site/public/v1/games/scratches-director-s-cut/index.json new file mode 100644 index 000000000000..9d98ec896aff --- /dev/null +++ b/site/public/v1/games/scratches-director-s-cut/index.json @@ -0,0 +1,34 @@ +{ + "id": 125385, + "slug": "scratches-director-s-cut", + "name": "Scratches: Director's Cut", + "release_date": "2007-05-23", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "adventure video game" + ], + "stores": [], + "developers": [ + "Nucleosys" + ], + "publishers": [ + "Play Ten Interactive", + "Got Game Entertainment" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110817204" + ], + "created_at": "2026-07-10T10:10:36.705007", + "updated_at": "2026-07-10T10:10:36.705007", + "url": "/v1/games/scratches-director-s-cut" +} diff --git a/site/public/v1/games/sd-gundam-battle-alliance-deluxe-edition/index.json b/site/public/v1/games/sd-gundam-battle-alliance-deluxe-edition/index.json new file mode 100644 index 000000000000..a8a45cc1480a --- /dev/null +++ b/site/public/v1/games/sd-gundam-battle-alliance-deluxe-edition/index.json @@ -0,0 +1,32 @@ +{ + "id": 125516, + "slug": "sd-gundam-battle-alliance-deluxe-edition", + "name": "SD Gundam Battle Alliance Deluxe Edition", + "release_date": "2022-08-25", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Artdink" + ], + "publishers": [ + "Bandai Namco Entertainment" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115973717" + ], + "created_at": "2026-07-10T10:10:36.739013", + "updated_at": "2026-07-10T10:10:36.739013", + "url": "/v1/games/sd-gundam-battle-alliance-deluxe-edition" +} diff --git a/site/public/v1/games/sdl-asylum/index.json b/site/public/v1/games/sdl-asylum/index.json new file mode 100644 index 000000000000..19a6cce13dc2 --- /dev/null +++ b/site/public/v1/games/sdl-asylum/index.json @@ -0,0 +1,25 @@ +{ + "id": 125591, + "slug": "sdl-asylum", + "name": "SDL Asylum", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118367622" + ], + "created_at": "2026-07-10T10:10:36.754080", + "updated_at": "2026-07-10T10:10:36.754080", + "url": "/v1/games/sdl-asylum" +} diff --git a/site/public/v1/games/sdl-sopwith/index.json b/site/public/v1/games/sdl-sopwith/index.json new file mode 100644 index 000000000000..1c4e2743be29 --- /dev/null +++ b/site/public/v1/games/sdl-sopwith/index.json @@ -0,0 +1,25 @@ +{ + "id": 125593, + "slug": "sdl-sopwith", + "name": "SDL Sopwith", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q119067399" + ], + "created_at": "2026-07-10T10:10:36.755071", + "updated_at": "2026-07-10T10:10:36.755071", + "url": "/v1/games/sdl-sopwith" +} diff --git a/site/public/v1/games/sea-of-sorrow/index.json b/site/public/v1/games/sea-of-sorrow/index.json new file mode 100644 index 000000000000..b6a83c6d1b4c --- /dev/null +++ b/site/public/v1/games/sea-of-sorrow/index.json @@ -0,0 +1,27 @@ +{ + "id": 125659, + "slug": "sea-of-sorrow", + "name": "Sea of Sorrow", + "release_date": "2026-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [ + "Team Cherry" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137398334" + ], + "created_at": "2026-07-10T10:10:36.772776", + "updated_at": "2026-07-10T10:10:36.772776", + "url": "/v1/games/sea-of-sorrow" +} diff --git a/site/public/v1/games/sea-story/index.json b/site/public/v1/games/sea-story/index.json new file mode 100644 index 000000000000..bbaa5a48d45f --- /dev/null +++ b/site/public/v1/games/sea-story/index.json @@ -0,0 +1,25 @@ +{ + "id": 125675, + "slug": "sea-story", + "name": "Sea Story", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11263218" + ], + "created_at": "2026-07-10T10:10:36.777773", + "updated_at": "2026-07-10T10:10:36.777773", + "url": "/v1/games/sea-story" +} diff --git a/site/public/v1/games/season-of-infamy/index.json b/site/public/v1/games/season-of-infamy/index.json new file mode 100644 index 000000000000..42fa27c24ace --- /dev/null +++ b/site/public/v1/games/season-of-infamy/index.json @@ -0,0 +1,32 @@ +{ + "id": 125827, + "slug": "season-of-infamy", + "name": "Season of Infamy", + "release_date": "2015-12-22", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Rocksteady Studios" + ], + "publishers": [ + "Warner Bros. Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q54809608" + ], + "created_at": "2026-07-10T10:10:36.816767", + "updated_at": "2026-07-10T10:10:36.816767", + "url": "/v1/games/season-of-infamy" +} diff --git a/site/public/v1/games/secret-garden-q113535713/index.json b/site/public/v1/games/secret-garden-q113535713/index.json new file mode 100644 index 000000000000..279ed0550d6f --- /dev/null +++ b/site/public/v1/games/secret-garden-q113535713/index.json @@ -0,0 +1,27 @@ +{ + "id": 125936, + "slug": "secret-garden-q113535713", + "name": "Secret Garden", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "site-specific art" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113535713" + ], + "created_at": "2026-07-10T10:10:36.846781", + "updated_at": "2026-07-10T10:10:36.846781", + "url": "/v1/games/secret-garden-q113535713" +} diff --git a/site/public/v1/games/secrets-of-light-and-shadow/index.json b/site/public/v1/games/secrets-of-light-and-shadow/index.json new file mode 100644 index 000000000000..905737d41251 --- /dev/null +++ b/site/public/v1/games/secrets-of-light-and-shadow/index.json @@ -0,0 +1,29 @@ +{ + "id": 126024, + "slug": "secrets-of-light-and-shadow", + "name": "Secrets of Light and Shadow", + "release_date": "2022-09-09", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "OverGamez" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116192848" + ], + "created_at": "2026-07-10T10:10:36.869511", + "updated_at": "2026-07-10T10:10:36.869511", + "url": "/v1/games/secrets-of-light-and-shadow" +} diff --git a/site/public/v1/games/seeburg-ray-o-lite/index.json b/site/public/v1/games/seeburg-ray-o-lite/index.json new file mode 100644 index 000000000000..a562521d74f1 --- /dev/null +++ b/site/public/v1/games/seeburg-ray-o-lite/index.json @@ -0,0 +1,27 @@ +{ + "id": 126134, + "slug": "seeburg-ray-o-lite", + "name": "Seeburg Ray-O-Lite", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "hunting video game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3816854" + ], + "created_at": "2026-07-10T10:10:36.918498", + "updated_at": "2026-07-10T10:10:36.918498", + "url": "/v1/games/seeburg-ray-o-lite" +} diff --git a/site/public/v1/games/seeking-asylum-lionheart-demo/index.json b/site/public/v1/games/seeking-asylum-lionheart-demo/index.json new file mode 100644 index 000000000000..5be620be6b91 --- /dev/null +++ b/site/public/v1/games/seeking-asylum-lionheart-demo/index.json @@ -0,0 +1,27 @@ +{ + "id": 126213, + "slug": "seeking-asylum-lionheart-demo", + "name": "Seeking Asylum: LionHeart (DEMO)", + "release_date": "2022-09-22", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122376874" + ], + "created_at": "2026-07-10T10:10:36.942531", + "updated_at": "2026-07-10T10:10:36.942531", + "url": "/v1/games/seeking-asylum-lionheart-demo" +} diff --git a/site/public/v1/games/sega-3d-reprint-archives-3-final-stage/index.json b/site/public/v1/games/sega-3d-reprint-archives-3-final-stage/index.json new file mode 100644 index 000000000000..47967a374a4e --- /dev/null +++ b/site/public/v1/games/sega-3d-reprint-archives-3-final-stage/index.json @@ -0,0 +1,29 @@ +{ + "id": 126238, + "slug": "sega-3d-reprint-archives-3-final-stage", + "name": "Sega 3D Reprint Archives 3: Final Stage", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Nintendo 3DS" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Sega" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28683993" + ], + "created_at": "2026-07-10T10:10:36.968259", + "updated_at": "2026-07-10T10:10:36.968259", + "url": "/v1/games/sega-3d-reprint-archives-3-final-stage" +} diff --git a/site/public/v1/games/sega-3d-reprint-archives/index.json b/site/public/v1/games/sega-3d-reprint-archives/index.json new file mode 100644 index 000000000000..f51f38bcb3f5 --- /dev/null +++ b/site/public/v1/games/sega-3d-reprint-archives/index.json @@ -0,0 +1,29 @@ +{ + "id": 126239, + "slug": "sega-3d-reprint-archives", + "name": "Sega 3D Reprint Archives", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Nintendo 3DS" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Sega" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105192003" + ], + "created_at": "2026-07-10T10:10:36.968259", + "updated_at": "2026-07-10T10:10:36.968259", + "url": "/v1/games/sega-3d-reprint-archives" +} diff --git a/site/public/v1/games/sega-ages-i-love-mickey-mouse/index.json b/site/public/v1/games/sega-ages-i-love-mickey-mouse/index.json new file mode 100644 index 000000000000..972ba590efb8 --- /dev/null +++ b/site/public/v1/games/sega-ages-i-love-mickey-mouse/index.json @@ -0,0 +1,29 @@ +{ + "id": 126242, + "slug": "sega-ages-i-love-mickey-mouse", + "name": "Sega Ages: I Love Mickey Mouse", + "release_date": "2003-08-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [ + "Sega" + ], + "publishers": [ + "Sega" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16267147" + ], + "created_at": "2026-07-10T10:10:36.971249", + "updated_at": "2026-07-10T10:10:36.971249", + "url": "/v1/games/sega-ages-i-love-mickey-mouse" +} diff --git a/site/public/v1/games/sega-ages/index.json b/site/public/v1/games/sega-ages/index.json new file mode 100644 index 000000000000..0aba326bf6e6 --- /dev/null +++ b/site/public/v1/games/sega-ages/index.json @@ -0,0 +1,25 @@ +{ + "id": 126243, + "slug": "sega-ages", + "name": "Sega Ages", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3477710" + ], + "created_at": "2026-07-10T10:10:36.971249", + "updated_at": "2026-07-10T10:10:36.971249", + "url": "/v1/games/sega-ages" +} diff --git a/site/public/v1/games/sega-arcade-gallery/index.json b/site/public/v1/games/sega-arcade-gallery/index.json new file mode 100644 index 000000000000..421719456434 --- /dev/null +++ b/site/public/v1/games/sega-arcade-gallery/index.json @@ -0,0 +1,31 @@ +{ + "id": 126244, + "slug": "sega-arcade-gallery", + "name": "Sega Arcade Gallery", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Game Boy Advance" + ], + "genres": [], + "stores": [], + "developers": [ + "Sega" + ], + "publishers": [ + "Sega" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18928696" + ], + "created_at": "2026-07-10T10:10:36.972239", + "updated_at": "2026-07-10T10:10:36.972239", + "url": "/v1/games/sega-arcade-gallery" +} diff --git a/site/public/v1/games/sega-classics-collection/index.json b/site/public/v1/games/sega-classics-collection/index.json new file mode 100644 index 000000000000..e44ea7035a87 --- /dev/null +++ b/site/public/v1/games/sega-classics-collection/index.json @@ -0,0 +1,27 @@ +{ + "id": 126251, + "slug": "sega-classics-collection", + "name": "Sega Classics Collection", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [ + "Sega" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7446145" + ], + "created_at": "2026-07-10T10:10:36.975231", + "updated_at": "2026-07-10T10:10:36.975231", + "url": "/v1/games/sega-classics-collection" +} diff --git a/site/public/v1/games/sega-genesis-nintendo-classics/index.json b/site/public/v1/games/sega-genesis-nintendo-classics/index.json new file mode 100644 index 000000000000..b100f020d821 --- /dev/null +++ b/site/public/v1/games/sega-genesis-nintendo-classics/index.json @@ -0,0 +1,27 @@ +{ + "id": 126257, + "slug": "sega-genesis-nintendo-classics", + "name": "Sega Genesis – Nintendo Classics", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Nintendo" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109605181" + ], + "created_at": "2026-07-10T10:10:36.977239", + "updated_at": "2026-07-10T10:10:36.977239", + "url": "/v1/games/sega-genesis-nintendo-classics" +} diff --git a/site/public/v1/games/sega-memorial-selection/index.json b/site/public/v1/games/sega-memorial-selection/index.json new file mode 100644 index 000000000000..9cb92dc3b9f9 --- /dev/null +++ b/site/public/v1/games/sega-memorial-selection/index.json @@ -0,0 +1,31 @@ +{ + "id": 126263, + "slug": "sega-memorial-selection", + "name": "Sega Memorial Selection", + "release_date": "1998-10-09", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Sega" + ], + "publishers": [ + "Sega" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126034797" + ], + "created_at": "2026-07-10T10:10:36.978267", + "updated_at": "2026-07-10T10:10:36.978267", + "url": "/v1/games/sega-memorial-selection" +} diff --git a/site/public/v1/games/segasonic-bros/index.json b/site/public/v1/games/segasonic-bros/index.json new file mode 100644 index 000000000000..580bcd174db6 --- /dev/null +++ b/site/public/v1/games/segasonic-bros/index.json @@ -0,0 +1,25 @@ +{ + "id": 126290, + "slug": "segasonic-bros", + "name": "SegaSonic Bros.", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60049454" + ], + "created_at": "2026-07-10T10:10:36.985173", + "updated_at": "2026-07-10T10:10:36.985173", + "url": "/v1/games/segasonic-bros" +} diff --git a/site/public/v1/games/seiken-densetsu-the-emergence-of-excalibur/index.json b/site/public/v1/games/seiken-densetsu-the-emergence-of-excalibur/index.json new file mode 100644 index 000000000000..ec4375f945b9 --- /dev/null +++ b/site/public/v1/games/seiken-densetsu-the-emergence-of-excalibur/index.json @@ -0,0 +1,27 @@ +{ + "id": 126309, + "slug": "seiken-densetsu-the-emergence-of-excalibur", + "name": "Seiken Densetsu: The Emergence of Excalibur", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Famicom Disk System" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105604111" + ], + "created_at": "2026-07-10T10:10:36.989265", + "updated_at": "2026-07-10T10:10:36.989265", + "url": "/v1/games/seiken-densetsu-the-emergence-of-excalibur" +} diff --git a/site/public/v1/games/sengoku-anthology/index.json b/site/public/v1/games/sengoku-anthology/index.json new file mode 100644 index 000000000000..48176d7fd70f --- /dev/null +++ b/site/public/v1/games/sengoku-anthology/index.json @@ -0,0 +1,25 @@ +{ + "id": 126435, + "slug": "sengoku-anthology", + "name": "Sengoku Anthology", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q74126336" + ], + "created_at": "2026-07-10T10:10:37.024061", + "updated_at": "2026-07-10T10:10:37.024061", + "url": "/v1/games/sengoku-anthology" +} diff --git a/site/public/v1/games/serious-sam-3-bfe-gold-edition/index.json b/site/public/v1/games/serious-sam-3-bfe-gold-edition/index.json new file mode 100644 index 000000000000..80a72327fef4 --- /dev/null +++ b/site/public/v1/games/serious-sam-3-bfe-gold-edition/index.json @@ -0,0 +1,35 @@ +{ + "id": 126678, + "slug": "serious-sam-3-bfe-gold-edition", + "name": "Serious Sam 3: BFE Gold Edition", + "release_date": "2017-06-22", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "action-adventure game" + ], + "stores": [], + "developers": [ + "Croteam" + ], + "publishers": [ + "Devolver Digital" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121306976" + ], + "created_at": "2026-07-10T10:10:37.088604", + "updated_at": "2026-07-10T10:10:37.088604", + "url": "/v1/games/serious-sam-3-bfe-gold-edition" +} diff --git a/site/public/v1/games/serious-sam-3-bonus-content-dlc/index.json b/site/public/v1/games/serious-sam-3-bonus-content-dlc/index.json new file mode 100644 index 000000000000..3a28f02a54c6 --- /dev/null +++ b/site/public/v1/games/serious-sam-3-bonus-content-dlc/index.json @@ -0,0 +1,34 @@ +{ + "id": 126680, + "slug": "serious-sam-3-bonus-content-dlc", + "name": "Serious Sam 3 Bonus Content DLC", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "first-person shooter" + ], + "stores": [], + "developers": [ + "Croteam" + ], + "publishers": [ + "Devolver Digital" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q104673277" + ], + "created_at": "2026-07-10T10:10:37.088604", + "updated_at": "2026-07-10T10:10:37.088604", + "url": "/v1/games/serious-sam-3-bonus-content-dlc" +} diff --git a/site/public/v1/games/serious-sam-3-jewel-of-the-nile/index.json b/site/public/v1/games/serious-sam-3-jewel-of-the-nile/index.json new file mode 100644 index 000000000000..f1dfd9aaf682 --- /dev/null +++ b/site/public/v1/games/serious-sam-3-jewel-of-the-nile/index.json @@ -0,0 +1,25 @@ +{ + "id": 126681, + "slug": "serious-sam-3-jewel-of-the-nile", + "name": "Serious Sam 3: Jewel of the Nile", + "release_date": "2012-10-16", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60559707" + ], + "created_at": "2026-07-10T10:10:37.089605", + "updated_at": "2026-07-10T10:10:37.089605", + "url": "/v1/games/serious-sam-3-jewel-of-the-nile" +} diff --git a/site/public/v1/games/serious-sam-collection/index.json b/site/public/v1/games/serious-sam-collection/index.json new file mode 100644 index 000000000000..57cb90a90df0 --- /dev/null +++ b/site/public/v1/games/serious-sam-collection/index.json @@ -0,0 +1,34 @@ +{ + "id": 126686, + "slug": "serious-sam-collection", + "name": "Serious Sam Collection", + "release_date": "2020-11-17", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 4" + ], + "genres": [ + "first-person shooter" + ], + "stores": [], + "developers": [ + "Croteam" + ], + "publishers": [ + "Devolver Digital" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q70912301" + ], + "created_at": "2026-07-10T10:10:37.090613", + "updated_at": "2026-07-10T10:10:37.090613", + "url": "/v1/games/serious-sam-collection" +} diff --git a/site/public/v1/games/serious-sam-complete-pack/index.json b/site/public/v1/games/serious-sam-complete-pack/index.json new file mode 100644 index 000000000000..6af9018b4679 --- /dev/null +++ b/site/public/v1/games/serious-sam-complete-pack/index.json @@ -0,0 +1,38 @@ +{ + "id": 126687, + "slug": "serious-sam-complete-pack", + "name": "Serious Sam Complete Pack", + "release_date": "2012-10-16", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "action-adventure game", + "role-playing video game" + ], + "stores": [], + "developers": [ + "Timelock Studio", + "Croteam" + ], + "publishers": [ + "Croteam", + "Devolver Digital" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121306585" + ], + "created_at": "2026-07-10T10:10:37.090613", + "updated_at": "2026-07-10T10:10:37.090613", + "url": "/v1/games/serious-sam-complete-pack" +} diff --git a/site/public/v1/games/serious-sam-double-d-xxl/index.json b/site/public/v1/games/serious-sam-double-d-xxl/index.json new file mode 100644 index 000000000000..b0b75e8b1a8c --- /dev/null +++ b/site/public/v1/games/serious-sam-double-d-xxl/index.json @@ -0,0 +1,35 @@ +{ + "id": 126688, + "slug": "serious-sam-double-d-xxl", + "name": "Serious Sam Double D XXL", + "release_date": "2013-02-20", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "platformer", + "shoot 'em up", + "arcade" + ], + "stores": [], + "developers": [ + "Mommy's Best Games" + ], + "publishers": [ + "Devolver Digital" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q65948501" + ], + "created_at": "2026-07-10T10:10:37.093530", + "updated_at": "2026-07-10T10:10:37.093530", + "url": "/v1/games/serious-sam-double-d-xxl" +} diff --git a/site/public/v1/games/serious-sam-fusion-2017/index.json b/site/public/v1/games/serious-sam-fusion-2017/index.json new file mode 100644 index 000000000000..cb1b580efe34 --- /dev/null +++ b/site/public/v1/games/serious-sam-fusion-2017/index.json @@ -0,0 +1,35 @@ +{ + "id": 126690, + "slug": "serious-sam-fusion-2017", + "name": "Serious Sam Fusion 2017", + "release_date": "2017-03-20", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "first-person shooter" + ], + "stores": [], + "developers": [ + "Croteam" + ], + "publishers": [ + "Croteam", + "Devolver Digital" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60559650" + ], + "created_at": "2026-07-10T10:10:37.096534", + "updated_at": "2026-07-10T10:10:37.096534", + "url": "/v1/games/serious-sam-fusion-2017" +} diff --git a/site/public/v1/games/serious-sam-gold-edition/index.json b/site/public/v1/games/serious-sam-gold-edition/index.json new file mode 100644 index 000000000000..2dc2f8fd8d58 --- /dev/null +++ b/site/public/v1/games/serious-sam-gold-edition/index.json @@ -0,0 +1,36 @@ +{ + "id": 126691, + "slug": "serious-sam-gold-edition", + "name": "Serious Sam: Gold Edition", + "release_date": "2010-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter" + ], + "stores": [], + "developers": [ + "Alligator Pit", + "Croteam" + ], + "publishers": [ + "Gathering of Developers", + "Croteam", + "Devolver Digital" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4049308" + ], + "created_at": "2026-07-10T10:10:37.098592", + "updated_at": "2026-07-10T10:10:37.098592", + "url": "/v1/games/serious-sam-gold-edition" +} diff --git a/site/public/v1/games/serious-sam-hd-gold-collection/index.json b/site/public/v1/games/serious-sam-hd-gold-collection/index.json new file mode 100644 index 000000000000..b6dfdf868f38 --- /dev/null +++ b/site/public/v1/games/serious-sam-hd-gold-collection/index.json @@ -0,0 +1,36 @@ +{ + "id": 126692, + "slug": "serious-sam-hd-gold-collection", + "name": "Serious Sam HD Gold Collection", + "release_date": "2017-03-21", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "action-adventure game" + ], + "stores": [], + "developers": [ + "Alligator Pit", + "Croteam" + ], + "publishers": [ + "Croteam", + "Devolver Digital" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121306922" + ], + "created_at": "2026-07-10T10:10:37.100532", + "updated_at": "2026-07-10T10:10:37.100532", + "url": "/v1/games/serious-sam-hd-gold-collection" +} diff --git a/site/public/v1/games/serious-sam-hd-q122204580/index.json b/site/public/v1/games/serious-sam-hd-q122204580/index.json new file mode 100644 index 000000000000..ad562d66220e --- /dev/null +++ b/site/public/v1/games/serious-sam-hd-q122204580/index.json @@ -0,0 +1,31 @@ +{ + "id": 126693, + "slug": "serious-sam-hd-q122204580", + "name": "Serious Sam HD", + "release_date": "2011-04-08", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "first-person shooter" + ], + "stores": [], + "developers": [ + "Croteam" + ], + "publishers": [ + "Devolver Digital" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122204580" + ], + "created_at": "2026-07-10T10:10:37.102620", + "updated_at": "2026-07-10T10:10:37.102620", + "url": "/v1/games/serious-sam-hd-q122204580" +} diff --git a/site/public/v1/games/serious-sam-hd-the-second-encounter-legend-of-the-beast/index.json b/site/public/v1/games/serious-sam-hd-the-second-encounter-legend-of-the-beast/index.json new file mode 100644 index 000000000000..6b97d250e8de --- /dev/null +++ b/site/public/v1/games/serious-sam-hd-the-second-encounter-legend-of-the-beast/index.json @@ -0,0 +1,27 @@ +{ + "id": 126695, + "slug": "serious-sam-hd-the-second-encounter-legend-of-the-beast", + "name": "Serious Sam HD: The Second Encounter - Legend of the Beast", + "release_date": "2012-05-15", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60586964" + ], + "created_at": "2026-07-10T10:10:37.107925", + "updated_at": "2026-07-10T10:10:37.107925", + "url": "/v1/games/serious-sam-hd-the-second-encounter-legend-of-the-beast" +} diff --git a/site/public/v1/games/serious-sam-hd-the-second-encounter-serious-8-dlc/index.json b/site/public/v1/games/serious-sam-hd-the-second-encounter-serious-8-dlc/index.json new file mode 100644 index 000000000000..cca473931e02 --- /dev/null +++ b/site/public/v1/games/serious-sam-hd-the-second-encounter-serious-8-dlc/index.json @@ -0,0 +1,31 @@ +{ + "id": 126696, + "slug": "serious-sam-hd-the-second-encounter-serious-8-dlc", + "name": "Serious Sam HD: The Second Encounter - Serious 8 DLC", + "release_date": "2011-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Croteam" + ], + "publishers": [ + "Devolver Digital" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60559708" + ], + "created_at": "2026-07-10T10:10:37.107925", + "updated_at": "2026-07-10T10:10:37.107925", + "url": "/v1/games/serious-sam-hd-the-second-encounter-serious-8-dlc" +} diff --git a/site/public/v1/games/serious-sam-hd/index.json b/site/public/v1/games/serious-sam-hd/index.json new file mode 100644 index 000000000000..209572917721 --- /dev/null +++ b/site/public/v1/games/serious-sam-hd/index.json @@ -0,0 +1,35 @@ +{ + "id": 126698, + "slug": "serious-sam-hd", + "name": "Serious Sam HD", + "release_date": "2009-11-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "first-person shooter" + ], + "stores": [], + "developers": [ + "Croteam" + ], + "publishers": [ + "Devolver Digital", + "Croteam" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120253523" + ], + "created_at": "2026-07-10T10:10:37.107925", + "updated_at": "2026-07-10T10:10:37.107925", + "url": "/v1/games/serious-sam-hd" +} diff --git a/site/public/v1/games/serious-sam-siberian-mayhem/index.json b/site/public/v1/games/serious-sam-siberian-mayhem/index.json new file mode 100644 index 000000000000..78f44b761f87 --- /dev/null +++ b/site/public/v1/games/serious-sam-siberian-mayhem/index.json @@ -0,0 +1,35 @@ +{ + "id": 126702, + "slug": "serious-sam-siberian-mayhem", + "name": "Serious Sam: Siberian Mayhem", + "release_date": "2022-01-25", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S", + "Microsoft Windows" + ], + "genres": [ + "first-person shooter" + ], + "stores": [], + "developers": [ + "Timelock Studio", + "Croteam" + ], + "publishers": [ + "Devolver Digital" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110513677" + ], + "created_at": "2026-07-10T10:10:37.108944", + "updated_at": "2026-07-10T10:10:37.108944", + "url": "/v1/games/serious-sam-siberian-mayhem" +} diff --git a/site/public/v1/games/serious-sam-vr-bundle/index.json b/site/public/v1/games/serious-sam-vr-bundle/index.json new file mode 100644 index 000000000000..342a4ff8e5ab --- /dev/null +++ b/site/public/v1/games/serious-sam-vr-bundle/index.json @@ -0,0 +1,37 @@ +{ + "id": 126708, + "slug": "serious-sam-vr-bundle", + "name": "Serious Sam VR Bundle", + "release_date": "2017-03-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "action-adventure game" + ], + "stores": [], + "developers": [ + "Croteam VR", + "Croteam" + ], + "publishers": [ + "Croteam", + "Devolver Digital", + "Croteam Publishing" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121307029" + ], + "created_at": "2026-07-10T10:10:37.109841", + "updated_at": "2026-07-10T10:10:37.109841", + "url": "/v1/games/serious-sam-vr-bundle" +} diff --git a/site/public/v1/games/serious-sam-vr-the-first-encounter-q121307091/index.json b/site/public/v1/games/serious-sam-vr-the-first-encounter-q121307091/index.json new file mode 100644 index 000000000000..4dd603a8f5f0 --- /dev/null +++ b/site/public/v1/games/serious-sam-vr-the-first-encounter-q121307091/index.json @@ -0,0 +1,37 @@ +{ + "id": 126709, + "slug": "serious-sam-vr-the-first-encounter-q121307091", + "name": "Serious Sam VR: The First Encounter", + "release_date": "2017-03-30", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "action-adventure game" + ], + "stores": [], + "developers": [ + "Croteam VR", + "Croteam" + ], + "publishers": [ + "Croteam", + "Devolver Digital" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121307091" + ], + "created_at": "2026-07-10T10:10:37.109841", + "updated_at": "2026-07-10T10:10:37.109841", + "url": "/v1/games/serious-sam-vr-the-first-encounter-q121307091" +} diff --git a/site/public/v1/games/serious-savings/index.json b/site/public/v1/games/serious-savings/index.json new file mode 100644 index 000000000000..5e3038b6bdd8 --- /dev/null +++ b/site/public/v1/games/serious-savings/index.json @@ -0,0 +1,35 @@ +{ + "id": 126713, + "slug": "serious-savings", + "name": "Serious Savings", + "release_date": "2022-01-11", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "action-adventure game" + ], + "stores": [], + "developers": [ + "Timelock Studio", + "Croteam" + ], + "publishers": [ + "Devolver Digital" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121306860" + ], + "created_at": "2026-07-10T10:10:37.110944", + "updated_at": "2026-07-10T10:10:37.110944", + "url": "/v1/games/serious-savings" +} diff --git a/site/public/v1/games/sex-story-cuckold-life-episode-1/index.json b/site/public/v1/games/sex-story-cuckold-life-episode-1/index.json new file mode 100644 index 000000000000..3a2a451c2be4 --- /dev/null +++ b/site/public/v1/games/sex-story-cuckold-life-episode-1/index.json @@ -0,0 +1,36 @@ +{ + "id": 127059, + "slug": "sex-story-cuckold-life-episode-1", + "name": "Sex Story - Cuckold Life - Episode 1", + "release_date": "2023-08-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "visual novel", + "erotic video game", + "episodic video game" + ], + "stores": [], + "developers": [ + "EroticGamesClub" + ], + "publishers": [ + "EroticGamesClub" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121307164" + ], + "created_at": "2026-07-10T10:10:37.214543", + "updated_at": "2026-07-10T10:10:37.214543", + "url": "/v1/games/sex-story-cuckold-life-episode-1" +} diff --git a/site/public/v1/games/shadow-blade-q111154317/index.json b/site/public/v1/games/shadow-blade-q111154317/index.json new file mode 100644 index 000000000000..32477a9264a6 --- /dev/null +++ b/site/public/v1/games/shadow-blade-q111154317/index.json @@ -0,0 +1,28 @@ +{ + "id": 127281, + "slug": "shadow-blade-q111154317", + "name": "Shadow Blade+", + "release_date": "2022-03-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "iPadOS", + "iOS" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111154317" + ], + "created_at": "2026-07-10T10:10:37.274378", + "updated_at": "2026-07-10T10:10:37.274378", + "url": "/v1/games/shadow-blade-q111154317" +} diff --git a/site/public/v1/games/shadow-gambit-zagan-s-ritual/index.json b/site/public/v1/games/shadow-gambit-zagan-s-ritual/index.json new file mode 100644 index 000000000000..64160e148f85 --- /dev/null +++ b/site/public/v1/games/shadow-gambit-zagan-s-ritual/index.json @@ -0,0 +1,25 @@ +{ + "id": 127332, + "slug": "shadow-gambit-zagan-s-ritual", + "name": "Shadow Gambit: Zagan's Ritual", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140401001" + ], + "created_at": "2026-07-10T10:10:37.287346", + "updated_at": "2026-07-10T10:10:37.287346", + "url": "/v1/games/shadow-gambit-zagan-s-ritual" +} diff --git a/site/public/v1/games/shadow-of-the-eternals/index.json b/site/public/v1/games/shadow-of-the-eternals/index.json new file mode 100644 index 000000000000..778c2134b9ab --- /dev/null +++ b/site/public/v1/games/shadow-of-the-eternals/index.json @@ -0,0 +1,35 @@ +{ + "id": 127398, + "slug": "shadow-of-the-eternals", + "name": "Shadow of the Eternals", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Wii U", + "Microsoft Windows" + ], + "genres": [ + "action-adventure game", + "psychological horror fiction" + ], + "stores": [], + "developers": [ + "Precursor Games" + ], + "publishers": [ + "Precursor Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q98456218" + ], + "created_at": "2026-07-10T10:10:37.305254", + "updated_at": "2026-07-10T10:10:37.305254", + "url": "/v1/games/shadow-of-the-eternals" +} diff --git a/site/public/v1/games/shadow-of-the-tomb-raider-definitive-edition/index.json b/site/public/v1/games/shadow-of-the-tomb-raider-definitive-edition/index.json new file mode 100644 index 000000000000..f14a91cf5f83 --- /dev/null +++ b/site/public/v1/games/shadow-of-the-tomb-raider-definitive-edition/index.json @@ -0,0 +1,25 @@ +{ + "id": 127410, + "slug": "shadow-of-the-tomb-raider-definitive-edition", + "name": "Shadow of the Tomb Raider: Definitive Edition", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105985887" + ], + "created_at": "2026-07-10T10:10:37.311248", + "updated_at": "2026-07-10T10:10:37.311248", + "url": "/v1/games/shadow-of-the-tomb-raider-definitive-edition" +} diff --git a/site/public/v1/games/shadow-warrior-twin-dragon/index.json b/site/public/v1/games/shadow-warrior-twin-dragon/index.json new file mode 100644 index 000000000000..a73413f2f6cd --- /dev/null +++ b/site/public/v1/games/shadow-warrior-twin-dragon/index.json @@ -0,0 +1,25 @@ +{ + "id": 127477, + "slug": "shadow-warrior-twin-dragon", + "name": "Shadow Warrior: Twin Dragon", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122615169" + ], + "created_at": "2026-07-10T10:10:37.330249", + "updated_at": "2026-07-10T10:10:37.330249", + "url": "/v1/games/shadow-warrior-twin-dragon" +} diff --git a/site/public/v1/games/shadow-warrior-wanton-destruction/index.json b/site/public/v1/games/shadow-warrior-wanton-destruction/index.json new file mode 100644 index 000000000000..3d2c039f1022 --- /dev/null +++ b/site/public/v1/games/shadow-warrior-wanton-destruction/index.json @@ -0,0 +1,27 @@ +{ + "id": 127478, + "slug": "shadow-warrior-wanton-destruction", + "name": "Shadow Warrior: Wanton Destruction", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "3D Realms" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122615145" + ], + "created_at": "2026-07-10T10:10:37.331249", + "updated_at": "2026-07-10T10:10:37.331249", + "url": "/v1/games/shadow-warrior-wanton-destruction" +} diff --git a/site/public/v1/games/shadowbane-throne-of-oblivion/index.json b/site/public/v1/games/shadowbane-throne-of-oblivion/index.json new file mode 100644 index 000000000000..b49099ec5d54 --- /dev/null +++ b/site/public/v1/games/shadowbane-throne-of-oblivion/index.json @@ -0,0 +1,25 @@ +{ + "id": 127490, + "slug": "shadowbane-throne-of-oblivion", + "name": "Shadowbane: Throne of Oblivion", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140390644" + ], + "created_at": "2026-07-10T10:10:37.334318", + "updated_at": "2026-07-10T10:10:37.334318", + "url": "/v1/games/shadowbane-throne-of-oblivion" +} diff --git a/site/public/v1/games/shadowgrounds-demo/index.json b/site/public/v1/games/shadowgrounds-demo/index.json new file mode 100644 index 000000000000..dbc56c0c13c8 --- /dev/null +++ b/site/public/v1/games/shadowgrounds-demo/index.json @@ -0,0 +1,34 @@ +{ + "id": 127513, + "slug": "shadowgrounds-demo", + "name": "Shadowgrounds Demo", + "release_date": "2006-05-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "science fiction video game", + "top-down shooter" + ], + "stores": [], + "developers": [ + "Frozenbyte" + ], + "publishers": [ + "Frozenbyte" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122706428" + ], + "created_at": "2026-07-10T10:10:37.340312", + "updated_at": "2026-07-10T10:10:37.340312", + "url": "/v1/games/shadowgrounds-demo" +} diff --git a/site/public/v1/games/shadowrun-dragonfall/index.json b/site/public/v1/games/shadowrun-dragonfall/index.json new file mode 100644 index 000000000000..a29997c669aa --- /dev/null +++ b/site/public/v1/games/shadowrun-dragonfall/index.json @@ -0,0 +1,34 @@ +{ + "id": 127539, + "slug": "shadowrun-dragonfall", + "name": "Shadowrun: Dragonfall", + "release_date": "2014-02-27", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows", + "iOS" + ], + "genres": [ + "role-playing video game", + "cyberpunk video game" + ], + "stores": [], + "developers": [ + "Harebrained Schemes" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22019741" + ], + "created_at": "2026-07-10T10:10:37.346321", + "updated_at": "2026-07-10T10:10:37.346321", + "url": "/v1/games/shadowrun-dragonfall" +} diff --git a/site/public/v1/games/shadows-on-the-vatican-act-1-greed/index.json b/site/public/v1/games/shadows-on-the-vatican-act-1-greed/index.json new file mode 100644 index 000000000000..3069d1502b1e --- /dev/null +++ b/site/public/v1/games/shadows-on-the-vatican-act-1-greed/index.json @@ -0,0 +1,29 @@ +{ + "id": 127604, + "slug": "shadows-on-the-vatican-act-1-greed", + "name": "Shadows on the Vatican - Act 1: Greed", + "release_date": "2014-06-10", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "adventure video game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q98119313" + ], + "created_at": "2026-07-10T10:10:37.362351", + "updated_at": "2026-07-10T10:10:37.362351", + "url": "/v1/games/shadows-on-the-vatican-act-1-greed" +} diff --git a/site/public/v1/games/shadows-on-the-vatican-act-ii-wrath/index.json b/site/public/v1/games/shadows-on-the-vatican-act-ii-wrath/index.json new file mode 100644 index 000000000000..285ca87a8f5d --- /dev/null +++ b/site/public/v1/games/shadows-on-the-vatican-act-ii-wrath/index.json @@ -0,0 +1,29 @@ +{ + "id": 127605, + "slug": "shadows-on-the-vatican-act-ii-wrath", + "name": "Shadows on the Vatican - Act II: Wrath", + "release_date": "2015-10-26", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "adventure video game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q98119331" + ], + "created_at": "2026-07-10T10:10:37.363314", + "updated_at": "2026-07-10T10:10:37.363314", + "url": "/v1/games/shadows-on-the-vatican-act-ii-wrath" +} diff --git a/site/public/v1/games/shady-o-grady-s-rising-star/index.json b/site/public/v1/games/shady-o-grady-s-rising-star/index.json new file mode 100644 index 000000000000..8f5b81131db5 --- /dev/null +++ b/site/public/v1/games/shady-o-grady-s-rising-star/index.json @@ -0,0 +1,25 @@ +{ + "id": 127636, + "slug": "shady-o-grady-s-rising-star", + "name": "Shady O'Grady's Rising Star", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140471361" + ], + "created_at": "2026-07-10T10:10:37.371963", + "updated_at": "2026-07-10T10:10:37.371963", + "url": "/v1/games/shady-o-grady-s-rising-star" +} diff --git a/site/public/v1/games/shake-ii/index.json b/site/public/v1/games/shake-ii/index.json new file mode 100644 index 000000000000..430790a6c715 --- /dev/null +++ b/site/public/v1/games/shake-ii/index.json @@ -0,0 +1,25 @@ +{ + "id": 127645, + "slug": "shake-ii", + "name": "Shake II", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17231795" + ], + "created_at": "2026-07-10T10:10:37.373963", + "updated_at": "2026-07-10T10:10:37.373963", + "url": "/v1/games/shake-ii" +} diff --git a/site/public/v1/games/shake-q11306932/index.json b/site/public/v1/games/shake-q11306932/index.json new file mode 100644 index 000000000000..96067d285169 --- /dev/null +++ b/site/public/v1/games/shake-q11306932/index.json @@ -0,0 +1,25 @@ +{ + "id": 127649, + "slug": "shake-q11306932", + "name": "Shake", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11306932" + ], + "created_at": "2026-07-10T10:10:37.374974", + "updated_at": "2026-07-10T10:10:37.374974", + "url": "/v1/games/shake-q11306932" +} diff --git a/site/public/v1/games/shapez-puzzle-dlc/index.json b/site/public/v1/games/shapez-puzzle-dlc/index.json new file mode 100644 index 000000000000..a4f951b1d5cc --- /dev/null +++ b/site/public/v1/games/shapez-puzzle-dlc/index.json @@ -0,0 +1,30 @@ +{ + "id": 127802, + "slug": "shapez-puzzle-dlc", + "name": "shapez - Puzzle DLC", + "release_date": "2021-06-22", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "puzzle video game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124412881" + ], + "created_at": "2026-07-10T10:10:37.415843", + "updated_at": "2026-07-10T10:10:37.415843", + "url": "/v1/games/shapez-puzzle-dlc" +} diff --git a/site/public/v1/games/shark-attack-pack/index.json b/site/public/v1/games/shark-attack-pack/index.json new file mode 100644 index 000000000000..24a3f6b52e35 --- /dev/null +++ b/site/public/v1/games/shark-attack-pack/index.json @@ -0,0 +1,27 @@ +{ + "id": 127846, + "slug": "shark-attack-pack", + "name": "Shark Attack Pack", + "release_date": "2011-11-15", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60616766" + ], + "created_at": "2026-07-10T10:10:37.426782", + "updated_at": "2026-07-10T10:10:37.426782", + "url": "/v1/games/shark-attack-pack" +} diff --git a/site/public/v1/games/sherlock-holmes-the-devil-s-daughter-redux/index.json b/site/public/v1/games/sherlock-holmes-the-devil-s-daughter-redux/index.json new file mode 100644 index 000000000000..7d124e8fc342 --- /dev/null +++ b/site/public/v1/games/sherlock-holmes-the-devil-s-daughter-redux/index.json @@ -0,0 +1,31 @@ +{ + "id": 128123, + "slug": "sherlock-holmes-the-devil-s-daughter-redux", + "name": "Sherlock Holmes: The Devil’s Daughter Redux", + "release_date": "2022-03-03", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S" + ], + "genres": [], + "stores": [], + "developers": [ + "Frogwares" + ], + "publishers": [ + "Frogwares" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111149361" + ], + "created_at": "2026-07-10T10:10:37.500832", + "updated_at": "2026-07-10T10:10:37.500832", + "url": "/v1/games/sherlock-holmes-the-devil-s-daughter-redux" +} diff --git a/site/public/v1/games/shi-kong-xing-shou/index.json b/site/public/v1/games/shi-kong-xing-shou/index.json new file mode 100644 index 000000000000..b1d99f9bba37 --- /dev/null +++ b/site/public/v1/games/shi-kong-xing-shou/index.json @@ -0,0 +1,31 @@ +{ + "id": 128148, + "slug": "shi-kong-xing-shou", + "name": "Shi Kong Xing Shou", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Game Boy Color" + ], + "genres": [ + "role-playing video game" + ], + "stores": [], + "developers": [ + "Vast Fame" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122382416" + ], + "created_at": "2026-07-10T10:10:37.506843", + "updated_at": "2026-07-10T10:10:37.506843", + "url": "/v1/games/shi-kong-xing-shou" +} diff --git a/site/public/v1/games/shin-yoshimune/index.json b/site/public/v1/games/shin-yoshimune/index.json new file mode 100644 index 000000000000..1859c7ab3231 --- /dev/null +++ b/site/public/v1/games/shin-yoshimune/index.json @@ -0,0 +1,25 @@ +{ + "id": 128291, + "slug": "shin-yoshimune", + "name": "Shin-Yoshimune", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11501004" + ], + "created_at": "2026-07-10T10:10:37.545828", + "updated_at": "2026-07-10T10:10:37.545828", + "url": "/v1/games/shin-yoshimune" +} diff --git a/site/public/v1/games/shinobi-q2327011/index.json b/site/public/v1/games/shinobi-q2327011/index.json new file mode 100644 index 000000000000..a30abf4929b6 --- /dev/null +++ b/site/public/v1/games/shinobi-q2327011/index.json @@ -0,0 +1,32 @@ +{ + "id": 128384, + "slug": "shinobi-q2327011", + "name": "Shinobi", + "release_date": "2002-11-10", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "action game", + "action-adventure game" + ], + "stores": [], + "developers": [ + "Sega Wow" + ], + "publishers": [ + "Sega" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2327011" + ], + "created_at": "2026-07-10T10:10:37.568642", + "updated_at": "2026-07-10T10:10:37.568642", + "url": "/v1/games/shinobi-q2327011" +} diff --git a/site/public/v1/games/shogun-total-war-the-mongol-invasion/index.json b/site/public/v1/games/shogun-total-war-the-mongol-invasion/index.json new file mode 100644 index 000000000000..1e8eace63ee4 --- /dev/null +++ b/site/public/v1/games/shogun-total-war-the-mongol-invasion/index.json @@ -0,0 +1,25 @@ +{ + "id": 128582, + "slug": "shogun-total-war-the-mongol-invasion", + "name": "Shogun: Total War: The Mongol Invasion", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3482437" + ], + "created_at": "2026-07-10T10:10:37.620618", + "updated_at": "2026-07-10T10:10:37.620618", + "url": "/v1/games/shogun-total-war-the-mongol-invasion" +} diff --git a/site/public/v1/games/shogunate/index.json b/site/public/v1/games/shogunate/index.json new file mode 100644 index 000000000000..8d2627b6ead5 --- /dev/null +++ b/site/public/v1/games/shogunate/index.json @@ -0,0 +1,25 @@ +{ + "id": 128587, + "slug": "shogunate", + "name": "Shogunate", + "release_date": "2020-10-10", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127280105" + ], + "created_at": "2026-07-10T10:10:37.621637", + "updated_at": "2026-07-10T10:10:37.621637", + "url": "/v1/games/shogunate" +} diff --git a/site/public/v1/games/shovel-knight-king-of-cards/index.json b/site/public/v1/games/shovel-knight-king-of-cards/index.json new file mode 100644 index 000000000000..806f6463cd65 --- /dev/null +++ b/site/public/v1/games/shovel-knight-king-of-cards/index.json @@ -0,0 +1,34 @@ +{ + "id": 128834, + "slug": "shovel-knight-king-of-cards", + "name": "Shovel Knight: King of Cards", + "release_date": "2019-12-10", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "platformer" + ], + "stores": [], + "developers": [ + "Yacht Club Games" + ], + "publishers": [ + "Yacht Club Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q80947455" + ], + "created_at": "2026-07-10T10:10:37.690466", + "updated_at": "2026-07-10T10:10:37.690466", + "url": "/v1/games/shovel-knight-king-of-cards" +} diff --git a/site/public/v1/games/shrak-for-quake/index.json b/site/public/v1/games/shrak-for-quake/index.json new file mode 100644 index 000000000000..263810226d74 --- /dev/null +++ b/site/public/v1/games/shrak-for-quake/index.json @@ -0,0 +1,25 @@ +{ + "id": 128874, + "slug": "shrak-for-quake", + "name": "Shrak for Quake", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122923436" + ], + "created_at": "2026-07-10T10:10:37.700468", + "updated_at": "2026-07-10T10:10:37.700468", + "url": "/v1/games/shrak-for-quake" +} diff --git a/site/public/v1/games/shredfest/index.json b/site/public/v1/games/shredfest/index.json new file mode 100644 index 000000000000..9f2acb1493a9 --- /dev/null +++ b/site/public/v1/games/shredfest/index.json @@ -0,0 +1,31 @@ +{ + "id": 128889, + "slug": "shredfest", + "name": "Shredfest", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "3DO" + ], + "genres": [], + "stores": [], + "developers": [ + "Electronic Arts" + ], + "publishers": [ + "Electronic Arts" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q114386361" + ], + "created_at": "2026-07-10T10:10:37.704879", + "updated_at": "2026-07-10T10:10:37.704879", + "url": "/v1/games/shredfest" +} diff --git a/site/public/v1/games/shrek-2-team-action/index.json b/site/public/v1/games/shrek-2-team-action/index.json new file mode 100644 index 000000000000..9f227be19140 --- /dev/null +++ b/site/public/v1/games/shrek-2-team-action/index.json @@ -0,0 +1,31 @@ +{ + "id": 128892, + "slug": "shrek-2-team-action", + "name": "Shrek 2: Team Action", + "release_date": "2004-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Luxoflux" + ], + "publishers": [ + "Activision" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4049421" + ], + "created_at": "2026-07-10T10:10:37.705877", + "updated_at": "2026-07-10T10:10:37.705877", + "url": "/v1/games/shrek-2-team-action" +} diff --git a/site/public/v1/games/sid-meier-s-alien-crossfire/index.json b/site/public/v1/games/sid-meier-s-alien-crossfire/index.json new file mode 100644 index 000000000000..35d934b9e5a7 --- /dev/null +++ b/site/public/v1/games/sid-meier-s-alien-crossfire/index.json @@ -0,0 +1,36 @@ +{ + "id": 129084, + "slug": "sid-meier-s-alien-crossfire", + "name": "Sid Meier's Alien Crossfire", + "release_date": "1999-10-20", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Classic Mac OS", + "DOS", + "Microsoft Windows" + ], + "genres": [ + "4X", + "hard science fiction video game" + ], + "stores": [], + "developers": [ + "Firaxis Games" + ], + "publishers": [ + "Electronic Arts" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1979080" + ], + "created_at": "2026-07-10T10:10:37.762280", + "updated_at": "2026-07-10T10:10:37.762280", + "url": "/v1/games/sid-meier-s-alien-crossfire" +} diff --git a/site/public/v1/games/sid-meier-s-civil-war-collection/index.json b/site/public/v1/games/sid-meier-s-civil-war-collection/index.json new file mode 100644 index 000000000000..1010f01e3fad --- /dev/null +++ b/site/public/v1/games/sid-meier-s-civil-war-collection/index.json @@ -0,0 +1,25 @@ +{ + "id": 129087, + "slug": "sid-meier-s-civil-war-collection", + "name": "Sid Meier's Civil War Collection", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131935215" + ], + "created_at": "2026-07-10T10:10:37.762280", + "updated_at": "2026-07-10T10:10:37.762280", + "url": "/v1/games/sid-meier-s-civil-war-collection" +} diff --git a/site/public/v1/games/sid-meier-s-civilization-iii-complete/index.json b/site/public/v1/games/sid-meier-s-civilization-iii-complete/index.json new file mode 100644 index 000000000000..c1d94abaa077 --- /dev/null +++ b/site/public/v1/games/sid-meier-s-civilization-iii-complete/index.json @@ -0,0 +1,25 @@ +{ + "id": 129089, + "slug": "sid-meier-s-civilization-iii-complete", + "name": "Sid Meier's Civilization III Complete", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138847514" + ], + "created_at": "2026-07-10T10:10:37.762280", + "updated_at": "2026-07-10T10:10:37.762280", + "url": "/v1/games/sid-meier-s-civilization-iii-complete" +} diff --git a/site/public/v1/games/sierra-sports-nfl-football-pro-2000/index.json b/site/public/v1/games/sierra-sports-nfl-football-pro-2000/index.json new file mode 100644 index 000000000000..5dfceb992914 --- /dev/null +++ b/site/public/v1/games/sierra-sports-nfl-football-pro-2000/index.json @@ -0,0 +1,25 @@ +{ + "id": 129171, + "slug": "sierra-sports-nfl-football-pro-2000", + "name": "Sierra Sports NFL Football Pro 2000", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q102165249" + ], + "created_at": "2026-07-10T10:10:37.787992", + "updated_at": "2026-07-10T10:10:37.787992", + "url": "/v1/games/sierra-sports-nfl-football-pro-2000" +} diff --git a/site/public/v1/games/sigil/index.json b/site/public/v1/games/sigil/index.json new file mode 100644 index 000000000000..5314c706fc35 --- /dev/null +++ b/site/public/v1/games/sigil/index.json @@ -0,0 +1,35 @@ +{ + "id": 129198, + "slug": "sigil", + "name": "Sigil", + "release_date": "2019-05-31", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Classic Mac OS", + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "first-person shooter" + ], + "stores": [], + "developers": [ + "John Romero" + ], + "publishers": [ + "Romero Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63171171" + ], + "created_at": "2026-07-10T10:10:37.793991", + "updated_at": "2026-07-10T10:10:37.793991", + "url": "/v1/games/sigil" +} diff --git a/site/public/v1/games/silent-hill-2-restless-dreams/index.json b/site/public/v1/games/silent-hill-2-restless-dreams/index.json new file mode 100644 index 000000000000..901b5ca9b353 --- /dev/null +++ b/site/public/v1/games/silent-hill-2-restless-dreams/index.json @@ -0,0 +1,29 @@ +{ + "id": 129297, + "slug": "silent-hill-2-restless-dreams", + "name": "Silent Hill 2: Restless Dreams", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Konami" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q61314193" + ], + "created_at": "2026-07-10T10:10:37.815148", + "updated_at": "2026-07-10T10:10:37.815148", + "url": "/v1/games/silent-hill-2-restless-dreams" +} diff --git a/site/public/v1/games/silent-hill-collection/index.json b/site/public/v1/games/silent-hill-collection/index.json new file mode 100644 index 000000000000..282e7fc8dd11 --- /dev/null +++ b/site/public/v1/games/silent-hill-collection/index.json @@ -0,0 +1,25 @@ +{ + "id": 129303, + "slug": "silent-hill-collection", + "name": "Silent Hill Collection", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10371476" + ], + "created_at": "2026-07-10T10:10:37.816808", + "updated_at": "2026-07-10T10:10:37.816808", + "url": "/v1/games/silent-hill-collection" +} diff --git a/site/public/v1/games/silent-hill-hd-collection/index.json b/site/public/v1/games/silent-hill-hd-collection/index.json new file mode 100644 index 000000000000..d55218286088 --- /dev/null +++ b/site/public/v1/games/silent-hill-hd-collection/index.json @@ -0,0 +1,33 @@ +{ + "id": 129305, + "slug": "silent-hill-hd-collection", + "name": "Silent Hill HD Collection", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 3" + ], + "genres": [ + "survival horror" + ], + "stores": [], + "developers": [ + "Hijinx Studios" + ], + "publishers": [ + "Konami" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6128329" + ], + "created_at": "2026-07-10T10:10:37.816808", + "updated_at": "2026-07-10T10:10:37.816808", + "url": "/v1/games/silent-hill-hd-collection" +} diff --git a/site/public/v1/games/silent-hunter-4-wolves-of-the-pacific-u-boat-missions/index.json b/site/public/v1/games/silent-hunter-4-wolves-of-the-pacific-u-boat-missions/index.json new file mode 100644 index 000000000000..3a677fb2bcd6 --- /dev/null +++ b/site/public/v1/games/silent-hunter-4-wolves-of-the-pacific-u-boat-missions/index.json @@ -0,0 +1,29 @@ +{ + "id": 129320, + "slug": "silent-hunter-4-wolves-of-the-pacific-u-boat-missions", + "name": "Silent Hunter 4: Wolves of the Pacific U-Boat Missions", + "release_date": "2008-02-29", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Ubisoft Romania" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3960496" + ], + "created_at": "2026-07-10T10:10:37.820127", + "updated_at": "2026-07-10T10:10:37.820127", + "url": "/v1/games/silent-hunter-4-wolves-of-the-pacific-u-boat-missions" +} diff --git a/site/public/v1/games/silent-scope-complete/index.json b/site/public/v1/games/silent-scope-complete/index.json new file mode 100644 index 000000000000..12b2e24b2d7e --- /dev/null +++ b/site/public/v1/games/silent-scope-complete/index.json @@ -0,0 +1,25 @@ +{ + "id": 129350, + "slug": "silent-scope-complete", + "name": "Silent Scope Complete", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q55086506" + ], + "created_at": "2026-07-10T10:10:37.827796", + "updated_at": "2026-07-10T10:10:37.827796", + "url": "/v1/games/silent-scope-complete" +} diff --git a/site/public/v1/games/silent-space/index.json b/site/public/v1/games/silent-space/index.json new file mode 100644 index 000000000000..5783862b1414 --- /dev/null +++ b/site/public/v1/games/silent-space/index.json @@ -0,0 +1,29 @@ +{ + "id": 129363, + "slug": "silent-space", + "name": "Silent Space", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "real-time strategy" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4049481" + ], + "created_at": "2026-07-10T10:10:37.830795", + "updated_at": "2026-07-10T10:10:37.830795", + "url": "/v1/games/silent-space" +} diff --git a/site/public/v1/games/silver-box-classics/index.json b/site/public/v1/games/silver-box-classics/index.json new file mode 100644 index 000000000000..5fca0c80c5b5 --- /dev/null +++ b/site/public/v1/games/silver-box-classics/index.json @@ -0,0 +1,31 @@ +{ + "id": 129449, + "slug": "silver-box-classics", + "name": "Silver Box Classics", + "release_date": "2023-03-27", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "adventure video game", + "action game", + "role-playing video game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135027735" + ], + "created_at": "2026-07-10T10:10:37.891532", + "updated_at": "2026-07-10T10:10:37.891532", + "url": "/v1/games/silver-box-classics" +} diff --git a/site/public/v1/games/silver-falls-survive/index.json b/site/public/v1/games/silver-falls-survive/index.json new file mode 100644 index 000000000000..5ea288729e21 --- /dev/null +++ b/site/public/v1/games/silver-falls-survive/index.json @@ -0,0 +1,33 @@ +{ + "id": 129461, + "slug": "silver-falls-survive", + "name": "Silver Falls Survive", + "release_date": "2023-10-25", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation Vita" + ], + "genres": [ + "horror video game" + ], + "stores": [], + "developers": [ + "Sungrand Studios" + ], + "publishers": [ + "Sungrand Studios" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124358433" + ], + "created_at": "2026-07-10T10:10:37.893996", + "updated_at": "2026-07-10T10:10:37.893996", + "url": "/v1/games/silver-falls-survive" +} diff --git a/site/public/v1/games/silver-star-go/index.json b/site/public/v1/games/silver-star-go/index.json new file mode 100644 index 000000000000..cc98d1984f30 --- /dev/null +++ b/site/public/v1/games/silver-star-go/index.json @@ -0,0 +1,27 @@ +{ + "id": 129474, + "slug": "silver-star-go", + "name": "Silver Star Go", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "SilverStarJapan Co., Ltd." + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11650013" + ], + "created_at": "2026-07-10T10:10:37.897995", + "updated_at": "2026-07-10T10:10:37.897995", + "url": "/v1/games/silver-star-go" +} diff --git a/site/public/v1/games/silverfall-earth-awakening/index.json b/site/public/v1/games/silverfall-earth-awakening/index.json new file mode 100644 index 000000000000..1a2e9f5c1284 --- /dev/null +++ b/site/public/v1/games/silverfall-earth-awakening/index.json @@ -0,0 +1,34 @@ +{ + "id": 129489, + "slug": "silverfall-earth-awakening", + "name": "Silverfall: Earth Awakening", + "release_date": "2008-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "role-playing video game" + ], + "stores": [], + "developers": [ + "Monte Cristo" + ], + "publishers": [ + "Akella", + "Monte Cristo" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110817128" + ], + "created_at": "2026-07-10T10:10:37.902041", + "updated_at": "2026-07-10T10:10:37.902041", + "url": "/v1/games/silverfall-earth-awakening" +} diff --git a/site/public/v1/games/sim-city-2000-cd-collection/index.json b/site/public/v1/games/sim-city-2000-cd-collection/index.json new file mode 100644 index 000000000000..2104a3e156c7 --- /dev/null +++ b/site/public/v1/games/sim-city-2000-cd-collection/index.json @@ -0,0 +1,25 @@ +{ + "id": 129507, + "slug": "sim-city-2000-cd-collection", + "name": "Sim City 2000 - CD Collection", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124005868" + ], + "created_at": "2026-07-10T10:10:37.919996", + "updated_at": "2026-07-10T10:10:37.919996", + "url": "/v1/games/sim-city-2000-cd-collection" +} diff --git a/site/public/v1/games/sim-city-2000-urban-renewal-kit/index.json b/site/public/v1/games/sim-city-2000-urban-renewal-kit/index.json new file mode 100644 index 000000000000..ddf2c0c50c43 --- /dev/null +++ b/site/public/v1/games/sim-city-2000-urban-renewal-kit/index.json @@ -0,0 +1,25 @@ +{ + "id": 129508, + "slug": "sim-city-2000-urban-renewal-kit", + "name": "Sim City 2000: Urban Renewal Kit", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124720513" + ], + "created_at": "2026-07-10T10:10:37.919996", + "updated_at": "2026-07-10T10:10:37.919996", + "url": "/v1/games/sim-city-2000-urban-renewal-kit" +} diff --git a/site/public/v1/games/sim-city-architecture-1-future-cities/index.json b/site/public/v1/games/sim-city-architecture-1-future-cities/index.json new file mode 100644 index 000000000000..a59d963dcf70 --- /dev/null +++ b/site/public/v1/games/sim-city-architecture-1-future-cities/index.json @@ -0,0 +1,27 @@ +{ + "id": 129510, + "slug": "sim-city-architecture-1-future-cities", + "name": "Sim City Architecture 1: Future Cities", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [ + "Maxis" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124002338" + ], + "created_at": "2026-07-10T10:10:37.921073", + "updated_at": "2026-07-10T10:10:37.922078", + "url": "/v1/games/sim-city-architecture-1-future-cities" +} diff --git a/site/public/v1/games/sim-city-classic-the-original-city-simulator/index.json b/site/public/v1/games/sim-city-classic-the-original-city-simulator/index.json new file mode 100644 index 000000000000..2a313b870057 --- /dev/null +++ b/site/public/v1/games/sim-city-classic-the-original-city-simulator/index.json @@ -0,0 +1,25 @@ +{ + "id": 129512, + "slug": "sim-city-classic-the-original-city-simulator", + "name": "Sim City Classic: The Original City Simulator", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126186004" + ], + "created_at": "2026-07-10T10:10:37.923092", + "updated_at": "2026-07-10T10:10:37.923092", + "url": "/v1/games/sim-city-classic-the-original-city-simulator" +} diff --git a/site/public/v1/games/sim-city-deluxe/index.json b/site/public/v1/games/sim-city-deluxe/index.json new file mode 100644 index 000000000000..def0f5b8307d --- /dev/null +++ b/site/public/v1/games/sim-city-deluxe/index.json @@ -0,0 +1,25 @@ +{ + "id": 129513, + "slug": "sim-city-deluxe", + "name": "Sim City Deluxe", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124001766" + ], + "created_at": "2026-07-10T10:10:37.924062", + "updated_at": "2026-07-10T10:10:37.924062", + "url": "/v1/games/sim-city-deluxe" +} diff --git a/site/public/v1/games/sim-city-terrain-editor/index.json b/site/public/v1/games/sim-city-terrain-editor/index.json new file mode 100644 index 000000000000..d09e7285ea66 --- /dev/null +++ b/site/public/v1/games/sim-city-terrain-editor/index.json @@ -0,0 +1,25 @@ +{ + "id": 129514, + "slug": "sim-city-terrain-editor", + "name": "Sim City: Terrain Editor", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110990986" + ], + "created_at": "2026-07-10T10:10:37.924062", + "updated_at": "2026-07-10T10:10:37.924062", + "url": "/v1/games/sim-city-terrain-editor" +} diff --git a/site/public/v1/games/simcity-2000-scenarios-volume-i-great-disasters/index.json b/site/public/v1/games/simcity-2000-scenarios-volume-i-great-disasters/index.json new file mode 100644 index 000000000000..e0ab0b0b042b --- /dev/null +++ b/site/public/v1/games/simcity-2000-scenarios-volume-i-great-disasters/index.json @@ -0,0 +1,36 @@ +{ + "id": 129534, + "slug": "simcity-2000-scenarios-volume-i-great-disasters", + "name": "SimCity 2000: Scenarios Volume I: Great Disasters", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Classic Mac OS", + "NEC PC-9800 series", + "DOS", + "Microsoft Windows" + ], + "genres": [ + "city-building game" + ], + "stores": [], + "developers": [ + "Maxis" + ], + "publishers": [ + "Maxis" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110910366" + ], + "created_at": "2026-07-10T10:10:37.929039", + "updated_at": "2026-07-10T10:10:37.930081", + "url": "/v1/games/simcity-2000-scenarios-volume-i-great-disasters" +} diff --git a/site/public/v1/games/simcity-4-deluxe-edition/index.json b/site/public/v1/games/simcity-4-deluxe-edition/index.json new file mode 100644 index 000000000000..3cb60333e847 --- /dev/null +++ b/site/public/v1/games/simcity-4-deluxe-edition/index.json @@ -0,0 +1,25 @@ +{ + "id": 129537, + "slug": "simcity-4-deluxe-edition", + "name": "SimCity 4 Deluxe Edition", + "release_date": "2003-09-22", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124002393" + ], + "created_at": "2026-07-10T10:10:37.930081", + "updated_at": "2026-07-10T10:10:37.930081", + "url": "/v1/games/simcity-4-deluxe-edition" +} diff --git a/site/public/v1/games/simcity-4-rush-hour/index.json b/site/public/v1/games/simcity-4-rush-hour/index.json new file mode 100644 index 000000000000..2da60eb18a20 --- /dev/null +++ b/site/public/v1/games/simcity-4-rush-hour/index.json @@ -0,0 +1,34 @@ +{ + "id": 129538, + "slug": "simcity-4-rush-hour", + "name": "SimCity 4: Rush Hour", + "release_date": "2003-09-22", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "city-building game" + ], + "stores": [], + "developers": [ + "Maxis" + ], + "publishers": [ + "Electronic Arts" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q951915" + ], + "created_at": "2026-07-10T10:10:37.930081", + "updated_at": "2026-07-10T10:10:37.930081", + "url": "/v1/games/simcity-4-rush-hour" +} diff --git a/site/public/v1/games/simcity-cities-of-tomorrow/index.json b/site/public/v1/games/simcity-cities-of-tomorrow/index.json new file mode 100644 index 000000000000..e730c963e969 --- /dev/null +++ b/site/public/v1/games/simcity-cities-of-tomorrow/index.json @@ -0,0 +1,27 @@ +{ + "id": 129542, + "slug": "simcity-cities-of-tomorrow", + "name": "SimCity: Cities Of Tomorrow", + "release_date": "2013-11-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108028619" + ], + "created_at": "2026-07-10T10:10:37.931062", + "updated_at": "2026-07-10T10:10:37.931062", + "url": "/v1/games/simcity-cities-of-tomorrow" +} diff --git a/site/public/v1/games/simcity-classic/index.json b/site/public/v1/games/simcity-classic/index.json new file mode 100644 index 000000000000..00b8e8234271 --- /dev/null +++ b/site/public/v1/games/simcity-classic/index.json @@ -0,0 +1,25 @@ +{ + "id": 129543, + "slug": "simcity-classic", + "name": "SimCity Classic", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126902335" + ], + "created_at": "2026-07-10T10:10:37.932052", + "updated_at": "2026-07-10T10:10:37.932052", + "url": "/v1/games/simcity-classic" +} diff --git a/site/public/v1/games/simcity-de-luxe/index.json b/site/public/v1/games/simcity-de-luxe/index.json new file mode 100644 index 000000000000..b4f346f729d3 --- /dev/null +++ b/site/public/v1/games/simcity-de-luxe/index.json @@ -0,0 +1,25 @@ +{ + "id": 129545, + "slug": "simcity-de-luxe", + "name": "SimCity De Luxe", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126870480" + ], + "created_at": "2026-07-10T10:10:37.932052", + "updated_at": "2026-07-10T10:10:37.932052", + "url": "/v1/games/simcity-de-luxe" +} diff --git a/site/public/v1/games/simcity-graphics-set-2-future-cities/index.json b/site/public/v1/games/simcity-graphics-set-2-future-cities/index.json new file mode 100644 index 000000000000..babf93bce326 --- /dev/null +++ b/site/public/v1/games/simcity-graphics-set-2-future-cities/index.json @@ -0,0 +1,27 @@ +{ + "id": 129550, + "slug": "simcity-graphics-set-2-future-cities", + "name": "SimCity Graphics Set 2: Future Cities", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Commodore Amiga" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126870485" + ], + "created_at": "2026-07-10T10:10:37.934119", + "updated_at": "2026-07-10T10:10:37.934119", + "url": "/v1/games/simcity-graphics-set-2-future-cities" +} diff --git a/site/public/v1/games/simcity-societies-destinations/index.json b/site/public/v1/games/simcity-societies-destinations/index.json new file mode 100644 index 000000000000..d24431d74610 --- /dev/null +++ b/site/public/v1/games/simcity-societies-destinations/index.json @@ -0,0 +1,33 @@ +{ + "id": 129553, + "slug": "simcity-societies-destinations", + "name": "SimCity Societies: Destinations", + "release_date": "2008-06-23", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "city-building game" + ], + "stores": [], + "developers": [ + "Tilted Mill Entertainment" + ], + "publishers": [ + "Electronic Arts" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q660550" + ], + "created_at": "2026-07-10T10:10:37.934119", + "updated_at": "2026-07-10T10:10:37.934119", + "url": "/v1/games/simcity-societies-destinations" +} diff --git a/site/public/v1/games/simmars/index.json b/site/public/v1/games/simmars/index.json new file mode 100644 index 000000000000..9f50297d69a3 --- /dev/null +++ b/site/public/v1/games/simmars/index.json @@ -0,0 +1,31 @@ +{ + "id": 129573, + "slug": "simmars", + "name": "SimMars", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "city-building game" + ], + "stores": [], + "developers": [ + "Maxis" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2718402" + ], + "created_at": "2026-07-10T10:10:37.939182", + "updated_at": "2026-07-10T10:10:37.939182", + "url": "/v1/games/simmars" +} diff --git a/site/public/v1/games/simsville/index.json b/site/public/v1/games/simsville/index.json new file mode 100644 index 000000000000..65746a433b52 --- /dev/null +++ b/site/public/v1/games/simsville/index.json @@ -0,0 +1,33 @@ +{ + "id": 129708, + "slug": "simsville", + "name": "SimsVille", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ], + "stores": [], + "developers": [ + "Maxis" + ], + "publishers": [ + "Electronic Arts" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1994996" + ], + "created_at": "2026-07-10T10:10:37.975930", + "updated_at": "2026-07-10T10:10:37.975930", + "url": "/v1/games/simsville" +} diff --git a/site/public/v1/games/simulators-of-our-life/index.json b/site/public/v1/games/simulators-of-our-life/index.json new file mode 100644 index 000000000000..62618a3c71ab --- /dev/null +++ b/site/public/v1/games/simulators-of-our-life/index.json @@ -0,0 +1,31 @@ +{ + "id": 129734, + "slug": "simulators-of-our-life", + "name": "Simulators of our life", + "release_date": "2019-10-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [], + "publishers": [ + "MoyBatya" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121133168" + ], + "created_at": "2026-07-10T10:10:37.982939", + "updated_at": "2026-07-10T10:10:37.982939", + "url": "/v1/games/simulators-of-our-life" +} diff --git a/site/public/v1/games/sin-episodes-emergence-german/index.json b/site/public/v1/games/sin-episodes-emergence-german/index.json new file mode 100644 index 000000000000..a750c05fb870 --- /dev/null +++ b/site/public/v1/games/sin-episodes-emergence-german/index.json @@ -0,0 +1,33 @@ +{ + "id": 129755, + "slug": "sin-episodes-emergence-german", + "name": "SiN Episodes: Emergence German", + "release_date": "2006-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter" + ], + "stores": [], + "developers": [ + "Ritual Entertainment" + ], + "publishers": [ + "Ritual Entertainment" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122704968" + ], + "created_at": "2026-07-10T10:10:37.988939", + "updated_at": "2026-07-10T10:10:37.988939", + "url": "/v1/games/sin-episodes-emergence-german" +} diff --git a/site/public/v1/games/sin-gold/index.json b/site/public/v1/games/sin-gold/index.json new file mode 100644 index 000000000000..624ac64693c9 --- /dev/null +++ b/site/public/v1/games/sin-gold/index.json @@ -0,0 +1,27 @@ +{ + "id": 129757, + "slug": "sin-gold", + "name": "SiN Gold", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Classic Mac OS" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q133165501" + ], + "created_at": "2026-07-10T10:10:37.988939", + "updated_at": "2026-07-10T10:10:37.988939", + "url": "/v1/games/sin-gold" +} diff --git a/site/public/v1/games/sin-wages-of-sin/index.json b/site/public/v1/games/sin-wages-of-sin/index.json new file mode 100644 index 000000000000..72be7ecd5055 --- /dev/null +++ b/site/public/v1/games/sin-wages-of-sin/index.json @@ -0,0 +1,35 @@ +{ + "id": 129765, + "slug": "sin-wages-of-sin", + "name": "SiN: Wages of Sin", + "release_date": "1999-02-26", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Mac operating system", + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "biopunk" + ], + "stores": [], + "developers": [ + "2015, Inc." + ], + "publishers": [ + "Activision" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4049429" + ], + "created_at": "2026-07-10T10:10:37.990934", + "updated_at": "2026-07-10T10:10:37.990934", + "url": "/v1/games/sin-wages-of-sin" +} diff --git a/site/public/v1/games/sins-of-a-solar-empire-diplomacy/index.json b/site/public/v1/games/sins-of-a-solar-empire-diplomacy/index.json new file mode 100644 index 000000000000..63ddde1bd0d6 --- /dev/null +++ b/site/public/v1/games/sins-of-a-solar-empire-diplomacy/index.json @@ -0,0 +1,25 @@ +{ + "id": 129910, + "slug": "sins-of-a-solar-empire-diplomacy", + "name": "Sins of a Solar Empire: Diplomacy", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110156008" + ], + "created_at": "2026-07-10T10:10:38.035856", + "updated_at": "2026-07-10T10:10:38.035856", + "url": "/v1/games/sins-of-a-solar-empire-diplomacy" +} diff --git a/site/public/v1/games/sins-of-a-solar-empire-entrenchment/index.json b/site/public/v1/games/sins-of-a-solar-empire-entrenchment/index.json new file mode 100644 index 000000000000..6223773eaf04 --- /dev/null +++ b/site/public/v1/games/sins-of-a-solar-empire-entrenchment/index.json @@ -0,0 +1,25 @@ +{ + "id": 129911, + "slug": "sins-of-a-solar-empire-entrenchment", + "name": "Sins of a Solar Empire: Entrenchment", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110155972" + ], + "created_at": "2026-07-10T10:10:38.036859", + "updated_at": "2026-07-10T10:10:38.036859", + "url": "/v1/games/sins-of-a-solar-empire-entrenchment" +} diff --git a/site/public/v1/games/sister-sonic/index.json b/site/public/v1/games/sister-sonic/index.json new file mode 100644 index 000000000000..091c2a2f3c08 --- /dev/null +++ b/site/public/v1/games/sister-sonic/index.json @@ -0,0 +1,32 @@ +{ + "id": 130007, + "slug": "sister-sonic", + "name": "Sister Sonic", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "role-playing video game" + ], + "stores": [], + "developers": [ + "Nihon Falcom", + "Sonic Team" + ], + "publishers": [ + "Sega" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17265321" + ], + "created_at": "2026-07-10T10:10:38.061796", + "updated_at": "2026-07-10T10:10:38.061796", + "url": "/v1/games/sister-sonic" +} diff --git a/site/public/v1/games/sisyphus-simulator/index.json b/site/public/v1/games/sisyphus-simulator/index.json new file mode 100644 index 000000000000..9b1695ab4646 --- /dev/null +++ b/site/public/v1/games/sisyphus-simulator/index.json @@ -0,0 +1,27 @@ +{ + "id": 130030, + "slug": "sisyphus-simulator", + "name": "Sisyphus Simulator", + "release_date": "2023-10-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "clicker game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126958213" + ], + "created_at": "2026-07-10T10:10:38.069105", + "updated_at": "2026-07-10T10:10:38.069105", + "url": "/v1/games/sisyphus-simulator" +} diff --git a/site/public/v1/games/six-eight-two/index.json b/site/public/v1/games/six-eight-two/index.json new file mode 100644 index 000000000000..d09cdfef8827 --- /dev/null +++ b/site/public/v1/games/six-eight-two/index.json @@ -0,0 +1,34 @@ +{ + "id": 130060, + "slug": "six-eight-two", + "name": "Six-Eight-Two", + "release_date": "2012-07-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "horror video game" + ], + "stores": [], + "developers": [ + "Divinity Studios" + ], + "publishers": [ + "Divinity Studios" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q61755646" + ], + "created_at": "2026-07-10T10:10:38.076024", + "updated_at": "2026-07-10T10:10:38.076024", + "url": "/v1/games/six-eight-two" +} diff --git a/site/public/v1/games/skill-treasury/index.json b/site/public/v1/games/skill-treasury/index.json new file mode 100644 index 000000000000..8fd7e24648c0 --- /dev/null +++ b/site/public/v1/games/skill-treasury/index.json @@ -0,0 +1,25 @@ +{ + "id": 130348, + "slug": "skill-treasury", + "name": "Skill Treasury", + "release_date": "2013-03-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112582107" + ], + "created_at": "2026-07-10T10:10:38.153107", + "updated_at": "2026-07-10T10:10:38.153107", + "url": "/v1/games/skill-treasury" +} diff --git a/site/public/v1/games/skip-barber-racing/index.json b/site/public/v1/games/skip-barber-racing/index.json new file mode 100644 index 000000000000..21b82ea61e8b --- /dev/null +++ b/site/public/v1/games/skip-barber-racing/index.json @@ -0,0 +1,27 @@ +{ + "id": 130375, + "slug": "skip-barber-racing", + "name": "Skip Barber Racing", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111432816" + ], + "created_at": "2026-07-10T10:10:38.160175", + "updated_at": "2026-07-10T10:10:38.160175", + "url": "/v1/games/skip-barber-racing" +} diff --git a/site/public/v1/games/skullgirls-2nd-encore/index.json b/site/public/v1/games/skullgirls-2nd-encore/index.json new file mode 100644 index 000000000000..5eb12d5a6168 --- /dev/null +++ b/site/public/v1/games/skullgirls-2nd-encore/index.json @@ -0,0 +1,44 @@ +{ + "id": 130464, + "slug": "skullgirls-2nd-encore", + "name": "Skullgirls: 2nd Encore", + "release_date": "2015-07-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S", + "arcade video game machine", + "PlayStation Vita", + "PlayStation 4", + "macOS", + "Microsoft Windows" + ], + "genres": [ + "2D fighting game" + ], + "stores": [], + "developers": [ + "Hidden Variable Studios", + "Lab Zero Games", + "M2" + ], + "publishers": [ + "Autumn Games", + "Skybound Games", + "Hidden Variable Studios", + "Marvelous", + "Arc System Works" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131864013" + ], + "created_at": "2026-07-10T10:10:38.182849", + "updated_at": "2026-07-10T10:10:38.182849", + "url": "/v1/games/skullgirls-2nd-encore" +} diff --git a/site/public/v1/games/skulltag/index.json b/site/public/v1/games/skulltag/index.json new file mode 100644 index 000000000000..522f8337b31e --- /dev/null +++ b/site/public/v1/games/skulltag/index.json @@ -0,0 +1,25 @@ +{ + "id": 130475, + "slug": "skulltag", + "name": "Skulltag", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q9078258" + ], + "created_at": "2026-07-10T10:10:38.185833", + "updated_at": "2026-07-10T10:10:38.185833", + "url": "/v1/games/skulltag" +} diff --git a/site/public/v1/games/skyblivion/index.json b/site/public/v1/games/skyblivion/index.json new file mode 100644 index 000000000000..b71244c6368f --- /dev/null +++ b/site/public/v1/games/skyblivion/index.json @@ -0,0 +1,33 @@ +{ + "id": 130620, + "slug": "skyblivion", + "name": "Skyblivion", + "release_date": "2026-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "action-adventure game", + "role-playing video game", + "fantasy video game" + ], + "stores": [], + "developers": [ + "The Elder Scrolls Renewal Project" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116475018" + ], + "created_at": "2026-07-10T10:10:38.224824", + "updated_at": "2026-07-10T10:10:38.224824", + "url": "/v1/games/skyblivion" +} diff --git a/site/public/v1/games/skyrama/index.json b/site/public/v1/games/skyrama/index.json new file mode 100644 index 000000000000..2bb3db2d5bcd --- /dev/null +++ b/site/public/v1/games/skyrama/index.json @@ -0,0 +1,28 @@ +{ + "id": 130720, + "slug": "skyrama", + "name": "Skyrama", + "release_date": "2011-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "business simulation game", + "massively multiplayer online game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11893875" + ], + "created_at": "2026-07-10T10:10:38.250834", + "updated_at": "2026-07-10T10:10:38.250834", + "url": "/v1/games/skyrama" +} diff --git a/site/public/v1/games/slavehack/index.json b/site/public/v1/games/slavehack/index.json new file mode 100644 index 000000000000..0550da58b003 --- /dev/null +++ b/site/public/v1/games/slavehack/index.json @@ -0,0 +1,29 @@ +{ + "id": 130898, + "slug": "slavehack", + "name": "SlaveHack", + "release_date": "2006-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "web browser" + ], + "genres": [], + "stores": [], + "developers": [ + "M2H" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1849870" + ], + "created_at": "2026-07-10T10:10:38.299251", + "updated_at": "2026-07-10T10:10:38.299251", + "url": "/v1/games/slavehack" +} diff --git a/site/public/v1/games/slay-the-princess-demo/index.json b/site/public/v1/games/slay-the-princess-demo/index.json new file mode 100644 index 000000000000..f6b55bd23266 --- /dev/null +++ b/site/public/v1/games/slay-the-princess-demo/index.json @@ -0,0 +1,48 @@ +{ + "id": 130919, + "slug": "slay-the-princess-demo", + "name": "Slay the Princess Demo", + "release_date": "2022-08-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "PlayStation 5", + "Xbox Series X and Series S", + "Microsoft Windows", + "PlayStation 4" + ], + "genres": [ + "adventure video game", + "visual novel", + "role-playing video game", + "dating sim", + "romance video game", + "dark fantasy video game", + "body horror video game", + "cosmic horror video game", + "psychological horror video game", + "apocalyptic video game", + "existentialist video game" + ], + "stores": [], + "developers": [ + "Black Tabby Games" + ], + "publishers": [ + "Serenity Forge", + "Black Tabby Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122766298" + ], + "created_at": "2026-07-10T10:10:38.306217", + "updated_at": "2026-07-10T10:10:38.306217", + "url": "/v1/games/slay-the-princess-demo" +} diff --git a/site/public/v1/games/slay-the-princess-supporters-pack/index.json b/site/public/v1/games/slay-the-princess-supporters-pack/index.json new file mode 100644 index 000000000000..4a3232172218 --- /dev/null +++ b/site/public/v1/games/slay-the-princess-supporters-pack/index.json @@ -0,0 +1,42 @@ +{ + "id": 130920, + "slug": "slay-the-princess-supporters-pack", + "name": "Slay the Princess - Supporters Pack", + "release_date": "2023-10-27", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "adventure video game", + "visual novel", + "romance video game", + "apocalyptic video game", + "existentialist video game", + "dark fantasy video game", + "body horror video game", + "cosmic horror video game", + "psychological horror video game" + ], + "stores": [], + "developers": [ + "Black Tabby Games" + ], + "publishers": [ + "Black Tabby Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130728650" + ], + "created_at": "2026-07-10T10:10:38.306217", + "updated_at": "2026-07-10T10:10:38.306217", + "url": "/v1/games/slay-the-princess-supporters-pack" +} diff --git a/site/public/v1/games/slay-the-princess-the-pristine-cut/index.json b/site/public/v1/games/slay-the-princess-the-pristine-cut/index.json new file mode 100644 index 000000000000..95e4ee5e0f49 --- /dev/null +++ b/site/public/v1/games/slay-the-princess-the-pristine-cut/index.json @@ -0,0 +1,46 @@ +{ + "id": 130921, + "slug": "slay-the-princess-the-pristine-cut", + "name": "Slay the Princess - The Pristine Cut", + "release_date": "2024-10-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 5", + "PlayStation 4", + "macOS", + "Microsoft Windows" + ], + "genres": [ + "adventure video game", + "visual novel", + "romance video game", + "apocalyptic video game", + "existentialist video game", + "dark fantasy video game", + "body horror video game", + "cosmic horror video game", + "psychological horror video game" + ], + "stores": [], + "developers": [ + "Black Tabby Games" + ], + "publishers": [ + "Serenity Forge", + "Black Tabby Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130728048" + ], + "created_at": "2026-07-10T10:10:38.306217", + "updated_at": "2026-07-10T10:10:38.306217", + "url": "/v1/games/slay-the-princess-the-pristine-cut" +} diff --git a/site/public/v1/games/slay-the-spire-q122704798/index.json b/site/public/v1/games/slay-the-spire-q122704798/index.json new file mode 100644 index 000000000000..7f50ac653655 --- /dev/null +++ b/site/public/v1/games/slay-the-spire-q122704798/index.json @@ -0,0 +1,28 @@ +{ + "id": 130922, + "slug": "slay-the-spire-q122704798", + "name": "Slay the Spire+", + "release_date": "2023-07-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "iPadOS", + "iOS" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122704798" + ], + "created_at": "2026-07-10T10:10:38.306217", + "updated_at": "2026-07-10T10:10:38.306217", + "url": "/v1/games/slay-the-spire-q122704798" +} diff --git a/site/public/v1/games/sleepin-guy-deluxe-edition/index.json b/site/public/v1/games/sleepin-guy-deluxe-edition/index.json new file mode 100644 index 000000000000..34ed56abc98d --- /dev/null +++ b/site/public/v1/games/sleepin-guy-deluxe-edition/index.json @@ -0,0 +1,32 @@ +{ + "id": 130980, + "slug": "sleepin-guy-deluxe-edition", + "name": "Sleepin' Guy Deluxe Edition", + "release_date": "2021-12-03", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 5" + ], + "genres": [], + "stores": [], + "developers": [ + "Fabio Ferrara" + ], + "publishers": [ + "Chubby Pixel" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109996781" + ], + "created_at": "2026-07-10T10:10:38.322225", + "updated_at": "2026-07-10T10:10:38.322225", + "url": "/v1/games/sleepin-guy-deluxe-edition" +} diff --git a/site/public/v1/games/slenderman-eyes/index.json b/site/public/v1/games/slenderman-eyes/index.json new file mode 100644 index 000000000000..c8a28b5c2369 --- /dev/null +++ b/site/public/v1/games/slenderman-eyes/index.json @@ -0,0 +1,31 @@ +{ + "id": 131031, + "slug": "slenderman-eyes", + "name": "Slenderman Eyes", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "iOS", + "Microsoft Windows" + ], + "genres": [ + "survival horror" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111084100" + ], + "created_at": "2026-07-10T10:10:38.336235", + "updated_at": "2026-07-10T10:10:38.336235", + "url": "/v1/games/slenderman-eyes" +} diff --git a/site/public/v1/games/slider-escape/index.json b/site/public/v1/games/slider-escape/index.json new file mode 100644 index 000000000000..997a0bd0e309 --- /dev/null +++ b/site/public/v1/games/slider-escape/index.json @@ -0,0 +1,25 @@ +{ + "id": 131098, + "slug": "slider-escape", + "name": "Slider Escape", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q128014908" + ], + "created_at": "2026-07-10T10:10:38.354320", + "updated_at": "2026-07-10T10:10:38.354320", + "url": "/v1/games/slider-escape" +} diff --git a/site/public/v1/games/slime-san-superslime-edition/index.json b/site/public/v1/games/slime-san-superslime-edition/index.json new file mode 100644 index 000000000000..c51447879aac --- /dev/null +++ b/site/public/v1/games/slime-san-superslime-edition/index.json @@ -0,0 +1,25 @@ +{ + "id": 131211, + "slug": "slime-san-superslime-edition", + "name": "Slime-san Superslime Edition", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107424303" + ], + "created_at": "2026-07-10T10:10:38.385954", + "updated_at": "2026-07-10T10:10:38.385954", + "url": "/v1/games/slime-san-superslime-edition" +} diff --git a/site/public/v1/games/slitherlink/index.json b/site/public/v1/games/slitherlink/index.json new file mode 100644 index 000000000000..d7a3249d266d --- /dev/null +++ b/site/public/v1/games/slitherlink/index.json @@ -0,0 +1,25 @@ +{ + "id": 131336, + "slug": "slitherlink", + "name": "Slitherlink", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2120242" + ], + "created_at": "2026-07-10T10:10:38.481790", + "updated_at": "2026-07-10T10:10:38.481790", + "url": "/v1/games/slitherlink" +} diff --git a/site/public/v1/games/sly-2-band-of-thieves-demo/index.json b/site/public/v1/games/sly-2-band-of-thieves-demo/index.json new file mode 100644 index 000000000000..1196f3826a15 --- /dev/null +++ b/site/public/v1/games/sly-2-band-of-thieves-demo/index.json @@ -0,0 +1,27 @@ +{ + "id": 131423, + "slug": "sly-2-band-of-thieves-demo", + "name": "Sly 2: Band of Thieves demo", + "release_date": "2004-11-03", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Sony Interactive Entertainment" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122926028" + ], + "created_at": "2026-07-10T10:10:38.505861", + "updated_at": "2026-07-10T10:10:38.505861", + "url": "/v1/games/sly-2-band-of-thieves-demo" +} diff --git a/site/public/v1/games/smash-boats-waterlogged-edition/index.json b/site/public/v1/games/smash-boats-waterlogged-edition/index.json new file mode 100644 index 000000000000..ae0c29295023 --- /dev/null +++ b/site/public/v1/games/smash-boats-waterlogged-edition/index.json @@ -0,0 +1,31 @@ +{ + "id": 131524, + "slug": "smash-boats-waterlogged-edition", + "name": "Smash Boats Waterlogged Edition", + "release_date": "2022-08-17", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S" + ], + "genres": [], + "stores": [], + "developers": [ + "Smash House Games" + ], + "publishers": [ + "Smash House Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115553947" + ], + "created_at": "2026-07-10T10:10:38.533852", + "updated_at": "2026-07-10T10:10:38.533852", + "url": "/v1/games/smash-boats-waterlogged-edition" +} diff --git a/site/public/v1/games/smile-for-today/index.json b/site/public/v1/games/smile-for-today/index.json new file mode 100644 index 000000000000..47dc0cb005cf --- /dev/null +++ b/site/public/v1/games/smile-for-today/index.json @@ -0,0 +1,25 @@ +{ + "id": 131601, + "slug": "smile-for-today", + "name": "Smile For Today", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116434910" + ], + "created_at": "2026-07-10T10:10:38.553849", + "updated_at": "2026-07-10T10:10:38.553849", + "url": "/v1/games/smile-for-today" +} diff --git a/site/public/v1/games/smmu/index.json b/site/public/v1/games/smmu/index.json new file mode 100644 index 000000000000..771fc712fb01 --- /dev/null +++ b/site/public/v1/games/smmu/index.json @@ -0,0 +1,25 @@ +{ + "id": 131630, + "slug": "smmu", + "name": "SMMU", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q67219614" + ], + "created_at": "2026-07-10T10:10:38.562873", + "updated_at": "2026-07-10T10:10:38.562873", + "url": "/v1/games/smmu" +} diff --git a/site/public/v1/games/snake-io-q118235248/index.json b/site/public/v1/games/snake-io-q118235248/index.json new file mode 100644 index 000000000000..611ccbd34c6a --- /dev/null +++ b/site/public/v1/games/snake-io-q118235248/index.json @@ -0,0 +1,28 @@ +{ + "id": 131767, + "slug": "snake-io-q118235248", + "name": "Snake.io+", + "release_date": "2023-05-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "iPadOS", + "iOS" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118235248" + ], + "created_at": "2026-07-10T10:10:38.601336", + "updated_at": "2026-07-10T10:10:38.601336", + "url": "/v1/games/snake-io-q118235248" +} diff --git a/site/public/v1/games/snappy-v/index.json b/site/public/v1/games/snappy-v/index.json new file mode 100644 index 000000000000..0f6588a89443 --- /dev/null +++ b/site/public/v1/games/snappy-v/index.json @@ -0,0 +1,31 @@ +{ + "id": 131841, + "slug": "snappy-v", + "name": "Snappy v", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 3" + ], + "genres": [], + "stores": [], + "developers": [ + "RetroXMB" + ], + "publishers": [ + "RetroXMB" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124060103" + ], + "created_at": "2026-07-10T10:10:38.623367", + "updated_at": "2026-07-10T10:10:38.623367", + "url": "/v1/games/snappy-v" +} diff --git a/site/public/v1/games/sniper-elite-3-ultimate-edition/index.json b/site/public/v1/games/sniper-elite-3-ultimate-edition/index.json new file mode 100644 index 000000000000..d97604c5d99d --- /dev/null +++ b/site/public/v1/games/sniper-elite-3-ultimate-edition/index.json @@ -0,0 +1,25 @@ +{ + "id": 131901, + "slug": "sniper-elite-3-ultimate-edition", + "name": "Sniper Elite 3 Ultimate Edition", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q92204148" + ], + "created_at": "2026-07-10T10:10:38.639327", + "updated_at": "2026-07-10T10:10:38.639327", + "url": "/v1/games/sniper-elite-3-ultimate-edition" +} diff --git a/site/public/v1/games/sniper-elite-5-deluxe-edition/index.json b/site/public/v1/games/sniper-elite-5-deluxe-edition/index.json new file mode 100644 index 000000000000..24ffbcca648f --- /dev/null +++ b/site/public/v1/games/sniper-elite-5-deluxe-edition/index.json @@ -0,0 +1,32 @@ +{ + "id": 131903, + "slug": "sniper-elite-5-deluxe-edition", + "name": "Sniper Elite 5 Deluxe Edition", + "release_date": "2022-05-26", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Rebellion Developments" + ], + "publishers": [ + "Rebellion Developments" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112943544" + ], + "created_at": "2026-07-10T10:10:38.639327", + "updated_at": "2026-07-10T10:10:38.639327", + "url": "/v1/games/sniper-elite-5-deluxe-edition" +} diff --git a/site/public/v1/games/sniper-elite-complete-pack/index.json b/site/public/v1/games/sniper-elite-complete-pack/index.json new file mode 100644 index 000000000000..8a65567645d4 --- /dev/null +++ b/site/public/v1/games/sniper-elite-complete-pack/index.json @@ -0,0 +1,27 @@ +{ + "id": 131905, + "slug": "sniper-elite-complete-pack", + "name": "Sniper Elite Complete Pack", + "release_date": "2017-04-27", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q71482127" + ], + "created_at": "2026-07-10T10:10:38.640363", + "updated_at": "2026-07-10T10:10:38.640363", + "url": "/v1/games/sniper-elite-complete-pack" +} diff --git a/site/public/v1/games/sniper-ghost-warrior-contracts-2-complete-edition/index.json b/site/public/v1/games/sniper-ghost-warrior-contracts-2-complete-edition/index.json new file mode 100644 index 000000000000..e7b56054757b --- /dev/null +++ b/site/public/v1/games/sniper-ghost-warrior-contracts-2-complete-edition/index.json @@ -0,0 +1,29 @@ +{ + "id": 131920, + "slug": "sniper-ghost-warrior-contracts-2-complete-edition", + "name": "Sniper Ghost Warrior Contracts 2 Complete Edition", + "release_date": "2022-04-11", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "CI Games S.A." + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111795825" + ], + "created_at": "2026-07-10T10:10:38.643280", + "updated_at": "2026-07-10T10:10:38.643280", + "url": "/v1/games/sniper-ghost-warrior-contracts-2-complete-edition" +} diff --git a/site/public/v1/games/sniper-ghost-warrior-contracts-full-arsenal-edition/index.json b/site/public/v1/games/sniper-ghost-warrior-contracts-full-arsenal-edition/index.json new file mode 100644 index 000000000000..dc11a93e01b0 --- /dev/null +++ b/site/public/v1/games/sniper-ghost-warrior-contracts-full-arsenal-edition/index.json @@ -0,0 +1,29 @@ +{ + "id": 131922, + "slug": "sniper-ghost-warrior-contracts-full-arsenal-edition", + "name": "Sniper Ghost Warrior Contracts Full Arsenal Edition", + "release_date": "2022-04-21", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "CI Games S.A." + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111821128" + ], + "created_at": "2026-07-10T10:10:38.644280", + "updated_at": "2026-07-10T10:10:38.644280", + "url": "/v1/games/sniper-ghost-warrior-contracts-full-arsenal-edition" +} diff --git a/site/public/v1/games/snk-40th-anniversary-collection/index.json b/site/public/v1/games/snk-40th-anniversary-collection/index.json new file mode 100644 index 000000000000..1d7d829d7f50 --- /dev/null +++ b/site/public/v1/games/snk-40th-anniversary-collection/index.json @@ -0,0 +1,30 @@ +{ + "id": 131946, + "slug": "snk-40th-anniversary-collection", + "name": "SNK 40th Anniversary Collection", + "release_date": "2018-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "SNK" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q65040546" + ], + "created_at": "2026-07-10T10:10:38.650453", + "updated_at": "2026-07-10T10:10:38.650453", + "url": "/v1/games/snk-40th-anniversary-collection" +} diff --git a/site/public/v1/games/snk-arcade-classics-vol-1/index.json b/site/public/v1/games/snk-arcade-classics-vol-1/index.json new file mode 100644 index 000000000000..c651588bdbb9 --- /dev/null +++ b/site/public/v1/games/snk-arcade-classics-vol-1/index.json @@ -0,0 +1,31 @@ +{ + "id": 131948, + "slug": "snk-arcade-classics-vol-1", + "name": "SNK Arcade Classics Vol. 1", + "release_date": "2008-04-29", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Wii" + ], + "genres": [], + "stores": [], + "developers": [ + "Terminal Reality" + ], + "publishers": [ + "SNK" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7391853" + ], + "created_at": "2026-07-10T10:10:38.650453", + "updated_at": "2026-07-10T10:10:38.650453", + "url": "/v1/games/snk-arcade-classics-vol-1" +} diff --git a/site/public/v1/games/soda-shot/index.json b/site/public/v1/games/soda-shot/index.json new file mode 100644 index 000000000000..6c7bab5784fb --- /dev/null +++ b/site/public/v1/games/soda-shot/index.json @@ -0,0 +1,25 @@ +{ + "id": 132317, + "slug": "soda-shot", + "name": "Soda Shot", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q128014910" + ], + "created_at": "2026-07-10T10:10:38.780702", + "updated_at": "2026-07-10T10:10:38.780702", + "url": "/v1/games/soda-shot" +} diff --git a/site/public/v1/games/sokocat-combo/index.json b/site/public/v1/games/sokocat-combo/index.json new file mode 100644 index 000000000000..7b75a88449eb --- /dev/null +++ b/site/public/v1/games/sokocat-combo/index.json @@ -0,0 +1,31 @@ +{ + "id": 132406, + "slug": "sokocat-combo", + "name": "Sokocat: Combo", + "release_date": "2022-06-09", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S" + ], + "genres": [ + "puzzle video game" + ], + "stores": [], + "developers": [], + "publishers": [ + "QUByte Interactive" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113638785" + ], + "created_at": "2026-07-10T10:10:38.805694", + "updated_at": "2026-07-10T10:10:38.805694", + "url": "/v1/games/sokocat-combo" +} diff --git a/site/public/v1/games/soldier-of-fortune-platinum-edition/index.json b/site/public/v1/games/soldier-of-fortune-platinum-edition/index.json new file mode 100644 index 000000000000..30abb65dca16 --- /dev/null +++ b/site/public/v1/games/soldier-of-fortune-platinum-edition/index.json @@ -0,0 +1,25 @@ +{ + "id": 132569, + "slug": "soldier-of-fortune-platinum-edition", + "name": "Soldier of Fortune: Platinum Edition", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127527181" + ], + "created_at": "2026-07-10T10:10:38.848695", + "updated_at": "2026-07-10T10:10:38.848695", + "url": "/v1/games/soldier-of-fortune-platinum-edition" +} diff --git a/site/public/v1/games/solitaire-by-mobilityware/index.json b/site/public/v1/games/solitaire-by-mobilityware/index.json new file mode 100644 index 000000000000..aa7ff99f14ce --- /dev/null +++ b/site/public/v1/games/solitaire-by-mobilityware/index.json @@ -0,0 +1,32 @@ +{ + "id": 132635, + "slug": "solitaire-by-mobilityware", + "name": "Solitaire by MobilityWare+", + "release_date": "2021-04-02", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "iPadOS", + "iOS" + ], + "genres": [], + "stores": [], + "developers": [ + "MobilityWare" + ], + "publishers": [ + "MobilityWare" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107358174" + ], + "created_at": "2026-07-10T10:10:38.865333", + "updated_at": "2026-07-10T10:10:38.865333", + "url": "/v1/games/solitaire-by-mobilityware" +} diff --git a/site/public/v1/games/song-of-horror-complete-edition/index.json b/site/public/v1/games/song-of-horror-complete-edition/index.json new file mode 100644 index 000000000000..1b55e455bd7a --- /dev/null +++ b/site/public/v1/games/song-of-horror-complete-edition/index.json @@ -0,0 +1,32 @@ +{ + "id": 132874, + "slug": "song-of-horror-complete-edition", + "name": "SONG OF HORROR COMPLETE EDITION", + "release_date": "2019-10-31", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "adventure video game", + "survival horror" + ], + "stores": [], + "developers": [], + "publishers": [ + "Raiser Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122823614" + ], + "created_at": "2026-07-10T10:10:38.938552", + "updated_at": "2026-07-10T10:10:38.938552", + "url": "/v1/games/song-of-horror-complete-edition" +} diff --git a/site/public/v1/games/sonic-2-in-1/index.json b/site/public/v1/games/sonic-2-in-1/index.json new file mode 100644 index 000000000000..386492a5f332 --- /dev/null +++ b/site/public/v1/games/sonic-2-in-1/index.json @@ -0,0 +1,25 @@ +{ + "id": 132920, + "slug": "sonic-2-in-1", + "name": "Sonic 2 in 1", + "release_date": "1995-10-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q88323379" + ], + "created_at": "2026-07-10T10:10:38.950590", + "updated_at": "2026-07-10T10:10:38.950590", + "url": "/v1/games/sonic-2-in-1" +} diff --git a/site/public/v1/games/sonic-classic-collection/index.json b/site/public/v1/games/sonic-classic-collection/index.json new file mode 100644 index 000000000000..fd96d5b81f81 --- /dev/null +++ b/site/public/v1/games/sonic-classic-collection/index.json @@ -0,0 +1,33 @@ +{ + "id": 132949, + "slug": "sonic-classic-collection", + "name": "Sonic Classic Collection", + "release_date": "2010-03-02", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Nintendo DS" + ], + "genres": [ + "2D platform game" + ], + "stores": [], + "developers": [ + "Creative Assembly" + ], + "publishers": [ + "Sega" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3048781" + ], + "created_at": "2026-07-10T10:10:38.956620", + "updated_at": "2026-07-10T10:10:38.956620", + "url": "/v1/games/sonic-classic-collection" +} diff --git a/site/public/v1/games/sonic-compilation/index.json b/site/public/v1/games/sonic-compilation/index.json new file mode 100644 index 000000000000..e91f37c3647a --- /dev/null +++ b/site/public/v1/games/sonic-compilation/index.json @@ -0,0 +1,31 @@ +{ + "id": 132953, + "slug": "sonic-compilation", + "name": "Sonic Compilation", + "release_date": "1995-07-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Sega Genesis" + ], + "genres": [], + "stores": [], + "developers": [ + "Sega" + ], + "publishers": [ + "Sega" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7514182" + ], + "created_at": "2026-07-10T10:10:38.957585", + "updated_at": "2026-07-10T10:10:38.957585", + "url": "/v1/games/sonic-compilation" +} diff --git a/site/public/v1/games/sonic-dash-q111516771/index.json b/site/public/v1/games/sonic-dash-q111516771/index.json new file mode 100644 index 000000000000..474ed33148b4 --- /dev/null +++ b/site/public/v1/games/sonic-dash-q111516771/index.json @@ -0,0 +1,28 @@ +{ + "id": 132957, + "slug": "sonic-dash-q111516771", + "name": "Sonic Dash+", + "release_date": "2022-04-08", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "iPadOS", + "iOS" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111516771" + ], + "created_at": "2026-07-10T10:10:38.958580", + "updated_at": "2026-07-10T10:10:38.958580", + "url": "/v1/games/sonic-dash-q111516771" +} diff --git a/site/public/v1/games/sonic-dreams-collection/index.json b/site/public/v1/games/sonic-dreams-collection/index.json new file mode 100644 index 000000000000..083cb8d369bf --- /dev/null +++ b/site/public/v1/games/sonic-dreams-collection/index.json @@ -0,0 +1,32 @@ +{ + "id": 132960, + "slug": "sonic-dreams-collection", + "name": "Sonic Dreams Collection", + "release_date": "2015-08-10", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "parody" + ], + "stores": [], + "developers": [ + "Arcane Kids" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q20899594" + ], + "created_at": "2026-07-10T10:10:38.959602", + "updated_at": "2026-07-10T10:10:38.959602", + "url": "/v1/games/sonic-dreams-collection" +} diff --git a/site/public/v1/games/sonic-extreme/index.json b/site/public/v1/games/sonic-extreme/index.json new file mode 100644 index 000000000000..4288965de1a9 --- /dev/null +++ b/site/public/v1/games/sonic-extreme/index.json @@ -0,0 +1,29 @@ +{ + "id": 132966, + "slug": "sonic-extreme", + "name": "Sonic Extreme", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "sports video game" + ], + "stores": [], + "developers": [], + "publishers": [ + "Sega" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16204845" + ], + "created_at": "2026-07-10T10:10:38.960592", + "updated_at": "2026-07-10T10:10:38.960592", + "url": "/v1/games/sonic-extreme" +} diff --git a/site/public/v1/games/sonic-gems-collection/index.json b/site/public/v1/games/sonic-gems-collection/index.json new file mode 100644 index 000000000000..5ccf2669aea4 --- /dev/null +++ b/site/public/v1/games/sonic-gems-collection/index.json @@ -0,0 +1,40 @@ +{ + "id": 132972, + "slug": "sonic-gems-collection", + "name": "Sonic Gems Collection", + "release_date": "2005-08-11", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Nintendo GameCube" + ], + "genres": [ + "puzzle video game", + "beat 'em up", + "platformer", + "fighting game", + "racing video game", + "shooter game", + "pinball video game", + "run and gun" + ], + "stores": [], + "developers": [ + "Sonic Team" + ], + "publishers": [ + "Sega" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2571793" + ], + "created_at": "2026-07-10T10:10:38.962579", + "updated_at": "2026-07-10T10:10:38.962579", + "url": "/v1/games/sonic-gems-collection" +} diff --git a/site/public/v1/games/sonic-generations-casino-night-pinball/index.json b/site/public/v1/games/sonic-generations-casino-night-pinball/index.json new file mode 100644 index 000000000000..511da9646820 --- /dev/null +++ b/site/public/v1/games/sonic-generations-casino-night-pinball/index.json @@ -0,0 +1,33 @@ +{ + "id": 132973, + "slug": "sonic-generations-casino-night-pinball", + "name": "Sonic Generations ‘Casino Night’ Pinball", + "release_date": "2011-10-19", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 3", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Sega" + ], + "publishers": [ + "Sega" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106918636" + ], + "created_at": "2026-07-10T10:10:38.962579", + "updated_at": "2026-07-10T10:10:38.962579", + "url": "/v1/games/sonic-generations-casino-night-pinball" +} diff --git a/site/public/v1/games/sonic-hits-collection/index.json b/site/public/v1/games/sonic-hits-collection/index.json new file mode 100644 index 000000000000..a25d69b63956 --- /dev/null +++ b/site/public/v1/games/sonic-hits-collection/index.json @@ -0,0 +1,27 @@ +{ + "id": 132978, + "slug": "sonic-hits-collection", + "name": "Sonic Hits Collection", + "release_date": "2013-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "video game compilation" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q19991031" + ], + "created_at": "2026-07-10T10:10:38.963581", + "updated_at": "2026-07-10T10:10:38.963581", + "url": "/v1/games/sonic-hits-collection" +} diff --git a/site/public/v1/games/sonic-jam/index.json b/site/public/v1/games/sonic-jam/index.json new file mode 100644 index 000000000000..a200231e9ffc --- /dev/null +++ b/site/public/v1/games/sonic-jam/index.json @@ -0,0 +1,31 @@ +{ + "id": 132980, + "slug": "sonic-jam", + "name": "Sonic Jam", + "release_date": "1997-06-20", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "platformer" + ], + "stores": [], + "developers": [ + "Sonic Team" + ], + "publishers": [ + "Sega" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q672172" + ], + "created_at": "2026-07-10T10:10:38.963581", + "updated_at": "2026-07-10T10:10:38.963581", + "url": "/v1/games/sonic-jam" +} diff --git a/site/public/v1/games/sonic-knuckles-collection/index.json b/site/public/v1/games/sonic-knuckles-collection/index.json new file mode 100644 index 000000000000..fd400ad74530 --- /dev/null +++ b/site/public/v1/games/sonic-knuckles-collection/index.json @@ -0,0 +1,31 @@ +{ + "id": 132986, + "slug": "sonic-knuckles-collection", + "name": "Sonic & Knuckles Collection", + "release_date": "1997-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "platformer" + ], + "stores": [], + "developers": [], + "publishers": [ + "Sega" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3964784" + ], + "created_at": "2026-07-10T10:10:38.965140", + "updated_at": "2026-07-10T10:10:38.965140", + "url": "/v1/games/sonic-knuckles-collection" +} diff --git a/site/public/v1/games/sonic-mega-collection-plus/index.json b/site/public/v1/games/sonic-mega-collection-plus/index.json new file mode 100644 index 000000000000..9596c00c6bcc --- /dev/null +++ b/site/public/v1/games/sonic-mega-collection-plus/index.json @@ -0,0 +1,34 @@ +{ + "id": 132992, + "slug": "sonic-mega-collection-plus", + "name": "Sonic Mega Collection Plus", + "release_date": "2004-11-02", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "puzzle video game", + "action game", + "beat 'em up", + "platformer", + "kart racing game", + "pinball video game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q88323752" + ], + "created_at": "2026-07-10T10:10:38.966257", + "updated_at": "2026-07-10T10:10:38.966257", + "url": "/v1/games/sonic-mega-collection-plus" +} diff --git a/site/public/v1/games/sonic-mega-collection/index.json b/site/public/v1/games/sonic-mega-collection/index.json new file mode 100644 index 000000000000..b765c27ccf10 --- /dev/null +++ b/site/public/v1/games/sonic-mega-collection/index.json @@ -0,0 +1,38 @@ +{ + "id": 132993, + "slug": "sonic-mega-collection", + "name": "Sonic Mega Collection", + "release_date": "2002-11-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Nintendo GameCube", + "Microsoft Windows" + ], + "genres": [ + "puzzle video game", + "action game", + "beat 'em up", + "platformer", + "pinball video game" + ], + "stores": [], + "developers": [ + "Sonic Team" + ], + "publishers": [ + "Sega" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2422173" + ], + "created_at": "2026-07-10T10:10:38.967204", + "updated_at": "2026-07-10T10:10:38.967204", + "url": "/v1/games/sonic-mega-collection" +} diff --git a/site/public/v1/games/sonic-origins/index.json b/site/public/v1/games/sonic-origins/index.json new file mode 100644 index 000000000000..3464070323c0 --- /dev/null +++ b/site/public/v1/games/sonic-origins/index.json @@ -0,0 +1,37 @@ +{ + "id": 132996, + "slug": "sonic-origins", + "name": "Sonic Origins", + "release_date": "2022-06-23", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 5", + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "platformer" + ], + "stores": [], + "developers": [ + "Sonic Team", + "Sega" + ], + "publishers": [ + "Sega" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111667582" + ], + "created_at": "2026-07-10T10:10:38.967204", + "updated_at": "2026-07-10T10:10:38.967204", + "url": "/v1/games/sonic-origins" +} diff --git a/site/public/v1/games/sonic-pc-collection/index.json b/site/public/v1/games/sonic-pc-collection/index.json new file mode 100644 index 000000000000..664ea6d222b9 --- /dev/null +++ b/site/public/v1/games/sonic-pc-collection/index.json @@ -0,0 +1,27 @@ +{ + "id": 132998, + "slug": "sonic-pc-collection", + "name": "Sonic PC Collection", + "release_date": "2009-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q90027436" + ], + "created_at": "2026-07-10T10:10:38.968148", + "updated_at": "2026-07-10T10:10:38.968148", + "url": "/v1/games/sonic-pc-collection" +} diff --git a/site/public/v1/games/sonic-s-ultimate-genesis-collection/index.json b/site/public/v1/games/sonic-s-ultimate-genesis-collection/index.json new file mode 100644 index 000000000000..dfa3b71bf9ba --- /dev/null +++ b/site/public/v1/games/sonic-s-ultimate-genesis-collection/index.json @@ -0,0 +1,31 @@ +{ + "id": 133017, + "slug": "sonic-s-ultimate-genesis-collection", + "name": "Sonic's Ultimate Genesis Collection", + "release_date": "2009-02-10", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 3" + ], + "genres": [ + "video game music" + ], + "stores": [], + "developers": [], + "publishers": [ + "Sega" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2573699" + ], + "created_at": "2026-07-10T10:10:38.972216", + "updated_at": "2026-07-10T10:10:38.972216", + "url": "/v1/games/sonic-s-ultimate-genesis-collection" +} diff --git a/site/public/v1/games/sonic-saturn/index.json b/site/public/v1/games/sonic-saturn/index.json new file mode 100644 index 000000000000..50ddf13f17a5 --- /dev/null +++ b/site/public/v1/games/sonic-saturn/index.json @@ -0,0 +1,29 @@ +{ + "id": 133018, + "slug": "sonic-saturn", + "name": "Sonic Saturn", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [ + "Sega Technical Institute Burbank" + ], + "publishers": [ + "Sega" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122733088" + ], + "created_at": "2026-07-10T10:10:38.972216", + "updated_at": "2026-07-10T10:10:38.972216", + "url": "/v1/games/sonic-saturn" +} diff --git a/site/public/v1/games/sonic-speed-simulator/index.json b/site/public/v1/games/sonic-speed-simulator/index.json new file mode 100644 index 000000000000..8b75b7c7a7d2 --- /dev/null +++ b/site/public/v1/games/sonic-speed-simulator/index.json @@ -0,0 +1,40 @@ +{ + "id": 133021, + "slug": "sonic-speed-simulator", + "name": "Sonic Speed Simulator", + "release_date": "2022-04-16", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 5", + "PlayStation 4", + "iOS", + "macOS", + "Microsoft Windows" + ], + "genres": [ + "platformer", + "massively multiplayer online game", + "incremental game" + ], + "stores": [], + "developers": [ + "Gamefam" + ], + "publishers": [ + "Gamefam" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118947279" + ], + "created_at": "2026-07-10T10:10:38.973242", + "updated_at": "2026-07-10T10:10:38.973242", + "url": "/v1/games/sonic-speed-simulator" +} diff --git a/site/public/v1/games/sonic-the-hedgehog-4-episode-iii/index.json b/site/public/v1/games/sonic-the-hedgehog-4-episode-iii/index.json new file mode 100644 index 000000000000..e4c6aecd5ff1 --- /dev/null +++ b/site/public/v1/games/sonic-the-hedgehog-4-episode-iii/index.json @@ -0,0 +1,25 @@ +{ + "id": 133034, + "slug": "sonic-the-hedgehog-4-episode-iii", + "name": "Sonic the Hedgehog 4: Episode III", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136303283" + ], + "created_at": "2026-07-10T10:10:38.976285", + "updated_at": "2026-07-10T10:10:38.976285", + "url": "/v1/games/sonic-the-hedgehog-4-episode-iii" +} diff --git a/site/public/v1/games/sonic-world/index.json b/site/public/v1/games/sonic-world/index.json new file mode 100644 index 000000000000..c708695deb52 --- /dev/null +++ b/site/public/v1/games/sonic-world/index.json @@ -0,0 +1,25 @@ +{ + "id": 133052, + "slug": "sonic-world", + "name": "Sonic World", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115475596" + ], + "created_at": "2026-07-10T10:10:38.980217", + "updated_at": "2026-07-10T10:10:38.980217", + "url": "/v1/games/sonic-world" +} diff --git a/site/public/v1/games/soul-gambler-artbook-soundtrack/index.json b/site/public/v1/games/soul-gambler-artbook-soundtrack/index.json new file mode 100644 index 000000000000..591a20b899b1 --- /dev/null +++ b/site/public/v1/games/soul-gambler-artbook-soundtrack/index.json @@ -0,0 +1,36 @@ +{ + "id": 133288, + "slug": "soul-gambler-artbook-soundtrack", + "name": "Soul Gambler: Artbook & Soundtrack", + "release_date": "2013-08-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "classical music", + "instrumental music", + "video game music", + "stage and screen" + ], + "stores": [], + "developers": [ + "Ilex Games" + ], + "publishers": [ + "Gamestorming" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q85744046" + ], + "created_at": "2026-07-10T10:10:39.043386", + "updated_at": "2026-07-10T10:10:39.043386", + "url": "/v1/games/soul-gambler-artbook-soundtrack" +} diff --git a/site/public/v1/games/soul-gambler-dark-arts-edition/index.json b/site/public/v1/games/soul-gambler-dark-arts-edition/index.json new file mode 100644 index 000000000000..08c77a36250a --- /dev/null +++ b/site/public/v1/games/soul-gambler-dark-arts-edition/index.json @@ -0,0 +1,30 @@ +{ + "id": 133289, + "slug": "soul-gambler-dark-arts-edition", + "name": "Soul Gambler: Dark Arts Edition", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "role-playing video game", + "visual novel" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q96965134" + ], + "created_at": "2026-07-10T10:10:39.043386", + "updated_at": "2026-07-10T10:10:39.043386", + "url": "/v1/games/soul-gambler-dark-arts-edition" +} diff --git a/site/public/v1/games/soul-sacrifice-2/index.json b/site/public/v1/games/soul-sacrifice-2/index.json new file mode 100644 index 000000000000..daa3d7eae60d --- /dev/null +++ b/site/public/v1/games/soul-sacrifice-2/index.json @@ -0,0 +1,27 @@ +{ + "id": 133349, + "slug": "soul-sacrifice-2", + "name": "Soul Sacrifice 2", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 4" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110147482" + ], + "created_at": "2026-07-10T10:10:39.059524", + "updated_at": "2026-07-10T10:10:39.059524", + "url": "/v1/games/soul-sacrifice-2" +} diff --git a/site/public/v1/games/soundtrack-and-wallpaper-bonus-pack/index.json b/site/public/v1/games/soundtrack-and-wallpaper-bonus-pack/index.json new file mode 100644 index 000000000000..3c5196ca2364 --- /dev/null +++ b/site/public/v1/games/soundtrack-and-wallpaper-bonus-pack/index.json @@ -0,0 +1,29 @@ +{ + "id": 133546, + "slug": "soundtrack-and-wallpaper-bonus-pack", + "name": "Soundtrack and Wallpaper Bonus Pack", + "release_date": "2016-04-20", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "video game music" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q83743074" + ], + "created_at": "2026-07-10T10:10:39.112431", + "updated_at": "2026-07-10T10:10:39.112431", + "url": "/v1/games/soundtrack-and-wallpaper-bonus-pack" +} diff --git a/site/public/v1/games/source-multiplayer-pack/index.json b/site/public/v1/games/source-multiplayer-pack/index.json new file mode 100644 index 000000000000..655bfa3841b0 --- /dev/null +++ b/site/public/v1/games/source-multiplayer-pack/index.json @@ -0,0 +1,32 @@ +{ + "id": 133559, + "slug": "source-multiplayer-pack", + "name": "Source Multiplayer Pack", + "release_date": "2010-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Valve Corporation" + ], + "publishers": [ + "Valve Corporation" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q82500884" + ], + "created_at": "2026-07-10T10:10:39.116436", + "updated_at": "2026-07-10T10:10:39.116436", + "url": "/v1/games/source-multiplayer-pack" +} diff --git a/site/public/v1/games/space-invaders-invincible-collection/index.json b/site/public/v1/games/space-invaders-invincible-collection/index.json new file mode 100644 index 000000000000..0cb2bff2bf54 --- /dev/null +++ b/site/public/v1/games/space-invaders-invincible-collection/index.json @@ -0,0 +1,30 @@ +{ + "id": 133967, + "slug": "space-invaders-invincible-collection", + "name": "Space Invaders Invincible Collection", + "release_date": "2020-03-26", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [ + "Gotch Technology Corp." + ], + "publishers": [ + "Inin Games", + "Taito" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q96603713" + ], + "created_at": "2026-07-10T10:10:39.224907", + "updated_at": "2026-07-10T10:10:39.224907", + "url": "/v1/games/space-invaders-invincible-collection" +} diff --git a/site/public/v1/games/space-raiders/index.json b/site/public/v1/games/space-raiders/index.json new file mode 100644 index 000000000000..c85597c58ab6 --- /dev/null +++ b/site/public/v1/games/space-raiders/index.json @@ -0,0 +1,35 @@ +{ + "id": 134145, + "slug": "space-raiders", + "name": "Space Raiders", + "release_date": "2002-12-19", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Nintendo GameCube" + ], + "genres": [ + "third-person shooter" + ], + "stores": [], + "developers": [ + "Taito" + ], + "publishers": [ + "Taito", + "Sammy Corporation", + "Mastiff" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3965809" + ], + "created_at": "2026-07-10T10:10:39.274496", + "updated_at": "2026-07-10T10:10:39.274496", + "url": "/v1/games/space-raiders" +} diff --git a/site/public/v1/games/space-rangers-2-reboot/index.json b/site/public/v1/games/space-rangers-2-reboot/index.json new file mode 100644 index 000000000000..fd23d55f67cc --- /dev/null +++ b/site/public/v1/games/space-rangers-2-reboot/index.json @@ -0,0 +1,33 @@ +{ + "id": 134150, + "slug": "space-rangers-2-reboot", + "name": "Space Rangers 2: Reboot", + "release_date": "2007-09-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "SNK-Games", + "Katauri Interactive", + "Elemental Games" + ], + "publishers": [ + "1C Company" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110760141" + ], + "created_at": "2026-07-10T10:10:39.275497", + "updated_at": "2026-07-10T10:10:39.275497", + "url": "/v1/games/space-rangers-2-reboot" +} diff --git a/site/public/v1/games/space-tail-every-journey-leads-home-ultimate-edition/index.json b/site/public/v1/games/space-tail-every-journey-leads-home-ultimate-edition/index.json new file mode 100644 index 000000000000..665a641b28c9 --- /dev/null +++ b/site/public/v1/games/space-tail-every-journey-leads-home-ultimate-edition/index.json @@ -0,0 +1,32 @@ +{ + "id": 134279, + "slug": "space-tail-every-journey-leads-home-ultimate-edition", + "name": "Space Tail: Every Journey Leads Home Ultimate Edition", + "release_date": "2023-03-09", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S" + ], + "genres": [], + "stores": [], + "developers": [ + "Enjoy Studio", + "Longterm Games" + ], + "publishers": [ + "Longterm Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122670173" + ], + "created_at": "2026-07-10T10:10:39.309572", + "updated_at": "2026-07-10T10:10:39.309572", + "url": "/v1/games/space-tail-every-journey-leads-home-ultimate-edition" +} diff --git a/site/public/v1/games/space-war-2000/index.json b/site/public/v1/games/space-war-2000/index.json new file mode 100644 index 000000000000..455278911515 --- /dev/null +++ b/site/public/v1/games/space-war-2000/index.json @@ -0,0 +1,27 @@ +{ + "id": 134332, + "slug": "space-war-2000", + "name": "Space War 2000", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "science fiction video game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q98831206" + ], + "created_at": "2026-07-10T10:10:39.324552", + "updated_at": "2026-07-10T10:10:39.324552", + "url": "/v1/games/space-war-2000" +} diff --git a/site/public/v1/games/spades-card-game-q110453652/index.json b/site/public/v1/games/spades-card-game-q110453652/index.json new file mode 100644 index 000000000000..e3562e3ebf4e --- /dev/null +++ b/site/public/v1/games/spades-card-game-q110453652/index.json @@ -0,0 +1,28 @@ +{ + "id": 134539, + "slug": "spades-card-game-q110453652", + "name": "Spades: Card Game+", + "release_date": "2022-01-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "iPadOS", + "iOS" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110453652" + ], + "created_at": "2026-07-10T10:10:39.381254", + "updated_at": "2026-07-10T10:10:39.381254", + "url": "/v1/games/spades-card-game-q110453652" +} diff --git a/site/public/v1/games/spear-of-destiny-mission-2-return-to-danger/index.json b/site/public/v1/games/spear-of-destiny-mission-2-return-to-danger/index.json new file mode 100644 index 000000000000..4a5008ac96c3 --- /dev/null +++ b/site/public/v1/games/spear-of-destiny-mission-2-return-to-danger/index.json @@ -0,0 +1,25 @@ +{ + "id": 134671, + "slug": "spear-of-destiny-mission-2-return-to-danger", + "name": "Spear of Destiny: Mission 2 Return to Danger", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110155075" + ], + "created_at": "2026-07-10T10:10:39.418184", + "updated_at": "2026-07-10T10:10:39.418184", + "url": "/v1/games/spear-of-destiny-mission-2-return-to-danger" +} diff --git a/site/public/v1/games/spear-of-destiny-mission-3-ultimate-challenge/index.json b/site/public/v1/games/spear-of-destiny-mission-3-ultimate-challenge/index.json new file mode 100644 index 000000000000..1396f1d0a951 --- /dev/null +++ b/site/public/v1/games/spear-of-destiny-mission-3-ultimate-challenge/index.json @@ -0,0 +1,25 @@ +{ + "id": 134672, + "slug": "spear-of-destiny-mission-3-ultimate-challenge", + "name": "Spear of Destiny: Mission 3: Ultimate Challenge", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110155065" + ], + "created_at": "2026-07-10T10:10:39.418184", + "updated_at": "2026-07-10T10:10:39.418184", + "url": "/v1/games/spear-of-destiny-mission-3-ultimate-challenge" +} diff --git a/site/public/v1/games/special-ops-vehicle-pack/index.json b/site/public/v1/games/special-ops-vehicle-pack/index.json new file mode 100644 index 000000000000..daf0f3f7fa5d --- /dev/null +++ b/site/public/v1/games/special-ops-vehicle-pack/index.json @@ -0,0 +1,27 @@ +{ + "id": 134717, + "slug": "special-ops-vehicle-pack", + "name": "Special Ops Vehicle Pack", + "release_date": "2013-04-10", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60616767" + ], + "created_at": "2026-07-10T10:10:39.430275", + "updated_at": "2026-07-10T10:10:39.430275", + "url": "/v1/games/special-ops-vehicle-pack" +} diff --git a/site/public/v1/games/special-permit-the-expansion-pack-for-cabela-s-big-game-hunter/index.json b/site/public/v1/games/special-permit-the-expansion-pack-for-cabela-s-big-game-hunter/index.json new file mode 100644 index 000000000000..4148d45c88c8 --- /dev/null +++ b/site/public/v1/games/special-permit-the-expansion-pack-for-cabela-s-big-game-hunter/index.json @@ -0,0 +1,33 @@ +{ + "id": 134718, + "slug": "special-permit-the-expansion-pack-for-cabela-s-big-game-hunter", + "name": "Special Permit: The Expansion Pack for Cabela's Big Game Hunter", + "release_date": "1998-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "sports video game" + ], + "stores": [], + "developers": [ + "Activision" + ], + "publishers": [ + "Activision" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7574681" + ], + "created_at": "2026-07-10T10:10:39.430275", + "updated_at": "2026-07-10T10:10:39.430275", + "url": "/v1/games/special-permit-the-expansion-pack-for-cabela-s-big-game-hunter" +} diff --git a/site/public/v1/games/special-s-forces/index.json b/site/public/v1/games/special-s-forces/index.json new file mode 100644 index 000000000000..b75015879cec --- /dev/null +++ b/site/public/v1/games/special-s-forces/index.json @@ -0,0 +1,27 @@ +{ + "id": 134719, + "slug": "special-s-forces", + "name": "Special\"S\"Forces", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122200405" + ], + "created_at": "2026-07-10T10:10:39.430275", + "updated_at": "2026-07-10T10:10:39.430275", + "url": "/v1/games/special-s-forces" +} diff --git a/site/public/v1/games/spellcasting-collection/index.json b/site/public/v1/games/spellcasting-collection/index.json new file mode 100644 index 000000000000..c31dc6762bfe --- /dev/null +++ b/site/public/v1/games/spellcasting-collection/index.json @@ -0,0 +1,31 @@ +{ + "id": 135020, + "slug": "spellcasting-collection", + "name": "Spellcasting Collection", + "release_date": "2019-03-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Legend Entertainment" + ], + "publishers": [ + "Ziggurat Interactive" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113575147" + ], + "created_at": "2026-07-10T10:10:39.511916", + "updated_at": "2026-07-10T10:10:39.511916", + "url": "/v1/games/spellcasting-collection" +} diff --git a/site/public/v1/games/spellforce-2-demons-of-the-past/index.json b/site/public/v1/games/spellforce-2-demons-of-the-past/index.json new file mode 100644 index 000000000000..962f536696fa --- /dev/null +++ b/site/public/v1/games/spellforce-2-demons-of-the-past/index.json @@ -0,0 +1,32 @@ +{ + "id": 135038, + "slug": "spellforce-2-demons-of-the-past", + "name": "SpellForce 2: Demons of the Past", + "release_date": "2014-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "real-time strategy", + "role-playing video game" + ], + "stores": [], + "developers": [], + "publishers": [ + "THQ Nordic" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107649647" + ], + "created_at": "2026-07-10T10:10:39.516917", + "updated_at": "2026-07-10T10:10:39.516917", + "url": "/v1/games/spellforce-2-demons-of-the-past" +} diff --git a/site/public/v1/games/spellforce-2-dragon-storm/index.json b/site/public/v1/games/spellforce-2-dragon-storm/index.json new file mode 100644 index 000000000000..0ee09059005b --- /dev/null +++ b/site/public/v1/games/spellforce-2-dragon-storm/index.json @@ -0,0 +1,33 @@ +{ + "id": 135039, + "slug": "spellforce-2-dragon-storm", + "name": "Spellforce 2: Dragon Storm", + "release_date": "2007-03-23", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "role-playing video game" + ], + "stores": [], + "developers": [ + "EA Phenomic" + ], + "publishers": [ + "JoWooD Entertainment" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7575886" + ], + "created_at": "2026-07-10T10:10:39.516917", + "updated_at": "2026-07-10T10:10:39.516917", + "url": "/v1/games/spellforce-2-dragon-storm" +} diff --git a/site/public/v1/games/spellforce-2-faith-in-destiny/index.json b/site/public/v1/games/spellforce-2-faith-in-destiny/index.json new file mode 100644 index 000000000000..afbfbb20d59f --- /dev/null +++ b/site/public/v1/games/spellforce-2-faith-in-destiny/index.json @@ -0,0 +1,31 @@ +{ + "id": 135040, + "slug": "spellforce-2-faith-in-destiny", + "name": "Spellforce 2: Faith in Destiny", + "release_date": "2012-06-19", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "role-playing video game" + ], + "stores": [], + "developers": [], + "publishers": [ + "THQ Nordic" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7575887" + ], + "created_at": "2026-07-10T10:10:39.516917", + "updated_at": "2026-07-10T10:10:39.516917", + "url": "/v1/games/spellforce-2-faith-in-destiny" +} diff --git a/site/public/v1/games/spellforce-3-fallen-god/index.json b/site/public/v1/games/spellforce-3-fallen-god/index.json new file mode 100644 index 000000000000..6edc7ec4ebbe --- /dev/null +++ b/site/public/v1/games/spellforce-3-fallen-god/index.json @@ -0,0 +1,34 @@ +{ + "id": 135042, + "slug": "spellforce-3-fallen-god", + "name": "SpellForce 3: Fallen God", + "release_date": "2020-11-03", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "strategy video game", + "role-playing video game" + ], + "stores": [], + "developers": [ + "Grimlore Games" + ], + "publishers": [ + "THQ Nordic" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111272747" + ], + "created_at": "2026-07-10T10:10:39.516917", + "updated_at": "2026-07-10T10:10:39.516917", + "url": "/v1/games/spellforce-3-fallen-god" +} diff --git a/site/public/v1/games/spellforce-conquest-of-eo-children-of-nor/index.json b/site/public/v1/games/spellforce-conquest-of-eo-children-of-nor/index.json new file mode 100644 index 000000000000..c351ab50a86e --- /dev/null +++ b/site/public/v1/games/spellforce-conquest-of-eo-children-of-nor/index.json @@ -0,0 +1,25 @@ +{ + "id": 135046, + "slug": "spellforce-conquest-of-eo-children-of-nor", + "name": "Spellforce: Conquest of Eo - Children of Nor", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140456774" + ], + "created_at": "2026-07-10T10:10:39.517916", + "updated_at": "2026-07-10T10:10:39.517916", + "url": "/v1/games/spellforce-conquest-of-eo-children-of-nor" +} diff --git a/site/public/v1/games/spellforce-iii-reforced-complete-edition/index.json b/site/public/v1/games/spellforce-iii-reforced-complete-edition/index.json new file mode 100644 index 000000000000..080551068c41 --- /dev/null +++ b/site/public/v1/games/spellforce-iii-reforced-complete-edition/index.json @@ -0,0 +1,31 @@ +{ + "id": 135048, + "slug": "spellforce-iii-reforced-complete-edition", + "name": "SpellForce III Reforced: Complete Edition", + "release_date": "2022-06-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S" + ], + "genres": [], + "stores": [], + "developers": [ + "Grimlore Games" + ], + "publishers": [ + "THQ Nordic" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112998985" + ], + "created_at": "2026-07-10T10:10:39.518940", + "updated_at": "2026-07-10T10:10:39.518940", + "url": "/v1/games/spellforce-iii-reforced-complete-edition" +} diff --git a/site/public/v1/games/spellforce-shadow-of-the-phoenix/index.json b/site/public/v1/games/spellforce-shadow-of-the-phoenix/index.json new file mode 100644 index 000000000000..7157c2501918 --- /dev/null +++ b/site/public/v1/games/spellforce-shadow-of-the-phoenix/index.json @@ -0,0 +1,25 @@ +{ + "id": 135050, + "slug": "spellforce-shadow-of-the-phoenix", + "name": "SpellForce: Shadow of the Phoenix", + "release_date": "2004-11-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110160659" + ], + "created_at": "2026-07-10T10:10:39.518940", + "updated_at": "2026-07-10T10:10:39.518940", + "url": "/v1/games/spellforce-shadow-of-the-phoenix" +} diff --git a/site/public/v1/games/spellforce-the-breath-of-winter/index.json b/site/public/v1/games/spellforce-the-breath-of-winter/index.json new file mode 100644 index 000000000000..aab9cb2fe7c9 --- /dev/null +++ b/site/public/v1/games/spellforce-the-breath-of-winter/index.json @@ -0,0 +1,25 @@ +{ + "id": 135051, + "slug": "spellforce-the-breath-of-winter", + "name": "SpellForce: The Breath of Winter", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110160641" + ], + "created_at": "2026-07-10T10:10:39.519852", + "updated_at": "2026-07-10T10:10:39.519852", + "url": "/v1/games/spellforce-the-breath-of-winter" +} diff --git a/site/public/v1/games/spellsinger/index.json b/site/public/v1/games/spellsinger/index.json new file mode 100644 index 000000000000..0a25bc7221ab --- /dev/null +++ b/site/public/v1/games/spellsinger/index.json @@ -0,0 +1,29 @@ +{ + "id": 135095, + "slug": "spellsinger", + "name": "Spellsinger", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "arcade video game machine" + ], + "genres": [], + "stores": [], + "developers": [ + "Art & Magic" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105479508" + ], + "created_at": "2026-07-10T10:10:39.531969", + "updated_at": "2026-07-10T10:10:39.531969", + "url": "/v1/games/spellsinger" +} diff --git a/site/public/v1/games/spelltower-q107539541/index.json b/site/public/v1/games/spelltower-q107539541/index.json new file mode 100644 index 000000000000..4ce38cef9968 --- /dev/null +++ b/site/public/v1/games/spelltower-q107539541/index.json @@ -0,0 +1,30 @@ +{ + "id": 135112, + "slug": "spelltower-q107539541", + "name": "SpellTower+", + "release_date": "2021-04-02", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "iPadOS", + "iOS" + ], + "genres": [], + "stores": [], + "developers": [ + "Zach Gage" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107539541" + ], + "created_at": "2026-07-10T10:10:39.535856", + "updated_at": "2026-07-10T10:10:39.535856", + "url": "/v1/games/spelltower-q107539541" +} diff --git a/site/public/v1/games/spheroid-demo/index.json b/site/public/v1/games/spheroid-demo/index.json new file mode 100644 index 000000000000..19c890d2b9f2 --- /dev/null +++ b/site/public/v1/games/spheroid-demo/index.json @@ -0,0 +1,25 @@ +{ + "id": 135184, + "slug": "spheroid-demo", + "name": "Spheroid Demo", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126187849" + ], + "created_at": "2026-07-10T10:10:39.555046", + "updated_at": "2026-07-10T10:10:39.555046", + "url": "/v1/games/spheroid-demo" +} diff --git a/site/public/v1/games/spider-man-the-city-that-never-sleeps/index.json b/site/public/v1/games/spider-man-the-city-that-never-sleeps/index.json new file mode 100644 index 000000000000..2ad39e92483d --- /dev/null +++ b/site/public/v1/games/spider-man-the-city-that-never-sleeps/index.json @@ -0,0 +1,34 @@ +{ + "id": 135252, + "slug": "spider-man-the-city-that-never-sleeps", + "name": "Spider-Man: The City That Never Sleeps", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "action-adventure game", + "science fiction video game", + "superhero video game" + ], + "stores": [], + "developers": [ + "Nixxes Software", + "Insomniac Games" + ], + "publishers": [ + "Sony Interactive Entertainment" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q65040551" + ], + "created_at": "2026-07-10T10:10:39.572561", + "updated_at": "2026-07-10T10:10:39.572561", + "url": "/v1/games/spider-man-the-city-that-never-sleeps" +} diff --git a/site/public/v1/games/spider-solitaire-card-game/index.json b/site/public/v1/games/spider-solitaire-card-game/index.json new file mode 100644 index 000000000000..2d120ac042b3 --- /dev/null +++ b/site/public/v1/games/spider-solitaire-card-game/index.json @@ -0,0 +1,28 @@ +{ + "id": 135267, + "slug": "spider-solitaire-card-game", + "name": "Spider Solitaire: Card Game+", + "release_date": "2022-10-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "iPadOS", + "iOS" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q114840473" + ], + "created_at": "2026-07-10T10:10:39.576491", + "updated_at": "2026-07-10T10:10:39.576491", + "url": "/v1/games/spider-solitaire-card-game" +} diff --git a/site/public/v1/games/spin-n-sauce/index.json b/site/public/v1/games/spin-n-sauce/index.json new file mode 100644 index 000000000000..f35373e2eb1d --- /dev/null +++ b/site/public/v1/games/spin-n-sauce/index.json @@ -0,0 +1,25 @@ +{ + "id": 135322, + "slug": "spin-n-sauce", + "name": "Spin N' Sauce", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q128014912" + ], + "created_at": "2026-07-10T10:10:39.590488", + "updated_at": "2026-07-10T10:10:39.590488", + "url": "/v1/games/spin-n-sauce" +} diff --git a/site/public/v1/games/spirit-riding-free-ride-along-adventure/index.json b/site/public/v1/games/spirit-riding-free-ride-along-adventure/index.json new file mode 100644 index 000000000000..be8a6bd6d967 --- /dev/null +++ b/site/public/v1/games/spirit-riding-free-ride-along-adventure/index.json @@ -0,0 +1,25 @@ +{ + "id": 135459, + "slug": "spirit-riding-free-ride-along-adventure", + "name": "Spirit Riding Free: Ride Along Adventure", + "release_date": "2020-12-08", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q104622584" + ], + "created_at": "2026-07-10T10:10:39.632556", + "updated_at": "2026-07-10T10:10:39.632556", + "url": "/v1/games/spirit-riding-free-ride-along-adventure" +} diff --git a/site/public/v1/games/spitfire-epsom-campaign/index.json b/site/public/v1/games/spitfire-epsom-campaign/index.json new file mode 100644 index 000000000000..eb9190827313 --- /dev/null +++ b/site/public/v1/games/spitfire-epsom-campaign/index.json @@ -0,0 +1,29 @@ +{ + "id": 135538, + "slug": "spitfire-epsom-campaign", + "name": "Spitfire: Epsom Campaign", + "release_date": "2017-11-23", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Eagle Dynamics" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097560" + ], + "created_at": "2026-07-10T10:10:39.653564", + "updated_at": "2026-07-10T10:10:39.653564", + "url": "/v1/games/spitfire-epsom-campaign" +} diff --git a/site/public/v1/games/splatoon-2-octo-expansion/index.json b/site/public/v1/games/splatoon-2-octo-expansion/index.json new file mode 100644 index 000000000000..d1e7004b3844 --- /dev/null +++ b/site/public/v1/games/splatoon-2-octo-expansion/index.json @@ -0,0 +1,31 @@ +{ + "id": 135581, + "slug": "splatoon-2-octo-expansion", + "name": "Splatoon 2: Octo Expansion", + "release_date": "2018-06-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "third-person shooter" + ], + "stores": [], + "developers": [ + "Nintendo Entertainment Planning & Development" + ], + "publishers": [ + "Nintendo" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q65040609" + ], + "created_at": "2026-07-10T10:10:39.664547", + "updated_at": "2026-07-10T10:10:39.664547", + "url": "/v1/games/splatoon-2-octo-expansion" +} diff --git a/site/public/v1/games/splatoon-3-side-order/index.json b/site/public/v1/games/splatoon-3-side-order/index.json new file mode 100644 index 000000000000..90dd37287ded --- /dev/null +++ b/site/public/v1/games/splatoon-3-side-order/index.json @@ -0,0 +1,25 @@ +{ + "id": 135583, + "slug": "splatoon-3-side-order", + "name": "Splatoon 3: Side Order", + "release_date": "2024-02-22", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124656859" + ], + "created_at": "2026-07-10T10:10:39.664547", + "updated_at": "2026-07-10T10:10:39.664547", + "url": "/v1/games/splatoon-3-side-order" +} diff --git a/site/public/v1/games/spleef/index.json b/site/public/v1/games/spleef/index.json new file mode 100644 index 000000000000..60e1d1e71a6c --- /dev/null +++ b/site/public/v1/games/spleef/index.json @@ -0,0 +1,25 @@ +{ + "id": 135598, + "slug": "spleef", + "name": "Spleef", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q114362835" + ], + "created_at": "2026-07-10T10:10:39.668173", + "updated_at": "2026-07-10T10:10:39.668173", + "url": "/v1/games/spleef" +} diff --git a/site/public/v1/games/splinter-cell-trilogy/index.json b/site/public/v1/games/splinter-cell-trilogy/index.json new file mode 100644 index 000000000000..966d5ce35c37 --- /dev/null +++ b/site/public/v1/games/splinter-cell-trilogy/index.json @@ -0,0 +1,27 @@ +{ + "id": 135603, + "slug": "splinter-cell-trilogy", + "name": "Splinter Cell Trilogy", + "release_date": "2011-08-02", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 3" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125658866" + ], + "created_at": "2026-07-10T10:10:39.670159", + "updated_at": "2026-07-10T10:10:39.670159", + "url": "/v1/games/splinter-cell-trilogy" +} diff --git a/site/public/v1/games/splitter-critters-q109562484/index.json b/site/public/v1/games/splitter-critters-q109562484/index.json new file mode 100644 index 000000000000..204ccf29b966 --- /dev/null +++ b/site/public/v1/games/splitter-critters-q109562484/index.json @@ -0,0 +1,28 @@ +{ + "id": 135634, + "slug": "splitter-critters-q109562484", + "name": "Splitter Critters+", + "release_date": "2021-12-10", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "iPadOS", + "iOS" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109562484" + ], + "created_at": "2026-07-10T10:10:39.678201", + "updated_at": "2026-07-10T10:10:39.678201", + "url": "/v1/games/splitter-critters-q109562484" +} diff --git a/site/public/v1/games/spooky-shot/index.json b/site/public/v1/games/spooky-shot/index.json new file mode 100644 index 000000000000..fcba89da743c --- /dev/null +++ b/site/public/v1/games/spooky-shot/index.json @@ -0,0 +1,25 @@ +{ + "id": 135744, + "slug": "spooky-shot", + "name": "Spooky Shot", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q128014913" + ], + "created_at": "2026-07-10T10:10:39.706167", + "updated_at": "2026-07-10T10:10:39.706167", + "url": "/v1/games/spooky-shot" +} diff --git a/site/public/v1/games/spore-bot-parts-pack/index.json b/site/public/v1/games/spore-bot-parts-pack/index.json new file mode 100644 index 000000000000..766ac7a7a1a7 --- /dev/null +++ b/site/public/v1/games/spore-bot-parts-pack/index.json @@ -0,0 +1,31 @@ +{ + "id": 135765, + "slug": "spore-bot-parts-pack", + "name": "Spore Bot Parts Pack", + "release_date": "2010-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Maxis" + ], + "publishers": [ + "Electronic Arts" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112762601" + ], + "created_at": "2026-07-10T10:10:39.712162", + "updated_at": "2026-07-10T10:10:39.712162", + "url": "/v1/games/spore-bot-parts-pack" +} diff --git a/site/public/v1/games/spore-complete-pack/index.json b/site/public/v1/games/spore-complete-pack/index.json new file mode 100644 index 000000000000..55d2c50b4f6b --- /dev/null +++ b/site/public/v1/games/spore-complete-pack/index.json @@ -0,0 +1,27 @@ +{ + "id": 135766, + "slug": "spore-complete-pack", + "name": "Spore Complete Pack", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126884220" + ], + "created_at": "2026-07-10T10:10:39.712162", + "updated_at": "2026-07-10T10:10:39.712162", + "url": "/v1/games/spore-complete-pack" +} diff --git a/site/public/v1/games/spore-creature-creator/index.json b/site/public/v1/games/spore-creature-creator/index.json new file mode 100644 index 000000000000..2e0d60e690ef --- /dev/null +++ b/site/public/v1/games/spore-creature-creator/index.json @@ -0,0 +1,36 @@ +{ + "id": 135767, + "slug": "spore-creature-creator", + "name": "Spore Creature Creator", + "release_date": "2008-06-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "god game", + "science fiction video game", + "biological simulation video game" + ], + "stores": [], + "developers": [ + "Maxis" + ], + "publishers": [ + "Electronic Arts" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3659345" + ], + "created_at": "2026-07-10T10:10:39.712162", + "updated_at": "2026-07-10T10:10:39.712162", + "url": "/v1/games/spore-creature-creator" +} diff --git a/site/public/v1/games/spore-creature-keeper/index.json b/site/public/v1/games/spore-creature-keeper/index.json new file mode 100644 index 000000000000..97e8a3cb1da5 --- /dev/null +++ b/site/public/v1/games/spore-creature-keeper/index.json @@ -0,0 +1,34 @@ +{ + "id": 135768, + "slug": "spore-creature-keeper", + "name": "Spore Creature Keeper", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Nintendo DS", + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Maxis" + ], + "publishers": [ + "Electronic Arts" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7579212" + ], + "created_at": "2026-07-10T10:10:39.712162", + "updated_at": "2026-07-10T10:10:39.712162", + "url": "/v1/games/spore-creature-keeper" +} diff --git a/site/public/v1/games/spore-creepy-cute/index.json b/site/public/v1/games/spore-creepy-cute/index.json new file mode 100644 index 000000000000..28458671ea8c --- /dev/null +++ b/site/public/v1/games/spore-creepy-cute/index.json @@ -0,0 +1,36 @@ +{ + "id": 135770, + "slug": "spore-creepy-cute", + "name": "Spore: Creepy & Cute", + "release_date": "2008-12-19", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "real-time strategy", + "god game", + "life simulation game" + ], + "stores": [], + "developers": [ + "Maxis" + ], + "publishers": [ + "Electronic Arts" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4049977" + ], + "created_at": "2026-07-10T10:10:39.713158", + "updated_at": "2026-07-10T10:10:39.713158", + "url": "/v1/games/spore-creepy-cute" +} diff --git a/site/public/v1/games/spore-galactic-adventures/index.json b/site/public/v1/games/spore-galactic-adventures/index.json new file mode 100644 index 000000000000..2568323b5509 --- /dev/null +++ b/site/public/v1/games/spore-galactic-adventures/index.json @@ -0,0 +1,37 @@ +{ + "id": 135771, + "slug": "spore-galactic-adventures", + "name": "Spore Galactic Adventures", + "release_date": "2009-06-23", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "real-time strategy", + "life simulation game", + "science fiction video game", + "biological simulation video game" + ], + "stores": [], + "developers": [ + "Maxis" + ], + "publishers": [ + "Electronic Arts" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q641801" + ], + "created_at": "2026-07-10T10:10:39.713158", + "updated_at": "2026-07-10T10:10:39.713158", + "url": "/v1/games/spore-galactic-adventures" +} diff --git a/site/public/v1/games/spore-galactic-edition/index.json b/site/public/v1/games/spore-galactic-edition/index.json new file mode 100644 index 000000000000..594519ea08fb --- /dev/null +++ b/site/public/v1/games/spore-galactic-edition/index.json @@ -0,0 +1,25 @@ +{ + "id": 135772, + "slug": "spore-galactic-edition", + "name": "Spore Galactic Edition", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q12336701" + ], + "created_at": "2026-07-10T10:10:39.713158", + "updated_at": "2026-07-10T10:10:39.713158", + "url": "/v1/games/spore-galactic-edition" +} diff --git a/site/public/v1/games/sports-collection-q7579711/index.json b/site/public/v1/games/sports-collection-q7579711/index.json new file mode 100644 index 000000000000..466771501e54 --- /dev/null +++ b/site/public/v1/games/sports-collection-q7579711/index.json @@ -0,0 +1,33 @@ +{ + "id": 135809, + "slug": "sports-collection-q7579711", + "name": "Sports Collection", + "release_date": "1996-09-27", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Game Boy" + ], + "genres": [ + "sports video game" + ], + "stores": [], + "developers": [ + "Tose Co." + ], + "publishers": [ + "Tonkin House" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7579711" + ], + "created_at": "2026-07-10T10:10:39.723370", + "updated_at": "2026-07-10T10:10:39.723370", + "url": "/v1/games/sports-collection-q7579711" +} diff --git a/site/public/v1/games/spy-hunter-nowhere-to-run/index.json b/site/public/v1/games/spy-hunter-nowhere-to-run/index.json new file mode 100644 index 000000000000..dcc34c166c89 --- /dev/null +++ b/site/public/v1/games/spy-hunter-nowhere-to-run/index.json @@ -0,0 +1,33 @@ +{ + "id": 135983, + "slug": "spy-hunter-nowhere-to-run", + "name": "Spy Hunter: Nowhere to Run", + "release_date": "2006-09-05", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "action game" + ], + "stores": [], + "developers": [ + "Terminal Reality" + ], + "publishers": [ + "Midway Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16266983" + ], + "created_at": "2026-07-10T10:10:39.772882", + "updated_at": "2026-07-10T10:10:39.772882", + "url": "/v1/games/spy-hunter-nowhere-to-run" +} diff --git a/site/public/v1/games/spy-hunter-q3967325/index.json b/site/public/v1/games/spy-hunter-q3967325/index.json new file mode 100644 index 000000000000..91705316d2ea --- /dev/null +++ b/site/public/v1/games/spy-hunter-q3967325/index.json @@ -0,0 +1,34 @@ +{ + "id": 135985, + "slug": "spy-hunter-q3967325", + "name": "Spy Hunter", + "release_date": "2012-10-09", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation Vita", + "Nintendo 3DS" + ], + "genres": [ + "vehicular combat game" + ], + "stores": [], + "developers": [ + "TT Fusion" + ], + "publishers": [ + "Warner Bros. Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3967325" + ], + "created_at": "2026-07-10T10:10:39.772882", + "updated_at": "2026-07-10T10:10:39.772882", + "url": "/v1/games/spy-hunter-q3967325" +} diff --git a/site/public/v1/games/spyhunter-nowhere-to-run-terrorist-takedown-3/index.json b/site/public/v1/games/spyhunter-nowhere-to-run-terrorist-takedown-3/index.json new file mode 100644 index 000000000000..a1c4c1318166 --- /dev/null +++ b/site/public/v1/games/spyhunter-nowhere-to-run-terrorist-takedown-3/index.json @@ -0,0 +1,25 @@ +{ + "id": 136019, + "slug": "spyhunter-nowhere-to-run-terrorist-takedown-3", + "name": "SpyHunter: Nowhere to Run / Terrorist Takedown 3", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62482597" + ], + "created_at": "2026-07-10T10:10:39.780888", + "updated_at": "2026-07-10T10:10:39.780888", + "url": "/v1/games/spyhunter-nowhere-to-run-terrorist-takedown-3" +} diff --git a/site/public/v1/games/star-rangers-vr-free-demo/index.json b/site/public/v1/games/star-rangers-vr-free-demo/index.json new file mode 100644 index 000000000000..49b7cc07359b --- /dev/null +++ b/site/public/v1/games/star-rangers-vr-free-demo/index.json @@ -0,0 +1,27 @@ +{ + "id": 136659, + "slug": "star-rangers-vr-free-demo", + "name": "Star Rangers VR - Free Demo", + "release_date": "2017-09-15", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122370423" + ], + "created_at": "2026-07-10T10:10:39.955151", + "updated_at": "2026-07-10T10:10:39.955151", + "url": "/v1/games/star-rangers-vr-free-demo" +} diff --git a/site/public/v1/games/star-trek-first-contact-q78326985/index.json b/site/public/v1/games/star-trek-first-contact-q78326985/index.json new file mode 100644 index 000000000000..4024ed70a146 --- /dev/null +++ b/site/public/v1/games/star-trek-first-contact-q78326985/index.json @@ -0,0 +1,27 @@ +{ + "id": 136756, + "slug": "star-trek-first-contact-q78326985", + "name": "Star Trek: First Contact", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "MicroProse" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q78326985" + ], + "created_at": "2026-07-10T10:10:39.980760", + "updated_at": "2026-07-10T10:10:39.980760", + "url": "/v1/games/star-trek-first-contact-q78326985" +} diff --git a/site/public/v1/games/star-trek-infinite-designing-the-galaxy/index.json b/site/public/v1/games/star-trek-infinite-designing-the-galaxy/index.json new file mode 100644 index 000000000000..1140699890e2 --- /dev/null +++ b/site/public/v1/games/star-trek-infinite-designing-the-galaxy/index.json @@ -0,0 +1,25 @@ +{ + "id": 136762, + "slug": "star-trek-infinite-designing-the-galaxy", + "name": "Star Trek: Infinite – Designing the Galaxy", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125342393" + ], + "created_at": "2026-07-10T10:10:39.981828", + "updated_at": "2026-07-10T10:10:39.981828", + "url": "/v1/games/star-trek-infinite-designing-the-galaxy" +} diff --git a/site/public/v1/games/star-trek-the-next-generation-interactive-vcr-board-game-a-klingon-challenge/index.json b/site/public/v1/games/star-trek-the-next-generation-interactive-vcr-board-game-a-klingon-challenge/index.json new file mode 100644 index 000000000000..896ad63e4107 --- /dev/null +++ b/site/public/v1/games/star-trek-the-next-generation-interactive-vcr-board-game-a-klingon-challenge/index.json @@ -0,0 +1,27 @@ +{ + "id": 136805, + "slug": "star-trek-the-next-generation-interactive-vcr-board-game-a-klingon-challenge", + "name": "Star Trek: The Next Generation Interactive VCR Board Game – A Klingon Challenge", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Milton Bradley Company" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7601019" + ], + "created_at": "2026-07-10T10:10:39.991820", + "updated_at": "2026-07-10T10:10:39.991820", + "url": "/v1/games/star-trek-the-next-generation-interactive-vcr-board-game-a-klingon-challenge" +} diff --git a/site/public/v1/games/star-trek-v-the-final-frontier-q90573432/index.json b/site/public/v1/games/star-trek-v-the-final-frontier-q90573432/index.json new file mode 100644 index 000000000000..e0bcc18ebbbc --- /dev/null +++ b/site/public/v1/games/star-trek-v-the-final-frontier-q90573432/index.json @@ -0,0 +1,25 @@ +{ + "id": 136814, + "slug": "star-trek-v-the-final-frontier-q90573432", + "name": "Star Trek V: The Final Frontier", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q90573432" + ], + "created_at": "2026-07-10T10:10:39.993886", + "updated_at": "2026-07-10T10:10:39.993886", + "url": "/v1/games/star-trek-v-the-final-frontier-q90573432" +} diff --git a/site/public/v1/games/star-wars-1313/index.json b/site/public/v1/games/star-wars-1313/index.json new file mode 100644 index 000000000000..b0cf46171030 --- /dev/null +++ b/site/public/v1/games/star-wars-1313/index.json @@ -0,0 +1,37 @@ +{ + "id": 136835, + "slug": "star-wars-1313", + "name": "Star Wars 1313", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "action-adventure game" + ], + "stores": [], + "developers": [ + "Skywalker Sound", + "Lucasfilm Animation", + "Industrial Light & Magic", + "Lucasfilm Games" + ], + "publishers": [ + "Lucasfilm Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2615234" + ], + "created_at": "2026-07-10T10:10:39.998926", + "updated_at": "2026-07-10T10:10:39.998926", + "url": "/v1/games/star-wars-1313" +} diff --git a/site/public/v1/games/star-wars-battle-of-the-sith-lords/index.json b/site/public/v1/games/star-wars-battle-of-the-sith-lords/index.json new file mode 100644 index 000000000000..06fee3e1214f --- /dev/null +++ b/site/public/v1/games/star-wars-battle-of-the-sith-lords/index.json @@ -0,0 +1,25 @@ +{ + "id": 136839, + "slug": "star-wars-battle-of-the-sith-lords", + "name": "Star Wars: Battle of the Sith Lords", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140454740" + ], + "created_at": "2026-07-10T10:10:39.999898", + "updated_at": "2026-07-10T10:10:39.999898", + "url": "/v1/games/star-wars-battle-of-the-sith-lords" +} diff --git a/site/public/v1/games/star-wars-battlefront-classic-collection/index.json b/site/public/v1/games/star-wars-battlefront-classic-collection/index.json new file mode 100644 index 000000000000..2aab49bb913e --- /dev/null +++ b/site/public/v1/games/star-wars-battlefront-classic-collection/index.json @@ -0,0 +1,36 @@ +{ + "id": 136841, + "slug": "star-wars-battlefront-classic-collection", + "name": "Star Wars: Battlefront Classic Collection", + "release_date": "2024-03-14", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 5", + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "third-person shooter" + ], + "stores": [], + "developers": [ + "Aspyr" + ], + "publishers": [ + "Aspyr" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124629292" + ], + "created_at": "2026-07-10T10:10:39.999898", + "updated_at": "2026-07-10T10:10:39.999898", + "url": "/v1/games/star-wars-battlefront-classic-collection" +} diff --git a/site/public/v1/games/star-wars-battlefront-iii/index.json b/site/public/v1/games/star-wars-battlefront-iii/index.json new file mode 100644 index 000000000000..5d1f3ef4a93f --- /dev/null +++ b/site/public/v1/games/star-wars-battlefront-iii/index.json @@ -0,0 +1,27 @@ +{ + "id": 136845, + "slug": "star-wars-battlefront-iii", + "name": "Star Wars: Battlefront III", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [ + "Crytek UK" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123578682" + ], + "created_at": "2026-07-10T10:10:40.000909", + "updated_at": "2026-07-10T10:10:40.000909", + "url": "/v1/games/star-wars-battlefront-iii" +} diff --git a/site/public/v1/games/star-wars-battlefront/index.json b/site/public/v1/games/star-wars-battlefront/index.json new file mode 100644 index 000000000000..87947a3d1625 --- /dev/null +++ b/site/public/v1/games/star-wars-battlefront/index.json @@ -0,0 +1,37 @@ +{ + "id": 136848, + "slug": "star-wars-battlefront", + "name": "Star Wars Battlefront", + "release_date": "2015-11-17", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "third-person shooter", + "science fiction video game", + "space opera video game" + ], + "stores": [], + "developers": [ + "DICE" + ], + "publishers": [ + "Electronic Arts" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q54862" + ], + "created_at": "2026-07-10T10:10:40.001918", + "updated_at": "2026-07-10T10:10:40.001918", + "url": "/v1/games/star-wars-battlefront" +} diff --git a/site/public/v1/games/star-wars-empire-at-war-forces-of-corruption/index.json b/site/public/v1/games/star-wars-empire-at-war-forces-of-corruption/index.json new file mode 100644 index 000000000000..7b1567dff2dd --- /dev/null +++ b/site/public/v1/games/star-wars-empire-at-war-forces-of-corruption/index.json @@ -0,0 +1,33 @@ +{ + "id": 136862, + "slug": "star-wars-empire-at-war-forces-of-corruption", + "name": "Star Wars: Empire at War: Forces of Corruption", + "release_date": "2006-10-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "real-time strategy" + ], + "stores": [], + "developers": [ + "Petroglyph Games" + ], + "publishers": [ + "Lucasfilm Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1300773" + ], + "created_at": "2026-07-10T10:10:40.004902", + "updated_at": "2026-07-10T10:10:40.004902", + "url": "/v1/games/star-wars-empire-at-war-forces-of-corruption" +} diff --git a/site/public/v1/games/star-wars-galactic-battlegrounds-clone-campaigns/index.json b/site/public/v1/games/star-wars-galactic-battlegrounds-clone-campaigns/index.json new file mode 100644 index 000000000000..af354905896e --- /dev/null +++ b/site/public/v1/games/star-wars-galactic-battlegrounds-clone-campaigns/index.json @@ -0,0 +1,29 @@ +{ + "id": 136878, + "slug": "star-wars-galactic-battlegrounds-clone-campaigns", + "name": "Star Wars: Galactic Battlegrounds: Clone Campaigns", + "release_date": "2002-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Lucasfilm Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3968345" + ], + "created_at": "2026-07-10T10:10:40.008323", + "updated_at": "2026-07-10T10:10:40.008323", + "url": "/v1/games/star-wars-galactic-battlegrounds-clone-campaigns" +} diff --git a/site/public/v1/games/star-wars-galaxies-episode-iii-rage-of-the-wookiees/index.json b/site/public/v1/games/star-wars-galaxies-episode-iii-rage-of-the-wookiees/index.json new file mode 100644 index 000000000000..7b216f94124a --- /dev/null +++ b/site/public/v1/games/star-wars-galaxies-episode-iii-rage-of-the-wookiees/index.json @@ -0,0 +1,33 @@ +{ + "id": 136882, + "slug": "star-wars-galaxies-episode-iii-rage-of-the-wookiees", + "name": "Star Wars Galaxies: Episode III Rage of the Wookiees", + "release_date": "2005-05-05", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "massively multiplayer online role-playing game" + ], + "stores": [], + "developers": [ + "Daybreak Game Company" + ], + "publishers": [ + "Lucasfilm Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q55281" + ], + "created_at": "2026-07-10T10:10:40.008964", + "updated_at": "2026-07-10T10:10:40.008964", + "url": "/v1/games/star-wars-galaxies-episode-iii-rage-of-the-wookiees" +} diff --git a/site/public/v1/games/star-wars-galaxies-jump-to-lightspeed/index.json b/site/public/v1/games/star-wars-galaxies-jump-to-lightspeed/index.json new file mode 100644 index 000000000000..4bb9b8ba9391 --- /dev/null +++ b/site/public/v1/games/star-wars-galaxies-jump-to-lightspeed/index.json @@ -0,0 +1,33 @@ +{ + "id": 136883, + "slug": "star-wars-galaxies-jump-to-lightspeed", + "name": "Star Wars Galaxies: Jump to Lightspeed", + "release_date": "2004-10-27", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "massively multiplayer online role-playing game" + ], + "stores": [], + "developers": [ + "Daybreak Game Company" + ], + "publishers": [ + "Lucasfilm Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q55278" + ], + "created_at": "2026-07-10T10:10:40.008964", + "updated_at": "2026-07-10T10:10:40.008964", + "url": "/v1/games/star-wars-galaxies-jump-to-lightspeed" +} diff --git a/site/public/v1/games/star-wars-galaxies-the-complete-online-adventures/index.json b/site/public/v1/games/star-wars-galaxies-the-complete-online-adventures/index.json new file mode 100644 index 000000000000..0f438dadb239 --- /dev/null +++ b/site/public/v1/games/star-wars-galaxies-the-complete-online-adventures/index.json @@ -0,0 +1,29 @@ +{ + "id": 136884, + "slug": "star-wars-galaxies-the-complete-online-adventures", + "name": "Star Wars Galaxies: The Complete Online Adventures", + "release_date": "2006-11-14", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "massively multiplayer online role-playing game" + ], + "stores": [], + "developers": [], + "publishers": [ + "Lucasfilm Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110817132" + ], + "created_at": "2026-07-10T10:10:40.009471", + "updated_at": "2026-07-10T10:10:40.009471", + "url": "/v1/games/star-wars-galaxies-the-complete-online-adventures" +} diff --git a/site/public/v1/games/star-wars-galaxies-trials-of-obi-wan/index.json b/site/public/v1/games/star-wars-galaxies-trials-of-obi-wan/index.json new file mode 100644 index 000000000000..03e75ad3229b --- /dev/null +++ b/site/public/v1/games/star-wars-galaxies-trials-of-obi-wan/index.json @@ -0,0 +1,27 @@ +{ + "id": 136885, + "slug": "star-wars-galaxies-trials-of-obi-wan", + "name": "Star Wars Galaxies: Trials of Obi-Wan", + "release_date": "2005-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q21190230" + ], + "created_at": "2026-07-10T10:10:40.009471", + "updated_at": "2026-07-10T10:10:40.009471", + "url": "/v1/games/star-wars-galaxies-trials-of-obi-wan" +} diff --git a/site/public/v1/games/star-wars-jedi-knight-mysteries-of-the-sith/index.json b/site/public/v1/games/star-wars-jedi-knight-mysteries-of-the-sith/index.json new file mode 100644 index 000000000000..bc886e3d74b5 --- /dev/null +++ b/site/public/v1/games/star-wars-jedi-knight-mysteries-of-the-sith/index.json @@ -0,0 +1,33 @@ +{ + "id": 136898, + "slug": "star-wars-jedi-knight-mysteries-of-the-sith", + "name": "Star Wars Jedi Knight: Mysteries of the Sith", + "release_date": "1998-02-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter" + ], + "stores": [], + "developers": [ + "Lucasfilm Games" + ], + "publishers": [ + "Lucasfilm Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q55301" + ], + "created_at": "2026-07-10T10:10:40.012820", + "updated_at": "2026-07-10T10:10:40.012820", + "url": "/v1/games/star-wars-jedi-knight-mysteries-of-the-sith" +} diff --git a/site/public/v1/games/star-wars-rebel-assault-ii-the-hidden-empire-rebel-assault/index.json b/site/public/v1/games/star-wars-rebel-assault-ii-the-hidden-empire-rebel-assault/index.json new file mode 100644 index 000000000000..e42dfaeb6a59 --- /dev/null +++ b/site/public/v1/games/star-wars-rebel-assault-ii-the-hidden-empire-rebel-assault/index.json @@ -0,0 +1,37 @@ +{ + "id": 136922, + "slug": "star-wars-rebel-assault-ii-the-hidden-empire-rebel-assault", + "name": "Star Wars Rebel Assault II: The Hidden Empire / Rebel Assault", + "release_date": "1996-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "IBM PC compatible", + "macOS", + "Microsoft Windows" + ], + "genres": [ + "action game", + "rail shooter" + ], + "stores": [], + "developers": [ + "Factor 5", + "Lucasfilm Games" + ], + "publishers": [ + "Lucasfilm Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q29582645" + ], + "created_at": "2026-07-10T10:10:40.018265", + "updated_at": "2026-07-10T10:10:40.018265", + "url": "/v1/games/star-wars-rebel-assault-ii-the-hidden-empire-rebel-assault" +} diff --git a/site/public/v1/games/star-wars-return-of-the-jedi-ewok-adventure/index.json b/site/public/v1/games/star-wars-return-of-the-jedi-ewok-adventure/index.json new file mode 100644 index 000000000000..1cbe3e916c18 --- /dev/null +++ b/site/public/v1/games/star-wars-return-of-the-jedi-ewok-adventure/index.json @@ -0,0 +1,31 @@ +{ + "id": 136928, + "slug": "star-wars-return-of-the-jedi-ewok-adventure", + "name": "Star Wars: Return of the Jedi: Ewok Adventure", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Atari 2600" + ], + "genres": [ + "shoot 'em up" + ], + "stores": [], + "developers": [ + "Atari Games" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q54332" + ], + "created_at": "2026-07-10T10:10:40.019279", + "updated_at": "2026-07-10T10:10:40.019279", + "url": "/v1/games/star-wars-return-of-the-jedi-ewok-adventure" +} diff --git a/site/public/v1/games/star-wars-the-force-unleashed-ultimate-sith-edition/index.json b/site/public/v1/games/star-wars-the-force-unleashed-ultimate-sith-edition/index.json new file mode 100644 index 000000000000..111c130de4fa --- /dev/null +++ b/site/public/v1/games/star-wars-the-force-unleashed-ultimate-sith-edition/index.json @@ -0,0 +1,28 @@ +{ + "id": 136950, + "slug": "star-wars-the-force-unleashed-ultimate-sith-edition", + "name": "Star Wars: The Force Unleashed - Ultimate Sith Edition", + "release_date": "2009-11-03", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q12072563" + ], + "created_at": "2026-07-10T10:10:40.024341", + "updated_at": "2026-07-10T10:10:40.024341", + "url": "/v1/games/star-wars-the-force-unleashed-ultimate-sith-edition" +} diff --git a/site/public/v1/games/star-wars-the-interactive-video-board-game/index.json b/site/public/v1/games/star-wars-the-interactive-video-board-game/index.json new file mode 100644 index 000000000000..81b08ea968ce --- /dev/null +++ b/site/public/v1/games/star-wars-the-interactive-video-board-game/index.json @@ -0,0 +1,27 @@ +{ + "id": 136952, + "slug": "star-wars-the-interactive-video-board-game", + "name": "Star Wars: The Interactive Video Board Game", + "release_date": "1996-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Parker Brothers" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7601107" + ], + "created_at": "2026-07-10T10:10:40.025361", + "updated_at": "2026-07-10T10:10:40.025361", + "url": "/v1/games/star-wars-the-interactive-video-board-game" +} diff --git a/site/public/v1/games/star-wars-the-old-republic-galactic-starfighter/index.json b/site/public/v1/games/star-wars-the-old-republic-galactic-starfighter/index.json new file mode 100644 index 000000000000..27d77510d276 --- /dev/null +++ b/site/public/v1/games/star-wars-the-old-republic-galactic-starfighter/index.json @@ -0,0 +1,34 @@ +{ + "id": 136954, + "slug": "star-wars-the-old-republic-galactic-starfighter", + "name": "Star Wars: The Old Republic: Galactic Starfighter", + "release_date": "2014-02-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "massively multiplayer online role-playing game" + ], + "stores": [], + "developers": [ + "BioWare" + ], + "publishers": [ + "Electronic Arts", + "Lucasfilm Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q102209235" + ], + "created_at": "2026-07-10T10:10:40.025361", + "updated_at": "2026-07-10T10:10:40.025361", + "url": "/v1/games/star-wars-the-old-republic-galactic-starfighter" +} diff --git a/site/public/v1/games/star-wars-the-old-republic-galactic-strongholds/index.json b/site/public/v1/games/star-wars-the-old-republic-galactic-strongholds/index.json new file mode 100644 index 000000000000..a045e728d860 --- /dev/null +++ b/site/public/v1/games/star-wars-the-old-republic-galactic-strongholds/index.json @@ -0,0 +1,34 @@ +{ + "id": 136955, + "slug": "star-wars-the-old-republic-galactic-strongholds", + "name": "Star Wars: The Old Republic: Galactic Strongholds", + "release_date": "2014-10-14", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "massively multiplayer online role-playing game" + ], + "stores": [], + "developers": [ + "BioWare" + ], + "publishers": [ + "Electronic Arts", + "Lucasfilm Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q102209255" + ], + "created_at": "2026-07-10T10:10:40.025361", + "updated_at": "2026-07-10T10:10:40.025361", + "url": "/v1/games/star-wars-the-old-republic-galactic-strongholds" +} diff --git a/site/public/v1/games/star-wars-the-old-republic-knights-of-the-eternal-throne/index.json b/site/public/v1/games/star-wars-the-old-republic-knights-of-the-eternal-throne/index.json new file mode 100644 index 000000000000..ebb3799c00ab --- /dev/null +++ b/site/public/v1/games/star-wars-the-old-republic-knights-of-the-eternal-throne/index.json @@ -0,0 +1,34 @@ +{ + "id": 136956, + "slug": "star-wars-the-old-republic-knights-of-the-eternal-throne", + "name": "Star Wars: The Old Republic: Knights of the Eternal Throne", + "release_date": "2016-12-02", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "massively multiplayer online role-playing game" + ], + "stores": [], + "developers": [ + "BioWare" + ], + "publishers": [ + "Electronic Arts", + "Lucasfilm Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q102209331" + ], + "created_at": "2026-07-10T10:10:40.025361", + "updated_at": "2026-07-10T10:10:40.025361", + "url": "/v1/games/star-wars-the-old-republic-knights-of-the-eternal-throne" +} diff --git a/site/public/v1/games/star-wars-the-old-republic-knights-of-the-fallen-empire/index.json b/site/public/v1/games/star-wars-the-old-republic-knights-of-the-fallen-empire/index.json new file mode 100644 index 000000000000..ce5df987f6c2 --- /dev/null +++ b/site/public/v1/games/star-wars-the-old-republic-knights-of-the-fallen-empire/index.json @@ -0,0 +1,34 @@ +{ + "id": 136957, + "slug": "star-wars-the-old-republic-knights-of-the-fallen-empire", + "name": "Star Wars: The Old Republic: Knights of the Fallen Empire", + "release_date": "2015-10-27", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "massively multiplayer online role-playing game" + ], + "stores": [], + "developers": [ + "BioWare" + ], + "publishers": [ + "Electronic Arts", + "Lucasfilm Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q102209322" + ], + "created_at": "2026-07-10T10:10:40.025361", + "updated_at": "2026-07-10T10:10:40.025361", + "url": "/v1/games/star-wars-the-old-republic-knights-of-the-fallen-empire" +} diff --git a/site/public/v1/games/star-wars-the-old-republic-onslaught/index.json b/site/public/v1/games/star-wars-the-old-republic-onslaught/index.json new file mode 100644 index 000000000000..63fe4be45d8f --- /dev/null +++ b/site/public/v1/games/star-wars-the-old-republic-onslaught/index.json @@ -0,0 +1,34 @@ +{ + "id": 136959, + "slug": "star-wars-the-old-republic-onslaught", + "name": "Star Wars: The Old Republic: Onslaught", + "release_date": "2019-10-22", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "massively multiplayer online role-playing game" + ], + "stores": [], + "developers": [ + "BioWare" + ], + "publishers": [ + "Electronic Arts", + "Lucasfilm Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q102209345" + ], + "created_at": "2026-07-10T10:10:40.026327", + "updated_at": "2026-07-10T10:10:40.026327", + "url": "/v1/games/star-wars-the-old-republic-onslaught" +} diff --git a/site/public/v1/games/star-wars-the-old-republic-rise-of-the-hutt-cartel/index.json b/site/public/v1/games/star-wars-the-old-republic-rise-of-the-hutt-cartel/index.json new file mode 100644 index 000000000000..46d23c2be9c9 --- /dev/null +++ b/site/public/v1/games/star-wars-the-old-republic-rise-of-the-hutt-cartel/index.json @@ -0,0 +1,35 @@ +{ + "id": 136960, + "slug": "star-wars-the-old-republic-rise-of-the-hutt-cartel", + "name": "Star Wars: The Old Republic: Rise of the Hutt Cartel", + "release_date": "2013-04-14", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "massively multiplayer online role-playing game", + "space opera video game" + ], + "stores": [], + "developers": [ + "BioWare" + ], + "publishers": [ + "Electronic Arts", + "Lucasfilm Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q102208645" + ], + "created_at": "2026-07-10T10:10:40.026327", + "updated_at": "2026-07-10T10:10:40.026327", + "url": "/v1/games/star-wars-the-old-republic-rise-of-the-hutt-cartel" +} diff --git a/site/public/v1/games/star-wars-the-old-republic-shadow-of-revan/index.json b/site/public/v1/games/star-wars-the-old-republic-shadow-of-revan/index.json new file mode 100644 index 000000000000..8e1be4cc9097 --- /dev/null +++ b/site/public/v1/games/star-wars-the-old-republic-shadow-of-revan/index.json @@ -0,0 +1,34 @@ +{ + "id": 136961, + "slug": "star-wars-the-old-republic-shadow-of-revan", + "name": "Star Wars: The Old Republic: Shadow of Revan", + "release_date": "2014-12-09", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "massively multiplayer online role-playing game" + ], + "stores": [], + "developers": [ + "BioWare" + ], + "publishers": [ + "Electronic Arts", + "Lucasfilm Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q102209286" + ], + "created_at": "2026-07-10T10:10:40.026327", + "updated_at": "2026-07-10T10:10:40.026327", + "url": "/v1/games/star-wars-the-old-republic-shadow-of-revan" +} diff --git a/site/public/v1/games/star-wars-tie-fighter-collector-s-cd-rom/index.json b/site/public/v1/games/star-wars-tie-fighter-collector-s-cd-rom/index.json new file mode 100644 index 000000000000..b4a2813bda15 --- /dev/null +++ b/site/public/v1/games/star-wars-tie-fighter-collector-s-cd-rom/index.json @@ -0,0 +1,33 @@ +{ + "id": 136963, + "slug": "star-wars-tie-fighter-collector-s-cd-rom", + "name": "Star Wars: TIE Fighter - Collector's CD-ROM", + "release_date": "1995-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "IBM PC compatible" + ], + "genres": [ + "space combat simulation game" + ], + "stores": [], + "developers": [ + "Totally Games" + ], + "publishers": [ + "Lucasfilm Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q29646863" + ], + "created_at": "2026-07-10T10:10:40.027374", + "updated_at": "2026-07-10T10:10:40.027374", + "url": "/v1/games/star-wars-tie-fighter-collector-s-cd-rom" +} diff --git a/site/public/v1/games/star-wars-tie-fighter-special-edition/index.json b/site/public/v1/games/star-wars-tie-fighter-special-edition/index.json new file mode 100644 index 000000000000..1828075da84f --- /dev/null +++ b/site/public/v1/games/star-wars-tie-fighter-special-edition/index.json @@ -0,0 +1,34 @@ +{ + "id": 136966, + "slug": "star-wars-tie-fighter-special-edition", + "name": "Star Wars: TIE Fighter - Special Edition", + "release_date": "2014-10-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "IBM PC compatible", + "Mac" + ], + "genres": [ + "space combat simulation game" + ], + "stores": [], + "developers": [ + "Totally Games" + ], + "publishers": [ + "Disney Interactive Studios" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q29646926" + ], + "created_at": "2026-07-10T10:10:40.027374", + "updated_at": "2026-07-10T10:10:40.027374", + "url": "/v1/games/star-wars-tie-fighter-special-edition" +} diff --git a/site/public/v1/games/star-wars-x-wing-collector-series/index.json b/site/public/v1/games/star-wars-x-wing-collector-series/index.json new file mode 100644 index 000000000000..0045ebe141e4 --- /dev/null +++ b/site/public/v1/games/star-wars-x-wing-collector-series/index.json @@ -0,0 +1,34 @@ +{ + "id": 136976, + "slug": "star-wars-x-wing-collector-series", + "name": "Star Wars: X-Wing - Collector Series", + "release_date": "1998-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "IBM PC compatible", + "Mac" + ], + "genres": [ + "space combat simulation game" + ], + "stores": [], + "developers": [ + "Totally Games" + ], + "publishers": [ + "Lucasfilm Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q29649749" + ], + "created_at": "2026-07-10T10:10:40.029272", + "updated_at": "2026-07-10T10:10:40.029272", + "url": "/v1/games/star-wars-x-wing-collector-series" +} diff --git a/site/public/v1/games/star-wars-x-wing-tour-of-duty-imperial-pursuit/index.json b/site/public/v1/games/star-wars-x-wing-tour-of-duty-imperial-pursuit/index.json new file mode 100644 index 000000000000..147a96a7f1d7 --- /dev/null +++ b/site/public/v1/games/star-wars-x-wing-tour-of-duty-imperial-pursuit/index.json @@ -0,0 +1,33 @@ +{ + "id": 136978, + "slug": "star-wars-x-wing-tour-of-duty-imperial-pursuit", + "name": "Star Wars X-Wing: Tour of Duty – Imperial Pursuit", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "IBM PC compatible", + "Mac" + ], + "genres": [ + "space combat simulation game" + ], + "stores": [], + "developers": [], + "publishers": [ + "Lucasfilm Games", + "Disney Interactive Studios" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q29645143" + ], + "created_at": "2026-07-10T10:10:40.030346", + "updated_at": "2026-07-10T10:10:40.030346", + "url": "/v1/games/star-wars-x-wing-tour-of-duty-imperial-pursuit" +} diff --git a/site/public/v1/games/star-wars-x-wing-vs-tie-fighter-balance-of-power-campaigns/index.json b/site/public/v1/games/star-wars-x-wing-vs-tie-fighter-balance-of-power-campaigns/index.json new file mode 100644 index 000000000000..57be4c9d48c6 --- /dev/null +++ b/site/public/v1/games/star-wars-x-wing-vs-tie-fighter-balance-of-power-campaigns/index.json @@ -0,0 +1,34 @@ +{ + "id": 136980, + "slug": "star-wars-x-wing-vs-tie-fighter-balance-of-power-campaigns", + "name": "Star Wars: X-Wing vs. TIE Fighter - Balance of Power Campaigns", + "release_date": "1997-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Classic Mac OS", + "IBM PC compatible" + ], + "genres": [ + "space combat simulation game" + ], + "stores": [], + "developers": [ + "Totally Games" + ], + "publishers": [ + "Lucasfilm Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q29649653" + ], + "created_at": "2026-07-10T10:10:40.030346", + "updated_at": "2026-07-10T10:10:40.030346", + "url": "/v1/games/star-wars-x-wing-vs-tie-fighter-balance-of-power-campaigns" +} diff --git a/site/public/v1/games/star-wars-x-wing-vs-tie-fighter-balance-of-power/index.json b/site/public/v1/games/star-wars-x-wing-vs-tie-fighter-balance-of-power/index.json new file mode 100644 index 000000000000..47304a8da84d --- /dev/null +++ b/site/public/v1/games/star-wars-x-wing-vs-tie-fighter-balance-of-power/index.json @@ -0,0 +1,34 @@ +{ + "id": 136981, + "slug": "star-wars-x-wing-vs-tie-fighter-balance-of-power", + "name": "Star Wars: X-Wing vs. TIE Fighter - Balance of Power", + "release_date": "2014-10-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "IBM PC compatible", + "Microsoft Windows" + ], + "genres": [ + "space combat simulation game" + ], + "stores": [], + "developers": [ + "Totally Games" + ], + "publishers": [ + "Disney Interactive Studios" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q29649947" + ], + "created_at": "2026-07-10T10:10:40.030346", + "updated_at": "2026-07-10T10:10:40.030346", + "url": "/v1/games/star-wars-x-wing-vs-tie-fighter-balance-of-power" +} diff --git a/site/public/v1/games/star-wolves-3-ashes-of-victory/index.json b/site/public/v1/games/star-wolves-3-ashes-of-victory/index.json new file mode 100644 index 000000000000..5c11d802bed5 --- /dev/null +++ b/site/public/v1/games/star-wolves-3-ashes-of-victory/index.json @@ -0,0 +1,25 @@ +{ + "id": 136991, + "slug": "star-wolves-3-ashes-of-victory", + "name": "Star Wolves 3: Ashes of Victory", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120800608" + ], + "created_at": "2026-07-10T10:10:40.033342", + "updated_at": "2026-07-10T10:10:40.033342", + "url": "/v1/games/star-wolves-3-ashes-of-victory" +} diff --git a/site/public/v1/games/star-worlds-arcade/index.json b/site/public/v1/games/star-worlds-arcade/index.json new file mode 100644 index 000000000000..c97228ee5abf --- /dev/null +++ b/site/public/v1/games/star-worlds-arcade/index.json @@ -0,0 +1,25 @@ +{ + "id": 136995, + "slug": "star-worlds-arcade", + "name": "Star Worlds Arcade", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q30589410" + ], + "created_at": "2026-07-10T10:10:40.034349", + "updated_at": "2026-07-10T10:10:40.034349", + "url": "/v1/games/star-worlds-arcade" +} diff --git a/site/public/v1/games/starblazer-q105703007/index.json b/site/public/v1/games/starblazer-q105703007/index.json new file mode 100644 index 000000000000..4605c69b6467 --- /dev/null +++ b/site/public/v1/games/starblazer-q105703007/index.json @@ -0,0 +1,29 @@ +{ + "id": 137029, + "slug": "starblazer-q105703007", + "name": "Starblazer", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "science fiction video game" + ], + "stores": [], + "developers": [], + "publishers": [ + "Sega" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105703007" + ], + "created_at": "2026-07-10T10:10:40.043278", + "updated_at": "2026-07-10T10:10:40.043278", + "url": "/v1/games/starblazer-q105703007" +} diff --git a/site/public/v1/games/starcraft-brood-war/index.json b/site/public/v1/games/starcraft-brood-war/index.json new file mode 100644 index 000000000000..9733f770801b --- /dev/null +++ b/site/public/v1/games/starcraft-brood-war/index.json @@ -0,0 +1,38 @@ +{ + "id": 137065, + "slug": "starcraft-brood-war", + "name": "StarCraft: Brood War", + "release_date": "1998-11-30", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Classic Mac OS", + "personal computer", + "macOS", + "Microsoft Windows" + ], + "genres": [ + "real-time strategy" + ], + "stores": [], + "developers": [ + "Saffire", + "Blizzard Entertainment" + ], + "publishers": [ + "Blizzard Entertainment", + "Sierra Entertainment" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q840409" + ], + "created_at": "2026-07-10T10:10:40.053418", + "updated_at": "2026-07-10T10:10:40.053418", + "url": "/v1/games/starcraft-brood-war" +} diff --git a/site/public/v1/games/starcraft-ghost/index.json b/site/public/v1/games/starcraft-ghost/index.json new file mode 100644 index 000000000000..5be61777abde --- /dev/null +++ b/site/public/v1/games/starcraft-ghost/index.json @@ -0,0 +1,32 @@ +{ + "id": 137066, + "slug": "starcraft-ghost", + "name": "StarCraft: Ghost", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "action game", + "third-person shooter" + ], + "stores": [], + "developers": [ + "Blizzard Entertainment" + ], + "publishers": [ + "Blizzard Entertainment" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q605211" + ], + "created_at": "2026-07-10T10:10:40.053418", + "updated_at": "2026-07-10T10:10:40.053418", + "url": "/v1/games/starcraft-ghost" +} diff --git a/site/public/v1/games/starcraft-ii-heart-of-the-swarm/index.json b/site/public/v1/games/starcraft-ii-heart-of-the-swarm/index.json new file mode 100644 index 000000000000..8e10ff7f1d5a --- /dev/null +++ b/site/public/v1/games/starcraft-ii-heart-of-the-swarm/index.json @@ -0,0 +1,34 @@ +{ + "id": 137067, + "slug": "starcraft-ii-heart-of-the-swarm", + "name": "StarCraft II: Heart of the Swarm", + "release_date": "2013-03-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "real-time strategy" + ], + "stores": [], + "developers": [ + "Blizzard Entertainment" + ], + "publishers": [ + "Activision Blizzard" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1207938" + ], + "created_at": "2026-07-10T10:10:40.053418", + "updated_at": "2026-07-10T10:10:40.054413", + "url": "/v1/games/starcraft-ii-heart-of-the-swarm" +} diff --git a/site/public/v1/games/starcraft-insurrection/index.json b/site/public/v1/games/starcraft-insurrection/index.json new file mode 100644 index 000000000000..d61a45fdcf3e --- /dev/null +++ b/site/public/v1/games/starcraft-insurrection/index.json @@ -0,0 +1,30 @@ +{ + "id": 137068, + "slug": "starcraft-insurrection", + "name": "StarCraft: Insurrection", + "release_date": "1998-07-31", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Classic Mac OS", + "Microsoft Windows" + ], + "genres": [ + "real-time strategy" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3496925" + ], + "created_at": "2026-07-10T10:10:40.054413", + "updated_at": "2026-07-10T10:10:40.054413", + "url": "/v1/games/starcraft-insurrection" +} diff --git a/site/public/v1/games/starcraft-retribution/index.json b/site/public/v1/games/starcraft-retribution/index.json new file mode 100644 index 000000000000..2a085b84a2f8 --- /dev/null +++ b/site/public/v1/games/starcraft-retribution/index.json @@ -0,0 +1,34 @@ +{ + "id": 137070, + "slug": "starcraft-retribution", + "name": "StarCraft: Retribution", + "release_date": "1998-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Classic Mac OS", + "Microsoft Windows" + ], + "genres": [ + "real-time strategy" + ], + "stores": [], + "developers": [ + "Stardock" + ], + "publishers": [ + "WizardWorks Software" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4050028" + ], + "created_at": "2026-07-10T10:10:40.054413", + "updated_at": "2026-07-10T10:10:40.054413", + "url": "/v1/games/starcraft-retribution" +} diff --git a/site/public/v1/games/starcraft/index.json b/site/public/v1/games/starcraft/index.json new file mode 100644 index 000000000000..2df03c57177f --- /dev/null +++ b/site/public/v1/games/starcraft/index.json @@ -0,0 +1,34 @@ +{ + "id": 137071, + "slug": "starcraft", + "name": "StarCraft", + "release_date": "1998-06-23", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Classic Mac OS", + "Microsoft Windows" + ], + "genres": [ + "real-time strategy" + ], + "stores": [], + "developers": [ + "Blizzard Entertainment" + ], + "publishers": [ + "Blizzard Entertainment" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122860706" + ], + "created_at": "2026-07-10T10:10:40.054413", + "updated_at": "2026-07-10T10:10:40.054413", + "url": "/v1/games/starcraft" +} diff --git a/site/public/v1/games/stardew-valley-q122704284/index.json b/site/public/v1/games/stardew-valley-q122704284/index.json new file mode 100644 index 000000000000..76e463cd467b --- /dev/null +++ b/site/public/v1/games/stardew-valley-q122704284/index.json @@ -0,0 +1,28 @@ +{ + "id": 137084, + "slug": "stardew-valley-q122704284", + "name": "Stardew Valley+", + "release_date": "2023-07-21", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "iPadOS", + "iOS" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122704284" + ], + "created_at": "2026-07-10T10:10:40.058431", + "updated_at": "2026-07-10T10:10:40.058431", + "url": "/v1/games/stardew-valley-q122704284" +} diff --git a/site/public/v1/games/starfield-constellation-edition/index.json b/site/public/v1/games/starfield-constellation-edition/index.json new file mode 100644 index 000000000000..f67caa98b6a2 --- /dev/null +++ b/site/public/v1/games/starfield-constellation-edition/index.json @@ -0,0 +1,25 @@ +{ + "id": 137131, + "slug": "starfield-constellation-edition", + "name": "Starfield Constellation Edition", + "release_date": "2023-09-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122216733" + ], + "created_at": "2026-07-10T10:10:40.071047", + "updated_at": "2026-07-10T10:10:40.071047", + "url": "/v1/games/starfield-constellation-edition" +} diff --git a/site/public/v1/games/starfield-premium-edition/index.json b/site/public/v1/games/starfield-premium-edition/index.json new file mode 100644 index 000000000000..b8f5b3322464 --- /dev/null +++ b/site/public/v1/games/starfield-premium-edition/index.json @@ -0,0 +1,25 @@ +{ + "id": 137132, + "slug": "starfield-premium-edition", + "name": "Starfield Premium Edition", + "release_date": "2023-09-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122216723" + ], + "created_at": "2026-07-10T10:10:40.071047", + "updated_at": "2026-07-10T10:10:40.071047", + "url": "/v1/games/starfield-premium-edition" +} diff --git a/site/public/v1/games/starfield-shattered-space/index.json b/site/public/v1/games/starfield-shattered-space/index.json new file mode 100644 index 000000000000..5d31911dbd48 --- /dev/null +++ b/site/public/v1/games/starfield-shattered-space/index.json @@ -0,0 +1,27 @@ +{ + "id": 137133, + "slug": "starfield-shattered-space", + "name": "Starfield: Shattered Space", + "release_date": "2024-09-30", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q129641427" + ], + "created_at": "2026-07-10T10:10:40.072053", + "updated_at": "2026-07-10T10:10:40.072053", + "url": "/v1/games/starfield-shattered-space" +} diff --git a/site/public/v1/games/starfield-standard-edition/index.json b/site/public/v1/games/starfield-standard-edition/index.json new file mode 100644 index 000000000000..27ce09bed621 --- /dev/null +++ b/site/public/v1/games/starfield-standard-edition/index.json @@ -0,0 +1,25 @@ +{ + "id": 137134, + "slug": "starfield-standard-edition", + "name": "Starfield Standard Edition", + "release_date": "2023-09-06", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122216646" + ], + "created_at": "2026-07-10T10:10:40.072053", + "updated_at": "2026-07-10T10:10:40.072053", + "url": "/v1/games/starfield-standard-edition" +} diff --git a/site/public/v1/games/stargate-sg-1-the-alliance/index.json b/site/public/v1/games/stargate-sg-1-the-alliance/index.json new file mode 100644 index 000000000000..05b299296541 --- /dev/null +++ b/site/public/v1/games/stargate-sg-1-the-alliance/index.json @@ -0,0 +1,31 @@ +{ + "id": 137167, + "slug": "stargate-sg-1-the-alliance", + "name": "Stargate SG-1: The Alliance", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter" + ], + "stores": [], + "developers": [], + "publishers": [ + "JoWooD Entertainment" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1055943" + ], + "created_at": "2026-07-10T10:10:40.080737", + "updated_at": "2026-07-10T10:10:40.080737", + "url": "/v1/games/stargate-sg-1-the-alliance" +} diff --git a/site/public/v1/games/stargate-worlds/index.json b/site/public/v1/games/stargate-worlds/index.json new file mode 100644 index 000000000000..7203a9a99d86 --- /dev/null +++ b/site/public/v1/games/stargate-worlds/index.json @@ -0,0 +1,29 @@ +{ + "id": 137170, + "slug": "stargate-worlds", + "name": "Stargate Worlds", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "massively multiplayer online role-playing game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2348044" + ], + "created_at": "2026-07-10T10:10:40.081744", + "updated_at": "2026-07-10T10:10:40.081744", + "url": "/v1/games/stargate-worlds" +} diff --git a/site/public/v1/games/starry-moon-island-2-break-out-mp01/index.json b/site/public/v1/games/starry-moon-island-2-break-out-mp01/index.json new file mode 100644 index 000000000000..70cd35c338e2 --- /dev/null +++ b/site/public/v1/games/starry-moon-island-2-break-out-mp01/index.json @@ -0,0 +1,31 @@ +{ + "id": 137290, + "slug": "starry-moon-island-2-break-out-mp01", + "name": "Starry Moon Island 2 Break Out MP01", + "release_date": "2021-11-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116201755" + ], + "created_at": "2026-07-10T10:10:40.113682", + "updated_at": "2026-07-10T10:10:40.113682", + "url": "/v1/games/starry-moon-island-2-break-out-mp01" +} diff --git a/site/public/v1/games/starry-moon-island-2-break-out-mp02/index.json b/site/public/v1/games/starry-moon-island-2-break-out-mp02/index.json new file mode 100644 index 000000000000..8810d5117927 --- /dev/null +++ b/site/public/v1/games/starry-moon-island-2-break-out-mp02/index.json @@ -0,0 +1,31 @@ +{ + "id": 137291, + "slug": "starry-moon-island-2-break-out-mp02", + "name": "Starry Moon Island 2 Break Out MP02", + "release_date": "2021-11-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116201756" + ], + "created_at": "2026-07-10T10:10:40.113682", + "updated_at": "2026-07-10T10:10:40.113682", + "url": "/v1/games/starry-moon-island-2-break-out-mp02" +} diff --git a/site/public/v1/games/starry-moon-island-2-break-out-mp03/index.json b/site/public/v1/games/starry-moon-island-2-break-out-mp03/index.json new file mode 100644 index 000000000000..ea270a39c6bf --- /dev/null +++ b/site/public/v1/games/starry-moon-island-2-break-out-mp03/index.json @@ -0,0 +1,31 @@ +{ + "id": 137292, + "slug": "starry-moon-island-2-break-out-mp03", + "name": "Starry Moon Island 2 Break Out MP03", + "release_date": "2021-11-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116201757" + ], + "created_at": "2026-07-10T10:10:40.113682", + "updated_at": "2026-07-10T10:10:40.113682", + "url": "/v1/games/starry-moon-island-2-break-out-mp03" +} diff --git a/site/public/v1/games/starry-moon-island-2-break-out-mp04/index.json b/site/public/v1/games/starry-moon-island-2-break-out-mp04/index.json new file mode 100644 index 000000000000..130209c0af60 --- /dev/null +++ b/site/public/v1/games/starry-moon-island-2-break-out-mp04/index.json @@ -0,0 +1,31 @@ +{ + "id": 137293, + "slug": "starry-moon-island-2-break-out-mp04", + "name": "Starry Moon Island 2 Break Out MP04", + "release_date": "2021-11-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116201758" + ], + "created_at": "2026-07-10T10:10:40.113682", + "updated_at": "2026-07-10T10:10:40.113682", + "url": "/v1/games/starry-moon-island-2-break-out-mp04" +} diff --git a/site/public/v1/games/starry-moon-island-2-break-out-mp05/index.json b/site/public/v1/games/starry-moon-island-2-break-out-mp05/index.json new file mode 100644 index 000000000000..18dc181edb50 --- /dev/null +++ b/site/public/v1/games/starry-moon-island-2-break-out-mp05/index.json @@ -0,0 +1,31 @@ +{ + "id": 137294, + "slug": "starry-moon-island-2-break-out-mp05", + "name": "Starry Moon Island 2 Break Out MP05", + "release_date": "2021-11-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116201760" + ], + "created_at": "2026-07-10T10:10:40.113682", + "updated_at": "2026-07-10T10:10:40.113682", + "url": "/v1/games/starry-moon-island-2-break-out-mp05" +} diff --git a/site/public/v1/games/starry-moon-island-2-break-out-mp06/index.json b/site/public/v1/games/starry-moon-island-2-break-out-mp06/index.json new file mode 100644 index 000000000000..7d5aac023cf5 --- /dev/null +++ b/site/public/v1/games/starry-moon-island-2-break-out-mp06/index.json @@ -0,0 +1,31 @@ +{ + "id": 137295, + "slug": "starry-moon-island-2-break-out-mp06", + "name": "Starry Moon Island 2 Break Out MP06", + "release_date": "2021-11-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116201761" + ], + "created_at": "2026-07-10T10:10:40.114662", + "updated_at": "2026-07-10T10:10:40.114662", + "url": "/v1/games/starry-moon-island-2-break-out-mp06" +} diff --git a/site/public/v1/games/starry-moon-island-2-break-out-mp07/index.json b/site/public/v1/games/starry-moon-island-2-break-out-mp07/index.json new file mode 100644 index 000000000000..83b07194caf3 --- /dev/null +++ b/site/public/v1/games/starry-moon-island-2-break-out-mp07/index.json @@ -0,0 +1,31 @@ +{ + "id": 137296, + "slug": "starry-moon-island-2-break-out-mp07", + "name": "Starry Moon Island 2 Break Out MP07", + "release_date": "2021-11-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116201762" + ], + "created_at": "2026-07-10T10:10:40.114662", + "updated_at": "2026-07-10T10:10:40.114662", + "url": "/v1/games/starry-moon-island-2-break-out-mp07" +} diff --git a/site/public/v1/games/starry-moon-island-2-break-out-mp08/index.json b/site/public/v1/games/starry-moon-island-2-break-out-mp08/index.json new file mode 100644 index 000000000000..12ef54808bc9 --- /dev/null +++ b/site/public/v1/games/starry-moon-island-2-break-out-mp08/index.json @@ -0,0 +1,31 @@ +{ + "id": 137297, + "slug": "starry-moon-island-2-break-out-mp08", + "name": "Starry Moon Island 2 Break Out MP08", + "release_date": "2021-11-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116201763" + ], + "created_at": "2026-07-10T10:10:40.114662", + "updated_at": "2026-07-10T10:10:40.114662", + "url": "/v1/games/starry-moon-island-2-break-out-mp08" +} diff --git a/site/public/v1/games/starry-moon-island-2-break-out-mp09/index.json b/site/public/v1/games/starry-moon-island-2-break-out-mp09/index.json new file mode 100644 index 000000000000..f29a7b5c69c0 --- /dev/null +++ b/site/public/v1/games/starry-moon-island-2-break-out-mp09/index.json @@ -0,0 +1,31 @@ +{ + "id": 137298, + "slug": "starry-moon-island-2-break-out-mp09", + "name": "Starry Moon Island 2 Break Out MP09", + "release_date": "2021-11-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116201764" + ], + "created_at": "2026-07-10T10:10:40.114662", + "updated_at": "2026-07-10T10:10:40.114662", + "url": "/v1/games/starry-moon-island-2-break-out-mp09" +} diff --git a/site/public/v1/games/starry-moon-island-2-break-out-mp10/index.json b/site/public/v1/games/starry-moon-island-2-break-out-mp10/index.json new file mode 100644 index 000000000000..37912f6a98b9 --- /dev/null +++ b/site/public/v1/games/starry-moon-island-2-break-out-mp10/index.json @@ -0,0 +1,31 @@ +{ + "id": 137299, + "slug": "starry-moon-island-2-break-out-mp10", + "name": "Starry Moon Island 2 Break Out MP10", + "release_date": "2021-11-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116201766" + ], + "created_at": "2026-07-10T10:10:40.115655", + "updated_at": "2026-07-10T10:10:40.115655", + "url": "/v1/games/starry-moon-island-2-break-out-mp10" +} diff --git a/site/public/v1/games/starry-moon-island-2-cannon-war-mp01/index.json b/site/public/v1/games/starry-moon-island-2-cannon-war-mp01/index.json new file mode 100644 index 000000000000..2a9ec7d935c0 --- /dev/null +++ b/site/public/v1/games/starry-moon-island-2-cannon-war-mp01/index.json @@ -0,0 +1,31 @@ +{ + "id": 137300, + "slug": "starry-moon-island-2-cannon-war-mp01", + "name": "Starry Moon Island 2 Cannon War MP01", + "release_date": "2021-11-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116201768" + ], + "created_at": "2026-07-10T10:10:40.115655", + "updated_at": "2026-07-10T10:10:40.115655", + "url": "/v1/games/starry-moon-island-2-cannon-war-mp01" +} diff --git a/site/public/v1/games/starry-moon-island-2-cannon-war-mp02/index.json b/site/public/v1/games/starry-moon-island-2-cannon-war-mp02/index.json new file mode 100644 index 000000000000..3834967bb91a --- /dev/null +++ b/site/public/v1/games/starry-moon-island-2-cannon-war-mp02/index.json @@ -0,0 +1,31 @@ +{ + "id": 137301, + "slug": "starry-moon-island-2-cannon-war-mp02", + "name": "Starry Moon Island 2 Cannon War MP02", + "release_date": "2021-11-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116201769" + ], + "created_at": "2026-07-10T10:10:40.115655", + "updated_at": "2026-07-10T10:10:40.115655", + "url": "/v1/games/starry-moon-island-2-cannon-war-mp02" +} diff --git a/site/public/v1/games/starry-moon-island-2-cannon-war-mp03/index.json b/site/public/v1/games/starry-moon-island-2-cannon-war-mp03/index.json new file mode 100644 index 000000000000..cec50510e447 --- /dev/null +++ b/site/public/v1/games/starry-moon-island-2-cannon-war-mp03/index.json @@ -0,0 +1,31 @@ +{ + "id": 137302, + "slug": "starry-moon-island-2-cannon-war-mp03", + "name": "Starry Moon Island 2 Cannon War MP03", + "release_date": "2021-11-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116201772" + ], + "created_at": "2026-07-10T10:10:40.115655", + "updated_at": "2026-07-10T10:10:40.115655", + "url": "/v1/games/starry-moon-island-2-cannon-war-mp03" +} diff --git a/site/public/v1/games/starry-moon-island-2-cannon-war-mp04/index.json b/site/public/v1/games/starry-moon-island-2-cannon-war-mp04/index.json new file mode 100644 index 000000000000..822e1bee92ef --- /dev/null +++ b/site/public/v1/games/starry-moon-island-2-cannon-war-mp04/index.json @@ -0,0 +1,31 @@ +{ + "id": 137303, + "slug": "starry-moon-island-2-cannon-war-mp04", + "name": "Starry Moon Island 2 Cannon War MP04", + "release_date": "2021-11-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116201773" + ], + "created_at": "2026-07-10T10:10:40.115655", + "updated_at": "2026-07-10T10:10:40.115655", + "url": "/v1/games/starry-moon-island-2-cannon-war-mp04" +} diff --git a/site/public/v1/games/starry-moon-island-2-cannon-war-mp05/index.json b/site/public/v1/games/starry-moon-island-2-cannon-war-mp05/index.json new file mode 100644 index 000000000000..c17dae9216d0 --- /dev/null +++ b/site/public/v1/games/starry-moon-island-2-cannon-war-mp05/index.json @@ -0,0 +1,31 @@ +{ + "id": 137304, + "slug": "starry-moon-island-2-cannon-war-mp05", + "name": "Starry Moon Island 2 Cannon War MP05", + "release_date": "2021-11-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116201774" + ], + "created_at": "2026-07-10T10:10:40.116659", + "updated_at": "2026-07-10T10:10:40.116659", + "url": "/v1/games/starry-moon-island-2-cannon-war-mp05" +} diff --git a/site/public/v1/games/starry-moon-island-2-cannon-war-mp06/index.json b/site/public/v1/games/starry-moon-island-2-cannon-war-mp06/index.json new file mode 100644 index 000000000000..31fd86619447 --- /dev/null +++ b/site/public/v1/games/starry-moon-island-2-cannon-war-mp06/index.json @@ -0,0 +1,31 @@ +{ + "id": 137305, + "slug": "starry-moon-island-2-cannon-war-mp06", + "name": "Starry Moon Island 2 Cannon War MP06", + "release_date": "2021-11-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116201775" + ], + "created_at": "2026-07-10T10:10:40.116659", + "updated_at": "2026-07-10T10:10:40.116659", + "url": "/v1/games/starry-moon-island-2-cannon-war-mp06" +} diff --git a/site/public/v1/games/starry-moon-island-2-cannon-war-mp07/index.json b/site/public/v1/games/starry-moon-island-2-cannon-war-mp07/index.json new file mode 100644 index 000000000000..4219adc9749f --- /dev/null +++ b/site/public/v1/games/starry-moon-island-2-cannon-war-mp07/index.json @@ -0,0 +1,31 @@ +{ + "id": 137306, + "slug": "starry-moon-island-2-cannon-war-mp07", + "name": "Starry Moon Island 2 Cannon War MP07", + "release_date": "2021-11-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116201777" + ], + "created_at": "2026-07-10T10:10:40.116659", + "updated_at": "2026-07-10T10:10:40.116659", + "url": "/v1/games/starry-moon-island-2-cannon-war-mp07" +} diff --git a/site/public/v1/games/starry-moon-island-2-cannon-war-mp08/index.json b/site/public/v1/games/starry-moon-island-2-cannon-war-mp08/index.json new file mode 100644 index 000000000000..834243f6bd97 --- /dev/null +++ b/site/public/v1/games/starry-moon-island-2-cannon-war-mp08/index.json @@ -0,0 +1,31 @@ +{ + "id": 137307, + "slug": "starry-moon-island-2-cannon-war-mp08", + "name": "Starry Moon Island 2 Cannon War MP08", + "release_date": "2021-11-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116201781" + ], + "created_at": "2026-07-10T10:10:40.116659", + "updated_at": "2026-07-10T10:10:40.116659", + "url": "/v1/games/starry-moon-island-2-cannon-war-mp08" +} diff --git a/site/public/v1/games/starry-moon-island-2-cannon-war-mp09/index.json b/site/public/v1/games/starry-moon-island-2-cannon-war-mp09/index.json new file mode 100644 index 000000000000..2c1b146f8b8f --- /dev/null +++ b/site/public/v1/games/starry-moon-island-2-cannon-war-mp09/index.json @@ -0,0 +1,31 @@ +{ + "id": 137308, + "slug": "starry-moon-island-2-cannon-war-mp09", + "name": "Starry Moon Island 2 Cannon War MP09", + "release_date": "2021-11-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116201782" + ], + "created_at": "2026-07-10T10:10:40.117649", + "updated_at": "2026-07-10T10:10:40.117649", + "url": "/v1/games/starry-moon-island-2-cannon-war-mp09" +} diff --git a/site/public/v1/games/starry-moon-island-2-cannon-war-mp10/index.json b/site/public/v1/games/starry-moon-island-2-cannon-war-mp10/index.json new file mode 100644 index 000000000000..03cca3f3a0a8 --- /dev/null +++ b/site/public/v1/games/starry-moon-island-2-cannon-war-mp10/index.json @@ -0,0 +1,31 @@ +{ + "id": 137309, + "slug": "starry-moon-island-2-cannon-war-mp10", + "name": "Starry Moon Island 2 Cannon War MP10", + "release_date": "2021-11-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116201783" + ], + "created_at": "2026-07-10T10:10:40.117649", + "updated_at": "2026-07-10T10:10:40.117649", + "url": "/v1/games/starry-moon-island-2-cannon-war-mp10" +} diff --git a/site/public/v1/games/starry-moon-island-2-cannonade-mp01/index.json b/site/public/v1/games/starry-moon-island-2-cannonade-mp01/index.json new file mode 100644 index 000000000000..987eddb89187 --- /dev/null +++ b/site/public/v1/games/starry-moon-island-2-cannonade-mp01/index.json @@ -0,0 +1,31 @@ +{ + "id": 137310, + "slug": "starry-moon-island-2-cannonade-mp01", + "name": "Starry Moon Island 2 Cannonade MP01", + "release_date": "2021-11-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116201785" + ], + "created_at": "2026-07-10T10:10:40.117649", + "updated_at": "2026-07-10T10:10:40.117649", + "url": "/v1/games/starry-moon-island-2-cannonade-mp01" +} diff --git a/site/public/v1/games/starry-moon-island-2-cannonade-mp02/index.json b/site/public/v1/games/starry-moon-island-2-cannonade-mp02/index.json new file mode 100644 index 000000000000..4b00a5c738da --- /dev/null +++ b/site/public/v1/games/starry-moon-island-2-cannonade-mp02/index.json @@ -0,0 +1,31 @@ +{ + "id": 137311, + "slug": "starry-moon-island-2-cannonade-mp02", + "name": "Starry Moon Island 2 Cannonade MP02", + "release_date": "2021-11-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116201787" + ], + "created_at": "2026-07-10T10:10:40.117649", + "updated_at": "2026-07-10T10:10:40.117649", + "url": "/v1/games/starry-moon-island-2-cannonade-mp02" +} diff --git a/site/public/v1/games/starry-moon-island-2-cannonade-mp03/index.json b/site/public/v1/games/starry-moon-island-2-cannonade-mp03/index.json new file mode 100644 index 000000000000..009f5bf38ced --- /dev/null +++ b/site/public/v1/games/starry-moon-island-2-cannonade-mp03/index.json @@ -0,0 +1,31 @@ +{ + "id": 137312, + "slug": "starry-moon-island-2-cannonade-mp03", + "name": "Starry Moon Island 2 Cannonade MP03", + "release_date": "2021-11-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116201788" + ], + "created_at": "2026-07-10T10:10:40.117649", + "updated_at": "2026-07-10T10:10:40.117649", + "url": "/v1/games/starry-moon-island-2-cannonade-mp03" +} diff --git a/site/public/v1/games/starry-moon-island-2-cannonade-mp04/index.json b/site/public/v1/games/starry-moon-island-2-cannonade-mp04/index.json new file mode 100644 index 000000000000..7d63d39c9cdc --- /dev/null +++ b/site/public/v1/games/starry-moon-island-2-cannonade-mp04/index.json @@ -0,0 +1,31 @@ +{ + "id": 137313, + "slug": "starry-moon-island-2-cannonade-mp04", + "name": "Starry Moon Island 2 Cannonade MP04", + "release_date": "2021-11-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116201789" + ], + "created_at": "2026-07-10T10:10:40.118654", + "updated_at": "2026-07-10T10:10:40.118654", + "url": "/v1/games/starry-moon-island-2-cannonade-mp04" +} diff --git a/site/public/v1/games/starry-moon-island-2-cannonade-mp05/index.json b/site/public/v1/games/starry-moon-island-2-cannonade-mp05/index.json new file mode 100644 index 000000000000..edf3c04c189e --- /dev/null +++ b/site/public/v1/games/starry-moon-island-2-cannonade-mp05/index.json @@ -0,0 +1,31 @@ +{ + "id": 137314, + "slug": "starry-moon-island-2-cannonade-mp05", + "name": "Starry Moon Island 2 Cannonade MP05", + "release_date": "2021-11-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116201803" + ], + "created_at": "2026-07-10T10:10:40.118654", + "updated_at": "2026-07-10T10:10:40.118654", + "url": "/v1/games/starry-moon-island-2-cannonade-mp05" +} diff --git a/site/public/v1/games/starry-moon-island-2-cannonade-mp06/index.json b/site/public/v1/games/starry-moon-island-2-cannonade-mp06/index.json new file mode 100644 index 000000000000..84f6d7f6f3cd --- /dev/null +++ b/site/public/v1/games/starry-moon-island-2-cannonade-mp06/index.json @@ -0,0 +1,31 @@ +{ + "id": 137315, + "slug": "starry-moon-island-2-cannonade-mp06", + "name": "Starry Moon Island 2 Cannonade MP06", + "release_date": "2021-11-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116201822" + ], + "created_at": "2026-07-10T10:10:40.118654", + "updated_at": "2026-07-10T10:10:40.118654", + "url": "/v1/games/starry-moon-island-2-cannonade-mp06" +} diff --git a/site/public/v1/games/starry-moon-island-2-cannonade-mp07/index.json b/site/public/v1/games/starry-moon-island-2-cannonade-mp07/index.json new file mode 100644 index 000000000000..8c12694458d7 --- /dev/null +++ b/site/public/v1/games/starry-moon-island-2-cannonade-mp07/index.json @@ -0,0 +1,31 @@ +{ + "id": 137316, + "slug": "starry-moon-island-2-cannonade-mp07", + "name": "Starry Moon Island 2 Cannonade MP07", + "release_date": "2021-11-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116201843" + ], + "created_at": "2026-07-10T10:10:40.118654", + "updated_at": "2026-07-10T10:10:40.118654", + "url": "/v1/games/starry-moon-island-2-cannonade-mp07" +} diff --git a/site/public/v1/games/starry-moon-island-2-cannonade-mp08/index.json b/site/public/v1/games/starry-moon-island-2-cannonade-mp08/index.json new file mode 100644 index 000000000000..62370f268e88 --- /dev/null +++ b/site/public/v1/games/starry-moon-island-2-cannonade-mp08/index.json @@ -0,0 +1,31 @@ +{ + "id": 137317, + "slug": "starry-moon-island-2-cannonade-mp08", + "name": "Starry Moon Island 2 Cannonade MP08", + "release_date": "2021-11-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116201861" + ], + "created_at": "2026-07-10T10:10:40.118654", + "updated_at": "2026-07-10T10:10:40.118654", + "url": "/v1/games/starry-moon-island-2-cannonade-mp08" +} diff --git a/site/public/v1/games/starry-moon-island-2-cannonade-mp09/index.json b/site/public/v1/games/starry-moon-island-2-cannonade-mp09/index.json new file mode 100644 index 000000000000..fc326ed08a11 --- /dev/null +++ b/site/public/v1/games/starry-moon-island-2-cannonade-mp09/index.json @@ -0,0 +1,31 @@ +{ + "id": 137318, + "slug": "starry-moon-island-2-cannonade-mp09", + "name": "Starry Moon Island 2 Cannonade MP09", + "release_date": "2021-11-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116201866" + ], + "created_at": "2026-07-10T10:10:40.119665", + "updated_at": "2026-07-10T10:10:40.119665", + "url": "/v1/games/starry-moon-island-2-cannonade-mp09" +} diff --git a/site/public/v1/games/starry-moon-island-2-cannonade-mp10/index.json b/site/public/v1/games/starry-moon-island-2-cannonade-mp10/index.json new file mode 100644 index 000000000000..becc72ec221f --- /dev/null +++ b/site/public/v1/games/starry-moon-island-2-cannonade-mp10/index.json @@ -0,0 +1,31 @@ +{ + "id": 137319, + "slug": "starry-moon-island-2-cannonade-mp10", + "name": "Starry Moon Island 2 Cannonade MP10", + "release_date": "2021-11-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116201867" + ], + "created_at": "2026-07-10T10:10:40.119665", + "updated_at": "2026-07-10T10:10:40.119665", + "url": "/v1/games/starry-moon-island-2-cannonade-mp10" +} diff --git a/site/public/v1/games/starry-moon-island-2-dna-war-mp01/index.json b/site/public/v1/games/starry-moon-island-2-dna-war-mp01/index.json new file mode 100644 index 000000000000..4f142ddf7ce4 --- /dev/null +++ b/site/public/v1/games/starry-moon-island-2-dna-war-mp01/index.json @@ -0,0 +1,31 @@ +{ + "id": 137320, + "slug": "starry-moon-island-2-dna-war-mp01", + "name": "Starry Moon Island 2 DNA War MP01", + "release_date": "2021-11-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116201868" + ], + "created_at": "2026-07-10T10:10:40.119665", + "updated_at": "2026-07-10T10:10:40.119665", + "url": "/v1/games/starry-moon-island-2-dna-war-mp01" +} diff --git a/site/public/v1/games/starry-moon-island-2-dna-war-mp02/index.json b/site/public/v1/games/starry-moon-island-2-dna-war-mp02/index.json new file mode 100644 index 000000000000..49fdb0b83421 --- /dev/null +++ b/site/public/v1/games/starry-moon-island-2-dna-war-mp02/index.json @@ -0,0 +1,31 @@ +{ + "id": 137321, + "slug": "starry-moon-island-2-dna-war-mp02", + "name": "Starry Moon Island 2 DNA War MP02", + "release_date": "2021-11-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116201872" + ], + "created_at": "2026-07-10T10:10:40.119665", + "updated_at": "2026-07-10T10:10:40.119665", + "url": "/v1/games/starry-moon-island-2-dna-war-mp02" +} diff --git a/site/public/v1/games/starry-moon-island-2-dna-war-mp03/index.json b/site/public/v1/games/starry-moon-island-2-dna-war-mp03/index.json new file mode 100644 index 000000000000..57fec6b81c63 --- /dev/null +++ b/site/public/v1/games/starry-moon-island-2-dna-war-mp03/index.json @@ -0,0 +1,31 @@ +{ + "id": 137322, + "slug": "starry-moon-island-2-dna-war-mp03", + "name": "Starry Moon Island 2 DNA War MP03", + "release_date": "2021-11-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116201893" + ], + "created_at": "2026-07-10T10:10:40.120681", + "updated_at": "2026-07-10T10:10:40.120681", + "url": "/v1/games/starry-moon-island-2-dna-war-mp03" +} diff --git a/site/public/v1/games/starry-moon-island-2-dna-war-mp04/index.json b/site/public/v1/games/starry-moon-island-2-dna-war-mp04/index.json new file mode 100644 index 000000000000..689bb0494245 --- /dev/null +++ b/site/public/v1/games/starry-moon-island-2-dna-war-mp04/index.json @@ -0,0 +1,31 @@ +{ + "id": 137323, + "slug": "starry-moon-island-2-dna-war-mp04", + "name": "Starry Moon Island 2 DNA War MP04", + "release_date": "2021-11-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116201913" + ], + "created_at": "2026-07-10T10:10:40.120681", + "updated_at": "2026-07-10T10:10:40.120681", + "url": "/v1/games/starry-moon-island-2-dna-war-mp04" +} diff --git a/site/public/v1/games/starry-moon-island-2-dna-war-mp05/index.json b/site/public/v1/games/starry-moon-island-2-dna-war-mp05/index.json new file mode 100644 index 000000000000..d9611b4b10a5 --- /dev/null +++ b/site/public/v1/games/starry-moon-island-2-dna-war-mp05/index.json @@ -0,0 +1,31 @@ +{ + "id": 137324, + "slug": "starry-moon-island-2-dna-war-mp05", + "name": "Starry Moon Island 2 DNA War MP05", + "release_date": "2021-11-14", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116201931" + ], + "created_at": "2026-07-10T10:10:40.120681", + "updated_at": "2026-07-10T10:10:40.120681", + "url": "/v1/games/starry-moon-island-2-dna-war-mp05" +} diff --git a/site/public/v1/games/starry-moon-island-2-dna-war-mp06/index.json b/site/public/v1/games/starry-moon-island-2-dna-war-mp06/index.json new file mode 100644 index 000000000000..2c40933e3cee --- /dev/null +++ b/site/public/v1/games/starry-moon-island-2-dna-war-mp06/index.json @@ -0,0 +1,31 @@ +{ + "id": 137325, + "slug": "starry-moon-island-2-dna-war-mp06", + "name": "Starry Moon Island 2 DNA War MP06", + "release_date": "2021-11-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116201951" + ], + "created_at": "2026-07-10T10:10:40.120681", + "updated_at": "2026-07-10T10:10:40.120681", + "url": "/v1/games/starry-moon-island-2-dna-war-mp06" +} diff --git a/site/public/v1/games/starry-moon-island-2-dna-war-mp07/index.json b/site/public/v1/games/starry-moon-island-2-dna-war-mp07/index.json new file mode 100644 index 000000000000..d48a43c3aef2 --- /dev/null +++ b/site/public/v1/games/starry-moon-island-2-dna-war-mp07/index.json @@ -0,0 +1,31 @@ +{ + "id": 137326, + "slug": "starry-moon-island-2-dna-war-mp07", + "name": "Starry Moon Island 2 DNA War MP07", + "release_date": "2021-11-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116201966" + ], + "created_at": "2026-07-10T10:10:40.120681", + "updated_at": "2026-07-10T10:10:40.120681", + "url": "/v1/games/starry-moon-island-2-dna-war-mp07" +} diff --git a/site/public/v1/games/starry-moon-island-2-dna-war-mp08/index.json b/site/public/v1/games/starry-moon-island-2-dna-war-mp08/index.json new file mode 100644 index 000000000000..d945457db073 --- /dev/null +++ b/site/public/v1/games/starry-moon-island-2-dna-war-mp08/index.json @@ -0,0 +1,31 @@ +{ + "id": 137327, + "slug": "starry-moon-island-2-dna-war-mp08", + "name": "Starry Moon Island 2 DNA War MP08", + "release_date": "2021-11-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116201967" + ], + "created_at": "2026-07-10T10:10:40.121652", + "updated_at": "2026-07-10T10:10:40.121652", + "url": "/v1/games/starry-moon-island-2-dna-war-mp08" +} diff --git a/site/public/v1/games/starry-moon-island-2-dna-war-mp09/index.json b/site/public/v1/games/starry-moon-island-2-dna-war-mp09/index.json new file mode 100644 index 000000000000..253ad345efc5 --- /dev/null +++ b/site/public/v1/games/starry-moon-island-2-dna-war-mp09/index.json @@ -0,0 +1,31 @@ +{ + "id": 137328, + "slug": "starry-moon-island-2-dna-war-mp09", + "name": "Starry Moon Island 2 DNA War MP09", + "release_date": "2021-11-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116201969" + ], + "created_at": "2026-07-10T10:10:40.121652", + "updated_at": "2026-07-10T10:10:40.121652", + "url": "/v1/games/starry-moon-island-2-dna-war-mp09" +} diff --git a/site/public/v1/games/starry-moon-island-2-dna-war-mp10/index.json b/site/public/v1/games/starry-moon-island-2-dna-war-mp10/index.json new file mode 100644 index 000000000000..a171b693e3eb --- /dev/null +++ b/site/public/v1/games/starry-moon-island-2-dna-war-mp10/index.json @@ -0,0 +1,31 @@ +{ + "id": 137329, + "slug": "starry-moon-island-2-dna-war-mp10", + "name": "Starry Moon Island 2 DNA War MP10", + "release_date": "2021-11-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116201973" + ], + "created_at": "2026-07-10T10:10:40.121652", + "updated_at": "2026-07-10T10:10:40.121652", + "url": "/v1/games/starry-moon-island-2-dna-war-mp10" +} diff --git a/site/public/v1/games/starry-moon-island-2-mobile-stronghold-mp01/index.json b/site/public/v1/games/starry-moon-island-2-mobile-stronghold-mp01/index.json new file mode 100644 index 000000000000..1c2a63c8cb02 --- /dev/null +++ b/site/public/v1/games/starry-moon-island-2-mobile-stronghold-mp01/index.json @@ -0,0 +1,31 @@ +{ + "id": 137330, + "slug": "starry-moon-island-2-mobile-stronghold-mp01", + "name": "Starry Moon Island 2 Mobile Stronghold MP01", + "release_date": "2021-11-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116201992" + ], + "created_at": "2026-07-10T10:10:40.121652", + "updated_at": "2026-07-10T10:10:40.121652", + "url": "/v1/games/starry-moon-island-2-mobile-stronghold-mp01" +} diff --git a/site/public/v1/games/starry-moon-island-2-mobile-stronghold-mp02/index.json b/site/public/v1/games/starry-moon-island-2-mobile-stronghold-mp02/index.json new file mode 100644 index 000000000000..7d9553527246 --- /dev/null +++ b/site/public/v1/games/starry-moon-island-2-mobile-stronghold-mp02/index.json @@ -0,0 +1,31 @@ +{ + "id": 137331, + "slug": "starry-moon-island-2-mobile-stronghold-mp02", + "name": "Starry Moon Island 2 Mobile Stronghold MP02", + "release_date": "2021-11-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202010" + ], + "created_at": "2026-07-10T10:10:40.122633", + "updated_at": "2026-07-10T10:10:40.122633", + "url": "/v1/games/starry-moon-island-2-mobile-stronghold-mp02" +} diff --git a/site/public/v1/games/starry-moon-island-2-mobile-stronghold-mp03/index.json b/site/public/v1/games/starry-moon-island-2-mobile-stronghold-mp03/index.json new file mode 100644 index 000000000000..7147f6897aec --- /dev/null +++ b/site/public/v1/games/starry-moon-island-2-mobile-stronghold-mp03/index.json @@ -0,0 +1,31 @@ +{ + "id": 137332, + "slug": "starry-moon-island-2-mobile-stronghold-mp03", + "name": "Starry Moon Island 2 Mobile Stronghold MP03", + "release_date": "2021-11-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202014" + ], + "created_at": "2026-07-10T10:10:40.122633", + "updated_at": "2026-07-10T10:10:40.122633", + "url": "/v1/games/starry-moon-island-2-mobile-stronghold-mp03" +} diff --git a/site/public/v1/games/starry-moon-island-2-mobile-stronghold-mp04/index.json b/site/public/v1/games/starry-moon-island-2-mobile-stronghold-mp04/index.json new file mode 100644 index 000000000000..f603c48c4dd6 --- /dev/null +++ b/site/public/v1/games/starry-moon-island-2-mobile-stronghold-mp04/index.json @@ -0,0 +1,31 @@ +{ + "id": 137333, + "slug": "starry-moon-island-2-mobile-stronghold-mp04", + "name": "Starry Moon Island 2 Mobile Stronghold MP04", + "release_date": "2021-11-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202015" + ], + "created_at": "2026-07-10T10:10:40.122633", + "updated_at": "2026-07-10T10:10:40.122633", + "url": "/v1/games/starry-moon-island-2-mobile-stronghold-mp04" +} diff --git a/site/public/v1/games/starry-moon-island-2-mobile-stronghold-mp05/index.json b/site/public/v1/games/starry-moon-island-2-mobile-stronghold-mp05/index.json new file mode 100644 index 000000000000..3011d13f07f6 --- /dev/null +++ b/site/public/v1/games/starry-moon-island-2-mobile-stronghold-mp05/index.json @@ -0,0 +1,31 @@ +{ + "id": 137334, + "slug": "starry-moon-island-2-mobile-stronghold-mp05", + "name": "Starry Moon Island 2 Mobile Stronghold MP05", + "release_date": "2021-11-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202016" + ], + "created_at": "2026-07-10T10:10:40.122633", + "updated_at": "2026-07-10T10:10:40.122633", + "url": "/v1/games/starry-moon-island-2-mobile-stronghold-mp05" +} diff --git a/site/public/v1/games/starry-moon-island-2-mobile-stronghold-mp06/index.json b/site/public/v1/games/starry-moon-island-2-mobile-stronghold-mp06/index.json new file mode 100644 index 000000000000..b4efb95982f9 --- /dev/null +++ b/site/public/v1/games/starry-moon-island-2-mobile-stronghold-mp06/index.json @@ -0,0 +1,31 @@ +{ + "id": 137335, + "slug": "starry-moon-island-2-mobile-stronghold-mp06", + "name": "Starry Moon Island 2 Mobile Stronghold MP06", + "release_date": "2021-11-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202017" + ], + "created_at": "2026-07-10T10:10:40.122633", + "updated_at": "2026-07-10T10:10:40.122633", + "url": "/v1/games/starry-moon-island-2-mobile-stronghold-mp06" +} diff --git a/site/public/v1/games/starry-moon-island-2-mobile-stronghold-mp07/index.json b/site/public/v1/games/starry-moon-island-2-mobile-stronghold-mp07/index.json new file mode 100644 index 000000000000..79a2e9dd1f79 --- /dev/null +++ b/site/public/v1/games/starry-moon-island-2-mobile-stronghold-mp07/index.json @@ -0,0 +1,31 @@ +{ + "id": 137336, + "slug": "starry-moon-island-2-mobile-stronghold-mp07", + "name": "Starry Moon Island 2 Mobile Stronghold MP07", + "release_date": "2021-11-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202032" + ], + "created_at": "2026-07-10T10:10:40.123696", + "updated_at": "2026-07-10T10:10:40.123696", + "url": "/v1/games/starry-moon-island-2-mobile-stronghold-mp07" +} diff --git a/site/public/v1/games/starry-moon-island-2-mobile-stronghold-mp08/index.json b/site/public/v1/games/starry-moon-island-2-mobile-stronghold-mp08/index.json new file mode 100644 index 000000000000..dd4f04ff1dd8 --- /dev/null +++ b/site/public/v1/games/starry-moon-island-2-mobile-stronghold-mp08/index.json @@ -0,0 +1,31 @@ +{ + "id": 137337, + "slug": "starry-moon-island-2-mobile-stronghold-mp08", + "name": "Starry Moon Island 2 Mobile Stronghold MP08", + "release_date": "2021-11-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202048" + ], + "created_at": "2026-07-10T10:10:40.123696", + "updated_at": "2026-07-10T10:10:40.123696", + "url": "/v1/games/starry-moon-island-2-mobile-stronghold-mp08" +} diff --git a/site/public/v1/games/starry-moon-island-2-mobile-stronghold-mp09/index.json b/site/public/v1/games/starry-moon-island-2-mobile-stronghold-mp09/index.json new file mode 100644 index 000000000000..183cbc5d6ff6 --- /dev/null +++ b/site/public/v1/games/starry-moon-island-2-mobile-stronghold-mp09/index.json @@ -0,0 +1,31 @@ +{ + "id": 137338, + "slug": "starry-moon-island-2-mobile-stronghold-mp09", + "name": "Starry Moon Island 2 Mobile Stronghold MP09", + "release_date": "2021-11-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202060" + ], + "created_at": "2026-07-10T10:10:40.123696", + "updated_at": "2026-07-10T10:10:40.123696", + "url": "/v1/games/starry-moon-island-2-mobile-stronghold-mp09" +} diff --git a/site/public/v1/games/starry-moon-island-2-mobile-stronghold-mp10/index.json b/site/public/v1/games/starry-moon-island-2-mobile-stronghold-mp10/index.json new file mode 100644 index 000000000000..ac3c85486f2b --- /dev/null +++ b/site/public/v1/games/starry-moon-island-2-mobile-stronghold-mp10/index.json @@ -0,0 +1,31 @@ +{ + "id": 137339, + "slug": "starry-moon-island-2-mobile-stronghold-mp10", + "name": "Starry Moon Island 2 Mobile Stronghold MP10", + "release_date": "2021-11-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202062" + ], + "created_at": "2026-07-10T10:10:40.123696", + "updated_at": "2026-07-10T10:10:40.123696", + "url": "/v1/games/starry-moon-island-2-mobile-stronghold-mp10" +} diff --git a/site/public/v1/games/starry-moon-island-2-out-of-control-mp01/index.json b/site/public/v1/games/starry-moon-island-2-out-of-control-mp01/index.json new file mode 100644 index 000000000000..e922b3acc465 --- /dev/null +++ b/site/public/v1/games/starry-moon-island-2-out-of-control-mp01/index.json @@ -0,0 +1,31 @@ +{ + "id": 137340, + "slug": "starry-moon-island-2-out-of-control-mp01", + "name": "Starry Moon Island 2 Out Of Control MP01", + "release_date": "2021-11-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202063" + ], + "created_at": "2026-07-10T10:10:40.124667", + "updated_at": "2026-07-10T10:10:40.124667", + "url": "/v1/games/starry-moon-island-2-out-of-control-mp01" +} diff --git a/site/public/v1/games/starry-moon-island-2-out-of-control-mp02/index.json b/site/public/v1/games/starry-moon-island-2-out-of-control-mp02/index.json new file mode 100644 index 000000000000..4be6fc6a1ea8 --- /dev/null +++ b/site/public/v1/games/starry-moon-island-2-out-of-control-mp02/index.json @@ -0,0 +1,31 @@ +{ + "id": 137341, + "slug": "starry-moon-island-2-out-of-control-mp02", + "name": "Starry Moon Island 2 Out Of Control MP02", + "release_date": "2021-11-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202066" + ], + "created_at": "2026-07-10T10:10:40.124667", + "updated_at": "2026-07-10T10:10:40.124667", + "url": "/v1/games/starry-moon-island-2-out-of-control-mp02" +} diff --git a/site/public/v1/games/starry-moon-island-2-out-of-control-mp03/index.json b/site/public/v1/games/starry-moon-island-2-out-of-control-mp03/index.json new file mode 100644 index 000000000000..4418544817de --- /dev/null +++ b/site/public/v1/games/starry-moon-island-2-out-of-control-mp03/index.json @@ -0,0 +1,31 @@ +{ + "id": 137342, + "slug": "starry-moon-island-2-out-of-control-mp03", + "name": "Starry Moon Island 2 Out Of Control MP03", + "release_date": "2021-11-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202067" + ], + "created_at": "2026-07-10T10:10:40.124667", + "updated_at": "2026-07-10T10:10:40.124667", + "url": "/v1/games/starry-moon-island-2-out-of-control-mp03" +} diff --git a/site/public/v1/games/starry-moon-island-2-out-of-control-mp04/index.json b/site/public/v1/games/starry-moon-island-2-out-of-control-mp04/index.json new file mode 100644 index 000000000000..788e056d19eb --- /dev/null +++ b/site/public/v1/games/starry-moon-island-2-out-of-control-mp04/index.json @@ -0,0 +1,31 @@ +{ + "id": 137343, + "slug": "starry-moon-island-2-out-of-control-mp04", + "name": "Starry Moon Island 2 Out Of Control MP04", + "release_date": "2021-11-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202069" + ], + "created_at": "2026-07-10T10:10:40.124667", + "updated_at": "2026-07-10T10:10:40.124667", + "url": "/v1/games/starry-moon-island-2-out-of-control-mp04" +} diff --git a/site/public/v1/games/starry-moon-island-2-out-of-control-mp05/index.json b/site/public/v1/games/starry-moon-island-2-out-of-control-mp05/index.json new file mode 100644 index 000000000000..e0816759db5a --- /dev/null +++ b/site/public/v1/games/starry-moon-island-2-out-of-control-mp05/index.json @@ -0,0 +1,31 @@ +{ + "id": 137344, + "slug": "starry-moon-island-2-out-of-control-mp05", + "name": "Starry Moon Island 2 Out Of Control MP05", + "release_date": "2021-11-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202071" + ], + "created_at": "2026-07-10T10:10:40.125586", + "updated_at": "2026-07-10T10:10:40.125586", + "url": "/v1/games/starry-moon-island-2-out-of-control-mp05" +} diff --git a/site/public/v1/games/starry-moon-island-2-out-of-control-mp06/index.json b/site/public/v1/games/starry-moon-island-2-out-of-control-mp06/index.json new file mode 100644 index 000000000000..37ed63a19805 --- /dev/null +++ b/site/public/v1/games/starry-moon-island-2-out-of-control-mp06/index.json @@ -0,0 +1,31 @@ +{ + "id": 137345, + "slug": "starry-moon-island-2-out-of-control-mp06", + "name": "Starry Moon Island 2 Out Of Control MP06", + "release_date": "2021-11-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202072" + ], + "created_at": "2026-07-10T10:10:40.125586", + "updated_at": "2026-07-10T10:10:40.125586", + "url": "/v1/games/starry-moon-island-2-out-of-control-mp06" +} diff --git a/site/public/v1/games/starry-moon-island-2-out-of-control-mp07/index.json b/site/public/v1/games/starry-moon-island-2-out-of-control-mp07/index.json new file mode 100644 index 000000000000..c91c30ed76b2 --- /dev/null +++ b/site/public/v1/games/starry-moon-island-2-out-of-control-mp07/index.json @@ -0,0 +1,31 @@ +{ + "id": 137346, + "slug": "starry-moon-island-2-out-of-control-mp07", + "name": "Starry Moon Island 2 Out Of Control MP07", + "release_date": "2021-11-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202073" + ], + "created_at": "2026-07-10T10:10:40.125586", + "updated_at": "2026-07-10T10:10:40.125586", + "url": "/v1/games/starry-moon-island-2-out-of-control-mp07" +} diff --git a/site/public/v1/games/starry-moon-island-2-out-of-control-mp08/index.json b/site/public/v1/games/starry-moon-island-2-out-of-control-mp08/index.json new file mode 100644 index 000000000000..caf5b08dd367 --- /dev/null +++ b/site/public/v1/games/starry-moon-island-2-out-of-control-mp08/index.json @@ -0,0 +1,31 @@ +{ + "id": 137347, + "slug": "starry-moon-island-2-out-of-control-mp08", + "name": "Starry Moon Island 2 Out Of Control MP08", + "release_date": "2021-11-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202074" + ], + "created_at": "2026-07-10T10:10:40.125586", + "updated_at": "2026-07-10T10:10:40.125586", + "url": "/v1/games/starry-moon-island-2-out-of-control-mp08" +} diff --git a/site/public/v1/games/starry-moon-island-2-out-of-control-mp09/index.json b/site/public/v1/games/starry-moon-island-2-out-of-control-mp09/index.json new file mode 100644 index 000000000000..ff5983312427 --- /dev/null +++ b/site/public/v1/games/starry-moon-island-2-out-of-control-mp09/index.json @@ -0,0 +1,31 @@ +{ + "id": 137348, + "slug": "starry-moon-island-2-out-of-control-mp09", + "name": "Starry Moon Island 2 Out Of Control MP09", + "release_date": "2021-11-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202075" + ], + "created_at": "2026-07-10T10:10:40.125586", + "updated_at": "2026-07-10T10:10:40.125586", + "url": "/v1/games/starry-moon-island-2-out-of-control-mp09" +} diff --git a/site/public/v1/games/starry-moon-island-2-out-of-control-mp10/index.json b/site/public/v1/games/starry-moon-island-2-out-of-control-mp10/index.json new file mode 100644 index 000000000000..04c5c9073fdb --- /dev/null +++ b/site/public/v1/games/starry-moon-island-2-out-of-control-mp10/index.json @@ -0,0 +1,31 @@ +{ + "id": 137349, + "slug": "starry-moon-island-2-out-of-control-mp10", + "name": "Starry Moon Island 2 Out Of Control MP10", + "release_date": "2021-11-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202076" + ], + "created_at": "2026-07-10T10:10:40.125586", + "updated_at": "2026-07-10T10:10:40.125586", + "url": "/v1/games/starry-moon-island-2-out-of-control-mp10" +} diff --git a/site/public/v1/games/starry-moon-island-2-perimeter-mp01/index.json b/site/public/v1/games/starry-moon-island-2-perimeter-mp01/index.json new file mode 100644 index 000000000000..61e86500b101 --- /dev/null +++ b/site/public/v1/games/starry-moon-island-2-perimeter-mp01/index.json @@ -0,0 +1,31 @@ +{ + "id": 137350, + "slug": "starry-moon-island-2-perimeter-mp01", + "name": "Starry Moon Island 2 Perimeter MP01", + "release_date": "2021-11-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202078" + ], + "created_at": "2026-07-10T10:10:40.126653", + "updated_at": "2026-07-10T10:10:40.126653", + "url": "/v1/games/starry-moon-island-2-perimeter-mp01" +} diff --git a/site/public/v1/games/starry-moon-island-2-perimeter-mp02/index.json b/site/public/v1/games/starry-moon-island-2-perimeter-mp02/index.json new file mode 100644 index 000000000000..c5eb7201ca29 --- /dev/null +++ b/site/public/v1/games/starry-moon-island-2-perimeter-mp02/index.json @@ -0,0 +1,31 @@ +{ + "id": 137351, + "slug": "starry-moon-island-2-perimeter-mp02", + "name": "Starry Moon Island 2 Perimeter MP02", + "release_date": "2021-11-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202080" + ], + "created_at": "2026-07-10T10:10:40.126653", + "updated_at": "2026-07-10T10:10:40.126653", + "url": "/v1/games/starry-moon-island-2-perimeter-mp02" +} diff --git a/site/public/v1/games/starry-moon-island-2-perimeter-mp03/index.json b/site/public/v1/games/starry-moon-island-2-perimeter-mp03/index.json new file mode 100644 index 000000000000..9bf81ef9c3ff --- /dev/null +++ b/site/public/v1/games/starry-moon-island-2-perimeter-mp03/index.json @@ -0,0 +1,31 @@ +{ + "id": 137352, + "slug": "starry-moon-island-2-perimeter-mp03", + "name": "Starry Moon Island 2 Perimeter MP03", + "release_date": "2021-11-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202081" + ], + "created_at": "2026-07-10T10:10:40.126653", + "updated_at": "2026-07-10T10:10:40.126653", + "url": "/v1/games/starry-moon-island-2-perimeter-mp03" +} diff --git a/site/public/v1/games/starry-moon-island-2-perimeter-mp04/index.json b/site/public/v1/games/starry-moon-island-2-perimeter-mp04/index.json new file mode 100644 index 000000000000..a0f365ab80e9 --- /dev/null +++ b/site/public/v1/games/starry-moon-island-2-perimeter-mp04/index.json @@ -0,0 +1,31 @@ +{ + "id": 137353, + "slug": "starry-moon-island-2-perimeter-mp04", + "name": "Starry Moon Island 2 Perimeter MP04", + "release_date": "2021-11-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202082" + ], + "created_at": "2026-07-10T10:10:40.126653", + "updated_at": "2026-07-10T10:10:40.126653", + "url": "/v1/games/starry-moon-island-2-perimeter-mp04" +} diff --git a/site/public/v1/games/starry-moon-island-2-perimeter-mp05/index.json b/site/public/v1/games/starry-moon-island-2-perimeter-mp05/index.json new file mode 100644 index 000000000000..3b974fa7c897 --- /dev/null +++ b/site/public/v1/games/starry-moon-island-2-perimeter-mp05/index.json @@ -0,0 +1,31 @@ +{ + "id": 137354, + "slug": "starry-moon-island-2-perimeter-mp05", + "name": "Starry Moon Island 2 Perimeter MP05", + "release_date": "2021-11-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202083" + ], + "created_at": "2026-07-10T10:10:40.127654", + "updated_at": "2026-07-10T10:10:40.127654", + "url": "/v1/games/starry-moon-island-2-perimeter-mp05" +} diff --git a/site/public/v1/games/starry-moon-island-2-perimeter-mp06/index.json b/site/public/v1/games/starry-moon-island-2-perimeter-mp06/index.json new file mode 100644 index 000000000000..ee5f8a9cf941 --- /dev/null +++ b/site/public/v1/games/starry-moon-island-2-perimeter-mp06/index.json @@ -0,0 +1,31 @@ +{ + "id": 137355, + "slug": "starry-moon-island-2-perimeter-mp06", + "name": "Starry Moon Island 2 Perimeter MP06", + "release_date": "2021-11-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202084" + ], + "created_at": "2026-07-10T10:10:40.127654", + "updated_at": "2026-07-10T10:10:40.127654", + "url": "/v1/games/starry-moon-island-2-perimeter-mp06" +} diff --git a/site/public/v1/games/starry-moon-island-2-perimeter-mp07/index.json b/site/public/v1/games/starry-moon-island-2-perimeter-mp07/index.json new file mode 100644 index 000000000000..6ddcda57d040 --- /dev/null +++ b/site/public/v1/games/starry-moon-island-2-perimeter-mp07/index.json @@ -0,0 +1,31 @@ +{ + "id": 137356, + "slug": "starry-moon-island-2-perimeter-mp07", + "name": "Starry Moon Island 2 Perimeter MP07", + "release_date": "2021-11-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202085" + ], + "created_at": "2026-07-10T10:10:40.127654", + "updated_at": "2026-07-10T10:10:40.127654", + "url": "/v1/games/starry-moon-island-2-perimeter-mp07" +} diff --git a/site/public/v1/games/starry-moon-island-2-perimeter-mp08/index.json b/site/public/v1/games/starry-moon-island-2-perimeter-mp08/index.json new file mode 100644 index 000000000000..195ca6844878 --- /dev/null +++ b/site/public/v1/games/starry-moon-island-2-perimeter-mp08/index.json @@ -0,0 +1,31 @@ +{ + "id": 137357, + "slug": "starry-moon-island-2-perimeter-mp08", + "name": "Starry Moon Island 2 Perimeter MP08", + "release_date": "2021-11-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202086" + ], + "created_at": "2026-07-10T10:10:40.127654", + "updated_at": "2026-07-10T10:10:40.127654", + "url": "/v1/games/starry-moon-island-2-perimeter-mp08" +} diff --git a/site/public/v1/games/starry-moon-island-2-perimeter-mp09/index.json b/site/public/v1/games/starry-moon-island-2-perimeter-mp09/index.json new file mode 100644 index 000000000000..06d4bc3043c2 --- /dev/null +++ b/site/public/v1/games/starry-moon-island-2-perimeter-mp09/index.json @@ -0,0 +1,31 @@ +{ + "id": 137358, + "slug": "starry-moon-island-2-perimeter-mp09", + "name": "Starry Moon Island 2 Perimeter MP09", + "release_date": "2021-11-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202087" + ], + "created_at": "2026-07-10T10:10:40.127654", + "updated_at": "2026-07-10T10:10:40.127654", + "url": "/v1/games/starry-moon-island-2-perimeter-mp09" +} diff --git a/site/public/v1/games/starry-moon-island-2-perimeter-mp10/index.json b/site/public/v1/games/starry-moon-island-2-perimeter-mp10/index.json new file mode 100644 index 000000000000..a6d180668d96 --- /dev/null +++ b/site/public/v1/games/starry-moon-island-2-perimeter-mp10/index.json @@ -0,0 +1,31 @@ +{ + "id": 137359, + "slug": "starry-moon-island-2-perimeter-mp10", + "name": "Starry Moon Island 2 Perimeter MP10", + "release_date": "2021-11-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202088" + ], + "created_at": "2026-07-10T10:10:40.128674", + "updated_at": "2026-07-10T10:10:40.128674", + "url": "/v1/games/starry-moon-island-2-perimeter-mp10" +} diff --git a/site/public/v1/games/starry-moon-island-2-red-snake-mp01/index.json b/site/public/v1/games/starry-moon-island-2-red-snake-mp01/index.json new file mode 100644 index 000000000000..1e956207075d --- /dev/null +++ b/site/public/v1/games/starry-moon-island-2-red-snake-mp01/index.json @@ -0,0 +1,31 @@ +{ + "id": 137360, + "slug": "starry-moon-island-2-red-snake-mp01", + "name": "Starry Moon Island 2 Red Snake MP01", + "release_date": "2021-11-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202091" + ], + "created_at": "2026-07-10T10:10:40.128674", + "updated_at": "2026-07-10T10:10:40.128674", + "url": "/v1/games/starry-moon-island-2-red-snake-mp01" +} diff --git a/site/public/v1/games/starry-moon-island-2-red-snake-mp02/index.json b/site/public/v1/games/starry-moon-island-2-red-snake-mp02/index.json new file mode 100644 index 000000000000..47741e75913f --- /dev/null +++ b/site/public/v1/games/starry-moon-island-2-red-snake-mp02/index.json @@ -0,0 +1,31 @@ +{ + "id": 137361, + "slug": "starry-moon-island-2-red-snake-mp02", + "name": "Starry Moon Island 2 Red Snake MP02", + "release_date": "2021-11-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202092" + ], + "created_at": "2026-07-10T10:10:40.128674", + "updated_at": "2026-07-10T10:10:40.128674", + "url": "/v1/games/starry-moon-island-2-red-snake-mp02" +} diff --git a/site/public/v1/games/starry-moon-island-2-red-snake-mp03/index.json b/site/public/v1/games/starry-moon-island-2-red-snake-mp03/index.json new file mode 100644 index 000000000000..1d069b20acee --- /dev/null +++ b/site/public/v1/games/starry-moon-island-2-red-snake-mp03/index.json @@ -0,0 +1,31 @@ +{ + "id": 137362, + "slug": "starry-moon-island-2-red-snake-mp03", + "name": "Starry Moon Island 2 Red Snake MP03", + "release_date": "2021-11-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202093" + ], + "created_at": "2026-07-10T10:10:40.128674", + "updated_at": "2026-07-10T10:10:40.128674", + "url": "/v1/games/starry-moon-island-2-red-snake-mp03" +} diff --git a/site/public/v1/games/starry-moon-island-2-red-snake-mp04/index.json b/site/public/v1/games/starry-moon-island-2-red-snake-mp04/index.json new file mode 100644 index 000000000000..e14ab2aff1d7 --- /dev/null +++ b/site/public/v1/games/starry-moon-island-2-red-snake-mp04/index.json @@ -0,0 +1,31 @@ +{ + "id": 137363, + "slug": "starry-moon-island-2-red-snake-mp04", + "name": "Starry Moon Island 2 Red Snake MP04", + "release_date": "2021-11-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202094" + ], + "created_at": "2026-07-10T10:10:40.129650", + "updated_at": "2026-07-10T10:10:40.129650", + "url": "/v1/games/starry-moon-island-2-red-snake-mp04" +} diff --git a/site/public/v1/games/starry-moon-island-2-red-snake-mp05/index.json b/site/public/v1/games/starry-moon-island-2-red-snake-mp05/index.json new file mode 100644 index 000000000000..dacb78c99d04 --- /dev/null +++ b/site/public/v1/games/starry-moon-island-2-red-snake-mp05/index.json @@ -0,0 +1,31 @@ +{ + "id": 137364, + "slug": "starry-moon-island-2-red-snake-mp05", + "name": "Starry Moon Island 2 Red Snake MP05", + "release_date": "2021-11-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202095" + ], + "created_at": "2026-07-10T10:10:40.129650", + "updated_at": "2026-07-10T10:10:40.129650", + "url": "/v1/games/starry-moon-island-2-red-snake-mp05" +} diff --git a/site/public/v1/games/starry-moon-island-2-red-snake-mp06/index.json b/site/public/v1/games/starry-moon-island-2-red-snake-mp06/index.json new file mode 100644 index 000000000000..1054c4cdd4ac --- /dev/null +++ b/site/public/v1/games/starry-moon-island-2-red-snake-mp06/index.json @@ -0,0 +1,31 @@ +{ + "id": 137365, + "slug": "starry-moon-island-2-red-snake-mp06", + "name": "Starry Moon Island 2 Red Snake MP06", + "release_date": "2021-11-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202097" + ], + "created_at": "2026-07-10T10:10:40.129650", + "updated_at": "2026-07-10T10:10:40.129650", + "url": "/v1/games/starry-moon-island-2-red-snake-mp06" +} diff --git a/site/public/v1/games/starry-moon-island-2-red-snake-mp07/index.json b/site/public/v1/games/starry-moon-island-2-red-snake-mp07/index.json new file mode 100644 index 000000000000..e71198efa5d4 --- /dev/null +++ b/site/public/v1/games/starry-moon-island-2-red-snake-mp07/index.json @@ -0,0 +1,31 @@ +{ + "id": 137366, + "slug": "starry-moon-island-2-red-snake-mp07", + "name": "Starry Moon Island 2 Red Snake MP07", + "release_date": "2021-11-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202098" + ], + "created_at": "2026-07-10T10:10:40.129650", + "updated_at": "2026-07-10T10:10:40.129650", + "url": "/v1/games/starry-moon-island-2-red-snake-mp07" +} diff --git a/site/public/v1/games/starry-moon-island-2-red-snake-mp08/index.json b/site/public/v1/games/starry-moon-island-2-red-snake-mp08/index.json new file mode 100644 index 000000000000..f37fac25926e --- /dev/null +++ b/site/public/v1/games/starry-moon-island-2-red-snake-mp08/index.json @@ -0,0 +1,31 @@ +{ + "id": 137367, + "slug": "starry-moon-island-2-red-snake-mp08", + "name": "Starry Moon Island 2 Red Snake MP08", + "release_date": "2021-11-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202100" + ], + "created_at": "2026-07-10T10:10:40.129650", + "updated_at": "2026-07-10T10:10:40.129650", + "url": "/v1/games/starry-moon-island-2-red-snake-mp08" +} diff --git a/site/public/v1/games/starry-moon-island-2-red-snake-mp09/index.json b/site/public/v1/games/starry-moon-island-2-red-snake-mp09/index.json new file mode 100644 index 000000000000..d4c9f8b8b03c --- /dev/null +++ b/site/public/v1/games/starry-moon-island-2-red-snake-mp09/index.json @@ -0,0 +1,31 @@ +{ + "id": 137368, + "slug": "starry-moon-island-2-red-snake-mp09", + "name": "Starry Moon Island 2 Red Snake MP09", + "release_date": "2021-11-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202101" + ], + "created_at": "2026-07-10T10:10:40.130666", + "updated_at": "2026-07-10T10:10:40.130666", + "url": "/v1/games/starry-moon-island-2-red-snake-mp09" +} diff --git a/site/public/v1/games/starry-moon-island-2-red-snake-mp10/index.json b/site/public/v1/games/starry-moon-island-2-red-snake-mp10/index.json new file mode 100644 index 000000000000..6a64d99d0b8a --- /dev/null +++ b/site/public/v1/games/starry-moon-island-2-red-snake-mp10/index.json @@ -0,0 +1,31 @@ +{ + "id": 137369, + "slug": "starry-moon-island-2-red-snake-mp10", + "name": "Starry Moon Island 2 Red Snake MP10", + "release_date": "2021-11-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202102" + ], + "created_at": "2026-07-10T10:10:40.130666", + "updated_at": "2026-07-10T10:10:40.130666", + "url": "/v1/games/starry-moon-island-2-red-snake-mp10" +} diff --git a/site/public/v1/games/starry-moon-island-2-star-ocean-mp01/index.json b/site/public/v1/games/starry-moon-island-2-star-ocean-mp01/index.json new file mode 100644 index 000000000000..cf975e0f612c --- /dev/null +++ b/site/public/v1/games/starry-moon-island-2-star-ocean-mp01/index.json @@ -0,0 +1,31 @@ +{ + "id": 137370, + "slug": "starry-moon-island-2-star-ocean-mp01", + "name": "Starry Moon Island 2 Star Ocean MP01", + "release_date": "2021-11-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202103" + ], + "created_at": "2026-07-10T10:10:40.130666", + "updated_at": "2026-07-10T10:10:40.130666", + "url": "/v1/games/starry-moon-island-2-star-ocean-mp01" +} diff --git a/site/public/v1/games/starry-moon-island-2-star-ocean-mp02/index.json b/site/public/v1/games/starry-moon-island-2-star-ocean-mp02/index.json new file mode 100644 index 000000000000..0715959af66b --- /dev/null +++ b/site/public/v1/games/starry-moon-island-2-star-ocean-mp02/index.json @@ -0,0 +1,31 @@ +{ + "id": 137371, + "slug": "starry-moon-island-2-star-ocean-mp02", + "name": "Starry Moon Island 2 Star Ocean MP02", + "release_date": "2021-11-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202104" + ], + "created_at": "2026-07-10T10:10:40.130666", + "updated_at": "2026-07-10T10:10:40.130666", + "url": "/v1/games/starry-moon-island-2-star-ocean-mp02" +} diff --git a/site/public/v1/games/starry-moon-island-2-star-ocean-mp03/index.json b/site/public/v1/games/starry-moon-island-2-star-ocean-mp03/index.json new file mode 100644 index 000000000000..2e9664bcf6a1 --- /dev/null +++ b/site/public/v1/games/starry-moon-island-2-star-ocean-mp03/index.json @@ -0,0 +1,31 @@ +{ + "id": 137372, + "slug": "starry-moon-island-2-star-ocean-mp03", + "name": "Starry Moon Island 2 Star Ocean MP03", + "release_date": "2021-11-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202105" + ], + "created_at": "2026-07-10T10:10:40.130666", + "updated_at": "2026-07-10T10:10:40.130666", + "url": "/v1/games/starry-moon-island-2-star-ocean-mp03" +} diff --git a/site/public/v1/games/starry-moon-island-2-star-ocean-mp04/index.json b/site/public/v1/games/starry-moon-island-2-star-ocean-mp04/index.json new file mode 100644 index 000000000000..a331ea2d8652 --- /dev/null +++ b/site/public/v1/games/starry-moon-island-2-star-ocean-mp04/index.json @@ -0,0 +1,31 @@ +{ + "id": 137373, + "slug": "starry-moon-island-2-star-ocean-mp04", + "name": "Starry Moon Island 2 Star Ocean MP04", + "release_date": "2021-11-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202106" + ], + "created_at": "2026-07-10T10:10:40.131675", + "updated_at": "2026-07-10T10:10:40.131675", + "url": "/v1/games/starry-moon-island-2-star-ocean-mp04" +} diff --git a/site/public/v1/games/starry-moon-island-2-star-ocean-mp05/index.json b/site/public/v1/games/starry-moon-island-2-star-ocean-mp05/index.json new file mode 100644 index 000000000000..fd8e7b0c7180 --- /dev/null +++ b/site/public/v1/games/starry-moon-island-2-star-ocean-mp05/index.json @@ -0,0 +1,31 @@ +{ + "id": 137374, + "slug": "starry-moon-island-2-star-ocean-mp05", + "name": "Starry Moon Island 2 Star Ocean MP05", + "release_date": "2021-11-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202108" + ], + "created_at": "2026-07-10T10:10:40.131675", + "updated_at": "2026-07-10T10:10:40.131675", + "url": "/v1/games/starry-moon-island-2-star-ocean-mp05" +} diff --git a/site/public/v1/games/starry-moon-island-2-star-ocean-mp06/index.json b/site/public/v1/games/starry-moon-island-2-star-ocean-mp06/index.json new file mode 100644 index 000000000000..f973daab1b28 --- /dev/null +++ b/site/public/v1/games/starry-moon-island-2-star-ocean-mp06/index.json @@ -0,0 +1,31 @@ +{ + "id": 137375, + "slug": "starry-moon-island-2-star-ocean-mp06", + "name": "Starry Moon Island 2 Star Ocean MP06", + "release_date": "2021-11-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202109" + ], + "created_at": "2026-07-10T10:10:40.131675", + "updated_at": "2026-07-10T10:10:40.131675", + "url": "/v1/games/starry-moon-island-2-star-ocean-mp06" +} diff --git a/site/public/v1/games/starry-moon-island-2-star-ocean-mp07/index.json b/site/public/v1/games/starry-moon-island-2-star-ocean-mp07/index.json new file mode 100644 index 000000000000..149133c237c7 --- /dev/null +++ b/site/public/v1/games/starry-moon-island-2-star-ocean-mp07/index.json @@ -0,0 +1,31 @@ +{ + "id": 137376, + "slug": "starry-moon-island-2-star-ocean-mp07", + "name": "Starry Moon Island 2 Star Ocean MP07", + "release_date": "2021-11-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202110" + ], + "created_at": "2026-07-10T10:10:40.131675", + "updated_at": "2026-07-10T10:10:40.131675", + "url": "/v1/games/starry-moon-island-2-star-ocean-mp07" +} diff --git a/site/public/v1/games/starry-moon-island-2-star-ocean-mp08/index.json b/site/public/v1/games/starry-moon-island-2-star-ocean-mp08/index.json new file mode 100644 index 000000000000..2b27d744c779 --- /dev/null +++ b/site/public/v1/games/starry-moon-island-2-star-ocean-mp08/index.json @@ -0,0 +1,31 @@ +{ + "id": 137377, + "slug": "starry-moon-island-2-star-ocean-mp08", + "name": "Starry Moon Island 2 Star Ocean MP08", + "release_date": "2021-11-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202111" + ], + "created_at": "2026-07-10T10:10:40.132653", + "updated_at": "2026-07-10T10:10:40.132653", + "url": "/v1/games/starry-moon-island-2-star-ocean-mp08" +} diff --git a/site/public/v1/games/starry-moon-island-2-star-ocean-mp09/index.json b/site/public/v1/games/starry-moon-island-2-star-ocean-mp09/index.json new file mode 100644 index 000000000000..02bbd0e7503f --- /dev/null +++ b/site/public/v1/games/starry-moon-island-2-star-ocean-mp09/index.json @@ -0,0 +1,31 @@ +{ + "id": 137378, + "slug": "starry-moon-island-2-star-ocean-mp09", + "name": "Starry Moon Island 2 Star Ocean MP09", + "release_date": "2021-11-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202112" + ], + "created_at": "2026-07-10T10:10:40.132653", + "updated_at": "2026-07-10T10:10:40.132653", + "url": "/v1/games/starry-moon-island-2-star-ocean-mp09" +} diff --git a/site/public/v1/games/starry-moon-island-2-star-ocean-mp10/index.json b/site/public/v1/games/starry-moon-island-2-star-ocean-mp10/index.json new file mode 100644 index 000000000000..b6298ecbd4fe --- /dev/null +++ b/site/public/v1/games/starry-moon-island-2-star-ocean-mp10/index.json @@ -0,0 +1,31 @@ +{ + "id": 137379, + "slug": "starry-moon-island-2-star-ocean-mp10", + "name": "Starry Moon Island 2 Star Ocean MP10", + "release_date": "2021-11-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202113" + ], + "created_at": "2026-07-10T10:10:40.132653", + "updated_at": "2026-07-10T10:10:40.132653", + "url": "/v1/games/starry-moon-island-2-star-ocean-mp10" +} diff --git a/site/public/v1/games/starry-moon-island-2-tank-advance-mp01/index.json b/site/public/v1/games/starry-moon-island-2-tank-advance-mp01/index.json new file mode 100644 index 000000000000..c33f8df24ac4 --- /dev/null +++ b/site/public/v1/games/starry-moon-island-2-tank-advance-mp01/index.json @@ -0,0 +1,31 @@ +{ + "id": 137380, + "slug": "starry-moon-island-2-tank-advance-mp01", + "name": "Starry Moon Island 2 Tank Advance MP01", + "release_date": "2021-11-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202115" + ], + "created_at": "2026-07-10T10:10:40.132653", + "updated_at": "2026-07-10T10:10:40.132653", + "url": "/v1/games/starry-moon-island-2-tank-advance-mp01" +} diff --git a/site/public/v1/games/starry-moon-island-2-tank-advance-mp02/index.json b/site/public/v1/games/starry-moon-island-2-tank-advance-mp02/index.json new file mode 100644 index 000000000000..7756eded3f8b --- /dev/null +++ b/site/public/v1/games/starry-moon-island-2-tank-advance-mp02/index.json @@ -0,0 +1,31 @@ +{ + "id": 137381, + "slug": "starry-moon-island-2-tank-advance-mp02", + "name": "Starry Moon Island 2 Tank Advance MP02", + "release_date": "2021-11-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202117" + ], + "created_at": "2026-07-10T10:10:40.132653", + "updated_at": "2026-07-10T10:10:40.132653", + "url": "/v1/games/starry-moon-island-2-tank-advance-mp02" +} diff --git a/site/public/v1/games/starry-moon-island-2-tank-advance-mp03/index.json b/site/public/v1/games/starry-moon-island-2-tank-advance-mp03/index.json new file mode 100644 index 000000000000..195c4da40107 --- /dev/null +++ b/site/public/v1/games/starry-moon-island-2-tank-advance-mp03/index.json @@ -0,0 +1,31 @@ +{ + "id": 137382, + "slug": "starry-moon-island-2-tank-advance-mp03", + "name": "Starry Moon Island 2 Tank Advance MP03", + "release_date": "2021-11-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202119" + ], + "created_at": "2026-07-10T10:10:40.133668", + "updated_at": "2026-07-10T10:10:40.133668", + "url": "/v1/games/starry-moon-island-2-tank-advance-mp03" +} diff --git a/site/public/v1/games/starry-moon-island-2-tank-advance-mp04/index.json b/site/public/v1/games/starry-moon-island-2-tank-advance-mp04/index.json new file mode 100644 index 000000000000..4bd1b9571e17 --- /dev/null +++ b/site/public/v1/games/starry-moon-island-2-tank-advance-mp04/index.json @@ -0,0 +1,31 @@ +{ + "id": 137383, + "slug": "starry-moon-island-2-tank-advance-mp04", + "name": "Starry Moon Island 2 Tank Advance MP04", + "release_date": "2021-11-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202125" + ], + "created_at": "2026-07-10T10:10:40.133668", + "updated_at": "2026-07-10T10:10:40.133668", + "url": "/v1/games/starry-moon-island-2-tank-advance-mp04" +} diff --git a/site/public/v1/games/starry-moon-island-2-tank-advance-mp05/index.json b/site/public/v1/games/starry-moon-island-2-tank-advance-mp05/index.json new file mode 100644 index 000000000000..3eb64ea2f472 --- /dev/null +++ b/site/public/v1/games/starry-moon-island-2-tank-advance-mp05/index.json @@ -0,0 +1,31 @@ +{ + "id": 137384, + "slug": "starry-moon-island-2-tank-advance-mp05", + "name": "Starry Moon Island 2 Tank Advance MP05", + "release_date": "2021-11-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202126" + ], + "created_at": "2026-07-10T10:10:40.133668", + "updated_at": "2026-07-10T10:10:40.133668", + "url": "/v1/games/starry-moon-island-2-tank-advance-mp05" +} diff --git a/site/public/v1/games/starry-moon-island-2-tank-advance-mp06/index.json b/site/public/v1/games/starry-moon-island-2-tank-advance-mp06/index.json new file mode 100644 index 000000000000..c2b6a0ca5b32 --- /dev/null +++ b/site/public/v1/games/starry-moon-island-2-tank-advance-mp06/index.json @@ -0,0 +1,31 @@ +{ + "id": 137385, + "slug": "starry-moon-island-2-tank-advance-mp06", + "name": "Starry Moon Island 2 Tank Advance MP06", + "release_date": "2021-11-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202127" + ], + "created_at": "2026-07-10T10:10:40.134592", + "updated_at": "2026-07-10T10:10:40.134592", + "url": "/v1/games/starry-moon-island-2-tank-advance-mp06" +} diff --git a/site/public/v1/games/starry-moon-island-2-tank-advance-mp07/index.json b/site/public/v1/games/starry-moon-island-2-tank-advance-mp07/index.json new file mode 100644 index 000000000000..26e6349c1072 --- /dev/null +++ b/site/public/v1/games/starry-moon-island-2-tank-advance-mp07/index.json @@ -0,0 +1,31 @@ +{ + "id": 137386, + "slug": "starry-moon-island-2-tank-advance-mp07", + "name": "Starry Moon Island 2 Tank Advance MP07", + "release_date": "2021-11-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202128" + ], + "created_at": "2026-07-10T10:10:40.134592", + "updated_at": "2026-07-10T10:10:40.134592", + "url": "/v1/games/starry-moon-island-2-tank-advance-mp07" +} diff --git a/site/public/v1/games/starry-moon-island-2-tank-advance-mp08/index.json b/site/public/v1/games/starry-moon-island-2-tank-advance-mp08/index.json new file mode 100644 index 000000000000..ded946a3b10d --- /dev/null +++ b/site/public/v1/games/starry-moon-island-2-tank-advance-mp08/index.json @@ -0,0 +1,31 @@ +{ + "id": 137387, + "slug": "starry-moon-island-2-tank-advance-mp08", + "name": "Starry Moon Island 2 Tank Advance MP08", + "release_date": "2021-11-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202129" + ], + "created_at": "2026-07-10T10:10:40.134592", + "updated_at": "2026-07-10T10:10:40.134592", + "url": "/v1/games/starry-moon-island-2-tank-advance-mp08" +} diff --git a/site/public/v1/games/starry-moon-island-2-tank-advance-mp09/index.json b/site/public/v1/games/starry-moon-island-2-tank-advance-mp09/index.json new file mode 100644 index 000000000000..47a357b4305b --- /dev/null +++ b/site/public/v1/games/starry-moon-island-2-tank-advance-mp09/index.json @@ -0,0 +1,31 @@ +{ + "id": 137388, + "slug": "starry-moon-island-2-tank-advance-mp09", + "name": "Starry Moon Island 2 Tank Advance MP09", + "release_date": "2021-11-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202130" + ], + "created_at": "2026-07-10T10:10:40.134592", + "updated_at": "2026-07-10T10:10:40.134592", + "url": "/v1/games/starry-moon-island-2-tank-advance-mp09" +} diff --git a/site/public/v1/games/starry-moon-island-2-tank-advance-mp10/index.json b/site/public/v1/games/starry-moon-island-2-tank-advance-mp10/index.json new file mode 100644 index 000000000000..742afa28cb10 --- /dev/null +++ b/site/public/v1/games/starry-moon-island-2-tank-advance-mp10/index.json @@ -0,0 +1,31 @@ +{ + "id": 137389, + "slug": "starry-moon-island-2-tank-advance-mp10", + "name": "Starry Moon Island 2 Tank Advance MP10", + "release_date": "2021-11-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202132" + ], + "created_at": "2026-07-10T10:10:40.134592", + "updated_at": "2026-07-10T10:10:40.134592", + "url": "/v1/games/starry-moon-island-2-tank-advance-mp10" +} diff --git a/site/public/v1/games/starry-moon-island-break-out-mp01/index.json b/site/public/v1/games/starry-moon-island-break-out-mp01/index.json new file mode 100644 index 000000000000..357f2b34d362 --- /dev/null +++ b/site/public/v1/games/starry-moon-island-break-out-mp01/index.json @@ -0,0 +1,31 @@ +{ + "id": 137391, + "slug": "starry-moon-island-break-out-mp01", + "name": "Starry Moon Island Break Out MP01", + "release_date": "2021-10-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202133" + ], + "created_at": "2026-07-10T10:10:40.135680", + "updated_at": "2026-07-10T10:10:40.135680", + "url": "/v1/games/starry-moon-island-break-out-mp01" +} diff --git a/site/public/v1/games/starry-moon-island-break-out-mp02/index.json b/site/public/v1/games/starry-moon-island-break-out-mp02/index.json new file mode 100644 index 000000000000..fdded579ab82 --- /dev/null +++ b/site/public/v1/games/starry-moon-island-break-out-mp02/index.json @@ -0,0 +1,31 @@ +{ + "id": 137392, + "slug": "starry-moon-island-break-out-mp02", + "name": "Starry Moon Island Break Out MP02", + "release_date": "2021-10-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202134" + ], + "created_at": "2026-07-10T10:10:40.135680", + "updated_at": "2026-07-10T10:10:40.135680", + "url": "/v1/games/starry-moon-island-break-out-mp02" +} diff --git a/site/public/v1/games/starry-moon-island-break-out-mp03/index.json b/site/public/v1/games/starry-moon-island-break-out-mp03/index.json new file mode 100644 index 000000000000..fe69bb7d1668 --- /dev/null +++ b/site/public/v1/games/starry-moon-island-break-out-mp03/index.json @@ -0,0 +1,31 @@ +{ + "id": 137393, + "slug": "starry-moon-island-break-out-mp03", + "name": "Starry Moon Island Break Out MP03", + "release_date": "2021-10-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202135" + ], + "created_at": "2026-07-10T10:10:40.135680", + "updated_at": "2026-07-10T10:10:40.135680", + "url": "/v1/games/starry-moon-island-break-out-mp03" +} diff --git a/site/public/v1/games/starry-moon-island-break-out-mp04/index.json b/site/public/v1/games/starry-moon-island-break-out-mp04/index.json new file mode 100644 index 000000000000..b9d132a72eea --- /dev/null +++ b/site/public/v1/games/starry-moon-island-break-out-mp04/index.json @@ -0,0 +1,31 @@ +{ + "id": 137394, + "slug": "starry-moon-island-break-out-mp04", + "name": "Starry Moon Island Break Out MP04", + "release_date": "2021-10-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202136" + ], + "created_at": "2026-07-10T10:10:40.135680", + "updated_at": "2026-07-10T10:10:40.135680", + "url": "/v1/games/starry-moon-island-break-out-mp04" +} diff --git a/site/public/v1/games/starry-moon-island-break-out-mp05/index.json b/site/public/v1/games/starry-moon-island-break-out-mp05/index.json new file mode 100644 index 000000000000..fa48607597ca --- /dev/null +++ b/site/public/v1/games/starry-moon-island-break-out-mp05/index.json @@ -0,0 +1,31 @@ +{ + "id": 137395, + "slug": "starry-moon-island-break-out-mp05", + "name": "Starry Moon Island Break Out MP05", + "release_date": "2021-10-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202138" + ], + "created_at": "2026-07-10T10:10:40.136585", + "updated_at": "2026-07-10T10:10:40.136585", + "url": "/v1/games/starry-moon-island-break-out-mp05" +} diff --git a/site/public/v1/games/starry-moon-island-break-out-mp06/index.json b/site/public/v1/games/starry-moon-island-break-out-mp06/index.json new file mode 100644 index 000000000000..e89a34ee4bd9 --- /dev/null +++ b/site/public/v1/games/starry-moon-island-break-out-mp06/index.json @@ -0,0 +1,31 @@ +{ + "id": 137396, + "slug": "starry-moon-island-break-out-mp06", + "name": "Starry Moon Island Break Out MP06", + "release_date": "2021-10-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202139" + ], + "created_at": "2026-07-10T10:10:40.136585", + "updated_at": "2026-07-10T10:10:40.136585", + "url": "/v1/games/starry-moon-island-break-out-mp06" +} diff --git a/site/public/v1/games/starry-moon-island-break-out-mp07/index.json b/site/public/v1/games/starry-moon-island-break-out-mp07/index.json new file mode 100644 index 000000000000..0e7015d285dc --- /dev/null +++ b/site/public/v1/games/starry-moon-island-break-out-mp07/index.json @@ -0,0 +1,31 @@ +{ + "id": 137397, + "slug": "starry-moon-island-break-out-mp07", + "name": "Starry Moon Island Break Out MP07", + "release_date": "2021-10-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202141" + ], + "created_at": "2026-07-10T10:10:40.136585", + "updated_at": "2026-07-10T10:10:40.136585", + "url": "/v1/games/starry-moon-island-break-out-mp07" +} diff --git a/site/public/v1/games/starry-moon-island-break-out-mp08/index.json b/site/public/v1/games/starry-moon-island-break-out-mp08/index.json new file mode 100644 index 000000000000..67b90b950952 --- /dev/null +++ b/site/public/v1/games/starry-moon-island-break-out-mp08/index.json @@ -0,0 +1,31 @@ +{ + "id": 137398, + "slug": "starry-moon-island-break-out-mp08", + "name": "Starry Moon Island Break Out MP08", + "release_date": "2021-10-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202143" + ], + "created_at": "2026-07-10T10:10:40.136585", + "updated_at": "2026-07-10T10:10:40.136585", + "url": "/v1/games/starry-moon-island-break-out-mp08" +} diff --git a/site/public/v1/games/starry-moon-island-break-out-mp09/index.json b/site/public/v1/games/starry-moon-island-break-out-mp09/index.json new file mode 100644 index 000000000000..90f23b5ae9b2 --- /dev/null +++ b/site/public/v1/games/starry-moon-island-break-out-mp09/index.json @@ -0,0 +1,31 @@ +{ + "id": 137399, + "slug": "starry-moon-island-break-out-mp09", + "name": "Starry Moon Island Break Out MP09", + "release_date": "2021-10-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202144" + ], + "created_at": "2026-07-10T10:10:40.137585", + "updated_at": "2026-07-10T10:10:40.137585", + "url": "/v1/games/starry-moon-island-break-out-mp09" +} diff --git a/site/public/v1/games/starry-moon-island-break-out-mp10/index.json b/site/public/v1/games/starry-moon-island-break-out-mp10/index.json new file mode 100644 index 000000000000..bc0ada946033 --- /dev/null +++ b/site/public/v1/games/starry-moon-island-break-out-mp10/index.json @@ -0,0 +1,31 @@ +{ + "id": 137400, + "slug": "starry-moon-island-break-out-mp10", + "name": "Starry Moon Island Break Out MP10", + "release_date": "2021-10-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202146" + ], + "created_at": "2026-07-10T10:10:40.137585", + "updated_at": "2026-07-10T10:10:40.137585", + "url": "/v1/games/starry-moon-island-break-out-mp10" +} diff --git a/site/public/v1/games/starry-moon-island-cannon-war-mp01/index.json b/site/public/v1/games/starry-moon-island-cannon-war-mp01/index.json new file mode 100644 index 000000000000..27768a43e7d1 --- /dev/null +++ b/site/public/v1/games/starry-moon-island-cannon-war-mp01/index.json @@ -0,0 +1,31 @@ +{ + "id": 137401, + "slug": "starry-moon-island-cannon-war-mp01", + "name": "Starry Moon Island Cannon War MP01", + "release_date": "2021-10-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202148" + ], + "created_at": "2026-07-10T10:10:40.137585", + "updated_at": "2026-07-10T10:10:40.137585", + "url": "/v1/games/starry-moon-island-cannon-war-mp01" +} diff --git a/site/public/v1/games/starry-moon-island-cannon-war-mp02/index.json b/site/public/v1/games/starry-moon-island-cannon-war-mp02/index.json new file mode 100644 index 000000000000..38d43e2479f8 --- /dev/null +++ b/site/public/v1/games/starry-moon-island-cannon-war-mp02/index.json @@ -0,0 +1,31 @@ +{ + "id": 137402, + "slug": "starry-moon-island-cannon-war-mp02", + "name": "Starry Moon Island Cannon War MP02", + "release_date": "2021-10-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202150" + ], + "created_at": "2026-07-10T10:10:40.137585", + "updated_at": "2026-07-10T10:10:40.137585", + "url": "/v1/games/starry-moon-island-cannon-war-mp02" +} diff --git a/site/public/v1/games/starry-moon-island-cannon-war-mp03/index.json b/site/public/v1/games/starry-moon-island-cannon-war-mp03/index.json new file mode 100644 index 000000000000..048d5f8dabd6 --- /dev/null +++ b/site/public/v1/games/starry-moon-island-cannon-war-mp03/index.json @@ -0,0 +1,31 @@ +{ + "id": 137403, + "slug": "starry-moon-island-cannon-war-mp03", + "name": "Starry Moon Island Cannon War MP03", + "release_date": "2021-10-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202151" + ], + "created_at": "2026-07-10T10:10:40.137585", + "updated_at": "2026-07-10T10:10:40.137585", + "url": "/v1/games/starry-moon-island-cannon-war-mp03" +} diff --git a/site/public/v1/games/starry-moon-island-cannon-war-mp04/index.json b/site/public/v1/games/starry-moon-island-cannon-war-mp04/index.json new file mode 100644 index 000000000000..b680f29aad32 --- /dev/null +++ b/site/public/v1/games/starry-moon-island-cannon-war-mp04/index.json @@ -0,0 +1,31 @@ +{ + "id": 137404, + "slug": "starry-moon-island-cannon-war-mp04", + "name": "Starry Moon Island Cannon War MP04", + "release_date": "2021-10-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202153" + ], + "created_at": "2026-07-10T10:10:40.138666", + "updated_at": "2026-07-10T10:10:40.138666", + "url": "/v1/games/starry-moon-island-cannon-war-mp04" +} diff --git a/site/public/v1/games/starry-moon-island-cannon-war-mp05/index.json b/site/public/v1/games/starry-moon-island-cannon-war-mp05/index.json new file mode 100644 index 000000000000..80a6870c1575 --- /dev/null +++ b/site/public/v1/games/starry-moon-island-cannon-war-mp05/index.json @@ -0,0 +1,31 @@ +{ + "id": 137405, + "slug": "starry-moon-island-cannon-war-mp05", + "name": "Starry Moon Island Cannon War MP05", + "release_date": "2021-10-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202154" + ], + "created_at": "2026-07-10T10:10:40.138666", + "updated_at": "2026-07-10T10:10:40.138666", + "url": "/v1/games/starry-moon-island-cannon-war-mp05" +} diff --git a/site/public/v1/games/starry-moon-island-cannon-war-mp06/index.json b/site/public/v1/games/starry-moon-island-cannon-war-mp06/index.json new file mode 100644 index 000000000000..384b1d27ad71 --- /dev/null +++ b/site/public/v1/games/starry-moon-island-cannon-war-mp06/index.json @@ -0,0 +1,31 @@ +{ + "id": 137406, + "slug": "starry-moon-island-cannon-war-mp06", + "name": "Starry Moon Island Cannon War MP06", + "release_date": "2021-10-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202158" + ], + "created_at": "2026-07-10T10:10:40.138666", + "updated_at": "2026-07-10T10:10:40.138666", + "url": "/v1/games/starry-moon-island-cannon-war-mp06" +} diff --git a/site/public/v1/games/starry-moon-island-cannon-war-mp07/index.json b/site/public/v1/games/starry-moon-island-cannon-war-mp07/index.json new file mode 100644 index 000000000000..b1b196a8dedd --- /dev/null +++ b/site/public/v1/games/starry-moon-island-cannon-war-mp07/index.json @@ -0,0 +1,31 @@ +{ + "id": 137407, + "slug": "starry-moon-island-cannon-war-mp07", + "name": "Starry Moon Island Cannon War MP07", + "release_date": "2021-10-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202161" + ], + "created_at": "2026-07-10T10:10:40.138666", + "updated_at": "2026-07-10T10:10:40.138666", + "url": "/v1/games/starry-moon-island-cannon-war-mp07" +} diff --git a/site/public/v1/games/starry-moon-island-cannon-war-mp08/index.json b/site/public/v1/games/starry-moon-island-cannon-war-mp08/index.json new file mode 100644 index 000000000000..fc637d7bd6d7 --- /dev/null +++ b/site/public/v1/games/starry-moon-island-cannon-war-mp08/index.json @@ -0,0 +1,31 @@ +{ + "id": 137408, + "slug": "starry-moon-island-cannon-war-mp08", + "name": "Starry Moon Island Cannon War MP08", + "release_date": "2021-10-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202162" + ], + "created_at": "2026-07-10T10:10:40.139654", + "updated_at": "2026-07-10T10:10:40.139654", + "url": "/v1/games/starry-moon-island-cannon-war-mp08" +} diff --git a/site/public/v1/games/starry-moon-island-cannon-war-mp09/index.json b/site/public/v1/games/starry-moon-island-cannon-war-mp09/index.json new file mode 100644 index 000000000000..2b08a5236007 --- /dev/null +++ b/site/public/v1/games/starry-moon-island-cannon-war-mp09/index.json @@ -0,0 +1,31 @@ +{ + "id": 137409, + "slug": "starry-moon-island-cannon-war-mp09", + "name": "Starry Moon Island Cannon War MP09", + "release_date": "2021-10-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202163" + ], + "created_at": "2026-07-10T10:10:40.139654", + "updated_at": "2026-07-10T10:10:40.139654", + "url": "/v1/games/starry-moon-island-cannon-war-mp09" +} diff --git a/site/public/v1/games/starry-moon-island-cannon-war-mp10/index.json b/site/public/v1/games/starry-moon-island-cannon-war-mp10/index.json new file mode 100644 index 000000000000..a8c6b7909955 --- /dev/null +++ b/site/public/v1/games/starry-moon-island-cannon-war-mp10/index.json @@ -0,0 +1,31 @@ +{ + "id": 137410, + "slug": "starry-moon-island-cannon-war-mp10", + "name": "Starry Moon Island Cannon War MP10", + "release_date": "2021-10-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202165" + ], + "created_at": "2026-07-10T10:10:40.139654", + "updated_at": "2026-07-10T10:10:40.139654", + "url": "/v1/games/starry-moon-island-cannon-war-mp10" +} diff --git a/site/public/v1/games/starry-moon-island-cannonade-mp01/index.json b/site/public/v1/games/starry-moon-island-cannonade-mp01/index.json new file mode 100644 index 000000000000..dd36416a640f --- /dev/null +++ b/site/public/v1/games/starry-moon-island-cannonade-mp01/index.json @@ -0,0 +1,31 @@ +{ + "id": 137411, + "slug": "starry-moon-island-cannonade-mp01", + "name": "Starry Moon Island Cannonade MP01", + "release_date": "2021-10-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202166" + ], + "created_at": "2026-07-10T10:10:40.139654", + "updated_at": "2026-07-10T10:10:40.139654", + "url": "/v1/games/starry-moon-island-cannonade-mp01" +} diff --git a/site/public/v1/games/starry-moon-island-cannonade-mp02/index.json b/site/public/v1/games/starry-moon-island-cannonade-mp02/index.json new file mode 100644 index 000000000000..a0c29cce7cfd --- /dev/null +++ b/site/public/v1/games/starry-moon-island-cannonade-mp02/index.json @@ -0,0 +1,31 @@ +{ + "id": 137412, + "slug": "starry-moon-island-cannonade-mp02", + "name": "Starry Moon Island Cannonade MP02", + "release_date": "2021-10-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202167" + ], + "created_at": "2026-07-10T10:10:40.139654", + "updated_at": "2026-07-10T10:10:40.139654", + "url": "/v1/games/starry-moon-island-cannonade-mp02" +} diff --git a/site/public/v1/games/starry-moon-island-cannonade-mp03/index.json b/site/public/v1/games/starry-moon-island-cannonade-mp03/index.json new file mode 100644 index 000000000000..8742db840a54 --- /dev/null +++ b/site/public/v1/games/starry-moon-island-cannonade-mp03/index.json @@ -0,0 +1,31 @@ +{ + "id": 137413, + "slug": "starry-moon-island-cannonade-mp03", + "name": "Starry Moon Island Cannonade MP03", + "release_date": "2021-10-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202170" + ], + "created_at": "2026-07-10T10:10:40.140688", + "updated_at": "2026-07-10T10:10:40.140688", + "url": "/v1/games/starry-moon-island-cannonade-mp03" +} diff --git a/site/public/v1/games/starry-moon-island-cannonade-mp04/index.json b/site/public/v1/games/starry-moon-island-cannonade-mp04/index.json new file mode 100644 index 000000000000..71686d7c1c20 --- /dev/null +++ b/site/public/v1/games/starry-moon-island-cannonade-mp04/index.json @@ -0,0 +1,31 @@ +{ + "id": 137414, + "slug": "starry-moon-island-cannonade-mp04", + "name": "Starry Moon Island Cannonade MP04", + "release_date": "2021-10-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202171" + ], + "created_at": "2026-07-10T10:10:40.140688", + "updated_at": "2026-07-10T10:10:40.140688", + "url": "/v1/games/starry-moon-island-cannonade-mp04" +} diff --git a/site/public/v1/games/starry-moon-island-cannonade-mp05/index.json b/site/public/v1/games/starry-moon-island-cannonade-mp05/index.json new file mode 100644 index 000000000000..64d02c7c020a --- /dev/null +++ b/site/public/v1/games/starry-moon-island-cannonade-mp05/index.json @@ -0,0 +1,31 @@ +{ + "id": 137415, + "slug": "starry-moon-island-cannonade-mp05", + "name": "Starry Moon Island Cannonade MP05", + "release_date": "2021-10-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202172" + ], + "created_at": "2026-07-10T10:10:40.140688", + "updated_at": "2026-07-10T10:10:40.140688", + "url": "/v1/games/starry-moon-island-cannonade-mp05" +} diff --git a/site/public/v1/games/starry-moon-island-cannonade-mp06/index.json b/site/public/v1/games/starry-moon-island-cannonade-mp06/index.json new file mode 100644 index 000000000000..87f1bffa0fd0 --- /dev/null +++ b/site/public/v1/games/starry-moon-island-cannonade-mp06/index.json @@ -0,0 +1,31 @@ +{ + "id": 137416, + "slug": "starry-moon-island-cannonade-mp06", + "name": "Starry Moon Island Cannonade MP06", + "release_date": "2021-10-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202177" + ], + "created_at": "2026-07-10T10:10:40.140688", + "updated_at": "2026-07-10T10:10:40.140688", + "url": "/v1/games/starry-moon-island-cannonade-mp06" +} diff --git a/site/public/v1/games/starry-moon-island-cannonade-mp07/index.json b/site/public/v1/games/starry-moon-island-cannonade-mp07/index.json new file mode 100644 index 000000000000..d008d0619cd8 --- /dev/null +++ b/site/public/v1/games/starry-moon-island-cannonade-mp07/index.json @@ -0,0 +1,31 @@ +{ + "id": 137417, + "slug": "starry-moon-island-cannonade-mp07", + "name": "Starry Moon Island Cannonade MP07", + "release_date": "2021-10-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202178" + ], + "created_at": "2026-07-10T10:10:40.141698", + "updated_at": "2026-07-10T10:10:40.141698", + "url": "/v1/games/starry-moon-island-cannonade-mp07" +} diff --git a/site/public/v1/games/starry-moon-island-cannonade-mp08/index.json b/site/public/v1/games/starry-moon-island-cannonade-mp08/index.json new file mode 100644 index 000000000000..4bddfcaddc5e --- /dev/null +++ b/site/public/v1/games/starry-moon-island-cannonade-mp08/index.json @@ -0,0 +1,31 @@ +{ + "id": 137418, + "slug": "starry-moon-island-cannonade-mp08", + "name": "Starry Moon Island Cannonade MP08", + "release_date": "2021-10-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202181" + ], + "created_at": "2026-07-10T10:10:40.141698", + "updated_at": "2026-07-10T10:10:40.141698", + "url": "/v1/games/starry-moon-island-cannonade-mp08" +} diff --git a/site/public/v1/games/starry-moon-island-cannonade-mp09/index.json b/site/public/v1/games/starry-moon-island-cannonade-mp09/index.json new file mode 100644 index 000000000000..09c84ca8fb94 --- /dev/null +++ b/site/public/v1/games/starry-moon-island-cannonade-mp09/index.json @@ -0,0 +1,31 @@ +{ + "id": 137419, + "slug": "starry-moon-island-cannonade-mp09", + "name": "Starry Moon Island Cannonade MP09", + "release_date": "2021-10-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202184" + ], + "created_at": "2026-07-10T10:10:40.141698", + "updated_at": "2026-07-10T10:10:40.141698", + "url": "/v1/games/starry-moon-island-cannonade-mp09" +} diff --git a/site/public/v1/games/starry-moon-island-cannonade-mp10/index.json b/site/public/v1/games/starry-moon-island-cannonade-mp10/index.json new file mode 100644 index 000000000000..792298b053d2 --- /dev/null +++ b/site/public/v1/games/starry-moon-island-cannonade-mp10/index.json @@ -0,0 +1,31 @@ +{ + "id": 137420, + "slug": "starry-moon-island-cannonade-mp10", + "name": "Starry Moon Island Cannonade MP10", + "release_date": "2021-10-30", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202185" + ], + "created_at": "2026-07-10T10:10:40.141698", + "updated_at": "2026-07-10T10:10:40.141698", + "url": "/v1/games/starry-moon-island-cannonade-mp10" +} diff --git a/site/public/v1/games/starry-moon-island-dna-war-mp01/index.json b/site/public/v1/games/starry-moon-island-dna-war-mp01/index.json new file mode 100644 index 000000000000..afe302a2b806 --- /dev/null +++ b/site/public/v1/games/starry-moon-island-dna-war-mp01/index.json @@ -0,0 +1,31 @@ +{ + "id": 137421, + "slug": "starry-moon-island-dna-war-mp01", + "name": "Starry Moon Island DNA War MP01", + "release_date": "2021-10-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202187" + ], + "created_at": "2026-07-10T10:10:40.141698", + "updated_at": "2026-07-10T10:10:40.141698", + "url": "/v1/games/starry-moon-island-dna-war-mp01" +} diff --git a/site/public/v1/games/starry-moon-island-dna-war-mp02/index.json b/site/public/v1/games/starry-moon-island-dna-war-mp02/index.json new file mode 100644 index 000000000000..cdc10c2aea51 --- /dev/null +++ b/site/public/v1/games/starry-moon-island-dna-war-mp02/index.json @@ -0,0 +1,31 @@ +{ + "id": 137422, + "slug": "starry-moon-island-dna-war-mp02", + "name": "Starry Moon Island DNA War MP02", + "release_date": "2021-10-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202188" + ], + "created_at": "2026-07-10T10:10:40.142667", + "updated_at": "2026-07-10T10:10:40.142667", + "url": "/v1/games/starry-moon-island-dna-war-mp02" +} diff --git a/site/public/v1/games/starry-moon-island-dna-war-mp03/index.json b/site/public/v1/games/starry-moon-island-dna-war-mp03/index.json new file mode 100644 index 000000000000..fb3b6961c6ab --- /dev/null +++ b/site/public/v1/games/starry-moon-island-dna-war-mp03/index.json @@ -0,0 +1,31 @@ +{ + "id": 137423, + "slug": "starry-moon-island-dna-war-mp03", + "name": "Starry Moon Island DNA War MP03", + "release_date": "2021-10-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202189" + ], + "created_at": "2026-07-10T10:10:40.142667", + "updated_at": "2026-07-10T10:10:40.142667", + "url": "/v1/games/starry-moon-island-dna-war-mp03" +} diff --git a/site/public/v1/games/starry-moon-island-dna-war-mp04/index.json b/site/public/v1/games/starry-moon-island-dna-war-mp04/index.json new file mode 100644 index 000000000000..4ef30eb69050 --- /dev/null +++ b/site/public/v1/games/starry-moon-island-dna-war-mp04/index.json @@ -0,0 +1,31 @@ +{ + "id": 137424, + "slug": "starry-moon-island-dna-war-mp04", + "name": "Starry Moon Island DNA War MP04", + "release_date": "2021-10-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202190" + ], + "created_at": "2026-07-10T10:10:40.142667", + "updated_at": "2026-07-10T10:10:40.142667", + "url": "/v1/games/starry-moon-island-dna-war-mp04" +} diff --git a/site/public/v1/games/starry-moon-island-dna-war-mp05/index.json b/site/public/v1/games/starry-moon-island-dna-war-mp05/index.json new file mode 100644 index 000000000000..eb6593eeafe7 --- /dev/null +++ b/site/public/v1/games/starry-moon-island-dna-war-mp05/index.json @@ -0,0 +1,31 @@ +{ + "id": 137425, + "slug": "starry-moon-island-dna-war-mp05", + "name": "Starry Moon Island DNA War MP05", + "release_date": "2021-10-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202192" + ], + "created_at": "2026-07-10T10:10:40.142667", + "updated_at": "2026-07-10T10:10:40.142667", + "url": "/v1/games/starry-moon-island-dna-war-mp05" +} diff --git a/site/public/v1/games/starry-moon-island-dna-war-mp06/index.json b/site/public/v1/games/starry-moon-island-dna-war-mp06/index.json new file mode 100644 index 000000000000..d7a9148575f7 --- /dev/null +++ b/site/public/v1/games/starry-moon-island-dna-war-mp06/index.json @@ -0,0 +1,31 @@ +{ + "id": 137426, + "slug": "starry-moon-island-dna-war-mp06", + "name": "Starry Moon Island DNA War MP06", + "release_date": "2021-10-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202194" + ], + "created_at": "2026-07-10T10:10:40.142667", + "updated_at": "2026-07-10T10:10:40.142667", + "url": "/v1/games/starry-moon-island-dna-war-mp06" +} diff --git a/site/public/v1/games/starry-moon-island-dna-war-mp07/index.json b/site/public/v1/games/starry-moon-island-dna-war-mp07/index.json new file mode 100644 index 000000000000..d544f360abd7 --- /dev/null +++ b/site/public/v1/games/starry-moon-island-dna-war-mp07/index.json @@ -0,0 +1,31 @@ +{ + "id": 137427, + "slug": "starry-moon-island-dna-war-mp07", + "name": "Starry Moon Island DNA War MP07", + "release_date": "2021-10-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202195" + ], + "created_at": "2026-07-10T10:10:40.143679", + "updated_at": "2026-07-10T10:10:40.143679", + "url": "/v1/games/starry-moon-island-dna-war-mp07" +} diff --git a/site/public/v1/games/starry-moon-island-dna-war-mp08/index.json b/site/public/v1/games/starry-moon-island-dna-war-mp08/index.json new file mode 100644 index 000000000000..92fc18de38a3 --- /dev/null +++ b/site/public/v1/games/starry-moon-island-dna-war-mp08/index.json @@ -0,0 +1,31 @@ +{ + "id": 137428, + "slug": "starry-moon-island-dna-war-mp08", + "name": "Starry Moon Island DNA War MP08", + "release_date": "2021-10-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202196" + ], + "created_at": "2026-07-10T10:10:40.143679", + "updated_at": "2026-07-10T10:10:40.143679", + "url": "/v1/games/starry-moon-island-dna-war-mp08" +} diff --git a/site/public/v1/games/starry-moon-island-dna-war-mp09/index.json b/site/public/v1/games/starry-moon-island-dna-war-mp09/index.json new file mode 100644 index 000000000000..8480d8b249a3 --- /dev/null +++ b/site/public/v1/games/starry-moon-island-dna-war-mp09/index.json @@ -0,0 +1,31 @@ +{ + "id": 137429, + "slug": "starry-moon-island-dna-war-mp09", + "name": "Starry Moon Island DNA War MP09", + "release_date": "2021-10-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202197" + ], + "created_at": "2026-07-10T10:10:40.143679", + "updated_at": "2026-07-10T10:10:40.143679", + "url": "/v1/games/starry-moon-island-dna-war-mp09" +} diff --git a/site/public/v1/games/starry-moon-island-dna-war-mp10/index.json b/site/public/v1/games/starry-moon-island-dna-war-mp10/index.json new file mode 100644 index 000000000000..ca6589cb37d1 --- /dev/null +++ b/site/public/v1/games/starry-moon-island-dna-war-mp10/index.json @@ -0,0 +1,31 @@ +{ + "id": 137430, + "slug": "starry-moon-island-dna-war-mp10", + "name": "Starry Moon Island DNA War MP10", + "release_date": "2021-10-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202199" + ], + "created_at": "2026-07-10T10:10:40.143679", + "updated_at": "2026-07-10T10:10:40.143679", + "url": "/v1/games/starry-moon-island-dna-war-mp10" +} diff --git a/site/public/v1/games/starry-moon-island-mobile-stronghold-mp01/index.json b/site/public/v1/games/starry-moon-island-mobile-stronghold-mp01/index.json new file mode 100644 index 000000000000..b5423e091d03 --- /dev/null +++ b/site/public/v1/games/starry-moon-island-mobile-stronghold-mp01/index.json @@ -0,0 +1,31 @@ +{ + "id": 137431, + "slug": "starry-moon-island-mobile-stronghold-mp01", + "name": "Starry Moon Island Mobile Stronghold MP01", + "release_date": "2021-10-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202201" + ], + "created_at": "2026-07-10T10:10:40.144668", + "updated_at": "2026-07-10T10:10:40.144668", + "url": "/v1/games/starry-moon-island-mobile-stronghold-mp01" +} diff --git a/site/public/v1/games/starry-moon-island-mobile-stronghold-mp02/index.json b/site/public/v1/games/starry-moon-island-mobile-stronghold-mp02/index.json new file mode 100644 index 000000000000..396d931d7ef8 --- /dev/null +++ b/site/public/v1/games/starry-moon-island-mobile-stronghold-mp02/index.json @@ -0,0 +1,31 @@ +{ + "id": 137432, + "slug": "starry-moon-island-mobile-stronghold-mp02", + "name": "Starry Moon Island Mobile Stronghold MP02", + "release_date": "2021-10-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202203" + ], + "created_at": "2026-07-10T10:10:40.144668", + "updated_at": "2026-07-10T10:10:40.144668", + "url": "/v1/games/starry-moon-island-mobile-stronghold-mp02" +} diff --git a/site/public/v1/games/starry-moon-island-mobile-stronghold-mp03/index.json b/site/public/v1/games/starry-moon-island-mobile-stronghold-mp03/index.json new file mode 100644 index 000000000000..0886915eff27 --- /dev/null +++ b/site/public/v1/games/starry-moon-island-mobile-stronghold-mp03/index.json @@ -0,0 +1,31 @@ +{ + "id": 137433, + "slug": "starry-moon-island-mobile-stronghold-mp03", + "name": "Starry Moon Island Mobile Stronghold MP03", + "release_date": "2021-10-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202206" + ], + "created_at": "2026-07-10T10:10:40.144668", + "updated_at": "2026-07-10T10:10:40.144668", + "url": "/v1/games/starry-moon-island-mobile-stronghold-mp03" +} diff --git a/site/public/v1/games/starry-moon-island-mobile-stronghold-mp04/index.json b/site/public/v1/games/starry-moon-island-mobile-stronghold-mp04/index.json new file mode 100644 index 000000000000..cb2bfbbd8920 --- /dev/null +++ b/site/public/v1/games/starry-moon-island-mobile-stronghold-mp04/index.json @@ -0,0 +1,31 @@ +{ + "id": 137434, + "slug": "starry-moon-island-mobile-stronghold-mp04", + "name": "Starry Moon Island Mobile Stronghold MP04", + "release_date": "2021-10-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202208" + ], + "created_at": "2026-07-10T10:10:40.144668", + "updated_at": "2026-07-10T10:10:40.144668", + "url": "/v1/games/starry-moon-island-mobile-stronghold-mp04" +} diff --git a/site/public/v1/games/starry-moon-island-mobile-stronghold-mp05/index.json b/site/public/v1/games/starry-moon-island-mobile-stronghold-mp05/index.json new file mode 100644 index 000000000000..627a275ab289 --- /dev/null +++ b/site/public/v1/games/starry-moon-island-mobile-stronghold-mp05/index.json @@ -0,0 +1,31 @@ +{ + "id": 137435, + "slug": "starry-moon-island-mobile-stronghold-mp05", + "name": "Starry Moon Island Mobile Stronghold MP05", + "release_date": "2021-10-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202212" + ], + "created_at": "2026-07-10T10:10:40.144668", + "updated_at": "2026-07-10T10:10:40.144668", + "url": "/v1/games/starry-moon-island-mobile-stronghold-mp05" +} diff --git a/site/public/v1/games/starry-moon-island-mobile-stronghold-mp06/index.json b/site/public/v1/games/starry-moon-island-mobile-stronghold-mp06/index.json new file mode 100644 index 000000000000..3c780e7d3691 --- /dev/null +++ b/site/public/v1/games/starry-moon-island-mobile-stronghold-mp06/index.json @@ -0,0 +1,31 @@ +{ + "id": 137436, + "slug": "starry-moon-island-mobile-stronghold-mp06", + "name": "Starry Moon Island Mobile Stronghold MP06", + "release_date": "2021-10-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202213" + ], + "created_at": "2026-07-10T10:10:40.145661", + "updated_at": "2026-07-10T10:10:40.145661", + "url": "/v1/games/starry-moon-island-mobile-stronghold-mp06" +} diff --git a/site/public/v1/games/starry-moon-island-mobile-stronghold-mp07/index.json b/site/public/v1/games/starry-moon-island-mobile-stronghold-mp07/index.json new file mode 100644 index 000000000000..5a0075d65756 --- /dev/null +++ b/site/public/v1/games/starry-moon-island-mobile-stronghold-mp07/index.json @@ -0,0 +1,31 @@ +{ + "id": 137437, + "slug": "starry-moon-island-mobile-stronghold-mp07", + "name": "Starry Moon Island Mobile Stronghold MP07", + "release_date": "2021-10-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202214" + ], + "created_at": "2026-07-10T10:10:40.145661", + "updated_at": "2026-07-10T10:10:40.145661", + "url": "/v1/games/starry-moon-island-mobile-stronghold-mp07" +} diff --git a/site/public/v1/games/starry-moon-island-mobile-stronghold-mp08/index.json b/site/public/v1/games/starry-moon-island-mobile-stronghold-mp08/index.json new file mode 100644 index 000000000000..c024f6e48c19 --- /dev/null +++ b/site/public/v1/games/starry-moon-island-mobile-stronghold-mp08/index.json @@ -0,0 +1,31 @@ +{ + "id": 137438, + "slug": "starry-moon-island-mobile-stronghold-mp08", + "name": "Starry Moon Island Mobile Stronghold MP08", + "release_date": "2021-10-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202215" + ], + "created_at": "2026-07-10T10:10:40.145661", + "updated_at": "2026-07-10T10:10:40.145661", + "url": "/v1/games/starry-moon-island-mobile-stronghold-mp08" +} diff --git a/site/public/v1/games/starry-moon-island-mobile-stronghold-mp09/index.json b/site/public/v1/games/starry-moon-island-mobile-stronghold-mp09/index.json new file mode 100644 index 000000000000..fa8ddaab2814 --- /dev/null +++ b/site/public/v1/games/starry-moon-island-mobile-stronghold-mp09/index.json @@ -0,0 +1,31 @@ +{ + "id": 137439, + "slug": "starry-moon-island-mobile-stronghold-mp09", + "name": "Starry Moon Island Mobile Stronghold MP09", + "release_date": "2021-10-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202216" + ], + "created_at": "2026-07-10T10:10:40.145661", + "updated_at": "2026-07-10T10:10:40.145661", + "url": "/v1/games/starry-moon-island-mobile-stronghold-mp09" +} diff --git a/site/public/v1/games/starry-moon-island-mobile-stronghold-mp10/index.json b/site/public/v1/games/starry-moon-island-mobile-stronghold-mp10/index.json new file mode 100644 index 000000000000..2f03eacec21b --- /dev/null +++ b/site/public/v1/games/starry-moon-island-mobile-stronghold-mp10/index.json @@ -0,0 +1,31 @@ +{ + "id": 137440, + "slug": "starry-moon-island-mobile-stronghold-mp10", + "name": "Starry Moon Island Mobile Stronghold MP10", + "release_date": "2021-10-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202218" + ], + "created_at": "2026-07-10T10:10:40.146644", + "updated_at": "2026-07-10T10:10:40.146644", + "url": "/v1/games/starry-moon-island-mobile-stronghold-mp10" +} diff --git a/site/public/v1/games/starry-moon-island-out-of-control-mp01/index.json b/site/public/v1/games/starry-moon-island-out-of-control-mp01/index.json new file mode 100644 index 000000000000..f3a3b8a4768c --- /dev/null +++ b/site/public/v1/games/starry-moon-island-out-of-control-mp01/index.json @@ -0,0 +1,31 @@ +{ + "id": 137441, + "slug": "starry-moon-island-out-of-control-mp01", + "name": "Starry Moon Island Out Of Control MP01", + "release_date": "2021-10-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202219" + ], + "created_at": "2026-07-10T10:10:40.146644", + "updated_at": "2026-07-10T10:10:40.146644", + "url": "/v1/games/starry-moon-island-out-of-control-mp01" +} diff --git a/site/public/v1/games/starry-moon-island-out-of-control-mp02/index.json b/site/public/v1/games/starry-moon-island-out-of-control-mp02/index.json new file mode 100644 index 000000000000..4bffe5207898 --- /dev/null +++ b/site/public/v1/games/starry-moon-island-out-of-control-mp02/index.json @@ -0,0 +1,31 @@ +{ + "id": 137442, + "slug": "starry-moon-island-out-of-control-mp02", + "name": "Starry Moon Island Out Of Control MP02", + "release_date": "2021-10-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202221" + ], + "created_at": "2026-07-10T10:10:40.146644", + "updated_at": "2026-07-10T10:10:40.146644", + "url": "/v1/games/starry-moon-island-out-of-control-mp02" +} diff --git a/site/public/v1/games/starry-moon-island-out-of-control-mp03/index.json b/site/public/v1/games/starry-moon-island-out-of-control-mp03/index.json new file mode 100644 index 000000000000..8b76d10f6d66 --- /dev/null +++ b/site/public/v1/games/starry-moon-island-out-of-control-mp03/index.json @@ -0,0 +1,31 @@ +{ + "id": 137443, + "slug": "starry-moon-island-out-of-control-mp03", + "name": "Starry Moon Island Out Of Control MP03", + "release_date": "2021-10-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202222" + ], + "created_at": "2026-07-10T10:10:40.146644", + "updated_at": "2026-07-10T10:10:40.146644", + "url": "/v1/games/starry-moon-island-out-of-control-mp03" +} diff --git a/site/public/v1/games/starry-moon-island-out-of-control-mp04/index.json b/site/public/v1/games/starry-moon-island-out-of-control-mp04/index.json new file mode 100644 index 000000000000..21553e42f37c --- /dev/null +++ b/site/public/v1/games/starry-moon-island-out-of-control-mp04/index.json @@ -0,0 +1,31 @@ +{ + "id": 137444, + "slug": "starry-moon-island-out-of-control-mp04", + "name": "Starry Moon Island Out Of Control MP04", + "release_date": "2021-10-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202223" + ], + "created_at": "2026-07-10T10:10:40.146644", + "updated_at": "2026-07-10T10:10:40.146644", + "url": "/v1/games/starry-moon-island-out-of-control-mp04" +} diff --git a/site/public/v1/games/starry-moon-island-out-of-control-mp05/index.json b/site/public/v1/games/starry-moon-island-out-of-control-mp05/index.json new file mode 100644 index 000000000000..9b2253f177bd --- /dev/null +++ b/site/public/v1/games/starry-moon-island-out-of-control-mp05/index.json @@ -0,0 +1,31 @@ +{ + "id": 137445, + "slug": "starry-moon-island-out-of-control-mp05", + "name": "Starry Moon Island Out Of Control MP05", + "release_date": "2021-10-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202224" + ], + "created_at": "2026-07-10T10:10:40.147653", + "updated_at": "2026-07-10T10:10:40.147653", + "url": "/v1/games/starry-moon-island-out-of-control-mp05" +} diff --git a/site/public/v1/games/starry-moon-island-out-of-control-mp06/index.json b/site/public/v1/games/starry-moon-island-out-of-control-mp06/index.json new file mode 100644 index 000000000000..aa94de1b46c2 --- /dev/null +++ b/site/public/v1/games/starry-moon-island-out-of-control-mp06/index.json @@ -0,0 +1,31 @@ +{ + "id": 137446, + "slug": "starry-moon-island-out-of-control-mp06", + "name": "Starry Moon Island Out Of Control MP06", + "release_date": "2021-10-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202227" + ], + "created_at": "2026-07-10T10:10:40.147653", + "updated_at": "2026-07-10T10:10:40.147653", + "url": "/v1/games/starry-moon-island-out-of-control-mp06" +} diff --git a/site/public/v1/games/starry-moon-island-out-of-control-mp07/index.json b/site/public/v1/games/starry-moon-island-out-of-control-mp07/index.json new file mode 100644 index 000000000000..19f8cbeb0a96 --- /dev/null +++ b/site/public/v1/games/starry-moon-island-out-of-control-mp07/index.json @@ -0,0 +1,31 @@ +{ + "id": 137447, + "slug": "starry-moon-island-out-of-control-mp07", + "name": "Starry Moon Island Out Of Control MP07", + "release_date": "2021-10-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202228" + ], + "created_at": "2026-07-10T10:10:40.147653", + "updated_at": "2026-07-10T10:10:40.147653", + "url": "/v1/games/starry-moon-island-out-of-control-mp07" +} diff --git a/site/public/v1/games/starry-moon-island-out-of-control-mp08/index.json b/site/public/v1/games/starry-moon-island-out-of-control-mp08/index.json new file mode 100644 index 000000000000..0533fdc23516 --- /dev/null +++ b/site/public/v1/games/starry-moon-island-out-of-control-mp08/index.json @@ -0,0 +1,31 @@ +{ + "id": 137448, + "slug": "starry-moon-island-out-of-control-mp08", + "name": "Starry Moon Island Out Of Control MP08", + "release_date": "2021-10-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202231" + ], + "created_at": "2026-07-10T10:10:40.147653", + "updated_at": "2026-07-10T10:10:40.147653", + "url": "/v1/games/starry-moon-island-out-of-control-mp08" +} diff --git a/site/public/v1/games/starry-moon-island-out-of-control-mp09/index.json b/site/public/v1/games/starry-moon-island-out-of-control-mp09/index.json new file mode 100644 index 000000000000..36e721bc87e4 --- /dev/null +++ b/site/public/v1/games/starry-moon-island-out-of-control-mp09/index.json @@ -0,0 +1,31 @@ +{ + "id": 137449, + "slug": "starry-moon-island-out-of-control-mp09", + "name": "Starry Moon Island Out Of Control MP09", + "release_date": "2021-10-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202233" + ], + "created_at": "2026-07-10T10:10:40.147653", + "updated_at": "2026-07-10T10:10:40.147653", + "url": "/v1/games/starry-moon-island-out-of-control-mp09" +} diff --git a/site/public/v1/games/starry-moon-island-out-of-control-mp10/index.json b/site/public/v1/games/starry-moon-island-out-of-control-mp10/index.json new file mode 100644 index 000000000000..6134d16b42c9 --- /dev/null +++ b/site/public/v1/games/starry-moon-island-out-of-control-mp10/index.json @@ -0,0 +1,31 @@ +{ + "id": 137450, + "slug": "starry-moon-island-out-of-control-mp10", + "name": "Starry Moon Island Out Of Control MP10", + "release_date": "2021-10-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202234" + ], + "created_at": "2026-07-10T10:10:40.148651", + "updated_at": "2026-07-10T10:10:40.148651", + "url": "/v1/games/starry-moon-island-out-of-control-mp10" +} diff --git a/site/public/v1/games/starry-moon-island-perimeter-mp01/index.json b/site/public/v1/games/starry-moon-island-perimeter-mp01/index.json new file mode 100644 index 000000000000..6b682570deae --- /dev/null +++ b/site/public/v1/games/starry-moon-island-perimeter-mp01/index.json @@ -0,0 +1,31 @@ +{ + "id": 137451, + "slug": "starry-moon-island-perimeter-mp01", + "name": "Starry Moon Island Perimeter MP01", + "release_date": "2021-10-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202235" + ], + "created_at": "2026-07-10T10:10:40.148651", + "updated_at": "2026-07-10T10:10:40.148651", + "url": "/v1/games/starry-moon-island-perimeter-mp01" +} diff --git a/site/public/v1/games/starry-moon-island-perimeter-mp02/index.json b/site/public/v1/games/starry-moon-island-perimeter-mp02/index.json new file mode 100644 index 000000000000..2999952f961b --- /dev/null +++ b/site/public/v1/games/starry-moon-island-perimeter-mp02/index.json @@ -0,0 +1,31 @@ +{ + "id": 137452, + "slug": "starry-moon-island-perimeter-mp02", + "name": "Starry Moon Island Perimeter MP02", + "release_date": "2021-10-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202236" + ], + "created_at": "2026-07-10T10:10:40.148651", + "updated_at": "2026-07-10T10:10:40.148651", + "url": "/v1/games/starry-moon-island-perimeter-mp02" +} diff --git a/site/public/v1/games/starry-moon-island-perimeter-mp03/index.json b/site/public/v1/games/starry-moon-island-perimeter-mp03/index.json new file mode 100644 index 000000000000..f743144b7abd --- /dev/null +++ b/site/public/v1/games/starry-moon-island-perimeter-mp03/index.json @@ -0,0 +1,31 @@ +{ + "id": 137453, + "slug": "starry-moon-island-perimeter-mp03", + "name": "Starry Moon Island Perimeter MP03", + "release_date": "2021-10-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202238" + ], + "created_at": "2026-07-10T10:10:40.148651", + "updated_at": "2026-07-10T10:10:40.149649", + "url": "/v1/games/starry-moon-island-perimeter-mp03" +} diff --git a/site/public/v1/games/starry-moon-island-perimeter-mp04/index.json b/site/public/v1/games/starry-moon-island-perimeter-mp04/index.json new file mode 100644 index 000000000000..065388b3d5e0 --- /dev/null +++ b/site/public/v1/games/starry-moon-island-perimeter-mp04/index.json @@ -0,0 +1,31 @@ +{ + "id": 137454, + "slug": "starry-moon-island-perimeter-mp04", + "name": "Starry Moon Island Perimeter MP04", + "release_date": "2021-10-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202239" + ], + "created_at": "2026-07-10T10:10:40.149649", + "updated_at": "2026-07-10T10:10:40.149649", + "url": "/v1/games/starry-moon-island-perimeter-mp04" +} diff --git a/site/public/v1/games/starry-moon-island-perimeter-mp05/index.json b/site/public/v1/games/starry-moon-island-perimeter-mp05/index.json new file mode 100644 index 000000000000..31e31b8fec31 --- /dev/null +++ b/site/public/v1/games/starry-moon-island-perimeter-mp05/index.json @@ -0,0 +1,31 @@ +{ + "id": 137455, + "slug": "starry-moon-island-perimeter-mp05", + "name": "Starry Moon Island Perimeter MP05", + "release_date": "2021-10-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202241" + ], + "created_at": "2026-07-10T10:10:40.149649", + "updated_at": "2026-07-10T10:10:40.149649", + "url": "/v1/games/starry-moon-island-perimeter-mp05" +} diff --git a/site/public/v1/games/starry-moon-island-perimeter-mp06/index.json b/site/public/v1/games/starry-moon-island-perimeter-mp06/index.json new file mode 100644 index 000000000000..bd010b7d2218 --- /dev/null +++ b/site/public/v1/games/starry-moon-island-perimeter-mp06/index.json @@ -0,0 +1,31 @@ +{ + "id": 137456, + "slug": "starry-moon-island-perimeter-mp06", + "name": "Starry Moon Island Perimeter MP06", + "release_date": "2021-10-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202242" + ], + "created_at": "2026-07-10T10:10:40.149649", + "updated_at": "2026-07-10T10:10:40.149649", + "url": "/v1/games/starry-moon-island-perimeter-mp06" +} diff --git a/site/public/v1/games/starry-moon-island-perimeter-mp07/index.json b/site/public/v1/games/starry-moon-island-perimeter-mp07/index.json new file mode 100644 index 000000000000..36fb11a45426 --- /dev/null +++ b/site/public/v1/games/starry-moon-island-perimeter-mp07/index.json @@ -0,0 +1,31 @@ +{ + "id": 137457, + "slug": "starry-moon-island-perimeter-mp07", + "name": "Starry Moon Island Perimeter MP07", + "release_date": "2021-10-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202244" + ], + "created_at": "2026-07-10T10:10:40.149649", + "updated_at": "2026-07-10T10:10:40.149649", + "url": "/v1/games/starry-moon-island-perimeter-mp07" +} diff --git a/site/public/v1/games/starry-moon-island-perimeter-mp08/index.json b/site/public/v1/games/starry-moon-island-perimeter-mp08/index.json new file mode 100644 index 000000000000..3c441e196b8f --- /dev/null +++ b/site/public/v1/games/starry-moon-island-perimeter-mp08/index.json @@ -0,0 +1,31 @@ +{ + "id": 137458, + "slug": "starry-moon-island-perimeter-mp08", + "name": "Starry Moon Island Perimeter MP08", + "release_date": "2021-10-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202246" + ], + "created_at": "2026-07-10T10:10:40.150637", + "updated_at": "2026-07-10T10:10:40.150637", + "url": "/v1/games/starry-moon-island-perimeter-mp08" +} diff --git a/site/public/v1/games/starry-moon-island-perimeter-mp09/index.json b/site/public/v1/games/starry-moon-island-perimeter-mp09/index.json new file mode 100644 index 000000000000..3bc261d34206 --- /dev/null +++ b/site/public/v1/games/starry-moon-island-perimeter-mp09/index.json @@ -0,0 +1,31 @@ +{ + "id": 137459, + "slug": "starry-moon-island-perimeter-mp09", + "name": "Starry Moon Island Perimeter MP09", + "release_date": "2021-10-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202247" + ], + "created_at": "2026-07-10T10:10:40.150637", + "updated_at": "2026-07-10T10:10:40.150637", + "url": "/v1/games/starry-moon-island-perimeter-mp09" +} diff --git a/site/public/v1/games/starry-moon-island-perimeter-mp10/index.json b/site/public/v1/games/starry-moon-island-perimeter-mp10/index.json new file mode 100644 index 000000000000..d4867eb574db --- /dev/null +++ b/site/public/v1/games/starry-moon-island-perimeter-mp10/index.json @@ -0,0 +1,31 @@ +{ + "id": 137460, + "slug": "starry-moon-island-perimeter-mp10", + "name": "Starry Moon Island Perimeter MP10", + "release_date": "2021-10-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202248" + ], + "created_at": "2026-07-10T10:10:40.150637", + "updated_at": "2026-07-10T10:10:40.150637", + "url": "/v1/games/starry-moon-island-perimeter-mp10" +} diff --git a/site/public/v1/games/starry-moon-island-red-snake-mp01/index.json b/site/public/v1/games/starry-moon-island-red-snake-mp01/index.json new file mode 100644 index 000000000000..d1ee4d02acf6 --- /dev/null +++ b/site/public/v1/games/starry-moon-island-red-snake-mp01/index.json @@ -0,0 +1,31 @@ +{ + "id": 137461, + "slug": "starry-moon-island-red-snake-mp01", + "name": "Starry Moon Island Red Snake MP01", + "release_date": "2021-10-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202249" + ], + "created_at": "2026-07-10T10:10:40.150637", + "updated_at": "2026-07-10T10:10:40.150637", + "url": "/v1/games/starry-moon-island-red-snake-mp01" +} diff --git a/site/public/v1/games/starry-moon-island-red-snake-mp02/index.json b/site/public/v1/games/starry-moon-island-red-snake-mp02/index.json new file mode 100644 index 000000000000..a990eaf4dcd9 --- /dev/null +++ b/site/public/v1/games/starry-moon-island-red-snake-mp02/index.json @@ -0,0 +1,31 @@ +{ + "id": 137462, + "slug": "starry-moon-island-red-snake-mp02", + "name": "Starry Moon Island Red Snake MP02", + "release_date": "2021-10-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202250" + ], + "created_at": "2026-07-10T10:10:40.150637", + "updated_at": "2026-07-10T10:10:40.150637", + "url": "/v1/games/starry-moon-island-red-snake-mp02" +} diff --git a/site/public/v1/games/starry-moon-island-red-snake-mp03/index.json b/site/public/v1/games/starry-moon-island-red-snake-mp03/index.json new file mode 100644 index 000000000000..570e10a521eb --- /dev/null +++ b/site/public/v1/games/starry-moon-island-red-snake-mp03/index.json @@ -0,0 +1,31 @@ +{ + "id": 137463, + "slug": "starry-moon-island-red-snake-mp03", + "name": "Starry Moon Island Red Snake MP03", + "release_date": "2021-10-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202253" + ], + "created_at": "2026-07-10T10:10:40.151659", + "updated_at": "2026-07-10T10:10:40.151659", + "url": "/v1/games/starry-moon-island-red-snake-mp03" +} diff --git a/site/public/v1/games/starry-moon-island-red-snake-mp04/index.json b/site/public/v1/games/starry-moon-island-red-snake-mp04/index.json new file mode 100644 index 000000000000..7311873b91da --- /dev/null +++ b/site/public/v1/games/starry-moon-island-red-snake-mp04/index.json @@ -0,0 +1,31 @@ +{ + "id": 137464, + "slug": "starry-moon-island-red-snake-mp04", + "name": "Starry Moon Island Red Snake MP04", + "release_date": "2021-10-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202256" + ], + "created_at": "2026-07-10T10:10:40.151659", + "updated_at": "2026-07-10T10:10:40.151659", + "url": "/v1/games/starry-moon-island-red-snake-mp04" +} diff --git a/site/public/v1/games/starry-moon-island-red-snake-mp05/index.json b/site/public/v1/games/starry-moon-island-red-snake-mp05/index.json new file mode 100644 index 000000000000..47505741f5e1 --- /dev/null +++ b/site/public/v1/games/starry-moon-island-red-snake-mp05/index.json @@ -0,0 +1,31 @@ +{ + "id": 137465, + "slug": "starry-moon-island-red-snake-mp05", + "name": "Starry Moon Island Red Snake MP05", + "release_date": "2021-10-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202260" + ], + "created_at": "2026-07-10T10:10:40.151659", + "updated_at": "2026-07-10T10:10:40.151659", + "url": "/v1/games/starry-moon-island-red-snake-mp05" +} diff --git a/site/public/v1/games/starry-moon-island-red-snake-mp06/index.json b/site/public/v1/games/starry-moon-island-red-snake-mp06/index.json new file mode 100644 index 000000000000..d97194a51373 --- /dev/null +++ b/site/public/v1/games/starry-moon-island-red-snake-mp06/index.json @@ -0,0 +1,31 @@ +{ + "id": 137466, + "slug": "starry-moon-island-red-snake-mp06", + "name": "Starry Moon Island Red Snake MP06", + "release_date": "2021-10-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202262" + ], + "created_at": "2026-07-10T10:10:40.151659", + "updated_at": "2026-07-10T10:10:40.151659", + "url": "/v1/games/starry-moon-island-red-snake-mp06" +} diff --git a/site/public/v1/games/starry-moon-island-red-snake-mp07/index.json b/site/public/v1/games/starry-moon-island-red-snake-mp07/index.json new file mode 100644 index 000000000000..702309244ed2 --- /dev/null +++ b/site/public/v1/games/starry-moon-island-red-snake-mp07/index.json @@ -0,0 +1,31 @@ +{ + "id": 137467, + "slug": "starry-moon-island-red-snake-mp07", + "name": "Starry Moon Island Red Snake MP07", + "release_date": "2021-10-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202263" + ], + "created_at": "2026-07-10T10:10:40.151659", + "updated_at": "2026-07-10T10:10:40.151659", + "url": "/v1/games/starry-moon-island-red-snake-mp07" +} diff --git a/site/public/v1/games/starry-moon-island-red-snake-mp08/index.json b/site/public/v1/games/starry-moon-island-red-snake-mp08/index.json new file mode 100644 index 000000000000..bd320b0a3c5f --- /dev/null +++ b/site/public/v1/games/starry-moon-island-red-snake-mp08/index.json @@ -0,0 +1,31 @@ +{ + "id": 137468, + "slug": "starry-moon-island-red-snake-mp08", + "name": "Starry Moon Island Red Snake MP08", + "release_date": "2021-10-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202264" + ], + "created_at": "2026-07-10T10:10:40.152725", + "updated_at": "2026-07-10T10:10:40.152725", + "url": "/v1/games/starry-moon-island-red-snake-mp08" +} diff --git a/site/public/v1/games/starry-moon-island-red-snake-mp09/index.json b/site/public/v1/games/starry-moon-island-red-snake-mp09/index.json new file mode 100644 index 000000000000..50a9b08cfc37 --- /dev/null +++ b/site/public/v1/games/starry-moon-island-red-snake-mp09/index.json @@ -0,0 +1,31 @@ +{ + "id": 137469, + "slug": "starry-moon-island-red-snake-mp09", + "name": "Starry Moon Island Red Snake MP09", + "release_date": "2021-10-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202266" + ], + "created_at": "2026-07-10T10:10:40.152725", + "updated_at": "2026-07-10T10:10:40.152725", + "url": "/v1/games/starry-moon-island-red-snake-mp09" +} diff --git a/site/public/v1/games/starry-moon-island-red-snake-mp10/index.json b/site/public/v1/games/starry-moon-island-red-snake-mp10/index.json new file mode 100644 index 000000000000..252db9d049b4 --- /dev/null +++ b/site/public/v1/games/starry-moon-island-red-snake-mp10/index.json @@ -0,0 +1,31 @@ +{ + "id": 137470, + "slug": "starry-moon-island-red-snake-mp10", + "name": "Starry Moon Island Red Snake MP10", + "release_date": "2021-10-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202267" + ], + "created_at": "2026-07-10T10:10:40.152725", + "updated_at": "2026-07-10T10:10:40.152725", + "url": "/v1/games/starry-moon-island-red-snake-mp10" +} diff --git a/site/public/v1/games/starry-moon-island-star-ocean-mp01/index.json b/site/public/v1/games/starry-moon-island-star-ocean-mp01/index.json new file mode 100644 index 000000000000..04edb37b9576 --- /dev/null +++ b/site/public/v1/games/starry-moon-island-star-ocean-mp01/index.json @@ -0,0 +1,31 @@ +{ + "id": 137471, + "slug": "starry-moon-island-star-ocean-mp01", + "name": "Starry Moon Island Star Ocean MP01", + "release_date": "2021-10-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202268" + ], + "created_at": "2026-07-10T10:10:40.152725", + "updated_at": "2026-07-10T10:10:40.152725", + "url": "/v1/games/starry-moon-island-star-ocean-mp01" +} diff --git a/site/public/v1/games/starry-moon-island-star-ocean-mp02/index.json b/site/public/v1/games/starry-moon-island-star-ocean-mp02/index.json new file mode 100644 index 000000000000..0a10dd90d46d --- /dev/null +++ b/site/public/v1/games/starry-moon-island-star-ocean-mp02/index.json @@ -0,0 +1,31 @@ +{ + "id": 137472, + "slug": "starry-moon-island-star-ocean-mp02", + "name": "Starry Moon Island Star Ocean MP02", + "release_date": "2021-10-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202270" + ], + "created_at": "2026-07-10T10:10:40.153802", + "updated_at": "2026-07-10T10:10:40.153802", + "url": "/v1/games/starry-moon-island-star-ocean-mp02" +} diff --git a/site/public/v1/games/starry-moon-island-star-ocean-mp03/index.json b/site/public/v1/games/starry-moon-island-star-ocean-mp03/index.json new file mode 100644 index 000000000000..419f5c2b4adb --- /dev/null +++ b/site/public/v1/games/starry-moon-island-star-ocean-mp03/index.json @@ -0,0 +1,31 @@ +{ + "id": 137473, + "slug": "starry-moon-island-star-ocean-mp03", + "name": "Starry Moon Island Star Ocean MP03", + "release_date": "2021-10-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202272" + ], + "created_at": "2026-07-10T10:10:40.153802", + "updated_at": "2026-07-10T10:10:40.153802", + "url": "/v1/games/starry-moon-island-star-ocean-mp03" +} diff --git a/site/public/v1/games/starry-moon-island-star-ocean-mp04/index.json b/site/public/v1/games/starry-moon-island-star-ocean-mp04/index.json new file mode 100644 index 000000000000..f158e3c538f1 --- /dev/null +++ b/site/public/v1/games/starry-moon-island-star-ocean-mp04/index.json @@ -0,0 +1,31 @@ +{ + "id": 137474, + "slug": "starry-moon-island-star-ocean-mp04", + "name": "Starry Moon Island Star Ocean MP04", + "release_date": "2021-10-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202273" + ], + "created_at": "2026-07-10T10:10:40.153802", + "updated_at": "2026-07-10T10:10:40.153802", + "url": "/v1/games/starry-moon-island-star-ocean-mp04" +} diff --git a/site/public/v1/games/starry-moon-island-star-ocean-mp05/index.json b/site/public/v1/games/starry-moon-island-star-ocean-mp05/index.json new file mode 100644 index 000000000000..33e52b89ac57 --- /dev/null +++ b/site/public/v1/games/starry-moon-island-star-ocean-mp05/index.json @@ -0,0 +1,31 @@ +{ + "id": 137475, + "slug": "starry-moon-island-star-ocean-mp05", + "name": "Starry Moon Island Star Ocean MP05", + "release_date": "2021-10-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202274" + ], + "created_at": "2026-07-10T10:10:40.153802", + "updated_at": "2026-07-10T10:10:40.153802", + "url": "/v1/games/starry-moon-island-star-ocean-mp05" +} diff --git a/site/public/v1/games/starry-moon-island-star-ocean-mp06/index.json b/site/public/v1/games/starry-moon-island-star-ocean-mp06/index.json new file mode 100644 index 000000000000..c29e60561b5e --- /dev/null +++ b/site/public/v1/games/starry-moon-island-star-ocean-mp06/index.json @@ -0,0 +1,31 @@ +{ + "id": 137476, + "slug": "starry-moon-island-star-ocean-mp06", + "name": "Starry Moon Island Star Ocean MP06", + "release_date": "2021-10-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202275" + ], + "created_at": "2026-07-10T10:10:40.153802", + "updated_at": "2026-07-10T10:10:40.153802", + "url": "/v1/games/starry-moon-island-star-ocean-mp06" +} diff --git a/site/public/v1/games/starry-moon-island-star-ocean-mp07/index.json b/site/public/v1/games/starry-moon-island-star-ocean-mp07/index.json new file mode 100644 index 000000000000..31c8276bc704 --- /dev/null +++ b/site/public/v1/games/starry-moon-island-star-ocean-mp07/index.json @@ -0,0 +1,31 @@ +{ + "id": 137477, + "slug": "starry-moon-island-star-ocean-mp07", + "name": "Starry Moon Island Star Ocean MP07", + "release_date": "2021-10-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202277" + ], + "created_at": "2026-07-10T10:10:40.154733", + "updated_at": "2026-07-10T10:10:40.154733", + "url": "/v1/games/starry-moon-island-star-ocean-mp07" +} diff --git a/site/public/v1/games/starry-moon-island-star-ocean-mp08/index.json b/site/public/v1/games/starry-moon-island-star-ocean-mp08/index.json new file mode 100644 index 000000000000..f31d69aeb0e2 --- /dev/null +++ b/site/public/v1/games/starry-moon-island-star-ocean-mp08/index.json @@ -0,0 +1,31 @@ +{ + "id": 137478, + "slug": "starry-moon-island-star-ocean-mp08", + "name": "Starry Moon Island Star Ocean MP08", + "release_date": "2021-10-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202278" + ], + "created_at": "2026-07-10T10:10:40.154733", + "updated_at": "2026-07-10T10:10:40.154733", + "url": "/v1/games/starry-moon-island-star-ocean-mp08" +} diff --git a/site/public/v1/games/starry-moon-island-star-ocean-mp09/index.json b/site/public/v1/games/starry-moon-island-star-ocean-mp09/index.json new file mode 100644 index 000000000000..0020d9cf0cd2 --- /dev/null +++ b/site/public/v1/games/starry-moon-island-star-ocean-mp09/index.json @@ -0,0 +1,31 @@ +{ + "id": 137479, + "slug": "starry-moon-island-star-ocean-mp09", + "name": "Starry Moon Island Star Ocean MP09", + "release_date": "2021-10-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202279" + ], + "created_at": "2026-07-10T10:10:40.154733", + "updated_at": "2026-07-10T10:10:40.154733", + "url": "/v1/games/starry-moon-island-star-ocean-mp09" +} diff --git a/site/public/v1/games/starry-moon-island-star-ocean-mp10/index.json b/site/public/v1/games/starry-moon-island-star-ocean-mp10/index.json new file mode 100644 index 000000000000..e7ab7d8e5f5a --- /dev/null +++ b/site/public/v1/games/starry-moon-island-star-ocean-mp10/index.json @@ -0,0 +1,31 @@ +{ + "id": 137480, + "slug": "starry-moon-island-star-ocean-mp10", + "name": "Starry Moon Island Star Ocean MP10", + "release_date": "2021-10-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202280" + ], + "created_at": "2026-07-10T10:10:40.154733", + "updated_at": "2026-07-10T10:10:40.154733", + "url": "/v1/games/starry-moon-island-star-ocean-mp10" +} diff --git a/site/public/v1/games/starry-moon-island-tank-advance-mp01/index.json b/site/public/v1/games/starry-moon-island-tank-advance-mp01/index.json new file mode 100644 index 000000000000..00e86e6affcb --- /dev/null +++ b/site/public/v1/games/starry-moon-island-tank-advance-mp01/index.json @@ -0,0 +1,31 @@ +{ + "id": 137481, + "slug": "starry-moon-island-tank-advance-mp01", + "name": "Starry Moon Island Tank Advance MP01", + "release_date": "2021-10-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202281" + ], + "created_at": "2026-07-10T10:10:40.154733", + "updated_at": "2026-07-10T10:10:40.154733", + "url": "/v1/games/starry-moon-island-tank-advance-mp01" +} diff --git a/site/public/v1/games/starry-moon-island-tank-advance-mp02/index.json b/site/public/v1/games/starry-moon-island-tank-advance-mp02/index.json new file mode 100644 index 000000000000..4eb799dbbb17 --- /dev/null +++ b/site/public/v1/games/starry-moon-island-tank-advance-mp02/index.json @@ -0,0 +1,31 @@ +{ + "id": 137482, + "slug": "starry-moon-island-tank-advance-mp02", + "name": "Starry Moon Island Tank Advance MP02", + "release_date": "2021-10-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202282" + ], + "created_at": "2026-07-10T10:10:40.155737", + "updated_at": "2026-07-10T10:10:40.155737", + "url": "/v1/games/starry-moon-island-tank-advance-mp02" +} diff --git a/site/public/v1/games/starry-moon-island-tank-advance-mp03/index.json b/site/public/v1/games/starry-moon-island-tank-advance-mp03/index.json new file mode 100644 index 000000000000..a73f4b525f85 --- /dev/null +++ b/site/public/v1/games/starry-moon-island-tank-advance-mp03/index.json @@ -0,0 +1,31 @@ +{ + "id": 137483, + "slug": "starry-moon-island-tank-advance-mp03", + "name": "Starry Moon Island Tank Advance MP03", + "release_date": "2021-10-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202284" + ], + "created_at": "2026-07-10T10:10:40.155737", + "updated_at": "2026-07-10T10:10:40.155737", + "url": "/v1/games/starry-moon-island-tank-advance-mp03" +} diff --git a/site/public/v1/games/starry-moon-island-tank-advance-mp04/index.json b/site/public/v1/games/starry-moon-island-tank-advance-mp04/index.json new file mode 100644 index 000000000000..9c7e84de9668 --- /dev/null +++ b/site/public/v1/games/starry-moon-island-tank-advance-mp04/index.json @@ -0,0 +1,31 @@ +{ + "id": 137484, + "slug": "starry-moon-island-tank-advance-mp04", + "name": "Starry Moon Island Tank Advance MP04", + "release_date": "2021-10-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202286" + ], + "created_at": "2026-07-10T10:10:40.155737", + "updated_at": "2026-07-10T10:10:40.155737", + "url": "/v1/games/starry-moon-island-tank-advance-mp04" +} diff --git a/site/public/v1/games/starry-moon-island-tank-advance-mp05/index.json b/site/public/v1/games/starry-moon-island-tank-advance-mp05/index.json new file mode 100644 index 000000000000..a7a117a492c3 --- /dev/null +++ b/site/public/v1/games/starry-moon-island-tank-advance-mp05/index.json @@ -0,0 +1,31 @@ +{ + "id": 137485, + "slug": "starry-moon-island-tank-advance-mp05", + "name": "Starry Moon Island Tank Advance MP05", + "release_date": "2021-10-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202287" + ], + "created_at": "2026-07-10T10:10:40.155737", + "updated_at": "2026-07-10T10:10:40.155737", + "url": "/v1/games/starry-moon-island-tank-advance-mp05" +} diff --git a/site/public/v1/games/starry-moon-island-tank-advance-mp06/index.json b/site/public/v1/games/starry-moon-island-tank-advance-mp06/index.json new file mode 100644 index 000000000000..bdd78efee572 --- /dev/null +++ b/site/public/v1/games/starry-moon-island-tank-advance-mp06/index.json @@ -0,0 +1,31 @@ +{ + "id": 137486, + "slug": "starry-moon-island-tank-advance-mp06", + "name": "Starry Moon Island Tank Advance MP06", + "release_date": "2021-10-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202288" + ], + "created_at": "2026-07-10T10:10:40.156738", + "updated_at": "2026-07-10T10:10:40.156738", + "url": "/v1/games/starry-moon-island-tank-advance-mp06" +} diff --git a/site/public/v1/games/starry-moon-island-tank-advance-mp07/index.json b/site/public/v1/games/starry-moon-island-tank-advance-mp07/index.json new file mode 100644 index 000000000000..6f26f74aa134 --- /dev/null +++ b/site/public/v1/games/starry-moon-island-tank-advance-mp07/index.json @@ -0,0 +1,31 @@ +{ + "id": 137487, + "slug": "starry-moon-island-tank-advance-mp07", + "name": "Starry Moon Island Tank Advance MP07", + "release_date": "2021-10-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202289" + ], + "created_at": "2026-07-10T10:10:40.156738", + "updated_at": "2026-07-10T10:10:40.156738", + "url": "/v1/games/starry-moon-island-tank-advance-mp07" +} diff --git a/site/public/v1/games/starry-moon-island-tank-advance-mp08/index.json b/site/public/v1/games/starry-moon-island-tank-advance-mp08/index.json new file mode 100644 index 000000000000..17b8fb65e04f --- /dev/null +++ b/site/public/v1/games/starry-moon-island-tank-advance-mp08/index.json @@ -0,0 +1,31 @@ +{ + "id": 137488, + "slug": "starry-moon-island-tank-advance-mp08", + "name": "Starry Moon Island Tank Advance MP08", + "release_date": "2021-10-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202290" + ], + "created_at": "2026-07-10T10:10:40.156738", + "updated_at": "2026-07-10T10:10:40.156738", + "url": "/v1/games/starry-moon-island-tank-advance-mp08" +} diff --git a/site/public/v1/games/starry-moon-island-tank-advance-mp09/index.json b/site/public/v1/games/starry-moon-island-tank-advance-mp09/index.json new file mode 100644 index 000000000000..78b47acb539b --- /dev/null +++ b/site/public/v1/games/starry-moon-island-tank-advance-mp09/index.json @@ -0,0 +1,31 @@ +{ + "id": 137489, + "slug": "starry-moon-island-tank-advance-mp09", + "name": "Starry Moon Island Tank Advance MP09", + "release_date": "2021-10-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202291" + ], + "created_at": "2026-07-10T10:10:40.156738", + "updated_at": "2026-07-10T10:10:40.156738", + "url": "/v1/games/starry-moon-island-tank-advance-mp09" +} diff --git a/site/public/v1/games/starry-moon-island-tank-advance-mp10/index.json b/site/public/v1/games/starry-moon-island-tank-advance-mp10/index.json new file mode 100644 index 000000000000..92eddfefff27 --- /dev/null +++ b/site/public/v1/games/starry-moon-island-tank-advance-mp10/index.json @@ -0,0 +1,31 @@ +{ + "id": 137490, + "slug": "starry-moon-island-tank-advance-mp10", + "name": "Starry Moon Island Tank Advance MP10", + "release_date": "2021-10-30", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202292" + ], + "created_at": "2026-07-10T10:10:40.156738", + "updated_at": "2026-07-10T10:10:40.156738", + "url": "/v1/games/starry-moon-island-tank-advance-mp10" +} diff --git a/site/public/v1/games/stars-beyond-reach/index.json b/site/public/v1/games/stars-beyond-reach/index.json new file mode 100644 index 000000000000..8e2a5f256f9c --- /dev/null +++ b/site/public/v1/games/stars-beyond-reach/index.json @@ -0,0 +1,28 @@ +{ + "id": 137501, + "slug": "stars-beyond-reach", + "name": "Stars Beyond Reach", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q26252697" + ], + "created_at": "2026-07-10T10:10:40.160748", + "updated_at": "2026-07-10T10:10:40.160748", + "url": "/v1/games/stars-beyond-reach" +} diff --git a/site/public/v1/games/startup-company-console-edition/index.json b/site/public/v1/games/startup-company-console-edition/index.json new file mode 100644 index 000000000000..ecf3bde70f2a --- /dev/null +++ b/site/public/v1/games/startup-company-console-edition/index.json @@ -0,0 +1,32 @@ +{ + "id": 137643, + "slug": "startup-company-console-edition", + "name": "Startup Company Console Edition", + "release_date": "2023-01-26", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 4" + ], + "genres": [], + "stores": [], + "developers": [ + "Hovgaard Games" + ], + "publishers": [ + "2Awesome Studio" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q119458683" + ], + "created_at": "2026-07-10T10:10:40.198444", + "updated_at": "2026-07-10T10:10:40.198444", + "url": "/v1/games/startup-company-console-edition" +} diff --git a/site/public/v1/games/starved-for-help/index.json b/site/public/v1/games/starved-for-help/index.json new file mode 100644 index 000000000000..7cbbcaf8ed95 --- /dev/null +++ b/site/public/v1/games/starved-for-help/index.json @@ -0,0 +1,27 @@ +{ + "id": 137653, + "slug": "starved-for-help", + "name": "Starved for Help", + "release_date": "2012-08-29", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 4" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16170408" + ], + "created_at": "2026-07-10T10:10:40.200464", + "updated_at": "2026-07-10T10:10:40.200464", + "url": "/v1/games/starved-for-help" +} diff --git a/site/public/v1/games/starvoid/index.json b/site/public/v1/games/starvoid/index.json new file mode 100644 index 000000000000..7266c642d67f --- /dev/null +++ b/site/public/v1/games/starvoid/index.json @@ -0,0 +1,25 @@ +{ + "id": 137660, + "slug": "starvoid", + "name": "Starvoid", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140473921" + ], + "created_at": "2026-07-10T10:10:40.202446", + "updated_at": "2026-07-10T10:10:40.202446", + "url": "/v1/games/starvoid" +} diff --git a/site/public/v1/games/stcc-the-game/index.json b/site/public/v1/games/stcc-the-game/index.json new file mode 100644 index 000000000000..8ad85250c950 --- /dev/null +++ b/site/public/v1/games/stcc-the-game/index.json @@ -0,0 +1,33 @@ +{ + "id": 137804, + "slug": "stcc-the-game", + "name": "STCC – The Game", + "release_date": "2008-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "sim racing" + ], + "stores": [], + "developers": [ + "SimBin" + ], + "publishers": [ + "Atari" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10659665" + ], + "created_at": "2026-07-10T10:10:40.245063", + "updated_at": "2026-07-10T10:10:40.245063", + "url": "/v1/games/stcc-the-game" +} diff --git a/site/public/v1/games/steal-a-brainrot/index.json b/site/public/v1/games/steal-a-brainrot/index.json new file mode 100644 index 000000000000..340135dc9d68 --- /dev/null +++ b/site/public/v1/games/steal-a-brainrot/index.json @@ -0,0 +1,32 @@ +{ + "id": 137812, + "slug": "steal-a-brainrot", + "name": "Steal a Brainrot", + "release_date": "2025-05-16", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "iOS", + "Microsoft Windows", + "Google Chrome" + ], + "genres": [ + "incremental game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135921344" + ], + "created_at": "2026-07-10T10:10:40.246674", + "updated_at": "2026-07-10T10:10:40.246674", + "url": "/v1/games/steal-a-brainrot" +} diff --git a/site/public/v1/games/steal-a-country/index.json b/site/public/v1/games/steal-a-country/index.json new file mode 100644 index 000000000000..8c29714ec587 --- /dev/null +++ b/site/public/v1/games/steal-a-country/index.json @@ -0,0 +1,31 @@ +{ + "id": 137813, + "slug": "steal-a-country", + "name": "Steal a Country", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "iOS", + "macOS", + "Microsoft Windows" + ], + "genres": [ + "incremental game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136186253" + ], + "created_at": "2026-07-10T10:10:40.246674", + "updated_at": "2026-07-10T10:10:40.246674", + "url": "/v1/games/steal-a-country" +} diff --git a/site/public/v1/games/steamworld-headhunter/index.json b/site/public/v1/games/steamworld-headhunter/index.json new file mode 100644 index 000000000000..af814a320891 --- /dev/null +++ b/site/public/v1/games/steamworld-headhunter/index.json @@ -0,0 +1,35 @@ +{ + "id": 137921, + "slug": "steamworld-headhunter", + "name": "SteamWorld Headhunter", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 5", + "Microsoft Windows" + ], + "genres": [ + "action-adventure game" + ], + "stores": [], + "developers": [ + "Image & Form" + ], + "publishers": [ + "Thunderful" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126011373" + ], + "created_at": "2026-07-10T10:10:40.277202", + "updated_at": "2026-07-10T10:10:40.277202", + "url": "/v1/games/steamworld-headhunter" +} diff --git a/site/public/v1/games/steel-division-2-black-sunday/index.json b/site/public/v1/games/steel-division-2-black-sunday/index.json new file mode 100644 index 000000000000..465d24e4e546 --- /dev/null +++ b/site/public/v1/games/steel-division-2-black-sunday/index.json @@ -0,0 +1,25 @@ +{ + "id": 137949, + "slug": "steel-division-2-black-sunday", + "name": "Steel Division 2: Black Sunday", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131912748" + ], + "created_at": "2026-07-10T10:10:40.284267", + "updated_at": "2026-07-10T10:10:40.284267", + "url": "/v1/games/steel-division-2-black-sunday" +} diff --git a/site/public/v1/games/steel-division-2-death-on-the-vistula/index.json b/site/public/v1/games/steel-division-2-death-on-the-vistula/index.json new file mode 100644 index 000000000000..446e5722a197 --- /dev/null +++ b/site/public/v1/games/steel-division-2-death-on-the-vistula/index.json @@ -0,0 +1,27 @@ +{ + "id": 137950, + "slug": "steel-division-2-death-on-the-vistula", + "name": "Steel Division 2 - Death on the Vistula", + "release_date": "2019-10-17", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115651817" + ], + "created_at": "2026-07-10T10:10:40.285290", + "updated_at": "2026-07-10T10:10:40.285290", + "url": "/v1/games/steel-division-2-death-on-the-vistula" +} diff --git a/site/public/v1/games/steel-division-2-the-fate-of-finland/index.json b/site/public/v1/games/steel-division-2-the-fate-of-finland/index.json new file mode 100644 index 000000000000..6ec81d453953 --- /dev/null +++ b/site/public/v1/games/steel-division-2-the-fate-of-finland/index.json @@ -0,0 +1,27 @@ +{ + "id": 137951, + "slug": "steel-division-2-the-fate-of-finland", + "name": "Steel Division 2 - The Fate of Finland", + "release_date": "2020-03-03", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115651837" + ], + "created_at": "2026-07-10T10:10:40.285290", + "updated_at": "2026-07-10T10:10:40.285290", + "url": "/v1/games/steel-division-2-the-fate-of-finland" +} diff --git a/site/public/v1/games/steel-division-normandy-44-back-to-hell/index.json b/site/public/v1/games/steel-division-normandy-44-back-to-hell/index.json new file mode 100644 index 000000000000..f9428cfe9cad --- /dev/null +++ b/site/public/v1/games/steel-division-normandy-44-back-to-hell/index.json @@ -0,0 +1,27 @@ +{ + "id": 137953, + "slug": "steel-division-normandy-44-back-to-hell", + "name": "Steel Division: Normandy 44 - Back to Hell", + "release_date": "2018-02-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115651861" + ], + "created_at": "2026-07-10T10:10:40.285290", + "updated_at": "2026-07-10T10:10:40.285290", + "url": "/v1/games/steel-division-normandy-44-back-to-hell" +} diff --git a/site/public/v1/games/steel-division-normandy-44-second-wave/index.json b/site/public/v1/games/steel-division-normandy-44-second-wave/index.json new file mode 100644 index 000000000000..3d5f0dfb8243 --- /dev/null +++ b/site/public/v1/games/steel-division-normandy-44-second-wave/index.json @@ -0,0 +1,29 @@ +{ + "id": 137954, + "slug": "steel-division-normandy-44-second-wave", + "name": "Steel Division: Normandy 44 - Second Wave", + "release_date": "2017-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Eugen Systems" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131912721" + ], + "created_at": "2026-07-10T10:10:40.286261", + "updated_at": "2026-07-10T10:10:40.286261", + "url": "/v1/games/steel-division-normandy-44-second-wave" +} diff --git a/site/public/v1/games/steel-storm-forgotten-prison-dlc/index.json b/site/public/v1/games/steel-storm-forgotten-prison-dlc/index.json new file mode 100644 index 000000000000..a3163686de8a --- /dev/null +++ b/site/public/v1/games/steel-storm-forgotten-prison-dlc/index.json @@ -0,0 +1,27 @@ +{ + "id": 138004, + "slug": "steel-storm-forgotten-prison-dlc", + "name": "Steel Storm: Forgotten Prison DLC", + "release_date": "2013-09-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115651888" + ], + "created_at": "2026-07-10T10:10:40.299258", + "updated_at": "2026-07-10T10:10:40.299258", + "url": "/v1/games/steel-storm-forgotten-prison-dlc" +} diff --git a/site/public/v1/games/steelport-gangs-pack/index.json b/site/public/v1/games/steelport-gangs-pack/index.json new file mode 100644 index 000000000000..9b6d5950516b --- /dev/null +++ b/site/public/v1/games/steelport-gangs-pack/index.json @@ -0,0 +1,27 @@ +{ + "id": 138026, + "slug": "steelport-gangs-pack", + "name": "Steelport Gangs Pack", + "release_date": "2012-05-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60616768" + ], + "created_at": "2026-07-10T10:10:40.305200", + "updated_at": "2026-07-10T10:10:40.305200", + "url": "/v1/games/steelport-gangs-pack" +} diff --git a/site/public/v1/games/steelrising-bastille-edition/index.json b/site/public/v1/games/steelrising-bastille-edition/index.json new file mode 100644 index 000000000000..4d3f33048862 --- /dev/null +++ b/site/public/v1/games/steelrising-bastille-edition/index.json @@ -0,0 +1,29 @@ +{ + "id": 138028, + "slug": "steelrising-bastille-edition", + "name": "Steelrising - Bastille Edition", + "release_date": "2022-09-08", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Nacon" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116192762" + ], + "created_at": "2026-07-10T10:10:40.306198", + "updated_at": "2026-07-10T10:10:40.306198", + "url": "/v1/games/steelrising-bastille-edition" +} diff --git a/site/public/v1/games/stellar-blade-x-goddess-of-victory-nikke/index.json b/site/public/v1/games/stellar-blade-x-goddess-of-victory-nikke/index.json new file mode 100644 index 000000000000..d48766f469ce --- /dev/null +++ b/site/public/v1/games/stellar-blade-x-goddess-of-victory-nikke/index.json @@ -0,0 +1,34 @@ +{ + "id": 138077, + "slug": "stellar-blade-x-goddess-of-victory-nikke", + "name": "Stellar Blade x Goddess of Victory: Nikke", + "release_date": "2025-06-11", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 5", + "Microsoft Windows" + ], + "genres": [ + "crossover fiction" + ], + "stores": [], + "developers": [ + "Shift Up" + ], + "publishers": [ + "Sony Interactive Entertainment" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134879331" + ], + "created_at": "2026-07-10T10:10:40.320199", + "updated_at": "2026-07-10T10:10:40.320199", + "url": "/v1/games/stellar-blade-x-goddess-of-victory-nikke" +} diff --git a/site/public/v1/games/stellar-blade-x-nier-automata/index.json b/site/public/v1/games/stellar-blade-x-nier-automata/index.json new file mode 100644 index 000000000000..0aa62922d11a --- /dev/null +++ b/site/public/v1/games/stellar-blade-x-nier-automata/index.json @@ -0,0 +1,34 @@ +{ + "id": 138078, + "slug": "stellar-blade-x-nier-automata", + "name": "Stellar Blade x NieR:Automata", + "release_date": "2024-11-19", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 5", + "Microsoft Windows" + ], + "genres": [ + "crossover fiction" + ], + "stores": [], + "developers": [ + "Shift Up" + ], + "publishers": [ + "Sony Interactive Entertainment" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131323219" + ], + "created_at": "2026-07-10T10:10:40.320199", + "updated_at": "2026-07-10T10:10:40.320199", + "url": "/v1/games/stellar-blade-x-nier-automata" +} diff --git a/site/public/v1/games/stellar-dawn/index.json b/site/public/v1/games/stellar-dawn/index.json new file mode 100644 index 000000000000..94a027446017 --- /dev/null +++ b/site/public/v1/games/stellar-dawn/index.json @@ -0,0 +1,34 @@ +{ + "id": 138089, + "slug": "stellar-dawn", + "name": "Stellar Dawn", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Java platform" + ], + "genres": [ + "science fiction", + "massively multiplayer online role-playing game" + ], + "stores": [], + "developers": [ + "Jagex" + ], + "publishers": [ + "Jagex" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3286475" + ], + "created_at": "2026-07-10T10:10:40.323196", + "updated_at": "2026-07-10T10:10:40.323196", + "url": "/v1/games/stellar-dawn" +} diff --git a/site/public/v1/games/stellarace-demo/index.json b/site/public/v1/games/stellarace-demo/index.json new file mode 100644 index 000000000000..47bca0130d3d --- /dev/null +++ b/site/public/v1/games/stellarace-demo/index.json @@ -0,0 +1,27 @@ +{ + "id": 138148, + "slug": "stellarace-demo", + "name": "Stellarace (Demo)", + "release_date": "2023-04-17", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122384288" + ], + "created_at": "2026-07-10T10:10:40.340279", + "updated_at": "2026-07-10T10:10:40.340279", + "url": "/v1/games/stellarace-demo" +} diff --git a/site/public/v1/games/stellaris-ancient-relics-story-pack/index.json b/site/public/v1/games/stellaris-ancient-relics-story-pack/index.json new file mode 100644 index 000000000000..086f9b3205ac --- /dev/null +++ b/site/public/v1/games/stellaris-ancient-relics-story-pack/index.json @@ -0,0 +1,32 @@ +{ + "id": 138158, + "slug": "stellaris-ancient-relics-story-pack", + "name": "Stellaris: Ancient Relics Story Pack", + "release_date": "2019-06-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Development Studio" + ], + "publishers": [ + "Paradox Interactive" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107474067" + ], + "created_at": "2026-07-10T10:10:40.343197", + "updated_at": "2026-07-10T10:10:40.343197", + "url": "/v1/games/stellaris-ancient-relics-story-pack" +} diff --git a/site/public/v1/games/stellaris-apocalypse/index.json b/site/public/v1/games/stellaris-apocalypse/index.json new file mode 100644 index 000000000000..fd226254f060 --- /dev/null +++ b/site/public/v1/games/stellaris-apocalypse/index.json @@ -0,0 +1,32 @@ +{ + "id": 138159, + "slug": "stellaris-apocalypse", + "name": "Stellaris: Apocalypse", + "release_date": "2018-02-22", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Development Studio" + ], + "publishers": [ + "Paradox Interactive" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107474065" + ], + "created_at": "2026-07-10T10:10:40.343197", + "updated_at": "2026-07-10T10:10:40.343197", + "url": "/v1/games/stellaris-apocalypse" +} diff --git a/site/public/v1/games/stellaris-aquatics-species-pack/index.json b/site/public/v1/games/stellaris-aquatics-species-pack/index.json new file mode 100644 index 000000000000..c4bca34ad32e --- /dev/null +++ b/site/public/v1/games/stellaris-aquatics-species-pack/index.json @@ -0,0 +1,32 @@ +{ + "id": 138160, + "slug": "stellaris-aquatics-species-pack", + "name": "Stellaris: Aquatics Species Pack", + "release_date": "2021-11-22", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Development Studio" + ], + "publishers": [ + "Paradox Interactive" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110826597" + ], + "created_at": "2026-07-10T10:10:40.343197", + "updated_at": "2026-07-10T10:10:40.343197", + "url": "/v1/games/stellaris-aquatics-species-pack" +} diff --git a/site/public/v1/games/stellaris-astral-planes/index.json b/site/public/v1/games/stellaris-astral-planes/index.json new file mode 100644 index 000000000000..564650396b2d --- /dev/null +++ b/site/public/v1/games/stellaris-astral-planes/index.json @@ -0,0 +1,25 @@ +{ + "id": 138161, + "slug": "stellaris-astral-planes", + "name": "Stellaris: Astral Planes", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140413270" + ], + "created_at": "2026-07-10T10:10:40.344195", + "updated_at": "2026-07-10T10:10:40.344195", + "url": "/v1/games/stellaris-astral-planes" +} diff --git a/site/public/v1/games/stellaris-distant-stars-story-pack/index.json b/site/public/v1/games/stellaris-distant-stars-story-pack/index.json new file mode 100644 index 000000000000..cc8ed5c62faa --- /dev/null +++ b/site/public/v1/games/stellaris-distant-stars-story-pack/index.json @@ -0,0 +1,32 @@ +{ + "id": 138164, + "slug": "stellaris-distant-stars-story-pack", + "name": "Stellaris: Distant Stars Story Pack", + "release_date": "2018-05-22", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Development Studio" + ], + "publishers": [ + "Paradox Interactive" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107474069" + ], + "created_at": "2026-07-10T10:10:40.345203", + "updated_at": "2026-07-10T10:10:40.345203", + "url": "/v1/games/stellaris-distant-stars-story-pack" +} diff --git a/site/public/v1/games/stellaris-federations/index.json b/site/public/v1/games/stellaris-federations/index.json new file mode 100644 index 000000000000..fc663d7b789d --- /dev/null +++ b/site/public/v1/games/stellaris-federations/index.json @@ -0,0 +1,32 @@ +{ + "id": 138165, + "slug": "stellaris-federations", + "name": "Stellaris: Federations", + "release_date": "2020-03-17", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Development Studio" + ], + "publishers": [ + "Paradox Interactive" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107474073" + ], + "created_at": "2026-07-10T10:10:40.345203", + "updated_at": "2026-07-10T10:10:40.345203", + "url": "/v1/games/stellaris-federations" +} diff --git a/site/public/v1/games/stellaris-galactic-paragons/index.json b/site/public/v1/games/stellaris-galactic-paragons/index.json new file mode 100644 index 000000000000..2089063d3118 --- /dev/null +++ b/site/public/v1/games/stellaris-galactic-paragons/index.json @@ -0,0 +1,29 @@ +{ + "id": 138167, + "slug": "stellaris-galactic-paragons", + "name": "Stellaris: Galactic Paragons", + "release_date": "2023-05-09", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S", + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123676711" + ], + "created_at": "2026-07-10T10:10:40.345203", + "updated_at": "2026-07-10T10:10:40.345203", + "url": "/v1/games/stellaris-galactic-paragons" +} diff --git a/site/public/v1/games/stellaris-humanoids-species-pack/index.json b/site/public/v1/games/stellaris-humanoids-species-pack/index.json new file mode 100644 index 000000000000..e75e75e71d8a --- /dev/null +++ b/site/public/v1/games/stellaris-humanoids-species-pack/index.json @@ -0,0 +1,32 @@ +{ + "id": 138170, + "slug": "stellaris-humanoids-species-pack", + "name": "Stellaris: Humanoids Species Pack", + "release_date": "2017-12-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Development Studio" + ], + "publishers": [ + "Paradox Interactive" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107474068" + ], + "created_at": "2026-07-10T10:10:40.346202", + "updated_at": "2026-07-10T10:10:40.346202", + "url": "/v1/games/stellaris-humanoids-species-pack" +} diff --git a/site/public/v1/games/stellaris-leviathans-story-pack/index.json b/site/public/v1/games/stellaris-leviathans-story-pack/index.json new file mode 100644 index 000000000000..79406483085d --- /dev/null +++ b/site/public/v1/games/stellaris-leviathans-story-pack/index.json @@ -0,0 +1,32 @@ +{ + "id": 138171, + "slug": "stellaris-leviathans-story-pack", + "name": "Stellaris: Leviathans Story Pack", + "release_date": "2016-10-20", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Development Studio" + ], + "publishers": [ + "Paradox Interactive" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110826714" + ], + "created_at": "2026-07-10T10:10:40.346202", + "updated_at": "2026-07-10T10:10:40.346202", + "url": "/v1/games/stellaris-leviathans-story-pack" +} diff --git a/site/public/v1/games/stellaris-lithoids-species-pack/index.json b/site/public/v1/games/stellaris-lithoids-species-pack/index.json new file mode 100644 index 000000000000..9ba959d460ce --- /dev/null +++ b/site/public/v1/games/stellaris-lithoids-species-pack/index.json @@ -0,0 +1,32 @@ +{ + "id": 138172, + "slug": "stellaris-lithoids-species-pack", + "name": "Stellaris: Lithoids Species Pack", + "release_date": "2019-10-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Development Studio" + ], + "publishers": [ + "Paradox Interactive" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107474071" + ], + "created_at": "2026-07-10T10:10:40.347260", + "updated_at": "2026-07-10T10:10:40.347260", + "url": "/v1/games/stellaris-lithoids-species-pack" +} diff --git a/site/public/v1/games/stellaris-megacorp/index.json b/site/public/v1/games/stellaris-megacorp/index.json new file mode 100644 index 000000000000..f14c1d8271c0 --- /dev/null +++ b/site/public/v1/games/stellaris-megacorp/index.json @@ -0,0 +1,32 @@ +{ + "id": 138173, + "slug": "stellaris-megacorp", + "name": "Stellaris: MegaCorp", + "release_date": "2018-12-06", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Development Studio" + ], + "publishers": [ + "Paradox Interactive" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107474064" + ], + "created_at": "2026-07-10T10:10:40.347260", + "updated_at": "2026-07-10T10:10:40.347260", + "url": "/v1/games/stellaris-megacorp" +} diff --git a/site/public/v1/games/stellaris-necroids-species-pack/index.json b/site/public/v1/games/stellaris-necroids-species-pack/index.json new file mode 100644 index 000000000000..42231871beef --- /dev/null +++ b/site/public/v1/games/stellaris-necroids-species-pack/index.json @@ -0,0 +1,32 @@ +{ + "id": 138174, + "slug": "stellaris-necroids-species-pack", + "name": "Stellaris: Necroids Species Pack", + "release_date": "2020-10-29", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Development Studio" + ], + "publishers": [ + "Paradox Interactive" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107474074" + ], + "created_at": "2026-07-10T10:10:40.347260", + "updated_at": "2026-07-10T10:10:40.347260", + "url": "/v1/games/stellaris-necroids-species-pack" +} diff --git a/site/public/v1/games/stellaris-nemesis/index.json b/site/public/v1/games/stellaris-nemesis/index.json new file mode 100644 index 000000000000..e313ea30ba4c --- /dev/null +++ b/site/public/v1/games/stellaris-nemesis/index.json @@ -0,0 +1,32 @@ +{ + "id": 138175, + "slug": "stellaris-nemesis", + "name": "Stellaris: Nemesis", + "release_date": "2021-04-15", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Development Studio" + ], + "publishers": [ + "Paradox Interactive" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107474072" + ], + "created_at": "2026-07-10T10:10:40.347260", + "updated_at": "2026-07-10T10:10:40.347260", + "url": "/v1/games/stellaris-nemesis" +} diff --git a/site/public/v1/games/stellaris-overlord/index.json b/site/public/v1/games/stellaris-overlord/index.json new file mode 100644 index 000000000000..6964db6b0855 --- /dev/null +++ b/site/public/v1/games/stellaris-overlord/index.json @@ -0,0 +1,32 @@ +{ + "id": 138177, + "slug": "stellaris-overlord", + "name": "Stellaris: Overlord", + "release_date": "2022-05-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Development Studio" + ], + "publishers": [ + "Paradox Interactive" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111291991" + ], + "created_at": "2026-07-10T10:10:40.348271", + "updated_at": "2026-07-10T10:10:40.348271", + "url": "/v1/games/stellaris-overlord" +} diff --git a/site/public/v1/games/stellaris-plantoids-species-pack/index.json b/site/public/v1/games/stellaris-plantoids-species-pack/index.json new file mode 100644 index 000000000000..6d0f6104f441 --- /dev/null +++ b/site/public/v1/games/stellaris-plantoids-species-pack/index.json @@ -0,0 +1,32 @@ +{ + "id": 138178, + "slug": "stellaris-plantoids-species-pack", + "name": "Stellaris: Plantoids Species Pack", + "release_date": "2016-08-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Development Studio" + ], + "publishers": [ + "Paradox Interactive" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107474066" + ], + "created_at": "2026-07-10T10:10:40.348271", + "updated_at": "2026-07-10T10:10:40.348271", + "url": "/v1/games/stellaris-plantoids-species-pack" +} diff --git a/site/public/v1/games/stellaris-shadows-of-the-shroud/index.json b/site/public/v1/games/stellaris-shadows-of-the-shroud/index.json new file mode 100644 index 000000000000..0c29f5e6e82f --- /dev/null +++ b/site/public/v1/games/stellaris-shadows-of-the-shroud/index.json @@ -0,0 +1,25 @@ +{ + "id": 138179, + "slug": "stellaris-shadows-of-the-shroud", + "name": "Stellaris: Shadows of the Shroud", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140417171" + ], + "created_at": "2026-07-10T10:10:40.348271", + "updated_at": "2026-07-10T10:10:40.348271", + "url": "/v1/games/stellaris-shadows-of-the-shroud" +} diff --git a/site/public/v1/games/stellaris-synthetic-dawn-story-pack/index.json b/site/public/v1/games/stellaris-synthetic-dawn-story-pack/index.json new file mode 100644 index 000000000000..e114c9337d86 --- /dev/null +++ b/site/public/v1/games/stellaris-synthetic-dawn-story-pack/index.json @@ -0,0 +1,32 @@ +{ + "id": 138180, + "slug": "stellaris-synthetic-dawn-story-pack", + "name": "Stellaris: Synthetic Dawn Story Pack", + "release_date": "2017-09-21", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Development Studio" + ], + "publishers": [ + "Paradox Interactive" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107474070" + ], + "created_at": "2026-07-10T10:10:40.349291", + "updated_at": "2026-07-10T10:10:40.349291", + "url": "/v1/games/stellaris-synthetic-dawn-story-pack" +} diff --git a/site/public/v1/games/stellaris-the-machine-age/index.json b/site/public/v1/games/stellaris-the-machine-age/index.json new file mode 100644 index 000000000000..9959750e621e --- /dev/null +++ b/site/public/v1/games/stellaris-the-machine-age/index.json @@ -0,0 +1,25 @@ +{ + "id": 138181, + "slug": "stellaris-the-machine-age", + "name": "Stellaris: The Machine Age", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140417111" + ], + "created_at": "2026-07-10T10:10:40.349291", + "updated_at": "2026-07-10T10:10:40.349291", + "url": "/v1/games/stellaris-the-machine-age" +} diff --git a/site/public/v1/games/stellaris-toxoids-species-pack/index.json b/site/public/v1/games/stellaris-toxoids-species-pack/index.json new file mode 100644 index 000000000000..017163171698 --- /dev/null +++ b/site/public/v1/games/stellaris-toxoids-species-pack/index.json @@ -0,0 +1,28 @@ +{ + "id": 138182, + "slug": "stellaris-toxoids-species-pack", + "name": "Stellaris: Toxoids Species Pack", + "release_date": "2022-09-20", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q114074981" + ], + "created_at": "2026-07-10T10:10:40.349291", + "updated_at": "2026-07-10T10:10:40.349291", + "url": "/v1/games/stellaris-toxoids-species-pack" +} diff --git a/site/public/v1/games/stellaris-utopia/index.json b/site/public/v1/games/stellaris-utopia/index.json new file mode 100644 index 000000000000..405b1821eeea --- /dev/null +++ b/site/public/v1/games/stellaris-utopia/index.json @@ -0,0 +1,32 @@ +{ + "id": 138183, + "slug": "stellaris-utopia", + "name": "Stellaris: Utopia", + "release_date": "2017-04-06", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Development Studio" + ], + "publishers": [ + "Paradox Interactive" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107473916" + ], + "created_at": "2026-07-10T10:10:40.350262", + "updated_at": "2026-07-10T10:10:40.350262", + "url": "/v1/games/stellaris-utopia" +} diff --git a/site/public/v1/games/steve-jackson-s-sorcery/index.json b/site/public/v1/games/steve-jackson-s-sorcery/index.json new file mode 100644 index 000000000000..8a6a9cdbc6e1 --- /dev/null +++ b/site/public/v1/games/steve-jackson-s-sorcery/index.json @@ -0,0 +1,32 @@ +{ + "id": 138245, + "slug": "steve-jackson-s-sorcery", + "name": "Steve Jackson's Sorcery!", + "release_date": "2022-06-23", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Inkle" + ], + "publishers": [ + "No Gravity Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113680705" + ], + "created_at": "2026-07-10T10:10:40.366398", + "updated_at": "2026-07-10T10:10:40.366398", + "url": "/v1/games/steve-jackson-s-sorcery" +} diff --git a/site/public/v1/games/stick-fight-the-game-4-pack/index.json b/site/public/v1/games/stick-fight-the-game-4-pack/index.json new file mode 100644 index 000000000000..b5026a6e9ec9 --- /dev/null +++ b/site/public/v1/games/stick-fight-the-game-4-pack/index.json @@ -0,0 +1,25 @@ +{ + "id": 138269, + "slug": "stick-fight-the-game-4-pack", + "name": "Stick Fight: The Game 4-Pack", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q78671466" + ], + "created_at": "2026-07-10T10:10:40.373046", + "updated_at": "2026-07-10T10:10:40.373046", + "url": "/v1/games/stick-fight-the-game-4-pack" +} diff --git a/site/public/v1/games/still-wakes-the-deep-siren-s-rest/index.json b/site/public/v1/games/still-wakes-the-deep-siren-s-rest/index.json new file mode 100644 index 000000000000..3b39d982b9ac --- /dev/null +++ b/site/public/v1/games/still-wakes-the-deep-siren-s-rest/index.json @@ -0,0 +1,27 @@ +{ + "id": 138371, + "slug": "still-wakes-the-deep-siren-s-rest", + "name": "Still Wakes the Deep: Siren's Rest", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136817770" + ], + "created_at": "2026-07-10T10:10:40.402053", + "updated_at": "2026-07-10T10:10:40.402053", + "url": "/v1/games/still-wakes-the-deep-siren-s-rest" +} diff --git a/site/public/v1/games/stitching-theme/index.json b/site/public/v1/games/stitching-theme/index.json new file mode 100644 index 000000000000..2bf928c695d5 --- /dev/null +++ b/site/public/v1/games/stitching-theme/index.json @@ -0,0 +1,31 @@ +{ + "id": 138400, + "slug": "stitching-theme", + "name": "Stitching Theme", + "release_date": "2014-10-02", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation Vita" + ], + "genres": [], + "stores": [], + "developers": [ + "Sony Interactive Entertainment" + ], + "publishers": [ + "Sony Interactive Entertainment" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q61517006" + ], + "created_at": "2026-07-10T10:10:40.409070", + "updated_at": "2026-07-10T10:10:40.409070", + "url": "/v1/games/stitching-theme" +} diff --git a/site/public/v1/games/stm32doom/index.json b/site/public/v1/games/stm32doom/index.json new file mode 100644 index 000000000000..56f10ef6f1f4 --- /dev/null +++ b/site/public/v1/games/stm32doom/index.json @@ -0,0 +1,27 @@ +{ + "id": 138405, + "slug": "stm32doom", + "name": "STM32Doom", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "STM32" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124473442" + ], + "created_at": "2026-07-10T10:10:40.411069", + "updated_at": "2026-07-10T10:10:40.411069", + "url": "/v1/games/stm32doom" +} diff --git a/site/public/v1/games/stonia/index.json b/site/public/v1/games/stonia/index.json new file mode 100644 index 000000000000..fbd74114a561 --- /dev/null +++ b/site/public/v1/games/stonia/index.json @@ -0,0 +1,25 @@ +{ + "id": 138515, + "slug": "stonia", + "name": "Stonia", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121540772" + ], + "created_at": "2026-07-10T10:10:40.441064", + "updated_at": "2026-07-10T10:10:40.441064", + "url": "/v1/games/stonia" +} diff --git a/site/public/v1/games/stop-sign-theme/index.json b/site/public/v1/games/stop-sign-theme/index.json new file mode 100644 index 000000000000..e8552f5a4c2c --- /dev/null +++ b/site/public/v1/games/stop-sign-theme/index.json @@ -0,0 +1,31 @@ +{ + "id": 138531, + "slug": "stop-sign-theme", + "name": "Stop Sign Theme", + "release_date": "2017-09-26", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 4" + ], + "genres": [], + "stores": [], + "developers": [ + "Sony Interactive Entertainment" + ], + "publishers": [ + "Sony Interactive Entertainment" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q64995018" + ], + "created_at": "2026-07-10T10:10:40.445988", + "updated_at": "2026-07-10T10:10:40.445988", + "url": "/v1/games/stop-sign-theme" +} diff --git a/site/public/v1/games/stormbirds/index.json b/site/public/v1/games/stormbirds/index.json new file mode 100644 index 000000000000..b95f33f9d854 --- /dev/null +++ b/site/public/v1/games/stormbirds/index.json @@ -0,0 +1,32 @@ +{ + "id": 138639, + "slug": "stormbirds", + "name": "Stormbirds", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 3", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "THQ Digital Studios UK" + ], + "publishers": [ + "THQ" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4050209" + ], + "created_at": "2026-07-10T10:10:40.476429", + "updated_at": "2026-07-10T10:10:40.476429", + "url": "/v1/games/stormbirds" +} diff --git a/site/public/v1/games/stranger-of-paradise-final-fantasy-origin-digital-deluxe-edition/index.json b/site/public/v1/games/stranger-of-paradise-final-fantasy-origin-digital-deluxe-edition/index.json new file mode 100644 index 000000000000..6bc3ad17ec44 --- /dev/null +++ b/site/public/v1/games/stranger-of-paradise-final-fantasy-origin-digital-deluxe-edition/index.json @@ -0,0 +1,31 @@ +{ + "id": 138811, + "slug": "stranger-of-paradise-final-fantasy-origin-digital-deluxe-edition", + "name": "Stranger of Paradise: Final Fantasy Origin Digital Deluxe Edition", + "release_date": "2022-04-19", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S" + ], + "genres": [], + "stores": [], + "developers": [ + "Koei Tecmo Games" + ], + "publishers": [ + "Square Enix" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111812573" + ], + "created_at": "2026-07-10T10:10:40.527728", + "updated_at": "2026-07-10T10:10:40.527728", + "url": "/v1/games/stranger-of-paradise-final-fantasy-origin-digital-deluxe-edition" +} diff --git a/site/public/v1/games/strategic-command-2-patton-drives-east/index.json b/site/public/v1/games/strategic-command-2-patton-drives-east/index.json new file mode 100644 index 000000000000..bd85f8296738 --- /dev/null +++ b/site/public/v1/games/strategic-command-2-patton-drives-east/index.json @@ -0,0 +1,25 @@ +{ + "id": 138844, + "slug": "strategic-command-2-patton-drives-east", + "name": "Strategic Command 2: Patton Drives East", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1291872" + ], + "created_at": "2026-07-10T10:10:40.537650", + "updated_at": "2026-07-10T10:10:40.537650", + "url": "/v1/games/strategic-command-2-patton-drives-east" +} diff --git a/site/public/v1/games/straw-hat-samurai-duels/index.json b/site/public/v1/games/straw-hat-samurai-duels/index.json new file mode 100644 index 000000000000..314c29b27a75 --- /dev/null +++ b/site/public/v1/games/straw-hat-samurai-duels/index.json @@ -0,0 +1,27 @@ +{ + "id": 138892, + "slug": "straw-hat-samurai-duels", + "name": "Straw Hat Samurai: Duels", + "release_date": "2011-01-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "fighting game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130190624" + ], + "created_at": "2026-07-10T10:10:40.548702", + "updated_at": "2026-07-10T10:10:40.548702", + "url": "/v1/games/straw-hat-samurai-duels" +} diff --git a/site/public/v1/games/stray-souls-dollhouse-story-collector-s-edition/index.json b/site/public/v1/games/stray-souls-dollhouse-story-collector-s-edition/index.json new file mode 100644 index 000000000000..36386509aee6 --- /dev/null +++ b/site/public/v1/games/stray-souls-dollhouse-story-collector-s-edition/index.json @@ -0,0 +1,33 @@ +{ + "id": 138921, + "slug": "stray-souls-dollhouse-story-collector-s-edition", + "name": "Stray Souls: Dollhouse Story Collector's Edition", + "release_date": "2011-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "iOS", + "macOS", + "Microsoft Windows" + ], + "genres": [ + "hidden object game" + ], + "stores": [], + "developers": [], + "publishers": [ + "Focus Multimedia Limited" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q100293835" + ], + "created_at": "2026-07-10T10:10:40.555780", + "updated_at": "2026-07-10T10:10:40.555780", + "url": "/v1/games/stray-souls-dollhouse-story-collector-s-edition" +} diff --git a/site/public/v1/games/street-fighter-3-third-strike-online-edition/index.json b/site/public/v1/games/street-fighter-3-third-strike-online-edition/index.json new file mode 100644 index 000000000000..1c6a8bcf8231 --- /dev/null +++ b/site/public/v1/games/street-fighter-3-third-strike-online-edition/index.json @@ -0,0 +1,25 @@ +{ + "id": 139012, + "slug": "street-fighter-3-third-strike-online-edition", + "name": "Street Fighter 3 Third-Strike Online Edition", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107424309" + ], + "created_at": "2026-07-10T10:10:40.581490", + "updated_at": "2026-07-10T10:10:40.581490", + "url": "/v1/games/street-fighter-3-third-strike-online-edition" +} diff --git a/site/public/v1/games/street-fighter-30th-anniversary-collection/index.json b/site/public/v1/games/street-fighter-30th-anniversary-collection/index.json new file mode 100644 index 000000000000..1556b2afe7fc --- /dev/null +++ b/site/public/v1/games/street-fighter-30th-anniversary-collection/index.json @@ -0,0 +1,32 @@ +{ + "id": 139013, + "slug": "street-fighter-30th-anniversary-collection", + "name": "Street Fighter 30th Anniversary Collection", + "release_date": "2018-05-29", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "fighting game" + ], + "stores": [], + "developers": [], + "publishers": [ + "Capcom" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q47474004" + ], + "created_at": "2026-07-10T10:10:40.581490", + "updated_at": "2026-07-10T10:10:40.581490", + "url": "/v1/games/street-fighter-30th-anniversary-collection" +} diff --git a/site/public/v1/games/street-fighter-anniversary-collection/index.json b/site/public/v1/games/street-fighter-anniversary-collection/index.json new file mode 100644 index 000000000000..a04236000848 --- /dev/null +++ b/site/public/v1/games/street-fighter-anniversary-collection/index.json @@ -0,0 +1,31 @@ +{ + "id": 139022, + "slug": "street-fighter-anniversary-collection", + "name": "Street Fighter Anniversary Collection", + "release_date": "2004-08-31", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "fighting game" + ], + "stores": [], + "developers": [ + "Capcom" + ], + "publishers": [ + "Capcom" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7622839" + ], + "created_at": "2026-07-10T10:10:40.583462", + "updated_at": "2026-07-10T10:10:40.583462", + "url": "/v1/games/street-fighter-anniversary-collection" +} diff --git a/site/public/v1/games/street-fighter-collection-2/index.json b/site/public/v1/games/street-fighter-collection-2/index.json new file mode 100644 index 000000000000..16cc0687b843 --- /dev/null +++ b/site/public/v1/games/street-fighter-collection-2/index.json @@ -0,0 +1,25 @@ +{ + "id": 139023, + "slug": "street-fighter-collection-2", + "name": "Street Fighter Collection 2", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6134505" + ], + "created_at": "2026-07-10T10:10:40.583462", + "updated_at": "2026-07-10T10:10:40.583462", + "url": "/v1/games/street-fighter-collection-2" +} diff --git a/site/public/v1/games/street-fighter-collection/index.json b/site/public/v1/games/street-fighter-collection/index.json new file mode 100644 index 000000000000..7f6d6f1a2b6f --- /dev/null +++ b/site/public/v1/games/street-fighter-collection/index.json @@ -0,0 +1,31 @@ +{ + "id": 139024, + "slug": "street-fighter-collection", + "name": "Street Fighter Collection", + "release_date": "1997-09-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "fighting game" + ], + "stores": [], + "developers": [ + "Capcom" + ], + "publishers": [ + "Capcom" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q658412" + ], + "created_at": "2026-07-10T10:10:40.583462", + "updated_at": "2026-07-10T10:10:40.583462", + "url": "/v1/games/street-fighter-collection" +} diff --git a/site/public/v1/games/street-fighter-ii-special-champion-edition/index.json b/site/public/v1/games/street-fighter-ii-special-champion-edition/index.json new file mode 100644 index 000000000000..f5b9709a10be --- /dev/null +++ b/site/public/v1/games/street-fighter-ii-special-champion-edition/index.json @@ -0,0 +1,27 @@ +{ + "id": 139035, + "slug": "street-fighter-ii-special-champion-edition", + "name": "Street Fighter II': Special Champion Edition", + "release_date": "1993-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Sega Genesis" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113451506" + ], + "created_at": "2026-07-10T10:10:40.586454", + "updated_at": "2026-07-10T10:10:40.586454", + "url": "/v1/games/street-fighter-ii-special-champion-edition" +} diff --git a/site/public/v1/games/streets-of-moscow/index.json b/site/public/v1/games/streets-of-moscow/index.json new file mode 100644 index 000000000000..807d8ecb4204 --- /dev/null +++ b/site/public/v1/games/streets-of-moscow/index.json @@ -0,0 +1,33 @@ +{ + "id": 139140, + "slug": "streets-of-moscow", + "name": "Streets of Moscow", + "release_date": "2008-02-15", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "racing video game" + ], + "stores": [], + "developers": [ + "Gaijin Entertainment" + ], + "publishers": [ + "1C Company" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116787780" + ], + "created_at": "2026-07-10T10:10:40.613451", + "updated_at": "2026-07-10T10:10:40.613451", + "url": "/v1/games/streets-of-moscow" +} diff --git a/site/public/v1/games/streets-of-rage-4-mr-x-nightmare/index.json b/site/public/v1/games/streets-of-rage-4-mr-x-nightmare/index.json new file mode 100644 index 000000000000..114c2e617784 --- /dev/null +++ b/site/public/v1/games/streets-of-rage-4-mr-x-nightmare/index.json @@ -0,0 +1,28 @@ +{ + "id": 139144, + "slug": "streets-of-rage-4-mr-x-nightmare", + "name": "Streets of Rage 4: Mr. X Nightmare", + "release_date": "2021-07-15", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109449587" + ], + "created_at": "2026-07-10T10:10:40.614478", + "updated_at": "2026-07-10T10:10:40.614478", + "url": "/v1/games/streets-of-rage-4-mr-x-nightmare" +} diff --git a/site/public/v1/games/stretch-armstrong-the-breakout/index.json b/site/public/v1/games/stretch-armstrong-the-breakout/index.json new file mode 100644 index 000000000000..e190433f0437 --- /dev/null +++ b/site/public/v1/games/stretch-armstrong-the-breakout/index.json @@ -0,0 +1,27 @@ +{ + "id": 139175, + "slug": "stretch-armstrong-the-breakout", + "name": "Stretch Armstrong: The Breakout", + "release_date": "2018-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "full motion video" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q50575835" + ], + "created_at": "2026-07-10T10:10:41.376631", + "updated_at": "2026-07-10T10:10:41.376631", + "url": "/v1/games/stretch-armstrong-the-breakout" +} diff --git a/site/public/v1/games/strider-q14928351/index.json b/site/public/v1/games/strider-q14928351/index.json new file mode 100644 index 000000000000..7c90c240460c --- /dev/null +++ b/site/public/v1/games/strider-q14928351/index.json @@ -0,0 +1,36 @@ +{ + "id": 139194, + "slug": "strider-q14928351", + "name": "Strider", + "release_date": "2014-02-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 4", + "PlayStation 3", + "Microsoft Windows" + ], + "genres": [ + "Metroidvania", + "cyberpunk video game" + ], + "stores": [], + "developers": [ + "Double Helix Games" + ], + "publishers": [ + "Capcom" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q14928351" + ], + "created_at": "2026-07-10T10:10:41.383533", + "updated_at": "2026-07-10T10:10:41.383533", + "url": "/v1/games/strider-q14928351" +} diff --git a/site/public/v1/games/strike-out/index.json b/site/public/v1/games/strike-out/index.json new file mode 100644 index 000000000000..e76833894c45 --- /dev/null +++ b/site/public/v1/games/strike-out/index.json @@ -0,0 +1,25 @@ +{ + "id": 139235, + "slug": "strike-out", + "name": "Strike Out!", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q128014915" + ], + "created_at": "2026-07-10T10:10:41.394533", + "updated_at": "2026-07-10T10:10:41.394533", + "url": "/v1/games/strike-out" +} diff --git a/site/public/v1/games/strinova-q131897555/index.json b/site/public/v1/games/strinova-q131897555/index.json new file mode 100644 index 000000000000..b7ea43f1f40c --- /dev/null +++ b/site/public/v1/games/strinova-q131897555/index.json @@ -0,0 +1,25 @@ +{ + "id": 139296, + "slug": "strinova-q131897555", + "name": "Strinova", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131897555" + ], + "created_at": "2026-07-10T10:10:41.412615", + "updated_at": "2026-07-10T10:10:41.412615", + "url": "/v1/games/strinova-q131897555" +} diff --git a/site/public/v1/games/strip-poker-night-at-the-inventory/index.json b/site/public/v1/games/strip-poker-night-at-the-inventory/index.json new file mode 100644 index 000000000000..5e729b2c53fe --- /dev/null +++ b/site/public/v1/games/strip-poker-night-at-the-inventory/index.json @@ -0,0 +1,32 @@ +{ + "id": 139337, + "slug": "strip-poker-night-at-the-inventory", + "name": "Strip Poker Night at the Inventory", + "release_date": "2023-03-14", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "web browser" + ], + "genres": [ + "erotic video game", + "gambling video game", + "crossover fiction", + "LGBT-themed video game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q64372387" + ], + "created_at": "2026-07-10T10:10:41.426629", + "updated_at": "2026-07-10T10:10:41.426629", + "url": "/v1/games/strip-poker-night-at-the-inventory" +} diff --git a/site/public/v1/games/strong-badia-the-free/index.json b/site/public/v1/games/strong-badia-the-free/index.json new file mode 100644 index 000000000000..ed4c63898bfe --- /dev/null +++ b/site/public/v1/games/strong-badia-the-free/index.json @@ -0,0 +1,35 @@ +{ + "id": 139357, + "slug": "strong-badia-the-free", + "name": "Strong Badia the Free", + "release_date": "2008-09-15", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 3", + "Wii", + "Microsoft Windows" + ], + "genres": [ + "graphic adventure game" + ], + "stores": [], + "developers": [ + "Telltale Games" + ], + "publishers": [ + "Telltale Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135448929" + ], + "created_at": "2026-07-10T10:10:41.432593", + "updated_at": "2026-07-10T10:10:41.432593", + "url": "/v1/games/strong-badia-the-free" +} diff --git a/site/public/v1/games/strongest-trail/index.json b/site/public/v1/games/strongest-trail/index.json new file mode 100644 index 000000000000..436af9990f29 --- /dev/null +++ b/site/public/v1/games/strongest-trail/index.json @@ -0,0 +1,25 @@ +{ + "id": 139364, + "slug": "strongest-trail", + "name": "Strongest Trail", + "release_date": "2013-04-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112582111" + ], + "created_at": "2026-07-10T10:10:41.435533", + "updated_at": "2026-07-10T10:10:41.435533", + "url": "/v1/games/strongest-trail" +} diff --git a/site/public/v1/games/stuntfest/index.json b/site/public/v1/games/stuntfest/index.json new file mode 100644 index 000000000000..903be143ffdd --- /dev/null +++ b/site/public/v1/games/stuntfest/index.json @@ -0,0 +1,25 @@ +{ + "id": 139474, + "slug": "stuntfest", + "name": "Stuntfest", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139918001" + ], + "created_at": "2026-07-10T10:10:41.465687", + "updated_at": "2026-07-10T10:10:41.465687", + "url": "/v1/games/stuntfest" +} diff --git a/site/public/v1/games/sturmoviks-over-manchuria/index.json b/site/public/v1/games/sturmoviks-over-manchuria/index.json new file mode 100644 index 000000000000..a34b2a203c5b --- /dev/null +++ b/site/public/v1/games/sturmoviks-over-manchuria/index.json @@ -0,0 +1,31 @@ +{ + "id": 139495, + "slug": "sturmoviks-over-manchuria", + "name": "Sturmoviks over Manchuria", + "release_date": "2006-12-15", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [], + "publishers": [ + "1C Company" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110817205" + ], + "created_at": "2026-07-10T10:10:41.471363", + "updated_at": "2026-07-10T10:10:41.471363", + "url": "/v1/games/sturmoviks-over-manchuria" +} diff --git a/site/public/v1/games/su-25-for-dcs-world/index.json b/site/public/v1/games/su-25-for-dcs-world/index.json new file mode 100644 index 000000000000..065035f25c09 --- /dev/null +++ b/site/public/v1/games/su-25-for-dcs-world/index.json @@ -0,0 +1,31 @@ +{ + "id": 139513, + "slug": "su-25-for-dcs-world", + "name": "Su-25 for DCS World", + "release_date": "2013-07-26", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Eagle Dynamics" + ], + "publishers": [ + "Eagle Dynamics" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097352" + ], + "created_at": "2026-07-10T10:10:41.476320", + "updated_at": "2026-07-10T10:10:41.476320", + "url": "/v1/games/su-25-for-dcs-world" +} diff --git a/site/public/v1/games/su-27-for-dcs-world/index.json b/site/public/v1/games/su-27-for-dcs-world/index.json new file mode 100644 index 000000000000..22d61575c177 --- /dev/null +++ b/site/public/v1/games/su-27-for-dcs-world/index.json @@ -0,0 +1,31 @@ +{ + "id": 139515, + "slug": "su-27-for-dcs-world", + "name": "Su-27 for DCS World", + "release_date": "2014-11-10", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Eagle Dynamics" + ], + "publishers": [ + "Eagle Dynamics" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097375" + ], + "created_at": "2026-07-10T10:10:41.476320", + "updated_at": "2026-07-10T10:10:41.476320", + "url": "/v1/games/su-27-for-dcs-world" +} diff --git a/site/public/v1/games/su-27-the-ultimate-argument-campaign/index.json b/site/public/v1/games/su-27-the-ultimate-argument-campaign/index.json new file mode 100644 index 000000000000..e20ec62d6806 --- /dev/null +++ b/site/public/v1/games/su-27-the-ultimate-argument-campaign/index.json @@ -0,0 +1,31 @@ +{ + "id": 139516, + "slug": "su-27-the-ultimate-argument-campaign", + "name": "Su-27: The Ultimate Argument Campaign", + "release_date": "2015-01-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Eagle Dynamics" + ], + "publishers": [ + "Eagle Dynamics" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097410" + ], + "created_at": "2026-07-10T10:10:41.477319", + "updated_at": "2026-07-10T10:10:41.477319", + "url": "/v1/games/su-27-the-ultimate-argument-campaign" +} diff --git a/site/public/v1/games/su-33-for-dcs-world/index.json b/site/public/v1/games/su-33-for-dcs-world/index.json new file mode 100644 index 000000000000..e198da7c47c3 --- /dev/null +++ b/site/public/v1/games/su-33-for-dcs-world/index.json @@ -0,0 +1,31 @@ +{ + "id": 139517, + "slug": "su-33-for-dcs-world", + "name": "Su-33 for DCS World", + "release_date": "2017-12-15", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Eagle Dynamics" + ], + "publishers": [ + "Eagle Dynamics" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097432" + ], + "created_at": "2026-07-10T10:10:41.477319", + "updated_at": "2026-07-10T10:10:41.477319", + "url": "/v1/games/su-33-for-dcs-world" +} diff --git a/site/public/v1/games/sub-hunter-premium-edition/index.json b/site/public/v1/games/sub-hunter-premium-edition/index.json new file mode 100644 index 000000000000..763a2c1f026a --- /dev/null +++ b/site/public/v1/games/sub-hunter-premium-edition/index.json @@ -0,0 +1,31 @@ +{ + "id": 139530, + "slug": "sub-hunter-premium-edition", + "name": "Sub Hunter (Premium Edition)", + "release_date": "2008-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Commodore 64" + ], + "genres": [], + "stores": [], + "developers": [ + "The New Dimension" + ], + "publishers": [ + "Psytronik Software" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q97657818" + ], + "created_at": "2026-07-10T10:10:41.480391", + "updated_at": "2026-07-10T10:10:41.480391", + "url": "/v1/games/sub-hunter-premium-edition" +} diff --git a/site/public/v1/games/subside/index.json b/site/public/v1/games/subside/index.json new file mode 100644 index 000000000000..51fdd0ad7829 --- /dev/null +++ b/site/public/v1/games/subside/index.json @@ -0,0 +1,27 @@ +{ + "id": 139616, + "slug": "subside", + "name": "Subside", + "release_date": "2024-09-17", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130356820" + ], + "created_at": "2026-07-10T10:10:41.503574", + "updated_at": "2026-07-10T10:10:41.503574", + "url": "/v1/games/subside" +} diff --git a/site/public/v1/games/subwar-2050-the-plot-deepens/index.json b/site/public/v1/games/subwar-2050-the-plot-deepens/index.json new file mode 100644 index 000000000000..189256d7adf9 --- /dev/null +++ b/site/public/v1/games/subwar-2050-the-plot-deepens/index.json @@ -0,0 +1,25 @@ +{ + "id": 139650, + "slug": "subwar-2050-the-plot-deepens", + "name": "Subwar 2050: The Plot Deepens", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110156534" + ], + "created_at": "2026-07-10T10:10:41.513724", + "updated_at": "2026-07-10T10:10:41.513724", + "url": "/v1/games/subwar-2050-the-plot-deepens" +} diff --git a/site/public/v1/games/sudden-strike-gold-edition/index.json b/site/public/v1/games/sudden-strike-gold-edition/index.json new file mode 100644 index 000000000000..a2643b4e3f8a --- /dev/null +++ b/site/public/v1/games/sudden-strike-gold-edition/index.json @@ -0,0 +1,25 @@ +{ + "id": 139746, + "slug": "sudden-strike-gold-edition", + "name": "Sudden Strike: Gold Edition", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122189791" + ], + "created_at": "2026-07-10T10:10:41.539812", + "updated_at": "2026-07-10T10:10:41.539812", + "url": "/v1/games/sudden-strike-gold-edition" +} diff --git a/site/public/v1/games/sudden-strike-gold/index.json b/site/public/v1/games/sudden-strike-gold/index.json new file mode 100644 index 000000000000..0d660799f387 --- /dev/null +++ b/site/public/v1/games/sudden-strike-gold/index.json @@ -0,0 +1,25 @@ +{ + "id": 139747, + "slug": "sudden-strike-gold", + "name": "Sudden Strike: Gold", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122189322" + ], + "created_at": "2026-07-10T10:10:41.539812", + "updated_at": "2026-07-10T10:10:41.539812", + "url": "/v1/games/sudden-strike-gold" +} diff --git a/site/public/v1/games/sudden-strike-ii-gold/index.json b/site/public/v1/games/sudden-strike-ii-gold/index.json new file mode 100644 index 000000000000..7b199a7d1475 --- /dev/null +++ b/site/public/v1/games/sudden-strike-ii-gold/index.json @@ -0,0 +1,25 @@ +{ + "id": 139748, + "slug": "sudden-strike-ii-gold", + "name": "Sudden Strike II Gold", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122189803" + ], + "created_at": "2026-07-10T10:10:41.539812", + "updated_at": "2026-07-10T10:10:41.539812", + "url": "/v1/games/sudden-strike-ii-gold" +} diff --git a/site/public/v1/games/sudden-strike-the-last-stand/index.json b/site/public/v1/games/sudden-strike-the-last-stand/index.json new file mode 100644 index 000000000000..15b715263ecb --- /dev/null +++ b/site/public/v1/games/sudden-strike-the-last-stand/index.json @@ -0,0 +1,33 @@ +{ + "id": 139750, + "slug": "sudden-strike-the-last-stand", + "name": "Sudden Strike: The Last Stand", + "release_date": "2009-03-20", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "real-time strategy" + ], + "stores": [], + "developers": [ + "Fireglow Games" + ], + "publishers": [ + "cdv Software Entertainment" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110817139" + ], + "created_at": "2026-07-10T10:10:41.540787", + "updated_at": "2026-07-10T10:10:41.540787", + "url": "/v1/games/sudden-strike-the-last-stand" +} diff --git a/site/public/v1/games/sudden-strike-total-war/index.json b/site/public/v1/games/sudden-strike-total-war/index.json new file mode 100644 index 000000000000..a69016d43a13 --- /dev/null +++ b/site/public/v1/games/sudden-strike-total-war/index.json @@ -0,0 +1,25 @@ +{ + "id": 139751, + "slug": "sudden-strike-total-war", + "name": "Sudden Strike: Total War", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122189385" + ], + "created_at": "2026-07-10T10:10:41.540787", + "updated_at": "2026-07-10T10:10:41.540787", + "url": "/v1/games/sudden-strike-total-war" +} diff --git a/site/public/v1/games/sudocats-paper/index.json b/site/public/v1/games/sudocats-paper/index.json new file mode 100644 index 000000000000..d8b4bc993c60 --- /dev/null +++ b/site/public/v1/games/sudocats-paper/index.json @@ -0,0 +1,31 @@ +{ + "id": 139759, + "slug": "sudocats-paper", + "name": "Sudocats Paper", + "release_date": "2022-04-11", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Devcats" + ], + "publishers": [ + "Devcats" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117713309" + ], + "created_at": "2026-07-10T10:10:41.542820", + "updated_at": "2026-07-10T10:10:41.542820", + "url": "/v1/games/sudocats-paper" +} diff --git a/site/public/v1/games/sudoku-and-3-puzzles/index.json b/site/public/v1/games/sudoku-and-3-puzzles/index.json new file mode 100644 index 000000000000..6c30fe914ab7 --- /dev/null +++ b/site/public/v1/games/sudoku-and-3-puzzles/index.json @@ -0,0 +1,27 @@ +{ + "id": 139766, + "slug": "sudoku-and-3-puzzles", + "name": "Sudoku and 3 Puzzles", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Nintendo 3DS" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17201971" + ], + "created_at": "2026-07-10T10:10:41.544833", + "updated_at": "2026-07-10T10:10:41.544833", + "url": "/v1/games/sudoku-and-3-puzzles" +} diff --git a/site/public/v1/games/suicide-guy-bundle/index.json b/site/public/v1/games/suicide-guy-bundle/index.json new file mode 100644 index 000000000000..62dcec26d4e1 --- /dev/null +++ b/site/public/v1/games/suicide-guy-bundle/index.json @@ -0,0 +1,29 @@ +{ + "id": 139857, + "slug": "suicide-guy-bundle", + "name": "Suicide Guy Bundle", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 4" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Sony Interactive Entertainment" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q128303425" + ], + "created_at": "2026-07-10T10:10:41.569470", + "updated_at": "2026-07-10T10:10:41.569470", + "url": "/v1/games/suicide-guy-bundle" +} diff --git a/site/public/v1/games/suicide-guy-collection/index.json b/site/public/v1/games/suicide-guy-collection/index.json new file mode 100644 index 000000000000..a50eed09af10 --- /dev/null +++ b/site/public/v1/games/suicide-guy-collection/index.json @@ -0,0 +1,27 @@ +{ + "id": 139858, + "slug": "suicide-guy-collection", + "name": "Suicide Guy Collection", + "release_date": "2020-12-03", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Nintendo" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q128301831" + ], + "created_at": "2026-07-10T10:10:41.569470", + "updated_at": "2026-07-10T10:10:41.569470", + "url": "/v1/games/suicide-guy-collection" +} diff --git a/site/public/v1/games/suikoden-i-ii/index.json b/site/public/v1/games/suikoden-i-ii/index.json new file mode 100644 index 000000000000..a0bad7e32bc0 --- /dev/null +++ b/site/public/v1/games/suikoden-i-ii/index.json @@ -0,0 +1,31 @@ +{ + "id": 139886, + "slug": "suikoden-i-ii", + "name": "Suikoden I & II", + "release_date": "2006-02-23", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation Portable" + ], + "genres": [ + "role-playing video game" + ], + "stores": [], + "developers": [ + "Konami" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5533572" + ], + "created_at": "2026-07-10T10:10:41.577591", + "updated_at": "2026-07-10T10:10:41.577591", + "url": "/v1/games/suikoden-i-ii" +} diff --git a/site/public/v1/games/sundae-shot/index.json b/site/public/v1/games/sundae-shot/index.json new file mode 100644 index 000000000000..5c95813fdf56 --- /dev/null +++ b/site/public/v1/games/sundae-shot/index.json @@ -0,0 +1,25 @@ +{ + "id": 140159, + "slug": "sundae-shot", + "name": "Sundae Shot", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q128014916" + ], + "created_at": "2026-07-10T10:10:41.651549", + "updated_at": "2026-07-10T10:10:41.651549", + "url": "/v1/games/sundae-shot" +} diff --git a/site/public/v1/games/sundered-eldritch-edition/index.json b/site/public/v1/games/sundered-eldritch-edition/index.json new file mode 100644 index 000000000000..716ef7a2714d --- /dev/null +++ b/site/public/v1/games/sundered-eldritch-edition/index.json @@ -0,0 +1,31 @@ +{ + "id": 140168, + "slug": "sundered-eldritch-edition", + "name": "Sundered: Eldritch Edition", + "release_date": "2018-12-21", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "Metroidvania" + ], + "stores": [], + "developers": [ + "Thunder Lotus Games" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136720919" + ], + "created_at": "2026-07-10T10:10:41.653575", + "updated_at": "2026-07-10T10:10:41.653575", + "url": "/v1/games/sundered-eldritch-edition" +} diff --git a/site/public/v1/games/sunless-sea-zubmariner/index.json b/site/public/v1/games/sunless-sea-zubmariner/index.json new file mode 100644 index 000000000000..ee417552763e --- /dev/null +++ b/site/public/v1/games/sunless-sea-zubmariner/index.json @@ -0,0 +1,35 @@ +{ + "id": 140199, + "slug": "sunless-sea-zubmariner", + "name": "Sunless Sea: Zubmariner", + "release_date": "2016-10-11", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 4", + "iOS", + "macOS", + "Microsoft Windows" + ], + "genres": [ + "adventure video game", + "roguelike" + ], + "stores": [], + "developers": [], + "publishers": [ + "Failbetter Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136522336" + ], + "created_at": "2026-07-10T10:10:41.661585", + "updated_at": "2026-07-10T10:10:41.661585", + "url": "/v1/games/sunless-sea-zubmariner" +} diff --git a/site/public/v1/games/sunset-overdrive-deluxe-edition/index.json b/site/public/v1/games/sunset-overdrive-deluxe-edition/index.json new file mode 100644 index 000000000000..8c5238aec36c --- /dev/null +++ b/site/public/v1/games/sunset-overdrive-deluxe-edition/index.json @@ -0,0 +1,25 @@ +{ + "id": 140266, + "slug": "sunset-overdrive-deluxe-edition", + "name": "Sunset Overdrive Deluxe Edition", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q92204160" + ], + "created_at": "2026-07-10T10:10:41.679380", + "updated_at": "2026-07-10T10:10:41.679380", + "url": "/v1/games/sunset-overdrive-deluxe-edition" +} diff --git a/site/public/v1/games/super-bomberman-collection/index.json b/site/public/v1/games/super-bomberman-collection/index.json new file mode 100644 index 000000000000..22d6ab67d3ab --- /dev/null +++ b/site/public/v1/games/super-bomberman-collection/index.json @@ -0,0 +1,31 @@ +{ + "id": 140417, + "slug": "super-bomberman-collection", + "name": "Super Bomberman Collection", + "release_date": "2026-02-05", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Red Art Games" + ], + "publishers": [ + "Konami" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138018343" + ], + "created_at": "2026-07-10T10:10:41.719291", + "updated_at": "2026-07-10T10:10:41.719291", + "url": "/v1/games/super-bomberman-collection" +} diff --git a/site/public/v1/games/super-brawl-showdown/index.json b/site/public/v1/games/super-brawl-showdown/index.json new file mode 100644 index 000000000000..a763a44f9e3a --- /dev/null +++ b/site/public/v1/games/super-brawl-showdown/index.json @@ -0,0 +1,25 @@ +{ + "id": 140442, + "slug": "super-brawl-showdown", + "name": "Super Brawl Showdown!", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q129352825" + ], + "created_at": "2026-07-10T10:10:41.726278", + "updated_at": "2026-07-10T10:10:41.726278", + "url": "/v1/games/super-brawl-showdown" +} diff --git a/site/public/v1/games/super-frog/index.json b/site/public/v1/games/super-frog/index.json new file mode 100644 index 000000000000..c3f077d290fa --- /dev/null +++ b/site/public/v1/games/super-frog/index.json @@ -0,0 +1,27 @@ +{ + "id": 140659, + "slug": "super-frog", + "name": "Super Frog", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Sega" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122783729" + ], + "created_at": "2026-07-10T10:10:41.807012", + "updated_at": "2026-07-10T10:10:41.807012", + "url": "/v1/games/super-frog" +} diff --git a/site/public/v1/games/super-gravitron/index.json b/site/public/v1/games/super-gravitron/index.json new file mode 100644 index 000000000000..6cd9f0cd4b19 --- /dev/null +++ b/site/public/v1/games/super-gravitron/index.json @@ -0,0 +1,25 @@ +{ + "id": 140703, + "slug": "super-gravitron", + "name": "Super Gravitron", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122731770" + ], + "created_at": "2026-07-10T10:10:41.817014", + "updated_at": "2026-07-10T10:10:41.817014", + "url": "/v1/games/super-gravitron" +} diff --git a/site/public/v1/games/super-house-of-dead-ninjas-true-ninja-pack/index.json b/site/public/v1/games/super-house-of-dead-ninjas-true-ninja-pack/index.json new file mode 100644 index 000000000000..41c82a54b208 --- /dev/null +++ b/site/public/v1/games/super-house-of-dead-ninjas-true-ninja-pack/index.json @@ -0,0 +1,27 @@ +{ + "id": 140740, + "slug": "super-house-of-dead-ninjas-true-ninja-pack", + "name": "Super House of Dead Ninjas: True Ninja Pack", + "release_date": "2013-08-06", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116163838" + ], + "created_at": "2026-07-10T10:10:41.830012", + "updated_at": "2026-07-10T10:10:41.831012", + "url": "/v1/games/super-house-of-dead-ninjas-true-ninja-pack" +} diff --git a/site/public/v1/games/super-mario-128/index.json b/site/public/v1/games/super-mario-128/index.json new file mode 100644 index 000000000000..2835523d40a3 --- /dev/null +++ b/site/public/v1/games/super-mario-128/index.json @@ -0,0 +1,35 @@ +{ + "id": 140850, + "slug": "super-mario-128", + "name": "Super Mario 128", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Nintendo GameCube", + "Wii" + ], + "genres": [ + "adventure video game", + "platformer" + ], + "stores": [], + "developers": [ + "Nintendo Entertainment Analysis & Development" + ], + "publishers": [ + "Nintendo" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7642571" + ], + "created_at": "2026-07-10T10:10:41.860175", + "updated_at": "2026-07-10T10:10:41.860175", + "url": "/v1/games/super-mario-128" +} diff --git a/site/public/v1/games/super-mario-3d-all-stars/index.json b/site/public/v1/games/super-mario-3d-all-stars/index.json new file mode 100644 index 000000000000..b1e44e5c76d0 --- /dev/null +++ b/site/public/v1/games/super-mario-3d-all-stars/index.json @@ -0,0 +1,31 @@ +{ + "id": 140851, + "slug": "super-mario-3d-all-stars", + "name": "Super Mario 3D All-Stars", + "release_date": "2020-09-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "platformer" + ], + "stores": [], + "developers": [ + "Nintendo" + ], + "publishers": [ + "Nintendo" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q98844677" + ], + "created_at": "2026-07-10T10:10:41.860175", + "updated_at": "2026-07-10T10:10:41.860175", + "url": "/v1/games/super-mario-3d-all-stars" +} diff --git a/site/public/v1/games/super-mario-64-2/index.json b/site/public/v1/games/super-mario-64-2/index.json new file mode 100644 index 000000000000..77af8332406e --- /dev/null +++ b/site/public/v1/games/super-mario-64-2/index.json @@ -0,0 +1,25 @@ +{ + "id": 140856, + "slug": "super-mario-64-2", + "name": "Super Mario 64 2", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17630799" + ], + "created_at": "2026-07-10T10:10:41.861173", + "updated_at": "2026-07-10T10:10:41.861173", + "url": "/v1/games/super-mario-64-2" +} diff --git a/site/public/v1/games/super-mario-all-stars-25th-anniversary-edition/index.json b/site/public/v1/games/super-mario-all-stars-25th-anniversary-edition/index.json new file mode 100644 index 000000000000..47e24ed17c4b --- /dev/null +++ b/site/public/v1/games/super-mario-all-stars-25th-anniversary-edition/index.json @@ -0,0 +1,33 @@ +{ + "id": 140862, + "slug": "super-mario-all-stars-25th-anniversary-edition", + "name": "Super Mario All-Stars 25th Anniversary Edition", + "release_date": "2010-10-21", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Wii" + ], + "genres": [ + "platformer" + ], + "stores": [], + "developers": [ + "Nintendo Entertainment Analysis & Development" + ], + "publishers": [ + "Nintendo" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6135714" + ], + "created_at": "2026-07-10T10:10:41.862208", + "updated_at": "2026-07-10T10:10:41.863166", + "url": "/v1/games/super-mario-all-stars-25th-anniversary-edition" +} diff --git a/site/public/v1/games/super-mario-all-stars-super-mario-world/index.json b/site/public/v1/games/super-mario-all-stars-super-mario-world/index.json new file mode 100644 index 000000000000..fc6d776a2a03 --- /dev/null +++ b/site/public/v1/games/super-mario-all-stars-super-mario-world/index.json @@ -0,0 +1,27 @@ +{ + "id": 140863, + "slug": "super-mario-all-stars-super-mario-world", + "name": "Super Mario All-Stars + Super Mario World", + "release_date": "1994-12-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Super Nintendo Entertainment System" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q104889895" + ], + "created_at": "2026-07-10T10:10:41.863166", + "updated_at": "2026-07-10T10:10:41.863166", + "url": "/v1/games/super-mario-all-stars-super-mario-world" +} diff --git a/site/public/v1/games/super-mario-bros-duck-hunt-world-class-track-meet/index.json b/site/public/v1/games/super-mario-bros-duck-hunt-world-class-track-meet/index.json new file mode 100644 index 000000000000..2e4b1fdaa72f --- /dev/null +++ b/site/public/v1/games/super-mario-bros-duck-hunt-world-class-track-meet/index.json @@ -0,0 +1,31 @@ +{ + "id": 140871, + "slug": "super-mario-bros-duck-hunt-world-class-track-meet", + "name": "Super Mario Bros. / Duck Hunt / World Class Track Meet", + "release_date": "1988-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Nintendo Entertainment System" + ], + "genres": [], + "stores": [], + "developers": [ + "Nintendo" + ], + "publishers": [ + "Nintendo" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q97137162" + ], + "created_at": "2026-07-10T10:10:41.865098", + "updated_at": "2026-07-10T10:10:41.865098", + "url": "/v1/games/super-mario-bros-duck-hunt-world-class-track-meet" +} diff --git a/site/public/v1/games/super-mario-bros-duck-hunt/index.json b/site/public/v1/games/super-mario-bros-duck-hunt/index.json new file mode 100644 index 000000000000..2e3c6c2caf54 --- /dev/null +++ b/site/public/v1/games/super-mario-bros-duck-hunt/index.json @@ -0,0 +1,31 @@ +{ + "id": 140872, + "slug": "super-mario-bros-duck-hunt", + "name": "Super Mario Bros./Duck Hunt", + "release_date": "1986-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Nintendo Entertainment System" + ], + "genres": [], + "stores": [], + "developers": [ + "Nintendo" + ], + "publishers": [ + "Nintendo" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1955712" + ], + "created_at": "2026-07-10T10:10:41.865098", + "updated_at": "2026-07-10T10:10:41.865098", + "url": "/v1/games/super-mario-bros-duck-hunt" +} diff --git a/site/public/v1/games/super-mario-bros-tetris-nintendo-world-cup/index.json b/site/public/v1/games/super-mario-bros-tetris-nintendo-world-cup/index.json new file mode 100644 index 000000000000..9b523f0bbc1b --- /dev/null +++ b/site/public/v1/games/super-mario-bros-tetris-nintendo-world-cup/index.json @@ -0,0 +1,33 @@ +{ + "id": 140882, + "slug": "super-mario-bros-tetris-nintendo-world-cup", + "name": "Super Mario Bros./Tetris/Nintendo World Cup", + "release_date": "1988-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Nintendo Entertainment System" + ], + "genres": [ + "platformer" + ], + "stores": [], + "developers": [ + "Nintendo" + ], + "publishers": [ + "Nintendo" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3504227" + ], + "created_at": "2026-07-10T10:10:41.867103", + "updated_at": "2026-07-10T10:10:41.867103", + "url": "/v1/games/super-mario-bros-tetris-nintendo-world-cup" +} diff --git a/site/public/v1/games/super-mario-s-wacky-worlds/index.json b/site/public/v1/games/super-mario-s-wacky-worlds/index.json new file mode 100644 index 000000000000..d379c0306741 --- /dev/null +++ b/site/public/v1/games/super-mario-s-wacky-worlds/index.json @@ -0,0 +1,32 @@ +{ + "id": 140902, + "slug": "super-mario-s-wacky-worlds", + "name": "Super Mario's Wacky Worlds", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Philips CD-i" + ], + "genres": [ + "adventure video game", + "platformer" + ], + "stores": [], + "developers": [], + "publishers": [ + "Koninklijke Philips NV" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7642568" + ], + "created_at": "2026-07-10T10:10:41.871741", + "updated_at": "2026-07-10T10:10:41.871741", + "url": "/v1/games/super-mario-s-wacky-worlds" +} diff --git a/site/public/v1/games/super-mario-spikers/index.json b/site/public/v1/games/super-mario-spikers/index.json new file mode 100644 index 000000000000..0428ecb194b7 --- /dev/null +++ b/site/public/v1/games/super-mario-spikers/index.json @@ -0,0 +1,25 @@ +{ + "id": 140903, + "slug": "super-mario-spikers", + "name": "Super Mario Spikers", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18386428" + ], + "created_at": "2026-07-10T10:10:41.871741", + "updated_at": "2026-07-10T10:10:41.871741", + "url": "/v1/games/super-mario-spikers" +} diff --git a/site/public/v1/games/super-nintendo-entertainment-system-nintendo-classics/index.json b/site/public/v1/games/super-nintendo-entertainment-system-nintendo-classics/index.json new file mode 100644 index 000000000000..7331638269e6 --- /dev/null +++ b/site/public/v1/games/super-nintendo-entertainment-system-nintendo-classics/index.json @@ -0,0 +1,27 @@ +{ + "id": 141006, + "slug": "super-nintendo-entertainment-system-nintendo-classics", + "name": "Super Nintendo Entertainment System – Nintendo Classics", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Nintendo" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q85871945" + ], + "created_at": "2026-07-10T10:10:41.903664", + "updated_at": "2026-07-10T10:10:41.903664", + "url": "/v1/games/super-nintendo-entertainment-system-nintendo-classics" +} diff --git a/site/public/v1/games/super-postal/index.json b/site/public/v1/games/super-postal/index.json new file mode 100644 index 000000000000..95c97b13bf4a --- /dev/null +++ b/site/public/v1/games/super-postal/index.json @@ -0,0 +1,33 @@ +{ + "id": 141066, + "slug": "super-postal", + "name": "Super Postal", + "release_date": "1998-01-23", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "shoot 'em up" + ], + "stores": [], + "developers": [ + "Running with Scissors" + ], + "publishers": [ + "Micromouse" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q64007262" + ], + "created_at": "2026-07-10T10:10:41.925883", + "updated_at": "2026-07-10T10:10:41.925883", + "url": "/v1/games/super-postal" +} diff --git a/site/public/v1/games/super-real-mahjong-p7/index.json b/site/public/v1/games/super-real-mahjong-p7/index.json new file mode 100644 index 000000000000..42b78da7690b --- /dev/null +++ b/site/public/v1/games/super-real-mahjong-p7/index.json @@ -0,0 +1,27 @@ +{ + "id": 141113, + "slug": "super-real-mahjong-p7", + "name": "Super Real Mahjong P7", + "release_date": "1997-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "mahjong video game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134903053" + ], + "created_at": "2026-07-10T10:10:41.938899", + "updated_at": "2026-07-10T10:10:41.938899", + "url": "/v1/games/super-real-mahjong-p7" +} diff --git a/site/public/v1/games/super-real-mahjong-pi/index.json b/site/public/v1/games/super-real-mahjong-pi/index.json new file mode 100644 index 000000000000..fcb4ff78e185 --- /dev/null +++ b/site/public/v1/games/super-real-mahjong-pi/index.json @@ -0,0 +1,25 @@ +{ + "id": 141114, + "slug": "super-real-mahjong-pi", + "name": "Super Real Mahjong PI", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134879100" + ], + "created_at": "2026-07-10T10:10:41.938899", + "updated_at": "2026-07-10T10:10:41.938899", + "url": "/v1/games/super-real-mahjong-pi" +} diff --git a/site/public/v1/games/super-real-mahjong-pii/index.json b/site/public/v1/games/super-real-mahjong-pii/index.json new file mode 100644 index 000000000000..64aecf9d0557 --- /dev/null +++ b/site/public/v1/games/super-real-mahjong-pii/index.json @@ -0,0 +1,27 @@ +{ + "id": 141115, + "slug": "super-real-mahjong-pii", + "name": "Super Real Mahjong PII", + "release_date": "1987-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "mahjong video game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134890787" + ], + "created_at": "2026-07-10T10:10:41.939880", + "updated_at": "2026-07-10T10:10:41.939880", + "url": "/v1/games/super-real-mahjong-pii" +} diff --git a/site/public/v1/games/super-real-mahjong-piii/index.json b/site/public/v1/games/super-real-mahjong-piii/index.json new file mode 100644 index 000000000000..3a13b3466b12 --- /dev/null +++ b/site/public/v1/games/super-real-mahjong-piii/index.json @@ -0,0 +1,27 @@ +{ + "id": 141116, + "slug": "super-real-mahjong-piii", + "name": "Super Real Mahjong PIII", + "release_date": "1988-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "mahjong video game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134902582" + ], + "created_at": "2026-07-10T10:10:41.939880", + "updated_at": "2026-07-10T10:10:41.939880", + "url": "/v1/games/super-real-mahjong-piii" +} diff --git a/site/public/v1/games/super-real-mahjong-piv/index.json b/site/public/v1/games/super-real-mahjong-piv/index.json new file mode 100644 index 000000000000..0b6dac421ce4 --- /dev/null +++ b/site/public/v1/games/super-real-mahjong-piv/index.json @@ -0,0 +1,29 @@ +{ + "id": 141117, + "slug": "super-real-mahjong-piv", + "name": "Super Real Mahjong PIV", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "mahjong video game" + ], + "stores": [], + "developers": [ + "SETA Corporation" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109313156" + ], + "created_at": "2026-07-10T10:10:41.939880", + "updated_at": "2026-07-10T10:10:41.939880", + "url": "/v1/games/super-real-mahjong-piv" +} diff --git a/site/public/v1/games/super-real-mahjong-pv/index.json b/site/public/v1/games/super-real-mahjong-pv/index.json new file mode 100644 index 000000000000..4367b94f519b --- /dev/null +++ b/site/public/v1/games/super-real-mahjong-pv/index.json @@ -0,0 +1,29 @@ +{ + "id": 141118, + "slug": "super-real-mahjong-pv", + "name": "Super Real Mahjong PV", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "mahjong video game" + ], + "stores": [], + "developers": [ + "SETA Corporation" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q85878019" + ], + "created_at": "2026-07-10T10:10:41.939880", + "updated_at": "2026-07-10T10:10:41.939880", + "url": "/v1/games/super-real-mahjong-pv" +} diff --git a/site/public/v1/games/super-real-mahjong-pvi/index.json b/site/public/v1/games/super-real-mahjong-pvi/index.json new file mode 100644 index 000000000000..0c075806f4c5 --- /dev/null +++ b/site/public/v1/games/super-real-mahjong-pvi/index.json @@ -0,0 +1,29 @@ +{ + "id": 141119, + "slug": "super-real-mahjong-pvi", + "name": "Super Real Mahjong PVI", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "mahjong video game" + ], + "stores": [], + "developers": [ + "SETA Corporation" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q85878023" + ], + "created_at": "2026-07-10T10:10:41.940946", + "updated_at": "2026-07-10T10:10:41.940946", + "url": "/v1/games/super-real-mahjong-pvi" +} diff --git a/site/public/v1/games/super-real-mahjong/index.json b/site/public/v1/games/super-real-mahjong/index.json new file mode 100644 index 000000000000..065f4a2f6a49 --- /dev/null +++ b/site/public/v1/games/super-real-mahjong/index.json @@ -0,0 +1,25 @@ +{ + "id": 141120, + "slug": "super-real-mahjong", + "name": "Super Real Mahjong", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11313911" + ], + "created_at": "2026-07-10T10:10:41.940946", + "updated_at": "2026-07-10T10:10:41.940946", + "url": "/v1/games/super-real-mahjong" +} diff --git a/site/public/v1/games/super-stickman-golf-3-q107452141/index.json b/site/public/v1/games/super-stickman-golf-3-q107452141/index.json new file mode 100644 index 000000000000..841982776537 --- /dev/null +++ b/site/public/v1/games/super-stickman-golf-3-q107452141/index.json @@ -0,0 +1,35 @@ +{ + "id": 141348, + "slug": "super-stickman-golf-3-q107452141", + "name": "Super Stickman Golf 3+", + "release_date": "2021-08-06", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "iPadOS", + "iOS", + "macOS" + ], + "genres": [ + "golf video game" + ], + "stores": [], + "developers": [ + "Noodlecake" + ], + "publishers": [ + "Noodlecake" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107452141" + ], + "created_at": "2026-07-10T10:10:42.000648", + "updated_at": "2026-07-10T10:10:42.000648", + "url": "/v1/games/super-stickman-golf-3-q107452141" +} diff --git a/site/public/v1/games/super-toy-cars-collection/index.json b/site/public/v1/games/super-toy-cars-collection/index.json new file mode 100644 index 000000000000..3fe860327a82 --- /dev/null +++ b/site/public/v1/games/super-toy-cars-collection/index.json @@ -0,0 +1,31 @@ +{ + "id": 141409, + "slug": "super-toy-cars-collection", + "name": "Super Toy Cars Collection", + "release_date": "2022-06-03", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S" + ], + "genres": [], + "stores": [], + "developers": [ + "Eclipse Games" + ], + "publishers": [ + "Eclipse Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112987852" + ], + "created_at": "2026-07-10T10:10:42.016448", + "updated_at": "2026-07-10T10:10:42.016448", + "url": "/v1/games/super-toy-cars-collection" +} diff --git a/site/public/v1/games/support-victory-skin-pack/index.json b/site/public/v1/games/support-victory-skin-pack/index.json new file mode 100644 index 000000000000..643fa5f63f01 --- /dev/null +++ b/site/public/v1/games/support-victory-skin-pack/index.json @@ -0,0 +1,32 @@ +{ + "id": 141705, + "slug": "support-victory-skin-pack", + "name": "Support Victory Skin Pack", + "release_date": "2015-07-14", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "science fiction video game" + ], + "stores": [], + "developers": [], + "publishers": [ + "2K" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124636195" + ], + "created_at": "2026-07-10T10:10:42.096545", + "updated_at": "2026-07-10T10:10:42.096545", + "url": "/v1/games/support-victory-skin-pack" +} diff --git a/site/public/v1/games/supraland-crash/index.json b/site/public/v1/games/supraland-crash/index.json new file mode 100644 index 000000000000..05ea540da9e2 --- /dev/null +++ b/site/public/v1/games/supraland-crash/index.json @@ -0,0 +1,31 @@ +{ + "id": 141712, + "slug": "supraland-crash", + "name": "Supraland Crash", + "release_date": "2020-07-03", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Supra Games" + ], + "publishers": [ + "Supra Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124541022" + ], + "created_at": "2026-07-10T10:10:42.098544", + "updated_at": "2026-07-10T10:10:42.098544", + "url": "/v1/games/supraland-crash" +} diff --git a/site/public/v1/games/supreme-ruler-trump-rising/index.json b/site/public/v1/games/supreme-ruler-trump-rising/index.json new file mode 100644 index 000000000000..ac387e3046a5 --- /dev/null +++ b/site/public/v1/games/supreme-ruler-trump-rising/index.json @@ -0,0 +1,25 @@ +{ + "id": 141744, + "slug": "supreme-ruler-trump-rising", + "name": "Supreme Ruler: Trump Rising", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107975139" + ], + "created_at": "2026-07-10T10:10:42.106548", + "updated_at": "2026-07-10T10:10:42.106548", + "url": "/v1/games/supreme-ruler-trump-rising" +} diff --git a/site/public/v1/games/surface-tension-q124370513/index.json b/site/public/v1/games/surface-tension-q124370513/index.json new file mode 100644 index 000000000000..508e1543225c --- /dev/null +++ b/site/public/v1/games/surface-tension-q124370513/index.json @@ -0,0 +1,25 @@ +{ + "id": 141778, + "slug": "surface-tension-q124370513", + "name": "Surface Tension", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124370513" + ], + "created_at": "2026-07-10T10:10:42.114548", + "updated_at": "2026-07-10T10:10:42.114548", + "url": "/v1/games/surface-tension-q124370513" +} diff --git a/site/public/v1/games/surgeon-simulator-anniversary-edition/index.json b/site/public/v1/games/surgeon-simulator-anniversary-edition/index.json new file mode 100644 index 000000000000..a5e8cf9e21b5 --- /dev/null +++ b/site/public/v1/games/surgeon-simulator-anniversary-edition/index.json @@ -0,0 +1,25 @@ +{ + "id": 141802, + "slug": "surgeon-simulator-anniversary-edition", + "name": "Surgeon Simulator: Anniversary Edition", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107424315" + ], + "created_at": "2026-07-10T10:10:42.121544", + "updated_at": "2026-07-10T10:10:42.121544", + "url": "/v1/games/surgeon-simulator-anniversary-edition" +} diff --git a/site/public/v1/games/survivor-q7647257/index.json b/site/public/v1/games/survivor-q7647257/index.json new file mode 100644 index 000000000000..fd4793f9d233 --- /dev/null +++ b/site/public/v1/games/survivor-q7647257/index.json @@ -0,0 +1,32 @@ +{ + "id": 142056, + "slug": "survivor-q7647257", + "name": "Survivor", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 3", + "Microsoft Windows" + ], + "genres": [ + "action game" + ], + "stores": [], + "developers": [ + "Replay Studios" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7647257" + ], + "created_at": "2026-07-10T10:10:42.192129", + "updated_at": "2026-07-10T10:10:42.192129", + "url": "/v1/games/survivor-q7647257" +} diff --git a/site/public/v1/games/swargame/index.json b/site/public/v1/games/swargame/index.json new file mode 100644 index 000000000000..ae10a63413f9 --- /dev/null +++ b/site/public/v1/games/swargame/index.json @@ -0,0 +1,27 @@ +{ + "id": 142222, + "slug": "swargame", + "name": "Swargame", + "release_date": "2007-08-14", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "massively multiplayer online role-playing game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q12741771" + ], + "created_at": "2026-07-10T10:10:42.241472", + "updated_at": "2026-07-10T10:10:42.241472", + "url": "/v1/games/swargame" +} diff --git a/site/public/v1/games/swat-3-close-quarters-battle-elite-edition/index.json b/site/public/v1/games/swat-3-close-quarters-battle-elite-edition/index.json new file mode 100644 index 000000000000..0d37e2ea495b --- /dev/null +++ b/site/public/v1/games/swat-3-close-quarters-battle-elite-edition/index.json @@ -0,0 +1,27 @@ +{ + "id": 142256, + "slug": "swat-3-close-quarters-battle-elite-edition", + "name": "SWAT 3: Close Quarters Battle: Elite Edition", + "release_date": "2000-10-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110156372" + ], + "created_at": "2026-07-10T10:10:42.251468", + "updated_at": "2026-07-10T10:10:42.251468", + "url": "/v1/games/swat-3-close-quarters-battle-elite-edition" +} diff --git a/site/public/v1/games/swat-3-tactical-game-of-the-year-edition/index.json b/site/public/v1/games/swat-3-tactical-game-of-the-year-edition/index.json new file mode 100644 index 000000000000..c1dbd738a040 --- /dev/null +++ b/site/public/v1/games/swat-3-tactical-game-of-the-year-edition/index.json @@ -0,0 +1,27 @@ +{ + "id": 142258, + "slug": "swat-3-tactical-game-of-the-year-edition", + "name": "SWAT 3: Tactical Game of the Year Edition", + "release_date": "1999-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126942408" + ], + "created_at": "2026-07-10T10:10:42.251468", + "updated_at": "2026-07-10T10:10:42.251468", + "url": "/v1/games/swat-3-tactical-game-of-the-year-edition" +} diff --git a/site/public/v1/games/swat-4-the-stetchkov-syndicate/index.json b/site/public/v1/games/swat-4-the-stetchkov-syndicate/index.json new file mode 100644 index 000000000000..b29363a7bd35 --- /dev/null +++ b/site/public/v1/games/swat-4-the-stetchkov-syndicate/index.json @@ -0,0 +1,33 @@ +{ + "id": 142259, + "slug": "swat-4-the-stetchkov-syndicate", + "name": "SWAT 4: The Stetchkov Syndicate", + "release_date": "2006-03-10", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "tactical shooter" + ], + "stores": [], + "developers": [ + "Irrational Games" + ], + "publishers": [ + "Vivendi" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2718380" + ], + "created_at": "2026-07-10T10:10:42.251468", + "updated_at": "2026-07-10T10:10:42.251468", + "url": "/v1/games/swat-4-the-stetchkov-syndicate" +} diff --git a/site/public/v1/games/swoon-exe/index.json b/site/public/v1/games/swoon-exe/index.json new file mode 100644 index 000000000000..5d886f6162b0 --- /dev/null +++ b/site/public/v1/games/swoon-exe/index.json @@ -0,0 +1,25 @@ +{ + "id": 142515, + "slug": "swoon-exe", + "name": "Swoon.exe", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136700594" + ], + "created_at": "2026-07-10T10:10:42.319995", + "updated_at": "2026-07-10T10:10:42.319995", + "url": "/v1/games/swoon-exe" +} diff --git a/site/public/v1/games/sword-and-magic/index.json b/site/public/v1/games/sword-and-magic/index.json new file mode 100644 index 000000000000..90146170458a --- /dev/null +++ b/site/public/v1/games/sword-and-magic/index.json @@ -0,0 +1,25 @@ +{ + "id": 142524, + "slug": "sword-and-magic", + "name": "Sword And Magic", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126186125" + ], + "created_at": "2026-07-10T10:10:42.323055", + "updated_at": "2026-07-10T10:10:42.323055", + "url": "/v1/games/sword-and-magic" +} diff --git a/site/public/v1/games/sword-of-the-stars-argos-naval-yard/index.json b/site/public/v1/games/sword-of-the-stars-argos-naval-yard/index.json new file mode 100644 index 000000000000..80153e088a6d --- /dev/null +++ b/site/public/v1/games/sword-of-the-stars-argos-naval-yard/index.json @@ -0,0 +1,25 @@ +{ + "id": 142595, + "slug": "sword-of-the-stars-argos-naval-yard", + "name": "Sword of the Stars: Argos Naval Yard", + "release_date": "2009-06-17", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110154816" + ], + "created_at": "2026-07-10T10:10:42.340041", + "updated_at": "2026-07-10T10:10:42.340041", + "url": "/v1/games/sword-of-the-stars-argos-naval-yard" +} diff --git a/site/public/v1/games/sword-of-the-stars-born-of-blood/index.json b/site/public/v1/games/sword-of-the-stars-born-of-blood/index.json new file mode 100644 index 000000000000..99b4b72d429c --- /dev/null +++ b/site/public/v1/games/sword-of-the-stars-born-of-blood/index.json @@ -0,0 +1,34 @@ +{ + "id": 142596, + "slug": "sword-of-the-stars-born-of-blood", + "name": "Sword of the Stars: Born of Blood", + "release_date": "2007-06-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "turn-based strategy video game", + "real-time tactics" + ], + "stores": [], + "developers": [ + "Kerberos Productions" + ], + "publishers": [ + "Paradox Interactive" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3506714" + ], + "created_at": "2026-07-10T10:10:42.341076", + "updated_at": "2026-07-10T10:10:42.341076", + "url": "/v1/games/sword-of-the-stars-born-of-blood" +} diff --git a/site/public/v1/games/syndicate-american-revolt/index.json b/site/public/v1/games/syndicate-american-revolt/index.json new file mode 100644 index 000000000000..3c9aaab3fc93 --- /dev/null +++ b/site/public/v1/games/syndicate-american-revolt/index.json @@ -0,0 +1,36 @@ +{ + "id": 142820, + "slug": "syndicate-american-revolt", + "name": "Syndicate: American Revolt", + "release_date": "1993-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "DOS", + "Microsoft Windows" + ], + "genres": [ + "shoot 'em up", + "real-time tactics", + "cyberpunk video game" + ], + "stores": [], + "developers": [ + "Bullfrog Productions" + ], + "publishers": [ + "Electronic Arts" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3979130" + ], + "created_at": "2026-07-10T10:10:42.400299", + "updated_at": "2026-07-10T10:10:42.400299", + "url": "/v1/games/syndicate-american-revolt" +} diff --git a/site/public/v1/games/syndicate-plus/index.json b/site/public/v1/games/syndicate-plus/index.json new file mode 100644 index 000000000000..71fec590df1d --- /dev/null +++ b/site/public/v1/games/syndicate-plus/index.json @@ -0,0 +1,25 @@ +{ + "id": 142822, + "slug": "syndicate-plus", + "name": "Syndicate Plus", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121345120" + ], + "created_at": "2026-07-10T10:10:42.401314", + "updated_at": "2026-07-10T10:10:42.401314", + "url": "/v1/games/syndicate-plus" +} diff --git a/site/public/v1/games/syphon-filter-4/index.json b/site/public/v1/games/syphon-filter-4/index.json new file mode 100644 index 000000000000..bfaf359ff6d2 --- /dev/null +++ b/site/public/v1/games/syphon-filter-4/index.json @@ -0,0 +1,27 @@ +{ + "id": 142910, + "slug": "syphon-filter-4", + "name": "Syphon Filter 4", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 3" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q99542990" + ], + "created_at": "2026-07-10T10:10:42.452234", + "updated_at": "2026-07-10T10:10:42.452234", + "url": "/v1/games/syphon-filter-4" +} diff --git a/site/public/v1/games/system-flaw-q61601987/index.json b/site/public/v1/games/system-flaw-q61601987/index.json new file mode 100644 index 000000000000..8f476e667c6d --- /dev/null +++ b/site/public/v1/games/system-flaw-q61601987/index.json @@ -0,0 +1,29 @@ +{ + "id": 142931, + "slug": "system-flaw-q61601987", + "name": "System Flaw", + "release_date": "2009-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Nintendo DSi" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Storm City Entertainment, Inc." + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q61601987" + ], + "created_at": "2026-07-10T10:10:42.457234", + "updated_at": "2026-07-10T10:10:42.457234", + "url": "/v1/games/system-flaw-q61601987" +} diff --git a/site/public/v1/games/system-shock-3/index.json b/site/public/v1/games/system-shock-3/index.json new file mode 100644 index 000000000000..35e175f70f98 --- /dev/null +++ b/site/public/v1/games/system-shock-3/index.json @@ -0,0 +1,32 @@ +{ + "id": 142947, + "slug": "system-shock-3", + "name": "System Shock 3", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Tencent" + ], + "publishers": [ + "Tencent" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111279541" + ], + "created_at": "2026-07-10T10:10:42.462235", + "updated_at": "2026-07-10T10:10:42.462235", + "url": "/v1/games/system-shock-3" +} diff --git a/site/public/v1/games/t2002/index.json b/site/public/v1/games/t2002/index.json new file mode 100644 index 000000000000..9b4983b9f946 --- /dev/null +++ b/site/public/v1/games/t2002/index.json @@ -0,0 +1,25 @@ +{ + "id": 143015, + "slug": "t2002", + "name": "T2002", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121029451" + ], + "created_at": "2026-07-10T10:10:42.480950", + "updated_at": "2026-07-10T10:10:42.480950", + "url": "/v1/games/t2002" +} diff --git a/site/public/v1/games/taiko-no-tatsujin-rhythmic-adventure-pack/index.json b/site/public/v1/games/taiko-no-tatsujin-rhythmic-adventure-pack/index.json new file mode 100644 index 000000000000..350315b610ba --- /dev/null +++ b/site/public/v1/games/taiko-no-tatsujin-rhythmic-adventure-pack/index.json @@ -0,0 +1,29 @@ +{ + "id": 143240, + "slug": "taiko-no-tatsujin-rhythmic-adventure-pack", + "name": "Taiko no Tatsujin: Rhythmic Adventure Pack", + "release_date": "2020-11-26", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "music video game" + ], + "stores": [], + "developers": [], + "publishers": [ + "Bandai Namco Entertainment" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q99526854" + ], + "created_at": "2026-07-10T10:10:42.580891", + "updated_at": "2026-07-10T10:10:42.580891", + "url": "/v1/games/taiko-no-tatsujin-rhythmic-adventure-pack" +} diff --git a/site/public/v1/games/taimanin-asagi-1-trial/index.json b/site/public/v1/games/taimanin-asagi-1-trial/index.json new file mode 100644 index 000000000000..05a3a8e815b7 --- /dev/null +++ b/site/public/v1/games/taimanin-asagi-1-trial/index.json @@ -0,0 +1,33 @@ +{ + "id": 143297, + "slug": "taimanin-asagi-1-trial", + "name": "Taimanin Asagi 1: Trial", + "release_date": "2019-12-09", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "visual novel" + ], + "stores": [], + "developers": [ + "Lilith" + ], + "publishers": [ + "Infini-Brain Inc." + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122840006" + ], + "created_at": "2026-07-10T10:10:42.633982", + "updated_at": "2026-07-10T10:10:42.633982", + "url": "/v1/games/taimanin-asagi-1-trial" +} diff --git a/site/public/v1/games/taimanin-yukikaze-1-trial/index.json b/site/public/v1/games/taimanin-yukikaze-1-trial/index.json new file mode 100644 index 000000000000..f9fa88bc857e --- /dev/null +++ b/site/public/v1/games/taimanin-yukikaze-1-trial/index.json @@ -0,0 +1,33 @@ +{ + "id": 143311, + "slug": "taimanin-yukikaze-1-trial", + "name": "Taimanin Yukikaze 1: Trial", + "release_date": "2020-07-08", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "visual novel" + ], + "stores": [], + "developers": [ + "Lilith" + ], + "publishers": [ + "Infini-Brain Inc." + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122841011" + ], + "created_at": "2026-07-10T10:10:42.636887", + "updated_at": "2026-07-10T10:10:42.636887", + "url": "/v1/games/taimanin-yukikaze-1-trial" +} diff --git a/site/public/v1/games/taisen-tanto-r-sashissu/index.json b/site/public/v1/games/taisen-tanto-r-sashissu/index.json new file mode 100644 index 000000000000..942a0f735dce --- /dev/null +++ b/site/public/v1/games/taisen-tanto-r-sashissu/index.json @@ -0,0 +1,29 @@ +{ + "id": 143325, + "slug": "taisen-tanto-r-sashissu", + "name": "Taisen Tanto-R Sashissu!!", + "release_date": "1998-02-16", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "tabletop game" + ], + "stores": [], + "developers": [ + "Sega" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16167778" + ], + "created_at": "2026-07-10T10:10:42.640892", + "updated_at": "2026-07-10T10:10:42.640892", + "url": "/v1/games/taisen-tanto-r-sashissu" +} diff --git a/site/public/v1/games/taito-memories-gekan/index.json b/site/public/v1/games/taito-memories-gekan/index.json new file mode 100644 index 000000000000..991ce069ed1c --- /dev/null +++ b/site/public/v1/games/taito-memories-gekan/index.json @@ -0,0 +1,27 @@ +{ + "id": 143341, + "slug": "taito-memories-gekan", + "name": "Taito Memories: Gekan", + "release_date": "2005-08-25", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Taito" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q129177350" + ], + "created_at": "2026-07-10T10:10:42.644892", + "updated_at": "2026-07-10T10:10:42.644892", + "url": "/v1/games/taito-memories-gekan" +} diff --git a/site/public/v1/games/taito-memories-ii-gekan/index.json b/site/public/v1/games/taito-memories-ii-gekan/index.json new file mode 100644 index 000000000000..de63ee6e6e7e --- /dev/null +++ b/site/public/v1/games/taito-memories-ii-gekan/index.json @@ -0,0 +1,27 @@ +{ + "id": 143342, + "slug": "taito-memories-ii-gekan", + "name": "Taito Memories II: Gekan", + "release_date": "2007-03-29", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Taito" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q129178079" + ], + "created_at": "2026-07-10T10:10:42.644892", + "updated_at": "2026-07-10T10:10:42.644892", + "url": "/v1/games/taito-memories-ii-gekan" +} diff --git a/site/public/v1/games/taito-memories-ii-joukan/index.json b/site/public/v1/games/taito-memories-ii-joukan/index.json new file mode 100644 index 000000000000..ff412ec9023e --- /dev/null +++ b/site/public/v1/games/taito-memories-ii-joukan/index.json @@ -0,0 +1,27 @@ +{ + "id": 143343, + "slug": "taito-memories-ii-joukan", + "name": "Taito Memories II: Joukan", + "release_date": "2007-01-25", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Taito" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q129177539" + ], + "created_at": "2026-07-10T10:10:42.644892", + "updated_at": "2026-07-10T10:10:42.644892", + "url": "/v1/games/taito-memories-ii-joukan" +} diff --git a/site/public/v1/games/taito-memories-joukan/index.json b/site/public/v1/games/taito-memories-joukan/index.json new file mode 100644 index 000000000000..5f261d73f9d2 --- /dev/null +++ b/site/public/v1/games/taito-memories-joukan/index.json @@ -0,0 +1,27 @@ +{ + "id": 143344, + "slug": "taito-memories-joukan", + "name": "Taito Memories: Joukan", + "release_date": "2005-07-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Taito" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q129177036" + ], + "created_at": "2026-07-10T10:10:42.645891", + "updated_at": "2026-07-10T10:10:42.645891", + "url": "/v1/games/taito-memories-joukan" +} diff --git a/site/public/v1/games/taito-memories-pocket/index.json b/site/public/v1/games/taito-memories-pocket/index.json new file mode 100644 index 000000000000..37e53f873e86 --- /dev/null +++ b/site/public/v1/games/taito-memories-pocket/index.json @@ -0,0 +1,29 @@ +{ + "id": 143345, + "slug": "taito-memories-pocket", + "name": "Taito Memories Pocket", + "release_date": "2006-01-05", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation Portable" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Taito" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q129177193" + ], + "created_at": "2026-07-10T10:10:42.645891", + "updated_at": "2026-07-10T10:10:42.645891", + "url": "/v1/games/taito-memories-pocket" +} diff --git a/site/public/v1/games/taito-memories/index.json b/site/public/v1/games/taito-memories/index.json new file mode 100644 index 000000000000..a025193a1265 --- /dev/null +++ b/site/public/v1/games/taito-memories/index.json @@ -0,0 +1,29 @@ +{ + "id": 143346, + "slug": "taito-memories", + "name": "Taito Memories", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "N-Gage" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Taito" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q129181472" + ], + "created_at": "2026-07-10T10:10:42.645891", + "updated_at": "2026-07-10T10:10:42.645891", + "url": "/v1/games/taito-memories" +} diff --git a/site/public/v1/games/taito-milestones-2/index.json b/site/public/v1/games/taito-milestones-2/index.json new file mode 100644 index 000000000000..550910188eaa --- /dev/null +++ b/site/public/v1/games/taito-milestones-2/index.json @@ -0,0 +1,31 @@ +{ + "id": 143347, + "slug": "taito-milestones-2", + "name": "Taito Milestones 2", + "release_date": "2023-08-31", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [ + "Hamster Corporation" + ], + "publishers": [ + "Taito", + "Arc System Works", + "Inin Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126740696" + ], + "created_at": "2026-07-10T10:10:42.645891", + "updated_at": "2026-07-10T10:10:42.645891", + "url": "/v1/games/taito-milestones-2" +} diff --git a/site/public/v1/games/taito-milestones-3/index.json b/site/public/v1/games/taito-milestones-3/index.json new file mode 100644 index 000000000000..dafe97a1911c --- /dev/null +++ b/site/public/v1/games/taito-milestones-3/index.json @@ -0,0 +1,29 @@ +{ + "id": 143348, + "slug": "taito-milestones-3", + "name": "Taito Milestones 3", + "release_date": "2024-11-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [ + "Hamster Corporation" + ], + "publishers": [ + "Taito" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127275138" + ], + "created_at": "2026-07-10T10:10:42.646891", + "updated_at": "2026-07-10T10:10:42.646891", + "url": "/v1/games/taito-milestones-3" +} diff --git a/site/public/v1/games/taito-milestones/index.json b/site/public/v1/games/taito-milestones/index.json new file mode 100644 index 000000000000..45b16473b430 --- /dev/null +++ b/site/public/v1/games/taito-milestones/index.json @@ -0,0 +1,31 @@ +{ + "id": 143349, + "slug": "taito-milestones", + "name": "Taito Milestones", + "release_date": "2022-02-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [ + "Hamster Corporation" + ], + "publishers": [ + "Taito", + "Arc System Works", + "Inin Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126740520" + ], + "created_at": "2026-07-10T10:10:42.646891", + "updated_at": "2026-07-10T10:10:42.646891", + "url": "/v1/games/taito-milestones" +} diff --git a/site/public/v1/games/tales-of-arise-beyond-the-dawn-expansion/index.json b/site/public/v1/games/tales-of-arise-beyond-the-dawn-expansion/index.json new file mode 100644 index 000000000000..132853bbf445 --- /dev/null +++ b/site/public/v1/games/tales-of-arise-beyond-the-dawn-expansion/index.json @@ -0,0 +1,30 @@ +{ + "id": 143561, + "slug": "tales-of-arise-beyond-the-dawn-expansion", + "name": "Tales of Arise - Beyond the Dawn Expansion", + "release_date": "2023-11-08", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 5", + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123916001" + ], + "created_at": "2026-07-10T10:10:42.703638", + "updated_at": "2026-07-10T10:10:42.703638", + "url": "/v1/games/tales-of-arise-beyond-the-dawn-expansion" +} diff --git a/site/public/v1/games/tales-of-monkey-island-chapter-1-launch-of-the-screaming-narwhal/index.json b/site/public/v1/games/tales-of-monkey-island-chapter-1-launch-of-the-screaming-narwhal/index.json new file mode 100644 index 000000000000..31bad776f025 --- /dev/null +++ b/site/public/v1/games/tales-of-monkey-island-chapter-1-launch-of-the-screaming-narwhal/index.json @@ -0,0 +1,37 @@ +{ + "id": 143633, + "slug": "tales-of-monkey-island-chapter-1-launch-of-the-screaming-narwhal", + "name": "Tales of Monkey Island Chapter 1: Launch of the Screaming Narwhal", + "release_date": "2009-07-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "iOS", + "PlayStation 3", + "Wii", + "Microsoft Windows" + ], + "genres": [ + "adventure video game" + ], + "stores": [], + "developers": [ + "Telltale Games" + ], + "publishers": [ + "Telltale Games", + "Buka Entertainment" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110817143" + ], + "created_at": "2026-07-10T10:10:42.722642", + "updated_at": "2026-07-10T10:10:42.722642", + "url": "/v1/games/tales-of-monkey-island-chapter-1-launch-of-the-screaming-narwhal" +} diff --git a/site/public/v1/games/tales-of-monkey-island-chapter-3-lair-of-the-leviathan/index.json b/site/public/v1/games/tales-of-monkey-island-chapter-3-lair-of-the-leviathan/index.json new file mode 100644 index 000000000000..8ec8967c066e --- /dev/null +++ b/site/public/v1/games/tales-of-monkey-island-chapter-3-lair-of-the-leviathan/index.json @@ -0,0 +1,36 @@ +{ + "id": 143635, + "slug": "tales-of-monkey-island-chapter-3-lair-of-the-leviathan", + "name": "Tales of Monkey Island Chapter 3: Lair of the Leviathan", + "release_date": "2009-09-29", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "iOS", + "Wii", + "Microsoft Windows" + ], + "genres": [ + "adventure video game" + ], + "stores": [], + "developers": [ + "Telltale Games" + ], + "publishers": [ + "Lucasfilm Games", + "Buka Entertainment" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110817142" + ], + "created_at": "2026-07-10T10:10:42.723645", + "updated_at": "2026-07-10T10:10:42.723645", + "url": "/v1/games/tales-of-monkey-island-chapter-3-lair-of-the-leviathan" +} diff --git a/site/public/v1/games/tales-of-monkey-island-chapter-5-rise-of-the-pirate-god/index.json b/site/public/v1/games/tales-of-monkey-island-chapter-5-rise-of-the-pirate-god/index.json new file mode 100644 index 000000000000..1588fec8d403 --- /dev/null +++ b/site/public/v1/games/tales-of-monkey-island-chapter-5-rise-of-the-pirate-god/index.json @@ -0,0 +1,37 @@ +{ + "id": 143636, + "slug": "tales-of-monkey-island-chapter-5-rise-of-the-pirate-god", + "name": "Tales of Monkey Island Chapter 5: Rise of the Pirate God", + "release_date": "2009-12-08", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "iOS", + "Wii", + "Microsoft Windows" + ], + "genres": [ + "adventure video game" + ], + "stores": [], + "developers": [ + "Telltale Games" + ], + "publishers": [ + "Lucasfilm Games", + "Telltale Games", + "Buka Entertainment" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110817144" + ], + "created_at": "2026-07-10T10:10:42.723645", + "updated_at": "2026-07-10T10:10:42.723645", + "url": "/v1/games/tales-of-monkey-island-chapter-5-rise-of-the-pirate-god" +} diff --git a/site/public/v1/games/talisman-dungeon/index.json b/site/public/v1/games/talisman-dungeon/index.json new file mode 100644 index 000000000000..da7e284127df --- /dev/null +++ b/site/public/v1/games/talisman-dungeon/index.json @@ -0,0 +1,27 @@ +{ + "id": 143766, + "slug": "talisman-dungeon", + "name": "Talisman Dungeon", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "fantasy" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q96316155" + ], + "created_at": "2026-07-10T10:10:42.755735", + "updated_at": "2026-07-10T10:10:42.755735", + "url": "/v1/games/talisman-dungeon" +} diff --git a/site/public/v1/games/talisman-q97290219/index.json b/site/public/v1/games/talisman-q97290219/index.json new file mode 100644 index 000000000000..351a14e36dd7 --- /dev/null +++ b/site/public/v1/games/talisman-q97290219/index.json @@ -0,0 +1,32 @@ +{ + "id": 143770, + "slug": "talisman-q97290219", + "name": "Talisman", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "role-playing video game", + "turn-based strategy video game" + ], + "stores": [], + "developers": [ + "Nomad Games" + ], + "publishers": [ + "Games Workshop" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q97290219" + ], + "created_at": "2026-07-10T10:10:42.755735", + "updated_at": "2026-07-10T10:10:42.755735", + "url": "/v1/games/talisman-q97290219" +} diff --git a/site/public/v1/games/tartar/index.json b/site/public/v1/games/tartar/index.json new file mode 100644 index 000000000000..42b8e588d4d2 --- /dev/null +++ b/site/public/v1/games/tartar/index.json @@ -0,0 +1,25 @@ +{ + "id": 144214, + "slug": "tartar", + "name": "Tartar", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124658388" + ], + "created_at": "2026-07-10T10:10:42.904831", + "updated_at": "2026-07-10T10:10:42.904831", + "url": "/v1/games/tartar" +} diff --git a/site/public/v1/games/tayfun-tuna-games/index.json b/site/public/v1/games/tayfun-tuna-games/index.json new file mode 100644 index 000000000000..6dc35cd3491c --- /dev/null +++ b/site/public/v1/games/tayfun-tuna-games/index.json @@ -0,0 +1,35 @@ +{ + "id": 144374, + "slug": "tayfun-tuna-games", + "name": "Tayfun Tuna Games", + "release_date": "2019-01-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "role-playing video game", + "zombie video game" + ], + "stores": [], + "developers": [ + "Tayfun Tuna" + ], + "publishers": [ + "Tayfun Tuna" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122912714" + ], + "created_at": "2026-07-10T10:10:42.973712", + "updated_at": "2026-07-10T10:10:42.973712", + "url": "/v1/games/tayfun-tuna-games" +} diff --git a/site/public/v1/games/team-17-collection-volume-1/index.json b/site/public/v1/games/team-17-collection-volume-1/index.json new file mode 100644 index 000000000000..791ee57bdbac --- /dev/null +++ b/site/public/v1/games/team-17-collection-volume-1/index.json @@ -0,0 +1,25 @@ +{ + "id": 144443, + "slug": "team-17-collection-volume-1", + "name": "Team 17 Collection Volume 1", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126184556" + ], + "created_at": "2026-07-10T10:10:42.991675", + "updated_at": "2026-07-10T10:10:42.991675", + "url": "/v1/games/team-17-collection-volume-1" +} diff --git a/site/public/v1/games/team-fortress-2-brotherhood-of-arms/index.json b/site/public/v1/games/team-fortress-2-brotherhood-of-arms/index.json new file mode 100644 index 000000000000..954e96f8890f --- /dev/null +++ b/site/public/v1/games/team-fortress-2-brotherhood-of-arms/index.json @@ -0,0 +1,31 @@ +{ + "id": 144454, + "slug": "team-fortress-2-brotherhood-of-arms", + "name": "Team Fortress 2: Brotherhood of Arms", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "tactical shooter" + ], + "stores": [], + "developers": [ + "Valve Corporation" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q56378546" + ], + "created_at": "2026-07-10T10:10:42.994662", + "updated_at": "2026-07-10T10:10:42.994662", + "url": "/v1/games/team-fortress-2-brotherhood-of-arms" +} diff --git a/site/public/v1/games/team-fortress-source-2/index.json b/site/public/v1/games/team-fortress-source-2/index.json new file mode 100644 index 000000000000..8b8bb321c531 --- /dev/null +++ b/site/public/v1/games/team-fortress-source-2/index.json @@ -0,0 +1,25 @@ +{ + "id": 144458, + "slug": "team-fortress-source-2", + "name": "Team Fortress: Source 2", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108032450" + ], + "created_at": "2026-07-10T10:10:42.995656", + "updated_at": "2026-07-10T10:10:42.995656", + "url": "/v1/games/team-fortress-source-2" +} diff --git a/site/public/v1/games/team-sneed-megapack/index.json b/site/public/v1/games/team-sneed-megapack/index.json new file mode 100644 index 000000000000..90c7310fc06b --- /dev/null +++ b/site/public/v1/games/team-sneed-megapack/index.json @@ -0,0 +1,34 @@ +{ + "id": 144469, + "slug": "team-sneed-megapack", + "name": "Team SNEED Megapack", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "action game", + "third-person shooter", + "casual game", + "satirical video game", + "black comedy video game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120189922" + ], + "created_at": "2026-07-10T10:10:42.998739", + "updated_at": "2026-07-10T10:10:42.998739", + "url": "/v1/games/team-sneed-megapack" +} diff --git a/site/public/v1/games/tecmo-cup-football-game/index.json b/site/public/v1/games/tecmo-cup-football-game/index.json new file mode 100644 index 000000000000..c0fb937edaf2 --- /dev/null +++ b/site/public/v1/games/tecmo-cup-football-game/index.json @@ -0,0 +1,31 @@ +{ + "id": 144604, + "slug": "tecmo-cup-football-game", + "name": "Tecmo Cup Football Game", + "release_date": "1993-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Sega Genesis" + ], + "genres": [ + "association football video game" + ], + "stores": [], + "developers": [ + "Tecmo" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7692728" + ], + "created_at": "2026-07-10T10:10:43.033756", + "updated_at": "2026-07-10T10:10:43.033756", + "url": "/v1/games/tecmo-cup-football-game" +} diff --git a/site/public/v1/games/teenage-mutant-ninja-turtles-dark-horizons/index.json b/site/public/v1/games/teenage-mutant-ninja-turtles-dark-horizons/index.json new file mode 100644 index 000000000000..ea165f584dae --- /dev/null +++ b/site/public/v1/games/teenage-mutant-ninja-turtles-dark-horizons/index.json @@ -0,0 +1,25 @@ +{ + "id": 144670, + "slug": "teenage-mutant-ninja-turtles-dark-horizons", + "name": "Teenage Mutant Ninja Turtles: Dark Horizons", + "release_date": "2012-06-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q97500576" + ], + "created_at": "2026-07-10T10:10:43.084309", + "updated_at": "2026-07-10T10:10:43.084309", + "url": "/v1/games/teenage-mutant-ninja-turtles-dark-horizons" +} diff --git a/site/public/v1/games/teenage-mutant-ninja-turtles-deep-space-april/index.json b/site/public/v1/games/teenage-mutant-ninja-turtles-deep-space-april/index.json new file mode 100644 index 000000000000..65c3466c3589 --- /dev/null +++ b/site/public/v1/games/teenage-mutant-ninja-turtles-deep-space-april/index.json @@ -0,0 +1,25 @@ +{ + "id": 144671, + "slug": "teenage-mutant-ninja-turtles-deep-space-april", + "name": "Teenage Mutant Ninja Turtles: Deep Space April", + "release_date": "2016-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q98966840" + ], + "created_at": "2026-07-10T10:10:43.084309", + "updated_at": "2026-07-10T10:10:43.084309", + "url": "/v1/games/teenage-mutant-ninja-turtles-deep-space-april" +} diff --git a/site/public/v1/games/teenage-mutant-ninja-turtles-double-pack/index.json b/site/public/v1/games/teenage-mutant-ninja-turtles-double-pack/index.json new file mode 100644 index 000000000000..7dac92b39a5c --- /dev/null +++ b/site/public/v1/games/teenage-mutant-ninja-turtles-double-pack/index.json @@ -0,0 +1,33 @@ +{ + "id": 144673, + "slug": "teenage-mutant-ninja-turtles-double-pack", + "name": "Teenage Mutant Ninja Turtles Double Pack", + "release_date": "2006-03-17", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Game Boy Advance" + ], + "genres": [ + "action game" + ], + "stores": [], + "developers": [ + "Konami" + ], + "publishers": [ + "Konami" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q97123502" + ], + "created_at": "2026-07-10T10:10:43.085725", + "updated_at": "2026-07-10T10:10:43.085725", + "url": "/v1/games/teenage-mutant-ninja-turtles-double-pack" +} diff --git a/site/public/v1/games/teenage-mutant-ninja-turtles-heist-in-a-half-shell/index.json b/site/public/v1/games/teenage-mutant-ninja-turtles-heist-in-a-half-shell/index.json new file mode 100644 index 000000000000..212a5d0db0d5 --- /dev/null +++ b/site/public/v1/games/teenage-mutant-ninja-turtles-heist-in-a-half-shell/index.json @@ -0,0 +1,25 @@ +{ + "id": 144678, + "slug": "teenage-mutant-ninja-turtles-heist-in-a-half-shell", + "name": "Teenage Mutant Ninja Turtles: Heist in a Half Shell", + "release_date": "2013-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q98970061" + ], + "created_at": "2026-07-10T10:10:43.086730", + "updated_at": "2026-07-10T10:10:43.086730", + "url": "/v1/games/teenage-mutant-ninja-turtles-heist-in-a-half-shell" +} diff --git a/site/public/v1/games/teenage-mutant-ninja-turtles-the-cowabunga-collection/index.json b/site/public/v1/games/teenage-mutant-ninja-turtles-the-cowabunga-collection/index.json new file mode 100644 index 000000000000..1d14e6d74874 --- /dev/null +++ b/site/public/v1/games/teenage-mutant-ninja-turtles-the-cowabunga-collection/index.json @@ -0,0 +1,41 @@ +{ + "id": 144710, + "slug": "teenage-mutant-ninja-turtles-the-cowabunga-collection", + "name": "Teenage Mutant Ninja Turtles: The Cowabunga Collection", + "release_date": "2022-08-30", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 5", + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "action game", + "beat 'em up", + "fighting game", + "Metroidvania" + ], + "stores": [], + "developers": [ + "Digital Eclipse" + ], + "publishers": [ + "Konami", + "Nickelodeon", + "Konami Digital Entertainment, Inc." + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111186763" + ], + "created_at": "2026-07-10T10:10:43.094795", + "updated_at": "2026-07-10T10:10:43.094795", + "url": "/v1/games/teenage-mutant-ninja-turtles-the-cowabunga-collection" +} diff --git a/site/public/v1/games/teenage-mutant-ninja-turtles-vs-power-rangers-ultimate-hero-clash/index.json b/site/public/v1/games/teenage-mutant-ninja-turtles-vs-power-rangers-ultimate-hero-clash/index.json new file mode 100644 index 000000000000..9fd9f0adc85a --- /dev/null +++ b/site/public/v1/games/teenage-mutant-ninja-turtles-vs-power-rangers-ultimate-hero-clash/index.json @@ -0,0 +1,25 @@ +{ + "id": 144722, + "slug": "teenage-mutant-ninja-turtles-vs-power-rangers-ultimate-hero-clash", + "name": "Teenage Mutant Ninja Turtles VS Power Rangers: Ultimate Hero Clash", + "release_date": "2016-02-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140373182" + ], + "created_at": "2026-07-10T10:10:43.097735", + "updated_at": "2026-07-10T10:10:43.097735", + "url": "/v1/games/teenage-mutant-ninja-turtles-vs-power-rangers-ultimate-hero-clash" +} diff --git a/site/public/v1/games/tekken-x-street-fighter/index.json b/site/public/v1/games/tekken-x-street-fighter/index.json new file mode 100644 index 000000000000..db3250863e7d --- /dev/null +++ b/site/public/v1/games/tekken-x-street-fighter/index.json @@ -0,0 +1,35 @@ +{ + "id": 144770, + "slug": "tekken-x-street-fighter", + "name": "Tekken X Street Fighter", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 3", + "Microsoft Windows" + ], + "genres": [ + "crossover fiction", + "fighting game" + ], + "stores": [], + "developers": [ + "Bandai Namco Entertainment" + ], + "publishers": [ + "Bandai Namco Entertainment" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1194203" + ], + "created_at": "2026-07-10T10:10:43.109822", + "updated_at": "2026-07-10T10:10:43.109822", + "url": "/v1/games/tekken-x-street-fighter" +} diff --git a/site/public/v1/games/telenet-shooting-collection/index.json b/site/public/v1/games/telenet-shooting-collection/index.json new file mode 100644 index 000000000000..6ae08f43b9a2 --- /dev/null +++ b/site/public/v1/games/telenet-shooting-collection/index.json @@ -0,0 +1,31 @@ +{ + "id": 144804, + "slug": "telenet-shooting-collection", + "name": "Telenet Shooting Collection", + "release_date": "2023-06-08", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "shoot 'em up" + ], + "stores": [], + "developers": [], + "publishers": [ + "Edia" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116763146" + ], + "created_at": "2026-07-10T10:10:43.118806", + "updated_at": "2026-07-10T10:10:43.118806", + "url": "/v1/games/telenet-shooting-collection" +} diff --git a/site/public/v1/games/telsport-302/index.json b/site/public/v1/games/telsport-302/index.json new file mode 100644 index 000000000000..6f341fc2d9f4 --- /dev/null +++ b/site/public/v1/games/telsport-302/index.json @@ -0,0 +1,25 @@ +{ + "id": 144846, + "slug": "telsport-302", + "name": "Telsport 302", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121493790" + ], + "created_at": "2026-07-10T10:10:43.129815", + "updated_at": "2026-07-10T10:10:43.129815", + "url": "/v1/games/telsport-302" +} diff --git a/site/public/v1/games/temple-run/index.json b/site/public/v1/games/temple-run/index.json new file mode 100644 index 000000000000..ab3b5ab8ba96 --- /dev/null +++ b/site/public/v1/games/temple-run/index.json @@ -0,0 +1,30 @@ +{ + "id": 144912, + "slug": "temple-run", + "name": "Temple Run+", + "release_date": "2023-05-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "iPadOS", + "tvOS", + "iOS", + "macOS" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118235380" + ], + "created_at": "2026-07-10T10:10:43.147816", + "updated_at": "2026-07-10T10:10:43.147816", + "url": "/v1/games/temple-run" +} diff --git a/site/public/v1/games/temtem-deluxe-edition/index.json b/site/public/v1/games/temtem-deluxe-edition/index.json new file mode 100644 index 000000000000..78e4a1c5ffab --- /dev/null +++ b/site/public/v1/games/temtem-deluxe-edition/index.json @@ -0,0 +1,31 @@ +{ + "id": 144962, + "slug": "temtem-deluxe-edition", + "name": "Temtem - Deluxe Edition", + "release_date": "2022-09-06", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S" + ], + "genres": [], + "stores": [], + "developers": [ + "Crema" + ], + "publishers": [ + "Humble Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181277" + ], + "created_at": "2026-07-10T10:10:43.160926", + "updated_at": "2026-07-10T10:10:43.160926", + "url": "/v1/games/temtem-deluxe-edition" +} diff --git a/site/public/v1/games/ten-great-games/index.json b/site/public/v1/games/ten-great-games/index.json new file mode 100644 index 000000000000..cb0ed4a2e4c8 --- /dev/null +++ b/site/public/v1/games/ten-great-games/index.json @@ -0,0 +1,29 @@ +{ + "id": 144970, + "slug": "ten-great-games", + "name": "Ten Great Games", + "release_date": "1987-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Amstrad CPC" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Gremlin Interactive" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121758962" + ], + "created_at": "2026-07-10T10:10:43.162920", + "updated_at": "2026-07-10T10:10:43.162920", + "url": "/v1/games/ten-great-games" +} diff --git a/site/public/v1/games/terraria-2/index.json b/site/public/v1/games/terraria-2/index.json new file mode 100644 index 000000000000..c1e632902050 --- /dev/null +++ b/site/public/v1/games/terraria-2/index.json @@ -0,0 +1,25 @@ +{ + "id": 145335, + "slug": "terraria-2", + "name": "Terraria 2", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121814668" + ], + "created_at": "2026-07-10T10:10:43.261012", + "updated_at": "2026-07-10T10:10:43.261012", + "url": "/v1/games/terraria-2" +} diff --git a/site/public/v1/games/terraria-otherworld/index.json b/site/public/v1/games/terraria-otherworld/index.json new file mode 100644 index 000000000000..3018a7b08f8e --- /dev/null +++ b/site/public/v1/games/terraria-otherworld/index.json @@ -0,0 +1,34 @@ +{ + "id": 145336, + "slug": "terraria-otherworld", + "name": "Terraria: Otherworld", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "action-adventure game", + "sandbox game" + ], + "stores": [], + "developers": [ + "Re-Logic", + "Pipeworks Software", + "Engine Software" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123700555" + ], + "created_at": "2026-07-10T10:10:43.261012", + "updated_at": "2026-07-10T10:10:43.261012", + "url": "/v1/games/terraria-otherworld" +} diff --git a/site/public/v1/games/tetris-dr-mario/index.json b/site/public/v1/games/tetris-dr-mario/index.json new file mode 100644 index 000000000000..0b9f4963e5a1 --- /dev/null +++ b/site/public/v1/games/tetris-dr-mario/index.json @@ -0,0 +1,29 @@ +{ + "id": 145546, + "slug": "tetris-dr-mario", + "name": "Tetris & Dr. Mario", + "release_date": "1994-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Super Nintendo Entertainment System" + ], + "genres": [], + "stores": [], + "developers": [ + "Intelligent Systems" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3519190" + ], + "created_at": "2026-07-10T10:10:43.316708", + "updated_at": "2026-07-10T10:10:43.316708", + "url": "/v1/games/tetris-dr-mario" +} diff --git a/site/public/v1/games/tetris-online-inc/index.json b/site/public/v1/games/tetris-online-inc/index.json new file mode 100644 index 000000000000..d105b234e099 --- /dev/null +++ b/site/public/v1/games/tetris-online-inc/index.json @@ -0,0 +1,25 @@ +{ + "id": 145560, + "slug": "tetris-online-inc", + "name": "Tetris Online, Inc.", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q14947375" + ], + "created_at": "2026-07-10T10:10:43.320671", + "updated_at": "2026-07-10T10:10:43.320671", + "url": "/v1/games/tetris-online-inc" +} diff --git a/site/public/v1/games/tetris-the-grand-master-4-the-masters-of-round/index.json b/site/public/v1/games/tetris-the-grand-master-4-the-masters-of-round/index.json new file mode 100644 index 000000000000..8bcb91c2b634 --- /dev/null +++ b/site/public/v1/games/tetris-the-grand-master-4-the-masters-of-round/index.json @@ -0,0 +1,25 @@ +{ + "id": 145581, + "slug": "tetris-the-grand-master-4-the-masters-of-round", + "name": "Tetris: The Grand Master 4 - The Masters of Round", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11319322" + ], + "created_at": "2026-07-10T10:10:43.325674", + "updated_at": "2026-07-10T10:10:43.325674", + "url": "/v1/games/tetris-the-grand-master-4-the-masters-of-round" +} diff --git a/site/public/v1/games/the-agency-covert-ops/index.json b/site/public/v1/games/the-agency-covert-ops/index.json new file mode 100644 index 000000000000..0bbcbc9a26a2 --- /dev/null +++ b/site/public/v1/games/the-agency-covert-ops/index.json @@ -0,0 +1,35 @@ +{ + "id": 145975, + "slug": "the-agency-covert-ops", + "name": "The Agency: Covert Ops", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 3" + ], + "genres": [ + "stealth game", + "massively multiplayer online game", + "shooter game" + ], + "stores": [], + "developers": [ + "Daybreak Game Company" + ], + "publishers": [ + "Daybreak Game Company" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1163706" + ], + "created_at": "2026-07-10T10:10:43.526051", + "updated_at": "2026-07-10T10:10:43.526051", + "url": "/v1/games/the-agency-covert-ops" +} diff --git a/site/public/v1/games/the-alto-collection/index.json b/site/public/v1/games/the-alto-collection/index.json new file mode 100644 index 000000000000..3c85bb8d7630 --- /dev/null +++ b/site/public/v1/games/the-alto-collection/index.json @@ -0,0 +1,30 @@ +{ + "id": 146016, + "slug": "the-alto-collection", + "name": "The Alto Collection", + "release_date": "2020-08-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "endless runner game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q103865294" + ], + "created_at": "2026-07-10T10:10:43.538048", + "updated_at": "2026-07-10T10:10:43.538048", + "url": "/v1/games/the-alto-collection" +} diff --git a/site/public/v1/games/the-amazing-eternals/index.json b/site/public/v1/games/the-amazing-eternals/index.json new file mode 100644 index 000000000000..c04ab49c8842 --- /dev/null +++ b/site/public/v1/games/the-amazing-eternals/index.json @@ -0,0 +1,29 @@ +{ + "id": 146026, + "slug": "the-amazing-eternals", + "name": "The Amazing Eternals", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Digital Extremes" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q37712375" + ], + "created_at": "2026-07-10T10:10:43.540046", + "updated_at": "2026-07-10T10:10:43.540046", + "url": "/v1/games/the-amazing-eternals" +} diff --git a/site/public/v1/games/the-assassin/index.json b/site/public/v1/games/the-assassin/index.json new file mode 100644 index 000000000000..e7e0e09c6731 --- /dev/null +++ b/site/public/v1/games/the-assassin/index.json @@ -0,0 +1,28 @@ +{ + "id": 146160, + "slug": "the-assassin", + "name": "The Assassin", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "action role-playing game", + "cyberpunk video game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60754765" + ], + "created_at": "2026-07-10T10:10:43.575646", + "updated_at": "2026-07-10T10:10:43.575646", + "url": "/v1/games/the-assassin" +} diff --git a/site/public/v1/games/the-avengers/index.json b/site/public/v1/games/the-avengers/index.json new file mode 100644 index 000000000000..220f5229640a --- /dev/null +++ b/site/public/v1/games/the-avengers/index.json @@ -0,0 +1,30 @@ +{ + "id": 146192, + "slug": "the-avengers", + "name": "The Avengers", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "beat 'em up" + ], + "stores": [], + "developers": [ + "THQ Studio Australia", + "Blue Tongue Entertainment" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28134322" + ], + "created_at": "2026-07-10T10:10:43.584799", + "updated_at": "2026-07-10T10:10:43.584799", + "url": "/v1/games/the-avengers" +} diff --git a/site/public/v1/games/the-backrooms-game-support-this-game/index.json b/site/public/v1/games/the-backrooms-game-support-this-game/index.json new file mode 100644 index 000000000000..3b929dfe543f --- /dev/null +++ b/site/public/v1/games/the-backrooms-game-support-this-game/index.json @@ -0,0 +1,34 @@ +{ + "id": 146229, + "slug": "the-backrooms-game-support-this-game", + "name": "The Backrooms Game - Support This Game! 😎👉👉", + "release_date": "2019-07-29", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "cosmic horror video game", + "psychological horror video game" + ], + "stores": [], + "developers": [ + "Pie On A Plate Productions" + ], + "publishers": [ + "Pie On A Plate Productions" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q114833792" + ], + "created_at": "2026-07-10T10:10:43.594801", + "updated_at": "2026-07-10T10:10:43.594801", + "url": "/v1/games/the-backrooms-game-support-this-game" +} diff --git a/site/public/v1/games/the-basement-collection/index.json b/site/public/v1/games/the-basement-collection/index.json new file mode 100644 index 000000000000..82a9c855ef9c --- /dev/null +++ b/site/public/v1/games/the-basement-collection/index.json @@ -0,0 +1,33 @@ +{ + "id": 146314, + "slug": "the-basement-collection", + "name": "The Basement Collection", + "release_date": "2012-08-31", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Edmund McMillen", + "Tyler Glaiel" + ], + "publishers": [ + "Edmund McMillen" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2320926" + ], + "created_at": "2026-07-10T10:10:43.616301", + "updated_at": "2026-07-10T10:10:43.616301", + "url": "/v1/games/the-basement-collection" +} diff --git a/site/public/v1/games/the-berlin-wall/index.json b/site/public/v1/games/the-berlin-wall/index.json new file mode 100644 index 000000000000..4e86d773c1d0 --- /dev/null +++ b/site/public/v1/games/the-berlin-wall/index.json @@ -0,0 +1,30 @@ +{ + "id": 146395, + "slug": "the-berlin-wall", + "name": "The Berlin Wall", + "release_date": "1991-11-29", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "platformer", + "arcade" + ], + "stores": [], + "developers": [], + "publishers": [ + "Kaneko" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7716567" + ], + "created_at": "2026-07-10T10:10:43.652406", + "updated_at": "2026-07-10T10:10:43.652406", + "url": "/v1/games/the-berlin-wall" +} diff --git a/site/public/v1/games/the-big-con-and-rainbow-billy-wholesome-bundle/index.json b/site/public/v1/games/the-big-con-and-rainbow-billy-wholesome-bundle/index.json new file mode 100644 index 000000000000..64caf1a1f5d8 --- /dev/null +++ b/site/public/v1/games/the-big-con-and-rainbow-billy-wholesome-bundle/index.json @@ -0,0 +1,31 @@ +{ + "id": 146425, + "slug": "the-big-con-and-rainbow-billy-wholesome-bundle", + "name": "The Big Con and Rainbow Billy Wholesome Bundle", + "release_date": "2021-12-03", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S" + ], + "genres": [], + "stores": [], + "developers": [ + "Skybound Games" + ], + "publishers": [ + "Skybound Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109996835" + ], + "created_at": "2026-07-10T10:10:43.661308", + "updated_at": "2026-07-10T10:10:43.661308", + "url": "/v1/games/the-big-con-and-rainbow-billy-wholesome-bundle" +} diff --git a/site/public/v1/games/the-binding-of-isaac-afterbirth-bundle/index.json b/site/public/v1/games/the-binding-of-isaac-afterbirth-bundle/index.json new file mode 100644 index 000000000000..c24063cb1195 --- /dev/null +++ b/site/public/v1/games/the-binding-of-isaac-afterbirth-bundle/index.json @@ -0,0 +1,30 @@ +{ + "id": 146447, + "slug": "the-binding-of-isaac-afterbirth-bundle", + "name": "The Binding of Isaac: Afterbirth+ Bundle", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "roguelite" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121302344" + ], + "created_at": "2026-07-10T10:10:43.666308", + "updated_at": "2026-07-10T10:10:43.666308", + "url": "/v1/games/the-binding-of-isaac-afterbirth-bundle" +} diff --git a/site/public/v1/games/the-binding-of-isaac-afterbirth-q61009986/index.json b/site/public/v1/games/the-binding-of-isaac-afterbirth-q61009986/index.json new file mode 100644 index 000000000000..481af1da4d06 --- /dev/null +++ b/site/public/v1/games/the-binding-of-isaac-afterbirth-q61009986/index.json @@ -0,0 +1,31 @@ +{ + "id": 146448, + "slug": "the-binding-of-isaac-afterbirth-q61009986", + "name": "The Binding of Isaac: Afterbirth", + "release_date": "2015-10-30", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 4", + "macOS", + "Microsoft Windows" + ], + "genres": [ + "roguelite" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q61009986" + ], + "created_at": "2026-07-10T10:10:43.666308", + "updated_at": "2026-07-10T10:10:43.666308", + "url": "/v1/games/the-binding-of-isaac-afterbirth-q61009986" +} diff --git a/site/public/v1/games/the-binding-of-isaac-afterbirth/index.json b/site/public/v1/games/the-binding-of-isaac-afterbirth/index.json new file mode 100644 index 000000000000..590b92186bd8 --- /dev/null +++ b/site/public/v1/games/the-binding-of-isaac-afterbirth/index.json @@ -0,0 +1,33 @@ +{ + "id": 146449, + "slug": "the-binding-of-isaac-afterbirth", + "name": "The Binding of Isaac: Afterbirth+", + "release_date": "2017-01-03", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 4", + "macOS", + "Microsoft Windows" + ], + "genres": [ + "roguelite" + ], + "stores": [], + "developers": [], + "publishers": [ + "Nicalis" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q61009987" + ], + "created_at": "2026-07-10T10:10:43.667308", + "updated_at": "2026-07-10T10:10:43.667308", + "url": "/v1/games/the-binding-of-isaac-afterbirth" +} diff --git a/site/public/v1/games/the-binding-of-isaac-collection/index.json b/site/public/v1/games/the-binding-of-isaac-collection/index.json new file mode 100644 index 000000000000..4372113ed82b --- /dev/null +++ b/site/public/v1/games/the-binding-of-isaac-collection/index.json @@ -0,0 +1,37 @@ +{ + "id": 146450, + "slug": "the-binding-of-isaac-collection", + "name": "The Binding of Isaac Collection", + "release_date": "2012-07-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "roguelite", + "twin-stick shooter" + ], + "stores": [], + "developers": [ + "Edmund McMillen", + "Florian Himsl" + ], + "publishers": [ + "Edmund McMillen", + "Florian Himsl" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q61000923" + ], + "created_at": "2026-07-10T10:10:43.667308", + "updated_at": "2026-07-10T10:10:43.667308", + "url": "/v1/games/the-binding-of-isaac-collection" +} diff --git a/site/public/v1/games/the-binding-of-isaac-demo/index.json b/site/public/v1/games/the-binding-of-isaac-demo/index.json new file mode 100644 index 000000000000..a6eaf2a11b07 --- /dev/null +++ b/site/public/v1/games/the-binding-of-isaac-demo/index.json @@ -0,0 +1,33 @@ +{ + "id": 146451, + "slug": "the-binding-of-isaac-demo", + "name": "The Binding of Isaac demo", + "release_date": "2011-10-08", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "web browser" + ], + "genres": [ + "roguelite" + ], + "stores": [], + "developers": [ + "Edmund McMillen" + ], + "publishers": [ + "Edmund McMillen" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136260178" + ], + "created_at": "2026-07-10T10:10:43.667308", + "updated_at": "2026-07-10T10:10:43.667308", + "url": "/v1/games/the-binding-of-isaac-demo" +} diff --git a/site/public/v1/games/the-binding-of-isaac-rebirth-complete-bundle/index.json b/site/public/v1/games/the-binding-of-isaac-rebirth-complete-bundle/index.json new file mode 100644 index 000000000000..e65d124fca5e --- /dev/null +++ b/site/public/v1/games/the-binding-of-isaac-rebirth-complete-bundle/index.json @@ -0,0 +1,30 @@ +{ + "id": 146452, + "slug": "the-binding-of-isaac-rebirth-complete-bundle", + "name": "The Binding of Isaac: Rebirth Complete Bundle", + "release_date": "2017-01-05", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "roguelite" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q61009988" + ], + "created_at": "2026-07-10T10:10:43.667308", + "updated_at": "2026-07-10T10:10:43.667308", + "url": "/v1/games/the-binding-of-isaac-rebirth-complete-bundle" +} diff --git a/site/public/v1/games/the-binding-of-isaac-repentance/index.json b/site/public/v1/games/the-binding-of-isaac-repentance/index.json new file mode 100644 index 000000000000..6f18a27979ed --- /dev/null +++ b/site/public/v1/games/the-binding-of-isaac-repentance/index.json @@ -0,0 +1,36 @@ +{ + "id": 146454, + "slug": "the-binding-of-isaac-repentance", + "name": "The Binding of Isaac: Repentance", + "release_date": "2021-03-31", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 5", + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "roguelite" + ], + "stores": [], + "developers": [ + "Edmund McMillen", + "Nicalis" + ], + "publishers": [ + "Nicalis" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105548777" + ], + "created_at": "2026-07-10T10:10:43.668308", + "updated_at": "2026-07-10T10:10:43.668308", + "url": "/v1/games/the-binding-of-isaac-repentance" +} diff --git a/site/public/v1/games/the-binding-of-isaac-unholy-edition/index.json b/site/public/v1/games/the-binding-of-isaac-unholy-edition/index.json new file mode 100644 index 000000000000..89c75746dfa7 --- /dev/null +++ b/site/public/v1/games/the-binding-of-isaac-unholy-edition/index.json @@ -0,0 +1,27 @@ +{ + "id": 146455, + "slug": "the-binding-of-isaac-unholy-edition", + "name": "The Binding of Isaac (Unholy Edition)", + "release_date": "2012-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "roguelite" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60997648" + ], + "created_at": "2026-07-10T10:10:43.668308", + "updated_at": "2026-07-10T10:10:43.668308", + "url": "/v1/games/the-binding-of-isaac-unholy-edition" +} diff --git a/site/public/v1/games/the-bishibashi/index.json b/site/public/v1/games/the-bishibashi/index.json new file mode 100644 index 000000000000..0a1fc2859d3a --- /dev/null +++ b/site/public/v1/games/the-bishibashi/index.json @@ -0,0 +1,27 @@ +{ + "id": 146462, + "slug": "the-bishibashi", + "name": "THE★BishiBashi", + "release_date": "2009-07-29", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [ + "Konami" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q26298692" + ], + "created_at": "2026-07-10T10:10:43.670309", + "updated_at": "2026-07-10T10:10:43.670309", + "url": "/v1/games/the-bishibashi" +} diff --git a/site/public/v1/games/the-bitmap-brothers-compilation/index.json b/site/public/v1/games/the-bitmap-brothers-compilation/index.json new file mode 100644 index 000000000000..6959e5bb90bc --- /dev/null +++ b/site/public/v1/games/the-bitmap-brothers-compilation/index.json @@ -0,0 +1,25 @@ +{ + "id": 146466, + "slug": "the-bitmap-brothers-compilation", + "name": "The Bitmap Brothers Compilation", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125208060" + ], + "created_at": "2026-07-10T10:10:43.675957", + "updated_at": "2026-07-10T10:10:43.676960", + "url": "/v1/games/the-bitmap-brothers-compilation" +} diff --git a/site/public/v1/games/the-blair-witch-project/index.json b/site/public/v1/games/the-blair-witch-project/index.json new file mode 100644 index 000000000000..fefacc22a11c --- /dev/null +++ b/site/public/v1/games/the-blair-witch-project/index.json @@ -0,0 +1,35 @@ +{ + "id": 146509, + "slug": "the-blair-witch-project", + "name": "The Blair Witch Project", + "release_date": "2000-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "action-adventure game" + ], + "stores": [], + "developers": [ + "Human Head Studios", + "Terminal Reality", + "Ritual Entertainment" + ], + "publishers": [ + "Gathering of Developers" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4035184" + ], + "created_at": "2026-07-10T10:10:43.753029", + "updated_at": "2026-07-10T10:10:43.753029", + "url": "/v1/games/the-blair-witch-project" +} diff --git a/site/public/v1/games/the-book-of-unwritten-tales-the-critter-chronicles/index.json b/site/public/v1/games/the-book-of-unwritten-tales-the-critter-chronicles/index.json new file mode 100644 index 000000000000..fb2c9b64d849 --- /dev/null +++ b/site/public/v1/games/the-book-of-unwritten-tales-the-critter-chronicles/index.json @@ -0,0 +1,34 @@ +{ + "id": 146582, + "slug": "the-book-of-unwritten-tales-the-critter-chronicles", + "name": "The Book of Unwritten Tales: The Critter Chronicles", + "release_date": "2012-12-05", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "adventure video game" + ], + "stores": [], + "developers": [ + "King Art Games" + ], + "publishers": [ + "THQ Nordic" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16259318" + ], + "created_at": "2026-07-10T10:10:43.772536", + "updated_at": "2026-07-10T10:10:43.772536", + "url": "/v1/games/the-book-of-unwritten-tales-the-critter-chronicles" +} diff --git a/site/public/v1/games/the-boss-baby-get-that-baby/index.json b/site/public/v1/games/the-boss-baby-get-that-baby/index.json new file mode 100644 index 000000000000..4e9778e13cc1 --- /dev/null +++ b/site/public/v1/games/the-boss-baby-get-that-baby/index.json @@ -0,0 +1,27 @@ +{ + "id": 146594, + "slug": "the-boss-baby-get-that-baby", + "name": "The Boss Baby: Get That Baby!", + "release_date": "2020-09-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "comedy" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q99515218" + ], + "created_at": "2026-07-10T10:10:43.775541", + "updated_at": "2026-07-10T10:10:43.775541", + "url": "/v1/games/the-boss-baby-get-that-baby" +} diff --git a/site/public/v1/games/the-cd-games-pack/index.json b/site/public/v1/games/the-cd-games-pack/index.json new file mode 100644 index 000000000000..a01d49b46d89 --- /dev/null +++ b/site/public/v1/games/the-cd-games-pack/index.json @@ -0,0 +1,28 @@ +{ + "id": 146800, + "slug": "the-cd-games-pack", + "name": "The CD Games Pack", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Commodore 64", + "ZX Spectrum" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111466195" + ], + "created_at": "2026-07-10T10:10:43.836541", + "updated_at": "2026-07-10T10:10:43.836541", + "url": "/v1/games/the-cd-games-pack" +} diff --git a/site/public/v1/games/the-cheetahmen/index.json b/site/public/v1/games/the-cheetahmen/index.json new file mode 100644 index 000000000000..81bcb4f605a1 --- /dev/null +++ b/site/public/v1/games/the-cheetahmen/index.json @@ -0,0 +1,27 @@ +{ + "id": 146843, + "slug": "the-cheetahmen", + "name": "The Cheetahmen", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "action game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6140149" + ], + "created_at": "2026-07-10T10:10:43.895413", + "updated_at": "2026-07-10T10:10:43.895413", + "url": "/v1/games/the-cheetahmen" +} diff --git a/site/public/v1/games/the-chronicles-of-myrtana-archolos/index.json b/site/public/v1/games/the-chronicles-of-myrtana-archolos/index.json new file mode 100644 index 000000000000..4ead8a817035 --- /dev/null +++ b/site/public/v1/games/the-chronicles-of-myrtana-archolos/index.json @@ -0,0 +1,29 @@ +{ + "id": 146893, + "slug": "the-chronicles-of-myrtana-archolos", + "name": "The Chronicles Of Myrtana: Archolos", + "release_date": "2021-12-10", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "action role-playing game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110389182" + ], + "created_at": "2026-07-10T10:10:43.915337", + "updated_at": "2026-07-10T10:10:43.915337", + "url": "/v1/games/the-chronicles-of-myrtana-archolos" +} diff --git a/site/public/v1/games/the-chronicles-of-riddick-escape-from-butcher-bay-developer-s-cut/index.json b/site/public/v1/games/the-chronicles-of-riddick-escape-from-butcher-bay-developer-s-cut/index.json new file mode 100644 index 000000000000..d2d571d68540 --- /dev/null +++ b/site/public/v1/games/the-chronicles-of-riddick-escape-from-butcher-bay-developer-s-cut/index.json @@ -0,0 +1,32 @@ +{ + "id": 146902, + "slug": "the-chronicles-of-riddick-escape-from-butcher-bay-developer-s-cut", + "name": "The Chronicles of Riddick: Escape from Butcher Bay – Developer's Cut", + "release_date": "2004-12-08", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "action game" + ], + "stores": [], + "developers": [], + "publishers": [ + "Starbreeze Studios", + "Tigon Studios" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110817210" + ], + "created_at": "2026-07-10T10:10:43.916337", + "updated_at": "2026-07-10T10:10:43.916337", + "url": "/v1/games/the-chronicles-of-riddick-escape-from-butcher-bay-developer-s-cut" +} diff --git a/site/public/v1/games/the-city-of-metronome/index.json b/site/public/v1/games/the-city-of-metronome/index.json new file mode 100644 index 000000000000..bb24fce05530 --- /dev/null +++ b/site/public/v1/games/the-city-of-metronome/index.json @@ -0,0 +1,31 @@ +{ + "id": 146926, + "slug": "the-city-of-metronome", + "name": "The City of Metronome", + "release_date": "2009-06-26", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 3" + ], + "genres": [ + "adventure video game" + ], + "stores": [], + "developers": [ + "Tarsier Studios" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4051000" + ], + "created_at": "2026-07-10T10:10:43.921337", + "updated_at": "2026-07-10T10:10:43.921337", + "url": "/v1/games/the-city-of-metronome" +} diff --git a/site/public/v1/games/the-coffin-of-andy-and-leyley-demo/index.json b/site/public/v1/games/the-coffin-of-andy-and-leyley-demo/index.json new file mode 100644 index 000000000000..a6ca0b492d6b --- /dev/null +++ b/site/public/v1/games/the-coffin-of-andy-and-leyley-demo/index.json @@ -0,0 +1,39 @@ +{ + "id": 146974, + "slug": "the-coffin-of-andy-and-leyley-demo", + "name": "The Coffin of Andy and Leyley Demo", + "release_date": "2023-03-25", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "adventure video game", + "puzzle video game", + "visual novel", + "role-playing video game", + "psychological horror video game" + ], + "stores": [], + "developers": [ + "Kit9 Studio", + "Nemlei" + ], + "publishers": [ + "Nemlei", + "Kit9 Studio" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123145896" + ], + "created_at": "2026-07-10T10:10:43.931336", + "updated_at": "2026-07-10T10:10:43.931336", + "url": "/v1/games/the-coffin-of-andy-and-leyley-demo" +} diff --git a/site/public/v1/games/the-complete-doom-accessory-pack-volume-ii/index.json b/site/public/v1/games/the-complete-doom-accessory-pack-volume-ii/index.json new file mode 100644 index 000000000000..27203ced95c3 --- /dev/null +++ b/site/public/v1/games/the-complete-doom-accessory-pack-volume-ii/index.json @@ -0,0 +1,29 @@ +{ + "id": 147015, + "slug": "the-complete-doom-accessory-pack-volume-ii", + "name": "The Complete Doom Accessory Pack, Volume II", + "release_date": "1994-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "first-person shooter" + ], + "stores": [], + "developers": [], + "publishers": [ + "Modern Microware" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131406855" + ], + "created_at": "2026-07-10T10:10:43.940337", + "updated_at": "2026-07-10T10:10:43.940337", + "url": "/v1/games/the-complete-doom-accessory-pack-volume-ii" +} diff --git a/site/public/v1/games/the-complete-doom-accessory-pack-volume-iii/index.json b/site/public/v1/games/the-complete-doom-accessory-pack-volume-iii/index.json new file mode 100644 index 000000000000..a71fec50ae86 --- /dev/null +++ b/site/public/v1/games/the-complete-doom-accessory-pack-volume-iii/index.json @@ -0,0 +1,29 @@ +{ + "id": 147016, + "slug": "the-complete-doom-accessory-pack-volume-iii", + "name": "The Complete Doom Accessory Pack, Volume III", + "release_date": "1994-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "first-person shooter" + ], + "stores": [], + "developers": [], + "publishers": [ + "Modern Microware" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131406858" + ], + "created_at": "2026-07-10T10:10:43.940337", + "updated_at": "2026-07-10T10:10:43.940337", + "url": "/v1/games/the-complete-doom-accessory-pack-volume-iii" +} diff --git a/site/public/v1/games/the-complete-doom-accessory-pack/index.json b/site/public/v1/games/the-complete-doom-accessory-pack/index.json new file mode 100644 index 000000000000..7cad27e71c68 --- /dev/null +++ b/site/public/v1/games/the-complete-doom-accessory-pack/index.json @@ -0,0 +1,29 @@ +{ + "id": 147017, + "slug": "the-complete-doom-accessory-pack", + "name": "The Complete Doom Accessory Pack", + "release_date": "1994-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "first-person shooter" + ], + "stores": [], + "developers": [], + "publishers": [ + "Modern Microware" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131406829" + ], + "created_at": "2026-07-10T10:10:43.940337", + "updated_at": "2026-07-10T10:10:43.940337", + "url": "/v1/games/the-complete-doom-accessory-pack" +} diff --git a/site/public/v1/games/the-count-of-monster-disco/index.json b/site/public/v1/games/the-count-of-monster-disco/index.json new file mode 100644 index 000000000000..26e4674dab70 --- /dev/null +++ b/site/public/v1/games/the-count-of-monster-disco/index.json @@ -0,0 +1,31 @@ +{ + "id": 147080, + "slug": "the-count-of-monster-disco", + "name": "The Count of Monster Disco", + "release_date": "2014-10-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106138" + ], + "created_at": "2026-07-10T10:10:43.954336", + "updated_at": "2026-07-10T10:10:43.954336", + "url": "/v1/games/the-count-of-monster-disco" +} diff --git a/site/public/v1/games/the-crew-wild-run/index.json b/site/public/v1/games/the-crew-wild-run/index.json new file mode 100644 index 000000000000..c2fa6b3cbb52 --- /dev/null +++ b/site/public/v1/games/the-crew-wild-run/index.json @@ -0,0 +1,25 @@ +{ + "id": 147115, + "slug": "the-crew-wild-run", + "name": "The Crew: Wild Run", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q21039874" + ], + "created_at": "2026-07-10T10:10:43.961340", + "updated_at": "2026-07-10T10:10:43.961340", + "url": "/v1/games/the-crew-wild-run" +} diff --git a/site/public/v1/games/the-crown-of-leaves-chapter-2/index.json b/site/public/v1/games/the-crown-of-leaves-chapter-2/index.json new file mode 100644 index 000000000000..ec5f7097d704 --- /dev/null +++ b/site/public/v1/games/the-crown-of-leaves-chapter-2/index.json @@ -0,0 +1,27 @@ +{ + "id": 147145, + "slug": "the-crown-of-leaves-chapter-2", + "name": "The Crown of Leaves: Chapter 2", + "release_date": "2021-03-29", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123937897" + ], + "created_at": "2026-07-10T10:10:43.968342", + "updated_at": "2026-07-10T10:10:43.968342", + "url": "/v1/games/the-crown-of-leaves-chapter-2" +} diff --git a/site/public/v1/games/the-crown-tundra/index.json b/site/public/v1/games/the-crown-tundra/index.json new file mode 100644 index 000000000000..4ddf39c63a67 --- /dev/null +++ b/site/public/v1/games/the-crown-tundra/index.json @@ -0,0 +1,29 @@ +{ + "id": 147149, + "slug": "the-crown-tundra", + "name": "The Crown Tundra", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Nintendo Switch Lite" + ], + "genres": [ + "role-playing video game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q96336612" + ], + "created_at": "2026-07-10T10:10:43.969342", + "updated_at": "2026-07-10T10:10:43.969342", + "url": "/v1/games/the-crown-tundra" +} diff --git a/site/public/v1/games/the-cures-of-monkey-island-demo/index.json b/site/public/v1/games/the-cures-of-monkey-island-demo/index.json new file mode 100644 index 000000000000..2465ceb899a3 --- /dev/null +++ b/site/public/v1/games/the-cures-of-monkey-island-demo/index.json @@ -0,0 +1,27 @@ +{ + "id": 147191, + "slug": "the-cures-of-monkey-island-demo", + "name": "The Cures of Monkey Island Demo", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Lucasfilm Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125203060" + ], + "created_at": "2026-07-10T10:10:43.977851", + "updated_at": "2026-07-10T10:10:43.977851", + "url": "/v1/games/the-cures-of-monkey-island-demo" +} diff --git a/site/public/v1/games/the-dark-knight/index.json b/site/public/v1/games/the-dark-knight/index.json new file mode 100644 index 000000000000..49a31c09b7b4 --- /dev/null +++ b/site/public/v1/games/the-dark-knight/index.json @@ -0,0 +1,33 @@ +{ + "id": 147306, + "slug": "the-dark-knight", + "name": "The Dark Knight", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 3" + ], + "genres": [ + "action game" + ], + "stores": [], + "developers": [ + "Pandemic Studios" + ], + "publishers": [ + "Warner Bros. Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q246649" + ], + "created_at": "2026-07-10T10:10:44.034052", + "updated_at": "2026-07-10T10:10:44.034052", + "url": "/v1/games/the-dark-knight" +} diff --git a/site/public/v1/games/the-devil-s-men/index.json b/site/public/v1/games/the-devil-s-men/index.json new file mode 100644 index 000000000000..645e5ca91594 --- /dev/null +++ b/site/public/v1/games/the-devil-s-men/index.json @@ -0,0 +1,31 @@ +{ + "id": 147509, + "slug": "the-devil-s-men", + "name": "The Devil's Men", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "adventure video game" + ], + "stores": [], + "developers": [ + "Daedalic Entertainment" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18389556" + ], + "created_at": "2026-07-10T10:10:44.122912", + "updated_at": "2026-07-10T10:10:44.122912", + "url": "/v1/games/the-devil-s-men" +} diff --git a/site/public/v1/games/the-disney-afternoon-collection/index.json b/site/public/v1/games/the-disney-afternoon-collection/index.json new file mode 100644 index 000000000000..462acbe4fb22 --- /dev/null +++ b/site/public/v1/games/the-disney-afternoon-collection/index.json @@ -0,0 +1,34 @@ +{ + "id": 147548, + "slug": "the-disney-afternoon-collection", + "name": "The Disney Afternoon Collection", + "release_date": "2017-04-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "action game", + "platformer" + ], + "stores": [], + "developers": [], + "publishers": [ + "Capcom", + "Disney Interactive Studios" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q29097946" + ], + "created_at": "2026-07-10T10:10:44.133777", + "updated_at": "2026-07-10T10:10:44.133777", + "url": "/v1/games/the-disney-afternoon-collection" +} diff --git a/site/public/v1/games/the-drifter-demo/index.json b/site/public/v1/games/the-drifter-demo/index.json new file mode 100644 index 000000000000..5d2c382b8713 --- /dev/null +++ b/site/public/v1/games/the-drifter-demo/index.json @@ -0,0 +1,27 @@ +{ + "id": 147657, + "slug": "the-drifter-demo", + "name": "The Drifter Demo", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "point-and-click adventure" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137478342" + ], + "created_at": "2026-07-10T10:10:44.209137", + "updated_at": "2026-07-10T10:10:44.209137", + "url": "/v1/games/the-drifter-demo" +} diff --git a/site/public/v1/games/the-ea-sports-collection/index.json b/site/public/v1/games/the-ea-sports-collection/index.json new file mode 100644 index 000000000000..db623ee648c4 --- /dev/null +++ b/site/public/v1/games/the-ea-sports-collection/index.json @@ -0,0 +1,25 @@ +{ + "id": 147713, + "slug": "the-ea-sports-collection", + "name": "The EA Sports Collection", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q96408647" + ], + "created_at": "2026-07-10T10:10:44.271230", + "updated_at": "2026-07-10T10:10:44.271230", + "url": "/v1/games/the-ea-sports-collection" +} diff --git a/site/public/v1/games/the-elder-scrolls-iii-bloodmoon/index.json b/site/public/v1/games/the-elder-scrolls-iii-bloodmoon/index.json new file mode 100644 index 000000000000..fd6b5301760f --- /dev/null +++ b/site/public/v1/games/the-elder-scrolls-iii-bloodmoon/index.json @@ -0,0 +1,33 @@ +{ + "id": 147759, + "slug": "the-elder-scrolls-iii-bloodmoon", + "name": "The Elder Scrolls III: Bloodmoon", + "release_date": "2003-06-03", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "action role-playing game" + ], + "stores": [], + "developers": [ + "Bethesda Game Studios" + ], + "publishers": [ + "Bethesda Softworks" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1393129" + ], + "created_at": "2026-07-10T10:10:44.283963", + "updated_at": "2026-07-10T10:10:44.283963", + "url": "/v1/games/the-elder-scrolls-iii-bloodmoon" +} diff --git a/site/public/v1/games/the-elder-scrolls-iii-tribunal/index.json b/site/public/v1/games/the-elder-scrolls-iii-tribunal/index.json new file mode 100644 index 000000000000..adb6e8733d9a --- /dev/null +++ b/site/public/v1/games/the-elder-scrolls-iii-tribunal/index.json @@ -0,0 +1,33 @@ +{ + "id": 147760, + "slug": "the-elder-scrolls-iii-tribunal", + "name": "The Elder Scrolls III: Tribunal", + "release_date": "2002-11-06", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "action role-playing game" + ], + "stores": [], + "developers": [ + "Bethesda Game Studios" + ], + "publishers": [ + "Bethesda Softworks" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q523133" + ], + "created_at": "2026-07-10T10:10:44.283963", + "updated_at": "2026-07-10T10:10:44.283963", + "url": "/v1/games/the-elder-scrolls-iii-tribunal" +} diff --git a/site/public/v1/games/the-elder-scrolls-iv-knights-of-the-nine/index.json b/site/public/v1/games/the-elder-scrolls-iv-knights-of-the-nine/index.json new file mode 100644 index 000000000000..2da5c9156ce2 --- /dev/null +++ b/site/public/v1/games/the-elder-scrolls-iv-knights-of-the-nine/index.json @@ -0,0 +1,33 @@ +{ + "id": 147761, + "slug": "the-elder-scrolls-iv-knights-of-the-nine", + "name": "The Elder Scrolls IV: Knights of the Nine", + "release_date": "2006-11-21", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 3", + "Microsoft Windows" + ], + "genres": [ + "role-playing video game", + "action role-playing game" + ], + "stores": [], + "developers": [ + "Bethesda Softworks" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q49608" + ], + "created_at": "2026-07-10T10:10:44.283963", + "updated_at": "2026-07-10T10:10:44.283963", + "url": "/v1/games/the-elder-scrolls-iv-knights-of-the-nine" +} diff --git a/site/public/v1/games/the-elder-scrolls-iv-shivering-isles/index.json b/site/public/v1/games/the-elder-scrolls-iv-shivering-isles/index.json new file mode 100644 index 000000000000..226e66e9b19c --- /dev/null +++ b/site/public/v1/games/the-elder-scrolls-iv-shivering-isles/index.json @@ -0,0 +1,35 @@ +{ + "id": 147764, + "slug": "the-elder-scrolls-iv-shivering-isles", + "name": "The Elder Scrolls IV: Shivering Isles", + "release_date": "2007-10-16", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 3", + "Microsoft Windows" + ], + "genres": [ + "role-playing video game", + "action role-playing game" + ], + "stores": [], + "developers": [ + "Bethesda Game Studios" + ], + "publishers": [ + "2K" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q49610" + ], + "created_at": "2026-07-10T10:10:44.284964", + "updated_at": "2026-07-10T10:10:44.284964", + "url": "/v1/games/the-elder-scrolls-iv-shivering-isles" +} diff --git a/site/public/v1/games/the-elder-scrolls-legends-moons-of-elsweyr/index.json b/site/public/v1/games/the-elder-scrolls-legends-moons-of-elsweyr/index.json new file mode 100644 index 000000000000..cfb9da014762 --- /dev/null +++ b/site/public/v1/games/the-elder-scrolls-legends-moons-of-elsweyr/index.json @@ -0,0 +1,25 @@ +{ + "id": 147765, + "slug": "the-elder-scrolls-legends-moons-of-elsweyr", + "name": "The Elder Scrolls Legends: Moons of Elsweyr", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140470734" + ], + "created_at": "2026-07-10T10:10:44.284964", + "updated_at": "2026-07-10T10:10:44.284964", + "url": "/v1/games/the-elder-scrolls-legends-moons-of-elsweyr" +} diff --git a/site/public/v1/games/the-elder-scrolls-online-ascending-tide/index.json b/site/public/v1/games/the-elder-scrolls-online-ascending-tide/index.json new file mode 100644 index 000000000000..e0a73c454bbc --- /dev/null +++ b/site/public/v1/games/the-elder-scrolls-online-ascending-tide/index.json @@ -0,0 +1,25 @@ +{ + "id": 147767, + "slug": "the-elder-scrolls-online-ascending-tide", + "name": "The Elder Scrolls Online: Ascending Tide", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140420044" + ], + "created_at": "2026-07-10T10:10:44.285972", + "updated_at": "2026-07-10T10:10:44.285972", + "url": "/v1/games/the-elder-scrolls-online-ascending-tide" +} diff --git a/site/public/v1/games/the-elder-scrolls-online-blackwood-q108871621/index.json b/site/public/v1/games/the-elder-scrolls-online-blackwood-q108871621/index.json new file mode 100644 index 000000000000..ad82c3eee716 --- /dev/null +++ b/site/public/v1/games/the-elder-scrolls-online-blackwood-q108871621/index.json @@ -0,0 +1,37 @@ +{ + "id": 147768, + "slug": "the-elder-scrolls-online-blackwood-q108871621", + "name": "The Elder Scrolls Online: Blackwood", + "release_date": "2021-06-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 5", + "PlayStation 4", + "macOS", + "Microsoft Windows" + ], + "genres": [ + "massively multiplayer online role-playing game" + ], + "stores": [], + "developers": [ + "ZeniMax Online Studios" + ], + "publishers": [ + "Bethesda Softworks" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108871621" + ], + "created_at": "2026-07-10T10:10:44.285972", + "updated_at": "2026-07-10T10:10:44.285972", + "url": "/v1/games/the-elder-scrolls-online-blackwood-q108871621" +} diff --git a/site/public/v1/games/the-elder-scrolls-online-clockwork-city/index.json b/site/public/v1/games/the-elder-scrolls-online-clockwork-city/index.json new file mode 100644 index 000000000000..05e96b07f4fc --- /dev/null +++ b/site/public/v1/games/the-elder-scrolls-online-clockwork-city/index.json @@ -0,0 +1,25 @@ +{ + "id": 147770, + "slug": "the-elder-scrolls-online-clockwork-city", + "name": "The Elder Scrolls Online: Clockwork City", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140420019" + ], + "created_at": "2026-07-10T10:10:44.285972", + "updated_at": "2026-07-10T10:10:44.285972", + "url": "/v1/games/the-elder-scrolls-online-clockwork-city" +} diff --git a/site/public/v1/games/the-elder-scrolls-online-dark-brotherhood/index.json b/site/public/v1/games/the-elder-scrolls-online-dark-brotherhood/index.json new file mode 100644 index 000000000000..a23be822fa03 --- /dev/null +++ b/site/public/v1/games/the-elder-scrolls-online-dark-brotherhood/index.json @@ -0,0 +1,25 @@ +{ + "id": 147771, + "slug": "the-elder-scrolls-online-dark-brotherhood", + "name": "The Elder Scrolls Online: Dark Brotherhood", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140420008" + ], + "created_at": "2026-07-10T10:10:44.286964", + "updated_at": "2026-07-10T10:10:44.286964", + "url": "/v1/games/the-elder-scrolls-online-dark-brotherhood" +} diff --git a/site/public/v1/games/the-elder-scrolls-online-deadlands/index.json b/site/public/v1/games/the-elder-scrolls-online-deadlands/index.json new file mode 100644 index 000000000000..d09fa609625e --- /dev/null +++ b/site/public/v1/games/the-elder-scrolls-online-deadlands/index.json @@ -0,0 +1,25 @@ +{ + "id": 147772, + "slug": "the-elder-scrolls-online-deadlands", + "name": "The Elder Scrolls Online: Deadlands", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140420051" + ], + "created_at": "2026-07-10T10:10:44.286964", + "updated_at": "2026-07-10T10:10:44.286964", + "url": "/v1/games/the-elder-scrolls-online-deadlands" +} diff --git a/site/public/v1/games/the-elder-scrolls-online-dragon-bones/index.json b/site/public/v1/games/the-elder-scrolls-online-dragon-bones/index.json new file mode 100644 index 000000000000..bfafa2929c89 --- /dev/null +++ b/site/public/v1/games/the-elder-scrolls-online-dragon-bones/index.json @@ -0,0 +1,25 @@ +{ + "id": 147773, + "slug": "the-elder-scrolls-online-dragon-bones", + "name": "The Elder Scrolls Online: Dragon Bones", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140420027" + ], + "created_at": "2026-07-10T10:10:44.287984", + "updated_at": "2026-07-10T10:10:44.287984", + "url": "/v1/games/the-elder-scrolls-online-dragon-bones" +} diff --git a/site/public/v1/games/the-elder-scrolls-online-dragonhold/index.json b/site/public/v1/games/the-elder-scrolls-online-dragonhold/index.json new file mode 100644 index 000000000000..b6269b8f790b --- /dev/null +++ b/site/public/v1/games/the-elder-scrolls-online-dragonhold/index.json @@ -0,0 +1,25 @@ +{ + "id": 147774, + "slug": "the-elder-scrolls-online-dragonhold", + "name": "The Elder Scrolls Online: Dragonhold", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140420037" + ], + "created_at": "2026-07-10T10:10:44.287984", + "updated_at": "2026-07-10T10:10:44.287984", + "url": "/v1/games/the-elder-scrolls-online-dragonhold" +} diff --git a/site/public/v1/games/the-elder-scrolls-online-elsweyr-q108871641/index.json b/site/public/v1/games/the-elder-scrolls-online-elsweyr-q108871641/index.json new file mode 100644 index 000000000000..a66f18821fd6 --- /dev/null +++ b/site/public/v1/games/the-elder-scrolls-online-elsweyr-q108871641/index.json @@ -0,0 +1,37 @@ +{ + "id": 147775, + "slug": "the-elder-scrolls-online-elsweyr-q108871641", + "name": "The Elder Scrolls Online: Elsweyr", + "release_date": "2019-06-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 5", + "PlayStation 4", + "macOS", + "Microsoft Windows" + ], + "genres": [ + "massively multiplayer online role-playing game" + ], + "stores": [], + "developers": [ + "ZeniMax Online Studios" + ], + "publishers": [ + "Bethesda Softworks" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108871641" + ], + "created_at": "2026-07-10T10:10:44.287984", + "updated_at": "2026-07-10T10:10:44.287984", + "url": "/v1/games/the-elder-scrolls-online-elsweyr-q108871641" +} diff --git a/site/public/v1/games/the-elder-scrolls-online-fallen-banners/index.json b/site/public/v1/games/the-elder-scrolls-online-fallen-banners/index.json new file mode 100644 index 000000000000..71e5ec97669f --- /dev/null +++ b/site/public/v1/games/the-elder-scrolls-online-fallen-banners/index.json @@ -0,0 +1,25 @@ +{ + "id": 147777, + "slug": "the-elder-scrolls-online-fallen-banners", + "name": "The Elder Scrolls Online: Fallen Banners", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140420070" + ], + "created_at": "2026-07-10T10:10:44.288901", + "updated_at": "2026-07-10T10:10:44.288901", + "url": "/v1/games/the-elder-scrolls-online-fallen-banners" +} diff --git a/site/public/v1/games/the-elder-scrolls-online-firesong/index.json b/site/public/v1/games/the-elder-scrolls-online-firesong/index.json new file mode 100644 index 000000000000..d1dff9c4dbee --- /dev/null +++ b/site/public/v1/games/the-elder-scrolls-online-firesong/index.json @@ -0,0 +1,25 @@ +{ + "id": 147778, + "slug": "the-elder-scrolls-online-firesong", + "name": "The Elder Scrolls Online: Firesong", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140420060" + ], + "created_at": "2026-07-10T10:10:44.288901", + "updated_at": "2026-07-10T10:10:44.288901", + "url": "/v1/games/the-elder-scrolls-online-firesong" +} diff --git a/site/public/v1/games/the-elder-scrolls-online-flames-of-ambition/index.json b/site/public/v1/games/the-elder-scrolls-online-flames-of-ambition/index.json new file mode 100644 index 000000000000..8cd032b9eef8 --- /dev/null +++ b/site/public/v1/games/the-elder-scrolls-online-flames-of-ambition/index.json @@ -0,0 +1,37 @@ +{ + "id": 147779, + "slug": "the-elder-scrolls-online-flames-of-ambition", + "name": "The Elder Scrolls Online: Flames of Ambition", + "release_date": "2021-03-08", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 5", + "PlayStation 4", + "macOS", + "Microsoft Windows" + ], + "genres": [ + "massively multiplayer online role-playing game" + ], + "stores": [], + "developers": [ + "ZeniMax Online Studios" + ], + "publishers": [ + "Bethesda Softworks" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105826196" + ], + "created_at": "2026-07-10T10:10:44.288901", + "updated_at": "2026-07-10T10:10:44.288901", + "url": "/v1/games/the-elder-scrolls-online-flames-of-ambition" +} diff --git a/site/public/v1/games/the-elder-scrolls-online-gold-road/index.json b/site/public/v1/games/the-elder-scrolls-online-gold-road/index.json new file mode 100644 index 000000000000..4f21d43fffa5 --- /dev/null +++ b/site/public/v1/games/the-elder-scrolls-online-gold-road/index.json @@ -0,0 +1,37 @@ +{ + "id": 147780, + "slug": "the-elder-scrolls-online-gold-road", + "name": "The Elder Scrolls Online: Gold Road", + "release_date": "2024-06-03", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 5", + "PlayStation 4", + "macOS", + "Microsoft Windows" + ], + "genres": [ + "massively multiplayer online role-playing game" + ], + "stores": [], + "developers": [ + "ZeniMax Online Studios" + ], + "publishers": [ + "Bethesda Softworks" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124371848" + ], + "created_at": "2026-07-10T10:10:44.289895", + "updated_at": "2026-07-10T10:10:44.289895", + "url": "/v1/games/the-elder-scrolls-online-gold-road" +} diff --git a/site/public/v1/games/the-elder-scrolls-online-harrowstorm/index.json b/site/public/v1/games/the-elder-scrolls-online-harrowstorm/index.json new file mode 100644 index 000000000000..a62f6301cf2c --- /dev/null +++ b/site/public/v1/games/the-elder-scrolls-online-harrowstorm/index.json @@ -0,0 +1,25 @@ +{ + "id": 147782, + "slug": "the-elder-scrolls-online-harrowstorm", + "name": "The Elder Scrolls Online: Harrowstorm", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140420039" + ], + "created_at": "2026-07-10T10:10:44.289895", + "updated_at": "2026-07-10T10:10:44.289895", + "url": "/v1/games/the-elder-scrolls-online-harrowstorm" +} diff --git a/site/public/v1/games/the-elder-scrolls-online-high-isle/index.json b/site/public/v1/games/the-elder-scrolls-online-high-isle/index.json new file mode 100644 index 000000000000..7178390cfed9 --- /dev/null +++ b/site/public/v1/games/the-elder-scrolls-online-high-isle/index.json @@ -0,0 +1,37 @@ +{ + "id": 147783, + "slug": "the-elder-scrolls-online-high-isle", + "name": "The Elder Scrolls Online: High Isle", + "release_date": "2022-06-06", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 5", + "PlayStation 4", + "macOS", + "Microsoft Windows" + ], + "genres": [ + "massively multiplayer online role-playing game" + ], + "stores": [], + "developers": [ + "ZeniMax Online Studios" + ], + "publishers": [ + "Bethesda Softworks" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110730357" + ], + "created_at": "2026-07-10T10:10:44.289895", + "updated_at": "2026-07-10T10:10:44.289895", + "url": "/v1/games/the-elder-scrolls-online-high-isle" +} diff --git a/site/public/v1/games/the-elder-scrolls-online-horns-of-the-reach/index.json b/site/public/v1/games/the-elder-scrolls-online-horns-of-the-reach/index.json new file mode 100644 index 000000000000..72a01d4672c4 --- /dev/null +++ b/site/public/v1/games/the-elder-scrolls-online-horns-of-the-reach/index.json @@ -0,0 +1,25 @@ +{ + "id": 147784, + "slug": "the-elder-scrolls-online-horns-of-the-reach", + "name": "The Elder Scrolls Online: Horns of the Reach", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140420016" + ], + "created_at": "2026-07-10T10:10:44.290991", + "updated_at": "2026-07-10T10:10:44.290991", + "url": "/v1/games/the-elder-scrolls-online-horns-of-the-reach" +} diff --git a/site/public/v1/games/the-elder-scrolls-online-imperial-city/index.json b/site/public/v1/games/the-elder-scrolls-online-imperial-city/index.json new file mode 100644 index 000000000000..8a3ac0acac73 --- /dev/null +++ b/site/public/v1/games/the-elder-scrolls-online-imperial-city/index.json @@ -0,0 +1,25 @@ +{ + "id": 147785, + "slug": "the-elder-scrolls-online-imperial-city", + "name": "The Elder Scrolls Online: Imperial City", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140419898" + ], + "created_at": "2026-07-10T10:10:44.290991", + "updated_at": "2026-07-10T10:10:44.290991", + "url": "/v1/games/the-elder-scrolls-online-imperial-city" +} diff --git a/site/public/v1/games/the-elder-scrolls-online-lost-depths/index.json b/site/public/v1/games/the-elder-scrolls-online-lost-depths/index.json new file mode 100644 index 000000000000..3425363b35a0 --- /dev/null +++ b/site/public/v1/games/the-elder-scrolls-online-lost-depths/index.json @@ -0,0 +1,25 @@ +{ + "id": 147786, + "slug": "the-elder-scrolls-online-lost-depths", + "name": "The Elder Scrolls Online: Lost Depths", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140420055" + ], + "created_at": "2026-07-10T10:10:44.290991", + "updated_at": "2026-07-10T10:10:44.290991", + "url": "/v1/games/the-elder-scrolls-online-lost-depths" +} diff --git a/site/public/v1/games/the-elder-scrolls-online-markarth/index.json b/site/public/v1/games/the-elder-scrolls-online-markarth/index.json new file mode 100644 index 000000000000..b6fd7726d4d7 --- /dev/null +++ b/site/public/v1/games/the-elder-scrolls-online-markarth/index.json @@ -0,0 +1,25 @@ +{ + "id": 147787, + "slug": "the-elder-scrolls-online-markarth", + "name": "The Elder Scrolls Online: Markarth", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140420047" + ], + "created_at": "2026-07-10T10:10:44.291995", + "updated_at": "2026-07-10T10:10:44.291995", + "url": "/v1/games/the-elder-scrolls-online-markarth" +} diff --git a/site/public/v1/games/the-elder-scrolls-online-morrowind/index.json b/site/public/v1/games/the-elder-scrolls-online-morrowind/index.json new file mode 100644 index 000000000000..28805216df94 --- /dev/null +++ b/site/public/v1/games/the-elder-scrolls-online-morrowind/index.json @@ -0,0 +1,37 @@ +{ + "id": 147788, + "slug": "the-elder-scrolls-online-morrowind", + "name": "The Elder Scrolls Online: Morrowind", + "release_date": "2016-06-06", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 5", + "PlayStation 4", + "macOS", + "Microsoft Windows" + ], + "genres": [ + "massively multiplayer online role-playing game" + ], + "stores": [], + "developers": [ + "ZeniMax Online Studios" + ], + "publishers": [ + "Bethesda Softworks" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108862892" + ], + "created_at": "2026-07-10T10:10:44.291995", + "updated_at": "2026-07-10T10:10:44.291995", + "url": "/v1/games/the-elder-scrolls-online-morrowind" +} diff --git a/site/public/v1/games/the-elder-scrolls-online-murkmire/index.json b/site/public/v1/games/the-elder-scrolls-online-murkmire/index.json new file mode 100644 index 000000000000..2131f8e94e62 --- /dev/null +++ b/site/public/v1/games/the-elder-scrolls-online-murkmire/index.json @@ -0,0 +1,25 @@ +{ + "id": 147789, + "slug": "the-elder-scrolls-online-murkmire", + "name": "The Elder Scrolls Online: Murkmire", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140420030" + ], + "created_at": "2026-07-10T10:10:44.291995", + "updated_at": "2026-07-10T10:10:44.291995", + "url": "/v1/games/the-elder-scrolls-online-murkmire" +} diff --git a/site/public/v1/games/the-elder-scrolls-online-necrom/index.json b/site/public/v1/games/the-elder-scrolls-online-necrom/index.json new file mode 100644 index 000000000000..30cf7893c6c9 --- /dev/null +++ b/site/public/v1/games/the-elder-scrolls-online-necrom/index.json @@ -0,0 +1,37 @@ +{ + "id": 147790, + "slug": "the-elder-scrolls-online-necrom", + "name": "The Elder Scrolls Online: Necrom", + "release_date": "2023-06-05", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 5", + "PlayStation 4", + "macOS", + "Microsoft Windows" + ], + "genres": [ + "massively multiplayer online role-playing game" + ], + "stores": [], + "developers": [ + "ZeniMax Online Studios" + ], + "publishers": [ + "Bethesda Softworks" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116448691" + ], + "created_at": "2026-07-10T10:10:44.292996", + "updated_at": "2026-07-10T10:10:44.292996", + "url": "/v1/games/the-elder-scrolls-online-necrom" +} diff --git a/site/public/v1/games/the-elder-scrolls-online-orsinium/index.json b/site/public/v1/games/the-elder-scrolls-online-orsinium/index.json new file mode 100644 index 000000000000..668bcf475604 --- /dev/null +++ b/site/public/v1/games/the-elder-scrolls-online-orsinium/index.json @@ -0,0 +1,25 @@ +{ + "id": 147791, + "slug": "the-elder-scrolls-online-orsinium", + "name": "The Elder Scrolls Online: Orsinium", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140419990" + ], + "created_at": "2026-07-10T10:10:44.292996", + "updated_at": "2026-07-10T10:10:44.292996", + "url": "/v1/games/the-elder-scrolls-online-orsinium" +} diff --git a/site/public/v1/games/the-elder-scrolls-online-scalebreaker/index.json b/site/public/v1/games/the-elder-scrolls-online-scalebreaker/index.json new file mode 100644 index 000000000000..05a2fb4f40f1 --- /dev/null +++ b/site/public/v1/games/the-elder-scrolls-online-scalebreaker/index.json @@ -0,0 +1,25 @@ +{ + "id": 147792, + "slug": "the-elder-scrolls-online-scalebreaker", + "name": "The Elder Scrolls Online: Scalebreaker", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140420036" + ], + "created_at": "2026-07-10T10:10:44.292996", + "updated_at": "2026-07-10T10:10:44.292996", + "url": "/v1/games/the-elder-scrolls-online-scalebreaker" +} diff --git a/site/public/v1/games/the-elder-scrolls-online-scions-of-ithelia/index.json b/site/public/v1/games/the-elder-scrolls-online-scions-of-ithelia/index.json new file mode 100644 index 000000000000..09e786ab26be --- /dev/null +++ b/site/public/v1/games/the-elder-scrolls-online-scions-of-ithelia/index.json @@ -0,0 +1,25 @@ +{ + "id": 147793, + "slug": "the-elder-scrolls-online-scions-of-ithelia", + "name": "The Elder Scrolls Online: Scions of Ithelia", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140420073" + ], + "created_at": "2026-07-10T10:10:44.292996", + "updated_at": "2026-07-10T10:10:44.292996", + "url": "/v1/games/the-elder-scrolls-online-scions-of-ithelia" +} diff --git a/site/public/v1/games/the-elder-scrolls-online-scribes-of-fate/index.json b/site/public/v1/games/the-elder-scrolls-online-scribes-of-fate/index.json new file mode 100644 index 000000000000..3e7531833359 --- /dev/null +++ b/site/public/v1/games/the-elder-scrolls-online-scribes-of-fate/index.json @@ -0,0 +1,25 @@ +{ + "id": 147794, + "slug": "the-elder-scrolls-online-scribes-of-fate", + "name": "The Elder Scrolls Online: Scribes of Fate", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140420068" + ], + "created_at": "2026-07-10T10:10:44.293995", + "updated_at": "2026-07-10T10:10:44.293995", + "url": "/v1/games/the-elder-scrolls-online-scribes-of-fate" +} diff --git a/site/public/v1/games/the-elder-scrolls-online-seasons-of-the-worm-cult/index.json b/site/public/v1/games/the-elder-scrolls-online-seasons-of-the-worm-cult/index.json new file mode 100644 index 000000000000..9b6aed89ec6b --- /dev/null +++ b/site/public/v1/games/the-elder-scrolls-online-seasons-of-the-worm-cult/index.json @@ -0,0 +1,25 @@ +{ + "id": 147795, + "slug": "the-elder-scrolls-online-seasons-of-the-worm-cult", + "name": "The Elder Scrolls Online: Seasons of the Worm Cult", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140420064" + ], + "created_at": "2026-07-10T10:10:44.293995", + "updated_at": "2026-07-10T10:10:44.293995", + "url": "/v1/games/the-elder-scrolls-online-seasons-of-the-worm-cult" +} diff --git a/site/public/v1/games/the-elder-scrolls-online-shadows-of-the-hist/index.json b/site/public/v1/games/the-elder-scrolls-online-shadows-of-the-hist/index.json new file mode 100644 index 000000000000..fe96a0c8ce41 --- /dev/null +++ b/site/public/v1/games/the-elder-scrolls-online-shadows-of-the-hist/index.json @@ -0,0 +1,25 @@ +{ + "id": 147796, + "slug": "the-elder-scrolls-online-shadows-of-the-hist", + "name": "The Elder Scrolls Online: Shadows of the Hist", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140420024" + ], + "created_at": "2026-07-10T10:10:44.294996", + "updated_at": "2026-07-10T10:10:44.294996", + "url": "/v1/games/the-elder-scrolls-online-shadows-of-the-hist" +} diff --git a/site/public/v1/games/the-elder-scrolls-online-stonethorn/index.json b/site/public/v1/games/the-elder-scrolls-online-stonethorn/index.json new file mode 100644 index 000000000000..79b468459d43 --- /dev/null +++ b/site/public/v1/games/the-elder-scrolls-online-stonethorn/index.json @@ -0,0 +1,25 @@ +{ + "id": 147797, + "slug": "the-elder-scrolls-online-stonethorn", + "name": "The Elder Scrolls Online: Stonethorn", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140420040" + ], + "created_at": "2026-07-10T10:10:44.294996", + "updated_at": "2026-07-10T10:10:44.294996", + "url": "/v1/games/the-elder-scrolls-online-stonethorn" +} diff --git a/site/public/v1/games/the-elder-scrolls-online-summerset/index.json b/site/public/v1/games/the-elder-scrolls-online-summerset/index.json new file mode 100644 index 000000000000..cba5c129f45f --- /dev/null +++ b/site/public/v1/games/the-elder-scrolls-online-summerset/index.json @@ -0,0 +1,37 @@ +{ + "id": 147798, + "slug": "the-elder-scrolls-online-summerset", + "name": "The Elder Scrolls Online: Summerset", + "release_date": "2018-05-21", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 5", + "PlayStation 4", + "macOS", + "Microsoft Windows" + ], + "genres": [ + "massively multiplayer online role-playing game" + ], + "stores": [], + "developers": [ + "ZeniMax Online Studios" + ], + "publishers": [ + "Bethesda Softworks" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108871552" + ], + "created_at": "2026-07-10T10:10:44.294996", + "updated_at": "2026-07-10T10:10:44.294996", + "url": "/v1/games/the-elder-scrolls-online-summerset" +} diff --git a/site/public/v1/games/the-elder-scrolls-online-thieves-guild/index.json b/site/public/v1/games/the-elder-scrolls-online-thieves-guild/index.json new file mode 100644 index 000000000000..fb716393018f --- /dev/null +++ b/site/public/v1/games/the-elder-scrolls-online-thieves-guild/index.json @@ -0,0 +1,25 @@ +{ + "id": 147799, + "slug": "the-elder-scrolls-online-thieves-guild", + "name": "The Elder Scrolls Online: Thieves Guild", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140419938" + ], + "created_at": "2026-07-10T10:10:44.294996", + "updated_at": "2026-07-10T10:10:44.294996", + "url": "/v1/games/the-elder-scrolls-online-thieves-guild" +} diff --git a/site/public/v1/games/the-elder-scrolls-online-waking-flame/index.json b/site/public/v1/games/the-elder-scrolls-online-waking-flame/index.json new file mode 100644 index 000000000000..79c798df3a59 --- /dev/null +++ b/site/public/v1/games/the-elder-scrolls-online-waking-flame/index.json @@ -0,0 +1,25 @@ +{ + "id": 147800, + "slug": "the-elder-scrolls-online-waking-flame", + "name": "The Elder Scrolls Online: Waking Flame", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140420041" + ], + "created_at": "2026-07-10T10:10:44.295995", + "updated_at": "2026-07-10T10:10:44.295995", + "url": "/v1/games/the-elder-scrolls-online-waking-flame" +} diff --git a/site/public/v1/games/the-elder-scrolls-online-wolfhunter/index.json b/site/public/v1/games/the-elder-scrolls-online-wolfhunter/index.json new file mode 100644 index 000000000000..5e2fe4071e02 --- /dev/null +++ b/site/public/v1/games/the-elder-scrolls-online-wolfhunter/index.json @@ -0,0 +1,25 @@ +{ + "id": 147801, + "slug": "the-elder-scrolls-online-wolfhunter", + "name": "The Elder Scrolls Online: Wolfhunter", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q133846514" + ], + "created_at": "2026-07-10T10:10:44.295995", + "updated_at": "2026-07-10T10:10:44.295995", + "url": "/v1/games/the-elder-scrolls-online-wolfhunter" +} diff --git a/site/public/v1/games/the-elder-scrolls-travels-oblivion/index.json b/site/public/v1/games/the-elder-scrolls-travels-oblivion/index.json new file mode 100644 index 000000000000..63b0796a729f --- /dev/null +++ b/site/public/v1/games/the-elder-scrolls-travels-oblivion/index.json @@ -0,0 +1,29 @@ +{ + "id": 147805, + "slug": "the-elder-scrolls-travels-oblivion", + "name": "The Elder Scrolls Travels: Oblivion", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation Portable" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Bethesda Softworks" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111171550" + ], + "created_at": "2026-07-10T10:10:44.297054", + "updated_at": "2026-07-10T10:10:44.297054", + "url": "/v1/games/the-elder-scrolls-travels-oblivion" +} diff --git a/site/public/v1/games/the-elder-scrolls-v-skyrim-anniversary-edition/index.json b/site/public/v1/games/the-elder-scrolls-v-skyrim-anniversary-edition/index.json new file mode 100644 index 000000000000..d994dcb06907 --- /dev/null +++ b/site/public/v1/games/the-elder-scrolls-v-skyrim-anniversary-edition/index.json @@ -0,0 +1,31 @@ +{ + "id": 147808, + "slug": "the-elder-scrolls-v-skyrim-anniversary-edition", + "name": "The Elder Scrolls V: Skyrim Anniversary Edition", + "release_date": "2021-11-11", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S" + ], + "genres": [], + "stores": [], + "developers": [ + "Bethesda Game Studios" + ], + "publishers": [ + "Bethesda Softworks" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109708349" + ], + "created_at": "2026-07-10T10:10:44.298050", + "updated_at": "2026-07-10T10:10:44.298050", + "url": "/v1/games/the-elder-scrolls-v-skyrim-anniversary-edition" +} diff --git a/site/public/v1/games/the-elder-scrolls-v-skyrim-dawnguard/index.json b/site/public/v1/games/the-elder-scrolls-v-skyrim-dawnguard/index.json new file mode 100644 index 000000000000..52464d19c9bd --- /dev/null +++ b/site/public/v1/games/the-elder-scrolls-v-skyrim-dawnguard/index.json @@ -0,0 +1,34 @@ +{ + "id": 147809, + "slug": "the-elder-scrolls-v-skyrim-dawnguard", + "name": "The Elder Scrolls V: Skyrim – Dawnguard", + "release_date": "2012-06-26", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 3", + "Microsoft Windows" + ], + "genres": [ + "action role-playing game" + ], + "stores": [], + "developers": [ + "Bethesda Game Studios" + ], + "publishers": [ + "Bethesda Softworks" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1593353" + ], + "created_at": "2026-07-10T10:10:44.298050", + "updated_at": "2026-07-10T10:10:44.298050", + "url": "/v1/games/the-elder-scrolls-v-skyrim-dawnguard" +} diff --git a/site/public/v1/games/the-elder-scrolls-v-skyrim-dragonborn/index.json b/site/public/v1/games/the-elder-scrolls-v-skyrim-dragonborn/index.json new file mode 100644 index 000000000000..8ce7223f4b77 --- /dev/null +++ b/site/public/v1/games/the-elder-scrolls-v-skyrim-dragonborn/index.json @@ -0,0 +1,34 @@ +{ + "id": 147810, + "slug": "the-elder-scrolls-v-skyrim-dragonborn", + "name": "The Elder Scrolls V: Skyrim – Dragonborn", + "release_date": "2012-12-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 3", + "Microsoft Windows" + ], + "genres": [ + "action role-playing game" + ], + "stores": [], + "developers": [ + "Bethesda Game Studios" + ], + "publishers": [ + "Bethesda Softworks" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3798561" + ], + "created_at": "2026-07-10T10:10:44.298050", + "updated_at": "2026-07-10T10:10:44.298050", + "url": "/v1/games/the-elder-scrolls-v-skyrim-dragonborn" +} diff --git a/site/public/v1/games/the-elder-scrolls-v-skyrim-hearthfire/index.json b/site/public/v1/games/the-elder-scrolls-v-skyrim-hearthfire/index.json new file mode 100644 index 000000000000..7fac96dfdbf2 --- /dev/null +++ b/site/public/v1/games/the-elder-scrolls-v-skyrim-hearthfire/index.json @@ -0,0 +1,34 @@ +{ + "id": 147811, + "slug": "the-elder-scrolls-v-skyrim-hearthfire", + "name": "The Elder Scrolls V: Skyrim – Hearthfire", + "release_date": "2012-09-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 3", + "Microsoft Windows" + ], + "genres": [ + "action role-playing game" + ], + "stores": [], + "developers": [ + "Bethesda Game Studios" + ], + "publishers": [ + "Bethesda Softworks" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q13422452" + ], + "created_at": "2026-07-10T10:10:44.298050", + "updated_at": "2026-07-10T10:10:44.298050", + "url": "/v1/games/the-elder-scrolls-v-skyrim-hearthfire" +} diff --git a/site/public/v1/games/the-er-patient-typhon-being-a-monster/index.json b/site/public/v1/games/the-er-patient-typhon-being-a-monster/index.json new file mode 100644 index 000000000000..9478787b086e --- /dev/null +++ b/site/public/v1/games/the-er-patient-typhon-being-a-monster/index.json @@ -0,0 +1,31 @@ +{ + "id": 147932, + "slug": "the-er-patient-typhon-being-a-monster", + "name": "The ER: Patient Typhon - Being a monster", + "release_date": "2021-07-15", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Professional Villains" + ], + "publishers": [ + "Professional Villains" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121084313" + ], + "created_at": "2026-07-10T10:10:44.414162", + "updated_at": "2026-07-10T10:10:44.414162", + "url": "/v1/games/the-er-patient-typhon-being-a-monster" +} diff --git a/site/public/v1/games/the-er-patient-typhon-sos/index.json b/site/public/v1/games/the-er-patient-typhon-sos/index.json new file mode 100644 index 000000000000..e3d370743ca4 --- /dev/null +++ b/site/public/v1/games/the-er-patient-typhon-sos/index.json @@ -0,0 +1,31 @@ +{ + "id": 147933, + "slug": "the-er-patient-typhon-sos", + "name": "The ER: Patient Typhon - SOS", + "release_date": "2022-04-20", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Professional Villains" + ], + "publishers": [ + "Professional Villains" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121084314" + ], + "created_at": "2026-07-10T10:10:44.415032", + "updated_at": "2026-07-10T10:10:44.415032", + "url": "/v1/games/the-er-patient-typhon-sos" +} diff --git a/site/public/v1/games/the-evil-within-the-assignment/index.json b/site/public/v1/games/the-evil-within-the-assignment/index.json new file mode 100644 index 000000000000..22d96da92e57 --- /dev/null +++ b/site/public/v1/games/the-evil-within-the-assignment/index.json @@ -0,0 +1,36 @@ +{ + "id": 147980, + "slug": "the-evil-within-the-assignment", + "name": "The Evil Within: The Assignment", + "release_date": "2015-03-10", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 4", + "PlayStation 3", + "Microsoft Windows" + ], + "genres": [ + "survival horror", + "stealth game" + ], + "stores": [], + "developers": [ + "Tango Gameworks" + ], + "publishers": [ + "Bethesda Softworks" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115754967" + ], + "created_at": "2026-07-10T10:10:44.453131", + "updated_at": "2026-07-10T10:10:44.453131", + "url": "/v1/games/the-evil-within-the-assignment" +} diff --git a/site/public/v1/games/the-evil-within-the-executioner/index.json b/site/public/v1/games/the-evil-within-the-executioner/index.json new file mode 100644 index 000000000000..97cb5bddaebf --- /dev/null +++ b/site/public/v1/games/the-evil-within-the-executioner/index.json @@ -0,0 +1,36 @@ +{ + "id": 147981, + "slug": "the-evil-within-the-executioner", + "name": "The Evil Within: The Executioner", + "release_date": "2015-05-26", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 4", + "PlayStation 3", + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "survival horror" + ], + "stores": [], + "developers": [ + "Tango Gameworks" + ], + "publishers": [ + "Bethesda Softworks" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115753497" + ], + "created_at": "2026-07-10T10:10:44.453131", + "updated_at": "2026-07-10T10:10:44.453131", + "url": "/v1/games/the-evil-within-the-executioner" +} diff --git a/site/public/v1/games/the-excellent-dizzy-collection/index.json b/site/public/v1/games/the-excellent-dizzy-collection/index.json new file mode 100644 index 000000000000..30cf9f747284 --- /dev/null +++ b/site/public/v1/games/the-excellent-dizzy-collection/index.json @@ -0,0 +1,31 @@ +{ + "id": 147987, + "slug": "the-excellent-dizzy-collection", + "name": "The Excellent Dizzy Collection", + "release_date": "1993-11-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "action game" + ], + "stores": [], + "developers": [ + "Blitz Games" + ], + "publishers": [ + "Codemasters" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7732742" + ], + "created_at": "2026-07-10T10:10:44.457045", + "updated_at": "2026-07-10T10:10:44.457045", + "url": "/v1/games/the-excellent-dizzy-collection" +} diff --git a/site/public/v1/games/the-fall-mutant-city/index.json b/site/public/v1/games/the-fall-mutant-city/index.json new file mode 100644 index 000000000000..09a7f4b7b27d --- /dev/null +++ b/site/public/v1/games/the-fall-mutant-city/index.json @@ -0,0 +1,25 @@ +{ + "id": 148077, + "slug": "the-fall-mutant-city", + "name": "The Fall - Mutant City", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135225965" + ], + "created_at": "2026-07-10T10:10:44.487037", + "updated_at": "2026-07-10T10:10:44.487037", + "url": "/v1/games/the-fall-mutant-city" +} diff --git a/site/public/v1/games/the-finals-1150-multibucks/index.json b/site/public/v1/games/the-finals-1150-multibucks/index.json new file mode 100644 index 000000000000..666dada89f97 --- /dev/null +++ b/site/public/v1/games/the-finals-1150-multibucks/index.json @@ -0,0 +1,33 @@ +{ + "id": 148227, + "slug": "the-finals-1150-multibucks", + "name": "THE FINALS - 1150 Multibucks", + "release_date": "2023-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 5" + ], + "genres": [ + "first-person shooter" + ], + "stores": [], + "developers": [ + "Embark Studios" + ], + "publishers": [ + "Embark Studios" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124658896" + ], + "created_at": "2026-07-10T10:10:44.539032", + "updated_at": "2026-07-10T10:10:44.539032", + "url": "/v1/games/the-finals-1150-multibucks" +} diff --git a/site/public/v1/games/the-finals-13-000-multibucks/index.json b/site/public/v1/games/the-finals-13-000-multibucks/index.json new file mode 100644 index 000000000000..7179cd853685 --- /dev/null +++ b/site/public/v1/games/the-finals-13-000-multibucks/index.json @@ -0,0 +1,33 @@ +{ + "id": 148228, + "slug": "the-finals-13-000-multibucks", + "name": "THE FINALS - 13 000 Multibucks", + "release_date": "2023-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 5" + ], + "genres": [ + "first-person shooter" + ], + "stores": [], + "developers": [ + "Embark Studios" + ], + "publishers": [ + "Embark Studios" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124668429" + ], + "created_at": "2026-07-10T10:10:44.539032", + "updated_at": "2026-07-10T10:10:44.539032", + "url": "/v1/games/the-finals-13-000-multibucks" +} diff --git a/site/public/v1/games/the-finals-2-400-multibucks/index.json b/site/public/v1/games/the-finals-2-400-multibucks/index.json new file mode 100644 index 000000000000..e11522cd03cf --- /dev/null +++ b/site/public/v1/games/the-finals-2-400-multibucks/index.json @@ -0,0 +1,33 @@ +{ + "id": 148229, + "slug": "the-finals-2-400-multibucks", + "name": "THE FINALS - 2 400 Multibucks", + "release_date": "2023-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 5" + ], + "genres": [ + "first-person shooter" + ], + "stores": [], + "developers": [ + "Embark Studios" + ], + "publishers": [ + "Embark Studios" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124668431" + ], + "created_at": "2026-07-10T10:10:44.540033", + "updated_at": "2026-07-10T10:10:44.540033", + "url": "/v1/games/the-finals-2-400-multibucks" +} diff --git a/site/public/v1/games/the-finals-500-multibucks/index.json b/site/public/v1/games/the-finals-500-multibucks/index.json new file mode 100644 index 000000000000..13accbaf25ee --- /dev/null +++ b/site/public/v1/games/the-finals-500-multibucks/index.json @@ -0,0 +1,33 @@ +{ + "id": 148230, + "slug": "the-finals-500-multibucks", + "name": "THE FINALS - 500 Multibucks", + "release_date": "2023-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 5" + ], + "genres": [ + "first-person shooter" + ], + "stores": [], + "developers": [ + "Embark Studios" + ], + "publishers": [ + "Embark Studios" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124668426" + ], + "created_at": "2026-07-10T10:10:44.540033", + "updated_at": "2026-07-10T10:10:44.540033", + "url": "/v1/games/the-finals-500-multibucks" +} diff --git a/site/public/v1/games/the-finals-6-250-multibucks/index.json b/site/public/v1/games/the-finals-6-250-multibucks/index.json new file mode 100644 index 000000000000..0a86cc5e38ca --- /dev/null +++ b/site/public/v1/games/the-finals-6-250-multibucks/index.json @@ -0,0 +1,33 @@ +{ + "id": 148231, + "slug": "the-finals-6-250-multibucks", + "name": "THE FINALS - 6 250 Multibucks", + "release_date": "2023-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 5" + ], + "genres": [ + "first-person shooter" + ], + "stores": [], + "developers": [ + "Embark Studios" + ], + "publishers": [ + "Embark Studios" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124668419" + ], + "created_at": "2026-07-10T10:10:44.540033", + "updated_at": "2026-07-10T10:10:44.540033", + "url": "/v1/games/the-finals-6-250-multibucks" +} diff --git a/site/public/v1/games/the-finals-bank-rabbit-set/index.json b/site/public/v1/games/the-finals-bank-rabbit-set/index.json new file mode 100644 index 000000000000..a88c52d4626c --- /dev/null +++ b/site/public/v1/games/the-finals-bank-rabbit-set/index.json @@ -0,0 +1,33 @@ +{ + "id": 148232, + "slug": "the-finals-bank-rabbit-set", + "name": "THE FINALS - Bank Rabbit Set", + "release_date": "2024-03-27", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 5" + ], + "genres": [ + "first-person shooter" + ], + "stores": [], + "developers": [ + "Embark Studios" + ], + "publishers": [ + "Embark Studios" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125386655" + ], + "created_at": "2026-07-10T10:10:44.540033", + "updated_at": "2026-07-10T10:10:44.540033", + "url": "/v1/games/the-finals-bank-rabbit-set" +} diff --git a/site/public/v1/games/the-finals-s-o-sleek-bundle/index.json b/site/public/v1/games/the-finals-s-o-sleek-bundle/index.json new file mode 100644 index 000000000000..268ce837115a --- /dev/null +++ b/site/public/v1/games/the-finals-s-o-sleek-bundle/index.json @@ -0,0 +1,33 @@ +{ + "id": 148233, + "slug": "the-finals-s-o-sleek-bundle", + "name": "THE FINALS - S.O Sleek Bundle", + "release_date": "2023-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 5" + ], + "genres": [ + "first-person shooter" + ], + "stores": [], + "developers": [ + "Embark Studios" + ], + "publishers": [ + "Embark Studios" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124877575" + ], + "created_at": "2026-07-10T10:10:44.541032", + "updated_at": "2026-07-10T10:10:44.541032", + "url": "/v1/games/the-finals-s-o-sleek-bundle" +} diff --git a/site/public/v1/games/the-finals-volpe-immersion-bundle/index.json b/site/public/v1/games/the-finals-volpe-immersion-bundle/index.json new file mode 100644 index 000000000000..72972300291b --- /dev/null +++ b/site/public/v1/games/the-finals-volpe-immersion-bundle/index.json @@ -0,0 +1,33 @@ +{ + "id": 148234, + "slug": "the-finals-volpe-immersion-bundle", + "name": "THE FINALS - VOLPE Immersion Bundle", + "release_date": "2023-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 5" + ], + "genres": [ + "first-person shooter" + ], + "stores": [], + "developers": [ + "Embark Studios" + ], + "publishers": [ + "Embark Studios" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124668421" + ], + "created_at": "2026-07-10T10:10:44.541032", + "updated_at": "2026-07-10T10:10:44.541032", + "url": "/v1/games/the-finals-volpe-immersion-bundle" +} diff --git a/site/public/v1/games/the-forest-song/index.json b/site/public/v1/games/the-forest-song/index.json new file mode 100644 index 000000000000..ed7b6839bb46 --- /dev/null +++ b/site/public/v1/games/the-forest-song/index.json @@ -0,0 +1,25 @@ +{ + "id": 148351, + "slug": "the-forest-song", + "name": "The Forest Song", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25442177" + ], + "created_at": "2026-07-10T10:10:44.571620", + "updated_at": "2026-07-10T10:10:44.571620", + "url": "/v1/games/the-forest-song" +} diff --git a/site/public/v1/games/the-fountain-of-youth/index.json b/site/public/v1/games/the-fountain-of-youth/index.json new file mode 100644 index 000000000000..c0a7a3356ae5 --- /dev/null +++ b/site/public/v1/games/the-fountain-of-youth/index.json @@ -0,0 +1,27 @@ +{ + "id": 148389, + "slug": "the-fountain-of-youth", + "name": "The Fountain of Youth", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "point-and-click adventure" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124419254" + ], + "created_at": "2026-07-10T10:10:44.581745", + "updated_at": "2026-07-10T10:10:44.581745", + "url": "/v1/games/the-fountain-of-youth" +} diff --git a/site/public/v1/games/the-francy-droo-friends-collection/index.json b/site/public/v1/games/the-francy-droo-friends-collection/index.json new file mode 100644 index 000000000000..35cf179c4e09 --- /dev/null +++ b/site/public/v1/games/the-francy-droo-friends-collection/index.json @@ -0,0 +1,34 @@ +{ + "id": 148407, + "slug": "the-francy-droo-friends-collection", + "name": "The Francy Droo & Friends Collection", + "release_date": "2017-12-05", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "adventure video game" + ], + "stores": [], + "developers": [ + "Oh, a Rock! Studios" + ], + "publishers": [ + "Oh, a Rock! Studios" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60619710" + ], + "created_at": "2026-07-10T10:10:44.586698", + "updated_at": "2026-07-10T10:10:44.586698", + "url": "/v1/games/the-francy-droo-friends-collection" +} diff --git a/site/public/v1/games/the-game-of-gnomes/index.json b/site/public/v1/games/the-game-of-gnomes/index.json new file mode 100644 index 000000000000..7c06b0630809 --- /dev/null +++ b/site/public/v1/games/the-game-of-gnomes/index.json @@ -0,0 +1,33 @@ +{ + "id": 148461, + "slug": "the-game-of-gnomes", + "name": "The Game of Gnomes", + "release_date": "2014-12-11", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106181" + ], + "created_at": "2026-07-10T10:10:44.600698", + "updated_at": "2026-07-10T10:10:44.600698", + "url": "/v1/games/the-game-of-gnomes" +} diff --git a/site/public/v1/games/the-gardens-between-q114840396/index.json b/site/public/v1/games/the-gardens-between-q114840396/index.json new file mode 100644 index 000000000000..c89c72d2c814 --- /dev/null +++ b/site/public/v1/games/the-gardens-between-q114840396/index.json @@ -0,0 +1,28 @@ +{ + "id": 148494, + "slug": "the-gardens-between-q114840396", + "name": "The Gardens Between+", + "release_date": "2022-10-14", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "iPadOS", + "iOS" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q114840396" + ], + "created_at": "2026-07-10T10:10:44.609698", + "updated_at": "2026-07-10T10:10:44.609698", + "url": "/v1/games/the-gardens-between-q114840396" +} diff --git a/site/public/v1/games/the-getaway-3/index.json b/site/public/v1/games/the-getaway-3/index.json new file mode 100644 index 000000000000..d014f304c2a7 --- /dev/null +++ b/site/public/v1/games/the-getaway-3/index.json @@ -0,0 +1,29 @@ +{ + "id": 148525, + "slug": "the-getaway-3", + "name": "The Getaway 3", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 3" + ], + "genres": [ + "action game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1133259" + ], + "created_at": "2026-07-10T10:10:44.617823", + "updated_at": "2026-07-10T10:10:44.617823", + "url": "/v1/games/the-getaway-3" +} diff --git a/site/public/v1/games/the-great-ace-attorney-chronicles/index.json b/site/public/v1/games/the-great-ace-attorney-chronicles/index.json new file mode 100644 index 000000000000..529c428a0e3c --- /dev/null +++ b/site/public/v1/games/the-great-ace-attorney-chronicles/index.json @@ -0,0 +1,34 @@ +{ + "id": 148677, + "slug": "the-great-ace-attorney-chronicles", + "name": "The Great Ace Attorney Chronicles", + "release_date": "2021-07-27", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "adventure video game" + ], + "stores": [], + "developers": [ + "Capcom" + ], + "publishers": [ + "Capcom" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107234728" + ], + "created_at": "2026-07-10T10:10:44.657773", + "updated_at": "2026-07-10T10:10:44.657773", + "url": "/v1/games/the-great-ace-attorney-chronicles" +} diff --git a/site/public/v1/games/the-grimm-troupe/index.json b/site/public/v1/games/the-grimm-troupe/index.json new file mode 100644 index 000000000000..059ba3d51333 --- /dev/null +++ b/site/public/v1/games/the-grimm-troupe/index.json @@ -0,0 +1,27 @@ +{ + "id": 148774, + "slug": "the-grimm-troupe", + "name": "The Grimm Troupe", + "release_date": "2017-10-26", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [ + "Team Cherry" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116592506" + ], + "created_at": "2026-07-10T10:10:44.716084", + "updated_at": "2026-07-10T10:10:44.716084", + "url": "/v1/games/the-grimm-troupe" +} diff --git a/site/public/v1/games/the-guild-2-venice/index.json b/site/public/v1/games/the-guild-2-venice/index.json new file mode 100644 index 000000000000..af18ce86921f --- /dev/null +++ b/site/public/v1/games/the-guild-2-venice/index.json @@ -0,0 +1,25 @@ +{ + "id": 148809, + "slug": "the-guild-2-venice", + "name": "The Guild 2: Venice", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q9358017" + ], + "created_at": "2026-07-10T10:10:44.725146", + "updated_at": "2026-07-10T10:10:44.725146", + "url": "/v1/games/the-guild-2-venice" +} diff --git a/site/public/v1/games/the-hero-project-open-season-mechip-warning-system-9-0/index.json b/site/public/v1/games/the-hero-project-open-season-mechip-warning-system-9-0/index.json new file mode 100644 index 000000000000..0beb58e38096 --- /dev/null +++ b/site/public/v1/games/the-hero-project-open-season-mechip-warning-system-9-0/index.json @@ -0,0 +1,32 @@ +{ + "id": 148939, + "slug": "the-hero-project-open-season-mechip-warning-system-9-0", + "name": "The Hero Project: Open Season - MeChip Warning System 9.0", + "release_date": "2018-04-05", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Choice of Games" + ], + "publishers": [ + "Choice of Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115016166" + ], + "created_at": "2026-07-10T10:10:44.759286", + "updated_at": "2026-07-10T10:10:44.759286", + "url": "/v1/games/the-hero-project-open-season-mechip-warning-system-9-0" +} diff --git a/site/public/v1/games/the-hero-project-open-season-prodigal-s-database-for-powereds/index.json b/site/public/v1/games/the-hero-project-open-season-prodigal-s-database-for-powereds/index.json new file mode 100644 index 000000000000..4c948a02ad97 --- /dev/null +++ b/site/public/v1/games/the-hero-project-open-season-prodigal-s-database-for-powereds/index.json @@ -0,0 +1,32 @@ +{ + "id": 148940, + "slug": "the-hero-project-open-season-prodigal-s-database-for-powereds", + "name": "The Hero Project: Open Season - Prodigal's Database for Powereds", + "release_date": "2018-04-05", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Choice of Games" + ], + "publishers": [ + "Choice of Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115016170" + ], + "created_at": "2026-07-10T10:10:44.760289", + "updated_at": "2026-07-10T10:10:44.760289", + "url": "/v1/games/the-hero-project-open-season-prodigal-s-database-for-powereds" +} diff --git a/site/public/v1/games/the-hero-project-redemption-season-mechip-warning-system/index.json b/site/public/v1/games/the-hero-project-redemption-season-mechip-warning-system/index.json new file mode 100644 index 000000000000..a8d1eab0b2e5 --- /dev/null +++ b/site/public/v1/games/the-hero-project-redemption-season-mechip-warning-system/index.json @@ -0,0 +1,32 @@ +{ + "id": 148942, + "slug": "the-hero-project-redemption-season-mechip-warning-system", + "name": "The Hero Project: Redemption Season - MeChip Warning System", + "release_date": "2016-04-08", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Choice of Games" + ], + "publishers": [ + "Choice of Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115016125" + ], + "created_at": "2026-07-10T10:10:44.760289", + "updated_at": "2026-07-10T10:10:44.760289", + "url": "/v1/games/the-hero-project-redemption-season-mechip-warning-system" +} diff --git a/site/public/v1/games/the-hero-project-redemption-season-the-youpower-project/index.json b/site/public/v1/games/the-hero-project-redemption-season-the-youpower-project/index.json new file mode 100644 index 000000000000..83d79af1440b --- /dev/null +++ b/site/public/v1/games/the-hero-project-redemption-season-the-youpower-project/index.json @@ -0,0 +1,32 @@ +{ + "id": 148943, + "slug": "the-hero-project-redemption-season-the-youpower-project", + "name": "The Hero Project: Redemption Season - The YouPower Project", + "release_date": "2017-09-14", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Choice of Games" + ], + "publishers": [ + "Choice of Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115016164" + ], + "created_at": "2026-07-10T10:10:44.760289", + "updated_at": "2026-07-10T10:10:44.760289", + "url": "/v1/games/the-hero-project-redemption-season-the-youpower-project" +} diff --git a/site/public/v1/games/the-hidden-treasure-of-area-zero/index.json b/site/public/v1/games/the-hidden-treasure-of-area-zero/index.json new file mode 100644 index 000000000000..042f9974956d --- /dev/null +++ b/site/public/v1/games/the-hidden-treasure-of-area-zero/index.json @@ -0,0 +1,29 @@ +{ + "id": 148969, + "slug": "the-hidden-treasure-of-area-zero", + "name": "The Hidden Treasure of Area Zero", + "release_date": "2023-02-27", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [ + "Game Freak" + ], + "publishers": [ + "Nintendo" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122755874" + ], + "created_at": "2026-07-10T10:10:44.767222", + "updated_at": "2026-07-10T10:10:44.767222", + "url": "/v1/games/the-hidden-treasure-of-area-zero" +} diff --git a/site/public/v1/games/the-holiday-express/index.json b/site/public/v1/games/the-holiday-express/index.json new file mode 100644 index 000000000000..9972628330ed --- /dev/null +++ b/site/public/v1/games/the-holiday-express/index.json @@ -0,0 +1,33 @@ +{ + "id": 149002, + "slug": "the-holiday-express", + "name": "The Holiday Express", + "release_date": "2013-12-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106207" + ], + "created_at": "2026-07-10T10:10:44.775907", + "updated_at": "2026-07-10T10:10:44.775907", + "url": "/v1/games/the-holiday-express" +} diff --git a/site/public/v1/games/the-house-of-the-dead-2-3-return/index.json b/site/public/v1/games/the-house-of-the-dead-2-3-return/index.json new file mode 100644 index 000000000000..f981c0fb0827 --- /dev/null +++ b/site/public/v1/games/the-house-of-the-dead-2-3-return/index.json @@ -0,0 +1,33 @@ +{ + "id": 149073, + "slug": "the-house-of-the-dead-2-3-return", + "name": "The House of the Dead 2 & 3 Return", + "release_date": "2008-03-11", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Wii" + ], + "genres": [ + "light-gun shooter" + ], + "stores": [], + "developers": [ + "Sega" + ], + "publishers": [ + "Sega" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3283528" + ], + "created_at": "2026-07-10T10:10:44.828291", + "updated_at": "2026-07-10T10:10:44.828291", + "url": "/v1/games/the-house-of-the-dead-2-3-return" +} diff --git a/site/public/v1/games/the-house-of-the-dead-overkill-extended-cut/index.json b/site/public/v1/games/the-house-of-the-dead-overkill-extended-cut/index.json new file mode 100644 index 000000000000..f8057f872608 --- /dev/null +++ b/site/public/v1/games/the-house-of-the-dead-overkill-extended-cut/index.json @@ -0,0 +1,33 @@ +{ + "id": 149078, + "slug": "the-house-of-the-dead-overkill-extended-cut", + "name": "The House of the Dead: Overkill – Extended Cut", + "release_date": "2011-10-25", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 3" + ], + "genres": [ + "rail shooter" + ], + "stores": [], + "developers": [ + "Headstrong Games" + ], + "publishers": [ + "Sega" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107424317" + ], + "created_at": "2026-07-10T10:10:44.829226", + "updated_at": "2026-07-10T10:10:44.829226", + "url": "/v1/games/the-house-of-the-dead-overkill-extended-cut" +} diff --git a/site/public/v1/games/the-hunger-games-panem-rising/index.json b/site/public/v1/games/the-hunger-games-panem-rising/index.json new file mode 100644 index 000000000000..183518334ca7 --- /dev/null +++ b/site/public/v1/games/the-hunger-games-panem-rising/index.json @@ -0,0 +1,25 @@ +{ + "id": 149115, + "slug": "the-hunger-games-panem-rising", + "name": "The Hunger Games: Panem Rising", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140471205" + ], + "created_at": "2026-07-10T10:10:44.839273", + "updated_at": "2026-07-10T10:10:44.839273", + "url": "/v1/games/the-hunger-games-panem-rising" +} diff --git a/site/public/v1/games/the-ico-shadow-of-the-colossus-collection/index.json b/site/public/v1/games/the-ico-shadow-of-the-colossus-collection/index.json new file mode 100644 index 000000000000..370b6507c220 --- /dev/null +++ b/site/public/v1/games/the-ico-shadow-of-the-colossus-collection/index.json @@ -0,0 +1,33 @@ +{ + "id": 149167, + "slug": "the-ico-shadow-of-the-colossus-collection", + "name": "The Ico & Shadow of the Colossus Collection", + "release_date": "2011-09-22", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 3" + ], + "genres": [ + "action-adventure game" + ], + "stores": [], + "developers": [ + "Team Ico" + ], + "publishers": [ + "Sony Interactive Entertainment" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7741308" + ], + "created_at": "2026-07-10T10:10:44.853311", + "updated_at": "2026-07-10T10:10:44.853311", + "url": "/v1/games/the-ico-shadow-of-the-colossus-collection" +} diff --git a/site/public/v1/games/the-iconian-war/index.json b/site/public/v1/games/the-iconian-war/index.json new file mode 100644 index 000000000000..a9aac8723ac9 --- /dev/null +++ b/site/public/v1/games/the-iconian-war/index.json @@ -0,0 +1,25 @@ +{ + "id": 149169, + "slug": "the-iconian-war", + "name": "The Iconian War", + "release_date": "2015-04-21", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q57973877" + ], + "created_at": "2026-07-10T10:10:44.854282", + "updated_at": "2026-07-10T10:10:44.854282", + "url": "/v1/games/the-iconian-war" +} diff --git a/site/public/v1/games/the-incredible-machine-mega-pack/index.json b/site/public/v1/games/the-incredible-machine-mega-pack/index.json new file mode 100644 index 000000000000..27a324c7712f --- /dev/null +++ b/site/public/v1/games/the-incredible-machine-mega-pack/index.json @@ -0,0 +1,25 @@ +{ + "id": 149246, + "slug": "the-incredible-machine-mega-pack", + "name": "The Incredible Machine Mega Pack", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136385693" + ], + "created_at": "2026-07-10T10:10:44.872344", + "updated_at": "2026-07-10T10:10:44.872344", + "url": "/v1/games/the-incredible-machine-mega-pack" +} diff --git a/site/public/v1/games/the-indigo-disk/index.json b/site/public/v1/games/the-indigo-disk/index.json new file mode 100644 index 000000000000..9dd00868e1de --- /dev/null +++ b/site/public/v1/games/the-indigo-disk/index.json @@ -0,0 +1,27 @@ +{ + "id": 149261, + "slug": "the-indigo-disk", + "name": "The Indigo Disk", + "release_date": "2023-12-14", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Nintendo Switch Lite" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130331621" + ], + "created_at": "2026-07-10T10:10:44.877010", + "updated_at": "2026-07-10T10:10:44.877010", + "url": "/v1/games/the-indigo-disk" +} diff --git a/site/public/v1/games/the-internet-hunt/index.json b/site/public/v1/games/the-internet-hunt/index.json new file mode 100644 index 000000000000..58be0bef7b66 --- /dev/null +++ b/site/public/v1/games/the-internet-hunt/index.json @@ -0,0 +1,25 @@ +{ + "id": 149310, + "slug": "the-internet-hunt", + "name": "The Internet Hunt", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7742346" + ], + "created_at": "2026-07-10T10:10:44.889922", + "updated_at": "2026-07-10T10:10:44.889922", + "url": "/v1/games/the-internet-hunt" +} diff --git a/site/public/v1/games/the-isle-of-armor/index.json b/site/public/v1/games/the-isle-of-armor/index.json new file mode 100644 index 000000000000..46d6d2f0b107 --- /dev/null +++ b/site/public/v1/games/the-isle-of-armor/index.json @@ -0,0 +1,29 @@ +{ + "id": 149356, + "slug": "the-isle-of-armor", + "name": "The Isle of Armor", + "release_date": "2020-06-17", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Nintendo Switch Lite" + ], + "genres": [ + "role-playing video game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q96335562" + ], + "created_at": "2026-07-10T10:10:44.909991", + "updated_at": "2026-07-10T10:10:44.909991", + "url": "/v1/games/the-isle-of-armor" +} diff --git a/site/public/v1/games/the-last-kids-on-earth-happy-apocalypse-to-you/index.json b/site/public/v1/games/the-last-kids-on-earth-happy-apocalypse-to-you/index.json new file mode 100644 index 000000000000..2913d8512fd9 --- /dev/null +++ b/site/public/v1/games/the-last-kids-on-earth-happy-apocalypse-to-you/index.json @@ -0,0 +1,25 @@ +{ + "id": 149780, + "slug": "the-last-kids-on-earth-happy-apocalypse-to-you", + "name": "The Last Kids on Earth: Happy Apocalypse to You", + "release_date": "2021-04-06", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106469851" + ], + "created_at": "2026-07-10T10:10:45.147874", + "updated_at": "2026-07-10T10:10:45.147874", + "url": "/v1/games/the-last-kids-on-earth-happy-apocalypse-to-you" +} diff --git a/site/public/v1/games/the-last-of-us-online/index.json b/site/public/v1/games/the-last-of-us-online/index.json new file mode 100644 index 000000000000..4bd4113e8320 --- /dev/null +++ b/site/public/v1/games/the-last-of-us-online/index.json @@ -0,0 +1,33 @@ +{ + "id": 149818, + "slug": "the-last-of-us-online", + "name": "The Last of Us Online", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "action-adventure game", + "third-person shooter", + "stealth game" + ], + "stores": [], + "developers": [ + "Naughty Dog" + ], + "publishers": [ + "Sony Interactive Entertainment" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113751770" + ], + "created_at": "2026-07-10T10:10:45.158836", + "updated_at": "2026-07-10T10:10:45.158836", + "url": "/v1/games/the-last-of-us-online" +} diff --git a/site/public/v1/games/the-last-of-us-part-i-digital-deluxe-edition/index.json b/site/public/v1/games/the-last-of-us-part-i-digital-deluxe-edition/index.json new file mode 100644 index 000000000000..f12387110291 --- /dev/null +++ b/site/public/v1/games/the-last-of-us-part-i-digital-deluxe-edition/index.json @@ -0,0 +1,36 @@ +{ + "id": 149819, + "slug": "the-last-of-us-part-i-digital-deluxe-edition", + "name": "The Last of Us Part I (Digital Deluxe Edition)", + "release_date": "2022-09-02", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 5", + "Microsoft Windows" + ], + "genres": [ + "survival horror", + "action-adventure game", + "stealth game" + ], + "stores": [], + "developers": [ + "Naughty Dog" + ], + "publishers": [ + "Sony Interactive Entertainment" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113681980" + ], + "created_at": "2026-07-10T10:10:45.158836", + "updated_at": "2026-07-10T10:10:45.158836", + "url": "/v1/games/the-last-of-us-part-i-digital-deluxe-edition" +} diff --git a/site/public/v1/games/the-last-of-us-part-i-firefly-edition/index.json b/site/public/v1/games/the-last-of-us-part-i-firefly-edition/index.json new file mode 100644 index 000000000000..8e5fcb88bb5a --- /dev/null +++ b/site/public/v1/games/the-last-of-us-part-i-firefly-edition/index.json @@ -0,0 +1,35 @@ +{ + "id": 149820, + "slug": "the-last-of-us-part-i-firefly-edition", + "name": "The Last of Us Part I (Firefly Edition)", + "release_date": "2022-09-02", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 5" + ], + "genres": [ + "survival horror", + "action-adventure game", + "stealth game" + ], + "stores": [], + "developers": [ + "Naughty Dog" + ], + "publishers": [ + "Sony Interactive Entertainment" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113681987" + ], + "created_at": "2026-07-10T10:10:45.158836", + "updated_at": "2026-07-10T10:10:45.158836", + "url": "/v1/games/the-last-of-us-part-i-firefly-edition" +} diff --git a/site/public/v1/games/the-last-of-us-part-ii-collector-s-edition/index.json b/site/public/v1/games/the-last-of-us-part-ii-collector-s-edition/index.json new file mode 100644 index 000000000000..200353e8e9dc --- /dev/null +++ b/site/public/v1/games/the-last-of-us-part-ii-collector-s-edition/index.json @@ -0,0 +1,35 @@ +{ + "id": 149822, + "slug": "the-last-of-us-part-ii-collector-s-edition", + "name": "The Last of Us Part II (Collector's Edition)", + "release_date": "2020-06-19", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 4" + ], + "genres": [ + "survival horror", + "action-adventure game", + "stealth game" + ], + "stores": [], + "developers": [ + "Naughty Dog" + ], + "publishers": [ + "Sony Interactive Entertainment" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q88310599" + ], + "created_at": "2026-07-10T10:10:45.158836", + "updated_at": "2026-07-10T10:10:45.158836", + "url": "/v1/games/the-last-of-us-part-ii-collector-s-edition" +} diff --git a/site/public/v1/games/the-last-of-us-part-ii-digital-deluxe-edition/index.json b/site/public/v1/games/the-last-of-us-part-ii-digital-deluxe-edition/index.json new file mode 100644 index 000000000000..3e9a258e4c63 --- /dev/null +++ b/site/public/v1/games/the-last-of-us-part-ii-digital-deluxe-edition/index.json @@ -0,0 +1,35 @@ +{ + "id": 149823, + "slug": "the-last-of-us-part-ii-digital-deluxe-edition", + "name": "The Last of Us Part II (Digital Deluxe Edition)", + "release_date": "2020-06-19", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 4" + ], + "genres": [ + "survival horror", + "action-adventure game", + "stealth game" + ], + "stores": [], + "developers": [ + "Naughty Dog" + ], + "publishers": [ + "Sony Interactive Entertainment" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q88291753" + ], + "created_at": "2026-07-10T10:10:45.159850", + "updated_at": "2026-07-10T10:10:45.159850", + "url": "/v1/games/the-last-of-us-part-ii-digital-deluxe-edition" +} diff --git a/site/public/v1/games/the-last-of-us-part-ii-ellie-edition/index.json b/site/public/v1/games/the-last-of-us-part-ii-ellie-edition/index.json new file mode 100644 index 000000000000..78a6ad8879f9 --- /dev/null +++ b/site/public/v1/games/the-last-of-us-part-ii-ellie-edition/index.json @@ -0,0 +1,35 @@ +{ + "id": 149824, + "slug": "the-last-of-us-part-ii-ellie-edition", + "name": "The Last of Us Part II (Ellie Edition)", + "release_date": "2020-06-19", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 4" + ], + "genres": [ + "survival horror", + "action-adventure game", + "stealth game" + ], + "stores": [], + "developers": [ + "Naughty Dog" + ], + "publishers": [ + "Sony Interactive Entertainment" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q88311456" + ], + "created_at": "2026-07-10T10:10:45.159850", + "updated_at": "2026-07-10T10:10:45.159850", + "url": "/v1/games/the-last-of-us-part-ii-ellie-edition" +} diff --git a/site/public/v1/games/the-last-of-us-part-ii-special-edition/index.json b/site/public/v1/games/the-last-of-us-part-ii-special-edition/index.json new file mode 100644 index 000000000000..b349ffb250a2 --- /dev/null +++ b/site/public/v1/games/the-last-of-us-part-ii-special-edition/index.json @@ -0,0 +1,35 @@ +{ + "id": 149826, + "slug": "the-last-of-us-part-ii-special-edition", + "name": "The Last of Us Part II (Special Edition)", + "release_date": "2020-06-19", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 4" + ], + "genres": [ + "survival horror", + "action-adventure game", + "stealth game" + ], + "stores": [], + "developers": [ + "Naughty Dog" + ], + "publishers": [ + "Sony Interactive Entertainment" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q88305796" + ], + "created_at": "2026-07-10T10:10:45.159850", + "updated_at": "2026-07-10T10:10:45.159850", + "url": "/v1/games/the-last-of-us-part-ii-special-edition" +} diff --git a/site/public/v1/games/the-last-of-us-part-iii/index.json b/site/public/v1/games/the-last-of-us-part-iii/index.json new file mode 100644 index 000000000000..d70e13cd2b70 --- /dev/null +++ b/site/public/v1/games/the-last-of-us-part-iii/index.json @@ -0,0 +1,27 @@ +{ + "id": 149828, + "slug": "the-last-of-us-part-iii", + "name": "The Last of Us Part III", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "action-adventure game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113774985" + ], + "created_at": "2026-07-10T10:10:45.160937", + "updated_at": "2026-07-10T10:10:45.160937", + "url": "/v1/games/the-last-of-us-part-iii" +} diff --git a/site/public/v1/games/the-legend-of-spyro-a-new-beginning/index.json b/site/public/v1/games/the-legend-of-spyro-a-new-beginning/index.json new file mode 100644 index 000000000000..86b7276efc24 --- /dev/null +++ b/site/public/v1/games/the-legend-of-spyro-a-new-beginning/index.json @@ -0,0 +1,38 @@ +{ + "id": 150069, + "slug": "the-legend-of-spyro-a-new-beginning", + "name": "The Legend of Spyro: A New Beginning", + "release_date": "2006-10-10", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Java Platform, Micro Edition", + "Nintendo GameCube", + "Game Boy Advance", + "Nintendo DS" + ], + "genres": [ + "action-adventure game" + ], + "stores": [], + "developers": [ + "The Mighty Troglodytes", + "Krome Studios", + "Amaze Entertainment" + ], + "publishers": [ + "Sierra Entertainment" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2578009" + ], + "created_at": "2026-07-10T10:10:45.256523", + "updated_at": "2026-07-10T10:10:45.256523", + "url": "/v1/games/the-legend-of-spyro-a-new-beginning" +} diff --git a/site/public/v1/games/the-legend-of-zelda-breath-of-the-wild-nintendo-switch-2-edition/index.json b/site/public/v1/games/the-legend-of-zelda-breath-of-the-wild-nintendo-switch-2-edition/index.json new file mode 100644 index 000000000000..d8bd880f82a7 --- /dev/null +++ b/site/public/v1/games/the-legend-of-zelda-breath-of-the-wild-nintendo-switch-2-edition/index.json @@ -0,0 +1,25 @@ +{ + "id": 150111, + "slug": "the-legend-of-zelda-breath-of-the-wild-nintendo-switch-2-edition", + "name": "The Legend of Zelda: Breath of the Wild Nintendo Switch 2 Edition", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134726586" + ], + "created_at": "2026-07-10T10:10:45.266675", + "updated_at": "2026-07-10T10:10:45.266675", + "url": "/v1/games/the-legend-of-zelda-breath-of-the-wild-nintendo-switch-2-edition" +} diff --git a/site/public/v1/games/the-legend-of-zelda-breath-of-the-wild-the-champions-ballad/index.json b/site/public/v1/games/the-legend-of-zelda-breath-of-the-wild-the-champions-ballad/index.json new file mode 100644 index 000000000000..2da375c0cf9c --- /dev/null +++ b/site/public/v1/games/the-legend-of-zelda-breath-of-the-wild-the-champions-ballad/index.json @@ -0,0 +1,25 @@ +{ + "id": 150112, + "slug": "the-legend-of-zelda-breath-of-the-wild-the-champions-ballad", + "name": "The Legend of Zelda: Breath of the Wild – The Champions' Ballad", + "release_date": "2017-12-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116855305" + ], + "created_at": "2026-07-10T10:10:45.267656", + "updated_at": "2026-07-10T10:10:45.267656", + "url": "/v1/games/the-legend-of-zelda-breath-of-the-wild-the-champions-ballad" +} diff --git a/site/public/v1/games/the-legend-of-zelda-breath-of-the-wild-the-master-trials/index.json b/site/public/v1/games/the-legend-of-zelda-breath-of-the-wild-the-master-trials/index.json new file mode 100644 index 000000000000..0d018236fb52 --- /dev/null +++ b/site/public/v1/games/the-legend-of-zelda-breath-of-the-wild-the-master-trials/index.json @@ -0,0 +1,25 @@ +{ + "id": 150113, + "slug": "the-legend-of-zelda-breath-of-the-wild-the-master-trials", + "name": "The Legend of Zelda: Breath of the Wild – The Master Trials", + "release_date": "2017-06-30", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116855235" + ], + "created_at": "2026-07-10T10:10:45.267656", + "updated_at": "2026-07-10T10:10:45.267656", + "url": "/v1/games/the-legend-of-zelda-breath-of-the-wild-the-master-trials" +} diff --git a/site/public/v1/games/the-legend-of-zelda-collector-s-edition/index.json b/site/public/v1/games/the-legend-of-zelda-collector-s-edition/index.json new file mode 100644 index 000000000000..d46803310889 --- /dev/null +++ b/site/public/v1/games/the-legend-of-zelda-collector-s-edition/index.json @@ -0,0 +1,33 @@ +{ + "id": 150115, + "slug": "the-legend-of-zelda-collector-s-edition", + "name": "The Legend of Zelda: Collector's Edition", + "release_date": "2003-11-14", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Nintendo GameCube" + ], + "genres": [ + "action-adventure game" + ], + "stores": [], + "developers": [ + "Nintendo" + ], + "publishers": [ + "Nintendo" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1339084" + ], + "created_at": "2026-07-10T10:10:45.267656", + "updated_at": "2026-07-10T10:10:45.267656", + "url": "/v1/games/the-legend-of-zelda-collector-s-edition" +} diff --git a/site/public/v1/games/the-legend-of-zelda-mystical-seed-of-courage/index.json b/site/public/v1/games/the-legend-of-zelda-mystical-seed-of-courage/index.json new file mode 100644 index 000000000000..6998d40a3833 --- /dev/null +++ b/site/public/v1/games/the-legend-of-zelda-mystical-seed-of-courage/index.json @@ -0,0 +1,25 @@ +{ + "id": 150125, + "slug": "the-legend-of-zelda-mystical-seed-of-courage", + "name": "The Legend of Zelda: Mystical Seed of Courage", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11897233" + ], + "created_at": "2026-07-10T10:10:45.270656", + "updated_at": "2026-07-10T10:10:45.270656", + "url": "/v1/games/the-legend-of-zelda-mystical-seed-of-courage" +} diff --git a/site/public/v1/games/the-legend-of-zelda-oracle-of-seasons-and-oracle-of-ages/index.json b/site/public/v1/games/the-legend-of-zelda-oracle-of-seasons-and-oracle-of-ages/index.json new file mode 100644 index 000000000000..3f34a7ab5c53 --- /dev/null +++ b/site/public/v1/games/the-legend-of-zelda-oracle-of-seasons-and-oracle-of-ages/index.json @@ -0,0 +1,34 @@ +{ + "id": 150130, + "slug": "the-legend-of-zelda-oracle-of-seasons-and-oracle-of-ages", + "name": "The Legend of Zelda: Oracle of Seasons and Oracle of Ages", + "release_date": "2001-02-27", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Game Boy Color" + ], + "genres": [ + "action-adventure game" + ], + "stores": [], + "developers": [ + "Flagship", + "Capcom" + ], + "publishers": [ + "Nintendo" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q889739" + ], + "created_at": "2026-07-10T10:10:45.271654", + "updated_at": "2026-07-10T10:10:45.271654", + "url": "/v1/games/the-legend-of-zelda-oracle-of-seasons-and-oracle-of-ages" +} diff --git a/site/public/v1/games/the-legend-of-zelda-tears-of-the-kingdom-nintendo-switch-2-edition/index.json b/site/public/v1/games/the-legend-of-zelda-tears-of-the-kingdom-nintendo-switch-2-edition/index.json new file mode 100644 index 000000000000..4bf4785397fc --- /dev/null +++ b/site/public/v1/games/the-legend-of-zelda-tears-of-the-kingdom-nintendo-switch-2-edition/index.json @@ -0,0 +1,25 @@ +{ + "id": 150137, + "slug": "the-legend-of-zelda-tears-of-the-kingdom-nintendo-switch-2-edition", + "name": "The Legend of Zelda: Tears of the Kingdom Nintendo Switch 2 Edition", + "release_date": "2025-06-05", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134726574" + ], + "created_at": "2026-07-10T10:10:45.272664", + "updated_at": "2026-07-10T10:10:45.272664", + "url": "/v1/games/the-legend-of-zelda-tears-of-the-kingdom-nintendo-switch-2-edition" +} diff --git a/site/public/v1/games/the-long-siege/index.json b/site/public/v1/games/the-long-siege/index.json new file mode 100644 index 000000000000..283d34d52034 --- /dev/null +++ b/site/public/v1/games/the-long-siege/index.json @@ -0,0 +1,25 @@ +{ + "id": 150321, + "slug": "the-long-siege", + "name": "The Long Siege", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140472965" + ], + "created_at": "2026-07-10T10:10:45.384989", + "updated_at": "2026-07-10T10:10:45.384989", + "url": "/v1/games/the-long-siege" +} diff --git a/site/public/v1/games/the-lord-of-the-rings-online-before-the-shadow/index.json b/site/public/v1/games/the-lord-of-the-rings-online-before-the-shadow/index.json new file mode 100644 index 000000000000..3b17861d717c --- /dev/null +++ b/site/public/v1/games/the-lord-of-the-rings-online-before-the-shadow/index.json @@ -0,0 +1,27 @@ +{ + "id": 150353, + "slug": "the-lord-of-the-rings-online-before-the-shadow", + "name": "The Lord of the Rings Online: Before the Shadow", + "release_date": "2022-11-15", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116470798" + ], + "created_at": "2026-07-10T10:10:45.392957", + "updated_at": "2026-07-10T10:10:45.392957", + "url": "/v1/games/the-lord-of-the-rings-online-before-the-shadow" +} diff --git a/site/public/v1/games/the-lord-of-the-rings-online-fate-of-gundabad/index.json b/site/public/v1/games/the-lord-of-the-rings-online-fate-of-gundabad/index.json new file mode 100644 index 000000000000..29c57c3607f9 --- /dev/null +++ b/site/public/v1/games/the-lord-of-the-rings-online-fate-of-gundabad/index.json @@ -0,0 +1,27 @@ +{ + "id": 150354, + "slug": "the-lord-of-the-rings-online-fate-of-gundabad", + "name": "The Lord of the Rings Online: Fate of Gundabad", + "release_date": "2021-11-10", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116470896" + ], + "created_at": "2026-07-10T10:10:45.394012", + "updated_at": "2026-07-10T10:10:45.394012", + "url": "/v1/games/the-lord-of-the-rings-online-fate-of-gundabad" +} diff --git a/site/public/v1/games/the-lord-of-the-rings-online-helm-s-deep/index.json b/site/public/v1/games/the-lord-of-the-rings-online-helm-s-deep/index.json new file mode 100644 index 000000000000..a9dad31fac56 --- /dev/null +++ b/site/public/v1/games/the-lord-of-the-rings-online-helm-s-deep/index.json @@ -0,0 +1,32 @@ +{ + "id": 150355, + "slug": "the-lord-of-the-rings-online-helm-s-deep", + "name": "The Lord of the Rings Online: Helm's Deep", + "release_date": "2013-11-20", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "massively multiplayer online role-playing game" + ], + "stores": [], + "developers": [ + "WB Games Boston" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16386759" + ], + "created_at": "2026-07-10T10:10:45.394012", + "updated_at": "2026-07-10T10:10:45.394012", + "url": "/v1/games/the-lord-of-the-rings-online-helm-s-deep" +} diff --git a/site/public/v1/games/the-lord-of-the-rings-online-mines-of-moria/index.json b/site/public/v1/games/the-lord-of-the-rings-online-mines-of-moria/index.json new file mode 100644 index 000000000000..d1614c3e5af7 --- /dev/null +++ b/site/public/v1/games/the-lord-of-the-rings-online-mines-of-moria/index.json @@ -0,0 +1,33 @@ +{ + "id": 150357, + "slug": "the-lord-of-the-rings-online-mines-of-moria", + "name": "The Lord of the Rings Online: Mines of Moria", + "release_date": "2008-11-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "massively multiplayer online role-playing game" + ], + "stores": [], + "developers": [ + "WB Games Boston" + ], + "publishers": [ + "WB Games Boston" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7748486" + ], + "created_at": "2026-07-10T10:10:45.394012", + "updated_at": "2026-07-10T10:10:45.394012", + "url": "/v1/games/the-lord-of-the-rings-online-mines-of-moria" +} diff --git a/site/public/v1/games/the-lord-of-the-rings-online-riders-of-rohan/index.json b/site/public/v1/games/the-lord-of-the-rings-online-riders-of-rohan/index.json new file mode 100644 index 000000000000..4b0d826027c3 --- /dev/null +++ b/site/public/v1/games/the-lord-of-the-rings-online-riders-of-rohan/index.json @@ -0,0 +1,31 @@ +{ + "id": 150359, + "slug": "the-lord-of-the-rings-online-riders-of-rohan", + "name": "The Lord of the Rings Online: Riders of Rohan", + "release_date": "2012-10-15", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "massively multiplayer online role-playing game" + ], + "stores": [], + "developers": [ + "WB Games Boston" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2107015" + ], + "created_at": "2026-07-10T10:10:45.394891", + "updated_at": "2026-07-10T10:10:45.394891", + "url": "/v1/games/the-lord-of-the-rings-online-riders-of-rohan" +} diff --git a/site/public/v1/games/the-lord-of-the-rings-online-rise-of-isengard/index.json b/site/public/v1/games/the-lord-of-the-rings-online-rise-of-isengard/index.json new file mode 100644 index 000000000000..73a5a188bd40 --- /dev/null +++ b/site/public/v1/games/the-lord-of-the-rings-online-rise-of-isengard/index.json @@ -0,0 +1,31 @@ +{ + "id": 150360, + "slug": "the-lord-of-the-rings-online-rise-of-isengard", + "name": "The Lord of the Rings Online: Rise of Isengard", + "release_date": "2011-09-27", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "massively multiplayer online role-playing game" + ], + "stores": [], + "developers": [ + "WB Games Boston" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2106978" + ], + "created_at": "2026-07-10T10:10:45.394891", + "updated_at": "2026-07-10T10:10:45.394891", + "url": "/v1/games/the-lord-of-the-rings-online-rise-of-isengard" +} diff --git a/site/public/v1/games/the-lord-of-the-rings-online-siege-of-mirkwood/index.json b/site/public/v1/games/the-lord-of-the-rings-online-siege-of-mirkwood/index.json new file mode 100644 index 000000000000..88e14bb7f972 --- /dev/null +++ b/site/public/v1/games/the-lord-of-the-rings-online-siege-of-mirkwood/index.json @@ -0,0 +1,31 @@ +{ + "id": 150361, + "slug": "the-lord-of-the-rings-online-siege-of-mirkwood", + "name": "The Lord of the Rings Online: Siege of Mirkwood", + "release_date": "2009-12-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "massively multiplayer online role-playing game" + ], + "stores": [], + "developers": [ + "WB Games Boston" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7748471" + ], + "created_at": "2026-07-10T10:10:45.395889", + "updated_at": "2026-07-10T10:10:45.395889", + "url": "/v1/games/the-lord-of-the-rings-online-siege-of-mirkwood" +} diff --git a/site/public/v1/games/the-lord-of-the-rings-online-war-of-three-peaks/index.json b/site/public/v1/games/the-lord-of-the-rings-online-war-of-three-peaks/index.json new file mode 100644 index 000000000000..0ee486ddee24 --- /dev/null +++ b/site/public/v1/games/the-lord-of-the-rings-online-war-of-three-peaks/index.json @@ -0,0 +1,25 @@ +{ + "id": 150362, + "slug": "the-lord-of-the-rings-online-war-of-three-peaks", + "name": "The Lord of the Rings Online: War of Three Peaks", + "release_date": "2020-10-20", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105786603" + ], + "created_at": "2026-07-10T10:10:45.395889", + "updated_at": "2026-07-10T10:10:45.395889", + "url": "/v1/games/the-lord-of-the-rings-online-war-of-three-peaks" +} diff --git a/site/public/v1/games/the-lord-of-the-rings-the-battle-for-middle-earth-ii-the-rise-of-the-witch-king/index.json b/site/public/v1/games/the-lord-of-the-rings-the-battle-for-middle-earth-ii-the-rise-of-the-witch-king/index.json new file mode 100644 index 000000000000..d60736fb0c3a --- /dev/null +++ b/site/public/v1/games/the-lord-of-the-rings-the-battle-for-middle-earth-ii-the-rise-of-the-witch-king/index.json @@ -0,0 +1,33 @@ +{ + "id": 150367, + "slug": "the-lord-of-the-rings-the-battle-for-middle-earth-ii-the-rise-of-the-witch-king", + "name": "The Lord of the Rings: The Battle for Middle-earth II: The Rise of the Witch-king", + "release_date": "2006-11-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "real-time strategy" + ], + "stores": [], + "developers": [ + "Danger Close Games" + ], + "publishers": [ + "Electronic Arts" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1754787" + ], + "created_at": "2026-07-10T10:10:45.396889", + "updated_at": "2026-07-10T10:10:45.396889", + "url": "/v1/games/the-lord-of-the-rings-the-battle-for-middle-earth-ii-the-rise-of-the-witch-king" +} diff --git a/site/public/v1/games/the-lord-of-the-rings-the-white-council/index.json b/site/public/v1/games/the-lord-of-the-rings-the-white-council/index.json new file mode 100644 index 000000000000..c35a9361f6c5 --- /dev/null +++ b/site/public/v1/games/the-lord-of-the-rings-the-white-council/index.json @@ -0,0 +1,35 @@ +{ + "id": 150375, + "slug": "the-lord-of-the-rings-the-white-council", + "name": "The Lord of the Rings: The White Council", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 3", + "Microsoft Windows" + ], + "genres": [ + "role-playing video game", + "fantasy video game" + ], + "stores": [], + "developers": [ + "Visceral Games" + ], + "publishers": [ + "Electronic Arts" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4583322" + ], + "created_at": "2026-07-10T10:10:45.397889", + "updated_at": "2026-07-10T10:10:45.397889", + "url": "/v1/games/the-lord-of-the-rings-the-white-council" +} diff --git a/site/public/v1/games/the-lost-treasures-of-infocom-q7748761/index.json b/site/public/v1/games/the-lost-treasures-of-infocom-q7748761/index.json new file mode 100644 index 000000000000..62bb47625bbd --- /dev/null +++ b/site/public/v1/games/the-lost-treasures-of-infocom-q7748761/index.json @@ -0,0 +1,36 @@ +{ + "id": 150460, + "slug": "the-lost-treasures-of-infocom-q7748761", + "name": "The Lost Treasures of Infocom", + "release_date": "1991-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Classic Mac OS", + "Apple IIGS", + "DOS", + "iOS" + ], + "genres": [ + "interactive fiction" + ], + "stores": [], + "developers": [ + "Infocom" + ], + "publishers": [ + "Activision" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7748761" + ], + "created_at": "2026-07-10T10:10:45.422168", + "updated_at": "2026-07-10T10:10:45.422168", + "url": "/v1/games/the-lost-treasures-of-infocom-q7748761" +} diff --git a/site/public/v1/games/the-lucasarts-archives-vol-iii/index.json b/site/public/v1/games/the-lucasarts-archives-vol-iii/index.json new file mode 100644 index 000000000000..ac94c0d58ba4 --- /dev/null +++ b/site/public/v1/games/the-lucasarts-archives-vol-iii/index.json @@ -0,0 +1,25 @@ +{ + "id": 150484, + "slug": "the-lucasarts-archives-vol-iii", + "name": "The LucasArts Archives vol. III", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125208078" + ], + "created_at": "2026-07-10T10:10:45.428171", + "updated_at": "2026-07-10T10:10:45.428171", + "url": "/v1/games/the-lucasarts-archives-vol-iii" +} diff --git a/site/public/v1/games/the-lucasarts-archives/index.json b/site/public/v1/games/the-lucasarts-archives/index.json new file mode 100644 index 000000000000..416397f92c62 --- /dev/null +++ b/site/public/v1/games/the-lucasarts-archives/index.json @@ -0,0 +1,27 @@ +{ + "id": 150485, + "slug": "the-lucasarts-archives", + "name": "The LucasArts Archives", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Lucasfilm Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17019278" + ], + "created_at": "2026-07-10T10:10:45.428171", + "updated_at": "2026-07-10T10:10:45.428171", + "url": "/v1/games/the-lucasarts-archives" +} diff --git a/site/public/v1/games/the-magnetic-scrolls-collection/index.json b/site/public/v1/games/the-magnetic-scrolls-collection/index.json new file mode 100644 index 000000000000..173fbe485753 --- /dev/null +++ b/site/public/v1/games/the-magnetic-scrolls-collection/index.json @@ -0,0 +1,32 @@ +{ + "id": 150551, + "slug": "the-magnetic-scrolls-collection", + "name": "The Magnetic Scrolls Collection", + "release_date": "1991-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Atari ST", + "DOS", + "Acorn Archimedes", + "Commodore Amiga" + ], + "genres": [], + "stores": [], + "developers": [ + "Magnetic Scrolls" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112860684" + ], + "created_at": "2026-07-10T10:10:45.445162", + "updated_at": "2026-07-10T10:10:45.445162", + "url": "/v1/games/the-magnetic-scrolls-collection" +} diff --git a/site/public/v1/games/the-martian-bring-him-home/index.json b/site/public/v1/games/the-martian-bring-him-home/index.json new file mode 100644 index 000000000000..031077896924 --- /dev/null +++ b/site/public/v1/games/the-martian-bring-him-home/index.json @@ -0,0 +1,25 @@ +{ + "id": 150616, + "slug": "the-martian-bring-him-home", + "name": "The Martian: Bring Him Home", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140471218" + ], + "created_at": "2026-07-10T10:10:45.462254", + "updated_at": "2026-07-10T10:10:45.462254", + "url": "/v1/games/the-martian-bring-him-home" +} diff --git a/site/public/v1/games/the-messenger-picnic-panic/index.json b/site/public/v1/games/the-messenger-picnic-panic/index.json new file mode 100644 index 000000000000..11242fa6a347 --- /dev/null +++ b/site/public/v1/games/the-messenger-picnic-panic/index.json @@ -0,0 +1,34 @@ +{ + "id": 150691, + "slug": "the-messenger-picnic-panic", + "name": "The Messenger: Picnic Panic", + "release_date": "2019-07-11", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 5", + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Sabotage Studio" + ], + "publishers": [ + "Devolver Digital" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135424534" + ], + "created_at": "2026-07-10T10:10:45.482882", + "updated_at": "2026-07-10T10:10:45.482882", + "url": "/v1/games/the-messenger-picnic-panic" +} diff --git a/site/public/v1/games/the-mimic-q133283755/index.json b/site/public/v1/games/the-mimic-q133283755/index.json new file mode 100644 index 000000000000..ea759e755110 --- /dev/null +++ b/site/public/v1/games/the-mimic-q133283755/index.json @@ -0,0 +1,27 @@ +{ + "id": 150727, + "slug": "the-mimic-q133283755", + "name": "The Mimic", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "horror video game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q133283755" + ], + "created_at": "2026-07-10T10:10:45.503915", + "updated_at": "2026-07-10T10:10:45.503915", + "url": "/v1/games/the-mimic-q133283755" +} diff --git a/site/public/v1/games/the-museum-relic-campaign/index.json b/site/public/v1/games/the-museum-relic-campaign/index.json new file mode 100644 index 000000000000..04bf5e2c202f --- /dev/null +++ b/site/public/v1/games/the-museum-relic-campaign/index.json @@ -0,0 +1,29 @@ +{ + "id": 150884, + "slug": "the-museum-relic-campaign", + "name": "The Museum Relic Campaign", + "release_date": "2017-07-14", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Eagle Dynamics" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097552" + ], + "created_at": "2026-07-10T10:10:45.563970", + "updated_at": "2026-07-10T10:10:45.563970", + "url": "/v1/games/the-museum-relic-campaign" +} diff --git a/site/public/v1/games/the-night-games-collection/index.json b/site/public/v1/games/the-night-games-collection/index.json new file mode 100644 index 000000000000..a392f9236eaa --- /dev/null +++ b/site/public/v1/games/the-night-games-collection/index.json @@ -0,0 +1,32 @@ +{ + "id": 151020, + "slug": "the-night-games-collection", + "name": "The Night Games Collection", + "release_date": "2024-12-16", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "adventure video game", + "action game", + "action-adventure game", + "simulation video game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135066326" + ], + "created_at": "2026-07-10T10:10:45.599575", + "updated_at": "2026-07-10T10:10:45.599575", + "url": "/v1/games/the-night-games-collection" +} diff --git a/site/public/v1/games/the-only-traitor/index.json b/site/public/v1/games/the-only-traitor/index.json new file mode 100644 index 000000000000..c24525929813 --- /dev/null +++ b/site/public/v1/games/the-only-traitor/index.json @@ -0,0 +1,28 @@ +{ + "id": 151162, + "slug": "the-only-traitor", + "name": "The Only Traitor", + "release_date": "2017-04-19", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q91333442" + ], + "created_at": "2026-07-10T10:10:45.638643", + "updated_at": "2026-07-10T10:10:45.638643", + "url": "/v1/games/the-only-traitor" +} diff --git a/site/public/v1/games/the-orange-box/index.json b/site/public/v1/games/the-orange-box/index.json new file mode 100644 index 000000000000..5280e24e80e5 --- /dev/null +++ b/site/public/v1/games/the-orange-box/index.json @@ -0,0 +1,34 @@ +{ + "id": 151175, + "slug": "the-orange-box", + "name": "The Orange Box", + "release_date": "2007-10-10", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 3", + "Microsoft Windows" + ], + "genres": [ + "first-person shooter" + ], + "stores": [], + "developers": [ + "Valve Corporation" + ], + "publishers": [ + "Valve Corporation" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q374556" + ], + "created_at": "2026-07-10T10:10:45.641642", + "updated_at": "2026-07-10T10:10:45.641642", + "url": "/v1/games/the-orange-box" +} diff --git a/site/public/v1/games/the-outer-worlds-murder-on-eridanos/index.json b/site/public/v1/games/the-outer-worlds-murder-on-eridanos/index.json new file mode 100644 index 000000000000..e0fa5665864f --- /dev/null +++ b/site/public/v1/games/the-outer-worlds-murder-on-eridanos/index.json @@ -0,0 +1,35 @@ +{ + "id": 151245, + "slug": "the-outer-worlds-murder-on-eridanos", + "name": "The Outer Worlds: Murder on Eridanos", + "release_date": "2021-03-17", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "action role-playing game" + ], + "stores": [], + "developers": [ + "Virtuos", + "Obsidian Entertainment" + ], + "publishers": [ + "Private Division" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109690724" + ], + "created_at": "2026-07-10T10:10:45.659677", + "updated_at": "2026-07-10T10:10:45.659677", + "url": "/v1/games/the-outer-worlds-murder-on-eridanos" +} diff --git a/site/public/v1/games/the-outer-worlds-peril-on-gorgon/index.json b/site/public/v1/games/the-outer-worlds-peril-on-gorgon/index.json new file mode 100644 index 000000000000..b96e2c031765 --- /dev/null +++ b/site/public/v1/games/the-outer-worlds-peril-on-gorgon/index.json @@ -0,0 +1,27 @@ +{ + "id": 151246, + "slug": "the-outer-worlds-peril-on-gorgon", + "name": "The Outer Worlds: Peril on Gorgon", + "release_date": "2020-10-23", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115470965" + ], + "created_at": "2026-07-10T10:10:45.659677", + "updated_at": "2026-07-10T10:10:45.659677", + "url": "/v1/games/the-outer-worlds-peril-on-gorgon" +} diff --git a/site/public/v1/games/the-outer-worlds-spacer-s-choice-edition/index.json b/site/public/v1/games/the-outer-worlds-spacer-s-choice-edition/index.json new file mode 100644 index 000000000000..0999140a6275 --- /dev/null +++ b/site/public/v1/games/the-outer-worlds-spacer-s-choice-edition/index.json @@ -0,0 +1,35 @@ +{ + "id": 151247, + "slug": "the-outer-worlds-spacer-s-choice-edition", + "name": "The Outer Worlds: Spacer’s Choice Edition", + "release_date": "2023-03-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 5", + "Microsoft Windows" + ], + "genres": [ + "action role-playing game" + ], + "stores": [], + "developers": [ + "Obsidian Entertainment" + ], + "publishers": [ + "Private Division" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117316999" + ], + "created_at": "2026-07-10T10:10:45.659677", + "updated_at": "2026-07-10T10:10:45.659677", + "url": "/v1/games/the-outer-worlds-spacer-s-choice-edition" +} diff --git a/site/public/v1/games/the-outsider/index.json b/site/public/v1/games/the-outsider/index.json new file mode 100644 index 000000000000..83c08b7d16fc --- /dev/null +++ b/site/public/v1/games/the-outsider/index.json @@ -0,0 +1,32 @@ +{ + "id": 151258, + "slug": "the-outsider", + "name": "The Outsider", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 3", + "Microsoft Windows" + ], + "genres": [ + "action-adventure game" + ], + "stores": [], + "developers": [ + "Frontier Developments" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3988606" + ], + "created_at": "2026-07-10T10:10:45.662659", + "updated_at": "2026-07-10T10:10:45.662659", + "url": "/v1/games/the-outsider" +} diff --git a/site/public/v1/games/the-passengers-vr/index.json b/site/public/v1/games/the-passengers-vr/index.json new file mode 100644 index 000000000000..0bd0d9eddf60 --- /dev/null +++ b/site/public/v1/games/the-passengers-vr/index.json @@ -0,0 +1,25 @@ +{ + "id": 151321, + "slug": "the-passengers-vr", + "name": "The Passengers (VR)", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127050356" + ], + "created_at": "2026-07-10T10:10:45.680127", + "updated_at": "2026-07-10T10:10:45.680127", + "url": "/v1/games/the-passengers-vr" +} diff --git a/site/public/v1/games/the-political-machine-express-2008/index.json b/site/public/v1/games/the-political-machine-express-2008/index.json new file mode 100644 index 000000000000..6f528f57c48e --- /dev/null +++ b/site/public/v1/games/the-political-machine-express-2008/index.json @@ -0,0 +1,29 @@ +{ + "id": 151497, + "slug": "the-political-machine-express-2008", + "name": "The Political Machine Express 2008", + "release_date": "2008-09-17", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Stardock" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123436664" + ], + "created_at": "2026-07-10T10:10:45.728907", + "updated_at": "2026-07-10T10:10:45.728907", + "url": "/v1/games/the-political-machine-express-2008" +} diff --git a/site/public/v1/games/the-postal-2-collection/index.json b/site/public/v1/games/the-postal-2-collection/index.json new file mode 100644 index 000000000000..dd792f806ef9 --- /dev/null +++ b/site/public/v1/games/the-postal-2-collection/index.json @@ -0,0 +1,28 @@ +{ + "id": 151507, + "slug": "the-postal-2-collection", + "name": "The POSTAL 2 Collection", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q95692094" + ], + "created_at": "2026-07-10T10:10:45.731907", + "updated_at": "2026-07-10T10:10:45.731907", + "url": "/v1/games/the-postal-2-collection" +} diff --git a/site/public/v1/games/the-postal-package-curated-classics/index.json b/site/public/v1/games/the-postal-package-curated-classics/index.json new file mode 100644 index 000000000000..e9f8990e1acb --- /dev/null +++ b/site/public/v1/games/the-postal-package-curated-classics/index.json @@ -0,0 +1,34 @@ +{ + "id": 151508, + "slug": "the-postal-package-curated-classics", + "name": "The POSTAL Package: Curated Classics", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "parody video game", + "satirical video game", + "black comedy video game", + "self-reflexive video game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q95692373" + ], + "created_at": "2026-07-10T10:10:45.731907", + "updated_at": "2026-07-10T10:10:45.731907", + "url": "/v1/games/the-postal-package-curated-classics" +} diff --git a/site/public/v1/games/the-quarry-deluxe-edition/index.json b/site/public/v1/games/the-quarry-deluxe-edition/index.json new file mode 100644 index 000000000000..00ea4fbca824 --- /dev/null +++ b/site/public/v1/games/the-quarry-deluxe-edition/index.json @@ -0,0 +1,29 @@ +{ + "id": 151633, + "slug": "the-quarry-deluxe-edition", + "name": "The Quarry: Deluxe Edition", + "release_date": "2022-06-10", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "2K" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113639241" + ], + "created_at": "2026-07-10T10:10:45.765916", + "updated_at": "2026-07-10T10:10:45.765916", + "url": "/v1/games/the-quarry-deluxe-edition" +} diff --git a/site/public/v1/games/the-quiet-please-collection/index.json b/site/public/v1/games/the-quiet-please-collection/index.json new file mode 100644 index 000000000000..fd5caa96a0ad --- /dev/null +++ b/site/public/v1/games/the-quiet-please-collection/index.json @@ -0,0 +1,34 @@ +{ + "id": 151659, + "slug": "the-quiet-please-collection", + "name": "The \"Quiet, Please!\" Collection", + "release_date": "2015-07-23", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Nintendo 3DS", + "PlayStation Vita", + "Wii U", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Nostatic Software" + ], + "publishers": [ + "Nostatic Software" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122370764" + ], + "created_at": "2026-07-10T10:10:45.772916", + "updated_at": "2026-07-10T10:10:45.772916", + "url": "/v1/games/the-quiet-please-collection" +} diff --git a/site/public/v1/games/the-raiden-project/index.json b/site/public/v1/games/the-raiden-project/index.json new file mode 100644 index 000000000000..fa0968445ff4 --- /dev/null +++ b/site/public/v1/games/the-raiden-project/index.json @@ -0,0 +1,29 @@ +{ + "id": 151692, + "slug": "the-raiden-project", + "name": "The Raiden Project", + "release_date": "1995-01-27", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [ + "Seibu Kaihatsu" + ], + "publishers": [ + "Seibu Kaihatsu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3522411" + ], + "created_at": "2026-07-10T10:10:45.781437", + "updated_at": "2026-07-10T10:10:45.781437", + "url": "/v1/games/the-raiden-project" +} diff --git a/site/public/v1/games/the-ripper/index.json b/site/public/v1/games/the-ripper/index.json new file mode 100644 index 000000000000..e08b5f09a4d2 --- /dev/null +++ b/site/public/v1/games/the-ripper/index.json @@ -0,0 +1,34 @@ +{ + "id": 151866, + "slug": "the-ripper", + "name": "The Ripper", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 3" + ], + "genres": [ + "role-playing video game", + "horror video game" + ], + "stores": [], + "developers": [ + "Visceral Games" + ], + "publishers": [ + "Electronic Arts" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7760834" + ], + "created_at": "2026-07-10T10:10:45.827432", + "updated_at": "2026-07-10T10:10:45.827432", + "url": "/v1/games/the-ripper" +} diff --git a/site/public/v1/games/the-roberta-williams-anthology/index.json b/site/public/v1/games/the-roberta-williams-anthology/index.json new file mode 100644 index 000000000000..785aa012f9fb --- /dev/null +++ b/site/public/v1/games/the-roberta-williams-anthology/index.json @@ -0,0 +1,30 @@ +{ + "id": 151899, + "slug": "the-roberta-williams-anthology", + "name": "The Roberta Williams Anthology", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "DOS", + "Microsoft Windows" + ], + "genres": [ + "adventure video game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2413943" + ], + "created_at": "2026-07-10T10:10:45.836437", + "updated_at": "2026-07-10T10:10:45.836437", + "url": "/v1/games/the-roberta-williams-anthology" +} diff --git a/site/public/v1/games/the-room-two-q124080278/index.json b/site/public/v1/games/the-room-two-q124080278/index.json new file mode 100644 index 000000000000..3d05b688bdde --- /dev/null +++ b/site/public/v1/games/the-room-two-q124080278/index.json @@ -0,0 +1,33 @@ +{ + "id": 151925, + "slug": "the-room-two-q124080278", + "name": "The Room Two+", + "release_date": "2021-04-02", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "iOS" + ], + "genres": [ + "puzzle video game" + ], + "stores": [], + "developers": [ + "Fireproof Studios" + ], + "publishers": [ + "Fireproof Studios" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124080278" + ], + "created_at": "2026-07-10T10:10:45.843437", + "updated_at": "2026-07-10T10:10:45.843437", + "url": "/v1/games/the-room-two-q124080278" +} diff --git a/site/public/v1/games/the-scriptwelder-collection/index.json b/site/public/v1/games/the-scriptwelder-collection/index.json new file mode 100644 index 000000000000..41eeb07db761 --- /dev/null +++ b/site/public/v1/games/the-scriptwelder-collection/index.json @@ -0,0 +1,31 @@ +{ + "id": 152058, + "slug": "the-scriptwelder-collection", + "name": "The Scriptwelder Collection", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Scriptwelder Studio" + ], + "publishers": [ + "Armor Games Studios" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q101603279" + ], + "created_at": "2026-07-10T10:10:45.887078", + "updated_at": "2026-07-10T10:10:45.887078", + "url": "/v1/games/the-scriptwelder-collection" +} diff --git a/site/public/v1/games/the-settlers-7-paths-to-a-kingdom-gold-edition/index.json b/site/public/v1/games/the-settlers-7-paths-to-a-kingdom-gold-edition/index.json new file mode 100644 index 000000000000..47b5cb86be4c --- /dev/null +++ b/site/public/v1/games/the-settlers-7-paths-to-a-kingdom-gold-edition/index.json @@ -0,0 +1,25 @@ +{ + "id": 152164, + "slug": "the-settlers-7-paths-to-a-kingdom-gold-edition", + "name": "The Settlers 7: Paths to a Kingdom - Gold Edition", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125148765" + ], + "created_at": "2026-07-10T10:10:45.916078", + "updated_at": "2026-07-10T10:10:45.916078", + "url": "/v1/games/the-settlers-7-paths-to-a-kingdom-gold-edition" +} diff --git a/site/public/v1/games/the-settlers-heritage-of-kings-expansion-disc/index.json b/site/public/v1/games/the-settlers-heritage-of-kings-expansion-disc/index.json new file mode 100644 index 000000000000..abb005618e10 --- /dev/null +++ b/site/public/v1/games/the-settlers-heritage-of-kings-expansion-disc/index.json @@ -0,0 +1,25 @@ +{ + "id": 152168, + "slug": "the-settlers-heritage-of-kings-expansion-disc", + "name": "The Settlers: Heritage of Kings - Expansion Disc", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130518879" + ], + "created_at": "2026-07-10T10:10:45.917078", + "updated_at": "2026-07-10T10:10:45.917078", + "url": "/v1/games/the-settlers-heritage-of-kings-expansion-disc" +} diff --git a/site/public/v1/games/the-settlers-heritage-of-kings-gold-edition/index.json b/site/public/v1/games/the-settlers-heritage-of-kings-gold-edition/index.json new file mode 100644 index 000000000000..00d76c0b0cf9 --- /dev/null +++ b/site/public/v1/games/the-settlers-heritage-of-kings-gold-edition/index.json @@ -0,0 +1,25 @@ +{ + "id": 152169, + "slug": "the-settlers-heritage-of-kings-gold-edition", + "name": "The Settlers: Heritage of Kings - Gold Edition", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125148713" + ], + "created_at": "2026-07-10T10:10:45.917078", + "updated_at": "2026-07-10T10:10:45.917078", + "url": "/v1/games/the-settlers-heritage-of-kings-gold-edition" +} diff --git a/site/public/v1/games/the-settlers-heritage-of-kings-legends-expansion-disc/index.json b/site/public/v1/games/the-settlers-heritage-of-kings-legends-expansion-disc/index.json new file mode 100644 index 000000000000..daa0e3becc1c --- /dev/null +++ b/site/public/v1/games/the-settlers-heritage-of-kings-legends-expansion-disc/index.json @@ -0,0 +1,25 @@ +{ + "id": 152171, + "slug": "the-settlers-heritage-of-kings-legends-expansion-disc", + "name": "The Settlers: Heritage of Kings - Legends Expansion Disc", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130518904" + ], + "created_at": "2026-07-10T10:10:45.918078", + "updated_at": "2026-07-10T10:10:45.918078", + "url": "/v1/games/the-settlers-heritage-of-kings-legends-expansion-disc" +} diff --git a/site/public/v1/games/the-settlers-history-collection/index.json b/site/public/v1/games/the-settlers-history-collection/index.json new file mode 100644 index 000000000000..fac0dc15e36d --- /dev/null +++ b/site/public/v1/games/the-settlers-history-collection/index.json @@ -0,0 +1,29 @@ +{ + "id": 152173, + "slug": "the-settlers-history-collection", + "name": "The Settlers: History Collection", + "release_date": "2018-11-15", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Ubisoft Blue Byte" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q61087714" + ], + "created_at": "2026-07-10T10:10:45.918078", + "updated_at": "2026-07-10T10:10:45.918078", + "url": "/v1/games/the-settlers-history-collection" +} diff --git a/site/public/v1/games/the-settlers-ii-10th-anniversary-gold-edition/index.json b/site/public/v1/games/the-settlers-ii-10th-anniversary-gold-edition/index.json new file mode 100644 index 000000000000..7a399d9cf221 --- /dev/null +++ b/site/public/v1/games/the-settlers-ii-10th-anniversary-gold-edition/index.json @@ -0,0 +1,25 @@ +{ + "id": 152174, + "slug": "the-settlers-ii-10th-anniversary-gold-edition", + "name": "The Settlers II (10th Anniversary) Gold Edition", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125148577" + ], + "created_at": "2026-07-10T10:10:45.919077", + "updated_at": "2026-07-10T10:10:45.919077", + "url": "/v1/games/the-settlers-ii-10th-anniversary-gold-edition" +} diff --git a/site/public/v1/games/the-settlers-ii-10th-anniversary-vikings/index.json b/site/public/v1/games/the-settlers-ii-10th-anniversary-vikings/index.json new file mode 100644 index 000000000000..ccf2b1664f7d --- /dev/null +++ b/site/public/v1/games/the-settlers-ii-10th-anniversary-vikings/index.json @@ -0,0 +1,28 @@ +{ + "id": 152175, + "slug": "the-settlers-ii-10th-anniversary-vikings", + "name": "The Settlers II: 10th Anniversary - Vikings", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [ + "Funatics Software", + "Ubisoft Blue Byte" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125148618" + ], + "created_at": "2026-07-10T10:10:45.919077", + "updated_at": "2026-07-10T10:10:45.919077", + "url": "/v1/games/the-settlers-ii-10th-anniversary-vikings" +} diff --git a/site/public/v1/games/the-settlers-ii-gold-edition/index.json b/site/public/v1/games/the-settlers-ii-gold-edition/index.json new file mode 100644 index 000000000000..1bdfce82a47d --- /dev/null +++ b/site/public/v1/games/the-settlers-ii-gold-edition/index.json @@ -0,0 +1,28 @@ +{ + "id": 152176, + "slug": "the-settlers-ii-gold-edition", + "name": "The Settlers II: Gold Edition", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Classic Mac OS", + "DOS" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121094015" + ], + "created_at": "2026-07-10T10:10:45.919077", + "updated_at": "2026-07-10T10:10:45.919077", + "url": "/v1/games/the-settlers-ii-gold-edition" +} diff --git a/site/public/v1/games/the-settlers-ii-mission-cd/index.json b/site/public/v1/games/the-settlers-ii-mission-cd/index.json new file mode 100644 index 000000000000..f015fb9f051e --- /dev/null +++ b/site/public/v1/games/the-settlers-ii-mission-cd/index.json @@ -0,0 +1,25 @@ +{ + "id": 152177, + "slug": "the-settlers-ii-mission-cd", + "name": "The Settlers II: Mission CD", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121094074" + ], + "created_at": "2026-07-10T10:10:45.920077", + "updated_at": "2026-07-10T10:10:45.920077", + "url": "/v1/games/the-settlers-ii-mission-cd" +} diff --git a/site/public/v1/games/the-settlers-iii-gold-edition/index.json b/site/public/v1/games/the-settlers-iii-gold-edition/index.json new file mode 100644 index 000000000000..02dd355ca3ad --- /dev/null +++ b/site/public/v1/games/the-settlers-iii-gold-edition/index.json @@ -0,0 +1,27 @@ +{ + "id": 152182, + "slug": "the-settlers-iii-gold-edition", + "name": "The Settlers III: Gold Edition", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [ + "Ubisoft Blue Byte" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125148627" + ], + "created_at": "2026-07-10T10:10:45.921077", + "updated_at": "2026-07-10T10:10:45.921077", + "url": "/v1/games/the-settlers-iii-gold-edition" +} diff --git a/site/public/v1/games/the-settlers-iii-mission-cd/index.json b/site/public/v1/games/the-settlers-iii-mission-cd/index.json new file mode 100644 index 000000000000..6d71168a59d6 --- /dev/null +++ b/site/public/v1/games/the-settlers-iii-mission-cd/index.json @@ -0,0 +1,25 @@ +{ + "id": 152183, + "slug": "the-settlers-iii-mission-cd", + "name": "The Settlers III: Mission CD", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125156729" + ], + "created_at": "2026-07-10T10:10:45.921077", + "updated_at": "2026-07-10T10:10:45.921077", + "url": "/v1/games/the-settlers-iii-mission-cd" +} diff --git a/site/public/v1/games/the-settlers-iii-quest-of-the-amazons/index.json b/site/public/v1/games/the-settlers-iii-quest-of-the-amazons/index.json new file mode 100644 index 000000000000..03703c2d3288 --- /dev/null +++ b/site/public/v1/games/the-settlers-iii-quest-of-the-amazons/index.json @@ -0,0 +1,25 @@ +{ + "id": 152184, + "slug": "the-settlers-iii-quest-of-the-amazons", + "name": "The Settlers III: Quest of the Amazons", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125148631" + ], + "created_at": "2026-07-10T10:10:45.922076", + "updated_at": "2026-07-10T10:10:45.922076", + "url": "/v1/games/the-settlers-iii-quest-of-the-amazons" +} diff --git a/site/public/v1/games/the-settlers-iv-gold-edition/index.json b/site/public/v1/games/the-settlers-iv-gold-edition/index.json new file mode 100644 index 000000000000..d8eedd15d293 --- /dev/null +++ b/site/public/v1/games/the-settlers-iv-gold-edition/index.json @@ -0,0 +1,25 @@ +{ + "id": 152186, + "slug": "the-settlers-iv-gold-edition", + "name": "The Settlers IV: Gold Edition", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125148698" + ], + "created_at": "2026-07-10T10:10:45.922076", + "updated_at": "2026-07-10T10:10:45.922076", + "url": "/v1/games/the-settlers-iv-gold-edition" +} diff --git a/site/public/v1/games/the-settlers-iv-mission-cd/index.json b/site/public/v1/games/the-settlers-iv-mission-cd/index.json new file mode 100644 index 000000000000..b461327ee237 --- /dev/null +++ b/site/public/v1/games/the-settlers-iv-mission-cd/index.json @@ -0,0 +1,25 @@ +{ + "id": 152187, + "slug": "the-settlers-iv-mission-cd", + "name": "The Settlers IV Mission CD", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125156672" + ], + "created_at": "2026-07-10T10:10:45.923076", + "updated_at": "2026-07-10T10:10:45.923076", + "url": "/v1/games/the-settlers-iv-mission-cd" +} diff --git a/site/public/v1/games/the-settlers-rise-of-an-empire-empire-of-the-east/index.json b/site/public/v1/games/the-settlers-rise-of-an-empire-empire-of-the-east/index.json new file mode 100644 index 000000000000..4fed8254abe6 --- /dev/null +++ b/site/public/v1/games/the-settlers-rise-of-an-empire-empire-of-the-east/index.json @@ -0,0 +1,29 @@ +{ + "id": 152192, + "slug": "the-settlers-rise-of-an-empire-empire-of-the-east", + "name": "The Settlers: Rise of An Empire – Empire of the East", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "real-time strategy" + ], + "stores": [], + "developers": [ + "Ubisoft Blue Byte" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110817149" + ], + "created_at": "2026-07-10T10:10:45.924076", + "updated_at": "2026-07-10T10:10:45.924076", + "url": "/v1/games/the-settlers-rise-of-an-empire-empire-of-the-east" +} diff --git a/site/public/v1/games/the-settlers-rise-of-an-empire-the-eastern-realm/index.json b/site/public/v1/games/the-settlers-rise-of-an-empire-the-eastern-realm/index.json new file mode 100644 index 000000000000..66a3f57b4486 --- /dev/null +++ b/site/public/v1/games/the-settlers-rise-of-an-empire-the-eastern-realm/index.json @@ -0,0 +1,32 @@ +{ + "id": 152193, + "slug": "the-settlers-rise-of-an-empire-the-eastern-realm", + "name": "The Settlers: Rise of an Empire - The Eastern Realm", + "release_date": "2008-03-27", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "real-time strategy", + "city-building game" + ], + "stores": [], + "developers": [ + "Ubisoft Blue Byte" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q9358210" + ], + "created_at": "2026-07-10T10:10:45.924076", + "updated_at": "2026-07-10T10:10:45.924076", + "url": "/v1/games/the-settlers-rise-of-an-empire-the-eastern-realm" +} diff --git a/site/public/v1/games/the-simcity-box/index.json b/site/public/v1/games/the-simcity-box/index.json new file mode 100644 index 000000000000..906f78ca42fc --- /dev/null +++ b/site/public/v1/games/the-simcity-box/index.json @@ -0,0 +1,33 @@ +{ + "id": 152337, + "slug": "the-simcity-box", + "name": "The SimCity Box", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "city-building game" + ], + "stores": [], + "developers": [ + "Maxis" + ], + "publishers": [ + "Electronic Arts" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7764326" + ], + "created_at": "2026-07-10T10:10:46.058244", + "updated_at": "2026-07-10T10:10:46.058244", + "url": "/v1/games/the-simcity-box" +} diff --git a/site/public/v1/games/the-simpsons-hit-run-2/index.json b/site/public/v1/games/the-simpsons-hit-run-2/index.json new file mode 100644 index 000000000000..bdcbdfdf6000 --- /dev/null +++ b/site/public/v1/games/the-simpsons-hit-run-2/index.json @@ -0,0 +1,25 @@ +{ + "id": 152353, + "slug": "the-simpsons-hit-run-2", + "name": "The Simpsons: Hit & Run 2", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q100758280" + ], + "created_at": "2026-07-10T10:10:46.062293", + "updated_at": "2026-07-10T10:10:46.062293", + "url": "/v1/games/the-simpsons-hit-run-2" +} diff --git a/site/public/v1/games/the-sims-2-apartment-life/index.json b/site/public/v1/games/the-sims-2-apartment-life/index.json new file mode 100644 index 000000000000..0947f8d0f788 --- /dev/null +++ b/site/public/v1/games/the-sims-2-apartment-life/index.json @@ -0,0 +1,34 @@ +{ + "id": 152366, + "slug": "the-sims-2-apartment-life", + "name": "The Sims 2: Apartment Life", + "release_date": "2008-08-25", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "life simulation game", + "social simulation game" + ], + "stores": [], + "developers": [ + "Electronic Arts" + ], + "publishers": [ + "Electronic Arts" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1763067" + ], + "created_at": "2026-07-10T10:10:46.064313", + "updated_at": "2026-07-10T10:10:46.064313", + "url": "/v1/games/the-sims-2-apartment-life" +} diff --git a/site/public/v1/games/the-sims-2-bon-voyage/index.json b/site/public/v1/games/the-sims-2-bon-voyage/index.json new file mode 100644 index 000000000000..f934bfdcfcb1 --- /dev/null +++ b/site/public/v1/games/the-sims-2-bon-voyage/index.json @@ -0,0 +1,34 @@ +{ + "id": 152369, + "slug": "the-sims-2-bon-voyage", + "name": "The Sims 2: Bon Voyage", + "release_date": "2007-09-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ], + "stores": [], + "developers": [ + "Electronic Arts" + ], + "publishers": [ + "Electronic Arts" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q751338" + ], + "created_at": "2026-07-10T10:10:46.065230", + "updated_at": "2026-07-10T10:10:46.065230", + "url": "/v1/games/the-sims-2-bon-voyage" +} diff --git a/site/public/v1/games/the-sims-2-celebration-stuff/index.json b/site/public/v1/games/the-sims-2-celebration-stuff/index.json new file mode 100644 index 000000000000..d02f2f5e5589 --- /dev/null +++ b/site/public/v1/games/the-sims-2-celebration-stuff/index.json @@ -0,0 +1,29 @@ +{ + "id": 152372, + "slug": "the-sims-2-celebration-stuff", + "name": "The Sims 2: Celebration! Stuff", + "release_date": "2007-04-03", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10381786" + ], + "created_at": "2026-07-10T10:10:46.066228", + "updated_at": "2026-07-10T10:10:46.066228", + "url": "/v1/games/the-sims-2-celebration-stuff" +} diff --git a/site/public/v1/games/the-sims-2-christmas-party-pack/index.json b/site/public/v1/games/the-sims-2-christmas-party-pack/index.json new file mode 100644 index 000000000000..a6f8386e4ff9 --- /dev/null +++ b/site/public/v1/games/the-sims-2-christmas-party-pack/index.json @@ -0,0 +1,34 @@ +{ + "id": 152373, + "slug": "the-sims-2-christmas-party-pack", + "name": "The Sims 2: Christmas Party Pack", + "release_date": "2005-11-17", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ], + "stores": [], + "developers": [ + "Maxis" + ], + "publishers": [ + "Electronic Arts" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10381789" + ], + "created_at": "2026-07-10T10:10:46.066228", + "updated_at": "2026-07-10T10:10:46.066228", + "url": "/v1/games/the-sims-2-christmas-party-pack" +} diff --git a/site/public/v1/games/the-sims-2-family-fun-stuff/index.json b/site/public/v1/games/the-sims-2-family-fun-stuff/index.json new file mode 100644 index 000000000000..a107e52cf263 --- /dev/null +++ b/site/public/v1/games/the-sims-2-family-fun-stuff/index.json @@ -0,0 +1,34 @@ +{ + "id": 152375, + "slug": "the-sims-2-family-fun-stuff", + "name": "The Sims 2: Family Fun Stuff", + "release_date": "2006-04-14", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ], + "stores": [], + "developers": [ + "Maxis" + ], + "publishers": [ + "Electronic Arts" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5407971" + ], + "created_at": "2026-07-10T10:10:46.066228", + "updated_at": "2026-07-10T10:10:46.066228", + "url": "/v1/games/the-sims-2-family-fun-stuff" +} diff --git a/site/public/v1/games/the-sims-2-freetime/index.json b/site/public/v1/games/the-sims-2-freetime/index.json new file mode 100644 index 000000000000..74383459e47f --- /dev/null +++ b/site/public/v1/games/the-sims-2-freetime/index.json @@ -0,0 +1,35 @@ +{ + "id": 152376, + "slug": "the-sims-2-freetime", + "name": "The Sims 2: FreeTime", + "release_date": "2008-02-22", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "strategy video game", + "life simulation game" + ], + "stores": [], + "developers": [ + "Maxis", + "Electronic Arts" + ], + "publishers": [ + "Electronic Arts" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1622210" + ], + "created_at": "2026-07-10T10:10:46.066228", + "updated_at": "2026-07-10T10:10:46.066228", + "url": "/v1/games/the-sims-2-freetime" +} diff --git a/site/public/v1/games/the-sims-2-glamour-life-stuff/index.json b/site/public/v1/games/the-sims-2-glamour-life-stuff/index.json new file mode 100644 index 000000000000..8369da062167 --- /dev/null +++ b/site/public/v1/games/the-sims-2-glamour-life-stuff/index.json @@ -0,0 +1,34 @@ +{ + "id": 152377, + "slug": "the-sims-2-glamour-life-stuff", + "name": "The Sims 2: Glamour Life Stuff", + "release_date": "2006-08-31", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ], + "stores": [], + "developers": [ + "Maxis" + ], + "publishers": [ + "Electronic Arts" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3279823" + ], + "created_at": "2026-07-10T10:10:46.067312", + "updated_at": "2026-07-10T10:10:46.067312", + "url": "/v1/games/the-sims-2-glamour-life-stuff" +} diff --git a/site/public/v1/games/the-sims-2-h-m-fashion-stuff/index.json b/site/public/v1/games/the-sims-2-h-m-fashion-stuff/index.json new file mode 100644 index 000000000000..056c33beb4b8 --- /dev/null +++ b/site/public/v1/games/the-sims-2-h-m-fashion-stuff/index.json @@ -0,0 +1,29 @@ +{ + "id": 152378, + "slug": "the-sims-2-h-m-fashion-stuff", + "name": "The Sims 2: H&M Fashion Stuff", + "release_date": "2007-06-05", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3279257" + ], + "created_at": "2026-07-10T10:10:46.067312", + "updated_at": "2026-07-10T10:10:46.067312", + "url": "/v1/games/the-sims-2-h-m-fashion-stuff" +} diff --git a/site/public/v1/games/the-sims-2-happy-holiday-stuff/index.json b/site/public/v1/games/the-sims-2-happy-holiday-stuff/index.json new file mode 100644 index 000000000000..59c22929fb42 --- /dev/null +++ b/site/public/v1/games/the-sims-2-happy-holiday-stuff/index.json @@ -0,0 +1,30 @@ +{ + "id": 152379, + "slug": "the-sims-2-happy-holiday-stuff", + "name": "The Sims 2: Happy Holiday Stuff", + "release_date": "2006-11-06", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10381790" + ], + "created_at": "2026-07-10T10:10:46.067312", + "updated_at": "2026-07-10T10:10:46.067312", + "url": "/v1/games/the-sims-2-happy-holiday-stuff" +} diff --git a/site/public/v1/games/the-sims-2-holiday-edition-2006/index.json b/site/public/v1/games/the-sims-2-holiday-edition-2006/index.json new file mode 100644 index 000000000000..21d8bb7add83 --- /dev/null +++ b/site/public/v1/games/the-sims-2-holiday-edition-2006/index.json @@ -0,0 +1,27 @@ +{ + "id": 152380, + "slug": "the-sims-2-holiday-edition-2006", + "name": "The Sims 2: Holiday Edition (2006)", + "release_date": "2005-11-15", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "life simulation game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q12339116" + ], + "created_at": "2026-07-10T10:10:46.067312", + "updated_at": "2026-07-10T10:10:46.067312", + "url": "/v1/games/the-sims-2-holiday-edition-2006" +} diff --git a/site/public/v1/games/the-sims-2-holiday-party-pack/index.json b/site/public/v1/games/the-sims-2-holiday-party-pack/index.json new file mode 100644 index 000000000000..78e006132f0f --- /dev/null +++ b/site/public/v1/games/the-sims-2-holiday-party-pack/index.json @@ -0,0 +1,30 @@ +{ + "id": 152382, + "slug": "the-sims-2-holiday-party-pack", + "name": "The Sims 2: Holiday Party Pack", + "release_date": "2005-11-17", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q12343057" + ], + "created_at": "2026-07-10T10:10:46.068289", + "updated_at": "2026-07-10T10:10:46.068289", + "url": "/v1/games/the-sims-2-holiday-party-pack" +} diff --git a/site/public/v1/games/the-sims-2-ikea-home-stuff/index.json b/site/public/v1/games/the-sims-2-ikea-home-stuff/index.json new file mode 100644 index 000000000000..bc33e6606a34 --- /dev/null +++ b/site/public/v1/games/the-sims-2-ikea-home-stuff/index.json @@ -0,0 +1,29 @@ +{ + "id": 152383, + "slug": "the-sims-2-ikea-home-stuff", + "name": "The Sims 2: IKEA Home Stuff", + "release_date": "2008-06-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18281073" + ], + "created_at": "2026-07-10T10:10:46.068289", + "updated_at": "2026-07-10T10:10:46.068289", + "url": "/v1/games/the-sims-2-ikea-home-stuff" +} diff --git a/site/public/v1/games/the-sims-2-kitchen-bath-interior-design-stuff/index.json b/site/public/v1/games/the-sims-2-kitchen-bath-interior-design-stuff/index.json new file mode 100644 index 000000000000..2509438f4657 --- /dev/null +++ b/site/public/v1/games/the-sims-2-kitchen-bath-interior-design-stuff/index.json @@ -0,0 +1,29 @@ +{ + "id": 152384, + "slug": "the-sims-2-kitchen-bath-interior-design-stuff", + "name": "The Sims 2: Kitchen & Bath Interior Design Stuff", + "release_date": "2007-11-05", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17187310" + ], + "created_at": "2026-07-10T10:10:46.069291", + "updated_at": "2026-07-10T10:10:46.069291", + "url": "/v1/games/the-sims-2-kitchen-bath-interior-design-stuff" +} diff --git a/site/public/v1/games/the-sims-2-mansion-garden-stuff/index.json b/site/public/v1/games/the-sims-2-mansion-garden-stuff/index.json new file mode 100644 index 000000000000..a35b40e9ac2b --- /dev/null +++ b/site/public/v1/games/the-sims-2-mansion-garden-stuff/index.json @@ -0,0 +1,29 @@ +{ + "id": 152385, + "slug": "the-sims-2-mansion-garden-stuff", + "name": "The Sims 2: Mansion & Garden Stuff", + "release_date": "2008-11-17", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3281673" + ], + "created_at": "2026-07-10T10:10:46.069291", + "updated_at": "2026-07-10T10:10:46.069291", + "url": "/v1/games/the-sims-2-mansion-garden-stuff" +} diff --git a/site/public/v1/games/the-sims-2-nightlife/index.json b/site/public/v1/games/the-sims-2-nightlife/index.json new file mode 100644 index 000000000000..fee51f48283e --- /dev/null +++ b/site/public/v1/games/the-sims-2-nightlife/index.json @@ -0,0 +1,34 @@ +{ + "id": 152387, + "slug": "the-sims-2-nightlife", + "name": "The Sims 2: Nightlife", + "release_date": "2005-09-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ], + "stores": [], + "developers": [ + "Maxis" + ], + "publishers": [ + "Electronic Arts" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q754709" + ], + "created_at": "2026-07-10T10:10:46.069291", + "updated_at": "2026-07-10T10:10:46.069291", + "url": "/v1/games/the-sims-2-nightlife" +} diff --git a/site/public/v1/games/the-sims-2-open-for-business/index.json b/site/public/v1/games/the-sims-2-open-for-business/index.json new file mode 100644 index 000000000000..f729bf52dd18 --- /dev/null +++ b/site/public/v1/games/the-sims-2-open-for-business/index.json @@ -0,0 +1,35 @@ +{ + "id": 152388, + "slug": "the-sims-2-open-for-business", + "name": "The Sims 2: Open for Business", + "release_date": "2006-03-02", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "personal computer", + "macOS", + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ], + "stores": [], + "developers": [ + "Maxis" + ], + "publishers": [ + "Electronic Arts" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q751422" + ], + "created_at": "2026-07-10T10:10:46.069291", + "updated_at": "2026-07-10T10:10:46.069291", + "url": "/v1/games/the-sims-2-open-for-business" +} diff --git a/site/public/v1/games/the-sims-2-pets-q751329/index.json b/site/public/v1/games/the-sims-2-pets-q751329/index.json new file mode 100644 index 000000000000..519bd351cef3 --- /dev/null +++ b/site/public/v1/games/the-sims-2-pets-q751329/index.json @@ -0,0 +1,41 @@ +{ + "id": 152392, + "slug": "the-sims-2-pets-q751329", + "name": "The Sims 2: Pets", + "release_date": "2006-10-17", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "N-Gage", + "Game Boy Advance", + "Nintendo GameCube", + "PlayStation Portable", + "Nintendo DS", + "macOS", + "Wii", + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ], + "stores": [], + "developers": [ + "Visceral Games", + "Maxis" + ], + "publishers": [ + "Electronic Arts" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q751329" + ], + "created_at": "2026-07-10T10:10:46.070350", + "updated_at": "2026-07-10T10:10:46.070350", + "url": "/v1/games/the-sims-2-pets-q751329" +} diff --git a/site/public/v1/games/the-sims-2-seasons/index.json b/site/public/v1/games/the-sims-2-seasons/index.json new file mode 100644 index 000000000000..b0923defa1bf --- /dev/null +++ b/site/public/v1/games/the-sims-2-seasons/index.json @@ -0,0 +1,34 @@ +{ + "id": 152396, + "slug": "the-sims-2-seasons", + "name": "The Sims 2: Seasons", + "release_date": "2007-03-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ], + "stores": [], + "developers": [ + "Maxis" + ], + "publishers": [ + "Electronic Arts" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q530290" + ], + "created_at": "2026-07-10T10:10:46.071278", + "updated_at": "2026-07-10T10:10:46.071278", + "url": "/v1/games/the-sims-2-seasons" +} diff --git a/site/public/v1/games/the-sims-2-stuff-packs/index.json b/site/public/v1/games/the-sims-2-stuff-packs/index.json new file mode 100644 index 000000000000..ccef59a67c9e --- /dev/null +++ b/site/public/v1/games/the-sims-2-stuff-packs/index.json @@ -0,0 +1,34 @@ +{ + "id": 152397, + "slug": "the-sims-2-stuff-packs", + "name": "The Sims 2 Stuff packs", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ], + "stores": [], + "developers": [ + "Maxis" + ], + "publishers": [ + "Electronic Arts" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2290121" + ], + "created_at": "2026-07-10T10:10:46.071278", + "updated_at": "2026-07-10T10:10:46.071278", + "url": "/v1/games/the-sims-2-stuff-packs" +} diff --git a/site/public/v1/games/the-sims-2-teen-style-stuff/index.json b/site/public/v1/games/the-sims-2-teen-style-stuff/index.json new file mode 100644 index 000000000000..6d6bf8597b4a --- /dev/null +++ b/site/public/v1/games/the-sims-2-teen-style-stuff/index.json @@ -0,0 +1,29 @@ +{ + "id": 152398, + "slug": "the-sims-2-teen-style-stuff", + "name": "The Sims 2: Teen Style Stuff", + "release_date": "2007-06-05", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5980365" + ], + "created_at": "2026-07-10T10:10:46.071278", + "updated_at": "2026-07-10T10:10:46.071278", + "url": "/v1/games/the-sims-2-teen-style-stuff" +} diff --git a/site/public/v1/games/the-sims-2-ultimate-collection/index.json b/site/public/v1/games/the-sims-2-ultimate-collection/index.json new file mode 100644 index 000000000000..8b9b24dfcb20 --- /dev/null +++ b/site/public/v1/games/the-sims-2-ultimate-collection/index.json @@ -0,0 +1,34 @@ +{ + "id": 152399, + "slug": "the-sims-2-ultimate-collection", + "name": "The Sims 2: Ultimate Collection", + "release_date": "2014-07-16", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ], + "stores": [], + "developers": [ + "Maxis" + ], + "publishers": [ + "Electronic Arts" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18281075" + ], + "created_at": "2026-07-10T10:10:46.071278", + "updated_at": "2026-07-10T10:10:46.071278", + "url": "/v1/games/the-sims-2-ultimate-collection" +} diff --git a/site/public/v1/games/the-sims-2-university/index.json b/site/public/v1/games/the-sims-2-university/index.json new file mode 100644 index 000000000000..0482693c21ba --- /dev/null +++ b/site/public/v1/games/the-sims-2-university/index.json @@ -0,0 +1,34 @@ +{ + "id": 152400, + "slug": "the-sims-2-university", + "name": "The Sims 2: University", + "release_date": "2005-03-11", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ], + "stores": [], + "developers": [ + "Maxis" + ], + "publishers": [ + "Electronic Arts" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q727092" + ], + "created_at": "2026-07-10T10:10:46.072293", + "updated_at": "2026-07-10T10:10:46.072293", + "url": "/v1/games/the-sims-2-university" +} diff --git a/site/public/v1/games/the-sims-3-70s-80s-90s-stuff/index.json b/site/public/v1/games/the-sims-3-70s-80s-90s-stuff/index.json new file mode 100644 index 000000000000..4c4026b08deb --- /dev/null +++ b/site/public/v1/games/the-sims-3-70s-80s-90s-stuff/index.json @@ -0,0 +1,29 @@ +{ + "id": 152402, + "slug": "the-sims-3-70s-80s-90s-stuff", + "name": "The Sims 3: 70s, 80s, & 90s Stuff", + "release_date": "2013-01-22", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q56331450" + ], + "created_at": "2026-07-10T10:10:46.072293", + "updated_at": "2026-07-10T10:10:46.072293", + "url": "/v1/games/the-sims-3-70s-80s-90s-stuff" +} diff --git a/site/public/v1/games/the-sims-3-ambitions/index.json b/site/public/v1/games/the-sims-3-ambitions/index.json new file mode 100644 index 000000000000..6d487a47661c --- /dev/null +++ b/site/public/v1/games/the-sims-3-ambitions/index.json @@ -0,0 +1,35 @@ +{ + "id": 152404, + "slug": "the-sims-3-ambitions", + "name": "The Sims 3: Ambitions", + "release_date": "2010-06-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "iOS", + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ], + "stores": [], + "developers": [ + "Electronic Arts" + ], + "publishers": [ + "Electronic Arts" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q923973" + ], + "created_at": "2026-07-10T10:10:46.072293", + "updated_at": "2026-07-10T10:10:46.072293", + "url": "/v1/games/the-sims-3-ambitions" +} diff --git a/site/public/v1/games/the-sims-3-diesel-stuff/index.json b/site/public/v1/games/the-sims-3-diesel-stuff/index.json new file mode 100644 index 000000000000..372369ba384c --- /dev/null +++ b/site/public/v1/games/the-sims-3-diesel-stuff/index.json @@ -0,0 +1,29 @@ +{ + "id": 152405, + "slug": "the-sims-3-diesel-stuff", + "name": "The Sims 3: Diesel Stuff", + "release_date": "2012-07-10", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10381794" + ], + "created_at": "2026-07-10T10:10:46.073307", + "updated_at": "2026-07-10T10:10:46.073307", + "url": "/v1/games/the-sims-3-diesel-stuff" +} diff --git a/site/public/v1/games/the-sims-3-fast-lane-stuff/index.json b/site/public/v1/games/the-sims-3-fast-lane-stuff/index.json new file mode 100644 index 000000000000..3ec5bd54514e --- /dev/null +++ b/site/public/v1/games/the-sims-3-fast-lane-stuff/index.json @@ -0,0 +1,32 @@ +{ + "id": 152406, + "slug": "the-sims-3-fast-lane-stuff", + "name": "The Sims 3: Fast Lane Stuff", + "release_date": "2010-09-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ], + "stores": [], + "developers": [], + "publishers": [ + "Electronic Arts" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10381795" + ], + "created_at": "2026-07-10T10:10:46.073307", + "updated_at": "2026-07-10T10:10:46.073307", + "url": "/v1/games/the-sims-3-fast-lane-stuff" +} diff --git a/site/public/v1/games/the-sims-3-generations/index.json b/site/public/v1/games/the-sims-3-generations/index.json new file mode 100644 index 000000000000..ad404ac8dcb5 --- /dev/null +++ b/site/public/v1/games/the-sims-3-generations/index.json @@ -0,0 +1,34 @@ +{ + "id": 152407, + "slug": "the-sims-3-generations", + "name": "The Sims 3: Generations", + "release_date": "2011-05-31", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ], + "stores": [], + "developers": [ + "Electronic Arts" + ], + "publishers": [ + "Electronic Arts" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1987738" + ], + "created_at": "2026-07-10T10:10:46.073307", + "updated_at": "2026-07-10T10:10:46.073307", + "url": "/v1/games/the-sims-3-generations" +} diff --git a/site/public/v1/games/the-sims-3-high-end-loft-stuff/index.json b/site/public/v1/games/the-sims-3-high-end-loft-stuff/index.json new file mode 100644 index 000000000000..95f00040dbda --- /dev/null +++ b/site/public/v1/games/the-sims-3-high-end-loft-stuff/index.json @@ -0,0 +1,34 @@ +{ + "id": 152409, + "slug": "the-sims-3-high-end-loft-stuff", + "name": "The Sims 3: High-End Loft Stuff", + "release_date": "2010-02-02", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ], + "stores": [], + "developers": [ + "EA Montreal" + ], + "publishers": [ + "Electronic Arts" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5980378" + ], + "created_at": "2026-07-10T10:10:46.074292", + "updated_at": "2026-07-10T10:10:46.074292", + "url": "/v1/games/the-sims-3-high-end-loft-stuff" +} diff --git a/site/public/v1/games/the-sims-3-into-the-future/index.json b/site/public/v1/games/the-sims-3-into-the-future/index.json new file mode 100644 index 000000000000..8e162c08f2df --- /dev/null +++ b/site/public/v1/games/the-sims-3-into-the-future/index.json @@ -0,0 +1,35 @@ +{ + "id": 152410, + "slug": "the-sims-3-into-the-future", + "name": "The Sims 3: Into the Future", + "release_date": "2013-10-22", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "life simulation game", + "science fiction video game" + ], + "stores": [], + "developers": [ + "Maxis" + ], + "publishers": [ + "Electronic Arts" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q14539718" + ], + "created_at": "2026-07-10T10:10:46.074292", + "updated_at": "2026-07-10T10:10:46.074292", + "url": "/v1/games/the-sims-3-into-the-future" +} diff --git a/site/public/v1/games/the-sims-3-island-paradise/index.json b/site/public/v1/games/the-sims-3-island-paradise/index.json new file mode 100644 index 000000000000..9497a16ce34b --- /dev/null +++ b/site/public/v1/games/the-sims-3-island-paradise/index.json @@ -0,0 +1,34 @@ +{ + "id": 152411, + "slug": "the-sims-3-island-paradise", + "name": "The Sims 3: Island Paradise", + "release_date": "2013-06-25", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ], + "stores": [], + "developers": [ + "Maxis" + ], + "publishers": [ + "Electronic Arts" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3912863" + ], + "created_at": "2026-07-10T10:10:46.074292", + "updated_at": "2026-07-10T10:10:46.074292", + "url": "/v1/games/the-sims-3-island-paradise" +} diff --git a/site/public/v1/games/the-sims-3-katy-perry-s-sweet-treats/index.json b/site/public/v1/games/the-sims-3-katy-perry-s-sweet-treats/index.json new file mode 100644 index 000000000000..b57d303b0e84 --- /dev/null +++ b/site/public/v1/games/the-sims-3-katy-perry-s-sweet-treats/index.json @@ -0,0 +1,29 @@ +{ + "id": 152412, + "slug": "the-sims-3-katy-perry-s-sweet-treats", + "name": "The Sims 3: Katy Perry's Sweet Treats", + "release_date": "2012-06-05", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10381796" + ], + "created_at": "2026-07-10T10:10:46.074292", + "updated_at": "2026-07-10T10:10:46.074292", + "url": "/v1/games/the-sims-3-katy-perry-s-sweet-treats" +} diff --git a/site/public/v1/games/the-sims-3-late-night/index.json b/site/public/v1/games/the-sims-3-late-night/index.json new file mode 100644 index 000000000000..e0d14469515d --- /dev/null +++ b/site/public/v1/games/the-sims-3-late-night/index.json @@ -0,0 +1,34 @@ +{ + "id": 152413, + "slug": "the-sims-3-late-night", + "name": "The Sims 3: Late Night", + "release_date": "2010-10-26", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ], + "stores": [], + "developers": [ + "Electronic Arts" + ], + "publishers": [ + "Electronic Arts" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1754128" + ], + "created_at": "2026-07-10T10:10:46.075230", + "updated_at": "2026-07-10T10:10:46.075230", + "url": "/v1/games/the-sims-3-late-night" +} diff --git a/site/public/v1/games/the-sims-3-master-suite-stuff/index.json b/site/public/v1/games/the-sims-3-master-suite-stuff/index.json new file mode 100644 index 000000000000..f806098af2dc --- /dev/null +++ b/site/public/v1/games/the-sims-3-master-suite-stuff/index.json @@ -0,0 +1,29 @@ +{ + "id": 152414, + "slug": "the-sims-3-master-suite-stuff", + "name": "The Sims 3: Master Suite Stuff", + "release_date": "2012-01-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q56331205" + ], + "created_at": "2026-07-10T10:10:46.075230", + "updated_at": "2026-07-10T10:10:46.075230", + "url": "/v1/games/the-sims-3-master-suite-stuff" +} diff --git a/site/public/v1/games/the-sims-3-movie-stuff/index.json b/site/public/v1/games/the-sims-3-movie-stuff/index.json new file mode 100644 index 000000000000..9df43945eac2 --- /dev/null +++ b/site/public/v1/games/the-sims-3-movie-stuff/index.json @@ -0,0 +1,29 @@ +{ + "id": 152415, + "slug": "the-sims-3-movie-stuff", + "name": "The Sims 3: Movie Stuff", + "release_date": "2013-09-10", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q56331455" + ], + "created_at": "2026-07-10T10:10:46.075230", + "updated_at": "2026-07-10T10:10:46.075230", + "url": "/v1/games/the-sims-3-movie-stuff" +} diff --git a/site/public/v1/games/the-sims-3-outdoor-living-stuff/index.json b/site/public/v1/games/the-sims-3-outdoor-living-stuff/index.json new file mode 100644 index 000000000000..8e6f6c55e769 --- /dev/null +++ b/site/public/v1/games/the-sims-3-outdoor-living-stuff/index.json @@ -0,0 +1,32 @@ +{ + "id": 152416, + "slug": "the-sims-3-outdoor-living-stuff", + "name": "The Sims 3: Outdoor Living Stuff", + "release_date": "2011-02-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ], + "stores": [], + "developers": [], + "publishers": [ + "Electronic Arts" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10381797" + ], + "created_at": "2026-07-10T10:10:46.075230", + "updated_at": "2026-07-10T10:10:46.075230", + "url": "/v1/games/the-sims-3-outdoor-living-stuff" +} diff --git a/site/public/v1/games/the-sims-3-pets-q2072073/index.json b/site/public/v1/games/the-sims-3-pets-q2072073/index.json new file mode 100644 index 000000000000..75bf881e4fd3 --- /dev/null +++ b/site/public/v1/games/the-sims-3-pets-q2072073/index.json @@ -0,0 +1,35 @@ +{ + "id": 152417, + "slug": "the-sims-3-pets-q2072073", + "name": "The Sims 3: Pets", + "release_date": "2011-10-21", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "PlayStation 3", + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ], + "stores": [], + "developers": [ + "Electronic Arts" + ], + "publishers": [ + "Electronic Arts" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2072073" + ], + "created_at": "2026-07-10T10:10:46.075230", + "updated_at": "2026-07-10T10:10:46.075230", + "url": "/v1/games/the-sims-3-pets-q2072073" +} diff --git a/site/public/v1/games/the-sims-3-seasons/index.json b/site/public/v1/games/the-sims-3-seasons/index.json new file mode 100644 index 000000000000..e13d65f1567f --- /dev/null +++ b/site/public/v1/games/the-sims-3-seasons/index.json @@ -0,0 +1,35 @@ +{ + "id": 152421, + "slug": "the-sims-3-seasons", + "name": "The Sims 3: Seasons", + "release_date": "2012-11-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "life simulation game", + "simulation video game" + ], + "stores": [], + "developers": [ + "Electronic Arts" + ], + "publishers": [ + "Electronic Arts" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q159739" + ], + "created_at": "2026-07-10T10:10:46.076880", + "updated_at": "2026-07-10T10:10:46.076880", + "url": "/v1/games/the-sims-3-seasons" +} diff --git a/site/public/v1/games/the-sims-3-showtime/index.json b/site/public/v1/games/the-sims-3-showtime/index.json new file mode 100644 index 000000000000..b6ae1366225f --- /dev/null +++ b/site/public/v1/games/the-sims-3-showtime/index.json @@ -0,0 +1,35 @@ +{ + "id": 152422, + "slug": "the-sims-3-showtime", + "name": "The Sims 3: Showtime", + "release_date": "2012-03-06", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "life simulation game", + "simulation video game" + ], + "stores": [], + "developers": [ + "Electronic Arts" + ], + "publishers": [ + "Electronic Arts" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1813229" + ], + "created_at": "2026-07-10T10:10:46.076880", + "updated_at": "2026-07-10T10:10:46.076880", + "url": "/v1/games/the-sims-3-showtime" +} diff --git a/site/public/v1/games/the-sims-3-stuff-packs/index.json b/site/public/v1/games/the-sims-3-stuff-packs/index.json new file mode 100644 index 000000000000..7648bbb9f18d --- /dev/null +++ b/site/public/v1/games/the-sims-3-stuff-packs/index.json @@ -0,0 +1,34 @@ +{ + "id": 152423, + "slug": "the-sims-3-stuff-packs", + "name": "The Sims 3 Stuff packs", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ], + "stores": [], + "developers": [ + "The Sims Studio" + ], + "publishers": [ + "Electronic Arts" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2478016" + ], + "created_at": "2026-07-10T10:10:46.076880", + "updated_at": "2026-07-10T10:10:46.076880", + "url": "/v1/games/the-sims-3-stuff-packs" +} diff --git a/site/public/v1/games/the-sims-3-supernatural/index.json b/site/public/v1/games/the-sims-3-supernatural/index.json new file mode 100644 index 000000000000..a35b7357cb0c --- /dev/null +++ b/site/public/v1/games/the-sims-3-supernatural/index.json @@ -0,0 +1,34 @@ +{ + "id": 152424, + "slug": "the-sims-3-supernatural", + "name": "The Sims 3: Supernatural", + "release_date": "2012-09-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ], + "stores": [], + "developers": [ + "Electronic Arts" + ], + "publishers": [ + "Electronic Arts" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2180005" + ], + "created_at": "2026-07-10T10:10:46.076880", + "updated_at": "2026-07-10T10:10:46.076880", + "url": "/v1/games/the-sims-3-supernatural" +} diff --git a/site/public/v1/games/the-sims-3-town-life-stuff/index.json b/site/public/v1/games/the-sims-3-town-life-stuff/index.json new file mode 100644 index 000000000000..78372bcaded8 --- /dev/null +++ b/site/public/v1/games/the-sims-3-town-life-stuff/index.json @@ -0,0 +1,32 @@ +{ + "id": 152425, + "slug": "the-sims-3-town-life-stuff", + "name": "The Sims 3: Town Life Stuff", + "release_date": "2011-07-26", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ], + "stores": [], + "developers": [], + "publishers": [ + "Electronic Arts" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10381800" + ], + "created_at": "2026-07-10T10:10:46.076880", + "updated_at": "2026-07-10T10:10:46.076880", + "url": "/v1/games/the-sims-3-town-life-stuff" +} diff --git a/site/public/v1/games/the-sims-3-ultimate-bundle/index.json b/site/public/v1/games/the-sims-3-ultimate-bundle/index.json new file mode 100644 index 000000000000..3002574968bc --- /dev/null +++ b/site/public/v1/games/the-sims-3-ultimate-bundle/index.json @@ -0,0 +1,25 @@ +{ + "id": 152426, + "slug": "the-sims-3-ultimate-bundle", + "name": "The Sims 3 Ultimate Bundle", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108028464" + ], + "created_at": "2026-07-10T10:10:46.077946", + "updated_at": "2026-07-10T10:10:46.077946", + "url": "/v1/games/the-sims-3-ultimate-bundle" +} diff --git a/site/public/v1/games/the-sims-3-university-life/index.json b/site/public/v1/games/the-sims-3-university-life/index.json new file mode 100644 index 000000000000..25f8325baf9d --- /dev/null +++ b/site/public/v1/games/the-sims-3-university-life/index.json @@ -0,0 +1,34 @@ +{ + "id": 152427, + "slug": "the-sims-3-university-life", + "name": "The Sims 3: University Life", + "release_date": "2013-03-05", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ], + "stores": [], + "developers": [ + "Maxis" + ], + "publishers": [ + "Electronic Arts" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2805535" + ], + "created_at": "2026-07-10T10:10:46.077946", + "updated_at": "2026-07-10T10:10:46.077946", + "url": "/v1/games/the-sims-3-university-life" +} diff --git a/site/public/v1/games/the-sims-3-world-adventures/index.json b/site/public/v1/games/the-sims-3-world-adventures/index.json new file mode 100644 index 000000000000..9d92bc0640c5 --- /dev/null +++ b/site/public/v1/games/the-sims-3-world-adventures/index.json @@ -0,0 +1,35 @@ +{ + "id": 152430, + "slug": "the-sims-3-world-adventures", + "name": "The Sims 3: World Adventures", + "release_date": "2009-11-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "iOS", + "macOS", + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ], + "stores": [], + "developers": [ + "Electronic Arts" + ], + "publishers": [ + "Electronic Arts" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1451266" + ], + "created_at": "2026-07-10T10:10:46.077946", + "updated_at": "2026-07-10T10:10:46.077946", + "url": "/v1/games/the-sims-3-world-adventures" +} diff --git a/site/public/v1/games/the-sims-4-adventure-awaits/index.json b/site/public/v1/games/the-sims-4-adventure-awaits/index.json new file mode 100644 index 000000000000..229169ac09f7 --- /dev/null +++ b/site/public/v1/games/the-sims-4-adventure-awaits/index.json @@ -0,0 +1,36 @@ +{ + "id": 152432, + "slug": "the-sims-4-adventure-awaits", + "name": "The Sims 4: Adventure Awaits", + "release_date": "2025-10-02", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 5", + "PlayStation 4", + "macOS", + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ], + "stores": [], + "developers": [ + "Maxis" + ], + "publishers": [ + "Electronic Arts" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136484302" + ], + "created_at": "2026-07-10T10:10:46.078986", + "updated_at": "2026-07-10T10:10:46.078986", + "url": "/v1/games/the-sims-4-adventure-awaits" +} diff --git a/site/public/v1/games/the-sims-4-backyard-stuff/index.json b/site/public/v1/games/the-sims-4-backyard-stuff/index.json new file mode 100644 index 000000000000..7ca336c7bccc --- /dev/null +++ b/site/public/v1/games/the-sims-4-backyard-stuff/index.json @@ -0,0 +1,29 @@ +{ + "id": 152433, + "slug": "the-sims-4-backyard-stuff", + "name": "The Sims 4: Backyard Stuff", + "release_date": "2016-07-19", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q56332663" + ], + "created_at": "2026-07-10T10:10:46.078986", + "updated_at": "2026-07-10T10:10:46.078986", + "url": "/v1/games/the-sims-4-backyard-stuff" +} diff --git a/site/public/v1/games/the-sims-4-bowling-night-stuff/index.json b/site/public/v1/games/the-sims-4-bowling-night-stuff/index.json new file mode 100644 index 000000000000..a5704ee31ff0 --- /dev/null +++ b/site/public/v1/games/the-sims-4-bowling-night-stuff/index.json @@ -0,0 +1,29 @@ +{ + "id": 152434, + "slug": "the-sims-4-bowling-night-stuff", + "name": "The Sims 4: Bowling Night Stuff", + "release_date": "2017-03-29", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q56332680" + ], + "created_at": "2026-07-10T10:10:46.078986", + "updated_at": "2026-07-10T10:10:46.078986", + "url": "/v1/games/the-sims-4-bowling-night-stuff" +} diff --git a/site/public/v1/games/the-sims-4-businesses-hobbies/index.json b/site/public/v1/games/the-sims-4-businesses-hobbies/index.json new file mode 100644 index 000000000000..a34c415d089f --- /dev/null +++ b/site/public/v1/games/the-sims-4-businesses-hobbies/index.json @@ -0,0 +1,35 @@ +{ + "id": 152435, + "slug": "the-sims-4-businesses-hobbies", + "name": "The Sims 4: Businesses & Hobbies", + "release_date": "2025-03-06", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 4", + "macOS", + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ], + "stores": [], + "developers": [ + "The Sims Studio" + ], + "publishers": [ + "Electronic Arts" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q132183132" + ], + "created_at": "2026-07-10T10:10:46.078986", + "updated_at": "2026-07-10T10:10:46.078986", + "url": "/v1/games/the-sims-4-businesses-hobbies" +} diff --git a/site/public/v1/games/the-sims-4-bust-the-dust-kit/index.json b/site/public/v1/games/the-sims-4-bust-the-dust-kit/index.json new file mode 100644 index 000000000000..f36bbd0143cb --- /dev/null +++ b/site/public/v1/games/the-sims-4-bust-the-dust-kit/index.json @@ -0,0 +1,38 @@ +{ + "id": 152436, + "slug": "the-sims-4-bust-the-dust-kit", + "name": "The Sims 4: Bust the Dust Kit", + "release_date": "2021-03-02", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 5", + "PlayStation 4", + "macOS", + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ], + "stores": [], + "developers": [ + "The Sims Studio", + "Maxis" + ], + "publishers": [ + "Electronic Arts" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113773801" + ], + "created_at": "2026-07-10T10:10:46.080004", + "updated_at": "2026-07-10T10:10:46.080004", + "url": "/v1/games/the-sims-4-bust-the-dust-kit" +} diff --git a/site/public/v1/games/the-sims-4-cats-dogs/index.json b/site/public/v1/games/the-sims-4-cats-dogs/index.json new file mode 100644 index 000000000000..ffc86c11b466 --- /dev/null +++ b/site/public/v1/games/the-sims-4-cats-dogs/index.json @@ -0,0 +1,36 @@ +{ + "id": 152437, + "slug": "the-sims-4-cats-dogs", + "name": "The Sims 4: Cats & Dogs", + "release_date": "2017-11-10", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 4", + "macOS", + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ], + "stores": [], + "developers": [ + "The Sims Studio", + "Maxis" + ], + "publishers": [ + "Electronic Arts" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q42317354" + ], + "created_at": "2026-07-10T10:10:46.080004", + "updated_at": "2026-07-10T10:10:46.080004", + "url": "/v1/games/the-sims-4-cats-dogs" +} diff --git a/site/public/v1/games/the-sims-4-city-living/index.json b/site/public/v1/games/the-sims-4-city-living/index.json new file mode 100644 index 000000000000..b1a8f480091a --- /dev/null +++ b/site/public/v1/games/the-sims-4-city-living/index.json @@ -0,0 +1,36 @@ +{ + "id": 152438, + "slug": "the-sims-4-city-living", + "name": "The Sims 4: City Living", + "release_date": "2016-11-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 4", + "macOS", + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ], + "stores": [], + "developers": [ + "The Sims Studio", + "Maxis" + ], + "publishers": [ + "Electronic Arts" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28859228" + ], + "created_at": "2026-07-10T10:10:46.080004", + "updated_at": "2026-07-10T10:10:46.080004", + "url": "/v1/games/the-sims-4-city-living" +} diff --git a/site/public/v1/games/the-sims-4-cool-kitchen-stuff/index.json b/site/public/v1/games/the-sims-4-cool-kitchen-stuff/index.json new file mode 100644 index 000000000000..72df92580dc4 --- /dev/null +++ b/site/public/v1/games/the-sims-4-cool-kitchen-stuff/index.json @@ -0,0 +1,29 @@ +{ + "id": 152439, + "slug": "the-sims-4-cool-kitchen-stuff", + "name": "The Sims 4: Cool Kitchen Stuff", + "release_date": "2015-08-11", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q56332600" + ], + "created_at": "2026-07-10T10:10:46.080004", + "updated_at": "2026-07-10T10:10:46.080004", + "url": "/v1/games/the-sims-4-cool-kitchen-stuff" +} diff --git a/site/public/v1/games/the-sims-4-cottage-living/index.json b/site/public/v1/games/the-sims-4-cottage-living/index.json new file mode 100644 index 000000000000..246967e24300 --- /dev/null +++ b/site/public/v1/games/the-sims-4-cottage-living/index.json @@ -0,0 +1,36 @@ +{ + "id": 152440, + "slug": "the-sims-4-cottage-living", + "name": "The Sims 4: Cottage Living", + "release_date": "2021-07-22", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 4", + "macOS", + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ], + "stores": [], + "developers": [ + "The Sims Studio", + "Maxis" + ], + "publishers": [ + "Electronic Arts" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107192361" + ], + "created_at": "2026-07-10T10:10:46.080004", + "updated_at": "2026-07-10T10:10:46.080004", + "url": "/v1/games/the-sims-4-cottage-living" +} diff --git a/site/public/v1/games/the-sims-4-country-kitchen-kit/index.json b/site/public/v1/games/the-sims-4-country-kitchen-kit/index.json new file mode 100644 index 000000000000..944d1a4ecf9b --- /dev/null +++ b/site/public/v1/games/the-sims-4-country-kitchen-kit/index.json @@ -0,0 +1,38 @@ +{ + "id": 152441, + "slug": "the-sims-4-country-kitchen-kit", + "name": "The Sims 4: Country Kitchen Kit", + "release_date": "2021-03-02", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 5", + "PlayStation 4", + "macOS", + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ], + "stores": [], + "developers": [ + "The Sims Studio", + "Maxis" + ], + "publishers": [ + "Electronic Arts" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113784823" + ], + "created_at": "2026-07-10T10:10:46.080004", + "updated_at": "2026-07-10T10:10:46.080004", + "url": "/v1/games/the-sims-4-country-kitchen-kit" +} diff --git a/site/public/v1/games/the-sims-4-crystal-creations-stuff/index.json b/site/public/v1/games/the-sims-4-crystal-creations-stuff/index.json new file mode 100644 index 000000000000..1988861fb8c7 --- /dev/null +++ b/site/public/v1/games/the-sims-4-crystal-creations-stuff/index.json @@ -0,0 +1,29 @@ +{ + "id": 152442, + "slug": "the-sims-4-crystal-creations-stuff", + "name": "The Sims 4: Crystal Creations Stuff", + "release_date": "2024-02-29", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124711262" + ], + "created_at": "2026-07-10T10:10:46.080970", + "updated_at": "2026-07-10T10:10:46.080970", + "url": "/v1/games/the-sims-4-crystal-creations-stuff" +} diff --git a/site/public/v1/games/the-sims-4-dine-out/index.json b/site/public/v1/games/the-sims-4-dine-out/index.json new file mode 100644 index 000000000000..bfa6593d370b --- /dev/null +++ b/site/public/v1/games/the-sims-4-dine-out/index.json @@ -0,0 +1,36 @@ +{ + "id": 152443, + "slug": "the-sims-4-dine-out", + "name": "The Sims 4: Dine Out", + "release_date": "2016-06-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 4", + "macOS", + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ], + "stores": [], + "developers": [ + "The Sims Studio", + "Maxis" + ], + "publishers": [ + "Electronic Arts" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q24514702" + ], + "created_at": "2026-07-10T10:10:46.080970", + "updated_at": "2026-07-10T10:10:46.080970", + "url": "/v1/games/the-sims-4-dine-out" +} diff --git a/site/public/v1/games/the-sims-4-discover-university/index.json b/site/public/v1/games/the-sims-4-discover-university/index.json new file mode 100644 index 000000000000..4e0e3d71d14b --- /dev/null +++ b/site/public/v1/games/the-sims-4-discover-university/index.json @@ -0,0 +1,36 @@ +{ + "id": 152444, + "slug": "the-sims-4-discover-university", + "name": "The Sims 4: Discover University", + "release_date": "2019-11-15", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 4", + "macOS", + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ], + "stores": [], + "developers": [ + "The Sims Studio", + "Maxis" + ], + "publishers": [ + "Electronic Arts" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q81611409" + ], + "created_at": "2026-07-10T10:10:46.080970", + "updated_at": "2026-07-10T10:10:46.080970", + "url": "/v1/games/the-sims-4-discover-university" +} diff --git a/site/public/v1/games/the-sims-4-dream-home-decorator/index.json b/site/public/v1/games/the-sims-4-dream-home-decorator/index.json new file mode 100644 index 000000000000..fccbb7f77409 --- /dev/null +++ b/site/public/v1/games/the-sims-4-dream-home-decorator/index.json @@ -0,0 +1,35 @@ +{ + "id": 152445, + "slug": "the-sims-4-dream-home-decorator", + "name": "The Sims 4: Dream Home Decorator", + "release_date": "2021-06-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 4", + "macOS", + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ], + "stores": [], + "developers": [ + "The Sims Studio" + ], + "publishers": [ + "Electronic Arts" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106977777" + ], + "created_at": "2026-07-10T10:10:46.080970", + "updated_at": "2026-07-10T10:10:46.080970", + "url": "/v1/games/the-sims-4-dream-home-decorator" +} diff --git a/site/public/v1/games/the-sims-4-eco-lifestyle/index.json b/site/public/v1/games/the-sims-4-eco-lifestyle/index.json new file mode 100644 index 000000000000..95f49053b9da --- /dev/null +++ b/site/public/v1/games/the-sims-4-eco-lifestyle/index.json @@ -0,0 +1,36 @@ +{ + "id": 152446, + "slug": "the-sims-4-eco-lifestyle", + "name": "The Sims 4: Eco Lifestyle", + "release_date": "2020-06-05", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows", + "PlayStation 4" + ], + "genres": [ + "life simulation game" + ], + "stores": [], + "developers": [ + "The Sims Studio", + "Maxis" + ], + "publishers": [ + "Electronic Arts" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q96310157" + ], + "created_at": "2026-07-10T10:10:46.081894", + "updated_at": "2026-07-10T10:10:46.081894", + "url": "/v1/games/the-sims-4-eco-lifestyle" +} diff --git a/site/public/v1/games/the-sims-4-enchanted-by-nature/index.json b/site/public/v1/games/the-sims-4-enchanted-by-nature/index.json new file mode 100644 index 000000000000..c8e5cd2587db --- /dev/null +++ b/site/public/v1/games/the-sims-4-enchanted-by-nature/index.json @@ -0,0 +1,34 @@ +{ + "id": 152447, + "slug": "the-sims-4-enchanted-by-nature", + "name": "The Sims 4: Enchanted by Nature", + "release_date": "2025-07-10", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 5", + "PlayStation 4", + "macOS", + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ], + "stores": [], + "developers": [], + "publishers": [ + "Electronic Arts" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134932792" + ], + "created_at": "2026-07-10T10:10:46.081894", + "updated_at": "2026-07-10T10:10:46.081894", + "url": "/v1/games/the-sims-4-enchanted-by-nature" +} diff --git a/site/public/v1/games/the-sims-4-fitness-stuff/index.json b/site/public/v1/games/the-sims-4-fitness-stuff/index.json new file mode 100644 index 000000000000..aea23958021b --- /dev/null +++ b/site/public/v1/games/the-sims-4-fitness-stuff/index.json @@ -0,0 +1,29 @@ +{ + "id": 152448, + "slug": "the-sims-4-fitness-stuff", + "name": "The Sims 4: Fitness Stuff", + "release_date": "2017-06-20", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q56332683" + ], + "created_at": "2026-07-10T10:10:46.081894", + "updated_at": "2026-07-10T10:10:46.081894", + "url": "/v1/games/the-sims-4-fitness-stuff" +} diff --git a/site/public/v1/games/the-sims-4-for-rent/index.json b/site/public/v1/games/the-sims-4-for-rent/index.json new file mode 100644 index 000000000000..48329ba562c0 --- /dev/null +++ b/site/public/v1/games/the-sims-4-for-rent/index.json @@ -0,0 +1,35 @@ +{ + "id": 152449, + "slug": "the-sims-4-for-rent", + "name": "The Sims 4: For Rent", + "release_date": "2023-12-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 4", + "macOS", + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ], + "stores": [], + "developers": [ + "Maxis" + ], + "publishers": [ + "Electronic Arts" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123308963" + ], + "created_at": "2026-07-10T10:10:46.081894", + "updated_at": "2026-07-10T10:10:46.081894", + "url": "/v1/games/the-sims-4-for-rent" +} diff --git a/site/public/v1/games/the-sims-4-get-famous/index.json b/site/public/v1/games/the-sims-4-get-famous/index.json new file mode 100644 index 000000000000..964125d66975 --- /dev/null +++ b/site/public/v1/games/the-sims-4-get-famous/index.json @@ -0,0 +1,36 @@ +{ + "id": 152450, + "slug": "the-sims-4-get-famous", + "name": "The Sims 4: Get Famous", + "release_date": "2018-11-16", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 4", + "macOS", + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ], + "stores": [], + "developers": [ + "The Sims Studio", + "Maxis" + ], + "publishers": [ + "Electronic Arts" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q57195853" + ], + "created_at": "2026-07-10T10:10:46.081894", + "updated_at": "2026-07-10T10:10:46.081894", + "url": "/v1/games/the-sims-4-get-famous" +} diff --git a/site/public/v1/games/the-sims-4-get-to-work/index.json b/site/public/v1/games/the-sims-4-get-to-work/index.json new file mode 100644 index 000000000000..53373d58438c --- /dev/null +++ b/site/public/v1/games/the-sims-4-get-to-work/index.json @@ -0,0 +1,34 @@ +{ + "id": 152451, + "slug": "the-sims-4-get-to-work", + "name": "The Sims 4: Get to Work", + "release_date": "2015-03-31", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ], + "stores": [], + "developers": [ + "Maxis" + ], + "publishers": [ + "Electronic Arts" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q19316870" + ], + "created_at": "2026-07-10T10:10:46.082890", + "updated_at": "2026-07-10T10:10:46.082890", + "url": "/v1/games/the-sims-4-get-to-work" +} diff --git a/site/public/v1/games/the-sims-4-get-together/index.json b/site/public/v1/games/the-sims-4-get-together/index.json new file mode 100644 index 000000000000..640453a0718e --- /dev/null +++ b/site/public/v1/games/the-sims-4-get-together/index.json @@ -0,0 +1,35 @@ +{ + "id": 152452, + "slug": "the-sims-4-get-together", + "name": "The Sims 4: Get Together", + "release_date": "2015-12-08", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ], + "stores": [], + "developers": [ + "The Sims Studio", + "Maxis" + ], + "publishers": [ + "Electronic Arts" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q20772593" + ], + "created_at": "2026-07-10T10:10:46.082890", + "updated_at": "2026-07-10T10:10:46.082890", + "url": "/v1/games/the-sims-4-get-together" +} diff --git a/site/public/v1/games/the-sims-4-growing-together/index.json b/site/public/v1/games/the-sims-4-growing-together/index.json new file mode 100644 index 000000000000..59d4e3be0b60 --- /dev/null +++ b/site/public/v1/games/the-sims-4-growing-together/index.json @@ -0,0 +1,36 @@ +{ + "id": 152453, + "slug": "the-sims-4-growing-together", + "name": "The Sims 4: Growing Together", + "release_date": "2023-03-16", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 4", + "macOS", + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ], + "stores": [], + "developers": [ + "The Sims Studio", + "Maxis" + ], + "publishers": [ + "Electronic Arts" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116672191" + ], + "created_at": "2026-07-10T10:10:46.082890", + "updated_at": "2026-07-10T10:10:46.082890", + "url": "/v1/games/the-sims-4-growing-together" +} diff --git a/site/public/v1/games/the-sims-4-high-school-years/index.json b/site/public/v1/games/the-sims-4-high-school-years/index.json new file mode 100644 index 000000000000..e073f41ed5bd --- /dev/null +++ b/site/public/v1/games/the-sims-4-high-school-years/index.json @@ -0,0 +1,29 @@ +{ + "id": 152454, + "slug": "the-sims-4-high-school-years", + "name": "The Sims 4: High School Years", + "release_date": "2022-07-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q55698371" + ], + "created_at": "2026-07-10T10:10:46.082890", + "updated_at": "2026-07-10T10:10:46.082890", + "url": "/v1/games/the-sims-4-high-school-years" +} diff --git a/site/public/v1/games/the-sims-4-home-chef-hustle-stuff/index.json b/site/public/v1/games/the-sims-4-home-chef-hustle-stuff/index.json new file mode 100644 index 000000000000..aabf2f9466be --- /dev/null +++ b/site/public/v1/games/the-sims-4-home-chef-hustle-stuff/index.json @@ -0,0 +1,29 @@ +{ + "id": 152455, + "slug": "the-sims-4-home-chef-hustle-stuff", + "name": "The Sims 4: Home Chef Hustle Stuff", + "release_date": "2023-09-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124718820" + ], + "created_at": "2026-07-10T10:10:46.082890", + "updated_at": "2026-07-10T10:10:46.082890", + "url": "/v1/games/the-sims-4-home-chef-hustle-stuff" +} diff --git a/site/public/v1/games/the-sims-4-horse-ranch/index.json b/site/public/v1/games/the-sims-4-horse-ranch/index.json new file mode 100644 index 000000000000..8984f8eb4be8 --- /dev/null +++ b/site/public/v1/games/the-sims-4-horse-ranch/index.json @@ -0,0 +1,35 @@ +{ + "id": 152456, + "slug": "the-sims-4-horse-ranch", + "name": "The Sims 4: Horse Ranch", + "release_date": "2023-07-20", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 4", + "macOS", + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ], + "stores": [], + "developers": [ + "Maxis" + ], + "publishers": [ + "Electronic Arts" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q119865172" + ], + "created_at": "2026-07-10T10:10:46.083889", + "updated_at": "2026-07-10T10:10:46.083889", + "url": "/v1/games/the-sims-4-horse-ranch" +} diff --git a/site/public/v1/games/the-sims-4-island-living/index.json b/site/public/v1/games/the-sims-4-island-living/index.json new file mode 100644 index 000000000000..27631a1a6752 --- /dev/null +++ b/site/public/v1/games/the-sims-4-island-living/index.json @@ -0,0 +1,36 @@ +{ + "id": 152457, + "slug": "the-sims-4-island-living", + "name": "The Sims 4: Island Living", + "release_date": "2019-06-21", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 4", + "macOS", + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ], + "stores": [], + "developers": [ + "The Sims Studio", + "Maxis" + ], + "publishers": [ + "Electronic Arts" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q65163548" + ], + "created_at": "2026-07-10T10:10:46.083889", + "updated_at": "2026-07-10T10:10:46.083889", + "url": "/v1/games/the-sims-4-island-living" +} diff --git a/site/public/v1/games/the-sims-4-jungle-adventure/index.json b/site/public/v1/games/the-sims-4-jungle-adventure/index.json new file mode 100644 index 000000000000..5f6f30215a06 --- /dev/null +++ b/site/public/v1/games/the-sims-4-jungle-adventure/index.json @@ -0,0 +1,36 @@ +{ + "id": 152458, + "slug": "the-sims-4-jungle-adventure", + "name": "The Sims 4: Jungle Adventure", + "release_date": "2018-02-27", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 4", + "Microsoft Windows", + "macOS" + ], + "genres": [ + "life simulation game" + ], + "stores": [], + "developers": [ + "The Sims Studio", + "Maxis" + ], + "publishers": [ + "Electronic Arts" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q50295643" + ], + "created_at": "2026-07-10T10:10:46.083889", + "updated_at": "2026-07-10T10:10:46.083889", + "url": "/v1/games/the-sims-4-jungle-adventure" +} diff --git a/site/public/v1/games/the-sims-4-kids-room-stuff/index.json b/site/public/v1/games/the-sims-4-kids-room-stuff/index.json new file mode 100644 index 000000000000..569b4bef365c --- /dev/null +++ b/site/public/v1/games/the-sims-4-kids-room-stuff/index.json @@ -0,0 +1,29 @@ +{ + "id": 152459, + "slug": "the-sims-4-kids-room-stuff", + "name": "The Sims 4: Kids Room Stuff", + "release_date": "2016-06-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q56332654" + ], + "created_at": "2026-07-10T10:10:46.083889", + "updated_at": "2026-07-10T10:10:46.083889", + "url": "/v1/games/the-sims-4-kids-room-stuff" +} diff --git a/site/public/v1/games/the-sims-4-laundry-day-stuff/index.json b/site/public/v1/games/the-sims-4-laundry-day-stuff/index.json new file mode 100644 index 000000000000..97aeb988e357 --- /dev/null +++ b/site/public/v1/games/the-sims-4-laundry-day-stuff/index.json @@ -0,0 +1,29 @@ +{ + "id": 152460, + "slug": "the-sims-4-laundry-day-stuff", + "name": "The Sims 4: Laundry Day Stuff", + "release_date": "2018-01-16", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q56332705" + ], + "created_at": "2026-07-10T10:10:46.084888", + "updated_at": "2026-07-10T10:10:46.084888", + "url": "/v1/games/the-sims-4-laundry-day-stuff" +} diff --git a/site/public/v1/games/the-sims-4-life-death/index.json b/site/public/v1/games/the-sims-4-life-death/index.json new file mode 100644 index 000000000000..c470387f049c --- /dev/null +++ b/site/public/v1/games/the-sims-4-life-death/index.json @@ -0,0 +1,37 @@ +{ + "id": 152461, + "slug": "the-sims-4-life-death", + "name": "The Sims 4: Life & Death", + "release_date": "2024-10-31", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 5", + "PlayStation 4", + "macOS", + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ], + "stores": [], + "developers": [ + "Maxis" + ], + "publishers": [ + "Electronic Arts" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130438178" + ], + "created_at": "2026-07-10T10:10:46.084888", + "updated_at": "2026-07-10T10:10:46.084888", + "url": "/v1/games/the-sims-4-life-death" +} diff --git a/site/public/v1/games/the-sims-4-luxury-party-stuff/index.json b/site/public/v1/games/the-sims-4-luxury-party-stuff/index.json new file mode 100644 index 000000000000..b72d11e0e4cb --- /dev/null +++ b/site/public/v1/games/the-sims-4-luxury-party-stuff/index.json @@ -0,0 +1,27 @@ +{ + "id": 152463, + "slug": "the-sims-4-luxury-party-stuff", + "name": "The Sims 4: Luxury Party Stuff", + "release_date": "2015-05-19", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "life simulation game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q56332555" + ], + "created_at": "2026-07-10T10:10:46.084888", + "updated_at": "2026-07-10T10:10:46.084888", + "url": "/v1/games/the-sims-4-luxury-party-stuff" +} diff --git a/site/public/v1/games/the-sims-4-moschino-stuff/index.json b/site/public/v1/games/the-sims-4-moschino-stuff/index.json new file mode 100644 index 000000000000..8669ec7316db --- /dev/null +++ b/site/public/v1/games/the-sims-4-moschino-stuff/index.json @@ -0,0 +1,29 @@ +{ + "id": 152464, + "slug": "the-sims-4-moschino-stuff", + "name": "The Sims 4: Moschino Stuff", + "release_date": "2019-08-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124718044" + ], + "created_at": "2026-07-10T10:10:46.084888", + "updated_at": "2026-07-10T10:10:46.084888", + "url": "/v1/games/the-sims-4-moschino-stuff" +} diff --git a/site/public/v1/games/the-sims-4-movie-hangout-stuff/index.json b/site/public/v1/games/the-sims-4-movie-hangout-stuff/index.json new file mode 100644 index 000000000000..32e598760739 --- /dev/null +++ b/site/public/v1/games/the-sims-4-movie-hangout-stuff/index.json @@ -0,0 +1,29 @@ +{ + "id": 152465, + "slug": "the-sims-4-movie-hangout-stuff", + "name": "The Sims 4: Movie Hangout Stuff", + "release_date": "2016-01-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q56332634" + ], + "created_at": "2026-07-10T10:10:46.085888", + "updated_at": "2026-07-10T10:10:46.085888", + "url": "/v1/games/the-sims-4-movie-hangout-stuff" +} diff --git a/site/public/v1/games/the-sims-4-my-first-pet-stuff/index.json b/site/public/v1/games/the-sims-4-my-first-pet-stuff/index.json new file mode 100644 index 000000000000..6e88d1503692 --- /dev/null +++ b/site/public/v1/games/the-sims-4-my-first-pet-stuff/index.json @@ -0,0 +1,29 @@ +{ + "id": 152466, + "slug": "the-sims-4-my-first-pet-stuff", + "name": "The Sims 4: My First Pet Stuff", + "release_date": "2018-03-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q56332710" + ], + "created_at": "2026-07-10T10:10:46.085888", + "updated_at": "2026-07-10T10:10:46.085888", + "url": "/v1/games/the-sims-4-my-first-pet-stuff" +} diff --git a/site/public/v1/games/the-sims-4-my-wedding-stories/index.json b/site/public/v1/games/the-sims-4-my-wedding-stories/index.json new file mode 100644 index 000000000000..f7f9560c730a --- /dev/null +++ b/site/public/v1/games/the-sims-4-my-wedding-stories/index.json @@ -0,0 +1,36 @@ +{ + "id": 152467, + "slug": "the-sims-4-my-wedding-stories", + "name": "The Sims 4: My Wedding Stories", + "release_date": "2022-02-17", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 4", + "macOS", + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ], + "stores": [], + "developers": [ + "The Sims Studio", + "Maxis" + ], + "publishers": [ + "Electronic Arts" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110866914" + ], + "created_at": "2026-07-10T10:10:46.085888", + "updated_at": "2026-07-10T10:10:46.085888", + "url": "/v1/games/the-sims-4-my-wedding-stories" +} diff --git a/site/public/v1/games/the-sims-4-nifty-knitting-stuff/index.json b/site/public/v1/games/the-sims-4-nifty-knitting-stuff/index.json new file mode 100644 index 000000000000..688618225650 --- /dev/null +++ b/site/public/v1/games/the-sims-4-nifty-knitting-stuff/index.json @@ -0,0 +1,29 @@ +{ + "id": 152468, + "slug": "the-sims-4-nifty-knitting-stuff", + "name": "The Sims 4: Nifty Knitting Stuff", + "release_date": "2020-07-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124718773" + ], + "created_at": "2026-07-10T10:10:46.085888", + "updated_at": "2026-07-10T10:10:46.086888", + "url": "/v1/games/the-sims-4-nifty-knitting-stuff" +} diff --git a/site/public/v1/games/the-sims-4-outdoor-retreat/index.json b/site/public/v1/games/the-sims-4-outdoor-retreat/index.json new file mode 100644 index 000000000000..c0425cccad6a --- /dev/null +++ b/site/public/v1/games/the-sims-4-outdoor-retreat/index.json @@ -0,0 +1,34 @@ +{ + "id": 152469, + "slug": "the-sims-4-outdoor-retreat", + "name": "The Sims 4: Outdoor Retreat", + "release_date": "2015-01-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ], + "stores": [], + "developers": [ + "Maxis" + ], + "publishers": [ + "Electronic Arts" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18808215" + ], + "created_at": "2026-07-10T10:10:46.086888", + "updated_at": "2026-07-10T10:10:46.086888", + "url": "/v1/games/the-sims-4-outdoor-retreat" +} diff --git a/site/public/v1/games/the-sims-4-paranormal-stuff/index.json b/site/public/v1/games/the-sims-4-paranormal-stuff/index.json new file mode 100644 index 000000000000..89dfa2d9d941 --- /dev/null +++ b/site/public/v1/games/the-sims-4-paranormal-stuff/index.json @@ -0,0 +1,29 @@ +{ + "id": 152470, + "slug": "the-sims-4-paranormal-stuff", + "name": "The Sims 4: Paranormal Stuff", + "release_date": "2021-01-26", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124718787" + ], + "created_at": "2026-07-10T10:10:46.086888", + "updated_at": "2026-07-10T10:10:46.086888", + "url": "/v1/games/the-sims-4-paranormal-stuff" +} diff --git a/site/public/v1/games/the-sims-4-parenthood/index.json b/site/public/v1/games/the-sims-4-parenthood/index.json new file mode 100644 index 000000000000..b22c5e414d0a --- /dev/null +++ b/site/public/v1/games/the-sims-4-parenthood/index.json @@ -0,0 +1,37 @@ +{ + "id": 152471, + "slug": "the-sims-4-parenthood", + "name": "The Sims 4: Parenthood", + "release_date": "2017-05-30", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 4", + "macOS", + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ], + "stores": [], + "developers": [ + "The Sims Studio", + "Maxis", + "Electronic Arts" + ], + "publishers": [ + "Electronic Arts" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q30641763" + ], + "created_at": "2026-07-10T10:10:46.086888", + "updated_at": "2026-07-10T10:10:46.086888", + "url": "/v1/games/the-sims-4-parenthood" +} diff --git a/site/public/v1/games/the-sims-4-perfect-patio-stuff/index.json b/site/public/v1/games/the-sims-4-perfect-patio-stuff/index.json new file mode 100644 index 000000000000..2de535ff4fd7 --- /dev/null +++ b/site/public/v1/games/the-sims-4-perfect-patio-stuff/index.json @@ -0,0 +1,36 @@ +{ + "id": 152472, + "slug": "the-sims-4-perfect-patio-stuff", + "name": "The Sims 4: Perfect Patio Stuff", + "release_date": "2015-06-16", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 4", + "macOS", + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ], + "stores": [], + "developers": [ + "The Sims Studio", + "Maxis" + ], + "publishers": [ + "Electronic Arts" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q56332573" + ], + "created_at": "2026-07-10T10:10:46.086888", + "updated_at": "2026-07-10T10:10:46.086888", + "url": "/v1/games/the-sims-4-perfect-patio-stuff" +} diff --git a/site/public/v1/games/the-sims-4-realm-of-magic/index.json b/site/public/v1/games/the-sims-4-realm-of-magic/index.json new file mode 100644 index 000000000000..f875a5e4b313 --- /dev/null +++ b/site/public/v1/games/the-sims-4-realm-of-magic/index.json @@ -0,0 +1,36 @@ +{ + "id": 152473, + "slug": "the-sims-4-realm-of-magic", + "name": "The Sims 4: Realm of Magic", + "release_date": "2019-09-10", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 4", + "macOS", + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ], + "stores": [], + "developers": [ + "The Sims Studio", + "Maxis" + ], + "publishers": [ + "Electronic Arts" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q81604750" + ], + "created_at": "2026-07-10T10:10:46.086888", + "updated_at": "2026-07-10T10:10:46.086888", + "url": "/v1/games/the-sims-4-realm-of-magic" +} diff --git a/site/public/v1/games/the-sims-4-romantic-garden-stuff/index.json b/site/public/v1/games/the-sims-4-romantic-garden-stuff/index.json new file mode 100644 index 000000000000..2b48d23c2570 --- /dev/null +++ b/site/public/v1/games/the-sims-4-romantic-garden-stuff/index.json @@ -0,0 +1,29 @@ +{ + "id": 152474, + "slug": "the-sims-4-romantic-garden-stuff", + "name": "The Sims 4: Romantic Garden Stuff", + "release_date": "2016-02-09", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q56332647" + ], + "created_at": "2026-07-10T10:10:46.087887", + "updated_at": "2026-07-10T10:10:46.087887", + "url": "/v1/games/the-sims-4-romantic-garden-stuff" +} diff --git a/site/public/v1/games/the-sims-4-royalty-and-legacy/index.json b/site/public/v1/games/the-sims-4-royalty-and-legacy/index.json new file mode 100644 index 000000000000..3d424e08a5d3 --- /dev/null +++ b/site/public/v1/games/the-sims-4-royalty-and-legacy/index.json @@ -0,0 +1,34 @@ +{ + "id": 152475, + "slug": "the-sims-4-royalty-and-legacy", + "name": "The Sims 4: Royalty and Legacy", + "release_date": "2026-02-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 5", + "PlayStation 4", + "macOS", + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ], + "stores": [], + "developers": [ + "Maxis" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137824017" + ], + "created_at": "2026-07-10T10:10:46.087887", + "updated_at": "2026-07-10T10:10:46.087887", + "url": "/v1/games/the-sims-4-royalty-and-legacy" +} diff --git a/site/public/v1/games/the-sims-4-seasons/index.json b/site/public/v1/games/the-sims-4-seasons/index.json new file mode 100644 index 000000000000..19ae2dfeb0cd --- /dev/null +++ b/site/public/v1/games/the-sims-4-seasons/index.json @@ -0,0 +1,36 @@ +{ + "id": 152476, + "slug": "the-sims-4-seasons", + "name": "The Sims 4: Seasons", + "release_date": "2018-06-22", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 4", + "macOS", + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ], + "stores": [], + "developers": [ + "The Sims Studio", + "Maxis" + ], + "publishers": [ + "Electronic Arts" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q54935284" + ], + "created_at": "2026-07-10T10:10:46.087887", + "updated_at": "2026-07-10T10:10:46.087887", + "url": "/v1/games/the-sims-4-seasons" +} diff --git a/site/public/v1/games/the-sims-4-snowy-escape/index.json b/site/public/v1/games/the-sims-4-snowy-escape/index.json new file mode 100644 index 000000000000..41998236fd2d --- /dev/null +++ b/site/public/v1/games/the-sims-4-snowy-escape/index.json @@ -0,0 +1,36 @@ +{ + "id": 152477, + "slug": "the-sims-4-snowy-escape", + "name": "The Sims 4: Snowy Escape", + "release_date": "2020-11-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 4", + "macOS", + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ], + "stores": [], + "developers": [ + "The Sims Studio", + "Maxis" + ], + "publishers": [ + "Electronic Arts" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q100708490" + ], + "created_at": "2026-07-10T10:10:46.087887", + "updated_at": "2026-07-10T10:10:46.087887", + "url": "/v1/games/the-sims-4-snowy-escape" +} diff --git a/site/public/v1/games/the-sims-4-spa-day/index.json b/site/public/v1/games/the-sims-4-spa-day/index.json new file mode 100644 index 000000000000..a13cee1da045 --- /dev/null +++ b/site/public/v1/games/the-sims-4-spa-day/index.json @@ -0,0 +1,34 @@ +{ + "id": 152478, + "slug": "the-sims-4-spa-day", + "name": "The Sims 4: Spa Day", + "release_date": "2015-07-14", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ], + "stores": [], + "developers": [ + "Maxis" + ], + "publishers": [ + "Electronic Arts" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q20772014" + ], + "created_at": "2026-07-10T10:10:46.087887", + "updated_at": "2026-07-10T10:10:46.087887", + "url": "/v1/games/the-sims-4-spa-day" +} diff --git a/site/public/v1/games/the-sims-4-spooky-stuff/index.json b/site/public/v1/games/the-sims-4-spooky-stuff/index.json new file mode 100644 index 000000000000..27e291867215 --- /dev/null +++ b/site/public/v1/games/the-sims-4-spooky-stuff/index.json @@ -0,0 +1,29 @@ +{ + "id": 152479, + "slug": "the-sims-4-spooky-stuff", + "name": "The Sims 4: Spooky Stuff", + "release_date": "2015-09-29", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q56332622" + ], + "created_at": "2026-07-10T10:10:46.088888", + "updated_at": "2026-07-10T10:10:46.088888", + "url": "/v1/games/the-sims-4-spooky-stuff" +} diff --git a/site/public/v1/games/the-sims-4-star-wars-journey-to-batuu-bundle/index.json b/site/public/v1/games/the-sims-4-star-wars-journey-to-batuu-bundle/index.json new file mode 100644 index 000000000000..adc7afc44642 --- /dev/null +++ b/site/public/v1/games/the-sims-4-star-wars-journey-to-batuu-bundle/index.json @@ -0,0 +1,35 @@ +{ + "id": 152480, + "slug": "the-sims-4-star-wars-journey-to-batuu-bundle", + "name": "The Sims 4 + Star Wars: Journey to Batuu Bundle", + "release_date": "2020-09-08", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "life simulation game", + "casual game" + ], + "stores": [], + "developers": [ + "The Sims Studio", + "Maxis" + ], + "publishers": [ + "Electronic Arts" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q104660602" + ], + "created_at": "2026-07-10T10:10:46.088888", + "updated_at": "2026-07-10T10:10:46.088888", + "url": "/v1/games/the-sims-4-star-wars-journey-to-batuu-bundle" +} diff --git a/site/public/v1/games/the-sims-4-star-wars-journey-to-batuu/index.json b/site/public/v1/games/the-sims-4-star-wars-journey-to-batuu/index.json new file mode 100644 index 000000000000..fb8a950b97df --- /dev/null +++ b/site/public/v1/games/the-sims-4-star-wars-journey-to-batuu/index.json @@ -0,0 +1,36 @@ +{ + "id": 152481, + "slug": "the-sims-4-star-wars-journey-to-batuu", + "name": "The Sims 4 Star Wars: Journey to Batuu", + "release_date": "2020-09-08", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 4", + "macOS", + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ], + "stores": [], + "developers": [ + "The Sims Studio", + "Maxis" + ], + "publishers": [ + "Electronic Arts" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q98937581" + ], + "created_at": "2026-07-10T10:10:46.088888", + "updated_at": "2026-07-10T10:10:46.088888", + "url": "/v1/games/the-sims-4-star-wars-journey-to-batuu" +} diff --git a/site/public/v1/games/the-sims-4-strangerville/index.json b/site/public/v1/games/the-sims-4-strangerville/index.json new file mode 100644 index 000000000000..6136cbef3807 --- /dev/null +++ b/site/public/v1/games/the-sims-4-strangerville/index.json @@ -0,0 +1,36 @@ +{ + "id": 152482, + "slug": "the-sims-4-strangerville", + "name": "The Sims 4: StrangerVille", + "release_date": "2019-02-26", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 4", + "macOS", + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ], + "stores": [], + "developers": [ + "The Sims Studio", + "Maxis" + ], + "publishers": [ + "Electronic Arts" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q61811865" + ], + "created_at": "2026-07-10T10:10:46.088888", + "updated_at": "2026-07-10T10:10:46.088888", + "url": "/v1/games/the-sims-4-strangerville" +} diff --git a/site/public/v1/games/the-sims-4-stuff-bundle-fitness-cool-kitchen-laundry-day-perfect-patio/index.json b/site/public/v1/games/the-sims-4-stuff-bundle-fitness-cool-kitchen-laundry-day-perfect-patio/index.json new file mode 100644 index 000000000000..aa64cbb38e87 --- /dev/null +++ b/site/public/v1/games/the-sims-4-stuff-bundle-fitness-cool-kitchen-laundry-day-perfect-patio/index.json @@ -0,0 +1,35 @@ +{ + "id": 152483, + "slug": "the-sims-4-stuff-bundle-fitness-cool-kitchen-laundry-day-perfect-patio", + "name": "The Sims 4 Stuff Bundle - Fitness, Cool Kitchen, Laundry Day, Perfect Patio", + "release_date": "2020-07-27", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "life simulation game", + "casual game" + ], + "stores": [], + "developers": [ + "The Sims Studio", + "Maxis" + ], + "publishers": [ + "Electronic Arts" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q104665607" + ], + "created_at": "2026-07-10T10:10:46.088888", + "updated_at": "2026-07-10T10:10:46.088888", + "url": "/v1/games/the-sims-4-stuff-bundle-fitness-cool-kitchen-laundry-day-perfect-patio" +} diff --git a/site/public/v1/games/the-sims-4-stuff-packs/index.json b/site/public/v1/games/the-sims-4-stuff-packs/index.json new file mode 100644 index 000000000000..b897a7bcb5d9 --- /dev/null +++ b/site/public/v1/games/the-sims-4-stuff-packs/index.json @@ -0,0 +1,33 @@ +{ + "id": 152484, + "slug": "the-sims-4-stuff-packs", + "name": "The Sims 4 Stuff packs", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ], + "stores": [], + "developers": [ + "Maxis" + ], + "publishers": [ + "Electronic Arts" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q20860344" + ], + "created_at": "2026-07-10T10:10:46.089937", + "updated_at": "2026-07-10T10:10:46.089937", + "url": "/v1/games/the-sims-4-stuff-packs" +} diff --git a/site/public/v1/games/the-sims-4-throwback-fit-kit/index.json b/site/public/v1/games/the-sims-4-throwback-fit-kit/index.json new file mode 100644 index 000000000000..4b04d3706e2d --- /dev/null +++ b/site/public/v1/games/the-sims-4-throwback-fit-kit/index.json @@ -0,0 +1,38 @@ +{ + "id": 152485, + "slug": "the-sims-4-throwback-fit-kit", + "name": "The Sims 4: Throwback Fit Kit", + "release_date": "2021-03-02", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 5", + "PlayStation 4", + "macOS", + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ], + "stores": [], + "developers": [ + "The Sims Studio", + "Maxis" + ], + "publishers": [ + "Electronic Arts" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113785383" + ], + "created_at": "2026-07-10T10:10:46.089937", + "updated_at": "2026-07-10T10:10:46.089937", + "url": "/v1/games/the-sims-4-throwback-fit-kit" +} diff --git a/site/public/v1/games/the-sims-4-tiny-living-stuff/index.json b/site/public/v1/games/the-sims-4-tiny-living-stuff/index.json new file mode 100644 index 000000000000..285f5b1050a5 --- /dev/null +++ b/site/public/v1/games/the-sims-4-tiny-living-stuff/index.json @@ -0,0 +1,29 @@ +{ + "id": 152486, + "slug": "the-sims-4-tiny-living-stuff", + "name": "The Sims 4: Tiny Living Stuff", + "release_date": "2020-01-21", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124718578" + ], + "created_at": "2026-07-10T10:10:46.089937", + "updated_at": "2026-07-10T10:10:46.089937", + "url": "/v1/games/the-sims-4-tiny-living-stuff" +} diff --git a/site/public/v1/games/the-sims-4-toddler-stuff/index.json b/site/public/v1/games/the-sims-4-toddler-stuff/index.json new file mode 100644 index 000000000000..6db07d13b737 --- /dev/null +++ b/site/public/v1/games/the-sims-4-toddler-stuff/index.json @@ -0,0 +1,29 @@ +{ + "id": 152487, + "slug": "the-sims-4-toddler-stuff", + "name": "The Sims 4: Toddler Stuff", + "release_date": "2017-08-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q56332691" + ], + "created_at": "2026-07-10T10:10:46.089937", + "updated_at": "2026-07-10T10:10:46.089937", + "url": "/v1/games/the-sims-4-toddler-stuff" +} diff --git a/site/public/v1/games/the-sims-4-vampires/index.json b/site/public/v1/games/the-sims-4-vampires/index.json new file mode 100644 index 000000000000..9e32922bb1dc --- /dev/null +++ b/site/public/v1/games/the-sims-4-vampires/index.json @@ -0,0 +1,36 @@ +{ + "id": 152488, + "slug": "the-sims-4-vampires", + "name": "The Sims 4: Vampires", + "release_date": "2017-01-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 4", + "macOS", + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ], + "stores": [], + "developers": [ + "The Sims Studio", + "Maxis" + ], + "publishers": [ + "Electronic Arts" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28532739" + ], + "created_at": "2026-07-10T10:10:46.089937", + "updated_at": "2026-07-10T10:10:46.089937", + "url": "/v1/games/the-sims-4-vampires" +} diff --git a/site/public/v1/games/the-sims-4-vintage-glamour-stuff/index.json b/site/public/v1/games/the-sims-4-vintage-glamour-stuff/index.json new file mode 100644 index 000000000000..b7867606017e --- /dev/null +++ b/site/public/v1/games/the-sims-4-vintage-glamour-stuff/index.json @@ -0,0 +1,29 @@ +{ + "id": 152489, + "slug": "the-sims-4-vintage-glamour-stuff", + "name": "The Sims 4: Vintage Glamour Stuff", + "release_date": "2016-12-06", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q56332670" + ], + "created_at": "2026-07-10T10:10:46.090957", + "updated_at": "2026-07-10T10:10:46.090957", + "url": "/v1/games/the-sims-4-vintage-glamour-stuff" +} diff --git a/site/public/v1/games/the-sims-4-werewolves-q136511463/index.json b/site/public/v1/games/the-sims-4-werewolves-q136511463/index.json new file mode 100644 index 000000000000..92ccc4c6418f --- /dev/null +++ b/site/public/v1/games/the-sims-4-werewolves-q136511463/index.json @@ -0,0 +1,35 @@ +{ + "id": 152490, + "slug": "the-sims-4-werewolves-q136511463", + "name": "The Sims 4: Werewolves", + "release_date": "2022-06-16", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 5", + "PlayStation 4", + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Maxis" + ], + "publishers": [ + "Electronic Arts" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136511463" + ], + "created_at": "2026-07-10T10:10:46.090957", + "updated_at": "2026-07-10T10:10:46.090957", + "url": "/v1/games/the-sims-4-werewolves-q136511463" +} diff --git a/site/public/v1/games/the-sims-4-werewolves/index.json b/site/public/v1/games/the-sims-4-werewolves/index.json new file mode 100644 index 000000000000..75b7ea4a57ff --- /dev/null +++ b/site/public/v1/games/the-sims-4-werewolves/index.json @@ -0,0 +1,36 @@ +{ + "id": 152491, + "slug": "the-sims-4-werewolves", + "name": "The Sims 4: Werewolves", + "release_date": "2022-06-16", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 4", + "macOS", + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ], + "stores": [], + "developers": [ + "The Sims Studio", + "Maxis" + ], + "publishers": [ + "Electronic Arts" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113403454" + ], + "created_at": "2026-07-10T10:10:46.090957", + "updated_at": "2026-07-10T10:10:46.090957", + "url": "/v1/games/the-sims-4-werewolves" +} diff --git a/site/public/v1/games/the-sims-5/index.json b/site/public/v1/games/the-sims-5/index.json new file mode 100644 index 000000000000..b6b182655e31 --- /dev/null +++ b/site/public/v1/games/the-sims-5/index.json @@ -0,0 +1,34 @@ +{ + "id": 152493, + "slug": "the-sims-5", + "name": "The Sims 5", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "iOS", + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ], + "stores": [], + "developers": [ + "The Sims Studio" + ], + "publishers": [ + "Electronic Arts" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q99609650" + ], + "created_at": "2026-07-10T10:10:46.090957", + "updated_at": "2026-07-10T10:10:46.090957", + "url": "/v1/games/the-sims-5" +} diff --git a/site/public/v1/games/the-sims-hot-date/index.json b/site/public/v1/games/the-sims-hot-date/index.json new file mode 100644 index 000000000000..d7a45304d546 --- /dev/null +++ b/site/public/v1/games/the-sims-hot-date/index.json @@ -0,0 +1,34 @@ +{ + "id": 152503, + "slug": "the-sims-hot-date", + "name": "The Sims: Hot Date", + "release_date": "2001-11-14", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ], + "stores": [], + "developers": [ + "Maxis" + ], + "publishers": [ + "Electronic Arts" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1991302" + ], + "created_at": "2026-07-10T10:10:46.092981", + "updated_at": "2026-07-10T10:10:46.092981", + "url": "/v1/games/the-sims-hot-date" +} diff --git a/site/public/v1/games/the-sims-house-party/index.json b/site/public/v1/games/the-sims-house-party/index.json new file mode 100644 index 000000000000..33bf63da237c --- /dev/null +++ b/site/public/v1/games/the-sims-house-party/index.json @@ -0,0 +1,33 @@ +{ + "id": 152504, + "slug": "the-sims-house-party", + "name": "The Sims: House Party", + "release_date": "2001-03-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ], + "stores": [], + "developers": [ + "Maxis" + ], + "publishers": [ + "Electronic Arts" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2082124" + ], + "created_at": "2026-07-10T10:10:46.093974", + "updated_at": "2026-07-10T10:10:46.093974", + "url": "/v1/games/the-sims-house-party" +} diff --git a/site/public/v1/games/the-sims-livin-large/index.json b/site/public/v1/games/the-sims-livin-large/index.json new file mode 100644 index 000000000000..874c0db45faa --- /dev/null +++ b/site/public/v1/games/the-sims-livin-large/index.json @@ -0,0 +1,35 @@ +{ + "id": 152506, + "slug": "the-sims-livin-large", + "name": "The Sims: Livin' Large", + "release_date": "2000-08-27", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Classic Mac OS", + "macOS", + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ], + "stores": [], + "developers": [ + "Maxis" + ], + "publishers": [ + "Electronic Arts" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1764439" + ], + "created_at": "2026-07-10T10:10:46.093974", + "updated_at": "2026-07-10T10:10:46.093974", + "url": "/v1/games/the-sims-livin-large" +} diff --git a/site/public/v1/games/the-sims-makin-magic/index.json b/site/public/v1/games/the-sims-makin-magic/index.json new file mode 100644 index 000000000000..ed1aadcb4389 --- /dev/null +++ b/site/public/v1/games/the-sims-makin-magic/index.json @@ -0,0 +1,33 @@ +{ + "id": 152507, + "slug": "the-sims-makin-magic", + "name": "The Sims: Makin' Magic", + "release_date": "2003-10-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ], + "stores": [], + "developers": [ + "Maxis" + ], + "publishers": [ + "Electronic Arts" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2017466" + ], + "created_at": "2026-07-10T10:10:46.093974", + "updated_at": "2026-07-10T10:10:46.093974", + "url": "/v1/games/the-sims-makin-magic" +} diff --git a/site/public/v1/games/the-sims-medieval-pirates-and-nobles/index.json b/site/public/v1/games/the-sims-medieval-pirates-and-nobles/index.json new file mode 100644 index 000000000000..44abf9f9673b --- /dev/null +++ b/site/public/v1/games/the-sims-medieval-pirates-and-nobles/index.json @@ -0,0 +1,35 @@ +{ + "id": 152508, + "slug": "the-sims-medieval-pirates-and-nobles", + "name": "The Sims Medieval: Pirates and Nobles", + "release_date": "2011-08-30", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "adventure video game", + "life simulation game" + ], + "stores": [], + "developers": [ + "The Sims Studio" + ], + "publishers": [ + "Electronic Arts" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2745327" + ], + "created_at": "2026-07-10T10:10:46.093974", + "updated_at": "2026-07-10T10:10:46.093974", + "url": "/v1/games/the-sims-medieval-pirates-and-nobles" +} diff --git a/site/public/v1/games/the-sims-olympus/index.json b/site/public/v1/games/the-sims-olympus/index.json new file mode 100644 index 000000000000..b84bae1ce94b --- /dev/null +++ b/site/public/v1/games/the-sims-olympus/index.json @@ -0,0 +1,27 @@ +{ + "id": 152512, + "slug": "the-sims-olympus", + "name": "The Sims Olympus", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63243990" + ], + "created_at": "2026-07-10T10:10:46.094954", + "updated_at": "2026-07-10T10:10:46.094954", + "url": "/v1/games/the-sims-olympus" +} diff --git a/site/public/v1/games/the-sims-superstar/index.json b/site/public/v1/games/the-sims-superstar/index.json new file mode 100644 index 000000000000..1d31132d6b7a --- /dev/null +++ b/site/public/v1/games/the-sims-superstar/index.json @@ -0,0 +1,34 @@ +{ + "id": 152518, + "slug": "the-sims-superstar", + "name": "The Sims: Superstar", + "release_date": "2003-05-15", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "life simulation game", + "simulation video game" + ], + "stores": [], + "developers": [ + "Maxis" + ], + "publishers": [ + "Electronic Arts" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q768964" + ], + "created_at": "2026-07-10T10:10:46.095958", + "updated_at": "2026-07-10T10:10:46.095958", + "url": "/v1/games/the-sims-superstar" +} diff --git a/site/public/v1/games/the-sims-vacation/index.json b/site/public/v1/games/the-sims-vacation/index.json new file mode 100644 index 000000000000..56ce081fe4a5 --- /dev/null +++ b/site/public/v1/games/the-sims-vacation/index.json @@ -0,0 +1,33 @@ +{ + "id": 152520, + "slug": "the-sims-vacation", + "name": "The Sims: Vacation", + "release_date": "2002-03-25", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "life simulation game" + ], + "stores": [], + "developers": [ + "Maxis" + ], + "publishers": [ + "Electronic Arts" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2177599" + ], + "created_at": "2026-07-10T10:10:46.096969", + "updated_at": "2026-07-10T10:10:46.096969", + "url": "/v1/games/the-sims-vacation" +} diff --git a/site/public/v1/games/the-sphere/index.json b/site/public/v1/games/the-sphere/index.json new file mode 100644 index 000000000000..12ce8d0953c1 --- /dev/null +++ b/site/public/v1/games/the-sphere/index.json @@ -0,0 +1,25 @@ +{ + "id": 152691, + "slug": "the-sphere", + "name": "The Sphere", + "release_date": "2013-11-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q57973874" + ], + "created_at": "2026-07-10T10:10:46.142978", + "updated_at": "2026-07-10T10:10:46.142978", + "url": "/v1/games/the-sphere" +} diff --git a/site/public/v1/games/the-stanley-parable-q116683903/index.json b/site/public/v1/games/the-stanley-parable-q116683903/index.json new file mode 100644 index 000000000000..332ef9036a89 --- /dev/null +++ b/site/public/v1/games/the-stanley-parable-q116683903/index.json @@ -0,0 +1,27 @@ +{ + "id": 152743, + "slug": "the-stanley-parable-q116683903", + "name": "The Stanley Parable", + "release_date": "2011-07-31", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116683903" + ], + "created_at": "2026-07-10T10:10:46.156968", + "updated_at": "2026-07-10T10:10:46.156968", + "url": "/v1/games/the-stanley-parable-q116683903" +} diff --git a/site/public/v1/games/the-star-wars-trilogy/index.json b/site/public/v1/games/the-star-wars-trilogy/index.json new file mode 100644 index 000000000000..0bc7fc613a60 --- /dev/null +++ b/site/public/v1/games/the-star-wars-trilogy/index.json @@ -0,0 +1,40 @@ +{ + "id": 152747, + "slug": "the-star-wars-trilogy", + "name": "The Star Wars Trilogy", + "release_date": "1989-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Atari ST", + "Amstrad CPC", + "Commodore Amiga", + "Commodore 64", + "ZX Spectrum" + ], + "genres": [ + "racing video game", + "shoot 'em up", + "shooter game" + ], + "stores": [], + "developers": [ + "Atari, Inc.", + "Vektor Grafix" + ], + "publishers": [ + "Domark Software" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q29577951" + ], + "created_at": "2026-07-10T10:10:46.157974", + "updated_at": "2026-07-10T10:10:46.157974", + "url": "/v1/games/the-star-wars-trilogy" +} diff --git a/site/public/v1/games/the-surge-a-walk-in-the-park/index.json b/site/public/v1/games/the-surge-a-walk-in-the-park/index.json new file mode 100644 index 000000000000..3a217eefcd84 --- /dev/null +++ b/site/public/v1/games/the-surge-a-walk-in-the-park/index.json @@ -0,0 +1,25 @@ +{ + "id": 152872, + "slug": "the-surge-a-walk-in-the-park", + "name": "The Surge: A Walk in the Park", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140461504" + ], + "created_at": "2026-07-10T10:10:46.191680", + "updated_at": "2026-07-10T10:10:46.191680", + "url": "/v1/games/the-surge-a-walk-in-the-park" +} diff --git a/site/public/v1/games/the-talos-principle-road-to-gehenna/index.json b/site/public/v1/games/the-talos-principle-road-to-gehenna/index.json new file mode 100644 index 000000000000..a2899e251bc4 --- /dev/null +++ b/site/public/v1/games/the-talos-principle-road-to-gehenna/index.json @@ -0,0 +1,32 @@ +{ + "id": 152953, + "slug": "the-talos-principle-road-to-gehenna", + "name": "The Talos Principle: Road To Gehenna", + "release_date": "2015-07-23", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Croteam" + ], + "publishers": [ + "Devolver Digital" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110252934" + ], + "created_at": "2026-07-10T10:10:46.211691", + "updated_at": "2026-07-10T10:10:46.211691", + "url": "/v1/games/the-talos-principle-road-to-gehenna" +} diff --git a/site/public/v1/games/the-teal-mask/index.json b/site/public/v1/games/the-teal-mask/index.json new file mode 100644 index 000000000000..07b7f344e2da --- /dev/null +++ b/site/public/v1/games/the-teal-mask/index.json @@ -0,0 +1,27 @@ +{ + "id": 152967, + "slug": "the-teal-mask", + "name": "The Teal Mask", + "release_date": "2023-09-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Nintendo Switch Lite" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130331588" + ], + "created_at": "2026-07-10T10:10:46.215709", + "updated_at": "2026-07-10T10:10:46.215709", + "url": "/v1/games/the-teal-mask" +} diff --git a/site/public/v1/games/the-telltale-batman-shadows-edition/index.json b/site/public/v1/games/the-telltale-batman-shadows-edition/index.json new file mode 100644 index 000000000000..6abda5f86fc0 --- /dev/null +++ b/site/public/v1/games/the-telltale-batman-shadows-edition/index.json @@ -0,0 +1,35 @@ +{ + "id": 152975, + "slug": "the-telltale-batman-shadows-edition", + "name": "The Telltale Batman: Shadows Edition", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "graphic adventure game", + "episodic video game" + ], + "stores": [], + "developers": [ + "Telltale Games" + ], + "publishers": [ + "Telltale Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106548072" + ], + "created_at": "2026-07-10T10:10:46.217684", + "updated_at": "2026-07-10T10:10:46.217684", + "url": "/v1/games/the-telltale-batman-shadows-edition" +} diff --git a/site/public/v1/games/the-telltale-games-collection/index.json b/site/public/v1/games/the-telltale-games-collection/index.json new file mode 100644 index 000000000000..0adff8fe545e --- /dev/null +++ b/site/public/v1/games/the-telltale-games-collection/index.json @@ -0,0 +1,33 @@ +{ + "id": 152976, + "slug": "the-telltale-games-collection", + "name": "The Telltale Games Collection", + "release_date": "2014-12-21", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 4" + ], + "genres": [ + "episodic video game" + ], + "stores": [], + "developers": [ + "Telltale Games" + ], + "publishers": [ + "Telltale Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q92204099" + ], + "created_at": "2026-07-10T10:10:46.217684", + "updated_at": "2026-07-10T10:10:46.217684", + "url": "/v1/games/the-telltale-games-collection" +} diff --git a/site/public/v1/games/the-terminator-2029-operation-scour/index.json b/site/public/v1/games/the-terminator-2029-operation-scour/index.json new file mode 100644 index 000000000000..573d54dd55c9 --- /dev/null +++ b/site/public/v1/games/the-terminator-2029-operation-scour/index.json @@ -0,0 +1,27 @@ +{ + "id": 152991, + "slug": "the-terminator-2029-operation-scour", + "name": "The Terminator 2029: Operation Scour", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "DOS" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124718899" + ], + "created_at": "2026-07-10T10:10:46.221700", + "updated_at": "2026-07-10T10:10:46.221700", + "url": "/v1/games/the-terminator-2029-operation-scour" +} diff --git a/site/public/v1/games/the-toll/index.json b/site/public/v1/games/the-toll/index.json new file mode 100644 index 000000000000..478d4ccbb3a2 --- /dev/null +++ b/site/public/v1/games/the-toll/index.json @@ -0,0 +1,25 @@ +{ + "id": 153091, + "slug": "the-toll", + "name": "The Toll", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121093623" + ], + "created_at": "2026-07-10T10:10:46.247227", + "updated_at": "2026-07-10T10:10:46.247227", + "url": "/v1/games/the-toll" +} diff --git a/site/public/v1/games/the-tower-of-tigerqiuqiu-4-way-dodge-the-ball/index.json b/site/public/v1/games/the-tower-of-tigerqiuqiu-4-way-dodge-the-ball/index.json new file mode 100644 index 000000000000..6d04cb9e0da5 --- /dev/null +++ b/site/public/v1/games/the-tower-of-tigerqiuqiu-4-way-dodge-the-ball/index.json @@ -0,0 +1,31 @@ +{ + "id": 153126, + "slug": "the-tower-of-tigerqiuqiu-4-way-dodge-the-ball", + "name": "The Tower Of TigerQiuQiu 4-way Dodge the ball", + "release_date": "2020-11-10", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202293" + ], + "created_at": "2026-07-10T10:10:46.256289", + "updated_at": "2026-07-10T10:10:46.256289", + "url": "/v1/games/the-tower-of-tigerqiuqiu-4-way-dodge-the-ball" +} diff --git a/site/public/v1/games/the-tower-of-tigerqiuqiu-armored-fighter-arena/index.json b/site/public/v1/games/the-tower-of-tigerqiuqiu-armored-fighter-arena/index.json new file mode 100644 index 000000000000..3957d4d03c0c --- /dev/null +++ b/site/public/v1/games/the-tower-of-tigerqiuqiu-armored-fighter-arena/index.json @@ -0,0 +1,31 @@ +{ + "id": 153127, + "slug": "the-tower-of-tigerqiuqiu-armored-fighter-arena", + "name": "The Tower Of TigerQiuQiu Armored Fighter Arena", + "release_date": "2020-10-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202295" + ], + "created_at": "2026-07-10T10:10:46.256289", + "updated_at": "2026-07-10T10:10:46.256289", + "url": "/v1/games/the-tower-of-tigerqiuqiu-armored-fighter-arena" +} diff --git a/site/public/v1/games/the-tower-of-tigerqiuqiu-axe-sword-bow/index.json b/site/public/v1/games/the-tower-of-tigerqiuqiu-axe-sword-bow/index.json new file mode 100644 index 000000000000..abcbbe0dc32b --- /dev/null +++ b/site/public/v1/games/the-tower-of-tigerqiuqiu-axe-sword-bow/index.json @@ -0,0 +1,31 @@ +{ + "id": 153128, + "slug": "the-tower-of-tigerqiuqiu-axe-sword-bow", + "name": "The Tower Of TigerQiuQiu Axe Sword Bow", + "release_date": "2020-12-08", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202297" + ], + "created_at": "2026-07-10T10:10:46.257320", + "updated_at": "2026-07-10T10:10:46.257320", + "url": "/v1/games/the-tower-of-tigerqiuqiu-axe-sword-bow" +} diff --git a/site/public/v1/games/the-tower-of-tigerqiuqiu-ball-war/index.json b/site/public/v1/games/the-tower-of-tigerqiuqiu-ball-war/index.json new file mode 100644 index 000000000000..91bd81b922f1 --- /dev/null +++ b/site/public/v1/games/the-tower-of-tigerqiuqiu-ball-war/index.json @@ -0,0 +1,31 @@ +{ + "id": 153129, + "slug": "the-tower-of-tigerqiuqiu-ball-war", + "name": "The Tower Of TigerQiuQiu Ball War", + "release_date": "2020-10-20", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202299" + ], + "created_at": "2026-07-10T10:10:46.257320", + "updated_at": "2026-07-10T10:10:46.257320", + "url": "/v1/games/the-tower-of-tigerqiuqiu-ball-war" +} diff --git a/site/public/v1/games/the-tower-of-tigerqiuqiu-battleship-defense/index.json b/site/public/v1/games/the-tower-of-tigerqiuqiu-battleship-defense/index.json new file mode 100644 index 000000000000..247a95b9a64e --- /dev/null +++ b/site/public/v1/games/the-tower-of-tigerqiuqiu-battleship-defense/index.json @@ -0,0 +1,31 @@ +{ + "id": 153130, + "slug": "the-tower-of-tigerqiuqiu-battleship-defense", + "name": "The Tower Of TigerQiuQiu Battleship Defense", + "release_date": "2020-11-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202302" + ], + "created_at": "2026-07-10T10:10:46.257320", + "updated_at": "2026-07-10T10:10:46.257320", + "url": "/v1/games/the-tower-of-tigerqiuqiu-battleship-defense" +} diff --git a/site/public/v1/games/the-tower-of-tigerqiuqiu-birds-cave/index.json b/site/public/v1/games/the-tower-of-tigerqiuqiu-birds-cave/index.json new file mode 100644 index 000000000000..95a414d1c707 --- /dev/null +++ b/site/public/v1/games/the-tower-of-tigerqiuqiu-birds-cave/index.json @@ -0,0 +1,31 @@ +{ + "id": 153131, + "slug": "the-tower-of-tigerqiuqiu-birds-cave", + "name": "The Tower Of TigerQiuQiu Birds Cave", + "release_date": "2020-10-20", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202303" + ], + "created_at": "2026-07-10T10:10:46.257320", + "updated_at": "2026-07-10T10:10:46.257320", + "url": "/v1/games/the-tower-of-tigerqiuqiu-birds-cave" +} diff --git a/site/public/v1/games/the-tower-of-tigerqiuqiu-bomber-level-up/index.json b/site/public/v1/games/the-tower-of-tigerqiuqiu-bomber-level-up/index.json new file mode 100644 index 000000000000..70375ab7c506 --- /dev/null +++ b/site/public/v1/games/the-tower-of-tigerqiuqiu-bomber-level-up/index.json @@ -0,0 +1,31 @@ +{ + "id": 153132, + "slug": "the-tower-of-tigerqiuqiu-bomber-level-up", + "name": "The Tower Of TigerQiuQiu Bomber Level Up", + "release_date": "2020-11-17", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202304" + ], + "created_at": "2026-07-10T10:10:46.258301", + "updated_at": "2026-07-10T10:10:46.258301", + "url": "/v1/games/the-tower-of-tigerqiuqiu-bomber-level-up" +} diff --git a/site/public/v1/games/the-tower-of-tigerqiuqiu-bomber-the-falling-stone/index.json b/site/public/v1/games/the-tower-of-tigerqiuqiu-bomber-the-falling-stone/index.json new file mode 100644 index 000000000000..2c94b5c25b72 --- /dev/null +++ b/site/public/v1/games/the-tower-of-tigerqiuqiu-bomber-the-falling-stone/index.json @@ -0,0 +1,31 @@ +{ + "id": 153133, + "slug": "the-tower-of-tigerqiuqiu-bomber-the-falling-stone", + "name": "The Tower of TigerQiuQiu BOMBER The Falling Stone", + "release_date": "2020-11-21", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202305" + ], + "created_at": "2026-07-10T10:10:46.258301", + "updated_at": "2026-07-10T10:10:46.258301", + "url": "/v1/games/the-tower-of-tigerqiuqiu-bomber-the-falling-stone" +} diff --git a/site/public/v1/games/the-tower-of-tigerqiuqiu-bomber-the-rolling-stone/index.json b/site/public/v1/games/the-tower-of-tigerqiuqiu-bomber-the-rolling-stone/index.json new file mode 100644 index 000000000000..3a77c03f46bc --- /dev/null +++ b/site/public/v1/games/the-tower-of-tigerqiuqiu-bomber-the-rolling-stone/index.json @@ -0,0 +1,31 @@ +{ + "id": 153134, + "slug": "the-tower-of-tigerqiuqiu-bomber-the-rolling-stone", + "name": "The Tower Of TigerQiuQiu Bomber The Rolling Stone", + "release_date": "2020-11-21", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202307" + ], + "created_at": "2026-07-10T10:10:46.258301", + "updated_at": "2026-07-10T10:10:46.258301", + "url": "/v1/games/the-tower-of-tigerqiuqiu-bomber-the-rolling-stone" +} diff --git a/site/public/v1/games/the-tower-of-tigerqiuqiu-bomber-the-ruby-magic/index.json b/site/public/v1/games/the-tower-of-tigerqiuqiu-bomber-the-ruby-magic/index.json new file mode 100644 index 000000000000..8e80b774f7b2 --- /dev/null +++ b/site/public/v1/games/the-tower-of-tigerqiuqiu-bomber-the-ruby-magic/index.json @@ -0,0 +1,31 @@ +{ + "id": 153135, + "slug": "the-tower-of-tigerqiuqiu-bomber-the-ruby-magic", + "name": "The Tower of TigerQiuQiu Bomber The Ruby Magic", + "release_date": "2020-11-21", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202309" + ], + "created_at": "2026-07-10T10:10:46.258301", + "updated_at": "2026-07-10T10:10:46.258301", + "url": "/v1/games/the-tower-of-tigerqiuqiu-bomber-the-ruby-magic" +} diff --git a/site/public/v1/games/the-tower-of-tigerqiuqiu-bomber-the-ruby-sword/index.json b/site/public/v1/games/the-tower-of-tigerqiuqiu-bomber-the-ruby-sword/index.json new file mode 100644 index 000000000000..e306f92c75d7 --- /dev/null +++ b/site/public/v1/games/the-tower-of-tigerqiuqiu-bomber-the-ruby-sword/index.json @@ -0,0 +1,31 @@ +{ + "id": 153136, + "slug": "the-tower-of-tigerqiuqiu-bomber-the-ruby-sword", + "name": "The Tower Of TigerQiuQiu Bomber The Ruby Sword", + "release_date": "2020-11-23", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202310" + ], + "created_at": "2026-07-10T10:10:46.258301", + "updated_at": "2026-07-10T10:10:46.259289", + "url": "/v1/games/the-tower-of-tigerqiuqiu-bomber-the-ruby-sword" +} diff --git a/site/public/v1/games/the-tower-of-tigerqiuqiu-bomber-tiger/index.json b/site/public/v1/games/the-tower-of-tigerqiuqiu-bomber-tiger/index.json new file mode 100644 index 000000000000..93ec5be9f783 --- /dev/null +++ b/site/public/v1/games/the-tower-of-tigerqiuqiu-bomber-tiger/index.json @@ -0,0 +1,31 @@ +{ + "id": 153137, + "slug": "the-tower-of-tigerqiuqiu-bomber-tiger", + "name": "The Tower Of TigerQiuQiu Bomber Tiger", + "release_date": "2020-09-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202311" + ], + "created_at": "2026-07-10T10:10:46.259289", + "updated_at": "2026-07-10T10:10:46.259289", + "url": "/v1/games/the-tower-of-tigerqiuqiu-bomber-tiger" +} diff --git a/site/public/v1/games/the-tower-of-tigerqiuqiu-bomber-treasure/index.json b/site/public/v1/games/the-tower-of-tigerqiuqiu-bomber-treasure/index.json new file mode 100644 index 000000000000..0f4317792f40 --- /dev/null +++ b/site/public/v1/games/the-tower-of-tigerqiuqiu-bomber-treasure/index.json @@ -0,0 +1,31 @@ +{ + "id": 153138, + "slug": "the-tower-of-tigerqiuqiu-bomber-treasure", + "name": "The Tower Of TigerQiuQiu Bomber Treasure", + "release_date": "2020-11-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202313" + ], + "created_at": "2026-07-10T10:10:46.259289", + "updated_at": "2026-07-10T10:10:46.259289", + "url": "/v1/games/the-tower-of-tigerqiuqiu-bomber-treasure" +} diff --git a/site/public/v1/games/the-tower-of-tigerqiuqiu-brick-breaker/index.json b/site/public/v1/games/the-tower-of-tigerqiuqiu-brick-breaker/index.json new file mode 100644 index 000000000000..20a6a37ffe9f --- /dev/null +++ b/site/public/v1/games/the-tower-of-tigerqiuqiu-brick-breaker/index.json @@ -0,0 +1,31 @@ +{ + "id": 153139, + "slug": "the-tower-of-tigerqiuqiu-brick-breaker", + "name": "The Tower Of TigerQiuQiu Brick Breaker", + "release_date": "2020-12-15", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202314" + ], + "created_at": "2026-07-10T10:10:46.259289", + "updated_at": "2026-07-10T10:10:46.259289", + "url": "/v1/games/the-tower-of-tigerqiuqiu-brick-breaker" +} diff --git a/site/public/v1/games/the-tower-of-tigerqiuqiu-bubble-gun/index.json b/site/public/v1/games/the-tower-of-tigerqiuqiu-bubble-gun/index.json new file mode 100644 index 000000000000..7d42b12756d6 --- /dev/null +++ b/site/public/v1/games/the-tower-of-tigerqiuqiu-bubble-gun/index.json @@ -0,0 +1,31 @@ +{ + "id": 153140, + "slug": "the-tower-of-tigerqiuqiu-bubble-gun", + "name": "The Tower Of TigerQiuQiu Bubble Gun", + "release_date": "2020-10-30", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202316" + ], + "created_at": "2026-07-10T10:10:46.259289", + "updated_at": "2026-07-10T10:10:46.259289", + "url": "/v1/games/the-tower-of-tigerqiuqiu-bubble-gun" +} diff --git a/site/public/v1/games/the-tower-of-tigerqiuqiu-deepwater-bomb/index.json b/site/public/v1/games/the-tower-of-tigerqiuqiu-deepwater-bomb/index.json new file mode 100644 index 000000000000..b6ca2f8193d7 --- /dev/null +++ b/site/public/v1/games/the-tower-of-tigerqiuqiu-deepwater-bomb/index.json @@ -0,0 +1,31 @@ +{ + "id": 153141, + "slug": "the-tower-of-tigerqiuqiu-deepwater-bomb", + "name": "The Tower Of TigerQiuQiu Deepwater Bomb", + "release_date": "2020-10-19", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202318" + ], + "created_at": "2026-07-10T10:10:46.260288", + "updated_at": "2026-07-10T10:10:46.260288", + "url": "/v1/games/the-tower-of-tigerqiuqiu-deepwater-bomb" +} diff --git a/site/public/v1/games/the-tower-of-tigerqiuqiu-dodge-the-ball/index.json b/site/public/v1/games/the-tower-of-tigerqiuqiu-dodge-the-ball/index.json new file mode 100644 index 000000000000..cf2296c8e66b --- /dev/null +++ b/site/public/v1/games/the-tower-of-tigerqiuqiu-dodge-the-ball/index.json @@ -0,0 +1,31 @@ +{ + "id": 153142, + "slug": "the-tower-of-tigerqiuqiu-dodge-the-ball", + "name": "The Tower Of TigerQiuQiu Dodge the ball", + "release_date": "2020-11-09", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202319" + ], + "created_at": "2026-07-10T10:10:46.260288", + "updated_at": "2026-07-10T10:10:46.260288", + "url": "/v1/games/the-tower-of-tigerqiuqiu-dodge-the-ball" +} diff --git a/site/public/v1/games/the-tower-of-tigerqiuqiu-down-to-hole/index.json b/site/public/v1/games/the-tower-of-tigerqiuqiu-down-to-hole/index.json new file mode 100644 index 000000000000..4c4f0a72c0bc --- /dev/null +++ b/site/public/v1/games/the-tower-of-tigerqiuqiu-down-to-hole/index.json @@ -0,0 +1,31 @@ +{ + "id": 153143, + "slug": "the-tower-of-tigerqiuqiu-down-to-hole", + "name": "The Tower Of TigerQiuQiu Down To Hole", + "release_date": "2020-10-23", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202320" + ], + "created_at": "2026-07-10T10:10:46.260288", + "updated_at": "2026-07-10T10:10:46.260288", + "url": "/v1/games/the-tower-of-tigerqiuqiu-down-to-hole" +} diff --git a/site/public/v1/games/the-tower-of-tigerqiuqiu-drop-balls/index.json b/site/public/v1/games/the-tower-of-tigerqiuqiu-drop-balls/index.json new file mode 100644 index 000000000000..77578e608e14 --- /dev/null +++ b/site/public/v1/games/the-tower-of-tigerqiuqiu-drop-balls/index.json @@ -0,0 +1,31 @@ +{ + "id": 153144, + "slug": "the-tower-of-tigerqiuqiu-drop-balls", + "name": "The Tower Of TigerQiuQiu Drop Balls", + "release_date": "2020-11-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202323" + ], + "created_at": "2026-07-10T10:10:46.260288", + "updated_at": "2026-07-10T10:10:46.260288", + "url": "/v1/games/the-tower-of-tigerqiuqiu-drop-balls" +} diff --git a/site/public/v1/games/the-tower-of-tigerqiuqiu-duck-war/index.json b/site/public/v1/games/the-tower-of-tigerqiuqiu-duck-war/index.json new file mode 100644 index 000000000000..992a6cf058c6 --- /dev/null +++ b/site/public/v1/games/the-tower-of-tigerqiuqiu-duck-war/index.json @@ -0,0 +1,31 @@ +{ + "id": 153145, + "slug": "the-tower-of-tigerqiuqiu-duck-war", + "name": "The Tower Of TigerQiuQiu Duck War", + "release_date": "2020-10-16", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202324" + ], + "created_at": "2026-07-10T10:10:46.261288", + "updated_at": "2026-07-10T10:10:46.261288", + "url": "/v1/games/the-tower-of-tigerqiuqiu-duck-war" +} diff --git a/site/public/v1/games/the-tower-of-tigerqiuqiu-elevators-war/index.json b/site/public/v1/games/the-tower-of-tigerqiuqiu-elevators-war/index.json new file mode 100644 index 000000000000..df649cb48f3d --- /dev/null +++ b/site/public/v1/games/the-tower-of-tigerqiuqiu-elevators-war/index.json @@ -0,0 +1,31 @@ +{ + "id": 153146, + "slug": "the-tower-of-tigerqiuqiu-elevators-war", + "name": "The Tower Of TigerQiuQiu Elevators War", + "release_date": "2020-10-31", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202325" + ], + "created_at": "2026-07-10T10:10:46.261288", + "updated_at": "2026-07-10T10:10:46.261288", + "url": "/v1/games/the-tower-of-tigerqiuqiu-elevators-war" +} diff --git a/site/public/v1/games/the-tower-of-tigerqiuqiu-falling-stone/index.json b/site/public/v1/games/the-tower-of-tigerqiuqiu-falling-stone/index.json new file mode 100644 index 000000000000..4183bc1000ad --- /dev/null +++ b/site/public/v1/games/the-tower-of-tigerqiuqiu-falling-stone/index.json @@ -0,0 +1,31 @@ +{ + "id": 153147, + "slug": "the-tower-of-tigerqiuqiu-falling-stone", + "name": "The Tower Of TigerQiuQiu Falling Stone", + "release_date": "2020-11-02", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202326" + ], + "created_at": "2026-07-10T10:10:46.261288", + "updated_at": "2026-07-10T10:10:46.261288", + "url": "/v1/games/the-tower-of-tigerqiuqiu-falling-stone" +} diff --git a/site/public/v1/games/the-tower-of-tigerqiuqiu-girl-breaker-alice/index.json b/site/public/v1/games/the-tower-of-tigerqiuqiu-girl-breaker-alice/index.json new file mode 100644 index 000000000000..81a9e9f322bb --- /dev/null +++ b/site/public/v1/games/the-tower-of-tigerqiuqiu-girl-breaker-alice/index.json @@ -0,0 +1,31 @@ +{ + "id": 153148, + "slug": "the-tower-of-tigerqiuqiu-girl-breaker-alice", + "name": "The Tower Of TigerQiuQiu Girl Breaker Alice", + "release_date": "2020-12-22", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202327" + ], + "created_at": "2026-07-10T10:10:46.261288", + "updated_at": "2026-07-10T10:10:46.261288", + "url": "/v1/games/the-tower-of-tigerqiuqiu-girl-breaker-alice" +} diff --git a/site/public/v1/games/the-tower-of-tigerqiuqiu-girl-breaker-anna/index.json b/site/public/v1/games/the-tower-of-tigerqiuqiu-girl-breaker-anna/index.json new file mode 100644 index 000000000000..c2eccaa6581e --- /dev/null +++ b/site/public/v1/games/the-tower-of-tigerqiuqiu-girl-breaker-anna/index.json @@ -0,0 +1,31 @@ +{ + "id": 153149, + "slug": "the-tower-of-tigerqiuqiu-girl-breaker-anna", + "name": "The Tower Of TigerQiuQiu Girl Breaker Anna", + "release_date": "2020-12-22", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202329" + ], + "created_at": "2026-07-10T10:10:46.261288", + "updated_at": "2026-07-10T10:10:46.261288", + "url": "/v1/games/the-tower-of-tigerqiuqiu-girl-breaker-anna" +} diff --git a/site/public/v1/games/the-tower-of-tigerqiuqiu-girl-breaker-ava/index.json b/site/public/v1/games/the-tower-of-tigerqiuqiu-girl-breaker-ava/index.json new file mode 100644 index 000000000000..8aa37cb0004c --- /dev/null +++ b/site/public/v1/games/the-tower-of-tigerqiuqiu-girl-breaker-ava/index.json @@ -0,0 +1,31 @@ +{ + "id": 153150, + "slug": "the-tower-of-tigerqiuqiu-girl-breaker-ava", + "name": "The Tower Of TigerQiuQiu Girl Breaker Ava", + "release_date": "2020-12-22", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202332" + ], + "created_at": "2026-07-10T10:10:46.261288", + "updated_at": "2026-07-10T10:10:46.261288", + "url": "/v1/games/the-tower-of-tigerqiuqiu-girl-breaker-ava" +} diff --git a/site/public/v1/games/the-tower-of-tigerqiuqiu-girl-breaker-chloe/index.json b/site/public/v1/games/the-tower-of-tigerqiuqiu-girl-breaker-chloe/index.json new file mode 100644 index 000000000000..22d0b5239a67 --- /dev/null +++ b/site/public/v1/games/the-tower-of-tigerqiuqiu-girl-breaker-chloe/index.json @@ -0,0 +1,31 @@ +{ + "id": 153151, + "slug": "the-tower-of-tigerqiuqiu-girl-breaker-chloe", + "name": "The Tower Of TigerQiuQiu Girl Breaker Chloe", + "release_date": "2020-12-22", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202335" + ], + "created_at": "2026-07-10T10:10:46.262360", + "updated_at": "2026-07-10T10:10:46.262360", + "url": "/v1/games/the-tower-of-tigerqiuqiu-girl-breaker-chloe" +} diff --git a/site/public/v1/games/the-tower-of-tigerqiuqiu-girl-breaker-elizabeth/index.json b/site/public/v1/games/the-tower-of-tigerqiuqiu-girl-breaker-elizabeth/index.json new file mode 100644 index 000000000000..fb4fa1f1ed28 --- /dev/null +++ b/site/public/v1/games/the-tower-of-tigerqiuqiu-girl-breaker-elizabeth/index.json @@ -0,0 +1,31 @@ +{ + "id": 153152, + "slug": "the-tower-of-tigerqiuqiu-girl-breaker-elizabeth", + "name": "The Tower Of TigerQiuQiu Girl Breaker Elizabeth", + "release_date": "2020-12-22", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202336" + ], + "created_at": "2026-07-10T10:10:46.262360", + "updated_at": "2026-07-10T10:10:46.262360", + "url": "/v1/games/the-tower-of-tigerqiuqiu-girl-breaker-elizabeth" +} diff --git a/site/public/v1/games/the-tower-of-tigerqiuqiu-girl-breaker-emily/index.json b/site/public/v1/games/the-tower-of-tigerqiuqiu-girl-breaker-emily/index.json new file mode 100644 index 000000000000..0493b64b50fc --- /dev/null +++ b/site/public/v1/games/the-tower-of-tigerqiuqiu-girl-breaker-emily/index.json @@ -0,0 +1,31 @@ +{ + "id": 153153, + "slug": "the-tower-of-tigerqiuqiu-girl-breaker-emily", + "name": "The Tower Of TigerQiuQiu Girl Breaker Emily", + "release_date": "2020-12-22", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202338" + ], + "created_at": "2026-07-10T10:10:46.262360", + "updated_at": "2026-07-10T10:10:46.262360", + "url": "/v1/games/the-tower-of-tigerqiuqiu-girl-breaker-emily" +} diff --git a/site/public/v1/games/the-tower-of-tigerqiuqiu-girl-breaker-emma/index.json b/site/public/v1/games/the-tower-of-tigerqiuqiu-girl-breaker-emma/index.json new file mode 100644 index 000000000000..c4ab0b0362b1 --- /dev/null +++ b/site/public/v1/games/the-tower-of-tigerqiuqiu-girl-breaker-emma/index.json @@ -0,0 +1,31 @@ +{ + "id": 153154, + "slug": "the-tower-of-tigerqiuqiu-girl-breaker-emma", + "name": "The Tower Of TigerQiuQiu Girl Breaker Emma", + "release_date": "2020-12-22", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202340" + ], + "created_at": "2026-07-10T10:10:46.262360", + "updated_at": "2026-07-10T10:10:46.263356", + "url": "/v1/games/the-tower-of-tigerqiuqiu-girl-breaker-emma" +} diff --git a/site/public/v1/games/the-tower-of-tigerqiuqiu-girl-breaker-fang/index.json b/site/public/v1/games/the-tower-of-tigerqiuqiu-girl-breaker-fang/index.json new file mode 100644 index 000000000000..db14c6438aaf --- /dev/null +++ b/site/public/v1/games/the-tower-of-tigerqiuqiu-girl-breaker-fang/index.json @@ -0,0 +1,31 @@ +{ + "id": 153155, + "slug": "the-tower-of-tigerqiuqiu-girl-breaker-fang", + "name": "The Tower Of TigerQiuQiu Girl Breaker Fang", + "release_date": "2020-12-22", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202341" + ], + "created_at": "2026-07-10T10:10:46.263356", + "updated_at": "2026-07-10T10:10:46.263356", + "url": "/v1/games/the-tower-of-tigerqiuqiu-girl-breaker-fang" +} diff --git a/site/public/v1/games/the-tower-of-tigerqiuqiu-girl-breaker-grace/index.json b/site/public/v1/games/the-tower-of-tigerqiuqiu-girl-breaker-grace/index.json new file mode 100644 index 000000000000..73e93d7d4b3d --- /dev/null +++ b/site/public/v1/games/the-tower-of-tigerqiuqiu-girl-breaker-grace/index.json @@ -0,0 +1,31 @@ +{ + "id": 153156, + "slug": "the-tower-of-tigerqiuqiu-girl-breaker-grace", + "name": "The Tower Of TigerQiuQiu Girl Breaker Grace", + "release_date": "2020-12-30", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202342" + ], + "created_at": "2026-07-10T10:10:46.263356", + "updated_at": "2026-07-10T10:10:46.263356", + "url": "/v1/games/the-tower-of-tigerqiuqiu-girl-breaker-grace" +} diff --git a/site/public/v1/games/the-tower-of-tigerqiuqiu-girl-breaker-hannah/index.json b/site/public/v1/games/the-tower-of-tigerqiuqiu-girl-breaker-hannah/index.json new file mode 100644 index 000000000000..da9061c2307b --- /dev/null +++ b/site/public/v1/games/the-tower-of-tigerqiuqiu-girl-breaker-hannah/index.json @@ -0,0 +1,31 @@ +{ + "id": 153157, + "slug": "the-tower-of-tigerqiuqiu-girl-breaker-hannah", + "name": "The Tower Of TigerQiuQiu Girl Breaker Hannah", + "release_date": "2020-12-22", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202344" + ], + "created_at": "2026-07-10T10:10:46.263356", + "updated_at": "2026-07-10T10:10:46.263356", + "url": "/v1/games/the-tower-of-tigerqiuqiu-girl-breaker-hannah" +} diff --git a/site/public/v1/games/the-tower-of-tigerqiuqiu-girl-breaker-isabella/index.json b/site/public/v1/games/the-tower-of-tigerqiuqiu-girl-breaker-isabella/index.json new file mode 100644 index 000000000000..240c5ccf8ab4 --- /dev/null +++ b/site/public/v1/games/the-tower-of-tigerqiuqiu-girl-breaker-isabella/index.json @@ -0,0 +1,31 @@ +{ + "id": 153158, + "slug": "the-tower-of-tigerqiuqiu-girl-breaker-isabella", + "name": "The Tower Of TigerQiuQiu Girl Breaker Isabella", + "release_date": "2020-12-30", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202346" + ], + "created_at": "2026-07-10T10:10:46.263356", + "updated_at": "2026-07-10T10:10:46.263356", + "url": "/v1/games/the-tower-of-tigerqiuqiu-girl-breaker-isabella" +} diff --git a/site/public/v1/games/the-tower-of-tigerqiuqiu-girl-breaker-lily/index.json b/site/public/v1/games/the-tower-of-tigerqiuqiu-girl-breaker-lily/index.json new file mode 100644 index 000000000000..04f1abfb1799 --- /dev/null +++ b/site/public/v1/games/the-tower-of-tigerqiuqiu-girl-breaker-lily/index.json @@ -0,0 +1,31 @@ +{ + "id": 153159, + "slug": "the-tower-of-tigerqiuqiu-girl-breaker-lily", + "name": "The Tower Of TigerQiuQiu Girl Breaker Lily", + "release_date": "2020-12-22", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202347" + ], + "created_at": "2026-07-10T10:10:46.264370", + "updated_at": "2026-07-10T10:10:46.264370", + "url": "/v1/games/the-tower-of-tigerqiuqiu-girl-breaker-lily" +} diff --git a/site/public/v1/games/the-tower-of-tigerqiuqiu-girl-breaker-lucy/index.json b/site/public/v1/games/the-tower-of-tigerqiuqiu-girl-breaker-lucy/index.json new file mode 100644 index 000000000000..700b577e775c --- /dev/null +++ b/site/public/v1/games/the-tower-of-tigerqiuqiu-girl-breaker-lucy/index.json @@ -0,0 +1,31 @@ +{ + "id": 153160, + "slug": "the-tower-of-tigerqiuqiu-girl-breaker-lucy", + "name": "The Tower Of TigerQiuQiu Girl Breaker Lucy", + "release_date": "2020-12-22", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202349" + ], + "created_at": "2026-07-10T10:10:46.264370", + "updated_at": "2026-07-10T10:10:46.264370", + "url": "/v1/games/the-tower-of-tigerqiuqiu-girl-breaker-lucy" +} diff --git a/site/public/v1/games/the-tower-of-tigerqiuqiu-girl-breaker-madison/index.json b/site/public/v1/games/the-tower-of-tigerqiuqiu-girl-breaker-madison/index.json new file mode 100644 index 000000000000..d21e8a5c4d3a --- /dev/null +++ b/site/public/v1/games/the-tower-of-tigerqiuqiu-girl-breaker-madison/index.json @@ -0,0 +1,31 @@ +{ + "id": 153161, + "slug": "the-tower-of-tigerqiuqiu-girl-breaker-madison", + "name": "The Tower Of TigerQiuQiu Girl Breaker Madison", + "release_date": "2020-12-22", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202351" + ], + "created_at": "2026-07-10T10:10:46.264370", + "updated_at": "2026-07-10T10:10:46.264370", + "url": "/v1/games/the-tower-of-tigerqiuqiu-girl-breaker-madison" +} diff --git a/site/public/v1/games/the-tower-of-tigerqiuqiu-girl-breaker-mairy/index.json b/site/public/v1/games/the-tower-of-tigerqiuqiu-girl-breaker-mairy/index.json new file mode 100644 index 000000000000..748996225903 --- /dev/null +++ b/site/public/v1/games/the-tower-of-tigerqiuqiu-girl-breaker-mairy/index.json @@ -0,0 +1,31 @@ +{ + "id": 153162, + "slug": "the-tower-of-tigerqiuqiu-girl-breaker-mairy", + "name": "The Tower Of TigerQiuQiu Girl Breaker Mairy", + "release_date": "2020-12-22", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202352" + ], + "created_at": "2026-07-10T10:10:46.264370", + "updated_at": "2026-07-10T10:10:46.264370", + "url": "/v1/games/the-tower-of-tigerqiuqiu-girl-breaker-mairy" +} diff --git a/site/public/v1/games/the-tower-of-tigerqiuqiu-girl-breaker-nana/index.json b/site/public/v1/games/the-tower-of-tigerqiuqiu-girl-breaker-nana/index.json new file mode 100644 index 000000000000..9049d412ff81 --- /dev/null +++ b/site/public/v1/games/the-tower-of-tigerqiuqiu-girl-breaker-nana/index.json @@ -0,0 +1,31 @@ +{ + "id": 153163, + "slug": "the-tower-of-tigerqiuqiu-girl-breaker-nana", + "name": "The Tower Of TigerQiuQiu Girl Breaker NaNa", + "release_date": "2020-12-22", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202354" + ], + "created_at": "2026-07-10T10:10:46.264370", + "updated_at": "2026-07-10T10:10:46.264370", + "url": "/v1/games/the-tower-of-tigerqiuqiu-girl-breaker-nana" +} diff --git a/site/public/v1/games/the-tower-of-tigerqiuqiu-girl-breaker-olivia/index.json b/site/public/v1/games/the-tower-of-tigerqiuqiu-girl-breaker-olivia/index.json new file mode 100644 index 000000000000..30cfc77b8259 --- /dev/null +++ b/site/public/v1/games/the-tower-of-tigerqiuqiu-girl-breaker-olivia/index.json @@ -0,0 +1,31 @@ +{ + "id": 153164, + "slug": "the-tower-of-tigerqiuqiu-girl-breaker-olivia", + "name": "The Tower Of TigerQiuQiu Girl Breaker Olivia", + "release_date": "2020-12-22", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202355" + ], + "created_at": "2026-07-10T10:10:46.265367", + "updated_at": "2026-07-10T10:10:46.265367", + "url": "/v1/games/the-tower-of-tigerqiuqiu-girl-breaker-olivia" +} diff --git a/site/public/v1/games/the-tower-of-tigerqiuqiu-girl-breaker-sophia/index.json b/site/public/v1/games/the-tower-of-tigerqiuqiu-girl-breaker-sophia/index.json new file mode 100644 index 000000000000..aba0e073aac8 --- /dev/null +++ b/site/public/v1/games/the-tower-of-tigerqiuqiu-girl-breaker-sophia/index.json @@ -0,0 +1,31 @@ +{ + "id": 153165, + "slug": "the-tower-of-tigerqiuqiu-girl-breaker-sophia", + "name": "The Tower Of TigerQiuQiu Girl Breaker Sophia", + "release_date": "2020-12-22", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202357" + ], + "created_at": "2026-07-10T10:10:46.265367", + "updated_at": "2026-07-10T10:10:46.265367", + "url": "/v1/games/the-tower-of-tigerqiuqiu-girl-breaker-sophia" +} diff --git a/site/public/v1/games/the-tower-of-tigerqiuqiu-guardian/index.json b/site/public/v1/games/the-tower-of-tigerqiuqiu-guardian/index.json new file mode 100644 index 000000000000..527db50c9eb3 --- /dev/null +++ b/site/public/v1/games/the-tower-of-tigerqiuqiu-guardian/index.json @@ -0,0 +1,31 @@ +{ + "id": 153166, + "slug": "the-tower-of-tigerqiuqiu-guardian", + "name": "The Tower Of TigerQiuQiu Guardian", + "release_date": "2020-10-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202358" + ], + "created_at": "2026-07-10T10:10:46.265367", + "updated_at": "2026-07-10T10:10:46.265367", + "url": "/v1/games/the-tower-of-tigerqiuqiu-guardian" +} diff --git a/site/public/v1/games/the-tower-of-tigerqiuqiu-hit-balls/index.json b/site/public/v1/games/the-tower-of-tigerqiuqiu-hit-balls/index.json new file mode 100644 index 000000000000..d8938a6925bc --- /dev/null +++ b/site/public/v1/games/the-tower-of-tigerqiuqiu-hit-balls/index.json @@ -0,0 +1,31 @@ +{ + "id": 153167, + "slug": "the-tower-of-tigerqiuqiu-hit-balls", + "name": "The Tower Of TigerQiuQiu Hit Balls", + "release_date": "2020-11-10", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202360" + ], + "created_at": "2026-07-10T10:10:46.265367", + "updated_at": "2026-07-10T10:10:46.265367", + "url": "/v1/games/the-tower-of-tigerqiuqiu-hit-balls" +} diff --git a/site/public/v1/games/the-tower-of-tigerqiuqiu-image-breaker/index.json b/site/public/v1/games/the-tower-of-tigerqiuqiu-image-breaker/index.json new file mode 100644 index 000000000000..03a2724a322c --- /dev/null +++ b/site/public/v1/games/the-tower-of-tigerqiuqiu-image-breaker/index.json @@ -0,0 +1,31 @@ +{ + "id": 153168, + "slug": "the-tower-of-tigerqiuqiu-image-breaker", + "name": "The Tower Of TigerQiuQiu Image Breaker", + "release_date": "2020-12-15", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202361" + ], + "created_at": "2026-07-10T10:10:46.266391", + "updated_at": "2026-07-10T10:10:46.266391", + "url": "/v1/games/the-tower-of-tigerqiuqiu-image-breaker" +} diff --git a/site/public/v1/games/the-tower-of-tigerqiuqiu-insect-invade-2/index.json b/site/public/v1/games/the-tower-of-tigerqiuqiu-insect-invade-2/index.json new file mode 100644 index 000000000000..75a041577655 --- /dev/null +++ b/site/public/v1/games/the-tower-of-tigerqiuqiu-insect-invade-2/index.json @@ -0,0 +1,31 @@ +{ + "id": 153169, + "slug": "the-tower-of-tigerqiuqiu-insect-invade-2", + "name": "The Tower Of TigerQiuQiu Insect Invade 2", + "release_date": "2020-11-02", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202365" + ], + "created_at": "2026-07-10T10:10:46.266391", + "updated_at": "2026-07-10T10:10:46.266391", + "url": "/v1/games/the-tower-of-tigerqiuqiu-insect-invade-2" +} diff --git a/site/public/v1/games/the-tower-of-tigerqiuqiu-insect-invade/index.json b/site/public/v1/games/the-tower-of-tigerqiuqiu-insect-invade/index.json new file mode 100644 index 000000000000..2ef1bd78072b --- /dev/null +++ b/site/public/v1/games/the-tower-of-tigerqiuqiu-insect-invade/index.json @@ -0,0 +1,31 @@ +{ + "id": 153170, + "slug": "the-tower-of-tigerqiuqiu-insect-invade", + "name": "The Tower Of TigerQiuQiu Insect Invade", + "release_date": "2020-11-02", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202362" + ], + "created_at": "2026-07-10T10:10:46.266391", + "updated_at": "2026-07-10T10:10:46.266391", + "url": "/v1/games/the-tower-of-tigerqiuqiu-insect-invade" +} diff --git a/site/public/v1/games/the-tower-of-tigerqiuqiu-into-the-blue/index.json b/site/public/v1/games/the-tower-of-tigerqiuqiu-into-the-blue/index.json new file mode 100644 index 000000000000..e027f1c5fe9e --- /dev/null +++ b/site/public/v1/games/the-tower-of-tigerqiuqiu-into-the-blue/index.json @@ -0,0 +1,31 @@ +{ + "id": 153171, + "slug": "the-tower-of-tigerqiuqiu-into-the-blue", + "name": "The Tower Of TigerQiuQiu Into The Blue", + "release_date": "2020-10-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202366" + ], + "created_at": "2026-07-10T10:10:46.266391", + "updated_at": "2026-07-10T10:10:46.266391", + "url": "/v1/games/the-tower-of-tigerqiuqiu-into-the-blue" +} diff --git a/site/public/v1/games/the-tower-of-tigerqiuqiu-kamov-kv-51/index.json b/site/public/v1/games/the-tower-of-tigerqiuqiu-kamov-kv-51/index.json new file mode 100644 index 000000000000..04a6f7bbbca4 --- /dev/null +++ b/site/public/v1/games/the-tower-of-tigerqiuqiu-kamov-kv-51/index.json @@ -0,0 +1,31 @@ +{ + "id": 153172, + "slug": "the-tower-of-tigerqiuqiu-kamov-kv-51", + "name": "The Tower Of TigerQiuQiu Kamov Kv-51", + "release_date": "2020-09-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202367" + ], + "created_at": "2026-07-10T10:10:46.266391", + "updated_at": "2026-07-10T10:10:46.266391", + "url": "/v1/games/the-tower-of-tigerqiuqiu-kamov-kv-51" +} diff --git a/site/public/v1/games/the-tower-of-tigerqiuqiu-knife-darts/index.json b/site/public/v1/games/the-tower-of-tigerqiuqiu-knife-darts/index.json new file mode 100644 index 000000000000..5ea72008d33d --- /dev/null +++ b/site/public/v1/games/the-tower-of-tigerqiuqiu-knife-darts/index.json @@ -0,0 +1,31 @@ +{ + "id": 153173, + "slug": "the-tower-of-tigerqiuqiu-knife-darts", + "name": "The Tower Of TigerQiuQiu Knife Darts", + "release_date": "2020-12-08", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202368" + ], + "created_at": "2026-07-10T10:10:46.267390", + "updated_at": "2026-07-10T10:10:46.267390", + "url": "/v1/games/the-tower-of-tigerqiuqiu-knife-darts" +} diff --git a/site/public/v1/games/the-tower-of-tigerqiuqiu-ladder/index.json b/site/public/v1/games/the-tower-of-tigerqiuqiu-ladder/index.json new file mode 100644 index 000000000000..777c2f824e48 --- /dev/null +++ b/site/public/v1/games/the-tower-of-tigerqiuqiu-ladder/index.json @@ -0,0 +1,31 @@ +{ + "id": 153174, + "slug": "the-tower-of-tigerqiuqiu-ladder", + "name": "The Tower Of TigerQiuQiu Ladder", + "release_date": "2020-12-08", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202369" + ], + "created_at": "2026-07-10T10:10:46.267390", + "updated_at": "2026-07-10T10:10:46.267390", + "url": "/v1/games/the-tower-of-tigerqiuqiu-ladder" +} diff --git a/site/public/v1/games/the-tower-of-tigerqiuqiu-match-3/index.json b/site/public/v1/games/the-tower-of-tigerqiuqiu-match-3/index.json new file mode 100644 index 000000000000..87b080bac537 --- /dev/null +++ b/site/public/v1/games/the-tower-of-tigerqiuqiu-match-3/index.json @@ -0,0 +1,31 @@ +{ + "id": 153175, + "slug": "the-tower-of-tigerqiuqiu-match-3", + "name": "The Tower Of TigerQiuQiu Match 3", + "release_date": "2020-12-08", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202370" + ], + "created_at": "2026-07-10T10:10:46.267390", + "updated_at": "2026-07-10T10:10:46.267390", + "url": "/v1/games/the-tower-of-tigerqiuqiu-match-3" +} diff --git a/site/public/v1/games/the-tower-of-tigerqiuqiu-moth-snake/index.json b/site/public/v1/games/the-tower-of-tigerqiuqiu-moth-snake/index.json new file mode 100644 index 000000000000..7ad4140f52b7 --- /dev/null +++ b/site/public/v1/games/the-tower-of-tigerqiuqiu-moth-snake/index.json @@ -0,0 +1,31 @@ +{ + "id": 153176, + "slug": "the-tower-of-tigerqiuqiu-moth-snake", + "name": "The Tower Of TigerQiuQiu Moth Snake", + "release_date": "2020-11-02", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202374" + ], + "created_at": "2026-07-10T10:10:46.267390", + "updated_at": "2026-07-10T10:10:46.267390", + "url": "/v1/games/the-tower-of-tigerqiuqiu-moth-snake" +} diff --git a/site/public/v1/games/the-tower-of-tigerqiuqiu-ninja-alpha/index.json b/site/public/v1/games/the-tower-of-tigerqiuqiu-ninja-alpha/index.json new file mode 100644 index 000000000000..c9772b58e69d --- /dev/null +++ b/site/public/v1/games/the-tower-of-tigerqiuqiu-ninja-alpha/index.json @@ -0,0 +1,31 @@ +{ + "id": 153177, + "slug": "the-tower-of-tigerqiuqiu-ninja-alpha", + "name": "The Tower Of TigerQiuQiu Ninja Alpha", + "release_date": "2020-11-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202376" + ], + "created_at": "2026-07-10T10:10:46.268387", + "updated_at": "2026-07-10T10:10:46.268387", + "url": "/v1/games/the-tower-of-tigerqiuqiu-ninja-alpha" +} diff --git a/site/public/v1/games/the-tower-of-tigerqiuqiu-ninja-beta/index.json b/site/public/v1/games/the-tower-of-tigerqiuqiu-ninja-beta/index.json new file mode 100644 index 000000000000..d7f0819f6955 --- /dev/null +++ b/site/public/v1/games/the-tower-of-tigerqiuqiu-ninja-beta/index.json @@ -0,0 +1,31 @@ +{ + "id": 153178, + "slug": "the-tower-of-tigerqiuqiu-ninja-beta", + "name": "The Tower Of TigerQiuQiu Ninja Beta", + "release_date": "2020-11-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202377" + ], + "created_at": "2026-07-10T10:10:46.268387", + "updated_at": "2026-07-10T10:10:46.268387", + "url": "/v1/games/the-tower-of-tigerqiuqiu-ninja-beta" +} diff --git a/site/public/v1/games/the-tower-of-tigerqiuqiu-ninja-delta/index.json b/site/public/v1/games/the-tower-of-tigerqiuqiu-ninja-delta/index.json new file mode 100644 index 000000000000..b37c6673010f --- /dev/null +++ b/site/public/v1/games/the-tower-of-tigerqiuqiu-ninja-delta/index.json @@ -0,0 +1,31 @@ +{ + "id": 153179, + "slug": "the-tower-of-tigerqiuqiu-ninja-delta", + "name": "The Tower Of TigerQiuQiu Ninja Delta", + "release_date": "2020-11-26", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202379" + ], + "created_at": "2026-07-10T10:10:46.268387", + "updated_at": "2026-07-10T10:10:46.268387", + "url": "/v1/games/the-tower-of-tigerqiuqiu-ninja-delta" +} diff --git a/site/public/v1/games/the-tower-of-tigerqiuqiu-ninja-epsilon/index.json b/site/public/v1/games/the-tower-of-tigerqiuqiu-ninja-epsilon/index.json new file mode 100644 index 000000000000..acc4acbacdfb --- /dev/null +++ b/site/public/v1/games/the-tower-of-tigerqiuqiu-ninja-epsilon/index.json @@ -0,0 +1,31 @@ +{ + "id": 153180, + "slug": "the-tower-of-tigerqiuqiu-ninja-epsilon", + "name": "The Tower Of TigerQiuQiu Ninja Epsilon", + "release_date": "2020-11-26", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202380" + ], + "created_at": "2026-07-10T10:10:46.268387", + "updated_at": "2026-07-10T10:10:46.268387", + "url": "/v1/games/the-tower-of-tigerqiuqiu-ninja-epsilon" +} diff --git a/site/public/v1/games/the-tower-of-tigerqiuqiu-ninja-eta/index.json b/site/public/v1/games/the-tower-of-tigerqiuqiu-ninja-eta/index.json new file mode 100644 index 000000000000..f063ea012035 --- /dev/null +++ b/site/public/v1/games/the-tower-of-tigerqiuqiu-ninja-eta/index.json @@ -0,0 +1,31 @@ +{ + "id": 153181, + "slug": "the-tower-of-tigerqiuqiu-ninja-eta", + "name": "The Tower Of TigerQiuQiu Ninja Eta", + "release_date": "2020-11-27", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202381" + ], + "created_at": "2026-07-10T10:10:46.268387", + "updated_at": "2026-07-10T10:10:46.268387", + "url": "/v1/games/the-tower-of-tigerqiuqiu-ninja-eta" +} diff --git a/site/public/v1/games/the-tower-of-tigerqiuqiu-ninja-gamma/index.json b/site/public/v1/games/the-tower-of-tigerqiuqiu-ninja-gamma/index.json new file mode 100644 index 000000000000..c4dba1869ba6 --- /dev/null +++ b/site/public/v1/games/the-tower-of-tigerqiuqiu-ninja-gamma/index.json @@ -0,0 +1,31 @@ +{ + "id": 153182, + "slug": "the-tower-of-tigerqiuqiu-ninja-gamma", + "name": "The Tower Of TigerQiuQiu Ninja Gamma", + "release_date": "2020-11-25", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202382" + ], + "created_at": "2026-07-10T10:10:46.269382", + "updated_at": "2026-07-10T10:10:46.269382", + "url": "/v1/games/the-tower-of-tigerqiuqiu-ninja-gamma" +} diff --git a/site/public/v1/games/the-tower-of-tigerqiuqiu-ninja-one/index.json b/site/public/v1/games/the-tower-of-tigerqiuqiu-ninja-one/index.json new file mode 100644 index 000000000000..994dabe8b74f --- /dev/null +++ b/site/public/v1/games/the-tower-of-tigerqiuqiu-ninja-one/index.json @@ -0,0 +1,31 @@ +{ + "id": 153183, + "slug": "the-tower-of-tigerqiuqiu-ninja-one", + "name": "The Tower Of TigerQiuQiu Ninja One", + "release_date": "2020-12-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202383" + ], + "created_at": "2026-07-10T10:10:46.269382", + "updated_at": "2026-07-10T10:10:46.269382", + "url": "/v1/games/the-tower-of-tigerqiuqiu-ninja-one" +} diff --git a/site/public/v1/games/the-tower-of-tigerqiuqiu-ninja-plus/index.json b/site/public/v1/games/the-tower-of-tigerqiuqiu-ninja-plus/index.json new file mode 100644 index 000000000000..9ed057a8c068 --- /dev/null +++ b/site/public/v1/games/the-tower-of-tigerqiuqiu-ninja-plus/index.json @@ -0,0 +1,31 @@ +{ + "id": 153184, + "slug": "the-tower-of-tigerqiuqiu-ninja-plus", + "name": "The Tower Of TigerQiuQiu Ninja Plus", + "release_date": "2020-12-02", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202385" + ], + "created_at": "2026-07-10T10:10:46.269382", + "updated_at": "2026-07-10T10:10:46.269382", + "url": "/v1/games/the-tower-of-tigerqiuqiu-ninja-plus" +} diff --git a/site/public/v1/games/the-tower-of-tigerqiuqiu-ninja-s/index.json b/site/public/v1/games/the-tower-of-tigerqiuqiu-ninja-s/index.json new file mode 100644 index 000000000000..9784b52ffee8 --- /dev/null +++ b/site/public/v1/games/the-tower-of-tigerqiuqiu-ninja-s/index.json @@ -0,0 +1,31 @@ +{ + "id": 153185, + "slug": "the-tower-of-tigerqiuqiu-ninja-s", + "name": "The Tower Of TigerQiuQiu Ninja S", + "release_date": "2020-12-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202386" + ], + "created_at": "2026-07-10T10:10:46.269382", + "updated_at": "2026-07-10T10:10:46.269382", + "url": "/v1/games/the-tower-of-tigerqiuqiu-ninja-s" +} diff --git a/site/public/v1/games/the-tower-of-tigerqiuqiu-ninja-the-wind/index.json b/site/public/v1/games/the-tower-of-tigerqiuqiu-ninja-the-wind/index.json new file mode 100644 index 000000000000..bb8a75ac51be --- /dev/null +++ b/site/public/v1/games/the-tower-of-tigerqiuqiu-ninja-the-wind/index.json @@ -0,0 +1,31 @@ +{ + "id": 153186, + "slug": "the-tower-of-tigerqiuqiu-ninja-the-wind", + "name": "The Tower Of TigerQiuQiu Ninja The Wind", + "release_date": "2020-12-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202387" + ], + "created_at": "2026-07-10T10:10:46.270353", + "updated_at": "2026-07-10T10:10:46.270353", + "url": "/v1/games/the-tower-of-tigerqiuqiu-ninja-the-wind" +} diff --git a/site/public/v1/games/the-tower-of-tigerqiuqiu-ninja-thet/index.json b/site/public/v1/games/the-tower-of-tigerqiuqiu-ninja-thet/index.json new file mode 100644 index 000000000000..03be184a0a04 --- /dev/null +++ b/site/public/v1/games/the-tower-of-tigerqiuqiu-ninja-thet/index.json @@ -0,0 +1,31 @@ +{ + "id": 153187, + "slug": "the-tower-of-tigerqiuqiu-ninja-thet", + "name": "The Tower Of TigerQiuQiu Ninja Thet", + "release_date": "2020-12-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202388" + ], + "created_at": "2026-07-10T10:10:46.270353", + "updated_at": "2026-07-10T10:10:46.270353", + "url": "/v1/games/the-tower-of-tigerqiuqiu-ninja-thet" +} diff --git a/site/public/v1/games/the-tower-of-tigerqiuqiu-ninja-tiger-qiuqiu/index.json b/site/public/v1/games/the-tower-of-tigerqiuqiu-ninja-tiger-qiuqiu/index.json new file mode 100644 index 000000000000..f7d44cafd252 --- /dev/null +++ b/site/public/v1/games/the-tower-of-tigerqiuqiu-ninja-tiger-qiuqiu/index.json @@ -0,0 +1,31 @@ +{ + "id": 153188, + "slug": "the-tower-of-tigerqiuqiu-ninja-tiger-qiuqiu", + "name": "The Tower Of TigerQiuQiu Ninja Tiger:QiuQiu", + "release_date": "2020-09-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202391" + ], + "created_at": "2026-07-10T10:10:46.270353", + "updated_at": "2026-07-10T10:10:46.270353", + "url": "/v1/games/the-tower-of-tigerqiuqiu-ninja-tiger-qiuqiu" +} diff --git a/site/public/v1/games/the-tower-of-tigerqiuqiu-ninja-w/index.json b/site/public/v1/games/the-tower-of-tigerqiuqiu-ninja-w/index.json new file mode 100644 index 000000000000..26daca577ac3 --- /dev/null +++ b/site/public/v1/games/the-tower-of-tigerqiuqiu-ninja-w/index.json @@ -0,0 +1,31 @@ +{ + "id": 153189, + "slug": "the-tower-of-tigerqiuqiu-ninja-w", + "name": "The Tower Of TigerQiuQiu Ninja W", + "release_date": "2020-11-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202392" + ], + "created_at": "2026-07-10T10:10:46.270353", + "updated_at": "2026-07-10T10:10:46.270353", + "url": "/v1/games/the-tower-of-tigerqiuqiu-ninja-w" +} diff --git a/site/public/v1/games/the-tower-of-tigerqiuqiu-ninja-zeta/index.json b/site/public/v1/games/the-tower-of-tigerqiuqiu-ninja-zeta/index.json new file mode 100644 index 000000000000..5513433e65d8 --- /dev/null +++ b/site/public/v1/games/the-tower-of-tigerqiuqiu-ninja-zeta/index.json @@ -0,0 +1,31 @@ +{ + "id": 153190, + "slug": "the-tower-of-tigerqiuqiu-ninja-zeta", + "name": "The Tower Of TigerQiuQiu Ninja Zeta", + "release_date": "2020-11-26", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202393" + ], + "created_at": "2026-07-10T10:10:46.271340", + "updated_at": "2026-07-10T10:10:46.271340", + "url": "/v1/games/the-tower-of-tigerqiuqiu-ninja-zeta" +} diff --git a/site/public/v1/games/the-tower-of-tigerqiuqiu-nyaa-invaders-1/index.json b/site/public/v1/games/the-tower-of-tigerqiuqiu-nyaa-invaders-1/index.json new file mode 100644 index 000000000000..327c1af1dc68 --- /dev/null +++ b/site/public/v1/games/the-tower-of-tigerqiuqiu-nyaa-invaders-1/index.json @@ -0,0 +1,31 @@ +{ + "id": 153191, + "slug": "the-tower-of-tigerqiuqiu-nyaa-invaders-1", + "name": "The Tower Of TigerQiuQiu Nyaa Invaders 1", + "release_date": "2020-09-15", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202394" + ], + "created_at": "2026-07-10T10:10:46.271340", + "updated_at": "2026-07-10T10:10:46.271340", + "url": "/v1/games/the-tower-of-tigerqiuqiu-nyaa-invaders-1" +} diff --git a/site/public/v1/games/the-tower-of-tigerqiuqiu-nyaa-invaders-2/index.json b/site/public/v1/games/the-tower-of-tigerqiuqiu-nyaa-invaders-2/index.json new file mode 100644 index 000000000000..500d4c1722ba --- /dev/null +++ b/site/public/v1/games/the-tower-of-tigerqiuqiu-nyaa-invaders-2/index.json @@ -0,0 +1,31 @@ +{ + "id": 153192, + "slug": "the-tower-of-tigerqiuqiu-nyaa-invaders-2", + "name": "The Tower Of TigerQiuQiu Nyaa Invaders 2", + "release_date": "2020-09-15", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202395" + ], + "created_at": "2026-07-10T10:10:46.271340", + "updated_at": "2026-07-10T10:10:46.271340", + "url": "/v1/games/the-tower-of-tigerqiuqiu-nyaa-invaders-2" +} diff --git a/site/public/v1/games/the-tower-of-tigerqiuqiu-nyaa-invaders-3/index.json b/site/public/v1/games/the-tower-of-tigerqiuqiu-nyaa-invaders-3/index.json new file mode 100644 index 000000000000..72b4b79f0a87 --- /dev/null +++ b/site/public/v1/games/the-tower-of-tigerqiuqiu-nyaa-invaders-3/index.json @@ -0,0 +1,31 @@ +{ + "id": 153193, + "slug": "the-tower-of-tigerqiuqiu-nyaa-invaders-3", + "name": "The Tower Of TigerQiuQiu Nyaa Invaders 3", + "release_date": "2020-09-15", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202396" + ], + "created_at": "2026-07-10T10:10:46.271340", + "updated_at": "2026-07-10T10:10:46.271340", + "url": "/v1/games/the-tower-of-tigerqiuqiu-nyaa-invaders-3" +} diff --git a/site/public/v1/games/the-tower-of-tigerqiuqiu-nyaa-invaders-4/index.json b/site/public/v1/games/the-tower-of-tigerqiuqiu-nyaa-invaders-4/index.json new file mode 100644 index 000000000000..3ef857dbe972 --- /dev/null +++ b/site/public/v1/games/the-tower-of-tigerqiuqiu-nyaa-invaders-4/index.json @@ -0,0 +1,31 @@ +{ + "id": 153194, + "slug": "the-tower-of-tigerqiuqiu-nyaa-invaders-4", + "name": "The Tower Of TigerQiuQiu Nyaa Invaders 4", + "release_date": "2020-09-15", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202397" + ], + "created_at": "2026-07-10T10:10:46.271340", + "updated_at": "2026-07-10T10:10:46.271340", + "url": "/v1/games/the-tower-of-tigerqiuqiu-nyaa-invaders-4" +} diff --git a/site/public/v1/games/the-tower-of-tigerqiuqiu-pinball-killer/index.json b/site/public/v1/games/the-tower-of-tigerqiuqiu-pinball-killer/index.json new file mode 100644 index 000000000000..031884d9152d --- /dev/null +++ b/site/public/v1/games/the-tower-of-tigerqiuqiu-pinball-killer/index.json @@ -0,0 +1,31 @@ +{ + "id": 153195, + "slug": "the-tower-of-tigerqiuqiu-pinball-killer", + "name": "The Tower of TigerqiuQiu Pinball killer", + "release_date": "2020-11-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202398" + ], + "created_at": "2026-07-10T10:10:46.272387", + "updated_at": "2026-07-10T10:10:46.272387", + "url": "/v1/games/the-tower-of-tigerqiuqiu-pinball-killer" +} diff --git a/site/public/v1/games/the-tower-of-tigerqiuqiu-police-cat/index.json b/site/public/v1/games/the-tower-of-tigerqiuqiu-police-cat/index.json new file mode 100644 index 000000000000..7bff2e2841c6 --- /dev/null +++ b/site/public/v1/games/the-tower-of-tigerqiuqiu-police-cat/index.json @@ -0,0 +1,31 @@ +{ + "id": 153196, + "slug": "the-tower-of-tigerqiuqiu-police-cat", + "name": "The Tower Of TigerQiuQiu Police Cat", + "release_date": "2020-10-26", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202399" + ], + "created_at": "2026-07-10T10:10:46.272387", + "updated_at": "2026-07-10T10:10:46.272387", + "url": "/v1/games/the-tower-of-tigerqiuqiu-police-cat" +} diff --git a/site/public/v1/games/the-tower-of-tigerqiuqiu-raid-on-sea/index.json b/site/public/v1/games/the-tower-of-tigerqiuqiu-raid-on-sea/index.json new file mode 100644 index 000000000000..331a03dc257d --- /dev/null +++ b/site/public/v1/games/the-tower-of-tigerqiuqiu-raid-on-sea/index.json @@ -0,0 +1,31 @@ +{ + "id": 153197, + "slug": "the-tower-of-tigerqiuqiu-raid-on-sea", + "name": "The Tower Of TigerQiuQiu Raid On Sea", + "release_date": "2020-09-17", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202403" + ], + "created_at": "2026-07-10T10:10:46.272387", + "updated_at": "2026-07-10T10:10:46.272387", + "url": "/v1/games/the-tower-of-tigerqiuqiu-raid-on-sea" +} diff --git a/site/public/v1/games/the-tower-of-tigerqiuqiu-road-race/index.json b/site/public/v1/games/the-tower-of-tigerqiuqiu-road-race/index.json new file mode 100644 index 000000000000..15c8d09ca07d --- /dev/null +++ b/site/public/v1/games/the-tower-of-tigerqiuqiu-road-race/index.json @@ -0,0 +1,31 @@ +{ + "id": 153198, + "slug": "the-tower-of-tigerqiuqiu-road-race", + "name": "The Tower Of TigerQiuQiu Road Race", + "release_date": "2020-10-29", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202405" + ], + "created_at": "2026-07-10T10:10:46.272387", + "updated_at": "2026-07-10T10:10:46.272387", + "url": "/v1/games/the-tower-of-tigerqiuqiu-road-race" +} diff --git a/site/public/v1/games/the-tower-of-tigerqiuqiu-sneak/index.json b/site/public/v1/games/the-tower-of-tigerqiuqiu-sneak/index.json new file mode 100644 index 000000000000..f88cda1aec14 --- /dev/null +++ b/site/public/v1/games/the-tower-of-tigerqiuqiu-sneak/index.json @@ -0,0 +1,31 @@ +{ + "id": 153199, + "slug": "the-tower-of-tigerqiuqiu-sneak", + "name": "The Tower Of TigerQiuQiu Sneak", + "release_date": "2020-11-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202406" + ], + "created_at": "2026-07-10T10:10:46.273378", + "updated_at": "2026-07-10T10:10:46.273378", + "url": "/v1/games/the-tower-of-tigerqiuqiu-sneak" +} diff --git a/site/public/v1/games/the-tower-of-tigerqiuqiu-sniper/index.json b/site/public/v1/games/the-tower-of-tigerqiuqiu-sniper/index.json new file mode 100644 index 000000000000..7567c3173d4a --- /dev/null +++ b/site/public/v1/games/the-tower-of-tigerqiuqiu-sniper/index.json @@ -0,0 +1,31 @@ +{ + "id": 153200, + "slug": "the-tower-of-tigerqiuqiu-sniper", + "name": "The Tower Of TigerQiuQiu Sniper", + "release_date": "2020-11-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202408" + ], + "created_at": "2026-07-10T10:10:46.273378", + "updated_at": "2026-07-10T10:10:46.273378", + "url": "/v1/games/the-tower-of-tigerqiuqiu-sniper" +} diff --git a/site/public/v1/games/the-tower-of-tigerqiuqiu-soapbubble/index.json b/site/public/v1/games/the-tower-of-tigerqiuqiu-soapbubble/index.json new file mode 100644 index 000000000000..b8e88c60cdae --- /dev/null +++ b/site/public/v1/games/the-tower-of-tigerqiuqiu-soapbubble/index.json @@ -0,0 +1,31 @@ +{ + "id": 153201, + "slug": "the-tower-of-tigerqiuqiu-soapbubble", + "name": "The Tower Of TigerQiuQiu Soapbubble", + "release_date": "2020-10-23", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202410" + ], + "created_at": "2026-07-10T10:10:46.273378", + "updated_at": "2026-07-10T10:10:46.273378", + "url": "/v1/games/the-tower-of-tigerqiuqiu-soapbubble" +} diff --git a/site/public/v1/games/the-tower-of-tigerqiuqiu-space-bubble-and-bricks/index.json b/site/public/v1/games/the-tower-of-tigerqiuqiu-space-bubble-and-bricks/index.json new file mode 100644 index 000000000000..8a8c423ec98b --- /dev/null +++ b/site/public/v1/games/the-tower-of-tigerqiuqiu-space-bubble-and-bricks/index.json @@ -0,0 +1,31 @@ +{ + "id": 153202, + "slug": "the-tower-of-tigerqiuqiu-space-bubble-and-bricks", + "name": "The Tower Of TigerQiuQiu Space Bubble And Bricks", + "release_date": "2020-10-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202411" + ], + "created_at": "2026-07-10T10:10:46.273378", + "updated_at": "2026-07-10T10:10:46.273378", + "url": "/v1/games/the-tower-of-tigerqiuqiu-space-bubble-and-bricks" +} diff --git a/site/public/v1/games/the-tower-of-tigerqiuqiu-space-force/index.json b/site/public/v1/games/the-tower-of-tigerqiuqiu-space-force/index.json new file mode 100644 index 000000000000..cf688cc0720b --- /dev/null +++ b/site/public/v1/games/the-tower-of-tigerqiuqiu-space-force/index.json @@ -0,0 +1,31 @@ +{ + "id": 153203, + "slug": "the-tower-of-tigerqiuqiu-space-force", + "name": "The Tower Of TigerQiuQiu Space Force", + "release_date": "2020-09-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202412" + ], + "created_at": "2026-07-10T10:10:46.273378", + "updated_at": "2026-07-10T10:10:46.273378", + "url": "/v1/games/the-tower-of-tigerqiuqiu-space-force" +} diff --git a/site/public/v1/games/the-tower-of-tigerqiuqiu-spot-the-difference/index.json b/site/public/v1/games/the-tower-of-tigerqiuqiu-spot-the-difference/index.json new file mode 100644 index 000000000000..f9cdd61977cf --- /dev/null +++ b/site/public/v1/games/the-tower-of-tigerqiuqiu-spot-the-difference/index.json @@ -0,0 +1,31 @@ +{ + "id": 153204, + "slug": "the-tower-of-tigerqiuqiu-spot-the-difference", + "name": "The Tower Of TigerQiuQiu Spot The Difference", + "release_date": "2020-12-02", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202414" + ], + "created_at": "2026-07-10T10:10:46.274379", + "updated_at": "2026-07-10T10:10:46.274379", + "url": "/v1/games/the-tower-of-tigerqiuqiu-spot-the-difference" +} diff --git a/site/public/v1/games/the-tower-of-tigerqiuqiu-square-snake/index.json b/site/public/v1/games/the-tower-of-tigerqiuqiu-square-snake/index.json new file mode 100644 index 000000000000..9824171163ff --- /dev/null +++ b/site/public/v1/games/the-tower-of-tigerqiuqiu-square-snake/index.json @@ -0,0 +1,31 @@ +{ + "id": 153205, + "slug": "the-tower-of-tigerqiuqiu-square-snake", + "name": "The Tower of Tigerqiuqiu Square Snake", + "release_date": "2020-12-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202416" + ], + "created_at": "2026-07-10T10:10:46.274379", + "updated_at": "2026-07-10T10:10:46.274379", + "url": "/v1/games/the-tower-of-tigerqiuqiu-square-snake" +} diff --git a/site/public/v1/games/the-tower-of-tigerqiuqiu-super-tigerio/index.json b/site/public/v1/games/the-tower-of-tigerqiuqiu-super-tigerio/index.json new file mode 100644 index 000000000000..411d1c2db90c --- /dev/null +++ b/site/public/v1/games/the-tower-of-tigerqiuqiu-super-tigerio/index.json @@ -0,0 +1,31 @@ +{ + "id": 153206, + "slug": "the-tower-of-tigerqiuqiu-super-tigerio", + "name": "The Tower Of TigerQiuQiu Super Tigerio", + "release_date": "2020-09-05", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202417" + ], + "created_at": "2026-07-10T10:10:46.274379", + "updated_at": "2026-07-10T10:10:46.274379", + "url": "/v1/games/the-tower-of-tigerqiuqiu-super-tigerio" +} diff --git a/site/public/v1/games/the-tower-of-tigerqiuqiu-the-deep-the-hill/index.json b/site/public/v1/games/the-tower-of-tigerqiuqiu-the-deep-the-hill/index.json new file mode 100644 index 000000000000..4164e312bf9c --- /dev/null +++ b/site/public/v1/games/the-tower-of-tigerqiuqiu-the-deep-the-hill/index.json @@ -0,0 +1,31 @@ +{ + "id": 153207, + "slug": "the-tower-of-tigerqiuqiu-the-deep-the-hill", + "name": "The Tower Of TigerQiuQiu The Deep The Hill", + "release_date": "2020-12-09", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202419" + ], + "created_at": "2026-07-10T10:10:46.274379", + "updated_at": "2026-07-10T10:10:46.274379", + "url": "/v1/games/the-tower-of-tigerqiuqiu-the-deep-the-hill" +} diff --git a/site/public/v1/games/the-tower-of-tigerqiuqiu-the-grenadier/index.json b/site/public/v1/games/the-tower-of-tigerqiuqiu-the-grenadier/index.json new file mode 100644 index 000000000000..ac0bc5b9f3c8 --- /dev/null +++ b/site/public/v1/games/the-tower-of-tigerqiuqiu-the-grenadier/index.json @@ -0,0 +1,31 @@ +{ + "id": 153208, + "slug": "the-tower-of-tigerqiuqiu-the-grenadier", + "name": "The Tower Of TigerQiuQiu The Grenadier", + "release_date": "2020-10-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202422" + ], + "created_at": "2026-07-10T10:10:46.275366", + "updated_at": "2026-07-10T10:10:46.275366", + "url": "/v1/games/the-tower-of-tigerqiuqiu-the-grenadier" +} diff --git a/site/public/v1/games/the-tower-of-tigerqiuqiu-the-wind/index.json b/site/public/v1/games/the-tower-of-tigerqiuqiu-the-wind/index.json new file mode 100644 index 000000000000..50bcb97188df --- /dev/null +++ b/site/public/v1/games/the-tower-of-tigerqiuqiu-the-wind/index.json @@ -0,0 +1,31 @@ +{ + "id": 153209, + "slug": "the-tower-of-tigerqiuqiu-the-wind", + "name": "The Tower Of TigerQiuQiu The Wind", + "release_date": "2020-12-10", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202423" + ], + "created_at": "2026-07-10T10:10:46.275366", + "updated_at": "2026-07-10T10:10:46.275366", + "url": "/v1/games/the-tower-of-tigerqiuqiu-the-wind" +} diff --git a/site/public/v1/games/the-tower-of-tigerqiuqiu-thief-mouse/index.json b/site/public/v1/games/the-tower-of-tigerqiuqiu-thief-mouse/index.json new file mode 100644 index 000000000000..94899be74f9c --- /dev/null +++ b/site/public/v1/games/the-tower-of-tigerqiuqiu-thief-mouse/index.json @@ -0,0 +1,31 @@ +{ + "id": 153210, + "slug": "the-tower-of-tigerqiuqiu-thief-mouse", + "name": "The Tower Of TigerQiuQiu Thief Mouse", + "release_date": "2020-10-26", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202424" + ], + "created_at": "2026-07-10T10:10:46.275366", + "updated_at": "2026-07-10T10:10:46.275366", + "url": "/v1/games/the-tower-of-tigerqiuqiu-thief-mouse" +} diff --git a/site/public/v1/games/the-tower-of-tigerqiuqiu-tiger-1952/index.json b/site/public/v1/games/the-tower-of-tigerqiuqiu-tiger-1952/index.json new file mode 100644 index 000000000000..3f481763a048 --- /dev/null +++ b/site/public/v1/games/the-tower-of-tigerqiuqiu-tiger-1952/index.json @@ -0,0 +1,31 @@ +{ + "id": 153211, + "slug": "the-tower-of-tigerqiuqiu-tiger-1952", + "name": "The Tower Of TigerQiuQiu Tiger 1952", + "release_date": "2020-09-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202425" + ], + "created_at": "2026-07-10T10:10:46.275366", + "updated_at": "2026-07-10T10:10:46.275366", + "url": "/v1/games/the-tower-of-tigerqiuqiu-tiger-1952" +} diff --git a/site/public/v1/games/the-tower-of-tigerqiuqiu-tiger-bomber/index.json b/site/public/v1/games/the-tower-of-tigerqiuqiu-tiger-bomber/index.json new file mode 100644 index 000000000000..c670dfb0be19 --- /dev/null +++ b/site/public/v1/games/the-tower-of-tigerqiuqiu-tiger-bomber/index.json @@ -0,0 +1,31 @@ +{ + "id": 153212, + "slug": "the-tower-of-tigerqiuqiu-tiger-bomber", + "name": "The Tower Of TigerQiuQiu Tiger Bomber", + "release_date": "2020-11-17", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202426" + ], + "created_at": "2026-07-10T10:10:46.275366", + "updated_at": "2026-07-10T10:10:46.275366", + "url": "/v1/games/the-tower-of-tigerqiuqiu-tiger-bomber" +} diff --git a/site/public/v1/games/the-tower-of-tigerqiuqiu-tiger-tank-60/index.json b/site/public/v1/games/the-tower-of-tigerqiuqiu-tiger-tank-60/index.json new file mode 100644 index 000000000000..4bc9bb8c070e --- /dev/null +++ b/site/public/v1/games/the-tower-of-tigerqiuqiu-tiger-tank-60/index.json @@ -0,0 +1,31 @@ +{ + "id": 153213, + "slug": "the-tower-of-tigerqiuqiu-tiger-tank-60", + "name": "The Tower Of TigerQiuQiu Tiger Tank 60", + "release_date": "2020-11-14", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202427" + ], + "created_at": "2026-07-10T10:10:46.275366", + "updated_at": "2026-07-10T10:10:46.275366", + "url": "/v1/games/the-tower-of-tigerqiuqiu-tiger-tank-60" +} diff --git a/site/public/v1/games/the-tower-of-tigerqiuqiu-tiger-tank-61/index.json b/site/public/v1/games/the-tower-of-tigerqiuqiu-tiger-tank-61/index.json new file mode 100644 index 000000000000..19983c82eb15 --- /dev/null +++ b/site/public/v1/games/the-tower-of-tigerqiuqiu-tiger-tank-61/index.json @@ -0,0 +1,31 @@ +{ + "id": 153214, + "slug": "the-tower-of-tigerqiuqiu-tiger-tank-61", + "name": "The Tower Of TigerQiuQiu Tiger Tank 61", + "release_date": "2020-11-16", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202429" + ], + "created_at": "2026-07-10T10:10:46.275366", + "updated_at": "2026-07-10T10:10:46.275366", + "url": "/v1/games/the-tower-of-tigerqiuqiu-tiger-tank-61" +} diff --git a/site/public/v1/games/the-tower-of-tigerqiuqiu-tiger-tank-63/index.json b/site/public/v1/games/the-tower-of-tigerqiuqiu-tiger-tank-63/index.json new file mode 100644 index 000000000000..3652dfb011e9 --- /dev/null +++ b/site/public/v1/games/the-tower-of-tigerqiuqiu-tiger-tank-63/index.json @@ -0,0 +1,31 @@ +{ + "id": 153216, + "slug": "the-tower-of-tigerqiuqiu-tiger-tank-63", + "name": "The Tower Of TigerQiuQiu Tiger Tank 63", + "release_date": "2020-11-17", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202431" + ], + "created_at": "2026-07-10T10:10:46.276948", + "updated_at": "2026-07-10T10:10:46.276948", + "url": "/v1/games/the-tower-of-tigerqiuqiu-tiger-tank-63" +} diff --git a/site/public/v1/games/the-tower-of-tigerqiuqiu-tiger-tank-64/index.json b/site/public/v1/games/the-tower-of-tigerqiuqiu-tiger-tank-64/index.json new file mode 100644 index 000000000000..ec8a784bf327 --- /dev/null +++ b/site/public/v1/games/the-tower-of-tigerqiuqiu-tiger-tank-64/index.json @@ -0,0 +1,31 @@ +{ + "id": 153217, + "slug": "the-tower-of-tigerqiuqiu-tiger-tank-64", + "name": "The Tower Of TigerQiuQiu Tiger Tank 64", + "release_date": "2020-11-17", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202433" + ], + "created_at": "2026-07-10T10:10:46.276948", + "updated_at": "2026-07-10T10:10:46.276948", + "url": "/v1/games/the-tower-of-tigerqiuqiu-tiger-tank-64" +} diff --git a/site/public/v1/games/the-tower-of-tigerqiuqiu-tiger-tank-65/index.json b/site/public/v1/games/the-tower-of-tigerqiuqiu-tiger-tank-65/index.json new file mode 100644 index 000000000000..33b4884b3020 --- /dev/null +++ b/site/public/v1/games/the-tower-of-tigerqiuqiu-tiger-tank-65/index.json @@ -0,0 +1,31 @@ +{ + "id": 153218, + "slug": "the-tower-of-tigerqiuqiu-tiger-tank-65", + "name": "The Tower Of TigerQiuQiu Tiger Tank 65", + "release_date": "2020-11-17", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202434" + ], + "created_at": "2026-07-10T10:10:46.276948", + "updated_at": "2026-07-10T10:10:46.276948", + "url": "/v1/games/the-tower-of-tigerqiuqiu-tiger-tank-65" +} diff --git a/site/public/v1/games/the-tower-of-tigerqiuqiu-tiger-tank-defense-s/index.json b/site/public/v1/games/the-tower-of-tigerqiuqiu-tiger-tank-defense-s/index.json new file mode 100644 index 000000000000..2f61f871f739 --- /dev/null +++ b/site/public/v1/games/the-tower-of-tigerqiuqiu-tiger-tank-defense-s/index.json @@ -0,0 +1,31 @@ +{ + "id": 153219, + "slug": "the-tower-of-tigerqiuqiu-tiger-tank-defense-s", + "name": "The Tower Of TigerQiuQiu Tiger Tank Defense S", + "release_date": "2020-12-15", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202437" + ], + "created_at": "2026-07-10T10:10:46.276948", + "updated_at": "2026-07-10T10:10:46.276948", + "url": "/v1/games/the-tower-of-tigerqiuqiu-tiger-tank-defense-s" +} diff --git a/site/public/v1/games/the-tower-of-tigerqiuqiu-tiger-tank-defense/index.json b/site/public/v1/games/the-tower-of-tigerqiuqiu-tiger-tank-defense/index.json new file mode 100644 index 000000000000..577cf0029dda --- /dev/null +++ b/site/public/v1/games/the-tower-of-tigerqiuqiu-tiger-tank-defense/index.json @@ -0,0 +1,31 @@ +{ + "id": 153220, + "slug": "the-tower-of-tigerqiuqiu-tiger-tank-defense", + "name": "The Tower Of TigerQiuQiu Tiger Tank Defense", + "release_date": "2020-12-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202436" + ], + "created_at": "2026-07-10T10:10:46.278063", + "updated_at": "2026-07-10T10:10:46.278063", + "url": "/v1/games/the-tower-of-tigerqiuqiu-tiger-tank-defense" +} diff --git a/site/public/v1/games/the-tower-of-tigerqiuqiu-tiger-tank-g/index.json b/site/public/v1/games/the-tower-of-tigerqiuqiu-tiger-tank-g/index.json new file mode 100644 index 000000000000..d1c2e4dc9d29 --- /dev/null +++ b/site/public/v1/games/the-tower-of-tigerqiuqiu-tiger-tank-g/index.json @@ -0,0 +1,31 @@ +{ + "id": 153221, + "slug": "the-tower-of-tigerqiuqiu-tiger-tank-g", + "name": "The Tower Of TigerQiuQiu Tiger Tank G", + "release_date": "2020-09-05", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202439" + ], + "created_at": "2026-07-10T10:10:46.278063", + "updated_at": "2026-07-10T10:10:46.278063", + "url": "/v1/games/the-tower-of-tigerqiuqiu-tiger-tank-g" +} diff --git a/site/public/v1/games/the-tower-of-tigerqiuqiu-tigscores/index.json b/site/public/v1/games/the-tower-of-tigerqiuqiu-tigscores/index.json new file mode 100644 index 000000000000..2d4b29318e3e --- /dev/null +++ b/site/public/v1/games/the-tower-of-tigerqiuqiu-tigscores/index.json @@ -0,0 +1,31 @@ +{ + "id": 153222, + "slug": "the-tower-of-tigerqiuqiu-tigscores", + "name": "The Tower Of TigerQiuQiu Tigscores", + "release_date": "2020-11-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202440" + ], + "created_at": "2026-07-10T10:10:46.278063", + "updated_at": "2026-07-10T10:10:46.278063", + "url": "/v1/games/the-tower-of-tigerqiuqiu-tigscores" +} diff --git a/site/public/v1/games/the-tower-of-tigerqiuqiu-war-combat/index.json b/site/public/v1/games/the-tower-of-tigerqiuqiu-war-combat/index.json new file mode 100644 index 000000000000..9a62b5de9996 --- /dev/null +++ b/site/public/v1/games/the-tower-of-tigerqiuqiu-war-combat/index.json @@ -0,0 +1,31 @@ +{ + "id": 153223, + "slug": "the-tower-of-tigerqiuqiu-war-combat", + "name": "The Tower Of TigerQiuQiu War Combat", + "release_date": "2020-10-22", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202441" + ], + "created_at": "2026-07-10T10:10:46.278063", + "updated_at": "2026-07-10T10:10:46.278063", + "url": "/v1/games/the-tower-of-tigerqiuqiu-war-combat" +} diff --git a/site/public/v1/games/the-tower-of-tigerqiuqiu-warp-tiger/index.json b/site/public/v1/games/the-tower-of-tigerqiuqiu-warp-tiger/index.json new file mode 100644 index 000000000000..c94f01ff8365 --- /dev/null +++ b/site/public/v1/games/the-tower-of-tigerqiuqiu-warp-tiger/index.json @@ -0,0 +1,31 @@ +{ + "id": 153224, + "slug": "the-tower-of-tigerqiuqiu-warp-tiger", + "name": "The Tower Of TigerQiuQiu Warp Tiger", + "release_date": "2020-10-20", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116202442" + ], + "created_at": "2026-07-10T10:10:46.278063", + "updated_at": "2026-07-10T10:10:46.278063", + "url": "/v1/games/the-tower-of-tigerqiuqiu-warp-tiger" +} diff --git a/site/public/v1/games/the-trouble-with-clones/index.json b/site/public/v1/games/the-trouble-with-clones/index.json new file mode 100644 index 000000000000..2f922448b837 --- /dev/null +++ b/site/public/v1/games/the-trouble-with-clones/index.json @@ -0,0 +1,28 @@ +{ + "id": 153321, + "slug": "the-trouble-with-clones", + "name": "The Trouble with Clones", + "release_date": "2012-03-20", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 3", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60563804" + ], + "created_at": "2026-07-10T10:10:46.305031", + "updated_at": "2026-07-10T10:10:46.305031", + "url": "/v1/games/the-trouble-with-clones" +} diff --git a/site/public/v1/games/the-urbz-2/index.json b/site/public/v1/games/the-urbz-2/index.json new file mode 100644 index 000000000000..b7085a950476 --- /dev/null +++ b/site/public/v1/games/the-urbz-2/index.json @@ -0,0 +1,25 @@ +{ + "id": 153467, + "slug": "the-urbz-2", + "name": "The Urbz 2", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63247560" + ], + "created_at": "2026-07-10T10:10:46.344050", + "updated_at": "2026-07-10T10:10:46.344050", + "url": "/v1/games/the-urbz-2" +} diff --git a/site/public/v1/games/the-walking-dead-season-1-and-season-2-bundle/index.json b/site/public/v1/games/the-walking-dead-season-1-and-season-2-bundle/index.json new file mode 100644 index 000000000000..f47f8ed94683 --- /dev/null +++ b/site/public/v1/games/the-walking-dead-season-1-and-season-2-bundle/index.json @@ -0,0 +1,25 @@ +{ + "id": 153596, + "slug": "the-walking-dead-season-1-and-season-2-bundle", + "name": "The Walking Dead: Season 1 and Season 2 - Bundle", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q92203649" + ], + "created_at": "2026-07-10T10:10:46.378722", + "updated_at": "2026-07-10T10:10:46.378722", + "url": "/v1/games/the-walking-dead-season-1-and-season-2-bundle" +} diff --git a/site/public/v1/games/the-walking-dead-season-two-episode-1-all-that-remains/index.json b/site/public/v1/games/the-walking-dead-season-two-episode-1-all-that-remains/index.json new file mode 100644 index 000000000000..02daae33fc48 --- /dev/null +++ b/site/public/v1/games/the-walking-dead-season-two-episode-1-all-that-remains/index.json @@ -0,0 +1,41 @@ +{ + "id": 153598, + "slug": "the-walking-dead-season-two-episode-1-all-that-remains", + "name": "The Walking Dead: Season Two Episode 1 - All That Remains", + "release_date": "2013-12-17", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 3", + "Microsoft Windows", + "PlayStation 4", + "Ouya", + "PlayStation Vita", + "iOS", + "macOS" + ], + "genres": [ + "zombie apocalyptic video game", + "point-and-click adventure", + "episodic video game" + ], + "stores": [], + "developers": [ + "Telltale Games" + ], + "publishers": [ + "Telltale Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16746357" + ], + "created_at": "2026-07-10T10:10:46.378722", + "updated_at": "2026-07-10T10:10:46.378722", + "url": "/v1/games/the-walking-dead-season-two-episode-1-all-that-remains" +} diff --git a/site/public/v1/games/the-walking-dead-the-complete-first-season/index.json b/site/public/v1/games/the-walking-dead-the-complete-first-season/index.json new file mode 100644 index 000000000000..be673f49f1f2 --- /dev/null +++ b/site/public/v1/games/the-walking-dead-the-complete-first-season/index.json @@ -0,0 +1,28 @@ +{ + "id": 153602, + "slug": "the-walking-dead-the-complete-first-season", + "name": "The Walking Dead: The Complete First Season", + "release_date": "2012-04-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation Vita", + "PlayStation 4" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q92203618" + ], + "created_at": "2026-07-10T10:10:46.379729", + "updated_at": "2026-07-10T10:10:46.379729", + "url": "/v1/games/the-walking-dead-the-complete-first-season" +} diff --git a/site/public/v1/games/the-witch-and-the-hundred-knight-revival-edition/index.json b/site/public/v1/games/the-witch-and-the-hundred-knight-revival-edition/index.json new file mode 100644 index 000000000000..0acb6bdfc9f4 --- /dev/null +++ b/site/public/v1/games/the-witch-and-the-hundred-knight-revival-edition/index.json @@ -0,0 +1,25 @@ +{ + "id": 153811, + "slug": "the-witch-and-the-hundred-knight-revival-edition", + "name": "The Witch and the Hundred Knight: Revival Edition", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107424320" + ], + "created_at": "2026-07-10T10:10:46.434816", + "updated_at": "2026-07-10T10:10:46.434816", + "url": "/v1/games/the-witch-and-the-hundred-knight-revival-edition" +} diff --git a/site/public/v1/games/the-witcher-2-assassins-of-kings-enhanced-edition/index.json b/site/public/v1/games/the-witcher-2-assassins-of-kings-enhanced-edition/index.json new file mode 100644 index 000000000000..4a9dee81b62d --- /dev/null +++ b/site/public/v1/games/the-witcher-2-assassins-of-kings-enhanced-edition/index.json @@ -0,0 +1,36 @@ +{ + "id": 153844, + "slug": "the-witcher-2-assassins-of-kings-enhanced-edition", + "name": "The Witcher 2: Assassins of Kings Enhanced Edition", + "release_date": "2012-04-17", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "action role-playing game" + ], + "stores": [], + "developers": [ + "CD Projekt RED" + ], + "publishers": [ + "Warner Bros. Entertainment", + "CD Projekt RED", + "Bandai Namco Entertainment" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q100984696" + ], + "created_at": "2026-07-10T10:10:46.443944", + "updated_at": "2026-07-10T10:10:46.443944", + "url": "/v1/games/the-witcher-2-assassins-of-kings-enhanced-edition" +} diff --git a/site/public/v1/games/the-witcher-3-wild-hunt-blood-and-wine/index.json b/site/public/v1/games/the-witcher-3-wild-hunt-blood-and-wine/index.json new file mode 100644 index 000000000000..34f451c88d0d --- /dev/null +++ b/site/public/v1/games/the-witcher-3-wild-hunt-blood-and-wine/index.json @@ -0,0 +1,39 @@ +{ + "id": 153846, + "slug": "the-witcher-3-wild-hunt-blood-and-wine", + "name": "The Witcher 3: Wild Hunt – Blood and Wine", + "release_date": "2016-05-31", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "action role-playing game", + "fantasy video game" + ], + "stores": [], + "developers": [ + "CD Projekt", + "CD Projekt RED" + ], + "publishers": [ + "1C Company", + "Namco", + "cdp.pl", + "CD Projekt" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q24807230" + ], + "created_at": "2026-07-10T10:10:46.443944", + "updated_at": "2026-07-10T10:10:46.443944", + "url": "/v1/games/the-witcher-3-wild-hunt-blood-and-wine" +} diff --git a/site/public/v1/games/the-witcher-3-wild-hunt-hearts-of-stone/index.json b/site/public/v1/games/the-witcher-3-wild-hunt-hearts-of-stone/index.json new file mode 100644 index 000000000000..b7c2602b7c5e --- /dev/null +++ b/site/public/v1/games/the-witcher-3-wild-hunt-hearts-of-stone/index.json @@ -0,0 +1,33 @@ +{ + "id": 153847, + "slug": "the-witcher-3-wild-hunt-hearts-of-stone", + "name": "The Witcher 3: Wild Hunt – Hearts of Stone", + "release_date": "2015-10-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "action role-playing game" + ], + "stores": [], + "developers": [ + "CD Projekt RED" + ], + "publishers": [ + "CD Projekt RED" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q24807225" + ], + "created_at": "2026-07-10T10:10:46.443944", + "updated_at": "2026-07-10T10:10:46.443944", + "url": "/v1/games/the-witcher-3-wild-hunt-hearts-of-stone" +} diff --git a/site/public/v1/games/the-witcher-3-wild-hunt-songs-of-the-past/index.json b/site/public/v1/games/the-witcher-3-wild-hunt-songs-of-the-past/index.json new file mode 100644 index 000000000000..8dc787449154 --- /dev/null +++ b/site/public/v1/games/the-witcher-3-wild-hunt-songs-of-the-past/index.json @@ -0,0 +1,34 @@ +{ + "id": 153848, + "slug": "the-witcher-3-wild-hunt-songs-of-the-past", + "name": "The Witcher 3: Wild Hunt – Songs of the Past", + "release_date": "2027-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 5", + "Microsoft Windows" + ], + "genres": [ + "action role-playing game" + ], + "stores": [], + "developers": [ + "CD Projekt RED", + "Fool's Theory" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139942913" + ], + "created_at": "2026-07-10T10:10:46.443944", + "updated_at": "2026-07-10T10:10:46.443944", + "url": "/v1/games/the-witcher-3-wild-hunt-songs-of-the-past" +} diff --git a/site/public/v1/games/the-witcher-iv/index.json b/site/public/v1/games/the-witcher-iv/index.json new file mode 100644 index 000000000000..77e44d7db2aa --- /dev/null +++ b/site/public/v1/games/the-witcher-iv/index.json @@ -0,0 +1,35 @@ +{ + "id": 153854, + "slug": "the-witcher-iv", + "name": "The Witcher IV", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 5", + "Microsoft Windows" + ], + "genres": [ + "action role-playing game" + ], + "stores": [], + "developers": [ + "CD Projekt RED" + ], + "publishers": [ + "CD Projekt" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111023388" + ], + "created_at": "2026-07-10T10:10:46.445892", + "updated_at": "2026-07-10T10:10:46.445892", + "url": "/v1/games/the-witcher-iv" +} diff --git a/site/public/v1/games/the-witcher-side-effects/index.json b/site/public/v1/games/the-witcher-side-effects/index.json new file mode 100644 index 000000000000..be0b9e6af929 --- /dev/null +++ b/site/public/v1/games/the-witcher-side-effects/index.json @@ -0,0 +1,31 @@ +{ + "id": 153858, + "slug": "the-witcher-side-effects", + "name": "The Witcher: Side Effects", + "release_date": "2008-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "role-playing video game" + ], + "stores": [], + "developers": [ + "CD Projekt RED" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110752509" + ], + "created_at": "2026-07-10T10:10:46.446911", + "updated_at": "2026-07-10T10:10:46.446911", + "url": "/v1/games/the-witcher-side-effects" +} diff --git a/site/public/v1/games/the-witcher-the-price-of-neutrality/index.json b/site/public/v1/games/the-witcher-the-price-of-neutrality/index.json new file mode 100644 index 000000000000..e36851ffd851 --- /dev/null +++ b/site/public/v1/games/the-witcher-the-price-of-neutrality/index.json @@ -0,0 +1,33 @@ +{ + "id": 153859, + "slug": "the-witcher-the-price-of-neutrality", + "name": "The Witcher: The Price of Neutrality", + "release_date": "2008-04-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "role-playing video game" + ], + "stores": [], + "developers": [ + "CD Projekt RED" + ], + "publishers": [ + "Atari" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110754687" + ], + "created_at": "2026-07-10T10:10:46.446911", + "updated_at": "2026-07-10T10:10:46.446911", + "url": "/v1/games/the-witcher-the-price-of-neutrality" +} diff --git a/site/public/v1/games/the-wolf-among-us-episode-2-smoke-and-mirrors/index.json b/site/public/v1/games/the-wolf-among-us-episode-2-smoke-and-mirrors/index.json new file mode 100644 index 000000000000..b39201c50d5b --- /dev/null +++ b/site/public/v1/games/the-wolf-among-us-episode-2-smoke-and-mirrors/index.json @@ -0,0 +1,25 @@ +{ + "id": 153886, + "slug": "the-wolf-among-us-episode-2-smoke-and-mirrors", + "name": "The Wolf Among Us: Episode 2 - Smoke and Mirrors", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126948120" + ], + "created_at": "2026-07-10T10:10:46.454010", + "updated_at": "2026-07-10T10:10:46.454010", + "url": "/v1/games/the-wolf-among-us-episode-2-smoke-and-mirrors" +} diff --git a/site/public/v1/games/the-world-drowns/index.json b/site/public/v1/games/the-world-drowns/index.json new file mode 100644 index 000000000000..9b5bd08880b9 --- /dev/null +++ b/site/public/v1/games/the-world-drowns/index.json @@ -0,0 +1,33 @@ +{ + "id": 153912, + "slug": "the-world-drowns", + "name": "The World Drowns", + "release_date": "2010-10-19", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 3" + ], + "genres": [ + "role-playing video game" + ], + "stores": [], + "developers": [ + "ThatOtherPerson" + ], + "publishers": [ + "ThatOtherPerson" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124053152" + ], + "created_at": "2026-07-10T10:10:46.460979", + "updated_at": "2026-07-10T10:10:46.460979", + "url": "/v1/games/the-world-drowns" +} diff --git a/site/public/v1/games/the-yakuza-remastered-collection/index.json b/site/public/v1/games/the-yakuza-remastered-collection/index.json new file mode 100644 index 000000000000..f6cd6219897f --- /dev/null +++ b/site/public/v1/games/the-yakuza-remastered-collection/index.json @@ -0,0 +1,25 @@ +{ + "id": 153976, + "slug": "the-yakuza-remastered-collection", + "name": "The Yakuza Remastered Collection", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125768654" + ], + "created_at": "2026-07-10T10:10:46.477903", + "updated_at": "2026-07-10T10:10:46.477903", + "url": "/v1/games/the-yakuza-remastered-collection" +} diff --git a/site/public/v1/games/theseis/index.json b/site/public/v1/games/theseis/index.json new file mode 100644 index 000000000000..363a7b253be2 --- /dev/null +++ b/site/public/v1/games/theseis/index.json @@ -0,0 +1,27 @@ +{ + "id": 154197, + "slug": "theseis", + "name": "Theseis", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q39435061" + ], + "created_at": "2026-07-10T10:10:46.538987", + "updated_at": "2026-07-10T10:10:46.538987", + "url": "/v1/games/theseis" +} diff --git a/site/public/v1/games/they-hunger-lost-souls/index.json b/site/public/v1/games/they-hunger-lost-souls/index.json new file mode 100644 index 000000000000..b430002e7500 --- /dev/null +++ b/site/public/v1/games/they-hunger-lost-souls/index.json @@ -0,0 +1,27 @@ +{ + "id": 154259, + "slug": "they-hunger-lost-souls", + "name": "They Hunger: Lost Souls", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "first-person shooter" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110727996" + ], + "created_at": "2026-07-10T10:10:46.555977", + "updated_at": "2026-07-10T10:10:46.555977", + "url": "/v1/games/they-hunger-lost-souls" +} diff --git a/site/public/v1/games/thief-the-bank-heist/index.json b/site/public/v1/games/thief-the-bank-heist/index.json new file mode 100644 index 000000000000..325928a3f2d6 --- /dev/null +++ b/site/public/v1/games/thief-the-bank-heist/index.json @@ -0,0 +1,25 @@ +{ + "id": 154304, + "slug": "thief-the-bank-heist", + "name": "Thief: The Bank Heist", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135675982" + ], + "created_at": "2026-07-10T10:10:46.568087", + "updated_at": "2026-07-10T10:10:46.568087", + "url": "/v1/games/thief-the-bank-heist" +} diff --git a/site/public/v1/games/thin-ice-q9778010/index.json b/site/public/v1/games/thin-ice-q9778010/index.json new file mode 100644 index 000000000000..f6dbd7fa2e64 --- /dev/null +++ b/site/public/v1/games/thin-ice-q9778010/index.json @@ -0,0 +1,28 @@ +{ + "id": 154316, + "slug": "thin-ice-q9778010", + "name": "Thin Ice", + "release_date": "2006-12-19", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "puzzle video game", + "maze video game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q9778010" + ], + "created_at": "2026-07-10T10:10:46.571088", + "updated_at": "2026-07-10T10:10:46.571088", + "url": "/v1/games/thin-ice-q9778010" +} diff --git a/site/public/v1/games/third-world/index.json b/site/public/v1/games/third-world/index.json new file mode 100644 index 000000000000..590ef036a9e6 --- /dev/null +++ b/site/public/v1/games/third-world/index.json @@ -0,0 +1,25 @@ +{ + "id": 154363, + "slug": "third-world", + "name": "Third World", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115804093" + ], + "created_at": "2026-07-10T10:10:46.584706", + "updated_at": "2026-07-10T10:10:46.584706", + "url": "/v1/games/third-world" +} diff --git a/site/public/v1/games/this-is-vegas/index.json b/site/public/v1/games/this-is-vegas/index.json new file mode 100644 index 000000000000..9e11b0e1c5d3 --- /dev/null +++ b/site/public/v1/games/this-is-vegas/index.json @@ -0,0 +1,34 @@ +{ + "id": 154434, + "slug": "this-is-vegas", + "name": "This is Vegas", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 3", + "Microsoft Windows" + ], + "genres": [ + "action-adventure game" + ], + "stores": [], + "developers": [ + "Surreal Software" + ], + "publishers": [ + "Warner Bros. Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1168597" + ], + "created_at": "2026-07-10T10:10:46.604647", + "updated_at": "2026-07-10T10:10:46.604647", + "url": "/v1/games/this-is-vegas" +} diff --git a/site/public/v1/games/this-war-of-mine-complete-edition/index.json b/site/public/v1/games/this-war-of-mine-complete-edition/index.json new file mode 100644 index 000000000000..8868af02bfb3 --- /dev/null +++ b/site/public/v1/games/this-war-of-mine-complete-edition/index.json @@ -0,0 +1,32 @@ +{ + "id": 154453, + "slug": "this-war-of-mine-complete-edition", + "name": "This War of Mine: Complete Edition", + "release_date": "2022-05-10", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "11 Bit Studios" + ], + "publishers": [ + "11 Bit Studios" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112116122" + ], + "created_at": "2026-07-10T10:10:46.609704", + "updated_at": "2026-07-10T10:10:46.609704", + "url": "/v1/games/this-war-of-mine-complete-edition" +} diff --git a/site/public/v1/games/this-war-of-mine-the-little-ones/index.json b/site/public/v1/games/this-war-of-mine-the-little-ones/index.json new file mode 100644 index 000000000000..16c84e5b8d6c --- /dev/null +++ b/site/public/v1/games/this-war-of-mine-the-little-ones/index.json @@ -0,0 +1,27 @@ +{ + "id": 154455, + "slug": "this-war-of-mine-the-little-ones", + "name": "This War of Mine: The Little Ones", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 4" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107424321" + ], + "created_at": "2026-07-10T10:10:46.609704", + "updated_at": "2026-07-10T10:10:46.609704", + "url": "/v1/games/this-war-of-mine-the-little-ones" +} diff --git a/site/public/v1/games/threadspace-hyperbol-demo/index.json b/site/public/v1/games/threadspace-hyperbol-demo/index.json new file mode 100644 index 000000000000..672732113973 --- /dev/null +++ b/site/public/v1/games/threadspace-hyperbol-demo/index.json @@ -0,0 +1,29 @@ +{ + "id": 154553, + "slug": "threadspace-hyperbol-demo", + "name": "ThreadSpace: Hyperbol Demo", + "release_date": "2007-07-06", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "real-time strategy" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122710316" + ], + "created_at": "2026-07-10T10:10:46.637646", + "updated_at": "2026-07-10T10:10:46.637646", + "url": "/v1/games/threadspace-hyperbol-demo" +} diff --git a/site/public/v1/games/threes-q124080274/index.json b/site/public/v1/games/threes-q124080274/index.json new file mode 100644 index 000000000000..dfd85418ae57 --- /dev/null +++ b/site/public/v1/games/threes-q124080274/index.json @@ -0,0 +1,27 @@ +{ + "id": 154630, + "slug": "threes-q124080274", + "name": "Threes!+", + "release_date": "2021-04-02", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "iOS" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124080274" + ], + "created_at": "2026-07-10T10:10:46.659726", + "updated_at": "2026-07-10T10:10:46.659726", + "url": "/v1/games/threes-q124080274" +} diff --git a/site/public/v1/games/thrill-kill/index.json b/site/public/v1/games/thrill-kill/index.json new file mode 100644 index 000000000000..d72958078333 --- /dev/null +++ b/site/public/v1/games/thrill-kill/index.json @@ -0,0 +1,31 @@ +{ + "id": 154647, + "slug": "thrill-kill", + "name": "Thrill Kill", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "fighting game" + ], + "stores": [], + "developers": [ + "Midway Studios – Los Angeles" + ], + "publishers": [ + "Virgin Interactive" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1129959" + ], + "created_at": "2026-07-10T10:10:46.664973", + "updated_at": "2026-07-10T10:10:46.664973", + "url": "/v1/games/thrill-kill" +} diff --git a/site/public/v1/games/thrust-shot/index.json b/site/public/v1/games/thrust-shot/index.json new file mode 100644 index 000000000000..dd1ec2fddcfd --- /dev/null +++ b/site/public/v1/games/thrust-shot/index.json @@ -0,0 +1,33 @@ +{ + "id": 154758, + "slug": "thrust-shot", + "name": "Thrust Shot", + "release_date": "2021-05-29", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation Vita" + ], + "genres": [ + "third-person shooter" + ], + "stores": [], + "developers": [ + "VitaHEX games" + ], + "publishers": [ + "VitaHEX games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124028852" + ], + "created_at": "2026-07-10T10:10:46.694634", + "updated_at": "2026-07-10T10:10:46.694634", + "url": "/v1/games/thrust-shot" +} diff --git a/site/public/v1/games/thug-pro/index.json b/site/public/v1/games/thug-pro/index.json new file mode 100644 index 000000000000..8e6e59a26b68 --- /dev/null +++ b/site/public/v1/games/thug-pro/index.json @@ -0,0 +1,29 @@ +{ + "id": 154768, + "slug": "thug-pro", + "name": "THUG Pro", + "release_date": "2013-08-10", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "sports video game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16267857" + ], + "created_at": "2026-07-10T10:10:46.697692", + "updated_at": "2026-07-10T10:10:46.697692", + "url": "/v1/games/thug-pro" +} diff --git a/site/public/v1/games/thumper-pocket-edition/index.json b/site/public/v1/games/thumper-pocket-edition/index.json new file mode 100644 index 000000000000..525317d6ab05 --- /dev/null +++ b/site/public/v1/games/thumper-pocket-edition/index.json @@ -0,0 +1,30 @@ +{ + "id": 154781, + "slug": "thumper-pocket-edition", + "name": "Thumper: Pocket Edition+", + "release_date": "2021-10-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "iPadOS", + "iOS" + ], + "genres": [], + "stores": [], + "developers": [ + "Drool" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108457109" + ], + "created_at": "2026-07-10T10:10:46.700693", + "updated_at": "2026-07-10T10:10:46.700693", + "url": "/v1/games/thumper-pocket-edition" +} diff --git a/site/public/v1/games/thunder-force-gold-pack-1/index.json b/site/public/v1/games/thunder-force-gold-pack-1/index.json new file mode 100644 index 000000000000..8cf2f735ba80 --- /dev/null +++ b/site/public/v1/games/thunder-force-gold-pack-1/index.json @@ -0,0 +1,31 @@ +{ + "id": 154798, + "slug": "thunder-force-gold-pack-1", + "name": "Thunder Force Gold Pack 1", + "release_date": "1996-09-27", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "scrolling shooter" + ], + "stores": [], + "developers": [ + "Technosoft" + ], + "publishers": [ + "Technosoft" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106047435" + ], + "created_at": "2026-07-10T10:10:46.704701", + "updated_at": "2026-07-10T10:10:46.704701", + "url": "/v1/games/thunder-force-gold-pack-1" +} diff --git a/site/public/v1/games/thunder-force-gold-pack-2/index.json b/site/public/v1/games/thunder-force-gold-pack-2/index.json new file mode 100644 index 000000000000..aed6b6c998c8 --- /dev/null +++ b/site/public/v1/games/thunder-force-gold-pack-2/index.json @@ -0,0 +1,31 @@ +{ + "id": 154799, + "slug": "thunder-force-gold-pack-2", + "name": "Thunder Force Gold Pack 2", + "release_date": "1996-12-06", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "scrolling shooter" + ], + "stores": [], + "developers": [ + "Technosoft" + ], + "publishers": [ + "Technosoft" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106047855" + ], + "created_at": "2026-07-10T10:10:46.704701", + "updated_at": "2026-07-10T10:10:46.704701", + "url": "/v1/games/thunder-force-gold-pack-2" +} diff --git a/site/public/v1/games/thunder-storm-lx-3-roadblaster/index.json b/site/public/v1/games/thunder-storm-lx-3-roadblaster/index.json new file mode 100644 index 000000000000..16c90d869533 --- /dev/null +++ b/site/public/v1/games/thunder-storm-lx-3-roadblaster/index.json @@ -0,0 +1,25 @@ +{ + "id": 154822, + "slug": "thunder-storm-lx-3-roadblaster", + "name": "Thunder Storm LX-3 & Roadblaster", + "release_date": "1995-10-20", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108002033" + ], + "created_at": "2026-07-10T10:10:46.710627", + "updated_at": "2026-07-10T10:10:46.710627", + "url": "/v1/games/thunder-storm-lx-3-roadblaster" +} diff --git a/site/public/v1/games/tianrang/index.json b/site/public/v1/games/tianrang/index.json new file mode 100644 index 000000000000..69078f340f0c --- /dev/null +++ b/site/public/v1/games/tianrang/index.json @@ -0,0 +1,25 @@ +{ + "id": 154881, + "slug": "tianrang", + "name": "Tianrang", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q104549569" + ], + "created_at": "2026-07-10T10:10:46.726627", + "updated_at": "2026-07-10T10:10:46.726627", + "url": "/v1/games/tianrang" +} diff --git a/site/public/v1/games/tiberium/index.json b/site/public/v1/games/tiberium/index.json new file mode 100644 index 000000000000..976967c795ac --- /dev/null +++ b/site/public/v1/games/tiberium/index.json @@ -0,0 +1,27 @@ +{ + "id": 154882, + "slug": "tiberium", + "name": "Tiberium", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Electronic Arts" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q14414270" + ], + "created_at": "2026-07-10T10:10:46.727699", + "updated_at": "2026-07-10T10:10:46.727699", + "url": "/v1/games/tiberium" +} diff --git a/site/public/v1/games/tiger-fighter-1931-mp001/index.json b/site/public/v1/games/tiger-fighter-1931-mp001/index.json new file mode 100644 index 000000000000..25acfd5c7c4a --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-mp001/index.json @@ -0,0 +1,31 @@ +{ + "id": 154966, + "slug": "tiger-fighter-1931-mp001", + "name": "Tiger Fighter 1931 MP001", + "release_date": "2021-07-22", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180570" + ], + "created_at": "2026-07-10T10:10:46.749748", + "updated_at": "2026-07-10T10:10:46.749748", + "url": "/v1/games/tiger-fighter-1931-mp001" +} diff --git a/site/public/v1/games/tiger-fighter-1931-mp002/index.json b/site/public/v1/games/tiger-fighter-1931-mp002/index.json new file mode 100644 index 000000000000..f5e812216178 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-mp002/index.json @@ -0,0 +1,31 @@ +{ + "id": 154967, + "slug": "tiger-fighter-1931-mp002", + "name": "Tiger Fighter 1931 MP002", + "release_date": "2021-07-22", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180572" + ], + "created_at": "2026-07-10T10:10:46.750707", + "updated_at": "2026-07-10T10:10:46.750707", + "url": "/v1/games/tiger-fighter-1931-mp002" +} diff --git a/site/public/v1/games/tiger-fighter-1931-mp003/index.json b/site/public/v1/games/tiger-fighter-1931-mp003/index.json new file mode 100644 index 000000000000..2ba5dbd01bb6 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-mp003/index.json @@ -0,0 +1,31 @@ +{ + "id": 154968, + "slug": "tiger-fighter-1931-mp003", + "name": "Tiger Fighter 1931 MP003", + "release_date": "2021-07-22", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180573" + ], + "created_at": "2026-07-10T10:10:46.750707", + "updated_at": "2026-07-10T10:10:46.750707", + "url": "/v1/games/tiger-fighter-1931-mp003" +} diff --git a/site/public/v1/games/tiger-fighter-1931-mp004/index.json b/site/public/v1/games/tiger-fighter-1931-mp004/index.json new file mode 100644 index 000000000000..7ab2ab178048 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-mp004/index.json @@ -0,0 +1,31 @@ +{ + "id": 154969, + "slug": "tiger-fighter-1931-mp004", + "name": "Tiger Fighter 1931 MP004", + "release_date": "2021-07-22", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180576" + ], + "created_at": "2026-07-10T10:10:46.750707", + "updated_at": "2026-07-10T10:10:46.750707", + "url": "/v1/games/tiger-fighter-1931-mp004" +} diff --git a/site/public/v1/games/tiger-fighter-1931-mp005/index.json b/site/public/v1/games/tiger-fighter-1931-mp005/index.json new file mode 100644 index 000000000000..93b2d9392819 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-mp005/index.json @@ -0,0 +1,31 @@ +{ + "id": 154970, + "slug": "tiger-fighter-1931-mp005", + "name": "Tiger Fighter 1931 MP005", + "release_date": "2021-07-22", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180577" + ], + "created_at": "2026-07-10T10:10:46.750707", + "updated_at": "2026-07-10T10:10:46.750707", + "url": "/v1/games/tiger-fighter-1931-mp005" +} diff --git a/site/public/v1/games/tiger-fighter-1931-mp006/index.json b/site/public/v1/games/tiger-fighter-1931-mp006/index.json new file mode 100644 index 000000000000..8c653909030f --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-mp006/index.json @@ -0,0 +1,31 @@ +{ + "id": 154971, + "slug": "tiger-fighter-1931-mp006", + "name": "Tiger Fighter 1931 MP006", + "release_date": "2021-07-22", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180579" + ], + "created_at": "2026-07-10T10:10:46.750707", + "updated_at": "2026-07-10T10:10:46.750707", + "url": "/v1/games/tiger-fighter-1931-mp006" +} diff --git a/site/public/v1/games/tiger-fighter-1931-mp007/index.json b/site/public/v1/games/tiger-fighter-1931-mp007/index.json new file mode 100644 index 000000000000..5897647971c6 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-mp007/index.json @@ -0,0 +1,31 @@ +{ + "id": 154972, + "slug": "tiger-fighter-1931-mp007", + "name": "Tiger Fighter 1931 MP007", + "release_date": "2021-07-22", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180581" + ], + "created_at": "2026-07-10T10:10:46.751695", + "updated_at": "2026-07-10T10:10:46.751695", + "url": "/v1/games/tiger-fighter-1931-mp007" +} diff --git a/site/public/v1/games/tiger-fighter-1931-mp008/index.json b/site/public/v1/games/tiger-fighter-1931-mp008/index.json new file mode 100644 index 000000000000..dcb389032469 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-mp008/index.json @@ -0,0 +1,31 @@ +{ + "id": 154973, + "slug": "tiger-fighter-1931-mp008", + "name": "Tiger Fighter 1931 MP008", + "release_date": "2021-07-22", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180583" + ], + "created_at": "2026-07-10T10:10:46.751695", + "updated_at": "2026-07-10T10:10:46.751695", + "url": "/v1/games/tiger-fighter-1931-mp008" +} diff --git a/site/public/v1/games/tiger-fighter-1931-mp009/index.json b/site/public/v1/games/tiger-fighter-1931-mp009/index.json new file mode 100644 index 000000000000..946d93c1b3a8 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-mp009/index.json @@ -0,0 +1,31 @@ +{ + "id": 154974, + "slug": "tiger-fighter-1931-mp009", + "name": "Tiger Fighter 1931 MP009", + "release_date": "2021-07-22", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180584" + ], + "created_at": "2026-07-10T10:10:46.751695", + "updated_at": "2026-07-10T10:10:46.751695", + "url": "/v1/games/tiger-fighter-1931-mp009" +} diff --git a/site/public/v1/games/tiger-fighter-1931-mp010/index.json b/site/public/v1/games/tiger-fighter-1931-mp010/index.json new file mode 100644 index 000000000000..8efbc125c263 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-mp010/index.json @@ -0,0 +1,31 @@ +{ + "id": 154975, + "slug": "tiger-fighter-1931-mp010", + "name": "Tiger Fighter 1931 MP010", + "release_date": "2021-07-22", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180585" + ], + "created_at": "2026-07-10T10:10:46.752698", + "updated_at": "2026-07-10T10:10:46.752698", + "url": "/v1/games/tiger-fighter-1931-mp010" +} diff --git a/site/public/v1/games/tiger-fighter-1931-mp011/index.json b/site/public/v1/games/tiger-fighter-1931-mp011/index.json new file mode 100644 index 000000000000..22f1ca194ec3 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-mp011/index.json @@ -0,0 +1,31 @@ +{ + "id": 154976, + "slug": "tiger-fighter-1931-mp011", + "name": "Tiger Fighter 1931 MP011", + "release_date": "2021-07-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180588" + ], + "created_at": "2026-07-10T10:10:46.752698", + "updated_at": "2026-07-10T10:10:46.752698", + "url": "/v1/games/tiger-fighter-1931-mp011" +} diff --git a/site/public/v1/games/tiger-fighter-1931-mp012/index.json b/site/public/v1/games/tiger-fighter-1931-mp012/index.json new file mode 100644 index 000000000000..335fa9bc29a3 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-mp012/index.json @@ -0,0 +1,31 @@ +{ + "id": 154977, + "slug": "tiger-fighter-1931-mp012", + "name": "Tiger Fighter 1931 MP012", + "release_date": "2021-07-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180589" + ], + "created_at": "2026-07-10T10:10:46.752698", + "updated_at": "2026-07-10T10:10:46.752698", + "url": "/v1/games/tiger-fighter-1931-mp012" +} diff --git a/site/public/v1/games/tiger-fighter-1931-mp013/index.json b/site/public/v1/games/tiger-fighter-1931-mp013/index.json new file mode 100644 index 000000000000..b0aac150becc --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-mp013/index.json @@ -0,0 +1,31 @@ +{ + "id": 154978, + "slug": "tiger-fighter-1931-mp013", + "name": "Tiger Fighter 1931 MP013", + "release_date": "2021-07-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180590" + ], + "created_at": "2026-07-10T10:10:46.752698", + "updated_at": "2026-07-10T10:10:46.752698", + "url": "/v1/games/tiger-fighter-1931-mp013" +} diff --git a/site/public/v1/games/tiger-fighter-1931-mp014/index.json b/site/public/v1/games/tiger-fighter-1931-mp014/index.json new file mode 100644 index 000000000000..ddfa2be903c4 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-mp014/index.json @@ -0,0 +1,31 @@ +{ + "id": 154979, + "slug": "tiger-fighter-1931-mp014", + "name": "Tiger Fighter 1931 MP014", + "release_date": "2021-07-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180591" + ], + "created_at": "2026-07-10T10:10:46.752698", + "updated_at": "2026-07-10T10:10:46.752698", + "url": "/v1/games/tiger-fighter-1931-mp014" +} diff --git a/site/public/v1/games/tiger-fighter-1931-mp015/index.json b/site/public/v1/games/tiger-fighter-1931-mp015/index.json new file mode 100644 index 000000000000..7257339852f8 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-mp015/index.json @@ -0,0 +1,31 @@ +{ + "id": 154980, + "slug": "tiger-fighter-1931-mp015", + "name": "Tiger Fighter 1931 MP015", + "release_date": "2021-07-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180592" + ], + "created_at": "2026-07-10T10:10:46.753690", + "updated_at": "2026-07-10T10:10:46.753690", + "url": "/v1/games/tiger-fighter-1931-mp015" +} diff --git a/site/public/v1/games/tiger-fighter-1931-mp016/index.json b/site/public/v1/games/tiger-fighter-1931-mp016/index.json new file mode 100644 index 000000000000..73c077e3fe65 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-mp016/index.json @@ -0,0 +1,31 @@ +{ + "id": 154981, + "slug": "tiger-fighter-1931-mp016", + "name": "Tiger Fighter 1931 MP016", + "release_date": "2021-07-25", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180595" + ], + "created_at": "2026-07-10T10:10:46.753690", + "updated_at": "2026-07-10T10:10:46.753690", + "url": "/v1/games/tiger-fighter-1931-mp016" +} diff --git a/site/public/v1/games/tiger-fighter-1931-mp017/index.json b/site/public/v1/games/tiger-fighter-1931-mp017/index.json new file mode 100644 index 000000000000..e83343b5608a --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-mp017/index.json @@ -0,0 +1,31 @@ +{ + "id": 154982, + "slug": "tiger-fighter-1931-mp017", + "name": "Tiger Fighter 1931 MP017", + "release_date": "2021-07-25", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180596" + ], + "created_at": "2026-07-10T10:10:46.753690", + "updated_at": "2026-07-10T10:10:46.753690", + "url": "/v1/games/tiger-fighter-1931-mp017" +} diff --git a/site/public/v1/games/tiger-fighter-1931-mp018/index.json b/site/public/v1/games/tiger-fighter-1931-mp018/index.json new file mode 100644 index 000000000000..90cce123719d --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-mp018/index.json @@ -0,0 +1,31 @@ +{ + "id": 154983, + "slug": "tiger-fighter-1931-mp018", + "name": "Tiger Fighter 1931 MP018", + "release_date": "2021-07-25", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180597" + ], + "created_at": "2026-07-10T10:10:46.753690", + "updated_at": "2026-07-10T10:10:46.753690", + "url": "/v1/games/tiger-fighter-1931-mp018" +} diff --git a/site/public/v1/games/tiger-fighter-1931-mp019/index.json b/site/public/v1/games/tiger-fighter-1931-mp019/index.json new file mode 100644 index 000000000000..9286c17cc528 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-mp019/index.json @@ -0,0 +1,31 @@ +{ + "id": 154984, + "slug": "tiger-fighter-1931-mp019", + "name": "Tiger Fighter 1931 MP019", + "release_date": "2021-07-25", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180598" + ], + "created_at": "2026-07-10T10:10:46.753690", + "updated_at": "2026-07-10T10:10:46.753690", + "url": "/v1/games/tiger-fighter-1931-mp019" +} diff --git a/site/public/v1/games/tiger-fighter-1931-mp020/index.json b/site/public/v1/games/tiger-fighter-1931-mp020/index.json new file mode 100644 index 000000000000..cc7dc5f3ab21 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-mp020/index.json @@ -0,0 +1,31 @@ +{ + "id": 154985, + "slug": "tiger-fighter-1931-mp020", + "name": "Tiger Fighter 1931 MP020", + "release_date": "2021-07-25", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180599" + ], + "created_at": "2026-07-10T10:10:46.754693", + "updated_at": "2026-07-10T10:10:46.754693", + "url": "/v1/games/tiger-fighter-1931-mp020" +} diff --git a/site/public/v1/games/tiger-fighter-1931-mp021/index.json b/site/public/v1/games/tiger-fighter-1931-mp021/index.json new file mode 100644 index 000000000000..a27d06c09f38 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-mp021/index.json @@ -0,0 +1,31 @@ +{ + "id": 154986, + "slug": "tiger-fighter-1931-mp021", + "name": "Tiger Fighter 1931 MP021", + "release_date": "2021-07-25", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180600" + ], + "created_at": "2026-07-10T10:10:46.754693", + "updated_at": "2026-07-10T10:10:46.754693", + "url": "/v1/games/tiger-fighter-1931-mp021" +} diff --git a/site/public/v1/games/tiger-fighter-1931-mp022/index.json b/site/public/v1/games/tiger-fighter-1931-mp022/index.json new file mode 100644 index 000000000000..1206da3df141 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-mp022/index.json @@ -0,0 +1,31 @@ +{ + "id": 154987, + "slug": "tiger-fighter-1931-mp022", + "name": "Tiger Fighter 1931 MP022", + "release_date": "2021-07-25", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180602" + ], + "created_at": "2026-07-10T10:10:46.754693", + "updated_at": "2026-07-10T10:10:46.754693", + "url": "/v1/games/tiger-fighter-1931-mp022" +} diff --git a/site/public/v1/games/tiger-fighter-1931-mp023/index.json b/site/public/v1/games/tiger-fighter-1931-mp023/index.json new file mode 100644 index 000000000000..9108918c241d --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-mp023/index.json @@ -0,0 +1,31 @@ +{ + "id": 154988, + "slug": "tiger-fighter-1931-mp023", + "name": "Tiger Fighter 1931 MP023", + "release_date": "2021-07-25", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180603" + ], + "created_at": "2026-07-10T10:10:46.754693", + "updated_at": "2026-07-10T10:10:46.754693", + "url": "/v1/games/tiger-fighter-1931-mp023" +} diff --git a/site/public/v1/games/tiger-fighter-1931-mp024/index.json b/site/public/v1/games/tiger-fighter-1931-mp024/index.json new file mode 100644 index 000000000000..7c468456f803 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-mp024/index.json @@ -0,0 +1,31 @@ +{ + "id": 154989, + "slug": "tiger-fighter-1931-mp024", + "name": "Tiger Fighter 1931 MP024", + "release_date": "2021-07-25", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180605" + ], + "created_at": "2026-07-10T10:10:46.755696", + "updated_at": "2026-07-10T10:10:46.755696", + "url": "/v1/games/tiger-fighter-1931-mp024" +} diff --git a/site/public/v1/games/tiger-fighter-1931-mp025/index.json b/site/public/v1/games/tiger-fighter-1931-mp025/index.json new file mode 100644 index 000000000000..f261c35f12df --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-mp025/index.json @@ -0,0 +1,31 @@ +{ + "id": 154990, + "slug": "tiger-fighter-1931-mp025", + "name": "Tiger Fighter 1931 MP025", + "release_date": "2021-07-25", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180606" + ], + "created_at": "2026-07-10T10:10:46.755696", + "updated_at": "2026-07-10T10:10:46.755696", + "url": "/v1/games/tiger-fighter-1931-mp025" +} diff --git a/site/public/v1/games/tiger-fighter-1931-mp026/index.json b/site/public/v1/games/tiger-fighter-1931-mp026/index.json new file mode 100644 index 000000000000..c11da6bcb6f1 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-mp026/index.json @@ -0,0 +1,31 @@ +{ + "id": 154991, + "slug": "tiger-fighter-1931-mp026", + "name": "Tiger Fighter 1931 MP026", + "release_date": "2021-07-27", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180608" + ], + "created_at": "2026-07-10T10:10:46.755696", + "updated_at": "2026-07-10T10:10:46.755696", + "url": "/v1/games/tiger-fighter-1931-mp026" +} diff --git a/site/public/v1/games/tiger-fighter-1931-mp027/index.json b/site/public/v1/games/tiger-fighter-1931-mp027/index.json new file mode 100644 index 000000000000..56c65ad81759 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-mp027/index.json @@ -0,0 +1,31 @@ +{ + "id": 154992, + "slug": "tiger-fighter-1931-mp027", + "name": "Tiger Fighter 1931 MP027", + "release_date": "2021-07-27", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180611" + ], + "created_at": "2026-07-10T10:10:46.755696", + "updated_at": "2026-07-10T10:10:46.755696", + "url": "/v1/games/tiger-fighter-1931-mp027" +} diff --git a/site/public/v1/games/tiger-fighter-1931-mp028/index.json b/site/public/v1/games/tiger-fighter-1931-mp028/index.json new file mode 100644 index 000000000000..fdf367e81fe3 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-mp028/index.json @@ -0,0 +1,31 @@ +{ + "id": 154993, + "slug": "tiger-fighter-1931-mp028", + "name": "Tiger Fighter 1931 MP028", + "release_date": "2021-07-27", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180613" + ], + "created_at": "2026-07-10T10:10:46.755696", + "updated_at": "2026-07-10T10:10:46.755696", + "url": "/v1/games/tiger-fighter-1931-mp028" +} diff --git a/site/public/v1/games/tiger-fighter-1931-mp029/index.json b/site/public/v1/games/tiger-fighter-1931-mp029/index.json new file mode 100644 index 000000000000..d82e3b54bb57 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-mp029/index.json @@ -0,0 +1,31 @@ +{ + "id": 154994, + "slug": "tiger-fighter-1931-mp029", + "name": "Tiger Fighter 1931 MP029", + "release_date": "2021-07-27", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180616" + ], + "created_at": "2026-07-10T10:10:46.756675", + "updated_at": "2026-07-10T10:10:46.756675", + "url": "/v1/games/tiger-fighter-1931-mp029" +} diff --git a/site/public/v1/games/tiger-fighter-1931-mp030/index.json b/site/public/v1/games/tiger-fighter-1931-mp030/index.json new file mode 100644 index 000000000000..1ce57bd750c5 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-mp030/index.json @@ -0,0 +1,31 @@ +{ + "id": 154995, + "slug": "tiger-fighter-1931-mp030", + "name": "Tiger Fighter 1931 MP030", + "release_date": "2021-07-27", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180618" + ], + "created_at": "2026-07-10T10:10:46.756675", + "updated_at": "2026-07-10T10:10:46.756675", + "url": "/v1/games/tiger-fighter-1931-mp030" +} diff --git a/site/public/v1/games/tiger-fighter-1931-mp031/index.json b/site/public/v1/games/tiger-fighter-1931-mp031/index.json new file mode 100644 index 000000000000..9b778a25e120 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-mp031/index.json @@ -0,0 +1,31 @@ +{ + "id": 154996, + "slug": "tiger-fighter-1931-mp031", + "name": "Tiger Fighter 1931 MP031", + "release_date": "2021-07-27", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180619" + ], + "created_at": "2026-07-10T10:10:46.756675", + "updated_at": "2026-07-10T10:10:46.756675", + "url": "/v1/games/tiger-fighter-1931-mp031" +} diff --git a/site/public/v1/games/tiger-fighter-1931-mp032/index.json b/site/public/v1/games/tiger-fighter-1931-mp032/index.json new file mode 100644 index 000000000000..9f89affdb2c3 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-mp032/index.json @@ -0,0 +1,31 @@ +{ + "id": 154997, + "slug": "tiger-fighter-1931-mp032", + "name": "Tiger Fighter 1931 MP032", + "release_date": "2021-07-27", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180620" + ], + "created_at": "2026-07-10T10:10:46.756675", + "updated_at": "2026-07-10T10:10:46.756675", + "url": "/v1/games/tiger-fighter-1931-mp032" +} diff --git a/site/public/v1/games/tiger-fighter-1931-mp033/index.json b/site/public/v1/games/tiger-fighter-1931-mp033/index.json new file mode 100644 index 000000000000..b28d03059a77 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-mp033/index.json @@ -0,0 +1,31 @@ +{ + "id": 154998, + "slug": "tiger-fighter-1931-mp033", + "name": "Tiger Fighter 1931 MP033", + "release_date": "2021-07-27", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180622" + ], + "created_at": "2026-07-10T10:10:46.757744", + "updated_at": "2026-07-10T10:10:46.757744", + "url": "/v1/games/tiger-fighter-1931-mp033" +} diff --git a/site/public/v1/games/tiger-fighter-1931-mp034/index.json b/site/public/v1/games/tiger-fighter-1931-mp034/index.json new file mode 100644 index 000000000000..61a52383e788 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-mp034/index.json @@ -0,0 +1,31 @@ +{ + "id": 154999, + "slug": "tiger-fighter-1931-mp034", + "name": "Tiger Fighter 1931 MP034", + "release_date": "2021-07-27", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180624" + ], + "created_at": "2026-07-10T10:10:46.757744", + "updated_at": "2026-07-10T10:10:46.757744", + "url": "/v1/games/tiger-fighter-1931-mp034" +} diff --git a/site/public/v1/games/tiger-fighter-1931-mp035/index.json b/site/public/v1/games/tiger-fighter-1931-mp035/index.json new file mode 100644 index 000000000000..9f2afb5e48bd --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-mp035/index.json @@ -0,0 +1,31 @@ +{ + "id": 155000, + "slug": "tiger-fighter-1931-mp035", + "name": "Tiger Fighter 1931 MP035", + "release_date": "2021-07-27", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180627" + ], + "created_at": "2026-07-10T10:10:46.757744", + "updated_at": "2026-07-10T10:10:46.757744", + "url": "/v1/games/tiger-fighter-1931-mp035" +} diff --git a/site/public/v1/games/tiger-fighter-1931-mp036/index.json b/site/public/v1/games/tiger-fighter-1931-mp036/index.json new file mode 100644 index 000000000000..ee968a29eb81 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-mp036/index.json @@ -0,0 +1,31 @@ +{ + "id": 155001, + "slug": "tiger-fighter-1931-mp036", + "name": "Tiger Fighter 1931 MP036", + "release_date": "2021-07-31", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180629" + ], + "created_at": "2026-07-10T10:10:46.757744", + "updated_at": "2026-07-10T10:10:46.757744", + "url": "/v1/games/tiger-fighter-1931-mp036" +} diff --git a/site/public/v1/games/tiger-fighter-1931-mp037/index.json b/site/public/v1/games/tiger-fighter-1931-mp037/index.json new file mode 100644 index 000000000000..5276b65a35df --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-mp037/index.json @@ -0,0 +1,31 @@ +{ + "id": 155002, + "slug": "tiger-fighter-1931-mp037", + "name": "Tiger Fighter 1931 MP037", + "release_date": "2021-07-31", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180630" + ], + "created_at": "2026-07-10T10:10:46.757744", + "updated_at": "2026-07-10T10:10:46.757744", + "url": "/v1/games/tiger-fighter-1931-mp037" +} diff --git a/site/public/v1/games/tiger-fighter-1931-mp038/index.json b/site/public/v1/games/tiger-fighter-1931-mp038/index.json new file mode 100644 index 000000000000..18b241a8b0db --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-mp038/index.json @@ -0,0 +1,31 @@ +{ + "id": 155003, + "slug": "tiger-fighter-1931-mp038", + "name": "Tiger Fighter 1931 MP038", + "release_date": "2021-07-31", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180632" + ], + "created_at": "2026-07-10T10:10:46.758684", + "updated_at": "2026-07-10T10:10:46.758684", + "url": "/v1/games/tiger-fighter-1931-mp038" +} diff --git a/site/public/v1/games/tiger-fighter-1931-mp039/index.json b/site/public/v1/games/tiger-fighter-1931-mp039/index.json new file mode 100644 index 000000000000..29de0f9d44b9 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-mp039/index.json @@ -0,0 +1,31 @@ +{ + "id": 155004, + "slug": "tiger-fighter-1931-mp039", + "name": "Tiger Fighter 1931 MP039", + "release_date": "2021-07-31", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180635" + ], + "created_at": "2026-07-10T10:10:46.758684", + "updated_at": "2026-07-10T10:10:46.758684", + "url": "/v1/games/tiger-fighter-1931-mp039" +} diff --git a/site/public/v1/games/tiger-fighter-1931-mp040/index.json b/site/public/v1/games/tiger-fighter-1931-mp040/index.json new file mode 100644 index 000000000000..508c5a8a30d9 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-mp040/index.json @@ -0,0 +1,31 @@ +{ + "id": 155005, + "slug": "tiger-fighter-1931-mp040", + "name": "Tiger Fighter 1931 MP040", + "release_date": "2021-07-31", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180636" + ], + "created_at": "2026-07-10T10:10:46.758684", + "updated_at": "2026-07-10T10:10:46.758684", + "url": "/v1/games/tiger-fighter-1931-mp040" +} diff --git a/site/public/v1/games/tiger-fighter-1931-mp041/index.json b/site/public/v1/games/tiger-fighter-1931-mp041/index.json new file mode 100644 index 000000000000..d7480d21c10c --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-mp041/index.json @@ -0,0 +1,31 @@ +{ + "id": 155006, + "slug": "tiger-fighter-1931-mp041", + "name": "Tiger Fighter 1931 MP041", + "release_date": "2021-07-31", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180638" + ], + "created_at": "2026-07-10T10:10:46.758684", + "updated_at": "2026-07-10T10:10:46.758684", + "url": "/v1/games/tiger-fighter-1931-mp041" +} diff --git a/site/public/v1/games/tiger-fighter-1931-mp042/index.json b/site/public/v1/games/tiger-fighter-1931-mp042/index.json new file mode 100644 index 000000000000..5f552577041d --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-mp042/index.json @@ -0,0 +1,31 @@ +{ + "id": 155007, + "slug": "tiger-fighter-1931-mp042", + "name": "Tiger Fighter 1931 MP042", + "release_date": "2021-07-31", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180639" + ], + "created_at": "2026-07-10T10:10:46.759675", + "updated_at": "2026-07-10T10:10:46.759675", + "url": "/v1/games/tiger-fighter-1931-mp042" +} diff --git a/site/public/v1/games/tiger-fighter-1931-mp043/index.json b/site/public/v1/games/tiger-fighter-1931-mp043/index.json new file mode 100644 index 000000000000..283e5800397e --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-mp043/index.json @@ -0,0 +1,31 @@ +{ + "id": 155008, + "slug": "tiger-fighter-1931-mp043", + "name": "Tiger Fighter 1931 MP043", + "release_date": "2021-07-31", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180640" + ], + "created_at": "2026-07-10T10:10:46.759675", + "updated_at": "2026-07-10T10:10:46.759675", + "url": "/v1/games/tiger-fighter-1931-mp043" +} diff --git a/site/public/v1/games/tiger-fighter-1931-mp044/index.json b/site/public/v1/games/tiger-fighter-1931-mp044/index.json new file mode 100644 index 000000000000..0b0dcd726629 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-mp044/index.json @@ -0,0 +1,31 @@ +{ + "id": 155009, + "slug": "tiger-fighter-1931-mp044", + "name": "Tiger Fighter 1931 MP044", + "release_date": "2021-07-31", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180641" + ], + "created_at": "2026-07-10T10:10:46.759675", + "updated_at": "2026-07-10T10:10:46.759675", + "url": "/v1/games/tiger-fighter-1931-mp044" +} diff --git a/site/public/v1/games/tiger-fighter-1931-mp045/index.json b/site/public/v1/games/tiger-fighter-1931-mp045/index.json new file mode 100644 index 000000000000..2c57b482ea7f --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-mp045/index.json @@ -0,0 +1,31 @@ +{ + "id": 155010, + "slug": "tiger-fighter-1931-mp045", + "name": "Tiger Fighter 1931 MP045", + "release_date": "2021-07-31", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180645" + ], + "created_at": "2026-07-10T10:10:46.759675", + "updated_at": "2026-07-10T10:10:46.759675", + "url": "/v1/games/tiger-fighter-1931-mp045" +} diff --git a/site/public/v1/games/tiger-fighter-1931-mp046/index.json b/site/public/v1/games/tiger-fighter-1931-mp046/index.json new file mode 100644 index 000000000000..b98920c835af --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-mp046/index.json @@ -0,0 +1,31 @@ +{ + "id": 155011, + "slug": "tiger-fighter-1931-mp046", + "name": "Tiger Fighter 1931 MP046", + "release_date": "2021-08-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180648" + ], + "created_at": "2026-07-10T10:10:46.759675", + "updated_at": "2026-07-10T10:10:46.760694", + "url": "/v1/games/tiger-fighter-1931-mp046" +} diff --git a/site/public/v1/games/tiger-fighter-1931-mp047/index.json b/site/public/v1/games/tiger-fighter-1931-mp047/index.json new file mode 100644 index 000000000000..f70b13274bfb --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-mp047/index.json @@ -0,0 +1,31 @@ +{ + "id": 155012, + "slug": "tiger-fighter-1931-mp047", + "name": "Tiger Fighter 1931 MP047", + "release_date": "2021-08-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180653" + ], + "created_at": "2026-07-10T10:10:46.760694", + "updated_at": "2026-07-10T10:10:46.760694", + "url": "/v1/games/tiger-fighter-1931-mp047" +} diff --git a/site/public/v1/games/tiger-fighter-1931-mp048/index.json b/site/public/v1/games/tiger-fighter-1931-mp048/index.json new file mode 100644 index 000000000000..c42bd320984b --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-mp048/index.json @@ -0,0 +1,31 @@ +{ + "id": 155013, + "slug": "tiger-fighter-1931-mp048", + "name": "Tiger Fighter 1931 MP048", + "release_date": "2021-08-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180655" + ], + "created_at": "2026-07-10T10:10:46.760694", + "updated_at": "2026-07-10T10:10:46.760694", + "url": "/v1/games/tiger-fighter-1931-mp048" +} diff --git a/site/public/v1/games/tiger-fighter-1931-mp049/index.json b/site/public/v1/games/tiger-fighter-1931-mp049/index.json new file mode 100644 index 000000000000..8df55f465ffe --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-mp049/index.json @@ -0,0 +1,31 @@ +{ + "id": 155014, + "slug": "tiger-fighter-1931-mp049", + "name": "Tiger Fighter 1931 MP049", + "release_date": "2021-08-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180656" + ], + "created_at": "2026-07-10T10:10:46.760694", + "updated_at": "2026-07-10T10:10:46.760694", + "url": "/v1/games/tiger-fighter-1931-mp049" +} diff --git a/site/public/v1/games/tiger-fighter-1931-mp050/index.json b/site/public/v1/games/tiger-fighter-1931-mp050/index.json new file mode 100644 index 000000000000..e0937afc07d9 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-mp050/index.json @@ -0,0 +1,31 @@ +{ + "id": 155015, + "slug": "tiger-fighter-1931-mp050", + "name": "Tiger Fighter 1931 MP050", + "release_date": "2021-08-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180660" + ], + "created_at": "2026-07-10T10:10:46.760694", + "updated_at": "2026-07-10T10:10:46.760694", + "url": "/v1/games/tiger-fighter-1931-mp050" +} diff --git a/site/public/v1/games/tiger-fighter-1931-mp051/index.json b/site/public/v1/games/tiger-fighter-1931-mp051/index.json new file mode 100644 index 000000000000..2668a5175ad7 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-mp051/index.json @@ -0,0 +1,31 @@ +{ + "id": 155016, + "slug": "tiger-fighter-1931-mp051", + "name": "Tiger Fighter 1931 MP051", + "release_date": "2021-08-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180661" + ], + "created_at": "2026-07-10T10:10:46.761679", + "updated_at": "2026-07-10T10:10:46.761679", + "url": "/v1/games/tiger-fighter-1931-mp051" +} diff --git a/site/public/v1/games/tiger-fighter-1931-mp052/index.json b/site/public/v1/games/tiger-fighter-1931-mp052/index.json new file mode 100644 index 000000000000..0bee0dc3b53d --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-mp052/index.json @@ -0,0 +1,31 @@ +{ + "id": 155017, + "slug": "tiger-fighter-1931-mp052", + "name": "Tiger Fighter 1931 MP052", + "release_date": "2021-08-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180662" + ], + "created_at": "2026-07-10T10:10:46.761679", + "updated_at": "2026-07-10T10:10:46.761679", + "url": "/v1/games/tiger-fighter-1931-mp052" +} diff --git a/site/public/v1/games/tiger-fighter-1931-mp053/index.json b/site/public/v1/games/tiger-fighter-1931-mp053/index.json new file mode 100644 index 000000000000..38a33b08b7b4 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-mp053/index.json @@ -0,0 +1,31 @@ +{ + "id": 155018, + "slug": "tiger-fighter-1931-mp053", + "name": "Tiger Fighter 1931 MP053", + "release_date": "2021-08-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180672" + ], + "created_at": "2026-07-10T10:10:46.761679", + "updated_at": "2026-07-10T10:10:46.761679", + "url": "/v1/games/tiger-fighter-1931-mp053" +} diff --git a/site/public/v1/games/tiger-fighter-1931-mp054/index.json b/site/public/v1/games/tiger-fighter-1931-mp054/index.json new file mode 100644 index 000000000000..1cd3b11427ac --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-mp054/index.json @@ -0,0 +1,31 @@ +{ + "id": 155019, + "slug": "tiger-fighter-1931-mp054", + "name": "Tiger Fighter 1931 MP054", + "release_date": "2021-08-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180677" + ], + "created_at": "2026-07-10T10:10:46.761679", + "updated_at": "2026-07-10T10:10:46.761679", + "url": "/v1/games/tiger-fighter-1931-mp054" +} diff --git a/site/public/v1/games/tiger-fighter-1931-mp055/index.json b/site/public/v1/games/tiger-fighter-1931-mp055/index.json new file mode 100644 index 000000000000..58ff96269462 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-mp055/index.json @@ -0,0 +1,31 @@ +{ + "id": 155020, + "slug": "tiger-fighter-1931-mp055", + "name": "Tiger Fighter 1931 MP055", + "release_date": "2021-08-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180681" + ], + "created_at": "2026-07-10T10:10:46.761679", + "updated_at": "2026-07-10T10:10:46.762707", + "url": "/v1/games/tiger-fighter-1931-mp055" +} diff --git a/site/public/v1/games/tiger-fighter-1931-mp056/index.json b/site/public/v1/games/tiger-fighter-1931-mp056/index.json new file mode 100644 index 000000000000..21ddc546bd10 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-mp056/index.json @@ -0,0 +1,31 @@ +{ + "id": 155021, + "slug": "tiger-fighter-1931-mp056", + "name": "Tiger Fighter 1931 MP056", + "release_date": "2021-08-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180682" + ], + "created_at": "2026-07-10T10:10:46.762707", + "updated_at": "2026-07-10T10:10:46.762707", + "url": "/v1/games/tiger-fighter-1931-mp056" +} diff --git a/site/public/v1/games/tiger-fighter-1931-mp057/index.json b/site/public/v1/games/tiger-fighter-1931-mp057/index.json new file mode 100644 index 000000000000..ce9af4247e97 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-mp057/index.json @@ -0,0 +1,31 @@ +{ + "id": 155022, + "slug": "tiger-fighter-1931-mp057", + "name": "Tiger Fighter 1931 MP057", + "release_date": "2021-08-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180693" + ], + "created_at": "2026-07-10T10:10:46.762707", + "updated_at": "2026-07-10T10:10:46.762707", + "url": "/v1/games/tiger-fighter-1931-mp057" +} diff --git a/site/public/v1/games/tiger-fighter-1931-mp058/index.json b/site/public/v1/games/tiger-fighter-1931-mp058/index.json new file mode 100644 index 000000000000..585a0c2747b9 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-mp058/index.json @@ -0,0 +1,31 @@ +{ + "id": 155023, + "slug": "tiger-fighter-1931-mp058", + "name": "Tiger Fighter 1931 MP058", + "release_date": "2021-08-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180703" + ], + "created_at": "2026-07-10T10:10:46.762707", + "updated_at": "2026-07-10T10:10:46.762707", + "url": "/v1/games/tiger-fighter-1931-mp058" +} diff --git a/site/public/v1/games/tiger-fighter-1931-mp059/index.json b/site/public/v1/games/tiger-fighter-1931-mp059/index.json new file mode 100644 index 000000000000..83b0bd653c23 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-mp059/index.json @@ -0,0 +1,31 @@ +{ + "id": 155024, + "slug": "tiger-fighter-1931-mp059", + "name": "Tiger Fighter 1931 MP059", + "release_date": "2021-08-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180713" + ], + "created_at": "2026-07-10T10:10:46.762707", + "updated_at": "2026-07-10T10:10:46.762707", + "url": "/v1/games/tiger-fighter-1931-mp059" +} diff --git a/site/public/v1/games/tiger-fighter-1931-mp060/index.json b/site/public/v1/games/tiger-fighter-1931-mp060/index.json new file mode 100644 index 000000000000..175e7f9f79f0 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-mp060/index.json @@ -0,0 +1,31 @@ +{ + "id": 155025, + "slug": "tiger-fighter-1931-mp060", + "name": "Tiger Fighter 1931 MP060", + "release_date": "2021-08-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180719" + ], + "created_at": "2026-07-10T10:10:46.762707", + "updated_at": "2026-07-10T10:10:46.762707", + "url": "/v1/games/tiger-fighter-1931-mp060" +} diff --git a/site/public/v1/games/tiger-fighter-1931-mp061/index.json b/site/public/v1/games/tiger-fighter-1931-mp061/index.json new file mode 100644 index 000000000000..7320ebfd4a2f --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-mp061/index.json @@ -0,0 +1,31 @@ +{ + "id": 155026, + "slug": "tiger-fighter-1931-mp061", + "name": "Tiger Fighter 1931 MP061", + "release_date": "2021-08-14", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180724" + ], + "created_at": "2026-07-10T10:10:46.763760", + "updated_at": "2026-07-10T10:10:46.763760", + "url": "/v1/games/tiger-fighter-1931-mp061" +} diff --git a/site/public/v1/games/tiger-fighter-1931-mp062/index.json b/site/public/v1/games/tiger-fighter-1931-mp062/index.json new file mode 100644 index 000000000000..3844fbdab693 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-mp062/index.json @@ -0,0 +1,31 @@ +{ + "id": 155027, + "slug": "tiger-fighter-1931-mp062", + "name": "Tiger Fighter 1931 MP062", + "release_date": "2021-08-14", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180733" + ], + "created_at": "2026-07-10T10:10:46.763760", + "updated_at": "2026-07-10T10:10:46.763760", + "url": "/v1/games/tiger-fighter-1931-mp062" +} diff --git a/site/public/v1/games/tiger-fighter-1931-mp063/index.json b/site/public/v1/games/tiger-fighter-1931-mp063/index.json new file mode 100644 index 000000000000..44dd54e29553 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-mp063/index.json @@ -0,0 +1,31 @@ +{ + "id": 155028, + "slug": "tiger-fighter-1931-mp063", + "name": "Tiger Fighter 1931 MP063", + "release_date": "2021-08-14", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180745" + ], + "created_at": "2026-07-10T10:10:46.763760", + "updated_at": "2026-07-10T10:10:46.763760", + "url": "/v1/games/tiger-fighter-1931-mp063" +} diff --git a/site/public/v1/games/tiger-fighter-1931-mp064/index.json b/site/public/v1/games/tiger-fighter-1931-mp064/index.json new file mode 100644 index 000000000000..b71acc6d79d0 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-mp064/index.json @@ -0,0 +1,31 @@ +{ + "id": 155029, + "slug": "tiger-fighter-1931-mp064", + "name": "Tiger Fighter 1931 MP064", + "release_date": "2021-08-14", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180749" + ], + "created_at": "2026-07-10T10:10:46.763760", + "updated_at": "2026-07-10T10:10:46.763760", + "url": "/v1/games/tiger-fighter-1931-mp064" +} diff --git a/site/public/v1/games/tiger-fighter-1931-mp065/index.json b/site/public/v1/games/tiger-fighter-1931-mp065/index.json new file mode 100644 index 000000000000..bfab1dbe9933 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-mp065/index.json @@ -0,0 +1,31 @@ +{ + "id": 155030, + "slug": "tiger-fighter-1931-mp065", + "name": "Tiger Fighter 1931 MP065", + "release_date": "2021-08-14", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180750" + ], + "created_at": "2026-07-10T10:10:46.764811", + "updated_at": "2026-07-10T10:10:46.764811", + "url": "/v1/games/tiger-fighter-1931-mp065" +} diff --git a/site/public/v1/games/tiger-fighter-1931-mp066/index.json b/site/public/v1/games/tiger-fighter-1931-mp066/index.json new file mode 100644 index 000000000000..8042b6a2368b --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-mp066/index.json @@ -0,0 +1,31 @@ +{ + "id": 155031, + "slug": "tiger-fighter-1931-mp066", + "name": "Tiger Fighter 1931 MP066", + "release_date": "2021-08-14", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180752" + ], + "created_at": "2026-07-10T10:10:46.764811", + "updated_at": "2026-07-10T10:10:46.764811", + "url": "/v1/games/tiger-fighter-1931-mp066" +} diff --git a/site/public/v1/games/tiger-fighter-1931-mp067/index.json b/site/public/v1/games/tiger-fighter-1931-mp067/index.json new file mode 100644 index 000000000000..a88960bcf0e1 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-mp067/index.json @@ -0,0 +1,31 @@ +{ + "id": 155032, + "slug": "tiger-fighter-1931-mp067", + "name": "Tiger Fighter 1931 MP067", + "release_date": "2021-08-14", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180754" + ], + "created_at": "2026-07-10T10:10:46.764811", + "updated_at": "2026-07-10T10:10:46.764811", + "url": "/v1/games/tiger-fighter-1931-mp067" +} diff --git a/site/public/v1/games/tiger-fighter-1931-mp068/index.json b/site/public/v1/games/tiger-fighter-1931-mp068/index.json new file mode 100644 index 000000000000..e16b95401e58 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-mp068/index.json @@ -0,0 +1,31 @@ +{ + "id": 155033, + "slug": "tiger-fighter-1931-mp068", + "name": "Tiger Fighter 1931 MP068", + "release_date": "2021-08-14", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180758" + ], + "created_at": "2026-07-10T10:10:46.764811", + "updated_at": "2026-07-10T10:10:46.764811", + "url": "/v1/games/tiger-fighter-1931-mp068" +} diff --git a/site/public/v1/games/tiger-fighter-1931-mp069/index.json b/site/public/v1/games/tiger-fighter-1931-mp069/index.json new file mode 100644 index 000000000000..3eb47869b3c6 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-mp069/index.json @@ -0,0 +1,31 @@ +{ + "id": 155034, + "slug": "tiger-fighter-1931-mp069", + "name": "Tiger Fighter 1931 MP069", + "release_date": "2021-08-14", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180763" + ], + "created_at": "2026-07-10T10:10:46.764811", + "updated_at": "2026-07-10T10:10:46.764811", + "url": "/v1/games/tiger-fighter-1931-mp069" +} diff --git a/site/public/v1/games/tiger-fighter-1931-mp070/index.json b/site/public/v1/games/tiger-fighter-1931-mp070/index.json new file mode 100644 index 000000000000..27a1f423d7cf --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-mp070/index.json @@ -0,0 +1,31 @@ +{ + "id": 155035, + "slug": "tiger-fighter-1931-mp070", + "name": "Tiger Fighter 1931 MP070", + "release_date": "2021-08-14", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180764" + ], + "created_at": "2026-07-10T10:10:46.765795", + "updated_at": "2026-07-10T10:10:46.765795", + "url": "/v1/games/tiger-fighter-1931-mp070" +} diff --git a/site/public/v1/games/tiger-fighter-1931-mp071/index.json b/site/public/v1/games/tiger-fighter-1931-mp071/index.json new file mode 100644 index 000000000000..a48323c670bf --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-mp071/index.json @@ -0,0 +1,31 @@ +{ + "id": 155036, + "slug": "tiger-fighter-1931-mp071", + "name": "Tiger Fighter 1931 MP071", + "release_date": "2021-08-19", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180774" + ], + "created_at": "2026-07-10T10:10:46.765795", + "updated_at": "2026-07-10T10:10:46.765795", + "url": "/v1/games/tiger-fighter-1931-mp071" +} diff --git a/site/public/v1/games/tiger-fighter-1931-mp072/index.json b/site/public/v1/games/tiger-fighter-1931-mp072/index.json new file mode 100644 index 000000000000..06a420fe3beb --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-mp072/index.json @@ -0,0 +1,31 @@ +{ + "id": 155037, + "slug": "tiger-fighter-1931-mp072", + "name": "Tiger Fighter 1931 MP072", + "release_date": "2021-08-19", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180784" + ], + "created_at": "2026-07-10T10:10:46.765795", + "updated_at": "2026-07-10T10:10:46.765795", + "url": "/v1/games/tiger-fighter-1931-mp072" +} diff --git a/site/public/v1/games/tiger-fighter-1931-mp073/index.json b/site/public/v1/games/tiger-fighter-1931-mp073/index.json new file mode 100644 index 000000000000..056b7c87e292 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-mp073/index.json @@ -0,0 +1,31 @@ +{ + "id": 155038, + "slug": "tiger-fighter-1931-mp073", + "name": "Tiger Fighter 1931 MP073", + "release_date": "2021-08-19", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180790" + ], + "created_at": "2026-07-10T10:10:46.765795", + "updated_at": "2026-07-10T10:10:46.765795", + "url": "/v1/games/tiger-fighter-1931-mp073" +} diff --git a/site/public/v1/games/tiger-fighter-1931-mp074/index.json b/site/public/v1/games/tiger-fighter-1931-mp074/index.json new file mode 100644 index 000000000000..18dd097f3d07 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-mp074/index.json @@ -0,0 +1,31 @@ +{ + "id": 155039, + "slug": "tiger-fighter-1931-mp074", + "name": "Tiger Fighter 1931 MP074", + "release_date": "2021-08-19", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180792" + ], + "created_at": "2026-07-10T10:10:46.765795", + "updated_at": "2026-07-10T10:10:46.765795", + "url": "/v1/games/tiger-fighter-1931-mp074" +} diff --git a/site/public/v1/games/tiger-fighter-1931-mp075/index.json b/site/public/v1/games/tiger-fighter-1931-mp075/index.json new file mode 100644 index 000000000000..9fa93c8a66d9 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-mp075/index.json @@ -0,0 +1,31 @@ +{ + "id": 155040, + "slug": "tiger-fighter-1931-mp075", + "name": "Tiger Fighter 1931 MP075", + "release_date": "2021-08-19", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180798" + ], + "created_at": "2026-07-10T10:10:46.766781", + "updated_at": "2026-07-10T10:10:46.766781", + "url": "/v1/games/tiger-fighter-1931-mp075" +} diff --git a/site/public/v1/games/tiger-fighter-1931-mp076/index.json b/site/public/v1/games/tiger-fighter-1931-mp076/index.json new file mode 100644 index 000000000000..9a098f47bfa7 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-mp076/index.json @@ -0,0 +1,31 @@ +{ + "id": 155041, + "slug": "tiger-fighter-1931-mp076", + "name": "Tiger Fighter 1931 MP076", + "release_date": "2021-08-19", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180805" + ], + "created_at": "2026-07-10T10:10:46.766781", + "updated_at": "2026-07-10T10:10:46.766781", + "url": "/v1/games/tiger-fighter-1931-mp076" +} diff --git a/site/public/v1/games/tiger-fighter-1931-mp077/index.json b/site/public/v1/games/tiger-fighter-1931-mp077/index.json new file mode 100644 index 000000000000..fbb9386d8d3e --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-mp077/index.json @@ -0,0 +1,31 @@ +{ + "id": 155042, + "slug": "tiger-fighter-1931-mp077", + "name": "Tiger Fighter 1931 MP077", + "release_date": "2021-08-19", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180807" + ], + "created_at": "2026-07-10T10:10:46.766781", + "updated_at": "2026-07-10T10:10:46.766781", + "url": "/v1/games/tiger-fighter-1931-mp077" +} diff --git a/site/public/v1/games/tiger-fighter-1931-mp078/index.json b/site/public/v1/games/tiger-fighter-1931-mp078/index.json new file mode 100644 index 000000000000..0d9a265cc789 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-mp078/index.json @@ -0,0 +1,31 @@ +{ + "id": 155043, + "slug": "tiger-fighter-1931-mp078", + "name": "Tiger Fighter 1931 MP078", + "release_date": "2021-08-19", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180809" + ], + "created_at": "2026-07-10T10:10:46.766781", + "updated_at": "2026-07-10T10:10:46.766781", + "url": "/v1/games/tiger-fighter-1931-mp078" +} diff --git a/site/public/v1/games/tiger-fighter-1931-mp079/index.json b/site/public/v1/games/tiger-fighter-1931-mp079/index.json new file mode 100644 index 000000000000..65db5a4f6e85 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-mp079/index.json @@ -0,0 +1,31 @@ +{ + "id": 155044, + "slug": "tiger-fighter-1931-mp079", + "name": "Tiger Fighter 1931 MP079", + "release_date": "2021-08-19", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180815" + ], + "created_at": "2026-07-10T10:10:46.767795", + "updated_at": "2026-07-10T10:10:46.767795", + "url": "/v1/games/tiger-fighter-1931-mp079" +} diff --git a/site/public/v1/games/tiger-fighter-1931-mp080/index.json b/site/public/v1/games/tiger-fighter-1931-mp080/index.json new file mode 100644 index 000000000000..3e5383e6620f --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-mp080/index.json @@ -0,0 +1,31 @@ +{ + "id": 155045, + "slug": "tiger-fighter-1931-mp080", + "name": "Tiger Fighter 1931 MP080", + "release_date": "2021-08-19", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180823" + ], + "created_at": "2026-07-10T10:10:46.767795", + "updated_at": "2026-07-10T10:10:46.767795", + "url": "/v1/games/tiger-fighter-1931-mp080" +} diff --git a/site/public/v1/games/tiger-fighter-1931-mp081/index.json b/site/public/v1/games/tiger-fighter-1931-mp081/index.json new file mode 100644 index 000000000000..29363c34d9c1 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-mp081/index.json @@ -0,0 +1,31 @@ +{ + "id": 155046, + "slug": "tiger-fighter-1931-mp081", + "name": "Tiger Fighter 1931 MP081", + "release_date": "2021-08-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180824" + ], + "created_at": "2026-07-10T10:10:46.767795", + "updated_at": "2026-07-10T10:10:46.767795", + "url": "/v1/games/tiger-fighter-1931-mp081" +} diff --git a/site/public/v1/games/tiger-fighter-1931-mp082/index.json b/site/public/v1/games/tiger-fighter-1931-mp082/index.json new file mode 100644 index 000000000000..c12f61636432 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-mp082/index.json @@ -0,0 +1,31 @@ +{ + "id": 155047, + "slug": "tiger-fighter-1931-mp082", + "name": "Tiger Fighter 1931 MP082", + "release_date": "2021-08-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180825" + ], + "created_at": "2026-07-10T10:10:46.767795", + "updated_at": "2026-07-10T10:10:46.767795", + "url": "/v1/games/tiger-fighter-1931-mp082" +} diff --git a/site/public/v1/games/tiger-fighter-1931-mp083/index.json b/site/public/v1/games/tiger-fighter-1931-mp083/index.json new file mode 100644 index 000000000000..30a2eea52169 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-mp083/index.json @@ -0,0 +1,31 @@ +{ + "id": 155048, + "slug": "tiger-fighter-1931-mp083", + "name": "Tiger Fighter 1931 MP083", + "release_date": "2021-08-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180826" + ], + "created_at": "2026-07-10T10:10:46.768792", + "updated_at": "2026-07-10T10:10:46.768792", + "url": "/v1/games/tiger-fighter-1931-mp083" +} diff --git a/site/public/v1/games/tiger-fighter-1931-mp084/index.json b/site/public/v1/games/tiger-fighter-1931-mp084/index.json new file mode 100644 index 000000000000..0fe5e5db81db --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-mp084/index.json @@ -0,0 +1,31 @@ +{ + "id": 155049, + "slug": "tiger-fighter-1931-mp084", + "name": "Tiger Fighter 1931 MP084", + "release_date": "2021-08-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180828" + ], + "created_at": "2026-07-10T10:10:46.768792", + "updated_at": "2026-07-10T10:10:46.768792", + "url": "/v1/games/tiger-fighter-1931-mp084" +} diff --git a/site/public/v1/games/tiger-fighter-1931-mp085/index.json b/site/public/v1/games/tiger-fighter-1931-mp085/index.json new file mode 100644 index 000000000000..cf8362e83019 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-mp085/index.json @@ -0,0 +1,31 @@ +{ + "id": 155050, + "slug": "tiger-fighter-1931-mp085", + "name": "Tiger Fighter 1931 MP085", + "release_date": "2021-08-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180829" + ], + "created_at": "2026-07-10T10:10:46.768792", + "updated_at": "2026-07-10T10:10:46.768792", + "url": "/v1/games/tiger-fighter-1931-mp085" +} diff --git a/site/public/v1/games/tiger-fighter-1931-mp086/index.json b/site/public/v1/games/tiger-fighter-1931-mp086/index.json new file mode 100644 index 000000000000..752d20cea546 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-mp086/index.json @@ -0,0 +1,31 @@ +{ + "id": 155051, + "slug": "tiger-fighter-1931-mp086", + "name": "Tiger Fighter 1931 MP086", + "release_date": "2021-08-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180830" + ], + "created_at": "2026-07-10T10:10:46.768792", + "updated_at": "2026-07-10T10:10:46.768792", + "url": "/v1/games/tiger-fighter-1931-mp086" +} diff --git a/site/public/v1/games/tiger-fighter-1931-mp087/index.json b/site/public/v1/games/tiger-fighter-1931-mp087/index.json new file mode 100644 index 000000000000..0bb62e6d185c --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-mp087/index.json @@ -0,0 +1,31 @@ +{ + "id": 155052, + "slug": "tiger-fighter-1931-mp087", + "name": "Tiger Fighter 1931 MP087", + "release_date": "2021-08-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180833" + ], + "created_at": "2026-07-10T10:10:46.769805", + "updated_at": "2026-07-10T10:10:46.769805", + "url": "/v1/games/tiger-fighter-1931-mp087" +} diff --git a/site/public/v1/games/tiger-fighter-1931-mp088/index.json b/site/public/v1/games/tiger-fighter-1931-mp088/index.json new file mode 100644 index 000000000000..c8a7588d9574 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-mp088/index.json @@ -0,0 +1,31 @@ +{ + "id": 155053, + "slug": "tiger-fighter-1931-mp088", + "name": "Tiger Fighter 1931 MP088", + "release_date": "2021-08-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180836" + ], + "created_at": "2026-07-10T10:10:46.769805", + "updated_at": "2026-07-10T10:10:46.769805", + "url": "/v1/games/tiger-fighter-1931-mp088" +} diff --git a/site/public/v1/games/tiger-fighter-1931-mp089/index.json b/site/public/v1/games/tiger-fighter-1931-mp089/index.json new file mode 100644 index 000000000000..6ee95fdc0104 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-mp089/index.json @@ -0,0 +1,31 @@ +{ + "id": 155054, + "slug": "tiger-fighter-1931-mp089", + "name": "Tiger Fighter 1931 MP089", + "release_date": "2021-08-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180837" + ], + "created_at": "2026-07-10T10:10:46.769805", + "updated_at": "2026-07-10T10:10:46.769805", + "url": "/v1/games/tiger-fighter-1931-mp089" +} diff --git a/site/public/v1/games/tiger-fighter-1931-mp090/index.json b/site/public/v1/games/tiger-fighter-1931-mp090/index.json new file mode 100644 index 000000000000..6ebb52d63fe1 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-mp090/index.json @@ -0,0 +1,31 @@ +{ + "id": 155055, + "slug": "tiger-fighter-1931-mp090", + "name": "Tiger Fighter 1931 MP090", + "release_date": "2021-08-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180839" + ], + "created_at": "2026-07-10T10:10:46.769805", + "updated_at": "2026-07-10T10:10:46.769805", + "url": "/v1/games/tiger-fighter-1931-mp090" +} diff --git a/site/public/v1/games/tiger-fighter-1931-mp091/index.json b/site/public/v1/games/tiger-fighter-1931-mp091/index.json new file mode 100644 index 000000000000..14845d0ec297 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-mp091/index.json @@ -0,0 +1,31 @@ +{ + "id": 155056, + "slug": "tiger-fighter-1931-mp091", + "name": "Tiger Fighter 1931 MP091", + "release_date": "2021-08-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180841" + ], + "created_at": "2026-07-10T10:10:46.769805", + "updated_at": "2026-07-10T10:10:46.769805", + "url": "/v1/games/tiger-fighter-1931-mp091" +} diff --git a/site/public/v1/games/tiger-fighter-1931-mp092/index.json b/site/public/v1/games/tiger-fighter-1931-mp092/index.json new file mode 100644 index 000000000000..7dcadd3d6006 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-mp092/index.json @@ -0,0 +1,31 @@ +{ + "id": 155057, + "slug": "tiger-fighter-1931-mp092", + "name": "Tiger Fighter 1931 MP092", + "release_date": "2021-08-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180844" + ], + "created_at": "2026-07-10T10:10:46.770832", + "updated_at": "2026-07-10T10:10:46.770832", + "url": "/v1/games/tiger-fighter-1931-mp092" +} diff --git a/site/public/v1/games/tiger-fighter-1931-mp093/index.json b/site/public/v1/games/tiger-fighter-1931-mp093/index.json new file mode 100644 index 000000000000..6c6a7d6f847f --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-mp093/index.json @@ -0,0 +1,31 @@ +{ + "id": 155058, + "slug": "tiger-fighter-1931-mp093", + "name": "Tiger Fighter 1931 MP093", + "release_date": "2021-08-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180849" + ], + "created_at": "2026-07-10T10:10:46.770832", + "updated_at": "2026-07-10T10:10:46.770832", + "url": "/v1/games/tiger-fighter-1931-mp093" +} diff --git a/site/public/v1/games/tiger-fighter-1931-mp094/index.json b/site/public/v1/games/tiger-fighter-1931-mp094/index.json new file mode 100644 index 000000000000..6ae56ea120bb --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-mp094/index.json @@ -0,0 +1,31 @@ +{ + "id": 155059, + "slug": "tiger-fighter-1931-mp094", + "name": "Tiger Fighter 1931 MP094", + "release_date": "2021-08-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180854" + ], + "created_at": "2026-07-10T10:10:46.770832", + "updated_at": "2026-07-10T10:10:46.770832", + "url": "/v1/games/tiger-fighter-1931-mp094" +} diff --git a/site/public/v1/games/tiger-fighter-1931-mp095/index.json b/site/public/v1/games/tiger-fighter-1931-mp095/index.json new file mode 100644 index 000000000000..37e3ad9a4a25 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-mp095/index.json @@ -0,0 +1,31 @@ +{ + "id": 155060, + "slug": "tiger-fighter-1931-mp095", + "name": "Tiger Fighter 1931 MP095", + "release_date": "2021-08-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180856" + ], + "created_at": "2026-07-10T10:10:46.770832", + "updated_at": "2026-07-10T10:10:46.770832", + "url": "/v1/games/tiger-fighter-1931-mp095" +} diff --git a/site/public/v1/games/tiger-fighter-1931-mp096/index.json b/site/public/v1/games/tiger-fighter-1931-mp096/index.json new file mode 100644 index 000000000000..38e39c0f8a3f --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-mp096/index.json @@ -0,0 +1,31 @@ +{ + "id": 155061, + "slug": "tiger-fighter-1931-mp096", + "name": "Tiger Fighter 1931 MP096", + "release_date": "2021-08-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180861" + ], + "created_at": "2026-07-10T10:10:46.770832", + "updated_at": "2026-07-10T10:10:46.770832", + "url": "/v1/games/tiger-fighter-1931-mp096" +} diff --git a/site/public/v1/games/tiger-fighter-1931-mp097/index.json b/site/public/v1/games/tiger-fighter-1931-mp097/index.json new file mode 100644 index 000000000000..873403a73603 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-mp097/index.json @@ -0,0 +1,31 @@ +{ + "id": 155062, + "slug": "tiger-fighter-1931-mp097", + "name": "Tiger Fighter 1931 MP097", + "release_date": "2021-08-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180867" + ], + "created_at": "2026-07-10T10:10:46.771790", + "updated_at": "2026-07-10T10:10:46.771790", + "url": "/v1/games/tiger-fighter-1931-mp097" +} diff --git a/site/public/v1/games/tiger-fighter-1931-mp098/index.json b/site/public/v1/games/tiger-fighter-1931-mp098/index.json new file mode 100644 index 000000000000..65abc28f61f4 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-mp098/index.json @@ -0,0 +1,31 @@ +{ + "id": 155063, + "slug": "tiger-fighter-1931-mp098", + "name": "Tiger Fighter 1931 MP098", + "release_date": "2021-08-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180870" + ], + "created_at": "2026-07-10T10:10:46.771790", + "updated_at": "2026-07-10T10:10:46.771790", + "url": "/v1/games/tiger-fighter-1931-mp098" +} diff --git a/site/public/v1/games/tiger-fighter-1931-mp099/index.json b/site/public/v1/games/tiger-fighter-1931-mp099/index.json new file mode 100644 index 000000000000..1939521c70db --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-mp099/index.json @@ -0,0 +1,31 @@ +{ + "id": 155064, + "slug": "tiger-fighter-1931-mp099", + "name": "Tiger Fighter 1931 MP099", + "release_date": "2021-08-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180874" + ], + "created_at": "2026-07-10T10:10:46.771790", + "updated_at": "2026-07-10T10:10:46.771790", + "url": "/v1/games/tiger-fighter-1931-mp099" +} diff --git a/site/public/v1/games/tiger-fighter-1931-mp100/index.json b/site/public/v1/games/tiger-fighter-1931-mp100/index.json new file mode 100644 index 000000000000..b2e44d643898 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-mp100/index.json @@ -0,0 +1,31 @@ +{ + "id": 155065, + "slug": "tiger-fighter-1931-mp100", + "name": "Tiger Fighter 1931 MP100", + "release_date": "2021-08-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180877" + ], + "created_at": "2026-07-10T10:10:46.771790", + "updated_at": "2026-07-10T10:10:46.771790", + "url": "/v1/games/tiger-fighter-1931-mp100" +} diff --git a/site/public/v1/games/tiger-fighter-1931-sunset-mp001/index.json b/site/public/v1/games/tiger-fighter-1931-sunset-mp001/index.json new file mode 100644 index 000000000000..1f25fcae7f8e --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-sunset-mp001/index.json @@ -0,0 +1,31 @@ +{ + "id": 155066, + "slug": "tiger-fighter-1931-sunset-mp001", + "name": "Tiger Fighter 1931 Sunset MP001", + "release_date": "2021-07-27", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180944" + ], + "created_at": "2026-07-10T10:10:46.772787", + "updated_at": "2026-07-10T10:10:46.772787", + "url": "/v1/games/tiger-fighter-1931-sunset-mp001" +} diff --git a/site/public/v1/games/tiger-fighter-1931-sunset-mp002/index.json b/site/public/v1/games/tiger-fighter-1931-sunset-mp002/index.json new file mode 100644 index 000000000000..dafad5e52bea --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-sunset-mp002/index.json @@ -0,0 +1,31 @@ +{ + "id": 155067, + "slug": "tiger-fighter-1931-sunset-mp002", + "name": "Tiger Fighter 1931 Sunset MP002", + "release_date": "2021-07-27", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180946" + ], + "created_at": "2026-07-10T10:10:46.772787", + "updated_at": "2026-07-10T10:10:46.772787", + "url": "/v1/games/tiger-fighter-1931-sunset-mp002" +} diff --git a/site/public/v1/games/tiger-fighter-1931-sunset-mp003/index.json b/site/public/v1/games/tiger-fighter-1931-sunset-mp003/index.json new file mode 100644 index 000000000000..0a27075c647c --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-sunset-mp003/index.json @@ -0,0 +1,31 @@ +{ + "id": 155068, + "slug": "tiger-fighter-1931-sunset-mp003", + "name": "Tiger Fighter 1931 Sunset MP003", + "release_date": "2021-07-27", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180949" + ], + "created_at": "2026-07-10T10:10:46.772787", + "updated_at": "2026-07-10T10:10:46.772787", + "url": "/v1/games/tiger-fighter-1931-sunset-mp003" +} diff --git a/site/public/v1/games/tiger-fighter-1931-sunset-mp004/index.json b/site/public/v1/games/tiger-fighter-1931-sunset-mp004/index.json new file mode 100644 index 000000000000..4fca963202df --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-sunset-mp004/index.json @@ -0,0 +1,31 @@ +{ + "id": 155069, + "slug": "tiger-fighter-1931-sunset-mp004", + "name": "Tiger Fighter 1931 Sunset MP004", + "release_date": "2021-07-27", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180951" + ], + "created_at": "2026-07-10T10:10:46.772787", + "updated_at": "2026-07-10T10:10:46.772787", + "url": "/v1/games/tiger-fighter-1931-sunset-mp004" +} diff --git a/site/public/v1/games/tiger-fighter-1931-sunset-mp005/index.json b/site/public/v1/games/tiger-fighter-1931-sunset-mp005/index.json new file mode 100644 index 000000000000..82614f287e7a --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-sunset-mp005/index.json @@ -0,0 +1,31 @@ +{ + "id": 155070, + "slug": "tiger-fighter-1931-sunset-mp005", + "name": "Tiger Fighter 1931 Sunset MP005", + "release_date": "2021-07-27", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180954" + ], + "created_at": "2026-07-10T10:10:46.772787", + "updated_at": "2026-07-10T10:10:46.772787", + "url": "/v1/games/tiger-fighter-1931-sunset-mp005" +} diff --git a/site/public/v1/games/tiger-fighter-1931-sunset-mp006/index.json b/site/public/v1/games/tiger-fighter-1931-sunset-mp006/index.json new file mode 100644 index 000000000000..a000ff24c4df --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-sunset-mp006/index.json @@ -0,0 +1,31 @@ +{ + "id": 155071, + "slug": "tiger-fighter-1931-sunset-mp006", + "name": "Tiger Fighter 1931 Sunset MP006", + "release_date": "2021-07-27", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180955" + ], + "created_at": "2026-07-10T10:10:46.773793", + "updated_at": "2026-07-10T10:10:46.773793", + "url": "/v1/games/tiger-fighter-1931-sunset-mp006" +} diff --git a/site/public/v1/games/tiger-fighter-1931-sunset-mp007/index.json b/site/public/v1/games/tiger-fighter-1931-sunset-mp007/index.json new file mode 100644 index 000000000000..eabc9418fb9c --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-sunset-mp007/index.json @@ -0,0 +1,31 @@ +{ + "id": 155072, + "slug": "tiger-fighter-1931-sunset-mp007", + "name": "Tiger Fighter 1931 Sunset MP007", + "release_date": "2021-07-27", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180957" + ], + "created_at": "2026-07-10T10:10:46.773793", + "updated_at": "2026-07-10T10:10:46.773793", + "url": "/v1/games/tiger-fighter-1931-sunset-mp007" +} diff --git a/site/public/v1/games/tiger-fighter-1931-sunset-mp008/index.json b/site/public/v1/games/tiger-fighter-1931-sunset-mp008/index.json new file mode 100644 index 000000000000..fcf4c44d5751 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-sunset-mp008/index.json @@ -0,0 +1,31 @@ +{ + "id": 155073, + "slug": "tiger-fighter-1931-sunset-mp008", + "name": "Tiger Fighter 1931 Sunset MP008", + "release_date": "2021-07-27", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180960" + ], + "created_at": "2026-07-10T10:10:46.773793", + "updated_at": "2026-07-10T10:10:46.773793", + "url": "/v1/games/tiger-fighter-1931-sunset-mp008" +} diff --git a/site/public/v1/games/tiger-fighter-1931-sunset-mp009/index.json b/site/public/v1/games/tiger-fighter-1931-sunset-mp009/index.json new file mode 100644 index 000000000000..9c34a3f40096 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-sunset-mp009/index.json @@ -0,0 +1,31 @@ +{ + "id": 155074, + "slug": "tiger-fighter-1931-sunset-mp009", + "name": "Tiger Fighter 1931 Sunset MP009", + "release_date": "2021-07-27", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180963" + ], + "created_at": "2026-07-10T10:10:46.774783", + "updated_at": "2026-07-10T10:10:46.774783", + "url": "/v1/games/tiger-fighter-1931-sunset-mp009" +} diff --git a/site/public/v1/games/tiger-fighter-1931-sunset-mp010/index.json b/site/public/v1/games/tiger-fighter-1931-sunset-mp010/index.json new file mode 100644 index 000000000000..b253672ca359 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-sunset-mp010/index.json @@ -0,0 +1,31 @@ +{ + "id": 155075, + "slug": "tiger-fighter-1931-sunset-mp010", + "name": "Tiger Fighter 1931 Sunset MP010", + "release_date": "2021-07-27", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180965" + ], + "created_at": "2026-07-10T10:10:46.774783", + "updated_at": "2026-07-10T10:10:46.774783", + "url": "/v1/games/tiger-fighter-1931-sunset-mp010" +} diff --git a/site/public/v1/games/tiger-fighter-1931-sunset-mp011/index.json b/site/public/v1/games/tiger-fighter-1931-sunset-mp011/index.json new file mode 100644 index 000000000000..41e37f2cddda --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-sunset-mp011/index.json @@ -0,0 +1,31 @@ +{ + "id": 155076, + "slug": "tiger-fighter-1931-sunset-mp011", + "name": "Tiger Fighter 1931 Sunset MP011", + "release_date": "2021-07-31", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180968" + ], + "created_at": "2026-07-10T10:10:46.774783", + "updated_at": "2026-07-10T10:10:46.774783", + "url": "/v1/games/tiger-fighter-1931-sunset-mp011" +} diff --git a/site/public/v1/games/tiger-fighter-1931-sunset-mp012/index.json b/site/public/v1/games/tiger-fighter-1931-sunset-mp012/index.json new file mode 100644 index 000000000000..599e43cac5ab --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-sunset-mp012/index.json @@ -0,0 +1,31 @@ +{ + "id": 155077, + "slug": "tiger-fighter-1931-sunset-mp012", + "name": "Tiger Fighter 1931 Sunset MP012", + "release_date": "2021-07-31", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180970" + ], + "created_at": "2026-07-10T10:10:46.774783", + "updated_at": "2026-07-10T10:10:46.774783", + "url": "/v1/games/tiger-fighter-1931-sunset-mp012" +} diff --git a/site/public/v1/games/tiger-fighter-1931-sunset-mp013/index.json b/site/public/v1/games/tiger-fighter-1931-sunset-mp013/index.json new file mode 100644 index 000000000000..9f5482b82f4e --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-sunset-mp013/index.json @@ -0,0 +1,31 @@ +{ + "id": 155078, + "slug": "tiger-fighter-1931-sunset-mp013", + "name": "Tiger Fighter 1931 Sunset MP013", + "release_date": "2021-07-31", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180971" + ], + "created_at": "2026-07-10T10:10:46.774783", + "updated_at": "2026-07-10T10:10:46.774783", + "url": "/v1/games/tiger-fighter-1931-sunset-mp013" +} diff --git a/site/public/v1/games/tiger-fighter-1931-sunset-mp014/index.json b/site/public/v1/games/tiger-fighter-1931-sunset-mp014/index.json new file mode 100644 index 000000000000..051276d735be --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-sunset-mp014/index.json @@ -0,0 +1,31 @@ +{ + "id": 155079, + "slug": "tiger-fighter-1931-sunset-mp014", + "name": "Tiger Fighter 1931 Sunset MP014", + "release_date": "2021-07-31", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180973" + ], + "created_at": "2026-07-10T10:10:46.774783", + "updated_at": "2026-07-10T10:10:46.774783", + "url": "/v1/games/tiger-fighter-1931-sunset-mp014" +} diff --git a/site/public/v1/games/tiger-fighter-1931-sunset-mp015/index.json b/site/public/v1/games/tiger-fighter-1931-sunset-mp015/index.json new file mode 100644 index 000000000000..202c3acaa967 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-sunset-mp015/index.json @@ -0,0 +1,31 @@ +{ + "id": 155080, + "slug": "tiger-fighter-1931-sunset-mp015", + "name": "Tiger Fighter 1931 Sunset MP015", + "release_date": "2021-07-31", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180976" + ], + "created_at": "2026-07-10T10:10:46.775832", + "updated_at": "2026-07-10T10:10:46.775832", + "url": "/v1/games/tiger-fighter-1931-sunset-mp015" +} diff --git a/site/public/v1/games/tiger-fighter-1931-sunset-mp016/index.json b/site/public/v1/games/tiger-fighter-1931-sunset-mp016/index.json new file mode 100644 index 000000000000..fc77c2c87ecf --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-sunset-mp016/index.json @@ -0,0 +1,31 @@ +{ + "id": 155081, + "slug": "tiger-fighter-1931-sunset-mp016", + "name": "Tiger Fighter 1931 Sunset MP016", + "release_date": "2021-07-31", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180978" + ], + "created_at": "2026-07-10T10:10:46.775832", + "updated_at": "2026-07-10T10:10:46.775832", + "url": "/v1/games/tiger-fighter-1931-sunset-mp016" +} diff --git a/site/public/v1/games/tiger-fighter-1931-sunset-mp017/index.json b/site/public/v1/games/tiger-fighter-1931-sunset-mp017/index.json new file mode 100644 index 000000000000..9783470d632b --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-sunset-mp017/index.json @@ -0,0 +1,31 @@ +{ + "id": 155082, + "slug": "tiger-fighter-1931-sunset-mp017", + "name": "Tiger Fighter 1931 Sunset MP017", + "release_date": "2021-07-31", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180984" + ], + "created_at": "2026-07-10T10:10:46.775832", + "updated_at": "2026-07-10T10:10:46.775832", + "url": "/v1/games/tiger-fighter-1931-sunset-mp017" +} diff --git a/site/public/v1/games/tiger-fighter-1931-sunset-mp018/index.json b/site/public/v1/games/tiger-fighter-1931-sunset-mp018/index.json new file mode 100644 index 000000000000..d120509cad27 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-sunset-mp018/index.json @@ -0,0 +1,31 @@ +{ + "id": 155083, + "slug": "tiger-fighter-1931-sunset-mp018", + "name": "Tiger Fighter 1931 Sunset MP018", + "release_date": "2021-07-31", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116180995" + ], + "created_at": "2026-07-10T10:10:46.775832", + "updated_at": "2026-07-10T10:10:46.775832", + "url": "/v1/games/tiger-fighter-1931-sunset-mp018" +} diff --git a/site/public/v1/games/tiger-fighter-1931-sunset-mp019/index.json b/site/public/v1/games/tiger-fighter-1931-sunset-mp019/index.json new file mode 100644 index 000000000000..f30784caaf92 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-sunset-mp019/index.json @@ -0,0 +1,31 @@ +{ + "id": 155084, + "slug": "tiger-fighter-1931-sunset-mp019", + "name": "Tiger Fighter 1931 Sunset MP019", + "release_date": "2021-07-31", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181005" + ], + "created_at": "2026-07-10T10:10:46.776801", + "updated_at": "2026-07-10T10:10:46.776801", + "url": "/v1/games/tiger-fighter-1931-sunset-mp019" +} diff --git a/site/public/v1/games/tiger-fighter-1931-sunset-mp020/index.json b/site/public/v1/games/tiger-fighter-1931-sunset-mp020/index.json new file mode 100644 index 000000000000..2ceb83b44e11 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-sunset-mp020/index.json @@ -0,0 +1,31 @@ +{ + "id": 155085, + "slug": "tiger-fighter-1931-sunset-mp020", + "name": "Tiger Fighter 1931 Sunset MP020", + "release_date": "2021-07-31", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181008" + ], + "created_at": "2026-07-10T10:10:46.776801", + "updated_at": "2026-07-10T10:10:46.776801", + "url": "/v1/games/tiger-fighter-1931-sunset-mp020" +} diff --git a/site/public/v1/games/tiger-fighter-1931-sunset-mp021/index.json b/site/public/v1/games/tiger-fighter-1931-sunset-mp021/index.json new file mode 100644 index 000000000000..32e55f487621 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-sunset-mp021/index.json @@ -0,0 +1,31 @@ +{ + "id": 155086, + "slug": "tiger-fighter-1931-sunset-mp021", + "name": "Tiger Fighter 1931 Sunset MP021", + "release_date": "2021-08-14", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181015" + ], + "created_at": "2026-07-10T10:10:46.776801", + "updated_at": "2026-07-10T10:10:46.776801", + "url": "/v1/games/tiger-fighter-1931-sunset-mp021" +} diff --git a/site/public/v1/games/tiger-fighter-1931-sunset-mp022/index.json b/site/public/v1/games/tiger-fighter-1931-sunset-mp022/index.json new file mode 100644 index 000000000000..447938ae1c5e --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-sunset-mp022/index.json @@ -0,0 +1,31 @@ +{ + "id": 155087, + "slug": "tiger-fighter-1931-sunset-mp022", + "name": "Tiger Fighter 1931 Sunset MP022", + "release_date": "2021-08-14", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181025" + ], + "created_at": "2026-07-10T10:10:46.776801", + "updated_at": "2026-07-10T10:10:46.776801", + "url": "/v1/games/tiger-fighter-1931-sunset-mp022" +} diff --git a/site/public/v1/games/tiger-fighter-1931-sunset-mp023/index.json b/site/public/v1/games/tiger-fighter-1931-sunset-mp023/index.json new file mode 100644 index 000000000000..cd63daef66ac --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-sunset-mp023/index.json @@ -0,0 +1,31 @@ +{ + "id": 155088, + "slug": "tiger-fighter-1931-sunset-mp023", + "name": "Tiger Fighter 1931 Sunset MP023", + "release_date": "2021-08-14", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181027" + ], + "created_at": "2026-07-10T10:10:46.777783", + "updated_at": "2026-07-10T10:10:46.777783", + "url": "/v1/games/tiger-fighter-1931-sunset-mp023" +} diff --git a/site/public/v1/games/tiger-fighter-1931-sunset-mp024/index.json b/site/public/v1/games/tiger-fighter-1931-sunset-mp024/index.json new file mode 100644 index 000000000000..d9f3105cfab4 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-sunset-mp024/index.json @@ -0,0 +1,31 @@ +{ + "id": 155089, + "slug": "tiger-fighter-1931-sunset-mp024", + "name": "Tiger Fighter 1931 Sunset MP024", + "release_date": "2021-08-14", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181029" + ], + "created_at": "2026-07-10T10:10:46.777783", + "updated_at": "2026-07-10T10:10:46.777783", + "url": "/v1/games/tiger-fighter-1931-sunset-mp024" +} diff --git a/site/public/v1/games/tiger-fighter-1931-sunset-mp025/index.json b/site/public/v1/games/tiger-fighter-1931-sunset-mp025/index.json new file mode 100644 index 000000000000..79b51d47f0d5 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-sunset-mp025/index.json @@ -0,0 +1,31 @@ +{ + "id": 155090, + "slug": "tiger-fighter-1931-sunset-mp025", + "name": "Tiger Fighter 1931 Sunset MP025", + "release_date": "2021-08-14", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181030" + ], + "created_at": "2026-07-10T10:10:46.777783", + "updated_at": "2026-07-10T10:10:46.777783", + "url": "/v1/games/tiger-fighter-1931-sunset-mp025" +} diff --git a/site/public/v1/games/tiger-fighter-1931-sunset-mp026/index.json b/site/public/v1/games/tiger-fighter-1931-sunset-mp026/index.json new file mode 100644 index 000000000000..0223b47ac445 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-sunset-mp026/index.json @@ -0,0 +1,31 @@ +{ + "id": 155091, + "slug": "tiger-fighter-1931-sunset-mp026", + "name": "Tiger Fighter 1931 Sunset MP026", + "release_date": "2021-08-14", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181031" + ], + "created_at": "2026-07-10T10:10:46.778364", + "updated_at": "2026-07-10T10:10:46.778364", + "url": "/v1/games/tiger-fighter-1931-sunset-mp026" +} diff --git a/site/public/v1/games/tiger-fighter-1931-sunset-mp027/index.json b/site/public/v1/games/tiger-fighter-1931-sunset-mp027/index.json new file mode 100644 index 000000000000..ce1e96475aba --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-sunset-mp027/index.json @@ -0,0 +1,31 @@ +{ + "id": 155092, + "slug": "tiger-fighter-1931-sunset-mp027", + "name": "Tiger Fighter 1931 Sunset MP027", + "release_date": "2021-08-14", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181032" + ], + "created_at": "2026-07-10T10:10:46.778364", + "updated_at": "2026-07-10T10:10:46.778364", + "url": "/v1/games/tiger-fighter-1931-sunset-mp027" +} diff --git a/site/public/v1/games/tiger-fighter-1931-sunset-mp028/index.json b/site/public/v1/games/tiger-fighter-1931-sunset-mp028/index.json new file mode 100644 index 000000000000..1725ec66f492 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-sunset-mp028/index.json @@ -0,0 +1,31 @@ +{ + "id": 155093, + "slug": "tiger-fighter-1931-sunset-mp028", + "name": "Tiger Fighter 1931 Sunset MP028", + "release_date": "2021-08-14", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181035" + ], + "created_at": "2026-07-10T10:10:46.778364", + "updated_at": "2026-07-10T10:10:46.778364", + "url": "/v1/games/tiger-fighter-1931-sunset-mp028" +} diff --git a/site/public/v1/games/tiger-fighter-1931-sunset-mp029/index.json b/site/public/v1/games/tiger-fighter-1931-sunset-mp029/index.json new file mode 100644 index 000000000000..549ca1a96551 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-sunset-mp029/index.json @@ -0,0 +1,31 @@ +{ + "id": 155094, + "slug": "tiger-fighter-1931-sunset-mp029", + "name": "Tiger Fighter 1931 Sunset MP029", + "release_date": "2021-08-14", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181038" + ], + "created_at": "2026-07-10T10:10:46.778364", + "updated_at": "2026-07-10T10:10:46.778364", + "url": "/v1/games/tiger-fighter-1931-sunset-mp029" +} diff --git a/site/public/v1/games/tiger-fighter-1931-sunset-mp030/index.json b/site/public/v1/games/tiger-fighter-1931-sunset-mp030/index.json new file mode 100644 index 000000000000..a2c02449f092 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-sunset-mp030/index.json @@ -0,0 +1,31 @@ +{ + "id": 155095, + "slug": "tiger-fighter-1931-sunset-mp030", + "name": "Tiger Fighter 1931 Sunset MP030", + "release_date": "2021-08-14", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181040" + ], + "created_at": "2026-07-10T10:10:46.778364", + "updated_at": "2026-07-10T10:10:46.778364", + "url": "/v1/games/tiger-fighter-1931-sunset-mp030" +} diff --git a/site/public/v1/games/tiger-fighter-1931-sunset-mp031/index.json b/site/public/v1/games/tiger-fighter-1931-sunset-mp031/index.json new file mode 100644 index 000000000000..deee399edc65 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-sunset-mp031/index.json @@ -0,0 +1,31 @@ +{ + "id": 155096, + "slug": "tiger-fighter-1931-sunset-mp031", + "name": "Tiger Fighter 1931 Sunset MP031", + "release_date": "2021-08-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181041" + ], + "created_at": "2026-07-10T10:10:46.779434", + "updated_at": "2026-07-10T10:10:46.779434", + "url": "/v1/games/tiger-fighter-1931-sunset-mp031" +} diff --git a/site/public/v1/games/tiger-fighter-1931-sunset-mp032/index.json b/site/public/v1/games/tiger-fighter-1931-sunset-mp032/index.json new file mode 100644 index 000000000000..ac104cbd3e4e --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-sunset-mp032/index.json @@ -0,0 +1,31 @@ +{ + "id": 155097, + "slug": "tiger-fighter-1931-sunset-mp032", + "name": "Tiger Fighter 1931 Sunset MP032", + "release_date": "2021-08-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181044" + ], + "created_at": "2026-07-10T10:10:46.779434", + "updated_at": "2026-07-10T10:10:46.779434", + "url": "/v1/games/tiger-fighter-1931-sunset-mp032" +} diff --git a/site/public/v1/games/tiger-fighter-1931-sunset-mp033/index.json b/site/public/v1/games/tiger-fighter-1931-sunset-mp033/index.json new file mode 100644 index 000000000000..4d1d5069e427 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-sunset-mp033/index.json @@ -0,0 +1,31 @@ +{ + "id": 155098, + "slug": "tiger-fighter-1931-sunset-mp033", + "name": "Tiger Fighter 1931 Sunset MP033", + "release_date": "2021-08-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181045" + ], + "created_at": "2026-07-10T10:10:46.779434", + "updated_at": "2026-07-10T10:10:46.779434", + "url": "/v1/games/tiger-fighter-1931-sunset-mp033" +} diff --git a/site/public/v1/games/tiger-fighter-1931-sunset-mp034/index.json b/site/public/v1/games/tiger-fighter-1931-sunset-mp034/index.json new file mode 100644 index 000000000000..42ccf07e3b30 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-sunset-mp034/index.json @@ -0,0 +1,31 @@ +{ + "id": 155099, + "slug": "tiger-fighter-1931-sunset-mp034", + "name": "Tiger Fighter 1931 Sunset MP034", + "release_date": "2021-08-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181048" + ], + "created_at": "2026-07-10T10:10:46.779434", + "updated_at": "2026-07-10T10:10:46.779434", + "url": "/v1/games/tiger-fighter-1931-sunset-mp034" +} diff --git a/site/public/v1/games/tiger-fighter-1931-sunset-mp035/index.json b/site/public/v1/games/tiger-fighter-1931-sunset-mp035/index.json new file mode 100644 index 000000000000..efd6c8dac14b --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-sunset-mp035/index.json @@ -0,0 +1,31 @@ +{ + "id": 155100, + "slug": "tiger-fighter-1931-sunset-mp035", + "name": "Tiger Fighter 1931 Sunset MP035", + "release_date": "2021-08-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181049" + ], + "created_at": "2026-07-10T10:10:46.780447", + "updated_at": "2026-07-10T10:10:46.780447", + "url": "/v1/games/tiger-fighter-1931-sunset-mp035" +} diff --git a/site/public/v1/games/tiger-fighter-1931-sunset-mp036/index.json b/site/public/v1/games/tiger-fighter-1931-sunset-mp036/index.json new file mode 100644 index 000000000000..b6a75e91af31 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-sunset-mp036/index.json @@ -0,0 +1,31 @@ +{ + "id": 155101, + "slug": "tiger-fighter-1931-sunset-mp036", + "name": "Tiger Fighter 1931 Sunset MP036", + "release_date": "2021-08-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181050" + ], + "created_at": "2026-07-10T10:10:46.780447", + "updated_at": "2026-07-10T10:10:46.780447", + "url": "/v1/games/tiger-fighter-1931-sunset-mp036" +} diff --git a/site/public/v1/games/tiger-fighter-1931-sunset-mp037/index.json b/site/public/v1/games/tiger-fighter-1931-sunset-mp037/index.json new file mode 100644 index 000000000000..0cc7a03a6346 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-sunset-mp037/index.json @@ -0,0 +1,31 @@ +{ + "id": 155102, + "slug": "tiger-fighter-1931-sunset-mp037", + "name": "Tiger Fighter 1931 Sunset MP037", + "release_date": "2021-08-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181052" + ], + "created_at": "2026-07-10T10:10:46.780447", + "updated_at": "2026-07-10T10:10:46.780447", + "url": "/v1/games/tiger-fighter-1931-sunset-mp037" +} diff --git a/site/public/v1/games/tiger-fighter-1931-sunset-mp038/index.json b/site/public/v1/games/tiger-fighter-1931-sunset-mp038/index.json new file mode 100644 index 000000000000..57a1b1c3b7cd --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-sunset-mp038/index.json @@ -0,0 +1,31 @@ +{ + "id": 155103, + "slug": "tiger-fighter-1931-sunset-mp038", + "name": "Tiger Fighter 1931 Sunset MP038", + "release_date": "2021-08-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181053" + ], + "created_at": "2026-07-10T10:10:46.780447", + "updated_at": "2026-07-10T10:10:46.780447", + "url": "/v1/games/tiger-fighter-1931-sunset-mp038" +} diff --git a/site/public/v1/games/tiger-fighter-1931-sunset-mp039/index.json b/site/public/v1/games/tiger-fighter-1931-sunset-mp039/index.json new file mode 100644 index 000000000000..2b10ab5af643 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-sunset-mp039/index.json @@ -0,0 +1,31 @@ +{ + "id": 155104, + "slug": "tiger-fighter-1931-sunset-mp039", + "name": "Tiger Fighter 1931 Sunset MP039", + "release_date": "2021-08-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181056" + ], + "created_at": "2026-07-10T10:10:46.780447", + "updated_at": "2026-07-10T10:10:46.780447", + "url": "/v1/games/tiger-fighter-1931-sunset-mp039" +} diff --git a/site/public/v1/games/tiger-fighter-1931-sunset-mp040/index.json b/site/public/v1/games/tiger-fighter-1931-sunset-mp040/index.json new file mode 100644 index 000000000000..cdc09ec75ab5 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-sunset-mp040/index.json @@ -0,0 +1,31 @@ +{ + "id": 155105, + "slug": "tiger-fighter-1931-sunset-mp040", + "name": "Tiger Fighter 1931 Sunset MP040", + "release_date": "2021-08-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181057" + ], + "created_at": "2026-07-10T10:10:46.781425", + "updated_at": "2026-07-10T10:10:46.781425", + "url": "/v1/games/tiger-fighter-1931-sunset-mp040" +} diff --git a/site/public/v1/games/tiger-fighter-1931-sunset-mp041/index.json b/site/public/v1/games/tiger-fighter-1931-sunset-mp041/index.json new file mode 100644 index 000000000000..4313ebf3a36a --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-sunset-mp041/index.json @@ -0,0 +1,31 @@ +{ + "id": 155106, + "slug": "tiger-fighter-1931-sunset-mp041", + "name": "Tiger Fighter 1931 Sunset MP041", + "release_date": "2021-08-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181060" + ], + "created_at": "2026-07-10T10:10:46.781425", + "updated_at": "2026-07-10T10:10:46.781425", + "url": "/v1/games/tiger-fighter-1931-sunset-mp041" +} diff --git a/site/public/v1/games/tiger-fighter-1931-sunset-mp042/index.json b/site/public/v1/games/tiger-fighter-1931-sunset-mp042/index.json new file mode 100644 index 000000000000..05a9e864eab3 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-sunset-mp042/index.json @@ -0,0 +1,31 @@ +{ + "id": 155107, + "slug": "tiger-fighter-1931-sunset-mp042", + "name": "Tiger Fighter 1931 Sunset MP042", + "release_date": "2021-08-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181061" + ], + "created_at": "2026-07-10T10:10:46.781425", + "updated_at": "2026-07-10T10:10:46.781425", + "url": "/v1/games/tiger-fighter-1931-sunset-mp042" +} diff --git a/site/public/v1/games/tiger-fighter-1931-sunset-mp043/index.json b/site/public/v1/games/tiger-fighter-1931-sunset-mp043/index.json new file mode 100644 index 000000000000..d92130f270f1 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-sunset-mp043/index.json @@ -0,0 +1,31 @@ +{ + "id": 155108, + "slug": "tiger-fighter-1931-sunset-mp043", + "name": "Tiger Fighter 1931 Sunset MP043", + "release_date": "2021-08-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181062" + ], + "created_at": "2026-07-10T10:10:46.782423", + "updated_at": "2026-07-10T10:10:46.782423", + "url": "/v1/games/tiger-fighter-1931-sunset-mp043" +} diff --git a/site/public/v1/games/tiger-fighter-1931-sunset-mp044/index.json b/site/public/v1/games/tiger-fighter-1931-sunset-mp044/index.json new file mode 100644 index 000000000000..79a905fc73a3 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-sunset-mp044/index.json @@ -0,0 +1,31 @@ +{ + "id": 155109, + "slug": "tiger-fighter-1931-sunset-mp044", + "name": "Tiger Fighter 1931 Sunset MP044", + "release_date": "2021-08-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181063" + ], + "created_at": "2026-07-10T10:10:46.782423", + "updated_at": "2026-07-10T10:10:46.782423", + "url": "/v1/games/tiger-fighter-1931-sunset-mp044" +} diff --git a/site/public/v1/games/tiger-fighter-1931-sunset-mp045/index.json b/site/public/v1/games/tiger-fighter-1931-sunset-mp045/index.json new file mode 100644 index 000000000000..96c59d0d1d8a --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-sunset-mp045/index.json @@ -0,0 +1,31 @@ +{ + "id": 155110, + "slug": "tiger-fighter-1931-sunset-mp045", + "name": "Tiger Fighter 1931 Sunset MP045", + "release_date": "2021-08-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181065" + ], + "created_at": "2026-07-10T10:10:46.782423", + "updated_at": "2026-07-10T10:10:46.782423", + "url": "/v1/games/tiger-fighter-1931-sunset-mp045" +} diff --git a/site/public/v1/games/tiger-fighter-1931-sunset-mp046/index.json b/site/public/v1/games/tiger-fighter-1931-sunset-mp046/index.json new file mode 100644 index 000000000000..d0bbd2ca119c --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-sunset-mp046/index.json @@ -0,0 +1,31 @@ +{ + "id": 155111, + "slug": "tiger-fighter-1931-sunset-mp046", + "name": "Tiger Fighter 1931 Sunset MP046", + "release_date": "2021-09-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181068" + ], + "created_at": "2026-07-10T10:10:46.782423", + "updated_at": "2026-07-10T10:10:46.782423", + "url": "/v1/games/tiger-fighter-1931-sunset-mp046" +} diff --git a/site/public/v1/games/tiger-fighter-1931-sunset-mp047/index.json b/site/public/v1/games/tiger-fighter-1931-sunset-mp047/index.json new file mode 100644 index 000000000000..9974641adda3 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-sunset-mp047/index.json @@ -0,0 +1,31 @@ +{ + "id": 155112, + "slug": "tiger-fighter-1931-sunset-mp047", + "name": "Tiger Fighter 1931 Sunset MP047", + "release_date": "2021-09-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181071" + ], + "created_at": "2026-07-10T10:10:46.782423", + "updated_at": "2026-07-10T10:10:46.782423", + "url": "/v1/games/tiger-fighter-1931-sunset-mp047" +} diff --git a/site/public/v1/games/tiger-fighter-1931-sunset-mp048/index.json b/site/public/v1/games/tiger-fighter-1931-sunset-mp048/index.json new file mode 100644 index 000000000000..0a224d155c04 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-sunset-mp048/index.json @@ -0,0 +1,31 @@ +{ + "id": 155113, + "slug": "tiger-fighter-1931-sunset-mp048", + "name": "Tiger Fighter 1931 Sunset MP048", + "release_date": "2021-09-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181073" + ], + "created_at": "2026-07-10T10:10:46.783453", + "updated_at": "2026-07-10T10:10:46.783453", + "url": "/v1/games/tiger-fighter-1931-sunset-mp048" +} diff --git a/site/public/v1/games/tiger-fighter-1931-sunset-mp049/index.json b/site/public/v1/games/tiger-fighter-1931-sunset-mp049/index.json new file mode 100644 index 000000000000..4bd8430e874c --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-sunset-mp049/index.json @@ -0,0 +1,31 @@ +{ + "id": 155114, + "slug": "tiger-fighter-1931-sunset-mp049", + "name": "Tiger Fighter 1931 Sunset MP049", + "release_date": "2021-09-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181075" + ], + "created_at": "2026-07-10T10:10:46.783453", + "updated_at": "2026-07-10T10:10:46.783453", + "url": "/v1/games/tiger-fighter-1931-sunset-mp049" +} diff --git a/site/public/v1/games/tiger-fighter-1931-sunset-mp050/index.json b/site/public/v1/games/tiger-fighter-1931-sunset-mp050/index.json new file mode 100644 index 000000000000..186c2c68d471 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-sunset-mp050/index.json @@ -0,0 +1,31 @@ +{ + "id": 155115, + "slug": "tiger-fighter-1931-sunset-mp050", + "name": "Tiger Fighter 1931 Sunset MP050", + "release_date": "2021-09-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181078" + ], + "created_at": "2026-07-10T10:10:46.783453", + "updated_at": "2026-07-10T10:10:46.783453", + "url": "/v1/games/tiger-fighter-1931-sunset-mp050" +} diff --git a/site/public/v1/games/tiger-fighter-1931-sunset-mp051/index.json b/site/public/v1/games/tiger-fighter-1931-sunset-mp051/index.json new file mode 100644 index 000000000000..c41d90973d72 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-sunset-mp051/index.json @@ -0,0 +1,31 @@ +{ + "id": 155116, + "slug": "tiger-fighter-1931-sunset-mp051", + "name": "Tiger Fighter 1931 Sunset MP051", + "release_date": "2021-09-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181080" + ], + "created_at": "2026-07-10T10:10:46.783453", + "updated_at": "2026-07-10T10:10:46.783453", + "url": "/v1/games/tiger-fighter-1931-sunset-mp051" +} diff --git a/site/public/v1/games/tiger-fighter-1931-sunset-mp052/index.json b/site/public/v1/games/tiger-fighter-1931-sunset-mp052/index.json new file mode 100644 index 000000000000..f6ece9e9c41d --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-sunset-mp052/index.json @@ -0,0 +1,31 @@ +{ + "id": 155117, + "slug": "tiger-fighter-1931-sunset-mp052", + "name": "Tiger Fighter 1931 Sunset MP052", + "release_date": "2021-09-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181082" + ], + "created_at": "2026-07-10T10:10:46.783453", + "updated_at": "2026-07-10T10:10:46.783453", + "url": "/v1/games/tiger-fighter-1931-sunset-mp052" +} diff --git a/site/public/v1/games/tiger-fighter-1931-sunset-mp053/index.json b/site/public/v1/games/tiger-fighter-1931-sunset-mp053/index.json new file mode 100644 index 000000000000..2eb0f8e24756 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-sunset-mp053/index.json @@ -0,0 +1,31 @@ +{ + "id": 155118, + "slug": "tiger-fighter-1931-sunset-mp053", + "name": "Tiger Fighter 1931 Sunset MP053", + "release_date": "2021-09-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181083" + ], + "created_at": "2026-07-10T10:10:46.784379", + "updated_at": "2026-07-10T10:10:46.784379", + "url": "/v1/games/tiger-fighter-1931-sunset-mp053" +} diff --git a/site/public/v1/games/tiger-fighter-1931-sunset-mp054/index.json b/site/public/v1/games/tiger-fighter-1931-sunset-mp054/index.json new file mode 100644 index 000000000000..6375d9887fbb --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-sunset-mp054/index.json @@ -0,0 +1,31 @@ +{ + "id": 155119, + "slug": "tiger-fighter-1931-sunset-mp054", + "name": "Tiger Fighter 1931 Sunset MP054", + "release_date": "2021-09-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181085" + ], + "created_at": "2026-07-10T10:10:46.784379", + "updated_at": "2026-07-10T10:10:46.784379", + "url": "/v1/games/tiger-fighter-1931-sunset-mp054" +} diff --git a/site/public/v1/games/tiger-fighter-1931-sunset-mp055/index.json b/site/public/v1/games/tiger-fighter-1931-sunset-mp055/index.json new file mode 100644 index 000000000000..71b70c0c84cf --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-sunset-mp055/index.json @@ -0,0 +1,31 @@ +{ + "id": 155120, + "slug": "tiger-fighter-1931-sunset-mp055", + "name": "Tiger Fighter 1931 Sunset MP055", + "release_date": "2021-09-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181086" + ], + "created_at": "2026-07-10T10:10:46.784379", + "updated_at": "2026-07-10T10:10:46.784379", + "url": "/v1/games/tiger-fighter-1931-sunset-mp055" +} diff --git a/site/public/v1/games/tiger-fighter-1931-sunset-mp056/index.json b/site/public/v1/games/tiger-fighter-1931-sunset-mp056/index.json new file mode 100644 index 000000000000..e5b16173ff49 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-sunset-mp056/index.json @@ -0,0 +1,31 @@ +{ + "id": 155121, + "slug": "tiger-fighter-1931-sunset-mp056", + "name": "Tiger Fighter 1931 Sunset MP056", + "release_date": "2021-09-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181088" + ], + "created_at": "2026-07-10T10:10:46.785377", + "updated_at": "2026-07-10T10:10:46.785377", + "url": "/v1/games/tiger-fighter-1931-sunset-mp056" +} diff --git a/site/public/v1/games/tiger-fighter-1931-sunset-mp057/index.json b/site/public/v1/games/tiger-fighter-1931-sunset-mp057/index.json new file mode 100644 index 000000000000..26811ee4563a --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-sunset-mp057/index.json @@ -0,0 +1,31 @@ +{ + "id": 155122, + "slug": "tiger-fighter-1931-sunset-mp057", + "name": "Tiger Fighter 1931 Sunset MP057", + "release_date": "2021-09-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181089" + ], + "created_at": "2026-07-10T10:10:46.785377", + "updated_at": "2026-07-10T10:10:46.785377", + "url": "/v1/games/tiger-fighter-1931-sunset-mp057" +} diff --git a/site/public/v1/games/tiger-fighter-1931-sunset-mp058/index.json b/site/public/v1/games/tiger-fighter-1931-sunset-mp058/index.json new file mode 100644 index 000000000000..02cba4b8e403 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-sunset-mp058/index.json @@ -0,0 +1,31 @@ +{ + "id": 155123, + "slug": "tiger-fighter-1931-sunset-mp058", + "name": "Tiger Fighter 1931 Sunset MP058", + "release_date": "2021-09-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181091" + ], + "created_at": "2026-07-10T10:10:46.785377", + "updated_at": "2026-07-10T10:10:46.785377", + "url": "/v1/games/tiger-fighter-1931-sunset-mp058" +} diff --git a/site/public/v1/games/tiger-fighter-1931-sunset-mp059/index.json b/site/public/v1/games/tiger-fighter-1931-sunset-mp059/index.json new file mode 100644 index 000000000000..b8ad7ed27522 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-sunset-mp059/index.json @@ -0,0 +1,31 @@ +{ + "id": 155124, + "slug": "tiger-fighter-1931-sunset-mp059", + "name": "Tiger Fighter 1931 Sunset MP059", + "release_date": "2021-09-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181093" + ], + "created_at": "2026-07-10T10:10:46.785377", + "updated_at": "2026-07-10T10:10:46.785377", + "url": "/v1/games/tiger-fighter-1931-sunset-mp059" +} diff --git a/site/public/v1/games/tiger-fighter-1931-sunset-mp060/index.json b/site/public/v1/games/tiger-fighter-1931-sunset-mp060/index.json new file mode 100644 index 000000000000..2d1d7972ba05 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-sunset-mp060/index.json @@ -0,0 +1,31 @@ +{ + "id": 155125, + "slug": "tiger-fighter-1931-sunset-mp060", + "name": "Tiger Fighter 1931 Sunset MP060", + "release_date": "2021-09-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181096" + ], + "created_at": "2026-07-10T10:10:46.785377", + "updated_at": "2026-07-10T10:10:46.785377", + "url": "/v1/games/tiger-fighter-1931-sunset-mp060" +} diff --git a/site/public/v1/games/tiger-fighter-1931-sunset-mp061/index.json b/site/public/v1/games/tiger-fighter-1931-sunset-mp061/index.json new file mode 100644 index 000000000000..0c0d590d4954 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-sunset-mp061/index.json @@ -0,0 +1,31 @@ +{ + "id": 155126, + "slug": "tiger-fighter-1931-sunset-mp061", + "name": "Tiger Fighter 1931 Sunset MP061", + "release_date": "2021-09-09", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181098" + ], + "created_at": "2026-07-10T10:10:46.786372", + "updated_at": "2026-07-10T10:10:46.786372", + "url": "/v1/games/tiger-fighter-1931-sunset-mp061" +} diff --git a/site/public/v1/games/tiger-fighter-1931-sunset-mp062/index.json b/site/public/v1/games/tiger-fighter-1931-sunset-mp062/index.json new file mode 100644 index 000000000000..2e89e2be8729 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-sunset-mp062/index.json @@ -0,0 +1,31 @@ +{ + "id": 155127, + "slug": "tiger-fighter-1931-sunset-mp062", + "name": "Tiger Fighter 1931 Sunset MP062", + "release_date": "2021-09-09", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181100" + ], + "created_at": "2026-07-10T10:10:46.786372", + "updated_at": "2026-07-10T10:10:46.786372", + "url": "/v1/games/tiger-fighter-1931-sunset-mp062" +} diff --git a/site/public/v1/games/tiger-fighter-1931-sunset-mp063/index.json b/site/public/v1/games/tiger-fighter-1931-sunset-mp063/index.json new file mode 100644 index 000000000000..26c9a8371ea4 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-sunset-mp063/index.json @@ -0,0 +1,31 @@ +{ + "id": 155128, + "slug": "tiger-fighter-1931-sunset-mp063", + "name": "Tiger Fighter 1931 Sunset MP063", + "release_date": "2021-09-09", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181101" + ], + "created_at": "2026-07-10T10:10:46.786372", + "updated_at": "2026-07-10T10:10:46.786372", + "url": "/v1/games/tiger-fighter-1931-sunset-mp063" +} diff --git a/site/public/v1/games/tiger-fighter-1931-sunset-mp064/index.json b/site/public/v1/games/tiger-fighter-1931-sunset-mp064/index.json new file mode 100644 index 000000000000..8fb37aabf8a8 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-sunset-mp064/index.json @@ -0,0 +1,31 @@ +{ + "id": 155129, + "slug": "tiger-fighter-1931-sunset-mp064", + "name": "Tiger Fighter 1931 Sunset MP064", + "release_date": "2021-09-09", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181103" + ], + "created_at": "2026-07-10T10:10:46.786372", + "updated_at": "2026-07-10T10:10:46.786372", + "url": "/v1/games/tiger-fighter-1931-sunset-mp064" +} diff --git a/site/public/v1/games/tiger-fighter-1931-sunset-mp065/index.json b/site/public/v1/games/tiger-fighter-1931-sunset-mp065/index.json new file mode 100644 index 000000000000..b150f29cd40e --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-sunset-mp065/index.json @@ -0,0 +1,31 @@ +{ + "id": 155130, + "slug": "tiger-fighter-1931-sunset-mp065", + "name": "Tiger Fighter 1931 Sunset MP065", + "release_date": "2021-09-09", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181105" + ], + "created_at": "2026-07-10T10:10:46.787376", + "updated_at": "2026-07-10T10:10:46.787376", + "url": "/v1/games/tiger-fighter-1931-sunset-mp065" +} diff --git a/site/public/v1/games/tiger-fighter-1931-sunset-mp066/index.json b/site/public/v1/games/tiger-fighter-1931-sunset-mp066/index.json new file mode 100644 index 000000000000..fb1997c217f5 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-sunset-mp066/index.json @@ -0,0 +1,31 @@ +{ + "id": 155131, + "slug": "tiger-fighter-1931-sunset-mp066", + "name": "Tiger Fighter 1931 Sunset MP066", + "release_date": "2021-09-09", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181107" + ], + "created_at": "2026-07-10T10:10:46.787376", + "updated_at": "2026-07-10T10:10:46.787376", + "url": "/v1/games/tiger-fighter-1931-sunset-mp066" +} diff --git a/site/public/v1/games/tiger-fighter-1931-sunset-mp067/index.json b/site/public/v1/games/tiger-fighter-1931-sunset-mp067/index.json new file mode 100644 index 000000000000..bd975dd01e80 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-sunset-mp067/index.json @@ -0,0 +1,31 @@ +{ + "id": 155132, + "slug": "tiger-fighter-1931-sunset-mp067", + "name": "Tiger Fighter 1931 Sunset MP067", + "release_date": "2021-09-09", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181108" + ], + "created_at": "2026-07-10T10:10:46.787376", + "updated_at": "2026-07-10T10:10:46.787376", + "url": "/v1/games/tiger-fighter-1931-sunset-mp067" +} diff --git a/site/public/v1/games/tiger-fighter-1931-sunset-mp068/index.json b/site/public/v1/games/tiger-fighter-1931-sunset-mp068/index.json new file mode 100644 index 000000000000..ca83207a958f --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-sunset-mp068/index.json @@ -0,0 +1,31 @@ +{ + "id": 155133, + "slug": "tiger-fighter-1931-sunset-mp068", + "name": "Tiger Fighter 1931 Sunset MP068", + "release_date": "2021-09-09", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181110" + ], + "created_at": "2026-07-10T10:10:46.787376", + "updated_at": "2026-07-10T10:10:46.787376", + "url": "/v1/games/tiger-fighter-1931-sunset-mp068" +} diff --git a/site/public/v1/games/tiger-fighter-1931-sunset-mp069/index.json b/site/public/v1/games/tiger-fighter-1931-sunset-mp069/index.json new file mode 100644 index 000000000000..525e704eb5ae --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-sunset-mp069/index.json @@ -0,0 +1,31 @@ +{ + "id": 155134, + "slug": "tiger-fighter-1931-sunset-mp069", + "name": "Tiger Fighter 1931 Sunset MP069", + "release_date": "2021-09-09", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181113" + ], + "created_at": "2026-07-10T10:10:46.787376", + "updated_at": "2026-07-10T10:10:46.787376", + "url": "/v1/games/tiger-fighter-1931-sunset-mp069" +} diff --git a/site/public/v1/games/tiger-fighter-1931-sunset-mp070/index.json b/site/public/v1/games/tiger-fighter-1931-sunset-mp070/index.json new file mode 100644 index 000000000000..fb497fff6fe1 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-sunset-mp070/index.json @@ -0,0 +1,31 @@ +{ + "id": 155135, + "slug": "tiger-fighter-1931-sunset-mp070", + "name": "Tiger Fighter 1931 Sunset MP070", + "release_date": "2021-09-09", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181116" + ], + "created_at": "2026-07-10T10:10:46.788376", + "updated_at": "2026-07-10T10:10:46.788376", + "url": "/v1/games/tiger-fighter-1931-sunset-mp070" +} diff --git a/site/public/v1/games/tiger-fighter-1931-sunset-mp071/index.json b/site/public/v1/games/tiger-fighter-1931-sunset-mp071/index.json new file mode 100644 index 000000000000..a37c5dfd839b --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-sunset-mp071/index.json @@ -0,0 +1,31 @@ +{ + "id": 155136, + "slug": "tiger-fighter-1931-sunset-mp071", + "name": "Tiger Fighter 1931 Sunset MP071", + "release_date": "2021-09-11", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181117" + ], + "created_at": "2026-07-10T10:10:46.788376", + "updated_at": "2026-07-10T10:10:46.788376", + "url": "/v1/games/tiger-fighter-1931-sunset-mp071" +} diff --git a/site/public/v1/games/tiger-fighter-1931-sunset-mp072/index.json b/site/public/v1/games/tiger-fighter-1931-sunset-mp072/index.json new file mode 100644 index 000000000000..197c2c772475 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-sunset-mp072/index.json @@ -0,0 +1,31 @@ +{ + "id": 155137, + "slug": "tiger-fighter-1931-sunset-mp072", + "name": "Tiger Fighter 1931 Sunset MP072", + "release_date": "2021-09-11", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181118" + ], + "created_at": "2026-07-10T10:10:46.788376", + "updated_at": "2026-07-10T10:10:46.788376", + "url": "/v1/games/tiger-fighter-1931-sunset-mp072" +} diff --git a/site/public/v1/games/tiger-fighter-1931-sunset-mp073/index.json b/site/public/v1/games/tiger-fighter-1931-sunset-mp073/index.json new file mode 100644 index 000000000000..d76e33174dc7 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-sunset-mp073/index.json @@ -0,0 +1,31 @@ +{ + "id": 155138, + "slug": "tiger-fighter-1931-sunset-mp073", + "name": "Tiger Fighter 1931 Sunset MP073", + "release_date": "2021-09-11", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181123" + ], + "created_at": "2026-07-10T10:10:46.788376", + "updated_at": "2026-07-10T10:10:46.788376", + "url": "/v1/games/tiger-fighter-1931-sunset-mp073" +} diff --git a/site/public/v1/games/tiger-fighter-1931-sunset-mp074/index.json b/site/public/v1/games/tiger-fighter-1931-sunset-mp074/index.json new file mode 100644 index 000000000000..598d7d5ff556 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-sunset-mp074/index.json @@ -0,0 +1,31 @@ +{ + "id": 155139, + "slug": "tiger-fighter-1931-sunset-mp074", + "name": "Tiger Fighter 1931 Sunset MP074", + "release_date": "2021-09-11", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181125" + ], + "created_at": "2026-07-10T10:10:46.788376", + "updated_at": "2026-07-10T10:10:46.788376", + "url": "/v1/games/tiger-fighter-1931-sunset-mp074" +} diff --git a/site/public/v1/games/tiger-fighter-1931-sunset-mp075/index.json b/site/public/v1/games/tiger-fighter-1931-sunset-mp075/index.json new file mode 100644 index 000000000000..d68fc5594748 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-sunset-mp075/index.json @@ -0,0 +1,31 @@ +{ + "id": 155140, + "slug": "tiger-fighter-1931-sunset-mp075", + "name": "Tiger Fighter 1931 Sunset MP075", + "release_date": "2021-09-11", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181127" + ], + "created_at": "2026-07-10T10:10:46.789449", + "updated_at": "2026-07-10T10:10:46.789449", + "url": "/v1/games/tiger-fighter-1931-sunset-mp075" +} diff --git a/site/public/v1/games/tiger-fighter-1931-sunset-mp076/index.json b/site/public/v1/games/tiger-fighter-1931-sunset-mp076/index.json new file mode 100644 index 000000000000..9a4ea2daae56 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-sunset-mp076/index.json @@ -0,0 +1,31 @@ +{ + "id": 155141, + "slug": "tiger-fighter-1931-sunset-mp076", + "name": "Tiger Fighter 1931 Sunset MP076", + "release_date": "2021-09-11", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181130" + ], + "created_at": "2026-07-10T10:10:46.789449", + "updated_at": "2026-07-10T10:10:46.789449", + "url": "/v1/games/tiger-fighter-1931-sunset-mp076" +} diff --git a/site/public/v1/games/tiger-fighter-1931-sunset-mp077/index.json b/site/public/v1/games/tiger-fighter-1931-sunset-mp077/index.json new file mode 100644 index 000000000000..4bda42a3f104 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-sunset-mp077/index.json @@ -0,0 +1,31 @@ +{ + "id": 155142, + "slug": "tiger-fighter-1931-sunset-mp077", + "name": "Tiger Fighter 1931 Sunset MP077", + "release_date": "2021-09-11", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181135" + ], + "created_at": "2026-07-10T10:10:46.789449", + "updated_at": "2026-07-10T10:10:46.789449", + "url": "/v1/games/tiger-fighter-1931-sunset-mp077" +} diff --git a/site/public/v1/games/tiger-fighter-1931-sunset-mp078/index.json b/site/public/v1/games/tiger-fighter-1931-sunset-mp078/index.json new file mode 100644 index 000000000000..0223f59e2e04 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-sunset-mp078/index.json @@ -0,0 +1,31 @@ +{ + "id": 155143, + "slug": "tiger-fighter-1931-sunset-mp078", + "name": "Tiger Fighter 1931 Sunset MP078", + "release_date": "2021-09-11", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181137" + ], + "created_at": "2026-07-10T10:10:46.789449", + "updated_at": "2026-07-10T10:10:46.789449", + "url": "/v1/games/tiger-fighter-1931-sunset-mp078" +} diff --git a/site/public/v1/games/tiger-fighter-1931-sunset-mp079/index.json b/site/public/v1/games/tiger-fighter-1931-sunset-mp079/index.json new file mode 100644 index 000000000000..300e13a13b7c --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-sunset-mp079/index.json @@ -0,0 +1,31 @@ +{ + "id": 155144, + "slug": "tiger-fighter-1931-sunset-mp079", + "name": "Tiger Fighter 1931 Sunset MP079", + "release_date": "2021-09-11", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181138" + ], + "created_at": "2026-07-10T10:10:46.790433", + "updated_at": "2026-07-10T10:10:46.790433", + "url": "/v1/games/tiger-fighter-1931-sunset-mp079" +} diff --git a/site/public/v1/games/tiger-fighter-1931-sunset-mp080/index.json b/site/public/v1/games/tiger-fighter-1931-sunset-mp080/index.json new file mode 100644 index 000000000000..f8779381c1dc --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-sunset-mp080/index.json @@ -0,0 +1,31 @@ +{ + "id": 155145, + "slug": "tiger-fighter-1931-sunset-mp080", + "name": "Tiger Fighter 1931 Sunset MP080", + "release_date": "2021-09-11", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181146" + ], + "created_at": "2026-07-10T10:10:46.790433", + "updated_at": "2026-07-10T10:10:46.790433", + "url": "/v1/games/tiger-fighter-1931-sunset-mp080" +} diff --git a/site/public/v1/games/tiger-fighter-1931-sunset-mp081/index.json b/site/public/v1/games/tiger-fighter-1931-sunset-mp081/index.json new file mode 100644 index 000000000000..522a7483fa33 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-sunset-mp081/index.json @@ -0,0 +1,31 @@ +{ + "id": 155146, + "slug": "tiger-fighter-1931-sunset-mp081", + "name": "Tiger Fighter 1931 Sunset MP081", + "release_date": "2021-09-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181148" + ], + "created_at": "2026-07-10T10:10:46.790433", + "updated_at": "2026-07-10T10:10:46.790433", + "url": "/v1/games/tiger-fighter-1931-sunset-mp081" +} diff --git a/site/public/v1/games/tiger-fighter-1931-sunset-mp082/index.json b/site/public/v1/games/tiger-fighter-1931-sunset-mp082/index.json new file mode 100644 index 000000000000..08c4be6e30ad --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-sunset-mp082/index.json @@ -0,0 +1,31 @@ +{ + "id": 155147, + "slug": "tiger-fighter-1931-sunset-mp082", + "name": "Tiger Fighter 1931 Sunset MP082", + "release_date": "2021-09-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181150" + ], + "created_at": "2026-07-10T10:10:46.790433", + "updated_at": "2026-07-10T10:10:46.790433", + "url": "/v1/games/tiger-fighter-1931-sunset-mp082" +} diff --git a/site/public/v1/games/tiger-fighter-1931-sunset-mp083/index.json b/site/public/v1/games/tiger-fighter-1931-sunset-mp083/index.json new file mode 100644 index 000000000000..9d40253faecc --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-sunset-mp083/index.json @@ -0,0 +1,31 @@ +{ + "id": 155148, + "slug": "tiger-fighter-1931-sunset-mp083", + "name": "Tiger Fighter 1931 Sunset MP083", + "release_date": "2021-09-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181151" + ], + "created_at": "2026-07-10T10:10:46.790433", + "updated_at": "2026-07-10T10:10:46.790433", + "url": "/v1/games/tiger-fighter-1931-sunset-mp083" +} diff --git a/site/public/v1/games/tiger-fighter-1931-sunset-mp084/index.json b/site/public/v1/games/tiger-fighter-1931-sunset-mp084/index.json new file mode 100644 index 000000000000..ff015b01b4f3 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-sunset-mp084/index.json @@ -0,0 +1,31 @@ +{ + "id": 155149, + "slug": "tiger-fighter-1931-sunset-mp084", + "name": "Tiger Fighter 1931 Sunset MP084", + "release_date": "2021-09-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181153" + ], + "created_at": "2026-07-10T10:10:46.791433", + "updated_at": "2026-07-10T10:10:46.791433", + "url": "/v1/games/tiger-fighter-1931-sunset-mp084" +} diff --git a/site/public/v1/games/tiger-fighter-1931-sunset-mp085/index.json b/site/public/v1/games/tiger-fighter-1931-sunset-mp085/index.json new file mode 100644 index 000000000000..8299f9c1db9f --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-sunset-mp085/index.json @@ -0,0 +1,31 @@ +{ + "id": 155150, + "slug": "tiger-fighter-1931-sunset-mp085", + "name": "Tiger Fighter 1931 Sunset MP085", + "release_date": "2021-09-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181155" + ], + "created_at": "2026-07-10T10:10:46.791433", + "updated_at": "2026-07-10T10:10:46.791433", + "url": "/v1/games/tiger-fighter-1931-sunset-mp085" +} diff --git a/site/public/v1/games/tiger-fighter-1931-sunset-mp086/index.json b/site/public/v1/games/tiger-fighter-1931-sunset-mp086/index.json new file mode 100644 index 000000000000..d32850d1e9c6 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-sunset-mp086/index.json @@ -0,0 +1,31 @@ +{ + "id": 155151, + "slug": "tiger-fighter-1931-sunset-mp086", + "name": "Tiger Fighter 1931 Sunset MP086", + "release_date": "2021-09-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181157" + ], + "created_at": "2026-07-10T10:10:46.791433", + "updated_at": "2026-07-10T10:10:46.791433", + "url": "/v1/games/tiger-fighter-1931-sunset-mp086" +} diff --git a/site/public/v1/games/tiger-fighter-1931-sunset-mp087/index.json b/site/public/v1/games/tiger-fighter-1931-sunset-mp087/index.json new file mode 100644 index 000000000000..2c2de02e8766 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-sunset-mp087/index.json @@ -0,0 +1,31 @@ +{ + "id": 155152, + "slug": "tiger-fighter-1931-sunset-mp087", + "name": "Tiger Fighter 1931 Sunset MP087", + "release_date": "2021-09-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181159" + ], + "created_at": "2026-07-10T10:10:46.791433", + "updated_at": "2026-07-10T10:10:46.791433", + "url": "/v1/games/tiger-fighter-1931-sunset-mp087" +} diff --git a/site/public/v1/games/tiger-fighter-1931-sunset-mp088/index.json b/site/public/v1/games/tiger-fighter-1931-sunset-mp088/index.json new file mode 100644 index 000000000000..efc83cef4a86 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-sunset-mp088/index.json @@ -0,0 +1,31 @@ +{ + "id": 155153, + "slug": "tiger-fighter-1931-sunset-mp088", + "name": "Tiger Fighter 1931 Sunset MP088", + "release_date": "2021-09-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181161" + ], + "created_at": "2026-07-10T10:10:46.792449", + "updated_at": "2026-07-10T10:10:46.792449", + "url": "/v1/games/tiger-fighter-1931-sunset-mp088" +} diff --git a/site/public/v1/games/tiger-fighter-1931-sunset-mp089/index.json b/site/public/v1/games/tiger-fighter-1931-sunset-mp089/index.json new file mode 100644 index 000000000000..249eadc0211c --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-sunset-mp089/index.json @@ -0,0 +1,31 @@ +{ + "id": 155154, + "slug": "tiger-fighter-1931-sunset-mp089", + "name": "Tiger Fighter 1931 Sunset MP089", + "release_date": "2021-09-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181164" + ], + "created_at": "2026-07-10T10:10:46.792449", + "updated_at": "2026-07-10T10:10:46.792449", + "url": "/v1/games/tiger-fighter-1931-sunset-mp089" +} diff --git a/site/public/v1/games/tiger-fighter-1931-sunset-mp090/index.json b/site/public/v1/games/tiger-fighter-1931-sunset-mp090/index.json new file mode 100644 index 000000000000..de8a269856c8 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-sunset-mp090/index.json @@ -0,0 +1,31 @@ +{ + "id": 155155, + "slug": "tiger-fighter-1931-sunset-mp090", + "name": "Tiger Fighter 1931 Sunset MP090", + "release_date": "2021-09-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181166" + ], + "created_at": "2026-07-10T10:10:46.792449", + "updated_at": "2026-07-10T10:10:46.792449", + "url": "/v1/games/tiger-fighter-1931-sunset-mp090" +} diff --git a/site/public/v1/games/tiger-fighter-1931-sunset-mp091/index.json b/site/public/v1/games/tiger-fighter-1931-sunset-mp091/index.json new file mode 100644 index 000000000000..7f8b7dd41f2b --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-sunset-mp091/index.json @@ -0,0 +1,31 @@ +{ + "id": 155156, + "slug": "tiger-fighter-1931-sunset-mp091", + "name": "Tiger Fighter 1931 Sunset MP091", + "release_date": "2021-09-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181167" + ], + "created_at": "2026-07-10T10:10:46.792449", + "updated_at": "2026-07-10T10:10:46.792449", + "url": "/v1/games/tiger-fighter-1931-sunset-mp091" +} diff --git a/site/public/v1/games/tiger-fighter-1931-sunset-mp092/index.json b/site/public/v1/games/tiger-fighter-1931-sunset-mp092/index.json new file mode 100644 index 000000000000..c20316618e41 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-sunset-mp092/index.json @@ -0,0 +1,31 @@ +{ + "id": 155157, + "slug": "tiger-fighter-1931-sunset-mp092", + "name": "Tiger Fighter 1931 Sunset MP092", + "release_date": "2021-09-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181169" + ], + "created_at": "2026-07-10T10:10:46.792449", + "updated_at": "2026-07-10T10:10:46.793435", + "url": "/v1/games/tiger-fighter-1931-sunset-mp092" +} diff --git a/site/public/v1/games/tiger-fighter-1931-sunset-mp093/index.json b/site/public/v1/games/tiger-fighter-1931-sunset-mp093/index.json new file mode 100644 index 000000000000..8ce4ab77720a --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-sunset-mp093/index.json @@ -0,0 +1,31 @@ +{ + "id": 155158, + "slug": "tiger-fighter-1931-sunset-mp093", + "name": "Tiger Fighter 1931 Sunset MP093", + "release_date": "2021-09-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181170" + ], + "created_at": "2026-07-10T10:10:46.793435", + "updated_at": "2026-07-10T10:10:46.793435", + "url": "/v1/games/tiger-fighter-1931-sunset-mp093" +} diff --git a/site/public/v1/games/tiger-fighter-1931-sunset-mp094/index.json b/site/public/v1/games/tiger-fighter-1931-sunset-mp094/index.json new file mode 100644 index 000000000000..613460058fac --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-sunset-mp094/index.json @@ -0,0 +1,31 @@ +{ + "id": 155159, + "slug": "tiger-fighter-1931-sunset-mp094", + "name": "Tiger Fighter 1931 Sunset MP094", + "release_date": "2021-09-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181171" + ], + "created_at": "2026-07-10T10:10:46.793435", + "updated_at": "2026-07-10T10:10:46.793435", + "url": "/v1/games/tiger-fighter-1931-sunset-mp094" +} diff --git a/site/public/v1/games/tiger-fighter-1931-sunset-mp095/index.json b/site/public/v1/games/tiger-fighter-1931-sunset-mp095/index.json new file mode 100644 index 000000000000..f6e2749dc78d --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-sunset-mp095/index.json @@ -0,0 +1,31 @@ +{ + "id": 155160, + "slug": "tiger-fighter-1931-sunset-mp095", + "name": "Tiger Fighter 1931 Sunset MP095", + "release_date": "2021-09-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181173" + ], + "created_at": "2026-07-10T10:10:46.793435", + "updated_at": "2026-07-10T10:10:46.793435", + "url": "/v1/games/tiger-fighter-1931-sunset-mp095" +} diff --git a/site/public/v1/games/tiger-fighter-1931-sunset-mp096/index.json b/site/public/v1/games/tiger-fighter-1931-sunset-mp096/index.json new file mode 100644 index 000000000000..3b93fec9901d --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-sunset-mp096/index.json @@ -0,0 +1,31 @@ +{ + "id": 155161, + "slug": "tiger-fighter-1931-sunset-mp096", + "name": "Tiger Fighter 1931 Sunset MP096", + "release_date": "2021-09-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181175" + ], + "created_at": "2026-07-10T10:10:46.793435", + "updated_at": "2026-07-10T10:10:46.793435", + "url": "/v1/games/tiger-fighter-1931-sunset-mp096" +} diff --git a/site/public/v1/games/tiger-fighter-1931-sunset-mp097/index.json b/site/public/v1/games/tiger-fighter-1931-sunset-mp097/index.json new file mode 100644 index 000000000000..7fd96d4e20d6 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-sunset-mp097/index.json @@ -0,0 +1,31 @@ +{ + "id": 155162, + "slug": "tiger-fighter-1931-sunset-mp097", + "name": "Tiger Fighter 1931 Sunset MP097", + "release_date": "2021-09-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181176" + ], + "created_at": "2026-07-10T10:10:46.794449", + "updated_at": "2026-07-10T10:10:46.794449", + "url": "/v1/games/tiger-fighter-1931-sunset-mp097" +} diff --git a/site/public/v1/games/tiger-fighter-1931-sunset-mp098/index.json b/site/public/v1/games/tiger-fighter-1931-sunset-mp098/index.json new file mode 100644 index 000000000000..4a82c084e663 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-sunset-mp098/index.json @@ -0,0 +1,31 @@ +{ + "id": 155163, + "slug": "tiger-fighter-1931-sunset-mp098", + "name": "Tiger Fighter 1931 Sunset MP098", + "release_date": "2021-09-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181178" + ], + "created_at": "2026-07-10T10:10:46.794449", + "updated_at": "2026-07-10T10:10:46.794449", + "url": "/v1/games/tiger-fighter-1931-sunset-mp098" +} diff --git a/site/public/v1/games/tiger-fighter-1931-sunset-mp099/index.json b/site/public/v1/games/tiger-fighter-1931-sunset-mp099/index.json new file mode 100644 index 000000000000..87e2f3953cb6 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-sunset-mp099/index.json @@ -0,0 +1,31 @@ +{ + "id": 155164, + "slug": "tiger-fighter-1931-sunset-mp099", + "name": "Tiger Fighter 1931 Sunset MP099", + "release_date": "2021-09-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181179" + ], + "created_at": "2026-07-10T10:10:46.794449", + "updated_at": "2026-07-10T10:10:46.794449", + "url": "/v1/games/tiger-fighter-1931-sunset-mp099" +} diff --git a/site/public/v1/games/tiger-fighter-1931-sunset-mp100/index.json b/site/public/v1/games/tiger-fighter-1931-sunset-mp100/index.json new file mode 100644 index 000000000000..e55b30ce8d73 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-sunset-mp100/index.json @@ -0,0 +1,31 @@ +{ + "id": 155165, + "slug": "tiger-fighter-1931-sunset-mp100", + "name": "Tiger Fighter 1931 Sunset MP100", + "release_date": "2021-09-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181181" + ], + "created_at": "2026-07-10T10:10:46.794449", + "updated_at": "2026-07-10T10:10:46.794449", + "url": "/v1/games/tiger-fighter-1931-sunset-mp100" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-mp001/index.json b/site/public/v1/games/tiger-fighter-1931-tora-mp001/index.json new file mode 100644 index 000000000000..ddda0efc6601 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-mp001/index.json @@ -0,0 +1,31 @@ +{ + "id": 155167, + "slug": "tiger-fighter-1931-tora-mp001", + "name": "Tiger Fighter 1931 Tora! MP001", + "release_date": "2021-07-31", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181182" + ], + "created_at": "2026-07-10T10:10:46.795375", + "updated_at": "2026-07-10T10:10:46.795375", + "url": "/v1/games/tiger-fighter-1931-tora-mp001" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-mp002/index.json b/site/public/v1/games/tiger-fighter-1931-tora-mp002/index.json new file mode 100644 index 000000000000..b4aa0d9aa099 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-mp002/index.json @@ -0,0 +1,31 @@ +{ + "id": 155168, + "slug": "tiger-fighter-1931-tora-mp002", + "name": "Tiger Fighter 1931 Tora! MP002", + "release_date": "2021-07-31", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181186" + ], + "created_at": "2026-07-10T10:10:46.795375", + "updated_at": "2026-07-10T10:10:46.795375", + "url": "/v1/games/tiger-fighter-1931-tora-mp002" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-mp003/index.json b/site/public/v1/games/tiger-fighter-1931-tora-mp003/index.json new file mode 100644 index 000000000000..6ead25fe92bb --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-mp003/index.json @@ -0,0 +1,31 @@ +{ + "id": 155169, + "slug": "tiger-fighter-1931-tora-mp003", + "name": "Tiger Fighter 1931 Tora! MP003", + "release_date": "2021-07-31", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181195" + ], + "created_at": "2026-07-10T10:10:46.795375", + "updated_at": "2026-07-10T10:10:46.795375", + "url": "/v1/games/tiger-fighter-1931-tora-mp003" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-mp004/index.json b/site/public/v1/games/tiger-fighter-1931-tora-mp004/index.json new file mode 100644 index 000000000000..05a4c9e8e4b9 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-mp004/index.json @@ -0,0 +1,31 @@ +{ + "id": 155170, + "slug": "tiger-fighter-1931-tora-mp004", + "name": "Tiger Fighter 1931 Tora! MP004", + "release_date": "2021-07-31", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181196" + ], + "created_at": "2026-07-10T10:10:46.795375", + "updated_at": "2026-07-10T10:10:46.795375", + "url": "/v1/games/tiger-fighter-1931-tora-mp004" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-mp005/index.json b/site/public/v1/games/tiger-fighter-1931-tora-mp005/index.json new file mode 100644 index 000000000000..ea68560d9017 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-mp005/index.json @@ -0,0 +1,31 @@ +{ + "id": 155171, + "slug": "tiger-fighter-1931-tora-mp005", + "name": "Tiger Fighter 1931 Tora! MP005", + "release_date": "2021-07-31", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181198" + ], + "created_at": "2026-07-10T10:10:46.796373", + "updated_at": "2026-07-10T10:10:46.796373", + "url": "/v1/games/tiger-fighter-1931-tora-mp005" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-mp006/index.json b/site/public/v1/games/tiger-fighter-1931-tora-mp006/index.json new file mode 100644 index 000000000000..e603e9e5584b --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-mp006/index.json @@ -0,0 +1,31 @@ +{ + "id": 155172, + "slug": "tiger-fighter-1931-tora-mp006", + "name": "Tiger Fighter 1931 Tora! MP006", + "release_date": "2021-07-31", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181201" + ], + "created_at": "2026-07-10T10:10:46.796373", + "updated_at": "2026-07-10T10:10:46.796373", + "url": "/v1/games/tiger-fighter-1931-tora-mp006" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-mp007/index.json b/site/public/v1/games/tiger-fighter-1931-tora-mp007/index.json new file mode 100644 index 000000000000..aba6f5a724ea --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-mp007/index.json @@ -0,0 +1,31 @@ +{ + "id": 155173, + "slug": "tiger-fighter-1931-tora-mp007", + "name": "Tiger Fighter 1931 Tora! MP007", + "release_date": "2021-07-31", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181203" + ], + "created_at": "2026-07-10T10:10:46.796373", + "updated_at": "2026-07-10T10:10:46.796373", + "url": "/v1/games/tiger-fighter-1931-tora-mp007" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-mp008/index.json b/site/public/v1/games/tiger-fighter-1931-tora-mp008/index.json new file mode 100644 index 000000000000..a400e20ef7e4 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-mp008/index.json @@ -0,0 +1,31 @@ +{ + "id": 155174, + "slug": "tiger-fighter-1931-tora-mp008", + "name": "Tiger Fighter 1931 Tora! MP008", + "release_date": "2021-07-31", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181205" + ], + "created_at": "2026-07-10T10:10:46.796373", + "updated_at": "2026-07-10T10:10:46.796373", + "url": "/v1/games/tiger-fighter-1931-tora-mp008" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-mp009/index.json b/site/public/v1/games/tiger-fighter-1931-tora-mp009/index.json new file mode 100644 index 000000000000..ce3adacd3df6 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-mp009/index.json @@ -0,0 +1,31 @@ +{ + "id": 155175, + "slug": "tiger-fighter-1931-tora-mp009", + "name": "Tiger Fighter 1931 Tora! MP009", + "release_date": "2021-07-31", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181208" + ], + "created_at": "2026-07-10T10:10:46.797376", + "updated_at": "2026-07-10T10:10:46.797376", + "url": "/v1/games/tiger-fighter-1931-tora-mp009" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-mp010/index.json b/site/public/v1/games/tiger-fighter-1931-tora-mp010/index.json new file mode 100644 index 000000000000..a79253e05d7c --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-mp010/index.json @@ -0,0 +1,31 @@ +{ + "id": 155176, + "slug": "tiger-fighter-1931-tora-mp010", + "name": "Tiger Fighter 1931 Tora! MP010", + "release_date": "2021-07-31", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181209" + ], + "created_at": "2026-07-10T10:10:46.797376", + "updated_at": "2026-07-10T10:10:46.797376", + "url": "/v1/games/tiger-fighter-1931-tora-mp010" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-mp011/index.json b/site/public/v1/games/tiger-fighter-1931-tora-mp011/index.json new file mode 100644 index 000000000000..20d1d277c47d --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-mp011/index.json @@ -0,0 +1,31 @@ +{ + "id": 155177, + "slug": "tiger-fighter-1931-tora-mp011", + "name": "Tiger Fighter 1931 Tora! MP011", + "release_date": "2021-08-14", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181210" + ], + "created_at": "2026-07-10T10:10:46.797376", + "updated_at": "2026-07-10T10:10:46.797376", + "url": "/v1/games/tiger-fighter-1931-tora-mp011" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-mp012/index.json b/site/public/v1/games/tiger-fighter-1931-tora-mp012/index.json new file mode 100644 index 000000000000..dd010b1c3e4b --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-mp012/index.json @@ -0,0 +1,31 @@ +{ + "id": 155178, + "slug": "tiger-fighter-1931-tora-mp012", + "name": "Tiger Fighter 1931 Tora! MP012", + "release_date": "2021-08-14", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181212" + ], + "created_at": "2026-07-10T10:10:46.797376", + "updated_at": "2026-07-10T10:10:46.797376", + "url": "/v1/games/tiger-fighter-1931-tora-mp012" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-mp013/index.json b/site/public/v1/games/tiger-fighter-1931-tora-mp013/index.json new file mode 100644 index 000000000000..e6fb3dc32f94 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-mp013/index.json @@ -0,0 +1,31 @@ +{ + "id": 155179, + "slug": "tiger-fighter-1931-tora-mp013", + "name": "Tiger Fighter 1931 Tora! MP013", + "release_date": "2021-08-14", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181213" + ], + "created_at": "2026-07-10T10:10:46.797376", + "updated_at": "2026-07-10T10:10:46.797376", + "url": "/v1/games/tiger-fighter-1931-tora-mp013" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-mp014/index.json b/site/public/v1/games/tiger-fighter-1931-tora-mp014/index.json new file mode 100644 index 000000000000..f4de8991fec7 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-mp014/index.json @@ -0,0 +1,31 @@ +{ + "id": 155180, + "slug": "tiger-fighter-1931-tora-mp014", + "name": "Tiger Fighter 1931 Tora! MP014", + "release_date": "2021-08-14", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181215" + ], + "created_at": "2026-07-10T10:10:46.798376", + "updated_at": "2026-07-10T10:10:46.798376", + "url": "/v1/games/tiger-fighter-1931-tora-mp014" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-mp015/index.json b/site/public/v1/games/tiger-fighter-1931-tora-mp015/index.json new file mode 100644 index 000000000000..bbda36ef4935 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-mp015/index.json @@ -0,0 +1,31 @@ +{ + "id": 155181, + "slug": "tiger-fighter-1931-tora-mp015", + "name": "Tiger Fighter 1931 Tora! MP015", + "release_date": "2021-08-14", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181216" + ], + "created_at": "2026-07-10T10:10:46.798376", + "updated_at": "2026-07-10T10:10:46.798376", + "url": "/v1/games/tiger-fighter-1931-tora-mp015" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-mp016/index.json b/site/public/v1/games/tiger-fighter-1931-tora-mp016/index.json new file mode 100644 index 000000000000..ee9623a6bf53 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-mp016/index.json @@ -0,0 +1,31 @@ +{ + "id": 155182, + "slug": "tiger-fighter-1931-tora-mp016", + "name": "Tiger Fighter 1931 Tora! MP016", + "release_date": "2021-08-14", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181224" + ], + "created_at": "2026-07-10T10:10:46.798376", + "updated_at": "2026-07-10T10:10:46.798376", + "url": "/v1/games/tiger-fighter-1931-tora-mp016" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-mp017/index.json b/site/public/v1/games/tiger-fighter-1931-tora-mp017/index.json new file mode 100644 index 000000000000..4683ab50db7f --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-mp017/index.json @@ -0,0 +1,31 @@ +{ + "id": 155183, + "slug": "tiger-fighter-1931-tora-mp017", + "name": "Tiger Fighter 1931 Tora! MP017", + "release_date": "2021-08-14", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181229" + ], + "created_at": "2026-07-10T10:10:46.799375", + "updated_at": "2026-07-10T10:10:46.799375", + "url": "/v1/games/tiger-fighter-1931-tora-mp017" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-mp018/index.json b/site/public/v1/games/tiger-fighter-1931-tora-mp018/index.json new file mode 100644 index 000000000000..f04b484ee0cc --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-mp018/index.json @@ -0,0 +1,31 @@ +{ + "id": 155184, + "slug": "tiger-fighter-1931-tora-mp018", + "name": "Tiger Fighter 1931 Tora! MP018", + "release_date": "2021-08-14", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181230" + ], + "created_at": "2026-07-10T10:10:46.799375", + "updated_at": "2026-07-10T10:10:46.799375", + "url": "/v1/games/tiger-fighter-1931-tora-mp018" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-mp019/index.json b/site/public/v1/games/tiger-fighter-1931-tora-mp019/index.json new file mode 100644 index 000000000000..a744c9a427b0 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-mp019/index.json @@ -0,0 +1,31 @@ +{ + "id": 155185, + "slug": "tiger-fighter-1931-tora-mp019", + "name": "Tiger Fighter 1931 Tora! MP019", + "release_date": "2021-08-14", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181232" + ], + "created_at": "2026-07-10T10:10:46.799375", + "updated_at": "2026-07-10T10:10:46.799375", + "url": "/v1/games/tiger-fighter-1931-tora-mp019" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-mp020/index.json b/site/public/v1/games/tiger-fighter-1931-tora-mp020/index.json new file mode 100644 index 000000000000..ff24fdd0405f --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-mp020/index.json @@ -0,0 +1,31 @@ +{ + "id": 155186, + "slug": "tiger-fighter-1931-tora-mp020", + "name": "Tiger Fighter 1931 Tora! MP020", + "release_date": "2021-08-14", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181233" + ], + "created_at": "2026-07-10T10:10:46.800378", + "updated_at": "2026-07-10T10:10:46.800378", + "url": "/v1/games/tiger-fighter-1931-tora-mp020" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-mp021/index.json b/site/public/v1/games/tiger-fighter-1931-tora-mp021/index.json new file mode 100644 index 000000000000..6e854e4d9bf5 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-mp021/index.json @@ -0,0 +1,31 @@ +{ + "id": 155187, + "slug": "tiger-fighter-1931-tora-mp021", + "name": "Tiger Fighter 1931 Tora! MP021", + "release_date": "2021-08-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181235" + ], + "created_at": "2026-07-10T10:10:46.800378", + "updated_at": "2026-07-10T10:10:46.800378", + "url": "/v1/games/tiger-fighter-1931-tora-mp021" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-mp022/index.json b/site/public/v1/games/tiger-fighter-1931-tora-mp022/index.json new file mode 100644 index 000000000000..a98e9f7b13f5 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-mp022/index.json @@ -0,0 +1,31 @@ +{ + "id": 155188, + "slug": "tiger-fighter-1931-tora-mp022", + "name": "Tiger Fighter 1931 Tora! MP022", + "release_date": "2021-08-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181237" + ], + "created_at": "2026-07-10T10:10:46.800378", + "updated_at": "2026-07-10T10:10:46.800378", + "url": "/v1/games/tiger-fighter-1931-tora-mp022" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-mp023/index.json b/site/public/v1/games/tiger-fighter-1931-tora-mp023/index.json new file mode 100644 index 000000000000..fb93ef8c2806 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-mp023/index.json @@ -0,0 +1,31 @@ +{ + "id": 155189, + "slug": "tiger-fighter-1931-tora-mp023", + "name": "Tiger Fighter 1931 Tora! MP023", + "release_date": "2021-08-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181246" + ], + "created_at": "2026-07-10T10:10:46.800378", + "updated_at": "2026-07-10T10:10:46.800378", + "url": "/v1/games/tiger-fighter-1931-tora-mp023" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-mp024/index.json b/site/public/v1/games/tiger-fighter-1931-tora-mp024/index.json new file mode 100644 index 000000000000..336704c57100 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-mp024/index.json @@ -0,0 +1,31 @@ +{ + "id": 155190, + "slug": "tiger-fighter-1931-tora-mp024", + "name": "Tiger Fighter 1931 Tora! MP024", + "release_date": "2021-08-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181256" + ], + "created_at": "2026-07-10T10:10:46.800378", + "updated_at": "2026-07-10T10:10:46.800378", + "url": "/v1/games/tiger-fighter-1931-tora-mp024" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-mp025/index.json b/site/public/v1/games/tiger-fighter-1931-tora-mp025/index.json new file mode 100644 index 000000000000..ba3fb2b53a06 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-mp025/index.json @@ -0,0 +1,31 @@ +{ + "id": 155191, + "slug": "tiger-fighter-1931-tora-mp025", + "name": "Tiger Fighter 1931 Tora! MP025", + "release_date": "2021-08-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181257" + ], + "created_at": "2026-07-10T10:10:46.801376", + "updated_at": "2026-07-10T10:10:46.801376", + "url": "/v1/games/tiger-fighter-1931-tora-mp025" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-mp026/index.json b/site/public/v1/games/tiger-fighter-1931-tora-mp026/index.json new file mode 100644 index 000000000000..c80ec6bc9794 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-mp026/index.json @@ -0,0 +1,31 @@ +{ + "id": 155192, + "slug": "tiger-fighter-1931-tora-mp026", + "name": "Tiger Fighter 1931 Tora! MP026", + "release_date": "2021-08-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181260" + ], + "created_at": "2026-07-10T10:10:46.801376", + "updated_at": "2026-07-10T10:10:46.801376", + "url": "/v1/games/tiger-fighter-1931-tora-mp026" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-mp027/index.json b/site/public/v1/games/tiger-fighter-1931-tora-mp027/index.json new file mode 100644 index 000000000000..f9c081aef271 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-mp027/index.json @@ -0,0 +1,31 @@ +{ + "id": 155193, + "slug": "tiger-fighter-1931-tora-mp027", + "name": "Tiger Fighter 1931 Tora! MP027", + "release_date": "2021-08-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181265" + ], + "created_at": "2026-07-10T10:10:46.801376", + "updated_at": "2026-07-10T10:10:46.801376", + "url": "/v1/games/tiger-fighter-1931-tora-mp027" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-mp028/index.json b/site/public/v1/games/tiger-fighter-1931-tora-mp028/index.json new file mode 100644 index 000000000000..88825b25a2d7 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-mp028/index.json @@ -0,0 +1,31 @@ +{ + "id": 155194, + "slug": "tiger-fighter-1931-tora-mp028", + "name": "Tiger Fighter 1931 Tora! MP028", + "release_date": "2021-08-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181268" + ], + "created_at": "2026-07-10T10:10:46.801376", + "updated_at": "2026-07-10T10:10:46.801376", + "url": "/v1/games/tiger-fighter-1931-tora-mp028" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-mp029/index.json b/site/public/v1/games/tiger-fighter-1931-tora-mp029/index.json new file mode 100644 index 000000000000..00581b6c4384 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-mp029/index.json @@ -0,0 +1,31 @@ +{ + "id": 155195, + "slug": "tiger-fighter-1931-tora-mp029", + "name": "Tiger Fighter 1931 Tora! MP029", + "release_date": "2021-08-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181271" + ], + "created_at": "2026-07-10T10:10:46.802377", + "updated_at": "2026-07-10T10:10:46.802377", + "url": "/v1/games/tiger-fighter-1931-tora-mp029" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-mp030/index.json b/site/public/v1/games/tiger-fighter-1931-tora-mp030/index.json new file mode 100644 index 000000000000..a4da8079e7cc --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-mp030/index.json @@ -0,0 +1,31 @@ +{ + "id": 155196, + "slug": "tiger-fighter-1931-tora-mp030", + "name": "Tiger Fighter 1931 Tora! MP030", + "release_date": "2021-08-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181273" + ], + "created_at": "2026-07-10T10:10:46.802377", + "updated_at": "2026-07-10T10:10:46.802377", + "url": "/v1/games/tiger-fighter-1931-tora-mp030" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-mp031/index.json b/site/public/v1/games/tiger-fighter-1931-tora-mp031/index.json new file mode 100644 index 000000000000..ccebf41b3e89 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-mp031/index.json @@ -0,0 +1,31 @@ +{ + "id": 155197, + "slug": "tiger-fighter-1931-tora-mp031", + "name": "Tiger Fighter 1931 Tora! MP031", + "release_date": "2021-08-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181276" + ], + "created_at": "2026-07-10T10:10:46.802377", + "updated_at": "2026-07-10T10:10:46.802377", + "url": "/v1/games/tiger-fighter-1931-tora-mp031" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-mp032/index.json b/site/public/v1/games/tiger-fighter-1931-tora-mp032/index.json new file mode 100644 index 000000000000..217d80684213 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-mp032/index.json @@ -0,0 +1,31 @@ +{ + "id": 155198, + "slug": "tiger-fighter-1931-tora-mp032", + "name": "Tiger Fighter 1931 Tora! MP032", + "release_date": "2021-08-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181278" + ], + "created_at": "2026-07-10T10:10:46.802377", + "updated_at": "2026-07-10T10:10:46.802377", + "url": "/v1/games/tiger-fighter-1931-tora-mp032" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-mp033/index.json b/site/public/v1/games/tiger-fighter-1931-tora-mp033/index.json new file mode 100644 index 000000000000..06bfce0075ca --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-mp033/index.json @@ -0,0 +1,31 @@ +{ + "id": 155199, + "slug": "tiger-fighter-1931-tora-mp033", + "name": "Tiger Fighter 1931 Tora! MP033", + "release_date": "2021-08-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181280" + ], + "created_at": "2026-07-10T10:10:46.802377", + "updated_at": "2026-07-10T10:10:46.802377", + "url": "/v1/games/tiger-fighter-1931-tora-mp033" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-mp034/index.json b/site/public/v1/games/tiger-fighter-1931-tora-mp034/index.json new file mode 100644 index 000000000000..1731fea0fecc --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-mp034/index.json @@ -0,0 +1,31 @@ +{ + "id": 155200, + "slug": "tiger-fighter-1931-tora-mp034", + "name": "Tiger Fighter 1931 Tora! MP034", + "release_date": "2021-08-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181281" + ], + "created_at": "2026-07-10T10:10:46.803376", + "updated_at": "2026-07-10T10:10:46.803376", + "url": "/v1/games/tiger-fighter-1931-tora-mp034" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-mp035/index.json b/site/public/v1/games/tiger-fighter-1931-tora-mp035/index.json new file mode 100644 index 000000000000..6aa067bee604 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-mp035/index.json @@ -0,0 +1,31 @@ +{ + "id": 155201, + "slug": "tiger-fighter-1931-tora-mp035", + "name": "Tiger Fighter 1931 Tora! MP035", + "release_date": "2021-08-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181282" + ], + "created_at": "2026-07-10T10:10:46.803376", + "updated_at": "2026-07-10T10:10:46.803376", + "url": "/v1/games/tiger-fighter-1931-tora-mp035" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-mp036/index.json b/site/public/v1/games/tiger-fighter-1931-tora-mp036/index.json new file mode 100644 index 000000000000..01d16fea9e1f --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-mp036/index.json @@ -0,0 +1,31 @@ +{ + "id": 155202, + "slug": "tiger-fighter-1931-tora-mp036", + "name": "Tiger Fighter 1931 Tora! MP036", + "release_date": "2021-09-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181283" + ], + "created_at": "2026-07-10T10:10:46.803376", + "updated_at": "2026-07-10T10:10:46.803376", + "url": "/v1/games/tiger-fighter-1931-tora-mp036" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-mp037/index.json b/site/public/v1/games/tiger-fighter-1931-tora-mp037/index.json new file mode 100644 index 000000000000..61c5be1f2152 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-mp037/index.json @@ -0,0 +1,31 @@ +{ + "id": 155203, + "slug": "tiger-fighter-1931-tora-mp037", + "name": "Tiger Fighter 1931 Tora! MP037", + "release_date": "2021-09-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181285" + ], + "created_at": "2026-07-10T10:10:46.803376", + "updated_at": "2026-07-10T10:10:46.803376", + "url": "/v1/games/tiger-fighter-1931-tora-mp037" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-mp038/index.json b/site/public/v1/games/tiger-fighter-1931-tora-mp038/index.json new file mode 100644 index 000000000000..6f06881915ca --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-mp038/index.json @@ -0,0 +1,31 @@ +{ + "id": 155204, + "slug": "tiger-fighter-1931-tora-mp038", + "name": "Tiger Fighter 1931 Tora! MP038", + "release_date": "2021-09-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181286" + ], + "created_at": "2026-07-10T10:10:46.803376", + "updated_at": "2026-07-10T10:10:46.803376", + "url": "/v1/games/tiger-fighter-1931-tora-mp038" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-mp039/index.json b/site/public/v1/games/tiger-fighter-1931-tora-mp039/index.json new file mode 100644 index 000000000000..4b29cce43f04 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-mp039/index.json @@ -0,0 +1,31 @@ +{ + "id": 155205, + "slug": "tiger-fighter-1931-tora-mp039", + "name": "Tiger Fighter 1931 Tora! MP039", + "release_date": "2021-09-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181290" + ], + "created_at": "2026-07-10T10:10:46.804423", + "updated_at": "2026-07-10T10:10:46.804423", + "url": "/v1/games/tiger-fighter-1931-tora-mp039" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-mp040/index.json b/site/public/v1/games/tiger-fighter-1931-tora-mp040/index.json new file mode 100644 index 000000000000..927512dfcd31 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-mp040/index.json @@ -0,0 +1,31 @@ +{ + "id": 155206, + "slug": "tiger-fighter-1931-tora-mp040", + "name": "Tiger Fighter 1931 Tora! MP040", + "release_date": "2021-09-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181292" + ], + "created_at": "2026-07-10T10:10:46.804423", + "updated_at": "2026-07-10T10:10:46.804423", + "url": "/v1/games/tiger-fighter-1931-tora-mp040" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-mp041/index.json b/site/public/v1/games/tiger-fighter-1931-tora-mp041/index.json new file mode 100644 index 000000000000..778cf539c773 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-mp041/index.json @@ -0,0 +1,31 @@ +{ + "id": 155207, + "slug": "tiger-fighter-1931-tora-mp041", + "name": "Tiger Fighter 1931 Tora! MP041", + "release_date": "2021-09-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181294" + ], + "created_at": "2026-07-10T10:10:46.804423", + "updated_at": "2026-07-10T10:10:46.804423", + "url": "/v1/games/tiger-fighter-1931-tora-mp041" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-mp042/index.json b/site/public/v1/games/tiger-fighter-1931-tora-mp042/index.json new file mode 100644 index 000000000000..d5b1e563122c --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-mp042/index.json @@ -0,0 +1,31 @@ +{ + "id": 155208, + "slug": "tiger-fighter-1931-tora-mp042", + "name": "Tiger Fighter 1931 Tora! MP042", + "release_date": "2021-09-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181295" + ], + "created_at": "2026-07-10T10:10:46.804423", + "updated_at": "2026-07-10T10:10:46.804423", + "url": "/v1/games/tiger-fighter-1931-tora-mp042" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-mp043/index.json b/site/public/v1/games/tiger-fighter-1931-tora-mp043/index.json new file mode 100644 index 000000000000..6482ea9b022a --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-mp043/index.json @@ -0,0 +1,31 @@ +{ + "id": 155209, + "slug": "tiger-fighter-1931-tora-mp043", + "name": "Tiger Fighter 1931 Tora! MP043", + "release_date": "2021-09-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181298" + ], + "created_at": "2026-07-10T10:10:46.805430", + "updated_at": "2026-07-10T10:10:46.805430", + "url": "/v1/games/tiger-fighter-1931-tora-mp043" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-mp044/index.json b/site/public/v1/games/tiger-fighter-1931-tora-mp044/index.json new file mode 100644 index 000000000000..6bfbef1c6031 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-mp044/index.json @@ -0,0 +1,31 @@ +{ + "id": 155210, + "slug": "tiger-fighter-1931-tora-mp044", + "name": "Tiger Fighter 1931 Tora! MP044", + "release_date": "2021-09-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181299" + ], + "created_at": "2026-07-10T10:10:46.805430", + "updated_at": "2026-07-10T10:10:46.805430", + "url": "/v1/games/tiger-fighter-1931-tora-mp044" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-mp045/index.json b/site/public/v1/games/tiger-fighter-1931-tora-mp045/index.json new file mode 100644 index 000000000000..a8663d350acb --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-mp045/index.json @@ -0,0 +1,31 @@ +{ + "id": 155211, + "slug": "tiger-fighter-1931-tora-mp045", + "name": "Tiger Fighter 1931 Tora! MP045", + "release_date": "2021-09-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181304" + ], + "created_at": "2026-07-10T10:10:46.805430", + "updated_at": "2026-07-10T10:10:46.805430", + "url": "/v1/games/tiger-fighter-1931-tora-mp045" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-mp046/index.json b/site/public/v1/games/tiger-fighter-1931-tora-mp046/index.json new file mode 100644 index 000000000000..b45aa8c51e73 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-mp046/index.json @@ -0,0 +1,31 @@ +{ + "id": 155212, + "slug": "tiger-fighter-1931-tora-mp046", + "name": "Tiger Fighter 1931 Tora! MP046", + "release_date": "2021-09-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181306" + ], + "created_at": "2026-07-10T10:10:46.805430", + "updated_at": "2026-07-10T10:10:46.805430", + "url": "/v1/games/tiger-fighter-1931-tora-mp046" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-mp047/index.json b/site/public/v1/games/tiger-fighter-1931-tora-mp047/index.json new file mode 100644 index 000000000000..4448b40b3e0e --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-mp047/index.json @@ -0,0 +1,31 @@ +{ + "id": 155213, + "slug": "tiger-fighter-1931-tora-mp047", + "name": "Tiger Fighter 1931 Tora! MP047", + "release_date": "2021-09-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181309" + ], + "created_at": "2026-07-10T10:10:46.805430", + "updated_at": "2026-07-10T10:10:46.805430", + "url": "/v1/games/tiger-fighter-1931-tora-mp047" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-mp048/index.json b/site/public/v1/games/tiger-fighter-1931-tora-mp048/index.json new file mode 100644 index 000000000000..d4e405ab4235 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-mp048/index.json @@ -0,0 +1,31 @@ +{ + "id": 155214, + "slug": "tiger-fighter-1931-tora-mp048", + "name": "Tiger Fighter 1931 Tora! MP048", + "release_date": "2021-09-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181314" + ], + "created_at": "2026-07-10T10:10:46.806436", + "updated_at": "2026-07-10T10:10:46.806436", + "url": "/v1/games/tiger-fighter-1931-tora-mp048" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-mp049/index.json b/site/public/v1/games/tiger-fighter-1931-tora-mp049/index.json new file mode 100644 index 000000000000..8106b1d535e2 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-mp049/index.json @@ -0,0 +1,31 @@ +{ + "id": 155215, + "slug": "tiger-fighter-1931-tora-mp049", + "name": "Tiger Fighter 1931 Tora! MP049", + "release_date": "2021-09-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181319" + ], + "created_at": "2026-07-10T10:10:46.806436", + "updated_at": "2026-07-10T10:10:46.806436", + "url": "/v1/games/tiger-fighter-1931-tora-mp049" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-mp050/index.json b/site/public/v1/games/tiger-fighter-1931-tora-mp050/index.json new file mode 100644 index 000000000000..fc94f975af17 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-mp050/index.json @@ -0,0 +1,31 @@ +{ + "id": 155216, + "slug": "tiger-fighter-1931-tora-mp050", + "name": "Tiger Fighter 1931 Tora! MP050", + "release_date": "2021-09-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181321" + ], + "created_at": "2026-07-10T10:10:46.806436", + "updated_at": "2026-07-10T10:10:46.806436", + "url": "/v1/games/tiger-fighter-1931-tora-mp050" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-mp051/index.json b/site/public/v1/games/tiger-fighter-1931-tora-mp051/index.json new file mode 100644 index 000000000000..c9925649b56c --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-mp051/index.json @@ -0,0 +1,31 @@ +{ + "id": 155217, + "slug": "tiger-fighter-1931-tora-mp051", + "name": "Tiger Fighter 1931 Tora! MP051", + "release_date": "2021-09-09", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181322" + ], + "created_at": "2026-07-10T10:10:46.807425", + "updated_at": "2026-07-10T10:10:46.807425", + "url": "/v1/games/tiger-fighter-1931-tora-mp051" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-mp052/index.json b/site/public/v1/games/tiger-fighter-1931-tora-mp052/index.json new file mode 100644 index 000000000000..dca384d54302 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-mp052/index.json @@ -0,0 +1,31 @@ +{ + "id": 155218, + "slug": "tiger-fighter-1931-tora-mp052", + "name": "Tiger Fighter 1931 Tora! MP052", + "release_date": "2021-09-09", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181324" + ], + "created_at": "2026-07-10T10:10:46.807425", + "updated_at": "2026-07-10T10:10:46.807425", + "url": "/v1/games/tiger-fighter-1931-tora-mp052" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-mp053/index.json b/site/public/v1/games/tiger-fighter-1931-tora-mp053/index.json new file mode 100644 index 000000000000..e657d6db6d4b --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-mp053/index.json @@ -0,0 +1,31 @@ +{ + "id": 155219, + "slug": "tiger-fighter-1931-tora-mp053", + "name": "Tiger Fighter 1931 Tora! MP053", + "release_date": "2021-09-09", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181325" + ], + "created_at": "2026-07-10T10:10:46.807425", + "updated_at": "2026-07-10T10:10:46.807425", + "url": "/v1/games/tiger-fighter-1931-tora-mp053" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-mp054/index.json b/site/public/v1/games/tiger-fighter-1931-tora-mp054/index.json new file mode 100644 index 000000000000..5a601e20296c --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-mp054/index.json @@ -0,0 +1,31 @@ +{ + "id": 155220, + "slug": "tiger-fighter-1931-tora-mp054", + "name": "Tiger Fighter 1931 Tora! MP054", + "release_date": "2021-09-09", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181326" + ], + "created_at": "2026-07-10T10:10:46.807425", + "updated_at": "2026-07-10T10:10:46.807425", + "url": "/v1/games/tiger-fighter-1931-tora-mp054" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-mp055/index.json b/site/public/v1/games/tiger-fighter-1931-tora-mp055/index.json new file mode 100644 index 000000000000..95a7df3b125b --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-mp055/index.json @@ -0,0 +1,31 @@ +{ + "id": 155221, + "slug": "tiger-fighter-1931-tora-mp055", + "name": "Tiger Fighter 1931 Tora! MP055", + "release_date": "2021-09-09", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181327" + ], + "created_at": "2026-07-10T10:10:46.807425", + "updated_at": "2026-07-10T10:10:46.807425", + "url": "/v1/games/tiger-fighter-1931-tora-mp055" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-mp056/index.json b/site/public/v1/games/tiger-fighter-1931-tora-mp056/index.json new file mode 100644 index 000000000000..b97ff0f958d8 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-mp056/index.json @@ -0,0 +1,31 @@ +{ + "id": 155222, + "slug": "tiger-fighter-1931-tora-mp056", + "name": "Tiger Fighter 1931 Tora! MP056", + "release_date": "2021-09-09", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181328" + ], + "created_at": "2026-07-10T10:10:46.808452", + "updated_at": "2026-07-10T10:10:46.808452", + "url": "/v1/games/tiger-fighter-1931-tora-mp056" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-mp057/index.json b/site/public/v1/games/tiger-fighter-1931-tora-mp057/index.json new file mode 100644 index 000000000000..721ed1e6a03b --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-mp057/index.json @@ -0,0 +1,31 @@ +{ + "id": 155223, + "slug": "tiger-fighter-1931-tora-mp057", + "name": "Tiger Fighter 1931 Tora! MP057", + "release_date": "2021-09-09", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181331" + ], + "created_at": "2026-07-10T10:10:46.808452", + "updated_at": "2026-07-10T10:10:46.808452", + "url": "/v1/games/tiger-fighter-1931-tora-mp057" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-mp058/index.json b/site/public/v1/games/tiger-fighter-1931-tora-mp058/index.json new file mode 100644 index 000000000000..55b4979e6b87 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-mp058/index.json @@ -0,0 +1,31 @@ +{ + "id": 155224, + "slug": "tiger-fighter-1931-tora-mp058", + "name": "Tiger Fighter 1931 Tora! MP058", + "release_date": "2021-09-09", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181333" + ], + "created_at": "2026-07-10T10:10:46.808452", + "updated_at": "2026-07-10T10:10:46.808452", + "url": "/v1/games/tiger-fighter-1931-tora-mp058" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-mp059/index.json b/site/public/v1/games/tiger-fighter-1931-tora-mp059/index.json new file mode 100644 index 000000000000..dacb1120112c --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-mp059/index.json @@ -0,0 +1,31 @@ +{ + "id": 155225, + "slug": "tiger-fighter-1931-tora-mp059", + "name": "Tiger Fighter 1931 Tora! MP059", + "release_date": "2021-09-09", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181335" + ], + "created_at": "2026-07-10T10:10:46.808452", + "updated_at": "2026-07-10T10:10:46.808452", + "url": "/v1/games/tiger-fighter-1931-tora-mp059" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-mp060/index.json b/site/public/v1/games/tiger-fighter-1931-tora-mp060/index.json new file mode 100644 index 000000000000..76fc43b956fc --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-mp060/index.json @@ -0,0 +1,31 @@ +{ + "id": 155226, + "slug": "tiger-fighter-1931-tora-mp060", + "name": "Tiger Fighter 1931 Tora! MP060", + "release_date": "2021-09-09", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181339" + ], + "created_at": "2026-07-10T10:10:46.808452", + "updated_at": "2026-07-10T10:10:46.808452", + "url": "/v1/games/tiger-fighter-1931-tora-mp060" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-mp061/index.json b/site/public/v1/games/tiger-fighter-1931-tora-mp061/index.json new file mode 100644 index 000000000000..73847fb54afa --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-mp061/index.json @@ -0,0 +1,31 @@ +{ + "id": 155227, + "slug": "tiger-fighter-1931-tora-mp061", + "name": "Tiger Fighter 1931 Tora! MP061", + "release_date": "2021-09-11", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181340" + ], + "created_at": "2026-07-10T10:10:46.809455", + "updated_at": "2026-07-10T10:10:46.809455", + "url": "/v1/games/tiger-fighter-1931-tora-mp061" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-mp062/index.json b/site/public/v1/games/tiger-fighter-1931-tora-mp062/index.json new file mode 100644 index 000000000000..0143caecec5b --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-mp062/index.json @@ -0,0 +1,31 @@ +{ + "id": 155228, + "slug": "tiger-fighter-1931-tora-mp062", + "name": "Tiger Fighter 1931 Tora! MP062", + "release_date": "2021-09-11", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181342" + ], + "created_at": "2026-07-10T10:10:46.809455", + "updated_at": "2026-07-10T10:10:46.809455", + "url": "/v1/games/tiger-fighter-1931-tora-mp062" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-mp063/index.json b/site/public/v1/games/tiger-fighter-1931-tora-mp063/index.json new file mode 100644 index 000000000000..99a4927d5683 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-mp063/index.json @@ -0,0 +1,31 @@ +{ + "id": 155229, + "slug": "tiger-fighter-1931-tora-mp063", + "name": "Tiger Fighter 1931 Tora! MP063", + "release_date": "2021-09-11", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181344" + ], + "created_at": "2026-07-10T10:10:46.809455", + "updated_at": "2026-07-10T10:10:46.809455", + "url": "/v1/games/tiger-fighter-1931-tora-mp063" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-mp064/index.json b/site/public/v1/games/tiger-fighter-1931-tora-mp064/index.json new file mode 100644 index 000000000000..a68d2fb464f7 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-mp064/index.json @@ -0,0 +1,31 @@ +{ + "id": 155230, + "slug": "tiger-fighter-1931-tora-mp064", + "name": "Tiger Fighter 1931 Tora! MP064", + "release_date": "2021-09-11", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181346" + ], + "created_at": "2026-07-10T10:10:46.809455", + "updated_at": "2026-07-10T10:10:46.809455", + "url": "/v1/games/tiger-fighter-1931-tora-mp064" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-mp065/index.json b/site/public/v1/games/tiger-fighter-1931-tora-mp065/index.json new file mode 100644 index 000000000000..964fc0a4ed6a --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-mp065/index.json @@ -0,0 +1,31 @@ +{ + "id": 155231, + "slug": "tiger-fighter-1931-tora-mp065", + "name": "Tiger Fighter 1931 Tora! MP065", + "release_date": "2021-09-11", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181348" + ], + "created_at": "2026-07-10T10:10:46.810450", + "updated_at": "2026-07-10T10:10:46.810450", + "url": "/v1/games/tiger-fighter-1931-tora-mp065" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-mp066/index.json b/site/public/v1/games/tiger-fighter-1931-tora-mp066/index.json new file mode 100644 index 000000000000..a6a86eed7845 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-mp066/index.json @@ -0,0 +1,31 @@ +{ + "id": 155232, + "slug": "tiger-fighter-1931-tora-mp066", + "name": "Tiger Fighter 1931 Tora! MP066", + "release_date": "2021-09-11", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181350" + ], + "created_at": "2026-07-10T10:10:46.810450", + "updated_at": "2026-07-10T10:10:46.810450", + "url": "/v1/games/tiger-fighter-1931-tora-mp066" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-mp067/index.json b/site/public/v1/games/tiger-fighter-1931-tora-mp067/index.json new file mode 100644 index 000000000000..e5ed8fb8c8d1 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-mp067/index.json @@ -0,0 +1,31 @@ +{ + "id": 155233, + "slug": "tiger-fighter-1931-tora-mp067", + "name": "Tiger Fighter 1931 Tora! MP067", + "release_date": "2021-09-11", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181351" + ], + "created_at": "2026-07-10T10:10:46.810450", + "updated_at": "2026-07-10T10:10:46.810450", + "url": "/v1/games/tiger-fighter-1931-tora-mp067" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-mp068/index.json b/site/public/v1/games/tiger-fighter-1931-tora-mp068/index.json new file mode 100644 index 000000000000..9c32b1d16707 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-mp068/index.json @@ -0,0 +1,31 @@ +{ + "id": 155234, + "slug": "tiger-fighter-1931-tora-mp068", + "name": "Tiger Fighter 1931 Tora! MP068", + "release_date": "2021-09-11", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181352" + ], + "created_at": "2026-07-10T10:10:46.810450", + "updated_at": "2026-07-10T10:10:46.810450", + "url": "/v1/games/tiger-fighter-1931-tora-mp068" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-mp069/index.json b/site/public/v1/games/tiger-fighter-1931-tora-mp069/index.json new file mode 100644 index 000000000000..6e53d8727d4b --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-mp069/index.json @@ -0,0 +1,31 @@ +{ + "id": 155235, + "slug": "tiger-fighter-1931-tora-mp069", + "name": "Tiger Fighter 1931 Tora! MP069", + "release_date": "2021-09-11", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181353" + ], + "created_at": "2026-07-10T10:10:46.810450", + "updated_at": "2026-07-10T10:10:46.810450", + "url": "/v1/games/tiger-fighter-1931-tora-mp069" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-mp070/index.json b/site/public/v1/games/tiger-fighter-1931-tora-mp070/index.json new file mode 100644 index 000000000000..458410acbad6 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-mp070/index.json @@ -0,0 +1,31 @@ +{ + "id": 155236, + "slug": "tiger-fighter-1931-tora-mp070", + "name": "Tiger Fighter 1931 Tora! MP070", + "release_date": "2021-09-11", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181355" + ], + "created_at": "2026-07-10T10:10:46.811442", + "updated_at": "2026-07-10T10:10:46.811442", + "url": "/v1/games/tiger-fighter-1931-tora-mp070" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-mp071/index.json b/site/public/v1/games/tiger-fighter-1931-tora-mp071/index.json new file mode 100644 index 000000000000..7f93fa195857 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-mp071/index.json @@ -0,0 +1,31 @@ +{ + "id": 155237, + "slug": "tiger-fighter-1931-tora-mp071", + "name": "Tiger Fighter 1931 Tora! MP071", + "release_date": "2021-09-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181356" + ], + "created_at": "2026-07-10T10:10:46.811442", + "updated_at": "2026-07-10T10:10:46.811442", + "url": "/v1/games/tiger-fighter-1931-tora-mp071" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-mp072/index.json b/site/public/v1/games/tiger-fighter-1931-tora-mp072/index.json new file mode 100644 index 000000000000..8ee307698e78 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-mp072/index.json @@ -0,0 +1,31 @@ +{ + "id": 155238, + "slug": "tiger-fighter-1931-tora-mp072", + "name": "Tiger Fighter 1931 Tora! MP072", + "release_date": "2021-09-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181357" + ], + "created_at": "2026-07-10T10:10:46.811442", + "updated_at": "2026-07-10T10:10:46.811442", + "url": "/v1/games/tiger-fighter-1931-tora-mp072" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-mp073/index.json b/site/public/v1/games/tiger-fighter-1931-tora-mp073/index.json new file mode 100644 index 000000000000..c9e964762d27 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-mp073/index.json @@ -0,0 +1,31 @@ +{ + "id": 155239, + "slug": "tiger-fighter-1931-tora-mp073", + "name": "Tiger Fighter 1931 Tora! MP073", + "release_date": "2021-09-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181361" + ], + "created_at": "2026-07-10T10:10:46.811442", + "updated_at": "2026-07-10T10:10:46.811442", + "url": "/v1/games/tiger-fighter-1931-tora-mp073" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-mp074/index.json b/site/public/v1/games/tiger-fighter-1931-tora-mp074/index.json new file mode 100644 index 000000000000..815a69282698 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-mp074/index.json @@ -0,0 +1,31 @@ +{ + "id": 155240, + "slug": "tiger-fighter-1931-tora-mp074", + "name": "Tiger Fighter 1931 Tora! MP074", + "release_date": "2021-09-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181363" + ], + "created_at": "2026-07-10T10:10:46.812473", + "updated_at": "2026-07-10T10:10:46.812473", + "url": "/v1/games/tiger-fighter-1931-tora-mp074" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-mp075/index.json b/site/public/v1/games/tiger-fighter-1931-tora-mp075/index.json new file mode 100644 index 000000000000..feded05f7ccd --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-mp075/index.json @@ -0,0 +1,31 @@ +{ + "id": 155241, + "slug": "tiger-fighter-1931-tora-mp075", + "name": "Tiger Fighter 1931 Tora! MP075", + "release_date": "2021-09-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181364" + ], + "created_at": "2026-07-10T10:10:46.812473", + "updated_at": "2026-07-10T10:10:46.812473", + "url": "/v1/games/tiger-fighter-1931-tora-mp075" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-mp076/index.json b/site/public/v1/games/tiger-fighter-1931-tora-mp076/index.json new file mode 100644 index 000000000000..007cc2e2f0f5 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-mp076/index.json @@ -0,0 +1,31 @@ +{ + "id": 155242, + "slug": "tiger-fighter-1931-tora-mp076", + "name": "Tiger Fighter 1931 Tora! MP076", + "release_date": "2021-09-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181367" + ], + "created_at": "2026-07-10T10:10:46.812473", + "updated_at": "2026-07-10T10:10:46.812473", + "url": "/v1/games/tiger-fighter-1931-tora-mp076" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-mp077/index.json b/site/public/v1/games/tiger-fighter-1931-tora-mp077/index.json new file mode 100644 index 000000000000..c9af7591e03c --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-mp077/index.json @@ -0,0 +1,31 @@ +{ + "id": 155243, + "slug": "tiger-fighter-1931-tora-mp077", + "name": "Tiger Fighter 1931 Tora! MP077", + "release_date": "2021-09-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181369" + ], + "created_at": "2026-07-10T10:10:46.812473", + "updated_at": "2026-07-10T10:10:46.812473", + "url": "/v1/games/tiger-fighter-1931-tora-mp077" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-mp078/index.json b/site/public/v1/games/tiger-fighter-1931-tora-mp078/index.json new file mode 100644 index 000000000000..f04f87d94c10 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-mp078/index.json @@ -0,0 +1,31 @@ +{ + "id": 155244, + "slug": "tiger-fighter-1931-tora-mp078", + "name": "Tiger Fighter 1931 Tora! MP078", + "release_date": "2021-09-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181372" + ], + "created_at": "2026-07-10T10:10:46.812473", + "updated_at": "2026-07-10T10:10:46.812473", + "url": "/v1/games/tiger-fighter-1931-tora-mp078" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-mp079/index.json b/site/public/v1/games/tiger-fighter-1931-tora-mp079/index.json new file mode 100644 index 000000000000..c238416f1a59 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-mp079/index.json @@ -0,0 +1,31 @@ +{ + "id": 155245, + "slug": "tiger-fighter-1931-tora-mp079", + "name": "Tiger Fighter 1931 Tora! MP079", + "release_date": "2021-09-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181374" + ], + "created_at": "2026-07-10T10:10:46.813454", + "updated_at": "2026-07-10T10:10:46.813454", + "url": "/v1/games/tiger-fighter-1931-tora-mp079" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-mp080/index.json b/site/public/v1/games/tiger-fighter-1931-tora-mp080/index.json new file mode 100644 index 000000000000..87bb31cf834e --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-mp080/index.json @@ -0,0 +1,31 @@ +{ + "id": 155246, + "slug": "tiger-fighter-1931-tora-mp080", + "name": "Tiger Fighter 1931 Tora! MP080", + "release_date": "2021-09-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181378" + ], + "created_at": "2026-07-10T10:10:46.813454", + "updated_at": "2026-07-10T10:10:46.813454", + "url": "/v1/games/tiger-fighter-1931-tora-mp080" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-mp081/index.json b/site/public/v1/games/tiger-fighter-1931-tora-mp081/index.json new file mode 100644 index 000000000000..b9ca163657cc --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-mp081/index.json @@ -0,0 +1,31 @@ +{ + "id": 155247, + "slug": "tiger-fighter-1931-tora-mp081", + "name": "Tiger Fighter 1931 Tora! MP081", + "release_date": "2021-09-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181381" + ], + "created_at": "2026-07-10T10:10:46.813454", + "updated_at": "2026-07-10T10:10:46.813454", + "url": "/v1/games/tiger-fighter-1931-tora-mp081" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-mp082/index.json b/site/public/v1/games/tiger-fighter-1931-tora-mp082/index.json new file mode 100644 index 000000000000..bc1e8b1deb77 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-mp082/index.json @@ -0,0 +1,31 @@ +{ + "id": 155248, + "slug": "tiger-fighter-1931-tora-mp082", + "name": "Tiger Fighter 1931 Tora! MP082", + "release_date": "2021-09-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181393" + ], + "created_at": "2026-07-10T10:10:46.813454", + "updated_at": "2026-07-10T10:10:46.813454", + "url": "/v1/games/tiger-fighter-1931-tora-mp082" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-mp083/index.json b/site/public/v1/games/tiger-fighter-1931-tora-mp083/index.json new file mode 100644 index 000000000000..e3e135301b26 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-mp083/index.json @@ -0,0 +1,31 @@ +{ + "id": 155249, + "slug": "tiger-fighter-1931-tora-mp083", + "name": "Tiger Fighter 1931 Tora! MP083", + "release_date": "2021-09-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181395" + ], + "created_at": "2026-07-10T10:10:46.814374", + "updated_at": "2026-07-10T10:10:46.814374", + "url": "/v1/games/tiger-fighter-1931-tora-mp083" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-mp084/index.json b/site/public/v1/games/tiger-fighter-1931-tora-mp084/index.json new file mode 100644 index 000000000000..d67a4d4ec511 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-mp084/index.json @@ -0,0 +1,31 @@ +{ + "id": 155250, + "slug": "tiger-fighter-1931-tora-mp084", + "name": "Tiger Fighter 1931 Tora! MP084", + "release_date": "2021-09-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181397" + ], + "created_at": "2026-07-10T10:10:46.814374", + "updated_at": "2026-07-10T10:10:46.814374", + "url": "/v1/games/tiger-fighter-1931-tora-mp084" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-mp085/index.json b/site/public/v1/games/tiger-fighter-1931-tora-mp085/index.json new file mode 100644 index 000000000000..583eea2c08fa --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-mp085/index.json @@ -0,0 +1,31 @@ +{ + "id": 155251, + "slug": "tiger-fighter-1931-tora-mp085", + "name": "Tiger Fighter 1931 Tora! MP085", + "release_date": "2021-09-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181398" + ], + "created_at": "2026-07-10T10:10:46.814374", + "updated_at": "2026-07-10T10:10:46.814374", + "url": "/v1/games/tiger-fighter-1931-tora-mp085" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-mp086/index.json b/site/public/v1/games/tiger-fighter-1931-tora-mp086/index.json new file mode 100644 index 000000000000..364f96184fad --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-mp086/index.json @@ -0,0 +1,31 @@ +{ + "id": 155252, + "slug": "tiger-fighter-1931-tora-mp086", + "name": "Tiger Fighter 1931 Tora! MP086", + "release_date": "2021-09-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181401" + ], + "created_at": "2026-07-10T10:10:46.814374", + "updated_at": "2026-07-10T10:10:46.814374", + "url": "/v1/games/tiger-fighter-1931-tora-mp086" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-mp087/index.json b/site/public/v1/games/tiger-fighter-1931-tora-mp087/index.json new file mode 100644 index 000000000000..941d486a17db --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-mp087/index.json @@ -0,0 +1,31 @@ +{ + "id": 155253, + "slug": "tiger-fighter-1931-tora-mp087", + "name": "Tiger Fighter 1931 Tora! MP087", + "release_date": "2021-09-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181403" + ], + "created_at": "2026-07-10T10:10:46.815432", + "updated_at": "2026-07-10T10:10:46.815432", + "url": "/v1/games/tiger-fighter-1931-tora-mp087" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-mp088/index.json b/site/public/v1/games/tiger-fighter-1931-tora-mp088/index.json new file mode 100644 index 000000000000..a7e1401de87c --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-mp088/index.json @@ -0,0 +1,31 @@ +{ + "id": 155254, + "slug": "tiger-fighter-1931-tora-mp088", + "name": "Tiger Fighter 1931 Tora! MP088", + "release_date": "2021-09-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181404" + ], + "created_at": "2026-07-10T10:10:46.815432", + "updated_at": "2026-07-10T10:10:46.815432", + "url": "/v1/games/tiger-fighter-1931-tora-mp088" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-mp089/index.json b/site/public/v1/games/tiger-fighter-1931-tora-mp089/index.json new file mode 100644 index 000000000000..00a5cbddbf01 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-mp089/index.json @@ -0,0 +1,31 @@ +{ + "id": 155255, + "slug": "tiger-fighter-1931-tora-mp089", + "name": "Tiger Fighter 1931 Tora! MP089", + "release_date": "2021-09-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181407" + ], + "created_at": "2026-07-10T10:10:46.815432", + "updated_at": "2026-07-10T10:10:46.815432", + "url": "/v1/games/tiger-fighter-1931-tora-mp089" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-mp090/index.json b/site/public/v1/games/tiger-fighter-1931-tora-mp090/index.json new file mode 100644 index 000000000000..37573a0da2d8 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-mp090/index.json @@ -0,0 +1,31 @@ +{ + "id": 155256, + "slug": "tiger-fighter-1931-tora-mp090", + "name": "Tiger Fighter 1931 Tora! MP090", + "release_date": "2021-09-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181409" + ], + "created_at": "2026-07-10T10:10:46.815432", + "updated_at": "2026-07-10T10:10:46.815432", + "url": "/v1/games/tiger-fighter-1931-tora-mp090" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-mp091/index.json b/site/public/v1/games/tiger-fighter-1931-tora-mp091/index.json new file mode 100644 index 000000000000..38efa658f4d2 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-mp091/index.json @@ -0,0 +1,31 @@ +{ + "id": 155257, + "slug": "tiger-fighter-1931-tora-mp091", + "name": "Tiger Fighter 1931 Tora! MP091", + "release_date": "2021-09-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181411" + ], + "created_at": "2026-07-10T10:10:46.815432", + "updated_at": "2026-07-10T10:10:46.815432", + "url": "/v1/games/tiger-fighter-1931-tora-mp091" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-mp092/index.json b/site/public/v1/games/tiger-fighter-1931-tora-mp092/index.json new file mode 100644 index 000000000000..2e6278c08af6 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-mp092/index.json @@ -0,0 +1,31 @@ +{ + "id": 155258, + "slug": "tiger-fighter-1931-tora-mp092", + "name": "Tiger Fighter 1931 Tora! MP092", + "release_date": "2021-09-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181413" + ], + "created_at": "2026-07-10T10:10:46.816370", + "updated_at": "2026-07-10T10:10:46.816370", + "url": "/v1/games/tiger-fighter-1931-tora-mp092" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-mp093/index.json b/site/public/v1/games/tiger-fighter-1931-tora-mp093/index.json new file mode 100644 index 000000000000..fb66c8d92de8 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-mp093/index.json @@ -0,0 +1,31 @@ +{ + "id": 155259, + "slug": "tiger-fighter-1931-tora-mp093", + "name": "Tiger Fighter 1931 Tora! MP093", + "release_date": "2021-09-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181416" + ], + "created_at": "2026-07-10T10:10:46.816370", + "updated_at": "2026-07-10T10:10:46.816370", + "url": "/v1/games/tiger-fighter-1931-tora-mp093" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-mp094/index.json b/site/public/v1/games/tiger-fighter-1931-tora-mp094/index.json new file mode 100644 index 000000000000..696348849dd9 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-mp094/index.json @@ -0,0 +1,31 @@ +{ + "id": 155260, + "slug": "tiger-fighter-1931-tora-mp094", + "name": "Tiger Fighter 1931 Tora! MP094", + "release_date": "2021-09-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181418" + ], + "created_at": "2026-07-10T10:10:46.816370", + "updated_at": "2026-07-10T10:10:46.816370", + "url": "/v1/games/tiger-fighter-1931-tora-mp094" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-mp095/index.json b/site/public/v1/games/tiger-fighter-1931-tora-mp095/index.json new file mode 100644 index 000000000000..5c38b53d01ca --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-mp095/index.json @@ -0,0 +1,31 @@ +{ + "id": 155261, + "slug": "tiger-fighter-1931-tora-mp095", + "name": "Tiger Fighter 1931 Tora! MP095", + "release_date": "2021-09-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181419" + ], + "created_at": "2026-07-10T10:10:46.816370", + "updated_at": "2026-07-10T10:10:46.816370", + "url": "/v1/games/tiger-fighter-1931-tora-mp095" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-mp096/index.json b/site/public/v1/games/tiger-fighter-1931-tora-mp096/index.json new file mode 100644 index 000000000000..4b5d75086bfd --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-mp096/index.json @@ -0,0 +1,31 @@ +{ + "id": 155262, + "slug": "tiger-fighter-1931-tora-mp096", + "name": "Tiger Fighter 1931 Tora! MP096", + "release_date": "2021-09-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181421" + ], + "created_at": "2026-07-10T10:10:46.817369", + "updated_at": "2026-07-10T10:10:46.817369", + "url": "/v1/games/tiger-fighter-1931-tora-mp096" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-mp097/index.json b/site/public/v1/games/tiger-fighter-1931-tora-mp097/index.json new file mode 100644 index 000000000000..b6471661af2b --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-mp097/index.json @@ -0,0 +1,31 @@ +{ + "id": 155263, + "slug": "tiger-fighter-1931-tora-mp097", + "name": "Tiger Fighter 1931 Tora! MP097", + "release_date": "2021-09-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181422" + ], + "created_at": "2026-07-10T10:10:46.817369", + "updated_at": "2026-07-10T10:10:46.817369", + "url": "/v1/games/tiger-fighter-1931-tora-mp097" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-mp098/index.json b/site/public/v1/games/tiger-fighter-1931-tora-mp098/index.json new file mode 100644 index 000000000000..3d7c02f8a5e0 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-mp098/index.json @@ -0,0 +1,31 @@ +{ + "id": 155264, + "slug": "tiger-fighter-1931-tora-mp098", + "name": "Tiger Fighter 1931 Tora! MP098", + "release_date": "2021-09-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181423" + ], + "created_at": "2026-07-10T10:10:46.817369", + "updated_at": "2026-07-10T10:10:46.817369", + "url": "/v1/games/tiger-fighter-1931-tora-mp098" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-mp099/index.json b/site/public/v1/games/tiger-fighter-1931-tora-mp099/index.json new file mode 100644 index 000000000000..88b7555ace37 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-mp099/index.json @@ -0,0 +1,31 @@ +{ + "id": 155265, + "slug": "tiger-fighter-1931-tora-mp099", + "name": "Tiger Fighter 1931 Tora! MP099", + "release_date": "2021-09-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181424" + ], + "created_at": "2026-07-10T10:10:46.817369", + "updated_at": "2026-07-10T10:10:46.817369", + "url": "/v1/games/tiger-fighter-1931-tora-mp099" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-mp100/index.json b/site/public/v1/games/tiger-fighter-1931-tora-mp100/index.json new file mode 100644 index 000000000000..77f7f5af7669 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-mp100/index.json @@ -0,0 +1,31 @@ +{ + "id": 155266, + "slug": "tiger-fighter-1931-tora-mp100", + "name": "Tiger Fighter 1931 Tora! MP100", + "release_date": "2021-09-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181425" + ], + "created_at": "2026-07-10T10:10:46.817369", + "updated_at": "2026-07-10T10:10:46.817369", + "url": "/v1/games/tiger-fighter-1931-tora-mp100" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-mp001/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp001/index.json new file mode 100644 index 000000000000..f7cb70c5e73f --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp001/index.json @@ -0,0 +1,31 @@ +{ + "id": 155267, + "slug": "tiger-fighter-1931-tora-tora-mp001", + "name": "Tiger Fighter 1931 Tora!Tora! MP001", + "release_date": "2021-08-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181433" + ], + "created_at": "2026-07-10T10:10:46.818432", + "updated_at": "2026-07-10T10:10:46.818432", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp001" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-mp002/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp002/index.json new file mode 100644 index 000000000000..c4363f4dcb3a --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp002/index.json @@ -0,0 +1,31 @@ +{ + "id": 155268, + "slug": "tiger-fighter-1931-tora-tora-mp002", + "name": "Tiger Fighter 1931 Tora!Tora! MP002", + "release_date": "2021-08-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181437" + ], + "created_at": "2026-07-10T10:10:46.818432", + "updated_at": "2026-07-10T10:10:46.818432", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp002" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-mp003/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp003/index.json new file mode 100644 index 000000000000..9f894db17bd2 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp003/index.json @@ -0,0 +1,31 @@ +{ + "id": 155269, + "slug": "tiger-fighter-1931-tora-tora-mp003", + "name": "Tiger Fighter 1931 Tora!Tora! MP003", + "release_date": "2021-08-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181438" + ], + "created_at": "2026-07-10T10:10:46.818432", + "updated_at": "2026-07-10T10:10:46.818432", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp003" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-mp004/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp004/index.json new file mode 100644 index 000000000000..baec2a7cc34e --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp004/index.json @@ -0,0 +1,31 @@ +{ + "id": 155270, + "slug": "tiger-fighter-1931-tora-tora-mp004", + "name": "Tiger Fighter 1931 Tora!Tora! MP004", + "release_date": "2021-08-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181439" + ], + "created_at": "2026-07-10T10:10:46.818432", + "updated_at": "2026-07-10T10:10:46.818432", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp004" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-mp005/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp005/index.json new file mode 100644 index 000000000000..c93859c07d4e --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp005/index.json @@ -0,0 +1,31 @@ +{ + "id": 155271, + "slug": "tiger-fighter-1931-tora-tora-mp005", + "name": "Tiger Fighter 1931 Tora!Tora! MP005", + "release_date": "2021-08-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181441" + ], + "created_at": "2026-07-10T10:10:46.818432", + "updated_at": "2026-07-10T10:10:46.818432", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp005" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-mp006/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp006/index.json new file mode 100644 index 000000000000..b022f0662c9e --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp006/index.json @@ -0,0 +1,31 @@ +{ + "id": 155272, + "slug": "tiger-fighter-1931-tora-tora-mp006", + "name": "Tiger Fighter 1931 Tora!Tora! MP006", + "release_date": "2021-08-14", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181443" + ], + "created_at": "2026-07-10T10:10:46.819448", + "updated_at": "2026-07-10T10:10:46.819448", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp006" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-mp007/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp007/index.json new file mode 100644 index 000000000000..a352238871e3 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp007/index.json @@ -0,0 +1,31 @@ +{ + "id": 155273, + "slug": "tiger-fighter-1931-tora-tora-mp007", + "name": "Tiger Fighter 1931 Tora!Tora! MP007", + "release_date": "2021-08-14", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181444" + ], + "created_at": "2026-07-10T10:10:46.819448", + "updated_at": "2026-07-10T10:10:46.819448", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp007" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-mp008/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp008/index.json new file mode 100644 index 000000000000..4503756ff8a0 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp008/index.json @@ -0,0 +1,31 @@ +{ + "id": 155274, + "slug": "tiger-fighter-1931-tora-tora-mp008", + "name": "Tiger Fighter 1931 Tora!Tora! MP008", + "release_date": "2021-08-14", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181446" + ], + "created_at": "2026-07-10T10:10:46.819448", + "updated_at": "2026-07-10T10:10:46.819448", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp008" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-mp009/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp009/index.json new file mode 100644 index 000000000000..db197a7c6a2a --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp009/index.json @@ -0,0 +1,31 @@ +{ + "id": 155275, + "slug": "tiger-fighter-1931-tora-tora-mp009", + "name": "Tiger Fighter 1931 Tora!Tora! MP009", + "release_date": "2021-08-14", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181448" + ], + "created_at": "2026-07-10T10:10:46.819448", + "updated_at": "2026-07-10T10:10:46.819448", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp009" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-mp010/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp010/index.json new file mode 100644 index 000000000000..ac3bc56cd473 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp010/index.json @@ -0,0 +1,31 @@ +{ + "id": 155276, + "slug": "tiger-fighter-1931-tora-tora-mp010", + "name": "Tiger Fighter 1931 Tora!Tora! MP010", + "release_date": "2021-08-14", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181450" + ], + "created_at": "2026-07-10T10:10:46.820449", + "updated_at": "2026-07-10T10:10:46.820449", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp010" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-mp011/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp011/index.json new file mode 100644 index 000000000000..7914393c13b4 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp011/index.json @@ -0,0 +1,31 @@ +{ + "id": 155277, + "slug": "tiger-fighter-1931-tora-tora-mp011", + "name": "Tiger Fighter 1931 Tora!Tora! MP011", + "release_date": "2021-08-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181451" + ], + "created_at": "2026-07-10T10:10:46.820449", + "updated_at": "2026-07-10T10:10:46.820449", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp011" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-mp012/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp012/index.json new file mode 100644 index 000000000000..bf8e75d6a09d --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp012/index.json @@ -0,0 +1,31 @@ +{ + "id": 155278, + "slug": "tiger-fighter-1931-tora-tora-mp012", + "name": "Tiger Fighter 1931 Tora!Tora! MP012", + "release_date": "2021-08-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181453" + ], + "created_at": "2026-07-10T10:10:46.820449", + "updated_at": "2026-07-10T10:10:46.820449", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp012" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-mp013/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp013/index.json new file mode 100644 index 000000000000..18ff7b0da41d --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp013/index.json @@ -0,0 +1,31 @@ +{ + "id": 155279, + "slug": "tiger-fighter-1931-tora-tora-mp013", + "name": "Tiger Fighter 1931 Tora!Tora! MP013", + "release_date": "2021-08-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181455" + ], + "created_at": "2026-07-10T10:10:46.820449", + "updated_at": "2026-07-10T10:10:46.820449", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp013" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-mp014/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp014/index.json new file mode 100644 index 000000000000..7fe75b41a27f --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp014/index.json @@ -0,0 +1,31 @@ +{ + "id": 155280, + "slug": "tiger-fighter-1931-tora-tora-mp014", + "name": "Tiger Fighter 1931 Tora!Tora! MP014", + "release_date": "2021-08-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181456" + ], + "created_at": "2026-07-10T10:10:46.820449", + "updated_at": "2026-07-10T10:10:46.820449", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp014" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-mp015/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp015/index.json new file mode 100644 index 000000000000..9449d916cbcb --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp015/index.json @@ -0,0 +1,31 @@ +{ + "id": 155281, + "slug": "tiger-fighter-1931-tora-tora-mp015", + "name": "Tiger Fighter 1931 Tora!Tora! MP015", + "release_date": "2021-08-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181457" + ], + "created_at": "2026-07-10T10:10:46.821469", + "updated_at": "2026-07-10T10:10:46.821469", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp015" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-mp016/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp016/index.json new file mode 100644 index 000000000000..d07e2d7b804e --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp016/index.json @@ -0,0 +1,31 @@ +{ + "id": 155282, + "slug": "tiger-fighter-1931-tora-tora-mp016", + "name": "Tiger Fighter 1931 Tora!Tora! MP016", + "release_date": "2021-08-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181460" + ], + "created_at": "2026-07-10T10:10:46.821469", + "updated_at": "2026-07-10T10:10:46.821469", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp016" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-mp017/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp017/index.json new file mode 100644 index 000000000000..e351b0b90c48 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp017/index.json @@ -0,0 +1,31 @@ +{ + "id": 155283, + "slug": "tiger-fighter-1931-tora-tora-mp017", + "name": "Tiger Fighter 1931 Tora!Tora! MP017", + "release_date": "2021-08-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181462" + ], + "created_at": "2026-07-10T10:10:46.821469", + "updated_at": "2026-07-10T10:10:46.821469", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp017" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-mp018/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp018/index.json new file mode 100644 index 000000000000..05bda6954330 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp018/index.json @@ -0,0 +1,31 @@ +{ + "id": 155284, + "slug": "tiger-fighter-1931-tora-tora-mp018", + "name": "Tiger Fighter 1931 Tora!Tora! MP018", + "release_date": "2021-08-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181464" + ], + "created_at": "2026-07-10T10:10:46.822446", + "updated_at": "2026-07-10T10:10:46.822446", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp018" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-mp019/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp019/index.json new file mode 100644 index 000000000000..4fe10f06789c --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp019/index.json @@ -0,0 +1,31 @@ +{ + "id": 155285, + "slug": "tiger-fighter-1931-tora-tora-mp019", + "name": "Tiger Fighter 1931 Tora!Tora! MP019", + "release_date": "2021-08-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181465" + ], + "created_at": "2026-07-10T10:10:46.822446", + "updated_at": "2026-07-10T10:10:46.822446", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp019" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-mp020/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp020/index.json new file mode 100644 index 000000000000..47190b87368a --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp020/index.json @@ -0,0 +1,31 @@ +{ + "id": 155286, + "slug": "tiger-fighter-1931-tora-tora-mp020", + "name": "Tiger Fighter 1931 Tora!Tora! MP020", + "release_date": "2021-08-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181466" + ], + "created_at": "2026-07-10T10:10:46.822446", + "updated_at": "2026-07-10T10:10:46.822446", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp020" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-mp021/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp021/index.json new file mode 100644 index 000000000000..3310862f68b7 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp021/index.json @@ -0,0 +1,31 @@ +{ + "id": 155287, + "slug": "tiger-fighter-1931-tora-tora-mp021", + "name": "Tiger Fighter 1931 Tora!Tora! MP021", + "release_date": "2021-08-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181467" + ], + "created_at": "2026-07-10T10:10:46.822446", + "updated_at": "2026-07-10T10:10:46.822446", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp021" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-mp022/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp022/index.json new file mode 100644 index 000000000000..df2ca47d9f30 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp022/index.json @@ -0,0 +1,31 @@ +{ + "id": 155288, + "slug": "tiger-fighter-1931-tora-tora-mp022", + "name": "Tiger Fighter 1931 Tora!Tora! MP022", + "release_date": "2021-08-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181468" + ], + "created_at": "2026-07-10T10:10:46.822446", + "updated_at": "2026-07-10T10:10:46.822446", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp022" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-mp023/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp023/index.json new file mode 100644 index 000000000000..07d5fbc22ebe --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp023/index.json @@ -0,0 +1,31 @@ +{ + "id": 155289, + "slug": "tiger-fighter-1931-tora-tora-mp023", + "name": "Tiger Fighter 1931 Tora!Tora! MP023", + "release_date": "2021-08-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181471" + ], + "created_at": "2026-07-10T10:10:46.823428", + "updated_at": "2026-07-10T10:10:46.823428", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp023" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-mp024/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp024/index.json new file mode 100644 index 000000000000..5a81d62e45a4 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp024/index.json @@ -0,0 +1,31 @@ +{ + "id": 155290, + "slug": "tiger-fighter-1931-tora-tora-mp024", + "name": "Tiger Fighter 1931 Tora!Tora! MP024", + "release_date": "2021-08-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181473" + ], + "created_at": "2026-07-10T10:10:46.823428", + "updated_at": "2026-07-10T10:10:46.823428", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp024" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-mp025/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp025/index.json new file mode 100644 index 000000000000..0bac61c99902 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp025/index.json @@ -0,0 +1,31 @@ +{ + "id": 155291, + "slug": "tiger-fighter-1931-tora-tora-mp025", + "name": "Tiger Fighter 1931 Tora!Tora! MP025", + "release_date": "2021-08-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181474" + ], + "created_at": "2026-07-10T10:10:46.823428", + "updated_at": "2026-07-10T10:10:46.823428", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp025" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-mp026/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp026/index.json new file mode 100644 index 000000000000..bc8b81491372 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp026/index.json @@ -0,0 +1,31 @@ +{ + "id": 155292, + "slug": "tiger-fighter-1931-tora-tora-mp026", + "name": "Tiger Fighter 1931 Tora!Tora! MP026", + "release_date": "2021-09-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181476" + ], + "created_at": "2026-07-10T10:10:46.823428", + "updated_at": "2026-07-10T10:10:46.823428", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp026" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-mp027/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp027/index.json new file mode 100644 index 000000000000..8340850010b6 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp027/index.json @@ -0,0 +1,31 @@ +{ + "id": 155293, + "slug": "tiger-fighter-1931-tora-tora-mp027", + "name": "Tiger Fighter 1931 Tora!Tora! MP027", + "release_date": "2021-09-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181477" + ], + "created_at": "2026-07-10T10:10:46.823428", + "updated_at": "2026-07-10T10:10:46.823428", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp027" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-mp028/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp028/index.json new file mode 100644 index 000000000000..9c5795e3b42a --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp028/index.json @@ -0,0 +1,31 @@ +{ + "id": 155294, + "slug": "tiger-fighter-1931-tora-tora-mp028", + "name": "Tiger Fighter 1931 Tora!Tora! MP028", + "release_date": "2021-09-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181478" + ], + "created_at": "2026-07-10T10:10:46.824483", + "updated_at": "2026-07-10T10:10:46.824483", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp028" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-mp029/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp029/index.json new file mode 100644 index 000000000000..0b2f54bb0c37 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp029/index.json @@ -0,0 +1,31 @@ +{ + "id": 155295, + "slug": "tiger-fighter-1931-tora-tora-mp029", + "name": "Tiger Fighter 1931 Tora!Tora! MP029", + "release_date": "2021-09-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181484" + ], + "created_at": "2026-07-10T10:10:46.824483", + "updated_at": "2026-07-10T10:10:46.824483", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp029" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-mp030/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp030/index.json new file mode 100644 index 000000000000..cc584ae67bb0 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp030/index.json @@ -0,0 +1,31 @@ +{ + "id": 155296, + "slug": "tiger-fighter-1931-tora-tora-mp030", + "name": "Tiger Fighter 1931 Tora!Tora! MP030", + "release_date": "2021-09-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181489" + ], + "created_at": "2026-07-10T10:10:46.824483", + "updated_at": "2026-07-10T10:10:46.824483", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp030" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-mp031/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp031/index.json new file mode 100644 index 000000000000..528c3a03f39f --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp031/index.json @@ -0,0 +1,31 @@ +{ + "id": 155297, + "slug": "tiger-fighter-1931-tora-tora-mp031", + "name": "Tiger Fighter 1931 Tora!Tora! MP031", + "release_date": "2021-09-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181490" + ], + "created_at": "2026-07-10T10:10:46.824483", + "updated_at": "2026-07-10T10:10:46.824483", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp031" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-mp032/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp032/index.json new file mode 100644 index 000000000000..7e63d02414cb --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp032/index.json @@ -0,0 +1,31 @@ +{ + "id": 155298, + "slug": "tiger-fighter-1931-tora-tora-mp032", + "name": "Tiger Fighter 1931 Tora!Tora! MP032", + "release_date": "2021-09-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181492" + ], + "created_at": "2026-07-10T10:10:46.825431", + "updated_at": "2026-07-10T10:10:46.825431", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp032" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-mp033/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp033/index.json new file mode 100644 index 000000000000..8caa63e1b817 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp033/index.json @@ -0,0 +1,31 @@ +{ + "id": 155299, + "slug": "tiger-fighter-1931-tora-tora-mp033", + "name": "Tiger Fighter 1931 Tora!Tora! MP033", + "release_date": "2021-09-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181494" + ], + "created_at": "2026-07-10T10:10:46.825431", + "updated_at": "2026-07-10T10:10:46.825431", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp033" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-mp034/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp034/index.json new file mode 100644 index 000000000000..eaf06523ccb5 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp034/index.json @@ -0,0 +1,31 @@ +{ + "id": 155300, + "slug": "tiger-fighter-1931-tora-tora-mp034", + "name": "Tiger Fighter 1931 Tora!Tora! MP034", + "release_date": "2021-09-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181501" + ], + "created_at": "2026-07-10T10:10:46.825431", + "updated_at": "2026-07-10T10:10:46.825431", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp034" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-mp035/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp035/index.json new file mode 100644 index 000000000000..bcbdf9c58474 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp035/index.json @@ -0,0 +1,31 @@ +{ + "id": 155301, + "slug": "tiger-fighter-1931-tora-tora-mp035", + "name": "Tiger Fighter 1931 Tora!Tora! MP035", + "release_date": "2021-09-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181514" + ], + "created_at": "2026-07-10T10:10:46.825431", + "updated_at": "2026-07-10T10:10:46.825431", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp035" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-mp036/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp036/index.json new file mode 100644 index 000000000000..26277cd361c2 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp036/index.json @@ -0,0 +1,31 @@ +{ + "id": 155302, + "slug": "tiger-fighter-1931-tora-tora-mp036", + "name": "Tiger Fighter 1931 Tora!Tora! MP036", + "release_date": "2021-09-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181519" + ], + "created_at": "2026-07-10T10:10:46.825431", + "updated_at": "2026-07-10T10:10:46.825431", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp036" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-mp037/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp037/index.json new file mode 100644 index 000000000000..7fb50e5fbcfc --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp037/index.json @@ -0,0 +1,31 @@ +{ + "id": 155303, + "slug": "tiger-fighter-1931-tora-tora-mp037", + "name": "Tiger Fighter 1931 Tora!Tora! MP037", + "release_date": "2021-09-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181526" + ], + "created_at": "2026-07-10T10:10:46.826443", + "updated_at": "2026-07-10T10:10:46.826443", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp037" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-mp038/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp038/index.json new file mode 100644 index 000000000000..03399664e6e0 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp038/index.json @@ -0,0 +1,31 @@ +{ + "id": 155304, + "slug": "tiger-fighter-1931-tora-tora-mp038", + "name": "Tiger Fighter 1931 Tora!Tora! MP038", + "release_date": "2021-09-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181533" + ], + "created_at": "2026-07-10T10:10:46.826443", + "updated_at": "2026-07-10T10:10:46.826443", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp038" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-mp039/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp039/index.json new file mode 100644 index 000000000000..9d5ac9589234 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp039/index.json @@ -0,0 +1,31 @@ +{ + "id": 155305, + "slug": "tiger-fighter-1931-tora-tora-mp039", + "name": "Tiger Fighter 1931 Tora!Tora! MP039", + "release_date": "2021-09-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181538" + ], + "created_at": "2026-07-10T10:10:46.826443", + "updated_at": "2026-07-10T10:10:46.826443", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp039" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-mp040/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp040/index.json new file mode 100644 index 000000000000..b44e74fc6934 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp040/index.json @@ -0,0 +1,31 @@ +{ + "id": 155306, + "slug": "tiger-fighter-1931-tora-tora-mp040", + "name": "Tiger Fighter 1931 Tora!Tora! MP040", + "release_date": "2021-09-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181540" + ], + "created_at": "2026-07-10T10:10:46.826443", + "updated_at": "2026-07-10T10:10:46.826443", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp040" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-mp041/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp041/index.json new file mode 100644 index 000000000000..ec3c53da4d90 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp041/index.json @@ -0,0 +1,31 @@ +{ + "id": 155307, + "slug": "tiger-fighter-1931-tora-tora-mp041", + "name": "Tiger Fighter 1931 Tora!Tora! MP041", + "release_date": "2021-09-09", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181542" + ], + "created_at": "2026-07-10T10:10:46.827451", + "updated_at": "2026-07-10T10:10:46.827451", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp041" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-mp042/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp042/index.json new file mode 100644 index 000000000000..1759133aed9a --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp042/index.json @@ -0,0 +1,31 @@ +{ + "id": 155308, + "slug": "tiger-fighter-1931-tora-tora-mp042", + "name": "Tiger Fighter 1931 Tora!Tora! MP042", + "release_date": "2021-09-09", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181544" + ], + "created_at": "2026-07-10T10:10:46.827451", + "updated_at": "2026-07-10T10:10:46.827451", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp042" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-mp043/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp043/index.json new file mode 100644 index 000000000000..011d0517f706 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp043/index.json @@ -0,0 +1,31 @@ +{ + "id": 155309, + "slug": "tiger-fighter-1931-tora-tora-mp043", + "name": "Tiger Fighter 1931 Tora!Tora! MP043", + "release_date": "2021-09-09", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181545" + ], + "created_at": "2026-07-10T10:10:46.827451", + "updated_at": "2026-07-10T10:10:46.827451", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp043" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-mp044/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp044/index.json new file mode 100644 index 000000000000..fd89a401c6b5 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp044/index.json @@ -0,0 +1,31 @@ +{ + "id": 155310, + "slug": "tiger-fighter-1931-tora-tora-mp044", + "name": "Tiger Fighter 1931 Tora!Tora! MP044", + "release_date": "2021-09-09", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181547" + ], + "created_at": "2026-07-10T10:10:46.827451", + "updated_at": "2026-07-10T10:10:46.827451", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp044" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-mp045/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp045/index.json new file mode 100644 index 000000000000..aeaecd8d7ef7 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp045/index.json @@ -0,0 +1,31 @@ +{ + "id": 155311, + "slug": "tiger-fighter-1931-tora-tora-mp045", + "name": "Tiger Fighter 1931 Tora!Tora! MP045", + "release_date": "2021-09-09", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181549" + ], + "created_at": "2026-07-10T10:10:46.827451", + "updated_at": "2026-07-10T10:10:46.827451", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp045" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-mp046/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp046/index.json new file mode 100644 index 000000000000..33b3417a6846 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp046/index.json @@ -0,0 +1,31 @@ +{ + "id": 155312, + "slug": "tiger-fighter-1931-tora-tora-mp046", + "name": "Tiger Fighter 1931 Tora!Tora! MP046", + "release_date": "2021-09-09", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181551" + ], + "created_at": "2026-07-10T10:10:46.828450", + "updated_at": "2026-07-10T10:10:46.828450", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp046" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-mp047/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp047/index.json new file mode 100644 index 000000000000..efcd1f4a4da0 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp047/index.json @@ -0,0 +1,31 @@ +{ + "id": 155313, + "slug": "tiger-fighter-1931-tora-tora-mp047", + "name": "Tiger Fighter 1931 Tora!Tora! MP047", + "release_date": "2021-09-09", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181554" + ], + "created_at": "2026-07-10T10:10:46.828450", + "updated_at": "2026-07-10T10:10:46.828450", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp047" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-mp048/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp048/index.json new file mode 100644 index 000000000000..5683d277ef7f --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp048/index.json @@ -0,0 +1,31 @@ +{ + "id": 155314, + "slug": "tiger-fighter-1931-tora-tora-mp048", + "name": "Tiger Fighter 1931 Tora!Tora! MP048", + "release_date": "2021-09-09", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181556" + ], + "created_at": "2026-07-10T10:10:46.828450", + "updated_at": "2026-07-10T10:10:46.828450", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp048" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-mp049/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp049/index.json new file mode 100644 index 000000000000..51637848e832 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp049/index.json @@ -0,0 +1,31 @@ +{ + "id": 155315, + "slug": "tiger-fighter-1931-tora-tora-mp049", + "name": "Tiger Fighter 1931 Tora!Tora! MP049", + "release_date": "2021-09-09", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181557" + ], + "created_at": "2026-07-10T10:10:46.828450", + "updated_at": "2026-07-10T10:10:46.828450", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp049" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-mp050/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp050/index.json new file mode 100644 index 000000000000..db890ea05d4f --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp050/index.json @@ -0,0 +1,31 @@ +{ + "id": 155316, + "slug": "tiger-fighter-1931-tora-tora-mp050", + "name": "Tiger Fighter 1931 Tora!Tora! MP050", + "release_date": "2021-09-09", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181560" + ], + "created_at": "2026-07-10T10:10:46.828450", + "updated_at": "2026-07-10T10:10:46.828450", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp050" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-mp051/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp051/index.json new file mode 100644 index 000000000000..a98ecf9258dd --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp051/index.json @@ -0,0 +1,31 @@ +{ + "id": 155317, + "slug": "tiger-fighter-1931-tora-tora-mp051", + "name": "Tiger Fighter 1931 Tora!Tora! MP051", + "release_date": "2021-09-11", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181562" + ], + "created_at": "2026-07-10T10:10:46.829482", + "updated_at": "2026-07-10T10:10:46.829482", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp051" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-mp052/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp052/index.json new file mode 100644 index 000000000000..8a7b43bb8db0 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp052/index.json @@ -0,0 +1,31 @@ +{ + "id": 155318, + "slug": "tiger-fighter-1931-tora-tora-mp052", + "name": "Tiger Fighter 1931 Tora!Tora! MP052", + "release_date": "2021-09-11", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181563" + ], + "created_at": "2026-07-10T10:10:46.829482", + "updated_at": "2026-07-10T10:10:46.829482", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp052" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-mp053/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp053/index.json new file mode 100644 index 000000000000..c61e2af78f2f --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp053/index.json @@ -0,0 +1,31 @@ +{ + "id": 155319, + "slug": "tiger-fighter-1931-tora-tora-mp053", + "name": "Tiger Fighter 1931 Tora!Tora! MP053", + "release_date": "2021-09-11", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181566" + ], + "created_at": "2026-07-10T10:10:46.829482", + "updated_at": "2026-07-10T10:10:46.829482", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp053" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-mp054/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp054/index.json new file mode 100644 index 000000000000..f41ff92706ab --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp054/index.json @@ -0,0 +1,31 @@ +{ + "id": 155320, + "slug": "tiger-fighter-1931-tora-tora-mp054", + "name": "Tiger Fighter 1931 Tora!Tora! MP054", + "release_date": "2021-09-11", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181568" + ], + "created_at": "2026-07-10T10:10:46.829482", + "updated_at": "2026-07-10T10:10:46.829482", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp054" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-mp055/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp055/index.json new file mode 100644 index 000000000000..5d3212a7d9cd --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp055/index.json @@ -0,0 +1,31 @@ +{ + "id": 155321, + "slug": "tiger-fighter-1931-tora-tora-mp055", + "name": "Tiger Fighter 1931 Tora!Tora! MP055", + "release_date": "2021-09-11", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181570" + ], + "created_at": "2026-07-10T10:10:46.830433", + "updated_at": "2026-07-10T10:10:46.830433", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp055" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-mp056/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp056/index.json new file mode 100644 index 000000000000..92092cae3ea2 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp056/index.json @@ -0,0 +1,31 @@ +{ + "id": 155322, + "slug": "tiger-fighter-1931-tora-tora-mp056", + "name": "Tiger Fighter 1931 Tora!Tora! MP056", + "release_date": "2021-09-11", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181571" + ], + "created_at": "2026-07-10T10:10:46.830433", + "updated_at": "2026-07-10T10:10:46.830433", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp056" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-mp057/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp057/index.json new file mode 100644 index 000000000000..e5bc367ef733 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp057/index.json @@ -0,0 +1,31 @@ +{ + "id": 155323, + "slug": "tiger-fighter-1931-tora-tora-mp057", + "name": "Tiger Fighter 1931 Tora!Tora! MP057", + "release_date": "2021-09-11", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181573" + ], + "created_at": "2026-07-10T10:10:46.830433", + "updated_at": "2026-07-10T10:10:46.830433", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp057" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-mp058/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp058/index.json new file mode 100644 index 000000000000..3c0fa88382c3 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp058/index.json @@ -0,0 +1,31 @@ +{ + "id": 155324, + "slug": "tiger-fighter-1931-tora-tora-mp058", + "name": "Tiger Fighter 1931 Tora!Tora! MP058", + "release_date": "2021-09-11", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181575" + ], + "created_at": "2026-07-10T10:10:46.830433", + "updated_at": "2026-07-10T10:10:46.830433", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp058" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-mp059/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp059/index.json new file mode 100644 index 000000000000..4f410084d832 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp059/index.json @@ -0,0 +1,31 @@ +{ + "id": 155325, + "slug": "tiger-fighter-1931-tora-tora-mp059", + "name": "Tiger Fighter 1931 Tora!Tora! MP059", + "release_date": "2021-09-11", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181580" + ], + "created_at": "2026-07-10T10:10:46.830433", + "updated_at": "2026-07-10T10:10:46.830433", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp059" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-mp060/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp060/index.json new file mode 100644 index 000000000000..bd3d546ee2a8 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp060/index.json @@ -0,0 +1,31 @@ +{ + "id": 155326, + "slug": "tiger-fighter-1931-tora-tora-mp060", + "name": "Tiger Fighter 1931 Tora!Tora! MP060", + "release_date": "2021-09-11", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181582" + ], + "created_at": "2026-07-10T10:10:46.831442", + "updated_at": "2026-07-10T10:10:46.831442", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp060" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-mp061/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp061/index.json new file mode 100644 index 000000000000..b55c77b153b1 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp061/index.json @@ -0,0 +1,31 @@ +{ + "id": 155327, + "slug": "tiger-fighter-1931-tora-tora-mp061", + "name": "Tiger Fighter 1931 Tora!Tora! MP061", + "release_date": "2021-09-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181583" + ], + "created_at": "2026-07-10T10:10:46.831442", + "updated_at": "2026-07-10T10:10:46.831442", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp061" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-mp062/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp062/index.json new file mode 100644 index 000000000000..afa6209777ce --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp062/index.json @@ -0,0 +1,31 @@ +{ + "id": 155328, + "slug": "tiger-fighter-1931-tora-tora-mp062", + "name": "Tiger Fighter 1931 Tora!Tora! MP062", + "release_date": "2021-09-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181584" + ], + "created_at": "2026-07-10T10:10:46.831442", + "updated_at": "2026-07-10T10:10:46.831442", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp062" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-mp063/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp063/index.json new file mode 100644 index 000000000000..31e7d6c78fa8 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp063/index.json @@ -0,0 +1,31 @@ +{ + "id": 155329, + "slug": "tiger-fighter-1931-tora-tora-mp063", + "name": "Tiger Fighter 1931 Tora!Tora! MP063", + "release_date": "2021-09-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181587" + ], + "created_at": "2026-07-10T10:10:46.831442", + "updated_at": "2026-07-10T10:10:46.831442", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp063" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-mp064/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp064/index.json new file mode 100644 index 000000000000..9ee9db2dc089 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp064/index.json @@ -0,0 +1,31 @@ +{ + "id": 155330, + "slug": "tiger-fighter-1931-tora-tora-mp064", + "name": "Tiger Fighter 1931 Tora!Tora! MP064", + "release_date": "2021-09-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181603" + ], + "created_at": "2026-07-10T10:10:46.832459", + "updated_at": "2026-07-10T10:10:46.832459", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp064" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-mp065/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp065/index.json new file mode 100644 index 000000000000..077365b73402 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp065/index.json @@ -0,0 +1,31 @@ +{ + "id": 155331, + "slug": "tiger-fighter-1931-tora-tora-mp065", + "name": "Tiger Fighter 1931 Tora!Tora! MP065", + "release_date": "2021-09-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181604" + ], + "created_at": "2026-07-10T10:10:46.832459", + "updated_at": "2026-07-10T10:10:46.832459", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp065" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-mp066/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp066/index.json new file mode 100644 index 000000000000..e994206ec080 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp066/index.json @@ -0,0 +1,31 @@ +{ + "id": 155332, + "slug": "tiger-fighter-1931-tora-tora-mp066", + "name": "Tiger Fighter 1931 Tora!Tora! MP066", + "release_date": "2021-09-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181607" + ], + "created_at": "2026-07-10T10:10:46.832459", + "updated_at": "2026-07-10T10:10:46.832459", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp066" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-mp067/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp067/index.json new file mode 100644 index 000000000000..0fb4a395ee8c --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp067/index.json @@ -0,0 +1,31 @@ +{ + "id": 155333, + "slug": "tiger-fighter-1931-tora-tora-mp067", + "name": "Tiger Fighter 1931 Tora!Tora! MP067", + "release_date": "2021-09-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181609" + ], + "created_at": "2026-07-10T10:10:46.832459", + "updated_at": "2026-07-10T10:10:46.832459", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp067" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-mp068/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp068/index.json new file mode 100644 index 000000000000..e7b7f44541af --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp068/index.json @@ -0,0 +1,31 @@ +{ + "id": 155334, + "slug": "tiger-fighter-1931-tora-tora-mp068", + "name": "Tiger Fighter 1931 Tora!Tora! MP068", + "release_date": "2021-09-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181611" + ], + "created_at": "2026-07-10T10:10:46.832459", + "updated_at": "2026-07-10T10:10:46.832459", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp068" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-mp069/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp069/index.json new file mode 100644 index 000000000000..a3541b44d2c1 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp069/index.json @@ -0,0 +1,31 @@ +{ + "id": 155335, + "slug": "tiger-fighter-1931-tora-tora-mp069", + "name": "Tiger Fighter 1931 Tora!Tora! MP069", + "release_date": "2021-09-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181613" + ], + "created_at": "2026-07-10T10:10:46.833468", + "updated_at": "2026-07-10T10:10:46.833468", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp069" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-mp070/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp070/index.json new file mode 100644 index 000000000000..5f647742c679 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp070/index.json @@ -0,0 +1,31 @@ +{ + "id": 155336, + "slug": "tiger-fighter-1931-tora-tora-mp070", + "name": "Tiger Fighter 1931 Tora!Tora! MP070", + "release_date": "2021-09-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181617" + ], + "created_at": "2026-07-10T10:10:46.833468", + "updated_at": "2026-07-10T10:10:46.833468", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp070" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-mp071/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp071/index.json new file mode 100644 index 000000000000..f9dfc152e7fb --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp071/index.json @@ -0,0 +1,31 @@ +{ + "id": 155337, + "slug": "tiger-fighter-1931-tora-tora-mp071", + "name": "Tiger Fighter 1931 Tora!Tora! MP071", + "release_date": "2021-09-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181619" + ], + "created_at": "2026-07-10T10:10:46.833468", + "updated_at": "2026-07-10T10:10:46.833468", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp071" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-mp072/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp072/index.json new file mode 100644 index 000000000000..d5d70e90036d --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp072/index.json @@ -0,0 +1,31 @@ +{ + "id": 155338, + "slug": "tiger-fighter-1931-tora-tora-mp072", + "name": "Tiger Fighter 1931 Tora!Tora! MP072", + "release_date": "2021-09-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181622" + ], + "created_at": "2026-07-10T10:10:46.834448", + "updated_at": "2026-07-10T10:10:46.834448", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp072" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-mp073/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp073/index.json new file mode 100644 index 000000000000..cc8a24104343 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp073/index.json @@ -0,0 +1,31 @@ +{ + "id": 155339, + "slug": "tiger-fighter-1931-tora-tora-mp073", + "name": "Tiger Fighter 1931 Tora!Tora! MP073", + "release_date": "2021-09-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181623" + ], + "created_at": "2026-07-10T10:10:46.834448", + "updated_at": "2026-07-10T10:10:46.834448", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp073" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-mp074/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp074/index.json new file mode 100644 index 000000000000..398b10705e93 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp074/index.json @@ -0,0 +1,31 @@ +{ + "id": 155340, + "slug": "tiger-fighter-1931-tora-tora-mp074", + "name": "Tiger Fighter 1931 Tora!Tora! MP074", + "release_date": "2021-09-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181624" + ], + "created_at": "2026-07-10T10:10:46.834448", + "updated_at": "2026-07-10T10:10:46.834448", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp074" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-mp075/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp075/index.json new file mode 100644 index 000000000000..1d7fa2b5da86 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp075/index.json @@ -0,0 +1,31 @@ +{ + "id": 155341, + "slug": "tiger-fighter-1931-tora-tora-mp075", + "name": "Tiger Fighter 1931 Tora!Tora! MP075", + "release_date": "2021-09-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181627" + ], + "created_at": "2026-07-10T10:10:46.834448", + "updated_at": "2026-07-10T10:10:46.834448", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp075" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-mp076/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp076/index.json new file mode 100644 index 000000000000..500c469254a0 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp076/index.json @@ -0,0 +1,31 @@ +{ + "id": 155342, + "slug": "tiger-fighter-1931-tora-tora-mp076", + "name": "Tiger Fighter 1931 Tora!Tora! MP076", + "release_date": "2021-09-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181629" + ], + "created_at": "2026-07-10T10:10:46.834448", + "updated_at": "2026-07-10T10:10:46.834448", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp076" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-mp077/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp077/index.json new file mode 100644 index 000000000000..94c280abda11 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp077/index.json @@ -0,0 +1,31 @@ +{ + "id": 155343, + "slug": "tiger-fighter-1931-tora-tora-mp077", + "name": "Tiger Fighter 1931 Tora!Tora! MP077", + "release_date": "2021-09-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181630" + ], + "created_at": "2026-07-10T10:10:46.835483", + "updated_at": "2026-07-10T10:10:46.835483", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp077" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-mp078/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp078/index.json new file mode 100644 index 000000000000..20e20e3e0106 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp078/index.json @@ -0,0 +1,31 @@ +{ + "id": 155344, + "slug": "tiger-fighter-1931-tora-tora-mp078", + "name": "Tiger Fighter 1931 Tora!Tora! MP078", + "release_date": "2021-09-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181632" + ], + "created_at": "2026-07-10T10:10:46.835483", + "updated_at": "2026-07-10T10:10:46.835483", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp078" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-mp079/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp079/index.json new file mode 100644 index 000000000000..b337d63afada --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp079/index.json @@ -0,0 +1,31 @@ +{ + "id": 155345, + "slug": "tiger-fighter-1931-tora-tora-mp079", + "name": "Tiger Fighter 1931 Tora!Tora! MP079", + "release_date": "2021-09-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181634" + ], + "created_at": "2026-07-10T10:10:46.835483", + "updated_at": "2026-07-10T10:10:46.835483", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp079" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-mp080/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp080/index.json new file mode 100644 index 000000000000..6f0dbdd89ab4 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp080/index.json @@ -0,0 +1,31 @@ +{ + "id": 155346, + "slug": "tiger-fighter-1931-tora-tora-mp080", + "name": "Tiger Fighter 1931 Tora!Tora! MP080", + "release_date": "2021-09-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181635" + ], + "created_at": "2026-07-10T10:10:46.835483", + "updated_at": "2026-07-10T10:10:46.835483", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp080" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-mp081/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp081/index.json new file mode 100644 index 000000000000..e979bc9eecf5 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp081/index.json @@ -0,0 +1,31 @@ +{ + "id": 155347, + "slug": "tiger-fighter-1931-tora-tora-mp081", + "name": "Tiger Fighter 1931 Tora!Tora! MP081", + "release_date": "2021-09-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181636" + ], + "created_at": "2026-07-10T10:10:46.835483", + "updated_at": "2026-07-10T10:10:46.835483", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp081" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-mp082/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp082/index.json new file mode 100644 index 000000000000..82410595c836 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp082/index.json @@ -0,0 +1,31 @@ +{ + "id": 155348, + "slug": "tiger-fighter-1931-tora-tora-mp082", + "name": "Tiger Fighter 1931 Tora!Tora! MP082", + "release_date": "2021-09-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181637" + ], + "created_at": "2026-07-10T10:10:46.836439", + "updated_at": "2026-07-10T10:10:46.836439", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp082" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-mp083/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp083/index.json new file mode 100644 index 000000000000..39c166c355c6 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp083/index.json @@ -0,0 +1,31 @@ +{ + "id": 155349, + "slug": "tiger-fighter-1931-tora-tora-mp083", + "name": "Tiger Fighter 1931 Tora!Tora! MP083", + "release_date": "2021-09-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181641" + ], + "created_at": "2026-07-10T10:10:46.836439", + "updated_at": "2026-07-10T10:10:46.836439", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp083" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-mp084/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp084/index.json new file mode 100644 index 000000000000..a1095404db66 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp084/index.json @@ -0,0 +1,31 @@ +{ + "id": 155350, + "slug": "tiger-fighter-1931-tora-tora-mp084", + "name": "Tiger Fighter 1931 Tora!Tora! MP084", + "release_date": "2021-09-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181642" + ], + "created_at": "2026-07-10T10:10:46.836439", + "updated_at": "2026-07-10T10:10:46.836439", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp084" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-mp085/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp085/index.json new file mode 100644 index 000000000000..410197f6dcba --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp085/index.json @@ -0,0 +1,31 @@ +{ + "id": 155351, + "slug": "tiger-fighter-1931-tora-tora-mp085", + "name": "Tiger Fighter 1931 Tora!Tora! MP085", + "release_date": "2021-09-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181643" + ], + "created_at": "2026-07-10T10:10:46.836439", + "updated_at": "2026-07-10T10:10:46.836439", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp085" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-mp086/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp086/index.json new file mode 100644 index 000000000000..0a4f04b16df4 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp086/index.json @@ -0,0 +1,31 @@ +{ + "id": 155352, + "slug": "tiger-fighter-1931-tora-tora-mp086", + "name": "Tiger Fighter 1931 Tora!Tora! MP086", + "release_date": "2021-09-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181644" + ], + "created_at": "2026-07-10T10:10:46.837435", + "updated_at": "2026-07-10T10:10:46.837435", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp086" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-mp087/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp087/index.json new file mode 100644 index 000000000000..9593803451ea --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp087/index.json @@ -0,0 +1,31 @@ +{ + "id": 155353, + "slug": "tiger-fighter-1931-tora-tora-mp087", + "name": "Tiger Fighter 1931 Tora!Tora! MP087", + "release_date": "2021-09-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181648" + ], + "created_at": "2026-07-10T10:10:46.837435", + "updated_at": "2026-07-10T10:10:46.837435", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp087" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-mp088/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp088/index.json new file mode 100644 index 000000000000..d6aad226e9ca --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp088/index.json @@ -0,0 +1,31 @@ +{ + "id": 155354, + "slug": "tiger-fighter-1931-tora-tora-mp088", + "name": "Tiger Fighter 1931 Tora!Tora! MP088", + "release_date": "2021-09-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181651" + ], + "created_at": "2026-07-10T10:10:46.837435", + "updated_at": "2026-07-10T10:10:46.837435", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp088" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-mp089/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp089/index.json new file mode 100644 index 000000000000..49bf1243a4e0 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp089/index.json @@ -0,0 +1,31 @@ +{ + "id": 155355, + "slug": "tiger-fighter-1931-tora-tora-mp089", + "name": "Tiger Fighter 1931 Tora!Tora! MP089", + "release_date": "2021-09-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181653" + ], + "created_at": "2026-07-10T10:10:46.837435", + "updated_at": "2026-07-10T10:10:46.837435", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp089" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-mp090/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp090/index.json new file mode 100644 index 000000000000..827a7ec57491 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp090/index.json @@ -0,0 +1,31 @@ +{ + "id": 155356, + "slug": "tiger-fighter-1931-tora-tora-mp090", + "name": "Tiger Fighter 1931 Tora!Tora! MP090", + "release_date": "2021-09-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181663" + ], + "created_at": "2026-07-10T10:10:46.837435", + "updated_at": "2026-07-10T10:10:46.837435", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp090" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-mp091/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp091/index.json new file mode 100644 index 000000000000..0ccb1cc91a12 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp091/index.json @@ -0,0 +1,31 @@ +{ + "id": 155357, + "slug": "tiger-fighter-1931-tora-tora-mp091", + "name": "Tiger Fighter 1931 Tora!Tora! MP091", + "release_date": "2021-09-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181676" + ], + "created_at": "2026-07-10T10:10:46.838465", + "updated_at": "2026-07-10T10:10:46.838465", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp091" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-mp092/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp092/index.json new file mode 100644 index 000000000000..7391a7a32dc3 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp092/index.json @@ -0,0 +1,31 @@ +{ + "id": 155358, + "slug": "tiger-fighter-1931-tora-tora-mp092", + "name": "Tiger Fighter 1931 Tora!Tora! MP092", + "release_date": "2021-09-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181678" + ], + "created_at": "2026-07-10T10:10:46.838465", + "updated_at": "2026-07-10T10:10:46.838465", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp092" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-mp093/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp093/index.json new file mode 100644 index 000000000000..0a5b29bcb6df --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp093/index.json @@ -0,0 +1,31 @@ +{ + "id": 155359, + "slug": "tiger-fighter-1931-tora-tora-mp093", + "name": "Tiger Fighter 1931 Tora!Tora! MP093", + "release_date": "2021-09-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181681" + ], + "created_at": "2026-07-10T10:10:46.838465", + "updated_at": "2026-07-10T10:10:46.838465", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp093" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-mp094/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp094/index.json new file mode 100644 index 000000000000..c7f1eee6308d --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp094/index.json @@ -0,0 +1,31 @@ +{ + "id": 155360, + "slug": "tiger-fighter-1931-tora-tora-mp094", + "name": "Tiger Fighter 1931 Tora!Tora! MP094", + "release_date": "2021-09-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181683" + ], + "created_at": "2026-07-10T10:10:46.838465", + "updated_at": "2026-07-10T10:10:46.838465", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp094" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-mp095/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp095/index.json new file mode 100644 index 000000000000..eb2845bf3db9 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp095/index.json @@ -0,0 +1,31 @@ +{ + "id": 155361, + "slug": "tiger-fighter-1931-tora-tora-mp095", + "name": "Tiger Fighter 1931 Tora!Tora! MP095", + "release_date": "2021-09-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181691" + ], + "created_at": "2026-07-10T10:10:46.839461", + "updated_at": "2026-07-10T10:10:46.839461", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp095" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-mp096/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp096/index.json new file mode 100644 index 000000000000..11be330057e9 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp096/index.json @@ -0,0 +1,31 @@ +{ + "id": 155362, + "slug": "tiger-fighter-1931-tora-tora-mp096", + "name": "Tiger Fighter 1931 Tora!Tora! MP096", + "release_date": "2021-09-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181692" + ], + "created_at": "2026-07-10T10:10:46.839461", + "updated_at": "2026-07-10T10:10:46.839461", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp096" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-mp097/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp097/index.json new file mode 100644 index 000000000000..85c25714dda2 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp097/index.json @@ -0,0 +1,31 @@ +{ + "id": 155363, + "slug": "tiger-fighter-1931-tora-tora-mp097", + "name": "Tiger Fighter 1931 Tora!Tora! MP097", + "release_date": "2021-09-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181693" + ], + "created_at": "2026-07-10T10:10:46.839461", + "updated_at": "2026-07-10T10:10:46.839461", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp097" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-mp098/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp098/index.json new file mode 100644 index 000000000000..c2de154f6867 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp098/index.json @@ -0,0 +1,31 @@ +{ + "id": 155364, + "slug": "tiger-fighter-1931-tora-tora-mp098", + "name": "Tiger Fighter 1931 Tora!Tora! MP098", + "release_date": "2021-09-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181695" + ], + "created_at": "2026-07-10T10:10:46.839461", + "updated_at": "2026-07-10T10:10:46.839461", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp098" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-mp099/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp099/index.json new file mode 100644 index 000000000000..75cd624158ca --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp099/index.json @@ -0,0 +1,31 @@ +{ + "id": 155365, + "slug": "tiger-fighter-1931-tora-tora-mp099", + "name": "Tiger Fighter 1931 Tora!Tora! MP099", + "release_date": "2021-09-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181697" + ], + "created_at": "2026-07-10T10:10:46.839461", + "updated_at": "2026-07-10T10:10:46.839461", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp099" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-mp100/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp100/index.json new file mode 100644 index 000000000000..8f0781b95df0 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-mp100/index.json @@ -0,0 +1,31 @@ +{ + "id": 155366, + "slug": "tiger-fighter-1931-tora-tora-mp100", + "name": "Tiger Fighter 1931 Tora!Tora! MP100", + "release_date": "2021-09-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181698" + ], + "created_at": "2026-07-10T10:10:46.840462", + "updated_at": "2026-07-10T10:10:46.840462", + "url": "/v1/games/tiger-fighter-1931-tora-tora-mp100" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp001/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp001/index.json new file mode 100644 index 000000000000..ffe660023dbf --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp001/index.json @@ -0,0 +1,31 @@ +{ + "id": 155367, + "slug": "tiger-fighter-1931-tora-tora-tora-mp001", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP001", + "release_date": "2021-08-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181699" + ], + "created_at": "2026-07-10T10:10:46.840462", + "updated_at": "2026-07-10T10:10:46.840462", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp001" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp002/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp002/index.json new file mode 100644 index 000000000000..24edef2cd0e2 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp002/index.json @@ -0,0 +1,31 @@ +{ + "id": 155368, + "slug": "tiger-fighter-1931-tora-tora-tora-mp002", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP002", + "release_date": "2021-08-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181700" + ], + "created_at": "2026-07-10T10:10:46.840462", + "updated_at": "2026-07-10T10:10:46.840462", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp002" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp003/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp003/index.json new file mode 100644 index 000000000000..cb3c1d3e7e2e --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp003/index.json @@ -0,0 +1,31 @@ +{ + "id": 155369, + "slug": "tiger-fighter-1931-tora-tora-tora-mp003", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP003", + "release_date": "2021-08-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181701" + ], + "created_at": "2026-07-10T10:10:46.840462", + "updated_at": "2026-07-10T10:10:46.840462", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp003" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp004/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp004/index.json new file mode 100644 index 000000000000..5992cbae54c7 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp004/index.json @@ -0,0 +1,31 @@ +{ + "id": 155370, + "slug": "tiger-fighter-1931-tora-tora-tora-mp004", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP004", + "release_date": "2021-08-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181702" + ], + "created_at": "2026-07-10T10:10:46.840462", + "updated_at": "2026-07-10T10:10:46.840462", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp004" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp005/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp005/index.json new file mode 100644 index 000000000000..69f3eb768f89 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp005/index.json @@ -0,0 +1,31 @@ +{ + "id": 155371, + "slug": "tiger-fighter-1931-tora-tora-tora-mp005", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP005", + "release_date": "2021-08-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181704" + ], + "created_at": "2026-07-10T10:10:46.841481", + "updated_at": "2026-07-10T10:10:46.841481", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp005" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp006/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp006/index.json new file mode 100644 index 000000000000..cf0bfe34ad81 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp006/index.json @@ -0,0 +1,31 @@ +{ + "id": 155372, + "slug": "tiger-fighter-1931-tora-tora-tora-mp006", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP006", + "release_date": "2021-08-14", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181705" + ], + "created_at": "2026-07-10T10:10:46.841481", + "updated_at": "2026-07-10T10:10:46.841481", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp006" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp007/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp007/index.json new file mode 100644 index 000000000000..7b6f726b81c0 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp007/index.json @@ -0,0 +1,31 @@ +{ + "id": 155373, + "slug": "tiger-fighter-1931-tora-tora-tora-mp007", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP007", + "release_date": "2021-08-14", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181708" + ], + "created_at": "2026-07-10T10:10:46.841481", + "updated_at": "2026-07-10T10:10:46.841481", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp007" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp008/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp008/index.json new file mode 100644 index 000000000000..28f97c17b1ac --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp008/index.json @@ -0,0 +1,31 @@ +{ + "id": 155374, + "slug": "tiger-fighter-1931-tora-tora-tora-mp008", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP008", + "release_date": "2021-08-14", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181711" + ], + "created_at": "2026-07-10T10:10:46.841481", + "updated_at": "2026-07-10T10:10:46.841481", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp008" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp009/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp009/index.json new file mode 100644 index 000000000000..a3ec5085f7b1 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp009/index.json @@ -0,0 +1,31 @@ +{ + "id": 155375, + "slug": "tiger-fighter-1931-tora-tora-tora-mp009", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP009", + "release_date": "2021-08-14", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181712" + ], + "created_at": "2026-07-10T10:10:46.842437", + "updated_at": "2026-07-10T10:10:46.842437", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp009" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp010/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp010/index.json new file mode 100644 index 000000000000..47299f625553 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp010/index.json @@ -0,0 +1,31 @@ +{ + "id": 155376, + "slug": "tiger-fighter-1931-tora-tora-tora-mp010", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP010", + "release_date": "2021-08-14", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181714" + ], + "created_at": "2026-07-10T10:10:46.842437", + "updated_at": "2026-07-10T10:10:46.842437", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp010" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp011/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp011/index.json new file mode 100644 index 000000000000..183f4214b5b9 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp011/index.json @@ -0,0 +1,31 @@ +{ + "id": 155377, + "slug": "tiger-fighter-1931-tora-tora-tora-mp011", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP011", + "release_date": "2021-08-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181716" + ], + "created_at": "2026-07-10T10:10:46.842437", + "updated_at": "2026-07-10T10:10:46.842437", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp011" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp012/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp012/index.json new file mode 100644 index 000000000000..490bf9ee00c1 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp012/index.json @@ -0,0 +1,31 @@ +{ + "id": 155378, + "slug": "tiger-fighter-1931-tora-tora-tora-mp012", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP012", + "release_date": "2021-08-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181717" + ], + "created_at": "2026-07-10T10:10:46.842437", + "updated_at": "2026-07-10T10:10:46.842437", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp012" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp013/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp013/index.json new file mode 100644 index 000000000000..134f52ff513a --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp013/index.json @@ -0,0 +1,31 @@ +{ + "id": 155379, + "slug": "tiger-fighter-1931-tora-tora-tora-mp013", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP013", + "release_date": "2021-08-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181719" + ], + "created_at": "2026-07-10T10:10:46.842437", + "updated_at": "2026-07-10T10:10:46.842437", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp013" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp014/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp014/index.json new file mode 100644 index 000000000000..139e1c076873 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp014/index.json @@ -0,0 +1,31 @@ +{ + "id": 155380, + "slug": "tiger-fighter-1931-tora-tora-tora-mp014", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP014", + "release_date": "2021-08-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181722" + ], + "created_at": "2026-07-10T10:10:46.843465", + "updated_at": "2026-07-10T10:10:46.843465", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp014" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp015/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp015/index.json new file mode 100644 index 000000000000..e8b06b958b6b --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp015/index.json @@ -0,0 +1,31 @@ +{ + "id": 155381, + "slug": "tiger-fighter-1931-tora-tora-tora-mp015", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP015", + "release_date": "2021-08-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181724" + ], + "created_at": "2026-07-10T10:10:46.843465", + "updated_at": "2026-07-10T10:10:46.843465", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp015" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp016/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp016/index.json new file mode 100644 index 000000000000..700355ad6f5e --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp016/index.json @@ -0,0 +1,31 @@ +{ + "id": 155382, + "slug": "tiger-fighter-1931-tora-tora-tora-mp016", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP016", + "release_date": "2021-08-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181725" + ], + "created_at": "2026-07-10T10:10:46.843465", + "updated_at": "2026-07-10T10:10:46.843465", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp016" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp017/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp017/index.json new file mode 100644 index 000000000000..0ae416b27dab --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp017/index.json @@ -0,0 +1,31 @@ +{ + "id": 155383, + "slug": "tiger-fighter-1931-tora-tora-tora-mp017", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP017", + "release_date": "2021-08-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181727" + ], + "created_at": "2026-07-10T10:10:46.843465", + "updated_at": "2026-07-10T10:10:46.844467", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp017" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp018/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp018/index.json new file mode 100644 index 000000000000..a7a75a84d9cc --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp018/index.json @@ -0,0 +1,31 @@ +{ + "id": 155384, + "slug": "tiger-fighter-1931-tora-tora-tora-mp018", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP018", + "release_date": "2021-08-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181730" + ], + "created_at": "2026-07-10T10:10:46.844467", + "updated_at": "2026-07-10T10:10:46.844467", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp018" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp019/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp019/index.json new file mode 100644 index 000000000000..8e418853854e --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp019/index.json @@ -0,0 +1,31 @@ +{ + "id": 155385, + "slug": "tiger-fighter-1931-tora-tora-tora-mp019", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP019", + "release_date": "2021-08-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181732" + ], + "created_at": "2026-07-10T10:10:46.844467", + "updated_at": "2026-07-10T10:10:46.844467", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp019" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp020/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp020/index.json new file mode 100644 index 000000000000..7d17e3bd42c3 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp020/index.json @@ -0,0 +1,31 @@ +{ + "id": 155386, + "slug": "tiger-fighter-1931-tora-tora-tora-mp020", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP020", + "release_date": "2021-08-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181734" + ], + "created_at": "2026-07-10T10:10:46.844467", + "updated_at": "2026-07-10T10:10:46.844467", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp020" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp021/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp021/index.json new file mode 100644 index 000000000000..1526216cca46 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp021/index.json @@ -0,0 +1,31 @@ +{ + "id": 155387, + "slug": "tiger-fighter-1931-tora-tora-tora-mp021", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP021", + "release_date": "2021-08-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181739" + ], + "created_at": "2026-07-10T10:10:46.844467", + "updated_at": "2026-07-10T10:10:46.844467", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp021" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp022/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp022/index.json new file mode 100644 index 000000000000..8fccf0718aca --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp022/index.json @@ -0,0 +1,31 @@ +{ + "id": 155388, + "slug": "tiger-fighter-1931-tora-tora-tora-mp022", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP022", + "release_date": "2021-08-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181740" + ], + "created_at": "2026-07-10T10:10:46.845443", + "updated_at": "2026-07-10T10:10:46.845443", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp022" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp023/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp023/index.json new file mode 100644 index 000000000000..9d24a9a65c35 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp023/index.json @@ -0,0 +1,31 @@ +{ + "id": 155389, + "slug": "tiger-fighter-1931-tora-tora-tora-mp023", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP023", + "release_date": "2021-08-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181741" + ], + "created_at": "2026-07-10T10:10:46.845443", + "updated_at": "2026-07-10T10:10:46.845443", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp023" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp024/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp024/index.json new file mode 100644 index 000000000000..4e52ca31471c --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp024/index.json @@ -0,0 +1,31 @@ +{ + "id": 155390, + "slug": "tiger-fighter-1931-tora-tora-tora-mp024", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP024", + "release_date": "2021-08-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181742" + ], + "created_at": "2026-07-10T10:10:46.845443", + "updated_at": "2026-07-10T10:10:46.845443", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp024" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp025/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp025/index.json new file mode 100644 index 000000000000..82feb2969eb8 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp025/index.json @@ -0,0 +1,31 @@ +{ + "id": 155391, + "slug": "tiger-fighter-1931-tora-tora-tora-mp025", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP025", + "release_date": "2021-08-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181744" + ], + "created_at": "2026-07-10T10:10:46.845443", + "updated_at": "2026-07-10T10:10:46.845443", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp025" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp026/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp026/index.json new file mode 100644 index 000000000000..f4cb18149855 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp026/index.json @@ -0,0 +1,31 @@ +{ + "id": 155392, + "slug": "tiger-fighter-1931-tora-tora-tora-mp026", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP026", + "release_date": "2021-09-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181746" + ], + "created_at": "2026-07-10T10:10:46.845443", + "updated_at": "2026-07-10T10:10:46.845443", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp026" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp027/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp027/index.json new file mode 100644 index 000000000000..037cbc4237a4 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp027/index.json @@ -0,0 +1,31 @@ +{ + "id": 155393, + "slug": "tiger-fighter-1931-tora-tora-tora-mp027", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP027", + "release_date": "2021-09-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181748" + ], + "created_at": "2026-07-10T10:10:46.846375", + "updated_at": "2026-07-10T10:10:46.846375", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp027" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp028/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp028/index.json new file mode 100644 index 000000000000..868d44146236 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp028/index.json @@ -0,0 +1,31 @@ +{ + "id": 155394, + "slug": "tiger-fighter-1931-tora-tora-tora-mp028", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP028", + "release_date": "2021-09-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181751" + ], + "created_at": "2026-07-10T10:10:46.846375", + "updated_at": "2026-07-10T10:10:46.846375", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp028" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp029/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp029/index.json new file mode 100644 index 000000000000..ca263f0b91bd --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp029/index.json @@ -0,0 +1,31 @@ +{ + "id": 155395, + "slug": "tiger-fighter-1931-tora-tora-tora-mp029", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP029", + "release_date": "2021-09-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181752" + ], + "created_at": "2026-07-10T10:10:46.846375", + "updated_at": "2026-07-10T10:10:46.846375", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp029" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp030/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp030/index.json new file mode 100644 index 000000000000..32caf9a7a459 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp030/index.json @@ -0,0 +1,31 @@ +{ + "id": 155396, + "slug": "tiger-fighter-1931-tora-tora-tora-mp030", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP030", + "release_date": "2021-09-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181754" + ], + "created_at": "2026-07-10T10:10:46.846375", + "updated_at": "2026-07-10T10:10:46.846375", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp030" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp031/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp031/index.json new file mode 100644 index 000000000000..de1946516277 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp031/index.json @@ -0,0 +1,31 @@ +{ + "id": 155397, + "slug": "tiger-fighter-1931-tora-tora-tora-mp031", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP031", + "release_date": "2021-09-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181755" + ], + "created_at": "2026-07-10T10:10:46.847373", + "updated_at": "2026-07-10T10:10:46.847373", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp031" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp032/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp032/index.json new file mode 100644 index 000000000000..62ffd514175a --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp032/index.json @@ -0,0 +1,31 @@ +{ + "id": 155398, + "slug": "tiger-fighter-1931-tora-tora-tora-mp032", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP032", + "release_date": "2021-09-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181756" + ], + "created_at": "2026-07-10T10:10:46.847373", + "updated_at": "2026-07-10T10:10:46.847373", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp032" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp033/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp033/index.json new file mode 100644 index 000000000000..a1da9101f475 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp033/index.json @@ -0,0 +1,31 @@ +{ + "id": 155399, + "slug": "tiger-fighter-1931-tora-tora-tora-mp033", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP033", + "release_date": "2021-09-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181758" + ], + "created_at": "2026-07-10T10:10:46.847373", + "updated_at": "2026-07-10T10:10:46.847373", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp033" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp034/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp034/index.json new file mode 100644 index 000000000000..4a8311ccabd1 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp034/index.json @@ -0,0 +1,31 @@ +{ + "id": 155400, + "slug": "tiger-fighter-1931-tora-tora-tora-mp034", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP034", + "release_date": "2021-09-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181761" + ], + "created_at": "2026-07-10T10:10:46.847373", + "updated_at": "2026-07-10T10:10:46.847373", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp034" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp035/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp035/index.json new file mode 100644 index 000000000000..3a8650bf69ff --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp035/index.json @@ -0,0 +1,31 @@ +{ + "id": 155401, + "slug": "tiger-fighter-1931-tora-tora-tora-mp035", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP035", + "release_date": "2021-09-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181762" + ], + "created_at": "2026-07-10T10:10:46.847373", + "updated_at": "2026-07-10T10:10:46.847373", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp035" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp036/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp036/index.json new file mode 100644 index 000000000000..b27be65100cb --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp036/index.json @@ -0,0 +1,31 @@ +{ + "id": 155402, + "slug": "tiger-fighter-1931-tora-tora-tora-mp036", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP036", + "release_date": "2021-09-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181764" + ], + "created_at": "2026-07-10T10:10:46.848377", + "updated_at": "2026-07-10T10:10:46.848377", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp036" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp037/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp037/index.json new file mode 100644 index 000000000000..841fe4768036 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp037/index.json @@ -0,0 +1,31 @@ +{ + "id": 155403, + "slug": "tiger-fighter-1931-tora-tora-tora-mp037", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP037", + "release_date": "2021-09-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181765" + ], + "created_at": "2026-07-10T10:10:46.848377", + "updated_at": "2026-07-10T10:10:46.848377", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp037" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp038/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp038/index.json new file mode 100644 index 000000000000..2110de856c3d --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp038/index.json @@ -0,0 +1,31 @@ +{ + "id": 155404, + "slug": "tiger-fighter-1931-tora-tora-tora-mp038", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP038", + "release_date": "2021-09-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181767" + ], + "created_at": "2026-07-10T10:10:46.848377", + "updated_at": "2026-07-10T10:10:46.848377", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp038" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp039/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp039/index.json new file mode 100644 index 000000000000..67f8b609d2f1 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp039/index.json @@ -0,0 +1,31 @@ +{ + "id": 155405, + "slug": "tiger-fighter-1931-tora-tora-tora-mp039", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP039", + "release_date": "2021-09-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181768" + ], + "created_at": "2026-07-10T10:10:46.848377", + "updated_at": "2026-07-10T10:10:46.848377", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp039" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp040/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp040/index.json new file mode 100644 index 000000000000..3c5c252283b7 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp040/index.json @@ -0,0 +1,31 @@ +{ + "id": 155406, + "slug": "tiger-fighter-1931-tora-tora-tora-mp040", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP040", + "release_date": "2021-09-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181771" + ], + "created_at": "2026-07-10T10:10:46.849424", + "updated_at": "2026-07-10T10:10:46.849424", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp040" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp041/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp041/index.json new file mode 100644 index 000000000000..5f3e84242f8f --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp041/index.json @@ -0,0 +1,31 @@ +{ + "id": 155407, + "slug": "tiger-fighter-1931-tora-tora-tora-mp041", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP041", + "release_date": "2021-09-09", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181772" + ], + "created_at": "2026-07-10T10:10:46.849424", + "updated_at": "2026-07-10T10:10:46.849424", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp041" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp042/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp042/index.json new file mode 100644 index 000000000000..ca617866b5f0 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp042/index.json @@ -0,0 +1,31 @@ +{ + "id": 155408, + "slug": "tiger-fighter-1931-tora-tora-tora-mp042", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP042", + "release_date": "2021-09-09", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181775" + ], + "created_at": "2026-07-10T10:10:46.849424", + "updated_at": "2026-07-10T10:10:46.849424", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp042" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp043/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp043/index.json new file mode 100644 index 000000000000..eec7e91ce756 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp043/index.json @@ -0,0 +1,31 @@ +{ + "id": 155409, + "slug": "tiger-fighter-1931-tora-tora-tora-mp043", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP043", + "release_date": "2021-09-09", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181778" + ], + "created_at": "2026-07-10T10:10:46.849424", + "updated_at": "2026-07-10T10:10:46.849424", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp043" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp044/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp044/index.json new file mode 100644 index 000000000000..ba55a9e0d84c --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp044/index.json @@ -0,0 +1,31 @@ +{ + "id": 155410, + "slug": "tiger-fighter-1931-tora-tora-tora-mp044", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP044", + "release_date": "2021-09-09", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181780" + ], + "created_at": "2026-07-10T10:10:46.849424", + "updated_at": "2026-07-10T10:10:46.849424", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp044" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp045/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp045/index.json new file mode 100644 index 000000000000..c1de4fc37f38 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp045/index.json @@ -0,0 +1,31 @@ +{ + "id": 155411, + "slug": "tiger-fighter-1931-tora-tora-tora-mp045", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP045", + "release_date": "2021-09-09", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181781" + ], + "created_at": "2026-07-10T10:10:46.850448", + "updated_at": "2026-07-10T10:10:46.850448", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp045" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp046/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp046/index.json new file mode 100644 index 000000000000..c1a1e8e642a6 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp046/index.json @@ -0,0 +1,31 @@ +{ + "id": 155412, + "slug": "tiger-fighter-1931-tora-tora-tora-mp046", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP046", + "release_date": "2021-09-09", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181782" + ], + "created_at": "2026-07-10T10:10:46.850448", + "updated_at": "2026-07-10T10:10:46.850448", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp046" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp047/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp047/index.json new file mode 100644 index 000000000000..4b97d429686e --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp047/index.json @@ -0,0 +1,31 @@ +{ + "id": 155413, + "slug": "tiger-fighter-1931-tora-tora-tora-mp047", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP047", + "release_date": "2021-09-09", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181784" + ], + "created_at": "2026-07-10T10:10:46.850448", + "updated_at": "2026-07-10T10:10:46.850448", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp047" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp048/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp048/index.json new file mode 100644 index 000000000000..d4dd88632166 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp048/index.json @@ -0,0 +1,31 @@ +{ + "id": 155414, + "slug": "tiger-fighter-1931-tora-tora-tora-mp048", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP048", + "release_date": "2021-09-09", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181786" + ], + "created_at": "2026-07-10T10:10:46.850448", + "updated_at": "2026-07-10T10:10:46.850448", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp048" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp049/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp049/index.json new file mode 100644 index 000000000000..8d27e478552e --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp049/index.json @@ -0,0 +1,31 @@ +{ + "id": 155415, + "slug": "tiger-fighter-1931-tora-tora-tora-mp049", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP049", + "release_date": "2021-09-09", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181790" + ], + "created_at": "2026-07-10T10:10:46.851426", + "updated_at": "2026-07-10T10:10:46.851426", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp049" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp050/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp050/index.json new file mode 100644 index 000000000000..083d57f0bd23 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp050/index.json @@ -0,0 +1,31 @@ +{ + "id": 155416, + "slug": "tiger-fighter-1931-tora-tora-tora-mp050", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP050", + "release_date": "2021-09-09", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181791" + ], + "created_at": "2026-07-10T10:10:46.851426", + "updated_at": "2026-07-10T10:10:46.851426", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp050" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp051/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp051/index.json new file mode 100644 index 000000000000..7797de3e5f05 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp051/index.json @@ -0,0 +1,31 @@ +{ + "id": 155417, + "slug": "tiger-fighter-1931-tora-tora-tora-mp051", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP051", + "release_date": "2021-09-11", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181795" + ], + "created_at": "2026-07-10T10:10:46.851426", + "updated_at": "2026-07-10T10:10:46.851426", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp051" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp052/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp052/index.json new file mode 100644 index 000000000000..ac395d565891 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp052/index.json @@ -0,0 +1,31 @@ +{ + "id": 155418, + "slug": "tiger-fighter-1931-tora-tora-tora-mp052", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP052", + "release_date": "2021-09-11", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181796" + ], + "created_at": "2026-07-10T10:10:46.851426", + "updated_at": "2026-07-10T10:10:46.851426", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp052" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp053/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp053/index.json new file mode 100644 index 000000000000..3687b5b1844f --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp053/index.json @@ -0,0 +1,31 @@ +{ + "id": 155419, + "slug": "tiger-fighter-1931-tora-tora-tora-mp053", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP053", + "release_date": "2021-09-11", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181798" + ], + "created_at": "2026-07-10T10:10:46.851426", + "updated_at": "2026-07-10T10:10:46.851426", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp053" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp054/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp054/index.json new file mode 100644 index 000000000000..b9d432b8f13b --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp054/index.json @@ -0,0 +1,31 @@ +{ + "id": 155420, + "slug": "tiger-fighter-1931-tora-tora-tora-mp054", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP054", + "release_date": "2021-09-11", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181800" + ], + "created_at": "2026-07-10T10:10:46.852449", + "updated_at": "2026-07-10T10:10:46.852449", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp054" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp055/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp055/index.json new file mode 100644 index 000000000000..27fc4faa96f3 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp055/index.json @@ -0,0 +1,31 @@ +{ + "id": 155421, + "slug": "tiger-fighter-1931-tora-tora-tora-mp055", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP055", + "release_date": "2021-09-11", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181802" + ], + "created_at": "2026-07-10T10:10:46.852449", + "updated_at": "2026-07-10T10:10:46.852449", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp055" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp056/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp056/index.json new file mode 100644 index 000000000000..ea594223afa2 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp056/index.json @@ -0,0 +1,31 @@ +{ + "id": 155422, + "slug": "tiger-fighter-1931-tora-tora-tora-mp056", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP056", + "release_date": "2021-09-11", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181805" + ], + "created_at": "2026-07-10T10:10:46.852449", + "updated_at": "2026-07-10T10:10:46.852449", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp056" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp057/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp057/index.json new file mode 100644 index 000000000000..650d2d871c65 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp057/index.json @@ -0,0 +1,31 @@ +{ + "id": 155423, + "slug": "tiger-fighter-1931-tora-tora-tora-mp057", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP057", + "release_date": "2021-09-11", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181807" + ], + "created_at": "2026-07-10T10:10:46.852449", + "updated_at": "2026-07-10T10:10:46.852449", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp057" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp058/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp058/index.json new file mode 100644 index 000000000000..7264d7a4ca48 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp058/index.json @@ -0,0 +1,31 @@ +{ + "id": 155424, + "slug": "tiger-fighter-1931-tora-tora-tora-mp058", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP058", + "release_date": "2021-09-11", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181809" + ], + "created_at": "2026-07-10T10:10:46.852449", + "updated_at": "2026-07-10T10:10:46.852449", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp058" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp059/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp059/index.json new file mode 100644 index 000000000000..ed016111b4b2 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp059/index.json @@ -0,0 +1,31 @@ +{ + "id": 155425, + "slug": "tiger-fighter-1931-tora-tora-tora-mp059", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP059", + "release_date": "2021-09-11", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181811" + ], + "created_at": "2026-07-10T10:10:46.853439", + "updated_at": "2026-07-10T10:10:46.853439", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp059" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp060/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp060/index.json new file mode 100644 index 000000000000..668b717ca780 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp060/index.json @@ -0,0 +1,31 @@ +{ + "id": 155426, + "slug": "tiger-fighter-1931-tora-tora-tora-mp060", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP060", + "release_date": "2021-09-11", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181814" + ], + "created_at": "2026-07-10T10:10:46.853439", + "updated_at": "2026-07-10T10:10:46.853439", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp060" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp061/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp061/index.json new file mode 100644 index 000000000000..d0d87476e30a --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp061/index.json @@ -0,0 +1,31 @@ +{ + "id": 155427, + "slug": "tiger-fighter-1931-tora-tora-tora-mp061", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP061", + "release_date": "2021-09-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181816" + ], + "created_at": "2026-07-10T10:10:46.853439", + "updated_at": "2026-07-10T10:10:46.853439", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp061" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp062/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp062/index.json new file mode 100644 index 000000000000..6eddbc636e2a --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp062/index.json @@ -0,0 +1,31 @@ +{ + "id": 155428, + "slug": "tiger-fighter-1931-tora-tora-tora-mp062", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP062", + "release_date": "2021-09-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181817" + ], + "created_at": "2026-07-10T10:10:46.853439", + "updated_at": "2026-07-10T10:10:46.853439", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp062" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp063/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp063/index.json new file mode 100644 index 000000000000..7c6c043af20f --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp063/index.json @@ -0,0 +1,31 @@ +{ + "id": 155429, + "slug": "tiger-fighter-1931-tora-tora-tora-mp063", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP063", + "release_date": "2021-09-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181819" + ], + "created_at": "2026-07-10T10:10:46.854475", + "updated_at": "2026-07-10T10:10:46.854475", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp063" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp064/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp064/index.json new file mode 100644 index 000000000000..f3a59e098ba8 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp064/index.json @@ -0,0 +1,31 @@ +{ + "id": 155430, + "slug": "tiger-fighter-1931-tora-tora-tora-mp064", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP064", + "release_date": "2021-09-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181820" + ], + "created_at": "2026-07-10T10:10:46.854475", + "updated_at": "2026-07-10T10:10:46.854475", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp064" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp065/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp065/index.json new file mode 100644 index 000000000000..89ec31d38603 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp065/index.json @@ -0,0 +1,31 @@ +{ + "id": 155431, + "slug": "tiger-fighter-1931-tora-tora-tora-mp065", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP065", + "release_date": "2021-09-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181822" + ], + "created_at": "2026-07-10T10:10:46.854475", + "updated_at": "2026-07-10T10:10:46.854475", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp065" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp066/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp066/index.json new file mode 100644 index 000000000000..f7aa9e77ff3e --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp066/index.json @@ -0,0 +1,31 @@ +{ + "id": 155432, + "slug": "tiger-fighter-1931-tora-tora-tora-mp066", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP066", + "release_date": "2021-09-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181823" + ], + "created_at": "2026-07-10T10:10:46.854475", + "updated_at": "2026-07-10T10:10:46.854475", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp066" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp067/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp067/index.json new file mode 100644 index 000000000000..e4ac355f26cf --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp067/index.json @@ -0,0 +1,31 @@ +{ + "id": 155433, + "slug": "tiger-fighter-1931-tora-tora-tora-mp067", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP067", + "release_date": "2021-09-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181826" + ], + "created_at": "2026-07-10T10:10:46.854475", + "updated_at": "2026-07-10T10:10:46.854475", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp067" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp068/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp068/index.json new file mode 100644 index 000000000000..295de1cb89c1 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp068/index.json @@ -0,0 +1,31 @@ +{ + "id": 155434, + "slug": "tiger-fighter-1931-tora-tora-tora-mp068", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP068", + "release_date": "2021-09-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181828" + ], + "created_at": "2026-07-10T10:10:46.855444", + "updated_at": "2026-07-10T10:10:46.855444", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp068" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp069/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp069/index.json new file mode 100644 index 000000000000..4d9ed68dee71 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp069/index.json @@ -0,0 +1,31 @@ +{ + "id": 155435, + "slug": "tiger-fighter-1931-tora-tora-tora-mp069", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP069", + "release_date": "2021-09-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181829" + ], + "created_at": "2026-07-10T10:10:46.855444", + "updated_at": "2026-07-10T10:10:46.855444", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp069" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp070/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp070/index.json new file mode 100644 index 000000000000..7277c53d43e0 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp070/index.json @@ -0,0 +1,31 @@ +{ + "id": 155436, + "slug": "tiger-fighter-1931-tora-tora-tora-mp070", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP070", + "release_date": "2021-09-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181830" + ], + "created_at": "2026-07-10T10:10:46.855444", + "updated_at": "2026-07-10T10:10:46.855444", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp070" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp071/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp071/index.json new file mode 100644 index 000000000000..5ca7ce41e2ab --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp071/index.json @@ -0,0 +1,31 @@ +{ + "id": 155437, + "slug": "tiger-fighter-1931-tora-tora-tora-mp071", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP071", + "release_date": "2021-09-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181833" + ], + "created_at": "2026-07-10T10:10:46.855444", + "updated_at": "2026-07-10T10:10:46.855444", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp071" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp072/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp072/index.json new file mode 100644 index 000000000000..5c768957190d --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp072/index.json @@ -0,0 +1,31 @@ +{ + "id": 155438, + "slug": "tiger-fighter-1931-tora-tora-tora-mp072", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP072", + "release_date": "2021-09-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181835" + ], + "created_at": "2026-07-10T10:10:46.856438", + "updated_at": "2026-07-10T10:10:46.856438", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp072" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp073/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp073/index.json new file mode 100644 index 000000000000..de81f6854771 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp073/index.json @@ -0,0 +1,31 @@ +{ + "id": 155439, + "slug": "tiger-fighter-1931-tora-tora-tora-mp073", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP073", + "release_date": "2021-09-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181836" + ], + "created_at": "2026-07-10T10:10:46.856438", + "updated_at": "2026-07-10T10:10:46.856438", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp073" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp074/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp074/index.json new file mode 100644 index 000000000000..c315271faed5 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp074/index.json @@ -0,0 +1,31 @@ +{ + "id": 155440, + "slug": "tiger-fighter-1931-tora-tora-tora-mp074", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP074", + "release_date": "2021-09-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181837" + ], + "created_at": "2026-07-10T10:10:46.856438", + "updated_at": "2026-07-10T10:10:46.856438", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp074" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp075/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp075/index.json new file mode 100644 index 000000000000..18b876c589ca --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp075/index.json @@ -0,0 +1,31 @@ +{ + "id": 155441, + "slug": "tiger-fighter-1931-tora-tora-tora-mp075", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP075", + "release_date": "2021-09-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181838" + ], + "created_at": "2026-07-10T10:10:46.856438", + "updated_at": "2026-07-10T10:10:46.856438", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp075" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp076/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp076/index.json new file mode 100644 index 000000000000..95afde4605d1 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp076/index.json @@ -0,0 +1,31 @@ +{ + "id": 155442, + "slug": "tiger-fighter-1931-tora-tora-tora-mp076", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP076", + "release_date": "2021-09-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181840" + ], + "created_at": "2026-07-10T10:10:46.856438", + "updated_at": "2026-07-10T10:10:46.856438", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp076" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp077/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp077/index.json new file mode 100644 index 000000000000..364392f8f9db --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp077/index.json @@ -0,0 +1,31 @@ +{ + "id": 155443, + "slug": "tiger-fighter-1931-tora-tora-tora-mp077", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP077", + "release_date": "2021-09-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181844" + ], + "created_at": "2026-07-10T10:10:46.857477", + "updated_at": "2026-07-10T10:10:46.857477", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp077" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp078/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp078/index.json new file mode 100644 index 000000000000..48c1066ff7b1 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp078/index.json @@ -0,0 +1,31 @@ +{ + "id": 155444, + "slug": "tiger-fighter-1931-tora-tora-tora-mp078", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP078", + "release_date": "2021-09-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181845" + ], + "created_at": "2026-07-10T10:10:46.857477", + "updated_at": "2026-07-10T10:10:46.857477", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp078" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp079/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp079/index.json new file mode 100644 index 000000000000..77006beaa6b3 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp079/index.json @@ -0,0 +1,31 @@ +{ + "id": 155445, + "slug": "tiger-fighter-1931-tora-tora-tora-mp079", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP079", + "release_date": "2021-09-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181849" + ], + "created_at": "2026-07-10T10:10:46.857477", + "updated_at": "2026-07-10T10:10:46.857477", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp079" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp080/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp080/index.json new file mode 100644 index 000000000000..e08525ecf846 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp080/index.json @@ -0,0 +1,31 @@ +{ + "id": 155446, + "slug": "tiger-fighter-1931-tora-tora-tora-mp080", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP080", + "release_date": "2021-09-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181851" + ], + "created_at": "2026-07-10T10:10:46.857477", + "updated_at": "2026-07-10T10:10:46.857477", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp080" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp081/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp081/index.json new file mode 100644 index 000000000000..8e51770a983d --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp081/index.json @@ -0,0 +1,31 @@ +{ + "id": 155447, + "slug": "tiger-fighter-1931-tora-tora-tora-mp081", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP081", + "release_date": "2021-09-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181854" + ], + "created_at": "2026-07-10T10:10:46.857477", + "updated_at": "2026-07-10T10:10:46.857477", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp081" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp082/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp082/index.json new file mode 100644 index 000000000000..08c6b6fe9440 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp082/index.json @@ -0,0 +1,31 @@ +{ + "id": 155448, + "slug": "tiger-fighter-1931-tora-tora-tora-mp082", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP082", + "release_date": "2021-09-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181857" + ], + "created_at": "2026-07-10T10:10:46.858433", + "updated_at": "2026-07-10T10:10:46.858433", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp082" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp083/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp083/index.json new file mode 100644 index 000000000000..b755b15aff96 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp083/index.json @@ -0,0 +1,31 @@ +{ + "id": 155449, + "slug": "tiger-fighter-1931-tora-tora-tora-mp083", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP083", + "release_date": "2021-09-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181858" + ], + "created_at": "2026-07-10T10:10:46.858433", + "updated_at": "2026-07-10T10:10:46.858433", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp083" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp084/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp084/index.json new file mode 100644 index 000000000000..e6aaa8d84c11 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp084/index.json @@ -0,0 +1,31 @@ +{ + "id": 155450, + "slug": "tiger-fighter-1931-tora-tora-tora-mp084", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP084", + "release_date": "2021-09-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181873" + ], + "created_at": "2026-07-10T10:10:46.858433", + "updated_at": "2026-07-10T10:10:46.858433", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp084" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp085/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp085/index.json new file mode 100644 index 000000000000..b8170112d0a1 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp085/index.json @@ -0,0 +1,31 @@ +{ + "id": 155451, + "slug": "tiger-fighter-1931-tora-tora-tora-mp085", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP085", + "release_date": "2021-09-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181893" + ], + "created_at": "2026-07-10T10:10:46.858433", + "updated_at": "2026-07-10T10:10:46.858433", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp085" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp086/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp086/index.json new file mode 100644 index 000000000000..bacea5e6778b --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp086/index.json @@ -0,0 +1,31 @@ +{ + "id": 155452, + "slug": "tiger-fighter-1931-tora-tora-tora-mp086", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP086", + "release_date": "2021-09-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181913" + ], + "created_at": "2026-07-10T10:10:46.859457", + "updated_at": "2026-07-10T10:10:46.859457", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp086" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp087/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp087/index.json new file mode 100644 index 000000000000..7d83ff2a3b98 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp087/index.json @@ -0,0 +1,31 @@ +{ + "id": 155453, + "slug": "tiger-fighter-1931-tora-tora-tora-mp087", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP087", + "release_date": "2021-09-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181935" + ], + "created_at": "2026-07-10T10:10:46.859457", + "updated_at": "2026-07-10T10:10:46.859457", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp087" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp088/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp088/index.json new file mode 100644 index 000000000000..62c8afa0b437 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp088/index.json @@ -0,0 +1,31 @@ +{ + "id": 155454, + "slug": "tiger-fighter-1931-tora-tora-tora-mp088", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP088", + "release_date": "2021-09-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181940" + ], + "created_at": "2026-07-10T10:10:46.859457", + "updated_at": "2026-07-10T10:10:46.859457", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp088" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp089/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp089/index.json new file mode 100644 index 000000000000..3504e6023fa7 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp089/index.json @@ -0,0 +1,31 @@ +{ + "id": 155455, + "slug": "tiger-fighter-1931-tora-tora-tora-mp089", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP089", + "release_date": "2021-09-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181944" + ], + "created_at": "2026-07-10T10:10:46.859457", + "updated_at": "2026-07-10T10:10:46.859457", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp089" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp090/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp090/index.json new file mode 100644 index 000000000000..6f49ee935eed --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp090/index.json @@ -0,0 +1,31 @@ +{ + "id": 155456, + "slug": "tiger-fighter-1931-tora-tora-tora-mp090", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP090", + "release_date": "2021-09-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181946" + ], + "created_at": "2026-07-10T10:10:46.859457", + "updated_at": "2026-07-10T10:10:46.859457", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp090" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp091/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp091/index.json new file mode 100644 index 000000000000..f2d196509135 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp091/index.json @@ -0,0 +1,31 @@ +{ + "id": 155457, + "slug": "tiger-fighter-1931-tora-tora-tora-mp091", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP091", + "release_date": "2021-09-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181951" + ], + "created_at": "2026-07-10T10:10:46.860432", + "updated_at": "2026-07-10T10:10:46.860432", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp091" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp092/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp092/index.json new file mode 100644 index 000000000000..2c23b7d96c2e --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp092/index.json @@ -0,0 +1,31 @@ +{ + "id": 155458, + "slug": "tiger-fighter-1931-tora-tora-tora-mp092", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP092", + "release_date": "2021-09-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181962" + ], + "created_at": "2026-07-10T10:10:46.860432", + "updated_at": "2026-07-10T10:10:46.860432", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp092" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp093/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp093/index.json new file mode 100644 index 000000000000..6e1d9db5b3d6 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp093/index.json @@ -0,0 +1,31 @@ +{ + "id": 155459, + "slug": "tiger-fighter-1931-tora-tora-tora-mp093", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP093", + "release_date": "2021-09-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116181985" + ], + "created_at": "2026-07-10T10:10:46.860432", + "updated_at": "2026-07-10T10:10:46.860432", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp093" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp094/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp094/index.json new file mode 100644 index 000000000000..3ead46dbe89c --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp094/index.json @@ -0,0 +1,31 @@ +{ + "id": 155460, + "slug": "tiger-fighter-1931-tora-tora-tora-mp094", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP094", + "release_date": "2021-09-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182004" + ], + "created_at": "2026-07-10T10:10:46.861382", + "updated_at": "2026-07-10T10:10:46.861382", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp094" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp095/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp095/index.json new file mode 100644 index 000000000000..25ec0f6cc5e6 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp095/index.json @@ -0,0 +1,31 @@ +{ + "id": 155461, + "slug": "tiger-fighter-1931-tora-tora-tora-mp095", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP095", + "release_date": "2021-09-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182008" + ], + "created_at": "2026-07-10T10:10:46.861382", + "updated_at": "2026-07-10T10:10:46.861382", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp095" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp096/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp096/index.json new file mode 100644 index 000000000000..62e369cf7e4a --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp096/index.json @@ -0,0 +1,31 @@ +{ + "id": 155462, + "slug": "tiger-fighter-1931-tora-tora-tora-mp096", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP096", + "release_date": "2021-09-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182011" + ], + "created_at": "2026-07-10T10:10:46.861382", + "updated_at": "2026-07-10T10:10:46.861382", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp096" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp097/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp097/index.json new file mode 100644 index 000000000000..9f49c04638a2 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp097/index.json @@ -0,0 +1,31 @@ +{ + "id": 155463, + "slug": "tiger-fighter-1931-tora-tora-tora-mp097", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP097", + "release_date": "2021-09-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182013" + ], + "created_at": "2026-07-10T10:10:46.861382", + "updated_at": "2026-07-10T10:10:46.861382", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp097" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp098/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp098/index.json new file mode 100644 index 000000000000..10b8641c0f00 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp098/index.json @@ -0,0 +1,31 @@ +{ + "id": 155464, + "slug": "tiger-fighter-1931-tora-tora-tora-mp098", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP098", + "release_date": "2021-09-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182014" + ], + "created_at": "2026-07-10T10:10:46.861382", + "updated_at": "2026-07-10T10:10:46.861382", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp098" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp099/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp099/index.json new file mode 100644 index 000000000000..677052f7b032 --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp099/index.json @@ -0,0 +1,31 @@ +{ + "id": 155465, + "slug": "tiger-fighter-1931-tora-tora-tora-mp099", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP099", + "release_date": "2021-09-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182016" + ], + "created_at": "2026-07-10T10:10:46.861382", + "updated_at": "2026-07-10T10:10:46.861382", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp099" +} diff --git a/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp100/index.json b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp100/index.json new file mode 100644 index 000000000000..495d37ad61bf --- /dev/null +++ b/site/public/v1/games/tiger-fighter-1931-tora-tora-tora-mp100/index.json @@ -0,0 +1,31 @@ +{ + "id": 155466, + "slug": "tiger-fighter-1931-tora-tora-tora-mp100", + "name": "Tiger Fighter 1931 Tora!Tora!Tora! MP100", + "release_date": "2021-09-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182020" + ], + "created_at": "2026-07-10T10:10:46.862459", + "updated_at": "2026-07-10T10:10:46.862459", + "url": "/v1/games/tiger-fighter-1931-tora-tora-tora-mp100" +} diff --git a/site/public/v1/games/tiger-soldier-mp001/index.json b/site/public/v1/games/tiger-soldier-mp001/index.json new file mode 100644 index 000000000000..bfc7af387c16 --- /dev/null +++ b/site/public/v1/games/tiger-soldier-mp001/index.json @@ -0,0 +1,31 @@ +{ + "id": 155477, + "slug": "tiger-soldier-mp001", + "name": "Tiger Soldier Ⅰ MP001", + "release_date": "2021-08-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182259" + ], + "created_at": "2026-07-10T10:10:46.864467", + "updated_at": "2026-07-10T10:10:46.864467", + "url": "/v1/games/tiger-soldier-mp001" +} diff --git a/site/public/v1/games/tiger-soldier-mp002/index.json b/site/public/v1/games/tiger-soldier-mp002/index.json new file mode 100644 index 000000000000..e8b1b73af540 --- /dev/null +++ b/site/public/v1/games/tiger-soldier-mp002/index.json @@ -0,0 +1,31 @@ +{ + "id": 155478, + "slug": "tiger-soldier-mp002", + "name": "Tiger Soldier Ⅰ MP002", + "release_date": "2021-08-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182263" + ], + "created_at": "2026-07-10T10:10:46.864467", + "updated_at": "2026-07-10T10:10:46.864467", + "url": "/v1/games/tiger-soldier-mp002" +} diff --git a/site/public/v1/games/tiger-soldier-mp003/index.json b/site/public/v1/games/tiger-soldier-mp003/index.json new file mode 100644 index 000000000000..14807d883265 --- /dev/null +++ b/site/public/v1/games/tiger-soldier-mp003/index.json @@ -0,0 +1,31 @@ +{ + "id": 155479, + "slug": "tiger-soldier-mp003", + "name": "Tiger Soldier Ⅰ MP003", + "release_date": "2021-08-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182264" + ], + "created_at": "2026-07-10T10:10:46.864467", + "updated_at": "2026-07-10T10:10:46.864467", + "url": "/v1/games/tiger-soldier-mp003" +} diff --git a/site/public/v1/games/tiger-soldier-mp004/index.json b/site/public/v1/games/tiger-soldier-mp004/index.json new file mode 100644 index 000000000000..6697269ae5a5 --- /dev/null +++ b/site/public/v1/games/tiger-soldier-mp004/index.json @@ -0,0 +1,31 @@ +{ + "id": 155480, + "slug": "tiger-soldier-mp004", + "name": "Tiger Soldier Ⅰ MP004", + "release_date": "2021-08-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182266" + ], + "created_at": "2026-07-10T10:10:46.865543", + "updated_at": "2026-07-10T10:10:46.865543", + "url": "/v1/games/tiger-soldier-mp004" +} diff --git a/site/public/v1/games/tiger-soldier-mp005/index.json b/site/public/v1/games/tiger-soldier-mp005/index.json new file mode 100644 index 000000000000..b07fee3df30f --- /dev/null +++ b/site/public/v1/games/tiger-soldier-mp005/index.json @@ -0,0 +1,31 @@ +{ + "id": 155481, + "slug": "tiger-soldier-mp005", + "name": "Tiger Soldier Ⅰ MP005", + "release_date": "2021-08-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182268" + ], + "created_at": "2026-07-10T10:10:46.865543", + "updated_at": "2026-07-10T10:10:46.865543", + "url": "/v1/games/tiger-soldier-mp005" +} diff --git a/site/public/v1/games/tiger-soldier-mp006/index.json b/site/public/v1/games/tiger-soldier-mp006/index.json new file mode 100644 index 000000000000..5904c0619ea1 --- /dev/null +++ b/site/public/v1/games/tiger-soldier-mp006/index.json @@ -0,0 +1,31 @@ +{ + "id": 155482, + "slug": "tiger-soldier-mp006", + "name": "Tiger Soldier Ⅰ MP006", + "release_date": "2021-08-14", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182270" + ], + "created_at": "2026-07-10T10:10:46.865543", + "updated_at": "2026-07-10T10:10:46.865543", + "url": "/v1/games/tiger-soldier-mp006" +} diff --git a/site/public/v1/games/tiger-soldier-mp007/index.json b/site/public/v1/games/tiger-soldier-mp007/index.json new file mode 100644 index 000000000000..a9cd3116fa89 --- /dev/null +++ b/site/public/v1/games/tiger-soldier-mp007/index.json @@ -0,0 +1,31 @@ +{ + "id": 155483, + "slug": "tiger-soldier-mp007", + "name": "Tiger Soldier Ⅰ MP007", + "release_date": "2021-08-14", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182274" + ], + "created_at": "2026-07-10T10:10:46.866528", + "updated_at": "2026-07-10T10:10:46.866528", + "url": "/v1/games/tiger-soldier-mp007" +} diff --git a/site/public/v1/games/tiger-soldier-mp008/index.json b/site/public/v1/games/tiger-soldier-mp008/index.json new file mode 100644 index 000000000000..433887dbcfc0 --- /dev/null +++ b/site/public/v1/games/tiger-soldier-mp008/index.json @@ -0,0 +1,31 @@ +{ + "id": 155484, + "slug": "tiger-soldier-mp008", + "name": "Tiger Soldier Ⅰ MP008", + "release_date": "2021-08-14", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182275" + ], + "created_at": "2026-07-10T10:10:46.866528", + "updated_at": "2026-07-10T10:10:46.866528", + "url": "/v1/games/tiger-soldier-mp008" +} diff --git a/site/public/v1/games/tiger-soldier-mp009/index.json b/site/public/v1/games/tiger-soldier-mp009/index.json new file mode 100644 index 000000000000..329553a22cca --- /dev/null +++ b/site/public/v1/games/tiger-soldier-mp009/index.json @@ -0,0 +1,31 @@ +{ + "id": 155485, + "slug": "tiger-soldier-mp009", + "name": "Tiger Soldier Ⅰ MP009", + "release_date": "2021-08-14", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182276" + ], + "created_at": "2026-07-10T10:10:46.866528", + "updated_at": "2026-07-10T10:10:46.866528", + "url": "/v1/games/tiger-soldier-mp009" +} diff --git a/site/public/v1/games/tiger-soldier-mp010/index.json b/site/public/v1/games/tiger-soldier-mp010/index.json new file mode 100644 index 000000000000..97aec27a811e --- /dev/null +++ b/site/public/v1/games/tiger-soldier-mp010/index.json @@ -0,0 +1,31 @@ +{ + "id": 155486, + "slug": "tiger-soldier-mp010", + "name": "Tiger Soldier Ⅰ MP010", + "release_date": "2021-08-14", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182277" + ], + "created_at": "2026-07-10T10:10:46.866528", + "updated_at": "2026-07-10T10:10:46.866528", + "url": "/v1/games/tiger-soldier-mp010" +} diff --git a/site/public/v1/games/tiger-soldier-mp011/index.json b/site/public/v1/games/tiger-soldier-mp011/index.json new file mode 100644 index 000000000000..d4d02939f827 --- /dev/null +++ b/site/public/v1/games/tiger-soldier-mp011/index.json @@ -0,0 +1,31 @@ +{ + "id": 155487, + "slug": "tiger-soldier-mp011", + "name": "Tiger Soldier Ⅰ MP011", + "release_date": "2021-08-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182281" + ], + "created_at": "2026-07-10T10:10:46.866528", + "updated_at": "2026-07-10T10:10:46.866528", + "url": "/v1/games/tiger-soldier-mp011" +} diff --git a/site/public/v1/games/tiger-soldier-mp012/index.json b/site/public/v1/games/tiger-soldier-mp012/index.json new file mode 100644 index 000000000000..1de2b2f66c20 --- /dev/null +++ b/site/public/v1/games/tiger-soldier-mp012/index.json @@ -0,0 +1,31 @@ +{ + "id": 155488, + "slug": "tiger-soldier-mp012", + "name": "Tiger Soldier Ⅰ MP012", + "release_date": "2021-08-19", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182284" + ], + "created_at": "2026-07-10T10:10:46.867519", + "updated_at": "2026-07-10T10:10:46.867519", + "url": "/v1/games/tiger-soldier-mp012" +} diff --git a/site/public/v1/games/tiger-soldier-mp013/index.json b/site/public/v1/games/tiger-soldier-mp013/index.json new file mode 100644 index 000000000000..11c3a67ebb0d --- /dev/null +++ b/site/public/v1/games/tiger-soldier-mp013/index.json @@ -0,0 +1,31 @@ +{ + "id": 155489, + "slug": "tiger-soldier-mp013", + "name": "Tiger Soldier Ⅰ MP013", + "release_date": "2021-08-19", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182295" + ], + "created_at": "2026-07-10T10:10:46.867519", + "updated_at": "2026-07-10T10:10:46.867519", + "url": "/v1/games/tiger-soldier-mp013" +} diff --git a/site/public/v1/games/tiger-soldier-mp014/index.json b/site/public/v1/games/tiger-soldier-mp014/index.json new file mode 100644 index 000000000000..0bcba498cb9f --- /dev/null +++ b/site/public/v1/games/tiger-soldier-mp014/index.json @@ -0,0 +1,31 @@ +{ + "id": 155490, + "slug": "tiger-soldier-mp014", + "name": "Tiger Soldier Ⅰ MP014", + "release_date": "2021-08-19", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182319" + ], + "created_at": "2026-07-10T10:10:46.867519", + "updated_at": "2026-07-10T10:10:46.867519", + "url": "/v1/games/tiger-soldier-mp014" +} diff --git a/site/public/v1/games/tiger-soldier-mp015/index.json b/site/public/v1/games/tiger-soldier-mp015/index.json new file mode 100644 index 000000000000..e299cf4654dd --- /dev/null +++ b/site/public/v1/games/tiger-soldier-mp015/index.json @@ -0,0 +1,31 @@ +{ + "id": 155491, + "slug": "tiger-soldier-mp015", + "name": "Tiger Soldier Ⅰ MP015", + "release_date": "2021-08-19", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182324" + ], + "created_at": "2026-07-10T10:10:46.867519", + "updated_at": "2026-07-10T10:10:46.867519", + "url": "/v1/games/tiger-soldier-mp015" +} diff --git a/site/public/v1/games/tiger-soldier-mp016/index.json b/site/public/v1/games/tiger-soldier-mp016/index.json new file mode 100644 index 000000000000..99d597451b06 --- /dev/null +++ b/site/public/v1/games/tiger-soldier-mp016/index.json @@ -0,0 +1,31 @@ +{ + "id": 155492, + "slug": "tiger-soldier-mp016", + "name": "Tiger Soldier Ⅰ MP016", + "release_date": "2021-08-19", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182325" + ], + "created_at": "2026-07-10T10:10:46.868470", + "updated_at": "2026-07-10T10:10:46.868470", + "url": "/v1/games/tiger-soldier-mp016" +} diff --git a/site/public/v1/games/tiger-soldier-mp017/index.json b/site/public/v1/games/tiger-soldier-mp017/index.json new file mode 100644 index 000000000000..b70f7a47edf5 --- /dev/null +++ b/site/public/v1/games/tiger-soldier-mp017/index.json @@ -0,0 +1,31 @@ +{ + "id": 155493, + "slug": "tiger-soldier-mp017", + "name": "Tiger Soldier Ⅰ MP017", + "release_date": "2021-08-19", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182328" + ], + "created_at": "2026-07-10T10:10:46.868470", + "updated_at": "2026-07-10T10:10:46.868470", + "url": "/v1/games/tiger-soldier-mp017" +} diff --git a/site/public/v1/games/tiger-soldier-mp018/index.json b/site/public/v1/games/tiger-soldier-mp018/index.json new file mode 100644 index 000000000000..e31706e818bc --- /dev/null +++ b/site/public/v1/games/tiger-soldier-mp018/index.json @@ -0,0 +1,31 @@ +{ + "id": 155494, + "slug": "tiger-soldier-mp018", + "name": "Tiger Soldier Ⅰ MP018", + "release_date": "2021-08-19", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182331" + ], + "created_at": "2026-07-10T10:10:46.868470", + "updated_at": "2026-07-10T10:10:46.868470", + "url": "/v1/games/tiger-soldier-mp018" +} diff --git a/site/public/v1/games/tiger-soldier-mp019/index.json b/site/public/v1/games/tiger-soldier-mp019/index.json new file mode 100644 index 000000000000..97a57fb35193 --- /dev/null +++ b/site/public/v1/games/tiger-soldier-mp019/index.json @@ -0,0 +1,31 @@ +{ + "id": 155495, + "slug": "tiger-soldier-mp019", + "name": "Tiger Soldier Ⅰ MP019", + "release_date": "2021-08-19", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182334" + ], + "created_at": "2026-07-10T10:10:46.868470", + "updated_at": "2026-07-10T10:10:46.868470", + "url": "/v1/games/tiger-soldier-mp019" +} diff --git a/site/public/v1/games/tiger-soldier-mp020/index.json b/site/public/v1/games/tiger-soldier-mp020/index.json new file mode 100644 index 000000000000..5201e0c44e86 --- /dev/null +++ b/site/public/v1/games/tiger-soldier-mp020/index.json @@ -0,0 +1,31 @@ +{ + "id": 155496, + "slug": "tiger-soldier-mp020", + "name": "Tiger Soldier Ⅰ MP020", + "release_date": "2021-08-19", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182335" + ], + "created_at": "2026-07-10T10:10:46.868470", + "updated_at": "2026-07-10T10:10:46.868470", + "url": "/v1/games/tiger-soldier-mp020" +} diff --git a/site/public/v1/games/tiger-soldier-mp021/index.json b/site/public/v1/games/tiger-soldier-mp021/index.json new file mode 100644 index 000000000000..8b82f01e5fed --- /dev/null +++ b/site/public/v1/games/tiger-soldier-mp021/index.json @@ -0,0 +1,31 @@ +{ + "id": 155497, + "slug": "tiger-soldier-mp021", + "name": "Tiger Soldier Ⅰ MP021", + "release_date": "2021-08-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182336" + ], + "created_at": "2026-07-10T10:10:46.869551", + "updated_at": "2026-07-10T10:10:46.869551", + "url": "/v1/games/tiger-soldier-mp021" +} diff --git a/site/public/v1/games/tiger-soldier-mp022/index.json b/site/public/v1/games/tiger-soldier-mp022/index.json new file mode 100644 index 000000000000..d9f94dcaf4cd --- /dev/null +++ b/site/public/v1/games/tiger-soldier-mp022/index.json @@ -0,0 +1,31 @@ +{ + "id": 155498, + "slug": "tiger-soldier-mp022", + "name": "Tiger Soldier Ⅰ MP022", + "release_date": "2021-08-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182339" + ], + "created_at": "2026-07-10T10:10:46.869551", + "updated_at": "2026-07-10T10:10:46.869551", + "url": "/v1/games/tiger-soldier-mp022" +} diff --git a/site/public/v1/games/tiger-soldier-mp023/index.json b/site/public/v1/games/tiger-soldier-mp023/index.json new file mode 100644 index 000000000000..d8131b482533 --- /dev/null +++ b/site/public/v1/games/tiger-soldier-mp023/index.json @@ -0,0 +1,31 @@ +{ + "id": 155499, + "slug": "tiger-soldier-mp023", + "name": "Tiger Soldier Ⅰ MP023", + "release_date": "2021-08-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182340" + ], + "created_at": "2026-07-10T10:10:46.869551", + "updated_at": "2026-07-10T10:10:46.869551", + "url": "/v1/games/tiger-soldier-mp023" +} diff --git a/site/public/v1/games/tiger-soldier-mp024/index.json b/site/public/v1/games/tiger-soldier-mp024/index.json new file mode 100644 index 000000000000..789fca007ebc --- /dev/null +++ b/site/public/v1/games/tiger-soldier-mp024/index.json @@ -0,0 +1,31 @@ +{ + "id": 155500, + "slug": "tiger-soldier-mp024", + "name": "Tiger Soldier Ⅰ MP024", + "release_date": "2021-08-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182349" + ], + "created_at": "2026-07-10T10:10:46.869551", + "updated_at": "2026-07-10T10:10:46.869551", + "url": "/v1/games/tiger-soldier-mp024" +} diff --git a/site/public/v1/games/tiger-soldier-mp025/index.json b/site/public/v1/games/tiger-soldier-mp025/index.json new file mode 100644 index 000000000000..894445d18c2b --- /dev/null +++ b/site/public/v1/games/tiger-soldier-mp025/index.json @@ -0,0 +1,31 @@ +{ + "id": 155501, + "slug": "tiger-soldier-mp025", + "name": "Tiger Soldier Ⅰ MP025", + "release_date": "2021-08-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182354" + ], + "created_at": "2026-07-10T10:10:46.869551", + "updated_at": "2026-07-10T10:10:46.869551", + "url": "/v1/games/tiger-soldier-mp025" +} diff --git a/site/public/v1/games/tiger-soldier-mp026/index.json b/site/public/v1/games/tiger-soldier-mp026/index.json new file mode 100644 index 000000000000..4db6ffaa971a --- /dev/null +++ b/site/public/v1/games/tiger-soldier-mp026/index.json @@ -0,0 +1,31 @@ +{ + "id": 155502, + "slug": "tiger-soldier-mp026", + "name": "Tiger Soldier Ⅰ MP026", + "release_date": "2021-08-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182358" + ], + "created_at": "2026-07-10T10:10:46.870537", + "updated_at": "2026-07-10T10:10:46.870537", + "url": "/v1/games/tiger-soldier-mp026" +} diff --git a/site/public/v1/games/tiger-soldier-mp027/index.json b/site/public/v1/games/tiger-soldier-mp027/index.json new file mode 100644 index 000000000000..ae9cb4aa3bb9 --- /dev/null +++ b/site/public/v1/games/tiger-soldier-mp027/index.json @@ -0,0 +1,31 @@ +{ + "id": 155503, + "slug": "tiger-soldier-mp027", + "name": "Tiger Soldier Ⅰ MP027", + "release_date": "2021-08-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182361" + ], + "created_at": "2026-07-10T10:10:46.870537", + "updated_at": "2026-07-10T10:10:46.870537", + "url": "/v1/games/tiger-soldier-mp027" +} diff --git a/site/public/v1/games/tiger-soldier-mp028/index.json b/site/public/v1/games/tiger-soldier-mp028/index.json new file mode 100644 index 000000000000..457b2477e8cb --- /dev/null +++ b/site/public/v1/games/tiger-soldier-mp028/index.json @@ -0,0 +1,31 @@ +{ + "id": 155504, + "slug": "tiger-soldier-mp028", + "name": "Tiger Soldier Ⅰ MP028", + "release_date": "2021-08-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182363" + ], + "created_at": "2026-07-10T10:10:46.870537", + "updated_at": "2026-07-10T10:10:46.870537", + "url": "/v1/games/tiger-soldier-mp028" +} diff --git a/site/public/v1/games/tiger-soldier-mp029/index.json b/site/public/v1/games/tiger-soldier-mp029/index.json new file mode 100644 index 000000000000..1d4dd02c5ebb --- /dev/null +++ b/site/public/v1/games/tiger-soldier-mp029/index.json @@ -0,0 +1,31 @@ +{ + "id": 155505, + "slug": "tiger-soldier-mp029", + "name": "Tiger Soldier Ⅰ MP029", + "release_date": "2021-08-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182364" + ], + "created_at": "2026-07-10T10:10:46.870537", + "updated_at": "2026-07-10T10:10:46.870537", + "url": "/v1/games/tiger-soldier-mp029" +} diff --git a/site/public/v1/games/tiger-soldier-mp030/index.json b/site/public/v1/games/tiger-soldier-mp030/index.json new file mode 100644 index 000000000000..ff01b23ff6a6 --- /dev/null +++ b/site/public/v1/games/tiger-soldier-mp030/index.json @@ -0,0 +1,31 @@ +{ + "id": 155506, + "slug": "tiger-soldier-mp030", + "name": "Tiger Soldier Ⅰ MP030", + "release_date": "2021-08-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182365" + ], + "created_at": "2026-07-10T10:10:46.870537", + "updated_at": "2026-07-10T10:10:46.870537", + "url": "/v1/games/tiger-soldier-mp030" +} diff --git a/site/public/v1/games/tiger-soldier-mp031/index.json b/site/public/v1/games/tiger-soldier-mp031/index.json new file mode 100644 index 000000000000..582664d477ac --- /dev/null +++ b/site/public/v1/games/tiger-soldier-mp031/index.json @@ -0,0 +1,31 @@ +{ + "id": 155507, + "slug": "tiger-soldier-mp031", + "name": "Tiger Soldier Ⅰ MP031", + "release_date": "2021-08-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182369" + ], + "created_at": "2026-07-10T10:10:46.871598", + "updated_at": "2026-07-10T10:10:46.871598", + "url": "/v1/games/tiger-soldier-mp031" +} diff --git a/site/public/v1/games/tiger-soldier-mp032/index.json b/site/public/v1/games/tiger-soldier-mp032/index.json new file mode 100644 index 000000000000..b717ebd6d7cc --- /dev/null +++ b/site/public/v1/games/tiger-soldier-mp032/index.json @@ -0,0 +1,31 @@ +{ + "id": 155508, + "slug": "tiger-soldier-mp032", + "name": "Tiger Soldier Ⅰ MP032", + "release_date": "2021-08-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182371" + ], + "created_at": "2026-07-10T10:10:46.871598", + "updated_at": "2026-07-10T10:10:46.871598", + "url": "/v1/games/tiger-soldier-mp032" +} diff --git a/site/public/v1/games/tiger-soldier-mp033/index.json b/site/public/v1/games/tiger-soldier-mp033/index.json new file mode 100644 index 000000000000..9ce1531f47d1 --- /dev/null +++ b/site/public/v1/games/tiger-soldier-mp033/index.json @@ -0,0 +1,31 @@ +{ + "id": 155509, + "slug": "tiger-soldier-mp033", + "name": "Tiger Soldier Ⅰ MP033", + "release_date": "2021-08-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182372" + ], + "created_at": "2026-07-10T10:10:46.871598", + "updated_at": "2026-07-10T10:10:46.871598", + "url": "/v1/games/tiger-soldier-mp033" +} diff --git a/site/public/v1/games/tiger-soldier-mp034/index.json b/site/public/v1/games/tiger-soldier-mp034/index.json new file mode 100644 index 000000000000..5d256d40dd4c --- /dev/null +++ b/site/public/v1/games/tiger-soldier-mp034/index.json @@ -0,0 +1,31 @@ +{ + "id": 155510, + "slug": "tiger-soldier-mp034", + "name": "Tiger Soldier Ⅰ MP034", + "release_date": "2021-08-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182373" + ], + "created_at": "2026-07-10T10:10:46.871598", + "updated_at": "2026-07-10T10:10:46.871598", + "url": "/v1/games/tiger-soldier-mp034" +} diff --git a/site/public/v1/games/tiger-soldier-mp035/index.json b/site/public/v1/games/tiger-soldier-mp035/index.json new file mode 100644 index 000000000000..59548a405ccb --- /dev/null +++ b/site/public/v1/games/tiger-soldier-mp035/index.json @@ -0,0 +1,31 @@ +{ + "id": 155511, + "slug": "tiger-soldier-mp035", + "name": "Tiger Soldier Ⅰ MP035", + "release_date": "2021-08-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182374" + ], + "created_at": "2026-07-10T10:10:46.871598", + "updated_at": "2026-07-10T10:10:46.872574", + "url": "/v1/games/tiger-soldier-mp035" +} diff --git a/site/public/v1/games/tiger-soldier-mp036/index.json b/site/public/v1/games/tiger-soldier-mp036/index.json new file mode 100644 index 000000000000..670c773535c0 --- /dev/null +++ b/site/public/v1/games/tiger-soldier-mp036/index.json @@ -0,0 +1,31 @@ +{ + "id": 155512, + "slug": "tiger-soldier-mp036", + "name": "Tiger Soldier Ⅰ MP036", + "release_date": "2021-09-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182375" + ], + "created_at": "2026-07-10T10:10:46.872574", + "updated_at": "2026-07-10T10:10:46.872574", + "url": "/v1/games/tiger-soldier-mp036" +} diff --git a/site/public/v1/games/tiger-soldier-mp037/index.json b/site/public/v1/games/tiger-soldier-mp037/index.json new file mode 100644 index 000000000000..b7ce8401ccc7 --- /dev/null +++ b/site/public/v1/games/tiger-soldier-mp037/index.json @@ -0,0 +1,31 @@ +{ + "id": 155513, + "slug": "tiger-soldier-mp037", + "name": "Tiger Soldier Ⅰ MP037", + "release_date": "2021-09-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182377" + ], + "created_at": "2026-07-10T10:10:46.872574", + "updated_at": "2026-07-10T10:10:46.872574", + "url": "/v1/games/tiger-soldier-mp037" +} diff --git a/site/public/v1/games/tiger-soldier-mp038/index.json b/site/public/v1/games/tiger-soldier-mp038/index.json new file mode 100644 index 000000000000..34752d07d1de --- /dev/null +++ b/site/public/v1/games/tiger-soldier-mp038/index.json @@ -0,0 +1,31 @@ +{ + "id": 155514, + "slug": "tiger-soldier-mp038", + "name": "Tiger Soldier Ⅰ MP038", + "release_date": "2021-09-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182379" + ], + "created_at": "2026-07-10T10:10:46.872574", + "updated_at": "2026-07-10T10:10:46.872574", + "url": "/v1/games/tiger-soldier-mp038" +} diff --git a/site/public/v1/games/tiger-soldier-mp039/index.json b/site/public/v1/games/tiger-soldier-mp039/index.json new file mode 100644 index 000000000000..989f052d4244 --- /dev/null +++ b/site/public/v1/games/tiger-soldier-mp039/index.json @@ -0,0 +1,31 @@ +{ + "id": 155515, + "slug": "tiger-soldier-mp039", + "name": "Tiger Soldier Ⅰ MP039", + "release_date": "2021-09-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182382" + ], + "created_at": "2026-07-10T10:10:46.873546", + "updated_at": "2026-07-10T10:10:46.873546", + "url": "/v1/games/tiger-soldier-mp039" +} diff --git a/site/public/v1/games/tiger-soldier-mp040/index.json b/site/public/v1/games/tiger-soldier-mp040/index.json new file mode 100644 index 000000000000..ecd0913c1cbe --- /dev/null +++ b/site/public/v1/games/tiger-soldier-mp040/index.json @@ -0,0 +1,31 @@ +{ + "id": 155516, + "slug": "tiger-soldier-mp040", + "name": "Tiger Soldier Ⅰ MP040", + "release_date": "2021-09-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182383" + ], + "created_at": "2026-07-10T10:10:46.873546", + "updated_at": "2026-07-10T10:10:46.873546", + "url": "/v1/games/tiger-soldier-mp040" +} diff --git a/site/public/v1/games/tiger-soldier-mp041/index.json b/site/public/v1/games/tiger-soldier-mp041/index.json new file mode 100644 index 000000000000..5a7fbda038f0 --- /dev/null +++ b/site/public/v1/games/tiger-soldier-mp041/index.json @@ -0,0 +1,31 @@ +{ + "id": 155517, + "slug": "tiger-soldier-mp041", + "name": "Tiger Soldier Ⅰ MP041", + "release_date": "2021-09-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182384" + ], + "created_at": "2026-07-10T10:10:46.873546", + "updated_at": "2026-07-10T10:10:46.873546", + "url": "/v1/games/tiger-soldier-mp041" +} diff --git a/site/public/v1/games/tiger-soldier-mp042/index.json b/site/public/v1/games/tiger-soldier-mp042/index.json new file mode 100644 index 000000000000..779da1e43172 --- /dev/null +++ b/site/public/v1/games/tiger-soldier-mp042/index.json @@ -0,0 +1,31 @@ +{ + "id": 155518, + "slug": "tiger-soldier-mp042", + "name": "Tiger Soldier Ⅰ MP042", + "release_date": "2021-09-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182386" + ], + "created_at": "2026-07-10T10:10:46.873546", + "updated_at": "2026-07-10T10:10:46.873546", + "url": "/v1/games/tiger-soldier-mp042" +} diff --git a/site/public/v1/games/tiger-soldier-mp043/index.json b/site/public/v1/games/tiger-soldier-mp043/index.json new file mode 100644 index 000000000000..01da9b85d0a6 --- /dev/null +++ b/site/public/v1/games/tiger-soldier-mp043/index.json @@ -0,0 +1,31 @@ +{ + "id": 155519, + "slug": "tiger-soldier-mp043", + "name": "Tiger Soldier Ⅰ MP043", + "release_date": "2021-09-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182390" + ], + "created_at": "2026-07-10T10:10:46.873546", + "updated_at": "2026-07-10T10:10:46.873546", + "url": "/v1/games/tiger-soldier-mp043" +} diff --git a/site/public/v1/games/tiger-soldier-mp044/index.json b/site/public/v1/games/tiger-soldier-mp044/index.json new file mode 100644 index 000000000000..95868062de66 --- /dev/null +++ b/site/public/v1/games/tiger-soldier-mp044/index.json @@ -0,0 +1,31 @@ +{ + "id": 155520, + "slug": "tiger-soldier-mp044", + "name": "Tiger Soldier Ⅰ MP044", + "release_date": "2021-09-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182392" + ], + "created_at": "2026-07-10T10:10:46.874584", + "updated_at": "2026-07-10T10:10:46.874584", + "url": "/v1/games/tiger-soldier-mp044" +} diff --git a/site/public/v1/games/tiger-soldier-mp045/index.json b/site/public/v1/games/tiger-soldier-mp045/index.json new file mode 100644 index 000000000000..2a2f38ebad9c --- /dev/null +++ b/site/public/v1/games/tiger-soldier-mp045/index.json @@ -0,0 +1,31 @@ +{ + "id": 155521, + "slug": "tiger-soldier-mp045", + "name": "Tiger Soldier Ⅰ MP045", + "release_date": "2021-09-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182394" + ], + "created_at": "2026-07-10T10:10:46.874584", + "updated_at": "2026-07-10T10:10:46.874584", + "url": "/v1/games/tiger-soldier-mp045" +} diff --git a/site/public/v1/games/tiger-soldier-mp046/index.json b/site/public/v1/games/tiger-soldier-mp046/index.json new file mode 100644 index 000000000000..195b4cd7ae59 --- /dev/null +++ b/site/public/v1/games/tiger-soldier-mp046/index.json @@ -0,0 +1,31 @@ +{ + "id": 155522, + "slug": "tiger-soldier-mp046", + "name": "Tiger Soldier Ⅰ MP046", + "release_date": "2021-09-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182395" + ], + "created_at": "2026-07-10T10:10:46.874584", + "updated_at": "2026-07-10T10:10:46.874584", + "url": "/v1/games/tiger-soldier-mp046" +} diff --git a/site/public/v1/games/tiger-soldier-mp047/index.json b/site/public/v1/games/tiger-soldier-mp047/index.json new file mode 100644 index 000000000000..16d22f43d135 --- /dev/null +++ b/site/public/v1/games/tiger-soldier-mp047/index.json @@ -0,0 +1,31 @@ +{ + "id": 155523, + "slug": "tiger-soldier-mp047", + "name": "Tiger Soldier Ⅰ MP047", + "release_date": "2021-09-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182397" + ], + "created_at": "2026-07-10T10:10:46.874584", + "updated_at": "2026-07-10T10:10:46.874584", + "url": "/v1/games/tiger-soldier-mp047" +} diff --git a/site/public/v1/games/tiger-soldier-mp048/index.json b/site/public/v1/games/tiger-soldier-mp048/index.json new file mode 100644 index 000000000000..d6e2b5be1bc7 --- /dev/null +++ b/site/public/v1/games/tiger-soldier-mp048/index.json @@ -0,0 +1,31 @@ +{ + "id": 155524, + "slug": "tiger-soldier-mp048", + "name": "Tiger Soldier Ⅰ MP048", + "release_date": "2021-09-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182399" + ], + "created_at": "2026-07-10T10:10:46.874584", + "updated_at": "2026-07-10T10:10:46.874584", + "url": "/v1/games/tiger-soldier-mp048" +} diff --git a/site/public/v1/games/tiger-soldier-mp049/index.json b/site/public/v1/games/tiger-soldier-mp049/index.json new file mode 100644 index 000000000000..bca8d4b2f4c4 --- /dev/null +++ b/site/public/v1/games/tiger-soldier-mp049/index.json @@ -0,0 +1,31 @@ +{ + "id": 155525, + "slug": "tiger-soldier-mp049", + "name": "Tiger Soldier Ⅰ MP049", + "release_date": "2021-09-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182400" + ], + "created_at": "2026-07-10T10:10:46.875538", + "updated_at": "2026-07-10T10:10:46.875538", + "url": "/v1/games/tiger-soldier-mp049" +} diff --git a/site/public/v1/games/tiger-soldier-mp050/index.json b/site/public/v1/games/tiger-soldier-mp050/index.json new file mode 100644 index 000000000000..5d8141c6590a --- /dev/null +++ b/site/public/v1/games/tiger-soldier-mp050/index.json @@ -0,0 +1,31 @@ +{ + "id": 155526, + "slug": "tiger-soldier-mp050", + "name": "Tiger Soldier Ⅰ MP050", + "release_date": "2021-09-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182402" + ], + "created_at": "2026-07-10T10:10:46.875538", + "updated_at": "2026-07-10T10:10:46.875538", + "url": "/v1/games/tiger-soldier-mp050" +} diff --git a/site/public/v1/games/tiger-soldier-mp051/index.json b/site/public/v1/games/tiger-soldier-mp051/index.json new file mode 100644 index 000000000000..f978bf10671d --- /dev/null +++ b/site/public/v1/games/tiger-soldier-mp051/index.json @@ -0,0 +1,31 @@ +{ + "id": 155527, + "slug": "tiger-soldier-mp051", + "name": "Tiger Soldier Ⅰ MP051", + "release_date": "2021-09-09", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182403" + ], + "created_at": "2026-07-10T10:10:46.875538", + "updated_at": "2026-07-10T10:10:46.875538", + "url": "/v1/games/tiger-soldier-mp051" +} diff --git a/site/public/v1/games/tiger-soldier-mp052/index.json b/site/public/v1/games/tiger-soldier-mp052/index.json new file mode 100644 index 000000000000..94d6265a64cb --- /dev/null +++ b/site/public/v1/games/tiger-soldier-mp052/index.json @@ -0,0 +1,31 @@ +{ + "id": 155528, + "slug": "tiger-soldier-mp052", + "name": "Tiger Soldier Ⅰ MP052", + "release_date": "2021-09-09", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182405" + ], + "created_at": "2026-07-10T10:10:46.875538", + "updated_at": "2026-07-10T10:10:46.875538", + "url": "/v1/games/tiger-soldier-mp052" +} diff --git a/site/public/v1/games/tiger-soldier-mp053/index.json b/site/public/v1/games/tiger-soldier-mp053/index.json new file mode 100644 index 000000000000..de719fed08aa --- /dev/null +++ b/site/public/v1/games/tiger-soldier-mp053/index.json @@ -0,0 +1,31 @@ +{ + "id": 155529, + "slug": "tiger-soldier-mp053", + "name": "Tiger Soldier Ⅰ MP053", + "release_date": "2021-09-09", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182406" + ], + "created_at": "2026-07-10T10:10:46.876541", + "updated_at": "2026-07-10T10:10:46.876541", + "url": "/v1/games/tiger-soldier-mp053" +} diff --git a/site/public/v1/games/tiger-soldier-mp054/index.json b/site/public/v1/games/tiger-soldier-mp054/index.json new file mode 100644 index 000000000000..6b95128cdb5e --- /dev/null +++ b/site/public/v1/games/tiger-soldier-mp054/index.json @@ -0,0 +1,31 @@ +{ + "id": 155530, + "slug": "tiger-soldier-mp054", + "name": "Tiger Soldier Ⅰ MP054", + "release_date": "2021-09-09", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182408" + ], + "created_at": "2026-07-10T10:10:46.876541", + "updated_at": "2026-07-10T10:10:46.876541", + "url": "/v1/games/tiger-soldier-mp054" +} diff --git a/site/public/v1/games/tiger-soldier-mp055/index.json b/site/public/v1/games/tiger-soldier-mp055/index.json new file mode 100644 index 000000000000..1462638adea8 --- /dev/null +++ b/site/public/v1/games/tiger-soldier-mp055/index.json @@ -0,0 +1,31 @@ +{ + "id": 155531, + "slug": "tiger-soldier-mp055", + "name": "Tiger Soldier Ⅰ MP055", + "release_date": "2021-09-09", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182409" + ], + "created_at": "2026-07-10T10:10:46.876541", + "updated_at": "2026-07-10T10:10:46.876541", + "url": "/v1/games/tiger-soldier-mp055" +} diff --git a/site/public/v1/games/tiger-soldier-mp056/index.json b/site/public/v1/games/tiger-soldier-mp056/index.json new file mode 100644 index 000000000000..332a1ad25858 --- /dev/null +++ b/site/public/v1/games/tiger-soldier-mp056/index.json @@ -0,0 +1,31 @@ +{ + "id": 155532, + "slug": "tiger-soldier-mp056", + "name": "Tiger Soldier Ⅰ MP056", + "release_date": "2021-09-09", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182411" + ], + "created_at": "2026-07-10T10:10:46.876541", + "updated_at": "2026-07-10T10:10:46.876541", + "url": "/v1/games/tiger-soldier-mp056" +} diff --git a/site/public/v1/games/tiger-soldier-mp057/index.json b/site/public/v1/games/tiger-soldier-mp057/index.json new file mode 100644 index 000000000000..06408dd7e145 --- /dev/null +++ b/site/public/v1/games/tiger-soldier-mp057/index.json @@ -0,0 +1,31 @@ +{ + "id": 155533, + "slug": "tiger-soldier-mp057", + "name": "Tiger Soldier Ⅰ MP057", + "release_date": "2021-09-09", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182413" + ], + "created_at": "2026-07-10T10:10:46.876541", + "updated_at": "2026-07-10T10:10:46.876541", + "url": "/v1/games/tiger-soldier-mp057" +} diff --git a/site/public/v1/games/tiger-soldier-mp058/index.json b/site/public/v1/games/tiger-soldier-mp058/index.json new file mode 100644 index 000000000000..be4970642095 --- /dev/null +++ b/site/public/v1/games/tiger-soldier-mp058/index.json @@ -0,0 +1,31 @@ +{ + "id": 155534, + "slug": "tiger-soldier-mp058", + "name": "Tiger Soldier Ⅰ MP058", + "release_date": "2021-09-09", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182415" + ], + "created_at": "2026-07-10T10:10:46.876541", + "updated_at": "2026-07-10T10:10:46.876541", + "url": "/v1/games/tiger-soldier-mp058" +} diff --git a/site/public/v1/games/tiger-soldier-mp059/index.json b/site/public/v1/games/tiger-soldier-mp059/index.json new file mode 100644 index 000000000000..dff3931096a3 --- /dev/null +++ b/site/public/v1/games/tiger-soldier-mp059/index.json @@ -0,0 +1,31 @@ +{ + "id": 155535, + "slug": "tiger-soldier-mp059", + "name": "Tiger Soldier Ⅰ MP059", + "release_date": "2021-09-09", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182417" + ], + "created_at": "2026-07-10T10:10:46.876541", + "updated_at": "2026-07-10T10:10:46.876541", + "url": "/v1/games/tiger-soldier-mp059" +} diff --git a/site/public/v1/games/tiger-soldier-mp060/index.json b/site/public/v1/games/tiger-soldier-mp060/index.json new file mode 100644 index 000000000000..90682ad56005 --- /dev/null +++ b/site/public/v1/games/tiger-soldier-mp060/index.json @@ -0,0 +1,31 @@ +{ + "id": 155536, + "slug": "tiger-soldier-mp060", + "name": "Tiger Soldier Ⅰ MP060", + "release_date": "2021-09-09", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182420" + ], + "created_at": "2026-07-10T10:10:46.878169", + "updated_at": "2026-07-10T10:10:46.878169", + "url": "/v1/games/tiger-soldier-mp060" +} diff --git a/site/public/v1/games/tiger-soldier-mp061/index.json b/site/public/v1/games/tiger-soldier-mp061/index.json new file mode 100644 index 000000000000..f79b24cdd5bc --- /dev/null +++ b/site/public/v1/games/tiger-soldier-mp061/index.json @@ -0,0 +1,31 @@ +{ + "id": 155537, + "slug": "tiger-soldier-mp061", + "name": "Tiger Soldier Ⅰ MP061", + "release_date": "2021-09-11", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182423" + ], + "created_at": "2026-07-10T10:10:46.878169", + "updated_at": "2026-07-10T10:10:46.878169", + "url": "/v1/games/tiger-soldier-mp061" +} diff --git a/site/public/v1/games/tiger-soldier-mp062/index.json b/site/public/v1/games/tiger-soldier-mp062/index.json new file mode 100644 index 000000000000..30cfc4b1728a --- /dev/null +++ b/site/public/v1/games/tiger-soldier-mp062/index.json @@ -0,0 +1,31 @@ +{ + "id": 155538, + "slug": "tiger-soldier-mp062", + "name": "Tiger Soldier Ⅰ MP062", + "release_date": "2021-09-11", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182430" + ], + "created_at": "2026-07-10T10:10:46.878169", + "updated_at": "2026-07-10T10:10:46.878169", + "url": "/v1/games/tiger-soldier-mp062" +} diff --git a/site/public/v1/games/tiger-soldier-mp063/index.json b/site/public/v1/games/tiger-soldier-mp063/index.json new file mode 100644 index 000000000000..6ed833cceceb --- /dev/null +++ b/site/public/v1/games/tiger-soldier-mp063/index.json @@ -0,0 +1,31 @@ +{ + "id": 155539, + "slug": "tiger-soldier-mp063", + "name": "Tiger Soldier Ⅰ MP063", + "release_date": "2021-09-11", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182434" + ], + "created_at": "2026-07-10T10:10:46.878169", + "updated_at": "2026-07-10T10:10:46.878169", + "url": "/v1/games/tiger-soldier-mp063" +} diff --git a/site/public/v1/games/tiger-soldier-mp064/index.json b/site/public/v1/games/tiger-soldier-mp064/index.json new file mode 100644 index 000000000000..604830f4e6a1 --- /dev/null +++ b/site/public/v1/games/tiger-soldier-mp064/index.json @@ -0,0 +1,31 @@ +{ + "id": 155540, + "slug": "tiger-soldier-mp064", + "name": "Tiger Soldier Ⅰ MP064", + "release_date": "2021-09-11", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182436" + ], + "created_at": "2026-07-10T10:10:46.878169", + "updated_at": "2026-07-10T10:10:46.878169", + "url": "/v1/games/tiger-soldier-mp064" +} diff --git a/site/public/v1/games/tiger-soldier-mp065/index.json b/site/public/v1/games/tiger-soldier-mp065/index.json new file mode 100644 index 000000000000..f8f934d5c179 --- /dev/null +++ b/site/public/v1/games/tiger-soldier-mp065/index.json @@ -0,0 +1,31 @@ +{ + "id": 155541, + "slug": "tiger-soldier-mp065", + "name": "Tiger Soldier Ⅰ MP065", + "release_date": "2021-09-11", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182438" + ], + "created_at": "2026-07-10T10:10:46.879292", + "updated_at": "2026-07-10T10:10:46.879292", + "url": "/v1/games/tiger-soldier-mp065" +} diff --git a/site/public/v1/games/tiger-soldier-mp066/index.json b/site/public/v1/games/tiger-soldier-mp066/index.json new file mode 100644 index 000000000000..43694fc44894 --- /dev/null +++ b/site/public/v1/games/tiger-soldier-mp066/index.json @@ -0,0 +1,31 @@ +{ + "id": 155542, + "slug": "tiger-soldier-mp066", + "name": "Tiger Soldier Ⅰ MP066", + "release_date": "2021-09-11", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182442" + ], + "created_at": "2026-07-10T10:10:46.879292", + "updated_at": "2026-07-10T10:10:46.879292", + "url": "/v1/games/tiger-soldier-mp066" +} diff --git a/site/public/v1/games/tiger-soldier-mp067/index.json b/site/public/v1/games/tiger-soldier-mp067/index.json new file mode 100644 index 000000000000..8cbe8af4bec4 --- /dev/null +++ b/site/public/v1/games/tiger-soldier-mp067/index.json @@ -0,0 +1,31 @@ +{ + "id": 155543, + "slug": "tiger-soldier-mp067", + "name": "Tiger Soldier Ⅰ MP067", + "release_date": "2021-09-11", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182446" + ], + "created_at": "2026-07-10T10:10:46.879292", + "updated_at": "2026-07-10T10:10:46.879292", + "url": "/v1/games/tiger-soldier-mp067" +} diff --git a/site/public/v1/games/tiger-soldier-mp068/index.json b/site/public/v1/games/tiger-soldier-mp068/index.json new file mode 100644 index 000000000000..791b736c8f34 --- /dev/null +++ b/site/public/v1/games/tiger-soldier-mp068/index.json @@ -0,0 +1,31 @@ +{ + "id": 155544, + "slug": "tiger-soldier-mp068", + "name": "Tiger Soldier Ⅰ MP068", + "release_date": "2021-09-11", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182449" + ], + "created_at": "2026-07-10T10:10:46.879292", + "updated_at": "2026-07-10T10:10:46.879292", + "url": "/v1/games/tiger-soldier-mp068" +} diff --git a/site/public/v1/games/tiger-soldier-mp069/index.json b/site/public/v1/games/tiger-soldier-mp069/index.json new file mode 100644 index 000000000000..f74dbec79c52 --- /dev/null +++ b/site/public/v1/games/tiger-soldier-mp069/index.json @@ -0,0 +1,31 @@ +{ + "id": 155545, + "slug": "tiger-soldier-mp069", + "name": "Tiger Soldier Ⅰ MP069", + "release_date": "2021-09-11", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182457" + ], + "created_at": "2026-07-10T10:10:46.879292", + "updated_at": "2026-07-10T10:10:46.879292", + "url": "/v1/games/tiger-soldier-mp069" +} diff --git a/site/public/v1/games/tiger-soldier-mp070/index.json b/site/public/v1/games/tiger-soldier-mp070/index.json new file mode 100644 index 000000000000..4c6b6e5548b6 --- /dev/null +++ b/site/public/v1/games/tiger-soldier-mp070/index.json @@ -0,0 +1,31 @@ +{ + "id": 155546, + "slug": "tiger-soldier-mp070", + "name": "Tiger Soldier Ⅰ MP070", + "release_date": "2021-09-11", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182460" + ], + "created_at": "2026-07-10T10:10:46.880231", + "updated_at": "2026-07-10T10:10:46.880231", + "url": "/v1/games/tiger-soldier-mp070" +} diff --git a/site/public/v1/games/tiger-soldier-mp071/index.json b/site/public/v1/games/tiger-soldier-mp071/index.json new file mode 100644 index 000000000000..dba86c678a00 --- /dev/null +++ b/site/public/v1/games/tiger-soldier-mp071/index.json @@ -0,0 +1,31 @@ +{ + "id": 155547, + "slug": "tiger-soldier-mp071", + "name": "Tiger Soldier Ⅰ MP071", + "release_date": "2021-09-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182462" + ], + "created_at": "2026-07-10T10:10:46.880231", + "updated_at": "2026-07-10T10:10:46.880231", + "url": "/v1/games/tiger-soldier-mp071" +} diff --git a/site/public/v1/games/tiger-soldier-mp072/index.json b/site/public/v1/games/tiger-soldier-mp072/index.json new file mode 100644 index 000000000000..f8e85be7b967 --- /dev/null +++ b/site/public/v1/games/tiger-soldier-mp072/index.json @@ -0,0 +1,31 @@ +{ + "id": 155548, + "slug": "tiger-soldier-mp072", + "name": "Tiger Soldier Ⅰ MP072", + "release_date": "2021-09-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182464" + ], + "created_at": "2026-07-10T10:10:46.880231", + "updated_at": "2026-07-10T10:10:46.880231", + "url": "/v1/games/tiger-soldier-mp072" +} diff --git a/site/public/v1/games/tiger-soldier-mp073/index.json b/site/public/v1/games/tiger-soldier-mp073/index.json new file mode 100644 index 000000000000..40372afaa556 --- /dev/null +++ b/site/public/v1/games/tiger-soldier-mp073/index.json @@ -0,0 +1,31 @@ +{ + "id": 155549, + "slug": "tiger-soldier-mp073", + "name": "Tiger Soldier Ⅰ MP073", + "release_date": "2021-09-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182465" + ], + "created_at": "2026-07-10T10:10:46.880231", + "updated_at": "2026-07-10T10:10:46.880231", + "url": "/v1/games/tiger-soldier-mp073" +} diff --git a/site/public/v1/games/tiger-soldier-mp074/index.json b/site/public/v1/games/tiger-soldier-mp074/index.json new file mode 100644 index 000000000000..84e9093a3b5b --- /dev/null +++ b/site/public/v1/games/tiger-soldier-mp074/index.json @@ -0,0 +1,31 @@ +{ + "id": 155550, + "slug": "tiger-soldier-mp074", + "name": "Tiger Soldier Ⅰ MP074", + "release_date": "2021-09-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182469" + ], + "created_at": "2026-07-10T10:10:46.881227", + "updated_at": "2026-07-10T10:10:46.881227", + "url": "/v1/games/tiger-soldier-mp074" +} diff --git a/site/public/v1/games/tiger-soldier-mp075/index.json b/site/public/v1/games/tiger-soldier-mp075/index.json new file mode 100644 index 000000000000..19a59edca470 --- /dev/null +++ b/site/public/v1/games/tiger-soldier-mp075/index.json @@ -0,0 +1,31 @@ +{ + "id": 155551, + "slug": "tiger-soldier-mp075", + "name": "Tiger Soldier Ⅰ MP075", + "release_date": "2021-09-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182471" + ], + "created_at": "2026-07-10T10:10:46.881227", + "updated_at": "2026-07-10T10:10:46.881227", + "url": "/v1/games/tiger-soldier-mp075" +} diff --git a/site/public/v1/games/tiger-soldier-mp076/index.json b/site/public/v1/games/tiger-soldier-mp076/index.json new file mode 100644 index 000000000000..b6d3f70abdbf --- /dev/null +++ b/site/public/v1/games/tiger-soldier-mp076/index.json @@ -0,0 +1,31 @@ +{ + "id": 155552, + "slug": "tiger-soldier-mp076", + "name": "Tiger Soldier Ⅰ MP076", + "release_date": "2021-09-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182474" + ], + "created_at": "2026-07-10T10:10:46.881227", + "updated_at": "2026-07-10T10:10:46.881227", + "url": "/v1/games/tiger-soldier-mp076" +} diff --git a/site/public/v1/games/tiger-soldier-mp077/index.json b/site/public/v1/games/tiger-soldier-mp077/index.json new file mode 100644 index 000000000000..a80a2c996100 --- /dev/null +++ b/site/public/v1/games/tiger-soldier-mp077/index.json @@ -0,0 +1,31 @@ +{ + "id": 155553, + "slug": "tiger-soldier-mp077", + "name": "Tiger Soldier Ⅰ MP077", + "release_date": "2021-09-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182479" + ], + "created_at": "2026-07-10T10:10:46.881227", + "updated_at": "2026-07-10T10:10:46.881227", + "url": "/v1/games/tiger-soldier-mp077" +} diff --git a/site/public/v1/games/tiger-soldier-mp078/index.json b/site/public/v1/games/tiger-soldier-mp078/index.json new file mode 100644 index 000000000000..c2750462da27 --- /dev/null +++ b/site/public/v1/games/tiger-soldier-mp078/index.json @@ -0,0 +1,31 @@ +{ + "id": 155554, + "slug": "tiger-soldier-mp078", + "name": "Tiger Soldier Ⅰ MP078", + "release_date": "2021-09-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182480" + ], + "created_at": "2026-07-10T10:10:46.881227", + "updated_at": "2026-07-10T10:10:46.881227", + "url": "/v1/games/tiger-soldier-mp078" +} diff --git a/site/public/v1/games/tiger-soldier-mp079/index.json b/site/public/v1/games/tiger-soldier-mp079/index.json new file mode 100644 index 000000000000..6b4d5403f80e --- /dev/null +++ b/site/public/v1/games/tiger-soldier-mp079/index.json @@ -0,0 +1,31 @@ +{ + "id": 155555, + "slug": "tiger-soldier-mp079", + "name": "Tiger Soldier Ⅰ MP079", + "release_date": "2021-09-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182484" + ], + "created_at": "2026-07-10T10:10:46.882244", + "updated_at": "2026-07-10T10:10:46.882244", + "url": "/v1/games/tiger-soldier-mp079" +} diff --git a/site/public/v1/games/tiger-soldier-mp080/index.json b/site/public/v1/games/tiger-soldier-mp080/index.json new file mode 100644 index 000000000000..6022473da876 --- /dev/null +++ b/site/public/v1/games/tiger-soldier-mp080/index.json @@ -0,0 +1,31 @@ +{ + "id": 155556, + "slug": "tiger-soldier-mp080", + "name": "Tiger Soldier Ⅰ MP080", + "release_date": "2021-09-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182486" + ], + "created_at": "2026-07-10T10:10:46.882244", + "updated_at": "2026-07-10T10:10:46.882244", + "url": "/v1/games/tiger-soldier-mp080" +} diff --git a/site/public/v1/games/tiger-soldier-mp081/index.json b/site/public/v1/games/tiger-soldier-mp081/index.json new file mode 100644 index 000000000000..daa2c2f72840 --- /dev/null +++ b/site/public/v1/games/tiger-soldier-mp081/index.json @@ -0,0 +1,31 @@ +{ + "id": 155557, + "slug": "tiger-soldier-mp081", + "name": "Tiger Soldier Ⅰ MP081", + "release_date": "2021-09-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182488" + ], + "created_at": "2026-07-10T10:10:46.882244", + "updated_at": "2026-07-10T10:10:46.882244", + "url": "/v1/games/tiger-soldier-mp081" +} diff --git a/site/public/v1/games/tiger-soldier-mp082/index.json b/site/public/v1/games/tiger-soldier-mp082/index.json new file mode 100644 index 000000000000..829c95d7ab45 --- /dev/null +++ b/site/public/v1/games/tiger-soldier-mp082/index.json @@ -0,0 +1,31 @@ +{ + "id": 155558, + "slug": "tiger-soldier-mp082", + "name": "Tiger Soldier Ⅰ MP082", + "release_date": "2021-09-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182490" + ], + "created_at": "2026-07-10T10:10:46.882244", + "updated_at": "2026-07-10T10:10:46.882244", + "url": "/v1/games/tiger-soldier-mp082" +} diff --git a/site/public/v1/games/tiger-soldier-mp083/index.json b/site/public/v1/games/tiger-soldier-mp083/index.json new file mode 100644 index 000000000000..c65c968b715f --- /dev/null +++ b/site/public/v1/games/tiger-soldier-mp083/index.json @@ -0,0 +1,31 @@ +{ + "id": 155559, + "slug": "tiger-soldier-mp083", + "name": "Tiger Soldier Ⅰ MP083", + "release_date": "2021-09-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182495" + ], + "created_at": "2026-07-10T10:10:46.883238", + "updated_at": "2026-07-10T10:10:46.883238", + "url": "/v1/games/tiger-soldier-mp083" +} diff --git a/site/public/v1/games/tiger-soldier-mp084/index.json b/site/public/v1/games/tiger-soldier-mp084/index.json new file mode 100644 index 000000000000..82ff42f373b2 --- /dev/null +++ b/site/public/v1/games/tiger-soldier-mp084/index.json @@ -0,0 +1,31 @@ +{ + "id": 155560, + "slug": "tiger-soldier-mp084", + "name": "Tiger Soldier Ⅰ MP084", + "release_date": "2021-09-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182501" + ], + "created_at": "2026-07-10T10:10:46.883238", + "updated_at": "2026-07-10T10:10:46.883238", + "url": "/v1/games/tiger-soldier-mp084" +} diff --git a/site/public/v1/games/tiger-soldier-mp085/index.json b/site/public/v1/games/tiger-soldier-mp085/index.json new file mode 100644 index 000000000000..e9feaa0bb66b --- /dev/null +++ b/site/public/v1/games/tiger-soldier-mp085/index.json @@ -0,0 +1,31 @@ +{ + "id": 155561, + "slug": "tiger-soldier-mp085", + "name": "Tiger Soldier Ⅰ MP085", + "release_date": "2021-09-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182505" + ], + "created_at": "2026-07-10T10:10:46.883238", + "updated_at": "2026-07-10T10:10:46.883238", + "url": "/v1/games/tiger-soldier-mp085" +} diff --git a/site/public/v1/games/tiger-soldier-mp086/index.json b/site/public/v1/games/tiger-soldier-mp086/index.json new file mode 100644 index 000000000000..6fa7bbbafe26 --- /dev/null +++ b/site/public/v1/games/tiger-soldier-mp086/index.json @@ -0,0 +1,31 @@ +{ + "id": 155562, + "slug": "tiger-soldier-mp086", + "name": "Tiger Soldier Ⅰ MP086", + "release_date": "2021-09-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182507" + ], + "created_at": "2026-07-10T10:10:46.883238", + "updated_at": "2026-07-10T10:10:46.883238", + "url": "/v1/games/tiger-soldier-mp086" +} diff --git a/site/public/v1/games/tiger-soldier-mp087/index.json b/site/public/v1/games/tiger-soldier-mp087/index.json new file mode 100644 index 000000000000..388d521a51ef --- /dev/null +++ b/site/public/v1/games/tiger-soldier-mp087/index.json @@ -0,0 +1,31 @@ +{ + "id": 155563, + "slug": "tiger-soldier-mp087", + "name": "Tiger Soldier Ⅰ MP087", + "release_date": "2021-09-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182510" + ], + "created_at": "2026-07-10T10:10:46.883238", + "updated_at": "2026-07-10T10:10:46.883238", + "url": "/v1/games/tiger-soldier-mp087" +} diff --git a/site/public/v1/games/tiger-soldier-mp088/index.json b/site/public/v1/games/tiger-soldier-mp088/index.json new file mode 100644 index 000000000000..e7054f91cf33 --- /dev/null +++ b/site/public/v1/games/tiger-soldier-mp088/index.json @@ -0,0 +1,31 @@ +{ + "id": 155564, + "slug": "tiger-soldier-mp088", + "name": "Tiger Soldier Ⅰ MP088", + "release_date": "2021-09-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182513" + ], + "created_at": "2026-07-10T10:10:46.884229", + "updated_at": "2026-07-10T10:10:46.884229", + "url": "/v1/games/tiger-soldier-mp088" +} diff --git a/site/public/v1/games/tiger-soldier-mp089/index.json b/site/public/v1/games/tiger-soldier-mp089/index.json new file mode 100644 index 000000000000..3e48c15c40e0 --- /dev/null +++ b/site/public/v1/games/tiger-soldier-mp089/index.json @@ -0,0 +1,31 @@ +{ + "id": 155565, + "slug": "tiger-soldier-mp089", + "name": "Tiger Soldier Ⅰ MP089", + "release_date": "2021-09-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182516" + ], + "created_at": "2026-07-10T10:10:46.884229", + "updated_at": "2026-07-10T10:10:46.884229", + "url": "/v1/games/tiger-soldier-mp089" +} diff --git a/site/public/v1/games/tiger-soldier-mp090/index.json b/site/public/v1/games/tiger-soldier-mp090/index.json new file mode 100644 index 000000000000..a116c8dd9e1f --- /dev/null +++ b/site/public/v1/games/tiger-soldier-mp090/index.json @@ -0,0 +1,31 @@ +{ + "id": 155566, + "slug": "tiger-soldier-mp090", + "name": "Tiger Soldier Ⅰ MP090", + "release_date": "2021-09-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182517" + ], + "created_at": "2026-07-10T10:10:46.884229", + "updated_at": "2026-07-10T10:10:46.884229", + "url": "/v1/games/tiger-soldier-mp090" +} diff --git a/site/public/v1/games/tiger-soldier-mp091/index.json b/site/public/v1/games/tiger-soldier-mp091/index.json new file mode 100644 index 000000000000..eb5334527cd7 --- /dev/null +++ b/site/public/v1/games/tiger-soldier-mp091/index.json @@ -0,0 +1,31 @@ +{ + "id": 155567, + "slug": "tiger-soldier-mp091", + "name": "Tiger Soldier Ⅰ MP091", + "release_date": "2021-09-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182518" + ], + "created_at": "2026-07-10T10:10:46.884229", + "updated_at": "2026-07-10T10:10:46.884229", + "url": "/v1/games/tiger-soldier-mp091" +} diff --git a/site/public/v1/games/tiger-soldier-mp092/index.json b/site/public/v1/games/tiger-soldier-mp092/index.json new file mode 100644 index 000000000000..584d80f2c493 --- /dev/null +++ b/site/public/v1/games/tiger-soldier-mp092/index.json @@ -0,0 +1,31 @@ +{ + "id": 155568, + "slug": "tiger-soldier-mp092", + "name": "Tiger Soldier Ⅰ MP092", + "release_date": "2021-09-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182520" + ], + "created_at": "2026-07-10T10:10:46.884229", + "updated_at": "2026-07-10T10:10:46.884229", + "url": "/v1/games/tiger-soldier-mp092" +} diff --git a/site/public/v1/games/tiger-soldier-mp093/index.json b/site/public/v1/games/tiger-soldier-mp093/index.json new file mode 100644 index 000000000000..6213d98885a9 --- /dev/null +++ b/site/public/v1/games/tiger-soldier-mp093/index.json @@ -0,0 +1,31 @@ +{ + "id": 155569, + "slug": "tiger-soldier-mp093", + "name": "Tiger Soldier Ⅰ MP093", + "release_date": "2021-09-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182522" + ], + "created_at": "2026-07-10T10:10:46.885181", + "updated_at": "2026-07-10T10:10:46.885181", + "url": "/v1/games/tiger-soldier-mp093" +} diff --git a/site/public/v1/games/tiger-soldier-mp094/index.json b/site/public/v1/games/tiger-soldier-mp094/index.json new file mode 100644 index 000000000000..a7ccd04e8275 --- /dev/null +++ b/site/public/v1/games/tiger-soldier-mp094/index.json @@ -0,0 +1,31 @@ +{ + "id": 155570, + "slug": "tiger-soldier-mp094", + "name": "Tiger Soldier Ⅰ MP094", + "release_date": "2021-09-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182523" + ], + "created_at": "2026-07-10T10:10:46.885181", + "updated_at": "2026-07-10T10:10:46.885181", + "url": "/v1/games/tiger-soldier-mp094" +} diff --git a/site/public/v1/games/tiger-soldier-mp095/index.json b/site/public/v1/games/tiger-soldier-mp095/index.json new file mode 100644 index 000000000000..3dfd4ff79c4a --- /dev/null +++ b/site/public/v1/games/tiger-soldier-mp095/index.json @@ -0,0 +1,31 @@ +{ + "id": 155571, + "slug": "tiger-soldier-mp095", + "name": "Tiger Soldier Ⅰ MP095", + "release_date": "2021-09-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182524" + ], + "created_at": "2026-07-10T10:10:46.885181", + "updated_at": "2026-07-10T10:10:46.885181", + "url": "/v1/games/tiger-soldier-mp095" +} diff --git a/site/public/v1/games/tiger-soldier-mp096/index.json b/site/public/v1/games/tiger-soldier-mp096/index.json new file mode 100644 index 000000000000..8629d4581ddc --- /dev/null +++ b/site/public/v1/games/tiger-soldier-mp096/index.json @@ -0,0 +1,31 @@ +{ + "id": 155572, + "slug": "tiger-soldier-mp096", + "name": "Tiger Soldier Ⅰ MP096", + "release_date": "2021-09-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182525" + ], + "created_at": "2026-07-10T10:10:46.885181", + "updated_at": "2026-07-10T10:10:46.885181", + "url": "/v1/games/tiger-soldier-mp096" +} diff --git a/site/public/v1/games/tiger-soldier-mp097/index.json b/site/public/v1/games/tiger-soldier-mp097/index.json new file mode 100644 index 000000000000..d48a02d43aed --- /dev/null +++ b/site/public/v1/games/tiger-soldier-mp097/index.json @@ -0,0 +1,31 @@ +{ + "id": 155573, + "slug": "tiger-soldier-mp097", + "name": "Tiger Soldier Ⅰ MP097", + "release_date": "2021-09-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182529" + ], + "created_at": "2026-07-10T10:10:46.886262", + "updated_at": "2026-07-10T10:10:46.886262", + "url": "/v1/games/tiger-soldier-mp097" +} diff --git a/site/public/v1/games/tiger-soldier-mp098/index.json b/site/public/v1/games/tiger-soldier-mp098/index.json new file mode 100644 index 000000000000..87e659dd40dc --- /dev/null +++ b/site/public/v1/games/tiger-soldier-mp098/index.json @@ -0,0 +1,31 @@ +{ + "id": 155574, + "slug": "tiger-soldier-mp098", + "name": "Tiger Soldier Ⅰ MP098", + "release_date": "2021-09-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182531" + ], + "created_at": "2026-07-10T10:10:46.886262", + "updated_at": "2026-07-10T10:10:46.886262", + "url": "/v1/games/tiger-soldier-mp098" +} diff --git a/site/public/v1/games/tiger-soldier-mp099/index.json b/site/public/v1/games/tiger-soldier-mp099/index.json new file mode 100644 index 000000000000..0724b3732d2e --- /dev/null +++ b/site/public/v1/games/tiger-soldier-mp099/index.json @@ -0,0 +1,31 @@ +{ + "id": 155575, + "slug": "tiger-soldier-mp099", + "name": "Tiger Soldier Ⅰ MP099", + "release_date": "2021-09-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182533" + ], + "created_at": "2026-07-10T10:10:46.886262", + "updated_at": "2026-07-10T10:10:46.886262", + "url": "/v1/games/tiger-soldier-mp099" +} diff --git a/site/public/v1/games/tiger-soldier-mp100/index.json b/site/public/v1/games/tiger-soldier-mp100/index.json new file mode 100644 index 000000000000..50d48422ac9f --- /dev/null +++ b/site/public/v1/games/tiger-soldier-mp100/index.json @@ -0,0 +1,31 @@ +{ + "id": 155576, + "slug": "tiger-soldier-mp100", + "name": "Tiger Soldier Ⅰ MP100", + "release_date": "2021-09-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182534" + ], + "created_at": "2026-07-10T10:10:46.886262", + "updated_at": "2026-07-10T10:10:46.886262", + "url": "/v1/games/tiger-soldier-mp100" +} diff --git a/site/public/v1/games/tiger-striker-mp001/index.json b/site/public/v1/games/tiger-striker-mp001/index.json new file mode 100644 index 000000000000..97473bb285cc --- /dev/null +++ b/site/public/v1/games/tiger-striker-mp001/index.json @@ -0,0 +1,31 @@ +{ + "id": 155578, + "slug": "tiger-striker-mp001", + "name": "Tiger Striker MP001", + "release_date": "2021-07-27", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182536" + ], + "created_at": "2026-07-10T10:10:46.887272", + "updated_at": "2026-07-10T10:10:46.887272", + "url": "/v1/games/tiger-striker-mp001" +} diff --git a/site/public/v1/games/tiger-striker-mp002/index.json b/site/public/v1/games/tiger-striker-mp002/index.json new file mode 100644 index 000000000000..8e236357ec41 --- /dev/null +++ b/site/public/v1/games/tiger-striker-mp002/index.json @@ -0,0 +1,31 @@ +{ + "id": 155579, + "slug": "tiger-striker-mp002", + "name": "Tiger Striker MP002", + "release_date": "2021-07-27", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182537" + ], + "created_at": "2026-07-10T10:10:46.887272", + "updated_at": "2026-07-10T10:10:46.887272", + "url": "/v1/games/tiger-striker-mp002" +} diff --git a/site/public/v1/games/tiger-striker-mp003/index.json b/site/public/v1/games/tiger-striker-mp003/index.json new file mode 100644 index 000000000000..e1bbd435be19 --- /dev/null +++ b/site/public/v1/games/tiger-striker-mp003/index.json @@ -0,0 +1,31 @@ +{ + "id": 155580, + "slug": "tiger-striker-mp003", + "name": "Tiger Striker MP003", + "release_date": "2021-07-27", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182539" + ], + "created_at": "2026-07-10T10:10:46.887272", + "updated_at": "2026-07-10T10:10:46.887272", + "url": "/v1/games/tiger-striker-mp003" +} diff --git a/site/public/v1/games/tiger-striker-mp004/index.json b/site/public/v1/games/tiger-striker-mp004/index.json new file mode 100644 index 000000000000..eb1648a48600 --- /dev/null +++ b/site/public/v1/games/tiger-striker-mp004/index.json @@ -0,0 +1,31 @@ +{ + "id": 155581, + "slug": "tiger-striker-mp004", + "name": "Tiger Striker MP004", + "release_date": "2021-07-27", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182540" + ], + "created_at": "2026-07-10T10:10:46.887272", + "updated_at": "2026-07-10T10:10:46.887272", + "url": "/v1/games/tiger-striker-mp004" +} diff --git a/site/public/v1/games/tiger-striker-mp005/index.json b/site/public/v1/games/tiger-striker-mp005/index.json new file mode 100644 index 000000000000..bb7cb1eedaf6 --- /dev/null +++ b/site/public/v1/games/tiger-striker-mp005/index.json @@ -0,0 +1,31 @@ +{ + "id": 155582, + "slug": "tiger-striker-mp005", + "name": "Tiger Striker MP005", + "release_date": "2021-07-27", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182542" + ], + "created_at": "2026-07-10T10:10:46.888238", + "updated_at": "2026-07-10T10:10:46.888238", + "url": "/v1/games/tiger-striker-mp005" +} diff --git a/site/public/v1/games/tiger-striker-mp006/index.json b/site/public/v1/games/tiger-striker-mp006/index.json new file mode 100644 index 000000000000..36baa4312e6f --- /dev/null +++ b/site/public/v1/games/tiger-striker-mp006/index.json @@ -0,0 +1,31 @@ +{ + "id": 155583, + "slug": "tiger-striker-mp006", + "name": "Tiger Striker MP006", + "release_date": "2021-07-27", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182544" + ], + "created_at": "2026-07-10T10:10:46.888238", + "updated_at": "2026-07-10T10:10:46.888238", + "url": "/v1/games/tiger-striker-mp006" +} diff --git a/site/public/v1/games/tiger-striker-mp007/index.json b/site/public/v1/games/tiger-striker-mp007/index.json new file mode 100644 index 000000000000..9749c28f28b3 --- /dev/null +++ b/site/public/v1/games/tiger-striker-mp007/index.json @@ -0,0 +1,31 @@ +{ + "id": 155584, + "slug": "tiger-striker-mp007", + "name": "Tiger Striker MP007", + "release_date": "2021-07-27", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182545" + ], + "created_at": "2026-07-10T10:10:46.888238", + "updated_at": "2026-07-10T10:10:46.888238", + "url": "/v1/games/tiger-striker-mp007" +} diff --git a/site/public/v1/games/tiger-striker-mp008/index.json b/site/public/v1/games/tiger-striker-mp008/index.json new file mode 100644 index 000000000000..b375e5da5e0d --- /dev/null +++ b/site/public/v1/games/tiger-striker-mp008/index.json @@ -0,0 +1,31 @@ +{ + "id": 155585, + "slug": "tiger-striker-mp008", + "name": "Tiger Striker MP008", + "release_date": "2021-07-27", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182546" + ], + "created_at": "2026-07-10T10:10:46.888238", + "updated_at": "2026-07-10T10:10:46.888238", + "url": "/v1/games/tiger-striker-mp008" +} diff --git a/site/public/v1/games/tiger-striker-mp009/index.json b/site/public/v1/games/tiger-striker-mp009/index.json new file mode 100644 index 000000000000..40c68d6d95af --- /dev/null +++ b/site/public/v1/games/tiger-striker-mp009/index.json @@ -0,0 +1,31 @@ +{ + "id": 155586, + "slug": "tiger-striker-mp009", + "name": "Tiger Striker MP009", + "release_date": "2021-07-27", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182547" + ], + "created_at": "2026-07-10T10:10:46.888238", + "updated_at": "2026-07-10T10:10:46.888238", + "url": "/v1/games/tiger-striker-mp009" +} diff --git a/site/public/v1/games/tiger-striker-mp010/index.json b/site/public/v1/games/tiger-striker-mp010/index.json new file mode 100644 index 000000000000..1e3579c1f578 --- /dev/null +++ b/site/public/v1/games/tiger-striker-mp010/index.json @@ -0,0 +1,31 @@ +{ + "id": 155587, + "slug": "tiger-striker-mp010", + "name": "Tiger Striker MP010", + "release_date": "2021-07-27", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182549" + ], + "created_at": "2026-07-10T10:10:46.889237", + "updated_at": "2026-07-10T10:10:46.889237", + "url": "/v1/games/tiger-striker-mp010" +} diff --git a/site/public/v1/games/tiger-striker-mp011/index.json b/site/public/v1/games/tiger-striker-mp011/index.json new file mode 100644 index 000000000000..c5dd1d09d80c --- /dev/null +++ b/site/public/v1/games/tiger-striker-mp011/index.json @@ -0,0 +1,31 @@ +{ + "id": 155588, + "slug": "tiger-striker-mp011", + "name": "Tiger Striker MP011", + "release_date": "2021-07-31", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182551" + ], + "created_at": "2026-07-10T10:10:46.889237", + "updated_at": "2026-07-10T10:10:46.889237", + "url": "/v1/games/tiger-striker-mp011" +} diff --git a/site/public/v1/games/tiger-striker-mp012/index.json b/site/public/v1/games/tiger-striker-mp012/index.json new file mode 100644 index 000000000000..bce7f462ee14 --- /dev/null +++ b/site/public/v1/games/tiger-striker-mp012/index.json @@ -0,0 +1,31 @@ +{ + "id": 155589, + "slug": "tiger-striker-mp012", + "name": "Tiger Striker MP012", + "release_date": "2021-07-31", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182553" + ], + "created_at": "2026-07-10T10:10:46.889237", + "updated_at": "2026-07-10T10:10:46.889237", + "url": "/v1/games/tiger-striker-mp012" +} diff --git a/site/public/v1/games/tiger-striker-mp013/index.json b/site/public/v1/games/tiger-striker-mp013/index.json new file mode 100644 index 000000000000..ce50028f2e9c --- /dev/null +++ b/site/public/v1/games/tiger-striker-mp013/index.json @@ -0,0 +1,31 @@ +{ + "id": 155590, + "slug": "tiger-striker-mp013", + "name": "Tiger Striker MP013", + "release_date": "2021-07-31", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182555" + ], + "created_at": "2026-07-10T10:10:46.889237", + "updated_at": "2026-07-10T10:10:46.889237", + "url": "/v1/games/tiger-striker-mp013" +} diff --git a/site/public/v1/games/tiger-striker-mp014/index.json b/site/public/v1/games/tiger-striker-mp014/index.json new file mode 100644 index 000000000000..5bce29c6ffbc --- /dev/null +++ b/site/public/v1/games/tiger-striker-mp014/index.json @@ -0,0 +1,31 @@ +{ + "id": 155591, + "slug": "tiger-striker-mp014", + "name": "Tiger Striker MP014", + "release_date": "2021-07-31", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182557" + ], + "created_at": "2026-07-10T10:10:46.890261", + "updated_at": "2026-07-10T10:10:46.890261", + "url": "/v1/games/tiger-striker-mp014" +} diff --git a/site/public/v1/games/tiger-striker-mp015/index.json b/site/public/v1/games/tiger-striker-mp015/index.json new file mode 100644 index 000000000000..4bc303acdbb9 --- /dev/null +++ b/site/public/v1/games/tiger-striker-mp015/index.json @@ -0,0 +1,31 @@ +{ + "id": 155592, + "slug": "tiger-striker-mp015", + "name": "Tiger Striker MP015", + "release_date": "2021-07-31", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182559" + ], + "created_at": "2026-07-10T10:10:46.890261", + "updated_at": "2026-07-10T10:10:46.890261", + "url": "/v1/games/tiger-striker-mp015" +} diff --git a/site/public/v1/games/tiger-striker-mp016/index.json b/site/public/v1/games/tiger-striker-mp016/index.json new file mode 100644 index 000000000000..4ce5becaddf3 --- /dev/null +++ b/site/public/v1/games/tiger-striker-mp016/index.json @@ -0,0 +1,31 @@ +{ + "id": 155593, + "slug": "tiger-striker-mp016", + "name": "Tiger Striker MP016", + "release_date": "2021-07-31", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182562" + ], + "created_at": "2026-07-10T10:10:46.890261", + "updated_at": "2026-07-10T10:10:46.890261", + "url": "/v1/games/tiger-striker-mp016" +} diff --git a/site/public/v1/games/tiger-striker-mp017/index.json b/site/public/v1/games/tiger-striker-mp017/index.json new file mode 100644 index 000000000000..7da2eb08b165 --- /dev/null +++ b/site/public/v1/games/tiger-striker-mp017/index.json @@ -0,0 +1,31 @@ +{ + "id": 155594, + "slug": "tiger-striker-mp017", + "name": "Tiger Striker MP017", + "release_date": "2021-07-31", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182565" + ], + "created_at": "2026-07-10T10:10:46.890261", + "updated_at": "2026-07-10T10:10:46.890261", + "url": "/v1/games/tiger-striker-mp017" +} diff --git a/site/public/v1/games/tiger-striker-mp018/index.json b/site/public/v1/games/tiger-striker-mp018/index.json new file mode 100644 index 000000000000..ec0e7881be86 --- /dev/null +++ b/site/public/v1/games/tiger-striker-mp018/index.json @@ -0,0 +1,31 @@ +{ + "id": 155595, + "slug": "tiger-striker-mp018", + "name": "Tiger Striker MP018", + "release_date": "2021-07-31", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182568" + ], + "created_at": "2026-07-10T10:10:46.890261", + "updated_at": "2026-07-10T10:10:46.890261", + "url": "/v1/games/tiger-striker-mp018" +} diff --git a/site/public/v1/games/tiger-striker-mp019/index.json b/site/public/v1/games/tiger-striker-mp019/index.json new file mode 100644 index 000000000000..6d4ae3f61569 --- /dev/null +++ b/site/public/v1/games/tiger-striker-mp019/index.json @@ -0,0 +1,31 @@ +{ + "id": 155596, + "slug": "tiger-striker-mp019", + "name": "Tiger Striker MP019", + "release_date": "2021-07-31", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182571" + ], + "created_at": "2026-07-10T10:10:46.891247", + "updated_at": "2026-07-10T10:10:46.891247", + "url": "/v1/games/tiger-striker-mp019" +} diff --git a/site/public/v1/games/tiger-striker-mp020/index.json b/site/public/v1/games/tiger-striker-mp020/index.json new file mode 100644 index 000000000000..f6c9eaf03a69 --- /dev/null +++ b/site/public/v1/games/tiger-striker-mp020/index.json @@ -0,0 +1,31 @@ +{ + "id": 155597, + "slug": "tiger-striker-mp020", + "name": "Tiger Striker MP020", + "release_date": "2021-07-31", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182581" + ], + "created_at": "2026-07-10T10:10:46.891247", + "updated_at": "2026-07-10T10:10:46.891247", + "url": "/v1/games/tiger-striker-mp020" +} diff --git a/site/public/v1/games/tiger-striker-mp021/index.json b/site/public/v1/games/tiger-striker-mp021/index.json new file mode 100644 index 000000000000..0fff72db2b36 --- /dev/null +++ b/site/public/v1/games/tiger-striker-mp021/index.json @@ -0,0 +1,31 @@ +{ + "id": 155598, + "slug": "tiger-striker-mp021", + "name": "Tiger Striker MP021", + "release_date": "2021-08-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182591" + ], + "created_at": "2026-07-10T10:10:46.891247", + "updated_at": "2026-07-10T10:10:46.891247", + "url": "/v1/games/tiger-striker-mp021" +} diff --git a/site/public/v1/games/tiger-striker-mp022/index.json b/site/public/v1/games/tiger-striker-mp022/index.json new file mode 100644 index 000000000000..51569e2c20cc --- /dev/null +++ b/site/public/v1/games/tiger-striker-mp022/index.json @@ -0,0 +1,31 @@ +{ + "id": 155599, + "slug": "tiger-striker-mp022", + "name": "Tiger Striker MP022", + "release_date": "2021-08-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182601" + ], + "created_at": "2026-07-10T10:10:46.891247", + "updated_at": "2026-07-10T10:10:46.891247", + "url": "/v1/games/tiger-striker-mp022" +} diff --git a/site/public/v1/games/tiger-striker-mp023/index.json b/site/public/v1/games/tiger-striker-mp023/index.json new file mode 100644 index 000000000000..0dff8580b016 --- /dev/null +++ b/site/public/v1/games/tiger-striker-mp023/index.json @@ -0,0 +1,31 @@ +{ + "id": 155600, + "slug": "tiger-striker-mp023", + "name": "Tiger Striker MP023", + "release_date": "2021-08-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182610" + ], + "created_at": "2026-07-10T10:10:46.892307", + "updated_at": "2026-07-10T10:10:46.892307", + "url": "/v1/games/tiger-striker-mp023" +} diff --git a/site/public/v1/games/tiger-striker-mp024/index.json b/site/public/v1/games/tiger-striker-mp024/index.json new file mode 100644 index 000000000000..93f8967eacaf --- /dev/null +++ b/site/public/v1/games/tiger-striker-mp024/index.json @@ -0,0 +1,31 @@ +{ + "id": 155601, + "slug": "tiger-striker-mp024", + "name": "Tiger Striker MP024", + "release_date": "2021-08-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182615" + ], + "created_at": "2026-07-10T10:10:46.892307", + "updated_at": "2026-07-10T10:10:46.892307", + "url": "/v1/games/tiger-striker-mp024" +} diff --git a/site/public/v1/games/tiger-striker-mp025/index.json b/site/public/v1/games/tiger-striker-mp025/index.json new file mode 100644 index 000000000000..6ce2005618fc --- /dev/null +++ b/site/public/v1/games/tiger-striker-mp025/index.json @@ -0,0 +1,31 @@ +{ + "id": 155602, + "slug": "tiger-striker-mp025", + "name": "Tiger Striker MP025", + "release_date": "2021-08-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182626" + ], + "created_at": "2026-07-10T10:10:46.893272", + "updated_at": "2026-07-10T10:10:46.893272", + "url": "/v1/games/tiger-striker-mp025" +} diff --git a/site/public/v1/games/tiger-striker-mp026/index.json b/site/public/v1/games/tiger-striker-mp026/index.json new file mode 100644 index 000000000000..11f78ebdf81d --- /dev/null +++ b/site/public/v1/games/tiger-striker-mp026/index.json @@ -0,0 +1,31 @@ +{ + "id": 155603, + "slug": "tiger-striker-mp026", + "name": "Tiger Striker MP026", + "release_date": "2021-08-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182632" + ], + "created_at": "2026-07-10T10:10:46.893272", + "updated_at": "2026-07-10T10:10:46.893272", + "url": "/v1/games/tiger-striker-mp026" +} diff --git a/site/public/v1/games/tiger-striker-mp027/index.json b/site/public/v1/games/tiger-striker-mp027/index.json new file mode 100644 index 000000000000..63bcb52b9128 --- /dev/null +++ b/site/public/v1/games/tiger-striker-mp027/index.json @@ -0,0 +1,31 @@ +{ + "id": 155604, + "slug": "tiger-striker-mp027", + "name": "Tiger Striker MP027", + "release_date": "2021-08-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182640" + ], + "created_at": "2026-07-10T10:10:46.893272", + "updated_at": "2026-07-10T10:10:46.893272", + "url": "/v1/games/tiger-striker-mp027" +} diff --git a/site/public/v1/games/tiger-striker-mp028/index.json b/site/public/v1/games/tiger-striker-mp028/index.json new file mode 100644 index 000000000000..dbfadcc10e69 --- /dev/null +++ b/site/public/v1/games/tiger-striker-mp028/index.json @@ -0,0 +1,31 @@ +{ + "id": 155605, + "slug": "tiger-striker-mp028", + "name": "Tiger Striker MP028", + "release_date": "2021-08-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182649" + ], + "created_at": "2026-07-10T10:10:46.893272", + "updated_at": "2026-07-10T10:10:46.893272", + "url": "/v1/games/tiger-striker-mp028" +} diff --git a/site/public/v1/games/tiger-striker-mp029/index.json b/site/public/v1/games/tiger-striker-mp029/index.json new file mode 100644 index 000000000000..0cfdc45f28f2 --- /dev/null +++ b/site/public/v1/games/tiger-striker-mp029/index.json @@ -0,0 +1,31 @@ +{ + "id": 155606, + "slug": "tiger-striker-mp029", + "name": "Tiger Striker MP029", + "release_date": "2021-08-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182651" + ], + "created_at": "2026-07-10T10:10:46.893272", + "updated_at": "2026-07-10T10:10:46.893272", + "url": "/v1/games/tiger-striker-mp029" +} diff --git a/site/public/v1/games/tiger-striker-mp030/index.json b/site/public/v1/games/tiger-striker-mp030/index.json new file mode 100644 index 000000000000..b680509357df --- /dev/null +++ b/site/public/v1/games/tiger-striker-mp030/index.json @@ -0,0 +1,31 @@ +{ + "id": 155607, + "slug": "tiger-striker-mp030", + "name": "Tiger Striker MP030", + "release_date": "2021-08-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182653" + ], + "created_at": "2026-07-10T10:10:46.894273", + "updated_at": "2026-07-10T10:10:46.894273", + "url": "/v1/games/tiger-striker-mp030" +} diff --git a/site/public/v1/games/tiger-striker-mp031/index.json b/site/public/v1/games/tiger-striker-mp031/index.json new file mode 100644 index 000000000000..5faaadd1cf9a --- /dev/null +++ b/site/public/v1/games/tiger-striker-mp031/index.json @@ -0,0 +1,31 @@ +{ + "id": 155608, + "slug": "tiger-striker-mp031", + "name": "Tiger Striker MP031", + "release_date": "2021-08-14", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182657" + ], + "created_at": "2026-07-10T10:10:46.894273", + "updated_at": "2026-07-10T10:10:46.894273", + "url": "/v1/games/tiger-striker-mp031" +} diff --git a/site/public/v1/games/tiger-striker-mp032/index.json b/site/public/v1/games/tiger-striker-mp032/index.json new file mode 100644 index 000000000000..a4450e41e97a --- /dev/null +++ b/site/public/v1/games/tiger-striker-mp032/index.json @@ -0,0 +1,31 @@ +{ + "id": 155609, + "slug": "tiger-striker-mp032", + "name": "Tiger Striker MP032", + "release_date": "2021-08-14", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182664" + ], + "created_at": "2026-07-10T10:10:46.894273", + "updated_at": "2026-07-10T10:10:46.894273", + "url": "/v1/games/tiger-striker-mp032" +} diff --git a/site/public/v1/games/tiger-striker-mp033/index.json b/site/public/v1/games/tiger-striker-mp033/index.json new file mode 100644 index 000000000000..e94e34d741b7 --- /dev/null +++ b/site/public/v1/games/tiger-striker-mp033/index.json @@ -0,0 +1,31 @@ +{ + "id": 155610, + "slug": "tiger-striker-mp033", + "name": "Tiger Striker MP033", + "release_date": "2021-08-14", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182677" + ], + "created_at": "2026-07-10T10:10:46.894273", + "updated_at": "2026-07-10T10:10:46.894273", + "url": "/v1/games/tiger-striker-mp033" +} diff --git a/site/public/v1/games/tiger-striker-mp034/index.json b/site/public/v1/games/tiger-striker-mp034/index.json new file mode 100644 index 000000000000..ecc5bd77eaa1 --- /dev/null +++ b/site/public/v1/games/tiger-striker-mp034/index.json @@ -0,0 +1,31 @@ +{ + "id": 155611, + "slug": "tiger-striker-mp034", + "name": "Tiger Striker MP034", + "release_date": "2021-08-14", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182680" + ], + "created_at": "2026-07-10T10:10:46.894273", + "updated_at": "2026-07-10T10:10:46.894273", + "url": "/v1/games/tiger-striker-mp034" +} diff --git a/site/public/v1/games/tiger-striker-mp035/index.json b/site/public/v1/games/tiger-striker-mp035/index.json new file mode 100644 index 000000000000..3d2ebb8b71e5 --- /dev/null +++ b/site/public/v1/games/tiger-striker-mp035/index.json @@ -0,0 +1,31 @@ +{ + "id": 155612, + "slug": "tiger-striker-mp035", + "name": "Tiger Striker MP035", + "release_date": "2021-08-14", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182688" + ], + "created_at": "2026-07-10T10:10:46.895259", + "updated_at": "2026-07-10T10:10:46.895259", + "url": "/v1/games/tiger-striker-mp035" +} diff --git a/site/public/v1/games/tiger-striker-mp036/index.json b/site/public/v1/games/tiger-striker-mp036/index.json new file mode 100644 index 000000000000..4ef0084cef58 --- /dev/null +++ b/site/public/v1/games/tiger-striker-mp036/index.json @@ -0,0 +1,31 @@ +{ + "id": 155613, + "slug": "tiger-striker-mp036", + "name": "Tiger Striker MP036", + "release_date": "2021-08-14", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182701" + ], + "created_at": "2026-07-10T10:10:46.895259", + "updated_at": "2026-07-10T10:10:46.895259", + "url": "/v1/games/tiger-striker-mp036" +} diff --git a/site/public/v1/games/tiger-striker-mp037/index.json b/site/public/v1/games/tiger-striker-mp037/index.json new file mode 100644 index 000000000000..d55c1d13474c --- /dev/null +++ b/site/public/v1/games/tiger-striker-mp037/index.json @@ -0,0 +1,31 @@ +{ + "id": 155614, + "slug": "tiger-striker-mp037", + "name": "Tiger Striker MP037", + "release_date": "2021-08-14", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182712" + ], + "created_at": "2026-07-10T10:10:46.895259", + "updated_at": "2026-07-10T10:10:46.895259", + "url": "/v1/games/tiger-striker-mp037" +} diff --git a/site/public/v1/games/tiger-striker-mp038/index.json b/site/public/v1/games/tiger-striker-mp038/index.json new file mode 100644 index 000000000000..f0f1a535ec54 --- /dev/null +++ b/site/public/v1/games/tiger-striker-mp038/index.json @@ -0,0 +1,31 @@ +{ + "id": 155615, + "slug": "tiger-striker-mp038", + "name": "Tiger Striker MP038", + "release_date": "2021-08-14", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182721" + ], + "created_at": "2026-07-10T10:10:46.895259", + "updated_at": "2026-07-10T10:10:46.895259", + "url": "/v1/games/tiger-striker-mp038" +} diff --git a/site/public/v1/games/tiger-striker-mp039/index.json b/site/public/v1/games/tiger-striker-mp039/index.json new file mode 100644 index 000000000000..bafff9e220f4 --- /dev/null +++ b/site/public/v1/games/tiger-striker-mp039/index.json @@ -0,0 +1,31 @@ +{ + "id": 155616, + "slug": "tiger-striker-mp039", + "name": "Tiger Striker MP039", + "release_date": "2021-08-14", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182725" + ], + "created_at": "2026-07-10T10:10:46.896242", + "updated_at": "2026-07-10T10:10:46.896242", + "url": "/v1/games/tiger-striker-mp039" +} diff --git a/site/public/v1/games/tiger-striker-mp040/index.json b/site/public/v1/games/tiger-striker-mp040/index.json new file mode 100644 index 000000000000..c203e998fa0e --- /dev/null +++ b/site/public/v1/games/tiger-striker-mp040/index.json @@ -0,0 +1,31 @@ +{ + "id": 155617, + "slug": "tiger-striker-mp040", + "name": "Tiger Striker MP040", + "release_date": "2021-08-14", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182737" + ], + "created_at": "2026-07-10T10:10:46.896242", + "updated_at": "2026-07-10T10:10:46.896242", + "url": "/v1/games/tiger-striker-mp040" +} diff --git a/site/public/v1/games/tiger-striker-mp041/index.json b/site/public/v1/games/tiger-striker-mp041/index.json new file mode 100644 index 000000000000..3d8cc6cfc5a8 --- /dev/null +++ b/site/public/v1/games/tiger-striker-mp041/index.json @@ -0,0 +1,31 @@ +{ + "id": 155618, + "slug": "tiger-striker-mp041", + "name": "Tiger Striker MP041", + "release_date": "2021-08-19", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182748" + ], + "created_at": "2026-07-10T10:10:46.896242", + "updated_at": "2026-07-10T10:10:46.896242", + "url": "/v1/games/tiger-striker-mp041" +} diff --git a/site/public/v1/games/tiger-striker-mp042/index.json b/site/public/v1/games/tiger-striker-mp042/index.json new file mode 100644 index 000000000000..e6d40797bfb3 --- /dev/null +++ b/site/public/v1/games/tiger-striker-mp042/index.json @@ -0,0 +1,31 @@ +{ + "id": 155619, + "slug": "tiger-striker-mp042", + "name": "Tiger Striker MP042", + "release_date": "2021-08-19", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182761" + ], + "created_at": "2026-07-10T10:10:46.896242", + "updated_at": "2026-07-10T10:10:46.896242", + "url": "/v1/games/tiger-striker-mp042" +} diff --git a/site/public/v1/games/tiger-striker-mp043/index.json b/site/public/v1/games/tiger-striker-mp043/index.json new file mode 100644 index 000000000000..250095bd923c --- /dev/null +++ b/site/public/v1/games/tiger-striker-mp043/index.json @@ -0,0 +1,31 @@ +{ + "id": 155620, + "slug": "tiger-striker-mp043", + "name": "Tiger Striker MP043", + "release_date": "2021-08-19", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182765" + ], + "created_at": "2026-07-10T10:10:46.897281", + "updated_at": "2026-07-10T10:10:46.897281", + "url": "/v1/games/tiger-striker-mp043" +} diff --git a/site/public/v1/games/tiger-striker-mp044/index.json b/site/public/v1/games/tiger-striker-mp044/index.json new file mode 100644 index 000000000000..33bc3053aa97 --- /dev/null +++ b/site/public/v1/games/tiger-striker-mp044/index.json @@ -0,0 +1,31 @@ +{ + "id": 155621, + "slug": "tiger-striker-mp044", + "name": "Tiger Striker MP044", + "release_date": "2021-08-19", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182769" + ], + "created_at": "2026-07-10T10:10:46.897281", + "updated_at": "2026-07-10T10:10:46.897281", + "url": "/v1/games/tiger-striker-mp044" +} diff --git a/site/public/v1/games/tiger-striker-mp045/index.json b/site/public/v1/games/tiger-striker-mp045/index.json new file mode 100644 index 000000000000..9f0453782c84 --- /dev/null +++ b/site/public/v1/games/tiger-striker-mp045/index.json @@ -0,0 +1,31 @@ +{ + "id": 155622, + "slug": "tiger-striker-mp045", + "name": "Tiger Striker MP045", + "release_date": "2021-08-19", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182774" + ], + "created_at": "2026-07-10T10:10:46.897281", + "updated_at": "2026-07-10T10:10:46.897281", + "url": "/v1/games/tiger-striker-mp045" +} diff --git a/site/public/v1/games/tiger-striker-mp046/index.json b/site/public/v1/games/tiger-striker-mp046/index.json new file mode 100644 index 000000000000..3f5ad8c54629 --- /dev/null +++ b/site/public/v1/games/tiger-striker-mp046/index.json @@ -0,0 +1,31 @@ +{ + "id": 155623, + "slug": "tiger-striker-mp046", + "name": "Tiger Striker MP046", + "release_date": "2021-08-19", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182776" + ], + "created_at": "2026-07-10T10:10:46.897281", + "updated_at": "2026-07-10T10:10:46.897281", + "url": "/v1/games/tiger-striker-mp046" +} diff --git a/site/public/v1/games/tiger-striker-mp047/index.json b/site/public/v1/games/tiger-striker-mp047/index.json new file mode 100644 index 000000000000..1abd87cc67e5 --- /dev/null +++ b/site/public/v1/games/tiger-striker-mp047/index.json @@ -0,0 +1,31 @@ +{ + "id": 155624, + "slug": "tiger-striker-mp047", + "name": "Tiger Striker MP047", + "release_date": "2021-08-19", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182780" + ], + "created_at": "2026-07-10T10:10:46.898253", + "updated_at": "2026-07-10T10:10:46.898253", + "url": "/v1/games/tiger-striker-mp047" +} diff --git a/site/public/v1/games/tiger-striker-mp048/index.json b/site/public/v1/games/tiger-striker-mp048/index.json new file mode 100644 index 000000000000..502a790b814f --- /dev/null +++ b/site/public/v1/games/tiger-striker-mp048/index.json @@ -0,0 +1,31 @@ +{ + "id": 155625, + "slug": "tiger-striker-mp048", + "name": "Tiger Striker MP048", + "release_date": "2021-08-19", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182783" + ], + "created_at": "2026-07-10T10:10:46.898253", + "updated_at": "2026-07-10T10:10:46.898253", + "url": "/v1/games/tiger-striker-mp048" +} diff --git a/site/public/v1/games/tiger-striker-mp049/index.json b/site/public/v1/games/tiger-striker-mp049/index.json new file mode 100644 index 000000000000..b08cac163d0b --- /dev/null +++ b/site/public/v1/games/tiger-striker-mp049/index.json @@ -0,0 +1,31 @@ +{ + "id": 155626, + "slug": "tiger-striker-mp049", + "name": "Tiger Striker MP049", + "release_date": "2021-08-19", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182786" + ], + "created_at": "2026-07-10T10:10:46.898253", + "updated_at": "2026-07-10T10:10:46.898253", + "url": "/v1/games/tiger-striker-mp049" +} diff --git a/site/public/v1/games/tiger-striker-mp050/index.json b/site/public/v1/games/tiger-striker-mp050/index.json new file mode 100644 index 000000000000..49c3df061866 --- /dev/null +++ b/site/public/v1/games/tiger-striker-mp050/index.json @@ -0,0 +1,31 @@ +{ + "id": 155627, + "slug": "tiger-striker-mp050", + "name": "Tiger Striker MP050", + "release_date": "2021-08-19", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182790" + ], + "created_at": "2026-07-10T10:10:46.898253", + "updated_at": "2026-07-10T10:10:46.898253", + "url": "/v1/games/tiger-striker-mp050" +} diff --git a/site/public/v1/games/tiger-striker-mp051/index.json b/site/public/v1/games/tiger-striker-mp051/index.json new file mode 100644 index 000000000000..e2cf6ed827e0 --- /dev/null +++ b/site/public/v1/games/tiger-striker-mp051/index.json @@ -0,0 +1,31 @@ +{ + "id": 155628, + "slug": "tiger-striker-mp051", + "name": "Tiger Striker MP051", + "release_date": "2021-08-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182794" + ], + "created_at": "2026-07-10T10:10:46.898253", + "updated_at": "2026-07-10T10:10:46.898253", + "url": "/v1/games/tiger-striker-mp051" +} diff --git a/site/public/v1/games/tiger-striker-mp052/index.json b/site/public/v1/games/tiger-striker-mp052/index.json new file mode 100644 index 000000000000..a0d46116426a --- /dev/null +++ b/site/public/v1/games/tiger-striker-mp052/index.json @@ -0,0 +1,31 @@ +{ + "id": 155629, + "slug": "tiger-striker-mp052", + "name": "Tiger Striker MP052", + "release_date": "2021-08-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182796" + ], + "created_at": "2026-07-10T10:10:46.899237", + "updated_at": "2026-07-10T10:10:46.899237", + "url": "/v1/games/tiger-striker-mp052" +} diff --git a/site/public/v1/games/tiger-striker-mp053/index.json b/site/public/v1/games/tiger-striker-mp053/index.json new file mode 100644 index 000000000000..c5ebe4c9e7d2 --- /dev/null +++ b/site/public/v1/games/tiger-striker-mp053/index.json @@ -0,0 +1,31 @@ +{ + "id": 155630, + "slug": "tiger-striker-mp053", + "name": "Tiger Striker MP053", + "release_date": "2021-08-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182799" + ], + "created_at": "2026-07-10T10:10:46.899237", + "updated_at": "2026-07-10T10:10:46.899237", + "url": "/v1/games/tiger-striker-mp053" +} diff --git a/site/public/v1/games/tiger-striker-mp054/index.json b/site/public/v1/games/tiger-striker-mp054/index.json new file mode 100644 index 000000000000..9cad60a43a71 --- /dev/null +++ b/site/public/v1/games/tiger-striker-mp054/index.json @@ -0,0 +1,31 @@ +{ + "id": 155631, + "slug": "tiger-striker-mp054", + "name": "Tiger Striker MP054", + "release_date": "2021-08-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182800" + ], + "created_at": "2026-07-10T10:10:46.899237", + "updated_at": "2026-07-10T10:10:46.899237", + "url": "/v1/games/tiger-striker-mp054" +} diff --git a/site/public/v1/games/tiger-striker-mp055/index.json b/site/public/v1/games/tiger-striker-mp055/index.json new file mode 100644 index 000000000000..3bcf084c4877 --- /dev/null +++ b/site/public/v1/games/tiger-striker-mp055/index.json @@ -0,0 +1,31 @@ +{ + "id": 155632, + "slug": "tiger-striker-mp055", + "name": "Tiger Striker MP055", + "release_date": "2021-08-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182804" + ], + "created_at": "2026-07-10T10:10:46.899237", + "updated_at": "2026-07-10T10:10:46.899237", + "url": "/v1/games/tiger-striker-mp055" +} diff --git a/site/public/v1/games/tiger-striker-mp056/index.json b/site/public/v1/games/tiger-striker-mp056/index.json new file mode 100644 index 000000000000..2dfa7b0fde4a --- /dev/null +++ b/site/public/v1/games/tiger-striker-mp056/index.json @@ -0,0 +1,31 @@ +{ + "id": 155633, + "slug": "tiger-striker-mp056", + "name": "Tiger Striker MP056", + "release_date": "2021-08-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182809" + ], + "created_at": "2026-07-10T10:10:46.899237", + "updated_at": "2026-07-10T10:10:46.899237", + "url": "/v1/games/tiger-striker-mp056" +} diff --git a/site/public/v1/games/tiger-striker-mp057/index.json b/site/public/v1/games/tiger-striker-mp057/index.json new file mode 100644 index 000000000000..a7bb157090bc --- /dev/null +++ b/site/public/v1/games/tiger-striker-mp057/index.json @@ -0,0 +1,31 @@ +{ + "id": 155634, + "slug": "tiger-striker-mp057", + "name": "Tiger Striker MP057", + "release_date": "2021-08-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182813" + ], + "created_at": "2026-07-10T10:10:46.900249", + "updated_at": "2026-07-10T10:10:46.900249", + "url": "/v1/games/tiger-striker-mp057" +} diff --git a/site/public/v1/games/tiger-striker-mp058/index.json b/site/public/v1/games/tiger-striker-mp058/index.json new file mode 100644 index 000000000000..6a49f4cf4ed1 --- /dev/null +++ b/site/public/v1/games/tiger-striker-mp058/index.json @@ -0,0 +1,31 @@ +{ + "id": 155635, + "slug": "tiger-striker-mp058", + "name": "Tiger Striker MP058", + "release_date": "2021-08-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182816" + ], + "created_at": "2026-07-10T10:10:46.900249", + "updated_at": "2026-07-10T10:10:46.900249", + "url": "/v1/games/tiger-striker-mp058" +} diff --git a/site/public/v1/games/tiger-striker-mp059/index.json b/site/public/v1/games/tiger-striker-mp059/index.json new file mode 100644 index 000000000000..04b9ef243f41 --- /dev/null +++ b/site/public/v1/games/tiger-striker-mp059/index.json @@ -0,0 +1,31 @@ +{ + "id": 155636, + "slug": "tiger-striker-mp059", + "name": "Tiger Striker MP059", + "release_date": "2021-08-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182818" + ], + "created_at": "2026-07-10T10:10:46.900249", + "updated_at": "2026-07-10T10:10:46.900249", + "url": "/v1/games/tiger-striker-mp059" +} diff --git a/site/public/v1/games/tiger-striker-mp060/index.json b/site/public/v1/games/tiger-striker-mp060/index.json new file mode 100644 index 000000000000..b205473263f9 --- /dev/null +++ b/site/public/v1/games/tiger-striker-mp060/index.json @@ -0,0 +1,31 @@ +{ + "id": 155637, + "slug": "tiger-striker-mp060", + "name": "Tiger Striker MP060", + "release_date": "2021-08-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182820" + ], + "created_at": "2026-07-10T10:10:46.900249", + "updated_at": "2026-07-10T10:10:46.900249", + "url": "/v1/games/tiger-striker-mp060" +} diff --git a/site/public/v1/games/tiger-striker-mp061/index.json b/site/public/v1/games/tiger-striker-mp061/index.json new file mode 100644 index 000000000000..395cf7fa917c --- /dev/null +++ b/site/public/v1/games/tiger-striker-mp061/index.json @@ -0,0 +1,31 @@ +{ + "id": 155638, + "slug": "tiger-striker-mp061", + "name": "Tiger Striker MP061", + "release_date": "2021-08-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182824" + ], + "created_at": "2026-07-10T10:10:46.901182", + "updated_at": "2026-07-10T10:10:46.901182", + "url": "/v1/games/tiger-striker-mp061" +} diff --git a/site/public/v1/games/tiger-striker-mp062/index.json b/site/public/v1/games/tiger-striker-mp062/index.json new file mode 100644 index 000000000000..512cfe4f8787 --- /dev/null +++ b/site/public/v1/games/tiger-striker-mp062/index.json @@ -0,0 +1,31 @@ +{ + "id": 155639, + "slug": "tiger-striker-mp062", + "name": "Tiger Striker MP062", + "release_date": "2021-08-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182827" + ], + "created_at": "2026-07-10T10:10:46.901182", + "updated_at": "2026-07-10T10:10:46.901182", + "url": "/v1/games/tiger-striker-mp062" +} diff --git a/site/public/v1/games/tiger-striker-mp063/index.json b/site/public/v1/games/tiger-striker-mp063/index.json new file mode 100644 index 000000000000..a7cd4a88b1a7 --- /dev/null +++ b/site/public/v1/games/tiger-striker-mp063/index.json @@ -0,0 +1,31 @@ +{ + "id": 155640, + "slug": "tiger-striker-mp063", + "name": "Tiger Striker MP063", + "release_date": "2021-08-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182829" + ], + "created_at": "2026-07-10T10:10:46.901182", + "updated_at": "2026-07-10T10:10:46.901182", + "url": "/v1/games/tiger-striker-mp063" +} diff --git a/site/public/v1/games/tiger-striker-mp064/index.json b/site/public/v1/games/tiger-striker-mp064/index.json new file mode 100644 index 000000000000..6264c584ba77 --- /dev/null +++ b/site/public/v1/games/tiger-striker-mp064/index.json @@ -0,0 +1,31 @@ +{ + "id": 155641, + "slug": "tiger-striker-mp064", + "name": "Tiger Striker MP064", + "release_date": "2021-08-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182833" + ], + "created_at": "2026-07-10T10:10:46.901182", + "updated_at": "2026-07-10T10:10:46.901182", + "url": "/v1/games/tiger-striker-mp064" +} diff --git a/site/public/v1/games/tiger-striker-mp065/index.json b/site/public/v1/games/tiger-striker-mp065/index.json new file mode 100644 index 000000000000..6a0fb05071db --- /dev/null +++ b/site/public/v1/games/tiger-striker-mp065/index.json @@ -0,0 +1,31 @@ +{ + "id": 155642, + "slug": "tiger-striker-mp065", + "name": "Tiger Striker MP065", + "release_date": "2021-08-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182834" + ], + "created_at": "2026-07-10T10:10:46.901182", + "updated_at": "2026-07-10T10:10:46.901182", + "url": "/v1/games/tiger-striker-mp065" +} diff --git a/site/public/v1/games/tiger-striker-mp066/index.json b/site/public/v1/games/tiger-striker-mp066/index.json new file mode 100644 index 000000000000..a588586491b4 --- /dev/null +++ b/site/public/v1/games/tiger-striker-mp066/index.json @@ -0,0 +1,31 @@ +{ + "id": 155643, + "slug": "tiger-striker-mp066", + "name": "Tiger Striker MP066", + "release_date": "2021-08-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182838" + ], + "created_at": "2026-07-10T10:10:46.902178", + "updated_at": "2026-07-10T10:10:46.902178", + "url": "/v1/games/tiger-striker-mp066" +} diff --git a/site/public/v1/games/tiger-striker-mp067/index.json b/site/public/v1/games/tiger-striker-mp067/index.json new file mode 100644 index 000000000000..c6592b2bcfab --- /dev/null +++ b/site/public/v1/games/tiger-striker-mp067/index.json @@ -0,0 +1,31 @@ +{ + "id": 155644, + "slug": "tiger-striker-mp067", + "name": "Tiger Striker MP067", + "release_date": "2021-08-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182840" + ], + "created_at": "2026-07-10T10:10:46.902178", + "updated_at": "2026-07-10T10:10:46.902178", + "url": "/v1/games/tiger-striker-mp067" +} diff --git a/site/public/v1/games/tiger-striker-mp068/index.json b/site/public/v1/games/tiger-striker-mp068/index.json new file mode 100644 index 000000000000..9d26d0395f18 --- /dev/null +++ b/site/public/v1/games/tiger-striker-mp068/index.json @@ -0,0 +1,31 @@ +{ + "id": 155645, + "slug": "tiger-striker-mp068", + "name": "Tiger Striker MP068", + "release_date": "2021-08-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182842" + ], + "created_at": "2026-07-10T10:10:46.902178", + "updated_at": "2026-07-10T10:10:46.902178", + "url": "/v1/games/tiger-striker-mp068" +} diff --git a/site/public/v1/games/tiger-striker-mp069/index.json b/site/public/v1/games/tiger-striker-mp069/index.json new file mode 100644 index 000000000000..5438fce024eb --- /dev/null +++ b/site/public/v1/games/tiger-striker-mp069/index.json @@ -0,0 +1,31 @@ +{ + "id": 155646, + "slug": "tiger-striker-mp069", + "name": "Tiger Striker MP069", + "release_date": "2021-08-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182844" + ], + "created_at": "2026-07-10T10:10:46.903178", + "updated_at": "2026-07-10T10:10:46.903178", + "url": "/v1/games/tiger-striker-mp069" +} diff --git a/site/public/v1/games/tiger-striker-mp070/index.json b/site/public/v1/games/tiger-striker-mp070/index.json new file mode 100644 index 000000000000..b3179fa4b14e --- /dev/null +++ b/site/public/v1/games/tiger-striker-mp070/index.json @@ -0,0 +1,31 @@ +{ + "id": 155647, + "slug": "tiger-striker-mp070", + "name": "Tiger Striker MP070", + "release_date": "2021-08-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182846" + ], + "created_at": "2026-07-10T10:10:46.903178", + "updated_at": "2026-07-10T10:10:46.903178", + "url": "/v1/games/tiger-striker-mp070" +} diff --git a/site/public/v1/games/tiger-striker-mp071/index.json b/site/public/v1/games/tiger-striker-mp071/index.json new file mode 100644 index 000000000000..c9ba5c22a346 --- /dev/null +++ b/site/public/v1/games/tiger-striker-mp071/index.json @@ -0,0 +1,31 @@ +{ + "id": 155648, + "slug": "tiger-striker-mp071", + "name": "Tiger Striker MP071", + "release_date": "2021-09-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182848" + ], + "created_at": "2026-07-10T10:10:46.903178", + "updated_at": "2026-07-10T10:10:46.903178", + "url": "/v1/games/tiger-striker-mp071" +} diff --git a/site/public/v1/games/tiger-striker-mp072/index.json b/site/public/v1/games/tiger-striker-mp072/index.json new file mode 100644 index 000000000000..5cda2b4f77e8 --- /dev/null +++ b/site/public/v1/games/tiger-striker-mp072/index.json @@ -0,0 +1,31 @@ +{ + "id": 155649, + "slug": "tiger-striker-mp072", + "name": "Tiger Striker MP072", + "release_date": "2021-09-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182851" + ], + "created_at": "2026-07-10T10:10:46.903178", + "updated_at": "2026-07-10T10:10:46.903178", + "url": "/v1/games/tiger-striker-mp072" +} diff --git a/site/public/v1/games/tiger-striker-mp073/index.json b/site/public/v1/games/tiger-striker-mp073/index.json new file mode 100644 index 000000000000..ec5a84bd86b8 --- /dev/null +++ b/site/public/v1/games/tiger-striker-mp073/index.json @@ -0,0 +1,31 @@ +{ + "id": 155650, + "slug": "tiger-striker-mp073", + "name": "Tiger Striker MP073", + "release_date": "2021-09-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182856" + ], + "created_at": "2026-07-10T10:10:46.903178", + "updated_at": "2026-07-10T10:10:46.903178", + "url": "/v1/games/tiger-striker-mp073" +} diff --git a/site/public/v1/games/tiger-striker-mp074/index.json b/site/public/v1/games/tiger-striker-mp074/index.json new file mode 100644 index 000000000000..b0027d6bfe3b --- /dev/null +++ b/site/public/v1/games/tiger-striker-mp074/index.json @@ -0,0 +1,31 @@ +{ + "id": 155651, + "slug": "tiger-striker-mp074", + "name": "Tiger Striker MP074", + "release_date": "2021-09-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182860" + ], + "created_at": "2026-07-10T10:10:46.904181", + "updated_at": "2026-07-10T10:10:46.904181", + "url": "/v1/games/tiger-striker-mp074" +} diff --git a/site/public/v1/games/tiger-striker-mp075/index.json b/site/public/v1/games/tiger-striker-mp075/index.json new file mode 100644 index 000000000000..2d746cee91a4 --- /dev/null +++ b/site/public/v1/games/tiger-striker-mp075/index.json @@ -0,0 +1,31 @@ +{ + "id": 155652, + "slug": "tiger-striker-mp075", + "name": "Tiger Striker MP075", + "release_date": "2021-09-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182862" + ], + "created_at": "2026-07-10T10:10:46.904181", + "updated_at": "2026-07-10T10:10:46.904181", + "url": "/v1/games/tiger-striker-mp075" +} diff --git a/site/public/v1/games/tiger-striker-mp076/index.json b/site/public/v1/games/tiger-striker-mp076/index.json new file mode 100644 index 000000000000..ef0d9ba8edc5 --- /dev/null +++ b/site/public/v1/games/tiger-striker-mp076/index.json @@ -0,0 +1,31 @@ +{ + "id": 155653, + "slug": "tiger-striker-mp076", + "name": "Tiger Striker MP076", + "release_date": "2021-09-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182864" + ], + "created_at": "2026-07-10T10:10:46.904181", + "updated_at": "2026-07-10T10:10:46.904181", + "url": "/v1/games/tiger-striker-mp076" +} diff --git a/site/public/v1/games/tiger-striker-mp077/index.json b/site/public/v1/games/tiger-striker-mp077/index.json new file mode 100644 index 000000000000..edae91e14973 --- /dev/null +++ b/site/public/v1/games/tiger-striker-mp077/index.json @@ -0,0 +1,31 @@ +{ + "id": 155654, + "slug": "tiger-striker-mp077", + "name": "Tiger Striker MP077", + "release_date": "2021-09-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182866" + ], + "created_at": "2026-07-10T10:10:46.904181", + "updated_at": "2026-07-10T10:10:46.904181", + "url": "/v1/games/tiger-striker-mp077" +} diff --git a/site/public/v1/games/tiger-striker-mp078/index.json b/site/public/v1/games/tiger-striker-mp078/index.json new file mode 100644 index 000000000000..4226ae7acdf9 --- /dev/null +++ b/site/public/v1/games/tiger-striker-mp078/index.json @@ -0,0 +1,31 @@ +{ + "id": 155655, + "slug": "tiger-striker-mp078", + "name": "Tiger Striker MP078", + "release_date": "2021-09-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182868" + ], + "created_at": "2026-07-10T10:10:46.904181", + "updated_at": "2026-07-10T10:10:46.904181", + "url": "/v1/games/tiger-striker-mp078" +} diff --git a/site/public/v1/games/tiger-striker-mp079/index.json b/site/public/v1/games/tiger-striker-mp079/index.json new file mode 100644 index 000000000000..bc498f31749a --- /dev/null +++ b/site/public/v1/games/tiger-striker-mp079/index.json @@ -0,0 +1,31 @@ +{ + "id": 155656, + "slug": "tiger-striker-mp079", + "name": "Tiger Striker MP079", + "release_date": "2021-09-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182870" + ], + "created_at": "2026-07-10T10:10:46.904181", + "updated_at": "2026-07-10T10:10:46.904181", + "url": "/v1/games/tiger-striker-mp079" +} diff --git a/site/public/v1/games/tiger-striker-mp080/index.json b/site/public/v1/games/tiger-striker-mp080/index.json new file mode 100644 index 000000000000..46ef7e2a9431 --- /dev/null +++ b/site/public/v1/games/tiger-striker-mp080/index.json @@ -0,0 +1,31 @@ +{ + "id": 155657, + "slug": "tiger-striker-mp080", + "name": "Tiger Striker MP080", + "release_date": "2021-09-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182871" + ], + "created_at": "2026-07-10T10:10:46.905248", + "updated_at": "2026-07-10T10:10:46.905248", + "url": "/v1/games/tiger-striker-mp080" +} diff --git a/site/public/v1/games/tiger-striker-mp081/index.json b/site/public/v1/games/tiger-striker-mp081/index.json new file mode 100644 index 000000000000..43ebd01f67e2 --- /dev/null +++ b/site/public/v1/games/tiger-striker-mp081/index.json @@ -0,0 +1,31 @@ +{ + "id": 155658, + "slug": "tiger-striker-mp081", + "name": "Tiger Striker MP081", + "release_date": "2021-09-09", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182873" + ], + "created_at": "2026-07-10T10:10:46.905248", + "updated_at": "2026-07-10T10:10:46.905248", + "url": "/v1/games/tiger-striker-mp081" +} diff --git a/site/public/v1/games/tiger-striker-mp082/index.json b/site/public/v1/games/tiger-striker-mp082/index.json new file mode 100644 index 000000000000..bddcd9b70ac2 --- /dev/null +++ b/site/public/v1/games/tiger-striker-mp082/index.json @@ -0,0 +1,31 @@ +{ + "id": 155659, + "slug": "tiger-striker-mp082", + "name": "Tiger Striker MP082", + "release_date": "2021-09-09", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182880" + ], + "created_at": "2026-07-10T10:10:46.905248", + "updated_at": "2026-07-10T10:10:46.905248", + "url": "/v1/games/tiger-striker-mp082" +} diff --git a/site/public/v1/games/tiger-striker-mp083/index.json b/site/public/v1/games/tiger-striker-mp083/index.json new file mode 100644 index 000000000000..59ba35ca1c7e --- /dev/null +++ b/site/public/v1/games/tiger-striker-mp083/index.json @@ -0,0 +1,31 @@ +{ + "id": 155660, + "slug": "tiger-striker-mp083", + "name": "Tiger Striker MP083", + "release_date": "2021-09-09", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182884" + ], + "created_at": "2026-07-10T10:10:46.905248", + "updated_at": "2026-07-10T10:10:46.905248", + "url": "/v1/games/tiger-striker-mp083" +} diff --git a/site/public/v1/games/tiger-striker-mp084/index.json b/site/public/v1/games/tiger-striker-mp084/index.json new file mode 100644 index 000000000000..3ea89ecf2d17 --- /dev/null +++ b/site/public/v1/games/tiger-striker-mp084/index.json @@ -0,0 +1,31 @@ +{ + "id": 155661, + "slug": "tiger-striker-mp084", + "name": "Tiger Striker MP084", + "release_date": "2021-09-09", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182886" + ], + "created_at": "2026-07-10T10:10:46.906251", + "updated_at": "2026-07-10T10:10:46.906251", + "url": "/v1/games/tiger-striker-mp084" +} diff --git a/site/public/v1/games/tiger-striker-mp085/index.json b/site/public/v1/games/tiger-striker-mp085/index.json new file mode 100644 index 000000000000..12791633b5ce --- /dev/null +++ b/site/public/v1/games/tiger-striker-mp085/index.json @@ -0,0 +1,31 @@ +{ + "id": 155662, + "slug": "tiger-striker-mp085", + "name": "Tiger Striker MP085", + "release_date": "2021-09-09", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182890" + ], + "created_at": "2026-07-10T10:10:46.906251", + "updated_at": "2026-07-10T10:10:46.906251", + "url": "/v1/games/tiger-striker-mp085" +} diff --git a/site/public/v1/games/tiger-striker-mp086/index.json b/site/public/v1/games/tiger-striker-mp086/index.json new file mode 100644 index 000000000000..891e6db30f84 --- /dev/null +++ b/site/public/v1/games/tiger-striker-mp086/index.json @@ -0,0 +1,31 @@ +{ + "id": 155663, + "slug": "tiger-striker-mp086", + "name": "Tiger Striker MP086", + "release_date": "2021-09-09", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182900" + ], + "created_at": "2026-07-10T10:10:46.906251", + "updated_at": "2026-07-10T10:10:46.906251", + "url": "/v1/games/tiger-striker-mp086" +} diff --git a/site/public/v1/games/tiger-striker-mp087/index.json b/site/public/v1/games/tiger-striker-mp087/index.json new file mode 100644 index 000000000000..876225dd557c --- /dev/null +++ b/site/public/v1/games/tiger-striker-mp087/index.json @@ -0,0 +1,31 @@ +{ + "id": 155664, + "slug": "tiger-striker-mp087", + "name": "Tiger Striker MP087", + "release_date": "2021-09-09", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182906" + ], + "created_at": "2026-07-10T10:10:46.906251", + "updated_at": "2026-07-10T10:10:46.906251", + "url": "/v1/games/tiger-striker-mp087" +} diff --git a/site/public/v1/games/tiger-striker-mp088/index.json b/site/public/v1/games/tiger-striker-mp088/index.json new file mode 100644 index 000000000000..28eb58ccbd84 --- /dev/null +++ b/site/public/v1/games/tiger-striker-mp088/index.json @@ -0,0 +1,31 @@ +{ + "id": 155665, + "slug": "tiger-striker-mp088", + "name": "Tiger Striker MP088", + "release_date": "2021-09-09", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182913" + ], + "created_at": "2026-07-10T10:10:46.906251", + "updated_at": "2026-07-10T10:10:46.906251", + "url": "/v1/games/tiger-striker-mp088" +} diff --git a/site/public/v1/games/tiger-striker-mp089/index.json b/site/public/v1/games/tiger-striker-mp089/index.json new file mode 100644 index 000000000000..f177b5f83308 --- /dev/null +++ b/site/public/v1/games/tiger-striker-mp089/index.json @@ -0,0 +1,31 @@ +{ + "id": 155666, + "slug": "tiger-striker-mp089", + "name": "Tiger Striker MP089", + "release_date": "2021-09-09", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182918" + ], + "created_at": "2026-07-10T10:10:46.907291", + "updated_at": "2026-07-10T10:10:46.907291", + "url": "/v1/games/tiger-striker-mp089" +} diff --git a/site/public/v1/games/tiger-striker-mp090/index.json b/site/public/v1/games/tiger-striker-mp090/index.json new file mode 100644 index 000000000000..eb17ffcdad32 --- /dev/null +++ b/site/public/v1/games/tiger-striker-mp090/index.json @@ -0,0 +1,31 @@ +{ + "id": 155667, + "slug": "tiger-striker-mp090", + "name": "Tiger Striker MP090", + "release_date": "2021-09-09", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182920" + ], + "created_at": "2026-07-10T10:10:46.907291", + "updated_at": "2026-07-10T10:10:46.907291", + "url": "/v1/games/tiger-striker-mp090" +} diff --git a/site/public/v1/games/tiger-striker-mp091/index.json b/site/public/v1/games/tiger-striker-mp091/index.json new file mode 100644 index 000000000000..9283f416d6ba --- /dev/null +++ b/site/public/v1/games/tiger-striker-mp091/index.json @@ -0,0 +1,31 @@ +{ + "id": 155668, + "slug": "tiger-striker-mp091", + "name": "Tiger Striker MP091", + "release_date": "2021-09-11", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182926" + ], + "created_at": "2026-07-10T10:10:46.907291", + "updated_at": "2026-07-10T10:10:46.907291", + "url": "/v1/games/tiger-striker-mp091" +} diff --git a/site/public/v1/games/tiger-striker-mp092/index.json b/site/public/v1/games/tiger-striker-mp092/index.json new file mode 100644 index 000000000000..d91e9ed7d717 --- /dev/null +++ b/site/public/v1/games/tiger-striker-mp092/index.json @@ -0,0 +1,31 @@ +{ + "id": 155669, + "slug": "tiger-striker-mp092", + "name": "Tiger Striker MP092", + "release_date": "2021-09-11", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182929" + ], + "created_at": "2026-07-10T10:10:46.908261", + "updated_at": "2026-07-10T10:10:46.908261", + "url": "/v1/games/tiger-striker-mp092" +} diff --git a/site/public/v1/games/tiger-striker-mp093/index.json b/site/public/v1/games/tiger-striker-mp093/index.json new file mode 100644 index 000000000000..e1432a9d4978 --- /dev/null +++ b/site/public/v1/games/tiger-striker-mp093/index.json @@ -0,0 +1,31 @@ +{ + "id": 155670, + "slug": "tiger-striker-mp093", + "name": "Tiger Striker MP093", + "release_date": "2021-09-11", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182931" + ], + "created_at": "2026-07-10T10:10:46.908261", + "updated_at": "2026-07-10T10:10:46.908261", + "url": "/v1/games/tiger-striker-mp093" +} diff --git a/site/public/v1/games/tiger-striker-mp094/index.json b/site/public/v1/games/tiger-striker-mp094/index.json new file mode 100644 index 000000000000..3e347839d1e1 --- /dev/null +++ b/site/public/v1/games/tiger-striker-mp094/index.json @@ -0,0 +1,31 @@ +{ + "id": 155671, + "slug": "tiger-striker-mp094", + "name": "Tiger Striker MP094", + "release_date": "2021-09-11", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182935" + ], + "created_at": "2026-07-10T10:10:46.908261", + "updated_at": "2026-07-10T10:10:46.908261", + "url": "/v1/games/tiger-striker-mp094" +} diff --git a/site/public/v1/games/tiger-striker-mp095/index.json b/site/public/v1/games/tiger-striker-mp095/index.json new file mode 100644 index 000000000000..f137aa38dfb3 --- /dev/null +++ b/site/public/v1/games/tiger-striker-mp095/index.json @@ -0,0 +1,31 @@ +{ + "id": 155672, + "slug": "tiger-striker-mp095", + "name": "Tiger Striker MP095", + "release_date": "2021-09-11", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182936" + ], + "created_at": "2026-07-10T10:10:46.908261", + "updated_at": "2026-07-10T10:10:46.908261", + "url": "/v1/games/tiger-striker-mp095" +} diff --git a/site/public/v1/games/tiger-striker-mp096/index.json b/site/public/v1/games/tiger-striker-mp096/index.json new file mode 100644 index 000000000000..9f23e2139e64 --- /dev/null +++ b/site/public/v1/games/tiger-striker-mp096/index.json @@ -0,0 +1,31 @@ +{ + "id": 155673, + "slug": "tiger-striker-mp096", + "name": "Tiger Striker MP096", + "release_date": "2021-09-11", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182937" + ], + "created_at": "2026-07-10T10:10:46.908261", + "updated_at": "2026-07-10T10:10:46.908261", + "url": "/v1/games/tiger-striker-mp096" +} diff --git a/site/public/v1/games/tiger-striker-mp097/index.json b/site/public/v1/games/tiger-striker-mp097/index.json new file mode 100644 index 000000000000..c6b4aab60d47 --- /dev/null +++ b/site/public/v1/games/tiger-striker-mp097/index.json @@ -0,0 +1,31 @@ +{ + "id": 155674, + "slug": "tiger-striker-mp097", + "name": "Tiger Striker MP097", + "release_date": "2021-09-11", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182941" + ], + "created_at": "2026-07-10T10:10:46.909273", + "updated_at": "2026-07-10T10:10:46.909273", + "url": "/v1/games/tiger-striker-mp097" +} diff --git a/site/public/v1/games/tiger-striker-mp098/index.json b/site/public/v1/games/tiger-striker-mp098/index.json new file mode 100644 index 000000000000..ad838368b4aa --- /dev/null +++ b/site/public/v1/games/tiger-striker-mp098/index.json @@ -0,0 +1,31 @@ +{ + "id": 155675, + "slug": "tiger-striker-mp098", + "name": "Tiger Striker MP098", + "release_date": "2021-09-11", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182943" + ], + "created_at": "2026-07-10T10:10:46.909273", + "updated_at": "2026-07-10T10:10:46.909273", + "url": "/v1/games/tiger-striker-mp098" +} diff --git a/site/public/v1/games/tiger-striker-mp099/index.json b/site/public/v1/games/tiger-striker-mp099/index.json new file mode 100644 index 000000000000..298d2ceeaf44 --- /dev/null +++ b/site/public/v1/games/tiger-striker-mp099/index.json @@ -0,0 +1,31 @@ +{ + "id": 155676, + "slug": "tiger-striker-mp099", + "name": "Tiger Striker MP099", + "release_date": "2021-09-11", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182944" + ], + "created_at": "2026-07-10T10:10:46.909273", + "updated_at": "2026-07-10T10:10:46.909273", + "url": "/v1/games/tiger-striker-mp099" +} diff --git a/site/public/v1/games/tiger-striker-mp100/index.json b/site/public/v1/games/tiger-striker-mp100/index.json new file mode 100644 index 000000000000..162468449983 --- /dev/null +++ b/site/public/v1/games/tiger-striker-mp100/index.json @@ -0,0 +1,31 @@ +{ + "id": 155677, + "slug": "tiger-striker-mp100", + "name": "Tiger Striker MP100", + "release_date": "2021-09-11", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182945" + ], + "created_at": "2026-07-10T10:10:46.909273", + "updated_at": "2026-07-10T10:10:46.909273", + "url": "/v1/games/tiger-striker-mp100" +} diff --git a/site/public/v1/games/tiger-tank-59-a-gun-mp001/index.json b/site/public/v1/games/tiger-tank-59-a-gun-mp001/index.json new file mode 100644 index 000000000000..9b165765d73b --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-a-gun-mp001/index.json @@ -0,0 +1,31 @@ +{ + "id": 155679, + "slug": "tiger-tank-59-a-gun-mp001", + "name": "Tiger Tank 59 Ⅰ A-Gun MP001", + "release_date": "2021-06-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182949" + ], + "created_at": "2026-07-10T10:10:46.910276", + "updated_at": "2026-07-10T10:10:46.910276", + "url": "/v1/games/tiger-tank-59-a-gun-mp001" +} diff --git a/site/public/v1/games/tiger-tank-59-a-gun-mp002/index.json b/site/public/v1/games/tiger-tank-59-a-gun-mp002/index.json new file mode 100644 index 000000000000..23cf8b5dc70b --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-a-gun-mp002/index.json @@ -0,0 +1,31 @@ +{ + "id": 155680, + "slug": "tiger-tank-59-a-gun-mp002", + "name": "Tiger Tank 59 Ⅰ A-Gun MP002", + "release_date": "2021-06-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182959" + ], + "created_at": "2026-07-10T10:10:46.910276", + "updated_at": "2026-07-10T10:10:46.910276", + "url": "/v1/games/tiger-tank-59-a-gun-mp002" +} diff --git a/site/public/v1/games/tiger-tank-59-a-gun-mp003/index.json b/site/public/v1/games/tiger-tank-59-a-gun-mp003/index.json new file mode 100644 index 000000000000..8063fe0d5ed5 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-a-gun-mp003/index.json @@ -0,0 +1,31 @@ +{ + "id": 155681, + "slug": "tiger-tank-59-a-gun-mp003", + "name": "Tiger Tank 59 Ⅰ A-Gun MP003", + "release_date": "2021-06-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182967" + ], + "created_at": "2026-07-10T10:10:46.910276", + "updated_at": "2026-07-10T10:10:46.910276", + "url": "/v1/games/tiger-tank-59-a-gun-mp003" +} diff --git a/site/public/v1/games/tiger-tank-59-a-gun-mp004/index.json b/site/public/v1/games/tiger-tank-59-a-gun-mp004/index.json new file mode 100644 index 000000000000..bb49ae5b2c7f --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-a-gun-mp004/index.json @@ -0,0 +1,31 @@ +{ + "id": 155682, + "slug": "tiger-tank-59-a-gun-mp004", + "name": "Tiger Tank 59 Ⅰ A-Gun MP004", + "release_date": "2021-06-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182975" + ], + "created_at": "2026-07-10T10:10:46.910276", + "updated_at": "2026-07-10T10:10:46.910276", + "url": "/v1/games/tiger-tank-59-a-gun-mp004" +} diff --git a/site/public/v1/games/tiger-tank-59-a-gun-mp005/index.json b/site/public/v1/games/tiger-tank-59-a-gun-mp005/index.json new file mode 100644 index 000000000000..c551e2d758f0 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-a-gun-mp005/index.json @@ -0,0 +1,31 @@ +{ + "id": 155683, + "slug": "tiger-tank-59-a-gun-mp005", + "name": "Tiger Tank 59 Ⅰ A-Gun MP005", + "release_date": "2021-06-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182984" + ], + "created_at": "2026-07-10T10:10:46.911234", + "updated_at": "2026-07-10T10:10:46.911234", + "url": "/v1/games/tiger-tank-59-a-gun-mp005" +} diff --git a/site/public/v1/games/tiger-tank-59-a-gun-mp006/index.json b/site/public/v1/games/tiger-tank-59-a-gun-mp006/index.json new file mode 100644 index 000000000000..6ef3c65b0ad7 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-a-gun-mp006/index.json @@ -0,0 +1,31 @@ +{ + "id": 155684, + "slug": "tiger-tank-59-a-gun-mp006", + "name": "Tiger Tank 59 Ⅰ A-Gun MP006", + "release_date": "2021-06-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182988" + ], + "created_at": "2026-07-10T10:10:46.911234", + "updated_at": "2026-07-10T10:10:46.911234", + "url": "/v1/games/tiger-tank-59-a-gun-mp006" +} diff --git a/site/public/v1/games/tiger-tank-59-a-gun-mp007/index.json b/site/public/v1/games/tiger-tank-59-a-gun-mp007/index.json new file mode 100644 index 000000000000..ccc74e1963e7 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-a-gun-mp007/index.json @@ -0,0 +1,31 @@ +{ + "id": 155685, + "slug": "tiger-tank-59-a-gun-mp007", + "name": "Tiger Tank 59 Ⅰ A-Gun MP007", + "release_date": "2021-06-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182996" + ], + "created_at": "2026-07-10T10:10:46.911234", + "updated_at": "2026-07-10T10:10:46.911234", + "url": "/v1/games/tiger-tank-59-a-gun-mp007" +} diff --git a/site/public/v1/games/tiger-tank-59-a-gun-mp008/index.json b/site/public/v1/games/tiger-tank-59-a-gun-mp008/index.json new file mode 100644 index 000000000000..2897686cd330 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-a-gun-mp008/index.json @@ -0,0 +1,31 @@ +{ + "id": 155686, + "slug": "tiger-tank-59-a-gun-mp008", + "name": "Tiger Tank 59 Ⅰ A-Gun MP008", + "release_date": "2021-06-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116182998" + ], + "created_at": "2026-07-10T10:10:46.911234", + "updated_at": "2026-07-10T10:10:46.911234", + "url": "/v1/games/tiger-tank-59-a-gun-mp008" +} diff --git a/site/public/v1/games/tiger-tank-59-a-gun-mp009/index.json b/site/public/v1/games/tiger-tank-59-a-gun-mp009/index.json new file mode 100644 index 000000000000..894da93a1f92 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-a-gun-mp009/index.json @@ -0,0 +1,31 @@ +{ + "id": 155687, + "slug": "tiger-tank-59-a-gun-mp009", + "name": "Tiger Tank 59 Ⅰ A-Gun MP009", + "release_date": "2021-06-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183007" + ], + "created_at": "2026-07-10T10:10:46.911234", + "updated_at": "2026-07-10T10:10:46.911234", + "url": "/v1/games/tiger-tank-59-a-gun-mp009" +} diff --git a/site/public/v1/games/tiger-tank-59-a-gun-mp010/index.json b/site/public/v1/games/tiger-tank-59-a-gun-mp010/index.json new file mode 100644 index 000000000000..b9d3b2ed4b77 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-a-gun-mp010/index.json @@ -0,0 +1,31 @@ +{ + "id": 155688, + "slug": "tiger-tank-59-a-gun-mp010", + "name": "Tiger Tank 59 Ⅰ A-Gun MP010", + "release_date": "2021-06-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183008" + ], + "created_at": "2026-07-10T10:10:46.912230", + "updated_at": "2026-07-10T10:10:46.912230", + "url": "/v1/games/tiger-tank-59-a-gun-mp010" +} diff --git a/site/public/v1/games/tiger-tank-59-a-gun-mp011/index.json b/site/public/v1/games/tiger-tank-59-a-gun-mp011/index.json new file mode 100644 index 000000000000..33a6bd2ebf70 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-a-gun-mp011/index.json @@ -0,0 +1,31 @@ +{ + "id": 155689, + "slug": "tiger-tank-59-a-gun-mp011", + "name": "Tiger Tank 59 Ⅰ A-Gun MP011", + "release_date": "2021-06-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183012" + ], + "created_at": "2026-07-10T10:10:46.912230", + "updated_at": "2026-07-10T10:10:46.912230", + "url": "/v1/games/tiger-tank-59-a-gun-mp011" +} diff --git a/site/public/v1/games/tiger-tank-59-a-gun-mp012/index.json b/site/public/v1/games/tiger-tank-59-a-gun-mp012/index.json new file mode 100644 index 000000000000..41b6c53e9527 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-a-gun-mp012/index.json @@ -0,0 +1,31 @@ +{ + "id": 155690, + "slug": "tiger-tank-59-a-gun-mp012", + "name": "Tiger Tank 59 Ⅰ A-Gun MP012", + "release_date": "2021-06-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183020" + ], + "created_at": "2026-07-10T10:10:46.912230", + "updated_at": "2026-07-10T10:10:46.912230", + "url": "/v1/games/tiger-tank-59-a-gun-mp012" +} diff --git a/site/public/v1/games/tiger-tank-59-a-gun-mp013/index.json b/site/public/v1/games/tiger-tank-59-a-gun-mp013/index.json new file mode 100644 index 000000000000..1c26a35b7a23 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-a-gun-mp013/index.json @@ -0,0 +1,31 @@ +{ + "id": 155691, + "slug": "tiger-tank-59-a-gun-mp013", + "name": "Tiger Tank 59 Ⅰ A-Gun MP013", + "release_date": "2021-06-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183028" + ], + "created_at": "2026-07-10T10:10:46.912230", + "updated_at": "2026-07-10T10:10:46.912230", + "url": "/v1/games/tiger-tank-59-a-gun-mp013" +} diff --git a/site/public/v1/games/tiger-tank-59-a-gun-mp014/index.json b/site/public/v1/games/tiger-tank-59-a-gun-mp014/index.json new file mode 100644 index 000000000000..20cabd2382f3 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-a-gun-mp014/index.json @@ -0,0 +1,31 @@ +{ + "id": 155692, + "slug": "tiger-tank-59-a-gun-mp014", + "name": "Tiger Tank 59 Ⅰ A-Gun MP014", + "release_date": "2021-06-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183031" + ], + "created_at": "2026-07-10T10:10:46.913269", + "updated_at": "2026-07-10T10:10:46.913269", + "url": "/v1/games/tiger-tank-59-a-gun-mp014" +} diff --git a/site/public/v1/games/tiger-tank-59-a-gun-mp015/index.json b/site/public/v1/games/tiger-tank-59-a-gun-mp015/index.json new file mode 100644 index 000000000000..820879108a85 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-a-gun-mp015/index.json @@ -0,0 +1,31 @@ +{ + "id": 155693, + "slug": "tiger-tank-59-a-gun-mp015", + "name": "Tiger Tank 59 Ⅰ A-Gun MP015", + "release_date": "2021-06-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183039" + ], + "created_at": "2026-07-10T10:10:46.913269", + "updated_at": "2026-07-10T10:10:46.913269", + "url": "/v1/games/tiger-tank-59-a-gun-mp015" +} diff --git a/site/public/v1/games/tiger-tank-59-a-gun-mp016/index.json b/site/public/v1/games/tiger-tank-59-a-gun-mp016/index.json new file mode 100644 index 000000000000..ceab72451cd5 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-a-gun-mp016/index.json @@ -0,0 +1,31 @@ +{ + "id": 155694, + "slug": "tiger-tank-59-a-gun-mp016", + "name": "Tiger Tank 59 Ⅰ A-Gun MP016", + "release_date": "2021-06-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183049" + ], + "created_at": "2026-07-10T10:10:46.913269", + "updated_at": "2026-07-10T10:10:46.913269", + "url": "/v1/games/tiger-tank-59-a-gun-mp016" +} diff --git a/site/public/v1/games/tiger-tank-59-a-gun-mp017/index.json b/site/public/v1/games/tiger-tank-59-a-gun-mp017/index.json new file mode 100644 index 000000000000..ebd50ff5d10a --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-a-gun-mp017/index.json @@ -0,0 +1,31 @@ +{ + "id": 155695, + "slug": "tiger-tank-59-a-gun-mp017", + "name": "Tiger Tank 59 Ⅰ A-Gun MP017", + "release_date": "2021-06-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183059" + ], + "created_at": "2026-07-10T10:10:46.913269", + "updated_at": "2026-07-10T10:10:46.913269", + "url": "/v1/games/tiger-tank-59-a-gun-mp017" +} diff --git a/site/public/v1/games/tiger-tank-59-a-gun-mp018/index.json b/site/public/v1/games/tiger-tank-59-a-gun-mp018/index.json new file mode 100644 index 000000000000..2382371a905b --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-a-gun-mp018/index.json @@ -0,0 +1,31 @@ +{ + "id": 155696, + "slug": "tiger-tank-59-a-gun-mp018", + "name": "Tiger Tank 59 Ⅰ A-Gun MP018", + "release_date": "2021-06-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183066" + ], + "created_at": "2026-07-10T10:10:46.913269", + "updated_at": "2026-07-10T10:10:46.913269", + "url": "/v1/games/tiger-tank-59-a-gun-mp018" +} diff --git a/site/public/v1/games/tiger-tank-59-a-gun-mp019/index.json b/site/public/v1/games/tiger-tank-59-a-gun-mp019/index.json new file mode 100644 index 000000000000..b1ac88bf167a --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-a-gun-mp019/index.json @@ -0,0 +1,31 @@ +{ + "id": 155697, + "slug": "tiger-tank-59-a-gun-mp019", + "name": "Tiger Tank 59 Ⅰ A-Gun MP019", + "release_date": "2021-06-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183068" + ], + "created_at": "2026-07-10T10:10:46.914256", + "updated_at": "2026-07-10T10:10:46.914256", + "url": "/v1/games/tiger-tank-59-a-gun-mp019" +} diff --git a/site/public/v1/games/tiger-tank-59-a-gun-mp020/index.json b/site/public/v1/games/tiger-tank-59-a-gun-mp020/index.json new file mode 100644 index 000000000000..5188a9309ae9 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-a-gun-mp020/index.json @@ -0,0 +1,31 @@ +{ + "id": 155698, + "slug": "tiger-tank-59-a-gun-mp020", + "name": "Tiger Tank 59 Ⅰ A-Gun MP020", + "release_date": "2021-06-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183076" + ], + "created_at": "2026-07-10T10:10:46.914256", + "updated_at": "2026-07-10T10:10:46.914256", + "url": "/v1/games/tiger-tank-59-a-gun-mp020" +} diff --git a/site/public/v1/games/tiger-tank-59-a-gun-mp021/index.json b/site/public/v1/games/tiger-tank-59-a-gun-mp021/index.json new file mode 100644 index 000000000000..958fae9075d9 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-a-gun-mp021/index.json @@ -0,0 +1,31 @@ +{ + "id": 155699, + "slug": "tiger-tank-59-a-gun-mp021", + "name": "Tiger Tank 59 Ⅰ A-Gun MP021", + "release_date": "2021-06-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183085" + ], + "created_at": "2026-07-10T10:10:46.914256", + "updated_at": "2026-07-10T10:10:46.914256", + "url": "/v1/games/tiger-tank-59-a-gun-mp021" +} diff --git a/site/public/v1/games/tiger-tank-59-a-gun-mp022/index.json b/site/public/v1/games/tiger-tank-59-a-gun-mp022/index.json new file mode 100644 index 000000000000..b24cb945af61 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-a-gun-mp022/index.json @@ -0,0 +1,31 @@ +{ + "id": 155700, + "slug": "tiger-tank-59-a-gun-mp022", + "name": "Tiger Tank 59 Ⅰ A-Gun MP022", + "release_date": "2021-06-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183095" + ], + "created_at": "2026-07-10T10:10:46.914256", + "updated_at": "2026-07-10T10:10:46.914256", + "url": "/v1/games/tiger-tank-59-a-gun-mp022" +} diff --git a/site/public/v1/games/tiger-tank-59-a-gun-mp023/index.json b/site/public/v1/games/tiger-tank-59-a-gun-mp023/index.json new file mode 100644 index 000000000000..ccc365149002 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-a-gun-mp023/index.json @@ -0,0 +1,31 @@ +{ + "id": 155701, + "slug": "tiger-tank-59-a-gun-mp023", + "name": "Tiger Tank 59 Ⅰ A-Gun MP023", + "release_date": "2021-06-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183103" + ], + "created_at": "2026-07-10T10:10:46.915236", + "updated_at": "2026-07-10T10:10:46.915236", + "url": "/v1/games/tiger-tank-59-a-gun-mp023" +} diff --git a/site/public/v1/games/tiger-tank-59-a-gun-mp024/index.json b/site/public/v1/games/tiger-tank-59-a-gun-mp024/index.json new file mode 100644 index 000000000000..811457bbe21f --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-a-gun-mp024/index.json @@ -0,0 +1,31 @@ +{ + "id": 155702, + "slug": "tiger-tank-59-a-gun-mp024", + "name": "Tiger Tank 59 Ⅰ A-Gun MP024", + "release_date": "2021-06-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183104" + ], + "created_at": "2026-07-10T10:10:46.915236", + "updated_at": "2026-07-10T10:10:46.915236", + "url": "/v1/games/tiger-tank-59-a-gun-mp024" +} diff --git a/site/public/v1/games/tiger-tank-59-a-gun-mp025/index.json b/site/public/v1/games/tiger-tank-59-a-gun-mp025/index.json new file mode 100644 index 000000000000..35d35740665a --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-a-gun-mp025/index.json @@ -0,0 +1,31 @@ +{ + "id": 155703, + "slug": "tiger-tank-59-a-gun-mp025", + "name": "Tiger Tank 59 Ⅰ A-Gun MP025", + "release_date": "2021-06-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183113" + ], + "created_at": "2026-07-10T10:10:46.915236", + "updated_at": "2026-07-10T10:10:46.915236", + "url": "/v1/games/tiger-tank-59-a-gun-mp025" +} diff --git a/site/public/v1/games/tiger-tank-59-a-gun-mp026/index.json b/site/public/v1/games/tiger-tank-59-a-gun-mp026/index.json new file mode 100644 index 000000000000..add385dcd967 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-a-gun-mp026/index.json @@ -0,0 +1,31 @@ +{ + "id": 155704, + "slug": "tiger-tank-59-a-gun-mp026", + "name": "Tiger Tank 59 Ⅰ A-Gun MP026", + "release_date": "2021-06-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183123" + ], + "created_at": "2026-07-10T10:10:46.915236", + "updated_at": "2026-07-10T10:10:46.915236", + "url": "/v1/games/tiger-tank-59-a-gun-mp026" +} diff --git a/site/public/v1/games/tiger-tank-59-a-gun-mp027/index.json b/site/public/v1/games/tiger-tank-59-a-gun-mp027/index.json new file mode 100644 index 000000000000..17ff3bc37cce --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-a-gun-mp027/index.json @@ -0,0 +1,31 @@ +{ + "id": 155705, + "slug": "tiger-tank-59-a-gun-mp027", + "name": "Tiger Tank 59 Ⅰ A-Gun MP027", + "release_date": "2021-06-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183124" + ], + "created_at": "2026-07-10T10:10:46.915236", + "updated_at": "2026-07-10T10:10:46.915236", + "url": "/v1/games/tiger-tank-59-a-gun-mp027" +} diff --git a/site/public/v1/games/tiger-tank-59-a-gun-mp028/index.json b/site/public/v1/games/tiger-tank-59-a-gun-mp028/index.json new file mode 100644 index 000000000000..76efd436e5c7 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-a-gun-mp028/index.json @@ -0,0 +1,31 @@ +{ + "id": 155706, + "slug": "tiger-tank-59-a-gun-mp028", + "name": "Tiger Tank 59 Ⅰ A-Gun MP028", + "release_date": "2021-06-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183125" + ], + "created_at": "2026-07-10T10:10:46.916244", + "updated_at": "2026-07-10T10:10:46.916244", + "url": "/v1/games/tiger-tank-59-a-gun-mp028" +} diff --git a/site/public/v1/games/tiger-tank-59-a-gun-mp029/index.json b/site/public/v1/games/tiger-tank-59-a-gun-mp029/index.json new file mode 100644 index 000000000000..bea3d4316af7 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-a-gun-mp029/index.json @@ -0,0 +1,31 @@ +{ + "id": 155707, + "slug": "tiger-tank-59-a-gun-mp029", + "name": "Tiger Tank 59 Ⅰ A-Gun MP029", + "release_date": "2021-06-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183126" + ], + "created_at": "2026-07-10T10:10:46.916244", + "updated_at": "2026-07-10T10:10:46.916244", + "url": "/v1/games/tiger-tank-59-a-gun-mp029" +} diff --git a/site/public/v1/games/tiger-tank-59-a-gun-mp030/index.json b/site/public/v1/games/tiger-tank-59-a-gun-mp030/index.json new file mode 100644 index 000000000000..2d745ce3c3a4 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-a-gun-mp030/index.json @@ -0,0 +1,31 @@ +{ + "id": 155708, + "slug": "tiger-tank-59-a-gun-mp030", + "name": "Tiger Tank 59 Ⅰ A-Gun MP030", + "release_date": "2021-06-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183131" + ], + "created_at": "2026-07-10T10:10:46.916244", + "updated_at": "2026-07-10T10:10:46.916244", + "url": "/v1/games/tiger-tank-59-a-gun-mp030" +} diff --git a/site/public/v1/games/tiger-tank-59-a-gun-mp031/index.json b/site/public/v1/games/tiger-tank-59-a-gun-mp031/index.json new file mode 100644 index 000000000000..cd38646dbf09 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-a-gun-mp031/index.json @@ -0,0 +1,31 @@ +{ + "id": 155709, + "slug": "tiger-tank-59-a-gun-mp031", + "name": "Tiger Tank 59 Ⅰ A-Gun MP031", + "release_date": "2021-06-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183140" + ], + "created_at": "2026-07-10T10:10:46.916244", + "updated_at": "2026-07-10T10:10:46.916244", + "url": "/v1/games/tiger-tank-59-a-gun-mp031" +} diff --git a/site/public/v1/games/tiger-tank-59-a-gun-mp032/index.json b/site/public/v1/games/tiger-tank-59-a-gun-mp032/index.json new file mode 100644 index 000000000000..c17d8596ccb7 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-a-gun-mp032/index.json @@ -0,0 +1,31 @@ +{ + "id": 155710, + "slug": "tiger-tank-59-a-gun-mp032", + "name": "Tiger Tank 59 Ⅰ A-Gun MP032", + "release_date": "2021-06-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183144" + ], + "created_at": "2026-07-10T10:10:46.916244", + "updated_at": "2026-07-10T10:10:46.916244", + "url": "/v1/games/tiger-tank-59-a-gun-mp032" +} diff --git a/site/public/v1/games/tiger-tank-59-a-gun-mp033/index.json b/site/public/v1/games/tiger-tank-59-a-gun-mp033/index.json new file mode 100644 index 000000000000..16df45d2fb68 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-a-gun-mp033/index.json @@ -0,0 +1,31 @@ +{ + "id": 155711, + "slug": "tiger-tank-59-a-gun-mp033", + "name": "Tiger Tank 59 Ⅰ A-Gun MP033", + "release_date": "2021-06-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183146" + ], + "created_at": "2026-07-10T10:10:46.917265", + "updated_at": "2026-07-10T10:10:46.917265", + "url": "/v1/games/tiger-tank-59-a-gun-mp033" +} diff --git a/site/public/v1/games/tiger-tank-59-a-gun-mp034/index.json b/site/public/v1/games/tiger-tank-59-a-gun-mp034/index.json new file mode 100644 index 000000000000..f8691d00c97f --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-a-gun-mp034/index.json @@ -0,0 +1,31 @@ +{ + "id": 155712, + "slug": "tiger-tank-59-a-gun-mp034", + "name": "Tiger Tank 59 Ⅰ A-Gun MP034", + "release_date": "2021-06-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183150" + ], + "created_at": "2026-07-10T10:10:46.917265", + "updated_at": "2026-07-10T10:10:46.917265", + "url": "/v1/games/tiger-tank-59-a-gun-mp034" +} diff --git a/site/public/v1/games/tiger-tank-59-a-gun-mp035/index.json b/site/public/v1/games/tiger-tank-59-a-gun-mp035/index.json new file mode 100644 index 000000000000..a62b2da1a2c9 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-a-gun-mp035/index.json @@ -0,0 +1,31 @@ +{ + "id": 155713, + "slug": "tiger-tank-59-a-gun-mp035", + "name": "Tiger Tank 59 Ⅰ A-Gun MP035", + "release_date": "2021-06-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183151" + ], + "created_at": "2026-07-10T10:10:46.917265", + "updated_at": "2026-07-10T10:10:46.917265", + "url": "/v1/games/tiger-tank-59-a-gun-mp035" +} diff --git a/site/public/v1/games/tiger-tank-59-a-gun-mp036/index.json b/site/public/v1/games/tiger-tank-59-a-gun-mp036/index.json new file mode 100644 index 000000000000..afb42a6920d8 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-a-gun-mp036/index.json @@ -0,0 +1,31 @@ +{ + "id": 155714, + "slug": "tiger-tank-59-a-gun-mp036", + "name": "Tiger Tank 59 Ⅰ A-Gun MP036", + "release_date": "2021-06-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183152" + ], + "created_at": "2026-07-10T10:10:46.917265", + "updated_at": "2026-07-10T10:10:46.917265", + "url": "/v1/games/tiger-tank-59-a-gun-mp036" +} diff --git a/site/public/v1/games/tiger-tank-59-a-gun-mp037/index.json b/site/public/v1/games/tiger-tank-59-a-gun-mp037/index.json new file mode 100644 index 000000000000..15963bd749a9 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-a-gun-mp037/index.json @@ -0,0 +1,31 @@ +{ + "id": 155715, + "slug": "tiger-tank-59-a-gun-mp037", + "name": "Tiger Tank 59 Ⅰ A-Gun MP037", + "release_date": "2021-06-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183154" + ], + "created_at": "2026-07-10T10:10:46.918250", + "updated_at": "2026-07-10T10:10:46.918250", + "url": "/v1/games/tiger-tank-59-a-gun-mp037" +} diff --git a/site/public/v1/games/tiger-tank-59-a-gun-mp038/index.json b/site/public/v1/games/tiger-tank-59-a-gun-mp038/index.json new file mode 100644 index 000000000000..0b45e1aefe4e --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-a-gun-mp038/index.json @@ -0,0 +1,31 @@ +{ + "id": 155716, + "slug": "tiger-tank-59-a-gun-mp038", + "name": "Tiger Tank 59 Ⅰ A-Gun MP038", + "release_date": "2021-06-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183155" + ], + "created_at": "2026-07-10T10:10:46.918250", + "updated_at": "2026-07-10T10:10:46.918250", + "url": "/v1/games/tiger-tank-59-a-gun-mp038" +} diff --git a/site/public/v1/games/tiger-tank-59-a-gun-mp039/index.json b/site/public/v1/games/tiger-tank-59-a-gun-mp039/index.json new file mode 100644 index 000000000000..a47530c2e1fd --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-a-gun-mp039/index.json @@ -0,0 +1,31 @@ +{ + "id": 155717, + "slug": "tiger-tank-59-a-gun-mp039", + "name": "Tiger Tank 59 Ⅰ A-Gun MP039", + "release_date": "2021-06-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183161" + ], + "created_at": "2026-07-10T10:10:46.918250", + "updated_at": "2026-07-10T10:10:46.918250", + "url": "/v1/games/tiger-tank-59-a-gun-mp039" +} diff --git a/site/public/v1/games/tiger-tank-59-a-gun-mp040/index.json b/site/public/v1/games/tiger-tank-59-a-gun-mp040/index.json new file mode 100644 index 000000000000..2b7fa96a7700 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-a-gun-mp040/index.json @@ -0,0 +1,31 @@ +{ + "id": 155718, + "slug": "tiger-tank-59-a-gun-mp040", + "name": "Tiger Tank 59 Ⅰ A-Gun MP040", + "release_date": "2021-06-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183163" + ], + "created_at": "2026-07-10T10:10:46.918250", + "updated_at": "2026-07-10T10:10:46.918250", + "url": "/v1/games/tiger-tank-59-a-gun-mp040" +} diff --git a/site/public/v1/games/tiger-tank-59-a-gun-mp041/index.json b/site/public/v1/games/tiger-tank-59-a-gun-mp041/index.json new file mode 100644 index 000000000000..73bdbeba84a5 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-a-gun-mp041/index.json @@ -0,0 +1,31 @@ +{ + "id": 155719, + "slug": "tiger-tank-59-a-gun-mp041", + "name": "Tiger Tank 59 Ⅰ A-Gun MP041", + "release_date": "2021-06-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116207258" + ], + "created_at": "2026-07-10T10:10:46.918250", + "updated_at": "2026-07-10T10:10:46.918250", + "url": "/v1/games/tiger-tank-59-a-gun-mp041" +} diff --git a/site/public/v1/games/tiger-tank-59-a-gun-mp042/index.json b/site/public/v1/games/tiger-tank-59-a-gun-mp042/index.json new file mode 100644 index 000000000000..e90457f96c97 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-a-gun-mp042/index.json @@ -0,0 +1,31 @@ +{ + "id": 155720, + "slug": "tiger-tank-59-a-gun-mp042", + "name": "Tiger Tank 59 Ⅰ A-Gun MP042", + "release_date": "2021-06-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183173" + ], + "created_at": "2026-07-10T10:10:46.919262", + "updated_at": "2026-07-10T10:10:46.919262", + "url": "/v1/games/tiger-tank-59-a-gun-mp042" +} diff --git a/site/public/v1/games/tiger-tank-59-a-gun-mp043/index.json b/site/public/v1/games/tiger-tank-59-a-gun-mp043/index.json new file mode 100644 index 000000000000..bfde4a46689a --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-a-gun-mp043/index.json @@ -0,0 +1,31 @@ +{ + "id": 155721, + "slug": "tiger-tank-59-a-gun-mp043", + "name": "Tiger Tank 59 Ⅰ A-Gun MP043", + "release_date": "2021-06-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183180" + ], + "created_at": "2026-07-10T10:10:46.919262", + "updated_at": "2026-07-10T10:10:46.919262", + "url": "/v1/games/tiger-tank-59-a-gun-mp043" +} diff --git a/site/public/v1/games/tiger-tank-59-a-gun-mp044/index.json b/site/public/v1/games/tiger-tank-59-a-gun-mp044/index.json new file mode 100644 index 000000000000..1e22d73f4f65 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-a-gun-mp044/index.json @@ -0,0 +1,31 @@ +{ + "id": 155722, + "slug": "tiger-tank-59-a-gun-mp044", + "name": "Tiger Tank 59 Ⅰ A-Gun MP044", + "release_date": "2021-06-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183189" + ], + "created_at": "2026-07-10T10:10:46.919262", + "updated_at": "2026-07-10T10:10:46.919262", + "url": "/v1/games/tiger-tank-59-a-gun-mp044" +} diff --git a/site/public/v1/games/tiger-tank-59-a-gun-mp045/index.json b/site/public/v1/games/tiger-tank-59-a-gun-mp045/index.json new file mode 100644 index 000000000000..ec5ab0330df5 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-a-gun-mp045/index.json @@ -0,0 +1,31 @@ +{ + "id": 155723, + "slug": "tiger-tank-59-a-gun-mp045", + "name": "Tiger Tank 59 Ⅰ A-Gun MP045", + "release_date": "2021-06-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183195" + ], + "created_at": "2026-07-10T10:10:46.919262", + "updated_at": "2026-07-10T10:10:46.919262", + "url": "/v1/games/tiger-tank-59-a-gun-mp045" +} diff --git a/site/public/v1/games/tiger-tank-59-a-gun-mp046/index.json b/site/public/v1/games/tiger-tank-59-a-gun-mp046/index.json new file mode 100644 index 000000000000..01354eb56397 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-a-gun-mp046/index.json @@ -0,0 +1,31 @@ +{ + "id": 155724, + "slug": "tiger-tank-59-a-gun-mp046", + "name": "Tiger Tank 59 Ⅰ A-Gun MP046", + "release_date": "2021-06-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183197" + ], + "created_at": "2026-07-10T10:10:46.920256", + "updated_at": "2026-07-10T10:10:46.920256", + "url": "/v1/games/tiger-tank-59-a-gun-mp046" +} diff --git a/site/public/v1/games/tiger-tank-59-a-gun-mp047/index.json b/site/public/v1/games/tiger-tank-59-a-gun-mp047/index.json new file mode 100644 index 000000000000..1ba191e84363 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-a-gun-mp047/index.json @@ -0,0 +1,31 @@ +{ + "id": 155725, + "slug": "tiger-tank-59-a-gun-mp047", + "name": "Tiger Tank 59 Ⅰ A-Gun MP047", + "release_date": "2021-06-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183200" + ], + "created_at": "2026-07-10T10:10:46.920256", + "updated_at": "2026-07-10T10:10:46.920256", + "url": "/v1/games/tiger-tank-59-a-gun-mp047" +} diff --git a/site/public/v1/games/tiger-tank-59-a-gun-mp048/index.json b/site/public/v1/games/tiger-tank-59-a-gun-mp048/index.json new file mode 100644 index 000000000000..acf5c329e702 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-a-gun-mp048/index.json @@ -0,0 +1,31 @@ +{ + "id": 155726, + "slug": "tiger-tank-59-a-gun-mp048", + "name": "Tiger Tank 59 Ⅰ A-Gun MP048", + "release_date": "2021-06-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183202" + ], + "created_at": "2026-07-10T10:10:46.920256", + "updated_at": "2026-07-10T10:10:46.920256", + "url": "/v1/games/tiger-tank-59-a-gun-mp048" +} diff --git a/site/public/v1/games/tiger-tank-59-a-gun-mp049/index.json b/site/public/v1/games/tiger-tank-59-a-gun-mp049/index.json new file mode 100644 index 000000000000..1041aabcd227 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-a-gun-mp049/index.json @@ -0,0 +1,31 @@ +{ + "id": 155727, + "slug": "tiger-tank-59-a-gun-mp049", + "name": "Tiger Tank 59 Ⅰ A-Gun MP049", + "release_date": "2021-06-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183204" + ], + "created_at": "2026-07-10T10:10:46.920256", + "updated_at": "2026-07-10T10:10:46.920256", + "url": "/v1/games/tiger-tank-59-a-gun-mp049" +} diff --git a/site/public/v1/games/tiger-tank-59-a-gun-mp050/index.json b/site/public/v1/games/tiger-tank-59-a-gun-mp050/index.json new file mode 100644 index 000000000000..26afb14ba924 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-a-gun-mp050/index.json @@ -0,0 +1,31 @@ +{ + "id": 155728, + "slug": "tiger-tank-59-a-gun-mp050", + "name": "Tiger Tank 59 Ⅰ A-Gun MP050", + "release_date": "2021-06-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183206" + ], + "created_at": "2026-07-10T10:10:46.920256", + "updated_at": "2026-07-10T10:10:46.920256", + "url": "/v1/games/tiger-tank-59-a-gun-mp050" +} diff --git a/site/public/v1/games/tiger-tank-59-a-gun-mp051/index.json b/site/public/v1/games/tiger-tank-59-a-gun-mp051/index.json new file mode 100644 index 000000000000..545afa7442ea --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-a-gun-mp051/index.json @@ -0,0 +1,31 @@ +{ + "id": 155729, + "slug": "tiger-tank-59-a-gun-mp051", + "name": "Tiger Tank 59 Ⅰ A-Gun MP051", + "release_date": "2021-06-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183207" + ], + "created_at": "2026-07-10T10:10:46.921264", + "updated_at": "2026-07-10T10:10:46.921264", + "url": "/v1/games/tiger-tank-59-a-gun-mp051" +} diff --git a/site/public/v1/games/tiger-tank-59-a-gun-mp052/index.json b/site/public/v1/games/tiger-tank-59-a-gun-mp052/index.json new file mode 100644 index 000000000000..fb01c5fff760 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-a-gun-mp052/index.json @@ -0,0 +1,31 @@ +{ + "id": 155730, + "slug": "tiger-tank-59-a-gun-mp052", + "name": "Tiger Tank 59 Ⅰ A-Gun MP052", + "release_date": "2021-06-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183208" + ], + "created_at": "2026-07-10T10:10:46.921264", + "updated_at": "2026-07-10T10:10:46.921264", + "url": "/v1/games/tiger-tank-59-a-gun-mp052" +} diff --git a/site/public/v1/games/tiger-tank-59-a-gun-mp053/index.json b/site/public/v1/games/tiger-tank-59-a-gun-mp053/index.json new file mode 100644 index 000000000000..82f5034da1e7 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-a-gun-mp053/index.json @@ -0,0 +1,31 @@ +{ + "id": 155731, + "slug": "tiger-tank-59-a-gun-mp053", + "name": "Tiger Tank 59 Ⅰ A-Gun MP053", + "release_date": "2021-06-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183209" + ], + "created_at": "2026-07-10T10:10:46.921264", + "updated_at": "2026-07-10T10:10:46.921264", + "url": "/v1/games/tiger-tank-59-a-gun-mp053" +} diff --git a/site/public/v1/games/tiger-tank-59-a-gun-mp054/index.json b/site/public/v1/games/tiger-tank-59-a-gun-mp054/index.json new file mode 100644 index 000000000000..9f98ea7dd82d --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-a-gun-mp054/index.json @@ -0,0 +1,31 @@ +{ + "id": 155732, + "slug": "tiger-tank-59-a-gun-mp054", + "name": "Tiger Tank 59 Ⅰ A-Gun MP054", + "release_date": "2021-06-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183210" + ], + "created_at": "2026-07-10T10:10:46.921264", + "updated_at": "2026-07-10T10:10:46.921264", + "url": "/v1/games/tiger-tank-59-a-gun-mp054" +} diff --git a/site/public/v1/games/tiger-tank-59-a-gun-mp055/index.json b/site/public/v1/games/tiger-tank-59-a-gun-mp055/index.json new file mode 100644 index 000000000000..708b8f1c524a --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-a-gun-mp055/index.json @@ -0,0 +1,31 @@ +{ + "id": 155733, + "slug": "tiger-tank-59-a-gun-mp055", + "name": "Tiger Tank 59 Ⅰ A-Gun MP055", + "release_date": "2021-06-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183211" + ], + "created_at": "2026-07-10T10:10:46.921264", + "updated_at": "2026-07-10T10:10:46.921264", + "url": "/v1/games/tiger-tank-59-a-gun-mp055" +} diff --git a/site/public/v1/games/tiger-tank-59-a-gun-mp056/index.json b/site/public/v1/games/tiger-tank-59-a-gun-mp056/index.json new file mode 100644 index 000000000000..12df447bdbcc --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-a-gun-mp056/index.json @@ -0,0 +1,31 @@ +{ + "id": 155734, + "slug": "tiger-tank-59-a-gun-mp056", + "name": "Tiger Tank 59 Ⅰ A-Gun MP056", + "release_date": "2021-06-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183214" + ], + "created_at": "2026-07-10T10:10:46.922239", + "updated_at": "2026-07-10T10:10:46.922239", + "url": "/v1/games/tiger-tank-59-a-gun-mp056" +} diff --git a/site/public/v1/games/tiger-tank-59-a-gun-mp057/index.json b/site/public/v1/games/tiger-tank-59-a-gun-mp057/index.json new file mode 100644 index 000000000000..8d699b541dab --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-a-gun-mp057/index.json @@ -0,0 +1,31 @@ +{ + "id": 155735, + "slug": "tiger-tank-59-a-gun-mp057", + "name": "Tiger Tank 59 Ⅰ A-Gun MP057", + "release_date": "2021-06-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183215" + ], + "created_at": "2026-07-10T10:10:46.923182", + "updated_at": "2026-07-10T10:10:46.923182", + "url": "/v1/games/tiger-tank-59-a-gun-mp057" +} diff --git a/site/public/v1/games/tiger-tank-59-a-gun-mp058/index.json b/site/public/v1/games/tiger-tank-59-a-gun-mp058/index.json new file mode 100644 index 000000000000..aa5277c720ec --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-a-gun-mp058/index.json @@ -0,0 +1,31 @@ +{ + "id": 155736, + "slug": "tiger-tank-59-a-gun-mp058", + "name": "Tiger Tank 59 Ⅰ A-Gun MP058", + "release_date": "2021-06-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183219" + ], + "created_at": "2026-07-10T10:10:46.923182", + "updated_at": "2026-07-10T10:10:46.923182", + "url": "/v1/games/tiger-tank-59-a-gun-mp058" +} diff --git a/site/public/v1/games/tiger-tank-59-a-gun-mp059/index.json b/site/public/v1/games/tiger-tank-59-a-gun-mp059/index.json new file mode 100644 index 000000000000..ee22999c0357 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-a-gun-mp059/index.json @@ -0,0 +1,31 @@ +{ + "id": 155737, + "slug": "tiger-tank-59-a-gun-mp059", + "name": "Tiger Tank 59 Ⅰ A-Gun MP059", + "release_date": "2021-06-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183224" + ], + "created_at": "2026-07-10T10:10:46.923182", + "updated_at": "2026-07-10T10:10:46.923182", + "url": "/v1/games/tiger-tank-59-a-gun-mp059" +} diff --git a/site/public/v1/games/tiger-tank-59-a-gun-mp060/index.json b/site/public/v1/games/tiger-tank-59-a-gun-mp060/index.json new file mode 100644 index 000000000000..79f04e4f3ba4 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-a-gun-mp060/index.json @@ -0,0 +1,31 @@ +{ + "id": 155738, + "slug": "tiger-tank-59-a-gun-mp060", + "name": "Tiger Tank 59 Ⅰ A-Gun MP060", + "release_date": "2021-06-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183233" + ], + "created_at": "2026-07-10T10:10:46.923182", + "updated_at": "2026-07-10T10:10:46.923182", + "url": "/v1/games/tiger-tank-59-a-gun-mp060" +} diff --git a/site/public/v1/games/tiger-tank-59-a-gun-mp061/index.json b/site/public/v1/games/tiger-tank-59-a-gun-mp061/index.json new file mode 100644 index 000000000000..39ebd8fe114a --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-a-gun-mp061/index.json @@ -0,0 +1,31 @@ +{ + "id": 155739, + "slug": "tiger-tank-59-a-gun-mp061", + "name": "Tiger Tank 59 Ⅰ A-Gun MP061", + "release_date": "2021-06-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183245" + ], + "created_at": "2026-07-10T10:10:46.923182", + "updated_at": "2026-07-10T10:10:46.923182", + "url": "/v1/games/tiger-tank-59-a-gun-mp061" +} diff --git a/site/public/v1/games/tiger-tank-59-a-gun-mp062/index.json b/site/public/v1/games/tiger-tank-59-a-gun-mp062/index.json new file mode 100644 index 000000000000..04b4f924791d --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-a-gun-mp062/index.json @@ -0,0 +1,31 @@ +{ + "id": 155740, + "slug": "tiger-tank-59-a-gun-mp062", + "name": "Tiger Tank 59 Ⅰ A-Gun MP062", + "release_date": "2021-06-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183256" + ], + "created_at": "2026-07-10T10:10:46.924315", + "updated_at": "2026-07-10T10:10:46.924315", + "url": "/v1/games/tiger-tank-59-a-gun-mp062" +} diff --git a/site/public/v1/games/tiger-tank-59-a-gun-mp063/index.json b/site/public/v1/games/tiger-tank-59-a-gun-mp063/index.json new file mode 100644 index 000000000000..108f2f695764 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-a-gun-mp063/index.json @@ -0,0 +1,31 @@ +{ + "id": 155741, + "slug": "tiger-tank-59-a-gun-mp063", + "name": "Tiger Tank 59 Ⅰ A-Gun MP063", + "release_date": "2021-06-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183266" + ], + "created_at": "2026-07-10T10:10:46.924315", + "updated_at": "2026-07-10T10:10:46.924315", + "url": "/v1/games/tiger-tank-59-a-gun-mp063" +} diff --git a/site/public/v1/games/tiger-tank-59-a-gun-mp064/index.json b/site/public/v1/games/tiger-tank-59-a-gun-mp064/index.json new file mode 100644 index 000000000000..b8c4bb4f4506 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-a-gun-mp064/index.json @@ -0,0 +1,31 @@ +{ + "id": 155742, + "slug": "tiger-tank-59-a-gun-mp064", + "name": "Tiger Tank 59 Ⅰ A-Gun MP064", + "release_date": "2021-06-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183267" + ], + "created_at": "2026-07-10T10:10:46.924315", + "updated_at": "2026-07-10T10:10:46.924315", + "url": "/v1/games/tiger-tank-59-a-gun-mp064" +} diff --git a/site/public/v1/games/tiger-tank-59-a-gun-mp065/index.json b/site/public/v1/games/tiger-tank-59-a-gun-mp065/index.json new file mode 100644 index 000000000000..c07cf97ca6db --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-a-gun-mp065/index.json @@ -0,0 +1,31 @@ +{ + "id": 155743, + "slug": "tiger-tank-59-a-gun-mp065", + "name": "Tiger Tank 59 Ⅰ A-Gun MP065", + "release_date": "2021-06-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183273" + ], + "created_at": "2026-07-10T10:10:46.924315", + "updated_at": "2026-07-10T10:10:46.924315", + "url": "/v1/games/tiger-tank-59-a-gun-mp065" +} diff --git a/site/public/v1/games/tiger-tank-59-a-gun-mp066/index.json b/site/public/v1/games/tiger-tank-59-a-gun-mp066/index.json new file mode 100644 index 000000000000..e6dd3465c45a --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-a-gun-mp066/index.json @@ -0,0 +1,31 @@ +{ + "id": 155744, + "slug": "tiger-tank-59-a-gun-mp066", + "name": "Tiger Tank 59 Ⅰ A-Gun MP066", + "release_date": "2021-06-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183279" + ], + "created_at": "2026-07-10T10:10:46.925288", + "updated_at": "2026-07-10T10:10:46.925288", + "url": "/v1/games/tiger-tank-59-a-gun-mp066" +} diff --git a/site/public/v1/games/tiger-tank-59-a-gun-mp067/index.json b/site/public/v1/games/tiger-tank-59-a-gun-mp067/index.json new file mode 100644 index 000000000000..b11bf691e98f --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-a-gun-mp067/index.json @@ -0,0 +1,31 @@ +{ + "id": 155745, + "slug": "tiger-tank-59-a-gun-mp067", + "name": "Tiger Tank 59 Ⅰ A-Gun MP067", + "release_date": "2021-06-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183283" + ], + "created_at": "2026-07-10T10:10:46.925288", + "updated_at": "2026-07-10T10:10:46.925288", + "url": "/v1/games/tiger-tank-59-a-gun-mp067" +} diff --git a/site/public/v1/games/tiger-tank-59-a-gun-mp068/index.json b/site/public/v1/games/tiger-tank-59-a-gun-mp068/index.json new file mode 100644 index 000000000000..a5a2fe7b0295 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-a-gun-mp068/index.json @@ -0,0 +1,31 @@ +{ + "id": 155746, + "slug": "tiger-tank-59-a-gun-mp068", + "name": "Tiger Tank 59 Ⅰ A-Gun MP068", + "release_date": "2021-06-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183284" + ], + "created_at": "2026-07-10T10:10:46.925288", + "updated_at": "2026-07-10T10:10:46.925288", + "url": "/v1/games/tiger-tank-59-a-gun-mp068" +} diff --git a/site/public/v1/games/tiger-tank-59-a-gun-mp069/index.json b/site/public/v1/games/tiger-tank-59-a-gun-mp069/index.json new file mode 100644 index 000000000000..534cd69016a0 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-a-gun-mp069/index.json @@ -0,0 +1,31 @@ +{ + "id": 155747, + "slug": "tiger-tank-59-a-gun-mp069", + "name": "Tiger Tank 59 Ⅰ A-Gun MP069", + "release_date": "2021-06-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183285" + ], + "created_at": "2026-07-10T10:10:46.925288", + "updated_at": "2026-07-10T10:10:46.925288", + "url": "/v1/games/tiger-tank-59-a-gun-mp069" +} diff --git a/site/public/v1/games/tiger-tank-59-a-gun-mp070/index.json b/site/public/v1/games/tiger-tank-59-a-gun-mp070/index.json new file mode 100644 index 000000000000..061937cc4c8f --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-a-gun-mp070/index.json @@ -0,0 +1,31 @@ +{ + "id": 155748, + "slug": "tiger-tank-59-a-gun-mp070", + "name": "Tiger Tank 59 Ⅰ A-Gun MP070", + "release_date": "2021-06-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183287" + ], + "created_at": "2026-07-10T10:10:46.926180", + "updated_at": "2026-07-10T10:10:46.926180", + "url": "/v1/games/tiger-tank-59-a-gun-mp070" +} diff --git a/site/public/v1/games/tiger-tank-59-a-gun-mp071/index.json b/site/public/v1/games/tiger-tank-59-a-gun-mp071/index.json new file mode 100644 index 000000000000..c339e1212c56 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-a-gun-mp071/index.json @@ -0,0 +1,31 @@ +{ + "id": 155749, + "slug": "tiger-tank-59-a-gun-mp071", + "name": "Tiger Tank 59 Ⅰ A-Gun MP071", + "release_date": "2021-06-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183289" + ], + "created_at": "2026-07-10T10:10:46.926180", + "updated_at": "2026-07-10T10:10:46.926180", + "url": "/v1/games/tiger-tank-59-a-gun-mp071" +} diff --git a/site/public/v1/games/tiger-tank-59-a-gun-mp072/index.json b/site/public/v1/games/tiger-tank-59-a-gun-mp072/index.json new file mode 100644 index 000000000000..9baa83213f6c --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-a-gun-mp072/index.json @@ -0,0 +1,31 @@ +{ + "id": 155750, + "slug": "tiger-tank-59-a-gun-mp072", + "name": "Tiger Tank 59 Ⅰ A-Gun MP072", + "release_date": "2021-06-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183291" + ], + "created_at": "2026-07-10T10:10:46.926180", + "updated_at": "2026-07-10T10:10:46.926180", + "url": "/v1/games/tiger-tank-59-a-gun-mp072" +} diff --git a/site/public/v1/games/tiger-tank-59-a-gun-mp073/index.json b/site/public/v1/games/tiger-tank-59-a-gun-mp073/index.json new file mode 100644 index 000000000000..557a5086e496 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-a-gun-mp073/index.json @@ -0,0 +1,31 @@ +{ + "id": 155751, + "slug": "tiger-tank-59-a-gun-mp073", + "name": "Tiger Tank 59 Ⅰ A-Gun MP073", + "release_date": "2021-06-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183293" + ], + "created_at": "2026-07-10T10:10:46.926180", + "updated_at": "2026-07-10T10:10:46.926180", + "url": "/v1/games/tiger-tank-59-a-gun-mp073" +} diff --git a/site/public/v1/games/tiger-tank-59-a-gun-mp074/index.json b/site/public/v1/games/tiger-tank-59-a-gun-mp074/index.json new file mode 100644 index 000000000000..9a5ed26d1490 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-a-gun-mp074/index.json @@ -0,0 +1,31 @@ +{ + "id": 155752, + "slug": "tiger-tank-59-a-gun-mp074", + "name": "Tiger Tank 59 Ⅰ A-Gun MP074", + "release_date": "2021-06-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183295" + ], + "created_at": "2026-07-10T10:10:46.926180", + "updated_at": "2026-07-10T10:10:46.926180", + "url": "/v1/games/tiger-tank-59-a-gun-mp074" +} diff --git a/site/public/v1/games/tiger-tank-59-a-gun-mp075/index.json b/site/public/v1/games/tiger-tank-59-a-gun-mp075/index.json new file mode 100644 index 000000000000..a99d7c96dac7 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-a-gun-mp075/index.json @@ -0,0 +1,31 @@ +{ + "id": 155753, + "slug": "tiger-tank-59-a-gun-mp075", + "name": "Tiger Tank 59 Ⅰ A-Gun MP075", + "release_date": "2021-06-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183298" + ], + "created_at": "2026-07-10T10:10:46.927294", + "updated_at": "2026-07-10T10:10:46.927294", + "url": "/v1/games/tiger-tank-59-a-gun-mp075" +} diff --git a/site/public/v1/games/tiger-tank-59-a-gun-mp076/index.json b/site/public/v1/games/tiger-tank-59-a-gun-mp076/index.json new file mode 100644 index 000000000000..5b33a56a6072 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-a-gun-mp076/index.json @@ -0,0 +1,31 @@ +{ + "id": 155754, + "slug": "tiger-tank-59-a-gun-mp076", + "name": "Tiger Tank 59 Ⅰ A-Gun MP076", + "release_date": "2021-06-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183309" + ], + "created_at": "2026-07-10T10:10:46.927294", + "updated_at": "2026-07-10T10:10:46.927294", + "url": "/v1/games/tiger-tank-59-a-gun-mp076" +} diff --git a/site/public/v1/games/tiger-tank-59-a-gun-mp077/index.json b/site/public/v1/games/tiger-tank-59-a-gun-mp077/index.json new file mode 100644 index 000000000000..79dcad4c3bbe --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-a-gun-mp077/index.json @@ -0,0 +1,31 @@ +{ + "id": 155755, + "slug": "tiger-tank-59-a-gun-mp077", + "name": "Tiger Tank 59 Ⅰ A-Gun MP077", + "release_date": "2021-06-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183321" + ], + "created_at": "2026-07-10T10:10:46.927294", + "updated_at": "2026-07-10T10:10:46.927294", + "url": "/v1/games/tiger-tank-59-a-gun-mp077" +} diff --git a/site/public/v1/games/tiger-tank-59-a-gun-mp078/index.json b/site/public/v1/games/tiger-tank-59-a-gun-mp078/index.json new file mode 100644 index 000000000000..c9c1fcd27f1c --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-a-gun-mp078/index.json @@ -0,0 +1,31 @@ +{ + "id": 155756, + "slug": "tiger-tank-59-a-gun-mp078", + "name": "Tiger Tank 59 Ⅰ A-Gun MP078", + "release_date": "2021-06-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183331" + ], + "created_at": "2026-07-10T10:10:46.927294", + "updated_at": "2026-07-10T10:10:46.927294", + "url": "/v1/games/tiger-tank-59-a-gun-mp078" +} diff --git a/site/public/v1/games/tiger-tank-59-a-gun-mp079/index.json b/site/public/v1/games/tiger-tank-59-a-gun-mp079/index.json new file mode 100644 index 000000000000..df3f72f342da --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-a-gun-mp079/index.json @@ -0,0 +1,31 @@ +{ + "id": 155757, + "slug": "tiger-tank-59-a-gun-mp079", + "name": "Tiger Tank 59 Ⅰ A-Gun MP079", + "release_date": "2021-06-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183336" + ], + "created_at": "2026-07-10T10:10:46.928261", + "updated_at": "2026-07-10T10:10:46.928261", + "url": "/v1/games/tiger-tank-59-a-gun-mp079" +} diff --git a/site/public/v1/games/tiger-tank-59-a-gun-mp080/index.json b/site/public/v1/games/tiger-tank-59-a-gun-mp080/index.json new file mode 100644 index 000000000000..19d3b53d24b1 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-a-gun-mp080/index.json @@ -0,0 +1,31 @@ +{ + "id": 155758, + "slug": "tiger-tank-59-a-gun-mp080", + "name": "Tiger Tank 59 Ⅰ A-Gun MP080", + "release_date": "2021-06-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183346" + ], + "created_at": "2026-07-10T10:10:46.928261", + "updated_at": "2026-07-10T10:10:46.928261", + "url": "/v1/games/tiger-tank-59-a-gun-mp080" +} diff --git a/site/public/v1/games/tiger-tank-59-a-gun-mp081/index.json b/site/public/v1/games/tiger-tank-59-a-gun-mp081/index.json new file mode 100644 index 000000000000..fc0d3dfba7b7 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-a-gun-mp081/index.json @@ -0,0 +1,31 @@ +{ + "id": 155759, + "slug": "tiger-tank-59-a-gun-mp081", + "name": "Tiger Tank 59 Ⅰ A-Gun MP081", + "release_date": "2021-06-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183353" + ], + "created_at": "2026-07-10T10:10:46.928261", + "updated_at": "2026-07-10T10:10:46.928261", + "url": "/v1/games/tiger-tank-59-a-gun-mp081" +} diff --git a/site/public/v1/games/tiger-tank-59-a-gun-mp082/index.json b/site/public/v1/games/tiger-tank-59-a-gun-mp082/index.json new file mode 100644 index 000000000000..cfaf9741e37b --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-a-gun-mp082/index.json @@ -0,0 +1,31 @@ +{ + "id": 155760, + "slug": "tiger-tank-59-a-gun-mp082", + "name": "Tiger Tank 59 Ⅰ A-Gun MP082", + "release_date": "2021-06-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183360" + ], + "created_at": "2026-07-10T10:10:46.928261", + "updated_at": "2026-07-10T10:10:46.928261", + "url": "/v1/games/tiger-tank-59-a-gun-mp082" +} diff --git a/site/public/v1/games/tiger-tank-59-a-gun-mp083/index.json b/site/public/v1/games/tiger-tank-59-a-gun-mp083/index.json new file mode 100644 index 000000000000..2547b18fe367 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-a-gun-mp083/index.json @@ -0,0 +1,31 @@ +{ + "id": 155761, + "slug": "tiger-tank-59-a-gun-mp083", + "name": "Tiger Tank 59 Ⅰ A-Gun MP083", + "release_date": "2021-06-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183362" + ], + "created_at": "2026-07-10T10:10:46.928261", + "updated_at": "2026-07-10T10:10:46.928261", + "url": "/v1/games/tiger-tank-59-a-gun-mp083" +} diff --git a/site/public/v1/games/tiger-tank-59-a-gun-mp084/index.json b/site/public/v1/games/tiger-tank-59-a-gun-mp084/index.json new file mode 100644 index 000000000000..5cce5b4632d5 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-a-gun-mp084/index.json @@ -0,0 +1,31 @@ +{ + "id": 155762, + "slug": "tiger-tank-59-a-gun-mp084", + "name": "Tiger Tank 59 Ⅰ A-Gun MP084", + "release_date": "2021-06-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183364" + ], + "created_at": "2026-07-10T10:10:46.929246", + "updated_at": "2026-07-10T10:10:46.929246", + "url": "/v1/games/tiger-tank-59-a-gun-mp084" +} diff --git a/site/public/v1/games/tiger-tank-59-a-gun-mp085/index.json b/site/public/v1/games/tiger-tank-59-a-gun-mp085/index.json new file mode 100644 index 000000000000..f5dabc692af3 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-a-gun-mp085/index.json @@ -0,0 +1,31 @@ +{ + "id": 155763, + "slug": "tiger-tank-59-a-gun-mp085", + "name": "Tiger Tank 59 Ⅰ A-Gun MP085", + "release_date": "2021-06-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183367" + ], + "created_at": "2026-07-10T10:10:46.929246", + "updated_at": "2026-07-10T10:10:46.929246", + "url": "/v1/games/tiger-tank-59-a-gun-mp085" +} diff --git a/site/public/v1/games/tiger-tank-59-a-gun-mp086/index.json b/site/public/v1/games/tiger-tank-59-a-gun-mp086/index.json new file mode 100644 index 000000000000..0b3e57214fe8 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-a-gun-mp086/index.json @@ -0,0 +1,31 @@ +{ + "id": 155764, + "slug": "tiger-tank-59-a-gun-mp086", + "name": "Tiger Tank 59 Ⅰ A-Gun MP086", + "release_date": "2021-06-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183375" + ], + "created_at": "2026-07-10T10:10:46.929246", + "updated_at": "2026-07-10T10:10:46.929246", + "url": "/v1/games/tiger-tank-59-a-gun-mp086" +} diff --git a/site/public/v1/games/tiger-tank-59-a-gun-mp087/index.json b/site/public/v1/games/tiger-tank-59-a-gun-mp087/index.json new file mode 100644 index 000000000000..958b6bbed72f --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-a-gun-mp087/index.json @@ -0,0 +1,31 @@ +{ + "id": 155765, + "slug": "tiger-tank-59-a-gun-mp087", + "name": "Tiger Tank 59 Ⅰ A-Gun MP087", + "release_date": "2021-06-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183384" + ], + "created_at": "2026-07-10T10:10:46.929246", + "updated_at": "2026-07-10T10:10:46.929246", + "url": "/v1/games/tiger-tank-59-a-gun-mp087" +} diff --git a/site/public/v1/games/tiger-tank-59-a-gun-mp088/index.json b/site/public/v1/games/tiger-tank-59-a-gun-mp088/index.json new file mode 100644 index 000000000000..b18702304205 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-a-gun-mp088/index.json @@ -0,0 +1,31 @@ +{ + "id": 155766, + "slug": "tiger-tank-59-a-gun-mp088", + "name": "Tiger Tank 59 Ⅰ A-Gun MP088", + "release_date": "2021-06-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183393" + ], + "created_at": "2026-07-10T10:10:46.929246", + "updated_at": "2026-07-10T10:10:46.929246", + "url": "/v1/games/tiger-tank-59-a-gun-mp088" +} diff --git a/site/public/v1/games/tiger-tank-59-a-gun-mp089/index.json b/site/public/v1/games/tiger-tank-59-a-gun-mp089/index.json new file mode 100644 index 000000000000..26742a850ced --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-a-gun-mp089/index.json @@ -0,0 +1,31 @@ +{ + "id": 155767, + "slug": "tiger-tank-59-a-gun-mp089", + "name": "Tiger Tank 59 Ⅰ A-Gun MP089", + "release_date": "2021-06-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183399" + ], + "created_at": "2026-07-10T10:10:46.930251", + "updated_at": "2026-07-10T10:10:46.930251", + "url": "/v1/games/tiger-tank-59-a-gun-mp089" +} diff --git a/site/public/v1/games/tiger-tank-59-a-gun-mp090/index.json b/site/public/v1/games/tiger-tank-59-a-gun-mp090/index.json new file mode 100644 index 000000000000..1980b16c53bf --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-a-gun-mp090/index.json @@ -0,0 +1,31 @@ +{ + "id": 155768, + "slug": "tiger-tank-59-a-gun-mp090", + "name": "Tiger Tank 59 Ⅰ A-Gun MP090", + "release_date": "2021-06-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183403" + ], + "created_at": "2026-07-10T10:10:46.930251", + "updated_at": "2026-07-10T10:10:46.930251", + "url": "/v1/games/tiger-tank-59-a-gun-mp090" +} diff --git a/site/public/v1/games/tiger-tank-59-a-gun-mp091/index.json b/site/public/v1/games/tiger-tank-59-a-gun-mp091/index.json new file mode 100644 index 000000000000..6f055edfeb76 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-a-gun-mp091/index.json @@ -0,0 +1,31 @@ +{ + "id": 155769, + "slug": "tiger-tank-59-a-gun-mp091", + "name": "Tiger Tank 59 Ⅰ A-Gun MP091", + "release_date": "2021-06-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183410" + ], + "created_at": "2026-07-10T10:10:46.930251", + "updated_at": "2026-07-10T10:10:46.930251", + "url": "/v1/games/tiger-tank-59-a-gun-mp091" +} diff --git a/site/public/v1/games/tiger-tank-59-a-gun-mp092/index.json b/site/public/v1/games/tiger-tank-59-a-gun-mp092/index.json new file mode 100644 index 000000000000..ff73856f3528 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-a-gun-mp092/index.json @@ -0,0 +1,31 @@ +{ + "id": 155770, + "slug": "tiger-tank-59-a-gun-mp092", + "name": "Tiger Tank 59 Ⅰ A-Gun MP092", + "release_date": "2021-06-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183412" + ], + "created_at": "2026-07-10T10:10:46.931247", + "updated_at": "2026-07-10T10:10:46.931247", + "url": "/v1/games/tiger-tank-59-a-gun-mp092" +} diff --git a/site/public/v1/games/tiger-tank-59-a-gun-mp093/index.json b/site/public/v1/games/tiger-tank-59-a-gun-mp093/index.json new file mode 100644 index 000000000000..262ef9a63ca5 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-a-gun-mp093/index.json @@ -0,0 +1,31 @@ +{ + "id": 155771, + "slug": "tiger-tank-59-a-gun-mp093", + "name": "Tiger Tank 59 Ⅰ A-Gun MP093", + "release_date": "2021-06-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183415" + ], + "created_at": "2026-07-10T10:10:46.931247", + "updated_at": "2026-07-10T10:10:46.931247", + "url": "/v1/games/tiger-tank-59-a-gun-mp093" +} diff --git a/site/public/v1/games/tiger-tank-59-a-gun-mp094/index.json b/site/public/v1/games/tiger-tank-59-a-gun-mp094/index.json new file mode 100644 index 000000000000..3b13d4953f2c --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-a-gun-mp094/index.json @@ -0,0 +1,31 @@ +{ + "id": 155772, + "slug": "tiger-tank-59-a-gun-mp094", + "name": "Tiger Tank 59 Ⅰ A-Gun MP094", + "release_date": "2021-06-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183420" + ], + "created_at": "2026-07-10T10:10:46.931247", + "updated_at": "2026-07-10T10:10:46.931247", + "url": "/v1/games/tiger-tank-59-a-gun-mp094" +} diff --git a/site/public/v1/games/tiger-tank-59-a-gun-mp095/index.json b/site/public/v1/games/tiger-tank-59-a-gun-mp095/index.json new file mode 100644 index 000000000000..ed2220c6c494 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-a-gun-mp095/index.json @@ -0,0 +1,31 @@ +{ + "id": 155773, + "slug": "tiger-tank-59-a-gun-mp095", + "name": "Tiger Tank 59 Ⅰ A-Gun MP095", + "release_date": "2021-06-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183424" + ], + "created_at": "2026-07-10T10:10:46.931247", + "updated_at": "2026-07-10T10:10:46.931247", + "url": "/v1/games/tiger-tank-59-a-gun-mp095" +} diff --git a/site/public/v1/games/tiger-tank-59-a-gun-mp096/index.json b/site/public/v1/games/tiger-tank-59-a-gun-mp096/index.json new file mode 100644 index 000000000000..7d692dcfdfac --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-a-gun-mp096/index.json @@ -0,0 +1,31 @@ +{ + "id": 155774, + "slug": "tiger-tank-59-a-gun-mp096", + "name": "Tiger Tank 59 Ⅰ A-Gun MP096", + "release_date": "2021-06-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183426" + ], + "created_at": "2026-07-10T10:10:46.931247", + "updated_at": "2026-07-10T10:10:46.931247", + "url": "/v1/games/tiger-tank-59-a-gun-mp096" +} diff --git a/site/public/v1/games/tiger-tank-59-a-gun-mp097/index.json b/site/public/v1/games/tiger-tank-59-a-gun-mp097/index.json new file mode 100644 index 000000000000..ccc4e446c5ba --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-a-gun-mp097/index.json @@ -0,0 +1,31 @@ +{ + "id": 155775, + "slug": "tiger-tank-59-a-gun-mp097", + "name": "Tiger Tank 59 Ⅰ A-Gun MP097", + "release_date": "2021-06-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183429" + ], + "created_at": "2026-07-10T10:10:46.932238", + "updated_at": "2026-07-10T10:10:46.932238", + "url": "/v1/games/tiger-tank-59-a-gun-mp097" +} diff --git a/site/public/v1/games/tiger-tank-59-a-gun-mp098/index.json b/site/public/v1/games/tiger-tank-59-a-gun-mp098/index.json new file mode 100644 index 000000000000..e45b972b167a --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-a-gun-mp098/index.json @@ -0,0 +1,31 @@ +{ + "id": 155776, + "slug": "tiger-tank-59-a-gun-mp098", + "name": "Tiger Tank 59 Ⅰ A-Gun MP098", + "release_date": "2021-06-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183430" + ], + "created_at": "2026-07-10T10:10:46.932238", + "updated_at": "2026-07-10T10:10:46.932238", + "url": "/v1/games/tiger-tank-59-a-gun-mp098" +} diff --git a/site/public/v1/games/tiger-tank-59-a-gun-mp099/index.json b/site/public/v1/games/tiger-tank-59-a-gun-mp099/index.json new file mode 100644 index 000000000000..f27bf95049cf --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-a-gun-mp099/index.json @@ -0,0 +1,31 @@ +{ + "id": 155777, + "slug": "tiger-tank-59-a-gun-mp099", + "name": "Tiger Tank 59 Ⅰ A-Gun MP099", + "release_date": "2021-06-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183433" + ], + "created_at": "2026-07-10T10:10:46.932238", + "updated_at": "2026-07-10T10:10:46.932238", + "url": "/v1/games/tiger-tank-59-a-gun-mp099" +} diff --git a/site/public/v1/games/tiger-tank-59-a-gun-mp100/index.json b/site/public/v1/games/tiger-tank-59-a-gun-mp100/index.json new file mode 100644 index 000000000000..64cc9fa260dc --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-a-gun-mp100/index.json @@ -0,0 +1,31 @@ +{ + "id": 155778, + "slug": "tiger-tank-59-a-gun-mp100", + "name": "Tiger Tank 59 Ⅰ A-Gun MP100", + "release_date": "2021-06-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183434" + ], + "created_at": "2026-07-10T10:10:46.932238", + "updated_at": "2026-07-10T10:10:46.932238", + "url": "/v1/games/tiger-tank-59-a-gun-mp100" +} diff --git a/site/public/v1/games/tiger-tank-59-air-strike-mp001/index.json b/site/public/v1/games/tiger-tank-59-air-strike-mp001/index.json new file mode 100644 index 000000000000..0618fb247c4c --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-air-strike-mp001/index.json @@ -0,0 +1,31 @@ +{ + "id": 155780, + "slug": "tiger-tank-59-air-strike-mp001", + "name": "Tiger Tank 59 Ⅰ Air Strike MP001", + "release_date": "2021-06-29", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183438" + ], + "created_at": "2026-07-10T10:10:46.933334", + "updated_at": "2026-07-10T10:10:46.933334", + "url": "/v1/games/tiger-tank-59-air-strike-mp001" +} diff --git a/site/public/v1/games/tiger-tank-59-air-strike-mp002/index.json b/site/public/v1/games/tiger-tank-59-air-strike-mp002/index.json new file mode 100644 index 000000000000..409ebc2373f9 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-air-strike-mp002/index.json @@ -0,0 +1,31 @@ +{ + "id": 155781, + "slug": "tiger-tank-59-air-strike-mp002", + "name": "Tiger Tank 59 Ⅰ Air Strike MP002", + "release_date": "2021-06-30", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183439" + ], + "created_at": "2026-07-10T10:10:46.933334", + "updated_at": "2026-07-10T10:10:46.933334", + "url": "/v1/games/tiger-tank-59-air-strike-mp002" +} diff --git a/site/public/v1/games/tiger-tank-59-air-strike-mp003/index.json b/site/public/v1/games/tiger-tank-59-air-strike-mp003/index.json new file mode 100644 index 000000000000..c3852604350e --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-air-strike-mp003/index.json @@ -0,0 +1,31 @@ +{ + "id": 155782, + "slug": "tiger-tank-59-air-strike-mp003", + "name": "Tiger Tank 59 Ⅰ Air Strike MP003", + "release_date": "2021-06-29", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183440" + ], + "created_at": "2026-07-10T10:10:46.933334", + "updated_at": "2026-07-10T10:10:46.933334", + "url": "/v1/games/tiger-tank-59-air-strike-mp003" +} diff --git a/site/public/v1/games/tiger-tank-59-air-strike-mp004/index.json b/site/public/v1/games/tiger-tank-59-air-strike-mp004/index.json new file mode 100644 index 000000000000..f420ba65ac01 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-air-strike-mp004/index.json @@ -0,0 +1,31 @@ +{ + "id": 155783, + "slug": "tiger-tank-59-air-strike-mp004", + "name": "Tiger Tank 59 Ⅰ Air Strike MP004", + "release_date": "2021-06-29", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183441" + ], + "created_at": "2026-07-10T10:10:46.933334", + "updated_at": "2026-07-10T10:10:46.933334", + "url": "/v1/games/tiger-tank-59-air-strike-mp004" +} diff --git a/site/public/v1/games/tiger-tank-59-air-strike-mp005/index.json b/site/public/v1/games/tiger-tank-59-air-strike-mp005/index.json new file mode 100644 index 000000000000..05696c2bc911 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-air-strike-mp005/index.json @@ -0,0 +1,31 @@ +{ + "id": 155784, + "slug": "tiger-tank-59-air-strike-mp005", + "name": "Tiger Tank 59 Ⅰ Air Strike MP005", + "release_date": "2021-06-29", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183442" + ], + "created_at": "2026-07-10T10:10:46.934182", + "updated_at": "2026-07-10T10:10:46.934182", + "url": "/v1/games/tiger-tank-59-air-strike-mp005" +} diff --git a/site/public/v1/games/tiger-tank-59-air-strike-mp006/index.json b/site/public/v1/games/tiger-tank-59-air-strike-mp006/index.json new file mode 100644 index 000000000000..a087190bc681 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-air-strike-mp006/index.json @@ -0,0 +1,31 @@ +{ + "id": 155785, + "slug": "tiger-tank-59-air-strike-mp006", + "name": "Tiger Tank 59 Ⅰ Air Strike MP006", + "release_date": "2021-06-29", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183444" + ], + "created_at": "2026-07-10T10:10:46.934182", + "updated_at": "2026-07-10T10:10:46.934182", + "url": "/v1/games/tiger-tank-59-air-strike-mp006" +} diff --git a/site/public/v1/games/tiger-tank-59-air-strike-mp007/index.json b/site/public/v1/games/tiger-tank-59-air-strike-mp007/index.json new file mode 100644 index 000000000000..b600bca5db2b --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-air-strike-mp007/index.json @@ -0,0 +1,31 @@ +{ + "id": 155786, + "slug": "tiger-tank-59-air-strike-mp007", + "name": "Tiger Tank 59 Ⅰ Air Strike MP007", + "release_date": "2021-06-29", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183446" + ], + "created_at": "2026-07-10T10:10:46.934182", + "updated_at": "2026-07-10T10:10:46.934182", + "url": "/v1/games/tiger-tank-59-air-strike-mp007" +} diff --git a/site/public/v1/games/tiger-tank-59-air-strike-mp008/index.json b/site/public/v1/games/tiger-tank-59-air-strike-mp008/index.json new file mode 100644 index 000000000000..d55a22293036 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-air-strike-mp008/index.json @@ -0,0 +1,31 @@ +{ + "id": 155787, + "slug": "tiger-tank-59-air-strike-mp008", + "name": "Tiger Tank 59 Ⅰ Air Strike MP008", + "release_date": "2021-06-29", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183447" + ], + "created_at": "2026-07-10T10:10:46.934182", + "updated_at": "2026-07-10T10:10:46.934182", + "url": "/v1/games/tiger-tank-59-air-strike-mp008" +} diff --git a/site/public/v1/games/tiger-tank-59-air-strike-mp009/index.json b/site/public/v1/games/tiger-tank-59-air-strike-mp009/index.json new file mode 100644 index 000000000000..a4a45d1fd645 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-air-strike-mp009/index.json @@ -0,0 +1,31 @@ +{ + "id": 155788, + "slug": "tiger-tank-59-air-strike-mp009", + "name": "Tiger Tank 59 Ⅰ Air Strike MP009", + "release_date": "2021-06-29", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183450" + ], + "created_at": "2026-07-10T10:10:46.934182", + "updated_at": "2026-07-10T10:10:46.934182", + "url": "/v1/games/tiger-tank-59-air-strike-mp009" +} diff --git a/site/public/v1/games/tiger-tank-59-air-strike-mp010/index.json b/site/public/v1/games/tiger-tank-59-air-strike-mp010/index.json new file mode 100644 index 000000000000..80bab5110c65 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-air-strike-mp010/index.json @@ -0,0 +1,31 @@ +{ + "id": 155789, + "slug": "tiger-tank-59-air-strike-mp010", + "name": "Tiger Tank 59 Ⅰ Air Strike MP010", + "release_date": "2021-06-29", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183452" + ], + "created_at": "2026-07-10T10:10:46.935179", + "updated_at": "2026-07-10T10:10:46.935179", + "url": "/v1/games/tiger-tank-59-air-strike-mp010" +} diff --git a/site/public/v1/games/tiger-tank-59-air-strike-mp011/index.json b/site/public/v1/games/tiger-tank-59-air-strike-mp011/index.json new file mode 100644 index 000000000000..982e9d4aaa5a --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-air-strike-mp011/index.json @@ -0,0 +1,31 @@ +{ + "id": 155790, + "slug": "tiger-tank-59-air-strike-mp011", + "name": "Tiger Tank 59 Ⅰ Air Strike MP011", + "release_date": "2021-06-29", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183455" + ], + "created_at": "2026-07-10T10:10:46.935179", + "updated_at": "2026-07-10T10:10:46.935179", + "url": "/v1/games/tiger-tank-59-air-strike-mp011" +} diff --git a/site/public/v1/games/tiger-tank-59-air-strike-mp012/index.json b/site/public/v1/games/tiger-tank-59-air-strike-mp012/index.json new file mode 100644 index 000000000000..b0092a724d4e --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-air-strike-mp012/index.json @@ -0,0 +1,31 @@ +{ + "id": 155791, + "slug": "tiger-tank-59-air-strike-mp012", + "name": "Tiger Tank 59 Ⅰ Air Strike MP012", + "release_date": "2021-06-29", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183458" + ], + "created_at": "2026-07-10T10:10:46.935179", + "updated_at": "2026-07-10T10:10:46.935179", + "url": "/v1/games/tiger-tank-59-air-strike-mp012" +} diff --git a/site/public/v1/games/tiger-tank-59-air-strike-mp013/index.json b/site/public/v1/games/tiger-tank-59-air-strike-mp013/index.json new file mode 100644 index 000000000000..88a297bbdb43 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-air-strike-mp013/index.json @@ -0,0 +1,31 @@ +{ + "id": 155792, + "slug": "tiger-tank-59-air-strike-mp013", + "name": "Tiger Tank 59 Ⅰ Air Strike MP013", + "release_date": "2021-06-29", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183460" + ], + "created_at": "2026-07-10T10:10:46.936176", + "updated_at": "2026-07-10T10:10:46.936176", + "url": "/v1/games/tiger-tank-59-air-strike-mp013" +} diff --git a/site/public/v1/games/tiger-tank-59-air-strike-mp014/index.json b/site/public/v1/games/tiger-tank-59-air-strike-mp014/index.json new file mode 100644 index 000000000000..c72af7b632ca --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-air-strike-mp014/index.json @@ -0,0 +1,31 @@ +{ + "id": 155793, + "slug": "tiger-tank-59-air-strike-mp014", + "name": "Tiger Tank 59 Ⅰ Air Strike MP014", + "release_date": "2021-06-29", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183463" + ], + "created_at": "2026-07-10T10:10:46.936176", + "updated_at": "2026-07-10T10:10:46.936176", + "url": "/v1/games/tiger-tank-59-air-strike-mp014" +} diff --git a/site/public/v1/games/tiger-tank-59-air-strike-mp015/index.json b/site/public/v1/games/tiger-tank-59-air-strike-mp015/index.json new file mode 100644 index 000000000000..a8adcf74fdbe --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-air-strike-mp015/index.json @@ -0,0 +1,31 @@ +{ + "id": 155794, + "slug": "tiger-tank-59-air-strike-mp015", + "name": "Tiger Tank 59 Ⅰ Air Strike MP015", + "release_date": "2021-06-29", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183464" + ], + "created_at": "2026-07-10T10:10:46.936176", + "updated_at": "2026-07-10T10:10:46.936176", + "url": "/v1/games/tiger-tank-59-air-strike-mp015" +} diff --git a/site/public/v1/games/tiger-tank-59-air-strike-mp016/index.json b/site/public/v1/games/tiger-tank-59-air-strike-mp016/index.json new file mode 100644 index 000000000000..792bcdb5d7e4 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-air-strike-mp016/index.json @@ -0,0 +1,31 @@ +{ + "id": 155795, + "slug": "tiger-tank-59-air-strike-mp016", + "name": "Tiger Tank 59 Ⅰ Air Strike MP016", + "release_date": "2021-06-29", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183466" + ], + "created_at": "2026-07-10T10:10:46.936176", + "updated_at": "2026-07-10T10:10:46.936176", + "url": "/v1/games/tiger-tank-59-air-strike-mp016" +} diff --git a/site/public/v1/games/tiger-tank-59-air-strike-mp017/index.json b/site/public/v1/games/tiger-tank-59-air-strike-mp017/index.json new file mode 100644 index 000000000000..0a403a993179 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-air-strike-mp017/index.json @@ -0,0 +1,31 @@ +{ + "id": 155796, + "slug": "tiger-tank-59-air-strike-mp017", + "name": "Tiger Tank 59 Ⅰ Air Strike MP017", + "release_date": "2021-06-29", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183467" + ], + "created_at": "2026-07-10T10:10:46.936176", + "updated_at": "2026-07-10T10:10:46.936176", + "url": "/v1/games/tiger-tank-59-air-strike-mp017" +} diff --git a/site/public/v1/games/tiger-tank-59-air-strike-mp018/index.json b/site/public/v1/games/tiger-tank-59-air-strike-mp018/index.json new file mode 100644 index 000000000000..09da5270549d --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-air-strike-mp018/index.json @@ -0,0 +1,31 @@ +{ + "id": 155797, + "slug": "tiger-tank-59-air-strike-mp018", + "name": "Tiger Tank 59 Ⅰ Air Strike MP018", + "release_date": "2021-06-29", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183468" + ], + "created_at": "2026-07-10T10:10:46.937181", + "updated_at": "2026-07-10T10:10:46.937181", + "url": "/v1/games/tiger-tank-59-air-strike-mp018" +} diff --git a/site/public/v1/games/tiger-tank-59-air-strike-mp019/index.json b/site/public/v1/games/tiger-tank-59-air-strike-mp019/index.json new file mode 100644 index 000000000000..0a6a2672290e --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-air-strike-mp019/index.json @@ -0,0 +1,31 @@ +{ + "id": 155798, + "slug": "tiger-tank-59-air-strike-mp019", + "name": "Tiger Tank 59 Ⅰ Air Strike MP019", + "release_date": "2021-06-29", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183469" + ], + "created_at": "2026-07-10T10:10:46.937181", + "updated_at": "2026-07-10T10:10:46.937181", + "url": "/v1/games/tiger-tank-59-air-strike-mp019" +} diff --git a/site/public/v1/games/tiger-tank-59-air-strike-mp020/index.json b/site/public/v1/games/tiger-tank-59-air-strike-mp020/index.json new file mode 100644 index 000000000000..21a13f6f0f7b --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-air-strike-mp020/index.json @@ -0,0 +1,31 @@ +{ + "id": 155799, + "slug": "tiger-tank-59-air-strike-mp020", + "name": "Tiger Tank 59 Ⅰ Air Strike MP020", + "release_date": "2021-06-29", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183470" + ], + "created_at": "2026-07-10T10:10:46.937181", + "updated_at": "2026-07-10T10:10:46.937181", + "url": "/v1/games/tiger-tank-59-air-strike-mp020" +} diff --git a/site/public/v1/games/tiger-tank-59-air-strike-mp021/index.json b/site/public/v1/games/tiger-tank-59-air-strike-mp021/index.json new file mode 100644 index 000000000000..ac0562da023b --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-air-strike-mp021/index.json @@ -0,0 +1,31 @@ +{ + "id": 155800, + "slug": "tiger-tank-59-air-strike-mp021", + "name": "Tiger Tank 59 Ⅰ Air Strike MP021", + "release_date": "2021-06-29", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183472" + ], + "created_at": "2026-07-10T10:10:46.938177", + "updated_at": "2026-07-10T10:10:46.938177", + "url": "/v1/games/tiger-tank-59-air-strike-mp021" +} diff --git a/site/public/v1/games/tiger-tank-59-air-strike-mp022/index.json b/site/public/v1/games/tiger-tank-59-air-strike-mp022/index.json new file mode 100644 index 000000000000..dc8faa10dc7b --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-air-strike-mp022/index.json @@ -0,0 +1,31 @@ +{ + "id": 155801, + "slug": "tiger-tank-59-air-strike-mp022", + "name": "Tiger Tank 59 Ⅰ Air Strike MP022", + "release_date": "2021-06-29", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183473" + ], + "created_at": "2026-07-10T10:10:46.938177", + "updated_at": "2026-07-10T10:10:46.938177", + "url": "/v1/games/tiger-tank-59-air-strike-mp022" +} diff --git a/site/public/v1/games/tiger-tank-59-air-strike-mp023/index.json b/site/public/v1/games/tiger-tank-59-air-strike-mp023/index.json new file mode 100644 index 000000000000..6121aa7f80a1 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-air-strike-mp023/index.json @@ -0,0 +1,31 @@ +{ + "id": 155802, + "slug": "tiger-tank-59-air-strike-mp023", + "name": "Tiger Tank 59 Ⅰ Air Strike MP023", + "release_date": "2021-06-29", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183476" + ], + "created_at": "2026-07-10T10:10:46.938177", + "updated_at": "2026-07-10T10:10:46.938177", + "url": "/v1/games/tiger-tank-59-air-strike-mp023" +} diff --git a/site/public/v1/games/tiger-tank-59-air-strike-mp024/index.json b/site/public/v1/games/tiger-tank-59-air-strike-mp024/index.json new file mode 100644 index 000000000000..3732ec4cf9dd --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-air-strike-mp024/index.json @@ -0,0 +1,31 @@ +{ + "id": 155803, + "slug": "tiger-tank-59-air-strike-mp024", + "name": "Tiger Tank 59 Ⅰ Air Strike MP024", + "release_date": "2021-06-29", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183478" + ], + "created_at": "2026-07-10T10:10:46.938177", + "updated_at": "2026-07-10T10:10:46.938177", + "url": "/v1/games/tiger-tank-59-air-strike-mp024" +} diff --git a/site/public/v1/games/tiger-tank-59-air-strike-mp025/index.json b/site/public/v1/games/tiger-tank-59-air-strike-mp025/index.json new file mode 100644 index 000000000000..668ec469d600 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-air-strike-mp025/index.json @@ -0,0 +1,31 @@ +{ + "id": 155804, + "slug": "tiger-tank-59-air-strike-mp025", + "name": "Tiger Tank 59 Ⅰ Air Strike MP025", + "release_date": "2021-06-29", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183482" + ], + "created_at": "2026-07-10T10:10:46.939252", + "updated_at": "2026-07-10T10:10:46.939252", + "url": "/v1/games/tiger-tank-59-air-strike-mp025" +} diff --git a/site/public/v1/games/tiger-tank-59-air-strike-mp026/index.json b/site/public/v1/games/tiger-tank-59-air-strike-mp026/index.json new file mode 100644 index 000000000000..f4ef86c1d05a --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-air-strike-mp026/index.json @@ -0,0 +1,31 @@ +{ + "id": 155805, + "slug": "tiger-tank-59-air-strike-mp026", + "name": "Tiger Tank 59 Ⅰ Air Strike MP026", + "release_date": "2021-06-29", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183483" + ], + "created_at": "2026-07-10T10:10:46.939252", + "updated_at": "2026-07-10T10:10:46.939252", + "url": "/v1/games/tiger-tank-59-air-strike-mp026" +} diff --git a/site/public/v1/games/tiger-tank-59-air-strike-mp027/index.json b/site/public/v1/games/tiger-tank-59-air-strike-mp027/index.json new file mode 100644 index 000000000000..c901591e2fdc --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-air-strike-mp027/index.json @@ -0,0 +1,31 @@ +{ + "id": 155806, + "slug": "tiger-tank-59-air-strike-mp027", + "name": "Tiger Tank 59 Ⅰ Air Strike MP027", + "release_date": "2021-06-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183486" + ], + "created_at": "2026-07-10T10:10:46.939252", + "updated_at": "2026-07-10T10:10:46.939252", + "url": "/v1/games/tiger-tank-59-air-strike-mp027" +} diff --git a/site/public/v1/games/tiger-tank-59-air-strike-mp028/index.json b/site/public/v1/games/tiger-tank-59-air-strike-mp028/index.json new file mode 100644 index 000000000000..debbd5da1d02 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-air-strike-mp028/index.json @@ -0,0 +1,31 @@ +{ + "id": 155807, + "slug": "tiger-tank-59-air-strike-mp028", + "name": "Tiger Tank 59 Ⅰ Air Strike MP028", + "release_date": "2021-06-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183495" + ], + "created_at": "2026-07-10T10:10:46.939252", + "updated_at": "2026-07-10T10:10:46.939252", + "url": "/v1/games/tiger-tank-59-air-strike-mp028" +} diff --git a/site/public/v1/games/tiger-tank-59-air-strike-mp029/index.json b/site/public/v1/games/tiger-tank-59-air-strike-mp029/index.json new file mode 100644 index 000000000000..62d7f5c8d629 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-air-strike-mp029/index.json @@ -0,0 +1,31 @@ +{ + "id": 155808, + "slug": "tiger-tank-59-air-strike-mp029", + "name": "Tiger Tank 59 Ⅰ Air Strike MP029", + "release_date": "2021-06-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183501" + ], + "created_at": "2026-07-10T10:10:46.940274", + "updated_at": "2026-07-10T10:10:46.940274", + "url": "/v1/games/tiger-tank-59-air-strike-mp029" +} diff --git a/site/public/v1/games/tiger-tank-59-air-strike-mp030/index.json b/site/public/v1/games/tiger-tank-59-air-strike-mp030/index.json new file mode 100644 index 000000000000..4346fcfd69a1 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-air-strike-mp030/index.json @@ -0,0 +1,31 @@ +{ + "id": 155809, + "slug": "tiger-tank-59-air-strike-mp030", + "name": "Tiger Tank 59 Ⅰ Air Strike MP030", + "release_date": "2021-06-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183513" + ], + "created_at": "2026-07-10T10:10:46.940274", + "updated_at": "2026-07-10T10:10:46.940274", + "url": "/v1/games/tiger-tank-59-air-strike-mp030" +} diff --git a/site/public/v1/games/tiger-tank-59-air-strike-mp031/index.json b/site/public/v1/games/tiger-tank-59-air-strike-mp031/index.json new file mode 100644 index 000000000000..b1dc944b2229 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-air-strike-mp031/index.json @@ -0,0 +1,31 @@ +{ + "id": 155810, + "slug": "tiger-tank-59-air-strike-mp031", + "name": "Tiger Tank 59 Ⅰ Air Strike MP031", + "release_date": "2021-06-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183521" + ], + "created_at": "2026-07-10T10:10:46.940274", + "updated_at": "2026-07-10T10:10:46.940274", + "url": "/v1/games/tiger-tank-59-air-strike-mp031" +} diff --git a/site/public/v1/games/tiger-tank-59-air-strike-mp032/index.json b/site/public/v1/games/tiger-tank-59-air-strike-mp032/index.json new file mode 100644 index 000000000000..44bf0c0da965 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-air-strike-mp032/index.json @@ -0,0 +1,31 @@ +{ + "id": 155811, + "slug": "tiger-tank-59-air-strike-mp032", + "name": "Tiger Tank 59 Ⅰ Air Strike MP032", + "release_date": "2021-06-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183528" + ], + "created_at": "2026-07-10T10:10:46.941238", + "updated_at": "2026-07-10T10:10:46.941238", + "url": "/v1/games/tiger-tank-59-air-strike-mp032" +} diff --git a/site/public/v1/games/tiger-tank-59-air-strike-mp033/index.json b/site/public/v1/games/tiger-tank-59-air-strike-mp033/index.json new file mode 100644 index 000000000000..8fcf27680e8d --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-air-strike-mp033/index.json @@ -0,0 +1,31 @@ +{ + "id": 155812, + "slug": "tiger-tank-59-air-strike-mp033", + "name": "Tiger Tank 59 Ⅰ Air Strike MP033", + "release_date": "2021-06-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183532" + ], + "created_at": "2026-07-10T10:10:46.941238", + "updated_at": "2026-07-10T10:10:46.941238", + "url": "/v1/games/tiger-tank-59-air-strike-mp033" +} diff --git a/site/public/v1/games/tiger-tank-59-air-strike-mp034/index.json b/site/public/v1/games/tiger-tank-59-air-strike-mp034/index.json new file mode 100644 index 000000000000..f1dd077ca8c2 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-air-strike-mp034/index.json @@ -0,0 +1,31 @@ +{ + "id": 155813, + "slug": "tiger-tank-59-air-strike-mp034", + "name": "Tiger Tank 59 Ⅰ Air Strike MP034", + "release_date": "2021-06-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183533" + ], + "created_at": "2026-07-10T10:10:46.941238", + "updated_at": "2026-07-10T10:10:46.941238", + "url": "/v1/games/tiger-tank-59-air-strike-mp034" +} diff --git a/site/public/v1/games/tiger-tank-59-air-strike-mp035/index.json b/site/public/v1/games/tiger-tank-59-air-strike-mp035/index.json new file mode 100644 index 000000000000..690f2ae3b707 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-air-strike-mp035/index.json @@ -0,0 +1,31 @@ +{ + "id": 155814, + "slug": "tiger-tank-59-air-strike-mp035", + "name": "Tiger Tank 59 Ⅰ Air Strike MP035", + "release_date": "2021-06-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183534" + ], + "created_at": "2026-07-10T10:10:46.941238", + "updated_at": "2026-07-10T10:10:46.941238", + "url": "/v1/games/tiger-tank-59-air-strike-mp035" +} diff --git a/site/public/v1/games/tiger-tank-59-air-strike-mp036/index.json b/site/public/v1/games/tiger-tank-59-air-strike-mp036/index.json new file mode 100644 index 000000000000..5a36d6a97db9 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-air-strike-mp036/index.json @@ -0,0 +1,31 @@ +{ + "id": 155815, + "slug": "tiger-tank-59-air-strike-mp036", + "name": "Tiger Tank 59 Ⅰ Air Strike MP036", + "release_date": "2021-06-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183535" + ], + "created_at": "2026-07-10T10:10:46.942235", + "updated_at": "2026-07-10T10:10:46.942235", + "url": "/v1/games/tiger-tank-59-air-strike-mp036" +} diff --git a/site/public/v1/games/tiger-tank-59-air-strike-mp037/index.json b/site/public/v1/games/tiger-tank-59-air-strike-mp037/index.json new file mode 100644 index 000000000000..4f286285967a --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-air-strike-mp037/index.json @@ -0,0 +1,31 @@ +{ + "id": 155816, + "slug": "tiger-tank-59-air-strike-mp037", + "name": "Tiger Tank 59 Ⅰ Air Strike MP037", + "release_date": "2021-06-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183537" + ], + "created_at": "2026-07-10T10:10:46.942235", + "updated_at": "2026-07-10T10:10:46.942235", + "url": "/v1/games/tiger-tank-59-air-strike-mp037" +} diff --git a/site/public/v1/games/tiger-tank-59-air-strike-mp038/index.json b/site/public/v1/games/tiger-tank-59-air-strike-mp038/index.json new file mode 100644 index 000000000000..03f147fbab83 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-air-strike-mp038/index.json @@ -0,0 +1,31 @@ +{ + "id": 155817, + "slug": "tiger-tank-59-air-strike-mp038", + "name": "Tiger Tank 59 Ⅰ Air Strike MP038", + "release_date": "2021-06-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183538" + ], + "created_at": "2026-07-10T10:10:46.942235", + "updated_at": "2026-07-10T10:10:46.942235", + "url": "/v1/games/tiger-tank-59-air-strike-mp038" +} diff --git a/site/public/v1/games/tiger-tank-59-air-strike-mp039/index.json b/site/public/v1/games/tiger-tank-59-air-strike-mp039/index.json new file mode 100644 index 000000000000..1dbbf4d04d71 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-air-strike-mp039/index.json @@ -0,0 +1,31 @@ +{ + "id": 155818, + "slug": "tiger-tank-59-air-strike-mp039", + "name": "Tiger Tank 59 Ⅰ Air Strike MP039", + "release_date": "2021-06-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183545" + ], + "created_at": "2026-07-10T10:10:46.942235", + "updated_at": "2026-07-10T10:10:46.942235", + "url": "/v1/games/tiger-tank-59-air-strike-mp039" +} diff --git a/site/public/v1/games/tiger-tank-59-air-strike-mp040/index.json b/site/public/v1/games/tiger-tank-59-air-strike-mp040/index.json new file mode 100644 index 000000000000..0c90a62f4432 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-air-strike-mp040/index.json @@ -0,0 +1,31 @@ +{ + "id": 155819, + "slug": "tiger-tank-59-air-strike-mp040", + "name": "Tiger Tank 59 Ⅰ Air Strike MP040", + "release_date": "2021-06-29", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183546" + ], + "created_at": "2026-07-10T10:10:46.942235", + "updated_at": "2026-07-10T10:10:46.942235", + "url": "/v1/games/tiger-tank-59-air-strike-mp040" +} diff --git a/site/public/v1/games/tiger-tank-59-air-strike-mp041/index.json b/site/public/v1/games/tiger-tank-59-air-strike-mp041/index.json new file mode 100644 index 000000000000..1e5f8abc026a --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-air-strike-mp041/index.json @@ -0,0 +1,31 @@ +{ + "id": 155820, + "slug": "tiger-tank-59-air-strike-mp041", + "name": "Tiger Tank 59 Ⅰ Air Strike MP041", + "release_date": "2021-06-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183550" + ], + "created_at": "2026-07-10T10:10:46.942235", + "updated_at": "2026-07-10T10:10:46.943237", + "url": "/v1/games/tiger-tank-59-air-strike-mp041" +} diff --git a/site/public/v1/games/tiger-tank-59-air-strike-mp042/index.json b/site/public/v1/games/tiger-tank-59-air-strike-mp042/index.json new file mode 100644 index 000000000000..0ffe5842178d --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-air-strike-mp042/index.json @@ -0,0 +1,31 @@ +{ + "id": 155821, + "slug": "tiger-tank-59-air-strike-mp042", + "name": "Tiger Tank 59 Ⅰ Air Strike MP042", + "release_date": "2021-06-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183554" + ], + "created_at": "2026-07-10T10:10:46.943237", + "updated_at": "2026-07-10T10:10:46.943237", + "url": "/v1/games/tiger-tank-59-air-strike-mp042" +} diff --git a/site/public/v1/games/tiger-tank-59-air-strike-mp043/index.json b/site/public/v1/games/tiger-tank-59-air-strike-mp043/index.json new file mode 100644 index 000000000000..7daa340b1226 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-air-strike-mp043/index.json @@ -0,0 +1,31 @@ +{ + "id": 155822, + "slug": "tiger-tank-59-air-strike-mp043", + "name": "Tiger Tank 59 Ⅰ Air Strike MP043", + "release_date": "2021-06-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183562" + ], + "created_at": "2026-07-10T10:10:46.943237", + "updated_at": "2026-07-10T10:10:46.943237", + "url": "/v1/games/tiger-tank-59-air-strike-mp043" +} diff --git a/site/public/v1/games/tiger-tank-59-air-strike-mp044/index.json b/site/public/v1/games/tiger-tank-59-air-strike-mp044/index.json new file mode 100644 index 000000000000..322de49372d9 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-air-strike-mp044/index.json @@ -0,0 +1,31 @@ +{ + "id": 155823, + "slug": "tiger-tank-59-air-strike-mp044", + "name": "Tiger Tank 59 Ⅰ Air Strike MP044", + "release_date": "2021-06-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183566" + ], + "created_at": "2026-07-10T10:10:46.943237", + "updated_at": "2026-07-10T10:10:46.943237", + "url": "/v1/games/tiger-tank-59-air-strike-mp044" +} diff --git a/site/public/v1/games/tiger-tank-59-air-strike-mp045/index.json b/site/public/v1/games/tiger-tank-59-air-strike-mp045/index.json new file mode 100644 index 000000000000..7b451ad58d01 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-air-strike-mp045/index.json @@ -0,0 +1,31 @@ +{ + "id": 155824, + "slug": "tiger-tank-59-air-strike-mp045", + "name": "Tiger Tank 59 Ⅰ Air Strike MP045", + "release_date": "2021-06-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183570" + ], + "created_at": "2026-07-10T10:10:46.943237", + "updated_at": "2026-07-10T10:10:46.943237", + "url": "/v1/games/tiger-tank-59-air-strike-mp045" +} diff --git a/site/public/v1/games/tiger-tank-59-air-strike-mp046/index.json b/site/public/v1/games/tiger-tank-59-air-strike-mp046/index.json new file mode 100644 index 000000000000..68133fb0a0e0 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-air-strike-mp046/index.json @@ -0,0 +1,31 @@ +{ + "id": 155825, + "slug": "tiger-tank-59-air-strike-mp046", + "name": "Tiger Tank 59 Ⅰ Air Strike MP046", + "release_date": "2021-06-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183571" + ], + "created_at": "2026-07-10T10:10:46.944276", + "updated_at": "2026-07-10T10:10:46.944276", + "url": "/v1/games/tiger-tank-59-air-strike-mp046" +} diff --git a/site/public/v1/games/tiger-tank-59-air-strike-mp047/index.json b/site/public/v1/games/tiger-tank-59-air-strike-mp047/index.json new file mode 100644 index 000000000000..a084cdad511b --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-air-strike-mp047/index.json @@ -0,0 +1,31 @@ +{ + "id": 155826, + "slug": "tiger-tank-59-air-strike-mp047", + "name": "Tiger Tank 59 Ⅰ Air Strike MP047", + "release_date": "2021-06-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183577" + ], + "created_at": "2026-07-10T10:10:46.944276", + "updated_at": "2026-07-10T10:10:46.944276", + "url": "/v1/games/tiger-tank-59-air-strike-mp047" +} diff --git a/site/public/v1/games/tiger-tank-59-air-strike-mp048/index.json b/site/public/v1/games/tiger-tank-59-air-strike-mp048/index.json new file mode 100644 index 000000000000..c4d400441c85 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-air-strike-mp048/index.json @@ -0,0 +1,31 @@ +{ + "id": 155827, + "slug": "tiger-tank-59-air-strike-mp048", + "name": "Tiger Tank 59 Ⅰ Air Strike MP048", + "release_date": "2021-06-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183581" + ], + "created_at": "2026-07-10T10:10:46.944276", + "updated_at": "2026-07-10T10:10:46.944276", + "url": "/v1/games/tiger-tank-59-air-strike-mp048" +} diff --git a/site/public/v1/games/tiger-tank-59-air-strike-mp049/index.json b/site/public/v1/games/tiger-tank-59-air-strike-mp049/index.json new file mode 100644 index 000000000000..f584eb1ac302 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-air-strike-mp049/index.json @@ -0,0 +1,31 @@ +{ + "id": 155828, + "slug": "tiger-tank-59-air-strike-mp049", + "name": "Tiger Tank 59 Ⅰ Air Strike MP049", + "release_date": "2021-06-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183587" + ], + "created_at": "2026-07-10T10:10:46.944276", + "updated_at": "2026-07-10T10:10:46.944276", + "url": "/v1/games/tiger-tank-59-air-strike-mp049" +} diff --git a/site/public/v1/games/tiger-tank-59-air-strike-mp050/index.json b/site/public/v1/games/tiger-tank-59-air-strike-mp050/index.json new file mode 100644 index 000000000000..3832f7a0e40d --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-air-strike-mp050/index.json @@ -0,0 +1,31 @@ +{ + "id": 155829, + "slug": "tiger-tank-59-air-strike-mp050", + "name": "Tiger Tank 59 Ⅰ Air Strike MP050", + "release_date": "2021-06-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183597" + ], + "created_at": "2026-07-10T10:10:46.944276", + "updated_at": "2026-07-10T10:10:46.945250", + "url": "/v1/games/tiger-tank-59-air-strike-mp050" +} diff --git a/site/public/v1/games/tiger-tank-59-air-strike-mp051/index.json b/site/public/v1/games/tiger-tank-59-air-strike-mp051/index.json new file mode 100644 index 000000000000..add8023e6d98 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-air-strike-mp051/index.json @@ -0,0 +1,31 @@ +{ + "id": 155830, + "slug": "tiger-tank-59-air-strike-mp051", + "name": "Tiger Tank 59 Ⅰ Air Strike MP051", + "release_date": "2021-06-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183606" + ], + "created_at": "2026-07-10T10:10:46.945250", + "updated_at": "2026-07-10T10:10:46.945250", + "url": "/v1/games/tiger-tank-59-air-strike-mp051" +} diff --git a/site/public/v1/games/tiger-tank-59-air-strike-mp052/index.json b/site/public/v1/games/tiger-tank-59-air-strike-mp052/index.json new file mode 100644 index 000000000000..e02b820962f5 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-air-strike-mp052/index.json @@ -0,0 +1,31 @@ +{ + "id": 155831, + "slug": "tiger-tank-59-air-strike-mp052", + "name": "Tiger Tank 59 Ⅰ Air Strike MP052", + "release_date": "2021-06-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183616" + ], + "created_at": "2026-07-10T10:10:46.945250", + "updated_at": "2026-07-10T10:10:46.945250", + "url": "/v1/games/tiger-tank-59-air-strike-mp052" +} diff --git a/site/public/v1/games/tiger-tank-59-air-strike-mp053/index.json b/site/public/v1/games/tiger-tank-59-air-strike-mp053/index.json new file mode 100644 index 000000000000..9da7c0bcd68c --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-air-strike-mp053/index.json @@ -0,0 +1,31 @@ +{ + "id": 155832, + "slug": "tiger-tank-59-air-strike-mp053", + "name": "Tiger Tank 59 Ⅰ Air Strike MP053", + "release_date": "2021-06-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183621" + ], + "created_at": "2026-07-10T10:10:46.945250", + "updated_at": "2026-07-10T10:10:46.945250", + "url": "/v1/games/tiger-tank-59-air-strike-mp053" +} diff --git a/site/public/v1/games/tiger-tank-59-air-strike-mp054/index.json b/site/public/v1/games/tiger-tank-59-air-strike-mp054/index.json new file mode 100644 index 000000000000..d46e7e4eb61a --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-air-strike-mp054/index.json @@ -0,0 +1,31 @@ +{ + "id": 155833, + "slug": "tiger-tank-59-air-strike-mp054", + "name": "Tiger Tank 59 Ⅰ Air Strike MP054", + "release_date": "2021-06-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183623" + ], + "created_at": "2026-07-10T10:10:46.946178", + "updated_at": "2026-07-10T10:10:46.946178", + "url": "/v1/games/tiger-tank-59-air-strike-mp054" +} diff --git a/site/public/v1/games/tiger-tank-59-air-strike-mp055/index.json b/site/public/v1/games/tiger-tank-59-air-strike-mp055/index.json new file mode 100644 index 000000000000..658bf3485821 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-air-strike-mp055/index.json @@ -0,0 +1,31 @@ +{ + "id": 155834, + "slug": "tiger-tank-59-air-strike-mp055", + "name": "Tiger Tank 59 Ⅰ Air Strike MP055", + "release_date": "2021-06-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183624" + ], + "created_at": "2026-07-10T10:10:46.946178", + "updated_at": "2026-07-10T10:10:46.946178", + "url": "/v1/games/tiger-tank-59-air-strike-mp055" +} diff --git a/site/public/v1/games/tiger-tank-59-air-strike-mp056/index.json b/site/public/v1/games/tiger-tank-59-air-strike-mp056/index.json new file mode 100644 index 000000000000..5861461b5d83 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-air-strike-mp056/index.json @@ -0,0 +1,31 @@ +{ + "id": 155835, + "slug": "tiger-tank-59-air-strike-mp056", + "name": "Tiger Tank 59 Ⅰ Air Strike MP056", + "release_date": "2021-06-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183627" + ], + "created_at": "2026-07-10T10:10:46.946178", + "updated_at": "2026-07-10T10:10:46.946178", + "url": "/v1/games/tiger-tank-59-air-strike-mp056" +} diff --git a/site/public/v1/games/tiger-tank-59-air-strike-mp057/index.json b/site/public/v1/games/tiger-tank-59-air-strike-mp057/index.json new file mode 100644 index 000000000000..9228a911e703 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-air-strike-mp057/index.json @@ -0,0 +1,31 @@ +{ + "id": 155836, + "slug": "tiger-tank-59-air-strike-mp057", + "name": "Tiger Tank 59 Ⅰ Air Strike MP057", + "release_date": "2021-06-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183637" + ], + "created_at": "2026-07-10T10:10:46.946178", + "updated_at": "2026-07-10T10:10:46.946178", + "url": "/v1/games/tiger-tank-59-air-strike-mp057" +} diff --git a/site/public/v1/games/tiger-tank-59-air-strike-mp058/index.json b/site/public/v1/games/tiger-tank-59-air-strike-mp058/index.json new file mode 100644 index 000000000000..a92dc5b410ba --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-air-strike-mp058/index.json @@ -0,0 +1,31 @@ +{ + "id": 155837, + "slug": "tiger-tank-59-air-strike-mp058", + "name": "Tiger Tank 59 Ⅰ Air Strike MP058", + "release_date": "2021-06-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183639" + ], + "created_at": "2026-07-10T10:10:46.946178", + "updated_at": "2026-07-10T10:10:46.946178", + "url": "/v1/games/tiger-tank-59-air-strike-mp058" +} diff --git a/site/public/v1/games/tiger-tank-59-air-strike-mp059/index.json b/site/public/v1/games/tiger-tank-59-air-strike-mp059/index.json new file mode 100644 index 000000000000..118f5878dec1 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-air-strike-mp059/index.json @@ -0,0 +1,31 @@ +{ + "id": 155838, + "slug": "tiger-tank-59-air-strike-mp059", + "name": "Tiger Tank 59 Ⅰ Air Strike MP059", + "release_date": "2021-06-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183642" + ], + "created_at": "2026-07-10T10:10:46.947240", + "updated_at": "2026-07-10T10:10:46.947240", + "url": "/v1/games/tiger-tank-59-air-strike-mp059" +} diff --git a/site/public/v1/games/tiger-tank-59-air-strike-mp060/index.json b/site/public/v1/games/tiger-tank-59-air-strike-mp060/index.json new file mode 100644 index 000000000000..3a4acf7c35c5 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-air-strike-mp060/index.json @@ -0,0 +1,31 @@ +{ + "id": 155839, + "slug": "tiger-tank-59-air-strike-mp060", + "name": "Tiger Tank 59 Ⅰ Air Strike MP060", + "release_date": "2021-06-29", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183645" + ], + "created_at": "2026-07-10T10:10:46.947240", + "updated_at": "2026-07-10T10:10:46.947240", + "url": "/v1/games/tiger-tank-59-air-strike-mp060" +} diff --git a/site/public/v1/games/tiger-tank-59-air-strike-mp061/index.json b/site/public/v1/games/tiger-tank-59-air-strike-mp061/index.json new file mode 100644 index 000000000000..445560860bf4 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-air-strike-mp061/index.json @@ -0,0 +1,31 @@ +{ + "id": 155840, + "slug": "tiger-tank-59-air-strike-mp061", + "name": "Tiger Tank 59 Ⅰ Air Strike MP061", + "release_date": "2021-06-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183646" + ], + "created_at": "2026-07-10T10:10:46.947240", + "updated_at": "2026-07-10T10:10:46.947240", + "url": "/v1/games/tiger-tank-59-air-strike-mp061" +} diff --git a/site/public/v1/games/tiger-tank-59-air-strike-mp062/index.json b/site/public/v1/games/tiger-tank-59-air-strike-mp062/index.json new file mode 100644 index 000000000000..2f58a522e060 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-air-strike-mp062/index.json @@ -0,0 +1,31 @@ +{ + "id": 155841, + "slug": "tiger-tank-59-air-strike-mp062", + "name": "Tiger Tank 59 Ⅰ Air Strike MP062", + "release_date": "2021-06-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183647" + ], + "created_at": "2026-07-10T10:10:46.947240", + "updated_at": "2026-07-10T10:10:46.947240", + "url": "/v1/games/tiger-tank-59-air-strike-mp062" +} diff --git a/site/public/v1/games/tiger-tank-59-air-strike-mp063/index.json b/site/public/v1/games/tiger-tank-59-air-strike-mp063/index.json new file mode 100644 index 000000000000..d9f6378a841d --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-air-strike-mp063/index.json @@ -0,0 +1,31 @@ +{ + "id": 155842, + "slug": "tiger-tank-59-air-strike-mp063", + "name": "Tiger Tank 59 Ⅰ Air Strike MP063", + "release_date": "2021-06-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183650" + ], + "created_at": "2026-07-10T10:10:46.947240", + "updated_at": "2026-07-10T10:10:46.947240", + "url": "/v1/games/tiger-tank-59-air-strike-mp063" +} diff --git a/site/public/v1/games/tiger-tank-59-air-strike-mp064/index.json b/site/public/v1/games/tiger-tank-59-air-strike-mp064/index.json new file mode 100644 index 000000000000..5e8fe8103552 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-air-strike-mp064/index.json @@ -0,0 +1,31 @@ +{ + "id": 155843, + "slug": "tiger-tank-59-air-strike-mp064", + "name": "Tiger Tank 59 Ⅰ Air Strike MP064", + "release_date": "2021-06-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183651" + ], + "created_at": "2026-07-10T10:10:46.948231", + "updated_at": "2026-07-10T10:10:46.948231", + "url": "/v1/games/tiger-tank-59-air-strike-mp064" +} diff --git a/site/public/v1/games/tiger-tank-59-air-strike-mp065/index.json b/site/public/v1/games/tiger-tank-59-air-strike-mp065/index.json new file mode 100644 index 000000000000..b4b4cc3ada6a --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-air-strike-mp065/index.json @@ -0,0 +1,31 @@ +{ + "id": 155844, + "slug": "tiger-tank-59-air-strike-mp065", + "name": "Tiger Tank 59 Ⅰ Air Strike MP065", + "release_date": "2021-06-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183653" + ], + "created_at": "2026-07-10T10:10:46.948231", + "updated_at": "2026-07-10T10:10:46.948231", + "url": "/v1/games/tiger-tank-59-air-strike-mp065" +} diff --git a/site/public/v1/games/tiger-tank-59-air-strike-mp066/index.json b/site/public/v1/games/tiger-tank-59-air-strike-mp066/index.json new file mode 100644 index 000000000000..2558e1ebcc45 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-air-strike-mp066/index.json @@ -0,0 +1,31 @@ +{ + "id": 155845, + "slug": "tiger-tank-59-air-strike-mp066", + "name": "Tiger Tank 59 Ⅰ Air Strike MP066", + "release_date": "2021-06-29", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183658" + ], + "created_at": "2026-07-10T10:10:46.948231", + "updated_at": "2026-07-10T10:10:46.948231", + "url": "/v1/games/tiger-tank-59-air-strike-mp066" +} diff --git a/site/public/v1/games/tiger-tank-59-air-strike-mp067/index.json b/site/public/v1/games/tiger-tank-59-air-strike-mp067/index.json new file mode 100644 index 000000000000..20fa6dd68ee7 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-air-strike-mp067/index.json @@ -0,0 +1,31 @@ +{ + "id": 155846, + "slug": "tiger-tank-59-air-strike-mp067", + "name": "Tiger Tank 59 Ⅰ Air Strike MP067", + "release_date": "2021-06-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183662" + ], + "created_at": "2026-07-10T10:10:46.948231", + "updated_at": "2026-07-10T10:10:46.948231", + "url": "/v1/games/tiger-tank-59-air-strike-mp067" +} diff --git a/site/public/v1/games/tiger-tank-59-air-strike-mp068/index.json b/site/public/v1/games/tiger-tank-59-air-strike-mp068/index.json new file mode 100644 index 000000000000..be044410c583 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-air-strike-mp068/index.json @@ -0,0 +1,31 @@ +{ + "id": 155847, + "slug": "tiger-tank-59-air-strike-mp068", + "name": "Tiger Tank 59 Ⅰ Air Strike MP068", + "release_date": "2021-06-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183665" + ], + "created_at": "2026-07-10T10:10:46.949225", + "updated_at": "2026-07-10T10:10:46.949225", + "url": "/v1/games/tiger-tank-59-air-strike-mp068" +} diff --git a/site/public/v1/games/tiger-tank-59-air-strike-mp069/index.json b/site/public/v1/games/tiger-tank-59-air-strike-mp069/index.json new file mode 100644 index 000000000000..a1a8597eee8f --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-air-strike-mp069/index.json @@ -0,0 +1,31 @@ +{ + "id": 155848, + "slug": "tiger-tank-59-air-strike-mp069", + "name": "Tiger Tank 59 Ⅰ Air Strike MP069", + "release_date": "2021-06-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183666" + ], + "created_at": "2026-07-10T10:10:46.949225", + "updated_at": "2026-07-10T10:10:46.949225", + "url": "/v1/games/tiger-tank-59-air-strike-mp069" +} diff --git a/site/public/v1/games/tiger-tank-59-air-strike-mp070/index.json b/site/public/v1/games/tiger-tank-59-air-strike-mp070/index.json new file mode 100644 index 000000000000..01b58e915e52 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-air-strike-mp070/index.json @@ -0,0 +1,31 @@ +{ + "id": 155849, + "slug": "tiger-tank-59-air-strike-mp070", + "name": "Tiger Tank 59 Ⅰ Air Strike MP070", + "release_date": "2021-06-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183667" + ], + "created_at": "2026-07-10T10:10:46.949225", + "updated_at": "2026-07-10T10:10:46.949225", + "url": "/v1/games/tiger-tank-59-air-strike-mp070" +} diff --git a/site/public/v1/games/tiger-tank-59-air-strike-mp071/index.json b/site/public/v1/games/tiger-tank-59-air-strike-mp071/index.json new file mode 100644 index 000000000000..da1cb23fe2e4 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-air-strike-mp071/index.json @@ -0,0 +1,31 @@ +{ + "id": 155850, + "slug": "tiger-tank-59-air-strike-mp071", + "name": "Tiger Tank 59 Ⅰ Air Strike MP071", + "release_date": "2021-06-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183670" + ], + "created_at": "2026-07-10T10:10:46.949225", + "updated_at": "2026-07-10T10:10:46.949225", + "url": "/v1/games/tiger-tank-59-air-strike-mp071" +} diff --git a/site/public/v1/games/tiger-tank-59-air-strike-mp072/index.json b/site/public/v1/games/tiger-tank-59-air-strike-mp072/index.json new file mode 100644 index 000000000000..c4cad960d18b --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-air-strike-mp072/index.json @@ -0,0 +1,31 @@ +{ + "id": 155851, + "slug": "tiger-tank-59-air-strike-mp072", + "name": "Tiger Tank 59 Ⅰ Air Strike MP072", + "release_date": "2021-06-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183673" + ], + "created_at": "2026-07-10T10:10:46.949225", + "updated_at": "2026-07-10T10:10:46.949225", + "url": "/v1/games/tiger-tank-59-air-strike-mp072" +} diff --git a/site/public/v1/games/tiger-tank-59-air-strike-mp073/index.json b/site/public/v1/games/tiger-tank-59-air-strike-mp073/index.json new file mode 100644 index 000000000000..b9882bb13b70 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-air-strike-mp073/index.json @@ -0,0 +1,31 @@ +{ + "id": 155852, + "slug": "tiger-tank-59-air-strike-mp073", + "name": "Tiger Tank 59 Ⅰ Air Strike MP073", + "release_date": "2021-06-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183675" + ], + "created_at": "2026-07-10T10:10:46.950247", + "updated_at": "2026-07-10T10:10:46.950247", + "url": "/v1/games/tiger-tank-59-air-strike-mp073" +} diff --git a/site/public/v1/games/tiger-tank-59-air-strike-mp074/index.json b/site/public/v1/games/tiger-tank-59-air-strike-mp074/index.json new file mode 100644 index 000000000000..630412a2ee22 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-air-strike-mp074/index.json @@ -0,0 +1,31 @@ +{ + "id": 155853, + "slug": "tiger-tank-59-air-strike-mp074", + "name": "Tiger Tank 59 Ⅰ Air Strike MP074", + "release_date": "2021-06-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183678" + ], + "created_at": "2026-07-10T10:10:46.950247", + "updated_at": "2026-07-10T10:10:46.950247", + "url": "/v1/games/tiger-tank-59-air-strike-mp074" +} diff --git a/site/public/v1/games/tiger-tank-59-air-strike-mp075/index.json b/site/public/v1/games/tiger-tank-59-air-strike-mp075/index.json new file mode 100644 index 000000000000..8f74ed075036 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-air-strike-mp075/index.json @@ -0,0 +1,31 @@ +{ + "id": 155854, + "slug": "tiger-tank-59-air-strike-mp075", + "name": "Tiger Tank 59 Ⅰ Air Strike MP075", + "release_date": "2021-06-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183683" + ], + "created_at": "2026-07-10T10:10:46.950247", + "updated_at": "2026-07-10T10:10:46.950247", + "url": "/v1/games/tiger-tank-59-air-strike-mp075" +} diff --git a/site/public/v1/games/tiger-tank-59-air-strike-mp076/index.json b/site/public/v1/games/tiger-tank-59-air-strike-mp076/index.json new file mode 100644 index 000000000000..84002bcbf81f --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-air-strike-mp076/index.json @@ -0,0 +1,31 @@ +{ + "id": 155855, + "slug": "tiger-tank-59-air-strike-mp076", + "name": "Tiger Tank 59 Ⅰ Air Strike MP076", + "release_date": "2021-06-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183688" + ], + "created_at": "2026-07-10T10:10:46.950247", + "updated_at": "2026-07-10T10:10:46.950247", + "url": "/v1/games/tiger-tank-59-air-strike-mp076" +} diff --git a/site/public/v1/games/tiger-tank-59-air-strike-mp077/index.json b/site/public/v1/games/tiger-tank-59-air-strike-mp077/index.json new file mode 100644 index 000000000000..cff3a827789d --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-air-strike-mp077/index.json @@ -0,0 +1,31 @@ +{ + "id": 155856, + "slug": "tiger-tank-59-air-strike-mp077", + "name": "Tiger Tank 59 Ⅰ Air Strike MP077", + "release_date": "2021-06-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183689" + ], + "created_at": "2026-07-10T10:10:46.951234", + "updated_at": "2026-07-10T10:10:46.951234", + "url": "/v1/games/tiger-tank-59-air-strike-mp077" +} diff --git a/site/public/v1/games/tiger-tank-59-air-strike-mp078/index.json b/site/public/v1/games/tiger-tank-59-air-strike-mp078/index.json new file mode 100644 index 000000000000..2b967c7ab9d4 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-air-strike-mp078/index.json @@ -0,0 +1,31 @@ +{ + "id": 155857, + "slug": "tiger-tank-59-air-strike-mp078", + "name": "Tiger Tank 59 Ⅰ Air Strike MP078", + "release_date": "2021-06-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183693" + ], + "created_at": "2026-07-10T10:10:46.951234", + "updated_at": "2026-07-10T10:10:46.951234", + "url": "/v1/games/tiger-tank-59-air-strike-mp078" +} diff --git a/site/public/v1/games/tiger-tank-59-air-strike-mp079/index.json b/site/public/v1/games/tiger-tank-59-air-strike-mp079/index.json new file mode 100644 index 000000000000..05fcaaa035dc --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-air-strike-mp079/index.json @@ -0,0 +1,31 @@ +{ + "id": 155858, + "slug": "tiger-tank-59-air-strike-mp079", + "name": "Tiger Tank 59 Ⅰ Air Strike MP079", + "release_date": "2021-06-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183696" + ], + "created_at": "2026-07-10T10:10:46.951234", + "updated_at": "2026-07-10T10:10:46.951234", + "url": "/v1/games/tiger-tank-59-air-strike-mp079" +} diff --git a/site/public/v1/games/tiger-tank-59-air-strike-mp080/index.json b/site/public/v1/games/tiger-tank-59-air-strike-mp080/index.json new file mode 100644 index 000000000000..931efdc53a82 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-air-strike-mp080/index.json @@ -0,0 +1,31 @@ +{ + "id": 155859, + "slug": "tiger-tank-59-air-strike-mp080", + "name": "Tiger Tank 59 Ⅰ Air Strike MP080", + "release_date": "2021-06-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183698" + ], + "created_at": "2026-07-10T10:10:46.951234", + "updated_at": "2026-07-10T10:10:46.951234", + "url": "/v1/games/tiger-tank-59-air-strike-mp080" +} diff --git a/site/public/v1/games/tiger-tank-59-air-strike-mp081/index.json b/site/public/v1/games/tiger-tank-59-air-strike-mp081/index.json new file mode 100644 index 000000000000..2c0805130208 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-air-strike-mp081/index.json @@ -0,0 +1,31 @@ +{ + "id": 155860, + "slug": "tiger-tank-59-air-strike-mp081", + "name": "Tiger Tank 59 Ⅰ Air Strike MP081", + "release_date": "2021-06-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183702" + ], + "created_at": "2026-07-10T10:10:46.951234", + "updated_at": "2026-07-10T10:10:46.951234", + "url": "/v1/games/tiger-tank-59-air-strike-mp081" +} diff --git a/site/public/v1/games/tiger-tank-59-air-strike-mp082/index.json b/site/public/v1/games/tiger-tank-59-air-strike-mp082/index.json new file mode 100644 index 000000000000..b5ba4c3c4047 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-air-strike-mp082/index.json @@ -0,0 +1,31 @@ +{ + "id": 155861, + "slug": "tiger-tank-59-air-strike-mp082", + "name": "Tiger Tank 59 Ⅰ Air Strike MP082", + "release_date": "2021-06-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183707" + ], + "created_at": "2026-07-10T10:10:46.952230", + "updated_at": "2026-07-10T10:10:46.952230", + "url": "/v1/games/tiger-tank-59-air-strike-mp082" +} diff --git a/site/public/v1/games/tiger-tank-59-air-strike-mp083/index.json b/site/public/v1/games/tiger-tank-59-air-strike-mp083/index.json new file mode 100644 index 000000000000..05b764bae694 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-air-strike-mp083/index.json @@ -0,0 +1,31 @@ +{ + "id": 155862, + "slug": "tiger-tank-59-air-strike-mp083", + "name": "Tiger Tank 59 Ⅰ Air Strike MP083", + "release_date": "2021-06-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183711" + ], + "created_at": "2026-07-10T10:10:46.952230", + "updated_at": "2026-07-10T10:10:46.952230", + "url": "/v1/games/tiger-tank-59-air-strike-mp083" +} diff --git a/site/public/v1/games/tiger-tank-59-air-strike-mp084/index.json b/site/public/v1/games/tiger-tank-59-air-strike-mp084/index.json new file mode 100644 index 000000000000..d0d68aafa18a --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-air-strike-mp084/index.json @@ -0,0 +1,31 @@ +{ + "id": 155863, + "slug": "tiger-tank-59-air-strike-mp084", + "name": "Tiger Tank 59 Ⅰ Air Strike MP084", + "release_date": "2021-06-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183714" + ], + "created_at": "2026-07-10T10:10:46.952230", + "updated_at": "2026-07-10T10:10:46.952230", + "url": "/v1/games/tiger-tank-59-air-strike-mp084" +} diff --git a/site/public/v1/games/tiger-tank-59-air-strike-mp085/index.json b/site/public/v1/games/tiger-tank-59-air-strike-mp085/index.json new file mode 100644 index 000000000000..e84a6b7cd28c --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-air-strike-mp085/index.json @@ -0,0 +1,31 @@ +{ + "id": 155864, + "slug": "tiger-tank-59-air-strike-mp085", + "name": "Tiger Tank 59 Ⅰ Air Strike MP085", + "release_date": "2021-06-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183716" + ], + "created_at": "2026-07-10T10:10:46.952230", + "updated_at": "2026-07-10T10:10:46.952230", + "url": "/v1/games/tiger-tank-59-air-strike-mp085" +} diff --git a/site/public/v1/games/tiger-tank-59-air-strike-mp086/index.json b/site/public/v1/games/tiger-tank-59-air-strike-mp086/index.json new file mode 100644 index 000000000000..914bb08a3fec --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-air-strike-mp086/index.json @@ -0,0 +1,31 @@ +{ + "id": 155865, + "slug": "tiger-tank-59-air-strike-mp086", + "name": "Tiger Tank 59 Ⅰ Air Strike MP086", + "release_date": "2021-06-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183717" + ], + "created_at": "2026-07-10T10:10:46.952230", + "updated_at": "2026-07-10T10:10:46.952230", + "url": "/v1/games/tiger-tank-59-air-strike-mp086" +} diff --git a/site/public/v1/games/tiger-tank-59-air-strike-mp087/index.json b/site/public/v1/games/tiger-tank-59-air-strike-mp087/index.json new file mode 100644 index 000000000000..3f37c507147b --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-air-strike-mp087/index.json @@ -0,0 +1,31 @@ +{ + "id": 155866, + "slug": "tiger-tank-59-air-strike-mp087", + "name": "Tiger Tank 59 Ⅰ Air Strike MP087", + "release_date": "2021-06-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183718" + ], + "created_at": "2026-07-10T10:10:46.953241", + "updated_at": "2026-07-10T10:10:46.953241", + "url": "/v1/games/tiger-tank-59-air-strike-mp087" +} diff --git a/site/public/v1/games/tiger-tank-59-air-strike-mp088/index.json b/site/public/v1/games/tiger-tank-59-air-strike-mp088/index.json new file mode 100644 index 000000000000..1088683dd6a5 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-air-strike-mp088/index.json @@ -0,0 +1,31 @@ +{ + "id": 155867, + "slug": "tiger-tank-59-air-strike-mp088", + "name": "Tiger Tank 59 Ⅰ Air Strike MP088", + "release_date": "2021-06-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183720" + ], + "created_at": "2026-07-10T10:10:46.954362", + "updated_at": "2026-07-10T10:10:46.954362", + "url": "/v1/games/tiger-tank-59-air-strike-mp088" +} diff --git a/site/public/v1/games/tiger-tank-59-air-strike-mp089/index.json b/site/public/v1/games/tiger-tank-59-air-strike-mp089/index.json new file mode 100644 index 000000000000..c8aae00da465 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-air-strike-mp089/index.json @@ -0,0 +1,31 @@ +{ + "id": 155868, + "slug": "tiger-tank-59-air-strike-mp089", + "name": "Tiger Tank 59 Ⅰ Air Strike MP089", + "release_date": "2021-06-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183722" + ], + "created_at": "2026-07-10T10:10:46.955373", + "updated_at": "2026-07-10T10:10:46.955373", + "url": "/v1/games/tiger-tank-59-air-strike-mp089" +} diff --git a/site/public/v1/games/tiger-tank-59-air-strike-mp090/index.json b/site/public/v1/games/tiger-tank-59-air-strike-mp090/index.json new file mode 100644 index 000000000000..8cbcb6309448 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-air-strike-mp090/index.json @@ -0,0 +1,31 @@ +{ + "id": 155869, + "slug": "tiger-tank-59-air-strike-mp090", + "name": "Tiger Tank 59 Ⅰ Air Strike MP090", + "release_date": "2021-06-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183725" + ], + "created_at": "2026-07-10T10:10:46.956373", + "updated_at": "2026-07-10T10:10:46.956373", + "url": "/v1/games/tiger-tank-59-air-strike-mp090" +} diff --git a/site/public/v1/games/tiger-tank-59-air-strike-mp091/index.json b/site/public/v1/games/tiger-tank-59-air-strike-mp091/index.json new file mode 100644 index 000000000000..b354bc256963 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-air-strike-mp091/index.json @@ -0,0 +1,31 @@ +{ + "id": 155870, + "slug": "tiger-tank-59-air-strike-mp091", + "name": "Tiger Tank 59 Ⅰ Air Strike MP091", + "release_date": "2021-06-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183726" + ], + "created_at": "2026-07-10T10:10:46.956373", + "updated_at": "2026-07-10T10:10:46.956373", + "url": "/v1/games/tiger-tank-59-air-strike-mp091" +} diff --git a/site/public/v1/games/tiger-tank-59-air-strike-mp092/index.json b/site/public/v1/games/tiger-tank-59-air-strike-mp092/index.json new file mode 100644 index 000000000000..c9da71f8b2cd --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-air-strike-mp092/index.json @@ -0,0 +1,31 @@ +{ + "id": 155871, + "slug": "tiger-tank-59-air-strike-mp092", + "name": "Tiger Tank 59 Ⅰ Air Strike MP092", + "release_date": "2021-06-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183730" + ], + "created_at": "2026-07-10T10:10:46.956373", + "updated_at": "2026-07-10T10:10:46.956373", + "url": "/v1/games/tiger-tank-59-air-strike-mp092" +} diff --git a/site/public/v1/games/tiger-tank-59-air-strike-mp093/index.json b/site/public/v1/games/tiger-tank-59-air-strike-mp093/index.json new file mode 100644 index 000000000000..129d7cb2ec29 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-air-strike-mp093/index.json @@ -0,0 +1,31 @@ +{ + "id": 155872, + "slug": "tiger-tank-59-air-strike-mp093", + "name": "Tiger Tank 59 Ⅰ Air Strike MP093", + "release_date": "2021-06-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183732" + ], + "created_at": "2026-07-10T10:10:46.956373", + "updated_at": "2026-07-10T10:10:46.956373", + "url": "/v1/games/tiger-tank-59-air-strike-mp093" +} diff --git a/site/public/v1/games/tiger-tank-59-air-strike-mp094/index.json b/site/public/v1/games/tiger-tank-59-air-strike-mp094/index.json new file mode 100644 index 000000000000..293d0195276d --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-air-strike-mp094/index.json @@ -0,0 +1,31 @@ +{ + "id": 155873, + "slug": "tiger-tank-59-air-strike-mp094", + "name": "Tiger Tank 59 Ⅰ Air Strike MP094", + "release_date": "2021-06-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183733" + ], + "created_at": "2026-07-10T10:10:46.956373", + "updated_at": "2026-07-10T10:10:46.956373", + "url": "/v1/games/tiger-tank-59-air-strike-mp094" +} diff --git a/site/public/v1/games/tiger-tank-59-air-strike-mp095/index.json b/site/public/v1/games/tiger-tank-59-air-strike-mp095/index.json new file mode 100644 index 000000000000..108dddc037a1 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-air-strike-mp095/index.json @@ -0,0 +1,31 @@ +{ + "id": 155874, + "slug": "tiger-tank-59-air-strike-mp095", + "name": "Tiger Tank 59 Ⅰ Air Strike MP095", + "release_date": "2021-06-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183736" + ], + "created_at": "2026-07-10T10:10:46.957371", + "updated_at": "2026-07-10T10:10:46.957371", + "url": "/v1/games/tiger-tank-59-air-strike-mp095" +} diff --git a/site/public/v1/games/tiger-tank-59-air-strike-mp096/index.json b/site/public/v1/games/tiger-tank-59-air-strike-mp096/index.json new file mode 100644 index 000000000000..790bf1e9eef6 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-air-strike-mp096/index.json @@ -0,0 +1,31 @@ +{ + "id": 155875, + "slug": "tiger-tank-59-air-strike-mp096", + "name": "Tiger Tank 59 Ⅰ Air Strike MP096", + "release_date": "2021-06-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183737" + ], + "created_at": "2026-07-10T10:10:46.957371", + "updated_at": "2026-07-10T10:10:46.957371", + "url": "/v1/games/tiger-tank-59-air-strike-mp096" +} diff --git a/site/public/v1/games/tiger-tank-59-air-strike-mp097/index.json b/site/public/v1/games/tiger-tank-59-air-strike-mp097/index.json new file mode 100644 index 000000000000..07023cf52132 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-air-strike-mp097/index.json @@ -0,0 +1,31 @@ +{ + "id": 155876, + "slug": "tiger-tank-59-air-strike-mp097", + "name": "Tiger Tank 59 Ⅰ Air Strike MP097", + "release_date": "2021-06-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183739" + ], + "created_at": "2026-07-10T10:10:46.957371", + "updated_at": "2026-07-10T10:10:46.957371", + "url": "/v1/games/tiger-tank-59-air-strike-mp097" +} diff --git a/site/public/v1/games/tiger-tank-59-air-strike-mp098/index.json b/site/public/v1/games/tiger-tank-59-air-strike-mp098/index.json new file mode 100644 index 000000000000..351b07769abc --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-air-strike-mp098/index.json @@ -0,0 +1,31 @@ +{ + "id": 155877, + "slug": "tiger-tank-59-air-strike-mp098", + "name": "Tiger Tank 59 Ⅰ Air Strike MP098", + "release_date": "2021-06-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183742" + ], + "created_at": "2026-07-10T10:10:46.957371", + "updated_at": "2026-07-10T10:10:46.957371", + "url": "/v1/games/tiger-tank-59-air-strike-mp098" +} diff --git a/site/public/v1/games/tiger-tank-59-air-strike-mp099/index.json b/site/public/v1/games/tiger-tank-59-air-strike-mp099/index.json new file mode 100644 index 000000000000..2487bf3279fa --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-air-strike-mp099/index.json @@ -0,0 +1,31 @@ +{ + "id": 155878, + "slug": "tiger-tank-59-air-strike-mp099", + "name": "Tiger Tank 59 Ⅰ Air Strike MP099", + "release_date": "2021-06-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183744" + ], + "created_at": "2026-07-10T10:10:46.958371", + "updated_at": "2026-07-10T10:10:46.958371", + "url": "/v1/games/tiger-tank-59-air-strike-mp099" +} diff --git a/site/public/v1/games/tiger-tank-59-air-strike-mp100/index.json b/site/public/v1/games/tiger-tank-59-air-strike-mp100/index.json new file mode 100644 index 000000000000..92431c094867 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-air-strike-mp100/index.json @@ -0,0 +1,31 @@ +{ + "id": 155879, + "slug": "tiger-tank-59-air-strike-mp100", + "name": "Tiger Tank 59 Ⅰ Air Strike MP100", + "release_date": "2021-06-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183746" + ], + "created_at": "2026-07-10T10:10:46.958371", + "updated_at": "2026-07-10T10:10:46.958371", + "url": "/v1/games/tiger-tank-59-air-strike-mp100" +} diff --git a/site/public/v1/games/tiger-tank-59-battleship-mp001/index.json b/site/public/v1/games/tiger-tank-59-battleship-mp001/index.json new file mode 100644 index 000000000000..111f9bdfd6c5 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-battleship-mp001/index.json @@ -0,0 +1,31 @@ +{ + "id": 155881, + "slug": "tiger-tank-59-battleship-mp001", + "name": "Tiger Tank 59 Ⅰ Battleship MP001", + "release_date": "2021-06-30", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183747" + ], + "created_at": "2026-07-10T10:10:46.958371", + "updated_at": "2026-07-10T10:10:46.958371", + "url": "/v1/games/tiger-tank-59-battleship-mp001" +} diff --git a/site/public/v1/games/tiger-tank-59-battleship-mp002/index.json b/site/public/v1/games/tiger-tank-59-battleship-mp002/index.json new file mode 100644 index 000000000000..afd7ad03be7b --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-battleship-mp002/index.json @@ -0,0 +1,31 @@ +{ + "id": 155882, + "slug": "tiger-tank-59-battleship-mp002", + "name": "Tiger Tank 59 Ⅰ Battleship MP002", + "release_date": "2021-06-30", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183751" + ], + "created_at": "2026-07-10T10:10:46.958371", + "updated_at": "2026-07-10T10:10:46.958371", + "url": "/v1/games/tiger-tank-59-battleship-mp002" +} diff --git a/site/public/v1/games/tiger-tank-59-battleship-mp003/index.json b/site/public/v1/games/tiger-tank-59-battleship-mp003/index.json new file mode 100644 index 000000000000..d26072d9482a --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-battleship-mp003/index.json @@ -0,0 +1,31 @@ +{ + "id": 155883, + "slug": "tiger-tank-59-battleship-mp003", + "name": "Tiger Tank 59 Ⅰ Battleship MP003", + "release_date": "2021-06-30", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183753" + ], + "created_at": "2026-07-10T10:10:46.959370", + "updated_at": "2026-07-10T10:10:46.959370", + "url": "/v1/games/tiger-tank-59-battleship-mp003" +} diff --git a/site/public/v1/games/tiger-tank-59-battleship-mp004/index.json b/site/public/v1/games/tiger-tank-59-battleship-mp004/index.json new file mode 100644 index 000000000000..9472d98ac868 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-battleship-mp004/index.json @@ -0,0 +1,31 @@ +{ + "id": 155884, + "slug": "tiger-tank-59-battleship-mp004", + "name": "Tiger Tank 59 Ⅰ Battleship MP004", + "release_date": "2021-06-30", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183755" + ], + "created_at": "2026-07-10T10:10:46.959370", + "updated_at": "2026-07-10T10:10:46.959370", + "url": "/v1/games/tiger-tank-59-battleship-mp004" +} diff --git a/site/public/v1/games/tiger-tank-59-battleship-mp005/index.json b/site/public/v1/games/tiger-tank-59-battleship-mp005/index.json new file mode 100644 index 000000000000..0ef32b923a53 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-battleship-mp005/index.json @@ -0,0 +1,31 @@ +{ + "id": 155885, + "slug": "tiger-tank-59-battleship-mp005", + "name": "Tiger Tank 59 Ⅰ Battleship MP005", + "release_date": "2021-06-30", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183760" + ], + "created_at": "2026-07-10T10:10:46.959370", + "updated_at": "2026-07-10T10:10:46.959370", + "url": "/v1/games/tiger-tank-59-battleship-mp005" +} diff --git a/site/public/v1/games/tiger-tank-59-battleship-mp006/index.json b/site/public/v1/games/tiger-tank-59-battleship-mp006/index.json new file mode 100644 index 000000000000..023a9d3c9a7a --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-battleship-mp006/index.json @@ -0,0 +1,31 @@ +{ + "id": 155886, + "slug": "tiger-tank-59-battleship-mp006", + "name": "Tiger Tank 59 Ⅰ Battleship MP006", + "release_date": "2021-06-30", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183761" + ], + "created_at": "2026-07-10T10:10:46.959370", + "updated_at": "2026-07-10T10:10:46.959370", + "url": "/v1/games/tiger-tank-59-battleship-mp006" +} diff --git a/site/public/v1/games/tiger-tank-59-battleship-mp007/index.json b/site/public/v1/games/tiger-tank-59-battleship-mp007/index.json new file mode 100644 index 000000000000..12c5ba6674d7 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-battleship-mp007/index.json @@ -0,0 +1,31 @@ +{ + "id": 155887, + "slug": "tiger-tank-59-battleship-mp007", + "name": "Tiger Tank 59 Ⅰ Battleship MP007", + "release_date": "2021-06-30", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183764" + ], + "created_at": "2026-07-10T10:10:46.959370", + "updated_at": "2026-07-10T10:10:46.959370", + "url": "/v1/games/tiger-tank-59-battleship-mp007" +} diff --git a/site/public/v1/games/tiger-tank-59-battleship-mp008/index.json b/site/public/v1/games/tiger-tank-59-battleship-mp008/index.json new file mode 100644 index 000000000000..867645e89a2b --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-battleship-mp008/index.json @@ -0,0 +1,31 @@ +{ + "id": 155888, + "slug": "tiger-tank-59-battleship-mp008", + "name": "Tiger Tank 59 Ⅰ Battleship MP008", + "release_date": "2021-06-30", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183766" + ], + "created_at": "2026-07-10T10:10:46.960370", + "updated_at": "2026-07-10T10:10:46.960370", + "url": "/v1/games/tiger-tank-59-battleship-mp008" +} diff --git a/site/public/v1/games/tiger-tank-59-battleship-mp009/index.json b/site/public/v1/games/tiger-tank-59-battleship-mp009/index.json new file mode 100644 index 000000000000..a046907f480c --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-battleship-mp009/index.json @@ -0,0 +1,31 @@ +{ + "id": 155889, + "slug": "tiger-tank-59-battleship-mp009", + "name": "Tiger Tank 59 Ⅰ Battleship MP009", + "release_date": "2021-06-30", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183769" + ], + "created_at": "2026-07-10T10:10:46.960370", + "updated_at": "2026-07-10T10:10:46.960370", + "url": "/v1/games/tiger-tank-59-battleship-mp009" +} diff --git a/site/public/v1/games/tiger-tank-59-battleship-mp010/index.json b/site/public/v1/games/tiger-tank-59-battleship-mp010/index.json new file mode 100644 index 000000000000..bdbfb99e537f --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-battleship-mp010/index.json @@ -0,0 +1,31 @@ +{ + "id": 155890, + "slug": "tiger-tank-59-battleship-mp010", + "name": "Tiger Tank 59 Ⅰ Battleship MP010", + "release_date": "2021-06-30", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183772" + ], + "created_at": "2026-07-10T10:10:46.960370", + "updated_at": "2026-07-10T10:10:46.960370", + "url": "/v1/games/tiger-tank-59-battleship-mp010" +} diff --git a/site/public/v1/games/tiger-tank-59-battleship-mp011/index.json b/site/public/v1/games/tiger-tank-59-battleship-mp011/index.json new file mode 100644 index 000000000000..f8055d0ac4c4 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-battleship-mp011/index.json @@ -0,0 +1,31 @@ +{ + "id": 155891, + "slug": "tiger-tank-59-battleship-mp011", + "name": "Tiger Tank 59 Ⅰ Battleship MP011", + "release_date": "2021-06-30", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183774" + ], + "created_at": "2026-07-10T10:10:46.960370", + "updated_at": "2026-07-10T10:10:46.960370", + "url": "/v1/games/tiger-tank-59-battleship-mp011" +} diff --git a/site/public/v1/games/tiger-tank-59-battleship-mp012/index.json b/site/public/v1/games/tiger-tank-59-battleship-mp012/index.json new file mode 100644 index 000000000000..da52fc55fdd3 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-battleship-mp012/index.json @@ -0,0 +1,31 @@ +{ + "id": 155892, + "slug": "tiger-tank-59-battleship-mp012", + "name": "Tiger Tank 59 Ⅰ Battleship MP012", + "release_date": "2021-06-30", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183776" + ], + "created_at": "2026-07-10T10:10:46.961370", + "updated_at": "2026-07-10T10:10:46.961370", + "url": "/v1/games/tiger-tank-59-battleship-mp012" +} diff --git a/site/public/v1/games/tiger-tank-59-battleship-mp013/index.json b/site/public/v1/games/tiger-tank-59-battleship-mp013/index.json new file mode 100644 index 000000000000..7b6de470289e --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-battleship-mp013/index.json @@ -0,0 +1,31 @@ +{ + "id": 155893, + "slug": "tiger-tank-59-battleship-mp013", + "name": "Tiger Tank 59 Ⅰ Battleship MP013", + "release_date": "2021-06-30", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183777" + ], + "created_at": "2026-07-10T10:10:46.961370", + "updated_at": "2026-07-10T10:10:46.961370", + "url": "/v1/games/tiger-tank-59-battleship-mp013" +} diff --git a/site/public/v1/games/tiger-tank-59-battleship-mp014/index.json b/site/public/v1/games/tiger-tank-59-battleship-mp014/index.json new file mode 100644 index 000000000000..5e9a8f405058 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-battleship-mp014/index.json @@ -0,0 +1,31 @@ +{ + "id": 155894, + "slug": "tiger-tank-59-battleship-mp014", + "name": "Tiger Tank 59 Ⅰ Battleship MP014", + "release_date": "2021-06-30", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183780" + ], + "created_at": "2026-07-10T10:10:46.961370", + "updated_at": "2026-07-10T10:10:46.961370", + "url": "/v1/games/tiger-tank-59-battleship-mp014" +} diff --git a/site/public/v1/games/tiger-tank-59-battleship-mp015/index.json b/site/public/v1/games/tiger-tank-59-battleship-mp015/index.json new file mode 100644 index 000000000000..d3ab1947a768 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-battleship-mp015/index.json @@ -0,0 +1,31 @@ +{ + "id": 155895, + "slug": "tiger-tank-59-battleship-mp015", + "name": "Tiger Tank 59 Ⅰ Battleship MP015", + "release_date": "2021-06-30", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183781" + ], + "created_at": "2026-07-10T10:10:46.961370", + "updated_at": "2026-07-10T10:10:46.961370", + "url": "/v1/games/tiger-tank-59-battleship-mp015" +} diff --git a/site/public/v1/games/tiger-tank-59-battleship-mp016/index.json b/site/public/v1/games/tiger-tank-59-battleship-mp016/index.json new file mode 100644 index 000000000000..4560217573f9 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-battleship-mp016/index.json @@ -0,0 +1,31 @@ +{ + "id": 155896, + "slug": "tiger-tank-59-battleship-mp016", + "name": "Tiger Tank 59 Ⅰ Battleship MP016", + "release_date": "2021-06-30", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183784" + ], + "created_at": "2026-07-10T10:10:46.961370", + "updated_at": "2026-07-10T10:10:46.961370", + "url": "/v1/games/tiger-tank-59-battleship-mp016" +} diff --git a/site/public/v1/games/tiger-tank-59-battleship-mp017/index.json b/site/public/v1/games/tiger-tank-59-battleship-mp017/index.json new file mode 100644 index 000000000000..2ef7f2a30660 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-battleship-mp017/index.json @@ -0,0 +1,31 @@ +{ + "id": 155897, + "slug": "tiger-tank-59-battleship-mp017", + "name": "Tiger Tank 59 Ⅰ Battleship MP017", + "release_date": "2021-06-30", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183786" + ], + "created_at": "2026-07-10T10:10:46.962370", + "updated_at": "2026-07-10T10:10:46.962370", + "url": "/v1/games/tiger-tank-59-battleship-mp017" +} diff --git a/site/public/v1/games/tiger-tank-59-battleship-mp018/index.json b/site/public/v1/games/tiger-tank-59-battleship-mp018/index.json new file mode 100644 index 000000000000..7f9df1837d59 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-battleship-mp018/index.json @@ -0,0 +1,31 @@ +{ + "id": 155898, + "slug": "tiger-tank-59-battleship-mp018", + "name": "Tiger Tank 59 Ⅰ Battleship MP018", + "release_date": "2021-06-30", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183787" + ], + "created_at": "2026-07-10T10:10:46.962370", + "updated_at": "2026-07-10T10:10:46.962370", + "url": "/v1/games/tiger-tank-59-battleship-mp018" +} diff --git a/site/public/v1/games/tiger-tank-59-battleship-mp019/index.json b/site/public/v1/games/tiger-tank-59-battleship-mp019/index.json new file mode 100644 index 000000000000..1c1b29e51211 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-battleship-mp019/index.json @@ -0,0 +1,31 @@ +{ + "id": 155899, + "slug": "tiger-tank-59-battleship-mp019", + "name": "Tiger Tank 59 Ⅰ Battleship MP019", + "release_date": "2021-06-30", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183789" + ], + "created_at": "2026-07-10T10:10:46.962370", + "updated_at": "2026-07-10T10:10:46.962370", + "url": "/v1/games/tiger-tank-59-battleship-mp019" +} diff --git a/site/public/v1/games/tiger-tank-59-battleship-mp020/index.json b/site/public/v1/games/tiger-tank-59-battleship-mp020/index.json new file mode 100644 index 000000000000..e1794d7d5898 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-battleship-mp020/index.json @@ -0,0 +1,31 @@ +{ + "id": 155900, + "slug": "tiger-tank-59-battleship-mp020", + "name": "Tiger Tank 59 Ⅰ Battleship MP020", + "release_date": "2021-06-30", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183791" + ], + "created_at": "2026-07-10T10:10:46.963370", + "updated_at": "2026-07-10T10:10:46.963370", + "url": "/v1/games/tiger-tank-59-battleship-mp020" +} diff --git a/site/public/v1/games/tiger-tank-59-battleship-mp021/index.json b/site/public/v1/games/tiger-tank-59-battleship-mp021/index.json new file mode 100644 index 000000000000..ae4b30e8babc --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-battleship-mp021/index.json @@ -0,0 +1,31 @@ +{ + "id": 155901, + "slug": "tiger-tank-59-battleship-mp021", + "name": "Tiger Tank 59 Ⅰ Battleship MP021", + "release_date": "2021-06-30", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183792" + ], + "created_at": "2026-07-10T10:10:46.963370", + "updated_at": "2026-07-10T10:10:46.963370", + "url": "/v1/games/tiger-tank-59-battleship-mp021" +} diff --git a/site/public/v1/games/tiger-tank-59-battleship-mp022/index.json b/site/public/v1/games/tiger-tank-59-battleship-mp022/index.json new file mode 100644 index 000000000000..476c5d2fe35e --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-battleship-mp022/index.json @@ -0,0 +1,31 @@ +{ + "id": 155902, + "slug": "tiger-tank-59-battleship-mp022", + "name": "Tiger Tank 59 Ⅰ Battleship MP022", + "release_date": "2021-06-30", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183793" + ], + "created_at": "2026-07-10T10:10:46.963370", + "updated_at": "2026-07-10T10:10:46.963370", + "url": "/v1/games/tiger-tank-59-battleship-mp022" +} diff --git a/site/public/v1/games/tiger-tank-59-battleship-mp023/index.json b/site/public/v1/games/tiger-tank-59-battleship-mp023/index.json new file mode 100644 index 000000000000..ab4af8093d0d --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-battleship-mp023/index.json @@ -0,0 +1,31 @@ +{ + "id": 155903, + "slug": "tiger-tank-59-battleship-mp023", + "name": "Tiger Tank 59 Ⅰ Battleship MP023", + "release_date": "2021-06-30", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183794" + ], + "created_at": "2026-07-10T10:10:46.963370", + "updated_at": "2026-07-10T10:10:46.963370", + "url": "/v1/games/tiger-tank-59-battleship-mp023" +} diff --git a/site/public/v1/games/tiger-tank-59-battleship-mp024/index.json b/site/public/v1/games/tiger-tank-59-battleship-mp024/index.json new file mode 100644 index 000000000000..b696a64c6b7e --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-battleship-mp024/index.json @@ -0,0 +1,31 @@ +{ + "id": 155904, + "slug": "tiger-tank-59-battleship-mp024", + "name": "Tiger Tank 59 Ⅰ Battleship MP024", + "release_date": "2021-06-30", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183795" + ], + "created_at": "2026-07-10T10:10:46.963370", + "updated_at": "2026-07-10T10:10:46.963370", + "url": "/v1/games/tiger-tank-59-battleship-mp024" +} diff --git a/site/public/v1/games/tiger-tank-59-battleship-mp025/index.json b/site/public/v1/games/tiger-tank-59-battleship-mp025/index.json new file mode 100644 index 000000000000..43edd861db2c --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-battleship-mp025/index.json @@ -0,0 +1,31 @@ +{ + "id": 155905, + "slug": "tiger-tank-59-battleship-mp025", + "name": "Tiger Tank 59 Ⅰ Battleship MP025", + "release_date": "2021-06-30", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183796" + ], + "created_at": "2026-07-10T10:10:46.964374", + "updated_at": "2026-07-10T10:10:46.964374", + "url": "/v1/games/tiger-tank-59-battleship-mp025" +} diff --git a/site/public/v1/games/tiger-tank-59-battleship-mp026/index.json b/site/public/v1/games/tiger-tank-59-battleship-mp026/index.json new file mode 100644 index 000000000000..26f3c6cdecbb --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-battleship-mp026/index.json @@ -0,0 +1,31 @@ +{ + "id": 155906, + "slug": "tiger-tank-59-battleship-mp026", + "name": "Tiger Tank 59 Ⅰ Battleship MP026", + "release_date": "2021-06-30", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183799" + ], + "created_at": "2026-07-10T10:10:46.964374", + "updated_at": "2026-07-10T10:10:46.964374", + "url": "/v1/games/tiger-tank-59-battleship-mp026" +} diff --git a/site/public/v1/games/tiger-tank-59-battleship-mp027/index.json b/site/public/v1/games/tiger-tank-59-battleship-mp027/index.json new file mode 100644 index 000000000000..8c49d76d9380 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-battleship-mp027/index.json @@ -0,0 +1,31 @@ +{ + "id": 155907, + "slug": "tiger-tank-59-battleship-mp027", + "name": "Tiger Tank 59 Ⅰ Battleship MP027", + "release_date": "2021-06-30", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183802" + ], + "created_at": "2026-07-10T10:10:46.964374", + "updated_at": "2026-07-10T10:10:46.964374", + "url": "/v1/games/tiger-tank-59-battleship-mp027" +} diff --git a/site/public/v1/games/tiger-tank-59-battleship-mp028/index.json b/site/public/v1/games/tiger-tank-59-battleship-mp028/index.json new file mode 100644 index 000000000000..34c69306f4b2 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-battleship-mp028/index.json @@ -0,0 +1,31 @@ +{ + "id": 155908, + "slug": "tiger-tank-59-battleship-mp028", + "name": "Tiger Tank 59 Ⅰ Battleship MP028", + "release_date": "2021-06-30", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183804" + ], + "created_at": "2026-07-10T10:10:46.964374", + "updated_at": "2026-07-10T10:10:46.964374", + "url": "/v1/games/tiger-tank-59-battleship-mp028" +} diff --git a/site/public/v1/games/tiger-tank-59-battleship-mp029/index.json b/site/public/v1/games/tiger-tank-59-battleship-mp029/index.json new file mode 100644 index 000000000000..8f6318c6f2fc --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-battleship-mp029/index.json @@ -0,0 +1,31 @@ +{ + "id": 155909, + "slug": "tiger-tank-59-battleship-mp029", + "name": "Tiger Tank 59 Ⅰ Battleship MP029", + "release_date": "2021-06-30", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183806" + ], + "created_at": "2026-07-10T10:10:46.964374", + "updated_at": "2026-07-10T10:10:46.964374", + "url": "/v1/games/tiger-tank-59-battleship-mp029" +} diff --git a/site/public/v1/games/tiger-tank-59-battleship-mp030/index.json b/site/public/v1/games/tiger-tank-59-battleship-mp030/index.json new file mode 100644 index 000000000000..608b4d46da89 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-battleship-mp030/index.json @@ -0,0 +1,31 @@ +{ + "id": 155910, + "slug": "tiger-tank-59-battleship-mp030", + "name": "Tiger Tank 59 Ⅰ Battleship MP030", + "release_date": "2021-06-30", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183807" + ], + "created_at": "2026-07-10T10:10:46.965373", + "updated_at": "2026-07-10T10:10:46.965373", + "url": "/v1/games/tiger-tank-59-battleship-mp030" +} diff --git a/site/public/v1/games/tiger-tank-59-battleship-mp031/index.json b/site/public/v1/games/tiger-tank-59-battleship-mp031/index.json new file mode 100644 index 000000000000..fa12688e1124 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-battleship-mp031/index.json @@ -0,0 +1,31 @@ +{ + "id": 155911, + "slug": "tiger-tank-59-battleship-mp031", + "name": "Tiger Tank 59 Ⅰ Battleship MP031", + "release_date": "2021-06-30", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183809" + ], + "created_at": "2026-07-10T10:10:46.965373", + "updated_at": "2026-07-10T10:10:46.965373", + "url": "/v1/games/tiger-tank-59-battleship-mp031" +} diff --git a/site/public/v1/games/tiger-tank-59-battleship-mp032/index.json b/site/public/v1/games/tiger-tank-59-battleship-mp032/index.json new file mode 100644 index 000000000000..1d9abb8dfb76 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-battleship-mp032/index.json @@ -0,0 +1,31 @@ +{ + "id": 155912, + "slug": "tiger-tank-59-battleship-mp032", + "name": "Tiger Tank 59 Ⅰ Battleship MP032", + "release_date": "2021-06-30", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183810" + ], + "created_at": "2026-07-10T10:10:46.965373", + "updated_at": "2026-07-10T10:10:46.965373", + "url": "/v1/games/tiger-tank-59-battleship-mp032" +} diff --git a/site/public/v1/games/tiger-tank-59-battleship-mp033/index.json b/site/public/v1/games/tiger-tank-59-battleship-mp033/index.json new file mode 100644 index 000000000000..a46b6407dfc3 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-battleship-mp033/index.json @@ -0,0 +1,31 @@ +{ + "id": 155913, + "slug": "tiger-tank-59-battleship-mp033", + "name": "Tiger Tank 59 Ⅰ Battleship MP033", + "release_date": "2021-06-30", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183811" + ], + "created_at": "2026-07-10T10:10:46.965373", + "updated_at": "2026-07-10T10:10:46.965373", + "url": "/v1/games/tiger-tank-59-battleship-mp033" +} diff --git a/site/public/v1/games/tiger-tank-59-battleship-mp034/index.json b/site/public/v1/games/tiger-tank-59-battleship-mp034/index.json new file mode 100644 index 000000000000..c1cdb73b9f08 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-battleship-mp034/index.json @@ -0,0 +1,31 @@ +{ + "id": 155914, + "slug": "tiger-tank-59-battleship-mp034", + "name": "Tiger Tank 59 Ⅰ Battleship MP034", + "release_date": "2021-06-30", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183812" + ], + "created_at": "2026-07-10T10:10:46.966373", + "updated_at": "2026-07-10T10:10:46.966373", + "url": "/v1/games/tiger-tank-59-battleship-mp034" +} diff --git a/site/public/v1/games/tiger-tank-59-battleship-mp035/index.json b/site/public/v1/games/tiger-tank-59-battleship-mp035/index.json new file mode 100644 index 000000000000..a90d3a5e6921 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-battleship-mp035/index.json @@ -0,0 +1,31 @@ +{ + "id": 155915, + "slug": "tiger-tank-59-battleship-mp035", + "name": "Tiger Tank 59 Ⅰ Battleship MP035", + "release_date": "2021-06-30", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183814" + ], + "created_at": "2026-07-10T10:10:46.966373", + "updated_at": "2026-07-10T10:10:46.966373", + "url": "/v1/games/tiger-tank-59-battleship-mp035" +} diff --git a/site/public/v1/games/tiger-tank-59-battleship-mp036/index.json b/site/public/v1/games/tiger-tank-59-battleship-mp036/index.json new file mode 100644 index 000000000000..e8f82e799661 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-battleship-mp036/index.json @@ -0,0 +1,31 @@ +{ + "id": 155916, + "slug": "tiger-tank-59-battleship-mp036", + "name": "Tiger Tank 59 Ⅰ Battleship MP036", + "release_date": "2021-06-30", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183815" + ], + "created_at": "2026-07-10T10:10:46.966373", + "updated_at": "2026-07-10T10:10:46.966373", + "url": "/v1/games/tiger-tank-59-battleship-mp036" +} diff --git a/site/public/v1/games/tiger-tank-59-battleship-mp037/index.json b/site/public/v1/games/tiger-tank-59-battleship-mp037/index.json new file mode 100644 index 000000000000..34d95b766bfc --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-battleship-mp037/index.json @@ -0,0 +1,31 @@ +{ + "id": 155917, + "slug": "tiger-tank-59-battleship-mp037", + "name": "Tiger Tank 59 Ⅰ Battleship MP037", + "release_date": "2021-06-30", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183816" + ], + "created_at": "2026-07-10T10:10:46.966373", + "updated_at": "2026-07-10T10:10:46.966373", + "url": "/v1/games/tiger-tank-59-battleship-mp037" +} diff --git a/site/public/v1/games/tiger-tank-59-battleship-mp038/index.json b/site/public/v1/games/tiger-tank-59-battleship-mp038/index.json new file mode 100644 index 000000000000..c2c31a6719e7 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-battleship-mp038/index.json @@ -0,0 +1,31 @@ +{ + "id": 155918, + "slug": "tiger-tank-59-battleship-mp038", + "name": "Tiger Tank 59 Ⅰ Battleship MP038", + "release_date": "2021-06-30", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183820" + ], + "created_at": "2026-07-10T10:10:46.966373", + "updated_at": "2026-07-10T10:10:46.966373", + "url": "/v1/games/tiger-tank-59-battleship-mp038" +} diff --git a/site/public/v1/games/tiger-tank-59-battleship-mp039/index.json b/site/public/v1/games/tiger-tank-59-battleship-mp039/index.json new file mode 100644 index 000000000000..bd0cf0037645 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-battleship-mp039/index.json @@ -0,0 +1,31 @@ +{ + "id": 155919, + "slug": "tiger-tank-59-battleship-mp039", + "name": "Tiger Tank 59 Ⅰ Battleship MP039", + "release_date": "2021-06-30", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183824" + ], + "created_at": "2026-07-10T10:10:46.967373", + "updated_at": "2026-07-10T10:10:46.967373", + "url": "/v1/games/tiger-tank-59-battleship-mp039" +} diff --git a/site/public/v1/games/tiger-tank-59-battleship-mp040/index.json b/site/public/v1/games/tiger-tank-59-battleship-mp040/index.json new file mode 100644 index 000000000000..90c2ec68e6b9 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-battleship-mp040/index.json @@ -0,0 +1,31 @@ +{ + "id": 155920, + "slug": "tiger-tank-59-battleship-mp040", + "name": "Tiger Tank 59 Ⅰ Battleship MP040", + "release_date": "2021-06-30", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183827" + ], + "created_at": "2026-07-10T10:10:46.967373", + "updated_at": "2026-07-10T10:10:46.967373", + "url": "/v1/games/tiger-tank-59-battleship-mp040" +} diff --git a/site/public/v1/games/tiger-tank-59-battleship-mp041/index.json b/site/public/v1/games/tiger-tank-59-battleship-mp041/index.json new file mode 100644 index 000000000000..2ec41e6db096 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-battleship-mp041/index.json @@ -0,0 +1,31 @@ +{ + "id": 155921, + "slug": "tiger-tank-59-battleship-mp041", + "name": "Tiger Tank 59 Ⅰ Battleship MP041", + "release_date": "2021-06-30", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183835" + ], + "created_at": "2026-07-10T10:10:46.967373", + "updated_at": "2026-07-10T10:10:46.967373", + "url": "/v1/games/tiger-tank-59-battleship-mp041" +} diff --git a/site/public/v1/games/tiger-tank-59-battleship-mp042/index.json b/site/public/v1/games/tiger-tank-59-battleship-mp042/index.json new file mode 100644 index 000000000000..df399b643db2 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-battleship-mp042/index.json @@ -0,0 +1,31 @@ +{ + "id": 155922, + "slug": "tiger-tank-59-battleship-mp042", + "name": "Tiger Tank 59 Ⅰ Battleship MP042", + "release_date": "2021-06-30", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183840" + ], + "created_at": "2026-07-10T10:10:46.967373", + "updated_at": "2026-07-10T10:10:46.967373", + "url": "/v1/games/tiger-tank-59-battleship-mp042" +} diff --git a/site/public/v1/games/tiger-tank-59-battleship-mp043/index.json b/site/public/v1/games/tiger-tank-59-battleship-mp043/index.json new file mode 100644 index 000000000000..a887922c0783 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-battleship-mp043/index.json @@ -0,0 +1,31 @@ +{ + "id": 155923, + "slug": "tiger-tank-59-battleship-mp043", + "name": "Tiger Tank 59 Ⅰ Battleship MP043", + "release_date": "2021-06-30", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183842" + ], + "created_at": "2026-07-10T10:10:46.968373", + "updated_at": "2026-07-10T10:10:46.968373", + "url": "/v1/games/tiger-tank-59-battleship-mp043" +} diff --git a/site/public/v1/games/tiger-tank-59-battleship-mp044/index.json b/site/public/v1/games/tiger-tank-59-battleship-mp044/index.json new file mode 100644 index 000000000000..67849fbf7bda --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-battleship-mp044/index.json @@ -0,0 +1,31 @@ +{ + "id": 155924, + "slug": "tiger-tank-59-battleship-mp044", + "name": "Tiger Tank 59 Ⅰ Battleship MP044", + "release_date": "2021-06-30", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183843" + ], + "created_at": "2026-07-10T10:10:46.968373", + "updated_at": "2026-07-10T10:10:46.968373", + "url": "/v1/games/tiger-tank-59-battleship-mp044" +} diff --git a/site/public/v1/games/tiger-tank-59-battleship-mp045/index.json b/site/public/v1/games/tiger-tank-59-battleship-mp045/index.json new file mode 100644 index 000000000000..bfba5958af70 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-battleship-mp045/index.json @@ -0,0 +1,31 @@ +{ + "id": 155925, + "slug": "tiger-tank-59-battleship-mp045", + "name": "Tiger Tank 59 Ⅰ Battleship MP045", + "release_date": "2021-06-30", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183844" + ], + "created_at": "2026-07-10T10:10:46.968373", + "updated_at": "2026-07-10T10:10:46.968373", + "url": "/v1/games/tiger-tank-59-battleship-mp045" +} diff --git a/site/public/v1/games/tiger-tank-59-battleship-mp046/index.json b/site/public/v1/games/tiger-tank-59-battleship-mp046/index.json new file mode 100644 index 000000000000..5662356e5a57 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-battleship-mp046/index.json @@ -0,0 +1,31 @@ +{ + "id": 155926, + "slug": "tiger-tank-59-battleship-mp046", + "name": "Tiger Tank 59 Ⅰ Battleship MP046", + "release_date": "2021-06-30", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183845" + ], + "created_at": "2026-07-10T10:10:46.968373", + "updated_at": "2026-07-10T10:10:46.968373", + "url": "/v1/games/tiger-tank-59-battleship-mp046" +} diff --git a/site/public/v1/games/tiger-tank-59-battleship-mp047/index.json b/site/public/v1/games/tiger-tank-59-battleship-mp047/index.json new file mode 100644 index 000000000000..51284a1bcf18 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-battleship-mp047/index.json @@ -0,0 +1,31 @@ +{ + "id": 155927, + "slug": "tiger-tank-59-battleship-mp047", + "name": "Tiger Tank 59 Ⅰ Battleship MP047", + "release_date": "2021-06-30", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183849" + ], + "created_at": "2026-07-10T10:10:46.969373", + "updated_at": "2026-07-10T10:10:46.969373", + "url": "/v1/games/tiger-tank-59-battleship-mp047" +} diff --git a/site/public/v1/games/tiger-tank-59-battleship-mp048/index.json b/site/public/v1/games/tiger-tank-59-battleship-mp048/index.json new file mode 100644 index 000000000000..10015a826b9c --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-battleship-mp048/index.json @@ -0,0 +1,31 @@ +{ + "id": 155928, + "slug": "tiger-tank-59-battleship-mp048", + "name": "Tiger Tank 59 Ⅰ Battleship MP048", + "release_date": "2021-06-30", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183852" + ], + "created_at": "2026-07-10T10:10:46.969373", + "updated_at": "2026-07-10T10:10:46.969373", + "url": "/v1/games/tiger-tank-59-battleship-mp048" +} diff --git a/site/public/v1/games/tiger-tank-59-battleship-mp049/index.json b/site/public/v1/games/tiger-tank-59-battleship-mp049/index.json new file mode 100644 index 000000000000..afb83152379e --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-battleship-mp049/index.json @@ -0,0 +1,31 @@ +{ + "id": 155929, + "slug": "tiger-tank-59-battleship-mp049", + "name": "Tiger Tank 59 Ⅰ Battleship MP049", + "release_date": "2021-06-30", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183854" + ], + "created_at": "2026-07-10T10:10:46.969373", + "updated_at": "2026-07-10T10:10:46.969373", + "url": "/v1/games/tiger-tank-59-battleship-mp049" +} diff --git a/site/public/v1/games/tiger-tank-59-battleship-mp050/index.json b/site/public/v1/games/tiger-tank-59-battleship-mp050/index.json new file mode 100644 index 000000000000..590419992fb4 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-battleship-mp050/index.json @@ -0,0 +1,31 @@ +{ + "id": 155930, + "slug": "tiger-tank-59-battleship-mp050", + "name": "Tiger Tank 59 Ⅰ Battleship MP050", + "release_date": "2021-06-30", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183856" + ], + "created_at": "2026-07-10T10:10:46.969373", + "updated_at": "2026-07-10T10:10:46.969373", + "url": "/v1/games/tiger-tank-59-battleship-mp050" +} diff --git a/site/public/v1/games/tiger-tank-59-battleship-mp051/index.json b/site/public/v1/games/tiger-tank-59-battleship-mp051/index.json new file mode 100644 index 000000000000..ede834a752b6 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-battleship-mp051/index.json @@ -0,0 +1,31 @@ +{ + "id": 155931, + "slug": "tiger-tank-59-battleship-mp051", + "name": "Tiger Tank 59 Ⅰ Battleship MP051", + "release_date": "2021-07-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183859" + ], + "created_at": "2026-07-10T10:10:46.969373", + "updated_at": "2026-07-10T10:10:46.969373", + "url": "/v1/games/tiger-tank-59-battleship-mp051" +} diff --git a/site/public/v1/games/tiger-tank-59-battleship-mp052/index.json b/site/public/v1/games/tiger-tank-59-battleship-mp052/index.json new file mode 100644 index 000000000000..268c6ff5ab7e --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-battleship-mp052/index.json @@ -0,0 +1,31 @@ +{ + "id": 155932, + "slug": "tiger-tank-59-battleship-mp052", + "name": "Tiger Tank 59 Ⅰ Battleship MP052", + "release_date": "2021-07-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183860" + ], + "created_at": "2026-07-10T10:10:46.970373", + "updated_at": "2026-07-10T10:10:46.970373", + "url": "/v1/games/tiger-tank-59-battleship-mp052" +} diff --git a/site/public/v1/games/tiger-tank-59-battleship-mp053/index.json b/site/public/v1/games/tiger-tank-59-battleship-mp053/index.json new file mode 100644 index 000000000000..ad0aedc0728b --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-battleship-mp053/index.json @@ -0,0 +1,31 @@ +{ + "id": 155933, + "slug": "tiger-tank-59-battleship-mp053", + "name": "Tiger Tank 59 Ⅰ Battleship MP053", + "release_date": "2021-07-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183866" + ], + "created_at": "2026-07-10T10:10:46.970373", + "updated_at": "2026-07-10T10:10:46.970373", + "url": "/v1/games/tiger-tank-59-battleship-mp053" +} diff --git a/site/public/v1/games/tiger-tank-59-battleship-mp054/index.json b/site/public/v1/games/tiger-tank-59-battleship-mp054/index.json new file mode 100644 index 000000000000..ce31d73a2812 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-battleship-mp054/index.json @@ -0,0 +1,31 @@ +{ + "id": 155934, + "slug": "tiger-tank-59-battleship-mp054", + "name": "Tiger Tank 59 Ⅰ Battleship MP054", + "release_date": "2021-07-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183871" + ], + "created_at": "2026-07-10T10:10:46.970373", + "updated_at": "2026-07-10T10:10:46.970373", + "url": "/v1/games/tiger-tank-59-battleship-mp054" +} diff --git a/site/public/v1/games/tiger-tank-59-battleship-mp055/index.json b/site/public/v1/games/tiger-tank-59-battleship-mp055/index.json new file mode 100644 index 000000000000..f4a939be1637 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-battleship-mp055/index.json @@ -0,0 +1,31 @@ +{ + "id": 155935, + "slug": "tiger-tank-59-battleship-mp055", + "name": "Tiger Tank 59 Ⅰ Battleship MP055", + "release_date": "2021-07-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183873" + ], + "created_at": "2026-07-10T10:10:46.970373", + "updated_at": "2026-07-10T10:10:46.970373", + "url": "/v1/games/tiger-tank-59-battleship-mp055" +} diff --git a/site/public/v1/games/tiger-tank-59-battleship-mp056/index.json b/site/public/v1/games/tiger-tank-59-battleship-mp056/index.json new file mode 100644 index 000000000000..6ee5c6e6e411 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-battleship-mp056/index.json @@ -0,0 +1,31 @@ +{ + "id": 155936, + "slug": "tiger-tank-59-battleship-mp056", + "name": "Tiger Tank 59 Ⅰ Battleship MP056", + "release_date": "2021-07-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183875" + ], + "created_at": "2026-07-10T10:10:46.971373", + "updated_at": "2026-07-10T10:10:46.971373", + "url": "/v1/games/tiger-tank-59-battleship-mp056" +} diff --git a/site/public/v1/games/tiger-tank-59-battleship-mp057/index.json b/site/public/v1/games/tiger-tank-59-battleship-mp057/index.json new file mode 100644 index 000000000000..c773207ed53e --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-battleship-mp057/index.json @@ -0,0 +1,31 @@ +{ + "id": 155937, + "slug": "tiger-tank-59-battleship-mp057", + "name": "Tiger Tank 59 Ⅰ Battleship MP057", + "release_date": "2021-07-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183879" + ], + "created_at": "2026-07-10T10:10:46.971373", + "updated_at": "2026-07-10T10:10:46.971373", + "url": "/v1/games/tiger-tank-59-battleship-mp057" +} diff --git a/site/public/v1/games/tiger-tank-59-battleship-mp058/index.json b/site/public/v1/games/tiger-tank-59-battleship-mp058/index.json new file mode 100644 index 000000000000..ada59c2f15b0 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-battleship-mp058/index.json @@ -0,0 +1,31 @@ +{ + "id": 155938, + "slug": "tiger-tank-59-battleship-mp058", + "name": "Tiger Tank 59 Ⅰ Battleship MP058", + "release_date": "2021-07-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183887" + ], + "created_at": "2026-07-10T10:10:46.971373", + "updated_at": "2026-07-10T10:10:46.971373", + "url": "/v1/games/tiger-tank-59-battleship-mp058" +} diff --git a/site/public/v1/games/tiger-tank-59-battleship-mp059/index.json b/site/public/v1/games/tiger-tank-59-battleship-mp059/index.json new file mode 100644 index 000000000000..343d6956852e --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-battleship-mp059/index.json @@ -0,0 +1,31 @@ +{ + "id": 155939, + "slug": "tiger-tank-59-battleship-mp059", + "name": "Tiger Tank 59 Ⅰ Battleship MP059", + "release_date": "2021-07-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183888" + ], + "created_at": "2026-07-10T10:10:46.971373", + "updated_at": "2026-07-10T10:10:46.971373", + "url": "/v1/games/tiger-tank-59-battleship-mp059" +} diff --git a/site/public/v1/games/tiger-tank-59-battleship-mp060/index.json b/site/public/v1/games/tiger-tank-59-battleship-mp060/index.json new file mode 100644 index 000000000000..41cdd779dcee --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-battleship-mp060/index.json @@ -0,0 +1,31 @@ +{ + "id": 155940, + "slug": "tiger-tank-59-battleship-mp060", + "name": "Tiger Tank 59 Ⅰ Battleship MP060", + "release_date": "2021-07-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183891" + ], + "created_at": "2026-07-10T10:10:46.971373", + "updated_at": "2026-07-10T10:10:46.971373", + "url": "/v1/games/tiger-tank-59-battleship-mp060" +} diff --git a/site/public/v1/games/tiger-tank-59-battleship-mp061/index.json b/site/public/v1/games/tiger-tank-59-battleship-mp061/index.json new file mode 100644 index 000000000000..12d4c310e695 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-battleship-mp061/index.json @@ -0,0 +1,31 @@ +{ + "id": 155941, + "slug": "tiger-tank-59-battleship-mp061", + "name": "Tiger Tank 59 Ⅰ Battleship MP061", + "release_date": "2021-07-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183896" + ], + "created_at": "2026-07-10T10:10:46.972373", + "updated_at": "2026-07-10T10:10:46.972373", + "url": "/v1/games/tiger-tank-59-battleship-mp061" +} diff --git a/site/public/v1/games/tiger-tank-59-battleship-mp062/index.json b/site/public/v1/games/tiger-tank-59-battleship-mp062/index.json new file mode 100644 index 000000000000..2ac365650171 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-battleship-mp062/index.json @@ -0,0 +1,31 @@ +{ + "id": 155942, + "slug": "tiger-tank-59-battleship-mp062", + "name": "Tiger Tank 59 Ⅰ Battleship MP062", + "release_date": "2021-07-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183899" + ], + "created_at": "2026-07-10T10:10:46.972373", + "updated_at": "2026-07-10T10:10:46.972373", + "url": "/v1/games/tiger-tank-59-battleship-mp062" +} diff --git a/site/public/v1/games/tiger-tank-59-battleship-mp063/index.json b/site/public/v1/games/tiger-tank-59-battleship-mp063/index.json new file mode 100644 index 000000000000..2e0b8aa2d628 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-battleship-mp063/index.json @@ -0,0 +1,31 @@ +{ + "id": 155943, + "slug": "tiger-tank-59-battleship-mp063", + "name": "Tiger Tank 59 Ⅰ Battleship MP063", + "release_date": "2021-07-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183900" + ], + "created_at": "2026-07-10T10:10:46.972373", + "updated_at": "2026-07-10T10:10:46.972373", + "url": "/v1/games/tiger-tank-59-battleship-mp063" +} diff --git a/site/public/v1/games/tiger-tank-59-battleship-mp064/index.json b/site/public/v1/games/tiger-tank-59-battleship-mp064/index.json new file mode 100644 index 000000000000..21e2f3f563a0 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-battleship-mp064/index.json @@ -0,0 +1,31 @@ +{ + "id": 155944, + "slug": "tiger-tank-59-battleship-mp064", + "name": "Tiger Tank 59 Ⅰ Battleship MP064", + "release_date": "2021-07-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183903" + ], + "created_at": "2026-07-10T10:10:46.972373", + "updated_at": "2026-07-10T10:10:46.972373", + "url": "/v1/games/tiger-tank-59-battleship-mp064" +} diff --git a/site/public/v1/games/tiger-tank-59-battleship-mp065/index.json b/site/public/v1/games/tiger-tank-59-battleship-mp065/index.json new file mode 100644 index 000000000000..1bf3fa8aaf33 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-battleship-mp065/index.json @@ -0,0 +1,31 @@ +{ + "id": 155945, + "slug": "tiger-tank-59-battleship-mp065", + "name": "Tiger Tank 59 Ⅰ Battleship MP065", + "release_date": "2021-07-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183905" + ], + "created_at": "2026-07-10T10:10:46.973373", + "updated_at": "2026-07-10T10:10:46.973373", + "url": "/v1/games/tiger-tank-59-battleship-mp065" +} diff --git a/site/public/v1/games/tiger-tank-59-battleship-mp066/index.json b/site/public/v1/games/tiger-tank-59-battleship-mp066/index.json new file mode 100644 index 000000000000..1c2caafb211a --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-battleship-mp066/index.json @@ -0,0 +1,31 @@ +{ + "id": 155946, + "slug": "tiger-tank-59-battleship-mp066", + "name": "Tiger Tank 59 Ⅰ Battleship MP066", + "release_date": "2021-07-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183907" + ], + "created_at": "2026-07-10T10:10:46.973373", + "updated_at": "2026-07-10T10:10:46.973373", + "url": "/v1/games/tiger-tank-59-battleship-mp066" +} diff --git a/site/public/v1/games/tiger-tank-59-battleship-mp067/index.json b/site/public/v1/games/tiger-tank-59-battleship-mp067/index.json new file mode 100644 index 000000000000..577748e25223 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-battleship-mp067/index.json @@ -0,0 +1,31 @@ +{ + "id": 155947, + "slug": "tiger-tank-59-battleship-mp067", + "name": "Tiger Tank 59 Ⅰ Battleship MP067", + "release_date": "2021-07-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183909" + ], + "created_at": "2026-07-10T10:10:46.973373", + "updated_at": "2026-07-10T10:10:46.973373", + "url": "/v1/games/tiger-tank-59-battleship-mp067" +} diff --git a/site/public/v1/games/tiger-tank-59-battleship-mp068/index.json b/site/public/v1/games/tiger-tank-59-battleship-mp068/index.json new file mode 100644 index 000000000000..c5528533fa13 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-battleship-mp068/index.json @@ -0,0 +1,31 @@ +{ + "id": 155948, + "slug": "tiger-tank-59-battleship-mp068", + "name": "Tiger Tank 59 Ⅰ Battleship MP068", + "release_date": "2021-07-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183910" + ], + "created_at": "2026-07-10T10:10:46.973373", + "updated_at": "2026-07-10T10:10:46.973373", + "url": "/v1/games/tiger-tank-59-battleship-mp068" +} diff --git a/site/public/v1/games/tiger-tank-59-battleship-mp069/index.json b/site/public/v1/games/tiger-tank-59-battleship-mp069/index.json new file mode 100644 index 000000000000..fb0ba77690f4 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-battleship-mp069/index.json @@ -0,0 +1,31 @@ +{ + "id": 155949, + "slug": "tiger-tank-59-battleship-mp069", + "name": "Tiger Tank 59 Ⅰ Battleship MP069", + "release_date": "2021-07-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183912" + ], + "created_at": "2026-07-10T10:10:46.973373", + "updated_at": "2026-07-10T10:10:46.973373", + "url": "/v1/games/tiger-tank-59-battleship-mp069" +} diff --git a/site/public/v1/games/tiger-tank-59-battleship-mp070/index.json b/site/public/v1/games/tiger-tank-59-battleship-mp070/index.json new file mode 100644 index 000000000000..776b5d1c7c19 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-battleship-mp070/index.json @@ -0,0 +1,31 @@ +{ + "id": 155950, + "slug": "tiger-tank-59-battleship-mp070", + "name": "Tiger Tank 59 Ⅰ Battleship MP070", + "release_date": "2021-07-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183915" + ], + "created_at": "2026-07-10T10:10:46.974373", + "updated_at": "2026-07-10T10:10:46.974373", + "url": "/v1/games/tiger-tank-59-battleship-mp070" +} diff --git a/site/public/v1/games/tiger-tank-59-battleship-mp071/index.json b/site/public/v1/games/tiger-tank-59-battleship-mp071/index.json new file mode 100644 index 000000000000..5261c0bc2c43 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-battleship-mp071/index.json @@ -0,0 +1,31 @@ +{ + "id": 155951, + "slug": "tiger-tank-59-battleship-mp071", + "name": "Tiger Tank 59 Ⅰ Battleship MP071", + "release_date": "2021-07-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183922" + ], + "created_at": "2026-07-10T10:10:46.974373", + "updated_at": "2026-07-10T10:10:46.974373", + "url": "/v1/games/tiger-tank-59-battleship-mp071" +} diff --git a/site/public/v1/games/tiger-tank-59-battleship-mp072/index.json b/site/public/v1/games/tiger-tank-59-battleship-mp072/index.json new file mode 100644 index 000000000000..f48b779c549e --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-battleship-mp072/index.json @@ -0,0 +1,31 @@ +{ + "id": 155952, + "slug": "tiger-tank-59-battleship-mp072", + "name": "Tiger Tank 59 Ⅰ Battleship MP072", + "release_date": "2021-07-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183931" + ], + "created_at": "2026-07-10T10:10:46.974373", + "updated_at": "2026-07-10T10:10:46.974373", + "url": "/v1/games/tiger-tank-59-battleship-mp072" +} diff --git a/site/public/v1/games/tiger-tank-59-battleship-mp073/index.json b/site/public/v1/games/tiger-tank-59-battleship-mp073/index.json new file mode 100644 index 000000000000..618b07e314af --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-battleship-mp073/index.json @@ -0,0 +1,31 @@ +{ + "id": 155953, + "slug": "tiger-tank-59-battleship-mp073", + "name": "Tiger Tank 59 Ⅰ Battleship MP073", + "release_date": "2021-07-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183937" + ], + "created_at": "2026-07-10T10:10:46.974373", + "updated_at": "2026-07-10T10:10:46.974373", + "url": "/v1/games/tiger-tank-59-battleship-mp073" +} diff --git a/site/public/v1/games/tiger-tank-59-battleship-mp074/index.json b/site/public/v1/games/tiger-tank-59-battleship-mp074/index.json new file mode 100644 index 000000000000..7bb3512ab740 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-battleship-mp074/index.json @@ -0,0 +1,31 @@ +{ + "id": 155954, + "slug": "tiger-tank-59-battleship-mp074", + "name": "Tiger Tank 59 Ⅰ Battleship MP074", + "release_date": "2021-07-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183940" + ], + "created_at": "2026-07-10T10:10:46.975374", + "updated_at": "2026-07-10T10:10:46.975374", + "url": "/v1/games/tiger-tank-59-battleship-mp074" +} diff --git a/site/public/v1/games/tiger-tank-59-battleship-mp075/index.json b/site/public/v1/games/tiger-tank-59-battleship-mp075/index.json new file mode 100644 index 000000000000..e2fcfabbdd8e --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-battleship-mp075/index.json @@ -0,0 +1,31 @@ +{ + "id": 155955, + "slug": "tiger-tank-59-battleship-mp075", + "name": "Tiger Tank 59 Ⅰ Battleship MP075", + "release_date": "2021-07-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183942" + ], + "created_at": "2026-07-10T10:10:46.975374", + "updated_at": "2026-07-10T10:10:46.975374", + "url": "/v1/games/tiger-tank-59-battleship-mp075" +} diff --git a/site/public/v1/games/tiger-tank-59-battleship-mp076/index.json b/site/public/v1/games/tiger-tank-59-battleship-mp076/index.json new file mode 100644 index 000000000000..14872182335b --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-battleship-mp076/index.json @@ -0,0 +1,31 @@ +{ + "id": 155956, + "slug": "tiger-tank-59-battleship-mp076", + "name": "Tiger Tank 59 Ⅰ Battleship MP076", + "release_date": "2021-07-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183945" + ], + "created_at": "2026-07-10T10:10:46.975374", + "updated_at": "2026-07-10T10:10:46.975374", + "url": "/v1/games/tiger-tank-59-battleship-mp076" +} diff --git a/site/public/v1/games/tiger-tank-59-battleship-mp077/index.json b/site/public/v1/games/tiger-tank-59-battleship-mp077/index.json new file mode 100644 index 000000000000..c624ba898eda --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-battleship-mp077/index.json @@ -0,0 +1,31 @@ +{ + "id": 155957, + "slug": "tiger-tank-59-battleship-mp077", + "name": "Tiger Tank 59 Ⅰ Battleship MP077", + "release_date": "2021-07-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183948" + ], + "created_at": "2026-07-10T10:10:46.975374", + "updated_at": "2026-07-10T10:10:46.975374", + "url": "/v1/games/tiger-tank-59-battleship-mp077" +} diff --git a/site/public/v1/games/tiger-tank-59-battleship-mp078/index.json b/site/public/v1/games/tiger-tank-59-battleship-mp078/index.json new file mode 100644 index 000000000000..7beb08af05a7 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-battleship-mp078/index.json @@ -0,0 +1,31 @@ +{ + "id": 155958, + "slug": "tiger-tank-59-battleship-mp078", + "name": "Tiger Tank 59 Ⅰ Battleship MP078", + "release_date": "2021-07-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183951" + ], + "created_at": "2026-07-10T10:10:46.975374", + "updated_at": "2026-07-10T10:10:46.975374", + "url": "/v1/games/tiger-tank-59-battleship-mp078" +} diff --git a/site/public/v1/games/tiger-tank-59-battleship-mp079/index.json b/site/public/v1/games/tiger-tank-59-battleship-mp079/index.json new file mode 100644 index 000000000000..68adacb5bbb8 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-battleship-mp079/index.json @@ -0,0 +1,31 @@ +{ + "id": 155959, + "slug": "tiger-tank-59-battleship-mp079", + "name": "Tiger Tank 59 Ⅰ Battleship MP079", + "release_date": "2021-07-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183953" + ], + "created_at": "2026-07-10T10:10:46.976374", + "updated_at": "2026-07-10T10:10:46.976374", + "url": "/v1/games/tiger-tank-59-battleship-mp079" +} diff --git a/site/public/v1/games/tiger-tank-59-battleship-mp080/index.json b/site/public/v1/games/tiger-tank-59-battleship-mp080/index.json new file mode 100644 index 000000000000..f02303037c54 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-battleship-mp080/index.json @@ -0,0 +1,31 @@ +{ + "id": 155960, + "slug": "tiger-tank-59-battleship-mp080", + "name": "Tiger Tank 59 Ⅰ Battleship MP080", + "release_date": "2021-07-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183957" + ], + "created_at": "2026-07-10T10:10:46.976374", + "updated_at": "2026-07-10T10:10:46.976374", + "url": "/v1/games/tiger-tank-59-battleship-mp080" +} diff --git a/site/public/v1/games/tiger-tank-59-battleship-mp081/index.json b/site/public/v1/games/tiger-tank-59-battleship-mp081/index.json new file mode 100644 index 000000000000..df2b83e70b1b --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-battleship-mp081/index.json @@ -0,0 +1,31 @@ +{ + "id": 155961, + "slug": "tiger-tank-59-battleship-mp081", + "name": "Tiger Tank 59 Ⅰ Battleship MP081", + "release_date": "2021-07-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183963" + ], + "created_at": "2026-07-10T10:10:46.976374", + "updated_at": "2026-07-10T10:10:46.976374", + "url": "/v1/games/tiger-tank-59-battleship-mp081" +} diff --git a/site/public/v1/games/tiger-tank-59-battleship-mp082/index.json b/site/public/v1/games/tiger-tank-59-battleship-mp082/index.json new file mode 100644 index 000000000000..88f78a863efc --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-battleship-mp082/index.json @@ -0,0 +1,31 @@ +{ + "id": 155962, + "slug": "tiger-tank-59-battleship-mp082", + "name": "Tiger Tank 59 Ⅰ Battleship MP082", + "release_date": "2021-07-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183967" + ], + "created_at": "2026-07-10T10:10:46.976374", + "updated_at": "2026-07-10T10:10:46.976374", + "url": "/v1/games/tiger-tank-59-battleship-mp082" +} diff --git a/site/public/v1/games/tiger-tank-59-battleship-mp083/index.json b/site/public/v1/games/tiger-tank-59-battleship-mp083/index.json new file mode 100644 index 000000000000..1b6378d393a7 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-battleship-mp083/index.json @@ -0,0 +1,31 @@ +{ + "id": 155963, + "slug": "tiger-tank-59-battleship-mp083", + "name": "Tiger Tank 59 Ⅰ Battleship MP083", + "release_date": "2021-07-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183979" + ], + "created_at": "2026-07-10T10:10:46.976374", + "updated_at": "2026-07-10T10:10:46.976374", + "url": "/v1/games/tiger-tank-59-battleship-mp083" +} diff --git a/site/public/v1/games/tiger-tank-59-battleship-mp084/index.json b/site/public/v1/games/tiger-tank-59-battleship-mp084/index.json new file mode 100644 index 000000000000..7d07816ace1a --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-battleship-mp084/index.json @@ -0,0 +1,31 @@ +{ + "id": 155964, + "slug": "tiger-tank-59-battleship-mp084", + "name": "Tiger Tank 59 Ⅰ Battleship MP084", + "release_date": "2021-07-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183984" + ], + "created_at": "2026-07-10T10:10:46.977374", + "updated_at": "2026-07-10T10:10:46.977374", + "url": "/v1/games/tiger-tank-59-battleship-mp084" +} diff --git a/site/public/v1/games/tiger-tank-59-battleship-mp085/index.json b/site/public/v1/games/tiger-tank-59-battleship-mp085/index.json new file mode 100644 index 000000000000..c5ec69eddb12 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-battleship-mp085/index.json @@ -0,0 +1,31 @@ +{ + "id": 155965, + "slug": "tiger-tank-59-battleship-mp085", + "name": "Tiger Tank 59 Ⅰ Battleship MP085", + "release_date": "2021-07-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183987" + ], + "created_at": "2026-07-10T10:10:46.977374", + "updated_at": "2026-07-10T10:10:46.977374", + "url": "/v1/games/tiger-tank-59-battleship-mp085" +} diff --git a/site/public/v1/games/tiger-tank-59-battleship-mp086/index.json b/site/public/v1/games/tiger-tank-59-battleship-mp086/index.json new file mode 100644 index 000000000000..7f38c605e735 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-battleship-mp086/index.json @@ -0,0 +1,31 @@ +{ + "id": 155966, + "slug": "tiger-tank-59-battleship-mp086", + "name": "Tiger Tank 59 Ⅰ Battleship MP086", + "release_date": "2021-07-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183989" + ], + "created_at": "2026-07-10T10:10:46.977374", + "updated_at": "2026-07-10T10:10:46.977374", + "url": "/v1/games/tiger-tank-59-battleship-mp086" +} diff --git a/site/public/v1/games/tiger-tank-59-battleship-mp087/index.json b/site/public/v1/games/tiger-tank-59-battleship-mp087/index.json new file mode 100644 index 000000000000..7726afcaa66c --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-battleship-mp087/index.json @@ -0,0 +1,31 @@ +{ + "id": 155967, + "slug": "tiger-tank-59-battleship-mp087", + "name": "Tiger Tank 59 Ⅰ Battleship MP087", + "release_date": "2021-07-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183991" + ], + "created_at": "2026-07-10T10:10:46.977374", + "updated_at": "2026-07-10T10:10:46.977374", + "url": "/v1/games/tiger-tank-59-battleship-mp087" +} diff --git a/site/public/v1/games/tiger-tank-59-battleship-mp088/index.json b/site/public/v1/games/tiger-tank-59-battleship-mp088/index.json new file mode 100644 index 000000000000..502096fb8f56 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-battleship-mp088/index.json @@ -0,0 +1,31 @@ +{ + "id": 155968, + "slug": "tiger-tank-59-battleship-mp088", + "name": "Tiger Tank 59 Ⅰ Battleship MP088", + "release_date": "2021-07-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183997" + ], + "created_at": "2026-07-10T10:10:46.978374", + "updated_at": "2026-07-10T10:10:46.978374", + "url": "/v1/games/tiger-tank-59-battleship-mp088" +} diff --git a/site/public/v1/games/tiger-tank-59-battleship-mp089/index.json b/site/public/v1/games/tiger-tank-59-battleship-mp089/index.json new file mode 100644 index 000000000000..bab96caf819d --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-battleship-mp089/index.json @@ -0,0 +1,31 @@ +{ + "id": 155969, + "slug": "tiger-tank-59-battleship-mp089", + "name": "Tiger Tank 59 Ⅰ Battleship MP089", + "release_date": "2021-07-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116183999" + ], + "created_at": "2026-07-10T10:10:46.978374", + "updated_at": "2026-07-10T10:10:46.978374", + "url": "/v1/games/tiger-tank-59-battleship-mp089" +} diff --git a/site/public/v1/games/tiger-tank-59-battleship-mp090/index.json b/site/public/v1/games/tiger-tank-59-battleship-mp090/index.json new file mode 100644 index 000000000000..336fc25fe4bf --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-battleship-mp090/index.json @@ -0,0 +1,31 @@ +{ + "id": 155970, + "slug": "tiger-tank-59-battleship-mp090", + "name": "Tiger Tank 59 Ⅰ Battleship MP090", + "release_date": "2021-07-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184003" + ], + "created_at": "2026-07-10T10:10:46.978374", + "updated_at": "2026-07-10T10:10:46.978374", + "url": "/v1/games/tiger-tank-59-battleship-mp090" +} diff --git a/site/public/v1/games/tiger-tank-59-battleship-mp091/index.json b/site/public/v1/games/tiger-tank-59-battleship-mp091/index.json new file mode 100644 index 000000000000..e42002b8ba11 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-battleship-mp091/index.json @@ -0,0 +1,31 @@ +{ + "id": 155971, + "slug": "tiger-tank-59-battleship-mp091", + "name": "Tiger Tank 59 Ⅰ Battleship MP091", + "release_date": "2021-07-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184005" + ], + "created_at": "2026-07-10T10:10:46.978374", + "updated_at": "2026-07-10T10:10:46.978374", + "url": "/v1/games/tiger-tank-59-battleship-mp091" +} diff --git a/site/public/v1/games/tiger-tank-59-battleship-mp092/index.json b/site/public/v1/games/tiger-tank-59-battleship-mp092/index.json new file mode 100644 index 000000000000..1d8fc72a3620 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-battleship-mp092/index.json @@ -0,0 +1,31 @@ +{ + "id": 155972, + "slug": "tiger-tank-59-battleship-mp092", + "name": "Tiger Tank 59 Ⅰ Battleship MP092", + "release_date": "2021-07-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184006" + ], + "created_at": "2026-07-10T10:10:46.978374", + "updated_at": "2026-07-10T10:10:46.978374", + "url": "/v1/games/tiger-tank-59-battleship-mp092" +} diff --git a/site/public/v1/games/tiger-tank-59-battleship-mp093/index.json b/site/public/v1/games/tiger-tank-59-battleship-mp093/index.json new file mode 100644 index 000000000000..a19c7d5c75ac --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-battleship-mp093/index.json @@ -0,0 +1,31 @@ +{ + "id": 155973, + "slug": "tiger-tank-59-battleship-mp093", + "name": "Tiger Tank 59 Ⅰ Battleship MP093", + "release_date": "2021-07-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184007" + ], + "created_at": "2026-07-10T10:10:46.978374", + "updated_at": "2026-07-10T10:10:46.978374", + "url": "/v1/games/tiger-tank-59-battleship-mp093" +} diff --git a/site/public/v1/games/tiger-tank-59-battleship-mp094/index.json b/site/public/v1/games/tiger-tank-59-battleship-mp094/index.json new file mode 100644 index 000000000000..8a2196f67c05 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-battleship-mp094/index.json @@ -0,0 +1,31 @@ +{ + "id": 155974, + "slug": "tiger-tank-59-battleship-mp094", + "name": "Tiger Tank 59 Ⅰ Battleship MP094", + "release_date": "2021-07-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184010" + ], + "created_at": "2026-07-10T10:10:46.978374", + "updated_at": "2026-07-10T10:10:46.978374", + "url": "/v1/games/tiger-tank-59-battleship-mp094" +} diff --git a/site/public/v1/games/tiger-tank-59-battleship-mp095/index.json b/site/public/v1/games/tiger-tank-59-battleship-mp095/index.json new file mode 100644 index 000000000000..b358f9a0b445 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-battleship-mp095/index.json @@ -0,0 +1,31 @@ +{ + "id": 155975, + "slug": "tiger-tank-59-battleship-mp095", + "name": "Tiger Tank 59 Ⅰ Battleship MP095", + "release_date": "2021-07-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184012" + ], + "created_at": "2026-07-10T10:10:46.978374", + "updated_at": "2026-07-10T10:10:46.978374", + "url": "/v1/games/tiger-tank-59-battleship-mp095" +} diff --git a/site/public/v1/games/tiger-tank-59-battleship-mp096/index.json b/site/public/v1/games/tiger-tank-59-battleship-mp096/index.json new file mode 100644 index 000000000000..50ecd6cdbab0 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-battleship-mp096/index.json @@ -0,0 +1,31 @@ +{ + "id": 155976, + "slug": "tiger-tank-59-battleship-mp096", + "name": "Tiger Tank 59 Ⅰ Battleship MP096", + "release_date": "2021-07-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184013" + ], + "created_at": "2026-07-10T10:10:46.979968", + "updated_at": "2026-07-10T10:10:46.979968", + "url": "/v1/games/tiger-tank-59-battleship-mp096" +} diff --git a/site/public/v1/games/tiger-tank-59-battleship-mp097/index.json b/site/public/v1/games/tiger-tank-59-battleship-mp097/index.json new file mode 100644 index 000000000000..b81ec370686b --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-battleship-mp097/index.json @@ -0,0 +1,31 @@ +{ + "id": 155977, + "slug": "tiger-tank-59-battleship-mp097", + "name": "Tiger Tank 59 Ⅰ Battleship MP097", + "release_date": "2021-07-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184015" + ], + "created_at": "2026-07-10T10:10:46.979968", + "updated_at": "2026-07-10T10:10:46.979968", + "url": "/v1/games/tiger-tank-59-battleship-mp097" +} diff --git a/site/public/v1/games/tiger-tank-59-battleship-mp098/index.json b/site/public/v1/games/tiger-tank-59-battleship-mp098/index.json new file mode 100644 index 000000000000..8953fe875eff --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-battleship-mp098/index.json @@ -0,0 +1,31 @@ +{ + "id": 155978, + "slug": "tiger-tank-59-battleship-mp098", + "name": "Tiger Tank 59 Ⅰ Battleship MP098", + "release_date": "2021-07-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184017" + ], + "created_at": "2026-07-10T10:10:46.979968", + "updated_at": "2026-07-10T10:10:46.979968", + "url": "/v1/games/tiger-tank-59-battleship-mp098" +} diff --git a/site/public/v1/games/tiger-tank-59-battleship-mp099/index.json b/site/public/v1/games/tiger-tank-59-battleship-mp099/index.json new file mode 100644 index 000000000000..893600f2ab7a --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-battleship-mp099/index.json @@ -0,0 +1,31 @@ +{ + "id": 155979, + "slug": "tiger-tank-59-battleship-mp099", + "name": "Tiger Tank 59 Ⅰ Battleship MP099", + "release_date": "2021-07-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184019" + ], + "created_at": "2026-07-10T10:10:46.979968", + "updated_at": "2026-07-10T10:10:46.979968", + "url": "/v1/games/tiger-tank-59-battleship-mp099" +} diff --git a/site/public/v1/games/tiger-tank-59-battleship-mp100/index.json b/site/public/v1/games/tiger-tank-59-battleship-mp100/index.json new file mode 100644 index 000000000000..566d5c093f4a --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-battleship-mp100/index.json @@ -0,0 +1,31 @@ +{ + "id": 155980, + "slug": "tiger-tank-59-battleship-mp100", + "name": "Tiger Tank 59 Ⅰ Battleship MP100", + "release_date": "2021-07-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184021" + ], + "created_at": "2026-07-10T10:10:46.980929", + "updated_at": "2026-07-10T10:10:46.980929", + "url": "/v1/games/tiger-tank-59-battleship-mp100" +} diff --git a/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp001/index.json b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp001/index.json new file mode 100644 index 000000000000..3911ddce9fac --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp001/index.json @@ -0,0 +1,31 @@ +{ + "id": 155982, + "slug": "tiger-tank-59-black-hill-fortress-mp001", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP001", + "release_date": "2021-07-05", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184022" + ], + "created_at": "2026-07-10T10:10:46.980929", + "updated_at": "2026-07-10T10:10:46.980929", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp001" +} diff --git a/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp002/index.json b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp002/index.json new file mode 100644 index 000000000000..d60165795134 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp002/index.json @@ -0,0 +1,31 @@ +{ + "id": 155983, + "slug": "tiger-tank-59-black-hill-fortress-mp002", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP002", + "release_date": "2021-07-05", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184025" + ], + "created_at": "2026-07-10T10:10:46.980929", + "updated_at": "2026-07-10T10:10:46.980929", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp002" +} diff --git a/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp003/index.json b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp003/index.json new file mode 100644 index 000000000000..8f1fe3751a71 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp003/index.json @@ -0,0 +1,31 @@ +{ + "id": 155984, + "slug": "tiger-tank-59-black-hill-fortress-mp003", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP003", + "release_date": "2021-07-05", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184027" + ], + "created_at": "2026-07-10T10:10:46.980929", + "updated_at": "2026-07-10T10:10:46.980929", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp003" +} diff --git a/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp004/index.json b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp004/index.json new file mode 100644 index 000000000000..94ca7bb4d281 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp004/index.json @@ -0,0 +1,31 @@ +{ + "id": 155985, + "slug": "tiger-tank-59-black-hill-fortress-mp004", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP004", + "release_date": "2021-07-05", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184029" + ], + "created_at": "2026-07-10T10:10:46.981945", + "updated_at": "2026-07-10T10:10:46.981945", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp004" +} diff --git a/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp005/index.json b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp005/index.json new file mode 100644 index 000000000000..35382f4d2f28 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp005/index.json @@ -0,0 +1,31 @@ +{ + "id": 155986, + "slug": "tiger-tank-59-black-hill-fortress-mp005", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP005", + "release_date": "2021-07-05", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184032" + ], + "created_at": "2026-07-10T10:10:46.981945", + "updated_at": "2026-07-10T10:10:46.981945", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp005" +} diff --git a/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp006/index.json b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp006/index.json new file mode 100644 index 000000000000..01fd9b9dbea7 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp006/index.json @@ -0,0 +1,31 @@ +{ + "id": 155987, + "slug": "tiger-tank-59-black-hill-fortress-mp006", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP006", + "release_date": "2021-07-05", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184034" + ], + "created_at": "2026-07-10T10:10:46.981945", + "updated_at": "2026-07-10T10:10:46.981945", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp006" +} diff --git a/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp007/index.json b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp007/index.json new file mode 100644 index 000000000000..61c8e05cde0d --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp007/index.json @@ -0,0 +1,31 @@ +{ + "id": 155988, + "slug": "tiger-tank-59-black-hill-fortress-mp007", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP007", + "release_date": "2021-07-05", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184039" + ], + "created_at": "2026-07-10T10:10:46.981945", + "updated_at": "2026-07-10T10:10:46.981945", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp007" +} diff --git a/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp008/index.json b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp008/index.json new file mode 100644 index 000000000000..bf0071f745a6 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp008/index.json @@ -0,0 +1,31 @@ +{ + "id": 155989, + "slug": "tiger-tank-59-black-hill-fortress-mp008", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP008", + "release_date": "2021-07-05", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184042" + ], + "created_at": "2026-07-10T10:10:46.982900", + "updated_at": "2026-07-10T10:10:46.982900", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp008" +} diff --git a/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp009/index.json b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp009/index.json new file mode 100644 index 000000000000..df98c7205a59 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp009/index.json @@ -0,0 +1,31 @@ +{ + "id": 155990, + "slug": "tiger-tank-59-black-hill-fortress-mp009", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP009", + "release_date": "2021-07-05", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184044" + ], + "created_at": "2026-07-10T10:10:46.982900", + "updated_at": "2026-07-10T10:10:46.982900", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp009" +} diff --git a/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp010/index.json b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp010/index.json new file mode 100644 index 000000000000..383c8079ee15 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp010/index.json @@ -0,0 +1,31 @@ +{ + "id": 155991, + "slug": "tiger-tank-59-black-hill-fortress-mp010", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP010", + "release_date": "2021-07-05", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184049" + ], + "created_at": "2026-07-10T10:10:46.982900", + "updated_at": "2026-07-10T10:10:46.982900", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp010" +} diff --git a/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp011/index.json b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp011/index.json new file mode 100644 index 000000000000..5eba9d053d45 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp011/index.json @@ -0,0 +1,31 @@ +{ + "id": 155992, + "slug": "tiger-tank-59-black-hill-fortress-mp011", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP011", + "release_date": "2021-07-05", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184050" + ], + "created_at": "2026-07-10T10:10:46.982900", + "updated_at": "2026-07-10T10:10:46.982900", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp011" +} diff --git a/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp012/index.json b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp012/index.json new file mode 100644 index 000000000000..e02de659b44f --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp012/index.json @@ -0,0 +1,31 @@ +{ + "id": 155993, + "slug": "tiger-tank-59-black-hill-fortress-mp012", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP012", + "release_date": "2021-07-05", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184052" + ], + "created_at": "2026-07-10T10:10:46.982900", + "updated_at": "2026-07-10T10:10:46.982900", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp012" +} diff --git a/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp013/index.json b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp013/index.json new file mode 100644 index 000000000000..38985a3ceb10 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp013/index.json @@ -0,0 +1,31 @@ +{ + "id": 155994, + "slug": "tiger-tank-59-black-hill-fortress-mp013", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP013", + "release_date": "2021-07-05", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184056" + ], + "created_at": "2026-07-10T10:10:46.983911", + "updated_at": "2026-07-10T10:10:46.983911", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp013" +} diff --git a/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp014/index.json b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp014/index.json new file mode 100644 index 000000000000..635942b519f7 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp014/index.json @@ -0,0 +1,31 @@ +{ + "id": 155995, + "slug": "tiger-tank-59-black-hill-fortress-mp014", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP014", + "release_date": "2021-07-05", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184057" + ], + "created_at": "2026-07-10T10:10:46.983911", + "updated_at": "2026-07-10T10:10:46.983911", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp014" +} diff --git a/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp015/index.json b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp015/index.json new file mode 100644 index 000000000000..40cb12bcbaaa --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp015/index.json @@ -0,0 +1,31 @@ +{ + "id": 155996, + "slug": "tiger-tank-59-black-hill-fortress-mp015", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP015", + "release_date": "2021-07-05", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184059" + ], + "created_at": "2026-07-10T10:10:46.983911", + "updated_at": "2026-07-10T10:10:46.983911", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp015" +} diff --git a/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp016/index.json b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp016/index.json new file mode 100644 index 000000000000..64520f9fb689 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp016/index.json @@ -0,0 +1,31 @@ +{ + "id": 155997, + "slug": "tiger-tank-59-black-hill-fortress-mp016", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP016", + "release_date": "2021-07-05", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184061" + ], + "created_at": "2026-07-10T10:10:46.983911", + "updated_at": "2026-07-10T10:10:46.983911", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp016" +} diff --git a/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp017/index.json b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp017/index.json new file mode 100644 index 000000000000..41c83a6c44ba --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp017/index.json @@ -0,0 +1,31 @@ +{ + "id": 155998, + "slug": "tiger-tank-59-black-hill-fortress-mp017", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP017", + "release_date": "2021-07-05", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184065" + ], + "created_at": "2026-07-10T10:10:46.984844", + "updated_at": "2026-07-10T10:10:46.984844", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp017" +} diff --git a/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp018/index.json b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp018/index.json new file mode 100644 index 000000000000..073e10c4d6d6 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp018/index.json @@ -0,0 +1,31 @@ +{ + "id": 155999, + "slug": "tiger-tank-59-black-hill-fortress-mp018", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP018", + "release_date": "2021-07-05", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184067" + ], + "created_at": "2026-07-10T10:10:46.984844", + "updated_at": "2026-07-10T10:10:46.984844", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp018" +} diff --git a/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp019/index.json b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp019/index.json new file mode 100644 index 000000000000..1067f880b0b2 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp019/index.json @@ -0,0 +1,31 @@ +{ + "id": 156000, + "slug": "tiger-tank-59-black-hill-fortress-mp019", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP019", + "release_date": "2021-07-05", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184071" + ], + "created_at": "2026-07-10T10:10:46.984844", + "updated_at": "2026-07-10T10:10:46.984844", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp019" +} diff --git a/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp020/index.json b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp020/index.json new file mode 100644 index 000000000000..8ba08bcb3f77 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp020/index.json @@ -0,0 +1,31 @@ +{ + "id": 156001, + "slug": "tiger-tank-59-black-hill-fortress-mp020", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP020", + "release_date": "2021-07-05", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184073" + ], + "created_at": "2026-07-10T10:10:46.984844", + "updated_at": "2026-07-10T10:10:46.984844", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp020" +} diff --git a/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp021/index.json b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp021/index.json new file mode 100644 index 000000000000..fd9ac7efe56f --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp021/index.json @@ -0,0 +1,31 @@ +{ + "id": 156002, + "slug": "tiger-tank-59-black-hill-fortress-mp021", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP021", + "release_date": "2021-07-05", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184076" + ], + "created_at": "2026-07-10T10:10:46.985916", + "updated_at": "2026-07-10T10:10:46.985916", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp021" +} diff --git a/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp022/index.json b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp022/index.json new file mode 100644 index 000000000000..98039a933e49 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp022/index.json @@ -0,0 +1,31 @@ +{ + "id": 156003, + "slug": "tiger-tank-59-black-hill-fortress-mp022", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP022", + "release_date": "2021-07-05", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184078" + ], + "created_at": "2026-07-10T10:10:46.985916", + "updated_at": "2026-07-10T10:10:46.985916", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp022" +} diff --git a/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp023/index.json b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp023/index.json new file mode 100644 index 000000000000..ae75863444ee --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp023/index.json @@ -0,0 +1,31 @@ +{ + "id": 156004, + "slug": "tiger-tank-59-black-hill-fortress-mp023", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP023", + "release_date": "2021-07-05", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184081" + ], + "created_at": "2026-07-10T10:10:46.985916", + "updated_at": "2026-07-10T10:10:46.985916", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp023" +} diff --git a/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp024/index.json b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp024/index.json new file mode 100644 index 000000000000..19cf8eb01d39 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp024/index.json @@ -0,0 +1,31 @@ +{ + "id": 156005, + "slug": "tiger-tank-59-black-hill-fortress-mp024", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP024", + "release_date": "2021-07-05", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184083" + ], + "created_at": "2026-07-10T10:10:46.985916", + "updated_at": "2026-07-10T10:10:46.985916", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp024" +} diff --git a/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp025/index.json b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp025/index.json new file mode 100644 index 000000000000..b062cc7e9fca --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp025/index.json @@ -0,0 +1,31 @@ +{ + "id": 156006, + "slug": "tiger-tank-59-black-hill-fortress-mp025", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP025", + "release_date": "2021-07-05", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184085" + ], + "created_at": "2026-07-10T10:10:46.985916", + "updated_at": "2026-07-10T10:10:46.985916", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp025" +} diff --git a/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp026/index.json b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp026/index.json new file mode 100644 index 000000000000..dd6333c78311 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp026/index.json @@ -0,0 +1,31 @@ +{ + "id": 156007, + "slug": "tiger-tank-59-black-hill-fortress-mp026", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP026", + "release_date": "2021-07-05", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184092" + ], + "created_at": "2026-07-10T10:10:46.986898", + "updated_at": "2026-07-10T10:10:46.986898", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp026" +} diff --git a/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp027/index.json b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp027/index.json new file mode 100644 index 000000000000..73ee7fe4eff7 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp027/index.json @@ -0,0 +1,31 @@ +{ + "id": 156008, + "slug": "tiger-tank-59-black-hill-fortress-mp027", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP027", + "release_date": "2021-07-05", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184098" + ], + "created_at": "2026-07-10T10:10:46.986898", + "updated_at": "2026-07-10T10:10:46.986898", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp027" +} diff --git a/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp028/index.json b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp028/index.json new file mode 100644 index 000000000000..98c27722eb69 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp028/index.json @@ -0,0 +1,31 @@ +{ + "id": 156009, + "slug": "tiger-tank-59-black-hill-fortress-mp028", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP028", + "release_date": "2021-07-05", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184103" + ], + "created_at": "2026-07-10T10:10:46.986898", + "updated_at": "2026-07-10T10:10:46.986898", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp028" +} diff --git a/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp029/index.json b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp029/index.json new file mode 100644 index 000000000000..fd9322edb509 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp029/index.json @@ -0,0 +1,31 @@ +{ + "id": 156010, + "slug": "tiger-tank-59-black-hill-fortress-mp029", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP029", + "release_date": "2021-07-05", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184108" + ], + "created_at": "2026-07-10T10:10:46.986898", + "updated_at": "2026-07-10T10:10:46.986898", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp029" +} diff --git a/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp030/index.json b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp030/index.json new file mode 100644 index 000000000000..4d1d76ab4f29 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp030/index.json @@ -0,0 +1,31 @@ +{ + "id": 156011, + "slug": "tiger-tank-59-black-hill-fortress-mp030", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP030", + "release_date": "2021-07-05", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184109" + ], + "created_at": "2026-07-10T10:10:46.987925", + "updated_at": "2026-07-10T10:10:46.987925", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp030" +} diff --git a/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp031/index.json b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp031/index.json new file mode 100644 index 000000000000..3162612f8350 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp031/index.json @@ -0,0 +1,31 @@ +{ + "id": 156012, + "slug": "tiger-tank-59-black-hill-fortress-mp031", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP031", + "release_date": "2021-07-05", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184111" + ], + "created_at": "2026-07-10T10:10:46.987925", + "updated_at": "2026-07-10T10:10:46.987925", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp031" +} diff --git a/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp032/index.json b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp032/index.json new file mode 100644 index 000000000000..7195a25e1e7d --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp032/index.json @@ -0,0 +1,31 @@ +{ + "id": 156013, + "slug": "tiger-tank-59-black-hill-fortress-mp032", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP032", + "release_date": "2021-07-05", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184112" + ], + "created_at": "2026-07-10T10:10:46.987925", + "updated_at": "2026-07-10T10:10:46.987925", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp032" +} diff --git a/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp033/index.json b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp033/index.json new file mode 100644 index 000000000000..b3f54e352bba --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp033/index.json @@ -0,0 +1,31 @@ +{ + "id": 156014, + "slug": "tiger-tank-59-black-hill-fortress-mp033", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP033", + "release_date": "2021-07-05", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184115" + ], + "created_at": "2026-07-10T10:10:46.987925", + "updated_at": "2026-07-10T10:10:46.987925", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp033" +} diff --git a/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp034/index.json b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp034/index.json new file mode 100644 index 000000000000..36e6b7603e59 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp034/index.json @@ -0,0 +1,31 @@ +{ + "id": 156015, + "slug": "tiger-tank-59-black-hill-fortress-mp034", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP034", + "release_date": "2021-07-05", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184116" + ], + "created_at": "2026-07-10T10:10:46.987925", + "updated_at": "2026-07-10T10:10:46.987925", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp034" +} diff --git a/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp035/index.json b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp035/index.json new file mode 100644 index 000000000000..661326cdb3ef --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp035/index.json @@ -0,0 +1,31 @@ +{ + "id": 156016, + "slug": "tiger-tank-59-black-hill-fortress-mp035", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP035", + "release_date": "2021-07-05", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184120" + ], + "created_at": "2026-07-10T10:10:46.988913", + "updated_at": "2026-07-10T10:10:46.988913", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp035" +} diff --git a/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp036/index.json b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp036/index.json new file mode 100644 index 000000000000..967f496dd161 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp036/index.json @@ -0,0 +1,31 @@ +{ + "id": 156017, + "slug": "tiger-tank-59-black-hill-fortress-mp036", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP036", + "release_date": "2021-07-05", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184122" + ], + "created_at": "2026-07-10T10:10:46.988913", + "updated_at": "2026-07-10T10:10:46.988913", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp036" +} diff --git a/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp037/index.json b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp037/index.json new file mode 100644 index 000000000000..bf3721964aba --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp037/index.json @@ -0,0 +1,31 @@ +{ + "id": 156018, + "slug": "tiger-tank-59-black-hill-fortress-mp037", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP037", + "release_date": "2021-07-05", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184124" + ], + "created_at": "2026-07-10T10:10:46.988913", + "updated_at": "2026-07-10T10:10:46.988913", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp037" +} diff --git a/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp038/index.json b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp038/index.json new file mode 100644 index 000000000000..30b5453c5a06 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp038/index.json @@ -0,0 +1,31 @@ +{ + "id": 156019, + "slug": "tiger-tank-59-black-hill-fortress-mp038", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP038", + "release_date": "2021-07-05", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184133" + ], + "created_at": "2026-07-10T10:10:46.988913", + "updated_at": "2026-07-10T10:10:46.988913", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp038" +} diff --git a/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp039/index.json b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp039/index.json new file mode 100644 index 000000000000..02d8b9765fb5 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp039/index.json @@ -0,0 +1,31 @@ +{ + "id": 156020, + "slug": "tiger-tank-59-black-hill-fortress-mp039", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP039", + "release_date": "2021-07-05", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184145" + ], + "created_at": "2026-07-10T10:10:46.989936", + "updated_at": "2026-07-10T10:10:46.989936", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp039" +} diff --git a/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp040/index.json b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp040/index.json new file mode 100644 index 000000000000..eb301c99b141 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp040/index.json @@ -0,0 +1,31 @@ +{ + "id": 156021, + "slug": "tiger-tank-59-black-hill-fortress-mp040", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP040", + "release_date": "2021-07-05", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184151" + ], + "created_at": "2026-07-10T10:10:46.989936", + "updated_at": "2026-07-10T10:10:46.989936", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp040" +} diff --git a/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp041/index.json b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp041/index.json new file mode 100644 index 000000000000..e724e5a51ec8 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp041/index.json @@ -0,0 +1,31 @@ +{ + "id": 156022, + "slug": "tiger-tank-59-black-hill-fortress-mp041", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP041", + "release_date": "2021-07-05", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184154" + ], + "created_at": "2026-07-10T10:10:46.989936", + "updated_at": "2026-07-10T10:10:46.989936", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp041" +} diff --git a/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp042/index.json b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp042/index.json new file mode 100644 index 000000000000..dbe758a2dfb3 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp042/index.json @@ -0,0 +1,31 @@ +{ + "id": 156023, + "slug": "tiger-tank-59-black-hill-fortress-mp042", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP042", + "release_date": "2021-07-05", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184156" + ], + "created_at": "2026-07-10T10:10:46.989936", + "updated_at": "2026-07-10T10:10:46.989936", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp042" +} diff --git a/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp043/index.json b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp043/index.json new file mode 100644 index 000000000000..7a01187244b0 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp043/index.json @@ -0,0 +1,31 @@ +{ + "id": 156024, + "slug": "tiger-tank-59-black-hill-fortress-mp043", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP043", + "release_date": "2021-07-05", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184158" + ], + "created_at": "2026-07-10T10:10:46.989936", + "updated_at": "2026-07-10T10:10:46.989936", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp043" +} diff --git a/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp044/index.json b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp044/index.json new file mode 100644 index 000000000000..bdb28c0055c8 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp044/index.json @@ -0,0 +1,31 @@ +{ + "id": 156025, + "slug": "tiger-tank-59-black-hill-fortress-mp044", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP044", + "release_date": "2021-07-05", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184161" + ], + "created_at": "2026-07-10T10:10:46.990956", + "updated_at": "2026-07-10T10:10:46.990956", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp044" +} diff --git a/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp045/index.json b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp045/index.json new file mode 100644 index 000000000000..bb06497dd248 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp045/index.json @@ -0,0 +1,31 @@ +{ + "id": 156026, + "slug": "tiger-tank-59-black-hill-fortress-mp045", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP045", + "release_date": "2021-07-05", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184165" + ], + "created_at": "2026-07-10T10:10:46.990956", + "updated_at": "2026-07-10T10:10:46.990956", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp045" +} diff --git a/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp046/index.json b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp046/index.json new file mode 100644 index 000000000000..32602d4c5860 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp046/index.json @@ -0,0 +1,31 @@ +{ + "id": 156027, + "slug": "tiger-tank-59-black-hill-fortress-mp046", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP046", + "release_date": "2021-07-05", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184168" + ], + "created_at": "2026-07-10T10:10:46.990956", + "updated_at": "2026-07-10T10:10:46.990956", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp046" +} diff --git a/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp047/index.json b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp047/index.json new file mode 100644 index 000000000000..5b8d61522a70 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp047/index.json @@ -0,0 +1,31 @@ +{ + "id": 156028, + "slug": "tiger-tank-59-black-hill-fortress-mp047", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP047", + "release_date": "2021-07-05", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184171" + ], + "created_at": "2026-07-10T10:10:46.990956", + "updated_at": "2026-07-10T10:10:46.990956", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp047" +} diff --git a/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp048/index.json b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp048/index.json new file mode 100644 index 000000000000..38c637a2022e --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp048/index.json @@ -0,0 +1,31 @@ +{ + "id": 156029, + "slug": "tiger-tank-59-black-hill-fortress-mp048", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP048", + "release_date": "2021-07-05", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184176" + ], + "created_at": "2026-07-10T10:10:46.990956", + "updated_at": "2026-07-10T10:10:46.990956", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp048" +} diff --git a/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp049/index.json b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp049/index.json new file mode 100644 index 000000000000..b65a5d29410c --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp049/index.json @@ -0,0 +1,31 @@ +{ + "id": 156030, + "slug": "tiger-tank-59-black-hill-fortress-mp049", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP049", + "release_date": "2021-07-05", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184178" + ], + "created_at": "2026-07-10T10:10:46.991930", + "updated_at": "2026-07-10T10:10:46.991930", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp049" +} diff --git a/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp050/index.json b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp050/index.json new file mode 100644 index 000000000000..82120bb68286 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp050/index.json @@ -0,0 +1,31 @@ +{ + "id": 156031, + "slug": "tiger-tank-59-black-hill-fortress-mp050", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP050", + "release_date": "2021-07-05", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184182" + ], + "created_at": "2026-07-10T10:10:46.991930", + "updated_at": "2026-07-10T10:10:46.991930", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp050" +} diff --git a/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp051/index.json b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp051/index.json new file mode 100644 index 000000000000..bb986b5674bb --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp051/index.json @@ -0,0 +1,31 @@ +{ + "id": 156032, + "slug": "tiger-tank-59-black-hill-fortress-mp051", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP051", + "release_date": "2021-07-05", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184188" + ], + "created_at": "2026-07-10T10:10:46.991930", + "updated_at": "2026-07-10T10:10:46.991930", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp051" +} diff --git a/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp052/index.json b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp052/index.json new file mode 100644 index 000000000000..22efbbafd407 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp052/index.json @@ -0,0 +1,31 @@ +{ + "id": 156033, + "slug": "tiger-tank-59-black-hill-fortress-mp052", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP052", + "release_date": "2021-07-05", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184195" + ], + "created_at": "2026-07-10T10:10:46.991930", + "updated_at": "2026-07-10T10:10:46.991930", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp052" +} diff --git a/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp053/index.json b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp053/index.json new file mode 100644 index 000000000000..e98dec0254d0 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp053/index.json @@ -0,0 +1,31 @@ +{ + "id": 156034, + "slug": "tiger-tank-59-black-hill-fortress-mp053", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP053", + "release_date": "2021-07-05", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184197" + ], + "created_at": "2026-07-10T10:10:46.992904", + "updated_at": "2026-07-10T10:10:46.992904", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp053" +} diff --git a/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp054/index.json b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp054/index.json new file mode 100644 index 000000000000..9e511fd76dbb --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp054/index.json @@ -0,0 +1,31 @@ +{ + "id": 156035, + "slug": "tiger-tank-59-black-hill-fortress-mp054", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP054", + "release_date": "2021-07-05", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184199" + ], + "created_at": "2026-07-10T10:10:46.992904", + "updated_at": "2026-07-10T10:10:46.992904", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp054" +} diff --git a/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp055/index.json b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp055/index.json new file mode 100644 index 000000000000..c3404f6bd669 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp055/index.json @@ -0,0 +1,31 @@ +{ + "id": 156036, + "slug": "tiger-tank-59-black-hill-fortress-mp055", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP055", + "release_date": "2021-07-05", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184202" + ], + "created_at": "2026-07-10T10:10:46.992904", + "updated_at": "2026-07-10T10:10:46.992904", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp055" +} diff --git a/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp056/index.json b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp056/index.json new file mode 100644 index 000000000000..50edf9d66502 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp056/index.json @@ -0,0 +1,31 @@ +{ + "id": 156037, + "slug": "tiger-tank-59-black-hill-fortress-mp056", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP056", + "release_date": "2021-07-05", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184207" + ], + "created_at": "2026-07-10T10:10:46.992904", + "updated_at": "2026-07-10T10:10:46.992904", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp056" +} diff --git a/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp057/index.json b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp057/index.json new file mode 100644 index 000000000000..6d4ed252ab72 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp057/index.json @@ -0,0 +1,31 @@ +{ + "id": 156038, + "slug": "tiger-tank-59-black-hill-fortress-mp057", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP057", + "release_date": "2021-07-05", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184213" + ], + "created_at": "2026-07-10T10:10:46.992904", + "updated_at": "2026-07-10T10:10:46.992904", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp057" +} diff --git a/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp058/index.json b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp058/index.json new file mode 100644 index 000000000000..4bc9c0dfd3cb --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp058/index.json @@ -0,0 +1,31 @@ +{ + "id": 156039, + "slug": "tiger-tank-59-black-hill-fortress-mp058", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP058", + "release_date": "2021-07-05", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184220" + ], + "created_at": "2026-07-10T10:10:46.993999", + "updated_at": "2026-07-10T10:10:46.993999", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp058" +} diff --git a/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp059/index.json b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp059/index.json new file mode 100644 index 000000000000..67ee47524024 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp059/index.json @@ -0,0 +1,31 @@ +{ + "id": 156040, + "slug": "tiger-tank-59-black-hill-fortress-mp059", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP059", + "release_date": "2021-07-05", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184222" + ], + "created_at": "2026-07-10T10:10:46.993999", + "updated_at": "2026-07-10T10:10:46.993999", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp059" +} diff --git a/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp060/index.json b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp060/index.json new file mode 100644 index 000000000000..184042570e7a --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp060/index.json @@ -0,0 +1,31 @@ +{ + "id": 156041, + "slug": "tiger-tank-59-black-hill-fortress-mp060", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP060", + "release_date": "2021-07-05", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184225" + ], + "created_at": "2026-07-10T10:10:46.993999", + "updated_at": "2026-07-10T10:10:46.993999", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp060" +} diff --git a/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp061/index.json b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp061/index.json new file mode 100644 index 000000000000..14d8f895a6de --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp061/index.json @@ -0,0 +1,31 @@ +{ + "id": 156042, + "slug": "tiger-tank-59-black-hill-fortress-mp061", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP061", + "release_date": "2021-07-05", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184230" + ], + "created_at": "2026-07-10T10:10:46.993999", + "updated_at": "2026-07-10T10:10:46.993999", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp061" +} diff --git a/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp062/index.json b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp062/index.json new file mode 100644 index 000000000000..359cd3bcf37e --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp062/index.json @@ -0,0 +1,31 @@ +{ + "id": 156043, + "slug": "tiger-tank-59-black-hill-fortress-mp062", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP062", + "release_date": "2021-07-05", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184237" + ], + "created_at": "2026-07-10T10:10:46.994977", + "updated_at": "2026-07-10T10:10:46.994977", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp062" +} diff --git a/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp063/index.json b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp063/index.json new file mode 100644 index 000000000000..2e7351f1625b --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp063/index.json @@ -0,0 +1,31 @@ +{ + "id": 156044, + "slug": "tiger-tank-59-black-hill-fortress-mp063", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP063", + "release_date": "2021-07-05", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184241" + ], + "created_at": "2026-07-10T10:10:46.994977", + "updated_at": "2026-07-10T10:10:46.994977", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp063" +} diff --git a/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp064/index.json b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp064/index.json new file mode 100644 index 000000000000..94a4af2cb248 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp064/index.json @@ -0,0 +1,31 @@ +{ + "id": 156045, + "slug": "tiger-tank-59-black-hill-fortress-mp064", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP064", + "release_date": "2021-07-05", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184247" + ], + "created_at": "2026-07-10T10:10:46.994977", + "updated_at": "2026-07-10T10:10:46.994977", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp064" +} diff --git a/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp065/index.json b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp065/index.json new file mode 100644 index 000000000000..5f5b17405af7 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp065/index.json @@ -0,0 +1,31 @@ +{ + "id": 156046, + "slug": "tiger-tank-59-black-hill-fortress-mp065", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP065", + "release_date": "2021-07-05", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184250" + ], + "created_at": "2026-07-10T10:10:46.994977", + "updated_at": "2026-07-10T10:10:46.994977", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp065" +} diff --git a/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp066/index.json b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp066/index.json new file mode 100644 index 000000000000..7b59cf471161 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp066/index.json @@ -0,0 +1,31 @@ +{ + "id": 156047, + "slug": "tiger-tank-59-black-hill-fortress-mp066", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP066", + "release_date": "2021-07-05", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184252" + ], + "created_at": "2026-07-10T10:10:46.994977", + "updated_at": "2026-07-10T10:10:46.994977", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp066" +} diff --git a/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp067/index.json b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp067/index.json new file mode 100644 index 000000000000..255a09857219 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp067/index.json @@ -0,0 +1,31 @@ +{ + "id": 156048, + "slug": "tiger-tank-59-black-hill-fortress-mp067", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP067", + "release_date": "2021-07-05", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184254" + ], + "created_at": "2026-07-10T10:10:46.995967", + "updated_at": "2026-07-10T10:10:46.995967", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp067" +} diff --git a/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp068/index.json b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp068/index.json new file mode 100644 index 000000000000..c699f4cd9f0b --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp068/index.json @@ -0,0 +1,31 @@ +{ + "id": 156049, + "slug": "tiger-tank-59-black-hill-fortress-mp068", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP068", + "release_date": "2021-07-05", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184258" + ], + "created_at": "2026-07-10T10:10:46.995967", + "updated_at": "2026-07-10T10:10:46.995967", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp068" +} diff --git a/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp069/index.json b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp069/index.json new file mode 100644 index 000000000000..4d80285ab5a9 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp069/index.json @@ -0,0 +1,31 @@ +{ + "id": 156050, + "slug": "tiger-tank-59-black-hill-fortress-mp069", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP069", + "release_date": "2021-07-05", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184260" + ], + "created_at": "2026-07-10T10:10:46.995967", + "updated_at": "2026-07-10T10:10:46.995967", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp069" +} diff --git a/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp070/index.json b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp070/index.json new file mode 100644 index 000000000000..c3972a95801b --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp070/index.json @@ -0,0 +1,31 @@ +{ + "id": 156051, + "slug": "tiger-tank-59-black-hill-fortress-mp070", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP070", + "release_date": "2021-07-05", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184265" + ], + "created_at": "2026-07-10T10:10:46.995967", + "updated_at": "2026-07-10T10:10:46.995967", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp070" +} diff --git a/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp071/index.json b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp071/index.json new file mode 100644 index 000000000000..04a982faa544 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp071/index.json @@ -0,0 +1,31 @@ +{ + "id": 156052, + "slug": "tiger-tank-59-black-hill-fortress-mp071", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP071", + "release_date": "2021-07-05", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184273" + ], + "created_at": "2026-07-10T10:10:46.995967", + "updated_at": "2026-07-10T10:10:46.995967", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp071" +} diff --git a/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp072/index.json b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp072/index.json new file mode 100644 index 000000000000..0730d48ed515 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp072/index.json @@ -0,0 +1,31 @@ +{ + "id": 156053, + "slug": "tiger-tank-59-black-hill-fortress-mp072", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP072", + "release_date": "2021-07-05", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184278" + ], + "created_at": "2026-07-10T10:10:46.996983", + "updated_at": "2026-07-10T10:10:46.996983", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp072" +} diff --git a/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp073/index.json b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp073/index.json new file mode 100644 index 000000000000..561ea46df269 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp073/index.json @@ -0,0 +1,31 @@ +{ + "id": 156054, + "slug": "tiger-tank-59-black-hill-fortress-mp073", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP073", + "release_date": "2021-07-05", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184281" + ], + "created_at": "2026-07-10T10:10:46.996983", + "updated_at": "2026-07-10T10:10:46.996983", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp073" +} diff --git a/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp074/index.json b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp074/index.json new file mode 100644 index 000000000000..bb3c71ab0147 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp074/index.json @@ -0,0 +1,31 @@ +{ + "id": 156055, + "slug": "tiger-tank-59-black-hill-fortress-mp074", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP074", + "release_date": "2021-07-05", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184285" + ], + "created_at": "2026-07-10T10:10:46.996983", + "updated_at": "2026-07-10T10:10:46.996983", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp074" +} diff --git a/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp075/index.json b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp075/index.json new file mode 100644 index 000000000000..ce6754ccd5a5 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp075/index.json @@ -0,0 +1,31 @@ +{ + "id": 156056, + "slug": "tiger-tank-59-black-hill-fortress-mp075", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP075", + "release_date": "2021-07-05", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184288" + ], + "created_at": "2026-07-10T10:10:46.996983", + "updated_at": "2026-07-10T10:10:46.996983", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp075" +} diff --git a/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp076/index.json b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp076/index.json new file mode 100644 index 000000000000..32e69d47e889 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp076/index.json @@ -0,0 +1,31 @@ +{ + "id": 156057, + "slug": "tiger-tank-59-black-hill-fortress-mp076", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP076", + "release_date": "2021-07-05", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184290" + ], + "created_at": "2026-07-10T10:10:46.997983", + "updated_at": "2026-07-10T10:10:46.997983", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp076" +} diff --git a/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp077/index.json b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp077/index.json new file mode 100644 index 000000000000..073b5bc819dd --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp077/index.json @@ -0,0 +1,31 @@ +{ + "id": 156058, + "slug": "tiger-tank-59-black-hill-fortress-mp077", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP077", + "release_date": "2021-07-05", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184294" + ], + "created_at": "2026-07-10T10:10:46.997983", + "updated_at": "2026-07-10T10:10:46.997983", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp077" +} diff --git a/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp078/index.json b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp078/index.json new file mode 100644 index 000000000000..19ce0571eafd --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp078/index.json @@ -0,0 +1,31 @@ +{ + "id": 156059, + "slug": "tiger-tank-59-black-hill-fortress-mp078", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP078", + "release_date": "2021-07-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184297" + ], + "created_at": "2026-07-10T10:10:46.997983", + "updated_at": "2026-07-10T10:10:46.997983", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp078" +} diff --git a/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp079/index.json b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp079/index.json new file mode 100644 index 000000000000..2129c3031c93 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp079/index.json @@ -0,0 +1,31 @@ +{ + "id": 156060, + "slug": "tiger-tank-59-black-hill-fortress-mp079", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP079", + "release_date": "2021-07-05", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184299" + ], + "created_at": "2026-07-10T10:10:46.997983", + "updated_at": "2026-07-10T10:10:46.997983", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp079" +} diff --git a/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp080/index.json b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp080/index.json new file mode 100644 index 000000000000..41fc80158ec9 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp080/index.json @@ -0,0 +1,31 @@ +{ + "id": 156061, + "slug": "tiger-tank-59-black-hill-fortress-mp080", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP080", + "release_date": "2021-07-05", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184305" + ], + "created_at": "2026-07-10T10:10:46.997983", + "updated_at": "2026-07-10T10:10:46.997983", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp080" +} diff --git a/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp081/index.json b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp081/index.json new file mode 100644 index 000000000000..f85423b720de --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp081/index.json @@ -0,0 +1,31 @@ +{ + "id": 156062, + "slug": "tiger-tank-59-black-hill-fortress-mp081", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP081", + "release_date": "2021-07-05", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184315" + ], + "created_at": "2026-07-10T10:10:46.999029", + "updated_at": "2026-07-10T10:10:46.999029", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp081" +} diff --git a/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp082/index.json b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp082/index.json new file mode 100644 index 000000000000..34c919d22842 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp082/index.json @@ -0,0 +1,31 @@ +{ + "id": 156063, + "slug": "tiger-tank-59-black-hill-fortress-mp082", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP082", + "release_date": "2021-07-05", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184320" + ], + "created_at": "2026-07-10T10:10:46.999029", + "updated_at": "2026-07-10T10:10:46.999029", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp082" +} diff --git a/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp083/index.json b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp083/index.json new file mode 100644 index 000000000000..ce4e657e7ae2 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp083/index.json @@ -0,0 +1,31 @@ +{ + "id": 156064, + "slug": "tiger-tank-59-black-hill-fortress-mp083", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP083", + "release_date": "2021-07-05", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184322" + ], + "created_at": "2026-07-10T10:10:46.999029", + "updated_at": "2026-07-10T10:10:46.999029", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp083" +} diff --git a/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp084/index.json b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp084/index.json new file mode 100644 index 000000000000..d0e6ac1c18e9 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp084/index.json @@ -0,0 +1,31 @@ +{ + "id": 156065, + "slug": "tiger-tank-59-black-hill-fortress-mp084", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP084", + "release_date": "2021-07-05", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184327" + ], + "created_at": "2026-07-10T10:10:46.999912", + "updated_at": "2026-07-10T10:10:46.999912", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp084" +} diff --git a/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp085/index.json b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp085/index.json new file mode 100644 index 000000000000..1617c1d82adb --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp085/index.json @@ -0,0 +1,31 @@ +{ + "id": 156066, + "slug": "tiger-tank-59-black-hill-fortress-mp085", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP085", + "release_date": "2021-07-05", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184335" + ], + "created_at": "2026-07-10T10:10:46.999912", + "updated_at": "2026-07-10T10:10:46.999912", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp085" +} diff --git a/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp086/index.json b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp086/index.json new file mode 100644 index 000000000000..ab7f97d7c836 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp086/index.json @@ -0,0 +1,31 @@ +{ + "id": 156067, + "slug": "tiger-tank-59-black-hill-fortress-mp086", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP086", + "release_date": "2021-07-05", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184342" + ], + "created_at": "2026-07-10T10:10:46.999912", + "updated_at": "2026-07-10T10:10:46.999912", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp086" +} diff --git a/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp087/index.json b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp087/index.json new file mode 100644 index 000000000000..3e7e508245f1 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp087/index.json @@ -0,0 +1,31 @@ +{ + "id": 156068, + "slug": "tiger-tank-59-black-hill-fortress-mp087", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP087", + "release_date": "2021-07-05", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184345" + ], + "created_at": "2026-07-10T10:10:46.999912", + "updated_at": "2026-07-10T10:10:46.999912", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp087" +} diff --git a/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp088/index.json b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp088/index.json new file mode 100644 index 000000000000..3f5c88445e8d --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp088/index.json @@ -0,0 +1,31 @@ +{ + "id": 156069, + "slug": "tiger-tank-59-black-hill-fortress-mp088", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP088", + "release_date": "2021-07-05", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184347" + ], + "created_at": "2026-07-10T10:10:46.999912", + "updated_at": "2026-07-10T10:10:46.999912", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp088" +} diff --git a/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp089/index.json b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp089/index.json new file mode 100644 index 000000000000..c5c227a965bb --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp089/index.json @@ -0,0 +1,31 @@ +{ + "id": 156070, + "slug": "tiger-tank-59-black-hill-fortress-mp089", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP089", + "release_date": "2021-07-05", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184351" + ], + "created_at": "2026-07-10T10:10:47.000909", + "updated_at": "2026-07-10T10:10:47.000909", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp089" +} diff --git a/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp090/index.json b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp090/index.json new file mode 100644 index 000000000000..abff58c80254 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp090/index.json @@ -0,0 +1,31 @@ +{ + "id": 156071, + "slug": "tiger-tank-59-black-hill-fortress-mp090", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP090", + "release_date": "2021-07-05", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184354" + ], + "created_at": "2026-07-10T10:10:47.000909", + "updated_at": "2026-07-10T10:10:47.000909", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp090" +} diff --git a/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp091/index.json b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp091/index.json new file mode 100644 index 000000000000..5afc00e9597c --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp091/index.json @@ -0,0 +1,31 @@ +{ + "id": 156072, + "slug": "tiger-tank-59-black-hill-fortress-mp091", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP091", + "release_date": "2021-07-05", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184359" + ], + "created_at": "2026-07-10T10:10:47.000909", + "updated_at": "2026-07-10T10:10:47.000909", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp091" +} diff --git a/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp092/index.json b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp092/index.json new file mode 100644 index 000000000000..99a9c5a30241 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp092/index.json @@ -0,0 +1,31 @@ +{ + "id": 156073, + "slug": "tiger-tank-59-black-hill-fortress-mp092", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP092", + "release_date": "2021-07-05", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184360" + ], + "created_at": "2026-07-10T10:10:47.000909", + "updated_at": "2026-07-10T10:10:47.000909", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp092" +} diff --git a/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp093/index.json b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp093/index.json new file mode 100644 index 000000000000..06f37e9492c9 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp093/index.json @@ -0,0 +1,31 @@ +{ + "id": 156074, + "slug": "tiger-tank-59-black-hill-fortress-mp093", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP093", + "release_date": "2021-07-05", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184361" + ], + "created_at": "2026-07-10T10:10:47.000909", + "updated_at": "2026-07-10T10:10:47.000909", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp093" +} diff --git a/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp094/index.json b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp094/index.json new file mode 100644 index 000000000000..8a22e7e23f31 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp094/index.json @@ -0,0 +1,31 @@ +{ + "id": 156075, + "slug": "tiger-tank-59-black-hill-fortress-mp094", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP094", + "release_date": "2021-07-05", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184364" + ], + "created_at": "2026-07-10T10:10:47.001909", + "updated_at": "2026-07-10T10:10:47.001909", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp094" +} diff --git a/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp095/index.json b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp095/index.json new file mode 100644 index 000000000000..037fb0a95ee6 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp095/index.json @@ -0,0 +1,31 @@ +{ + "id": 156076, + "slug": "tiger-tank-59-black-hill-fortress-mp095", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP095", + "release_date": "2021-07-05", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184368" + ], + "created_at": "2026-07-10T10:10:47.001909", + "updated_at": "2026-07-10T10:10:47.001909", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp095" +} diff --git a/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp096/index.json b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp096/index.json new file mode 100644 index 000000000000..b23b9a92badc --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp096/index.json @@ -0,0 +1,31 @@ +{ + "id": 156077, + "slug": "tiger-tank-59-black-hill-fortress-mp096", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP096", + "release_date": "2021-07-05", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184372" + ], + "created_at": "2026-07-10T10:10:47.001909", + "updated_at": "2026-07-10T10:10:47.001909", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp096" +} diff --git a/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp097/index.json b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp097/index.json new file mode 100644 index 000000000000..3a7b6f7fddb6 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp097/index.json @@ -0,0 +1,31 @@ +{ + "id": 156078, + "slug": "tiger-tank-59-black-hill-fortress-mp097", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP097", + "release_date": "2021-07-05", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184375" + ], + "created_at": "2026-07-10T10:10:47.001909", + "updated_at": "2026-07-10T10:10:47.001909", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp097" +} diff --git a/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp098/index.json b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp098/index.json new file mode 100644 index 000000000000..aa9204fce03c --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp098/index.json @@ -0,0 +1,31 @@ +{ + "id": 156079, + "slug": "tiger-tank-59-black-hill-fortress-mp098", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP098", + "release_date": "2021-07-05", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184379" + ], + "created_at": "2026-07-10T10:10:47.003005", + "updated_at": "2026-07-10T10:10:47.003005", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp098" +} diff --git a/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp099/index.json b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp099/index.json new file mode 100644 index 000000000000..6306287d745f --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp099/index.json @@ -0,0 +1,31 @@ +{ + "id": 156080, + "slug": "tiger-tank-59-black-hill-fortress-mp099", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP099", + "release_date": "2021-07-05", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184381" + ], + "created_at": "2026-07-10T10:10:47.003005", + "updated_at": "2026-07-10T10:10:47.003005", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp099" +} diff --git a/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp100/index.json b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp100/index.json new file mode 100644 index 000000000000..9f1c5581926f --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-black-hill-fortress-mp100/index.json @@ -0,0 +1,31 @@ +{ + "id": 156081, + "slug": "tiger-tank-59-black-hill-fortress-mp100", + "name": "Tiger Tank 59 Ⅰ Black Hill Fortress MP100", + "release_date": "2021-07-05", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184386" + ], + "created_at": "2026-07-10T10:10:47.003005", + "updated_at": "2026-07-10T10:10:47.003005", + "url": "/v1/games/tiger-tank-59-black-hill-fortress-mp100" +} diff --git a/site/public/v1/games/tiger-tank-59-break-the-fog-mp001/index.json b/site/public/v1/games/tiger-tank-59-break-the-fog-mp001/index.json new file mode 100644 index 000000000000..18128691ef59 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-break-the-fog-mp001/index.json @@ -0,0 +1,31 @@ +{ + "id": 156083, + "slug": "tiger-tank-59-break-the-fog-mp001", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP001", + "release_date": "2021-07-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184388" + ], + "created_at": "2026-07-10T10:10:47.003005", + "updated_at": "2026-07-10T10:10:47.003005", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp001" +} diff --git a/site/public/v1/games/tiger-tank-59-break-the-fog-mp002/index.json b/site/public/v1/games/tiger-tank-59-break-the-fog-mp002/index.json new file mode 100644 index 000000000000..895f02a1e7ca --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-break-the-fog-mp002/index.json @@ -0,0 +1,31 @@ +{ + "id": 156084, + "slug": "tiger-tank-59-break-the-fog-mp002", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP002", + "release_date": "2021-07-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184391" + ], + "created_at": "2026-07-10T10:10:47.003983", + "updated_at": "2026-07-10T10:10:47.003983", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp002" +} diff --git a/site/public/v1/games/tiger-tank-59-break-the-fog-mp003/index.json b/site/public/v1/games/tiger-tank-59-break-the-fog-mp003/index.json new file mode 100644 index 000000000000..fbbe5a8d6941 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-break-the-fog-mp003/index.json @@ -0,0 +1,31 @@ +{ + "id": 156085, + "slug": "tiger-tank-59-break-the-fog-mp003", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP003", + "release_date": "2021-07-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184395" + ], + "created_at": "2026-07-10T10:10:47.003983", + "updated_at": "2026-07-10T10:10:47.003983", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp003" +} diff --git a/site/public/v1/games/tiger-tank-59-break-the-fog-mp004/index.json b/site/public/v1/games/tiger-tank-59-break-the-fog-mp004/index.json new file mode 100644 index 000000000000..3c068ff5622a --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-break-the-fog-mp004/index.json @@ -0,0 +1,31 @@ +{ + "id": 156086, + "slug": "tiger-tank-59-break-the-fog-mp004", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP004", + "release_date": "2021-07-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184397" + ], + "created_at": "2026-07-10T10:10:47.003983", + "updated_at": "2026-07-10T10:10:47.003983", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp004" +} diff --git a/site/public/v1/games/tiger-tank-59-break-the-fog-mp005/index.json b/site/public/v1/games/tiger-tank-59-break-the-fog-mp005/index.json new file mode 100644 index 000000000000..0aca234b04d9 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-break-the-fog-mp005/index.json @@ -0,0 +1,31 @@ +{ + "id": 156087, + "slug": "tiger-tank-59-break-the-fog-mp005", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP005", + "release_date": "2021-07-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184403" + ], + "created_at": "2026-07-10T10:10:47.003983", + "updated_at": "2026-07-10T10:10:47.003983", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp005" +} diff --git a/site/public/v1/games/tiger-tank-59-break-the-fog-mp006/index.json b/site/public/v1/games/tiger-tank-59-break-the-fog-mp006/index.json new file mode 100644 index 000000000000..663f2b51e910 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-break-the-fog-mp006/index.json @@ -0,0 +1,31 @@ +{ + "id": 156088, + "slug": "tiger-tank-59-break-the-fog-mp006", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP006", + "release_date": "2021-07-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184407" + ], + "created_at": "2026-07-10T10:10:47.004977", + "updated_at": "2026-07-10T10:10:47.004977", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp006" +} diff --git a/site/public/v1/games/tiger-tank-59-break-the-fog-mp007/index.json b/site/public/v1/games/tiger-tank-59-break-the-fog-mp007/index.json new file mode 100644 index 000000000000..fbbb802314b0 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-break-the-fog-mp007/index.json @@ -0,0 +1,31 @@ +{ + "id": 156089, + "slug": "tiger-tank-59-break-the-fog-mp007", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP007", + "release_date": "2021-07-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184413" + ], + "created_at": "2026-07-10T10:10:47.004977", + "updated_at": "2026-07-10T10:10:47.004977", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp007" +} diff --git a/site/public/v1/games/tiger-tank-59-break-the-fog-mp008/index.json b/site/public/v1/games/tiger-tank-59-break-the-fog-mp008/index.json new file mode 100644 index 000000000000..0e665c47164e --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-break-the-fog-mp008/index.json @@ -0,0 +1,31 @@ +{ + "id": 156090, + "slug": "tiger-tank-59-break-the-fog-mp008", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP008", + "release_date": "2021-07-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184415" + ], + "created_at": "2026-07-10T10:10:47.004977", + "updated_at": "2026-07-10T10:10:47.004977", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp008" +} diff --git a/site/public/v1/games/tiger-tank-59-break-the-fog-mp009/index.json b/site/public/v1/games/tiger-tank-59-break-the-fog-mp009/index.json new file mode 100644 index 000000000000..6b3c803dcfbc --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-break-the-fog-mp009/index.json @@ -0,0 +1,31 @@ +{ + "id": 156091, + "slug": "tiger-tank-59-break-the-fog-mp009", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP009", + "release_date": "2021-07-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184418" + ], + "created_at": "2026-07-10T10:10:47.004977", + "updated_at": "2026-07-10T10:10:47.004977", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp009" +} diff --git a/site/public/v1/games/tiger-tank-59-break-the-fog-mp010/index.json b/site/public/v1/games/tiger-tank-59-break-the-fog-mp010/index.json new file mode 100644 index 000000000000..2dcc17647d58 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-break-the-fog-mp010/index.json @@ -0,0 +1,31 @@ +{ + "id": 156092, + "slug": "tiger-tank-59-break-the-fog-mp010", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP010", + "release_date": "2021-07-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184420" + ], + "created_at": "2026-07-10T10:10:47.004977", + "updated_at": "2026-07-10T10:10:47.004977", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp010" +} diff --git a/site/public/v1/games/tiger-tank-59-break-the-fog-mp011/index.json b/site/public/v1/games/tiger-tank-59-break-the-fog-mp011/index.json new file mode 100644 index 000000000000..f7be9cc2d9d6 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-break-the-fog-mp011/index.json @@ -0,0 +1,31 @@ +{ + "id": 156093, + "slug": "tiger-tank-59-break-the-fog-mp011", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP011", + "release_date": "2021-07-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184424" + ], + "created_at": "2026-07-10T10:10:47.005993", + "updated_at": "2026-07-10T10:10:47.005993", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp011" +} diff --git a/site/public/v1/games/tiger-tank-59-break-the-fog-mp012/index.json b/site/public/v1/games/tiger-tank-59-break-the-fog-mp012/index.json new file mode 100644 index 000000000000..7136a57099fb --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-break-the-fog-mp012/index.json @@ -0,0 +1,31 @@ +{ + "id": 156094, + "slug": "tiger-tank-59-break-the-fog-mp012", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP012", + "release_date": "2021-07-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184426" + ], + "created_at": "2026-07-10T10:10:47.005993", + "updated_at": "2026-07-10T10:10:47.005993", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp012" +} diff --git a/site/public/v1/games/tiger-tank-59-break-the-fog-mp013/index.json b/site/public/v1/games/tiger-tank-59-break-the-fog-mp013/index.json new file mode 100644 index 000000000000..50f79e7b2ece --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-break-the-fog-mp013/index.json @@ -0,0 +1,31 @@ +{ + "id": 156095, + "slug": "tiger-tank-59-break-the-fog-mp013", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP013", + "release_date": "2021-07-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184431" + ], + "created_at": "2026-07-10T10:10:47.005993", + "updated_at": "2026-07-10T10:10:47.005993", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp013" +} diff --git a/site/public/v1/games/tiger-tank-59-break-the-fog-mp014/index.json b/site/public/v1/games/tiger-tank-59-break-the-fog-mp014/index.json new file mode 100644 index 000000000000..4e0ee7164891 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-break-the-fog-mp014/index.json @@ -0,0 +1,31 @@ +{ + "id": 156096, + "slug": "tiger-tank-59-break-the-fog-mp014", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP014", + "release_date": "2021-07-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184433" + ], + "created_at": "2026-07-10T10:10:47.005993", + "updated_at": "2026-07-10T10:10:47.005993", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp014" +} diff --git a/site/public/v1/games/tiger-tank-59-break-the-fog-mp015/index.json b/site/public/v1/games/tiger-tank-59-break-the-fog-mp015/index.json new file mode 100644 index 000000000000..46478b8f3e01 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-break-the-fog-mp015/index.json @@ -0,0 +1,31 @@ +{ + "id": 156097, + "slug": "tiger-tank-59-break-the-fog-mp015", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP015", + "release_date": "2021-07-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184436" + ], + "created_at": "2026-07-10T10:10:47.006982", + "updated_at": "2026-07-10T10:10:47.006982", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp015" +} diff --git a/site/public/v1/games/tiger-tank-59-break-the-fog-mp016/index.json b/site/public/v1/games/tiger-tank-59-break-the-fog-mp016/index.json new file mode 100644 index 000000000000..ad6e33f1bff0 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-break-the-fog-mp016/index.json @@ -0,0 +1,31 @@ +{ + "id": 156098, + "slug": "tiger-tank-59-break-the-fog-mp016", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP016", + "release_date": "2021-07-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184440" + ], + "created_at": "2026-07-10T10:10:47.006982", + "updated_at": "2026-07-10T10:10:47.006982", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp016" +} diff --git a/site/public/v1/games/tiger-tank-59-break-the-fog-mp017/index.json b/site/public/v1/games/tiger-tank-59-break-the-fog-mp017/index.json new file mode 100644 index 000000000000..601e12eba5d9 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-break-the-fog-mp017/index.json @@ -0,0 +1,31 @@ +{ + "id": 156099, + "slug": "tiger-tank-59-break-the-fog-mp017", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP017", + "release_date": "2021-07-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184442" + ], + "created_at": "2026-07-10T10:10:47.006982", + "updated_at": "2026-07-10T10:10:47.006982", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp017" +} diff --git a/site/public/v1/games/tiger-tank-59-break-the-fog-mp018/index.json b/site/public/v1/games/tiger-tank-59-break-the-fog-mp018/index.json new file mode 100644 index 000000000000..8f53e2923b49 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-break-the-fog-mp018/index.json @@ -0,0 +1,31 @@ +{ + "id": 156100, + "slug": "tiger-tank-59-break-the-fog-mp018", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP018", + "release_date": "2021-07-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184445" + ], + "created_at": "2026-07-10T10:10:47.006982", + "updated_at": "2026-07-10T10:10:47.006982", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp018" +} diff --git a/site/public/v1/games/tiger-tank-59-break-the-fog-mp019/index.json b/site/public/v1/games/tiger-tank-59-break-the-fog-mp019/index.json new file mode 100644 index 000000000000..6c8c3e1f7e23 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-break-the-fog-mp019/index.json @@ -0,0 +1,31 @@ +{ + "id": 156101, + "slug": "tiger-tank-59-break-the-fog-mp019", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP019", + "release_date": "2021-07-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184450" + ], + "created_at": "2026-07-10T10:10:47.006982", + "updated_at": "2026-07-10T10:10:47.006982", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp019" +} diff --git a/site/public/v1/games/tiger-tank-59-break-the-fog-mp020/index.json b/site/public/v1/games/tiger-tank-59-break-the-fog-mp020/index.json new file mode 100644 index 000000000000..51a5baeecc5d --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-break-the-fog-mp020/index.json @@ -0,0 +1,31 @@ +{ + "id": 156102, + "slug": "tiger-tank-59-break-the-fog-mp020", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP020", + "release_date": "2021-07-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184455" + ], + "created_at": "2026-07-10T10:10:47.007983", + "updated_at": "2026-07-10T10:10:47.007983", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp020" +} diff --git a/site/public/v1/games/tiger-tank-59-break-the-fog-mp021/index.json b/site/public/v1/games/tiger-tank-59-break-the-fog-mp021/index.json new file mode 100644 index 000000000000..26c80623e29e --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-break-the-fog-mp021/index.json @@ -0,0 +1,31 @@ +{ + "id": 156103, + "slug": "tiger-tank-59-break-the-fog-mp021", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP021", + "release_date": "2021-07-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184459" + ], + "created_at": "2026-07-10T10:10:47.007983", + "updated_at": "2026-07-10T10:10:47.007983", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp021" +} diff --git a/site/public/v1/games/tiger-tank-59-break-the-fog-mp022/index.json b/site/public/v1/games/tiger-tank-59-break-the-fog-mp022/index.json new file mode 100644 index 000000000000..6eb60a65196b --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-break-the-fog-mp022/index.json @@ -0,0 +1,31 @@ +{ + "id": 156104, + "slug": "tiger-tank-59-break-the-fog-mp022", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP022", + "release_date": "2021-07-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184462" + ], + "created_at": "2026-07-10T10:10:47.007983", + "updated_at": "2026-07-10T10:10:47.007983", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp022" +} diff --git a/site/public/v1/games/tiger-tank-59-break-the-fog-mp023/index.json b/site/public/v1/games/tiger-tank-59-break-the-fog-mp023/index.json new file mode 100644 index 000000000000..d97db9b23388 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-break-the-fog-mp023/index.json @@ -0,0 +1,31 @@ +{ + "id": 156105, + "slug": "tiger-tank-59-break-the-fog-mp023", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP023", + "release_date": "2021-07-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184468" + ], + "created_at": "2026-07-10T10:10:47.008562", + "updated_at": "2026-07-10T10:10:47.008562", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp023" +} diff --git a/site/public/v1/games/tiger-tank-59-break-the-fog-mp024/index.json b/site/public/v1/games/tiger-tank-59-break-the-fog-mp024/index.json new file mode 100644 index 000000000000..bb75656e2c82 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-break-the-fog-mp024/index.json @@ -0,0 +1,31 @@ +{ + "id": 156106, + "slug": "tiger-tank-59-break-the-fog-mp024", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP024", + "release_date": "2021-07-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184473" + ], + "created_at": "2026-07-10T10:10:47.008562", + "updated_at": "2026-07-10T10:10:47.008562", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp024" +} diff --git a/site/public/v1/games/tiger-tank-59-break-the-fog-mp025/index.json b/site/public/v1/games/tiger-tank-59-break-the-fog-mp025/index.json new file mode 100644 index 000000000000..e55145360a22 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-break-the-fog-mp025/index.json @@ -0,0 +1,31 @@ +{ + "id": 156107, + "slug": "tiger-tank-59-break-the-fog-mp025", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP025", + "release_date": "2021-07-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184476" + ], + "created_at": "2026-07-10T10:10:47.008562", + "updated_at": "2026-07-10T10:10:47.008562", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp025" +} diff --git a/site/public/v1/games/tiger-tank-59-break-the-fog-mp026/index.json b/site/public/v1/games/tiger-tank-59-break-the-fog-mp026/index.json new file mode 100644 index 000000000000..3bb2866733ab --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-break-the-fog-mp026/index.json @@ -0,0 +1,31 @@ +{ + "id": 156108, + "slug": "tiger-tank-59-break-the-fog-mp026", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP026", + "release_date": "2021-07-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184485" + ], + "created_at": "2026-07-10T10:10:47.009396", + "updated_at": "2026-07-10T10:10:47.009396", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp026" +} diff --git a/site/public/v1/games/tiger-tank-59-break-the-fog-mp027/index.json b/site/public/v1/games/tiger-tank-59-break-the-fog-mp027/index.json new file mode 100644 index 000000000000..6eb4152f9db1 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-break-the-fog-mp027/index.json @@ -0,0 +1,31 @@ +{ + "id": 156109, + "slug": "tiger-tank-59-break-the-fog-mp027", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP027", + "release_date": "2021-07-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184489" + ], + "created_at": "2026-07-10T10:10:47.009396", + "updated_at": "2026-07-10T10:10:47.009396", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp027" +} diff --git a/site/public/v1/games/tiger-tank-59-break-the-fog-mp028/index.json b/site/public/v1/games/tiger-tank-59-break-the-fog-mp028/index.json new file mode 100644 index 000000000000..fb50f750ffcc --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-break-the-fog-mp028/index.json @@ -0,0 +1,31 @@ +{ + "id": 156110, + "slug": "tiger-tank-59-break-the-fog-mp028", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP028", + "release_date": "2021-07-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184491" + ], + "created_at": "2026-07-10T10:10:47.009739", + "updated_at": "2026-07-10T10:10:47.009739", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp028" +} diff --git a/site/public/v1/games/tiger-tank-59-break-the-fog-mp029/index.json b/site/public/v1/games/tiger-tank-59-break-the-fog-mp029/index.json new file mode 100644 index 000000000000..04b869176c83 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-break-the-fog-mp029/index.json @@ -0,0 +1,31 @@ +{ + "id": 156111, + "slug": "tiger-tank-59-break-the-fog-mp029", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP029", + "release_date": "2021-07-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184498" + ], + "created_at": "2026-07-10T10:10:47.009739", + "updated_at": "2026-07-10T10:10:47.009739", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp029" +} diff --git a/site/public/v1/games/tiger-tank-59-break-the-fog-mp030/index.json b/site/public/v1/games/tiger-tank-59-break-the-fog-mp030/index.json new file mode 100644 index 000000000000..e718e1235085 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-break-the-fog-mp030/index.json @@ -0,0 +1,31 @@ +{ + "id": 156112, + "slug": "tiger-tank-59-break-the-fog-mp030", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP030", + "release_date": "2021-07-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184502" + ], + "created_at": "2026-07-10T10:10:47.009739", + "updated_at": "2026-07-10T10:10:47.009739", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp030" +} diff --git a/site/public/v1/games/tiger-tank-59-break-the-fog-mp031/index.json b/site/public/v1/games/tiger-tank-59-break-the-fog-mp031/index.json new file mode 100644 index 000000000000..077ad7172308 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-break-the-fog-mp031/index.json @@ -0,0 +1,31 @@ +{ + "id": 156113, + "slug": "tiger-tank-59-break-the-fog-mp031", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP031", + "release_date": "2021-07-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184505" + ], + "created_at": "2026-07-10T10:10:47.009739", + "updated_at": "2026-07-10T10:10:47.010477", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp031" +} diff --git a/site/public/v1/games/tiger-tank-59-break-the-fog-mp032/index.json b/site/public/v1/games/tiger-tank-59-break-the-fog-mp032/index.json new file mode 100644 index 000000000000..8ccab06f6bdc --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-break-the-fog-mp032/index.json @@ -0,0 +1,31 @@ +{ + "id": 156114, + "slug": "tiger-tank-59-break-the-fog-mp032", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP032", + "release_date": "2021-07-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184509" + ], + "created_at": "2026-07-10T10:10:47.010477", + "updated_at": "2026-07-10T10:10:47.010477", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp032" +} diff --git a/site/public/v1/games/tiger-tank-59-break-the-fog-mp033/index.json b/site/public/v1/games/tiger-tank-59-break-the-fog-mp033/index.json new file mode 100644 index 000000000000..7f39093c84f8 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-break-the-fog-mp033/index.json @@ -0,0 +1,31 @@ +{ + "id": 156115, + "slug": "tiger-tank-59-break-the-fog-mp033", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP033", + "release_date": "2021-07-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184514" + ], + "created_at": "2026-07-10T10:10:47.010477", + "updated_at": "2026-07-10T10:10:47.010477", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp033" +} diff --git a/site/public/v1/games/tiger-tank-59-break-the-fog-mp034/index.json b/site/public/v1/games/tiger-tank-59-break-the-fog-mp034/index.json new file mode 100644 index 000000000000..bb84d03eb1a4 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-break-the-fog-mp034/index.json @@ -0,0 +1,31 @@ +{ + "id": 156116, + "slug": "tiger-tank-59-break-the-fog-mp034", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP034", + "release_date": "2021-07-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184521" + ], + "created_at": "2026-07-10T10:10:47.011048", + "updated_at": "2026-07-10T10:10:47.011048", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp034" +} diff --git a/site/public/v1/games/tiger-tank-59-break-the-fog-mp035/index.json b/site/public/v1/games/tiger-tank-59-break-the-fog-mp035/index.json new file mode 100644 index 000000000000..492a1e90ae26 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-break-the-fog-mp035/index.json @@ -0,0 +1,31 @@ +{ + "id": 156117, + "slug": "tiger-tank-59-break-the-fog-mp035", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP035", + "release_date": "2021-07-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184523" + ], + "created_at": "2026-07-10T10:10:47.011048", + "updated_at": "2026-07-10T10:10:47.011048", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp035" +} diff --git a/site/public/v1/games/tiger-tank-59-break-the-fog-mp036/index.json b/site/public/v1/games/tiger-tank-59-break-the-fog-mp036/index.json new file mode 100644 index 000000000000..11b54b218140 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-break-the-fog-mp036/index.json @@ -0,0 +1,31 @@ +{ + "id": 156118, + "slug": "tiger-tank-59-break-the-fog-mp036", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP036", + "release_date": "2021-07-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184526" + ], + "created_at": "2026-07-10T10:10:47.011048", + "updated_at": "2026-07-10T10:10:47.011048", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp036" +} diff --git a/site/public/v1/games/tiger-tank-59-break-the-fog-mp037/index.json b/site/public/v1/games/tiger-tank-59-break-the-fog-mp037/index.json new file mode 100644 index 000000000000..829070e373cc --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-break-the-fog-mp037/index.json @@ -0,0 +1,31 @@ +{ + "id": 156119, + "slug": "tiger-tank-59-break-the-fog-mp037", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP037", + "release_date": "2021-07-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184532" + ], + "created_at": "2026-07-10T10:10:47.011651", + "updated_at": "2026-07-10T10:10:47.011651", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp037" +} diff --git a/site/public/v1/games/tiger-tank-59-break-the-fog-mp038/index.json b/site/public/v1/games/tiger-tank-59-break-the-fog-mp038/index.json new file mode 100644 index 000000000000..e0cb4603f7dd --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-break-the-fog-mp038/index.json @@ -0,0 +1,31 @@ +{ + "id": 156120, + "slug": "tiger-tank-59-break-the-fog-mp038", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP038", + "release_date": "2021-07-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184546" + ], + "created_at": "2026-07-10T10:10:47.011651", + "updated_at": "2026-07-10T10:10:47.011651", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp038" +} diff --git a/site/public/v1/games/tiger-tank-59-break-the-fog-mp039/index.json b/site/public/v1/games/tiger-tank-59-break-the-fog-mp039/index.json new file mode 100644 index 000000000000..4c966bfd7883 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-break-the-fog-mp039/index.json @@ -0,0 +1,31 @@ +{ + "id": 156121, + "slug": "tiger-tank-59-break-the-fog-mp039", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP039", + "release_date": "2021-07-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184555" + ], + "created_at": "2026-07-10T10:10:47.012292", + "updated_at": "2026-07-10T10:10:47.012292", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp039" +} diff --git a/site/public/v1/games/tiger-tank-59-break-the-fog-mp040/index.json b/site/public/v1/games/tiger-tank-59-break-the-fog-mp040/index.json new file mode 100644 index 000000000000..0602db563dd8 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-break-the-fog-mp040/index.json @@ -0,0 +1,31 @@ +{ + "id": 156122, + "slug": "tiger-tank-59-break-the-fog-mp040", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP040", + "release_date": "2021-07-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184566" + ], + "created_at": "2026-07-10T10:10:47.012292", + "updated_at": "2026-07-10T10:10:47.012292", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp040" +} diff --git a/site/public/v1/games/tiger-tank-59-break-the-fog-mp041/index.json b/site/public/v1/games/tiger-tank-59-break-the-fog-mp041/index.json new file mode 100644 index 000000000000..f3a630a1cc89 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-break-the-fog-mp041/index.json @@ -0,0 +1,31 @@ +{ + "id": 156123, + "slug": "tiger-tank-59-break-the-fog-mp041", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP041", + "release_date": "2021-07-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184572" + ], + "created_at": "2026-07-10T10:10:47.012292", + "updated_at": "2026-07-10T10:10:47.012292", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp041" +} diff --git a/site/public/v1/games/tiger-tank-59-break-the-fog-mp042/index.json b/site/public/v1/games/tiger-tank-59-break-the-fog-mp042/index.json new file mode 100644 index 000000000000..7ecbd6bfd1b3 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-break-the-fog-mp042/index.json @@ -0,0 +1,31 @@ +{ + "id": 156124, + "slug": "tiger-tank-59-break-the-fog-mp042", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP042", + "release_date": "2021-07-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184580" + ], + "created_at": "2026-07-10T10:10:47.012292", + "updated_at": "2026-07-10T10:10:47.012292", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp042" +} diff --git a/site/public/v1/games/tiger-tank-59-break-the-fog-mp043/index.json b/site/public/v1/games/tiger-tank-59-break-the-fog-mp043/index.json new file mode 100644 index 000000000000..4719df08f184 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-break-the-fog-mp043/index.json @@ -0,0 +1,31 @@ +{ + "id": 156125, + "slug": "tiger-tank-59-break-the-fog-mp043", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP043", + "release_date": "2021-07-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184591" + ], + "created_at": "2026-07-10T10:10:47.012923", + "updated_at": "2026-07-10T10:10:47.012923", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp043" +} diff --git a/site/public/v1/games/tiger-tank-59-break-the-fog-mp044/index.json b/site/public/v1/games/tiger-tank-59-break-the-fog-mp044/index.json new file mode 100644 index 000000000000..1a69d2f5e9dd --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-break-the-fog-mp044/index.json @@ -0,0 +1,31 @@ +{ + "id": 156126, + "slug": "tiger-tank-59-break-the-fog-mp044", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP044", + "release_date": "2021-07-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184600" + ], + "created_at": "2026-07-10T10:10:47.012923", + "updated_at": "2026-07-10T10:10:47.012923", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp044" +} diff --git a/site/public/v1/games/tiger-tank-59-break-the-fog-mp045/index.json b/site/public/v1/games/tiger-tank-59-break-the-fog-mp045/index.json new file mode 100644 index 000000000000..0cb3cac3a302 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-break-the-fog-mp045/index.json @@ -0,0 +1,31 @@ +{ + "id": 156127, + "slug": "tiger-tank-59-break-the-fog-mp045", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP045", + "release_date": "2021-07-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184604" + ], + "created_at": "2026-07-10T10:10:47.012923", + "updated_at": "2026-07-10T10:10:47.012923", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp045" +} diff --git a/site/public/v1/games/tiger-tank-59-break-the-fog-mp046/index.json b/site/public/v1/games/tiger-tank-59-break-the-fog-mp046/index.json new file mode 100644 index 000000000000..7bb5d431454d --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-break-the-fog-mp046/index.json @@ -0,0 +1,31 @@ +{ + "id": 156128, + "slug": "tiger-tank-59-break-the-fog-mp046", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP046", + "release_date": "2021-07-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184608" + ], + "created_at": "2026-07-10T10:10:47.013605", + "updated_at": "2026-07-10T10:10:47.013605", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp046" +} diff --git a/site/public/v1/games/tiger-tank-59-break-the-fog-mp047/index.json b/site/public/v1/games/tiger-tank-59-break-the-fog-mp047/index.json new file mode 100644 index 000000000000..47c36feb6571 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-break-the-fog-mp047/index.json @@ -0,0 +1,31 @@ +{ + "id": 156129, + "slug": "tiger-tank-59-break-the-fog-mp047", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP047", + "release_date": "2021-07-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184612" + ], + "created_at": "2026-07-10T10:10:47.013605", + "updated_at": "2026-07-10T10:10:47.013605", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp047" +} diff --git a/site/public/v1/games/tiger-tank-59-break-the-fog-mp048/index.json b/site/public/v1/games/tiger-tank-59-break-the-fog-mp048/index.json new file mode 100644 index 000000000000..5373f2e98442 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-break-the-fog-mp048/index.json @@ -0,0 +1,31 @@ +{ + "id": 156130, + "slug": "tiger-tank-59-break-the-fog-mp048", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP048", + "release_date": "2021-07-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184616" + ], + "created_at": "2026-07-10T10:10:47.014275", + "updated_at": "2026-07-10T10:10:47.014275", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp048" +} diff --git a/site/public/v1/games/tiger-tank-59-break-the-fog-mp049/index.json b/site/public/v1/games/tiger-tank-59-break-the-fog-mp049/index.json new file mode 100644 index 000000000000..d4090112cf02 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-break-the-fog-mp049/index.json @@ -0,0 +1,31 @@ +{ + "id": 156131, + "slug": "tiger-tank-59-break-the-fog-mp049", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP049", + "release_date": "2021-07-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184619" + ], + "created_at": "2026-07-10T10:10:47.014275", + "updated_at": "2026-07-10T10:10:47.014275", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp049" +} diff --git a/site/public/v1/games/tiger-tank-59-break-the-fog-mp050/index.json b/site/public/v1/games/tiger-tank-59-break-the-fog-mp050/index.json new file mode 100644 index 000000000000..a5fad996a351 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-break-the-fog-mp050/index.json @@ -0,0 +1,31 @@ +{ + "id": 156132, + "slug": "tiger-tank-59-break-the-fog-mp050", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP050", + "release_date": "2021-07-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184623" + ], + "created_at": "2026-07-10T10:10:47.014275", + "updated_at": "2026-07-10T10:10:47.014275", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp050" +} diff --git a/site/public/v1/games/tiger-tank-59-break-the-fog-mp051/index.json b/site/public/v1/games/tiger-tank-59-break-the-fog-mp051/index.json new file mode 100644 index 000000000000..efeb5fe4afba --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-break-the-fog-mp051/index.json @@ -0,0 +1,31 @@ +{ + "id": 156133, + "slug": "tiger-tank-59-break-the-fog-mp051", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP051", + "release_date": "2021-07-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184628" + ], + "created_at": "2026-07-10T10:10:47.014275", + "updated_at": "2026-07-10T10:10:47.014275", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp051" +} diff --git a/site/public/v1/games/tiger-tank-59-break-the-fog-mp052/index.json b/site/public/v1/games/tiger-tank-59-break-the-fog-mp052/index.json new file mode 100644 index 000000000000..edb12d261464 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-break-the-fog-mp052/index.json @@ -0,0 +1,31 @@ +{ + "id": 156134, + "slug": "tiger-tank-59-break-the-fog-mp052", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP052", + "release_date": "2021-07-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184631" + ], + "created_at": "2026-07-10T10:10:47.015042", + "updated_at": "2026-07-10T10:10:47.015042", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp052" +} diff --git a/site/public/v1/games/tiger-tank-59-break-the-fog-mp053/index.json b/site/public/v1/games/tiger-tank-59-break-the-fog-mp053/index.json new file mode 100644 index 000000000000..2738597da003 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-break-the-fog-mp053/index.json @@ -0,0 +1,31 @@ +{ + "id": 156135, + "slug": "tiger-tank-59-break-the-fog-mp053", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP053", + "release_date": "2021-07-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184633" + ], + "created_at": "2026-07-10T10:10:47.015042", + "updated_at": "2026-07-10T10:10:47.015042", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp053" +} diff --git a/site/public/v1/games/tiger-tank-59-break-the-fog-mp054/index.json b/site/public/v1/games/tiger-tank-59-break-the-fog-mp054/index.json new file mode 100644 index 000000000000..d0504f8aad35 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-break-the-fog-mp054/index.json @@ -0,0 +1,31 @@ +{ + "id": 156136, + "slug": "tiger-tank-59-break-the-fog-mp054", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP054", + "release_date": "2021-07-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184642" + ], + "created_at": "2026-07-10T10:10:47.015582", + "updated_at": "2026-07-10T10:10:47.015582", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp054" +} diff --git a/site/public/v1/games/tiger-tank-59-break-the-fog-mp055/index.json b/site/public/v1/games/tiger-tank-59-break-the-fog-mp055/index.json new file mode 100644 index 000000000000..4ae2593a8f55 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-break-the-fog-mp055/index.json @@ -0,0 +1,31 @@ +{ + "id": 156137, + "slug": "tiger-tank-59-break-the-fog-mp055", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP055", + "release_date": "2021-07-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184648" + ], + "created_at": "2026-07-10T10:10:47.015582", + "updated_at": "2026-07-10T10:10:47.015582", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp055" +} diff --git a/site/public/v1/games/tiger-tank-59-break-the-fog-mp056/index.json b/site/public/v1/games/tiger-tank-59-break-the-fog-mp056/index.json new file mode 100644 index 000000000000..a657d83815fc --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-break-the-fog-mp056/index.json @@ -0,0 +1,31 @@ +{ + "id": 156138, + "slug": "tiger-tank-59-break-the-fog-mp056", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP056", + "release_date": "2021-07-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184654" + ], + "created_at": "2026-07-10T10:10:47.015582", + "updated_at": "2026-07-10T10:10:47.015582", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp056" +} diff --git a/site/public/v1/games/tiger-tank-59-break-the-fog-mp057/index.json b/site/public/v1/games/tiger-tank-59-break-the-fog-mp057/index.json new file mode 100644 index 000000000000..15ea1b1384d1 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-break-the-fog-mp057/index.json @@ -0,0 +1,31 @@ +{ + "id": 156139, + "slug": "tiger-tank-59-break-the-fog-mp057", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP057", + "release_date": "2021-07-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184664" + ], + "created_at": "2026-07-10T10:10:47.016215", + "updated_at": "2026-07-10T10:10:47.016215", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp057" +} diff --git a/site/public/v1/games/tiger-tank-59-break-the-fog-mp058/index.json b/site/public/v1/games/tiger-tank-59-break-the-fog-mp058/index.json new file mode 100644 index 000000000000..9f5157a2ebc5 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-break-the-fog-mp058/index.json @@ -0,0 +1,31 @@ +{ + "id": 156140, + "slug": "tiger-tank-59-break-the-fog-mp058", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP058", + "release_date": "2021-07-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184673" + ], + "created_at": "2026-07-10T10:10:47.016215", + "updated_at": "2026-07-10T10:10:47.016215", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp058" +} diff --git a/site/public/v1/games/tiger-tank-59-break-the-fog-mp059/index.json b/site/public/v1/games/tiger-tank-59-break-the-fog-mp059/index.json new file mode 100644 index 000000000000..258ef7bc7ce0 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-break-the-fog-mp059/index.json @@ -0,0 +1,31 @@ +{ + "id": 156141, + "slug": "tiger-tank-59-break-the-fog-mp059", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP059", + "release_date": "2021-07-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184683" + ], + "created_at": "2026-07-10T10:10:47.016215", + "updated_at": "2026-07-10T10:10:47.016215", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp059" +} diff --git a/site/public/v1/games/tiger-tank-59-break-the-fog-mp060/index.json b/site/public/v1/games/tiger-tank-59-break-the-fog-mp060/index.json new file mode 100644 index 000000000000..dd929579632a --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-break-the-fog-mp060/index.json @@ -0,0 +1,31 @@ +{ + "id": 156142, + "slug": "tiger-tank-59-break-the-fog-mp060", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP060", + "release_date": "2021-07-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184686" + ], + "created_at": "2026-07-10T10:10:47.016851", + "updated_at": "2026-07-10T10:10:47.016851", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp060" +} diff --git a/site/public/v1/games/tiger-tank-59-break-the-fog-mp061/index.json b/site/public/v1/games/tiger-tank-59-break-the-fog-mp061/index.json new file mode 100644 index 000000000000..f1ae18b4ec37 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-break-the-fog-mp061/index.json @@ -0,0 +1,31 @@ +{ + "id": 156143, + "slug": "tiger-tank-59-break-the-fog-mp061", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP061", + "release_date": "2021-07-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184689" + ], + "created_at": "2026-07-10T10:10:47.016851", + "updated_at": "2026-07-10T10:10:47.016851", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp061" +} diff --git a/site/public/v1/games/tiger-tank-59-break-the-fog-mp062/index.json b/site/public/v1/games/tiger-tank-59-break-the-fog-mp062/index.json new file mode 100644 index 000000000000..364a4d333284 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-break-the-fog-mp062/index.json @@ -0,0 +1,31 @@ +{ + "id": 156144, + "slug": "tiger-tank-59-break-the-fog-mp062", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP062", + "release_date": "2021-07-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184692" + ], + "created_at": "2026-07-10T10:10:47.016851", + "updated_at": "2026-07-10T10:10:47.017477", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp062" +} diff --git a/site/public/v1/games/tiger-tank-59-break-the-fog-mp063/index.json b/site/public/v1/games/tiger-tank-59-break-the-fog-mp063/index.json new file mode 100644 index 000000000000..7d78eb9238e9 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-break-the-fog-mp063/index.json @@ -0,0 +1,31 @@ +{ + "id": 156145, + "slug": "tiger-tank-59-break-the-fog-mp063", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP063", + "release_date": "2021-07-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184699" + ], + "created_at": "2026-07-10T10:10:47.017477", + "updated_at": "2026-07-10T10:10:47.017477", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp063" +} diff --git a/site/public/v1/games/tiger-tank-59-break-the-fog-mp064/index.json b/site/public/v1/games/tiger-tank-59-break-the-fog-mp064/index.json new file mode 100644 index 000000000000..5efebb88f3d3 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-break-the-fog-mp064/index.json @@ -0,0 +1,31 @@ +{ + "id": 156146, + "slug": "tiger-tank-59-break-the-fog-mp064", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP064", + "release_date": "2021-07-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184704" + ], + "created_at": "2026-07-10T10:10:47.017477", + "updated_at": "2026-07-10T10:10:47.017477", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp064" +} diff --git a/site/public/v1/games/tiger-tank-59-break-the-fog-mp065/index.json b/site/public/v1/games/tiger-tank-59-break-the-fog-mp065/index.json new file mode 100644 index 000000000000..5d10ea6a3d06 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-break-the-fog-mp065/index.json @@ -0,0 +1,31 @@ +{ + "id": 156147, + "slug": "tiger-tank-59-break-the-fog-mp065", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP065", + "release_date": "2021-07-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184707" + ], + "created_at": "2026-07-10T10:10:47.017477", + "updated_at": "2026-07-10T10:10:47.017477", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp065" +} diff --git a/site/public/v1/games/tiger-tank-59-break-the-fog-mp066/index.json b/site/public/v1/games/tiger-tank-59-break-the-fog-mp066/index.json new file mode 100644 index 000000000000..f1caaa3d4cfa --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-break-the-fog-mp066/index.json @@ -0,0 +1,31 @@ +{ + "id": 156148, + "slug": "tiger-tank-59-break-the-fog-mp066", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP066", + "release_date": "2021-07-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184710" + ], + "created_at": "2026-07-10T10:10:47.018113", + "updated_at": "2026-07-10T10:10:47.018113", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp066" +} diff --git a/site/public/v1/games/tiger-tank-59-break-the-fog-mp067/index.json b/site/public/v1/games/tiger-tank-59-break-the-fog-mp067/index.json new file mode 100644 index 000000000000..03227bd3e5b5 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-break-the-fog-mp067/index.json @@ -0,0 +1,31 @@ +{ + "id": 156149, + "slug": "tiger-tank-59-break-the-fog-mp067", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP067", + "release_date": "2021-07-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184714" + ], + "created_at": "2026-07-10T10:10:47.018113", + "updated_at": "2026-07-10T10:10:47.018113", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp067" +} diff --git a/site/public/v1/games/tiger-tank-59-break-the-fog-mp068/index.json b/site/public/v1/games/tiger-tank-59-break-the-fog-mp068/index.json new file mode 100644 index 000000000000..35c3aafd37b0 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-break-the-fog-mp068/index.json @@ -0,0 +1,31 @@ +{ + "id": 156150, + "slug": "tiger-tank-59-break-the-fog-mp068", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP068", + "release_date": "2021-07-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184717" + ], + "created_at": "2026-07-10T10:10:47.018644", + "updated_at": "2026-07-10T10:10:47.018644", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp068" +} diff --git a/site/public/v1/games/tiger-tank-59-break-the-fog-mp069/index.json b/site/public/v1/games/tiger-tank-59-break-the-fog-mp069/index.json new file mode 100644 index 000000000000..ea0c7059d926 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-break-the-fog-mp069/index.json @@ -0,0 +1,31 @@ +{ + "id": 156151, + "slug": "tiger-tank-59-break-the-fog-mp069", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP069", + "release_date": "2021-07-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184719" + ], + "created_at": "2026-07-10T10:10:47.018644", + "updated_at": "2026-07-10T10:10:47.018644", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp069" +} diff --git a/site/public/v1/games/tiger-tank-59-break-the-fog-mp070/index.json b/site/public/v1/games/tiger-tank-59-break-the-fog-mp070/index.json new file mode 100644 index 000000000000..ac5efb813f34 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-break-the-fog-mp070/index.json @@ -0,0 +1,31 @@ +{ + "id": 156152, + "slug": "tiger-tank-59-break-the-fog-mp070", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP070", + "release_date": "2021-07-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184722" + ], + "created_at": "2026-07-10T10:10:47.019178", + "updated_at": "2026-07-10T10:10:47.019178", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp070" +} diff --git a/site/public/v1/games/tiger-tank-59-break-the-fog-mp071/index.json b/site/public/v1/games/tiger-tank-59-break-the-fog-mp071/index.json new file mode 100644 index 000000000000..181eb6787221 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-break-the-fog-mp071/index.json @@ -0,0 +1,31 @@ +{ + "id": 156153, + "slug": "tiger-tank-59-break-the-fog-mp071", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP071", + "release_date": "2021-07-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184726" + ], + "created_at": "2026-07-10T10:10:47.019178", + "updated_at": "2026-07-10T10:10:47.019178", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp071" +} diff --git a/site/public/v1/games/tiger-tank-59-break-the-fog-mp072/index.json b/site/public/v1/games/tiger-tank-59-break-the-fog-mp072/index.json new file mode 100644 index 000000000000..4c0fa4b43a48 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-break-the-fog-mp072/index.json @@ -0,0 +1,31 @@ +{ + "id": 156154, + "slug": "tiger-tank-59-break-the-fog-mp072", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP072", + "release_date": "2021-07-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184729" + ], + "created_at": "2026-07-10T10:10:47.019178", + "updated_at": "2026-07-10T10:10:47.019713", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp072" +} diff --git a/site/public/v1/games/tiger-tank-59-break-the-fog-mp073/index.json b/site/public/v1/games/tiger-tank-59-break-the-fog-mp073/index.json new file mode 100644 index 000000000000..c579c72e2149 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-break-the-fog-mp073/index.json @@ -0,0 +1,31 @@ +{ + "id": 156155, + "slug": "tiger-tank-59-break-the-fog-mp073", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP073", + "release_date": "2021-07-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184732" + ], + "created_at": "2026-07-10T10:10:47.019713", + "updated_at": "2026-07-10T10:10:47.019713", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp073" +} diff --git a/site/public/v1/games/tiger-tank-59-break-the-fog-mp074/index.json b/site/public/v1/games/tiger-tank-59-break-the-fog-mp074/index.json new file mode 100644 index 000000000000..aefe658f13e1 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-break-the-fog-mp074/index.json @@ -0,0 +1,31 @@ +{ + "id": 156156, + "slug": "tiger-tank-59-break-the-fog-mp074", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP074", + "release_date": "2021-07-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184736" + ], + "created_at": "2026-07-10T10:10:47.019713", + "updated_at": "2026-07-10T10:10:47.019713", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp074" +} diff --git a/site/public/v1/games/tiger-tank-59-break-the-fog-mp075/index.json b/site/public/v1/games/tiger-tank-59-break-the-fog-mp075/index.json new file mode 100644 index 000000000000..bb78f23fc45f --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-break-the-fog-mp075/index.json @@ -0,0 +1,31 @@ +{ + "id": 156157, + "slug": "tiger-tank-59-break-the-fog-mp075", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP075", + "release_date": "2021-07-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184739" + ], + "created_at": "2026-07-10T10:10:47.020251", + "updated_at": "2026-07-10T10:10:47.020251", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp075" +} diff --git a/site/public/v1/games/tiger-tank-59-break-the-fog-mp076/index.json b/site/public/v1/games/tiger-tank-59-break-the-fog-mp076/index.json new file mode 100644 index 000000000000..04924066eb3f --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-break-the-fog-mp076/index.json @@ -0,0 +1,31 @@ +{ + "id": 156158, + "slug": "tiger-tank-59-break-the-fog-mp076", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP076", + "release_date": "2021-07-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184743" + ], + "created_at": "2026-07-10T10:10:47.020251", + "updated_at": "2026-07-10T10:10:47.020251", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp076" +} diff --git a/site/public/v1/games/tiger-tank-59-break-the-fog-mp077/index.json b/site/public/v1/games/tiger-tank-59-break-the-fog-mp077/index.json new file mode 100644 index 000000000000..ecaa9f514943 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-break-the-fog-mp077/index.json @@ -0,0 +1,31 @@ +{ + "id": 156159, + "slug": "tiger-tank-59-break-the-fog-mp077", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP077", + "release_date": "2021-07-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184746" + ], + "created_at": "2026-07-10T10:10:47.020251", + "updated_at": "2026-07-10T10:10:47.020251", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp077" +} diff --git a/site/public/v1/games/tiger-tank-59-break-the-fog-mp078/index.json b/site/public/v1/games/tiger-tank-59-break-the-fog-mp078/index.json new file mode 100644 index 000000000000..467ea3aa30bf --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-break-the-fog-mp078/index.json @@ -0,0 +1,31 @@ +{ + "id": 156160, + "slug": "tiger-tank-59-break-the-fog-mp078", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP078", + "release_date": "2021-07-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184749" + ], + "created_at": "2026-07-10T10:10:47.020779", + "updated_at": "2026-07-10T10:10:47.020779", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp078" +} diff --git a/site/public/v1/games/tiger-tank-59-break-the-fog-mp079/index.json b/site/public/v1/games/tiger-tank-59-break-the-fog-mp079/index.json new file mode 100644 index 000000000000..69788e05570f --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-break-the-fog-mp079/index.json @@ -0,0 +1,31 @@ +{ + "id": 156161, + "slug": "tiger-tank-59-break-the-fog-mp079", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP079", + "release_date": "2021-07-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184751" + ], + "created_at": "2026-07-10T10:10:47.020779", + "updated_at": "2026-07-10T10:10:47.020779", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp079" +} diff --git a/site/public/v1/games/tiger-tank-59-break-the-fog-mp080/index.json b/site/public/v1/games/tiger-tank-59-break-the-fog-mp080/index.json new file mode 100644 index 000000000000..d4d70a153abb --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-break-the-fog-mp080/index.json @@ -0,0 +1,31 @@ +{ + "id": 156162, + "slug": "tiger-tank-59-break-the-fog-mp080", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP080", + "release_date": "2021-07-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184754" + ], + "created_at": "2026-07-10T10:10:47.020779", + "updated_at": "2026-07-10T10:10:47.020779", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp080" +} diff --git a/site/public/v1/games/tiger-tank-59-break-the-fog-mp081/index.json b/site/public/v1/games/tiger-tank-59-break-the-fog-mp081/index.json new file mode 100644 index 000000000000..2e7ad632b856 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-break-the-fog-mp081/index.json @@ -0,0 +1,31 @@ +{ + "id": 156163, + "slug": "tiger-tank-59-break-the-fog-mp081", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP081", + "release_date": "2021-07-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184758" + ], + "created_at": "2026-07-10T10:10:47.021317", + "updated_at": "2026-07-10T10:10:47.021317", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp081" +} diff --git a/site/public/v1/games/tiger-tank-59-break-the-fog-mp082/index.json b/site/public/v1/games/tiger-tank-59-break-the-fog-mp082/index.json new file mode 100644 index 000000000000..3b2b96a9de89 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-break-the-fog-mp082/index.json @@ -0,0 +1,31 @@ +{ + "id": 156164, + "slug": "tiger-tank-59-break-the-fog-mp082", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP082", + "release_date": "2021-07-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184761" + ], + "created_at": "2026-07-10T10:10:47.021851", + "updated_at": "2026-07-10T10:10:47.021851", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp082" +} diff --git a/site/public/v1/games/tiger-tank-59-break-the-fog-mp083/index.json b/site/public/v1/games/tiger-tank-59-break-the-fog-mp083/index.json new file mode 100644 index 000000000000..3e05bfe79b1d --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-break-the-fog-mp083/index.json @@ -0,0 +1,31 @@ +{ + "id": 156165, + "slug": "tiger-tank-59-break-the-fog-mp083", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP083", + "release_date": "2021-07-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184763" + ], + "created_at": "2026-07-10T10:10:47.021851", + "updated_at": "2026-07-10T10:10:47.021851", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp083" +} diff --git a/site/public/v1/games/tiger-tank-59-break-the-fog-mp084/index.json b/site/public/v1/games/tiger-tank-59-break-the-fog-mp084/index.json new file mode 100644 index 000000000000..9e38a1f20bb4 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-break-the-fog-mp084/index.json @@ -0,0 +1,31 @@ +{ + "id": 156166, + "slug": "tiger-tank-59-break-the-fog-mp084", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP084", + "release_date": "2021-07-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184766" + ], + "created_at": "2026-07-10T10:10:47.021851", + "updated_at": "2026-07-10T10:10:47.021851", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp084" +} diff --git a/site/public/v1/games/tiger-tank-59-break-the-fog-mp085/index.json b/site/public/v1/games/tiger-tank-59-break-the-fog-mp085/index.json new file mode 100644 index 000000000000..b93d4fb7e41c --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-break-the-fog-mp085/index.json @@ -0,0 +1,31 @@ +{ + "id": 156167, + "slug": "tiger-tank-59-break-the-fog-mp085", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP085", + "release_date": "2021-07-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184769" + ], + "created_at": "2026-07-10T10:10:47.022389", + "updated_at": "2026-07-10T10:10:47.022389", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp085" +} diff --git a/site/public/v1/games/tiger-tank-59-break-the-fog-mp086/index.json b/site/public/v1/games/tiger-tank-59-break-the-fog-mp086/index.json new file mode 100644 index 000000000000..8c08f6e9ad0e --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-break-the-fog-mp086/index.json @@ -0,0 +1,31 @@ +{ + "id": 156168, + "slug": "tiger-tank-59-break-the-fog-mp086", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP086", + "release_date": "2021-07-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184772" + ], + "created_at": "2026-07-10T10:10:47.022389", + "updated_at": "2026-07-10T10:10:47.022389", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp086" +} diff --git a/site/public/v1/games/tiger-tank-59-break-the-fog-mp087/index.json b/site/public/v1/games/tiger-tank-59-break-the-fog-mp087/index.json new file mode 100644 index 000000000000..a7aac658cc49 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-break-the-fog-mp087/index.json @@ -0,0 +1,31 @@ +{ + "id": 156169, + "slug": "tiger-tank-59-break-the-fog-mp087", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP087", + "release_date": "2021-07-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184775" + ], + "created_at": "2026-07-10T10:10:47.022389", + "updated_at": "2026-07-10T10:10:47.022389", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp087" +} diff --git a/site/public/v1/games/tiger-tank-59-break-the-fog-mp088/index.json b/site/public/v1/games/tiger-tank-59-break-the-fog-mp088/index.json new file mode 100644 index 000000000000..065dc136d5f8 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-break-the-fog-mp088/index.json @@ -0,0 +1,31 @@ +{ + "id": 156170, + "slug": "tiger-tank-59-break-the-fog-mp088", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP088", + "release_date": "2021-07-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184777" + ], + "created_at": "2026-07-10T10:10:47.022389", + "updated_at": "2026-07-10T10:10:47.022389", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp088" +} diff --git a/site/public/v1/games/tiger-tank-59-break-the-fog-mp089/index.json b/site/public/v1/games/tiger-tank-59-break-the-fog-mp089/index.json new file mode 100644 index 000000000000..7687c7169d4e --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-break-the-fog-mp089/index.json @@ -0,0 +1,31 @@ +{ + "id": 156171, + "slug": "tiger-tank-59-break-the-fog-mp089", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP089", + "release_date": "2021-07-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184781" + ], + "created_at": "2026-07-10T10:10:47.022389", + "updated_at": "2026-07-10T10:10:47.022389", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp089" +} diff --git a/site/public/v1/games/tiger-tank-59-break-the-fog-mp090/index.json b/site/public/v1/games/tiger-tank-59-break-the-fog-mp090/index.json new file mode 100644 index 000000000000..000516aac6fe --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-break-the-fog-mp090/index.json @@ -0,0 +1,31 @@ +{ + "id": 156172, + "slug": "tiger-tank-59-break-the-fog-mp090", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP090", + "release_date": "2021-07-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184785" + ], + "created_at": "2026-07-10T10:10:47.023399", + "updated_at": "2026-07-10T10:10:47.023399", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp090" +} diff --git a/site/public/v1/games/tiger-tank-59-break-the-fog-mp091/index.json b/site/public/v1/games/tiger-tank-59-break-the-fog-mp091/index.json new file mode 100644 index 000000000000..b4edf810dbc4 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-break-the-fog-mp091/index.json @@ -0,0 +1,31 @@ +{ + "id": 156173, + "slug": "tiger-tank-59-break-the-fog-mp091", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP091", + "release_date": "2021-07-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184787" + ], + "created_at": "2026-07-10T10:10:47.023399", + "updated_at": "2026-07-10T10:10:47.023399", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp091" +} diff --git a/site/public/v1/games/tiger-tank-59-break-the-fog-mp092/index.json b/site/public/v1/games/tiger-tank-59-break-the-fog-mp092/index.json new file mode 100644 index 000000000000..06ce22e8fc6a --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-break-the-fog-mp092/index.json @@ -0,0 +1,31 @@ +{ + "id": 156174, + "slug": "tiger-tank-59-break-the-fog-mp092", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP092", + "release_date": "2021-07-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184790" + ], + "created_at": "2026-07-10T10:10:47.023399", + "updated_at": "2026-07-10T10:10:47.023399", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp092" +} diff --git a/site/public/v1/games/tiger-tank-59-break-the-fog-mp093/index.json b/site/public/v1/games/tiger-tank-59-break-the-fog-mp093/index.json new file mode 100644 index 000000000000..556e5d660cb2 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-break-the-fog-mp093/index.json @@ -0,0 +1,31 @@ +{ + "id": 156175, + "slug": "tiger-tank-59-break-the-fog-mp093", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP093", + "release_date": "2021-07-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184792" + ], + "created_at": "2026-07-10T10:10:47.023399", + "updated_at": "2026-07-10T10:10:47.023399", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp093" +} diff --git a/site/public/v1/games/tiger-tank-59-break-the-fog-mp094/index.json b/site/public/v1/games/tiger-tank-59-break-the-fog-mp094/index.json new file mode 100644 index 000000000000..33cfe25b14b6 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-break-the-fog-mp094/index.json @@ -0,0 +1,31 @@ +{ + "id": 156176, + "slug": "tiger-tank-59-break-the-fog-mp094", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP094", + "release_date": "2021-07-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184794" + ], + "created_at": "2026-07-10T10:10:47.024399", + "updated_at": "2026-07-10T10:10:47.024399", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp094" +} diff --git a/site/public/v1/games/tiger-tank-59-break-the-fog-mp095/index.json b/site/public/v1/games/tiger-tank-59-break-the-fog-mp095/index.json new file mode 100644 index 000000000000..da071dcdd8e2 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-break-the-fog-mp095/index.json @@ -0,0 +1,31 @@ +{ + "id": 156177, + "slug": "tiger-tank-59-break-the-fog-mp095", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP095", + "release_date": "2021-07-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184797" + ], + "created_at": "2026-07-10T10:10:47.024399", + "updated_at": "2026-07-10T10:10:47.024399", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp095" +} diff --git a/site/public/v1/games/tiger-tank-59-break-the-fog-mp096/index.json b/site/public/v1/games/tiger-tank-59-break-the-fog-mp096/index.json new file mode 100644 index 000000000000..ba6def546e14 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-break-the-fog-mp096/index.json @@ -0,0 +1,31 @@ +{ + "id": 156178, + "slug": "tiger-tank-59-break-the-fog-mp096", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP096", + "release_date": "2021-07-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184802" + ], + "created_at": "2026-07-10T10:10:47.024399", + "updated_at": "2026-07-10T10:10:47.024399", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp096" +} diff --git a/site/public/v1/games/tiger-tank-59-break-the-fog-mp097/index.json b/site/public/v1/games/tiger-tank-59-break-the-fog-mp097/index.json new file mode 100644 index 000000000000..83ebaae08072 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-break-the-fog-mp097/index.json @@ -0,0 +1,31 @@ +{ + "id": 156179, + "slug": "tiger-tank-59-break-the-fog-mp097", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP097", + "release_date": "2021-07-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184805" + ], + "created_at": "2026-07-10T10:10:47.024399", + "updated_at": "2026-07-10T10:10:47.024399", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp097" +} diff --git a/site/public/v1/games/tiger-tank-59-break-the-fog-mp098/index.json b/site/public/v1/games/tiger-tank-59-break-the-fog-mp098/index.json new file mode 100644 index 000000000000..e80b190b9e3b --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-break-the-fog-mp098/index.json @@ -0,0 +1,31 @@ +{ + "id": 156180, + "slug": "tiger-tank-59-break-the-fog-mp098", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP098", + "release_date": "2021-07-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184810" + ], + "created_at": "2026-07-10T10:10:47.024399", + "updated_at": "2026-07-10T10:10:47.024399", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp098" +} diff --git a/site/public/v1/games/tiger-tank-59-break-the-fog-mp099/index.json b/site/public/v1/games/tiger-tank-59-break-the-fog-mp099/index.json new file mode 100644 index 000000000000..cd0c901f7b43 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-break-the-fog-mp099/index.json @@ -0,0 +1,31 @@ +{ + "id": 156181, + "slug": "tiger-tank-59-break-the-fog-mp099", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP099", + "release_date": "2021-07-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184813" + ], + "created_at": "2026-07-10T10:10:47.025446", + "updated_at": "2026-07-10T10:10:47.025446", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp099" +} diff --git a/site/public/v1/games/tiger-tank-59-break-the-fog-mp100/index.json b/site/public/v1/games/tiger-tank-59-break-the-fog-mp100/index.json new file mode 100644 index 000000000000..432bc1f0a22c --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-break-the-fog-mp100/index.json @@ -0,0 +1,31 @@ +{ + "id": 156182, + "slug": "tiger-tank-59-break-the-fog-mp100", + "name": "Tiger Tank 59 Ⅰ Break The Fog MP100", + "release_date": "2021-07-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184818" + ], + "created_at": "2026-07-10T10:10:47.025446", + "updated_at": "2026-07-10T10:10:47.025446", + "url": "/v1/games/tiger-tank-59-break-the-fog-mp100" +} diff --git a/site/public/v1/games/tiger-tank-59-mission-pack-001/index.json b/site/public/v1/games/tiger-tank-59-mission-pack-001/index.json new file mode 100644 index 000000000000..6509c9dd3345 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-mission-pack-001/index.json @@ -0,0 +1,31 @@ +{ + "id": 156184, + "slug": "tiger-tank-59-mission-pack-001", + "name": "Tiger Tank 59 Ⅰ Mission Pack 001", + "release_date": "2021-06-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184822" + ], + "created_at": "2026-07-10T10:10:47.025446", + "updated_at": "2026-07-10T10:10:47.025446", + "url": "/v1/games/tiger-tank-59-mission-pack-001" +} diff --git a/site/public/v1/games/tiger-tank-59-mission-pack-002/index.json b/site/public/v1/games/tiger-tank-59-mission-pack-002/index.json new file mode 100644 index 000000000000..355a23fd7e5a --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-mission-pack-002/index.json @@ -0,0 +1,31 @@ +{ + "id": 156185, + "slug": "tiger-tank-59-mission-pack-002", + "name": "Tiger Tank 59 Ⅰ Mission Pack 002", + "release_date": "2021-06-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184824" + ], + "created_at": "2026-07-10T10:10:47.026475", + "updated_at": "2026-07-10T10:10:47.026475", + "url": "/v1/games/tiger-tank-59-mission-pack-002" +} diff --git a/site/public/v1/games/tiger-tank-59-mission-pack-003/index.json b/site/public/v1/games/tiger-tank-59-mission-pack-003/index.json new file mode 100644 index 000000000000..968e9b35c5ad --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-mission-pack-003/index.json @@ -0,0 +1,31 @@ +{ + "id": 156186, + "slug": "tiger-tank-59-mission-pack-003", + "name": "Tiger Tank 59 Ⅰ Mission Pack 003", + "release_date": "2021-06-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184827" + ], + "created_at": "2026-07-10T10:10:47.026475", + "updated_at": "2026-07-10T10:10:47.026475", + "url": "/v1/games/tiger-tank-59-mission-pack-003" +} diff --git a/site/public/v1/games/tiger-tank-59-mission-pack-004/index.json b/site/public/v1/games/tiger-tank-59-mission-pack-004/index.json new file mode 100644 index 000000000000..16f40fe7043a --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-mission-pack-004/index.json @@ -0,0 +1,31 @@ +{ + "id": 156187, + "slug": "tiger-tank-59-mission-pack-004", + "name": "Tiger Tank 59 Ⅰ Mission Pack 004", + "release_date": "2021-06-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184830" + ], + "created_at": "2026-07-10T10:10:47.026475", + "updated_at": "2026-07-10T10:10:47.026475", + "url": "/v1/games/tiger-tank-59-mission-pack-004" +} diff --git a/site/public/v1/games/tiger-tank-59-mission-pack-005/index.json b/site/public/v1/games/tiger-tank-59-mission-pack-005/index.json new file mode 100644 index 000000000000..1619d40219d8 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-mission-pack-005/index.json @@ -0,0 +1,31 @@ +{ + "id": 156188, + "slug": "tiger-tank-59-mission-pack-005", + "name": "Tiger Tank 59 Ⅰ Mission Pack 005", + "release_date": "2021-06-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184831" + ], + "created_at": "2026-07-10T10:10:47.026475", + "updated_at": "2026-07-10T10:10:47.026475", + "url": "/v1/games/tiger-tank-59-mission-pack-005" +} diff --git a/site/public/v1/games/tiger-tank-59-mission-pack-006/index.json b/site/public/v1/games/tiger-tank-59-mission-pack-006/index.json new file mode 100644 index 000000000000..3c9ceae5139f --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-mission-pack-006/index.json @@ -0,0 +1,31 @@ +{ + "id": 156189, + "slug": "tiger-tank-59-mission-pack-006", + "name": "Tiger Tank 59 Ⅰ Mission Pack 006", + "release_date": "2021-06-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184832" + ], + "created_at": "2026-07-10T10:10:47.026475", + "updated_at": "2026-07-10T10:10:47.026475", + "url": "/v1/games/tiger-tank-59-mission-pack-006" +} diff --git a/site/public/v1/games/tiger-tank-59-mission-pack-007/index.json b/site/public/v1/games/tiger-tank-59-mission-pack-007/index.json new file mode 100644 index 000000000000..0a7e8bb944aa --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-mission-pack-007/index.json @@ -0,0 +1,31 @@ +{ + "id": 156190, + "slug": "tiger-tank-59-mission-pack-007", + "name": "Tiger Tank 59 Ⅰ Mission Pack 007", + "release_date": "2021-06-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184833" + ], + "created_at": "2026-07-10T10:10:47.027465", + "updated_at": "2026-07-10T10:10:47.027465", + "url": "/v1/games/tiger-tank-59-mission-pack-007" +} diff --git a/site/public/v1/games/tiger-tank-59-mission-pack-008/index.json b/site/public/v1/games/tiger-tank-59-mission-pack-008/index.json new file mode 100644 index 000000000000..f9efb4062293 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-mission-pack-008/index.json @@ -0,0 +1,31 @@ +{ + "id": 156191, + "slug": "tiger-tank-59-mission-pack-008", + "name": "Tiger Tank 59 Ⅰ Mission Pack 008", + "release_date": "2021-06-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184837" + ], + "created_at": "2026-07-10T10:10:47.027465", + "updated_at": "2026-07-10T10:10:47.027465", + "url": "/v1/games/tiger-tank-59-mission-pack-008" +} diff --git a/site/public/v1/games/tiger-tank-59-mission-pack-009/index.json b/site/public/v1/games/tiger-tank-59-mission-pack-009/index.json new file mode 100644 index 000000000000..130d482a9148 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-mission-pack-009/index.json @@ -0,0 +1,31 @@ +{ + "id": 156192, + "slug": "tiger-tank-59-mission-pack-009", + "name": "Tiger Tank 59 Ⅰ Mission Pack 009", + "release_date": "2021-06-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184838" + ], + "created_at": "2026-07-10T10:10:47.027465", + "updated_at": "2026-07-10T10:10:47.027465", + "url": "/v1/games/tiger-tank-59-mission-pack-009" +} diff --git a/site/public/v1/games/tiger-tank-59-mission-pack-010/index.json b/site/public/v1/games/tiger-tank-59-mission-pack-010/index.json new file mode 100644 index 000000000000..1ea363e3c689 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-mission-pack-010/index.json @@ -0,0 +1,31 @@ +{ + "id": 156193, + "slug": "tiger-tank-59-mission-pack-010", + "name": "Tiger Tank 59 Ⅰ Mission Pack 010", + "release_date": "2021-06-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184839" + ], + "created_at": "2026-07-10T10:10:47.027465", + "updated_at": "2026-07-10T10:10:47.027465", + "url": "/v1/games/tiger-tank-59-mission-pack-010" +} diff --git a/site/public/v1/games/tiger-tank-59-mission-pack-011/index.json b/site/public/v1/games/tiger-tank-59-mission-pack-011/index.json new file mode 100644 index 000000000000..a6fa0ae5586f --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-mission-pack-011/index.json @@ -0,0 +1,31 @@ +{ + "id": 156194, + "slug": "tiger-tank-59-mission-pack-011", + "name": "Tiger Tank 59 Ⅰ Mission Pack 011", + "release_date": "2021-06-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184842" + ], + "created_at": "2026-07-10T10:10:47.027465", + "updated_at": "2026-07-10T10:10:47.027465", + "url": "/v1/games/tiger-tank-59-mission-pack-011" +} diff --git a/site/public/v1/games/tiger-tank-59-mission-pack-012/index.json b/site/public/v1/games/tiger-tank-59-mission-pack-012/index.json new file mode 100644 index 000000000000..7ff70a55e6ec --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-mission-pack-012/index.json @@ -0,0 +1,31 @@ +{ + "id": 156195, + "slug": "tiger-tank-59-mission-pack-012", + "name": "Tiger Tank 59 Ⅰ Mission Pack 012", + "release_date": "2021-06-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184843" + ], + "created_at": "2026-07-10T10:10:47.027465", + "updated_at": "2026-07-10T10:10:47.027465", + "url": "/v1/games/tiger-tank-59-mission-pack-012" +} diff --git a/site/public/v1/games/tiger-tank-59-mission-pack-013/index.json b/site/public/v1/games/tiger-tank-59-mission-pack-013/index.json new file mode 100644 index 000000000000..6602ffa8ba74 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-mission-pack-013/index.json @@ -0,0 +1,31 @@ +{ + "id": 156196, + "slug": "tiger-tank-59-mission-pack-013", + "name": "Tiger Tank 59 Ⅰ Mission Pack 013", + "release_date": "2021-06-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184844" + ], + "created_at": "2026-07-10T10:10:47.028484", + "updated_at": "2026-07-10T10:10:47.028484", + "url": "/v1/games/tiger-tank-59-mission-pack-013" +} diff --git a/site/public/v1/games/tiger-tank-59-mission-pack-014/index.json b/site/public/v1/games/tiger-tank-59-mission-pack-014/index.json new file mode 100644 index 000000000000..7b3942960195 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-mission-pack-014/index.json @@ -0,0 +1,31 @@ +{ + "id": 156197, + "slug": "tiger-tank-59-mission-pack-014", + "name": "Tiger Tank 59 Ⅰ Mission Pack 014", + "release_date": "2021-06-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184847" + ], + "created_at": "2026-07-10T10:10:47.028484", + "updated_at": "2026-07-10T10:10:47.028484", + "url": "/v1/games/tiger-tank-59-mission-pack-014" +} diff --git a/site/public/v1/games/tiger-tank-59-mission-pack-015/index.json b/site/public/v1/games/tiger-tank-59-mission-pack-015/index.json new file mode 100644 index 000000000000..cb220feca1c7 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-mission-pack-015/index.json @@ -0,0 +1,31 @@ +{ + "id": 156198, + "slug": "tiger-tank-59-mission-pack-015", + "name": "Tiger Tank 59 Ⅰ Mission Pack 015", + "release_date": "2021-06-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184848" + ], + "created_at": "2026-07-10T10:10:47.028484", + "updated_at": "2026-07-10T10:10:47.028484", + "url": "/v1/games/tiger-tank-59-mission-pack-015" +} diff --git a/site/public/v1/games/tiger-tank-59-mission-pack-016/index.json b/site/public/v1/games/tiger-tank-59-mission-pack-016/index.json new file mode 100644 index 000000000000..bedca5992b6e --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-mission-pack-016/index.json @@ -0,0 +1,31 @@ +{ + "id": 156199, + "slug": "tiger-tank-59-mission-pack-016", + "name": "Tiger Tank 59 Ⅰ Mission Pack 016", + "release_date": "2021-06-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184849" + ], + "created_at": "2026-07-10T10:10:47.029468", + "updated_at": "2026-07-10T10:10:47.029468", + "url": "/v1/games/tiger-tank-59-mission-pack-016" +} diff --git a/site/public/v1/games/tiger-tank-59-mission-pack-017/index.json b/site/public/v1/games/tiger-tank-59-mission-pack-017/index.json new file mode 100644 index 000000000000..55213f7167cf --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-mission-pack-017/index.json @@ -0,0 +1,31 @@ +{ + "id": 156200, + "slug": "tiger-tank-59-mission-pack-017", + "name": "Tiger Tank 59 Ⅰ Mission Pack 017", + "release_date": "2021-06-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184850" + ], + "created_at": "2026-07-10T10:10:47.029468", + "updated_at": "2026-07-10T10:10:47.029468", + "url": "/v1/games/tiger-tank-59-mission-pack-017" +} diff --git a/site/public/v1/games/tiger-tank-59-mission-pack-018/index.json b/site/public/v1/games/tiger-tank-59-mission-pack-018/index.json new file mode 100644 index 000000000000..8c045b2e6d88 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-mission-pack-018/index.json @@ -0,0 +1,31 @@ +{ + "id": 156201, + "slug": "tiger-tank-59-mission-pack-018", + "name": "Tiger Tank 59 Ⅰ Mission Pack 018", + "release_date": "2021-06-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184852" + ], + "created_at": "2026-07-10T10:10:47.029468", + "updated_at": "2026-07-10T10:10:47.029468", + "url": "/v1/games/tiger-tank-59-mission-pack-018" +} diff --git a/site/public/v1/games/tiger-tank-59-mission-pack-019/index.json b/site/public/v1/games/tiger-tank-59-mission-pack-019/index.json new file mode 100644 index 000000000000..62cd824ac7d0 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-mission-pack-019/index.json @@ -0,0 +1,31 @@ +{ + "id": 156202, + "slug": "tiger-tank-59-mission-pack-019", + "name": "Tiger Tank 59 Ⅰ Mission Pack 019", + "release_date": "2021-06-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184854" + ], + "created_at": "2026-07-10T10:10:47.029468", + "updated_at": "2026-07-10T10:10:47.029468", + "url": "/v1/games/tiger-tank-59-mission-pack-019" +} diff --git a/site/public/v1/games/tiger-tank-59-mission-pack-020/index.json b/site/public/v1/games/tiger-tank-59-mission-pack-020/index.json new file mode 100644 index 000000000000..31646446d7a8 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-mission-pack-020/index.json @@ -0,0 +1,31 @@ +{ + "id": 156203, + "slug": "tiger-tank-59-mission-pack-020", + "name": "Tiger Tank 59 Ⅰ Mission Pack 020", + "release_date": "2021-06-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184855" + ], + "created_at": "2026-07-10T10:10:47.029468", + "updated_at": "2026-07-10T10:10:47.029468", + "url": "/v1/games/tiger-tank-59-mission-pack-020" +} diff --git a/site/public/v1/games/tiger-tank-59-mission-pack-021/index.json b/site/public/v1/games/tiger-tank-59-mission-pack-021/index.json new file mode 100644 index 000000000000..9ae644ef929e --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-mission-pack-021/index.json @@ -0,0 +1,31 @@ +{ + "id": 156204, + "slug": "tiger-tank-59-mission-pack-021", + "name": "Tiger Tank 59 Ⅰ Mission Pack 021", + "release_date": "2021-06-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184857" + ], + "created_at": "2026-07-10T10:10:47.030467", + "updated_at": "2026-07-10T10:10:47.030467", + "url": "/v1/games/tiger-tank-59-mission-pack-021" +} diff --git a/site/public/v1/games/tiger-tank-59-mission-pack-022/index.json b/site/public/v1/games/tiger-tank-59-mission-pack-022/index.json new file mode 100644 index 000000000000..aeff5dc17468 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-mission-pack-022/index.json @@ -0,0 +1,31 @@ +{ + "id": 156205, + "slug": "tiger-tank-59-mission-pack-022", + "name": "Tiger Tank 59 Ⅰ Mission Pack 022", + "release_date": "2021-06-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184859" + ], + "created_at": "2026-07-10T10:10:47.030467", + "updated_at": "2026-07-10T10:10:47.030467", + "url": "/v1/games/tiger-tank-59-mission-pack-022" +} diff --git a/site/public/v1/games/tiger-tank-59-mission-pack-023/index.json b/site/public/v1/games/tiger-tank-59-mission-pack-023/index.json new file mode 100644 index 000000000000..9676258c8f02 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-mission-pack-023/index.json @@ -0,0 +1,31 @@ +{ + "id": 156206, + "slug": "tiger-tank-59-mission-pack-023", + "name": "Tiger Tank 59 Ⅰ Mission Pack 023", + "release_date": "2021-06-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184862" + ], + "created_at": "2026-07-10T10:10:47.030467", + "updated_at": "2026-07-10T10:10:47.030467", + "url": "/v1/games/tiger-tank-59-mission-pack-023" +} diff --git a/site/public/v1/games/tiger-tank-59-mission-pack-024/index.json b/site/public/v1/games/tiger-tank-59-mission-pack-024/index.json new file mode 100644 index 000000000000..0153986dac16 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-mission-pack-024/index.json @@ -0,0 +1,31 @@ +{ + "id": 156207, + "slug": "tiger-tank-59-mission-pack-024", + "name": "Tiger Tank 59 Ⅰ Mission Pack 024", + "release_date": "2021-06-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184863" + ], + "created_at": "2026-07-10T10:10:47.030467", + "updated_at": "2026-07-10T10:10:47.030467", + "url": "/v1/games/tiger-tank-59-mission-pack-024" +} diff --git a/site/public/v1/games/tiger-tank-59-mission-pack-025/index.json b/site/public/v1/games/tiger-tank-59-mission-pack-025/index.json new file mode 100644 index 000000000000..8f3c676d945f --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-mission-pack-025/index.json @@ -0,0 +1,31 @@ +{ + "id": 156208, + "slug": "tiger-tank-59-mission-pack-025", + "name": "Tiger Tank 59 Ⅰ Mission Pack 025", + "release_date": "2021-06-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184865" + ], + "created_at": "2026-07-10T10:10:47.031470", + "updated_at": "2026-07-10T10:10:47.031470", + "url": "/v1/games/tiger-tank-59-mission-pack-025" +} diff --git a/site/public/v1/games/tiger-tank-59-mission-pack-026/index.json b/site/public/v1/games/tiger-tank-59-mission-pack-026/index.json new file mode 100644 index 000000000000..265f521c6501 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-mission-pack-026/index.json @@ -0,0 +1,31 @@ +{ + "id": 156209, + "slug": "tiger-tank-59-mission-pack-026", + "name": "Tiger Tank 59 Ⅰ Mission Pack 026", + "release_date": "2021-06-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184866" + ], + "created_at": "2026-07-10T10:10:47.031470", + "updated_at": "2026-07-10T10:10:47.031470", + "url": "/v1/games/tiger-tank-59-mission-pack-026" +} diff --git a/site/public/v1/games/tiger-tank-59-mission-pack-027/index.json b/site/public/v1/games/tiger-tank-59-mission-pack-027/index.json new file mode 100644 index 000000000000..7b0d76c1606c --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-mission-pack-027/index.json @@ -0,0 +1,31 @@ +{ + "id": 156210, + "slug": "tiger-tank-59-mission-pack-027", + "name": "Tiger Tank 59 Ⅰ Mission Pack 027", + "release_date": "2021-06-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184868" + ], + "created_at": "2026-07-10T10:10:47.031470", + "updated_at": "2026-07-10T10:10:47.031470", + "url": "/v1/games/tiger-tank-59-mission-pack-027" +} diff --git a/site/public/v1/games/tiger-tank-59-mission-pack-028/index.json b/site/public/v1/games/tiger-tank-59-mission-pack-028/index.json new file mode 100644 index 000000000000..00678fb1d76f --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-mission-pack-028/index.json @@ -0,0 +1,31 @@ +{ + "id": 156211, + "slug": "tiger-tank-59-mission-pack-028", + "name": "Tiger Tank 59 Ⅰ Mission Pack 028", + "release_date": "2021-06-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184872" + ], + "created_at": "2026-07-10T10:10:47.031470", + "updated_at": "2026-07-10T10:10:47.031470", + "url": "/v1/games/tiger-tank-59-mission-pack-028" +} diff --git a/site/public/v1/games/tiger-tank-59-mission-pack-029/index.json b/site/public/v1/games/tiger-tank-59-mission-pack-029/index.json new file mode 100644 index 000000000000..6bc6b0537723 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-mission-pack-029/index.json @@ -0,0 +1,31 @@ +{ + "id": 156212, + "slug": "tiger-tank-59-mission-pack-029", + "name": "Tiger Tank 59 Ⅰ Mission Pack 029", + "release_date": "2021-06-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184873" + ], + "created_at": "2026-07-10T10:10:47.031470", + "updated_at": "2026-07-10T10:10:47.031470", + "url": "/v1/games/tiger-tank-59-mission-pack-029" +} diff --git a/site/public/v1/games/tiger-tank-59-mission-pack-030/index.json b/site/public/v1/games/tiger-tank-59-mission-pack-030/index.json new file mode 100644 index 000000000000..e7d23286f2bd --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-mission-pack-030/index.json @@ -0,0 +1,31 @@ +{ + "id": 156213, + "slug": "tiger-tank-59-mission-pack-030", + "name": "Tiger Tank 59 Ⅰ Mission Pack 030", + "release_date": "2021-06-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184874" + ], + "created_at": "2026-07-10T10:10:47.032490", + "updated_at": "2026-07-10T10:10:47.032490", + "url": "/v1/games/tiger-tank-59-mission-pack-030" +} diff --git a/site/public/v1/games/tiger-tank-59-mission-pack-031/index.json b/site/public/v1/games/tiger-tank-59-mission-pack-031/index.json new file mode 100644 index 000000000000..feb590ef1992 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-mission-pack-031/index.json @@ -0,0 +1,31 @@ +{ + "id": 156214, + "slug": "tiger-tank-59-mission-pack-031", + "name": "Tiger Tank 59 Ⅰ Mission Pack 031", + "release_date": "2021-06-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184884" + ], + "created_at": "2026-07-10T10:10:47.032490", + "updated_at": "2026-07-10T10:10:47.032490", + "url": "/v1/games/tiger-tank-59-mission-pack-031" +} diff --git a/site/public/v1/games/tiger-tank-59-mission-pack-032/index.json b/site/public/v1/games/tiger-tank-59-mission-pack-032/index.json new file mode 100644 index 000000000000..de2f74bd04a2 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-mission-pack-032/index.json @@ -0,0 +1,31 @@ +{ + "id": 156215, + "slug": "tiger-tank-59-mission-pack-032", + "name": "Tiger Tank 59 Ⅰ Mission Pack 032", + "release_date": "2021-06-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184885" + ], + "created_at": "2026-07-10T10:10:47.032490", + "updated_at": "2026-07-10T10:10:47.032490", + "url": "/v1/games/tiger-tank-59-mission-pack-032" +} diff --git a/site/public/v1/games/tiger-tank-59-mission-pack-033/index.json b/site/public/v1/games/tiger-tank-59-mission-pack-033/index.json new file mode 100644 index 000000000000..3f47722c96c3 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-mission-pack-033/index.json @@ -0,0 +1,31 @@ +{ + "id": 156216, + "slug": "tiger-tank-59-mission-pack-033", + "name": "Tiger Tank 59 Ⅰ Mission Pack 033", + "release_date": "2021-06-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184891" + ], + "created_at": "2026-07-10T10:10:47.032490", + "updated_at": "2026-07-10T10:10:47.032490", + "url": "/v1/games/tiger-tank-59-mission-pack-033" +} diff --git a/site/public/v1/games/tiger-tank-59-mission-pack-034/index.json b/site/public/v1/games/tiger-tank-59-mission-pack-034/index.json new file mode 100644 index 000000000000..e077f05bdc4e --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-mission-pack-034/index.json @@ -0,0 +1,31 @@ +{ + "id": 156217, + "slug": "tiger-tank-59-mission-pack-034", + "name": "Tiger Tank 59 Ⅰ Mission Pack 034", + "release_date": "2021-06-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184898" + ], + "created_at": "2026-07-10T10:10:47.032490", + "updated_at": "2026-07-10T10:10:47.032490", + "url": "/v1/games/tiger-tank-59-mission-pack-034" +} diff --git a/site/public/v1/games/tiger-tank-59-mission-pack-035/index.json b/site/public/v1/games/tiger-tank-59-mission-pack-035/index.json new file mode 100644 index 000000000000..1e324f058398 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-mission-pack-035/index.json @@ -0,0 +1,31 @@ +{ + "id": 156218, + "slug": "tiger-tank-59-mission-pack-035", + "name": "Tiger Tank 59 Ⅰ Mission Pack 035", + "release_date": "2021-06-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184902" + ], + "created_at": "2026-07-10T10:10:47.033480", + "updated_at": "2026-07-10T10:10:47.033480", + "url": "/v1/games/tiger-tank-59-mission-pack-035" +} diff --git a/site/public/v1/games/tiger-tank-59-mission-pack-036/index.json b/site/public/v1/games/tiger-tank-59-mission-pack-036/index.json new file mode 100644 index 000000000000..28440c06ed1a --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-mission-pack-036/index.json @@ -0,0 +1,31 @@ +{ + "id": 156219, + "slug": "tiger-tank-59-mission-pack-036", + "name": "Tiger Tank 59 Ⅰ Mission Pack 036", + "release_date": "2021-06-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184913" + ], + "created_at": "2026-07-10T10:10:47.033480", + "updated_at": "2026-07-10T10:10:47.033480", + "url": "/v1/games/tiger-tank-59-mission-pack-036" +} diff --git a/site/public/v1/games/tiger-tank-59-mission-pack-037/index.json b/site/public/v1/games/tiger-tank-59-mission-pack-037/index.json new file mode 100644 index 000000000000..b632043565bb --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-mission-pack-037/index.json @@ -0,0 +1,31 @@ +{ + "id": 156220, + "slug": "tiger-tank-59-mission-pack-037", + "name": "Tiger Tank 59 Ⅰ Mission Pack 037", + "release_date": "2021-06-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184916" + ], + "created_at": "2026-07-10T10:10:47.033480", + "updated_at": "2026-07-10T10:10:47.033480", + "url": "/v1/games/tiger-tank-59-mission-pack-037" +} diff --git a/site/public/v1/games/tiger-tank-59-mission-pack-038/index.json b/site/public/v1/games/tiger-tank-59-mission-pack-038/index.json new file mode 100644 index 000000000000..0174096fe60c --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-mission-pack-038/index.json @@ -0,0 +1,31 @@ +{ + "id": 156221, + "slug": "tiger-tank-59-mission-pack-038", + "name": "Tiger Tank 59 Ⅰ Mission Pack 038", + "release_date": "2021-06-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184919" + ], + "created_at": "2026-07-10T10:10:47.033480", + "updated_at": "2026-07-10T10:10:47.033480", + "url": "/v1/games/tiger-tank-59-mission-pack-038" +} diff --git a/site/public/v1/games/tiger-tank-59-mission-pack-039/index.json b/site/public/v1/games/tiger-tank-59-mission-pack-039/index.json new file mode 100644 index 000000000000..07527a2d6ff6 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-mission-pack-039/index.json @@ -0,0 +1,31 @@ +{ + "id": 156222, + "slug": "tiger-tank-59-mission-pack-039", + "name": "Tiger Tank 59 Ⅰ Mission Pack 039", + "release_date": "2021-06-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184921" + ], + "created_at": "2026-07-10T10:10:47.034451", + "updated_at": "2026-07-10T10:10:47.034451", + "url": "/v1/games/tiger-tank-59-mission-pack-039" +} diff --git a/site/public/v1/games/tiger-tank-59-mission-pack-040/index.json b/site/public/v1/games/tiger-tank-59-mission-pack-040/index.json new file mode 100644 index 000000000000..53862629a025 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-mission-pack-040/index.json @@ -0,0 +1,31 @@ +{ + "id": 156223, + "slug": "tiger-tank-59-mission-pack-040", + "name": "Tiger Tank 59 Ⅰ Mission Pack 040", + "release_date": "2021-06-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184922" + ], + "created_at": "2026-07-10T10:10:47.034451", + "updated_at": "2026-07-10T10:10:47.034451", + "url": "/v1/games/tiger-tank-59-mission-pack-040" +} diff --git a/site/public/v1/games/tiger-tank-59-mission-pack-041/index.json b/site/public/v1/games/tiger-tank-59-mission-pack-041/index.json new file mode 100644 index 000000000000..1293656be22e --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-mission-pack-041/index.json @@ -0,0 +1,31 @@ +{ + "id": 156224, + "slug": "tiger-tank-59-mission-pack-041", + "name": "Tiger Tank 59 Ⅰ Mission Pack 041", + "release_date": "2021-06-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184923" + ], + "created_at": "2026-07-10T10:10:47.034451", + "updated_at": "2026-07-10T10:10:47.034451", + "url": "/v1/games/tiger-tank-59-mission-pack-041" +} diff --git a/site/public/v1/games/tiger-tank-59-mission-pack-042/index.json b/site/public/v1/games/tiger-tank-59-mission-pack-042/index.json new file mode 100644 index 000000000000..20dc5d292f59 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-mission-pack-042/index.json @@ -0,0 +1,31 @@ +{ + "id": 156225, + "slug": "tiger-tank-59-mission-pack-042", + "name": "Tiger Tank 59 Ⅰ Mission Pack 042", + "release_date": "2021-06-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184924" + ], + "created_at": "2026-07-10T10:10:47.034451", + "updated_at": "2026-07-10T10:10:47.034451", + "url": "/v1/games/tiger-tank-59-mission-pack-042" +} diff --git a/site/public/v1/games/tiger-tank-59-mission-pack-043/index.json b/site/public/v1/games/tiger-tank-59-mission-pack-043/index.json new file mode 100644 index 000000000000..882922ab684f --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-mission-pack-043/index.json @@ -0,0 +1,31 @@ +{ + "id": 156226, + "slug": "tiger-tank-59-mission-pack-043", + "name": "Tiger Tank 59 Ⅰ Mission Pack 043", + "release_date": "2021-06-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184925" + ], + "created_at": "2026-07-10T10:10:47.034451", + "updated_at": "2026-07-10T10:10:47.034451", + "url": "/v1/games/tiger-tank-59-mission-pack-043" +} diff --git a/site/public/v1/games/tiger-tank-59-mission-pack-044/index.json b/site/public/v1/games/tiger-tank-59-mission-pack-044/index.json new file mode 100644 index 000000000000..36569ba4e9bf --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-mission-pack-044/index.json @@ -0,0 +1,31 @@ +{ + "id": 156227, + "slug": "tiger-tank-59-mission-pack-044", + "name": "Tiger Tank 59 Ⅰ Mission Pack 044", + "release_date": "2021-06-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184926" + ], + "created_at": "2026-07-10T10:10:47.035481", + "updated_at": "2026-07-10T10:10:47.035481", + "url": "/v1/games/tiger-tank-59-mission-pack-044" +} diff --git a/site/public/v1/games/tiger-tank-59-mission-pack-045/index.json b/site/public/v1/games/tiger-tank-59-mission-pack-045/index.json new file mode 100644 index 000000000000..a43479a1dd7d --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-mission-pack-045/index.json @@ -0,0 +1,31 @@ +{ + "id": 156228, + "slug": "tiger-tank-59-mission-pack-045", + "name": "Tiger Tank 59 Ⅰ Mission Pack 045", + "release_date": "2021-06-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184927" + ], + "created_at": "2026-07-10T10:10:47.035481", + "updated_at": "2026-07-10T10:10:47.035481", + "url": "/v1/games/tiger-tank-59-mission-pack-045" +} diff --git a/site/public/v1/games/tiger-tank-59-mission-pack-046/index.json b/site/public/v1/games/tiger-tank-59-mission-pack-046/index.json new file mode 100644 index 000000000000..1583f0b726ed --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-mission-pack-046/index.json @@ -0,0 +1,31 @@ +{ + "id": 156229, + "slug": "tiger-tank-59-mission-pack-046", + "name": "Tiger Tank 59 Ⅰ Mission Pack 046", + "release_date": "2021-06-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184928" + ], + "created_at": "2026-07-10T10:10:47.035481", + "updated_at": "2026-07-10T10:10:47.035481", + "url": "/v1/games/tiger-tank-59-mission-pack-046" +} diff --git a/site/public/v1/games/tiger-tank-59-mission-pack-047/index.json b/site/public/v1/games/tiger-tank-59-mission-pack-047/index.json new file mode 100644 index 000000000000..21afcc188af7 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-mission-pack-047/index.json @@ -0,0 +1,31 @@ +{ + "id": 156230, + "slug": "tiger-tank-59-mission-pack-047", + "name": "Tiger Tank 59 Ⅰ Mission Pack 047", + "release_date": "2021-06-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184933" + ], + "created_at": "2026-07-10T10:10:47.035481", + "updated_at": "2026-07-10T10:10:47.035481", + "url": "/v1/games/tiger-tank-59-mission-pack-047" +} diff --git a/site/public/v1/games/tiger-tank-59-mission-pack-048/index.json b/site/public/v1/games/tiger-tank-59-mission-pack-048/index.json new file mode 100644 index 000000000000..27b9ec9a1581 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-mission-pack-048/index.json @@ -0,0 +1,31 @@ +{ + "id": 156231, + "slug": "tiger-tank-59-mission-pack-048", + "name": "Tiger Tank 59 Ⅰ Mission Pack 048", + "release_date": "2021-06-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184935" + ], + "created_at": "2026-07-10T10:10:47.036471", + "updated_at": "2026-07-10T10:10:47.036471", + "url": "/v1/games/tiger-tank-59-mission-pack-048" +} diff --git a/site/public/v1/games/tiger-tank-59-mission-pack-049/index.json b/site/public/v1/games/tiger-tank-59-mission-pack-049/index.json new file mode 100644 index 000000000000..8c37e74b302b --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-mission-pack-049/index.json @@ -0,0 +1,31 @@ +{ + "id": 156232, + "slug": "tiger-tank-59-mission-pack-049", + "name": "Tiger Tank 59 Ⅰ Mission Pack 049", + "release_date": "2021-06-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184937" + ], + "created_at": "2026-07-10T10:10:47.036471", + "updated_at": "2026-07-10T10:10:47.036471", + "url": "/v1/games/tiger-tank-59-mission-pack-049" +} diff --git a/site/public/v1/games/tiger-tank-59-mission-pack-050/index.json b/site/public/v1/games/tiger-tank-59-mission-pack-050/index.json new file mode 100644 index 000000000000..9348531dd3ab --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-mission-pack-050/index.json @@ -0,0 +1,31 @@ +{ + "id": 156233, + "slug": "tiger-tank-59-mission-pack-050", + "name": "Tiger Tank 59 Ⅰ Mission Pack 050", + "release_date": "2021-06-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184938" + ], + "created_at": "2026-07-10T10:10:47.036471", + "updated_at": "2026-07-10T10:10:47.036471", + "url": "/v1/games/tiger-tank-59-mission-pack-050" +} diff --git a/site/public/v1/games/tiger-tank-59-mission-pack-051/index.json b/site/public/v1/games/tiger-tank-59-mission-pack-051/index.json new file mode 100644 index 000000000000..dcf4607611ff --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-mission-pack-051/index.json @@ -0,0 +1,31 @@ +{ + "id": 156234, + "slug": "tiger-tank-59-mission-pack-051", + "name": "Tiger Tank 59 Ⅰ Mission Pack 051", + "release_date": "2021-06-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184939" + ], + "created_at": "2026-07-10T10:10:47.036471", + "updated_at": "2026-07-10T10:10:47.036471", + "url": "/v1/games/tiger-tank-59-mission-pack-051" +} diff --git a/site/public/v1/games/tiger-tank-59-mission-pack-053/index.json b/site/public/v1/games/tiger-tank-59-mission-pack-053/index.json new file mode 100644 index 000000000000..cd0e189d6872 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-mission-pack-053/index.json @@ -0,0 +1,31 @@ +{ + "id": 156235, + "slug": "tiger-tank-59-mission-pack-053", + "name": "Tiger Tank 59 Ⅰ Mission Pack 053", + "release_date": "2021-06-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184940" + ], + "created_at": "2026-07-10T10:10:47.036471", + "updated_at": "2026-07-10T10:10:47.036471", + "url": "/v1/games/tiger-tank-59-mission-pack-053" +} diff --git a/site/public/v1/games/tiger-tank-59-mission-pack-054/index.json b/site/public/v1/games/tiger-tank-59-mission-pack-054/index.json new file mode 100644 index 000000000000..e99ef56ac64c --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-mission-pack-054/index.json @@ -0,0 +1,31 @@ +{ + "id": 156236, + "slug": "tiger-tank-59-mission-pack-054", + "name": "Tiger Tank 59 Ⅰ Mission Pack 054", + "release_date": "2021-06-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184941" + ], + "created_at": "2026-07-10T10:10:47.037487", + "updated_at": "2026-07-10T10:10:47.037487", + "url": "/v1/games/tiger-tank-59-mission-pack-054" +} diff --git a/site/public/v1/games/tiger-tank-59-mission-pack-055/index.json b/site/public/v1/games/tiger-tank-59-mission-pack-055/index.json new file mode 100644 index 000000000000..ad5caf38cee8 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-mission-pack-055/index.json @@ -0,0 +1,31 @@ +{ + "id": 156237, + "slug": "tiger-tank-59-mission-pack-055", + "name": "Tiger Tank 59 Ⅰ Mission Pack 055", + "release_date": "2021-06-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184942" + ], + "created_at": "2026-07-10T10:10:47.037487", + "updated_at": "2026-07-10T10:10:47.037487", + "url": "/v1/games/tiger-tank-59-mission-pack-055" +} diff --git a/site/public/v1/games/tiger-tank-59-mission-pack-056/index.json b/site/public/v1/games/tiger-tank-59-mission-pack-056/index.json new file mode 100644 index 000000000000..69de6c3fa0d4 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-mission-pack-056/index.json @@ -0,0 +1,31 @@ +{ + "id": 156238, + "slug": "tiger-tank-59-mission-pack-056", + "name": "Tiger Tank 59 Ⅰ Mission Pack 056", + "release_date": "2021-06-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184943" + ], + "created_at": "2026-07-10T10:10:47.037487", + "updated_at": "2026-07-10T10:10:47.037487", + "url": "/v1/games/tiger-tank-59-mission-pack-056" +} diff --git a/site/public/v1/games/tiger-tank-59-mission-pack-057/index.json b/site/public/v1/games/tiger-tank-59-mission-pack-057/index.json new file mode 100644 index 000000000000..8571491375a6 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-mission-pack-057/index.json @@ -0,0 +1,31 @@ +{ + "id": 156239, + "slug": "tiger-tank-59-mission-pack-057", + "name": "Tiger Tank 59 Ⅰ Mission Pack 057", + "release_date": "2021-06-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184944" + ], + "created_at": "2026-07-10T10:10:47.037487", + "updated_at": "2026-07-10T10:10:47.037487", + "url": "/v1/games/tiger-tank-59-mission-pack-057" +} diff --git a/site/public/v1/games/tiger-tank-59-mission-pack-058/index.json b/site/public/v1/games/tiger-tank-59-mission-pack-058/index.json new file mode 100644 index 000000000000..d91ef05aeef4 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-mission-pack-058/index.json @@ -0,0 +1,31 @@ +{ + "id": 156240, + "slug": "tiger-tank-59-mission-pack-058", + "name": "Tiger Tank 59 Ⅰ Mission Pack 058", + "release_date": "2021-06-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184946" + ], + "created_at": "2026-07-10T10:10:47.038489", + "updated_at": "2026-07-10T10:10:47.038489", + "url": "/v1/games/tiger-tank-59-mission-pack-058" +} diff --git a/site/public/v1/games/tiger-tank-59-mission-pack-059/index.json b/site/public/v1/games/tiger-tank-59-mission-pack-059/index.json new file mode 100644 index 000000000000..be05e28c9efc --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-mission-pack-059/index.json @@ -0,0 +1,31 @@ +{ + "id": 156241, + "slug": "tiger-tank-59-mission-pack-059", + "name": "Tiger Tank 59 Ⅰ Mission Pack 059", + "release_date": "2021-06-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184947" + ], + "created_at": "2026-07-10T10:10:47.038489", + "updated_at": "2026-07-10T10:10:47.038489", + "url": "/v1/games/tiger-tank-59-mission-pack-059" +} diff --git a/site/public/v1/games/tiger-tank-59-mission-pack-060/index.json b/site/public/v1/games/tiger-tank-59-mission-pack-060/index.json new file mode 100644 index 000000000000..87212ce9b357 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-mission-pack-060/index.json @@ -0,0 +1,31 @@ +{ + "id": 156242, + "slug": "tiger-tank-59-mission-pack-060", + "name": "Tiger Tank 59 Ⅰ Mission Pack 060", + "release_date": "2021-06-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184949" + ], + "created_at": "2026-07-10T10:10:47.038489", + "updated_at": "2026-07-10T10:10:47.038489", + "url": "/v1/games/tiger-tank-59-mission-pack-060" +} diff --git a/site/public/v1/games/tiger-tank-59-mission-pack-062/index.json b/site/public/v1/games/tiger-tank-59-mission-pack-062/index.json new file mode 100644 index 000000000000..07143af9bc8a --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-mission-pack-062/index.json @@ -0,0 +1,31 @@ +{ + "id": 156243, + "slug": "tiger-tank-59-mission-pack-062", + "name": "Tiger Tank 59 Ⅰ Mission Pack 062", + "release_date": "2021-06-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184950" + ], + "created_at": "2026-07-10T10:10:47.038489", + "updated_at": "2026-07-10T10:10:47.038489", + "url": "/v1/games/tiger-tank-59-mission-pack-062" +} diff --git a/site/public/v1/games/tiger-tank-59-mission-pack-063/index.json b/site/public/v1/games/tiger-tank-59-mission-pack-063/index.json new file mode 100644 index 000000000000..3debc038c017 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-mission-pack-063/index.json @@ -0,0 +1,31 @@ +{ + "id": 156244, + "slug": "tiger-tank-59-mission-pack-063", + "name": "Tiger Tank 59 Ⅰ Mission Pack 063", + "release_date": "2021-06-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184952" + ], + "created_at": "2026-07-10T10:10:47.038489", + "updated_at": "2026-07-10T10:10:47.038489", + "url": "/v1/games/tiger-tank-59-mission-pack-063" +} diff --git a/site/public/v1/games/tiger-tank-59-mission-pack-064/index.json b/site/public/v1/games/tiger-tank-59-mission-pack-064/index.json new file mode 100644 index 000000000000..4108134f21ad --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-mission-pack-064/index.json @@ -0,0 +1,31 @@ +{ + "id": 156245, + "slug": "tiger-tank-59-mission-pack-064", + "name": "Tiger Tank 59 Ⅰ Mission Pack 064", + "release_date": "2021-06-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184953" + ], + "created_at": "2026-07-10T10:10:47.039444", + "updated_at": "2026-07-10T10:10:47.039444", + "url": "/v1/games/tiger-tank-59-mission-pack-064" +} diff --git a/site/public/v1/games/tiger-tank-59-mission-pack-065/index.json b/site/public/v1/games/tiger-tank-59-mission-pack-065/index.json new file mode 100644 index 000000000000..3dd0cddf5d01 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-mission-pack-065/index.json @@ -0,0 +1,31 @@ +{ + "id": 156246, + "slug": "tiger-tank-59-mission-pack-065", + "name": "Tiger Tank 59 Ⅰ Mission Pack 065", + "release_date": "2021-06-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184955" + ], + "created_at": "2026-07-10T10:10:47.039444", + "updated_at": "2026-07-10T10:10:47.039444", + "url": "/v1/games/tiger-tank-59-mission-pack-065" +} diff --git a/site/public/v1/games/tiger-tank-59-mission-pack-066/index.json b/site/public/v1/games/tiger-tank-59-mission-pack-066/index.json new file mode 100644 index 000000000000..b6a6aac71646 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-mission-pack-066/index.json @@ -0,0 +1,31 @@ +{ + "id": 156247, + "slug": "tiger-tank-59-mission-pack-066", + "name": "Tiger Tank 59 Ⅰ Mission Pack 066", + "release_date": "2021-06-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184957" + ], + "created_at": "2026-07-10T10:10:47.039444", + "updated_at": "2026-07-10T10:10:47.039444", + "url": "/v1/games/tiger-tank-59-mission-pack-066" +} diff --git a/site/public/v1/games/tiger-tank-59-mission-pack-067/index.json b/site/public/v1/games/tiger-tank-59-mission-pack-067/index.json new file mode 100644 index 000000000000..f5187d9c4327 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-mission-pack-067/index.json @@ -0,0 +1,31 @@ +{ + "id": 156248, + "slug": "tiger-tank-59-mission-pack-067", + "name": "Tiger Tank 59 Ⅰ Mission Pack 067", + "release_date": "2021-06-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184959" + ], + "created_at": "2026-07-10T10:10:47.039444", + "updated_at": "2026-07-10T10:10:47.039444", + "url": "/v1/games/tiger-tank-59-mission-pack-067" +} diff --git a/site/public/v1/games/tiger-tank-59-mission-pack-068/index.json b/site/public/v1/games/tiger-tank-59-mission-pack-068/index.json new file mode 100644 index 000000000000..fad7027eb3ae --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-mission-pack-068/index.json @@ -0,0 +1,31 @@ +{ + "id": 156249, + "slug": "tiger-tank-59-mission-pack-068", + "name": "Tiger Tank 59 Ⅰ Mission Pack 068", + "release_date": "2021-06-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184960" + ], + "created_at": "2026-07-10T10:10:47.039444", + "updated_at": "2026-07-10T10:10:47.039444", + "url": "/v1/games/tiger-tank-59-mission-pack-068" +} diff --git a/site/public/v1/games/tiger-tank-59-mission-pack-069/index.json b/site/public/v1/games/tiger-tank-59-mission-pack-069/index.json new file mode 100644 index 000000000000..dbfcc1501e15 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-mission-pack-069/index.json @@ -0,0 +1,31 @@ +{ + "id": 156250, + "slug": "tiger-tank-59-mission-pack-069", + "name": "Tiger Tank 59 Ⅰ Mission Pack 069", + "release_date": "2021-06-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184961" + ], + "created_at": "2026-07-10T10:10:47.040450", + "updated_at": "2026-07-10T10:10:47.040450", + "url": "/v1/games/tiger-tank-59-mission-pack-069" +} diff --git a/site/public/v1/games/tiger-tank-59-mission-pack-071/index.json b/site/public/v1/games/tiger-tank-59-mission-pack-071/index.json new file mode 100644 index 000000000000..cd6fc67d3eea --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-mission-pack-071/index.json @@ -0,0 +1,31 @@ +{ + "id": 156251, + "slug": "tiger-tank-59-mission-pack-071", + "name": "Tiger Tank 59 Ⅰ Mission Pack 071", + "release_date": "2021-06-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184964" + ], + "created_at": "2026-07-10T10:10:47.040450", + "updated_at": "2026-07-10T10:10:47.040450", + "url": "/v1/games/tiger-tank-59-mission-pack-071" +} diff --git a/site/public/v1/games/tiger-tank-59-mission-pack-072/index.json b/site/public/v1/games/tiger-tank-59-mission-pack-072/index.json new file mode 100644 index 000000000000..fd9f40a67b02 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-mission-pack-072/index.json @@ -0,0 +1,31 @@ +{ + "id": 156252, + "slug": "tiger-tank-59-mission-pack-072", + "name": "Tiger Tank 59 Ⅰ Mission Pack 072", + "release_date": "2021-06-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184966" + ], + "created_at": "2026-07-10T10:10:47.040450", + "updated_at": "2026-07-10T10:10:47.040450", + "url": "/v1/games/tiger-tank-59-mission-pack-072" +} diff --git a/site/public/v1/games/tiger-tank-59-mission-pack-073/index.json b/site/public/v1/games/tiger-tank-59-mission-pack-073/index.json new file mode 100644 index 000000000000..0ace39cb5d87 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-mission-pack-073/index.json @@ -0,0 +1,31 @@ +{ + "id": 156253, + "slug": "tiger-tank-59-mission-pack-073", + "name": "Tiger Tank 59 Ⅰ Mission Pack 073", + "release_date": "2021-06-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184967" + ], + "created_at": "2026-07-10T10:10:47.040450", + "updated_at": "2026-07-10T10:10:47.040450", + "url": "/v1/games/tiger-tank-59-mission-pack-073" +} diff --git a/site/public/v1/games/tiger-tank-59-mission-pack-074/index.json b/site/public/v1/games/tiger-tank-59-mission-pack-074/index.json new file mode 100644 index 000000000000..3bb5db2a3904 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-mission-pack-074/index.json @@ -0,0 +1,31 @@ +{ + "id": 156254, + "slug": "tiger-tank-59-mission-pack-074", + "name": "Tiger Tank 59 Ⅰ Mission Pack 074", + "release_date": "2021-06-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184969" + ], + "created_at": "2026-07-10T10:10:47.041444", + "updated_at": "2026-07-10T10:10:47.041444", + "url": "/v1/games/tiger-tank-59-mission-pack-074" +} diff --git a/site/public/v1/games/tiger-tank-59-mission-pack-075/index.json b/site/public/v1/games/tiger-tank-59-mission-pack-075/index.json new file mode 100644 index 000000000000..290df3609f49 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-mission-pack-075/index.json @@ -0,0 +1,31 @@ +{ + "id": 156255, + "slug": "tiger-tank-59-mission-pack-075", + "name": "Tiger Tank 59 Ⅰ Mission Pack 075", + "release_date": "2021-06-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184971" + ], + "created_at": "2026-07-10T10:10:47.041444", + "updated_at": "2026-07-10T10:10:47.041444", + "url": "/v1/games/tiger-tank-59-mission-pack-075" +} diff --git a/site/public/v1/games/tiger-tank-59-mission-pack-076/index.json b/site/public/v1/games/tiger-tank-59-mission-pack-076/index.json new file mode 100644 index 000000000000..e5fe6de1f224 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-mission-pack-076/index.json @@ -0,0 +1,31 @@ +{ + "id": 156256, + "slug": "tiger-tank-59-mission-pack-076", + "name": "Tiger Tank 59 Ⅰ Mission Pack 076", + "release_date": "2021-06-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184973" + ], + "created_at": "2026-07-10T10:10:47.041444", + "updated_at": "2026-07-10T10:10:47.041444", + "url": "/v1/games/tiger-tank-59-mission-pack-076" +} diff --git a/site/public/v1/games/tiger-tank-59-mission-pack-077/index.json b/site/public/v1/games/tiger-tank-59-mission-pack-077/index.json new file mode 100644 index 000000000000..cf688b98b648 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-mission-pack-077/index.json @@ -0,0 +1,31 @@ +{ + "id": 156257, + "slug": "tiger-tank-59-mission-pack-077", + "name": "Tiger Tank 59 Ⅰ Mission Pack 077", + "release_date": "2021-06-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184975" + ], + "created_at": "2026-07-10T10:10:47.041444", + "updated_at": "2026-07-10T10:10:47.041444", + "url": "/v1/games/tiger-tank-59-mission-pack-077" +} diff --git a/site/public/v1/games/tiger-tank-59-mission-pack-078/index.json b/site/public/v1/games/tiger-tank-59-mission-pack-078/index.json new file mode 100644 index 000000000000..9296e6646325 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-mission-pack-078/index.json @@ -0,0 +1,31 @@ +{ + "id": 156258, + "slug": "tiger-tank-59-mission-pack-078", + "name": "Tiger Tank 59 Ⅰ Mission Pack 078", + "release_date": "2021-06-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184979" + ], + "created_at": "2026-07-10T10:10:47.041444", + "updated_at": "2026-07-10T10:10:47.041444", + "url": "/v1/games/tiger-tank-59-mission-pack-078" +} diff --git a/site/public/v1/games/tiger-tank-59-mission-pack-079/index.json b/site/public/v1/games/tiger-tank-59-mission-pack-079/index.json new file mode 100644 index 000000000000..f21a40539be0 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-mission-pack-079/index.json @@ -0,0 +1,31 @@ +{ + "id": 156259, + "slug": "tiger-tank-59-mission-pack-079", + "name": "Tiger Tank 59 Ⅰ Mission Pack 079", + "release_date": "2021-06-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184983" + ], + "created_at": "2026-07-10T10:10:47.042452", + "updated_at": "2026-07-10T10:10:47.042452", + "url": "/v1/games/tiger-tank-59-mission-pack-079" +} diff --git a/site/public/v1/games/tiger-tank-59-mission-pack-080/index.json b/site/public/v1/games/tiger-tank-59-mission-pack-080/index.json new file mode 100644 index 000000000000..f02fbd30f7f6 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-mission-pack-080/index.json @@ -0,0 +1,31 @@ +{ + "id": 156260, + "slug": "tiger-tank-59-mission-pack-080", + "name": "Tiger Tank 59 Ⅰ Mission Pack 080", + "release_date": "2021-06-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116184992" + ], + "created_at": "2026-07-10T10:10:47.042452", + "updated_at": "2026-07-10T10:10:47.042452", + "url": "/v1/games/tiger-tank-59-mission-pack-080" +} diff --git a/site/public/v1/games/tiger-tank-59-mission-pack-081/index.json b/site/public/v1/games/tiger-tank-59-mission-pack-081/index.json new file mode 100644 index 000000000000..c9741559f12f --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-mission-pack-081/index.json @@ -0,0 +1,31 @@ +{ + "id": 156261, + "slug": "tiger-tank-59-mission-pack-081", + "name": "Tiger Tank 59 Ⅰ Mission Pack 081", + "release_date": "2021-06-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185003" + ], + "created_at": "2026-07-10T10:10:47.042452", + "updated_at": "2026-07-10T10:10:47.042452", + "url": "/v1/games/tiger-tank-59-mission-pack-081" +} diff --git a/site/public/v1/games/tiger-tank-59-mission-pack-082/index.json b/site/public/v1/games/tiger-tank-59-mission-pack-082/index.json new file mode 100644 index 000000000000..f00fb9532c54 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-mission-pack-082/index.json @@ -0,0 +1,31 @@ +{ + "id": 156262, + "slug": "tiger-tank-59-mission-pack-082", + "name": "Tiger Tank 59 Ⅰ Mission Pack 082", + "release_date": "2021-06-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185010" + ], + "created_at": "2026-07-10T10:10:47.043447", + "updated_at": "2026-07-10T10:10:47.043447", + "url": "/v1/games/tiger-tank-59-mission-pack-082" +} diff --git a/site/public/v1/games/tiger-tank-59-mission-pack-083/index.json b/site/public/v1/games/tiger-tank-59-mission-pack-083/index.json new file mode 100644 index 000000000000..25ee269430a4 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-mission-pack-083/index.json @@ -0,0 +1,31 @@ +{ + "id": 156263, + "slug": "tiger-tank-59-mission-pack-083", + "name": "Tiger Tank 59 Ⅰ Mission Pack 083", + "release_date": "2021-06-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185015" + ], + "created_at": "2026-07-10T10:10:47.043447", + "updated_at": "2026-07-10T10:10:47.043447", + "url": "/v1/games/tiger-tank-59-mission-pack-083" +} diff --git a/site/public/v1/games/tiger-tank-59-mission-pack-084/index.json b/site/public/v1/games/tiger-tank-59-mission-pack-084/index.json new file mode 100644 index 000000000000..24acab7cfcce --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-mission-pack-084/index.json @@ -0,0 +1,31 @@ +{ + "id": 156264, + "slug": "tiger-tank-59-mission-pack-084", + "name": "Tiger Tank 59 Ⅰ Mission Pack 084", + "release_date": "2021-06-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185020" + ], + "created_at": "2026-07-10T10:10:47.043447", + "updated_at": "2026-07-10T10:10:47.043447", + "url": "/v1/games/tiger-tank-59-mission-pack-084" +} diff --git a/site/public/v1/games/tiger-tank-59-mission-pack-085/index.json b/site/public/v1/games/tiger-tank-59-mission-pack-085/index.json new file mode 100644 index 000000000000..6b11dc89c333 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-mission-pack-085/index.json @@ -0,0 +1,31 @@ +{ + "id": 156265, + "slug": "tiger-tank-59-mission-pack-085", + "name": "Tiger Tank 59 Ⅰ Mission Pack 085", + "release_date": "2021-06-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185029" + ], + "created_at": "2026-07-10T10:10:47.043447", + "updated_at": "2026-07-10T10:10:47.043447", + "url": "/v1/games/tiger-tank-59-mission-pack-085" +} diff --git a/site/public/v1/games/tiger-tank-59-mission-pack-086/index.json b/site/public/v1/games/tiger-tank-59-mission-pack-086/index.json new file mode 100644 index 000000000000..3545cb37d6a6 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-mission-pack-086/index.json @@ -0,0 +1,31 @@ +{ + "id": 156266, + "slug": "tiger-tank-59-mission-pack-086", + "name": "Tiger Tank 59 Ⅰ Mission Pack 086", + "release_date": "2021-06-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185030" + ], + "created_at": "2026-07-10T10:10:47.043447", + "updated_at": "2026-07-10T10:10:47.043447", + "url": "/v1/games/tiger-tank-59-mission-pack-086" +} diff --git a/site/public/v1/games/tiger-tank-59-mission-pack-087/index.json b/site/public/v1/games/tiger-tank-59-mission-pack-087/index.json new file mode 100644 index 000000000000..00c9b15301fb --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-mission-pack-087/index.json @@ -0,0 +1,31 @@ +{ + "id": 156267, + "slug": "tiger-tank-59-mission-pack-087", + "name": "Tiger Tank 59 Ⅰ Mission Pack 087", + "release_date": "2021-06-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185031" + ], + "created_at": "2026-07-10T10:10:47.044450", + "updated_at": "2026-07-10T10:10:47.044450", + "url": "/v1/games/tiger-tank-59-mission-pack-087" +} diff --git a/site/public/v1/games/tiger-tank-59-mission-pack-088/index.json b/site/public/v1/games/tiger-tank-59-mission-pack-088/index.json new file mode 100644 index 000000000000..e1b7a6709cfa --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-mission-pack-088/index.json @@ -0,0 +1,31 @@ +{ + "id": 156268, + "slug": "tiger-tank-59-mission-pack-088", + "name": "Tiger Tank 59 Ⅰ Mission Pack 088", + "release_date": "2021-06-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185033" + ], + "created_at": "2026-07-10T10:10:47.044450", + "updated_at": "2026-07-10T10:10:47.044450", + "url": "/v1/games/tiger-tank-59-mission-pack-088" +} diff --git a/site/public/v1/games/tiger-tank-59-mission-pack-090/index.json b/site/public/v1/games/tiger-tank-59-mission-pack-090/index.json new file mode 100644 index 000000000000..6b9042227f26 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-mission-pack-090/index.json @@ -0,0 +1,31 @@ +{ + "id": 156269, + "slug": "tiger-tank-59-mission-pack-090", + "name": "Tiger Tank 59 Ⅰ Mission Pack 090", + "release_date": "2021-06-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185034" + ], + "created_at": "2026-07-10T10:10:47.044450", + "updated_at": "2026-07-10T10:10:47.044450", + "url": "/v1/games/tiger-tank-59-mission-pack-090" +} diff --git a/site/public/v1/games/tiger-tank-59-mission-pack-091/index.json b/site/public/v1/games/tiger-tank-59-mission-pack-091/index.json new file mode 100644 index 000000000000..6262c625b0b1 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-mission-pack-091/index.json @@ -0,0 +1,31 @@ +{ + "id": 156270, + "slug": "tiger-tank-59-mission-pack-091", + "name": "Tiger Tank 59 Ⅰ Mission Pack 091", + "release_date": "2021-06-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185036" + ], + "created_at": "2026-07-10T10:10:47.044450", + "updated_at": "2026-07-10T10:10:47.044450", + "url": "/v1/games/tiger-tank-59-mission-pack-091" +} diff --git a/site/public/v1/games/tiger-tank-59-mission-pack-092/index.json b/site/public/v1/games/tiger-tank-59-mission-pack-092/index.json new file mode 100644 index 000000000000..cc2e135c3991 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-mission-pack-092/index.json @@ -0,0 +1,31 @@ +{ + "id": 156271, + "slug": "tiger-tank-59-mission-pack-092", + "name": "Tiger Tank 59 Ⅰ Mission Pack 092", + "release_date": "2021-06-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185037" + ], + "created_at": "2026-07-10T10:10:47.044450", + "updated_at": "2026-07-10T10:10:47.044450", + "url": "/v1/games/tiger-tank-59-mission-pack-092" +} diff --git a/site/public/v1/games/tiger-tank-59-mission-pack-093/index.json b/site/public/v1/games/tiger-tank-59-mission-pack-093/index.json new file mode 100644 index 000000000000..9665b26b40b3 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-mission-pack-093/index.json @@ -0,0 +1,31 @@ +{ + "id": 156272, + "slug": "tiger-tank-59-mission-pack-093", + "name": "Tiger Tank 59 Ⅰ Mission Pack 093", + "release_date": "2021-06-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185038" + ], + "created_at": "2026-07-10T10:10:47.044450", + "updated_at": "2026-07-10T10:10:47.044450", + "url": "/v1/games/tiger-tank-59-mission-pack-093" +} diff --git a/site/public/v1/games/tiger-tank-59-mission-pack-094/index.json b/site/public/v1/games/tiger-tank-59-mission-pack-094/index.json new file mode 100644 index 000000000000..c7c3114a966e --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-mission-pack-094/index.json @@ -0,0 +1,31 @@ +{ + "id": 156273, + "slug": "tiger-tank-59-mission-pack-094", + "name": "Tiger Tank 59 Ⅰ Mission Pack 094", + "release_date": "2021-06-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185039" + ], + "created_at": "2026-07-10T10:10:47.045477", + "updated_at": "2026-07-10T10:10:47.045477", + "url": "/v1/games/tiger-tank-59-mission-pack-094" +} diff --git a/site/public/v1/games/tiger-tank-59-mission-pack-095/index.json b/site/public/v1/games/tiger-tank-59-mission-pack-095/index.json new file mode 100644 index 000000000000..4582ef7da4a5 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-mission-pack-095/index.json @@ -0,0 +1,31 @@ +{ + "id": 156274, + "slug": "tiger-tank-59-mission-pack-095", + "name": "Tiger Tank 59 Ⅰ Mission Pack 095", + "release_date": "2021-06-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185041" + ], + "created_at": "2026-07-10T10:10:47.045477", + "updated_at": "2026-07-10T10:10:47.045477", + "url": "/v1/games/tiger-tank-59-mission-pack-095" +} diff --git a/site/public/v1/games/tiger-tank-59-mission-pack-096/index.json b/site/public/v1/games/tiger-tank-59-mission-pack-096/index.json new file mode 100644 index 000000000000..7c63cacd81fe --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-mission-pack-096/index.json @@ -0,0 +1,31 @@ +{ + "id": 156275, + "slug": "tiger-tank-59-mission-pack-096", + "name": "Tiger Tank 59 Ⅰ Mission Pack 096", + "release_date": "2021-06-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185043" + ], + "created_at": "2026-07-10T10:10:47.045477", + "updated_at": "2026-07-10T10:10:47.045477", + "url": "/v1/games/tiger-tank-59-mission-pack-096" +} diff --git a/site/public/v1/games/tiger-tank-59-mission-pack-097/index.json b/site/public/v1/games/tiger-tank-59-mission-pack-097/index.json new file mode 100644 index 000000000000..9217f396a8bf --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-mission-pack-097/index.json @@ -0,0 +1,31 @@ +{ + "id": 156276, + "slug": "tiger-tank-59-mission-pack-097", + "name": "Tiger Tank 59 Ⅰ Mission Pack 097", + "release_date": "2021-06-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185045" + ], + "created_at": "2026-07-10T10:10:47.045477", + "updated_at": "2026-07-10T10:10:47.046459", + "url": "/v1/games/tiger-tank-59-mission-pack-097" +} diff --git a/site/public/v1/games/tiger-tank-59-mission-pack-098/index.json b/site/public/v1/games/tiger-tank-59-mission-pack-098/index.json new file mode 100644 index 000000000000..8f380281f3ee --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-mission-pack-098/index.json @@ -0,0 +1,31 @@ +{ + "id": 156277, + "slug": "tiger-tank-59-mission-pack-098", + "name": "Tiger Tank 59 Ⅰ Mission Pack 098", + "release_date": "2021-06-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185046" + ], + "created_at": "2026-07-10T10:10:47.046459", + "updated_at": "2026-07-10T10:10:47.046459", + "url": "/v1/games/tiger-tank-59-mission-pack-098" +} diff --git a/site/public/v1/games/tiger-tank-59-mission-pack-099/index.json b/site/public/v1/games/tiger-tank-59-mission-pack-099/index.json new file mode 100644 index 000000000000..578f5e0fddda --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-mission-pack-099/index.json @@ -0,0 +1,31 @@ +{ + "id": 156278, + "slug": "tiger-tank-59-mission-pack-099", + "name": "Tiger Tank 59 Ⅰ Mission Pack 099", + "release_date": "2021-06-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185047" + ], + "created_at": "2026-07-10T10:10:47.046459", + "updated_at": "2026-07-10T10:10:47.046459", + "url": "/v1/games/tiger-tank-59-mission-pack-099" +} diff --git a/site/public/v1/games/tiger-tank-59-mission-pack-100/index.json b/site/public/v1/games/tiger-tank-59-mission-pack-100/index.json new file mode 100644 index 000000000000..a392e59d21e8 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-mission-pack-100/index.json @@ -0,0 +1,31 @@ +{ + "id": 156279, + "slug": "tiger-tank-59-mission-pack-100", + "name": "Tiger Tank 59 Ⅰ Mission Pack 100", + "release_date": "2021-06-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185048" + ], + "created_at": "2026-07-10T10:10:47.046459", + "updated_at": "2026-07-10T10:10:47.046459", + "url": "/v1/games/tiger-tank-59-mission-pack-100" +} diff --git a/site/public/v1/games/tiger-tank-59-rainstorm-mp001/index.json b/site/public/v1/games/tiger-tank-59-rainstorm-mp001/index.json new file mode 100644 index 000000000000..3773e2916400 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-rainstorm-mp001/index.json @@ -0,0 +1,31 @@ +{ + "id": 156280, + "slug": "tiger-tank-59-rainstorm-mp001", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP001", + "release_date": "2021-07-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185058" + ], + "created_at": "2026-07-10T10:10:47.046459", + "updated_at": "2026-07-10T10:10:47.046459", + "url": "/v1/games/tiger-tank-59-rainstorm-mp001" +} diff --git a/site/public/v1/games/tiger-tank-59-rainstorm-mp002/index.json b/site/public/v1/games/tiger-tank-59-rainstorm-mp002/index.json new file mode 100644 index 000000000000..bd8350ae891f --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-rainstorm-mp002/index.json @@ -0,0 +1,31 @@ +{ + "id": 156281, + "slug": "tiger-tank-59-rainstorm-mp002", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP002", + "release_date": "2021-07-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185059" + ], + "created_at": "2026-07-10T10:10:47.046459", + "updated_at": "2026-07-10T10:10:47.046459", + "url": "/v1/games/tiger-tank-59-rainstorm-mp002" +} diff --git a/site/public/v1/games/tiger-tank-59-rainstorm-mp003/index.json b/site/public/v1/games/tiger-tank-59-rainstorm-mp003/index.json new file mode 100644 index 000000000000..37a4ad7b0a7b --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-rainstorm-mp003/index.json @@ -0,0 +1,31 @@ +{ + "id": 156282, + "slug": "tiger-tank-59-rainstorm-mp003", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP003", + "release_date": "2021-07-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185060" + ], + "created_at": "2026-07-10T10:10:47.047476", + "updated_at": "2026-07-10T10:10:47.047476", + "url": "/v1/games/tiger-tank-59-rainstorm-mp003" +} diff --git a/site/public/v1/games/tiger-tank-59-rainstorm-mp004/index.json b/site/public/v1/games/tiger-tank-59-rainstorm-mp004/index.json new file mode 100644 index 000000000000..387d05b9226e --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-rainstorm-mp004/index.json @@ -0,0 +1,31 @@ +{ + "id": 156283, + "slug": "tiger-tank-59-rainstorm-mp004", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP004", + "release_date": "2021-07-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185062" + ], + "created_at": "2026-07-10T10:10:47.047476", + "updated_at": "2026-07-10T10:10:47.047476", + "url": "/v1/games/tiger-tank-59-rainstorm-mp004" +} diff --git a/site/public/v1/games/tiger-tank-59-rainstorm-mp005/index.json b/site/public/v1/games/tiger-tank-59-rainstorm-mp005/index.json new file mode 100644 index 000000000000..3e63fd1b94fc --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-rainstorm-mp005/index.json @@ -0,0 +1,31 @@ +{ + "id": 156284, + "slug": "tiger-tank-59-rainstorm-mp005", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP005", + "release_date": "2021-07-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185065" + ], + "created_at": "2026-07-10T10:10:47.047476", + "updated_at": "2026-07-10T10:10:47.047476", + "url": "/v1/games/tiger-tank-59-rainstorm-mp005" +} diff --git a/site/public/v1/games/tiger-tank-59-rainstorm-mp006/index.json b/site/public/v1/games/tiger-tank-59-rainstorm-mp006/index.json new file mode 100644 index 000000000000..0663c330d8d3 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-rainstorm-mp006/index.json @@ -0,0 +1,31 @@ +{ + "id": 156285, + "slug": "tiger-tank-59-rainstorm-mp006", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP006", + "release_date": "2021-07-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185066" + ], + "created_at": "2026-07-10T10:10:47.047476", + "updated_at": "2026-07-10T10:10:47.047476", + "url": "/v1/games/tiger-tank-59-rainstorm-mp006" +} diff --git a/site/public/v1/games/tiger-tank-59-rainstorm-mp007/index.json b/site/public/v1/games/tiger-tank-59-rainstorm-mp007/index.json new file mode 100644 index 000000000000..5a6b4bb100d8 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-rainstorm-mp007/index.json @@ -0,0 +1,31 @@ +{ + "id": 156286, + "slug": "tiger-tank-59-rainstorm-mp007", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP007", + "release_date": "2021-07-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185074" + ], + "created_at": "2026-07-10T10:10:47.048483", + "updated_at": "2026-07-10T10:10:47.048483", + "url": "/v1/games/tiger-tank-59-rainstorm-mp007" +} diff --git a/site/public/v1/games/tiger-tank-59-rainstorm-mp008/index.json b/site/public/v1/games/tiger-tank-59-rainstorm-mp008/index.json new file mode 100644 index 000000000000..f2cf50749033 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-rainstorm-mp008/index.json @@ -0,0 +1,31 @@ +{ + "id": 156287, + "slug": "tiger-tank-59-rainstorm-mp008", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP008", + "release_date": "2021-07-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185076" + ], + "created_at": "2026-07-10T10:10:47.048483", + "updated_at": "2026-07-10T10:10:47.048483", + "url": "/v1/games/tiger-tank-59-rainstorm-mp008" +} diff --git a/site/public/v1/games/tiger-tank-59-rainstorm-mp009/index.json b/site/public/v1/games/tiger-tank-59-rainstorm-mp009/index.json new file mode 100644 index 000000000000..be6fef866e60 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-rainstorm-mp009/index.json @@ -0,0 +1,31 @@ +{ + "id": 156288, + "slug": "tiger-tank-59-rainstorm-mp009", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP009", + "release_date": "2021-07-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185077" + ], + "created_at": "2026-07-10T10:10:47.048483", + "updated_at": "2026-07-10T10:10:47.048483", + "url": "/v1/games/tiger-tank-59-rainstorm-mp009" +} diff --git a/site/public/v1/games/tiger-tank-59-rainstorm-mp010/index.json b/site/public/v1/games/tiger-tank-59-rainstorm-mp010/index.json new file mode 100644 index 000000000000..43577b14c431 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-rainstorm-mp010/index.json @@ -0,0 +1,31 @@ +{ + "id": 156289, + "slug": "tiger-tank-59-rainstorm-mp010", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP010", + "release_date": "2021-07-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185079" + ], + "created_at": "2026-07-10T10:10:47.048483", + "updated_at": "2026-07-10T10:10:47.048483", + "url": "/v1/games/tiger-tank-59-rainstorm-mp010" +} diff --git a/site/public/v1/games/tiger-tank-59-rainstorm-mp011/index.json b/site/public/v1/games/tiger-tank-59-rainstorm-mp011/index.json new file mode 100644 index 000000000000..731d34f9bc1b --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-rainstorm-mp011/index.json @@ -0,0 +1,31 @@ +{ + "id": 156290, + "slug": "tiger-tank-59-rainstorm-mp011", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP011", + "release_date": "2021-07-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185081" + ], + "created_at": "2026-07-10T10:10:47.048483", + "updated_at": "2026-07-10T10:10:47.048483", + "url": "/v1/games/tiger-tank-59-rainstorm-mp011" +} diff --git a/site/public/v1/games/tiger-tank-59-rainstorm-mp012/index.json b/site/public/v1/games/tiger-tank-59-rainstorm-mp012/index.json new file mode 100644 index 000000000000..1c903ff1a398 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-rainstorm-mp012/index.json @@ -0,0 +1,31 @@ +{ + "id": 156291, + "slug": "tiger-tank-59-rainstorm-mp012", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP012", + "release_date": "2021-07-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185082" + ], + "created_at": "2026-07-10T10:10:47.049461", + "updated_at": "2026-07-10T10:10:47.049461", + "url": "/v1/games/tiger-tank-59-rainstorm-mp012" +} diff --git a/site/public/v1/games/tiger-tank-59-rainstorm-mp013/index.json b/site/public/v1/games/tiger-tank-59-rainstorm-mp013/index.json new file mode 100644 index 000000000000..412657f071d7 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-rainstorm-mp013/index.json @@ -0,0 +1,31 @@ +{ + "id": 156292, + "slug": "tiger-tank-59-rainstorm-mp013", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP013", + "release_date": "2021-07-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185084" + ], + "created_at": "2026-07-10T10:10:47.049461", + "updated_at": "2026-07-10T10:10:47.049461", + "url": "/v1/games/tiger-tank-59-rainstorm-mp013" +} diff --git a/site/public/v1/games/tiger-tank-59-rainstorm-mp014/index.json b/site/public/v1/games/tiger-tank-59-rainstorm-mp014/index.json new file mode 100644 index 000000000000..47e9dbb43b0b --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-rainstorm-mp014/index.json @@ -0,0 +1,31 @@ +{ + "id": 156293, + "slug": "tiger-tank-59-rainstorm-mp014", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP014", + "release_date": "2021-07-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185087" + ], + "created_at": "2026-07-10T10:10:47.049461", + "updated_at": "2026-07-10T10:10:47.049461", + "url": "/v1/games/tiger-tank-59-rainstorm-mp014" +} diff --git a/site/public/v1/games/tiger-tank-59-rainstorm-mp015/index.json b/site/public/v1/games/tiger-tank-59-rainstorm-mp015/index.json new file mode 100644 index 000000000000..80109f432121 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-rainstorm-mp015/index.json @@ -0,0 +1,31 @@ +{ + "id": 156294, + "slug": "tiger-tank-59-rainstorm-mp015", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP015", + "release_date": "2021-07-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185105" + ], + "created_at": "2026-07-10T10:10:47.049461", + "updated_at": "2026-07-10T10:10:47.049461", + "url": "/v1/games/tiger-tank-59-rainstorm-mp015" +} diff --git a/site/public/v1/games/tiger-tank-59-rainstorm-mp016/index.json b/site/public/v1/games/tiger-tank-59-rainstorm-mp016/index.json new file mode 100644 index 000000000000..bbab765734d7 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-rainstorm-mp016/index.json @@ -0,0 +1,31 @@ +{ + "id": 156295, + "slug": "tiger-tank-59-rainstorm-mp016", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP016", + "release_date": "2021-07-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185106" + ], + "created_at": "2026-07-10T10:10:47.050449", + "updated_at": "2026-07-10T10:10:47.050449", + "url": "/v1/games/tiger-tank-59-rainstorm-mp016" +} diff --git a/site/public/v1/games/tiger-tank-59-rainstorm-mp017/index.json b/site/public/v1/games/tiger-tank-59-rainstorm-mp017/index.json new file mode 100644 index 000000000000..b0124019f2b2 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-rainstorm-mp017/index.json @@ -0,0 +1,31 @@ +{ + "id": 156296, + "slug": "tiger-tank-59-rainstorm-mp017", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP017", + "release_date": "2021-07-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185109" + ], + "created_at": "2026-07-10T10:10:47.050449", + "updated_at": "2026-07-10T10:10:47.050449", + "url": "/v1/games/tiger-tank-59-rainstorm-mp017" +} diff --git a/site/public/v1/games/tiger-tank-59-rainstorm-mp018/index.json b/site/public/v1/games/tiger-tank-59-rainstorm-mp018/index.json new file mode 100644 index 000000000000..831a3bed4b35 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-rainstorm-mp018/index.json @@ -0,0 +1,31 @@ +{ + "id": 156297, + "slug": "tiger-tank-59-rainstorm-mp018", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP018", + "release_date": "2021-07-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185116" + ], + "created_at": "2026-07-10T10:10:47.050449", + "updated_at": "2026-07-10T10:10:47.050449", + "url": "/v1/games/tiger-tank-59-rainstorm-mp018" +} diff --git a/site/public/v1/games/tiger-tank-59-rainstorm-mp019/index.json b/site/public/v1/games/tiger-tank-59-rainstorm-mp019/index.json new file mode 100644 index 000000000000..61e55688b5d1 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-rainstorm-mp019/index.json @@ -0,0 +1,31 @@ +{ + "id": 156298, + "slug": "tiger-tank-59-rainstorm-mp019", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP019", + "release_date": "2021-07-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185123" + ], + "created_at": "2026-07-10T10:10:47.050449", + "updated_at": "2026-07-10T10:10:47.050449", + "url": "/v1/games/tiger-tank-59-rainstorm-mp019" +} diff --git a/site/public/v1/games/tiger-tank-59-rainstorm-mp020/index.json b/site/public/v1/games/tiger-tank-59-rainstorm-mp020/index.json new file mode 100644 index 000000000000..6c7cff4bdaac --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-rainstorm-mp020/index.json @@ -0,0 +1,31 @@ +{ + "id": 156299, + "slug": "tiger-tank-59-rainstorm-mp020", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP020", + "release_date": "2021-07-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185124" + ], + "created_at": "2026-07-10T10:10:47.050449", + "updated_at": "2026-07-10T10:10:47.050449", + "url": "/v1/games/tiger-tank-59-rainstorm-mp020" +} diff --git a/site/public/v1/games/tiger-tank-59-rainstorm-mp021/index.json b/site/public/v1/games/tiger-tank-59-rainstorm-mp021/index.json new file mode 100644 index 000000000000..7788f4a0398c --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-rainstorm-mp021/index.json @@ -0,0 +1,31 @@ +{ + "id": 156300, + "slug": "tiger-tank-59-rainstorm-mp021", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP021", + "release_date": "2021-07-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185125" + ], + "created_at": "2026-07-10T10:10:47.051478", + "updated_at": "2026-07-10T10:10:47.051478", + "url": "/v1/games/tiger-tank-59-rainstorm-mp021" +} diff --git a/site/public/v1/games/tiger-tank-59-rainstorm-mp022/index.json b/site/public/v1/games/tiger-tank-59-rainstorm-mp022/index.json new file mode 100644 index 000000000000..e62646d97587 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-rainstorm-mp022/index.json @@ -0,0 +1,31 @@ +{ + "id": 156301, + "slug": "tiger-tank-59-rainstorm-mp022", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP022", + "release_date": "2021-07-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185126" + ], + "created_at": "2026-07-10T10:10:47.051478", + "updated_at": "2026-07-10T10:10:47.051478", + "url": "/v1/games/tiger-tank-59-rainstorm-mp022" +} diff --git a/site/public/v1/games/tiger-tank-59-rainstorm-mp023/index.json b/site/public/v1/games/tiger-tank-59-rainstorm-mp023/index.json new file mode 100644 index 000000000000..f1731cd5763f --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-rainstorm-mp023/index.json @@ -0,0 +1,31 @@ +{ + "id": 156302, + "slug": "tiger-tank-59-rainstorm-mp023", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP023", + "release_date": "2021-07-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185127" + ], + "created_at": "2026-07-10T10:10:47.051478", + "updated_at": "2026-07-10T10:10:47.051478", + "url": "/v1/games/tiger-tank-59-rainstorm-mp023" +} diff --git a/site/public/v1/games/tiger-tank-59-rainstorm-mp024/index.json b/site/public/v1/games/tiger-tank-59-rainstorm-mp024/index.json new file mode 100644 index 000000000000..b42c22f25eb7 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-rainstorm-mp024/index.json @@ -0,0 +1,31 @@ +{ + "id": 156303, + "slug": "tiger-tank-59-rainstorm-mp024", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP024", + "release_date": "2021-07-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185129" + ], + "created_at": "2026-07-10T10:10:47.051478", + "updated_at": "2026-07-10T10:10:47.051478", + "url": "/v1/games/tiger-tank-59-rainstorm-mp024" +} diff --git a/site/public/v1/games/tiger-tank-59-rainstorm-mp025/index.json b/site/public/v1/games/tiger-tank-59-rainstorm-mp025/index.json new file mode 100644 index 000000000000..a97220c50186 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-rainstorm-mp025/index.json @@ -0,0 +1,31 @@ +{ + "id": 156304, + "slug": "tiger-tank-59-rainstorm-mp025", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP025", + "release_date": "2021-07-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185130" + ], + "created_at": "2026-07-10T10:10:47.051478", + "updated_at": "2026-07-10T10:10:47.051478", + "url": "/v1/games/tiger-tank-59-rainstorm-mp025" +} diff --git a/site/public/v1/games/tiger-tank-59-rainstorm-mp026/index.json b/site/public/v1/games/tiger-tank-59-rainstorm-mp026/index.json new file mode 100644 index 000000000000..6bfe5633eafa --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-rainstorm-mp026/index.json @@ -0,0 +1,31 @@ +{ + "id": 156305, + "slug": "tiger-tank-59-rainstorm-mp026", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP026", + "release_date": "2021-07-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185131" + ], + "created_at": "2026-07-10T10:10:47.052469", + "updated_at": "2026-07-10T10:10:47.052469", + "url": "/v1/games/tiger-tank-59-rainstorm-mp026" +} diff --git a/site/public/v1/games/tiger-tank-59-rainstorm-mp027/index.json b/site/public/v1/games/tiger-tank-59-rainstorm-mp027/index.json new file mode 100644 index 000000000000..ab55fb910e6b --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-rainstorm-mp027/index.json @@ -0,0 +1,31 @@ +{ + "id": 156306, + "slug": "tiger-tank-59-rainstorm-mp027", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP027", + "release_date": "2021-07-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185133" + ], + "created_at": "2026-07-10T10:10:47.052469", + "updated_at": "2026-07-10T10:10:47.052469", + "url": "/v1/games/tiger-tank-59-rainstorm-mp027" +} diff --git a/site/public/v1/games/tiger-tank-59-rainstorm-mp028/index.json b/site/public/v1/games/tiger-tank-59-rainstorm-mp028/index.json new file mode 100644 index 000000000000..4bf6e25c755e --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-rainstorm-mp028/index.json @@ -0,0 +1,31 @@ +{ + "id": 156307, + "slug": "tiger-tank-59-rainstorm-mp028", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP028", + "release_date": "2021-07-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185134" + ], + "created_at": "2026-07-10T10:10:47.052469", + "updated_at": "2026-07-10T10:10:47.052469", + "url": "/v1/games/tiger-tank-59-rainstorm-mp028" +} diff --git a/site/public/v1/games/tiger-tank-59-rainstorm-mp029/index.json b/site/public/v1/games/tiger-tank-59-rainstorm-mp029/index.json new file mode 100644 index 000000000000..0cec6495f30b --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-rainstorm-mp029/index.json @@ -0,0 +1,31 @@ +{ + "id": 156308, + "slug": "tiger-tank-59-rainstorm-mp029", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP029", + "release_date": "2021-07-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185135" + ], + "created_at": "2026-07-10T10:10:47.053506", + "updated_at": "2026-07-10T10:10:47.053506", + "url": "/v1/games/tiger-tank-59-rainstorm-mp029" +} diff --git a/site/public/v1/games/tiger-tank-59-rainstorm-mp030/index.json b/site/public/v1/games/tiger-tank-59-rainstorm-mp030/index.json new file mode 100644 index 000000000000..43123bdc6566 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-rainstorm-mp030/index.json @@ -0,0 +1,31 @@ +{ + "id": 156309, + "slug": "tiger-tank-59-rainstorm-mp030", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP030", + "release_date": "2021-07-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185137" + ], + "created_at": "2026-07-10T10:10:47.053506", + "updated_at": "2026-07-10T10:10:47.053506", + "url": "/v1/games/tiger-tank-59-rainstorm-mp030" +} diff --git a/site/public/v1/games/tiger-tank-59-rainstorm-mp031/index.json b/site/public/v1/games/tiger-tank-59-rainstorm-mp031/index.json new file mode 100644 index 000000000000..26737959f134 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-rainstorm-mp031/index.json @@ -0,0 +1,31 @@ +{ + "id": 156310, + "slug": "tiger-tank-59-rainstorm-mp031", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP031", + "release_date": "2021-07-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185140" + ], + "created_at": "2026-07-10T10:10:47.053506", + "updated_at": "2026-07-10T10:10:47.053506", + "url": "/v1/games/tiger-tank-59-rainstorm-mp031" +} diff --git a/site/public/v1/games/tiger-tank-59-rainstorm-mp032/index.json b/site/public/v1/games/tiger-tank-59-rainstorm-mp032/index.json new file mode 100644 index 000000000000..5c37a053c256 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-rainstorm-mp032/index.json @@ -0,0 +1,31 @@ +{ + "id": 156311, + "slug": "tiger-tank-59-rainstorm-mp032", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP032", + "release_date": "2021-07-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185141" + ], + "created_at": "2026-07-10T10:10:47.053506", + "updated_at": "2026-07-10T10:10:47.053506", + "url": "/v1/games/tiger-tank-59-rainstorm-mp032" +} diff --git a/site/public/v1/games/tiger-tank-59-rainstorm-mp033/index.json b/site/public/v1/games/tiger-tank-59-rainstorm-mp033/index.json new file mode 100644 index 000000000000..430ffdb2ce94 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-rainstorm-mp033/index.json @@ -0,0 +1,31 @@ +{ + "id": 156312, + "slug": "tiger-tank-59-rainstorm-mp033", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP033", + "release_date": "2021-07-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185143" + ], + "created_at": "2026-07-10T10:10:47.053506", + "updated_at": "2026-07-10T10:10:47.053506", + "url": "/v1/games/tiger-tank-59-rainstorm-mp033" +} diff --git a/site/public/v1/games/tiger-tank-59-rainstorm-mp034/index.json b/site/public/v1/games/tiger-tank-59-rainstorm-mp034/index.json new file mode 100644 index 000000000000..21b7dbe0ca39 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-rainstorm-mp034/index.json @@ -0,0 +1,31 @@ +{ + "id": 156313, + "slug": "tiger-tank-59-rainstorm-mp034", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP034", + "release_date": "2021-07-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185144" + ], + "created_at": "2026-07-10T10:10:47.054466", + "updated_at": "2026-07-10T10:10:47.054466", + "url": "/v1/games/tiger-tank-59-rainstorm-mp034" +} diff --git a/site/public/v1/games/tiger-tank-59-rainstorm-mp035/index.json b/site/public/v1/games/tiger-tank-59-rainstorm-mp035/index.json new file mode 100644 index 000000000000..679e94ae9661 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-rainstorm-mp035/index.json @@ -0,0 +1,31 @@ +{ + "id": 156314, + "slug": "tiger-tank-59-rainstorm-mp035", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP035", + "release_date": "2021-07-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185145" + ], + "created_at": "2026-07-10T10:10:47.054466", + "updated_at": "2026-07-10T10:10:47.054466", + "url": "/v1/games/tiger-tank-59-rainstorm-mp035" +} diff --git a/site/public/v1/games/tiger-tank-59-rainstorm-mp036/index.json b/site/public/v1/games/tiger-tank-59-rainstorm-mp036/index.json new file mode 100644 index 000000000000..2dc792568a92 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-rainstorm-mp036/index.json @@ -0,0 +1,31 @@ +{ + "id": 156315, + "slug": "tiger-tank-59-rainstorm-mp036", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP036", + "release_date": "2021-07-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185147" + ], + "created_at": "2026-07-10T10:10:47.054466", + "updated_at": "2026-07-10T10:10:47.054466", + "url": "/v1/games/tiger-tank-59-rainstorm-mp036" +} diff --git a/site/public/v1/games/tiger-tank-59-rainstorm-mp037/index.json b/site/public/v1/games/tiger-tank-59-rainstorm-mp037/index.json new file mode 100644 index 000000000000..5953ef893141 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-rainstorm-mp037/index.json @@ -0,0 +1,31 @@ +{ + "id": 156316, + "slug": "tiger-tank-59-rainstorm-mp037", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP037", + "release_date": "2021-07-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185148" + ], + "created_at": "2026-07-10T10:10:47.054466", + "updated_at": "2026-07-10T10:10:47.054466", + "url": "/v1/games/tiger-tank-59-rainstorm-mp037" +} diff --git a/site/public/v1/games/tiger-tank-59-rainstorm-mp038/index.json b/site/public/v1/games/tiger-tank-59-rainstorm-mp038/index.json new file mode 100644 index 000000000000..7eeb8b3ad3e7 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-rainstorm-mp038/index.json @@ -0,0 +1,31 @@ +{ + "id": 156317, + "slug": "tiger-tank-59-rainstorm-mp038", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP038", + "release_date": "2021-07-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185150" + ], + "created_at": "2026-07-10T10:10:47.055461", + "updated_at": "2026-07-10T10:10:47.055461", + "url": "/v1/games/tiger-tank-59-rainstorm-mp038" +} diff --git a/site/public/v1/games/tiger-tank-59-rainstorm-mp039/index.json b/site/public/v1/games/tiger-tank-59-rainstorm-mp039/index.json new file mode 100644 index 000000000000..40daee63868b --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-rainstorm-mp039/index.json @@ -0,0 +1,31 @@ +{ + "id": 156318, + "slug": "tiger-tank-59-rainstorm-mp039", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP039", + "release_date": "2021-07-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185151" + ], + "created_at": "2026-07-10T10:10:47.055461", + "updated_at": "2026-07-10T10:10:47.055461", + "url": "/v1/games/tiger-tank-59-rainstorm-mp039" +} diff --git a/site/public/v1/games/tiger-tank-59-rainstorm-mp040/index.json b/site/public/v1/games/tiger-tank-59-rainstorm-mp040/index.json new file mode 100644 index 000000000000..f6d08ccba4dc --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-rainstorm-mp040/index.json @@ -0,0 +1,31 @@ +{ + "id": 156319, + "slug": "tiger-tank-59-rainstorm-mp040", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP040", + "release_date": "2021-07-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185152" + ], + "created_at": "2026-07-10T10:10:47.055461", + "updated_at": "2026-07-10T10:10:47.055461", + "url": "/v1/games/tiger-tank-59-rainstorm-mp040" +} diff --git a/site/public/v1/games/tiger-tank-59-rainstorm-mp041/index.json b/site/public/v1/games/tiger-tank-59-rainstorm-mp041/index.json new file mode 100644 index 000000000000..ccdaa170253a --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-rainstorm-mp041/index.json @@ -0,0 +1,31 @@ +{ + "id": 156320, + "slug": "tiger-tank-59-rainstorm-mp041", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP041", + "release_date": "2021-07-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185153" + ], + "created_at": "2026-07-10T10:10:47.055461", + "updated_at": "2026-07-10T10:10:47.055461", + "url": "/v1/games/tiger-tank-59-rainstorm-mp041" +} diff --git a/site/public/v1/games/tiger-tank-59-rainstorm-mp042/index.json b/site/public/v1/games/tiger-tank-59-rainstorm-mp042/index.json new file mode 100644 index 000000000000..7cc3c4c07703 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-rainstorm-mp042/index.json @@ -0,0 +1,31 @@ +{ + "id": 156321, + "slug": "tiger-tank-59-rainstorm-mp042", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP042", + "release_date": "2021-07-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185155" + ], + "created_at": "2026-07-10T10:10:47.055461", + "updated_at": "2026-07-10T10:10:47.055461", + "url": "/v1/games/tiger-tank-59-rainstorm-mp042" +} diff --git a/site/public/v1/games/tiger-tank-59-rainstorm-mp043/index.json b/site/public/v1/games/tiger-tank-59-rainstorm-mp043/index.json new file mode 100644 index 000000000000..24aace1e1bef --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-rainstorm-mp043/index.json @@ -0,0 +1,31 @@ +{ + "id": 156322, + "slug": "tiger-tank-59-rainstorm-mp043", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP043", + "release_date": "2021-07-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185159" + ], + "created_at": "2026-07-10T10:10:47.056459", + "updated_at": "2026-07-10T10:10:47.056459", + "url": "/v1/games/tiger-tank-59-rainstorm-mp043" +} diff --git a/site/public/v1/games/tiger-tank-59-rainstorm-mp044/index.json b/site/public/v1/games/tiger-tank-59-rainstorm-mp044/index.json new file mode 100644 index 000000000000..e6f66644b41f --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-rainstorm-mp044/index.json @@ -0,0 +1,31 @@ +{ + "id": 156323, + "slug": "tiger-tank-59-rainstorm-mp044", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP044", + "release_date": "2021-07-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185162" + ], + "created_at": "2026-07-10T10:10:47.056459", + "updated_at": "2026-07-10T10:10:47.056459", + "url": "/v1/games/tiger-tank-59-rainstorm-mp044" +} diff --git a/site/public/v1/games/tiger-tank-59-rainstorm-mp045/index.json b/site/public/v1/games/tiger-tank-59-rainstorm-mp045/index.json new file mode 100644 index 000000000000..f058cf9ccf71 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-rainstorm-mp045/index.json @@ -0,0 +1,31 @@ +{ + "id": 156324, + "slug": "tiger-tank-59-rainstorm-mp045", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP045", + "release_date": "2021-07-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185164" + ], + "created_at": "2026-07-10T10:10:47.056459", + "updated_at": "2026-07-10T10:10:47.056459", + "url": "/v1/games/tiger-tank-59-rainstorm-mp045" +} diff --git a/site/public/v1/games/tiger-tank-59-rainstorm-mp046/index.json b/site/public/v1/games/tiger-tank-59-rainstorm-mp046/index.json new file mode 100644 index 000000000000..ca68e48907d7 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-rainstorm-mp046/index.json @@ -0,0 +1,31 @@ +{ + "id": 156325, + "slug": "tiger-tank-59-rainstorm-mp046", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP046", + "release_date": "2021-07-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185166" + ], + "created_at": "2026-07-10T10:10:47.056459", + "updated_at": "2026-07-10T10:10:47.056459", + "url": "/v1/games/tiger-tank-59-rainstorm-mp046" +} diff --git a/site/public/v1/games/tiger-tank-59-rainstorm-mp047/index.json b/site/public/v1/games/tiger-tank-59-rainstorm-mp047/index.json new file mode 100644 index 000000000000..28dab6a8ef5b --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-rainstorm-mp047/index.json @@ -0,0 +1,31 @@ +{ + "id": 156326, + "slug": "tiger-tank-59-rainstorm-mp047", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP047", + "release_date": "2021-07-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185168" + ], + "created_at": "2026-07-10T10:10:47.056459", + "updated_at": "2026-07-10T10:10:47.056459", + "url": "/v1/games/tiger-tank-59-rainstorm-mp047" +} diff --git a/site/public/v1/games/tiger-tank-59-rainstorm-mp048/index.json b/site/public/v1/games/tiger-tank-59-rainstorm-mp048/index.json new file mode 100644 index 000000000000..f894284a2730 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-rainstorm-mp048/index.json @@ -0,0 +1,31 @@ +{ + "id": 156327, + "slug": "tiger-tank-59-rainstorm-mp048", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP048", + "release_date": "2021-07-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185170" + ], + "created_at": "2026-07-10T10:10:47.057472", + "updated_at": "2026-07-10T10:10:47.057472", + "url": "/v1/games/tiger-tank-59-rainstorm-mp048" +} diff --git a/site/public/v1/games/tiger-tank-59-rainstorm-mp049/index.json b/site/public/v1/games/tiger-tank-59-rainstorm-mp049/index.json new file mode 100644 index 000000000000..895ad56a91d6 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-rainstorm-mp049/index.json @@ -0,0 +1,31 @@ +{ + "id": 156328, + "slug": "tiger-tank-59-rainstorm-mp049", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP049", + "release_date": "2021-07-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185171" + ], + "created_at": "2026-07-10T10:10:47.057472", + "updated_at": "2026-07-10T10:10:47.057472", + "url": "/v1/games/tiger-tank-59-rainstorm-mp049" +} diff --git a/site/public/v1/games/tiger-tank-59-rainstorm-mp050/index.json b/site/public/v1/games/tiger-tank-59-rainstorm-mp050/index.json new file mode 100644 index 000000000000..e7985619f893 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-rainstorm-mp050/index.json @@ -0,0 +1,31 @@ +{ + "id": 156329, + "slug": "tiger-tank-59-rainstorm-mp050", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP050", + "release_date": "2021-07-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185172" + ], + "created_at": "2026-07-10T10:10:47.057472", + "updated_at": "2026-07-10T10:10:47.057472", + "url": "/v1/games/tiger-tank-59-rainstorm-mp050" +} diff --git a/site/public/v1/games/tiger-tank-59-rainstorm-mp051/index.json b/site/public/v1/games/tiger-tank-59-rainstorm-mp051/index.json new file mode 100644 index 000000000000..9a40e8794688 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-rainstorm-mp051/index.json @@ -0,0 +1,31 @@ +{ + "id": 156330, + "slug": "tiger-tank-59-rainstorm-mp051", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP051", + "release_date": "2021-07-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185173" + ], + "created_at": "2026-07-10T10:10:47.057472", + "updated_at": "2026-07-10T10:10:47.057472", + "url": "/v1/games/tiger-tank-59-rainstorm-mp051" +} diff --git a/site/public/v1/games/tiger-tank-59-rainstorm-mp052/index.json b/site/public/v1/games/tiger-tank-59-rainstorm-mp052/index.json new file mode 100644 index 000000000000..bdca21d56fa3 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-rainstorm-mp052/index.json @@ -0,0 +1,31 @@ +{ + "id": 156331, + "slug": "tiger-tank-59-rainstorm-mp052", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP052", + "release_date": "2021-07-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185174" + ], + "created_at": "2026-07-10T10:10:47.058482", + "updated_at": "2026-07-10T10:10:47.058482", + "url": "/v1/games/tiger-tank-59-rainstorm-mp052" +} diff --git a/site/public/v1/games/tiger-tank-59-rainstorm-mp053/index.json b/site/public/v1/games/tiger-tank-59-rainstorm-mp053/index.json new file mode 100644 index 000000000000..7c5952ba68b3 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-rainstorm-mp053/index.json @@ -0,0 +1,31 @@ +{ + "id": 156332, + "slug": "tiger-tank-59-rainstorm-mp053", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP053", + "release_date": "2021-07-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185175" + ], + "created_at": "2026-07-10T10:10:47.058482", + "updated_at": "2026-07-10T10:10:47.058482", + "url": "/v1/games/tiger-tank-59-rainstorm-mp053" +} diff --git a/site/public/v1/games/tiger-tank-59-rainstorm-mp054/index.json b/site/public/v1/games/tiger-tank-59-rainstorm-mp054/index.json new file mode 100644 index 000000000000..f8b4e17f9b93 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-rainstorm-mp054/index.json @@ -0,0 +1,31 @@ +{ + "id": 156333, + "slug": "tiger-tank-59-rainstorm-mp054", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP054", + "release_date": "2021-07-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185177" + ], + "created_at": "2026-07-10T10:10:47.058482", + "updated_at": "2026-07-10T10:10:47.058482", + "url": "/v1/games/tiger-tank-59-rainstorm-mp054" +} diff --git a/site/public/v1/games/tiger-tank-59-rainstorm-mp055/index.json b/site/public/v1/games/tiger-tank-59-rainstorm-mp055/index.json new file mode 100644 index 000000000000..c0a338aedf7e --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-rainstorm-mp055/index.json @@ -0,0 +1,31 @@ +{ + "id": 156334, + "slug": "tiger-tank-59-rainstorm-mp055", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP055", + "release_date": "2021-07-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185178" + ], + "created_at": "2026-07-10T10:10:47.058482", + "updated_at": "2026-07-10T10:10:47.058482", + "url": "/v1/games/tiger-tank-59-rainstorm-mp055" +} diff --git a/site/public/v1/games/tiger-tank-59-rainstorm-mp056/index.json b/site/public/v1/games/tiger-tank-59-rainstorm-mp056/index.json new file mode 100644 index 000000000000..6ebd263b2a17 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-rainstorm-mp056/index.json @@ -0,0 +1,31 @@ +{ + "id": 156335, + "slug": "tiger-tank-59-rainstorm-mp056", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP056", + "release_date": "2021-07-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185179" + ], + "created_at": "2026-07-10T10:10:47.058482", + "updated_at": "2026-07-10T10:10:47.058482", + "url": "/v1/games/tiger-tank-59-rainstorm-mp056" +} diff --git a/site/public/v1/games/tiger-tank-59-rainstorm-mp057/index.json b/site/public/v1/games/tiger-tank-59-rainstorm-mp057/index.json new file mode 100644 index 000000000000..9167d5d00e0f --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-rainstorm-mp057/index.json @@ -0,0 +1,31 @@ +{ + "id": 156336, + "slug": "tiger-tank-59-rainstorm-mp057", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP057", + "release_date": "2021-07-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185180" + ], + "created_at": "2026-07-10T10:10:47.058482", + "updated_at": "2026-07-10T10:10:47.058482", + "url": "/v1/games/tiger-tank-59-rainstorm-mp057" +} diff --git a/site/public/v1/games/tiger-tank-59-rainstorm-mp058/index.json b/site/public/v1/games/tiger-tank-59-rainstorm-mp058/index.json new file mode 100644 index 000000000000..141f2186f0ec --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-rainstorm-mp058/index.json @@ -0,0 +1,31 @@ +{ + "id": 156337, + "slug": "tiger-tank-59-rainstorm-mp058", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP058", + "release_date": "2021-07-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185181" + ], + "created_at": "2026-07-10T10:10:47.059490", + "updated_at": "2026-07-10T10:10:47.059490", + "url": "/v1/games/tiger-tank-59-rainstorm-mp058" +} diff --git a/site/public/v1/games/tiger-tank-59-rainstorm-mp059/index.json b/site/public/v1/games/tiger-tank-59-rainstorm-mp059/index.json new file mode 100644 index 000000000000..f9e28b09d9ec --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-rainstorm-mp059/index.json @@ -0,0 +1,31 @@ +{ + "id": 156338, + "slug": "tiger-tank-59-rainstorm-mp059", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP059", + "release_date": "2021-07-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185183" + ], + "created_at": "2026-07-10T10:10:47.059490", + "updated_at": "2026-07-10T10:10:47.059490", + "url": "/v1/games/tiger-tank-59-rainstorm-mp059" +} diff --git a/site/public/v1/games/tiger-tank-59-rainstorm-mp060/index.json b/site/public/v1/games/tiger-tank-59-rainstorm-mp060/index.json new file mode 100644 index 000000000000..28a0bbbcce2b --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-rainstorm-mp060/index.json @@ -0,0 +1,31 @@ +{ + "id": 156339, + "slug": "tiger-tank-59-rainstorm-mp060", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP060", + "release_date": "2021-07-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185185" + ], + "created_at": "2026-07-10T10:10:47.059490", + "updated_at": "2026-07-10T10:10:47.059490", + "url": "/v1/games/tiger-tank-59-rainstorm-mp060" +} diff --git a/site/public/v1/games/tiger-tank-59-rainstorm-mp061/index.json b/site/public/v1/games/tiger-tank-59-rainstorm-mp061/index.json new file mode 100644 index 000000000000..3f9a7ad08ea3 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-rainstorm-mp061/index.json @@ -0,0 +1,31 @@ +{ + "id": 156340, + "slug": "tiger-tank-59-rainstorm-mp061", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP061", + "release_date": "2021-07-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185188" + ], + "created_at": "2026-07-10T10:10:47.060465", + "updated_at": "2026-07-10T10:10:47.060465", + "url": "/v1/games/tiger-tank-59-rainstorm-mp061" +} diff --git a/site/public/v1/games/tiger-tank-59-rainstorm-mp062/index.json b/site/public/v1/games/tiger-tank-59-rainstorm-mp062/index.json new file mode 100644 index 000000000000..8103323b1e24 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-rainstorm-mp062/index.json @@ -0,0 +1,31 @@ +{ + "id": 156341, + "slug": "tiger-tank-59-rainstorm-mp062", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP062", + "release_date": "2021-07-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185190" + ], + "created_at": "2026-07-10T10:10:47.060465", + "updated_at": "2026-07-10T10:10:47.060465", + "url": "/v1/games/tiger-tank-59-rainstorm-mp062" +} diff --git a/site/public/v1/games/tiger-tank-59-rainstorm-mp063/index.json b/site/public/v1/games/tiger-tank-59-rainstorm-mp063/index.json new file mode 100644 index 000000000000..f75448fc5589 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-rainstorm-mp063/index.json @@ -0,0 +1,31 @@ +{ + "id": 156342, + "slug": "tiger-tank-59-rainstorm-mp063", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP063", + "release_date": "2021-07-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185191" + ], + "created_at": "2026-07-10T10:10:47.060465", + "updated_at": "2026-07-10T10:10:47.060465", + "url": "/v1/games/tiger-tank-59-rainstorm-mp063" +} diff --git a/site/public/v1/games/tiger-tank-59-rainstorm-mp064/index.json b/site/public/v1/games/tiger-tank-59-rainstorm-mp064/index.json new file mode 100644 index 000000000000..eb4889bb9803 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-rainstorm-mp064/index.json @@ -0,0 +1,31 @@ +{ + "id": 156343, + "slug": "tiger-tank-59-rainstorm-mp064", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP064", + "release_date": "2021-07-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185193" + ], + "created_at": "2026-07-10T10:10:47.060465", + "updated_at": "2026-07-10T10:10:47.060465", + "url": "/v1/games/tiger-tank-59-rainstorm-mp064" +} diff --git a/site/public/v1/games/tiger-tank-59-rainstorm-mp065/index.json b/site/public/v1/games/tiger-tank-59-rainstorm-mp065/index.json new file mode 100644 index 000000000000..f20c5950fd2e --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-rainstorm-mp065/index.json @@ -0,0 +1,31 @@ +{ + "id": 156344, + "slug": "tiger-tank-59-rainstorm-mp065", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP065", + "release_date": "2021-07-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185194" + ], + "created_at": "2026-07-10T10:10:47.060465", + "updated_at": "2026-07-10T10:10:47.060465", + "url": "/v1/games/tiger-tank-59-rainstorm-mp065" +} diff --git a/site/public/v1/games/tiger-tank-59-rainstorm-mp066/index.json b/site/public/v1/games/tiger-tank-59-rainstorm-mp066/index.json new file mode 100644 index 000000000000..342c5b0fcc22 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-rainstorm-mp066/index.json @@ -0,0 +1,31 @@ +{ + "id": 156345, + "slug": "tiger-tank-59-rainstorm-mp066", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP066", + "release_date": "2021-07-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185198" + ], + "created_at": "2026-07-10T10:10:47.061468", + "updated_at": "2026-07-10T10:10:47.061468", + "url": "/v1/games/tiger-tank-59-rainstorm-mp066" +} diff --git a/site/public/v1/games/tiger-tank-59-rainstorm-mp067/index.json b/site/public/v1/games/tiger-tank-59-rainstorm-mp067/index.json new file mode 100644 index 000000000000..2c69848b3515 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-rainstorm-mp067/index.json @@ -0,0 +1,31 @@ +{ + "id": 156346, + "slug": "tiger-tank-59-rainstorm-mp067", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP067", + "release_date": "2021-07-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185199" + ], + "created_at": "2026-07-10T10:10:47.061468", + "updated_at": "2026-07-10T10:10:47.061468", + "url": "/v1/games/tiger-tank-59-rainstorm-mp067" +} diff --git a/site/public/v1/games/tiger-tank-59-rainstorm-mp068/index.json b/site/public/v1/games/tiger-tank-59-rainstorm-mp068/index.json new file mode 100644 index 000000000000..e09d089fdebb --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-rainstorm-mp068/index.json @@ -0,0 +1,31 @@ +{ + "id": 156347, + "slug": "tiger-tank-59-rainstorm-mp068", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP068", + "release_date": "2021-07-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185201" + ], + "created_at": "2026-07-10T10:10:47.061468", + "updated_at": "2026-07-10T10:10:47.061468", + "url": "/v1/games/tiger-tank-59-rainstorm-mp068" +} diff --git a/site/public/v1/games/tiger-tank-59-rainstorm-mp069/index.json b/site/public/v1/games/tiger-tank-59-rainstorm-mp069/index.json new file mode 100644 index 000000000000..c0f84076ebdd --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-rainstorm-mp069/index.json @@ -0,0 +1,31 @@ +{ + "id": 156348, + "slug": "tiger-tank-59-rainstorm-mp069", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP069", + "release_date": "2021-07-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185202" + ], + "created_at": "2026-07-10T10:10:47.061468", + "updated_at": "2026-07-10T10:10:47.061468", + "url": "/v1/games/tiger-tank-59-rainstorm-mp069" +} diff --git a/site/public/v1/games/tiger-tank-59-rainstorm-mp070/index.json b/site/public/v1/games/tiger-tank-59-rainstorm-mp070/index.json new file mode 100644 index 000000000000..fa12b7503680 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-rainstorm-mp070/index.json @@ -0,0 +1,31 @@ +{ + "id": 156349, + "slug": "tiger-tank-59-rainstorm-mp070", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP070", + "release_date": "2021-07-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185203" + ], + "created_at": "2026-07-10T10:10:47.062365", + "updated_at": "2026-07-10T10:10:47.062365", + "url": "/v1/games/tiger-tank-59-rainstorm-mp070" +} diff --git a/site/public/v1/games/tiger-tank-59-rainstorm-mp071/index.json b/site/public/v1/games/tiger-tank-59-rainstorm-mp071/index.json new file mode 100644 index 000000000000..ccff5cd5ed3b --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-rainstorm-mp071/index.json @@ -0,0 +1,31 @@ +{ + "id": 156350, + "slug": "tiger-tank-59-rainstorm-mp071", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP071", + "release_date": "2021-07-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185206" + ], + "created_at": "2026-07-10T10:10:47.062365", + "updated_at": "2026-07-10T10:10:47.062365", + "url": "/v1/games/tiger-tank-59-rainstorm-mp071" +} diff --git a/site/public/v1/games/tiger-tank-59-rainstorm-mp072/index.json b/site/public/v1/games/tiger-tank-59-rainstorm-mp072/index.json new file mode 100644 index 000000000000..624799791d5a --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-rainstorm-mp072/index.json @@ -0,0 +1,31 @@ +{ + "id": 156351, + "slug": "tiger-tank-59-rainstorm-mp072", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP072", + "release_date": "2021-07-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185208" + ], + "created_at": "2026-07-10T10:10:47.062365", + "updated_at": "2026-07-10T10:10:47.062365", + "url": "/v1/games/tiger-tank-59-rainstorm-mp072" +} diff --git a/site/public/v1/games/tiger-tank-59-rainstorm-mp073/index.json b/site/public/v1/games/tiger-tank-59-rainstorm-mp073/index.json new file mode 100644 index 000000000000..4a6d0368a7ae --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-rainstorm-mp073/index.json @@ -0,0 +1,31 @@ +{ + "id": 156352, + "slug": "tiger-tank-59-rainstorm-mp073", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP073", + "release_date": "2021-07-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185210" + ], + "created_at": "2026-07-10T10:10:47.063397", + "updated_at": "2026-07-10T10:10:47.063397", + "url": "/v1/games/tiger-tank-59-rainstorm-mp073" +} diff --git a/site/public/v1/games/tiger-tank-59-rainstorm-mp074/index.json b/site/public/v1/games/tiger-tank-59-rainstorm-mp074/index.json new file mode 100644 index 000000000000..7caf8c158ce1 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-rainstorm-mp074/index.json @@ -0,0 +1,31 @@ +{ + "id": 156353, + "slug": "tiger-tank-59-rainstorm-mp074", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP074", + "release_date": "2021-07-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185211" + ], + "created_at": "2026-07-10T10:10:47.063397", + "updated_at": "2026-07-10T10:10:47.063397", + "url": "/v1/games/tiger-tank-59-rainstorm-mp074" +} diff --git a/site/public/v1/games/tiger-tank-59-rainstorm-mp075/index.json b/site/public/v1/games/tiger-tank-59-rainstorm-mp075/index.json new file mode 100644 index 000000000000..2b86534306f5 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-rainstorm-mp075/index.json @@ -0,0 +1,31 @@ +{ + "id": 156354, + "slug": "tiger-tank-59-rainstorm-mp075", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP075", + "release_date": "2021-07-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185214" + ], + "created_at": "2026-07-10T10:10:47.063905", + "updated_at": "2026-07-10T10:10:47.063905", + "url": "/v1/games/tiger-tank-59-rainstorm-mp075" +} diff --git a/site/public/v1/games/tiger-tank-59-rainstorm-mp076/index.json b/site/public/v1/games/tiger-tank-59-rainstorm-mp076/index.json new file mode 100644 index 000000000000..8582abbcb0a4 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-rainstorm-mp076/index.json @@ -0,0 +1,31 @@ +{ + "id": 156355, + "slug": "tiger-tank-59-rainstorm-mp076", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP076", + "release_date": "2021-07-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185215" + ], + "created_at": "2026-07-10T10:10:47.063905", + "updated_at": "2026-07-10T10:10:47.063905", + "url": "/v1/games/tiger-tank-59-rainstorm-mp076" +} diff --git a/site/public/v1/games/tiger-tank-59-rainstorm-mp077/index.json b/site/public/v1/games/tiger-tank-59-rainstorm-mp077/index.json new file mode 100644 index 000000000000..736a5398dc90 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-rainstorm-mp077/index.json @@ -0,0 +1,31 @@ +{ + "id": 156356, + "slug": "tiger-tank-59-rainstorm-mp077", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP077", + "release_date": "2021-07-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185217" + ], + "created_at": "2026-07-10T10:10:47.063905", + "updated_at": "2026-07-10T10:10:47.063905", + "url": "/v1/games/tiger-tank-59-rainstorm-mp077" +} diff --git a/site/public/v1/games/tiger-tank-59-rainstorm-mp078/index.json b/site/public/v1/games/tiger-tank-59-rainstorm-mp078/index.json new file mode 100644 index 000000000000..0ecb73f58e28 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-rainstorm-mp078/index.json @@ -0,0 +1,31 @@ +{ + "id": 156357, + "slug": "tiger-tank-59-rainstorm-mp078", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP078", + "release_date": "2021-07-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185222" + ], + "created_at": "2026-07-10T10:10:47.063905", + "updated_at": "2026-07-10T10:10:47.063905", + "url": "/v1/games/tiger-tank-59-rainstorm-mp078" +} diff --git a/site/public/v1/games/tiger-tank-59-rainstorm-mp079/index.json b/site/public/v1/games/tiger-tank-59-rainstorm-mp079/index.json new file mode 100644 index 000000000000..e30e8ca773e8 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-rainstorm-mp079/index.json @@ -0,0 +1,31 @@ +{ + "id": 156358, + "slug": "tiger-tank-59-rainstorm-mp079", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP079", + "release_date": "2021-07-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185225" + ], + "created_at": "2026-07-10T10:10:47.063905", + "updated_at": "2026-07-10T10:10:47.063905", + "url": "/v1/games/tiger-tank-59-rainstorm-mp079" +} diff --git a/site/public/v1/games/tiger-tank-59-rainstorm-mp080/index.json b/site/public/v1/games/tiger-tank-59-rainstorm-mp080/index.json new file mode 100644 index 000000000000..e89ff2320417 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-rainstorm-mp080/index.json @@ -0,0 +1,31 @@ +{ + "id": 156359, + "slug": "tiger-tank-59-rainstorm-mp080", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP080", + "release_date": "2021-07-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185226" + ], + "created_at": "2026-07-10T10:10:47.063905", + "updated_at": "2026-07-10T10:10:47.063905", + "url": "/v1/games/tiger-tank-59-rainstorm-mp080" +} diff --git a/site/public/v1/games/tiger-tank-59-rainstorm-mp081/index.json b/site/public/v1/games/tiger-tank-59-rainstorm-mp081/index.json new file mode 100644 index 000000000000..2059ba5cd09f --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-rainstorm-mp081/index.json @@ -0,0 +1,31 @@ +{ + "id": 156360, + "slug": "tiger-tank-59-rainstorm-mp081", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP081", + "release_date": "2021-07-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185228" + ], + "created_at": "2026-07-10T10:10:47.064914", + "updated_at": "2026-07-10T10:10:47.064914", + "url": "/v1/games/tiger-tank-59-rainstorm-mp081" +} diff --git a/site/public/v1/games/tiger-tank-59-rainstorm-mp082/index.json b/site/public/v1/games/tiger-tank-59-rainstorm-mp082/index.json new file mode 100644 index 000000000000..5b218f5cc076 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-rainstorm-mp082/index.json @@ -0,0 +1,31 @@ +{ + "id": 156361, + "slug": "tiger-tank-59-rainstorm-mp082", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP082", + "release_date": "2021-07-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185230" + ], + "created_at": "2026-07-10T10:10:47.064914", + "updated_at": "2026-07-10T10:10:47.064914", + "url": "/v1/games/tiger-tank-59-rainstorm-mp082" +} diff --git a/site/public/v1/games/tiger-tank-59-rainstorm-mp083/index.json b/site/public/v1/games/tiger-tank-59-rainstorm-mp083/index.json new file mode 100644 index 000000000000..15db683a2d3a --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-rainstorm-mp083/index.json @@ -0,0 +1,31 @@ +{ + "id": 156362, + "slug": "tiger-tank-59-rainstorm-mp083", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP083", + "release_date": "2021-07-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185231" + ], + "created_at": "2026-07-10T10:10:47.064914", + "updated_at": "2026-07-10T10:10:47.064914", + "url": "/v1/games/tiger-tank-59-rainstorm-mp083" +} diff --git a/site/public/v1/games/tiger-tank-59-rainstorm-mp084/index.json b/site/public/v1/games/tiger-tank-59-rainstorm-mp084/index.json new file mode 100644 index 000000000000..9b12d1616cae --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-rainstorm-mp084/index.json @@ -0,0 +1,31 @@ +{ + "id": 156363, + "slug": "tiger-tank-59-rainstorm-mp084", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP084", + "release_date": "2021-07-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185232" + ], + "created_at": "2026-07-10T10:10:47.064914", + "updated_at": "2026-07-10T10:10:47.064914", + "url": "/v1/games/tiger-tank-59-rainstorm-mp084" +} diff --git a/site/public/v1/games/tiger-tank-59-rainstorm-mp085/index.json b/site/public/v1/games/tiger-tank-59-rainstorm-mp085/index.json new file mode 100644 index 000000000000..9e3263b1f04a --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-rainstorm-mp085/index.json @@ -0,0 +1,31 @@ +{ + "id": 156364, + "slug": "tiger-tank-59-rainstorm-mp085", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP085", + "release_date": "2021-07-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185233" + ], + "created_at": "2026-07-10T10:10:47.064914", + "updated_at": "2026-07-10T10:10:47.064914", + "url": "/v1/games/tiger-tank-59-rainstorm-mp085" +} diff --git a/site/public/v1/games/tiger-tank-59-rainstorm-mp086/index.json b/site/public/v1/games/tiger-tank-59-rainstorm-mp086/index.json new file mode 100644 index 000000000000..b9c9f2d2ec5b --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-rainstorm-mp086/index.json @@ -0,0 +1,31 @@ +{ + "id": 156365, + "slug": "tiger-tank-59-rainstorm-mp086", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP086", + "release_date": "2021-07-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185234" + ], + "created_at": "2026-07-10T10:10:47.064914", + "updated_at": "2026-07-10T10:10:47.064914", + "url": "/v1/games/tiger-tank-59-rainstorm-mp086" +} diff --git a/site/public/v1/games/tiger-tank-59-rainstorm-mp087/index.json b/site/public/v1/games/tiger-tank-59-rainstorm-mp087/index.json new file mode 100644 index 000000000000..e5330f45e41e --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-rainstorm-mp087/index.json @@ -0,0 +1,31 @@ +{ + "id": 156366, + "slug": "tiger-tank-59-rainstorm-mp087", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP087", + "release_date": "2021-07-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185235" + ], + "created_at": "2026-07-10T10:10:47.066460", + "updated_at": "2026-07-10T10:10:47.066460", + "url": "/v1/games/tiger-tank-59-rainstorm-mp087" +} diff --git a/site/public/v1/games/tiger-tank-59-rainstorm-mp088/index.json b/site/public/v1/games/tiger-tank-59-rainstorm-mp088/index.json new file mode 100644 index 000000000000..ea115a674561 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-rainstorm-mp088/index.json @@ -0,0 +1,31 @@ +{ + "id": 156367, + "slug": "tiger-tank-59-rainstorm-mp088", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP088", + "release_date": "2021-07-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185236" + ], + "created_at": "2026-07-10T10:10:47.066460", + "updated_at": "2026-07-10T10:10:47.066460", + "url": "/v1/games/tiger-tank-59-rainstorm-mp088" +} diff --git a/site/public/v1/games/tiger-tank-59-rainstorm-mp089/index.json b/site/public/v1/games/tiger-tank-59-rainstorm-mp089/index.json new file mode 100644 index 000000000000..0dd3229e7faa --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-rainstorm-mp089/index.json @@ -0,0 +1,31 @@ +{ + "id": 156368, + "slug": "tiger-tank-59-rainstorm-mp089", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP089", + "release_date": "2021-07-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185237" + ], + "created_at": "2026-07-10T10:10:47.066460", + "updated_at": "2026-07-10T10:10:47.066460", + "url": "/v1/games/tiger-tank-59-rainstorm-mp089" +} diff --git a/site/public/v1/games/tiger-tank-59-rainstorm-mp090/index.json b/site/public/v1/games/tiger-tank-59-rainstorm-mp090/index.json new file mode 100644 index 000000000000..6bc731136ea4 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-rainstorm-mp090/index.json @@ -0,0 +1,31 @@ +{ + "id": 156369, + "slug": "tiger-tank-59-rainstorm-mp090", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP090", + "release_date": "2021-07-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185239" + ], + "created_at": "2026-07-10T10:10:47.066460", + "updated_at": "2026-07-10T10:10:47.066460", + "url": "/v1/games/tiger-tank-59-rainstorm-mp090" +} diff --git a/site/public/v1/games/tiger-tank-59-rainstorm-mp091/index.json b/site/public/v1/games/tiger-tank-59-rainstorm-mp091/index.json new file mode 100644 index 000000000000..8a5eb84ee591 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-rainstorm-mp091/index.json @@ -0,0 +1,31 @@ +{ + "id": 156370, + "slug": "tiger-tank-59-rainstorm-mp091", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP091", + "release_date": "2021-07-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185241" + ], + "created_at": "2026-07-10T10:10:47.066460", + "updated_at": "2026-07-10T10:10:47.066460", + "url": "/v1/games/tiger-tank-59-rainstorm-mp091" +} diff --git a/site/public/v1/games/tiger-tank-59-rainstorm-mp092/index.json b/site/public/v1/games/tiger-tank-59-rainstorm-mp092/index.json new file mode 100644 index 000000000000..2ca3d4bd0dcb --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-rainstorm-mp092/index.json @@ -0,0 +1,31 @@ +{ + "id": 156371, + "slug": "tiger-tank-59-rainstorm-mp092", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP092", + "release_date": "2021-07-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185243" + ], + "created_at": "2026-07-10T10:10:47.066460", + "updated_at": "2026-07-10T10:10:47.066460", + "url": "/v1/games/tiger-tank-59-rainstorm-mp092" +} diff --git a/site/public/v1/games/tiger-tank-59-rainstorm-mp093/index.json b/site/public/v1/games/tiger-tank-59-rainstorm-mp093/index.json new file mode 100644 index 000000000000..6dd341965757 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-rainstorm-mp093/index.json @@ -0,0 +1,31 @@ +{ + "id": 156372, + "slug": "tiger-tank-59-rainstorm-mp093", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP093", + "release_date": "2021-07-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185244" + ], + "created_at": "2026-07-10T10:10:47.066460", + "updated_at": "2026-07-10T10:10:47.066460", + "url": "/v1/games/tiger-tank-59-rainstorm-mp093" +} diff --git a/site/public/v1/games/tiger-tank-59-rainstorm-mp094/index.json b/site/public/v1/games/tiger-tank-59-rainstorm-mp094/index.json new file mode 100644 index 000000000000..5c0d9ca602ac --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-rainstorm-mp094/index.json @@ -0,0 +1,31 @@ +{ + "id": 156373, + "slug": "tiger-tank-59-rainstorm-mp094", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP094", + "release_date": "2021-07-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185248" + ], + "created_at": "2026-07-10T10:10:47.067999", + "updated_at": "2026-07-10T10:10:47.067999", + "url": "/v1/games/tiger-tank-59-rainstorm-mp094" +} diff --git a/site/public/v1/games/tiger-tank-59-rainstorm-mp095/index.json b/site/public/v1/games/tiger-tank-59-rainstorm-mp095/index.json new file mode 100644 index 000000000000..057b3e86aa59 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-rainstorm-mp095/index.json @@ -0,0 +1,31 @@ +{ + "id": 156374, + "slug": "tiger-tank-59-rainstorm-mp095", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP095", + "release_date": "2021-07-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185250" + ], + "created_at": "2026-07-10T10:10:47.067999", + "updated_at": "2026-07-10T10:10:47.067999", + "url": "/v1/games/tiger-tank-59-rainstorm-mp095" +} diff --git a/site/public/v1/games/tiger-tank-59-rainstorm-mp096/index.json b/site/public/v1/games/tiger-tank-59-rainstorm-mp096/index.json new file mode 100644 index 000000000000..541360a9e079 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-rainstorm-mp096/index.json @@ -0,0 +1,31 @@ +{ + "id": 156375, + "slug": "tiger-tank-59-rainstorm-mp096", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP096", + "release_date": "2021-07-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185251" + ], + "created_at": "2026-07-10T10:10:47.067999", + "updated_at": "2026-07-10T10:10:47.067999", + "url": "/v1/games/tiger-tank-59-rainstorm-mp096" +} diff --git a/site/public/v1/games/tiger-tank-59-rainstorm-mp097/index.json b/site/public/v1/games/tiger-tank-59-rainstorm-mp097/index.json new file mode 100644 index 000000000000..5ec1eec350aa --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-rainstorm-mp097/index.json @@ -0,0 +1,31 @@ +{ + "id": 156376, + "slug": "tiger-tank-59-rainstorm-mp097", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP097", + "release_date": "2021-07-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185252" + ], + "created_at": "2026-07-10T10:10:47.067999", + "updated_at": "2026-07-10T10:10:47.067999", + "url": "/v1/games/tiger-tank-59-rainstorm-mp097" +} diff --git a/site/public/v1/games/tiger-tank-59-rainstorm-mp098/index.json b/site/public/v1/games/tiger-tank-59-rainstorm-mp098/index.json new file mode 100644 index 000000000000..759bfaa398ce --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-rainstorm-mp098/index.json @@ -0,0 +1,31 @@ +{ + "id": 156377, + "slug": "tiger-tank-59-rainstorm-mp098", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP098", + "release_date": "2021-07-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185254" + ], + "created_at": "2026-07-10T10:10:47.067999", + "updated_at": "2026-07-10T10:10:47.067999", + "url": "/v1/games/tiger-tank-59-rainstorm-mp098" +} diff --git a/site/public/v1/games/tiger-tank-59-rainstorm-mp099/index.json b/site/public/v1/games/tiger-tank-59-rainstorm-mp099/index.json new file mode 100644 index 000000000000..4a24f38c942e --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-rainstorm-mp099/index.json @@ -0,0 +1,31 @@ +{ + "id": 156378, + "slug": "tiger-tank-59-rainstorm-mp099", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP099", + "release_date": "2021-07-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185257" + ], + "created_at": "2026-07-10T10:10:47.067999", + "updated_at": "2026-07-10T10:10:47.067999", + "url": "/v1/games/tiger-tank-59-rainstorm-mp099" +} diff --git a/site/public/v1/games/tiger-tank-59-rainstorm-mp100/index.json b/site/public/v1/games/tiger-tank-59-rainstorm-mp100/index.json new file mode 100644 index 000000000000..1d7fcc050438 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-rainstorm-mp100/index.json @@ -0,0 +1,31 @@ +{ + "id": 156379, + "slug": "tiger-tank-59-rainstorm-mp100", + "name": "Tiger Tank 59 Ⅰ Rainstorm MP100", + "release_date": "2021-07-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185258" + ], + "created_at": "2026-07-10T10:10:47.067999", + "updated_at": "2026-07-10T10:10:47.067999", + "url": "/v1/games/tiger-tank-59-rainstorm-mp100" +} diff --git a/site/public/v1/games/tiger-tank-59-super-tank-mp001/index.json b/site/public/v1/games/tiger-tank-59-super-tank-mp001/index.json new file mode 100644 index 000000000000..9a6897f31e4f --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-super-tank-mp001/index.json @@ -0,0 +1,31 @@ +{ + "id": 156381, + "slug": "tiger-tank-59-super-tank-mp001", + "name": "Tiger Tank 59 Ⅰ Super Tank MP001", + "release_date": "2021-07-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185261" + ], + "created_at": "2026-07-10T10:10:47.069544", + "updated_at": "2026-07-10T10:10:47.069544", + "url": "/v1/games/tiger-tank-59-super-tank-mp001" +} diff --git a/site/public/v1/games/tiger-tank-59-super-tank-mp002/index.json b/site/public/v1/games/tiger-tank-59-super-tank-mp002/index.json new file mode 100644 index 000000000000..bf3c3694943a --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-super-tank-mp002/index.json @@ -0,0 +1,31 @@ +{ + "id": 156382, + "slug": "tiger-tank-59-super-tank-mp002", + "name": "Tiger Tank 59 Ⅰ Super Tank MP002", + "release_date": "2021-07-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185262" + ], + "created_at": "2026-07-10T10:10:47.069544", + "updated_at": "2026-07-10T10:10:47.069544", + "url": "/v1/games/tiger-tank-59-super-tank-mp002" +} diff --git a/site/public/v1/games/tiger-tank-59-super-tank-mp003/index.json b/site/public/v1/games/tiger-tank-59-super-tank-mp003/index.json new file mode 100644 index 000000000000..5186947764c3 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-super-tank-mp003/index.json @@ -0,0 +1,31 @@ +{ + "id": 156383, + "slug": "tiger-tank-59-super-tank-mp003", + "name": "Tiger Tank 59 Ⅰ Super Tank MP003", + "release_date": "2021-07-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185264" + ], + "created_at": "2026-07-10T10:10:47.069544", + "updated_at": "2026-07-10T10:10:47.069544", + "url": "/v1/games/tiger-tank-59-super-tank-mp003" +} diff --git a/site/public/v1/games/tiger-tank-59-super-tank-mp004/index.json b/site/public/v1/games/tiger-tank-59-super-tank-mp004/index.json new file mode 100644 index 000000000000..5e845d3b1da7 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-super-tank-mp004/index.json @@ -0,0 +1,31 @@ +{ + "id": 156384, + "slug": "tiger-tank-59-super-tank-mp004", + "name": "Tiger Tank 59 Ⅰ Super Tank MP004", + "release_date": "2021-07-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185265" + ], + "created_at": "2026-07-10T10:10:47.069544", + "updated_at": "2026-07-10T10:10:47.069544", + "url": "/v1/games/tiger-tank-59-super-tank-mp004" +} diff --git a/site/public/v1/games/tiger-tank-59-super-tank-mp005/index.json b/site/public/v1/games/tiger-tank-59-super-tank-mp005/index.json new file mode 100644 index 000000000000..0aa609f6e673 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-super-tank-mp005/index.json @@ -0,0 +1,31 @@ +{ + "id": 156385, + "slug": "tiger-tank-59-super-tank-mp005", + "name": "Tiger Tank 59 Ⅰ Super Tank MP005", + "release_date": "2021-07-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185266" + ], + "created_at": "2026-07-10T10:10:47.069544", + "updated_at": "2026-07-10T10:10:47.069544", + "url": "/v1/games/tiger-tank-59-super-tank-mp005" +} diff --git a/site/public/v1/games/tiger-tank-59-super-tank-mp006/index.json b/site/public/v1/games/tiger-tank-59-super-tank-mp006/index.json new file mode 100644 index 000000000000..223a73c02390 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-super-tank-mp006/index.json @@ -0,0 +1,31 @@ +{ + "id": 156386, + "slug": "tiger-tank-59-super-tank-mp006", + "name": "Tiger Tank 59 Ⅰ Super Tank MP006", + "release_date": "2021-07-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185268" + ], + "created_at": "2026-07-10T10:10:47.069544", + "updated_at": "2026-07-10T10:10:47.069544", + "url": "/v1/games/tiger-tank-59-super-tank-mp006" +} diff --git a/site/public/v1/games/tiger-tank-59-super-tank-mp007/index.json b/site/public/v1/games/tiger-tank-59-super-tank-mp007/index.json new file mode 100644 index 000000000000..2123d292ed1a --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-super-tank-mp007/index.json @@ -0,0 +1,31 @@ +{ + "id": 156387, + "slug": "tiger-tank-59-super-tank-mp007", + "name": "Tiger Tank 59 Ⅰ Super Tank MP007", + "release_date": "2021-07-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185271" + ], + "created_at": "2026-07-10T10:10:47.071073", + "updated_at": "2026-07-10T10:10:47.071073", + "url": "/v1/games/tiger-tank-59-super-tank-mp007" +} diff --git a/site/public/v1/games/tiger-tank-59-super-tank-mp008/index.json b/site/public/v1/games/tiger-tank-59-super-tank-mp008/index.json new file mode 100644 index 000000000000..65bd1b43e57a --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-super-tank-mp008/index.json @@ -0,0 +1,31 @@ +{ + "id": 156388, + "slug": "tiger-tank-59-super-tank-mp008", + "name": "Tiger Tank 59 Ⅰ Super Tank MP008", + "release_date": "2021-07-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185272" + ], + "created_at": "2026-07-10T10:10:47.071073", + "updated_at": "2026-07-10T10:10:47.071073", + "url": "/v1/games/tiger-tank-59-super-tank-mp008" +} diff --git a/site/public/v1/games/tiger-tank-59-super-tank-mp009/index.json b/site/public/v1/games/tiger-tank-59-super-tank-mp009/index.json new file mode 100644 index 000000000000..22067afe367c --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-super-tank-mp009/index.json @@ -0,0 +1,31 @@ +{ + "id": 156389, + "slug": "tiger-tank-59-super-tank-mp009", + "name": "Tiger Tank 59 Ⅰ Super Tank MP009", + "release_date": "2021-07-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185274" + ], + "created_at": "2026-07-10T10:10:47.071073", + "updated_at": "2026-07-10T10:10:47.071073", + "url": "/v1/games/tiger-tank-59-super-tank-mp009" +} diff --git a/site/public/v1/games/tiger-tank-59-super-tank-mp010/index.json b/site/public/v1/games/tiger-tank-59-super-tank-mp010/index.json new file mode 100644 index 000000000000..b92ca1a40843 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-super-tank-mp010/index.json @@ -0,0 +1,31 @@ +{ + "id": 156390, + "slug": "tiger-tank-59-super-tank-mp010", + "name": "Tiger Tank 59 Ⅰ Super Tank MP010", + "release_date": "2021-07-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185275" + ], + "created_at": "2026-07-10T10:10:47.071073", + "updated_at": "2026-07-10T10:10:47.071073", + "url": "/v1/games/tiger-tank-59-super-tank-mp010" +} diff --git a/site/public/v1/games/tiger-tank-59-super-tank-mp011/index.json b/site/public/v1/games/tiger-tank-59-super-tank-mp011/index.json new file mode 100644 index 000000000000..cb3c781a7183 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-super-tank-mp011/index.json @@ -0,0 +1,31 @@ +{ + "id": 156391, + "slug": "tiger-tank-59-super-tank-mp011", + "name": "Tiger Tank 59 Ⅰ Super Tank MP011", + "release_date": "2021-07-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185277" + ], + "created_at": "2026-07-10T10:10:47.071073", + "updated_at": "2026-07-10T10:10:47.071073", + "url": "/v1/games/tiger-tank-59-super-tank-mp011" +} diff --git a/site/public/v1/games/tiger-tank-59-super-tank-mp012/index.json b/site/public/v1/games/tiger-tank-59-super-tank-mp012/index.json new file mode 100644 index 000000000000..97cf2865193a --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-super-tank-mp012/index.json @@ -0,0 +1,31 @@ +{ + "id": 156392, + "slug": "tiger-tank-59-super-tank-mp012", + "name": "Tiger Tank 59 Ⅰ Super Tank MP012", + "release_date": "2021-07-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185278" + ], + "created_at": "2026-07-10T10:10:47.072084", + "updated_at": "2026-07-10T10:10:47.072084", + "url": "/v1/games/tiger-tank-59-super-tank-mp012" +} diff --git a/site/public/v1/games/tiger-tank-59-super-tank-mp013/index.json b/site/public/v1/games/tiger-tank-59-super-tank-mp013/index.json new file mode 100644 index 000000000000..9d6eeaffdc2d --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-super-tank-mp013/index.json @@ -0,0 +1,31 @@ +{ + "id": 156393, + "slug": "tiger-tank-59-super-tank-mp013", + "name": "Tiger Tank 59 Ⅰ Super Tank MP013", + "release_date": "2021-07-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185280" + ], + "created_at": "2026-07-10T10:10:47.072084", + "updated_at": "2026-07-10T10:10:47.072084", + "url": "/v1/games/tiger-tank-59-super-tank-mp013" +} diff --git a/site/public/v1/games/tiger-tank-59-super-tank-mp014/index.json b/site/public/v1/games/tiger-tank-59-super-tank-mp014/index.json new file mode 100644 index 000000000000..e50f95b4626e --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-super-tank-mp014/index.json @@ -0,0 +1,31 @@ +{ + "id": 156394, + "slug": "tiger-tank-59-super-tank-mp014", + "name": "Tiger Tank 59 Ⅰ Super Tank MP014", + "release_date": "2021-07-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185281" + ], + "created_at": "2026-07-10T10:10:47.072084", + "updated_at": "2026-07-10T10:10:47.072084", + "url": "/v1/games/tiger-tank-59-super-tank-mp014" +} diff --git a/site/public/v1/games/tiger-tank-59-super-tank-mp015/index.json b/site/public/v1/games/tiger-tank-59-super-tank-mp015/index.json new file mode 100644 index 000000000000..5a4a442403f2 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-super-tank-mp015/index.json @@ -0,0 +1,31 @@ +{ + "id": 156395, + "slug": "tiger-tank-59-super-tank-mp015", + "name": "Tiger Tank 59 Ⅰ Super Tank MP015", + "release_date": "2021-07-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185282" + ], + "created_at": "2026-07-10T10:10:47.072084", + "updated_at": "2026-07-10T10:10:47.072084", + "url": "/v1/games/tiger-tank-59-super-tank-mp015" +} diff --git a/site/public/v1/games/tiger-tank-59-super-tank-mp016/index.json b/site/public/v1/games/tiger-tank-59-super-tank-mp016/index.json new file mode 100644 index 000000000000..9955f93d24ad --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-super-tank-mp016/index.json @@ -0,0 +1,31 @@ +{ + "id": 156396, + "slug": "tiger-tank-59-super-tank-mp016", + "name": "Tiger Tank 59 Ⅰ Super Tank MP016", + "release_date": "2021-07-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185284" + ], + "created_at": "2026-07-10T10:10:47.073083", + "updated_at": "2026-07-10T10:10:47.073083", + "url": "/v1/games/tiger-tank-59-super-tank-mp016" +} diff --git a/site/public/v1/games/tiger-tank-59-super-tank-mp017/index.json b/site/public/v1/games/tiger-tank-59-super-tank-mp017/index.json new file mode 100644 index 000000000000..83551c593bc9 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-super-tank-mp017/index.json @@ -0,0 +1,31 @@ +{ + "id": 156397, + "slug": "tiger-tank-59-super-tank-mp017", + "name": "Tiger Tank 59 Ⅰ Super Tank MP017", + "release_date": "2021-07-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185286" + ], + "created_at": "2026-07-10T10:10:47.073083", + "updated_at": "2026-07-10T10:10:47.073083", + "url": "/v1/games/tiger-tank-59-super-tank-mp017" +} diff --git a/site/public/v1/games/tiger-tank-59-super-tank-mp018/index.json b/site/public/v1/games/tiger-tank-59-super-tank-mp018/index.json new file mode 100644 index 000000000000..f7b768562752 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-super-tank-mp018/index.json @@ -0,0 +1,31 @@ +{ + "id": 156398, + "slug": "tiger-tank-59-super-tank-mp018", + "name": "Tiger Tank 59 Ⅰ Super Tank MP018", + "release_date": "2021-07-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185287" + ], + "created_at": "2026-07-10T10:10:47.073083", + "updated_at": "2026-07-10T10:10:47.073083", + "url": "/v1/games/tiger-tank-59-super-tank-mp018" +} diff --git a/site/public/v1/games/tiger-tank-59-super-tank-mp019/index.json b/site/public/v1/games/tiger-tank-59-super-tank-mp019/index.json new file mode 100644 index 000000000000..227c902b0784 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-super-tank-mp019/index.json @@ -0,0 +1,31 @@ +{ + "id": 156399, + "slug": "tiger-tank-59-super-tank-mp019", + "name": "Tiger Tank 59 Ⅰ Super Tank MP019", + "release_date": "2021-07-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185290" + ], + "created_at": "2026-07-10T10:10:47.073083", + "updated_at": "2026-07-10T10:10:47.073083", + "url": "/v1/games/tiger-tank-59-super-tank-mp019" +} diff --git a/site/public/v1/games/tiger-tank-59-super-tank-mp020/index.json b/site/public/v1/games/tiger-tank-59-super-tank-mp020/index.json new file mode 100644 index 000000000000..680be286b4aa --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-super-tank-mp020/index.json @@ -0,0 +1,31 @@ +{ + "id": 156400, + "slug": "tiger-tank-59-super-tank-mp020", + "name": "Tiger Tank 59 Ⅰ Super Tank MP020", + "release_date": "2021-07-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185291" + ], + "created_at": "2026-07-10T10:10:47.073083", + "updated_at": "2026-07-10T10:10:47.073083", + "url": "/v1/games/tiger-tank-59-super-tank-mp020" +} diff --git a/site/public/v1/games/tiger-tank-59-super-tank-mp021/index.json b/site/public/v1/games/tiger-tank-59-super-tank-mp021/index.json new file mode 100644 index 000000000000..4234477b54e1 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-super-tank-mp021/index.json @@ -0,0 +1,31 @@ +{ + "id": 156401, + "slug": "tiger-tank-59-super-tank-mp021", + "name": "Tiger Tank 59 Ⅰ Super Tank MP021", + "release_date": "2021-07-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185293" + ], + "created_at": "2026-07-10T10:10:47.074083", + "updated_at": "2026-07-10T10:10:47.074083", + "url": "/v1/games/tiger-tank-59-super-tank-mp021" +} diff --git a/site/public/v1/games/tiger-tank-59-super-tank-mp022/index.json b/site/public/v1/games/tiger-tank-59-super-tank-mp022/index.json new file mode 100644 index 000000000000..5320521f9d15 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-super-tank-mp022/index.json @@ -0,0 +1,31 @@ +{ + "id": 156402, + "slug": "tiger-tank-59-super-tank-mp022", + "name": "Tiger Tank 59 Ⅰ Super Tank MP022", + "release_date": "2021-07-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185295" + ], + "created_at": "2026-07-10T10:10:47.074083", + "updated_at": "2026-07-10T10:10:47.074083", + "url": "/v1/games/tiger-tank-59-super-tank-mp022" +} diff --git a/site/public/v1/games/tiger-tank-59-super-tank-mp023/index.json b/site/public/v1/games/tiger-tank-59-super-tank-mp023/index.json new file mode 100644 index 000000000000..6d93e9372587 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-super-tank-mp023/index.json @@ -0,0 +1,31 @@ +{ + "id": 156403, + "slug": "tiger-tank-59-super-tank-mp023", + "name": "Tiger Tank 59 Ⅰ Super Tank MP023", + "release_date": "2021-07-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185297" + ], + "created_at": "2026-07-10T10:10:47.074083", + "updated_at": "2026-07-10T10:10:47.074083", + "url": "/v1/games/tiger-tank-59-super-tank-mp023" +} diff --git a/site/public/v1/games/tiger-tank-59-super-tank-mp024/index.json b/site/public/v1/games/tiger-tank-59-super-tank-mp024/index.json new file mode 100644 index 000000000000..5be92c39fc2e --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-super-tank-mp024/index.json @@ -0,0 +1,31 @@ +{ + "id": 156404, + "slug": "tiger-tank-59-super-tank-mp024", + "name": "Tiger Tank 59 Ⅰ Super Tank MP024", + "release_date": "2021-07-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185298" + ], + "created_at": "2026-07-10T10:10:47.074083", + "updated_at": "2026-07-10T10:10:47.074083", + "url": "/v1/games/tiger-tank-59-super-tank-mp024" +} diff --git a/site/public/v1/games/tiger-tank-59-super-tank-mp025/index.json b/site/public/v1/games/tiger-tank-59-super-tank-mp025/index.json new file mode 100644 index 000000000000..889227b44a45 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-super-tank-mp025/index.json @@ -0,0 +1,31 @@ +{ + "id": 156405, + "slug": "tiger-tank-59-super-tank-mp025", + "name": "Tiger Tank 59 Ⅰ Super Tank MP025", + "release_date": "2021-07-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185300" + ], + "created_at": "2026-07-10T10:10:47.075084", + "updated_at": "2026-07-10T10:10:47.075084", + "url": "/v1/games/tiger-tank-59-super-tank-mp025" +} diff --git a/site/public/v1/games/tiger-tank-59-super-tank-mp026/index.json b/site/public/v1/games/tiger-tank-59-super-tank-mp026/index.json new file mode 100644 index 000000000000..7315e376f9d2 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-super-tank-mp026/index.json @@ -0,0 +1,31 @@ +{ + "id": 156406, + "slug": "tiger-tank-59-super-tank-mp026", + "name": "Tiger Tank 59 Ⅰ Super Tank MP026", + "release_date": "2021-07-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185301" + ], + "created_at": "2026-07-10T10:10:47.075084", + "updated_at": "2026-07-10T10:10:47.075084", + "url": "/v1/games/tiger-tank-59-super-tank-mp026" +} diff --git a/site/public/v1/games/tiger-tank-59-super-tank-mp027/index.json b/site/public/v1/games/tiger-tank-59-super-tank-mp027/index.json new file mode 100644 index 000000000000..94c94d135cdd --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-super-tank-mp027/index.json @@ -0,0 +1,31 @@ +{ + "id": 156407, + "slug": "tiger-tank-59-super-tank-mp027", + "name": "Tiger Tank 59 Ⅰ Super Tank MP027", + "release_date": "2021-07-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185303" + ], + "created_at": "2026-07-10T10:10:47.075084", + "updated_at": "2026-07-10T10:10:47.075084", + "url": "/v1/games/tiger-tank-59-super-tank-mp027" +} diff --git a/site/public/v1/games/tiger-tank-59-super-tank-mp028/index.json b/site/public/v1/games/tiger-tank-59-super-tank-mp028/index.json new file mode 100644 index 000000000000..c863c9dd8284 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-super-tank-mp028/index.json @@ -0,0 +1,31 @@ +{ + "id": 156408, + "slug": "tiger-tank-59-super-tank-mp028", + "name": "Tiger Tank 59 Ⅰ Super Tank MP028", + "release_date": "2021-07-27", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185304" + ], + "created_at": "2026-07-10T10:10:47.075084", + "updated_at": "2026-07-10T10:10:47.075084", + "url": "/v1/games/tiger-tank-59-super-tank-mp028" +} diff --git a/site/public/v1/games/tiger-tank-59-super-tank-mp029/index.json b/site/public/v1/games/tiger-tank-59-super-tank-mp029/index.json new file mode 100644 index 000000000000..fd07c7760e79 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-super-tank-mp029/index.json @@ -0,0 +1,31 @@ +{ + "id": 156409, + "slug": "tiger-tank-59-super-tank-mp029", + "name": "Tiger Tank 59 Ⅰ Super Tank MP029", + "release_date": "2021-07-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185305" + ], + "created_at": "2026-07-10T10:10:47.075084", + "updated_at": "2026-07-10T10:10:47.075084", + "url": "/v1/games/tiger-tank-59-super-tank-mp029" +} diff --git a/site/public/v1/games/tiger-tank-59-super-tank-mp030/index.json b/site/public/v1/games/tiger-tank-59-super-tank-mp030/index.json new file mode 100644 index 000000000000..a9385a621068 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-super-tank-mp030/index.json @@ -0,0 +1,31 @@ +{ + "id": 156410, + "slug": "tiger-tank-59-super-tank-mp030", + "name": "Tiger Tank 59 Ⅰ Super Tank MP030", + "release_date": "2021-07-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185306" + ], + "created_at": "2026-07-10T10:10:47.076160", + "updated_at": "2026-07-10T10:10:47.076160", + "url": "/v1/games/tiger-tank-59-super-tank-mp030" +} diff --git a/site/public/v1/games/tiger-tank-59-super-tank-mp031/index.json b/site/public/v1/games/tiger-tank-59-super-tank-mp031/index.json new file mode 100644 index 000000000000..9529142a144b --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-super-tank-mp031/index.json @@ -0,0 +1,31 @@ +{ + "id": 156411, + "slug": "tiger-tank-59-super-tank-mp031", + "name": "Tiger Tank 59 Ⅰ Super Tank MP031", + "release_date": "2021-07-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185307" + ], + "created_at": "2026-07-10T10:10:47.076160", + "updated_at": "2026-07-10T10:10:47.076160", + "url": "/v1/games/tiger-tank-59-super-tank-mp031" +} diff --git a/site/public/v1/games/tiger-tank-59-super-tank-mp032/index.json b/site/public/v1/games/tiger-tank-59-super-tank-mp032/index.json new file mode 100644 index 000000000000..3d8c994f3fce --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-super-tank-mp032/index.json @@ -0,0 +1,31 @@ +{ + "id": 156412, + "slug": "tiger-tank-59-super-tank-mp032", + "name": "Tiger Tank 59 Ⅰ Super Tank MP032", + "release_date": "2021-07-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185308" + ], + "created_at": "2026-07-10T10:10:47.076160", + "updated_at": "2026-07-10T10:10:47.076160", + "url": "/v1/games/tiger-tank-59-super-tank-mp032" +} diff --git a/site/public/v1/games/tiger-tank-59-super-tank-mp033/index.json b/site/public/v1/games/tiger-tank-59-super-tank-mp033/index.json new file mode 100644 index 000000000000..c02c50359f18 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-super-tank-mp033/index.json @@ -0,0 +1,31 @@ +{ + "id": 156413, + "slug": "tiger-tank-59-super-tank-mp033", + "name": "Tiger Tank 59 Ⅰ Super Tank MP033", + "release_date": "2021-07-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185309" + ], + "created_at": "2026-07-10T10:10:47.076160", + "updated_at": "2026-07-10T10:10:47.076160", + "url": "/v1/games/tiger-tank-59-super-tank-mp033" +} diff --git a/site/public/v1/games/tiger-tank-59-super-tank-mp034/index.json b/site/public/v1/games/tiger-tank-59-super-tank-mp034/index.json new file mode 100644 index 000000000000..23c677b2ad00 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-super-tank-mp034/index.json @@ -0,0 +1,31 @@ +{ + "id": 156414, + "slug": "tiger-tank-59-super-tank-mp034", + "name": "Tiger Tank 59 Ⅰ Super Tank MP034", + "release_date": "2021-07-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185311" + ], + "created_at": "2026-07-10T10:10:47.076160", + "updated_at": "2026-07-10T10:10:47.076160", + "url": "/v1/games/tiger-tank-59-super-tank-mp034" +} diff --git a/site/public/v1/games/tiger-tank-59-super-tank-mp035/index.json b/site/public/v1/games/tiger-tank-59-super-tank-mp035/index.json new file mode 100644 index 000000000000..a5d2a24ceb69 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-super-tank-mp035/index.json @@ -0,0 +1,31 @@ +{ + "id": 156415, + "slug": "tiger-tank-59-super-tank-mp035", + "name": "Tiger Tank 59 Ⅰ Super Tank MP035", + "release_date": "2021-07-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185312" + ], + "created_at": "2026-07-10T10:10:47.077155", + "updated_at": "2026-07-10T10:10:47.077155", + "url": "/v1/games/tiger-tank-59-super-tank-mp035" +} diff --git a/site/public/v1/games/tiger-tank-59-super-tank-mp036/index.json b/site/public/v1/games/tiger-tank-59-super-tank-mp036/index.json new file mode 100644 index 000000000000..f12a6ae99012 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-super-tank-mp036/index.json @@ -0,0 +1,31 @@ +{ + "id": 156416, + "slug": "tiger-tank-59-super-tank-mp036", + "name": "Tiger Tank 59 Ⅰ Super Tank MP036", + "release_date": "2021-07-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185313" + ], + "created_at": "2026-07-10T10:10:47.077155", + "updated_at": "2026-07-10T10:10:47.077155", + "url": "/v1/games/tiger-tank-59-super-tank-mp036" +} diff --git a/site/public/v1/games/tiger-tank-59-super-tank-mp037/index.json b/site/public/v1/games/tiger-tank-59-super-tank-mp037/index.json new file mode 100644 index 000000000000..35806efafab4 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-super-tank-mp037/index.json @@ -0,0 +1,31 @@ +{ + "id": 156417, + "slug": "tiger-tank-59-super-tank-mp037", + "name": "Tiger Tank 59 Ⅰ Super Tank MP037", + "release_date": "2021-07-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185315" + ], + "created_at": "2026-07-10T10:10:47.077155", + "updated_at": "2026-07-10T10:10:47.077155", + "url": "/v1/games/tiger-tank-59-super-tank-mp037" +} diff --git a/site/public/v1/games/tiger-tank-59-super-tank-mp038/index.json b/site/public/v1/games/tiger-tank-59-super-tank-mp038/index.json new file mode 100644 index 000000000000..e8a97f8c6074 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-super-tank-mp038/index.json @@ -0,0 +1,31 @@ +{ + "id": 156418, + "slug": "tiger-tank-59-super-tank-mp038", + "name": "Tiger Tank 59 Ⅰ Super Tank MP038", + "release_date": "2021-07-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185316" + ], + "created_at": "2026-07-10T10:10:47.077155", + "updated_at": "2026-07-10T10:10:47.077155", + "url": "/v1/games/tiger-tank-59-super-tank-mp038" +} diff --git a/site/public/v1/games/tiger-tank-59-super-tank-mp039/index.json b/site/public/v1/games/tiger-tank-59-super-tank-mp039/index.json new file mode 100644 index 000000000000..eeca6159f8ac --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-super-tank-mp039/index.json @@ -0,0 +1,31 @@ +{ + "id": 156419, + "slug": "tiger-tank-59-super-tank-mp039", + "name": "Tiger Tank 59 Ⅰ Super Tank MP039", + "release_date": "2021-07-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185318" + ], + "created_at": "2026-07-10T10:10:47.077155", + "updated_at": "2026-07-10T10:10:47.077155", + "url": "/v1/games/tiger-tank-59-super-tank-mp039" +} diff --git a/site/public/v1/games/tiger-tank-59-super-tank-mp040/index.json b/site/public/v1/games/tiger-tank-59-super-tank-mp040/index.json new file mode 100644 index 000000000000..5475fea5c295 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-super-tank-mp040/index.json @@ -0,0 +1,31 @@ +{ + "id": 156420, + "slug": "tiger-tank-59-super-tank-mp040", + "name": "Tiger Tank 59 Ⅰ Super Tank MP040", + "release_date": "2021-07-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185322" + ], + "created_at": "2026-07-10T10:10:47.078616", + "updated_at": "2026-07-10T10:10:47.078616", + "url": "/v1/games/tiger-tank-59-super-tank-mp040" +} diff --git a/site/public/v1/games/tiger-tank-59-super-tank-mp041/index.json b/site/public/v1/games/tiger-tank-59-super-tank-mp041/index.json new file mode 100644 index 000000000000..15923e027912 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-super-tank-mp041/index.json @@ -0,0 +1,31 @@ +{ + "id": 156421, + "slug": "tiger-tank-59-super-tank-mp041", + "name": "Tiger Tank 59 Ⅰ Super Tank MP041", + "release_date": "2021-07-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185324" + ], + "created_at": "2026-07-10T10:10:47.078616", + "updated_at": "2026-07-10T10:10:47.078616", + "url": "/v1/games/tiger-tank-59-super-tank-mp041" +} diff --git a/site/public/v1/games/tiger-tank-59-super-tank-mp042/index.json b/site/public/v1/games/tiger-tank-59-super-tank-mp042/index.json new file mode 100644 index 000000000000..fdcba46c7191 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-super-tank-mp042/index.json @@ -0,0 +1,31 @@ +{ + "id": 156422, + "slug": "tiger-tank-59-super-tank-mp042", + "name": "Tiger Tank 59 Ⅰ Super Tank MP042", + "release_date": "2021-07-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185327" + ], + "created_at": "2026-07-10T10:10:47.078616", + "updated_at": "2026-07-10T10:10:47.078616", + "url": "/v1/games/tiger-tank-59-super-tank-mp042" +} diff --git a/site/public/v1/games/tiger-tank-59-super-tank-mp043/index.json b/site/public/v1/games/tiger-tank-59-super-tank-mp043/index.json new file mode 100644 index 000000000000..c684e3c65cea --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-super-tank-mp043/index.json @@ -0,0 +1,31 @@ +{ + "id": 156423, + "slug": "tiger-tank-59-super-tank-mp043", + "name": "Tiger Tank 59 Ⅰ Super Tank MP043", + "release_date": "2021-07-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185328" + ], + "created_at": "2026-07-10T10:10:47.078616", + "updated_at": "2026-07-10T10:10:47.078616", + "url": "/v1/games/tiger-tank-59-super-tank-mp043" +} diff --git a/site/public/v1/games/tiger-tank-59-super-tank-mp044/index.json b/site/public/v1/games/tiger-tank-59-super-tank-mp044/index.json new file mode 100644 index 000000000000..44cebffffd48 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-super-tank-mp044/index.json @@ -0,0 +1,31 @@ +{ + "id": 156424, + "slug": "tiger-tank-59-super-tank-mp044", + "name": "Tiger Tank 59 Ⅰ Super Tank MP044", + "release_date": "2021-07-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185329" + ], + "created_at": "2026-07-10T10:10:47.078616", + "updated_at": "2026-07-10T10:10:47.078616", + "url": "/v1/games/tiger-tank-59-super-tank-mp044" +} diff --git a/site/public/v1/games/tiger-tank-59-super-tank-mp045/index.json b/site/public/v1/games/tiger-tank-59-super-tank-mp045/index.json new file mode 100644 index 000000000000..d3bf98a9089e --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-super-tank-mp045/index.json @@ -0,0 +1,31 @@ +{ + "id": 156425, + "slug": "tiger-tank-59-super-tank-mp045", + "name": "Tiger Tank 59 Ⅰ Super Tank MP045", + "release_date": "2021-07-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185331" + ], + "created_at": "2026-07-10T10:10:47.079624", + "updated_at": "2026-07-10T10:10:47.079624", + "url": "/v1/games/tiger-tank-59-super-tank-mp045" +} diff --git a/site/public/v1/games/tiger-tank-59-super-tank-mp046/index.json b/site/public/v1/games/tiger-tank-59-super-tank-mp046/index.json new file mode 100644 index 000000000000..83ed9091ce29 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-super-tank-mp046/index.json @@ -0,0 +1,31 @@ +{ + "id": 156426, + "slug": "tiger-tank-59-super-tank-mp046", + "name": "Tiger Tank 59 Ⅰ Super Tank MP046", + "release_date": "2021-07-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185334" + ], + "created_at": "2026-07-10T10:10:47.079624", + "updated_at": "2026-07-10T10:10:47.079624", + "url": "/v1/games/tiger-tank-59-super-tank-mp046" +} diff --git a/site/public/v1/games/tiger-tank-59-super-tank-mp047/index.json b/site/public/v1/games/tiger-tank-59-super-tank-mp047/index.json new file mode 100644 index 000000000000..4a4e4dae4028 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-super-tank-mp047/index.json @@ -0,0 +1,31 @@ +{ + "id": 156427, + "slug": "tiger-tank-59-super-tank-mp047", + "name": "Tiger Tank 59 Ⅰ Super Tank MP047", + "release_date": "2021-07-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185335" + ], + "created_at": "2026-07-10T10:10:47.079624", + "updated_at": "2026-07-10T10:10:47.079624", + "url": "/v1/games/tiger-tank-59-super-tank-mp047" +} diff --git a/site/public/v1/games/tiger-tank-59-super-tank-mp048/index.json b/site/public/v1/games/tiger-tank-59-super-tank-mp048/index.json new file mode 100644 index 000000000000..dc4e3f58890e --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-super-tank-mp048/index.json @@ -0,0 +1,31 @@ +{ + "id": 156428, + "slug": "tiger-tank-59-super-tank-mp048", + "name": "Tiger Tank 59 Ⅰ Super Tank MP048", + "release_date": "2021-07-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185337" + ], + "created_at": "2026-07-10T10:10:47.079624", + "updated_at": "2026-07-10T10:10:47.079624", + "url": "/v1/games/tiger-tank-59-super-tank-mp048" +} diff --git a/site/public/v1/games/tiger-tank-59-super-tank-mp049/index.json b/site/public/v1/games/tiger-tank-59-super-tank-mp049/index.json new file mode 100644 index 000000000000..cf4fe142a515 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-super-tank-mp049/index.json @@ -0,0 +1,31 @@ +{ + "id": 156429, + "slug": "tiger-tank-59-super-tank-mp049", + "name": "Tiger Tank 59 Ⅰ Super Tank MP049", + "release_date": "2021-07-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185340" + ], + "created_at": "2026-07-10T10:10:47.080627", + "updated_at": "2026-07-10T10:10:47.080627", + "url": "/v1/games/tiger-tank-59-super-tank-mp049" +} diff --git a/site/public/v1/games/tiger-tank-59-super-tank-mp050/index.json b/site/public/v1/games/tiger-tank-59-super-tank-mp050/index.json new file mode 100644 index 000000000000..3d5f1607afcd --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-super-tank-mp050/index.json @@ -0,0 +1,31 @@ +{ + "id": 156430, + "slug": "tiger-tank-59-super-tank-mp050", + "name": "Tiger Tank 59 Ⅰ Super Tank MP050", + "release_date": "2021-07-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185341" + ], + "created_at": "2026-07-10T10:10:47.080627", + "updated_at": "2026-07-10T10:10:47.080627", + "url": "/v1/games/tiger-tank-59-super-tank-mp050" +} diff --git a/site/public/v1/games/tiger-tank-59-super-tank-mp051/index.json b/site/public/v1/games/tiger-tank-59-super-tank-mp051/index.json new file mode 100644 index 000000000000..045714c8675b --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-super-tank-mp051/index.json @@ -0,0 +1,31 @@ +{ + "id": 156431, + "slug": "tiger-tank-59-super-tank-mp051", + "name": "Tiger Tank 59 Ⅰ Super Tank MP051", + "release_date": "2021-07-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185342" + ], + "created_at": "2026-07-10T10:10:47.080627", + "updated_at": "2026-07-10T10:10:47.080627", + "url": "/v1/games/tiger-tank-59-super-tank-mp051" +} diff --git a/site/public/v1/games/tiger-tank-59-super-tank-mp052/index.json b/site/public/v1/games/tiger-tank-59-super-tank-mp052/index.json new file mode 100644 index 000000000000..7ae5799af248 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-super-tank-mp052/index.json @@ -0,0 +1,31 @@ +{ + "id": 156432, + "slug": "tiger-tank-59-super-tank-mp052", + "name": "Tiger Tank 59 Ⅰ Super Tank MP052", + "release_date": "2021-07-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185343" + ], + "created_at": "2026-07-10T10:10:47.080627", + "updated_at": "2026-07-10T10:10:47.080627", + "url": "/v1/games/tiger-tank-59-super-tank-mp052" +} diff --git a/site/public/v1/games/tiger-tank-59-super-tank-mp053/index.json b/site/public/v1/games/tiger-tank-59-super-tank-mp053/index.json new file mode 100644 index 000000000000..037836be0cd5 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-super-tank-mp053/index.json @@ -0,0 +1,31 @@ +{ + "id": 156433, + "slug": "tiger-tank-59-super-tank-mp053", + "name": "Tiger Tank 59 Ⅰ Super Tank MP053", + "release_date": "2021-07-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185344" + ], + "created_at": "2026-07-10T10:10:47.080627", + "updated_at": "2026-07-10T10:10:47.080627", + "url": "/v1/games/tiger-tank-59-super-tank-mp053" +} diff --git a/site/public/v1/games/tiger-tank-59-super-tank-mp054/index.json b/site/public/v1/games/tiger-tank-59-super-tank-mp054/index.json new file mode 100644 index 000000000000..50d11b83a325 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-super-tank-mp054/index.json @@ -0,0 +1,31 @@ +{ + "id": 156434, + "slug": "tiger-tank-59-super-tank-mp054", + "name": "Tiger Tank 59 Ⅰ Super Tank MP054", + "release_date": "2021-07-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185345" + ], + "created_at": "2026-07-10T10:10:47.081628", + "updated_at": "2026-07-10T10:10:47.081628", + "url": "/v1/games/tiger-tank-59-super-tank-mp054" +} diff --git a/site/public/v1/games/tiger-tank-59-super-tank-mp055/index.json b/site/public/v1/games/tiger-tank-59-super-tank-mp055/index.json new file mode 100644 index 000000000000..45797619846d --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-super-tank-mp055/index.json @@ -0,0 +1,31 @@ +{ + "id": 156435, + "slug": "tiger-tank-59-super-tank-mp055", + "name": "Tiger Tank 59 Ⅰ Super Tank MP055", + "release_date": "2021-07-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185346" + ], + "created_at": "2026-07-10T10:10:47.081628", + "updated_at": "2026-07-10T10:10:47.081628", + "url": "/v1/games/tiger-tank-59-super-tank-mp055" +} diff --git a/site/public/v1/games/tiger-tank-59-super-tank-mp056/index.json b/site/public/v1/games/tiger-tank-59-super-tank-mp056/index.json new file mode 100644 index 000000000000..87a944368a23 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-super-tank-mp056/index.json @@ -0,0 +1,31 @@ +{ + "id": 156436, + "slug": "tiger-tank-59-super-tank-mp056", + "name": "Tiger Tank 59 Ⅰ Super Tank MP056", + "release_date": "2021-07-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185349" + ], + "created_at": "2026-07-10T10:10:47.081628", + "updated_at": "2026-07-10T10:10:47.081628", + "url": "/v1/games/tiger-tank-59-super-tank-mp056" +} diff --git a/site/public/v1/games/tiger-tank-59-super-tank-mp057/index.json b/site/public/v1/games/tiger-tank-59-super-tank-mp057/index.json new file mode 100644 index 000000000000..505111742b03 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-super-tank-mp057/index.json @@ -0,0 +1,31 @@ +{ + "id": 156437, + "slug": "tiger-tank-59-super-tank-mp057", + "name": "Tiger Tank 59 Ⅰ Super Tank MP057", + "release_date": "2021-07-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185350" + ], + "created_at": "2026-07-10T10:10:47.081628", + "updated_at": "2026-07-10T10:10:47.081628", + "url": "/v1/games/tiger-tank-59-super-tank-mp057" +} diff --git a/site/public/v1/games/tiger-tank-59-super-tank-mp058/index.json b/site/public/v1/games/tiger-tank-59-super-tank-mp058/index.json new file mode 100644 index 000000000000..8745e3091b5b --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-super-tank-mp058/index.json @@ -0,0 +1,31 @@ +{ + "id": 156438, + "slug": "tiger-tank-59-super-tank-mp058", + "name": "Tiger Tank 59 Ⅰ Super Tank MP058", + "release_date": "2021-07-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185352" + ], + "created_at": "2026-07-10T10:10:47.081628", + "updated_at": "2026-07-10T10:10:47.081628", + "url": "/v1/games/tiger-tank-59-super-tank-mp058" +} diff --git a/site/public/v1/games/tiger-tank-59-super-tank-mp059/index.json b/site/public/v1/games/tiger-tank-59-super-tank-mp059/index.json new file mode 100644 index 000000000000..711e0ae871a5 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-super-tank-mp059/index.json @@ -0,0 +1,31 @@ +{ + "id": 156439, + "slug": "tiger-tank-59-super-tank-mp059", + "name": "Tiger Tank 59 Ⅰ Super Tank MP059", + "release_date": "2021-07-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185353" + ], + "created_at": "2026-07-10T10:10:47.082700", + "updated_at": "2026-07-10T10:10:47.082700", + "url": "/v1/games/tiger-tank-59-super-tank-mp059" +} diff --git a/site/public/v1/games/tiger-tank-59-super-tank-mp060/index.json b/site/public/v1/games/tiger-tank-59-super-tank-mp060/index.json new file mode 100644 index 000000000000..359367b535cc --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-super-tank-mp060/index.json @@ -0,0 +1,31 @@ +{ + "id": 156440, + "slug": "tiger-tank-59-super-tank-mp060", + "name": "Tiger Tank 59 Ⅰ Super Tank MP060", + "release_date": "2021-07-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185354" + ], + "created_at": "2026-07-10T10:10:47.082700", + "updated_at": "2026-07-10T10:10:47.082700", + "url": "/v1/games/tiger-tank-59-super-tank-mp060" +} diff --git a/site/public/v1/games/tiger-tank-59-super-tank-mp061/index.json b/site/public/v1/games/tiger-tank-59-super-tank-mp061/index.json new file mode 100644 index 000000000000..19549d30857b --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-super-tank-mp061/index.json @@ -0,0 +1,31 @@ +{ + "id": 156441, + "slug": "tiger-tank-59-super-tank-mp061", + "name": "Tiger Tank 59 Ⅰ Super Tank MP061", + "release_date": "2021-07-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185355" + ], + "created_at": "2026-07-10T10:10:47.082700", + "updated_at": "2026-07-10T10:10:47.082700", + "url": "/v1/games/tiger-tank-59-super-tank-mp061" +} diff --git a/site/public/v1/games/tiger-tank-59-super-tank-mp062/index.json b/site/public/v1/games/tiger-tank-59-super-tank-mp062/index.json new file mode 100644 index 000000000000..1b0bd87e66f3 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-super-tank-mp062/index.json @@ -0,0 +1,31 @@ +{ + "id": 156442, + "slug": "tiger-tank-59-super-tank-mp062", + "name": "Tiger Tank 59 Ⅰ Super Tank MP062", + "release_date": "2021-07-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185357" + ], + "created_at": "2026-07-10T10:10:47.082700", + "updated_at": "2026-07-10T10:10:47.082700", + "url": "/v1/games/tiger-tank-59-super-tank-mp062" +} diff --git a/site/public/v1/games/tiger-tank-59-super-tank-mp063/index.json b/site/public/v1/games/tiger-tank-59-super-tank-mp063/index.json new file mode 100644 index 000000000000..bb0245f9245c --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-super-tank-mp063/index.json @@ -0,0 +1,31 @@ +{ + "id": 156443, + "slug": "tiger-tank-59-super-tank-mp063", + "name": "Tiger Tank 59 Ⅰ Super Tank MP063", + "release_date": "2021-07-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185358" + ], + "created_at": "2026-07-10T10:10:47.082700", + "updated_at": "2026-07-10T10:10:47.082700", + "url": "/v1/games/tiger-tank-59-super-tank-mp063" +} diff --git a/site/public/v1/games/tiger-tank-59-super-tank-mp064/index.json b/site/public/v1/games/tiger-tank-59-super-tank-mp064/index.json new file mode 100644 index 000000000000..9ff0765fe809 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-super-tank-mp064/index.json @@ -0,0 +1,31 @@ +{ + "id": 156444, + "slug": "tiger-tank-59-super-tank-mp064", + "name": "Tiger Tank 59 Ⅰ Super Tank MP064", + "release_date": "2021-07-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185360" + ], + "created_at": "2026-07-10T10:10:47.083733", + "updated_at": "2026-07-10T10:10:47.083733", + "url": "/v1/games/tiger-tank-59-super-tank-mp064" +} diff --git a/site/public/v1/games/tiger-tank-59-super-tank-mp065/index.json b/site/public/v1/games/tiger-tank-59-super-tank-mp065/index.json new file mode 100644 index 000000000000..e0b70455f654 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-super-tank-mp065/index.json @@ -0,0 +1,31 @@ +{ + "id": 156445, + "slug": "tiger-tank-59-super-tank-mp065", + "name": "Tiger Tank 59 Ⅰ Super Tank MP065", + "release_date": "2021-07-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185362" + ], + "created_at": "2026-07-10T10:10:47.083733", + "updated_at": "2026-07-10T10:10:47.083733", + "url": "/v1/games/tiger-tank-59-super-tank-mp065" +} diff --git a/site/public/v1/games/tiger-tank-59-super-tank-mp066/index.json b/site/public/v1/games/tiger-tank-59-super-tank-mp066/index.json new file mode 100644 index 000000000000..9d115d0cf1e2 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-super-tank-mp066/index.json @@ -0,0 +1,31 @@ +{ + "id": 156446, + "slug": "tiger-tank-59-super-tank-mp066", + "name": "Tiger Tank 59 Ⅰ Super Tank MP066", + "release_date": "2021-07-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185363" + ], + "created_at": "2026-07-10T10:10:47.083733", + "updated_at": "2026-07-10T10:10:47.083733", + "url": "/v1/games/tiger-tank-59-super-tank-mp066" +} diff --git a/site/public/v1/games/tiger-tank-59-super-tank-mp067/index.json b/site/public/v1/games/tiger-tank-59-super-tank-mp067/index.json new file mode 100644 index 000000000000..de72f810ea8e --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-super-tank-mp067/index.json @@ -0,0 +1,31 @@ +{ + "id": 156447, + "slug": "tiger-tank-59-super-tank-mp067", + "name": "Tiger Tank 59 Ⅰ Super Tank MP067", + "release_date": "2021-07-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185366" + ], + "created_at": "2026-07-10T10:10:47.083733", + "updated_at": "2026-07-10T10:10:47.083733", + "url": "/v1/games/tiger-tank-59-super-tank-mp067" +} diff --git a/site/public/v1/games/tiger-tank-59-super-tank-mp068/index.json b/site/public/v1/games/tiger-tank-59-super-tank-mp068/index.json new file mode 100644 index 000000000000..f48f015d70c3 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-super-tank-mp068/index.json @@ -0,0 +1,31 @@ +{ + "id": 156448, + "slug": "tiger-tank-59-super-tank-mp068", + "name": "Tiger Tank 59 Ⅰ Super Tank MP068", + "release_date": "2021-07-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185369" + ], + "created_at": "2026-07-10T10:10:47.084630", + "updated_at": "2026-07-10T10:10:47.084630", + "url": "/v1/games/tiger-tank-59-super-tank-mp068" +} diff --git a/site/public/v1/games/tiger-tank-59-super-tank-mp069/index.json b/site/public/v1/games/tiger-tank-59-super-tank-mp069/index.json new file mode 100644 index 000000000000..423828b3dd26 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-super-tank-mp069/index.json @@ -0,0 +1,31 @@ +{ + "id": 156449, + "slug": "tiger-tank-59-super-tank-mp069", + "name": "Tiger Tank 59 Ⅰ Super Tank MP069", + "release_date": "2021-07-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185371" + ], + "created_at": "2026-07-10T10:10:47.084630", + "updated_at": "2026-07-10T10:10:47.084630", + "url": "/v1/games/tiger-tank-59-super-tank-mp069" +} diff --git a/site/public/v1/games/tiger-tank-59-super-tank-mp070/index.json b/site/public/v1/games/tiger-tank-59-super-tank-mp070/index.json new file mode 100644 index 000000000000..73d405fd882c --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-super-tank-mp070/index.json @@ -0,0 +1,31 @@ +{ + "id": 156450, + "slug": "tiger-tank-59-super-tank-mp070", + "name": "Tiger Tank 59 Ⅰ Super Tank MP070", + "release_date": "2021-07-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185372" + ], + "created_at": "2026-07-10T10:10:47.084630", + "updated_at": "2026-07-10T10:10:47.084630", + "url": "/v1/games/tiger-tank-59-super-tank-mp070" +} diff --git a/site/public/v1/games/tiger-tank-59-super-tank-mp071/index.json b/site/public/v1/games/tiger-tank-59-super-tank-mp071/index.json new file mode 100644 index 000000000000..1f74e93cac75 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-super-tank-mp071/index.json @@ -0,0 +1,31 @@ +{ + "id": 156451, + "slug": "tiger-tank-59-super-tank-mp071", + "name": "Tiger Tank 59 Ⅰ Super Tank MP071", + "release_date": "2021-07-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185373" + ], + "created_at": "2026-07-10T10:10:47.084630", + "updated_at": "2026-07-10T10:10:47.084630", + "url": "/v1/games/tiger-tank-59-super-tank-mp071" +} diff --git a/site/public/v1/games/tiger-tank-59-super-tank-mp072/index.json b/site/public/v1/games/tiger-tank-59-super-tank-mp072/index.json new file mode 100644 index 000000000000..ca207956348f --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-super-tank-mp072/index.json @@ -0,0 +1,31 @@ +{ + "id": 156452, + "slug": "tiger-tank-59-super-tank-mp072", + "name": "Tiger Tank 59 Ⅰ Super Tank MP072", + "release_date": "2021-07-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185375" + ], + "created_at": "2026-07-10T10:10:47.084630", + "updated_at": "2026-07-10T10:10:47.084630", + "url": "/v1/games/tiger-tank-59-super-tank-mp072" +} diff --git a/site/public/v1/games/tiger-tank-59-super-tank-mp073/index.json b/site/public/v1/games/tiger-tank-59-super-tank-mp073/index.json new file mode 100644 index 000000000000..2c6c4032f5de --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-super-tank-mp073/index.json @@ -0,0 +1,31 @@ +{ + "id": 156453, + "slug": "tiger-tank-59-super-tank-mp073", + "name": "Tiger Tank 59 Ⅰ Super Tank MP073", + "release_date": "2021-07-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185376" + ], + "created_at": "2026-07-10T10:10:47.085713", + "updated_at": "2026-07-10T10:10:47.085713", + "url": "/v1/games/tiger-tank-59-super-tank-mp073" +} diff --git a/site/public/v1/games/tiger-tank-59-super-tank-mp074/index.json b/site/public/v1/games/tiger-tank-59-super-tank-mp074/index.json new file mode 100644 index 000000000000..8c45e02c0b93 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-super-tank-mp074/index.json @@ -0,0 +1,31 @@ +{ + "id": 156454, + "slug": "tiger-tank-59-super-tank-mp074", + "name": "Tiger Tank 59 Ⅰ Super Tank MP074", + "release_date": "2021-07-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185377" + ], + "created_at": "2026-07-10T10:10:47.085713", + "updated_at": "2026-07-10T10:10:47.085713", + "url": "/v1/games/tiger-tank-59-super-tank-mp074" +} diff --git a/site/public/v1/games/tiger-tank-59-super-tank-mp075/index.json b/site/public/v1/games/tiger-tank-59-super-tank-mp075/index.json new file mode 100644 index 000000000000..e3ad7afb1488 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-super-tank-mp075/index.json @@ -0,0 +1,31 @@ +{ + "id": 156455, + "slug": "tiger-tank-59-super-tank-mp075", + "name": "Tiger Tank 59 Ⅰ Super Tank MP075", + "release_date": "2021-07-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185378" + ], + "created_at": "2026-07-10T10:10:47.085713", + "updated_at": "2026-07-10T10:10:47.085713", + "url": "/v1/games/tiger-tank-59-super-tank-mp075" +} diff --git a/site/public/v1/games/tiger-tank-59-super-tank-mp076/index.json b/site/public/v1/games/tiger-tank-59-super-tank-mp076/index.json new file mode 100644 index 000000000000..573c00b6b2c8 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-super-tank-mp076/index.json @@ -0,0 +1,31 @@ +{ + "id": 156456, + "slug": "tiger-tank-59-super-tank-mp076", + "name": "Tiger Tank 59 Ⅰ Super Tank MP076", + "release_date": "2021-07-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185380" + ], + "created_at": "2026-07-10T10:10:47.085713", + "updated_at": "2026-07-10T10:10:47.085713", + "url": "/v1/games/tiger-tank-59-super-tank-mp076" +} diff --git a/site/public/v1/games/tiger-tank-59-super-tank-mp077/index.json b/site/public/v1/games/tiger-tank-59-super-tank-mp077/index.json new file mode 100644 index 000000000000..07817a107434 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-super-tank-mp077/index.json @@ -0,0 +1,31 @@ +{ + "id": 156457, + "slug": "tiger-tank-59-super-tank-mp077", + "name": "Tiger Tank 59 Ⅰ Super Tank MP077", + "release_date": "2021-07-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185383" + ], + "created_at": "2026-07-10T10:10:47.086674", + "updated_at": "2026-07-10T10:10:47.086674", + "url": "/v1/games/tiger-tank-59-super-tank-mp077" +} diff --git a/site/public/v1/games/tiger-tank-59-super-tank-mp078/index.json b/site/public/v1/games/tiger-tank-59-super-tank-mp078/index.json new file mode 100644 index 000000000000..a0c799d47c5a --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-super-tank-mp078/index.json @@ -0,0 +1,31 @@ +{ + "id": 156458, + "slug": "tiger-tank-59-super-tank-mp078", + "name": "Tiger Tank 59 Ⅰ Super Tank MP078", + "release_date": "2021-07-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185385" + ], + "created_at": "2026-07-10T10:10:47.086674", + "updated_at": "2026-07-10T10:10:47.086674", + "url": "/v1/games/tiger-tank-59-super-tank-mp078" +} diff --git a/site/public/v1/games/tiger-tank-59-super-tank-mp079/index.json b/site/public/v1/games/tiger-tank-59-super-tank-mp079/index.json new file mode 100644 index 000000000000..e435fc1712b0 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-super-tank-mp079/index.json @@ -0,0 +1,31 @@ +{ + "id": 156459, + "slug": "tiger-tank-59-super-tank-mp079", + "name": "Tiger Tank 59 Ⅰ Super Tank MP079", + "release_date": "2021-07-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185390" + ], + "created_at": "2026-07-10T10:10:47.086674", + "updated_at": "2026-07-10T10:10:47.086674", + "url": "/v1/games/tiger-tank-59-super-tank-mp079" +} diff --git a/site/public/v1/games/tiger-tank-59-super-tank-mp080/index.json b/site/public/v1/games/tiger-tank-59-super-tank-mp080/index.json new file mode 100644 index 000000000000..2d4981dbd0fb --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-super-tank-mp080/index.json @@ -0,0 +1,31 @@ +{ + "id": 156460, + "slug": "tiger-tank-59-super-tank-mp080", + "name": "Tiger Tank 59 Ⅰ Super Tank MP080", + "release_date": "2021-07-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185396" + ], + "created_at": "2026-07-10T10:10:47.086674", + "updated_at": "2026-07-10T10:10:47.086674", + "url": "/v1/games/tiger-tank-59-super-tank-mp080" +} diff --git a/site/public/v1/games/tiger-tank-59-super-tank-mp081/index.json b/site/public/v1/games/tiger-tank-59-super-tank-mp081/index.json new file mode 100644 index 000000000000..ecb1ebf04587 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-super-tank-mp081/index.json @@ -0,0 +1,31 @@ +{ + "id": 156461, + "slug": "tiger-tank-59-super-tank-mp081", + "name": "Tiger Tank 59 Ⅰ Super Tank MP081", + "release_date": "2021-07-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185397" + ], + "created_at": "2026-07-10T10:10:47.087672", + "updated_at": "2026-07-10T10:10:47.087672", + "url": "/v1/games/tiger-tank-59-super-tank-mp081" +} diff --git a/site/public/v1/games/tiger-tank-59-super-tank-mp082/index.json b/site/public/v1/games/tiger-tank-59-super-tank-mp082/index.json new file mode 100644 index 000000000000..623e8fed72ce --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-super-tank-mp082/index.json @@ -0,0 +1,31 @@ +{ + "id": 156462, + "slug": "tiger-tank-59-super-tank-mp082", + "name": "Tiger Tank 59 Ⅰ Super Tank MP082", + "release_date": "2021-07-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185398" + ], + "created_at": "2026-07-10T10:10:47.087672", + "updated_at": "2026-07-10T10:10:47.087672", + "url": "/v1/games/tiger-tank-59-super-tank-mp082" +} diff --git a/site/public/v1/games/tiger-tank-59-super-tank-mp083/index.json b/site/public/v1/games/tiger-tank-59-super-tank-mp083/index.json new file mode 100644 index 000000000000..29285fb84e37 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-super-tank-mp083/index.json @@ -0,0 +1,31 @@ +{ + "id": 156463, + "slug": "tiger-tank-59-super-tank-mp083", + "name": "Tiger Tank 59 Ⅰ Super Tank MP083", + "release_date": "2021-07-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185400" + ], + "created_at": "2026-07-10T10:10:47.087672", + "updated_at": "2026-07-10T10:10:47.087672", + "url": "/v1/games/tiger-tank-59-super-tank-mp083" +} diff --git a/site/public/v1/games/tiger-tank-59-super-tank-mp084/index.json b/site/public/v1/games/tiger-tank-59-super-tank-mp084/index.json new file mode 100644 index 000000000000..61178a3fe9ce --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-super-tank-mp084/index.json @@ -0,0 +1,31 @@ +{ + "id": 156464, + "slug": "tiger-tank-59-super-tank-mp084", + "name": "Tiger Tank 59 Ⅰ Super Tank MP084", + "release_date": "2021-07-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185402" + ], + "created_at": "2026-07-10T10:10:47.087672", + "updated_at": "2026-07-10T10:10:47.087672", + "url": "/v1/games/tiger-tank-59-super-tank-mp084" +} diff --git a/site/public/v1/games/tiger-tank-59-super-tank-mp085/index.json b/site/public/v1/games/tiger-tank-59-super-tank-mp085/index.json new file mode 100644 index 000000000000..c4996528b4ba --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-super-tank-mp085/index.json @@ -0,0 +1,31 @@ +{ + "id": 156465, + "slug": "tiger-tank-59-super-tank-mp085", + "name": "Tiger Tank 59 Ⅰ Super Tank MP085", + "release_date": "2021-07-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185403" + ], + "created_at": "2026-07-10T10:10:47.087672", + "updated_at": "2026-07-10T10:10:47.087672", + "url": "/v1/games/tiger-tank-59-super-tank-mp085" +} diff --git a/site/public/v1/games/tiger-tank-59-super-tank-mp086/index.json b/site/public/v1/games/tiger-tank-59-super-tank-mp086/index.json new file mode 100644 index 000000000000..28182a29a17d --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-super-tank-mp086/index.json @@ -0,0 +1,31 @@ +{ + "id": 156466, + "slug": "tiger-tank-59-super-tank-mp086", + "name": "Tiger Tank 59 Ⅰ Super Tank MP086", + "release_date": "2021-07-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185404" + ], + "created_at": "2026-07-10T10:10:47.087672", + "updated_at": "2026-07-10T10:10:47.087672", + "url": "/v1/games/tiger-tank-59-super-tank-mp086" +} diff --git a/site/public/v1/games/tiger-tank-59-super-tank-mp087/index.json b/site/public/v1/games/tiger-tank-59-super-tank-mp087/index.json new file mode 100644 index 000000000000..e41a0ee01b1e --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-super-tank-mp087/index.json @@ -0,0 +1,31 @@ +{ + "id": 156467, + "slug": "tiger-tank-59-super-tank-mp087", + "name": "Tiger Tank 59 Ⅰ Super Tank MP087", + "release_date": "2021-07-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185405" + ], + "created_at": "2026-07-10T10:10:47.088703", + "updated_at": "2026-07-10T10:10:47.088703", + "url": "/v1/games/tiger-tank-59-super-tank-mp087" +} diff --git a/site/public/v1/games/tiger-tank-59-super-tank-mp088/index.json b/site/public/v1/games/tiger-tank-59-super-tank-mp088/index.json new file mode 100644 index 000000000000..adc175ecfcda --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-super-tank-mp088/index.json @@ -0,0 +1,31 @@ +{ + "id": 156468, + "slug": "tiger-tank-59-super-tank-mp088", + "name": "Tiger Tank 59 Ⅰ Super Tank MP088", + "release_date": "2021-07-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185409" + ], + "created_at": "2026-07-10T10:10:47.088703", + "updated_at": "2026-07-10T10:10:47.088703", + "url": "/v1/games/tiger-tank-59-super-tank-mp088" +} diff --git a/site/public/v1/games/tiger-tank-59-super-tank-mp089/index.json b/site/public/v1/games/tiger-tank-59-super-tank-mp089/index.json new file mode 100644 index 000000000000..ba6d8c359e07 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-super-tank-mp089/index.json @@ -0,0 +1,31 @@ +{ + "id": 156469, + "slug": "tiger-tank-59-super-tank-mp089", + "name": "Tiger Tank 59 Ⅰ Super Tank MP089", + "release_date": "2021-07-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185412" + ], + "created_at": "2026-07-10T10:10:47.088703", + "updated_at": "2026-07-10T10:10:47.088703", + "url": "/v1/games/tiger-tank-59-super-tank-mp089" +} diff --git a/site/public/v1/games/tiger-tank-59-super-tank-mp090/index.json b/site/public/v1/games/tiger-tank-59-super-tank-mp090/index.json new file mode 100644 index 000000000000..23f5ae280522 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-super-tank-mp090/index.json @@ -0,0 +1,31 @@ +{ + "id": 156470, + "slug": "tiger-tank-59-super-tank-mp090", + "name": "Tiger Tank 59 Ⅰ Super Tank MP090", + "release_date": "2021-07-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185426" + ], + "created_at": "2026-07-10T10:10:47.088703", + "updated_at": "2026-07-10T10:10:47.088703", + "url": "/v1/games/tiger-tank-59-super-tank-mp090" +} diff --git a/site/public/v1/games/tiger-tank-59-super-tank-mp091/index.json b/site/public/v1/games/tiger-tank-59-super-tank-mp091/index.json new file mode 100644 index 000000000000..5ae2772ad026 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-super-tank-mp091/index.json @@ -0,0 +1,31 @@ +{ + "id": 156471, + "slug": "tiger-tank-59-super-tank-mp091", + "name": "Tiger Tank 59 Ⅰ Super Tank MP091", + "release_date": "2021-07-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185436" + ], + "created_at": "2026-07-10T10:10:47.089673", + "updated_at": "2026-07-10T10:10:47.089673", + "url": "/v1/games/tiger-tank-59-super-tank-mp091" +} diff --git a/site/public/v1/games/tiger-tank-59-super-tank-mp092/index.json b/site/public/v1/games/tiger-tank-59-super-tank-mp092/index.json new file mode 100644 index 000000000000..91e13d6f8810 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-super-tank-mp092/index.json @@ -0,0 +1,31 @@ +{ + "id": 156472, + "slug": "tiger-tank-59-super-tank-mp092", + "name": "Tiger Tank 59 Ⅰ Super Tank MP092", + "release_date": "2021-07-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185438" + ], + "created_at": "2026-07-10T10:10:47.089673", + "updated_at": "2026-07-10T10:10:47.089673", + "url": "/v1/games/tiger-tank-59-super-tank-mp092" +} diff --git a/site/public/v1/games/tiger-tank-59-super-tank-mp093/index.json b/site/public/v1/games/tiger-tank-59-super-tank-mp093/index.json new file mode 100644 index 000000000000..77dca90d1ff1 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-super-tank-mp093/index.json @@ -0,0 +1,31 @@ +{ + "id": 156473, + "slug": "tiger-tank-59-super-tank-mp093", + "name": "Tiger Tank 59 Ⅰ Super Tank MP093", + "release_date": "2021-07-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185439" + ], + "created_at": "2026-07-10T10:10:47.089673", + "updated_at": "2026-07-10T10:10:47.089673", + "url": "/v1/games/tiger-tank-59-super-tank-mp093" +} diff --git a/site/public/v1/games/tiger-tank-59-super-tank-mp094/index.json b/site/public/v1/games/tiger-tank-59-super-tank-mp094/index.json new file mode 100644 index 000000000000..6f9fb4631288 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-super-tank-mp094/index.json @@ -0,0 +1,31 @@ +{ + "id": 156474, + "slug": "tiger-tank-59-super-tank-mp094", + "name": "Tiger Tank 59 Ⅰ Super Tank MP094", + "release_date": "2021-07-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185441" + ], + "created_at": "2026-07-10T10:10:47.089673", + "updated_at": "2026-07-10T10:10:47.089673", + "url": "/v1/games/tiger-tank-59-super-tank-mp094" +} diff --git a/site/public/v1/games/tiger-tank-59-super-tank-mp095/index.json b/site/public/v1/games/tiger-tank-59-super-tank-mp095/index.json new file mode 100644 index 000000000000..01009d3cbadc --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-super-tank-mp095/index.json @@ -0,0 +1,31 @@ +{ + "id": 156475, + "slug": "tiger-tank-59-super-tank-mp095", + "name": "Tiger Tank 59 Ⅰ Super Tank MP095", + "release_date": "2021-07-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185455" + ], + "created_at": "2026-07-10T10:10:47.090672", + "updated_at": "2026-07-10T10:10:47.090672", + "url": "/v1/games/tiger-tank-59-super-tank-mp095" +} diff --git a/site/public/v1/games/tiger-tank-59-super-tank-mp096/index.json b/site/public/v1/games/tiger-tank-59-super-tank-mp096/index.json new file mode 100644 index 000000000000..7015ec8e779b --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-super-tank-mp096/index.json @@ -0,0 +1,31 @@ +{ + "id": 156476, + "slug": "tiger-tank-59-super-tank-mp096", + "name": "Tiger Tank 59 Ⅰ Super Tank MP096", + "release_date": "2021-07-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185468" + ], + "created_at": "2026-07-10T10:10:47.090672", + "updated_at": "2026-07-10T10:10:47.090672", + "url": "/v1/games/tiger-tank-59-super-tank-mp096" +} diff --git a/site/public/v1/games/tiger-tank-59-super-tank-mp097/index.json b/site/public/v1/games/tiger-tank-59-super-tank-mp097/index.json new file mode 100644 index 000000000000..e459a922a174 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-super-tank-mp097/index.json @@ -0,0 +1,31 @@ +{ + "id": 156477, + "slug": "tiger-tank-59-super-tank-mp097", + "name": "Tiger Tank 59 Ⅰ Super Tank MP097", + "release_date": "2021-07-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185469" + ], + "created_at": "2026-07-10T10:10:47.090672", + "updated_at": "2026-07-10T10:10:47.090672", + "url": "/v1/games/tiger-tank-59-super-tank-mp097" +} diff --git a/site/public/v1/games/tiger-tank-59-super-tank-mp098/index.json b/site/public/v1/games/tiger-tank-59-super-tank-mp098/index.json new file mode 100644 index 000000000000..1cc4108c56b5 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-super-tank-mp098/index.json @@ -0,0 +1,31 @@ +{ + "id": 156478, + "slug": "tiger-tank-59-super-tank-mp098", + "name": "Tiger Tank 59 Ⅰ Super Tank MP098", + "release_date": "2021-07-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185470" + ], + "created_at": "2026-07-10T10:10:47.090672", + "updated_at": "2026-07-10T10:10:47.090672", + "url": "/v1/games/tiger-tank-59-super-tank-mp098" +} diff --git a/site/public/v1/games/tiger-tank-59-super-tank-mp099/index.json b/site/public/v1/games/tiger-tank-59-super-tank-mp099/index.json new file mode 100644 index 000000000000..ff7ca0d8d703 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-super-tank-mp099/index.json @@ -0,0 +1,31 @@ +{ + "id": 156479, + "slug": "tiger-tank-59-super-tank-mp099", + "name": "Tiger Tank 59 Ⅰ Super Tank MP099", + "release_date": "2021-07-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185472" + ], + "created_at": "2026-07-10T10:10:47.090672", + "updated_at": "2026-07-10T10:10:47.090672", + "url": "/v1/games/tiger-tank-59-super-tank-mp099" +} diff --git a/site/public/v1/games/tiger-tank-59-super-tank-mp100/index.json b/site/public/v1/games/tiger-tank-59-super-tank-mp100/index.json new file mode 100644 index 000000000000..61ea993f4ec1 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-super-tank-mp100/index.json @@ -0,0 +1,31 @@ +{ + "id": 156480, + "slug": "tiger-tank-59-super-tank-mp100", + "name": "Tiger Tank 59 Ⅰ Super Tank MP100", + "release_date": "2021-07-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185474" + ], + "created_at": "2026-07-10T10:10:47.090672", + "updated_at": "2026-07-10T10:10:47.090672", + "url": "/v1/games/tiger-tank-59-super-tank-mp100" +} diff --git a/site/public/v1/games/tiger-tank-59-volcano-mp001/index.json b/site/public/v1/games/tiger-tank-59-volcano-mp001/index.json new file mode 100644 index 000000000000..48e97f8bb268 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-volcano-mp001/index.json @@ -0,0 +1,31 @@ +{ + "id": 156482, + "slug": "tiger-tank-59-volcano-mp001", + "name": "Tiger Tank 59 Ⅰ Volcano MP001", + "release_date": "2021-07-22", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185475" + ], + "created_at": "2026-07-10T10:10:47.091727", + "updated_at": "2026-07-10T10:10:47.091727", + "url": "/v1/games/tiger-tank-59-volcano-mp001" +} diff --git a/site/public/v1/games/tiger-tank-59-volcano-mp002/index.json b/site/public/v1/games/tiger-tank-59-volcano-mp002/index.json new file mode 100644 index 000000000000..cee55703afca --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-volcano-mp002/index.json @@ -0,0 +1,31 @@ +{ + "id": 156483, + "slug": "tiger-tank-59-volcano-mp002", + "name": "Tiger Tank 59 Ⅰ Volcano MP002", + "release_date": "2021-07-22", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185478" + ], + "created_at": "2026-07-10T10:10:47.091727", + "updated_at": "2026-07-10T10:10:47.091727", + "url": "/v1/games/tiger-tank-59-volcano-mp002" +} diff --git a/site/public/v1/games/tiger-tank-59-volcano-mp003/index.json b/site/public/v1/games/tiger-tank-59-volcano-mp003/index.json new file mode 100644 index 000000000000..bc7ffd84887f --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-volcano-mp003/index.json @@ -0,0 +1,31 @@ +{ + "id": 156484, + "slug": "tiger-tank-59-volcano-mp003", + "name": "Tiger Tank 59 Ⅰ Volcano MP003", + "release_date": "2021-07-22", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185479" + ], + "created_at": "2026-07-10T10:10:47.091727", + "updated_at": "2026-07-10T10:10:47.091727", + "url": "/v1/games/tiger-tank-59-volcano-mp003" +} diff --git a/site/public/v1/games/tiger-tank-59-volcano-mp004/index.json b/site/public/v1/games/tiger-tank-59-volcano-mp004/index.json new file mode 100644 index 000000000000..d31e73ba6d8d --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-volcano-mp004/index.json @@ -0,0 +1,31 @@ +{ + "id": 156485, + "slug": "tiger-tank-59-volcano-mp004", + "name": "Tiger Tank 59 Ⅰ Volcano MP004", + "release_date": "2021-07-22", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185482" + ], + "created_at": "2026-07-10T10:10:47.092688", + "updated_at": "2026-07-10T10:10:47.092688", + "url": "/v1/games/tiger-tank-59-volcano-mp004" +} diff --git a/site/public/v1/games/tiger-tank-59-volcano-mp005/index.json b/site/public/v1/games/tiger-tank-59-volcano-mp005/index.json new file mode 100644 index 000000000000..a078fc3141a1 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-volcano-mp005/index.json @@ -0,0 +1,31 @@ +{ + "id": 156486, + "slug": "tiger-tank-59-volcano-mp005", + "name": "Tiger Tank 59 Ⅰ Volcano MP005", + "release_date": "2021-07-22", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185483" + ], + "created_at": "2026-07-10T10:10:47.092688", + "updated_at": "2026-07-10T10:10:47.092688", + "url": "/v1/games/tiger-tank-59-volcano-mp005" +} diff --git a/site/public/v1/games/tiger-tank-59-volcano-mp006/index.json b/site/public/v1/games/tiger-tank-59-volcano-mp006/index.json new file mode 100644 index 000000000000..c03e0f6d6b74 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-volcano-mp006/index.json @@ -0,0 +1,31 @@ +{ + "id": 156487, + "slug": "tiger-tank-59-volcano-mp006", + "name": "Tiger Tank 59 Ⅰ Volcano MP006", + "release_date": "2021-07-22", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185484" + ], + "created_at": "2026-07-10T10:10:47.092688", + "updated_at": "2026-07-10T10:10:47.092688", + "url": "/v1/games/tiger-tank-59-volcano-mp006" +} diff --git a/site/public/v1/games/tiger-tank-59-volcano-mp007/index.json b/site/public/v1/games/tiger-tank-59-volcano-mp007/index.json new file mode 100644 index 000000000000..2c93d7868b0e --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-volcano-mp007/index.json @@ -0,0 +1,31 @@ +{ + "id": 156488, + "slug": "tiger-tank-59-volcano-mp007", + "name": "Tiger Tank 59 Ⅰ Volcano MP007", + "release_date": "2021-07-22", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185485" + ], + "created_at": "2026-07-10T10:10:47.092688", + "updated_at": "2026-07-10T10:10:47.092688", + "url": "/v1/games/tiger-tank-59-volcano-mp007" +} diff --git a/site/public/v1/games/tiger-tank-59-volcano-mp008/index.json b/site/public/v1/games/tiger-tank-59-volcano-mp008/index.json new file mode 100644 index 000000000000..2aa297201086 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-volcano-mp008/index.json @@ -0,0 +1,31 @@ +{ + "id": 156489, + "slug": "tiger-tank-59-volcano-mp008", + "name": "Tiger Tank 59 Ⅰ Volcano MP008", + "release_date": "2021-07-22", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185486" + ], + "created_at": "2026-07-10T10:10:47.093626", + "updated_at": "2026-07-10T10:10:47.093626", + "url": "/v1/games/tiger-tank-59-volcano-mp008" +} diff --git a/site/public/v1/games/tiger-tank-59-volcano-mp009/index.json b/site/public/v1/games/tiger-tank-59-volcano-mp009/index.json new file mode 100644 index 000000000000..d04a5b7f0716 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-volcano-mp009/index.json @@ -0,0 +1,31 @@ +{ + "id": 156490, + "slug": "tiger-tank-59-volcano-mp009", + "name": "Tiger Tank 59 Ⅰ Volcano MP009", + "release_date": "2021-07-22", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185487" + ], + "created_at": "2026-07-10T10:10:47.093626", + "updated_at": "2026-07-10T10:10:47.093626", + "url": "/v1/games/tiger-tank-59-volcano-mp009" +} diff --git a/site/public/v1/games/tiger-tank-59-volcano-mp010/index.json b/site/public/v1/games/tiger-tank-59-volcano-mp010/index.json new file mode 100644 index 000000000000..0b1aa1341359 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-volcano-mp010/index.json @@ -0,0 +1,31 @@ +{ + "id": 156491, + "slug": "tiger-tank-59-volcano-mp010", + "name": "Tiger Tank 59 Ⅰ Volcano MP010", + "release_date": "2021-07-22", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185488" + ], + "created_at": "2026-07-10T10:10:47.093626", + "updated_at": "2026-07-10T10:10:47.093626", + "url": "/v1/games/tiger-tank-59-volcano-mp010" +} diff --git a/site/public/v1/games/tiger-tank-59-volcano-mp011/index.json b/site/public/v1/games/tiger-tank-59-volcano-mp011/index.json new file mode 100644 index 000000000000..863a4dd3c317 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-volcano-mp011/index.json @@ -0,0 +1,31 @@ +{ + "id": 156492, + "slug": "tiger-tank-59-volcano-mp011", + "name": "Tiger Tank 59 Ⅰ Volcano MP011", + "release_date": "2021-07-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185490" + ], + "created_at": "2026-07-10T10:10:47.093626", + "updated_at": "2026-07-10T10:10:47.093626", + "url": "/v1/games/tiger-tank-59-volcano-mp011" +} diff --git a/site/public/v1/games/tiger-tank-59-volcano-mp012/index.json b/site/public/v1/games/tiger-tank-59-volcano-mp012/index.json new file mode 100644 index 000000000000..fc30674b5fd7 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-volcano-mp012/index.json @@ -0,0 +1,31 @@ +{ + "id": 156493, + "slug": "tiger-tank-59-volcano-mp012", + "name": "Tiger Tank 59 Ⅰ Volcano MP012", + "release_date": "2021-07-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185491" + ], + "created_at": "2026-07-10T10:10:47.094624", + "updated_at": "2026-07-10T10:10:47.094624", + "url": "/v1/games/tiger-tank-59-volcano-mp012" +} diff --git a/site/public/v1/games/tiger-tank-59-volcano-mp013/index.json b/site/public/v1/games/tiger-tank-59-volcano-mp013/index.json new file mode 100644 index 000000000000..75347ede67ce --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-volcano-mp013/index.json @@ -0,0 +1,31 @@ +{ + "id": 156494, + "slug": "tiger-tank-59-volcano-mp013", + "name": "Tiger Tank 59 Ⅰ Volcano MP013", + "release_date": "2021-07-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185492" + ], + "created_at": "2026-07-10T10:10:47.094624", + "updated_at": "2026-07-10T10:10:47.094624", + "url": "/v1/games/tiger-tank-59-volcano-mp013" +} diff --git a/site/public/v1/games/tiger-tank-59-volcano-mp014/index.json b/site/public/v1/games/tiger-tank-59-volcano-mp014/index.json new file mode 100644 index 000000000000..e59726158d82 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-volcano-mp014/index.json @@ -0,0 +1,31 @@ +{ + "id": 156495, + "slug": "tiger-tank-59-volcano-mp014", + "name": "Tiger Tank 59 Ⅰ Volcano MP014", + "release_date": "2021-07-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185493" + ], + "created_at": "2026-07-10T10:10:47.094624", + "updated_at": "2026-07-10T10:10:47.094624", + "url": "/v1/games/tiger-tank-59-volcano-mp014" +} diff --git a/site/public/v1/games/tiger-tank-59-volcano-mp015/index.json b/site/public/v1/games/tiger-tank-59-volcano-mp015/index.json new file mode 100644 index 000000000000..32640340e243 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-volcano-mp015/index.json @@ -0,0 +1,31 @@ +{ + "id": 156496, + "slug": "tiger-tank-59-volcano-mp015", + "name": "Tiger Tank 59 Ⅰ Volcano MP015", + "release_date": "2021-07-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185494" + ], + "created_at": "2026-07-10T10:10:47.094624", + "updated_at": "2026-07-10T10:10:47.094624", + "url": "/v1/games/tiger-tank-59-volcano-mp015" +} diff --git a/site/public/v1/games/tiger-tank-59-volcano-mp016/index.json b/site/public/v1/games/tiger-tank-59-volcano-mp016/index.json new file mode 100644 index 000000000000..0b4cbe432479 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-volcano-mp016/index.json @@ -0,0 +1,31 @@ +{ + "id": 156497, + "slug": "tiger-tank-59-volcano-mp016", + "name": "Tiger Tank 59 Ⅰ Volcano MP016", + "release_date": "2021-07-25", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185496" + ], + "created_at": "2026-07-10T10:10:47.095626", + "updated_at": "2026-07-10T10:10:47.095626", + "url": "/v1/games/tiger-tank-59-volcano-mp016" +} diff --git a/site/public/v1/games/tiger-tank-59-volcano-mp017/index.json b/site/public/v1/games/tiger-tank-59-volcano-mp017/index.json new file mode 100644 index 000000000000..134f5f823c96 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-volcano-mp017/index.json @@ -0,0 +1,31 @@ +{ + "id": 156498, + "slug": "tiger-tank-59-volcano-mp017", + "name": "Tiger Tank 59 Ⅰ Volcano MP017", + "release_date": "2021-07-25", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185497" + ], + "created_at": "2026-07-10T10:10:47.095626", + "updated_at": "2026-07-10T10:10:47.095626", + "url": "/v1/games/tiger-tank-59-volcano-mp017" +} diff --git a/site/public/v1/games/tiger-tank-59-volcano-mp018/index.json b/site/public/v1/games/tiger-tank-59-volcano-mp018/index.json new file mode 100644 index 000000000000..ab0368a50a18 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-volcano-mp018/index.json @@ -0,0 +1,31 @@ +{ + "id": 156499, + "slug": "tiger-tank-59-volcano-mp018", + "name": "Tiger Tank 59 Ⅰ Volcano MP018", + "release_date": "2021-07-25", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185500" + ], + "created_at": "2026-07-10T10:10:47.095626", + "updated_at": "2026-07-10T10:10:47.095626", + "url": "/v1/games/tiger-tank-59-volcano-mp018" +} diff --git a/site/public/v1/games/tiger-tank-59-volcano-mp019/index.json b/site/public/v1/games/tiger-tank-59-volcano-mp019/index.json new file mode 100644 index 000000000000..aec73b703a05 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-volcano-mp019/index.json @@ -0,0 +1,31 @@ +{ + "id": 156500, + "slug": "tiger-tank-59-volcano-mp019", + "name": "Tiger Tank 59 Ⅰ Volcano MP019", + "release_date": "2021-07-25", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185502" + ], + "created_at": "2026-07-10T10:10:47.095626", + "updated_at": "2026-07-10T10:10:47.095626", + "url": "/v1/games/tiger-tank-59-volcano-mp019" +} diff --git a/site/public/v1/games/tiger-tank-59-volcano-mp020/index.json b/site/public/v1/games/tiger-tank-59-volcano-mp020/index.json new file mode 100644 index 000000000000..3754f85a874c --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-volcano-mp020/index.json @@ -0,0 +1,31 @@ +{ + "id": 156501, + "slug": "tiger-tank-59-volcano-mp020", + "name": "Tiger Tank 59 Ⅰ Volcano MP020", + "release_date": "2021-07-25", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185512" + ], + "created_at": "2026-07-10T10:10:47.095626", + "updated_at": "2026-07-10T10:10:47.095626", + "url": "/v1/games/tiger-tank-59-volcano-mp020" +} diff --git a/site/public/v1/games/tiger-tank-59-volcano-mp021/index.json b/site/public/v1/games/tiger-tank-59-volcano-mp021/index.json new file mode 100644 index 000000000000..964b59d4e12f --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-volcano-mp021/index.json @@ -0,0 +1,31 @@ +{ + "id": 156502, + "slug": "tiger-tank-59-volcano-mp021", + "name": "Tiger Tank 59 Ⅰ Volcano MP021", + "release_date": "2021-07-25", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185513" + ], + "created_at": "2026-07-10T10:10:47.095626", + "updated_at": "2026-07-10T10:10:47.095626", + "url": "/v1/games/tiger-tank-59-volcano-mp021" +} diff --git a/site/public/v1/games/tiger-tank-59-volcano-mp022/index.json b/site/public/v1/games/tiger-tank-59-volcano-mp022/index.json new file mode 100644 index 000000000000..3ea5de7903ad --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-volcano-mp022/index.json @@ -0,0 +1,31 @@ +{ + "id": 156503, + "slug": "tiger-tank-59-volcano-mp022", + "name": "Tiger Tank 59 Ⅰ Volcano MP022", + "release_date": "2021-07-25", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185514" + ], + "created_at": "2026-07-10T10:10:47.096695", + "updated_at": "2026-07-10T10:10:47.096695", + "url": "/v1/games/tiger-tank-59-volcano-mp022" +} diff --git a/site/public/v1/games/tiger-tank-59-volcano-mp023/index.json b/site/public/v1/games/tiger-tank-59-volcano-mp023/index.json new file mode 100644 index 000000000000..7931f98624c6 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-volcano-mp023/index.json @@ -0,0 +1,31 @@ +{ + "id": 156504, + "slug": "tiger-tank-59-volcano-mp023", + "name": "Tiger Tank 59 Ⅰ Volcano MP023", + "release_date": "2021-07-25", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185515" + ], + "created_at": "2026-07-10T10:10:47.096695", + "updated_at": "2026-07-10T10:10:47.096695", + "url": "/v1/games/tiger-tank-59-volcano-mp023" +} diff --git a/site/public/v1/games/tiger-tank-59-volcano-mp024/index.json b/site/public/v1/games/tiger-tank-59-volcano-mp024/index.json new file mode 100644 index 000000000000..532502d21bb7 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-volcano-mp024/index.json @@ -0,0 +1,31 @@ +{ + "id": 156505, + "slug": "tiger-tank-59-volcano-mp024", + "name": "Tiger Tank 59 Ⅰ Volcano MP024", + "release_date": "2021-07-25", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185517" + ], + "created_at": "2026-07-10T10:10:47.096695", + "updated_at": "2026-07-10T10:10:47.096695", + "url": "/v1/games/tiger-tank-59-volcano-mp024" +} diff --git a/site/public/v1/games/tiger-tank-59-volcano-mp025/index.json b/site/public/v1/games/tiger-tank-59-volcano-mp025/index.json new file mode 100644 index 000000000000..d4b351442a89 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-volcano-mp025/index.json @@ -0,0 +1,31 @@ +{ + "id": 156506, + "slug": "tiger-tank-59-volcano-mp025", + "name": "Tiger Tank 59 Ⅰ Volcano MP025", + "release_date": "2021-07-25", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185518" + ], + "created_at": "2026-07-10T10:10:47.096695", + "updated_at": "2026-07-10T10:10:47.096695", + "url": "/v1/games/tiger-tank-59-volcano-mp025" +} diff --git a/site/public/v1/games/tiger-tank-59-volcano-mp026/index.json b/site/public/v1/games/tiger-tank-59-volcano-mp026/index.json new file mode 100644 index 000000000000..d8b2b37eb14d --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-volcano-mp026/index.json @@ -0,0 +1,31 @@ +{ + "id": 156507, + "slug": "tiger-tank-59-volcano-mp026", + "name": "Tiger Tank 59 Ⅰ Volcano MP026", + "release_date": "2021-07-27", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185519" + ], + "created_at": "2026-07-10T10:10:47.097723", + "updated_at": "2026-07-10T10:10:47.097723", + "url": "/v1/games/tiger-tank-59-volcano-mp026" +} diff --git a/site/public/v1/games/tiger-tank-59-volcano-mp027/index.json b/site/public/v1/games/tiger-tank-59-volcano-mp027/index.json new file mode 100644 index 000000000000..7075d0b43cb4 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-volcano-mp027/index.json @@ -0,0 +1,31 @@ +{ + "id": 156508, + "slug": "tiger-tank-59-volcano-mp027", + "name": "Tiger Tank 59 Ⅰ Volcano MP027", + "release_date": "2021-07-27", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185522" + ], + "created_at": "2026-07-10T10:10:47.097723", + "updated_at": "2026-07-10T10:10:47.097723", + "url": "/v1/games/tiger-tank-59-volcano-mp027" +} diff --git a/site/public/v1/games/tiger-tank-59-volcano-mp028/index.json b/site/public/v1/games/tiger-tank-59-volcano-mp028/index.json new file mode 100644 index 000000000000..6063a159d2db --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-volcano-mp028/index.json @@ -0,0 +1,31 @@ +{ + "id": 156509, + "slug": "tiger-tank-59-volcano-mp028", + "name": "Tiger Tank 59 Ⅰ Volcano MP028", + "release_date": "2021-07-27", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185523" + ], + "created_at": "2026-07-10T10:10:47.097723", + "updated_at": "2026-07-10T10:10:47.097723", + "url": "/v1/games/tiger-tank-59-volcano-mp028" +} diff --git a/site/public/v1/games/tiger-tank-59-volcano-mp029/index.json b/site/public/v1/games/tiger-tank-59-volcano-mp029/index.json new file mode 100644 index 000000000000..efbe798de3b1 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-volcano-mp029/index.json @@ -0,0 +1,31 @@ +{ + "id": 156510, + "slug": "tiger-tank-59-volcano-mp029", + "name": "Tiger Tank 59 Ⅰ Volcano MP029", + "release_date": "2021-07-27", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185524" + ], + "created_at": "2026-07-10T10:10:47.097723", + "updated_at": "2026-07-10T10:10:47.097723", + "url": "/v1/games/tiger-tank-59-volcano-mp029" +} diff --git a/site/public/v1/games/tiger-tank-59-volcano-mp030/index.json b/site/public/v1/games/tiger-tank-59-volcano-mp030/index.json new file mode 100644 index 000000000000..3a338b324e8b --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-volcano-mp030/index.json @@ -0,0 +1,31 @@ +{ + "id": 156511, + "slug": "tiger-tank-59-volcano-mp030", + "name": "Tiger Tank 59 Ⅰ Volcano MP030", + "release_date": "2021-07-27", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185526" + ], + "created_at": "2026-07-10T10:10:47.097723", + "updated_at": "2026-07-10T10:10:47.097723", + "url": "/v1/games/tiger-tank-59-volcano-mp030" +} diff --git a/site/public/v1/games/tiger-tank-59-volcano-mp031/index.json b/site/public/v1/games/tiger-tank-59-volcano-mp031/index.json new file mode 100644 index 000000000000..f8ed38973672 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-volcano-mp031/index.json @@ -0,0 +1,31 @@ +{ + "id": 156512, + "slug": "tiger-tank-59-volcano-mp031", + "name": "Tiger Tank 59 Ⅰ Volcano MP031", + "release_date": "2021-07-27", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185528" + ], + "created_at": "2026-07-10T10:10:47.098694", + "updated_at": "2026-07-10T10:10:47.098694", + "url": "/v1/games/tiger-tank-59-volcano-mp031" +} diff --git a/site/public/v1/games/tiger-tank-59-volcano-mp032/index.json b/site/public/v1/games/tiger-tank-59-volcano-mp032/index.json new file mode 100644 index 000000000000..30d5c81db672 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-volcano-mp032/index.json @@ -0,0 +1,31 @@ +{ + "id": 156513, + "slug": "tiger-tank-59-volcano-mp032", + "name": "Tiger Tank 59 Ⅰ Volcano MP032", + "release_date": "2021-07-27", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185529" + ], + "created_at": "2026-07-10T10:10:47.098694", + "updated_at": "2026-07-10T10:10:47.098694", + "url": "/v1/games/tiger-tank-59-volcano-mp032" +} diff --git a/site/public/v1/games/tiger-tank-59-volcano-mp033/index.json b/site/public/v1/games/tiger-tank-59-volcano-mp033/index.json new file mode 100644 index 000000000000..356b994ad7a6 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-volcano-mp033/index.json @@ -0,0 +1,31 @@ +{ + "id": 156514, + "slug": "tiger-tank-59-volcano-mp033", + "name": "Tiger Tank 59 Ⅰ Volcano MP033", + "release_date": "2021-07-27", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185530" + ], + "created_at": "2026-07-10T10:10:47.098694", + "updated_at": "2026-07-10T10:10:47.098694", + "url": "/v1/games/tiger-tank-59-volcano-mp033" +} diff --git a/site/public/v1/games/tiger-tank-59-volcano-mp034/index.json b/site/public/v1/games/tiger-tank-59-volcano-mp034/index.json new file mode 100644 index 000000000000..0edd8c1abc93 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-volcano-mp034/index.json @@ -0,0 +1,31 @@ +{ + "id": 156515, + "slug": "tiger-tank-59-volcano-mp034", + "name": "Tiger Tank 59 Ⅰ Volcano MP034", + "release_date": "2021-07-27", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185531" + ], + "created_at": "2026-07-10T10:10:47.099741", + "updated_at": "2026-07-10T10:10:47.099741", + "url": "/v1/games/tiger-tank-59-volcano-mp034" +} diff --git a/site/public/v1/games/tiger-tank-59-volcano-mp035/index.json b/site/public/v1/games/tiger-tank-59-volcano-mp035/index.json new file mode 100644 index 000000000000..260d959c1084 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-volcano-mp035/index.json @@ -0,0 +1,31 @@ +{ + "id": 156516, + "slug": "tiger-tank-59-volcano-mp035", + "name": "Tiger Tank 59 Ⅰ Volcano MP035", + "release_date": "2021-07-27", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185532" + ], + "created_at": "2026-07-10T10:10:47.099741", + "updated_at": "2026-07-10T10:10:47.099741", + "url": "/v1/games/tiger-tank-59-volcano-mp035" +} diff --git a/site/public/v1/games/tiger-tank-59-volcano-mp036/index.json b/site/public/v1/games/tiger-tank-59-volcano-mp036/index.json new file mode 100644 index 000000000000..a73b943d9748 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-volcano-mp036/index.json @@ -0,0 +1,31 @@ +{ + "id": 156517, + "slug": "tiger-tank-59-volcano-mp036", + "name": "Tiger Tank 59 Ⅰ Volcano MP036", + "release_date": "2021-07-31", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185534" + ], + "created_at": "2026-07-10T10:10:47.099741", + "updated_at": "2026-07-10T10:10:47.099741", + "url": "/v1/games/tiger-tank-59-volcano-mp036" +} diff --git a/site/public/v1/games/tiger-tank-59-volcano-mp037/index.json b/site/public/v1/games/tiger-tank-59-volcano-mp037/index.json new file mode 100644 index 000000000000..c9470093e1a3 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-volcano-mp037/index.json @@ -0,0 +1,31 @@ +{ + "id": 156518, + "slug": "tiger-tank-59-volcano-mp037", + "name": "Tiger Tank 59 Ⅰ Volcano MP037", + "release_date": "2021-07-31", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185536" + ], + "created_at": "2026-07-10T10:10:47.099741", + "updated_at": "2026-07-10T10:10:47.099741", + "url": "/v1/games/tiger-tank-59-volcano-mp037" +} diff --git a/site/public/v1/games/tiger-tank-59-volcano-mp038/index.json b/site/public/v1/games/tiger-tank-59-volcano-mp038/index.json new file mode 100644 index 000000000000..45cbe66fbfc8 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-volcano-mp038/index.json @@ -0,0 +1,31 @@ +{ + "id": 156519, + "slug": "tiger-tank-59-volcano-mp038", + "name": "Tiger Tank 59 Ⅰ Volcano MP038", + "release_date": "2021-07-31", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185542" + ], + "created_at": "2026-07-10T10:10:47.099741", + "updated_at": "2026-07-10T10:10:47.099741", + "url": "/v1/games/tiger-tank-59-volcano-mp038" +} diff --git a/site/public/v1/games/tiger-tank-59-volcano-mp039/index.json b/site/public/v1/games/tiger-tank-59-volcano-mp039/index.json new file mode 100644 index 000000000000..4d921fdec1c2 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-volcano-mp039/index.json @@ -0,0 +1,31 @@ +{ + "id": 156520, + "slug": "tiger-tank-59-volcano-mp039", + "name": "Tiger Tank 59 Ⅰ Volcano MP039", + "release_date": "2021-07-31", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185545" + ], + "created_at": "2026-07-10T10:10:47.100689", + "updated_at": "2026-07-10T10:10:47.100689", + "url": "/v1/games/tiger-tank-59-volcano-mp039" +} diff --git a/site/public/v1/games/tiger-tank-59-volcano-mp040/index.json b/site/public/v1/games/tiger-tank-59-volcano-mp040/index.json new file mode 100644 index 000000000000..847b756399c2 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-volcano-mp040/index.json @@ -0,0 +1,31 @@ +{ + "id": 156521, + "slug": "tiger-tank-59-volcano-mp040", + "name": "Tiger Tank 59 Ⅰ Volcano MP040", + "release_date": "2021-07-31", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185548" + ], + "created_at": "2026-07-10T10:10:47.100689", + "updated_at": "2026-07-10T10:10:47.100689", + "url": "/v1/games/tiger-tank-59-volcano-mp040" +} diff --git a/site/public/v1/games/tiger-tank-59-volcano-mp041/index.json b/site/public/v1/games/tiger-tank-59-volcano-mp041/index.json new file mode 100644 index 000000000000..a76753f42eeb --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-volcano-mp041/index.json @@ -0,0 +1,31 @@ +{ + "id": 156522, + "slug": "tiger-tank-59-volcano-mp041", + "name": "Tiger Tank 59 Ⅰ Volcano MP041", + "release_date": "2021-07-31", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185549" + ], + "created_at": "2026-07-10T10:10:47.100689", + "updated_at": "2026-07-10T10:10:47.100689", + "url": "/v1/games/tiger-tank-59-volcano-mp041" +} diff --git a/site/public/v1/games/tiger-tank-59-volcano-mp042/index.json b/site/public/v1/games/tiger-tank-59-volcano-mp042/index.json new file mode 100644 index 000000000000..a233023d994c --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-volcano-mp042/index.json @@ -0,0 +1,31 @@ +{ + "id": 156523, + "slug": "tiger-tank-59-volcano-mp042", + "name": "Tiger Tank 59 Ⅰ Volcano MP042", + "release_date": "2021-07-31", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185550" + ], + "created_at": "2026-07-10T10:10:47.100689", + "updated_at": "2026-07-10T10:10:47.100689", + "url": "/v1/games/tiger-tank-59-volcano-mp042" +} diff --git a/site/public/v1/games/tiger-tank-59-volcano-mp043/index.json b/site/public/v1/games/tiger-tank-59-volcano-mp043/index.json new file mode 100644 index 000000000000..8775421aaebf --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-volcano-mp043/index.json @@ -0,0 +1,31 @@ +{ + "id": 156524, + "slug": "tiger-tank-59-volcano-mp043", + "name": "Tiger Tank 59 Ⅰ Volcano MP043", + "release_date": "2021-07-31", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185552" + ], + "created_at": "2026-07-10T10:10:47.100689", + "updated_at": "2026-07-10T10:10:47.100689", + "url": "/v1/games/tiger-tank-59-volcano-mp043" +} diff --git a/site/public/v1/games/tiger-tank-59-volcano-mp044/index.json b/site/public/v1/games/tiger-tank-59-volcano-mp044/index.json new file mode 100644 index 000000000000..5abc9fe55f9b --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-volcano-mp044/index.json @@ -0,0 +1,31 @@ +{ + "id": 156525, + "slug": "tiger-tank-59-volcano-mp044", + "name": "Tiger Tank 59 Ⅰ Volcano MP044", + "release_date": "2021-08-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185554" + ], + "created_at": "2026-07-10T10:10:47.101716", + "updated_at": "2026-07-10T10:10:47.101716", + "url": "/v1/games/tiger-tank-59-volcano-mp044" +} diff --git a/site/public/v1/games/tiger-tank-59-volcano-mp045/index.json b/site/public/v1/games/tiger-tank-59-volcano-mp045/index.json new file mode 100644 index 000000000000..d75f7fe2147a --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-volcano-mp045/index.json @@ -0,0 +1,31 @@ +{ + "id": 156526, + "slug": "tiger-tank-59-volcano-mp045", + "name": "Tiger Tank 59 Ⅰ Volcano MP045", + "release_date": "2021-07-31", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185555" + ], + "created_at": "2026-07-10T10:10:47.101716", + "updated_at": "2026-07-10T10:10:47.101716", + "url": "/v1/games/tiger-tank-59-volcano-mp045" +} diff --git a/site/public/v1/games/tiger-tank-59-volcano-mp046/index.json b/site/public/v1/games/tiger-tank-59-volcano-mp046/index.json new file mode 100644 index 000000000000..07f407171097 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-volcano-mp046/index.json @@ -0,0 +1,31 @@ +{ + "id": 156527, + "slug": "tiger-tank-59-volcano-mp046", + "name": "Tiger Tank 59 Ⅰ Volcano MP046", + "release_date": "2021-08-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185556" + ], + "created_at": "2026-07-10T10:10:47.101716", + "updated_at": "2026-07-10T10:10:47.101716", + "url": "/v1/games/tiger-tank-59-volcano-mp046" +} diff --git a/site/public/v1/games/tiger-tank-59-volcano-mp047/index.json b/site/public/v1/games/tiger-tank-59-volcano-mp047/index.json new file mode 100644 index 000000000000..1c0f5cb9cba5 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-volcano-mp047/index.json @@ -0,0 +1,31 @@ +{ + "id": 156528, + "slug": "tiger-tank-59-volcano-mp047", + "name": "Tiger Tank 59 Ⅰ Volcano MP047", + "release_date": "2021-08-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185557" + ], + "created_at": "2026-07-10T10:10:47.102747", + "updated_at": "2026-07-10T10:10:47.102747", + "url": "/v1/games/tiger-tank-59-volcano-mp047" +} diff --git a/site/public/v1/games/tiger-tank-59-volcano-mp048/index.json b/site/public/v1/games/tiger-tank-59-volcano-mp048/index.json new file mode 100644 index 000000000000..f562bf6d6b07 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-volcano-mp048/index.json @@ -0,0 +1,31 @@ +{ + "id": 156529, + "slug": "tiger-tank-59-volcano-mp048", + "name": "Tiger Tank 59 Ⅰ Volcano MP048", + "release_date": "2021-08-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185558" + ], + "created_at": "2026-07-10T10:10:47.102747", + "updated_at": "2026-07-10T10:10:47.102747", + "url": "/v1/games/tiger-tank-59-volcano-mp048" +} diff --git a/site/public/v1/games/tiger-tank-59-volcano-mp049/index.json b/site/public/v1/games/tiger-tank-59-volcano-mp049/index.json new file mode 100644 index 000000000000..550f55a8a034 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-volcano-mp049/index.json @@ -0,0 +1,31 @@ +{ + "id": 156530, + "slug": "tiger-tank-59-volcano-mp049", + "name": "Tiger Tank 59 Ⅰ Volcano MP049", + "release_date": "2021-08-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185559" + ], + "created_at": "2026-07-10T10:10:47.102747", + "updated_at": "2026-07-10T10:10:47.102747", + "url": "/v1/games/tiger-tank-59-volcano-mp049" +} diff --git a/site/public/v1/games/tiger-tank-59-volcano-mp050/index.json b/site/public/v1/games/tiger-tank-59-volcano-mp050/index.json new file mode 100644 index 000000000000..195af397feec --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-volcano-mp050/index.json @@ -0,0 +1,31 @@ +{ + "id": 156531, + "slug": "tiger-tank-59-volcano-mp050", + "name": "Tiger Tank 59 Ⅰ Volcano MP050", + "release_date": "2021-08-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185560" + ], + "created_at": "2026-07-10T10:10:47.102747", + "updated_at": "2026-07-10T10:10:47.102747", + "url": "/v1/games/tiger-tank-59-volcano-mp050" +} diff --git a/site/public/v1/games/tiger-tank-59-volcano-mp051/index.json b/site/public/v1/games/tiger-tank-59-volcano-mp051/index.json new file mode 100644 index 000000000000..0b62bf2fb5d8 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-volcano-mp051/index.json @@ -0,0 +1,31 @@ +{ + "id": 156532, + "slug": "tiger-tank-59-volcano-mp051", + "name": "Tiger Tank 59 Ⅰ Volcano MP051", + "release_date": "2021-08-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185563" + ], + "created_at": "2026-07-10T10:10:47.102747", + "updated_at": "2026-07-10T10:10:47.102747", + "url": "/v1/games/tiger-tank-59-volcano-mp051" +} diff --git a/site/public/v1/games/tiger-tank-59-volcano-mp052/index.json b/site/public/v1/games/tiger-tank-59-volcano-mp052/index.json new file mode 100644 index 000000000000..bb38197205e5 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-volcano-mp052/index.json @@ -0,0 +1,31 @@ +{ + "id": 156533, + "slug": "tiger-tank-59-volcano-mp052", + "name": "Tiger Tank 59 Ⅰ Volcano MP052", + "release_date": "2021-08-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185564" + ], + "created_at": "2026-07-10T10:10:47.103701", + "updated_at": "2026-07-10T10:10:47.103701", + "url": "/v1/games/tiger-tank-59-volcano-mp052" +} diff --git a/site/public/v1/games/tiger-tank-59-volcano-mp053/index.json b/site/public/v1/games/tiger-tank-59-volcano-mp053/index.json new file mode 100644 index 000000000000..cebf375b2213 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-volcano-mp053/index.json @@ -0,0 +1,31 @@ +{ + "id": 156534, + "slug": "tiger-tank-59-volcano-mp053", + "name": "Tiger Tank 59 Ⅰ Volcano MP053", + "release_date": "2021-08-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185566" + ], + "created_at": "2026-07-10T10:10:47.103701", + "updated_at": "2026-07-10T10:10:47.103701", + "url": "/v1/games/tiger-tank-59-volcano-mp053" +} diff --git a/site/public/v1/games/tiger-tank-59-volcano-mp054/index.json b/site/public/v1/games/tiger-tank-59-volcano-mp054/index.json new file mode 100644 index 000000000000..a0c992800671 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-volcano-mp054/index.json @@ -0,0 +1,31 @@ +{ + "id": 156535, + "slug": "tiger-tank-59-volcano-mp054", + "name": "Tiger Tank 59 Ⅰ Volcano MP054", + "release_date": "2021-08-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185568" + ], + "created_at": "2026-07-10T10:10:47.103701", + "updated_at": "2026-07-10T10:10:47.103701", + "url": "/v1/games/tiger-tank-59-volcano-mp054" +} diff --git a/site/public/v1/games/tiger-tank-59-volcano-mp055/index.json b/site/public/v1/games/tiger-tank-59-volcano-mp055/index.json new file mode 100644 index 000000000000..fed6e11a938e --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-volcano-mp055/index.json @@ -0,0 +1,31 @@ +{ + "id": 156536, + "slug": "tiger-tank-59-volcano-mp055", + "name": "Tiger Tank 59 Ⅰ Volcano MP055", + "release_date": "2021-08-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185569" + ], + "created_at": "2026-07-10T10:10:47.103701", + "updated_at": "2026-07-10T10:10:47.103701", + "url": "/v1/games/tiger-tank-59-volcano-mp055" +} diff --git a/site/public/v1/games/tiger-tank-59-volcano-mp056/index.json b/site/public/v1/games/tiger-tank-59-volcano-mp056/index.json new file mode 100644 index 000000000000..f4eaa1a7f507 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-volcano-mp056/index.json @@ -0,0 +1,31 @@ +{ + "id": 156537, + "slug": "tiger-tank-59-volcano-mp056", + "name": "Tiger Tank 59 Ⅰ Volcano MP056", + "release_date": "2021-08-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185571" + ], + "created_at": "2026-07-10T10:10:47.104710", + "updated_at": "2026-07-10T10:10:47.104710", + "url": "/v1/games/tiger-tank-59-volcano-mp056" +} diff --git a/site/public/v1/games/tiger-tank-59-volcano-mp057/index.json b/site/public/v1/games/tiger-tank-59-volcano-mp057/index.json new file mode 100644 index 000000000000..1da927b4ebcd --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-volcano-mp057/index.json @@ -0,0 +1,31 @@ +{ + "id": 156538, + "slug": "tiger-tank-59-volcano-mp057", + "name": "Tiger Tank 59 Ⅰ Volcano MP057", + "release_date": "2021-08-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185575" + ], + "created_at": "2026-07-10T10:10:47.104710", + "updated_at": "2026-07-10T10:10:47.104710", + "url": "/v1/games/tiger-tank-59-volcano-mp057" +} diff --git a/site/public/v1/games/tiger-tank-59-volcano-mp058/index.json b/site/public/v1/games/tiger-tank-59-volcano-mp058/index.json new file mode 100644 index 000000000000..811e4796a81e --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-volcano-mp058/index.json @@ -0,0 +1,31 @@ +{ + "id": 156539, + "slug": "tiger-tank-59-volcano-mp058", + "name": "Tiger Tank 59 Ⅰ Volcano MP058", + "release_date": "2021-08-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185576" + ], + "created_at": "2026-07-10T10:10:47.104710", + "updated_at": "2026-07-10T10:10:47.104710", + "url": "/v1/games/tiger-tank-59-volcano-mp058" +} diff --git a/site/public/v1/games/tiger-tank-59-volcano-mp059/index.json b/site/public/v1/games/tiger-tank-59-volcano-mp059/index.json new file mode 100644 index 000000000000..d6718b2211e2 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-volcano-mp059/index.json @@ -0,0 +1,31 @@ +{ + "id": 156540, + "slug": "tiger-tank-59-volcano-mp059", + "name": "Tiger Tank 59 Ⅰ Volcano MP059", + "release_date": "2021-08-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185577" + ], + "created_at": "2026-07-10T10:10:47.104710", + "updated_at": "2026-07-10T10:10:47.104710", + "url": "/v1/games/tiger-tank-59-volcano-mp059" +} diff --git a/site/public/v1/games/tiger-tank-59-volcano-mp060/index.json b/site/public/v1/games/tiger-tank-59-volcano-mp060/index.json new file mode 100644 index 000000000000..079667dc458f --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-volcano-mp060/index.json @@ -0,0 +1,31 @@ +{ + "id": 156541, + "slug": "tiger-tank-59-volcano-mp060", + "name": "Tiger Tank 59 Ⅰ Volcano MP060", + "release_date": "2021-08-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185579" + ], + "created_at": "2026-07-10T10:10:47.104710", + "updated_at": "2026-07-10T10:10:47.104710", + "url": "/v1/games/tiger-tank-59-volcano-mp060" +} diff --git a/site/public/v1/games/tiger-tank-59-volcano-mp061/index.json b/site/public/v1/games/tiger-tank-59-volcano-mp061/index.json new file mode 100644 index 000000000000..4d417013fdf4 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-volcano-mp061/index.json @@ -0,0 +1,31 @@ +{ + "id": 156542, + "slug": "tiger-tank-59-volcano-mp061", + "name": "Tiger Tank 59 Ⅰ Volcano MP061", + "release_date": "2021-08-14", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185581" + ], + "created_at": "2026-07-10T10:10:47.105682", + "updated_at": "2026-07-10T10:10:47.105682", + "url": "/v1/games/tiger-tank-59-volcano-mp061" +} diff --git a/site/public/v1/games/tiger-tank-59-volcano-mp062/index.json b/site/public/v1/games/tiger-tank-59-volcano-mp062/index.json new file mode 100644 index 000000000000..e1f86f345d8e --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-volcano-mp062/index.json @@ -0,0 +1,31 @@ +{ + "id": 156543, + "slug": "tiger-tank-59-volcano-mp062", + "name": "Tiger Tank 59 Ⅰ Volcano MP062", + "release_date": "2021-08-14", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185584" + ], + "created_at": "2026-07-10T10:10:47.105682", + "updated_at": "2026-07-10T10:10:47.105682", + "url": "/v1/games/tiger-tank-59-volcano-mp062" +} diff --git a/site/public/v1/games/tiger-tank-59-volcano-mp063/index.json b/site/public/v1/games/tiger-tank-59-volcano-mp063/index.json new file mode 100644 index 000000000000..d1afb61b0524 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-volcano-mp063/index.json @@ -0,0 +1,31 @@ +{ + "id": 156544, + "slug": "tiger-tank-59-volcano-mp063", + "name": "Tiger Tank 59 Ⅰ Volcano MP063", + "release_date": "2021-08-14", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185585" + ], + "created_at": "2026-07-10T10:10:47.105682", + "updated_at": "2026-07-10T10:10:47.105682", + "url": "/v1/games/tiger-tank-59-volcano-mp063" +} diff --git a/site/public/v1/games/tiger-tank-59-volcano-mp064/index.json b/site/public/v1/games/tiger-tank-59-volcano-mp064/index.json new file mode 100644 index 000000000000..515208a4e60a --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-volcano-mp064/index.json @@ -0,0 +1,31 @@ +{ + "id": 156545, + "slug": "tiger-tank-59-volcano-mp064", + "name": "Tiger Tank 59 Ⅰ Volcano MP064", + "release_date": "2021-08-14", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185588" + ], + "created_at": "2026-07-10T10:10:47.105682", + "updated_at": "2026-07-10T10:10:47.105682", + "url": "/v1/games/tiger-tank-59-volcano-mp064" +} diff --git a/site/public/v1/games/tiger-tank-59-volcano-mp065/index.json b/site/public/v1/games/tiger-tank-59-volcano-mp065/index.json new file mode 100644 index 000000000000..3622fedd36f9 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-volcano-mp065/index.json @@ -0,0 +1,31 @@ +{ + "id": 156546, + "slug": "tiger-tank-59-volcano-mp065", + "name": "Tiger Tank 59 Ⅰ Volcano MP065", + "release_date": "2021-08-14", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185589" + ], + "created_at": "2026-07-10T10:10:47.105682", + "updated_at": "2026-07-10T10:10:47.105682", + "url": "/v1/games/tiger-tank-59-volcano-mp065" +} diff --git a/site/public/v1/games/tiger-tank-59-volcano-mp066/index.json b/site/public/v1/games/tiger-tank-59-volcano-mp066/index.json new file mode 100644 index 000000000000..073f6eb7be20 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-volcano-mp066/index.json @@ -0,0 +1,31 @@ +{ + "id": 156547, + "slug": "tiger-tank-59-volcano-mp066", + "name": "Tiger Tank 59 Ⅰ Volcano MP066", + "release_date": "2021-08-14", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185591" + ], + "created_at": "2026-07-10T10:10:47.106689", + "updated_at": "2026-07-10T10:10:47.106689", + "url": "/v1/games/tiger-tank-59-volcano-mp066" +} diff --git a/site/public/v1/games/tiger-tank-59-volcano-mp067/index.json b/site/public/v1/games/tiger-tank-59-volcano-mp067/index.json new file mode 100644 index 000000000000..d09cd9a6e065 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-volcano-mp067/index.json @@ -0,0 +1,31 @@ +{ + "id": 156548, + "slug": "tiger-tank-59-volcano-mp067", + "name": "Tiger Tank 59 Ⅰ Volcano MP067", + "release_date": "2021-08-14", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185593" + ], + "created_at": "2026-07-10T10:10:47.106689", + "updated_at": "2026-07-10T10:10:47.106689", + "url": "/v1/games/tiger-tank-59-volcano-mp067" +} diff --git a/site/public/v1/games/tiger-tank-59-volcano-mp068/index.json b/site/public/v1/games/tiger-tank-59-volcano-mp068/index.json new file mode 100644 index 000000000000..dce71b3a0339 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-volcano-mp068/index.json @@ -0,0 +1,31 @@ +{ + "id": 156549, + "slug": "tiger-tank-59-volcano-mp068", + "name": "Tiger Tank 59 Ⅰ Volcano MP068", + "release_date": "2021-08-14", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185596" + ], + "created_at": "2026-07-10T10:10:47.106689", + "updated_at": "2026-07-10T10:10:47.106689", + "url": "/v1/games/tiger-tank-59-volcano-mp068" +} diff --git a/site/public/v1/games/tiger-tank-59-volcano-mp069/index.json b/site/public/v1/games/tiger-tank-59-volcano-mp069/index.json new file mode 100644 index 000000000000..dc679caa4c61 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-volcano-mp069/index.json @@ -0,0 +1,31 @@ +{ + "id": 156550, + "slug": "tiger-tank-59-volcano-mp069", + "name": "Tiger Tank 59 Ⅰ Volcano MP069", + "release_date": "2021-08-14", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185597" + ], + "created_at": "2026-07-10T10:10:47.106689", + "updated_at": "2026-07-10T10:10:47.106689", + "url": "/v1/games/tiger-tank-59-volcano-mp069" +} diff --git a/site/public/v1/games/tiger-tank-59-volcano-mp070/index.json b/site/public/v1/games/tiger-tank-59-volcano-mp070/index.json new file mode 100644 index 000000000000..7bcc0a9b900f --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-volcano-mp070/index.json @@ -0,0 +1,31 @@ +{ + "id": 156551, + "slug": "tiger-tank-59-volcano-mp070", + "name": "Tiger Tank 59 Ⅰ Volcano MP070", + "release_date": "2021-08-14", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185598" + ], + "created_at": "2026-07-10T10:10:47.107682", + "updated_at": "2026-07-10T10:10:47.107682", + "url": "/v1/games/tiger-tank-59-volcano-mp070" +} diff --git a/site/public/v1/games/tiger-tank-59-volcano-mp071/index.json b/site/public/v1/games/tiger-tank-59-volcano-mp071/index.json new file mode 100644 index 000000000000..2db24223f35c --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-volcano-mp071/index.json @@ -0,0 +1,31 @@ +{ + "id": 156552, + "slug": "tiger-tank-59-volcano-mp071", + "name": "Tiger Tank 59 Ⅰ Volcano MP071", + "release_date": "2021-08-19", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185599" + ], + "created_at": "2026-07-10T10:10:47.107682", + "updated_at": "2026-07-10T10:10:47.107682", + "url": "/v1/games/tiger-tank-59-volcano-mp071" +} diff --git a/site/public/v1/games/tiger-tank-59-volcano-mp072/index.json b/site/public/v1/games/tiger-tank-59-volcano-mp072/index.json new file mode 100644 index 000000000000..bce6e8f4733a --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-volcano-mp072/index.json @@ -0,0 +1,31 @@ +{ + "id": 156553, + "slug": "tiger-tank-59-volcano-mp072", + "name": "Tiger Tank 59 Ⅰ Volcano MP072", + "release_date": "2021-08-19", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185601" + ], + "created_at": "2026-07-10T10:10:47.107682", + "updated_at": "2026-07-10T10:10:47.107682", + "url": "/v1/games/tiger-tank-59-volcano-mp072" +} diff --git a/site/public/v1/games/tiger-tank-59-volcano-mp073/index.json b/site/public/v1/games/tiger-tank-59-volcano-mp073/index.json new file mode 100644 index 000000000000..b9f902ecca16 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-volcano-mp073/index.json @@ -0,0 +1,31 @@ +{ + "id": 156554, + "slug": "tiger-tank-59-volcano-mp073", + "name": "Tiger Tank 59 Ⅰ Volcano MP073", + "release_date": "2021-08-19", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185602" + ], + "created_at": "2026-07-10T10:10:47.107682", + "updated_at": "2026-07-10T10:10:47.107682", + "url": "/v1/games/tiger-tank-59-volcano-mp073" +} diff --git a/site/public/v1/games/tiger-tank-59-volcano-mp074/index.json b/site/public/v1/games/tiger-tank-59-volcano-mp074/index.json new file mode 100644 index 000000000000..499e6dce99a6 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-volcano-mp074/index.json @@ -0,0 +1,31 @@ +{ + "id": 156555, + "slug": "tiger-tank-59-volcano-mp074", + "name": "Tiger Tank 59 Ⅰ Volcano MP074", + "release_date": "2021-08-19", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185603" + ], + "created_at": "2026-07-10T10:10:47.108699", + "updated_at": "2026-07-10T10:10:47.108699", + "url": "/v1/games/tiger-tank-59-volcano-mp074" +} diff --git a/site/public/v1/games/tiger-tank-59-volcano-mp075/index.json b/site/public/v1/games/tiger-tank-59-volcano-mp075/index.json new file mode 100644 index 000000000000..78015e820964 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-volcano-mp075/index.json @@ -0,0 +1,31 @@ +{ + "id": 156556, + "slug": "tiger-tank-59-volcano-mp075", + "name": "Tiger Tank 59 Ⅰ Volcano MP075", + "release_date": "2021-08-19", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185605" + ], + "created_at": "2026-07-10T10:10:47.108699", + "updated_at": "2026-07-10T10:10:47.108699", + "url": "/v1/games/tiger-tank-59-volcano-mp075" +} diff --git a/site/public/v1/games/tiger-tank-59-volcano-mp076/index.json b/site/public/v1/games/tiger-tank-59-volcano-mp076/index.json new file mode 100644 index 000000000000..8526c1d2f85d --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-volcano-mp076/index.json @@ -0,0 +1,31 @@ +{ + "id": 156557, + "slug": "tiger-tank-59-volcano-mp076", + "name": "Tiger Tank 59 Ⅰ Volcano MP076", + "release_date": "2021-08-19", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185606" + ], + "created_at": "2026-07-10T10:10:47.108699", + "updated_at": "2026-07-10T10:10:47.108699", + "url": "/v1/games/tiger-tank-59-volcano-mp076" +} diff --git a/site/public/v1/games/tiger-tank-59-volcano-mp077/index.json b/site/public/v1/games/tiger-tank-59-volcano-mp077/index.json new file mode 100644 index 000000000000..d39fc2439702 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-volcano-mp077/index.json @@ -0,0 +1,31 @@ +{ + "id": 156558, + "slug": "tiger-tank-59-volcano-mp077", + "name": "Tiger Tank 59 Ⅰ Volcano MP077", + "release_date": "2021-08-19", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185607" + ], + "created_at": "2026-07-10T10:10:47.108699", + "updated_at": "2026-07-10T10:10:47.108699", + "url": "/v1/games/tiger-tank-59-volcano-mp077" +} diff --git a/site/public/v1/games/tiger-tank-59-volcano-mp078/index.json b/site/public/v1/games/tiger-tank-59-volcano-mp078/index.json new file mode 100644 index 000000000000..4ebb5658b7c7 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-volcano-mp078/index.json @@ -0,0 +1,31 @@ +{ + "id": 156559, + "slug": "tiger-tank-59-volcano-mp078", + "name": "Tiger Tank 59 Ⅰ Volcano MP078", + "release_date": "2021-08-19", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185609" + ], + "created_at": "2026-07-10T10:10:47.109624", + "updated_at": "2026-07-10T10:10:47.109624", + "url": "/v1/games/tiger-tank-59-volcano-mp078" +} diff --git a/site/public/v1/games/tiger-tank-59-volcano-mp079/index.json b/site/public/v1/games/tiger-tank-59-volcano-mp079/index.json new file mode 100644 index 000000000000..1379ab78090c --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-volcano-mp079/index.json @@ -0,0 +1,31 @@ +{ + "id": 156560, + "slug": "tiger-tank-59-volcano-mp079", + "name": "Tiger Tank 59 Ⅰ Volcano MP079", + "release_date": "2021-08-19", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185611" + ], + "created_at": "2026-07-10T10:10:47.109624", + "updated_at": "2026-07-10T10:10:47.109624", + "url": "/v1/games/tiger-tank-59-volcano-mp079" +} diff --git a/site/public/v1/games/tiger-tank-59-volcano-mp080/index.json b/site/public/v1/games/tiger-tank-59-volcano-mp080/index.json new file mode 100644 index 000000000000..9b2383ec4c98 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-volcano-mp080/index.json @@ -0,0 +1,31 @@ +{ + "id": 156561, + "slug": "tiger-tank-59-volcano-mp080", + "name": "Tiger Tank 59 Ⅰ Volcano MP080", + "release_date": "2021-08-19", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185612" + ], + "created_at": "2026-07-10T10:10:47.109624", + "updated_at": "2026-07-10T10:10:47.109624", + "url": "/v1/games/tiger-tank-59-volcano-mp080" +} diff --git a/site/public/v1/games/tiger-tank-59-volcano-mp081/index.json b/site/public/v1/games/tiger-tank-59-volcano-mp081/index.json new file mode 100644 index 000000000000..4bbc86748f3f --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-volcano-mp081/index.json @@ -0,0 +1,31 @@ +{ + "id": 156562, + "slug": "tiger-tank-59-volcano-mp081", + "name": "Tiger Tank 59 Ⅰ Volcano MP081", + "release_date": "2021-08-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185613" + ], + "created_at": "2026-07-10T10:10:47.109624", + "updated_at": "2026-07-10T10:10:47.109624", + "url": "/v1/games/tiger-tank-59-volcano-mp081" +} diff --git a/site/public/v1/games/tiger-tank-59-volcano-mp082/index.json b/site/public/v1/games/tiger-tank-59-volcano-mp082/index.json new file mode 100644 index 000000000000..732d007c7e91 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-volcano-mp082/index.json @@ -0,0 +1,31 @@ +{ + "id": 156563, + "slug": "tiger-tank-59-volcano-mp082", + "name": "Tiger Tank 59 Ⅰ Volcano MP082", + "release_date": "2021-08-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185615" + ], + "created_at": "2026-07-10T10:10:47.110628", + "updated_at": "2026-07-10T10:10:47.110628", + "url": "/v1/games/tiger-tank-59-volcano-mp082" +} diff --git a/site/public/v1/games/tiger-tank-59-volcano-mp083/index.json b/site/public/v1/games/tiger-tank-59-volcano-mp083/index.json new file mode 100644 index 000000000000..6e8be867f0a9 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-volcano-mp083/index.json @@ -0,0 +1,31 @@ +{ + "id": 156564, + "slug": "tiger-tank-59-volcano-mp083", + "name": "Tiger Tank 59 Ⅰ Volcano MP083", + "release_date": "2021-08-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185616" + ], + "created_at": "2026-07-10T10:10:47.110628", + "updated_at": "2026-07-10T10:10:47.110628", + "url": "/v1/games/tiger-tank-59-volcano-mp083" +} diff --git a/site/public/v1/games/tiger-tank-59-volcano-mp084/index.json b/site/public/v1/games/tiger-tank-59-volcano-mp084/index.json new file mode 100644 index 000000000000..0f5236a9924e --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-volcano-mp084/index.json @@ -0,0 +1,31 @@ +{ + "id": 156565, + "slug": "tiger-tank-59-volcano-mp084", + "name": "Tiger Tank 59 Ⅰ Volcano MP084", + "release_date": "2021-08-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185617" + ], + "created_at": "2026-07-10T10:10:47.110628", + "updated_at": "2026-07-10T10:10:47.110628", + "url": "/v1/games/tiger-tank-59-volcano-mp084" +} diff --git a/site/public/v1/games/tiger-tank-59-volcano-mp085/index.json b/site/public/v1/games/tiger-tank-59-volcano-mp085/index.json new file mode 100644 index 000000000000..9591fc3548a4 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-volcano-mp085/index.json @@ -0,0 +1,31 @@ +{ + "id": 156566, + "slug": "tiger-tank-59-volcano-mp085", + "name": "Tiger Tank 59 Ⅰ Volcano MP085", + "release_date": "2021-08-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185619" + ], + "created_at": "2026-07-10T10:10:47.110628", + "updated_at": "2026-07-10T10:10:47.110628", + "url": "/v1/games/tiger-tank-59-volcano-mp085" +} diff --git a/site/public/v1/games/tiger-tank-59-volcano-mp086/index.json b/site/public/v1/games/tiger-tank-59-volcano-mp086/index.json new file mode 100644 index 000000000000..af7912377a3c --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-volcano-mp086/index.json @@ -0,0 +1,31 @@ +{ + "id": 156567, + "slug": "tiger-tank-59-volcano-mp086", + "name": "Tiger Tank 59 Ⅰ Volcano MP086", + "release_date": "2021-08-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185620" + ], + "created_at": "2026-07-10T10:10:47.110628", + "updated_at": "2026-07-10T10:10:47.110628", + "url": "/v1/games/tiger-tank-59-volcano-mp086" +} diff --git a/site/public/v1/games/tiger-tank-59-volcano-mp087/index.json b/site/public/v1/games/tiger-tank-59-volcano-mp087/index.json new file mode 100644 index 000000000000..3b68225a0501 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-volcano-mp087/index.json @@ -0,0 +1,31 @@ +{ + "id": 156568, + "slug": "tiger-tank-59-volcano-mp087", + "name": "Tiger Tank 59 Ⅰ Volcano MP087", + "release_date": "2021-08-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185622" + ], + "created_at": "2026-07-10T10:10:47.111627", + "updated_at": "2026-07-10T10:10:47.111627", + "url": "/v1/games/tiger-tank-59-volcano-mp087" +} diff --git a/site/public/v1/games/tiger-tank-59-volcano-mp088/index.json b/site/public/v1/games/tiger-tank-59-volcano-mp088/index.json new file mode 100644 index 000000000000..7698ea19c98f --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-volcano-mp088/index.json @@ -0,0 +1,31 @@ +{ + "id": 156569, + "slug": "tiger-tank-59-volcano-mp088", + "name": "Tiger Tank 59 Ⅰ Volcano MP088", + "release_date": "2021-08-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185624" + ], + "created_at": "2026-07-10T10:10:47.111627", + "updated_at": "2026-07-10T10:10:47.111627", + "url": "/v1/games/tiger-tank-59-volcano-mp088" +} diff --git a/site/public/v1/games/tiger-tank-59-volcano-mp089/index.json b/site/public/v1/games/tiger-tank-59-volcano-mp089/index.json new file mode 100644 index 000000000000..6db3c2e680cd --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-volcano-mp089/index.json @@ -0,0 +1,31 @@ +{ + "id": 156570, + "slug": "tiger-tank-59-volcano-mp089", + "name": "Tiger Tank 59 Ⅰ Volcano MP089", + "release_date": "2021-08-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185627" + ], + "created_at": "2026-07-10T10:10:47.111627", + "updated_at": "2026-07-10T10:10:47.111627", + "url": "/v1/games/tiger-tank-59-volcano-mp089" +} diff --git a/site/public/v1/games/tiger-tank-59-volcano-mp090/index.json b/site/public/v1/games/tiger-tank-59-volcano-mp090/index.json new file mode 100644 index 000000000000..9930414e34b4 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-volcano-mp090/index.json @@ -0,0 +1,31 @@ +{ + "id": 156571, + "slug": "tiger-tank-59-volcano-mp090", + "name": "Tiger Tank 59 Ⅰ Volcano MP090", + "release_date": "2021-08-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185628" + ], + "created_at": "2026-07-10T10:10:47.111627", + "updated_at": "2026-07-10T10:10:47.111627", + "url": "/v1/games/tiger-tank-59-volcano-mp090" +} diff --git a/site/public/v1/games/tiger-tank-59-volcano-mp091/index.json b/site/public/v1/games/tiger-tank-59-volcano-mp091/index.json new file mode 100644 index 000000000000..b361d6ae64ce --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-volcano-mp091/index.json @@ -0,0 +1,31 @@ +{ + "id": 156572, + "slug": "tiger-tank-59-volcano-mp091", + "name": "Tiger Tank 59 Ⅰ Volcano MP091", + "release_date": "2021-09-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185629" + ], + "created_at": "2026-07-10T10:10:47.111627", + "updated_at": "2026-07-10T10:10:47.111627", + "url": "/v1/games/tiger-tank-59-volcano-mp091" +} diff --git a/site/public/v1/games/tiger-tank-59-volcano-mp092/index.json b/site/public/v1/games/tiger-tank-59-volcano-mp092/index.json new file mode 100644 index 000000000000..824e6ab83201 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-volcano-mp092/index.json @@ -0,0 +1,31 @@ +{ + "id": 156573, + "slug": "tiger-tank-59-volcano-mp092", + "name": "Tiger Tank 59 Ⅰ Volcano MP092", + "release_date": "2021-09-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185631" + ], + "created_at": "2026-07-10T10:10:47.112720", + "updated_at": "2026-07-10T10:10:47.112720", + "url": "/v1/games/tiger-tank-59-volcano-mp092" +} diff --git a/site/public/v1/games/tiger-tank-59-volcano-mp093/index.json b/site/public/v1/games/tiger-tank-59-volcano-mp093/index.json new file mode 100644 index 000000000000..071f09ace9d7 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-volcano-mp093/index.json @@ -0,0 +1,31 @@ +{ + "id": 156574, + "slug": "tiger-tank-59-volcano-mp093", + "name": "Tiger Tank 59 Ⅰ Volcano MP093", + "release_date": "2021-09-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185632" + ], + "created_at": "2026-07-10T10:10:47.112720", + "updated_at": "2026-07-10T10:10:47.112720", + "url": "/v1/games/tiger-tank-59-volcano-mp093" +} diff --git a/site/public/v1/games/tiger-tank-59-volcano-mp094/index.json b/site/public/v1/games/tiger-tank-59-volcano-mp094/index.json new file mode 100644 index 000000000000..14924b1546ea --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-volcano-mp094/index.json @@ -0,0 +1,31 @@ +{ + "id": 156575, + "slug": "tiger-tank-59-volcano-mp094", + "name": "Tiger Tank 59 Ⅰ Volcano MP094", + "release_date": "2021-09-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185633" + ], + "created_at": "2026-07-10T10:10:47.112720", + "updated_at": "2026-07-10T10:10:47.112720", + "url": "/v1/games/tiger-tank-59-volcano-mp094" +} diff --git a/site/public/v1/games/tiger-tank-59-volcano-mp095/index.json b/site/public/v1/games/tiger-tank-59-volcano-mp095/index.json new file mode 100644 index 000000000000..a077ea5c36b9 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-volcano-mp095/index.json @@ -0,0 +1,31 @@ +{ + "id": 156576, + "slug": "tiger-tank-59-volcano-mp095", + "name": "Tiger Tank 59 Ⅰ Volcano MP095", + "release_date": "2021-09-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185635" + ], + "created_at": "2026-07-10T10:10:47.112720", + "updated_at": "2026-07-10T10:10:47.112720", + "url": "/v1/games/tiger-tank-59-volcano-mp095" +} diff --git a/site/public/v1/games/tiger-tank-59-volcano-mp096/index.json b/site/public/v1/games/tiger-tank-59-volcano-mp096/index.json new file mode 100644 index 000000000000..fc147c1571d7 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-volcano-mp096/index.json @@ -0,0 +1,31 @@ +{ + "id": 156577, + "slug": "tiger-tank-59-volcano-mp096", + "name": "Tiger Tank 59 Ⅰ Volcano MP096", + "release_date": "2021-09-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185637" + ], + "created_at": "2026-07-10T10:10:47.113699", + "updated_at": "2026-07-10T10:10:47.113699", + "url": "/v1/games/tiger-tank-59-volcano-mp096" +} diff --git a/site/public/v1/games/tiger-tank-59-volcano-mp097/index.json b/site/public/v1/games/tiger-tank-59-volcano-mp097/index.json new file mode 100644 index 000000000000..d5c3e570e2ac --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-volcano-mp097/index.json @@ -0,0 +1,31 @@ +{ + "id": 156578, + "slug": "tiger-tank-59-volcano-mp097", + "name": "Tiger Tank 59 Ⅰ Volcano MP097", + "release_date": "2021-09-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185639" + ], + "created_at": "2026-07-10T10:10:47.113699", + "updated_at": "2026-07-10T10:10:47.113699", + "url": "/v1/games/tiger-tank-59-volcano-mp097" +} diff --git a/site/public/v1/games/tiger-tank-59-volcano-mp098/index.json b/site/public/v1/games/tiger-tank-59-volcano-mp098/index.json new file mode 100644 index 000000000000..2477d2a5a575 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-volcano-mp098/index.json @@ -0,0 +1,31 @@ +{ + "id": 156579, + "slug": "tiger-tank-59-volcano-mp098", + "name": "Tiger Tank 59 Ⅰ Volcano MP098", + "release_date": "2021-09-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185643" + ], + "created_at": "2026-07-10T10:10:47.113699", + "updated_at": "2026-07-10T10:10:47.113699", + "url": "/v1/games/tiger-tank-59-volcano-mp098" +} diff --git a/site/public/v1/games/tiger-tank-59-volcano-mp099/index.json b/site/public/v1/games/tiger-tank-59-volcano-mp099/index.json new file mode 100644 index 000000000000..c1bf0a7a7840 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-volcano-mp099/index.json @@ -0,0 +1,31 @@ +{ + "id": 156580, + "slug": "tiger-tank-59-volcano-mp099", + "name": "Tiger Tank 59 Ⅰ Volcano MP099", + "release_date": "2021-09-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185645" + ], + "created_at": "2026-07-10T10:10:47.113699", + "updated_at": "2026-07-10T10:10:47.113699", + "url": "/v1/games/tiger-tank-59-volcano-mp099" +} diff --git a/site/public/v1/games/tiger-tank-59-volcano-mp100/index.json b/site/public/v1/games/tiger-tank-59-volcano-mp100/index.json new file mode 100644 index 000000000000..4ab9fce9ce15 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-volcano-mp100/index.json @@ -0,0 +1,31 @@ +{ + "id": 156581, + "slug": "tiger-tank-59-volcano-mp100", + "name": "Tiger Tank 59 Ⅰ Volcano MP100", + "release_date": "2021-09-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185647" + ], + "created_at": "2026-07-10T10:10:47.114691", + "updated_at": "2026-07-10T10:10:47.114691", + "url": "/v1/games/tiger-tank-59-volcano-mp100" +} diff --git a/site/public/v1/games/tiger-tank-59-winter-assault-mp001/index.json b/site/public/v1/games/tiger-tank-59-winter-assault-mp001/index.json new file mode 100644 index 000000000000..00e05e9267a2 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-winter-assault-mp001/index.json @@ -0,0 +1,31 @@ +{ + "id": 156583, + "slug": "tiger-tank-59-winter-assault-mp001", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP001", + "release_date": "2021-07-22", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185649" + ], + "created_at": "2026-07-10T10:10:47.114691", + "updated_at": "2026-07-10T10:10:47.114691", + "url": "/v1/games/tiger-tank-59-winter-assault-mp001" +} diff --git a/site/public/v1/games/tiger-tank-59-winter-assault-mp002/index.json b/site/public/v1/games/tiger-tank-59-winter-assault-mp002/index.json new file mode 100644 index 000000000000..60936241f69f --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-winter-assault-mp002/index.json @@ -0,0 +1,31 @@ +{ + "id": 156584, + "slug": "tiger-tank-59-winter-assault-mp002", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP002", + "release_date": "2021-07-22", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185650" + ], + "created_at": "2026-07-10T10:10:47.114691", + "updated_at": "2026-07-10T10:10:47.114691", + "url": "/v1/games/tiger-tank-59-winter-assault-mp002" +} diff --git a/site/public/v1/games/tiger-tank-59-winter-assault-mp003/index.json b/site/public/v1/games/tiger-tank-59-winter-assault-mp003/index.json new file mode 100644 index 000000000000..e211a034a5ac --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-winter-assault-mp003/index.json @@ -0,0 +1,31 @@ +{ + "id": 156585, + "slug": "tiger-tank-59-winter-assault-mp003", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP003", + "release_date": "2021-07-22", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185653" + ], + "created_at": "2026-07-10T10:10:47.114691", + "updated_at": "2026-07-10T10:10:47.114691", + "url": "/v1/games/tiger-tank-59-winter-assault-mp003" +} diff --git a/site/public/v1/games/tiger-tank-59-winter-assault-mp004/index.json b/site/public/v1/games/tiger-tank-59-winter-assault-mp004/index.json new file mode 100644 index 000000000000..a4578c738b2f --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-winter-assault-mp004/index.json @@ -0,0 +1,31 @@ +{ + "id": 156586, + "slug": "tiger-tank-59-winter-assault-mp004", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP004", + "release_date": "2021-07-22", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185654" + ], + "created_at": "2026-07-10T10:10:47.115680", + "updated_at": "2026-07-10T10:10:47.115680", + "url": "/v1/games/tiger-tank-59-winter-assault-mp004" +} diff --git a/site/public/v1/games/tiger-tank-59-winter-assault-mp005/index.json b/site/public/v1/games/tiger-tank-59-winter-assault-mp005/index.json new file mode 100644 index 000000000000..ce7ac129d7b4 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-winter-assault-mp005/index.json @@ -0,0 +1,31 @@ +{ + "id": 156587, + "slug": "tiger-tank-59-winter-assault-mp005", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP005", + "release_date": "2021-07-22", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185656" + ], + "created_at": "2026-07-10T10:10:47.115680", + "updated_at": "2026-07-10T10:10:47.115680", + "url": "/v1/games/tiger-tank-59-winter-assault-mp005" +} diff --git a/site/public/v1/games/tiger-tank-59-winter-assault-mp006/index.json b/site/public/v1/games/tiger-tank-59-winter-assault-mp006/index.json new file mode 100644 index 000000000000..b8e57071db06 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-winter-assault-mp006/index.json @@ -0,0 +1,31 @@ +{ + "id": 156588, + "slug": "tiger-tank-59-winter-assault-mp006", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP006", + "release_date": "2021-07-22", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185657" + ], + "created_at": "2026-07-10T10:10:47.115680", + "updated_at": "2026-07-10T10:10:47.115680", + "url": "/v1/games/tiger-tank-59-winter-assault-mp006" +} diff --git a/site/public/v1/games/tiger-tank-59-winter-assault-mp007/index.json b/site/public/v1/games/tiger-tank-59-winter-assault-mp007/index.json new file mode 100644 index 000000000000..326186f1959b --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-winter-assault-mp007/index.json @@ -0,0 +1,31 @@ +{ + "id": 156589, + "slug": "tiger-tank-59-winter-assault-mp007", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP007", + "release_date": "2021-07-22", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185659" + ], + "created_at": "2026-07-10T10:10:47.115680", + "updated_at": "2026-07-10T10:10:47.115680", + "url": "/v1/games/tiger-tank-59-winter-assault-mp007" +} diff --git a/site/public/v1/games/tiger-tank-59-winter-assault-mp008/index.json b/site/public/v1/games/tiger-tank-59-winter-assault-mp008/index.json new file mode 100644 index 000000000000..a9b5816bf953 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-winter-assault-mp008/index.json @@ -0,0 +1,31 @@ +{ + "id": 156590, + "slug": "tiger-tank-59-winter-assault-mp008", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP008", + "release_date": "2021-07-22", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185661" + ], + "created_at": "2026-07-10T10:10:47.115680", + "updated_at": "2026-07-10T10:10:47.115680", + "url": "/v1/games/tiger-tank-59-winter-assault-mp008" +} diff --git a/site/public/v1/games/tiger-tank-59-winter-assault-mp009/index.json b/site/public/v1/games/tiger-tank-59-winter-assault-mp009/index.json new file mode 100644 index 000000000000..67d6aada3c6e --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-winter-assault-mp009/index.json @@ -0,0 +1,31 @@ +{ + "id": 156591, + "slug": "tiger-tank-59-winter-assault-mp009", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP009", + "release_date": "2021-07-22", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185662" + ], + "created_at": "2026-07-10T10:10:47.116680", + "updated_at": "2026-07-10T10:10:47.116680", + "url": "/v1/games/tiger-tank-59-winter-assault-mp009" +} diff --git a/site/public/v1/games/tiger-tank-59-winter-assault-mp010/index.json b/site/public/v1/games/tiger-tank-59-winter-assault-mp010/index.json new file mode 100644 index 000000000000..06ec7ff0b85d --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-winter-assault-mp010/index.json @@ -0,0 +1,31 @@ +{ + "id": 156592, + "slug": "tiger-tank-59-winter-assault-mp010", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP010", + "release_date": "2021-07-22", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185663" + ], + "created_at": "2026-07-10T10:10:47.116680", + "updated_at": "2026-07-10T10:10:47.116680", + "url": "/v1/games/tiger-tank-59-winter-assault-mp010" +} diff --git a/site/public/v1/games/tiger-tank-59-winter-assault-mp011/index.json b/site/public/v1/games/tiger-tank-59-winter-assault-mp011/index.json new file mode 100644 index 000000000000..935d85880938 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-winter-assault-mp011/index.json @@ -0,0 +1,31 @@ +{ + "id": 156593, + "slug": "tiger-tank-59-winter-assault-mp011", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP011", + "release_date": "2021-07-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185670" + ], + "created_at": "2026-07-10T10:10:47.116680", + "updated_at": "2026-07-10T10:10:47.116680", + "url": "/v1/games/tiger-tank-59-winter-assault-mp011" +} diff --git a/site/public/v1/games/tiger-tank-59-winter-assault-mp012/index.json b/site/public/v1/games/tiger-tank-59-winter-assault-mp012/index.json new file mode 100644 index 000000000000..6acd382c872a --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-winter-assault-mp012/index.json @@ -0,0 +1,31 @@ +{ + "id": 156594, + "slug": "tiger-tank-59-winter-assault-mp012", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP012", + "release_date": "2021-07-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185671" + ], + "created_at": "2026-07-10T10:10:47.116680", + "updated_at": "2026-07-10T10:10:47.116680", + "url": "/v1/games/tiger-tank-59-winter-assault-mp012" +} diff --git a/site/public/v1/games/tiger-tank-59-winter-assault-mp013/index.json b/site/public/v1/games/tiger-tank-59-winter-assault-mp013/index.json new file mode 100644 index 000000000000..5bac39db9046 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-winter-assault-mp013/index.json @@ -0,0 +1,31 @@ +{ + "id": 156595, + "slug": "tiger-tank-59-winter-assault-mp013", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP013", + "release_date": "2021-07-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185672" + ], + "created_at": "2026-07-10T10:10:47.117688", + "updated_at": "2026-07-10T10:10:47.117688", + "url": "/v1/games/tiger-tank-59-winter-assault-mp013" +} diff --git a/site/public/v1/games/tiger-tank-59-winter-assault-mp014/index.json b/site/public/v1/games/tiger-tank-59-winter-assault-mp014/index.json new file mode 100644 index 000000000000..41ef78a4ecb4 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-winter-assault-mp014/index.json @@ -0,0 +1,31 @@ +{ + "id": 156596, + "slug": "tiger-tank-59-winter-assault-mp014", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP014", + "release_date": "2021-07-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185673" + ], + "created_at": "2026-07-10T10:10:47.117688", + "updated_at": "2026-07-10T10:10:47.117688", + "url": "/v1/games/tiger-tank-59-winter-assault-mp014" +} diff --git a/site/public/v1/games/tiger-tank-59-winter-assault-mp015/index.json b/site/public/v1/games/tiger-tank-59-winter-assault-mp015/index.json new file mode 100644 index 000000000000..e31065e8f36a --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-winter-assault-mp015/index.json @@ -0,0 +1,31 @@ +{ + "id": 156597, + "slug": "tiger-tank-59-winter-assault-mp015", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP015", + "release_date": "2021-07-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185676" + ], + "created_at": "2026-07-10T10:10:47.117688", + "updated_at": "2026-07-10T10:10:47.117688", + "url": "/v1/games/tiger-tank-59-winter-assault-mp015" +} diff --git a/site/public/v1/games/tiger-tank-59-winter-assault-mp016/index.json b/site/public/v1/games/tiger-tank-59-winter-assault-mp016/index.json new file mode 100644 index 000000000000..26b14d76d5b2 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-winter-assault-mp016/index.json @@ -0,0 +1,31 @@ +{ + "id": 156598, + "slug": "tiger-tank-59-winter-assault-mp016", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP016", + "release_date": "2021-07-25", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185678" + ], + "created_at": "2026-07-10T10:10:47.117688", + "updated_at": "2026-07-10T10:10:47.117688", + "url": "/v1/games/tiger-tank-59-winter-assault-mp016" +} diff --git a/site/public/v1/games/tiger-tank-59-winter-assault-mp017/index.json b/site/public/v1/games/tiger-tank-59-winter-assault-mp017/index.json new file mode 100644 index 000000000000..2332d9641893 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-winter-assault-mp017/index.json @@ -0,0 +1,31 @@ +{ + "id": 156599, + "slug": "tiger-tank-59-winter-assault-mp017", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP017", + "release_date": "2021-07-25", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185680" + ], + "created_at": "2026-07-10T10:10:47.117688", + "updated_at": "2026-07-10T10:10:47.117688", + "url": "/v1/games/tiger-tank-59-winter-assault-mp017" +} diff --git a/site/public/v1/games/tiger-tank-59-winter-assault-mp018/index.json b/site/public/v1/games/tiger-tank-59-winter-assault-mp018/index.json new file mode 100644 index 000000000000..f89adc373ef8 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-winter-assault-mp018/index.json @@ -0,0 +1,31 @@ +{ + "id": 156600, + "slug": "tiger-tank-59-winter-assault-mp018", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP018", + "release_date": "2021-07-25", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185684" + ], + "created_at": "2026-07-10T10:10:47.118718", + "updated_at": "2026-07-10T10:10:47.118718", + "url": "/v1/games/tiger-tank-59-winter-assault-mp018" +} diff --git a/site/public/v1/games/tiger-tank-59-winter-assault-mp019/index.json b/site/public/v1/games/tiger-tank-59-winter-assault-mp019/index.json new file mode 100644 index 000000000000..d22454e78455 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-winter-assault-mp019/index.json @@ -0,0 +1,31 @@ +{ + "id": 156601, + "slug": "tiger-tank-59-winter-assault-mp019", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP019", + "release_date": "2021-07-25", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185686" + ], + "created_at": "2026-07-10T10:10:47.118718", + "updated_at": "2026-07-10T10:10:47.118718", + "url": "/v1/games/tiger-tank-59-winter-assault-mp019" +} diff --git a/site/public/v1/games/tiger-tank-59-winter-assault-mp020/index.json b/site/public/v1/games/tiger-tank-59-winter-assault-mp020/index.json new file mode 100644 index 000000000000..692c77ba9286 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-winter-assault-mp020/index.json @@ -0,0 +1,31 @@ +{ + "id": 156602, + "slug": "tiger-tank-59-winter-assault-mp020", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP020", + "release_date": "2021-07-25", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185688" + ], + "created_at": "2026-07-10T10:10:47.118718", + "updated_at": "2026-07-10T10:10:47.118718", + "url": "/v1/games/tiger-tank-59-winter-assault-mp020" +} diff --git a/site/public/v1/games/tiger-tank-59-winter-assault-mp021/index.json b/site/public/v1/games/tiger-tank-59-winter-assault-mp021/index.json new file mode 100644 index 000000000000..95677a5a15a5 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-winter-assault-mp021/index.json @@ -0,0 +1,31 @@ +{ + "id": 156603, + "slug": "tiger-tank-59-winter-assault-mp021", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP021", + "release_date": "2021-07-25", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185690" + ], + "created_at": "2026-07-10T10:10:47.118718", + "updated_at": "2026-07-10T10:10:47.118718", + "url": "/v1/games/tiger-tank-59-winter-assault-mp021" +} diff --git a/site/public/v1/games/tiger-tank-59-winter-assault-mp022/index.json b/site/public/v1/games/tiger-tank-59-winter-assault-mp022/index.json new file mode 100644 index 000000000000..f0c1f6885e37 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-winter-assault-mp022/index.json @@ -0,0 +1,31 @@ +{ + "id": 156604, + "slug": "tiger-tank-59-winter-assault-mp022", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP022", + "release_date": "2021-07-25", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185692" + ], + "created_at": "2026-07-10T10:10:47.119690", + "updated_at": "2026-07-10T10:10:47.119690", + "url": "/v1/games/tiger-tank-59-winter-assault-mp022" +} diff --git a/site/public/v1/games/tiger-tank-59-winter-assault-mp023/index.json b/site/public/v1/games/tiger-tank-59-winter-assault-mp023/index.json new file mode 100644 index 000000000000..ab63a2af2588 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-winter-assault-mp023/index.json @@ -0,0 +1,31 @@ +{ + "id": 156605, + "slug": "tiger-tank-59-winter-assault-mp023", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP023", + "release_date": "2021-07-25", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185695" + ], + "created_at": "2026-07-10T10:10:47.119690", + "updated_at": "2026-07-10T10:10:47.119690", + "url": "/v1/games/tiger-tank-59-winter-assault-mp023" +} diff --git a/site/public/v1/games/tiger-tank-59-winter-assault-mp024/index.json b/site/public/v1/games/tiger-tank-59-winter-assault-mp024/index.json new file mode 100644 index 000000000000..d1ba35d41b12 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-winter-assault-mp024/index.json @@ -0,0 +1,31 @@ +{ + "id": 156606, + "slug": "tiger-tank-59-winter-assault-mp024", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP024", + "release_date": "2021-07-25", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185696" + ], + "created_at": "2026-07-10T10:10:47.119690", + "updated_at": "2026-07-10T10:10:47.119690", + "url": "/v1/games/tiger-tank-59-winter-assault-mp024" +} diff --git a/site/public/v1/games/tiger-tank-59-winter-assault-mp025/index.json b/site/public/v1/games/tiger-tank-59-winter-assault-mp025/index.json new file mode 100644 index 000000000000..ed62a88ede0e --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-winter-assault-mp025/index.json @@ -0,0 +1,31 @@ +{ + "id": 156607, + "slug": "tiger-tank-59-winter-assault-mp025", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP025", + "release_date": "2021-07-25", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185698" + ], + "created_at": "2026-07-10T10:10:47.119690", + "updated_at": "2026-07-10T10:10:47.119690", + "url": "/v1/games/tiger-tank-59-winter-assault-mp025" +} diff --git a/site/public/v1/games/tiger-tank-59-winter-assault-mp026/index.json b/site/public/v1/games/tiger-tank-59-winter-assault-mp026/index.json new file mode 100644 index 000000000000..9c755dcb9099 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-winter-assault-mp026/index.json @@ -0,0 +1,31 @@ +{ + "id": 156608, + "slug": "tiger-tank-59-winter-assault-mp026", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP026", + "release_date": "2021-07-27", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185701" + ], + "created_at": "2026-07-10T10:10:47.119690", + "updated_at": "2026-07-10T10:10:47.119690", + "url": "/v1/games/tiger-tank-59-winter-assault-mp026" +} diff --git a/site/public/v1/games/tiger-tank-59-winter-assault-mp027/index.json b/site/public/v1/games/tiger-tank-59-winter-assault-mp027/index.json new file mode 100644 index 000000000000..da885125d42f --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-winter-assault-mp027/index.json @@ -0,0 +1,31 @@ +{ + "id": 156609, + "slug": "tiger-tank-59-winter-assault-mp027", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP027", + "release_date": "2021-07-27", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185702" + ], + "created_at": "2026-07-10T10:10:47.120697", + "updated_at": "2026-07-10T10:10:47.120697", + "url": "/v1/games/tiger-tank-59-winter-assault-mp027" +} diff --git a/site/public/v1/games/tiger-tank-59-winter-assault-mp028/index.json b/site/public/v1/games/tiger-tank-59-winter-assault-mp028/index.json new file mode 100644 index 000000000000..34552cb90af8 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-winter-assault-mp028/index.json @@ -0,0 +1,31 @@ +{ + "id": 156610, + "slug": "tiger-tank-59-winter-assault-mp028", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP028", + "release_date": "2021-07-27", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185704" + ], + "created_at": "2026-07-10T10:10:47.120697", + "updated_at": "2026-07-10T10:10:47.120697", + "url": "/v1/games/tiger-tank-59-winter-assault-mp028" +} diff --git a/site/public/v1/games/tiger-tank-59-winter-assault-mp029/index.json b/site/public/v1/games/tiger-tank-59-winter-assault-mp029/index.json new file mode 100644 index 000000000000..3eee46762ec8 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-winter-assault-mp029/index.json @@ -0,0 +1,31 @@ +{ + "id": 156611, + "slug": "tiger-tank-59-winter-assault-mp029", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP029", + "release_date": "2021-07-27", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185706" + ], + "created_at": "2026-07-10T10:10:47.120697", + "updated_at": "2026-07-10T10:10:47.120697", + "url": "/v1/games/tiger-tank-59-winter-assault-mp029" +} diff --git a/site/public/v1/games/tiger-tank-59-winter-assault-mp030/index.json b/site/public/v1/games/tiger-tank-59-winter-assault-mp030/index.json new file mode 100644 index 000000000000..46c0a730fee3 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-winter-assault-mp030/index.json @@ -0,0 +1,31 @@ +{ + "id": 156612, + "slug": "tiger-tank-59-winter-assault-mp030", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP030", + "release_date": "2021-07-27", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185707" + ], + "created_at": "2026-07-10T10:10:47.120697", + "updated_at": "2026-07-10T10:10:47.120697", + "url": "/v1/games/tiger-tank-59-winter-assault-mp030" +} diff --git a/site/public/v1/games/tiger-tank-59-winter-assault-mp031/index.json b/site/public/v1/games/tiger-tank-59-winter-assault-mp031/index.json new file mode 100644 index 000000000000..62c1dc1ef0cf --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-winter-assault-mp031/index.json @@ -0,0 +1,31 @@ +{ + "id": 156613, + "slug": "tiger-tank-59-winter-assault-mp031", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP031", + "release_date": "2021-07-27", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185708" + ], + "created_at": "2026-07-10T10:10:47.120697", + "updated_at": "2026-07-10T10:10:47.120697", + "url": "/v1/games/tiger-tank-59-winter-assault-mp031" +} diff --git a/site/public/v1/games/tiger-tank-59-winter-assault-mp032/index.json b/site/public/v1/games/tiger-tank-59-winter-assault-mp032/index.json new file mode 100644 index 000000000000..5dd03c64cdf1 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-winter-assault-mp032/index.json @@ -0,0 +1,31 @@ +{ + "id": 156614, + "slug": "tiger-tank-59-winter-assault-mp032", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP032", + "release_date": "2021-07-27", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185710" + ], + "created_at": "2026-07-10T10:10:47.121686", + "updated_at": "2026-07-10T10:10:47.121686", + "url": "/v1/games/tiger-tank-59-winter-assault-mp032" +} diff --git a/site/public/v1/games/tiger-tank-59-winter-assault-mp033/index.json b/site/public/v1/games/tiger-tank-59-winter-assault-mp033/index.json new file mode 100644 index 000000000000..4feeaba450f6 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-winter-assault-mp033/index.json @@ -0,0 +1,31 @@ +{ + "id": 156615, + "slug": "tiger-tank-59-winter-assault-mp033", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP033", + "release_date": "2021-07-27", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185712" + ], + "created_at": "2026-07-10T10:10:47.121686", + "updated_at": "2026-07-10T10:10:47.121686", + "url": "/v1/games/tiger-tank-59-winter-assault-mp033" +} diff --git a/site/public/v1/games/tiger-tank-59-winter-assault-mp034/index.json b/site/public/v1/games/tiger-tank-59-winter-assault-mp034/index.json new file mode 100644 index 000000000000..3d28f53f0843 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-winter-assault-mp034/index.json @@ -0,0 +1,31 @@ +{ + "id": 156616, + "slug": "tiger-tank-59-winter-assault-mp034", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP034", + "release_date": "2021-07-27", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185714" + ], + "created_at": "2026-07-10T10:10:47.121686", + "updated_at": "2026-07-10T10:10:47.121686", + "url": "/v1/games/tiger-tank-59-winter-assault-mp034" +} diff --git a/site/public/v1/games/tiger-tank-59-winter-assault-mp035/index.json b/site/public/v1/games/tiger-tank-59-winter-assault-mp035/index.json new file mode 100644 index 000000000000..fc80e8b91f67 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-winter-assault-mp035/index.json @@ -0,0 +1,31 @@ +{ + "id": 156617, + "slug": "tiger-tank-59-winter-assault-mp035", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP035", + "release_date": "2021-07-27", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185715" + ], + "created_at": "2026-07-10T10:10:47.121686", + "updated_at": "2026-07-10T10:10:47.121686", + "url": "/v1/games/tiger-tank-59-winter-assault-mp035" +} diff --git a/site/public/v1/games/tiger-tank-59-winter-assault-mp036/index.json b/site/public/v1/games/tiger-tank-59-winter-assault-mp036/index.json new file mode 100644 index 000000000000..3f2839fbbd7d --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-winter-assault-mp036/index.json @@ -0,0 +1,31 @@ +{ + "id": 156618, + "slug": "tiger-tank-59-winter-assault-mp036", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP036", + "release_date": "2021-07-31", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185716" + ], + "created_at": "2026-07-10T10:10:47.122709", + "updated_at": "2026-07-10T10:10:47.122709", + "url": "/v1/games/tiger-tank-59-winter-assault-mp036" +} diff --git a/site/public/v1/games/tiger-tank-59-winter-assault-mp037/index.json b/site/public/v1/games/tiger-tank-59-winter-assault-mp037/index.json new file mode 100644 index 000000000000..43cba006a899 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-winter-assault-mp037/index.json @@ -0,0 +1,31 @@ +{ + "id": 156619, + "slug": "tiger-tank-59-winter-assault-mp037", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP037", + "release_date": "2021-07-31", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185718" + ], + "created_at": "2026-07-10T10:10:47.122709", + "updated_at": "2026-07-10T10:10:47.122709", + "url": "/v1/games/tiger-tank-59-winter-assault-mp037" +} diff --git a/site/public/v1/games/tiger-tank-59-winter-assault-mp038/index.json b/site/public/v1/games/tiger-tank-59-winter-assault-mp038/index.json new file mode 100644 index 000000000000..6755e3456458 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-winter-assault-mp038/index.json @@ -0,0 +1,31 @@ +{ + "id": 156620, + "slug": "tiger-tank-59-winter-assault-mp038", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP038", + "release_date": "2021-07-31", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185719" + ], + "created_at": "2026-07-10T10:10:47.122709", + "updated_at": "2026-07-10T10:10:47.122709", + "url": "/v1/games/tiger-tank-59-winter-assault-mp038" +} diff --git a/site/public/v1/games/tiger-tank-59-winter-assault-mp039/index.json b/site/public/v1/games/tiger-tank-59-winter-assault-mp039/index.json new file mode 100644 index 000000000000..2ed8f76d87e1 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-winter-assault-mp039/index.json @@ -0,0 +1,31 @@ +{ + "id": 156621, + "slug": "tiger-tank-59-winter-assault-mp039", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP039", + "release_date": "2021-07-31", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185720" + ], + "created_at": "2026-07-10T10:10:47.122709", + "updated_at": "2026-07-10T10:10:47.122709", + "url": "/v1/games/tiger-tank-59-winter-assault-mp039" +} diff --git a/site/public/v1/games/tiger-tank-59-winter-assault-mp040/index.json b/site/public/v1/games/tiger-tank-59-winter-assault-mp040/index.json new file mode 100644 index 000000000000..9d1832e9f878 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-winter-assault-mp040/index.json @@ -0,0 +1,31 @@ +{ + "id": 156622, + "slug": "tiger-tank-59-winter-assault-mp040", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP040", + "release_date": "2021-07-31", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185722" + ], + "created_at": "2026-07-10T10:10:47.122709", + "updated_at": "2026-07-10T10:10:47.122709", + "url": "/v1/games/tiger-tank-59-winter-assault-mp040" +} diff --git a/site/public/v1/games/tiger-tank-59-winter-assault-mp041/index.json b/site/public/v1/games/tiger-tank-59-winter-assault-mp041/index.json new file mode 100644 index 000000000000..c69294bbf79c --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-winter-assault-mp041/index.json @@ -0,0 +1,31 @@ +{ + "id": 156623, + "slug": "tiger-tank-59-winter-assault-mp041", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP041", + "release_date": "2021-07-31", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185724" + ], + "created_at": "2026-07-10T10:10:47.123693", + "updated_at": "2026-07-10T10:10:47.123693", + "url": "/v1/games/tiger-tank-59-winter-assault-mp041" +} diff --git a/site/public/v1/games/tiger-tank-59-winter-assault-mp042/index.json b/site/public/v1/games/tiger-tank-59-winter-assault-mp042/index.json new file mode 100644 index 000000000000..0607bbd9737c --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-winter-assault-mp042/index.json @@ -0,0 +1,31 @@ +{ + "id": 156624, + "slug": "tiger-tank-59-winter-assault-mp042", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP042", + "release_date": "2021-07-31", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185726" + ], + "created_at": "2026-07-10T10:10:47.123693", + "updated_at": "2026-07-10T10:10:47.123693", + "url": "/v1/games/tiger-tank-59-winter-assault-mp042" +} diff --git a/site/public/v1/games/tiger-tank-59-winter-assault-mp043/index.json b/site/public/v1/games/tiger-tank-59-winter-assault-mp043/index.json new file mode 100644 index 000000000000..444055f31176 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-winter-assault-mp043/index.json @@ -0,0 +1,31 @@ +{ + "id": 156625, + "slug": "tiger-tank-59-winter-assault-mp043", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP043", + "release_date": "2021-07-31", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185730" + ], + "created_at": "2026-07-10T10:10:47.123693", + "updated_at": "2026-07-10T10:10:47.123693", + "url": "/v1/games/tiger-tank-59-winter-assault-mp043" +} diff --git a/site/public/v1/games/tiger-tank-59-winter-assault-mp044/index.json b/site/public/v1/games/tiger-tank-59-winter-assault-mp044/index.json new file mode 100644 index 000000000000..559259bf0d7c --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-winter-assault-mp044/index.json @@ -0,0 +1,31 @@ +{ + "id": 156626, + "slug": "tiger-tank-59-winter-assault-mp044", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP044", + "release_date": "2021-08-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185733" + ], + "created_at": "2026-07-10T10:10:47.124698", + "updated_at": "2026-07-10T10:10:47.124698", + "url": "/v1/games/tiger-tank-59-winter-assault-mp044" +} diff --git a/site/public/v1/games/tiger-tank-59-winter-assault-mp045/index.json b/site/public/v1/games/tiger-tank-59-winter-assault-mp045/index.json new file mode 100644 index 000000000000..8a4dbb091b21 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-winter-assault-mp045/index.json @@ -0,0 +1,31 @@ +{ + "id": 156627, + "slug": "tiger-tank-59-winter-assault-mp045", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP045", + "release_date": "2021-07-31", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185735" + ], + "created_at": "2026-07-10T10:10:47.124698", + "updated_at": "2026-07-10T10:10:47.124698", + "url": "/v1/games/tiger-tank-59-winter-assault-mp045" +} diff --git a/site/public/v1/games/tiger-tank-59-winter-assault-mp046/index.json b/site/public/v1/games/tiger-tank-59-winter-assault-mp046/index.json new file mode 100644 index 000000000000..f49934255a4c --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-winter-assault-mp046/index.json @@ -0,0 +1,31 @@ +{ + "id": 156628, + "slug": "tiger-tank-59-winter-assault-mp046", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP046", + "release_date": "2021-08-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185737" + ], + "created_at": "2026-07-10T10:10:47.124698", + "updated_at": "2026-07-10T10:10:47.124698", + "url": "/v1/games/tiger-tank-59-winter-assault-mp046" +} diff --git a/site/public/v1/games/tiger-tank-59-winter-assault-mp047/index.json b/site/public/v1/games/tiger-tank-59-winter-assault-mp047/index.json new file mode 100644 index 000000000000..3f99b70df22a --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-winter-assault-mp047/index.json @@ -0,0 +1,31 @@ +{ + "id": 156629, + "slug": "tiger-tank-59-winter-assault-mp047", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP047", + "release_date": "2021-08-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185738" + ], + "created_at": "2026-07-10T10:10:47.124698", + "updated_at": "2026-07-10T10:10:47.124698", + "url": "/v1/games/tiger-tank-59-winter-assault-mp047" +} diff --git a/site/public/v1/games/tiger-tank-59-winter-assault-mp048/index.json b/site/public/v1/games/tiger-tank-59-winter-assault-mp048/index.json new file mode 100644 index 000000000000..ceeb0d155127 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-winter-assault-mp048/index.json @@ -0,0 +1,31 @@ +{ + "id": 156630, + "slug": "tiger-tank-59-winter-assault-mp048", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP048", + "release_date": "2021-08-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185742" + ], + "created_at": "2026-07-10T10:10:47.124698", + "updated_at": "2026-07-10T10:10:47.124698", + "url": "/v1/games/tiger-tank-59-winter-assault-mp048" +} diff --git a/site/public/v1/games/tiger-tank-59-winter-assault-mp049/index.json b/site/public/v1/games/tiger-tank-59-winter-assault-mp049/index.json new file mode 100644 index 000000000000..b49ca9c4a4db --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-winter-assault-mp049/index.json @@ -0,0 +1,31 @@ +{ + "id": 156631, + "slug": "tiger-tank-59-winter-assault-mp049", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP049", + "release_date": "2021-08-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185744" + ], + "created_at": "2026-07-10T10:10:47.125625", + "updated_at": "2026-07-10T10:10:47.125625", + "url": "/v1/games/tiger-tank-59-winter-assault-mp049" +} diff --git a/site/public/v1/games/tiger-tank-59-winter-assault-mp050/index.json b/site/public/v1/games/tiger-tank-59-winter-assault-mp050/index.json new file mode 100644 index 000000000000..33e3c5b5f41b --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-winter-assault-mp050/index.json @@ -0,0 +1,31 @@ +{ + "id": 156632, + "slug": "tiger-tank-59-winter-assault-mp050", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP050", + "release_date": "2021-08-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185745" + ], + "created_at": "2026-07-10T10:10:47.125625", + "updated_at": "2026-07-10T10:10:47.125625", + "url": "/v1/games/tiger-tank-59-winter-assault-mp050" +} diff --git a/site/public/v1/games/tiger-tank-59-winter-assault-mp051/index.json b/site/public/v1/games/tiger-tank-59-winter-assault-mp051/index.json new file mode 100644 index 000000000000..69a38c0fdf6b --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-winter-assault-mp051/index.json @@ -0,0 +1,31 @@ +{ + "id": 156633, + "slug": "tiger-tank-59-winter-assault-mp051", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP051", + "release_date": "2021-08-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185747" + ], + "created_at": "2026-07-10T10:10:47.125625", + "updated_at": "2026-07-10T10:10:47.125625", + "url": "/v1/games/tiger-tank-59-winter-assault-mp051" +} diff --git a/site/public/v1/games/tiger-tank-59-winter-assault-mp052/index.json b/site/public/v1/games/tiger-tank-59-winter-assault-mp052/index.json new file mode 100644 index 000000000000..212d795ba6f9 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-winter-assault-mp052/index.json @@ -0,0 +1,31 @@ +{ + "id": 156634, + "slug": "tiger-tank-59-winter-assault-mp052", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP052", + "release_date": "2021-08-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185749" + ], + "created_at": "2026-07-10T10:10:47.125625", + "updated_at": "2026-07-10T10:10:47.125625", + "url": "/v1/games/tiger-tank-59-winter-assault-mp052" +} diff --git a/site/public/v1/games/tiger-tank-59-winter-assault-mp053/index.json b/site/public/v1/games/tiger-tank-59-winter-assault-mp053/index.json new file mode 100644 index 000000000000..867d14fb8b59 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-winter-assault-mp053/index.json @@ -0,0 +1,31 @@ +{ + "id": 156635, + "slug": "tiger-tank-59-winter-assault-mp053", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP053", + "release_date": "2021-08-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185752" + ], + "created_at": "2026-07-10T10:10:47.125625", + "updated_at": "2026-07-10T10:10:47.125625", + "url": "/v1/games/tiger-tank-59-winter-assault-mp053" +} diff --git a/site/public/v1/games/tiger-tank-59-winter-assault-mp054/index.json b/site/public/v1/games/tiger-tank-59-winter-assault-mp054/index.json new file mode 100644 index 000000000000..641fe4cb5f70 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-winter-assault-mp054/index.json @@ -0,0 +1,31 @@ +{ + "id": 156636, + "slug": "tiger-tank-59-winter-assault-mp054", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP054", + "release_date": "2021-08-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185753" + ], + "created_at": "2026-07-10T10:10:47.126624", + "updated_at": "2026-07-10T10:10:47.126624", + "url": "/v1/games/tiger-tank-59-winter-assault-mp054" +} diff --git a/site/public/v1/games/tiger-tank-59-winter-assault-mp055/index.json b/site/public/v1/games/tiger-tank-59-winter-assault-mp055/index.json new file mode 100644 index 000000000000..c6f356bd82a5 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-winter-assault-mp055/index.json @@ -0,0 +1,31 @@ +{ + "id": 156637, + "slug": "tiger-tank-59-winter-assault-mp055", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP055", + "release_date": "2021-08-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185754" + ], + "created_at": "2026-07-10T10:10:47.126624", + "updated_at": "2026-07-10T10:10:47.126624", + "url": "/v1/games/tiger-tank-59-winter-assault-mp055" +} diff --git a/site/public/v1/games/tiger-tank-59-winter-assault-mp056/index.json b/site/public/v1/games/tiger-tank-59-winter-assault-mp056/index.json new file mode 100644 index 000000000000..5ea1c1a8980a --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-winter-assault-mp056/index.json @@ -0,0 +1,31 @@ +{ + "id": 156638, + "slug": "tiger-tank-59-winter-assault-mp056", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP056", + "release_date": "2021-08-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185755" + ], + "created_at": "2026-07-10T10:10:47.126624", + "updated_at": "2026-07-10T10:10:47.126624", + "url": "/v1/games/tiger-tank-59-winter-assault-mp056" +} diff --git a/site/public/v1/games/tiger-tank-59-winter-assault-mp057/index.json b/site/public/v1/games/tiger-tank-59-winter-assault-mp057/index.json new file mode 100644 index 000000000000..5e371e5582a6 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-winter-assault-mp057/index.json @@ -0,0 +1,31 @@ +{ + "id": 156639, + "slug": "tiger-tank-59-winter-assault-mp057", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP057", + "release_date": "2021-08-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185756" + ], + "created_at": "2026-07-10T10:10:47.126624", + "updated_at": "2026-07-10T10:10:47.126624", + "url": "/v1/games/tiger-tank-59-winter-assault-mp057" +} diff --git a/site/public/v1/games/tiger-tank-59-winter-assault-mp058/index.json b/site/public/v1/games/tiger-tank-59-winter-assault-mp058/index.json new file mode 100644 index 000000000000..e5c635b9c145 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-winter-assault-mp058/index.json @@ -0,0 +1,31 @@ +{ + "id": 156640, + "slug": "tiger-tank-59-winter-assault-mp058", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP058", + "release_date": "2021-08-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185758" + ], + "created_at": "2026-07-10T10:10:47.127623", + "updated_at": "2026-07-10T10:10:47.127623", + "url": "/v1/games/tiger-tank-59-winter-assault-mp058" +} diff --git a/site/public/v1/games/tiger-tank-59-winter-assault-mp059/index.json b/site/public/v1/games/tiger-tank-59-winter-assault-mp059/index.json new file mode 100644 index 000000000000..78f07d846c74 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-winter-assault-mp059/index.json @@ -0,0 +1,31 @@ +{ + "id": 156641, + "slug": "tiger-tank-59-winter-assault-mp059", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP059", + "release_date": "2021-08-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185761" + ], + "created_at": "2026-07-10T10:10:47.127623", + "updated_at": "2026-07-10T10:10:47.127623", + "url": "/v1/games/tiger-tank-59-winter-assault-mp059" +} diff --git a/site/public/v1/games/tiger-tank-59-winter-assault-mp060/index.json b/site/public/v1/games/tiger-tank-59-winter-assault-mp060/index.json new file mode 100644 index 000000000000..8fbc43f79c92 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-winter-assault-mp060/index.json @@ -0,0 +1,31 @@ +{ + "id": 156642, + "slug": "tiger-tank-59-winter-assault-mp060", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP060", + "release_date": "2021-08-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185763" + ], + "created_at": "2026-07-10T10:10:47.127623", + "updated_at": "2026-07-10T10:10:47.127623", + "url": "/v1/games/tiger-tank-59-winter-assault-mp060" +} diff --git a/site/public/v1/games/tiger-tank-59-winter-assault-mp061/index.json b/site/public/v1/games/tiger-tank-59-winter-assault-mp061/index.json new file mode 100644 index 000000000000..4bff0cc4c295 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-winter-assault-mp061/index.json @@ -0,0 +1,31 @@ +{ + "id": 156643, + "slug": "tiger-tank-59-winter-assault-mp061", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP061", + "release_date": "2021-08-14", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185764" + ], + "created_at": "2026-07-10T10:10:47.127623", + "updated_at": "2026-07-10T10:10:47.127623", + "url": "/v1/games/tiger-tank-59-winter-assault-mp061" +} diff --git a/site/public/v1/games/tiger-tank-59-winter-assault-mp062/index.json b/site/public/v1/games/tiger-tank-59-winter-assault-mp062/index.json new file mode 100644 index 000000000000..0071dd64038a --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-winter-assault-mp062/index.json @@ -0,0 +1,31 @@ +{ + "id": 156644, + "slug": "tiger-tank-59-winter-assault-mp062", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP062", + "release_date": "2021-08-14", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185765" + ], + "created_at": "2026-07-10T10:10:47.127623", + "updated_at": "2026-07-10T10:10:47.127623", + "url": "/v1/games/tiger-tank-59-winter-assault-mp062" +} diff --git a/site/public/v1/games/tiger-tank-59-winter-assault-mp063/index.json b/site/public/v1/games/tiger-tank-59-winter-assault-mp063/index.json new file mode 100644 index 000000000000..3887355db23b --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-winter-assault-mp063/index.json @@ -0,0 +1,31 @@ +{ + "id": 156645, + "slug": "tiger-tank-59-winter-assault-mp063", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP063", + "release_date": "2021-08-14", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185768" + ], + "created_at": "2026-07-10T10:10:47.128623", + "updated_at": "2026-07-10T10:10:47.128623", + "url": "/v1/games/tiger-tank-59-winter-assault-mp063" +} diff --git a/site/public/v1/games/tiger-tank-59-winter-assault-mp064/index.json b/site/public/v1/games/tiger-tank-59-winter-assault-mp064/index.json new file mode 100644 index 000000000000..a75eda490221 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-winter-assault-mp064/index.json @@ -0,0 +1,31 @@ +{ + "id": 156646, + "slug": "tiger-tank-59-winter-assault-mp064", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP064", + "release_date": "2021-08-14", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185769" + ], + "created_at": "2026-07-10T10:10:47.128623", + "updated_at": "2026-07-10T10:10:47.128623", + "url": "/v1/games/tiger-tank-59-winter-assault-mp064" +} diff --git a/site/public/v1/games/tiger-tank-59-winter-assault-mp065/index.json b/site/public/v1/games/tiger-tank-59-winter-assault-mp065/index.json new file mode 100644 index 000000000000..b18002620571 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-winter-assault-mp065/index.json @@ -0,0 +1,31 @@ +{ + "id": 156647, + "slug": "tiger-tank-59-winter-assault-mp065", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP065", + "release_date": "2021-08-14", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185772" + ], + "created_at": "2026-07-10T10:10:47.128623", + "updated_at": "2026-07-10T10:10:47.128623", + "url": "/v1/games/tiger-tank-59-winter-assault-mp065" +} diff --git a/site/public/v1/games/tiger-tank-59-winter-assault-mp066/index.json b/site/public/v1/games/tiger-tank-59-winter-assault-mp066/index.json new file mode 100644 index 000000000000..926fa8c0c3ee --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-winter-assault-mp066/index.json @@ -0,0 +1,31 @@ +{ + "id": 156648, + "slug": "tiger-tank-59-winter-assault-mp066", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP066", + "release_date": "2021-08-14", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185773" + ], + "created_at": "2026-07-10T10:10:47.128623", + "updated_at": "2026-07-10T10:10:47.128623", + "url": "/v1/games/tiger-tank-59-winter-assault-mp066" +} diff --git a/site/public/v1/games/tiger-tank-59-winter-assault-mp067/index.json b/site/public/v1/games/tiger-tank-59-winter-assault-mp067/index.json new file mode 100644 index 000000000000..e538958ddc6d --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-winter-assault-mp067/index.json @@ -0,0 +1,31 @@ +{ + "id": 156649, + "slug": "tiger-tank-59-winter-assault-mp067", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP067", + "release_date": "2021-08-14", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185774" + ], + "created_at": "2026-07-10T10:10:47.129622", + "updated_at": "2026-07-10T10:10:47.129622", + "url": "/v1/games/tiger-tank-59-winter-assault-mp067" +} diff --git a/site/public/v1/games/tiger-tank-59-winter-assault-mp068/index.json b/site/public/v1/games/tiger-tank-59-winter-assault-mp068/index.json new file mode 100644 index 000000000000..da35dc0e1028 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-winter-assault-mp068/index.json @@ -0,0 +1,31 @@ +{ + "id": 156650, + "slug": "tiger-tank-59-winter-assault-mp068", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP068", + "release_date": "2021-08-14", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185776" + ], + "created_at": "2026-07-10T10:10:47.129622", + "updated_at": "2026-07-10T10:10:47.129622", + "url": "/v1/games/tiger-tank-59-winter-assault-mp068" +} diff --git a/site/public/v1/games/tiger-tank-59-winter-assault-mp069/index.json b/site/public/v1/games/tiger-tank-59-winter-assault-mp069/index.json new file mode 100644 index 000000000000..3751fec5caca --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-winter-assault-mp069/index.json @@ -0,0 +1,31 @@ +{ + "id": 156651, + "slug": "tiger-tank-59-winter-assault-mp069", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP069", + "release_date": "2021-08-14", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185777" + ], + "created_at": "2026-07-10T10:10:47.129622", + "updated_at": "2026-07-10T10:10:47.129622", + "url": "/v1/games/tiger-tank-59-winter-assault-mp069" +} diff --git a/site/public/v1/games/tiger-tank-59-winter-assault-mp070/index.json b/site/public/v1/games/tiger-tank-59-winter-assault-mp070/index.json new file mode 100644 index 000000000000..db26aa990c1f --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-winter-assault-mp070/index.json @@ -0,0 +1,31 @@ +{ + "id": 156652, + "slug": "tiger-tank-59-winter-assault-mp070", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP070", + "release_date": "2021-08-14", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185780" + ], + "created_at": "2026-07-10T10:10:47.129622", + "updated_at": "2026-07-10T10:10:47.129622", + "url": "/v1/games/tiger-tank-59-winter-assault-mp070" +} diff --git a/site/public/v1/games/tiger-tank-59-winter-assault-mp071/index.json b/site/public/v1/games/tiger-tank-59-winter-assault-mp071/index.json new file mode 100644 index 000000000000..e89d7994844c --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-winter-assault-mp071/index.json @@ -0,0 +1,31 @@ +{ + "id": 156653, + "slug": "tiger-tank-59-winter-assault-mp071", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP071", + "release_date": "2021-08-19", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185781" + ], + "created_at": "2026-07-10T10:10:47.129622", + "updated_at": "2026-07-10T10:10:47.129622", + "url": "/v1/games/tiger-tank-59-winter-assault-mp071" +} diff --git a/site/public/v1/games/tiger-tank-59-winter-assault-mp072/index.json b/site/public/v1/games/tiger-tank-59-winter-assault-mp072/index.json new file mode 100644 index 000000000000..30f995e536b9 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-winter-assault-mp072/index.json @@ -0,0 +1,31 @@ +{ + "id": 156654, + "slug": "tiger-tank-59-winter-assault-mp072", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP072", + "release_date": "2021-08-19", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185783" + ], + "created_at": "2026-07-10T10:10:47.130622", + "updated_at": "2026-07-10T10:10:47.130622", + "url": "/v1/games/tiger-tank-59-winter-assault-mp072" +} diff --git a/site/public/v1/games/tiger-tank-59-winter-assault-mp073/index.json b/site/public/v1/games/tiger-tank-59-winter-assault-mp073/index.json new file mode 100644 index 000000000000..4edb90c4faa1 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-winter-assault-mp073/index.json @@ -0,0 +1,31 @@ +{ + "id": 156655, + "slug": "tiger-tank-59-winter-assault-mp073", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP073", + "release_date": "2021-08-19", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185784" + ], + "created_at": "2026-07-10T10:10:47.130622", + "updated_at": "2026-07-10T10:10:47.130622", + "url": "/v1/games/tiger-tank-59-winter-assault-mp073" +} diff --git a/site/public/v1/games/tiger-tank-59-winter-assault-mp074/index.json b/site/public/v1/games/tiger-tank-59-winter-assault-mp074/index.json new file mode 100644 index 000000000000..7fe0a1076989 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-winter-assault-mp074/index.json @@ -0,0 +1,31 @@ +{ + "id": 156656, + "slug": "tiger-tank-59-winter-assault-mp074", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP074", + "release_date": "2021-08-19", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185788" + ], + "created_at": "2026-07-10T10:10:47.130622", + "updated_at": "2026-07-10T10:10:47.130622", + "url": "/v1/games/tiger-tank-59-winter-assault-mp074" +} diff --git a/site/public/v1/games/tiger-tank-59-winter-assault-mp075/index.json b/site/public/v1/games/tiger-tank-59-winter-assault-mp075/index.json new file mode 100644 index 000000000000..86e4dc7de029 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-winter-assault-mp075/index.json @@ -0,0 +1,31 @@ +{ + "id": 156657, + "slug": "tiger-tank-59-winter-assault-mp075", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP075", + "release_date": "2021-08-19", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185789" + ], + "created_at": "2026-07-10T10:10:47.130622", + "updated_at": "2026-07-10T10:10:47.130622", + "url": "/v1/games/tiger-tank-59-winter-assault-mp075" +} diff --git a/site/public/v1/games/tiger-tank-59-winter-assault-mp076/index.json b/site/public/v1/games/tiger-tank-59-winter-assault-mp076/index.json new file mode 100644 index 000000000000..287784a79782 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-winter-assault-mp076/index.json @@ -0,0 +1,31 @@ +{ + "id": 156658, + "slug": "tiger-tank-59-winter-assault-mp076", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP076", + "release_date": "2021-08-19", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185790" + ], + "created_at": "2026-07-10T10:10:47.131679", + "updated_at": "2026-07-10T10:10:47.131679", + "url": "/v1/games/tiger-tank-59-winter-assault-mp076" +} diff --git a/site/public/v1/games/tiger-tank-59-winter-assault-mp077/index.json b/site/public/v1/games/tiger-tank-59-winter-assault-mp077/index.json new file mode 100644 index 000000000000..9ca3c5eefb1b --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-winter-assault-mp077/index.json @@ -0,0 +1,31 @@ +{ + "id": 156659, + "slug": "tiger-tank-59-winter-assault-mp077", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP077", + "release_date": "2021-08-19", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185792" + ], + "created_at": "2026-07-10T10:10:47.131679", + "updated_at": "2026-07-10T10:10:47.131679", + "url": "/v1/games/tiger-tank-59-winter-assault-mp077" +} diff --git a/site/public/v1/games/tiger-tank-59-winter-assault-mp078/index.json b/site/public/v1/games/tiger-tank-59-winter-assault-mp078/index.json new file mode 100644 index 000000000000..ac6b993ad2c3 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-winter-assault-mp078/index.json @@ -0,0 +1,31 @@ +{ + "id": 156660, + "slug": "tiger-tank-59-winter-assault-mp078", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP078", + "release_date": "2021-08-19", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185793" + ], + "created_at": "2026-07-10T10:10:47.131679", + "updated_at": "2026-07-10T10:10:47.131679", + "url": "/v1/games/tiger-tank-59-winter-assault-mp078" +} diff --git a/site/public/v1/games/tiger-tank-59-winter-assault-mp079/index.json b/site/public/v1/games/tiger-tank-59-winter-assault-mp079/index.json new file mode 100644 index 000000000000..9cb3aca12739 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-winter-assault-mp079/index.json @@ -0,0 +1,31 @@ +{ + "id": 156661, + "slug": "tiger-tank-59-winter-assault-mp079", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP079", + "release_date": "2021-08-19", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185795" + ], + "created_at": "2026-07-10T10:10:47.131679", + "updated_at": "2026-07-10T10:10:47.131679", + "url": "/v1/games/tiger-tank-59-winter-assault-mp079" +} diff --git a/site/public/v1/games/tiger-tank-59-winter-assault-mp080/index.json b/site/public/v1/games/tiger-tank-59-winter-assault-mp080/index.json new file mode 100644 index 000000000000..795642f0acd3 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-winter-assault-mp080/index.json @@ -0,0 +1,31 @@ +{ + "id": 156662, + "slug": "tiger-tank-59-winter-assault-mp080", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP080", + "release_date": "2021-08-19", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185797" + ], + "created_at": "2026-07-10T10:10:47.132700", + "updated_at": "2026-07-10T10:10:47.132700", + "url": "/v1/games/tiger-tank-59-winter-assault-mp080" +} diff --git a/site/public/v1/games/tiger-tank-59-winter-assault-mp081/index.json b/site/public/v1/games/tiger-tank-59-winter-assault-mp081/index.json new file mode 100644 index 000000000000..f70838663b05 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-winter-assault-mp081/index.json @@ -0,0 +1,31 @@ +{ + "id": 156663, + "slug": "tiger-tank-59-winter-assault-mp081", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP081", + "release_date": "2021-08-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185798" + ], + "created_at": "2026-07-10T10:10:47.132700", + "updated_at": "2026-07-10T10:10:47.132700", + "url": "/v1/games/tiger-tank-59-winter-assault-mp081" +} diff --git a/site/public/v1/games/tiger-tank-59-winter-assault-mp082/index.json b/site/public/v1/games/tiger-tank-59-winter-assault-mp082/index.json new file mode 100644 index 000000000000..d67cc87ae62a --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-winter-assault-mp082/index.json @@ -0,0 +1,31 @@ +{ + "id": 156664, + "slug": "tiger-tank-59-winter-assault-mp082", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP082", + "release_date": "2021-08-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185800" + ], + "created_at": "2026-07-10T10:10:47.132700", + "updated_at": "2026-07-10T10:10:47.132700", + "url": "/v1/games/tiger-tank-59-winter-assault-mp082" +} diff --git a/site/public/v1/games/tiger-tank-59-winter-assault-mp083/index.json b/site/public/v1/games/tiger-tank-59-winter-assault-mp083/index.json new file mode 100644 index 000000000000..a5525f535573 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-winter-assault-mp083/index.json @@ -0,0 +1,31 @@ +{ + "id": 156665, + "slug": "tiger-tank-59-winter-assault-mp083", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP083", + "release_date": "2021-08-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185801" + ], + "created_at": "2026-07-10T10:10:47.132700", + "updated_at": "2026-07-10T10:10:47.132700", + "url": "/v1/games/tiger-tank-59-winter-assault-mp083" +} diff --git a/site/public/v1/games/tiger-tank-59-winter-assault-mp084/index.json b/site/public/v1/games/tiger-tank-59-winter-assault-mp084/index.json new file mode 100644 index 000000000000..0478e05209e1 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-winter-assault-mp084/index.json @@ -0,0 +1,31 @@ +{ + "id": 156666, + "slug": "tiger-tank-59-winter-assault-mp084", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP084", + "release_date": "2021-08-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185802" + ], + "created_at": "2026-07-10T10:10:47.132700", + "updated_at": "2026-07-10T10:10:47.132700", + "url": "/v1/games/tiger-tank-59-winter-assault-mp084" +} diff --git a/site/public/v1/games/tiger-tank-59-winter-assault-mp085/index.json b/site/public/v1/games/tiger-tank-59-winter-assault-mp085/index.json new file mode 100644 index 000000000000..036bea4c93e9 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-winter-assault-mp085/index.json @@ -0,0 +1,31 @@ +{ + "id": 156667, + "slug": "tiger-tank-59-winter-assault-mp085", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP085", + "release_date": "2021-08-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185803" + ], + "created_at": "2026-07-10T10:10:47.133675", + "updated_at": "2026-07-10T10:10:47.133675", + "url": "/v1/games/tiger-tank-59-winter-assault-mp085" +} diff --git a/site/public/v1/games/tiger-tank-59-winter-assault-mp086/index.json b/site/public/v1/games/tiger-tank-59-winter-assault-mp086/index.json new file mode 100644 index 000000000000..f9238ca26022 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-winter-assault-mp086/index.json @@ -0,0 +1,31 @@ +{ + "id": 156668, + "slug": "tiger-tank-59-winter-assault-mp086", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP086", + "release_date": "2021-08-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185804" + ], + "created_at": "2026-07-10T10:10:47.133675", + "updated_at": "2026-07-10T10:10:47.133675", + "url": "/v1/games/tiger-tank-59-winter-assault-mp086" +} diff --git a/site/public/v1/games/tiger-tank-59-winter-assault-mp087/index.json b/site/public/v1/games/tiger-tank-59-winter-assault-mp087/index.json new file mode 100644 index 000000000000..0572cd459588 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-winter-assault-mp087/index.json @@ -0,0 +1,31 @@ +{ + "id": 156669, + "slug": "tiger-tank-59-winter-assault-mp087", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP087", + "release_date": "2021-08-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185806" + ], + "created_at": "2026-07-10T10:10:47.133675", + "updated_at": "2026-07-10T10:10:47.133675", + "url": "/v1/games/tiger-tank-59-winter-assault-mp087" +} diff --git a/site/public/v1/games/tiger-tank-59-winter-assault-mp088/index.json b/site/public/v1/games/tiger-tank-59-winter-assault-mp088/index.json new file mode 100644 index 000000000000..25b0155811f5 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-winter-assault-mp088/index.json @@ -0,0 +1,31 @@ +{ + "id": 156670, + "slug": "tiger-tank-59-winter-assault-mp088", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP088", + "release_date": "2021-08-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185808" + ], + "created_at": "2026-07-10T10:10:47.133675", + "updated_at": "2026-07-10T10:10:47.133675", + "url": "/v1/games/tiger-tank-59-winter-assault-mp088" +} diff --git a/site/public/v1/games/tiger-tank-59-winter-assault-mp089/index.json b/site/public/v1/games/tiger-tank-59-winter-assault-mp089/index.json new file mode 100644 index 000000000000..1d01f3aa32ef --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-winter-assault-mp089/index.json @@ -0,0 +1,31 @@ +{ + "id": 156671, + "slug": "tiger-tank-59-winter-assault-mp089", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP089", + "release_date": "2021-08-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185810" + ], + "created_at": "2026-07-10T10:10:47.134701", + "updated_at": "2026-07-10T10:10:47.134701", + "url": "/v1/games/tiger-tank-59-winter-assault-mp089" +} diff --git a/site/public/v1/games/tiger-tank-59-winter-assault-mp090/index.json b/site/public/v1/games/tiger-tank-59-winter-assault-mp090/index.json new file mode 100644 index 000000000000..b2ead87679f0 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-winter-assault-mp090/index.json @@ -0,0 +1,31 @@ +{ + "id": 156672, + "slug": "tiger-tank-59-winter-assault-mp090", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP090", + "release_date": "2021-08-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185811" + ], + "created_at": "2026-07-10T10:10:47.134701", + "updated_at": "2026-07-10T10:10:47.134701", + "url": "/v1/games/tiger-tank-59-winter-assault-mp090" +} diff --git a/site/public/v1/games/tiger-tank-59-winter-assault-mp091/index.json b/site/public/v1/games/tiger-tank-59-winter-assault-mp091/index.json new file mode 100644 index 000000000000..68edea3dfc59 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-winter-assault-mp091/index.json @@ -0,0 +1,31 @@ +{ + "id": 156673, + "slug": "tiger-tank-59-winter-assault-mp091", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP091", + "release_date": "2021-09-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185812" + ], + "created_at": "2026-07-10T10:10:47.134701", + "updated_at": "2026-07-10T10:10:47.134701", + "url": "/v1/games/tiger-tank-59-winter-assault-mp091" +} diff --git a/site/public/v1/games/tiger-tank-59-winter-assault-mp092/index.json b/site/public/v1/games/tiger-tank-59-winter-assault-mp092/index.json new file mode 100644 index 000000000000..6023cabee312 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-winter-assault-mp092/index.json @@ -0,0 +1,31 @@ +{ + "id": 156674, + "slug": "tiger-tank-59-winter-assault-mp092", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP092", + "release_date": "2021-09-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185814" + ], + "created_at": "2026-07-10T10:10:47.134701", + "updated_at": "2026-07-10T10:10:47.134701", + "url": "/v1/games/tiger-tank-59-winter-assault-mp092" +} diff --git a/site/public/v1/games/tiger-tank-59-winter-assault-mp093/index.json b/site/public/v1/games/tiger-tank-59-winter-assault-mp093/index.json new file mode 100644 index 000000000000..24db2ec508d3 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-winter-assault-mp093/index.json @@ -0,0 +1,31 @@ +{ + "id": 156675, + "slug": "tiger-tank-59-winter-assault-mp093", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP093", + "release_date": "2021-09-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185816" + ], + "created_at": "2026-07-10T10:10:47.134701", + "updated_at": "2026-07-10T10:10:47.134701", + "url": "/v1/games/tiger-tank-59-winter-assault-mp093" +} diff --git a/site/public/v1/games/tiger-tank-59-winter-assault-mp094/index.json b/site/public/v1/games/tiger-tank-59-winter-assault-mp094/index.json new file mode 100644 index 000000000000..5403ac53bfe3 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-winter-assault-mp094/index.json @@ -0,0 +1,31 @@ +{ + "id": 156676, + "slug": "tiger-tank-59-winter-assault-mp094", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP094", + "release_date": "2021-09-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185820" + ], + "created_at": "2026-07-10T10:10:47.135720", + "updated_at": "2026-07-10T10:10:47.135720", + "url": "/v1/games/tiger-tank-59-winter-assault-mp094" +} diff --git a/site/public/v1/games/tiger-tank-59-winter-assault-mp095/index.json b/site/public/v1/games/tiger-tank-59-winter-assault-mp095/index.json new file mode 100644 index 000000000000..9e66b81326d7 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-winter-assault-mp095/index.json @@ -0,0 +1,31 @@ +{ + "id": 156677, + "slug": "tiger-tank-59-winter-assault-mp095", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP095", + "release_date": "2021-09-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185823" + ], + "created_at": "2026-07-10T10:10:47.135720", + "updated_at": "2026-07-10T10:10:47.135720", + "url": "/v1/games/tiger-tank-59-winter-assault-mp095" +} diff --git a/site/public/v1/games/tiger-tank-59-winter-assault-mp096/index.json b/site/public/v1/games/tiger-tank-59-winter-assault-mp096/index.json new file mode 100644 index 000000000000..5b35d2669b5a --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-winter-assault-mp096/index.json @@ -0,0 +1,31 @@ +{ + "id": 156678, + "slug": "tiger-tank-59-winter-assault-mp096", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP096", + "release_date": "2021-09-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185824" + ], + "created_at": "2026-07-10T10:10:47.135720", + "updated_at": "2026-07-10T10:10:47.135720", + "url": "/v1/games/tiger-tank-59-winter-assault-mp096" +} diff --git a/site/public/v1/games/tiger-tank-59-winter-assault-mp097/index.json b/site/public/v1/games/tiger-tank-59-winter-assault-mp097/index.json new file mode 100644 index 000000000000..2aebd2973daf --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-winter-assault-mp097/index.json @@ -0,0 +1,31 @@ +{ + "id": 156679, + "slug": "tiger-tank-59-winter-assault-mp097", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP097", + "release_date": "2021-09-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185825" + ], + "created_at": "2026-07-10T10:10:47.135720", + "updated_at": "2026-07-10T10:10:47.135720", + "url": "/v1/games/tiger-tank-59-winter-assault-mp097" +} diff --git a/site/public/v1/games/tiger-tank-59-winter-assault-mp098/index.json b/site/public/v1/games/tiger-tank-59-winter-assault-mp098/index.json new file mode 100644 index 000000000000..cb5172fa2e65 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-winter-assault-mp098/index.json @@ -0,0 +1,31 @@ +{ + "id": 156680, + "slug": "tiger-tank-59-winter-assault-mp098", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP098", + "release_date": "2021-09-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185826" + ], + "created_at": "2026-07-10T10:10:47.136699", + "updated_at": "2026-07-10T10:10:47.136699", + "url": "/v1/games/tiger-tank-59-winter-assault-mp098" +} diff --git a/site/public/v1/games/tiger-tank-59-winter-assault-mp099/index.json b/site/public/v1/games/tiger-tank-59-winter-assault-mp099/index.json new file mode 100644 index 000000000000..6d105f803272 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-winter-assault-mp099/index.json @@ -0,0 +1,31 @@ +{ + "id": 156681, + "slug": "tiger-tank-59-winter-assault-mp099", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP099", + "release_date": "2021-09-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185827" + ], + "created_at": "2026-07-10T10:10:47.136699", + "updated_at": "2026-07-10T10:10:47.136699", + "url": "/v1/games/tiger-tank-59-winter-assault-mp099" +} diff --git a/site/public/v1/games/tiger-tank-59-winter-assault-mp100/index.json b/site/public/v1/games/tiger-tank-59-winter-assault-mp100/index.json new file mode 100644 index 000000000000..ac05e31b90c4 --- /dev/null +++ b/site/public/v1/games/tiger-tank-59-winter-assault-mp100/index.json @@ -0,0 +1,31 @@ +{ + "id": 156682, + "slug": "tiger-tank-59-winter-assault-mp100", + "name": "Tiger Tank 59 Ⅰ Winter Assault MP100", + "release_date": "2021-09-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "TigerQiuQiu" + ], + "publishers": [ + "TigerQiuQiu" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116185828" + ], + "created_at": "2026-07-10T10:10:47.136699", + "updated_at": "2026-07-10T10:10:47.136699", + "url": "/v1/games/tiger-tank-59-winter-assault-mp100" +} diff --git a/site/public/v1/games/time-and-magik-the-trilogy/index.json b/site/public/v1/games/time-and-magik-the-trilogy/index.json new file mode 100644 index 000000000000..a9b96226e4bd --- /dev/null +++ b/site/public/v1/games/time-and-magik-the-trilogy/index.json @@ -0,0 +1,35 @@ +{ + "id": 156815, + "slug": "time-and-magik-the-trilogy", + "name": "Time and Magik: The Trilogy", + "release_date": "1988-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Classic Mac OS", + "Amstrad PCW", + "Amstrad CPC", + "DOS", + "ZX Spectrum" + ], + "genres": [], + "stores": [], + "developers": [ + "Level 9 Computing" + ], + "publishers": [ + "Europress" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7805248" + ], + "created_at": "2026-07-10T10:10:47.170754", + "updated_at": "2026-07-10T10:10:47.170754", + "url": "/v1/games/time-and-magik-the-trilogy" +} diff --git a/site/public/v1/games/time-locker-q118235323/index.json b/site/public/v1/games/time-locker-q118235323/index.json new file mode 100644 index 000000000000..d37528de9ec0 --- /dev/null +++ b/site/public/v1/games/time-locker-q118235323/index.json @@ -0,0 +1,28 @@ +{ + "id": 156899, + "slug": "time-locker-q118235323", + "name": "Time Locker+", + "release_date": "2023-05-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "iPadOS", + "iOS" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118235323" + ], + "created_at": "2026-07-10T10:10:47.193394", + "updated_at": "2026-07-10T10:10:47.193394", + "url": "/v1/games/time-locker-q118235323" +} diff --git a/site/public/v1/games/timekeepers-expansion-disk/index.json b/site/public/v1/games/timekeepers-expansion-disk/index.json new file mode 100644 index 000000000000..1a7a8119576f --- /dev/null +++ b/site/public/v1/games/timekeepers-expansion-disk/index.json @@ -0,0 +1,25 @@ +{ + "id": 157082, + "slug": "timekeepers-expansion-disk", + "name": "Timekeepers Expansion Disk", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126184622" + ], + "created_at": "2026-07-10T10:10:47.246449", + "updated_at": "2026-07-10T10:10:47.246449", + "url": "/v1/games/timekeepers-expansion-disk" +} diff --git a/site/public/v1/games/timesplitters-4/index.json b/site/public/v1/games/timesplitters-4/index.json new file mode 100644 index 000000000000..2ebce9eb0ad0 --- /dev/null +++ b/site/public/v1/games/timesplitters-4/index.json @@ -0,0 +1,29 @@ +{ + "id": 157154, + "slug": "timesplitters-4", + "name": "TimeSplitters 4", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "first-person shooter" + ], + "stores": [], + "developers": [ + "Crytek UK" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3110644" + ], + "created_at": "2026-07-10T10:10:47.266461", + "updated_at": "2026-07-10T10:10:47.266461", + "url": "/v1/games/timesplitters-4" +} diff --git a/site/public/v1/games/tiny-wings-q108559414/index.json b/site/public/v1/games/tiny-wings-q108559414/index.json new file mode 100644 index 000000000000..9c66d0439373 --- /dev/null +++ b/site/public/v1/games/tiny-wings-q108559414/index.json @@ -0,0 +1,31 @@ +{ + "id": 157421, + "slug": "tiny-wings-q108559414", + "name": "Tiny Wings+", + "release_date": "2021-10-15", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "tvOS", + "iPadOS", + "iOS" + ], + "genres": [], + "stores": [], + "developers": [ + "Andreas Illiger" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108559414" + ], + "created_at": "2026-07-10T10:10:47.338311", + "updated_at": "2026-07-10T10:10:47.338311", + "url": "/v1/games/tiny-wings-q108559414" +} diff --git a/site/public/v1/games/titan-brawl/index.json b/site/public/v1/games/titan-brawl/index.json new file mode 100644 index 000000000000..49318a1c9c5f --- /dev/null +++ b/site/public/v1/games/titan-brawl/index.json @@ -0,0 +1,25 @@ +{ + "id": 157483, + "slug": "titan-brawl", + "name": "Titan Brawl", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140472976" + ], + "created_at": "2026-07-10T10:10:47.355589", + "updated_at": "2026-07-10T10:10:47.355589", + "url": "/v1/games/titan-brawl" +} diff --git a/site/public/v1/games/titan-q4350984/index.json b/site/public/v1/games/titan-q4350984/index.json new file mode 100644 index 000000000000..d20d80342999 --- /dev/null +++ b/site/public/v1/games/titan-q4350984/index.json @@ -0,0 +1,35 @@ +{ + "id": 157491, + "slug": "titan-q4350984", + "name": "Titan", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "massively multiplayer online role-playing game", + "shooter game", + "science fiction video game" + ], + "stores": [], + "developers": [ + "Blizzard Entertainment" + ], + "publishers": [ + "Blizzard Entertainment" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4350984" + ], + "created_at": "2026-07-10T10:10:47.357650", + "updated_at": "2026-07-10T10:10:47.357650", + "url": "/v1/games/titan-q4350984" +} diff --git a/site/public/v1/games/titan-quest-anniversary-edition/index.json b/site/public/v1/games/titan-quest-anniversary-edition/index.json new file mode 100644 index 000000000000..d82efab1f11d --- /dev/null +++ b/site/public/v1/games/titan-quest-anniversary-edition/index.json @@ -0,0 +1,31 @@ +{ + "id": 157492, + "slug": "titan-quest-anniversary-edition", + "name": "Titan Quest Anniversary Edition", + "release_date": "2016-08-31", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "action role-playing game" + ], + "stores": [], + "developers": [], + "publishers": [ + "THQ Nordic" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118905576" + ], + "created_at": "2026-07-10T10:10:47.358669", + "updated_at": "2026-07-10T10:10:47.358669", + "url": "/v1/games/titan-quest-anniversary-edition" +} diff --git a/site/public/v1/games/titan-quest-immortal-throne/index.json b/site/public/v1/games/titan-quest-immortal-throne/index.json new file mode 100644 index 000000000000..bbff48f7118b --- /dev/null +++ b/site/public/v1/games/titan-quest-immortal-throne/index.json @@ -0,0 +1,33 @@ +{ + "id": 157494, + "slug": "titan-quest-immortal-throne", + "name": "Titan Quest: Immortal Throne", + "release_date": "2007-03-30", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "action role-playing game" + ], + "stores": [], + "developers": [ + "Iron Lore Entertainment" + ], + "publishers": [ + "THQ" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2569838" + ], + "created_at": "2026-07-10T10:10:47.358669", + "updated_at": "2026-07-10T10:10:47.358669", + "url": "/v1/games/titan-quest-immortal-throne" +} diff --git a/site/public/v1/games/titanfall-2-ultimate-edition/index.json b/site/public/v1/games/titanfall-2-ultimate-edition/index.json new file mode 100644 index 000000000000..79b230c935f3 --- /dev/null +++ b/site/public/v1/games/titanfall-2-ultimate-edition/index.json @@ -0,0 +1,25 @@ +{ + "id": 157507, + "slug": "titanfall-2-ultimate-edition", + "name": "Titanfall 2: Ultimate Edition", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q92203823" + ], + "created_at": "2026-07-10T10:10:47.361589", + "updated_at": "2026-07-10T10:10:47.361589", + "url": "/v1/games/titanfall-2-ultimate-edition" +} diff --git a/site/public/v1/games/titanfall-3/index.json b/site/public/v1/games/titanfall-3/index.json new file mode 100644 index 000000000000..142ba93bc36f --- /dev/null +++ b/site/public/v1/games/titanfall-3/index.json @@ -0,0 +1,27 @@ +{ + "id": 157509, + "slug": "titanfall-3", + "name": "Titanfall 3", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [ + "Respawn Entertainment" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q96745436" + ], + "created_at": "2026-07-10T10:10:47.362588", + "updated_at": "2026-07-10T10:10:47.362588", + "url": "/v1/games/titanfall-3" +} diff --git a/site/public/v1/games/titanfall-deluxe-edition/index.json b/site/public/v1/games/titanfall-deluxe-edition/index.json new file mode 100644 index 000000000000..652c1e0eb5e7 --- /dev/null +++ b/site/public/v1/games/titanfall-deluxe-edition/index.json @@ -0,0 +1,25 @@ +{ + "id": 157511, + "slug": "titanfall-deluxe-edition", + "name": "Titanfall Deluxe Edition", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q92203660" + ], + "created_at": "2026-07-10T10:10:47.363589", + "updated_at": "2026-07-10T10:10:47.363589", + "url": "/v1/games/titanfall-deluxe-edition" +} diff --git a/site/public/v1/games/titanfall-expedition/index.json b/site/public/v1/games/titanfall-expedition/index.json new file mode 100644 index 000000000000..3786e7e764c0 --- /dev/null +++ b/site/public/v1/games/titanfall-expedition/index.json @@ -0,0 +1,25 @@ +{ + "id": 157512, + "slug": "titanfall-expedition", + "name": "Titanfall: Expedition", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125156652" + ], + "created_at": "2026-07-10T10:10:47.363589", + "updated_at": "2026-07-10T10:10:47.363589", + "url": "/v1/games/titanfall-expedition" +} diff --git a/site/public/v1/games/titanfall-imc-rising/index.json b/site/public/v1/games/titanfall-imc-rising/index.json new file mode 100644 index 000000000000..0c74394414ea --- /dev/null +++ b/site/public/v1/games/titanfall-imc-rising/index.json @@ -0,0 +1,25 @@ +{ + "id": 157514, + "slug": "titanfall-imc-rising", + "name": "Titanfall: IMC Rising", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125156663" + ], + "created_at": "2026-07-10T10:10:47.363589", + "updated_at": "2026-07-10T10:10:47.363589", + "url": "/v1/games/titanfall-imc-rising" +} diff --git a/site/public/v1/games/titanfall-online/index.json b/site/public/v1/games/titanfall-online/index.json new file mode 100644 index 000000000000..dbc7f5cd59a9 --- /dev/null +++ b/site/public/v1/games/titanfall-online/index.json @@ -0,0 +1,25 @@ +{ + "id": 157515, + "slug": "titanfall-online", + "name": "Titanfall Online", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q98067406" + ], + "created_at": "2026-07-10T10:10:47.364599", + "updated_at": "2026-07-10T10:10:47.364599", + "url": "/v1/games/titanfall-online" +} diff --git a/site/public/v1/games/titanreach/index.json b/site/public/v1/games/titanreach/index.json new file mode 100644 index 000000000000..ffa0f0cab810 --- /dev/null +++ b/site/public/v1/games/titanreach/index.json @@ -0,0 +1,29 @@ +{ + "id": 157535, + "slug": "titanreach", + "name": "TitanReach", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "massively multiplayer online role-playing game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110914344" + ], + "created_at": "2026-07-10T10:10:47.370596", + "updated_at": "2026-07-10T10:10:47.370596", + "url": "/v1/games/titanreach" +} diff --git a/site/public/v1/games/tmnt-ninja-adventures/index.json b/site/public/v1/games/tmnt-ninja-adventures/index.json new file mode 100644 index 000000000000..f78e49319f7f --- /dev/null +++ b/site/public/v1/games/tmnt-ninja-adventures/index.json @@ -0,0 +1,25 @@ +{ + "id": 157583, + "slug": "tmnt-ninja-adventures", + "name": "TMNT: Ninja Adventures", + "release_date": "2007-05-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q97499006" + ], + "created_at": "2026-07-10T10:10:47.386121", + "updated_at": "2026-07-10T10:10:47.386121", + "url": "/v1/games/tmnt-ninja-adventures" +} diff --git a/site/public/v1/games/toaplan-arcade-shoot-em-up-collection-vol-1/index.json b/site/public/v1/games/toaplan-arcade-shoot-em-up-collection-vol-1/index.json new file mode 100644 index 000000000000..627bea32dc0a --- /dev/null +++ b/site/public/v1/games/toaplan-arcade-shoot-em-up-collection-vol-1/index.json @@ -0,0 +1,35 @@ +{ + "id": 157719, + "slug": "toaplan-arcade-shoot-em-up-collection-vol-1", + "name": "Toaplan Arcade Shoot 'Em Up Collection Vol. 1", + "release_date": "2023-02-14", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "shoot 'em up" + ], + "stores": [], + "developers": [ + "Toaplan", + "Bitwave Games" + ], + "publishers": [ + "Bitwave Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q128493225" + ], + "created_at": "2026-07-10T10:10:47.423172", + "updated_at": "2026-07-10T10:10:47.423172", + "url": "/v1/games/toaplan-arcade-shoot-em-up-collection-vol-1" +} diff --git a/site/public/v1/games/toaplan-arcade-shoot-em-up-collection-vol-2/index.json b/site/public/v1/games/toaplan-arcade-shoot-em-up-collection-vol-2/index.json new file mode 100644 index 000000000000..cdf02fe25995 --- /dev/null +++ b/site/public/v1/games/toaplan-arcade-shoot-em-up-collection-vol-2/index.json @@ -0,0 +1,35 @@ +{ + "id": 157720, + "slug": "toaplan-arcade-shoot-em-up-collection-vol-2", + "name": "Toaplan Arcade Shoot 'Em Up Collection Vol. 2", + "release_date": "2023-08-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "shoot 'em up" + ], + "stores": [], + "developers": [ + "Toaplan", + "Bitwave Games" + ], + "publishers": [ + "Bitwave Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q128494414" + ], + "created_at": "2026-07-10T10:10:47.424173", + "updated_at": "2026-07-10T10:10:47.424173", + "url": "/v1/games/toaplan-arcade-shoot-em-up-collection-vol-2" +} diff --git a/site/public/v1/games/toaplan-arcade-shoot-em-up-collection-vol-3/index.json b/site/public/v1/games/toaplan-arcade-shoot-em-up-collection-vol-3/index.json new file mode 100644 index 000000000000..2d0b76792f3a --- /dev/null +++ b/site/public/v1/games/toaplan-arcade-shoot-em-up-collection-vol-3/index.json @@ -0,0 +1,35 @@ +{ + "id": 157721, + "slug": "toaplan-arcade-shoot-em-up-collection-vol-3", + "name": "Toaplan Arcade Shoot 'Em Up Collection Vol. 3", + "release_date": "2024-02-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "shoot 'em up" + ], + "stores": [], + "developers": [ + "Toaplan", + "Bitwave Games" + ], + "publishers": [ + "Bitwave Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q128495801" + ], + "created_at": "2026-07-10T10:10:47.424173", + "updated_at": "2026-07-10T10:10:47.424173", + "url": "/v1/games/toaplan-arcade-shoot-em-up-collection-vol-3" +} diff --git a/site/public/v1/games/toaplan-arcade-shoot-em-up-collection-vol-4/index.json b/site/public/v1/games/toaplan-arcade-shoot-em-up-collection-vol-4/index.json new file mode 100644 index 000000000000..d160f82dda75 --- /dev/null +++ b/site/public/v1/games/toaplan-arcade-shoot-em-up-collection-vol-4/index.json @@ -0,0 +1,35 @@ +{ + "id": 157722, + "slug": "toaplan-arcade-shoot-em-up-collection-vol-4", + "name": "Toaplan Arcade Shoot 'Em Up Collection Vol. 4", + "release_date": "2024-04-08", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "shoot 'em up" + ], + "stores": [], + "developers": [ + "Toaplan", + "Bitwave Games" + ], + "publishers": [ + "Bitwave Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q128497599" + ], + "created_at": "2026-07-10T10:10:47.424173", + "updated_at": "2026-07-10T10:10:47.424173", + "url": "/v1/games/toaplan-arcade-shoot-em-up-collection-vol-4" +} diff --git a/site/public/v1/games/toaplan-arcade-shoot-em-up-ultimate-collection/index.json b/site/public/v1/games/toaplan-arcade-shoot-em-up-ultimate-collection/index.json new file mode 100644 index 000000000000..7aaf8a22f136 --- /dev/null +++ b/site/public/v1/games/toaplan-arcade-shoot-em-up-ultimate-collection/index.json @@ -0,0 +1,35 @@ +{ + "id": 157723, + "slug": "toaplan-arcade-shoot-em-up-ultimate-collection", + "name": "Toaplan Arcade Shoot 'Em Up Ultimate Collection", + "release_date": "2024-04-08", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "shoot 'em up" + ], + "stores": [], + "developers": [ + "Toaplan", + "Bitwave Games" + ], + "publishers": [ + "Bitwave Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q128499891" + ], + "created_at": "2026-07-10T10:10:47.424173", + "updated_at": "2026-07-10T10:10:47.424173", + "url": "/v1/games/toaplan-arcade-shoot-em-up-ultimate-collection" +} diff --git a/site/public/v1/games/toaplan-shooting-battle-1/index.json b/site/public/v1/games/toaplan-shooting-battle-1/index.json new file mode 100644 index 000000000000..5fe134cef6d1 --- /dev/null +++ b/site/public/v1/games/toaplan-shooting-battle-1/index.json @@ -0,0 +1,32 @@ +{ + "id": 157724, + "slug": "toaplan-shooting-battle-1", + "name": "Toaplan Shooting Battle 1", + "release_date": "1996-08-30", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "shoot 'em up" + ], + "stores": [], + "developers": [ + "Gazelle", + "Toaplan" + ], + "publishers": [ + "Banpresto" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q129649616" + ], + "created_at": "2026-07-10T10:10:47.425194", + "updated_at": "2026-07-10T10:10:47.425194", + "url": "/v1/games/toaplan-shooting-battle-1" +} diff --git a/site/public/v1/games/tom-clancy-s-ghost-recon-desert-siege/index.json b/site/public/v1/games/tom-clancy-s-ghost-recon-desert-siege/index.json new file mode 100644 index 000000000000..2527384fea92 --- /dev/null +++ b/site/public/v1/games/tom-clancy-s-ghost-recon-desert-siege/index.json @@ -0,0 +1,32 @@ +{ + "id": 158015, + "slug": "tom-clancy-s-ghost-recon-desert-siege", + "name": "Tom Clancy's Ghost Recon: Desert Siege", + "release_date": "2002-03-27", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "tactical shooter" + ], + "stores": [], + "developers": [ + "Red Storm Entertainment" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2604001" + ], + "created_at": "2026-07-10T10:10:47.502684", + "updated_at": "2026-07-10T10:10:47.502684", + "url": "/v1/games/tom-clancy-s-ghost-recon-desert-siege" +} diff --git a/site/public/v1/games/tom-clancy-s-ghost-recon-frontline/index.json b/site/public/v1/games/tom-clancy-s-ghost-recon-frontline/index.json new file mode 100644 index 000000000000..a22509abff33 --- /dev/null +++ b/site/public/v1/games/tom-clancy-s-ghost-recon-frontline/index.json @@ -0,0 +1,32 @@ +{ + "id": 158016, + "slug": "tom-clancy-s-ghost-recon-frontline", + "name": "Tom Clancy's Ghost Recon Frontline", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 4", + "Xbox Series X and Series S", + "PlayStation 5", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Ubisoft Romania" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108809770" + ], + "created_at": "2026-07-10T10:10:47.502684", + "updated_at": "2026-07-10T10:10:47.502684", + "url": "/v1/games/tom-clancy-s-ghost-recon-frontline" +} diff --git a/site/public/v1/games/tom-clancy-s-ghost-recon-island-thunder/index.json b/site/public/v1/games/tom-clancy-s-ghost-recon-island-thunder/index.json new file mode 100644 index 000000000000..42662531bcc1 --- /dev/null +++ b/site/public/v1/games/tom-clancy-s-ghost-recon-island-thunder/index.json @@ -0,0 +1,31 @@ +{ + "id": 158018, + "slug": "tom-clancy-s-ghost-recon-island-thunder", + "name": "Tom Clancy's Ghost Recon: Island Thunder", + "release_date": "2002-09-25", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter" + ], + "stores": [], + "developers": [ + "Red Storm Entertainment" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1826994" + ], + "created_at": "2026-07-10T10:10:47.503683", + "updated_at": "2026-07-10T10:10:47.503683", + "url": "/v1/games/tom-clancy-s-ghost-recon-island-thunder" +} diff --git a/site/public/v1/games/tom-clancy-s-ghost-recon-jungle-storm/index.json b/site/public/v1/games/tom-clancy-s-ghost-recon-jungle-storm/index.json new file mode 100644 index 000000000000..d1c444829306 --- /dev/null +++ b/site/public/v1/games/tom-clancy-s-ghost-recon-jungle-storm/index.json @@ -0,0 +1,31 @@ +{ + "id": 158019, + "slug": "tom-clancy-s-ghost-recon-jungle-storm", + "name": "Tom Clancy's Ghost Recon: Jungle Storm", + "release_date": "2004-03-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "N-Gage" + ], + "genres": [ + "first-person shooter" + ], + "stores": [], + "developers": [ + "Red Storm Entertainment" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1828342" + ], + "created_at": "2026-07-10T10:10:47.503683", + "updated_at": "2026-07-10T10:10:47.503683", + "url": "/v1/games/tom-clancy-s-ghost-recon-jungle-storm" +} diff --git a/site/public/v1/games/tom-clancy-s-rainbow-6-patriots/index.json b/site/public/v1/games/tom-clancy-s-rainbow-6-patriots/index.json new file mode 100644 index 000000000000..c9861f007071 --- /dev/null +++ b/site/public/v1/games/tom-clancy-s-rainbow-6-patriots/index.json @@ -0,0 +1,30 @@ +{ + "id": 158029, + "slug": "tom-clancy-s-rainbow-6-patriots", + "name": "Tom Clancy's Rainbow 6: Patriots", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "tactical shooter" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1756100" + ], + "created_at": "2026-07-10T10:10:47.505683", + "updated_at": "2026-07-10T10:10:47.505683", + "url": "/v1/games/tom-clancy-s-rainbow-6-patriots" +} diff --git a/site/public/v1/games/tom-clancy-s-splinter-cell-mission-pack/index.json b/site/public/v1/games/tom-clancy-s-splinter-cell-mission-pack/index.json new file mode 100644 index 000000000000..8de23e6fbd2a --- /dev/null +++ b/site/public/v1/games/tom-clancy-s-splinter-cell-mission-pack/index.json @@ -0,0 +1,29 @@ +{ + "id": 158058, + "slug": "tom-clancy-s-splinter-cell-mission-pack", + "name": "Tom Clancy's Splinter Cell: Mission Pack", + "release_date": "2004-02-14", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "action game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110817131" + ], + "created_at": "2026-07-10T10:10:47.513684", + "updated_at": "2026-07-10T10:10:47.513684", + "url": "/v1/games/tom-clancy-s-splinter-cell-mission-pack" +} diff --git a/site/public/v1/games/tom-clancy-s-the-division-heartland/index.json b/site/public/v1/games/tom-clancy-s-the-division-heartland/index.json new file mode 100644 index 000000000000..624092a0b931 --- /dev/null +++ b/site/public/v1/games/tom-clancy-s-the-division-heartland/index.json @@ -0,0 +1,34 @@ +{ + "id": 158064, + "slug": "tom-clancy-s-the-division-heartland", + "name": "Tom Clancy's The Division Heartland", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 5", + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "third-person shooter" + ], + "stores": [], + "developers": [ + "Red Storm Entertainment" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108488461" + ], + "created_at": "2026-07-10T10:10:47.515691", + "updated_at": "2026-07-10T10:10:47.515691", + "url": "/v1/games/tom-clancy-s-the-division-heartland" +} diff --git a/site/public/v1/games/tomazquake/index.json b/site/public/v1/games/tomazquake/index.json new file mode 100644 index 000000000000..3473c09c567b --- /dev/null +++ b/site/public/v1/games/tomazquake/index.json @@ -0,0 +1,25 @@ +{ + "id": 158096, + "slug": "tomazquake", + "name": "TomazQuake", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124652526" + ], + "created_at": "2026-07-10T10:10:47.524690", + "updated_at": "2026-07-10T10:10:47.524690", + "url": "/v1/games/tomazquake" +} diff --git a/site/public/v1/games/tomb-raider-definitive-edition/index.json b/site/public/v1/games/tomb-raider-definitive-edition/index.json new file mode 100644 index 000000000000..103c0cf92ce0 --- /dev/null +++ b/site/public/v1/games/tomb-raider-definitive-edition/index.json @@ -0,0 +1,28 @@ +{ + "id": 158120, + "slug": "tomb-raider-definitive-edition", + "name": "Tomb Raider: Definitive Edition", + "release_date": "2014-01-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105985883" + ], + "created_at": "2026-07-10T10:10:47.530689", + "updated_at": "2026-07-10T10:10:47.530689", + "url": "/v1/games/tomb-raider-definitive-edition" +} diff --git a/site/public/v1/games/tomb-raider-definitive-survivor-trilogy/index.json b/site/public/v1/games/tomb-raider-definitive-survivor-trilogy/index.json new file mode 100644 index 000000000000..9e97a9548611 --- /dev/null +++ b/site/public/v1/games/tomb-raider-definitive-survivor-trilogy/index.json @@ -0,0 +1,27 @@ +{ + "id": 158121, + "slug": "tomb-raider-definitive-survivor-trilogy", + "name": "Tomb Raider: Definitive Survivor Trilogy", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105985875" + ], + "created_at": "2026-07-10T10:10:47.530689", + "updated_at": "2026-07-10T10:10:47.530689", + "url": "/v1/games/tomb-raider-definitive-survivor-trilogy" +} diff --git a/site/public/v1/games/tomb-raider-i-iii-remastered/index.json b/site/public/v1/games/tomb-raider-i-iii-remastered/index.json new file mode 100644 index 000000000000..cbfe9eab021d --- /dev/null +++ b/site/public/v1/games/tomb-raider-i-iii-remastered/index.json @@ -0,0 +1,40 @@ +{ + "id": 158124, + "slug": "tomb-raider-i-iii-remastered", + "name": "Tomb Raider I-III Remastered", + "release_date": "2024-02-14", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 5", + "PlayStation 4", + "iOS", + "Microsoft Windows" + ], + "genres": [ + "adventure video game", + "puzzle video game", + "action game", + "action-adventure game" + ], + "stores": [], + "developers": [ + "Aspyr" + ], + "publishers": [ + "Aspyr" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123272433" + ], + "created_at": "2026-07-10T10:10:47.531689", + "updated_at": "2026-07-10T10:10:47.531689", + "url": "/v1/games/tomb-raider-i-iii-remastered" +} diff --git a/site/public/v1/games/tomb-raider-ii-golden-mask/index.json b/site/public/v1/games/tomb-raider-ii-golden-mask/index.json new file mode 100644 index 000000000000..c94e10853c1b --- /dev/null +++ b/site/public/v1/games/tomb-raider-ii-golden-mask/index.json @@ -0,0 +1,31 @@ +{ + "id": 158125, + "slug": "tomb-raider-ii-golden-mask", + "name": "Tomb Raider II: Golden Mask", + "release_date": "1999-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "iPadOS", + "iOS", + "Microsoft Windows" + ], + "genres": [ + "action-adventure game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3531019" + ], + "created_at": "2026-07-10T10:10:47.531689", + "updated_at": "2026-07-10T10:10:47.531689", + "url": "/v1/games/tomb-raider-ii-golden-mask" +} diff --git a/site/public/v1/games/tomb-raider-the-lost-artifact/index.json b/site/public/v1/games/tomb-raider-the-lost-artifact/index.json new file mode 100644 index 000000000000..8c2bb699fbf0 --- /dev/null +++ b/site/public/v1/games/tomb-raider-the-lost-artifact/index.json @@ -0,0 +1,32 @@ +{ + "id": 158140, + "slug": "tomb-raider-the-lost-artifact", + "name": "Tomb Raider: The Lost Artifact", + "release_date": "2000-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "action-adventure game" + ], + "stores": [], + "developers": [], + "publishers": [ + "Eidos Interactive" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q12343253" + ], + "created_at": "2026-07-10T10:10:47.535751", + "updated_at": "2026-07-10T10:10:47.535751", + "url": "/v1/games/tomb-raider-the-lost-artifact" +} diff --git a/site/public/v1/games/tomb-raider-trilogy/index.json b/site/public/v1/games/tomb-raider-trilogy/index.json new file mode 100644 index 000000000000..8dea0df20c1f --- /dev/null +++ b/site/public/v1/games/tomb-raider-trilogy/index.json @@ -0,0 +1,30 @@ +{ + "id": 158143, + "slug": "tomb-raider-trilogy", + "name": "Tomb Raider Trilogy", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 3", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Crystal Dynamics" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18281126" + ], + "created_at": "2026-07-10T10:10:47.535751", + "updated_at": "2026-07-10T10:10:47.535751", + "url": "/v1/games/tomb-raider-trilogy" +} diff --git a/site/public/v1/games/tomb-raider-underworld-beneath-the-ashes/index.json b/site/public/v1/games/tomb-raider-underworld-beneath-the-ashes/index.json new file mode 100644 index 000000000000..2777946ca444 --- /dev/null +++ b/site/public/v1/games/tomb-raider-underworld-beneath-the-ashes/index.json @@ -0,0 +1,25 @@ +{ + "id": 158144, + "slug": "tomb-raider-underworld-beneath-the-ashes", + "name": "Tomb Raider Underworld: Beneath the Ashes", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126948082" + ], + "created_at": "2026-07-10T10:10:47.536751", + "updated_at": "2026-07-10T10:10:47.536751", + "url": "/v1/games/tomb-raider-underworld-beneath-the-ashes" +} diff --git a/site/public/v1/games/tomb-raider-underworld-lara-s-shadow/index.json b/site/public/v1/games/tomb-raider-underworld-lara-s-shadow/index.json new file mode 100644 index 000000000000..47bebf50fb9f --- /dev/null +++ b/site/public/v1/games/tomb-raider-underworld-lara-s-shadow/index.json @@ -0,0 +1,25 @@ +{ + "id": 158145, + "slug": "tomb-raider-underworld-lara-s-shadow", + "name": "Tomb Raider Underworld: Lara's Shadow", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126948087" + ], + "created_at": "2026-07-10T10:10:47.536751", + "updated_at": "2026-07-10T10:10:47.536751", + "url": "/v1/games/tomb-raider-underworld-lara-s-shadow" +} diff --git a/site/public/v1/games/tonic-trouble-2/index.json b/site/public/v1/games/tonic-trouble-2/index.json new file mode 100644 index 000000000000..91b7a1d1baa9 --- /dev/null +++ b/site/public/v1/games/tonic-trouble-2/index.json @@ -0,0 +1,25 @@ +{ + "id": 158236, + "slug": "tonic-trouble-2", + "name": "Tonic Trouble 2", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72709026" + ], + "created_at": "2026-07-10T10:10:47.562123", + "updated_at": "2026-07-10T10:10:47.562123", + "url": "/v1/games/tonic-trouble-2" +} diff --git a/site/public/v1/games/tony-hawk-s-american-wasteland-collector-s-edition/index.json b/site/public/v1/games/tony-hawk-s-american-wasteland-collector-s-edition/index.json new file mode 100644 index 000000000000..a699c7defa70 --- /dev/null +++ b/site/public/v1/games/tony-hawk-s-american-wasteland-collector-s-edition/index.json @@ -0,0 +1,29 @@ +{ + "id": 158254, + "slug": "tony-hawk-s-american-wasteland-collector-s-edition", + "name": "Tony Hawk's American Wasteland: Collector's Edition", + "release_date": "2005-10-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [ + "Neversoft" + ], + "publishers": [ + "Activision" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135263782" + ], + "created_at": "2026-07-10T10:10:47.567132", + "updated_at": "2026-07-10T10:10:47.567132", + "url": "/v1/games/tony-hawk-s-american-wasteland-collector-s-edition" +} diff --git a/site/public/v1/games/top-trumps-adventures/index.json b/site/public/v1/games/top-trumps-adventures/index.json new file mode 100644 index 000000000000..6d214039ee7f --- /dev/null +++ b/site/public/v1/games/top-trumps-adventures/index.json @@ -0,0 +1,27 @@ +{ + "id": 158462, + "slug": "top-trumps-adventures", + "name": "Top Trumps Adventures", + "release_date": "2007-07-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Wii" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7824645" + ], + "created_at": "2026-07-10T10:10:47.620654", + "updated_at": "2026-07-10T10:10:47.620654", + "url": "/v1/games/top-trumps-adventures" +} diff --git a/site/public/v1/games/toree-s-3d-platformer-collection/index.json b/site/public/v1/games/toree-s-3d-platformer-collection/index.json new file mode 100644 index 000000000000..96e1509e56e2 --- /dev/null +++ b/site/public/v1/games/toree-s-3d-platformer-collection/index.json @@ -0,0 +1,29 @@ +{ + "id": 158525, + "slug": "toree-s-3d-platformer-collection", + "name": "Toree's 3D Platformer Collection", + "release_date": "2022-07-15", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Diplodocus Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115257334" + ], + "created_at": "2026-07-10T10:10:47.637654", + "updated_at": "2026-07-10T10:10:47.637654", + "url": "/v1/games/toree-s-3d-platformer-collection" +} diff --git a/site/public/v1/games/tornado-operation-desert-storm/index.json b/site/public/v1/games/tornado-operation-desert-storm/index.json new file mode 100644 index 000000000000..464f1c232120 --- /dev/null +++ b/site/public/v1/games/tornado-operation-desert-storm/index.json @@ -0,0 +1,25 @@ +{ + "id": 158592, + "slug": "tornado-operation-desert-storm", + "name": "Tornado: Operation Desert Storm", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135012432" + ], + "created_at": "2026-07-10T10:10:47.655667", + "updated_at": "2026-07-10T10:10:47.655667", + "url": "/v1/games/tornado-operation-desert-storm" +} diff --git a/site/public/v1/games/tornado-q122822233/index.json b/site/public/v1/games/tornado-q122822233/index.json new file mode 100644 index 000000000000..40567fe929e6 --- /dev/null +++ b/site/public/v1/games/tornado-q122822233/index.json @@ -0,0 +1,31 @@ +{ + "id": 158595, + "slug": "tornado-q122822233", + "name": "Tornado", + "release_date": "2023-09-17", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "action game", + "simulation video game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122822233" + ], + "created_at": "2026-07-10T10:10:47.655667", + "updated_at": "2026-07-10T10:10:47.655667", + "url": "/v1/games/tornado-q122822233" +} diff --git a/site/public/v1/games/toro-station/index.json b/site/public/v1/games/toro-station/index.json new file mode 100644 index 000000000000..1ab6352814e7 --- /dev/null +++ b/site/public/v1/games/toro-station/index.json @@ -0,0 +1,25 @@ +{ + "id": 158605, + "slug": "toro-station", + "name": "Toro Station", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11322208" + ], + "created_at": "2026-07-10T10:10:47.658653", + "updated_at": "2026-07-10T10:10:47.658653", + "url": "/v1/games/toro-station" +} diff --git a/site/public/v1/games/total-annihilation-2/index.json b/site/public/v1/games/total-annihilation-2/index.json new file mode 100644 index 000000000000..8b332d648d09 --- /dev/null +++ b/site/public/v1/games/total-annihilation-2/index.json @@ -0,0 +1,25 @@ +{ + "id": 158652, + "slug": "total-annihilation-2", + "name": "Total Annihilation 2", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137848303" + ], + "created_at": "2026-07-10T10:10:47.671721", + "updated_at": "2026-07-10T10:10:47.671721", + "url": "/v1/games/total-annihilation-2" +} diff --git a/site/public/v1/games/total-annihilation-battle-tactics/index.json b/site/public/v1/games/total-annihilation-battle-tactics/index.json new file mode 100644 index 000000000000..58e4f11abf9b --- /dev/null +++ b/site/public/v1/games/total-annihilation-battle-tactics/index.json @@ -0,0 +1,33 @@ +{ + "id": 158653, + "slug": "total-annihilation-battle-tactics", + "name": "Total Annihilation: Battle Tactics", + "release_date": "1998-06-30", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "real-time strategy" + ], + "stores": [], + "developers": [ + "Cavedog Entertainment" + ], + "publishers": [ + "Atari, Inc." + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3532665" + ], + "created_at": "2026-07-10T10:10:47.671721", + "updated_at": "2026-07-10T10:10:47.671721", + "url": "/v1/games/total-annihilation-battle-tactics" +} diff --git a/site/public/v1/games/total-annihilation-the-core-contingency/index.json b/site/public/v1/games/total-annihilation-the-core-contingency/index.json new file mode 100644 index 000000000000..9f4ab40ee21d --- /dev/null +++ b/site/public/v1/games/total-annihilation-the-core-contingency/index.json @@ -0,0 +1,34 @@ +{ + "id": 158655, + "slug": "total-annihilation-the-core-contingency", + "name": "Total Annihilation: The Core Contingency", + "release_date": "1998-04-30", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Classic Mac OS", + "Microsoft Windows" + ], + "genres": [ + "real-time strategy" + ], + "stores": [], + "developers": [ + "Cavedog Entertainment" + ], + "publishers": [ + "Atari, Inc." + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4357791" + ], + "created_at": "2026-07-10T10:10:47.671721", + "updated_at": "2026-07-10T10:10:47.671721", + "url": "/v1/games/total-annihilation-the-core-contingency" +} diff --git a/site/public/v1/games/total-heaven/index.json b/site/public/v1/games/total-heaven/index.json new file mode 100644 index 000000000000..0481f30165d5 --- /dev/null +++ b/site/public/v1/games/total-heaven/index.json @@ -0,0 +1,27 @@ +{ + "id": 158690, + "slug": "total-heaven", + "name": "Total Heaven", + "release_date": "1998-05-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q97924364" + ], + "created_at": "2026-07-10T10:10:47.680183", + "updated_at": "2026-07-10T10:10:47.680183", + "url": "/v1/games/total-heaven" +} diff --git a/site/public/v1/games/total-overdose-2-tequila-gunrise/index.json b/site/public/v1/games/total-overdose-2-tequila-gunrise/index.json new file mode 100644 index 000000000000..b602fa344806 --- /dev/null +++ b/site/public/v1/games/total-overdose-2-tequila-gunrise/index.json @@ -0,0 +1,27 @@ +{ + "id": 158696, + "slug": "total-overdose-2-tequila-gunrise", + "name": "Total Overdose 2: Tequila Gunrise", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 3" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10383835" + ], + "created_at": "2026-07-10T10:10:47.684183", + "updated_at": "2026-07-10T10:10:47.684183", + "url": "/v1/games/total-overdose-2-tequila-gunrise" +} diff --git a/site/public/v1/games/total-victory-victory-or-defeat/index.json b/site/public/v1/games/total-victory-victory-or-defeat/index.json new file mode 100644 index 000000000000..39b0a42c14ff --- /dev/null +++ b/site/public/v1/games/total-victory-victory-or-defeat/index.json @@ -0,0 +1,25 @@ +{ + "id": 158716, + "slug": "total-victory-victory-or-defeat", + "name": "Total Victory: Victory or Defeat", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122189811" + ], + "created_at": "2026-07-10T10:10:47.690183", + "updated_at": "2026-07-10T10:10:47.690183", + "url": "/v1/games/total-victory-victory-or-defeat" +} diff --git a/site/public/v1/games/total-war-eras/index.json b/site/public/v1/games/total-war-eras/index.json new file mode 100644 index 000000000000..1fa430e93660 --- /dev/null +++ b/site/public/v1/games/total-war-eras/index.json @@ -0,0 +1,25 @@ +{ + "id": 158723, + "slug": "total-war-eras", + "name": "Total War: Eras", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q133796163" + ], + "created_at": "2026-07-10T10:10:47.692177", + "updated_at": "2026-07-10T10:10:47.692177", + "url": "/v1/games/total-war-eras" +} diff --git a/site/public/v1/games/total-war-rome-ii-desert-kingdoms-culture-pack/index.json b/site/public/v1/games/total-war-rome-ii-desert-kingdoms-culture-pack/index.json new file mode 100644 index 000000000000..90bf63cc6b76 --- /dev/null +++ b/site/public/v1/games/total-war-rome-ii-desert-kingdoms-culture-pack/index.json @@ -0,0 +1,27 @@ +{ + "id": 158726, + "slug": "total-war-rome-ii-desert-kingdoms-culture-pack", + "name": "Total War: ROME II - Desert Kingdoms Culture Pack", + "release_date": "2018-03-08", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115284062" + ], + "created_at": "2026-07-10T10:10:47.692177", + "updated_at": "2026-07-10T10:10:47.692177", + "url": "/v1/games/total-war-rome-ii-desert-kingdoms-culture-pack" +} diff --git a/site/public/v1/games/total-war-rome-ii-empire-divided-campaign-pack/index.json b/site/public/v1/games/total-war-rome-ii-empire-divided-campaign-pack/index.json new file mode 100644 index 000000000000..81c1a82e305b --- /dev/null +++ b/site/public/v1/games/total-war-rome-ii-empire-divided-campaign-pack/index.json @@ -0,0 +1,31 @@ +{ + "id": 158727, + "slug": "total-war-rome-ii-empire-divided-campaign-pack", + "name": "Total War: ROME II - Empire Divided Campaign Pack", + "release_date": "2017-11-30", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Creative Assembly" + ], + "publishers": [ + "Sega" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115284037" + ], + "created_at": "2026-07-10T10:10:47.693177", + "updated_at": "2026-07-10T10:10:47.693177", + "url": "/v1/games/total-war-rome-ii-empire-divided-campaign-pack" +} diff --git a/site/public/v1/games/total-war-three-kingdoms-a-world-betrayed/index.json b/site/public/v1/games/total-war-three-kingdoms-a-world-betrayed/index.json new file mode 100644 index 000000000000..fe8b643071b0 --- /dev/null +++ b/site/public/v1/games/total-war-three-kingdoms-a-world-betrayed/index.json @@ -0,0 +1,25 @@ +{ + "id": 158734, + "slug": "total-war-three-kingdoms-a-world-betrayed", + "name": "Total War: Three Kingdoms - A World Betrayed", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140448379" + ], + "created_at": "2026-07-10T10:10:47.694178", + "updated_at": "2026-07-10T10:10:47.694178", + "url": "/v1/games/total-war-three-kingdoms-a-world-betrayed" +} diff --git a/site/public/v1/games/total-war-warhammer-ii-mortal-empires/index.json b/site/public/v1/games/total-war-warhammer-ii-mortal-empires/index.json new file mode 100644 index 000000000000..fa5fd7982231 --- /dev/null +++ b/site/public/v1/games/total-war-warhammer-ii-mortal-empires/index.json @@ -0,0 +1,25 @@ +{ + "id": 158737, + "slug": "total-war-warhammer-ii-mortal-empires", + "name": "Total War: Warhammer II - Mortal Empires", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140420155" + ], + "created_at": "2026-07-10T10:10:47.695178", + "updated_at": "2026-07-10T10:10:47.695178", + "url": "/v1/games/total-war-warhammer-ii-mortal-empires" +} diff --git a/site/public/v1/games/touch-striker/index.json b/site/public/v1/games/touch-striker/index.json new file mode 100644 index 000000000000..2ae3823c1dbd --- /dev/null +++ b/site/public/v1/games/touch-striker/index.json @@ -0,0 +1,27 @@ +{ + "id": 158823, + "slug": "touch-striker", + "name": "Touch Striker", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [ + "Sega" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122956448" + ], + "created_at": "2026-07-10T10:10:47.717398", + "updated_at": "2026-07-10T10:10:47.717398", + "url": "/v1/games/touch-striker" +} diff --git a/site/public/v1/games/tour-golf-online/index.json b/site/public/v1/games/tour-golf-online/index.json new file mode 100644 index 000000000000..a93fe71235ca --- /dev/null +++ b/site/public/v1/games/tour-golf-online/index.json @@ -0,0 +1,25 @@ +{ + "id": 159004, + "slug": "tour-golf-online", + "name": "Tour Golf Online", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140471234" + ], + "created_at": "2026-07-10T10:10:47.764407", + "updated_at": "2026-07-10T10:10:47.764407", + "url": "/v1/games/tour-golf-online" +} diff --git a/site/public/v1/games/tower-battles/index.json b/site/public/v1/games/tower-battles/index.json new file mode 100644 index 000000000000..058b930557eb --- /dev/null +++ b/site/public/v1/games/tower-battles/index.json @@ -0,0 +1,29 @@ +{ + "id": 159061, + "slug": "tower-battles", + "name": "Tower Battles", + "release_date": "2017-08-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "tower defense" + ], + "stores": [], + "developers": [ + "Planet3arth" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131919646" + ], + "created_at": "2026-07-10T10:10:47.780927", + "updated_at": "2026-07-10T10:10:47.780927", + "url": "/v1/games/tower-battles" +} diff --git a/site/public/v1/games/tower-defenders/index.json b/site/public/v1/games/tower-defenders/index.json new file mode 100644 index 000000000000..f8df37323598 --- /dev/null +++ b/site/public/v1/games/tower-defenders/index.json @@ -0,0 +1,28 @@ +{ + "id": 159073, + "slug": "tower-defenders", + "name": "Tower Defenders", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "fantasy", + "tower defense" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131934425" + ], + "created_at": "2026-07-10T10:10:47.784032", + "updated_at": "2026-07-10T10:10:47.784032", + "url": "/v1/games/tower-defenders" +} diff --git a/site/public/v1/games/tower-defense-simulator/index.json b/site/public/v1/games/tower-defense-simulator/index.json new file mode 100644 index 000000000000..bdda72a40a5b --- /dev/null +++ b/site/public/v1/games/tower-defense-simulator/index.json @@ -0,0 +1,27 @@ +{ + "id": 159083, + "slug": "tower-defense-simulator", + "name": "Tower Defense Simulator", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "tower defense" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131934402" + ], + "created_at": "2026-07-10T10:10:47.786929", + "updated_at": "2026-07-10T10:10:47.786929", + "url": "/v1/games/tower-defense-simulator" +} diff --git a/site/public/v1/games/tower-defense-x/index.json b/site/public/v1/games/tower-defense-x/index.json new file mode 100644 index 000000000000..a2c3c89cfb61 --- /dev/null +++ b/site/public/v1/games/tower-defense-x/index.json @@ -0,0 +1,25 @@ +{ + "id": 159085, + "slug": "tower-defense-x", + "name": "Tower Defense X", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131934413" + ], + "created_at": "2026-07-10T10:10:47.786929", + "updated_at": "2026-07-10T10:10:47.786929", + "url": "/v1/games/tower-defense-x" +} diff --git a/site/public/v1/games/town-of-sins-demo/index.json b/site/public/v1/games/town-of-sins-demo/index.json new file mode 100644 index 000000000000..0eb3cf704476 --- /dev/null +++ b/site/public/v1/games/town-of-sins-demo/index.json @@ -0,0 +1,35 @@ +{ + "id": 159261, + "slug": "town-of-sins-demo", + "name": "Town of Sins Demo", + "release_date": "2022-06-27", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "browser game", + "Microsoft Windows" + ], + "genres": [ + "strategy video game", + "erotic video game", + "futanari", + "card video game" + ], + "stores": [], + "developers": [ + "Hooligapps" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126156160" + ], + "created_at": "2026-07-10T10:10:47.834065", + "updated_at": "2026-07-10T10:10:47.834065", + "url": "/v1/games/town-of-sins-demo" +} diff --git a/site/public/v1/games/toy-soldiers-war-chest-hall-of-fame-edition/index.json b/site/public/v1/games/toy-soldiers-war-chest-hall-of-fame-edition/index.json new file mode 100644 index 000000000000..cdec9f91d755 --- /dev/null +++ b/site/public/v1/games/toy-soldiers-war-chest-hall-of-fame-edition/index.json @@ -0,0 +1,25 @@ +{ + "id": 159341, + "slug": "toy-soldiers-war-chest-hall-of-fame-edition", + "name": "Toy Soldiers: War Chest - Hall of Fame Edition", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q90132602" + ], + "created_at": "2026-07-10T10:10:47.853982", + "updated_at": "2026-07-10T10:10:47.853982", + "url": "/v1/games/toy-soldiers-war-chest-hall-of-fame-edition" +} diff --git a/site/public/v1/games/toy-story-retro-roundup/index.json b/site/public/v1/games/toy-story-retro-roundup/index.json new file mode 100644 index 000000000000..368b427285e0 --- /dev/null +++ b/site/public/v1/games/toy-story-retro-roundup/index.json @@ -0,0 +1,27 @@ +{ + "id": 159353, + "slug": "toy-story-retro-roundup", + "name": "Toy Story: Retro Roundup!", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140035299" + ], + "created_at": "2026-07-10T10:10:47.856979", + "updated_at": "2026-07-10T10:10:47.856979", + "url": "/v1/games/toy-story-retro-roundup" +} diff --git a/site/public/v1/games/trackmania-power-up/index.json b/site/public/v1/games/trackmania-power-up/index.json new file mode 100644 index 000000000000..08e533ce8440 --- /dev/null +++ b/site/public/v1/games/trackmania-power-up/index.json @@ -0,0 +1,29 @@ +{ + "id": 159447, + "slug": "trackmania-power-up", + "name": "TrackMania: Power Up!", + "release_date": "2004-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Nadeo" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q24934806" + ], + "created_at": "2026-07-10T10:10:47.883715", + "updated_at": "2026-07-10T10:10:47.883715", + "url": "/v1/games/trackmania-power-up" +} diff --git a/site/public/v1/games/trackmania-sunrise-extreme/index.json b/site/public/v1/games/trackmania-sunrise-extreme/index.json new file mode 100644 index 000000000000..b2130418c5f8 --- /dev/null +++ b/site/public/v1/games/trackmania-sunrise-extreme/index.json @@ -0,0 +1,33 @@ +{ + "id": 159450, + "slug": "trackmania-sunrise-extreme", + "name": "TrackMania Sunrise eXtreme", + "release_date": "2005-11-15", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "IBM PC compatible", + "Microsoft Windows" + ], + "genres": [ + "online game", + "racing video game" + ], + "stores": [], + "developers": [ + "Nadeo" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q53673309" + ], + "created_at": "2026-07-10T10:10:47.883715", + "updated_at": "2026-07-10T10:10:47.883715", + "url": "/v1/games/trackmania-sunrise-extreme" +} diff --git a/site/public/v1/games/tracon-ii-canadian-region-data/index.json b/site/public/v1/games/tracon-ii-canadian-region-data/index.json new file mode 100644 index 000000000000..37491716daba --- /dev/null +++ b/site/public/v1/games/tracon-ii-canadian-region-data/index.json @@ -0,0 +1,25 @@ +{ + "id": 159475, + "slug": "tracon-ii-canadian-region-data", + "name": "Tracon II: Canadian Region Data", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126185924" + ], + "created_at": "2026-07-10T10:10:47.890696", + "updated_at": "2026-07-10T10:10:47.890696", + "url": "/v1/games/tracon-ii-canadian-region-data" +} diff --git a/site/public/v1/games/tracon-ii-western-region-data/index.json b/site/public/v1/games/tracon-ii-western-region-data/index.json new file mode 100644 index 000000000000..34a170eed97b --- /dev/null +++ b/site/public/v1/games/tracon-ii-western-region-data/index.json @@ -0,0 +1,25 @@ +{ + "id": 159480, + "slug": "tracon-ii-western-region-data", + "name": "Tracon II: Western Region Data", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126185929" + ], + "created_at": "2026-07-10T10:10:47.892737", + "updated_at": "2026-07-10T10:10:47.892737", + "url": "/v1/games/tracon-ii-western-region-data" +} diff --git a/site/public/v1/games/traffic-giant-expansion/index.json b/site/public/v1/games/traffic-giant-expansion/index.json new file mode 100644 index 000000000000..e24576b71cdc --- /dev/null +++ b/site/public/v1/games/traffic-giant-expansion/index.json @@ -0,0 +1,29 @@ +{ + "id": 159530, + "slug": "traffic-giant-expansion", + "name": "Traffic Giant: Expansion", + "release_date": "2000-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "JoWooD Entertainment" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q114453689" + ], + "created_at": "2026-07-10T10:10:47.905625", + "updated_at": "2026-07-10T10:10:47.905625", + "url": "/v1/games/traffic-giant-expansion" +} diff --git a/site/public/v1/games/train-simulator-aerotrain-streamlined-train-add-on/index.json b/site/public/v1/games/train-simulator-aerotrain-streamlined-train-add-on/index.json new file mode 100644 index 000000000000..bd81022da921 --- /dev/null +++ b/site/public/v1/games/train-simulator-aerotrain-streamlined-train-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159638, + "slug": "train-simulator-aerotrain-streamlined-train-add-on", + "name": "Train Simulator: Aerotrain Streamlined Train Add-On", + "release_date": "2017-07-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Digital Train Model" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105927" + ], + "created_at": "2026-07-10T10:10:47.948595", + "updated_at": "2026-07-10T10:10:47.948595", + "url": "/v1/games/train-simulator-aerotrain-streamlined-train-add-on" +} diff --git a/site/public/v1/games/train-simulator-albula-line-st-moritz-thusis-route-add-on/index.json b/site/public/v1/games/train-simulator-albula-line-st-moritz-thusis-route-add-on/index.json new file mode 100644 index 000000000000..07cd024d4243 --- /dev/null +++ b/site/public/v1/games/train-simulator-albula-line-st-moritz-thusis-route-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159639, + "slug": "train-simulator-albula-line-st-moritz-thusis-route-add-on", + "name": "Train Simulator: Albula Line: St Moritz - Thusis Route Add-On", + "release_date": "2016-09-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Thomson Interactive" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105796" + ], + "created_at": "2026-07-10T10:10:47.948595", + "updated_at": "2026-07-10T10:10:47.948595", + "url": "/v1/games/train-simulator-albula-line-st-moritz-thusis-route-add-on" +} diff --git a/site/public/v1/games/train-simulator-allg-ubahn-kempten-lindau-immenstadt-oberstdorf-route-add-on/index.json b/site/public/v1/games/train-simulator-allg-ubahn-kempten-lindau-immenstadt-oberstdorf-route-add-on/index.json new file mode 100644 index 000000000000..dbee11971d80 --- /dev/null +++ b/site/public/v1/games/train-simulator-allg-ubahn-kempten-lindau-immenstadt-oberstdorf-route-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159640, + "slug": "train-simulator-allg-ubahn-kempten-lindau-immenstadt-oberstdorf-route-add-on", + "name": "Train Simulator: Allgäubahn: Kempten - Lindau & Immenstadt - Oberstdorf Route Add-On", + "release_date": "2018-04-19", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "RSSLO" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106431" + ], + "created_at": "2026-07-10T10:10:47.948595", + "updated_at": "2026-07-10T10:10:47.948595", + "url": "/v1/games/train-simulator-allg-ubahn-kempten-lindau-immenstadt-oberstdorf-route-add-on" +} diff --git a/site/public/v1/games/train-simulator-amtrak-acela-express-emu-add-on/index.json b/site/public/v1/games/train-simulator-amtrak-acela-express-emu-add-on/index.json new file mode 100644 index 000000000000..7573c47452e8 --- /dev/null +++ b/site/public/v1/games/train-simulator-amtrak-acela-express-emu-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159641, + "slug": "train-simulator-amtrak-acela-express-emu-add-on", + "name": "Train Simulator: Amtrak Acela Express EMU Add-On", + "release_date": "2011-10-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105516" + ], + "created_at": "2026-07-10T10:10:47.948595", + "updated_at": "2026-07-10T10:10:47.948595", + "url": "/v1/games/train-simulator-amtrak-acela-express-emu-add-on" +} diff --git a/site/public/v1/games/train-simulator-amtrak-dash-8-32bwh-loco-add-on/index.json b/site/public/v1/games/train-simulator-amtrak-dash-8-32bwh-loco-add-on/index.json new file mode 100644 index 000000000000..69915a63ac6d --- /dev/null +++ b/site/public/v1/games/train-simulator-amtrak-dash-8-32bwh-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159642, + "slug": "train-simulator-amtrak-dash-8-32bwh-loco-add-on", + "name": "Train Simulator: Amtrak® Dash 8-32BWH Loco Add-On", + "release_date": "2016-03-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105628" + ], + "created_at": "2026-07-10T10:10:47.948595", + "updated_at": "2026-07-10T10:10:47.948595", + "url": "/v1/games/train-simulator-amtrak-dash-8-32bwh-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-amtrak-e8-loco-add-on/index.json b/site/public/v1/games/train-simulator-amtrak-e8-loco-add-on/index.json new file mode 100644 index 000000000000..6300e11cd95c --- /dev/null +++ b/site/public/v1/games/train-simulator-amtrak-e8-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159643, + "slug": "train-simulator-amtrak-e8-loco-add-on", + "name": "Train Simulator: Amtrak E8 Loco Add-On", + "release_date": "2018-03-22", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105617" + ], + "created_at": "2026-07-10T10:10:47.948595", + "updated_at": "2026-07-10T10:10:47.948595", + "url": "/v1/games/train-simulator-amtrak-e8-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-amtrak-f40ph-california-zephyr-loco-add-on/index.json b/site/public/v1/games/train-simulator-amtrak-f40ph-california-zephyr-loco-add-on/index.json new file mode 100644 index 000000000000..8fb73fb1e5cc --- /dev/null +++ b/site/public/v1/games/train-simulator-amtrak-f40ph-california-zephyr-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159644, + "slug": "train-simulator-amtrak-f40ph-california-zephyr-loco-add-on", + "name": "Train Simulator: Amtrak F40PH ‘California Zephyr’ Loco Add-On", + "release_date": "2012-10-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105759" + ], + "created_at": "2026-07-10T10:10:47.949595", + "updated_at": "2026-07-10T10:10:47.949595", + "url": "/v1/games/train-simulator-amtrak-f40ph-california-zephyr-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-amtrak-hhp-8-loco-add-on/index.json b/site/public/v1/games/train-simulator-amtrak-hhp-8-loco-add-on/index.json new file mode 100644 index 000000000000..e793c20adb4e --- /dev/null +++ b/site/public/v1/games/train-simulator-amtrak-hhp-8-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159645, + "slug": "train-simulator-amtrak-hhp-8-loco-add-on", + "name": "Train Simulator: Amtrak HHP-8 Loco Add-On", + "release_date": "2014-04-10", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105560" + ], + "created_at": "2026-07-10T10:10:47.949595", + "updated_at": "2026-07-10T10:10:47.949595", + "url": "/v1/games/train-simulator-amtrak-hhp-8-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-amtrak-p30ch-loco-add-on/index.json b/site/public/v1/games/train-simulator-amtrak-p30ch-loco-add-on/index.json new file mode 100644 index 000000000000..f2081b59238c --- /dev/null +++ b/site/public/v1/games/train-simulator-amtrak-p30ch-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159646, + "slug": "train-simulator-amtrak-p30ch-loco-add-on", + "name": "Train Simulator: Amtrak P30CH Loco Add-On", + "release_date": "2015-04-29", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105865" + ], + "created_at": "2026-07-10T10:10:47.949595", + "updated_at": "2026-07-10T10:10:47.949595", + "url": "/v1/games/train-simulator-amtrak-p30ch-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-amtrak-p42-dc-empire-builder-loco-add-on/index.json b/site/public/v1/games/train-simulator-amtrak-p42-dc-empire-builder-loco-add-on/index.json new file mode 100644 index 000000000000..9de1c5f655da --- /dev/null +++ b/site/public/v1/games/train-simulator-amtrak-p42-dc-empire-builder-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159647, + "slug": "train-simulator-amtrak-p42-dc-empire-builder-loco-add-on", + "name": "Train Simulator: Amtrak P42 DC 'Empire Builder' Loco Add-On", + "release_date": "2014-01-30", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105517" + ], + "created_at": "2026-07-10T10:10:47.949595", + "updated_at": "2026-07-10T10:10:47.949595", + "url": "/v1/games/train-simulator-amtrak-p42-dc-empire-builder-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-amtrak-sdp40f-loco-add-on/index.json b/site/public/v1/games/train-simulator-amtrak-sdp40f-loco-add-on/index.json new file mode 100644 index 000000000000..ee6b25e29673 --- /dev/null +++ b/site/public/v1/games/train-simulator-amtrak-sdp40f-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159648, + "slug": "train-simulator-amtrak-sdp40f-loco-add-on", + "name": "Train Simulator: Amtrak SDP40F Loco Add-On", + "release_date": "2018-09-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Digital Train Model" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105690" + ], + "created_at": "2026-07-10T10:10:47.949595", + "updated_at": "2026-07-10T10:10:47.949595", + "url": "/v1/games/train-simulator-amtrak-sdp40f-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-arizona-divide-winslow-williams-route-add-on/index.json b/site/public/v1/games/train-simulator-arizona-divide-winslow-williams-route-add-on/index.json new file mode 100644 index 000000000000..3eccce2817c9 --- /dev/null +++ b/site/public/v1/games/train-simulator-arizona-divide-winslow-williams-route-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159649, + "slug": "train-simulator-arizona-divide-winslow-williams-route-add-on", + "name": "Train Simulator: Arizona Divide: Winslow - Williams Route Add-on", + "release_date": "2021-03-26", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Milepost Simulations" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105577" + ], + "created_at": "2026-07-10T10:10:47.949595", + "updated_at": "2026-07-10T10:10:47.949595", + "url": "/v1/games/train-simulator-arizona-divide-winslow-williams-route-add-on" +} diff --git a/site/public/v1/games/train-simulator-arlbergbahn-innsbruck-bludenz-route-add-on/index.json b/site/public/v1/games/train-simulator-arlbergbahn-innsbruck-bludenz-route-add-on/index.json new file mode 100644 index 000000000000..c72b34ee37d2 --- /dev/null +++ b/site/public/v1/games/train-simulator-arlbergbahn-innsbruck-bludenz-route-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159650, + "slug": "train-simulator-arlbergbahn-innsbruck-bludenz-route-add-on", + "name": "Train Simulator: Arlbergbahn: Innsbruck - Bludenz Route Add-On", + "release_date": "2020-09-11", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "RSSLO" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105509" + ], + "created_at": "2026-07-10T10:10:47.950595", + "updated_at": "2026-07-10T10:10:47.950595", + "url": "/v1/games/train-simulator-arlbergbahn-innsbruck-bludenz-route-add-on" +} diff --git a/site/public/v1/games/train-simulator-arosa-line-route-add-on/index.json b/site/public/v1/games/train-simulator-arosa-line-route-add-on/index.json new file mode 100644 index 000000000000..db34e0c29c08 --- /dev/null +++ b/site/public/v1/games/train-simulator-arosa-line-route-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159651, + "slug": "train-simulator-arosa-line-route-add-on", + "name": "Train Simulator: Arosa Line Route Add-On", + "release_date": "2017-08-17", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Thomson Interactive" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105674" + ], + "created_at": "2026-07-10T10:10:47.950595", + "updated_at": "2026-07-10T10:10:47.950595", + "url": "/v1/games/train-simulator-arosa-line-route-add-on" +} diff --git a/site/public/v1/games/train-simulator-at-n-consolidation-class-280-157-loco-add-on/index.json b/site/public/v1/games/train-simulator-at-n-consolidation-class-280-157-loco-add-on/index.json new file mode 100644 index 000000000000..dad8fd66f911 --- /dev/null +++ b/site/public/v1/games/train-simulator-at-n-consolidation-class-280-157-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159652, + "slug": "train-simulator-at-n-consolidation-class-280-157-loco-add-on", + "name": "Train Simulator: AT&N Consolidation Class 280-157 Loco Add-On", + "release_date": "2013-03-14", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Smokebox" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105885" + ], + "created_at": "2026-07-10T10:10:47.950595", + "updated_at": "2026-07-10T10:10:47.950595", + "url": "/v1/games/train-simulator-at-n-consolidation-class-280-157-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-at-sf-sd45-2-loco-add-on/index.json b/site/public/v1/games/train-simulator-at-sf-sd45-2-loco-add-on/index.json new file mode 100644 index 000000000000..45dda33d080b --- /dev/null +++ b/site/public/v1/games/train-simulator-at-sf-sd45-2-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159653, + "slug": "train-simulator-at-sf-sd45-2-loco-add-on", + "name": "Train Simulator: AT&SF SD45-2 Loco Add-On", + "release_date": "2017-06-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Digital Train Model" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106140" + ], + "created_at": "2026-07-10T10:10:47.950595", + "updated_at": "2026-07-10T10:10:47.950595", + "url": "/v1/games/train-simulator-at-sf-sd45-2-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-b-o-kingwood-branch-tunnelton-kingwood-route-add-on/index.json b/site/public/v1/games/train-simulator-b-o-kingwood-branch-tunnelton-kingwood-route-add-on/index.json new file mode 100644 index 000000000000..9547ed6a9a38 --- /dev/null +++ b/site/public/v1/games/train-simulator-b-o-kingwood-branch-tunnelton-kingwood-route-add-on/index.json @@ -0,0 +1,31 @@ +{ + "id": 159654, + "slug": "train-simulator-b-o-kingwood-branch-tunnelton-kingwood-route-add-on", + "name": "Train Simulator: B&O Kingwood Branch: Tunnelton - Kingwood Route Add-On", + "release_date": "2017-05-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106144" + ], + "created_at": "2026-07-10T10:10:47.950595", + "updated_at": "2026-07-10T10:10:47.950595", + "url": "/v1/games/train-simulator-b-o-kingwood-branch-tunnelton-kingwood-route-add-on" +} diff --git a/site/public/v1/games/train-simulator-bahnstrecke-riesa-dresden-route-add-on/index.json b/site/public/v1/games/train-simulator-bahnstrecke-riesa-dresden-route-add-on/index.json new file mode 100644 index 000000000000..a8e09ba0f994 --- /dev/null +++ b/site/public/v1/games/train-simulator-bahnstrecke-riesa-dresden-route-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159655, + "slug": "train-simulator-bahnstrecke-riesa-dresden-route-add-on", + "name": "Train Simulator: Bahnstrecke Riesa - Dresden Route Add-On", + "release_date": "2021-02-11", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105474" + ], + "created_at": "2026-07-10T10:10:47.950595", + "updated_at": "2026-07-10T10:10:47.950595", + "url": "/v1/games/train-simulator-bahnstrecke-riesa-dresden-route-add-on" +} diff --git a/site/public/v1/games/train-simulator-battle-for-sherman-hill-add-on/index.json b/site/public/v1/games/train-simulator-battle-for-sherman-hill-add-on/index.json new file mode 100644 index 000000000000..8a4b16fb3358 --- /dev/null +++ b/site/public/v1/games/train-simulator-battle-for-sherman-hill-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159656, + "slug": "train-simulator-battle-for-sherman-hill-add-on", + "name": "Train Simulator: Battle For Sherman Hill Add-On", + "release_date": "2020-05-14", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105692" + ], + "created_at": "2026-07-10T10:10:47.950595", + "updated_at": "2026-07-10T10:10:47.950595", + "url": "/v1/games/train-simulator-battle-for-sherman-hill-add-on" +} diff --git a/site/public/v1/games/train-simulator-bb-1014-loco-add-on/index.json b/site/public/v1/games/train-simulator-bb-1014-loco-add-on/index.json new file mode 100644 index 000000000000..ce1626407dc3 --- /dev/null +++ b/site/public/v1/games/train-simulator-bb-1014-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159657, + "slug": "train-simulator-bb-1014-loco-add-on", + "name": "Train Simulator: ÖBB 1014 Loco Add-On", + "release_date": "2018-07-19", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Skyhook Games Studio" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106030" + ], + "created_at": "2026-07-10T10:10:47.951594", + "updated_at": "2026-07-10T10:10:47.951594", + "url": "/v1/games/train-simulator-bb-1014-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-bb-1044-loco-add-on/index.json b/site/public/v1/games/train-simulator-bb-1044-loco-add-on/index.json new file mode 100644 index 000000000000..26346f698814 --- /dev/null +++ b/site/public/v1/games/train-simulator-bb-1044-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159658, + "slug": "train-simulator-bb-1044-loco-add-on", + "name": "Train Simulator: ÖBB 1044 Loco Add-On", + "release_date": "2016-06-02", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Skyhook Games Studio" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106165" + ], + "created_at": "2026-07-10T10:10:47.951594", + "updated_at": "2026-07-10T10:10:47.951594", + "url": "/v1/games/train-simulator-bb-1044-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-bb-1142-loco-add-on/index.json b/site/public/v1/games/train-simulator-bb-1142-loco-add-on/index.json new file mode 100644 index 000000000000..09c0acd8f764 --- /dev/null +++ b/site/public/v1/games/train-simulator-bb-1142-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159659, + "slug": "train-simulator-bb-1142-loco-add-on", + "name": "Train Simulator: ÖBB 1142 Loco Add-On", + "release_date": "2019-05-10", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Skyhook Games Studio" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105939" + ], + "created_at": "2026-07-10T10:10:47.951594", + "updated_at": "2026-07-10T10:10:47.951594", + "url": "/v1/games/train-simulator-bb-1142-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-bb-1144-cityshuttle-wiesel-loco-add-on/index.json b/site/public/v1/games/train-simulator-bb-1144-cityshuttle-wiesel-loco-add-on/index.json new file mode 100644 index 000000000000..0d2c627cd4f5 --- /dev/null +++ b/site/public/v1/games/train-simulator-bb-1144-cityshuttle-wiesel-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159660, + "slug": "train-simulator-bb-1144-cityshuttle-wiesel-loco-add-on", + "name": "Train Simulator: ÖBB 1144 & CityShuttle Wiesel Loco Add-On", + "release_date": "2018-11-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Skyhook Games Studio" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105962" + ], + "created_at": "2026-07-10T10:10:47.951594", + "updated_at": "2026-07-10T10:10:47.951594", + "url": "/v1/games/train-simulator-bb-1144-cityshuttle-wiesel-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-bb-1293-loco-add-on/index.json b/site/public/v1/games/train-simulator-bb-1293-loco-add-on/index.json new file mode 100644 index 000000000000..1a988e512e55 --- /dev/null +++ b/site/public/v1/games/train-simulator-bb-1293-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159661, + "slug": "train-simulator-bb-1293-loco-add-on", + "name": "Train Simulator: ÖBB 1293 Loco Add-On", + "release_date": "2019-04-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "RSSLO" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105944" + ], + "created_at": "2026-07-10T10:10:47.951594", + "updated_at": "2026-07-10T10:10:47.951594", + "url": "/v1/games/train-simulator-bb-1293-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-bb-1822-loco-add-on/index.json b/site/public/v1/games/train-simulator-bb-1822-loco-add-on/index.json new file mode 100644 index 000000000000..b386d9fe3898 --- /dev/null +++ b/site/public/v1/games/train-simulator-bb-1822-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159662, + "slug": "train-simulator-bb-1822-loco-add-on", + "name": "Train Simulator: ÖBB 1822 Loco Add-On", + "release_date": "2020-07-30", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "RSSLO" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105797" + ], + "created_at": "2026-07-10T10:10:47.953594", + "updated_at": "2026-07-10T10:10:47.953594", + "url": "/v1/games/train-simulator-bb-1822-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-bb-4010-emu-add-on/index.json b/site/public/v1/games/train-simulator-bb-4010-emu-add-on/index.json new file mode 100644 index 000000000000..a1d5893eab05 --- /dev/null +++ b/site/public/v1/games/train-simulator-bb-4010-emu-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159663, + "slug": "train-simulator-bb-4010-emu-add-on", + "name": "Train Simulator: ÖBB 4010 EMU Add-On", + "release_date": "2018-03-08", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "RSSLO" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105886" + ], + "created_at": "2026-07-10T10:10:47.954594", + "updated_at": "2026-07-10T10:10:47.954594", + "url": "/v1/games/train-simulator-bb-4010-emu-add-on" +} diff --git a/site/public/v1/games/train-simulator-bb-4020-emu-add-on/index.json b/site/public/v1/games/train-simulator-bb-4020-emu-add-on/index.json new file mode 100644 index 000000000000..2bb7cae4583f --- /dev/null +++ b/site/public/v1/games/train-simulator-bb-4020-emu-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159664, + "slug": "train-simulator-bb-4020-emu-add-on", + "name": "Train Simulator: ÖBB 4020 EMU Add-On", + "release_date": "2017-02-16", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105618" + ], + "created_at": "2026-07-10T10:10:47.955594", + "updated_at": "2026-07-10T10:10:47.955594", + "url": "/v1/games/train-simulator-bb-4020-emu-add-on" +} diff --git a/site/public/v1/games/train-simulator-bb-4023-talent-emu-add-on/index.json b/site/public/v1/games/train-simulator-bb-4023-talent-emu-add-on/index.json new file mode 100644 index 000000000000..4dfbe7fa6c9f --- /dev/null +++ b/site/public/v1/games/train-simulator-bb-4023-talent-emu-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159665, + "slug": "train-simulator-bb-4023-talent-emu-add-on", + "name": "Train Simulator: ÖBB 4023 ‘Talent' EMU Add-On", + "release_date": "2016-08-09", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "RSSLO" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106131" + ], + "created_at": "2026-07-10T10:10:47.958593", + "updated_at": "2026-07-10T10:10:47.958593", + "url": "/v1/games/train-simulator-bb-4023-talent-emu-add-on" +} diff --git a/site/public/v1/games/train-simulator-bb-4744-cityjet-emu-add-on/index.json b/site/public/v1/games/train-simulator-bb-4744-cityjet-emu-add-on/index.json new file mode 100644 index 000000000000..b351bb29e706 --- /dev/null +++ b/site/public/v1/games/train-simulator-bb-4744-cityjet-emu-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159666, + "slug": "train-simulator-bb-4744-cityjet-emu-add-on", + "name": "Train Simulator: ÖBB 4744 ‘Cityjet’ EMU Add-On", + "release_date": "2019-08-23", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Skyhook Games Studio" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105958" + ], + "created_at": "2026-07-10T10:10:47.958593", + "updated_at": "2026-07-10T10:10:47.958593", + "url": "/v1/games/train-simulator-bb-4744-cityjet-emu-add-on" +} diff --git a/site/public/v1/games/train-simulator-bb-5047-dmu-add-on/index.json b/site/public/v1/games/train-simulator-bb-5047-dmu-add-on/index.json new file mode 100644 index 000000000000..28068256ab02 --- /dev/null +++ b/site/public/v1/games/train-simulator-bb-5047-dmu-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159667, + "slug": "train-simulator-bb-5047-dmu-add-on", + "name": "Train Simulator: ÖBB 5047 DMU Add-On", + "release_date": "2020-01-09", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Skyhook Games Studio" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105852" + ], + "created_at": "2026-07-10T10:10:47.958593", + "updated_at": "2026-07-10T10:10:47.958593", + "url": "/v1/games/train-simulator-bb-5047-dmu-add-on" +} diff --git a/site/public/v1/games/train-simulator-berlin-leipzig-route-add-on/index.json b/site/public/v1/games/train-simulator-berlin-leipzig-route-add-on/index.json new file mode 100644 index 000000000000..c1c8db5af6c1 --- /dev/null +++ b/site/public/v1/games/train-simulator-berlin-leipzig-route-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159668, + "slug": "train-simulator-berlin-leipzig-route-add-on", + "name": "Train Simulator: Berlin - Leipzig Route Add-On", + "release_date": "2016-08-11", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Aerosoft" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105682" + ], + "created_at": "2026-07-10T10:10:47.959593", + "updated_at": "2026-07-10T10:10:47.959593", + "url": "/v1/games/train-simulator-berlin-leipzig-route-add-on" +} diff --git a/site/public/v1/games/train-simulator-berlin-wittenberg-route-add-on/index.json b/site/public/v1/games/train-simulator-berlin-wittenberg-route-add-on/index.json new file mode 100644 index 000000000000..efd1fc7ff3d1 --- /dev/null +++ b/site/public/v1/games/train-simulator-berlin-wittenberg-route-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159669, + "slug": "train-simulator-berlin-wittenberg-route-add-on", + "name": "Train Simulator: Berlin-Wittenberg Route Add-On", + "release_date": "2013-11-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Aerosoft" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105971" + ], + "created_at": "2026-07-10T10:10:47.959593", + "updated_at": "2026-07-10T10:10:47.959593", + "url": "/v1/games/train-simulator-berlin-wittenberg-route-add-on" +} diff --git a/site/public/v1/games/train-simulator-bernina-line-poschiavo-tirano-route-add-on/index.json b/site/public/v1/games/train-simulator-bernina-line-poschiavo-tirano-route-add-on/index.json new file mode 100644 index 000000000000..e6eed8cfe61d --- /dev/null +++ b/site/public/v1/games/train-simulator-bernina-line-poschiavo-tirano-route-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159670, + "slug": "train-simulator-bernina-line-poschiavo-tirano-route-add-on", + "name": "Train Simulator: Bernina Line: Poschiavo - Tirano Route Add-On", + "release_date": "2019-11-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Rivet Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105788" + ], + "created_at": "2026-07-10T10:10:47.959593", + "updated_at": "2026-07-10T10:10:47.959593", + "url": "/v1/games/train-simulator-bernina-line-poschiavo-tirano-route-add-on" +} diff --git a/site/public/v1/games/train-simulator-bernina-pass-st-moritz-poschiavo-route-add-on/index.json b/site/public/v1/games/train-simulator-bernina-pass-st-moritz-poschiavo-route-add-on/index.json new file mode 100644 index 000000000000..8b60757a6708 --- /dev/null +++ b/site/public/v1/games/train-simulator-bernina-pass-st-moritz-poschiavo-route-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159671, + "slug": "train-simulator-bernina-pass-st-moritz-poschiavo-route-add-on", + "name": "Train Simulator: Bernina Pass: St Moritz – Poschiavo Route Add-On", + "release_date": "2018-09-20", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Thomson Interactive" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105794" + ], + "created_at": "2026-07-10T10:10:47.959593", + "updated_at": "2026-07-10T10:10:47.959593", + "url": "/v1/games/train-simulator-bernina-pass-st-moritz-poschiavo-route-add-on" +} diff --git a/site/public/v1/games/train-simulator-birmingham-cross-city-line-lichfield-bromsgrove-redditch-route-add-on/index.json b/site/public/v1/games/train-simulator-birmingham-cross-city-line-lichfield-bromsgrove-redditch-route-add-on/index.json new file mode 100644 index 000000000000..df10a4efd16f --- /dev/null +++ b/site/public/v1/games/train-simulator-birmingham-cross-city-line-lichfield-bromsgrove-redditch-route-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159672, + "slug": "train-simulator-birmingham-cross-city-line-lichfield-bromsgrove-redditch-route-add-on", + "name": "Train Simulator: Birmingham Cross City Line: Lichfield - Bromsgrove & Redditch Route Add-On", + "release_date": "2021-03-19", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105473" + ], + "created_at": "2026-07-10T10:10:47.960592", + "updated_at": "2026-07-10T10:10:47.960592", + "url": "/v1/games/train-simulator-birmingham-cross-city-line-lichfield-bromsgrove-redditch-route-add-on" +} diff --git a/site/public/v1/games/train-simulator-black-forest-journeys-freiburg-hausach-route-add-on/index.json b/site/public/v1/games/train-simulator-black-forest-journeys-freiburg-hausach-route-add-on/index.json new file mode 100644 index 000000000000..b0fdf6f8be85 --- /dev/null +++ b/site/public/v1/games/train-simulator-black-forest-journeys-freiburg-hausach-route-add-on/index.json @@ -0,0 +1,31 @@ +{ + "id": 159673, + "slug": "train-simulator-black-forest-journeys-freiburg-hausach-route-add-on", + "name": "Train Simulator: Black Forest Journeys: Freiburg-Hausach Route Add-On", + "release_date": "2016-04-14", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106057" + ], + "created_at": "2026-07-10T10:10:47.960592", + "updated_at": "2026-07-10T10:10:47.960592", + "url": "/v1/games/train-simulator-black-forest-journeys-freiburg-hausach-route-add-on" +} diff --git a/site/public/v1/games/train-simulator-boston-maine-ge-44-loco-add-on/index.json b/site/public/v1/games/train-simulator-boston-maine-ge-44-loco-add-on/index.json new file mode 100644 index 000000000000..65e6dc8e7ae2 --- /dev/null +++ b/site/public/v1/games/train-simulator-boston-maine-ge-44-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159674, + "slug": "train-simulator-boston-maine-ge-44-loco-add-on", + "name": "Train Simulator: Boston & Maine GE 44 Loco Add-On", + "release_date": "2013-01-17", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Digital Train Model" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106022" + ], + "created_at": "2026-07-10T10:10:47.960592", + "updated_at": "2026-07-10T10:10:47.960592", + "url": "/v1/games/train-simulator-boston-maine-ge-44-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-br-266-loco-add-on/index.json b/site/public/v1/games/train-simulator-br-266-loco-add-on/index.json new file mode 100644 index 000000000000..936da7025cbc --- /dev/null +++ b/site/public/v1/games/train-simulator-br-266-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159675, + "slug": "train-simulator-br-266-loco-add-on", + "name": "Train Simulator: BR 266 Loco Add-On", + "release_date": "2014-12-05", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105934" + ], + "created_at": "2026-07-10T10:10:47.961671", + "updated_at": "2026-07-10T10:10:47.961671", + "url": "/v1/games/train-simulator-br-266-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-br-6mt-clan-class-loco-add-on/index.json b/site/public/v1/games/train-simulator-br-6mt-clan-class-loco-add-on/index.json new file mode 100644 index 000000000000..b81e78cbd3a1 --- /dev/null +++ b/site/public/v1/games/train-simulator-br-6mt-clan-class-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159676, + "slug": "train-simulator-br-6mt-clan-class-loco-add-on", + "name": "Train Simulator: BR 6MT Clan Class Loco Add-On", + "release_date": "2014-11-25", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106215" + ], + "created_at": "2026-07-10T10:10:47.961671", + "updated_at": "2026-07-10T10:10:47.961671", + "url": "/v1/games/train-simulator-br-6mt-clan-class-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-br-9f-loco-add-on/index.json b/site/public/v1/games/train-simulator-br-9f-loco-add-on/index.json new file mode 100644 index 000000000000..e5aabc1d5843 --- /dev/null +++ b/site/public/v1/games/train-simulator-br-9f-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159677, + "slug": "train-simulator-br-9f-loco-add-on", + "name": "Train Simulator: BR 9F Loco Add-On", + "release_date": "2014-11-19", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106182" + ], + "created_at": "2026-07-10T10:10:47.961671", + "updated_at": "2026-07-10T10:10:47.961671", + "url": "/v1/games/train-simulator-br-9f-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-br-blue-diesel-electric-pack-loco-add-on/index.json b/site/public/v1/games/train-simulator-br-blue-diesel-electric-pack-loco-add-on/index.json new file mode 100644 index 000000000000..aa3190c3a26c --- /dev/null +++ b/site/public/v1/games/train-simulator-br-blue-diesel-electric-pack-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159678, + "slug": "train-simulator-br-blue-diesel-electric-pack-loco-add-on", + "name": "Train Simulator: BR Blue Diesel Electric Pack Loco Add-On", + "release_date": "2016-05-19", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105623" + ], + "created_at": "2026-07-10T10:10:47.961671", + "updated_at": "2026-07-10T10:10:47.961671", + "url": "/v1/games/train-simulator-br-blue-diesel-electric-pack-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-br-blue-pack-loco-add-on/index.json b/site/public/v1/games/train-simulator-br-blue-pack-loco-add-on/index.json new file mode 100644 index 000000000000..0cddc58a2f2a --- /dev/null +++ b/site/public/v1/games/train-simulator-br-blue-pack-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159679, + "slug": "train-simulator-br-blue-pack-loco-add-on", + "name": "Train Simulator: BR Blue Pack Loco Add-On", + "release_date": "2015-10-29", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105634" + ], + "created_at": "2026-07-10T10:10:47.961671", + "updated_at": "2026-07-10T10:10:47.961671", + "url": "/v1/games/train-simulator-br-blue-pack-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-br-castle-class-loco-add-on/index.json b/site/public/v1/games/train-simulator-br-castle-class-loco-add-on/index.json new file mode 100644 index 000000000000..f84d85dc3017 --- /dev/null +++ b/site/public/v1/games/train-simulator-br-castle-class-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159680, + "slug": "train-simulator-br-castle-class-loco-add-on", + "name": "Train Simulator: BR Castle Class Loco Add-On", + "release_date": "2014-07-03", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106129" + ], + "created_at": "2026-07-10T10:10:47.962700", + "updated_at": "2026-07-10T10:10:47.962700", + "url": "/v1/games/train-simulator-br-castle-class-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-br-class-07-loco-add-on/index.json b/site/public/v1/games/train-simulator-br-class-07-loco-add-on/index.json new file mode 100644 index 000000000000..4003620e35e6 --- /dev/null +++ b/site/public/v1/games/train-simulator-br-class-07-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159681, + "slug": "train-simulator-br-class-07-loco-add-on", + "name": "Train Simulator: BR Class 07 Loco Add-On", + "release_date": "2015-04-22", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Skyhook Games Studio" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106177" + ], + "created_at": "2026-07-10T10:10:47.962700", + "updated_at": "2026-07-10T10:10:47.962700", + "url": "/v1/games/train-simulator-br-class-07-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-br-class-101-dmu-add-on/index.json b/site/public/v1/games/train-simulator-br-class-101-dmu-add-on/index.json new file mode 100644 index 000000000000..46424d244591 --- /dev/null +++ b/site/public/v1/games/train-simulator-br-class-101-dmu-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159682, + "slug": "train-simulator-br-class-101-dmu-add-on", + "name": "Train Simulator: BR Class 101 DMU Add-On", + "release_date": "2013-05-02", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105563" + ], + "created_at": "2026-07-10T10:10:47.962700", + "updated_at": "2026-07-10T10:10:47.962700", + "url": "/v1/games/train-simulator-br-class-101-dmu-add-on" +} diff --git a/site/public/v1/games/train-simulator-br-class-105-dmu-add-on/index.json b/site/public/v1/games/train-simulator-br-class-105-dmu-add-on/index.json new file mode 100644 index 000000000000..b3ef974fad6e --- /dev/null +++ b/site/public/v1/games/train-simulator-br-class-105-dmu-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159683, + "slug": "train-simulator-br-class-105-dmu-add-on", + "name": "Train Simulator: BR Class 105 DMU Add-On", + "release_date": "2015-06-25", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105645" + ], + "created_at": "2026-07-10T10:10:47.962700", + "updated_at": "2026-07-10T10:10:47.962700", + "url": "/v1/games/train-simulator-br-class-105-dmu-add-on" +} diff --git a/site/public/v1/games/train-simulator-br-class-14-loco-add-on/index.json b/site/public/v1/games/train-simulator-br-class-14-loco-add-on/index.json new file mode 100644 index 000000000000..1dfbb4df24d9 --- /dev/null +++ b/site/public/v1/games/train-simulator-br-class-14-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159684, + "slug": "train-simulator-br-class-14-loco-add-on", + "name": "Train Simulator: BR Class 14 Loco Add-On", + "release_date": "2014-04-03", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105651" + ], + "created_at": "2026-07-10T10:10:47.962700", + "updated_at": "2026-07-10T10:10:47.962700", + "url": "/v1/games/train-simulator-br-class-14-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-br-class-150-1-dmu-add-on/index.json b/site/public/v1/games/train-simulator-br-class-150-1-dmu-add-on/index.json new file mode 100644 index 000000000000..ee3b1bdeaf80 --- /dev/null +++ b/site/public/v1/games/train-simulator-br-class-150-1-dmu-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159685, + "slug": "train-simulator-br-class-150-1-dmu-add-on", + "name": "Train Simulator: BR Class 150/1 DMU Add-On", + "release_date": "2016-11-30", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105869" + ], + "created_at": "2026-07-10T10:10:47.962700", + "updated_at": "2026-07-10T10:10:47.962700", + "url": "/v1/games/train-simulator-br-class-150-1-dmu-add-on" +} diff --git a/site/public/v1/games/train-simulator-br-class-170-turbostar-dmu-add-on/index.json b/site/public/v1/games/train-simulator-br-class-170-turbostar-dmu-add-on/index.json new file mode 100644 index 000000000000..4afa73b94783 --- /dev/null +++ b/site/public/v1/games/train-simulator-br-class-170-turbostar-dmu-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159686, + "slug": "train-simulator-br-class-170-turbostar-dmu-add-on", + "name": "Train Simulator: BR Class 170 ‘Turbostar’ DMU Add-On", + "release_date": "2012-08-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105565" + ], + "created_at": "2026-07-10T10:10:47.962700", + "updated_at": "2026-07-10T10:10:47.962700", + "url": "/v1/games/train-simulator-br-class-170-turbostar-dmu-add-on" +} diff --git a/site/public/v1/games/train-simulator-br-class-20-loco-add-on/index.json b/site/public/v1/games/train-simulator-br-class-20-loco-add-on/index.json new file mode 100644 index 000000000000..c2d2a4a36f00 --- /dev/null +++ b/site/public/v1/games/train-simulator-br-class-20-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159687, + "slug": "train-simulator-br-class-20-loco-add-on", + "name": "Train Simulator: BR Class 20 Loco Add-On", + "release_date": "2014-05-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105652" + ], + "created_at": "2026-07-10T10:10:47.963685", + "updated_at": "2026-07-10T10:10:47.963685", + "url": "/v1/games/train-simulator-br-class-20-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-br-class-24-loco-add-on/index.json b/site/public/v1/games/train-simulator-br-class-24-loco-add-on/index.json new file mode 100644 index 000000000000..d681f515477b --- /dev/null +++ b/site/public/v1/games/train-simulator-br-class-24-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159688, + "slug": "train-simulator-br-class-24-loco-add-on", + "name": "Train Simulator: BR Class 24 Loco Add-On", + "release_date": "2015-11-05", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105633" + ], + "created_at": "2026-07-10T10:10:47.963685", + "updated_at": "2026-07-10T10:10:47.963685", + "url": "/v1/games/train-simulator-br-class-24-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-br-class-27-loco-add-on/index.json b/site/public/v1/games/train-simulator-br-class-27-loco-add-on/index.json new file mode 100644 index 000000000000..aebf3af096f9 --- /dev/null +++ b/site/public/v1/games/train-simulator-br-class-27-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159689, + "slug": "train-simulator-br-class-27-loco-add-on", + "name": "Train Simulator: BR Class 27 Loco Add-On", + "release_date": "2014-06-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105672" + ], + "created_at": "2026-07-10T10:10:47.963685", + "updated_at": "2026-07-10T10:10:47.963685", + "url": "/v1/games/train-simulator-br-class-27-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-br-class-303-emu-add-on/index.json b/site/public/v1/games/train-simulator-br-class-303-emu-add-on/index.json new file mode 100644 index 000000000000..b5e50c99377d --- /dev/null +++ b/site/public/v1/games/train-simulator-br-class-303-emu-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159690, + "slug": "train-simulator-br-class-303-emu-add-on", + "name": "Train Simulator: BR Class 303 EMU Add-On", + "release_date": "2015-01-22", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106218" + ], + "created_at": "2026-07-10T10:10:47.963685", + "updated_at": "2026-07-10T10:10:47.963685", + "url": "/v1/games/train-simulator-br-class-303-emu-add-on" +} diff --git a/site/public/v1/games/train-simulator-br-class-31-freight-loco-add-on/index.json b/site/public/v1/games/train-simulator-br-class-31-freight-loco-add-on/index.json new file mode 100644 index 000000000000..b171aad29c3c --- /dev/null +++ b/site/public/v1/games/train-simulator-br-class-31-freight-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159691, + "slug": "train-simulator-br-class-31-freight-loco-add-on", + "name": "Train Simulator: BR Class 31 Freight Loco Add-On", + "release_date": "2012-08-16", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106020" + ], + "created_at": "2026-07-10T10:10:47.963685", + "updated_at": "2026-07-10T10:10:47.964703", + "url": "/v1/games/train-simulator-br-class-31-freight-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-br-class-31-loco-add-on/index.json b/site/public/v1/games/train-simulator-br-class-31-loco-add-on/index.json new file mode 100644 index 000000000000..fa14e8e83486 --- /dev/null +++ b/site/public/v1/games/train-simulator-br-class-31-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159692, + "slug": "train-simulator-br-class-31-loco-add-on", + "name": "Train Simulator: BR Class 31 Loco Add-On", + "release_date": "2013-05-23", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105783" + ], + "created_at": "2026-07-10T10:10:47.964703", + "updated_at": "2026-07-10T10:10:47.964703", + "url": "/v1/games/train-simulator-br-class-31-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-br-class-33-loco-add-on/index.json b/site/public/v1/games/train-simulator-br-class-33-loco-add-on/index.json new file mode 100644 index 000000000000..ea26cbfb12db --- /dev/null +++ b/site/public/v1/games/train-simulator-br-class-33-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159693, + "slug": "train-simulator-br-class-33-loco-add-on", + "name": "Train Simulator: BR Class 33 Loco Add-On", + "release_date": "2012-08-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105762" + ], + "created_at": "2026-07-10T10:10:47.964703", + "updated_at": "2026-07-10T10:10:47.964703", + "url": "/v1/games/train-simulator-br-class-33-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-br-class-35-loco-add-on/index.json b/site/public/v1/games/train-simulator-br-class-35-loco-add-on/index.json new file mode 100644 index 000000000000..69cb31594312 --- /dev/null +++ b/site/public/v1/games/train-simulator-br-class-35-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159694, + "slug": "train-simulator-br-class-35-loco-add-on", + "name": "Train Simulator: BR Class 35 Loco Add-On", + "release_date": "2014-08-21", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106209" + ], + "created_at": "2026-07-10T10:10:47.964703", + "updated_at": "2026-07-10T10:10:47.964703", + "url": "/v1/games/train-simulator-br-class-35-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-br-class-40-40145-loco-add-on/index.json b/site/public/v1/games/train-simulator-br-class-40-40145-loco-add-on/index.json new file mode 100644 index 000000000000..0a2e8e32ee07 --- /dev/null +++ b/site/public/v1/games/train-simulator-br-class-40-40145-loco-add-on/index.json @@ -0,0 +1,31 @@ +{ + "id": 159695, + "slug": "train-simulator-br-class-40-40145-loco-add-on", + "name": "Train Simulator: BR Class 40 '40145' Loco Add-On", + "release_date": "2016-01-14", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106172" + ], + "created_at": "2026-07-10T10:10:47.964703", + "updated_at": "2026-07-10T10:10:47.964703", + "url": "/v1/games/train-simulator-br-class-40-40145-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-br-class-402-2-hal-emu-add-on/index.json b/site/public/v1/games/train-simulator-br-class-402-2-hal-emu-add-on/index.json new file mode 100644 index 000000000000..57edac3a35fa --- /dev/null +++ b/site/public/v1/games/train-simulator-br-class-402-2-hal-emu-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159696, + "slug": "train-simulator-br-class-402-2-hal-emu-add-on", + "name": "Train Simulator: BR Class 402 '2-HAL' EMU Add-On", + "release_date": "2017-10-19", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106134" + ], + "created_at": "2026-07-10T10:10:47.964703", + "updated_at": "2026-07-10T10:10:47.964703", + "url": "/v1/games/train-simulator-br-class-402-2-hal-emu-add-on" +} diff --git a/site/public/v1/games/train-simulator-br-class-419-mlv-bemu-add-on/index.json b/site/public/v1/games/train-simulator-br-class-419-mlv-bemu-add-on/index.json new file mode 100644 index 000000000000..8b5635124793 --- /dev/null +++ b/site/public/v1/games/train-simulator-br-class-419-mlv-bemu-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159697, + "slug": "train-simulator-br-class-419-mlv-bemu-add-on", + "name": "Train Simulator: BR Class 419 MLV BEMU Add-On", + "release_date": "2017-09-21", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106133" + ], + "created_at": "2026-07-10T10:10:47.964703", + "updated_at": "2026-07-10T10:10:47.964703", + "url": "/v1/games/train-simulator-br-class-419-mlv-bemu-add-on" +} diff --git a/site/public/v1/games/train-simulator-br-class-421-4cig-loco/index.json b/site/public/v1/games/train-simulator-br-class-421-4cig-loco/index.json new file mode 100644 index 000000000000..77b48c66cdb9 --- /dev/null +++ b/site/public/v1/games/train-simulator-br-class-421-4cig-loco/index.json @@ -0,0 +1,33 @@ +{ + "id": 159698, + "slug": "train-simulator-br-class-421-4cig-loco", + "name": "Train Simulator: BR Class 421 '4CIG' Loco", + "release_date": "2011-07-19", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105768" + ], + "created_at": "2026-07-10T10:10:47.965806", + "updated_at": "2026-07-10T10:10:47.965806", + "url": "/v1/games/train-simulator-br-class-421-4cig-loco" +} diff --git a/site/public/v1/games/train-simulator-br-class-422-4big-emu-add-on/index.json b/site/public/v1/games/train-simulator-br-class-422-4big-emu-add-on/index.json new file mode 100644 index 000000000000..0509fa8a6919 --- /dev/null +++ b/site/public/v1/games/train-simulator-br-class-422-4big-emu-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159699, + "slug": "train-simulator-br-class-422-4big-emu-add-on", + "name": "Train Simulator: BR Class 422 ‘4BIG’ EMU Add-On", + "release_date": "2013-01-17", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106228" + ], + "created_at": "2026-07-10T10:10:47.965806", + "updated_at": "2026-07-10T10:10:47.965806", + "url": "/v1/games/train-simulator-br-class-422-4big-emu-add-on" +} diff --git a/site/public/v1/games/train-simulator-br-class-423-4vep-emu-add-on/index.json b/site/public/v1/games/train-simulator-br-class-423-4vep-emu-add-on/index.json new file mode 100644 index 000000000000..d1821af6b39c --- /dev/null +++ b/site/public/v1/games/train-simulator-br-class-423-4vep-emu-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159700, + "slug": "train-simulator-br-class-423-4vep-emu-add-on", + "name": "Train Simulator: BR Class 423 ‘4VEP’ EMU Add-On", + "release_date": "2012-05-17", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105551" + ], + "created_at": "2026-07-10T10:10:47.965806", + "updated_at": "2026-07-10T10:10:47.965806", + "url": "/v1/games/train-simulator-br-class-423-4vep-emu-add-on" +} diff --git a/site/public/v1/games/train-simulator-br-class-45-peak-loco-add-on/index.json b/site/public/v1/games/train-simulator-br-class-45-peak-loco-add-on/index.json new file mode 100644 index 000000000000..d5b27bce5ccb --- /dev/null +++ b/site/public/v1/games/train-simulator-br-class-45-peak-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159701, + "slug": "train-simulator-br-class-45-peak-loco-add-on", + "name": "Train Simulator: BR Class 45 'Peak' Loco Add-On", + "release_date": "2014-10-29", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105536" + ], + "created_at": "2026-07-10T10:10:47.965806", + "updated_at": "2026-07-10T10:10:47.965806", + "url": "/v1/games/train-simulator-br-class-45-peak-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-br-class-50-loco-add-on/index.json b/site/public/v1/games/train-simulator-br-class-50-loco-add-on/index.json new file mode 100644 index 000000000000..24a12c0954b3 --- /dev/null +++ b/site/public/v1/games/train-simulator-br-class-50-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159702, + "slug": "train-simulator-br-class-50-loco-add-on", + "name": "Train Simulator: BR Class 50 Loco Add-On", + "release_date": "2013-06-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "MeshTools" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106251" + ], + "created_at": "2026-07-10T10:10:47.965806", + "updated_at": "2026-07-10T10:10:47.965806", + "url": "/v1/games/train-simulator-br-class-50-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-br-class-52-loco-add-on/index.json b/site/public/v1/games/train-simulator-br-class-52-loco-add-on/index.json new file mode 100644 index 000000000000..807a4740472b --- /dev/null +++ b/site/public/v1/games/train-simulator-br-class-52-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159703, + "slug": "train-simulator-br-class-52-loco-add-on", + "name": "Train Simulator: BR Class 52 Loco Add-On", + "release_date": "2014-04-17", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105571" + ], + "created_at": "2026-07-10T10:10:47.966811", + "updated_at": "2026-07-10T10:10:47.966811", + "url": "/v1/games/train-simulator-br-class-52-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-br-class-58-loco-add-on/index.json b/site/public/v1/games/train-simulator-br-class-58-loco-add-on/index.json new file mode 100644 index 000000000000..6876e054feb1 --- /dev/null +++ b/site/public/v1/games/train-simulator-br-class-58-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159704, + "slug": "train-simulator-br-class-58-loco-add-on", + "name": "Train Simulator: BR Class 58 Loco Add-On", + "release_date": "2016-03-11", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Skyhook Games Studio" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106171" + ], + "created_at": "2026-07-10T10:10:47.966811", + "updated_at": "2026-07-10T10:10:47.966811", + "url": "/v1/games/train-simulator-br-class-58-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-br-class-73-gatwick-express-loco-add-on/index.json b/site/public/v1/games/train-simulator-br-class-73-gatwick-express-loco-add-on/index.json new file mode 100644 index 000000000000..a4d726d6b8dc --- /dev/null +++ b/site/public/v1/games/train-simulator-br-class-73-gatwick-express-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159705, + "slug": "train-simulator-br-class-73-gatwick-express-loco-add-on", + "name": "Train Simulator: BR Class 73 'Gatwick Express' Loco Add-On", + "release_date": "2016-02-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105673" + ], + "created_at": "2026-07-10T10:10:47.967804", + "updated_at": "2026-07-10T10:10:47.967804", + "url": "/v1/games/train-simulator-br-class-73-gatwick-express-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-br-class-76-77-loco-add-on/index.json b/site/public/v1/games/train-simulator-br-class-76-77-loco-add-on/index.json new file mode 100644 index 000000000000..e0fa6de13746 --- /dev/null +++ b/site/public/v1/games/train-simulator-br-class-76-77-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159706, + "slug": "train-simulator-br-class-76-77-loco-add-on", + "name": "Train Simulator: BR Class 76 & 77 Loco Add-On", + "release_date": "2012-02-23", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105766" + ], + "created_at": "2026-07-10T10:10:47.969895", + "updated_at": "2026-07-10T10:10:47.969895", + "url": "/v1/games/train-simulator-br-class-76-77-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-br-class-87-loco-add-on/index.json b/site/public/v1/games/train-simulator-br-class-87-loco-add-on/index.json new file mode 100644 index 000000000000..36568b85395e --- /dev/null +++ b/site/public/v1/games/train-simulator-br-class-87-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159707, + "slug": "train-simulator-br-class-87-loco-add-on", + "name": "Train Simulator: BR Class 87 Loco Add-On", + "release_date": "2013-06-20", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105748" + ], + "created_at": "2026-07-10T10:10:47.969895", + "updated_at": "2026-07-10T10:10:47.969895", + "url": "/v1/games/train-simulator-br-class-87-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-br-dp1-deltic-loco-add-on/index.json b/site/public/v1/games/train-simulator-br-dp1-deltic-loco-add-on/index.json new file mode 100644 index 000000000000..edfe9d7b82e7 --- /dev/null +++ b/site/public/v1/games/train-simulator-br-dp1-deltic-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159708, + "slug": "train-simulator-br-dp1-deltic-loco-add-on", + "name": "Train Simulator: BR DP1 Deltic Loco Add-On", + "release_date": "2013-08-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106250" + ], + "created_at": "2026-07-10T10:10:47.970883", + "updated_at": "2026-07-10T10:10:47.970883", + "url": "/v1/games/train-simulator-br-dp1-deltic-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-br-gt3-turbine-loco-add-on/index.json b/site/public/v1/games/train-simulator-br-gt3-turbine-loco-add-on/index.json new file mode 100644 index 000000000000..ffef7f27f77d --- /dev/null +++ b/site/public/v1/games/train-simulator-br-gt3-turbine-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159709, + "slug": "train-simulator-br-gt3-turbine-loco-add-on", + "name": "Train Simulator: BR GT3 Turbine Loco Add-On", + "release_date": "2015-07-02", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Victory Works" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106231" + ], + "created_at": "2026-07-10T10:10:47.970883", + "updated_at": "2026-07-10T10:10:47.970883", + "url": "/v1/games/train-simulator-br-gt3-turbine-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-br-lner-class-j50-loco-add-on/index.json b/site/public/v1/games/train-simulator-br-lner-class-j50-loco-add-on/index.json new file mode 100644 index 000000000000..deb34f23fded --- /dev/null +++ b/site/public/v1/games/train-simulator-br-lner-class-j50-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159710, + "slug": "train-simulator-br-lner-class-j50-loco-add-on", + "name": "Train Simulator: BR/LNER Class J50 Loco Add-On", + "release_date": "2013-10-31", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "MeshTools" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106245" + ], + "created_at": "2026-07-10T10:10:47.970883", + "updated_at": "2026-07-10T10:10:47.970883", + "url": "/v1/games/train-simulator-br-lner-class-j50-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-br-rebuilt-west-country-battle-of-britain-class-steam-loco-add-on/index.json b/site/public/v1/games/train-simulator-br-rebuilt-west-country-battle-of-britain-class-steam-loco-add-on/index.json new file mode 100644 index 000000000000..ede42aa0ec20 --- /dev/null +++ b/site/public/v1/games/train-simulator-br-rebuilt-west-country-battle-of-britain-class-steam-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159711, + "slug": "train-simulator-br-rebuilt-west-country-battle-of-britain-class-steam-loco-add-on", + "name": "Train Simulator: BR Rebuilt West Country & Battle of Britain Class Steam Loco Add-On", + "release_date": "2021-02-05", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Bossman Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105616" + ], + "created_at": "2026-07-10T10:10:47.971780", + "updated_at": "2026-07-10T10:10:47.971780", + "url": "/v1/games/train-simulator-br-rebuilt-west-country-battle-of-britain-class-steam-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-br-regional-railways-class-101-dmu-add-on/index.json b/site/public/v1/games/train-simulator-br-regional-railways-class-101-dmu-add-on/index.json new file mode 100644 index 000000000000..bf22efcea791 --- /dev/null +++ b/site/public/v1/games/train-simulator-br-regional-railways-class-101-dmu-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159712, + "slug": "train-simulator-br-regional-railways-class-101-dmu-add-on", + "name": "Train Simulator: BR Regional Railways Class 101 DMU Add-On", + "release_date": "2014-08-14", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105755" + ], + "created_at": "2026-07-10T10:10:47.971780", + "updated_at": "2026-07-10T10:10:47.971780", + "url": "/v1/games/train-simulator-br-regional-railways-class-101-dmu-add-on" +} diff --git a/site/public/v1/games/train-simulator-br-robinson-class-o4-loco-add-on/index.json b/site/public/v1/games/train-simulator-br-robinson-class-o4-loco-add-on/index.json new file mode 100644 index 000000000000..d849a6e28fe4 --- /dev/null +++ b/site/public/v1/games/train-simulator-br-robinson-class-o4-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159713, + "slug": "train-simulator-br-robinson-class-o4-loco-add-on", + "name": "Train Simulator: BR Robinson Class O4 Loco Add-On", + "release_date": "2012-10-19", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105574" + ], + "created_at": "2026-07-10T10:10:47.971780", + "updated_at": "2026-07-10T10:10:47.971780", + "url": "/v1/games/train-simulator-br-robinson-class-o4-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-br-sectors-class-56-loco-add-on/index.json b/site/public/v1/games/train-simulator-br-sectors-class-56-loco-add-on/index.json new file mode 100644 index 000000000000..0efee7167d31 --- /dev/null +++ b/site/public/v1/games/train-simulator-br-sectors-class-56-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159714, + "slug": "train-simulator-br-sectors-class-56-loco-add-on", + "name": "Train Simulator: BR Sectors Class 56 Loco Add-On", + "release_date": "2014-05-22", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106240" + ], + "created_at": "2026-07-10T10:10:47.971780", + "updated_at": "2026-07-10T10:10:47.971780", + "url": "/v1/games/train-simulator-br-sectors-class-56-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-br-standard-class-2mt-loco-add-on/index.json b/site/public/v1/games/train-simulator-br-standard-class-2mt-loco-add-on/index.json new file mode 100644 index 000000000000..71d27df88636 --- /dev/null +++ b/site/public/v1/games/train-simulator-br-standard-class-2mt-loco-add-on/index.json @@ -0,0 +1,31 @@ +{ + "id": 159715, + "slug": "train-simulator-br-standard-class-2mt-loco-add-on", + "name": "Train Simulator: BR Standard Class 2MT Loco Add-On", + "release_date": "2013-04-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106241" + ], + "created_at": "2026-07-10T10:10:47.972811", + "updated_at": "2026-07-10T10:10:47.972811", + "url": "/v1/games/train-simulator-br-standard-class-2mt-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-br-standard-class-4mt/index.json b/site/public/v1/games/train-simulator-br-standard-class-4mt/index.json new file mode 100644 index 000000000000..1c50dc1b0393 --- /dev/null +++ b/site/public/v1/games/train-simulator-br-standard-class-4mt/index.json @@ -0,0 +1,33 @@ +{ + "id": 159716, + "slug": "train-simulator-br-standard-class-4mt", + "name": "Train Simulator: BR Standard Class 4MT", + "release_date": "2019-05-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Just Trains" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106277" + ], + "created_at": "2026-07-10T10:10:47.972811", + "updated_at": "2026-07-10T10:10:47.972811", + "url": "/v1/games/train-simulator-br-standard-class-4mt" +} diff --git a/site/public/v1/games/train-simulator-br-standard-class-6-clan-class-steam-loco-add-on/index.json b/site/public/v1/games/train-simulator-br-standard-class-6-clan-class-steam-loco-add-on/index.json new file mode 100644 index 000000000000..5463d2fb4dd8 --- /dev/null +++ b/site/public/v1/games/train-simulator-br-standard-class-6-clan-class-steam-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159717, + "slug": "train-simulator-br-standard-class-6-clan-class-steam-loco-add-on", + "name": "Train Simulator: BR Standard Class 6 ‘Clan Class’ Steam Loco Add-On", + "release_date": "2017-05-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Just Trains" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106148" + ], + "created_at": "2026-07-10T10:10:47.972811", + "updated_at": "2026-07-10T10:10:47.972811", + "url": "/v1/games/train-simulator-br-standard-class-6-clan-class-steam-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-br-standard-class-7-britannia-class-steam-loco-add-on/index.json b/site/public/v1/games/train-simulator-br-standard-class-7-britannia-class-steam-loco-add-on/index.json new file mode 100644 index 000000000000..5eb7a8391d5d --- /dev/null +++ b/site/public/v1/games/train-simulator-br-standard-class-7-britannia-class-steam-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159718, + "slug": "train-simulator-br-standard-class-7-britannia-class-steam-loco-add-on", + "name": "Train Simulator: BR Standard Class 7 ‘Britannia Class’ Steam Loco Add-On", + "release_date": "2020-01-16", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Just Trains" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106432" + ], + "created_at": "2026-07-10T10:10:47.972811", + "updated_at": "2026-07-10T10:10:47.972811", + "url": "/v1/games/train-simulator-br-standard-class-7-britannia-class-steam-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-bristol-exeter-route-add-on/index.json b/site/public/v1/games/train-simulator-bristol-exeter-route-add-on/index.json new file mode 100644 index 000000000000..ccbb83e40f3c --- /dev/null +++ b/site/public/v1/games/train-simulator-bristol-exeter-route-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159719, + "slug": "train-simulator-bristol-exeter-route-add-on", + "name": "Train Simulator: Bristol-Exeter Route Add-On", + "release_date": "2011-06-10", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Just Trains" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106050" + ], + "created_at": "2026-07-10T10:10:47.973826", + "updated_at": "2026-07-10T10:10:47.973826", + "url": "/v1/games/train-simulator-bristol-exeter-route-add-on" +} diff --git a/site/public/v1/games/train-simulator-bulleid-q1-class-loco-add-on/index.json b/site/public/v1/games/train-simulator-bulleid-q1-class-loco-add-on/index.json new file mode 100644 index 000000000000..a3a8dd3178a1 --- /dev/null +++ b/site/public/v1/games/train-simulator-bulleid-q1-class-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159720, + "slug": "train-simulator-bulleid-q1-class-loco-add-on", + "name": "Train Simulator: Bulleid Q1 Class Loco Add-On", + "release_date": "2014-07-03", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Victory Works" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106239" + ], + "created_at": "2026-07-10T10:10:47.973826", + "updated_at": "2026-07-10T10:10:47.973826", + "url": "/v1/games/train-simulator-bulleid-q1-class-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-canadian-mountain-passes-revelstoke-lake-louise/index.json b/site/public/v1/games/train-simulator-canadian-mountain-passes-revelstoke-lake-louise/index.json new file mode 100644 index 000000000000..43842cd61b77 --- /dev/null +++ b/site/public/v1/games/train-simulator-canadian-mountain-passes-revelstoke-lake-louise/index.json @@ -0,0 +1,33 @@ +{ + "id": 159721, + "slug": "train-simulator-canadian-mountain-passes-revelstoke-lake-louise", + "name": "Train Simulator: Canadian Mountain Passes: Revelstoke-Lake Louise", + "release_date": "2014-02-14", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Milepost Simulations" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106010" + ], + "created_at": "2026-07-10T10:10:47.973826", + "updated_at": "2026-07-10T10:10:47.973826", + "url": "/v1/games/train-simulator-canadian-mountain-passes-revelstoke-lake-louise" +} diff --git a/site/public/v1/games/train-simulator-canadian-national-peace-river-route-add-on/index.json b/site/public/v1/games/train-simulator-canadian-national-peace-river-route-add-on/index.json new file mode 100644 index 000000000000..fb41405a0ae5 --- /dev/null +++ b/site/public/v1/games/train-simulator-canadian-national-peace-river-route-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159722, + "slug": "train-simulator-canadian-national-peace-river-route-add-on", + "name": "Train Simulator: Canadian National Peace River Route Add-On", + "release_date": "2017-12-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Milepost Simulations" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105972" + ], + "created_at": "2026-07-10T10:10:47.973826", + "updated_at": "2026-07-10T10:10:47.973826", + "url": "/v1/games/train-simulator-canadian-national-peace-river-route-add-on" +} diff --git a/site/public/v1/games/train-simulator-canadian-national-sd60-loco-add-on/index.json b/site/public/v1/games/train-simulator-canadian-national-sd60-loco-add-on/index.json new file mode 100644 index 000000000000..967790359d3f --- /dev/null +++ b/site/public/v1/games/train-simulator-canadian-national-sd60-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159723, + "slug": "train-simulator-canadian-national-sd60-loco-add-on", + "name": "Train Simulator: Canadian National SD60 Loco Add-On", + "release_date": "2020-12-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Travel by Train" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105614" + ], + "created_at": "2026-07-10T10:10:47.973826", + "updated_at": "2026-07-10T10:10:47.973826", + "url": "/v1/games/train-simulator-canadian-national-sd60-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-canadian-national-sd70-loco-add-on/index.json b/site/public/v1/games/train-simulator-canadian-national-sd70-loco-add-on/index.json new file mode 100644 index 000000000000..74f3074d2f26 --- /dev/null +++ b/site/public/v1/games/train-simulator-canadian-national-sd70-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159724, + "slug": "train-simulator-canadian-national-sd70-loco-add-on", + "name": "Train Simulator: Canadian National SD70 Loco Add-On", + "release_date": "2019-09-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Travel by Train" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105631" + ], + "created_at": "2026-07-10T10:10:47.973826", + "updated_at": "2026-07-10T10:10:47.973826", + "url": "/v1/games/train-simulator-canadian-national-sd70-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-canadian-pacific-ac4400cw-loco-add-on/index.json b/site/public/v1/games/train-simulator-canadian-pacific-ac4400cw-loco-add-on/index.json new file mode 100644 index 000000000000..c9e2eb31478f --- /dev/null +++ b/site/public/v1/games/train-simulator-canadian-pacific-ac4400cw-loco-add-on/index.json @@ -0,0 +1,31 @@ +{ + "id": 159725, + "slug": "train-simulator-canadian-pacific-ac4400cw-loco-add-on", + "name": "Train Simulator: Canadian Pacific AC4400CW Loco Add-On", + "release_date": "2020-10-08", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105642" + ], + "created_at": "2026-07-10T10:10:47.974821", + "updated_at": "2026-07-10T10:10:47.974821", + "url": "/v1/games/train-simulator-canadian-pacific-ac4400cw-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-chatham-main-line-london-gillingham-route-add-on/index.json b/site/public/v1/games/train-simulator-chatham-main-line-london-gillingham-route-add-on/index.json new file mode 100644 index 000000000000..e691b6fe6e25 --- /dev/null +++ b/site/public/v1/games/train-simulator-chatham-main-line-london-gillingham-route-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159726, + "slug": "train-simulator-chatham-main-line-london-gillingham-route-add-on", + "name": "Train Simulator: Chatham Main Line - London-Gillingham Route Add-On", + "release_date": "2016-05-19", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105627" + ], + "created_at": "2026-07-10T10:10:47.974821", + "updated_at": "2026-07-10T10:10:47.974821", + "url": "/v1/games/train-simulator-chatham-main-line-london-gillingham-route-add-on" +} diff --git a/site/public/v1/games/train-simulator-chatham-main-medway-valley-lines-route-add-on/index.json b/site/public/v1/games/train-simulator-chatham-main-medway-valley-lines-route-add-on/index.json new file mode 100644 index 000000000000..2272d91ea2a6 --- /dev/null +++ b/site/public/v1/games/train-simulator-chatham-main-medway-valley-lines-route-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159727, + "slug": "train-simulator-chatham-main-medway-valley-lines-route-add-on", + "name": "Train Simulator: Chatham Main & Medway Valley Lines Route Add-On", + "release_date": "2018-02-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105478" + ], + "created_at": "2026-07-10T10:10:47.974821", + "updated_at": "2026-07-10T10:10:47.974821", + "url": "/v1/games/train-simulator-chatham-main-medway-valley-lines-route-add-on" +} diff --git a/site/public/v1/games/train-simulator-chengdu-suining-high-speed-route-add-on/index.json b/site/public/v1/games/train-simulator-chengdu-suining-high-speed-route-add-on/index.json new file mode 100644 index 000000000000..bb17eb304d93 --- /dev/null +++ b/site/public/v1/games/train-simulator-chengdu-suining-high-speed-route-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159728, + "slug": "train-simulator-chengdu-suining-high-speed-route-add-on", + "name": "Train Simulator: Chengdu - Suining High Speed Route Add-On", + "release_date": "2015-02-27", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Just Trains" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105711" + ], + "created_at": "2026-07-10T10:10:47.974821", + "updated_at": "2026-07-10T10:10:47.974821", + "url": "/v1/games/train-simulator-chengdu-suining-high-speed-route-add-on" +} diff --git a/site/public/v1/games/train-simulator-chengkun-railway-hanyuan-puxiong-route-add-on/index.json b/site/public/v1/games/train-simulator-chengkun-railway-hanyuan-puxiong-route-add-on/index.json new file mode 100644 index 000000000000..622c97ecaff5 --- /dev/null +++ b/site/public/v1/games/train-simulator-chengkun-railway-hanyuan-puxiong-route-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159729, + "slug": "train-simulator-chengkun-railway-hanyuan-puxiong-route-add-on", + "name": "Train Simulator: Chengkun Railway: Hanyuan – Puxiong Route Add-On", + "release_date": "2019-08-30", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "SimTech Vision" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105710" + ], + "created_at": "2026-07-10T10:10:47.974821", + "updated_at": "2026-07-10T10:10:47.974821", + "url": "/v1/games/train-simulator-chengkun-railway-hanyuan-puxiong-route-add-on" +} diff --git a/site/public/v1/games/train-simulator-chessie-system-retro-pack/index.json b/site/public/v1/games/train-simulator-chessie-system-retro-pack/index.json new file mode 100644 index 000000000000..f368764e4e4d --- /dev/null +++ b/site/public/v1/games/train-simulator-chessie-system-retro-pack/index.json @@ -0,0 +1,33 @@ +{ + "id": 159730, + "slug": "train-simulator-chessie-system-retro-pack", + "name": "Train Simulator: Chessie System Retro Pack", + "release_date": "2021-05-14", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "High Iron Simulations" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105602" + ], + "created_at": "2026-07-10T10:10:47.974821", + "updated_at": "2026-07-10T10:10:47.974821", + "url": "/v1/games/train-simulator-chessie-system-retro-pack" +} diff --git a/site/public/v1/games/train-simulator-chessie-system-u30c-loco-add-on/index.json b/site/public/v1/games/train-simulator-chessie-system-u30c-loco-add-on/index.json new file mode 100644 index 000000000000..d608d598e696 --- /dev/null +++ b/site/public/v1/games/train-simulator-chessie-system-u30c-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159731, + "slug": "train-simulator-chessie-system-u30c-loco-add-on", + "name": "Train Simulator: Chessie System U30C Loco Add-On", + "release_date": "2016-11-03", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Virtual Rail Creations" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106160" + ], + "created_at": "2026-07-10T10:10:47.975776", + "updated_at": "2026-07-10T10:10:47.975776", + "url": "/v1/games/train-simulator-chessie-system-u30c-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-chiltern-main-line-london-birmingham-route-add-on/index.json b/site/public/v1/games/train-simulator-chiltern-main-line-london-birmingham-route-add-on/index.json new file mode 100644 index 000000000000..0dc625be01a2 --- /dev/null +++ b/site/public/v1/games/train-simulator-chiltern-main-line-london-birmingham-route-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159732, + "slug": "train-simulator-chiltern-main-line-london-birmingham-route-add-on", + "name": "Train Simulator: Chiltern Main Line: London - Birmingham Route Add-On", + "release_date": "2020-05-21", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Just Trains" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105834" + ], + "created_at": "2026-07-10T10:10:47.975776", + "updated_at": "2026-07-10T10:10:47.975776", + "url": "/v1/games/train-simulator-chiltern-main-line-london-birmingham-route-add-on" +} diff --git a/site/public/v1/games/train-simulator-china-clay-for-export-route-add-on/index.json b/site/public/v1/games/train-simulator-china-clay-for-export-route-add-on/index.json new file mode 100644 index 000000000000..7c0851b3f822 --- /dev/null +++ b/site/public/v1/games/train-simulator-china-clay-for-export-route-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159733, + "slug": "train-simulator-china-clay-for-export-route-add-on", + "name": "Train Simulator: China Clay for Export Route Add-On", + "release_date": "2015-08-20", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Creative Rail" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106060" + ], + "created_at": "2026-07-10T10:10:47.975776", + "updated_at": "2026-07-10T10:10:47.975776", + "url": "/v1/games/train-simulator-china-clay-for-export-route-add-on" +} diff --git a/site/public/v1/games/train-simulator-class-111-dmu-add-on/index.json b/site/public/v1/games/train-simulator-class-111-dmu-add-on/index.json new file mode 100644 index 000000000000..8413fde6cec9 --- /dev/null +++ b/site/public/v1/games/train-simulator-class-111-dmu-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159734, + "slug": "train-simulator-class-111-dmu-add-on", + "name": "Train Simulator: Class 111 DMU Add-On", + "release_date": "2012-08-16", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105782" + ], + "created_at": "2026-07-10T10:10:47.975776", + "updated_at": "2026-07-10T10:10:47.975776", + "url": "/v1/games/train-simulator-class-111-dmu-add-on" +} diff --git a/site/public/v1/games/train-simulator-class-156-loco-add-on/index.json b/site/public/v1/games/train-simulator-class-156-loco-add-on/index.json new file mode 100644 index 000000000000..8ebe2cc0944f --- /dev/null +++ b/site/public/v1/games/train-simulator-class-156-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159735, + "slug": "train-simulator-class-156-loco-add-on", + "name": "Train Simulator: Class 156 Loco Add-On", + "release_date": "2016-04-05", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Oovee® Game Studios" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106170" + ], + "created_at": "2026-07-10T10:10:47.976778", + "updated_at": "2026-07-10T10:10:47.976778", + "url": "/v1/games/train-simulator-class-156-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-class-158-dmu-add-on/index.json b/site/public/v1/games/train-simulator-class-158-dmu-add-on/index.json new file mode 100644 index 000000000000..60627c6047bd --- /dev/null +++ b/site/public/v1/games/train-simulator-class-158-dmu-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159736, + "slug": "train-simulator-class-158-dmu-add-on", + "name": "Train Simulator: Class 158 DMU Add-On", + "release_date": "2012-08-16", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105781" + ], + "created_at": "2026-07-10T10:10:47.976778", + "updated_at": "2026-07-10T10:10:47.976778", + "url": "/v1/games/train-simulator-class-158-dmu-add-on" +} diff --git a/site/public/v1/games/train-simulator-class-2f-dock-tank-loco-add-on/index.json b/site/public/v1/games/train-simulator-class-2f-dock-tank-loco-add-on/index.json new file mode 100644 index 000000000000..24096ccf6b3d --- /dev/null +++ b/site/public/v1/games/train-simulator-class-2f-dock-tank-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159737, + "slug": "train-simulator-class-2f-dock-tank-loco-add-on", + "name": "Train Simulator: Class 2F Dock Tank Loco Add-On", + "release_date": "2014-07-10", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "MeshTools" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106275" + ], + "created_at": "2026-07-10T10:10:47.976778", + "updated_at": "2026-07-10T10:10:47.976778", + "url": "/v1/games/train-simulator-class-2f-dock-tank-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-class-325-emu-add-on/index.json b/site/public/v1/games/train-simulator-class-325-emu-add-on/index.json new file mode 100644 index 000000000000..e6b9219b46ae --- /dev/null +++ b/site/public/v1/games/train-simulator-class-325-emu-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159738, + "slug": "train-simulator-class-325-emu-add-on", + "name": "Train Simulator: Class 325 EMU Add-On", + "release_date": "2012-08-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106039" + ], + "created_at": "2026-07-10T10:10:47.976778", + "updated_at": "2026-07-10T10:10:47.976778", + "url": "/v1/games/train-simulator-class-325-emu-add-on" +} diff --git a/site/public/v1/games/train-simulator-class-390-emu-add-on/index.json b/site/public/v1/games/train-simulator-class-390-emu-add-on/index.json new file mode 100644 index 000000000000..a092d46f7431 --- /dev/null +++ b/site/public/v1/games/train-simulator-class-390-emu-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159739, + "slug": "train-simulator-class-390-emu-add-on", + "name": "Train Simulator: Class 390 EMU Add-On", + "release_date": "2012-08-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106130" + ], + "created_at": "2026-07-10T10:10:47.976778", + "updated_at": "2026-07-10T10:10:47.976778", + "url": "/v1/games/train-simulator-class-390-emu-add-on" +} diff --git a/site/public/v1/games/train-simulator-class-455-emu-add-on/index.json b/site/public/v1/games/train-simulator-class-455-emu-add-on/index.json new file mode 100644 index 000000000000..1ca646b2a2cf --- /dev/null +++ b/site/public/v1/games/train-simulator-class-455-emu-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159740, + "slug": "train-simulator-class-455-emu-add-on", + "name": "Train Simulator: Class 455 EMU Add-On", + "release_date": "2011-07-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Thomson Interactive" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106257" + ], + "created_at": "2026-07-10T10:10:47.976778", + "updated_at": "2026-07-10T10:10:47.976778", + "url": "/v1/games/train-simulator-class-455-emu-add-on" +} diff --git a/site/public/v1/games/train-simulator-class-57-rail-tour-loco-add-on/index.json b/site/public/v1/games/train-simulator-class-57-rail-tour-loco-add-on/index.json new file mode 100644 index 000000000000..e7fc00a23b53 --- /dev/null +++ b/site/public/v1/games/train-simulator-class-57-rail-tour-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159741, + "slug": "train-simulator-class-57-rail-tour-loco-add-on", + "name": "Train Simulator: Class 57 Rail Tour Loco Add-On", + "release_date": "2012-11-08", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Oovee® Game Studios" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106254" + ], + "created_at": "2026-07-10T10:10:47.977816", + "updated_at": "2026-07-10T10:10:47.977816", + "url": "/v1/games/train-simulator-class-57-rail-tour-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-class-67-diamond-jubilee-loco-add-on/index.json b/site/public/v1/games/train-simulator-class-67-diamond-jubilee-loco-add-on/index.json new file mode 100644 index 000000000000..393ff8888304 --- /dev/null +++ b/site/public/v1/games/train-simulator-class-67-diamond-jubilee-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159742, + "slug": "train-simulator-class-67-diamond-jubilee-loco-add-on", + "name": "Train Simulator: Class 67 Diamond Jubilee Loco Add-On", + "release_date": "2012-05-31", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105935" + ], + "created_at": "2026-07-10T10:10:47.977816", + "updated_at": "2026-07-10T10:10:47.977816", + "url": "/v1/games/train-simulator-class-67-diamond-jubilee-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-class-86-loco-add-on/index.json b/site/public/v1/games/train-simulator-class-86-loco-add-on/index.json new file mode 100644 index 000000000000..49b1551d8aa4 --- /dev/null +++ b/site/public/v1/games/train-simulator-class-86-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159743, + "slug": "train-simulator-class-86-loco-add-on", + "name": "Train Simulator: Class 86 Loco Add-On", + "release_date": "2012-08-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105749" + ], + "created_at": "2026-07-10T10:10:47.977816", + "updated_at": "2026-07-10T10:10:47.977816", + "url": "/v1/games/train-simulator-class-86-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-class-a4-pacifics-loco-add-on/index.json b/site/public/v1/games/train-simulator-class-a4-pacifics-loco-add-on/index.json new file mode 100644 index 000000000000..eec937022e19 --- /dev/null +++ b/site/public/v1/games/train-simulator-class-a4-pacifics-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159744, + "slug": "train-simulator-class-a4-pacifics-loco-add-on", + "name": "Train Simulator: Class A4 Pacifics Loco Add-On", + "release_date": "2013-05-29", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105851" + ], + "created_at": "2026-07-10T10:10:47.977816", + "updated_at": "2026-07-10T10:10:47.977816", + "url": "/v1/games/train-simulator-class-a4-pacifics-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-class-j94-memories-of-maerdy-loco-add-on/index.json b/site/public/v1/games/train-simulator-class-j94-memories-of-maerdy-loco-add-on/index.json new file mode 100644 index 000000000000..5ef09ea3dd6e --- /dev/null +++ b/site/public/v1/games/train-simulator-class-j94-memories-of-maerdy-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159745, + "slug": "train-simulator-class-j94-memories-of-maerdy-loco-add-on", + "name": "Train Simulator: Class J94 ‘Memories of Maerdy’ Loco Add-On", + "release_date": "2012-11-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "MeshTools" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106255" + ], + "created_at": "2026-07-10T10:10:47.977816", + "updated_at": "2026-07-10T10:10:47.977816", + "url": "/v1/games/train-simulator-class-j94-memories-of-maerdy-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-clear-creek-log-lumber-expansion-pack-add-on/index.json b/site/public/v1/games/train-simulator-clear-creek-log-lumber-expansion-pack-add-on/index.json new file mode 100644 index 000000000000..0deffccbdcdf --- /dev/null +++ b/site/public/v1/games/train-simulator-clear-creek-log-lumber-expansion-pack-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159746, + "slug": "train-simulator-clear-creek-log-lumber-expansion-pack-add-on", + "name": "Train Simulator: Clear Creek Log & Lumber Expansion Pack Add-On", + "release_date": "2017-02-08", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Romantic Railroads" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106155" + ], + "created_at": "2026-07-10T10:10:47.977816", + "updated_at": "2026-07-10T10:10:47.977816", + "url": "/v1/games/train-simulator-clear-creek-log-lumber-expansion-pack-add-on" +} diff --git a/site/public/v1/games/train-simulator-clear-creek-narrow-gauge-route-add-on/index.json b/site/public/v1/games/train-simulator-clear-creek-narrow-gauge-route-add-on/index.json new file mode 100644 index 000000000000..7c30173c6295 --- /dev/null +++ b/site/public/v1/games/train-simulator-clear-creek-narrow-gauge-route-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159747, + "slug": "train-simulator-clear-creek-narrow-gauge-route-add-on", + "name": "Train Simulator: Clear Creek Narrow Gauge Route Add-On", + "release_date": "2016-05-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Milepost Simulations" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106166" + ], + "created_at": "2026-07-10T10:10:47.978811", + "updated_at": "2026-07-10T10:10:47.978811", + "url": "/v1/games/train-simulator-clear-creek-narrow-gauge-route-add-on" +} diff --git a/site/public/v1/games/train-simulator-clear-creek-old-timer-rolling-stock-pack-add-on/index.json b/site/public/v1/games/train-simulator-clear-creek-old-timer-rolling-stock-pack-add-on/index.json new file mode 100644 index 000000000000..d30a74c6fbd3 --- /dev/null +++ b/site/public/v1/games/train-simulator-clear-creek-old-timer-rolling-stock-pack-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159748, + "slug": "train-simulator-clear-creek-old-timer-rolling-stock-pack-add-on", + "name": "Train Simulator: Clear Creek Old Timer Rolling Stock Pack Add-On", + "release_date": "2017-04-26", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Milepost Simulations" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106149" + ], + "created_at": "2026-07-10T10:10:47.978811", + "updated_at": "2026-07-10T10:10:47.978811", + "url": "/v1/games/train-simulator-clear-creek-old-timer-rolling-stock-pack-add-on" +} diff --git a/site/public/v1/games/train-simulator-clinchfield-railroad-elkhorn-city-st-paul-route-add-on/index.json b/site/public/v1/games/train-simulator-clinchfield-railroad-elkhorn-city-st-paul-route-add-on/index.json new file mode 100644 index 000000000000..e9823ee74e67 --- /dev/null +++ b/site/public/v1/games/train-simulator-clinchfield-railroad-elkhorn-city-st-paul-route-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159749, + "slug": "train-simulator-clinchfield-railroad-elkhorn-city-st-paul-route-add-on", + "name": "Train Simulator: Clinchfield Railroad: Elkhorn City - St. Paul Route Add-On", + "release_date": "2020-05-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105838" + ], + "created_at": "2026-07-10T10:10:47.978811", + "updated_at": "2026-07-10T10:10:47.978811", + "url": "/v1/games/train-simulator-clinchfield-railroad-elkhorn-city-st-paul-route-add-on" +} diff --git a/site/public/v1/games/train-simulator-clinchfield-railroad-u36c-loco-add-on/index.json b/site/public/v1/games/train-simulator-clinchfield-railroad-u36c-loco-add-on/index.json new file mode 100644 index 000000000000..0440a02db794 --- /dev/null +++ b/site/public/v1/games/train-simulator-clinchfield-railroad-u36c-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159750, + "slug": "train-simulator-clinchfield-railroad-u36c-loco-add-on", + "name": "Train Simulator: Clinchfield Railroad U36C Loco Add-On", + "release_date": "2020-07-23", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105698" + ], + "created_at": "2026-07-10T10:10:47.978811", + "updated_at": "2026-07-10T10:10:47.978811", + "url": "/v1/games/train-simulator-clinchfield-railroad-u36c-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-cn-sd40-2-wide-nose-loco-add-on/index.json b/site/public/v1/games/train-simulator-cn-sd40-2-wide-nose-loco-add-on/index.json new file mode 100644 index 000000000000..e203f7cb155d --- /dev/null +++ b/site/public/v1/games/train-simulator-cn-sd40-2-wide-nose-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159751, + "slug": "train-simulator-cn-sd40-2-wide-nose-loco-add-on", + "name": "Train Simulator: CN SD40-2 Wide Nose Loco Add-On", + "release_date": "2012-08-03", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105686" + ], + "created_at": "2026-07-10T10:10:47.978811", + "updated_at": "2026-07-10T10:10:47.978811", + "url": "/v1/games/train-simulator-cn-sd40-2-wide-nose-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-cologne-dusseldorf-route-add-on/index.json b/site/public/v1/games/train-simulator-cologne-dusseldorf-route-add-on/index.json new file mode 100644 index 000000000000..241dd1a6d3be --- /dev/null +++ b/site/public/v1/games/train-simulator-cologne-dusseldorf-route-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159752, + "slug": "train-simulator-cologne-dusseldorf-route-add-on", + "name": "Train Simulator: Cologne-Dusseldorf Route Add-On", + "release_date": "2012-03-08", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Aerosoft" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106042" + ], + "created_at": "2026-07-10T10:10:47.978811", + "updated_at": "2026-07-10T10:10:47.978811", + "url": "/v1/games/train-simulator-cologne-dusseldorf-route-add-on" +} diff --git a/site/public/v1/games/train-simulator-colton-northern-route-add-on/index.json b/site/public/v1/games/train-simulator-colton-northern-route-add-on/index.json new file mode 100644 index 000000000000..7c49ed276b04 --- /dev/null +++ b/site/public/v1/games/train-simulator-colton-northern-route-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159753, + "slug": "train-simulator-colton-northern-route-add-on", + "name": "Train Simulator: Colton & Northern Route Add-On", + "release_date": "2009-09-25", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "All Aboard" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106259" + ], + "created_at": "2026-07-10T10:10:47.979804", + "updated_at": "2026-07-10T10:10:47.979804", + "url": "/v1/games/train-simulator-colton-northern-route-add-on" +} diff --git a/site/public/v1/games/train-simulator-cornish-main-line-plymouth-penzance-route-add-on/index.json b/site/public/v1/games/train-simulator-cornish-main-line-plymouth-penzance-route-add-on/index.json new file mode 100644 index 000000000000..dc4b8a28ce66 --- /dev/null +++ b/site/public/v1/games/train-simulator-cornish-main-line-plymouth-penzance-route-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159754, + "slug": "train-simulator-cornish-main-line-plymouth-penzance-route-add-on", + "name": "Train Simulator: Cornish Main Line: Plymouth – Penzance Route Add-On", + "release_date": "2021-01-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Just Trains" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105612" + ], + "created_at": "2026-07-10T10:10:47.979804", + "updated_at": "2026-07-10T10:10:47.979804", + "url": "/v1/games/train-simulator-cornish-main-line-plymouth-penzance-route-add-on" +} diff --git a/site/public/v1/games/train-simulator-corris-railway-expansion-pack-loco-add-on/index.json b/site/public/v1/games/train-simulator-corris-railway-expansion-pack-loco-add-on/index.json new file mode 100644 index 000000000000..7c8658c2b917 --- /dev/null +++ b/site/public/v1/games/train-simulator-corris-railway-expansion-pack-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159755, + "slug": "train-simulator-corris-railway-expansion-pack-loco-add-on", + "name": "Train Simulator: Corris Railway Expansion Pack Loco Add-On", + "release_date": "2017-12-06", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Skyhook Games Studio" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106154" + ], + "created_at": "2026-07-10T10:10:47.979804", + "updated_at": "2026-07-10T10:10:47.979804", + "url": "/v1/games/train-simulator-corris-railway-expansion-pack-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-corris-railway-route-add-on/index.json b/site/public/v1/games/train-simulator-corris-railway-route-add-on/index.json new file mode 100644 index 000000000000..40ea425914d9 --- /dev/null +++ b/site/public/v1/games/train-simulator-corris-railway-route-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159756, + "slug": "train-simulator-corris-railway-route-add-on", + "name": "Train Simulator: Corris Railway Route Add-On", + "release_date": "2016-07-26", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Skyhook Games Studio" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106055" + ], + "created_at": "2026-07-10T10:10:47.980392", + "updated_at": "2026-07-10T10:10:47.980392", + "url": "/v1/games/train-simulator-corris-railway-route-add-on" +} diff --git a/site/public/v1/games/train-simulator-cprr-4-4-0-no-60-jupiter-steam-loco-add-on/index.json b/site/public/v1/games/train-simulator-cprr-4-4-0-no-60-jupiter-steam-loco-add-on/index.json new file mode 100644 index 000000000000..de98a44597f5 --- /dev/null +++ b/site/public/v1/games/train-simulator-cprr-4-4-0-no-60-jupiter-steam-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159757, + "slug": "train-simulator-cprr-4-4-0-no-60-jupiter-steam-loco-add-on", + "name": "Train Simulator: CPRR 4-4-0 No. 60 ‘Jupiter’ Steam Loco Add-On", + "release_date": "2017-05-10", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Smokebox" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106145" + ], + "created_at": "2026-07-10T10:10:47.980392", + "updated_at": "2026-07-10T10:10:47.980392", + "url": "/v1/games/train-simulator-cprr-4-4-0-no-60-jupiter-steam-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-cprr-4-6-0-buffalo-steam-loco-add-on/index.json b/site/public/v1/games/train-simulator-cprr-4-6-0-buffalo-steam-loco-add-on/index.json new file mode 100644 index 000000000000..c6b2766b15db --- /dev/null +++ b/site/public/v1/games/train-simulator-cprr-4-6-0-buffalo-steam-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159758, + "slug": "train-simulator-cprr-4-6-0-buffalo-steam-loco-add-on", + "name": "Train Simulator: CPRR 4-6-0 Buffalo Steam Loco Add-On", + "release_date": "2018-10-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Smokebox" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106015" + ], + "created_at": "2026-07-10T10:10:47.980392", + "updated_at": "2026-07-10T10:10:47.980392", + "url": "/v1/games/train-simulator-cprr-4-6-0-buffalo-steam-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-crh-380a-high-speed-train-add-on/index.json b/site/public/v1/games/train-simulator-crh-380a-high-speed-train-add-on/index.json new file mode 100644 index 000000000000..7e55ff2b0358 --- /dev/null +++ b/site/public/v1/games/train-simulator-crh-380a-high-speed-train-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159759, + "slug": "train-simulator-crh-380a-high-speed-train-add-on", + "name": "Train Simulator: CRH 380A High Speed Train Add-On", + "release_date": "2017-04-06", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Just Trains" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106433" + ], + "created_at": "2026-07-10T10:10:47.980392", + "updated_at": "2026-07-10T10:10:47.980392", + "url": "/v1/games/train-simulator-crh-380a-high-speed-train-add-on" +} diff --git a/site/public/v1/games/train-simulator-crh2a-emu-add-on/index.json b/site/public/v1/games/train-simulator-crh2a-emu-add-on/index.json new file mode 100644 index 000000000000..51a0d1fe93d9 --- /dev/null +++ b/site/public/v1/games/train-simulator-crh2a-emu-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159760, + "slug": "train-simulator-crh2a-emu-add-on", + "name": "Train Simulator: CRH2A EMU Add-On", + "release_date": "2018-01-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Just Trains" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105713" + ], + "created_at": "2026-07-10T10:10:47.980392", + "updated_at": "2026-07-10T10:10:47.980392", + "url": "/v1/games/train-simulator-crh2a-emu-add-on" +} diff --git a/site/public/v1/games/train-simulator-crh380d-emu-add-on/index.json b/site/public/v1/games/train-simulator-crh380d-emu-add-on/index.json new file mode 100644 index 000000000000..ff23ca3eea11 --- /dev/null +++ b/site/public/v1/games/train-simulator-crh380d-emu-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159761, + "slug": "train-simulator-crh380d-emu-add-on", + "name": "Train Simulator: CRH380D EMU Add-On", + "release_date": "2015-05-06", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Just Trains" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105712" + ], + "created_at": "2026-07-10T10:10:47.980392", + "updated_at": "2026-07-10T10:10:47.980392", + "url": "/v1/games/train-simulator-crh380d-emu-add-on" +} diff --git a/site/public/v1/games/train-simulator-csx-ac6000cw-loco-add-on/index.json b/site/public/v1/games/train-simulator-csx-ac6000cw-loco-add-on/index.json new file mode 100644 index 000000000000..9dff7f5eb707 --- /dev/null +++ b/site/public/v1/games/train-simulator-csx-ac6000cw-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159762, + "slug": "train-simulator-csx-ac6000cw-loco-add-on", + "name": "Train Simulator: CSX AC6000CW Loco Add-On", + "release_date": "2015-04-16", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105707" + ], + "created_at": "2026-07-10T10:10:47.981466", + "updated_at": "2026-07-10T10:10:47.981466", + "url": "/v1/games/train-simulator-csx-ac6000cw-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-csx-c30-7-loco-add-on/index.json b/site/public/v1/games/train-simulator-csx-c30-7-loco-add-on/index.json new file mode 100644 index 000000000000..4878216dfa90 --- /dev/null +++ b/site/public/v1/games/train-simulator-csx-c30-7-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159763, + "slug": "train-simulator-csx-c30-7-loco-add-on", + "name": "Train Simulator: CSX C30-7 Loco Add-On", + "release_date": "2017-02-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Virtual Rail Creations" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105878" + ], + "created_at": "2026-07-10T10:10:47.981466", + "updated_at": "2026-07-10T10:10:47.981466", + "url": "/v1/games/train-simulator-csx-c30-7-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-csx-hanover-subdivision-hanover-hagerstown-route-add-on/index.json b/site/public/v1/games/train-simulator-csx-hanover-subdivision-hanover-hagerstown-route-add-on/index.json new file mode 100644 index 000000000000..62784e8a66c4 --- /dev/null +++ b/site/public/v1/games/train-simulator-csx-hanover-subdivision-hanover-hagerstown-route-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159764, + "slug": "train-simulator-csx-hanover-subdivision-hanover-hagerstown-route-add-on", + "name": "Train Simulator: CSX Hanover Subdivision: Hanover - Hagerstown Route Add-On", + "release_date": "2020-09-03", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "High Iron Simulations" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105504" + ], + "created_at": "2026-07-10T10:10:47.981466", + "updated_at": "2026-07-10T10:10:47.981466", + "url": "/v1/games/train-simulator-csx-hanover-subdivision-hanover-hagerstown-route-add-on" +} diff --git a/site/public/v1/games/train-simulator-csx-nre-3gs-21b-genset-loco-add-on/index.json b/site/public/v1/games/train-simulator-csx-nre-3gs-21b-genset-loco-add-on/index.json new file mode 100644 index 000000000000..a74d7369ea04 --- /dev/null +++ b/site/public/v1/games/train-simulator-csx-nre-3gs-21b-genset-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159765, + "slug": "train-simulator-csx-nre-3gs-21b-genset-loco-add-on", + "name": "Train Simulator: CSX NRE 3GS-21B 'Genset' Loco Add-On", + "release_date": "2015-03-05", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106225" + ], + "created_at": "2026-07-10T10:10:47.981466", + "updated_at": "2026-07-10T10:10:47.981466", + "url": "/v1/games/train-simulator-csx-nre-3gs-21b-genset-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-csx-sd80mac-loco-add-on/index.json b/site/public/v1/games/train-simulator-csx-sd80mac-loco-add-on/index.json new file mode 100644 index 000000000000..2a496829b029 --- /dev/null +++ b/site/public/v1/games/train-simulator-csx-sd80mac-loco-add-on/index.json @@ -0,0 +1,31 @@ +{ + "id": 159766, + "slug": "train-simulator-csx-sd80mac-loco-add-on", + "name": "Train Simulator: CSX SD80MAC Loco Add-On", + "release_date": "2014-07-31", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105930" + ], + "created_at": "2026-07-10T10:10:47.981466", + "updated_at": "2026-07-10T10:10:47.981466", + "url": "/v1/games/train-simulator-csx-sd80mac-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-d-rgw-sd50-loco-add-on/index.json b/site/public/v1/games/train-simulator-d-rgw-sd50-loco-add-on/index.json new file mode 100644 index 000000000000..aeb54151a2e1 --- /dev/null +++ b/site/public/v1/games/train-simulator-d-rgw-sd50-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159767, + "slug": "train-simulator-d-rgw-sd50-loco-add-on", + "name": "Train Simulator: D&RGW SD50 Loco Add-On", + "release_date": "2015-08-06", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Digital Train Model" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106047" + ], + "created_at": "2026-07-10T10:10:47.981466", + "updated_at": "2026-07-10T10:10:47.981466", + "url": "/v1/games/train-simulator-d-rgw-sd50-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-d-rgw-sd9-loco-add-on/index.json b/site/public/v1/games/train-simulator-d-rgw-sd9-loco-add-on/index.json new file mode 100644 index 000000000000..e53cc66c7830 --- /dev/null +++ b/site/public/v1/games/train-simulator-d-rgw-sd9-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159768, + "slug": "train-simulator-d-rgw-sd9-loco-add-on", + "name": "Train Simulator: D&RGW SD9 Loco Add-On", + "release_date": "2015-07-16", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106211" + ], + "created_at": "2026-07-10T10:10:47.982472", + "updated_at": "2026-07-10T10:10:47.982472", + "url": "/v1/games/train-simulator-d-rgw-sd9-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-d-rgw-sw1200-loco-add-on/index.json b/site/public/v1/games/train-simulator-d-rgw-sw1200-loco-add-on/index.json new file mode 100644 index 000000000000..ecfb370220f4 --- /dev/null +++ b/site/public/v1/games/train-simulator-d-rgw-sw1200-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159769, + "slug": "train-simulator-d-rgw-sw1200-loco-add-on", + "name": "Train Simulator: D&RGW SW1200 Loco Add-On", + "release_date": "2019-08-08", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Digital Train Model" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105549" + ], + "created_at": "2026-07-10T10:10:47.982472", + "updated_at": "2026-07-10T10:10:47.982472", + "url": "/v1/games/train-simulator-d-rgw-sw1200-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-db-br-10-steam-loco-add-on/index.json b/site/public/v1/games/train-simulator-db-br-10-steam-loco-add-on/index.json new file mode 100644 index 000000000000..dfa5d1e27fbd --- /dev/null +++ b/site/public/v1/games/train-simulator-db-br-10-steam-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159770, + "slug": "train-simulator-db-br-10-steam-loco-add-on", + "name": "Train Simulator: DB BR 10 Steam Loco Add-On", + "release_date": "2016-12-08", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Romantic Railroads" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106156" + ], + "created_at": "2026-07-10T10:10:47.982472", + "updated_at": "2026-07-10T10:10:47.982472", + "url": "/v1/games/train-simulator-db-br-10-steam-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-db-br-101-loco-add-on/index.json b/site/public/v1/games/train-simulator-db-br-101-loco-add-on/index.json new file mode 100644 index 000000000000..fcff90e72f80 --- /dev/null +++ b/site/public/v1/games/train-simulator-db-br-101-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159771, + "slug": "train-simulator-db-br-101-loco-add-on", + "name": "Train Simulator: DB BR 101 Loco Add-On", + "release_date": "2017-06-08", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "virtualRailroads" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105877" + ], + "created_at": "2026-07-10T10:10:47.982472", + "updated_at": "2026-07-10T10:10:47.982472", + "url": "/v1/games/train-simulator-db-br-101-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-db-br-103-tee-loco-add-on/index.json b/site/public/v1/games/train-simulator-db-br-103-tee-loco-add-on/index.json new file mode 100644 index 000000000000..b714656e06ad --- /dev/null +++ b/site/public/v1/games/train-simulator-db-br-103-tee-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159772, + "slug": "train-simulator-db-br-103-tee-loco-add-on", + "name": "Train Simulator: DB BR 103 TEE Loco Add-On", + "release_date": "2014-10-09", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "virtualRailroads" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105875" + ], + "created_at": "2026-07-10T10:10:47.983398", + "updated_at": "2026-07-10T10:10:47.983398", + "url": "/v1/games/train-simulator-db-br-103-tee-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-db-br-112-1-loco-add-on/index.json b/site/public/v1/games/train-simulator-db-br-112-1-loco-add-on/index.json new file mode 100644 index 000000000000..cc6df95984ee --- /dev/null +++ b/site/public/v1/games/train-simulator-db-br-112-1-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159773, + "slug": "train-simulator-db-br-112-1-loco-add-on", + "name": "Train Simulator: DB BR 112.1 Loco Add-On", + "release_date": "2016-10-20", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "virtualRailroads" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105873" + ], + "created_at": "2026-07-10T10:10:47.983398", + "updated_at": "2026-07-10T10:10:47.983398", + "url": "/v1/games/train-simulator-db-br-112-1-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-db-br-114-loco-add-on/index.json b/site/public/v1/games/train-simulator-db-br-114-loco-add-on/index.json new file mode 100644 index 000000000000..02e33ac6409e --- /dev/null +++ b/site/public/v1/games/train-simulator-db-br-114-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159774, + "slug": "train-simulator-db-br-114-loco-add-on", + "name": "Train Simulator: DB BR 114 Loco Add-On", + "release_date": "2016-11-10", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105518" + ], + "created_at": "2026-07-10T10:10:47.983398", + "updated_at": "2026-07-10T10:10:47.983398", + "url": "/v1/games/train-simulator-db-br-114-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-db-br-120-loco-add-on/index.json b/site/public/v1/games/train-simulator-db-br-120-loco-add-on/index.json new file mode 100644 index 000000000000..cb47920f9203 --- /dev/null +++ b/site/public/v1/games/train-simulator-db-br-120-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159775, + "slug": "train-simulator-db-br-120-loco-add-on", + "name": "Train Simulator: DB BR 120 Loco Add-On", + "release_date": "2015-06-23", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105573" + ], + "created_at": "2026-07-10T10:10:47.983398", + "updated_at": "2026-07-10T10:10:47.983398", + "url": "/v1/games/train-simulator-db-br-120-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-db-br-145-loco-add-on/index.json b/site/public/v1/games/train-simulator-db-br-145-loco-add-on/index.json new file mode 100644 index 000000000000..03037decaca5 --- /dev/null +++ b/site/public/v1/games/train-simulator-db-br-145-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159776, + "slug": "train-simulator-db-br-145-loco-add-on", + "name": "Train Simulator: DB BR 145 Loco Add-On", + "release_date": "2014-03-20", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105548" + ], + "created_at": "2026-07-10T10:10:47.983398", + "updated_at": "2026-07-10T10:10:47.983398", + "url": "/v1/games/train-simulator-db-br-145-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-db-br-146-5-br-668-2-intercity-2-loco-add-on/index.json b/site/public/v1/games/train-simulator-db-br-146-5-br-668-2-intercity-2-loco-add-on/index.json new file mode 100644 index 000000000000..c8609573f75e --- /dev/null +++ b/site/public/v1/games/train-simulator-db-br-146-5-br-668-2-intercity-2-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159777, + "slug": "train-simulator-db-br-146-5-br-668-2-intercity-2-loco-add-on", + "name": "Train Simulator: DB BR 146.5 & BR 668.2 ‘Intercity 2’ Loco Add-On", + "release_date": "2019-11-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105578" + ], + "created_at": "2026-07-10T10:10:47.984396", + "updated_at": "2026-07-10T10:10:47.984396", + "url": "/v1/games/train-simulator-db-br-146-5-br-668-2-intercity-2-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-db-br-151-loco-add-on/index.json b/site/public/v1/games/train-simulator-db-br-151-loco-add-on/index.json new file mode 100644 index 000000000000..73ed4fd6ee4b --- /dev/null +++ b/site/public/v1/games/train-simulator-db-br-151-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159778, + "slug": "train-simulator-db-br-151-loco-add-on", + "name": "Train Simulator: DB BR 151 Loco Add-On", + "release_date": "2017-11-10", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "virtualRailroads" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106126" + ], + "created_at": "2026-07-10T10:10:47.984396", + "updated_at": "2026-07-10T10:10:47.984396", + "url": "/v1/games/train-simulator-db-br-151-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-db-br-152-loco-add-on/index.json b/site/public/v1/games/train-simulator-db-br-152-loco-add-on/index.json new file mode 100644 index 000000000000..032aca2c3017 --- /dev/null +++ b/site/public/v1/games/train-simulator-db-br-152-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159779, + "slug": "train-simulator-db-br-152-loco-add-on", + "name": "Train Simulator: DB BR 152 Loco Add-On", + "release_date": "2015-07-23", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105493" + ], + "created_at": "2026-07-10T10:10:47.984396", + "updated_at": "2026-07-10T10:10:47.984396", + "url": "/v1/games/train-simulator-db-br-152-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-db-br-18-steam-loco-add-on/index.json b/site/public/v1/games/train-simulator-db-br-18-steam-loco-add-on/index.json new file mode 100644 index 000000000000..fc99bbcfb7f4 --- /dev/null +++ b/site/public/v1/games/train-simulator-db-br-18-steam-loco-add-on/index.json @@ -0,0 +1,31 @@ +{ + "id": 159780, + "slug": "train-simulator-db-br-18-steam-loco-add-on", + "name": "Train Simulator: DB BR 18 Steam Loco Add-On", + "release_date": "2017-01-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105891" + ], + "created_at": "2026-07-10T10:10:47.984396", + "updated_at": "2026-07-10T10:10:47.984396", + "url": "/v1/games/train-simulator-db-br-18-steam-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-db-br-181-2-loco-add-on/index.json b/site/public/v1/games/train-simulator-db-br-181-2-loco-add-on/index.json new file mode 100644 index 000000000000..7012149af1de --- /dev/null +++ b/site/public/v1/games/train-simulator-db-br-181-2-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159781, + "slug": "train-simulator-db-br-181-2-loco-add-on", + "name": "Train Simulator: DB BR 181.2 Loco Add-on", + "release_date": "2019-01-10", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "virtualRailroads" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105949" + ], + "created_at": "2026-07-10T10:10:47.984396", + "updated_at": "2026-07-10T10:10:47.984396", + "url": "/v1/games/train-simulator-db-br-181-2-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-db-br-204-loco-add-on/index.json b/site/public/v1/games/train-simulator-db-br-204-loco-add-on/index.json new file mode 100644 index 000000000000..87f49f1b333c --- /dev/null +++ b/site/public/v1/games/train-simulator-db-br-204-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159782, + "slug": "train-simulator-db-br-204-loco-add-on", + "name": "Train Simulator: DB BR 204 Loco Add-On", + "release_date": "2019-08-22", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105704" + ], + "created_at": "2026-07-10T10:10:47.985403", + "updated_at": "2026-07-10T10:10:47.985403", + "url": "/v1/games/train-simulator-db-br-204-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-db-br-218-loco-add-on/index.json b/site/public/v1/games/train-simulator-db-br-218-loco-add-on/index.json new file mode 100644 index 000000000000..4e74a40102da --- /dev/null +++ b/site/public/v1/games/train-simulator-db-br-218-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159783, + "slug": "train-simulator-db-br-218-loco-add-on", + "name": "Train Simulator: DB BR 218 Loco Add-On", + "release_date": "2015-01-22", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105936" + ], + "created_at": "2026-07-10T10:10:47.985403", + "updated_at": "2026-07-10T10:10:47.985403", + "url": "/v1/games/train-simulator-db-br-218-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-db-br-261-voith-gravita-loco-add-on/index.json b/site/public/v1/games/train-simulator-db-br-261-voith-gravita-loco-add-on/index.json new file mode 100644 index 000000000000..52d2187c65d4 --- /dev/null +++ b/site/public/v1/games/train-simulator-db-br-261-voith-gravita-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159784, + "slug": "train-simulator-db-br-261-voith-gravita-loco-add-on", + "name": "Train Simulator: DB BR 261 'Voith Gravita' Loco Add-On", + "release_date": "2015-09-02", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106127" + ], + "created_at": "2026-07-10T10:10:47.985403", + "updated_at": "2026-07-10T10:10:47.985403", + "url": "/v1/games/train-simulator-db-br-261-voith-gravita-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-db-br-361-loco-add-on/index.json b/site/public/v1/games/train-simulator-db-br-361-loco-add-on/index.json new file mode 100644 index 000000000000..92a2c62ae768 --- /dev/null +++ b/site/public/v1/games/train-simulator-db-br-361-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159785, + "slug": "train-simulator-db-br-361-loco-add-on", + "name": "Train Simulator: DB BR 361 Loco Add-On", + "release_date": "2015-12-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106219" + ], + "created_at": "2026-07-10T10:10:47.985403", + "updated_at": "2026-07-10T10:10:47.985403", + "url": "/v1/games/train-simulator-db-br-361-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-db-br-407-new-ice-3-emu-add-on/index.json b/site/public/v1/games/train-simulator-db-br-407-new-ice-3-emu-add-on/index.json new file mode 100644 index 000000000000..0ad8dba67f45 --- /dev/null +++ b/site/public/v1/games/train-simulator-db-br-407-new-ice-3-emu-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159786, + "slug": "train-simulator-db-br-407-new-ice-3-emu-add-on", + "name": "Train Simulator: DB BR 407 ‘New ICE 3’ EMU Add-On", + "release_date": "2018-11-08", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105484" + ], + "created_at": "2026-07-10T10:10:47.985403", + "updated_at": "2026-07-10T10:10:47.985403", + "url": "/v1/games/train-simulator-db-br-407-new-ice-3-emu-add-on" +} diff --git a/site/public/v1/games/train-simulator-db-br-411-ice-t-emu-add-on/index.json b/site/public/v1/games/train-simulator-db-br-411-ice-t-emu-add-on/index.json new file mode 100644 index 000000000000..d8b51e02d910 --- /dev/null +++ b/site/public/v1/games/train-simulator-db-br-411-ice-t-emu-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159787, + "slug": "train-simulator-db-br-411-ice-t-emu-add-on", + "name": "Train Simulator: DB BR 411 'ICE-T' EMU Add-On", + "release_date": "2013-11-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105490" + ], + "created_at": "2026-07-10T10:10:47.985403", + "updated_at": "2026-07-10T10:10:47.985403", + "url": "/v1/games/train-simulator-db-br-411-ice-t-emu-add-on" +} diff --git a/site/public/v1/games/train-simulator-db-br-425-emu-add-on/index.json b/site/public/v1/games/train-simulator-db-br-425-emu-add-on/index.json new file mode 100644 index 000000000000..9a272159e05f --- /dev/null +++ b/site/public/v1/games/train-simulator-db-br-425-emu-add-on/index.json @@ -0,0 +1,31 @@ +{ + "id": 159788, + "slug": "train-simulator-db-br-425-emu-add-on", + "name": "Train Simulator: DB BR 425 EMU Add-On", + "release_date": "2019-09-05", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105959" + ], + "created_at": "2026-07-10T10:10:47.986411", + "updated_at": "2026-07-10T10:10:47.986411", + "url": "/v1/games/train-simulator-db-br-425-emu-add-on" +} diff --git a/site/public/v1/games/train-simulator-db-br-440-coradia-continental-loco-add-on/index.json b/site/public/v1/games/train-simulator-db-br-440-coradia-continental-loco-add-on/index.json new file mode 100644 index 000000000000..66e821b8a1f9 --- /dev/null +++ b/site/public/v1/games/train-simulator-db-br-440-coradia-continental-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159789, + "slug": "train-simulator-db-br-440-coradia-continental-loco-add-on", + "name": "Train Simulator: DB BR 440 ‘Coradia Continental’ Loco Add-On", + "release_date": "2016-06-17", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105491" + ], + "created_at": "2026-07-10T10:10:47.986411", + "updated_at": "2026-07-10T10:10:47.986411", + "url": "/v1/games/train-simulator-db-br-440-coradia-continental-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-db-br-442-talent-2-emu-add-on/index.json b/site/public/v1/games/train-simulator-db-br-442-talent-2-emu-add-on/index.json new file mode 100644 index 000000000000..1243e62cc239 --- /dev/null +++ b/site/public/v1/games/train-simulator-db-br-442-talent-2-emu-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159790, + "slug": "train-simulator-db-br-442-talent-2-emu-add-on", + "name": "Train Simulator: DB BR 442 'Talent 2' EMU Add-On", + "release_date": "2014-10-20", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105676" + ], + "created_at": "2026-07-10T10:10:47.986411", + "updated_at": "2026-07-10T10:10:47.986411", + "url": "/v1/games/train-simulator-db-br-442-talent-2-emu-add-on" +} diff --git a/site/public/v1/games/train-simulator-db-br-474-3-emu-add-on/index.json b/site/public/v1/games/train-simulator-db-br-474-3-emu-add-on/index.json new file mode 100644 index 000000000000..59578e8dea3d --- /dev/null +++ b/site/public/v1/games/train-simulator-db-br-474-3-emu-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159791, + "slug": "train-simulator-db-br-474-3-emu-add-on", + "name": "Train Simulator: DB BR 474.3 EMU Add-On", + "release_date": "2016-01-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105632" + ], + "created_at": "2026-07-10T10:10:47.986411", + "updated_at": "2026-07-10T10:10:47.986411", + "url": "/v1/games/train-simulator-db-br-474-3-emu-add-on" +} diff --git a/site/public/v1/games/train-simulator-db-br-605-ice-td-add-on/index.json b/site/public/v1/games/train-simulator-db-br-605-ice-td-add-on/index.json new file mode 100644 index 000000000000..663b5ce46e43 --- /dev/null +++ b/site/public/v1/games/train-simulator-db-br-605-ice-td-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159792, + "slug": "train-simulator-db-br-605-ice-td-add-on", + "name": "Train Simulator: DB BR 605 ICE TD Add-On", + "release_date": "2015-01-30", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105648" + ], + "created_at": "2026-07-10T10:10:47.986411", + "updated_at": "2026-07-10T10:10:47.986411", + "url": "/v1/games/train-simulator-db-br-605-ice-td-add-on" +} diff --git a/site/public/v1/games/train-simulator-db-br-612-dmu-add-on/index.json b/site/public/v1/games/train-simulator-db-br-612-dmu-add-on/index.json new file mode 100644 index 000000000000..91fcdf565da6 --- /dev/null +++ b/site/public/v1/games/train-simulator-db-br-612-dmu-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159793, + "slug": "train-simulator-db-br-612-dmu-add-on", + "name": "Train Simulator: DB BR 612 DMU Add-On", + "release_date": "2018-02-08", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "RSSLO" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105977" + ], + "created_at": "2026-07-10T10:10:47.987401", + "updated_at": "2026-07-10T10:10:47.987401", + "url": "/v1/games/train-simulator-db-br-612-dmu-add-on" +} diff --git a/site/public/v1/games/train-simulator-db-br-642-dmu-add-on/index.json b/site/public/v1/games/train-simulator-db-br-642-dmu-add-on/index.json new file mode 100644 index 000000000000..b0803657ee56 --- /dev/null +++ b/site/public/v1/games/train-simulator-db-br-642-dmu-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159794, + "slug": "train-simulator-db-br-642-dmu-add-on", + "name": "Train Simulator: DB BR 642 DMU Add-On", + "release_date": "2017-08-03", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "RSSLO" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105964" + ], + "created_at": "2026-07-10T10:10:47.987401", + "updated_at": "2026-07-10T10:10:47.987401", + "url": "/v1/games/train-simulator-db-br-642-dmu-add-on" +} diff --git a/site/public/v1/games/train-simulator-db-br-643-dmu-add-on/index.json b/site/public/v1/games/train-simulator-db-br-643-dmu-add-on/index.json new file mode 100644 index 000000000000..454f4eaa3469 --- /dev/null +++ b/site/public/v1/games/train-simulator-db-br-643-dmu-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159795, + "slug": "train-simulator-db-br-643-dmu-add-on", + "name": "Train Simulator: DB BR 643 DMU Add-On", + "release_date": "2018-12-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "RSSLO" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105810" + ], + "created_at": "2026-07-10T10:10:47.987401", + "updated_at": "2026-07-10T10:10:47.987401", + "url": "/v1/games/train-simulator-db-br-643-dmu-add-on" +} diff --git a/site/public/v1/games/train-simulator-db-br-648-loco-add-on/index.json b/site/public/v1/games/train-simulator-db-br-648-loco-add-on/index.json new file mode 100644 index 000000000000..41b5cbdd6214 --- /dev/null +++ b/site/public/v1/games/train-simulator-db-br-648-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159796, + "slug": "train-simulator-db-br-648-loco-add-on", + "name": "Train Simulator: DB BR 648 Loco Add-On", + "release_date": "2016-04-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105866" + ], + "created_at": "2026-07-10T10:10:47.987401", + "updated_at": "2026-07-10T10:10:47.987401", + "url": "/v1/games/train-simulator-db-br-648-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-db-br111-loco-add-on/index.json b/site/public/v1/games/train-simulator-db-br111-loco-add-on/index.json new file mode 100644 index 000000000000..7c755a4a7067 --- /dev/null +++ b/site/public/v1/games/train-simulator-db-br111-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159797, + "slug": "train-simulator-db-br111-loco-add-on", + "name": "Train Simulator: DB BR111 Loco Add-On", + "release_date": "2014-01-08", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "virtualRailroads" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105876" + ], + "created_at": "2026-07-10T10:10:47.987401", + "updated_at": "2026-07-10T10:10:47.987401", + "url": "/v1/games/train-simulator-db-br111-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-db-br143-loco-add-on/index.json b/site/public/v1/games/train-simulator-db-br143-loco-add-on/index.json new file mode 100644 index 000000000000..de0365ee70a9 --- /dev/null +++ b/site/public/v1/games/train-simulator-db-br143-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159798, + "slug": "train-simulator-db-br143-loco-add-on", + "name": "Train Simulator: DB BR143 Loco Add-On", + "release_date": "2012-05-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "virtualRailroads" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106232" + ], + "created_at": "2026-07-10T10:10:47.987401", + "updated_at": "2026-07-10T10:10:47.987401", + "url": "/v1/games/train-simulator-db-br143-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-db-br232-loco-add-on/index.json b/site/public/v1/games/train-simulator-db-br232-loco-add-on/index.json new file mode 100644 index 000000000000..42b854ee7aee --- /dev/null +++ b/site/public/v1/games/train-simulator-db-br232-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159799, + "slug": "train-simulator-db-br232-loco-add-on", + "name": "Train Simulator: DB BR232 Loco Add-On", + "release_date": "2013-06-27", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105858" + ], + "created_at": "2026-07-10T10:10:47.988401", + "updated_at": "2026-07-10T10:10:47.988401", + "url": "/v1/games/train-simulator-db-br232-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-db-br420-emu-add-on/index.json b/site/public/v1/games/train-simulator-db-br420-emu-add-on/index.json new file mode 100644 index 000000000000..8b2b4aa80f05 --- /dev/null +++ b/site/public/v1/games/train-simulator-db-br420-emu-add-on/index.json @@ -0,0 +1,31 @@ +{ + "id": 159800, + "slug": "train-simulator-db-br420-emu-add-on", + "name": "Train Simulator: DB BR420 EMU Add-On", + "release_date": "2013-10-10", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106247" + ], + "created_at": "2026-07-10T10:10:47.988401", + "updated_at": "2026-07-10T10:10:47.988401", + "url": "/v1/games/train-simulator-db-br420-emu-add-on" +} diff --git a/site/public/v1/games/train-simulator-db-br423-emu-add-on/index.json b/site/public/v1/games/train-simulator-db-br423-emu-add-on/index.json new file mode 100644 index 000000000000..c17a4ce06834 --- /dev/null +++ b/site/public/v1/games/train-simulator-db-br423-emu-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159801, + "slug": "train-simulator-db-br423-emu-add-on", + "name": "Train Simulator: DB BR423 EMU Add-On", + "release_date": "2013-05-09", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106040" + ], + "created_at": "2026-07-10T10:10:47.988401", + "updated_at": "2026-07-10T10:10:47.988401", + "url": "/v1/games/train-simulator-db-br423-emu-add-on" +} diff --git a/site/public/v1/games/train-simulator-db-br424-emu-add-on/index.json b/site/public/v1/games/train-simulator-db-br424-emu-add-on/index.json new file mode 100644 index 000000000000..db2f377d327e --- /dev/null +++ b/site/public/v1/games/train-simulator-db-br424-emu-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159802, + "slug": "train-simulator-db-br424-emu-add-on", + "name": "Train Simulator: DB BR424 EMU Add-On", + "release_date": "2013-09-25", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105550" + ], + "created_at": "2026-07-10T10:10:47.988401", + "updated_at": "2026-07-10T10:10:47.988401", + "url": "/v1/games/train-simulator-db-br424-emu-add-on" +} diff --git a/site/public/v1/games/train-simulator-db-freight-1970s-loco-add-on/index.json b/site/public/v1/games/train-simulator-db-freight-1970s-loco-add-on/index.json new file mode 100644 index 000000000000..f0f00da9ebf5 --- /dev/null +++ b/site/public/v1/games/train-simulator-db-freight-1970s-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159803, + "slug": "train-simulator-db-freight-1970s-loco-add-on", + "name": "Train Simulator: DB Freight: 1970s Loco Add-On", + "release_date": "2012-03-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "virtualRailroads" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106233" + ], + "created_at": "2026-07-10T10:10:47.988401", + "updated_at": "2026-07-10T10:10:47.988401", + "url": "/v1/games/train-simulator-db-freight-1970s-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-db-ice-1-emu-add-on/index.json b/site/public/v1/games/train-simulator-db-ice-1-emu-add-on/index.json new file mode 100644 index 000000000000..67d341c851d9 --- /dev/null +++ b/site/public/v1/games/train-simulator-db-ice-1-emu-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159804, + "slug": "train-simulator-db-ice-1-emu-add-on", + "name": "Train Simulator: DB ICE 1 EMU Add-On", + "release_date": "2012-08-03", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106026" + ], + "created_at": "2026-07-10T10:10:47.988401", + "updated_at": "2026-07-10T10:10:47.988401", + "url": "/v1/games/train-simulator-db-ice-1-emu-add-on" +} diff --git a/site/public/v1/games/train-simulator-db-ice-2-emu-add-on/index.json b/site/public/v1/games/train-simulator-db-ice-2-emu-add-on/index.json new file mode 100644 index 000000000000..2eeb2685eb2c --- /dev/null +++ b/site/public/v1/games/train-simulator-db-ice-2-emu-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159805, + "slug": "train-simulator-db-ice-2-emu-add-on", + "name": "Train Simulator: DB ICE 2 EMU Add-On", + "release_date": "2013-01-10", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105931" + ], + "created_at": "2026-07-10T10:10:47.988401", + "updated_at": "2026-07-10T10:10:47.988401", + "url": "/v1/games/train-simulator-db-ice-2-emu-add-on" +} diff --git a/site/public/v1/games/train-simulator-db-ice-3-emu-add-on/index.json b/site/public/v1/games/train-simulator-db-ice-3-emu-add-on/index.json new file mode 100644 index 000000000000..8cefb5fa0751 --- /dev/null +++ b/site/public/v1/games/train-simulator-db-ice-3-emu-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159806, + "slug": "train-simulator-db-ice-3-emu-add-on", + "name": "Train Simulator: DB ICE 3 EMU Add-On", + "release_date": "2012-08-09", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105757" + ], + "created_at": "2026-07-10T10:10:47.989456", + "updated_at": "2026-07-10T10:10:47.989456", + "url": "/v1/games/train-simulator-db-ice-3-emu-add-on" +} diff --git a/site/public/v1/games/train-simulator-db-schenker-class-59-2-loco-add-on/index.json b/site/public/v1/games/train-simulator-db-schenker-class-59-2-loco-add-on/index.json new file mode 100644 index 000000000000..0981ec0be298 --- /dev/null +++ b/site/public/v1/games/train-simulator-db-schenker-class-59-2-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159807, + "slug": "train-simulator-db-schenker-class-59-2-loco-add-on", + "name": "Train Simulator: DB Schenker Class 59/2 Loco Add-On", + "release_date": "2015-10-22", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105636" + ], + "created_at": "2026-07-10T10:10:47.989456", + "updated_at": "2026-07-10T10:10:47.989456", + "url": "/v1/games/train-simulator-db-schenker-class-59-2-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-dispolok-br-189-loco-add-on/index.json b/site/public/v1/games/train-simulator-dispolok-br-189-loco-add-on/index.json new file mode 100644 index 000000000000..2498c8faa4a3 --- /dev/null +++ b/site/public/v1/games/train-simulator-dispolok-br-189-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159809, + "slug": "train-simulator-dispolok-br-189-loco-add-on", + "name": "Train Simulator: Dispolok BR 189 Loco Add-On", + "release_date": "2014-03-27", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105868" + ], + "created_at": "2026-07-10T10:10:47.989456", + "updated_at": "2026-07-10T10:10:47.989456", + "url": "/v1/games/train-simulator-dispolok-br-189-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-doncaster-works-route-add-on/index.json b/site/public/v1/games/train-simulator-doncaster-works-route-add-on/index.json new file mode 100644 index 000000000000..859790022b54 --- /dev/null +++ b/site/public/v1/games/train-simulator-doncaster-works-route-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159810, + "slug": "train-simulator-doncaster-works-route-add-on", + "name": "Train Simulator: Doncaster Works Route Add-On", + "release_date": "2010-12-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106062" + ], + "created_at": "2026-07-10T10:10:47.990457", + "updated_at": "2026-07-10T10:10:47.990457", + "url": "/v1/games/train-simulator-doncaster-works-route-add-on" +} diff --git a/site/public/v1/games/train-simulator-donner-pass-southern-pacific-route-add-on/index.json b/site/public/v1/games/train-simulator-donner-pass-southern-pacific-route-add-on/index.json new file mode 100644 index 000000000000..ee359662e758 --- /dev/null +++ b/site/public/v1/games/train-simulator-donner-pass-southern-pacific-route-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159811, + "slug": "train-simulator-donner-pass-southern-pacific-route-add-on", + "name": "Train Simulator: Donner Pass: Southern Pacific Route Add-On", + "release_date": "2012-12-21", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105539" + ], + "created_at": "2026-07-10T10:10:47.990457", + "updated_at": "2026-07-10T10:10:47.990457", + "url": "/v1/games/train-simulator-donner-pass-southern-pacific-route-add-on" +} diff --git a/site/public/v1/games/train-simulator-dr-br-24-loco-add-on/index.json b/site/public/v1/games/train-simulator-dr-br-24-loco-add-on/index.json new file mode 100644 index 000000000000..f24699b35921 --- /dev/null +++ b/site/public/v1/games/train-simulator-dr-br-24-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159812, + "slug": "train-simulator-dr-br-24-loco-add-on", + "name": "Train Simulator: DR BR 24 Loco Add-On", + "release_date": "2015-11-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Romantic Railroads" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106174" + ], + "created_at": "2026-07-10T10:10:47.990457", + "updated_at": "2026-07-10T10:10:47.990457", + "url": "/v1/games/train-simulator-dr-br-24-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-dr-br-44-loco-add-on/index.json b/site/public/v1/games/train-simulator-dr-br-44-loco-add-on/index.json new file mode 100644 index 000000000000..e51983316d36 --- /dev/null +++ b/site/public/v1/games/train-simulator-dr-br-44-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159813, + "slug": "train-simulator-dr-br-44-loco-add-on", + "name": "Train Simulator: DR BR 44 Loco Add-On", + "release_date": "2019-01-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Romantic Railroads" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105948" + ], + "created_at": "2026-07-10T10:10:47.990457", + "updated_at": "2026-07-10T10:10:47.990457", + "url": "/v1/games/train-simulator-dr-br-44-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-dr-br-86-loco-add-on/index.json b/site/public/v1/games/train-simulator-dr-br-86-loco-add-on/index.json new file mode 100644 index 000000000000..f87385fa78d3 --- /dev/null +++ b/site/public/v1/games/train-simulator-dr-br-86-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159814, + "slug": "train-simulator-dr-br-86-loco-add-on", + "name": "Train Simulator: DR BR 86 Loco Add-On", + "release_date": "2015-10-20", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105552" + ], + "created_at": "2026-07-10T10:10:47.990457", + "updated_at": "2026-07-10T10:10:47.990457", + "url": "/v1/games/train-simulator-dr-br-86-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-duchess-of-sutherland-loco-add-on/index.json b/site/public/v1/games/train-simulator-duchess-of-sutherland-loco-add-on/index.json new file mode 100644 index 000000000000..b83b1c4060a0 --- /dev/null +++ b/site/public/v1/games/train-simulator-duchess-of-sutherland-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159815, + "slug": "train-simulator-duchess-of-sutherland-loco-add-on", + "name": "Train Simulator: Duchess of Sutherland Loco Add-On", + "release_date": "2014-08-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105497" + ], + "created_at": "2026-07-10T10:10:47.990457", + "updated_at": "2026-07-10T10:10:47.990457", + "url": "/v1/games/train-simulator-duchess-of-sutherland-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-e18-loco-add-on/index.json b/site/public/v1/games/train-simulator-e18-loco-add-on/index.json new file mode 100644 index 000000000000..93b24f058181 --- /dev/null +++ b/site/public/v1/games/train-simulator-e18-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159816, + "slug": "train-simulator-e18-loco-add-on", + "name": "Train Simulator: E18 Loco Add-On", + "release_date": "2012-04-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "virtualRailroads" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106235" + ], + "created_at": "2026-07-10T10:10:47.990457", + "updated_at": "2026-07-10T10:10:47.990457", + "url": "/v1/games/train-simulator-e18-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-east-coast-main-line-london-peterborough-route-add-on/index.json b/site/public/v1/games/train-simulator-east-coast-main-line-london-peterborough-route-add-on/index.json new file mode 100644 index 000000000000..6e8fa6a52801 --- /dev/null +++ b/site/public/v1/games/train-simulator-east-coast-main-line-london-peterborough-route-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159817, + "slug": "train-simulator-east-coast-main-line-london-peterborough-route-add-on", + "name": "Train Simulator: East Coast Main Line London-Peterborough Route Add-On", + "release_date": "2013-12-05", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105655" + ], + "created_at": "2026-07-10T10:10:47.991521", + "updated_at": "2026-07-10T10:10:47.991521", + "url": "/v1/games/train-simulator-east-coast-main-line-london-peterborough-route-add-on" +} diff --git a/site/public/v1/games/train-simulator-east-coast-main-line-modern-york-peterborough-route-add-on/index.json b/site/public/v1/games/train-simulator-east-coast-main-line-modern-york-peterborough-route-add-on/index.json new file mode 100644 index 000000000000..5ae649954538 --- /dev/null +++ b/site/public/v1/games/train-simulator-east-coast-main-line-modern-york-peterborough-route-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159818, + "slug": "train-simulator-east-coast-main-line-modern-york-peterborough-route-add-on", + "name": "Train Simulator: East Coast Main Line Modern: York - Peterborough Route Add-On", + "release_date": "2018-04-06", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Creative Rail" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105753" + ], + "created_at": "2026-07-10T10:10:47.991521", + "updated_at": "2026-07-10T10:10:47.991521", + "url": "/v1/games/train-simulator-east-coast-main-line-modern-york-peterborough-route-add-on" +} diff --git a/site/public/v1/games/train-simulator-east-coast-main-line-route-add-on/index.json b/site/public/v1/games/train-simulator-east-coast-main-line-route-add-on/index.json new file mode 100644 index 000000000000..b4de825aac99 --- /dev/null +++ b/site/public/v1/games/train-simulator-east-coast-main-line-route-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159819, + "slug": "train-simulator-east-coast-main-line-route-add-on", + "name": "Train Simulator: East Coast Main Line Route Add-On", + "release_date": "2012-09-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105764" + ], + "created_at": "2026-07-10T10:10:47.991521", + "updated_at": "2026-07-10T10:10:47.991521", + "url": "/v1/games/train-simulator-east-coast-main-line-route-add-on" +} diff --git a/site/public/v1/games/train-simulator-east-midlands-br-class-222-demu-add-on/index.json b/site/public/v1/games/train-simulator-east-midlands-br-class-222-demu-add-on/index.json new file mode 100644 index 000000000000..1e29b633b8fe --- /dev/null +++ b/site/public/v1/games/train-simulator-east-midlands-br-class-222-demu-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159820, + "slug": "train-simulator-east-midlands-br-class-222-demu-add-on", + "name": "Train Simulator: East Midlands BR Class 222 DEMU Add-On", + "release_date": "2020-03-05", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Just Trains" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105881" + ], + "created_at": "2026-07-10T10:10:47.991521", + "updated_at": "2026-07-10T10:10:47.991521", + "url": "/v1/games/train-simulator-east-midlands-br-class-222-demu-add-on" +} diff --git a/site/public/v1/games/train-simulator-east-midlands-coal-sherwood-high-marnham-route-add-on/index.json b/site/public/v1/games/train-simulator-east-midlands-coal-sherwood-high-marnham-route-add-on/index.json new file mode 100644 index 000000000000..74ca95a2f094 --- /dev/null +++ b/site/public/v1/games/train-simulator-east-midlands-coal-sherwood-high-marnham-route-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159821, + "slug": "train-simulator-east-midlands-coal-sherwood-high-marnham-route-add-on", + "name": "Train Simulator: East Midlands Coal: Sherwood - High Marnham Route Add-On", + "release_date": "2019-09-27", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Creative Rail" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105953" + ], + "created_at": "2026-07-10T10:10:47.992458", + "updated_at": "2026-07-10T10:10:47.992458", + "url": "/v1/games/train-simulator-east-midlands-coal-sherwood-high-marnham-route-add-on" +} diff --git a/site/public/v1/games/train-simulator-ecml-north-newcastle-edinburgh-route-add-on/index.json b/site/public/v1/games/train-simulator-ecml-north-newcastle-edinburgh-route-add-on/index.json new file mode 100644 index 000000000000..7ff472609fdb --- /dev/null +++ b/site/public/v1/games/train-simulator-ecml-north-newcastle-edinburgh-route-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159822, + "slug": "train-simulator-ecml-north-newcastle-edinburgh-route-add-on", + "name": "Train Simulator: ECML North: Newcastle - Edinburgh Route Add-On", + "release_date": "2020-05-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Just Trains" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105839" + ], + "created_at": "2026-07-10T10:10:47.992458", + "updated_at": "2026-07-10T10:10:47.992458", + "url": "/v1/games/train-simulator-ecml-north-newcastle-edinburgh-route-add-on" +} diff --git a/site/public/v1/games/train-simulator-edinburgh-glasgow-route-add-on/index.json b/site/public/v1/games/train-simulator-edinburgh-glasgow-route-add-on/index.json new file mode 100644 index 000000000000..a336d7c20d02 --- /dev/null +++ b/site/public/v1/games/train-simulator-edinburgh-glasgow-route-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159823, + "slug": "train-simulator-edinburgh-glasgow-route-add-on", + "name": "Train Simulator: Edinburgh-Glasgow Route Add-On", + "release_date": "2012-12-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Thomson Interactive" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105754" + ], + "created_at": "2026-07-10T10:10:47.992458", + "updated_at": "2026-07-10T10:10:47.992458", + "url": "/v1/games/train-simulator-edinburgh-glasgow-route-add-on" +} diff --git a/site/public/v1/games/train-simulator-engadin-linie-pontresina-scuol-tarasp-route-add-on/index.json b/site/public/v1/games/train-simulator-engadin-linie-pontresina-scuol-tarasp-route-add-on/index.json new file mode 100644 index 000000000000..7375fa3ce8df --- /dev/null +++ b/site/public/v1/games/train-simulator-engadin-linie-pontresina-scuol-tarasp-route-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159824, + "slug": "train-simulator-engadin-linie-pontresina-scuol-tarasp-route-add-on", + "name": "Train Simulator: Engadin Linie: Pontresina - Scuol-Tarasp Route Add-On", + "release_date": "2020-06-25", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Rivet Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105503" + ], + "created_at": "2026-07-10T10:10:47.992458", + "updated_at": "2026-07-10T10:10:47.992458", + "url": "/v1/games/train-simulator-engadin-linie-pontresina-scuol-tarasp-route-add-on" +} diff --git a/site/public/v1/games/train-simulator-ennstalbahn-bishofshofen-selzthal-route-add-on/index.json b/site/public/v1/games/train-simulator-ennstalbahn-bishofshofen-selzthal-route-add-on/index.json new file mode 100644 index 000000000000..1333b34896c4 --- /dev/null +++ b/site/public/v1/games/train-simulator-ennstalbahn-bishofshofen-selzthal-route-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159825, + "slug": "train-simulator-ennstalbahn-bishofshofen-selzthal-route-add-on", + "name": "Train Simulator: Ennstalbahn: Bishofshofen - Selzthal Route Add-On", + "release_date": "2019-11-15", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "RSSLO" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105853" + ], + "created_at": "2026-07-10T10:10:47.992458", + "updated_at": "2026-07-10T10:10:47.992458", + "url": "/v1/games/train-simulator-ennstalbahn-bishofshofen-selzthal-route-add-on" +} diff --git a/site/public/v1/games/train-simulator-european-loco-asset-pack/index.json b/site/public/v1/games/train-simulator-european-loco-asset-pack/index.json new file mode 100644 index 000000000000..8931f47fe5cd --- /dev/null +++ b/site/public/v1/games/train-simulator-european-loco-asset-pack/index.json @@ -0,0 +1,33 @@ +{ + "id": 159826, + "slug": "train-simulator-european-loco-asset-pack", + "name": "Train Simulator: European Loco & Asset Pack", + "release_date": "2009-10-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105961" + ], + "created_at": "2026-07-10T10:10:47.992458", + "updated_at": "2026-07-10T10:10:47.992458", + "url": "/v1/games/train-simulator-european-loco-asset-pack" +} diff --git a/site/public/v1/games/train-simulator-ews-class-66-v2-0-loco-add-on/index.json b/site/public/v1/games/train-simulator-ews-class-66-v2-0-loco-add-on/index.json new file mode 100644 index 000000000000..c4adc92cf4e3 --- /dev/null +++ b/site/public/v1/games/train-simulator-ews-class-66-v2-0-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159827, + "slug": "train-simulator-ews-class-66-v2-0-loco-add-on", + "name": "Train Simulator: EWS Class 66 v2.0 Loco Add-On", + "release_date": "2013-02-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106252" + ], + "created_at": "2026-07-10T10:10:47.992458", + "updated_at": "2026-07-10T10:10:47.992458", + "url": "/v1/games/train-simulator-ews-class-66-v2-0-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-ews-class-67-loco-add-on/index.json b/site/public/v1/games/train-simulator-ews-class-67-loco-add-on/index.json new file mode 100644 index 000000000000..ca021701f0bc --- /dev/null +++ b/site/public/v1/games/train-simulator-ews-class-67-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159828, + "slug": "train-simulator-ews-class-67-loco-add-on", + "name": "Train Simulator: EWS Class 67 Loco Add-On", + "release_date": "2012-08-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105779" + ], + "created_at": "2026-07-10T10:10:47.993526", + "updated_at": "2026-07-10T10:10:47.993526", + "url": "/v1/games/train-simulator-ews-class-67-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-ews-class-92-loco-add-on/index.json b/site/public/v1/games/train-simulator-ews-class-92-loco-add-on/index.json new file mode 100644 index 000000000000..c7fb128e5de7 --- /dev/null +++ b/site/public/v1/games/train-simulator-ews-class-92-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159829, + "slug": "train-simulator-ews-class-92-loco-add-on", + "name": "Train Simulator: EWS Class 92 Loco Add-On", + "release_date": "2014-03-06", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105639" + ], + "created_at": "2026-07-10T10:10:47.993526", + "updated_at": "2026-07-10T10:10:47.993526", + "url": "/v1/games/train-simulator-ews-class-92-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-ews-freightliner-class-08s-loco-add-on/index.json b/site/public/v1/games/train-simulator-ews-freightliner-class-08s-loco-add-on/index.json new file mode 100644 index 000000000000..c40ae1705745 --- /dev/null +++ b/site/public/v1/games/train-simulator-ews-freightliner-class-08s-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159830, + "slug": "train-simulator-ews-freightliner-class-08s-loco-add-on", + "name": "Train Simulator: EWS & Freightliner Class 08s Loco Add-On", + "release_date": "2013-04-25", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105778" + ], + "created_at": "2026-07-10T10:10:47.993526", + "updated_at": "2026-07-10T10:10:47.993526", + "url": "/v1/games/train-simulator-ews-freightliner-class-08s-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-falmouth-branch-route-add-on/index.json b/site/public/v1/games/train-simulator-falmouth-branch-route-add-on/index.json new file mode 100644 index 000000000000..ccc132967390 --- /dev/null +++ b/site/public/v1/games/train-simulator-falmouth-branch-route-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159831, + "slug": "train-simulator-falmouth-branch-route-add-on", + "name": "Train Simulator: Falmouth Branch Route Add-On", + "release_date": "2010-12-17", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105687" + ], + "created_at": "2026-07-10T10:10:47.993526", + "updated_at": "2026-07-10T10:10:47.993526", + "url": "/v1/games/train-simulator-falmouth-branch-route-add-on" +} diff --git a/site/public/v1/games/train-simulator-feather-river-canyon-route-add-on/index.json b/site/public/v1/games/train-simulator-feather-river-canyon-route-add-on/index.json new file mode 100644 index 000000000000..0213aa8d9bdb --- /dev/null +++ b/site/public/v1/games/train-simulator-feather-river-canyon-route-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159832, + "slug": "train-simulator-feather-river-canyon-route-add-on", + "name": "Train Simulator: Feather River Canyon Route Add-On", + "release_date": "2016-02-15", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106012" + ], + "created_at": "2026-07-10T10:10:47.993526", + "updated_at": "2026-07-10T10:10:47.993526", + "url": "/v1/games/train-simulator-feather-river-canyon-route-add-on" +} diff --git a/site/public/v1/games/train-simulator-fife-circle-line-edinburgh-dunfermline-route-add-on/index.json b/site/public/v1/games/train-simulator-fife-circle-line-edinburgh-dunfermline-route-add-on/index.json new file mode 100644 index 000000000000..d93d5cc50f21 --- /dev/null +++ b/site/public/v1/games/train-simulator-fife-circle-line-edinburgh-dunfermline-route-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159833, + "slug": "train-simulator-fife-circle-line-edinburgh-dunfermline-route-add-on", + "name": "Train Simulator: Fife Circle Line: Edinburgh - Dunfermline Route Add-On", + "release_date": "2020-02-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105803" + ], + "created_at": "2026-07-10T10:10:47.993526", + "updated_at": "2026-07-10T10:10:47.993526", + "url": "/v1/games/train-simulator-fife-circle-line-edinburgh-dunfermline-route-add-on" +} diff --git a/site/public/v1/games/train-simulator-first-capital-connect-class-319-emu-add-on/index.json b/site/public/v1/games/train-simulator-first-capital-connect-class-319-emu-add-on/index.json new file mode 100644 index 000000000000..150c324691cc --- /dev/null +++ b/site/public/v1/games/train-simulator-first-capital-connect-class-319-emu-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159834, + "slug": "train-simulator-first-capital-connect-class-319-emu-add-on", + "name": "Train Simulator: First Capital Connect Class 319 EMU Add-On", + "release_date": "2014-03-14", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105489" + ], + "created_at": "2026-07-10T10:10:47.994476", + "updated_at": "2026-07-10T10:10:47.994476", + "url": "/v1/games/train-simulator-first-capital-connect-class-319-emu-add-on" +} diff --git a/site/public/v1/games/train-simulator-first-capital-connect-class-321-emu-add-on/index.json b/site/public/v1/games/train-simulator-first-capital-connect-class-321-emu-add-on/index.json new file mode 100644 index 000000000000..f307c9a08b91 --- /dev/null +++ b/site/public/v1/games/train-simulator-first-capital-connect-class-321-emu-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159835, + "slug": "train-simulator-first-capital-connect-class-321-emu-add-on", + "name": "Train Simulator: First Capital Connect Class 321 EMU Add-On", + "release_date": "2013-12-05", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106226" + ], + "created_at": "2026-07-10T10:10:47.994476", + "updated_at": "2026-07-10T10:10:47.994476", + "url": "/v1/games/train-simulator-first-capital-connect-class-321-emu-add-on" +} diff --git a/site/public/v1/games/train-simulator-first-capital-connect-class-377-emu-add-on/index.json b/site/public/v1/games/train-simulator-first-capital-connect-class-377-emu-add-on/index.json new file mode 100644 index 000000000000..5e81689dc8d9 --- /dev/null +++ b/site/public/v1/games/train-simulator-first-capital-connect-class-377-emu-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159836, + "slug": "train-simulator-first-capital-connect-class-377-emu-add-on", + "name": "Train Simulator: First Capital Connect Class 377 EMU Add-On", + "release_date": "2013-01-17", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105872" + ], + "created_at": "2026-07-10T10:10:47.994476", + "updated_at": "2026-07-10T10:10:47.994476", + "url": "/v1/games/train-simulator-first-capital-connect-class-377-emu-add-on" +} diff --git a/site/public/v1/games/train-simulator-fort-kent-to-eagle-lake-route-add-on/index.json b/site/public/v1/games/train-simulator-fort-kent-to-eagle-lake-route-add-on/index.json new file mode 100644 index 000000000000..2bc22f483f25 --- /dev/null +++ b/site/public/v1/games/train-simulator-fort-kent-to-eagle-lake-route-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159837, + "slug": "train-simulator-fort-kent-to-eagle-lake-route-add-on", + "name": "Train Simulator: Fort Kent to Eagle Lake Route Add-On", + "release_date": "2010-03-19", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "All Aboard" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106256" + ], + "created_at": "2026-07-10T10:10:47.994476", + "updated_at": "2026-07-10T10:10:47.994476", + "url": "/v1/games/train-simulator-fort-kent-to-eagle-lake-route-add-on" +} diff --git a/site/public/v1/games/train-simulator-fowler-4f-loco-add-on/index.json b/site/public/v1/games/train-simulator-fowler-4f-loco-add-on/index.json new file mode 100644 index 000000000000..05d440b647e8 --- /dev/null +++ b/site/public/v1/games/train-simulator-fowler-4f-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159838, + "slug": "train-simulator-fowler-4f-loco-add-on", + "name": "Train Simulator: Fowler 4F Loco Add-On", + "release_date": "2010-06-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105725" + ], + "created_at": "2026-07-10T10:10:47.994476", + "updated_at": "2026-07-10T10:10:47.994476", + "url": "/v1/games/train-simulator-fowler-4f-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-frankfurt-high-speed-frankfurt-karlsruhe-route-extension-add-on/index.json b/site/public/v1/games/train-simulator-frankfurt-high-speed-frankfurt-karlsruhe-route-extension-add-on/index.json new file mode 100644 index 000000000000..e782b5fa534d --- /dev/null +++ b/site/public/v1/games/train-simulator-frankfurt-high-speed-frankfurt-karlsruhe-route-extension-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159839, + "slug": "train-simulator-frankfurt-high-speed-frankfurt-karlsruhe-route-extension-add-on", + "name": "Train Simulator: Frankfurt High Speed: Frankfurt – Karlsruhe Route Extension Add-On", + "release_date": "2018-09-06", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105543" + ], + "created_at": "2026-07-10T10:10:47.995473", + "updated_at": "2026-07-10T10:10:47.995473", + "url": "/v1/games/train-simulator-frankfurt-high-speed-frankfurt-karlsruhe-route-extension-add-on" +} diff --git a/site/public/v1/games/train-simulator-frankfurt-koblenz-route-add-on/index.json b/site/public/v1/games/train-simulator-frankfurt-koblenz-route-add-on/index.json new file mode 100644 index 000000000000..e4ff3d629c57 --- /dev/null +++ b/site/public/v1/games/train-simulator-frankfurt-koblenz-route-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159840, + "slug": "train-simulator-frankfurt-koblenz-route-add-on", + "name": "Train Simulator: Frankfurt - Koblenz Route Add-On", + "release_date": "2020-08-27", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105482" + ], + "created_at": "2026-07-10T10:10:47.995473", + "updated_at": "2026-07-10T10:10:47.995473", + "url": "/v1/games/train-simulator-frankfurt-koblenz-route-add-on" +} diff --git a/site/public/v1/games/train-simulator-frankfurt-s-bahn-rhein-main-route-add-on/index.json b/site/public/v1/games/train-simulator-frankfurt-s-bahn-rhein-main-route-add-on/index.json new file mode 100644 index 000000000000..94c28cecac25 --- /dev/null +++ b/site/public/v1/games/train-simulator-frankfurt-s-bahn-rhein-main-route-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159841, + "slug": "train-simulator-frankfurt-s-bahn-rhein-main-route-add-on", + "name": "Train Simulator: Frankfurt S-Bahn Rhein Main Route Add-On", + "release_date": "2018-10-25", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Just Trains" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105850" + ], + "created_at": "2026-07-10T10:10:47.995473", + "updated_at": "2026-07-10T10:10:47.995473", + "url": "/v1/games/train-simulator-frankfurt-s-bahn-rhein-main-route-add-on" +} diff --git a/site/public/v1/games/train-simulator-frankfurt-u-bahn-route-add-on/index.json b/site/public/v1/games/train-simulator-frankfurt-u-bahn-route-add-on/index.json new file mode 100644 index 000000000000..ae3efea7a777 --- /dev/null +++ b/site/public/v1/games/train-simulator-frankfurt-u-bahn-route-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159842, + "slug": "train-simulator-frankfurt-u-bahn-route-add-on", + "name": "Train Simulator: Frankfurt U-Bahn Route Add-On", + "release_date": "2019-03-15", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Just Trains" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105847" + ], + "created_at": "2026-07-10T10:10:47.995473", + "updated_at": "2026-07-10T10:10:47.995473", + "url": "/v1/games/train-simulator-frankfurt-u-bahn-route-add-on" +} diff --git a/site/public/v1/games/train-simulator-freightliner-class-57-0-loco-add-on/index.json b/site/public/v1/games/train-simulator-freightliner-class-57-0-loco-add-on/index.json new file mode 100644 index 000000000000..9d7346eb0c66 --- /dev/null +++ b/site/public/v1/games/train-simulator-freightliner-class-57-0-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159843, + "slug": "train-simulator-freightliner-class-57-0-loco-add-on", + "name": "Train Simulator: Freightliner Class 57/0 Loco Add-On", + "release_date": "2013-02-14", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Oovee® Game Studios" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106043" + ], + "created_at": "2026-07-10T10:10:47.995473", + "updated_at": "2026-07-10T10:10:47.995473", + "url": "/v1/games/train-simulator-freightliner-class-57-0-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-freightliner-class-66-v2-0-loco-add-on/index.json b/site/public/v1/games/train-simulator-freightliner-class-66-v2-0-loco-add-on/index.json new file mode 100644 index 000000000000..025bc45e0627 --- /dev/null +++ b/site/public/v1/games/train-simulator-freightliner-class-66-v2-0-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159844, + "slug": "train-simulator-freightliner-class-66-v2-0-loco-add-on", + "name": "Train Simulator: Freightliner Class 66 v2.0 Loco Add-On", + "release_date": "2012-12-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105777" + ], + "created_at": "2026-07-10T10:10:47.995473", + "updated_at": "2026-07-10T10:10:47.995473", + "url": "/v1/games/train-simulator-freightliner-class-66-v2-0-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-freightliner-class-70-loco-add-on/index.json b/site/public/v1/games/train-simulator-freightliner-class-70-loco-add-on/index.json new file mode 100644 index 000000000000..1b43ed9956ac --- /dev/null +++ b/site/public/v1/games/train-simulator-freightliner-class-70-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159845, + "slug": "train-simulator-freightliner-class-70-loco-add-on", + "name": "Train Simulator: Freightliner Class 70 Loco Add-On", + "release_date": "2012-03-29", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106214" + ], + "created_at": "2026-07-10T10:10:47.996471", + "updated_at": "2026-07-10T10:10:47.996471", + "url": "/v1/games/train-simulator-freightliner-class-70-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-gatwick-express-br-class-460-juniper-emu-add-on/index.json b/site/public/v1/games/train-simulator-gatwick-express-br-class-460-juniper-emu-add-on/index.json new file mode 100644 index 000000000000..075fb1307f13 --- /dev/null +++ b/site/public/v1/games/train-simulator-gatwick-express-br-class-460-juniper-emu-add-on/index.json @@ -0,0 +1,31 @@ +{ + "id": 159846, + "slug": "train-simulator-gatwick-express-br-class-460-juniper-emu-add-on", + "name": "Train Simulator: Gatwick Express BR Class 460 'Juniper' EMU Add-On", + "release_date": "2017-09-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106027" + ], + "created_at": "2026-07-10T10:10:47.996471", + "updated_at": "2026-07-10T10:10:47.996471", + "url": "/v1/games/train-simulator-gatwick-express-br-class-460-juniper-emu-add-on" +} diff --git a/site/public/v1/games/train-simulator-gatwick-express-class-442-wessex-emu-add-on/index.json b/site/public/v1/games/train-simulator-gatwick-express-class-442-wessex-emu-add-on/index.json new file mode 100644 index 000000000000..a87c2e2eff97 --- /dev/null +++ b/site/public/v1/games/train-simulator-gatwick-express-class-442-wessex-emu-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159847, + "slug": "train-simulator-gatwick-express-class-442-wessex-emu-add-on", + "name": "Train Simulator: Gatwick Express Class 442 'Wessex' EMU Add-On", + "release_date": "2015-05-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105646" + ], + "created_at": "2026-07-10T10:10:47.996471", + "updated_at": "2026-07-10T10:10:47.996471", + "url": "/v1/games/train-simulator-gatwick-express-class-442-wessex-emu-add-on" +} diff --git a/site/public/v1/games/train-simulator-geml-br-class-315-emu-add-on/index.json b/site/public/v1/games/train-simulator-geml-br-class-315-emu-add-on/index.json new file mode 100644 index 000000000000..dbbb6d58884d --- /dev/null +++ b/site/public/v1/games/train-simulator-geml-br-class-315-emu-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159848, + "slug": "train-simulator-geml-br-class-315-emu-add-on", + "name": "Train Simulator: GEML BR Class 315 EMU Add-On", + "release_date": "2018-08-02", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Armstrong Powerhouse" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106064" + ], + "created_at": "2026-07-10T10:10:47.996471", + "updated_at": "2026-07-10T10:10:47.996471", + "url": "/v1/games/train-simulator-geml-br-class-315-emu-add-on" +} diff --git a/site/public/v1/games/train-simulator-geml-class-90-loco-add-on/index.json b/site/public/v1/games/train-simulator-geml-class-90-loco-add-on/index.json new file mode 100644 index 000000000000..8378d316b480 --- /dev/null +++ b/site/public/v1/games/train-simulator-geml-class-90-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159849, + "slug": "train-simulator-geml-class-90-loco-add-on", + "name": "Train Simulator: GEML Class 90 Loco Add-On", + "release_date": "2013-10-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Armstrong Powerhouse" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106246" + ], + "created_at": "2026-07-10T10:10:47.996471", + "updated_at": "2026-07-10T10:10:47.996471", + "url": "/v1/games/train-simulator-geml-class-90-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-giselabahn-saalfelden-w-rgl-route-add-on/index.json b/site/public/v1/games/train-simulator-giselabahn-saalfelden-w-rgl-route-add-on/index.json new file mode 100644 index 000000000000..a1534e848e33 --- /dev/null +++ b/site/public/v1/games/train-simulator-giselabahn-saalfelden-w-rgl-route-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159850, + "slug": "train-simulator-giselabahn-saalfelden-w-rgl-route-add-on", + "name": "Train Simulator: Giselabahn: Saalfelden - Wörgl Route Add-On", + "release_date": "2021-04-09", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "RSSLO" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105624" + ], + "created_at": "2026-07-10T10:10:47.997395", + "updated_at": "2026-07-10T10:10:47.997395", + "url": "/v1/games/train-simulator-giselabahn-saalfelden-w-rgl-route-add-on" +} diff --git a/site/public/v1/games/train-simulator-glasgow-airport-rail-link-route-add-on/index.json b/site/public/v1/games/train-simulator-glasgow-airport-rail-link-route-add-on/index.json new file mode 100644 index 000000000000..037ab795ba31 --- /dev/null +++ b/site/public/v1/games/train-simulator-glasgow-airport-rail-link-route-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159851, + "slug": "train-simulator-glasgow-airport-rail-link-route-add-on", + "name": "Train Simulator: Glasgow Airport Rail Link Route Add-On", + "release_date": "2012-02-16", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Thomson Interactive" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105799" + ], + "created_at": "2026-07-10T10:10:47.997395", + "updated_at": "2026-07-10T10:10:47.997395", + "url": "/v1/games/train-simulator-glasgow-airport-rail-link-route-add-on" +} diff --git a/site/public/v1/games/train-simulator-gotthardbahn-alpine-classic-erstfeld-bellinzona-route-add-on/index.json b/site/public/v1/games/train-simulator-gotthardbahn-alpine-classic-erstfeld-bellinzona-route-add-on/index.json new file mode 100644 index 000000000000..3ef504cec71c --- /dev/null +++ b/site/public/v1/games/train-simulator-gotthardbahn-alpine-classic-erstfeld-bellinzona-route-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159852, + "slug": "train-simulator-gotthardbahn-alpine-classic-erstfeld-bellinzona-route-add-on", + "name": "Train Simulator: Gotthardbahn Alpine Classic: Erstfeld – Bellinzona Route Add-On", + "release_date": "2019-08-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Rivet Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105520" + ], + "created_at": "2026-07-10T10:10:47.997395", + "updated_at": "2026-07-10T10:10:47.997395", + "url": "/v1/games/train-simulator-gotthardbahn-alpine-classic-erstfeld-bellinzona-route-add-on" +} diff --git a/site/public/v1/games/train-simulator-gp40-2-loco-pack-add-on/index.json b/site/public/v1/games/train-simulator-gp40-2-loco-pack-add-on/index.json new file mode 100644 index 000000000000..ad951b1b6ad9 --- /dev/null +++ b/site/public/v1/games/train-simulator-gp40-2-loco-pack-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159853, + "slug": "train-simulator-gp40-2-loco-pack-add-on", + "name": "Train Simulator: GP40-2 Loco Pack Add-On", + "release_date": "2018-06-21", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105843" + ], + "created_at": "2026-07-10T10:10:47.997395", + "updated_at": "2026-07-10T10:10:47.997395", + "url": "/v1/games/train-simulator-gp40-2-loco-pack-add-on" +} diff --git a/site/public/v1/games/train-simulator-grand-central-class-180-adelante-dmu-add-on/index.json b/site/public/v1/games/train-simulator-grand-central-class-180-adelante-dmu-add-on/index.json new file mode 100644 index 000000000000..bf0661ddcb79 --- /dev/null +++ b/site/public/v1/games/train-simulator-grand-central-class-180-adelante-dmu-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159854, + "slug": "train-simulator-grand-central-class-180-adelante-dmu-add-on", + "name": "Train Simulator: Grand Central Class 180 'Adelante' DMU Add-On", + "release_date": "2015-03-26", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106178" + ], + "created_at": "2026-07-10T10:10:47.997395", + "updated_at": "2026-07-10T10:10:47.997395", + "url": "/v1/games/train-simulator-grand-central-class-180-adelante-dmu-add-on" +} diff --git a/site/public/v1/games/train-simulator-granger-heartland-kansas-city-topeka-route-add-on/index.json b/site/public/v1/games/train-simulator-granger-heartland-kansas-city-topeka-route-add-on/index.json new file mode 100644 index 000000000000..2fb3018a5821 --- /dev/null +++ b/site/public/v1/games/train-simulator-granger-heartland-kansas-city-topeka-route-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159855, + "slug": "train-simulator-granger-heartland-kansas-city-topeka-route-add-on", + "name": "Train Simulator: Granger Heartland: Kansas City – Topeka Route Add-On", + "release_date": "2019-10-31", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105476" + ], + "created_at": "2026-07-10T10:10:47.997395", + "updated_at": "2026-07-10T10:10:47.997395", + "url": "/v1/games/train-simulator-granger-heartland-kansas-city-topeka-route-add-on" +} diff --git a/site/public/v1/games/train-simulator-great-eastern-main-line-london-ipswich-route-add-on/index.json b/site/public/v1/games/train-simulator-great-eastern-main-line-london-ipswich-route-add-on/index.json new file mode 100644 index 000000000000..653a4ebd0b29 --- /dev/null +++ b/site/public/v1/games/train-simulator-great-eastern-main-line-london-ipswich-route-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159856, + "slug": "train-simulator-great-eastern-main-line-london-ipswich-route-add-on", + "name": "Train Simulator: Great Eastern Main Line London-Ipswich Route Add-On", + "release_date": "2013-08-23", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105770" + ], + "created_at": "2026-07-10T10:10:47.998469", + "updated_at": "2026-07-10T10:10:47.998469", + "url": "/v1/games/train-simulator-great-eastern-main-line-london-ipswich-route-add-on" +} diff --git a/site/public/v1/games/train-simulator-great-western-main-line-route-add-on/index.json b/site/public/v1/games/train-simulator-great-western-main-line-route-add-on/index.json new file mode 100644 index 000000000000..ce8a49bff6f4 --- /dev/null +++ b/site/public/v1/games/train-simulator-great-western-main-line-route-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159857, + "slug": "train-simulator-great-western-main-line-route-add-on", + "name": "Train Simulator: Great Western Main Line Route Add-On", + "release_date": "2012-09-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105769" + ], + "created_at": "2026-07-10T10:10:48.000395", + "updated_at": "2026-07-10T10:10:48.000395", + "url": "/v1/games/train-simulator-great-western-main-line-route-add-on" +} diff --git a/site/public/v1/games/train-simulator-green-gold-hst-dmu-add-on/index.json b/site/public/v1/games/train-simulator-green-gold-hst-dmu-add-on/index.json new file mode 100644 index 000000000000..b825dd0b3c90 --- /dev/null +++ b/site/public/v1/games/train-simulator-green-gold-hst-dmu-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159858, + "slug": "train-simulator-green-gold-hst-dmu-add-on", + "name": "Train Simulator: Green & Gold HST DMU Add-On", + "release_date": "2010-09-17", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106271" + ], + "created_at": "2026-07-10T10:10:48.001395", + "updated_at": "2026-07-10T10:10:48.001395", + "url": "/v1/games/train-simulator-green-gold-hst-dmu-add-on" +} diff --git a/site/public/v1/games/train-simulator-guiguang-high-speed-railway-guilin-hezhou-route-add-on/index.json b/site/public/v1/games/train-simulator-guiguang-high-speed-railway-guilin-hezhou-route-add-on/index.json new file mode 100644 index 000000000000..41f5753953e7 --- /dev/null +++ b/site/public/v1/games/train-simulator-guiguang-high-speed-railway-guilin-hezhou-route-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159859, + "slug": "train-simulator-guiguang-high-speed-railway-guilin-hezhou-route-add-on", + "name": "Train Simulator: Guiguang High Speed Railway: Guilin - Hezhou Route Add-On", + "release_date": "2019-06-19", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Union Workshop" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105722" + ], + "created_at": "2026-07-10T10:10:48.001395", + "updated_at": "2026-07-10T10:10:48.001395", + "url": "/v1/games/train-simulator-guiguang-high-speed-railway-guilin-hezhou-route-add-on" +} diff --git a/site/public/v1/games/train-simulator-gwr-1000-class-county-class-steam-loco-add-on/index.json b/site/public/v1/games/train-simulator-gwr-1000-class-county-class-steam-loco-add-on/index.json new file mode 100644 index 000000000000..ae9c6a3977bd --- /dev/null +++ b/site/public/v1/games/train-simulator-gwr-1000-class-county-class-steam-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159860, + "slug": "train-simulator-gwr-1000-class-county-class-steam-loco-add-on", + "name": "Train Simulator: GWR 1000 Class 'County Class' Steam Loco Add-On", + "release_date": "2018-06-15", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Victory Works" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106028" + ], + "created_at": "2026-07-10T10:10:48.001395", + "updated_at": "2026-07-10T10:10:48.001395", + "url": "/v1/games/train-simulator-gwr-1000-class-county-class-steam-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-gwr-4200-5205-7200-2-8-0t-pack/index.json b/site/public/v1/games/train-simulator-gwr-4200-5205-7200-2-8-0t-pack/index.json new file mode 100644 index 000000000000..c8850a4a5b75 --- /dev/null +++ b/site/public/v1/games/train-simulator-gwr-4200-5205-7200-2-8-0t-pack/index.json @@ -0,0 +1,33 @@ +{ + "id": 159861, + "slug": "train-simulator-gwr-4200-5205-7200-2-8-0t-pack", + "name": "Train Simulator: GWR 4200/5205/7200 2-8-0T Pack", + "release_date": "2021-02-25", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Victory Works" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105752" + ], + "created_at": "2026-07-10T10:10:48.001395", + "updated_at": "2026-07-10T10:10:48.002395", + "url": "/v1/games/train-simulator-gwr-4200-5205-7200-2-8-0t-pack" +} diff --git a/site/public/v1/games/train-simulator-gwr-56xx-loco-add-on/index.json b/site/public/v1/games/train-simulator-gwr-56xx-loco-add-on/index.json new file mode 100644 index 000000000000..8d077c0050d9 --- /dev/null +++ b/site/public/v1/games/train-simulator-gwr-56xx-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159862, + "slug": "train-simulator-gwr-56xx-loco-add-on", + "name": "Train Simulator: GWR 56XX Loco Add-On", + "release_date": "2013-11-21", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Victory Works" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106244" + ], + "created_at": "2026-07-10T10:10:48.002395", + "updated_at": "2026-07-10T10:10:48.002395", + "url": "/v1/games/train-simulator-gwr-56xx-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-gwr-7800-manor-class-add-on/index.json b/site/public/v1/games/train-simulator-gwr-7800-manor-class-add-on/index.json new file mode 100644 index 000000000000..d57bd08c2828 --- /dev/null +++ b/site/public/v1/games/train-simulator-gwr-7800-manor-class-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159863, + "slug": "train-simulator-gwr-7800-manor-class-add-on", + "name": "Train Simulator: GWR 7800 'Manor' class Add-On", + "release_date": "2020-04-02", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Just Trains" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106434" + ], + "created_at": "2026-07-10T10:10:48.002395", + "updated_at": "2026-07-10T10:10:48.002395", + "url": "/v1/games/train-simulator-gwr-7800-manor-class-add-on" +} diff --git a/site/public/v1/games/train-simulator-gwr-class-14xx-loco-add-on/index.json b/site/public/v1/games/train-simulator-gwr-class-14xx-loco-add-on/index.json new file mode 100644 index 000000000000..2b33750f6eef --- /dev/null +++ b/site/public/v1/games/train-simulator-gwr-class-14xx-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159864, + "slug": "train-simulator-gwr-class-14xx-loco-add-on", + "name": "Train Simulator: GWR Class 14XX Loco Add-On", + "release_date": "2014-10-09", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Victory Works" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106072" + ], + "created_at": "2026-07-10T10:10:48.003395", + "updated_at": "2026-07-10T10:10:48.003395", + "url": "/v1/games/train-simulator-gwr-class-14xx-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-gwr-large-prairies-steam-loco-add-on/index.json b/site/public/v1/games/train-simulator-gwr-large-prairies-steam-loco-add-on/index.json new file mode 100644 index 000000000000..e364cf315e90 --- /dev/null +++ b/site/public/v1/games/train-simulator-gwr-large-prairies-steam-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159865, + "slug": "train-simulator-gwr-large-prairies-steam-loco-add-on", + "name": "Train Simulator: GWR Large Prairies Steam Loco Add-On", + "release_date": "2017-10-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Victory Works" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106123" + ], + "created_at": "2026-07-10T10:10:48.003395", + "updated_at": "2026-07-10T10:10:48.003395", + "url": "/v1/games/train-simulator-gwr-large-prairies-steam-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-gwr-nunney-castle-steam-loco-add-on/index.json b/site/public/v1/games/train-simulator-gwr-nunney-castle-steam-loco-add-on/index.json new file mode 100644 index 000000000000..3a6fef7ea4be --- /dev/null +++ b/site/public/v1/games/train-simulator-gwr-nunney-castle-steam-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159866, + "slug": "train-simulator-gwr-nunney-castle-steam-loco-add-on", + "name": "Train Simulator: GWR Nunney Castle Steam Loco Add-On", + "release_date": "2017-03-09", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Bossman Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106274" + ], + "created_at": "2026-07-10T10:10:48.003395", + "updated_at": "2026-07-10T10:10:48.003395", + "url": "/v1/games/train-simulator-gwr-nunney-castle-steam-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-gwr-pannier-tank-pack-add-on/index.json b/site/public/v1/games/train-simulator-gwr-pannier-tank-pack-add-on/index.json new file mode 100644 index 000000000000..5c95dbd9cf9d --- /dev/null +++ b/site/public/v1/games/train-simulator-gwr-pannier-tank-pack-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159867, + "slug": "train-simulator-gwr-pannier-tank-pack-add-on", + "name": "Train Simulator: GWR Pannier Tank Pack Add-On", + "release_date": "2019-01-08", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Victory Works" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105950" + ], + "created_at": "2026-07-10T10:10:48.003395", + "updated_at": "2026-07-10T10:10:48.003395", + "url": "/v1/games/train-simulator-gwr-pannier-tank-pack-add-on" +} diff --git a/site/public/v1/games/train-simulator-gwr-saint-class-travelling-post-office-loco-add-on/index.json b/site/public/v1/games/train-simulator-gwr-saint-class-travelling-post-office-loco-add-on/index.json new file mode 100644 index 000000000000..45c3d34c7c5c --- /dev/null +++ b/site/public/v1/games/train-simulator-gwr-saint-class-travelling-post-office-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159868, + "slug": "train-simulator-gwr-saint-class-travelling-post-office-loco-add-on", + "name": "Train Simulator: GWR Saint Class & Travelling Post Office Loco Add-On", + "release_date": "2016-09-08", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Victory Works" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106071" + ], + "created_at": "2026-07-10T10:10:48.003395", + "updated_at": "2026-07-10T10:10:48.003395", + "url": "/v1/games/train-simulator-gwr-saint-class-travelling-post-office-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-gwr-small-prairies-loco-add-on/index.json b/site/public/v1/games/train-simulator-gwr-small-prairies-loco-add-on/index.json new file mode 100644 index 000000000000..61d0489437ec --- /dev/null +++ b/site/public/v1/games/train-simulator-gwr-small-prairies-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159869, + "slug": "train-simulator-gwr-small-prairies-loco-add-on", + "name": "Train Simulator: GWR Small Prairies Loco Add-On", + "release_date": "2014-12-10", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Victory Works" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106069" + ], + "created_at": "2026-07-10T10:10:48.003395", + "updated_at": "2026-07-10T10:10:48.003395", + "url": "/v1/games/train-simulator-gwr-small-prairies-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-gwr-star-loco-add-on/index.json b/site/public/v1/games/train-simulator-gwr-star-loco-add-on/index.json new file mode 100644 index 000000000000..38aba30295c9 --- /dev/null +++ b/site/public/v1/games/train-simulator-gwr-star-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159870, + "slug": "train-simulator-gwr-star-loco-add-on", + "name": "Train Simulator: GWR Star Loco Add-On", + "release_date": "2016-07-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Skyhook Games Studio" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106162" + ], + "created_at": "2026-07-10T10:10:48.004395", + "updated_at": "2026-07-10T10:10:48.004395", + "url": "/v1/games/train-simulator-gwr-star-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-gwr-steam-railmotor-loco-add-on/index.json b/site/public/v1/games/train-simulator-gwr-steam-railmotor-loco-add-on/index.json new file mode 100644 index 000000000000..63eea9042dc7 --- /dev/null +++ b/site/public/v1/games/train-simulator-gwr-steam-railmotor-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159871, + "slug": "train-simulator-gwr-steam-railmotor-loco-add-on", + "name": "Train Simulator: GWR Steam Railmotor Loco Add-On", + "release_date": "2014-02-06", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Victory Works" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106273" + ], + "created_at": "2026-07-10T10:10:48.004395", + "updated_at": "2026-07-10T10:10:48.004395", + "url": "/v1/games/train-simulator-gwr-steam-railmotor-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-hamburg-hanover-route-add-on/index.json b/site/public/v1/games/train-simulator-hamburg-hanover-route-add-on/index.json new file mode 100644 index 000000000000..f4035fe51be6 --- /dev/null +++ b/site/public/v1/games/train-simulator-hamburg-hanover-route-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159872, + "slug": "train-simulator-hamburg-hanover-route-add-on", + "name": "Train Simulator: Hamburg-Hanover Route Add-On", + "release_date": "2013-07-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105521" + ], + "created_at": "2026-07-10T10:10:48.004395", + "updated_at": "2026-07-10T10:10:48.004395", + "url": "/v1/games/train-simulator-hamburg-hanover-route-add-on" +} diff --git a/site/public/v1/games/train-simulator-hamburg-l-beck-railway-route-add-on/index.json b/site/public/v1/games/train-simulator-hamburg-l-beck-railway-route-add-on/index.json new file mode 100644 index 000000000000..db513dd059a2 --- /dev/null +++ b/site/public/v1/games/train-simulator-hamburg-l-beck-railway-route-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159873, + "slug": "train-simulator-hamburg-l-beck-railway-route-add-on", + "name": "Train Simulator: Hamburg-Lübeck Railway Route Add-On", + "release_date": "2016-01-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105630" + ], + "created_at": "2026-07-10T10:10:48.004395", + "updated_at": "2026-07-10T10:10:48.004395", + "url": "/v1/games/train-simulator-hamburg-l-beck-railway-route-add-on" +} diff --git a/site/public/v1/games/train-simulator-hamburg-s1-s-bahn-route-add-on/index.json b/site/public/v1/games/train-simulator-hamburg-s1-s-bahn-route-add-on/index.json new file mode 100644 index 000000000000..58979bb8edbc --- /dev/null +++ b/site/public/v1/games/train-simulator-hamburg-s1-s-bahn-route-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159874, + "slug": "train-simulator-hamburg-s1-s-bahn-route-add-on", + "name": "Train Simulator: Hamburg S1 S-Bahn Route Add-On", + "release_date": "2016-11-10", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105621" + ], + "created_at": "2026-07-10T10:10:48.004395", + "updated_at": "2026-07-10T10:10:48.004395", + "url": "/v1/games/train-simulator-hamburg-s1-s-bahn-route-add-on" +} diff --git a/site/public/v1/games/train-simulator-hidaka-main-line-tomakomai-hidaka-mombetsu-route-add-on/index.json b/site/public/v1/games/train-simulator-hidaka-main-line-tomakomai-hidaka-mombetsu-route-add-on/index.json new file mode 100644 index 000000000000..c111d8c129bd --- /dev/null +++ b/site/public/v1/games/train-simulator-hidaka-main-line-tomakomai-hidaka-mombetsu-route-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159875, + "slug": "train-simulator-hidaka-main-line-tomakomai-hidaka-mombetsu-route-add-on", + "name": "Train Simulator: Hidaka Main Line: Tomakomai - Hidaka-Mombetsu Route Add-On", + "release_date": "2017-10-05", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Union Workshop" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105720" + ], + "created_at": "2026-07-10T10:10:48.004395", + "updated_at": "2026-07-10T10:10:48.004395", + "url": "/v1/games/train-simulator-hidaka-main-line-tomakomai-hidaka-mombetsu-route-add-on" +} diff --git a/site/public/v1/games/train-simulator-horseshoe-curve-route-add-on/index.json b/site/public/v1/games/train-simulator-horseshoe-curve-route-add-on/index.json new file mode 100644 index 000000000000..d095c3478a96 --- /dev/null +++ b/site/public/v1/games/train-simulator-horseshoe-curve-route-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159876, + "slug": "train-simulator-horseshoe-curve-route-add-on", + "name": "Train Simulator: Horseshoe Curve Route Add-On", + "release_date": "2011-09-23", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105522" + ], + "created_at": "2026-07-10T10:10:48.005395", + "updated_at": "2026-07-10T10:10:48.005395", + "url": "/v1/games/train-simulator-horseshoe-curve-route-add-on" +} diff --git a/site/public/v1/games/train-simulator-hudson-line-new-york-croton-harmon-route-add-on/index.json b/site/public/v1/games/train-simulator-hudson-line-new-york-croton-harmon-route-add-on/index.json new file mode 100644 index 000000000000..acdb101f0139 --- /dev/null +++ b/site/public/v1/games/train-simulator-hudson-line-new-york-croton-harmon-route-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159877, + "slug": "train-simulator-hudson-line-new-york-croton-harmon-route-add-on", + "name": "Train Simulator: Hudson Line: New York – Croton-Harmon Route Add-On", + "release_date": "2019-03-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105514" + ], + "created_at": "2026-07-10T10:10:48.005395", + "updated_at": "2026-07-10T10:10:48.005395", + "url": "/v1/games/train-simulator-hudson-line-new-york-croton-harmon-route-add-on" +} diff --git a/site/public/v1/games/train-simulator-im-k-blitzer-bergland-route-add-on/index.json b/site/public/v1/games/train-simulator-im-k-blitzer-bergland-route-add-on/index.json new file mode 100644 index 000000000000..c18bc411fcd8 --- /dev/null +++ b/site/public/v1/games/train-simulator-im-k-blitzer-bergland-route-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159878, + "slug": "train-simulator-im-k-blitzer-bergland-route-add-on", + "name": "Train Simulator: Im Köblitzer Bergland Route Add-On", + "release_date": "2020-02-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Aerosoft" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105807" + ], + "created_at": "2026-07-10T10:10:48.005395", + "updated_at": "2026-07-10T10:10:48.005395", + "url": "/v1/games/train-simulator-im-k-blitzer-bergland-route-add-on" +} diff --git a/site/public/v1/games/train-simulator-inselbahn-stralsund-sassnitz-route-add-on/index.json b/site/public/v1/games/train-simulator-inselbahn-stralsund-sassnitz-route-add-on/index.json new file mode 100644 index 000000000000..19962b03f11f --- /dev/null +++ b/site/public/v1/games/train-simulator-inselbahn-stralsund-sassnitz-route-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159879, + "slug": "train-simulator-inselbahn-stralsund-sassnitz-route-add-on", + "name": "Train Simulator: Inselbahn: Stralsund – Sassnitz Route Add-On", + "release_date": "2019-04-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105570" + ], + "created_at": "2026-07-10T10:10:48.005395", + "updated_at": "2026-07-10T10:10:48.005395", + "url": "/v1/games/train-simulator-inselbahn-stralsund-sassnitz-route-add-on" +} diff --git a/site/public/v1/games/train-simulator-intercity-br-class-370-apt-p-loco-add-on/index.json b/site/public/v1/games/train-simulator-intercity-br-class-370-apt-p-loco-add-on/index.json new file mode 100644 index 000000000000..ef17ee190696 --- /dev/null +++ b/site/public/v1/games/train-simulator-intercity-br-class-370-apt-p-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159880, + "slug": "train-simulator-intercity-br-class-370-apt-p-loco-add-on", + "name": "Train Simulator: InterCity BR Class 370 ‘APT-P’ Loco Add-On", + "release_date": "2017-12-15", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105483" + ], + "created_at": "2026-07-10T10:10:48.005395", + "updated_at": "2026-07-10T10:10:48.005395", + "url": "/v1/games/train-simulator-intercity-br-class-370-apt-p-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-intercity-br-class-89-badger-loco-add-on/index.json b/site/public/v1/games/train-simulator-intercity-br-class-89-badger-loco-add-on/index.json new file mode 100644 index 000000000000..5f984b8c99f7 --- /dev/null +++ b/site/public/v1/games/train-simulator-intercity-br-class-89-badger-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159881, + "slug": "train-simulator-intercity-br-class-89-badger-loco-add-on", + "name": "Train Simulator: InterCity BR Class 89 ‘Badger’ Loco Add-On", + "release_date": "2020-03-19", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105696" + ], + "created_at": "2026-07-10T10:10:48.006395", + "updated_at": "2026-07-10T10:10:48.006395", + "url": "/v1/games/train-simulator-intercity-br-class-89-badger-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-intercity-class-91-loco-add-on/index.json b/site/public/v1/games/train-simulator-intercity-class-91-loco-add-on/index.json new file mode 100644 index 000000000000..faf6805ba7f3 --- /dev/null +++ b/site/public/v1/games/train-simulator-intercity-class-91-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159882, + "slug": "train-simulator-intercity-class-91-loco-add-on", + "name": "Train Simulator: InterCity Class 91 Loco Add-On", + "release_date": "2014-02-26", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106124" + ], + "created_at": "2026-07-10T10:10:48.006395", + "updated_at": "2026-07-10T10:10:48.006395", + "url": "/v1/games/train-simulator-intercity-class-91-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-isle-of-wight-route-add-on/index.json b/site/public/v1/games/train-simulator-isle-of-wight-route-add-on/index.json new file mode 100644 index 000000000000..6bef602bc588 --- /dev/null +++ b/site/public/v1/games/train-simulator-isle-of-wight-route-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159883, + "slug": "train-simulator-isle-of-wight-route-add-on", + "name": "Train Simulator: Isle of Wight Route Add-On", + "release_date": "2012-06-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105689" + ], + "created_at": "2026-07-10T10:10:48.006395", + "updated_at": "2026-07-10T10:10:48.006395", + "url": "/v1/games/train-simulator-isle-of-wight-route-add-on" +} diff --git a/site/public/v1/games/train-simulator-k-ln-airport-link-route-extension-add-on/index.json b/site/public/v1/games/train-simulator-k-ln-airport-link-route-extension-add-on/index.json new file mode 100644 index 000000000000..88f6706db4c5 --- /dev/null +++ b/site/public/v1/games/train-simulator-k-ln-airport-link-route-extension-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159884, + "slug": "train-simulator-k-ln-airport-link-route-extension-add-on", + "name": "Train Simulator: Köln Airport Link Route Extension Add-On", + "release_date": "2018-05-03", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105581" + ], + "created_at": "2026-07-10T10:10:48.006395", + "updated_at": "2026-07-10T10:10:48.006395", + "url": "/v1/games/train-simulator-k-ln-airport-link-route-extension-add-on" +} diff --git a/site/public/v1/games/train-simulator-karawankenbahn-ljubljana-villach-tarvisio-route-add-on/index.json b/site/public/v1/games/train-simulator-karawankenbahn-ljubljana-villach-tarvisio-route-add-on/index.json new file mode 100644 index 000000000000..634d837a850f --- /dev/null +++ b/site/public/v1/games/train-simulator-karawankenbahn-ljubljana-villach-tarvisio-route-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159885, + "slug": "train-simulator-karawankenbahn-ljubljana-villach-tarvisio-route-add-on", + "name": "Train Simulator: Karawankenbahn: Ljubljana, Villach & Tarvisio Route Add-On", + "release_date": "2020-11-19", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "RSSLO" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105702" + ], + "created_at": "2026-07-10T10:10:48.006395", + "updated_at": "2026-07-10T10:10:48.006395", + "url": "/v1/games/train-simulator-karawankenbahn-ljubljana-villach-tarvisio-route-add-on" +} diff --git a/site/public/v1/games/train-simulator-konstanz-villingen-route-add-on/index.json b/site/public/v1/games/train-simulator-konstanz-villingen-route-add-on/index.json new file mode 100644 index 000000000000..9e337b372b7a --- /dev/null +++ b/site/public/v1/games/train-simulator-konstanz-villingen-route-add-on/index.json @@ -0,0 +1,31 @@ +{ + "id": 159886, + "slug": "train-simulator-konstanz-villingen-route-add-on", + "name": "Train Simulator: Konstanz-Villingen Route Add-On", + "release_date": "2017-11-02", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105965" + ], + "created_at": "2026-07-10T10:10:48.006395", + "updated_at": "2026-07-10T10:10:48.006395", + "url": "/v1/games/train-simulator-konstanz-villingen-route-add-on" +} diff --git a/site/public/v1/games/train-simulator-konstanz-villingen-route-extension-villingen-hausach-add-on/index.json b/site/public/v1/games/train-simulator-konstanz-villingen-route-extension-villingen-hausach-add-on/index.json new file mode 100644 index 000000000000..be37590d9bdc --- /dev/null +++ b/site/public/v1/games/train-simulator-konstanz-villingen-route-extension-villingen-hausach-add-on/index.json @@ -0,0 +1,31 @@ +{ + "id": 159887, + "slug": "train-simulator-konstanz-villingen-route-extension-villingen-hausach-add-on", + "name": "Train Simulator: Konstanz - Villingen Route Extension: Villingen - Hausach Add-On", + "release_date": "2020-04-09", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105833" + ], + "created_at": "2026-07-10T10:10:48.007395", + "updated_at": "2026-07-10T10:10:48.007395", + "url": "/v1/games/train-simulator-konstanz-villingen-route-extension-villingen-hausach-add-on" +} diff --git a/site/public/v1/games/train-simulator-kwazulu-natal-corridor-pietermaritzburg-ladysmith-add-on/index.json b/site/public/v1/games/train-simulator-kwazulu-natal-corridor-pietermaritzburg-ladysmith-add-on/index.json new file mode 100644 index 000000000000..1e0b0bc4a34f --- /dev/null +++ b/site/public/v1/games/train-simulator-kwazulu-natal-corridor-pietermaritzburg-ladysmith-add-on/index.json @@ -0,0 +1,31 @@ +{ + "id": 159888, + "slug": "train-simulator-kwazulu-natal-corridor-pietermaritzburg-ladysmith-add-on", + "name": "Train Simulator: KwaZulu-Natal Corridor: Pietermaritzburg-Ladysmith Add-On", + "release_date": "2014-07-10", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106237" + ], + "created_at": "2026-07-10T10:10:48.007395", + "updated_at": "2026-07-10T10:10:48.007395", + "url": "/v1/games/train-simulator-kwazulu-natal-corridor-pietermaritzburg-ladysmith-add-on" +} diff --git a/site/public/v1/games/train-simulator-lake-constance-schaffhausen-kreuzlingen-route-add-on/index.json b/site/public/v1/games/train-simulator-lake-constance-schaffhausen-kreuzlingen-route-add-on/index.json new file mode 100644 index 000000000000..5b7dbbf05b1b --- /dev/null +++ b/site/public/v1/games/train-simulator-lake-constance-schaffhausen-kreuzlingen-route-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159889, + "slug": "train-simulator-lake-constance-schaffhausen-kreuzlingen-route-add-on", + "name": "Train Simulator: Lake Constance: Schaffhausen – Kreuzlingen Route Add-On", + "release_date": "2020-03-20", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Rivet Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105590" + ], + "created_at": "2026-07-10T10:10:48.007395", + "updated_at": "2026-07-10T10:10:48.007395", + "url": "/v1/games/train-simulator-lake-constance-schaffhausen-kreuzlingen-route-add-on" +} diff --git a/site/public/v1/games/train-simulator-lgv-marseille-avignon-route-add-on/index.json b/site/public/v1/games/train-simulator-lgv-marseille-avignon-route-add-on/index.json new file mode 100644 index 000000000000..e539890bcd63 --- /dev/null +++ b/site/public/v1/games/train-simulator-lgv-marseille-avignon-route-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159890, + "slug": "train-simulator-lgv-marseille-avignon-route-add-on", + "name": "Train Simulator: LGV: Marseille - Avignon Route Add-On", + "release_date": "2016-04-21", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105579" + ], + "created_at": "2026-07-10T10:10:48.007395", + "updated_at": "2026-07-10T10:10:48.007395", + "url": "/v1/games/train-simulator-lgv-marseille-avignon-route-add-on" +} diff --git a/site/public/v1/games/train-simulator-lgv-rh-ne-alpes-m-diterran-e-route-extension-add-on/index.json b/site/public/v1/games/train-simulator-lgv-rh-ne-alpes-m-diterran-e-route-extension-add-on/index.json new file mode 100644 index 000000000000..d3066dd3f4e5 --- /dev/null +++ b/site/public/v1/games/train-simulator-lgv-rh-ne-alpes-m-diterran-e-route-extension-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159891, + "slug": "train-simulator-lgv-rh-ne-alpes-m-diterran-e-route-extension-add-on", + "name": "Train Simulator: LGV Rhône-Alpes & Méditerranée Route Extension Add-On", + "release_date": "2018-12-06", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105580" + ], + "created_at": "2026-07-10T10:10:48.007395", + "updated_at": "2026-07-10T10:10:48.007395", + "url": "/v1/games/train-simulator-lgv-rh-ne-alpes-m-diterran-e-route-extension-add-on" +} diff --git a/site/public/v1/games/train-simulator-liverpool-manchester-route-add-on/index.json b/site/public/v1/games/train-simulator-liverpool-manchester-route-add-on/index.json new file mode 100644 index 000000000000..811883f89bd8 --- /dev/null +++ b/site/public/v1/games/train-simulator-liverpool-manchester-route-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159892, + "slug": "train-simulator-liverpool-manchester-route-add-on", + "name": "Train Simulator: Liverpool-Manchester Route Add-On", + "release_date": "2014-08-14", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105562" + ], + "created_at": "2026-07-10T10:10:48.007395", + "updated_at": "2026-07-10T10:10:48.007395", + "url": "/v1/games/train-simulator-liverpool-manchester-route-add-on" +} diff --git a/site/public/v1/games/train-simulator-livonia-division-monroe-subdivision-route-add-on/index.json b/site/public/v1/games/train-simulator-livonia-division-monroe-subdivision-route-add-on/index.json new file mode 100644 index 000000000000..5365a83fb1e6 --- /dev/null +++ b/site/public/v1/games/train-simulator-livonia-division-monroe-subdivision-route-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159893, + "slug": "train-simulator-livonia-division-monroe-subdivision-route-add-on", + "name": "Train Simulator: Livonia Division: Monroe - Subdivision Route Add-On", + "release_date": "2020-02-21", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Skyhook Games Studio" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106045" + ], + "created_at": "2026-07-10T10:10:48.008395", + "updated_at": "2026-07-10T10:10:48.008395", + "url": "/v1/games/train-simulator-livonia-division-monroe-subdivision-route-add-on" +} diff --git a/site/public/v1/games/train-simulator-lms-5xp-jubilee-class-steam-loco-add-on/index.json b/site/public/v1/games/train-simulator-lms-5xp-jubilee-class-steam-loco-add-on/index.json new file mode 100644 index 000000000000..a92f60070bb7 --- /dev/null +++ b/site/public/v1/games/train-simulator-lms-5xp-jubilee-class-steam-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159894, + "slug": "train-simulator-lms-5xp-jubilee-class-steam-loco-add-on", + "name": "Train Simulator: LMS 5XP Jubilee Class Steam Loco Add-On", + "release_date": "2018-11-29", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Bossman Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106014" + ], + "created_at": "2026-07-10T10:10:48.008395", + "updated_at": "2026-07-10T10:10:48.008395", + "url": "/v1/games/train-simulator-lms-5xp-jubilee-class-steam-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-lms-class-3f-jinty-loco-add-on/index.json b/site/public/v1/games/train-simulator-lms-class-3f-jinty-loco-add-on/index.json new file mode 100644 index 000000000000..539eeaf5915a --- /dev/null +++ b/site/public/v1/games/train-simulator-lms-class-3f-jinty-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159895, + "slug": "train-simulator-lms-class-3f-jinty-loco-add-on", + "name": "Train Simulator: LMS Class 3F ‘Jinty’ Loco Add-On", + "release_date": "2013-05-16", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "MeshTools" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105888" + ], + "created_at": "2026-07-10T10:10:48.008395", + "updated_at": "2026-07-10T10:10:48.008395", + "url": "/v1/games/train-simulator-lms-class-3f-jinty-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-lms-coronation-class-duchess-of-hamilton-loco-add-on/index.json b/site/public/v1/games/train-simulator-lms-coronation-class-duchess-of-hamilton-loco-add-on/index.json new file mode 100644 index 000000000000..bd1c0f52dab1 --- /dev/null +++ b/site/public/v1/games/train-simulator-lms-coronation-class-duchess-of-hamilton-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159896, + "slug": "train-simulator-lms-coronation-class-duchess-of-hamilton-loco-add-on", + "name": "Train Simulator: LMS Coronation Class \"Duchess of Hamilton\" Loco Add-On", + "release_date": "2015-11-19", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106213" + ], + "created_at": "2026-07-10T10:10:48.008395", + "updated_at": "2026-07-10T10:10:48.008395", + "url": "/v1/games/train-simulator-lms-coronation-class-duchess-of-hamilton-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-lms-rebuilt-patriot-class-steam-loco-add-on/index.json b/site/public/v1/games/train-simulator-lms-rebuilt-patriot-class-steam-loco-add-on/index.json new file mode 100644 index 000000000000..02982e90cc68 --- /dev/null +++ b/site/public/v1/games/train-simulator-lms-rebuilt-patriot-class-steam-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159897, + "slug": "train-simulator-lms-rebuilt-patriot-class-steam-loco-add-on", + "name": "Train Simulator: LMS Rebuilt Patriot Class Steam Loco Add-On", + "release_date": "2019-04-26", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Bossman Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105657" + ], + "created_at": "2026-07-10T10:10:48.008395", + "updated_at": "2026-07-10T10:10:48.008395", + "url": "/v1/games/train-simulator-lms-rebuilt-patriot-class-steam-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-lms-rebuilt-royal-scot-steam-loco-add-on/index.json b/site/public/v1/games/train-simulator-lms-rebuilt-royal-scot-steam-loco-add-on/index.json new file mode 100644 index 000000000000..b26a44ae9266 --- /dev/null +++ b/site/public/v1/games/train-simulator-lms-rebuilt-royal-scot-steam-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159898, + "slug": "train-simulator-lms-rebuilt-royal-scot-steam-loco-add-on", + "name": "Train Simulator: LMS Rebuilt Royal Scot Steam Loco Add-On", + "release_date": "2019-01-30", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Bossman Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105658" + ], + "created_at": "2026-07-10T10:10:48.009395", + "updated_at": "2026-07-10T10:10:48.009395", + "url": "/v1/games/train-simulator-lms-rebuilt-royal-scot-steam-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-lms-stanier-class-5-black-five-steam-loco-add-on/index.json b/site/public/v1/games/train-simulator-lms-stanier-class-5-black-five-steam-loco-add-on/index.json new file mode 100644 index 000000000000..81a2c5ee1287 --- /dev/null +++ b/site/public/v1/games/train-simulator-lms-stanier-class-5-black-five-steam-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159899, + "slug": "train-simulator-lms-stanier-class-5-black-five-steam-loco-add-on", + "name": "Train Simulator: LMS Stanier Class 5 'Black Five' Steam Loco Add-On", + "release_date": "2018-05-17", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Bossman Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105974" + ], + "created_at": "2026-07-10T10:10:48.009395", + "updated_at": "2026-07-10T10:10:48.009395", + "url": "/v1/games/train-simulator-lms-stanier-class-5-black-five-steam-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-lms-stanier-class-8f-steam-loco-add-on/index.json b/site/public/v1/games/train-simulator-lms-stanier-class-8f-steam-loco-add-on/index.json new file mode 100644 index 000000000000..cdd01343ed60 --- /dev/null +++ b/site/public/v1/games/train-simulator-lms-stanier-class-8f-steam-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159900, + "slug": "train-simulator-lms-stanier-class-8f-steam-loco-add-on", + "name": "Train Simulator: LMS Stanier Class 8F Steam Loco Add-On", + "release_date": "2019-08-29", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Bossman Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105955" + ], + "created_at": "2026-07-10T10:10:48.009395", + "updated_at": "2026-07-10T10:10:48.009395", + "url": "/v1/games/train-simulator-lms-stanier-class-8f-steam-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-lms-stanier-mogul-steam-loco-add-on/index.json b/site/public/v1/games/train-simulator-lms-stanier-mogul-steam-loco-add-on/index.json new file mode 100644 index 000000000000..f4b5d32001e9 --- /dev/null +++ b/site/public/v1/games/train-simulator-lms-stanier-mogul-steam-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159901, + "slug": "train-simulator-lms-stanier-mogul-steam-loco-add-on", + "name": "Train Simulator: LMS Stanier Mogul Steam Loco Add-On", + "release_date": "2021-04-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Bossman Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105576" + ], + "created_at": "2026-07-10T10:10:48.009395", + "updated_at": "2026-07-10T10:10:48.009395", + "url": "/v1/games/train-simulator-lms-stanier-mogul-steam-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-lner-black-class-a3-flying-scotsman-loco-add-on/index.json b/site/public/v1/games/train-simulator-lner-black-class-a3-flying-scotsman-loco-add-on/index.json new file mode 100644 index 000000000000..580b6fd314d5 --- /dev/null +++ b/site/public/v1/games/train-simulator-lner-black-class-a3-flying-scotsman-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159902, + "slug": "train-simulator-lner-black-class-a3-flying-scotsman-loco-add-on", + "name": "Train Simulator: LNER Black Class A3 ‘Flying Scotsman’ Loco Add-On", + "release_date": "2012-12-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105492" + ], + "created_at": "2026-07-10T10:10:48.009395", + "updated_at": "2026-07-10T10:10:48.009395", + "url": "/v1/games/train-simulator-lner-black-class-a3-flying-scotsman-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-lner-br-class-43-high-speed-train-remastered-loco-add-on/index.json b/site/public/v1/games/train-simulator-lner-br-class-43-high-speed-train-remastered-loco-add-on/index.json new file mode 100644 index 000000000000..73ea7ee35365 --- /dev/null +++ b/site/public/v1/games/train-simulator-lner-br-class-43-high-speed-train-remastered-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159903, + "slug": "train-simulator-lner-br-class-43-high-speed-train-remastered-loco-add-on", + "name": "Train Simulator: LNER BR Class 43 ‘High Speed Train’ Remastered Loco Add-On", + "release_date": "2020-06-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105697" + ], + "created_at": "2026-07-10T10:10:48.009395", + "updated_at": "2026-07-10T10:10:48.009395", + "url": "/v1/games/train-simulator-lner-br-class-43-high-speed-train-remastered-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-lner-br-class-a1-tornado-loco-add-on/index.json b/site/public/v1/games/train-simulator-lner-br-class-a1-tornado-loco-add-on/index.json new file mode 100644 index 000000000000..6ebfe55fe691 --- /dev/null +++ b/site/public/v1/games/train-simulator-lner-br-class-a1-tornado-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159904, + "slug": "train-simulator-lner-br-class-a1-tornado-loco-add-on", + "name": "Train Simulator: LNER/BR Class A1 ‘Tornado’ Loco Add-On", + "release_date": "2012-08-16", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105773" + ], + "created_at": "2026-07-10T10:10:48.010395", + "updated_at": "2026-07-10T10:10:48.010395", + "url": "/v1/games/train-simulator-lner-br-class-a1-tornado-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-lner-br-class-j94-loco-add-on/index.json b/site/public/v1/games/train-simulator-lner-br-class-j94-loco-add-on/index.json new file mode 100644 index 000000000000..8f41cb03200c --- /dev/null +++ b/site/public/v1/games/train-simulator-lner-br-class-j94-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159905, + "slug": "train-simulator-lner-br-class-j94-loco-add-on", + "name": "Train Simulator: LNER/BR Class J94 Loco Add-On", + "release_date": "2012-11-15", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "MeshTools" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106242" + ], + "created_at": "2026-07-10T10:10:48.010395", + "updated_at": "2026-07-10T10:10:48.010395", + "url": "/v1/games/train-simulator-lner-br-class-j94-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-lner-class-a3-flying-scotsman-loco-add-on/index.json b/site/public/v1/games/train-simulator-lner-class-a3-flying-scotsman-loco-add-on/index.json new file mode 100644 index 000000000000..645cd1037aa5 --- /dev/null +++ b/site/public/v1/games/train-simulator-lner-class-a3-flying-scotsman-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159906, + "slug": "train-simulator-lner-class-a3-flying-scotsman-loco-add-on", + "name": "Train Simulator: LNER Class A3 ‘Flying Scotsman’ Loco Add-On", + "release_date": "2012-08-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105772" + ], + "created_at": "2026-07-10T10:10:48.010395", + "updated_at": "2026-07-10T10:10:48.010395", + "url": "/v1/games/train-simulator-lner-class-a3-flying-scotsman-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-lner-class-v2-steam-loco-add-on/index.json b/site/public/v1/games/train-simulator-lner-class-v2-steam-loco-add-on/index.json new file mode 100644 index 000000000000..3a5ba04ccf3b --- /dev/null +++ b/site/public/v1/games/train-simulator-lner-class-v2-steam-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159907, + "slug": "train-simulator-lner-class-v2-steam-loco-add-on", + "name": "Train Simulator: LNER Class V2 Steam Loco Add-On", + "release_date": "2020-02-27", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Just Trains" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106435" + ], + "created_at": "2026-07-10T10:10:48.010395", + "updated_at": "2026-07-10T10:10:48.010395", + "url": "/v1/games/train-simulator-lner-class-v2-steam-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-lner-peppercorn-class-a2-blue-peter-loco-add-on/index.json b/site/public/v1/games/train-simulator-lner-peppercorn-class-a2-blue-peter-loco-add-on/index.json new file mode 100644 index 000000000000..c8d7da862d57 --- /dev/null +++ b/site/public/v1/games/train-simulator-lner-peppercorn-class-a2-blue-peter-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159908, + "slug": "train-simulator-lner-peppercorn-class-a2-blue-peter-loco-add-on", + "name": "Train Simulator: LNER Peppercorn Class A2 'Blue Peter' Loco Add-On", + "release_date": "2015-05-14", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105647" + ], + "created_at": "2026-07-10T10:10:48.011395", + "updated_at": "2026-07-10T10:10:48.011395", + "url": "/v1/games/train-simulator-lner-peppercorn-class-a2-blue-peter-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-lner-peppercorn-class-k1-loco-add-on/index.json b/site/public/v1/games/train-simulator-lner-peppercorn-class-k1-loco-add-on/index.json new file mode 100644 index 000000000000..93e1c69ac0b0 --- /dev/null +++ b/site/public/v1/games/train-simulator-lner-peppercorn-class-k1-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159909, + "slug": "train-simulator-lner-peppercorn-class-k1-loco-add-on", + "name": "Train Simulator: LNER Peppercorn Class K1 Loco Add-On", + "release_date": "2015-10-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Victory Works" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105883" + ], + "created_at": "2026-07-10T10:10:48.011395", + "updated_at": "2026-07-10T10:10:48.011395", + "url": "/v1/games/train-simulator-lner-peppercorn-class-k1-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-lner-raven-q6-steam-loco-add-on/index.json b/site/public/v1/games/train-simulator-lner-raven-q6-steam-loco-add-on/index.json new file mode 100644 index 000000000000..53efdd93f574 --- /dev/null +++ b/site/public/v1/games/train-simulator-lner-raven-q6-steam-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159910, + "slug": "train-simulator-lner-raven-q6-steam-loco-add-on", + "name": "Train Simulator: LNER Raven Q6 Steam Loco Add-On", + "release_date": "2018-03-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Victory Works" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105882" + ], + "created_at": "2026-07-10T10:10:48.011395", + "updated_at": "2026-07-10T10:10:48.011395", + "url": "/v1/games/train-simulator-lner-raven-q6-steam-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-lnwr-g2-super-d-steam-loco-add-on/index.json b/site/public/v1/games/train-simulator-lnwr-g2-super-d-steam-loco-add-on/index.json new file mode 100644 index 000000000000..e887a37b245f --- /dev/null +++ b/site/public/v1/games/train-simulator-lnwr-g2-super-d-steam-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159911, + "slug": "train-simulator-lnwr-g2-super-d-steam-loco-add-on", + "name": "Train Simulator: LNWR G2 Super D Steam Loco Add-On", + "release_date": "2017-03-08", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "MeshTools" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105889" + ], + "created_at": "2026-07-10T10:10:48.011395", + "updated_at": "2026-07-10T10:10:48.011395", + "url": "/v1/games/train-simulator-lnwr-g2-super-d-steam-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-london-faversham-high-speed-route-add-on/index.json b/site/public/v1/games/train-simulator-london-faversham-high-speed-route-add-on/index.json new file mode 100644 index 000000000000..d1024eda7863 --- /dev/null +++ b/site/public/v1/games/train-simulator-london-faversham-high-speed-route-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159912, + "slug": "train-simulator-london-faversham-high-speed-route-add-on", + "name": "Train Simulator: London-Faversham High Speed Route Add-On", + "release_date": "2013-02-21", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105524" + ], + "created_at": "2026-07-10T10:10:48.011395", + "updated_at": "2026-07-10T10:10:48.011395", + "url": "/v1/games/train-simulator-london-faversham-high-speed-route-add-on" +} diff --git a/site/public/v1/games/train-simulator-london-marylebone-aylesbury-route-add-on/index.json b/site/public/v1/games/train-simulator-london-marylebone-aylesbury-route-add-on/index.json new file mode 100644 index 000000000000..c640fd4a6815 --- /dev/null +++ b/site/public/v1/games/train-simulator-london-marylebone-aylesbury-route-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159913, + "slug": "train-simulator-london-marylebone-aylesbury-route-add-on", + "name": "Train Simulator: London Marylebone - Aylesbury Route Add-On", + "release_date": "2019-12-19", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Just Trains" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105625" + ], + "created_at": "2026-07-10T10:10:48.011395", + "updated_at": "2026-07-10T10:10:48.011395", + "url": "/v1/games/train-simulator-london-marylebone-aylesbury-route-add-on" +} diff --git a/site/public/v1/games/train-simulator-london-overground-br-class-313-emu-add-on/index.json b/site/public/v1/games/train-simulator-london-overground-br-class-313-emu-add-on/index.json new file mode 100644 index 000000000000..a7f7aaccdf32 --- /dev/null +++ b/site/public/v1/games/train-simulator-london-overground-br-class-313-emu-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159914, + "slug": "train-simulator-london-overground-br-class-313-emu-add-on", + "name": "Train Simulator: London Overground BR Class 313 EMU Add-On", + "release_date": "2017-02-23", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Armstrong Powerhouse" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105952" + ], + "created_at": "2026-07-10T10:10:48.012394", + "updated_at": "2026-07-10T10:10:48.012394", + "url": "/v1/games/train-simulator-london-overground-br-class-313-emu-add-on" +} diff --git a/site/public/v1/games/train-simulator-london-overground-class-378-capitalstar-emu-add-on/index.json b/site/public/v1/games/train-simulator-london-overground-class-378-capitalstar-emu-add-on/index.json new file mode 100644 index 000000000000..3c25a5a29899 --- /dev/null +++ b/site/public/v1/games/train-simulator-london-overground-class-378-capitalstar-emu-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159915, + "slug": "train-simulator-london-overground-class-378-capitalstar-emu-add-on", + "name": "Train Simulator: London Overground Class 378 'Capitalstar' EMU Add-On", + "release_date": "2015-01-08", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105671" + ], + "created_at": "2026-07-10T10:10:48.012394", + "updated_at": "2026-07-10T10:10:48.012394", + "url": "/v1/games/train-simulator-london-overground-class-378-capitalstar-emu-add-on" +} diff --git a/site/public/v1/games/train-simulator-london-to-brighton-route-add-on/index.json b/site/public/v1/games/train-simulator-london-to-brighton-route-add-on/index.json new file mode 100644 index 000000000000..c0ffda16cb35 --- /dev/null +++ b/site/public/v1/games/train-simulator-london-to-brighton-route-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159917, + "slug": "train-simulator-london-to-brighton-route-add-on", + "name": "Train Simulator: London to Brighton Route Add-On", + "release_date": "2012-06-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105494" + ], + "created_at": "2026-07-10T10:10:48.012394", + "updated_at": "2026-07-10T10:10:48.012394", + "url": "/v1/games/train-simulator-london-to-brighton-route-add-on" +} diff --git a/site/public/v1/games/train-simulator-london-transport-heritage-collection/index.json b/site/public/v1/games/train-simulator-london-transport-heritage-collection/index.json new file mode 100644 index 000000000000..4a8c81401bbd --- /dev/null +++ b/site/public/v1/games/train-simulator-london-transport-heritage-collection/index.json @@ -0,0 +1,33 @@ +{ + "id": 159918, + "slug": "train-simulator-london-transport-heritage-collection", + "name": "Train Simulator: London Transport Heritage Collection", + "release_date": "2017-05-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106147" + ], + "created_at": "2026-07-10T10:10:48.012394", + "updated_at": "2026-07-10T10:10:48.012394", + "url": "/v1/games/train-simulator-london-transport-heritage-collection" +} diff --git a/site/public/v1/games/train-simulator-london-underground-s7-1-emu-add-on/index.json b/site/public/v1/games/train-simulator-london-underground-s7-1-emu-add-on/index.json new file mode 100644 index 000000000000..eee735d55dad --- /dev/null +++ b/site/public/v1/games/train-simulator-london-underground-s7-1-emu-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159919, + "slug": "train-simulator-london-underground-s7-1-emu-add-on", + "name": "Train Simulator: London Underground S7+1 EMU Add-On", + "release_date": "2020-08-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Just Trains" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105784" + ], + "created_at": "2026-07-10T10:10:48.012394", + "updated_at": "2026-07-10T10:10:48.012394", + "url": "/v1/games/train-simulator-london-underground-s7-1-emu-add-on" +} diff --git a/site/public/v1/games/train-simulator-london-underground-s8-emu-add-on/index.json b/site/public/v1/games/train-simulator-london-underground-s8-emu-add-on/index.json new file mode 100644 index 000000000000..353f9d6767cf --- /dev/null +++ b/site/public/v1/games/train-simulator-london-underground-s8-emu-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159920, + "slug": "train-simulator-london-underground-s8-emu-add-on", + "name": "Train Simulator: London Underground S8 EMU Add-On", + "release_date": "2020-01-31", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Just Trains" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105804" + ], + "created_at": "2026-07-10T10:10:48.013394", + "updated_at": "2026-07-10T10:10:48.013394", + "url": "/v1/games/train-simulator-london-underground-s8-emu-add-on" +} diff --git a/site/public/v1/games/train-simulator-longhai-railway-lingbao-mianchi-route-add-on/index.json b/site/public/v1/games/train-simulator-longhai-railway-lingbao-mianchi-route-add-on/index.json new file mode 100644 index 000000000000..090774f4d1a1 --- /dev/null +++ b/site/public/v1/games/train-simulator-longhai-railway-lingbao-mianchi-route-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159921, + "slug": "train-simulator-longhai-railway-lingbao-mianchi-route-add-on", + "name": "Train Simulator: Longhai Railway: Lingbao - Mianchi Route Add-On", + "release_date": "2018-06-14", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "SimTech Vision" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105709" + ], + "created_at": "2026-07-10T10:10:48.013394", + "updated_at": "2026-07-10T10:10:48.013394", + "url": "/v1/games/train-simulator-longhai-railway-lingbao-mianchi-route-add-on" +} diff --git a/site/public/v1/games/train-simulator-los-angeles-commuter-rail-f59ph-loco-add-on/index.json b/site/public/v1/games/train-simulator-los-angeles-commuter-rail-f59ph-loco-add-on/index.json new file mode 100644 index 000000000000..301962ad475e --- /dev/null +++ b/site/public/v1/games/train-simulator-los-angeles-commuter-rail-f59ph-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159922, + "slug": "train-simulator-los-angeles-commuter-rail-f59ph-loco-add-on", + "name": "Train Simulator: Los Angeles Commuter Rail F59PH Loco Add-On", + "release_date": "2014-09-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105649" + ], + "created_at": "2026-07-10T10:10:48.013394", + "updated_at": "2026-07-10T10:10:48.013394", + "url": "/v1/games/train-simulator-los-angeles-commuter-rail-f59ph-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-m-nster-bremen-route-add-on/index.json b/site/public/v1/games/train-simulator-m-nster-bremen-route-add-on/index.json new file mode 100644 index 000000000000..8d2c6e2cf5fb --- /dev/null +++ b/site/public/v1/games/train-simulator-m-nster-bremen-route-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159923, + "slug": "train-simulator-m-nster-bremen-route-add-on", + "name": "Train Simulator: Münster - Bremen Route Add-On", + "release_date": "2019-05-03", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Aerosoft" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105848" + ], + "created_at": "2026-07-10T10:10:48.013394", + "updated_at": "2026-07-10T10:10:48.013394", + "url": "/v1/games/train-simulator-m-nster-bremen-route-add-on" +} diff --git a/site/public/v1/games/train-simulator-malmesbury-branch-route-add-on/index.json b/site/public/v1/games/train-simulator-malmesbury-branch-route-add-on/index.json new file mode 100644 index 000000000000..e35d398e2e60 --- /dev/null +++ b/site/public/v1/games/train-simulator-malmesbury-branch-route-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159924, + "slug": "train-simulator-malmesbury-branch-route-add-on", + "name": "Train Simulator: Malmesbury Branch Route Add-On", + "release_date": "2017-07-06", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Just Trains" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106136" + ], + "created_at": "2026-07-10T10:10:48.014395", + "updated_at": "2026-07-10T10:10:48.014395", + "url": "/v1/games/train-simulator-malmesbury-branch-route-add-on" +} diff --git a/site/public/v1/games/train-simulator-marsdonshire-route-add-on/index.json b/site/public/v1/games/train-simulator-marsdonshire-route-add-on/index.json new file mode 100644 index 000000000000..41cfc8150a24 --- /dev/null +++ b/site/public/v1/games/train-simulator-marsdonshire-route-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159925, + "slug": "train-simulator-marsdonshire-route-add-on", + "name": "Train Simulator: Marsdonshire Route Add-On", + "release_date": "2020-10-16", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Just Trains" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105723" + ], + "created_at": "2026-07-10T10:10:48.014395", + "updated_at": "2026-07-10T10:10:48.014395", + "url": "/v1/games/train-simulator-marsdonshire-route-add-on" +} diff --git a/site/public/v1/games/train-simulator-merchant-navy-class-35028-clan-line-steam-loco-add-on/index.json b/site/public/v1/games/train-simulator-merchant-navy-class-35028-clan-line-steam-loco-add-on/index.json new file mode 100644 index 000000000000..019bb1db9e1a --- /dev/null +++ b/site/public/v1/games/train-simulator-merchant-navy-class-35028-clan-line-steam-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159926, + "slug": "train-simulator-merchant-navy-class-35028-clan-line-steam-loco-add-on", + "name": "Train Simulator: Merchant Navy Class 35028 ‘Clan Line’ Steam Loco Add-On", + "release_date": "2020-09-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Bossman Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105706" + ], + "created_at": "2026-07-10T10:10:48.014395", + "updated_at": "2026-07-10T10:10:48.014395", + "url": "/v1/games/train-simulator-merchant-navy-class-35028-clan-line-steam-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-metro-north-kawasaki-m8-emu-add-on/index.json b/site/public/v1/games/train-simulator-metro-north-kawasaki-m8-emu-add-on/index.json new file mode 100644 index 000000000000..f551ce1d7cdd --- /dev/null +++ b/site/public/v1/games/train-simulator-metro-north-kawasaki-m8-emu-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159927, + "slug": "train-simulator-metro-north-kawasaki-m8-emu-add-on", + "name": "Train Simulator: Metro-North Kawasaki M8 EMU Add-On", + "release_date": "2014-04-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105937" + ], + "created_at": "2026-07-10T10:10:48.014395", + "updated_at": "2026-07-10T10:10:48.014395", + "url": "/v1/games/train-simulator-metro-north-kawasaki-m8-emu-add-on" +} diff --git a/site/public/v1/games/train-simulator-metro-north-m2-emu-add-on/index.json b/site/public/v1/games/train-simulator-metro-north-m2-emu-add-on/index.json new file mode 100644 index 000000000000..3cf83bb8e388 --- /dev/null +++ b/site/public/v1/games/train-simulator-metro-north-m2-emu-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159928, + "slug": "train-simulator-metro-north-m2-emu-add-on", + "name": "Train Simulator: Metro North M2 EMU Add-On", + "release_date": "2020-02-06", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Reppo" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105699" + ], + "created_at": "2026-07-10T10:10:48.014395", + "updated_at": "2026-07-10T10:10:48.014395", + "url": "/v1/games/train-simulator-metro-north-m2-emu-add-on" +} diff --git a/site/public/v1/games/train-simulator-metro-north-p32-ac-dm-genesis-loco-add-on/index.json b/site/public/v1/games/train-simulator-metro-north-p32-ac-dm-genesis-loco-add-on/index.json new file mode 100644 index 000000000000..d3ff87aec083 --- /dev/null +++ b/site/public/v1/games/train-simulator-metro-north-p32-ac-dm-genesis-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159929, + "slug": "train-simulator-metro-north-p32-ac-dm-genesis-loco-add-on", + "name": "Train Simulator: Metro-North P32 AC-DM 'Genesis' Loco Add-On", + "release_date": "2014-07-10", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106426" + ], + "created_at": "2026-07-10T10:10:48.014395", + "updated_at": "2026-07-10T10:10:48.014395", + "url": "/v1/games/train-simulator-metro-north-p32-ac-dm-genesis-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-metronom-me-146-loco-add-on/index.json b/site/public/v1/games/train-simulator-metronom-me-146-loco-add-on/index.json new file mode 100644 index 000000000000..14be64ed3a1f --- /dev/null +++ b/site/public/v1/games/train-simulator-metronom-me-146-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159930, + "slug": "train-simulator-metronom-me-146-loco-add-on", + "name": "Train Simulator: Metronom ME 146 Loco Add-On", + "release_date": "2013-08-15", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106261" + ], + "created_at": "2026-07-10T10:10:48.015395", + "updated_at": "2026-07-10T10:10:48.015395", + "url": "/v1/games/train-simulator-metronom-me-146-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-metropolitan-line-aldgate-uxbridge-amersham-route-add-on/index.json b/site/public/v1/games/train-simulator-metropolitan-line-aldgate-uxbridge-amersham-route-add-on/index.json new file mode 100644 index 000000000000..95c044424afd --- /dev/null +++ b/site/public/v1/games/train-simulator-metropolitan-line-aldgate-uxbridge-amersham-route-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159931, + "slug": "train-simulator-metropolitan-line-aldgate-uxbridge-amersham-route-add-on", + "name": "Train Simulator: Metropolitan Line: Aldgate - Uxbridge & Amersham Route Add-On", + "release_date": "2020-08-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Just Trains" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105511" + ], + "created_at": "2026-07-10T10:10:48.015395", + "updated_at": "2026-07-10T10:10:48.015395", + "url": "/v1/games/train-simulator-metropolitan-line-aldgate-uxbridge-amersham-route-add-on" +} diff --git a/site/public/v1/games/train-simulator-miami-commuter-rail-f40phl-2-loco-add-on/index.json b/site/public/v1/games/train-simulator-miami-commuter-rail-f40phl-2-loco-add-on/index.json new file mode 100644 index 000000000000..301cc59e954f --- /dev/null +++ b/site/public/v1/games/train-simulator-miami-commuter-rail-f40phl-2-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159932, + "slug": "train-simulator-miami-commuter-rail-f40phl-2-loco-add-on", + "name": "Train Simulator: Miami Commuter Rail F40PHL-2 Loco Add-On", + "release_date": "2015-02-26", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105486" + ], + "created_at": "2026-07-10T10:10:48.015395", + "updated_at": "2026-07-10T10:10:48.015395", + "url": "/v1/games/train-simulator-miami-commuter-rail-f40phl-2-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-miami-west-palm-beach-route-add-on/index.json b/site/public/v1/games/train-simulator-miami-west-palm-beach-route-add-on/index.json new file mode 100644 index 000000000000..ac4dc73d7ab0 --- /dev/null +++ b/site/public/v1/games/train-simulator-miami-west-palm-beach-route-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159933, + "slug": "train-simulator-miami-west-palm-beach-route-add-on", + "name": "Train Simulator: Miami - West Palm Beach Route Add-On", + "release_date": "2014-12-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105485" + ], + "created_at": "2026-07-10T10:10:48.015395", + "updated_at": "2026-07-10T10:10:48.015395", + "url": "/v1/games/train-simulator-miami-west-palm-beach-route-add-on" +} diff --git a/site/public/v1/games/train-simulator-midland-line-aickens-springfield-route-add-on/index.json b/site/public/v1/games/train-simulator-midland-line-aickens-springfield-route-add-on/index.json new file mode 100644 index 000000000000..e3a9f97b36c3 --- /dev/null +++ b/site/public/v1/games/train-simulator-midland-line-aickens-springfield-route-add-on/index.json @@ -0,0 +1,31 @@ +{ + "id": 159934, + "slug": "train-simulator-midland-line-aickens-springfield-route-add-on", + "name": "Train Simulator: Midland Line: Aickens - Springfield Route Add-On", + "release_date": "2021-01-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105606" + ], + "created_at": "2026-07-10T10:10:48.015395", + "updated_at": "2026-07-10T10:10:48.015395", + "url": "/v1/games/train-simulator-midland-line-aickens-springfield-route-add-on" +} diff --git a/site/public/v1/games/train-simulator-midland-main-line-leicester-derby-nottingham-route-add-on/index.json b/site/public/v1/games/train-simulator-midland-main-line-leicester-derby-nottingham-route-add-on/index.json new file mode 100644 index 000000000000..11936b21383f --- /dev/null +++ b/site/public/v1/games/train-simulator-midland-main-line-leicester-derby-nottingham-route-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159935, + "slug": "train-simulator-midland-main-line-leicester-derby-nottingham-route-add-on", + "name": "Train Simulator: Midland Main Line: Leicester - Derby & Nottingham Route Add-On", + "release_date": "2021-04-29", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Just Trains" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105605" + ], + "created_at": "2026-07-10T10:10:48.015395", + "updated_at": "2026-07-10T10:10:48.015395", + "url": "/v1/games/train-simulator-midland-main-line-leicester-derby-nottingham-route-add-on" +} diff --git a/site/public/v1/games/train-simulator-midland-main-line-sheffield-derby-route-add-on/index.json b/site/public/v1/games/train-simulator-midland-main-line-sheffield-derby-route-add-on/index.json new file mode 100644 index 000000000000..c17a688fcd76 --- /dev/null +++ b/site/public/v1/games/train-simulator-midland-main-line-sheffield-derby-route-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159936, + "slug": "train-simulator-midland-main-line-sheffield-derby-route-add-on", + "name": "Train Simulator: Midland Main Line: Sheffield - Derby Route Add-On", + "release_date": "2020-12-03", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Just Trains" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105615" + ], + "created_at": "2026-07-10T10:10:48.016395", + "updated_at": "2026-07-10T10:10:48.016395", + "url": "/v1/games/train-simulator-midland-main-line-sheffield-derby-route-add-on" +} diff --git a/site/public/v1/games/train-simulator-mighty-seddin-freight-route-add-on/index.json b/site/public/v1/games/train-simulator-mighty-seddin-freight-route-add-on/index.json new file mode 100644 index 000000000000..29cc627cae8c --- /dev/null +++ b/site/public/v1/games/train-simulator-mighty-seddin-freight-route-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159937, + "slug": "train-simulator-mighty-seddin-freight-route-add-on", + "name": "Train Simulator: Mighty Seddin Freight Route Add-On", + "release_date": "2017-07-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Aerosoft" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105980" + ], + "created_at": "2026-07-10T10:10:48.016395", + "updated_at": "2026-07-10T10:10:48.016395", + "url": "/v1/games/train-simulator-mighty-seddin-freight-route-add-on" +} diff --git a/site/public/v1/games/train-simulator-mittenwaldbahn-garmisch-partenkirchen-innsbruck-route-add-on/index.json b/site/public/v1/games/train-simulator-mittenwaldbahn-garmisch-partenkirchen-innsbruck-route-add-on/index.json new file mode 100644 index 000000000000..cf0970a5daf4 --- /dev/null +++ b/site/public/v1/games/train-simulator-mittenwaldbahn-garmisch-partenkirchen-innsbruck-route-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159938, + "slug": "train-simulator-mittenwaldbahn-garmisch-partenkirchen-innsbruck-route-add-on", + "name": "Train Simulator: Mittenwaldbahn: Garmisch-Partenkirchen - Innsbruck Route Add-On", + "release_date": "2017-02-16", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105479" + ], + "created_at": "2026-07-10T10:10:48.016395", + "updated_at": "2026-07-10T10:10:48.016395", + "url": "/v1/games/train-simulator-mittenwaldbahn-garmisch-partenkirchen-innsbruck-route-add-on" +} diff --git a/site/public/v1/games/train-simulator-montana-hi-line-shelby-havre-route-add-on/index.json b/site/public/v1/games/train-simulator-montana-hi-line-shelby-havre-route-add-on/index.json new file mode 100644 index 000000000000..571edf5e438d --- /dev/null +++ b/site/public/v1/games/train-simulator-montana-hi-line-shelby-havre-route-add-on/index.json @@ -0,0 +1,31 @@ +{ + "id": 159939, + "slug": "train-simulator-montana-hi-line-shelby-havre-route-add-on", + "name": "Train Simulator: Montana Hi-Line: Shelby - Havre Route Add-On", + "release_date": "2019-12-19", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106067" + ], + "created_at": "2026-07-10T10:10:48.016395", + "updated_at": "2026-07-10T10:10:48.016395", + "url": "/v1/games/train-simulator-montana-hi-line-shelby-havre-route-add-on" +} diff --git a/site/public/v1/games/train-simulator-mosel-valley-koblenz-trier-route-add-on/index.json b/site/public/v1/games/train-simulator-mosel-valley-koblenz-trier-route-add-on/index.json new file mode 100644 index 000000000000..b87809626838 --- /dev/null +++ b/site/public/v1/games/train-simulator-mosel-valley-koblenz-trier-route-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159940, + "slug": "train-simulator-mosel-valley-koblenz-trier-route-add-on", + "name": "Train Simulator: Mosel Valley: Koblenz - Trier Route Add-On", + "release_date": "2015-12-21", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Aerosoft" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105681" + ], + "created_at": "2026-07-10T10:10:48.016395", + "updated_at": "2026-07-10T10:10:48.016395", + "url": "/v1/games/train-simulator-mosel-valley-koblenz-trier-route-add-on" +} diff --git a/site/public/v1/games/train-simulator-mrce-br-185-5-loco-add-on/index.json b/site/public/v1/games/train-simulator-mrce-br-185-5-loco-add-on/index.json new file mode 100644 index 000000000000..45e7fa8e6d99 --- /dev/null +++ b/site/public/v1/games/train-simulator-mrce-br-185-5-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159941, + "slug": "train-simulator-mrce-br-185-5-loco-add-on", + "name": "Train Simulator: MRCE BR 185.5 Loco Add-On", + "release_date": "2015-03-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106153" + ], + "created_at": "2026-07-10T10:10:48.017395", + "updated_at": "2026-07-10T10:10:48.017395", + "url": "/v1/games/train-simulator-mrce-br-185-5-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-mrce-dispolok-pack-loco-add-on/index.json b/site/public/v1/games/train-simulator-mrce-dispolok-pack-loco-add-on/index.json new file mode 100644 index 000000000000..52c7a732b677 --- /dev/null +++ b/site/public/v1/games/train-simulator-mrce-dispolok-pack-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159942, + "slug": "train-simulator-mrce-dispolok-pack-loco-add-on", + "name": "Train Simulator: MRCE Dispolok Pack Loco Add-On", + "release_date": "2018-01-25", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106436" + ], + "created_at": "2026-07-10T10:10:48.017395", + "updated_at": "2026-07-10T10:10:48.017395", + "url": "/v1/games/train-simulator-mrce-dispolok-pack-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-mrce-er20-eurorunner-loco-add-on/index.json b/site/public/v1/games/train-simulator-mrce-er20-eurorunner-loco-add-on/index.json new file mode 100644 index 000000000000..1ba1cedca1fc --- /dev/null +++ b/site/public/v1/games/train-simulator-mrce-er20-eurorunner-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159943, + "slug": "train-simulator-mrce-er20-eurorunner-loco-add-on", + "name": "Train Simulator: MRCE ER20 Eurorunner Loco Add-On", + "release_date": "2013-10-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105867" + ], + "created_at": "2026-07-10T10:10:48.017395", + "updated_at": "2026-07-10T10:10:48.017395", + "url": "/v1/games/train-simulator-mrce-er20-eurorunner-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-mrce-es-64-u2-taurus-loco-add-on/index.json b/site/public/v1/games/train-simulator-mrce-es-64-u2-taurus-loco-add-on/index.json new file mode 100644 index 000000000000..2ccb9640c003 --- /dev/null +++ b/site/public/v1/games/train-simulator-mrce-es-64-u2-taurus-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159944, + "slug": "train-simulator-mrce-es-64-u2-taurus-loco-add-on", + "name": "Train Simulator: MRCE ES 64 U2 'Taurus' Loco Add-On", + "release_date": "2013-11-21", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105546" + ], + "created_at": "2026-07-10T10:10:48.017395", + "updated_at": "2026-07-10T10:10:48.017395", + "url": "/v1/games/train-simulator-mrce-es-64-u2-taurus-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-munich-augsburg-route-add-on/index.json b/site/public/v1/games/train-simulator-munich-augsburg-route-add-on/index.json new file mode 100644 index 000000000000..ae7be12f83a9 --- /dev/null +++ b/site/public/v1/games/train-simulator-munich-augsburg-route-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159945, + "slug": "train-simulator-munich-augsburg-route-add-on", + "name": "Train Simulator: Munich-Augsburg Route Add-On", + "release_date": "2012-10-10", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105683" + ], + "created_at": "2026-07-10T10:10:48.017395", + "updated_at": "2026-07-10T10:10:48.017395", + "url": "/v1/games/train-simulator-munich-augsburg-route-add-on" +} diff --git a/site/public/v1/games/train-simulator-munich-garmisch-partenkirchen-route-add-on/index.json b/site/public/v1/games/train-simulator-munich-garmisch-partenkirchen-route-add-on/index.json new file mode 100644 index 000000000000..69958c7da09f --- /dev/null +++ b/site/public/v1/games/train-simulator-munich-garmisch-partenkirchen-route-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159946, + "slug": "train-simulator-munich-garmisch-partenkirchen-route-add-on", + "name": "Train Simulator: Munich - Garmisch-Partenkirchen Route Add-On", + "release_date": "2014-05-15", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105592" + ], + "created_at": "2026-07-10T10:10:48.017395", + "updated_at": "2026-07-10T10:10:48.017395", + "url": "/v1/games/train-simulator-munich-garmisch-partenkirchen-route-add-on" +} diff --git a/site/public/v1/games/train-simulator-munich-rosenheim-route-add-on/index.json b/site/public/v1/games/train-simulator-munich-rosenheim-route-add-on/index.json new file mode 100644 index 000000000000..5f31c7a8414d --- /dev/null +++ b/site/public/v1/games/train-simulator-munich-rosenheim-route-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159947, + "slug": "train-simulator-munich-rosenheim-route-add-on", + "name": "Train Simulator: Munich - Rosenheim Route Add-On", + "release_date": "2015-07-23", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105488" + ], + "created_at": "2026-07-10T10:10:48.018395", + "updated_at": "2026-07-10T10:10:48.018395", + "url": "/v1/games/train-simulator-munich-rosenheim-route-add-on" +} diff --git a/site/public/v1/games/train-simulator-n15-king-arthur-class-sir-lamiel-loco-add-on/index.json b/site/public/v1/games/train-simulator-n15-king-arthur-class-sir-lamiel-loco-add-on/index.json new file mode 100644 index 000000000000..2a1260193f01 --- /dev/null +++ b/site/public/v1/games/train-simulator-n15-king-arthur-class-sir-lamiel-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159948, + "slug": "train-simulator-n15-king-arthur-class-sir-lamiel-loco-add-on", + "name": "Train Simulator: N15 King Arthur Class ‘Sir Lamiel’ Loco Add-On", + "release_date": "2014-12-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106210" + ], + "created_at": "2026-07-10T10:10:48.018395", + "updated_at": "2026-07-10T10:10:48.018395", + "url": "/v1/games/train-simulator-n15-king-arthur-class-sir-lamiel-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-nec-new-york-new-haven-route-add-on/index.json b/site/public/v1/games/train-simulator-nec-new-york-new-haven-route-add-on/index.json new file mode 100644 index 000000000000..2d79718ea296 --- /dev/null +++ b/site/public/v1/games/train-simulator-nec-new-york-new-haven-route-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159949, + "slug": "train-simulator-nec-new-york-new-haven-route-add-on", + "name": "Train Simulator: NEC: New York-New Haven Route Add-On", + "release_date": "2014-04-10", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105679" + ], + "created_at": "2026-07-10T10:10:48.018395", + "updated_at": "2026-07-10T10:10:48.018395", + "url": "/v1/games/train-simulator-nec-new-york-new-haven-route-add-on" +} diff --git a/site/public/v1/games/train-simulator-netherfield-nottingham-network-route-add-on/index.json b/site/public/v1/games/train-simulator-netherfield-nottingham-network-route-add-on/index.json new file mode 100644 index 000000000000..cd27ed425128 --- /dev/null +++ b/site/public/v1/games/train-simulator-netherfield-nottingham-network-route-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159950, + "slug": "train-simulator-netherfield-nottingham-network-route-add-on", + "name": "Train Simulator: Netherfield: Nottingham Network Route Add-On", + "release_date": "2017-06-02", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105564" + ], + "created_at": "2026-07-10T10:10:48.018395", + "updated_at": "2026-07-10T10:10:48.018395", + "url": "/v1/games/train-simulator-netherfield-nottingham-network-route-add-on" +} diff --git a/site/public/v1/games/train-simulator-network-southeast-class-121-dmu-add-on/index.json b/site/public/v1/games/train-simulator-network-southeast-class-121-dmu-add-on/index.json new file mode 100644 index 000000000000..39b50f3382d1 --- /dev/null +++ b/site/public/v1/games/train-simulator-network-southeast-class-121-dmu-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159951, + "slug": "train-simulator-network-southeast-class-121-dmu-add-on", + "name": "Train Simulator: Network SouthEast Class 121 DMU Add-On", + "release_date": "2014-06-05", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105800" + ], + "created_at": "2026-07-10T10:10:48.018395", + "updated_at": "2026-07-10T10:10:48.018395", + "url": "/v1/games/train-simulator-network-southeast-class-121-dmu-add-on" +} diff --git a/site/public/v1/games/train-simulator-network-southeast-class-159-dmu-add-on/index.json b/site/public/v1/games/train-simulator-network-southeast-class-159-dmu-add-on/index.json new file mode 100644 index 000000000000..dee1560d36b8 --- /dev/null +++ b/site/public/v1/games/train-simulator-network-southeast-class-159-dmu-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159952, + "slug": "train-simulator-network-southeast-class-159-dmu-add-on", + "name": "Train Simulator: Network SouthEast Class 159 DMU Add-On", + "release_date": "2015-04-09", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105654" + ], + "created_at": "2026-07-10T10:10:48.019395", + "updated_at": "2026-07-10T10:10:48.019395", + "url": "/v1/games/train-simulator-network-southeast-class-159-dmu-add-on" +} diff --git a/site/public/v1/games/train-simulator-network-southeast-class-205-thumper-demu-add-on/index.json b/site/public/v1/games/train-simulator-network-southeast-class-205-thumper-demu-add-on/index.json new file mode 100644 index 000000000000..6d2b191f67b2 --- /dev/null +++ b/site/public/v1/games/train-simulator-network-southeast-class-205-thumper-demu-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159953, + "slug": "train-simulator-network-southeast-class-205-thumper-demu-add-on", + "name": "Train Simulator: Network Southeast Class 205 ‘Thumper’ DEMU Add-On", + "release_date": "2017-07-21", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Armstrong Powerhouse" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105928" + ], + "created_at": "2026-07-10T10:10:48.019395", + "updated_at": "2026-07-10T10:10:48.019395", + "url": "/v1/games/train-simulator-network-southeast-class-205-thumper-demu-add-on" +} diff --git a/site/public/v1/games/train-simulator-network-southeast-class-415-4epb-emu-add-on/index.json b/site/public/v1/games/train-simulator-network-southeast-class-415-4epb-emu-add-on/index.json new file mode 100644 index 000000000000..2582ab1237a6 --- /dev/null +++ b/site/public/v1/games/train-simulator-network-southeast-class-415-4epb-emu-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159954, + "slug": "train-simulator-network-southeast-class-415-4epb-emu-add-on", + "name": "Train Simulator: Network SouthEast Class 415 '4EPB' EMU Add-On", + "release_date": "2015-04-02", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106158" + ], + "created_at": "2026-07-10T10:10:48.019395", + "updated_at": "2026-07-10T10:10:48.019395", + "url": "/v1/games/train-simulator-network-southeast-class-415-4epb-emu-add-on" +} diff --git a/site/public/v1/games/train-simulator-network-southeast-class-47-loco-add-on/index.json b/site/public/v1/games/train-simulator-network-southeast-class-47-loco-add-on/index.json new file mode 100644 index 000000000000..af9776a64b56 --- /dev/null +++ b/site/public/v1/games/train-simulator-network-southeast-class-47-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159955, + "slug": "train-simulator-network-southeast-class-47-loco-add-on", + "name": "Train Simulator: Network Southeast Class 47 Loco Add-On", + "release_date": "2010-08-06", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105535" + ], + "created_at": "2026-07-10T10:10:48.019395", + "updated_at": "2026-07-10T10:10:48.019395", + "url": "/v1/games/train-simulator-network-southeast-class-47-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-new-haven-dl-109-loco-add-on/index.json b/site/public/v1/games/train-simulator-new-haven-dl-109-loco-add-on/index.json new file mode 100644 index 000000000000..277f6a4c0cbc --- /dev/null +++ b/site/public/v1/games/train-simulator-new-haven-dl-109-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159956, + "slug": "train-simulator-new-haven-dl-109-loco-add-on", + "name": "Train Simulator: New Haven DL-109 Loco Add-On", + "release_date": "2021-04-15", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Digital Train Model" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105584" + ], + "created_at": "2026-07-10T10:10:48.019395", + "updated_at": "2026-07-10T10:10:48.019395", + "url": "/v1/games/train-simulator-new-haven-dl-109-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-new-haven-e-33-loco-add-on/index.json b/site/public/v1/games/train-simulator-new-haven-e-33-loco-add-on/index.json new file mode 100644 index 000000000000..0a292ab7660f --- /dev/null +++ b/site/public/v1/games/train-simulator-new-haven-e-33-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159957, + "slug": "train-simulator-new-haven-e-33-loco-add-on", + "name": "Train Simulator: New Haven E-33 Loco Add-On", + "release_date": "2017-08-25", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Reppo" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106438" + ], + "created_at": "2026-07-10T10:10:48.019395", + "updated_at": "2026-07-10T10:10:48.019395", + "url": "/v1/games/train-simulator-new-haven-e-33-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-new-haven-fl9-loco-add-on/index.json b/site/public/v1/games/train-simulator-new-haven-fl9-loco-add-on/index.json new file mode 100644 index 000000000000..3bb8a452c94e --- /dev/null +++ b/site/public/v1/games/train-simulator-new-haven-fl9-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159958, + "slug": "train-simulator-new-haven-fl9-loco-add-on", + "name": "Train Simulator: New Haven FL9 Loco Add-On", + "release_date": "2015-02-19", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105680" + ], + "created_at": "2026-07-10T10:10:48.020395", + "updated_at": "2026-07-10T10:10:48.020395", + "url": "/v1/games/train-simulator-new-haven-fl9-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-nj-transit-alp-46-loco-add-on/index.json b/site/public/v1/games/train-simulator-nj-transit-alp-46-loco-add-on/index.json new file mode 100644 index 000000000000..9351ee4a0c99 --- /dev/null +++ b/site/public/v1/games/train-simulator-nj-transit-alp-46-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159959, + "slug": "train-simulator-nj-transit-alp-46-loco-add-on", + "name": "Train Simulator: NJ TRANSIT® ALP-46 Loco Add-On", + "release_date": "2015-10-15", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105675" + ], + "created_at": "2026-07-10T10:10:48.020395", + "updated_at": "2026-07-10T10:10:48.020395", + "url": "/v1/games/train-simulator-nj-transit-alp-46-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-nj-transit-arrow-iii-emu-add-on/index.json b/site/public/v1/games/train-simulator-nj-transit-arrow-iii-emu-add-on/index.json new file mode 100644 index 000000000000..0735b133aab2 --- /dev/null +++ b/site/public/v1/games/train-simulator-nj-transit-arrow-iii-emu-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159960, + "slug": "train-simulator-nj-transit-arrow-iii-emu-add-on", + "name": "Train Simulator: NJ TRANSIT® Arrow III EMU Add-On", + "release_date": "2017-04-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106151" + ], + "created_at": "2026-07-10T10:10:48.020395", + "updated_at": "2026-07-10T10:10:48.020395", + "url": "/v1/games/train-simulator-nj-transit-arrow-iii-emu-add-on" +} diff --git a/site/public/v1/games/train-simulator-nj-transit-f40ph-2cat-loco-add-on/index.json b/site/public/v1/games/train-simulator-nj-transit-f40ph-2cat-loco-add-on/index.json new file mode 100644 index 000000000000..49fe94b008c1 --- /dev/null +++ b/site/public/v1/games/train-simulator-nj-transit-f40ph-2cat-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159961, + "slug": "train-simulator-nj-transit-f40ph-2cat-loco-add-on", + "name": "Train Simulator: NJ TRANSIT® F40PH -2CAT Loco Add-On", + "release_date": "2015-10-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105862" + ], + "created_at": "2026-07-10T10:10:48.020395", + "updated_at": "2026-07-10T10:10:48.020395", + "url": "/v1/games/train-simulator-nj-transit-f40ph-2cat-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-nj-transit-gp40ph-2b-loco-add-on/index.json b/site/public/v1/games/train-simulator-nj-transit-gp40ph-2b-loco-add-on/index.json new file mode 100644 index 000000000000..be05dbf4579f --- /dev/null +++ b/site/public/v1/games/train-simulator-nj-transit-gp40ph-2b-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159962, + "slug": "train-simulator-nj-transit-gp40ph-2b-loco-add-on", + "name": "Train Simulator: NJ TRANSIT® GP40PH-2B Loco Add-On", + "release_date": "2015-12-10", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105860" + ], + "created_at": "2026-07-10T10:10:48.020395", + "updated_at": "2026-07-10T10:10:48.020395", + "url": "/v1/games/train-simulator-nj-transit-gp40ph-2b-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-nj-transit-u34ch-loco-add-on/index.json b/site/public/v1/games/train-simulator-nj-transit-u34ch-loco-add-on/index.json new file mode 100644 index 000000000000..486b4ccbb6a4 --- /dev/null +++ b/site/public/v1/games/train-simulator-nj-transit-u34ch-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159963, + "slug": "train-simulator-nj-transit-u34ch-loco-add-on", + "name": "Train Simulator: NJ TRANSIT® U34CH Loco Add-On", + "release_date": "2020-04-03", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Digital Train Model" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105844" + ], + "created_at": "2026-07-10T10:10:48.020395", + "updated_at": "2026-07-10T10:10:48.020395", + "url": "/v1/games/train-simulator-nj-transit-u34ch-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-nkp-s-2-class-berkshire-loco-add-on/index.json b/site/public/v1/games/train-simulator-nkp-s-2-class-berkshire-loco-add-on/index.json new file mode 100644 index 000000000000..0314d817ed10 --- /dev/null +++ b/site/public/v1/games/train-simulator-nkp-s-2-class-berkshire-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159964, + "slug": "train-simulator-nkp-s-2-class-berkshire-loco-add-on", + "name": "Train Simulator: NKP S-2 Class 'Berkshire' Loco Add-On", + "release_date": "2013-06-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "G-TraX Simulations" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106220" + ], + "created_at": "2026-07-10T10:10:48.020395", + "updated_at": "2026-07-10T10:10:48.020395", + "url": "/v1/games/train-simulator-nkp-s-2-class-berkshire-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-norddeutsche-bahn-kiel-l-beck-route-add-on/index.json b/site/public/v1/games/train-simulator-norddeutsche-bahn-kiel-l-beck-route-add-on/index.json new file mode 100644 index 000000000000..75dcaa08c080 --- /dev/null +++ b/site/public/v1/games/train-simulator-norddeutsche-bahn-kiel-l-beck-route-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159965, + "slug": "train-simulator-norddeutsche-bahn-kiel-l-beck-route-add-on", + "name": "Train Simulator: Norddeutsche-Bahn: Kiel - Lübeck Route Add-On", + "release_date": "2019-12-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105802" + ], + "created_at": "2026-07-10T10:10:48.021394", + "updated_at": "2026-07-10T10:10:48.021394", + "url": "/v1/games/train-simulator-norddeutsche-bahn-kiel-l-beck-route-add-on" +} diff --git a/site/public/v1/games/train-simulator-norfolk-southern-big-7s-loco-add-on/index.json b/site/public/v1/games/train-simulator-norfolk-southern-big-7s-loco-add-on/index.json new file mode 100644 index 000000000000..ee4a668ca6e6 --- /dev/null +++ b/site/public/v1/games/train-simulator-norfolk-southern-big-7s-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159966, + "slug": "train-simulator-norfolk-southern-big-7s-loco-add-on", + "name": "Train Simulator: Norfolk Southern Big 7s Loco Add-On", + "release_date": "2015-12-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Digital Train Model" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106173" + ], + "created_at": "2026-07-10T10:10:48.021394", + "updated_at": "2026-07-10T10:10:48.021394", + "url": "/v1/games/train-simulator-norfolk-southern-big-7s-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-norfolk-southern-c39-8-loco-add-on/index.json b/site/public/v1/games/train-simulator-norfolk-southern-c39-8-loco-add-on/index.json new file mode 100644 index 000000000000..4ab57e169661 --- /dev/null +++ b/site/public/v1/games/train-simulator-norfolk-southern-c39-8-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159967, + "slug": "train-simulator-norfolk-southern-c39-8-loco-add-on", + "name": "Train Simulator: Norfolk Southern C39-8 Loco Add-On", + "release_date": "2018-03-15", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Virtual Rail Creations" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105879" + ], + "created_at": "2026-07-10T10:10:48.021394", + "updated_at": "2026-07-10T10:10:48.021394", + "url": "/v1/games/train-simulator-norfolk-southern-c39-8-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-norfolk-southern-coal-district-route-add-on/index.json b/site/public/v1/games/train-simulator-norfolk-southern-coal-district-route-add-on/index.json new file mode 100644 index 000000000000..1d22b8f2f556 --- /dev/null +++ b/site/public/v1/games/train-simulator-norfolk-southern-coal-district-route-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159968, + "slug": "train-simulator-norfolk-southern-coal-district-route-add-on", + "name": "Train Simulator: Norfolk Southern Coal District Route Add-On", + "release_date": "2014-07-17", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105677" + ], + "created_at": "2026-07-10T10:10:48.021394", + "updated_at": "2026-07-10T10:10:48.021394", + "url": "/v1/games/train-simulator-norfolk-southern-coal-district-route-add-on" +} diff --git a/site/public/v1/games/train-simulator-norfolk-southern-dash8-40c-loco-add-on/index.json b/site/public/v1/games/train-simulator-norfolk-southern-dash8-40c-loco-add-on/index.json new file mode 100644 index 000000000000..80e619fdc9a6 --- /dev/null +++ b/site/public/v1/games/train-simulator-norfolk-southern-dash8-40c-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159969, + "slug": "train-simulator-norfolk-southern-dash8-40c-loco-add-on", + "name": "Train Simulator: Norfolk Southern Dash8-40C Loco Add-On", + "release_date": "2014-09-11", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105929" + ], + "created_at": "2026-07-10T10:10:48.021394", + "updated_at": "2026-07-10T10:10:48.021394", + "url": "/v1/games/train-simulator-norfolk-southern-dash8-40c-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-norfolk-southern-gp33-eco-loco-add-on/index.json b/site/public/v1/games/train-simulator-norfolk-southern-gp33-eco-loco-add-on/index.json new file mode 100644 index 000000000000..378de0e4d0df --- /dev/null +++ b/site/public/v1/games/train-simulator-norfolk-southern-gp33-eco-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159970, + "slug": "train-simulator-norfolk-southern-gp33-eco-loco-add-on", + "name": "Train Simulator: Norfolk Southern GP33 ECO Loco Add-On", + "release_date": "2020-09-10", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Travel by Train" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105726" + ], + "created_at": "2026-07-10T10:10:48.022394", + "updated_at": "2026-07-10T10:10:48.022394", + "url": "/v1/games/train-simulator-norfolk-southern-gp33-eco-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-norfolk-southern-gp38-2-high-hood-loco-add-on/index.json b/site/public/v1/games/train-simulator-norfolk-southern-gp38-2-high-hood-loco-add-on/index.json new file mode 100644 index 000000000000..ef0a6ff59283 --- /dev/null +++ b/site/public/v1/games/train-simulator-norfolk-southern-gp38-2-high-hood-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159971, + "slug": "train-simulator-norfolk-southern-gp38-2-high-hood-loco-add-on", + "name": "Train Simulator: Norfolk Southern GP38-2 High Hood Loco Add-On", + "release_date": "2014-07-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106429" + ], + "created_at": "2026-07-10T10:10:48.022394", + "updated_at": "2026-07-10T10:10:48.022394", + "url": "/v1/games/train-simulator-norfolk-southern-gp38-2-high-hood-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-norfolk-southern-gp50hh-loco-add-on/index.json b/site/public/v1/games/train-simulator-norfolk-southern-gp50hh-loco-add-on/index.json new file mode 100644 index 000000000000..3770c8b2db03 --- /dev/null +++ b/site/public/v1/games/train-simulator-norfolk-southern-gp50hh-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159972, + "slug": "train-simulator-norfolk-southern-gp50hh-loco-add-on", + "name": "Train Simulator: Norfolk Southern GP50HH Loco Add-On", + "release_date": "2020-08-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Travel by Train" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105728" + ], + "created_at": "2026-07-10T10:10:48.022394", + "updated_at": "2026-07-10T10:10:48.022394", + "url": "/v1/games/train-simulator-norfolk-southern-gp50hh-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-norfolk-southern-gp60-loco-add-on/index.json b/site/public/v1/games/train-simulator-norfolk-southern-gp60-loco-add-on/index.json new file mode 100644 index 000000000000..9a2c404495fc --- /dev/null +++ b/site/public/v1/games/train-simulator-norfolk-southern-gp60-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159973, + "slug": "train-simulator-norfolk-southern-gp60-loco-add-on", + "name": "Train Simulator: Norfolk Southern GP60 Loco Add-On", + "release_date": "2019-07-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105856" + ], + "created_at": "2026-07-10T10:10:48.022394", + "updated_at": "2026-07-10T10:10:48.022394", + "url": "/v1/games/train-simulator-norfolk-southern-gp60-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-norfolk-southern-heritage-sd70aces-loco-add-on/index.json b/site/public/v1/games/train-simulator-norfolk-southern-heritage-sd70aces-loco-add-on/index.json new file mode 100644 index 000000000000..21caae3bccd3 --- /dev/null +++ b/site/public/v1/games/train-simulator-norfolk-southern-heritage-sd70aces-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159974, + "slug": "train-simulator-norfolk-southern-heritage-sd70aces-loco-add-on", + "name": "Train Simulator: Norfolk Southern Heritage SD70ACes Loco Add-On", + "release_date": "2013-02-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106227" + ], + "created_at": "2026-07-10T10:10:48.022394", + "updated_at": "2026-07-10T10:10:48.022394", + "url": "/v1/games/train-simulator-norfolk-southern-heritage-sd70aces-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-norfolk-southern-n-line-route-add-on/index.json b/site/public/v1/games/train-simulator-norfolk-southern-n-line-route-add-on/index.json new file mode 100644 index 000000000000..e78e25a8ea91 --- /dev/null +++ b/site/public/v1/games/train-simulator-norfolk-southern-n-line-route-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159975, + "slug": "train-simulator-norfolk-southern-n-line-route-add-on", + "name": "Train Simulator: Norfolk Southern N-Line Route Add-On", + "release_date": "2019-06-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105480" + ], + "created_at": "2026-07-10T10:10:48.022394", + "updated_at": "2026-07-10T10:10:48.022394", + "url": "/v1/games/train-simulator-norfolk-southern-n-line-route-add-on" +} diff --git a/site/public/v1/games/train-simulator-norfolk-southern-sd40-2-high-nose-loco-add-on/index.json b/site/public/v1/games/train-simulator-norfolk-southern-sd40-2-high-nose-loco-add-on/index.json new file mode 100644 index 000000000000..d33ffdfcbc48 --- /dev/null +++ b/site/public/v1/games/train-simulator-norfolk-southern-sd40-2-high-nose-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159976, + "slug": "train-simulator-norfolk-southern-sd40-2-high-nose-loco-add-on", + "name": "Train Simulator: Norfolk Southern SD40-2 High Nose Loco Add-On", + "release_date": "2012-08-03", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105685" + ], + "created_at": "2026-07-10T10:10:48.023395", + "updated_at": "2026-07-10T10:10:48.023395", + "url": "/v1/games/train-simulator-norfolk-southern-sd40-2-high-nose-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-norfolk-southern-sd40-2-high-nose-long-hood-forward-loco-add-on/index.json b/site/public/v1/games/train-simulator-norfolk-southern-sd40-2-high-nose-long-hood-forward-loco-add-on/index.json new file mode 100644 index 000000000000..2f7794eedca6 --- /dev/null +++ b/site/public/v1/games/train-simulator-norfolk-southern-sd40-2-high-nose-long-hood-forward-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159977, + "slug": "train-simulator-norfolk-southern-sd40-2-high-nose-long-hood-forward-loco-add-on", + "name": "Train Simulator: Norfolk Southern SD40-2 High Nose Long Hood Forward Loco Add-On", + "release_date": "2014-07-17", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106427" + ], + "created_at": "2026-07-10T10:10:48.023395", + "updated_at": "2026-07-10T10:10:48.023395", + "url": "/v1/games/train-simulator-norfolk-southern-sd40-2-high-nose-long-hood-forward-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-norfolk-southern-sd45-high-hoods-loco-add-on/index.json b/site/public/v1/games/train-simulator-norfolk-southern-sd45-high-hoods-loco-add-on/index.json new file mode 100644 index 000000000000..a627de88b744 --- /dev/null +++ b/site/public/v1/games/train-simulator-norfolk-southern-sd45-high-hoods-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159978, + "slug": "train-simulator-norfolk-southern-sd45-high-hoods-loco-add-on", + "name": "Train Simulator: Norfolk Southern SD45 High Hoods Loco Add-On", + "release_date": "2013-09-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Digital Train Model" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106019" + ], + "created_at": "2026-07-10T10:10:48.023395", + "updated_at": "2026-07-10T10:10:48.023395", + "url": "/v1/games/train-simulator-norfolk-southern-sd45-high-hoods-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-norfolk-southern-sd60e-loco-add-on/index.json b/site/public/v1/games/train-simulator-norfolk-southern-sd60e-loco-add-on/index.json new file mode 100644 index 000000000000..a039a2f8686d --- /dev/null +++ b/site/public/v1/games/train-simulator-norfolk-southern-sd60e-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159979, + "slug": "train-simulator-norfolk-southern-sd60e-loco-add-on", + "name": "Train Simulator: Norfolk Southern SD60E Loco Add-On", + "release_date": "2019-03-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "The Loco Shop" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105945" + ], + "created_at": "2026-07-10T10:10:48.023395", + "updated_at": "2026-07-10T10:10:48.023395", + "url": "/v1/games/train-simulator-norfolk-southern-sd60e-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-north-jersey-coast-line-route-add-on/index.json b/site/public/v1/games/train-simulator-north-jersey-coast-line-route-add-on/index.json new file mode 100644 index 000000000000..fb6b0c8e6ba0 --- /dev/null +++ b/site/public/v1/games/train-simulator-north-jersey-coast-line-route-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159980, + "slug": "train-simulator-north-jersey-coast-line-route-add-on", + "name": "Train Simulator: North Jersey Coast Line Route Add-On", + "release_date": "2015-10-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105864" + ], + "created_at": "2026-07-10T10:10:48.023395", + "updated_at": "2026-07-10T10:10:48.023395", + "url": "/v1/games/train-simulator-north-jersey-coast-line-route-add-on" +} diff --git a/site/public/v1/games/train-simulator-north-jersey-coast-morristown-lines-route-add-on/index.json b/site/public/v1/games/train-simulator-north-jersey-coast-morristown-lines-route-add-on/index.json new file mode 100644 index 000000000000..80b526581520 --- /dev/null +++ b/site/public/v1/games/train-simulator-north-jersey-coast-morristown-lines-route-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159981, + "slug": "train-simulator-north-jersey-coast-morristown-lines-route-add-on", + "name": "Train Simulator: North Jersey Coast & Morristown Lines Route Add-On", + "release_date": "2017-04-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105966" + ], + "created_at": "2026-07-10T10:10:48.023395", + "updated_at": "2026-07-10T10:10:48.023395", + "url": "/v1/games/train-simulator-north-jersey-coast-morristown-lines-route-add-on" +} diff --git a/site/public/v1/games/train-simulator-north-london-goblin-lines-add-on/index.json b/site/public/v1/games/train-simulator-north-london-goblin-lines-add-on/index.json new file mode 100644 index 000000000000..ca11d19e6b21 --- /dev/null +++ b/site/public/v1/games/train-simulator-north-london-goblin-lines-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159982, + "slug": "train-simulator-north-london-goblin-lines-add-on", + "name": "Train Simulator: North London & Goblin Lines Add-On", + "release_date": "2017-03-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105968" + ], + "created_at": "2026-07-10T10:10:48.024395", + "updated_at": "2026-07-10T10:10:48.024395", + "url": "/v1/games/train-simulator-north-london-goblin-lines-add-on" +} diff --git a/site/public/v1/games/train-simulator-north-london-line-route-add-on/index.json b/site/public/v1/games/train-simulator-north-london-line-route-add-on/index.json new file mode 100644 index 000000000000..f51a424c01f0 --- /dev/null +++ b/site/public/v1/games/train-simulator-north-london-line-route-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159983, + "slug": "train-simulator-north-london-line-route-add-on", + "name": "Train Simulator: North London Line Route Add-On", + "release_date": "2015-10-22", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105554" + ], + "created_at": "2026-07-10T10:10:48.024395", + "updated_at": "2026-07-10T10:10:48.024395", + "url": "/v1/games/train-simulator-north-london-line-route-add-on" +} diff --git a/site/public/v1/games/train-simulator-north-somerset-railway-route-add-on/index.json b/site/public/v1/games/train-simulator-north-somerset-railway-route-add-on/index.json new file mode 100644 index 000000000000..9b431e5b0a68 --- /dev/null +++ b/site/public/v1/games/train-simulator-north-somerset-railway-route-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159984, + "slug": "train-simulator-north-somerset-railway-route-add-on", + "name": "Train Simulator: North Somerset Railway Route Add-On", + "release_date": "2016-03-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106054" + ], + "created_at": "2026-07-10T10:10:48.024395", + "updated_at": "2026-07-10T10:10:48.024395", + "url": "/v1/games/train-simulator-north-somerset-railway-route-add-on" +} diff --git a/site/public/v1/games/train-simulator-northeast-corridor-new-york-philadelphia-route-add-on/index.json b/site/public/v1/games/train-simulator-northeast-corridor-new-york-philadelphia-route-add-on/index.json new file mode 100644 index 000000000000..6b75270675b4 --- /dev/null +++ b/site/public/v1/games/train-simulator-northeast-corridor-new-york-philadelphia-route-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159985, + "slug": "train-simulator-northeast-corridor-new-york-philadelphia-route-add-on", + "name": "Train Simulator: Northeast Corridor: New York - Philadelphia Route Add-On", + "release_date": "2012-06-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105544" + ], + "created_at": "2026-07-10T10:10:48.024395", + "updated_at": "2026-07-10T10:10:48.024395", + "url": "/v1/games/train-simulator-northeast-corridor-new-york-philadelphia-route-add-on" +} diff --git a/site/public/v1/games/train-simulator-northeast-corridor-washington-dc-baltimore-route-add-on/index.json b/site/public/v1/games/train-simulator-northeast-corridor-washington-dc-baltimore-route-add-on/index.json new file mode 100644 index 000000000000..b22b739304a9 --- /dev/null +++ b/site/public/v1/games/train-simulator-northeast-corridor-washington-dc-baltimore-route-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159986, + "slug": "train-simulator-northeast-corridor-washington-dc-baltimore-route-add-on", + "name": "Train Simulator: Northeast Corridor: Washington DC - Baltimore Route Add-On", + "release_date": "2020-12-22", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105500" + ], + "created_at": "2026-07-10T10:10:48.024395", + "updated_at": "2026-07-10T10:10:48.024395", + "url": "/v1/games/train-simulator-northeast-corridor-washington-dc-baltimore-route-add-on" +} diff --git a/site/public/v1/games/train-simulator-nuremberg-regensburg-bahn/index.json b/site/public/v1/games/train-simulator-nuremberg-regensburg-bahn/index.json new file mode 100644 index 000000000000..ceee985e7667 --- /dev/null +++ b/site/public/v1/games/train-simulator-nuremberg-regensburg-bahn/index.json @@ -0,0 +1,33 @@ +{ + "id": 159987, + "slug": "train-simulator-nuremberg-regensburg-bahn", + "name": "Train Simulator: Nuremberg & Regensburg Bahn", + "release_date": "2020-09-17", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105591" + ], + "created_at": "2026-07-10T10:10:48.024395", + "updated_at": "2026-07-10T10:10:48.024395", + "url": "/v1/games/train-simulator-nuremberg-regensburg-bahn" +} diff --git a/site/public/v1/games/train-simulator-ohio-steel-2-route-add-on/index.json b/site/public/v1/games/train-simulator-ohio-steel-2-route-add-on/index.json new file mode 100644 index 000000000000..6e94a71e47b5 --- /dev/null +++ b/site/public/v1/games/train-simulator-ohio-steel-2-route-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159988, + "slug": "train-simulator-ohio-steel-2-route-add-on", + "name": "Train Simulator: Ohio Steel 2 Route Add-On", + "release_date": "2012-01-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "All Aboard" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106046" + ], + "created_at": "2026-07-10T10:10:48.025395", + "updated_at": "2026-07-10T10:10:48.025395", + "url": "/v1/games/train-simulator-ohio-steel-2-route-add-on" +} diff --git a/site/public/v1/games/train-simulator-outeniqua-choo-tjoe-route-add-on/index.json b/site/public/v1/games/train-simulator-outeniqua-choo-tjoe-route-add-on/index.json new file mode 100644 index 000000000000..db5b239ce9bb --- /dev/null +++ b/site/public/v1/games/train-simulator-outeniqua-choo-tjoe-route-add-on/index.json @@ -0,0 +1,31 @@ +{ + "id": 159989, + "slug": "train-simulator-outeniqua-choo-tjoe-route-add-on", + "name": "Train Simulator: Outeniqua Choo Tjoe Route Add-On", + "release_date": "2016-09-22", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105984" + ], + "created_at": "2026-07-10T10:10:48.025395", + "updated_at": "2026-07-10T10:10:48.025395", + "url": "/v1/games/train-simulator-outeniqua-choo-tjoe-route-add-on" +} diff --git a/site/public/v1/games/train-simulator-peninsula-corridor-san-francisco-gilroy-route-add-on/index.json b/site/public/v1/games/train-simulator-peninsula-corridor-san-francisco-gilroy-route-add-on/index.json new file mode 100644 index 000000000000..f7f9575fbb30 --- /dev/null +++ b/site/public/v1/games/train-simulator-peninsula-corridor-san-francisco-gilroy-route-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159991, + "slug": "train-simulator-peninsula-corridor-san-francisco-gilroy-route-add-on", + "name": "Train Simulator: Peninsula Corridor: San Francisco - Gilroy Route Add-On", + "release_date": "2017-12-20", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105978" + ], + "created_at": "2026-07-10T10:10:48.025395", + "updated_at": "2026-07-10T10:10:48.025395", + "url": "/v1/games/train-simulator-peninsula-corridor-san-francisco-gilroy-route-add-on" +} diff --git a/site/public/v1/games/train-simulator-peninsula-corridor-san-francisco-san-jose-route-add-on/index.json b/site/public/v1/games/train-simulator-peninsula-corridor-san-francisco-san-jose-route-add-on/index.json new file mode 100644 index 000000000000..6c4578a5e8a0 --- /dev/null +++ b/site/public/v1/games/train-simulator-peninsula-corridor-san-francisco-san-jose-route-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159992, + "slug": "train-simulator-peninsula-corridor-san-francisco-san-jose-route-add-on", + "name": "Train Simulator: Peninsula Corridor: San Francisco – San Jose Route Add-On", + "release_date": "2016-12-15", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105619" + ], + "created_at": "2026-07-10T10:10:48.025395", + "updated_at": "2026-07-10T10:10:48.025395", + "url": "/v1/games/train-simulator-peninsula-corridor-san-francisco-san-jose-route-add-on" +} diff --git a/site/public/v1/games/train-simulator-portsmouth-direct-line-london-waterloo-portsmouth-route-add-on/index.json b/site/public/v1/games/train-simulator-portsmouth-direct-line-london-waterloo-portsmouth-route-add-on/index.json new file mode 100644 index 000000000000..f79834a5b252 --- /dev/null +++ b/site/public/v1/games/train-simulator-portsmouth-direct-line-london-waterloo-portsmouth-route-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159993, + "slug": "train-simulator-portsmouth-direct-line-london-waterloo-portsmouth-route-add-on", + "name": "Train Simulator: Portsmouth Direct Line: London Waterloo - Portsmouth Route Add-On", + "release_date": "2018-07-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105746" + ], + "created_at": "2026-07-10T10:10:48.026395", + "updated_at": "2026-07-10T10:10:48.026395", + "url": "/v1/games/train-simulator-portsmouth-direct-line-london-waterloo-portsmouth-route-add-on" +} diff --git a/site/public/v1/games/train-simulator-portsmouth-direct-line-route-add-on/index.json b/site/public/v1/games/train-simulator-portsmouth-direct-line-route-add-on/index.json new file mode 100644 index 000000000000..c8a3a130b9bf --- /dev/null +++ b/site/public/v1/games/train-simulator-portsmouth-direct-line-route-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159994, + "slug": "train-simulator-portsmouth-direct-line-route-add-on", + "name": "Train Simulator: Portsmouth Direct Line Route Add-On", + "release_date": "2012-05-17", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105542" + ], + "created_at": "2026-07-10T10:10:48.026395", + "updated_at": "2026-07-10T10:10:48.026395", + "url": "/v1/games/train-simulator-portsmouth-direct-line-route-add-on" +} diff --git a/site/public/v1/games/train-simulator-powerhaul-class-66-v2-0-loco-add-on/index.json b/site/public/v1/games/train-simulator-powerhaul-class-66-v2-0-loco-add-on/index.json new file mode 100644 index 000000000000..c10b22649ae5 --- /dev/null +++ b/site/public/v1/games/train-simulator-powerhaul-class-66-v2-0-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159995, + "slug": "train-simulator-powerhaul-class-66-v2-0-loco-add-on", + "name": "Train Simulator: Powerhaul Class 66 V2.0 Loco Add-On", + "release_date": "2013-08-23", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106073" + ], + "created_at": "2026-07-10T10:10:48.026395", + "updated_at": "2026-07-10T10:10:48.026395", + "url": "/v1/games/train-simulator-powerhaul-class-66-v2-0-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-promontory-summit-route-add-on/index.json b/site/public/v1/games/train-simulator-promontory-summit-route-add-on/index.json new file mode 100644 index 000000000000..146ab775c21a --- /dev/null +++ b/site/public/v1/games/train-simulator-promontory-summit-route-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159996, + "slug": "train-simulator-promontory-summit-route-add-on", + "name": "Train Simulator: Promontory Summit Route Add-On", + "release_date": "2019-03-21", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Smokebox" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105855" + ], + "created_at": "2026-07-10T10:10:48.026395", + "updated_at": "2026-07-10T10:10:48.026395", + "url": "/v1/games/train-simulator-promontory-summit-route-add-on" +} diff --git a/site/public/v1/games/train-simulator-prr-alco-rs11-loco-add-on/index.json b/site/public/v1/games/train-simulator-prr-alco-rs11-loco-add-on/index.json new file mode 100644 index 000000000000..08c5a6bf2f35 --- /dev/null +++ b/site/public/v1/games/train-simulator-prr-alco-rs11-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159997, + "slug": "train-simulator-prr-alco-rs11-loco-add-on", + "name": "Train Simulator: PRR Alco RS11 Loco Add-On", + "release_date": "2013-04-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "virtualRailroads" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106243" + ], + "created_at": "2026-07-10T10:10:48.026395", + "updated_at": "2026-07-10T10:10:48.026395", + "url": "/v1/games/train-simulator-prr-alco-rs11-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-prr-baldwin-centipede-loco-add-on/index.json b/site/public/v1/games/train-simulator-prr-baldwin-centipede-loco-add-on/index.json new file mode 100644 index 000000000000..41c6a657242a --- /dev/null +++ b/site/public/v1/games/train-simulator-prr-baldwin-centipede-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159998, + "slug": "train-simulator-prr-baldwin-centipede-loco-add-on", + "name": "Train Simulator: PRR Baldwin Centipede Loco Add-On", + "release_date": "2012-11-29", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Reppo" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105887" + ], + "created_at": "2026-07-10T10:10:48.027395", + "updated_at": "2026-07-10T10:10:48.027395", + "url": "/v1/games/train-simulator-prr-baldwin-centipede-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-prr-dr6-4-2000-broadway-limited-loco-add-on/index.json b/site/public/v1/games/train-simulator-prr-dr6-4-2000-broadway-limited-loco-add-on/index.json new file mode 100644 index 000000000000..b7f4c6aca8bb --- /dev/null +++ b/site/public/v1/games/train-simulator-prr-dr6-4-2000-broadway-limited-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 159999, + "slug": "train-simulator-prr-dr6-4-2000-broadway-limited-loco-add-on", + "name": "Train Simulator: PRR DR6-4-2000 & Broadway Limited Loco Add-On", + "release_date": "2019-05-16", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Digital Train Model" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105691" + ], + "created_at": "2026-07-10T10:10:48.027395", + "updated_at": "2026-07-10T10:10:48.027395", + "url": "/v1/games/train-simulator-prr-dr6-4-2000-broadway-limited-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-prr-fa-1-fa-2-loco-add-on/index.json b/site/public/v1/games/train-simulator-prr-fa-1-fa-2-loco-add-on/index.json new file mode 100644 index 000000000000..428ee60556f4 --- /dev/null +++ b/site/public/v1/games/train-simulator-prr-fa-1-fa-2-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 160000, + "slug": "train-simulator-prr-fa-1-fa-2-loco-add-on", + "name": "Train Simulator: PRR FA-1 & FA-2 Loco Add-On", + "release_date": "2019-11-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Digital Train Model" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105963" + ], + "created_at": "2026-07-10T10:10:48.027395", + "updated_at": "2026-07-10T10:10:48.027395", + "url": "/v1/games/train-simulator-prr-fa-1-fa-2-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-prr-ge-44-loco-add-on/index.json b/site/public/v1/games/train-simulator-prr-ge-44-loco-add-on/index.json new file mode 100644 index 000000000000..d3b538c93bd5 --- /dev/null +++ b/site/public/v1/games/train-simulator-prr-ge-44-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 160001, + "slug": "train-simulator-prr-ge-44-loco-add-on", + "name": "Train Simulator: PRR GE 44 Loco Add-On", + "release_date": "2012-08-23", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Digital Train Model" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106018" + ], + "created_at": "2026-07-10T10:10:48.027395", + "updated_at": "2026-07-10T10:10:48.027395", + "url": "/v1/games/train-simulator-prr-ge-44-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-prr-gg1-loco-add-on/index.json b/site/public/v1/games/train-simulator-prr-gg1-loco-add-on/index.json new file mode 100644 index 000000000000..f984e7f4c2ee --- /dev/null +++ b/site/public/v1/games/train-simulator-prr-gg1-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 160002, + "slug": "train-simulator-prr-gg1-loco-add-on", + "name": "Train Simulator: PRR GG1 Loco Add-On", + "release_date": "2011-12-09", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106023" + ], + "created_at": "2026-07-10T10:10:48.027395", + "updated_at": "2026-07-10T10:10:48.027395", + "url": "/v1/games/train-simulator-prr-gg1-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-prr-k4-loco-add-on/index.json b/site/public/v1/games/train-simulator-prr-k4-loco-add-on/index.json new file mode 100644 index 000000000000..1600115b92cf --- /dev/null +++ b/site/public/v1/games/train-simulator-prr-k4-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 160003, + "slug": "train-simulator-prr-k4-loco-add-on", + "name": "Train Simulator: PRR K4 Loco Add-On", + "release_date": "2012-02-09", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105765" + ], + "created_at": "2026-07-10T10:10:48.027395", + "updated_at": "2026-07-10T10:10:48.027395", + "url": "/v1/games/train-simulator-prr-k4-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-prr-rf-16-sharknose-loco-add-on/index.json b/site/public/v1/games/train-simulator-prr-rf-16-sharknose-loco-add-on/index.json new file mode 100644 index 000000000000..898df4315a75 --- /dev/null +++ b/site/public/v1/games/train-simulator-prr-rf-16-sharknose-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 160004, + "slug": "train-simulator-prr-rf-16-sharknose-loco-add-on", + "name": "Train Simulator: PRR RF-16 'Sharknose' Loco Add-On", + "release_date": "2015-07-02", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Digital Train Model" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105892" + ], + "created_at": "2026-07-10T10:10:48.027395", + "updated_at": "2026-07-10T10:10:48.027395", + "url": "/v1/games/train-simulator-prr-rf-16-sharknose-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-rascal-cottonwood-route-add-on/index.json b/site/public/v1/games/train-simulator-rascal-cottonwood-route-add-on/index.json new file mode 100644 index 000000000000..f8d2fd54fa8d --- /dev/null +++ b/site/public/v1/games/train-simulator-rascal-cottonwood-route-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 160005, + "slug": "train-simulator-rascal-cottonwood-route-add-on", + "name": "Train Simulator: Rascal & Cottonwood Route Add-On", + "release_date": "2009-09-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "All Aboard" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106258" + ], + "created_at": "2026-07-10T10:10:48.028395", + "updated_at": "2026-07-10T10:10:48.028395", + "url": "/v1/games/train-simulator-rascal-cottonwood-route-add-on" +} diff --git a/site/public/v1/games/train-simulator-raton-pass-trinidad-raton-route-add-on/index.json b/site/public/v1/games/train-simulator-raton-pass-trinidad-raton-route-add-on/index.json new file mode 100644 index 000000000000..e1361fa19fe7 --- /dev/null +++ b/site/public/v1/games/train-simulator-raton-pass-trinidad-raton-route-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 160006, + "slug": "train-simulator-raton-pass-trinidad-raton-route-add-on", + "name": "Train Simulator: Raton Pass: Trinidad - Raton Route Add-On", + "release_date": "2018-08-09", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Milepost Simulations" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105985" + ], + "created_at": "2026-07-10T10:10:48.028395", + "updated_at": "2026-07-10T10:10:48.028395", + "url": "/v1/games/train-simulator-raton-pass-trinidad-raton-route-add-on" +} diff --git a/site/public/v1/games/train-simulator-rebuilt-bulleid-light-pacific-steam-loco-add-on/index.json b/site/public/v1/games/train-simulator-rebuilt-bulleid-light-pacific-steam-loco-add-on/index.json new file mode 100644 index 000000000000..e96655348994 --- /dev/null +++ b/site/public/v1/games/train-simulator-rebuilt-bulleid-light-pacific-steam-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 160008, + "slug": "train-simulator-rebuilt-bulleid-light-pacific-steam-loco-add-on", + "name": "Train Simulator: Rebuilt Bulleid Light Pacific Steam Loco Add-On", + "release_date": "2017-07-27", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Just Trains" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106135" + ], + "created_at": "2026-07-10T10:10:48.028395", + "updated_at": "2026-07-10T10:10:48.028395", + "url": "/v1/games/train-simulator-rebuilt-bulleid-light-pacific-steam-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-regional-railways-br-class-142-pacer-dmu/index.json b/site/public/v1/games/train-simulator-regional-railways-br-class-142-pacer-dmu/index.json new file mode 100644 index 000000000000..878dc7991386 --- /dev/null +++ b/site/public/v1/games/train-simulator-regional-railways-br-class-142-pacer-dmu/index.json @@ -0,0 +1,33 @@ +{ + "id": 160009, + "slug": "train-simulator-regional-railways-br-class-142-pacer-dmu", + "name": "Train Simulator: Regional Railways BR Class 142 'Pacer' DMU", + "release_date": "2019-10-03", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105512" + ], + "created_at": "2026-07-10T10:10:48.029464", + "updated_at": "2026-07-10T10:10:48.029464", + "url": "/v1/games/train-simulator-regional-railways-br-class-142-pacer-dmu" +} diff --git a/site/public/v1/games/train-simulator-return-to-maerdy-loco-add-on/index.json b/site/public/v1/games/train-simulator-return-to-maerdy-loco-add-on/index.json new file mode 100644 index 000000000000..f625134755f3 --- /dev/null +++ b/site/public/v1/games/train-simulator-return-to-maerdy-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 160010, + "slug": "train-simulator-return-to-maerdy-loco-add-on", + "name": "Train Simulator: Return to Maerdy Loco Add-On", + "release_date": "2015-12-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "MeshTools" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106058" + ], + "created_at": "2026-07-10T10:10:48.029464", + "updated_at": "2026-07-10T10:10:48.029464", + "url": "/v1/games/train-simulator-return-to-maerdy-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-rhb-enhancement-pack-01/index.json b/site/public/v1/games/train-simulator-rhb-enhancement-pack-01/index.json new file mode 100644 index 000000000000..514608b84b51 --- /dev/null +++ b/site/public/v1/games/train-simulator-rhb-enhancement-pack-01/index.json @@ -0,0 +1,33 @@ +{ + "id": 160011, + "slug": "train-simulator-rhb-enhancement-pack-01", + "name": "Train Simulator: RhB Enhancement Pack 01", + "release_date": "2016-11-17", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Thomson Interactive" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105791" + ], + "created_at": "2026-07-10T10:10:48.029464", + "updated_at": "2026-07-10T10:10:48.029464", + "url": "/v1/games/train-simulator-rhb-enhancement-pack-01" +} diff --git a/site/public/v1/games/train-simulator-rhb-enhancement-pack-02-add-on/index.json b/site/public/v1/games/train-simulator-rhb-enhancement-pack-02-add-on/index.json new file mode 100644 index 000000000000..40a9cf2148ef --- /dev/null +++ b/site/public/v1/games/train-simulator-rhb-enhancement-pack-02-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 160012, + "slug": "train-simulator-rhb-enhancement-pack-02-add-on", + "name": "Train Simulator: RhB Enhancement Pack 02 Add-On", + "release_date": "2018-01-11", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Thomson Interactive" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105792" + ], + "created_at": "2026-07-10T10:10:48.029464", + "updated_at": "2026-07-10T10:10:48.029464", + "url": "/v1/games/train-simulator-rhb-enhancement-pack-02-add-on" +} diff --git a/site/public/v1/games/train-simulator-rhb-enhancement-pack-03-add-on/index.json b/site/public/v1/games/train-simulator-rhb-enhancement-pack-03-add-on/index.json new file mode 100644 index 000000000000..79a3dd1170f6 --- /dev/null +++ b/site/public/v1/games/train-simulator-rhb-enhancement-pack-03-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 160013, + "slug": "train-simulator-rhb-enhancement-pack-03-add-on", + "name": "Train Simulator: RhB Enhancement Pack 03 Add-On", + "release_date": "2019-01-31", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Thomson Interactive" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105793" + ], + "created_at": "2026-07-10T10:10:48.029464", + "updated_at": "2026-07-10T10:10:48.029464", + "url": "/v1/games/train-simulator-rhb-enhancement-pack-03-add-on" +} diff --git a/site/public/v1/games/train-simulator-rhb-enhancement-pack-04-add-on/index.json b/site/public/v1/games/train-simulator-rhb-enhancement-pack-04-add-on/index.json new file mode 100644 index 000000000000..6e59321bc855 --- /dev/null +++ b/site/public/v1/games/train-simulator-rhb-enhancement-pack-04-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 160014, + "slug": "train-simulator-rhb-enhancement-pack-04-add-on", + "name": "Train Simulator: RhB Enhancement Pack 04 Add-On", + "release_date": "2019-12-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Rivet Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105789" + ], + "created_at": "2026-07-10T10:10:48.029464", + "updated_at": "2026-07-10T10:10:48.029464", + "url": "/v1/games/train-simulator-rhb-enhancement-pack-04-add-on" +} diff --git a/site/public/v1/games/train-simulator-rhb-enhancement-pack-05-add-on/index.json b/site/public/v1/games/train-simulator-rhb-enhancement-pack-05-add-on/index.json new file mode 100644 index 000000000000..c98bd96c1b76 --- /dev/null +++ b/site/public/v1/games/train-simulator-rhb-enhancement-pack-05-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 160015, + "slug": "train-simulator-rhb-enhancement-pack-05-add-on", + "name": "Train Simulator: RhB Enhancement Pack 05 Add-On", + "release_date": "2020-01-23", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Rivet Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105790" + ], + "created_at": "2026-07-10T10:10:48.030459", + "updated_at": "2026-07-10T10:10:48.030459", + "url": "/v1/games/train-simulator-rhb-enhancement-pack-05-add-on" +} diff --git a/site/public/v1/games/train-simulator-rhine-valley-freiburg-basel-route-add-on/index.json b/site/public/v1/games/train-simulator-rhine-valley-freiburg-basel-route-add-on/index.json new file mode 100644 index 000000000000..126fcf5d3337 --- /dev/null +++ b/site/public/v1/games/train-simulator-rhine-valley-freiburg-basel-route-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 160016, + "slug": "train-simulator-rhine-valley-freiburg-basel-route-add-on", + "name": "Train Simulator: Rhine Valley: Freiburg - Basel Route Add-On", + "release_date": "2018-11-15", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Aerosoft" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105854" + ], + "created_at": "2026-07-10T10:10:48.030459", + "updated_at": "2026-07-10T10:10:48.030459", + "url": "/v1/games/train-simulator-rhine-valley-freiburg-basel-route-add-on" +} diff --git a/site/public/v1/games/train-simulator-riviera-line-in-the-fifties-exeter-kingswear-route-add-on/index.json b/site/public/v1/games/train-simulator-riviera-line-in-the-fifties-exeter-kingswear-route-add-on/index.json new file mode 100644 index 000000000000..2fd034f76d7d --- /dev/null +++ b/site/public/v1/games/train-simulator-riviera-line-in-the-fifties-exeter-kingswear-route-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 160017, + "slug": "train-simulator-riviera-line-in-the-fifties-exeter-kingswear-route-add-on", + "name": "Train Simulator: Riviera Line in the Fifties: Exeter - Kingswear Route Add-On", + "release_date": "2015-09-17", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105523" + ], + "created_at": "2026-07-10T10:10:48.030459", + "updated_at": "2026-07-10T10:10:48.030459", + "url": "/v1/games/train-simulator-riviera-line-in-the-fifties-exeter-kingswear-route-add-on" +} diff --git a/site/public/v1/games/train-simulator-ruhr-sieg-route-add-on/index.json b/site/public/v1/games/train-simulator-ruhr-sieg-route-add-on/index.json new file mode 100644 index 000000000000..c4b3cc8856b8 --- /dev/null +++ b/site/public/v1/games/train-simulator-ruhr-sieg-route-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 160018, + "slug": "train-simulator-ruhr-sieg-route-add-on", + "name": "Train Simulator: Ruhr-Sieg Route Add-On", + "release_date": "2012-09-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105567" + ], + "created_at": "2026-07-10T10:10:48.030459", + "updated_at": "2026-07-10T10:10:48.030459", + "url": "/v1/games/train-simulator-ruhr-sieg-route-add-on" +} diff --git a/site/public/v1/games/train-simulator-s-dbahn-bruck-an-der-mur-maribor-route-add-on/index.json b/site/public/v1/games/train-simulator-s-dbahn-bruck-an-der-mur-maribor-route-add-on/index.json new file mode 100644 index 000000000000..55af903670c8 --- /dev/null +++ b/site/public/v1/games/train-simulator-s-dbahn-bruck-an-der-mur-maribor-route-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 160019, + "slug": "train-simulator-s-dbahn-bruck-an-der-mur-maribor-route-add-on", + "name": "Train Simulator: Südbahn: Bruck an der Mur - Maribor Route Add-On", + "release_date": "2019-06-27", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "RSSLO" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105857" + ], + "created_at": "2026-07-10T10:10:48.030459", + "updated_at": "2026-07-10T10:10:48.030459", + "url": "/v1/games/train-simulator-s-dbahn-bruck-an-der-mur-maribor-route-add-on" +} diff --git a/site/public/v1/games/train-simulator-s-series-363-loco-add-on/index.json b/site/public/v1/games/train-simulator-s-series-363-loco-add-on/index.json new file mode 100644 index 000000000000..102621392183 --- /dev/null +++ b/site/public/v1/games/train-simulator-s-series-363-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 160020, + "slug": "train-simulator-s-series-363-loco-add-on", + "name": "Train Simulator: SŽ Series 363 Loco Add-On", + "release_date": "2019-09-27", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "RSSLO" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105956" + ], + "created_at": "2026-07-10T10:10:48.030459", + "updated_at": "2026-07-10T10:10:48.030459", + "url": "/v1/games/train-simulator-s-series-363-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-s25-heart-of-berlin-hennigsdorf-teltow-route-add-on/index.json b/site/public/v1/games/train-simulator-s25-heart-of-berlin-hennigsdorf-teltow-route-add-on/index.json new file mode 100644 index 000000000000..95d038b26c6b --- /dev/null +++ b/site/public/v1/games/train-simulator-s25-heart-of-berlin-hennigsdorf-teltow-route-add-on/index.json @@ -0,0 +1,31 @@ +{ + "id": 160021, + "slug": "train-simulator-s25-heart-of-berlin-hennigsdorf-teltow-route-add-on", + "name": "Train Simulator: S25 Heart of Berlin: Hennigsdorf - Teltow Route Add-On", + "release_date": "2021-01-29", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105506" + ], + "created_at": "2026-07-10T10:10:48.030459", + "updated_at": "2026-07-10T10:10:48.030459", + "url": "/v1/games/train-simulator-s25-heart-of-berlin-hennigsdorf-teltow-route-add-on" +} diff --git a/site/public/v1/games/train-simulator-sacramento-northern-suisun-bay-san-francisco-route-add-on/index.json b/site/public/v1/games/train-simulator-sacramento-northern-suisun-bay-san-francisco-route-add-on/index.json new file mode 100644 index 000000000000..c26b7df4cd36 --- /dev/null +++ b/site/public/v1/games/train-simulator-sacramento-northern-suisun-bay-san-francisco-route-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 160022, + "slug": "train-simulator-sacramento-northern-suisun-bay-san-francisco-route-add-on", + "name": "Train Simulator: Sacramento Northern: Suisun Bay – San Francisco Route Add-On", + "release_date": "2017-01-19", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "G-TraX Simulations" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105969" + ], + "created_at": "2026-07-10T10:10:48.031490", + "updated_at": "2026-07-10T10:10:48.031490", + "url": "/v1/games/train-simulator-sacramento-northern-suisun-bay-san-francisco-route-add-on" +} diff --git a/site/public/v1/games/train-simulator-salt-lake-city-route-extension-add-on/index.json b/site/public/v1/games/train-simulator-salt-lake-city-route-extension-add-on/index.json new file mode 100644 index 000000000000..d1eb3ab3980e --- /dev/null +++ b/site/public/v1/games/train-simulator-salt-lake-city-route-extension-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 160023, + "slug": "train-simulator-salt-lake-city-route-extension-add-on", + "name": "Train Simulator: Salt Lake City Route Extension Add-On", + "release_date": "2018-05-17", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105587" + ], + "created_at": "2026-07-10T10:10:48.031490", + "updated_at": "2026-07-10T10:10:48.031490", + "url": "/v1/games/train-simulator-salt-lake-city-route-extension-add-on" +} diff --git a/site/public/v1/games/train-simulator-san-diego-commuter-rail-f59phi-loco-add-on/index.json b/site/public/v1/games/train-simulator-san-diego-commuter-rail-f59phi-loco-add-on/index.json new file mode 100644 index 000000000000..261fbb6661ba --- /dev/null +++ b/site/public/v1/games/train-simulator-san-diego-commuter-rail-f59phi-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 160024, + "slug": "train-simulator-san-diego-commuter-rail-f59phi-loco-add-on", + "name": "Train Simulator: San Diego Commuter Rail F59PHI Loco Add-On", + "release_date": "2014-09-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105637" + ], + "created_at": "2026-07-10T10:10:48.031490", + "updated_at": "2026-07-10T10:10:48.031490", + "url": "/v1/games/train-simulator-san-diego-commuter-rail-f59phi-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-sbb-rabe-523-emu-add-on/index.json b/site/public/v1/games/train-simulator-sbb-rabe-523-emu-add-on/index.json new file mode 100644 index 000000000000..afc321d8d693 --- /dev/null +++ b/site/public/v1/games/train-simulator-sbb-rabe-523-emu-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 160025, + "slug": "train-simulator-sbb-rabe-523-emu-add-on", + "name": "Train Simulator: SBB RABe 523 EMU Add-On", + "release_date": "2020-05-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Rivet Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105787" + ], + "created_at": "2026-07-10T10:10:48.031490", + "updated_at": "2026-07-10T10:10:48.031490", + "url": "/v1/games/train-simulator-sbb-rabe-523-emu-add-on" +} diff --git a/site/public/v1/games/train-simulator-scotrail-class-380-emu-add-on/index.json b/site/public/v1/games/train-simulator-scotrail-class-380-emu-add-on/index.json new file mode 100644 index 000000000000..1d64fe863ef9 --- /dev/null +++ b/site/public/v1/games/train-simulator-scotrail-class-380-emu-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 160026, + "slug": "train-simulator-scotrail-class-380-emu-add-on", + "name": "Train Simulator: ScotRail Class 380 EMU Add-On", + "release_date": "2012-08-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Thomson Interactive" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106272" + ], + "created_at": "2026-07-10T10:10:48.031490", + "updated_at": "2026-07-10T10:10:48.031490", + "url": "/v1/games/train-simulator-scotrail-class-380-emu-add-on" +} diff --git a/site/public/v1/games/train-simulator-scotrail-class-68-loco-add-on/index.json b/site/public/v1/games/train-simulator-scotrail-class-68-loco-add-on/index.json new file mode 100644 index 000000000000..0dae289d0172 --- /dev/null +++ b/site/public/v1/games/train-simulator-scotrail-class-68-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 160027, + "slug": "train-simulator-scotrail-class-68-loco-add-on", + "name": "Train Simulator: ScotRail Class 68 Loco Add-on", + "release_date": "2016-07-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106163" + ], + "created_at": "2026-07-10T10:10:48.032489", + "updated_at": "2026-07-10T10:10:48.032489", + "url": "/v1/games/train-simulator-scotrail-class-68-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-sd40-2-independence-loco-add-on/index.json b/site/public/v1/games/train-simulator-sd40-2-independence-loco-add-on/index.json new file mode 100644 index 000000000000..6f6da386386b --- /dev/null +++ b/site/public/v1/games/train-simulator-sd40-2-independence-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 160028, + "slug": "train-simulator-sd40-2-independence-loco-add-on", + "name": "Train Simulator: SD40-2 Independence Loco Add-On", + "release_date": "2013-07-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106051" + ], + "created_at": "2026-07-10T10:10:48.032489", + "updated_at": "2026-07-10T10:10:48.032489", + "url": "/v1/games/train-simulator-sd40-2-independence-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-seaboard-ge-u36b-loco-add-on/index.json b/site/public/v1/games/train-simulator-seaboard-ge-u36b-loco-add-on/index.json new file mode 100644 index 000000000000..ef38621a1e14 --- /dev/null +++ b/site/public/v1/games/train-simulator-seaboard-ge-u36b-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 160029, + "slug": "train-simulator-seaboard-ge-u36b-loco-add-on", + "name": "Train Simulator: Seaboard GE U36B Loco Add-On", + "release_date": "2015-02-26", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105498" + ], + "created_at": "2026-07-10T10:10:48.032489", + "updated_at": "2026-07-10T10:10:48.032489", + "url": "/v1/games/train-simulator-seaboard-ge-u36b-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-semmeringbahn-m-rzzuschlag-to-gloggnitz-route-add-on/index.json b/site/public/v1/games/train-simulator-semmeringbahn-m-rzzuschlag-to-gloggnitz-route-add-on/index.json new file mode 100644 index 000000000000..abddee2e6e32 --- /dev/null +++ b/site/public/v1/games/train-simulator-semmeringbahn-m-rzzuschlag-to-gloggnitz-route-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 160030, + "slug": "train-simulator-semmeringbahn-m-rzzuschlag-to-gloggnitz-route-add-on", + "name": "Train Simulator: Semmeringbahn - Mürzzuschlag to Gloggnitz Route Add-On", + "release_date": "2015-12-11", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105629" + ], + "created_at": "2026-07-10T10:10:48.032489", + "updated_at": "2026-07-10T10:10:48.032489", + "url": "/v1/games/train-simulator-semmeringbahn-m-rzzuschlag-to-gloggnitz-route-add-on" +} diff --git a/site/public/v1/games/train-simulator-settle-carlisle-specials-add-on/index.json b/site/public/v1/games/train-simulator-settle-carlisle-specials-add-on/index.json new file mode 100644 index 000000000000..900f0487b253 --- /dev/null +++ b/site/public/v1/games/train-simulator-settle-carlisle-specials-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 160031, + "slug": "train-simulator-settle-carlisle-specials-add-on", + "name": "Train Simulator: Settle Carlisle Specials Add-On", + "release_date": "2012-05-03", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105496" + ], + "created_at": "2026-07-10T10:10:48.032489", + "updated_at": "2026-07-10T10:10:48.032489", + "url": "/v1/games/train-simulator-settle-carlisle-specials-add-on" +} diff --git a/site/public/v1/games/train-simulator-settle-to-carlisle-route-add-on/index.json b/site/public/v1/games/train-simulator-settle-to-carlisle-route-add-on/index.json new file mode 100644 index 000000000000..739d1ed99d0e --- /dev/null +++ b/site/public/v1/games/train-simulator-settle-to-carlisle-route-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 160032, + "slug": "train-simulator-settle-to-carlisle-route-add-on", + "name": "Train Simulator: Settle to Carlisle Route Add-on", + "release_date": "2012-04-05", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105495" + ], + "created_at": "2026-07-10T10:10:48.032489", + "updated_at": "2026-07-10T10:10:48.032489", + "url": "/v1/games/train-simulator-settle-to-carlisle-route-add-on" +} diff --git a/site/public/v1/games/train-simulator-shanghai-maglev-route-add-on/index.json b/site/public/v1/games/train-simulator-shanghai-maglev-route-add-on/index.json new file mode 100644 index 000000000000..19ca1bf739f9 --- /dev/null +++ b/site/public/v1/games/train-simulator-shanghai-maglev-route-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 160033, + "slug": "train-simulator-shanghai-maglev-route-add-on", + "name": "Train Simulator: Shanghai Maglev Route Add-On", + "release_date": "2016-02-23", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Union Workshop" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105717" + ], + "created_at": "2026-07-10T10:10:48.033467", + "updated_at": "2026-07-10T10:10:48.033467", + "url": "/v1/games/train-simulator-shanghai-maglev-route-add-on" +} diff --git a/site/public/v1/games/train-simulator-sheerness-branch-extension-route-add-on/index.json b/site/public/v1/games/train-simulator-sheerness-branch-extension-route-add-on/index.json new file mode 100644 index 000000000000..7fcfeefdd606 --- /dev/null +++ b/site/public/v1/games/train-simulator-sheerness-branch-extension-route-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 160034, + "slug": "train-simulator-sheerness-branch-extension-route-add-on", + "name": "Train Simulator: Sheerness Branch Extension Route Add-On", + "release_date": "2013-09-30", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105537" + ], + "created_at": "2026-07-10T10:10:48.033467", + "updated_at": "2026-07-10T10:10:48.033467", + "url": "/v1/games/train-simulator-sheerness-branch-extension-route-add-on" +} diff --git a/site/public/v1/games/train-simulator-sherman-hill-route-add-on/index.json b/site/public/v1/games/train-simulator-sherman-hill-route-add-on/index.json new file mode 100644 index 000000000000..9f3b99f5772b --- /dev/null +++ b/site/public/v1/games/train-simulator-sherman-hill-route-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 160035, + "slug": "train-simulator-sherman-hill-route-add-on", + "name": "Train Simulator: Sherman Hill Route Add-On", + "release_date": "2012-09-20", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106439" + ], + "created_at": "2026-07-10T10:10:48.033467", + "updated_at": "2026-07-10T10:10:48.033467", + "url": "/v1/games/train-simulator-sherman-hill-route-add-on" +} diff --git a/site/public/v1/games/train-simulator-soldier-summit-route-add-on/index.json b/site/public/v1/games/train-simulator-soldier-summit-route-add-on/index.json new file mode 100644 index 000000000000..68eb59b2ee2a --- /dev/null +++ b/site/public/v1/games/train-simulator-soldier-summit-route-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 160036, + "slug": "train-simulator-soldier-summit-route-add-on", + "name": "Train Simulator: Soldier Summit Route Add-On", + "release_date": "2015-05-21", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105572" + ], + "created_at": "2026-07-10T10:10:48.033467", + "updated_at": "2026-07-10T10:10:48.033467", + "url": "/v1/games/train-simulator-soldier-summit-route-add-on" +} diff --git a/site/public/v1/games/train-simulator-somerset-dorset-railway-route-add-on/index.json b/site/public/v1/games/train-simulator-somerset-dorset-railway-route-add-on/index.json new file mode 100644 index 000000000000..bf8af9617d36 --- /dev/null +++ b/site/public/v1/games/train-simulator-somerset-dorset-railway-route-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 160037, + "slug": "train-simulator-somerset-dorset-railway-route-add-on", + "name": "Train Simulator: Somerset & Dorset Railway Route Add-On", + "release_date": "2012-09-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105760" + ], + "created_at": "2026-07-10T10:10:48.033467", + "updated_at": "2026-07-10T10:10:48.033467", + "url": "/v1/games/train-simulator-somerset-dorset-railway-route-add-on" +} diff --git a/site/public/v1/games/train-simulator-south-devon-main-line-highbridge-and-burnham-plymouth-route-add-on/index.json b/site/public/v1/games/train-simulator-south-devon-main-line-highbridge-and-burnham-plymouth-route-add-on/index.json new file mode 100644 index 000000000000..2a3f218c93d5 --- /dev/null +++ b/site/public/v1/games/train-simulator-south-devon-main-line-highbridge-and-burnham-plymouth-route-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 160038, + "slug": "train-simulator-south-devon-main-line-highbridge-and-burnham-plymouth-route-add-on", + "name": "Train Simulator: South Devon Main Line: Highbridge and Burnham - Plymouth Route Add-On", + "release_date": "2021-06-03", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Just Trains" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105583" + ], + "created_at": "2026-07-10T10:10:48.033467", + "updated_at": "2026-07-10T10:10:48.033467", + "url": "/v1/games/train-simulator-south-devon-main-line-highbridge-and-burnham-plymouth-route-add-on" +} diff --git a/site/public/v1/games/train-simulator-south-london-network-route-add-on/index.json b/site/public/v1/games/train-simulator-south-london-network-route-add-on/index.json new file mode 100644 index 000000000000..7910e4403394 --- /dev/null +++ b/site/public/v1/games/train-simulator-south-london-network-route-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 160039, + "slug": "train-simulator-south-london-network-route-add-on", + "name": "Train Simulator: South London Network Route Add-On", + "release_date": "2014-11-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105849" + ], + "created_at": "2026-07-10T10:10:48.034472", + "updated_at": "2026-07-10T10:10:48.034472", + "url": "/v1/games/train-simulator-south-london-network-route-add-on" +} diff --git a/site/public/v1/games/train-simulator-south-wales-coastal-bristol-swansea-route-add-on/index.json b/site/public/v1/games/train-simulator-south-wales-coastal-bristol-swansea-route-add-on/index.json new file mode 100644 index 000000000000..fc35217c065a --- /dev/null +++ b/site/public/v1/games/train-simulator-south-wales-coastal-bristol-swansea-route-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 160040, + "slug": "train-simulator-south-wales-coastal-bristol-swansea-route-add-on", + "name": "Train Simulator: South Wales Coastal: Bristol - Swansea Route Add-on", + "release_date": "2020-11-27", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105477" + ], + "created_at": "2026-07-10T10:10:48.034472", + "updated_at": "2026-07-10T10:10:48.034472", + "url": "/v1/games/train-simulator-south-wales-coastal-bristol-swansea-route-add-on" +} diff --git a/site/public/v1/games/train-simulator-south-wales-coastal-trainload-br-class-60-twin-pack/index.json b/site/public/v1/games/train-simulator-south-wales-coastal-trainload-br-class-60-twin-pack/index.json new file mode 100644 index 000000000000..ccebc03164f8 --- /dev/null +++ b/site/public/v1/games/train-simulator-south-wales-coastal-trainload-br-class-60-twin-pack/index.json @@ -0,0 +1,33 @@ +{ + "id": 160041, + "slug": "train-simulator-south-wales-coastal-trainload-br-class-60-twin-pack", + "name": "Train Simulator: South Wales Coastal & Trainload BR Class 60 Twin Pack", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111670084" + ], + "created_at": "2026-07-10T10:10:48.034472", + "updated_at": "2026-07-10T10:10:48.034472", + "url": "/v1/games/train-simulator-south-wales-coastal-trainload-br-class-60-twin-pack" +} diff --git a/site/public/v1/games/train-simulator-south-west-china-high-speed-route-add-on/index.json b/site/public/v1/games/train-simulator-south-west-china-high-speed-route-add-on/index.json new file mode 100644 index 000000000000..52e687f553f9 --- /dev/null +++ b/site/public/v1/games/train-simulator-south-west-china-high-speed-route-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 160042, + "slug": "train-simulator-south-west-china-high-speed-route-add-on", + "name": "Train Simulator: South West China High Speed Route Add-On", + "release_date": "2017-04-06", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Just Trains" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106440" + ], + "created_at": "2026-07-10T10:10:48.034472", + "updated_at": "2026-07-10T10:10:48.034472", + "url": "/v1/games/train-simulator-south-west-china-high-speed-route-add-on" +} diff --git a/site/public/v1/games/train-simulator-south-west-trains-class-444-emu-add-on/index.json b/site/public/v1/games/train-simulator-south-west-trains-class-444-emu-add-on/index.json new file mode 100644 index 000000000000..5e87c31e7a0c --- /dev/null +++ b/site/public/v1/games/train-simulator-south-west-trains-class-444-emu-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 160043, + "slug": "train-simulator-south-west-trains-class-444-emu-add-on", + "name": "Train Simulator: South West Trains Class 444 EMU Add-On", + "release_date": "2012-03-08", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105561" + ], + "created_at": "2026-07-10T10:10:48.034472", + "updated_at": "2026-07-10T10:10:48.034472", + "url": "/v1/games/train-simulator-south-west-trains-class-444-emu-add-on" +} diff --git a/site/public/v1/games/train-simulator-south-western-main-line-southampton-bournemouth-route-add-on/index.json b/site/public/v1/games/train-simulator-south-western-main-line-southampton-bournemouth-route-add-on/index.json new file mode 100644 index 000000000000..41ad091d4e78 --- /dev/null +++ b/site/public/v1/games/train-simulator-south-western-main-line-southampton-bournemouth-route-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 160044, + "slug": "train-simulator-south-western-main-line-southampton-bournemouth-route-add-on", + "name": "Train Simulator: South Western Main Line: Southampton - Bournemouth Route Add-On", + "release_date": "2019-07-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105582" + ], + "created_at": "2026-07-10T10:10:48.035472", + "updated_at": "2026-07-10T10:10:48.035472", + "url": "/v1/games/train-simulator-south-western-main-line-southampton-bournemouth-route-add-on" +} diff --git a/site/public/v1/games/train-simulator-southeastern-class-465-emu-add-on/index.json b/site/public/v1/games/train-simulator-southeastern-class-465-emu-add-on/index.json new file mode 100644 index 000000000000..d499dc347037 --- /dev/null +++ b/site/public/v1/games/train-simulator-southeastern-class-465-emu-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 160045, + "slug": "train-simulator-southeastern-class-465-emu-add-on", + "name": "Train Simulator: Southeastern Class 465 EMU Add-On", + "release_date": "2013-04-17", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105556" + ], + "created_at": "2026-07-10T10:10:48.035472", + "updated_at": "2026-07-10T10:10:48.035472", + "url": "/v1/games/train-simulator-southeastern-class-465-emu-add-on" +} diff --git a/site/public/v1/games/train-simulator-southern-class-421-4cig-emu-add-on/index.json b/site/public/v1/games/train-simulator-southern-class-421-4cig-emu-add-on/index.json new file mode 100644 index 000000000000..d7582d4274ad --- /dev/null +++ b/site/public/v1/games/train-simulator-southern-class-421-4cig-emu-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 160046, + "slug": "train-simulator-southern-class-421-4cig-emu-add-on", + "name": "Train Simulator: Southern Class 421 ‘4CIG’ EMU Add-On", + "release_date": "2012-06-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105767" + ], + "created_at": "2026-07-10T10:10:48.035472", + "updated_at": "2026-07-10T10:10:48.035472", + "url": "/v1/games/train-simulator-southern-class-421-4cig-emu-add-on" +} diff --git a/site/public/v1/games/train-simulator-southern-class-455-8-emu-add-on/index.json b/site/public/v1/games/train-simulator-southern-class-455-8-emu-add-on/index.json new file mode 100644 index 000000000000..258f94946de4 --- /dev/null +++ b/site/public/v1/games/train-simulator-southern-class-455-8-emu-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 160047, + "slug": "train-simulator-southern-class-455-8-emu-add-on", + "name": "Train Simulator: Southern Class 455/8 EMU Add-On", + "release_date": "2015-08-20", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106175" + ], + "created_at": "2026-07-10T10:10:48.035472", + "updated_at": "2026-07-10T10:10:48.035472", + "url": "/v1/games/train-simulator-southern-class-455-8-emu-add-on" +} diff --git a/site/public/v1/games/train-simulator-southern-pacific-cab-forward-loco-add-on/index.json b/site/public/v1/games/train-simulator-southern-pacific-cab-forward-loco-add-on/index.json new file mode 100644 index 000000000000..d882ee52e40e --- /dev/null +++ b/site/public/v1/games/train-simulator-southern-pacific-cab-forward-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 160048, + "slug": "train-simulator-southern-pacific-cab-forward-loco-add-on", + "name": "Train Simulator: Southern Pacific Cab Forward Loco Add-On", + "release_date": "2012-08-23", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105557" + ], + "created_at": "2026-07-10T10:10:48.035472", + "updated_at": "2026-07-10T10:10:48.035472", + "url": "/v1/games/train-simulator-southern-pacific-cab-forward-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-southern-pacific-ge-44-loco-add-on/index.json b/site/public/v1/games/train-simulator-southern-pacific-ge-44-loco-add-on/index.json new file mode 100644 index 000000000000..b73daf633e11 --- /dev/null +++ b/site/public/v1/games/train-simulator-southern-pacific-ge-44-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 160049, + "slug": "train-simulator-southern-pacific-ge-44-loco-add-on", + "name": "Train Simulator: Southern Pacific GE 44 Loco Add-On", + "release_date": "2013-01-31", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Digital Train Model" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106021" + ], + "created_at": "2026-07-10T10:10:48.035472", + "updated_at": "2026-07-10T10:10:48.035472", + "url": "/v1/games/train-simulator-southern-pacific-ge-44-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-southern-pacific-gp20-loco-add-on/index.json b/site/public/v1/games/train-simulator-southern-pacific-gp20-loco-add-on/index.json new file mode 100644 index 000000000000..4c0c1e850fcd --- /dev/null +++ b/site/public/v1/games/train-simulator-southern-pacific-gp20-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 160050, + "slug": "train-simulator-southern-pacific-gp20-loco-add-on", + "name": "Train Simulator: Southern Pacific GP20 Loco Add-On", + "release_date": "2013-09-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Reppo" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106248" + ], + "created_at": "2026-07-10T10:10:48.036454", + "updated_at": "2026-07-10T10:10:48.036454", + "url": "/v1/games/train-simulator-southern-pacific-gp20-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-southern-pacific-gs-4-loco-add-on/index.json b/site/public/v1/games/train-simulator-southern-pacific-gs-4-loco-add-on/index.json new file mode 100644 index 000000000000..66648bd07177 --- /dev/null +++ b/site/public/v1/games/train-simulator-southern-pacific-gs-4-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 160051, + "slug": "train-simulator-southern-pacific-gs-4-loco-add-on", + "name": "Train Simulator: Southern Pacific GS-4 Loco Add-On", + "release_date": "2013-02-14", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "G-TraX Simulations" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106253" + ], + "created_at": "2026-07-10T10:10:48.036454", + "updated_at": "2026-07-10T10:10:48.036454", + "url": "/v1/games/train-simulator-southern-pacific-gs-4-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-southern-pacific-sd45-loco-add-on/index.json b/site/public/v1/games/train-simulator-southern-pacific-sd45-loco-add-on/index.json new file mode 100644 index 000000000000..b555b61b16d6 --- /dev/null +++ b/site/public/v1/games/train-simulator-southern-pacific-sd45-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 160052, + "slug": "train-simulator-southern-pacific-sd45-loco-add-on", + "name": "Train Simulator: Southern Pacific SD45 Loco Add-On", + "release_date": "2013-02-14", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Digital Train Model" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106017" + ], + "created_at": "2026-07-10T10:10:48.036454", + "updated_at": "2026-07-10T10:10:48.036454", + "url": "/v1/games/train-simulator-southern-pacific-sd45-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-southern-pacific-sd45t-2-loco-add-on/index.json b/site/public/v1/games/train-simulator-southern-pacific-sd45t-2-loco-add-on/index.json new file mode 100644 index 000000000000..6c8107504b95 --- /dev/null +++ b/site/public/v1/games/train-simulator-southern-pacific-sd45t-2-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 160053, + "slug": "train-simulator-southern-pacific-sd45t-2-loco-add-on", + "name": "Train Simulator: Southern Pacific SD45T-2 Loco Add-On", + "release_date": "2017-10-26", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Digital Train Model" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106125" + ], + "created_at": "2026-07-10T10:10:48.036454", + "updated_at": "2026-07-10T10:10:48.036454", + "url": "/v1/games/train-simulator-southern-pacific-sd45t-2-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-southern-pacific-sd70m-loco-add-on/index.json b/site/public/v1/games/train-simulator-southern-pacific-sd70m-loco-add-on/index.json new file mode 100644 index 000000000000..390110be6ee4 --- /dev/null +++ b/site/public/v1/games/train-simulator-southern-pacific-sd70m-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 160054, + "slug": "train-simulator-southern-pacific-sd70m-loco-add-on", + "name": "Train Simulator: Southern Pacific SD70M Loco Add-On", + "release_date": "2013-09-30", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105555" + ], + "created_at": "2026-07-10T10:10:48.036454", + "updated_at": "2026-07-10T10:10:48.036454", + "url": "/v1/games/train-simulator-southern-pacific-sd70m-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-southern-pacific-u33c-loco-add-on/index.json b/site/public/v1/games/train-simulator-southern-pacific-u33c-loco-add-on/index.json new file mode 100644 index 000000000000..16d423973c97 --- /dev/null +++ b/site/public/v1/games/train-simulator-southern-pacific-u33c-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 160055, + "slug": "train-simulator-southern-pacific-u33c-loco-add-on", + "name": "Train Simulator: Southern Pacific U33C Loco Add-On", + "release_date": "2021-06-11", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Digital Train Model" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105585" + ], + "created_at": "2026-07-10T10:10:48.036454", + "updated_at": "2026-07-10T10:10:48.037466", + "url": "/v1/games/train-simulator-southern-pacific-u33c-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-southern-railway-s15-class-steam-loco-add-on/index.json b/site/public/v1/games/train-simulator-southern-railway-s15-class-steam-loco-add-on/index.json new file mode 100644 index 000000000000..78f6ab9718a6 --- /dev/null +++ b/site/public/v1/games/train-simulator-southern-railway-s15-class-steam-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 160056, + "slug": "train-simulator-southern-railway-s15-class-steam-loco-add-on", + "name": "Train Simulator: Southern Railway S15 Class Steam Loco Add-On", + "release_date": "2017-04-20", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Bossman Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106150" + ], + "created_at": "2026-07-10T10:10:48.037466", + "updated_at": "2026-07-10T10:10:48.037466", + "url": "/v1/games/train-simulator-southern-railway-s15-class-steam-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-southwestern-expressways-reading-exeter-route-add-on/index.json b/site/public/v1/games/train-simulator-southwestern-expressways-reading-exeter-route-add-on/index.json new file mode 100644 index 000000000000..3ad54a78fdcf --- /dev/null +++ b/site/public/v1/games/train-simulator-southwestern-expressways-reading-exeter-route-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 160057, + "slug": "train-simulator-southwestern-expressways-reading-exeter-route-add-on", + "name": "Train Simulator: Southwestern Expressways: Reading - Exeter Route Add-On", + "release_date": "2021-07-23", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Just Trains" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105471" + ], + "created_at": "2026-07-10T10:10:48.037466", + "updated_at": "2026-07-10T10:10:48.037466", + "url": "/v1/games/train-simulator-southwestern-expressways-reading-exeter-route-add-on" +} diff --git a/site/public/v1/games/train-simulator-springfield-line-springfield-new-haven-route-add-on/index.json b/site/public/v1/games/train-simulator-springfield-line-springfield-new-haven-route-add-on/index.json new file mode 100644 index 000000000000..445baa847228 --- /dev/null +++ b/site/public/v1/games/train-simulator-springfield-line-springfield-new-haven-route-add-on/index.json @@ -0,0 +1,31 @@ +{ + "id": 160058, + "slug": "train-simulator-springfield-line-springfield-new-haven-route-add-on", + "name": "Train Simulator: Springfield Line: Springfield – New Haven Route Add-On", + "release_date": "2016-08-25", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106013" + ], + "created_at": "2026-07-10T10:10:48.037466", + "updated_at": "2026-07-10T10:10:48.037466", + "url": "/v1/games/train-simulator-springfield-line-springfield-new-haven-route-add-on" +} diff --git a/site/public/v1/games/train-simulator-strathclyde-class-101-dmu-add-on/index.json b/site/public/v1/games/train-simulator-strathclyde-class-101-dmu-add-on/index.json new file mode 100644 index 000000000000..6e8f90816ebb --- /dev/null +++ b/site/public/v1/games/train-simulator-strathclyde-class-101-dmu-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 160059, + "slug": "train-simulator-strathclyde-class-101-dmu-add-on", + "name": "Train Simulator: Strathclyde Class 101 DMU Add-On", + "release_date": "2012-12-06", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105776" + ], + "created_at": "2026-07-10T10:10:48.037466", + "updated_at": "2026-07-10T10:10:48.037466", + "url": "/v1/games/train-simulator-strathclyde-class-101-dmu-add-on" +} diff --git a/site/public/v1/games/train-simulator-stroudley-a1-a1x-class-terrier-steam-loco-add-on/index.json b/site/public/v1/games/train-simulator-stroudley-a1-a1x-class-terrier-steam-loco-add-on/index.json new file mode 100644 index 000000000000..f7a592a0a3a7 --- /dev/null +++ b/site/public/v1/games/train-simulator-stroudley-a1-a1x-class-terrier-steam-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 160060, + "slug": "train-simulator-stroudley-a1-a1x-class-terrier-steam-loco-add-on", + "name": "Train Simulator: Stroudley A1/A1X Class 'Terrier' Steam Loco Add-On", + "release_date": "2017-05-25", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Victory Works" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106142" + ], + "created_at": "2026-07-10T10:10:48.037466", + "updated_at": "2026-07-10T10:10:48.037466", + "url": "/v1/games/train-simulator-stroudley-a1-a1x-class-terrier-steam-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-suburban-glasgow-northwest-springburn-helensburgh-route-add-on/index.json b/site/public/v1/games/train-simulator-suburban-glasgow-northwest-springburn-helensburgh-route-add-on/index.json new file mode 100644 index 000000000000..5d3fbe8316c3 --- /dev/null +++ b/site/public/v1/games/train-simulator-suburban-glasgow-northwest-springburn-helensburgh-route-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 160061, + "slug": "train-simulator-suburban-glasgow-northwest-springburn-helensburgh-route-add-on", + "name": "Train Simulator: Suburban Glasgow Northwest: Springburn - Helensburgh Route Add-On", + "release_date": "2020-10-29", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Rivet Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105505" + ], + "created_at": "2026-07-10T10:10:48.037466", + "updated_at": "2026-07-10T10:10:48.037466", + "url": "/v1/games/train-simulator-suburban-glasgow-northwest-springburn-helensburgh-route-add-on" +} diff --git a/site/public/v1/games/train-simulator-surselva-line-reichenau-tamins-disentis-must-r-route-add-on/index.json b/site/public/v1/games/train-simulator-surselva-line-reichenau-tamins-disentis-must-r-route-add-on/index.json new file mode 100644 index 000000000000..804e98ecb4fc --- /dev/null +++ b/site/public/v1/games/train-simulator-surselva-line-reichenau-tamins-disentis-must-r-route-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 160062, + "slug": "train-simulator-surselva-line-reichenau-tamins-disentis-must-r-route-add-on", + "name": "Train Simulator: Surselva Line: Reichenau-Tamins - Disentis/Mustér Route Add-On", + "release_date": "2019-10-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Rivet Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105643" + ], + "created_at": "2026-07-10T10:10:48.038468", + "updated_at": "2026-07-10T10:10:48.038468", + "url": "/v1/games/train-simulator-surselva-line-reichenau-tamins-disentis-must-r-route-add-on" +} diff --git a/site/public/v1/games/train-simulator-tadami-line-aizu-wakamatsu-tadami-route-add-on/index.json b/site/public/v1/games/train-simulator-tadami-line-aizu-wakamatsu-tadami-route-add-on/index.json new file mode 100644 index 000000000000..9ab765564c78 --- /dev/null +++ b/site/public/v1/games/train-simulator-tadami-line-aizu-wakamatsu-tadami-route-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 160063, + "slug": "train-simulator-tadami-line-aizu-wakamatsu-tadami-route-add-on", + "name": "Train Simulator: Tadami Line: Aizu-Wakamatsu - Tadami Route Add-On", + "release_date": "2020-07-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Union Workshop" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105501" + ], + "created_at": "2026-07-10T10:10:48.038468", + "updated_at": "2026-07-10T10:10:48.038468", + "url": "/v1/games/train-simulator-tadami-line-aizu-wakamatsu-tadami-route-add-on" +} diff --git a/site/public/v1/games/train-simulator-tauernbahn-schwarzach-sankt-veit-spittal-an-der-drau-route-add-on/index.json b/site/public/v1/games/train-simulator-tauernbahn-schwarzach-sankt-veit-spittal-an-der-drau-route-add-on/index.json new file mode 100644 index 000000000000..00634128641b --- /dev/null +++ b/site/public/v1/games/train-simulator-tauernbahn-schwarzach-sankt-veit-spittal-an-der-drau-route-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 160064, + "slug": "train-simulator-tauernbahn-schwarzach-sankt-veit-spittal-an-der-drau-route-add-on", + "name": "Train Simulator: Tauernbahn: Schwarzach-Sankt Veit - Spittal an der Drau Route Add-On", + "release_date": "2021-06-17", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "RSSLO" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105510" + ], + "created_at": "2026-07-10T10:10:48.038468", + "updated_at": "2026-07-10T10:10:48.038468", + "url": "/v1/games/train-simulator-tauernbahn-schwarzach-sankt-veit-spittal-an-der-drau-route-add-on" +} diff --git a/site/public/v1/games/train-simulator-tehachapi-pass-mojave-bakersfield-route-add-on/index.json b/site/public/v1/games/train-simulator-tehachapi-pass-mojave-bakersfield-route-add-on/index.json new file mode 100644 index 000000000000..36bf754a42db --- /dev/null +++ b/site/public/v1/games/train-simulator-tehachapi-pass-mojave-bakersfield-route-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 160065, + "slug": "train-simulator-tehachapi-pass-mojave-bakersfield-route-add-on", + "name": "Train Simulator: Tehachapi Pass: Mojave - Bakersfield Route Add-On", + "release_date": "2021-06-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105499" + ], + "created_at": "2026-07-10T10:10:48.038468", + "updated_at": "2026-07-10T10:10:48.038468", + "url": "/v1/games/train-simulator-tehachapi-pass-mojave-bakersfield-route-add-on" +} diff --git a/site/public/v1/games/train-simulator-the-alaska-railroad-anchorage-seward-route-add-on/index.json b/site/public/v1/games/train-simulator-the-alaska-railroad-anchorage-seward-route-add-on/index.json new file mode 100644 index 000000000000..2e3fbb9fd852 --- /dev/null +++ b/site/public/v1/games/train-simulator-the-alaska-railroad-anchorage-seward-route-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 160066, + "slug": "train-simulator-the-alaska-railroad-anchorage-seward-route-add-on", + "name": "Train Simulator: The Alaska Railroad: Anchorage - Seward Route Add-On", + "release_date": "2017-10-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Trains & Drivers" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105982" + ], + "created_at": "2026-07-10T10:10:48.038468", + "updated_at": "2026-07-10T10:10:48.038468", + "url": "/v1/games/train-simulator-the-alaska-railroad-anchorage-seward-route-add-on" +} diff --git a/site/public/v1/games/train-simulator-the-kyle-line-inverness-kyle-of-lochalsh-route-add-on/index.json b/site/public/v1/games/train-simulator-the-kyle-line-inverness-kyle-of-lochalsh-route-add-on/index.json new file mode 100644 index 000000000000..00c849d45018 --- /dev/null +++ b/site/public/v1/games/train-simulator-the-kyle-line-inverness-kyle-of-lochalsh-route-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 160067, + "slug": "train-simulator-the-kyle-line-inverness-kyle-of-lochalsh-route-add-on", + "name": "Train Simulator: The Kyle Line: Inverness - Kyle of Lochalsh Route Add-On", + "release_date": "2018-06-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Just Trains" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105973" + ], + "created_at": "2026-07-10T10:10:48.038468", + "updated_at": "2026-07-10T10:10:48.038468", + "url": "/v1/games/train-simulator-the-kyle-line-inverness-kyle-of-lochalsh-route-add-on" +} diff --git a/site/public/v1/games/train-simulator-the-pump-car-add-on/index.json b/site/public/v1/games/train-simulator-the-pump-car-add-on/index.json new file mode 100644 index 000000000000..3565be738ae7 --- /dev/null +++ b/site/public/v1/games/train-simulator-the-pump-car-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 160068, + "slug": "train-simulator-the-pump-car-add-on", + "name": "Train Simulator: The Pump Car Add-On", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106288" + ], + "created_at": "2026-07-10T10:10:48.039454", + "updated_at": "2026-07-10T10:10:48.039454", + "url": "/v1/games/train-simulator-the-pump-car-add-on" +} diff --git a/site/public/v1/games/train-simulator-the-racetrack-aurora-chicago-route-add-on/index.json b/site/public/v1/games/train-simulator-the-racetrack-aurora-chicago-route-add-on/index.json new file mode 100644 index 000000000000..f9cc087b55ea --- /dev/null +++ b/site/public/v1/games/train-simulator-the-racetrack-aurora-chicago-route-add-on/index.json @@ -0,0 +1,31 @@ +{ + "id": 160069, + "slug": "train-simulator-the-racetrack-aurora-chicago-route-add-on", + "name": "Train Simulator: The Racetrack: Aurora - Chicago Route Add-On", + "release_date": "2015-08-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106061" + ], + "created_at": "2026-07-10T10:10:48.039454", + "updated_at": "2026-07-10T10:10:48.039454", + "url": "/v1/games/train-simulator-the-racetrack-aurora-chicago-route-add-on" +} diff --git a/site/public/v1/games/train-simulator-the-rhine-railway-mannheim-karlsruhe-route-add-on/index.json b/site/public/v1/games/train-simulator-the-rhine-railway-mannheim-karlsruhe-route-add-on/index.json new file mode 100644 index 000000000000..430b43d9a5a8 --- /dev/null +++ b/site/public/v1/games/train-simulator-the-rhine-railway-mannheim-karlsruhe-route-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 160070, + "slug": "train-simulator-the-rhine-railway-mannheim-karlsruhe-route-add-on", + "name": "Train Simulator: The Rhine Railway: Mannheim - Karlsruhe Route Add-On", + "release_date": "2015-03-19", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105540" + ], + "created_at": "2026-07-10T10:10:48.039454", + "updated_at": "2026-07-10T10:10:48.039454", + "url": "/v1/games/train-simulator-the-rhine-railway-mannheim-karlsruhe-route-add-on" +} diff --git a/site/public/v1/games/train-simulator-the-riviera-line-exeter-paignton-route-add-on/index.json b/site/public/v1/games/train-simulator-the-riviera-line-exeter-paignton-route-add-on/index.json new file mode 100644 index 000000000000..7858d0bfd45d --- /dev/null +++ b/site/public/v1/games/train-simulator-the-riviera-line-exeter-paignton-route-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 160071, + "slug": "train-simulator-the-riviera-line-exeter-paignton-route-add-on", + "name": "Train Simulator: The Riviera Line: Exeter-Paignton Route Add-On", + "release_date": "2014-02-20", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105519" + ], + "created_at": "2026-07-10T10:10:48.039454", + "updated_at": "2026-07-10T10:10:48.039454", + "url": "/v1/games/train-simulator-the-riviera-line-exeter-paignton-route-add-on" +} diff --git a/site/public/v1/games/train-simulator-the-story-of-forest-rail-route-add-on/index.json b/site/public/v1/games/train-simulator-the-story-of-forest-rail-route-add-on/index.json new file mode 100644 index 000000000000..fe0120825b8b --- /dev/null +++ b/site/public/v1/games/train-simulator-the-story-of-forest-rail-route-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 160072, + "slug": "train-simulator-the-story-of-forest-rail-route-add-on", + "name": "Train Simulator: The Story of Forest Rail Route Add-On", + "release_date": "2015-01-19", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Union Workshop" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105716" + ], + "created_at": "2026-07-10T10:10:48.039454", + "updated_at": "2026-07-10T10:10:48.039454", + "url": "/v1/games/train-simulator-the-story-of-forest-rail-route-add-on" +} diff --git a/site/public/v1/games/train-simulator-thompson-class-b1-loco-add-on/index.json b/site/public/v1/games/train-simulator-thompson-class-b1-loco-add-on/index.json new file mode 100644 index 000000000000..99e0e566d9b4 --- /dev/null +++ b/site/public/v1/games/train-simulator-thompson-class-b1-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 160073, + "slug": "train-simulator-thompson-class-b1-loco-add-on", + "name": "Train Simulator: Thompson Class B1 Loco Add-On", + "release_date": "2012-11-08", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105774" + ], + "created_at": "2026-07-10T10:10:48.040491", + "updated_at": "2026-07-10T10:10:48.040491", + "url": "/v1/games/train-simulator-thompson-class-b1-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-three-country-corner-route-add-on/index.json b/site/public/v1/games/train-simulator-three-country-corner-route-add-on/index.json new file mode 100644 index 000000000000..8d238fe95a8e --- /dev/null +++ b/site/public/v1/games/train-simulator-three-country-corner-route-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 160074, + "slug": "train-simulator-three-country-corner-route-add-on", + "name": "Train Simulator: Three Country Corner Route Add-On", + "release_date": "2015-08-27", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Just Trains" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105976" + ], + "created_at": "2026-07-10T10:10:48.040491", + "updated_at": "2026-07-10T10:10:48.040491", + "url": "/v1/games/train-simulator-three-country-corner-route-add-on" +} diff --git a/site/public/v1/games/train-simulator-tirol-brenner-kufstein-route-add-on/index.json b/site/public/v1/games/train-simulator-tirol-brenner-kufstein-route-add-on/index.json new file mode 100644 index 000000000000..0b25cadc3569 --- /dev/null +++ b/site/public/v1/games/train-simulator-tirol-brenner-kufstein-route-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 160075, + "slug": "train-simulator-tirol-brenner-kufstein-route-add-on", + "name": "Train Simulator: Tirol: Brenner - Kufstein Route Add-On", + "release_date": "2019-02-15", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "RSSLO" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105653" + ], + "created_at": "2026-07-10T10:10:48.040491", + "updated_at": "2026-07-10T10:10:48.040491", + "url": "/v1/games/train-simulator-tirol-brenner-kufstein-route-add-on" +} diff --git a/site/public/v1/games/train-simulator-totham-passengers-power-freight-route-add-on/index.json b/site/public/v1/games/train-simulator-totham-passengers-power-freight-route-add-on/index.json new file mode 100644 index 000000000000..6fb3c208b6b8 --- /dev/null +++ b/site/public/v1/games/train-simulator-totham-passengers-power-freight-route-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 160076, + "slug": "train-simulator-totham-passengers-power-freight-route-add-on", + "name": "Train Simulator: Totham – Passengers, Power & Freight Route Add-On", + "release_date": "2020-01-02", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Just Trains" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105700" + ], + "created_at": "2026-07-10T10:10:48.040491", + "updated_at": "2026-07-10T10:10:48.040491", + "url": "/v1/games/train-simulator-totham-passengers-power-freight-route-add-on" +} diff --git a/site/public/v1/games/train-simulator-trainload-br-class-60-loco-add-on/index.json b/site/public/v1/games/train-simulator-trainload-br-class-60-loco-add-on/index.json new file mode 100644 index 000000000000..bb98b615befe --- /dev/null +++ b/site/public/v1/games/train-simulator-trainload-br-class-60-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 160077, + "slug": "train-simulator-trainload-br-class-60-loco-add-on", + "name": "Train Simulator: Trainload BR Class 60 Loco Add-On", + "release_date": "2021-02-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105638" + ], + "created_at": "2026-07-10T10:10:48.040491", + "updated_at": "2026-07-10T10:10:48.040491", + "url": "/v1/games/train-simulator-trainload-br-class-60-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-uk-military-wagon-pack-add-on/index.json b/site/public/v1/games/train-simulator-uk-military-wagon-pack-add-on/index.json new file mode 100644 index 000000000000..4f04eb7bb10b --- /dev/null +++ b/site/public/v1/games/train-simulator-uk-military-wagon-pack-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 160078, + "slug": "train-simulator-uk-military-wagon-pack-add-on", + "name": "Train Simulator: UK Military Wagon Pack Add-On", + "release_date": "2020-04-29", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Just Trains" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106441" + ], + "created_at": "2026-07-10T10:10:48.040491", + "updated_at": "2026-07-10T10:10:48.040491", + "url": "/v1/games/train-simulator-uk-military-wagon-pack-add-on" +} diff --git a/site/public/v1/games/train-simulator-union-pacific-big-boy-loco-add-on/index.json b/site/public/v1/games/train-simulator-union-pacific-big-boy-loco-add-on/index.json new file mode 100644 index 000000000000..7ccabbc87d8e --- /dev/null +++ b/site/public/v1/games/train-simulator-union-pacific-big-boy-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 160079, + "slug": "train-simulator-union-pacific-big-boy-loco-add-on", + "name": "Train Simulator: Union Pacific Big Boy Loco Add-On", + "release_date": "2012-11-23", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105541" + ], + "created_at": "2026-07-10T10:10:48.041477", + "updated_at": "2026-07-10T10:10:48.041477", + "url": "/v1/games/train-simulator-union-pacific-big-boy-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-union-pacific-big-boy-steam-loco-add-on/index.json b/site/public/v1/games/train-simulator-union-pacific-big-boy-steam-loco-add-on/index.json new file mode 100644 index 000000000000..635bc8e6d44d --- /dev/null +++ b/site/public/v1/games/train-simulator-union-pacific-big-boy-steam-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 160080, + "slug": "train-simulator-union-pacific-big-boy-steam-loco-add-on", + "name": "Train Simulator: Union Pacific Big Boy Steam Loco Add-On", + "release_date": "2021-05-27", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Smokebox" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105586" + ], + "created_at": "2026-07-10T10:10:48.041477", + "updated_at": "2026-07-10T10:10:48.041477", + "url": "/v1/games/train-simulator-union-pacific-big-boy-steam-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-union-pacific-challenger-loco-add-on/index.json b/site/public/v1/games/train-simulator-union-pacific-challenger-loco-add-on/index.json new file mode 100644 index 000000000000..9318c9f4dc76 --- /dev/null +++ b/site/public/v1/games/train-simulator-union-pacific-challenger-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 160081, + "slug": "train-simulator-union-pacific-challenger-loco-add-on", + "name": "Train Simulator: Union Pacific Challenger Loco Add-On", + "release_date": "2012-11-23", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105559" + ], + "created_at": "2026-07-10T10:10:48.041477", + "updated_at": "2026-07-10T10:10:48.041477", + "url": "/v1/games/train-simulator-union-pacific-challenger-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-union-pacific-dd35-add-on/index.json b/site/public/v1/games/train-simulator-union-pacific-dd35-add-on/index.json new file mode 100644 index 000000000000..d2ca95569f98 --- /dev/null +++ b/site/public/v1/games/train-simulator-union-pacific-dd35-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 160082, + "slug": "train-simulator-union-pacific-dd35-add-on", + "name": "Train Simulator: Union Pacific DD35 Add-On", + "release_date": "2016-04-19", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Digital Train Model" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106168" + ], + "created_at": "2026-07-10T10:10:48.041477", + "updated_at": "2026-07-10T10:10:48.041477", + "url": "/v1/games/train-simulator-union-pacific-dd35-add-on" +} diff --git a/site/public/v1/games/train-simulator-union-pacific-dda40x-centennial-loco-add-on/index.json b/site/public/v1/games/train-simulator-union-pacific-dda40x-centennial-loco-add-on/index.json new file mode 100644 index 000000000000..9b84ee8b4fb8 --- /dev/null +++ b/site/public/v1/games/train-simulator-union-pacific-dda40x-centennial-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 160083, + "slug": "train-simulator-union-pacific-dda40x-centennial-loco-add-on", + "name": "Train Simulator: Union Pacific DDA40X Centennial Loco Add-On", + "release_date": "2014-01-08", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Digital Train Model" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106212" + ], + "created_at": "2026-07-10T10:10:48.042483", + "updated_at": "2026-07-10T10:10:48.042483", + "url": "/v1/games/train-simulator-union-pacific-dda40x-centennial-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-union-pacific-fef-3-loco-add-on/index.json b/site/public/v1/games/train-simulator-union-pacific-fef-3-loco-add-on/index.json new file mode 100644 index 000000000000..3d64219f3198 --- /dev/null +++ b/site/public/v1/games/train-simulator-union-pacific-fef-3-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 160084, + "slug": "train-simulator-union-pacific-fef-3-loco-add-on", + "name": "Train Simulator: Union Pacific FEF-3 Loco Add-On", + "release_date": "2014-11-06", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Smokebox" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106183" + ], + "created_at": "2026-07-10T10:10:48.042483", + "updated_at": "2026-07-10T10:10:48.042483", + "url": "/v1/games/train-simulator-union-pacific-fef-3-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-union-pacific-gas-turbine-electric-loco-add-on/index.json b/site/public/v1/games/train-simulator-union-pacific-gas-turbine-electric-loco-add-on/index.json new file mode 100644 index 000000000000..d7cd02103c7d --- /dev/null +++ b/site/public/v1/games/train-simulator-union-pacific-gas-turbine-electric-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 160085, + "slug": "train-simulator-union-pacific-gas-turbine-electric-loco-add-on", + "name": "Train Simulator: Union Pacific Gas Turbine-Electric Loco Add-On", + "release_date": "2020-12-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Digital Train Model" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105613" + ], + "created_at": "2026-07-10T10:10:48.042483", + "updated_at": "2026-07-10T10:10:48.042483", + "url": "/v1/games/train-simulator-union-pacific-gas-turbine-electric-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-union-pacific-gp30-loco-add-on/index.json b/site/public/v1/games/train-simulator-union-pacific-gp30-loco-add-on/index.json new file mode 100644 index 000000000000..a24ab3223ed2 --- /dev/null +++ b/site/public/v1/games/train-simulator-union-pacific-gp30-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 160086, + "slug": "train-simulator-union-pacific-gp30-loco-add-on", + "name": "Train Simulator: Union Pacific GP30 Loco Add-On", + "release_date": "2015-02-05", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Digital Train Model" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106180" + ], + "created_at": "2026-07-10T10:10:48.042483", + "updated_at": "2026-07-10T10:10:48.042483", + "url": "/v1/games/train-simulator-union-pacific-gp30-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-union-pacific-gp40x-loco-add-on/index.json b/site/public/v1/games/train-simulator-union-pacific-gp40x-loco-add-on/index.json new file mode 100644 index 000000000000..3af9fbb26c34 --- /dev/null +++ b/site/public/v1/games/train-simulator-union-pacific-gp40x-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 160087, + "slug": "train-simulator-union-pacific-gp40x-loco-add-on", + "name": "Train Simulator: Union Pacific GP40X Loco Add-On", + "release_date": "2019-10-17", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Travel by Train" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105947" + ], + "created_at": "2026-07-10T10:10:48.042483", + "updated_at": "2026-07-10T10:10:48.042483", + "url": "/v1/games/train-simulator-union-pacific-gp40x-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-union-pacific-gp50-loco-add-on/index.json b/site/public/v1/games/train-simulator-union-pacific-gp50-loco-add-on/index.json new file mode 100644 index 000000000000..67be6f6ae071 --- /dev/null +++ b/site/public/v1/games/train-simulator-union-pacific-gp50-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 160088, + "slug": "train-simulator-union-pacific-gp50-loco-add-on", + "name": "Train Simulator: Union Pacific GP50 Loco Add-On", + "release_date": "2014-09-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Digital Train Model" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106208" + ], + "created_at": "2026-07-10T10:10:48.042483", + "updated_at": "2026-07-10T10:10:48.042483", + "url": "/v1/games/train-simulator-union-pacific-gp50-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-union-pacific-heritage-sd70aces-loco-add-on/index.json b/site/public/v1/games/train-simulator-union-pacific-heritage-sd70aces-loco-add-on/index.json new file mode 100644 index 000000000000..b48a2ea00502 --- /dev/null +++ b/site/public/v1/games/train-simulator-union-pacific-heritage-sd70aces-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 160089, + "slug": "train-simulator-union-pacific-heritage-sd70aces-loco-add-on", + "name": "Train Simulator: Union Pacific Heritage SD70ACes Loco Add-On", + "release_date": "2013-09-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106249" + ], + "created_at": "2026-07-10T10:10:48.043482", + "updated_at": "2026-07-10T10:10:48.043482", + "url": "/v1/games/train-simulator-union-pacific-heritage-sd70aces-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-union-pacific-no-119-steam-loco-add-on/index.json b/site/public/v1/games/train-simulator-union-pacific-no-119-steam-loco-add-on/index.json new file mode 100644 index 000000000000..bd0f4e7600fb --- /dev/null +++ b/site/public/v1/games/train-simulator-union-pacific-no-119-steam-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 160090, + "slug": "train-simulator-union-pacific-no-119-steam-loco-add-on", + "name": "Train Simulator: Union Pacific No. 119 Steam Loco Add-On", + "release_date": "2018-04-26", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Smokebox" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105986" + ], + "created_at": "2026-07-10T10:10:48.043482", + "updated_at": "2026-07-10T10:10:48.043482", + "url": "/v1/games/train-simulator-union-pacific-no-119-steam-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-union-pacific-sd45-loco-add-on/index.json b/site/public/v1/games/train-simulator-union-pacific-sd45-loco-add-on/index.json new file mode 100644 index 000000000000..a12ac5852af6 --- /dev/null +++ b/site/public/v1/games/train-simulator-union-pacific-sd45-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 160091, + "slug": "train-simulator-union-pacific-sd45-loco-add-on", + "name": "Train Simulator: Union Pacific SD45 Loco Add-On", + "release_date": "2012-12-06", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Digital Train Model" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106016" + ], + "created_at": "2026-07-10T10:10:48.043482", + "updated_at": "2026-07-10T10:10:48.043482", + "url": "/v1/games/train-simulator-union-pacific-sd45-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-union-pacific-sd70ace-loco-add-on/index.json b/site/public/v1/games/train-simulator-union-pacific-sd70ace-loco-add-on/index.json new file mode 100644 index 000000000000..cdbc61fb4123 --- /dev/null +++ b/site/public/v1/games/train-simulator-union-pacific-sd70ace-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 160092, + "slug": "train-simulator-union-pacific-sd70ace-loco-add-on", + "name": "Train Simulator: Union Pacific SD70Ace Loco Add-On", + "release_date": "2012-08-03", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105684" + ], + "created_at": "2026-07-10T10:10:48.043482", + "updated_at": "2026-07-10T10:10:48.043482", + "url": "/v1/games/train-simulator-union-pacific-sd70ace-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-union-pacific-sd9043mac-loco-add-on/index.json b/site/public/v1/games/train-simulator-union-pacific-sd9043mac-loco-add-on/index.json new file mode 100644 index 000000000000..34a9a34939a1 --- /dev/null +++ b/site/public/v1/games/train-simulator-union-pacific-sd9043mac-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 160093, + "slug": "train-simulator-union-pacific-sd9043mac-loco-add-on", + "name": "Train Simulator: Union Pacific SD9043MAC Loco Add-On", + "release_date": "2019-11-21", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105724" + ], + "created_at": "2026-07-10T10:10:48.043482", + "updated_at": "2026-07-10T10:10:48.043482", + "url": "/v1/games/train-simulator-union-pacific-sd9043mac-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-union-pacific-u50-loco-add-on/index.json b/site/public/v1/games/train-simulator-union-pacific-u50-loco-add-on/index.json new file mode 100644 index 000000000000..0934535a4158 --- /dev/null +++ b/site/public/v1/games/train-simulator-union-pacific-u50-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 160094, + "slug": "train-simulator-union-pacific-u50-loco-add-on", + "name": "Train Simulator: Union Pacific U50 Loco Add-On", + "release_date": "2018-05-31", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Digital Train Model" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106036" + ], + "created_at": "2026-07-10T10:10:48.043482", + "updated_at": "2026-07-10T10:10:48.043482", + "url": "/v1/games/train-simulator-union-pacific-u50-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-union-pacific-wasatch-grade-ogden-evanston-route-add-on/index.json b/site/public/v1/games/train-simulator-union-pacific-wasatch-grade-ogden-evanston-route-add-on/index.json new file mode 100644 index 000000000000..6f9f111dd9ee --- /dev/null +++ b/site/public/v1/games/train-simulator-union-pacific-wasatch-grade-ogden-evanston-route-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 160095, + "slug": "train-simulator-union-pacific-wasatch-grade-ogden-evanston-route-add-on", + "name": "Train Simulator: Union Pacific Wasatch Grade: Ogden - Evanston Route Add-On", + "release_date": "2019-09-26", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Milepost Simulations" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105608" + ], + "created_at": "2026-07-10T10:10:48.044485", + "updated_at": "2026-07-10T10:10:48.044485", + "url": "/v1/games/train-simulator-union-pacific-wasatch-grade-ogden-evanston-route-add-on" +} diff --git a/site/public/v1/games/train-simulator-up-ge-44-loco-add-on/index.json b/site/public/v1/games/train-simulator-up-ge-44-loco-add-on/index.json new file mode 100644 index 000000000000..da4ea7903022 --- /dev/null +++ b/site/public/v1/games/train-simulator-up-ge-44-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 160096, + "slug": "train-simulator-up-ge-44-loco-add-on", + "name": "Train Simulator: UP GE 44 Loco Add-On", + "release_date": "2012-08-23", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Digital Train Model" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106234" + ], + "created_at": "2026-07-10T10:10:48.044485", + "updated_at": "2026-07-10T10:10:48.044485", + "url": "/v1/games/train-simulator-up-ge-44-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-uprr-idaho-omaha-steam-loco-add-on/index.json b/site/public/v1/games/train-simulator-uprr-idaho-omaha-steam-loco-add-on/index.json new file mode 100644 index 000000000000..eb9cd101fe7b --- /dev/null +++ b/site/public/v1/games/train-simulator-uprr-idaho-omaha-steam-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 160097, + "slug": "train-simulator-uprr-idaho-omaha-steam-loco-add-on", + "name": "Train Simulator: UPRR Idaho & Omaha Steam Loco Add-On", + "release_date": "2019-05-31", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Smokebox" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105678" + ], + "created_at": "2026-07-10T10:10:48.046395", + "updated_at": "2026-07-10T10:10:48.046395", + "url": "/v1/games/train-simulator-uprr-idaho-omaha-steam-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-us-loco-asset-pack/index.json b/site/public/v1/games/train-simulator-us-loco-asset-pack/index.json new file mode 100644 index 000000000000..fc8d63be4c80 --- /dev/null +++ b/site/public/v1/games/train-simulator-us-loco-asset-pack/index.json @@ -0,0 +1,33 @@ +{ + "id": 160098, + "slug": "train-simulator-us-loco-asset-pack", + "name": "Train Simulator: US Loco & Asset Pack", + "release_date": "2009-10-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105960" + ], + "created_at": "2026-07-10T10:10:48.051531", + "updated_at": "2026-07-10T10:10:48.051531", + "url": "/v1/games/train-simulator-us-loco-asset-pack" +} diff --git a/site/public/v1/games/train-simulator-usatc-s160-loco-add-on/index.json b/site/public/v1/games/train-simulator-usatc-s160-loco-add-on/index.json new file mode 100644 index 000000000000..dee76f95566d --- /dev/null +++ b/site/public/v1/games/train-simulator-usatc-s160-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 160099, + "slug": "train-simulator-usatc-s160-loco-add-on", + "name": "Train Simulator: USATC S160 Loco Add-On", + "release_date": "2016-06-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Victory Works" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106068" + ], + "created_at": "2026-07-10T10:10:48.054512", + "updated_at": "2026-07-10T10:10:48.054512", + "url": "/v1/games/train-simulator-usatc-s160-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-valley-corridor-route-add-on/index.json b/site/public/v1/games/train-simulator-valley-corridor-route-add-on/index.json new file mode 100644 index 000000000000..77beb3e7089b --- /dev/null +++ b/site/public/v1/games/train-simulator-valley-corridor-route-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 160100, + "slug": "train-simulator-valley-corridor-route-add-on", + "name": "Train Simulator: Valley Corridor Route Add-On", + "release_date": "2020-01-30", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Just Trains" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105626" + ], + "created_at": "2026-07-10T10:10:48.056480", + "updated_at": "2026-07-10T10:10:48.056480", + "url": "/v1/games/train-simulator-valley-corridor-route-add-on" +} diff --git a/site/public/v1/games/train-simulator-wakayama-sakurai-lines-route-add-on/index.json b/site/public/v1/games/train-simulator-wakayama-sakurai-lines-route-add-on/index.json new file mode 100644 index 000000000000..20ed5673ea1d --- /dev/null +++ b/site/public/v1/games/train-simulator-wakayama-sakurai-lines-route-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 160101, + "slug": "train-simulator-wakayama-sakurai-lines-route-add-on", + "name": "Train Simulator: Wakayama & Sakurai Lines Route Add-On", + "release_date": "2016-07-22", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Union Workshop" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105718" + ], + "created_at": "2026-07-10T10:10:48.058455", + "updated_at": "2026-07-10T10:10:48.058455", + "url": "/v1/games/train-simulator-wakayama-sakurai-lines-route-add-on" +} diff --git a/site/public/v1/games/train-simulator-wcml-south-london-euston-birmingham-route-add-on/index.json b/site/public/v1/games/train-simulator-wcml-south-london-euston-birmingham-route-add-on/index.json new file mode 100644 index 000000000000..8ca15555534c --- /dev/null +++ b/site/public/v1/games/train-simulator-wcml-south-london-euston-birmingham-route-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 160102, + "slug": "train-simulator-wcml-south-london-euston-birmingham-route-add-on", + "name": "Train Simulator: WCML South: London Euston - Birmingham Route Add-On", + "release_date": "2020-09-17", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105475" + ], + "created_at": "2026-07-10T10:10:48.060476", + "updated_at": "2026-07-10T10:10:48.060476", + "url": "/v1/games/train-simulator-wcml-south-london-euston-birmingham-route-add-on" +} diff --git a/site/public/v1/games/train-simulator-wcml-trent-valley-route-add-on/index.json b/site/public/v1/games/train-simulator-wcml-trent-valley-route-add-on/index.json new file mode 100644 index 000000000000..bdcd97983b70 --- /dev/null +++ b/site/public/v1/games/train-simulator-wcml-trent-valley-route-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 160103, + "slug": "train-simulator-wcml-trent-valley-route-add-on", + "name": "Train Simulator: WCML Trent Valley Route Add-On", + "release_date": "2015-07-08", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Thomson Interactive" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105975" + ], + "created_at": "2026-07-10T10:10:48.062401", + "updated_at": "2026-07-10T10:10:48.062401", + "url": "/v1/games/train-simulator-wcml-trent-valley-route-add-on" +} diff --git a/site/public/v1/games/train-simulator-weardale-teesdale-network-route-add-on/index.json b/site/public/v1/games/train-simulator-weardale-teesdale-network-route-add-on/index.json new file mode 100644 index 000000000000..48a375d9fd76 --- /dev/null +++ b/site/public/v1/games/train-simulator-weardale-teesdale-network-route-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 160104, + "slug": "train-simulator-weardale-teesdale-network-route-add-on", + "name": "Train Simulator: Weardale & Teesdale Network Route Add-On", + "release_date": "2015-06-25", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105871" + ], + "created_at": "2026-07-10T10:10:48.064500", + "updated_at": "2026-07-10T10:10:48.064500", + "url": "/v1/games/train-simulator-weardale-teesdale-network-route-add-on" +} diff --git a/site/public/v1/games/train-simulator-welsh-marches-newport-shrewsbury-route-add-on/index.json b/site/public/v1/games/train-simulator-welsh-marches-newport-shrewsbury-route-add-on/index.json new file mode 100644 index 000000000000..a1ec467977e1 --- /dev/null +++ b/site/public/v1/games/train-simulator-welsh-marches-newport-shrewsbury-route-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 160105, + "slug": "train-simulator-welsh-marches-newport-shrewsbury-route-add-on", + "name": "Train Simulator: Welsh Marches: Newport - Shrewsbury Route Add-On", + "release_date": "2020-08-06", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Bossman Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105507" + ], + "created_at": "2026-07-10T10:10:48.065601", + "updated_at": "2026-07-10T10:10:48.065601", + "url": "/v1/games/train-simulator-welsh-marches-newport-shrewsbury-route-add-on" +} diff --git a/site/public/v1/games/train-simulator-west-coast-main-line-north-route-add-on/index.json b/site/public/v1/games/train-simulator-west-coast-main-line-north-route-add-on/index.json new file mode 100644 index 000000000000..f1ad020a82a5 --- /dev/null +++ b/site/public/v1/games/train-simulator-west-coast-main-line-north-route-add-on/index.json @@ -0,0 +1,31 @@ +{ + "id": 160106, + "slug": "train-simulator-west-coast-main-line-north-route-add-on", + "name": "Train Simulator: West Coast Main Line North Route Add-On", + "release_date": "2011-12-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105688" + ], + "created_at": "2026-07-10T10:10:48.066641", + "updated_at": "2026-07-10T10:10:48.067620", + "url": "/v1/games/train-simulator-west-coast-main-line-north-route-add-on" +} diff --git a/site/public/v1/games/train-simulator-west-coast-main-line-over-shap-route-add-on/index.json b/site/public/v1/games/train-simulator-west-coast-main-line-over-shap-route-add-on/index.json new file mode 100644 index 000000000000..dacf2e08875f --- /dev/null +++ b/site/public/v1/games/train-simulator-west-coast-main-line-over-shap-route-add-on/index.json @@ -0,0 +1,31 @@ +{ + "id": 160107, + "slug": "train-simulator-west-coast-main-line-over-shap-route-add-on", + "name": "Train Simulator: West Coast Main Line Over Shap Route Add-On", + "release_date": "2014-01-16", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105481" + ], + "created_at": "2026-07-10T10:10:48.067620", + "updated_at": "2026-07-10T10:10:48.067620", + "url": "/v1/games/train-simulator-west-coast-main-line-over-shap-route-add-on" +} diff --git a/site/public/v1/games/train-simulator-west-highland-line-extension-route-add-on/index.json b/site/public/v1/games/train-simulator-west-highland-line-extension-route-add-on/index.json new file mode 100644 index 000000000000..d20ff4f6943d --- /dev/null +++ b/site/public/v1/games/train-simulator-west-highland-line-extension-route-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 160108, + "slug": "train-simulator-west-highland-line-extension-route-add-on", + "name": "Train Simulator: West Highland Line Extension Route Add-On", + "release_date": "2014-10-02", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Thomson Interactive" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106031" + ], + "created_at": "2026-07-10T10:10:48.067620", + "updated_at": "2026-07-10T10:10:48.067620", + "url": "/v1/games/train-simulator-west-highland-line-extension-route-add-on" +} diff --git a/site/public/v1/games/train-simulator-west-highland-line-south-route-add-on/index.json b/site/public/v1/games/train-simulator-west-highland-line-south-route-add-on/index.json new file mode 100644 index 000000000000..46d304cf65a2 --- /dev/null +++ b/site/public/v1/games/train-simulator-west-highland-line-south-route-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 160109, + "slug": "train-simulator-west-highland-line-south-route-add-on", + "name": "Train Simulator: West Highland Line (South) Route Add-On", + "release_date": "2015-08-06", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Milepost Simulations" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106230" + ], + "created_at": "2026-07-10T10:10:48.068618", + "updated_at": "2026-07-10T10:10:48.068618", + "url": "/v1/games/train-simulator-west-highland-line-south-route-add-on" +} diff --git a/site/public/v1/games/train-simulator-west-rhine-k-ln-koblenz-route-add-on/index.json b/site/public/v1/games/train-simulator-west-rhine-k-ln-koblenz-route-add-on/index.json new file mode 100644 index 000000000000..12b3537fadcb --- /dev/null +++ b/site/public/v1/games/train-simulator-west-rhine-k-ln-koblenz-route-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 160110, + "slug": "train-simulator-west-rhine-k-ln-koblenz-route-add-on", + "name": "Train Simulator: West Rhine: Köln - Koblenz Route Add-On", + "release_date": "2014-12-05", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105515" + ], + "created_at": "2026-07-10T10:10:48.068618", + "updated_at": "2026-07-10T10:10:48.068618", + "url": "/v1/games/train-simulator-west-rhine-k-ln-koblenz-route-add-on" +} diff --git a/site/public/v1/games/train-simulator-western-hydraulics-pack-add-on/index.json b/site/public/v1/games/train-simulator-western-hydraulics-pack-add-on/index.json new file mode 100644 index 000000000000..fdbc7b935f5b --- /dev/null +++ b/site/public/v1/games/train-simulator-western-hydraulics-pack-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 160112, + "slug": "train-simulator-western-hydraulics-pack-add-on", + "name": "Train Simulator: Western Hydraulics Pack Add-On", + "release_date": "2017-08-31", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105705" + ], + "created_at": "2026-07-10T10:10:48.069614", + "updated_at": "2026-07-10T10:10:48.069614", + "url": "/v1/games/train-simulator-western-hydraulics-pack-add-on" +} diff --git a/site/public/v1/games/train-simulator-western-lines-of-scotland-route-add-on/index.json b/site/public/v1/games/train-simulator-western-lines-of-scotland-route-add-on/index.json new file mode 100644 index 000000000000..eaa4abd325b2 --- /dev/null +++ b/site/public/v1/games/train-simulator-western-lines-of-scotland-route-add-on/index.json @@ -0,0 +1,31 @@ +{ + "id": 160113, + "slug": "train-simulator-western-lines-of-scotland-route-add-on", + "name": "Train Simulator: Western Lines of Scotland Route Add-On", + "release_date": "2013-03-21", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105890" + ], + "created_at": "2026-07-10T10:10:48.070599", + "updated_at": "2026-07-10T10:10:48.070599", + "url": "/v1/games/train-simulator-western-lines-of-scotland-route-add-on" +} diff --git a/site/public/v1/games/train-simulator-western-maryland-railway-retro-pack/index.json b/site/public/v1/games/train-simulator-western-maryland-railway-retro-pack/index.json new file mode 100644 index 000000000000..0cf52c0e74df --- /dev/null +++ b/site/public/v1/games/train-simulator-western-maryland-railway-retro-pack/index.json @@ -0,0 +1,33 @@ +{ + "id": 160114, + "slug": "train-simulator-western-maryland-railway-retro-pack", + "name": "Train Simulator: Western Maryland Railway Retro Pack", + "release_date": "2020-11-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "High Iron Simulations" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105703" + ], + "created_at": "2026-07-10T10:10:48.070599", + "updated_at": "2026-07-10T10:10:48.070599", + "url": "/v1/games/train-simulator-western-maryland-railway-retro-pack" +} diff --git a/site/public/v1/games/train-simulator-western-pacific-fp7-california-zephyr-loco-add-on/index.json b/site/public/v1/games/train-simulator-western-pacific-fp7-california-zephyr-loco-add-on/index.json new file mode 100644 index 000000000000..bafbc3579630 --- /dev/null +++ b/site/public/v1/games/train-simulator-western-pacific-fp7-california-zephyr-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 160115, + "slug": "train-simulator-western-pacific-fp7-california-zephyr-loco-add-on", + "name": "Train Simulator: Western Pacific FP7 ‘California Zephyr’ Loco Add-On", + "release_date": "2016-06-10", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105622" + ], + "created_at": "2026-07-10T10:10:48.070599", + "updated_at": "2026-07-10T10:10:48.070599", + "url": "/v1/games/train-simulator-western-pacific-fp7-california-zephyr-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-western-pacific-gp20-high-nose-loco-add-on/index.json b/site/public/v1/games/train-simulator-western-pacific-gp20-high-nose-loco-add-on/index.json new file mode 100644 index 000000000000..6397e7a5097a --- /dev/null +++ b/site/public/v1/games/train-simulator-western-pacific-gp20-high-nose-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 160116, + "slug": "train-simulator-western-pacific-gp20-high-nose-loco-add-on", + "name": "Train Simulator: Western Pacific GP20 High Nose Loco Add-On", + "release_date": "2016-04-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Reppo" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106167" + ], + "created_at": "2026-07-10T10:10:48.071609", + "updated_at": "2026-07-10T10:10:48.071609", + "url": "/v1/games/train-simulator-western-pacific-gp20-high-nose-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-western-pacific-gp35-add-on/index.json b/site/public/v1/games/train-simulator-western-pacific-gp35-add-on/index.json new file mode 100644 index 000000000000..66dad321226c --- /dev/null +++ b/site/public/v1/games/train-simulator-western-pacific-gp35-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 160117, + "slug": "train-simulator-western-pacific-gp35-add-on", + "name": "Train Simulator: Western Pacific GP35 Add-On", + "release_date": "2017-06-15", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Digital Train Model" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106034" + ], + "created_at": "2026-07-10T10:10:48.071609", + "updated_at": "2026-07-10T10:10:48.071609", + "url": "/v1/games/train-simulator-western-pacific-gp35-add-on" +} diff --git a/site/public/v1/games/train-simulator-western-sichuan-pass-dujiangyan-maoxian-mashancun-route-add-on/index.json b/site/public/v1/games/train-simulator-western-sichuan-pass-dujiangyan-maoxian-mashancun-route-add-on/index.json new file mode 100644 index 000000000000..106503ce718f --- /dev/null +++ b/site/public/v1/games/train-simulator-western-sichuan-pass-dujiangyan-maoxian-mashancun-route-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 160118, + "slug": "train-simulator-western-sichuan-pass-dujiangyan-maoxian-mashancun-route-add-on", + "name": "Train Simulator: Western Sichuan Pass: Dujiangyan - Maoxian & Mashancun Route Add-On", + "release_date": "2017-06-21", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "SimTech Vision" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105708" + ], + "created_at": "2026-07-10T10:10:48.071609", + "updated_at": "2026-07-10T10:10:48.071609", + "url": "/v1/games/train-simulator-western-sichuan-pass-dujiangyan-maoxian-mashancun-route-add-on" +} diff --git a/site/public/v1/games/train-simulator-wherry-lines-norwich-great-yarmouth-lowestoft-route-add-on/index.json b/site/public/v1/games/train-simulator-wherry-lines-norwich-great-yarmouth-lowestoft-route-add-on/index.json new file mode 100644 index 000000000000..23b169edd753 --- /dev/null +++ b/site/public/v1/games/train-simulator-wherry-lines-norwich-great-yarmouth-lowestoft-route-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 160119, + "slug": "train-simulator-wherry-lines-norwich-great-yarmouth-lowestoft-route-add-on", + "name": "Train Simulator: Wherry Lines: Norwich – Great Yarmouth & Lowestoft Route Add-On", + "release_date": "2016-10-27", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Armstrong Powerhouse" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105635" + ], + "created_at": "2026-07-10T10:10:48.071609", + "updated_at": "2026-07-10T10:10:48.071609", + "url": "/v1/games/train-simulator-wherry-lines-norwich-great-yarmouth-lowestoft-route-add-on" +} diff --git a/site/public/v1/games/train-simulator-woodhead-electric-railway-in-blue-route-add-on/index.json b/site/public/v1/games/train-simulator-woodhead-electric-railway-in-blue-route-add-on/index.json new file mode 100644 index 000000000000..dd95e2bbb1a4 --- /dev/null +++ b/site/public/v1/games/train-simulator-woodhead-electric-railway-in-blue-route-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 160120, + "slug": "train-simulator-woodhead-electric-railway-in-blue-route-add-on", + "name": "Train Simulator: Woodhead Electric Railway in Blue Route Add-On", + "release_date": "2018-02-27", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105575" + ], + "created_at": "2026-07-10T10:10:48.072669", + "updated_at": "2026-07-10T10:10:48.072669", + "url": "/v1/games/train-simulator-woodhead-electric-railway-in-blue-route-add-on" +} diff --git a/site/public/v1/games/train-simulator-woodhead-route-add-on/index.json b/site/public/v1/games/train-simulator-woodhead-route-add-on/index.json new file mode 100644 index 000000000000..ac7b66ab2e23 --- /dev/null +++ b/site/public/v1/games/train-simulator-woodhead-route-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 160121, + "slug": "train-simulator-woodhead-route-add-on", + "name": "Train Simulator: Woodhead Route Add-On", + "release_date": "2012-01-26", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105756" + ], + "created_at": "2026-07-10T10:10:48.072669", + "updated_at": "2026-07-10T10:10:48.072669", + "url": "/v1/games/train-simulator-woodhead-route-add-on" +} diff --git a/site/public/v1/games/train-simulator-worcester-mossel-bay-railway-route-add-on/index.json b/site/public/v1/games/train-simulator-worcester-mossel-bay-railway-route-add-on/index.json new file mode 100644 index 000000000000..801b3705d9d4 --- /dev/null +++ b/site/public/v1/games/train-simulator-worcester-mossel-bay-railway-route-add-on/index.json @@ -0,0 +1,31 @@ +{ + "id": 160122, + "slug": "train-simulator-worcester-mossel-bay-railway-route-add-on", + "name": "Train Simulator: Worcester - Mossel Bay Railway Route Add-On", + "release_date": "2020-02-14", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106238" + ], + "created_at": "2026-07-10T10:10:48.072669", + "updated_at": "2026-07-10T10:10:48.072669", + "url": "/v1/games/train-simulator-worcester-mossel-bay-railway-route-add-on" +} diff --git a/site/public/v1/games/train-simulator-wsr-diesels-loco-add-on/index.json b/site/public/v1/games/train-simulator-wsr-diesels-loco-add-on/index.json new file mode 100644 index 000000000000..ef5b7cc91349 --- /dev/null +++ b/site/public/v1/games/train-simulator-wsr-diesels-loco-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 160123, + "slug": "train-simulator-wsr-diesels-loco-add-on", + "name": "Train Simulator: WSR Diesels Loco Add-On", + "release_date": "2013-11-14", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105656" + ], + "created_at": "2026-07-10T10:10:48.073588", + "updated_at": "2026-07-10T10:10:48.073588", + "url": "/v1/games/train-simulator-wsr-diesels-loco-add-on" +} diff --git a/site/public/v1/games/train-simulator-wutachtalbahn-lauchringen-immendingen-route-add-on/index.json b/site/public/v1/games/train-simulator-wutachtalbahn-lauchringen-immendingen-route-add-on/index.json new file mode 100644 index 000000000000..a5b156a5276b --- /dev/null +++ b/site/public/v1/games/train-simulator-wutachtalbahn-lauchringen-immendingen-route-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 160124, + "slug": "train-simulator-wutachtalbahn-lauchringen-immendingen-route-add-on", + "name": "Train Simulator: Wutachtalbahn: Lauchringen – Immendingen Route Add-On", + "release_date": "2017-09-08", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105568" + ], + "created_at": "2026-07-10T10:10:48.073588", + "updated_at": "2026-07-10T10:10:48.073588", + "url": "/v1/games/train-simulator-wutachtalbahn-lauchringen-immendingen-route-add-on" +} diff --git a/site/public/v1/games/train-simulator-yellowhead-pass-jasper-valemount-route-add-on/index.json b/site/public/v1/games/train-simulator-yellowhead-pass-jasper-valemount-route-add-on/index.json new file mode 100644 index 000000000000..cece18aeacb3 --- /dev/null +++ b/site/public/v1/games/train-simulator-yellowhead-pass-jasper-valemount-route-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 160125, + "slug": "train-simulator-yellowhead-pass-jasper-valemount-route-add-on", + "name": "Train Simulator: Yellowhead Pass: Jasper - Valemount Route Add-On", + "release_date": "2020-07-09", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Milepost Simulations" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105798" + ], + "created_at": "2026-07-10T10:10:48.073588", + "updated_at": "2026-07-10T10:10:48.073588", + "url": "/v1/games/train-simulator-yellowhead-pass-jasper-valemount-route-add-on" +} diff --git a/site/public/v1/games/train-valley-console-edition/index.json b/site/public/v1/games/train-valley-console-edition/index.json new file mode 100644 index 000000000000..5bfa3ceb16d1 --- /dev/null +++ b/site/public/v1/games/train-valley-console-edition/index.json @@ -0,0 +1,29 @@ +{ + "id": 160142, + "slug": "train-valley-console-edition", + "name": "Train Valley: Console Edition", + "release_date": "2022-07-27", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S" + ], + "genres": [], + "stores": [], + "developers": [ + "Flazm" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115300669" + ], + "created_at": "2026-07-10T10:10:48.078622", + "updated_at": "2026-07-10T10:10:48.078622", + "url": "/v1/games/train-valley-console-edition" +} diff --git a/site/public/v1/games/tramsim-console-edition/index.json b/site/public/v1/games/tramsim-console-edition/index.json new file mode 100644 index 000000000000..2fd9f8c40634 --- /dev/null +++ b/site/public/v1/games/tramsim-console-edition/index.json @@ -0,0 +1,32 @@ +{ + "id": 160219, + "slug": "tramsim-console-edition", + "name": "TramSim: Console Edition", + "release_date": "2023-04-25", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 4" + ], + "genres": [], + "stores": [], + "developers": [ + "ViewApp" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123206652" + ], + "created_at": "2026-07-10T10:10:48.099286", + "updated_at": "2026-07-10T10:10:48.099286", + "url": "/v1/games/tramsim-console-edition" +} diff --git a/site/public/v1/games/transformers-reactivate/index.json b/site/public/v1/games/transformers-reactivate/index.json new file mode 100644 index 000000000000..784c8fe9d61d --- /dev/null +++ b/site/public/v1/games/transformers-reactivate/index.json @@ -0,0 +1,25 @@ +{ + "id": 160287, + "slug": "transformers-reactivate", + "name": "Transformers: Reactivate", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115641827" + ], + "created_at": "2026-07-10T10:10:48.117299", + "updated_at": "2026-07-10T10:10:48.117299", + "url": "/v1/games/transformers-reactivate" +} diff --git a/site/public/v1/games/transport-fever-2-console-edition/index.json b/site/public/v1/games/transport-fever-2-console-edition/index.json new file mode 100644 index 000000000000..ef50dad178d9 --- /dev/null +++ b/site/public/v1/games/transport-fever-2-console-edition/index.json @@ -0,0 +1,32 @@ +{ + "id": 160333, + "slug": "transport-fever-2-console-edition", + "name": "Transport Fever 2: Console Edition", + "release_date": "2023-03-09", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 4" + ], + "genres": [], + "stores": [], + "developers": [ + "Urban Games" + ], + "publishers": [ + "Nacon" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122668965" + ], + "created_at": "2026-07-10T10:10:48.129317", + "updated_at": "2026-07-10T10:10:48.129317", + "url": "/v1/games/transport-fever-2-console-edition" +} diff --git a/site/public/v1/games/transport-gigant-down-under/index.json b/site/public/v1/games/transport-gigant-down-under/index.json new file mode 100644 index 000000000000..b5b702b67608 --- /dev/null +++ b/site/public/v1/games/transport-gigant-down-under/index.json @@ -0,0 +1,25 @@ +{ + "id": 160337, + "slug": "transport-gigant-down-under", + "name": "Transport Gigant: Down Under", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124720760" + ], + "created_at": "2026-07-10T10:10:48.129317", + "updated_at": "2026-07-10T10:10:48.129317", + "url": "/v1/games/transport-gigant-down-under" +} diff --git a/site/public/v1/games/transport-tycoon-world-editor/index.json b/site/public/v1/games/transport-tycoon-world-editor/index.json new file mode 100644 index 000000000000..1c1efd183408 --- /dev/null +++ b/site/public/v1/games/transport-tycoon-world-editor/index.json @@ -0,0 +1,25 @@ +{ + "id": 160342, + "slug": "transport-tycoon-world-editor", + "name": "Transport Tycoon: World Editor", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124720713" + ], + "created_at": "2026-07-10T10:10:48.131274", + "updated_at": "2026-07-10T10:10:48.131274", + "url": "/v1/games/transport-tycoon-world-editor" +} diff --git a/site/public/v1/games/trapper-night-hunter-skin-pack/index.json b/site/public/v1/games/trapper-night-hunter-skin-pack/index.json new file mode 100644 index 000000000000..d41d2a495f87 --- /dev/null +++ b/site/public/v1/games/trapper-night-hunter-skin-pack/index.json @@ -0,0 +1,32 @@ +{ + "id": 160418, + "slug": "trapper-night-hunter-skin-pack", + "name": "Trapper Night Hunter Skin Pack", + "release_date": "2015-06-02", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "science fiction video game" + ], + "stores": [], + "developers": [], + "publishers": [ + "2K" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124637528" + ], + "created_at": "2026-07-10T10:10:48.152299", + "updated_at": "2026-07-10T10:10:48.152299", + "url": "/v1/games/trapper-night-hunter-skin-pack" +} diff --git a/site/public/v1/games/trapper-victory-skin-pack/index.json b/site/public/v1/games/trapper-victory-skin-pack/index.json new file mode 100644 index 000000000000..ccc681e2e39a --- /dev/null +++ b/site/public/v1/games/trapper-victory-skin-pack/index.json @@ -0,0 +1,32 @@ +{ + "id": 160420, + "slug": "trapper-victory-skin-pack", + "name": "Trapper Victory Skin Pack", + "release_date": "2015-07-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "science fiction video game" + ], + "stores": [], + "developers": [], + "publishers": [ + "2K" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124637416" + ], + "created_at": "2026-07-10T10:10:48.152299", + "updated_at": "2026-07-10T10:10:48.152299", + "url": "/v1/games/trapper-victory-skin-pack" +} diff --git a/site/public/v1/games/treat-road/index.json b/site/public/v1/games/treat-road/index.json new file mode 100644 index 000000000000..af3da10f1aa9 --- /dev/null +++ b/site/public/v1/games/treat-road/index.json @@ -0,0 +1,25 @@ +{ + "id": 160655, + "slug": "treat-road", + "name": "Treat Road", + "release_date": "2013-04-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112582109" + ], + "created_at": "2026-07-10T10:10:48.215454", + "updated_at": "2026-07-10T10:10:48.215454", + "url": "/v1/games/treat-road" +} diff --git a/site/public/v1/games/tremor-for-quake/index.json b/site/public/v1/games/tremor-for-quake/index.json new file mode 100644 index 000000000000..5bcf74afbfa3 --- /dev/null +++ b/site/public/v1/games/tremor-for-quake/index.json @@ -0,0 +1,25 @@ +{ + "id": 160703, + "slug": "tremor-for-quake", + "name": "Tremor for quake", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122923510" + ], + "created_at": "2026-07-10T10:10:48.228483", + "updated_at": "2026-07-10T10:10:48.228483", + "url": "/v1/games/tremor-for-quake" +} diff --git a/site/public/v1/games/tremors-the-game/index.json b/site/public/v1/games/tremors-the-game/index.json new file mode 100644 index 000000000000..4407b6851777 --- /dev/null +++ b/site/public/v1/games/tremors-the-game/index.json @@ -0,0 +1,30 @@ +{ + "id": 160704, + "slug": "tremors-the-game", + "name": "Tremors: The Game", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Nintendo GameCube", + "Microsoft Windows" + ], + "genres": [ + "survival horror" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16267721" + ], + "created_at": "2026-07-10T10:10:48.228483", + "updated_at": "2026-07-10T10:10:48.228483", + "url": "/v1/games/tremors-the-game" +} diff --git a/site/public/v1/games/triad-wars/index.json b/site/public/v1/games/triad-wars/index.json new file mode 100644 index 000000000000..793d57429217 --- /dev/null +++ b/site/public/v1/games/triad-wars/index.json @@ -0,0 +1,34 @@ +{ + "id": 160755, + "slug": "triad-wars", + "name": "Triad Wars", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "action-adventure game", + "third-person shooter" + ], + "stores": [], + "developers": [ + "United Front Games" + ], + "publishers": [ + "Square Enix" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16267802" + ], + "created_at": "2026-07-10T10:10:48.241863", + "updated_at": "2026-07-10T10:10:48.241863", + "url": "/v1/games/triad-wars" +} diff --git a/site/public/v1/games/tribes-of-midgard-deluxe-edition/index.json b/site/public/v1/games/tribes-of-midgard-deluxe-edition/index.json new file mode 100644 index 000000000000..c38d70bcc9d8 --- /dev/null +++ b/site/public/v1/games/tribes-of-midgard-deluxe-edition/index.json @@ -0,0 +1,27 @@ +{ + "id": 160854, + "slug": "tribes-of-midgard-deluxe-edition", + "name": "Tribes of Midgard Deluxe Edition", + "release_date": "2022-08-16", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Gearbox Publishing" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115525996" + ], + "created_at": "2026-07-10T10:10:48.298557", + "updated_at": "2026-07-10T10:10:48.298557", + "url": "/v1/games/tribes-of-midgard-deluxe-edition" +} diff --git a/site/public/v1/games/trine-2-goblin-menace/index.json b/site/public/v1/games/trine-2-goblin-menace/index.json new file mode 100644 index 000000000000..d3a0ea159c09 --- /dev/null +++ b/site/public/v1/games/trine-2-goblin-menace/index.json @@ -0,0 +1,25 @@ +{ + "id": 160988, + "slug": "trine-2-goblin-menace", + "name": "Trine 2: Goblin Menace", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110156547" + ], + "created_at": "2026-07-10T10:10:48.335577", + "updated_at": "2026-07-10T10:10:48.335577", + "url": "/v1/games/trine-2-goblin-menace" +} diff --git a/site/public/v1/games/trine-4-melody-of-mystery/index.json b/site/public/v1/games/trine-4-melody-of-mystery/index.json new file mode 100644 index 000000000000..89d1402ea685 --- /dev/null +++ b/site/public/v1/games/trine-4-melody-of-mystery/index.json @@ -0,0 +1,25 @@ +{ + "id": 160991, + "slug": "trine-4-melody-of-mystery", + "name": "Trine 4: Melody of Mystery", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140454722" + ], + "created_at": "2026-07-10T10:10:48.336542", + "updated_at": "2026-07-10T10:10:48.336542", + "url": "/v1/games/trine-4-melody-of-mystery" +} diff --git a/site/public/v1/games/trivia-vault/index.json b/site/public/v1/games/trivia-vault/index.json new file mode 100644 index 000000000000..c9edccad2b8c --- /dev/null +++ b/site/public/v1/games/trivia-vault/index.json @@ -0,0 +1,29 @@ +{ + "id": 161158, + "slug": "trivia-vault", + "name": "Trivia Vault", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "trivia video game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118351623" + ], + "created_at": "2026-07-10T10:10:48.378632", + "updated_at": "2026-07-10T10:10:48.378632", + "url": "/v1/games/trivia-vault" +} diff --git a/site/public/v1/games/tropical-island/index.json b/site/public/v1/games/tropical-island/index.json new file mode 100644 index 000000000000..6cde1afa9aad --- /dev/null +++ b/site/public/v1/games/tropical-island/index.json @@ -0,0 +1,33 @@ +{ + "id": 161253, + "slug": "tropical-island", + "name": "Tropical Island", + "release_date": "2021-01-11", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation Vita" + ], + "genres": [ + "first-person shooter" + ], + "stores": [], + "developers": [ + "VitaHEX games" + ], + "publishers": [ + "VitaHEX games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123997311" + ], + "created_at": "2026-07-10T10:10:48.404368", + "updated_at": "2026-07-10T10:10:48.404368", + "url": "/v1/games/tropical-island" +} diff --git a/site/public/v1/games/tropico-3-absolute-power/index.json b/site/public/v1/games/tropico-3-absolute-power/index.json new file mode 100644 index 000000000000..17335cdfef23 --- /dev/null +++ b/site/public/v1/games/tropico-3-absolute-power/index.json @@ -0,0 +1,25 @@ +{ + "id": 161268, + "slug": "tropico-3-absolute-power", + "name": "Tropico 3: Absolute Power", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121889156" + ], + "created_at": "2026-07-10T10:10:48.407388", + "updated_at": "2026-07-10T10:10:48.407388", + "url": "/v1/games/tropico-3-absolute-power" +} diff --git a/site/public/v1/games/tropico-3-gold-edition/index.json b/site/public/v1/games/tropico-3-gold-edition/index.json new file mode 100644 index 000000000000..31f8699071fa --- /dev/null +++ b/site/public/v1/games/tropico-3-gold-edition/index.json @@ -0,0 +1,27 @@ +{ + "id": 161269, + "slug": "tropico-3-gold-edition", + "name": "Tropico 3 Gold Edition", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Classic Mac OS" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121889147" + ], + "created_at": "2026-07-10T10:10:48.408368", + "updated_at": "2026-07-10T10:10:48.408368", + "url": "/v1/games/tropico-3-gold-edition" +} diff --git a/site/public/v1/games/tropico-4-gold-edition/index.json b/site/public/v1/games/tropico-4-gold-edition/index.json new file mode 100644 index 000000000000..fc39cb84e7fe --- /dev/null +++ b/site/public/v1/games/tropico-4-gold-edition/index.json @@ -0,0 +1,25 @@ +{ + "id": 161271, + "slug": "tropico-4-gold-edition", + "name": "Tropico 4: Gold Edition", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121889188" + ], + "created_at": "2026-07-10T10:10:48.408368", + "updated_at": "2026-07-10T10:10:48.408368", + "url": "/v1/games/tropico-4-gold-edition" +} diff --git a/site/public/v1/games/tropico-4-modern-times/index.json b/site/public/v1/games/tropico-4-modern-times/index.json new file mode 100644 index 000000000000..172f5d010fc1 --- /dev/null +++ b/site/public/v1/games/tropico-4-modern-times/index.json @@ -0,0 +1,34 @@ +{ + "id": 161272, + "slug": "tropico-4-modern-times", + "name": "Tropico 4: Modern Times", + "release_date": "2012-03-29", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Feral Interactive", + "Haemimont Games" + ], + "publishers": [ + "Kalypso Media", + "Feral Interactive" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q45367151" + ], + "created_at": "2026-07-10T10:10:48.408368", + "updated_at": "2026-07-10T10:10:48.408368", + "url": "/v1/games/tropico-4-modern-times" +} diff --git a/site/public/v1/games/tropico-5-waterborne/index.json b/site/public/v1/games/tropico-5-waterborne/index.json new file mode 100644 index 000000000000..4b9570dfe406 --- /dev/null +++ b/site/public/v1/games/tropico-5-waterborne/index.json @@ -0,0 +1,25 @@ +{ + "id": 161275, + "slug": "tropico-5-waterborne", + "name": "Tropico 5: Waterborne", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140447959" + ], + "created_at": "2026-07-10T10:10:48.409370", + "updated_at": "2026-07-10T10:10:48.409370", + "url": "/v1/games/tropico-5-waterborne" +} diff --git a/site/public/v1/games/tropico-6-next-gen-edition/index.json b/site/public/v1/games/tropico-6-next-gen-edition/index.json new file mode 100644 index 000000000000..035209b68795 --- /dev/null +++ b/site/public/v1/games/tropico-6-next-gen-edition/index.json @@ -0,0 +1,31 @@ +{ + "id": 161277, + "slug": "tropico-6-next-gen-edition", + "name": "Tropico 6: Next Gen Edition", + "release_date": "2022-03-31", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S" + ], + "genres": [], + "stores": [], + "developers": [ + "Realmforge Studios" + ], + "publishers": [ + "Kalypso Media" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111755723" + ], + "created_at": "2026-07-10T10:10:48.410359", + "updated_at": "2026-07-10T10:10:48.410359", + "url": "/v1/games/tropico-6-next-gen-edition" +} diff --git a/site/public/v1/games/tropico-mucho-macho-edition/index.json b/site/public/v1/games/tropico-mucho-macho-edition/index.json new file mode 100644 index 000000000000..6f2a424f240a --- /dev/null +++ b/site/public/v1/games/tropico-mucho-macho-edition/index.json @@ -0,0 +1,27 @@ +{ + "id": 161280, + "slug": "tropico-mucho-macho-edition", + "name": "Tropico: Mucho Macho Edition", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Classic Mac OS" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121889216" + ], + "created_at": "2026-07-10T10:10:48.410359", + "updated_at": "2026-07-10T10:10:48.410359", + "url": "/v1/games/tropico-mucho-macho-edition" +} diff --git a/site/public/v1/games/tropico-paradise-island/index.json b/site/public/v1/games/tropico-paradise-island/index.json new file mode 100644 index 000000000000..d084d7da19ac --- /dev/null +++ b/site/public/v1/games/tropico-paradise-island/index.json @@ -0,0 +1,25 @@ +{ + "id": 161281, + "slug": "tropico-paradise-island", + "name": "Tropico: Paradise Island", + "release_date": "2002-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q12059765" + ], + "created_at": "2026-07-10T10:10:48.411394", + "updated_at": "2026-07-10T10:10:48.411394", + "url": "/v1/games/tropico-paradise-island" +} diff --git a/site/public/v1/games/tropico-reloaded/index.json b/site/public/v1/games/tropico-reloaded/index.json new file mode 100644 index 000000000000..11e71a2d547e --- /dev/null +++ b/site/public/v1/games/tropico-reloaded/index.json @@ -0,0 +1,27 @@ +{ + "id": 161283, + "slug": "tropico-reloaded", + "name": "Tropico Reloaded", + "release_date": "2009-07-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118364195" + ], + "created_at": "2026-07-10T10:10:48.411394", + "updated_at": "2026-07-10T10:10:48.411394", + "url": "/v1/games/tropico-reloaded" +} diff --git a/site/public/v1/games/truck-stop/index.json b/site/public/v1/games/truck-stop/index.json new file mode 100644 index 000000000000..068985176765 --- /dev/null +++ b/site/public/v1/games/truck-stop/index.json @@ -0,0 +1,27 @@ +{ + "id": 161358, + "slug": "truck-stop", + "name": "Truck Stop", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Steve Jackson Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60792453" + ], + "created_at": "2026-07-10T10:10:48.431658", + "updated_at": "2026-07-10T10:10:48.431658", + "url": "/v1/games/truck-stop" +} diff --git a/site/public/v1/games/ts-marketplace-1800s-rolling-stock-pack-01-add-on/index.json b/site/public/v1/games/ts-marketplace-1800s-rolling-stock-pack-01-add-on/index.json new file mode 100644 index 000000000000..ceda6513173b --- /dev/null +++ b/site/public/v1/games/ts-marketplace-1800s-rolling-stock-pack-01-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 161526, + "slug": "ts-marketplace-1800s-rolling-stock-pack-01-add-on", + "name": "TS Marketplace: 1800s Rolling Stock Pack 01 Add-On", + "release_date": "2019-05-08", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Smokebox" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105941" + ], + "created_at": "2026-07-10T10:10:48.477354", + "updated_at": "2026-07-10T10:10:48.477354", + "url": "/v1/games/ts-marketplace-1800s-rolling-stock-pack-01-add-on" +} diff --git a/site/public/v1/games/ts-marketplace-1800s-rolling-stock-pack-02-add-on/index.json b/site/public/v1/games/ts-marketplace-1800s-rolling-stock-pack-02-add-on/index.json new file mode 100644 index 000000000000..3c4843eac43c --- /dev/null +++ b/site/public/v1/games/ts-marketplace-1800s-rolling-stock-pack-02-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 161527, + "slug": "ts-marketplace-1800s-rolling-stock-pack-02-add-on", + "name": "TS Marketplace: 1800s Rolling Stock Pack 02 Add-On", + "release_date": "2019-05-08", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Smokebox" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105940" + ], + "created_at": "2026-07-10T10:10:48.477354", + "updated_at": "2026-07-10T10:10:48.477354", + "url": "/v1/games/ts-marketplace-1800s-rolling-stock-pack-02-add-on" +} diff --git a/site/public/v1/games/ts-marketplace-alaska-railroad-scenario-pack-01/index.json b/site/public/v1/games/ts-marketplace-alaska-railroad-scenario-pack-01/index.json new file mode 100644 index 000000000000..6540bc77123f --- /dev/null +++ b/site/public/v1/games/ts-marketplace-alaska-railroad-scenario-pack-01/index.json @@ -0,0 +1,33 @@ +{ + "id": 161528, + "slug": "ts-marketplace-alaska-railroad-scenario-pack-01", + "name": "TS Marketplace: Alaska Railroad Scenario Pack 01", + "release_date": "2019-06-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Trains & Drivers" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105938" + ], + "created_at": "2026-07-10T10:10:48.477354", + "updated_at": "2026-07-10T10:10:48.477354", + "url": "/v1/games/ts-marketplace-alaska-railroad-scenario-pack-01" +} diff --git a/site/public/v1/games/ts-marketplace-amtrak-e8-scenario-pack-01-add-on/index.json b/site/public/v1/games/ts-marketplace-amtrak-e8-scenario-pack-01-add-on/index.json new file mode 100644 index 000000000000..3f0e72ab46d1 --- /dev/null +++ b/site/public/v1/games/ts-marketplace-amtrak-e8-scenario-pack-01-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 161529, + "slug": "ts-marketplace-amtrak-e8-scenario-pack-01-add-on", + "name": "TS Marketplace: Amtrak E8 Scenario Pack 01 Add-On", + "release_date": "2018-06-20", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "High Iron Simulations" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106025" + ], + "created_at": "2026-07-10T10:10:48.477354", + "updated_at": "2026-07-10T10:10:48.477354", + "url": "/v1/games/ts-marketplace-amtrak-e8-scenario-pack-01-add-on" +} diff --git a/site/public/v1/games/ts-marketplace-baltimore-and-ohio-ge-44-add-on/index.json b/site/public/v1/games/ts-marketplace-baltimore-and-ohio-ge-44-add-on/index.json new file mode 100644 index 000000000000..a419c3a2d42c --- /dev/null +++ b/site/public/v1/games/ts-marketplace-baltimore-and-ohio-ge-44-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 161530, + "slug": "ts-marketplace-baltimore-and-ohio-ge-44-add-on", + "name": "TS Marketplace: Baltimore and Ohio GE 44 Add-On", + "release_date": "2017-06-21", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Digital Train Model" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106365" + ], + "created_at": "2026-07-10T10:10:48.477354", + "updated_at": "2026-07-10T10:10:48.477354", + "url": "/v1/games/ts-marketplace-baltimore-and-ohio-ge-44-add-on" +} diff --git a/site/public/v1/games/ts-marketplace-baltimore-and-ohio-gp30-liveries-add-on/index.json b/site/public/v1/games/ts-marketplace-baltimore-and-ohio-gp30-liveries-add-on/index.json new file mode 100644 index 000000000000..1f2f0ee96617 --- /dev/null +++ b/site/public/v1/games/ts-marketplace-baltimore-and-ohio-gp30-liveries-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 161531, + "slug": "ts-marketplace-baltimore-and-ohio-gp30-liveries-add-on", + "name": "TS Marketplace: Baltimore and Ohio GP30 Liveries Add-On", + "release_date": "2017-12-08", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Digital Train Model" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106278" + ], + "created_at": "2026-07-10T10:10:48.478254", + "updated_at": "2026-07-10T10:10:48.478254", + "url": "/v1/games/ts-marketplace-baltimore-and-ohio-gp30-liveries-add-on" +} diff --git a/site/public/v1/games/ts-marketplace-baltimore-ohio-rf-16-livery-pack/index.json b/site/public/v1/games/ts-marketplace-baltimore-ohio-rf-16-livery-pack/index.json new file mode 100644 index 000000000000..acb3819755d6 --- /dev/null +++ b/site/public/v1/games/ts-marketplace-baltimore-ohio-rf-16-livery-pack/index.json @@ -0,0 +1,33 @@ +{ + "id": 161532, + "slug": "ts-marketplace-baltimore-ohio-rf-16-livery-pack", + "name": "TS Marketplace: Baltimore & Ohio RF-16 Livery Pack", + "release_date": "2020-05-27", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "The Loco Shop" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105808" + ], + "created_at": "2026-07-10T10:10:48.478254", + "updated_at": "2026-07-10T10:10:48.478254", + "url": "/v1/games/ts-marketplace-baltimore-ohio-rf-16-livery-pack" +} diff --git a/site/public/v1/games/ts-marketplace-barnum-coaches-pack-01-add-on/index.json b/site/public/v1/games/ts-marketplace-barnum-coaches-pack-01-add-on/index.json new file mode 100644 index 000000000000..a122eb10a4b0 --- /dev/null +++ b/site/public/v1/games/ts-marketplace-barnum-coaches-pack-01-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 161533, + "slug": "ts-marketplace-barnum-coaches-pack-01-add-on", + "name": "TS Marketplace: Barnum Coaches Pack 01 Add-On", + "release_date": "2016-11-22", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "MatrixTrains" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106314" + ], + "created_at": "2026-07-10T10:10:48.478254", + "updated_at": "2026-07-10T10:10:48.478254", + "url": "/v1/games/ts-marketplace-barnum-coaches-pack-01-add-on" +} diff --git a/site/public/v1/games/ts-marketplace-bb-1044-100-livery-add-on/index.json b/site/public/v1/games/ts-marketplace-bb-1044-100-livery-add-on/index.json new file mode 100644 index 000000000000..7eff49f4e066 --- /dev/null +++ b/site/public/v1/games/ts-marketplace-bb-1044-100-livery-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 161534, + "slug": "ts-marketplace-bb-1044-100-livery-add-on", + "name": "TS Marketplace: ÖBB 1044 '100' Livery Add-On", + "release_date": "2017-08-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Skyhook Games Studio" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106366" + ], + "created_at": "2026-07-10T10:10:48.478254", + "updated_at": "2026-07-10T10:10:48.478254", + "url": "/v1/games/ts-marketplace-bb-1044-100-livery-add-on" +} diff --git a/site/public/v1/games/ts-marketplace-bb-1144-livery-pack-add-on/index.json b/site/public/v1/games/ts-marketplace-bb-1144-livery-pack-add-on/index.json new file mode 100644 index 000000000000..7552ff393db2 --- /dev/null +++ b/site/public/v1/games/ts-marketplace-bb-1144-livery-pack-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 161535, + "slug": "ts-marketplace-bb-1144-livery-pack-add-on", + "name": "TS Marketplace: ÖBB 1144 Livery Pack Add-On", + "release_date": "2019-05-03", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Skyhook Games Studio" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105942" + ], + "created_at": "2026-07-10T10:10:48.478254", + "updated_at": "2026-07-10T10:10:48.478254", + "url": "/v1/games/ts-marketplace-bb-1144-livery-pack-add-on" +} diff --git a/site/public/v1/games/ts-marketplace-bb-rnoos-wagon-pack-add-on/index.json b/site/public/v1/games/ts-marketplace-bb-rnoos-wagon-pack-add-on/index.json new file mode 100644 index 000000000000..bee1ca2cfae2 --- /dev/null +++ b/site/public/v1/games/ts-marketplace-bb-rnoos-wagon-pack-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 161536, + "slug": "ts-marketplace-bb-rnoos-wagon-pack-add-on", + "name": "TS Marketplace: ÖBB Rnoos Wagon Pack Add-On", + "release_date": "2016-11-02", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Skyhook Games Studio" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106297" + ], + "created_at": "2026-07-10T10:10:48.478254", + "updated_at": "2026-07-10T10:10:48.478254", + "url": "/v1/games/ts-marketplace-bb-rnoos-wagon-pack-add-on" +} diff --git a/site/public/v1/games/ts-marketplace-bb-sgns-container-wagon-pack/index.json b/site/public/v1/games/ts-marketplace-bb-sgns-container-wagon-pack/index.json new file mode 100644 index 000000000000..f8a5b3671d8e --- /dev/null +++ b/site/public/v1/games/ts-marketplace-bb-sgns-container-wagon-pack/index.json @@ -0,0 +1,33 @@ +{ + "id": 161537, + "slug": "ts-marketplace-bb-sgns-container-wagon-pack", + "name": "TS Marketplace: ÖBB Sgns Container Wagon Pack", + "release_date": "2016-11-11", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Skyhook Games Studio" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106311" + ], + "created_at": "2026-07-10T10:10:48.478254", + "updated_at": "2026-07-10T10:10:48.478254", + "url": "/v1/games/ts-marketplace-bb-sgns-container-wagon-pack" +} diff --git a/site/public/v1/games/ts-marketplace-bb-sgns-hopper-pack/index.json b/site/public/v1/games/ts-marketplace-bb-sgns-hopper-pack/index.json new file mode 100644 index 000000000000..8a4cdb2a197f --- /dev/null +++ b/site/public/v1/games/ts-marketplace-bb-sgns-hopper-pack/index.json @@ -0,0 +1,33 @@ +{ + "id": 161538, + "slug": "ts-marketplace-bb-sgns-hopper-pack", + "name": "TS Marketplace: ÖBB Sgns Hopper Pack", + "release_date": "2016-11-02", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Skyhook Games Studio" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106315" + ], + "created_at": "2026-07-10T10:10:48.479312", + "updated_at": "2026-07-10T10:10:48.479312", + "url": "/v1/games/ts-marketplace-bb-sgns-hopper-pack" +} diff --git a/site/public/v1/games/ts-marketplace-br-hawksworth-coach-pack-01-add-on/index.json b/site/public/v1/games/ts-marketplace-br-hawksworth-coach-pack-01-add-on/index.json new file mode 100644 index 000000000000..d07d87710e0a --- /dev/null +++ b/site/public/v1/games/ts-marketplace-br-hawksworth-coach-pack-01-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 161539, + "slug": "ts-marketplace-br-hawksworth-coach-pack-01-add-on", + "name": "TS Marketplace: BR Hawksworth Coach Pack 01 Add-On", + "release_date": "2017-05-05", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "MatrixTrains" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106294" + ], + "created_at": "2026-07-10T10:10:48.479312", + "updated_at": "2026-07-10T10:10:48.479312", + "url": "/v1/games/ts-marketplace-br-hawksworth-coach-pack-01-add-on" +} diff --git a/site/public/v1/games/ts-marketplace-br-hawksworth-coach-pack-02-add-on/index.json b/site/public/v1/games/ts-marketplace-br-hawksworth-coach-pack-02-add-on/index.json new file mode 100644 index 000000000000..2b439121c81c --- /dev/null +++ b/site/public/v1/games/ts-marketplace-br-hawksworth-coach-pack-02-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 161540, + "slug": "ts-marketplace-br-hawksworth-coach-pack-02-add-on", + "name": "TS Marketplace: BR Hawksworth Coach Pack 02 Add-On", + "release_date": "2017-05-05", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "MatrixTrains" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106295" + ], + "created_at": "2026-07-10T10:10:48.479312", + "updated_at": "2026-07-10T10:10:48.479312", + "url": "/v1/games/ts-marketplace-br-hawksworth-coach-pack-02-add-on" +} diff --git a/site/public/v1/games/ts-marketplace-br-porthole-coach-pack-01-add-on/index.json b/site/public/v1/games/ts-marketplace-br-porthole-coach-pack-01-add-on/index.json new file mode 100644 index 000000000000..3ffc63fc6580 --- /dev/null +++ b/site/public/v1/games/ts-marketplace-br-porthole-coach-pack-01-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 161541, + "slug": "ts-marketplace-br-porthole-coach-pack-01-add-on", + "name": "TS Marketplace: BR Porthole Coach Pack 01 Add-On", + "release_date": "2017-01-27", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "MatrixTrains" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106309" + ], + "created_at": "2026-07-10T10:10:48.479312", + "updated_at": "2026-07-10T10:10:48.479312", + "url": "/v1/games/ts-marketplace-br-porthole-coach-pack-01-add-on" +} diff --git a/site/public/v1/games/ts-marketplace-br-porthole-coach-pack-02-add-on/index.json b/site/public/v1/games/ts-marketplace-br-porthole-coach-pack-02-add-on/index.json new file mode 100644 index 000000000000..0e58f450ee9a --- /dev/null +++ b/site/public/v1/games/ts-marketplace-br-porthole-coach-pack-02-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 161542, + "slug": "ts-marketplace-br-porthole-coach-pack-02-add-on", + "name": "TS Marketplace: BR Porthole Coach Pack 02 Add-On", + "release_date": "2017-01-27", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "MatrixTrains" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106310" + ], + "created_at": "2026-07-10T10:10:48.479312", + "updated_at": "2026-07-10T10:10:48.479312", + "url": "/v1/games/ts-marketplace-br-porthole-coach-pack-02-add-on" +} diff --git a/site/public/v1/games/ts-marketplace-br-saint-tpo-livery-pack-add-on/index.json b/site/public/v1/games/ts-marketplace-br-saint-tpo-livery-pack-add-on/index.json new file mode 100644 index 000000000000..a802df3eca18 --- /dev/null +++ b/site/public/v1/games/ts-marketplace-br-saint-tpo-livery-pack-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 161543, + "slug": "ts-marketplace-br-saint-tpo-livery-pack-add-on", + "name": "TS Marketplace: BR Saint & TPO Livery Pack Add-On", + "release_date": "2016-10-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Victory Works" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106296" + ], + "created_at": "2026-07-10T10:10:48.479312", + "updated_at": "2026-07-10T10:10:48.479312", + "url": "/v1/games/ts-marketplace-br-saint-tpo-livery-pack-add-on" +} diff --git a/site/public/v1/games/ts-marketplace-british-railways-class-a2-livery-pack-add-on/index.json b/site/public/v1/games/ts-marketplace-british-railways-class-a2-livery-pack-add-on/index.json new file mode 100644 index 000000000000..59e886d35f93 --- /dev/null +++ b/site/public/v1/games/ts-marketplace-british-railways-class-a2-livery-pack-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 161544, + "slug": "ts-marketplace-british-railways-class-a2-livery-pack-add-on", + "name": "TS Marketplace: British Railways Class A2 Livery Pack Add-On", + "release_date": "2016-12-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Bossman Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106317" + ], + "created_at": "2026-07-10T10:10:48.479312", + "updated_at": "2026-07-10T10:10:48.479312", + "url": "/v1/games/ts-marketplace-british-railways-class-a2-livery-pack-add-on" +} diff --git a/site/public/v1/games/ts-marketplace-british-railways-s15-livery-pack-add-on/index.json b/site/public/v1/games/ts-marketplace-british-railways-s15-livery-pack-add-on/index.json new file mode 100644 index 000000000000..a8c71d6d10a0 --- /dev/null +++ b/site/public/v1/games/ts-marketplace-british-railways-s15-livery-pack-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 161545, + "slug": "ts-marketplace-british-railways-s15-livery-pack-add-on", + "name": "TS Marketplace: British Railways S15 Livery Pack Add-On", + "release_date": "2017-05-17", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Bossman Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106354" + ], + "created_at": "2026-07-10T10:10:48.479312", + "updated_at": "2026-07-10T10:10:48.479312", + "url": "/v1/games/ts-marketplace-british-railways-s15-livery-pack-add-on" +} diff --git a/site/public/v1/games/ts-marketplace-bulleid-coach-pack-01-add-on/index.json b/site/public/v1/games/ts-marketplace-bulleid-coach-pack-01-add-on/index.json new file mode 100644 index 000000000000..7153b2c321c9 --- /dev/null +++ b/site/public/v1/games/ts-marketplace-bulleid-coach-pack-01-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 161546, + "slug": "ts-marketplace-bulleid-coach-pack-01-add-on", + "name": "TS Marketplace: Bulleid Coach Pack 01 Add-On", + "release_date": "2017-02-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "MatrixTrains" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106286" + ], + "created_at": "2026-07-10T10:10:48.480889", + "updated_at": "2026-07-10T10:10:48.480889", + "url": "/v1/games/ts-marketplace-bulleid-coach-pack-01-add-on" +} diff --git a/site/public/v1/games/ts-marketplace-bulleid-coach-pack-02-add-on/index.json b/site/public/v1/games/ts-marketplace-bulleid-coach-pack-02-add-on/index.json new file mode 100644 index 000000000000..c0a8d7dca253 --- /dev/null +++ b/site/public/v1/games/ts-marketplace-bulleid-coach-pack-02-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 161547, + "slug": "ts-marketplace-bulleid-coach-pack-02-add-on", + "name": "TS Marketplace: Bulleid Coach Pack 02 Add-On", + "release_date": "2017-02-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "MatrixTrains" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106287" + ], + "created_at": "2026-07-10T10:10:48.480889", + "updated_at": "2026-07-10T10:10:48.480889", + "url": "/v1/games/ts-marketplace-bulleid-coach-pack-02-add-on" +} diff --git a/site/public/v1/games/ts-marketplace-bulleid-coach-pack-03-add-on/index.json b/site/public/v1/games/ts-marketplace-bulleid-coach-pack-03-add-on/index.json new file mode 100644 index 000000000000..2602db5cdccc --- /dev/null +++ b/site/public/v1/games/ts-marketplace-bulleid-coach-pack-03-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 161548, + "slug": "ts-marketplace-bulleid-coach-pack-03-add-on", + "name": "TS Marketplace: Bulleid Coach Pack 03 Add-On", + "release_date": "2017-02-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "MatrixTrains" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106293" + ], + "created_at": "2026-07-10T10:10:48.480889", + "updated_at": "2026-07-10T10:10:48.480889", + "url": "/v1/games/ts-marketplace-bulleid-coach-pack-03-add-on" +} diff --git a/site/public/v1/games/ts-marketplace-caledonian-railway-45ft-non-corridor-caledonian-railway-add-on/index.json b/site/public/v1/games/ts-marketplace-caledonian-railway-45ft-non-corridor-caledonian-railway-add-on/index.json new file mode 100644 index 000000000000..d59d6831013d --- /dev/null +++ b/site/public/v1/games/ts-marketplace-caledonian-railway-45ft-non-corridor-caledonian-railway-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 161549, + "slug": "ts-marketplace-caledonian-railway-45ft-non-corridor-caledonian-railway-add-on", + "name": "TS Marketplace: Caledonian Railway 45ft Non-Corridor - Caledonian Railway Add-On", + "release_date": "2018-07-11", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "MatrixTrains" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106386" + ], + "created_at": "2026-07-10T10:10:48.480889", + "updated_at": "2026-07-10T10:10:48.480889", + "url": "/v1/games/ts-marketplace-caledonian-railway-45ft-non-corridor-caledonian-railway-add-on" +} diff --git a/site/public/v1/games/ts-marketplace-caledonian-railway-45ft-non-corridor-lms-period-1-add-on/index.json b/site/public/v1/games/ts-marketplace-caledonian-railway-45ft-non-corridor-lms-period-1-add-on/index.json new file mode 100644 index 000000000000..1a8740fba2e6 --- /dev/null +++ b/site/public/v1/games/ts-marketplace-caledonian-railway-45ft-non-corridor-lms-period-1-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 161550, + "slug": "ts-marketplace-caledonian-railway-45ft-non-corridor-lms-period-1-add-on", + "name": "TS Marketplace: Caledonian Railway 45ft Non-Corridor - LMS Period 1 Add-On", + "release_date": "2018-07-11", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "MatrixTrains" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106388" + ], + "created_at": "2026-07-10T10:10:48.480889", + "updated_at": "2026-07-10T10:10:48.480889", + "url": "/v1/games/ts-marketplace-caledonian-railway-45ft-non-corridor-lms-period-1-add-on" +} diff --git a/site/public/v1/games/ts-marketplace-caledonian-railway-65ft-grampian-br-crimson-cream-coach-pack-add-on/index.json b/site/public/v1/games/ts-marketplace-caledonian-railway-65ft-grampian-br-crimson-cream-coach-pack-add-on/index.json new file mode 100644 index 000000000000..5e0e49914141 --- /dev/null +++ b/site/public/v1/games/ts-marketplace-caledonian-railway-65ft-grampian-br-crimson-cream-coach-pack-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 161551, + "slug": "ts-marketplace-caledonian-railway-65ft-grampian-br-crimson-cream-coach-pack-add-on", + "name": "TS Marketplace: Caledonian Railway 65ft Grampian BR Crimson & Cream Coach Pack Add-On", + "release_date": "2018-12-14", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "MatrixTrains" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106394" + ], + "created_at": "2026-07-10T10:10:48.480889", + "updated_at": "2026-07-10T10:10:48.480889", + "url": "/v1/games/ts-marketplace-caledonian-railway-65ft-grampian-br-crimson-cream-coach-pack-add-on" +} diff --git a/site/public/v1/games/ts-marketplace-caledonian-railway-65ft-grampian-coach-pack-add-on/index.json b/site/public/v1/games/ts-marketplace-caledonian-railway-65ft-grampian-coach-pack-add-on/index.json new file mode 100644 index 000000000000..4ef5573cf70c --- /dev/null +++ b/site/public/v1/games/ts-marketplace-caledonian-railway-65ft-grampian-coach-pack-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 161552, + "slug": "ts-marketplace-caledonian-railway-65ft-grampian-coach-pack-add-on", + "name": "TS Marketplace: Caledonian Railway 65ft Grampian Coach Pack Add-On", + "release_date": "2018-12-14", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "MatrixTrains" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106398" + ], + "created_at": "2026-07-10T10:10:48.480889", + "updated_at": "2026-07-10T10:10:48.480889", + "url": "/v1/games/ts-marketplace-caledonian-railway-65ft-grampian-coach-pack-add-on" +} diff --git a/site/public/v1/games/ts-marketplace-caledonian-railway-65ft-grampian-lms-period-1-coach-pack/index.json b/site/public/v1/games/ts-marketplace-caledonian-railway-65ft-grampian-lms-period-1-coach-pack/index.json new file mode 100644 index 000000000000..1df527c0c521 --- /dev/null +++ b/site/public/v1/games/ts-marketplace-caledonian-railway-65ft-grampian-lms-period-1-coach-pack/index.json @@ -0,0 +1,33 @@ +{ + "id": 161553, + "slug": "ts-marketplace-caledonian-railway-65ft-grampian-lms-period-1-coach-pack", + "name": "TS Marketplace: Caledonian Railway 65ft Grampian LMS Period 1 Coach Pack", + "release_date": "2018-11-29", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "MatrixTrains" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106395" + ], + "created_at": "2026-07-10T10:10:48.480889", + "updated_at": "2026-07-10T10:10:48.481996", + "url": "/v1/games/ts-marketplace-caledonian-railway-65ft-grampian-lms-period-1-coach-pack" +} diff --git a/site/public/v1/games/ts-marketplace-caledonian-railway-65ft-grampian-lms-period-3-coach-pack/index.json b/site/public/v1/games/ts-marketplace-caledonian-railway-65ft-grampian-lms-period-3-coach-pack/index.json new file mode 100644 index 000000000000..0490d2822ff5 --- /dev/null +++ b/site/public/v1/games/ts-marketplace-caledonian-railway-65ft-grampian-lms-period-3-coach-pack/index.json @@ -0,0 +1,33 @@ +{ + "id": 161554, + "slug": "ts-marketplace-caledonian-railway-65ft-grampian-lms-period-3-coach-pack", + "name": "TS Marketplace: Caledonian Railway 65ft Grampian LMS Period 3 Coach Pack", + "release_date": "2018-11-29", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "MatrixTrains" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106397" + ], + "created_at": "2026-07-10T10:10:48.481996", + "updated_at": "2026-07-10T10:10:48.481996", + "url": "/v1/games/ts-marketplace-caledonian-railway-65ft-grampian-lms-period-3-coach-pack" +} diff --git a/site/public/v1/games/ts-marketplace-chatham-main-line-scenario-pack-01-add-on/index.json b/site/public/v1/games/ts-marketplace-chatham-main-line-scenario-pack-01-add-on/index.json new file mode 100644 index 000000000000..5c6bda9f7da2 --- /dev/null +++ b/site/public/v1/games/ts-marketplace-chatham-main-line-scenario-pack-01-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 161555, + "slug": "ts-marketplace-chatham-main-line-scenario-pack-01-add-on", + "name": "TS Marketplace: Chatham Main Line Scenario Pack 01 Add-On", + "release_date": "2017-10-19", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Trains & Drivers" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106137" + ], + "created_at": "2026-07-10T10:10:48.481996", + "updated_at": "2026-07-10T10:10:48.481996", + "url": "/v1/games/ts-marketplace-chatham-main-line-scenario-pack-01-add-on" +} diff --git a/site/public/v1/games/ts-marketplace-chessie-systems-gp30-livery-add-on/index.json b/site/public/v1/games/ts-marketplace-chessie-systems-gp30-livery-add-on/index.json new file mode 100644 index 000000000000..04ff416b393e --- /dev/null +++ b/site/public/v1/games/ts-marketplace-chessie-systems-gp30-livery-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 161556, + "slug": "ts-marketplace-chessie-systems-gp30-livery-add-on", + "name": "TS Marketplace: Chessie Systems GP30 Livery Add-On", + "release_date": "2017-12-08", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Digital Train Model" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106122" + ], + "created_at": "2026-07-10T10:10:48.481996", + "updated_at": "2026-07-10T10:10:48.481996", + "url": "/v1/games/ts-marketplace-chessie-systems-gp30-livery-add-on" +} diff --git a/site/public/v1/games/ts-marketplace-class-465-southeastern-livery-pack-add-on/index.json b/site/public/v1/games/ts-marketplace-class-465-southeastern-livery-pack-add-on/index.json new file mode 100644 index 000000000000..979fb8622fd5 --- /dev/null +++ b/site/public/v1/games/ts-marketplace-class-465-southeastern-livery-pack-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 161557, + "slug": "ts-marketplace-class-465-southeastern-livery-pack-add-on", + "name": "TS Marketplace: Class 465 Southeastern Livery Pack Add-On", + "release_date": "2016-10-26", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dovetail Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106280" + ], + "created_at": "2026-07-10T10:10:48.481996", + "updated_at": "2026-07-10T10:10:48.481996", + "url": "/v1/games/ts-marketplace-class-465-southeastern-livery-pack-add-on" +} diff --git a/site/public/v1/games/ts-marketplace-clinchfield-railroad-scenario-pack-01/index.json b/site/public/v1/games/ts-marketplace-clinchfield-railroad-scenario-pack-01/index.json new file mode 100644 index 000000000000..110e1e438807 --- /dev/null +++ b/site/public/v1/games/ts-marketplace-clinchfield-railroad-scenario-pack-01/index.json @@ -0,0 +1,33 @@ +{ + "id": 161558, + "slug": "ts-marketplace-clinchfield-railroad-scenario-pack-01", + "name": "TS Marketplace: Clinchfield Railroad Scenario Pack 01", + "release_date": "2020-07-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "High Iron Simulations" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105589" + ], + "created_at": "2026-07-10T10:10:48.482967", + "updated_at": "2026-07-10T10:10:48.482967", + "url": "/v1/games/ts-marketplace-clinchfield-railroad-scenario-pack-01" +} diff --git a/site/public/v1/games/ts-marketplace-collet-coaches-pack-02/index.json b/site/public/v1/games/ts-marketplace-collet-coaches-pack-02/index.json new file mode 100644 index 000000000000..8c2a5b5b8085 --- /dev/null +++ b/site/public/v1/games/ts-marketplace-collet-coaches-pack-02/index.json @@ -0,0 +1,33 @@ +{ + "id": 161559, + "slug": "ts-marketplace-collet-coaches-pack-02", + "name": "TS Marketplace: Collet Coaches Pack 02", + "release_date": "2016-07-19", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "MatrixTrains" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106281" + ], + "created_at": "2026-07-10T10:10:48.482967", + "updated_at": "2026-07-10T10:10:48.482967", + "url": "/v1/games/ts-marketplace-collet-coaches-pack-02" +} diff --git a/site/public/v1/games/ts-marketplace-csx-hanover-subdivision-scenario-pack-01/index.json b/site/public/v1/games/ts-marketplace-csx-hanover-subdivision-scenario-pack-01/index.json new file mode 100644 index 000000000000..5b22ebb1d90b --- /dev/null +++ b/site/public/v1/games/ts-marketplace-csx-hanover-subdivision-scenario-pack-01/index.json @@ -0,0 +1,33 @@ +{ + "id": 161560, + "slug": "ts-marketplace-csx-hanover-subdivision-scenario-pack-01", + "name": "TS Marketplace: CSX Hanover Subdivision Scenario Pack 01", + "release_date": "2020-09-03", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "High Iron Simulations" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105607" + ], + "created_at": "2026-07-10T10:10:48.482967", + "updated_at": "2026-07-10T10:10:48.482967", + "url": "/v1/games/ts-marketplace-csx-hanover-subdivision-scenario-pack-01" +} diff --git a/site/public/v1/games/ts-marketplace-csx-scenario-pack-01/index.json b/site/public/v1/games/ts-marketplace-csx-scenario-pack-01/index.json new file mode 100644 index 000000000000..405adcaae16c --- /dev/null +++ b/site/public/v1/games/ts-marketplace-csx-scenario-pack-01/index.json @@ -0,0 +1,33 @@ +{ + "id": 161561, + "slug": "ts-marketplace-csx-scenario-pack-01", + "name": "TS Marketplace: CSX Scenario Pack 01", + "release_date": "2021-02-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "High Iron Simulations" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105641" + ], + "created_at": "2026-07-10T10:10:48.482967", + "updated_at": "2026-07-10T10:10:48.482967", + "url": "/v1/games/ts-marketplace-csx-scenario-pack-01" +} diff --git a/site/public/v1/games/ts-marketplace-csx-sd50-livery-add-on/index.json b/site/public/v1/games/ts-marketplace-csx-sd50-livery-add-on/index.json new file mode 100644 index 000000000000..a6033921fb21 --- /dev/null +++ b/site/public/v1/games/ts-marketplace-csx-sd50-livery-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 161562, + "slug": "ts-marketplace-csx-sd50-livery-add-on", + "name": "TS Marketplace: CSX SD50 Livery Add-On", + "release_date": "2018-05-30", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "The Loco Shop" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106290" + ], + "created_at": "2026-07-10T10:10:48.482967", + "updated_at": "2026-07-10T10:10:48.482967", + "url": "/v1/games/ts-marketplace-csx-sd50-livery-add-on" +} diff --git a/site/public/v1/games/ts-marketplace-db-sgns-container-wagon-pack/index.json b/site/public/v1/games/ts-marketplace-db-sgns-container-wagon-pack/index.json new file mode 100644 index 000000000000..116298c17e43 --- /dev/null +++ b/site/public/v1/games/ts-marketplace-db-sgns-container-wagon-pack/index.json @@ -0,0 +1,33 @@ +{ + "id": 161563, + "slug": "ts-marketplace-db-sgns-container-wagon-pack", + "name": "TS Marketplace: DB Sgns Container Wagon Pack", + "release_date": "2016-11-11", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Skyhook Games Studio" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106312" + ], + "created_at": "2026-07-10T10:10:48.482967", + "updated_at": "2026-07-10T10:10:48.482967", + "url": "/v1/games/ts-marketplace-db-sgns-container-wagon-pack" +} diff --git a/site/public/v1/games/ts-marketplace-db-sgns-hopper-pack/index.json b/site/public/v1/games/ts-marketplace-db-sgns-hopper-pack/index.json new file mode 100644 index 000000000000..c597e2dabab4 --- /dev/null +++ b/site/public/v1/games/ts-marketplace-db-sgns-hopper-pack/index.json @@ -0,0 +1,33 @@ +{ + "id": 161564, + "slug": "ts-marketplace-db-sgns-hopper-pack", + "name": "TS Marketplace: DB Sgns Hopper Pack", + "release_date": "2016-11-02", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Skyhook Games Studio" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106316" + ], + "created_at": "2026-07-10T10:10:48.482967", + "updated_at": "2026-07-10T10:10:48.482967", + "url": "/v1/games/ts-marketplace-db-sgns-hopper-pack" +} diff --git a/site/public/v1/games/ts-marketplace-dd35-demonstrator-add-on/index.json b/site/public/v1/games/ts-marketplace-dd35-demonstrator-add-on/index.json new file mode 100644 index 000000000000..d6a2c6d6703f --- /dev/null +++ b/site/public/v1/games/ts-marketplace-dd35-demonstrator-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 161565, + "slug": "ts-marketplace-dd35-demonstrator-add-on", + "name": "TS Marketplace: DD35 Demonstrator Add-On", + "release_date": "2017-06-15", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Digital Train Model" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106355" + ], + "created_at": "2026-07-10T10:10:48.484027", + "updated_at": "2026-07-10T10:10:48.484027", + "url": "/v1/games/ts-marketplace-dd35-demonstrator-add-on" +} diff --git a/site/public/v1/games/ts-marketplace-donner-pass-scenario-pack-01-add-on/index.json b/site/public/v1/games/ts-marketplace-donner-pass-scenario-pack-01-add-on/index.json new file mode 100644 index 000000000000..6203be0bced5 --- /dev/null +++ b/site/public/v1/games/ts-marketplace-donner-pass-scenario-pack-01-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 161566, + "slug": "ts-marketplace-donner-pass-scenario-pack-01-add-on", + "name": "TS Marketplace: Donner Pass Scenario Pack 01 Add-On", + "release_date": "2016-11-09", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "High Iron Simulations" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106291" + ], + "created_at": "2026-07-10T10:10:48.484027", + "updated_at": "2026-07-10T10:10:48.484027", + "url": "/v1/games/ts-marketplace-donner-pass-scenario-pack-01-add-on" +} diff --git a/site/public/v1/games/ts-marketplace-drg-br-86-grey-livery-pack-add-on/index.json b/site/public/v1/games/ts-marketplace-drg-br-86-grey-livery-pack-add-on/index.json new file mode 100644 index 000000000000..8b410866e877 --- /dev/null +++ b/site/public/v1/games/ts-marketplace-drg-br-86-grey-livery-pack-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 161567, + "slug": "ts-marketplace-drg-br-86-grey-livery-pack-add-on", + "name": "TS Marketplace: DRG BR 86 Grey Livery Pack Add-On", + "release_date": "2017-03-08", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Bossman Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106319" + ], + "created_at": "2026-07-10T10:10:48.484027", + "updated_at": "2026-07-10T10:10:48.484027", + "url": "/v1/games/ts-marketplace-drg-br-86-grey-livery-pack-add-on" +} diff --git a/site/public/v1/games/ts-marketplace-ecml-peterborough-york-modern-scenario-pack-01/index.json b/site/public/v1/games/ts-marketplace-ecml-peterborough-york-modern-scenario-pack-01/index.json new file mode 100644 index 000000000000..025ecbc7971e --- /dev/null +++ b/site/public/v1/games/ts-marketplace-ecml-peterborough-york-modern-scenario-pack-01/index.json @@ -0,0 +1,33 @@ +{ + "id": 161568, + "slug": "ts-marketplace-ecml-peterborough-york-modern-scenario-pack-01", + "name": "TS Marketplace: ECML Peterborough York Modern Scenario Pack 01", + "release_date": "2019-08-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Seven Hills Simulations" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105801" + ], + "created_at": "2026-07-10T10:10:48.484027", + "updated_at": "2026-07-10T10:10:48.484027", + "url": "/v1/games/ts-marketplace-ecml-peterborough-york-modern-scenario-pack-01" +} diff --git a/site/public/v1/games/ts-marketplace-ews-class-58-add-on-livery/index.json b/site/public/v1/games/ts-marketplace-ews-class-58-add-on-livery/index.json new file mode 100644 index 000000000000..bdff4880a1eb --- /dev/null +++ b/site/public/v1/games/ts-marketplace-ews-class-58-add-on-livery/index.json @@ -0,0 +1,33 @@ +{ + "id": 161569, + "slug": "ts-marketplace-ews-class-58-add-on-livery", + "name": "TS Marketplace: EWS Class 58 Add-On Livery", + "release_date": "2016-09-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Skyhook Games Studio" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106285" + ], + "created_at": "2026-07-10T10:10:48.484027", + "updated_at": "2026-07-10T10:10:48.484027", + "url": "/v1/games/ts-marketplace-ews-class-58-add-on-livery" +} diff --git a/site/public/v1/games/ts-marketplace-fads-177-wagon-pack-add-on/index.json b/site/public/v1/games/ts-marketplace-fads-177-wagon-pack-add-on/index.json new file mode 100644 index 000000000000..197efe96f098 --- /dev/null +++ b/site/public/v1/games/ts-marketplace-fads-177-wagon-pack-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 161570, + "slug": "ts-marketplace-fads-177-wagon-pack-add-on", + "name": "TS Marketplace: Fads 177 Wagon Pack Add-On", + "release_date": "2017-04-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "virtualRailroads" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106323" + ], + "created_at": "2026-07-10T10:10:48.484027", + "updated_at": "2026-07-10T10:10:48.484027", + "url": "/v1/games/ts-marketplace-fads-177-wagon-pack-add-on" +} diff --git a/site/public/v1/games/ts-marketplace-falns-121-wagon-pack-add-on/index.json b/site/public/v1/games/ts-marketplace-falns-121-wagon-pack-add-on/index.json new file mode 100644 index 000000000000..0789e69bde44 --- /dev/null +++ b/site/public/v1/games/ts-marketplace-falns-121-wagon-pack-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 161571, + "slug": "ts-marketplace-falns-121-wagon-pack-add-on", + "name": "TS Marketplace: Falns 121 Wagon Pack Add-On", + "release_date": "2017-02-15", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "virtualRailroads" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106325" + ], + "created_at": "2026-07-10T10:10:48.484973", + "updated_at": "2026-07-10T10:10:48.484973", + "url": "/v1/games/ts-marketplace-falns-121-wagon-pack-add-on" +} diff --git a/site/public/v1/games/ts-marketplace-feather-river-canyon-scenario-pack-01/index.json b/site/public/v1/games/ts-marketplace-feather-river-canyon-scenario-pack-01/index.json new file mode 100644 index 000000000000..45f39426b7e8 --- /dev/null +++ b/site/public/v1/games/ts-marketplace-feather-river-canyon-scenario-pack-01/index.json @@ -0,0 +1,33 @@ +{ + "id": 161572, + "slug": "ts-marketplace-feather-river-canyon-scenario-pack-01", + "name": "TS Marketplace: Feather River Canyon Scenario Pack 01", + "release_date": "2016-07-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "High Iron Simulations" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106224" + ], + "created_at": "2026-07-10T10:10:48.484973", + "updated_at": "2026-07-10T10:10:48.484973", + "url": "/v1/games/ts-marketplace-feather-river-canyon-scenario-pack-01" +} diff --git a/site/public/v1/games/ts-marketplace-feather-river-canyon-scenario-pack-02/index.json b/site/public/v1/games/ts-marketplace-feather-river-canyon-scenario-pack-02/index.json new file mode 100644 index 000000000000..7ad2278488ea --- /dev/null +++ b/site/public/v1/games/ts-marketplace-feather-river-canyon-scenario-pack-02/index.json @@ -0,0 +1,33 @@ +{ + "id": 161573, + "slug": "ts-marketplace-feather-river-canyon-scenario-pack-02", + "name": "TS Marketplace: Feather River Canyon Scenario Pack 02", + "release_date": "2018-05-09", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "High Iron Simulations" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106041" + ], + "created_at": "2026-07-10T10:10:48.484973", + "updated_at": "2026-07-10T10:10:48.484973", + "url": "/v1/games/ts-marketplace-feather-river-canyon-scenario-pack-02" +} diff --git a/site/public/v1/games/ts-marketplace-gp40-2-mini-scenario-pack-01-add-on/index.json b/site/public/v1/games/ts-marketplace-gp40-2-mini-scenario-pack-01-add-on/index.json new file mode 100644 index 000000000000..125afe539d70 --- /dev/null +++ b/site/public/v1/games/ts-marketplace-gp40-2-mini-scenario-pack-01-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 161574, + "slug": "ts-marketplace-gp40-2-mini-scenario-pack-01-add-on", + "name": "TS Marketplace: GP40-2 Mini Scenario Pack 01 Add-On", + "release_date": "2018-10-03", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "High Iron Simulations" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106405" + ], + "created_at": "2026-07-10T10:10:48.484973", + "updated_at": "2026-07-10T10:10:48.484973", + "url": "/v1/games/ts-marketplace-gp40-2-mini-scenario-pack-01-add-on" +} diff --git a/site/public/v1/games/ts-marketplace-gp40-2-mini-scenario-pack-02-add-on/index.json b/site/public/v1/games/ts-marketplace-gp40-2-mini-scenario-pack-02-add-on/index.json new file mode 100644 index 000000000000..f477f9b7c175 --- /dev/null +++ b/site/public/v1/games/ts-marketplace-gp40-2-mini-scenario-pack-02-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 161575, + "slug": "ts-marketplace-gp40-2-mini-scenario-pack-02-add-on", + "name": "TS Marketplace: GP40-2 Mini Scenario Pack 02 Add-On", + "release_date": "2018-10-03", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "High Iron Simulations" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106424" + ], + "created_at": "2026-07-10T10:10:48.485970", + "updated_at": "2026-07-10T10:10:48.485970", + "url": "/v1/games/ts-marketplace-gp40-2-mini-scenario-pack-02-add-on" +} diff --git a/site/public/v1/games/ts-marketplace-granger-heartland-scenario-pack-01/index.json b/site/public/v1/games/ts-marketplace-granger-heartland-scenario-pack-01/index.json new file mode 100644 index 000000000000..441c31f14ca2 --- /dev/null +++ b/site/public/v1/games/ts-marketplace-granger-heartland-scenario-pack-01/index.json @@ -0,0 +1,33 @@ +{ + "id": 161576, + "slug": "ts-marketplace-granger-heartland-scenario-pack-01", + "name": "TS Marketplace: Granger Heartland Scenario Pack 01", + "release_date": "2020-03-19", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "High Iron Simulations" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105846" + ], + "created_at": "2026-07-10T10:10:48.485970", + "updated_at": "2026-07-10T10:10:48.485970", + "url": "/v1/games/ts-marketplace-granger-heartland-scenario-pack-01" +} diff --git a/site/public/v1/games/ts-marketplace-gresley-coach-pack-01/index.json b/site/public/v1/games/ts-marketplace-gresley-coach-pack-01/index.json new file mode 100644 index 000000000000..32c3a15559a0 --- /dev/null +++ b/site/public/v1/games/ts-marketplace-gresley-coach-pack-01/index.json @@ -0,0 +1,33 @@ +{ + "id": 161577, + "slug": "ts-marketplace-gresley-coach-pack-01", + "name": "TS Marketplace: Gresley Coach Pack 01", + "release_date": "2016-08-19", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "MatrixTrains" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106282" + ], + "created_at": "2026-07-10T10:10:48.485970", + "updated_at": "2026-07-10T10:10:48.485970", + "url": "/v1/games/ts-marketplace-gresley-coach-pack-01" +} diff --git a/site/public/v1/games/ts-marketplace-gresley-coach-pack-02/index.json b/site/public/v1/games/ts-marketplace-gresley-coach-pack-02/index.json new file mode 100644 index 000000000000..e654ab9956ea --- /dev/null +++ b/site/public/v1/games/ts-marketplace-gresley-coach-pack-02/index.json @@ -0,0 +1,33 @@ +{ + "id": 161578, + "slug": "ts-marketplace-gresley-coach-pack-02", + "name": "TS Marketplace: Gresley Coach Pack 02", + "release_date": "2016-08-19", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "MatrixTrains" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106283" + ], + "created_at": "2026-07-10T10:10:48.485970", + "updated_at": "2026-07-10T10:10:48.485970", + "url": "/v1/games/ts-marketplace-gresley-coach-pack-02" +} diff --git a/site/public/v1/games/ts-marketplace-gresley-coach-pack-03/index.json b/site/public/v1/games/ts-marketplace-gresley-coach-pack-03/index.json new file mode 100644 index 000000000000..952badb667d5 --- /dev/null +++ b/site/public/v1/games/ts-marketplace-gresley-coach-pack-03/index.json @@ -0,0 +1,33 @@ +{ + "id": 161579, + "slug": "ts-marketplace-gresley-coach-pack-03", + "name": "TS Marketplace: Gresley Coach Pack 03", + "release_date": "2016-08-19", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "MatrixTrains" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106284" + ], + "created_at": "2026-07-10T10:10:48.485970", + "updated_at": "2026-07-10T10:10:48.485970", + "url": "/v1/games/ts-marketplace-gresley-coach-pack-03" +} diff --git a/site/public/v1/games/ts-marketplace-gresley-coach-pack-04-add-on/index.json b/site/public/v1/games/ts-marketplace-gresley-coach-pack-04-add-on/index.json new file mode 100644 index 000000000000..b836714f1be2 --- /dev/null +++ b/site/public/v1/games/ts-marketplace-gresley-coach-pack-04-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 161580, + "slug": "ts-marketplace-gresley-coach-pack-04-add-on", + "name": "TS Marketplace: Gresley Coach Pack 04 Add-On", + "release_date": "2017-04-21", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "MatrixTrains" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106313" + ], + "created_at": "2026-07-10T10:10:48.485970", + "updated_at": "2026-07-10T10:10:48.485970", + "url": "/v1/games/ts-marketplace-gresley-coach-pack-04-add-on" +} diff --git a/site/public/v1/games/ts-marketplace-gwr-churchward-panelled-toplights-pack-01-add-on/index.json b/site/public/v1/games/ts-marketplace-gwr-churchward-panelled-toplights-pack-01-add-on/index.json new file mode 100644 index 000000000000..95cf1372a13f --- /dev/null +++ b/site/public/v1/games/ts-marketplace-gwr-churchward-panelled-toplights-pack-01-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 161581, + "slug": "ts-marketplace-gwr-churchward-panelled-toplights-pack-01-add-on", + "name": "TS Marketplace: GWR Churchward Panelled Toplights Pack 01 Add-On", + "release_date": "2017-07-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "MatrixTrains" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106358" + ], + "created_at": "2026-07-10T10:10:48.487011", + "updated_at": "2026-07-10T10:10:48.487011", + "url": "/v1/games/ts-marketplace-gwr-churchward-panelled-toplights-pack-01-add-on" +} diff --git a/site/public/v1/games/ts-marketplace-gwr-churchward-panelled-toplights-pack-02-add-on/index.json b/site/public/v1/games/ts-marketplace-gwr-churchward-panelled-toplights-pack-02-add-on/index.json new file mode 100644 index 000000000000..69fab6352b19 --- /dev/null +++ b/site/public/v1/games/ts-marketplace-gwr-churchward-panelled-toplights-pack-02-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 161582, + "slug": "ts-marketplace-gwr-churchward-panelled-toplights-pack-02-add-on", + "name": "TS Marketplace: GWR Churchward Panelled Toplights Pack 02 Add-On", + "release_date": "2017-07-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "MatrixTrains" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106364" + ], + "created_at": "2026-07-10T10:10:48.487011", + "updated_at": "2026-07-10T10:10:48.487011", + "url": "/v1/games/ts-marketplace-gwr-churchward-panelled-toplights-pack-02-add-on" +} diff --git a/site/public/v1/games/ts-marketplace-gwr-churchward-panelled-toplights-pack-03-add-on/index.json b/site/public/v1/games/ts-marketplace-gwr-churchward-panelled-toplights-pack-03-add-on/index.json new file mode 100644 index 000000000000..b253e62aa024 --- /dev/null +++ b/site/public/v1/games/ts-marketplace-gwr-churchward-panelled-toplights-pack-03-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 161583, + "slug": "ts-marketplace-gwr-churchward-panelled-toplights-pack-03-add-on", + "name": "TS Marketplace: GWR Churchward Panelled Toplights Pack 03 Add-On", + "release_date": "2018-05-02", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "MatrixTrains" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106382" + ], + "created_at": "2026-07-10T10:10:48.487011", + "updated_at": "2026-07-10T10:10:48.487011", + "url": "/v1/games/ts-marketplace-gwr-churchward-panelled-toplights-pack-03-add-on" +} diff --git a/site/public/v1/games/ts-marketplace-gwr-churchward-panelled-toplights-pack-04-add-on/index.json b/site/public/v1/games/ts-marketplace-gwr-churchward-panelled-toplights-pack-04-add-on/index.json new file mode 100644 index 000000000000..aae79f9e0493 --- /dev/null +++ b/site/public/v1/games/ts-marketplace-gwr-churchward-panelled-toplights-pack-04-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 161584, + "slug": "ts-marketplace-gwr-churchward-panelled-toplights-pack-04-add-on", + "name": "TS Marketplace: GWR Churchward Panelled Toplights Pack 04 Add-On", + "release_date": "2018-05-02", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "MatrixTrains" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106383" + ], + "created_at": "2026-07-10T10:10:48.487011", + "updated_at": "2026-07-10T10:10:48.487011", + "url": "/v1/games/ts-marketplace-gwr-churchward-panelled-toplights-pack-04-add-on" +} diff --git a/site/public/v1/games/ts-marketplace-gwr-churchward-panelled-toplights-pack-05-add-on/index.json b/site/public/v1/games/ts-marketplace-gwr-churchward-panelled-toplights-pack-05-add-on/index.json new file mode 100644 index 000000000000..8309c95500a4 --- /dev/null +++ b/site/public/v1/games/ts-marketplace-gwr-churchward-panelled-toplights-pack-05-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 161585, + "slug": "ts-marketplace-gwr-churchward-panelled-toplights-pack-05-add-on", + "name": "TS Marketplace: GWR Churchward Panelled Toplights Pack 05 Add-On", + "release_date": "2018-05-16", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "MatrixTrains" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106384" + ], + "created_at": "2026-07-10T10:10:48.487011", + "updated_at": "2026-07-10T10:10:48.487011", + "url": "/v1/games/ts-marketplace-gwr-churchward-panelled-toplights-pack-05-add-on" +} diff --git a/site/public/v1/games/ts-marketplace-gwr-churchward-panelled-toplights-pack-06-add-on/index.json b/site/public/v1/games/ts-marketplace-gwr-churchward-panelled-toplights-pack-06-add-on/index.json new file mode 100644 index 000000000000..af6afe776282 --- /dev/null +++ b/site/public/v1/games/ts-marketplace-gwr-churchward-panelled-toplights-pack-06-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 161586, + "slug": "ts-marketplace-gwr-churchward-panelled-toplights-pack-06-add-on", + "name": "TS Marketplace: GWR Churchward Panelled Toplights Pack 06 Add-On", + "release_date": "2018-05-16", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Matrix Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106385" + ], + "created_at": "2026-07-10T10:10:48.487990", + "updated_at": "2026-07-10T10:10:48.487990", + "url": "/v1/games/ts-marketplace-gwr-churchward-panelled-toplights-pack-06-add-on" +} diff --git a/site/public/v1/games/ts-marketplace-gwr-high-waist-collett-coaches-pack-01-add-on/index.json b/site/public/v1/games/ts-marketplace-gwr-high-waist-collett-coaches-pack-01-add-on/index.json new file mode 100644 index 000000000000..ffe665cd92fd --- /dev/null +++ b/site/public/v1/games/ts-marketplace-gwr-high-waist-collett-coaches-pack-01-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 161587, + "slug": "ts-marketplace-gwr-high-waist-collett-coaches-pack-01-add-on", + "name": "TS Marketplace: GWR High Waist Collett Coaches Pack 01 Add-On", + "release_date": "2017-04-21", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "MatrixTrains" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106320" + ], + "created_at": "2026-07-10T10:10:48.487990", + "updated_at": "2026-07-10T10:10:48.487990", + "url": "/v1/games/ts-marketplace-gwr-high-waist-collett-coaches-pack-01-add-on" +} diff --git a/site/public/v1/games/ts-marketplace-gwr-high-waist-collett-coaches-pack-02-add-on/index.json b/site/public/v1/games/ts-marketplace-gwr-high-waist-collett-coaches-pack-02-add-on/index.json new file mode 100644 index 000000000000..c4ad1bad03b0 --- /dev/null +++ b/site/public/v1/games/ts-marketplace-gwr-high-waist-collett-coaches-pack-02-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 161588, + "slug": "ts-marketplace-gwr-high-waist-collett-coaches-pack-02-add-on", + "name": "TS Marketplace: GWR High Waist Collett Coaches Pack 02 Add-On", + "release_date": "2017-04-21", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "MatrixTrains" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106321" + ], + "created_at": "2026-07-10T10:10:48.487990", + "updated_at": "2026-07-10T10:10:48.487990", + "url": "/v1/games/ts-marketplace-gwr-high-waist-collett-coaches-pack-02-add-on" +} diff --git a/site/public/v1/games/ts-marketplace-gwr-high-waist-collett-coaches-pack-03-add-on/index.json b/site/public/v1/games/ts-marketplace-gwr-high-waist-collett-coaches-pack-03-add-on/index.json new file mode 100644 index 000000000000..7db549227d60 --- /dev/null +++ b/site/public/v1/games/ts-marketplace-gwr-high-waist-collett-coaches-pack-03-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 161589, + "slug": "ts-marketplace-gwr-high-waist-collett-coaches-pack-03-add-on", + "name": "TS Marketplace: GWR High Waist Collett Coaches Pack 03 Add-On", + "release_date": "2017-04-21", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "MatrixTrains" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106322" + ], + "created_at": "2026-07-10T10:10:48.487990", + "updated_at": "2026-07-10T10:10:48.487990", + "url": "/v1/games/ts-marketplace-gwr-high-waist-collett-coaches-pack-03-add-on" +} diff --git a/site/public/v1/games/ts-marketplace-gwr-large-prairies-lined-liveries-add-on/index.json b/site/public/v1/games/ts-marketplace-gwr-large-prairies-lined-liveries-add-on/index.json new file mode 100644 index 000000000000..2f374a64f339 --- /dev/null +++ b/site/public/v1/games/ts-marketplace-gwr-large-prairies-lined-liveries-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 161590, + "slug": "ts-marketplace-gwr-large-prairies-lined-liveries-add-on", + "name": "TS Marketplace: GWR Large Prairies Lined Liveries Add-on", + "release_date": "2017-11-22", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Victory Works" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106121" + ], + "created_at": "2026-07-10T10:10:48.487990", + "updated_at": "2026-07-10T10:10:48.487990", + "url": "/v1/games/ts-marketplace-gwr-large-prairies-lined-liveries-add-on" +} diff --git a/site/public/v1/games/ts-marketplace-gwr-toplight-coaches-pack-01/index.json b/site/public/v1/games/ts-marketplace-gwr-toplight-coaches-pack-01/index.json new file mode 100644 index 000000000000..fd8a3e6fce9d --- /dev/null +++ b/site/public/v1/games/ts-marketplace-gwr-toplight-coaches-pack-01/index.json @@ -0,0 +1,33 @@ +{ + "id": 161591, + "slug": "ts-marketplace-gwr-toplight-coaches-pack-01", + "name": "TS Marketplace: GWR Toplight Coaches Pack 01", + "release_date": "2016-11-30", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "MatrixTrains" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106300" + ], + "created_at": "2026-07-10T10:10:48.487990", + "updated_at": "2026-07-10T10:10:48.487990", + "url": "/v1/games/ts-marketplace-gwr-toplight-coaches-pack-01" +} diff --git a/site/public/v1/games/ts-marketplace-gwr-toplight-coaches-pack-02/index.json b/site/public/v1/games/ts-marketplace-gwr-toplight-coaches-pack-02/index.json new file mode 100644 index 000000000000..dcdf02e0d01b --- /dev/null +++ b/site/public/v1/games/ts-marketplace-gwr-toplight-coaches-pack-02/index.json @@ -0,0 +1,33 @@ +{ + "id": 161592, + "slug": "ts-marketplace-gwr-toplight-coaches-pack-02", + "name": "TS Marketplace: GWR Toplight Coaches Pack 02", + "release_date": "2016-11-30", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "MatrixTrains" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106301" + ], + "created_at": "2026-07-10T10:10:48.488949", + "updated_at": "2026-07-10T10:10:48.488949", + "url": "/v1/games/ts-marketplace-gwr-toplight-coaches-pack-02" +} diff --git a/site/public/v1/games/ts-marketplace-hbillns-303-wagon-pack-add-on/index.json b/site/public/v1/games/ts-marketplace-hbillns-303-wagon-pack-add-on/index.json new file mode 100644 index 000000000000..6161390c6982 --- /dev/null +++ b/site/public/v1/games/ts-marketplace-hbillns-303-wagon-pack-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 161593, + "slug": "ts-marketplace-hbillns-303-wagon-pack-add-on", + "name": "TS Marketplace: Hbillns 303 Wagon Pack Add-On", + "release_date": "2017-02-15", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "virtualRailroads" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106338" + ], + "created_at": "2026-07-10T10:10:48.488949", + "updated_at": "2026-07-10T10:10:48.488949", + "url": "/v1/games/ts-marketplace-hbillns-303-wagon-pack-add-on" +} diff --git a/site/public/v1/games/ts-marketplace-horseshoe-curve-scenario-pack-01-add-on/index.json b/site/public/v1/games/ts-marketplace-horseshoe-curve-scenario-pack-01-add-on/index.json new file mode 100644 index 000000000000..215e36330d96 --- /dev/null +++ b/site/public/v1/games/ts-marketplace-horseshoe-curve-scenario-pack-01-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 161594, + "slug": "ts-marketplace-horseshoe-curve-scenario-pack-01-add-on", + "name": "TS Marketplace: Horseshoe Curve Scenario Pack 01 Add-On", + "release_date": "2018-02-21", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "High Iron Simulations" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106048" + ], + "created_at": "2026-07-10T10:10:48.488949", + "updated_at": "2026-07-10T10:10:48.488949", + "url": "/v1/games/ts-marketplace-horseshoe-curve-scenario-pack-01-add-on" +} diff --git a/site/public/v1/games/ts-marketplace-hudson-line-scenario-pack-01/index.json b/site/public/v1/games/ts-marketplace-hudson-line-scenario-pack-01/index.json new file mode 100644 index 000000000000..2efb173c3686 --- /dev/null +++ b/site/public/v1/games/ts-marketplace-hudson-line-scenario-pack-01/index.json @@ -0,0 +1,33 @@ +{ + "id": 161595, + "slug": "ts-marketplace-hudson-line-scenario-pack-01", + "name": "TS Marketplace: Hudson Line Scenario Pack 01", + "release_date": "2019-06-19", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "High Iron Simulations" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105842" + ], + "created_at": "2026-07-10T10:10:48.488949", + "updated_at": "2026-07-10T10:10:48.488949", + "url": "/v1/games/ts-marketplace-hudson-line-scenario-pack-01" +} diff --git a/site/public/v1/games/ts-marketplace-hxd3d-electric-locomotive-add-on/index.json b/site/public/v1/games/ts-marketplace-hxd3d-electric-locomotive-add-on/index.json new file mode 100644 index 000000000000..b9e35a41e346 --- /dev/null +++ b/site/public/v1/games/ts-marketplace-hxd3d-electric-locomotive-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 161596, + "slug": "ts-marketplace-hxd3d-electric-locomotive-add-on", + "name": "TS Marketplace: HXD3D Electric Locomotive Add-On", + "release_date": "2018-05-30", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Just Trains" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105715" + ], + "created_at": "2026-07-10T10:10:48.488949", + "updated_at": "2026-07-10T10:10:48.488949", + "url": "/v1/games/ts-marketplace-hxd3d-electric-locomotive-add-on" +} diff --git a/site/public/v1/games/ts-marketplace-k-ln-koblenz-scenario-pack-01-add-on/index.json b/site/public/v1/games/ts-marketplace-k-ln-koblenz-scenario-pack-01-add-on/index.json new file mode 100644 index 000000000000..90d22b733c59 --- /dev/null +++ b/site/public/v1/games/ts-marketplace-k-ln-koblenz-scenario-pack-01-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 161597, + "slug": "ts-marketplace-k-ln-koblenz-scenario-pack-01-add-on", + "name": "TS Marketplace: Köln Koblenz Scenario Pack 01 Add-On", + "release_date": "2017-04-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Skyhook Games Studio" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106303" + ], + "created_at": "2026-07-10T10:10:48.488949", + "updated_at": "2026-07-10T10:10:48.488949", + "url": "/v1/games/ts-marketplace-k-ln-koblenz-scenario-pack-01-add-on" +} diff --git a/site/public/v1/games/ts-marketplace-lms-p1-p2-br-crimson-cream-coach-pack-add-on/index.json b/site/public/v1/games/ts-marketplace-lms-p1-p2-br-crimson-cream-coach-pack-add-on/index.json new file mode 100644 index 000000000000..30a12d3a19e8 --- /dev/null +++ b/site/public/v1/games/ts-marketplace-lms-p1-p2-br-crimson-cream-coach-pack-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 161598, + "slug": "ts-marketplace-lms-p1-p2-br-crimson-cream-coach-pack-add-on", + "name": "TS Marketplace: LMS P1&P2 BR Crimson & Cream Coach Pack Add-On", + "release_date": "2017-05-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "MatrixTrains" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106350" + ], + "created_at": "2026-07-10T10:10:48.488949", + "updated_at": "2026-07-10T10:10:48.488949", + "url": "/v1/games/ts-marketplace-lms-p1-p2-br-crimson-cream-coach-pack-add-on" +} diff --git a/site/public/v1/games/ts-marketplace-lms-p1-p2-br-maroon-coach-pack-add-on/index.json b/site/public/v1/games/ts-marketplace-lms-p1-p2-br-maroon-coach-pack-add-on/index.json new file mode 100644 index 000000000000..65581ae96870 --- /dev/null +++ b/site/public/v1/games/ts-marketplace-lms-p1-p2-br-maroon-coach-pack-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 161599, + "slug": "ts-marketplace-lms-p1-p2-br-maroon-coach-pack-add-on", + "name": "TS Marketplace: LMS P1&P2 BR Maroon Coach Pack Add-On", + "release_date": "2017-05-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "MatrixTrains" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106351" + ], + "created_at": "2026-07-10T10:10:48.489967", + "updated_at": "2026-07-10T10:10:48.489967", + "url": "/v1/games/ts-marketplace-lms-p1-p2-br-maroon-coach-pack-add-on" +} diff --git a/site/public/v1/games/ts-marketplace-lms-p1-p2-lms-early-coach-pack-add-on/index.json b/site/public/v1/games/ts-marketplace-lms-p1-p2-lms-early-coach-pack-add-on/index.json new file mode 100644 index 000000000000..fdbccb0c7273 --- /dev/null +++ b/site/public/v1/games/ts-marketplace-lms-p1-p2-lms-early-coach-pack-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 161600, + "slug": "ts-marketplace-lms-p1-p2-lms-early-coach-pack-add-on", + "name": "TS Marketplace: LMS P1&P2 LMS Early Coach Pack Add-On", + "release_date": "2017-05-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "MatrixTrains" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106349" + ], + "created_at": "2026-07-10T10:10:48.489967", + "updated_at": "2026-07-10T10:10:48.489967", + "url": "/v1/games/ts-marketplace-lms-p1-p2-lms-early-coach-pack-add-on" +} diff --git a/site/public/v1/games/ts-marketplace-lms-p1-p2-lms-late-coach-pack-add-on/index.json b/site/public/v1/games/ts-marketplace-lms-p1-p2-lms-late-coach-pack-add-on/index.json new file mode 100644 index 000000000000..8a0d7e44ceea --- /dev/null +++ b/site/public/v1/games/ts-marketplace-lms-p1-p2-lms-late-coach-pack-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 161601, + "slug": "ts-marketplace-lms-p1-p2-lms-late-coach-pack-add-on", + "name": "TS Marketplace: LMS P1&P2 LMS Late Coach Pack Add-On", + "release_date": "2017-05-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "MatrixTrains" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106353" + ], + "created_at": "2026-07-10T10:10:48.489967", + "updated_at": "2026-07-10T10:10:48.489967", + "url": "/v1/games/ts-marketplace-lms-p1-p2-lms-late-coach-pack-add-on" +} diff --git a/site/public/v1/games/ts-marketplace-lms-p3-coaches-pack-03-add-on/index.json b/site/public/v1/games/ts-marketplace-lms-p3-coaches-pack-03-add-on/index.json new file mode 100644 index 000000000000..a52b69891903 --- /dev/null +++ b/site/public/v1/games/ts-marketplace-lms-p3-coaches-pack-03-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 161602, + "slug": "ts-marketplace-lms-p3-coaches-pack-03-add-on", + "name": "TS Marketplace: LMS P3 Coaches Pack 03 Add-On", + "release_date": "2016-12-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "MatrixTrains" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106302" + ], + "created_at": "2026-07-10T10:10:48.489967", + "updated_at": "2026-07-10T10:10:48.489967", + "url": "/v1/games/ts-marketplace-lms-p3-coaches-pack-03-add-on" +} diff --git a/site/public/v1/games/ts-marketplace-lms-p3-coaches-pack-04-add-on/index.json b/site/public/v1/games/ts-marketplace-lms-p3-coaches-pack-04-add-on/index.json new file mode 100644 index 000000000000..0438896cf4b0 --- /dev/null +++ b/site/public/v1/games/ts-marketplace-lms-p3-coaches-pack-04-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 161603, + "slug": "ts-marketplace-lms-p3-coaches-pack-04-add-on", + "name": "TS Marketplace: LMS P3 Coaches Pack 04 Add-On", + "release_date": "2016-12-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "MatrixTrains" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106308" + ], + "created_at": "2026-07-10T10:10:48.489967", + "updated_at": "2026-07-10T10:10:48.489967", + "url": "/v1/games/ts-marketplace-lms-p3-coaches-pack-04-add-on" +} diff --git a/site/public/v1/games/ts-marketplace-lms-period-1-non-corridor-coach-pack-br-crimson/index.json b/site/public/v1/games/ts-marketplace-lms-period-1-non-corridor-coach-pack-br-crimson/index.json new file mode 100644 index 000000000000..136bb92bc039 --- /dev/null +++ b/site/public/v1/games/ts-marketplace-lms-period-1-non-corridor-coach-pack-br-crimson/index.json @@ -0,0 +1,33 @@ +{ + "id": 161604, + "slug": "ts-marketplace-lms-period-1-non-corridor-coach-pack-br-crimson", + "name": "TS Marketplace: LMS Period 1 Non-Corridor Coach Pack BR Crimson", + "release_date": "2019-05-22", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "MatrixTrains" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106399" + ], + "created_at": "2026-07-10T10:10:48.490967", + "updated_at": "2026-07-10T10:10:48.490967", + "url": "/v1/games/ts-marketplace-lms-period-1-non-corridor-coach-pack-br-crimson" +} diff --git a/site/public/v1/games/ts-marketplace-lms-period-1-non-corridor-coach-pack-br-maroon/index.json b/site/public/v1/games/ts-marketplace-lms-period-1-non-corridor-coach-pack-br-maroon/index.json new file mode 100644 index 000000000000..c03a21cf404d --- /dev/null +++ b/site/public/v1/games/ts-marketplace-lms-period-1-non-corridor-coach-pack-br-maroon/index.json @@ -0,0 +1,33 @@ +{ + "id": 161605, + "slug": "ts-marketplace-lms-period-1-non-corridor-coach-pack-br-maroon", + "name": "TS Marketplace: LMS Period 1 Non-Corridor Coach Pack BR Maroon", + "release_date": "2019-05-22", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "MatrixTrains" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106400" + ], + "created_at": "2026-07-10T10:10:48.490967", + "updated_at": "2026-07-10T10:10:48.490967", + "url": "/v1/games/ts-marketplace-lms-period-1-non-corridor-coach-pack-br-maroon" +} diff --git a/site/public/v1/games/ts-marketplace-lms-period-1-non-corridor-coach-pack-early-add-on/index.json b/site/public/v1/games/ts-marketplace-lms-period-1-non-corridor-coach-pack-early-add-on/index.json new file mode 100644 index 000000000000..2a5df5c64450 --- /dev/null +++ b/site/public/v1/games/ts-marketplace-lms-period-1-non-corridor-coach-pack-early-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 161606, + "slug": "ts-marketplace-lms-period-1-non-corridor-coach-pack-early-add-on", + "name": "TS Marketplace: LMS Period 1 Non-Corridor Coach Pack Early Add-On", + "release_date": "2019-04-10", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "MatrixTrains" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106402" + ], + "created_at": "2026-07-10T10:10:48.490967", + "updated_at": "2026-07-10T10:10:48.490967", + "url": "/v1/games/ts-marketplace-lms-period-1-non-corridor-coach-pack-early-add-on" +} diff --git a/site/public/v1/games/ts-marketplace-lms-period-1-non-corridor-coach-pack-late-add-on/index.json b/site/public/v1/games/ts-marketplace-lms-period-1-non-corridor-coach-pack-late-add-on/index.json new file mode 100644 index 000000000000..fe4e185d8331 --- /dev/null +++ b/site/public/v1/games/ts-marketplace-lms-period-1-non-corridor-coach-pack-late-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 161607, + "slug": "ts-marketplace-lms-period-1-non-corridor-coach-pack-late-add-on", + "name": "TS Marketplace: LMS Period 1 Non-Corridor Coach Pack Late Add-On", + "release_date": "2019-04-10", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "MatrixTrains" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106403" + ], + "created_at": "2026-07-10T10:10:48.490967", + "updated_at": "2026-07-10T10:10:48.490967", + "url": "/v1/games/ts-marketplace-lms-period-1-non-corridor-coach-pack-late-add-on" +} diff --git a/site/public/v1/games/ts-marketplace-london-brighton-reigate-expansion-add-on/index.json b/site/public/v1/games/ts-marketplace-london-brighton-reigate-expansion-add-on/index.json new file mode 100644 index 000000000000..cdc015c4660d --- /dev/null +++ b/site/public/v1/games/ts-marketplace-london-brighton-reigate-expansion-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 161608, + "slug": "ts-marketplace-london-brighton-reigate-expansion-add-on", + "name": "TS Marketplace: London - Brighton Reigate Expansion Add-On", + "release_date": "2021-07-15", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Rivet Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105472" + ], + "created_at": "2026-07-10T10:10:48.490967", + "updated_at": "2026-07-10T10:10:48.490967", + "url": "/v1/games/ts-marketplace-london-brighton-reigate-expansion-add-on" +} diff --git a/site/public/v1/games/ts-marketplace-maunsell-59ft-low-window-corridor-coach-pack-br-green/index.json b/site/public/v1/games/ts-marketplace-maunsell-59ft-low-window-corridor-coach-pack-br-green/index.json new file mode 100644 index 000000000000..a29c08f2e941 --- /dev/null +++ b/site/public/v1/games/ts-marketplace-maunsell-59ft-low-window-corridor-coach-pack-br-green/index.json @@ -0,0 +1,33 @@ +{ + "id": 161609, + "slug": "ts-marketplace-maunsell-59ft-low-window-corridor-coach-pack-br-green", + "name": "TS Marketplace: Maunsell 59ft Low Window Corridor Coach Pack BR Green", + "release_date": "2018-04-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "MatrixTrains" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106375" + ], + "created_at": "2026-07-10T10:10:48.490967", + "updated_at": "2026-07-10T10:10:48.490967", + "url": "/v1/games/ts-marketplace-maunsell-59ft-low-window-corridor-coach-pack-br-green" +} diff --git a/site/public/v1/games/ts-marketplace-maunsell-59ft-low-window-corridor-coach-pack-crimson-cream/index.json b/site/public/v1/games/ts-marketplace-maunsell-59ft-low-window-corridor-coach-pack-crimson-cream/index.json new file mode 100644 index 000000000000..6490be4f1483 --- /dev/null +++ b/site/public/v1/games/ts-marketplace-maunsell-59ft-low-window-corridor-coach-pack-crimson-cream/index.json @@ -0,0 +1,33 @@ +{ + "id": 161610, + "slug": "ts-marketplace-maunsell-59ft-low-window-corridor-coach-pack-crimson-cream", + "name": "TS Marketplace: Maunsell 59ft Low Window Corridor Coach Pack Crimson Cream", + "release_date": "2018-04-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "MatrixTrains" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106377" + ], + "created_at": "2026-07-10T10:10:48.492042", + "updated_at": "2026-07-10T10:10:48.492042", + "url": "/v1/games/ts-marketplace-maunsell-59ft-low-window-corridor-coach-pack-crimson-cream" +} diff --git a/site/public/v1/games/ts-marketplace-maunsell-59ft-low-window-corridor-coach-pack-southern-malachite-green/index.json b/site/public/v1/games/ts-marketplace-maunsell-59ft-low-window-corridor-coach-pack-southern-malachite-green/index.json new file mode 100644 index 000000000000..39a6c8265679 --- /dev/null +++ b/site/public/v1/games/ts-marketplace-maunsell-59ft-low-window-corridor-coach-pack-southern-malachite-green/index.json @@ -0,0 +1,33 @@ +{ + "id": 161611, + "slug": "ts-marketplace-maunsell-59ft-low-window-corridor-coach-pack-southern-malachite-green", + "name": "TS Marketplace: Maunsell 59ft Low Window Corridor Coach Pack Southern Malachite Green", + "release_date": "2018-04-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "MatrixTrains" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106378" + ], + "created_at": "2026-07-10T10:10:48.492042", + "updated_at": "2026-07-10T10:10:48.492042", + "url": "/v1/games/ts-marketplace-maunsell-59ft-low-window-corridor-coach-pack-southern-malachite-green" +} diff --git a/site/public/v1/games/ts-marketplace-maunsell-59ft-low-window-corridor-coach-pack-southern-olive-green/index.json b/site/public/v1/games/ts-marketplace-maunsell-59ft-low-window-corridor-coach-pack-southern-olive-green/index.json new file mode 100644 index 000000000000..5226c348f39e --- /dev/null +++ b/site/public/v1/games/ts-marketplace-maunsell-59ft-low-window-corridor-coach-pack-southern-olive-green/index.json @@ -0,0 +1,33 @@ +{ + "id": 161612, + "slug": "ts-marketplace-maunsell-59ft-low-window-corridor-coach-pack-southern-olive-green", + "name": "TS Marketplace: Maunsell 59ft Low Window Corridor Coach Pack Southern Olive Green", + "release_date": "2018-04-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "MatrixTrains" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106379" + ], + "created_at": "2026-07-10T10:10:48.492042", + "updated_at": "2026-07-10T10:10:48.492042", + "url": "/v1/games/ts-marketplace-maunsell-59ft-low-window-corridor-coach-pack-southern-olive-green" +} diff --git a/site/public/v1/games/ts-marketplace-metro-north-scenario-pack-01/index.json b/site/public/v1/games/ts-marketplace-metro-north-scenario-pack-01/index.json new file mode 100644 index 000000000000..23aa5f96ab63 --- /dev/null +++ b/site/public/v1/games/ts-marketplace-metro-north-scenario-pack-01/index.json @@ -0,0 +1,33 @@ +{ + "id": 161613, + "slug": "ts-marketplace-metro-north-scenario-pack-01", + "name": "TS Marketplace: Metro-North Scenario Pack 01", + "release_date": "2020-05-06", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "High Iron Simulations" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105840" + ], + "created_at": "2026-07-10T10:10:48.492042", + "updated_at": "2026-07-10T10:10:48.492042", + "url": "/v1/games/ts-marketplace-metro-north-scenario-pack-01" +} diff --git a/site/public/v1/games/ts-marketplace-miami-west-palm-beach-scenario-pack-01-add-on/index.json b/site/public/v1/games/ts-marketplace-miami-west-palm-beach-scenario-pack-01-add-on/index.json new file mode 100644 index 000000000000..0184adb9cf72 --- /dev/null +++ b/site/public/v1/games/ts-marketplace-miami-west-palm-beach-scenario-pack-01-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 161614, + "slug": "ts-marketplace-miami-west-palm-beach-scenario-pack-01-add-on", + "name": "TS Marketplace: Miami – West Palm Beach Scenario Pack 01 Add-On", + "release_date": "2017-07-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "High Iron Simulations" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106038" + ], + "created_at": "2026-07-10T10:10:48.492042", + "updated_at": "2026-07-10T10:10:48.492042", + "url": "/v1/games/ts-marketplace-miami-west-palm-beach-scenario-pack-01-add-on" +} diff --git a/site/public/v1/games/ts-marketplace-mittenwaldbahn-scenario-pack-01-add-on/index.json b/site/public/v1/games/ts-marketplace-mittenwaldbahn-scenario-pack-01-add-on/index.json new file mode 100644 index 000000000000..3dd0d63ed45f --- /dev/null +++ b/site/public/v1/games/ts-marketplace-mittenwaldbahn-scenario-pack-01-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 161615, + "slug": "ts-marketplace-mittenwaldbahn-scenario-pack-01-add-on", + "name": "TS Marketplace: Mittenwaldbahn Scenario Pack 01 Add-On", + "release_date": "2018-01-10", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Skyhook Games Studio" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106139" + ], + "created_at": "2026-07-10T10:10:48.492042", + "updated_at": "2026-07-10T10:10:48.492042", + "url": "/v1/games/ts-marketplace-mittenwaldbahn-scenario-pack-01-add-on" +} diff --git a/site/public/v1/games/ts-marketplace-montana-hi-line-scenario-pack-01-add-on/index.json b/site/public/v1/games/ts-marketplace-montana-hi-line-scenario-pack-01-add-on/index.json new file mode 100644 index 000000000000..903131d0bc3e --- /dev/null +++ b/site/public/v1/games/ts-marketplace-montana-hi-line-scenario-pack-01-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 161616, + "slug": "ts-marketplace-montana-hi-line-scenario-pack-01-add-on", + "name": "TS Marketplace: Montana Hi-Line Scenario Pack 01 Add-On", + "release_date": "2020-01-29", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "High Iron Simulations" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106279" + ], + "created_at": "2026-07-10T10:10:48.493009", + "updated_at": "2026-07-10T10:10:48.493009", + "url": "/v1/games/ts-marketplace-montana-hi-line-scenario-pack-01-add-on" +} diff --git a/site/public/v1/games/ts-marketplace-munich-augsburg-scenario-pack-01/index.json b/site/public/v1/games/ts-marketplace-munich-augsburg-scenario-pack-01/index.json new file mode 100644 index 000000000000..8c4a6bbb2dde --- /dev/null +++ b/site/public/v1/games/ts-marketplace-munich-augsburg-scenario-pack-01/index.json @@ -0,0 +1,33 @@ +{ + "id": 161617, + "slug": "ts-marketplace-munich-augsburg-scenario-pack-01", + "name": "TS Marketplace: Munich-Augsburg Scenario Pack 01", + "release_date": "2018-04-25", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Trains & Drivers" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106029" + ], + "created_at": "2026-07-10T10:10:48.493009", + "updated_at": "2026-07-10T10:10:48.493009", + "url": "/v1/games/ts-marketplace-munich-augsburg-scenario-pack-01" +} diff --git a/site/public/v1/games/ts-marketplace-munich-to-garmisch-scenario-pack-01-add-on/index.json b/site/public/v1/games/ts-marketplace-munich-to-garmisch-scenario-pack-01-add-on/index.json new file mode 100644 index 000000000000..0e0441229534 --- /dev/null +++ b/site/public/v1/games/ts-marketplace-munich-to-garmisch-scenario-pack-01-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 161618, + "slug": "ts-marketplace-munich-to-garmisch-scenario-pack-01-add-on", + "name": "TS Marketplace: Munich to Garmisch Scenario Pack 01 Add-On", + "release_date": "2017-04-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Skyhook Games Studio" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106304" + ], + "created_at": "2026-07-10T10:10:48.493009", + "updated_at": "2026-07-10T10:10:48.493009", + "url": "/v1/games/ts-marketplace-munich-to-garmisch-scenario-pack-01-add-on" +} diff --git a/site/public/v1/games/ts-marketplace-ner-gnr-non-corridor-br-pack/index.json b/site/public/v1/games/ts-marketplace-ner-gnr-non-corridor-br-pack/index.json new file mode 100644 index 000000000000..92ab9f4fcdfc --- /dev/null +++ b/site/public/v1/games/ts-marketplace-ner-gnr-non-corridor-br-pack/index.json @@ -0,0 +1,33 @@ +{ + "id": 161619, + "slug": "ts-marketplace-ner-gnr-non-corridor-br-pack", + "name": "TS Marketplace: NER/GNR Non-Corridor BR Pack", + "release_date": "2018-01-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "MatrixTrains" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106373" + ], + "created_at": "2026-07-10T10:10:48.493009", + "updated_at": "2026-07-10T10:10:48.493009", + "url": "/v1/games/ts-marketplace-ner-gnr-non-corridor-br-pack" +} diff --git a/site/public/v1/games/ts-marketplace-ner-gnr-non-corridor-lner-pack/index.json b/site/public/v1/games/ts-marketplace-ner-gnr-non-corridor-lner-pack/index.json new file mode 100644 index 000000000000..cb2569198dcf --- /dev/null +++ b/site/public/v1/games/ts-marketplace-ner-gnr-non-corridor-lner-pack/index.json @@ -0,0 +1,33 @@ +{ + "id": 161620, + "slug": "ts-marketplace-ner-gnr-non-corridor-lner-pack", + "name": "TS Marketplace: NER/GNR Non-Corridor LNER Pack", + "release_date": "2018-01-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "MatrixTrains" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106374" + ], + "created_at": "2026-07-10T10:10:48.493899", + "updated_at": "2026-07-10T10:10:48.493899", + "url": "/v1/games/ts-marketplace-ner-gnr-non-corridor-lner-pack" +} diff --git a/site/public/v1/games/ts-marketplace-network-southeast-br-class-313-livery-pack/index.json b/site/public/v1/games/ts-marketplace-network-southeast-br-class-313-livery-pack/index.json new file mode 100644 index 000000000000..58527ee4a8c2 --- /dev/null +++ b/site/public/v1/games/ts-marketplace-network-southeast-br-class-313-livery-pack/index.json @@ -0,0 +1,33 @@ +{ + "id": 161621, + "slug": "ts-marketplace-network-southeast-br-class-313-livery-pack", + "name": "TS Marketplace: Network Southeast BR Class 313 Livery Pack", + "release_date": "2017-03-08", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Armstrong Powerhouse" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106318" + ], + "created_at": "2026-07-10T10:10:48.493899", + "updated_at": "2026-07-10T10:10:48.493899", + "url": "/v1/games/ts-marketplace-network-southeast-br-class-313-livery-pack" +} diff --git a/site/public/v1/games/ts-marketplace-new-york-central-rf-16-livery-add-on/index.json b/site/public/v1/games/ts-marketplace-new-york-central-rf-16-livery-add-on/index.json new file mode 100644 index 000000000000..3fc3d9f9aa7f --- /dev/null +++ b/site/public/v1/games/ts-marketplace-new-york-central-rf-16-livery-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 161622, + "slug": "ts-marketplace-new-york-central-rf-16-livery-add-on", + "name": "TS Marketplace: New York Central RF-16 Livery Add-On", + "release_date": "2018-09-05", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "The Loco Shop" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106380" + ], + "created_at": "2026-07-10T10:10:48.493899", + "updated_at": "2026-07-10T10:10:48.493899", + "url": "/v1/games/ts-marketplace-new-york-central-rf-16-livery-add-on" +} diff --git a/site/public/v1/games/ts-marketplace-new-york-new-haven-scenario-pack-01-add-on/index.json b/site/public/v1/games/ts-marketplace-new-york-new-haven-scenario-pack-01-add-on/index.json new file mode 100644 index 000000000000..19bba5713a46 --- /dev/null +++ b/site/public/v1/games/ts-marketplace-new-york-new-haven-scenario-pack-01-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 161623, + "slug": "ts-marketplace-new-york-new-haven-scenario-pack-01-add-on", + "name": "TS Marketplace: New York – New Haven Scenario Pack 01 Add-On", + "release_date": "2016-09-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "High Iron Simulations" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106222" + ], + "created_at": "2026-07-10T10:10:48.493899", + "updated_at": "2026-07-10T10:10:48.493899", + "url": "/v1/games/ts-marketplace-new-york-new-haven-scenario-pack-01-add-on" +} diff --git a/site/public/v1/games/ts-marketplace-new-york-new-haven-scenario-pack-02-add-on/index.json b/site/public/v1/games/ts-marketplace-new-york-new-haven-scenario-pack-02-add-on/index.json new file mode 100644 index 000000000000..7de1f59ecd79 --- /dev/null +++ b/site/public/v1/games/ts-marketplace-new-york-new-haven-scenario-pack-02-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 161624, + "slug": "ts-marketplace-new-york-new-haven-scenario-pack-02-add-on", + "name": "TS Marketplace: New York – New Haven Scenario Pack 02 Add-On", + "release_date": "2017-05-11", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "High Iron Simulations" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106306" + ], + "created_at": "2026-07-10T10:10:48.493899", + "updated_at": "2026-07-10T10:10:48.493899", + "url": "/v1/games/ts-marketplace-new-york-new-haven-scenario-pack-02-add-on" +} diff --git a/site/public/v1/games/ts-marketplace-norfolk-southern-coal-district-scenario-pack-01-add-on/index.json b/site/public/v1/games/ts-marketplace-norfolk-southern-coal-district-scenario-pack-01-add-on/index.json new file mode 100644 index 000000000000..0e101c8f8a08 --- /dev/null +++ b/site/public/v1/games/ts-marketplace-norfolk-southern-coal-district-scenario-pack-01-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 161625, + "slug": "ts-marketplace-norfolk-southern-coal-district-scenario-pack-01-add-on", + "name": "TS Marketplace: Norfolk Southern Coal District Scenario Pack 01 Add-On", + "release_date": "2018-09-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "High Iron Simulations" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106404" + ], + "created_at": "2026-07-10T10:10:48.493899", + "updated_at": "2026-07-10T10:10:48.493899", + "url": "/v1/games/ts-marketplace-norfolk-southern-coal-district-scenario-pack-01-add-on" +} diff --git a/site/public/v1/games/ts-marketplace-norfolk-southern-n-line-scenario-pack-01/index.json b/site/public/v1/games/ts-marketplace-norfolk-southern-n-line-scenario-pack-01/index.json new file mode 100644 index 000000000000..7d205157c36c --- /dev/null +++ b/site/public/v1/games/ts-marketplace-norfolk-southern-n-line-scenario-pack-01/index.json @@ -0,0 +1,33 @@ +{ + "id": 161626, + "slug": "ts-marketplace-norfolk-southern-n-line-scenario-pack-01", + "name": "TS Marketplace: Norfolk Southern N-Line Scenario Pack 01", + "release_date": "2019-10-16", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "High Iron Simulations" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105946" + ], + "created_at": "2026-07-10T10:10:48.493899", + "updated_at": "2026-07-10T10:10:48.493899", + "url": "/v1/games/ts-marketplace-norfolk-southern-n-line-scenario-pack-01" +} diff --git a/site/public/v1/games/ts-marketplace-norfolk-southern-sd60e-livery-pack-01/index.json b/site/public/v1/games/ts-marketplace-norfolk-southern-sd60e-livery-pack-01/index.json new file mode 100644 index 000000000000..6dc3863706ab --- /dev/null +++ b/site/public/v1/games/ts-marketplace-norfolk-southern-sd60e-livery-pack-01/index.json @@ -0,0 +1,33 @@ +{ + "id": 161627, + "slug": "ts-marketplace-norfolk-southern-sd60e-livery-pack-01", + "name": "TS Marketplace: Norfolk Southern SD60E Livery Pack 01", + "release_date": "2020-02-26", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "The Loco Shop" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106229" + ], + "created_at": "2026-07-10T10:10:48.494981", + "updated_at": "2026-07-10T10:10:48.494981", + "url": "/v1/games/ts-marketplace-norfolk-southern-sd60e-livery-pack-01" +} diff --git a/site/public/v1/games/ts-marketplace-north-jersey-coast-line-scenario-pack-01-add-on/index.json b/site/public/v1/games/ts-marketplace-north-jersey-coast-line-scenario-pack-01-add-on/index.json new file mode 100644 index 000000000000..112660107ee4 --- /dev/null +++ b/site/public/v1/games/ts-marketplace-north-jersey-coast-line-scenario-pack-01-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 161628, + "slug": "ts-marketplace-north-jersey-coast-line-scenario-pack-01-add-on", + "name": "TS Marketplace: North Jersey Coast Line Scenario Pack 01 Add-On", + "release_date": "2016-07-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "High Iron Simulations" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106223" + ], + "created_at": "2026-07-10T10:10:48.494981", + "updated_at": "2026-07-10T10:10:48.494981", + "url": "/v1/games/ts-marketplace-north-jersey-coast-line-scenario-pack-01-add-on" +} diff --git a/site/public/v1/games/ts-marketplace-north-jersey-coast-morristown-lines-scenario-pack-01-add-on/index.json b/site/public/v1/games/ts-marketplace-north-jersey-coast-morristown-lines-scenario-pack-01-add-on/index.json new file mode 100644 index 000000000000..b6b092567d81 --- /dev/null +++ b/site/public/v1/games/ts-marketplace-north-jersey-coast-morristown-lines-scenario-pack-01-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 161629, + "slug": "ts-marketplace-north-jersey-coast-morristown-lines-scenario-pack-01-add-on", + "name": "TS Marketplace: North Jersey Coast & Morristown Lines Scenario Pack 01 Add-On", + "release_date": "2017-09-06", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "High Iron Simulations" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106362" + ], + "created_at": "2026-07-10T10:10:48.494981", + "updated_at": "2026-07-10T10:10:48.494981", + "url": "/v1/games/ts-marketplace-north-jersey-coast-morristown-lines-scenario-pack-01-add-on" +} diff --git a/site/public/v1/games/ts-marketplace-northeast-corridor-scenario-pack-01-add-on/index.json b/site/public/v1/games/ts-marketplace-northeast-corridor-scenario-pack-01-add-on/index.json new file mode 100644 index 000000000000..9137ef8054e8 --- /dev/null +++ b/site/public/v1/games/ts-marketplace-northeast-corridor-scenario-pack-01-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 161630, + "slug": "ts-marketplace-northeast-corridor-scenario-pack-01-add-on", + "name": "TS Marketplace: Northeast Corridor Scenario Pack 01 Add-On", + "release_date": "2019-07-17", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "High Iron Simulations" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106442" + ], + "created_at": "2026-07-10T10:10:48.494981", + "updated_at": "2026-07-10T10:10:48.494981", + "url": "/v1/games/ts-marketplace-northeast-corridor-scenario-pack-01-add-on" +} diff --git a/site/public/v1/games/ts-marketplace-ootz-42-wagon-pack-add-on/index.json b/site/public/v1/games/ts-marketplace-ootz-42-wagon-pack-add-on/index.json new file mode 100644 index 000000000000..fc05392abae2 --- /dev/null +++ b/site/public/v1/games/ts-marketplace-ootz-42-wagon-pack-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 161631, + "slug": "ts-marketplace-ootz-42-wagon-pack-add-on", + "name": "TS Marketplace: Ootz 42 Wagon Pack Add-On", + "release_date": "2017-04-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "virtualRailroads" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106339" + ], + "created_at": "2026-07-10T10:10:48.494981", + "updated_at": "2026-07-10T10:10:48.495898", + "url": "/v1/games/ts-marketplace-ootz-42-wagon-pack-add-on" +} diff --git a/site/public/v1/games/ts-marketplace-peninsula-corridor-san-francisco-gilroy-scenario-mini-pack-01-add-on/index.json b/site/public/v1/games/ts-marketplace-peninsula-corridor-san-francisco-gilroy-scenario-mini-pack-01-add-on/index.json new file mode 100644 index 000000000000..8ca5ebb7ddb4 --- /dev/null +++ b/site/public/v1/games/ts-marketplace-peninsula-corridor-san-francisco-gilroy-scenario-mini-pack-01-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 161632, + "slug": "ts-marketplace-peninsula-corridor-san-francisco-gilroy-scenario-mini-pack-01-add-on", + "name": "TS Marketplace: Peninsula Corridor: San Francisco - Gilroy Scenario Mini-Pack 01 Add-On", + "release_date": "2018-07-27", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "High Iron Simulations" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106065" + ], + "created_at": "2026-07-10T10:10:48.495898", + "updated_at": "2026-07-10T10:10:48.495898", + "url": "/v1/games/ts-marketplace-peninsula-corridor-san-francisco-gilroy-scenario-mini-pack-01-add-on" +} diff --git a/site/public/v1/games/ts-marketplace-peninsula-corridor-san-francisco-gilroy-scenario-mini-pack-02-add-on/index.json b/site/public/v1/games/ts-marketplace-peninsula-corridor-san-francisco-gilroy-scenario-mini-pack-02-add-on/index.json new file mode 100644 index 000000000000..e4ae0f381f08 --- /dev/null +++ b/site/public/v1/games/ts-marketplace-peninsula-corridor-san-francisco-gilroy-scenario-mini-pack-02-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 161633, + "slug": "ts-marketplace-peninsula-corridor-san-francisco-gilroy-scenario-mini-pack-02-add-on", + "name": "TS Marketplace: Peninsula Corridor: San Francisco - Gilroy Scenario Mini-Pack 02 Add-On", + "release_date": "2018-07-27", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "High Iron Simulations" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106066" + ], + "created_at": "2026-07-10T10:10:48.495898", + "updated_at": "2026-07-10T10:10:48.495898", + "url": "/v1/games/ts-marketplace-peninsula-corridor-san-francisco-gilroy-scenario-mini-pack-02-add-on" +} diff --git a/site/public/v1/games/ts-marketplace-prr-x23-boxcar-wagon-pack-add-on/index.json b/site/public/v1/games/ts-marketplace-prr-x23-boxcar-wagon-pack-add-on/index.json new file mode 100644 index 000000000000..df53b2061523 --- /dev/null +++ b/site/public/v1/games/ts-marketplace-prr-x23-boxcar-wagon-pack-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 161634, + "slug": "ts-marketplace-prr-x23-boxcar-wagon-pack-add-on", + "name": "TS Marketplace: PRR X23 Boxcar Wagon Pack Add-On", + "release_date": "2018-06-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Trains & Drivers" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106381" + ], + "created_at": "2026-07-10T10:10:48.495898", + "updated_at": "2026-07-10T10:10:48.495898", + "url": "/v1/games/ts-marketplace-prr-x23-boxcar-wagon-pack-add-on" +} diff --git a/site/public/v1/games/ts-marketplace-sahimms-901-wagon-pack-add-on/index.json b/site/public/v1/games/ts-marketplace-sahimms-901-wagon-pack-add-on/index.json new file mode 100644 index 000000000000..f444301b1bc6 --- /dev/null +++ b/site/public/v1/games/ts-marketplace-sahimms-901-wagon-pack-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 161635, + "slug": "ts-marketplace-sahimms-901-wagon-pack-add-on", + "name": "TS Marketplace: Sahimms 901 Wagon Pack Add-On", + "release_date": "2017-02-15", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "virtualRailroads" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106340" + ], + "created_at": "2026-07-10T10:10:48.495898", + "updated_at": "2026-07-10T10:10:48.495898", + "url": "/v1/games/ts-marketplace-sahimms-901-wagon-pack-add-on" +} diff --git a/site/public/v1/games/ts-marketplace-seaboard-sd50-livery-pack/index.json b/site/public/v1/games/ts-marketplace-seaboard-sd50-livery-pack/index.json new file mode 100644 index 000000000000..4be511443c11 --- /dev/null +++ b/site/public/v1/games/ts-marketplace-seaboard-sd50-livery-pack/index.json @@ -0,0 +1,33 @@ +{ + "id": 161636, + "slug": "ts-marketplace-seaboard-sd50-livery-pack", + "name": "TS Marketplace: Seaboard SD50 Livery Pack", + "release_date": "2020-05-20", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "The Loco Shop" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105836" + ], + "created_at": "2026-07-10T10:10:48.495898", + "updated_at": "2026-07-10T10:10:48.495898", + "url": "/v1/games/ts-marketplace-seaboard-sd50-livery-pack" +} diff --git a/site/public/v1/games/ts-marketplace-seacow-wagon-pack-add-on/index.json b/site/public/v1/games/ts-marketplace-seacow-wagon-pack-add-on/index.json new file mode 100644 index 000000000000..feb6ae42e934 --- /dev/null +++ b/site/public/v1/games/ts-marketplace-seacow-wagon-pack-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 161637, + "slug": "ts-marketplace-seacow-wagon-pack-add-on", + "name": "TS Marketplace: Seacow Wagon Pack Add-On", + "release_date": "2017-02-10", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Just Trains" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106443" + ], + "created_at": "2026-07-10T10:10:48.495898", + "updated_at": "2026-07-10T10:10:48.495898", + "url": "/v1/games/ts-marketplace-seacow-wagon-pack-add-on" +} diff --git a/site/public/v1/games/ts-marketplace-secr-60ft-birdcage-br-crimson-add-on/index.json b/site/public/v1/games/ts-marketplace-secr-60ft-birdcage-br-crimson-add-on/index.json new file mode 100644 index 000000000000..9217e6e6e1b8 --- /dev/null +++ b/site/public/v1/games/ts-marketplace-secr-60ft-birdcage-br-crimson-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 161638, + "slug": "ts-marketplace-secr-60ft-birdcage-br-crimson-add-on", + "name": "TS Marketplace: SECR 60FT Birdcage BR Crimson Add-on", + "release_date": "2017-09-22", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "MatrixTrains" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106367" + ], + "created_at": "2026-07-10T10:10:48.496898", + "updated_at": "2026-07-10T10:10:48.496898", + "url": "/v1/games/ts-marketplace-secr-60ft-birdcage-br-crimson-add-on" +} diff --git a/site/public/v1/games/ts-marketplace-secr-60ft-birdcage-secr-crimson-lake-add-on/index.json b/site/public/v1/games/ts-marketplace-secr-60ft-birdcage-secr-crimson-lake-add-on/index.json new file mode 100644 index 000000000000..52092fa211fe --- /dev/null +++ b/site/public/v1/games/ts-marketplace-secr-60ft-birdcage-secr-crimson-lake-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 161639, + "slug": "ts-marketplace-secr-60ft-birdcage-secr-crimson-lake-add-on", + "name": "TS Marketplace: SECR 60FT Birdcage SECR Crimson Lake Add-On", + "release_date": "2017-09-22", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "MatrixTrains" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106369" + ], + "created_at": "2026-07-10T10:10:48.496898", + "updated_at": "2026-07-10T10:10:48.496898", + "url": "/v1/games/ts-marketplace-secr-60ft-birdcage-secr-crimson-lake-add-on" +} diff --git a/site/public/v1/games/ts-marketplace-secr-60ft-birdcage-sr-green-add-on/index.json b/site/public/v1/games/ts-marketplace-secr-60ft-birdcage-sr-green-add-on/index.json new file mode 100644 index 000000000000..27fa6cfc05c0 --- /dev/null +++ b/site/public/v1/games/ts-marketplace-secr-60ft-birdcage-sr-green-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 161640, + "slug": "ts-marketplace-secr-60ft-birdcage-sr-green-add-on", + "name": "TS Marketplace: SECR 60FT Birdcage SR Green Add-On", + "release_date": "2017-09-22", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "MatrixTrains" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106371" + ], + "created_at": "2026-07-10T10:10:48.496898", + "updated_at": "2026-07-10T10:10:48.496898", + "url": "/v1/games/ts-marketplace-secr-60ft-birdcage-sr-green-add-on" +} diff --git a/site/public/v1/games/ts-marketplace-sherman-hill-scenario-pack-01-add-on/index.json b/site/public/v1/games/ts-marketplace-sherman-hill-scenario-pack-01-add-on/index.json new file mode 100644 index 000000000000..4564a07a725b --- /dev/null +++ b/site/public/v1/games/ts-marketplace-sherman-hill-scenario-pack-01-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 161641, + "slug": "ts-marketplace-sherman-hill-scenario-pack-01-add-on", + "name": "TS Marketplace: Sherman Hill Scenario Pack 01 Add-On", + "release_date": "2017-01-31", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "High Iron Simulations" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106445" + ], + "created_at": "2026-07-10T10:10:48.496898", + "updated_at": "2026-07-10T10:10:48.496898", + "url": "/v1/games/ts-marketplace-sherman-hill-scenario-pack-01-add-on" +} diff --git a/site/public/v1/games/ts-marketplace-soldier-summit-salt-lake-city-scenario-pack-01-add-on/index.json b/site/public/v1/games/ts-marketplace-soldier-summit-salt-lake-city-scenario-pack-01-add-on/index.json new file mode 100644 index 000000000000..1b9edcc457e6 --- /dev/null +++ b/site/public/v1/games/ts-marketplace-soldier-summit-salt-lake-city-scenario-pack-01-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 161642, + "slug": "ts-marketplace-soldier-summit-salt-lake-city-scenario-pack-01-add-on", + "name": "TS Marketplace: Soldier Summit & Salt Lake City Scenario Pack 01 Add-On", + "release_date": "2018-10-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "High Iron Simulations" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106447" + ], + "created_at": "2026-07-10T10:10:48.496898", + "updated_at": "2026-07-10T10:10:48.496898", + "url": "/v1/games/ts-marketplace-soldier-summit-salt-lake-city-scenario-pack-01-add-on" +} diff --git a/site/public/v1/games/ts-marketplace-soldier-summit-salt-lake-city-scenario-pack-02-add-on/index.json b/site/public/v1/games/ts-marketplace-soldier-summit-salt-lake-city-scenario-pack-02-add-on/index.json new file mode 100644 index 000000000000..9341d448da3b --- /dev/null +++ b/site/public/v1/games/ts-marketplace-soldier-summit-salt-lake-city-scenario-pack-02-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 161643, + "slug": "ts-marketplace-soldier-summit-salt-lake-city-scenario-pack-02-add-on", + "name": "TS Marketplace: Soldier Summit & Salt Lake City Scenario Pack 02 Add-On", + "release_date": "2018-12-05", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "High Iron Simulations" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106448" + ], + "created_at": "2026-07-10T10:10:48.496898", + "updated_at": "2026-07-10T10:10:48.496898", + "url": "/v1/games/ts-marketplace-soldier-summit-salt-lake-city-scenario-pack-02-add-on" +} diff --git a/site/public/v1/games/ts-marketplace-soldier-summit-scenario-pack-01-add-on/index.json b/site/public/v1/games/ts-marketplace-soldier-summit-scenario-pack-01-add-on/index.json new file mode 100644 index 000000000000..da373e7b22b1 --- /dev/null +++ b/site/public/v1/games/ts-marketplace-soldier-summit-scenario-pack-01-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 161644, + "slug": "ts-marketplace-soldier-summit-scenario-pack-01-add-on", + "name": "TS Marketplace: Soldier Summit Scenario Pack 01 Add-On", + "release_date": "2017-11-08", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "High Iron Simulations" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106449" + ], + "created_at": "2026-07-10T10:10:48.496898", + "updated_at": "2026-07-10T10:10:48.496898", + "url": "/v1/games/ts-marketplace-soldier-summit-scenario-pack-01-add-on" +} diff --git a/site/public/v1/games/ts-marketplace-south-london-network-scenario-pack-01/index.json b/site/public/v1/games/ts-marketplace-south-london-network-scenario-pack-01/index.json new file mode 100644 index 000000000000..b97c0f28f901 --- /dev/null +++ b/site/public/v1/games/ts-marketplace-south-london-network-scenario-pack-01/index.json @@ -0,0 +1,31 @@ +{ + "id": 161645, + "slug": "ts-marketplace-south-london-network-scenario-pack-01", + "name": "TS Marketplace: South London Network Scenario Pack 01", + "release_date": "2021-01-14", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105610" + ], + "created_at": "2026-07-10T10:10:48.497980", + "updated_at": "2026-07-10T10:10:48.497980", + "url": "/v1/games/ts-marketplace-south-london-network-scenario-pack-01" +} diff --git a/site/public/v1/games/ts-marketplace-southern-pacific-cotton-belt-gp30-livery-add-on/index.json b/site/public/v1/games/ts-marketplace-southern-pacific-cotton-belt-gp30-livery-add-on/index.json new file mode 100644 index 000000000000..89002f473492 --- /dev/null +++ b/site/public/v1/games/ts-marketplace-southern-pacific-cotton-belt-gp30-livery-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 161646, + "slug": "ts-marketplace-southern-pacific-cotton-belt-gp30-livery-add-on", + "name": "TS Marketplace: Southern Pacific/Cotton Belt GP30 Livery Add-On", + "release_date": "2018-12-05", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Digital Train Model" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106389" + ], + "created_at": "2026-07-10T10:10:48.497980", + "updated_at": "2026-07-10T10:10:48.497980", + "url": "/v1/games/ts-marketplace-southern-pacific-cotton-belt-gp30-livery-add-on" +} diff --git a/site/public/v1/games/ts-marketplace-springfield-line-scenario-pack-01/index.json b/site/public/v1/games/ts-marketplace-springfield-line-scenario-pack-01/index.json new file mode 100644 index 000000000000..f6cd92df3340 --- /dev/null +++ b/site/public/v1/games/ts-marketplace-springfield-line-scenario-pack-01/index.json @@ -0,0 +1,33 @@ +{ + "id": 161647, + "slug": "ts-marketplace-springfield-line-scenario-pack-01", + "name": "TS Marketplace: Springfield Line Scenario Pack 01", + "release_date": "2019-09-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "High Iron Simulations" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105954" + ], + "created_at": "2026-07-10T10:10:48.497980", + "updated_at": "2026-07-10T10:10:48.497980", + "url": "/v1/games/ts-marketplace-springfield-line-scenario-pack-01" +} diff --git a/site/public/v1/games/ts-marketplace-surselva-line-christmas-scenario-pack/index.json b/site/public/v1/games/ts-marketplace-surselva-line-christmas-scenario-pack/index.json new file mode 100644 index 000000000000..024604f62b37 --- /dev/null +++ b/site/public/v1/games/ts-marketplace-surselva-line-christmas-scenario-pack/index.json @@ -0,0 +1,33 @@ +{ + "id": 161648, + "slug": "ts-marketplace-surselva-line-christmas-scenario-pack", + "name": "TS Marketplace: Surselva Line Christmas Scenario Pack", + "release_date": "2019-12-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Rivet Games" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105644" + ], + "created_at": "2026-07-10T10:10:48.497980", + "updated_at": "2026-07-10T10:10:48.497980", + "url": "/v1/games/ts-marketplace-surselva-line-christmas-scenario-pack" +} diff --git a/site/public/v1/games/ts-marketplace-tagnoos-898-wagon-pack-add-on/index.json b/site/public/v1/games/ts-marketplace-tagnoos-898-wagon-pack-add-on/index.json new file mode 100644 index 000000000000..091faa913825 --- /dev/null +++ b/site/public/v1/games/ts-marketplace-tagnoos-898-wagon-pack-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 161649, + "slug": "ts-marketplace-tagnoos-898-wagon-pack-add-on", + "name": "TS Marketplace: Tagnoos 898 Wagon Pack Add-On", + "release_date": "2017-04-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "virtualRailroads" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106342" + ], + "created_at": "2026-07-10T10:10:48.498981", + "updated_at": "2026-07-10T10:10:48.498981", + "url": "/v1/games/ts-marketplace-tagnoos-898-wagon-pack-add-on" +} diff --git a/site/public/v1/games/ts-marketplace-tamns-893-wagon-pack-add-on/index.json b/site/public/v1/games/ts-marketplace-tamns-893-wagon-pack-add-on/index.json new file mode 100644 index 000000000000..0dc4708986c5 --- /dev/null +++ b/site/public/v1/games/ts-marketplace-tamns-893-wagon-pack-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 161650, + "slug": "ts-marketplace-tamns-893-wagon-pack-add-on", + "name": "TS Marketplace: Tamns 893 Wagon Pack Add-On", + "release_date": "2017-01-31", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "virtualRailroads" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106343" + ], + "created_at": "2026-07-10T10:10:48.498981", + "updated_at": "2026-07-10T10:10:48.498981", + "url": "/v1/games/ts-marketplace-tamns-893-wagon-pack-add-on" +} diff --git a/site/public/v1/games/ts-marketplace-tfl-rail-br-class-315-emu-livery-add-on/index.json b/site/public/v1/games/ts-marketplace-tfl-rail-br-class-315-emu-livery-add-on/index.json new file mode 100644 index 000000000000..c250845b4671 --- /dev/null +++ b/site/public/v1/games/ts-marketplace-tfl-rail-br-class-315-emu-livery-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 161651, + "slug": "ts-marketplace-tfl-rail-br-class-315-emu-livery-add-on", + "name": "TS Marketplace: TfL Rail BR Class 315 EMU Livery Add-On", + "release_date": "2018-08-02", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Armstrong Powerhouse" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106391" + ], + "created_at": "2026-07-10T10:10:48.498981", + "updated_at": "2026-07-10T10:10:48.498981", + "url": "/v1/games/ts-marketplace-tfl-rail-br-class-315-emu-livery-add-on" +} diff --git a/site/public/v1/games/ts-marketplace-thompson-corridor-coaches-pack-03-add-on/index.json b/site/public/v1/games/ts-marketplace-thompson-corridor-coaches-pack-03-add-on/index.json new file mode 100644 index 000000000000..d9462fb31023 --- /dev/null +++ b/site/public/v1/games/ts-marketplace-thompson-corridor-coaches-pack-03-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 161652, + "slug": "ts-marketplace-thompson-corridor-coaches-pack-03-add-on", + "name": "TS Marketplace: Thompson Corridor Coaches Pack 03 Add-On", + "release_date": "2018-08-29", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "MatrixTrains" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106393" + ], + "created_at": "2026-07-10T10:10:48.498981", + "updated_at": "2026-07-10T10:10:48.498981", + "url": "/v1/games/ts-marketplace-thompson-corridor-coaches-pack-03-add-on" +} diff --git a/site/public/v1/games/ts-marketplace-thompson-suburban-coaches-pack-01-add-on/index.json b/site/public/v1/games/ts-marketplace-thompson-suburban-coaches-pack-01-add-on/index.json new file mode 100644 index 000000000000..e8805d5123d0 --- /dev/null +++ b/site/public/v1/games/ts-marketplace-thompson-suburban-coaches-pack-01-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 161653, + "slug": "ts-marketplace-thompson-suburban-coaches-pack-01-add-on", + "name": "TS Marketplace: Thompson Suburban Coaches Pack 01 Add-On", + "release_date": "2016-11-22", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "MatrixTrains" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106298" + ], + "created_at": "2026-07-10T10:10:48.498981", + "updated_at": "2026-07-10T10:10:48.498981", + "url": "/v1/games/ts-marketplace-thompson-suburban-coaches-pack-01-add-on" +} diff --git a/site/public/v1/games/ts-marketplace-thompson-suburban-coaches-pack-02-add-on/index.json b/site/public/v1/games/ts-marketplace-thompson-suburban-coaches-pack-02-add-on/index.json new file mode 100644 index 000000000000..a64e5c24d95e --- /dev/null +++ b/site/public/v1/games/ts-marketplace-thompson-suburban-coaches-pack-02-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 161654, + "slug": "ts-marketplace-thompson-suburban-coaches-pack-02-add-on", + "name": "TS Marketplace: Thompson Suburban Coaches Pack 02 Add-On", + "release_date": "2016-11-22", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "MatrixTrains" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106299" + ], + "created_at": "2026-07-10T10:10:48.498981", + "updated_at": "2026-07-10T10:10:48.498981", + "url": "/v1/games/ts-marketplace-thompson-suburban-coaches-pack-02-add-on" +} diff --git a/site/public/v1/games/ts-marketplace-three-country-corner-scenario-pack-01-add-on/index.json b/site/public/v1/games/ts-marketplace-three-country-corner-scenario-pack-01-add-on/index.json new file mode 100644 index 000000000000..48660a9639d8 --- /dev/null +++ b/site/public/v1/games/ts-marketplace-three-country-corner-scenario-pack-01-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 161655, + "slug": "ts-marketplace-three-country-corner-scenario-pack-01-add-on", + "name": "TS Marketplace: Three Country Corner Scenario Pack 01 Add-On", + "release_date": "2016-12-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Skyhook Games Studio" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106292" + ], + "created_at": "2026-07-10T10:10:48.498981", + "updated_at": "2026-07-10T10:10:48.498981", + "url": "/v1/games/ts-marketplace-three-country-corner-scenario-pack-01-add-on" +} diff --git a/site/public/v1/games/ts-marketplace-union-pacific-scenario-pack-01-add-on/index.json b/site/public/v1/games/ts-marketplace-union-pacific-scenario-pack-01-add-on/index.json new file mode 100644 index 000000000000..8aafdc56e806 --- /dev/null +++ b/site/public/v1/games/ts-marketplace-union-pacific-scenario-pack-01-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 161656, + "slug": "ts-marketplace-union-pacific-scenario-pack-01-add-on", + "name": "TS Marketplace: Union Pacific Scenario Pack 01 Add-On", + "release_date": "2019-02-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "High Iron Simulations" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106452" + ], + "created_at": "2026-07-10T10:10:48.499975", + "updated_at": "2026-07-10T10:10:48.499975", + "url": "/v1/games/ts-marketplace-union-pacific-scenario-pack-01-add-on" +} diff --git a/site/public/v1/games/ts-marketplace-union-pacific-scenario-pack-02-add-on/index.json b/site/public/v1/games/ts-marketplace-union-pacific-scenario-pack-02-add-on/index.json new file mode 100644 index 000000000000..7447093a9c62 --- /dev/null +++ b/site/public/v1/games/ts-marketplace-union-pacific-scenario-pack-02-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 161657, + "slug": "ts-marketplace-union-pacific-scenario-pack-02-add-on", + "name": "TS Marketplace: Union Pacific Scenario Pack 02 Add-On", + "release_date": "2019-04-17", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "High Iron Simulations" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106453" + ], + "created_at": "2026-07-10T10:10:48.499975", + "updated_at": "2026-07-10T10:10:48.499975", + "url": "/v1/games/ts-marketplace-union-pacific-scenario-pack-02-add-on" +} diff --git a/site/public/v1/games/ts-marketplace-vga-vka-wagon-pack-add-on/index.json b/site/public/v1/games/ts-marketplace-vga-vka-wagon-pack-add-on/index.json new file mode 100644 index 000000000000..8378ca2e01e6 --- /dev/null +++ b/site/public/v1/games/ts-marketplace-vga-vka-wagon-pack-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 161658, + "slug": "ts-marketplace-vga-vka-wagon-pack-add-on", + "name": "TS Marketplace: VGA/VKA Wagon Pack Add-On", + "release_date": "2017-02-10", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Just Trains" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106454" + ], + "created_at": "2026-07-10T10:10:48.499975", + "updated_at": "2026-07-10T10:10:48.499975", + "url": "/v1/games/ts-marketplace-vga-vka-wagon-pack-add-on" +} diff --git a/site/public/v1/games/ts-marketplace-weardale-teesdale-scenario-pack-01/index.json b/site/public/v1/games/ts-marketplace-weardale-teesdale-scenario-pack-01/index.json new file mode 100644 index 000000000000..9379d7bfc60d --- /dev/null +++ b/site/public/v1/games/ts-marketplace-weardale-teesdale-scenario-pack-01/index.json @@ -0,0 +1,31 @@ +{ + "id": 161659, + "slug": "ts-marketplace-weardale-teesdale-scenario-pack-01", + "name": "TS Marketplace: Weardale & Teesdale Scenario Pack 01", + "release_date": "2020-03-25", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108105845" + ], + "created_at": "2026-07-10T10:10:48.499975", + "updated_at": "2026-07-10T10:10:48.499975", + "url": "/v1/games/ts-marketplace-weardale-teesdale-scenario-pack-01" +} diff --git a/site/public/v1/games/ts-marketplace-woodhead-electric-railway-in-blue-scenario-pack-01/index.json b/site/public/v1/games/ts-marketplace-woodhead-electric-railway-in-blue-scenario-pack-01/index.json new file mode 100644 index 000000000000..3a3da247f6ac --- /dev/null +++ b/site/public/v1/games/ts-marketplace-woodhead-electric-railway-in-blue-scenario-pack-01/index.json @@ -0,0 +1,33 @@ +{ + "id": 161660, + "slug": "ts-marketplace-woodhead-electric-railway-in-blue-scenario-pack-01", + "name": "TS Marketplace: Woodhead Electric Railway in Blue Scenario Pack 01", + "release_date": "2019-06-05", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Seven Hills Simulations" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106456" + ], + "created_at": "2026-07-10T10:10:48.499975", + "updated_at": "2026-07-10T10:10:48.499975", + "url": "/v1/games/ts-marketplace-woodhead-electric-railway-in-blue-scenario-pack-01" +} diff --git a/site/public/v1/games/ts-marketplace-zacns-wagon-pack-01-add-on/index.json b/site/public/v1/games/ts-marketplace-zacns-wagon-pack-01-add-on/index.json new file mode 100644 index 000000000000..e464573995c4 --- /dev/null +++ b/site/public/v1/games/ts-marketplace-zacns-wagon-pack-01-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 161661, + "slug": "ts-marketplace-zacns-wagon-pack-01-add-on", + "name": "TS Marketplace: Zacns Wagon Pack 01 Add-On", + "release_date": "2017-06-08", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Skyhook Games Studio" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106356" + ], + "created_at": "2026-07-10T10:10:48.500976", + "updated_at": "2026-07-10T10:10:48.500976", + "url": "/v1/games/ts-marketplace-zacns-wagon-pack-01-add-on" +} diff --git a/site/public/v1/games/ts-marketplace-zacns-wagon-pack-02-add-on/index.json b/site/public/v1/games/ts-marketplace-zacns-wagon-pack-02-add-on/index.json new file mode 100644 index 000000000000..a1102d578045 --- /dev/null +++ b/site/public/v1/games/ts-marketplace-zacns-wagon-pack-02-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 161662, + "slug": "ts-marketplace-zacns-wagon-pack-02-add-on", + "name": "TS Marketplace: Zacns Wagon Pack 02 Add-On", + "release_date": "2017-06-08", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Skyhook Games Studio" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106357" + ], + "created_at": "2026-07-10T10:10:48.500976", + "updated_at": "2026-07-10T10:10:48.500976", + "url": "/v1/games/ts-marketplace-zacns-wagon-pack-02-add-on" +} diff --git a/site/public/v1/games/ts-marketplace-zags-pack-01-add-on/index.json b/site/public/v1/games/ts-marketplace-zags-pack-01-add-on/index.json new file mode 100644 index 000000000000..fa140c6ea885 --- /dev/null +++ b/site/public/v1/games/ts-marketplace-zags-pack-01-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 161663, + "slug": "ts-marketplace-zags-pack-01-add-on", + "name": "TS Marketplace: Zags Pack 01 Add-On", + "release_date": "2017-04-05", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Skyhook Games Studio" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106347" + ], + "created_at": "2026-07-10T10:10:48.500976", + "updated_at": "2026-07-10T10:10:48.500976", + "url": "/v1/games/ts-marketplace-zags-pack-01-add-on" +} diff --git a/site/public/v1/games/ts-marketplace-zags-pack-02-add-on/index.json b/site/public/v1/games/ts-marketplace-zags-pack-02-add-on/index.json new file mode 100644 index 000000000000..87e055f00f39 --- /dev/null +++ b/site/public/v1/games/ts-marketplace-zags-pack-02-add-on/index.json @@ -0,0 +1,33 @@ +{ + "id": 161664, + "slug": "ts-marketplace-zags-pack-02-add-on", + "name": "TS Marketplace: Zags Pack 02 Add-On", + "release_date": "2017-04-05", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Skyhook Games Studio" + ], + "publishers": [ + "Dovetail Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108106348" + ], + "created_at": "2026-07-10T10:10:48.500976", + "updated_at": "2026-07-10T10:10:48.500976", + "url": "/v1/games/ts-marketplace-zags-pack-02-add-on" +} diff --git a/site/public/v1/games/tunche-arena/index.json b/site/public/v1/games/tunche-arena/index.json new file mode 100644 index 000000000000..1f740415a6f6 --- /dev/null +++ b/site/public/v1/games/tunche-arena/index.json @@ -0,0 +1,27 @@ +{ + "id": 161819, + "slug": "tunche-arena", + "name": "Tunche: Arena", + "release_date": "2019-01-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q114945084" + ], + "created_at": "2026-07-10T10:10:48.588277", + "updated_at": "2026-07-10T10:10:48.588277", + "url": "/v1/games/tunche-arena" +} diff --git a/site/public/v1/games/tuper-tario-tros/index.json b/site/public/v1/games/tuper-tario-tros/index.json new file mode 100644 index 000000000000..7dc3181cca26 --- /dev/null +++ b/site/public/v1/games/tuper-tario-tros/index.json @@ -0,0 +1,33 @@ +{ + "id": 161864, + "slug": "tuper-tario-tros", + "name": "Tuper Tario Tros.", + "release_date": "2009-12-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "web browser" + ], + "genres": [ + "platformer" + ], + "stores": [], + "developers": [ + "Swing Swing Submarine" + ], + "publishers": [ + "Newgrounds" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q15693851" + ], + "created_at": "2026-07-10T10:10:48.625355", + "updated_at": "2026-07-10T10:10:48.625355", + "url": "/v1/games/tuper-tario-tros" +} diff --git a/site/public/v1/games/turbo-1000/index.json b/site/public/v1/games/turbo-1000/index.json new file mode 100644 index 000000000000..e021bae3f0fb --- /dev/null +++ b/site/public/v1/games/turbo-1000/index.json @@ -0,0 +1,25 @@ +{ + "id": 161868, + "slug": "turbo-1000", + "name": "Turbo 1000", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11316578" + ], + "created_at": "2026-07-10T10:10:48.630413", + "updated_at": "2026-07-10T10:10:48.630413", + "url": "/v1/games/turbo-1000" +} diff --git a/site/public/v1/games/turbo-trio/index.json b/site/public/v1/games/turbo-trio/index.json new file mode 100644 index 000000000000..ce18c2463c7f --- /dev/null +++ b/site/public/v1/games/turbo-trio/index.json @@ -0,0 +1,27 @@ +{ + "id": 161931, + "slug": "turbo-trio", + "name": "Turbo Trio", + "release_date": "2009-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Oberon Media" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125589387" + ], + "created_at": "2026-07-10T10:10:48.693271", + "updated_at": "2026-07-10T10:10:48.693271", + "url": "/v1/games/turbo-trio" +} diff --git a/site/public/v1/games/turmoil-q123283103/index.json b/site/public/v1/games/turmoil-q123283103/index.json new file mode 100644 index 000000000000..f6ea397347d5 --- /dev/null +++ b/site/public/v1/games/turmoil-q123283103/index.json @@ -0,0 +1,28 @@ +{ + "id": 161966, + "slug": "turmoil-q123283103", + "name": "Turmoil+", + "release_date": "2023-12-05", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "iPadOS", + "iOS" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123283103" + ], + "created_at": "2026-07-10T10:10:48.703332", + "updated_at": "2026-07-10T10:10:48.703332", + "url": "/v1/games/turmoil-q123283103" +} diff --git a/site/public/v1/games/turmoil-the-heat-is-on/index.json b/site/public/v1/games/turmoil-the-heat-is-on/index.json new file mode 100644 index 000000000000..0bf691c58125 --- /dev/null +++ b/site/public/v1/games/turmoil-the-heat-is-on/index.json @@ -0,0 +1,28 @@ +{ + "id": 161970, + "slug": "turmoil-the-heat-is-on", + "name": "Turmoil - The Heat Is On", + "release_date": "2018-03-21", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113525357" + ], + "created_at": "2026-07-10T10:10:48.704325", + "updated_at": "2026-07-10T10:10:48.704325", + "url": "/v1/games/turmoil-the-heat-is-on" +} diff --git a/site/public/v1/games/turnabout-reclaimed/index.json b/site/public/v1/games/turnabout-reclaimed/index.json new file mode 100644 index 000000000000..793d59a23633 --- /dev/null +++ b/site/public/v1/games/turnabout-reclaimed/index.json @@ -0,0 +1,29 @@ +{ + "id": 161997, + "slug": "turnabout-reclaimed", + "name": "Turnabout Reclaimed", + "release_date": "2013-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Nintendo 3DS" + ], + "genres": [ + "visual novel" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18449504" + ], + "created_at": "2026-07-10T10:10:48.712321", + "updated_at": "2026-07-10T10:10:48.712321", + "url": "/v1/games/turnabout-reclaimed" +} diff --git a/site/public/v1/games/tuxdash/index.json b/site/public/v1/games/tuxdash/index.json new file mode 100644 index 000000000000..82f02babeffe --- /dev/null +++ b/site/public/v1/games/tuxdash/index.json @@ -0,0 +1,27 @@ +{ + "id": 162097, + "slug": "tuxdash", + "name": "tuxdash", + "release_date": "2003-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "puzzle video game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065334" + ], + "created_at": "2026-07-10T10:10:48.740362", + "updated_at": "2026-07-10T10:10:48.740362", + "url": "/v1/games/tuxdash" +} diff --git a/site/public/v1/games/tv-sports-football-1989-nfl-season/index.json b/site/public/v1/games/tv-sports-football-1989-nfl-season/index.json new file mode 100644 index 000000000000..b49505e15802 --- /dev/null +++ b/site/public/v1/games/tv-sports-football-1989-nfl-season/index.json @@ -0,0 +1,29 @@ +{ + "id": 162120, + "slug": "tv-sports-football-1989-nfl-season", + "name": "TV Sports: Football - 1989 NFL Season", + "release_date": "1990-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "American football video game" + ], + "stores": [], + "developers": [], + "publishers": [ + "Freedom Productions" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131406087" + ], + "created_at": "2026-07-10T10:10:48.746270", + "updated_at": "2026-07-10T10:10:48.746270", + "url": "/v1/games/tv-sports-football-1989-nfl-season" +} diff --git a/site/public/v1/games/two-worlds-ii-call-of-the-tenebrae/index.json b/site/public/v1/games/two-worlds-ii-call-of-the-tenebrae/index.json new file mode 100644 index 000000000000..b19d0df216f7 --- /dev/null +++ b/site/public/v1/games/two-worlds-ii-call-of-the-tenebrae/index.json @@ -0,0 +1,28 @@ +{ + "id": 162436, + "slug": "two-worlds-ii-call-of-the-tenebrae", + "name": "Two Worlds II: Call of the Tenebrae", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "role-playing video game", + "action role-playing game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q69522985" + ], + "created_at": "2026-07-10T10:10:48.833022", + "updated_at": "2026-07-10T10:10:48.833022", + "url": "/v1/games/two-worlds-ii-call-of-the-tenebrae" +} diff --git a/site/public/v1/games/two-worlds-tainted-blood/index.json b/site/public/v1/games/two-worlds-tainted-blood/index.json new file mode 100644 index 000000000000..1ccd528a07a2 --- /dev/null +++ b/site/public/v1/games/two-worlds-tainted-blood/index.json @@ -0,0 +1,25 @@ +{ + "id": 162443, + "slug": "two-worlds-tainted-blood", + "name": "Two Worlds: Tainted Blood", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110156360" + ], + "created_at": "2026-07-10T10:10:48.838988", + "updated_at": "2026-07-10T10:10:48.838988", + "url": "/v1/games/two-worlds-tainted-blood" +} diff --git a/site/public/v1/games/two-worlds-the-temptation/index.json b/site/public/v1/games/two-worlds-the-temptation/index.json new file mode 100644 index 000000000000..438df5744515 --- /dev/null +++ b/site/public/v1/games/two-worlds-the-temptation/index.json @@ -0,0 +1,34 @@ +{ + "id": 162445, + "slug": "two-worlds-the-temptation", + "name": "Two Worlds: The Temptation", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "role-playing video game" + ], + "stores": [], + "developers": [ + "Reality Pump Studios" + ], + "publishers": [ + "Akella", + "Zuxxez Entertainment" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110817157" + ], + "created_at": "2026-07-10T10:10:48.841009", + "updated_at": "2026-07-10T10:10:48.841009", + "url": "/v1/games/two-worlds-the-temptation" +} diff --git a/site/public/v1/games/tyrone-soulz-bitch-ass-pussy-mode/index.json b/site/public/v1/games/tyrone-soulz-bitch-ass-pussy-mode/index.json new file mode 100644 index 000000000000..8eb9d93e0fc8 --- /dev/null +++ b/site/public/v1/games/tyrone-soulz-bitch-ass-pussy-mode/index.json @@ -0,0 +1,32 @@ +{ + "id": 162571, + "slug": "tyrone-soulz-bitch-ass-pussy-mode", + "name": "TYRONE SOULZ: Bitch Ass Pussy Mode", + "release_date": "2024-01-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "third-person shooter", + "soulslike", + "satirical video game", + "black comedy video game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124719228" + ], + "created_at": "2026-07-10T10:10:48.893710", + "updated_at": "2026-07-10T10:10:48.893710", + "url": "/v1/games/tyrone-soulz-bitch-ass-pussy-mode" +} diff --git a/site/public/v1/games/tyrone-vs-cops-golden-blicky/index.json b/site/public/v1/games/tyrone-vs-cops-golden-blicky/index.json new file mode 100644 index 000000000000..a8a03a448464 --- /dev/null +++ b/site/public/v1/games/tyrone-vs-cops-golden-blicky/index.json @@ -0,0 +1,32 @@ +{ + "id": 162574, + "slug": "tyrone-vs-cops-golden-blicky", + "name": "Tyrone vs Cops: Golden Blicky", + "release_date": "2022-02-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "action game", + "third-person shooter", + "satirical video game", + "black comedy video game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120174790" + ], + "created_at": "2026-07-10T10:10:48.893710", + "updated_at": "2026-07-10T10:10:48.893710", + "url": "/v1/games/tyrone-vs-cops-golden-blicky" +} diff --git a/site/public/v1/games/tyrquake/index.json b/site/public/v1/games/tyrquake/index.json new file mode 100644 index 000000000000..d629f71e1dd8 --- /dev/null +++ b/site/public/v1/games/tyrquake/index.json @@ -0,0 +1,25 @@ +{ + "id": 162578, + "slug": "tyrquake", + "name": "TyrQuake", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121409813" + ], + "created_at": "2026-07-10T10:10:48.895687", + "updated_at": "2026-07-10T10:10:48.895687", + "url": "/v1/games/tyrquake" +} diff --git a/site/public/v1/games/u-play-online/index.json b/site/public/v1/games/u-play-online/index.json new file mode 100644 index 000000000000..5848482fbe60 --- /dev/null +++ b/site/public/v1/games/u-play-online/index.json @@ -0,0 +1,25 @@ +{ + "id": 162596, + "slug": "u-play-online", + "name": "U-Play Online", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q24228237" + ], + "created_at": "2026-07-10T10:10:48.900710", + "updated_at": "2026-07-10T10:10:48.900710", + "url": "/v1/games/u-play-online" +} diff --git a/site/public/v1/games/uefa-euro-2012/index.json b/site/public/v1/games/uefa-euro-2012/index.json new file mode 100644 index 000000000000..34690b65cb2a --- /dev/null +++ b/site/public/v1/games/uefa-euro-2012/index.json @@ -0,0 +1,35 @@ +{ + "id": 162683, + "slug": "uefa-euro-2012", + "name": "UEFA Euro 2012", + "release_date": "2012-04-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation Portable", + "PlayStation 3", + "Microsoft Windows" + ], + "genres": [ + "association football video game" + ], + "stores": [], + "developers": [ + "EA Vancouver" + ], + "publishers": [ + "EA Sports" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1066943" + ], + "created_at": "2026-07-10T10:10:48.922684", + "updated_at": "2026-07-10T10:10:48.922684", + "url": "/v1/games/uefa-euro-2012" +} diff --git a/site/public/v1/games/uefa-euro-2016-pro-evolution-soccer-2016/index.json b/site/public/v1/games/uefa-euro-2016-pro-evolution-soccer-2016/index.json new file mode 100644 index 000000000000..74bcf6836c29 --- /dev/null +++ b/site/public/v1/games/uefa-euro-2016-pro-evolution-soccer-2016/index.json @@ -0,0 +1,27 @@ +{ + "id": 162684, + "slug": "uefa-euro-2016-pro-evolution-soccer-2016", + "name": "UEFA EURO 2016 / Pro Evolution Soccer 2016", + "release_date": "2016-04-21", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "association football video game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q87410947" + ], + "created_at": "2026-07-10T10:10:48.922684", + "updated_at": "2026-07-10T10:10:48.922684", + "url": "/v1/games/uefa-euro-2016-pro-evolution-soccer-2016" +} diff --git a/site/public/v1/games/ufo-50/index.json b/site/public/v1/games/ufo-50/index.json new file mode 100644 index 000000000000..5e34e6518449 --- /dev/null +++ b/site/public/v1/games/ufo-50/index.json @@ -0,0 +1,31 @@ +{ + "id": 162701, + "slug": "ufo-50", + "name": "UFO 50", + "release_date": "2024-09-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Mossmouth" + ], + "publishers": [ + "Mossmouth" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116986156" + ], + "created_at": "2026-07-10T10:10:48.927697", + "updated_at": "2026-07-10T10:10:48.927697", + "url": "/v1/games/ufo-50" +} diff --git a/site/public/v1/games/ufo-enemy-unknown-x-com-terror-from-the-deep/index.json b/site/public/v1/games/ufo-enemy-unknown-x-com-terror-from-the-deep/index.json new file mode 100644 index 000000000000..339fb3ba4849 --- /dev/null +++ b/site/public/v1/games/ufo-enemy-unknown-x-com-terror-from-the-deep/index.json @@ -0,0 +1,25 @@ +{ + "id": 162712, + "slug": "ufo-enemy-unknown-x-com-terror-from-the-deep", + "name": "UFO: Enemy Unknown / X-COM: Terror from the Deep", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136437185" + ], + "created_at": "2026-07-10T10:10:48.929691", + "updated_at": "2026-07-10T10:10:48.929691", + "url": "/v1/games/ufo-enemy-unknown-x-com-terror-from-the-deep" +} diff --git a/site/public/v1/games/uganda-know-de-way-photo-album/index.json b/site/public/v1/games/uganda-know-de-way-photo-album/index.json new file mode 100644 index 000000000000..480cd1744ba9 --- /dev/null +++ b/site/public/v1/games/uganda-know-de-way-photo-album/index.json @@ -0,0 +1,34 @@ +{ + "id": 162747, + "slug": "uganda-know-de-way-photo-album", + "name": "Uganda know de way – Photo Album", + "release_date": "2018-04-26", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "action-adventure game", + "casual game" + ], + "stores": [], + "developers": [ + "Selo tech.corp." + ], + "publishers": [ + "Selo tech.corp." + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q129664847" + ], + "created_at": "2026-07-10T10:10:48.939727", + "updated_at": "2026-07-10T10:10:48.939727", + "url": "/v1/games/uganda-know-de-way-photo-album" +} diff --git a/site/public/v1/games/uh-1h-argo-campaign/index.json b/site/public/v1/games/uh-1h-argo-campaign/index.json new file mode 100644 index 000000000000..31513a09d85e --- /dev/null +++ b/site/public/v1/games/uh-1h-argo-campaign/index.json @@ -0,0 +1,29 @@ +{ + "id": 162759, + "slug": "uh-1h-argo-campaign", + "name": "UH-1H: Argo Campaign", + "release_date": "2017-10-20", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Eagle Dynamics" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121097565" + ], + "created_at": "2026-07-10T10:10:48.946671", + "updated_at": "2026-07-10T10:10:48.946671", + "url": "/v1/games/uh-1h-argo-campaign" +} diff --git a/site/public/v1/games/ultima-collection/index.json b/site/public/v1/games/ultima-collection/index.json new file mode 100644 index 000000000000..a33aca42bc4f --- /dev/null +++ b/site/public/v1/games/ultima-collection/index.json @@ -0,0 +1,25 @@ +{ + "id": 162806, + "slug": "ultima-collection", + "name": "Ultima Collection", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124877802" + ], + "created_at": "2026-07-10T10:10:48.965704", + "updated_at": "2026-07-10T10:10:48.965704", + "url": "/v1/games/ultima-collection" +} diff --git a/site/public/v1/games/ultima-online-age-of-shadows/index.json b/site/public/v1/games/ultima-online-age-of-shadows/index.json new file mode 100644 index 000000000000..7602ebd8226d --- /dev/null +++ b/site/public/v1/games/ultima-online-age-of-shadows/index.json @@ -0,0 +1,33 @@ +{ + "id": 162816, + "slug": "ultima-online-age-of-shadows", + "name": "Ultima Online: Age of Shadows", + "release_date": "2003-02-11", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "massively multiplayer online role-playing game" + ], + "stores": [], + "developers": [ + "Origin Systems" + ], + "publishers": [ + "Electronic Arts" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3547990" + ], + "created_at": "2026-07-10T10:10:48.966703", + "updated_at": "2026-07-10T10:10:48.966703", + "url": "/v1/games/ultima-online-age-of-shadows" +} diff --git a/site/public/v1/games/ultima-online-high-seas/index.json b/site/public/v1/games/ultima-online-high-seas/index.json new file mode 100644 index 000000000000..0dcfa006fcc6 --- /dev/null +++ b/site/public/v1/games/ultima-online-high-seas/index.json @@ -0,0 +1,33 @@ +{ + "id": 162817, + "slug": "ultima-online-high-seas", + "name": "Ultima Online: High Seas", + "release_date": "2010-10-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "massively multiplayer online role-playing game" + ], + "stores": [], + "developers": [ + "Electronic Arts" + ], + "publishers": [ + "Electronic Arts" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2375763" + ], + "created_at": "2026-07-10T10:10:48.967821", + "updated_at": "2026-07-10T10:10:48.967821", + "url": "/v1/games/ultima-online-high-seas" +} diff --git a/site/public/v1/games/ultima-online-lord-blackthorn-s-revenge/index.json b/site/public/v1/games/ultima-online-lord-blackthorn-s-revenge/index.json new file mode 100644 index 000000000000..0f43fc4af92f --- /dev/null +++ b/site/public/v1/games/ultima-online-lord-blackthorn-s-revenge/index.json @@ -0,0 +1,33 @@ +{ + "id": 162819, + "slug": "ultima-online-lord-blackthorn-s-revenge", + "name": "Ultima Online: Lord Blackthorn's Revenge", + "release_date": "2002-02-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "massively multiplayer online role-playing game" + ], + "stores": [], + "developers": [ + "Origin Systems" + ], + "publishers": [ + "Electronic Arts" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3547992" + ], + "created_at": "2026-07-10T10:10:48.967821", + "updated_at": "2026-07-10T10:10:48.967821", + "url": "/v1/games/ultima-online-lord-blackthorn-s-revenge" +} diff --git a/site/public/v1/games/ultima-online-mondain-s-legacy/index.json b/site/public/v1/games/ultima-online-mondain-s-legacy/index.json new file mode 100644 index 000000000000..62aff9a46017 --- /dev/null +++ b/site/public/v1/games/ultima-online-mondain-s-legacy/index.json @@ -0,0 +1,33 @@ +{ + "id": 162820, + "slug": "ultima-online-mondain-s-legacy", + "name": "Ultima Online: Mondain's Legacy", + "release_date": "2005-08-30", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "massively multiplayer online role-playing game" + ], + "stores": [], + "developers": [ + "Electronic Arts" + ], + "publishers": [ + "Electronic Arts" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3547991" + ], + "created_at": "2026-07-10T10:10:48.967821", + "updated_at": "2026-07-10T10:10:48.967821", + "url": "/v1/games/ultima-online-mondain-s-legacy" +} diff --git a/site/public/v1/games/ultima-online-renaissance/index.json b/site/public/v1/games/ultima-online-renaissance/index.json new file mode 100644 index 000000000000..84a695b2e6ac --- /dev/null +++ b/site/public/v1/games/ultima-online-renaissance/index.json @@ -0,0 +1,33 @@ +{ + "id": 162821, + "slug": "ultima-online-renaissance", + "name": "Ultima Online: Renaissance", + "release_date": "2000-04-03", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "massively multiplayer online role-playing game" + ], + "stores": [], + "developers": [ + "Origin Systems" + ], + "publishers": [ + "Electronic Arts" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3547993" + ], + "created_at": "2026-07-10T10:10:48.967821", + "updated_at": "2026-07-10T10:10:48.968789", + "url": "/v1/games/ultima-online-renaissance" +} diff --git a/site/public/v1/games/ultima-online-samurai-empire/index.json b/site/public/v1/games/ultima-online-samurai-empire/index.json new file mode 100644 index 000000000000..bc3822d19642 --- /dev/null +++ b/site/public/v1/games/ultima-online-samurai-empire/index.json @@ -0,0 +1,33 @@ +{ + "id": 162822, + "slug": "ultima-online-samurai-empire", + "name": "Ultima Online: Samurai Empire", + "release_date": "2004-11-02", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "massively multiplayer online role-playing game" + ], + "stores": [], + "developers": [ + "Electronic Arts" + ], + "publishers": [ + "Electronic Arts" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q929319" + ], + "created_at": "2026-07-10T10:10:48.968789", + "updated_at": "2026-07-10T10:10:48.968789", + "url": "/v1/games/ultima-online-samurai-empire" +} diff --git a/site/public/v1/games/ultima-online-stygian-abyss/index.json b/site/public/v1/games/ultima-online-stygian-abyss/index.json new file mode 100644 index 000000000000..3ce7ebf49973 --- /dev/null +++ b/site/public/v1/games/ultima-online-stygian-abyss/index.json @@ -0,0 +1,33 @@ +{ + "id": 162823, + "slug": "ultima-online-stygian-abyss", + "name": "Ultima Online: Stygian Abyss", + "release_date": "2009-09-08", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "massively multiplayer online role-playing game" + ], + "stores": [], + "developers": [ + "Electronic Arts" + ], + "publishers": [ + "Electronic Arts" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3548000" + ], + "created_at": "2026-07-10T10:10:48.969807", + "updated_at": "2026-07-10T10:10:48.969807", + "url": "/v1/games/ultima-online-stygian-abyss" +} diff --git a/site/public/v1/games/ultima-online-the-second-age/index.json b/site/public/v1/games/ultima-online-the-second-age/index.json new file mode 100644 index 000000000000..9e1c12f08d5e --- /dev/null +++ b/site/public/v1/games/ultima-online-the-second-age/index.json @@ -0,0 +1,33 @@ +{ + "id": 162824, + "slug": "ultima-online-the-second-age", + "name": "Ultima Online: The Second Age", + "release_date": "1998-10-31", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "massively multiplayer online role-playing game" + ], + "stores": [], + "developers": [ + "Origin Systems" + ], + "publishers": [ + "Electronic Arts" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3548001" + ], + "created_at": "2026-07-10T10:10:48.969807", + "updated_at": "2026-07-10T10:10:48.969807", + "url": "/v1/games/ultima-online-the-second-age" +} diff --git a/site/public/v1/games/ultima-online-third-dawn/index.json b/site/public/v1/games/ultima-online-third-dawn/index.json new file mode 100644 index 000000000000..001db7037f63 --- /dev/null +++ b/site/public/v1/games/ultima-online-third-dawn/index.json @@ -0,0 +1,33 @@ +{ + "id": 162825, + "slug": "ultima-online-third-dawn", + "name": "Ultima Online: Third Dawn", + "release_date": "2001-03-26", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "massively multiplayer online role-playing game" + ], + "stores": [], + "developers": [ + "Origin Systems" + ], + "publishers": [ + "Electronic Arts" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3547999" + ], + "created_at": "2026-07-10T10:10:48.969807", + "updated_at": "2026-07-10T10:10:48.969807", + "url": "/v1/games/ultima-online-third-dawn" +} diff --git a/site/public/v1/games/ultimate-brain-games-q64427726/index.json b/site/public/v1/games/ultimate-brain-games-q64427726/index.json new file mode 100644 index 000000000000..f3bb122d48d6 --- /dev/null +++ b/site/public/v1/games/ultimate-brain-games-q64427726/index.json @@ -0,0 +1,27 @@ +{ + "id": 162870, + "slug": "ultimate-brain-games-q64427726", + "name": "Ultimate Brain Games", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Atari Jaguar" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q64427726" + ], + "created_at": "2026-07-10T10:10:48.984459", + "updated_at": "2026-07-10T10:10:48.984459", + "url": "/v1/games/ultimate-brain-games-q64427726" +} diff --git a/site/public/v1/games/ultimate-chicken-horse-4-pack/index.json b/site/public/v1/games/ultimate-chicken-horse-4-pack/index.json new file mode 100644 index 000000000000..2f6702833bbe --- /dev/null +++ b/site/public/v1/games/ultimate-chicken-horse-4-pack/index.json @@ -0,0 +1,25 @@ +{ + "id": 162879, + "slug": "ultimate-chicken-horse-4-pack", + "name": "Ultimate Chicken Horse 4 Pack", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q78671516" + ], + "created_at": "2026-07-10T10:10:48.987392", + "updated_at": "2026-07-10T10:10:48.987392", + "url": "/v1/games/ultimate-chicken-horse-4-pack" +} diff --git a/site/public/v1/games/ultimate-nes-remix/index.json b/site/public/v1/games/ultimate-nes-remix/index.json new file mode 100644 index 000000000000..b80d726120ec --- /dev/null +++ b/site/public/v1/games/ultimate-nes-remix/index.json @@ -0,0 +1,27 @@ +{ + "id": 162936, + "slug": "ultimate-nes-remix", + "name": "Ultimate NES Remix", + "release_date": "2014-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Nintendo 3DS" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q21086294" + ], + "created_at": "2026-07-10T10:10:49.000475", + "updated_at": "2026-07-10T10:10:49.000475", + "url": "/v1/games/ultimate-nes-remix" +} diff --git a/site/public/v1/games/ultimate-quiz-ii-the-movies-data-disk/index.json b/site/public/v1/games/ultimate-quiz-ii-the-movies-data-disk/index.json new file mode 100644 index 000000000000..379af53acf8e --- /dev/null +++ b/site/public/v1/games/ultimate-quiz-ii-the-movies-data-disk/index.json @@ -0,0 +1,25 @@ +{ + "id": 162952, + "slug": "ultimate-quiz-ii-the-movies-data-disk", + "name": "Ultimate Quiz II, The: Movies Data Disk", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126185470" + ], + "created_at": "2026-07-10T10:10:49.005624", + "updated_at": "2026-07-10T10:10:49.005624", + "url": "/v1/games/ultimate-quiz-ii-the-movies-data-disk" +} diff --git a/site/public/v1/games/ultimate-quiz-ii-the-pop-music-data-disk/index.json b/site/public/v1/games/ultimate-quiz-ii-the-pop-music-data-disk/index.json new file mode 100644 index 000000000000..f3a22855ac4e --- /dev/null +++ b/site/public/v1/games/ultimate-quiz-ii-the-pop-music-data-disk/index.json @@ -0,0 +1,25 @@ +{ + "id": 162953, + "slug": "ultimate-quiz-ii-the-pop-music-data-disk", + "name": "Ultimate Quiz II, The: Pop Music Data Disk", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126185933" + ], + "created_at": "2026-07-10T10:10:49.006552", + "updated_at": "2026-07-10T10:10:49.006552", + "url": "/v1/games/ultimate-quiz-ii-the-pop-music-data-disk" +} diff --git a/site/public/v1/games/ultimate-quiz-ii-the-pot-luck-data-disk-1/index.json b/site/public/v1/games/ultimate-quiz-ii-the-pot-luck-data-disk-1/index.json new file mode 100644 index 000000000000..2679a7b7fbb3 --- /dev/null +++ b/site/public/v1/games/ultimate-quiz-ii-the-pot-luck-data-disk-1/index.json @@ -0,0 +1,25 @@ +{ + "id": 162954, + "slug": "ultimate-quiz-ii-the-pot-luck-data-disk-1", + "name": "Ultimate Quiz II, The: Pot Luck Data Disk 1", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126185471" + ], + "created_at": "2026-07-10T10:10:49.006552", + "updated_at": "2026-07-10T10:10:49.006552", + "url": "/v1/games/ultimate-quiz-ii-the-pot-luck-data-disk-1" +} diff --git a/site/public/v1/games/ultimate-quiz-ii-the-pot-luck-data-disk-2/index.json b/site/public/v1/games/ultimate-quiz-ii-the-pot-luck-data-disk-2/index.json new file mode 100644 index 000000000000..627a63661cd6 --- /dev/null +++ b/site/public/v1/games/ultimate-quiz-ii-the-pot-luck-data-disk-2/index.json @@ -0,0 +1,25 @@ +{ + "id": 162955, + "slug": "ultimate-quiz-ii-the-pot-luck-data-disk-2", + "name": "Ultimate Quiz II, The: Pot Luck Data Disk 2", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126185472" + ], + "created_at": "2026-07-10T10:10:49.006552", + "updated_at": "2026-07-10T10:10:49.006552", + "url": "/v1/games/ultimate-quiz-ii-the-pot-luck-data-disk-2" +} diff --git a/site/public/v1/games/ultimate-quiz-ii-the-sports-data-disk/index.json b/site/public/v1/games/ultimate-quiz-ii-the-sports-data-disk/index.json new file mode 100644 index 000000000000..2677fd07017e --- /dev/null +++ b/site/public/v1/games/ultimate-quiz-ii-the-sports-data-disk/index.json @@ -0,0 +1,25 @@ +{ + "id": 162956, + "slug": "ultimate-quiz-ii-the-sports-data-disk", + "name": "Ultimate Quiz II, The: Sports Data Disk", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126185473" + ], + "created_at": "2026-07-10T10:10:49.007528", + "updated_at": "2026-07-10T10:10:49.007528", + "url": "/v1/games/ultimate-quiz-ii-the-sports-data-disk" +} diff --git a/site/public/v1/games/ultimate-shooting-collection/index.json b/site/public/v1/games/ultimate-shooting-collection/index.json new file mode 100644 index 000000000000..920fb6f33620 --- /dev/null +++ b/site/public/v1/games/ultimate-shooting-collection/index.json @@ -0,0 +1,33 @@ +{ + "id": 162970, + "slug": "ultimate-shooting-collection", + "name": "Ultimate Shooting Collection", + "release_date": "2008-04-10", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Wii" + ], + "genres": [ + "shoot 'em up" + ], + "stores": [], + "developers": [ + "Milestone" + ], + "publishers": [ + "Milestone" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7880242" + ], + "created_at": "2026-07-10T10:10:49.011166", + "updated_at": "2026-07-10T10:10:49.011166", + "url": "/v1/games/ultimate-shooting-collection" +} diff --git a/site/public/v1/games/ultimate-wilds/index.json b/site/public/v1/games/ultimate-wilds/index.json new file mode 100644 index 000000000000..5bdc26b587d1 --- /dev/null +++ b/site/public/v1/games/ultimate-wilds/index.json @@ -0,0 +1,25 @@ +{ + "id": 163007, + "slug": "ultimate-wilds", + "name": "Ultimate Wilds", + "release_date": "2013-04-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112582110" + ], + "created_at": "2026-07-10T10:10:49.021164", + "updated_at": "2026-07-10T10:10:49.021164", + "url": "/v1/games/ultimate-wilds" +} diff --git a/site/public/v1/games/ultrakill-prelude/index.json b/site/public/v1/games/ultrakill-prelude/index.json new file mode 100644 index 000000000000..4c871c1dba47 --- /dev/null +++ b/site/public/v1/games/ultrakill-prelude/index.json @@ -0,0 +1,27 @@ +{ + "id": 163090, + "slug": "ultrakill-prelude", + "name": "ULTRAKILL Prelude", + "release_date": "2019-08-30", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130723153" + ], + "created_at": "2026-07-10T10:10:49.044161", + "updated_at": "2026-07-10T10:10:49.044161", + "url": "/v1/games/ultrakill-prelude" +} diff --git a/site/public/v1/games/umineko-no-naku-koro-ni-chiru-episode-5-end-of-the-golden-witch/index.json b/site/public/v1/games/umineko-no-naku-koro-ni-chiru-episode-5-end-of-the-golden-witch/index.json new file mode 100644 index 000000000000..5c8a0bbf356b --- /dev/null +++ b/site/public/v1/games/umineko-no-naku-koro-ni-chiru-episode-5-end-of-the-golden-witch/index.json @@ -0,0 +1,31 @@ +{ + "id": 163182, + "slug": "umineko-no-naku-koro-ni-chiru-episode-5-end-of-the-golden-witch", + "name": "Umineko no Naku Koro ni Chiru Episode 5: End of the Golden Witch", + "release_date": "2009-08-15", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "sound novel" + ], + "stores": [], + "developers": [ + "07th Expansion" + ], + "publishers": [ + "07th Expansion" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11151334" + ], + "created_at": "2026-07-10T10:10:49.068231", + "updated_at": "2026-07-10T10:10:49.068231", + "url": "/v1/games/umineko-no-naku-koro-ni-chiru-episode-5-end-of-the-golden-witch" +} diff --git a/site/public/v1/games/umineko-no-naku-koro-ni-chiru-episode-6-dawn-of-the-golden-witch/index.json b/site/public/v1/games/umineko-no-naku-koro-ni-chiru-episode-6-dawn-of-the-golden-witch/index.json new file mode 100644 index 000000000000..706814865332 --- /dev/null +++ b/site/public/v1/games/umineko-no-naku-koro-ni-chiru-episode-6-dawn-of-the-golden-witch/index.json @@ -0,0 +1,31 @@ +{ + "id": 163183, + "slug": "umineko-no-naku-koro-ni-chiru-episode-6-dawn-of-the-golden-witch", + "name": "Umineko no Naku Koro ni Chiru Episode 6: Dawn of the Golden Witch", + "release_date": "2009-12-31", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "sound novel" + ], + "stores": [], + "developers": [ + "07th Expansion" + ], + "publishers": [ + "07th Expansion" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11151336" + ], + "created_at": "2026-07-10T10:10:49.068231", + "updated_at": "2026-07-10T10:10:49.068231", + "url": "/v1/games/umineko-no-naku-koro-ni-chiru-episode-6-dawn-of-the-golden-witch" +} diff --git a/site/public/v1/games/umineko-no-naku-koro-ni-chiru-episode-7-requiem-of-the-golden-witch/index.json b/site/public/v1/games/umineko-no-naku-koro-ni-chiru-episode-7-requiem-of-the-golden-witch/index.json new file mode 100644 index 000000000000..a46f34ab4259 --- /dev/null +++ b/site/public/v1/games/umineko-no-naku-koro-ni-chiru-episode-7-requiem-of-the-golden-witch/index.json @@ -0,0 +1,31 @@ +{ + "id": 163184, + "slug": "umineko-no-naku-koro-ni-chiru-episode-7-requiem-of-the-golden-witch", + "name": "Umineko no Naku Koro ni Chiru Episode 7: Requiem of the Golden Witch", + "release_date": "2010-08-14", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "sound novel" + ], + "stores": [], + "developers": [ + "07th Expansion" + ], + "publishers": [ + "07th Expansion" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11151340" + ], + "created_at": "2026-07-10T10:10:49.069242", + "updated_at": "2026-07-10T10:10:49.069242", + "url": "/v1/games/umineko-no-naku-koro-ni-chiru-episode-7-requiem-of-the-golden-witch" +} diff --git a/site/public/v1/games/umineko-no-naku-koro-ni-chiru-episode-8-twilight-of-the-golden-witch/index.json b/site/public/v1/games/umineko-no-naku-koro-ni-chiru-episode-8-twilight-of-the-golden-witch/index.json new file mode 100644 index 000000000000..7603be0d19ad --- /dev/null +++ b/site/public/v1/games/umineko-no-naku-koro-ni-chiru-episode-8-twilight-of-the-golden-witch/index.json @@ -0,0 +1,31 @@ +{ + "id": 163185, + "slug": "umineko-no-naku-koro-ni-chiru-episode-8-twilight-of-the-golden-witch", + "name": "Umineko no Naku Koro ni Chiru Episode 8: Twilight of the Golden Witch", + "release_date": "2010-12-31", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "sound novel" + ], + "stores": [], + "developers": [ + "07th Expansion" + ], + "publishers": [ + "07th Expansion" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11151341" + ], + "created_at": "2026-07-10T10:10:49.069242", + "updated_at": "2026-07-10T10:10:49.069242", + "url": "/v1/games/umineko-no-naku-koro-ni-chiru-episode-8-twilight-of-the-golden-witch" +} diff --git a/site/public/v1/games/umineko-no-naku-koro-ni-chiru/index.json b/site/public/v1/games/umineko-no-naku-koro-ni-chiru/index.json new file mode 100644 index 000000000000..12c572bcc898 --- /dev/null +++ b/site/public/v1/games/umineko-no-naku-koro-ni-chiru/index.json @@ -0,0 +1,27 @@ +{ + "id": 163186, + "slug": "umineko-no-naku-koro-ni-chiru", + "name": "Umineko no Naku Koro ni Chiru", + "release_date": "2010-12-31", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "sound novel" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11260738" + ], + "created_at": "2026-07-10T10:10:49.069242", + "updated_at": "2026-07-10T10:10:49.069242", + "url": "/v1/games/umineko-no-naku-koro-ni-chiru" +} diff --git a/site/public/v1/games/umineko-no-naku-koro-ni-episode-1-legend-of-the-golden-witch/index.json b/site/public/v1/games/umineko-no-naku-koro-ni-episode-1-legend-of-the-golden-witch/index.json new file mode 100644 index 000000000000..5c7d41097e92 --- /dev/null +++ b/site/public/v1/games/umineko-no-naku-koro-ni-episode-1-legend-of-the-golden-witch/index.json @@ -0,0 +1,31 @@ +{ + "id": 163187, + "slug": "umineko-no-naku-koro-ni-episode-1-legend-of-the-golden-witch", + "name": "Umineko no Naku Koro ni Episode 1: Legend of the Golden Witch", + "release_date": "2007-08-17", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "sound novel" + ], + "stores": [], + "developers": [ + "07th Expansion" + ], + "publishers": [ + "07th Expansion" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11260736" + ], + "created_at": "2026-07-10T10:10:49.069242", + "updated_at": "2026-07-10T10:10:49.069242", + "url": "/v1/games/umineko-no-naku-koro-ni-episode-1-legend-of-the-golden-witch" +} diff --git a/site/public/v1/games/umineko-no-naku-koro-ni-episode-2-turn-of-the-golden-witch/index.json b/site/public/v1/games/umineko-no-naku-koro-ni-episode-2-turn-of-the-golden-witch/index.json new file mode 100644 index 000000000000..822d69eefe05 --- /dev/null +++ b/site/public/v1/games/umineko-no-naku-koro-ni-episode-2-turn-of-the-golden-witch/index.json @@ -0,0 +1,31 @@ +{ + "id": 163188, + "slug": "umineko-no-naku-koro-ni-episode-2-turn-of-the-golden-witch", + "name": "Umineko no Naku Koro ni Episode 2: Turn of the Golden Witch", + "release_date": "2007-12-31", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "sound novel" + ], + "stores": [], + "developers": [ + "07th Expansion" + ], + "publishers": [ + "07th Expansion" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11151135" + ], + "created_at": "2026-07-10T10:10:49.070229", + "updated_at": "2026-07-10T10:10:49.070229", + "url": "/v1/games/umineko-no-naku-koro-ni-episode-2-turn-of-the-golden-witch" +} diff --git a/site/public/v1/games/umineko-no-naku-koro-ni-episode-3-banquet-of-the-golden-witch/index.json b/site/public/v1/games/umineko-no-naku-koro-ni-episode-3-banquet-of-the-golden-witch/index.json new file mode 100644 index 000000000000..7de85c267ba6 --- /dev/null +++ b/site/public/v1/games/umineko-no-naku-koro-ni-episode-3-banquet-of-the-golden-witch/index.json @@ -0,0 +1,31 @@ +{ + "id": 163189, + "slug": "umineko-no-naku-koro-ni-episode-3-banquet-of-the-golden-witch", + "name": "Umineko no Naku Koro ni Episode 3: Banquet of the Golden Witch", + "release_date": "2008-08-16", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "sound novel" + ], + "stores": [], + "developers": [ + "07th Expansion" + ], + "publishers": [ + "07th Expansion" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11151136" + ], + "created_at": "2026-07-10T10:10:49.070229", + "updated_at": "2026-07-10T10:10:49.070229", + "url": "/v1/games/umineko-no-naku-koro-ni-episode-3-banquet-of-the-golden-witch" +} diff --git a/site/public/v1/games/umineko-no-naku-koro-ni-episode-4-alliance-of-the-golden-witch/index.json b/site/public/v1/games/umineko-no-naku-koro-ni-episode-4-alliance-of-the-golden-witch/index.json new file mode 100644 index 000000000000..10bd3f339fe1 --- /dev/null +++ b/site/public/v1/games/umineko-no-naku-koro-ni-episode-4-alliance-of-the-golden-witch/index.json @@ -0,0 +1,31 @@ +{ + "id": 163190, + "slug": "umineko-no-naku-koro-ni-episode-4-alliance-of-the-golden-witch", + "name": "Umineko no Naku Koro ni Episode 4: Alliance of the Golden Witch", + "release_date": "2008-12-29", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "sound novel" + ], + "stores": [], + "developers": [ + "07th Expansion" + ], + "publishers": [ + "07th Expansion" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11151332" + ], + "created_at": "2026-07-10T10:10:49.070229", + "updated_at": "2026-07-10T10:10:49.070229", + "url": "/v1/games/umineko-no-naku-koro-ni-episode-4-alliance-of-the-golden-witch" +} diff --git a/site/public/v1/games/umurangi-generation-special-edition/index.json b/site/public/v1/games/umurangi-generation-special-edition/index.json new file mode 100644 index 000000000000..949aea9c3a55 --- /dev/null +++ b/site/public/v1/games/umurangi-generation-special-edition/index.json @@ -0,0 +1,32 @@ +{ + "id": 163205, + "slug": "umurangi-generation-special-edition", + "name": "Umurangi Generation: Special Edition", + "release_date": "2022-05-17", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Origame Digital" + ], + "publishers": [ + "Playism" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112246310" + ], + "created_at": "2026-07-10T10:10:49.074252", + "updated_at": "2026-07-10T10:10:49.074252", + "url": "/v1/games/umurangi-generation-special-edition" +} diff --git a/site/public/v1/games/unbreakable-kimmy-schmidt-kimmy-vs-the-reverend/index.json b/site/public/v1/games/unbreakable-kimmy-schmidt-kimmy-vs-the-reverend/index.json new file mode 100644 index 000000000000..ecefba60d078 --- /dev/null +++ b/site/public/v1/games/unbreakable-kimmy-schmidt-kimmy-vs-the-reverend/index.json @@ -0,0 +1,28 @@ +{ + "id": 163259, + "slug": "unbreakable-kimmy-schmidt-kimmy-vs-the-reverend", + "name": "Unbreakable Kimmy Schmidt: Kimmy vs. the Reverend", + "release_date": "2020-05-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "comedy film", + "interactive film" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q98708760" + ], + "created_at": "2026-07-10T10:10:49.122098", + "updated_at": "2026-07-10T10:10:49.122098", + "url": "/v1/games/unbreakable-kimmy-schmidt-kimmy-vs-the-reverend" +} diff --git a/site/public/v1/games/uncharted-3-drake-s-deception-game-of-the-year-edition/index.json b/site/public/v1/games/uncharted-3-drake-s-deception-game-of-the-year-edition/index.json new file mode 100644 index 000000000000..df104926380c --- /dev/null +++ b/site/public/v1/games/uncharted-3-drake-s-deception-game-of-the-year-edition/index.json @@ -0,0 +1,25 @@ +{ + "id": 163282, + "slug": "uncharted-3-drake-s-deception-game-of-the-year-edition", + "name": "Uncharted 3: Drake's Deception - Game of the Year Edition", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107424329" + ], + "created_at": "2026-07-10T10:10:49.128098", + "updated_at": "2026-07-10T10:10:49.128098", + "url": "/v1/games/uncharted-3-drake-s-deception-game-of-the-year-edition" +} diff --git a/site/public/v1/games/uncharted-legacy-of-thieves-collection/index.json b/site/public/v1/games/uncharted-legacy-of-thieves-collection/index.json new file mode 100644 index 000000000000..53ec086e64fc --- /dev/null +++ b/site/public/v1/games/uncharted-legacy-of-thieves-collection/index.json @@ -0,0 +1,36 @@ +{ + "id": 163291, + "slug": "uncharted-legacy-of-thieves-collection", + "name": "Uncharted: Legacy of Thieves Collection", + "release_date": "2022-01-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 5", + "Microsoft Windows" + ], + "genres": [ + "action-adventure game" + ], + "stores": [], + "developers": [ + "Iron Galaxy Studios", + "Naughty Dog" + ], + "publishers": [ + "Sony Interactive Entertainment", + "PlayStation PC LLC" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108482649" + ], + "created_at": "2026-07-10T10:10:49.130097", + "updated_at": "2026-07-10T10:10:49.130097", + "url": "/v1/games/uncharted-legacy-of-thieves-collection" +} diff --git a/site/public/v1/games/under-siege-q57974041/index.json b/site/public/v1/games/under-siege-q57974041/index.json new file mode 100644 index 000000000000..1ed46fc7b40c --- /dev/null +++ b/site/public/v1/games/under-siege-q57974041/index.json @@ -0,0 +1,25 @@ +{ + "id": 163470, + "slug": "under-siege-q57974041", + "name": "Under Siege", + "release_date": "2012-08-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q57974041" + ], + "created_at": "2026-07-10T10:10:49.177182", + "updated_at": "2026-07-10T10:10:49.177182", + "url": "/v1/games/under-siege-q57974041" +} diff --git a/site/public/v1/games/under-the-jolly-roger-complete-edition/index.json b/site/public/v1/games/under-the-jolly-roger-complete-edition/index.json new file mode 100644 index 000000000000..9427652d09f2 --- /dev/null +++ b/site/public/v1/games/under-the-jolly-roger-complete-edition/index.json @@ -0,0 +1,31 @@ +{ + "id": 163487, + "slug": "under-the-jolly-roger-complete-edition", + "name": "Under the Jolly Roger Complete Edition", + "release_date": "2022-05-23", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S" + ], + "genres": [], + "stores": [], + "developers": [ + "Lion's Shade" + ], + "publishers": [ + "HeroCraft" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112943212" + ], + "created_at": "2026-07-10T10:10:49.182221", + "updated_at": "2026-07-10T10:10:49.182221", + "url": "/v1/games/under-the-jolly-roger-complete-edition" +} diff --git a/site/public/v1/games/unfinished-sarge-game-demo/index.json b/site/public/v1/games/unfinished-sarge-game-demo/index.json new file mode 100644 index 000000000000..e85f68888788 --- /dev/null +++ b/site/public/v1/games/unfinished-sarge-game-demo/index.json @@ -0,0 +1,31 @@ +{ + "id": 163728, + "slug": "unfinished-sarge-game-demo", + "name": "Unfinished Sarge Game Demo", + "release_date": "2019-05-15", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "web browser" + ], + "genres": [ + "platformer" + ], + "stores": [], + "developers": [ + "Flipline Studios" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125506000" + ], + "created_at": "2026-07-10T10:10:49.246355", + "updated_at": "2026-07-10T10:10:49.246355", + "url": "/v1/games/unfinished-sarge-game-demo" +} diff --git a/site/public/v1/games/univers-1-la-compil-universelle/index.json b/site/public/v1/games/univers-1-la-compil-universelle/index.json new file mode 100644 index 000000000000..a6f37f7fd8a8 --- /dev/null +++ b/site/public/v1/games/univers-1-la-compil-universelle/index.json @@ -0,0 +1,25 @@ +{ + "id": 163877, + "slug": "univers-1-la-compil-universelle", + "name": "Univers 1 - La Compil' Universelle", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126188266" + ], + "created_at": "2026-07-10T10:10:49.317117", + "updated_at": "2026-07-10T10:10:49.317117", + "url": "/v1/games/univers-1-la-compil-universelle" +} diff --git a/site/public/v1/games/unlimited-saga-collector-s-edition/index.json b/site/public/v1/games/unlimited-saga-collector-s-edition/index.json new file mode 100644 index 000000000000..df4c6d6a0024 --- /dev/null +++ b/site/public/v1/games/unlimited-saga-collector-s-edition/index.json @@ -0,0 +1,25 @@ +{ + "id": 163998, + "slug": "unlimited-saga-collector-s-edition", + "name": "Unlimited Saga: Collector's Edition", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q101552182" + ], + "created_at": "2026-07-10T10:10:49.350115", + "updated_at": "2026-07-10T10:10:49.350115", + "url": "/v1/games/unlimited-saga-collector-s-edition" +} diff --git a/site/public/v1/games/unlockable-downloadable-content/index.json b/site/public/v1/games/unlockable-downloadable-content/index.json new file mode 100644 index 000000000000..037d7c600b66 --- /dev/null +++ b/site/public/v1/games/unlockable-downloadable-content/index.json @@ -0,0 +1,25 @@ +{ + "id": 164019, + "slug": "unlockable-downloadable-content", + "name": "unlockable downloadable content", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131405925" + ], + "created_at": "2026-07-10T10:10:49.356114", + "updated_at": "2026-07-10T10:10:49.356114", + "url": "/v1/games/unlockable-downloadable-content" +} diff --git a/site/public/v1/games/unlockable-pack/index.json b/site/public/v1/games/unlockable-pack/index.json new file mode 100644 index 000000000000..578015fd500e --- /dev/null +++ b/site/public/v1/games/unlockable-pack/index.json @@ -0,0 +1,27 @@ +{ + "id": 164020, + "slug": "unlockable-pack", + "name": "Unlockable Pack", + "release_date": "2012-08-14", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60616769" + ], + "created_at": "2026-07-10T10:10:49.356114", + "updated_at": "2026-07-10T10:10:49.356114", + "url": "/v1/games/unlockable-pack" +} diff --git a/site/public/v1/games/unnamed-half-life-alyx-sequel/index.json b/site/public/v1/games/unnamed-half-life-alyx-sequel/index.json new file mode 100644 index 000000000000..24aafc9b8964 --- /dev/null +++ b/site/public/v1/games/unnamed-half-life-alyx-sequel/index.json @@ -0,0 +1,25 @@ +{ + "id": 164049, + "slug": "unnamed-half-life-alyx-sequel", + "name": "Unnamed Half-Life Alyx sequel", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111165120" + ], + "created_at": "2026-07-10T10:10:49.364112", + "updated_at": "2026-07-10T10:10:49.364112", + "url": "/v1/games/unnamed-half-life-alyx-sequel" +} diff --git a/site/public/v1/games/unreal-mission-pack-return-to-na-pali/index.json b/site/public/v1/games/unreal-mission-pack-return-to-na-pali/index.json new file mode 100644 index 000000000000..2be051ced2f9 --- /dev/null +++ b/site/public/v1/games/unreal-mission-pack-return-to-na-pali/index.json @@ -0,0 +1,33 @@ +{ + "id": 164123, + "slug": "unreal-mission-pack-return-to-na-pali", + "name": "Unreal Mission Pack: Return to Na Pali", + "release_date": "1999-05-31", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter" + ], + "stores": [], + "developers": [ + "Legend Entertainment" + ], + "publishers": [ + "Atari, Inc." + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4052427" + ], + "created_at": "2026-07-10T10:10:49.452757", + "updated_at": "2026-07-10T10:10:49.452757", + "url": "/v1/games/unreal-mission-pack-return-to-na-pali" +} diff --git a/site/public/v1/games/unreal-tournament-game-of-the-year-edition/index.json b/site/public/v1/games/unreal-tournament-game-of-the-year-edition/index.json new file mode 100644 index 000000000000..01f5d399da0b --- /dev/null +++ b/site/public/v1/games/unreal-tournament-game-of-the-year-edition/index.json @@ -0,0 +1,25 @@ +{ + "id": 164132, + "slug": "unreal-tournament-game-of-the-year-edition", + "name": "Unreal Tournament: Game of the Year Edition", + "release_date": "2000-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131934954" + ], + "created_at": "2026-07-10T10:10:49.456652", + "updated_at": "2026-07-10T10:10:49.456652", + "url": "/v1/games/unreal-tournament-game-of-the-year-edition" +} diff --git a/site/public/v1/games/unreal-tournament-q16796730/index.json b/site/public/v1/games/unreal-tournament-q16796730/index.json new file mode 100644 index 000000000000..5d860934009b --- /dev/null +++ b/site/public/v1/games/unreal-tournament-q16796730/index.json @@ -0,0 +1,35 @@ +{ + "id": 164133, + "slug": "unreal-tournament-q16796730", + "name": "Unreal Tournament", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Mac", + "macOS", + "Microsoft Windows" + ], + "genres": [ + "first-person shooter" + ], + "stores": [], + "developers": [ + "Epic Games" + ], + "publishers": [ + "Epic Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16796730" + ], + "created_at": "2026-07-10T10:10:49.457656", + "updated_at": "2026-07-10T10:10:49.457656", + "url": "/v1/games/unreal-tournament-q16796730" +} diff --git a/site/public/v1/games/unsolved-riddles/index.json b/site/public/v1/games/unsolved-riddles/index.json new file mode 100644 index 000000000000..9f0d96bf41c7 --- /dev/null +++ b/site/public/v1/games/unsolved-riddles/index.json @@ -0,0 +1,31 @@ +{ + "id": 164196, + "slug": "unsolved-riddles", + "name": "Unsolved Riddles", + "release_date": "2022-04-15", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S" + ], + "genres": [], + "stores": [], + "developers": [ + "Artifex Mundi" + ], + "publishers": [ + "Artifex Mundi" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111805019" + ], + "created_at": "2026-07-10T10:10:49.474809", + "updated_at": "2026-07-10T10:10:49.474809", + "url": "/v1/games/unsolved-riddles" +} diff --git a/site/public/v1/games/untitled-black-panther-video-game/index.json b/site/public/v1/games/untitled-black-panther-video-game/index.json new file mode 100644 index 000000000000..0f8ec283e350 --- /dev/null +++ b/site/public/v1/games/untitled-black-panther-video-game/index.json @@ -0,0 +1,29 @@ +{ + "id": 164270, + "slug": "untitled-black-panther-video-game", + "name": "untitled Black Panther video game", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "action-adventure game" + ], + "stores": [], + "developers": [], + "publishers": [ + "Electronic Arts" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120524352" + ], + "created_at": "2026-07-10T10:10:49.495067", + "updated_at": "2026-07-10T10:10:49.495067", + "url": "/v1/games/untitled-black-panther-video-game" +} diff --git a/site/public/v1/games/untitled-cuphead-sequel/index.json b/site/public/v1/games/untitled-cuphead-sequel/index.json new file mode 100644 index 000000000000..21a6ec8d307d --- /dev/null +++ b/site/public/v1/games/untitled-cuphead-sequel/index.json @@ -0,0 +1,25 @@ +{ + "id": 164272, + "slug": "untitled-cuphead-sequel", + "name": "untitled Cuphead Sequel", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140073675" + ], + "created_at": "2026-07-10T10:10:49.495067", + "updated_at": "2026-07-10T10:10:49.495067", + "url": "/v1/games/untitled-cuphead-sequel" +} diff --git a/site/public/v1/games/untitled-half-life-or-half-life-2-mod/index.json b/site/public/v1/games/untitled-half-life-or-half-life-2-mod/index.json new file mode 100644 index 000000000000..cfa44ac8d8ee --- /dev/null +++ b/site/public/v1/games/untitled-half-life-or-half-life-2-mod/index.json @@ -0,0 +1,27 @@ +{ + "id": 164275, + "slug": "untitled-half-life-or-half-life-2-mod", + "name": "untitled Half-Life or Half-Life 2 mod", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q132527859" + ], + "created_at": "2026-07-10T10:10:49.496066", + "updated_at": "2026-07-10T10:10:49.496066", + "url": "/v1/games/untitled-half-life-or-half-life-2-mod" +} diff --git a/site/public/v1/games/untitled-iron-man-video-game/index.json b/site/public/v1/games/untitled-iron-man-video-game/index.json new file mode 100644 index 000000000000..3ece0e736c67 --- /dev/null +++ b/site/public/v1/games/untitled-iron-man-video-game/index.json @@ -0,0 +1,31 @@ +{ + "id": 164277, + "slug": "untitled-iron-man-video-game", + "name": "untitled Iron Man video game", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "action-adventure game" + ], + "stores": [], + "developers": [ + "Motive Studio" + ], + "publishers": [ + "Electronic Arts" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120480126" + ], + "created_at": "2026-07-10T10:10:49.496066", + "updated_at": "2026-07-10T10:10:49.496066", + "url": "/v1/games/untitled-iron-man-video-game" +} diff --git a/site/public/v1/games/untitled-mass-effect-video-game/index.json b/site/public/v1/games/untitled-mass-effect-video-game/index.json new file mode 100644 index 000000000000..548ccc4755f9 --- /dev/null +++ b/site/public/v1/games/untitled-mass-effect-video-game/index.json @@ -0,0 +1,29 @@ +{ + "id": 164279, + "slug": "untitled-mass-effect-video-game", + "name": "untitled Mass Effect video game", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [ + "BioWare" + ], + "publishers": [ + "Electronic Arts" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q101246534" + ], + "created_at": "2026-07-10T10:10:49.497069", + "updated_at": "2026-07-10T10:10:49.497069", + "url": "/v1/games/untitled-mass-effect-video-game" +} diff --git a/site/public/v1/games/ura-zelda/index.json b/site/public/v1/games/ura-zelda/index.json new file mode 100644 index 000000000000..6f2cab3471b1 --- /dev/null +++ b/site/public/v1/games/ura-zelda/index.json @@ -0,0 +1,25 @@ +{ + "id": 164452, + "slug": "ura-zelda", + "name": "Ura Zelda", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6144778" + ], + "created_at": "2026-07-10T10:10:49.613987", + "updated_at": "2026-07-10T10:10:49.613987", + "url": "/v1/games/ura-zelda" +} diff --git a/site/public/v1/games/uru-the-complete-chronicles/index.json b/site/public/v1/games/uru-the-complete-chronicles/index.json new file mode 100644 index 000000000000..b776bc8cc966 --- /dev/null +++ b/site/public/v1/games/uru-the-complete-chronicles/index.json @@ -0,0 +1,25 @@ +{ + "id": 164548, + "slug": "uru-the-complete-chronicles", + "name": "Uru: The Complete Chronicles", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137589815" + ], + "created_at": "2026-07-10T10:10:49.639001", + "updated_at": "2026-07-10T10:10:49.639001", + "url": "/v1/games/uru-the-complete-chronicles" +} diff --git a/site/public/v1/games/utilities-for-doom-doom-ii/index.json b/site/public/v1/games/utilities-for-doom-doom-ii/index.json new file mode 100644 index 000000000000..a462bdc035ab --- /dev/null +++ b/site/public/v1/games/utilities-for-doom-doom-ii/index.json @@ -0,0 +1,29 @@ +{ + "id": 164617, + "slug": "utilities-for-doom-doom-ii", + "name": "Utilities for Doom & Doom II", + "release_date": "1994-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "first-person shooter" + ], + "stores": [], + "developers": [], + "publishers": [ + "Cobra Computing" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131416879" + ], + "created_at": "2026-07-10T10:10:49.657913", + "updated_at": "2026-07-10T10:10:49.657913", + "url": "/v1/games/utilities-for-doom-doom-ii" +} diff --git a/site/public/v1/games/uzdoom/index.json b/site/public/v1/games/uzdoom/index.json new file mode 100644 index 000000000000..e66e372f2dce --- /dev/null +++ b/site/public/v1/games/uzdoom/index.json @@ -0,0 +1,25 @@ +{ + "id": 164656, + "slug": "uzdoom", + "name": "Uzdoom", + "release_date": "2025-11-08", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136907286" + ], + "created_at": "2026-07-10T10:10:49.667981", + "updated_at": "2026-07-10T10:10:49.667981", + "url": "/v1/games/uzdoom" +} diff --git a/site/public/v1/games/vaas-insanity/index.json b/site/public/v1/games/vaas-insanity/index.json new file mode 100644 index 000000000000..f043140eb7f2 --- /dev/null +++ b/site/public/v1/games/vaas-insanity/index.json @@ -0,0 +1,25 @@ +{ + "id": 164716, + "slug": "vaas-insanity", + "name": "Vaas: Insanity", + "release_date": "2021-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113502405" + ], + "created_at": "2026-07-10T10:10:49.684711", + "updated_at": "2026-07-10T10:10:49.684711", + "url": "/v1/games/vaas-insanity" +} diff --git a/site/public/v1/games/vader-immortal-a-star-wars-vr-series-episode-i/index.json b/site/public/v1/games/vader-immortal-a-star-wars-vr-series-episode-i/index.json new file mode 100644 index 000000000000..5f68bb79c318 --- /dev/null +++ b/site/public/v1/games/vader-immortal-a-star-wars-vr-series-episode-i/index.json @@ -0,0 +1,31 @@ +{ + "id": 164784, + "slug": "vader-immortal-a-star-wars-vr-series-episode-i", + "name": "Vader Immortal: A Star Wars VR Series – Episode I", + "release_date": "2019-05-21", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "ILMxLAB" + ], + "publishers": [ + "Disney Electronic Content" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63614786" + ], + "created_at": "2026-07-10T10:10:49.701755", + "updated_at": "2026-07-10T10:10:49.701755", + "url": "/v1/games/vader-immortal-a-star-wars-vr-series-episode-i" +} diff --git a/site/public/v1/games/vader-immortal-a-star-wars-vr-series-episode-ii/index.json b/site/public/v1/games/vader-immortal-a-star-wars-vr-series-episode-ii/index.json new file mode 100644 index 000000000000..7090d6e9c671 --- /dev/null +++ b/site/public/v1/games/vader-immortal-a-star-wars-vr-series-episode-ii/index.json @@ -0,0 +1,29 @@ +{ + "id": 164785, + "slug": "vader-immortal-a-star-wars-vr-series-episode-ii", + "name": "Vader Immortal: A Star Wars VR Series – Episode II", + "release_date": "2019-09-25", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [ + "ILMxLAB" + ], + "publishers": [ + "Disney Electronic Content" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q79146770" + ], + "created_at": "2026-07-10T10:10:49.701755", + "updated_at": "2026-07-10T10:10:49.701755", + "url": "/v1/games/vader-immortal-a-star-wars-vr-series-episode-ii" +} diff --git a/site/public/v1/games/vader-immortal-a-star-wars-vr-series-episode-iii/index.json b/site/public/v1/games/vader-immortal-a-star-wars-vr-series-episode-iii/index.json new file mode 100644 index 000000000000..6889c11c7b5c --- /dev/null +++ b/site/public/v1/games/vader-immortal-a-star-wars-vr-series-episode-iii/index.json @@ -0,0 +1,29 @@ +{ + "id": 164786, + "slug": "vader-immortal-a-star-wars-vr-series-episode-iii", + "name": "Vader Immortal: A Star Wars VR Series – Episode III", + "release_date": "2019-11-21", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [ + "ILMxLAB" + ], + "publishers": [ + "Disney Electronic Content" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q79147298" + ], + "created_at": "2026-07-10T10:10:49.701755", + "updated_at": "2026-07-10T10:10:49.701755", + "url": "/v1/games/vader-immortal-a-star-wars-vr-series-episode-iii" +} diff --git a/site/public/v1/games/valkyrie-tune-synthesis-of-souls/index.json b/site/public/v1/games/valkyrie-tune-synthesis-of-souls/index.json new file mode 100644 index 000000000000..88d9c8c6263a --- /dev/null +++ b/site/public/v1/games/valkyrie-tune-synthesis-of-souls/index.json @@ -0,0 +1,31 @@ +{ + "id": 164933, + "slug": "valkyrie-tune-synthesis-of-souls", + "name": "Valkyrie Tune: Synthesis of Souls", + "release_date": "2026-07-23", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "visual novel" + ], + "stores": [], + "developers": [ + "Front Wing" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138571679" + ], + "created_at": "2026-07-10T10:10:49.738642", + "updated_at": "2026-07-10T10:10:49.738642", + "url": "/v1/games/valkyrie-tune-synthesis-of-souls" +} diff --git a/site/public/v1/games/valor-victory-shield-of-cholm/index.json b/site/public/v1/games/valor-victory-shield-of-cholm/index.json new file mode 100644 index 000000000000..b9ee2843ae3a --- /dev/null +++ b/site/public/v1/games/valor-victory-shield-of-cholm/index.json @@ -0,0 +1,31 @@ +{ + "id": 164966, + "slug": "valor-victory-shield-of-cholm", + "name": "Valor & Victory: Shield of Cholm", + "release_date": "2022-07-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Yobowargames" + ], + "publishers": [ + "Slitherine Software UK Limited" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113866922" + ], + "created_at": "2026-07-10T10:10:49.748713", + "updated_at": "2026-07-10T10:10:49.748713", + "url": "/v1/games/valor-victory-shield-of-cholm" +} diff --git a/site/public/v1/games/valor-victory-stalingrad/index.json b/site/public/v1/games/valor-victory-stalingrad/index.json new file mode 100644 index 000000000000..90f3dc264660 --- /dev/null +++ b/site/public/v1/games/valor-victory-stalingrad/index.json @@ -0,0 +1,31 @@ +{ + "id": 164967, + "slug": "valor-victory-stalingrad", + "name": "Valor & Victory: Stalingrad", + "release_date": "2022-02-03", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Yobowargames" + ], + "publishers": [ + "Slitherine Software UK Limited" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113866918" + ], + "created_at": "2026-07-10T10:10:49.748713", + "updated_at": "2026-07-10T10:10:49.748713", + "url": "/v1/games/valor-victory-stalingrad" +} diff --git a/site/public/v1/games/valve-clothing-pack/index.json b/site/public/v1/games/valve-clothing-pack/index.json new file mode 100644 index 000000000000..e61875559ad9 --- /dev/null +++ b/site/public/v1/games/valve-clothing-pack/index.json @@ -0,0 +1,27 @@ +{ + "id": 164980, + "slug": "valve-clothing-pack", + "name": "Valve Clothing Pack", + "release_date": "2012-01-17", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60616770" + ], + "created_at": "2026-07-10T10:10:49.751641", + "updated_at": "2026-07-10T10:10:49.751641", + "url": "/v1/games/valve-clothing-pack" +} diff --git a/site/public/v1/games/valve-complete-pack/index.json b/site/public/v1/games/valve-complete-pack/index.json new file mode 100644 index 000000000000..bcb837f8d681 --- /dev/null +++ b/site/public/v1/games/valve-complete-pack/index.json @@ -0,0 +1,33 @@ +{ + "id": 164981, + "slug": "valve-complete-pack", + "name": "Valve Complete Pack", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Gearbox Software", + "Valve Corporation" + ], + "publishers": [ + "Valve Corporation" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q56695783" + ], + "created_at": "2026-07-10T10:10:49.751641", + "updated_at": "2026-07-10T10:10:49.751641", + "url": "/v1/games/valve-complete-pack" +} diff --git a/site/public/v1/games/valve-s-team-fortress/index.json b/site/public/v1/games/valve-s-team-fortress/index.json new file mode 100644 index 000000000000..70c66fa54f51 --- /dev/null +++ b/site/public/v1/games/valve-s-team-fortress/index.json @@ -0,0 +1,27 @@ +{ + "id": 164982, + "slug": "valve-s-team-fortress", + "name": "Valve's Team Fortress", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63247565" + ], + "created_at": "2026-07-10T10:10:49.751641", + "updated_at": "2026-07-10T10:10:49.751641", + "url": "/v1/games/valve-s-team-fortress" +} diff --git a/site/public/v1/games/vampire-survivors-legacy-of-the-moonspell/index.json b/site/public/v1/games/vampire-survivors-legacy-of-the-moonspell/index.json new file mode 100644 index 000000000000..300efe5869b4 --- /dev/null +++ b/site/public/v1/games/vampire-survivors-legacy-of-the-moonspell/index.json @@ -0,0 +1,32 @@ +{ + "id": 165039, + "slug": "vampire-survivors-legacy-of-the-moonspell", + "name": "Vampire Survivors: Legacy of the Moonspell", + "release_date": "2022-12-15", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Poncle" + ], + "publishers": [ + "Poncle" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115715264" + ], + "created_at": "2026-07-10T10:10:49.767732", + "updated_at": "2026-07-10T10:10:49.767732", + "url": "/v1/games/vampire-survivors-legacy-of-the-moonspell" +} diff --git a/site/public/v1/games/vampire-survivors-ode-to-castlevania/index.json b/site/public/v1/games/vampire-survivors-ode-to-castlevania/index.json new file mode 100644 index 000000000000..a1f81fa3b311 --- /dev/null +++ b/site/public/v1/games/vampire-survivors-ode-to-castlevania/index.json @@ -0,0 +1,38 @@ +{ + "id": 165040, + "slug": "vampire-survivors-ode-to-castlevania", + "name": "Vampire Survivors: Ode to Castlevania", + "release_date": "2024-10-31", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 5", + "PlayStation 4", + "iOS", + "macOS", + "Microsoft Windows" + ], + "genres": [ + "bullet heaven" + ], + "stores": [], + "developers": [ + "Poncle" + ], + "publishers": [ + "Poncle" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131308434" + ], + "created_at": "2026-07-10T10:10:49.767732", + "updated_at": "2026-07-10T10:10:49.767732", + "url": "/v1/games/vampire-survivors-ode-to-castlevania" +} diff --git a/site/public/v1/games/vampire-the-masquerade-shadows-of-new-york/index.json b/site/public/v1/games/vampire-the-masquerade-shadows-of-new-york/index.json new file mode 100644 index 000000000000..4baace7e57db --- /dev/null +++ b/site/public/v1/games/vampire-the-masquerade-shadows-of-new-york/index.json @@ -0,0 +1,35 @@ +{ + "id": 165055, + "slug": "vampire-the-masquerade-shadows-of-new-york", + "name": "Vampire: The Masquerade – Shadows of New York", + "release_date": "2020-09-10", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "visual novel" + ], + "stores": [], + "developers": [ + "Draw Distance" + ], + "publishers": [ + "Draw Distance" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q89909591" + ], + "created_at": "2026-07-10T10:10:49.770736", + "updated_at": "2026-07-10T10:10:49.770736", + "url": "/v1/games/vampire-the-masquerade-shadows-of-new-york" +} diff --git a/site/public/v1/games/vampires-wallpapers-ost/index.json b/site/public/v1/games/vampires-wallpapers-ost/index.json new file mode 100644 index 000000000000..da3d5de17029 --- /dev/null +++ b/site/public/v1/games/vampires-wallpapers-ost/index.json @@ -0,0 +1,32 @@ +{ + "id": 165076, + "slug": "vampires-wallpapers-ost", + "name": "Vampires! - Wallpapers & OST", + "release_date": "2017-10-11", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "For Kids" + ], + "publishers": [ + "For Kids" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117835902" + ], + "created_at": "2026-07-10T10:10:49.775743", + "updated_at": "2026-07-10T10:10:49.775743", + "url": "/v1/games/vampires-wallpapers-ost" +} diff --git a/site/public/v1/games/van-buren/index.json b/site/public/v1/games/van-buren/index.json new file mode 100644 index 000000000000..c1eb71ebe797 --- /dev/null +++ b/site/public/v1/games/van-buren/index.json @@ -0,0 +1,34 @@ +{ + "id": 165088, + "slug": "van-buren", + "name": "Van Buren", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "role-playing video game", + "science fiction video game" + ], + "stores": [], + "developers": [ + "Black Isle Studios" + ], + "publishers": [ + "Interplay Entertainment" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q946381" + ], + "created_at": "2026-07-10T10:10:49.778742", + "updated_at": "2026-07-10T10:10:49.778742", + "url": "/v1/games/van-buren" +} diff --git a/site/public/v1/games/vanilla-conquer/index.json b/site/public/v1/games/vanilla-conquer/index.json new file mode 100644 index 000000000000..3a6a6a53a1fc --- /dev/null +++ b/site/public/v1/games/vanilla-conquer/index.json @@ -0,0 +1,25 @@ +{ + "id": 165134, + "slug": "vanilla-conquer", + "name": "Vanilla Conquer", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121501954" + ], + "created_at": "2026-07-10T10:10:49.791261", + "updated_at": "2026-07-10T10:10:49.791261", + "url": "/v1/games/vanilla-conquer" +} diff --git a/site/public/v1/games/varuna-s-forces/index.json b/site/public/v1/games/varuna-s-forces/index.json new file mode 100644 index 000000000000..2512e9be77ef --- /dev/null +++ b/site/public/v1/games/varuna-s-forces/index.json @@ -0,0 +1,28 @@ +{ + "id": 165215, + "slug": "varuna-s-forces", + "name": "Varuna's Forces", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "first-person shooter", + "science fiction video game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60755612" + ], + "created_at": "2026-07-10T10:10:49.812261", + "updated_at": "2026-07-10T10:10:49.812261", + "url": "/v1/games/varuna-s-forces" +} diff --git a/site/public/v1/games/vavoom/index.json b/site/public/v1/games/vavoom/index.json new file mode 100644 index 000000000000..272f1272062e --- /dev/null +++ b/site/public/v1/games/vavoom/index.json @@ -0,0 +1,25 @@ +{ + "id": 165250, + "slug": "vavoom", + "name": "Vavoom", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q67250309" + ], + "created_at": "2026-07-10T10:10:49.821261", + "updated_at": "2026-07-10T10:10:49.821261", + "url": "/v1/games/vavoom" +} diff --git a/site/public/v1/games/vectorman-3/index.json b/site/public/v1/games/vectorman-3/index.json new file mode 100644 index 000000000000..69eccd92245a --- /dev/null +++ b/site/public/v1/games/vectorman-3/index.json @@ -0,0 +1,25 @@ +{ + "id": 165310, + "slug": "vectorman-3", + "name": "Vectorman 3", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123475192" + ], + "created_at": "2026-07-10T10:10:49.838260", + "updated_at": "2026-07-10T10:10:49.838260", + "url": "/v1/games/vectorman-3" +} diff --git a/site/public/v1/games/venapro/index.json b/site/public/v1/games/venapro/index.json new file mode 100644 index 000000000000..4715532fbba4 --- /dev/null +++ b/site/public/v1/games/venapro/index.json @@ -0,0 +1,25 @@ +{ + "id": 165471, + "slug": "venapro", + "name": "Venapro", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q59282120" + ], + "created_at": "2026-07-10T10:10:49.914033", + "updated_at": "2026-07-10T10:10:49.914033", + "url": "/v1/games/venapro" +} diff --git a/site/public/v1/games/versus-the-elite-trials-worningbird-hints/index.json b/site/public/v1/games/versus-the-elite-trials-worningbird-hints/index.json new file mode 100644 index 000000000000..2f9b1a035163 --- /dev/null +++ b/site/public/v1/games/versus-the-elite-trials-worningbird-hints/index.json @@ -0,0 +1,32 @@ +{ + "id": 165656, + "slug": "versus-the-elite-trials-worningbird-hints", + "name": "VERSUS: The Elite Trials - WorningBird Hints", + "release_date": "2016-12-16", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Choice of Games" + ], + "publishers": [ + "Choice of Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115016147" + ], + "created_at": "2026-07-10T10:10:49.961031", + "updated_at": "2026-07-10T10:10:49.961031", + "url": "/v1/games/versus-the-elite-trials-worningbird-hints" +} diff --git a/site/public/v1/games/versus-the-lost-ones-worningbird-hints/index.json b/site/public/v1/games/versus-the-lost-ones-worningbird-hints/index.json new file mode 100644 index 000000000000..cf5e509c6ef0 --- /dev/null +++ b/site/public/v1/games/versus-the-lost-ones-worningbird-hints/index.json @@ -0,0 +1,32 @@ +{ + "id": 165658, + "slug": "versus-the-lost-ones-worningbird-hints", + "name": "VERSUS: The Lost Ones - WorningBird Hints", + "release_date": "2015-08-21", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Choice of Games" + ], + "publishers": [ + "Choice of Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115016120" + ], + "created_at": "2026-07-10T10:10:49.962095", + "updated_at": "2026-07-10T10:10:49.962095", + "url": "/v1/games/versus-the-lost-ones-worningbird-hints" +} diff --git a/site/public/v1/games/very-little-nightmares-q118235287/index.json b/site/public/v1/games/very-little-nightmares-q118235287/index.json new file mode 100644 index 000000000000..535b589eb18d --- /dev/null +++ b/site/public/v1/games/very-little-nightmares-q118235287/index.json @@ -0,0 +1,28 @@ +{ + "id": 165699, + "slug": "very-little-nightmares-q118235287", + "name": "Very Little Nightmares+", + "release_date": "2023-05-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "iPadOS", + "iOS" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118235287" + ], + "created_at": "2026-07-10T10:10:49.975125", + "updated_at": "2026-07-10T10:10:49.975125", + "url": "/v1/games/very-little-nightmares-q118235287" +} diff --git a/site/public/v1/games/victoria-3-voice-of-the-people/index.json b/site/public/v1/games/victoria-3-voice-of-the-people/index.json new file mode 100644 index 000000000000..35e3c6c3f09e --- /dev/null +++ b/site/public/v1/games/victoria-3-voice-of-the-people/index.json @@ -0,0 +1,25 @@ +{ + "id": 165824, + "slug": "victoria-3-voice-of-the-people", + "name": "Victoria 3: Voice of the People", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140471226" + ], + "created_at": "2026-07-10T10:10:50.046317", + "updated_at": "2026-07-10T10:10:50.046317", + "url": "/v1/games/victoria-3-voice-of-the-people" +} diff --git a/site/public/v1/games/victoria-ii-heart-of-darkness/index.json b/site/public/v1/games/victoria-ii-heart-of-darkness/index.json new file mode 100644 index 000000000000..21c818f26ae9 --- /dev/null +++ b/site/public/v1/games/victoria-ii-heart-of-darkness/index.json @@ -0,0 +1,25 @@ +{ + "id": 165828, + "slug": "victoria-ii-heart-of-darkness", + "name": "Victoria II: Heart of Darkness", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140448045" + ], + "created_at": "2026-07-10T10:10:50.047317", + "updated_at": "2026-07-10T10:10:50.047317", + "url": "/v1/games/victoria-ii-heart-of-darkness" +} diff --git a/site/public/v1/games/victory-is-life/index.json b/site/public/v1/games/victory-is-life/index.json new file mode 100644 index 000000000000..58bbadf9bcfa --- /dev/null +++ b/site/public/v1/games/victory-is-life/index.json @@ -0,0 +1,25 @@ +{ + "id": 165860, + "slug": "victory-is-life", + "name": "Victory is Life", + "release_date": "2018-06-05", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q57973885" + ], + "created_at": "2026-07-10T10:10:50.055318", + "updated_at": "2026-07-10T10:10:50.055318", + "url": "/v1/games/victory-is-life" +} diff --git a/site/public/v1/games/video-pinball-q65951933/index.json b/site/public/v1/games/video-pinball-q65951933/index.json new file mode 100644 index 000000000000..98b35f025e50 --- /dev/null +++ b/site/public/v1/games/video-pinball-q65951933/index.json @@ -0,0 +1,29 @@ +{ + "id": 165889, + "slug": "video-pinball-q65951933", + "name": "Video Pinball", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "pinball machine game" + ], + "stores": [], + "developers": [ + "Atari, Inc." + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q65951933" + ], + "created_at": "2026-07-10T10:10:50.063327", + "updated_at": "2026-07-10T10:10:50.063327", + "url": "/v1/games/video-pinball-q65951933" +} diff --git a/site/public/v1/games/vietcong-fist-alpha/index.json b/site/public/v1/games/vietcong-fist-alpha/index.json new file mode 100644 index 000000000000..c1a89fc20842 --- /dev/null +++ b/site/public/v1/games/vietcong-fist-alpha/index.json @@ -0,0 +1,33 @@ +{ + "id": 165929, + "slug": "vietcong-fist-alpha", + "name": "Vietcong: Fist Alpha", + "release_date": "2004-01-30", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter" + ], + "stores": [], + "developers": [ + "Pterodon" + ], + "publishers": [ + "Gathering of Developers" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3501712" + ], + "created_at": "2026-07-10T10:10:50.075328", + "updated_at": "2026-07-10T10:10:50.075328", + "url": "/v1/games/vietcong-fist-alpha" +} diff --git a/site/public/v1/games/vietcong-red-dawn/index.json b/site/public/v1/games/vietcong-red-dawn/index.json new file mode 100644 index 000000000000..5ac2fd27ba49 --- /dev/null +++ b/site/public/v1/games/vietcong-red-dawn/index.json @@ -0,0 +1,25 @@ +{ + "id": 165930, + "slug": "vietcong-red-dawn", + "name": "Vietcong: Red Dawn", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11896107" + ], + "created_at": "2026-07-10T10:10:50.075328", + "updated_at": "2026-07-10T10:10:50.075328", + "url": "/v1/games/vietcong-red-dawn" +} diff --git a/site/public/v1/games/viewer-pack-the-first/index.json b/site/public/v1/games/viewer-pack-the-first/index.json new file mode 100644 index 000000000000..96c7db55f76e --- /dev/null +++ b/site/public/v1/games/viewer-pack-the-first/index.json @@ -0,0 +1,25 @@ +{ + "id": 165940, + "slug": "viewer-pack-the-first", + "name": "Viewer Pack The First", + "release_date": "2012-01-05", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60617368" + ], + "created_at": "2026-07-10T10:10:50.077832", + "updated_at": "2026-07-10T10:10:50.077832", + "url": "/v1/games/viewer-pack-the-first" +} diff --git a/site/public/v1/games/viewer-pack-the-second/index.json b/site/public/v1/games/viewer-pack-the-second/index.json new file mode 100644 index 000000000000..1bd604790e00 --- /dev/null +++ b/site/public/v1/games/viewer-pack-the-second/index.json @@ -0,0 +1,25 @@ +{ + "id": 165941, + "slug": "viewer-pack-the-second", + "name": "Viewer Pack The Second", + "release_date": "2012-02-21", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60617369" + ], + "created_at": "2026-07-10T10:10:50.078842", + "updated_at": "2026-07-10T10:10:50.078842", + "url": "/v1/games/viewer-pack-the-second" +} diff --git a/site/public/v1/games/viewer-pack-the-third/index.json b/site/public/v1/games/viewer-pack-the-third/index.json new file mode 100644 index 000000000000..680fa0d31857 --- /dev/null +++ b/site/public/v1/games/viewer-pack-the-third/index.json @@ -0,0 +1,25 @@ +{ + "id": 165942, + "slug": "viewer-pack-the-third", + "name": "Viewer Pack The Third", + "release_date": "2012-03-14", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60617370" + ], + "created_at": "2026-07-10T10:10:50.078842", + "updated_at": "2026-07-10T10:10:50.078842", + "url": "/v1/games/viewer-pack-the-third" +} diff --git a/site/public/v1/games/vigil-blood-bitterness-demo/index.json b/site/public/v1/games/vigil-blood-bitterness-demo/index.json new file mode 100644 index 000000000000..d1f1f01ca20f --- /dev/null +++ b/site/public/v1/games/vigil-blood-bitterness-demo/index.json @@ -0,0 +1,34 @@ +{ + "id": 165952, + "slug": "vigil-blood-bitterness-demo", + "name": "Vigil: Blood Bitterness Demo", + "release_date": "2007-06-29", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "puzzle video game", + "role-playing video game" + ], + "stores": [], + "developers": [ + "Freegamer" + ], + "publishers": [ + "Meridian4" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122708378" + ], + "created_at": "2026-07-10T10:10:50.080842", + "updated_at": "2026-07-10T10:10:50.080842", + "url": "/v1/games/vigil-blood-bitterness-demo" +} diff --git a/site/public/v1/games/vilse-i-vintergatan/index.json b/site/public/v1/games/vilse-i-vintergatan/index.json new file mode 100644 index 000000000000..757aa7a1d542 --- /dev/null +++ b/site/public/v1/games/vilse-i-vintergatan/index.json @@ -0,0 +1,31 @@ +{ + "id": 166098, + "slug": "vilse-i-vintergatan", + "name": "Vilse i Vintergatan", + "release_date": "2009-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "web browser" + ], + "genres": [ + "platformer" + ], + "stores": [], + "developers": [], + "publishers": [ + "Sveriges Television" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q100318788" + ], + "created_at": "2026-07-10T10:10:50.151339", + "updated_at": "2026-07-10T10:10:50.151339", + "url": "/v1/games/vilse-i-vintergatan" +} diff --git a/site/public/v1/games/virtua-fighter-q61601911/index.json b/site/public/v1/games/virtua-fighter-q61601911/index.json new file mode 100644 index 000000000000..5adb773ecb0f --- /dev/null +++ b/site/public/v1/games/virtua-fighter-q61601911/index.json @@ -0,0 +1,27 @@ +{ + "id": 166252, + "slug": "virtua-fighter-q61601911", + "name": "Virtua Fighter", + "release_date": "1994-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Sega" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q61601911" + ], + "created_at": "2026-07-10T10:10:50.194040", + "updated_at": "2026-07-10T10:10:50.194040", + "url": "/v1/games/virtua-fighter-q61601911" +} diff --git a/site/public/v1/games/virtual-reality-volume-2/index.json b/site/public/v1/games/virtual-reality-volume-2/index.json new file mode 100644 index 000000000000..7f73d08dada6 --- /dev/null +++ b/site/public/v1/games/virtual-reality-volume-2/index.json @@ -0,0 +1,27 @@ +{ + "id": 166370, + "slug": "virtual-reality-volume-2", + "name": "Virtual Reality, Volume 2", + "release_date": "1991-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Atari ST" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1993119" + ], + "created_at": "2026-07-10T10:10:50.231036", + "updated_at": "2026-07-10T10:10:50.231036", + "url": "/v1/games/virtual-reality-volume-2" +} diff --git a/site/public/v1/games/viscera-cleanup-detail-house-of-horror/index.json b/site/public/v1/games/viscera-cleanup-detail-house-of-horror/index.json new file mode 100644 index 000000000000..8136ed0469ae --- /dev/null +++ b/site/public/v1/games/viscera-cleanup-detail-house-of-horror/index.json @@ -0,0 +1,32 @@ +{ + "id": 166481, + "slug": "viscera-cleanup-detail-house-of-horror", + "name": "Viscera Cleanup Detail: House of Horror", + "release_date": "2015-10-29", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "RuneStorm" + ], + "publishers": [ + "RuneStorm" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q74213702" + ], + "created_at": "2026-07-10T10:10:50.296672", + "updated_at": "2026-07-10T10:10:50.297680", + "url": "/v1/games/viscera-cleanup-detail-house-of-horror" +} diff --git a/site/public/v1/games/viscera-cleanup-detail-the-vulcan-affair/index.json b/site/public/v1/games/viscera-cleanup-detail-the-vulcan-affair/index.json new file mode 100644 index 000000000000..6c4bc6c37a2a --- /dev/null +++ b/site/public/v1/games/viscera-cleanup-detail-the-vulcan-affair/index.json @@ -0,0 +1,32 @@ +{ + "id": 166484, + "slug": "viscera-cleanup-detail-the-vulcan-affair", + "name": "Viscera Cleanup Detail - The Vulcan Affair", + "release_date": "2018-12-10", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "RuneStorm" + ], + "publishers": [ + "RuneStorm" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q74215905" + ], + "created_at": "2026-07-10T10:10:50.299678", + "updated_at": "2026-07-10T10:10:50.299678", + "url": "/v1/games/viscera-cleanup-detail-the-vulcan-affair" +} diff --git a/site/public/v1/games/vita-stacks/index.json b/site/public/v1/games/vita-stacks/index.json new file mode 100644 index 000000000000..e6d23f2c14aa --- /dev/null +++ b/site/public/v1/games/vita-stacks/index.json @@ -0,0 +1,33 @@ +{ + "id": 166532, + "slug": "vita-stacks", + "name": "Vita Stacks", + "release_date": "2020-08-15", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation Vita" + ], + "genres": [ + "puzzle video game" + ], + "stores": [], + "developers": [ + "VitaHEX games" + ], + "publishers": [ + "VitaHEX games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124024682" + ], + "created_at": "2026-07-10T10:10:50.319766", + "updated_at": "2026-07-10T10:10:50.319766", + "url": "/v1/games/vita-stacks" +} diff --git a/site/public/v1/games/vitahot/index.json b/site/public/v1/games/vitahot/index.json new file mode 100644 index 000000000000..02445ea3d72a --- /dev/null +++ b/site/public/v1/games/vitahot/index.json @@ -0,0 +1,35 @@ +{ + "id": 166533, + "slug": "vitahot", + "name": "VitaHot", + "release_date": "2023-08-30", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation Vita" + ], + "genres": [ + "first-person shooter" + ], + "stores": [], + "developers": [ + "digradi", + "MRKane" + ], + "publishers": [ + "MRKane", + "digradi" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124060084" + ], + "created_at": "2026-07-10T10:10:50.319766", + "updated_at": "2026-07-10T10:10:50.319766", + "url": "/v1/games/vitahot" +} diff --git a/site/public/v1/games/vitamon-go/index.json b/site/public/v1/games/vitamon-go/index.json new file mode 100644 index 000000000000..6cbb7c9196c3 --- /dev/null +++ b/site/public/v1/games/vitamon-go/index.json @@ -0,0 +1,31 @@ +{ + "id": 166542, + "slug": "vitamon-go", + "name": "Vitamon GO", + "release_date": "2017-11-30", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation Vita" + ], + "genres": [], + "stores": [], + "developers": [ + "VitaHEX games" + ], + "publishers": [ + "VitaHEX games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124004150" + ], + "created_at": "2026-07-10T10:10:50.322755", + "updated_at": "2026-07-10T10:10:50.322755", + "url": "/v1/games/vitamon-go" +} diff --git a/site/public/v1/games/vkquake/index.json b/site/public/v1/games/vkquake/index.json new file mode 100644 index 000000000000..c4d484bfabcf --- /dev/null +++ b/site/public/v1/games/vkquake/index.json @@ -0,0 +1,25 @@ +{ + "id": 166593, + "slug": "vkquake", + "name": "vkQuake", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120671329" + ], + "created_at": "2026-07-10T10:10:50.335762", + "updated_at": "2026-07-10T10:10:50.335762", + "url": "/v1/games/vkquake" +} diff --git a/site/public/v1/games/voss-turbo-demo/index.json b/site/public/v1/games/voss-turbo-demo/index.json new file mode 100644 index 000000000000..d2d33074d3f4 --- /dev/null +++ b/site/public/v1/games/voss-turbo-demo/index.json @@ -0,0 +1,28 @@ +{ + "id": 166950, + "slug": "voss-turbo-demo", + "name": "VOSS Turbo Demo", + "release_date": "2022-04-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111524084" + ], + "created_at": "2026-07-10T10:10:50.442778", + "updated_at": "2026-07-10T10:10:50.442778", + "url": "/v1/games/voss-turbo-demo" +} diff --git a/site/public/v1/games/voyage-xbox-edition/index.json b/site/public/v1/games/voyage-xbox-edition/index.json new file mode 100644 index 000000000000..73cd599cccfa --- /dev/null +++ b/site/public/v1/games/voyage-xbox-edition/index.json @@ -0,0 +1,31 @@ +{ + "id": 167020, + "slug": "voyage-xbox-edition", + "name": "Voyage: Xbox Edition", + "release_date": "2022-08-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S" + ], + "genres": [], + "stores": [], + "developers": [ + "Venturous" + ], + "publishers": [ + "Ratalaika Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115525795" + ], + "created_at": "2026-07-10T10:10:50.497418", + "updated_at": "2026-07-10T10:10:50.497418", + "url": "/v1/games/voyage-xbox-edition" +} diff --git a/site/public/v1/games/vquake/index.json b/site/public/v1/games/vquake/index.json new file mode 100644 index 000000000000..47a07f784ae8 --- /dev/null +++ b/site/public/v1/games/vquake/index.json @@ -0,0 +1,29 @@ +{ + "id": 167041, + "slug": "vquake", + "name": "VQuake", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Rendition Vérité V1000" + ], + "genres": [], + "stores": [], + "developers": [ + "id Software" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120671295" + ], + "created_at": "2026-07-10T10:10:50.506445", + "updated_at": "2026-07-10T10:10:50.506445", + "url": "/v1/games/vquake" +} diff --git a/site/public/v1/games/vr-fitness-demo/index.json b/site/public/v1/games/vr-fitness-demo/index.json new file mode 100644 index 000000000000..7eb23f98a5bb --- /dev/null +++ b/site/public/v1/games/vr-fitness-demo/index.json @@ -0,0 +1,34 @@ +{ + "id": 167124, + "slug": "vr-fitness-demo", + "name": "VR Fitness Demo", + "release_date": "2023-07-17", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "eroge", + "fitness video game" + ], + "stores": [], + "developers": [ + "SK Soft" + ], + "publishers": [ + "SK Soft" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131322145" + ], + "created_at": "2026-07-10T10:10:50.529365", + "updated_at": "2026-07-10T10:10:50.529365", + "url": "/v1/games/vr-fitness-demo" +} diff --git a/site/public/v1/games/vr-fitness-r18-dlc/index.json b/site/public/v1/games/vr-fitness-r18-dlc/index.json new file mode 100644 index 000000000000..38aeb879c148 --- /dev/null +++ b/site/public/v1/games/vr-fitness-r18-dlc/index.json @@ -0,0 +1,34 @@ +{ + "id": 167126, + "slug": "vr-fitness-r18-dlc", + "name": "VR Fitness - R18 DLC", + "release_date": "2024-01-02", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "eroge", + "harem" + ], + "stores": [], + "developers": [ + "SK Soft" + ], + "publishers": [ + "SK Soft" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131315238" + ], + "created_at": "2026-07-10T10:10:50.529365", + "updated_at": "2026-07-10T10:10:50.529365", + "url": "/v1/games/vr-fitness-r18-dlc" +} diff --git a/site/public/v1/games/vr-harem-sex-fucking-the-all-girls-around-me-demo/index.json b/site/public/v1/games/vr-harem-sex-fucking-the-all-girls-around-me-demo/index.json new file mode 100644 index 000000000000..71d782160850 --- /dev/null +++ b/site/public/v1/games/vr-harem-sex-fucking-the-all-girls-around-me-demo/index.json @@ -0,0 +1,35 @@ +{ + "id": 167147, + "slug": "vr-harem-sex-fucking-the-all-girls-around-me-demo", + "name": "VR Harem Sex ~Fucking the All Girls Around Me~ Demo", + "release_date": "2024-02-10", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "harem", + "simulation video game", + "eroge" + ], + "stores": [], + "developers": [ + "SK Soft" + ], + "publishers": [ + "SK Soft" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130380735" + ], + "created_at": "2026-07-10T10:10:50.535433", + "updated_at": "2026-07-10T10:10:50.535433", + "url": "/v1/games/vr-harem-sex-fucking-the-all-girls-around-me-demo" +} diff --git a/site/public/v1/games/w-e-l-l-online/index.json b/site/public/v1/games/w-e-l-l-online/index.json new file mode 100644 index 000000000000..00ff9b510828 --- /dev/null +++ b/site/public/v1/games/w-e-l-l-online/index.json @@ -0,0 +1,31 @@ +{ + "id": 167443, + "slug": "w-e-l-l-online", + "name": "W.E.L.L. Online", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "massively multiplayer online role-playing game" + ], + "stores": [], + "developers": [ + "Sibilant Interactive" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110716217" + ], + "created_at": "2026-07-10T10:10:50.631179", + "updated_at": "2026-07-10T10:10:50.631179", + "url": "/v1/games/w-e-l-l-online" +} diff --git a/site/public/v1/games/wagic-the-homebrew/index.json b/site/public/v1/games/wagic-the-homebrew/index.json new file mode 100644 index 000000000000..7e289e94ee1f --- /dev/null +++ b/site/public/v1/games/wagic-the-homebrew/index.json @@ -0,0 +1,32 @@ +{ + "id": 167523, + "slug": "wagic-the-homebrew", + "name": "Wagic, The Homebrew ?!", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Nokia N900", + "Nokia N9", + "Ouya", + "PlayStation Portable", + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q100722100" + ], + "created_at": "2026-07-10T10:10:50.651746", + "updated_at": "2026-07-10T10:10:50.651746", + "url": "/v1/games/wagic-the-homebrew" +} diff --git a/site/public/v1/games/wait-what-s-that/index.json b/site/public/v1/games/wait-what-s-that/index.json new file mode 100644 index 000000000000..ee9df67c225d --- /dev/null +++ b/site/public/v1/games/wait-what-s-that/index.json @@ -0,0 +1,25 @@ +{ + "id": 167591, + "slug": "wait-what-s-that", + "name": "Wait What's That", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137298449" + ], + "created_at": "2026-07-10T10:10:50.670816", + "updated_at": "2026-07-10T10:10:50.670816", + "url": "/v1/games/wait-what-s-that" +} diff --git a/site/public/v1/games/warcraft-2000/index.json b/site/public/v1/games/warcraft-2000/index.json new file mode 100644 index 000000000000..9dc9e51c936e --- /dev/null +++ b/site/public/v1/games/warcraft-2000/index.json @@ -0,0 +1,33 @@ +{ + "id": 168078, + "slug": "warcraft-2000", + "name": "Warcraft 2000", + "release_date": "1998-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "real-time strategy" + ], + "stores": [], + "developers": [ + "GSC Game World" + ], + "publishers": [ + "GSC Game World" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112107336" + ], + "created_at": "2026-07-10T10:10:50.802311", + "updated_at": "2026-07-10T10:10:50.802311", + "url": "/v1/games/warcraft-2000" +} diff --git a/site/public/v1/games/warcraft-3-the-frozen-throne-nature-s-call-spider-queen/index.json b/site/public/v1/games/warcraft-3-the-frozen-throne-nature-s-call-spider-queen/index.json new file mode 100644 index 000000000000..9e95d0bda06f --- /dev/null +++ b/site/public/v1/games/warcraft-3-the-frozen-throne-nature-s-call-spider-queen/index.json @@ -0,0 +1,29 @@ +{ + "id": 168079, + "slug": "warcraft-3-the-frozen-throne-nature-s-call-spider-queen", + "name": "Warcraft 3: The Frozen Throne: Nature's Call: Spider Queen", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "strategy game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110817162" + ], + "created_at": "2026-07-10T10:10:50.802311", + "updated_at": "2026-07-10T10:10:50.802311", + "url": "/v1/games/warcraft-3-the-frozen-throne-nature-s-call-spider-queen" +} diff --git a/site/public/v1/games/warcraft-adventures-lord-of-the-clans/index.json b/site/public/v1/games/warcraft-adventures-lord-of-the-clans/index.json new file mode 100644 index 000000000000..ca399f23eeaa --- /dev/null +++ b/site/public/v1/games/warcraft-adventures-lord-of-the-clans/index.json @@ -0,0 +1,31 @@ +{ + "id": 168080, + "slug": "warcraft-adventures-lord-of-the-clans", + "name": "Warcraft Adventures: Lord of the Clans", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "point-and-click adventure" + ], + "stores": [], + "developers": [ + "Blizzard Entertainment" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q859958" + ], + "created_at": "2026-07-10T10:10:50.802311", + "updated_at": "2026-07-10T10:10:50.802311", + "url": "/v1/games/warcraft-adventures-lord-of-the-clans" +} diff --git a/site/public/v1/games/warcraft-ii-beyond-the-dark-portal/index.json b/site/public/v1/games/warcraft-ii-beyond-the-dark-portal/index.json new file mode 100644 index 000000000000..80e16400be04 --- /dev/null +++ b/site/public/v1/games/warcraft-ii-beyond-the-dark-portal/index.json @@ -0,0 +1,36 @@ +{ + "id": 168082, + "slug": "warcraft-ii-beyond-the-dark-portal", + "name": "Warcraft II: Beyond the Dark Portal", + "release_date": "1996-04-30", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Classic Mac OS", + "DOS", + "Microsoft Windows" + ], + "genres": [ + "real-time strategy", + "fantasy video game" + ], + "stores": [], + "developers": [ + "Cyberlore Studios" + ], + "publishers": [ + "Blizzard Entertainment" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q860291" + ], + "created_at": "2026-07-10T10:10:50.802311", + "updated_at": "2026-07-10T10:10:50.802311", + "url": "/v1/games/warcraft-ii-beyond-the-dark-portal" +} diff --git a/site/public/v1/games/warcraft-ii-the-dark-saga/index.json b/site/public/v1/games/warcraft-ii-the-dark-saga/index.json new file mode 100644 index 000000000000..0da7e91897c5 --- /dev/null +++ b/site/public/v1/games/warcraft-ii-the-dark-saga/index.json @@ -0,0 +1,31 @@ +{ + "id": 168083, + "slug": "warcraft-ii-the-dark-saga", + "name": "Warcraft II: The Dark Saga", + "release_date": "1997-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "real-time strategy" + ], + "stores": [], + "developers": [ + "Blizzard Entertainment" + ], + "publishers": [ + "Electronic Arts" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2742840" + ], + "created_at": "2026-07-10T10:10:50.803315", + "updated_at": "2026-07-10T10:10:50.803315", + "url": "/v1/games/warcraft-ii-the-dark-saga" +} diff --git a/site/public/v1/games/warcraft-ii-tides-of-darkness-q122890940/index.json b/site/public/v1/games/warcraft-ii-tides-of-darkness-q122890940/index.json new file mode 100644 index 000000000000..eb84c749e23a --- /dev/null +++ b/site/public/v1/games/warcraft-ii-tides-of-darkness-q122890940/index.json @@ -0,0 +1,33 @@ +{ + "id": 168084, + "slug": "warcraft-ii-tides-of-darkness-q122890940", + "name": "WarCraft II: Tides of Darkness", + "release_date": "1996-01-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Classic Mac OS" + ], + "genres": [ + "real-time strategy" + ], + "stores": [], + "developers": [ + "Blizzard Entertainment" + ], + "publishers": [ + "Blizzard Entertainment" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122890940" + ], + "created_at": "2026-07-10T10:10:50.803315", + "updated_at": "2026-07-10T10:10:50.803315", + "url": "/v1/games/warcraft-ii-tides-of-darkness-q122890940" +} diff --git a/site/public/v1/games/warcraft-iii-gold-edition/index.json b/site/public/v1/games/warcraft-iii-gold-edition/index.json new file mode 100644 index 000000000000..c2f8066600d3 --- /dev/null +++ b/site/public/v1/games/warcraft-iii-gold-edition/index.json @@ -0,0 +1,25 @@ +{ + "id": 168086, + "slug": "warcraft-iii-gold-edition", + "name": "Warcraft III: Gold Edition", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125795786" + ], + "created_at": "2026-07-10T10:10:50.803315", + "updated_at": "2026-07-10T10:10:50.803315", + "url": "/v1/games/warcraft-iii-gold-edition" +} diff --git a/site/public/v1/games/warcraft-iii-reign-of-chaos-demo-version/index.json b/site/public/v1/games/warcraft-iii-reign-of-chaos-demo-version/index.json new file mode 100644 index 000000000000..17b4cdc09b76 --- /dev/null +++ b/site/public/v1/games/warcraft-iii-reign-of-chaos-demo-version/index.json @@ -0,0 +1,25 @@ +{ + "id": 168088, + "slug": "warcraft-iii-reign-of-chaos-demo-version", + "name": "Warcraft III: Reign of Chaos Demo Version", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125795526" + ], + "created_at": "2026-07-10T10:10:50.804343", + "updated_at": "2026-07-10T10:10:50.804343", + "url": "/v1/games/warcraft-iii-reign-of-chaos-demo-version" +} diff --git a/site/public/v1/games/warhammer-40-000-dark-heresy/index.json b/site/public/v1/games/warhammer-40-000-dark-heresy/index.json new file mode 100644 index 000000000000..cdb405aa5064 --- /dev/null +++ b/site/public/v1/games/warhammer-40-000-dark-heresy/index.json @@ -0,0 +1,31 @@ +{ + "id": 168183, + "slug": "warhammer-40-000-dark-heresy", + "name": "Warhammer 40,000: Dark Heresy", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S", + "PlayStation 5", + "Microsoft Windows" + ], + "genres": [ + "role-playing video game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134545609" + ], + "created_at": "2026-07-10T10:10:50.856233", + "updated_at": "2026-07-10T10:10:50.856233", + "url": "/v1/games/warhammer-40-000-dark-heresy" +} diff --git a/site/public/v1/games/warhammer-40-000-dawn-of-war-dark-crusade/index.json b/site/public/v1/games/warhammer-40-000-dawn-of-war-dark-crusade/index.json new file mode 100644 index 000000000000..b228e2787a97 --- /dev/null +++ b/site/public/v1/games/warhammer-40-000-dawn-of-war-dark-crusade/index.json @@ -0,0 +1,31 @@ +{ + "id": 168186, + "slug": "warhammer-40-000-dawn-of-war-dark-crusade", + "name": "Warhammer 40,000: Dawn of War – Dark Crusade", + "release_date": "2006-10-09", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "real-time strategy" + ], + "stores": [], + "developers": [], + "publishers": [ + "THQ" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1330808" + ], + "created_at": "2026-07-10T10:10:50.857305", + "updated_at": "2026-07-10T10:10:50.857305", + "url": "/v1/games/warhammer-40-000-dawn-of-war-dark-crusade" +} diff --git a/site/public/v1/games/warhammer-40-000-dawn-of-war-dowpro/index.json b/site/public/v1/games/warhammer-40-000-dawn-of-war-dowpro/index.json new file mode 100644 index 000000000000..376cd90fe3c2 --- /dev/null +++ b/site/public/v1/games/warhammer-40-000-dawn-of-war-dowpro/index.json @@ -0,0 +1,32 @@ +{ + "id": 168188, + "slug": "warhammer-40-000-dawn-of-war-dowpro", + "name": "Warhammer 40,000: Dawn of War – DowPro", + "release_date": "2005-09-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "real-time strategy" + ], + "stores": [], + "developers": [], + "publishers": [ + "THQ", + "Russobit-M" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110817164" + ], + "created_at": "2026-07-10T10:10:50.857305", + "updated_at": "2026-07-10T10:10:50.857305", + "url": "/v1/games/warhammer-40-000-dawn-of-war-dowpro" +} diff --git a/site/public/v1/games/warhammer-40-000-dawn-of-war-ii-chaos-rising/index.json b/site/public/v1/games/warhammer-40-000-dawn-of-war-ii-chaos-rising/index.json new file mode 100644 index 000000000000..facdee324cfe --- /dev/null +++ b/site/public/v1/games/warhammer-40-000-dawn-of-war-ii-chaos-rising/index.json @@ -0,0 +1,33 @@ +{ + "id": 168189, + "slug": "warhammer-40-000-dawn-of-war-ii-chaos-rising", + "name": "Warhammer 40,000: Dawn of War II – Chaos Rising", + "release_date": "2010-03-10", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "real-time strategy", + "science fiction video game" + ], + "stores": [], + "developers": [], + "publishers": [ + "THQ" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1051585" + ], + "created_at": "2026-07-10T10:10:50.857305", + "updated_at": "2026-07-10T10:10:50.857305", + "url": "/v1/games/warhammer-40-000-dawn-of-war-ii-chaos-rising" +} diff --git a/site/public/v1/games/warhammer-40-000-dawn-of-war-ii-retribution/index.json b/site/public/v1/games/warhammer-40-000-dawn-of-war-ii-retribution/index.json new file mode 100644 index 000000000000..5e30fd54543f --- /dev/null +++ b/site/public/v1/games/warhammer-40-000-dawn-of-war-ii-retribution/index.json @@ -0,0 +1,34 @@ +{ + "id": 168190, + "slug": "warhammer-40-000-dawn-of-war-ii-retribution", + "name": "Warhammer 40,000: Dawn of War II – Retribution", + "release_date": "2011-02-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "real-time strategy", + "tactical role-playing game", + "real-time tactics" + ], + "stores": [], + "developers": [], + "publishers": [ + "THQ" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1086249" + ], + "created_at": "2026-07-10T10:10:50.858334", + "updated_at": "2026-07-10T10:10:50.858334", + "url": "/v1/games/warhammer-40-000-dawn-of-war-ii-retribution" +} diff --git a/site/public/v1/games/warhammer-40-000-dawn-of-war-soulstorm/index.json b/site/public/v1/games/warhammer-40-000-dawn-of-war-soulstorm/index.json new file mode 100644 index 000000000000..8c6f2e3de1c9 --- /dev/null +++ b/site/public/v1/games/warhammer-40-000-dawn-of-war-soulstorm/index.json @@ -0,0 +1,33 @@ +{ + "id": 168193, + "slug": "warhammer-40-000-dawn-of-war-soulstorm", + "name": "Warhammer 40,000: Dawn of War – Soulstorm", + "release_date": "2008-03-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "real-time strategy" + ], + "stores": [], + "developers": [ + "Iron Lore Entertainment" + ], + "publishers": [ + "THQ" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1367520" + ], + "created_at": "2026-07-10T10:10:50.859328", + "updated_at": "2026-07-10T10:10:50.859328", + "url": "/v1/games/warhammer-40-000-dawn-of-war-soulstorm" +} diff --git a/site/public/v1/games/warhammer-40-000-dawn-of-war-winter-assault/index.json b/site/public/v1/games/warhammer-40-000-dawn-of-war-winter-assault/index.json new file mode 100644 index 000000000000..f18da04081fb --- /dev/null +++ b/site/public/v1/games/warhammer-40-000-dawn-of-war-winter-assault/index.json @@ -0,0 +1,32 @@ +{ + "id": 168194, + "slug": "warhammer-40-000-dawn-of-war-winter-assault", + "name": "Warhammer 40,000: Dawn of War – Winter Assault", + "release_date": "2005-09-23", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "real-time strategy", + "science fiction video game" + ], + "stores": [], + "developers": [], + "publishers": [ + "THQ" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1154938" + ], + "created_at": "2026-07-10T10:10:50.859328", + "updated_at": "2026-07-10T10:10:50.859328", + "url": "/v1/games/warhammer-40-000-dawn-of-war-winter-assault" +} diff --git a/site/public/v1/games/warhammer-40-000-inquisitor-prophecy-q130721078/index.json b/site/public/v1/games/warhammer-40-000-inquisitor-prophecy-q130721078/index.json new file mode 100644 index 000000000000..2f53f474f3a1 --- /dev/null +++ b/site/public/v1/games/warhammer-40-000-inquisitor-prophecy-q130721078/index.json @@ -0,0 +1,25 @@ +{ + "id": 168203, + "slug": "warhammer-40-000-inquisitor-prophecy-q130721078", + "name": "Warhammer 40,000: Inquisitor - Prophecy", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130721078" + ], + "created_at": "2026-07-10T10:10:50.861291", + "updated_at": "2026-07-10T10:10:50.861291", + "url": "/v1/games/warhammer-40-000-inquisitor-prophecy-q130721078" +} diff --git a/site/public/v1/games/warhammer-online-age-of-reckoning-call-to-arms/index.json b/site/public/v1/games/warhammer-online-age-of-reckoning-call-to-arms/index.json new file mode 100644 index 000000000000..c06b832c42fa --- /dev/null +++ b/site/public/v1/games/warhammer-online-age-of-reckoning-call-to-arms/index.json @@ -0,0 +1,31 @@ +{ + "id": 168233, + "slug": "warhammer-online-age-of-reckoning-call-to-arms", + "name": "Warhammer Online: Age of Reckoning – Call to Arms", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "massively multiplayer online role-playing game" + ], + "stores": [], + "developers": [ + "Mythic Entertainment" + ], + "publishers": [ + "Electronic Arts" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110817165" + ], + "created_at": "2026-07-10T10:10:50.867333", + "updated_at": "2026-07-10T10:10:50.867333", + "url": "/v1/games/warhammer-online-age-of-reckoning-call-to-arms" +} diff --git a/site/public/v1/games/warhammer-vermintide-2-back-to-ubersreik/index.json b/site/public/v1/games/warhammer-vermintide-2-back-to-ubersreik/index.json new file mode 100644 index 000000000000..23d5d2b340b2 --- /dev/null +++ b/site/public/v1/games/warhammer-vermintide-2-back-to-ubersreik/index.json @@ -0,0 +1,31 @@ +{ + "id": 168242, + "slug": "warhammer-vermintide-2-back-to-ubersreik", + "name": "Warhammer: Vermintide 2 - Back to Ubersreik", + "release_date": "2018-12-10", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Fatshark" + ], + "publishers": [ + "Fatshark" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113179420" + ], + "created_at": "2026-07-10T10:10:50.869309", + "updated_at": "2026-07-10T10:10:50.869309", + "url": "/v1/games/warhammer-vermintide-2-back-to-ubersreik" +} diff --git a/site/public/v1/games/warhammer-vermintide-2-collector-s-edition-upgrade/index.json b/site/public/v1/games/warhammer-vermintide-2-collector-s-edition-upgrade/index.json new file mode 100644 index 000000000000..af660946f81f --- /dev/null +++ b/site/public/v1/games/warhammer-vermintide-2-collector-s-edition-upgrade/index.json @@ -0,0 +1,31 @@ +{ + "id": 168243, + "slug": "warhammer-vermintide-2-collector-s-edition-upgrade", + "name": "Warhammer: Vermintide 2 - Collector's Edition Upgrade", + "release_date": "2018-03-08", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Fatshark" + ], + "publishers": [ + "Fatshark" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113179403" + ], + "created_at": "2026-07-10T10:10:50.870235", + "updated_at": "2026-07-10T10:10:50.870235", + "url": "/v1/games/warhammer-vermintide-2-collector-s-edition-upgrade" +} diff --git a/site/public/v1/games/warhammer-vermintide-2-forgotten-relics-pack/index.json b/site/public/v1/games/warhammer-vermintide-2-forgotten-relics-pack/index.json new file mode 100644 index 000000000000..34accb932be0 --- /dev/null +++ b/site/public/v1/games/warhammer-vermintide-2-forgotten-relics-pack/index.json @@ -0,0 +1,31 @@ +{ + "id": 168244, + "slug": "warhammer-vermintide-2-forgotten-relics-pack", + "name": "Warhammer: Vermintide 2 - Forgotten Relics Pack", + "release_date": "2021-04-20", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Fatshark" + ], + "publishers": [ + "Fatshark" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113179548" + ], + "created_at": "2026-07-10T10:10:50.870235", + "updated_at": "2026-07-10T10:10:50.870235", + "url": "/v1/games/warhammer-vermintide-2-forgotten-relics-pack" +} diff --git a/site/public/v1/games/warhammer-vermintide-2-grail-knight-career/index.json b/site/public/v1/games/warhammer-vermintide-2-grail-knight-career/index.json new file mode 100644 index 000000000000..b4327b9bb17d --- /dev/null +++ b/site/public/v1/games/warhammer-vermintide-2-grail-knight-career/index.json @@ -0,0 +1,31 @@ +{ + "id": 168245, + "slug": "warhammer-vermintide-2-grail-knight-career", + "name": "Warhammer: Vermintide 2 - Grail Knight Career", + "release_date": "2020-06-23", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Fatshark" + ], + "publishers": [ + "Fatshark" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113179437" + ], + "created_at": "2026-07-10T10:10:50.870235", + "updated_at": "2026-07-10T10:10:50.870235", + "url": "/v1/games/warhammer-vermintide-2-grail-knight-career" +} diff --git a/site/public/v1/games/warhammer-vermintide-2-grail-knight-cosmetic-upgrade/index.json b/site/public/v1/games/warhammer-vermintide-2-grail-knight-cosmetic-upgrade/index.json new file mode 100644 index 000000000000..7f1abaeee8c3 --- /dev/null +++ b/site/public/v1/games/warhammer-vermintide-2-grail-knight-cosmetic-upgrade/index.json @@ -0,0 +1,31 @@ +{ + "id": 168246, + "slug": "warhammer-vermintide-2-grail-knight-cosmetic-upgrade", + "name": "Warhammer: Vermintide 2 - Grail Knight Cosmetic Upgrade", + "release_date": "2020-06-23", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Fatshark" + ], + "publishers": [ + "Fatshark" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113179443" + ], + "created_at": "2026-07-10T10:10:50.870235", + "updated_at": "2026-07-10T10:10:50.870235", + "url": "/v1/games/warhammer-vermintide-2-grail-knight-cosmetic-upgrade" +} diff --git a/site/public/v1/games/warhammer-vermintide-2-outcast-engineer-career/index.json b/site/public/v1/games/warhammer-vermintide-2-outcast-engineer-career/index.json new file mode 100644 index 000000000000..f42c753c9f76 --- /dev/null +++ b/site/public/v1/games/warhammer-vermintide-2-outcast-engineer-career/index.json @@ -0,0 +1,31 @@ +{ + "id": 168247, + "slug": "warhammer-vermintide-2-outcast-engineer-career", + "name": "Warhammer: Vermintide 2 - Outcast Engineer Career", + "release_date": "2020-11-19", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Fatshark" + ], + "publishers": [ + "Fatshark" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113179463" + ], + "created_at": "2026-07-10T10:10:50.871240", + "updated_at": "2026-07-10T10:10:50.871240", + "url": "/v1/games/warhammer-vermintide-2-outcast-engineer-career" +} diff --git a/site/public/v1/games/warhammer-vermintide-2-outcast-engineer-cosmetic-upgrade/index.json b/site/public/v1/games/warhammer-vermintide-2-outcast-engineer-cosmetic-upgrade/index.json new file mode 100644 index 000000000000..6ba19d912cfe --- /dev/null +++ b/site/public/v1/games/warhammer-vermintide-2-outcast-engineer-cosmetic-upgrade/index.json @@ -0,0 +1,31 @@ +{ + "id": 168248, + "slug": "warhammer-vermintide-2-outcast-engineer-cosmetic-upgrade", + "name": "Warhammer: Vermintide 2 - Outcast Engineer Cosmetic Upgrade", + "release_date": "2020-11-19", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Fatshark" + ], + "publishers": [ + "Fatshark" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113179507" + ], + "created_at": "2026-07-10T10:10:50.871240", + "updated_at": "2026-07-10T10:10:50.871240", + "url": "/v1/games/warhammer-vermintide-2-outcast-engineer-cosmetic-upgrade" +} diff --git a/site/public/v1/games/warhammer-vermintide-2-shadows-over-b-genhafen/index.json b/site/public/v1/games/warhammer-vermintide-2-shadows-over-b-genhafen/index.json new file mode 100644 index 000000000000..c06c956744ea --- /dev/null +++ b/site/public/v1/games/warhammer-vermintide-2-shadows-over-b-genhafen/index.json @@ -0,0 +1,31 @@ +{ + "id": 168249, + "slug": "warhammer-vermintide-2-shadows-over-b-genhafen", + "name": "Warhammer: Vermintide 2 - Shadows Over Bögenhafen", + "release_date": "2018-08-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Fatshark" + ], + "publishers": [ + "Fatshark" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113179411" + ], + "created_at": "2026-07-10T10:10:50.871240", + "updated_at": "2026-07-10T10:10:50.871240", + "url": "/v1/games/warhammer-vermintide-2-shadows-over-b-genhafen" +} diff --git a/site/public/v1/games/warhammer-vermintide-2-sister-of-the-thorn-cosmetic-upgrade/index.json b/site/public/v1/games/warhammer-vermintide-2-sister-of-the-thorn-cosmetic-upgrade/index.json new file mode 100644 index 000000000000..521688ea698b --- /dev/null +++ b/site/public/v1/games/warhammer-vermintide-2-sister-of-the-thorn-cosmetic-upgrade/index.json @@ -0,0 +1,31 @@ +{ + "id": 168250, + "slug": "warhammer-vermintide-2-sister-of-the-thorn-cosmetic-upgrade", + "name": "Warhammer: Vermintide 2 - Sister of the Thorn Cosmetic Upgrade", + "release_date": "2021-06-03", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Fatshark" + ], + "publishers": [ + "Fatshark" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113179654" + ], + "created_at": "2026-07-10T10:10:50.871240", + "updated_at": "2026-07-10T10:10:50.871240", + "url": "/v1/games/warhammer-vermintide-2-sister-of-the-thorn-cosmetic-upgrade" +} diff --git a/site/public/v1/games/warhammer-vermintide-2-sister-of-the-thorn/index.json b/site/public/v1/games/warhammer-vermintide-2-sister-of-the-thorn/index.json new file mode 100644 index 000000000000..bb4a039c52f2 --- /dev/null +++ b/site/public/v1/games/warhammer-vermintide-2-sister-of-the-thorn/index.json @@ -0,0 +1,31 @@ +{ + "id": 168251, + "slug": "warhammer-vermintide-2-sister-of-the-thorn", + "name": "Warhammer: Vermintide 2 - Sister of the Thorn", + "release_date": "2021-06-03", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Fatshark" + ], + "publishers": [ + "Fatshark" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113179597" + ], + "created_at": "2026-07-10T10:10:50.871240", + "updated_at": "2026-07-10T10:10:50.871240", + "url": "/v1/games/warhammer-vermintide-2-sister-of-the-thorn" +} diff --git a/site/public/v1/games/warhammer-vermintide-2-winds-of-magic/index.json b/site/public/v1/games/warhammer-vermintide-2-winds-of-magic/index.json new file mode 100644 index 000000000000..db20d7453c19 --- /dev/null +++ b/site/public/v1/games/warhammer-vermintide-2-winds-of-magic/index.json @@ -0,0 +1,31 @@ +{ + "id": 168252, + "slug": "warhammer-vermintide-2-winds-of-magic", + "name": "Warhammer: Vermintide 2 - Winds of Magic", + "release_date": "2019-08-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Fatshark" + ], + "publishers": [ + "Fatshark" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113179430" + ], + "created_at": "2026-07-10T10:10:50.872245", + "updated_at": "2026-07-10T10:10:50.872245", + "url": "/v1/games/warhammer-vermintide-2-winds-of-magic" +} diff --git a/site/public/v1/games/warhound/index.json b/site/public/v1/games/warhound/index.json new file mode 100644 index 000000000000..62ac243b6275 --- /dev/null +++ b/site/public/v1/games/warhound/index.json @@ -0,0 +1,30 @@ +{ + "id": 168264, + "slug": "warhound", + "name": "Warhound", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "action game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110727465" + ], + "created_at": "2026-07-10T10:10:50.874305", + "updated_at": "2026-07-10T10:10:50.874305", + "url": "/v1/games/warhound" +} diff --git a/site/public/v1/games/warlords-ds/index.json b/site/public/v1/games/warlords-ds/index.json new file mode 100644 index 000000000000..838246034b33 --- /dev/null +++ b/site/public/v1/games/warlords-ds/index.json @@ -0,0 +1,27 @@ +{ + "id": 168338, + "slug": "warlords-ds", + "name": "Warlords DS", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Nintendo DS" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4052956" + ], + "created_at": "2026-07-10T10:10:50.891906", + "updated_at": "2026-07-10T10:10:50.891906", + "url": "/v1/games/warlords-ds" +} diff --git a/site/public/v1/games/warlords-i-ii/index.json b/site/public/v1/games/warlords-i-ii/index.json new file mode 100644 index 000000000000..2dfc2ae7f05c --- /dev/null +++ b/site/public/v1/games/warlords-i-ii/index.json @@ -0,0 +1,29 @@ +{ + "id": 168339, + "slug": "warlords-i-ii", + "name": "Warlords I + II", + "release_date": "2024-05-15", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "strategy video game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135453284" + ], + "created_at": "2026-07-10T10:10:50.892918", + "updated_at": "2026-07-10T10:10:50.892918", + "url": "/v1/games/warlords-i-ii" +} diff --git a/site/public/v1/games/warno-northag/index.json b/site/public/v1/games/warno-northag/index.json new file mode 100644 index 000000000000..f1907b3103c4 --- /dev/null +++ b/site/public/v1/games/warno-northag/index.json @@ -0,0 +1,25 @@ +{ + "id": 168373, + "slug": "warno-northag", + "name": "Warno: Northag", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140472070" + ], + "created_at": "2026-07-10T10:10:50.901890", + "updated_at": "2026-07-10T10:10:50.901890", + "url": "/v1/games/warno-northag" +} diff --git a/site/public/v1/games/warrior-pack/index.json b/site/public/v1/games/warrior-pack/index.json new file mode 100644 index 000000000000..19e5e733987b --- /dev/null +++ b/site/public/v1/games/warrior-pack/index.json @@ -0,0 +1,28 @@ +{ + "id": 168461, + "slug": "warrior-pack", + "name": "Warrior Pack", + "release_date": "2011-12-20", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 3", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60617371" + ], + "created_at": "2026-07-10T10:10:50.924921", + "updated_at": "2026-07-10T10:10:50.924921", + "url": "/v1/games/warrior-pack" +} diff --git a/site/public/v1/games/wars-across-the-world-agathocles-312/index.json b/site/public/v1/games/wars-across-the-world-agathocles-312/index.json new file mode 100644 index 000000000000..489028f365ba --- /dev/null +++ b/site/public/v1/games/wars-across-the-world-agathocles-312/index.json @@ -0,0 +1,30 @@ +{ + "id": 168504, + "slug": "wars-across-the-world-agathocles-312", + "name": "Wars Across the World: Agathocles 312", + "release_date": "2022-02-21", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Strategiae" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118135148" + ], + "created_at": "2026-07-10T10:10:50.964844", + "updated_at": "2026-07-10T10:10:50.964844", + "url": "/v1/games/wars-across-the-world-agathocles-312" +} diff --git a/site/public/v1/games/wars-across-the-world-armada-1588/index.json b/site/public/v1/games/wars-across-the-world-armada-1588/index.json new file mode 100644 index 000000000000..10ada86618bf --- /dev/null +++ b/site/public/v1/games/wars-across-the-world-armada-1588/index.json @@ -0,0 +1,32 @@ +{ + "id": 168505, + "slug": "wars-across-the-world-armada-1588", + "name": "Wars Across the World: Armada 1588", + "release_date": "2018-11-27", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Strategiae" + ], + "publishers": [ + "Strategiae" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118135199" + ], + "created_at": "2026-07-10T10:10:50.964844", + "updated_at": "2026-07-10T10:10:50.964844", + "url": "/v1/games/wars-across-the-world-armada-1588" +} diff --git a/site/public/v1/games/wars-across-the-world-austerlitz-1805/index.json b/site/public/v1/games/wars-across-the-world-austerlitz-1805/index.json new file mode 100644 index 000000000000..b7cea53cbf85 --- /dev/null +++ b/site/public/v1/games/wars-across-the-world-austerlitz-1805/index.json @@ -0,0 +1,30 @@ +{ + "id": 168506, + "slug": "wars-across-the-world-austerlitz-1805", + "name": "Wars Across the World: Austerlitz 1805", + "release_date": "2017-05-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Strategiae" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118134767" + ], + "created_at": "2026-07-10T10:10:50.965842", + "updated_at": "2026-07-10T10:10:50.965842", + "url": "/v1/games/wars-across-the-world-austerlitz-1805" +} diff --git a/site/public/v1/games/wars-across-the-world-bosworth-1485/index.json b/site/public/v1/games/wars-across-the-world-bosworth-1485/index.json new file mode 100644 index 000000000000..4d6b8e57034e --- /dev/null +++ b/site/public/v1/games/wars-across-the-world-bosworth-1485/index.json @@ -0,0 +1,30 @@ +{ + "id": 168507, + "slug": "wars-across-the-world-bosworth-1485", + "name": "Wars Across The World: Bosworth 1485", + "release_date": "2020-01-29", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Strategiae" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118134821" + ], + "created_at": "2026-07-10T10:10:50.965842", + "updated_at": "2026-07-10T10:10:50.965842", + "url": "/v1/games/wars-across-the-world-bosworth-1485" +} diff --git a/site/public/v1/games/wars-across-the-world-bouvines-1214/index.json b/site/public/v1/games/wars-across-the-world-bouvines-1214/index.json new file mode 100644 index 000000000000..d64b4a2c5083 --- /dev/null +++ b/site/public/v1/games/wars-across-the-world-bouvines-1214/index.json @@ -0,0 +1,30 @@ +{ + "id": 168508, + "slug": "wars-across-the-world-bouvines-1214", + "name": "Wars Across The World: Bouvines 1214", + "release_date": "2021-02-11", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Strategiae" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118134843" + ], + "created_at": "2026-07-10T10:10:50.966907", + "updated_at": "2026-07-10T10:10:50.966907", + "url": "/v1/games/wars-across-the-world-bouvines-1214" +} diff --git a/site/public/v1/games/wars-across-the-world-bulge-1944/index.json b/site/public/v1/games/wars-across-the-world-bulge-1944/index.json new file mode 100644 index 000000000000..c703b6be133e --- /dev/null +++ b/site/public/v1/games/wars-across-the-world-bulge-1944/index.json @@ -0,0 +1,30 @@ +{ + "id": 168509, + "slug": "wars-across-the-world-bulge-1944", + "name": "Wars across the World: Bulge 1944", + "release_date": "2017-05-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Strategiae" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118134802" + ], + "created_at": "2026-07-10T10:10:50.966907", + "updated_at": "2026-07-10T10:10:50.966907", + "url": "/v1/games/wars-across-the-world-bulge-1944" +} diff --git a/site/public/v1/games/wars-across-the-world-bull-run-1861/index.json b/site/public/v1/games/wars-across-the-world-bull-run-1861/index.json new file mode 100644 index 000000000000..1c234596952f --- /dev/null +++ b/site/public/v1/games/wars-across-the-world-bull-run-1861/index.json @@ -0,0 +1,30 @@ +{ + "id": 168510, + "slug": "wars-across-the-world-bull-run-1861", + "name": "Wars Across the World: Bull Run 1861", + "release_date": "2017-05-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Strategiae" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118134772" + ], + "created_at": "2026-07-10T10:10:50.966907", + "updated_at": "2026-07-10T10:10:50.966907", + "url": "/v1/games/wars-across-the-world-bull-run-1861" +} diff --git a/site/public/v1/games/wars-across-the-world-burma-1942/index.json b/site/public/v1/games/wars-across-the-world-burma-1942/index.json new file mode 100644 index 000000000000..afbe4b13d2e5 --- /dev/null +++ b/site/public/v1/games/wars-across-the-world-burma-1942/index.json @@ -0,0 +1,30 @@ +{ + "id": 168511, + "slug": "wars-across-the-world-burma-1942", + "name": "Wars Across The World: Burma 1942", + "release_date": "2019-10-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Strategiae" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118135178" + ], + "created_at": "2026-07-10T10:10:50.967954", + "updated_at": "2026-07-10T10:10:50.967954", + "url": "/v1/games/wars-across-the-world-burma-1942" +} diff --git a/site/public/v1/games/wars-across-the-world-byzantium-1116/index.json b/site/public/v1/games/wars-across-the-world-byzantium-1116/index.json new file mode 100644 index 000000000000..497c97da4df9 --- /dev/null +++ b/site/public/v1/games/wars-across-the-world-byzantium-1116/index.json @@ -0,0 +1,30 @@ +{ + "id": 168512, + "slug": "wars-across-the-world-byzantium-1116", + "name": "Wars Across the World: Byzantium 1116", + "release_date": "2018-07-31", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Strategiae" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118134815" + ], + "created_at": "2026-07-10T10:10:50.967954", + "updated_at": "2026-07-10T10:10:50.967954", + "url": "/v1/games/wars-across-the-world-byzantium-1116" +} diff --git a/site/public/v1/games/wars-across-the-world-caesar-54/index.json b/site/public/v1/games/wars-across-the-world-caesar-54/index.json new file mode 100644 index 000000000000..72909f369622 --- /dev/null +++ b/site/public/v1/games/wars-across-the-world-caesar-54/index.json @@ -0,0 +1,30 @@ +{ + "id": 168513, + "slug": "wars-across-the-world-caesar-54", + "name": "Wars Across the World: Caesar 54", + "release_date": "2020-12-15", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Strategiae" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118134832" + ], + "created_at": "2026-07-10T10:10:50.968947", + "updated_at": "2026-07-10T10:10:50.968947", + "url": "/v1/games/wars-across-the-world-caesar-54" +} diff --git a/site/public/v1/games/wars-across-the-world-caesar-56/index.json b/site/public/v1/games/wars-across-the-world-caesar-56/index.json new file mode 100644 index 000000000000..32cd0b35d9de --- /dev/null +++ b/site/public/v1/games/wars-across-the-world-caesar-56/index.json @@ -0,0 +1,30 @@ +{ + "id": 168514, + "slug": "wars-across-the-world-caesar-56", + "name": "Wars Across the World: Caesar 56", + "release_date": "2020-08-27", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Strategiae" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118134829" + ], + "created_at": "2026-07-10T10:10:50.968947", + "updated_at": "2026-07-10T10:10:50.968947", + "url": "/v1/games/wars-across-the-world-caesar-56" +} diff --git a/site/public/v1/games/wars-across-the-world-caesar-57/index.json b/site/public/v1/games/wars-across-the-world-caesar-57/index.json new file mode 100644 index 000000000000..9ca13f421ca3 --- /dev/null +++ b/site/public/v1/games/wars-across-the-world-caesar-57/index.json @@ -0,0 +1,30 @@ +{ + "id": 168515, + "slug": "wars-across-the-world-caesar-57", + "name": "Wars Across the World: Caesar 57", + "release_date": "2020-06-10", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Strategiae" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118134813" + ], + "created_at": "2026-07-10T10:10:50.968947", + "updated_at": "2026-07-10T10:10:50.968947", + "url": "/v1/games/wars-across-the-world-caesar-57" +} diff --git a/site/public/v1/games/wars-across-the-world-caesar-58/index.json b/site/public/v1/games/wars-across-the-world-caesar-58/index.json new file mode 100644 index 000000000000..e2f6f3aa90fe --- /dev/null +++ b/site/public/v1/games/wars-across-the-world-caesar-58/index.json @@ -0,0 +1,30 @@ +{ + "id": 168516, + "slug": "wars-across-the-world-caesar-58", + "name": "Wars Across the World: Caesar 58", + "release_date": "2020-04-30", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Strategiae" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118134810" + ], + "created_at": "2026-07-10T10:10:50.969917", + "updated_at": "2026-07-10T10:10:50.969917", + "url": "/v1/games/wars-across-the-world-caesar-58" +} diff --git a/site/public/v1/games/wars-across-the-world-carrhae-53/index.json b/site/public/v1/games/wars-across-the-world-carrhae-53/index.json new file mode 100644 index 000000000000..edae60921549 --- /dev/null +++ b/site/public/v1/games/wars-across-the-world-carrhae-53/index.json @@ -0,0 +1,30 @@ +{ + "id": 168517, + "slug": "wars-across-the-world-carrhae-53", + "name": "Wars Across the World: Carrhae 53", + "release_date": "2017-05-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Strategiae" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118134789" + ], + "created_at": "2026-07-10T10:10:50.969917", + "updated_at": "2026-07-10T10:10:50.969917", + "url": "/v1/games/wars-across-the-world-carrhae-53" +} diff --git a/site/public/v1/games/wars-across-the-world-columbus-1492/index.json b/site/public/v1/games/wars-across-the-world-columbus-1492/index.json new file mode 100644 index 000000000000..71d101028e8f --- /dev/null +++ b/site/public/v1/games/wars-across-the-world-columbus-1492/index.json @@ -0,0 +1,30 @@ +{ + "id": 168518, + "slug": "wars-across-the-world-columbus-1492", + "name": "Wars Across The World: Columbus 1492", + "release_date": "2020-09-29", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Strategiae" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118134822" + ], + "created_at": "2026-07-10T10:10:50.969917", + "updated_at": "2026-07-10T10:10:50.969917", + "url": "/v1/games/wars-across-the-world-columbus-1492" +} diff --git a/site/public/v1/games/wars-across-the-world-congo-1964/index.json b/site/public/v1/games/wars-across-the-world-congo-1964/index.json new file mode 100644 index 000000000000..0537a6c4f072 --- /dev/null +++ b/site/public/v1/games/wars-across-the-world-congo-1964/index.json @@ -0,0 +1,30 @@ +{ + "id": 168519, + "slug": "wars-across-the-world-congo-1964", + "name": "Wars Across the World: Congo 1964", + "release_date": "2017-06-21", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Strategiae" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118134782" + ], + "created_at": "2026-07-10T10:10:50.969917", + "updated_at": "2026-07-10T10:10:50.969917", + "url": "/v1/games/wars-across-the-world-congo-1964" +} diff --git a/site/public/v1/games/wars-across-the-world-coral-sea-1942/index.json b/site/public/v1/games/wars-across-the-world-coral-sea-1942/index.json new file mode 100644 index 000000000000..981e74679a1f --- /dev/null +++ b/site/public/v1/games/wars-across-the-world-coral-sea-1942/index.json @@ -0,0 +1,32 @@ +{ + "id": 168520, + "slug": "wars-across-the-world-coral-sea-1942", + "name": "Wars Across The World: Coral Sea 1942", + "release_date": "2020-05-26", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Strategiae" + ], + "publishers": [ + "Strategiae" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118135190" + ], + "created_at": "2026-07-10T10:10:50.970931", + "updated_at": "2026-07-10T10:10:50.970931", + "url": "/v1/games/wars-across-the-world-coral-sea-1942" +} diff --git a/site/public/v1/games/wars-across-the-world-cortenuova-1237/index.json b/site/public/v1/games/wars-across-the-world-cortenuova-1237/index.json new file mode 100644 index 000000000000..b6b94d632806 --- /dev/null +++ b/site/public/v1/games/wars-across-the-world-cortenuova-1237/index.json @@ -0,0 +1,30 @@ +{ + "id": 168521, + "slug": "wars-across-the-world-cortenuova-1237", + "name": "Wars Across The World: Cortenuova 1237", + "release_date": "2021-09-30", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Strategiae" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118134853" + ], + "created_at": "2026-07-10T10:10:50.970931", + "updated_at": "2026-07-10T10:10:50.970931", + "url": "/v1/games/wars-across-the-world-cortenuova-1237" +} diff --git a/site/public/v1/games/wars-across-the-world-curupayti-1866/index.json b/site/public/v1/games/wars-across-the-world-curupayti-1866/index.json new file mode 100644 index 000000000000..4c4662c0feb0 --- /dev/null +++ b/site/public/v1/games/wars-across-the-world-curupayti-1866/index.json @@ -0,0 +1,30 @@ +{ + "id": 168522, + "slug": "wars-across-the-world-curupayti-1866", + "name": "Wars Across The World: Curupayti 1866", + "release_date": "2022-05-25", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Strategiae" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118134855" + ], + "created_at": "2026-07-10T10:10:50.970931", + "updated_at": "2026-07-10T10:10:50.970931", + "url": "/v1/games/wars-across-the-world-curupayti-1866" +} diff --git a/site/public/v1/games/wars-across-the-world-dublin-1916/index.json b/site/public/v1/games/wars-across-the-world-dublin-1916/index.json new file mode 100644 index 000000000000..b1994643721a --- /dev/null +++ b/site/public/v1/games/wars-across-the-world-dublin-1916/index.json @@ -0,0 +1,30 @@ +{ + "id": 168523, + "slug": "wars-across-the-world-dublin-1916", + "name": "Wars Across The World: Dublin 1916", + "release_date": "2021-11-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Strategiae" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118135182" + ], + "created_at": "2026-07-10T10:10:50.970931", + "updated_at": "2026-07-10T10:10:50.970931", + "url": "/v1/games/wars-across-the-world-dublin-1916" +} diff --git a/site/public/v1/games/wars-across-the-world-estonia-1918/index.json b/site/public/v1/games/wars-across-the-world-estonia-1918/index.json new file mode 100644 index 000000000000..145876a1c437 --- /dev/null +++ b/site/public/v1/games/wars-across-the-world-estonia-1918/index.json @@ -0,0 +1,30 @@ +{ + "id": 168524, + "slug": "wars-across-the-world-estonia-1918", + "name": "Wars Across the World: Estonia 1918", + "release_date": "2018-02-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Strategiae" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118135164" + ], + "created_at": "2026-07-10T10:10:50.972027", + "updated_at": "2026-07-10T10:10:50.972027", + "url": "/v1/games/wars-across-the-world-estonia-1918" +} diff --git a/site/public/v1/games/wars-across-the-world-eunus-133/index.json b/site/public/v1/games/wars-across-the-world-eunus-133/index.json new file mode 100644 index 000000000000..5c526d1bc6a8 --- /dev/null +++ b/site/public/v1/games/wars-across-the-world-eunus-133/index.json @@ -0,0 +1,30 @@ +{ + "id": 168525, + "slug": "wars-across-the-world-eunus-133", + "name": "Wars Across The World: Eunus 133", + "release_date": "2022-06-21", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Strategiae" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118135183" + ], + "created_at": "2026-07-10T10:10:50.972027", + "updated_at": "2026-07-10T10:10:50.972027", + "url": "/v1/games/wars-across-the-world-eunus-133" +} diff --git a/site/public/v1/games/wars-across-the-world-finland-1808/index.json b/site/public/v1/games/wars-across-the-world-finland-1808/index.json new file mode 100644 index 000000000000..475f299ccc6e --- /dev/null +++ b/site/public/v1/games/wars-across-the-world-finland-1808/index.json @@ -0,0 +1,30 @@ +{ + "id": 168526, + "slug": "wars-across-the-world-finland-1808", + "name": "Wars Across The World: Finland 1808", + "release_date": "2022-11-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Strategiae" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118135185" + ], + "created_at": "2026-07-10T10:10:50.972027", + "updated_at": "2026-07-10T10:10:50.972027", + "url": "/v1/games/wars-across-the-world-finland-1808" +} diff --git a/site/public/v1/games/wars-across-the-world-finland-1918/index.json b/site/public/v1/games/wars-across-the-world-finland-1918/index.json new file mode 100644 index 000000000000..df3e1d7f1671 --- /dev/null +++ b/site/public/v1/games/wars-across-the-world-finland-1918/index.json @@ -0,0 +1,30 @@ +{ + "id": 168527, + "slug": "wars-across-the-world-finland-1918", + "name": "Wars Across the World: Finland 1918", + "release_date": "2017-09-15", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Strategiae" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118134796" + ], + "created_at": "2026-07-10T10:10:50.972027", + "updated_at": "2026-07-10T10:10:50.972027", + "url": "/v1/games/wars-across-the-world-finland-1918" +} diff --git a/site/public/v1/games/wars-across-the-world-fornovo-1495/index.json b/site/public/v1/games/wars-across-the-world-fornovo-1495/index.json new file mode 100644 index 000000000000..3f77fc655e04 --- /dev/null +++ b/site/public/v1/games/wars-across-the-world-fornovo-1495/index.json @@ -0,0 +1,30 @@ +{ + "id": 168528, + "slug": "wars-across-the-world-fornovo-1495", + "name": "Wars Across the World: Fornovo 1495", + "release_date": "2019-04-23", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Strategiae" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118134803" + ], + "created_at": "2026-07-10T10:10:50.972995", + "updated_at": "2026-07-10T10:10:50.972995", + "url": "/v1/games/wars-across-the-world-fornovo-1495" +} diff --git a/site/public/v1/games/wars-across-the-world-franche-comt-1636/index.json b/site/public/v1/games/wars-across-the-world-franche-comt-1636/index.json new file mode 100644 index 000000000000..b03d296c8add --- /dev/null +++ b/site/public/v1/games/wars-across-the-world-franche-comt-1636/index.json @@ -0,0 +1,30 @@ +{ + "id": 168529, + "slug": "wars-across-the-world-franche-comt-1636", + "name": "Wars Across The World: Franche-Comté 1636", + "release_date": "2020-02-27", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Strategiae" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118134824" + ], + "created_at": "2026-07-10T10:10:50.972995", + "updated_at": "2026-07-10T10:10:50.972995", + "url": "/v1/games/wars-across-the-world-franche-comt-1636" +} diff --git a/site/public/v1/games/wars-across-the-world-galicia-1914/index.json b/site/public/v1/games/wars-across-the-world-galicia-1914/index.json new file mode 100644 index 000000000000..e0d2bc1dc385 --- /dev/null +++ b/site/public/v1/games/wars-across-the-world-galicia-1914/index.json @@ -0,0 +1,30 @@ +{ + "id": 168530, + "slug": "wars-across-the-world-galicia-1914", + "name": "Wars Across The World: Galicia 1914", + "release_date": "2020-08-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Strategiae" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118134839" + ], + "created_at": "2026-07-10T10:10:50.972995", + "updated_at": "2026-07-10T10:10:50.972995", + "url": "/v1/games/wars-across-the-world-galicia-1914" +} diff --git a/site/public/v1/games/wars-across-the-world-gandamak1842/index.json b/site/public/v1/games/wars-across-the-world-gandamak1842/index.json new file mode 100644 index 000000000000..6d45d10ddc5b --- /dev/null +++ b/site/public/v1/games/wars-across-the-world-gandamak1842/index.json @@ -0,0 +1,30 @@ +{ + "id": 168531, + "slug": "wars-across-the-world-gandamak1842", + "name": "Wars Across the World: Gandamak1842", + "release_date": "2019-06-03", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Strategiae" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118134809" + ], + "created_at": "2026-07-10T10:10:50.974009", + "updated_at": "2026-07-10T10:10:50.974009", + "url": "/v1/games/wars-across-the-world-gandamak1842" +} diff --git a/site/public/v1/games/wars-across-the-world-gulf-1990/index.json b/site/public/v1/games/wars-across-the-world-gulf-1990/index.json new file mode 100644 index 000000000000..10ac04f5637d --- /dev/null +++ b/site/public/v1/games/wars-across-the-world-gulf-1990/index.json @@ -0,0 +1,30 @@ +{ + "id": 168532, + "slug": "wars-across-the-world-gulf-1990", + "name": "Wars Across the World: Gulf 1990", + "release_date": "2018-11-27", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Strategiae" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118134794" + ], + "created_at": "2026-07-10T10:10:50.974009", + "updated_at": "2026-07-10T10:10:50.974009", + "url": "/v1/games/wars-across-the-world-gulf-1990" +} diff --git a/site/public/v1/games/wars-across-the-world-hamilkar-264/index.json b/site/public/v1/games/wars-across-the-world-hamilkar-264/index.json new file mode 100644 index 000000000000..388a9c0f31ce --- /dev/null +++ b/site/public/v1/games/wars-across-the-world-hamilkar-264/index.json @@ -0,0 +1,30 @@ +{ + "id": 168533, + "slug": "wars-across-the-world-hamilkar-264", + "name": "Wars Across the World: Hamilkar 264", + "release_date": "2017-05-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Strategiae" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118134780" + ], + "created_at": "2026-07-10T10:10:50.974009", + "updated_at": "2026-07-10T10:10:50.974009", + "url": "/v1/games/wars-across-the-world-hamilkar-264" +} diff --git a/site/public/v1/games/wars-across-the-world-illyria-229/index.json b/site/public/v1/games/wars-across-the-world-illyria-229/index.json new file mode 100644 index 000000000000..cedc45c6bfa8 --- /dev/null +++ b/site/public/v1/games/wars-across-the-world-illyria-229/index.json @@ -0,0 +1,30 @@ +{ + "id": 168534, + "slug": "wars-across-the-world-illyria-229", + "name": "Wars Across The World: Illyria 229", + "release_date": "2019-08-09", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Strategiae" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118134838" + ], + "created_at": "2026-07-10T10:10:50.974009", + "updated_at": "2026-07-10T10:10:50.974009", + "url": "/v1/games/wars-across-the-world-illyria-229" +} diff --git a/site/public/v1/games/wars-across-the-world-innsmouth-1928/index.json b/site/public/v1/games/wars-across-the-world-innsmouth-1928/index.json new file mode 100644 index 000000000000..60d3f7588fac --- /dev/null +++ b/site/public/v1/games/wars-across-the-world-innsmouth-1928/index.json @@ -0,0 +1,30 @@ +{ + "id": 168535, + "slug": "wars-across-the-world-innsmouth-1928", + "name": "Wars Across The World: Innsmouth 1928", + "release_date": "2018-11-27", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Strategiae" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118134820" + ], + "created_at": "2026-07-10T10:10:50.975025", + "updated_at": "2026-07-10T10:10:50.975025", + "url": "/v1/games/wars-across-the-world-innsmouth-1928" +} diff --git a/site/public/v1/games/wars-across-the-world-kavkaz-1804/index.json b/site/public/v1/games/wars-across-the-world-kavkaz-1804/index.json new file mode 100644 index 000000000000..a8f0f121cca0 --- /dev/null +++ b/site/public/v1/games/wars-across-the-world-kavkaz-1804/index.json @@ -0,0 +1,30 @@ +{ + "id": 168536, + "slug": "wars-across-the-world-kavkaz-1804", + "name": "Wars Across the World: Kavkaz 1804", + "release_date": "2017-10-20", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Strategiae" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118134797" + ], + "created_at": "2026-07-10T10:10:50.975025", + "updated_at": "2026-07-10T10:10:50.975025", + "url": "/v1/games/wars-across-the-world-kavkaz-1804" +} diff --git a/site/public/v1/games/wars-across-the-world-kentucky-1861/index.json b/site/public/v1/games/wars-across-the-world-kentucky-1861/index.json new file mode 100644 index 000000000000..af9d6fcc4cd3 --- /dev/null +++ b/site/public/v1/games/wars-across-the-world-kentucky-1861/index.json @@ -0,0 +1,30 @@ +{ + "id": 168537, + "slug": "wars-across-the-world-kentucky-1861", + "name": "Wars Across the World: Kentucky 1861", + "release_date": "2017-05-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Strategiae" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118134774" + ], + "created_at": "2026-07-10T10:10:50.975025", + "updated_at": "2026-07-10T10:10:50.975025", + "url": "/v1/games/wars-across-the-world-kentucky-1861" +} diff --git a/site/public/v1/games/wars-across-the-world-kippur-1973/index.json b/site/public/v1/games/wars-across-the-world-kippur-1973/index.json new file mode 100644 index 000000000000..acf6691c10c9 --- /dev/null +++ b/site/public/v1/games/wars-across-the-world-kippur-1973/index.json @@ -0,0 +1,30 @@ +{ + "id": 168538, + "slug": "wars-across-the-world-kippur-1973", + "name": "Wars Across The World: Kippur 1973", + "release_date": "2020-10-06", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Strategiae" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118134834" + ], + "created_at": "2026-07-10T10:10:50.975025", + "updated_at": "2026-07-10T10:10:50.975025", + "url": "/v1/games/wars-across-the-world-kippur-1973" +} diff --git a/site/public/v1/games/wars-across-the-world-koenigsberg-1945/index.json b/site/public/v1/games/wars-across-the-world-koenigsberg-1945/index.json new file mode 100644 index 000000000000..f42d616e52f8 --- /dev/null +++ b/site/public/v1/games/wars-across-the-world-koenigsberg-1945/index.json @@ -0,0 +1,30 @@ +{ + "id": 168539, + "slug": "wars-across-the-world-koenigsberg-1945", + "name": "Wars Across the World: Koenigsberg 1945", + "release_date": "2018-06-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Strategiae" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118135169" + ], + "created_at": "2026-07-10T10:10:50.976000", + "updated_at": "2026-07-10T10:10:50.976000", + "url": "/v1/games/wars-across-the-world-koenigsberg-1945" +} diff --git a/site/public/v1/games/wars-across-the-world-korea-1592/index.json b/site/public/v1/games/wars-across-the-world-korea-1592/index.json new file mode 100644 index 000000000000..9d9430fc1d84 --- /dev/null +++ b/site/public/v1/games/wars-across-the-world-korea-1592/index.json @@ -0,0 +1,30 @@ +{ + "id": 168540, + "slug": "wars-across-the-world-korea-1592", + "name": "Wars Across The World: Korea 1592", + "release_date": "2021-01-14", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Strategiae" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118134846" + ], + "created_at": "2026-07-10T10:10:50.976000", + "updated_at": "2026-07-10T10:10:50.976000", + "url": "/v1/games/wars-across-the-world-korea-1592" +} diff --git a/site/public/v1/games/wars-across-the-world-korea-1950/index.json b/site/public/v1/games/wars-across-the-world-korea-1950/index.json new file mode 100644 index 000000000000..34010573b786 --- /dev/null +++ b/site/public/v1/games/wars-across-the-world-korea-1950/index.json @@ -0,0 +1,30 @@ +{ + "id": 168541, + "slug": "wars-across-the-world-korea-1950", + "name": "Wars Across the World: Korea 1950", + "release_date": "2017-05-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Strategiae" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118134768" + ], + "created_at": "2026-07-10T10:10:50.976000", + "updated_at": "2026-07-10T10:10:50.976000", + "url": "/v1/games/wars-across-the-world-korea-1950" +} diff --git a/site/public/v1/games/wars-across-the-world-levant-1941/index.json b/site/public/v1/games/wars-across-the-world-levant-1941/index.json new file mode 100644 index 000000000000..e2b94e92edd2 --- /dev/null +++ b/site/public/v1/games/wars-across-the-world-levant-1941/index.json @@ -0,0 +1,30 @@ +{ + "id": 168542, + "slug": "wars-across-the-world-levant-1941", + "name": "Wars Across The World: Levant 1941", + "release_date": "2021-06-16", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Strategiae" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118134850" + ], + "created_at": "2026-07-10T10:10:50.976000", + "updated_at": "2026-07-10T10:10:50.976000", + "url": "/v1/games/wars-across-the-world-levant-1941" +} diff --git a/site/public/v1/games/wars-across-the-world-malaya-1941/index.json b/site/public/v1/games/wars-across-the-world-malaya-1941/index.json new file mode 100644 index 000000000000..0f8b62c8d3b5 --- /dev/null +++ b/site/public/v1/games/wars-across-the-world-malaya-1941/index.json @@ -0,0 +1,30 @@ +{ + "id": 168543, + "slug": "wars-across-the-world-malaya-1941", + "name": "Wars Across the World: Malaya 1941", + "release_date": "2018-03-29", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Strategiae" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118134806" + ], + "created_at": "2026-07-10T10:10:50.978094", + "updated_at": "2026-07-10T10:10:50.978094", + "url": "/v1/games/wars-across-the-world-malaya-1941" +} diff --git a/site/public/v1/games/wars-across-the-world-mali-2012/index.json b/site/public/v1/games/wars-across-the-world-mali-2012/index.json new file mode 100644 index 000000000000..f143efc28dde --- /dev/null +++ b/site/public/v1/games/wars-across-the-world-mali-2012/index.json @@ -0,0 +1,30 @@ +{ + "id": 168544, + "slug": "wars-across-the-world-mali-2012", + "name": "Wars Across the World: Mali 2012", + "release_date": "2017-05-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Strategiae" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118134785" + ], + "created_at": "2026-07-10T10:10:50.982042", + "updated_at": "2026-07-10T10:10:50.982042", + "url": "/v1/games/wars-across-the-world-mali-2012" +} diff --git a/site/public/v1/games/wars-across-the-world-manchuria-1945/index.json b/site/public/v1/games/wars-across-the-world-manchuria-1945/index.json new file mode 100644 index 000000000000..53000869cc41 --- /dev/null +++ b/site/public/v1/games/wars-across-the-world-manchuria-1945/index.json @@ -0,0 +1,30 @@ +{ + "id": 168545, + "slug": "wars-across-the-world-manchuria-1945", + "name": "Wars Across The World: Manchuria 1945", + "release_date": "2021-08-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Strategiae" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118135180" + ], + "created_at": "2026-07-10T10:10:50.985024", + "updated_at": "2026-07-10T10:10:50.985024", + "url": "/v1/games/wars-across-the-world-manchuria-1945" +} diff --git a/site/public/v1/games/wars-across-the-world-mexico-1519/index.json b/site/public/v1/games/wars-across-the-world-mexico-1519/index.json new file mode 100644 index 000000000000..5937fc85c933 --- /dev/null +++ b/site/public/v1/games/wars-across-the-world-mexico-1519/index.json @@ -0,0 +1,30 @@ +{ + "id": 168546, + "slug": "wars-across-the-world-mexico-1519", + "name": "Wars Across The World: Mexico 1519", + "release_date": "2018-12-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Strategiae" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118135171" + ], + "created_at": "2026-07-10T10:10:50.987746", + "updated_at": "2026-07-10T10:10:50.988770", + "url": "/v1/games/wars-across-the-world-mexico-1519" +} diff --git a/site/public/v1/games/wars-across-the-world-missouri-1861/index.json b/site/public/v1/games/wars-across-the-world-missouri-1861/index.json new file mode 100644 index 000000000000..658e17e2cff4 --- /dev/null +++ b/site/public/v1/games/wars-across-the-world-missouri-1861/index.json @@ -0,0 +1,30 @@ +{ + "id": 168547, + "slug": "wars-across-the-world-missouri-1861", + "name": "Wars Across the World: Missouri 1861", + "release_date": "2017-05-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Strategiae" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118134775" + ], + "created_at": "2026-07-10T10:10:50.992738", + "updated_at": "2026-07-10T10:10:50.992738", + "url": "/v1/games/wars-across-the-world-missouri-1861" +} diff --git a/site/public/v1/games/wars-across-the-world-morat-1476/index.json b/site/public/v1/games/wars-across-the-world-morat-1476/index.json new file mode 100644 index 000000000000..d9d94a9c0de4 --- /dev/null +++ b/site/public/v1/games/wars-across-the-world-morat-1476/index.json @@ -0,0 +1,30 @@ +{ + "id": 168548, + "slug": "wars-across-the-world-morat-1476", + "name": "Wars Across the World: Morat 1476", + "release_date": "2017-11-30", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Strategiae" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118134816" + ], + "created_at": "2026-07-10T10:10:50.994740", + "updated_at": "2026-07-10T10:10:50.994740", + "url": "/v1/games/wars-across-the-world-morat-1476" +} diff --git a/site/public/v1/games/wars-across-the-world-nordwind-1945/index.json b/site/public/v1/games/wars-across-the-world-nordwind-1945/index.json new file mode 100644 index 000000000000..af834fd1310a --- /dev/null +++ b/site/public/v1/games/wars-across-the-world-nordwind-1945/index.json @@ -0,0 +1,30 @@ +{ + "id": 168549, + "slug": "wars-across-the-world-nordwind-1945", + "name": "Wars Across The World: Nordwind 1945", + "release_date": "2019-12-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Strategiae" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118134825" + ], + "created_at": "2026-07-10T10:10:50.996776", + "updated_at": "2026-07-10T10:10:50.996776", + "url": "/v1/games/wars-across-the-world-nordwind-1945" +} diff --git a/site/public/v1/games/wars-across-the-world-normandy-1944/index.json b/site/public/v1/games/wars-across-the-world-normandy-1944/index.json new file mode 100644 index 000000000000..9a431c48309a --- /dev/null +++ b/site/public/v1/games/wars-across-the-world-normandy-1944/index.json @@ -0,0 +1,30 @@ +{ + "id": 168550, + "slug": "wars-across-the-world-normandy-1944", + "name": "Wars Across the World: Normandy 1944", + "release_date": "2017-05-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Strategiae" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118134770" + ], + "created_at": "2026-07-10T10:10:50.998761", + "updated_at": "2026-07-10T10:10:50.998761", + "url": "/v1/games/wars-across-the-world-normandy-1944" +} diff --git a/site/public/v1/games/wars-across-the-world-persia-1856/index.json b/site/public/v1/games/wars-across-the-world-persia-1856/index.json new file mode 100644 index 000000000000..12261173c06f --- /dev/null +++ b/site/public/v1/games/wars-across-the-world-persia-1856/index.json @@ -0,0 +1,30 @@ +{ + "id": 168551, + "slug": "wars-across-the-world-persia-1856", + "name": "Wars Across the World: Persia 1856", + "release_date": "2018-01-31", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Strategiae" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118134799" + ], + "created_at": "2026-07-10T10:10:51.000748", + "updated_at": "2026-07-10T10:10:51.000748", + "url": "/v1/games/wars-across-the-world-persia-1856" +} diff --git a/site/public/v1/games/wars-across-the-world-rhodesia-1972/index.json b/site/public/v1/games/wars-across-the-world-rhodesia-1972/index.json new file mode 100644 index 000000000000..0493b807aea3 --- /dev/null +++ b/site/public/v1/games/wars-across-the-world-rhodesia-1972/index.json @@ -0,0 +1,30 @@ +{ + "id": 168552, + "slug": "wars-across-the-world-rhodesia-1972", + "name": "Wars Across the World: Rhodesia 1972", + "release_date": "2018-12-06", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Strategiae" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118134808" + ], + "created_at": "2026-07-10T10:10:51.001737", + "updated_at": "2026-07-10T10:10:51.001737", + "url": "/v1/games/wars-across-the-world-rhodesia-1972" +} diff --git a/site/public/v1/games/wars-across-the-world-sepoy-1857/index.json b/site/public/v1/games/wars-across-the-world-sepoy-1857/index.json new file mode 100644 index 000000000000..c875faacdab9 --- /dev/null +++ b/site/public/v1/games/wars-across-the-world-sepoy-1857/index.json @@ -0,0 +1,30 @@ +{ + "id": 168554, + "slug": "wars-across-the-world-sepoy-1857", + "name": "Wars Across the World: Sepoy 1857", + "release_date": "2022-07-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Strategiae" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118135149" + ], + "created_at": "2026-07-10T10:10:51.003761", + "updated_at": "2026-07-10T10:10:51.003761", + "url": "/v1/games/wars-across-the-world-sepoy-1857" +} diff --git a/site/public/v1/games/wars-across-the-world-serbia-1914/index.json b/site/public/v1/games/wars-across-the-world-serbia-1914/index.json new file mode 100644 index 000000000000..534eca644615 --- /dev/null +++ b/site/public/v1/games/wars-across-the-world-serbia-1914/index.json @@ -0,0 +1,30 @@ +{ + "id": 168555, + "slug": "wars-across-the-world-serbia-1914", + "name": "Wars Across The World: Serbia 1914", + "release_date": "2021-04-29", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Strategiae" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118135177" + ], + "created_at": "2026-07-10T10:10:51.006738", + "updated_at": "2026-07-10T10:10:51.006738", + "url": "/v1/games/wars-across-the-world-serbia-1914" +} diff --git a/site/public/v1/games/wars-across-the-world-sicily-1943/index.json b/site/public/v1/games/wars-across-the-world-sicily-1943/index.json new file mode 100644 index 000000000000..edda3f82610f --- /dev/null +++ b/site/public/v1/games/wars-across-the-world-sicily-1943/index.json @@ -0,0 +1,30 @@ +{ + "id": 168556, + "slug": "wars-across-the-world-sicily-1943", + "name": "Wars Across the World: Sicily 1943", + "release_date": "2019-02-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Strategiae" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118135168" + ], + "created_at": "2026-07-10T10:10:51.007766", + "updated_at": "2026-07-10T10:10:51.007766", + "url": "/v1/games/wars-across-the-world-sicily-1943" +} diff --git a/site/public/v1/games/wars-across-the-world-soccer-1969/index.json b/site/public/v1/games/wars-across-the-world-soccer-1969/index.json new file mode 100644 index 000000000000..2a0a7357863b --- /dev/null +++ b/site/public/v1/games/wars-across-the-world-soccer-1969/index.json @@ -0,0 +1,30 @@ +{ + "id": 168557, + "slug": "wars-across-the-world-soccer-1969", + "name": "Wars Across The World: Soccer 1969", + "release_date": "2020-03-30", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Strategiae" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118134827" + ], + "created_at": "2026-07-10T10:10:51.009665", + "updated_at": "2026-07-10T10:10:51.009665", + "url": "/v1/games/wars-across-the-world-soccer-1969" +} diff --git a/site/public/v1/games/wars-across-the-world-spain-1936/index.json b/site/public/v1/games/wars-across-the-world-spain-1936/index.json new file mode 100644 index 000000000000..d14d29fad320 --- /dev/null +++ b/site/public/v1/games/wars-across-the-world-spain-1936/index.json @@ -0,0 +1,30 @@ +{ + "id": 168558, + "slug": "wars-across-the-world-spain-1936", + "name": "Wars Across the World: Spain 1936", + "release_date": "2019-03-21", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Strategiae" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118135165" + ], + "created_at": "2026-07-10T10:10:51.010968", + "updated_at": "2026-07-10T10:10:51.010968", + "url": "/v1/games/wars-across-the-world-spain-1936" +} diff --git a/site/public/v1/games/wars-across-the-world-switzerland-1937/index.json b/site/public/v1/games/wars-across-the-world-switzerland-1937/index.json new file mode 100644 index 000000000000..2ebf4e25588c --- /dev/null +++ b/site/public/v1/games/wars-across-the-world-switzerland-1937/index.json @@ -0,0 +1,30 @@ +{ + "id": 168559, + "slug": "wars-across-the-world-switzerland-1937", + "name": "Wars Across The World: Switzerland 1937", + "release_date": "2019-02-21", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Strategiae" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118135173" + ], + "created_at": "2026-07-10T10:10:51.011975", + "updated_at": "2026-07-10T10:10:51.011975", + "url": "/v1/games/wars-across-the-world-switzerland-1937" +} diff --git a/site/public/v1/games/wars-across-the-world-tannenberg-1914/index.json b/site/public/v1/games/wars-across-the-world-tannenberg-1914/index.json new file mode 100644 index 000000000000..883e4d7cb67c --- /dev/null +++ b/site/public/v1/games/wars-across-the-world-tannenberg-1914/index.json @@ -0,0 +1,30 @@ +{ + "id": 168560, + "slug": "wars-across-the-world-tannenberg-1914", + "name": "Wars Across the World: Tannenberg 1914", + "release_date": "2017-05-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Strategiae" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118134791" + ], + "created_at": "2026-07-10T10:10:51.013983", + "updated_at": "2026-07-10T10:10:51.013983", + "url": "/v1/games/wars-across-the-world-tannenberg-1914" +} diff --git a/site/public/v1/games/wars-across-the-world-uganda-1979/index.json b/site/public/v1/games/wars-across-the-world-uganda-1979/index.json new file mode 100644 index 000000000000..555b0f822dae --- /dev/null +++ b/site/public/v1/games/wars-across-the-world-uganda-1979/index.json @@ -0,0 +1,30 @@ +{ + "id": 168561, + "slug": "wars-across-the-world-uganda-1979", + "name": "Wars Across The World: Uganda 1979", + "release_date": "2019-09-26", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Strategiae" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118135175" + ], + "created_at": "2026-07-10T10:10:51.014984", + "updated_at": "2026-07-10T10:10:51.014984", + "url": "/v1/games/wars-across-the-world-uganda-1979" +} diff --git a/site/public/v1/games/wars-across-the-world-waterloo-1815/index.json b/site/public/v1/games/wars-across-the-world-waterloo-1815/index.json new file mode 100644 index 000000000000..99984ac1b149 --- /dev/null +++ b/site/public/v1/games/wars-across-the-world-waterloo-1815/index.json @@ -0,0 +1,30 @@ +{ + "id": 168562, + "slug": "wars-across-the-world-waterloo-1815", + "name": "Wars Across the World: Waterloo 1815", + "release_date": "2017-05-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Strategiae" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118134787" + ], + "created_at": "2026-07-10T10:10:51.015988", + "updated_at": "2026-07-10T10:10:51.015988", + "url": "/v1/games/wars-across-the-world-waterloo-1815" +} diff --git a/site/public/v1/games/wars-across-the-world-west-virginia-1861/index.json b/site/public/v1/games/wars-across-the-world-west-virginia-1861/index.json new file mode 100644 index 000000000000..d1c6404ab9ca --- /dev/null +++ b/site/public/v1/games/wars-across-the-world-west-virginia-1861/index.json @@ -0,0 +1,30 @@ +{ + "id": 168563, + "slug": "wars-across-the-world-west-virginia-1861", + "name": "Wars Across the World: West Virginia 1861", + "release_date": "2017-05-04", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Strategiae" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118134777" + ], + "created_at": "2026-07-10T10:10:51.016988", + "updated_at": "2026-07-10T10:10:51.016988", + "url": "/v1/games/wars-across-the-world-west-virginia-1861" +} diff --git a/site/public/v1/games/wars-across-the-world-zulu-1879/index.json b/site/public/v1/games/wars-across-the-world-zulu-1879/index.json new file mode 100644 index 000000000000..303af0dd0f75 --- /dev/null +++ b/site/public/v1/games/wars-across-the-world-zulu-1879/index.json @@ -0,0 +1,32 @@ +{ + "id": 168564, + "slug": "wars-across-the-world-zulu-1879", + "name": "Wars Across The World: Zulu 1879", + "release_date": "2023-03-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Strategiae" + ], + "publishers": [ + "Avalon Digital" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118135204" + ], + "created_at": "2026-07-10T10:10:51.017987", + "updated_at": "2026-07-10T10:10:51.017987", + "url": "/v1/games/wars-across-the-world-zulu-1879" +} diff --git a/site/public/v1/games/wash-simulator-cash-boost-dlc/index.json b/site/public/v1/games/wash-simulator-cash-boost-dlc/index.json new file mode 100644 index 000000000000..d6581e8cb287 --- /dev/null +++ b/site/public/v1/games/wash-simulator-cash-boost-dlc/index.json @@ -0,0 +1,31 @@ +{ + "id": 168637, + "slug": "wash-simulator-cash-boost-dlc", + "name": "Wash Simulator - Cash Boost DLC", + "release_date": "2024-09-10", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Dezvolt Games" + ], + "publishers": [ + "Dezvolt Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131405846" + ], + "created_at": "2026-07-10T10:10:51.044083", + "updated_at": "2026-07-10T10:10:51.044083", + "url": "/v1/games/wash-simulator-cash-boost-dlc" +} diff --git a/site/public/v1/games/watch-dogs-bad-blood/index.json b/site/public/v1/games/watch-dogs-bad-blood/index.json new file mode 100644 index 000000000000..243bd70edd45 --- /dev/null +++ b/site/public/v1/games/watch-dogs-bad-blood/index.json @@ -0,0 +1,25 @@ +{ + "id": 168695, + "slug": "watch-dogs-bad-blood", + "name": "Watch Dogs: Bad Blood", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q64577202" + ], + "created_at": "2026-07-10T10:10:51.060050", + "updated_at": "2026-07-10T10:10:51.060050", + "url": "/v1/games/watch-dogs-bad-blood" +} diff --git a/site/public/v1/games/watch-dogs-complete-edition/index.json b/site/public/v1/games/watch-dogs-complete-edition/index.json new file mode 100644 index 000000000000..948f13de6d34 --- /dev/null +++ b/site/public/v1/games/watch-dogs-complete-edition/index.json @@ -0,0 +1,25 @@ +{ + "id": 168696, + "slug": "watch-dogs-complete-edition", + "name": "Watch Dogs Complete Edition", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131407203" + ], + "created_at": "2026-07-10T10:10:51.060050", + "updated_at": "2026-07-10T10:10:51.060050", + "url": "/v1/games/watch-dogs-complete-edition" +} diff --git a/site/public/v1/games/watch-dogs-legion-bloodline/index.json b/site/public/v1/games/watch-dogs-legion-bloodline/index.json new file mode 100644 index 000000000000..54ea8fb2d5b0 --- /dev/null +++ b/site/public/v1/games/watch-dogs-legion-bloodline/index.json @@ -0,0 +1,25 @@ +{ + "id": 168697, + "slug": "watch-dogs-legion-bloodline", + "name": "Watch Dogs: Legion - Bloodline", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135920989" + ], + "created_at": "2026-07-10T10:10:51.060050", + "updated_at": "2026-07-10T10:10:51.060050", + "url": "/v1/games/watch-dogs-legion-bloodline" +} diff --git a/site/public/v1/games/waxweb/index.json b/site/public/v1/games/waxweb/index.json new file mode 100644 index 000000000000..27b0c608b7b5 --- /dev/null +++ b/site/public/v1/games/waxweb/index.json @@ -0,0 +1,25 @@ +{ + "id": 168862, + "slug": "waxweb", + "name": "Waxweb", + "release_date": "1994-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7975726" + ], + "created_at": "2026-07-10T10:10:51.104862", + "updated_at": "2026-07-10T10:10:51.104862", + "url": "/v1/games/waxweb" +} diff --git a/site/public/v1/games/way-of-the-hunter-elite-edition/index.json b/site/public/v1/games/way-of-the-hunter-elite-edition/index.json new file mode 100644 index 000000000000..3ef22121cd90 --- /dev/null +++ b/site/public/v1/games/way-of-the-hunter-elite-edition/index.json @@ -0,0 +1,31 @@ +{ + "id": 168882, + "slug": "way-of-the-hunter-elite-edition", + "name": "Way of the Hunter: Elite Edition", + "release_date": "2022-08-16", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S" + ], + "genres": [], + "stores": [], + "developers": [ + "Nine Rocks Games" + ], + "publishers": [ + "THQ Nordic" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115525968" + ], + "created_at": "2026-07-10T10:10:51.109867", + "updated_at": "2026-07-10T10:10:51.109867", + "url": "/v1/games/way-of-the-hunter-elite-edition" +} diff --git a/site/public/v1/games/we-happy-few-we-all-fall-down/index.json b/site/public/v1/games/we-happy-few-we-all-fall-down/index.json new file mode 100644 index 000000000000..f1b782999e32 --- /dev/null +++ b/site/public/v1/games/we-happy-few-we-all-fall-down/index.json @@ -0,0 +1,25 @@ +{ + "id": 169010, + "slug": "we-happy-few-we-all-fall-down", + "name": "We Happy Few: We All Fall Down", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140448083" + ], + "created_at": "2026-07-10T10:10:51.162792", + "updated_at": "2026-07-10T10:10:51.162792", + "url": "/v1/games/we-happy-few-we-all-fall-down" +} diff --git a/site/public/v1/games/westward-collection/index.json b/site/public/v1/games/westward-collection/index.json new file mode 100644 index 000000000000..f3617032c0cd --- /dev/null +++ b/site/public/v1/games/westward-collection/index.json @@ -0,0 +1,31 @@ +{ + "id": 169439, + "slug": "westward-collection", + "name": "Westward Collection", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Sandlot Games" + ], + "publishers": [ + "Sandlot Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120795108" + ], + "created_at": "2026-07-10T10:10:51.313406", + "updated_at": "2026-07-10T10:10:51.313406", + "url": "/v1/games/westward-collection" +} diff --git a/site/public/v1/games/whale-s-voyage-2-cd/index.json b/site/public/v1/games/whale-s-voyage-2-cd/index.json new file mode 100644 index 000000000000..7b4870807a1c --- /dev/null +++ b/site/public/v1/games/whale-s-voyage-2-cd/index.json @@ -0,0 +1,25 @@ +{ + "id": 169494, + "slug": "whale-s-voyage-2-cd", + "name": "Whale's Voyage 2 CD", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126184710" + ], + "created_at": "2026-07-10T10:10:51.328380", + "updated_at": "2026-07-10T10:10:51.328380", + "url": "/v1/games/whale-s-voyage-2-cd" +} diff --git a/site/public/v1/games/where-s-the-baby/index.json b/site/public/v1/games/where-s-the-baby/index.json new file mode 100644 index 000000000000..e801cdadae73 --- /dev/null +++ b/site/public/v1/games/where-s-the-baby/index.json @@ -0,0 +1,25 @@ +{ + "id": 169777, + "slug": "where-s-the-baby", + "name": "Where's the Baby!", + "release_date": "2016-03-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126958216" + ], + "created_at": "2026-07-10T10:10:51.431316", + "updated_at": "2026-07-10T10:10:51.431316", + "url": "/v1/games/where-s-the-baby" +} diff --git a/site/public/v1/games/white-album2-extended-edition/index.json b/site/public/v1/games/white-album2-extended-edition/index.json new file mode 100644 index 000000000000..70c4dec0cd14 --- /dev/null +++ b/site/public/v1/games/white-album2-extended-edition/index.json @@ -0,0 +1,29 @@ +{ + "id": 169967, + "slug": "white-album2-extended-edition", + "name": "WHITE ALBUM2 EXTENDED EDITION", + "release_date": "2018-02-14", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Leaf" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123510978" + ], + "created_at": "2026-07-10T10:10:51.505416", + "updated_at": "2026-07-10T10:10:51.505416", + "url": "/v1/games/white-album2-extended-edition" +} diff --git a/site/public/v1/games/white-knuckle-demo/index.json b/site/public/v1/games/white-knuckle-demo/index.json new file mode 100644 index 000000000000..dd681b4ca42d --- /dev/null +++ b/site/public/v1/games/white-knuckle-demo/index.json @@ -0,0 +1,32 @@ +{ + "id": 169999, + "slug": "white-knuckle-demo", + "name": "White Knuckle Demo", + "release_date": "2024-10-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "platformer", + "first-person adventure" + ], + "stores": [], + "developers": [], + "publishers": [ + "DreadXP" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137697986" + ], + "created_at": "2026-07-10T10:10:51.513471", + "updated_at": "2026-07-10T10:10:51.513471", + "url": "/v1/games/white-knuckle-demo" +} diff --git a/site/public/v1/games/wikidata-game/index.json b/site/public/v1/games/wikidata-game/index.json new file mode 100644 index 000000000000..97e36534d9af --- /dev/null +++ b/site/public/v1/games/wikidata-game/index.json @@ -0,0 +1,27 @@ +{ + "id": 170255, + "slug": "wikidata-game", + "name": "Wikidata Game", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "wikigames" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17595556" + ], + "created_at": "2026-07-10T10:10:51.581440", + "updated_at": "2026-07-10T10:10:51.581440", + "url": "/v1/games/wikidata-game" +} diff --git a/site/public/v1/games/wild-adventure-pinball/index.json b/site/public/v1/games/wild-adventure-pinball/index.json new file mode 100644 index 000000000000..2f1211887f48 --- /dev/null +++ b/site/public/v1/games/wild-adventure-pinball/index.json @@ -0,0 +1,31 @@ +{ + "id": 170265, + "slug": "wild-adventure-pinball", + "name": "Wild & Adventure Pinball", + "release_date": "2021-12-10", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "pinball video game" + ], + "stores": [], + "developers": [ + "Super PowerUp Games" + ], + "publishers": [ + "Super PowerUp Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110060809" + ], + "created_at": "2026-07-10T10:10:51.583539", + "updated_at": "2026-07-10T10:10:51.584480", + "url": "/v1/games/wild-adventure-pinball" +} diff --git a/site/public/v1/games/williams-arcade-s-greatest-hits/index.json b/site/public/v1/games/williams-arcade-s-greatest-hits/index.json new file mode 100644 index 000000000000..cd00629353df --- /dev/null +++ b/site/public/v1/games/williams-arcade-s-greatest-hits/index.json @@ -0,0 +1,31 @@ +{ + "id": 170531, + "slug": "williams-arcade-s-greatest-hits", + "name": "Williams Arcade's Greatest Hits", + "release_date": "1996-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Super Nintendo Entertainment System" + ], + "genres": [ + "action game" + ], + "stores": [], + "developers": [], + "publishers": [ + "WMS Industries" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8020976" + ], + "created_at": "2026-07-10T10:10:51.659328", + "updated_at": "2026-07-10T10:10:51.659328", + "url": "/v1/games/williams-arcade-s-greatest-hits" +} diff --git a/site/public/v1/games/windoom-q67221120/index.json b/site/public/v1/games/windoom-q67221120/index.json new file mode 100644 index 000000000000..ddb8b8c70c38 --- /dev/null +++ b/site/public/v1/games/windoom-q67221120/index.json @@ -0,0 +1,27 @@ +{ + "id": 170623, + "slug": "windoom-q67221120", + "name": "WinDoom", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [ + "Gabe Newell" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q67221120" + ], + "created_at": "2026-07-10T10:10:51.684332", + "updated_at": "2026-07-10T10:10:51.684332", + "url": "/v1/games/windoom-q67221120" +} diff --git a/site/public/v1/games/windoom/index.json b/site/public/v1/games/windoom/index.json new file mode 100644 index 000000000000..6e8c300cedaf --- /dev/null +++ b/site/public/v1/games/windoom/index.json @@ -0,0 +1,25 @@ +{ + "id": 170624, + "slug": "windoom", + "name": "WinDoom", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q67200475" + ], + "created_at": "2026-07-10T10:10:51.685332", + "updated_at": "2026-07-10T10:10:51.685332", + "url": "/v1/games/windoom" +} diff --git a/site/public/v1/games/wing-commander-deluxe-edition/index.json b/site/public/v1/games/wing-commander-deluxe-edition/index.json new file mode 100644 index 000000000000..5a3726587142 --- /dev/null +++ b/site/public/v1/games/wing-commander-deluxe-edition/index.json @@ -0,0 +1,25 @@ +{ + "id": 170669, + "slug": "wing-commander-deluxe-edition", + "name": "Wing Commander: Deluxe Edition", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124151018" + ], + "created_at": "2026-07-10T10:10:51.716635", + "updated_at": "2026-07-10T10:10:51.716635", + "url": "/v1/games/wing-commander-deluxe-edition" +} diff --git a/site/public/v1/games/wing-commander-ii-deluxe-edition/index.json b/site/public/v1/games/wing-commander-ii-deluxe-edition/index.json new file mode 100644 index 000000000000..f167265217d6 --- /dev/null +++ b/site/public/v1/games/wing-commander-ii-deluxe-edition/index.json @@ -0,0 +1,25 @@ +{ + "id": 170671, + "slug": "wing-commander-ii-deluxe-edition", + "name": "Wing Commander II: Deluxe Edition", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124151021" + ], + "created_at": "2026-07-10T10:10:51.717636", + "updated_at": "2026-07-10T10:10:51.717636", + "url": "/v1/games/wing-commander-ii-deluxe-edition" +} diff --git a/site/public/v1/games/wing-commander-privateer-speech-pack/index.json b/site/public/v1/games/wing-commander-privateer-speech-pack/index.json new file mode 100644 index 000000000000..776739150dc6 --- /dev/null +++ b/site/public/v1/games/wing-commander-privateer-speech-pack/index.json @@ -0,0 +1,25 @@ +{ + "id": 170675, + "slug": "wing-commander-privateer-speech-pack", + "name": "Wing Commander: Privateer - Speech Pack", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126032131" + ], + "created_at": "2026-07-10T10:10:51.718633", + "updated_at": "2026-07-10T10:10:51.718633", + "url": "/v1/games/wing-commander-privateer-speech-pack" +} diff --git a/site/public/v1/games/wing-commander-the-kilrathi-saga/index.json b/site/public/v1/games/wing-commander-the-kilrathi-saga/index.json new file mode 100644 index 000000000000..bff801cc6a0b --- /dev/null +++ b/site/public/v1/games/wing-commander-the-kilrathi-saga/index.json @@ -0,0 +1,27 @@ +{ + "id": 170681, + "slug": "wing-commander-the-kilrathi-saga", + "name": "Wing Commander: The Kilrathi Saga", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123697478" + ], + "created_at": "2026-07-10T10:10:51.719633", + "updated_at": "2026-07-10T10:10:51.719633", + "url": "/v1/games/wing-commander-the-kilrathi-saga" +} diff --git a/site/public/v1/games/wings-of-power-ii-wwii-fighters-special-edition/index.json b/site/public/v1/games/wings-of-power-ii-wwii-fighters-special-edition/index.json new file mode 100644 index 000000000000..72c7014c7866 --- /dev/null +++ b/site/public/v1/games/wings-of-power-ii-wwii-fighters-special-edition/index.json @@ -0,0 +1,29 @@ +{ + "id": 170727, + "slug": "wings-of-power-ii-wwii-fighters-special-edition", + "name": "Wings of Power II: WWII Fighters Special Edition", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [], + "publishers": [ + "Excalibur Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110817166" + ], + "created_at": "2026-07-10T10:10:51.732704", + "updated_at": "2026-07-10T10:10:51.732704", + "url": "/v1/games/wings-of-power-ii-wwii-fighters-special-edition" +} diff --git a/site/public/v1/games/winmbf/index.json b/site/public/v1/games/winmbf/index.json new file mode 100644 index 000000000000..ebd0915379a2 --- /dev/null +++ b/site/public/v1/games/winmbf/index.json @@ -0,0 +1,25 @@ +{ + "id": 170759, + "slug": "winmbf", + "name": "WinMBF", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124429016" + ], + "created_at": "2026-07-10T10:10:51.740724", + "updated_at": "2026-07-10T10:10:51.740724", + "url": "/v1/games/winmbf" +} diff --git a/site/public/v1/games/winquake/index.json b/site/public/v1/games/winquake/index.json new file mode 100644 index 000000000000..8efd267063ff --- /dev/null +++ b/site/public/v1/games/winquake/index.json @@ -0,0 +1,25 @@ +{ + "id": 170806, + "slug": "winquake", + "name": "WinQuake", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120671314" + ], + "created_at": "2026-07-10T10:10:51.754634", + "updated_at": "2026-07-10T10:10:51.754634", + "url": "/v1/games/winquake" +} diff --git a/site/public/v1/games/wipeout-hd-fury/index.json b/site/public/v1/games/wipeout-hd-fury/index.json new file mode 100644 index 000000000000..f0975e29c291 --- /dev/null +++ b/site/public/v1/games/wipeout-hd-fury/index.json @@ -0,0 +1,27 @@ +{ + "id": 170916, + "slug": "wipeout-hd-fury", + "name": "Wipeout HD Fury", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 3" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q103866416" + ], + "created_at": "2026-07-10T10:10:51.782644", + "updated_at": "2026-07-10T10:10:51.782644", + "url": "/v1/games/wipeout-hd-fury" +} diff --git a/site/public/v1/games/wipeout-omega-collection/index.json b/site/public/v1/games/wipeout-omega-collection/index.json new file mode 100644 index 000000000000..c31ad9b30a48 --- /dev/null +++ b/site/public/v1/games/wipeout-omega-collection/index.json @@ -0,0 +1,29 @@ +{ + "id": 170919, + "slug": "wipeout-omega-collection", + "name": "Wipeout Omega Collection", + "release_date": "2017-06-06", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 4" + ], + "genres": [ + "racing video game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28406508" + ], + "created_at": "2026-07-10T10:10:51.782644", + "updated_at": "2026-07-10T10:10:51.782644", + "url": "/v1/games/wipeout-omega-collection" +} diff --git a/site/public/v1/games/wipeout-pure-stealth-edition/index.json b/site/public/v1/games/wipeout-pure-stealth-edition/index.json new file mode 100644 index 000000000000..b6f88912c411 --- /dev/null +++ b/site/public/v1/games/wipeout-pure-stealth-edition/index.json @@ -0,0 +1,33 @@ +{ + "id": 170921, + "slug": "wipeout-pure-stealth-edition", + "name": "WipEout Pure: Stealth Edition", + "release_date": "2005-11-15", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation Portable" + ], + "genres": [ + "racing video game" + ], + "stores": [], + "developers": [ + "SCE Studio Liverpool" + ], + "publishers": [ + "Sony Computer Entertainment America" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q101977368" + ], + "created_at": "2026-07-10T10:10:51.783643", + "updated_at": "2026-07-10T10:10:51.783643", + "url": "/v1/games/wipeout-pure-stealth-edition" +} diff --git a/site/public/v1/games/witches-and-wieners-pack/index.json b/site/public/v1/games/witches-and-wieners-pack/index.json new file mode 100644 index 000000000000..ec4e09fa92a8 --- /dev/null +++ b/site/public/v1/games/witches-and-wieners-pack/index.json @@ -0,0 +1,28 @@ +{ + "id": 171091, + "slug": "witches-and-wieners-pack", + "name": "Witches and Wieners Pack", + "release_date": "2012-06-12", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 3", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60617372" + ], + "created_at": "2026-07-10T10:10:51.861271", + "updated_at": "2026-07-10T10:10:51.861271", + "url": "/v1/games/witches-and-wieners-pack" +} diff --git a/site/public/v1/games/wo-long-fallen-dynasty-digital-deluxe-edition/index.json b/site/public/v1/games/wo-long-fallen-dynasty-digital-deluxe-edition/index.json new file mode 100644 index 000000000000..92772505b4a9 --- /dev/null +++ b/site/public/v1/games/wo-long-fallen-dynasty-digital-deluxe-edition/index.json @@ -0,0 +1,33 @@ +{ + "id": 171374, + "slug": "wo-long-fallen-dynasty-digital-deluxe-edition", + "name": "Wo Long: Fallen Dynasty Digital Deluxe Edition", + "release_date": "2023-03-03", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Koei Tecmo Games" + ], + "publishers": [ + "Koei Tecmo America", + "Koei Tecmo Europe" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122437288" + ], + "created_at": "2026-07-10T10:10:51.956332", + "updated_at": "2026-07-10T10:10:51.956332", + "url": "/v1/games/wo-long-fallen-dynasty-digital-deluxe-edition" +} diff --git a/site/public/v1/games/wolf-pack/index.json b/site/public/v1/games/wolf-pack/index.json new file mode 100644 index 000000000000..a2a34f02d771 --- /dev/null +++ b/site/public/v1/games/wolf-pack/index.json @@ -0,0 +1,27 @@ +{ + "id": 171415, + "slug": "wolf-pack", + "name": "Wolf Pack", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q104774696" + ], + "created_at": "2026-07-10T10:10:51.967264", + "updated_at": "2026-07-10T10:10:51.967264", + "url": "/v1/games/wolf-pack" +} diff --git a/site/public/v1/games/wolfenstein-resistance-bundle/index.json b/site/public/v1/games/wolfenstein-resistance-bundle/index.json new file mode 100644 index 000000000000..65acef480891 --- /dev/null +++ b/site/public/v1/games/wolfenstein-resistance-bundle/index.json @@ -0,0 +1,28 @@ +{ + "id": 171447, + "slug": "wolfenstein-resistance-bundle", + "name": "Wolfenstein: Resistance Bundle", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q79463385" + ], + "created_at": "2026-07-10T10:10:51.975455", + "updated_at": "2026-07-10T10:10:51.975455", + "url": "/v1/games/wolfenstein-resistance-bundle" +} diff --git a/site/public/v1/games/wolfenstein-the-two-pack/index.json b/site/public/v1/games/wolfenstein-the-two-pack/index.json new file mode 100644 index 000000000000..21d74912e7c7 --- /dev/null +++ b/site/public/v1/games/wolfenstein-the-two-pack/index.json @@ -0,0 +1,36 @@ +{ + "id": 171451, + "slug": "wolfenstein-the-two-pack", + "name": "Wolfenstein: The Two-Pack", + "release_date": "2014-05-20", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 5", + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "action game", + "alternate history", + "science fiction video game" + ], + "stores": [], + "developers": [ + "Bethesda Softworks" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q92203796" + ], + "created_at": "2026-07-10T10:10:51.976449", + "updated_at": "2026-07-10T10:10:51.976449", + "url": "/v1/games/wolfenstein-the-two-pack" +} diff --git a/site/public/v1/games/wolfenstein/index.json b/site/public/v1/games/wolfenstein/index.json new file mode 100644 index 000000000000..0562a5fd4c6b --- /dev/null +++ b/site/public/v1/games/wolfenstein/index.json @@ -0,0 +1,34 @@ +{ + "id": 171454, + "slug": "wolfenstein", + "name": "Wolfenstein", + "release_date": "2009-08-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 3", + "Microsoft Windows" + ], + "genres": [ + "first-person shooter" + ], + "stores": [], + "developers": [ + "Raven Software" + ], + "publishers": [ + "Activision" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1165728" + ], + "created_at": "2026-07-10T10:10:51.977414", + "updated_at": "2026-07-10T10:10:51.977414", + "url": "/v1/games/wolfenstein" +} diff --git a/site/public/v1/games/wolfstone-3d/index.json b/site/public/v1/games/wolfstone-3d/index.json new file mode 100644 index 000000000000..7abf0abc14bc --- /dev/null +++ b/site/public/v1/games/wolfstone-3d/index.json @@ -0,0 +1,25 @@ +{ + "id": 171476, + "slug": "wolfstone-3d", + "name": "Wolfstone 3D", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q97502964" + ], + "created_at": "2026-07-10T10:10:51.983358", + "updated_at": "2026-07-10T10:10:51.983358", + "url": "/v1/games/wolfstone-3d" +} diff --git a/site/public/v1/games/wonder-woman/index.json b/site/public/v1/games/wonder-woman/index.json new file mode 100644 index 000000000000..e9373a7d70b3 --- /dev/null +++ b/site/public/v1/games/wonder-woman/index.json @@ -0,0 +1,31 @@ +{ + "id": 171538, + "slug": "wonder-woman", + "name": "Wonder Woman", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "action-adventure game" + ], + "stores": [], + "developers": [ + "Monolith Productions" + ], + "publishers": [ + "Warner Bros. Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110027969" + ], + "created_at": "2026-07-10T10:10:51.999091", + "updated_at": "2026-07-10T10:10:51.999091", + "url": "/v1/games/wonder-woman" +} diff --git a/site/public/v1/games/woof/index.json b/site/public/v1/games/woof/index.json new file mode 100644 index 000000000000..136d5a753fbc --- /dev/null +++ b/site/public/v1/games/woof/index.json @@ -0,0 +1,25 @@ +{ + "id": 171651, + "slug": "woof", + "name": "Woof!", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124429011" + ], + "created_at": "2026-07-10T10:10:52.029674", + "updated_at": "2026-07-10T10:10:52.029674", + "url": "/v1/games/woof" +} diff --git a/site/public/v1/games/work-at-a-pizza-place/index.json b/site/public/v1/games/work-at-a-pizza-place/index.json new file mode 100644 index 000000000000..308cf296723f --- /dev/null +++ b/site/public/v1/games/work-at-a-pizza-place/index.json @@ -0,0 +1,28 @@ +{ + "id": 171783, + "slug": "work-at-a-pizza-place", + "name": "Work at a Pizza Place", + "release_date": "2008-03-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "cooking simulation video game", + "job simulation video game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131621003" + ], + "created_at": "2026-07-10T10:10:52.065632", + "updated_at": "2026-07-10T10:10:52.065632", + "url": "/v1/games/work-at-a-pizza-place" +} diff --git a/site/public/v1/games/world-heroes-anthology/index.json b/site/public/v1/games/world-heroes-anthology/index.json new file mode 100644 index 000000000000..75680bc417b0 --- /dev/null +++ b/site/public/v1/games/world-heroes-anthology/index.json @@ -0,0 +1,29 @@ +{ + "id": 171930, + "slug": "world-heroes-anthology", + "name": "World Heroes Anthology", + "release_date": "2007-10-18", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "fighting game" + ], + "stores": [], + "developers": [], + "publishers": [ + "SNK" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11052088" + ], + "created_at": "2026-07-10T10:10:52.105422", + "updated_at": "2026-07-10T10:10:52.105422", + "url": "/v1/games/world-heroes-anthology" +} diff --git a/site/public/v1/games/world-in-conflict-soviet-assault/index.json b/site/public/v1/games/world-in-conflict-soviet-assault/index.json new file mode 100644 index 000000000000..9cfe0b6d8127 --- /dev/null +++ b/site/public/v1/games/world-in-conflict-soviet-assault/index.json @@ -0,0 +1,30 @@ +{ + "id": 171938, + "slug": "world-in-conflict-soviet-assault", + "name": "World in Conflict: Soviet Assault", + "release_date": "2009-03-10", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "real-time strategy", + "real-time tactics" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2624373" + ], + "created_at": "2026-07-10T10:10:52.107427", + "updated_at": "2026-07-10T10:10:52.107427", + "url": "/v1/games/world-in-conflict-soviet-assault" +} diff --git a/site/public/v1/games/world-of-darkness-online/index.json b/site/public/v1/games/world-of-darkness-online/index.json new file mode 100644 index 000000000000..8562679f491e --- /dev/null +++ b/site/public/v1/games/world-of-darkness-online/index.json @@ -0,0 +1,33 @@ +{ + "id": 171973, + "slug": "world-of-darkness-online", + "name": "World of Darkness Online", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "massively multiplayer online role-playing game" + ], + "stores": [], + "developers": [ + "Fenris Creations" + ], + "publishers": [ + "Fenris Creations" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4053247" + ], + "created_at": "2026-07-10T10:10:52.116424", + "updated_at": "2026-07-10T10:10:52.116424", + "url": "/v1/games/world-of-darkness-online" +} diff --git a/site/public/v1/games/world-of-rollercoaster-tycoon/index.json b/site/public/v1/games/world-of-rollercoaster-tycoon/index.json new file mode 100644 index 000000000000..c3d29bac21ee --- /dev/null +++ b/site/public/v1/games/world-of-rollercoaster-tycoon/index.json @@ -0,0 +1,27 @@ +{ + "id": 172029, + "slug": "world-of-rollercoaster-tycoon", + "name": "World of RollerCoaster Tycoon", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Atari Interactive" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127417939" + ], + "created_at": "2026-07-10T10:10:52.133410", + "updated_at": "2026-07-10T10:10:52.133410", + "url": "/v1/games/world-of-rollercoaster-tycoon" +} diff --git a/site/public/v1/games/world-of-tides/index.json b/site/public/v1/games/world-of-tides/index.json new file mode 100644 index 000000000000..1bb1ecddc469 --- /dev/null +++ b/site/public/v1/games/world-of-tides/index.json @@ -0,0 +1,31 @@ +{ + "id": 172055, + "slug": "world-of-tides", + "name": "World of Tides", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "massively multiplayer online role-playing game" + ], + "stores": [], + "developers": [ + "GDTeam" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110817169" + ], + "created_at": "2026-07-10T10:10:52.139430", + "updated_at": "2026-07-10T10:10:52.139430", + "url": "/v1/games/world-of-tides" +} diff --git a/site/public/v1/games/world-of-warcraft-cataclysm/index.json b/site/public/v1/games/world-of-warcraft-cataclysm/index.json new file mode 100644 index 000000000000..50192cf7cd23 --- /dev/null +++ b/site/public/v1/games/world-of-warcraft-cataclysm/index.json @@ -0,0 +1,34 @@ +{ + "id": 172066, + "slug": "world-of-warcraft-cataclysm", + "name": "World of Warcraft: Cataclysm", + "release_date": "2010-12-07", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "massively multiplayer online role-playing game" + ], + "stores": [], + "developers": [ + "Blizzard Entertainment" + ], + "publishers": [ + "Blizzard Entertainment" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q737619" + ], + "created_at": "2026-07-10T10:10:52.142456", + "updated_at": "2026-07-10T10:10:52.142456", + "url": "/v1/games/world-of-warcraft-cataclysm" +} diff --git a/site/public/v1/games/world-of-warcraft-dragonflight/index.json b/site/public/v1/games/world-of-warcraft-dragonflight/index.json new file mode 100644 index 000000000000..edc1de8a538b --- /dev/null +++ b/site/public/v1/games/world-of-warcraft-dragonflight/index.json @@ -0,0 +1,34 @@ +{ + "id": 172068, + "slug": "world-of-warcraft-dragonflight", + "name": "World of Warcraft: Dragonflight", + "release_date": "2022-11-28", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "massively multiplayer online role-playing game" + ], + "stores": [], + "developers": [ + "Blizzard Entertainment" + ], + "publishers": [ + "Blizzard Entertainment" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111660190" + ], + "created_at": "2026-07-10T10:10:52.142456", + "updated_at": "2026-07-10T10:10:52.142456", + "url": "/v1/games/world-of-warcraft-dragonflight" +} diff --git a/site/public/v1/games/world-of-warcraft-free-trial/index.json b/site/public/v1/games/world-of-warcraft-free-trial/index.json new file mode 100644 index 000000000000..ea5dddc31f10 --- /dev/null +++ b/site/public/v1/games/world-of-warcraft-free-trial/index.json @@ -0,0 +1,34 @@ +{ + "id": 172069, + "slug": "world-of-warcraft-free-trial", + "name": "World of Warcraft: Free Trial", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "massively multiplayer online role-playing game" + ], + "stores": [], + "developers": [ + "Blizzard Entertainment" + ], + "publishers": [ + "Blizzard Entertainment" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131406401" + ], + "created_at": "2026-07-10T10:10:52.142456", + "updated_at": "2026-07-10T10:10:52.142456", + "url": "/v1/games/world-of-warcraft-free-trial" +} diff --git a/site/public/v1/games/world-of-warcraft-legion/index.json b/site/public/v1/games/world-of-warcraft-legion/index.json new file mode 100644 index 000000000000..84f2dc73fa24 --- /dev/null +++ b/site/public/v1/games/world-of-warcraft-legion/index.json @@ -0,0 +1,34 @@ +{ + "id": 172070, + "slug": "world-of-warcraft-legion", + "name": "World of Warcraft: Legion", + "release_date": "2016-08-30", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "massively multiplayer online role-playing game" + ], + "stores": [], + "developers": [ + "Blizzard Entertainment" + ], + "publishers": [ + "Blizzard Entertainment" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q20754818" + ], + "created_at": "2026-07-10T10:10:52.143444", + "updated_at": "2026-07-10T10:10:52.143444", + "url": "/v1/games/world-of-warcraft-legion" +} diff --git a/site/public/v1/games/world-of-warcraft-midnight/index.json b/site/public/v1/games/world-of-warcraft-midnight/index.json new file mode 100644 index 000000000000..a9c4aa1ab554 --- /dev/null +++ b/site/public/v1/games/world-of-warcraft-midnight/index.json @@ -0,0 +1,31 @@ +{ + "id": 172071, + "slug": "world-of-warcraft-midnight", + "name": "World of Warcraft: Midnight", + "release_date": "2026-03-02", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "massively multiplayer online role-playing game" + ], + "stores": [], + "developers": [ + "Blizzard Entertainment" + ], + "publishers": [ + "Blizzard Entertainment" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123301448" + ], + "created_at": "2026-07-10T10:10:52.143444", + "updated_at": "2026-07-10T10:10:52.143444", + "url": "/v1/games/world-of-warcraft-midnight" +} diff --git a/site/public/v1/games/world-of-warcraft-mists-of-pandaria/index.json b/site/public/v1/games/world-of-warcraft-mists-of-pandaria/index.json new file mode 100644 index 000000000000..9c5f02397359 --- /dev/null +++ b/site/public/v1/games/world-of-warcraft-mists-of-pandaria/index.json @@ -0,0 +1,34 @@ +{ + "id": 172073, + "slug": "world-of-warcraft-mists-of-pandaria", + "name": "World of Warcraft: Mists of Pandaria", + "release_date": "2012-09-25", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "massively multiplayer online role-playing game" + ], + "stores": [], + "developers": [ + "Blizzard Entertainment" + ], + "publishers": [ + "Blizzard Entertainment" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q841953" + ], + "created_at": "2026-07-10T10:10:52.143444", + "updated_at": "2026-07-10T10:10:52.143444", + "url": "/v1/games/world-of-warcraft-mists-of-pandaria" +} diff --git a/site/public/v1/games/world-of-warcraft-shadowlands/index.json b/site/public/v1/games/world-of-warcraft-shadowlands/index.json new file mode 100644 index 000000000000..e97b7773607d --- /dev/null +++ b/site/public/v1/games/world-of-warcraft-shadowlands/index.json @@ -0,0 +1,34 @@ +{ + "id": 172074, + "slug": "world-of-warcraft-shadowlands", + "name": "World of Warcraft: Shadowlands", + "release_date": "2020-11-23", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "massively multiplayer online role-playing game" + ], + "stores": [], + "developers": [ + "Blizzard Entertainment" + ], + "publishers": [ + "Blizzard Entertainment" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q73160580" + ], + "created_at": "2026-07-10T10:10:52.143444", + "updated_at": "2026-07-10T10:10:52.143444", + "url": "/v1/games/world-of-warcraft-shadowlands" +} diff --git a/site/public/v1/games/world-of-warcraft-the-burning-crusade/index.json b/site/public/v1/games/world-of-warcraft-the-burning-crusade/index.json new file mode 100644 index 000000000000..d7cc90e63773 --- /dev/null +++ b/site/public/v1/games/world-of-warcraft-the-burning-crusade/index.json @@ -0,0 +1,34 @@ +{ + "id": 172075, + "slug": "world-of-warcraft-the-burning-crusade", + "name": "World of Warcraft: The Burning Crusade", + "release_date": "2007-01-15", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "massively multiplayer online role-playing game" + ], + "stores": [], + "developers": [ + "Blizzard Entertainment" + ], + "publishers": [ + "Blizzard Entertainment" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q719643" + ], + "created_at": "2026-07-10T10:10:52.144479", + "updated_at": "2026-07-10T10:10:52.144479", + "url": "/v1/games/world-of-warcraft-the-burning-crusade" +} diff --git a/site/public/v1/games/world-of-warcraft-the-last-titan/index.json b/site/public/v1/games/world-of-warcraft-the-last-titan/index.json new file mode 100644 index 000000000000..e34b940ca6bf --- /dev/null +++ b/site/public/v1/games/world-of-warcraft-the-last-titan/index.json @@ -0,0 +1,27 @@ +{ + "id": 172076, + "slug": "world-of-warcraft-the-last-titan", + "name": "World of Warcraft: The Last Titan", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [ + "Blizzard Entertainment" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123301458" + ], + "created_at": "2026-07-10T10:10:52.144479", + "updated_at": "2026-07-10T10:10:52.144479", + "url": "/v1/games/world-of-warcraft-the-last-titan" +} diff --git a/site/public/v1/games/world-of-warcraft-the-war-within/index.json b/site/public/v1/games/world-of-warcraft-the-war-within/index.json new file mode 100644 index 000000000000..3de23eff977b --- /dev/null +++ b/site/public/v1/games/world-of-warcraft-the-war-within/index.json @@ -0,0 +1,34 @@ +{ + "id": 172077, + "slug": "world-of-warcraft-the-war-within", + "name": "World of Warcraft: The War Within", + "release_date": "2024-08-26", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "massively multiplayer online role-playing game" + ], + "stores": [], + "developers": [ + "Blizzard Entertainment" + ], + "publishers": [ + "Blizzard Entertainment" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123301425" + ], + "created_at": "2026-07-10T10:10:52.144479", + "updated_at": "2026-07-10T10:10:52.144479", + "url": "/v1/games/world-of-warcraft-the-war-within" +} diff --git a/site/public/v1/games/world-of-warcraft-warlords-of-draenor/index.json b/site/public/v1/games/world-of-warcraft-warlords-of-draenor/index.json new file mode 100644 index 000000000000..4d4f8f411af3 --- /dev/null +++ b/site/public/v1/games/world-of-warcraft-warlords-of-draenor/index.json @@ -0,0 +1,34 @@ +{ + "id": 172078, + "slug": "world-of-warcraft-warlords-of-draenor", + "name": "World of Warcraft: Warlords of Draenor", + "release_date": "2014-11-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "massively multiplayer online role-playing game" + ], + "stores": [], + "developers": [ + "Blizzard Entertainment" + ], + "publishers": [ + "Blizzard Entertainment" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q15139238" + ], + "created_at": "2026-07-10T10:10:52.144479", + "updated_at": "2026-07-10T10:10:52.144479", + "url": "/v1/games/world-of-warcraft-warlords-of-draenor" +} diff --git a/site/public/v1/games/world-of-warcraft-wrath-of-the-lich-king/index.json b/site/public/v1/games/world-of-warcraft-wrath-of-the-lich-king/index.json new file mode 100644 index 000000000000..2347d00ccfa5 --- /dev/null +++ b/site/public/v1/games/world-of-warcraft-wrath-of-the-lich-king/index.json @@ -0,0 +1,34 @@ +{ + "id": 172080, + "slug": "world-of-warcraft-wrath-of-the-lich-king", + "name": "World of Warcraft: Wrath of the Lich King", + "release_date": "2008-11-13", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "massively multiplayer online role-playing game" + ], + "stores": [], + "developers": [ + "Blizzard Entertainment" + ], + "publishers": [ + "Blizzard Entertainment" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q715719" + ], + "created_at": "2026-07-10T10:10:52.145426", + "updated_at": "2026-07-10T10:10:52.145426", + "url": "/v1/games/world-of-warcraft-wrath-of-the-lich-king" +} diff --git a/site/public/v1/games/world-war-2-road-to-victory/index.json b/site/public/v1/games/world-war-2-road-to-victory/index.json new file mode 100644 index 000000000000..c81364f0b1fc --- /dev/null +++ b/site/public/v1/games/world-war-2-road-to-victory/index.json @@ -0,0 +1,25 @@ +{ + "id": 172195, + "slug": "world-war-2-road-to-victory", + "name": "World War 2: Road to Victory", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140471209" + ], + "created_at": "2026-07-10T10:10:52.175435", + "updated_at": "2026-07-10T10:10:52.175435", + "url": "/v1/games/world-war-2-road-to-victory" +} diff --git a/site/public/v1/games/world-war-online/index.json b/site/public/v1/games/world-war-online/index.json new file mode 100644 index 000000000000..52ba68769b37 --- /dev/null +++ b/site/public/v1/games/world-war-online/index.json @@ -0,0 +1,25 @@ +{ + "id": 172223, + "slug": "world-war-online", + "name": "World War Online", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28449915" + ], + "created_at": "2026-07-10T10:10:52.183408", + "updated_at": "2026-07-10T10:10:52.183408", + "url": "/v1/games/world-war-online" +} diff --git a/site/public/v1/games/worms-clan-wars-4-pack/index.json b/site/public/v1/games/worms-clan-wars-4-pack/index.json new file mode 100644 index 000000000000..f3ed8a89e160 --- /dev/null +++ b/site/public/v1/games/worms-clan-wars-4-pack/index.json @@ -0,0 +1,27 @@ +{ + "id": 172321, + "slug": "worms-clan-wars-4-pack", + "name": "Worms Clan Wars 4-Pack", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q78670086" + ], + "created_at": "2026-07-10T10:10:52.209218", + "updated_at": "2026-07-10T10:10:52.209218", + "url": "/v1/games/worms-clan-wars-4-pack" +} diff --git a/site/public/v1/games/worms-collection/index.json b/site/public/v1/games/worms-collection/index.json new file mode 100644 index 000000000000..bb26430b5a1e --- /dev/null +++ b/site/public/v1/games/worms-collection/index.json @@ -0,0 +1,31 @@ +{ + "id": 172323, + "slug": "worms-collection", + "name": "Worms Collection", + "release_date": "2012-08-31", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "artillery game" + ], + "stores": [], + "developers": [ + "Team17" + ], + "publishers": [ + "Maximum Games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17040592" + ], + "created_at": "2026-07-10T10:10:52.210148", + "updated_at": "2026-07-10T10:10:52.210148", + "url": "/v1/games/worms-collection" +} diff --git a/site/public/v1/games/worms-reloaded-game-of-the-year-edition/index.json b/site/public/v1/games/worms-reloaded-game-of-the-year-edition/index.json new file mode 100644 index 000000000000..96e45269900b --- /dev/null +++ b/site/public/v1/games/worms-reloaded-game-of-the-year-edition/index.json @@ -0,0 +1,27 @@ +{ + "id": 172335, + "slug": "worms-reloaded-game-of-the-year-edition", + "name": "Worms Reloaded: Game of the Year Edition", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q78670011" + ], + "created_at": "2026-07-10T10:10:52.212147", + "updated_at": "2026-07-10T10:10:52.212147", + "url": "/v1/games/worms-reloaded-game-of-the-year-edition" +} diff --git a/site/public/v1/games/worms-revolution-4-pack/index.json b/site/public/v1/games/worms-revolution-4-pack/index.json new file mode 100644 index 000000000000..c77812aa1e84 --- /dev/null +++ b/site/public/v1/games/worms-revolution-4-pack/index.json @@ -0,0 +1,27 @@ +{ + "id": 172337, + "slug": "worms-revolution-4-pack", + "name": "Worms Revolution 4-pack", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q78670102" + ], + "created_at": "2026-07-10T10:10:52.213147", + "updated_at": "2026-07-10T10:10:52.213147", + "url": "/v1/games/worms-revolution-4-pack" +} diff --git a/site/public/v1/games/worms-revolution-gold-edition/index.json b/site/public/v1/games/worms-revolution-gold-edition/index.json new file mode 100644 index 000000000000..f27c2037d032 --- /dev/null +++ b/site/public/v1/games/worms-revolution-gold-edition/index.json @@ -0,0 +1,27 @@ +{ + "id": 172339, + "slug": "worms-revolution-gold-edition", + "name": "Worms Revolution: Gold Edition", + "release_date": "2013-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60607966" + ], + "created_at": "2026-07-10T10:10:52.214146", + "updated_at": "2026-07-10T10:10:52.214146", + "url": "/v1/games/worms-revolution-gold-edition" +} diff --git a/site/public/v1/games/worms-ultimate-mayhem-deluxe-edition/index.json b/site/public/v1/games/worms-ultimate-mayhem-deluxe-edition/index.json new file mode 100644 index 000000000000..ad9d023b6b44 --- /dev/null +++ b/site/public/v1/games/worms-ultimate-mayhem-deluxe-edition/index.json @@ -0,0 +1,27 @@ +{ + "id": 172343, + "slug": "worms-ultimate-mayhem-deluxe-edition", + "name": "Worms Ultimate Mayhem - Deluxe Edition", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q78670068" + ], + "created_at": "2026-07-10T10:10:52.214146", + "updated_at": "2026-07-10T10:10:52.214146", + "url": "/v1/games/worms-ultimate-mayhem-deluxe-edition" +} diff --git a/site/public/v1/games/worms-ultimate-mayhem-four-pack/index.json b/site/public/v1/games/worms-ultimate-mayhem-four-pack/index.json new file mode 100644 index 000000000000..5028ff2951f4 --- /dev/null +++ b/site/public/v1/games/worms-ultimate-mayhem-four-pack/index.json @@ -0,0 +1,27 @@ +{ + "id": 172344, + "slug": "worms-ultimate-mayhem-four-pack", + "name": "Worms Ultimate Mayhem - Four Pack", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q78670045" + ], + "created_at": "2026-07-10T10:10:52.215146", + "updated_at": "2026-07-10T10:10:52.215146", + "url": "/v1/games/worms-ultimate-mayhem-four-pack" +} diff --git a/site/public/v1/games/worms-united/index.json b/site/public/v1/games/worms-united/index.json new file mode 100644 index 000000000000..853dcb3bc9b6 --- /dev/null +++ b/site/public/v1/games/worms-united/index.json @@ -0,0 +1,25 @@ +{ + "id": 172346, + "slug": "worms-united", + "name": "Worms United", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121084908" + ], + "created_at": "2026-07-10T10:10:52.215146", + "updated_at": "2026-07-10T10:10:52.215146", + "url": "/v1/games/worms-united" +} diff --git a/site/public/v1/games/wotam/index.json b/site/public/v1/games/wotam/index.json new file mode 100644 index 000000000000..a7a2ebb1f2c4 --- /dev/null +++ b/site/public/v1/games/wotam/index.json @@ -0,0 +1,25 @@ +{ + "id": 172372, + "slug": "wotam", + "name": "Wotam", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q12806386" + ], + "created_at": "2026-07-10T10:10:52.222145", + "updated_at": "2026-07-10T10:10:52.222145", + "url": "/v1/games/wotam" +} diff --git a/site/public/v1/games/wrestle-angels-2-top-eventer-omake-disk/index.json b/site/public/v1/games/wrestle-angels-2-top-eventer-omake-disk/index.json new file mode 100644 index 000000000000..8cea1741a87e --- /dev/null +++ b/site/public/v1/games/wrestle-angels-2-top-eventer-omake-disk/index.json @@ -0,0 +1,25 @@ +{ + "id": 172472, + "slug": "wrestle-angels-2-top-eventer-omake-disk", + "name": "Wrestle Angels 2 - Top Eventer Omake Disk", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113004590" + ], + "created_at": "2026-07-10T10:10:52.314658", + "updated_at": "2026-07-10T10:10:52.314658", + "url": "/v1/games/wrestle-angels-2-top-eventer-omake-disk" +} diff --git a/site/public/v1/games/wrestle-angels-3-omake-disk/index.json b/site/public/v1/games/wrestle-angels-3-omake-disk/index.json new file mode 100644 index 000000000000..ceb3a71fc905 --- /dev/null +++ b/site/public/v1/games/wrestle-angels-3-omake-disk/index.json @@ -0,0 +1,25 @@ +{ + "id": 172474, + "slug": "wrestle-angels-3-omake-disk", + "name": "Wrestle Angels 3 Omake Disk", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113004591" + ], + "created_at": "2026-07-10T10:10:52.315723", + "updated_at": "2026-07-10T10:10:52.315723", + "url": "/v1/games/wrestle-angels-3-omake-disk" +} diff --git a/site/public/v1/games/wrestle-angels-omake-disk/index.json b/site/public/v1/games/wrestle-angels-omake-disk/index.json new file mode 100644 index 000000000000..f117eff7f7bd --- /dev/null +++ b/site/public/v1/games/wrestle-angels-omake-disk/index.json @@ -0,0 +1,25 @@ +{ + "id": 172477, + "slug": "wrestle-angels-omake-disk", + "name": "Wrestle Angels Omake Disk", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113004604" + ], + "created_at": "2026-07-10T10:10:52.316706", + "updated_at": "2026-07-10T10:10:52.316706", + "url": "/v1/games/wrestle-angels-omake-disk" +} diff --git a/site/public/v1/games/wurmz/index.json b/site/public/v1/games/wurmz/index.json new file mode 100644 index 000000000000..2eb048fe6056 --- /dev/null +++ b/site/public/v1/games/wurmz/index.json @@ -0,0 +1,30 @@ +{ + "id": 172576, + "slug": "wurmz", + "name": "Wurmz", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "side-scrolling video game", + "shooter game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120729313" + ], + "created_at": "2026-07-10T10:10:52.373714", + "updated_at": "2026-07-10T10:10:52.373714", + "url": "/v1/games/wurmz" +} diff --git a/site/public/v1/games/wwe-2k15-digital-deluxe-edition/index.json b/site/public/v1/games/wwe-2k15-digital-deluxe-edition/index.json new file mode 100644 index 000000000000..2d4c47c6921b --- /dev/null +++ b/site/public/v1/games/wwe-2k15-digital-deluxe-edition/index.json @@ -0,0 +1,25 @@ +{ + "id": 172595, + "slug": "wwe-2k15-digital-deluxe-edition", + "name": "WWE 2K15 Digital Deluxe Edition", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q90132617" + ], + "created_at": "2026-07-10T10:10:52.378656", + "updated_at": "2026-07-10T10:10:52.378656", + "url": "/v1/games/wwe-2k15-digital-deluxe-edition" +} diff --git a/site/public/v1/games/wwe-2k23-deluxe-edition/index.json b/site/public/v1/games/wwe-2k23-deluxe-edition/index.json new file mode 100644 index 000000000000..b490dff48310 --- /dev/null +++ b/site/public/v1/games/wwe-2k23-deluxe-edition/index.json @@ -0,0 +1,31 @@ +{ + "id": 172603, + "slug": "wwe-2k23-deluxe-edition", + "name": "WWE 2K23 Deluxe Edition", + "release_date": "2023-03-14", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S" + ], + "genres": [], + "stores": [], + "developers": [ + "Visual Concepts" + ], + "publishers": [ + "2K" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122732454" + ], + "created_at": "2026-07-10T10:10:52.379725", + "updated_at": "2026-07-10T10:10:52.379725", + "url": "/v1/games/wwe-2k23-deluxe-edition" +} diff --git a/site/public/v1/games/wwe-2k23-icon-edition/index.json b/site/public/v1/games/wwe-2k23-icon-edition/index.json new file mode 100644 index 000000000000..d1a424ba0aa9 --- /dev/null +++ b/site/public/v1/games/wwe-2k23-icon-edition/index.json @@ -0,0 +1,31 @@ +{ + "id": 172604, + "slug": "wwe-2k23-icon-edition", + "name": "WWE 2K23 Icon Edition", + "release_date": "2023-03-14", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Xbox Series X and Series S" + ], + "genres": [], + "stores": [], + "developers": [ + "Visual Concepts" + ], + "publishers": [ + "2K" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122732467" + ], + "created_at": "2026-07-10T10:10:52.380661", + "updated_at": "2026-07-10T10:10:52.380661", + "url": "/v1/games/wwe-2k23-icon-edition" +} diff --git a/site/public/v1/games/wwe-smackdown-vs-raw-online/index.json b/site/public/v1/games/wwe-smackdown-vs-raw-online/index.json new file mode 100644 index 000000000000..1d1fa6b17640 --- /dev/null +++ b/site/public/v1/games/wwe-smackdown-vs-raw-online/index.json @@ -0,0 +1,33 @@ +{ + "id": 172627, + "slug": "wwe-smackdown-vs-raw-online", + "name": "WWE SmackDown vs. Raw Online", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "professional wrestling video game" + ], + "stores": [], + "developers": [ + "Vertigo Games" + ], + "publishers": [ + "THQ" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q487245" + ], + "created_at": "2026-07-10T10:10:52.384656", + "updated_at": "2026-07-10T10:10:52.384656", + "url": "/v1/games/wwe-smackdown-vs-raw-online" +} diff --git a/site/public/v1/games/x-albion-prelude/index.json b/site/public/v1/games/x-albion-prelude/index.json new file mode 100644 index 000000000000..18fc80b0383f --- /dev/null +++ b/site/public/v1/games/x-albion-prelude/index.json @@ -0,0 +1,36 @@ +{ + "id": 172707, + "slug": "x-albion-prelude", + "name": "X³: Albion Prelude", + "release_date": "2011-12-15", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "space flight simulation game", + "space opera video game", + "space trading and combat game" + ], + "stores": [], + "developers": [ + "Egosoft" + ], + "publishers": [ + "Deep Silver" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q14124718" + ], + "created_at": "2026-07-10T10:10:52.447499", + "updated_at": "2026-07-10T10:10:52.447499", + "url": "/v1/games/x-albion-prelude" +} diff --git a/site/public/v1/games/x-com-alliance/index.json b/site/public/v1/games/x-com-alliance/index.json new file mode 100644 index 000000000000..9d2de485003f --- /dev/null +++ b/site/public/v1/games/x-com-alliance/index.json @@ -0,0 +1,34 @@ +{ + "id": 172718, + "slug": "x-com-alliance", + "name": "X-COM: Alliance", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "role-playing game", + "real-time strategy", + "strategy video game", + "tactical shooter" + ], + "stores": [], + "developers": [ + "MicroProse" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8041427" + ], + "created_at": "2026-07-10T10:10:52.471611", + "updated_at": "2026-07-10T10:10:52.471611", + "url": "/v1/games/x-com-alliance" +} diff --git a/site/public/v1/games/x-com-collection/index.json b/site/public/v1/games/x-com-collection/index.json new file mode 100644 index 000000000000..27a5adbc8121 --- /dev/null +++ b/site/public/v1/games/x-com-collection/index.json @@ -0,0 +1,25 @@ +{ + "id": 172719, + "slug": "x-com-collection", + "name": "X-COM Collection", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125657183" + ], + "created_at": "2026-07-10T10:10:52.477652", + "updated_at": "2026-07-10T10:10:52.477652", + "url": "/v1/games/x-com-collection" +} diff --git a/site/public/v1/games/x-gold/index.json b/site/public/v1/games/x-gold/index.json new file mode 100644 index 000000000000..d57f5780d04d --- /dev/null +++ b/site/public/v1/games/x-gold/index.json @@ -0,0 +1,25 @@ +{ + "id": 172736, + "slug": "x-gold", + "name": "X: Gold", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125997350" + ], + "created_at": "2026-07-10T10:10:52.505565", + "updated_at": "2026-07-10T10:10:52.505565", + "url": "/v1/games/x-gold" +} diff --git a/site/public/v1/games/x4-cradle-of-humanity/index.json b/site/public/v1/games/x4-cradle-of-humanity/index.json new file mode 100644 index 000000000000..6a42c47733bf --- /dev/null +++ b/site/public/v1/games/x4-cradle-of-humanity/index.json @@ -0,0 +1,31 @@ +{ + "id": 172824, + "slug": "x4-cradle-of-humanity", + "name": "X4: Cradle of Humanity", + "release_date": "2021-03-16", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Egosoft" + ], + "publishers": [ + "Egosoft" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111605206" + ], + "created_at": "2026-07-10T10:10:52.539463", + "updated_at": "2026-07-10T10:10:52.539463", + "url": "/v1/games/x4-cradle-of-humanity" +} diff --git a/site/public/v1/games/x4-split-vendetta/index.json b/site/public/v1/games/x4-split-vendetta/index.json new file mode 100644 index 000000000000..e6d4bc32f672 --- /dev/null +++ b/site/public/v1/games/x4-split-vendetta/index.json @@ -0,0 +1,31 @@ +{ + "id": 172826, + "slug": "x4-split-vendetta", + "name": "X4: Split Vendetta", + "release_date": "2020-03-31", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Egosoft" + ], + "publishers": [ + "Egosoft" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111605189" + ], + "created_at": "2026-07-10T10:10:52.539463", + "updated_at": "2026-07-10T10:10:52.539463", + "url": "/v1/games/x4-split-vendetta" +} diff --git a/site/public/v1/games/x4-tides-of-avarice/index.json b/site/public/v1/games/x4-tides-of-avarice/index.json new file mode 100644 index 000000000000..e1d576025e34 --- /dev/null +++ b/site/public/v1/games/x4-tides-of-avarice/index.json @@ -0,0 +1,31 @@ +{ + "id": 172827, + "slug": "x4-tides-of-avarice", + "name": "X4: Tides of Avarice", + "release_date": "2022-03-14", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Egosoft" + ], + "publishers": [ + "Egosoft" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111605223" + ], + "created_at": "2026-07-10T10:10:52.540463", + "updated_at": "2026-07-10T10:10:52.540463", + "url": "/v1/games/x4-tides-of-avarice" +} diff --git a/site/public/v1/games/xanadu-scenario-ii/index.json b/site/public/v1/games/xanadu-scenario-ii/index.json new file mode 100644 index 000000000000..66d881b3bb17 --- /dev/null +++ b/site/public/v1/games/xanadu-scenario-ii/index.json @@ -0,0 +1,36 @@ +{ + "id": 172842, + "slug": "xanadu-scenario-ii", + "name": "Xanadu Scenario II", + "release_date": "1986-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PC-8000 series", + "Sharp X1", + "FM-7", + "NEC PC-8800 series" + ], + "genres": [ + "action role-playing game" + ], + "stores": [], + "developers": [ + "Nihon Falcom" + ], + "publishers": [ + "Nihon Falcom" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105697999" + ], + "created_at": "2026-07-10T10:10:52.543463", + "updated_at": "2026-07-10T10:10:52.543463", + "url": "/v1/games/xanadu-scenario-ii" +} diff --git a/site/public/v1/games/xash3d-fwgs/index.json b/site/public/v1/games/xash3d-fwgs/index.json new file mode 100644 index 000000000000..d604c221ca86 --- /dev/null +++ b/site/public/v1/games/xash3d-fwgs/index.json @@ -0,0 +1,25 @@ +{ + "id": 172864, + "slug": "xash3d-fwgs", + "name": "Xash3D FWGS", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120720828" + ], + "created_at": "2026-07-10T10:10:52.549562", + "updated_at": "2026-07-10T10:10:52.549562", + "url": "/v1/games/xash3d-fwgs" +} diff --git a/site/public/v1/games/xbox-exhibition-disks/index.json b/site/public/v1/games/xbox-exhibition-disks/index.json new file mode 100644 index 000000000000..2dec38480475 --- /dev/null +++ b/site/public/v1/games/xbox-exhibition-disks/index.json @@ -0,0 +1,27 @@ +{ + "id": 172877, + "slug": "xbox-exhibition-disks", + "name": "Xbox Exhibition disks", + "release_date": "2002-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Xbox Game Studios" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8043361" + ], + "created_at": "2026-07-10T10:10:52.558463", + "updated_at": "2026-07-10T10:10:52.558463", + "url": "/v1/games/xbox-exhibition-disks" +} diff --git a/site/public/v1/games/xcom-2-collection/index.json b/site/public/v1/games/xcom-2-collection/index.json new file mode 100644 index 000000000000..66ffab5f1df3 --- /dev/null +++ b/site/public/v1/games/xcom-2-collection/index.json @@ -0,0 +1,25 @@ +{ + "id": 172884, + "slug": "xcom-2-collection", + "name": "XCOM 2 Collection", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123337695" + ], + "created_at": "2026-07-10T10:10:52.572470", + "updated_at": "2026-07-10T10:10:52.573482", + "url": "/v1/games/xcom-2-collection" +} diff --git a/site/public/v1/games/xcom-2-digital-deluxe-edition/index.json b/site/public/v1/games/xcom-2-digital-deluxe-edition/index.json new file mode 100644 index 000000000000..1ec33cfa4656 --- /dev/null +++ b/site/public/v1/games/xcom-2-digital-deluxe-edition/index.json @@ -0,0 +1,25 @@ +{ + "id": 172885, + "slug": "xcom-2-digital-deluxe-edition", + "name": "XCOM 2: Digital Deluxe Edition", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131407059" + ], + "created_at": "2026-07-10T10:10:52.574481", + "updated_at": "2026-07-10T10:10:52.574481", + "url": "/v1/games/xcom-2-digital-deluxe-edition" +} diff --git a/site/public/v1/games/xcom-2-reinforcement-pack/index.json b/site/public/v1/games/xcom-2-reinforcement-pack/index.json new file mode 100644 index 000000000000..e6f9923123bb --- /dev/null +++ b/site/public/v1/games/xcom-2-reinforcement-pack/index.json @@ -0,0 +1,25 @@ +{ + "id": 172886, + "slug": "xcom-2-reinforcement-pack", + "name": "XCOM 2: Reinforcement Pack", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131407075" + ], + "created_at": "2026-07-10T10:10:52.577480", + "updated_at": "2026-07-10T10:10:52.577480", + "url": "/v1/games/xcom-2-reinforcement-pack" +} diff --git a/site/public/v1/games/xcom-2-war-of-the-chosen/index.json b/site/public/v1/games/xcom-2-war-of-the-chosen/index.json new file mode 100644 index 000000000000..8d70ffcf86cb --- /dev/null +++ b/site/public/v1/games/xcom-2-war-of-the-chosen/index.json @@ -0,0 +1,30 @@ +{ + "id": 172887, + "slug": "xcom-2-war-of-the-chosen", + "name": "XCOM 2: War of the Chosen", + "release_date": "2017-08-29", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Firaxis Games" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q39052928" + ], + "created_at": "2026-07-10T10:10:52.578481", + "updated_at": "2026-07-10T10:10:52.578481", + "url": "/v1/games/xcom-2-war-of-the-chosen" +} diff --git a/site/public/v1/games/xcom-enemy-unknown-complete-pack/index.json b/site/public/v1/games/xcom-enemy-unknown-complete-pack/index.json new file mode 100644 index 000000000000..ac3d09758047 --- /dev/null +++ b/site/public/v1/games/xcom-enemy-unknown-complete-pack/index.json @@ -0,0 +1,25 @@ +{ + "id": 172890, + "slug": "xcom-enemy-unknown-complete-pack", + "name": "XCOM: Enemy Unknown Complete Pack", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124819587" + ], + "created_at": "2026-07-10T10:10:52.583624", + "updated_at": "2026-07-10T10:10:52.583624", + "url": "/v1/games/xcom-enemy-unknown-complete-pack" +} diff --git a/site/public/v1/games/xd-8001/index.json b/site/public/v1/games/xd-8001/index.json new file mode 100644 index 000000000000..aa2be5d21287 --- /dev/null +++ b/site/public/v1/games/xd-8001/index.json @@ -0,0 +1,25 @@ +{ + "id": 172896, + "slug": "xd-8001", + "name": "XD 8001", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121493810" + ], + "created_at": "2026-07-10T10:10:52.609082", + "updated_at": "2026-07-10T10:10:52.609082", + "url": "/v1/games/xd-8001" +} diff --git a/site/public/v1/games/xdoom/index.json b/site/public/v1/games/xdoom/index.json new file mode 100644 index 000000000000..76aca10ae320 --- /dev/null +++ b/site/public/v1/games/xdoom/index.json @@ -0,0 +1,25 @@ +{ + "id": 172902, + "slug": "xdoom", + "name": "XDoom", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124452738" + ], + "created_at": "2026-07-10T10:10:52.623995", + "updated_at": "2026-07-10T10:10:52.623995", + "url": "/v1/games/xdoom" +} diff --git a/site/public/v1/games/xenoblade-chronicles-2-nintendo-switch-2-edition-upgrade-pack/index.json b/site/public/v1/games/xenoblade-chronicles-2-nintendo-switch-2-edition-upgrade-pack/index.json new file mode 100644 index 000000000000..cb5aae1119ee --- /dev/null +++ b/site/public/v1/games/xenoblade-chronicles-2-nintendo-switch-2-edition-upgrade-pack/index.json @@ -0,0 +1,27 @@ +{ + "id": 172937, + "slug": "xenoblade-chronicles-2-nintendo-switch-2-edition-upgrade-pack", + "name": "Xenoblade Chronicles 2 – Nintendo Switch 2 Edition Upgrade Pack", + "release_date": "2026-07-30", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Nintendo" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140179852" + ], + "created_at": "2026-07-10T10:10:52.669045", + "updated_at": "2026-07-10T10:10:52.669045", + "url": "/v1/games/xenoblade-chronicles-2-nintendo-switch-2-edition-upgrade-pack" +} diff --git a/site/public/v1/games/xenoblade-chronicles-3-nintendo-switch-2-edition-upgrade-pack/index.json b/site/public/v1/games/xenoblade-chronicles-3-nintendo-switch-2-edition-upgrade-pack/index.json new file mode 100644 index 000000000000..5510212bdf4a --- /dev/null +++ b/site/public/v1/games/xenoblade-chronicles-3-nintendo-switch-2-edition-upgrade-pack/index.json @@ -0,0 +1,27 @@ +{ + "id": 172941, + "slug": "xenoblade-chronicles-3-nintendo-switch-2-edition-upgrade-pack", + "name": "Xenoblade Chronicles 3 – Nintendo Switch 2 Edition Upgrade Pack", + "release_date": "2026-12-03", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Nintendo" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140179885" + ], + "created_at": "2026-07-10T10:10:52.670068", + "updated_at": "2026-07-10T10:10:52.670068", + "url": "/v1/games/xenoblade-chronicles-3-nintendo-switch-2-edition-upgrade-pack" +} diff --git a/site/public/v1/games/xenoblade-chronicles-definitive-edition-nintendo-switch-2-edition-upgrade-pack/index.json b/site/public/v1/games/xenoblade-chronicles-definitive-edition-nintendo-switch-2-edition-upgrade-pack/index.json new file mode 100644 index 000000000000..5a4dd65ec0b8 --- /dev/null +++ b/site/public/v1/games/xenoblade-chronicles-definitive-edition-nintendo-switch-2-edition-upgrade-pack/index.json @@ -0,0 +1,27 @@ +{ + "id": 172944, + "slug": "xenoblade-chronicles-definitive-edition-nintendo-switch-2-edition-upgrade-pack", + "name": "Xenoblade Chronicles: Definitive Edition – Nintendo Switch 2 Edition Upgrade Pack", + "release_date": "2026-06-09", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [ + "Nintendo" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140179789" + ], + "created_at": "2026-07-10T10:10:52.671087", + "updated_at": "2026-07-10T10:10:52.671087", + "url": "/v1/games/xenoblade-chronicles-definitive-edition-nintendo-switch-2-edition-upgrade-pack" +} diff --git a/site/public/v1/games/yamagi-quake-ii/index.json b/site/public/v1/games/yamagi-quake-ii/index.json new file mode 100644 index 000000000000..1b72c8005e4f --- /dev/null +++ b/site/public/v1/games/yamagi-quake-ii/index.json @@ -0,0 +1,25 @@ +{ + "id": 173332, + "slug": "yamagi-quake-ii", + "name": "Yamagi Quake II", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122208240" + ], + "created_at": "2026-07-10T10:10:52.774838", + "updated_at": "2026-07-10T10:10:52.774838", + "url": "/v1/games/yamagi-quake-ii" +} diff --git a/site/public/v1/games/yeti3ds/index.json b/site/public/v1/games/yeti3ds/index.json new file mode 100644 index 000000000000..85d2294f7c80 --- /dev/null +++ b/site/public/v1/games/yeti3ds/index.json @@ -0,0 +1,31 @@ +{ + "id": 173523, + "slug": "yeti3ds", + "name": "Yeti3DS", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Nintendo 3DS" + ], + "genres": [], + "stores": [], + "developers": [ + "smealum" + ], + "publishers": [ + "smealum" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123139931" + ], + "created_at": "2026-07-10T10:10:52.857772", + "updated_at": "2026-07-10T10:10:52.857772", + "url": "/v1/games/yeti3ds" +} diff --git a/site/public/v1/games/yo-frankie/index.json b/site/public/v1/games/yo-frankie/index.json new file mode 100644 index 000000000000..736f0acd3dcf --- /dev/null +++ b/site/public/v1/games/yo-frankie/index.json @@ -0,0 +1,34 @@ +{ + "id": 173564, + "slug": "yo-frankie", + "name": "Yo Frankie!", + "release_date": "2008-12-09", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "platformer" + ], + "stores": [], + "developers": [ + "Blender Foundation" + ], + "publishers": [ + "Blender Foundation" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1631459" + ], + "created_at": "2026-07-10T10:10:52.867777", + "updated_at": "2026-07-10T10:10:52.867777", + "url": "/v1/games/yo-frankie" +} diff --git a/site/public/v1/games/yogventures/index.json b/site/public/v1/games/yogventures/index.json new file mode 100644 index 000000000000..88fbd2751f41 --- /dev/null +++ b/site/public/v1/games/yogventures/index.json @@ -0,0 +1,25 @@ +{ + "id": 173612, + "slug": "yogventures", + "name": "Yogventures!", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107999478" + ], + "created_at": "2026-07-10T10:10:52.880975", + "updated_at": "2026-07-10T10:10:52.880975", + "url": "/v1/games/yogventures" +} diff --git a/site/public/v1/games/you-don-t-know-jack-jumbo/index.json b/site/public/v1/games/you-don-t-know-jack-jumbo/index.json new file mode 100644 index 000000000000..fa8c1a462cd3 --- /dev/null +++ b/site/public/v1/games/you-don-t-know-jack-jumbo/index.json @@ -0,0 +1,25 @@ +{ + "id": 173793, + "slug": "you-don-t-know-jack-jumbo", + "name": "You Don't Know Jack: Jumbo", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q85129312" + ], + "created_at": "2026-07-10T10:10:52.976734", + "updated_at": "2026-07-10T10:10:52.976734", + "url": "/v1/games/you-don-t-know-jack-jumbo" +} diff --git a/site/public/v1/games/you-don-t-know-jack-the-irreverent-collection/index.json b/site/public/v1/games/you-don-t-know-jack-the-irreverent-collection/index.json new file mode 100644 index 000000000000..f7c5dade1572 --- /dev/null +++ b/site/public/v1/games/you-don-t-know-jack-the-irreverent-collection/index.json @@ -0,0 +1,25 @@ +{ + "id": 173804, + "slug": "you-don-t-know-jack-the-irreverent-collection", + "name": "You Don't Know Jack: The Irreverent Collection", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125140475" + ], + "created_at": "2026-07-10T10:10:52.980705", + "updated_at": "2026-07-10T10:10:52.980705", + "url": "/v1/games/you-don-t-know-jack-the-irreverent-collection" +} diff --git a/site/public/v1/games/you-don-t-know-jack-xxl-x-tra-x-tra-large/index.json b/site/public/v1/games/you-don-t-know-jack-xxl-x-tra-x-tra-large/index.json new file mode 100644 index 000000000000..189218347366 --- /dev/null +++ b/site/public/v1/games/you-don-t-know-jack-xxl-x-tra-x-tra-large/index.json @@ -0,0 +1,25 @@ +{ + "id": 173811, + "slug": "you-don-t-know-jack-xxl-x-tra-x-tra-large", + "name": "You Don’t Know Jack XXL: X-Tra X-Tra Large", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126689826" + ], + "created_at": "2026-07-10T10:10:52.981698", + "updated_at": "2026-07-10T10:10:52.981698", + "url": "/v1/games/you-don-t-know-jack-xxl-x-tra-x-tra-large" +} diff --git a/site/public/v1/games/you-re-under-arrest/index.json b/site/public/v1/games/you-re-under-arrest/index.json new file mode 100644 index 000000000000..367ce646a5a8 --- /dev/null +++ b/site/public/v1/games/you-re-under-arrest/index.json @@ -0,0 +1,25 @@ +{ + "id": 173859, + "slug": "you-re-under-arrest", + "name": "You're Under Arrest!", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11639952" + ], + "created_at": "2026-07-10T10:10:52.995805", + "updated_at": "2026-07-10T10:10:52.995805", + "url": "/v1/games/you-re-under-arrest" +} diff --git a/site/public/v1/games/ys-i-ii/index.json b/site/public/v1/games/ys-i-ii/index.json new file mode 100644 index 000000000000..49aa4d6081fa --- /dev/null +++ b/site/public/v1/games/ys-i-ii/index.json @@ -0,0 +1,38 @@ +{ + "id": 174031, + "slug": "ys-i-ii", + "name": "Ys I & II", + "release_date": "1989-12-21", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "TurboGrafx-16", + "Sharp X68000", + "Nintendo DS", + "PlayStation Portable", + "iOS", + "Microsoft Windows" + ], + "genres": [ + "action role-playing game" + ], + "stores": [], + "developers": [ + "Nihon Falcom" + ], + "publishers": [ + "Nihon Falcom" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3262153" + ], + "created_at": "2026-07-10T10:10:53.042498", + "updated_at": "2026-07-10T10:10:53.042498", + "url": "/v1/games/ys-i-ii" +} diff --git a/site/public/v1/games/z-style-pack/index.json b/site/public/v1/games/z-style-pack/index.json new file mode 100644 index 000000000000..1387c79da76a --- /dev/null +++ b/site/public/v1/games/z-style-pack/index.json @@ -0,0 +1,28 @@ +{ + "id": 174298, + "slug": "z-style-pack", + "name": "Z Style Pack", + "release_date": "2011-12-09", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 3", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60617373" + ], + "created_at": "2026-07-10T10:10:53.184706", + "updated_at": "2026-07-10T10:10:53.184706", + "url": "/v1/games/z-style-pack" +} diff --git a/site/public/v1/games/zaark-and-the-night-team/index.json b/site/public/v1/games/zaark-and-the-night-team/index.json new file mode 100644 index 000000000000..c10d69c7f29c --- /dev/null +++ b/site/public/v1/games/zaark-and-the-night-team/index.json @@ -0,0 +1,25 @@ +{ + "id": 174312, + "slug": "zaark-and-the-night-team", + "name": "Zaark and the Night Team", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q74119094" + ], + "created_at": "2026-07-10T10:10:53.186770", + "updated_at": "2026-07-10T10:10:53.186770", + "url": "/v1/games/zaark-and-the-night-team" +} diff --git a/site/public/v1/games/zairo-il-primo-giorno/index.json b/site/public/v1/games/zairo-il-primo-giorno/index.json new file mode 100644 index 000000000000..bca03420df89 --- /dev/null +++ b/site/public/v1/games/zairo-il-primo-giorno/index.json @@ -0,0 +1,25 @@ +{ + "id": 174345, + "slug": "zairo-il-primo-giorno", + "name": "Zairo - Il primo giorno", + "release_date": "2009-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4023732" + ], + "created_at": "2026-07-10T10:10:53.194410", + "updated_at": "2026-07-10T10:10:53.194410", + "url": "/v1/games/zairo-il-primo-giorno" +} diff --git a/site/public/v1/games/zak-mckracken-and-the-alien-rockstars/index.json b/site/public/v1/games/zak-mckracken-and-the-alien-rockstars/index.json new file mode 100644 index 000000000000..90c93a4f35f2 --- /dev/null +++ b/site/public/v1/games/zak-mckracken-and-the-alien-rockstars/index.json @@ -0,0 +1,25 @@ +{ + "id": 174346, + "slug": "zak-mckracken-and-the-alien-rockstars", + "name": "Zak McKracken and the Alien Rockstars", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120986269" + ], + "created_at": "2026-07-10T10:10:53.194410", + "updated_at": "2026-07-10T10:10:53.194410", + "url": "/v1/games/zak-mckracken-and-the-alien-rockstars" +} diff --git a/site/public/v1/games/zak-repixeled/index.json b/site/public/v1/games/zak-repixeled/index.json new file mode 100644 index 000000000000..1571ae707514 --- /dev/null +++ b/site/public/v1/games/zak-repixeled/index.json @@ -0,0 +1,27 @@ +{ + "id": 174348, + "slug": "zak-repixeled", + "name": "Zak - Repixeled", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "point-and-click adventure" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120801256" + ], + "created_at": "2026-07-10T10:10:53.195433", + "updated_at": "2026-07-10T10:10:53.195433", + "url": "/v1/games/zak-repixeled" +} diff --git a/site/public/v1/games/zandronum/index.json b/site/public/v1/games/zandronum/index.json new file mode 100644 index 000000000000..7fa0d5f5946c --- /dev/null +++ b/site/public/v1/games/zandronum/index.json @@ -0,0 +1,25 @@ +{ + "id": 174379, + "slug": "zandronum", + "name": "Zandronum", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10724164" + ], + "created_at": "2026-07-10T10:10:53.202404", + "updated_at": "2026-07-10T10:10:53.202404", + "url": "/v1/games/zandronum" +} diff --git a/site/public/v1/games/zarta/index.json b/site/public/v1/games/zarta/index.json new file mode 100644 index 000000000000..fdd7991f27c5 --- /dev/null +++ b/site/public/v1/games/zarta/index.json @@ -0,0 +1,25 @@ +{ + "id": 174423, + "slug": "zarta", + "name": "Zarta", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138912022" + ], + "created_at": "2026-07-10T10:10:53.211342", + "updated_at": "2026-07-10T10:10:53.211342", + "url": "/v1/games/zarta" +} diff --git a/site/public/v1/games/zdaemon/index.json b/site/public/v1/games/zdaemon/index.json new file mode 100644 index 000000000000..9f51ecbfd9fe --- /dev/null +++ b/site/public/v1/games/zdaemon/index.json @@ -0,0 +1,25 @@ +{ + "id": 174460, + "slug": "zdaemon", + "name": "ZDaemon", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q9097590" + ], + "created_at": "2026-07-10T10:10:53.219449", + "updated_at": "2026-07-10T10:10:53.219449", + "url": "/v1/games/zdaemon" +} diff --git a/site/public/v1/games/zdoom/index.json b/site/public/v1/games/zdoom/index.json new file mode 100644 index 000000000000..6efbb471a40c --- /dev/null +++ b/site/public/v1/games/zdoom/index.json @@ -0,0 +1,27 @@ +{ + "id": 174461, + "slug": "zdoom", + "name": "ZDoom", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Classic Mac OS" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2881936" + ], + "created_at": "2026-07-10T10:10:53.220419", + "updated_at": "2026-07-10T10:10:53.220419", + "url": "/v1/games/zdoom" +} diff --git a/site/public/v1/games/zelda-notes/index.json b/site/public/v1/games/zelda-notes/index.json new file mode 100644 index 000000000000..16dcb4fef925 --- /dev/null +++ b/site/public/v1/games/zelda-notes/index.json @@ -0,0 +1,25 @@ +{ + "id": 174521, + "slug": "zelda-notes", + "name": "ZELDA NOTES", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134731673" + ], + "created_at": "2026-07-10T10:10:53.232430", + "updated_at": "2026-07-10T10:10:53.232430", + "url": "/v1/games/zelda-notes" +} diff --git a/site/public/v1/games/zen-pinball-2-zen-pinball-classics/index.json b/site/public/v1/games/zen-pinball-2-zen-pinball-classics/index.json new file mode 100644 index 000000000000..fc6380ab9c93 --- /dev/null +++ b/site/public/v1/games/zen-pinball-2-zen-pinball-classics/index.json @@ -0,0 +1,25 @@ +{ + "id": 174567, + "slug": "zen-pinball-2-zen-pinball-classics", + "name": "Zen Pinball 2: Zen Pinball Classics", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107424335" + ], + "created_at": "2026-07-10T10:10:53.244340", + "updated_at": "2026-07-10T10:10:53.245342", + "url": "/v1/games/zen-pinball-2-zen-pinball-classics" +} diff --git a/site/public/v1/games/zen-q17218591/index.json b/site/public/v1/games/zen-q17218591/index.json new file mode 100644 index 000000000000..eff21a9b5c7e --- /dev/null +++ b/site/public/v1/games/zen-q17218591/index.json @@ -0,0 +1,31 @@ +{ + "id": 174571, + "slug": "zen-q17218591", + "name": "Zen", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "go video game" + ], + "stores": [], + "developers": [ + "Mynavi Corporation" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17218591" + ], + "created_at": "2026-07-10T10:10:53.245342", + "updated_at": "2026-07-10T10:10:53.245342", + "url": "/v1/games/zen-q17218591" +} diff --git a/site/public/v1/games/zero-escape-the-nonary-games/index.json b/site/public/v1/games/zero-escape-the-nonary-games/index.json new file mode 100644 index 000000000000..e7b4559b1c73 --- /dev/null +++ b/site/public/v1/games/zero-escape-the-nonary-games/index.json @@ -0,0 +1,38 @@ +{ + "id": 174674, + "slug": "zero-escape-the-nonary-games", + "name": "Zero Escape: The Nonary Games", + "release_date": "2017-03-24", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 4", + "PlayStation Vita", + "Xbox Series X and Series S", + "Microsoft Windows" + ], + "genres": [ + "adventure video game", + "visual novel", + "escape room video game" + ], + "stores": [], + "developers": [ + "Spike Chunsoft" + ], + "publishers": [ + "Spike Chunsoft" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q31970991" + ], + "created_at": "2026-07-10T10:10:53.268710", + "updated_at": "2026-07-10T10:10:53.268710", + "url": "/v1/games/zero-escape-the-nonary-games" +} diff --git a/site/public/v1/games/zero-racers/index.json b/site/public/v1/games/zero-racers/index.json new file mode 100644 index 000000000000..ba61c1f74a87 --- /dev/null +++ b/site/public/v1/games/zero-racers/index.json @@ -0,0 +1,29 @@ +{ + "id": 174709, + "slug": "zero-racers", + "name": "Zero Racers", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Virtual Boy" + ], + "genres": [ + "racing video game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q96416037" + ], + "created_at": "2026-07-10T10:10:53.276725", + "updated_at": "2026-07-10T10:10:53.276725", + "url": "/v1/games/zero-racers" +} diff --git a/site/public/v1/games/zezam/index.json b/site/public/v1/games/zezam/index.json new file mode 100644 index 000000000000..7a3352d231ae --- /dev/null +++ b/site/public/v1/games/zezam/index.json @@ -0,0 +1,25 @@ +{ + "id": 174804, + "slug": "zezam", + "name": "Zezam", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q12344248" + ], + "created_at": "2026-07-10T10:10:53.300614", + "updated_at": "2026-07-10T10:10:53.300614", + "url": "/v1/games/zezam" +} diff --git a/site/public/v1/games/zid-journey-q117087191/index.json b/site/public/v1/games/zid-journey-q117087191/index.json new file mode 100644 index 000000000000..18c0b132260b --- /dev/null +++ b/site/public/v1/games/zid-journey-q117087191/index.json @@ -0,0 +1,27 @@ +{ + "id": 174831, + "slug": "zid-journey-q117087191", + "name": "Zid Journey", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [ + "adventure video game" + ], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117087191" + ], + "created_at": "2026-07-10T10:10:53.307603", + "updated_at": "2026-07-10T10:10:53.307603", + "url": "/v1/games/zid-journey-q117087191" +} diff --git a/site/public/v1/games/zodiacats-supporter-pack/index.json b/site/public/v1/games/zodiacats-supporter-pack/index.json new file mode 100644 index 000000000000..ec75c8e36ba5 --- /dev/null +++ b/site/public/v1/games/zodiacats-supporter-pack/index.json @@ -0,0 +1,31 @@ +{ + "id": 174932, + "slug": "zodiacats-supporter-pack", + "name": "Zodiacats - Supporter Pack", + "release_date": "2022-03-31", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Devcats" + ], + "publishers": [ + "Devcats" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117713312" + ], + "created_at": "2026-07-10T10:10:53.327982", + "updated_at": "2026-07-10T10:10:53.327982", + "url": "/v1/games/zodiacats-supporter-pack" +} diff --git a/site/public/v1/games/zombie-army-trilogy/index.json b/site/public/v1/games/zombie-army-trilogy/index.json new file mode 100644 index 000000000000..6042594b0ec8 --- /dev/null +++ b/site/public/v1/games/zombie-army-trilogy/index.json @@ -0,0 +1,35 @@ +{ + "id": 175022, + "slug": "zombie-army-trilogy", + "name": "Zombie Army Trilogy", + "release_date": "2015-03-06", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 4", + "Microsoft Windows" + ], + "genres": [ + "third-person shooter", + "tactical shooter" + ], + "stores": [], + "developers": [ + "Rebellion Developments" + ], + "publishers": [ + "Rebellion Developments" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18750616" + ], + "created_at": "2026-07-10T10:10:53.348289", + "updated_at": "2026-07-10T10:10:53.348289", + "url": "/v1/games/zombie-army-trilogy" +} diff --git a/site/public/v1/games/zombie-driver-hd-complete-edition/index.json b/site/public/v1/games/zombie-driver-hd-complete-edition/index.json new file mode 100644 index 000000000000..1f62d558d288 --- /dev/null +++ b/site/public/v1/games/zombie-driver-hd-complete-edition/index.json @@ -0,0 +1,27 @@ +{ + "id": 175085, + "slug": "zombie-driver-hd-complete-edition", + "name": "Zombie Driver HD Complete Edition", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108050001" + ], + "created_at": "2026-07-10T10:10:53.361520", + "updated_at": "2026-07-10T10:10:53.361520", + "url": "/v1/games/zombie-driver-hd-complete-edition" +} diff --git a/site/public/v1/games/zombie-driver-immortal-edition/index.json b/site/public/v1/games/zombie-driver-immortal-edition/index.json new file mode 100644 index 000000000000..c81e7d8efa96 --- /dev/null +++ b/site/public/v1/games/zombie-driver-immortal-edition/index.json @@ -0,0 +1,25 @@ +{ + "id": 175087, + "slug": "zombie-driver-immortal-edition", + "name": "Zombie Driver: Immortal Edition", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108050278" + ], + "created_at": "2026-07-10T10:10:53.361520", + "updated_at": "2026-07-10T10:10:53.361520", + "url": "/v1/games/zombie-driver-immortal-edition" +} diff --git a/site/public/v1/games/zombie-driver-ultimate-edition/index.json b/site/public/v1/games/zombie-driver-ultimate-edition/index.json new file mode 100644 index 000000000000..300414cf1dac --- /dev/null +++ b/site/public/v1/games/zombie-driver-ultimate-edition/index.json @@ -0,0 +1,25 @@ +{ + "id": 175088, + "slug": "zombie-driver-ultimate-edition", + "name": "Zombie Driver Ultimate Edition", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [], + "genres": [], + "stores": [], + "developers": [], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108050275" + ], + "created_at": "2026-07-10T10:10:53.362778", + "updated_at": "2026-07-10T10:10:53.362778", + "url": "/v1/games/zombie-driver-ultimate-edition" +} diff --git a/site/public/v1/games/zombie-panic/index.json b/site/public/v1/games/zombie-panic/index.json new file mode 100644 index 000000000000..29f25ba7751d --- /dev/null +++ b/site/public/v1/games/zombie-panic/index.json @@ -0,0 +1,33 @@ +{ + "id": 175180, + "slug": "zombie-panic", + "name": "Zombie Panic!", + "release_date": "2004-10-31", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter" + ], + "stores": [], + "developers": [ + "Zombie Panic Team" + ], + "publishers": [ + "Zombie Panic Team" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63571490" + ], + "created_at": "2026-07-10T10:10:53.382296", + "updated_at": "2026-07-10T10:10:53.382296", + "url": "/v1/games/zombie-panic" +} diff --git a/site/public/v1/games/zombiebound-reloaded/index.json b/site/public/v1/games/zombiebound-reloaded/index.json new file mode 100644 index 000000000000..977bb0b14edf --- /dev/null +++ b/site/public/v1/games/zombiebound-reloaded/index.json @@ -0,0 +1,34 @@ +{ + "id": 175297, + "slug": "zombiebound-reloaded", + "name": "Zombiebound Reloaded", + "release_date": "2019-02-06", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation Vita" + ], + "genres": [ + "first-person shooter", + "zombie video game" + ], + "stores": [], + "developers": [ + "VitaHEX games" + ], + "publishers": [ + "VitaHEX games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124013993" + ], + "created_at": "2026-07-10T10:10:53.406087", + "updated_at": "2026-07-10T10:10:53.406087", + "url": "/v1/games/zombiebound-reloaded" +} diff --git a/site/public/v1/games/zombiebound/index.json b/site/public/v1/games/zombiebound/index.json new file mode 100644 index 000000000000..f98799419362 --- /dev/null +++ b/site/public/v1/games/zombiebound/index.json @@ -0,0 +1,34 @@ +{ + "id": 175298, + "slug": "zombiebound", + "name": "Zombiebound", + "release_date": "2017-09-30", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation Vita" + ], + "genres": [ + "first-person shooter", + "zombie apocalyptic video game" + ], + "stores": [], + "developers": [ + "VitaHEX games" + ], + "publishers": [ + "VitaHEX games" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123290206" + ], + "created_at": "2026-07-10T10:10:53.406087", + "updated_at": "2026-07-10T10:10:53.406087", + "url": "/v1/games/zombiebound" +} diff --git a/site/public/v1/games/zone-of-the-enders-hd-collection/index.json b/site/public/v1/games/zone-of-the-enders-hd-collection/index.json new file mode 100644 index 000000000000..a31eda9958ef --- /dev/null +++ b/site/public/v1/games/zone-of-the-enders-hd-collection/index.json @@ -0,0 +1,29 @@ +{ + "id": 175421, + "slug": "zone-of-the-enders-hd-collection", + "name": "Zone of the Enders HD Collection", + "release_date": null, + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "PlayStation 3" + ], + "genres": [], + "stores": [], + "developers": [ + "High Voltage Software" + ], + "publishers": [], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q40889213" + ], + "created_at": "2026-07-10T10:10:53.433179", + "updated_at": "2026-07-10T10:10:53.433179", + "url": "/v1/games/zone-of-the-enders-hd-collection" +} diff --git a/site/public/v1/games/zoo-tycoon-2-african-adventure/index.json b/site/public/v1/games/zoo-tycoon-2-african-adventure/index.json new file mode 100644 index 000000000000..bd84d79856b8 --- /dev/null +++ b/site/public/v1/games/zoo-tycoon-2-african-adventure/index.json @@ -0,0 +1,33 @@ +{ + "id": 175463, + "slug": "zoo-tycoon-2-african-adventure", + "name": "Zoo Tycoon 2: African Adventure", + "release_date": "2006-05-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Blue Fang Games" + ], + "publishers": [ + "Xbox Game Studios" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2312929" + ], + "created_at": "2026-07-10T10:10:53.441094", + "updated_at": "2026-07-10T10:10:53.441094", + "url": "/v1/games/zoo-tycoon-2-african-adventure" +} diff --git a/site/public/v1/games/zoo-tycoon-2-dino-danger-pack/index.json b/site/public/v1/games/zoo-tycoon-2-dino-danger-pack/index.json new file mode 100644 index 000000000000..ef27b3455714 --- /dev/null +++ b/site/public/v1/games/zoo-tycoon-2-dino-danger-pack/index.json @@ -0,0 +1,33 @@ +{ + "id": 175464, + "slug": "zoo-tycoon-2-dino-danger-pack", + "name": "Zoo Tycoon 2: Dino Danger Pack", + "release_date": "2006-07-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "business simulation game" + ], + "stores": [], + "developers": [ + "Blue Fang Games" + ], + "publishers": [ + "Oberon Media" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3285811" + ], + "created_at": "2026-07-10T10:10:53.441094", + "updated_at": "2026-07-10T10:10:53.441094", + "url": "/v1/games/zoo-tycoon-2-dino-danger-pack" +} diff --git a/site/public/v1/games/zoo-tycoon-2-endangered-species/index.json b/site/public/v1/games/zoo-tycoon-2-endangered-species/index.json new file mode 100644 index 000000000000..6cb199340de3 --- /dev/null +++ b/site/public/v1/games/zoo-tycoon-2-endangered-species/index.json @@ -0,0 +1,33 @@ +{ + "id": 175466, + "slug": "zoo-tycoon-2-endangered-species", + "name": "Zoo Tycoon 2: Endangered Species", + "release_date": "2005-10-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Blue Fang Games" + ], + "publishers": [ + "Xbox Game Studios" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3302867" + ], + "created_at": "2026-07-10T10:10:53.442088", + "updated_at": "2026-07-10T10:10:53.442088", + "url": "/v1/games/zoo-tycoon-2-endangered-species" +} diff --git a/site/public/v1/games/zoo-tycoon-2-extinct-animals/index.json b/site/public/v1/games/zoo-tycoon-2-extinct-animals/index.json new file mode 100644 index 000000000000..2860a695c34b --- /dev/null +++ b/site/public/v1/games/zoo-tycoon-2-extinct-animals/index.json @@ -0,0 +1,34 @@ +{ + "id": 175467, + "slug": "zoo-tycoon-2-extinct-animals", + "name": "Zoo Tycoon 2: Extinct Animals", + "release_date": "2007-10-17", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "first-person shooter", + "simulation video game" + ], + "stores": [], + "developers": [ + "Blue Fang Games" + ], + "publishers": [ + "Xbox Game Studios" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2738356" + ], + "created_at": "2026-07-10T10:10:53.442088", + "updated_at": "2026-07-10T10:10:53.442088", + "url": "/v1/games/zoo-tycoon-2-extinct-animals" +} diff --git a/site/public/v1/games/zoo-tycoon-2-marine-mania/index.json b/site/public/v1/games/zoo-tycoon-2-marine-mania/index.json new file mode 100644 index 000000000000..a750fd2f7cf4 --- /dev/null +++ b/site/public/v1/games/zoo-tycoon-2-marine-mania/index.json @@ -0,0 +1,33 @@ +{ + "id": 175469, + "slug": "zoo-tycoon-2-marine-mania", + "name": "Zoo Tycoon 2: Marine Mania", + "release_date": "2006-10-17", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "simulation video game" + ], + "stores": [], + "developers": [ + "Blue Fang Games" + ], + "publishers": [ + "Xbox Game Studios" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3062534" + ], + "created_at": "2026-07-10T10:10:53.442088", + "updated_at": "2026-07-10T10:10:53.442088", + "url": "/v1/games/zoo-tycoon-2-marine-mania" +} diff --git a/site/public/v1/games/zoo-tycoon-dinosaur-digs/index.json b/site/public/v1/games/zoo-tycoon-dinosaur-digs/index.json new file mode 100644 index 000000000000..b9aec5efa4f3 --- /dev/null +++ b/site/public/v1/games/zoo-tycoon-dinosaur-digs/index.json @@ -0,0 +1,34 @@ +{ + "id": 175472, + "slug": "zoo-tycoon-dinosaur-digs", + "name": "Zoo Tycoon: Dinosaur Digs", + "release_date": "2002-05-19", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "macOS", + "Microsoft Windows" + ], + "genres": [ + "business simulation game" + ], + "stores": [], + "developers": [ + "Blue Fang Games" + ], + "publishers": [ + "Xbox Game Studios" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q911542" + ], + "created_at": "2026-07-10T10:10:53.443088", + "updated_at": "2026-07-10T10:10:53.443088", + "url": "/v1/games/zoo-tycoon-dinosaur-digs" +} diff --git a/site/public/v1/games/zoo-tycoon-marine-mania/index.json b/site/public/v1/games/zoo-tycoon-marine-mania/index.json new file mode 100644 index 000000000000..da9ee47ae4c0 --- /dev/null +++ b/site/public/v1/games/zoo-tycoon-marine-mania/index.json @@ -0,0 +1,33 @@ +{ + "id": 175475, + "slug": "zoo-tycoon-marine-mania", + "name": "Zoo Tycoon: Marine Mania", + "release_date": "2002-10-17", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Microsoft Windows" + ], + "genres": [ + "business simulation game" + ], + "stores": [], + "developers": [ + "Blue Fang Games" + ], + "publishers": [ + "Xbox Game Studios" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q9391986" + ], + "created_at": "2026-07-10T10:10:53.443088", + "updated_at": "2026-07-10T10:10:53.443088", + "url": "/v1/games/zoo-tycoon-marine-mania" +} diff --git a/site/public/v1/games/zork-anthology/index.json b/site/public/v1/games/zork-anthology/index.json new file mode 100644 index 000000000000..310dba6a76ec --- /dev/null +++ b/site/public/v1/games/zork-anthology/index.json @@ -0,0 +1,33 @@ +{ + "id": 175532, + "slug": "zork-anthology", + "name": "Zork Anthology", + "release_date": "1994-01-01", + "rating": null, + "rating_count": null, + "metacritic": null, + "playtime_hours": null, + "platforms": [ + "Classic Mac OS", + "DOS", + "Microsoft Windows" + ], + "genres": [], + "stores": [], + "developers": [ + "Infocom" + ], + "publishers": [ + "Activision" + ], + "tags": [], + "esrb_rating": null, + "background_image": null, + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q55638265" + ], + "created_at": "2026-07-10T10:10:53.455089", + "updated_at": "2026-07-10T10:10:53.455089", + "url": "/v1/games/zork-anthology" +} diff --git a/site/public/v1/index.json b/site/public/v1/index.json index 06fb3ce0fdea..39c9060064a9 100644 --- a/site/public/v1/index.json +++ b/site/public/v1/index.json @@ -46,8 +46,12 @@ "url": "/v1/monitors/index.json" }, "games": { - "count": 168883, + "count": 175683, "url": "/v1/games/index.json" + }, + "software": { + "count": 11611, + "url": "/v1/software/index.json" } } } diff --git a/site/public/v1/software/1-second-everyday/index.json b/site/public/v1/software/1-second-everyday/index.json new file mode 100644 index 000000000000..c69436187b71 --- /dev/null +++ b/site/public/v1/software/1-second-everyday/index.json @@ -0,0 +1,23 @@ +{ + "id": 1, + "slug": "1-second-everyday", + "name": "1 Second Everyday", + "release_date": null, + "developers": [ + "Cesar Kuriyama" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Swift" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16927587" + ], + "created_at": "2026-07-10T10:12:39.510398", + "updated_at": "2026-07-10T10:12:39.510398", + "url": "/v1/software/1-second-everyday" +} diff --git a/site/public/v1/software/10/index.json b/site/public/v1/software/10/index.json new file mode 100644 index 000000000000..cbfb7a06feae --- /dev/null +++ b/site/public/v1/software/10/index.json @@ -0,0 +1,21 @@ +{ + "id": 2, + "slug": "10", + "name": "10", + "release_date": null, + "developers": [ + "Network 10" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22080661" + ], + "created_at": "2026-07-10T10:12:39.511490", + "updated_at": "2026-07-10T10:12:39.511490", + "url": "/v1/software/10" +} diff --git a/site/public/v1/software/1000minds/index.json b/site/public/v1/software/1000minds/index.json new file mode 100644 index 000000000000..eacdce04b990 --- /dev/null +++ b/site/public/v1/software/1000minds/index.json @@ -0,0 +1,19 @@ +{ + "id": 3, + "slug": "1000minds", + "name": "1000minds", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4546002" + ], + "created_at": "2026-07-10T10:12:39.511490", + "updated_at": "2026-07-10T10:12:39.511490", + "url": "/v1/software/1000minds" +} diff --git a/site/public/v1/software/1099-nec-form-generator/index.json b/site/public/v1/software/1099-nec-form-generator/index.json new file mode 100644 index 000000000000..dfdb443f5ab9 --- /dev/null +++ b/site/public/v1/software/1099-nec-form-generator/index.json @@ -0,0 +1,19 @@ +{ + "id": 4, + "slug": "1099-nec-form-generator", + "name": "1099-NEC form generator", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140051554" + ], + "created_at": "2026-07-10T10:12:39.512462", + "updated_at": "2026-07-10T10:12:39.512462", + "url": "/v1/software/1099-nec-form-generator" +} diff --git a/site/public/v1/software/140kit/index.json b/site/public/v1/software/140kit/index.json new file mode 100644 index 000000000000..333d34905922 --- /dev/null +++ b/site/public/v1/software/140kit/index.json @@ -0,0 +1,19 @@ +{ + "id": 5, + "slug": "140kit", + "name": "140kit", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084266" + ], + "created_at": "2026-07-10T10:12:39.512462", + "updated_at": "2026-07-10T10:12:39.512462", + "url": "/v1/software/140kit" +} diff --git a/site/public/v1/software/17live/index.json b/site/public/v1/software/17live/index.json new file mode 100644 index 000000000000..6b2781007531 --- /dev/null +++ b/site/public/v1/software/17live/index.json @@ -0,0 +1,19 @@ +{ + "id": 6, + "slug": "17live", + "name": "17LIVE", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q21042804" + ], + "created_at": "2026-07-10T10:12:39.513457", + "updated_at": "2026-07-10T10:12:39.513457", + "url": "/v1/software/17live" +} diff --git a/site/public/v1/software/1c-accounting/index.json b/site/public/v1/software/1c-accounting/index.json new file mode 100644 index 000000000000..09557cc8416e --- /dev/null +++ b/site/public/v1/software/1c-accounting/index.json @@ -0,0 +1,27 @@ +{ + "id": 7, + "slug": "1c-accounting", + "name": "1C:Accounting", + "release_date": null, + "developers": [ + "1C Company" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [ + "1C:Enterprise programming language" + ], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4345795" + ], + "created_at": "2026-07-10T10:12:39.513457", + "updated_at": "2026-07-10T10:12:39.513457", + "url": "/v1/software/1c-accounting" +} diff --git a/site/public/v1/software/1c-enterprise/index.json b/site/public/v1/software/1c-enterprise/index.json new file mode 100644 index 000000000000..62782cb81998 --- /dev/null +++ b/site/public/v1/software/1c-enterprise/index.json @@ -0,0 +1,27 @@ +{ + "id": 8, + "slug": "1c-enterprise", + "name": "1C:Enterprise", + "release_date": null, + "developers": [ + "1C Company" + ], + "publishers": [], + "operating_systems": [ + "iOS", + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4029747" + ], + "created_at": "2026-07-10T10:12:39.513457", + "updated_at": "2026-07-10T10:12:39.513457", + "url": "/v1/software/1c-enterprise" +} diff --git a/site/public/v1/software/1daylater/index.json b/site/public/v1/software/1daylater/index.json new file mode 100644 index 000000000000..df709b52110e --- /dev/null +++ b/site/public/v1/software/1daylater/index.json @@ -0,0 +1,19 @@ +{ + "id": 9, + "slug": "1daylater", + "name": "1DayLater", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4595880" + ], + "created_at": "2026-07-10T10:12:39.513457", + "updated_at": "2026-07-10T10:12:39.513457", + "url": "/v1/software/1daylater" +} diff --git a/site/public/v1/software/1legcall/index.json b/site/public/v1/software/1legcall/index.json new file mode 100644 index 000000000000..bf35c8fc24b9 --- /dev/null +++ b/site/public/v1/software/1legcall/index.json @@ -0,0 +1,23 @@ +{ + "id": 10, + "slug": "1legcall", + "name": "1legcall", + "release_date": "2009-01-01", + "developers": [ + "TalkFree, Inc" + ], + "publishers": [], + "operating_systems": [ + "Symbian" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4596059" + ], + "created_at": "2026-07-10T10:12:39.514503", + "updated_at": "2026-07-10T10:12:39.514503", + "url": "/v1/software/1legcall" +} diff --git a/site/public/v1/software/1st-word-1st-word-plus/index.json b/site/public/v1/software/1st-word-1st-word-plus/index.json new file mode 100644 index 000000000000..a12404cc284a --- /dev/null +++ b/site/public/v1/software/1st-word-1st-word-plus/index.json @@ -0,0 +1,21 @@ +{ + "id": 11, + "slug": "1st-word-1st-word-plus", + "name": "1st Word/1st Word Plus", + "release_date": "1985-01-01", + "developers": [ + "GST Computer Systems" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2631384" + ], + "created_at": "2026-07-10T10:12:39.514503", + "updated_at": "2026-07-10T10:12:39.514503", + "url": "/v1/software/1st-word-1st-word-plus" +} diff --git a/site/public/v1/software/1tik/index.json b/site/public/v1/software/1tik/index.json new file mode 100644 index 000000000000..4ee4fb786b87 --- /dev/null +++ b/site/public/v1/software/1tik/index.json @@ -0,0 +1,19 @@ +{ + "id": 12, + "slug": "1tik", + "name": "1tik", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138849869" + ], + "created_at": "2026-07-10T10:12:39.514503", + "updated_at": "2026-07-10T10:12:39.514503", + "url": "/v1/software/1tik" +} diff --git a/site/public/v1/software/20-20/index.json b/site/public/v1/software/20-20/index.json new file mode 100644 index 000000000000..c020cba366da --- /dev/null +++ b/site/public/v1/software/20-20/index.json @@ -0,0 +1,19 @@ +{ + "id": 13, + "slug": "20-20", + "name": "20/20", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25832186" + ], + "created_at": "2026-07-10T10:12:39.515508", + "updated_at": "2026-07-10T10:12:39.515508", + "url": "/v1/software/20-20" +} diff --git a/site/public/v1/software/20-sim/index.json b/site/public/v1/software/20-sim/index.json new file mode 100644 index 000000000000..a6c353862028 --- /dev/null +++ b/site/public/v1/software/20-sim/index.json @@ -0,0 +1,19 @@ +{ + "id": 14, + "slug": "20-sim", + "name": "20-sim", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q15154026" + ], + "created_at": "2026-07-10T10:12:39.515508", + "updated_at": "2026-07-10T10:12:39.515508", + "url": "/v1/software/20-sim" +} diff --git a/site/public/v1/software/2000-fonts-by-fantazia/index.json b/site/public/v1/software/2000-fonts-by-fantazia/index.json new file mode 100644 index 000000000000..3ed3a923820e --- /dev/null +++ b/site/public/v1/software/2000-fonts-by-fantazia/index.json @@ -0,0 +1,23 @@ +{ + "id": 15, + "slug": "2000-fonts-by-fantazia", + "name": "2000 Fonts by Fantazia", + "release_date": null, + "developers": [], + "publishers": [ + "Sirius Publishing" + ], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126010402" + ], + "created_at": "2026-07-10T10:12:39.515508", + "updated_at": "2026-07-10T10:12:39.515508", + "url": "/v1/software/2000-fonts-by-fantazia" +} diff --git a/site/public/v1/software/2029-online/index.json b/site/public/v1/software/2029-online/index.json new file mode 100644 index 000000000000..c826dc86a2eb --- /dev/null +++ b/site/public/v1/software/2029-online/index.json @@ -0,0 +1,19 @@ +{ + "id": 16, + "slug": "2029-online", + "name": "2029 Online", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122208405" + ], + "created_at": "2026-07-10T10:12:39.516496", + "updated_at": "2026-07-10T10:12:39.516496", + "url": "/v1/software/2029-online" +} diff --git a/site/public/v1/software/20th-century-video-almanac/index.json b/site/public/v1/software/20th-century-video-almanac/index.json new file mode 100644 index 000000000000..2854a924419b --- /dev/null +++ b/site/public/v1/software/20th-century-video-almanac/index.json @@ -0,0 +1,19 @@ +{ + "id": 17, + "slug": "20th-century-video-almanac", + "name": "20th Century Video Almanac", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137217537" + ], + "created_at": "2026-07-10T10:12:39.516496", + "updated_at": "2026-07-10T10:12:39.516496", + "url": "/v1/software/20th-century-video-almanac" +} diff --git a/site/public/v1/software/24six/index.json b/site/public/v1/software/24six/index.json new file mode 100644 index 000000000000..87cad0cde24c --- /dev/null +++ b/site/public/v1/software/24six/index.json @@ -0,0 +1,19 @@ +{ + "id": 18, + "slug": "24six", + "name": "24Six", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q132175165" + ], + "created_at": "2026-07-10T10:12:39.516496", + "updated_at": "2026-07-10T10:12:39.516496", + "url": "/v1/software/24six" +} diff --git a/site/public/v1/software/2geom/index.json b/site/public/v1/software/2geom/index.json new file mode 100644 index 000000000000..57fcb4b2b900 --- /dev/null +++ b/site/public/v1/software/2geom/index.json @@ -0,0 +1,19 @@ +{ + "id": 19, + "slug": "2geom", + "name": "2Geom", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4633121" + ], + "created_at": "2026-07-10T10:12:39.516496", + "updated_at": "2026-07-10T10:12:39.516496", + "url": "/v1/software/2geom" +} diff --git a/site/public/v1/software/350pages/index.json b/site/public/v1/software/350pages/index.json new file mode 100644 index 000000000000..d5603967d331 --- /dev/null +++ b/site/public/v1/software/350pages/index.json @@ -0,0 +1,19 @@ +{ + "id": 20, + "slug": "350pages", + "name": "350pages", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4635477" + ], + "created_at": "2026-07-10T10:12:39.517487", + "updated_at": "2026-07-10T10:12:39.517487", + "url": "/v1/software/350pages" +} diff --git a/site/public/v1/software/360-clean-droid/index.json b/site/public/v1/software/360-clean-droid/index.json new file mode 100644 index 000000000000..66dd9099ac0e --- /dev/null +++ b/site/public/v1/software/360-clean-droid/index.json @@ -0,0 +1,19 @@ +{ + "id": 21, + "slug": "360-clean-droid", + "name": "360 Clean Droid", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18651095" + ], + "created_at": "2026-07-10T10:12:39.517487", + "updated_at": "2026-07-10T10:12:39.517487", + "url": "/v1/software/360-clean-droid" +} diff --git a/site/public/v1/software/360-extreme-browser/index.json b/site/public/v1/software/360-extreme-browser/index.json new file mode 100644 index 000000000000..524510a60628 --- /dev/null +++ b/site/public/v1/software/360-extreme-browser/index.json @@ -0,0 +1,19 @@ +{ + "id": 22, + "slug": "360-extreme-browser", + "name": "360 Extreme Browser", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q24841151" + ], + "created_at": "2026-07-10T10:12:39.518466", + "updated_at": "2026-07-10T10:12:39.518466", + "url": "/v1/software/360-extreme-browser" +} diff --git a/site/public/v1/software/360-safeguard/index.json b/site/public/v1/software/360-safeguard/index.json new file mode 100644 index 000000000000..fa21e031db43 --- /dev/null +++ b/site/public/v1/software/360-safeguard/index.json @@ -0,0 +1,25 @@ +{ + "id": 23, + "slug": "360-safeguard", + "name": "360 Safeguard", + "release_date": "2008-07-17", + "developers": [ + "Qihoo 360" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q24841467" + ], + "created_at": "2026-07-10T10:12:39.518466", + "updated_at": "2026-07-10T10:12:39.518466", + "url": "/v1/software/360-safeguard" +} diff --git a/site/public/v1/software/360-yunpan/index.json b/site/public/v1/software/360-yunpan/index.json new file mode 100644 index 000000000000..4e7b2dc6c54b --- /dev/null +++ b/site/public/v1/software/360-yunpan/index.json @@ -0,0 +1,24 @@ +{ + "id": 24, + "slug": "360-yunpan", + "name": "360 Yunpan", + "release_date": null, + "developers": [ + "Qihoo 360" + ], + "publishers": [], + "operating_systems": [ + "iOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q24834774" + ], + "created_at": "2026-07-10T10:12:39.518466", + "updated_at": "2026-07-10T10:12:39.518466", + "url": "/v1/software/360-yunpan" +} diff --git a/site/public/v1/software/360softmanager/index.json b/site/public/v1/software/360softmanager/index.json new file mode 100644 index 000000000000..f882085bb5aa --- /dev/null +++ b/site/public/v1/software/360softmanager/index.json @@ -0,0 +1,25 @@ +{ + "id": 25, + "slug": "360softmanager", + "name": "360softmanager", + "release_date": "2008-07-17", + "developers": [ + "Qihoo 360" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q50490184" + ], + "created_at": "2026-07-10T10:12:39.518466", + "updated_at": "2026-07-10T10:12:39.518466", + "url": "/v1/software/360softmanager" +} diff --git a/site/public/v1/software/3615-telecharge/index.json b/site/public/v1/software/3615-telecharge/index.json new file mode 100644 index 000000000000..957c6760df6d --- /dev/null +++ b/site/public/v1/software/3615-telecharge/index.json @@ -0,0 +1,21 @@ +{ + "id": 26, + "slug": "3615-telecharge", + "name": "3615 Telecharge", + "release_date": "1991-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [ + "download manager" + ], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124030189" + ], + "created_at": "2026-07-10T10:12:39.518466", + "updated_at": "2026-07-10T10:12:39.518466", + "url": "/v1/software/3615-telecharge" +} diff --git a/site/public/v1/software/3d-artist/index.json b/site/public/v1/software/3d-artist/index.json new file mode 100644 index 000000000000..15341642dbee --- /dev/null +++ b/site/public/v1/software/3d-artist/index.json @@ -0,0 +1,19 @@ +{ + "id": 27, + "slug": "3d-artist", + "name": "3D Artist", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4636274" + ], + "created_at": "2026-07-10T10:12:39.519483", + "updated_at": "2026-07-10T10:12:39.519483", + "url": "/v1/software/3d-artist" +} diff --git a/site/public/v1/software/3d-builder-q111936153/index.json b/site/public/v1/software/3d-builder-q111936153/index.json new file mode 100644 index 000000000000..375c34e73353 --- /dev/null +++ b/site/public/v1/software/3d-builder-q111936153/index.json @@ -0,0 +1,23 @@ +{ + "id": 28, + "slug": "3d-builder-q111936153", + "name": "3D Builder", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [ + "Windows 8.1" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111936153" + ], + "created_at": "2026-07-10T10:12:39.519483", + "updated_at": "2026-07-10T10:12:39.519483", + "url": "/v1/software/3d-builder-q111936153" +} diff --git a/site/public/v1/software/3d-builder/index.json b/site/public/v1/software/3d-builder/index.json new file mode 100644 index 000000000000..e78da88fea10 --- /dev/null +++ b/site/public/v1/software/3d-builder/index.json @@ -0,0 +1,19 @@ +{ + "id": 29, + "slug": "3d-builder", + "name": "3D Builder", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28545390" + ], + "created_at": "2026-07-10T10:12:39.520481", + "updated_at": "2026-07-10T10:12:39.520481", + "url": "/v1/software/3d-builder" +} diff --git a/site/public/v1/software/3d-calc/index.json b/site/public/v1/software/3d-calc/index.json new file mode 100644 index 000000000000..1cd79c44c171 --- /dev/null +++ b/site/public/v1/software/3d-calc/index.json @@ -0,0 +1,21 @@ +{ + "id": 30, + "slug": "3d-calc", + "name": "3D-Calc", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1934448" + ], + "created_at": "2026-07-10T10:12:39.521404", + "updated_at": "2026-07-10T10:12:39.521404", + "url": "/v1/software/3d-calc" +} diff --git a/site/public/v1/software/3d-cube-hopper/index.json b/site/public/v1/software/3d-cube-hopper/index.json new file mode 100644 index 000000000000..6d1eb72002b1 --- /dev/null +++ b/site/public/v1/software/3d-cube-hopper/index.json @@ -0,0 +1,19 @@ +{ + "id": 31, + "slug": "3d-cube-hopper", + "name": "3D Cube Hopper", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122208410" + ], + "created_at": "2026-07-10T10:12:39.522399", + "updated_at": "2026-07-10T10:12:39.523398", + "url": "/v1/software/3d-cube-hopper" +} diff --git a/site/public/v1/software/3d-home-architect/index.json b/site/public/v1/software/3d-home-architect/index.json new file mode 100644 index 000000000000..4587814b323e --- /dev/null +++ b/site/public/v1/software/3d-home-architect/index.json @@ -0,0 +1,19 @@ +{ + "id": 32, + "slug": "3d-home-architect", + "name": "3D Home Architect", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135111982" + ], + "created_at": "2026-07-10T10:12:39.524412", + "updated_at": "2026-07-10T10:12:39.524412", + "url": "/v1/software/3d-home-architect" +} diff --git a/site/public/v1/software/3d-kitchen/index.json b/site/public/v1/software/3d-kitchen/index.json new file mode 100644 index 000000000000..5a48a2a879bf --- /dev/null +++ b/site/public/v1/software/3d-kitchen/index.json @@ -0,0 +1,19 @@ +{ + "id": 33, + "slug": "3d-kitchen", + "name": "3D Kitchen", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135012795" + ], + "created_at": "2026-07-10T10:12:39.525401", + "updated_at": "2026-07-10T10:12:39.525401", + "url": "/v1/software/3d-kitchen" +} diff --git a/site/public/v1/software/3d-slash/index.json b/site/public/v1/software/3d-slash/index.json new file mode 100644 index 000000000000..96676af3ee6b --- /dev/null +++ b/site/public/v1/software/3d-slash/index.json @@ -0,0 +1,19 @@ +{ + "id": 34, + "slug": "3d-slash", + "name": "3D Slash", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25113059" + ], + "created_at": "2026-07-10T10:12:39.525401", + "updated_at": "2026-07-10T10:12:39.525401", + "url": "/v1/software/3d-slash" +} diff --git a/site/public/v1/software/3d-topicscape/index.json b/site/public/v1/software/3d-topicscape/index.json new file mode 100644 index 000000000000..8f2c35261495 --- /dev/null +++ b/site/public/v1/software/3d-topicscape/index.json @@ -0,0 +1,19 @@ +{ + "id": 35, + "slug": "3d-topicscape", + "name": "3D Topicscape", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4636304" + ], + "created_at": "2026-07-10T10:12:39.526589", + "updated_at": "2026-07-10T10:12:39.526589", + "url": "/v1/software/3d-topicscape" +} diff --git a/site/public/v1/software/3d-utilities/index.json b/site/public/v1/software/3d-utilities/index.json new file mode 100644 index 000000000000..5a87104d96a9 --- /dev/null +++ b/site/public/v1/software/3d-utilities/index.json @@ -0,0 +1,23 @@ +{ + "id": 36, + "slug": "3d-utilities", + "name": "3D Utilities", + "release_date": null, + "developers": [ + "Innovative Software and Data Analysis" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Java" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q44594425" + ], + "created_at": "2026-07-10T10:12:39.526589", + "updated_at": "2026-07-10T10:12:39.526589", + "url": "/v1/software/3d-utilities" +} diff --git a/site/public/v1/software/3d-wayfinder/index.json b/site/public/v1/software/3d-wayfinder/index.json new file mode 100644 index 000000000000..d1f6ff7b48a5 --- /dev/null +++ b/site/public/v1/software/3d-wayfinder/index.json @@ -0,0 +1,21 @@ +{ + "id": 37, + "slug": "3d-wayfinder", + "name": "3D Wayfinder", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4636309" + ], + "created_at": "2026-07-10T10:12:39.526589", + "updated_at": "2026-07-10T10:12:39.526589", + "url": "/v1/software/3d-wayfinder" +} diff --git a/site/public/v1/software/3d-world-atlas/index.json b/site/public/v1/software/3d-world-atlas/index.json new file mode 100644 index 000000000000..cd8c38c0a670 --- /dev/null +++ b/site/public/v1/software/3d-world-atlas/index.json @@ -0,0 +1,21 @@ +{ + "id": 38, + "slug": "3d-world-atlas", + "name": "3D World Atlas", + "release_date": null, + "developers": [ + "Cosmi Corporation" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4636311" + ], + "created_at": "2026-07-10T10:12:39.527476", + "updated_at": "2026-07-10T10:12:39.527476", + "url": "/v1/software/3d-world-atlas" +} diff --git a/site/public/v1/software/3dcart/index.json b/site/public/v1/software/3dcart/index.json new file mode 100644 index 000000000000..4652b170a639 --- /dev/null +++ b/site/public/v1/software/3dcart/index.json @@ -0,0 +1,19 @@ +{ + "id": 39, + "slug": "3dcart", + "name": "3dcart", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q39073359" + ], + "created_at": "2026-07-10T10:12:39.527476", + "updated_at": "2026-07-10T10:12:39.527476", + "url": "/v1/software/3dcart" +} diff --git a/site/public/v1/software/3dcrafter/index.json b/site/public/v1/software/3dcrafter/index.json new file mode 100644 index 000000000000..cc511b398b05 --- /dev/null +++ b/site/public/v1/software/3dcrafter/index.json @@ -0,0 +1,19 @@ +{ + "id": 40, + "slug": "3dcrafter", + "name": "3DCrafter", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4636261" + ], + "created_at": "2026-07-10T10:12:39.528474", + "updated_at": "2026-07-10T10:12:39.528474", + "url": "/v1/software/3dcrafter" +} diff --git a/site/public/v1/software/3delight/index.json b/site/public/v1/software/3delight/index.json new file mode 100644 index 000000000000..4cc60c3eec53 --- /dev/null +++ b/site/public/v1/software/3delight/index.json @@ -0,0 +1,21 @@ +{ + "id": 41, + "slug": "3delight", + "name": "3Delight", + "release_date": null, + "developers": [ + "Illumination Research" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4636335" + ], + "created_at": "2026-07-10T10:12:39.528474", + "updated_at": "2026-07-10T10:12:39.528474", + "url": "/v1/software/3delight" +} diff --git a/site/public/v1/software/3df-zephyr/index.json b/site/public/v1/software/3df-zephyr/index.json new file mode 100644 index 000000000000..85f785288b30 --- /dev/null +++ b/site/public/v1/software/3df-zephyr/index.json @@ -0,0 +1,23 @@ +{ + "id": 42, + "slug": "3df-zephyr", + "name": "3DF Zephyr", + "release_date": null, + "developers": [ + "3DFLOW" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q39059924" + ], + "created_at": "2026-07-10T10:12:39.528474", + "updated_at": "2026-07-10T10:12:39.528474", + "url": "/v1/software/3df-zephyr" +} diff --git a/site/public/v1/software/3dmark/index.json b/site/public/v1/software/3dmark/index.json new file mode 100644 index 000000000000..85b02eef7338 --- /dev/null +++ b/site/public/v1/software/3dmark/index.json @@ -0,0 +1,19 @@ +{ + "id": 43, + "slug": "3dmark", + "name": "3DMark", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q229414" + ], + "created_at": "2026-07-10T10:12:39.528474", + "updated_at": "2026-07-10T10:12:39.528474", + "url": "/v1/software/3dmark" +} diff --git a/site/public/v1/software/3dmix/index.json b/site/public/v1/software/3dmix/index.json new file mode 100644 index 000000000000..4402d4877f13 --- /dev/null +++ b/site/public/v1/software/3dmix/index.json @@ -0,0 +1,19 @@ +{ + "id": 44, + "slug": "3dmix", + "name": "3dmiX", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4636607" + ], + "created_at": "2026-07-10T10:12:39.529500", + "updated_at": "2026-07-10T10:12:39.529500", + "url": "/v1/software/3dmix" +} diff --git a/site/public/v1/software/3dreshaper/index.json b/site/public/v1/software/3dreshaper/index.json new file mode 100644 index 000000000000..1361f82ca331 --- /dev/null +++ b/site/public/v1/software/3dreshaper/index.json @@ -0,0 +1,19 @@ +{ + "id": 45, + "slug": "3dreshaper", + "name": "3DReshaper", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2816469" + ], + "created_at": "2026-07-10T10:12:39.529500", + "updated_at": "2026-07-10T10:12:39.529500", + "url": "/v1/software/3dreshaper" +} diff --git a/site/public/v1/software/3dsurvey/index.json b/site/public/v1/software/3dsurvey/index.json new file mode 100644 index 000000000000..2dbcea46a6f1 --- /dev/null +++ b/site/public/v1/software/3dsurvey/index.json @@ -0,0 +1,19 @@ +{ + "id": 46, + "slug": "3dsurvey", + "name": "3Dsurvey", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130220976" + ], + "created_at": "2026-07-10T10:12:39.529500", + "updated_at": "2026-07-10T10:12:39.529500", + "url": "/v1/software/3dsurvey" +} diff --git a/site/public/v1/software/3player/index.json b/site/public/v1/software/3player/index.json new file mode 100644 index 000000000000..ecbd085d8a5d --- /dev/null +++ b/site/public/v1/software/3player/index.json @@ -0,0 +1,21 @@ +{ + "id": 47, + "slug": "3player", + "name": "3Player", + "release_date": null, + "developers": [ + "Virgin Media One" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4636389" + ], + "created_at": "2026-07-10T10:12:39.530454", + "updated_at": "2026-07-10T10:12:39.530454", + "url": "/v1/software/3player" +} diff --git a/site/public/v1/software/4-paws-of-crab/index.json b/site/public/v1/software/4-paws-of-crab/index.json new file mode 100644 index 000000000000..de1b8cf9cc96 --- /dev/null +++ b/site/public/v1/software/4-paws-of-crab/index.json @@ -0,0 +1,19 @@ +{ + "id": 48, + "slug": "4-paws-of-crab", + "name": "4 Paws of Crab", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135583780" + ], + "created_at": "2026-07-10T10:12:39.530454", + "updated_at": "2026-07-10T10:12:39.530454", + "url": "/v1/software/4-paws-of-crab" +} diff --git a/site/public/v1/software/40tude-dialog/index.json b/site/public/v1/software/40tude-dialog/index.json new file mode 100644 index 000000000000..3f953dfb878e --- /dev/null +++ b/site/public/v1/software/40tude-dialog/index.json @@ -0,0 +1,19 @@ +{ + "id": 49, + "slug": "40tude-dialog", + "name": "40tude Dialog", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q173948" + ], + "created_at": "2026-07-10T10:12:39.530454", + "updated_at": "2026-07-10T10:12:39.530454", + "url": "/v1/software/40tude-dialog" +} diff --git a/site/public/v1/software/4d-explorer/index.json b/site/public/v1/software/4d-explorer/index.json new file mode 100644 index 000000000000..23bf70464244 --- /dev/null +++ b/site/public/v1/software/4d-explorer/index.json @@ -0,0 +1,21 @@ +{ + "id": 50, + "slug": "4d-explorer", + "name": "4D-Explorer", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "GNU General Public License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121224262" + ], + "created_at": "2026-07-10T10:12:39.531467", + "updated_at": "2026-07-10T10:12:39.531467", + "url": "/v1/software/4d-explorer" +} diff --git a/site/public/v1/software/4kdownload/index.json b/site/public/v1/software/4kdownload/index.json new file mode 100644 index 000000000000..5bb6048196e3 --- /dev/null +++ b/site/public/v1/software/4kdownload/index.json @@ -0,0 +1,19 @@ +{ + "id": 51, + "slug": "4kdownload", + "name": "4KDownload", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16971117" + ], + "created_at": "2026-07-10T10:12:39.531467", + "updated_at": "2026-07-10T10:12:39.531467", + "url": "/v1/software/4kdownload" +} diff --git a/site/public/v1/software/4peaks/index.json b/site/public/v1/software/4peaks/index.json new file mode 100644 index 000000000000..10754783c6a3 --- /dev/null +++ b/site/public/v1/software/4peaks/index.json @@ -0,0 +1,19 @@ +{ + "id": 52, + "slug": "4peaks", + "name": "4Peaks", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131367116" + ], + "created_at": "2026-07-10T10:12:39.531467", + "updated_at": "2026-07-10T10:12:39.531467", + "url": "/v1/software/4peaks" +} diff --git a/site/public/v1/software/4pm/index.json b/site/public/v1/software/4pm/index.json new file mode 100644 index 000000000000..9b3d6d9fe34a --- /dev/null +++ b/site/public/v1/software/4pm/index.json @@ -0,0 +1,19 @@ +{ + "id": 53, + "slug": "4pm", + "name": "4PM", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q12783274" + ], + "created_at": "2026-07-10T10:12:39.532487", + "updated_at": "2026-07-10T10:12:39.532487", + "url": "/v1/software/4pm" +} diff --git a/site/public/v1/software/4sync/index.json b/site/public/v1/software/4sync/index.json new file mode 100644 index 000000000000..6f4166a0c85c --- /dev/null +++ b/site/public/v1/software/4sync/index.json @@ -0,0 +1,19 @@ +{ + "id": 54, + "slug": "4sync", + "name": "4sync", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4031577" + ], + "created_at": "2026-07-10T10:12:39.532487", + "updated_at": "2026-07-10T10:12:39.532487", + "url": "/v1/software/4sync" +} diff --git a/site/public/v1/software/4th-dimension/index.json b/site/public/v1/software/4th-dimension/index.json new file mode 100644 index 000000000000..f49687e370dd --- /dev/null +++ b/site/public/v1/software/4th-dimension/index.json @@ -0,0 +1,19 @@ +{ + "id": 55, + "slug": "4th-dimension", + "name": "4th Dimension", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084373" + ], + "created_at": "2026-07-10T10:12:39.532487", + "updated_at": "2026-07-10T10:12:39.532487", + "url": "/v1/software/4th-dimension" +} diff --git a/site/public/v1/software/5-tiles/index.json b/site/public/v1/software/5-tiles/index.json new file mode 100644 index 000000000000..0a3ad928fac4 --- /dev/null +++ b/site/public/v1/software/5-tiles/index.json @@ -0,0 +1,19 @@ +{ + "id": 56, + "slug": "5-tiles", + "name": "5-Tiles", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q21041178" + ], + "created_at": "2026-07-10T10:12:39.533474", + "updated_at": "2026-07-10T10:12:39.533474", + "url": "/v1/software/5-tiles" +} diff --git a/site/public/v1/software/50x-impact/index.json b/site/public/v1/software/50x-impact/index.json new file mode 100644 index 000000000000..39fe69fa3628 --- /dev/null +++ b/site/public/v1/software/50x-impact/index.json @@ -0,0 +1,21 @@ +{ + "id": 57, + "slug": "50x-impact", + "name": "50X Impact", + "release_date": null, + "developers": [ + "50X Labs" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138756838" + ], + "created_at": "2026-07-10T10:12:39.533474", + "updated_at": "2026-07-10T10:12:39.533474", + "url": "/v1/software/50x-impact" +} diff --git a/site/public/v1/software/51-forth/index.json b/site/public/v1/software/51-forth/index.json new file mode 100644 index 000000000000..4d1280c88417 --- /dev/null +++ b/site/public/v1/software/51-forth/index.json @@ -0,0 +1,21 @@ +{ + "id": 58, + "slug": "51-forth", + "name": "51-FORTH", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "assembly language" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4639984" + ], + "created_at": "2026-07-10T10:12:39.533474", + "updated_at": "2026-07-10T10:12:39.533474", + "url": "/v1/software/51-forth" +} diff --git a/site/public/v1/software/602pc-suite/index.json b/site/public/v1/software/602pc-suite/index.json new file mode 100644 index 000000000000..ed97228dcd21 --- /dev/null +++ b/site/public/v1/software/602pc-suite/index.json @@ -0,0 +1,23 @@ +{ + "id": 59, + "slug": "602pc-suite", + "name": "602PC Suite", + "release_date": null, + "developers": [ + "Software602" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q9134955" + ], + "created_at": "2026-07-10T10:12:39.534501", + "updated_at": "2026-07-10T10:12:39.534501", + "url": "/v1/software/602pc-suite" +} diff --git a/site/public/v1/software/75-seasons-the-history-of-the-nfl/index.json b/site/public/v1/software/75-seasons-the-history-of-the-nfl/index.json new file mode 100644 index 000000000000..23831ff91278 --- /dev/null +++ b/site/public/v1/software/75-seasons-the-history-of-the-nfl/index.json @@ -0,0 +1,19 @@ +{ + "id": 60, + "slug": "75-seasons-the-history-of-the-nfl", + "name": "75 Seasons: The History of the NFL", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131400051" + ], + "created_at": "2026-07-10T10:12:39.534501", + "updated_at": "2026-07-10T10:12:39.534501", + "url": "/v1/software/75-seasons-the-history-of-the-nfl" +} diff --git a/site/public/v1/software/755/index.json b/site/public/v1/software/755/index.json new file mode 100644 index 000000000000..314e6e5168db --- /dev/null +++ b/site/public/v1/software/755/index.json @@ -0,0 +1,21 @@ +{ + "id": 61, + "slug": "755", + "name": "755", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "iOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q19803047" + ], + "created_at": "2026-07-10T10:12:39.534501", + "updated_at": "2026-07-10T10:12:39.534501", + "url": "/v1/software/755" +} diff --git a/site/public/v1/software/95buddy/index.json b/site/public/v1/software/95buddy/index.json new file mode 100644 index 000000000000..caa3f4722120 --- /dev/null +++ b/site/public/v1/software/95buddy/index.json @@ -0,0 +1,19 @@ +{ + "id": 62, + "slug": "95buddy", + "name": "95Buddy", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121631699" + ], + "created_at": "2026-07-10T10:12:39.535447", + "updated_at": "2026-07-10T10:12:39.535447", + "url": "/v1/software/95buddy" +} diff --git a/site/public/v1/software/98lite/index.json b/site/public/v1/software/98lite/index.json new file mode 100644 index 000000000000..bb1ca4019dff --- /dev/null +++ b/site/public/v1/software/98lite/index.json @@ -0,0 +1,19 @@ +{ + "id": 63, + "slug": "98lite", + "name": "98Lite", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4178858" + ], + "created_at": "2026-07-10T10:12:39.535447", + "updated_at": "2026-07-10T10:12:39.535447", + "url": "/v1/software/98lite" +} diff --git a/site/public/v1/software/9apps/index.json b/site/public/v1/software/9apps/index.json new file mode 100644 index 000000000000..334fea220b5b --- /dev/null +++ b/site/public/v1/software/9apps/index.json @@ -0,0 +1,19 @@ +{ + "id": 64, + "slug": "9apps", + "name": "9Apps", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q24698165" + ], + "created_at": "2026-07-10T10:12:39.536477", + "updated_at": "2026-07-10T10:12:39.536477", + "url": "/v1/software/9apps" +} diff --git a/site/public/v1/software/9now/index.json b/site/public/v1/software/9now/index.json new file mode 100644 index 000000000000..4c3636fc63a3 --- /dev/null +++ b/site/public/v1/software/9now/index.json @@ -0,0 +1,21 @@ +{ + "id": 65, + "slug": "9now", + "name": "9Now", + "release_date": "2016-01-27", + "developers": [ + "Nine Network" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22080281" + ], + "created_at": "2026-07-10T10:12:39.536477", + "updated_at": "2026-07-10T10:12:39.536477", + "url": "/v1/software/9now" +} diff --git a/site/public/v1/software/a-nnotate/index.json b/site/public/v1/software/a-nnotate/index.json new file mode 100644 index 000000000000..f95a29e3ac59 --- /dev/null +++ b/site/public/v1/software/a-nnotate/index.json @@ -0,0 +1,19 @@ +{ + "id": 66, + "slug": "a-nnotate", + "name": "A.nnotate", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4648761" + ], + "created_at": "2026-07-10T10:12:39.536477", + "updated_at": "2026-07-10T10:12:39.536477", + "url": "/v1/software/a-nnotate" +} diff --git a/site/public/v1/software/a-oli-platform/index.json b/site/public/v1/software/a-oli-platform/index.json new file mode 100644 index 000000000000..be2eac800047 --- /dev/null +++ b/site/public/v1/software/a-oli-platform/index.json @@ -0,0 +1,19 @@ +{ + "id": 67, + "slug": "a-oli-platform", + "name": "Aïoli platform", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084380" + ], + "created_at": "2026-07-10T10:12:39.537502", + "updated_at": "2026-07-10T10:12:39.537502", + "url": "/v1/software/a-oli-platform" +} diff --git a/site/public/v1/software/a-parser/index.json b/site/public/v1/software/a-parser/index.json new file mode 100644 index 000000000000..6e7503fc3562 --- /dev/null +++ b/site/public/v1/software/a-parser/index.json @@ -0,0 +1,24 @@ +{ + "id": 68, + "slug": "a-parser", + "name": "A-Parser", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140399242" + ], + "created_at": "2026-07-10T10:12:39.537502", + "updated_at": "2026-07-10T10:12:39.537502", + "url": "/v1/software/a-parser" +} diff --git a/site/public/v1/software/a-poke-in-the-ear-with-a-sharp-stick/index.json b/site/public/v1/software/a-poke-in-the-ear-with-a-sharp-stick/index.json new file mode 100644 index 000000000000..88940e4c4465 --- /dev/null +++ b/site/public/v1/software/a-poke-in-the-ear-with-a-sharp-stick/index.json @@ -0,0 +1,21 @@ +{ + "id": 69, + "slug": "a-poke-in-the-ear-with-a-sharp-stick", + "name": "A Poke in the Ear with a Sharp Stick", + "release_date": "1991-01-01", + "developers": [], + "publishers": [ + "OSC" + ], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135494376" + ], + "created_at": "2026-07-10T10:12:39.537502", + "updated_at": "2026-07-10T10:12:39.537502", + "url": "/v1/software/a-poke-in-the-ear-with-a-sharp-stick" +} diff --git a/site/public/v1/software/a-virtual-file-system/index.json b/site/public/v1/software/a-virtual-file-system/index.json new file mode 100644 index 000000000000..ad3e746bf603 --- /dev/null +++ b/site/public/v1/software/a-virtual-file-system/index.json @@ -0,0 +1,19 @@ +{ + "id": 70, + "slug": "a-virtual-file-system", + "name": "A Virtual File System", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28600423" + ], + "created_at": "2026-07-10T10:12:39.538479", + "updated_at": "2026-07-10T10:12:39.538479", + "url": "/v1/software/a-virtual-file-system" +} diff --git a/site/public/v1/software/a3d/index.json b/site/public/v1/software/a3d/index.json new file mode 100644 index 000000000000..2735453929e7 --- /dev/null +++ b/site/public/v1/software/a3d/index.json @@ -0,0 +1,21 @@ +{ + "id": 71, + "slug": "a3d", + "name": "A3D", + "release_date": null, + "developers": [ + "Creative Technology" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q444196" + ], + "created_at": "2026-07-10T10:12:39.538479", + "updated_at": "2026-07-10T10:12:39.538479", + "url": "/v1/software/a3d" +} diff --git a/site/public/v1/software/a86/index.json b/site/public/v1/software/a86/index.json new file mode 100644 index 000000000000..976b8c2a7131 --- /dev/null +++ b/site/public/v1/software/a86/index.json @@ -0,0 +1,19 @@ +{ + "id": 72, + "slug": "a86", + "name": "A86", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4649654" + ], + "created_at": "2026-07-10T10:12:39.538479", + "updated_at": "2026-07-10T10:12:39.538479", + "url": "/v1/software/a86" +} diff --git a/site/public/v1/software/a9cad/index.json b/site/public/v1/software/a9cad/index.json new file mode 100644 index 000000000000..deccff81fe14 --- /dev/null +++ b/site/public/v1/software/a9cad/index.json @@ -0,0 +1,23 @@ +{ + "id": 73, + "slug": "a9cad", + "name": "A9CAD", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q9137004" + ], + "created_at": "2026-07-10T10:12:39.539457", + "updated_at": "2026-07-10T10:12:39.539457", + "url": "/v1/software/a9cad" +} diff --git a/site/public/v1/software/aaa-map-n-go/index.json b/site/public/v1/software/aaa-map-n-go/index.json new file mode 100644 index 000000000000..0086a98ee953 --- /dev/null +++ b/site/public/v1/software/aaa-map-n-go/index.json @@ -0,0 +1,19 @@ +{ + "id": 74, + "slug": "aaa-map-n-go", + "name": "AAA Map 'n' Go", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q133837305" + ], + "created_at": "2026-07-10T10:12:39.539457", + "updated_at": "2026-07-10T10:12:39.539457", + "url": "/v1/software/aaa-map-n-go" +} diff --git a/site/public/v1/software/aacplusenc/index.json b/site/public/v1/software/aacplusenc/index.json new file mode 100644 index 000000000000..a50cceb81523 --- /dev/null +++ b/site/public/v1/software/aacplusenc/index.json @@ -0,0 +1,19 @@ +{ + "id": 75, + "slug": "aacplusenc", + "name": "aacplusenc", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065162" + ], + "created_at": "2026-07-10T10:12:39.539457", + "updated_at": "2026-07-10T10:12:39.539457", + "url": "/v1/software/aacplusenc" +} diff --git a/site/public/v1/software/aakhy-n/index.json b/site/public/v1/software/aakhy-n/index.json new file mode 100644 index 000000000000..40c2057cfc26 --- /dev/null +++ b/site/public/v1/software/aakhy-n/index.json @@ -0,0 +1,24 @@ +{ + "id": 76, + "slug": "aakhy-n", + "name": "Aakhyān", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "web browser" + ], + "programming_languages": [ + "Python", + "TypeScript" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139376153" + ], + "created_at": "2026-07-10T10:12:39.539457", + "updated_at": "2026-07-10T10:12:39.539457", + "url": "/v1/software/aakhy-n" +} diff --git a/site/public/v1/software/aanval/index.json b/site/public/v1/software/aanval/index.json new file mode 100644 index 000000000000..0fce670c8f5b --- /dev/null +++ b/site/public/v1/software/aanval/index.json @@ -0,0 +1,21 @@ +{ + "id": 77, + "slug": "aanval", + "name": "Aanval", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "macOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4661610" + ], + "created_at": "2026-07-10T10:12:39.540485", + "updated_at": "2026-07-10T10:12:39.540485", + "url": "/v1/software/aanval" +} diff --git a/site/public/v1/software/aapanel/index.json b/site/public/v1/software/aapanel/index.json new file mode 100644 index 000000000000..53368a1b19d2 --- /dev/null +++ b/site/public/v1/software/aapanel/index.json @@ -0,0 +1,19 @@ +{ + "id": 78, + "slug": "aapanel", + "name": "AaPanel", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q133796036" + ], + "created_at": "2026-07-10T10:12:39.540485", + "updated_at": "2026-07-10T10:12:39.540485", + "url": "/v1/software/aapanel" +} diff --git a/site/public/v1/software/aarogya-setu/index.json b/site/public/v1/software/aarogya-setu/index.json new file mode 100644 index 000000000000..43fc2d9b0340 --- /dev/null +++ b/site/public/v1/software/aarogya-setu/index.json @@ -0,0 +1,26 @@ +{ + "id": 79, + "slug": "aarogya-setu", + "name": "Aarogya Setu", + "release_date": "2020-04-01", + "developers": [], + "publishers": [ + "Government of India" + ], + "operating_systems": [ + "iOS" + ], + "programming_languages": [ + "Java", + "Kotlin" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q90565214" + ], + "created_at": "2026-07-10T10:12:39.540485", + "updated_at": "2026-07-10T10:12:39.540485", + "url": "/v1/software/aarogya-setu" +} diff --git a/site/public/v1/software/abalone/index.json b/site/public/v1/software/abalone/index.json new file mode 100644 index 000000000000..2370ad9a9b7c --- /dev/null +++ b/site/public/v1/software/abalone/index.json @@ -0,0 +1,21 @@ +{ + "id": 80, + "slug": "abalone", + "name": "Abalone", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4663323" + ], + "created_at": "2026-07-10T10:12:39.541457", + "updated_at": "2026-07-10T10:12:39.541457", + "url": "/v1/software/abalone" +} diff --git a/site/public/v1/software/abasic/index.json b/site/public/v1/software/abasic/index.json new file mode 100644 index 000000000000..95dd66d39e86 --- /dev/null +++ b/site/public/v1/software/abasic/index.json @@ -0,0 +1,23 @@ +{ + "id": 81, + "slug": "abasic", + "name": "ABasiC", + "release_date": "1985-01-01", + "developers": [ + "MetaComCo" + ], + "publishers": [ + "Commodore International" + ], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120547277" + ], + "created_at": "2026-07-10T10:12:39.541457", + "updated_at": "2026-07-10T10:12:39.541457", + "url": "/v1/software/abasic" +} diff --git a/site/public/v1/software/abbot/index.json b/site/public/v1/software/abbot/index.json new file mode 100644 index 000000000000..2bf44c3e563b --- /dev/null +++ b/site/public/v1/software/abbot/index.json @@ -0,0 +1,19 @@ +{ + "id": 82, + "slug": "abbot", + "name": "Abbot", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084374" + ], + "created_at": "2026-07-10T10:12:39.541457", + "updated_at": "2026-07-10T10:12:39.541457", + "url": "/v1/software/abbot" +} diff --git a/site/public/v1/software/abbyy-pdf-transformer/index.json b/site/public/v1/software/abbyy-pdf-transformer/index.json new file mode 100644 index 000000000000..5dbe021077cc --- /dev/null +++ b/site/public/v1/software/abbyy-pdf-transformer/index.json @@ -0,0 +1,25 @@ +{ + "id": 83, + "slug": "abbyy-pdf-transformer", + "name": "ABBYY PDF Transformer+", + "release_date": null, + "developers": [ + "ABBYY" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q12062331" + ], + "created_at": "2026-07-10T10:12:39.541457", + "updated_at": "2026-07-10T10:12:39.541457", + "url": "/v1/software/abbyy-pdf-transformer" +} diff --git a/site/public/v1/software/abc-home/index.json b/site/public/v1/software/abc-home/index.json new file mode 100644 index 000000000000..398c78891ea1 --- /dev/null +++ b/site/public/v1/software/abc-home/index.json @@ -0,0 +1,21 @@ +{ + "id": 84, + "slug": "abc-home", + "name": "ABC@Home", + "release_date": null, + "developers": [ + "Leiden University" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q287009" + ], + "created_at": "2026-07-10T10:12:39.542474", + "updated_at": "2026-07-10T10:12:39.542474", + "url": "/v1/software/abc-home" +} diff --git a/site/public/v1/software/abc-iview/index.json b/site/public/v1/software/abc-iview/index.json new file mode 100644 index 000000000000..79c5515293e9 --- /dev/null +++ b/site/public/v1/software/abc-iview/index.json @@ -0,0 +1,21 @@ +{ + "id": 85, + "slug": "abc-iview", + "name": "ABC iview", + "release_date": "2008-07-24", + "developers": [ + "Australian Broadcasting Corporation" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4650276" + ], + "created_at": "2026-07-10T10:12:39.542474", + "updated_at": "2026-07-10T10:12:39.542474", + "url": "/v1/software/abc-iview" +} diff --git a/site/public/v1/software/abc-lx/index.json b/site/public/v1/software/abc-lx/index.json new file mode 100644 index 000000000000..7b0430a05135 --- /dev/null +++ b/site/public/v1/software/abc-lx/index.json @@ -0,0 +1,23 @@ +{ + "id": 86, + "slug": "abc-lx", + "name": "ABC/LX", + "release_date": null, + "developers": [ + "D&A Software" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121672440" + ], + "created_at": "2026-07-10T10:12:39.542474", + "updated_at": "2026-07-10T10:12:39.542474", + "url": "/v1/software/abc-lx" +} diff --git a/site/public/v1/software/abc-media-manager/index.json b/site/public/v1/software/abc-media-manager/index.json new file mode 100644 index 000000000000..85410c5ba7b9 --- /dev/null +++ b/site/public/v1/software/abc-media-manager/index.json @@ -0,0 +1,21 @@ +{ + "id": 87, + "slug": "abc-media-manager", + "name": "ABC Media Manager", + "release_date": null, + "developers": [ + "Micrografx" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q82065556" + ], + "created_at": "2026-07-10T10:12:39.543510", + "updated_at": "2026-07-10T10:12:39.543510", + "url": "/v1/software/abc-media-manager" +} diff --git a/site/public/v1/software/abc-newslinks/index.json b/site/public/v1/software/abc-newslinks/index.json new file mode 100644 index 000000000000..937229b6f441 --- /dev/null +++ b/site/public/v1/software/abc-newslinks/index.json @@ -0,0 +1,19 @@ +{ + "id": 88, + "slug": "abc-newslinks", + "name": "ABC NewsLinks", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140026913" + ], + "created_at": "2026-07-10T10:12:39.543510", + "updated_at": "2026-07-10T10:12:39.543510", + "url": "/v1/software/abc-newslinks" +} diff --git a/site/public/v1/software/abcmidi/index.json b/site/public/v1/software/abcmidi/index.json new file mode 100644 index 000000000000..7a9afeb26fea --- /dev/null +++ b/site/public/v1/software/abcmidi/index.json @@ -0,0 +1,23 @@ +{ + "id": 89, + "slug": "abcmidi", + "name": "abcmidi", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "macOS" + ], + "programming_languages": [], + "licenses": [ + "GNU General Public License, version 2.0 or later" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60500134" + ], + "created_at": "2026-07-10T10:12:39.543510", + "updated_at": "2026-07-10T10:12:39.543510", + "url": "/v1/software/abcmidi" +} diff --git a/site/public/v1/software/aber/index.json b/site/public/v1/software/aber/index.json new file mode 100644 index 000000000000..a234982995ec --- /dev/null +++ b/site/public/v1/software/aber/index.json @@ -0,0 +1,19 @@ +{ + "id": 90, + "slug": "aber", + "name": "Aber", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136406166" + ], + "created_at": "2026-07-10T10:12:39.544484", + "updated_at": "2026-07-10T10:12:39.544484", + "url": "/v1/software/aber" +} diff --git a/site/public/v1/software/abfreq/index.json b/site/public/v1/software/abfreq/index.json new file mode 100644 index 000000000000..e1cc74138e82 --- /dev/null +++ b/site/public/v1/software/abfreq/index.json @@ -0,0 +1,19 @@ +{ + "id": 91, + "slug": "abfreq", + "name": "ABFREQ", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087684" + ], + "created_at": "2026-07-10T10:12:39.544484", + "updated_at": "2026-07-10T10:12:39.544484", + "url": "/v1/software/abfreq" +} diff --git a/site/public/v1/software/abicheck/index.json b/site/public/v1/software/abicheck/index.json new file mode 100644 index 000000000000..39757e31a162 --- /dev/null +++ b/site/public/v1/software/abicheck/index.json @@ -0,0 +1,19 @@ +{ + "id": 92, + "slug": "abicheck", + "name": "abicheck", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q96971788" + ], + "created_at": "2026-07-10T10:12:39.544484", + "updated_at": "2026-07-10T10:12:39.544484", + "url": "/v1/software/abicheck" +} diff --git a/site/public/v1/software/abigail-tools/index.json b/site/public/v1/software/abigail-tools/index.json new file mode 100644 index 000000000000..50516de24f73 --- /dev/null +++ b/site/public/v1/software/abigail-tools/index.json @@ -0,0 +1,19 @@ +{ + "id": 93, + "slug": "abigail-tools", + "name": "abigail-tools", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q96971789" + ], + "created_at": "2026-07-10T10:12:39.545448", + "updated_at": "2026-07-10T10:12:39.545448", + "url": "/v1/software/abigail-tools" +} diff --git a/site/public/v1/software/ability-office/index.json b/site/public/v1/software/ability-office/index.json new file mode 100644 index 000000000000..97700c07878d --- /dev/null +++ b/site/public/v1/software/ability-office/index.json @@ -0,0 +1,21 @@ +{ + "id": 94, + "slug": "ability-office", + "name": "Ability Office", + "release_date": null, + "developers": [ + "Ability Plus Software" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q321295" + ], + "created_at": "2026-07-10T10:12:39.545448", + "updated_at": "2026-07-10T10:12:39.545448", + "url": "/v1/software/ability-office" +} diff --git a/site/public/v1/software/abills/index.json b/site/public/v1/software/abills/index.json new file mode 100644 index 000000000000..033695740132 --- /dev/null +++ b/site/public/v1/software/abills/index.json @@ -0,0 +1,19 @@ +{ + "id": 95, + "slug": "abills", + "name": "Abills", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4033168" + ], + "created_at": "2026-07-10T10:12:39.545448", + "updated_at": "2026-07-10T10:12:39.545448", + "url": "/v1/software/abills" +} diff --git a/site/public/v1/software/abiquo/index.json b/site/public/v1/software/abiquo/index.json new file mode 100644 index 000000000000..e131297ed8be --- /dev/null +++ b/site/public/v1/software/abiquo/index.json @@ -0,0 +1,21 @@ +{ + "id": 96, + "slug": "abiquo", + "name": "Abiquo", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Java" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4667901" + ], + "created_at": "2026-07-10T10:12:39.545448", + "updated_at": "2026-07-10T10:12:39.545448", + "url": "/v1/software/abiquo" +} diff --git a/site/public/v1/software/able2extract/index.json b/site/public/v1/software/able2extract/index.json new file mode 100644 index 000000000000..049723ccaa4d --- /dev/null +++ b/site/public/v1/software/able2extract/index.json @@ -0,0 +1,19 @@ +{ + "id": 97, + "slug": "able2extract", + "name": "Able2extract", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4668064" + ], + "created_at": "2026-07-10T10:12:39.546476", + "updated_at": "2026-07-10T10:12:39.546476", + "url": "/v1/software/able2extract" +} diff --git a/site/public/v1/software/ableton-link-utils/index.json b/site/public/v1/software/ableton-link-utils/index.json new file mode 100644 index 000000000000..02fe60fa1299 --- /dev/null +++ b/site/public/v1/software/ableton-link-utils/index.json @@ -0,0 +1,19 @@ +{ + "id": 98, + "slug": "ableton-link-utils", + "name": "ableton-link-utils", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q96971791" + ], + "created_at": "2026-07-10T10:12:39.546476", + "updated_at": "2026-07-10T10:12:39.546476", + "url": "/v1/software/ableton-link-utils" +} diff --git a/site/public/v1/software/ableton-operator/index.json b/site/public/v1/software/ableton-operator/index.json new file mode 100644 index 000000000000..23ddce0842a1 --- /dev/null +++ b/site/public/v1/software/ableton-operator/index.json @@ -0,0 +1,21 @@ +{ + "id": 99, + "slug": "ableton-operator", + "name": "Ableton Operator", + "release_date": null, + "developers": [ + "Ableton" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4668093" + ], + "created_at": "2026-07-10T10:12:39.547472", + "updated_at": "2026-07-10T10:12:39.547472", + "url": "/v1/software/ableton-operator" +} diff --git a/site/public/v1/software/about-distro/index.json b/site/public/v1/software/about-distro/index.json new file mode 100644 index 000000000000..d34ee48d12b0 --- /dev/null +++ b/site/public/v1/software/about-distro/index.json @@ -0,0 +1,19 @@ +{ + "id": 100, + "slug": "about-distro", + "name": "about-distro", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28941597" + ], + "created_at": "2026-07-10T10:12:39.547472", + "updated_at": "2026-07-10T10:12:39.547472", + "url": "/v1/software/about-distro" +} diff --git a/site/public/v1/software/abra-academy-returning-cast/index.json b/site/public/v1/software/abra-academy-returning-cast/index.json new file mode 100644 index 000000000000..7e7b81541911 --- /dev/null +++ b/site/public/v1/software/abra-academy-returning-cast/index.json @@ -0,0 +1,19 @@ +{ + "id": 101, + "slug": "abra-academy-returning-cast", + "name": "Abra Academy: Returning Cast", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122208532" + ], + "created_at": "2026-07-10T10:12:39.547472", + "updated_at": "2026-07-10T10:12:39.547472", + "url": "/v1/software/abra-academy-returning-cast" +} diff --git a/site/public/v1/software/abrowse/index.json b/site/public/v1/software/abrowse/index.json new file mode 100644 index 000000000000..cae46cc91bb1 --- /dev/null +++ b/site/public/v1/software/abrowse/index.json @@ -0,0 +1,21 @@ +{ + "id": 102, + "slug": "abrowse", + "name": "ABrowse", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Syllable Desktop" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2494998" + ], + "created_at": "2026-07-10T10:12:39.547472", + "updated_at": "2026-07-10T10:12:39.547472", + "url": "/v1/software/abrowse" +} diff --git a/site/public/v1/software/abseil/index.json b/site/public/v1/software/abseil/index.json new file mode 100644 index 000000000000..21ab013b55d0 --- /dev/null +++ b/site/public/v1/software/abseil/index.json @@ -0,0 +1,19 @@ +{ + "id": 103, + "slug": "abseil", + "name": "Abseil", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139892393" + ], + "created_at": "2026-07-10T10:12:39.548459", + "updated_at": "2026-07-10T10:12:39.548459", + "url": "/v1/software/abseil" +} diff --git a/site/public/v1/software/absolute-manage/index.json b/site/public/v1/software/absolute-manage/index.json new file mode 100644 index 000000000000..4b4b937e7a8e --- /dev/null +++ b/site/public/v1/software/absolute-manage/index.json @@ -0,0 +1,19 @@ +{ + "id": 104, + "slug": "absolute-manage", + "name": "Absolute Manage", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4669779" + ], + "created_at": "2026-07-10T10:12:39.548459", + "updated_at": "2026-07-10T10:12:39.548459", + "url": "/v1/software/absolute-manage" +} diff --git a/site/public/v1/software/absolute-poker/index.json b/site/public/v1/software/absolute-poker/index.json new file mode 100644 index 000000000000..e68682568b9f --- /dev/null +++ b/site/public/v1/software/absolute-poker/index.json @@ -0,0 +1,19 @@ +{ + "id": 105, + "slug": "absolute-poker", + "name": "Absolute Poker", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122208535" + ], + "created_at": "2026-07-10T10:12:39.549460", + "updated_at": "2026-07-10T10:12:39.549460", + "url": "/v1/software/absolute-poker" +} diff --git a/site/public/v1/software/abviewer/index.json b/site/public/v1/software/abviewer/index.json new file mode 100644 index 000000000000..f21e4dcdad4b --- /dev/null +++ b/site/public/v1/software/abviewer/index.json @@ -0,0 +1,19 @@ +{ + "id": 106, + "slug": "abviewer", + "name": "ABViewer", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16525094" + ], + "created_at": "2026-07-10T10:12:39.549460", + "updated_at": "2026-07-10T10:12:39.549460", + "url": "/v1/software/abviewer" +} diff --git a/site/public/v1/software/ac3d/index.json b/site/public/v1/software/ac3d/index.json new file mode 100644 index 000000000000..89ee2abc306c --- /dev/null +++ b/site/public/v1/software/ac3d/index.json @@ -0,0 +1,19 @@ +{ + "id": 107, + "slug": "ac3d", + "name": "AC3D", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4650477" + ], + "created_at": "2026-07-10T10:12:39.549460", + "updated_at": "2026-07-10T10:12:39.549460", + "url": "/v1/software/ac3d" +} diff --git a/site/public/v1/software/academic-meta-tool/index.json b/site/public/v1/software/academic-meta-tool/index.json new file mode 100644 index 000000000000..97948d690a07 --- /dev/null +++ b/site/public/v1/software/academic-meta-tool/index.json @@ -0,0 +1,29 @@ +{ + "id": 108, + "slug": "academic-meta-tool", + "name": "Academic Meta Tool", + "release_date": null, + "developers": [ + "mainzed", + "Florian Thiery" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [ + "SPARQL", + "vagueness", + "linked data", + "graph database" + ], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q74003194" + ], + "created_at": "2026-07-10T10:12:39.549460", + "updated_at": "2026-07-10T10:12:39.549460", + "url": "/v1/software/academic-meta-tool" +} diff --git a/site/public/v1/software/acado-toolkit/index.json b/site/public/v1/software/acado-toolkit/index.json new file mode 100644 index 000000000000..4e2ff4d18534 --- /dev/null +++ b/site/public/v1/software/acado-toolkit/index.json @@ -0,0 +1,24 @@ +{ + "id": 109, + "slug": "acado-toolkit", + "name": "ACADO Toolkit", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "GNU General Public License, version 3.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134452070" + ], + "created_at": "2026-07-10T10:12:39.550457", + "updated_at": "2026-07-10T10:12:39.550457", + "url": "/v1/software/acado-toolkit" +} diff --git a/site/public/v1/software/acados/index.json b/site/public/v1/software/acados/index.json new file mode 100644 index 000000000000..43a345bd25cc --- /dev/null +++ b/site/public/v1/software/acados/index.json @@ -0,0 +1,21 @@ +{ + "id": 110, + "slug": "acados", + "name": "acados", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "2-clause BSD License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134285753" + ], + "created_at": "2026-07-10T10:12:39.550457", + "updated_at": "2026-07-10T10:12:39.550457", + "url": "/v1/software/acados" +} diff --git a/site/public/v1/software/acarm-ng/index.json b/site/public/v1/software/acarm-ng/index.json new file mode 100644 index 000000000000..059be74715a0 --- /dev/null +++ b/site/public/v1/software/acarm-ng/index.json @@ -0,0 +1,19 @@ +{ + "id": 111, + "slug": "acarm-ng", + "name": "ACARM-ng", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4650501" + ], + "created_at": "2026-07-10T10:12:39.550457", + "updated_at": "2026-07-10T10:12:39.550457", + "url": "/v1/software/acarm-ng" +} diff --git a/site/public/v1/software/acaso/index.json b/site/public/v1/software/acaso/index.json new file mode 100644 index 000000000000..77b0a5719436 --- /dev/null +++ b/site/public/v1/software/acaso/index.json @@ -0,0 +1,19 @@ +{ + "id": 112, + "slug": "acaso", + "name": "ACASO", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125523409" + ], + "created_at": "2026-07-10T10:12:39.551466", + "updated_at": "2026-07-10T10:12:39.551466", + "url": "/v1/software/acaso" +} diff --git a/site/public/v1/software/accel-ppp/index.json b/site/public/v1/software/accel-ppp/index.json new file mode 100644 index 000000000000..c5070c8bef85 --- /dev/null +++ b/site/public/v1/software/accel-ppp/index.json @@ -0,0 +1,21 @@ +{ + "id": 113, + "slug": "accel-ppp", + "name": "accel-ppp", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "GNU General Public License, version 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28941598" + ], + "created_at": "2026-07-10T10:12:39.551466", + "updated_at": "2026-07-10T10:12:39.551466", + "url": "/v1/software/accel-ppp" +} diff --git a/site/public/v1/software/accelerated-linear-algebra/index.json b/site/public/v1/software/accelerated-linear-algebra/index.json new file mode 100644 index 000000000000..a88f054d7dd6 --- /dev/null +++ b/site/public/v1/software/accelerated-linear-algebra/index.json @@ -0,0 +1,19 @@ +{ + "id": 114, + "slug": "accelerated-linear-algebra", + "name": "Accelerated Linear Algebra", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124096700" + ], + "created_at": "2026-07-10T10:12:39.551466", + "updated_at": "2026-07-10T10:12:39.551466", + "url": "/v1/software/accelerated-linear-algebra" +} diff --git a/site/public/v1/software/accelerated-math/index.json b/site/public/v1/software/accelerated-math/index.json new file mode 100644 index 000000000000..11ca0ffe24c7 --- /dev/null +++ b/site/public/v1/software/accelerated-math/index.json @@ -0,0 +1,23 @@ +{ + "id": 115, + "slug": "accelerated-math", + "name": "Accelerated Math", + "release_date": null, + "developers": [ + "Renaissance Learning" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4672273" + ], + "created_at": "2026-07-10T10:12:39.552485", + "updated_at": "2026-07-10T10:12:39.552485", + "url": "/v1/software/accelerated-math" +} diff --git a/site/public/v1/software/accelerated-reader/index.json b/site/public/v1/software/accelerated-reader/index.json new file mode 100644 index 000000000000..b91f69d3619e --- /dev/null +++ b/site/public/v1/software/accelerated-reader/index.json @@ -0,0 +1,21 @@ +{ + "id": 116, + "slug": "accelerated-reader", + "name": "Accelerated Reader", + "release_date": null, + "developers": [ + "Renaissance Learning" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4672275" + ], + "created_at": "2026-07-10T10:12:39.552485", + "updated_at": "2026-07-10T10:12:39.552485", + "url": "/v1/software/accelerated-reader" +} diff --git a/site/public/v1/software/accelerator-physics-codes/index.json b/site/public/v1/software/accelerator-physics-codes/index.json new file mode 100644 index 000000000000..f23f823ee917 --- /dev/null +++ b/site/public/v1/software/accelerator-physics-codes/index.json @@ -0,0 +1,19 @@ +{ + "id": 117, + "slug": "accelerator-physics-codes", + "name": "Accelerator Physics Codes", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16001525" + ], + "created_at": "2026-07-10T10:12:39.552485", + "updated_at": "2026-07-10T10:12:39.552485", + "url": "/v1/software/accelerator-physics-codes" +} diff --git a/site/public/v1/software/accesdata-ftk/index.json b/site/public/v1/software/accesdata-ftk/index.json new file mode 100644 index 000000000000..5ecdca74b277 --- /dev/null +++ b/site/public/v1/software/accesdata-ftk/index.json @@ -0,0 +1,19 @@ +{ + "id": 118, + "slug": "accesdata-ftk", + "name": "AccesData FTK", + "release_date": "2013-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117774815" + ], + "created_at": "2026-07-10T10:12:39.553455", + "updated_at": "2026-07-10T10:12:39.553455", + "url": "/v1/software/accesdata-ftk" +} diff --git a/site/public/v1/software/access-software/index.json b/site/public/v1/software/access-software/index.json new file mode 100644 index 000000000000..f989d903a2b8 --- /dev/null +++ b/site/public/v1/software/access-software/index.json @@ -0,0 +1,19 @@ +{ + "id": 119, + "slug": "access-software", + "name": "access software", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q228331" + ], + "created_at": "2026-07-10T10:12:39.553455", + "updated_at": "2026-07-10T10:12:39.553455", + "url": "/v1/software/access-software" +} diff --git a/site/public/v1/software/accessibility-software/index.json b/site/public/v1/software/accessibility-software/index.json new file mode 100644 index 000000000000..5089393e961a --- /dev/null +++ b/site/public/v1/software/accessibility-software/index.json @@ -0,0 +1,19 @@ +{ + "id": 120, + "slug": "accessibility-software", + "name": "accessibility software", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136207022" + ], + "created_at": "2026-07-10T10:12:39.553455", + "updated_at": "2026-07-10T10:12:39.553455", + "url": "/v1/software/accessibility-software" +} diff --git a/site/public/v1/software/accis-sm/index.json b/site/public/v1/software/accis-sm/index.json new file mode 100644 index 000000000000..054e8cbda670 --- /dev/null +++ b/site/public/v1/software/accis-sm/index.json @@ -0,0 +1,19 @@ +{ + "id": 121, + "slug": "accis-sm", + "name": "acCIS/SM", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121631724" + ], + "created_at": "2026-07-10T10:12:39.554477", + "updated_at": "2026-07-10T10:12:39.554477", + "url": "/v1/software/accis-sm" +} diff --git a/site/public/v1/software/accurev-scm/index.json b/site/public/v1/software/accurev-scm/index.json new file mode 100644 index 000000000000..330fa64be1c6 --- /dev/null +++ b/site/public/v1/software/accurev-scm/index.json @@ -0,0 +1,21 @@ +{ + "id": 122, + "slug": "accurev-scm", + "name": "AccuRev SCM", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4672895" + ], + "created_at": "2026-07-10T10:12:39.554477", + "updated_at": "2026-07-10T10:12:39.554477", + "url": "/v1/software/accurev-scm" +} diff --git a/site/public/v1/software/acd-labs-percepta/index.json b/site/public/v1/software/acd-labs-percepta/index.json new file mode 100644 index 000000000000..08810f1b049a --- /dev/null +++ b/site/public/v1/software/acd-labs-percepta/index.json @@ -0,0 +1,21 @@ +{ + "id": 123, + "slug": "acd-labs-percepta", + "name": "ACD/Labs Percepta", + "release_date": null, + "developers": [ + "Advanced Chemistry Development" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136437727" + ], + "created_at": "2026-07-10T10:12:39.554477", + "updated_at": "2026-07-10T10:12:39.554477", + "url": "/v1/software/acd-labs-percepta" +} diff --git a/site/public/v1/software/acerules/index.json b/site/public/v1/software/acerules/index.json new file mode 100644 index 000000000000..09a663c37076 --- /dev/null +++ b/site/public/v1/software/acerules/index.json @@ -0,0 +1,21 @@ +{ + "id": 124, + "slug": "acerules", + "name": "AceRules", + "release_date": null, + "developers": [ + "Tobias Kuhn" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122911356" + ], + "created_at": "2026-07-10T10:12:39.555492", + "updated_at": "2026-07-10T10:12:39.555492", + "url": "/v1/software/acerules" +} diff --git a/site/public/v1/software/acid-pro/index.json b/site/public/v1/software/acid-pro/index.json new file mode 100644 index 000000000000..debc4e012278 --- /dev/null +++ b/site/public/v1/software/acid-pro/index.json @@ -0,0 +1,19 @@ +{ + "id": 125, + "slug": "acid-pro", + "name": "Acid Pro", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2552023" + ], + "created_at": "2026-07-10T10:12:39.555492", + "updated_at": "2026-07-10T10:12:39.555492", + "url": "/v1/software/acid-pro" +} diff --git a/site/public/v1/software/acif/index.json b/site/public/v1/software/acif/index.json new file mode 100644 index 000000000000..5789443dff5f --- /dev/null +++ b/site/public/v1/software/acif/index.json @@ -0,0 +1,21 @@ +{ + "id": 126, + "slug": "acif", + "name": "ACIF", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [ + "data management" + ], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4650675" + ], + "created_at": "2026-07-10T10:12:39.555492", + "updated_at": "2026-07-10T10:12:39.555492", + "url": "/v1/software/acif" +} diff --git a/site/public/v1/software/acme/index.json b/site/public/v1/software/acme/index.json new file mode 100644 index 000000000000..26feba9d0850 --- /dev/null +++ b/site/public/v1/software/acme/index.json @@ -0,0 +1,21 @@ +{ + "id": 127, + "slug": "acme", + "name": "acme", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Apache Software License 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28941601" + ], + "created_at": "2026-07-10T10:12:39.555492", + "updated_at": "2026-07-10T10:12:39.555492", + "url": "/v1/software/acme" +} diff --git a/site/public/v1/software/acodis/index.json b/site/public/v1/software/acodis/index.json new file mode 100644 index 000000000000..f2874ad77952 --- /dev/null +++ b/site/public/v1/software/acodis/index.json @@ -0,0 +1,19 @@ +{ + "id": 128, + "slug": "acodis", + "name": "Acodis", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111236589" + ], + "created_at": "2026-07-10T10:12:39.556470", + "updated_at": "2026-07-10T10:12:39.556470", + "url": "/v1/software/acodis" +} diff --git a/site/public/v1/software/acorn-c-c/index.json b/site/public/v1/software/acorn-c-c/index.json new file mode 100644 index 000000000000..184340736698 --- /dev/null +++ b/site/public/v1/software/acorn-c-c/index.json @@ -0,0 +1,23 @@ +{ + "id": 129, + "slug": "acorn-c-c", + "name": "Acorn C/C++", + "release_date": null, + "developers": [ + "RISC OS Open" + ], + "publishers": [], + "operating_systems": [ + "RISC OS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4674544" + ], + "created_at": "2026-07-10T10:12:39.556470", + "updated_at": "2026-07-10T10:12:39.556470", + "url": "/v1/software/acorn-c-c" +} diff --git a/site/public/v1/software/acornsoft-lisp/index.json b/site/public/v1/software/acornsoft-lisp/index.json new file mode 100644 index 000000000000..72172e31e7e6 --- /dev/null +++ b/site/public/v1/software/acornsoft-lisp/index.json @@ -0,0 +1,21 @@ +{ + "id": 130, + "slug": "acornsoft-lisp", + "name": "Acornsoft LISP", + "release_date": "1982-01-01", + "developers": [ + "Acornsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4674579" + ], + "created_at": "2026-07-10T10:12:39.556470", + "updated_at": "2026-07-10T10:12:39.556470", + "url": "/v1/software/acornsoft-lisp" +} diff --git a/site/public/v1/software/acornsoft-logo/index.json b/site/public/v1/software/acornsoft-logo/index.json new file mode 100644 index 000000000000..7423f245bffe --- /dev/null +++ b/site/public/v1/software/acornsoft-logo/index.json @@ -0,0 +1,21 @@ +{ + "id": 131, + "slug": "acornsoft-logo", + "name": "Acornsoft Logo", + "release_date": null, + "developers": [ + "Acornsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4674578" + ], + "created_at": "2026-07-10T10:12:39.557470", + "updated_at": "2026-07-10T10:12:39.557470", + "url": "/v1/software/acornsoft-logo" +} diff --git a/site/public/v1/software/acrolinx/index.json b/site/public/v1/software/acrolinx/index.json new file mode 100644 index 000000000000..24bca5257534 --- /dev/null +++ b/site/public/v1/software/acrolinx/index.json @@ -0,0 +1,19 @@ +{ + "id": 132, + "slug": "acrolinx", + "name": "Acrolinx", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108525266" + ], + "created_at": "2026-07-10T10:12:39.557470", + "updated_at": "2026-07-10T10:12:39.557470", + "url": "/v1/software/acrolinx" +} diff --git a/site/public/v1/software/acronis-backup-recovery/index.json b/site/public/v1/software/acronis-backup-recovery/index.json new file mode 100644 index 000000000000..44297e1f9ba8 --- /dev/null +++ b/site/public/v1/software/acronis-backup-recovery/index.json @@ -0,0 +1,21 @@ +{ + "id": 133, + "slug": "acronis-backup-recovery", + "name": "Acronis Backup & Recovery", + "release_date": null, + "developers": [ + "Acronis" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11189985" + ], + "created_at": "2026-07-10T10:12:39.557470", + "updated_at": "2026-07-10T10:12:39.557470", + "url": "/v1/software/acronis-backup-recovery" +} diff --git a/site/public/v1/software/across-language-server/index.json b/site/public/v1/software/across-language-server/index.json new file mode 100644 index 000000000000..d61b4e231a7a --- /dev/null +++ b/site/public/v1/software/across-language-server/index.json @@ -0,0 +1,19 @@ +{ + "id": 134, + "slug": "across-language-server", + "name": "Across Language Server", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q342845" + ], + "created_at": "2026-07-10T10:12:39.558514", + "updated_at": "2026-07-10T10:12:39.558514", + "url": "/v1/software/across-language-server" +} diff --git a/site/public/v1/software/act-on/index.json b/site/public/v1/software/act-on/index.json new file mode 100644 index 000000000000..3719dc9806c1 --- /dev/null +++ b/site/public/v1/software/act-on/index.json @@ -0,0 +1,19 @@ +{ + "id": 135, + "slug": "act-on", + "name": "Act-On", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4676587" + ], + "created_at": "2026-07-10T10:12:39.558514", + "updated_at": "2026-07-10T10:12:39.558514", + "url": "/v1/software/act-on" +} diff --git a/site/public/v1/software/act/index.json b/site/public/v1/software/act/index.json new file mode 100644 index 000000000000..e148d706b943 --- /dev/null +++ b/site/public/v1/software/act/index.json @@ -0,0 +1,23 @@ +{ + "id": 136, + "slug": "act", + "name": "Act!", + "release_date": null, + "developers": [ + "ACT!" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q288749" + ], + "created_at": "2026-07-10T10:12:39.558514", + "updated_at": "2026-07-10T10:12:39.558514", + "url": "/v1/software/act" +} diff --git a/site/public/v1/software/actapro/index.json b/site/public/v1/software/actapro/index.json new file mode 100644 index 000000000000..ab1dc3f33452 --- /dev/null +++ b/site/public/v1/software/actapro/index.json @@ -0,0 +1,19 @@ +{ + "id": 137, + "slug": "actapro", + "name": "ACTApro", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q15781181" + ], + "created_at": "2026-07-10T10:12:39.559502", + "updated_at": "2026-07-10T10:12:39.559502", + "url": "/v1/software/actapro" +} diff --git a/site/public/v1/software/actcad/index.json b/site/public/v1/software/actcad/index.json new file mode 100644 index 000000000000..3a0a5f54a7b9 --- /dev/null +++ b/site/public/v1/software/actcad/index.json @@ -0,0 +1,19 @@ +{ + "id": 138, + "slug": "actcad", + "name": "ActCAD", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q91300663" + ], + "created_at": "2026-07-10T10:12:39.559502", + "updated_at": "2026-07-10T10:12:39.559502", + "url": "/v1/software/actcad" +} diff --git a/site/public/v1/software/actifsource/index.json b/site/public/v1/software/actifsource/index.json new file mode 100644 index 000000000000..3704b040925e --- /dev/null +++ b/site/public/v1/software/actifsource/index.json @@ -0,0 +1,19 @@ +{ + "id": 139, + "slug": "actifsource", + "name": "Actifsource", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4676826" + ], + "created_at": "2026-07-10T10:12:39.559502", + "updated_at": "2026-07-10T10:12:39.559502", + "url": "/v1/software/actifsource" +} diff --git a/site/public/v1/software/action-center/index.json b/site/public/v1/software/action-center/index.json new file mode 100644 index 000000000000..aa379ca6a782 --- /dev/null +++ b/site/public/v1/software/action-center/index.json @@ -0,0 +1,19 @@ +{ + "id": 140, + "slug": "action-center", + "name": "Action Center", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q21041422" + ], + "created_at": "2026-07-10T10:12:39.560478", + "updated_at": "2026-07-10T10:12:39.560478", + "url": "/v1/software/action-center" +} diff --git a/site/public/v1/software/actionoutline/index.json b/site/public/v1/software/actionoutline/index.json new file mode 100644 index 000000000000..cc62c221cddd --- /dev/null +++ b/site/public/v1/software/actionoutline/index.json @@ -0,0 +1,23 @@ +{ + "id": 141, + "slug": "actionoutline", + "name": "ActionOutline", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106143543" + ], + "created_at": "2026-07-10T10:12:39.560478", + "updated_at": "2026-07-10T10:12:39.560478", + "url": "/v1/software/actionoutline" +} diff --git a/site/public/v1/software/active-desktop/index.json b/site/public/v1/software/active-desktop/index.json new file mode 100644 index 000000000000..7bae8308ec15 --- /dev/null +++ b/site/public/v1/software/active-desktop/index.json @@ -0,0 +1,19 @@ +{ + "id": 142, + "slug": "active-desktop", + "name": "Active Desktop", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q177314" + ], + "created_at": "2026-07-10T10:12:39.560478", + "updated_at": "2026-07-10T10:12:39.560478", + "url": "/v1/software/active-desktop" +} diff --git a/site/public/v1/software/activecho/index.json b/site/public/v1/software/activecho/index.json new file mode 100644 index 000000000000..36337d0cc8c5 --- /dev/null +++ b/site/public/v1/software/activecho/index.json @@ -0,0 +1,21 @@ +{ + "id": 143, + "slug": "activecho", + "name": "ActivEcho", + "release_date": null, + "developers": [ + "GroupLogic" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4677447" + ], + "created_at": "2026-07-10T10:12:39.561473", + "updated_at": "2026-07-10T10:12:39.561473", + "url": "/v1/software/activecho" +} diff --git a/site/public/v1/software/activecollab/index.json b/site/public/v1/software/activecollab/index.json new file mode 100644 index 000000000000..85f347b0f1dc --- /dev/null +++ b/site/public/v1/software/activecollab/index.json @@ -0,0 +1,19 @@ +{ + "id": 144, + "slug": "activecollab", + "name": "ActiveCollab", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q20309970" + ], + "created_at": "2026-07-10T10:12:39.561473", + "updated_at": "2026-07-10T10:12:39.561473", + "url": "/v1/software/activecollab" +} diff --git a/site/public/v1/software/activefile/index.json b/site/public/v1/software/activefile/index.json new file mode 100644 index 000000000000..6211e4561153 --- /dev/null +++ b/site/public/v1/software/activefile/index.json @@ -0,0 +1,19 @@ +{ + "id": 145, + "slug": "activefile", + "name": "ActiveFile", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4033358" + ], + "created_at": "2026-07-10T10:12:39.561473", + "updated_at": "2026-07-10T10:12:39.561473", + "url": "/v1/software/activefile" +} diff --git a/site/public/v1/software/activepresentation/index.json b/site/public/v1/software/activepresentation/index.json new file mode 100644 index 000000000000..d52ac3936459 --- /dev/null +++ b/site/public/v1/software/activepresentation/index.json @@ -0,0 +1,19 @@ +{ + "id": 146, + "slug": "activepresentation", + "name": "ActivePresentation", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4677474" + ], + "created_at": "2026-07-10T10:12:39.562455", + "updated_at": "2026-07-10T10:12:39.562455", + "url": "/v1/software/activepresentation" +} diff --git a/site/public/v1/software/activepresenter/index.json b/site/public/v1/software/activepresenter/index.json new file mode 100644 index 000000000000..65dac2c52cce --- /dev/null +++ b/site/public/v1/software/activepresenter/index.json @@ -0,0 +1,23 @@ +{ + "id": 147, + "slug": "activepresenter", + "name": "ActivePresenter", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [ + "screencasting software" + ], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4677477" + ], + "created_at": "2026-07-10T10:12:39.562455", + "updated_at": "2026-07-10T10:12:39.562455", + "url": "/v1/software/activepresenter" +} diff --git a/site/public/v1/software/activepython/index.json b/site/public/v1/software/activepython/index.json new file mode 100644 index 000000000000..cdd79715df81 --- /dev/null +++ b/site/public/v1/software/activepython/index.json @@ -0,0 +1,21 @@ +{ + "id": 148, + "slug": "activepython", + "name": "ActivePython", + "release_date": null, + "developers": [ + "ActiveState" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4033361" + ], + "created_at": "2026-07-10T10:12:39.562455", + "updated_at": "2026-07-10T10:12:39.562455", + "url": "/v1/software/activepython" +} diff --git a/site/public/v1/software/activeshare/index.json b/site/public/v1/software/activeshare/index.json new file mode 100644 index 000000000000..d4d8503c474a --- /dev/null +++ b/site/public/v1/software/activeshare/index.json @@ -0,0 +1,21 @@ +{ + "id": 149, + "slug": "activeshare", + "name": "ActiveShare", + "release_date": null, + "developers": [ + "Adobe" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q66458642" + ], + "created_at": "2026-07-10T10:12:39.562455", + "updated_at": "2026-07-10T10:12:39.562455", + "url": "/v1/software/activeshare" +} diff --git a/site/public/v1/software/activesync/index.json b/site/public/v1/software/activesync/index.json new file mode 100644 index 000000000000..9917eedcf408 --- /dev/null +++ b/site/public/v1/software/activesync/index.json @@ -0,0 +1,26 @@ +{ + "id": 150, + "slug": "activesync", + "name": "ActiveSync", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [ + "Windows 95", + "Windows Whistler", + "Windows Longhorn", + "Windows NT 4.0" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q343961" + ], + "created_at": "2026-07-10T10:12:39.563460", + "updated_at": "2026-07-10T10:12:39.563460", + "url": "/v1/software/activesync" +} diff --git a/site/public/v1/software/activevos/index.json b/site/public/v1/software/activevos/index.json new file mode 100644 index 000000000000..b1799f0854fb --- /dev/null +++ b/site/public/v1/software/activevos/index.json @@ -0,0 +1,19 @@ +{ + "id": 151, + "slug": "activevos", + "name": "ActiveVOS", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16245498" + ], + "created_at": "2026-07-10T10:12:39.563460", + "updated_at": "2026-07-10T10:12:39.563460", + "url": "/v1/software/activevos" +} diff --git a/site/public/v1/software/activeweave/index.json b/site/public/v1/software/activeweave/index.json new file mode 100644 index 000000000000..e0156c9558f6 --- /dev/null +++ b/site/public/v1/software/activeweave/index.json @@ -0,0 +1,23 @@ +{ + "id": 152, + "slug": "activeweave", + "name": "Activeweave", + "release_date": null, + "developers": [ + "Activeweave" + ], + "publishers": [], + "operating_systems": [ + "cross-platform" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4677601" + ], + "created_at": "2026-07-10T10:12:39.563460", + "updated_at": "2026-07-10T10:12:39.563460", + "url": "/v1/software/activeweave" +} diff --git a/site/public/v1/software/activity-monitor/index.json b/site/public/v1/software/activity-monitor/index.json new file mode 100644 index 000000000000..9c1e9684f810 --- /dev/null +++ b/site/public/v1/software/activity-monitor/index.json @@ -0,0 +1,23 @@ +{ + "id": 153, + "slug": "activity-monitor", + "name": "Activity Monitor", + "release_date": null, + "developers": [ + "Apple Inc." + ], + "publishers": [], + "operating_systems": [ + "macOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1054964" + ], + "created_at": "2026-07-10T10:12:39.564489", + "updated_at": "2026-07-10T10:12:39.564489", + "url": "/v1/software/activity-monitor" +} diff --git a/site/public/v1/software/actran/index.json b/site/public/v1/software/actran/index.json new file mode 100644 index 000000000000..0b26b65ae5c5 --- /dev/null +++ b/site/public/v1/software/actran/index.json @@ -0,0 +1,19 @@ +{ + "id": 154, + "slug": "actran", + "name": "Actran", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q19871539" + ], + "created_at": "2026-07-10T10:12:39.564489", + "updated_at": "2026-07-10T10:12:39.564489", + "url": "/v1/software/actran" +} diff --git a/site/public/v1/software/acumbamail/index.json b/site/public/v1/software/acumbamail/index.json new file mode 100644 index 000000000000..bff514df1e58 --- /dev/null +++ b/site/public/v1/software/acumbamail/index.json @@ -0,0 +1,19 @@ +{ + "id": 155, + "slug": "acumbamail", + "name": "Acumbamail", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108552721" + ], + "created_at": "2026-07-10T10:12:39.564489", + "updated_at": "2026-07-10T10:12:39.564489", + "url": "/v1/software/acumbamail" +} diff --git a/site/public/v1/software/acunetix/index.json b/site/public/v1/software/acunetix/index.json new file mode 100644 index 000000000000..9878e4a287d9 --- /dev/null +++ b/site/public/v1/software/acunetix/index.json @@ -0,0 +1,21 @@ +{ + "id": 156, + "slug": "acunetix", + "name": "Acunetix", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60168780" + ], + "created_at": "2026-07-10T10:12:39.565457", + "updated_at": "2026-07-10T10:12:39.565457", + "url": "/v1/software/acunetix" +} diff --git a/site/public/v1/software/adabas-d/index.json b/site/public/v1/software/adabas-d/index.json new file mode 100644 index 000000000000..9f53c323845e --- /dev/null +++ b/site/public/v1/software/adabas-d/index.json @@ -0,0 +1,21 @@ +{ + "id": 157, + "slug": "adabas-d", + "name": "Adabas D", + "release_date": null, + "developers": [ + "Software AG" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q346441" + ], + "created_at": "2026-07-10T10:12:39.565457", + "updated_at": "2026-07-10T10:12:39.565457", + "url": "/v1/software/adabas-d" +} diff --git a/site/public/v1/software/adabas/index.json b/site/public/v1/software/adabas/index.json new file mode 100644 index 000000000000..5518b662d29b --- /dev/null +++ b/site/public/v1/software/adabas/index.json @@ -0,0 +1,24 @@ +{ + "id": 158, + "slug": "adabas", + "name": "ADABAS", + "release_date": null, + "developers": [ + "Software AG" + ], + "publishers": [], + "operating_systems": [ + "IBM mainframe", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q346434" + ], + "created_at": "2026-07-10T10:12:39.565457", + "updated_at": "2026-07-10T10:12:39.565457", + "url": "/v1/software/adabas" +} diff --git a/site/public/v1/software/adacontrol/index.json b/site/public/v1/software/adacontrol/index.json new file mode 100644 index 000000000000..06d254f956e1 --- /dev/null +++ b/site/public/v1/software/adacontrol/index.json @@ -0,0 +1,24 @@ +{ + "id": 159, + "slug": "adacontrol", + "name": "AdaControl", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "GNAT Modified General Public License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4678212" + ], + "created_at": "2026-07-10T10:12:39.566488", + "updated_at": "2026-07-10T10:12:39.566488", + "url": "/v1/software/adacontrol" +} diff --git a/site/public/v1/software/adaptable-input-output-system-version-2/index.json b/site/public/v1/software/adaptable-input-output-system-version-2/index.json new file mode 100644 index 000000000000..78e853262025 --- /dev/null +++ b/site/public/v1/software/adaptable-input-output-system-version-2/index.json @@ -0,0 +1,24 @@ +{ + "id": 160, + "slug": "adaptable-input-output-system-version-2", + "name": "Adaptable Input Output System version 2", + "release_date": null, + "developers": [ + "Norbert Podhorszki", + "William Godoy" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Apache Software License 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q119841201" + ], + "created_at": "2026-07-10T10:12:39.566488", + "updated_at": "2026-07-10T10:12:39.566488", + "url": "/v1/software/adaptable-input-output-system-version-2" +} diff --git a/site/public/v1/software/adaptation-kit-upgrade/index.json b/site/public/v1/software/adaptation-kit-upgrade/index.json new file mode 100644 index 000000000000..378cea52cccc --- /dev/null +++ b/site/public/v1/software/adaptation-kit-upgrade/index.json @@ -0,0 +1,19 @@ +{ + "id": 161, + "slug": "adaptation-kit-upgrade", + "name": "Adaptation kit upgrade", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4032925" + ], + "created_at": "2026-07-10T10:12:39.566488", + "updated_at": "2026-07-10T10:12:39.566488", + "url": "/v1/software/adaptation-kit-upgrade" +} diff --git a/site/public/v1/software/adapter/index.json b/site/public/v1/software/adapter/index.json new file mode 100644 index 000000000000..fab8bc3800d0 --- /dev/null +++ b/site/public/v1/software/adapter/index.json @@ -0,0 +1,19 @@ +{ + "id": 162, + "slug": "adapter", + "name": "Adapter", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5657412" + ], + "created_at": "2026-07-10T10:12:39.567398", + "updated_at": "2026-07-10T10:12:39.567398", + "url": "/v1/software/adapter" +} diff --git a/site/public/v1/software/adaptive-domain-environment-for-operating-systems/index.json b/site/public/v1/software/adaptive-domain-environment-for-operating-systems/index.json new file mode 100644 index 000000000000..a16451590ca4 --- /dev/null +++ b/site/public/v1/software/adaptive-domain-environment-for-operating-systems/index.json @@ -0,0 +1,19 @@ +{ + "id": 163, + "slug": "adaptive-domain-environment-for-operating-systems", + "name": "Adaptive Domain Environment for Operating Systems", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2824314" + ], + "created_at": "2026-07-10T10:12:39.567398", + "updated_at": "2026-07-10T10:12:39.567398", + "url": "/v1/software/adaptive-domain-environment-for-operating-systems" +} diff --git a/site/public/v1/software/adaptive-modeler/index.json b/site/public/v1/software/adaptive-modeler/index.json new file mode 100644 index 000000000000..74ae7b557e57 --- /dev/null +++ b/site/public/v1/software/adaptive-modeler/index.json @@ -0,0 +1,19 @@ +{ + "id": 164, + "slug": "adaptive-modeler", + "name": "Adaptive Modeler", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4680706" + ], + "created_at": "2026-07-10T10:12:39.567398", + "updated_at": "2026-07-10T10:12:39.567398", + "url": "/v1/software/adaptive-modeler" +} diff --git a/site/public/v1/software/adaware-antivirus/index.json b/site/public/v1/software/adaware-antivirus/index.json new file mode 100644 index 000000000000..018b7e613476 --- /dev/null +++ b/site/public/v1/software/adaware-antivirus/index.json @@ -0,0 +1,23 @@ +{ + "id": 165, + "slug": "adaware-antivirus", + "name": "Adaware Antivirus", + "release_date": null, + "developers": [ + "Lavasoft" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q345174" + ], + "created_at": "2026-07-10T10:12:39.568399", + "updated_at": "2026-07-10T10:12:39.568399", + "url": "/v1/software/adaware-antivirus" +} diff --git a/site/public/v1/software/address-book/index.json b/site/public/v1/software/address-book/index.json new file mode 100644 index 000000000000..ae7d93fc7ae4 --- /dev/null +++ b/site/public/v1/software/address-book/index.json @@ -0,0 +1,21 @@ +{ + "id": 166, + "slug": "address-book", + "name": "Address Book", + "release_date": null, + "developers": [ + "Apple Inc." + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25210858" + ], + "created_at": "2026-07-10T10:12:39.568399", + "updated_at": "2026-07-10T10:12:39.568399", + "url": "/v1/software/address-book" +} diff --git a/site/public/v1/software/adesklets/index.json b/site/public/v1/software/adesklets/index.json new file mode 100644 index 000000000000..79915681b78a --- /dev/null +++ b/site/public/v1/software/adesklets/index.json @@ -0,0 +1,19 @@ +{ + "id": 167, + "slug": "adesklets", + "name": "Adesklets", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2819128" + ], + "created_at": "2026-07-10T10:12:39.568399", + "updated_at": "2026-07-10T10:12:39.568399", + "url": "/v1/software/adesklets" +} diff --git a/site/public/v1/software/adibou/index.json b/site/public/v1/software/adibou/index.json new file mode 100644 index 000000000000..078103bb03c8 --- /dev/null +++ b/site/public/v1/software/adibou/index.json @@ -0,0 +1,30 @@ +{ + "id": 168, + "slug": "adibou", + "name": "Adibou", + "release_date": null, + "developers": [ + "Eko Software", + "Coktel Vision", + "Mindscape", + "Kalisto Entertainment" + ], + "publishers": [ + "Coktel Vision", + "Sierra Entertainment", + "Mindscape" + ], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [ + "educational video game" + ], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2824371" + ], + "created_at": "2026-07-10T10:12:39.568399", + "updated_at": "2026-07-10T10:12:39.568399", + "url": "/v1/software/adibou" +} diff --git a/site/public/v1/software/adic/index.json b/site/public/v1/software/adic/index.json new file mode 100644 index 000000000000..8874286d1d7f --- /dev/null +++ b/site/public/v1/software/adic/index.json @@ -0,0 +1,19 @@ +{ + "id": 169, + "slug": "adic", + "name": "ADIC", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123191698" + ], + "created_at": "2026-07-10T10:12:39.569401", + "updated_at": "2026-07-10T10:12:39.569401", + "url": "/v1/software/adic" +} diff --git a/site/public/v1/software/adiirc/index.json b/site/public/v1/software/adiirc/index.json new file mode 100644 index 000000000000..866de888bac6 --- /dev/null +++ b/site/public/v1/software/adiirc/index.json @@ -0,0 +1,19 @@ +{ + "id": 170, + "slug": "adiirc", + "name": "AdiIRC", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q56316318" + ], + "created_at": "2026-07-10T10:12:39.569401", + "updated_at": "2026-07-10T10:12:39.569401", + "url": "/v1/software/adiirc" +} diff --git a/site/public/v1/software/adios/index.json b/site/public/v1/software/adios/index.json new file mode 100644 index 000000000000..8957b86f8b01 --- /dev/null +++ b/site/public/v1/software/adios/index.json @@ -0,0 +1,23 @@ +{ + "id": 171, + "slug": "adios", + "name": "AdiOS", + "release_date": null, + "developers": [ + "AdiOS" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139501276" + ], + "created_at": "2026-07-10T10:12:39.570404", + "updated_at": "2026-07-10T10:12:39.570404", + "url": "/v1/software/adios" +} diff --git a/site/public/v1/software/adisyo/index.json b/site/public/v1/software/adisyo/index.json new file mode 100644 index 000000000000..0bd45aaaad27 --- /dev/null +++ b/site/public/v1/software/adisyo/index.json @@ -0,0 +1,19 @@ +{ + "id": 172, + "slug": "adisyo", + "name": "Adisyo", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138857208" + ], + "created_at": "2026-07-10T10:12:39.570404", + "updated_at": "2026-07-10T10:12:39.570404", + "url": "/v1/software/adisyo" +} diff --git a/site/public/v1/software/adlib-archive/index.json b/site/public/v1/software/adlib-archive/index.json new file mode 100644 index 000000000000..f1fdeb9d23dc --- /dev/null +++ b/site/public/v1/software/adlib-archive/index.json @@ -0,0 +1,19 @@ +{ + "id": 173, + "slug": "adlib-archive", + "name": "Adlib Archive", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084375" + ], + "created_at": "2026-07-10T10:12:39.570404", + "updated_at": "2026-07-10T10:12:39.570404", + "url": "/v1/software/adlib-archive" +} diff --git a/site/public/v1/software/admar/index.json b/site/public/v1/software/admar/index.json new file mode 100644 index 000000000000..cdfdcb1ba0a1 --- /dev/null +++ b/site/public/v1/software/admar/index.json @@ -0,0 +1,19 @@ +{ + "id": 174, + "slug": "admar", + "name": "ADMAR", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q290409" + ], + "created_at": "2026-07-10T10:12:39.570404", + "updated_at": "2026-07-10T10:12:39.570404", + "url": "/v1/software/admar" +} diff --git a/site/public/v1/software/admixtools/index.json b/site/public/v1/software/admixtools/index.json new file mode 100644 index 000000000000..df8200843004 --- /dev/null +++ b/site/public/v1/software/admixtools/index.json @@ -0,0 +1,24 @@ +{ + "id": 175, + "slug": "admixtools", + "name": "ADMIXTOOLS", + "release_date": null, + "developers": [ + "David E. Reich", + "Nick Patterson" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "R" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112064761" + ], + "created_at": "2026-07-10T10:12:39.571399", + "updated_at": "2026-07-10T10:12:39.571399", + "url": "/v1/software/admixtools" +} diff --git a/site/public/v1/software/adobe-account-access/index.json b/site/public/v1/software/adobe-account-access/index.json new file mode 100644 index 000000000000..86598003181b --- /dev/null +++ b/site/public/v1/software/adobe-account-access/index.json @@ -0,0 +1,19 @@ +{ + "id": 176, + "slug": "adobe-account-access", + "name": "Adobe Account Access", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109595344" + ], + "created_at": "2026-07-10T10:12:39.571399", + "updated_at": "2026-07-10T10:12:39.571399", + "url": "/v1/software/adobe-account-access" +} diff --git a/site/public/v1/software/adobe-acrobat-capture-3-0/index.json b/site/public/v1/software/adobe-acrobat-capture-3-0/index.json new file mode 100644 index 000000000000..bb0db1eeb3cb --- /dev/null +++ b/site/public/v1/software/adobe-acrobat-capture-3-0/index.json @@ -0,0 +1,21 @@ +{ + "id": 177, + "slug": "adobe-acrobat-capture-3-0", + "name": "Adobe Acrobat Capture 3.0", + "release_date": null, + "developers": [ + "Adobe" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18471852" + ], + "created_at": "2026-07-10T10:12:39.571399", + "updated_at": "2026-07-10T10:12:39.571399", + "url": "/v1/software/adobe-acrobat-capture-3-0" +} diff --git a/site/public/v1/software/adobe-acrobat-reader-dc-2017/index.json b/site/public/v1/software/adobe-acrobat-reader-dc-2017/index.json new file mode 100644 index 000000000000..79ba81629081 --- /dev/null +++ b/site/public/v1/software/adobe-acrobat-reader-dc-2017/index.json @@ -0,0 +1,25 @@ +{ + "id": 178, + "slug": "adobe-acrobat-reader-dc-2017", + "name": "Adobe Acrobat Reader DC 2017", + "release_date": "2017-04-11", + "developers": [ + "Adobe" + ], + "publishers": [], + "operating_systems": [ + "Windows Server 2016", + "Windows Server 2012 R2", + "Windows 8.1" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60693427" + ], + "created_at": "2026-07-10T10:12:39.572401", + "updated_at": "2026-07-10T10:12:39.572401", + "url": "/v1/software/adobe-acrobat-reader-dc-2017" +} diff --git a/site/public/v1/software/adobe-acrobat-reader-dc/index.json b/site/public/v1/software/adobe-acrobat-reader-dc/index.json new file mode 100644 index 000000000000..f14fd5f68144 --- /dev/null +++ b/site/public/v1/software/adobe-acrobat-reader-dc/index.json @@ -0,0 +1,24 @@ +{ + "id": 179, + "slug": "adobe-acrobat-reader-dc", + "name": "Adobe Acrobat Reader DC", + "release_date": "2015-04-06", + "developers": [ + "Adobe" + ], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2634567" + ], + "created_at": "2026-07-10T10:12:39.572401", + "updated_at": "2026-07-10T10:12:39.572401", + "url": "/v1/software/adobe-acrobat-reader-dc" +} diff --git a/site/public/v1/software/adobe-air/index.json b/site/public/v1/software/adobe-air/index.json new file mode 100644 index 000000000000..10b91bdce950 --- /dev/null +++ b/site/public/v1/software/adobe-air/index.json @@ -0,0 +1,29 @@ +{ + "id": 180, + "slug": "adobe-air", + "name": "Adobe AIR", + "release_date": null, + "developers": [ + "Harman International Industries", + "Adobe" + ], + "publishers": [], + "operating_systems": [ + "iOS", + "BlackBerry Tablet OS", + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q360310" + ], + "created_at": "2026-07-10T10:12:39.572401", + "updated_at": "2026-07-10T10:12:39.572401", + "url": "/v1/software/adobe-air" +} diff --git a/site/public/v1/software/adobe-browserlab/index.json b/site/public/v1/software/adobe-browserlab/index.json new file mode 100644 index 000000000000..a3889d541325 --- /dev/null +++ b/site/public/v1/software/adobe-browserlab/index.json @@ -0,0 +1,21 @@ +{ + "id": 181, + "slug": "adobe-browserlab", + "name": "Adobe BrowserLab", + "release_date": null, + "developers": [ + "Adobe" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4683970" + ], + "created_at": "2026-07-10T10:12:39.572401", + "updated_at": "2026-07-10T10:12:39.572401", + "url": "/v1/software/adobe-browserlab" +} diff --git a/site/public/v1/software/adobe-character-animator/index.json b/site/public/v1/software/adobe-character-animator/index.json new file mode 100644 index 000000000000..0616160c2b82 --- /dev/null +++ b/site/public/v1/software/adobe-character-animator/index.json @@ -0,0 +1,23 @@ +{ + "id": 182, + "slug": "adobe-character-animator", + "name": "Adobe Character Animator", + "release_date": null, + "developers": [ + "Adobe" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q21539836" + ], + "created_at": "2026-07-10T10:12:39.573401", + "updated_at": "2026-07-10T10:12:39.573401", + "url": "/v1/software/adobe-character-animator" +} diff --git a/site/public/v1/software/adobe-color/index.json b/site/public/v1/software/adobe-color/index.json new file mode 100644 index 000000000000..ff5f61aee2e2 --- /dev/null +++ b/site/public/v1/software/adobe-color/index.json @@ -0,0 +1,21 @@ +{ + "id": 183, + "slug": "adobe-color", + "name": "Adobe Color", + "release_date": null, + "developers": [ + "Adobe" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109360871" + ], + "created_at": "2026-07-10T10:12:39.573401", + "updated_at": "2026-07-10T10:12:39.573401", + "url": "/v1/software/adobe-color" +} diff --git a/site/public/v1/software/adobe-device-central/index.json b/site/public/v1/software/adobe-device-central/index.json new file mode 100644 index 000000000000..78b5936c2924 --- /dev/null +++ b/site/public/v1/software/adobe-device-central/index.json @@ -0,0 +1,21 @@ +{ + "id": 184, + "slug": "adobe-device-central", + "name": "Adobe Device Central", + "release_date": null, + "developers": [ + "Adobe" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q795920" + ], + "created_at": "2026-07-10T10:12:39.573401", + "updated_at": "2026-07-10T10:12:39.573401", + "url": "/v1/software/adobe-device-central" +} diff --git a/site/public/v1/software/adobe-digital-editions/index.json b/site/public/v1/software/adobe-digital-editions/index.json new file mode 100644 index 000000000000..314515a44c3a --- /dev/null +++ b/site/public/v1/software/adobe-digital-editions/index.json @@ -0,0 +1,25 @@ +{ + "id": 185, + "slug": "adobe-digital-editions", + "name": "Adobe Digital Editions", + "release_date": null, + "developers": [ + "Adobe" + ], + "publishers": [], + "operating_systems": [ + "macOS" + ], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q144858" + ], + "created_at": "2026-07-10T10:12:39.574401", + "updated_at": "2026-07-10T10:12:39.574401", + "url": "/v1/software/adobe-digital-editions" +} diff --git a/site/public/v1/software/adobe-dimensions/index.json b/site/public/v1/software/adobe-dimensions/index.json new file mode 100644 index 000000000000..157a7b402870 --- /dev/null +++ b/site/public/v1/software/adobe-dimensions/index.json @@ -0,0 +1,21 @@ +{ + "id": 186, + "slug": "adobe-dimensions", + "name": "Adobe Dimensions", + "release_date": null, + "developers": [ + "Adobe" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11190003" + ], + "created_at": "2026-07-10T10:12:39.574401", + "updated_at": "2026-07-10T10:12:39.574401", + "url": "/v1/software/adobe-dimensions" +} diff --git a/site/public/v1/software/adobe-edge-animate/index.json b/site/public/v1/software/adobe-edge-animate/index.json new file mode 100644 index 000000000000..07685fd9b74f --- /dev/null +++ b/site/public/v1/software/adobe-edge-animate/index.json @@ -0,0 +1,25 @@ +{ + "id": 187, + "slug": "adobe-edge-animate", + "name": "Adobe Edge Animate", + "release_date": null, + "developers": [ + "Adobe" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q360119" + ], + "created_at": "2026-07-10T10:12:39.574401", + "updated_at": "2026-07-10T10:12:39.574401", + "url": "/v1/software/adobe-edge-animate" +} diff --git a/site/public/v1/software/adobe-edge/index.json b/site/public/v1/software/adobe-edge/index.json new file mode 100644 index 000000000000..0f6e84a15aff --- /dev/null +++ b/site/public/v1/software/adobe-edge/index.json @@ -0,0 +1,21 @@ +{ + "id": 188, + "slug": "adobe-edge", + "name": "Adobe Edge", + "release_date": null, + "developers": [ + "Adobe" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q14073847" + ], + "created_at": "2026-07-10T10:12:39.574401", + "updated_at": "2026-07-10T10:12:39.574401", + "url": "/v1/software/adobe-edge" +} diff --git a/site/public/v1/software/adobe-elearning-suite/index.json b/site/public/v1/software/adobe-elearning-suite/index.json new file mode 100644 index 000000000000..38cd742deca2 --- /dev/null +++ b/site/public/v1/software/adobe-elearning-suite/index.json @@ -0,0 +1,24 @@ +{ + "id": 189, + "slug": "adobe-elearning-suite", + "name": "Adobe eLearning Suite", + "release_date": null, + "developers": [ + "Adobe" + ], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4684017" + ], + "created_at": "2026-07-10T10:12:39.575400", + "updated_at": "2026-07-10T10:12:39.575400", + "url": "/v1/software/adobe-elearning-suite" +} diff --git a/site/public/v1/software/adobe-express/index.json b/site/public/v1/software/adobe-express/index.json new file mode 100644 index 000000000000..2a760f879afd --- /dev/null +++ b/site/public/v1/software/adobe-express/index.json @@ -0,0 +1,21 @@ +{ + "id": 190, + "slug": "adobe-express", + "name": "Adobe Express", + "release_date": "2016-05-19", + "developers": [ + "Adobe" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28446850" + ], + "created_at": "2026-07-10T10:12:39.575400", + "updated_at": "2026-07-10T10:12:39.575400", + "url": "/v1/software/adobe-express" +} diff --git a/site/public/v1/software/adobe-flash-catalyst/index.json b/site/public/v1/software/adobe-flash-catalyst/index.json new file mode 100644 index 000000000000..f0ddea10a227 --- /dev/null +++ b/site/public/v1/software/adobe-flash-catalyst/index.json @@ -0,0 +1,21 @@ +{ + "id": 191, + "slug": "adobe-flash-catalyst", + "name": "Adobe Flash Catalyst", + "release_date": null, + "developers": [ + "Adobe" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q360199" + ], + "created_at": "2026-07-10T10:12:39.575400", + "updated_at": "2026-07-10T10:12:39.575400", + "url": "/v1/software/adobe-flash-catalyst" +} diff --git a/site/public/v1/software/adobe-flash-lite/index.json b/site/public/v1/software/adobe-flash-lite/index.json new file mode 100644 index 000000000000..dc237a5686a3 --- /dev/null +++ b/site/public/v1/software/adobe-flash-lite/index.json @@ -0,0 +1,23 @@ +{ + "id": 192, + "slug": "adobe-flash-lite", + "name": "Adobe Flash Lite", + "release_date": null, + "developers": [ + "Macromedia" + ], + "publishers": [], + "operating_systems": [ + "Symbian" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q384622" + ], + "created_at": "2026-07-10T10:12:39.575400", + "updated_at": "2026-07-10T10:12:39.575400", + "url": "/v1/software/adobe-flash-lite" +} diff --git a/site/public/v1/software/adobe-flash-media-live-encoder/index.json b/site/public/v1/software/adobe-flash-media-live-encoder/index.json new file mode 100644 index 000000000000..fc634ac7429a --- /dev/null +++ b/site/public/v1/software/adobe-flash-media-live-encoder/index.json @@ -0,0 +1,23 @@ +{ + "id": 193, + "slug": "adobe-flash-media-live-encoder", + "name": "Adobe Flash Media Live Encoder", + "release_date": null, + "developers": [ + "Adobe" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4683980" + ], + "created_at": "2026-07-10T10:12:39.576400", + "updated_at": "2026-07-10T10:12:39.576400", + "url": "/v1/software/adobe-flash-media-live-encoder" +} diff --git a/site/public/v1/software/adobe-font-folio/index.json b/site/public/v1/software/adobe-font-folio/index.json new file mode 100644 index 000000000000..73087302e50d --- /dev/null +++ b/site/public/v1/software/adobe-font-folio/index.json @@ -0,0 +1,21 @@ +{ + "id": 194, + "slug": "adobe-font-folio", + "name": "Adobe Font Folio", + "release_date": null, + "developers": [ + "Adobe" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4683983" + ], + "created_at": "2026-07-10T10:12:39.576400", + "updated_at": "2026-07-10T10:12:39.576400", + "url": "/v1/software/adobe-font-folio" +} diff --git a/site/public/v1/software/adobe-fresco/index.json b/site/public/v1/software/adobe-fresco/index.json new file mode 100644 index 000000000000..022c20546a21 --- /dev/null +++ b/site/public/v1/software/adobe-fresco/index.json @@ -0,0 +1,19 @@ +{ + "id": 195, + "slug": "adobe-fresco", + "name": "Adobe Fresco", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107108049" + ], + "created_at": "2026-07-10T10:12:39.576400", + "updated_at": "2026-07-10T10:12:39.576400", + "url": "/v1/software/adobe-fresco" +} diff --git a/site/public/v1/software/adobe-illustrator-9-0/index.json b/site/public/v1/software/adobe-illustrator-9-0/index.json new file mode 100644 index 000000000000..b8b3f51fc024 --- /dev/null +++ b/site/public/v1/software/adobe-illustrator-9-0/index.json @@ -0,0 +1,24 @@ +{ + "id": 196, + "slug": "adobe-illustrator-9-0", + "name": "Adobe Illustrator 9.0", + "release_date": "2000-01-01", + "developers": [ + "Adobe" + ], + "publishers": [], + "operating_systems": [ + "Windows 95", + "Windows NT 4.0" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q61976294" + ], + "created_at": "2026-07-10T10:12:39.577401", + "updated_at": "2026-07-10T10:12:39.577401", + "url": "/v1/software/adobe-illustrator-9-0" +} diff --git a/site/public/v1/software/adobe-indesign/index.json b/site/public/v1/software/adobe-indesign/index.json new file mode 100644 index 000000000000..bbee37ef2030 --- /dev/null +++ b/site/public/v1/software/adobe-indesign/index.json @@ -0,0 +1,23 @@ +{ + "id": 197, + "slug": "adobe-indesign", + "name": "Adobe InDesign", + "release_date": "1999-08-31", + "developers": [ + "Adobe" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q218924" + ], + "created_at": "2026-07-10T10:12:39.577401", + "updated_at": "2026-07-10T10:12:39.577401", + "url": "/v1/software/adobe-indesign" +} diff --git a/site/public/v1/software/adobe-jrun/index.json b/site/public/v1/software/adobe-jrun/index.json new file mode 100644 index 000000000000..1cc7c76530b2 --- /dev/null +++ b/site/public/v1/software/adobe-jrun/index.json @@ -0,0 +1,22 @@ +{ + "id": 198, + "slug": "adobe-jrun", + "name": "Adobe JRun", + "release_date": null, + "developers": [ + "Live Software", + "Adobe" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2912004" + ], + "created_at": "2026-07-10T10:12:39.577401", + "updated_at": "2026-07-10T10:12:39.577401", + "url": "/v1/software/adobe-jrun" +} diff --git a/site/public/v1/software/adobe-livecycle-designer/index.json b/site/public/v1/software/adobe-livecycle-designer/index.json new file mode 100644 index 000000000000..dc4cc0b56738 --- /dev/null +++ b/site/public/v1/software/adobe-livecycle-designer/index.json @@ -0,0 +1,21 @@ +{ + "id": 199, + "slug": "adobe-livecycle-designer", + "name": "Adobe LiveCycle Designer", + "release_date": null, + "developers": [ + "Adobe" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1045967" + ], + "created_at": "2026-07-10T10:12:39.577401", + "updated_at": "2026-07-10T10:12:39.577401", + "url": "/v1/software/adobe-livecycle-designer" +} diff --git a/site/public/v1/software/adobe-media-player/index.json b/site/public/v1/software/adobe-media-player/index.json new file mode 100644 index 000000000000..740bcfd518fc --- /dev/null +++ b/site/public/v1/software/adobe-media-player/index.json @@ -0,0 +1,23 @@ +{ + "id": 200, + "slug": "adobe-media-player", + "name": "Adobe Media Player", + "release_date": null, + "developers": [ + "Adobe" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q360295" + ], + "created_at": "2026-07-10T10:12:39.578401", + "updated_at": "2026-07-10T10:12:39.578401", + "url": "/v1/software/adobe-media-player" +} diff --git a/site/public/v1/software/adobe-media-server/index.json b/site/public/v1/software/adobe-media-server/index.json new file mode 100644 index 000000000000..9e26a4674dc5 --- /dev/null +++ b/site/public/v1/software/adobe-media-server/index.json @@ -0,0 +1,23 @@ +{ + "id": 201, + "slug": "adobe-media-server", + "name": "Adobe Media Server", + "release_date": null, + "developers": [ + "Adobe" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2663740" + ], + "created_at": "2026-07-10T10:12:39.578401", + "updated_at": "2026-07-10T10:12:39.578401", + "url": "/v1/software/adobe-media-server" +} diff --git a/site/public/v1/software/adobe-muse/index.json b/site/public/v1/software/adobe-muse/index.json new file mode 100644 index 000000000000..5c75dad6355d --- /dev/null +++ b/site/public/v1/software/adobe-muse/index.json @@ -0,0 +1,28 @@ +{ + "id": 202, + "slug": "adobe-muse", + "name": "Adobe Muse", + "release_date": null, + "developers": [ + "Adobe" + ], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [ + "Adobe Flash", + "Adobe AIR", + "Apache Flex" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q360299" + ], + "created_at": "2026-07-10T10:12:39.578401", + "updated_at": "2026-07-10T10:12:39.578401", + "url": "/v1/software/adobe-muse" +} diff --git a/site/public/v1/software/adobe-onlocation/index.json b/site/public/v1/software/adobe-onlocation/index.json new file mode 100644 index 000000000000..948121358520 --- /dev/null +++ b/site/public/v1/software/adobe-onlocation/index.json @@ -0,0 +1,21 @@ +{ + "id": 203, + "slug": "adobe-onlocation", + "name": "Adobe OnLocation", + "release_date": null, + "developers": [ + "Adobe" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q769946" + ], + "created_at": "2026-07-10T10:12:39.578401", + "updated_at": "2026-07-10T10:12:39.578401", + "url": "/v1/software/adobe-onlocation" +} diff --git a/site/public/v1/software/adobe-ovation/index.json b/site/public/v1/software/adobe-ovation/index.json new file mode 100644 index 000000000000..a3e2aced0c6d --- /dev/null +++ b/site/public/v1/software/adobe-ovation/index.json @@ -0,0 +1,23 @@ +{ + "id": 204, + "slug": "adobe-ovation", + "name": "Adobe Ovation", + "release_date": null, + "developers": [ + "Adobe" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4683995" + ], + "created_at": "2026-07-10T10:12:39.579466", + "updated_at": "2026-07-10T10:12:39.579466", + "url": "/v1/software/adobe-ovation" +} diff --git a/site/public/v1/software/adobe-pagemaker/index.json b/site/public/v1/software/adobe-pagemaker/index.json new file mode 100644 index 000000000000..5236314a11da --- /dev/null +++ b/site/public/v1/software/adobe-pagemaker/index.json @@ -0,0 +1,24 @@ +{ + "id": 205, + "slug": "adobe-pagemaker", + "name": "Adobe PageMaker", + "release_date": null, + "developers": [ + "Aldus", + "Adobe" + ], + "publishers": [], + "operating_systems": [ + "Mac operating system" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q360355" + ], + "created_at": "2026-07-10T10:12:39.579466", + "updated_at": "2026-07-10T10:12:39.579466", + "url": "/v1/software/adobe-pagemaker" +} diff --git a/site/public/v1/software/adobe-pagemill-3-0/index.json b/site/public/v1/software/adobe-pagemill-3-0/index.json new file mode 100644 index 000000000000..9e746652c6c4 --- /dev/null +++ b/site/public/v1/software/adobe-pagemill-3-0/index.json @@ -0,0 +1,21 @@ +{ + "id": 206, + "slug": "adobe-pagemill-3-0", + "name": "Adobe PageMill 3.0", + "release_date": "1999-01-01", + "developers": [ + "Adobe" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q66088315" + ], + "created_at": "2026-07-10T10:12:39.579466", + "updated_at": "2026-07-10T10:12:39.579466", + "url": "/v1/software/adobe-pagemill-3-0" +} diff --git a/site/public/v1/software/adobe-pdf-print-engine/index.json b/site/public/v1/software/adobe-pdf-print-engine/index.json new file mode 100644 index 000000000000..3a49de015ac0 --- /dev/null +++ b/site/public/v1/software/adobe-pdf-print-engine/index.json @@ -0,0 +1,19 @@ +{ + "id": 207, + "slug": "adobe-pdf-print-engine", + "name": "Adobe PDF Print Engine", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q360302" + ], + "created_at": "2026-07-10T10:12:39.579466", + "updated_at": "2026-07-10T10:12:39.579466", + "url": "/v1/software/adobe-pdf-print-engine" +} diff --git a/site/public/v1/software/adobe-persuasion/index.json b/site/public/v1/software/adobe-persuasion/index.json new file mode 100644 index 000000000000..2f90eef17a8d --- /dev/null +++ b/site/public/v1/software/adobe-persuasion/index.json @@ -0,0 +1,24 @@ +{ + "id": 208, + "slug": "adobe-persuasion", + "name": "Adobe Persuasion", + "release_date": null, + "developers": [ + "Aldus", + "Adobe" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3780669" + ], + "created_at": "2026-07-10T10:12:39.580467", + "updated_at": "2026-07-10T10:12:39.580467", + "url": "/v1/software/adobe-persuasion" +} diff --git a/site/public/v1/software/adobe-photoshop-express/index.json b/site/public/v1/software/adobe-photoshop-express/index.json new file mode 100644 index 000000000000..f004e7626983 --- /dev/null +++ b/site/public/v1/software/adobe-photoshop-express/index.json @@ -0,0 +1,21 @@ +{ + "id": 209, + "slug": "adobe-photoshop-express", + "name": "Adobe Photoshop Express", + "release_date": null, + "developers": [ + "Adobe" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q360363" + ], + "created_at": "2026-07-10T10:12:39.580467", + "updated_at": "2026-07-10T10:12:39.580467", + "url": "/v1/software/adobe-photoshop-express" +} diff --git a/site/public/v1/software/adobe-pixel-bender/index.json b/site/public/v1/software/adobe-pixel-bender/index.json new file mode 100644 index 000000000000..a674d9c59270 --- /dev/null +++ b/site/public/v1/software/adobe-pixel-bender/index.json @@ -0,0 +1,21 @@ +{ + "id": 210, + "slug": "adobe-pixel-bender", + "name": "Adobe Pixel Bender", + "release_date": null, + "developers": [ + "Adobe" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4683998" + ], + "created_at": "2026-07-10T10:12:39.580467", + "updated_at": "2026-07-10T10:12:39.580467", + "url": "/v1/software/adobe-pixel-bender" +} diff --git a/site/public/v1/software/adobe-premiere-express/index.json b/site/public/v1/software/adobe-premiere-express/index.json new file mode 100644 index 000000000000..ddb72f6e2936 --- /dev/null +++ b/site/public/v1/software/adobe-premiere-express/index.json @@ -0,0 +1,21 @@ +{ + "id": 211, + "slug": "adobe-premiere-express", + "name": "Adobe Premiere Express", + "release_date": null, + "developers": [ + "Adobe" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4683999" + ], + "created_at": "2026-07-10T10:12:39.581497", + "updated_at": "2026-07-10T10:12:39.581497", + "url": "/v1/software/adobe-premiere-express" +} diff --git a/site/public/v1/software/adobe-presenter-video-express/index.json b/site/public/v1/software/adobe-presenter-video-express/index.json new file mode 100644 index 000000000000..b5997262493f --- /dev/null +++ b/site/public/v1/software/adobe-presenter-video-express/index.json @@ -0,0 +1,25 @@ +{ + "id": 212, + "slug": "adobe-presenter-video-express", + "name": "Adobe Presenter Video Express", + "release_date": null, + "developers": [ + "Adobe" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [ + "screencasting software" + ], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25000364" + ], + "created_at": "2026-07-10T10:12:39.581497", + "updated_at": "2026-07-10T10:12:39.581497", + "url": "/v1/software/adobe-presenter-video-express" +} diff --git a/site/public/v1/software/adobe-reader-1-0/index.json b/site/public/v1/software/adobe-reader-1-0/index.json new file mode 100644 index 000000000000..e8da6bef1f5a --- /dev/null +++ b/site/public/v1/software/adobe-reader-1-0/index.json @@ -0,0 +1,21 @@ +{ + "id": 213, + "slug": "adobe-reader-1-0", + "name": "Adobe Reader 1.0", + "release_date": "1993-06-01", + "developers": [ + "Adobe" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60690545" + ], + "created_at": "2026-07-10T10:12:39.581497", + "updated_at": "2026-07-10T10:12:39.581497", + "url": "/v1/software/adobe-reader-1-0" +} diff --git a/site/public/v1/software/adobe-reader-2-0/index.json b/site/public/v1/software/adobe-reader-2-0/index.json new file mode 100644 index 000000000000..953e7c28e41e --- /dev/null +++ b/site/public/v1/software/adobe-reader-2-0/index.json @@ -0,0 +1,26 @@ +{ + "id": 214, + "slug": "adobe-reader-2-0", + "name": "Adobe Reader 2.0", + "release_date": "1994-10-15", + "developers": [ + "Adobe" + ], + "publishers": [], + "operating_systems": [ + "Windows NT 4.0", + "Windows NT 3.5", + "Windows 95", + "Windows Server 2003" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q47450901" + ], + "created_at": "2026-07-10T10:12:39.581497", + "updated_at": "2026-07-10T10:12:39.581497", + "url": "/v1/software/adobe-reader-2-0" +} diff --git a/site/public/v1/software/adobe-reader-3-0/index.json b/site/public/v1/software/adobe-reader-3-0/index.json new file mode 100644 index 000000000000..cd48149d88b6 --- /dev/null +++ b/site/public/v1/software/adobe-reader-3-0/index.json @@ -0,0 +1,24 @@ +{ + "id": 215, + "slug": "adobe-reader-3-0", + "name": "Adobe Reader 3.0", + "release_date": "1997-05-30", + "developers": [ + "Adobe" + ], + "publishers": [], + "operating_systems": [ + "Windows NT 3.5", + "Windows 95" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q47450909" + ], + "created_at": "2026-07-10T10:12:39.582402", + "updated_at": "2026-07-10T10:12:39.582402", + "url": "/v1/software/adobe-reader-3-0" +} diff --git a/site/public/v1/software/adobe-reader-4-0/index.json b/site/public/v1/software/adobe-reader-4-0/index.json new file mode 100644 index 000000000000..da3a4317301b --- /dev/null +++ b/site/public/v1/software/adobe-reader-4-0/index.json @@ -0,0 +1,24 @@ +{ + "id": 216, + "slug": "adobe-reader-4-0", + "name": "Adobe Reader 4.0", + "release_date": "1999-03-31", + "developers": [ + "Adobe" + ], + "publishers": [], + "operating_systems": [ + "Windows NT 3.5", + "Windows 95" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q47450950" + ], + "created_at": "2026-07-10T10:12:39.582402", + "updated_at": "2026-07-10T10:12:39.582402", + "url": "/v1/software/adobe-reader-4-0" +} diff --git a/site/public/v1/software/adobe-reader-6-0/index.json b/site/public/v1/software/adobe-reader-6-0/index.json new file mode 100644 index 000000000000..ae3e53e990da --- /dev/null +++ b/site/public/v1/software/adobe-reader-6-0/index.json @@ -0,0 +1,21 @@ +{ + "id": 217, + "slug": "adobe-reader-6-0", + "name": "Adobe Reader 6.0", + "release_date": "2003-11-02", + "developers": [ + "Adobe" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q47450957" + ], + "created_at": "2026-07-10T10:12:39.582402", + "updated_at": "2026-07-10T10:12:39.582402", + "url": "/v1/software/adobe-reader-6-0" +} diff --git a/site/public/v1/software/adobe-reader-7-0/index.json b/site/public/v1/software/adobe-reader-7-0/index.json new file mode 100644 index 000000000000..6d4772655b30 --- /dev/null +++ b/site/public/v1/software/adobe-reader-7-0/index.json @@ -0,0 +1,21 @@ +{ + "id": 218, + "slug": "adobe-reader-7-0", + "name": "Adobe Reader 7.0", + "release_date": "2004-12-13", + "developers": [ + "Adobe" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q47450988" + ], + "created_at": "2026-07-10T10:12:39.583476", + "updated_at": "2026-07-10T10:12:39.583476", + "url": "/v1/software/adobe-reader-7-0" +} diff --git a/site/public/v1/software/adobe-reader-8-0/index.json b/site/public/v1/software/adobe-reader-8-0/index.json new file mode 100644 index 000000000000..4b320ea74a36 --- /dev/null +++ b/site/public/v1/software/adobe-reader-8-0/index.json @@ -0,0 +1,23 @@ +{ + "id": 219, + "slug": "adobe-reader-8-0", + "name": "Adobe Reader 8.0", + "release_date": "2006-10-26", + "developers": [ + "Adobe" + ], + "publishers": [], + "operating_systems": [ + "Windows 7" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60690675" + ], + "created_at": "2026-07-10T10:12:39.583476", + "updated_at": "2026-07-10T10:12:39.583476", + "url": "/v1/software/adobe-reader-8-0" +} diff --git a/site/public/v1/software/adobe-reader-9-0/index.json b/site/public/v1/software/adobe-reader-9-0/index.json new file mode 100644 index 000000000000..cdc5c77851e8 --- /dev/null +++ b/site/public/v1/software/adobe-reader-9-0/index.json @@ -0,0 +1,23 @@ +{ + "id": 220, + "slug": "adobe-reader-9-0", + "name": "Adobe Reader 9.0", + "release_date": "2008-12-06", + "developers": [ + "Adobe" + ], + "publishers": [], + "operating_systems": [ + "Windows 7" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60690780" + ], + "created_at": "2026-07-10T10:12:39.583476", + "updated_at": "2026-07-10T10:12:39.583476", + "url": "/v1/software/adobe-reader-9-0" +} diff --git a/site/public/v1/software/adobe-reader-version-9-2/index.json b/site/public/v1/software/adobe-reader-version-9-2/index.json new file mode 100644 index 000000000000..95ef5f775683 --- /dev/null +++ b/site/public/v1/software/adobe-reader-version-9-2/index.json @@ -0,0 +1,24 @@ +{ + "id": 221, + "slug": "adobe-reader-version-9-2", + "name": "Adobe Reader, version 9.2", + "release_date": "2009-10-03", + "developers": [ + "Adobe" + ], + "publishers": [], + "operating_systems": [ + "Windows 95", + "Windows 7" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60521777" + ], + "created_at": "2026-07-10T10:12:39.583476", + "updated_at": "2026-07-10T10:12:39.583476", + "url": "/v1/software/adobe-reader-version-9-2" +} diff --git a/site/public/v1/software/adobe-reader-x/index.json b/site/public/v1/software/adobe-reader-x/index.json new file mode 100644 index 000000000000..d60b904d0c71 --- /dev/null +++ b/site/public/v1/software/adobe-reader-x/index.json @@ -0,0 +1,23 @@ +{ + "id": 222, + "slug": "adobe-reader-x", + "name": "Adobe Reader X", + "release_date": "2010-11-18", + "developers": [ + "Adobe" + ], + "publishers": [], + "operating_systems": [ + "Windows 7" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60690886" + ], + "created_at": "2026-07-10T10:12:39.583476", + "updated_at": "2026-07-10T10:12:39.583476", + "url": "/v1/software/adobe-reader-x" +} diff --git a/site/public/v1/software/adobe-reader-xi/index.json b/site/public/v1/software/adobe-reader-xi/index.json new file mode 100644 index 000000000000..88f74f330e39 --- /dev/null +++ b/site/public/v1/software/adobe-reader-xi/index.json @@ -0,0 +1,23 @@ +{ + "id": 223, + "slug": "adobe-reader-xi", + "name": "Adobe Reader XI", + "release_date": "2012-10-15", + "developers": [ + "Adobe" + ], + "publishers": [], + "operating_systems": [ + "Windows 7" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60691254" + ], + "created_at": "2026-07-10T10:12:39.584486", + "updated_at": "2026-07-10T10:12:39.584486", + "url": "/v1/software/adobe-reader-xi" +} diff --git a/site/public/v1/software/adobe-revel/index.json b/site/public/v1/software/adobe-revel/index.json new file mode 100644 index 000000000000..51c733e76ba7 --- /dev/null +++ b/site/public/v1/software/adobe-revel/index.json @@ -0,0 +1,19 @@ +{ + "id": 224, + "slug": "adobe-revel", + "name": "Adobe Revel", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109363504" + ], + "created_at": "2026-07-10T10:12:39.584486", + "updated_at": "2026-07-10T10:12:39.584486", + "url": "/v1/software/adobe-revel" +} diff --git a/site/public/v1/software/adobe-robohelp/index.json b/site/public/v1/software/adobe-robohelp/index.json new file mode 100644 index 000000000000..0597c795a0cf --- /dev/null +++ b/site/public/v1/software/adobe-robohelp/index.json @@ -0,0 +1,21 @@ +{ + "id": 225, + "slug": "adobe-robohelp", + "name": "Adobe RoboHelp", + "release_date": null, + "developers": [ + "Adobe" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4684006" + ], + "created_at": "2026-07-10T10:12:39.584486", + "updated_at": "2026-07-10T10:12:39.585469", + "url": "/v1/software/adobe-robohelp" +} diff --git a/site/public/v1/software/adobe-shockwave-player/index.json b/site/public/v1/software/adobe-shockwave-player/index.json new file mode 100644 index 000000000000..7d824194f712 --- /dev/null +++ b/site/public/v1/software/adobe-shockwave-player/index.json @@ -0,0 +1,26 @@ +{ + "id": 226, + "slug": "adobe-shockwave-player", + "name": "Adobe Shockwave Player", + "release_date": null, + "developers": [ + "Adobe" + ], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28955963" + ], + "created_at": "2026-07-10T10:12:39.585469", + "updated_at": "2026-07-10T10:12:39.585469", + "url": "/v1/software/adobe-shockwave-player" +} diff --git a/site/public/v1/software/adobe-source-libraries/index.json b/site/public/v1/software/adobe-source-libraries/index.json new file mode 100644 index 000000000000..e5845e4c640e --- /dev/null +++ b/site/public/v1/software/adobe-source-libraries/index.json @@ -0,0 +1,21 @@ +{ + "id": 227, + "slug": "adobe-source-libraries", + "name": "Adobe Source Libraries", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2824688" + ], + "created_at": "2026-07-10T10:12:39.585469", + "updated_at": "2026-07-10T10:12:39.585469", + "url": "/v1/software/adobe-source-libraries" +} diff --git a/site/public/v1/software/adobe-spark-video/index.json b/site/public/v1/software/adobe-spark-video/index.json new file mode 100644 index 000000000000..a7345046527d --- /dev/null +++ b/site/public/v1/software/adobe-spark-video/index.json @@ -0,0 +1,21 @@ +{ + "id": 228, + "slug": "adobe-spark-video", + "name": "Adobe Spark Video", + "release_date": "2014-05-08", + "developers": [ + "Adobe" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25005365" + ], + "created_at": "2026-07-10T10:12:39.585469", + "updated_at": "2026-07-10T10:12:39.585469", + "url": "/v1/software/adobe-spark-video" +} diff --git a/site/public/v1/software/adobe-stock/index.json b/site/public/v1/software/adobe-stock/index.json new file mode 100644 index 000000000000..7ccded4985eb --- /dev/null +++ b/site/public/v1/software/adobe-stock/index.json @@ -0,0 +1,21 @@ +{ + "id": 229, + "slug": "adobe-stock", + "name": "Adobe Stock", + "release_date": null, + "developers": [ + "Adobe" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5977430" + ], + "created_at": "2026-07-10T10:12:39.586459", + "updated_at": "2026-07-10T10:12:39.586459", + "url": "/v1/software/adobe-stock" +} diff --git a/site/public/v1/software/adobe-streamline/index.json b/site/public/v1/software/adobe-streamline/index.json new file mode 100644 index 000000000000..58be004184d5 --- /dev/null +++ b/site/public/v1/software/adobe-streamline/index.json @@ -0,0 +1,21 @@ +{ + "id": 230, + "slug": "adobe-streamline", + "name": "Adobe Streamline", + "release_date": null, + "developers": [ + "Adobe" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q360432" + ], + "created_at": "2026-07-10T10:12:39.586459", + "updated_at": "2026-07-10T10:12:39.586459", + "url": "/v1/software/adobe-streamline" +} diff --git a/site/public/v1/software/adobe-type-manager-version-3-02/index.json b/site/public/v1/software/adobe-type-manager-version-3-02/index.json new file mode 100644 index 000000000000..ba12af7b2a41 --- /dev/null +++ b/site/public/v1/software/adobe-type-manager-version-3-02/index.json @@ -0,0 +1,21 @@ +{ + "id": 231, + "slug": "adobe-type-manager-version-3-02", + "name": "Adobe Type Manager, version 3.02", + "release_date": "1994-01-01", + "developers": [ + "Adobe" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q66763429" + ], + "created_at": "2026-07-10T10:12:39.586459", + "updated_at": "2026-07-10T10:12:39.587464", + "url": "/v1/software/adobe-type-manager-version-3-02" +} diff --git a/site/public/v1/software/adobe-version-cue/index.json b/site/public/v1/software/adobe-version-cue/index.json new file mode 100644 index 000000000000..60fb7db09b82 --- /dev/null +++ b/site/public/v1/software/adobe-version-cue/index.json @@ -0,0 +1,21 @@ +{ + "id": 232, + "slug": "adobe-version-cue", + "name": "Adobe Version Cue", + "release_date": null, + "developers": [ + "Adobe" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2663056" + ], + "created_at": "2026-07-10T10:12:39.587464", + "updated_at": "2026-07-10T10:12:39.587464", + "url": "/v1/software/adobe-version-cue" +} diff --git a/site/public/v1/software/adobe-voco/index.json b/site/public/v1/software/adobe-voco/index.json new file mode 100644 index 000000000000..a9e0b88d0f35 --- /dev/null +++ b/site/public/v1/software/adobe-voco/index.json @@ -0,0 +1,23 @@ +{ + "id": 233, + "slug": "adobe-voco", + "name": "Adobe VoCo", + "release_date": null, + "developers": [ + "Adobe" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q27926176" + ], + "created_at": "2026-07-10T10:12:39.587464", + "updated_at": "2026-07-10T10:12:39.587464", + "url": "/v1/software/adobe-voco" +} diff --git a/site/public/v1/software/adrift/index.json b/site/public/v1/software/adrift/index.json new file mode 100644 index 000000000000..85a560d1195f --- /dev/null +++ b/site/public/v1/software/adrift/index.json @@ -0,0 +1,23 @@ +{ + "id": 234, + "slug": "adrift", + "name": "ADRIFT", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Visual Basic" + ], + "licenses": [ + "donationware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3600603" + ], + "created_at": "2026-07-10T10:12:39.587464", + "updated_at": "2026-07-10T10:12:39.587464", + "url": "/v1/software/adrift" +} diff --git a/site/public/v1/software/adscockpit/index.json b/site/public/v1/software/adscockpit/index.json new file mode 100644 index 000000000000..4904a562fe3c --- /dev/null +++ b/site/public/v1/software/adscockpit/index.json @@ -0,0 +1,19 @@ +{ + "id": 235, + "slug": "adscockpit", + "name": "AdsCockpit", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138873700" + ], + "created_at": "2026-07-10T10:12:39.588461", + "updated_at": "2026-07-10T10:12:39.588461", + "url": "/v1/software/adscockpit" +} diff --git a/site/public/v1/software/advance-steel/index.json b/site/public/v1/software/advance-steel/index.json new file mode 100644 index 000000000000..89dbf973d1ff --- /dev/null +++ b/site/public/v1/software/advance-steel/index.json @@ -0,0 +1,21 @@ +{ + "id": 236, + "slug": "advance-steel", + "name": "Advance Steel", + "release_date": null, + "developers": [ + "GRAITEC" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4686079" + ], + "created_at": "2026-07-10T10:12:39.588461", + "updated_at": "2026-07-10T10:12:39.588461", + "url": "/v1/software/advance-steel" +} diff --git a/site/public/v1/software/advanced-automation-functions/index.json b/site/public/v1/software/advanced-automation-functions/index.json new file mode 100644 index 000000000000..d3a2fbaa7f5d --- /dev/null +++ b/site/public/v1/software/advanced-automation-functions/index.json @@ -0,0 +1,19 @@ +{ + "id": 237, + "slug": "advanced-automation-functions", + "name": "Advanced automation functions", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28136177" + ], + "created_at": "2026-07-10T10:12:39.588461", + "updated_at": "2026-07-10T10:12:39.588461", + "url": "/v1/software/advanced-automation-functions" +} diff --git a/site/public/v1/software/advanced-design-system/index.json b/site/public/v1/software/advanced-design-system/index.json new file mode 100644 index 000000000000..ab0afafe2ef6 --- /dev/null +++ b/site/public/v1/software/advanced-design-system/index.json @@ -0,0 +1,19 @@ +{ + "id": 238, + "slug": "advanced-design-system", + "name": "Advanced Design System", + "release_date": "1985-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q302392" + ], + "created_at": "2026-07-10T10:12:39.589465", + "updated_at": "2026-07-10T10:12:39.589465", + "url": "/v1/software/advanced-design-system" +} diff --git a/site/public/v1/software/advanced-dungeons-dragons-cd-rom-core-rules/index.json b/site/public/v1/software/advanced-dungeons-dragons-cd-rom-core-rules/index.json new file mode 100644 index 000000000000..8288a8107923 --- /dev/null +++ b/site/public/v1/software/advanced-dungeons-dragons-cd-rom-core-rules/index.json @@ -0,0 +1,21 @@ +{ + "id": 239, + "slug": "advanced-dungeons-dragons-cd-rom-core-rules", + "name": "Advanced Dungeons & Dragons CD-ROM Core Rules", + "release_date": "1996-01-01", + "developers": [ + "TSR" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16245054" + ], + "created_at": "2026-07-10T10:12:39.589465", + "updated_at": "2026-07-10T10:12:39.589465", + "url": "/v1/software/advanced-dungeons-dragons-cd-rom-core-rules" +} diff --git a/site/public/v1/software/advanced-manufacturing-software/index.json b/site/public/v1/software/advanced-manufacturing-software/index.json new file mode 100644 index 000000000000..bc07087c6ef0 --- /dev/null +++ b/site/public/v1/software/advanced-manufacturing-software/index.json @@ -0,0 +1,21 @@ +{ + "id": 240, + "slug": "advanced-manufacturing-software", + "name": "Advanced Manufacturing Software", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4686230" + ], + "created_at": "2026-07-10T10:12:39.589465", + "updated_at": "2026-07-10T10:12:39.589465", + "url": "/v1/software/advanced-manufacturing-software" +} diff --git a/site/public/v1/software/advanced-multi-mission-operations-system/index.json b/site/public/v1/software/advanced-multi-mission-operations-system/index.json new file mode 100644 index 000000000000..7881d28a6655 --- /dev/null +++ b/site/public/v1/software/advanced-multi-mission-operations-system/index.json @@ -0,0 +1,19 @@ +{ + "id": 241, + "slug": "advanced-multi-mission-operations-system", + "name": "Advanced Multi-Mission Operations System", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4686240" + ], + "created_at": "2026-07-10T10:12:39.590456", + "updated_at": "2026-07-10T10:12:39.590456", + "url": "/v1/software/advanced-multi-mission-operations-system" +} diff --git a/site/public/v1/software/advanced-renamer/index.json b/site/public/v1/software/advanced-renamer/index.json new file mode 100644 index 000000000000..904828e557c8 --- /dev/null +++ b/site/public/v1/software/advanced-renamer/index.json @@ -0,0 +1,23 @@ +{ + "id": 242, + "slug": "advanced-renamer", + "name": "Advanced Renamer", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Windows 7" + ], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17509903" + ], + "created_at": "2026-07-10T10:12:39.590456", + "updated_at": "2026-07-10T10:12:39.590456", + "url": "/v1/software/advanced-renamer" +} diff --git a/site/public/v1/software/advanced-resource-connector/index.json b/site/public/v1/software/advanced-resource-connector/index.json new file mode 100644 index 000000000000..46d3b7be60de --- /dev/null +++ b/site/public/v1/software/advanced-resource-connector/index.json @@ -0,0 +1,23 @@ +{ + "id": 243, + "slug": "advanced-resource-connector", + "name": "Advanced Resource Connector", + "release_date": null, + "developers": [ + "NorduGrid" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Apache License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q20089046" + ], + "created_at": "2026-07-10T10:12:39.590456", + "updated_at": "2026-07-10T10:12:39.590456", + "url": "/v1/software/advanced-resource-connector" +} diff --git a/site/public/v1/software/advanced-systemcare/index.json b/site/public/v1/software/advanced-systemcare/index.json new file mode 100644 index 000000000000..43f21f18a9fb --- /dev/null +++ b/site/public/v1/software/advanced-systemcare/index.json @@ -0,0 +1,23 @@ +{ + "id": 244, + "slug": "advanced-systemcare", + "name": "Advanced SystemCare", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [ + "Delphi" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2648230" + ], + "created_at": "2026-07-10T10:12:39.590456", + "updated_at": "2026-07-10T10:12:39.590456", + "url": "/v1/software/advanced-systemcare" +} diff --git a/site/public/v1/software/advanced-systems-analysis-program/index.json b/site/public/v1/software/advanced-systems-analysis-program/index.json new file mode 100644 index 000000000000..5be482b3ff71 --- /dev/null +++ b/site/public/v1/software/advanced-systems-analysis-program/index.json @@ -0,0 +1,19 @@ +{ + "id": 245, + "slug": "advanced-systems-analysis-program", + "name": "Advanced Systems Analysis Program", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4686284" + ], + "created_at": "2026-07-10T10:12:39.591446", + "updated_at": "2026-07-10T10:12:39.591446", + "url": "/v1/software/advanced-systems-analysis-program" +} diff --git a/site/public/v1/software/advanced-weather-interactive-processing-system/index.json b/site/public/v1/software/advanced-weather-interactive-processing-system/index.json new file mode 100644 index 000000000000..d118b3981610 --- /dev/null +++ b/site/public/v1/software/advanced-weather-interactive-processing-system/index.json @@ -0,0 +1,22 @@ +{ + "id": 246, + "slug": "advanced-weather-interactive-processing-system", + "name": "Advanced Weather Interactive Processing System", + "release_date": null, + "developers": [ + "Northrop Grumman Corporation", + "Raytheon" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4686330" + ], + "created_at": "2026-07-10T10:12:39.591446", + "updated_at": "2026-07-10T10:12:39.591446", + "url": "/v1/software/advanced-weather-interactive-processing-system" +} diff --git a/site/public/v1/software/advantage-database-server/index.json b/site/public/v1/software/advantage-database-server/index.json new file mode 100644 index 000000000000..6eb0bd23cbdd --- /dev/null +++ b/site/public/v1/software/advantage-database-server/index.json @@ -0,0 +1,21 @@ +{ + "id": 247, + "slug": "advantage-database-server", + "name": "Advantage Database Server", + "release_date": null, + "developers": [ + "Sybase" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4686410" + ], + "created_at": "2026-07-10T10:12:39.591446", + "updated_at": "2026-07-10T10:12:39.591446", + "url": "/v1/software/advantage-database-server" +} diff --git a/site/public/v1/software/advantage-framework/index.json b/site/public/v1/software/advantage-framework/index.json new file mode 100644 index 000000000000..c07666cf845f --- /dev/null +++ b/site/public/v1/software/advantage-framework/index.json @@ -0,0 +1,19 @@ +{ + "id": 248, + "slug": "advantage-framework", + "name": "ADvantage Framework", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4651252" + ], + "created_at": "2026-07-10T10:12:39.592477", + "updated_at": "2026-07-10T10:12:39.592477", + "url": "/v1/software/advantage-framework" +} diff --git a/site/public/v1/software/advene/index.json b/site/public/v1/software/advene/index.json new file mode 100644 index 000000000000..50d76c849e30 --- /dev/null +++ b/site/public/v1/software/advene/index.json @@ -0,0 +1,28 @@ +{ + "id": 249, + "slug": "advene", + "name": "Advene", + "release_date": null, + "developers": [ + "Olivier Aubert" + ], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [ + "Python" + ], + "licenses": [ + "GNU General Public License, version 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105848625" + ], + "created_at": "2026-07-10T10:12:39.592477", + "updated_at": "2026-07-10T10:12:39.592477", + "url": "/v1/software/advene" +} diff --git a/site/public/v1/software/adventure-game-studio/index.json b/site/public/v1/software/adventure-game-studio/index.json new file mode 100644 index 000000000000..f498600b8114 --- /dev/null +++ b/site/public/v1/software/adventure-game-studio/index.json @@ -0,0 +1,25 @@ +{ + "id": 250, + "slug": "adventure-game-studio", + "name": "Adventure Game Studio", + "release_date": null, + "developers": [ + "Chris Jones" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "Artistic License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q379950" + ], + "created_at": "2026-07-10T10:12:39.592477", + "updated_at": "2026-07-10T10:12:39.592477", + "url": "/v1/software/adventure-game-studio" +} diff --git a/site/public/v1/software/adventure-game-toolkit/index.json b/site/public/v1/software/adventure-game-toolkit/index.json new file mode 100644 index 000000000000..f01aa216b025 --- /dev/null +++ b/site/public/v1/software/adventure-game-toolkit/index.json @@ -0,0 +1,19 @@ +{ + "id": 251, + "slug": "adventure-game-toolkit", + "name": "Adventure Game Toolkit", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4686503" + ], + "created_at": "2026-07-10T10:12:39.592477", + "updated_at": "2026-07-10T10:12:39.592477", + "url": "/v1/software/adventure-game-toolkit" +} diff --git a/site/public/v1/software/adwcleaner/index.json b/site/public/v1/software/adwcleaner/index.json new file mode 100644 index 000000000000..ed048bb50c9e --- /dev/null +++ b/site/public/v1/software/adwcleaner/index.json @@ -0,0 +1,21 @@ +{ + "id": 252, + "slug": "adwcleaner", + "name": "AdwCleaner", + "release_date": null, + "developers": [ + "Malwarebytes" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q19952796" + ], + "created_at": "2026-07-10T10:12:39.593462", + "updated_at": "2026-07-10T10:12:39.593462", + "url": "/v1/software/adwcleaner" +} diff --git a/site/public/v1/software/aelfred/index.json b/site/public/v1/software/aelfred/index.json new file mode 100644 index 000000000000..0e6531c4be73 --- /dev/null +++ b/site/public/v1/software/aelfred/index.json @@ -0,0 +1,19 @@ +{ + "id": 253, + "slug": "aelfred", + "name": "Aelfred", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084376" + ], + "created_at": "2026-07-10T10:12:39.593462", + "updated_at": "2026-07-10T10:12:39.593462", + "url": "/v1/software/aelfred" +} diff --git a/site/public/v1/software/aeo-audit-pro/index.json b/site/public/v1/software/aeo-audit-pro/index.json new file mode 100644 index 000000000000..ac8cc592191e --- /dev/null +++ b/site/public/v1/software/aeo-audit-pro/index.json @@ -0,0 +1,21 @@ +{ + "id": 254, + "slug": "aeo-audit-pro", + "name": "AEO Audit Pro", + "release_date": null, + "developers": [ + "Nino Herenda" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140136146" + ], + "created_at": "2026-07-10T10:12:39.593462", + "updated_at": "2026-07-10T10:12:39.593462", + "url": "/v1/software/aeo-audit-pro" +} diff --git a/site/public/v1/software/aeon-timeline/index.json b/site/public/v1/software/aeon-timeline/index.json new file mode 100644 index 000000000000..5f9fe2a661ac --- /dev/null +++ b/site/public/v1/software/aeon-timeline/index.json @@ -0,0 +1,19 @@ +{ + "id": 255, + "slug": "aeon-timeline", + "name": "Aeon Timeline", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084377" + ], + "created_at": "2026-07-10T10:12:39.593462", + "updated_at": "2026-07-10T10:12:39.593462", + "url": "/v1/software/aeon-timeline" +} diff --git a/site/public/v1/software/aeqi-software/index.json b/site/public/v1/software/aeqi-software/index.json new file mode 100644 index 000000000000..6f0e086899ed --- /dev/null +++ b/site/public/v1/software/aeqi-software/index.json @@ -0,0 +1,25 @@ +{ + "id": 256, + "slug": "aeqi-software", + "name": "aeqi (software)", + "release_date": null, + "developers": [ + "aeqi" + ], + "publishers": [], + "operating_systems": [ + "macOS" + ], + "programming_languages": [ + "TypeScript" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139066263" + ], + "created_at": "2026-07-10T10:12:39.594580", + "updated_at": "2026-07-10T10:12:39.594580", + "url": "/v1/software/aeqi-software" +} diff --git a/site/public/v1/software/aerogear/index.json b/site/public/v1/software/aerogear/index.json new file mode 100644 index 000000000000..f70a7378abb6 --- /dev/null +++ b/site/public/v1/software/aerogear/index.json @@ -0,0 +1,19 @@ +{ + "id": 257, + "slug": "aerogear", + "name": "AeroGear", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q24884339" + ], + "created_at": "2026-07-10T10:12:39.594580", + "updated_at": "2026-07-10T10:12:39.594580", + "url": "/v1/software/aerogear" +} diff --git a/site/public/v1/software/aerospike-database-server/index.json b/site/public/v1/software/aerospike-database-server/index.json new file mode 100644 index 000000000000..cde5d789ab43 --- /dev/null +++ b/site/public/v1/software/aerospike-database-server/index.json @@ -0,0 +1,19 @@ +{ + "id": 258, + "slug": "aerospike-database-server", + "name": "Aerospike Database Server", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28941605" + ], + "created_at": "2026-07-10T10:12:39.595470", + "updated_at": "2026-07-10T10:12:39.595470", + "url": "/v1/software/aerospike-database-server" +} diff --git a/site/public/v1/software/aeskulap/index.json b/site/public/v1/software/aeskulap/index.json new file mode 100644 index 000000000000..33509b4ac59b --- /dev/null +++ b/site/public/v1/software/aeskulap/index.json @@ -0,0 +1,19 @@ +{ + "id": 259, + "slug": "aeskulap", + "name": "aeskulap", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q29364768" + ], + "created_at": "2026-07-10T10:12:39.595470", + "updated_at": "2026-07-10T10:12:39.595470", + "url": "/v1/software/aeskulap" +} diff --git a/site/public/v1/software/aetherpal/index.json b/site/public/v1/software/aetherpal/index.json new file mode 100644 index 000000000000..81a8a77663a8 --- /dev/null +++ b/site/public/v1/software/aetherpal/index.json @@ -0,0 +1,19 @@ +{ + "id": 260, + "slug": "aetherpal", + "name": "AetherPal", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4688676" + ], + "created_at": "2026-07-10T10:12:39.595470", + "updated_at": "2026-07-10T10:12:39.595470", + "url": "/v1/software/aetherpal" +} diff --git a/site/public/v1/software/aewm/index.json b/site/public/v1/software/aewm/index.json new file mode 100644 index 000000000000..44687b7c677f --- /dev/null +++ b/site/public/v1/software/aewm/index.json @@ -0,0 +1,19 @@ +{ + "id": 261, + "slug": "aewm", + "name": "aewm++", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065313" + ], + "created_at": "2026-07-10T10:12:39.595470", + "updated_at": "2026-07-10T10:12:39.595470", + "url": "/v1/software/aewm" +} diff --git a/site/public/v1/software/afcaa-revic/index.json b/site/public/v1/software/afcaa-revic/index.json new file mode 100644 index 000000000000..b7ab9e971faf --- /dev/null +++ b/site/public/v1/software/afcaa-revic/index.json @@ -0,0 +1,21 @@ +{ + "id": 262, + "slug": "afcaa-revic", + "name": "AFCAA REVIC", + "release_date": null, + "developers": [ + "Air Force Cost Analysis Agency" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4651425" + ], + "created_at": "2026-07-10T10:12:39.596471", + "updated_at": "2026-07-10T10:12:39.596471", + "url": "/v1/software/afcaa-revic" +} diff --git a/site/public/v1/software/affidario/index.json b/site/public/v1/software/affidario/index.json new file mode 100644 index 000000000000..953d6a8767f7 --- /dev/null +++ b/site/public/v1/software/affidario/index.json @@ -0,0 +1,21 @@ +{ + "id": 263, + "slug": "affidario", + "name": "Affidario", + "release_date": null, + "developers": [ + "Exssa" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139541157" + ], + "created_at": "2026-07-10T10:12:39.596471", + "updated_at": "2026-07-10T10:12:39.596471", + "url": "/v1/software/affidario" +} diff --git a/site/public/v1/software/affinity-photo/index.json b/site/public/v1/software/affinity-photo/index.json new file mode 100644 index 000000000000..3ab7b3de57f2 --- /dev/null +++ b/site/public/v1/software/affinity-photo/index.json @@ -0,0 +1,19 @@ +{ + "id": 264, + "slug": "affinity-photo", + "name": "Affinity Photo", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q23302620" + ], + "created_at": "2026-07-10T10:12:39.597473", + "updated_at": "2026-07-10T10:12:39.597473", + "url": "/v1/software/affinity-photo" +} diff --git a/site/public/v1/software/affinity/index.json b/site/public/v1/software/affinity/index.json new file mode 100644 index 000000000000..e54f109dedd6 --- /dev/null +++ b/site/public/v1/software/affinity/index.json @@ -0,0 +1,24 @@ +{ + "id": 265, + "slug": "affinity", + "name": "Affinity", + "release_date": "2025-01-01", + "developers": [ + "Canva" + ], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136679398" + ], + "created_at": "2026-07-10T10:12:39.597473", + "updated_at": "2026-07-10T10:12:39.597473", + "url": "/v1/software/affinity" +} diff --git a/site/public/v1/software/affymetrix-genechip-operating-software/index.json b/site/public/v1/software/affymetrix-genechip-operating-software/index.json new file mode 100644 index 000000000000..5cb540959a19 --- /dev/null +++ b/site/public/v1/software/affymetrix-genechip-operating-software/index.json @@ -0,0 +1,21 @@ +{ + "id": 266, + "slug": "affymetrix-genechip-operating-software", + "name": "Affymetrix GeneChip Operating Software", + "release_date": null, + "developers": [ + "Affymetrix" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4689043" + ], + "created_at": "2026-07-10T10:12:39.597473", + "updated_at": "2026-07-10T10:12:39.597473", + "url": "/v1/software/affymetrix-genechip-operating-software" +} diff --git a/site/public/v1/software/afloat/index.json b/site/public/v1/software/afloat/index.json new file mode 100644 index 000000000000..8439ee6fab70 --- /dev/null +++ b/site/public/v1/software/afloat/index.json @@ -0,0 +1,19 @@ +{ + "id": 267, + "slug": "afloat", + "name": "Afloat", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084378" + ], + "created_at": "2026-07-10T10:12:39.597473", + "updated_at": "2026-07-10T10:12:39.597473", + "url": "/v1/software/afloat" +} diff --git a/site/public/v1/software/afrinolly/index.json b/site/public/v1/software/afrinolly/index.json new file mode 100644 index 000000000000..c504657d0eef --- /dev/null +++ b/site/public/v1/software/afrinolly/index.json @@ -0,0 +1,19 @@ +{ + "id": 268, + "slug": "afrinolly", + "name": "Afrinolly", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16927594" + ], + "created_at": "2026-07-10T10:12:39.598472", + "updated_at": "2026-07-10T10:12:39.598472", + "url": "/v1/software/afrinolly" +} diff --git a/site/public/v1/software/afrivid-studio/index.json b/site/public/v1/software/afrivid-studio/index.json new file mode 100644 index 000000000000..40de804c49a3 --- /dev/null +++ b/site/public/v1/software/afrivid-studio/index.json @@ -0,0 +1,21 @@ +{ + "id": 269, + "slug": "afrivid-studio", + "name": "Afrivid Studio", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "web application" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140194899" + ], + "created_at": "2026-07-10T10:12:39.598472", + "updated_at": "2026-07-10T10:12:39.598472", + "url": "/v1/software/afrivid-studio" +} diff --git a/site/public/v1/software/agantty/index.json b/site/public/v1/software/agantty/index.json new file mode 100644 index 000000000000..af50af35403b --- /dev/null +++ b/site/public/v1/software/agantty/index.json @@ -0,0 +1,19 @@ +{ + "id": 270, + "slug": "agantty", + "name": "Agantty", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q24964685" + ], + "created_at": "2026-07-10T10:12:39.598472", + "updated_at": "2026-07-10T10:12:39.598472", + "url": "/v1/software/agantty" +} diff --git a/site/public/v1/software/age/index.json b/site/public/v1/software/age/index.json new file mode 100644 index 000000000000..06568a7b5834 --- /dev/null +++ b/site/public/v1/software/age/index.json @@ -0,0 +1,26 @@ +{ + "id": 271, + "slug": "age", + "name": "age", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Unix-like operating system", + "Microsoft Windows" + ], + "programming_languages": [ + "Go" + ], + "licenses": [ + "3-clause BSD License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108451484" + ], + "created_at": "2026-07-10T10:12:39.599580", + "updated_at": "2026-07-10T10:12:39.599580", + "url": "/v1/software/age" +} diff --git a/site/public/v1/software/agency-os/index.json b/site/public/v1/software/agency-os/index.json new file mode 100644 index 000000000000..1b2defce4d44 --- /dev/null +++ b/site/public/v1/software/agency-os/index.json @@ -0,0 +1,25 @@ +{ + "id": 272, + "slug": "agency-os", + "name": "agency-os", + "release_date": null, + "developers": [ + "AutomateLab" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Python" + ], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139962059" + ], + "created_at": "2026-07-10T10:12:39.599580", + "updated_at": "2026-07-10T10:12:39.599580", + "url": "/v1/software/agency-os" +} diff --git a/site/public/v1/software/agent-attribution-practice-architectural-decision-records-and-four-business-ai-quadrants-o/index.json b/site/public/v1/software/agent-attribution-practice-architectural-decision-records-and-four-business-ai-quadrants-o/index.json new file mode 100644 index 000000000000..9e1caebf69ef --- /dev/null +++ b/site/public/v1/software/agent-attribution-practice-architectural-decision-records-and-four-business-ai-quadrants-o/index.json @@ -0,0 +1,23 @@ +{ + "id": 273, + "slug": "agent-attribution-practice-architectural-decision-records-and-four-business-ai-quadrants-o", + "name": "Agent Attribution Practice: Architectural Decision Records and Four Business AI Quadrants on Accountability Distribution in Autonomous AI Agents", + "release_date": "2026-04-19", + "developers": [ + "Tatsuya Shimomoto" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140090188" + ], + "created_at": "2026-07-10T10:12:39.599580", + "updated_at": "2026-07-10T10:12:39.599580", + "url": "/v1/software/agent-attribution-practice-architectural-decision-records-and-four-business-ai-quadrants-o" +} diff --git a/site/public/v1/software/agent-based-modelling-for-archaeologists-tutorials/index.json b/site/public/v1/software/agent-based-modelling-for-archaeologists-tutorials/index.json new file mode 100644 index 000000000000..29d2d0a31af2 --- /dev/null +++ b/site/public/v1/software/agent-based-modelling-for-archaeologists-tutorials/index.json @@ -0,0 +1,19 @@ +{ + "id": 274, + "slug": "agent-based-modelling-for-archaeologists-tutorials", + "name": "Agent Based Modelling for Archaeologists: Tutorials", + "release_date": "2024-04-15", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131358162" + ], + "created_at": "2026-07-10T10:12:39.599580", + "updated_at": "2026-07-10T10:12:39.599580", + "url": "/v1/software/agent-based-modelling-for-archaeologists-tutorials" +} diff --git a/site/public/v1/software/agent-knowledge-cycle-akc/index.json b/site/public/v1/software/agent-knowledge-cycle-akc/index.json new file mode 100644 index 000000000000..a8d6124240be --- /dev/null +++ b/site/public/v1/software/agent-knowledge-cycle-akc/index.json @@ -0,0 +1,23 @@ +{ + "id": 275, + "slug": "agent-knowledge-cycle-akc", + "name": "Agent Knowledge Cycle (AKC)", + "release_date": "2026-03-24", + "developers": [ + "Tatsuya Shimomoto" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140090186" + ], + "created_at": "2026-07-10T10:12:39.599580", + "updated_at": "2026-07-10T10:12:39.599580", + "url": "/v1/software/agent-knowledge-cycle-akc" +} diff --git a/site/public/v1/software/agentflow/index.json b/site/public/v1/software/agentflow/index.json new file mode 100644 index 000000000000..547c59f89da0 --- /dev/null +++ b/site/public/v1/software/agentflow/index.json @@ -0,0 +1,21 @@ +{ + "id": 276, + "slug": "agentflow", + "name": "AgentFlow", + "release_date": null, + "developers": [ + "Multimodal" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140387261" + ], + "created_at": "2026-07-10T10:12:39.600549", + "updated_at": "2026-07-10T10:12:39.600549", + "url": "/v1/software/agentflow" +} diff --git a/site/public/v1/software/agentic-identity/index.json b/site/public/v1/software/agentic-identity/index.json new file mode 100644 index 000000000000..18cb966dbc34 --- /dev/null +++ b/site/public/v1/software/agentic-identity/index.json @@ -0,0 +1,21 @@ +{ + "id": 277, + "slug": "agentic-identity", + "name": "Agentic Identity", + "release_date": null, + "developers": [ + "Incode" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138859698" + ], + "created_at": "2026-07-10T10:12:39.600549", + "updated_at": "2026-07-10T10:12:39.600549", + "url": "/v1/software/agentic-identity" +} diff --git a/site/public/v1/software/agenticassure/index.json b/site/public/v1/software/agenticassure/index.json new file mode 100644 index 000000000000..303dccf9199e --- /dev/null +++ b/site/public/v1/software/agenticassure/index.json @@ -0,0 +1,21 @@ +{ + "id": 278, + "slug": "agenticassure", + "name": "AgenticAssure", + "release_date": null, + "developers": [ + "AgenticAssure" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139846340" + ], + "created_at": "2026-07-10T10:12:39.601524", + "updated_at": "2026-07-10T10:12:39.601524", + "url": "/v1/software/agenticassure" +} diff --git a/site/public/v1/software/agfa-impax-6/index.json b/site/public/v1/software/agfa-impax-6/index.json new file mode 100644 index 000000000000..ad1079972704 --- /dev/null +++ b/site/public/v1/software/agfa-impax-6/index.json @@ -0,0 +1,21 @@ +{ + "id": 279, + "slug": "agfa-impax-6", + "name": "Agfa impax 6", + "release_date": null, + "developers": [ + "Agfa-Gevaert" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4692169" + ], + "created_at": "2026-07-10T10:12:39.601524", + "updated_at": "2026-07-10T10:12:39.601524", + "url": "/v1/software/agfa-impax-6" +} diff --git a/site/public/v1/software/agi32/index.json b/site/public/v1/software/agi32/index.json new file mode 100644 index 000000000000..afb0a036143d --- /dev/null +++ b/site/public/v1/software/agi32/index.json @@ -0,0 +1,19 @@ +{ + "id": 280, + "slug": "agi32", + "name": "AGi32", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4651722" + ], + "created_at": "2026-07-10T10:12:39.601524", + "updated_at": "2026-07-10T10:12:39.601524", + "url": "/v1/software/agi32" +} diff --git a/site/public/v1/software/agile-architecture/index.json b/site/public/v1/software/agile-architecture/index.json new file mode 100644 index 000000000000..ff8bdd57f6d8 --- /dev/null +++ b/site/public/v1/software/agile-architecture/index.json @@ -0,0 +1,19 @@ +{ + "id": 281, + "slug": "agile-architecture", + "name": "Agile Architecture", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28458052" + ], + "created_at": "2026-07-10T10:12:39.601524", + "updated_at": "2026-07-10T10:12:39.601524", + "url": "/v1/software/agile-architecture" +} diff --git a/site/public/v1/software/agile-uml/index.json b/site/public/v1/software/agile-uml/index.json new file mode 100644 index 000000000000..e160c22423c6 --- /dev/null +++ b/site/public/v1/software/agile-uml/index.json @@ -0,0 +1,19 @@ +{ + "id": 282, + "slug": "agile-uml", + "name": "Agile UML", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76169862" + ], + "created_at": "2026-07-10T10:12:39.602533", + "updated_at": "2026-07-10T10:12:39.602533", + "url": "/v1/software/agile-uml" +} diff --git a/site/public/v1/software/aglets/index.json b/site/public/v1/software/aglets/index.json new file mode 100644 index 000000000000..8902ec45d158 --- /dev/null +++ b/site/public/v1/software/aglets/index.json @@ -0,0 +1,19 @@ +{ + "id": 283, + "slug": "aglets", + "name": "Aglets", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4692878" + ], + "created_at": "2026-07-10T10:12:39.602533", + "updated_at": "2026-07-10T10:12:39.602533", + "url": "/v1/software/aglets" +} diff --git a/site/public/v1/software/agora-multi-agent-research-system/index.json b/site/public/v1/software/agora-multi-agent-research-system/index.json new file mode 100644 index 000000000000..6b594c9ae340 --- /dev/null +++ b/site/public/v1/software/agora-multi-agent-research-system/index.json @@ -0,0 +1,21 @@ +{ + "id": 284, + "slug": "agora-multi-agent-research-system", + "name": "AGORA Multi-Agent Research System", + "release_date": null, + "developers": [ + "XOps360 LLC" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139581487" + ], + "created_at": "2026-07-10T10:12:39.602533", + "updated_at": "2026-07-10T10:12:39.602533", + "url": "/v1/software/agora-multi-agent-research-system" +} diff --git a/site/public/v1/software/agrep/index.json b/site/public/v1/software/agrep/index.json new file mode 100644 index 000000000000..21664abdfdc0 --- /dev/null +++ b/site/public/v1/software/agrep/index.json @@ -0,0 +1,19 @@ +{ + "id": 285, + "slug": "agrep", + "name": "agrep", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4693816" + ], + "created_at": "2026-07-10T10:12:39.603533", + "updated_at": "2026-07-10T10:12:39.603533", + "url": "/v1/software/agrep" +} diff --git a/site/public/v1/software/aguapey/index.json b/site/public/v1/software/aguapey/index.json new file mode 100644 index 000000000000..07e257fea0d9 --- /dev/null +++ b/site/public/v1/software/aguapey/index.json @@ -0,0 +1,23 @@ +{ + "id": 286, + "slug": "aguapey", + "name": "Aguapey", + "release_date": null, + "developers": [ + "National Library of Teachers" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q99600256" + ], + "created_at": "2026-07-10T10:12:39.603533", + "updated_at": "2026-07-10T10:12:39.603533", + "url": "/v1/software/aguapey" +} diff --git a/site/public/v1/software/ahi/index.json b/site/public/v1/software/ahi/index.json new file mode 100644 index 000000000000..26f152f45629 --- /dev/null +++ b/site/public/v1/software/ahi/index.json @@ -0,0 +1,19 @@ +{ + "id": 287, + "slug": "ahi", + "name": "AHI", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4651764" + ], + "created_at": "2026-07-10T10:12:39.603533", + "updated_at": "2026-07-10T10:12:39.603533", + "url": "/v1/software/ahi" +} diff --git a/site/public/v1/software/ahk2exe/index.json b/site/public/v1/software/ahk2exe/index.json new file mode 100644 index 000000000000..b301e32210fb --- /dev/null +++ b/site/public/v1/software/ahk2exe/index.json @@ -0,0 +1,19 @@ +{ + "id": 288, + "slug": "ahk2exe", + "name": "ahk2exe", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q39189442" + ], + "created_at": "2026-07-10T10:12:39.604542", + "updated_at": "2026-07-10T10:12:39.604542", + "url": "/v1/software/ahk2exe" +} diff --git a/site/public/v1/software/ai-citation-toolkit/index.json b/site/public/v1/software/ai-citation-toolkit/index.json new file mode 100644 index 000000000000..849ce7a6711a --- /dev/null +++ b/site/public/v1/software/ai-citation-toolkit/index.json @@ -0,0 +1,25 @@ +{ + "id": 289, + "slug": "ai-citation-toolkit", + "name": "AI Citation Toolkit", + "release_date": null, + "developers": [ + "AutomateLab" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "TypeScript" + ], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139962034" + ], + "created_at": "2026-07-10T10:12:39.604542", + "updated_at": "2026-07-10T10:12:39.604542", + "url": "/v1/software/ai-citation-toolkit" +} diff --git a/site/public/v1/software/ai-cofounder/index.json b/site/public/v1/software/ai-cofounder/index.json new file mode 100644 index 000000000000..7fc2e90e337a --- /dev/null +++ b/site/public/v1/software/ai-cofounder/index.json @@ -0,0 +1,19 @@ +{ + "id": 290, + "slug": "ai-cofounder", + "name": "ai cofounder", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139694183" + ], + "created_at": "2026-07-10T10:12:39.604542", + "updated_at": "2026-07-10T10:12:39.604542", + "url": "/v1/software/ai-cofounder" +} diff --git a/site/public/v1/software/ai-endurance/index.json b/site/public/v1/software/ai-endurance/index.json new file mode 100644 index 000000000000..ab62b9ff6385 --- /dev/null +++ b/site/public/v1/software/ai-endurance/index.json @@ -0,0 +1,25 @@ +{ + "id": 291, + "slug": "ai-endurance", + "name": "AI Endurance", + "release_date": null, + "developers": [ + "Markus Rummel" + ], + "publishers": [], + "operating_systems": [ + "iOS" + ], + "programming_languages": [ + "TypeScript" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134700883" + ], + "created_at": "2026-07-10T10:12:39.604542", + "updated_at": "2026-07-10T10:12:39.604542", + "url": "/v1/software/ai-endurance" +} diff --git a/site/public/v1/software/ai-platform-for-contract-redlining-due-diligence-questionnaires-and-security-questionnaire/index.json b/site/public/v1/software/ai-platform-for-contract-redlining-due-diligence-questionnaires-and-security-questionnaire/index.json new file mode 100644 index 000000000000..09f8cab32ea5 --- /dev/null +++ b/site/public/v1/software/ai-platform-for-contract-redlining-due-diligence-questionnaires-and-security-questionnaire/index.json @@ -0,0 +1,19 @@ +{ + "id": 292, + "slug": "ai-platform-for-contract-redlining-due-diligence-questionnaires-and-security-questionnaire", + "name": "AI Platform for Contract Redlining, Due Diligence Questionnaires, and Security Questionnaire Automation", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138456258" + ], + "created_at": "2026-07-10T10:12:39.605563", + "updated_at": "2026-07-10T10:12:39.605563", + "url": "/v1/software/ai-platform-for-contract-redlining-due-diligence-questionnaires-and-security-questionnaire" +} diff --git a/site/public/v1/software/ai-sales-development-representative-software/index.json b/site/public/v1/software/ai-sales-development-representative-software/index.json new file mode 100644 index 000000000000..5a5fc7f7a8d1 --- /dev/null +++ b/site/public/v1/software/ai-sales-development-representative-software/index.json @@ -0,0 +1,19 @@ +{ + "id": 293, + "slug": "ai-sales-development-representative-software", + "name": "AI sales development representative software", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137176361" + ], + "created_at": "2026-07-10T10:12:39.605563", + "updated_at": "2026-07-10T10:12:39.605563", + "url": "/v1/software/ai-sales-development-representative-software" +} diff --git a/site/public/v1/software/ai-site-builder/index.json b/site/public/v1/software/ai-site-builder/index.json new file mode 100644 index 000000000000..b5d52421e8fe --- /dev/null +++ b/site/public/v1/software/ai-site-builder/index.json @@ -0,0 +1,19 @@ +{ + "id": 294, + "slug": "ai-site-builder", + "name": "AI Site Builder", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139856686" + ], + "created_at": "2026-07-10T10:12:39.605563", + "updated_at": "2026-07-10T10:12:39.605563", + "url": "/v1/software/ai-site-builder" +} diff --git a/site/public/v1/software/ai-sql-tuner-studio/index.json b/site/public/v1/software/ai-sql-tuner-studio/index.json new file mode 100644 index 000000000000..64196af8633b --- /dev/null +++ b/site/public/v1/software/ai-sql-tuner-studio/index.json @@ -0,0 +1,28 @@ +{ + "id": 295, + "slug": "ai-sql-tuner-studio", + "name": "AI SQL Tuner Studio", + "release_date": null, + "developers": [ + "Kevin A. Feit", + "AI SQL Tuner LLC" + ], + "publishers": [ + "AI SQL Tuner LLC" + ], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138783432" + ], + "created_at": "2026-07-10T10:12:39.606561", + "updated_at": "2026-07-10T10:12:39.606561", + "url": "/v1/software/ai-sql-tuner-studio" +} diff --git a/site/public/v1/software/aid4mail/index.json b/site/public/v1/software/aid4mail/index.json new file mode 100644 index 000000000000..4f6fd981e163 --- /dev/null +++ b/site/public/v1/software/aid4mail/index.json @@ -0,0 +1,19 @@ +{ + "id": 296, + "slug": "aid4mail", + "name": "Aid4Mail", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q41095930" + ], + "created_at": "2026-07-10T10:12:39.606561", + "updated_at": "2026-07-10T10:12:39.606561", + "url": "/v1/software/aid4mail" +} diff --git a/site/public/v1/software/aidbox/index.json b/site/public/v1/software/aidbox/index.json new file mode 100644 index 000000000000..62a5e5b44901 --- /dev/null +++ b/site/public/v1/software/aidbox/index.json @@ -0,0 +1,23 @@ +{ + "id": 297, + "slug": "aidbox", + "name": "Aidbox", + "release_date": null, + "developers": [ + "Health Samurai" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Clojure" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140066672" + ], + "created_at": "2026-07-10T10:12:39.606561", + "updated_at": "2026-07-10T10:12:39.606561", + "url": "/v1/software/aidbox" +} diff --git a/site/public/v1/software/aideliv/index.json b/site/public/v1/software/aideliv/index.json new file mode 100644 index 000000000000..add4b04d3830 --- /dev/null +++ b/site/public/v1/software/aideliv/index.json @@ -0,0 +1,19 @@ +{ + "id": 298, + "slug": "aideliv", + "name": "AiDeliv", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139494123" + ], + "created_at": "2026-07-10T10:12:39.607565", + "updated_at": "2026-07-10T10:12:39.607565", + "url": "/v1/software/aideliv" +} diff --git a/site/public/v1/software/aidstest/index.json b/site/public/v1/software/aidstest/index.json new file mode 100644 index 000000000000..fc2ad0e1cf32 --- /dev/null +++ b/site/public/v1/software/aidstest/index.json @@ -0,0 +1,25 @@ +{ + "id": 299, + "slug": "aidstest", + "name": "Aidstest", + "release_date": "1988-11-17", + "developers": [ + "Dmitry Lozinsky" + ], + "publishers": [], + "operating_systems": [ + "DOS" + ], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4033605" + ], + "created_at": "2026-07-10T10:12:39.607565", + "updated_at": "2026-07-10T10:12:39.607565", + "url": "/v1/software/aidstest" +} diff --git a/site/public/v1/software/aiiaco/index.json b/site/public/v1/software/aiiaco/index.json new file mode 100644 index 000000000000..e44ab751a5ef --- /dev/null +++ b/site/public/v1/software/aiiaco/index.json @@ -0,0 +1,19 @@ +{ + "id": 300, + "slug": "aiiaco", + "name": "AiiACo", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138638897" + ], + "created_at": "2026-07-10T10:12:39.607565", + "updated_at": "2026-07-10T10:12:39.607565", + "url": "/v1/software/aiiaco" +} diff --git a/site/public/v1/software/aiko/index.json b/site/public/v1/software/aiko/index.json new file mode 100644 index 000000000000..cd009970140b --- /dev/null +++ b/site/public/v1/software/aiko/index.json @@ -0,0 +1,21 @@ +{ + "id": 301, + "slug": "aiko", + "name": "AiKO", + "release_date": null, + "developers": [ + "Animen" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138686046" + ], + "created_at": "2026-07-10T10:12:39.607565", + "updated_at": "2026-07-10T10:12:39.607565", + "url": "/v1/software/aiko" +} diff --git a/site/public/v1/software/aim-ad-hack/index.json b/site/public/v1/software/aim-ad-hack/index.json new file mode 100644 index 000000000000..edfd56818be0 --- /dev/null +++ b/site/public/v1/software/aim-ad-hack/index.json @@ -0,0 +1,23 @@ +{ + "id": 302, + "slug": "aim-ad-hack", + "name": "AIM Ad Hack", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4651955" + ], + "created_at": "2026-07-10T10:12:39.608570", + "updated_at": "2026-07-10T10:12:39.608570", + "url": "/v1/software/aim-ad-hack" +} diff --git a/site/public/v1/software/aim-phoneline/index.json b/site/public/v1/software/aim-phoneline/index.json new file mode 100644 index 000000000000..f917d8b2f3d7 --- /dev/null +++ b/site/public/v1/software/aim-phoneline/index.json @@ -0,0 +1,21 @@ +{ + "id": 303, + "slug": "aim-phoneline", + "name": "AIM Phoneline", + "release_date": null, + "developers": [ + "AOL" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4651965" + ], + "created_at": "2026-07-10T10:12:39.608570", + "updated_at": "2026-07-10T10:12:39.608570", + "url": "/v1/software/aim-phoneline" +} diff --git a/site/public/v1/software/aimall/index.json b/site/public/v1/software/aimall/index.json new file mode 100644 index 000000000000..96e0b0121d1e --- /dev/null +++ b/site/public/v1/software/aimall/index.json @@ -0,0 +1,24 @@ +{ + "id": 304, + "slug": "aimall", + "name": "AIMAll", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4651945" + ], + "created_at": "2026-07-10T10:12:39.608570", + "updated_at": "2026-07-10T10:12:39.608570", + "url": "/v1/software/aimall" +} diff --git a/site/public/v1/software/aimeos/index.json b/site/public/v1/software/aimeos/index.json new file mode 100644 index 000000000000..635fe981c3e6 --- /dev/null +++ b/site/public/v1/software/aimeos/index.json @@ -0,0 +1,19 @@ +{ + "id": 305, + "slug": "aimeos", + "name": "Aimeos", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22937341" + ], + "created_at": "2026-07-10T10:12:39.609179", + "updated_at": "2026-07-10T10:12:39.609179", + "url": "/v1/software/aimeos" +} diff --git a/site/public/v1/software/aimstor/index.json b/site/public/v1/software/aimstor/index.json new file mode 100644 index 000000000000..63823306c5b7 --- /dev/null +++ b/site/public/v1/software/aimstor/index.json @@ -0,0 +1,19 @@ +{ + "id": 306, + "slug": "aimstor", + "name": "AIMstor", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4651971" + ], + "created_at": "2026-07-10T10:12:39.609179", + "updated_at": "2026-07-10T10:12:39.609179", + "url": "/v1/software/aimstor" +} diff --git a/site/public/v1/software/aimsun-live/index.json b/site/public/v1/software/aimsun-live/index.json new file mode 100644 index 000000000000..a5ec9bbb76d5 --- /dev/null +++ b/site/public/v1/software/aimsun-live/index.json @@ -0,0 +1,23 @@ +{ + "id": 307, + "slug": "aimsun-live", + "name": "Aimsun Live", + "release_date": null, + "developers": [ + "TSS – Transport Simulation Systems" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "end-user license agreement" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4697184" + ], + "created_at": "2026-07-10T10:12:39.609179", + "updated_at": "2026-07-10T10:12:39.609179", + "url": "/v1/software/aimsun-live" +} diff --git a/site/public/v1/software/ainot/index.json b/site/public/v1/software/ainot/index.json new file mode 100644 index 000000000000..eb726a25241a --- /dev/null +++ b/site/public/v1/software/ainot/index.json @@ -0,0 +1,21 @@ +{ + "id": 308, + "slug": "ainot", + "name": "AINOT", + "release_date": null, + "developers": [ + "Omm Prakash Swain" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140069725" + ], + "created_at": "2026-07-10T10:12:39.610259", + "updated_at": "2026-07-10T10:12:39.610259", + "url": "/v1/software/ainot" +} diff --git a/site/public/v1/software/aiohttp-cors/index.json b/site/public/v1/software/aiohttp-cors/index.json new file mode 100644 index 000000000000..987eb6e4d2d6 --- /dev/null +++ b/site/public/v1/software/aiohttp-cors/index.json @@ -0,0 +1,21 @@ +{ + "id": 309, + "slug": "aiohttp-cors", + "name": "aiohttp-cors", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Apache License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28941610" + ], + "created_at": "2026-07-10T10:12:39.610259", + "updated_at": "2026-07-10T10:12:39.610259", + "url": "/v1/software/aiohttp-cors" +} diff --git a/site/public/v1/software/aiohttp/index.json b/site/public/v1/software/aiohttp/index.json new file mode 100644 index 000000000000..e7569d0f3a3d --- /dev/null +++ b/site/public/v1/software/aiohttp/index.json @@ -0,0 +1,21 @@ +{ + "id": 310, + "slug": "aiohttp", + "name": "aiohttp", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Apache Software License 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28941607" + ], + "created_at": "2026-07-10T10:12:39.610259", + "updated_at": "2026-07-10T10:12:39.610259", + "url": "/v1/software/aiohttp" +} diff --git a/site/public/v1/software/aioncalls-ai-voice-agent/index.json b/site/public/v1/software/aioncalls-ai-voice-agent/index.json new file mode 100644 index 000000000000..4927e7c1fbc6 --- /dev/null +++ b/site/public/v1/software/aioncalls-ai-voice-agent/index.json @@ -0,0 +1,21 @@ +{ + "id": 311, + "slug": "aioncalls-ai-voice-agent", + "name": "AIOnCalls AI Voice Agent", + "release_date": null, + "developers": [ + "technovedaai" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138611796" + ], + "created_at": "2026-07-10T10:12:39.610259", + "updated_at": "2026-07-10T10:12:39.610259", + "url": "/v1/software/aioncalls-ai-voice-agent" +} diff --git a/site/public/v1/software/air-q41795204/index.json b/site/public/v1/software/air-q41795204/index.json new file mode 100644 index 000000000000..ae2323f09ccf --- /dev/null +++ b/site/public/v1/software/air-q41795204/index.json @@ -0,0 +1,21 @@ +{ + "id": 312, + "slug": "air-q41795204", + "name": "AIR", + "release_date": null, + "developers": [ + "Roger P. Woods" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q41795204" + ], + "created_at": "2026-07-10T10:12:39.611273", + "updated_at": "2026-07-10T10:12:39.611273", + "url": "/v1/software/air-q41795204" +} diff --git a/site/public/v1/software/air-sharing/index.json b/site/public/v1/software/air-sharing/index.json new file mode 100644 index 000000000000..4167fea3e68d --- /dev/null +++ b/site/public/v1/software/air-sharing/index.json @@ -0,0 +1,21 @@ +{ + "id": 313, + "slug": "air-sharing", + "name": "Air Sharing", + "release_date": "2009-01-01", + "developers": [], + "publishers": [], + "operating_systems": [ + "iOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4698187" + ], + "created_at": "2026-07-10T10:12:39.611273", + "updated_at": "2026-07-10T10:12:39.611273", + "url": "/v1/software/air-sharing" +} diff --git a/site/public/v1/software/air/index.json b/site/public/v1/software/air/index.json new file mode 100644 index 000000000000..2bdc7faab506 --- /dev/null +++ b/site/public/v1/software/air/index.json @@ -0,0 +1,19 @@ +{ + "id": 314, + "slug": "air", + "name": "AIR", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4651990" + ], + "created_at": "2026-07-10T10:12:39.612281", + "updated_at": "2026-07-10T10:12:39.612281", + "url": "/v1/software/air" +} diff --git a/site/public/v1/software/airdroid/index.json b/site/public/v1/software/airdroid/index.json new file mode 100644 index 000000000000..362fc26355d2 --- /dev/null +++ b/site/public/v1/software/airdroid/index.json @@ -0,0 +1,22 @@ +{ + "id": 315, + "slug": "airdroid", + "name": "AirDroid", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "iOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10846423" + ], + "created_at": "2026-07-10T10:12:39.612281", + "updated_at": "2026-07-10T10:12:39.612281", + "url": "/v1/software/airdroid" +} diff --git a/site/public/v1/software/airfair/index.json b/site/public/v1/software/airfair/index.json new file mode 100644 index 000000000000..61b77a36ab08 --- /dev/null +++ b/site/public/v1/software/airfair/index.json @@ -0,0 +1,19 @@ +{ + "id": 316, + "slug": "airfair", + "name": "Airfair", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q30609899" + ], + "created_at": "2026-07-10T10:12:39.612281", + "updated_at": "2026-07-10T10:12:39.612281", + "url": "/v1/software/airfair" +} diff --git a/site/public/v1/software/airgram/index.json b/site/public/v1/software/airgram/index.json new file mode 100644 index 000000000000..f5c276d54e54 --- /dev/null +++ b/site/public/v1/software/airgram/index.json @@ -0,0 +1,19 @@ +{ + "id": 317, + "slug": "airgram", + "name": "airgram", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4698702" + ], + "created_at": "2026-07-10T10:12:39.613273", + "updated_at": "2026-07-10T10:12:39.613273", + "url": "/v1/software/airgram" +} diff --git a/site/public/v1/software/airhelp/index.json b/site/public/v1/software/airhelp/index.json new file mode 100644 index 000000000000..2d3ddb2a7b52 --- /dev/null +++ b/site/public/v1/software/airhelp/index.json @@ -0,0 +1,19 @@ +{ + "id": 318, + "slug": "airhelp", + "name": "AirHelp", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17108237" + ], + "created_at": "2026-07-10T10:12:39.613273", + "updated_at": "2026-07-10T10:12:39.613273", + "url": "/v1/software/airhelp" +} diff --git a/site/public/v1/software/airline-themes/index.json b/site/public/v1/software/airline-themes/index.json new file mode 100644 index 000000000000..2d7ec7db6e09 --- /dev/null +++ b/site/public/v1/software/airline-themes/index.json @@ -0,0 +1,21 @@ +{ + "id": 319, + "slug": "airline-themes", + "name": "airline-themes", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28941614" + ], + "created_at": "2026-07-10T10:12:39.613273", + "updated_at": "2026-07-10T10:12:39.613273", + "url": "/v1/software/airline-themes" +} diff --git a/site/public/v1/software/airline/index.json b/site/public/v1/software/airline/index.json new file mode 100644 index 000000000000..8835dc6b6840 --- /dev/null +++ b/site/public/v1/software/airline/index.json @@ -0,0 +1,21 @@ +{ + "id": 320, + "slug": "airline", + "name": "airline", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28941612" + ], + "created_at": "2026-07-10T10:12:39.614271", + "updated_at": "2026-07-10T10:12:39.614271", + "url": "/v1/software/airline" +} diff --git a/site/public/v1/software/airmail/index.json b/site/public/v1/software/airmail/index.json new file mode 100644 index 000000000000..d369c81b9370 --- /dev/null +++ b/site/public/v1/software/airmail/index.json @@ -0,0 +1,24 @@ +{ + "id": 321, + "slug": "airmail", + "name": "Airmail", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "watchOS", + "iPadOS", + "iOS", + "macOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22906259" + ], + "created_at": "2026-07-10T10:12:39.615193", + "updated_at": "2026-07-10T10:12:39.615193", + "url": "/v1/software/airmail" +} diff --git a/site/public/v1/software/airman/index.json b/site/public/v1/software/airman/index.json new file mode 100644 index 000000000000..6231121e6a57 --- /dev/null +++ b/site/public/v1/software/airman/index.json @@ -0,0 +1,21 @@ +{ + "id": 322, + "slug": "airman", + "name": "AIRMAN", + "release_date": "2000-01-01", + "developers": [ + "Airbus Commercial Aircraft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q293871" + ], + "created_at": "2026-07-10T10:12:39.618187", + "updated_at": "2026-07-10T10:12:39.618187", + "url": "/v1/software/airman" +} diff --git a/site/public/v1/software/airnovel/index.json b/site/public/v1/software/airnovel/index.json new file mode 100644 index 000000000000..0c26ea832b78 --- /dev/null +++ b/site/public/v1/software/airnovel/index.json @@ -0,0 +1,19 @@ +{ + "id": 323, + "slug": "airnovel", + "name": "AIRNovel", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11189066" + ], + "created_at": "2026-07-10T10:12:39.618187", + "updated_at": "2026-07-10T10:12:39.618187", + "url": "/v1/software/airnovel" +} diff --git a/site/public/v1/software/airport-utility/index.json b/site/public/v1/software/airport-utility/index.json new file mode 100644 index 000000000000..3be1aab275dc --- /dev/null +++ b/site/public/v1/software/airport-utility/index.json @@ -0,0 +1,25 @@ +{ + "id": 324, + "slug": "airport-utility", + "name": "AirPort Utility", + "release_date": null, + "developers": [ + "Apple Inc." + ], + "publishers": [], + "operating_systems": [ + "iOS", + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1188053" + ], + "created_at": "2026-07-10T10:12:39.619247", + "updated_at": "2026-07-10T10:12:39.619247", + "url": "/v1/software/airport-utility" +} diff --git a/site/public/v1/software/airq/index.json b/site/public/v1/software/airq/index.json new file mode 100644 index 000000000000..af33a5a16a2c --- /dev/null +++ b/site/public/v1/software/airq/index.json @@ -0,0 +1,19 @@ +{ + "id": 325, + "slug": "airq", + "name": "AirQ+", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q85740199" + ], + "created_at": "2026-07-10T10:12:39.619247", + "updated_at": "2026-07-10T10:12:39.619247", + "url": "/v1/software/airq" +} diff --git a/site/public/v1/software/airy/index.json b/site/public/v1/software/airy/index.json new file mode 100644 index 000000000000..b5604f34cba7 --- /dev/null +++ b/site/public/v1/software/airy/index.json @@ -0,0 +1,19 @@ +{ + "id": 326, + "slug": "airy", + "name": "Airy", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22095117" + ], + "created_at": "2026-07-10T10:12:39.619247", + "updated_at": "2026-07-10T10:12:39.619247", + "url": "/v1/software/airy" +} diff --git a/site/public/v1/software/aisee/index.json b/site/public/v1/software/aisee/index.json new file mode 100644 index 000000000000..ec1fa1678258 --- /dev/null +++ b/site/public/v1/software/aisee/index.json @@ -0,0 +1,21 @@ +{ + "id": 327, + "slug": "aisee", + "name": "aiSee", + "release_date": null, + "developers": [ + "AbsInt" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125399570" + ], + "created_at": "2026-07-10T10:12:39.620246", + "updated_at": "2026-07-10T10:12:39.620246", + "url": "/v1/software/aisee" +} diff --git a/site/public/v1/software/aitalk/index.json b/site/public/v1/software/aitalk/index.json new file mode 100644 index 000000000000..9540e378afc6 --- /dev/null +++ b/site/public/v1/software/aitalk/index.json @@ -0,0 +1,21 @@ +{ + "id": 328, + "slug": "aitalk", + "name": "Aitalk", + "release_date": null, + "developers": [ + "Ai" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q97185033" + ], + "created_at": "2026-07-10T10:12:39.620246", + "updated_at": "2026-07-10T10:12:39.620246", + "url": "/v1/software/aitalk" +} diff --git a/site/public/v1/software/aitc-homes/index.json b/site/public/v1/software/aitc-homes/index.json new file mode 100644 index 000000000000..32ea821eef4b --- /dev/null +++ b/site/public/v1/software/aitc-homes/index.json @@ -0,0 +1,21 @@ +{ + "id": 329, + "slug": "aitc-homes", + "name": "AITC Homes", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "cross-platform" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139701533" + ], + "created_at": "2026-07-10T10:12:39.620246", + "updated_at": "2026-07-10T10:12:39.620246", + "url": "/v1/software/aitc-homes" +} diff --git a/site/public/v1/software/ajaxsketch/index.json b/site/public/v1/software/ajaxsketch/index.json new file mode 100644 index 000000000000..8d93fc1303c3 --- /dev/null +++ b/site/public/v1/software/ajaxsketch/index.json @@ -0,0 +1,19 @@ +{ + "id": 330, + "slug": "ajaxsketch", + "name": "AjaxSketch", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q412207" + ], + "created_at": "2026-07-10T10:12:39.621249", + "updated_at": "2026-07-10T10:12:39.621249", + "url": "/v1/software/ajaxsketch" +} diff --git a/site/public/v1/software/ajaxwrite/index.json b/site/public/v1/software/ajaxwrite/index.json new file mode 100644 index 000000000000..4010da2b85d9 --- /dev/null +++ b/site/public/v1/software/ajaxwrite/index.json @@ -0,0 +1,19 @@ +{ + "id": 331, + "slug": "ajaxwrite", + "name": "AjaxWrite", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q412211" + ], + "created_at": "2026-07-10T10:12:39.621249", + "updated_at": "2026-07-10T10:12:39.621249", + "url": "/v1/software/ajaxwrite" +} diff --git a/site/public/v1/software/ajenti/index.json b/site/public/v1/software/ajenti/index.json new file mode 100644 index 000000000000..dddfef58323c --- /dev/null +++ b/site/public/v1/software/ajenti/index.json @@ -0,0 +1,23 @@ +{ + "id": 332, + "slug": "ajenti", + "name": "Ajenti", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Python" + ], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q128034290" + ], + "created_at": "2026-07-10T10:12:39.621249", + "updated_at": "2026-07-10T10:12:39.621249", + "url": "/v1/software/ajenti" +} diff --git a/site/public/v1/software/akonadi-ews/index.json b/site/public/v1/software/akonadi-ews/index.json new file mode 100644 index 000000000000..54fb18506ba8 --- /dev/null +++ b/site/public/v1/software/akonadi-ews/index.json @@ -0,0 +1,19 @@ +{ + "id": 333, + "slug": "akonadi-ews", + "name": "akonadi-ews", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28941616" + ], + "created_at": "2026-07-10T10:12:39.622265", + "updated_at": "2026-07-10T10:12:39.622265", + "url": "/v1/software/akonadi-ews" +} diff --git a/site/public/v1/software/alarms-clock/index.json b/site/public/v1/software/alarms-clock/index.json new file mode 100644 index 000000000000..cf18dba1fd2f --- /dev/null +++ b/site/public/v1/software/alarms-clock/index.json @@ -0,0 +1,25 @@ +{ + "id": 334, + "slug": "alarms-clock", + "name": "Alarms & Clock", + "release_date": "2013-09-12", + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [ + "Windows Mobile", + "Xbox One and Xbox Series X/S system software", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28450700" + ], + "created_at": "2026-07-10T10:12:39.622265", + "updated_at": "2026-07-10T10:12:39.622265", + "url": "/v1/software/alarms-clock" +} diff --git a/site/public/v1/software/albert-library-search-engine/index.json b/site/public/v1/software/albert-library-search-engine/index.json new file mode 100644 index 000000000000..2cc0c210d254 --- /dev/null +++ b/site/public/v1/software/albert-library-search-engine/index.json @@ -0,0 +1,21 @@ +{ + "id": 335, + "slug": "albert-library-search-engine", + "name": "ALBERT - Library Search Engine", + "release_date": null, + "developers": [ + "Cooperative Library Network Berlin-Brandenburg" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q99209375" + ], + "created_at": "2026-07-10T10:12:39.622265", + "updated_at": "2026-07-10T10:12:39.622265", + "url": "/v1/software/albert-library-search-engine" +} diff --git a/site/public/v1/software/albumentations/index.json b/site/public/v1/software/albumentations/index.json new file mode 100644 index 000000000000..1984d81d8072 --- /dev/null +++ b/site/public/v1/software/albumentations/index.json @@ -0,0 +1,19 @@ +{ + "id": 336, + "slug": "albumentations", + "name": "Albumentations", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117406959" + ], + "created_at": "2026-07-10T10:12:39.623257", + "updated_at": "2026-07-10T10:12:39.623257", + "url": "/v1/software/albumentations" +} diff --git a/site/public/v1/software/albumforge/index.json b/site/public/v1/software/albumforge/index.json new file mode 100644 index 000000000000..4322fd90c9b8 --- /dev/null +++ b/site/public/v1/software/albumforge/index.json @@ -0,0 +1,21 @@ +{ + "id": 337, + "slug": "albumforge", + "name": "AlbumForge", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135900722" + ], + "created_at": "2026-07-10T10:12:39.623257", + "updated_at": "2026-07-10T10:12:39.623257", + "url": "/v1/software/albumforge" +} diff --git a/site/public/v1/software/alcapture/index.json b/site/public/v1/software/alcapture/index.json new file mode 100644 index 000000000000..61e0f8aeff63 --- /dev/null +++ b/site/public/v1/software/alcapture/index.json @@ -0,0 +1,21 @@ +{ + "id": 338, + "slug": "alcapture", + "name": "ALCapture", + "release_date": null, + "developers": [ + "ESTsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q12605935" + ], + "created_at": "2026-07-10T10:12:39.623257", + "updated_at": "2026-07-10T10:12:39.623257", + "url": "/v1/software/alcapture" +} diff --git a/site/public/v1/software/alchemy-catalyst/index.json b/site/public/v1/software/alchemy-catalyst/index.json new file mode 100644 index 000000000000..85c753da7ee9 --- /dev/null +++ b/site/public/v1/software/alchemy-catalyst/index.json @@ -0,0 +1,19 @@ +{ + "id": 339, + "slug": "alchemy-catalyst", + "name": "Alchemy Catalyst", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4713032" + ], + "created_at": "2026-07-10T10:12:39.624256", + "updated_at": "2026-07-10T10:12:39.624256", + "url": "/v1/software/alchemy-catalyst" +} diff --git a/site/public/v1/software/aldfaer/index.json b/site/public/v1/software/aldfaer/index.json new file mode 100644 index 000000000000..48d88958d4ad --- /dev/null +++ b/site/public/v1/software/aldfaer/index.json @@ -0,0 +1,23 @@ +{ + "id": 340, + "slug": "aldfaer", + "name": "Aldfaer", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2315754" + ], + "created_at": "2026-07-10T10:12:39.624256", + "updated_at": "2026-07-10T10:12:39.624256", + "url": "/v1/software/aldfaer" +} diff --git a/site/public/v1/software/aldrive/index.json b/site/public/v1/software/aldrive/index.json new file mode 100644 index 000000000000..3fda79df8ca5 --- /dev/null +++ b/site/public/v1/software/aldrive/index.json @@ -0,0 +1,23 @@ +{ + "id": 341, + "slug": "aldrive", + "name": "ALDrive", + "release_date": null, + "developers": [ + "ESTsoft" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4652340" + ], + "created_at": "2026-07-10T10:12:39.624256", + "updated_at": "2026-07-10T10:12:39.624256", + "url": "/v1/software/aldrive" +} diff --git a/site/public/v1/software/aleatory-engine/index.json b/site/public/v1/software/aleatory-engine/index.json new file mode 100644 index 000000000000..81eb26272941 --- /dev/null +++ b/site/public/v1/software/aleatory-engine/index.json @@ -0,0 +1,23 @@ +{ + "id": 342, + "slug": "aleatory-engine", + "name": "aleatory-engine", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Python" + ], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137719932" + ], + "created_at": "2026-07-10T10:12:39.624256", + "updated_at": "2026-07-10T10:12:39.624256", + "url": "/v1/software/aleatory-engine" +} diff --git a/site/public/v1/software/alegra/index.json b/site/public/v1/software/alegra/index.json new file mode 100644 index 000000000000..9b75b56f50fc --- /dev/null +++ b/site/public/v1/software/alegra/index.json @@ -0,0 +1,21 @@ +{ + "id": 343, + "slug": "alegra", + "name": "ALEGRA", + "release_date": null, + "developers": [ + "Sandia National Laboratories" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4652323" + ], + "created_at": "2026-07-10T10:12:39.625242", + "updated_at": "2026-07-10T10:12:39.625242", + "url": "/v1/software/alegra" +} diff --git a/site/public/v1/software/aleksis/index.json b/site/public/v1/software/aleksis/index.json new file mode 100644 index 000000000000..def8dacaa3e3 --- /dev/null +++ b/site/public/v1/software/aleksis/index.json @@ -0,0 +1,27 @@ +{ + "id": 344, + "slug": "aleksis", + "name": "AlekSIS", + "release_date": null, + "developers": [ + "velocitux", + "Teckids community", + "Katharineum" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Python" + ], + "licenses": [ + "European Union Public Licence" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122508529" + ], + "created_at": "2026-07-10T10:12:39.625242", + "updated_at": "2026-07-10T10:12:39.625242", + "url": "/v1/software/aleksis" +} diff --git a/site/public/v1/software/aleph/index.json b/site/public/v1/software/aleph/index.json new file mode 100644 index 000000000000..b2482f78d9f6 --- /dev/null +++ b/site/public/v1/software/aleph/index.json @@ -0,0 +1,19 @@ +{ + "id": 345, + "slug": "aleph", + "name": "Aleph", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123846258" + ], + "created_at": "2026-07-10T10:12:39.625242", + "updated_at": "2026-07-10T10:12:39.625242", + "url": "/v1/software/aleph" +} diff --git a/site/public/v1/software/alerta-chart/index.json b/site/public/v1/software/alerta-chart/index.json new file mode 100644 index 000000000000..60fa67497ca3 --- /dev/null +++ b/site/public/v1/software/alerta-chart/index.json @@ -0,0 +1,19 @@ +{ + "id": 346, + "slug": "alerta-chart", + "name": "Alerta Chart", + "release_date": "2025-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140469304" + ], + "created_at": "2026-07-10T10:12:39.626237", + "updated_at": "2026-07-10T10:12:39.626237", + "url": "/v1/software/alerta-chart" +} diff --git a/site/public/v1/software/alertforge/index.json b/site/public/v1/software/alertforge/index.json new file mode 100644 index 000000000000..7f70e8bb9196 --- /dev/null +++ b/site/public/v1/software/alertforge/index.json @@ -0,0 +1,27 @@ +{ + "id": 347, + "slug": "alertforge", + "name": "AlertForge", + "release_date": null, + "developers": [ + "AlertForge" + ], + "publishers": [], + "operating_systems": [ + "cross-platform" + ], + "programming_languages": [ + "TypeScript" + ], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139308045" + ], + "created_at": "2026-07-10T10:12:39.626237", + "updated_at": "2026-07-10T10:12:39.626237", + "url": "/v1/software/alertforge" +} diff --git a/site/public/v1/software/alerts-in-ua/index.json b/site/public/v1/software/alerts-in-ua/index.json new file mode 100644 index 000000000000..dd0e1a88ae51 --- /dev/null +++ b/site/public/v1/software/alerts-in-ua/index.json @@ -0,0 +1,19 @@ +{ + "id": 348, + "slug": "alerts-in-ua", + "name": "Alerts.in.ua", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116668790" + ], + "created_at": "2026-07-10T10:12:39.626237", + "updated_at": "2026-07-10T10:12:39.626237", + "url": "/v1/software/alerts-in-ua" +} diff --git a/site/public/v1/software/alex-the-allegator-4/index.json b/site/public/v1/software/alex-the-allegator-4/index.json new file mode 100644 index 000000000000..2a576cbcb53a --- /dev/null +++ b/site/public/v1/software/alex-the-allegator-4/index.json @@ -0,0 +1,21 @@ +{ + "id": 349, + "slug": "alex-the-allegator-4", + "name": "Alex the Allegator 4", + "release_date": "2003-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [ + "platformer" + ], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108535960" + ], + "created_at": "2026-07-10T10:12:39.627186", + "updated_at": "2026-07-10T10:12:39.627186", + "url": "/v1/software/alex-the-allegator-4" +} diff --git a/site/public/v1/software/alexa-toolbar/index.json b/site/public/v1/software/alexa-toolbar/index.json new file mode 100644 index 000000000000..d3f7f64460cb --- /dev/null +++ b/site/public/v1/software/alexa-toolbar/index.json @@ -0,0 +1,21 @@ +{ + "id": 350, + "slug": "alexa-toolbar", + "name": "Alexa Toolbar", + "release_date": null, + "developers": [ + "Alexa Internet" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2569188" + ], + "created_at": "2026-07-10T10:12:39.627186", + "updated_at": "2026-07-10T10:12:39.627186", + "url": "/v1/software/alexa-toolbar" +} diff --git a/site/public/v1/software/alexandria/index.json b/site/public/v1/software/alexandria/index.json new file mode 100644 index 000000000000..9a8f6e5f6e58 --- /dev/null +++ b/site/public/v1/software/alexandria/index.json @@ -0,0 +1,19 @@ +{ + "id": 351, + "slug": "alexandria", + "name": "Alexandria", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4720933" + ], + "created_at": "2026-07-10T10:12:39.627186", + "updated_at": "2026-07-10T10:12:39.627186", + "url": "/v1/software/alexandria" +} diff --git a/site/public/v1/software/alexis-spectral-data/index.json b/site/public/v1/software/alexis-spectral-data/index.json new file mode 100644 index 000000000000..e7ea26b09916 --- /dev/null +++ b/site/public/v1/software/alexis-spectral-data/index.json @@ -0,0 +1,19 @@ +{ + "id": 352, + "slug": "alexis-spectral-data", + "name": "Alexis Spectral Data", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4721531" + ], + "created_at": "2026-07-10T10:12:39.627186", + "updated_at": "2026-07-10T10:12:39.627186", + "url": "/v1/software/alexis-spectral-data" +} diff --git a/site/public/v1/software/alexnet/index.json b/site/public/v1/software/alexnet/index.json new file mode 100644 index 000000000000..73e6f042256b --- /dev/null +++ b/site/public/v1/software/alexnet/index.json @@ -0,0 +1,19 @@ +{ + "id": 353, + "slug": "alexnet", + "name": "AlexNet", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28325009" + ], + "created_at": "2026-07-10T10:12:39.628187", + "updated_at": "2026-07-10T10:12:39.628187", + "url": "/v1/software/alexnet" +} diff --git a/site/public/v1/software/alfa-ebooks-manager/index.json b/site/public/v1/software/alfa-ebooks-manager/index.json new file mode 100644 index 000000000000..38cd92d202b0 --- /dev/null +++ b/site/public/v1/software/alfa-ebooks-manager/index.json @@ -0,0 +1,23 @@ +{ + "id": 354, + "slug": "alfa-ebooks-manager", + "name": "Alfa Ebooks Manager", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "shareware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q86663346" + ], + "created_at": "2026-07-10T10:12:39.628187", + "updated_at": "2026-07-10T10:12:39.628187", + "url": "/v1/software/alfa-ebooks-manager" +} diff --git a/site/public/v1/software/alfaview-video-conferencing-systems/index.json b/site/public/v1/software/alfaview-video-conferencing-systems/index.json new file mode 100644 index 000000000000..ff4f42d27165 --- /dev/null +++ b/site/public/v1/software/alfaview-video-conferencing-systems/index.json @@ -0,0 +1,21 @@ +{ + "id": 355, + "slug": "alfaview-video-conferencing-systems", + "name": "Alfaview Video Conferencing Systems", + "release_date": "2016-01-01", + "developers": [], + "publishers": [], + "operating_systems": [ + "macOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q97961737" + ], + "created_at": "2026-07-10T10:12:39.629193", + "updated_at": "2026-07-10T10:12:39.629193", + "url": "/v1/software/alfaview-video-conferencing-systems" +} diff --git a/site/public/v1/software/alflow-ocr/index.json b/site/public/v1/software/alflow-ocr/index.json new file mode 100644 index 000000000000..74c172e9b529 --- /dev/null +++ b/site/public/v1/software/alflow-ocr/index.json @@ -0,0 +1,19 @@ +{ + "id": 356, + "slug": "alflow-ocr", + "name": "Alflow OCR", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139322840" + ], + "created_at": "2026-07-10T10:12:39.629193", + "updated_at": "2026-07-10T10:12:39.629193", + "url": "/v1/software/alflow-ocr" +} diff --git a/site/public/v1/software/alfred/index.json b/site/public/v1/software/alfred/index.json new file mode 100644 index 000000000000..b59747134846 --- /dev/null +++ b/site/public/v1/software/alfred/index.json @@ -0,0 +1,21 @@ +{ + "id": 357, + "slug": "alfred", + "name": "Alfred", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "macOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4722181" + ], + "created_at": "2026-07-10T10:12:39.629193", + "updated_at": "2026-07-10T10:12:39.629193", + "url": "/v1/software/alfred" +} diff --git a/site/public/v1/software/algoneer-app/index.json b/site/public/v1/software/algoneer-app/index.json new file mode 100644 index 000000000000..4b318ed6a95f --- /dev/null +++ b/site/public/v1/software/algoneer-app/index.json @@ -0,0 +1,21 @@ +{ + "id": 358, + "slug": "algoneer-app", + "name": "Algoneer App", + "release_date": null, + "developers": [ + "KIProtect GmbH" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72069809" + ], + "created_at": "2026-07-10T10:12:39.630192", + "updated_at": "2026-07-10T10:12:39.630192", + "url": "/v1/software/algoneer-app" +} diff --git a/site/public/v1/software/algoneer/index.json b/site/public/v1/software/algoneer/index.json new file mode 100644 index 000000000000..478a1d62368a --- /dev/null +++ b/site/public/v1/software/algoneer/index.json @@ -0,0 +1,25 @@ +{ + "id": 359, + "slug": "algoneer", + "name": "Algoneer", + "release_date": null, + "developers": [ + "KIProtect GmbH" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Python" + ], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76452810" + ], + "created_at": "2026-07-10T10:12:39.630192", + "updated_at": "2026-07-10T10:12:39.630192", + "url": "/v1/software/algoneer" +} diff --git a/site/public/v1/software/algor/index.json b/site/public/v1/software/algor/index.json new file mode 100644 index 000000000000..20bf96ee410d --- /dev/null +++ b/site/public/v1/software/algor/index.json @@ -0,0 +1,19 @@ +{ + "id": 360, + "slug": "algor", + "name": "ALGOR", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4652364" + ], + "created_at": "2026-07-10T10:12:39.630192", + "updated_at": "2026-07-10T10:12:39.630192", + "url": "/v1/software/algor" +} diff --git a/site/public/v1/software/algorithm-builder/index.json b/site/public/v1/software/algorithm-builder/index.json new file mode 100644 index 000000000000..9e1f90084176 --- /dev/null +++ b/site/public/v1/software/algorithm-builder/index.json @@ -0,0 +1,19 @@ +{ + "id": 361, + "slug": "algorithm-builder", + "name": "Algorithm Builder", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1706966" + ], + "created_at": "2026-07-10T10:12:39.631255", + "updated_at": "2026-07-10T10:12:39.631255", + "url": "/v1/software/algorithm-builder" +} diff --git a/site/public/v1/software/alias-eclipse/index.json b/site/public/v1/software/alias-eclipse/index.json new file mode 100644 index 000000000000..0101a8b0cd05 --- /dev/null +++ b/site/public/v1/software/alias-eclipse/index.json @@ -0,0 +1,19 @@ +{ + "id": 362, + "slug": "alias-eclipse", + "name": "Alias Eclipse", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4725592" + ], + "created_at": "2026-07-10T10:12:39.631255", + "updated_at": "2026-07-10T10:12:39.631255", + "url": "/v1/software/alias-eclipse" +} diff --git a/site/public/v1/software/alice-q126888621/index.json b/site/public/v1/software/alice-q126888621/index.json new file mode 100644 index 000000000000..33e8d6a6e3a2 --- /dev/null +++ b/site/public/v1/software/alice-q126888621/index.json @@ -0,0 +1,19 @@ +{ + "id": 363, + "slug": "alice-q126888621", + "name": "Alice", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126888621" + ], + "created_at": "2026-07-10T10:12:39.631255", + "updated_at": "2026-07-10T10:12:39.631255", + "url": "/v1/software/alice-q126888621" +} diff --git a/site/public/v1/software/alice/index.json b/site/public/v1/software/alice/index.json new file mode 100644 index 000000000000..d116210c8559 --- /dev/null +++ b/site/public/v1/software/alice/index.json @@ -0,0 +1,23 @@ +{ + "id": 364, + "slug": "alice", + "name": "Alice", + "release_date": null, + "developers": [ + "Carnegie Mellon University" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Java" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1335388" + ], + "created_at": "2026-07-10T10:12:39.631255", + "updated_at": "2026-07-10T10:12:39.631255", + "url": "/v1/software/alice" +} diff --git a/site/public/v1/software/alicevision-meshroom/index.json b/site/public/v1/software/alicevision-meshroom/index.json new file mode 100644 index 000000000000..8526bd2b1825 --- /dev/null +++ b/site/public/v1/software/alicevision-meshroom/index.json @@ -0,0 +1,25 @@ +{ + "id": 365, + "slug": "alicevision-meshroom", + "name": "AliceVision Meshroom", + "release_date": null, + "developers": [ + "Grégoire De Lillo", + "Fabien Castan", + "Pierre Moulon" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Mozilla Public License, version 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109132097" + ], + "created_at": "2026-07-10T10:12:39.632251", + "updated_at": "2026-07-10T10:12:39.632251", + "url": "/v1/software/alicevision-meshroom" +} diff --git a/site/public/v1/software/alien-blue/index.json b/site/public/v1/software/alien-blue/index.json new file mode 100644 index 000000000000..94959e5833f3 --- /dev/null +++ b/site/public/v1/software/alien-blue/index.json @@ -0,0 +1,25 @@ +{ + "id": 366, + "slug": "alien-blue", + "name": "Alien Blue", + "release_date": null, + "developers": [ + "Reddit Inc." + ], + "publishers": [], + "operating_systems": [ + "iOS" + ], + "programming_languages": [ + "Objective-C" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18754907" + ], + "created_at": "2026-07-10T10:12:39.632251", + "updated_at": "2026-07-10T10:12:39.632251", + "url": "/v1/software/alien-blue" +} diff --git a/site/public/v1/software/alien/index.json b/site/public/v1/software/alien/index.json new file mode 100644 index 000000000000..9c88631db0ce --- /dev/null +++ b/site/public/v1/software/alien/index.json @@ -0,0 +1,21 @@ +{ + "id": 367, + "slug": "alien", + "name": "AliEn", + "release_date": null, + "developers": [ + "CERN" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4724511" + ], + "created_at": "2026-07-10T10:12:39.632251", + "updated_at": "2026-07-10T10:12:39.632251", + "url": "/v1/software/alien" +} diff --git a/site/public/v1/software/alienbrain/index.json b/site/public/v1/software/alienbrain/index.json new file mode 100644 index 000000000000..305a7fe4aeed --- /dev/null +++ b/site/public/v1/software/alienbrain/index.json @@ -0,0 +1,19 @@ +{ + "id": 368, + "slug": "alienbrain", + "name": "Alienbrain", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q974914" + ], + "created_at": "2026-07-10T10:12:39.633292", + "updated_at": "2026-07-10T10:12:39.633292", + "url": "/v1/software/alienbrain" +} diff --git a/site/public/v1/software/aliyun-drive/index.json b/site/public/v1/software/aliyun-drive/index.json new file mode 100644 index 000000000000..f0f93e723a1b --- /dev/null +++ b/site/public/v1/software/aliyun-drive/index.json @@ -0,0 +1,26 @@ +{ + "id": 369, + "slug": "aliyun-drive", + "name": "ALiYun Drive", + "release_date": null, + "developers": [ + "Alibaba Group" + ], + "publishers": [], + "operating_systems": [ + "HarmonyOS NEXT", + "iPadOS", + "iOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106515066" + ], + "created_at": "2026-07-10T10:12:39.633292", + "updated_at": "2026-07-10T10:12:39.633292", + "url": "/v1/software/aliyun-drive" +} diff --git a/site/public/v1/software/all-in-one-sidebar/index.json b/site/public/v1/software/all-in-one-sidebar/index.json new file mode 100644 index 000000000000..ec8f8711bb59 --- /dev/null +++ b/site/public/v1/software/all-in-one-sidebar/index.json @@ -0,0 +1,19 @@ +{ + "id": 370, + "slug": "all-in-one-sidebar", + "name": "All-in-One Sidebar", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3652272" + ], + "created_at": "2026-07-10T10:12:39.633292", + "updated_at": "2026-07-10T10:12:39.633292", + "url": "/v1/software/all-in-one-sidebar" +} diff --git a/site/public/v1/software/all-our-ideas/index.json b/site/public/v1/software/all-our-ideas/index.json new file mode 100644 index 000000000000..eb56b791e6de --- /dev/null +++ b/site/public/v1/software/all-our-ideas/index.json @@ -0,0 +1,19 @@ +{ + "id": 371, + "slug": "all-our-ideas", + "name": "All Our Ideas", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084381" + ], + "created_at": "2026-07-10T10:12:39.634263", + "updated_at": "2026-07-10T10:12:39.634263", + "url": "/v1/software/all-our-ideas" +} diff --git a/site/public/v1/software/alladdin/index.json b/site/public/v1/software/alladdin/index.json new file mode 100644 index 000000000000..037dbe044af0 --- /dev/null +++ b/site/public/v1/software/alladdin/index.json @@ -0,0 +1,27 @@ +{ + "id": 372, + "slug": "alladdin", + "name": "AllAddin", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [ + "Python" + ], + "licenses": [ + "proprietary license" + ], + "genres": [ + "building information modeling" + ], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139742451" + ], + "created_at": "2026-07-10T10:12:39.634263", + "updated_at": "2026-07-10T10:12:39.634263", + "url": "/v1/software/alladdin" +} diff --git a/site/public/v1/software/alleleid/index.json b/site/public/v1/software/alleleid/index.json new file mode 100644 index 000000000000..6367c856c9e8 --- /dev/null +++ b/site/public/v1/software/alleleid/index.json @@ -0,0 +1,22 @@ +{ + "id": 373, + "slug": "alleleid", + "name": "AlleleID", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16335176" + ], + "created_at": "2026-07-10T10:12:39.634263", + "updated_at": "2026-07-10T10:12:39.634263", + "url": "/v1/software/alleleid" +} diff --git a/site/public/v1/software/alligator-allen-transformer/index.json b/site/public/v1/software/alligator-allen-transformer/index.json new file mode 100644 index 000000000000..e467266a5bf0 --- /dev/null +++ b/site/public/v1/software/alligator-allen-transformer/index.json @@ -0,0 +1,28 @@ +{ + "id": 374, + "slug": "alligator-allen-transformer", + "name": "Alligator - Allen Transformer", + "release_date": null, + "developers": [ + "Römisch-Germanisches Zentralmuseum", + "Florian Thiery" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [ + "SPARQL", + "archaeology", + "chronology" + ], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q74004218" + ], + "created_at": "2026-07-10T10:12:39.634263", + "updated_at": "2026-07-10T10:12:39.634263", + "url": "/v1/software/alligator-allen-transformer" +} diff --git a/site/public/v1/software/allinea-map/index.json b/site/public/v1/software/allinea-map/index.json new file mode 100644 index 000000000000..0826a91100e0 --- /dev/null +++ b/site/public/v1/software/allinea-map/index.json @@ -0,0 +1,19 @@ +{ + "id": 375, + "slug": "allinea-map", + "name": "Allinea MAP", + "release_date": "2013-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18351380" + ], + "created_at": "2026-07-10T10:12:39.635278", + "updated_at": "2026-07-10T10:12:39.635278", + "url": "/v1/software/allinea-map" +} diff --git a/site/public/v1/software/allmymovies/index.json b/site/public/v1/software/allmymovies/index.json new file mode 100644 index 000000000000..1b5d75116977 --- /dev/null +++ b/site/public/v1/software/allmymovies/index.json @@ -0,0 +1,21 @@ +{ + "id": 376, + "slug": "allmymovies", + "name": "AllMyMovies", + "release_date": null, + "developers": [ + "BolideSoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4033745" + ], + "created_at": "2026-07-10T10:12:39.635278", + "updated_at": "2026-07-10T10:12:39.635278", + "url": "/v1/software/allmymovies" +} diff --git a/site/public/v1/software/allmynotes-organizer/index.json b/site/public/v1/software/allmynotes-organizer/index.json new file mode 100644 index 000000000000..bee57a8ffd28 --- /dev/null +++ b/site/public/v1/software/allmynotes-organizer/index.json @@ -0,0 +1,19 @@ +{ + "id": 377, + "slug": "allmynotes-organizer", + "name": "AllMyNotes Organizer", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2837441" + ], + "created_at": "2026-07-10T10:12:39.635278", + "updated_at": "2026-07-10T10:12:39.635278", + "url": "/v1/software/allmynotes-organizer" +} diff --git a/site/public/v1/software/allmyvideodownloader/index.json b/site/public/v1/software/allmyvideodownloader/index.json new file mode 100644 index 000000000000..6371b9fd3050 --- /dev/null +++ b/site/public/v1/software/allmyvideodownloader/index.json @@ -0,0 +1,19 @@ +{ + "id": 378, + "slug": "allmyvideodownloader", + "name": "Allmyvideodownloader", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140329130" + ], + "created_at": "2026-07-10T10:12:39.636187", + "updated_at": "2026-07-10T10:12:39.636187", + "url": "/v1/software/allmyvideodownloader" +} diff --git a/site/public/v1/software/allsign/index.json b/site/public/v1/software/allsign/index.json new file mode 100644 index 000000000000..cdb3e67c990f --- /dev/null +++ b/site/public/v1/software/allsign/index.json @@ -0,0 +1,19 @@ +{ + "id": 379, + "slug": "allsign", + "name": "AllSign", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139074057" + ], + "created_at": "2026-07-10T10:12:39.636187", + "updated_at": "2026-07-10T10:12:39.636187", + "url": "/v1/software/allsign" +} diff --git a/site/public/v1/software/allvideodownloader/index.json b/site/public/v1/software/allvideodownloader/index.json new file mode 100644 index 000000000000..10b4749f19ce --- /dev/null +++ b/site/public/v1/software/allvideodownloader/index.json @@ -0,0 +1,19 @@ +{ + "id": 380, + "slug": "allvideodownloader", + "name": "AllVideoDownloader", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140420059" + ], + "created_at": "2026-07-10T10:12:39.637186", + "updated_at": "2026-07-10T10:12:39.637186", + "url": "/v1/software/allvideodownloader" +} diff --git a/site/public/v1/software/allycad/index.json b/site/public/v1/software/allycad/index.json new file mode 100644 index 000000000000..b2eefb683f8d --- /dev/null +++ b/site/public/v1/software/allycad/index.json @@ -0,0 +1,19 @@ +{ + "id": 381, + "slug": "allycad", + "name": "AllyCAD", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4733391" + ], + "created_at": "2026-07-10T10:12:39.637186", + "updated_at": "2026-07-10T10:12:39.637186", + "url": "/v1/software/allycad" +} diff --git a/site/public/v1/software/alpakalent/index.json b/site/public/v1/software/alpakalent/index.json new file mode 100644 index 000000000000..0f181a8bb351 --- /dev/null +++ b/site/public/v1/software/alpakalent/index.json @@ -0,0 +1,19 @@ +{ + "id": 382, + "slug": "alpakalent", + "name": "Alpakalent", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134612381" + ], + "created_at": "2026-07-10T10:12:39.637186", + "updated_at": "2026-07-10T10:12:39.637186", + "url": "/v1/software/alpakalent" +} diff --git a/site/public/v1/software/alpha-five/index.json b/site/public/v1/software/alpha-five/index.json new file mode 100644 index 000000000000..0a8fe502b33b --- /dev/null +++ b/site/public/v1/software/alpha-five/index.json @@ -0,0 +1,21 @@ +{ + "id": 383, + "slug": "alpha-five", + "name": "Alpha Five", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4735032" + ], + "created_at": "2026-07-10T10:12:39.637186", + "updated_at": "2026-07-10T10:12:39.637186", + "url": "/v1/software/alpha-five" +} diff --git a/site/public/v1/software/alphabasic/index.json b/site/public/v1/software/alphabasic/index.json new file mode 100644 index 000000000000..3a75d77fef3e --- /dev/null +++ b/site/public/v1/software/alphabasic/index.json @@ -0,0 +1,21 @@ +{ + "id": 384, + "slug": "alphabasic", + "name": "AlphaBasic", + "release_date": "1976-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "assembly language" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4734946" + ], + "created_at": "2026-07-10T10:12:39.638255", + "updated_at": "2026-07-10T10:12:39.638255", + "url": "/v1/software/alphabasic" +} diff --git a/site/public/v1/software/alphafold/index.json b/site/public/v1/software/alphafold/index.json new file mode 100644 index 000000000000..9613d87fac18 --- /dev/null +++ b/site/public/v1/software/alphafold/index.json @@ -0,0 +1,25 @@ +{ + "id": 385, + "slug": "alphafold", + "name": "AlphaFold", + "release_date": null, + "developers": [ + "Google DeepMind" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Python" + ], + "licenses": [ + "Apache Software License 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60827595" + ], + "created_at": "2026-07-10T10:12:39.638255", + "updated_at": "2026-07-10T10:12:39.638255", + "url": "/v1/software/alphafold" +} diff --git a/site/public/v1/software/alphafold2/index.json b/site/public/v1/software/alphafold2/index.json new file mode 100644 index 000000000000..8541bd252546 --- /dev/null +++ b/site/public/v1/software/alphafold2/index.json @@ -0,0 +1,19 @@ +{ + "id": 386, + "slug": "alphafold2", + "name": "AlphaFold2", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107711739" + ], + "created_at": "2026-07-10T10:12:39.638255", + "updated_at": "2026-07-10T10:12:39.638255", + "url": "/v1/software/alphafold2" +} diff --git a/site/public/v1/software/alphastar/index.json b/site/public/v1/software/alphastar/index.json new file mode 100644 index 000000000000..6f51343ee5bb --- /dev/null +++ b/site/public/v1/software/alphastar/index.json @@ -0,0 +1,23 @@ +{ + "id": 387, + "slug": "alphastar", + "name": "AlphaStar", + "release_date": null, + "developers": [ + "Google DeepMind" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Apache Software License 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q86749460" + ], + "created_at": "2026-07-10T10:12:39.639199", + "updated_at": "2026-07-10T10:12:39.639199", + "url": "/v1/software/alphastar" +} diff --git a/site/public/v1/software/alpheios/index.json b/site/public/v1/software/alpheios/index.json new file mode 100644 index 000000000000..47a23974187f --- /dev/null +++ b/site/public/v1/software/alpheios/index.json @@ -0,0 +1,19 @@ +{ + "id": 388, + "slug": "alpheios", + "name": "Alpheios", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134885802" + ], + "created_at": "2026-07-10T10:12:39.639199", + "updated_at": "2026-07-10T10:12:39.639199", + "url": "/v1/software/alpheios" +} diff --git a/site/public/v1/software/alreader/index.json b/site/public/v1/software/alreader/index.json new file mode 100644 index 000000000000..4bd45993d44a --- /dev/null +++ b/site/public/v1/software/alreader/index.json @@ -0,0 +1,19 @@ +{ + "id": 389, + "slug": "alreader", + "name": "AlReader", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q27941726" + ], + "created_at": "2026-07-10T10:12:39.639199", + "updated_at": "2026-07-10T10:12:39.639199", + "url": "/v1/software/alreader" +} diff --git a/site/public/v1/software/alsee/index.json b/site/public/v1/software/alsee/index.json new file mode 100644 index 000000000000..5a9322a05ac9 --- /dev/null +++ b/site/public/v1/software/alsee/index.json @@ -0,0 +1,21 @@ +{ + "id": 390, + "slug": "alsee", + "name": "ALSee", + "release_date": null, + "developers": [ + "ESTsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q12605926" + ], + "created_at": "2026-07-10T10:12:39.639199", + "updated_at": "2026-07-10T10:12:39.639199", + "url": "/v1/software/alsee" +} diff --git a/site/public/v1/software/alsong/index.json b/site/public/v1/software/alsong/index.json new file mode 100644 index 000000000000..0185bc843158 --- /dev/null +++ b/site/public/v1/software/alsong/index.json @@ -0,0 +1,21 @@ +{ + "id": 391, + "slug": "alsong", + "name": "ALSong", + "release_date": null, + "developers": [ + "ESTsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11257853" + ], + "created_at": "2026-07-10T10:12:39.640287", + "updated_at": "2026-07-10T10:12:39.640287", + "url": "/v1/software/alsong" +} diff --git a/site/public/v1/software/alt-text/index.json b/site/public/v1/software/alt-text/index.json new file mode 100644 index 000000000000..ea613cc18d8b --- /dev/null +++ b/site/public/v1/software/alt-text/index.json @@ -0,0 +1,19 @@ +{ + "id": 392, + "slug": "alt-text", + "name": "Alt.Text", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084383" + ], + "created_at": "2026-07-10T10:12:39.640287", + "updated_at": "2026-07-10T10:12:39.640287", + "url": "/v1/software/alt-text" +} diff --git a/site/public/v1/software/alta-lista/index.json b/site/public/v1/software/alta-lista/index.json new file mode 100644 index 000000000000..7237b8517e68 --- /dev/null +++ b/site/public/v1/software/alta-lista/index.json @@ -0,0 +1,21 @@ +{ + "id": 393, + "slug": "alta-lista", + "name": "Alta Lista", + "release_date": null, + "developers": [ + "Matthias Jaap" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122733490" + ], + "created_at": "2026-07-10T10:12:39.641286", + "updated_at": "2026-07-10T10:12:39.641286", + "url": "/v1/software/alta-lista" +} diff --git a/site/public/v1/software/alter-ego/index.json b/site/public/v1/software/alter-ego/index.json new file mode 100644 index 000000000000..f53725b94158 --- /dev/null +++ b/site/public/v1/software/alter-ego/index.json @@ -0,0 +1,19 @@ +{ + "id": 394, + "slug": "alter-ego", + "name": "Alter/Ego", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22906306" + ], + "created_at": "2026-07-10T10:12:39.641286", + "updated_at": "2026-07-10T10:12:39.641286", + "url": "/v1/software/alter-ego" +} diff --git a/site/public/v1/software/altermime/index.json b/site/public/v1/software/altermime/index.json new file mode 100644 index 000000000000..d90e9a1780ed --- /dev/null +++ b/site/public/v1/software/altermime/index.json @@ -0,0 +1,19 @@ +{ + "id": 395, + "slug": "altermime", + "name": "alterMIME", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62845816" + ], + "created_at": "2026-07-10T10:12:39.641286", + "updated_at": "2026-07-10T10:12:39.641286", + "url": "/v1/software/altermime" +} diff --git a/site/public/v1/software/alternativa3d/index.json b/site/public/v1/software/alternativa3d/index.json new file mode 100644 index 000000000000..939a5b2be9a4 --- /dev/null +++ b/site/public/v1/software/alternativa3d/index.json @@ -0,0 +1,21 @@ +{ + "id": 396, + "slug": "alternativa3d", + "name": "Alternativa3D", + "release_date": null, + "developers": [ + "AlternativaPlatform" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4033832" + ], + "created_at": "2026-07-10T10:12:39.642256", + "updated_at": "2026-07-10T10:12:39.642256", + "url": "/v1/software/alternativa3d" +} diff --git a/site/public/v1/software/alternative-girls/index.json b/site/public/v1/software/alternative-girls/index.json new file mode 100644 index 000000000000..b1be8bd084da --- /dev/null +++ b/site/public/v1/software/alternative-girls/index.json @@ -0,0 +1,22 @@ +{ + "id": 397, + "slug": "alternative-girls", + "name": "Alternative Girls", + "release_date": "2016-01-01", + "developers": [], + "publishers": [], + "operating_systems": [ + "iOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28193376" + ], + "created_at": "2026-07-10T10:12:39.642256", + "updated_at": "2026-07-10T10:12:39.642256", + "url": "/v1/software/alternative-girls" +} diff --git a/site/public/v1/software/alternative-software-build-for-compatibility-with-an-older-platform/index.json b/site/public/v1/software/alternative-software-build-for-compatibility-with-an-older-platform/index.json new file mode 100644 index 000000000000..019c332d0120 --- /dev/null +++ b/site/public/v1/software/alternative-software-build-for-compatibility-with-an-older-platform/index.json @@ -0,0 +1,19 @@ +{ + "id": 398, + "slug": "alternative-software-build-for-compatibility-with-an-older-platform", + "name": "alternative software build for compatibility with an older platform", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138055453" + ], + "created_at": "2026-07-10T10:12:39.647266", + "updated_at": "2026-07-10T10:12:39.647266", + "url": "/v1/software/alternative-software-build-for-compatibility-with-an-older-platform" +} diff --git a/site/public/v1/software/alternative-software-build-for-performance/index.json b/site/public/v1/software/alternative-software-build-for-performance/index.json new file mode 100644 index 000000000000..36ff95c03edd --- /dev/null +++ b/site/public/v1/software/alternative-software-build-for-performance/index.json @@ -0,0 +1,19 @@ +{ + "id": 399, + "slug": "alternative-software-build-for-performance", + "name": "alternative software build for performance", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138358934" + ], + "created_at": "2026-07-10T10:12:39.652262", + "updated_at": "2026-07-10T10:12:39.652262", + "url": "/v1/software/alternative-software-build-for-performance" +} diff --git a/site/public/v1/software/altius/index.json b/site/public/v1/software/altius/index.json new file mode 100644 index 000000000000..ac96ff898f8c --- /dev/null +++ b/site/public/v1/software/altius/index.json @@ -0,0 +1,21 @@ +{ + "id": 400, + "slug": "altius", + "name": "Altius", + "release_date": null, + "developers": [ + "A Degree Above" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140469863" + ], + "created_at": "2026-07-10T10:12:39.658271", + "updated_at": "2026-07-10T10:12:39.658271", + "url": "/v1/software/altius" +} diff --git a/site/public/v1/software/altmetric/index.json b/site/public/v1/software/altmetric/index.json new file mode 100644 index 000000000000..ba671f21c731 --- /dev/null +++ b/site/public/v1/software/altmetric/index.json @@ -0,0 +1,19 @@ +{ + "id": 401, + "slug": "altmetric", + "name": "Altmetric", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087685" + ], + "created_at": "2026-07-10T10:12:39.663384", + "updated_at": "2026-07-10T10:12:39.663384", + "url": "/v1/software/altmetric" +} diff --git a/site/public/v1/software/alto-mail/index.json b/site/public/v1/software/alto-mail/index.json new file mode 100644 index 000000000000..a69f326dacd0 --- /dev/null +++ b/site/public/v1/software/alto-mail/index.json @@ -0,0 +1,21 @@ +{ + "id": 402, + "slug": "alto-mail", + "name": "Alto Mail", + "release_date": null, + "developers": [ + "AOL" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22906312" + ], + "created_at": "2026-07-10T10:12:39.667472", + "updated_at": "2026-07-10T10:12:39.667472", + "url": "/v1/software/alto-mail" +} diff --git a/site/public/v1/software/altoolbar/index.json b/site/public/v1/software/altoolbar/index.json new file mode 100644 index 000000000000..c418b84db266 --- /dev/null +++ b/site/public/v1/software/altoolbar/index.json @@ -0,0 +1,21 @@ +{ + "id": 403, + "slug": "altoolbar", + "name": "ALToolbar", + "release_date": null, + "developers": [ + "ESTsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16170510" + ], + "created_at": "2026-07-10T10:12:39.670496", + "updated_at": "2026-07-10T10:12:39.670496", + "url": "/v1/software/altoolbar" +} diff --git a/site/public/v1/software/alureon/index.json b/site/public/v1/software/alureon/index.json new file mode 100644 index 000000000000..6fc7791f8efe --- /dev/null +++ b/site/public/v1/software/alureon/index.json @@ -0,0 +1,19 @@ +{ + "id": 404, + "slug": "alureon", + "name": "Alureon", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3290595" + ], + "created_at": "2026-07-10T10:12:39.674510", + "updated_at": "2026-07-10T10:12:39.674510", + "url": "/v1/software/alureon" +} diff --git a/site/public/v1/software/alvadesc/index.json b/site/public/v1/software/alvadesc/index.json new file mode 100644 index 000000000000..5b8ff348f38a --- /dev/null +++ b/site/public/v1/software/alvadesc/index.json @@ -0,0 +1,19 @@ +{ + "id": 405, + "slug": "alvadesc", + "name": "AlvaDesc", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q132126693" + ], + "created_at": "2026-07-10T10:12:39.678386", + "updated_at": "2026-07-10T10:12:39.678386", + "url": "/v1/software/alvadesc" +} diff --git a/site/public/v1/software/alveo-virtual-laboratory/index.json b/site/public/v1/software/alveo-virtual-laboratory/index.json new file mode 100644 index 000000000000..1bddda4d0418 --- /dev/null +++ b/site/public/v1/software/alveo-virtual-laboratory/index.json @@ -0,0 +1,19 @@ +{ + "id": 406, + "slug": "alveo-virtual-laboratory", + "name": "Alveo Virtual Laboratory", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087686" + ], + "created_at": "2026-07-10T10:12:39.682481", + "updated_at": "2026-07-10T10:12:39.682481", + "url": "/v1/software/alveo-virtual-laboratory" +} diff --git a/site/public/v1/software/alveo/index.json b/site/public/v1/software/alveo/index.json new file mode 100644 index 000000000000..6900ed4b974e --- /dev/null +++ b/site/public/v1/software/alveo/index.json @@ -0,0 +1,19 @@ +{ + "id": 407, + "slug": "alveo", + "name": "Alveo", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084384" + ], + "created_at": "2026-07-10T10:12:39.684450", + "updated_at": "2026-07-10T10:12:39.684450", + "url": "/v1/software/alveo" +} diff --git a/site/public/v1/software/alyac/index.json b/site/public/v1/software/alyac/index.json new file mode 100644 index 000000000000..373c5f83db5d --- /dev/null +++ b/site/public/v1/software/alyac/index.json @@ -0,0 +1,19 @@ +{ + "id": 408, + "slug": "alyac", + "name": "ALYac", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q12605928" + ], + "created_at": "2026-07-10T10:12:39.685465", + "updated_at": "2026-07-10T10:12:39.685465", + "url": "/v1/software/alyac" +} diff --git a/site/public/v1/software/amadeus-alt-a/index.json b/site/public/v1/software/amadeus-alt-a/index.json new file mode 100644 index 000000000000..6938c9a5a305 --- /dev/null +++ b/site/public/v1/software/amadeus-alt-a/index.json @@ -0,0 +1,19 @@ +{ + "id": 409, + "slug": "amadeus-alt-a", + "name": "Amadeus Altéa", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q68444502" + ], + "created_at": "2026-07-10T10:12:39.687481", + "updated_at": "2026-07-10T10:12:39.687481", + "url": "/v1/software/amadeus-alt-a" +} diff --git a/site/public/v1/software/amado-online/index.json b/site/public/v1/software/amado-online/index.json new file mode 100644 index 000000000000..353d7cc6b3a1 --- /dev/null +++ b/site/public/v1/software/amado-online/index.json @@ -0,0 +1,19 @@ +{ + "id": 410, + "slug": "amado-online", + "name": "AMADO-online", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084385" + ], + "created_at": "2026-07-10T10:12:39.688474", + "updated_at": "2026-07-10T10:12:39.688474", + "url": "/v1/software/amado-online" +} diff --git a/site/public/v1/software/amap/index.json b/site/public/v1/software/amap/index.json new file mode 100644 index 000000000000..bf08f029dca1 --- /dev/null +++ b/site/public/v1/software/amap/index.json @@ -0,0 +1,23 @@ +{ + "id": 411, + "slug": "amap", + "name": "amap", + "release_date": "2012-01-01", + "developers": [ + "AutoNavi Holdings Limited" + ], + "publishers": [ + "AutoNavi Holdings Limited" + ], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q15927531" + ], + "created_at": "2026-07-10T10:12:39.689384", + "updated_at": "2026-07-10T10:12:39.689384", + "url": "/v1/software/amap" +} diff --git a/site/public/v1/software/amavisd-milter/index.json b/site/public/v1/software/amavisd-milter/index.json new file mode 100644 index 000000000000..8980207f5535 --- /dev/null +++ b/site/public/v1/software/amavisd-milter/index.json @@ -0,0 +1,19 @@ +{ + "id": 412, + "slug": "amavisd-milter", + "name": "amavisd-milter", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62845824" + ], + "created_at": "2026-07-10T10:12:39.691380", + "updated_at": "2026-07-10T10:12:39.691380", + "url": "/v1/software/amavisd-milter" +} diff --git a/site/public/v1/software/amavisd-new/index.json b/site/public/v1/software/amavisd-new/index.json new file mode 100644 index 000000000000..1aa487307ffb --- /dev/null +++ b/site/public/v1/software/amavisd-new/index.json @@ -0,0 +1,19 @@ +{ + "id": 413, + "slug": "amavisd-new", + "name": "amavisd-new", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62845832" + ], + "created_at": "2026-07-10T10:12:39.692384", + "updated_at": "2026-07-10T10:12:39.692384", + "url": "/v1/software/amavisd-new" +} diff --git a/site/public/v1/software/amaze/index.json b/site/public/v1/software/amaze/index.json new file mode 100644 index 000000000000..57c56c8d5e33 --- /dev/null +++ b/site/public/v1/software/amaze/index.json @@ -0,0 +1,21 @@ +{ + "id": 414, + "slug": "amaze", + "name": "Amaze", + "release_date": null, + "developers": [ + "Deque Systems" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16002791" + ], + "created_at": "2026-07-10T10:12:39.692384", + "updated_at": "2026-07-10T10:12:39.692384", + "url": "/v1/software/amaze" +} diff --git a/site/public/v1/software/amazon-corretto/index.json b/site/public/v1/software/amazon-corretto/index.json new file mode 100644 index 000000000000..f19bdea4f13e --- /dev/null +++ b/site/public/v1/software/amazon-corretto/index.json @@ -0,0 +1,28 @@ +{ + "id": 415, + "slug": "amazon-corretto", + "name": "Amazon Corretto", + "release_date": null, + "developers": [ + "Amazon" + ], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [ + "Java" + ], + "licenses": [ + "GNU General Public License, version 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110705735" + ], + "created_at": "2026-07-10T10:12:39.693480", + "updated_at": "2026-07-10T10:12:39.693480", + "url": "/v1/software/amazon-corretto" +} diff --git a/site/public/v1/software/amazon-digital-software-video-games/index.json b/site/public/v1/software/amazon-digital-software-video-games/index.json new file mode 100644 index 000000000000..c4e898a082e9 --- /dev/null +++ b/site/public/v1/software/amazon-digital-software-video-games/index.json @@ -0,0 +1,19 @@ +{ + "id": 416, + "slug": "amazon-digital-software-video-games", + "name": "Amazon Digital Software & Video Games", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108749491" + ], + "created_at": "2026-07-10T10:12:39.693480", + "updated_at": "2026-07-10T10:12:39.693480", + "url": "/v1/software/amazon-digital-software-video-games" +} diff --git a/site/public/v1/software/amazon-documentdb/index.json b/site/public/v1/software/amazon-documentdb/index.json new file mode 100644 index 000000000000..4193a2794436 --- /dev/null +++ b/site/public/v1/software/amazon-documentdb/index.json @@ -0,0 +1,19 @@ +{ + "id": 417, + "slug": "amazon-documentdb", + "name": "Amazon DocumentDB", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60787643" + ], + "created_at": "2026-07-10T10:12:39.694637", + "updated_at": "2026-07-10T10:12:39.694637", + "url": "/v1/software/amazon-documentdb" +} diff --git a/site/public/v1/software/amazon-elastic-file-system/index.json b/site/public/v1/software/amazon-elastic-file-system/index.json new file mode 100644 index 000000000000..fde52b9e80d8 --- /dev/null +++ b/site/public/v1/software/amazon-elastic-file-system/index.json @@ -0,0 +1,19 @@ +{ + "id": 418, + "slug": "amazon-elastic-file-system", + "name": "Amazon Elastic File System", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q55603775" + ], + "created_at": "2026-07-10T10:12:39.695491", + "updated_at": "2026-07-10T10:12:39.695491", + "url": "/v1/software/amazon-elastic-file-system" +} diff --git a/site/public/v1/software/amazon-kinesis/index.json b/site/public/v1/software/amazon-kinesis/index.json new file mode 100644 index 000000000000..74fc92e2ea34 --- /dev/null +++ b/site/public/v1/software/amazon-kinesis/index.json @@ -0,0 +1,21 @@ +{ + "id": 419, + "slug": "amazon-kinesis", + "name": "Amazon Kinesis", + "release_date": null, + "developers": [ + "Amazon Web Services" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q56358285" + ], + "created_at": "2026-07-10T10:12:39.696573", + "updated_at": "2026-07-10T10:12:39.696573", + "url": "/v1/software/amazon-kinesis" +} diff --git a/site/public/v1/software/amazon-music-for-artists/index.json b/site/public/v1/software/amazon-music-for-artists/index.json new file mode 100644 index 000000000000..dd9eaf35975d --- /dev/null +++ b/site/public/v1/software/amazon-music-for-artists/index.json @@ -0,0 +1,24 @@ +{ + "id": 420, + "slug": "amazon-music-for-artists", + "name": "Amazon Music for Artists", + "release_date": "2020-03-11", + "developers": [ + "Amazon" + ], + "publishers": [], + "operating_systems": [ + "webOS", + "iOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q88046860" + ], + "created_at": "2026-07-10T10:12:39.696573", + "updated_at": "2026-07-10T10:12:39.696573", + "url": "/v1/software/amazon-music-for-artists" +} diff --git a/site/public/v1/software/amazonface-ecosystem-model-ensemble-analysis/index.json b/site/public/v1/software/amazonface-ecosystem-model-ensemble-analysis/index.json new file mode 100644 index 000000000000..175225488a1e --- /dev/null +++ b/site/public/v1/software/amazonface-ecosystem-model-ensemble-analysis/index.json @@ -0,0 +1,21 @@ +{ + "id": 421, + "slug": "amazonface-ecosystem-model-ensemble-analysis", + "name": "AmazonFACE ecosystem model ensemble analysis", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118610755" + ], + "created_at": "2026-07-10T10:12:39.696573", + "updated_at": "2026-07-10T10:12:39.696573", + "url": "/v1/software/amazonface-ecosystem-model-ensemble-analysis" +} diff --git a/site/public/v1/software/amazonface-ethnobotanical-dashboard/index.json b/site/public/v1/software/amazonface-ethnobotanical-dashboard/index.json new file mode 100644 index 000000000000..ca1f148b5800 --- /dev/null +++ b/site/public/v1/software/amazonface-ethnobotanical-dashboard/index.json @@ -0,0 +1,23 @@ +{ + "id": 422, + "slug": "amazonface-ethnobotanical-dashboard", + "name": "AmazonFACE Ethnobotanical Dashboard", + "release_date": "2026-01-01", + "developers": [ + "Felipe Mammoli Andrade" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140456516" + ], + "created_at": "2026-07-10T10:12:39.697558", + "updated_at": "2026-07-10T10:12:39.697558", + "url": "/v1/software/amazonface-ethnobotanical-dashboard" +} diff --git a/site/public/v1/software/amber-smalltalk/index.json b/site/public/v1/software/amber-smalltalk/index.json new file mode 100644 index 000000000000..d399d677e392 --- /dev/null +++ b/site/public/v1/software/amber-smalltalk/index.json @@ -0,0 +1,21 @@ +{ + "id": 423, + "slug": "amber-smalltalk", + "name": "Amber Smalltalk", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Smalltalk" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4741309" + ], + "created_at": "2026-07-10T10:12:39.697558", + "updated_at": "2026-07-10T10:12:39.697558", + "url": "/v1/software/amber-smalltalk" +} diff --git a/site/public/v1/software/amber/index.json b/site/public/v1/software/amber/index.json new file mode 100644 index 000000000000..ed21d8898512 --- /dev/null +++ b/site/public/v1/software/amber/index.json @@ -0,0 +1,23 @@ +{ + "id": 424, + "slug": "amber", + "name": "AMBER", + "release_date": null, + "developers": [ + "University of California, San Francisco" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Fortran" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2458963" + ], + "created_at": "2026-07-10T10:12:39.697558", + "updated_at": "2026-07-10T10:12:39.697558", + "url": "/v1/software/amber" +} diff --git a/site/public/v1/software/ambiguous-restraints-for-iterative-assignment/index.json b/site/public/v1/software/ambiguous-restraints-for-iterative-assignment/index.json new file mode 100644 index 000000000000..da4936b15f71 --- /dev/null +++ b/site/public/v1/software/ambiguous-restraints-for-iterative-assignment/index.json @@ -0,0 +1,19 @@ +{ + "id": 425, + "slug": "ambiguous-restraints-for-iterative-assignment", + "name": "Ambiguous Restraints for Iterative Assignment", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109499967" + ], + "created_at": "2026-07-10T10:12:39.698556", + "updated_at": "2026-07-10T10:12:39.698556", + "url": "/v1/software/ambiguous-restraints-for-iterative-assignment" +} diff --git a/site/public/v1/software/ambulatory-glucose-profile/index.json b/site/public/v1/software/ambulatory-glucose-profile/index.json new file mode 100644 index 000000000000..d72e56f34697 --- /dev/null +++ b/site/public/v1/software/ambulatory-glucose-profile/index.json @@ -0,0 +1,19 @@ +{ + "id": 426, + "slug": "ambulatory-glucose-profile", + "name": "Ambulatory Glucose Profile", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22906324" + ], + "created_at": "2026-07-10T10:12:39.698556", + "updated_at": "2026-07-10T10:12:39.698556", + "url": "/v1/software/ambulatory-glucose-profile" +} diff --git a/site/public/v1/software/amcharge-version-2/index.json b/site/public/v1/software/amcharge-version-2/index.json new file mode 100644 index 000000000000..00b0af7bcab7 --- /dev/null +++ b/site/public/v1/software/amcharge-version-2/index.json @@ -0,0 +1,21 @@ +{ + "id": 427, + "slug": "amcharge-version-2", + "name": "Amcharge version 2", + "release_date": "1990-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [ + "download manager" + ], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124036946" + ], + "created_at": "2026-07-10T10:12:39.699579", + "updated_at": "2026-07-10T10:12:39.699579", + "url": "/v1/software/amcharge-version-2" +} diff --git a/site/public/v1/software/amcharge/index.json b/site/public/v1/software/amcharge/index.json new file mode 100644 index 000000000000..b089e2451c51 --- /dev/null +++ b/site/public/v1/software/amcharge/index.json @@ -0,0 +1,21 @@ +{ + "id": 428, + "slug": "amcharge", + "name": "Amcharge", + "release_date": "1988-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [ + "download manager" + ], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124030072" + ], + "created_at": "2026-07-10T10:12:39.699579", + "updated_at": "2026-07-10T10:12:39.699579", + "url": "/v1/software/amcharge" +} diff --git a/site/public/v1/software/amd-700-chipset-series/index.json b/site/public/v1/software/amd-700-chipset-series/index.json new file mode 100644 index 000000000000..5583c13a3d68 --- /dev/null +++ b/site/public/v1/software/amd-700-chipset-series/index.json @@ -0,0 +1,21 @@ +{ + "id": 429, + "slug": "amd-700-chipset-series", + "name": "AMD 700 chipset series", + "release_date": null, + "developers": [ + "AMD" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q294730" + ], + "created_at": "2026-07-10T10:12:39.699579", + "updated_at": "2026-07-10T10:12:39.699579", + "url": "/v1/software/amd-700-chipset-series" +} diff --git a/site/public/v1/software/amd-app/index.json b/site/public/v1/software/amd-app/index.json new file mode 100644 index 000000000000..23952af09904 --- /dev/null +++ b/site/public/v1/software/amd-app/index.json @@ -0,0 +1,19 @@ +{ + "id": 430, + "slug": "amd-app", + "name": "AMD APP", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22126927" + ], + "created_at": "2026-07-10T10:12:39.699579", + "updated_at": "2026-07-10T10:12:39.699579", + "url": "/v1/software/amd-app" +} diff --git a/site/public/v1/software/amd-codexl/index.json b/site/public/v1/software/amd-codexl/index.json new file mode 100644 index 000000000000..2a0c4e375785 --- /dev/null +++ b/site/public/v1/software/amd-codexl/index.json @@ -0,0 +1,25 @@ +{ + "id": 431, + "slug": "amd-codexl", + "name": "AMD CodeXL", + "release_date": null, + "developers": [ + "AMD" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16974786" + ], + "created_at": "2026-07-10T10:12:39.700547", + "updated_at": "2026-07-10T10:12:39.700547", + "url": "/v1/software/amd-codexl" +} diff --git a/site/public/v1/software/amd-ryzen-master/index.json b/site/public/v1/software/amd-ryzen-master/index.json new file mode 100644 index 000000000000..efeb99cc215a --- /dev/null +++ b/site/public/v1/software/amd-ryzen-master/index.json @@ -0,0 +1,23 @@ +{ + "id": 432, + "slug": "amd-ryzen-master", + "name": "AMD Ryzen Master", + "release_date": null, + "developers": [ + "AMD" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "end-user license agreement" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125657043" + ], + "created_at": "2026-07-10T10:12:39.700547", + "updated_at": "2026-07-10T10:12:39.700547", + "url": "/v1/software/amd-ryzen-master" +} diff --git a/site/public/v1/software/ame-accounting-software/index.json b/site/public/v1/software/ame-accounting-software/index.json new file mode 100644 index 000000000000..7734a2faac23 --- /dev/null +++ b/site/public/v1/software/ame-accounting-software/index.json @@ -0,0 +1,23 @@ +{ + "id": 433, + "slug": "ame-accounting-software", + "name": "AME Accounting Software", + "release_date": "2004-01-01", + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [ + "Visual Basic" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4652606" + ], + "created_at": "2026-07-10T10:12:39.700547", + "updated_at": "2026-07-10T10:12:39.700547", + "url": "/v1/software/ame-accounting-software" +} diff --git a/site/public/v1/software/amelica-xml/index.json b/site/public/v1/software/amelica-xml/index.json new file mode 100644 index 000000000000..008e4ea58331 --- /dev/null +++ b/site/public/v1/software/amelica-xml/index.json @@ -0,0 +1,19 @@ +{ + "id": 434, + "slug": "amelica-xml", + "name": "AmeliCA XML", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109478562" + ], + "created_at": "2026-07-10T10:12:39.701596", + "updated_at": "2026-07-10T10:12:39.701596", + "url": "/v1/software/amelica-xml" +} diff --git a/site/public/v1/software/ametek-crank/index.json b/site/public/v1/software/ametek-crank/index.json new file mode 100644 index 000000000000..586871213e32 --- /dev/null +++ b/site/public/v1/software/ametek-crank/index.json @@ -0,0 +1,21 @@ +{ + "id": 435, + "slug": "ametek-crank", + "name": "AMETEK Crank", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Lua" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110702295" + ], + "created_at": "2026-07-10T10:12:39.701596", + "updated_at": "2026-07-10T10:12:39.701596", + "url": "/v1/software/ametek-crank" +} diff --git a/site/public/v1/software/amiexpress/index.json b/site/public/v1/software/amiexpress/index.json new file mode 100644 index 000000000000..5d4b1e6275e5 --- /dev/null +++ b/site/public/v1/software/amiexpress/index.json @@ -0,0 +1,19 @@ +{ + "id": 436, + "slug": "amiexpress", + "name": "Amiexpress", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4746183" + ], + "created_at": "2026-07-10T10:12:39.701596", + "updated_at": "2026-07-10T10:12:39.701596", + "url": "/v1/software/amiexpress" +} diff --git a/site/public/v1/software/amiga-basic/index.json b/site/public/v1/software/amiga-basic/index.json new file mode 100644 index 000000000000..067d9e4a0666 --- /dev/null +++ b/site/public/v1/software/amiga-basic/index.json @@ -0,0 +1,24 @@ +{ + "id": 437, + "slug": "amiga-basic", + "name": "Amiga Basic", + "release_date": null, + "developers": [ + "MetaComCo", + "Microsoft" + ], + "publishers": [], + "operating_systems": [ + "AmigaOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q426038" + ], + "created_at": "2026-07-10T10:12:39.701596", + "updated_at": "2026-07-10T10:12:39.701596", + "url": "/v1/software/amiga-basic" +} diff --git a/site/public/v1/software/amiga-forever/index.json b/site/public/v1/software/amiga-forever/index.json new file mode 100644 index 000000000000..8a458ac6ad4f --- /dev/null +++ b/site/public/v1/software/amiga-forever/index.json @@ -0,0 +1,21 @@ +{ + "id": 438, + "slug": "amiga-forever", + "name": "Amiga Forever", + "release_date": null, + "developers": [ + "Cloanto" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4746194" + ], + "created_at": "2026-07-10T10:12:39.702546", + "updated_at": "2026-07-10T10:12:39.702546", + "url": "/v1/software/amiga-forever" +} diff --git a/site/public/v1/software/amigatex/index.json b/site/public/v1/software/amigatex/index.json new file mode 100644 index 000000000000..eeb5dde177f4 --- /dev/null +++ b/site/public/v1/software/amigatex/index.json @@ -0,0 +1,19 @@ +{ + "id": 439, + "slug": "amigatex", + "name": "AmigaTeX", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q30636831" + ], + "created_at": "2026-07-10T10:12:39.702546", + "updated_at": "2026-07-10T10:12:39.702546", + "url": "/v1/software/amigatex" +} diff --git a/site/public/v1/software/amir/index.json b/site/public/v1/software/amir/index.json new file mode 100644 index 000000000000..fc63bfaad9a8 --- /dev/null +++ b/site/public/v1/software/amir/index.json @@ -0,0 +1,19 @@ +{ + "id": 440, + "slug": "amir", + "name": "AMIR", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q41795719" + ], + "created_at": "2026-07-10T10:12:39.703545", + "updated_at": "2026-07-10T10:12:39.703545", + "url": "/v1/software/amir" +} diff --git a/site/public/v1/software/amira/index.json b/site/public/v1/software/amira/index.json new file mode 100644 index 000000000000..11e40b59ceec --- /dev/null +++ b/site/public/v1/software/amira/index.json @@ -0,0 +1,22 @@ +{ + "id": 441, + "slug": "amira", + "name": "Amira", + "release_date": null, + "developers": [ + "Zuse Institute Berlin", + "Thermo Fisher Scientific Inc." + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4746668" + ], + "created_at": "2026-07-10T10:12:39.703545", + "updated_at": "2026-07-10T10:12:39.703545", + "url": "/v1/software/amira" +} diff --git a/site/public/v1/software/amiro-cms/index.json b/site/public/v1/software/amiro-cms/index.json new file mode 100644 index 000000000000..eaab0bd19d2a --- /dev/null +++ b/site/public/v1/software/amiro-cms/index.json @@ -0,0 +1,21 @@ +{ + "id": 442, + "slug": "amiro-cms", + "name": "Amiro.CMS", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "PHP" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4033918" + ], + "created_at": "2026-07-10T10:12:39.703545", + "updated_at": "2026-07-10T10:12:39.703545", + "url": "/v1/software/amiro-cms" +} diff --git a/site/public/v1/software/amitcp/index.json b/site/public/v1/software/amitcp/index.json new file mode 100644 index 000000000000..fea9020a3106 --- /dev/null +++ b/site/public/v1/software/amitcp/index.json @@ -0,0 +1,21 @@ +{ + "id": 443, + "slug": "amitcp", + "name": "AmiTCP", + "release_date": "1993-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "GNU General Public License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2652011" + ], + "created_at": "2026-07-10T10:12:39.703545", + "updated_at": "2026-07-10T10:12:39.703545", + "url": "/v1/software/amitcp" +} diff --git a/site/public/v1/software/amithlon/index.json b/site/public/v1/software/amithlon/index.json new file mode 100644 index 000000000000..dd8c10244e13 --- /dev/null +++ b/site/public/v1/software/amithlon/index.json @@ -0,0 +1,19 @@ +{ + "id": 444, + "slug": "amithlon", + "name": "Amithlon", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8197470" + ], + "created_at": "2026-07-10T10:12:39.704491", + "updated_at": "2026-07-10T10:12:39.704491", + "url": "/v1/software/amithlon" +} diff --git a/site/public/v1/software/amiwm/index.json b/site/public/v1/software/amiwm/index.json new file mode 100644 index 000000000000..102a0755cfd2 --- /dev/null +++ b/site/public/v1/software/amiwm/index.json @@ -0,0 +1,19 @@ +{ + "id": 445, + "slug": "amiwm", + "name": "Amiwm", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4746990" + ], + "created_at": "2026-07-10T10:12:39.704491", + "updated_at": "2026-07-10T10:12:39.704491", + "url": "/v1/software/amiwm" +} diff --git a/site/public/v1/software/ammyy/index.json b/site/public/v1/software/ammyy/index.json new file mode 100644 index 000000000000..362fe24b1927 --- /dev/null +++ b/site/public/v1/software/ammyy/index.json @@ -0,0 +1,19 @@ +{ + "id": 446, + "slug": "ammyy", + "name": "Ammyy", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4033927" + ], + "created_at": "2026-07-10T10:12:39.705489", + "updated_at": "2026-07-10T10:12:39.705489", + "url": "/v1/software/ammyy" +} diff --git a/site/public/v1/software/amoebax/index.json b/site/public/v1/software/amoebax/index.json new file mode 100644 index 000000000000..3c94d203ff8a --- /dev/null +++ b/site/public/v1/software/amoebax/index.json @@ -0,0 +1,19 @@ +{ + "id": 447, + "slug": "amoebax", + "name": "Amoebax", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62854952" + ], + "created_at": "2026-07-10T10:12:39.705489", + "updated_at": "2026-07-10T10:12:39.705489", + "url": "/v1/software/amoebax" +} diff --git a/site/public/v1/software/amortization/index.json b/site/public/v1/software/amortization/index.json new file mode 100644 index 000000000000..482f9771e51f --- /dev/null +++ b/site/public/v1/software/amortization/index.json @@ -0,0 +1,19 @@ +{ + "id": 448, + "slug": "amortization", + "name": "Amortization", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121631736" + ], + "created_at": "2026-07-10T10:12:39.705489", + "updated_at": "2026-07-10T10:12:39.705489", + "url": "/v1/software/amortization" +} diff --git a/site/public/v1/software/amos-q112594634/index.json b/site/public/v1/software/amos-q112594634/index.json new file mode 100644 index 000000000000..03f5c9a6016b --- /dev/null +++ b/site/public/v1/software/amos-q112594634/index.json @@ -0,0 +1,19 @@ +{ + "id": 449, + "slug": "amos-q112594634", + "name": "AMOS", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112594634" + ], + "created_at": "2026-07-10T10:12:39.705489", + "updated_at": "2026-07-10T10:12:39.706487", + "url": "/v1/software/amos-q112594634" +} diff --git a/site/public/v1/software/amos/index.json b/site/public/v1/software/amos/index.json new file mode 100644 index 000000000000..4e00d4753fe0 --- /dev/null +++ b/site/public/v1/software/amos/index.json @@ -0,0 +1,26 @@ +{ + "id": 450, + "slug": "amos", + "name": "AMOS", + "release_date": null, + "developers": [ + "Swiss AviationSoftware" + ], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q38911792" + ], + "created_at": "2026-07-10T10:12:39.706487", + "updated_at": "2026-07-10T10:12:39.706487", + "url": "/v1/software/amos" +} diff --git a/site/public/v1/software/amosaic/index.json b/site/public/v1/software/amosaic/index.json new file mode 100644 index 000000000000..579081243b76 --- /dev/null +++ b/site/public/v1/software/amosaic/index.json @@ -0,0 +1,23 @@ +{ + "id": 451, + "slug": "amosaic", + "name": "AMosaic", + "release_date": "1993-12-25", + "developers": [ + "Michael Fischer" + ], + "publishers": [], + "operating_systems": [ + "AmigaOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2430200" + ], + "created_at": "2026-07-10T10:12:39.706487", + "updated_at": "2026-07-10T10:12:39.706487", + "url": "/v1/software/amosaic" +} diff --git a/site/public/v1/software/amplitube/index.json b/site/public/v1/software/amplitube/index.json new file mode 100644 index 000000000000..6e4d4778243a --- /dev/null +++ b/site/public/v1/software/amplitube/index.json @@ -0,0 +1,21 @@ +{ + "id": 452, + "slug": "amplitube", + "name": "AmpliTube", + "release_date": null, + "developers": [ + "IK Multimedia Production srl" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4748479" + ], + "created_at": "2026-07-10T10:12:39.706487", + "updated_at": "2026-07-10T10:12:39.706487", + "url": "/v1/software/amplitube" +} diff --git a/site/public/v1/software/amr/index.json b/site/public/v1/software/amr/index.json new file mode 100644 index 000000000000..137da9b8ae04 --- /dev/null +++ b/site/public/v1/software/amr/index.json @@ -0,0 +1,19 @@ +{ + "id": 453, + "slug": "amr", + "name": "AMR", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139073239" + ], + "created_at": "2026-07-10T10:12:39.707605", + "updated_at": "2026-07-10T10:12:39.707605", + "url": "/v1/software/amr" +} diff --git a/site/public/v1/software/amrfinderplus/index.json b/site/public/v1/software/amrfinderplus/index.json new file mode 100644 index 000000000000..09f29a99115f --- /dev/null +++ b/site/public/v1/software/amrfinderplus/index.json @@ -0,0 +1,19 @@ +{ + "id": 454, + "slug": "amrfinderplus", + "name": "AMRFinderPlus", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110235670" + ], + "created_at": "2026-07-10T10:12:39.709102", + "updated_at": "2026-07-10T10:12:39.709102", + "url": "/v1/software/amrfinderplus" +} diff --git a/site/public/v1/software/ams-device-manager/index.json b/site/public/v1/software/ams-device-manager/index.json new file mode 100644 index 000000000000..c8619bf7c787 --- /dev/null +++ b/site/public/v1/software/ams-device-manager/index.json @@ -0,0 +1,21 @@ +{ + "id": 455, + "slug": "ams-device-manager", + "name": "AMS Device Manager", + "release_date": null, + "developers": [ + "Emerson Electric" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4652727" + ], + "created_at": "2026-07-10T10:12:39.709102", + "updated_at": "2026-07-10T10:12:39.709102", + "url": "/v1/software/ams-device-manager" +} diff --git a/site/public/v1/software/amsterdam-density-functional/index.json b/site/public/v1/software/amsterdam-density-functional/index.json new file mode 100644 index 000000000000..214e88c11730 --- /dev/null +++ b/site/public/v1/software/amsterdam-density-functional/index.json @@ -0,0 +1,19 @@ +{ + "id": 456, + "slug": "amsterdam-density-functional", + "name": "Amsterdam Density Functional", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4748832" + ], + "created_at": "2026-07-10T10:12:39.709102", + "updated_at": "2026-07-10T10:12:39.709102", + "url": "/v1/software/amsterdam-density-functional" +} diff --git a/site/public/v1/software/amtk/index.json b/site/public/v1/software/amtk/index.json new file mode 100644 index 000000000000..64ba5b597626 --- /dev/null +++ b/site/public/v1/software/amtk/index.json @@ -0,0 +1,21 @@ +{ + "id": 457, + "slug": "amtk", + "name": "Amtk", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "GNU Lesser General Public License, version 2.1 or later" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q68089911" + ], + "created_at": "2026-07-10T10:12:39.710197", + "updated_at": "2026-07-10T10:12:39.710197", + "url": "/v1/software/amtk" +} diff --git a/site/public/v1/software/an-introduction-to-hdf5/index.json b/site/public/v1/software/an-introduction-to-hdf5/index.json new file mode 100644 index 000000000000..93eb13518662 --- /dev/null +++ b/site/public/v1/software/an-introduction-to-hdf5/index.json @@ -0,0 +1,21 @@ +{ + "id": 458, + "slug": "an-introduction-to-hdf5", + "name": "An Introduction to HDF5", + "release_date": "2023-08-18", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "3-clause BSD License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127599311" + ], + "created_at": "2026-07-10T10:12:39.710197", + "updated_at": "2026-07-10T10:12:39.710197", + "url": "/v1/software/an-introduction-to-hdf5" +} diff --git a/site/public/v1/software/analyse-it-method-validation-edition/index.json b/site/public/v1/software/analyse-it-method-validation-edition/index.json new file mode 100644 index 000000000000..9640fc556f3b --- /dev/null +++ b/site/public/v1/software/analyse-it-method-validation-edition/index.json @@ -0,0 +1,19 @@ +{ + "id": 459, + "slug": "analyse-it-method-validation-edition", + "name": "Analyse-it Method Validation Edition", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084386" + ], + "created_at": "2026-07-10T10:12:39.714180", + "updated_at": "2026-07-10T10:12:39.714180", + "url": "/v1/software/analyse-it-method-validation-edition" +} diff --git a/site/public/v1/software/analyse-it-standard-edition/index.json b/site/public/v1/software/analyse-it-standard-edition/index.json new file mode 100644 index 000000000000..74bf18304cb3 --- /dev/null +++ b/site/public/v1/software/analyse-it-standard-edition/index.json @@ -0,0 +1,19 @@ +{ + "id": 460, + "slug": "analyse-it-standard-edition", + "name": "Analyse-it Standard Edition", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084387" + ], + "created_at": "2026-07-10T10:12:39.716202", + "updated_at": "2026-07-10T10:12:39.716202", + "url": "/v1/software/analyse-it-standard-edition" +} diff --git a/site/public/v1/software/analyse-it/index.json b/site/public/v1/software/analyse-it/index.json new file mode 100644 index 000000000000..e5f9a2f838d3 --- /dev/null +++ b/site/public/v1/software/analyse-it/index.json @@ -0,0 +1,19 @@ +{ + "id": 461, + "slug": "analyse-it", + "name": "Analyse-it", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4751088" + ], + "created_at": "2026-07-10T10:12:39.718191", + "updated_at": "2026-07-10T10:12:39.718191", + "url": "/v1/software/analyse-it" +} diff --git a/site/public/v1/software/analyst-s-notebook/index.json b/site/public/v1/software/analyst-s-notebook/index.json new file mode 100644 index 000000000000..44e94ca4ae87 --- /dev/null +++ b/site/public/v1/software/analyst-s-notebook/index.json @@ -0,0 +1,21 @@ +{ + "id": 462, + "slug": "analyst-s-notebook", + "name": "Analyst's Notebook", + "release_date": null, + "developers": [ + "IBM" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4751111" + ], + "created_at": "2026-07-10T10:12:39.719205", + "updated_at": "2026-07-10T10:12:39.719205", + "url": "/v1/software/analyst-s-notebook" +} diff --git a/site/public/v1/software/analyze/index.json b/site/public/v1/software/analyze/index.json new file mode 100644 index 000000000000..c53ce9532dea --- /dev/null +++ b/site/public/v1/software/analyze/index.json @@ -0,0 +1,21 @@ +{ + "id": 463, + "slug": "analyze", + "name": "Analyze", + "release_date": null, + "developers": [ + "Mayo Clinic" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2845288" + ], + "created_at": "2026-07-10T10:12:39.720457", + "updated_at": "2026-07-10T10:12:39.720457", + "url": "/v1/software/analyze" +} diff --git a/site/public/v1/software/andcards/index.json b/site/public/v1/software/andcards/index.json new file mode 100644 index 000000000000..b85814c7d35a --- /dev/null +++ b/site/public/v1/software/andcards/index.json @@ -0,0 +1,23 @@ +{ + "id": 464, + "slug": "andcards", + "name": "andcards", + "release_date": "2018-01-01", + "developers": [], + "publishers": [], + "operating_systems": [ + "iOS" + ], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q47161712" + ], + "created_at": "2026-07-10T10:12:39.722468", + "updated_at": "2026-07-10T10:12:39.722468", + "url": "/v1/software/andcards" +} diff --git a/site/public/v1/software/andchat/index.json b/site/public/v1/software/andchat/index.json new file mode 100644 index 000000000000..1aec30e2dcf7 --- /dev/null +++ b/site/public/v1/software/andchat/index.json @@ -0,0 +1,21 @@ +{ + "id": 465, + "slug": "andchat", + "name": "Andchat", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4034003" + ], + "created_at": "2026-07-10T10:12:39.724559", + "updated_at": "2026-07-10T10:12:39.724559", + "url": "/v1/software/andchat" +} diff --git a/site/public/v1/software/andengine/index.json b/site/public/v1/software/andengine/index.json new file mode 100644 index 000000000000..524f2a34b2d9 --- /dev/null +++ b/site/public/v1/software/andengine/index.json @@ -0,0 +1,19 @@ +{ + "id": 466, + "slug": "andengine", + "name": "AndEngine", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q20312927" + ], + "created_at": "2026-07-10T10:12:39.725471", + "updated_at": "2026-07-10T10:12:39.725471", + "url": "/v1/software/andengine" +} diff --git a/site/public/v1/software/android-alpha/index.json b/site/public/v1/software/android-alpha/index.json new file mode 100644 index 000000000000..2d49f1a53a8f --- /dev/null +++ b/site/public/v1/software/android-alpha/index.json @@ -0,0 +1,19 @@ +{ + "id": 467, + "slug": "android-alpha", + "name": "Android Alpha", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q89700698" + ], + "created_at": "2026-07-10T10:12:39.726577", + "updated_at": "2026-07-10T10:12:39.726577", + "url": "/v1/software/android-alpha" +} diff --git a/site/public/v1/software/android-ndk/index.json b/site/public/v1/software/android-ndk/index.json new file mode 100644 index 000000000000..487aa3fac562 --- /dev/null +++ b/site/public/v1/software/android-ndk/index.json @@ -0,0 +1,19 @@ +{ + "id": 468, + "slug": "android-ndk", + "name": "Android NDK", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110745757" + ], + "created_at": "2026-07-10T10:12:39.727576", + "updated_at": "2026-07-10T10:12:39.727576", + "url": "/v1/software/android-ndk" +} diff --git a/site/public/v1/software/android-pay/index.json b/site/public/v1/software/android-pay/index.json new file mode 100644 index 000000000000..7e41825d24ee --- /dev/null +++ b/site/public/v1/software/android-pay/index.json @@ -0,0 +1,23 @@ +{ + "id": 469, + "slug": "android-pay", + "name": "Android Pay", + "release_date": "2015-09-11", + "developers": [ + "Google" + ], + "publishers": [], + "operating_systems": [ + "Android KitKat" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q42417874" + ], + "created_at": "2026-07-10T10:12:39.727576", + "updated_at": "2026-07-10T10:12:39.727576", + "url": "/v1/software/android-pay" +} diff --git a/site/public/v1/software/android-privacy-guard/index.json b/site/public/v1/software/android-privacy-guard/index.json new file mode 100644 index 000000000000..c6924b246d96 --- /dev/null +++ b/site/public/v1/software/android-privacy-guard/index.json @@ -0,0 +1,23 @@ +{ + "id": 470, + "slug": "android-privacy-guard", + "name": "Android Privacy Guard", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Java" + ], + "licenses": [ + "Apache License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4759460" + ], + "created_at": "2026-07-10T10:12:39.728546", + "updated_at": "2026-07-10T10:12:39.728546", + "url": "/v1/software/android-privacy-guard" +} diff --git a/site/public/v1/software/android-sdk/index.json b/site/public/v1/software/android-sdk/index.json new file mode 100644 index 000000000000..98869bd2deac --- /dev/null +++ b/site/public/v1/software/android-sdk/index.json @@ -0,0 +1,23 @@ +{ + "id": 471, + "slug": "android-sdk", + "name": "Android SDK", + "release_date": "2009-10-01", + "developers": [ + "Google" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Java" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q29364625" + ], + "created_at": "2026-07-10T10:12:39.728546", + "updated_at": "2026-07-10T10:12:39.728546", + "url": "/v1/software/android-sdk" +} diff --git a/site/public/v1/software/androidify/index.json b/site/public/v1/software/androidify/index.json new file mode 100644 index 000000000000..89202c5598d0 --- /dev/null +++ b/site/public/v1/software/androidify/index.json @@ -0,0 +1,23 @@ +{ + "id": 472, + "slug": "androidify", + "name": "Androidify", + "release_date": null, + "developers": [ + "Google" + ], + "publishers": [ + "Google" + ], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108040158" + ], + "created_at": "2026-07-10T10:12:39.730537", + "updated_at": "2026-07-10T10:12:39.730537", + "url": "/v1/software/androidify" +} diff --git a/site/public/v1/software/andromda/index.json b/site/public/v1/software/andromda/index.json new file mode 100644 index 000000000000..8374c9cd1d09 --- /dev/null +++ b/site/public/v1/software/andromda/index.json @@ -0,0 +1,19 @@ +{ + "id": 473, + "slug": "andromda", + "name": "AndroMDA", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5675380" + ], + "created_at": "2026-07-10T10:12:39.730537", + "updated_at": "2026-07-10T10:12:39.730537", + "url": "/v1/software/andromda" +} diff --git a/site/public/v1/software/anglonas/index.json b/site/public/v1/software/anglonas/index.json new file mode 100644 index 000000000000..aa0984e7e35e --- /dev/null +++ b/site/public/v1/software/anglonas/index.json @@ -0,0 +1,19 @@ +{ + "id": 474, + "slug": "anglonas", + "name": "Anglonas", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11184371" + ], + "created_at": "2026-07-10T10:12:39.731540", + "updated_at": "2026-07-10T10:12:39.731540", + "url": "/v1/software/anglonas" +} diff --git a/site/public/v1/software/animal-behaviour-pro/index.json b/site/public/v1/software/animal-behaviour-pro/index.json new file mode 100644 index 000000000000..e4c9ed2d2650 --- /dev/null +++ b/site/public/v1/software/animal-behaviour-pro/index.json @@ -0,0 +1,21 @@ +{ + "id": 475, + "slug": "animal-behaviour-pro", + "name": "Animal Behaviour Pro", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "iOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106998604" + ], + "created_at": "2026-07-10T10:12:39.731540", + "updated_at": "2026-07-10T10:12:39.731540", + "url": "/v1/software/animal-behaviour-pro" +} diff --git a/site/public/v1/software/animal-crossing-new-horizons-island-transfer-tool/index.json b/site/public/v1/software/animal-crossing-new-horizons-island-transfer-tool/index.json new file mode 100644 index 000000000000..bb4176d337fe --- /dev/null +++ b/site/public/v1/software/animal-crossing-new-horizons-island-transfer-tool/index.json @@ -0,0 +1,23 @@ +{ + "id": 476, + "slug": "animal-crossing-new-horizons-island-transfer-tool", + "name": "Animal Crossing: New Horizons Island Transfer Tool", + "release_date": "2020-11-18", + "developers": [ + "Nintendo" + ], + "publishers": [ + "Nintendo" + ], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q114281608" + ], + "created_at": "2026-07-10T10:12:39.732610", + "updated_at": "2026-07-10T10:12:39.732610", + "url": "/v1/software/animal-crossing-new-horizons-island-transfer-tool" +} diff --git a/site/public/v1/software/animal-observer/index.json b/site/public/v1/software/animal-observer/index.json new file mode 100644 index 000000000000..90619875f6af --- /dev/null +++ b/site/public/v1/software/animal-observer/index.json @@ -0,0 +1,21 @@ +{ + "id": 477, + "slug": "animal-observer", + "name": "Animal Observer", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "iOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106998644" + ], + "created_at": "2026-07-10T10:12:39.732610", + "updated_at": "2026-07-10T10:12:39.732610", + "url": "/v1/software/animal-observer" +} diff --git a/site/public/v1/software/animation-master/index.json b/site/public/v1/software/animation-master/index.json new file mode 100644 index 000000000000..c09593542013 --- /dev/null +++ b/site/public/v1/software/animation-master/index.json @@ -0,0 +1,19 @@ +{ + "id": 478, + "slug": "animation-master", + "name": "Animation:Master", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2653036" + ], + "created_at": "2026-07-10T10:12:39.733564", + "updated_at": "2026-07-10T10:12:39.733564", + "url": "/v1/software/animation-master" +} diff --git a/site/public/v1/software/animation-shop/index.json b/site/public/v1/software/animation-shop/index.json new file mode 100644 index 000000000000..a8dc1dae793c --- /dev/null +++ b/site/public/v1/software/animation-shop/index.json @@ -0,0 +1,21 @@ +{ + "id": 479, + "slug": "animation-shop", + "name": "Animation Shop", + "release_date": null, + "developers": [ + "Jasc Software" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q9154770" + ], + "created_at": "2026-07-10T10:12:39.733564", + "updated_at": "2026-07-10T10:12:39.733564", + "url": "/v1/software/animation-shop" +} diff --git a/site/public/v1/software/animatlab/index.json b/site/public/v1/software/animatlab/index.json new file mode 100644 index 000000000000..48cc71245da0 --- /dev/null +++ b/site/public/v1/software/animatlab/index.json @@ -0,0 +1,19 @@ +{ + "id": 480, + "slug": "animatlab", + "name": "AnimatLab", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17003956" + ], + "created_at": "2026-07-10T10:12:39.735472", + "updated_at": "2026-07-10T10:12:39.735472", + "url": "/v1/software/animatlab" +} diff --git a/site/public/v1/software/animl/index.json b/site/public/v1/software/animl/index.json new file mode 100644 index 000000000000..4b7456e2846b --- /dev/null +++ b/site/public/v1/software/animl/index.json @@ -0,0 +1,21 @@ +{ + "id": 481, + "slug": "animl", + "name": "AniML", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124579100" + ], + "created_at": "2026-07-10T10:12:39.735472", + "updated_at": "2026-07-10T10:12:39.735472", + "url": "/v1/software/animl" +} diff --git a/site/public/v1/software/animoji/index.json b/site/public/v1/software/animoji/index.json new file mode 100644 index 000000000000..8f88ba3f26e4 --- /dev/null +++ b/site/public/v1/software/animoji/index.json @@ -0,0 +1,21 @@ +{ + "id": 482, + "slug": "animoji", + "name": "Animoji", + "release_date": null, + "developers": [ + "Apple Inc." + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q48937918" + ], + "created_at": "2026-07-10T10:12:39.736469", + "updated_at": "2026-07-10T10:12:39.736469", + "url": "/v1/software/animoji" +} diff --git a/site/public/v1/software/animoog/index.json b/site/public/v1/software/animoog/index.json new file mode 100644 index 000000000000..1299c5fa8653 --- /dev/null +++ b/site/public/v1/software/animoog/index.json @@ -0,0 +1,19 @@ +{ + "id": 483, + "slug": "animoog", + "name": "Animoog", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4765196" + ], + "created_at": "2026-07-10T10:12:39.736469", + "updated_at": "2026-07-10T10:12:39.736469", + "url": "/v1/software/animoog" +} diff --git a/site/public/v1/software/aniuta/index.json b/site/public/v1/software/aniuta/index.json new file mode 100644 index 000000000000..11c3df854642 --- /dev/null +++ b/site/public/v1/software/aniuta/index.json @@ -0,0 +1,21 @@ +{ + "id": 484, + "slug": "aniuta", + "name": "ANiUTa", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "iOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q30929789" + ], + "created_at": "2026-07-10T10:12:39.737466", + "updated_at": "2026-07-10T10:12:39.737466", + "url": "/v1/software/aniuta" +} diff --git a/site/public/v1/software/annotation-graph-toolkit/index.json b/site/public/v1/software/annotation-graph-toolkit/index.json new file mode 100644 index 000000000000..26db743c384a --- /dev/null +++ b/site/public/v1/software/annotation-graph-toolkit/index.json @@ -0,0 +1,24 @@ +{ + "id": 485, + "slug": "annotation-graph-toolkit", + "name": "Annotation Graph Toolkit", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "Common Public License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q104891173" + ], + "created_at": "2026-07-10T10:12:39.737466", + "updated_at": "2026-07-10T10:12:39.737466", + "url": "/v1/software/annotation-graph-toolkit" +} diff --git a/site/public/v1/software/annotation-studio/index.json b/site/public/v1/software/annotation-studio/index.json new file mode 100644 index 000000000000..a0331b911221 --- /dev/null +++ b/site/public/v1/software/annotation-studio/index.json @@ -0,0 +1,19 @@ +{ + "id": 486, + "slug": "annotation-studio", + "name": "Annotation Studio", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084389" + ], + "created_at": "2026-07-10T10:12:39.738467", + "updated_at": "2026-07-10T10:12:39.738467", + "url": "/v1/software/annotation-studio" +} diff --git a/site/public/v1/software/annotationdbi/index.json b/site/public/v1/software/annotationdbi/index.json new file mode 100644 index 000000000000..901f60ce9f96 --- /dev/null +++ b/site/public/v1/software/annotationdbi/index.json @@ -0,0 +1,19 @@ +{ + "id": 487, + "slug": "annotationdbi", + "name": "AnnotationDbi", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123192307" + ], + "created_at": "2026-07-10T10:12:39.738467", + "updated_at": "2026-07-10T10:12:39.738467", + "url": "/v1/software/annotationdbi" +} diff --git a/site/public/v1/software/annotations-for-mac/index.json b/site/public/v1/software/annotations-for-mac/index.json new file mode 100644 index 000000000000..b653533fb694 --- /dev/null +++ b/site/public/v1/software/annotations-for-mac/index.json @@ -0,0 +1,23 @@ +{ + "id": 488, + "slug": "annotations-for-mac", + "name": "Annotations for Mac", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "macOS" + ], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105229735" + ], + "created_at": "2026-07-10T10:12:39.738467", + "updated_at": "2026-07-10T10:12:39.738467", + "url": "/v1/software/annotations-for-mac" +} diff --git a/site/public/v1/software/annotator-s-workbench/index.json b/site/public/v1/software/annotator-s-workbench/index.json new file mode 100644 index 000000000000..3fcf2889a92b --- /dev/null +++ b/site/public/v1/software/annotator-s-workbench/index.json @@ -0,0 +1,19 @@ +{ + "id": 489, + "slug": "annotator-s-workbench", + "name": "Annotator's Workbench", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084390" + ], + "created_at": "2026-07-10T10:12:39.738467", + "updated_at": "2026-07-10T10:12:39.738467", + "url": "/v1/software/annotator-s-workbench" +} diff --git a/site/public/v1/software/annotorious/index.json b/site/public/v1/software/annotorious/index.json new file mode 100644 index 000000000000..65d5b8953eb9 --- /dev/null +++ b/site/public/v1/software/annotorious/index.json @@ -0,0 +1,21 @@ +{ + "id": 490, + "slug": "annotorious", + "name": "Annotorious", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "3-clause BSD License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110088633" + ], + "created_at": "2026-07-10T10:12:39.739467", + "updated_at": "2026-07-10T10:12:39.739467", + "url": "/v1/software/annotorious" +} diff --git a/site/public/v1/software/annotum/index.json b/site/public/v1/software/annotum/index.json new file mode 100644 index 000000000000..56c10feee72e --- /dev/null +++ b/site/public/v1/software/annotum/index.json @@ -0,0 +1,19 @@ +{ + "id": 491, + "slug": "annotum", + "name": "Annotum", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084391" + ], + "created_at": "2026-07-10T10:12:39.739467", + "updated_at": "2026-07-10T10:12:39.739467", + "url": "/v1/software/annotum" +} diff --git a/site/public/v1/software/annozilla-annotea-on-mozilla/index.json b/site/public/v1/software/annozilla-annotea-on-mozilla/index.json new file mode 100644 index 000000000000..73c176171528 --- /dev/null +++ b/site/public/v1/software/annozilla-annotea-on-mozilla/index.json @@ -0,0 +1,19 @@ +{ + "id": 492, + "slug": "annozilla-annotea-on-mozilla", + "name": "Annozilla (Annotea on Mozilla)", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084392" + ], + "created_at": "2026-07-10T10:12:39.739467", + "updated_at": "2026-07-10T10:12:39.739467", + "url": "/v1/software/annozilla-annotea-on-mozilla" +} diff --git a/site/public/v1/software/anomaly-detection-at-multiple-scales/index.json b/site/public/v1/software/anomaly-detection-at-multiple-scales/index.json new file mode 100644 index 000000000000..16dac8e7a121 --- /dev/null +++ b/site/public/v1/software/anomaly-detection-at-multiple-scales/index.json @@ -0,0 +1,19 @@ +{ + "id": 493, + "slug": "anomaly-detection-at-multiple-scales", + "name": "Anomaly Detection at Multiple Scales", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4769945" + ], + "created_at": "2026-07-10T10:12:39.740466", + "updated_at": "2026-07-10T10:12:39.740466", + "url": "/v1/software/anomaly-detection-at-multiple-scales" +} diff --git a/site/public/v1/software/anonet-q4991384/index.json b/site/public/v1/software/anonet-q4991384/index.json new file mode 100644 index 000000000000..3972b57aaccf --- /dev/null +++ b/site/public/v1/software/anonet-q4991384/index.json @@ -0,0 +1,19 @@ +{ + "id": 494, + "slug": "anonet-q4991384", + "name": "AnoNet", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4991384" + ], + "created_at": "2026-07-10T10:12:39.740466", + "updated_at": "2026-07-10T10:12:39.740466", + "url": "/v1/software/anonet-q4991384" +} diff --git a/site/public/v1/software/anonet/index.json b/site/public/v1/software/anonet/index.json new file mode 100644 index 000000000000..82ce2bf8fb6e --- /dev/null +++ b/site/public/v1/software/anonet/index.json @@ -0,0 +1,19 @@ +{ + "id": 495, + "slug": "anonet", + "name": "anoNet", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1052285" + ], + "created_at": "2026-07-10T10:12:39.740466", + "updated_at": "2026-07-10T10:12:39.740466", + "url": "/v1/software/anonet" +} diff --git a/site/public/v1/software/another-haskell-compiler/index.json b/site/public/v1/software/another-haskell-compiler/index.json new file mode 100644 index 000000000000..959943dd2edf --- /dev/null +++ b/site/public/v1/software/another-haskell-compiler/index.json @@ -0,0 +1,19 @@ +{ + "id": 496, + "slug": "another-haskell-compiler", + "name": "Another Haskell Compiler", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4034085" + ], + "created_at": "2026-07-10T10:12:39.740466", + "updated_at": "2026-07-10T10:12:39.740466", + "url": "/v1/software/another-haskell-compiler" +} diff --git a/site/public/v1/software/anqer-ai/index.json b/site/public/v1/software/anqer-ai/index.json new file mode 100644 index 000000000000..bd7275e08558 --- /dev/null +++ b/site/public/v1/software/anqer-ai/index.json @@ -0,0 +1,19 @@ +{ + "id": 497, + "slug": "anqer-ai", + "name": "anqer.ai", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140322320" + ], + "created_at": "2026-07-10T10:12:39.741466", + "updated_at": "2026-07-10T10:12:39.741466", + "url": "/v1/software/anqer-ai" +} diff --git a/site/public/v1/software/ansa-pre-processor/index.json b/site/public/v1/software/ansa-pre-processor/index.json new file mode 100644 index 000000000000..d38a06211895 --- /dev/null +++ b/site/public/v1/software/ansa-pre-processor/index.json @@ -0,0 +1,19 @@ +{ + "id": 498, + "slug": "ansa-pre-processor", + "name": "ANSA Pre-processor", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4653026" + ], + "created_at": "2026-07-10T10:12:39.741466", + "updated_at": "2026-07-10T10:12:39.741466", + "url": "/v1/software/ansa-pre-processor" +} diff --git a/site/public/v1/software/answr/index.json b/site/public/v1/software/answr/index.json new file mode 100644 index 000000000000..3a4037abcc8b --- /dev/null +++ b/site/public/v1/software/answr/index.json @@ -0,0 +1,23 @@ +{ + "id": 499, + "slug": "answr", + "name": "AnSWR", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105229737" + ], + "created_at": "2026-07-10T10:12:39.741466", + "updated_at": "2026-07-10T10:12:39.741466", + "url": "/v1/software/answr" +} diff --git a/site/public/v1/software/ansys/index.json b/site/public/v1/software/ansys/index.json new file mode 100644 index 000000000000..b70b388dd2b6 --- /dev/null +++ b/site/public/v1/software/ansys/index.json @@ -0,0 +1,19 @@ +{ + "id": 500, + "slug": "ansys", + "name": "ANSYS", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q14930378" + ], + "created_at": "2026-07-10T10:12:39.741466", + "updated_at": "2026-07-10T10:12:39.741466", + "url": "/v1/software/ansys" +} diff --git a/site/public/v1/software/ant-fortune/index.json b/site/public/v1/software/ant-fortune/index.json new file mode 100644 index 000000000000..568144ec1f75 --- /dev/null +++ b/site/public/v1/software/ant-fortune/index.json @@ -0,0 +1,25 @@ +{ + "id": 501, + "slug": "ant-fortune", + "name": "Ant Fortune", + "release_date": null, + "developers": [ + "Ant Group" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Java" + ], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60995570" + ], + "created_at": "2026-07-10T10:12:39.742467", + "updated_at": "2026-07-10T10:12:39.742467", + "url": "/v1/software/ant-fortune" +} diff --git a/site/public/v1/software/antconc/index.json b/site/public/v1/software/antconc/index.json new file mode 100644 index 000000000000..eb58112b0878 --- /dev/null +++ b/site/public/v1/software/antconc/index.json @@ -0,0 +1,22 @@ +{ + "id": 502, + "slug": "antconc", + "name": "AntConc", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q104878038" + ], + "created_at": "2026-07-10T10:12:39.742467", + "updated_at": "2026-07-10T10:12:39.742467", + "url": "/v1/software/antconc" +} diff --git a/site/public/v1/software/antenna-house-formatter/index.json b/site/public/v1/software/antenna-house-formatter/index.json new file mode 100644 index 000000000000..143be00514c6 --- /dev/null +++ b/site/public/v1/software/antenna-house-formatter/index.json @@ -0,0 +1,19 @@ +{ + "id": 503, + "slug": "antenna-house-formatter", + "name": "Antenna House Formatter", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11254814" + ], + "created_at": "2026-07-10T10:12:39.742467", + "updated_at": "2026-07-10T10:12:39.742467", + "url": "/v1/software/antenna-house-formatter" +} diff --git a/site/public/v1/software/antescofo/index.json b/site/public/v1/software/antescofo/index.json new file mode 100644 index 000000000000..c90467f9b3ed --- /dev/null +++ b/site/public/v1/software/antescofo/index.json @@ -0,0 +1,19 @@ +{ + "id": 504, + "slug": "antescofo", + "name": "Antescofo", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4771439" + ], + "created_at": "2026-07-10T10:12:39.742467", + "updated_at": "2026-07-10T10:12:39.742467", + "url": "/v1/software/antescofo" +} diff --git a/site/public/v1/software/anthologize/index.json b/site/public/v1/software/anthologize/index.json new file mode 100644 index 000000000000..f3e7a0b5d9a4 --- /dev/null +++ b/site/public/v1/software/anthologize/index.json @@ -0,0 +1,19 @@ +{ + "id": 505, + "slug": "anthologize", + "name": "Anthologize", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084394" + ], + "created_at": "2026-07-10T10:12:39.743466", + "updated_at": "2026-07-10T10:12:39.743466", + "url": "/v1/software/anthologize" +} diff --git a/site/public/v1/software/anthropac/index.json b/site/public/v1/software/anthropac/index.json new file mode 100644 index 000000000000..302253200345 --- /dev/null +++ b/site/public/v1/software/anthropac/index.json @@ -0,0 +1,19 @@ +{ + "id": 506, + "slug": "anthropac", + "name": "ANTHROPAC", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084395" + ], + "created_at": "2026-07-10T10:12:39.743466", + "updated_at": "2026-07-10T10:12:39.743466", + "url": "/v1/software/anthropac" +} diff --git a/site/public/v1/software/anti-virus-comodo/index.json b/site/public/v1/software/anti-virus-comodo/index.json new file mode 100644 index 000000000000..73b3926c939a --- /dev/null +++ b/site/public/v1/software/anti-virus-comodo/index.json @@ -0,0 +1,25 @@ +{ + "id": 507, + "slug": "anti-virus-comodo", + "name": "Anti Virus Comodo", + "release_date": null, + "developers": [ + "Comodo Group" + ], + "publishers": [], + "operating_systems": [ + "Windows 8.1", + "macOS", + "Windows 7" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4036457" + ], + "created_at": "2026-07-10T10:12:39.743466", + "updated_at": "2026-07-10T10:12:39.743466", + "url": "/v1/software/anti-virus-comodo" +} diff --git a/site/public/v1/software/antics3d/index.json b/site/public/v1/software/antics3d/index.json new file mode 100644 index 000000000000..0548811ff875 --- /dev/null +++ b/site/public/v1/software/antics3d/index.json @@ -0,0 +1,21 @@ +{ + "id": 508, + "slug": "antics3d", + "name": "Antics3D", + "release_date": null, + "developers": [ + "Antics Technologies" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4774661" + ], + "created_at": "2026-07-10T10:12:39.743466", + "updated_at": "2026-07-10T10:12:39.743466", + "url": "/v1/software/antics3d" +} diff --git a/site/public/v1/software/antivirus-gold/index.json b/site/public/v1/software/antivirus-gold/index.json new file mode 100644 index 000000000000..1f379e55fa25 --- /dev/null +++ b/site/public/v1/software/antivirus-gold/index.json @@ -0,0 +1,19 @@ +{ + "id": 509, + "slug": "antivirus-gold", + "name": "AntiVirus Gold", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4774507" + ], + "created_at": "2026-07-10T10:12:39.743466", + "updated_at": "2026-07-10T10:12:39.743466", + "url": "/v1/software/antivirus-gold" +} diff --git a/site/public/v1/software/antlr-studio/index.json b/site/public/v1/software/antlr-studio/index.json new file mode 100644 index 000000000000..e645bcc6156b --- /dev/null +++ b/site/public/v1/software/antlr-studio/index.json @@ -0,0 +1,19 @@ +{ + "id": 510, + "slug": "antlr-studio", + "name": "ANTLR Studio", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4653066" + ], + "created_at": "2026-07-10T10:12:39.744466", + "updated_at": "2026-07-10T10:12:39.744466", + "url": "/v1/software/antlr-studio" +} diff --git a/site/public/v1/software/anton/index.json b/site/public/v1/software/anton/index.json new file mode 100644 index 000000000000..29c572a2a4fe --- /dev/null +++ b/site/public/v1/software/anton/index.json @@ -0,0 +1,19 @@ +{ + "id": 511, + "slug": "anton", + "name": "ANTON", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123485776" + ], + "created_at": "2026-07-10T10:12:39.744466", + "updated_at": "2026-07-10T10:12:39.744466", + "url": "/v1/software/anton" +} diff --git a/site/public/v1/software/antwordprofiler/index.json b/site/public/v1/software/antwordprofiler/index.json new file mode 100644 index 000000000000..024347857f54 --- /dev/null +++ b/site/public/v1/software/antwordprofiler/index.json @@ -0,0 +1,19 @@ +{ + "id": 512, + "slug": "antwordprofiler", + "name": "AntWordProfiler", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084396" + ], + "created_at": "2026-07-10T10:12:39.744466", + "updated_at": "2026-07-10T10:12:39.744466", + "url": "/v1/software/antwordprofiler" +} diff --git a/site/public/v1/software/anuvaad/index.json b/site/public/v1/software/anuvaad/index.json new file mode 100644 index 000000000000..ebcafadcee82 --- /dev/null +++ b/site/public/v1/software/anuvaad/index.json @@ -0,0 +1,19 @@ +{ + "id": 513, + "slug": "anuvaad", + "name": "Anuvaad", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123190434" + ], + "created_at": "2026-07-10T10:12:39.745466", + "updated_at": "2026-07-10T10:12:39.745466", + "url": "/v1/software/anuvaad" +} diff --git a/site/public/v1/software/anvevoice/index.json b/site/public/v1/software/anvevoice/index.json new file mode 100644 index 000000000000..cd00f9a2c7e9 --- /dev/null +++ b/site/public/v1/software/anvevoice/index.json @@ -0,0 +1,21 @@ +{ + "id": 514, + "slug": "anvevoice", + "name": "AnveVoice", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Creative Commons Attribution 4.0 International" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139846317" + ], + "created_at": "2026-07-10T10:12:39.745466", + "updated_at": "2026-07-10T10:12:39.745466", + "url": "/v1/software/anvevoice" +} diff --git a/site/public/v1/software/anvil-studio/index.json b/site/public/v1/software/anvil-studio/index.json new file mode 100644 index 000000000000..a3bda7877052 --- /dev/null +++ b/site/public/v1/software/anvil-studio/index.json @@ -0,0 +1,21 @@ +{ + "id": 515, + "slug": "anvil-studio", + "name": "Anvil Studio", + "release_date": "1998-10-10", + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6047137" + ], + "created_at": "2026-07-10T10:12:39.745466", + "updated_at": "2026-07-10T10:12:39.745466", + "url": "/v1/software/anvil-studio" +} diff --git a/site/public/v1/software/anvil/index.json b/site/public/v1/software/anvil/index.json new file mode 100644 index 000000000000..17a6281ccd84 --- /dev/null +++ b/site/public/v1/software/anvil/index.json @@ -0,0 +1,26 @@ +{ + "id": 516, + "slug": "anvil", + "name": "Anvil", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [ + "Java" + ], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084397" + ], + "created_at": "2026-07-10T10:12:39.745466", + "updated_at": "2026-07-10T10:12:39.745466", + "url": "/v1/software/anvil" +} diff --git a/site/public/v1/software/any-do/index.json b/site/public/v1/software/any-do/index.json new file mode 100644 index 000000000000..0da8cb8869b6 --- /dev/null +++ b/site/public/v1/software/any-do/index.json @@ -0,0 +1,19 @@ +{ + "id": 517, + "slug": "any-do", + "name": "Any.do", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16128534" + ], + "created_at": "2026-07-10T10:12:39.746466", + "updated_at": "2026-07-10T10:12:39.746466", + "url": "/v1/software/any-do" +} diff --git a/site/public/v1/software/any-run/index.json b/site/public/v1/software/any-run/index.json new file mode 100644 index 000000000000..f3cd8ad3b961 --- /dev/null +++ b/site/public/v1/software/any-run/index.json @@ -0,0 +1,19 @@ +{ + "id": 518, + "slug": "any-run", + "name": "ANY.RUN", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131345223" + ], + "created_at": "2026-07-10T10:12:39.746466", + "updated_at": "2026-07-10T10:12:39.746466", + "url": "/v1/software/any-run" +} diff --git a/site/public/v1/software/anydesk/index.json b/site/public/v1/software/anydesk/index.json new file mode 100644 index 000000000000..69b87dc7d5c4 --- /dev/null +++ b/site/public/v1/software/anydesk/index.json @@ -0,0 +1,26 @@ +{ + "id": 519, + "slug": "anydesk", + "name": "AnyDesk", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "tvOS", + "iOS", + "FreeBSD", + "macOS", + "Microsoft Windows", + "Raspberry Pi" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q27926810" + ], + "created_at": "2026-07-10T10:12:39.746466", + "updated_at": "2026-07-10T10:12:39.746466", + "url": "/v1/software/anydesk" +} diff --git a/site/public/v1/software/anydvd/index.json b/site/public/v1/software/anydvd/index.json new file mode 100644 index 000000000000..ae9c78df22f0 --- /dev/null +++ b/site/public/v1/software/anydvd/index.json @@ -0,0 +1,25 @@ +{ + "id": 520, + "slug": "anydvd", + "name": "AnyDVD", + "release_date": null, + "developers": [ + "RedFox" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "end-user license agreement" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q613715" + ], + "created_at": "2026-07-10T10:12:39.746466", + "updated_at": "2026-07-10T10:12:39.746466", + "url": "/v1/software/anydvd" +} diff --git a/site/public/v1/software/anykode-marilou/index.json b/site/public/v1/software/anykode-marilou/index.json new file mode 100644 index 000000000000..bcb2c6094079 --- /dev/null +++ b/site/public/v1/software/anykode-marilou/index.json @@ -0,0 +1,19 @@ +{ + "id": 521, + "slug": "anykode-marilou", + "name": "AnyKode Marilou", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4778125" + ], + "created_at": "2026-07-10T10:12:39.746466", + "updated_at": "2026-07-10T10:12:39.746466", + "url": "/v1/software/anykode-marilou" +} diff --git a/site/public/v1/software/anylogic/index.json b/site/public/v1/software/anylogic/index.json new file mode 100644 index 000000000000..bb2c7e349d1f --- /dev/null +++ b/site/public/v1/software/anylogic/index.json @@ -0,0 +1,23 @@ +{ + "id": 522, + "slug": "anylogic", + "name": "AnyLogic", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "cross-platform" + ], + "programming_languages": [ + "Java" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q613749" + ], + "created_at": "2026-07-10T10:12:39.747466", + "updated_at": "2026-07-10T10:12:39.747466", + "url": "/v1/software/anylogic" +} diff --git a/site/public/v1/software/anyplace-control/index.json b/site/public/v1/software/anyplace-control/index.json new file mode 100644 index 000000000000..d589666da967 --- /dev/null +++ b/site/public/v1/software/anyplace-control/index.json @@ -0,0 +1,19 @@ +{ + "id": 523, + "slug": "anyplace-control", + "name": "Anyplace Control", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4034160" + ], + "created_at": "2026-07-10T10:12:39.747466", + "updated_at": "2026-07-10T10:12:39.747466", + "url": "/v1/software/anyplace-control" +} diff --git a/site/public/v1/software/anyrec-screen-recorder/index.json b/site/public/v1/software/anyrec-screen-recorder/index.json new file mode 100644 index 000000000000..33b8dce78f92 --- /dev/null +++ b/site/public/v1/software/anyrec-screen-recorder/index.json @@ -0,0 +1,22 @@ +{ + "id": 524, + "slug": "anyrec-screen-recorder", + "name": "AnyRec Screen Recorder", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116964176" + ], + "created_at": "2026-07-10T10:12:39.747466", + "updated_at": "2026-07-10T10:12:39.747466", + "url": "/v1/software/anyrec-screen-recorder" +} diff --git a/site/public/v1/software/anyremote/index.json b/site/public/v1/software/anyremote/index.json new file mode 100644 index 000000000000..382fe5f120de --- /dev/null +++ b/site/public/v1/software/anyremote/index.json @@ -0,0 +1,19 @@ +{ + "id": 525, + "slug": "anyremote", + "name": "anyremote", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60916469" + ], + "created_at": "2026-07-10T10:12:39.747466", + "updated_at": "2026-07-10T10:12:39.747466", + "url": "/v1/software/anyremote" +} diff --git a/site/public/v1/software/ao/index.json b/site/public/v1/software/ao/index.json new file mode 100644 index 000000000000..50a7cf3b5f39 --- /dev/null +++ b/site/public/v1/software/ao/index.json @@ -0,0 +1,21 @@ +{ + "id": 526, + "slug": "ao", + "name": "ao", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q88666756" + ], + "created_at": "2026-07-10T10:12:39.748466", + "updated_at": "2026-07-10T10:12:39.748466", + "url": "/v1/software/ao" +} diff --git a/site/public/v1/software/aoki-lapis/index.json b/site/public/v1/software/aoki-lapis/index.json new file mode 100644 index 000000000000..222487561db9 --- /dev/null +++ b/site/public/v1/software/aoki-lapis/index.json @@ -0,0 +1,19 @@ +{ + "id": 527, + "slug": "aoki-lapis", + "name": "Aoki Lapis", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q24914505" + ], + "created_at": "2026-07-10T10:12:39.748466", + "updated_at": "2026-07-10T10:12:39.748466", + "url": "/v1/software/aoki-lapis" +} diff --git a/site/public/v1/software/aol-desktop/index.json b/site/public/v1/software/aol-desktop/index.json new file mode 100644 index 000000000000..e2e37c56b74e --- /dev/null +++ b/site/public/v1/software/aol-desktop/index.json @@ -0,0 +1,19 @@ +{ + "id": 528, + "slug": "aol-desktop", + "name": "AOL Desktop", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4033041" + ], + "created_at": "2026-07-10T10:12:39.748466", + "updated_at": "2026-07-10T10:12:39.748466", + "url": "/v1/software/aol-desktop" +} diff --git a/site/public/v1/software/aol-explorer/index.json b/site/public/v1/software/aol-explorer/index.json new file mode 100644 index 000000000000..31388b96249c --- /dev/null +++ b/site/public/v1/software/aol-explorer/index.json @@ -0,0 +1,23 @@ +{ + "id": 529, + "slug": "aol-explorer", + "name": "AOL Explorer", + "release_date": null, + "developers": [ + "AOL" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2819312" + ], + "created_at": "2026-07-10T10:12:39.748466", + "updated_at": "2026-07-10T10:12:39.748466", + "url": "/v1/software/aol-explorer" +} diff --git a/site/public/v1/software/aol-openride/index.json b/site/public/v1/software/aol-openride/index.json new file mode 100644 index 000000000000..2d79744f1cd8 --- /dev/null +++ b/site/public/v1/software/aol-openride/index.json @@ -0,0 +1,21 @@ +{ + "id": 530, + "slug": "aol-openride", + "name": "AOL OpenRide", + "release_date": null, + "developers": [ + "AOL" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4033043" + ], + "created_at": "2026-07-10T10:12:39.748466", + "updated_at": "2026-07-10T10:12:39.748466", + "url": "/v1/software/aol-openride" +} diff --git a/site/public/v1/software/aona-ai/index.json b/site/public/v1/software/aona-ai/index.json new file mode 100644 index 000000000000..eee62a3377f4 --- /dev/null +++ b/site/public/v1/software/aona-ai/index.json @@ -0,0 +1,19 @@ +{ + "id": 531, + "slug": "aona-ai", + "name": "Aona AI", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138856916" + ], + "created_at": "2026-07-10T10:12:39.749466", + "updated_at": "2026-07-10T10:12:39.749466", + "url": "/v1/software/aona-ai" +} diff --git a/site/public/v1/software/apache-ldap-api/index.json b/site/public/v1/software/apache-ldap-api/index.json new file mode 100644 index 000000000000..37ab1826bf58 --- /dev/null +++ b/site/public/v1/software/apache-ldap-api/index.json @@ -0,0 +1,27 @@ +{ + "id": 532, + "slug": "apache-ldap-api", + "name": "Apache LDAP API", + "release_date": null, + "developers": [ + "Apache Software Foundation" + ], + "publishers": [], + "operating_systems": [ + "cross-platform" + ], + "programming_languages": [ + "Java" + ], + "licenses": [ + "Apache License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28407572" + ], + "created_at": "2026-07-10T10:12:39.749466", + "updated_at": "2026-07-10T10:12:39.749466", + "url": "/v1/software/apache-ldap-api" +} diff --git a/site/public/v1/software/apache-module/index.json b/site/public/v1/software/apache-module/index.json new file mode 100644 index 000000000000..dd4e6e35ad91 --- /dev/null +++ b/site/public/v1/software/apache-module/index.json @@ -0,0 +1,19 @@ +{ + "id": 533, + "slug": "apache-module", + "name": "Apache module", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q39690758" + ], + "created_at": "2026-07-10T10:12:39.749466", + "updated_at": "2026-07-10T10:12:39.749466", + "url": "/v1/software/apache-module" +} diff --git a/site/public/v1/software/apache-sedona/index.json b/site/public/v1/software/apache-sedona/index.json new file mode 100644 index 000000000000..38ca8f2dc6b0 --- /dev/null +++ b/site/public/v1/software/apache-sedona/index.json @@ -0,0 +1,19 @@ +{ + "id": 534, + "slug": "apache-sedona", + "name": "Apache Sedona", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137186909" + ], + "created_at": "2026-07-10T10:12:39.750467", + "updated_at": "2026-07-10T10:12:39.750467", + "url": "/v1/software/apache-sedona" +} diff --git a/site/public/v1/software/apama/index.json b/site/public/v1/software/apama/index.json new file mode 100644 index 000000000000..cc7e0dbef684 --- /dev/null +++ b/site/public/v1/software/apama/index.json @@ -0,0 +1,19 @@ +{ + "id": 535, + "slug": "apama", + "name": "Apama", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q48989930" + ], + "created_at": "2026-07-10T10:12:39.750467", + "updated_at": "2026-07-10T10:12:39.750467", + "url": "/v1/software/apama" +} diff --git a/site/public/v1/software/apatar/index.json b/site/public/v1/software/apatar/index.json new file mode 100644 index 000000000000..6bb5f6b1e70b --- /dev/null +++ b/site/public/v1/software/apatar/index.json @@ -0,0 +1,19 @@ +{ + "id": 536, + "slug": "apatar", + "name": "Apatar", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4779214" + ], + "created_at": "2026-07-10T10:12:39.750467", + "updated_at": "2026-07-10T10:12:39.750467", + "url": "/v1/software/apatar" +} diff --git a/site/public/v1/software/apbs/index.json b/site/public/v1/software/apbs/index.json new file mode 100644 index 000000000000..436d59d6bc15 --- /dev/null +++ b/site/public/v1/software/apbs/index.json @@ -0,0 +1,21 @@ +{ + "id": 537, + "slug": "apbs", + "name": "APBS", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Python" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q65072984" + ], + "created_at": "2026-07-10T10:12:39.750467", + "updated_at": "2026-07-10T10:12:39.750467", + "url": "/v1/software/apbs" +} diff --git a/site/public/v1/software/apertus/index.json b/site/public/v1/software/apertus/index.json new file mode 100644 index 000000000000..8768ebc16279 --- /dev/null +++ b/site/public/v1/software/apertus/index.json @@ -0,0 +1,26 @@ +{ + "id": 538, + "slug": "apertus", + "name": "Apertus", + "release_date": null, + "developers": [ + "Swiss National Supercomputing Centre", + "Swiss AI", + "Swiss Federal Institute of Technology in Lausanne", + "ETH Zurich" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Python" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136087176" + ], + "created_at": "2026-07-10T10:12:39.751466", + "updated_at": "2026-07-10T10:12:39.751466", + "url": "/v1/software/apertus" +} diff --git a/site/public/v1/software/apex-stoke-intel/index.json b/site/public/v1/software/apex-stoke-intel/index.json new file mode 100644 index 000000000000..9b2876a8b988 --- /dev/null +++ b/site/public/v1/software/apex-stoke-intel/index.json @@ -0,0 +1,21 @@ +{ + "id": 539, + "slug": "apex-stoke-intel", + "name": "APEX Stoke Intel", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "TypeScript" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140050311" + ], + "created_at": "2026-07-10T10:12:39.751466", + "updated_at": "2026-07-10T10:12:39.751466", + "url": "/v1/software/apex-stoke-intel" +} diff --git a/site/public/v1/software/aphelion/index.json b/site/public/v1/software/aphelion/index.json new file mode 100644 index 000000000000..12b8775332fc --- /dev/null +++ b/site/public/v1/software/aphelion/index.json @@ -0,0 +1,21 @@ +{ + "id": 540, + "slug": "aphelion", + "name": "Aphelion", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22945480" + ], + "created_at": "2026-07-10T10:12:39.751466", + "updated_at": "2026-07-10T10:12:39.751466", + "url": "/v1/software/aphelion" +} diff --git a/site/public/v1/software/api-analytics/index.json b/site/public/v1/software/api-analytics/index.json new file mode 100644 index 000000000000..d1437edf8d16 --- /dev/null +++ b/site/public/v1/software/api-analytics/index.json @@ -0,0 +1,21 @@ +{ + "id": 541, + "slug": "api-analytics", + "name": "API Analytics", + "release_date": null, + "developers": [ + "Google" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60021416" + ], + "created_at": "2026-07-10T10:12:39.751466", + "updated_at": "2026-07-10T10:12:39.751466", + "url": "/v1/software/api-analytics" +} diff --git a/site/public/v1/software/api-monetization/index.json b/site/public/v1/software/api-monetization/index.json new file mode 100644 index 000000000000..3f28d64b0616 --- /dev/null +++ b/site/public/v1/software/api-monetization/index.json @@ -0,0 +1,21 @@ +{ + "id": 542, + "slug": "api-monetization", + "name": "API Monetization", + "release_date": null, + "developers": [ + "Google" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60021353" + ], + "created_at": "2026-07-10T10:12:39.751466", + "updated_at": "2026-07-10T10:12:39.752466", + "url": "/v1/software/api-monetization" +} diff --git a/site/public/v1/software/apidog/index.json b/site/public/v1/software/apidog/index.json new file mode 100644 index 000000000000..37400a1d436e --- /dev/null +++ b/site/public/v1/software/apidog/index.json @@ -0,0 +1,19 @@ +{ + "id": 543, + "slug": "apidog", + "name": "Apidog", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135456517" + ], + "created_at": "2026-07-10T10:12:39.752466", + "updated_at": "2026-07-10T10:12:39.752466", + "url": "/v1/software/apidog" +} diff --git a/site/public/v1/software/apigee-api-platform/index.json b/site/public/v1/software/apigee-api-platform/index.json new file mode 100644 index 000000000000..8a81abe698a3 --- /dev/null +++ b/site/public/v1/software/apigee-api-platform/index.json @@ -0,0 +1,19 @@ +{ + "id": 544, + "slug": "apigee-api-platform", + "name": "Apigee API Platform", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q59947328" + ], + "created_at": "2026-07-10T10:12:39.752466", + "updated_at": "2026-07-10T10:12:39.752466", + "url": "/v1/software/apigee-api-platform" +} diff --git a/site/public/v1/software/apigee-open-banking-apix/index.json b/site/public/v1/software/apigee-open-banking-apix/index.json new file mode 100644 index 000000000000..1bc9bfe73a01 --- /dev/null +++ b/site/public/v1/software/apigee-open-banking-apix/index.json @@ -0,0 +1,19 @@ +{ + "id": 545, + "slug": "apigee-open-banking-apix", + "name": "Apigee Open Banking APIx", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q59958909" + ], + "created_at": "2026-07-10T10:12:39.752466", + "updated_at": "2026-07-10T10:12:39.752466", + "url": "/v1/software/apigee-open-banking-apix" +} diff --git a/site/public/v1/software/apktool/index.json b/site/public/v1/software/apktool/index.json new file mode 100644 index 000000000000..c7a2aedf69ed --- /dev/null +++ b/site/public/v1/software/apktool/index.json @@ -0,0 +1,21 @@ +{ + "id": 546, + "slug": "apktool", + "name": "apktool", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Apache Software License 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q97579605" + ], + "created_at": "2026-07-10T10:12:39.753466", + "updated_at": "2026-07-10T10:12:39.753466", + "url": "/v1/software/apktool" +} diff --git a/site/public/v1/software/aplac/index.json b/site/public/v1/software/aplac/index.json new file mode 100644 index 000000000000..c49245b5ce1c --- /dev/null +++ b/site/public/v1/software/aplac/index.json @@ -0,0 +1,21 @@ +{ + "id": 547, + "slug": "aplac", + "name": "APLAC", + "release_date": null, + "developers": [ + "Martti Valtonen" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6460547" + ], + "created_at": "2026-07-10T10:12:39.753466", + "updated_at": "2026-07-10T10:12:39.753466", + "url": "/v1/software/aplac" +} diff --git a/site/public/v1/software/apollo-genome-annotation-editor/index.json b/site/public/v1/software/apollo-genome-annotation-editor/index.json new file mode 100644 index 000000000000..71969e9072a7 --- /dev/null +++ b/site/public/v1/software/apollo-genome-annotation-editor/index.json @@ -0,0 +1,19 @@ +{ + "id": 548, + "slug": "apollo-genome-annotation-editor", + "name": "Apollo Genome Annotation Editor", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113047967" + ], + "created_at": "2026-07-10T10:12:39.753466", + "updated_at": "2026-07-10T10:12:39.753466", + "url": "/v1/software/apollo-genome-annotation-editor" +} diff --git a/site/public/v1/software/apollo/index.json b/site/public/v1/software/apollo/index.json new file mode 100644 index 000000000000..327bc3026924 --- /dev/null +++ b/site/public/v1/software/apollo/index.json @@ -0,0 +1,19 @@ +{ + "id": 549, + "slug": "apollo", + "name": "Apollo", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4780272" + ], + "created_at": "2026-07-10T10:12:39.753466", + "updated_at": "2026-07-10T10:12:39.753466", + "url": "/v1/software/apollo" +} diff --git a/site/public/v1/software/app-clips/index.json b/site/public/v1/software/app-clips/index.json new file mode 100644 index 000000000000..21aac5a00e2b --- /dev/null +++ b/site/public/v1/software/app-clips/index.json @@ -0,0 +1,19 @@ +{ + "id": 550, + "slug": "app-clips", + "name": "App Clips", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125899094" + ], + "created_at": "2026-07-10T10:12:39.754466", + "updated_at": "2026-07-10T10:12:39.754466", + "url": "/v1/software/app-clips" +} diff --git a/site/public/v1/software/app-game-kit/index.json b/site/public/v1/software/app-game-kit/index.json new file mode 100644 index 000000000000..651590b52889 --- /dev/null +++ b/site/public/v1/software/app-game-kit/index.json @@ -0,0 +1,19 @@ +{ + "id": 551, + "slug": "app-game-kit", + "name": "App Game Kit", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4780806" + ], + "created_at": "2026-07-10T10:12:39.754466", + "updated_at": "2026-07-10T10:12:39.754466", + "url": "/v1/software/app-game-kit" +} diff --git a/site/public/v1/software/app-installer/index.json b/site/public/v1/software/app-installer/index.json new file mode 100644 index 000000000000..6a01ca266e3d --- /dev/null +++ b/site/public/v1/software/app-installer/index.json @@ -0,0 +1,21 @@ +{ + "id": 552, + "slug": "app-installer", + "name": "App Installer", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28956974" + ], + "created_at": "2026-07-10T10:12:39.754466", + "updated_at": "2026-07-10T10:12:39.754466", + "url": "/v1/software/app-installer" +} diff --git a/site/public/v1/software/app-maker/index.json b/site/public/v1/software/app-maker/index.json new file mode 100644 index 000000000000..d523155addf9 --- /dev/null +++ b/site/public/v1/software/app-maker/index.json @@ -0,0 +1,21 @@ +{ + "id": 553, + "slug": "app-maker", + "name": "App Maker", + "release_date": null, + "developers": [ + "Google" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q55029528" + ], + "created_at": "2026-07-10T10:12:39.755466", + "updated_at": "2026-07-10T10:12:39.755466", + "url": "/v1/software/app-maker" +} diff --git a/site/public/v1/software/apparix/index.json b/site/public/v1/software/apparix/index.json new file mode 100644 index 000000000000..62c958adfa53 --- /dev/null +++ b/site/public/v1/software/apparix/index.json @@ -0,0 +1,23 @@ +{ + "id": 554, + "slug": "apparix", + "name": "apparix", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Unix-like operating system" + ], + "programming_languages": [], + "licenses": [ + "GNU General Public License, version 3.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q104978357" + ], + "created_at": "2026-07-10T10:12:39.755466", + "updated_at": "2026-07-10T10:12:39.755466", + "url": "/v1/software/apparix" +} diff --git a/site/public/v1/software/appblock/index.json b/site/public/v1/software/appblock/index.json new file mode 100644 index 000000000000..90fbcadce8ff --- /dev/null +++ b/site/public/v1/software/appblock/index.json @@ -0,0 +1,19 @@ +{ + "id": 555, + "slug": "appblock", + "name": "AppBlock", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137557495" + ], + "created_at": "2026-07-10T10:12:39.755466", + "updated_at": "2026-07-10T10:12:39.755466", + "url": "/v1/software/appblock" +} diff --git a/site/public/v1/software/appbox-pro/index.json b/site/public/v1/software/appbox-pro/index.json new file mode 100644 index 000000000000..a363283e222e --- /dev/null +++ b/site/public/v1/software/appbox-pro/index.json @@ -0,0 +1,21 @@ +{ + "id": 556, + "slug": "appbox-pro", + "name": "Appbox Pro", + "release_date": "2009-09-18", + "developers": [], + "publishers": [], + "operating_systems": [ + "iOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4780953" + ], + "created_at": "2026-07-10T10:12:39.755466", + "updated_at": "2026-07-10T10:12:39.755466", + "url": "/v1/software/appbox-pro" +} diff --git a/site/public/v1/software/appery-io/index.json b/site/public/v1/software/appery-io/index.json new file mode 100644 index 000000000000..2608c0485d91 --- /dev/null +++ b/site/public/v1/software/appery-io/index.json @@ -0,0 +1,19 @@ +{ + "id": 557, + "slug": "appery-io", + "name": "Appery.io", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107354898" + ], + "created_at": "2026-07-10T10:12:39.756466", + "updated_at": "2026-07-10T10:12:39.756466", + "url": "/v1/software/appery-io" +} diff --git a/site/public/v1/software/appium/index.json b/site/public/v1/software/appium/index.json new file mode 100644 index 000000000000..0b48e34639c5 --- /dev/null +++ b/site/public/v1/software/appium/index.json @@ -0,0 +1,21 @@ +{ + "id": 558, + "slug": "appium", + "name": "Appium", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Apache Software License 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q27208114" + ], + "created_at": "2026-07-10T10:12:39.756466", + "updated_at": "2026-07-10T10:12:39.756466", + "url": "/v1/software/appium" +} diff --git a/site/public/v1/software/appjar/index.json b/site/public/v1/software/appjar/index.json new file mode 100644 index 000000000000..9c960ef3b3a2 --- /dev/null +++ b/site/public/v1/software/appjar/index.json @@ -0,0 +1,24 @@ +{ + "id": 559, + "slug": "appjar", + "name": "appJar", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Python" + ], + "licenses": [ + "Apache Software License 2.0", + "GNU General Public License, version 3.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q29364614" + ], + "created_at": "2026-07-10T10:12:39.756466", + "updated_at": "2026-07-10T10:12:39.756466", + "url": "/v1/software/appjar" +} diff --git a/site/public/v1/software/apple-advanced-typography/index.json b/site/public/v1/software/apple-advanced-typography/index.json new file mode 100644 index 000000000000..d1f3564fa787 --- /dev/null +++ b/site/public/v1/software/apple-advanced-typography/index.json @@ -0,0 +1,21 @@ +{ + "id": 560, + "slug": "apple-advanced-typography", + "name": "Apple Advanced Typography", + "release_date": null, + "developers": [ + "Apple Inc." + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q621218" + ], + "created_at": "2026-07-10T10:12:39.756466", + "updated_at": "2026-07-10T10:12:39.756466", + "url": "/v1/software/apple-advanced-typography" +} diff --git a/site/public/v1/software/apple-business-basic/index.json b/site/public/v1/software/apple-business-basic/index.json new file mode 100644 index 000000000000..152355aa5411 --- /dev/null +++ b/site/public/v1/software/apple-business-basic/index.json @@ -0,0 +1,19 @@ +{ + "id": 561, + "slug": "apple-business-basic", + "name": "Apple Business BASIC", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131764636" + ], + "created_at": "2026-07-10T10:12:39.756466", + "updated_at": "2026-07-10T10:12:39.756466", + "url": "/v1/software/apple-business-basic" +} diff --git a/site/public/v1/software/apple-chooser/index.json b/site/public/v1/software/apple-chooser/index.json new file mode 100644 index 000000000000..9103bd6b1375 --- /dev/null +++ b/site/public/v1/software/apple-chooser/index.json @@ -0,0 +1,21 @@ +{ + "id": 562, + "slug": "apple-chooser", + "name": "Apple Chooser", + "release_date": null, + "developers": [ + "Apple Inc." + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4781144" + ], + "created_at": "2026-07-10T10:12:39.757466", + "updated_at": "2026-07-10T10:12:39.757466", + "url": "/v1/software/apple-chooser" +} diff --git a/site/public/v1/software/apple-configurator/index.json b/site/public/v1/software/apple-configurator/index.json new file mode 100644 index 000000000000..0decd28a5703 --- /dev/null +++ b/site/public/v1/software/apple-configurator/index.json @@ -0,0 +1,21 @@ +{ + "id": 563, + "slug": "apple-configurator", + "name": "Apple Configurator", + "release_date": null, + "developers": [ + "Apple Inc." + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q15733937" + ], + "created_at": "2026-07-10T10:12:39.757466", + "updated_at": "2026-07-10T10:12:39.757466", + "url": "/v1/software/apple-configurator" +} diff --git a/site/public/v1/software/apple-console/index.json b/site/public/v1/software/apple-console/index.json new file mode 100644 index 000000000000..3825d4119149 --- /dev/null +++ b/site/public/v1/software/apple-console/index.json @@ -0,0 +1,21 @@ +{ + "id": 564, + "slug": "apple-console", + "name": "Apple Console", + "release_date": null, + "developers": [ + "Apple Inc." + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q85857892" + ], + "created_at": "2026-07-10T10:12:39.757466", + "updated_at": "2026-07-10T10:12:39.757466", + "url": "/v1/software/apple-console" +} diff --git a/site/public/v1/software/apple-container/index.json b/site/public/v1/software/apple-container/index.json new file mode 100644 index 000000000000..4b6edcc4d951 --- /dev/null +++ b/site/public/v1/software/apple-container/index.json @@ -0,0 +1,19 @@ +{ + "id": 565, + "slug": "apple-container", + "name": "Apple container", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139553022" + ], + "created_at": "2026-07-10T10:12:39.757466", + "updated_at": "2026-07-10T10:12:39.757466", + "url": "/v1/software/apple-container" +} diff --git a/site/public/v1/software/apple-creator-studio/index.json b/site/public/v1/software/apple-creator-studio/index.json new file mode 100644 index 000000000000..628a02e77c4d --- /dev/null +++ b/site/public/v1/software/apple-creator-studio/index.json @@ -0,0 +1,21 @@ +{ + "id": 566, + "slug": "apple-creator-studio", + "name": "Apple Creator Studio", + "release_date": null, + "developers": [ + "Apple Inc." + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137791387" + ], + "created_at": "2026-07-10T10:12:39.758466", + "updated_at": "2026-07-10T10:12:39.758466", + "url": "/v1/software/apple-creator-studio" +} diff --git a/site/public/v1/software/apple-devices/index.json b/site/public/v1/software/apple-devices/index.json new file mode 100644 index 000000000000..44c303e0693d --- /dev/null +++ b/site/public/v1/software/apple-devices/index.json @@ -0,0 +1,19 @@ +{ + "id": 567, + "slug": "apple-devices", + "name": "Apple Devices", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137798819" + ], + "created_at": "2026-07-10T10:12:39.758466", + "updated_at": "2026-07-10T10:12:39.758466", + "url": "/v1/software/apple-devices" +} diff --git a/site/public/v1/software/apple-games/index.json b/site/public/v1/software/apple-games/index.json new file mode 100644 index 000000000000..d499c7f29b78 --- /dev/null +++ b/site/public/v1/software/apple-games/index.json @@ -0,0 +1,25 @@ +{ + "id": 568, + "slug": "apple-games", + "name": "Apple Games", + "release_date": null, + "developers": [ + "Apple Inc." + ], + "publishers": [], + "operating_systems": [ + "iPadOS", + "iOS", + "macOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136308155" + ], + "created_at": "2026-07-10T10:12:39.758466", + "updated_at": "2026-07-10T10:12:39.758466", + "url": "/v1/software/apple-games" +} diff --git a/site/public/v1/software/apple-hd-sc-setup/index.json b/site/public/v1/software/apple-hd-sc-setup/index.json new file mode 100644 index 000000000000..7e1d398a6724 --- /dev/null +++ b/site/public/v1/software/apple-hd-sc-setup/index.json @@ -0,0 +1,24 @@ +{ + "id": 569, + "slug": "apple-hd-sc-setup", + "name": "Apple HD SC Setup", + "release_date": "1986-09-01", + "developers": [ + "Apple Inc." + ], + "publishers": [], + "operating_systems": [ + "A/UX", + "macOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4781169" + ], + "created_at": "2026-07-10T10:12:39.758466", + "updated_at": "2026-07-10T10:12:39.758466", + "url": "/v1/software/apple-hd-sc-setup" +} diff --git a/site/public/v1/software/apple-help-viewer/index.json b/site/public/v1/software/apple-help-viewer/index.json new file mode 100644 index 000000000000..f52cee4e4375 --- /dev/null +++ b/site/public/v1/software/apple-help-viewer/index.json @@ -0,0 +1,23 @@ +{ + "id": 570, + "slug": "apple-help-viewer", + "name": "Apple Help Viewer", + "release_date": null, + "developers": [ + "Apple Inc." + ], + "publishers": [], + "operating_systems": [ + "macOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4014822" + ], + "created_at": "2026-07-10T10:12:39.758466", + "updated_at": "2026-07-10T10:12:39.758466", + "url": "/v1/software/apple-help-viewer" +} diff --git a/site/public/v1/software/apple-homekit/index.json b/site/public/v1/software/apple-homekit/index.json new file mode 100644 index 000000000000..d57d4920818f --- /dev/null +++ b/site/public/v1/software/apple-homekit/index.json @@ -0,0 +1,29 @@ +{ + "id": 571, + "slug": "apple-homekit", + "name": "Apple HomeKit", + "release_date": "2014-01-01", + "developers": [ + "Apple Inc." + ], + "publishers": [ + "Apple Inc." + ], + "operating_systems": [ + "tvOS", + "watchOS", + "iPadOS", + "iOS", + "macOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q45319394" + ], + "created_at": "2026-07-10T10:12:39.759466", + "updated_at": "2026-07-10T10:12:39.759466", + "url": "/v1/software/apple-homekit" +} diff --git a/site/public/v1/software/apple-invites/index.json b/site/public/v1/software/apple-invites/index.json new file mode 100644 index 000000000000..58528ff15230 --- /dev/null +++ b/site/public/v1/software/apple-invites/index.json @@ -0,0 +1,23 @@ +{ + "id": 572, + "slug": "apple-invites", + "name": "Apple Invites", + "release_date": null, + "developers": [ + "Apple Inc." + ], + "publishers": [], + "operating_systems": [ + "iOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q132529117" + ], + "created_at": "2026-07-10T10:12:39.759466", + "updated_at": "2026-07-10T10:12:39.759466", + "url": "/v1/software/apple-invites" +} diff --git a/site/public/v1/software/apple-menu/index.json b/site/public/v1/software/apple-menu/index.json new file mode 100644 index 000000000000..0b04d11d4c0c --- /dev/null +++ b/site/public/v1/software/apple-menu/index.json @@ -0,0 +1,19 @@ +{ + "id": 573, + "slug": "apple-menu", + "name": "Apple menu", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4781275" + ], + "created_at": "2026-07-10T10:12:39.759466", + "updated_at": "2026-07-10T10:12:39.759466", + "url": "/v1/software/apple-menu" +} diff --git a/site/public/v1/software/apple-open-directory/index.json b/site/public/v1/software/apple-open-directory/index.json new file mode 100644 index 000000000000..eeb7ba252010 --- /dev/null +++ b/site/public/v1/software/apple-open-directory/index.json @@ -0,0 +1,21 @@ +{ + "id": 574, + "slug": "apple-open-directory", + "name": "Apple Open Directory", + "release_date": null, + "developers": [ + "Apple Inc." + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q615095" + ], + "created_at": "2026-07-10T10:12:39.759466", + "updated_at": "2026-07-10T10:12:39.759466", + "url": "/v1/software/apple-open-directory" +} diff --git a/site/public/v1/software/apple-pie-parser/index.json b/site/public/v1/software/apple-pie-parser/index.json new file mode 100644 index 000000000000..8c071e969b91 --- /dev/null +++ b/site/public/v1/software/apple-pie-parser/index.json @@ -0,0 +1,19 @@ +{ + "id": 575, + "slug": "apple-pie-parser", + "name": "Apple Pie Parser", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084398" + ], + "created_at": "2026-07-10T10:12:39.760466", + "updated_at": "2026-07-10T10:12:39.760466", + "url": "/v1/software/apple-pie-parser" +} diff --git a/site/public/v1/software/apple-qadministrator/index.json b/site/public/v1/software/apple-qadministrator/index.json new file mode 100644 index 000000000000..3ad8462b05e3 --- /dev/null +++ b/site/public/v1/software/apple-qadministrator/index.json @@ -0,0 +1,21 @@ +{ + "id": 576, + "slug": "apple-qadministrator", + "name": "Apple Qadministrator", + "release_date": null, + "developers": [ + "Apple Inc." + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4781219" + ], + "created_at": "2026-07-10T10:12:39.760466", + "updated_at": "2026-07-10T10:12:39.760466", + "url": "/v1/software/apple-qadministrator" +} diff --git a/site/public/v1/software/apple-qmaster/index.json b/site/public/v1/software/apple-qmaster/index.json new file mode 100644 index 000000000000..7ce0e88997f5 --- /dev/null +++ b/site/public/v1/software/apple-qmaster/index.json @@ -0,0 +1,21 @@ +{ + "id": 577, + "slug": "apple-qmaster", + "name": "Apple Qmaster", + "release_date": null, + "developers": [ + "Apple Inc." + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4781220" + ], + "created_at": "2026-07-10T10:12:39.760466", + "updated_at": "2026-07-10T10:12:39.760466", + "url": "/v1/software/apple-qmaster" +} diff --git a/site/public/v1/software/apple-remote-desktop/index.json b/site/public/v1/software/apple-remote-desktop/index.json new file mode 100644 index 000000000000..e000699314d1 --- /dev/null +++ b/site/public/v1/software/apple-remote-desktop/index.json @@ -0,0 +1,23 @@ +{ + "id": 578, + "slug": "apple-remote-desktop", + "name": "Apple Remote Desktop", + "release_date": null, + "developers": [ + "Apple Inc." + ], + "publishers": [], + "operating_systems": [ + "macOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q621338" + ], + "created_at": "2026-07-10T10:12:39.760466", + "updated_at": "2026-07-10T10:12:39.760466", + "url": "/v1/software/apple-remote-desktop" +} diff --git a/site/public/v1/software/apple-sandbox/index.json b/site/public/v1/software/apple-sandbox/index.json new file mode 100644 index 000000000000..b0f3a89ce185 --- /dev/null +++ b/site/public/v1/software/apple-sandbox/index.json @@ -0,0 +1,23 @@ +{ + "id": 579, + "slug": "apple-sandbox", + "name": "Apple Sandbox", + "release_date": null, + "developers": [ + "Apple Inc." + ], + "publishers": [], + "operating_systems": [ + "macOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135434681" + ], + "created_at": "2026-07-10T10:12:39.761466", + "updated_at": "2026-07-10T10:12:39.761466", + "url": "/v1/software/apple-sandbox" +} diff --git a/site/public/v1/software/apple-software-restore/index.json b/site/public/v1/software/apple-software-restore/index.json new file mode 100644 index 000000000000..a1c3839b3de3 --- /dev/null +++ b/site/public/v1/software/apple-software-restore/index.json @@ -0,0 +1,23 @@ +{ + "id": 580, + "slug": "apple-software-restore", + "name": "Apple Software Restore", + "release_date": null, + "developers": [ + "Apple Inc." + ], + "publishers": [], + "operating_systems": [ + "macOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4781231" + ], + "created_at": "2026-07-10T10:12:39.761466", + "updated_at": "2026-07-10T10:12:39.761466", + "url": "/v1/software/apple-software-restore" +} diff --git a/site/public/v1/software/apple-tv-channels/index.json b/site/public/v1/software/apple-tv-channels/index.json new file mode 100644 index 000000000000..098b567151bd --- /dev/null +++ b/site/public/v1/software/apple-tv-channels/index.json @@ -0,0 +1,19 @@ +{ + "id": 581, + "slug": "apple-tv-channels", + "name": "Apple TV Channels", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109016876" + ], + "created_at": "2026-07-10T10:12:39.761466", + "updated_at": "2026-07-10T10:12:39.761466", + "url": "/v1/software/apple-tv-channels" +} diff --git a/site/public/v1/software/apple-tv-remote/index.json b/site/public/v1/software/apple-tv-remote/index.json new file mode 100644 index 000000000000..56a0bb7c9b01 --- /dev/null +++ b/site/public/v1/software/apple-tv-remote/index.json @@ -0,0 +1,19 @@ +{ + "id": 582, + "slug": "apple-tv-remote", + "name": "Apple TV Remote", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q29364679" + ], + "created_at": "2026-07-10T10:12:39.761466", + "updated_at": "2026-07-10T10:12:39.761466", + "url": "/v1/software/apple-tv-remote" +} diff --git a/site/public/v1/software/apple-type-services-for-unicode-imaging/index.json b/site/public/v1/software/apple-type-services-for-unicode-imaging/index.json new file mode 100644 index 000000000000..ec0d79fddaa5 --- /dev/null +++ b/site/public/v1/software/apple-type-services-for-unicode-imaging/index.json @@ -0,0 +1,21 @@ +{ + "id": 583, + "slug": "apple-type-services-for-unicode-imaging", + "name": "Apple Type Services for Unicode Imaging", + "release_date": null, + "developers": [ + "Apple Inc." + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4781247" + ], + "created_at": "2026-07-10T10:12:39.761466", + "updated_at": "2026-07-10T10:12:39.761466", + "url": "/v1/software/apple-type-services-for-unicode-imaging" +} diff --git a/site/public/v1/software/apple-watch/index.json b/site/public/v1/software/apple-watch/index.json new file mode 100644 index 000000000000..c078a7f2da5a --- /dev/null +++ b/site/public/v1/software/apple-watch/index.json @@ -0,0 +1,23 @@ +{ + "id": 584, + "slug": "apple-watch", + "name": "Apple Watch", + "release_date": null, + "developers": [ + "Apple Inc." + ], + "publishers": [], + "operating_systems": [ + "iOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q70820895" + ], + "created_at": "2026-07-10T10:12:39.762466", + "updated_at": "2026-07-10T10:12:39.762466", + "url": "/v1/software/apple-watch" +} diff --git a/site/public/v1/software/apple-zhushou/index.json b/site/public/v1/software/apple-zhushou/index.json new file mode 100644 index 000000000000..f7271800e1ef --- /dev/null +++ b/site/public/v1/software/apple-zhushou/index.json @@ -0,0 +1,23 @@ +{ + "id": 585, + "slug": "apple-zhushou", + "name": "apple zhushou", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Windows 7" + ], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q24839807" + ], + "created_at": "2026-07-10T10:12:39.762466", + "updated_at": "2026-07-10T10:12:39.762466", + "url": "/v1/software/apple-zhushou" +} diff --git a/site/public/v1/software/appleshare-ip-migration/index.json b/site/public/v1/software/appleshare-ip-migration/index.json new file mode 100644 index 000000000000..4c0e371c319e --- /dev/null +++ b/site/public/v1/software/appleshare-ip-migration/index.json @@ -0,0 +1,21 @@ +{ + "id": 586, + "slug": "appleshare-ip-migration", + "name": "AppleShare IP Migration", + "release_date": null, + "developers": [ + "Apple Inc." + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3620911" + ], + "created_at": "2026-07-10T10:12:39.762466", + "updated_at": "2026-07-10T10:12:39.762466", + "url": "/v1/software/appleshare-ip-migration" +} diff --git a/site/public/v1/software/appletviewer/index.json b/site/public/v1/software/appletviewer/index.json new file mode 100644 index 000000000000..170b0d6fb197 --- /dev/null +++ b/site/public/v1/software/appletviewer/index.json @@ -0,0 +1,19 @@ +{ + "id": 587, + "slug": "appletviewer", + "name": "AppletViewer", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q601487" + ], + "created_at": "2026-07-10T10:12:39.762466", + "updated_at": "2026-07-10T10:12:39.762466", + "url": "/v1/software/appletviewer" +} diff --git a/site/public/v1/software/application-mapper/index.json b/site/public/v1/software/application-mapper/index.json new file mode 100644 index 000000000000..292dddc59e76 --- /dev/null +++ b/site/public/v1/software/application-mapper/index.json @@ -0,0 +1,19 @@ +{ + "id": 588, + "slug": "application-mapper", + "name": "Application Mapper", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4652523" + ], + "created_at": "2026-07-10T10:12:39.763466", + "updated_at": "2026-07-10T10:12:39.763466", + "url": "/v1/software/application-mapper" +} diff --git a/site/public/v1/software/application-release-automation/index.json b/site/public/v1/software/application-release-automation/index.json new file mode 100644 index 000000000000..72ea3d5e6b5c --- /dev/null +++ b/site/public/v1/software/application-release-automation/index.json @@ -0,0 +1,19 @@ +{ + "id": 589, + "slug": "application-release-automation", + "name": "application release automation", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4781496" + ], + "created_at": "2026-07-10T10:12:39.763466", + "updated_at": "2026-07-10T10:12:39.763466", + "url": "/v1/software/application-release-automation" +} diff --git a/site/public/v1/software/application-request-routing/index.json b/site/public/v1/software/application-request-routing/index.json new file mode 100644 index 000000000000..98a645b4a347 --- /dev/null +++ b/site/public/v1/software/application-request-routing/index.json @@ -0,0 +1,21 @@ +{ + "id": 590, + "slug": "application-request-routing", + "name": "Application Request Routing", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16987674" + ], + "created_at": "2026-07-10T10:12:39.763466", + "updated_at": "2026-07-10T10:12:39.763466", + "url": "/v1/software/application-request-routing" +} diff --git a/site/public/v1/software/applixware/index.json b/site/public/v1/software/applixware/index.json new file mode 100644 index 000000000000..55e5bc69b246 --- /dev/null +++ b/site/public/v1/software/applixware/index.json @@ -0,0 +1,26 @@ +{ + "id": 591, + "slug": "applixware", + "name": "Applixware", + "release_date": null, + "developers": [ + "Applix" + ], + "publishers": [], + "operating_systems": [ + "Solaris", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q621644" + ], + "created_at": "2026-07-10T10:12:39.763466", + "updated_at": "2026-07-10T10:12:39.763466", + "url": "/v1/software/applixware" +} diff --git a/site/public/v1/software/apprentice/index.json b/site/public/v1/software/apprentice/index.json new file mode 100644 index 000000000000..0d35df311f29 --- /dev/null +++ b/site/public/v1/software/apprentice/index.json @@ -0,0 +1,21 @@ +{ + "id": 592, + "slug": "apprentice", + "name": "Apprentice", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4781697" + ], + "created_at": "2026-07-10T10:12:39.764467", + "updated_at": "2026-07-10T10:12:39.764467", + "url": "/v1/software/apprentice" +} diff --git a/site/public/v1/software/approvalmax/index.json b/site/public/v1/software/approvalmax/index.json new file mode 100644 index 000000000000..907b0011161c --- /dev/null +++ b/site/public/v1/software/approvalmax/index.json @@ -0,0 +1,21 @@ +{ + "id": 593, + "slug": "approvalmax", + "name": "ApprovalMax", + "release_date": null, + "developers": [ + "ApprovalMax" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140129014" + ], + "created_at": "2026-07-10T10:12:39.764467", + "updated_at": "2026-07-10T10:12:39.764467", + "url": "/v1/software/approvalmax" +} diff --git a/site/public/v1/software/appsheet/index.json b/site/public/v1/software/appsheet/index.json new file mode 100644 index 000000000000..917ae46d4ae2 --- /dev/null +++ b/site/public/v1/software/appsheet/index.json @@ -0,0 +1,19 @@ +{ + "id": 594, + "slug": "appsheet", + "name": "AppSheet", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q65121923" + ], + "created_at": "2026-07-10T10:12:39.764467", + "updated_at": "2026-07-10T10:12:39.764467", + "url": "/v1/software/appsheet" +} diff --git a/site/public/v1/software/appzapper/index.json b/site/public/v1/software/appzapper/index.json new file mode 100644 index 000000000000..4f684793dab5 --- /dev/null +++ b/site/public/v1/software/appzapper/index.json @@ -0,0 +1,19 @@ +{ + "id": 595, + "slug": "appzapper", + "name": "AppZapper", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4780807" + ], + "created_at": "2026-07-10T10:12:39.764467", + "updated_at": "2026-07-10T10:12:39.764467", + "url": "/v1/software/appzapper" +} diff --git a/site/public/v1/software/april-apl/index.json b/site/public/v1/software/april-apl/index.json new file mode 100644 index 000000000000..56f855973943 --- /dev/null +++ b/site/public/v1/software/april-apl/index.json @@ -0,0 +1,23 @@ +{ + "id": 596, + "slug": "april-apl", + "name": "April APL", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Common Lisp" + ], + "licenses": [ + "Apache Software License 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106520170" + ], + "created_at": "2026-07-10T10:12:39.765466", + "updated_at": "2026-07-10T10:12:39.765466", + "url": "/v1/software/april-apl" +} diff --git a/site/public/v1/software/apriltag/index.json b/site/public/v1/software/apriltag/index.json new file mode 100644 index 000000000000..2c8e07d1da7d --- /dev/null +++ b/site/public/v1/software/apriltag/index.json @@ -0,0 +1,21 @@ +{ + "id": 597, + "slug": "apriltag", + "name": "AprilTag", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "2-clause BSD License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138573016" + ], + "created_at": "2026-07-10T10:12:39.765466", + "updated_at": "2026-07-10T10:12:39.765466", + "url": "/v1/software/apriltag" +} diff --git a/site/public/v1/software/apsfilter/index.json b/site/public/v1/software/apsfilter/index.json new file mode 100644 index 000000000000..a16b09beecbc --- /dev/null +++ b/site/public/v1/software/apsfilter/index.json @@ -0,0 +1,19 @@ +{ + "id": 598, + "slug": "apsfilter", + "name": "apsfilter", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62851068" + ], + "created_at": "2026-07-10T10:12:39.765466", + "updated_at": "2026-07-10T10:12:39.765466", + "url": "/v1/software/apsfilter" +} diff --git a/site/public/v1/software/apt-cacher-ng/index.json b/site/public/v1/software/apt-cacher-ng/index.json new file mode 100644 index 000000000000..03d0662fcf72 --- /dev/null +++ b/site/public/v1/software/apt-cacher-ng/index.json @@ -0,0 +1,19 @@ +{ + "id": 599, + "slug": "apt-cacher-ng", + "name": "Apt-Cacher-NG", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62851063" + ], + "created_at": "2026-07-10T10:12:39.765466", + "updated_at": "2026-07-10T10:12:39.765466", + "url": "/v1/software/apt-cacher-ng" +} diff --git a/site/public/v1/software/apt-mirror/index.json b/site/public/v1/software/apt-mirror/index.json new file mode 100644 index 000000000000..59addeb05306 --- /dev/null +++ b/site/public/v1/software/apt-mirror/index.json @@ -0,0 +1,19 @@ +{ + "id": 600, + "slug": "apt-mirror", + "name": "Apt-Mirror", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62845930" + ], + "created_at": "2026-07-10T10:12:39.766466", + "updated_at": "2026-07-10T10:12:39.766466", + "url": "/v1/software/apt-mirror" +} diff --git a/site/public/v1/software/aptos/index.json b/site/public/v1/software/aptos/index.json new file mode 100644 index 000000000000..22f7c032af9f --- /dev/null +++ b/site/public/v1/software/aptos/index.json @@ -0,0 +1,21 @@ +{ + "id": 601, + "slug": "aptos", + "name": "APTOS", + "release_date": null, + "developers": [ + "Ad-Sol Nissin Corporation" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11189501" + ], + "created_at": "2026-07-10T10:12:39.766466", + "updated_at": "2026-07-10T10:12:39.766466", + "url": "/v1/software/aptos" +} diff --git a/site/public/v1/software/apus-group/index.json b/site/public/v1/software/apus-group/index.json new file mode 100644 index 000000000000..667b27fd0296 --- /dev/null +++ b/site/public/v1/software/apus-group/index.json @@ -0,0 +1,19 @@ +{ + "id": 602, + "slug": "apus-group", + "name": "APUS Group", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q19839868" + ], + "created_at": "2026-07-10T10:12:39.766466", + "updated_at": "2026-07-10T10:12:39.766466", + "url": "/v1/software/apus-group" +} diff --git a/site/public/v1/software/apus-launcher/index.json b/site/public/v1/software/apus-launcher/index.json new file mode 100644 index 000000000000..628a3a42d002 --- /dev/null +++ b/site/public/v1/software/apus-launcher/index.json @@ -0,0 +1,19 @@ +{ + "id": 603, + "slug": "apus-launcher", + "name": "APUS Launcher", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q21703797" + ], + "created_at": "2026-07-10T10:12:39.766466", + "updated_at": "2026-07-10T10:12:39.766466", + "url": "/v1/software/apus-launcher" +} diff --git a/site/public/v1/software/apwal/index.json b/site/public/v1/software/apwal/index.json new file mode 100644 index 000000000000..b3208ca7b646 --- /dev/null +++ b/site/public/v1/software/apwal/index.json @@ -0,0 +1,19 @@ +{ + "id": 604, + "slug": "apwal", + "name": "Apwal", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62856477" + ], + "created_at": "2026-07-10T10:12:39.767466", + "updated_at": "2026-07-10T10:12:39.767466", + "url": "/v1/software/apwal" +} diff --git a/site/public/v1/software/aqemu/index.json b/site/public/v1/software/aqemu/index.json new file mode 100644 index 000000000000..c47032075e43 --- /dev/null +++ b/site/public/v1/software/aqemu/index.json @@ -0,0 +1,19 @@ +{ + "id": 605, + "slug": "aqemu", + "name": "AQEMU", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62851077" + ], + "created_at": "2026-07-10T10:12:39.767466", + "updated_at": "2026-07-10T10:12:39.767466", + "url": "/v1/software/aqemu" +} diff --git a/site/public/v1/software/aqion/index.json b/site/public/v1/software/aqion/index.json new file mode 100644 index 000000000000..aa33e7a37e93 --- /dev/null +++ b/site/public/v1/software/aqion/index.json @@ -0,0 +1,23 @@ +{ + "id": 606, + "slug": "aqion", + "name": "Aqion", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4782540" + ], + "created_at": "2026-07-10T10:12:39.767466", + "updated_at": "2026-07-10T10:12:39.767466", + "url": "/v1/software/aqion" +} diff --git a/site/public/v1/software/aqtime/index.json b/site/public/v1/software/aqtime/index.json new file mode 100644 index 000000000000..4bc6e365bea0 --- /dev/null +++ b/site/public/v1/software/aqtime/index.json @@ -0,0 +1,21 @@ +{ + "id": 607, + "slug": "aqtime", + "name": "AQtime", + "release_date": null, + "developers": [ + "SmartBear Software" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4033051" + ], + "created_at": "2026-07-10T10:12:39.767466", + "updated_at": "2026-07-10T10:12:39.767466", + "url": "/v1/software/aqtime" +} diff --git a/site/public/v1/software/aqua-data-studio/index.json b/site/public/v1/software/aqua-data-studio/index.json new file mode 100644 index 000000000000..aa89e9aba7ef --- /dev/null +++ b/site/public/v1/software/aqua-data-studio/index.json @@ -0,0 +1,21 @@ +{ + "id": 608, + "slug": "aqua-data-studio", + "name": "Aqua Data Studio", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Java" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q622921" + ], + "created_at": "2026-07-10T10:12:39.768466", + "updated_at": "2026-07-10T10:12:39.768466", + "url": "/v1/software/aqua-data-studio" +} diff --git a/site/public/v1/software/aqua-home/index.json b/site/public/v1/software/aqua-home/index.json new file mode 100644 index 000000000000..bd847583a2f0 --- /dev/null +++ b/site/public/v1/software/aqua-home/index.json @@ -0,0 +1,21 @@ +{ + "id": 609, + "slug": "aqua-home", + "name": "AQUA@home", + "release_date": null, + "developers": [ + "D-Wave Systems" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2499878" + ], + "created_at": "2026-07-10T10:12:39.768466", + "updated_at": "2026-07-10T10:12:39.768466", + "url": "/v1/software/aqua-home" +} diff --git a/site/public/v1/software/ar-models/index.json b/site/public/v1/software/ar-models/index.json new file mode 100644 index 000000000000..cb66e864cfda --- /dev/null +++ b/site/public/v1/software/ar-models/index.json @@ -0,0 +1,19 @@ +{ + "id": 610, + "slug": "ar-models", + "name": "AR Models", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106515723" + ], + "created_at": "2026-07-10T10:12:39.768466", + "updated_at": "2026-07-10T10:12:39.768466", + "url": "/v1/software/ar-models" +} diff --git a/site/public/v1/software/ar-zone/index.json b/site/public/v1/software/ar-zone/index.json new file mode 100644 index 000000000000..8b77e310128f --- /dev/null +++ b/site/public/v1/software/ar-zone/index.json @@ -0,0 +1,19 @@ +{ + "id": 611, + "slug": "ar-zone", + "name": "AR Zone", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123134490" + ], + "created_at": "2026-07-10T10:12:39.768466", + "updated_at": "2026-07-10T10:12:39.768466", + "url": "/v1/software/ar-zone" +} diff --git a/site/public/v1/software/ara-audio-random-access/index.json b/site/public/v1/software/ara-audio-random-access/index.json new file mode 100644 index 000000000000..7b2971199b1b --- /dev/null +++ b/site/public/v1/software/ara-audio-random-access/index.json @@ -0,0 +1,19 @@ +{ + "id": 612, + "slug": "ara-audio-random-access", + "name": "ARA Audio Random Access", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q758850" + ], + "created_at": "2026-07-10T10:12:39.769466", + "updated_at": "2026-07-10T10:12:39.769466", + "url": "/v1/software/ara-audio-random-access" +} diff --git a/site/public/v1/software/arc/index.json b/site/public/v1/software/arc/index.json new file mode 100644 index 000000000000..f1f5a94cd0b9 --- /dev/null +++ b/site/public/v1/software/arc/index.json @@ -0,0 +1,21 @@ +{ + "id": 613, + "slug": "arc", + "name": "ARC", + "release_date": null, + "developers": [ + "BigChillGhost" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q128210928" + ], + "created_at": "2026-07-10T10:12:39.769466", + "updated_at": "2026-07-10T10:12:39.769466", + "url": "/v1/software/arc" +} diff --git a/site/public/v1/software/arcady/index.json b/site/public/v1/software/arcady/index.json new file mode 100644 index 000000000000..459787f2fb01 --- /dev/null +++ b/site/public/v1/software/arcady/index.json @@ -0,0 +1,21 @@ +{ + "id": 614, + "slug": "arcady", + "name": "ARCADY", + "release_date": null, + "developers": [ + "Transport Research Laboratory" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4653589" + ], + "created_at": "2026-07-10T10:12:39.769466", + "updated_at": "2026-07-10T10:12:39.769466", + "url": "/v1/software/arcady" +} diff --git a/site/public/v1/software/arccatalog/index.json b/site/public/v1/software/arccatalog/index.json new file mode 100644 index 000000000000..890cec83441d --- /dev/null +++ b/site/public/v1/software/arccatalog/index.json @@ -0,0 +1,21 @@ +{ + "id": 615, + "slug": "arccatalog", + "name": "ArcCatalog", + "release_date": null, + "developers": [ + "Esri" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121547902" + ], + "created_at": "2026-07-10T10:12:39.769466", + "updated_at": "2026-07-10T10:12:39.769466", + "url": "/v1/software/arccatalog" +} diff --git a/site/public/v1/software/arceditor/index.json b/site/public/v1/software/arceditor/index.json new file mode 100644 index 000000000000..fda9e6cb77a9 --- /dev/null +++ b/site/public/v1/software/arceditor/index.json @@ -0,0 +1,25 @@ +{ + "id": 616, + "slug": "arceditor", + "name": "ArcEditor", + "release_date": null, + "developers": [ + "Esri" + ], + "publishers": [], + "operating_systems": [ + "Tru64 UNIX", + "Solaris", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4784989" + ], + "created_at": "2026-07-10T10:12:39.769466", + "updated_at": "2026-07-10T10:12:39.769466", + "url": "/v1/software/arceditor" +} diff --git a/site/public/v1/software/arcgis-engine/index.json b/site/public/v1/software/arcgis-engine/index.json new file mode 100644 index 000000000000..3a58c278e6d0 --- /dev/null +++ b/site/public/v1/software/arcgis-engine/index.json @@ -0,0 +1,21 @@ +{ + "id": 617, + "slug": "arcgis-engine", + "name": "ArcGIS Engine", + "release_date": null, + "developers": [ + "Esri" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4784988" + ], + "created_at": "2026-07-10T10:12:39.770466", + "updated_at": "2026-07-10T10:12:39.770466", + "url": "/v1/software/arcgis-engine" +} diff --git a/site/public/v1/software/arcgis-hub/index.json b/site/public/v1/software/arcgis-hub/index.json new file mode 100644 index 000000000000..62e1cacd96c7 --- /dev/null +++ b/site/public/v1/software/arcgis-hub/index.json @@ -0,0 +1,21 @@ +{ + "id": 618, + "slug": "arcgis-hub", + "name": "ArcGIS Hub", + "release_date": null, + "developers": [ + "Esri" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q104696214" + ], + "created_at": "2026-07-10T10:12:39.770466", + "updated_at": "2026-07-10T10:12:39.770466", + "url": "/v1/software/arcgis-hub" +} diff --git a/site/public/v1/software/arcgis-server/index.json b/site/public/v1/software/arcgis-server/index.json new file mode 100644 index 000000000000..2c4403672aaf --- /dev/null +++ b/site/public/v1/software/arcgis-server/index.json @@ -0,0 +1,21 @@ +{ + "id": 619, + "slug": "arcgis-server", + "name": "ArcGIS Server", + "release_date": null, + "developers": [ + "Esri" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4784987" + ], + "created_at": "2026-07-10T10:12:39.770466", + "updated_at": "2026-07-10T10:12:39.770466", + "url": "/v1/software/arcgis-server" +} diff --git a/site/public/v1/software/archeblade/index.json b/site/public/v1/software/archeblade/index.json new file mode 100644 index 000000000000..68798d3a86cc --- /dev/null +++ b/site/public/v1/software/archeblade/index.json @@ -0,0 +1,19 @@ +{ + "id": 620, + "slug": "archeblade", + "name": "Archeblade", + "release_date": "2014-04-25", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q87490672" + ], + "created_at": "2026-07-10T10:12:39.771466", + "updated_at": "2026-07-10T10:12:39.771466", + "url": "/v1/software/archeblade" +} diff --git a/site/public/v1/software/archi/index.json b/site/public/v1/software/archi/index.json new file mode 100644 index 000000000000..ea9f37bde284 --- /dev/null +++ b/site/public/v1/software/archi/index.json @@ -0,0 +1,19 @@ +{ + "id": 621, + "slug": "archi", + "name": "Archi", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q19595928" + ], + "created_at": "2026-07-10T10:12:39.771466", + "updated_at": "2026-07-10T10:12:39.771466", + "url": "/v1/software/archi" +} diff --git a/site/public/v1/software/archibus/index.json b/site/public/v1/software/archibus/index.json new file mode 100644 index 000000000000..9dff457e48fd --- /dev/null +++ b/site/public/v1/software/archibus/index.json @@ -0,0 +1,19 @@ +{ + "id": 622, + "slug": "archibus", + "name": "Archibus", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2860097" + ], + "created_at": "2026-07-10T10:12:39.771466", + "updated_at": "2026-07-10T10:12:39.771466", + "url": "/v1/software/archibus" +} diff --git a/site/public/v1/software/archimedes-geo3d/index.json b/site/public/v1/software/archimedes-geo3d/index.json new file mode 100644 index 000000000000..8bf935d29f64 --- /dev/null +++ b/site/public/v1/software/archimedes-geo3d/index.json @@ -0,0 +1,19 @@ +{ + "id": 623, + "slug": "archimedes-geo3d", + "name": "Archimedes Geo3D", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4786889" + ], + "created_at": "2026-07-10T10:12:39.771466", + "updated_at": "2026-07-10T10:12:39.771466", + "url": "/v1/software/archimedes-geo3d" +} diff --git a/site/public/v1/software/archipelago/index.json b/site/public/v1/software/archipelago/index.json new file mode 100644 index 000000000000..6a4b853e4dcf --- /dev/null +++ b/site/public/v1/software/archipelago/index.json @@ -0,0 +1,21 @@ +{ + "id": 624, + "slug": "archipelago", + "name": "Archipelago", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138736938" + ], + "created_at": "2026-07-10T10:12:39.772466", + "updated_at": "2026-07-10T10:12:39.772466", + "url": "/v1/software/archipelago" +} diff --git a/site/public/v1/software/architect/index.json b/site/public/v1/software/architect/index.json new file mode 100644 index 000000000000..040180556cbc --- /dev/null +++ b/site/public/v1/software/architect/index.json @@ -0,0 +1,19 @@ +{ + "id": 625, + "slug": "architect", + "name": "Architect", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25345903" + ], + "created_at": "2026-07-10T10:12:39.772466", + "updated_at": "2026-07-10T10:12:39.772466", + "url": "/v1/software/architect" +} diff --git a/site/public/v1/software/architecture-of-integrated-information-systems/index.json b/site/public/v1/software/architecture-of-integrated-information-systems/index.json new file mode 100644 index 000000000000..23593447bd9d --- /dev/null +++ b/site/public/v1/software/architecture-of-integrated-information-systems/index.json @@ -0,0 +1,25 @@ +{ + "id": 626, + "slug": "architecture-of-integrated-information-systems", + "name": "Architecture of Integrated Information Systems", + "release_date": "1994-01-01", + "developers": [ + "August-Wilhelm Scheer" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q296674" + ], + "created_at": "2026-07-10T10:12:39.772466", + "updated_at": "2026-07-10T10:12:39.772466", + "url": "/v1/software/architecture-of-integrated-information-systems" +} diff --git a/site/public/v1/software/architrave/index.json b/site/public/v1/software/architrave/index.json new file mode 100644 index 000000000000..a166f3f04d80 --- /dev/null +++ b/site/public/v1/software/architrave/index.json @@ -0,0 +1,19 @@ +{ + "id": 627, + "slug": "architrave", + "name": "Architrave", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16532173" + ], + "created_at": "2026-07-10T10:12:39.772466", + "updated_at": "2026-07-10T10:12:39.772466", + "url": "/v1/software/architrave" +} diff --git a/site/public/v1/software/architxt/index.json b/site/public/v1/software/architxt/index.json new file mode 100644 index 000000000000..67c0d54b4d7b --- /dev/null +++ b/site/public/v1/software/architxt/index.json @@ -0,0 +1,28 @@ +{ + "id": 628, + "slug": "architxt", + "name": "ArchiTXT", + "release_date": "2026-02-11", + "developers": [ + "Mirian Halfeld Ferrari", + "Jacques Chabin" + ], + "publishers": [], + "operating_systems": [ + "cross-platform" + ], + "programming_languages": [ + "Python" + ], + "licenses": [ + "GNU General Public License, version 3.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138654681" + ], + "created_at": "2026-07-10T10:12:39.772466", + "updated_at": "2026-07-10T10:12:39.772466", + "url": "/v1/software/architxt" +} diff --git a/site/public/v1/software/archive-in-a-box/index.json b/site/public/v1/software/archive-in-a-box/index.json new file mode 100644 index 000000000000..dcd1b52a3a38 --- /dev/null +++ b/site/public/v1/software/archive-in-a-box/index.json @@ -0,0 +1,19 @@ +{ + "id": 629, + "slug": "archive-in-a-box", + "name": "Archive in a Box", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084399" + ], + "created_at": "2026-07-10T10:12:39.773466", + "updated_at": "2026-07-10T10:12:39.773466", + "url": "/v1/software/archive-in-a-box" +} diff --git a/site/public/v1/software/archive-it/index.json b/site/public/v1/software/archive-it/index.json new file mode 100644 index 000000000000..815076d24014 --- /dev/null +++ b/site/public/v1/software/archive-it/index.json @@ -0,0 +1,21 @@ +{ + "id": 630, + "slug": "archive-it", + "name": "Archive-It", + "release_date": null, + "developers": [ + "Internet Archive" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q44623728" + ], + "created_at": "2026-07-10T10:12:39.773466", + "updated_at": "2026-07-10T10:12:39.773466", + "url": "/v1/software/archive-it" +} diff --git a/site/public/v1/software/archivebox/index.json b/site/public/v1/software/archivebox/index.json new file mode 100644 index 000000000000..eee3ed02e3e8 --- /dev/null +++ b/site/public/v1/software/archivebox/index.json @@ -0,0 +1,23 @@ +{ + "id": 631, + "slug": "archivebox", + "name": "ArchiveBox", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Python" + ], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63097629" + ], + "created_at": "2026-07-10T10:12:39.773466", + "updated_at": "2026-07-10T10:12:39.773466", + "url": "/v1/software/archivebox" +} diff --git a/site/public/v1/software/archivemail/index.json b/site/public/v1/software/archivemail/index.json new file mode 100644 index 000000000000..9a60bf04d9a9 --- /dev/null +++ b/site/public/v1/software/archivemail/index.json @@ -0,0 +1,19 @@ +{ + "id": 632, + "slug": "archivemail", + "name": "archivemail", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62845941" + ], + "created_at": "2026-07-10T10:12:39.773466", + "updated_at": "2026-07-10T10:12:39.773466", + "url": "/v1/software/archivemail" +} diff --git a/site/public/v1/software/archivematica/index.json b/site/public/v1/software/archivematica/index.json new file mode 100644 index 000000000000..374f96dfd678 --- /dev/null +++ b/site/public/v1/software/archivematica/index.json @@ -0,0 +1,23 @@ +{ + "id": 633, + "slug": "archivematica", + "name": "Archivematica", + "release_date": null, + "developers": [ + "Artefactual" + ], + "publishers": [], + "operating_systems": [ + "cross-platform" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q37610516" + ], + "created_at": "2026-07-10T10:12:39.774467", + "updated_at": "2026-07-10T10:12:39.774467", + "url": "/v1/software/archivematica" +} diff --git a/site/public/v1/software/archiveweb-page/index.json b/site/public/v1/software/archiveweb-page/index.json new file mode 100644 index 000000000000..9e63d2ad524a --- /dev/null +++ b/site/public/v1/software/archiveweb-page/index.json @@ -0,0 +1,21 @@ +{ + "id": 634, + "slug": "archiveweb-page", + "name": "ArchiveWeb.page", + "release_date": null, + "developers": [ + "Webrecorder" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131672943" + ], + "created_at": "2026-07-10T10:12:39.774467", + "updated_at": "2026-07-10T10:12:39.774467", + "url": "/v1/software/archiveweb-page" +} diff --git a/site/public/v1/software/archline-xp/index.json b/site/public/v1/software/archline-xp/index.json new file mode 100644 index 000000000000..ca2805e0c785 --- /dev/null +++ b/site/public/v1/software/archline-xp/index.json @@ -0,0 +1,19 @@ +{ + "id": 635, + "slug": "archline-xp", + "name": "ARCHline.XP", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q433266" + ], + "created_at": "2026-07-10T10:12:39.774467", + "updated_at": "2026-07-10T10:12:39.774467", + "url": "/v1/software/archline-xp" +} diff --git a/site/public/v1/software/arcims/index.json b/site/public/v1/software/arcims/index.json new file mode 100644 index 000000000000..44089726d7d3 --- /dev/null +++ b/site/public/v1/software/arcims/index.json @@ -0,0 +1,21 @@ +{ + "id": 636, + "slug": "arcims", + "name": "ArcIMS", + "release_date": null, + "developers": [ + "Esri" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4784986" + ], + "created_at": "2026-07-10T10:12:39.774467", + "updated_at": "2026-07-10T10:12:39.774467", + "url": "/v1/software/arcims" +} diff --git a/site/public/v1/software/arcinfo/index.json b/site/public/v1/software/arcinfo/index.json new file mode 100644 index 000000000000..537fcb419226 --- /dev/null +++ b/site/public/v1/software/arcinfo/index.json @@ -0,0 +1,25 @@ +{ + "id": 637, + "slug": "arcinfo", + "name": "ArcInfo", + "release_date": null, + "developers": [ + "Esri" + ], + "publishers": [], + "operating_systems": [ + "Solaris", + "Tru64 UNIX", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2062851" + ], + "created_at": "2026-07-10T10:12:39.775466", + "updated_at": "2026-07-10T10:12:39.775466", + "url": "/v1/software/arcinfo" +} diff --git a/site/public/v1/software/arcinsys/index.json b/site/public/v1/software/arcinsys/index.json new file mode 100644 index 000000000000..1f94baa43b07 --- /dev/null +++ b/site/public/v1/software/arcinsys/index.json @@ -0,0 +1,19 @@ +{ + "id": 638, + "slug": "arcinsys", + "name": "Arcinsys", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q57795270" + ], + "created_at": "2026-07-10T10:12:39.775466", + "updated_at": "2026-07-10T10:12:39.775466", + "url": "/v1/software/arcinsys" +} diff --git a/site/public/v1/software/arcmap/index.json b/site/public/v1/software/arcmap/index.json new file mode 100644 index 000000000000..5023740003d2 --- /dev/null +++ b/site/public/v1/software/arcmap/index.json @@ -0,0 +1,21 @@ +{ + "id": 639, + "slug": "arcmap", + "name": "ArcMap", + "release_date": null, + "developers": [ + "Esri" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4784993" + ], + "created_at": "2026-07-10T10:12:39.775466", + "updated_at": "2026-07-10T10:12:39.775466", + "url": "/v1/software/arcmap" +} diff --git a/site/public/v1/software/arcplan/index.json b/site/public/v1/software/arcplan/index.json new file mode 100644 index 000000000000..bd04e6ebcd50 --- /dev/null +++ b/site/public/v1/software/arcplan/index.json @@ -0,0 +1,19 @@ +{ + "id": 640, + "slug": "arcplan", + "name": "Arcplan", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17521344" + ], + "created_at": "2026-07-10T10:12:39.775466", + "updated_at": "2026-07-10T10:12:39.775466", + "url": "/v1/software/arcplan" +} diff --git a/site/public/v1/software/arcsoft-totalmedia-theatre/index.json b/site/public/v1/software/arcsoft-totalmedia-theatre/index.json new file mode 100644 index 000000000000..9ab2d95ae771 --- /dev/null +++ b/site/public/v1/software/arcsoft-totalmedia-theatre/index.json @@ -0,0 +1,19 @@ +{ + "id": 641, + "slug": "arcsoft-totalmedia-theatre", + "name": "Arcsoft TotalMedia Theatre", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4034294" + ], + "created_at": "2026-07-10T10:12:39.776466", + "updated_at": "2026-07-10T10:12:39.776466", + "url": "/v1/software/arcsoft-totalmedia-theatre" +} diff --git a/site/public/v1/software/arctos/index.json b/site/public/v1/software/arctos/index.json new file mode 100644 index 000000000000..13cbb48abbcf --- /dev/null +++ b/site/public/v1/software/arctos/index.json @@ -0,0 +1,21 @@ +{ + "id": 642, + "slug": "arctos", + "name": "Arctos", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Apache Software License 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q89590918" + ], + "created_at": "2026-07-10T10:12:39.776466", + "updated_at": "2026-07-10T10:12:39.776466", + "url": "/v1/software/arctos" +} diff --git a/site/public/v1/software/arcview/index.json b/site/public/v1/software/arcview/index.json new file mode 100644 index 000000000000..67ce7d3432d3 --- /dev/null +++ b/site/public/v1/software/arcview/index.json @@ -0,0 +1,29 @@ +{ + "id": 643, + "slug": "arcview", + "name": "ArcView", + "release_date": "1995-10-05", + "developers": [ + "Esri" + ], + "publishers": [], + "operating_systems": [ + "HP-UX", + "IBM AIX", + "Solaris", + "Tru64 UNIX", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q631011" + ], + "created_at": "2026-07-10T10:12:39.776466", + "updated_at": "2026-07-10T10:12:39.776466", + "url": "/v1/software/arcview" +} diff --git a/site/public/v1/software/arduino-programming/index.json b/site/public/v1/software/arduino-programming/index.json new file mode 100644 index 000000000000..3e28d2f984ca --- /dev/null +++ b/site/public/v1/software/arduino-programming/index.json @@ -0,0 +1,19 @@ +{ + "id": 644, + "slug": "arduino-programming", + "name": "Arduino programming", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q21059171" + ], + "created_at": "2026-07-10T10:12:39.776466", + "updated_at": "2026-07-10T10:12:39.776466", + "url": "/v1/software/arduino-programming" +} diff --git a/site/public/v1/software/arena/index.json b/site/public/v1/software/arena/index.json new file mode 100644 index 000000000000..ababaaf05c99 --- /dev/null +++ b/site/public/v1/software/arena/index.json @@ -0,0 +1,19 @@ +{ + "id": 645, + "slug": "arena", + "name": "Arena", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4788873" + ], + "created_at": "2026-07-10T10:12:39.777466", + "updated_at": "2026-07-10T10:12:39.777466", + "url": "/v1/software/arena" +} diff --git a/site/public/v1/software/ares-cad/index.json b/site/public/v1/software/ares-cad/index.json new file mode 100644 index 000000000000..e172922bad21 --- /dev/null +++ b/site/public/v1/software/ares-cad/index.json @@ -0,0 +1,24 @@ +{ + "id": 646, + "slug": "ares-cad", + "name": "ARES CAD", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q100706127" + ], + "created_at": "2026-07-10T10:12:39.777466", + "updated_at": "2026-07-10T10:12:39.777466", + "url": "/v1/software/ares-cad" +} diff --git a/site/public/v1/software/arexx/index.json b/site/public/v1/software/arexx/index.json new file mode 100644 index 000000000000..34f89f6ff0bb --- /dev/null +++ b/site/public/v1/software/arexx/index.json @@ -0,0 +1,21 @@ +{ + "id": 647, + "slug": "arexx", + "name": "ARexx", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "assembly language" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q296959" + ], + "created_at": "2026-07-10T10:12:39.777466", + "updated_at": "2026-07-10T10:12:39.777466", + "url": "/v1/software/arexx" +} diff --git a/site/public/v1/software/arges-erp/index.json b/site/public/v1/software/arges-erp/index.json new file mode 100644 index 000000000000..6ba7f459fba8 --- /dev/null +++ b/site/public/v1/software/arges-erp/index.json @@ -0,0 +1,30 @@ +{ + "id": 648, + "slug": "arges-erp", + "name": "Arges ERP", + "release_date": "2021-01-01", + "developers": [ + "Arges d.o.o.", + "RedCode Web Design" + ], + "publishers": [ + "Arges d.o.o." + ], + "operating_systems": [ + "iOS", + "iPadOS", + "cross-platform" + ], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139802008" + ], + "created_at": "2026-07-10T10:12:39.777466", + "updated_at": "2026-07-10T10:12:39.777466", + "url": "/v1/software/arges-erp" +} diff --git a/site/public/v1/software/argobots/index.json b/site/public/v1/software/argobots/index.json new file mode 100644 index 000000000000..3c0a171de63a --- /dev/null +++ b/site/public/v1/software/argobots/index.json @@ -0,0 +1,21 @@ +{ + "id": 649, + "slug": "argobots", + "name": "Argobots", + "release_date": null, + "developers": [ + "Shintaro Iwasaki" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115618754" + ], + "created_at": "2026-07-10T10:12:39.777466", + "updated_at": "2026-07-10T10:12:39.777466", + "url": "/v1/software/argobots" +} diff --git a/site/public/v1/software/argus/index.json b/site/public/v1/software/argus/index.json new file mode 100644 index 000000000000..05352c9b281b --- /dev/null +++ b/site/public/v1/software/argus/index.json @@ -0,0 +1,21 @@ +{ + "id": 650, + "slug": "argus", + "name": "Argus", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Artistic License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16833630" + ], + "created_at": "2026-07-10T10:12:39.778466", + "updated_at": "2026-07-10T10:12:39.778466", + "url": "/v1/software/argus" +} diff --git a/site/public/v1/software/argusmonitor/index.json b/site/public/v1/software/argusmonitor/index.json new file mode 100644 index 000000000000..fe89adfd2614 --- /dev/null +++ b/site/public/v1/software/argusmonitor/index.json @@ -0,0 +1,19 @@ +{ + "id": 651, + "slug": "argusmonitor", + "name": "ArgusMonitor", + "release_date": "2009-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4789774" + ], + "created_at": "2026-07-10T10:12:39.778466", + "updated_at": "2026-07-10T10:12:39.778466", + "url": "/v1/software/argusmonitor" +} diff --git a/site/public/v1/software/argyll-cms/index.json b/site/public/v1/software/argyll-cms/index.json new file mode 100644 index 000000000000..3dac4958564d --- /dev/null +++ b/site/public/v1/software/argyll-cms/index.json @@ -0,0 +1,19 @@ +{ + "id": 652, + "slug": "argyll-cms", + "name": "Argyll CMS", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17620818" + ], + "created_at": "2026-07-10T10:12:39.778466", + "updated_at": "2026-07-10T10:12:39.778466", + "url": "/v1/software/argyll-cms" +} diff --git a/site/public/v1/software/aria-systems/index.json b/site/public/v1/software/aria-systems/index.json new file mode 100644 index 000000000000..3043c74d33a9 --- /dev/null +++ b/site/public/v1/software/aria-systems/index.json @@ -0,0 +1,19 @@ +{ + "id": 653, + "slug": "aria-systems", + "name": "Aria Systems", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135742206" + ], + "created_at": "2026-07-10T10:12:39.778466", + "updated_at": "2026-07-10T10:12:39.778466", + "url": "/v1/software/aria-systems" +} diff --git a/site/public/v1/software/ariadne-portal/index.json b/site/public/v1/software/ariadne-portal/index.json new file mode 100644 index 000000000000..71ad355aae3b --- /dev/null +++ b/site/public/v1/software/ariadne-portal/index.json @@ -0,0 +1,19 @@ +{ + "id": 654, + "slug": "ariadne-portal", + "name": "ARIADNE Portal", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084401" + ], + "created_at": "2026-07-10T10:12:39.779466", + "updated_at": "2026-07-10T10:12:39.779466", + "url": "/v1/software/ariadne-portal" +} diff --git a/site/public/v1/software/arianis/index.json b/site/public/v1/software/arianis/index.json new file mode 100644 index 000000000000..face68aa4d47 --- /dev/null +++ b/site/public/v1/software/arianis/index.json @@ -0,0 +1,19 @@ +{ + "id": 655, + "slug": "arianis", + "name": "Arianis", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139499481" + ], + "created_at": "2026-07-10T10:12:39.779466", + "updated_at": "2026-07-10T10:12:39.779466", + "url": "/v1/software/arianis" +} diff --git a/site/public/v1/software/aries-leads/index.json b/site/public/v1/software/aries-leads/index.json new file mode 100644 index 000000000000..5e90fd3aef0f --- /dev/null +++ b/site/public/v1/software/aries-leads/index.json @@ -0,0 +1,22 @@ +{ + "id": 656, + "slug": "aries-leads", + "name": "Aries Leads", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "cross-platform", + "web browser" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138722367" + ], + "created_at": "2026-07-10T10:12:39.779466", + "updated_at": "2026-07-10T10:12:39.779466", + "url": "/v1/software/aries-leads" +} diff --git a/site/public/v1/software/aris-mashzone/index.json b/site/public/v1/software/aris-mashzone/index.json new file mode 100644 index 000000000000..fdd5165f0b87 --- /dev/null +++ b/site/public/v1/software/aris-mashzone/index.json @@ -0,0 +1,28 @@ +{ + "id": 657, + "slug": "aris-mashzone", + "name": "ARIS MashZone", + "release_date": "2010-01-18", + "developers": [ + "Software AG", + "IDS Scheer" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Java", + "Adobe Flash" + ], + "licenses": [ + "proprietary license", + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q296677" + ], + "created_at": "2026-07-10T10:12:39.779466", + "updated_at": "2026-07-10T10:12:39.779466", + "url": "/v1/software/aris-mashzone" +} diff --git a/site/public/v1/software/aristotle-metadata-registry/index.json b/site/public/v1/software/aristotle-metadata-registry/index.json new file mode 100644 index 000000000000..070248a1fa82 --- /dev/null +++ b/site/public/v1/software/aristotle-metadata-registry/index.json @@ -0,0 +1,21 @@ +{ + "id": 658, + "slug": "aristotle-metadata-registry", + "name": "Aristotle Metadata Registry", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Python" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q24589713" + ], + "created_at": "2026-07-10T10:12:39.779466", + "updated_at": "2026-07-10T10:12:39.779466", + "url": "/v1/software/aristotle-metadata-registry" +} diff --git a/site/public/v1/software/ark-compiler/index.json b/site/public/v1/software/ark-compiler/index.json new file mode 100644 index 000000000000..33ff328614ab --- /dev/null +++ b/site/public/v1/software/ark-compiler/index.json @@ -0,0 +1,19 @@ +{ + "id": 659, + "slug": "ark-compiler", + "name": "Ark Compiler", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126720999" + ], + "created_at": "2026-07-10T10:12:39.780466", + "updated_at": "2026-07-10T10:12:39.780466", + "url": "/v1/software/ark-compiler" +} diff --git a/site/public/v1/software/arkaos/index.json b/site/public/v1/software/arkaos/index.json new file mode 100644 index 000000000000..f612aed7ec3e --- /dev/null +++ b/site/public/v1/software/arkaos/index.json @@ -0,0 +1,19 @@ +{ + "id": 660, + "slug": "arkaos", + "name": "ArKaos", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4783026" + ], + "created_at": "2026-07-10T10:12:39.780466", + "updated_at": "2026-07-10T10:12:39.780466", + "url": "/v1/software/arkaos" +} diff --git a/site/public/v1/software/arkivum/index.json b/site/public/v1/software/arkivum/index.json new file mode 100644 index 000000000000..2afc932c62ac --- /dev/null +++ b/site/public/v1/software/arkivum/index.json @@ -0,0 +1,21 @@ +{ + "id": 661, + "slug": "arkivum", + "name": "Arkivum", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123002516" + ], + "created_at": "2026-07-10T10:12:39.780466", + "updated_at": "2026-07-10T10:12:39.780466", + "url": "/v1/software/arkivum" +} diff --git a/site/public/v1/software/arlequin/index.json b/site/public/v1/software/arlequin/index.json new file mode 100644 index 000000000000..c17fcbd0a8ba --- /dev/null +++ b/site/public/v1/software/arlequin/index.json @@ -0,0 +1,21 @@ +{ + "id": 662, + "slug": "arlequin", + "name": "Arlequin", + "release_date": null, + "developers": [ + "SIB Swiss Institute of Bioinformatics" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4792191" + ], + "created_at": "2026-07-10T10:12:39.781466", + "updated_at": "2026-07-10T10:12:39.781466", + "url": "/v1/software/arlequin" +} diff --git a/site/public/v1/software/arm/index.json b/site/public/v1/software/arm/index.json new file mode 100644 index 000000000000..ffe1ed9348a7 --- /dev/null +++ b/site/public/v1/software/arm/index.json @@ -0,0 +1,19 @@ +{ + "id": 663, + "slug": "arm", + "name": "arm", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4792457" + ], + "created_at": "2026-07-10T10:12:39.781466", + "updated_at": "2026-07-10T10:12:39.781466", + "url": "/v1/software/arm" +} diff --git a/site/public/v1/software/armed-bear-common-lisp/index.json b/site/public/v1/software/armed-bear-common-lisp/index.json new file mode 100644 index 000000000000..e4e7600c25be --- /dev/null +++ b/site/public/v1/software/armed-bear-common-lisp/index.json @@ -0,0 +1,24 @@ +{ + "id": 664, + "slug": "armed-bear-common-lisp", + "name": "Armed Bear Common Lisp", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Java", + "Common Lisp" + ], + "licenses": [ + "GNU General Public License, version 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106606463" + ], + "created_at": "2026-07-10T10:12:39.781466", + "updated_at": "2026-07-10T10:12:39.781466", + "url": "/v1/software/armed-bear-common-lisp" +} diff --git a/site/public/v1/software/arnis-mc/index.json b/site/public/v1/software/arnis-mc/index.json new file mode 100644 index 000000000000..de3bad1b9cd1 --- /dev/null +++ b/site/public/v1/software/arnis-mc/index.json @@ -0,0 +1,21 @@ +{ + "id": 665, + "slug": "arnis-mc", + "name": "Arnis MC", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Apache Software License 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138749655" + ], + "created_at": "2026-07-10T10:12:39.781466", + "updated_at": "2026-07-10T10:12:39.781466", + "url": "/v1/software/arnis-mc" +} diff --git a/site/public/v1/software/aroundme/index.json b/site/public/v1/software/aroundme/index.json new file mode 100644 index 000000000000..b93ce9dc4a6a --- /dev/null +++ b/site/public/v1/software/aroundme/index.json @@ -0,0 +1,21 @@ +{ + "id": 666, + "slug": "aroundme", + "name": "AroundMe", + "release_date": "2008-09-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4795608" + ], + "created_at": "2026-07-10T10:12:39.782466", + "updated_at": "2026-07-10T10:12:39.782466", + "url": "/v1/software/aroundme" +} diff --git a/site/public/v1/software/arp-scan/index.json b/site/public/v1/software/arp-scan/index.json new file mode 100644 index 000000000000..026f89d55d30 --- /dev/null +++ b/site/public/v1/software/arp-scan/index.json @@ -0,0 +1,19 @@ +{ + "id": 667, + "slug": "arp-scan", + "name": "arp-scan", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62851085" + ], + "created_at": "2026-07-10T10:12:39.782466", + "updated_at": "2026-07-10T10:12:39.782466", + "url": "/v1/software/arp-scan" +} diff --git a/site/public/v1/software/arras/index.json b/site/public/v1/software/arras/index.json new file mode 100644 index 000000000000..057dff443b98 --- /dev/null +++ b/site/public/v1/software/arras/index.json @@ -0,0 +1,19 @@ +{ + "id": 668, + "slug": "arras", + "name": "ARRAS", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084404" + ], + "created_at": "2026-07-10T10:12:39.782466", + "updated_at": "2026-07-10T10:12:39.782466", + "url": "/v1/software/arras" +} diff --git a/site/public/v1/software/arraytrack/index.json b/site/public/v1/software/arraytrack/index.json new file mode 100644 index 000000000000..3abef1de535a --- /dev/null +++ b/site/public/v1/software/arraytrack/index.json @@ -0,0 +1,21 @@ +{ + "id": 669, + "slug": "arraytrack", + "name": "ArrayTrack", + "release_date": null, + "developers": [ + "United States Food and Drug Administration" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4795870" + ], + "created_at": "2026-07-10T10:12:39.782466", + "updated_at": "2026-07-10T10:12:39.782466", + "url": "/v1/software/arraytrack" +} diff --git a/site/public/v1/software/arrivecan/index.json b/site/public/v1/software/arrivecan/index.json new file mode 100644 index 000000000000..2c02a92eee93 --- /dev/null +++ b/site/public/v1/software/arrivecan/index.json @@ -0,0 +1,21 @@ +{ + "id": 670, + "slug": "arrivecan", + "name": "ArriveCAN", + "release_date": null, + "developers": [ + "Canada Border Services Agency" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124727457" + ], + "created_at": "2026-07-10T10:12:39.782466", + "updated_at": "2026-07-10T10:12:39.782466", + "url": "/v1/software/arrivecan" +} diff --git a/site/public/v1/software/arsdigita-community-system/index.json b/site/public/v1/software/arsdigita-community-system/index.json new file mode 100644 index 000000000000..0e64d3591e52 --- /dev/null +++ b/site/public/v1/software/arsdigita-community-system/index.json @@ -0,0 +1,23 @@ +{ + "id": 671, + "slug": "arsdigita-community-system", + "name": "ArsDigita Community System", + "release_date": null, + "developers": [ + "ArsDigita" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "GNU General Public License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1718320" + ], + "created_at": "2026-07-10T10:12:39.783466", + "updated_at": "2026-07-10T10:12:39.783466", + "url": "/v1/software/arsdigita-community-system" +} diff --git a/site/public/v1/software/arsloid/index.json b/site/public/v1/software/arsloid/index.json new file mode 100644 index 000000000000..a1a3d4ea89e9 --- /dev/null +++ b/site/public/v1/software/arsloid/index.json @@ -0,0 +1,21 @@ +{ + "id": 672, + "slug": "arsloid", + "name": "ARSloid", + "release_date": "2015-09-23", + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q24908110" + ], + "created_at": "2026-07-10T10:12:39.783466", + "updated_at": "2026-07-10T10:12:39.783466", + "url": "/v1/software/arsloid" +} diff --git a/site/public/v1/software/arswp/index.json b/site/public/v1/software/arswp/index.json new file mode 100644 index 000000000000..43bcd48b6d90 --- /dev/null +++ b/site/public/v1/software/arswp/index.json @@ -0,0 +1,19 @@ +{ + "id": 673, + "slug": "arswp", + "name": "ARSwp", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10853335" + ], + "created_at": "2026-07-10T10:12:39.783466", + "updated_at": "2026-07-10T10:12:39.783466", + "url": "/v1/software/arswp" +} diff --git a/site/public/v1/software/art-authority/index.json b/site/public/v1/software/art-authority/index.json new file mode 100644 index 000000000000..23fb3fc528a1 --- /dev/null +++ b/site/public/v1/software/art-authority/index.json @@ -0,0 +1,19 @@ +{ + "id": 674, + "slug": "art-authority", + "name": "Art Authority", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4796683" + ], + "created_at": "2026-07-10T10:12:39.783466", + "updated_at": "2026-07-10T10:12:39.784466", + "url": "/v1/software/art-authority" +} diff --git a/site/public/v1/software/art/index.json b/site/public/v1/software/art/index.json new file mode 100644 index 000000000000..b196e199d053 --- /dev/null +++ b/site/public/v1/software/art/index.json @@ -0,0 +1,25 @@ +{ + "id": 675, + "slug": "art", + "name": "ART", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "cross-platform" + ], + "programming_languages": [ + "Java" + ], + "licenses": [ + "GNU General Public License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112079993" + ], + "created_at": "2026-07-10T10:12:39.784466", + "updated_at": "2026-07-10T10:12:39.784466", + "url": "/v1/software/art" +} diff --git a/site/public/v1/software/artas/index.json b/site/public/v1/software/artas/index.json new file mode 100644 index 000000000000..01878d88e85c --- /dev/null +++ b/site/public/v1/software/artas/index.json @@ -0,0 +1,19 @@ +{ + "id": 676, + "slug": "artas", + "name": "ARTAS", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4653933" + ], + "created_at": "2026-07-10T10:12:39.784466", + "updated_at": "2026-07-10T10:12:39.784466", + "url": "/v1/software/artas" +} diff --git a/site/public/v1/software/artcam/index.json b/site/public/v1/software/artcam/index.json new file mode 100644 index 000000000000..7dd8c4f4cb73 --- /dev/null +++ b/site/public/v1/software/artcam/index.json @@ -0,0 +1,19 @@ +{ + "id": 677, + "slug": "artcam", + "name": "ArtCAM", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4034408" + ], + "created_at": "2026-07-10T10:12:39.784466", + "updated_at": "2026-07-10T10:12:39.784466", + "url": "/v1/software/artcam" +} diff --git a/site/public/v1/software/arti/index.json b/site/public/v1/software/arti/index.json new file mode 100644 index 000000000000..662d679fbd3e --- /dev/null +++ b/site/public/v1/software/arti/index.json @@ -0,0 +1,26 @@ +{ + "id": 678, + "slug": "arti", + "name": "Arti", + "release_date": null, + "developers": [ + "The Tor Project, Inc" + ], + "publishers": [], + "operating_systems": [ + "cross-platform" + ], + "programming_languages": [], + "licenses": [ + "Apache Software License 2.0", + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117037659" + ], + "created_at": "2026-07-10T10:12:39.784466", + "updated_at": "2026-07-10T10:12:39.784466", + "url": "/v1/software/arti" +} diff --git a/site/public/v1/software/artifex-press/index.json b/site/public/v1/software/artifex-press/index.json new file mode 100644 index 000000000000..37cfd2215707 --- /dev/null +++ b/site/public/v1/software/artifex-press/index.json @@ -0,0 +1,19 @@ +{ + "id": 679, + "slug": "artifex-press", + "name": "Artifex Press", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084405" + ], + "created_at": "2026-07-10T10:12:39.785466", + "updated_at": "2026-07-10T10:12:39.785466", + "url": "/v1/software/artifex-press" +} diff --git a/site/public/v1/software/artificial-intuition/index.json b/site/public/v1/software/artificial-intuition/index.json new file mode 100644 index 000000000000..9e3f9c643f59 --- /dev/null +++ b/site/public/v1/software/artificial-intuition/index.json @@ -0,0 +1,19 @@ +{ + "id": 680, + "slug": "artificial-intuition", + "name": "artificial intuition", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4801082" + ], + "created_at": "2026-07-10T10:12:39.785466", + "updated_at": "2026-07-10T10:12:39.785466", + "url": "/v1/software/artificial-intuition" +} diff --git a/site/public/v1/software/artioscad/index.json b/site/public/v1/software/artioscad/index.json new file mode 100644 index 000000000000..5b7eb32446ac --- /dev/null +++ b/site/public/v1/software/artioscad/index.json @@ -0,0 +1,21 @@ +{ + "id": 681, + "slug": "artioscad", + "name": "ArtiosCAD", + "release_date": null, + "developers": [ + "Esko" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4801187" + ], + "created_at": "2026-07-10T10:12:39.785466", + "updated_at": "2026-07-10T10:12:39.785466", + "url": "/v1/software/artioscad" +} diff --git a/site/public/v1/software/artipic/index.json b/site/public/v1/software/artipic/index.json new file mode 100644 index 000000000000..20ced787b1b5 --- /dev/null +++ b/site/public/v1/software/artipic/index.json @@ -0,0 +1,22 @@ +{ + "id": 682, + "slug": "artipic", + "name": "Artipic", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Windows 8", + "Windows 7" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q24067032" + ], + "created_at": "2026-07-10T10:12:39.785466", + "updated_at": "2026-07-10T10:12:39.785466", + "url": "/v1/software/artipic" +} diff --git a/site/public/v1/software/artisteer/index.json b/site/public/v1/software/artisteer/index.json new file mode 100644 index 000000000000..42d80c238b6a --- /dev/null +++ b/site/public/v1/software/artisteer/index.json @@ -0,0 +1,21 @@ +{ + "id": 683, + "slug": "artisteer", + "name": "Artisteer", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4801249" + ], + "created_at": "2026-07-10T10:12:39.786466", + "updated_at": "2026-07-10T10:12:39.786466", + "url": "/v1/software/artisteer" +} diff --git a/site/public/v1/software/artisto/index.json b/site/public/v1/software/artisto/index.json new file mode 100644 index 000000000000..07711092eec1 --- /dev/null +++ b/site/public/v1/software/artisto/index.json @@ -0,0 +1,25 @@ +{ + "id": 684, + "slug": "artisto", + "name": "Artisto", + "release_date": "2016-07-29", + "developers": [ + "Mail.ru" + ], + "publishers": [], + "operating_systems": [ + "iOS" + ], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q26689913" + ], + "created_at": "2026-07-10T10:12:39.786466", + "updated_at": "2026-07-10T10:12:39.786466", + "url": "/v1/software/artisto" +} diff --git a/site/public/v1/software/artlantis/index.json b/site/public/v1/software/artlantis/index.json new file mode 100644 index 000000000000..2a5027a14c9c --- /dev/null +++ b/site/public/v1/software/artlantis/index.json @@ -0,0 +1,19 @@ +{ + "id": 685, + "slug": "artlantis", + "name": "Artlantis", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5707051" + ], + "created_at": "2026-07-10T10:12:39.786466", + "updated_at": "2026-07-10T10:12:39.786466", + "url": "/v1/software/artlantis" +} diff --git a/site/public/v1/software/artlas-geomap/index.json b/site/public/v1/software/artlas-geomap/index.json new file mode 100644 index 000000000000..3fd5889152b6 --- /dev/null +++ b/site/public/v1/software/artlas-geomap/index.json @@ -0,0 +1,19 @@ +{ + "id": 686, + "slug": "artlas-geomap", + "name": "Artlas / Geomap", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087687" + ], + "created_at": "2026-07-10T10:12:39.786466", + "updated_at": "2026-07-10T10:12:39.786466", + "url": "/v1/software/artlas-geomap" +} diff --git a/site/public/v1/software/artmoney/index.json b/site/public/v1/software/artmoney/index.json new file mode 100644 index 000000000000..b2115f166ea3 --- /dev/null +++ b/site/public/v1/software/artmoney/index.json @@ -0,0 +1,24 @@ +{ + "id": 687, + "slug": "artmoney", + "name": "ArtMoney", + "release_date": "1996-01-01", + "developers": [], + "publishers": [], + "operating_systems": [ + "DOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4034409" + ], + "created_at": "2026-07-10T10:12:39.786466", + "updated_at": "2026-07-10T10:12:39.786466", + "url": "/v1/software/artmoney" +} diff --git a/site/public/v1/software/artool-project/index.json b/site/public/v1/software/artool-project/index.json new file mode 100644 index 000000000000..5b0c6cdd8ac8 --- /dev/null +++ b/site/public/v1/software/artool-project/index.json @@ -0,0 +1,22 @@ +{ + "id": 688, + "slug": "artool-project", + "name": "ARTool-project", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "PHP", + "Symfony" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q44080565" + ], + "created_at": "2026-07-10T10:12:39.787466", + "updated_at": "2026-07-10T10:12:39.787466", + "url": "/v1/software/artool-project" +} diff --git a/site/public/v1/software/artoolkit/index.json b/site/public/v1/software/artoolkit/index.json new file mode 100644 index 000000000000..b2b953a254c2 --- /dev/null +++ b/site/public/v1/software/artoolkit/index.json @@ -0,0 +1,19 @@ +{ + "id": 689, + "slug": "artoolkit", + "name": "ARToolKit", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3269011" + ], + "created_at": "2026-07-10T10:12:39.787466", + "updated_at": "2026-07-10T10:12:39.787466", + "url": "/v1/software/artoolkit" +} diff --git a/site/public/v1/software/aruspix/index.json b/site/public/v1/software/aruspix/index.json new file mode 100644 index 000000000000..bdb2333eb363 --- /dev/null +++ b/site/public/v1/software/aruspix/index.json @@ -0,0 +1,19 @@ +{ + "id": 690, + "slug": "aruspix", + "name": "Aruspix", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084407" + ], + "created_at": "2026-07-10T10:12:39.787466", + "updated_at": "2026-07-10T10:12:39.787466", + "url": "/v1/software/aruspix" +} diff --git a/site/public/v1/software/as-400-automated-message-paging/index.json b/site/public/v1/software/as-400-automated-message-paging/index.json new file mode 100644 index 000000000000..9861724b2aa9 --- /dev/null +++ b/site/public/v1/software/as-400-automated-message-paging/index.json @@ -0,0 +1,19 @@ +{ + "id": 691, + "slug": "as-400-automated-message-paging", + "name": "AS/400 Automated Message Paging", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121631722" + ], + "created_at": "2026-07-10T10:12:39.787466", + "updated_at": "2026-07-10T10:12:39.787466", + "url": "/v1/software/as-400-automated-message-paging" +} diff --git a/site/public/v1/software/asagi/index.json b/site/public/v1/software/asagi/index.json new file mode 100644 index 000000000000..303a189cc617 --- /dev/null +++ b/site/public/v1/software/asagi/index.json @@ -0,0 +1,21 @@ +{ + "id": 692, + "slug": "asagi", + "name": "Asagi", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Java" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q77420922" + ], + "created_at": "2026-07-10T10:12:39.788466", + "updated_at": "2026-07-10T10:12:39.788466", + "url": "/v1/software/asagi" +} diff --git a/site/public/v1/software/ascertain/index.json b/site/public/v1/software/ascertain/index.json new file mode 100644 index 000000000000..8b3c8568d329 --- /dev/null +++ b/site/public/v1/software/ascertain/index.json @@ -0,0 +1,19 @@ +{ + "id": 693, + "slug": "ascertain", + "name": "ASCERTain", + "release_date": "1993-03-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121631733" + ], + "created_at": "2026-07-10T10:12:39.788466", + "updated_at": "2026-07-10T10:12:39.788466", + "url": "/v1/software/ascertain" +} diff --git a/site/public/v1/software/ascet/index.json b/site/public/v1/software/ascet/index.json new file mode 100644 index 000000000000..e064b425a171 --- /dev/null +++ b/site/public/v1/software/ascet/index.json @@ -0,0 +1,19 @@ +{ + "id": 694, + "slug": "ascet", + "name": "ASCET", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q297262" + ], + "created_at": "2026-07-10T10:12:39.788466", + "updated_at": "2026-07-10T10:12:39.788466", + "url": "/v1/software/ascet" +} diff --git a/site/public/v1/software/ascii-express/index.json b/site/public/v1/software/ascii-express/index.json new file mode 100644 index 000000000000..8810914cc4e4 --- /dev/null +++ b/site/public/v1/software/ascii-express/index.json @@ -0,0 +1,19 @@ +{ + "id": 695, + "slug": "ascii-express", + "name": "ASCII Express", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4654112" + ], + "created_at": "2026-07-10T10:12:39.788466", + "updated_at": "2026-07-10T10:12:39.788466", + "url": "/v1/software/ascii-express" +} diff --git a/site/public/v1/software/asciinema/index.json b/site/public/v1/software/asciinema/index.json new file mode 100644 index 000000000000..c4e40ad60ffb --- /dev/null +++ b/site/public/v1/software/asciinema/index.json @@ -0,0 +1,23 @@ +{ + "id": 696, + "slug": "asciinema", + "name": "asciinema", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Unix-like operating system" + ], + "programming_languages": [], + "licenses": [ + "GNU General Public License, version 3.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124365996" + ], + "created_at": "2026-07-10T10:12:39.789466", + "updated_at": "2026-07-10T10:12:39.789466", + "url": "/v1/software/asciinema" +} diff --git a/site/public/v1/software/asf-sdf-meta-environment/index.json b/site/public/v1/software/asf-sdf-meta-environment/index.json new file mode 100644 index 000000000000..ece3f756c93e --- /dev/null +++ b/site/public/v1/software/asf-sdf-meta-environment/index.json @@ -0,0 +1,19 @@ +{ + "id": 697, + "slug": "asf-sdf-meta-environment", + "name": "ASF+SDF Meta Environment", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4654216" + ], + "created_at": "2026-07-10T10:12:39.789466", + "updated_at": "2026-07-10T10:12:39.789466", + "url": "/v1/software/asf-sdf-meta-environment" +} diff --git a/site/public/v1/software/ash/index.json b/site/public/v1/software/ash/index.json new file mode 100644 index 000000000000..3daadcd97110 --- /dev/null +++ b/site/public/v1/software/ash/index.json @@ -0,0 +1,21 @@ +{ + "id": 698, + "slug": "ash", + "name": "ASH", + "release_date": null, + "developers": [ + "BigChillGhost" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q128210931" + ], + "created_at": "2026-07-10T10:12:39.789466", + "updated_at": "2026-07-10T10:12:39.789466", + "url": "/v1/software/ash" +} diff --git a/site/public/v1/software/ashampoo-core-tuner/index.json b/site/public/v1/software/ashampoo-core-tuner/index.json new file mode 100644 index 000000000000..ec77cb027294 --- /dev/null +++ b/site/public/v1/software/ashampoo-core-tuner/index.json @@ -0,0 +1,21 @@ +{ + "id": 699, + "slug": "ashampoo-core-tuner", + "name": "Ashampoo Core Tuner", + "release_date": null, + "developers": [ + "Ashampoo" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4034445" + ], + "created_at": "2026-07-10T10:12:39.789466", + "updated_at": "2026-07-10T10:12:39.789466", + "url": "/v1/software/ashampoo-core-tuner" +} diff --git a/site/public/v1/software/ashampoo-snap/index.json b/site/public/v1/software/ashampoo-snap/index.json new file mode 100644 index 000000000000..04d0e94bb3dd --- /dev/null +++ b/site/public/v1/software/ashampoo-snap/index.json @@ -0,0 +1,25 @@ +{ + "id": 700, + "slug": "ashampoo-snap", + "name": "Ashampoo Snap", + "release_date": null, + "developers": [ + "Ashampoo" + ], + "publishers": [], + "operating_systems": [ + "Windows 11" + ], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q77227930" + ], + "created_at": "2026-07-10T10:12:39.790466", + "updated_at": "2026-07-10T10:12:39.790466", + "url": "/v1/software/ashampoo-snap" +} diff --git a/site/public/v1/software/asic/index.json b/site/public/v1/software/asic/index.json new file mode 100644 index 000000000000..50fe28030ecb --- /dev/null +++ b/site/public/v1/software/asic/index.json @@ -0,0 +1,26 @@ +{ + "id": 701, + "slug": "asic", + "name": "ASIC", + "release_date": "1993-01-01", + "developers": [], + "publishers": [], + "operating_systems": [ + "DOS" + ], + "programming_languages": [ + "Microsoft Macro Assembler", + "Borland Turbo C" + ], + "licenses": [ + "shareware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q297730" + ], + "created_at": "2026-07-10T10:12:39.790466", + "updated_at": "2026-07-10T10:12:39.790466", + "url": "/v1/software/asic" +} diff --git a/site/public/v1/software/asio-eduerp/index.json b/site/public/v1/software/asio-eduerp/index.json new file mode 100644 index 000000000000..07cfa685222d --- /dev/null +++ b/site/public/v1/software/asio-eduerp/index.json @@ -0,0 +1,19 @@ +{ + "id": 702, + "slug": "asio-eduerp", + "name": "Asio EduERP", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4807018" + ], + "created_at": "2026-07-10T10:12:39.790466", + "updated_at": "2026-07-10T10:12:39.790466", + "url": "/v1/software/asio-eduerp" +} diff --git a/site/public/v1/software/ask-bignews/index.json b/site/public/v1/software/ask-bignews/index.json new file mode 100644 index 000000000000..c0aa9c8275bd --- /dev/null +++ b/site/public/v1/software/ask-bignews/index.json @@ -0,0 +1,19 @@ +{ + "id": 703, + "slug": "ask-bignews", + "name": "Ask BigNews", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4807061" + ], + "created_at": "2026-07-10T10:12:39.790466", + "updated_at": "2026-07-10T10:12:39.790466", + "url": "/v1/software/ask-bignews" +} diff --git a/site/public/v1/software/asmail/index.json b/site/public/v1/software/asmail/index.json new file mode 100644 index 000000000000..90af0d31a460 --- /dev/null +++ b/site/public/v1/software/asmail/index.json @@ -0,0 +1,19 @@ +{ + "id": 704, + "slug": "asmail", + "name": "asmail", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62851097" + ], + "created_at": "2026-07-10T10:12:39.790466", + "updated_at": "2026-07-10T10:12:39.790466", + "url": "/v1/software/asmail" +} diff --git a/site/public/v1/software/asmon/index.json b/site/public/v1/software/asmon/index.json new file mode 100644 index 000000000000..11ee92479e08 --- /dev/null +++ b/site/public/v1/software/asmon/index.json @@ -0,0 +1,19 @@ +{ + "id": 705, + "slug": "asmon", + "name": "asmon", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62851170" + ], + "created_at": "2026-07-10T10:12:39.791466", + "updated_at": "2026-07-10T10:12:39.791466", + "url": "/v1/software/asmon" +} diff --git a/site/public/v1/software/asp-net-dynamic-data/index.json b/site/public/v1/software/asp-net-dynamic-data/index.json new file mode 100644 index 000000000000..9fe792799b8a --- /dev/null +++ b/site/public/v1/software/asp-net-dynamic-data/index.json @@ -0,0 +1,19 @@ +{ + "id": 706, + "slug": "asp-net-dynamic-data", + "name": "ASP.NET Dynamic Data", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q580684" + ], + "created_at": "2026-07-10T10:12:39.791466", + "updated_at": "2026-07-10T10:12:39.791466", + "url": "/v1/software/asp-net-dynamic-data" +} diff --git a/site/public/v1/software/asp-net-web-forms/index.json b/site/public/v1/software/asp-net-web-forms/index.json new file mode 100644 index 000000000000..6309071013dd --- /dev/null +++ b/site/public/v1/software/asp-net-web-forms/index.json @@ -0,0 +1,19 @@ +{ + "id": 707, + "slug": "asp-net-web-forms", + "name": "ASP.NET Web Forms", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q55602973" + ], + "created_at": "2026-07-10T10:12:39.791466", + "updated_at": "2026-07-10T10:12:39.791466", + "url": "/v1/software/asp-net-web-forms" +} diff --git a/site/public/v1/software/asp-net-web-site-administration-tool/index.json b/site/public/v1/software/asp-net-web-site-administration-tool/index.json new file mode 100644 index 000000000000..128fe4c8eff2 --- /dev/null +++ b/site/public/v1/software/asp-net-web-site-administration-tool/index.json @@ -0,0 +1,19 @@ +{ + "id": 708, + "slug": "asp-net-web-site-administration-tool", + "name": "ASP.NET Web Site Administration Tool", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4654312" + ], + "created_at": "2026-07-10T10:12:39.792466", + "updated_at": "2026-07-10T10:12:39.792466", + "url": "/v1/software/asp-net-web-site-administration-tool" +} diff --git a/site/public/v1/software/aspell-da/index.json b/site/public/v1/software/aspell-da/index.json new file mode 100644 index 000000000000..ab4e3941eed1 --- /dev/null +++ b/site/public/v1/software/aspell-da/index.json @@ -0,0 +1,19 @@ +{ + "id": 709, + "slug": "aspell-da", + "name": "aspell-da", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62846001" + ], + "created_at": "2026-07-10T10:12:39.792466", + "updated_at": "2026-07-10T10:12:39.792466", + "url": "/v1/software/aspell-da" +} diff --git a/site/public/v1/software/aspell-la/index.json b/site/public/v1/software/aspell-la/index.json new file mode 100644 index 000000000000..dc19c8c4b642 --- /dev/null +++ b/site/public/v1/software/aspell-la/index.json @@ -0,0 +1,19 @@ +{ + "id": 710, + "slug": "aspell-la", + "name": "aspell-la", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106101991" + ], + "created_at": "2026-07-10T10:12:39.792466", + "updated_at": "2026-07-10T10:12:39.792466", + "url": "/v1/software/aspell-la" +} diff --git a/site/public/v1/software/aspera/index.json b/site/public/v1/software/aspera/index.json new file mode 100644 index 000000000000..555814946326 --- /dev/null +++ b/site/public/v1/software/aspera/index.json @@ -0,0 +1,19 @@ +{ + "id": 711, + "slug": "aspera", + "name": "Aspera", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q55593547" + ], + "created_at": "2026-07-10T10:12:39.793467", + "updated_at": "2026-07-10T10:12:39.793467", + "url": "/v1/software/aspera" +} diff --git a/site/public/v1/software/asprise-ocr/index.json b/site/public/v1/software/asprise-ocr/index.json new file mode 100644 index 000000000000..d120bed833f4 --- /dev/null +++ b/site/public/v1/software/asprise-ocr/index.json @@ -0,0 +1,21 @@ +{ + "id": 712, + "slug": "asprise-ocr", + "name": "Asprise OCR", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Java" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q20707736" + ], + "created_at": "2026-07-10T10:12:39.793467", + "updated_at": "2026-07-10T10:12:39.793467", + "url": "/v1/software/asprise-ocr" +} diff --git a/site/public/v1/software/asreml/index.json b/site/public/v1/software/asreml/index.json new file mode 100644 index 000000000000..156b128f1b10 --- /dev/null +++ b/site/public/v1/software/asreml/index.json @@ -0,0 +1,21 @@ +{ + "id": 713, + "slug": "asreml", + "name": "ASReml", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4654344" + ], + "created_at": "2026-07-10T10:12:39.793467", + "updated_at": "2026-07-10T10:12:39.793467", + "url": "/v1/software/asreml" +} diff --git a/site/public/v1/software/asset-bank/index.json b/site/public/v1/software/asset-bank/index.json new file mode 100644 index 000000000000..88cb41d57b86 --- /dev/null +++ b/site/public/v1/software/asset-bank/index.json @@ -0,0 +1,19 @@ +{ + "id": 714, + "slug": "asset-bank", + "name": "Asset Bank", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084408" + ], + "created_at": "2026-07-10T10:12:39.793467", + "updated_at": "2026-07-10T10:12:39.793467", + "url": "/v1/software/asset-bank" +} diff --git a/site/public/v1/software/astah/index.json b/site/public/v1/software/astah/index.json new file mode 100644 index 000000000000..0fbc01807ee6 --- /dev/null +++ b/site/public/v1/software/astah/index.json @@ -0,0 +1,19 @@ +{ + "id": 715, + "slug": "astah", + "name": "Astah*", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3187939" + ], + "created_at": "2026-07-10T10:12:39.793467", + "updated_at": "2026-07-10T10:12:39.793467", + "url": "/v1/software/astah" +} diff --git a/site/public/v1/software/astar-network/index.json b/site/public/v1/software/astar-network/index.json new file mode 100644 index 000000000000..6bcc2aee6fc1 --- /dev/null +++ b/site/public/v1/software/astar-network/index.json @@ -0,0 +1,19 @@ +{ + "id": 716, + "slug": "astar-network", + "name": "Astar Network", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q114229342" + ], + "created_at": "2026-07-10T10:12:39.799638", + "updated_at": "2026-07-10T10:12:39.799638", + "url": "/v1/software/astar-network" +} diff --git a/site/public/v1/software/asterisk-gateway-interface/index.json b/site/public/v1/software/asterisk-gateway-interface/index.json new file mode 100644 index 000000000000..aa45ceea1549 --- /dev/null +++ b/site/public/v1/software/asterisk-gateway-interface/index.json @@ -0,0 +1,19 @@ +{ + "id": 717, + "slug": "asterisk-gateway-interface", + "name": "Asterisk Gateway Interface", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4032906" + ], + "created_at": "2026-07-10T10:12:39.806723", + "updated_at": "2026-07-10T10:12:39.806723", + "url": "/v1/software/asterisk-gateway-interface" +} diff --git a/site/public/v1/software/astos/index.json b/site/public/v1/software/astos/index.json new file mode 100644 index 000000000000..2056de4b923b --- /dev/null +++ b/site/public/v1/software/astos/index.json @@ -0,0 +1,21 @@ +{ + "id": 718, + "slug": "astos", + "name": "ASTOS", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3601270" + ], + "created_at": "2026-07-10T10:12:39.810396", + "updated_at": "2026-07-10T10:12:39.810396", + "url": "/v1/software/astos" +} diff --git a/site/public/v1/software/astpp/index.json b/site/public/v1/software/astpp/index.json new file mode 100644 index 000000000000..ebf440b3dfc7 --- /dev/null +++ b/site/public/v1/software/astpp/index.json @@ -0,0 +1,19 @@ +{ + "id": 719, + "slug": "astpp", + "name": "ASTPP", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140321943" + ], + "created_at": "2026-07-10T10:12:39.814492", + "updated_at": "2026-07-10T10:12:39.814492", + "url": "/v1/software/astpp" +} diff --git a/site/public/v1/software/astr-e/index.json b/site/public/v1/software/astr-e/index.json new file mode 100644 index 000000000000..2a4f58ca5468 --- /dev/null +++ b/site/public/v1/software/astr-e/index.json @@ -0,0 +1,24 @@ +{ + "id": 720, + "slug": "astr-e", + "name": "Astrée", + "release_date": null, + "developers": [ + "Antoine Miné", + "Jérôme Feret", + "David Monniaux", + "AbsInt" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4811752" + ], + "created_at": "2026-07-10T10:12:39.817508", + "updated_at": "2026-07-10T10:12:39.817508", + "url": "/v1/software/astr-e" +} diff --git a/site/public/v1/software/astra/index.json b/site/public/v1/software/astra/index.json new file mode 100644 index 000000000000..d3003d5bef13 --- /dev/null +++ b/site/public/v1/software/astra/index.json @@ -0,0 +1,19 @@ +{ + "id": 721, + "slug": "astra", + "name": "Astra", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q39069650" + ], + "created_at": "2026-07-10T10:12:39.819527", + "updated_at": "2026-07-10T10:12:39.819527", + "url": "/v1/software/astra" +} diff --git a/site/public/v1/software/astra32/index.json b/site/public/v1/software/astra32/index.json new file mode 100644 index 000000000000..533611489719 --- /dev/null +++ b/site/public/v1/software/astra32/index.json @@ -0,0 +1,19 @@ +{ + "id": 722, + "slug": "astra32", + "name": "ASTRA32", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4033087" + ], + "created_at": "2026-07-10T10:12:39.821483", + "updated_at": "2026-07-10T10:12:39.821483", + "url": "/v1/software/astra32" +} diff --git a/site/public/v1/software/astroml/index.json b/site/public/v1/software/astroml/index.json new file mode 100644 index 000000000000..2d91cdce1a5d --- /dev/null +++ b/site/public/v1/software/astroml/index.json @@ -0,0 +1,19 @@ +{ + "id": 723, + "slug": "astroml", + "name": "astroml", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065113" + ], + "created_at": "2026-07-10T10:12:39.824570", + "updated_at": "2026-07-10T10:12:39.824570", + "url": "/v1/software/astroml" +} diff --git a/site/public/v1/software/asus-gpu-tweak/index.json b/site/public/v1/software/asus-gpu-tweak/index.json new file mode 100644 index 000000000000..359c5dd52a69 --- /dev/null +++ b/site/public/v1/software/asus-gpu-tweak/index.json @@ -0,0 +1,19 @@ +{ + "id": 724, + "slug": "asus-gpu-tweak", + "name": "ASUS GPU Tweak", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131465713" + ], + "created_at": "2026-07-10T10:12:39.825404", + "updated_at": "2026-07-10T10:12:39.825404", + "url": "/v1/software/asus-gpu-tweak" +} diff --git a/site/public/v1/software/asus-webstorage/index.json b/site/public/v1/software/asus-webstorage/index.json new file mode 100644 index 000000000000..3c4953696297 --- /dev/null +++ b/site/public/v1/software/asus-webstorage/index.json @@ -0,0 +1,19 @@ +{ + "id": 725, + "slug": "asus-webstorage", + "name": "Asus WebStorage", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q967308" + ], + "created_at": "2026-07-10T10:12:39.827407", + "updated_at": "2026-07-10T10:12:39.827407", + "url": "/v1/software/asus-webstorage" +} diff --git a/site/public/v1/software/asus-zenui/index.json b/site/public/v1/software/asus-zenui/index.json new file mode 100644 index 000000000000..eea81036cbaf --- /dev/null +++ b/site/public/v1/software/asus-zenui/index.json @@ -0,0 +1,21 @@ +{ + "id": 726, + "slug": "asus-zenui", + "name": "ASUS ZenUI", + "release_date": null, + "developers": [ + "ASUS" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18209661" + ], + "created_at": "2026-07-10T10:12:39.828407", + "updated_at": "2026-07-10T10:12:39.828407", + "url": "/v1/software/asus-zenui" +} diff --git a/site/public/v1/software/asv-online-toolbox/index.json b/site/public/v1/software/asv-online-toolbox/index.json new file mode 100644 index 000000000000..a93e7b5a9e75 --- /dev/null +++ b/site/public/v1/software/asv-online-toolbox/index.json @@ -0,0 +1,19 @@ +{ + "id": 727, + "slug": "asv-online-toolbox", + "name": "ASV Online Toolbox", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084409" + ], + "created_at": "2026-07-10T10:12:39.828407", + "updated_at": "2026-07-10T10:12:39.828407", + "url": "/v1/software/asv-online-toolbox" +} diff --git a/site/public/v1/software/at-calc/index.json b/site/public/v1/software/at-calc/index.json new file mode 100644 index 000000000000..8a3eaf4880db --- /dev/null +++ b/site/public/v1/software/at-calc/index.json @@ -0,0 +1,19 @@ +{ + "id": 728, + "slug": "at-calc", + "name": "AT Calc", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3825315" + ], + "created_at": "2026-07-10T10:12:39.829407", + "updated_at": "2026-07-10T10:12:39.829407", + "url": "/v1/software/at-calc" +} diff --git a/site/public/v1/software/at-t-natural-voices/index.json b/site/public/v1/software/at-t-natural-voices/index.json new file mode 100644 index 000000000000..6e3c9bf92bd1 --- /dev/null +++ b/site/public/v1/software/at-t-natural-voices/index.json @@ -0,0 +1,21 @@ +{ + "id": 729, + "slug": "at-t-natural-voices", + "name": "AT&T Natural Voices", + "release_date": "1996-01-01", + "developers": [ + "AT&T Laboratories" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125535717" + ], + "created_at": "2026-07-10T10:12:39.830406", + "updated_at": "2026-07-10T10:12:39.830406", + "url": "/v1/software/at-t-natural-voices" +} diff --git a/site/public/v1/software/atari-assembler-editor/index.json b/site/public/v1/software/atari-assembler-editor/index.json new file mode 100644 index 000000000000..b6bc8d626fed --- /dev/null +++ b/site/public/v1/software/atari-assembler-editor/index.json @@ -0,0 +1,21 @@ +{ + "id": 730, + "slug": "atari-assembler-editor", + "name": "Atari Assembler Editor", + "release_date": null, + "developers": [ + "Shepardson Microsystems" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4812828" + ], + "created_at": "2026-07-10T10:12:39.831461", + "updated_at": "2026-07-10T10:12:39.831461", + "url": "/v1/software/atari-assembler-editor" +} diff --git a/site/public/v1/software/atari-calculator/index.json b/site/public/v1/software/atari-calculator/index.json new file mode 100644 index 000000000000..2de9ee5c617b --- /dev/null +++ b/site/public/v1/software/atari-calculator/index.json @@ -0,0 +1,19 @@ +{ + "id": 731, + "slug": "atari-calculator", + "name": "Atari Calculator", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130295978" + ], + "created_at": "2026-07-10T10:12:39.831461", + "updated_at": "2026-07-10T10:12:39.831461", + "url": "/v1/software/atari-calculator" +} diff --git a/site/public/v1/software/atari-message-information-system/index.json b/site/public/v1/software/atari-message-information-system/index.json new file mode 100644 index 000000000000..81bfbcf2365e --- /dev/null +++ b/site/public/v1/software/atari-message-information-system/index.json @@ -0,0 +1,21 @@ +{ + "id": 732, + "slug": "atari-message-information-system", + "name": "Atari Message Information System", + "release_date": "1983-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Atari BASIC" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4812836" + ], + "created_at": "2026-07-10T10:12:39.832503", + "updated_at": "2026-07-10T10:12:39.832503", + "url": "/v1/software/atari-message-information-system" +} diff --git a/site/public/v1/software/atari-st-basic/index.json b/site/public/v1/software/atari-st-basic/index.json new file mode 100644 index 000000000000..31087edc9fa6 --- /dev/null +++ b/site/public/v1/software/atari-st-basic/index.json @@ -0,0 +1,21 @@ +{ + "id": 733, + "slug": "atari-st-basic", + "name": "Atari ST BASIC", + "release_date": null, + "developers": [ + "MetaComCo" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3627876" + ], + "created_at": "2026-07-10T10:12:39.832503", + "updated_at": "2026-07-10T10:12:39.832503", + "url": "/v1/software/atari-st-basic" +} diff --git a/site/public/v1/software/atari-word-processor/index.json b/site/public/v1/software/atari-word-processor/index.json new file mode 100644 index 000000000000..e7955c3acf84 --- /dev/null +++ b/site/public/v1/software/atari-word-processor/index.json @@ -0,0 +1,21 @@ +{ + "id": 734, + "slug": "atari-word-processor", + "name": "Atari Word Processor", + "release_date": null, + "developers": [ + "Atari, Inc." + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115821244" + ], + "created_at": "2026-07-10T10:12:39.833510", + "updated_at": "2026-07-10T10:12:39.833510", + "url": "/v1/software/atari-word-processor" +} diff --git a/site/public/v1/software/atarilab/index.json b/site/public/v1/software/atarilab/index.json new file mode 100644 index 000000000000..b8f17008a8d5 --- /dev/null +++ b/site/public/v1/software/atarilab/index.json @@ -0,0 +1,21 @@ +{ + "id": 735, + "slug": "atarilab", + "name": "AtariLab", + "release_date": "1983-01-01", + "developers": [ + "Dickinson College" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22906510" + ], + "created_at": "2026-07-10T10:12:39.833510", + "updated_at": "2026-07-10T10:12:39.833510", + "url": "/v1/software/atarilab" +} diff --git a/site/public/v1/software/atatool/index.json b/site/public/v1/software/atatool/index.json new file mode 100644 index 000000000000..320d70ae651b --- /dev/null +++ b/site/public/v1/software/atatool/index.json @@ -0,0 +1,21 @@ +{ + "id": 736, + "slug": "atatool", + "name": "ATATool", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28956976" + ], + "created_at": "2026-07-10T10:12:39.834486", + "updated_at": "2026-07-10T10:12:39.834486", + "url": "/v1/software/atatool" +} diff --git a/site/public/v1/software/atera-networks/index.json b/site/public/v1/software/atera-networks/index.json new file mode 100644 index 000000000000..71ef11f761c4 --- /dev/null +++ b/site/public/v1/software/atera-networks/index.json @@ -0,0 +1,19 @@ +{ + "id": 737, + "slug": "atera-networks", + "name": "Atera Networks", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126934859" + ], + "created_at": "2026-07-10T10:12:39.834486", + "updated_at": "2026-07-10T10:12:39.834486", + "url": "/v1/software/atera-networks" +} diff --git a/site/public/v1/software/atheme-services/index.json b/site/public/v1/software/atheme-services/index.json new file mode 100644 index 000000000000..2d01c93231cb --- /dev/null +++ b/site/public/v1/software/atheme-services/index.json @@ -0,0 +1,21 @@ +{ + "id": 738, + "slug": "atheme-services", + "name": "atheme-services", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Unix-like operating system" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28941620" + ], + "created_at": "2026-07-10T10:12:39.835500", + "updated_at": "2026-07-10T10:12:39.835500", + "url": "/v1/software/atheme-services" +} diff --git a/site/public/v1/software/athenaplus/index.json b/site/public/v1/software/athenaplus/index.json new file mode 100644 index 000000000000..0f862478236f --- /dev/null +++ b/site/public/v1/software/athenaplus/index.json @@ -0,0 +1,19 @@ +{ + "id": 739, + "slug": "athenaplus", + "name": "AthenaPlus", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16112557" + ], + "created_at": "2026-07-10T10:12:39.835500", + "updated_at": "2026-07-10T10:12:39.835500", + "url": "/v1/software/athenaplus" +} diff --git a/site/public/v1/software/ati-avivo/index.json b/site/public/v1/software/ati-avivo/index.json new file mode 100644 index 000000000000..3e384d243472 --- /dev/null +++ b/site/public/v1/software/ati-avivo/index.json @@ -0,0 +1,21 @@ +{ + "id": 740, + "slug": "ati-avivo", + "name": "ATI Avivo", + "release_date": "2005-01-01", + "developers": [ + "ATI Technologies" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q298929" + ], + "created_at": "2026-07-10T10:12:39.835500", + "updated_at": "2026-07-10T10:12:39.835500", + "url": "/v1/software/ati-avivo" +} diff --git a/site/public/v1/software/ati-tray-tools/index.json b/site/public/v1/software/ati-tray-tools/index.json new file mode 100644 index 000000000000..431d041594a7 --- /dev/null +++ b/site/public/v1/software/ati-tray-tools/index.json @@ -0,0 +1,23 @@ +{ + "id": 741, + "slug": "ati-tray-tools", + "name": "ATI Tray Tools", + "release_date": null, + "developers": [ + "Ray Adams" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q375904" + ], + "created_at": "2026-07-10T10:12:39.835500", + "updated_at": "2026-07-10T10:12:39.835500", + "url": "/v1/software/ati-tray-tools" +} diff --git a/site/public/v1/software/atila/index.json b/site/public/v1/software/atila/index.json new file mode 100644 index 000000000000..f6a38edc5471 --- /dev/null +++ b/site/public/v1/software/atila/index.json @@ -0,0 +1,19 @@ +{ + "id": 742, + "slug": "atila", + "name": "ATILA", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25110671" + ], + "created_at": "2026-07-10T10:12:39.836485", + "updated_at": "2026-07-10T10:12:39.836485", + "url": "/v1/software/atila" +} diff --git a/site/public/v1/software/atis-cloud/index.json b/site/public/v1/software/atis-cloud/index.json new file mode 100644 index 000000000000..d275baa5cfd2 --- /dev/null +++ b/site/public/v1/software/atis-cloud/index.json @@ -0,0 +1,23 @@ +{ + "id": 743, + "slug": "atis-cloud", + "name": "ATIS.cloud", + "release_date": null, + "developers": [ + "CYDIS" + ], + "publishers": [ + "CYDIS" + ], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139960149" + ], + "created_at": "2026-07-10T10:12:39.836485", + "updated_at": "2026-07-10T10:12:39.836485", + "url": "/v1/software/atis-cloud" +} diff --git a/site/public/v1/software/atlas-ti/index.json b/site/public/v1/software/atlas-ti/index.json new file mode 100644 index 000000000000..6542b89b1ad3 --- /dev/null +++ b/site/public/v1/software/atlas-ti/index.json @@ -0,0 +1,26 @@ +{ + "id": 744, + "slug": "atlas-ti", + "name": "ATLAS.ti", + "release_date": null, + "developers": [ + "Thomas Muhr" + ], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3628244" + ], + "created_at": "2026-07-10T10:12:39.836485", + "updated_at": "2026-07-10T10:12:39.836485", + "url": "/v1/software/atlas-ti" +} diff --git a/site/public/v1/software/atlas-vpn/index.json b/site/public/v1/software/atlas-vpn/index.json new file mode 100644 index 000000000000..5565580c56f9 --- /dev/null +++ b/site/public/v1/software/atlas-vpn/index.json @@ -0,0 +1,23 @@ +{ + "id": 745, + "slug": "atlas-vpn", + "name": "Atlas VPN", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "iOS", + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123144281" + ], + "created_at": "2026-07-10T10:12:39.837484", + "updated_at": "2026-07-10T10:12:39.837484", + "url": "/v1/software/atlas-vpn" +} diff --git a/site/public/v1/software/atlasify/index.json b/site/public/v1/software/atlasify/index.json new file mode 100644 index 000000000000..a3bdd5a521d0 --- /dev/null +++ b/site/public/v1/software/atlasify/index.json @@ -0,0 +1,19 @@ +{ + "id": 746, + "slug": "atlasify", + "name": "Atlasify", + "release_date": "2015-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q20764175" + ], + "created_at": "2026-07-10T10:12:39.837484", + "updated_at": "2026-07-10T10:12:39.837484", + "url": "/v1/software/atlasify" +} diff --git a/site/public/v1/software/atlensa/index.json b/site/public/v1/software/atlensa/index.json new file mode 100644 index 000000000000..dbf8a9924247 --- /dev/null +++ b/site/public/v1/software/atlensa/index.json @@ -0,0 +1,21 @@ +{ + "id": 747, + "slug": "atlensa", + "name": "Atlensa", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "web application" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140030286" + ], + "created_at": "2026-07-10T10:12:39.837484", + "updated_at": "2026-07-10T10:12:39.837484", + "url": "/v1/software/atlensa" +} diff --git a/site/public/v1/software/atom/index.json b/site/public/v1/software/atom/index.json new file mode 100644 index 000000000000..4f521efb2552 --- /dev/null +++ b/site/public/v1/software/atom/index.json @@ -0,0 +1,19 @@ +{ + "id": 748, + "slug": "atom", + "name": "Atom", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084410" + ], + "created_at": "2026-07-10T10:12:39.837484", + "updated_at": "2026-07-10T10:12:39.837484", + "url": "/v1/software/atom" +} diff --git a/site/public/v1/software/atomicparsley/index.json b/site/public/v1/software/atomicparsley/index.json new file mode 100644 index 000000000000..c81b31316bc1 --- /dev/null +++ b/site/public/v1/software/atomicparsley/index.json @@ -0,0 +1,19 @@ +{ + "id": 749, + "slug": "atomicparsley", + "name": "AtomicParsley", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q133042610" + ], + "created_at": "2026-07-10T10:12:39.838499", + "updated_at": "2026-07-10T10:12:39.838499", + "url": "/v1/software/atomicparsley" +} diff --git a/site/public/v1/software/atomistix-virtual-nanolab/index.json b/site/public/v1/software/atomistix-virtual-nanolab/index.json new file mode 100644 index 000000000000..954ab99236a5 --- /dev/null +++ b/site/public/v1/software/atomistix-virtual-nanolab/index.json @@ -0,0 +1,19 @@ +{ + "id": 750, + "slug": "atomistix-virtual-nanolab", + "name": "Atomistix Virtual NanoLab", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4817372" + ], + "created_at": "2026-07-10T10:12:39.838499", + "updated_at": "2026-07-10T10:12:39.838499", + "url": "/v1/software/atomistix-virtual-nanolab" +} diff --git a/site/public/v1/software/atos/index.json b/site/public/v1/software/atos/index.json new file mode 100644 index 000000000000..2c4a68c337a4 --- /dev/null +++ b/site/public/v1/software/atos/index.json @@ -0,0 +1,19 @@ +{ + "id": 751, + "slug": "atos", + "name": "ATOS", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1306665" + ], + "created_at": "2026-07-10T10:12:39.839493", + "updated_at": "2026-07-10T10:12:39.839493", + "url": "/v1/software/atos" +} diff --git a/site/public/v1/software/atrain/index.json b/site/public/v1/software/atrain/index.json new file mode 100644 index 000000000000..40e44407c690 --- /dev/null +++ b/site/public/v1/software/atrain/index.json @@ -0,0 +1,23 @@ +{ + "id": 752, + "slug": "atrain", + "name": "aTrain", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [ + "Python" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123185993" + ], + "created_at": "2026-07-10T10:12:39.839493", + "updated_at": "2026-07-10T10:12:39.839493", + "url": "/v1/software/atrain" +} diff --git a/site/public/v1/software/attack-surface-analyzer/index.json b/site/public/v1/software/attack-surface-analyzer/index.json new file mode 100644 index 000000000000..70d7fe5f963d --- /dev/null +++ b/site/public/v1/software/attack-surface-analyzer/index.json @@ -0,0 +1,21 @@ +{ + "id": 753, + "slug": "attack-surface-analyzer", + "name": "Attack Surface Analyzer", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4817929" + ], + "created_at": "2026-07-10T10:12:39.839493", + "updated_at": "2026-07-10T10:12:39.839493", + "url": "/v1/software/attack-surface-analyzer" +} diff --git a/site/public/v1/software/attensity/index.json b/site/public/v1/software/attensity/index.json new file mode 100644 index 000000000000..ce3e17499117 --- /dev/null +++ b/site/public/v1/software/attensity/index.json @@ -0,0 +1,19 @@ +{ + "id": 754, + "slug": "attensity", + "name": "Attensity", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087688" + ], + "created_at": "2026-07-10T10:12:39.840402", + "updated_at": "2026-07-10T10:12:39.840402", + "url": "/v1/software/attensity" +} diff --git a/site/public/v1/software/attr/index.json b/site/public/v1/software/attr/index.json new file mode 100644 index 000000000000..bf8a4e947845 --- /dev/null +++ b/site/public/v1/software/attr/index.json @@ -0,0 +1,21 @@ +{ + "id": 755, + "slug": "attr", + "name": "attr", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "GNU General Public License, version 2.0 or later" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q64495827" + ], + "created_at": "2026-07-10T10:12:39.840402", + "updated_at": "2026-07-10T10:12:39.840402", + "url": "/v1/software/attr" +} diff --git a/site/public/v1/software/atube-catcher/index.json b/site/public/v1/software/atube-catcher/index.json new file mode 100644 index 000000000000..e10fcabd7420 --- /dev/null +++ b/site/public/v1/software/atube-catcher/index.json @@ -0,0 +1,19 @@ +{ + "id": 756, + "slug": "atube-catcher", + "name": "aTube Catcher", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3541764" + ], + "created_at": "2026-07-10T10:12:39.840402", + "updated_at": "2026-07-10T10:12:39.840402", + "url": "/v1/software/atube-catcher" +} diff --git a/site/public/v1/software/aua-framework/index.json b/site/public/v1/software/aua-framework/index.json new file mode 100644 index 000000000000..0c7f1b8ce4b9 --- /dev/null +++ b/site/public/v1/software/aua-framework/index.json @@ -0,0 +1,19 @@ +{ + "id": 757, + "slug": "aua-framework", + "name": "AUA Framework", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112131421" + ], + "created_at": "2026-07-10T10:12:39.841517", + "updated_at": "2026-07-10T10:12:39.841517", + "url": "/v1/software/aua-framework" +} diff --git a/site/public/v1/software/auction-sniping/index.json b/site/public/v1/software/auction-sniping/index.json new file mode 100644 index 000000000000..7b642b0bf08b --- /dev/null +++ b/site/public/v1/software/auction-sniping/index.json @@ -0,0 +1,19 @@ +{ + "id": 758, + "slug": "auction-sniping", + "name": "auction sniping", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1474178" + ], + "created_at": "2026-07-10T10:12:39.841517", + "updated_at": "2026-07-10T10:12:39.841517", + "url": "/v1/software/auction-sniping" +} diff --git a/site/public/v1/software/audex/index.json b/site/public/v1/software/audex/index.json new file mode 100644 index 000000000000..d6bea3fdef21 --- /dev/null +++ b/site/public/v1/software/audex/index.json @@ -0,0 +1,19 @@ +{ + "id": 759, + "slug": "audex", + "name": "Audex", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q20057011" + ], + "created_at": "2026-07-10T10:12:39.841517", + "updated_at": "2026-07-10T10:12:39.841517", + "url": "/v1/software/audex" +} diff --git a/site/public/v1/software/audials-one/index.json b/site/public/v1/software/audials-one/index.json new file mode 100644 index 000000000000..ada84043e3b0 --- /dev/null +++ b/site/public/v1/software/audials-one/index.json @@ -0,0 +1,19 @@ +{ + "id": 760, + "slug": "audials-one", + "name": "Audials One", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118129101" + ], + "created_at": "2026-07-10T10:12:39.842409", + "updated_at": "2026-07-10T10:12:39.842409", + "url": "/v1/software/audials-one" +} diff --git a/site/public/v1/software/audio-midi-setup/index.json b/site/public/v1/software/audio-midi-setup/index.json new file mode 100644 index 000000000000..690f52abf8cc --- /dev/null +++ b/site/public/v1/software/audio-midi-setup/index.json @@ -0,0 +1,19 @@ +{ + "id": 761, + "slug": "audio-midi-setup", + "name": "Audio MIDI Setup", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2253358" + ], + "created_at": "2026-07-10T10:12:39.842409", + "updated_at": "2026-07-10T10:12:39.842409", + "url": "/v1/software/audio-midi-setup" +} diff --git a/site/public/v1/software/audio-overload/index.json b/site/public/v1/software/audio-overload/index.json new file mode 100644 index 000000000000..066a0effbb98 --- /dev/null +++ b/site/public/v1/software/audio-overload/index.json @@ -0,0 +1,19 @@ +{ + "id": 762, + "slug": "audio-overload", + "name": "Audio Overload", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11190546" + ], + "created_at": "2026-07-10T10:12:39.842409", + "updated_at": "2026-07-10T10:12:39.842409", + "url": "/v1/software/audio-overload" +} diff --git a/site/public/v1/software/audiobook-cutter-free-edition/index.json b/site/public/v1/software/audiobook-cutter-free-edition/index.json new file mode 100644 index 000000000000..81bd6361d7eb --- /dev/null +++ b/site/public/v1/software/audiobook-cutter-free-edition/index.json @@ -0,0 +1,21 @@ +{ + "id": 763, + "slug": "audiobook-cutter-free-edition", + "name": "Audiobook Cutter Free Edition", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4819898" + ], + "created_at": "2026-07-10T10:12:39.843407", + "updated_at": "2026-07-10T10:12:39.843407", + "url": "/v1/software/audiobook-cutter-free-edition" +} diff --git a/site/public/v1/software/audiograbber/index.json b/site/public/v1/software/audiograbber/index.json new file mode 100644 index 000000000000..d951251d5669 --- /dev/null +++ b/site/public/v1/software/audiograbber/index.json @@ -0,0 +1,21 @@ +{ + "id": 764, + "slug": "audiograbber", + "name": "Audiograbber", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "adware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q448485" + ], + "created_at": "2026-07-10T10:12:39.843407", + "updated_at": "2026-07-10T10:12:39.843407", + "url": "/v1/software/audiograbber" +} diff --git a/site/public/v1/software/audiostreamerscrobbler/index.json b/site/public/v1/software/audiostreamerscrobbler/index.json new file mode 100644 index 000000000000..0787659f2a85 --- /dev/null +++ b/site/public/v1/software/audiostreamerscrobbler/index.json @@ -0,0 +1,21 @@ +{ + "id": 765, + "slug": "audiostreamerscrobbler", + "name": "AudioStreamerScrobbler", + "release_date": null, + "developers": [ + "Vincent van der Leun" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63101044" + ], + "created_at": "2026-07-10T10:12:39.843407", + "updated_at": "2026-07-10T10:12:39.843407", + "url": "/v1/software/audiostreamerscrobbler" +} diff --git a/site/public/v1/software/audiotool/index.json b/site/public/v1/software/audiotool/index.json new file mode 100644 index 000000000000..bd5db979b66b --- /dev/null +++ b/site/public/v1/software/audiotool/index.json @@ -0,0 +1,19 @@ +{ + "id": 766, + "slug": "audiotool", + "name": "Audiotool", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084411" + ], + "created_at": "2026-07-10T10:12:39.843407", + "updated_at": "2026-07-10T10:12:39.843407", + "url": "/v1/software/audiotool" +} diff --git a/site/public/v1/software/audit-record-generation-and-utilization-system/index.json b/site/public/v1/software/audit-record-generation-and-utilization-system/index.json new file mode 100644 index 000000000000..8912d22fc651 --- /dev/null +++ b/site/public/v1/software/audit-record-generation-and-utilization-system/index.json @@ -0,0 +1,19 @@ +{ + "id": 767, + "slug": "audit-record-generation-and-utilization-system", + "name": "Audit Record Generation and Utilization System", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4819951" + ], + "created_at": "2026-07-10T10:12:39.844562", + "updated_at": "2026-07-10T10:12:39.844562", + "url": "/v1/software/audit-record-generation-and-utilization-system" +} diff --git a/site/public/v1/software/auditspark/index.json b/site/public/v1/software/auditspark/index.json new file mode 100644 index 000000000000..2bb8455805f9 --- /dev/null +++ b/site/public/v1/software/auditspark/index.json @@ -0,0 +1,19 @@ +{ + "id": 768, + "slug": "auditspark", + "name": "AuditSpark", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140363163" + ], + "created_at": "2026-07-10T10:12:39.844562", + "updated_at": "2026-07-10T10:12:39.844562", + "url": "/v1/software/auditspark" +} diff --git a/site/public/v1/software/audix/index.json b/site/public/v1/software/audix/index.json new file mode 100644 index 000000000000..4d45b780dd3f --- /dev/null +++ b/site/public/v1/software/audix/index.json @@ -0,0 +1,21 @@ +{ + "id": 769, + "slug": "audix", + "name": "AUDIX", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Unix-like operating system" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4654973" + ], + "created_at": "2026-07-10T10:12:39.844562", + "updated_at": "2026-07-10T10:12:39.845508", + "url": "/v1/software/audix" +} diff --git a/site/public/v1/software/aufs-util/index.json b/site/public/v1/software/aufs-util/index.json new file mode 100644 index 000000000000..e2a6146f491c --- /dev/null +++ b/site/public/v1/software/aufs-util/index.json @@ -0,0 +1,19 @@ +{ + "id": 770, + "slug": "aufs-util", + "name": "aufs-util", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60864770" + ], + "created_at": "2026-07-10T10:12:39.845508", + "updated_at": "2026-07-10T10:12:39.845508", + "url": "/v1/software/aufs-util" +} diff --git a/site/public/v1/software/augur/index.json b/site/public/v1/software/augur/index.json new file mode 100644 index 000000000000..13beb2759eeb --- /dev/null +++ b/site/public/v1/software/augur/index.json @@ -0,0 +1,21 @@ +{ + "id": 771, + "slug": "augur", + "name": "Augur", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Solidity" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q19892024" + ], + "created_at": "2026-07-10T10:12:39.845508", + "updated_at": "2026-07-10T10:12:39.845508", + "url": "/v1/software/augur" +} diff --git a/site/public/v1/software/aumix/index.json b/site/public/v1/software/aumix/index.json new file mode 100644 index 000000000000..bce04605513b --- /dev/null +++ b/site/public/v1/software/aumix/index.json @@ -0,0 +1,19 @@ +{ + "id": 772, + "slug": "aumix", + "name": "aumix", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62846008" + ], + "created_at": "2026-07-10T10:12:39.845508", + "updated_at": "2026-07-10T10:12:39.845508", + "url": "/v1/software/aumix" +} diff --git a/site/public/v1/software/aunit/index.json b/site/public/v1/software/aunit/index.json new file mode 100644 index 000000000000..24d326cdbd9f --- /dev/null +++ b/site/public/v1/software/aunit/index.json @@ -0,0 +1,19 @@ +{ + "id": 773, + "slug": "aunit", + "name": "AUnit", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q20891884" + ], + "created_at": "2026-07-10T10:12:39.846492", + "updated_at": "2026-07-10T10:12:39.846492", + "url": "/v1/software/aunit" +} diff --git a/site/public/v1/software/aura-sync/index.json b/site/public/v1/software/aura-sync/index.json new file mode 100644 index 000000000000..a2e0d166c599 --- /dev/null +++ b/site/public/v1/software/aura-sync/index.json @@ -0,0 +1,19 @@ +{ + "id": 774, + "slug": "aura-sync", + "name": "Aura Sync", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110908181" + ], + "created_at": "2026-07-10T10:12:39.846492", + "updated_at": "2026-07-10T10:12:39.846492", + "url": "/v1/software/aura-sync" +} diff --git a/site/public/v1/software/aurora-borealis/index.json b/site/public/v1/software/aurora-borealis/index.json new file mode 100644 index 000000000000..d02b645464c3 --- /dev/null +++ b/site/public/v1/software/aurora-borealis/index.json @@ -0,0 +1,19 @@ +{ + "id": 775, + "slug": "aurora-borealis", + "name": "Aurora Borealis", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4056065" + ], + "created_at": "2026-07-10T10:12:39.847483", + "updated_at": "2026-07-10T10:12:39.847483", + "url": "/v1/software/aurora-borealis" +} diff --git a/site/public/v1/software/aurora-center/index.json b/site/public/v1/software/aurora-center/index.json new file mode 100644 index 000000000000..2694ea044ea6 --- /dev/null +++ b/site/public/v1/software/aurora-center/index.json @@ -0,0 +1,24 @@ +{ + "id": 776, + "slug": "aurora-center", + "name": "Aurora Center", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Aurora OS", + "Astra Linux", + "ALT Linux", + "cross-platform" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139385536" + ], + "created_at": "2026-07-10T10:12:39.847483", + "updated_at": "2026-07-10T10:12:39.847483", + "url": "/v1/software/aurora-center" +} diff --git a/site/public/v1/software/aurora-hdr/index.json b/site/public/v1/software/aurora-hdr/index.json new file mode 100644 index 000000000000..7b8986a48951 --- /dev/null +++ b/site/public/v1/software/aurora-hdr/index.json @@ -0,0 +1,19 @@ +{ + "id": 777, + "slug": "aurora-hdr", + "name": "Aurora HDR", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25055056" + ], + "created_at": "2026-07-10T10:12:39.847483", + "updated_at": "2026-07-10T10:12:39.847483", + "url": "/v1/software/aurora-hdr" +} diff --git a/site/public/v1/software/auroracoin/index.json b/site/public/v1/software/auroracoin/index.json new file mode 100644 index 000000000000..7e0af7fbc612 --- /dev/null +++ b/site/public/v1/software/auroracoin/index.json @@ -0,0 +1,21 @@ +{ + "id": 778, + "slug": "auroracoin", + "name": "Auroracoin", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q15981447" + ], + "created_at": "2026-07-10T10:12:39.847483", + "updated_at": "2026-07-10T10:12:39.847483", + "url": "/v1/software/auroracoin" +} diff --git a/site/public/v1/software/aurous/index.json b/site/public/v1/software/aurous/index.json new file mode 100644 index 000000000000..05583d84795a --- /dev/null +++ b/site/public/v1/software/aurous/index.json @@ -0,0 +1,19 @@ +{ + "id": 779, + "slug": "aurous", + "name": "Aurous", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q21090032" + ], + "created_at": "2026-07-10T10:12:39.848541", + "updated_at": "2026-07-10T10:12:39.848541", + "url": "/v1/software/aurous" +} diff --git a/site/public/v1/software/austal/index.json b/site/public/v1/software/austal/index.json new file mode 100644 index 000000000000..d75ae6bcdebd --- /dev/null +++ b/site/public/v1/software/austal/index.json @@ -0,0 +1,19 @@ +{ + "id": 780, + "slug": "austal", + "name": "AUSTAL", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118104818" + ], + "created_at": "2026-07-10T10:12:39.848541", + "updated_at": "2026-07-10T10:12:39.848541", + "url": "/v1/software/austal" +} diff --git a/site/public/v1/software/australian-integrated-forecast-system/index.json b/site/public/v1/software/australian-integrated-forecast-system/index.json new file mode 100644 index 000000000000..a5c973dce966 --- /dev/null +++ b/site/public/v1/software/australian-integrated-forecast-system/index.json @@ -0,0 +1,19 @@ +{ + "id": 781, + "slug": "australian-integrated-forecast-system", + "name": "Australian Integrated Forecast System", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4824324" + ], + "created_at": "2026-07-10T10:12:39.848541", + "updated_at": "2026-07-10T10:12:39.848541", + "url": "/v1/software/australian-integrated-forecast-system" +} diff --git a/site/public/v1/software/ausweisapp-q20828705/index.json b/site/public/v1/software/ausweisapp-q20828705/index.json new file mode 100644 index 000000000000..25bdb1f48883 --- /dev/null +++ b/site/public/v1/software/ausweisapp-q20828705/index.json @@ -0,0 +1,23 @@ +{ + "id": 782, + "slug": "ausweisapp-q20828705", + "name": "AusweisApp", + "release_date": null, + "developers": [ + "Governikus KG" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "European Union Public Licence" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q20828705" + ], + "created_at": "2026-07-10T10:12:39.849500", + "updated_at": "2026-07-10T10:12:39.849500", + "url": "/v1/software/ausweisapp-q20828705" +} diff --git a/site/public/v1/software/ausweisapp/index.json b/site/public/v1/software/ausweisapp/index.json new file mode 100644 index 000000000000..06d7a1f6094f --- /dev/null +++ b/site/public/v1/software/ausweisapp/index.json @@ -0,0 +1,19 @@ +{ + "id": 783, + "slug": "ausweisapp", + "name": "AusweisApp", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q784165" + ], + "created_at": "2026-07-10T10:12:39.849500", + "updated_at": "2026-07-10T10:12:39.849500", + "url": "/v1/software/ausweisapp" +} diff --git a/site/public/v1/software/auth-sister/index.json b/site/public/v1/software/auth-sister/index.json new file mode 100644 index 000000000000..b588497027f4 --- /dev/null +++ b/site/public/v1/software/auth-sister/index.json @@ -0,0 +1,21 @@ +{ + "id": 784, + "slug": "auth-sister", + "name": "auth sister", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11447157" + ], + "created_at": "2026-07-10T10:12:39.849500", + "updated_at": "2026-07-10T10:12:39.849500", + "url": "/v1/software/auth-sister" +} diff --git a/site/public/v1/software/authentilens/index.json b/site/public/v1/software/authentilens/index.json new file mode 100644 index 000000000000..4215972710a7 --- /dev/null +++ b/site/public/v1/software/authentilens/index.json @@ -0,0 +1,19 @@ +{ + "id": 785, + "slug": "authentilens", + "name": "AuthentiLens", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139545623" + ], + "created_at": "2026-07-10T10:12:39.850506", + "updated_at": "2026-07-10T10:12:39.850506", + "url": "/v1/software/authentilens" +} diff --git a/site/public/v1/software/author/index.json b/site/public/v1/software/author/index.json new file mode 100644 index 000000000000..74dd3d1aa23b --- /dev/null +++ b/site/public/v1/software/author/index.json @@ -0,0 +1,19 @@ +{ + "id": 786, + "slug": "author", + "name": "AUTHOR", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087774" + ], + "created_at": "2026-07-10T10:12:39.850506", + "updated_at": "2026-07-10T10:12:39.850506", + "url": "/v1/software/author" +} diff --git a/site/public/v1/software/authorized-steinway-virtual-concert-grand-piano/index.json b/site/public/v1/software/authorized-steinway-virtual-concert-grand-piano/index.json new file mode 100644 index 000000000000..0bb36e1b13a4 --- /dev/null +++ b/site/public/v1/software/authorized-steinway-virtual-concert-grand-piano/index.json @@ -0,0 +1,19 @@ +{ + "id": 787, + "slug": "authorized-steinway-virtual-concert-grand-piano", + "name": "Authorized Steinway Virtual Concert Grand Piano", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4825961" + ], + "created_at": "2026-07-10T10:12:39.851483", + "updated_at": "2026-07-10T10:12:39.851483", + "url": "/v1/software/authorized-steinway-virtual-concert-grand-piano" +} diff --git a/site/public/v1/software/authorship-strategy-a-normative-framework-and-tactical-catalog-for-ai-era-authenticity-inv/index.json b/site/public/v1/software/authorship-strategy-a-normative-framework-and-tactical-catalog-for-ai-era-authenticity-inv/index.json new file mode 100644 index 000000000000..417b53c3ca6a --- /dev/null +++ b/site/public/v1/software/authorship-strategy-a-normative-framework-and-tactical-catalog-for-ai-era-authenticity-inv/index.json @@ -0,0 +1,23 @@ +{ + "id": 788, + "slug": "authorship-strategy-a-normative-framework-and-tactical-catalog-for-ai-era-authenticity-inv", + "name": "Authorship Strategy: A Normative Framework and Tactical Catalog for AI-Era Authenticity Inversion, with Empirical Grounding from a Four-Repository Research Ecosystem", + "release_date": "2026-05-18", + "developers": [ + "Tatsuya Shimomoto" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140090190" + ], + "created_at": "2026-07-10T10:12:39.851483", + "updated_at": "2026-07-10T10:12:39.851483", + "url": "/v1/software/authorship-strategy-a-normative-framework-and-tactical-catalog-for-ai-era-authenticity-inv" +} diff --git a/site/public/v1/software/auto-latex-equations/index.json b/site/public/v1/software/auto-latex-equations/index.json new file mode 100644 index 000000000000..cb77a915f899 --- /dev/null +++ b/site/public/v1/software/auto-latex-equations/index.json @@ -0,0 +1,19 @@ +{ + "id": 789, + "slug": "auto-latex-equations", + "name": "Auto-Latex Equations", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22906574" + ], + "created_at": "2026-07-10T10:12:39.851483", + "updated_at": "2026-07-10T10:12:39.851483", + "url": "/v1/software/auto-latex-equations" +} diff --git a/site/public/v1/software/autocad-architecture/index.json b/site/public/v1/software/autocad-architecture/index.json new file mode 100644 index 000000000000..837a6e64e55d --- /dev/null +++ b/site/public/v1/software/autocad-architecture/index.json @@ -0,0 +1,23 @@ +{ + "id": 790, + "slug": "autocad-architecture", + "name": "AutoCAD Architecture", + "release_date": null, + "developers": [ + "Autodesk" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2872477" + ], + "created_at": "2026-07-10T10:12:39.851483", + "updated_at": "2026-07-10T10:12:39.851483", + "url": "/v1/software/autocad-architecture" +} diff --git a/site/public/v1/software/autochem/index.json b/site/public/v1/software/autochem/index.json new file mode 100644 index 000000000000..d4b5e7d80142 --- /dev/null +++ b/site/public/v1/software/autochem/index.json @@ -0,0 +1,23 @@ +{ + "id": 791, + "slug": "autochem", + "name": "Autochem", + "release_date": null, + "developers": [ + "David Lary" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Fortran 90" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16240810" + ], + "created_at": "2026-07-10T10:12:39.852517", + "updated_at": "2026-07-10T10:12:39.852517", + "url": "/v1/software/autochem" +} diff --git a/site/public/v1/software/autocollage-2008/index.json b/site/public/v1/software/autocollage-2008/index.json new file mode 100644 index 000000000000..49f8f4ad722d --- /dev/null +++ b/site/public/v1/software/autocollage-2008/index.json @@ -0,0 +1,23 @@ +{ + "id": 792, + "slug": "autocollage-2008", + "name": "AutoCollage 2008", + "release_date": "2008-09-04", + "developers": [ + "Microsoft Research" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4826056" + ], + "created_at": "2026-07-10T10:12:39.852517", + "updated_at": "2026-07-10T10:12:39.852517", + "url": "/v1/software/autocollage-2008" +} diff --git a/site/public/v1/software/autocorrection/index.json b/site/public/v1/software/autocorrection/index.json new file mode 100644 index 000000000000..98ec9b84f44e --- /dev/null +++ b/site/public/v1/software/autocorrection/index.json @@ -0,0 +1,19 @@ +{ + "id": 793, + "slug": "autocorrection", + "name": "autocorrection", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q789205" + ], + "created_at": "2026-07-10T10:12:39.852517", + "updated_at": "2026-07-10T10:12:39.852517", + "url": "/v1/software/autocorrection" +} diff --git a/site/public/v1/software/autodesk-123d/index.json b/site/public/v1/software/autodesk-123d/index.json new file mode 100644 index 000000000000..999e14c40420 --- /dev/null +++ b/site/public/v1/software/autodesk-123d/index.json @@ -0,0 +1,25 @@ +{ + "id": 794, + "slug": "autodesk-123d", + "name": "Autodesk 123D", + "release_date": "2009-01-01", + "developers": [ + "Autodesk" + ], + "publishers": [], + "operating_systems": [ + "Windows 7" + ], + "programming_languages": [], + "licenses": [ + "end-user license agreement" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4826235" + ], + "created_at": "2026-07-10T10:12:39.852517", + "updated_at": "2026-07-10T10:12:39.852517", + "url": "/v1/software/autodesk-123d" +} diff --git a/site/public/v1/software/autodesk-aliasstudio/index.json b/site/public/v1/software/autodesk-aliasstudio/index.json new file mode 100644 index 000000000000..fc5c9a4413e7 --- /dev/null +++ b/site/public/v1/software/autodesk-aliasstudio/index.json @@ -0,0 +1,21 @@ +{ + "id": 795, + "slug": "autodesk-aliasstudio", + "name": "Autodesk AliasStudio", + "release_date": null, + "developers": [ + "Autodesk" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3500946" + ], + "created_at": "2026-07-10T10:12:39.853508", + "updated_at": "2026-07-10T10:12:39.853508", + "url": "/v1/software/autodesk-aliasstudio" +} diff --git a/site/public/v1/software/autodesk-ecotect-analysis/index.json b/site/public/v1/software/autodesk-ecotect-analysis/index.json new file mode 100644 index 000000000000..40f4b311f5e7 --- /dev/null +++ b/site/public/v1/software/autodesk-ecotect-analysis/index.json @@ -0,0 +1,21 @@ +{ + "id": 796, + "slug": "autodesk-ecotect-analysis", + "name": "Autodesk Ecotect Analysis", + "release_date": null, + "developers": [ + "Autodesk" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16835936" + ], + "created_at": "2026-07-10T10:12:39.853508", + "updated_at": "2026-07-10T10:12:39.853508", + "url": "/v1/software/autodesk-ecotect-analysis" +} diff --git a/site/public/v1/software/autodesk-motionbuilder/index.json b/site/public/v1/software/autodesk-motionbuilder/index.json new file mode 100644 index 000000000000..43012c6577b5 --- /dev/null +++ b/site/public/v1/software/autodesk-motionbuilder/index.json @@ -0,0 +1,21 @@ +{ + "id": 797, + "slug": "autodesk-motionbuilder", + "name": "Autodesk MotionBuilder", + "release_date": null, + "developers": [ + "Autodesk" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3325183" + ], + "created_at": "2026-07-10T10:12:39.853508", + "updated_at": "2026-07-10T10:12:39.853508", + "url": "/v1/software/autodesk-motionbuilder" +} diff --git a/site/public/v1/software/autodesk-smoke/index.json b/site/public/v1/software/autodesk-smoke/index.json new file mode 100644 index 000000000000..6d3dfd862416 --- /dev/null +++ b/site/public/v1/software/autodesk-smoke/index.json @@ -0,0 +1,19 @@ +{ + "id": 798, + "slug": "autodesk-smoke", + "name": "Autodesk Smoke", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2668845" + ], + "created_at": "2026-07-10T10:12:39.854504", + "updated_at": "2026-07-10T10:12:39.854504", + "url": "/v1/software/autodesk-smoke" +} diff --git a/site/public/v1/software/autodesk-toxik/index.json b/site/public/v1/software/autodesk-toxik/index.json new file mode 100644 index 000000000000..36d40ddfc9be --- /dev/null +++ b/site/public/v1/software/autodesk-toxik/index.json @@ -0,0 +1,21 @@ +{ + "id": 799, + "slug": "autodesk-toxik", + "name": "Autodesk Toxik", + "release_date": "2007-01-01", + "developers": [ + "Autodesk Media and Entertainment" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4826242" + ], + "created_at": "2026-07-10T10:12:39.854504", + "updated_at": "2026-07-10T10:12:39.854504", + "url": "/v1/software/autodesk-toxik" +} diff --git a/site/public/v1/software/autoflow/index.json b/site/public/v1/software/autoflow/index.json new file mode 100644 index 000000000000..62512663a075 --- /dev/null +++ b/site/public/v1/software/autoflow/index.json @@ -0,0 +1,19 @@ +{ + "id": 800, + "slug": "autoflow", + "name": "Autoflow", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131933285" + ], + "created_at": "2026-07-10T10:12:39.854504", + "updated_at": "2026-07-10T10:12:39.854504", + "url": "/v1/software/autoflow" +} diff --git a/site/public/v1/software/autofs/index.json b/site/public/v1/software/autofs/index.json new file mode 100644 index 000000000000..4b94700b42ec --- /dev/null +++ b/site/public/v1/software/autofs/index.json @@ -0,0 +1,19 @@ +{ + "id": 801, + "slug": "autofs", + "name": "Autofs", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62846070" + ], + "created_at": "2026-07-10T10:12:39.855401", + "updated_at": "2026-07-10T10:12:39.855401", + "url": "/v1/software/autofs" +} diff --git a/site/public/v1/software/autoit/index.json b/site/public/v1/software/autoit/index.json new file mode 100644 index 000000000000..12cad5c97276 --- /dev/null +++ b/site/public/v1/software/autoit/index.json @@ -0,0 +1,23 @@ +{ + "id": 802, + "slug": "autoit", + "name": "AutoIt", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q784845" + ], + "created_at": "2026-07-10T10:12:39.855401", + "updated_at": "2026-07-10T10:12:39.855401", + "url": "/v1/software/autoit" +} diff --git a/site/public/v1/software/autojump/index.json b/site/public/v1/software/autojump/index.json new file mode 100644 index 000000000000..9b2cd8e431b1 --- /dev/null +++ b/site/public/v1/software/autojump/index.json @@ -0,0 +1,19 @@ +{ + "id": 803, + "slug": "autojump", + "name": "Autojump", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62851178" + ], + "created_at": "2026-07-10T10:12:39.855401", + "updated_at": "2026-07-10T10:12:39.855401", + "url": "/v1/software/autojump" +} diff --git a/site/public/v1/software/autokon/index.json b/site/public/v1/software/autokon/index.json new file mode 100644 index 000000000000..728ecbb548fe --- /dev/null +++ b/site/public/v1/software/autokon/index.json @@ -0,0 +1,21 @@ +{ + "id": 804, + "slug": "autokon", + "name": "AUTOKON", + "release_date": null, + "developers": [ + "Thomas Hysing" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111370021" + ], + "created_at": "2026-07-10T10:12:39.856400", + "updated_at": "2026-07-10T10:12:39.856400", + "url": "/v1/software/autokon" +} diff --git a/site/public/v1/software/automap/index.json b/site/public/v1/software/automap/index.json new file mode 100644 index 000000000000..c8fc1a161f81 --- /dev/null +++ b/site/public/v1/software/automap/index.json @@ -0,0 +1,21 @@ +{ + "id": 805, + "slug": "automap", + "name": "AutoMap", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106323235" + ], + "created_at": "2026-07-10T10:12:39.856400", + "updated_at": "2026-07-10T10:12:39.856400", + "url": "/v1/software/automap" +} diff --git a/site/public/v1/software/automapa/index.json b/site/public/v1/software/automapa/index.json new file mode 100644 index 000000000000..77e97d9a621b --- /dev/null +++ b/site/public/v1/software/automapa/index.json @@ -0,0 +1,19 @@ +{ + "id": 806, + "slug": "automapa", + "name": "Automapa", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11687041" + ], + "created_at": "2026-07-10T10:12:39.856400", + "updated_at": "2026-07-10T10:12:39.856400", + "url": "/v1/software/automapa" +} diff --git a/site/public/v1/software/automate-the-schools/index.json b/site/public/v1/software/automate-the-schools/index.json new file mode 100644 index 000000000000..59090b95fd21 --- /dev/null +++ b/site/public/v1/software/automate-the-schools/index.json @@ -0,0 +1,19 @@ +{ + "id": 807, + "slug": "automate-the-schools", + "name": "Automate the Schools", + "release_date": "1988-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4826395" + ], + "created_at": "2026-07-10T10:12:39.857407", + "updated_at": "2026-07-10T10:12:39.857407", + "url": "/v1/software/automate-the-schools" +} diff --git a/site/public/v1/software/automated-anatomical-labeling/index.json b/site/public/v1/software/automated-anatomical-labeling/index.json new file mode 100644 index 000000000000..6b9b87ca0fdf --- /dev/null +++ b/site/public/v1/software/automated-anatomical-labeling/index.json @@ -0,0 +1,21 @@ +{ + "id": 808, + "slug": "automated-anatomical-labeling", + "name": "Automated Anatomical Labeling", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "MATLAB" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4826400" + ], + "created_at": "2026-07-10T10:12:39.857407", + "updated_at": "2026-07-10T10:12:39.857407", + "url": "/v1/software/automated-anatomical-labeling" +} diff --git a/site/public/v1/software/automated-customer-account-transfer-service/index.json b/site/public/v1/software/automated-customer-account-transfer-service/index.json new file mode 100644 index 000000000000..ad5b81ad7287 --- /dev/null +++ b/site/public/v1/software/automated-customer-account-transfer-service/index.json @@ -0,0 +1,19 @@ +{ + "id": 809, + "slug": "automated-customer-account-transfer-service", + "name": "Automated Customer Account Transfer Service", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16835957" + ], + "created_at": "2026-07-10T10:12:39.857407", + "updated_at": "2026-07-10T10:12:39.857407", + "url": "/v1/software/automated-customer-account-transfer-service" +} diff --git a/site/public/v1/software/automated-data-inquiry-for-oil-spills/index.json b/site/public/v1/software/automated-data-inquiry-for-oil-spills/index.json new file mode 100644 index 000000000000..5c6a1053085b --- /dev/null +++ b/site/public/v1/software/automated-data-inquiry-for-oil-spills/index.json @@ -0,0 +1,24 @@ +{ + "id": 810, + "slug": "automated-data-inquiry-for-oil-spills", + "name": "Automated Data Inquiry for Oil Spills", + "release_date": null, + "developers": [ + "National Oceanic and Atmospheric Administration" + ], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4826407" + ], + "created_at": "2026-07-10T10:12:39.857407", + "updated_at": "2026-07-10T10:12:39.857407", + "url": "/v1/software/automated-data-inquiry-for-oil-spills" +} diff --git a/site/public/v1/software/automated-sales-suppression-device/index.json b/site/public/v1/software/automated-sales-suppression-device/index.json new file mode 100644 index 000000000000..f028cba94330 --- /dev/null +++ b/site/public/v1/software/automated-sales-suppression-device/index.json @@ -0,0 +1,19 @@ +{ + "id": 811, + "slug": "automated-sales-suppression-device", + "name": "Automated sales suppression device", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q147483" + ], + "created_at": "2026-07-10T10:12:39.858406", + "updated_at": "2026-07-10T10:12:39.858406", + "url": "/v1/software/automated-sales-suppression-device" +} diff --git a/site/public/v1/software/automatedoctor/index.json b/site/public/v1/software/automatedoctor/index.json new file mode 100644 index 000000000000..c3f1682a5a8a --- /dev/null +++ b/site/public/v1/software/automatedoctor/index.json @@ -0,0 +1,19 @@ +{ + "id": 812, + "slug": "automatedoctor", + "name": "automatedoctor", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136893182" + ], + "created_at": "2026-07-10T10:12:39.858406", + "updated_at": "2026-07-10T10:12:39.858406", + "url": "/v1/software/automatedoctor" +} diff --git a/site/public/v1/software/automatic-storage-management/index.json b/site/public/v1/software/automatic-storage-management/index.json new file mode 100644 index 000000000000..8155a5de87de --- /dev/null +++ b/site/public/v1/software/automatic-storage-management/index.json @@ -0,0 +1,21 @@ +{ + "id": 813, + "slug": "automatic-storage-management", + "name": "Automatic Storage Management", + "release_date": null, + "developers": [ + "Oracle Corporation" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2872616" + ], + "created_at": "2026-07-10T10:12:39.858406", + "updated_at": "2026-07-10T10:12:39.858406", + "url": "/v1/software/automatic-storage-management" +} diff --git a/site/public/v1/software/automatic-verification-tool-avt/index.json b/site/public/v1/software/automatic-verification-tool-avt/index.json new file mode 100644 index 000000000000..5756d3f5b529 --- /dev/null +++ b/site/public/v1/software/automatic-verification-tool-avt/index.json @@ -0,0 +1,19 @@ +{ + "id": 814, + "slug": "automatic-verification-tool-avt", + "name": "Automatic Verification Tool (AVT)", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084795" + ], + "created_at": "2026-07-10T10:12:39.859501", + "updated_at": "2026-07-10T10:12:39.859501", + "url": "/v1/software/automatic-verification-tool-avt" +} diff --git a/site/public/v1/software/automatik-text-reader/index.json b/site/public/v1/software/automatik-text-reader/index.json new file mode 100644 index 000000000000..bbe345806628 --- /dev/null +++ b/site/public/v1/software/automatik-text-reader/index.json @@ -0,0 +1,21 @@ +{ + "id": 815, + "slug": "automatik-text-reader", + "name": "Automatik Text Reader", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22906577" + ], + "created_at": "2026-07-10T10:12:39.859501", + "updated_at": "2026-07-10T10:12:39.859501", + "url": "/v1/software/automatik-text-reader" +} diff --git a/site/public/v1/software/automation-anywhere/index.json b/site/public/v1/software/automation-anywhere/index.json new file mode 100644 index 000000000000..c69fee32fb7a --- /dev/null +++ b/site/public/v1/software/automation-anywhere/index.json @@ -0,0 +1,19 @@ +{ + "id": 816, + "slug": "automation-anywhere", + "name": "Automation Anywhere", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4826627" + ], + "created_at": "2026-07-10T10:12:39.859501", + "updated_at": "2026-07-10T10:12:39.859501", + "url": "/v1/software/automation-anywhere" +} diff --git a/site/public/v1/software/automation-studio/index.json b/site/public/v1/software/automation-studio/index.json new file mode 100644 index 000000000000..6bacb751a20b --- /dev/null +++ b/site/public/v1/software/automation-studio/index.json @@ -0,0 +1,19 @@ +{ + "id": 817, + "slug": "automation-studio", + "name": "Automation Studio", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2872619" + ], + "created_at": "2026-07-10T10:12:39.860511", + "updated_at": "2026-07-10T10:12:39.860511", + "url": "/v1/software/automation-studio" +} diff --git a/site/public/v1/software/automatix/index.json b/site/public/v1/software/automatix/index.json new file mode 100644 index 000000000000..8e9ab15176ab --- /dev/null +++ b/site/public/v1/software/automatix/index.json @@ -0,0 +1,23 @@ +{ + "id": 818, + "slug": "automatix", + "name": "Automatix", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "MEPIS" + ], + "programming_languages": [ + "Python" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2567245" + ], + "created_at": "2026-07-10T10:12:39.860511", + "updated_at": "2026-07-10T10:12:39.860511", + "url": "/v1/software/automatix" +} diff --git a/site/public/v1/software/autonom/index.json b/site/public/v1/software/autonom/index.json new file mode 100644 index 000000000000..1912e9bd4e7f --- /dev/null +++ b/site/public/v1/software/autonom/index.json @@ -0,0 +1,19 @@ +{ + "id": 819, + "slug": "autonom", + "name": "AUTONOM", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134737176" + ], + "created_at": "2026-07-10T10:12:39.860511", + "updated_at": "2026-07-10T10:12:39.860511", + "url": "/v1/software/autonom" +} diff --git a/site/public/v1/software/autopano/index.json b/site/public/v1/software/autopano/index.json new file mode 100644 index 000000000000..1b1ea728f026 --- /dev/null +++ b/site/public/v1/software/autopano/index.json @@ -0,0 +1,21 @@ +{ + "id": 820, + "slug": "autopano", + "name": "Autopano", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10423429" + ], + "created_at": "2026-07-10T10:12:39.861498", + "updated_at": "2026-07-10T10:12:39.861498", + "url": "/v1/software/autopano" +} diff --git a/site/public/v1/software/autopatcher/index.json b/site/public/v1/software/autopatcher/index.json new file mode 100644 index 000000000000..841f9c4de2aa --- /dev/null +++ b/site/public/v1/software/autopatcher/index.json @@ -0,0 +1,21 @@ +{ + "id": 821, + "slug": "autopatcher", + "name": "AutoPatcher", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3535827" + ], + "created_at": "2026-07-10T10:12:39.861498", + "updated_at": "2026-07-10T10:12:39.861498", + "url": "/v1/software/autopatcher" +} diff --git a/site/public/v1/software/autoscan/index.json b/site/public/v1/software/autoscan/index.json new file mode 100644 index 000000000000..0e9d95c43503 --- /dev/null +++ b/site/public/v1/software/autoscan/index.json @@ -0,0 +1,21 @@ +{ + "id": 822, + "slug": "autoscan", + "name": "Autoscan", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2873034" + ], + "created_at": "2026-07-10T10:12:39.861498", + "updated_at": "2026-07-10T10:12:39.861498", + "url": "/v1/software/autoscan" +} diff --git a/site/public/v1/software/autoshade/index.json b/site/public/v1/software/autoshade/index.json new file mode 100644 index 000000000000..3c705e73176a --- /dev/null +++ b/site/public/v1/software/autoshade/index.json @@ -0,0 +1,23 @@ +{ + "id": 823, + "slug": "autoshade", + "name": "AutoShade", + "release_date": "1987-01-01", + "developers": [ + "Autodesk" + ], + "publishers": [], + "operating_systems": [ + "DOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4826077" + ], + "created_at": "2026-07-10T10:12:39.861498", + "updated_at": "2026-07-10T10:12:39.861498", + "url": "/v1/software/autoshade" +} diff --git a/site/public/v1/software/autosketch/index.json b/site/public/v1/software/autosketch/index.json new file mode 100644 index 000000000000..811902407d4b --- /dev/null +++ b/site/public/v1/software/autosketch/index.json @@ -0,0 +1,21 @@ +{ + "id": 824, + "slug": "autosketch", + "name": "AutoSketch", + "release_date": null, + "developers": [ + "Autodesk" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q786376" + ], + "created_at": "2026-07-10T10:12:39.862497", + "updated_at": "2026-07-10T10:12:39.862497", + "url": "/v1/software/autosketch" +} diff --git a/site/public/v1/software/autossh/index.json b/site/public/v1/software/autossh/index.json new file mode 100644 index 000000000000..e764f295c3da --- /dev/null +++ b/site/public/v1/software/autossh/index.json @@ -0,0 +1,19 @@ +{ + "id": 825, + "slug": "autossh", + "name": "Autossh", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62846077" + ], + "created_at": "2026-07-10T10:12:39.862497", + "updated_at": "2026-07-10T10:12:39.862497", + "url": "/v1/software/autossh" +} diff --git a/site/public/v1/software/autostitch/index.json b/site/public/v1/software/autostitch/index.json new file mode 100644 index 000000000000..4b2f141392b5 --- /dev/null +++ b/site/public/v1/software/autostitch/index.json @@ -0,0 +1,19 @@ +{ + "id": 826, + "slug": "autostitch", + "name": "AutoStitch", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q784815" + ], + "created_at": "2026-07-10T10:12:39.862497", + "updated_at": "2026-07-10T10:12:39.862497", + "url": "/v1/software/autostitch" +} diff --git a/site/public/v1/software/autostyl/index.json b/site/public/v1/software/autostyl/index.json new file mode 100644 index 000000000000..4854276d0638 --- /dev/null +++ b/site/public/v1/software/autostyl/index.json @@ -0,0 +1,19 @@ +{ + "id": 827, + "slug": "autostyl", + "name": "AUTOSTYL", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087775" + ], + "created_at": "2026-07-10T10:12:39.863495", + "updated_at": "2026-07-10T10:12:39.863495", + "url": "/v1/software/autostyl" +} diff --git a/site/public/v1/software/autotrack/index.json b/site/public/v1/software/autotrack/index.json new file mode 100644 index 000000000000..b932a9cd9a33 --- /dev/null +++ b/site/public/v1/software/autotrack/index.json @@ -0,0 +1,21 @@ +{ + "id": 828, + "slug": "autotrack", + "name": "AutoTrack", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "end-user license agreement" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16245933" + ], + "created_at": "2026-07-10T10:12:39.863495", + "updated_at": "2026-07-10T10:12:39.863495", + "url": "/v1/software/autotrack" +} diff --git a/site/public/v1/software/autotrax/index.json b/site/public/v1/software/autotrax/index.json new file mode 100644 index 000000000000..e249ad7433ca --- /dev/null +++ b/site/public/v1/software/autotrax/index.json @@ -0,0 +1,21 @@ +{ + "id": 829, + "slug": "autotrax", + "name": "Autotrax", + "release_date": "1985-01-01", + "developers": [], + "publishers": [], + "operating_systems": [ + "DOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4827031" + ], + "created_at": "2026-07-10T10:12:39.863495", + "updated_at": "2026-07-10T10:12:39.863495", + "url": "/v1/software/autotrax" +} diff --git a/site/public/v1/software/autoturn/index.json b/site/public/v1/software/autoturn/index.json new file mode 100644 index 000000000000..79997b17cb9f --- /dev/null +++ b/site/public/v1/software/autoturn/index.json @@ -0,0 +1,21 @@ +{ + "id": 830, + "slug": "autoturn", + "name": "AutoTURN", + "release_date": "1991-01-01", + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4826080" + ], + "created_at": "2026-07-10T10:12:39.864465", + "updated_at": "2026-07-10T10:12:39.864465", + "url": "/v1/software/autoturn" +} diff --git a/site/public/v1/software/autotutor/index.json b/site/public/v1/software/autotutor/index.json new file mode 100644 index 000000000000..cb4d3f6e7ff4 --- /dev/null +++ b/site/public/v1/software/autotutor/index.json @@ -0,0 +1,19 @@ +{ + "id": 831, + "slug": "autotutor", + "name": "AutoTutor", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4826085" + ], + "created_at": "2026-07-10T10:12:39.864465", + "updated_at": "2026-07-10T10:12:39.864465", + "url": "/v1/software/autotutor" +} diff --git a/site/public/v1/software/autoupnp/index.json b/site/public/v1/software/autoupnp/index.json new file mode 100644 index 000000000000..f45a4ce769e9 --- /dev/null +++ b/site/public/v1/software/autoupnp/index.json @@ -0,0 +1,21 @@ +{ + "id": 832, + "slug": "autoupnp", + "name": "autoupnp", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "3-clause BSD License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28941625" + ], + "created_at": "2026-07-10T10:12:39.864465", + "updated_at": "2026-07-10T10:12:39.864465", + "url": "/v1/software/autoupnp" +} diff --git a/site/public/v1/software/auxora-ai/index.json b/site/public/v1/software/auxora-ai/index.json new file mode 100644 index 000000000000..76509275d828 --- /dev/null +++ b/site/public/v1/software/auxora-ai/index.json @@ -0,0 +1,19 @@ +{ + "id": 833, + "slug": "auxora-ai", + "name": "Auxora.ai", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139658790" + ], + "created_at": "2026-07-10T10:12:39.865475", + "updated_at": "2026-07-10T10:12:39.865475", + "url": "/v1/software/auxora-ai" +} diff --git a/site/public/v1/software/auxy-beat-studio/index.json b/site/public/v1/software/auxy-beat-studio/index.json new file mode 100644 index 000000000000..4b76b72cdd44 --- /dev/null +++ b/site/public/v1/software/auxy-beat-studio/index.json @@ -0,0 +1,19 @@ +{ + "id": 834, + "slug": "auxy-beat-studio", + "name": "Auxy: Beat Studio", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q20311547" + ], + "created_at": "2026-07-10T10:12:39.865475", + "updated_at": "2026-07-10T10:12:39.865475", + "url": "/v1/software/auxy-beat-studio" +} diff --git a/site/public/v1/software/av-comparatives/index.json b/site/public/v1/software/av-comparatives/index.json new file mode 100644 index 000000000000..c7bb54e7d03f --- /dev/null +++ b/site/public/v1/software/av-comparatives/index.json @@ -0,0 +1,19 @@ +{ + "id": 835, + "slug": "av-comparatives", + "name": "AV-Comparatives", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4655021" + ], + "created_at": "2026-07-10T10:12:39.865475", + "updated_at": "2026-07-10T10:12:39.865475", + "url": "/v1/software/av-comparatives" +} diff --git a/site/public/v1/software/ava-advanced-video-annotations/index.json b/site/public/v1/software/ava-advanced-video-annotations/index.json new file mode 100644 index 000000000000..1f7d2e990db5 --- /dev/null +++ b/site/public/v1/software/ava-advanced-video-annotations/index.json @@ -0,0 +1,19 @@ +{ + "id": 836, + "slug": "ava-advanced-video-annotations", + "name": "AVA (Advanced Video Annotations)", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084796" + ], + "created_at": "2026-07-10T10:12:39.866463", + "updated_at": "2026-07-10T10:12:39.866463", + "url": "/v1/software/ava-advanced-video-annotations" +} diff --git a/site/public/v1/software/avalon-the-legend-lives/index.json b/site/public/v1/software/avalon-the-legend-lives/index.json new file mode 100644 index 000000000000..c831e8a7cb91 --- /dev/null +++ b/site/public/v1/software/avalon-the-legend-lives/index.json @@ -0,0 +1,19 @@ +{ + "id": 837, + "slug": "avalon-the-legend-lives", + "name": "Avalon: The Legend Lives", + "release_date": "1989-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18589136" + ], + "created_at": "2026-07-10T10:12:39.866463", + "updated_at": "2026-07-10T10:12:39.866463", + "url": "/v1/software/avalon-the-legend-lives" +} diff --git a/site/public/v1/software/avalonia/index.json b/site/public/v1/software/avalonia/index.json new file mode 100644 index 000000000000..48a04c965908 --- /dev/null +++ b/site/public/v1/software/avalonia/index.json @@ -0,0 +1,24 @@ +{ + "id": 838, + "slug": "avalonia", + "name": "Avalonia", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Visual Basic", + "F#" + ], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q97658489" + ], + "created_at": "2026-07-10T10:12:39.866463", + "updated_at": "2026-07-10T10:12:39.866463", + "url": "/v1/software/avalonia" +} diff --git a/site/public/v1/software/avanna/index.json b/site/public/v1/software/avanna/index.json new file mode 100644 index 000000000000..3f4c6c30d0e0 --- /dev/null +++ b/site/public/v1/software/avanna/index.json @@ -0,0 +1,19 @@ +{ + "id": 839, + "slug": "avanna", + "name": "Avanna", + "release_date": "2012-12-22", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q24910756" + ], + "created_at": "2026-07-10T10:12:39.867472", + "updated_at": "2026-07-10T10:12:39.867472", + "url": "/v1/software/avanna" +} diff --git a/site/public/v1/software/avare/index.json b/site/public/v1/software/avare/index.json new file mode 100644 index 000000000000..529c0f281fda --- /dev/null +++ b/site/public/v1/software/avare/index.json @@ -0,0 +1,21 @@ +{ + "id": 840, + "slug": "avare", + "name": "Avare", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Apache License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17049755" + ], + "created_at": "2026-07-10T10:12:39.867472", + "updated_at": "2026-07-10T10:12:39.867472", + "url": "/v1/software/avare" +} diff --git a/site/public/v1/software/avast/index.json b/site/public/v1/software/avast/index.json new file mode 100644 index 000000000000..1aac7b61234a --- /dev/null +++ b/site/public/v1/software/avast/index.json @@ -0,0 +1,21 @@ +{ + "id": 841, + "slug": "avast", + "name": "Avast", + "release_date": "1988-01-01", + "developers": [ + "Avast Software" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136007681" + ], + "created_at": "2026-07-10T10:12:39.867472", + "updated_at": "2026-07-10T10:12:39.867472", + "url": "/v1/software/avast" +} diff --git a/site/public/v1/software/avedesk/index.json b/site/public/v1/software/avedesk/index.json new file mode 100644 index 000000000000..c1ab0fdb7cf2 --- /dev/null +++ b/site/public/v1/software/avedesk/index.json @@ -0,0 +1,21 @@ +{ + "id": 842, + "slug": "avedesk", + "name": "AveDesk", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "donationware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4827928" + ], + "created_at": "2026-07-10T10:12:39.868462", + "updated_at": "2026-07-10T10:12:39.868462", + "url": "/v1/software/avedesk" +} diff --git a/site/public/v1/software/aventus-protocol/index.json b/site/public/v1/software/aventus-protocol/index.json new file mode 100644 index 000000000000..fa512a331c79 --- /dev/null +++ b/site/public/v1/software/aventus-protocol/index.json @@ -0,0 +1,19 @@ +{ + "id": 843, + "slug": "aventus-protocol", + "name": "Aventus Protocol", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q55390900" + ], + "created_at": "2026-07-10T10:12:39.868462", + "updated_at": "2026-07-10T10:12:39.868462", + "url": "/v1/software/aventus-protocol" +} diff --git a/site/public/v1/software/avg/index.json b/site/public/v1/software/avg/index.json new file mode 100644 index 000000000000..2e9abd389e7a --- /dev/null +++ b/site/public/v1/software/avg/index.json @@ -0,0 +1,21 @@ +{ + "id": 844, + "slug": "avg", + "name": "AVG", + "release_date": "1992-01-01", + "developers": [ + "AVG Technologies" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q51987760" + ], + "created_at": "2026-07-10T10:12:39.868462", + "updated_at": "2026-07-10T10:12:39.868462", + "url": "/v1/software/avg" +} diff --git a/site/public/v1/software/aviary/index.json b/site/public/v1/software/aviary/index.json new file mode 100644 index 000000000000..d3cb03732911 --- /dev/null +++ b/site/public/v1/software/aviary/index.json @@ -0,0 +1,19 @@ +{ + "id": 845, + "slug": "aviary", + "name": "Aviary", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4828592" + ], + "created_at": "2026-07-10T10:12:39.868462", + "updated_at": "2026-07-10T10:12:39.868462", + "url": "/v1/software/aviary" +} diff --git a/site/public/v1/software/aviatrix3d/index.json b/site/public/v1/software/aviatrix3d/index.json new file mode 100644 index 000000000000..fec1a968c3ad --- /dev/null +++ b/site/public/v1/software/aviatrix3d/index.json @@ -0,0 +1,19 @@ +{ + "id": 846, + "slug": "aviatrix3d", + "name": "Aviatrix3D", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2427817" + ], + "created_at": "2026-07-10T10:12:39.869469", + "updated_at": "2026-07-10T10:12:39.869469", + "url": "/v1/software/aviatrix3d" +} diff --git a/site/public/v1/software/avid-ds/index.json b/site/public/v1/software/avid-ds/index.json new file mode 100644 index 000000000000..05c7011b83fd --- /dev/null +++ b/site/public/v1/software/avid-ds/index.json @@ -0,0 +1,23 @@ +{ + "id": 847, + "slug": "avid-ds", + "name": "Avid DS", + "release_date": null, + "developers": [ + "Avid Technology" + ], + "publishers": [], + "operating_systems": [ + "Windows 7" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4828777" + ], + "created_at": "2026-07-10T10:12:39.869469", + "updated_at": "2026-07-10T10:12:39.869469", + "url": "/v1/software/avid-ds" +} diff --git a/site/public/v1/software/avidemux-core/index.json b/site/public/v1/software/avidemux-core/index.json new file mode 100644 index 000000000000..dac5ad9e1f05 --- /dev/null +++ b/site/public/v1/software/avidemux-core/index.json @@ -0,0 +1,21 @@ +{ + "id": 848, + "slug": "avidemux-core", + "name": "avidemux-core", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "GNU General Public License, version 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28941627" + ], + "created_at": "2026-07-10T10:12:39.869469", + "updated_at": "2026-07-10T10:12:39.869469", + "url": "/v1/software/avidemux-core" +} diff --git a/site/public/v1/software/avidemux-plugins/index.json b/site/public/v1/software/avidemux-plugins/index.json new file mode 100644 index 000000000000..79c143882cd1 --- /dev/null +++ b/site/public/v1/software/avidemux-plugins/index.json @@ -0,0 +1,21 @@ +{ + "id": 849, + "slug": "avidemux-plugins", + "name": "avidemux-plugins", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "GNU General Public License, version 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28941629" + ], + "created_at": "2026-07-10T10:12:39.870468", + "updated_at": "2026-07-10T10:12:39.870468", + "url": "/v1/software/avidemux-plugins" +} diff --git a/site/public/v1/software/aview/index.json b/site/public/v1/software/aview/index.json new file mode 100644 index 000000000000..4c7aba044afd --- /dev/null +++ b/site/public/v1/software/aview/index.json @@ -0,0 +1,19 @@ +{ + "id": 850, + "slug": "aview", + "name": "aview", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62854986" + ], + "created_at": "2026-07-10T10:12:39.870468", + "updated_at": "2026-07-10T10:12:39.870468", + "url": "/v1/software/aview" +} diff --git a/site/public/v1/software/avira/index.json b/site/public/v1/software/avira/index.json new file mode 100644 index 000000000000..f70134cefeaf --- /dev/null +++ b/site/public/v1/software/avira/index.json @@ -0,0 +1,21 @@ +{ + "id": 851, + "slug": "avira", + "name": "Avira", + "release_date": "1986-01-01", + "developers": [ + "Avira" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q53679753" + ], + "created_at": "2026-07-10T10:12:39.870468", + "updated_at": "2026-07-10T10:12:39.870468", + "url": "/v1/software/avira" +} diff --git a/site/public/v1/software/avizo/index.json b/site/public/v1/software/avizo/index.json new file mode 100644 index 000000000000..ddd6c9f4639e --- /dev/null +++ b/site/public/v1/software/avizo/index.json @@ -0,0 +1,19 @@ +{ + "id": 852, + "slug": "avizo", + "name": "Avizo", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4829059" + ], + "created_at": "2026-07-10T10:12:39.871519", + "updated_at": "2026-07-10T10:12:39.871519", + "url": "/v1/software/avizo" +} diff --git a/site/public/v1/software/avobmat/index.json b/site/public/v1/software/avobmat/index.json new file mode 100644 index 000000000000..5b69d0eb398e --- /dev/null +++ b/site/public/v1/software/avobmat/index.json @@ -0,0 +1,19 @@ +{ + "id": 853, + "slug": "avobmat", + "name": "AVOBMAT", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087776" + ], + "created_at": "2026-07-10T10:12:39.871519", + "updated_at": "2026-07-10T10:12:39.871519", + "url": "/v1/software/avobmat" +} diff --git a/site/public/v1/software/avro-keyboard/index.json b/site/public/v1/software/avro-keyboard/index.json new file mode 100644 index 000000000000..90d1be983405 --- /dev/null +++ b/site/public/v1/software/avro-keyboard/index.json @@ -0,0 +1,23 @@ +{ + "id": 854, + "slug": "avro-keyboard", + "name": "Avro Keyboard", + "release_date": "2003-03-26", + "developers": [ + "OmicronLab" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Mozilla Public License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4829493" + ], + "created_at": "2026-07-10T10:12:39.871519", + "updated_at": "2026-07-10T10:12:39.871519", + "url": "/v1/software/avro-keyboard" +} diff --git a/site/public/v1/software/avs-video-converter/index.json b/site/public/v1/software/avs-video-converter/index.json new file mode 100644 index 000000000000..a7736e372b70 --- /dev/null +++ b/site/public/v1/software/avs-video-converter/index.json @@ -0,0 +1,21 @@ +{ + "id": 855, + "slug": "avs-video-converter", + "name": "AVS Video Converter", + "release_date": "1996-06-12", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2819587" + ], + "created_at": "2026-07-10T10:12:39.872401", + "updated_at": "2026-07-10T10:12:39.872401", + "url": "/v1/software/avs-video-converter" +} diff --git a/site/public/v1/software/avsnap/index.json b/site/public/v1/software/avsnap/index.json new file mode 100644 index 000000000000..4661afd24b5c --- /dev/null +++ b/site/public/v1/software/avsnap/index.json @@ -0,0 +1,23 @@ +{ + "id": 856, + "slug": "avsnap", + "name": "AVSnap", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4655069" + ], + "created_at": "2026-07-10T10:12:39.872401", + "updated_at": "2026-07-10T10:12:39.872401", + "url": "/v1/software/avsnap" +} diff --git a/site/public/v1/software/awomo/index.json b/site/public/v1/software/awomo/index.json new file mode 100644 index 000000000000..eff7ee74b04f --- /dev/null +++ b/site/public/v1/software/awomo/index.json @@ -0,0 +1,19 @@ +{ + "id": 857, + "slug": "awomo", + "name": "Awomo", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4830118" + ], + "created_at": "2026-07-10T10:12:39.872401", + "updated_at": "2026-07-10T10:12:39.872401", + "url": "/v1/software/awomo" +} diff --git a/site/public/v1/software/aws-app-runner/index.json b/site/public/v1/software/aws-app-runner/index.json new file mode 100644 index 000000000000..2cad600ce448 --- /dev/null +++ b/site/public/v1/software/aws-app-runner/index.json @@ -0,0 +1,19 @@ +{ + "id": 858, + "slug": "aws-app-runner", + "name": "AWS App Runner", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117475503" + ], + "created_at": "2026-07-10T10:12:39.872401", + "updated_at": "2026-07-10T10:12:39.872401", + "url": "/v1/software/aws-app-runner" +} diff --git a/site/public/v1/software/aws-cloud-development-kit/index.json b/site/public/v1/software/aws-cloud-development-kit/index.json new file mode 100644 index 000000000000..6f29a1cb19c8 --- /dev/null +++ b/site/public/v1/software/aws-cloud-development-kit/index.json @@ -0,0 +1,19 @@ +{ + "id": 859, + "slug": "aws-cloud-development-kit", + "name": "AWS Cloud Development Kit", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117390959" + ], + "created_at": "2026-07-10T10:12:39.873459", + "updated_at": "2026-07-10T10:12:39.873459", + "url": "/v1/software/aws-cloud-development-kit" +} diff --git a/site/public/v1/software/aws-cloudformation/index.json b/site/public/v1/software/aws-cloudformation/index.json new file mode 100644 index 000000000000..2e62d134c689 --- /dev/null +++ b/site/public/v1/software/aws-cloudformation/index.json @@ -0,0 +1,19 @@ +{ + "id": 860, + "slug": "aws-cloudformation", + "name": "AWS CloudFormation", + "release_date": "2011-02-25", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117272797" + ], + "created_at": "2026-07-10T10:12:39.873459", + "updated_at": "2026-07-10T10:12:39.873459", + "url": "/v1/software/aws-cloudformation" +} diff --git a/site/public/v1/software/aws-elastic-beanstalk/index.json b/site/public/v1/software/aws-elastic-beanstalk/index.json new file mode 100644 index 000000000000..29d4a9d565a8 --- /dev/null +++ b/site/public/v1/software/aws-elastic-beanstalk/index.json @@ -0,0 +1,19 @@ +{ + "id": 861, + "slug": "aws-elastic-beanstalk", + "name": "AWS Elastic Beanstalk", + "release_date": "2011-01-19", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4655150" + ], + "created_at": "2026-07-10T10:12:39.874482", + "updated_at": "2026-07-10T10:12:39.874482", + "url": "/v1/software/aws-elastic-beanstalk" +} diff --git a/site/public/v1/software/aws-sdk/index.json b/site/public/v1/software/aws-sdk/index.json new file mode 100644 index 000000000000..7cf795e66d2e --- /dev/null +++ b/site/public/v1/software/aws-sdk/index.json @@ -0,0 +1,23 @@ +{ + "id": 862, + "slug": "aws-sdk", + "name": "AWS SDK", + "release_date": null, + "developers": [ + "Jonathan M. Henson" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Apache Software License 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130167569" + ], + "created_at": "2026-07-10T10:12:39.874482", + "updated_at": "2026-07-10T10:12:39.874482", + "url": "/v1/software/aws-sdk" +} diff --git a/site/public/v1/software/ax25-apps/index.json b/site/public/v1/software/ax25-apps/index.json new file mode 100644 index 000000000000..cb544b90a230 --- /dev/null +++ b/site/public/v1/software/ax25-apps/index.json @@ -0,0 +1,19 @@ +{ + "id": 863, + "slug": "ax25-apps", + "name": "ax25-apps", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62846091" + ], + "created_at": "2026-07-10T10:12:39.874482", + "updated_at": "2026-07-10T10:12:39.874482", + "url": "/v1/software/ax25-apps" +} diff --git a/site/public/v1/software/ax25-tools/index.json b/site/public/v1/software/ax25-tools/index.json new file mode 100644 index 000000000000..e4a73527ee06 --- /dev/null +++ b/site/public/v1/software/ax25-tools/index.json @@ -0,0 +1,19 @@ +{ + "id": 864, + "slug": "ax25-tools", + "name": "ax25-tools", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62846084" + ], + "created_at": "2026-07-10T10:12:39.874482", + "updated_at": "2026-07-10T10:12:39.874482", + "url": "/v1/software/ax25-tools" +} diff --git a/site/public/v1/software/axe-spectral-extraction/index.json b/site/public/v1/software/axe-spectral-extraction/index.json new file mode 100644 index 000000000000..1fa79a133af9 --- /dev/null +++ b/site/public/v1/software/axe-spectral-extraction/index.json @@ -0,0 +1,21 @@ +{ + "id": 865, + "slug": "axe-spectral-extraction", + "name": "aXe Spectral Extraction", + "release_date": null, + "developers": [ + "European Space Agency" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4655216" + ], + "created_at": "2026-07-10T10:12:39.875460", + "updated_at": "2026-07-10T10:12:39.875460", + "url": "/v1/software/axe-spectral-extraction" +} diff --git a/site/public/v1/software/axe/index.json b/site/public/v1/software/axe/index.json new file mode 100644 index 000000000000..a6c1b6f61bcb --- /dev/null +++ b/site/public/v1/software/axe/index.json @@ -0,0 +1,21 @@ +{ + "id": 866, + "slug": "axe", + "name": "AXE", + "release_date": null, + "developers": [ + "BigChillGhost" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q128210932" + ], + "created_at": "2026-07-10T10:12:39.875460", + "updated_at": "2026-07-10T10:12:39.875460", + "url": "/v1/software/axe" +} diff --git a/site/public/v1/software/axial/index.json b/site/public/v1/software/axial/index.json new file mode 100644 index 000000000000..0d3a6a36d56e --- /dev/null +++ b/site/public/v1/software/axial/index.json @@ -0,0 +1,23 @@ +{ + "id": 867, + "slug": "axial", + "name": "Axial", + "release_date": null, + "developers": [ + "Axial" + ], + "publishers": [], + "operating_systems": [ + "web application" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139779962" + ], + "created_at": "2026-07-10T10:12:39.876478", + "updated_at": "2026-07-10T10:12:39.876478", + "url": "/v1/software/axial" +} diff --git a/site/public/v1/software/axigen/index.json b/site/public/v1/software/axigen/index.json new file mode 100644 index 000000000000..62ec403b927a --- /dev/null +++ b/site/public/v1/software/axigen/index.json @@ -0,0 +1,19 @@ +{ + "id": 868, + "slug": "axigen", + "name": "Axigen", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q792501" + ], + "created_at": "2026-07-10T10:12:39.876478", + "updated_at": "2026-07-10T10:12:39.876478", + "url": "/v1/software/axigen" +} diff --git a/site/public/v1/software/axon-perform/index.json b/site/public/v1/software/axon-perform/index.json new file mode 100644 index 000000000000..33682b711e93 --- /dev/null +++ b/site/public/v1/software/axon-perform/index.json @@ -0,0 +1,19 @@ +{ + "id": 869, + "slug": "axon-perform", + "name": "Axon Perform", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138657188" + ], + "created_at": "2026-07-10T10:12:39.876478", + "updated_at": "2026-07-10T10:12:39.876478", + "url": "/v1/software/axon-perform" +} diff --git a/site/public/v1/software/axon2013/index.json b/site/public/v1/software/axon2013/index.json new file mode 100644 index 000000000000..75db4ea92846 --- /dev/null +++ b/site/public/v1/software/axon2013/index.json @@ -0,0 +1,21 @@ +{ + "id": 870, + "slug": "axon2013", + "name": "Axon2013", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106143054" + ], + "created_at": "2026-07-10T10:12:39.876478", + "updated_at": "2026-07-10T10:12:39.876478", + "url": "/v1/software/axon2013" +} diff --git a/site/public/v1/software/axosyslog/index.json b/site/public/v1/software/axosyslog/index.json new file mode 100644 index 000000000000..e086bfb5cf02 --- /dev/null +++ b/site/public/v1/software/axosyslog/index.json @@ -0,0 +1,21 @@ +{ + "id": 871, + "slug": "axosyslog", + "name": "axosyslog", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "GNU Library General Public License, version 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134394205" + ], + "created_at": "2026-07-10T10:12:39.877474", + "updated_at": "2026-07-10T10:12:39.877474", + "url": "/v1/software/axosyslog" +} diff --git a/site/public/v1/software/axsjax/index.json b/site/public/v1/software/axsjax/index.json new file mode 100644 index 000000000000..44f6d6aeba5e --- /dev/null +++ b/site/public/v1/software/axsjax/index.json @@ -0,0 +1,19 @@ +{ + "id": 872, + "slug": "axsjax", + "name": "AxsJAX", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q533976" + ], + "created_at": "2026-07-10T10:12:39.877474", + "updated_at": "2026-07-10T10:12:39.877474", + "url": "/v1/software/axsjax" +} diff --git a/site/public/v1/software/aya-space/index.json b/site/public/v1/software/aya-space/index.json new file mode 100644 index 000000000000..e2140964120b --- /dev/null +++ b/site/public/v1/software/aya-space/index.json @@ -0,0 +1,21 @@ +{ + "id": 873, + "slug": "aya-space", + "name": "AYA Space", + "release_date": "2021-08-01", + "developers": [ + "AYANEO" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q114356058" + ], + "created_at": "2026-07-10T10:12:39.877474", + "updated_at": "2026-07-10T10:12:39.877474", + "url": "/v1/software/aya-space" +} diff --git a/site/public/v1/software/ayoba/index.json b/site/public/v1/software/ayoba/index.json new file mode 100644 index 000000000000..c2e0af45b1fa --- /dev/null +++ b/site/public/v1/software/ayoba/index.json @@ -0,0 +1,19 @@ +{ + "id": 874, + "slug": "ayoba", + "name": "Ayoba", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121365401" + ], + "created_at": "2026-07-10T10:12:39.878473", + "updated_at": "2026-07-10T10:12:39.878473", + "url": "/v1/software/ayoba" +} diff --git a/site/public/v1/software/azar/index.json b/site/public/v1/software/azar/index.json new file mode 100644 index 000000000000..a6cfcff82d39 --- /dev/null +++ b/site/public/v1/software/azar/index.json @@ -0,0 +1,21 @@ +{ + "id": 875, + "slug": "azar", + "name": "Azar", + "release_date": null, + "developers": [ + "Hyperconnect LLC." + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q19349591" + ], + "created_at": "2026-07-10T10:12:39.878473", + "updated_at": "2026-07-10T10:12:39.878473", + "url": "/v1/software/azar" +} diff --git a/site/public/v1/software/azendoo/index.json b/site/public/v1/software/azendoo/index.json new file mode 100644 index 000000000000..6ba22bdb599e --- /dev/null +++ b/site/public/v1/software/azendoo/index.json @@ -0,0 +1,19 @@ +{ + "id": 876, + "slug": "azendoo", + "name": "Azendoo", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2875115" + ], + "created_at": "2026-07-10T10:12:39.878473", + "updated_at": "2026-07-10T10:12:39.878473", + "url": "/v1/software/azendoo" +} diff --git a/site/public/v1/software/azure-virtual-desktop/index.json b/site/public/v1/software/azure-virtual-desktop/index.json new file mode 100644 index 000000000000..351aa34fb3f1 --- /dev/null +++ b/site/public/v1/software/azure-virtual-desktop/index.json @@ -0,0 +1,25 @@ +{ + "id": 877, + "slug": "azure-virtual-desktop", + "name": "Azure Virtual Desktop", + "release_date": "2019-09-01", + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [ + "macOS", + "HTML5", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q85815871" + ], + "created_at": "2026-07-10T10:12:39.879505", + "updated_at": "2026-07-10T10:12:39.879505", + "url": "/v1/software/azure-virtual-desktop" +} diff --git a/site/public/v1/software/b-step-sequencer/index.json b/site/public/v1/software/b-step-sequencer/index.json new file mode 100644 index 000000000000..c73bfbe0bdd5 --- /dev/null +++ b/site/public/v1/software/b-step-sequencer/index.json @@ -0,0 +1,19 @@ +{ + "id": 878, + "slug": "b-step-sequencer", + "name": "B-Step Sequencer", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q20311849" + ], + "created_at": "2026-07-10T10:12:39.879505", + "updated_at": "2026-07-10T10:12:39.879505", + "url": "/v1/software/b-step-sequencer" +} diff --git a/site/public/v1/software/b3bib/index.json b/site/public/v1/software/b3bib/index.json new file mode 100644 index 000000000000..ec418323682c --- /dev/null +++ b/site/public/v1/software/b3bib/index.json @@ -0,0 +1,24 @@ +{ + "id": 879, + "slug": "b3bib", + "name": "b3bib", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "GNU General Public License, version 2.0 or later" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105748767" + ], + "created_at": "2026-07-10T10:12:39.879505", + "updated_at": "2026-07-10T10:12:39.879505", + "url": "/v1/software/b3bib" +} diff --git a/site/public/v1/software/b4-organ-ii/index.json b/site/public/v1/software/b4-organ-ii/index.json new file mode 100644 index 000000000000..8100c3e90e2c --- /dev/null +++ b/site/public/v1/software/b4-organ-ii/index.json @@ -0,0 +1,21 @@ +{ + "id": 880, + "slug": "b4-organ-ii", + "name": "B4 Organ II", + "release_date": null, + "developers": [ + "Native Instruments" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4834442" + ], + "created_at": "2026-07-10T10:12:39.880478", + "updated_at": "2026-07-10T10:12:39.880478", + "url": "/v1/software/b4-organ-ii" +} diff --git a/site/public/v1/software/b4x/index.json b/site/public/v1/software/b4x/index.json new file mode 100644 index 000000000000..e2c1d80b1332 --- /dev/null +++ b/site/public/v1/software/b4x/index.json @@ -0,0 +1,27 @@ +{ + "id": 881, + "slug": "b4x", + "name": "B4X", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Raspberry Pi OS", + "iOS", + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "shareware", + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25111997" + ], + "created_at": "2026-07-10T10:12:39.880478", + "updated_at": "2026-07-10T10:12:39.880478", + "url": "/v1/software/b4x" +} diff --git a/site/public/v1/software/babelfy/index.json b/site/public/v1/software/babelfy/index.json new file mode 100644 index 000000000000..ef48dd920ec7 --- /dev/null +++ b/site/public/v1/software/babelfy/index.json @@ -0,0 +1,21 @@ +{ + "id": 882, + "slug": "babelfy", + "name": "Babelfy", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Creative Commons Attribution-NonCommercial-ShareAlike 3.0 Unported" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17488762" + ], + "created_at": "2026-07-10T10:12:39.880478", + "updated_at": "2026-07-10T10:12:39.880478", + "url": "/v1/software/babelfy" +} diff --git a/site/public/v1/software/babelgum/index.json b/site/public/v1/software/babelgum/index.json new file mode 100644 index 000000000000..bb95ebb71102 --- /dev/null +++ b/site/public/v1/software/babelgum/index.json @@ -0,0 +1,21 @@ +{ + "id": 883, + "slug": "babelgum", + "name": "Babelgum", + "release_date": "2007-03-07", + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4837701" + ], + "created_at": "2026-07-10T10:12:39.880478", + "updated_at": "2026-07-10T10:12:39.880478", + "url": "/v1/software/babelgum" +} diff --git a/site/public/v1/software/babeltrace/index.json b/site/public/v1/software/babeltrace/index.json new file mode 100644 index 000000000000..8c08b37f45b0 --- /dev/null +++ b/site/public/v1/software/babeltrace/index.json @@ -0,0 +1,21 @@ +{ + "id": 884, + "slug": "babeltrace", + "name": "Babeltrace", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116620785" + ], + "created_at": "2026-07-10T10:12:39.881472", + "updated_at": "2026-07-10T10:12:39.881472", + "url": "/v1/software/babeltrace" +} diff --git a/site/public/v1/software/baby-food-allergy-tracker/index.json b/site/public/v1/software/baby-food-allergy-tracker/index.json new file mode 100644 index 000000000000..2995daf627da --- /dev/null +++ b/site/public/v1/software/baby-food-allergy-tracker/index.json @@ -0,0 +1,23 @@ +{ + "id": 885, + "slug": "baby-food-allergy-tracker", + "name": "Baby Food & Allergy Tracker", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "iOS" + ], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139997256" + ], + "created_at": "2026-07-10T10:12:39.881472", + "updated_at": "2026-07-10T10:12:39.881472", + "url": "/v1/software/baby-food-allergy-tracker" +} diff --git a/site/public/v1/software/babylon/index.json b/site/public/v1/software/babylon/index.json new file mode 100644 index 000000000000..a7f71aa52193 --- /dev/null +++ b/site/public/v1/software/babylon/index.json @@ -0,0 +1,19 @@ +{ + "id": 886, + "slug": "babylon", + "name": "Babylon", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q797941" + ], + "created_at": "2026-07-10T10:12:39.881472", + "updated_at": "2026-07-10T10:12:39.881472", + "url": "/v1/software/babylon" +} diff --git a/site/public/v1/software/backblaze/index.json b/site/public/v1/software/backblaze/index.json new file mode 100644 index 000000000000..0e5bff0577df --- /dev/null +++ b/site/public/v1/software/backblaze/index.json @@ -0,0 +1,19 @@ +{ + "id": 887, + "slug": "backblaze", + "name": "Backblaze", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4839566" + ], + "created_at": "2026-07-10T10:12:39.882482", + "updated_at": "2026-07-10T10:12:39.882482", + "url": "/v1/software/backblaze" +} diff --git a/site/public/v1/software/backbone-one/index.json b/site/public/v1/software/backbone-one/index.json new file mode 100644 index 000000000000..f0332bf36c24 --- /dev/null +++ b/site/public/v1/software/backbone-one/index.json @@ -0,0 +1,19 @@ +{ + "id": 888, + "slug": "backbone-one", + "name": "Backbone One", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107272294" + ], + "created_at": "2026-07-10T10:12:39.882482", + "updated_at": "2026-07-10T10:12:39.882482", + "url": "/v1/software/backbone-one" +} diff --git a/site/public/v1/software/backgammon/index.json b/site/public/v1/software/backgammon/index.json new file mode 100644 index 000000000000..e332bee66c93 --- /dev/null +++ b/site/public/v1/software/backgammon/index.json @@ -0,0 +1,19 @@ +{ + "id": 889, + "slug": "backgammon", + "name": "Backgammon", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q90819942" + ], + "created_at": "2026-07-10T10:12:39.882482", + "updated_at": "2026-07-10T10:12:39.882482", + "url": "/v1/software/backgammon" +} diff --git a/site/public/v1/software/backpack-for-parents/index.json b/site/public/v1/software/backpack-for-parents/index.json new file mode 100644 index 000000000000..e8e65ffbb257 --- /dev/null +++ b/site/public/v1/software/backpack-for-parents/index.json @@ -0,0 +1,21 @@ +{ + "id": 890, + "slug": "backpack-for-parents", + "name": "backpack for parents", + "release_date": "2014-01-01", + "developers": [ + "Greenville County School District" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125501093" + ], + "created_at": "2026-07-10T10:12:39.883470", + "updated_at": "2026-07-10T10:12:39.883470", + "url": "/v1/software/backpack-for-parents" +} diff --git a/site/public/v1/software/backpack/index.json b/site/public/v1/software/backpack/index.json new file mode 100644 index 000000000000..0e8cc997ef95 --- /dev/null +++ b/site/public/v1/software/backpack/index.json @@ -0,0 +1,21 @@ +{ + "id": 891, + "slug": "backpack", + "name": "backpack", + "release_date": "2014-01-01", + "developers": [ + "Greenville County School District" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125501072" + ], + "created_at": "2026-07-10T10:12:39.883470", + "updated_at": "2026-07-10T10:12:39.883470", + "url": "/v1/software/backpack" +} diff --git a/site/public/v1/software/backtrack/index.json b/site/public/v1/software/backtrack/index.json new file mode 100644 index 000000000000..0bbf07e213d5 --- /dev/null +++ b/site/public/v1/software/backtrack/index.json @@ -0,0 +1,23 @@ +{ + "id": 892, + "slug": "backtrack", + "name": "Backtrack", + "release_date": null, + "developers": [ + "Yac" + ], + "publishers": [ + "Yac" + ], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135992085" + ], + "created_at": "2026-07-10T10:12:39.883470", + "updated_at": "2026-07-10T10:12:39.883470", + "url": "/v1/software/backtrack" +} diff --git a/site/public/v1/software/backup-express/index.json b/site/public/v1/software/backup-express/index.json new file mode 100644 index 000000000000..3a201ae8532a --- /dev/null +++ b/site/public/v1/software/backup-express/index.json @@ -0,0 +1,19 @@ +{ + "id": 893, + "slug": "backup-express", + "name": "Backup Express", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4839797" + ], + "created_at": "2026-07-10T10:12:39.884456", + "updated_at": "2026-07-10T10:12:39.884456", + "url": "/v1/software/backup-express" +} diff --git a/site/public/v1/software/backupbluray/index.json b/site/public/v1/software/backupbluray/index.json new file mode 100644 index 000000000000..bb7db045eaf0 --- /dev/null +++ b/site/public/v1/software/backupbluray/index.json @@ -0,0 +1,23 @@ +{ + "id": 894, + "slug": "backupbluray", + "name": "BackupBluRay", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Java" + ], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3632659" + ], + "created_at": "2026-07-10T10:12:39.884456", + "updated_at": "2026-07-10T10:12:39.884456", + "url": "/v1/software/backupbluray" +} diff --git a/site/public/v1/software/backupninja/index.json b/site/public/v1/software/backupninja/index.json new file mode 100644 index 000000000000..e86f34931ac0 --- /dev/null +++ b/site/public/v1/software/backupninja/index.json @@ -0,0 +1,19 @@ +{ + "id": 895, + "slug": "backupninja", + "name": "backupninja", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62854991" + ], + "created_at": "2026-07-10T10:12:39.884456", + "updated_at": "2026-07-10T10:12:39.884456", + "url": "/v1/software/backupninja" +} diff --git a/site/public/v1/software/baicizhan/index.json b/site/public/v1/software/baicizhan/index.json new file mode 100644 index 000000000000..656d1ca94d0b --- /dev/null +++ b/site/public/v1/software/baicizhan/index.json @@ -0,0 +1,21 @@ +{ + "id": 896, + "slug": "baicizhan", + "name": "Baicizhan", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "iOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28410483" + ], + "created_at": "2026-07-10T10:12:39.884456", + "updated_at": "2026-07-10T10:12:39.884456", + "url": "/v1/software/baicizhan" +} diff --git a/site/public/v1/software/baidu-browser/index.json b/site/public/v1/software/baidu-browser/index.json new file mode 100644 index 000000000000..0a963f346eb4 --- /dev/null +++ b/site/public/v1/software/baidu-browser/index.json @@ -0,0 +1,21 @@ +{ + "id": 897, + "slug": "baidu-browser", + "name": "Baidu Browser", + "release_date": "2011-01-01", + "developers": [ + "Baidu" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22773828" + ], + "created_at": "2026-07-10T10:12:39.885474", + "updated_at": "2026-07-10T10:12:39.885474", + "url": "/v1/software/baidu-browser" +} diff --git a/site/public/v1/software/bakeprofit/index.json b/site/public/v1/software/bakeprofit/index.json new file mode 100644 index 000000000000..d46d3513e99c --- /dev/null +++ b/site/public/v1/software/bakeprofit/index.json @@ -0,0 +1,19 @@ +{ + "id": 898, + "slug": "bakeprofit", + "name": "BakeProfit", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138972908" + ], + "created_at": "2026-07-10T10:12:39.885474", + "updated_at": "2026-07-10T10:12:39.885474", + "url": "/v1/software/bakeprofit" +} diff --git a/site/public/v1/software/bakesale/index.json b/site/public/v1/software/bakesale/index.json new file mode 100644 index 000000000000..1fae9d313e28 --- /dev/null +++ b/site/public/v1/software/bakesale/index.json @@ -0,0 +1,19 @@ +{ + "id": 899, + "slug": "bakesale", + "name": "BakeSale", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4849050" + ], + "created_at": "2026-07-10T10:12:39.885474", + "updated_at": "2026-07-10T10:12:39.885474", + "url": "/v1/software/bakesale" +} diff --git a/site/public/v1/software/bale/index.json b/site/public/v1/software/bale/index.json new file mode 100644 index 000000000000..55248fdade34 --- /dev/null +++ b/site/public/v1/software/bale/index.json @@ -0,0 +1,21 @@ +{ + "id": 900, + "slug": "bale", + "name": "Bale", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "iOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122781807" + ], + "created_at": "2026-07-10T10:12:39.886534", + "updated_at": "2026-07-10T10:12:39.886534", + "url": "/v1/software/bale" +} diff --git a/site/public/v1/software/bali-phy/index.json b/site/public/v1/software/bali-phy/index.json new file mode 100644 index 000000000000..b5f5c37b6ed7 --- /dev/null +++ b/site/public/v1/software/bali-phy/index.json @@ -0,0 +1,19 @@ +{ + "id": 901, + "slug": "bali-phy", + "name": "BAli-Phy", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q15637686" + ], + "created_at": "2026-07-10T10:12:39.886534", + "updated_at": "2026-07-10T10:12:39.886534", + "url": "/v1/software/bali-phy" +} diff --git a/site/public/v1/software/baloo-kcmadv/index.json b/site/public/v1/software/baloo-kcmadv/index.json new file mode 100644 index 000000000000..79d44f780d97 --- /dev/null +++ b/site/public/v1/software/baloo-kcmadv/index.json @@ -0,0 +1,19 @@ +{ + "id": 902, + "slug": "baloo-kcmadv", + "name": "baloo-kcmadv", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28941646" + ], + "created_at": "2026-07-10T10:12:39.886534", + "updated_at": "2026-07-10T10:12:39.886534", + "url": "/v1/software/baloo-kcmadv" +} diff --git a/site/public/v1/software/balsamiq/index.json b/site/public/v1/software/balsamiq/index.json new file mode 100644 index 000000000000..73cd865d1af8 --- /dev/null +++ b/site/public/v1/software/balsamiq/index.json @@ -0,0 +1,19 @@ +{ + "id": 903, + "slug": "balsamiq", + "name": "Balsamiq", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4852549" + ], + "created_at": "2026-07-10T10:12:39.887472", + "updated_at": "2026-07-10T10:12:39.887472", + "url": "/v1/software/balsamiq" +} diff --git a/site/public/v1/software/bambi/index.json b/site/public/v1/software/bambi/index.json new file mode 100644 index 000000000000..b254c4fc5743 --- /dev/null +++ b/site/public/v1/software/bambi/index.json @@ -0,0 +1,19 @@ +{ + "id": 904, + "slug": "bambi", + "name": "Bambi", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127502331" + ], + "created_at": "2026-07-10T10:12:39.887472", + "updated_at": "2026-07-10T10:12:39.887472", + "url": "/v1/software/bambi" +} diff --git a/site/public/v1/software/bank-statement-pdf-converter/index.json b/site/public/v1/software/bank-statement-pdf-converter/index.json new file mode 100644 index 000000000000..cd9a78e8e3f5 --- /dev/null +++ b/site/public/v1/software/bank-statement-pdf-converter/index.json @@ -0,0 +1,23 @@ +{ + "id": 905, + "slug": "bank-statement-pdf-converter", + "name": "Bank Statement PDF Converter", + "release_date": null, + "developers": [ + "C. M. Leal Ltda" + ], + "publishers": [], + "operating_systems": [ + "macOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138472137" + ], + "created_at": "2026-07-10T10:12:39.887472", + "updated_at": "2026-07-10T10:12:39.887472", + "url": "/v1/software/bank-statement-pdf-converter" +} diff --git a/site/public/v1/software/bank-street-music-writer/index.json b/site/public/v1/software/bank-street-music-writer/index.json new file mode 100644 index 000000000000..ce370de0710d --- /dev/null +++ b/site/public/v1/software/bank-street-music-writer/index.json @@ -0,0 +1,21 @@ +{ + "id": 906, + "slug": "bank-street-music-writer", + "name": "Bank Street Music Writer", + "release_date": null, + "developers": [ + "Mindscape" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4855984" + ], + "created_at": "2026-07-10T10:12:39.888485", + "updated_at": "2026-07-10T10:12:39.888485", + "url": "/v1/software/bank-street-music-writer" +} diff --git a/site/public/v1/software/banktivity/index.json b/site/public/v1/software/banktivity/index.json new file mode 100644 index 000000000000..c416e00de7e8 --- /dev/null +++ b/site/public/v1/software/banktivity/index.json @@ -0,0 +1,19 @@ +{ + "id": 907, + "slug": "banktivity", + "name": "Banktivity", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q55263591" + ], + "created_at": "2026-07-10T10:12:39.888485", + "updated_at": "2026-07-10T10:12:39.888485", + "url": "/v1/software/banktivity" +} diff --git a/site/public/v1/software/banner-mania/index.json b/site/public/v1/software/banner-mania/index.json new file mode 100644 index 000000000000..b40a8fcbbf1a --- /dev/null +++ b/site/public/v1/software/banner-mania/index.json @@ -0,0 +1,22 @@ +{ + "id": 908, + "slug": "banner-mania", + "name": "Banner Mania", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Apple II", + "macOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17150438" + ], + "created_at": "2026-07-10T10:12:39.888485", + "updated_at": "2026-07-10T10:12:39.888485", + "url": "/v1/software/banner-mania" +} diff --git a/site/public/v1/software/baob-xia/index.json b/site/public/v1/software/baob-xia/index.json new file mode 100644 index 000000000000..b58783077af4 --- /dev/null +++ b/site/public/v1/software/baob-xia/index.json @@ -0,0 +1,23 @@ +{ + "id": 909, + "slug": "baob-xia", + "name": "Baobáxia", + "release_date": null, + "developers": [ + "Vince Tozzi" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "GNU General Public License, version 3.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140453434" + ], + "created_at": "2026-07-10T10:12:39.889453", + "updated_at": "2026-07-10T10:12:39.889453", + "url": "/v1/software/baob-xia" +} diff --git a/site/public/v1/software/barbie-mermaid-adventure/index.json b/site/public/v1/software/barbie-mermaid-adventure/index.json new file mode 100644 index 000000000000..17f93addde16 --- /dev/null +++ b/site/public/v1/software/barbie-mermaid-adventure/index.json @@ -0,0 +1,19 @@ +{ + "id": 910, + "slug": "barbie-mermaid-adventure", + "name": "Barbie Mermaid Adventure", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140462013" + ], + "created_at": "2026-07-10T10:12:39.889453", + "updated_at": "2026-07-10T10:12:39.889453", + "url": "/v1/software/barbie-mermaid-adventure" +} diff --git a/site/public/v1/software/baron/index.json b/site/public/v1/software/baron/index.json new file mode 100644 index 000000000000..dac533281dec --- /dev/null +++ b/site/public/v1/software/baron/index.json @@ -0,0 +1,19 @@ +{ + "id": 911, + "slug": "baron", + "name": "BARON", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4834638" + ], + "created_at": "2026-07-10T10:12:39.889453", + "updated_at": "2026-07-10T10:12:39.889453", + "url": "/v1/software/baron" +} diff --git a/site/public/v1/software/bartok/index.json b/site/public/v1/software/bartok/index.json new file mode 100644 index 000000000000..b23d70b4140a --- /dev/null +++ b/site/public/v1/software/bartok/index.json @@ -0,0 +1,19 @@ +{ + "id": 912, + "slug": "bartok", + "name": "Bartok", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4865479" + ], + "created_at": "2026-07-10T10:12:39.890507", + "updated_at": "2026-07-10T10:12:39.890507", + "url": "/v1/software/bartok" +} diff --git a/site/public/v1/software/bartpe/index.json b/site/public/v1/software/bartpe/index.json new file mode 100644 index 000000000000..17473e016c11 --- /dev/null +++ b/site/public/v1/software/bartpe/index.json @@ -0,0 +1,21 @@ +{ + "id": 913, + "slug": "bartpe", + "name": "BartPE", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q773342" + ], + "created_at": "2026-07-10T10:12:39.890507", + "updated_at": "2026-07-10T10:12:39.890507", + "url": "/v1/software/bartpe" +} diff --git a/site/public/v1/software/bas-bayesian-variable-selection-and-model-averaging-using-bayesian-adaptive-sampling/index.json b/site/public/v1/software/bas-bayesian-variable-selection-and-model-averaging-using-bayesian-adaptive-sampling/index.json new file mode 100644 index 000000000000..b07dc6f53913 --- /dev/null +++ b/site/public/v1/software/bas-bayesian-variable-selection-and-model-averaging-using-bayesian-adaptive-sampling/index.json @@ -0,0 +1,23 @@ +{ + "id": 914, + "slug": "bas-bayesian-variable-selection-and-model-averaging-using-bayesian-adaptive-sampling", + "name": "BAS: Bayesian Variable Selection and Model Averaging using Bayesian Adaptive Sampling", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "R" + ], + "licenses": [ + "GNU General Public License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q98974089" + ], + "created_at": "2026-07-10T10:12:39.890507", + "updated_at": "2026-07-10T10:12:39.890507", + "url": "/v1/software/bas-bayesian-variable-selection-and-model-averaging-using-bayesian-adaptive-sampling" +} diff --git a/site/public/v1/software/bas-business-automation-software/index.json b/site/public/v1/software/bas-business-automation-software/index.json new file mode 100644 index 000000000000..2473ab30a201 --- /dev/null +++ b/site/public/v1/software/bas-business-automation-software/index.json @@ -0,0 +1,21 @@ +{ + "id": 915, + "slug": "bas-business-automation-software", + "name": "BAS (Business automation software)", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105763677" + ], + "created_at": "2026-07-10T10:12:39.890507", + "updated_at": "2026-07-10T10:12:39.890507", + "url": "/v1/software/bas-business-automation-software" +} diff --git a/site/public/v1/software/base4/index.json b/site/public/v1/software/base4/index.json new file mode 100644 index 000000000000..6c16ff269bea --- /dev/null +++ b/site/public/v1/software/base4/index.json @@ -0,0 +1,19 @@ +{ + "id": 916, + "slug": "base4", + "name": "Base4", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4866353" + ], + "created_at": "2026-07-10T10:12:39.891464", + "updated_at": "2026-07-10T10:12:39.891464", + "url": "/v1/software/base4" +} diff --git a/site/public/v1/software/basecamp-classic/index.json b/site/public/v1/software/basecamp-classic/index.json new file mode 100644 index 000000000000..328aaae069f0 --- /dev/null +++ b/site/public/v1/software/basecamp-classic/index.json @@ -0,0 +1,21 @@ +{ + "id": 917, + "slug": "basecamp-classic", + "name": "Basecamp Classic", + "release_date": null, + "developers": [ + "Basecamp" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2507535" + ], + "created_at": "2026-07-10T10:12:39.891464", + "updated_at": "2026-07-10T10:12:39.891464", + "url": "/v1/software/basecamp-classic" +} diff --git a/site/public/v1/software/basercms/index.json b/site/public/v1/software/basercms/index.json new file mode 100644 index 000000000000..fba25c155f35 --- /dev/null +++ b/site/public/v1/software/basercms/index.json @@ -0,0 +1,21 @@ +{ + "id": 918, + "slug": "basercms", + "name": "baserCMS", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11192040" + ], + "created_at": "2026-07-10T10:12:39.891464", + "updated_at": "2026-07-10T10:12:39.891464", + "url": "/v1/software/basercms" +} diff --git a/site/public/v1/software/baserow/index.json b/site/public/v1/software/baserow/index.json new file mode 100644 index 000000000000..dd9d81f42ae4 --- /dev/null +++ b/site/public/v1/software/baserow/index.json @@ -0,0 +1,19 @@ +{ + "id": 919, + "slug": "baserow", + "name": "Baserow", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107454027" + ], + "created_at": "2026-07-10T10:12:39.892533", + "updated_at": "2026-07-10T10:12:39.892533", + "url": "/v1/software/baserow" +} diff --git a/site/public/v1/software/bashburn/index.json b/site/public/v1/software/bashburn/index.json new file mode 100644 index 000000000000..69330df8b977 --- /dev/null +++ b/site/public/v1/software/bashburn/index.json @@ -0,0 +1,19 @@ +{ + "id": 920, + "slug": "bashburn", + "name": "BashBurn", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5721706" + ], + "created_at": "2026-07-10T10:12:39.892533", + "updated_at": "2026-07-10T10:12:39.892533", + "url": "/v1/software/bashburn" +} diff --git a/site/public/v1/software/bashlite/index.json b/site/public/v1/software/bashlite/index.json new file mode 100644 index 000000000000..94627acf61c4 --- /dev/null +++ b/site/public/v1/software/bashlite/index.json @@ -0,0 +1,19 @@ +{ + "id": 921, + "slug": "bashlite", + "name": "BASHLITE", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28135507" + ], + "created_at": "2026-07-10T10:12:39.892533", + "updated_at": "2026-07-10T10:12:39.892533", + "url": "/v1/software/bashlite" +} diff --git a/site/public/v1/software/basic-11/index.json b/site/public/v1/software/basic-11/index.json new file mode 100644 index 000000000000..ffdbae35c254 --- /dev/null +++ b/site/public/v1/software/basic-11/index.json @@ -0,0 +1,21 @@ +{ + "id": 922, + "slug": "basic-11", + "name": "BASIC-11", + "release_date": null, + "developers": [ + "Digital Equipment Corporation" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4834659" + ], + "created_at": "2026-07-10T10:12:39.893503", + "updated_at": "2026-07-10T10:12:39.893503", + "url": "/v1/software/basic-11" +} diff --git a/site/public/v1/software/basic-a/index.json b/site/public/v1/software/basic-a/index.json new file mode 100644 index 000000000000..af8452613ad0 --- /dev/null +++ b/site/public/v1/software/basic-a/index.json @@ -0,0 +1,23 @@ +{ + "id": 923, + "slug": "basic-a", + "name": "BASIC A+", + "release_date": null, + "developers": [ + "Optimized Systems Software" + ], + "publishers": [], + "operating_systems": [ + "Atari 8-bit family" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q465747" + ], + "created_at": "2026-07-10T10:12:39.893503", + "updated_at": "2026-07-10T10:12:39.893503", + "url": "/v1/software/basic-a" +} diff --git a/site/public/v1/software/basic-f/index.json b/site/public/v1/software/basic-f/index.json new file mode 100644 index 000000000000..aa6bfd3c4bee --- /dev/null +++ b/site/public/v1/software/basic-f/index.json @@ -0,0 +1,19 @@ +{ + "id": 924, + "slug": "basic-f", + "name": "BASIC-F", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121462477" + ], + "created_at": "2026-07-10T10:12:39.893503", + "updated_at": "2026-07-10T10:12:39.893503", + "url": "/v1/software/basic-f" +} diff --git a/site/public/v1/software/basic-g/index.json b/site/public/v1/software/basic-g/index.json new file mode 100644 index 000000000000..e1365e6cff16 --- /dev/null +++ b/site/public/v1/software/basic-g/index.json @@ -0,0 +1,19 @@ +{ + "id": 925, + "slug": "basic-g", + "name": "BASIC-G", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121461913" + ], + "created_at": "2026-07-10T10:12:39.894570", + "updated_at": "2026-07-10T10:12:39.894570", + "url": "/v1/software/basic-g" +} diff --git a/site/public/v1/software/basic-i/index.json b/site/public/v1/software/basic-i/index.json new file mode 100644 index 000000000000..87da986e0a84 --- /dev/null +++ b/site/public/v1/software/basic-i/index.json @@ -0,0 +1,19 @@ +{ + "id": 926, + "slug": "basic-i", + "name": "BASIC-I", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121462451" + ], + "created_at": "2026-07-10T10:12:39.894570", + "updated_at": "2026-07-10T10:12:39.894570", + "url": "/v1/software/basic-i" +} diff --git a/site/public/v1/software/basic-support-for-cooperative-work/index.json b/site/public/v1/software/basic-support-for-cooperative-work/index.json new file mode 100644 index 000000000000..96a6582f0160 --- /dev/null +++ b/site/public/v1/software/basic-support-for-cooperative-work/index.json @@ -0,0 +1,19 @@ +{ + "id": 927, + "slug": "basic-support-for-cooperative-work", + "name": "Basic Support for Cooperative Work", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q352216" + ], + "created_at": "2026-07-10T10:12:39.894570", + "updated_at": "2026-07-10T10:12:39.894570", + "url": "/v1/software/basic-support-for-cooperative-work" +} diff --git a/site/public/v1/software/basis/index.json b/site/public/v1/software/basis/index.json new file mode 100644 index 000000000000..cc1e410730fa --- /dev/null +++ b/site/public/v1/software/basis/index.json @@ -0,0 +1,19 @@ +{ + "id": 928, + "slug": "basis", + "name": "Basis", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q58905107" + ], + "created_at": "2026-07-10T10:12:39.894570", + "updated_at": "2026-07-10T10:12:39.894570", + "url": "/v1/software/basis" +} diff --git a/site/public/v1/software/bass/index.json b/site/public/v1/software/bass/index.json new file mode 100644 index 000000000000..56d17303c867 --- /dev/null +++ b/site/public/v1/software/bass/index.json @@ -0,0 +1,19 @@ +{ + "id": 929, + "slug": "bass", + "name": "BASS", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4034669" + ], + "created_at": "2026-07-10T10:12:39.895591", + "updated_at": "2026-07-10T10:12:39.895591", + "url": "/v1/software/bass" +} diff --git a/site/public/v1/software/basset/index.json b/site/public/v1/software/basset/index.json new file mode 100644 index 000000000000..47fff2aa810f --- /dev/null +++ b/site/public/v1/software/basset/index.json @@ -0,0 +1,19 @@ +{ + "id": 930, + "slug": "basset", + "name": "basset", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q74005540" + ], + "created_at": "2026-07-10T10:12:39.895591", + "updated_at": "2026-07-10T10:12:39.895591", + "url": "/v1/software/basset" +} diff --git a/site/public/v1/software/bastille/index.json b/site/public/v1/software/bastille/index.json new file mode 100644 index 000000000000..de06ce904af6 --- /dev/null +++ b/site/public/v1/software/bastille/index.json @@ -0,0 +1,19 @@ +{ + "id": 931, + "slug": "bastille", + "name": "bastille", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q88506467" + ], + "created_at": "2026-07-10T10:12:39.896567", + "updated_at": "2026-07-10T10:12:39.896567", + "url": "/v1/software/bastille" +} diff --git a/site/public/v1/software/batch-monitor/index.json b/site/public/v1/software/batch-monitor/index.json new file mode 100644 index 000000000000..b1efa98a43db --- /dev/null +++ b/site/public/v1/software/batch-monitor/index.json @@ -0,0 +1,21 @@ +{ + "id": 932, + "slug": "batch-monitor", + "name": "Batch Monitor", + "release_date": null, + "developers": [ + "Apple Inc." + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4868708" + ], + "created_at": "2026-07-10T10:12:39.896567", + "updated_at": "2026-07-10T10:12:39.896567", + "url": "/v1/software/batch-monitor" +} diff --git a/site/public/v1/software/batchgeo/index.json b/site/public/v1/software/batchgeo/index.json new file mode 100644 index 000000000000..8ab621206025 --- /dev/null +++ b/site/public/v1/software/batchgeo/index.json @@ -0,0 +1,19 @@ +{ + "id": 933, + "slug": "batchgeo", + "name": "BatchGeo", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084798" + ], + "created_at": "2026-07-10T10:12:39.896567", + "updated_at": "2026-07-10T10:12:39.896567", + "url": "/v1/software/batchgeo" +} diff --git a/site/public/v1/software/batchpipes/index.json b/site/public/v1/software/batchpipes/index.json new file mode 100644 index 000000000000..77a25d22fab5 --- /dev/null +++ b/site/public/v1/software/batchpipes/index.json @@ -0,0 +1,21 @@ +{ + "id": 934, + "slug": "batchpipes", + "name": "BatchPipes", + "release_date": null, + "developers": [ + "IBM" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4868701" + ], + "created_at": "2026-07-10T10:12:39.896567", + "updated_at": "2026-07-10T10:12:39.896567", + "url": "/v1/software/batchpipes" +} diff --git a/site/public/v1/software/batchpipeworks/index.json b/site/public/v1/software/batchpipeworks/index.json new file mode 100644 index 000000000000..db3ea170449e --- /dev/null +++ b/site/public/v1/software/batchpipeworks/index.json @@ -0,0 +1,21 @@ +{ + "id": 935, + "slug": "batchpipeworks", + "name": "BatchPipeWorks", + "release_date": null, + "developers": [ + "IBM" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28922399" + ], + "created_at": "2026-07-10T10:12:39.897595", + "updated_at": "2026-07-10T10:12:39.897595", + "url": "/v1/software/batchpipeworks" +} diff --git a/site/public/v1/software/battlezone-98-redux/index.json b/site/public/v1/software/battlezone-98-redux/index.json new file mode 100644 index 000000000000..c53e743a8dfe --- /dev/null +++ b/site/public/v1/software/battlezone-98-redux/index.json @@ -0,0 +1,27 @@ +{ + "id": 936, + "slug": "battlezone-98-redux", + "name": "Battlezone 98 Redux", + "release_date": "2016-04-18", + "developers": [ + "Big Boat Interactive" + ], + "publishers": [ + "Rebellion Developments" + ], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [ + "real-time strategy", + "strategy video game", + "shooter game" + ], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q89288127" + ], + "created_at": "2026-07-10T10:12:39.897595", + "updated_at": "2026-07-10T10:12:39.897595", + "url": "/v1/software/battlezone-98-redux" +} diff --git a/site/public/v1/software/battmo/index.json b/site/public/v1/software/battmo/index.json new file mode 100644 index 000000000000..2ba62d1eb7bf --- /dev/null +++ b/site/public/v1/software/battmo/index.json @@ -0,0 +1,26 @@ +{ + "id": 937, + "slug": "battmo", + "name": "BattMo", + "release_date": null, + "developers": [ + "August Johansson", + "Xavier Raynaud", + "Halvor Møll Nilsen", + "Simon Clark", + "Eibar Flores", + "Francesca Watson" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120764444" + ], + "created_at": "2026-07-10T10:12:39.897595", + "updated_at": "2026-07-10T10:12:39.897595", + "url": "/v1/software/battmo" +} diff --git a/site/public/v1/software/baudline/index.json b/site/public/v1/software/baudline/index.json new file mode 100644 index 000000000000..7d9606239377 --- /dev/null +++ b/site/public/v1/software/baudline/index.json @@ -0,0 +1,23 @@ +{ + "id": 938, + "slug": "baudline", + "name": "Baudline", + "release_date": "2000-09-01", + "developers": [], + "publishers": [], + "operating_systems": [ + "Solaris", + "FreeBSD", + "macOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q301272" + ], + "created_at": "2026-07-10T10:12:39.898624", + "updated_at": "2026-07-10T10:12:39.898624", + "url": "/v1/software/baudline" +} diff --git a/site/public/v1/software/bavar-t/index.json b/site/public/v1/software/bavar-t/index.json new file mode 100644 index 000000000000..6772dd6efad8 --- /dev/null +++ b/site/public/v1/software/bavar-t/index.json @@ -0,0 +1,21 @@ +{ + "id": 939, + "slug": "bavar-t", + "name": "BavAR[t]", + "release_date": null, + "developers": [ + "AR[t] Studio" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139492974" + ], + "created_at": "2026-07-10T10:12:39.898624", + "updated_at": "2026-07-10T10:12:39.898624", + "url": "/v1/software/bavar-t" +} diff --git a/site/public/v1/software/baypoint-ai/index.json b/site/public/v1/software/baypoint-ai/index.json new file mode 100644 index 000000000000..94d5d9af3f75 --- /dev/null +++ b/site/public/v1/software/baypoint-ai/index.json @@ -0,0 +1,19 @@ +{ + "id": 940, + "slug": "baypoint-ai", + "name": "BayPoint AI", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139548244" + ], + "created_at": "2026-07-10T10:12:39.898624", + "updated_at": "2026-07-10T10:12:39.898624", + "url": "/v1/software/baypoint-ai" +} diff --git a/site/public/v1/software/bbc-fdc/index.json b/site/public/v1/software/bbc-fdc/index.json new file mode 100644 index 000000000000..e48987b62855 --- /dev/null +++ b/site/public/v1/software/bbc-fdc/index.json @@ -0,0 +1,21 @@ +{ + "id": 941, + "slug": "bbc-fdc", + "name": "bbc-fdc", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q83883726" + ], + "created_at": "2026-07-10T10:12:39.898624", + "updated_at": "2026-07-10T10:12:39.898624", + "url": "/v1/software/bbc-fdc" +} diff --git a/site/public/v1/software/bbc-radio-explorer/index.json b/site/public/v1/software/bbc-radio-explorer/index.json new file mode 100644 index 000000000000..0ca9c75baf1f --- /dev/null +++ b/site/public/v1/software/bbc-radio-explorer/index.json @@ -0,0 +1,19 @@ +{ + "id": 942, + "slug": "bbc-radio-explorer", + "name": "BBC Radio Explorer", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q65083773" + ], + "created_at": "2026-07-10T10:12:39.899581", + "updated_at": "2026-07-10T10:12:39.899581", + "url": "/v1/software/bbc-radio-explorer" +} diff --git a/site/public/v1/software/bbc-store/index.json b/site/public/v1/software/bbc-store/index.json new file mode 100644 index 000000000000..1d06b544c3ec --- /dev/null +++ b/site/public/v1/software/bbc-store/index.json @@ -0,0 +1,21 @@ +{ + "id": 943, + "slug": "bbc-store", + "name": "BBC Store", + "release_date": "2015-11-05", + "developers": [ + "BBC Worldwide" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q20313081" + ], + "created_at": "2026-07-10T10:12:39.899581", + "updated_at": "2026-07-10T10:12:39.899581", + "url": "/v1/software/bbc-store" +} diff --git a/site/public/v1/software/bbedit-lite/index.json b/site/public/v1/software/bbedit-lite/index.json new file mode 100644 index 000000000000..e535c5ae6e70 --- /dev/null +++ b/site/public/v1/software/bbedit-lite/index.json @@ -0,0 +1,19 @@ +{ + "id": 944, + "slug": "bbedit-lite", + "name": "BBEdit Lite", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4835035" + ], + "created_at": "2026-07-10T10:12:39.899581", + "updated_at": "2026-07-10T10:12:39.899581", + "url": "/v1/software/bbedit-lite" +} diff --git a/site/public/v1/software/bbm-enterprise/index.json b/site/public/v1/software/bbm-enterprise/index.json new file mode 100644 index 000000000000..847c4c983ef3 --- /dev/null +++ b/site/public/v1/software/bbm-enterprise/index.json @@ -0,0 +1,19 @@ +{ + "id": 945, + "slug": "bbm-enterprise", + "name": "BBM Enterprise", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108770071" + ], + "created_at": "2026-07-10T10:12:39.900911", + "updated_at": "2026-07-10T10:12:39.900911", + "url": "/v1/software/bbm-enterprise" +} diff --git a/site/public/v1/software/bbt-backbone-thesaurus/index.json b/site/public/v1/software/bbt-backbone-thesaurus/index.json new file mode 100644 index 000000000000..7d3734ba1034 --- /dev/null +++ b/site/public/v1/software/bbt-backbone-thesaurus/index.json @@ -0,0 +1,19 @@ +{ + "id": 946, + "slug": "bbt-backbone-thesaurus", + "name": "BBT - BackBone Thesaurus", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084799" + ], + "created_at": "2026-07-10T10:12:39.900911", + "updated_at": "2026-07-10T10:12:39.900911", + "url": "/v1/software/bbt-backbone-thesaurus" +} diff --git a/site/public/v1/software/bbtime/index.json b/site/public/v1/software/bbtime/index.json new file mode 100644 index 000000000000..a708817154f3 --- /dev/null +++ b/site/public/v1/software/bbtime/index.json @@ -0,0 +1,19 @@ +{ + "id": 947, + "slug": "bbtime", + "name": "bbtime", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065518" + ], + "created_at": "2026-07-10T10:12:39.900911", + "updated_at": "2026-07-10T10:12:39.900911", + "url": "/v1/software/bbtime" +} diff --git a/site/public/v1/software/bcbio-nextgen/index.json b/site/public/v1/software/bcbio-nextgen/index.json new file mode 100644 index 000000000000..f3c4ddefa51a --- /dev/null +++ b/site/public/v1/software/bcbio-nextgen/index.json @@ -0,0 +1,23 @@ +{ + "id": 948, + "slug": "bcbio-nextgen", + "name": "bcbio-nextgen", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Python" + ], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113046676" + ], + "created_at": "2026-07-10T10:12:39.901922", + "updated_at": "2026-07-10T10:12:39.901922", + "url": "/v1/software/bcbio-nextgen" +} diff --git a/site/public/v1/software/bcdedit/index.json b/site/public/v1/software/bcdedit/index.json new file mode 100644 index 000000000000..2d138f3b2ef4 --- /dev/null +++ b/site/public/v1/software/bcdedit/index.json @@ -0,0 +1,21 @@ +{ + "id": 949, + "slug": "bcdedit", + "name": "BCDEdit", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q94329642" + ], + "created_at": "2026-07-10T10:12:39.901922", + "updated_at": "2026-07-10T10:12:39.901922", + "url": "/v1/software/bcdedit" +} diff --git a/site/public/v1/software/bdelta/index.json b/site/public/v1/software/bdelta/index.json new file mode 100644 index 000000000000..7a669c082bf5 --- /dev/null +++ b/site/public/v1/software/bdelta/index.json @@ -0,0 +1,25 @@ +{ + "id": 950, + "slug": "bdelta", + "name": "bdelta", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "cross-platform" + ], + "programming_languages": [ + "Python" + ], + "licenses": [ + "Mozilla Public License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28941650" + ], + "created_at": "2026-07-10T10:12:39.901922", + "updated_at": "2026-07-10T10:12:39.901922", + "url": "/v1/software/bdelta" +} diff --git a/site/public/v1/software/bdii/index.json b/site/public/v1/software/bdii/index.json new file mode 100644 index 000000000000..4a14142763c0 --- /dev/null +++ b/site/public/v1/software/bdii/index.json @@ -0,0 +1,19 @@ +{ + "id": 951, + "slug": "bdii", + "name": "BDII", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4835367" + ], + "created_at": "2026-07-10T10:12:39.902919", + "updated_at": "2026-07-10T10:12:39.902919", + "url": "/v1/software/bdii" +} diff --git a/site/public/v1/software/bdv-notepad/index.json b/site/public/v1/software/bdv-notepad/index.json new file mode 100644 index 000000000000..a98dd82be04b --- /dev/null +++ b/site/public/v1/software/bdv-notepad/index.json @@ -0,0 +1,19 @@ +{ + "id": 952, + "slug": "bdv-notepad", + "name": "BDV Notepad", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q12062559" + ], + "created_at": "2026-07-10T10:12:39.902919", + "updated_at": "2026-07-10T10:12:39.902919", + "url": "/v1/software/bdv-notepad" +} diff --git a/site/public/v1/software/beacon-designer/index.json b/site/public/v1/software/beacon-designer/index.json new file mode 100644 index 000000000000..deb48f0fe0ee --- /dev/null +++ b/site/public/v1/software/beacon-designer/index.json @@ -0,0 +1,21 @@ +{ + "id": 953, + "slug": "beacon-designer", + "name": "Beacon designer", + "release_date": null, + "developers": [ + "Premier Biosoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4876002" + ], + "created_at": "2026-07-10T10:12:39.902919", + "updated_at": "2026-07-10T10:12:39.902919", + "url": "/v1/software/beacon-designer" +} diff --git a/site/public/v1/software/bearnie/index.json b/site/public/v1/software/bearnie/index.json new file mode 100644 index 000000000000..342d2dc1fd74 --- /dev/null +++ b/site/public/v1/software/bearnie/index.json @@ -0,0 +1,21 @@ +{ + "id": 954, + "slug": "bearnie", + "name": "Bearnie", + "release_date": null, + "developers": [ + "Michael Andreuzza" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140378005" + ], + "created_at": "2026-07-10T10:12:39.902919", + "updated_at": "2026-07-10T10:12:39.902919", + "url": "/v1/software/bearnie" +} diff --git a/site/public/v1/software/bearshare/index.json b/site/public/v1/software/bearshare/index.json new file mode 100644 index 000000000000..86523a413ec2 --- /dev/null +++ b/site/public/v1/software/bearshare/index.json @@ -0,0 +1,23 @@ +{ + "id": 955, + "slug": "bearshare", + "name": "BearShare", + "release_date": null, + "developers": [ + "Vinnie Falco" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q596031" + ], + "created_at": "2026-07-10T10:12:39.903922", + "updated_at": "2026-07-10T10:12:39.903922", + "url": "/v1/software/bearshare" +} diff --git a/site/public/v1/software/beartooth-radio/index.json b/site/public/v1/software/beartooth-radio/index.json new file mode 100644 index 000000000000..d590aebab18f --- /dev/null +++ b/site/public/v1/software/beartooth-radio/index.json @@ -0,0 +1,19 @@ +{ + "id": 956, + "slug": "beartooth-radio", + "name": "Beartooth Radio", + "release_date": "2017-05-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25324212" + ], + "created_at": "2026-07-10T10:12:39.903922", + "updated_at": "2026-07-10T10:12:39.903922", + "url": "/v1/software/beartooth-radio" +} diff --git a/site/public/v1/software/beast-2/index.json b/site/public/v1/software/beast-2/index.json new file mode 100644 index 000000000000..2da900bd35f3 --- /dev/null +++ b/site/public/v1/software/beast-2/index.json @@ -0,0 +1,21 @@ +{ + "id": 957, + "slug": "beast-2", + "name": "BEAST 2", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Java" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112030069" + ], + "created_at": "2026-07-10T10:12:39.903922", + "updated_at": "2026-07-10T10:12:39.903922", + "url": "/v1/software/beast-2" +} diff --git a/site/public/v1/software/beast/index.json b/site/public/v1/software/beast/index.json new file mode 100644 index 000000000000..ffe493dd6974 --- /dev/null +++ b/site/public/v1/software/beast/index.json @@ -0,0 +1,21 @@ +{ + "id": 958, + "slug": "beast", + "name": "Beast", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4876841" + ], + "created_at": "2026-07-10T10:12:39.904923", + "updated_at": "2026-07-10T10:12:39.904923", + "url": "/v1/software/beast" +} diff --git a/site/public/v1/software/beatroot/index.json b/site/public/v1/software/beatroot/index.json new file mode 100644 index 000000000000..8567af9c8ed5 --- /dev/null +++ b/site/public/v1/software/beatroot/index.json @@ -0,0 +1,19 @@ +{ + "id": 959, + "slug": "beatroot", + "name": "BeatRoot", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q20313156" + ], + "created_at": "2026-07-10T10:12:39.904923", + "updated_at": "2026-07-10T10:12:39.904923", + "url": "/v1/software/beatroot" +} diff --git a/site/public/v1/software/bedoma/index.json b/site/public/v1/software/bedoma/index.json new file mode 100644 index 000000000000..279aec15ac6e --- /dev/null +++ b/site/public/v1/software/bedoma/index.json @@ -0,0 +1,21 @@ +{ + "id": 960, + "slug": "bedoma", + "name": "Bedoma", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [ + "educational software" + ], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139681244" + ], + "created_at": "2026-07-10T10:12:39.904923", + "updated_at": "2026-07-10T10:12:39.904923", + "url": "/v1/software/bedoma" +} diff --git a/site/public/v1/software/bedpostx/index.json b/site/public/v1/software/bedpostx/index.json new file mode 100644 index 000000000000..f8f8a960b8d8 --- /dev/null +++ b/site/public/v1/software/bedpostx/index.json @@ -0,0 +1,19 @@ +{ + "id": 961, + "slug": "bedpostx", + "name": "BEDPOSTX", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108716903" + ], + "created_at": "2026-07-10T10:12:39.906022", + "updated_at": "2026-07-10T10:12:39.906022", + "url": "/v1/software/bedpostx" +} diff --git a/site/public/v1/software/bedtools/index.json b/site/public/v1/software/bedtools/index.json new file mode 100644 index 000000000000..6ab66e48bd62 --- /dev/null +++ b/site/public/v1/software/bedtools/index.json @@ -0,0 +1,19 @@ +{ + "id": 962, + "slug": "bedtools", + "name": "BEDtools", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113017825" + ], + "created_at": "2026-07-10T10:12:39.906022", + "updated_at": "2026-07-10T10:12:39.906022", + "url": "/v1/software/bedtools" +} diff --git a/site/public/v1/software/beebole/index.json b/site/public/v1/software/beebole/index.json new file mode 100644 index 000000000000..02bd12763162 --- /dev/null +++ b/site/public/v1/software/beebole/index.json @@ -0,0 +1,23 @@ +{ + "id": 963, + "slug": "beebole", + "name": "Beebole", + "release_date": null, + "developers": [ + "Beebole" + ], + "publishers": [], + "operating_systems": [ + "cross-platform" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135156306" + ], + "created_at": "2026-07-10T10:12:39.906022", + "updated_at": "2026-07-10T10:12:39.906022", + "url": "/v1/software/beebole" +} diff --git a/site/public/v1/software/beeceptor/index.json b/site/public/v1/software/beeceptor/index.json new file mode 100644 index 000000000000..5413f6266228 --- /dev/null +++ b/site/public/v1/software/beeceptor/index.json @@ -0,0 +1,21 @@ +{ + "id": 964, + "slug": "beeceptor", + "name": "Beeceptor", + "release_date": null, + "developers": [ + "Ankit Jain" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136688633" + ], + "created_at": "2026-07-10T10:12:39.906999", + "updated_at": "2026-07-10T10:12:39.906999", + "url": "/v1/software/beeceptor" +} diff --git a/site/public/v1/software/beegfs/index.json b/site/public/v1/software/beegfs/index.json new file mode 100644 index 000000000000..5a923636c2ab --- /dev/null +++ b/site/public/v1/software/beegfs/index.json @@ -0,0 +1,21 @@ +{ + "id": 965, + "slug": "beegfs", + "name": "BeeGFS", + "release_date": null, + "developers": [ + "Fraunhofer Society" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1418202" + ], + "created_at": "2026-07-10T10:12:39.906999", + "updated_at": "2026-07-10T10:12:39.906999", + "url": "/v1/software/beegfs" +} diff --git a/site/public/v1/software/beepcar/index.json b/site/public/v1/software/beepcar/index.json new file mode 100644 index 000000000000..3a83043c150f --- /dev/null +++ b/site/public/v1/software/beepcar/index.json @@ -0,0 +1,23 @@ +{ + "id": 966, + "slug": "beepcar", + "name": "BeepCar", + "release_date": "2017-02-06", + "developers": [], + "publishers": [], + "operating_systems": [ + "iOS" + ], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28866020" + ], + "created_at": "2026-07-10T10:12:39.906999", + "updated_at": "2026-07-10T10:12:39.906999", + "url": "/v1/software/beepcar" +} diff --git a/site/public/v1/software/beerwin-s-plainhtml/index.json b/site/public/v1/software/beerwin-s-plainhtml/index.json new file mode 100644 index 000000000000..8d16265feb3a --- /dev/null +++ b/site/public/v1/software/beerwin-s-plainhtml/index.json @@ -0,0 +1,19 @@ +{ + "id": 967, + "slug": "beerwin-s-plainhtml", + "name": "Beerwin’s PlainHTML", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q791965" + ], + "created_at": "2026-07-10T10:12:39.906999", + "updated_at": "2026-07-10T10:12:39.906999", + "url": "/v1/software/beerwin-s-plainhtml" +} diff --git a/site/public/v1/software/beesafe/index.json b/site/public/v1/software/beesafe/index.json new file mode 100644 index 000000000000..aaf37791f27c --- /dev/null +++ b/site/public/v1/software/beesafe/index.json @@ -0,0 +1,21 @@ +{ + "id": 968, + "slug": "beesafe", + "name": "BeeSafe", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "iOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q26793405" + ], + "created_at": "2026-07-10T10:12:39.907987", + "updated_at": "2026-07-10T10:12:39.907987", + "url": "/v1/software/beesafe" +} diff --git a/site/public/v1/software/beetalk/index.json b/site/public/v1/software/beetalk/index.json new file mode 100644 index 000000000000..21ddcc9f543a --- /dev/null +++ b/site/public/v1/software/beetalk/index.json @@ -0,0 +1,19 @@ +{ + "id": 969, + "slug": "beetalk", + "name": "BeeTalk", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q19892049" + ], + "created_at": "2026-07-10T10:12:39.907987", + "updated_at": "2026-07-10T10:12:39.907987", + "url": "/v1/software/beetalk" +} diff --git a/site/public/v1/software/beetle-buggin/index.json b/site/public/v1/software/beetle-buggin/index.json new file mode 100644 index 000000000000..5bd13b0c53c7 --- /dev/null +++ b/site/public/v1/software/beetle-buggin/index.json @@ -0,0 +1,19 @@ +{ + "id": 970, + "slug": "beetle-buggin", + "name": "Beetle Buggin", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140390658" + ], + "created_at": "2026-07-10T10:12:39.907987", + "updated_at": "2026-07-10T10:12:39.907987", + "url": "/v1/software/beetle-buggin" +} diff --git a/site/public/v1/software/behafizh/index.json b/site/public/v1/software/behafizh/index.json new file mode 100644 index 000000000000..80ad851c2808 --- /dev/null +++ b/site/public/v1/software/behafizh/index.json @@ -0,0 +1,19 @@ +{ + "id": 971, + "slug": "behafizh", + "name": "BeHafizh", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28725391" + ], + "created_at": "2026-07-10T10:12:39.908992", + "updated_at": "2026-07-10T10:12:39.908992", + "url": "/v1/software/behafizh" +} diff --git a/site/public/v1/software/beli/index.json b/site/public/v1/software/beli/index.json new file mode 100644 index 000000000000..934cf6438ac4 --- /dev/null +++ b/site/public/v1/software/beli/index.json @@ -0,0 +1,19 @@ +{ + "id": 972, + "slug": "beli", + "name": "Beli", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136106866" + ], + "created_at": "2026-07-10T10:12:39.908992", + "updated_at": "2026-07-10T10:12:39.908992", + "url": "/v1/software/beli" +} diff --git a/site/public/v1/software/belkart-pay/index.json b/site/public/v1/software/belkart-pay/index.json new file mode 100644 index 000000000000..db23f7ffed7d --- /dev/null +++ b/site/public/v1/software/belkart-pay/index.json @@ -0,0 +1,21 @@ +{ + "id": 973, + "slug": "belkart-pay", + "name": "Belkart Pay", + "release_date": null, + "developers": [ + "Bankawski pracesinhavy centar" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124378011" + ], + "created_at": "2026-07-10T10:12:39.909563", + "updated_at": "2026-07-10T10:12:39.909563", + "url": "/v1/software/belkart-pay" +} diff --git a/site/public/v1/software/bellerophon/index.json b/site/public/v1/software/bellerophon/index.json new file mode 100644 index 000000000000..a06880eb0394 --- /dev/null +++ b/site/public/v1/software/bellerophon/index.json @@ -0,0 +1,19 @@ +{ + "id": 974, + "slug": "bellerophon", + "name": "Bellerophon", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4883812" + ], + "created_at": "2026-07-10T10:12:39.909563", + "updated_at": "2026-07-10T10:12:39.909563", + "url": "/v1/software/bellerophon" +} diff --git a/site/public/v1/software/ben-and-ed/index.json b/site/public/v1/software/ben-and-ed/index.json new file mode 100644 index 000000000000..cc8a64725c79 --- /dev/null +++ b/site/public/v1/software/ben-and-ed/index.json @@ -0,0 +1,25 @@ +{ + "id": 975, + "slug": "ben-and-ed", + "name": "Ben and Ed", + "release_date": "2015-12-08", + "developers": [ + "Sluggerfly" + ], + "publishers": [ + "Sluggerfly" + ], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [ + "platformer" + ], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q98971784" + ], + "created_at": "2026-07-10T10:12:39.909563", + "updated_at": "2026-07-10T10:12:39.909563", + "url": "/v1/software/ben-and-ed" +} diff --git a/site/public/v1/software/benchit/index.json b/site/public/v1/software/benchit/index.json new file mode 100644 index 000000000000..57c33b08d0a3 --- /dev/null +++ b/site/public/v1/software/benchit/index.json @@ -0,0 +1,19 @@ +{ + "id": 976, + "slug": "benchit", + "name": "BenchIT", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q816711" + ], + "created_at": "2026-07-10T10:12:39.910629", + "updated_at": "2026-07-10T10:12:39.910629", + "url": "/v1/software/benchit" +} diff --git a/site/public/v1/software/benmap/index.json b/site/public/v1/software/benmap/index.json new file mode 100644 index 000000000000..c4a91c7329b5 --- /dev/null +++ b/site/public/v1/software/benmap/index.json @@ -0,0 +1,19 @@ +{ + "id": 977, + "slug": "benmap", + "name": "Benmap", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4889575" + ], + "created_at": "2026-07-10T10:12:39.910629", + "updated_at": "2026-07-10T10:12:39.910629", + "url": "/v1/software/benmap" +} diff --git a/site/public/v1/software/berkeley-madonna/index.json b/site/public/v1/software/berkeley-madonna/index.json new file mode 100644 index 000000000000..a0471107b308 --- /dev/null +++ b/site/public/v1/software/berkeley-madonna/index.json @@ -0,0 +1,26 @@ +{ + "id": 978, + "slug": "berkeley-madonna", + "name": "Berkeley Madonna", + "release_date": null, + "developers": [ + "George Oster" + ], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [ + "Java" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18357603" + ], + "created_at": "2026-07-10T10:12:39.910629", + "updated_at": "2026-07-10T10:12:39.910629", + "url": "/v1/software/berkeley-madonna" +} diff --git a/site/public/v1/software/berkeley-parser/index.json b/site/public/v1/software/berkeley-parser/index.json new file mode 100644 index 000000000000..15e9acc50eff --- /dev/null +++ b/site/public/v1/software/berkeley-parser/index.json @@ -0,0 +1,19 @@ +{ + "id": 979, + "slug": "berkeley-parser", + "name": "Berkeley Parser", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084800" + ], + "created_at": "2026-07-10T10:12:39.910629", + "updated_at": "2026-07-10T10:12:39.910629", + "url": "/v1/software/berkeley-parser" +} diff --git a/site/public/v1/software/berta-rudi/index.json b/site/public/v1/software/berta-rudi/index.json new file mode 100644 index 000000000000..5deaf1f916d8 --- /dev/null +++ b/site/public/v1/software/berta-rudi/index.json @@ -0,0 +1,19 @@ +{ + "id": 980, + "slug": "berta-rudi", + "name": "berta & rudi", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140043513" + ], + "created_at": "2026-07-10T10:12:39.911639", + "updated_at": "2026-07-10T10:12:39.911639", + "url": "/v1/software/berta-rudi" +} diff --git a/site/public/v1/software/bespokesynth/index.json b/site/public/v1/software/bespokesynth/index.json new file mode 100644 index 000000000000..28cc1d0013dc --- /dev/null +++ b/site/public/v1/software/bespokesynth/index.json @@ -0,0 +1,19 @@ +{ + "id": 981, + "slug": "bespokesynth", + "name": "BespokeSynth", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124022556" + ], + "created_at": "2026-07-10T10:12:39.911639", + "updated_at": "2026-07-10T10:12:39.911639", + "url": "/v1/software/bespokesynth" +} diff --git a/site/public/v1/software/bestmarc/index.json b/site/public/v1/software/bestmarc/index.json new file mode 100644 index 000000000000..c6d74c260dcc --- /dev/null +++ b/site/public/v1/software/bestmarc/index.json @@ -0,0 +1,19 @@ +{ + "id": 982, + "slug": "bestmarc", + "name": "BestMARC", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q78358769" + ], + "created_at": "2026-07-10T10:12:39.911639", + "updated_at": "2026-07-10T10:12:39.911639", + "url": "/v1/software/bestmarc" +} diff --git a/site/public/v1/software/better-safe-than-sorry/index.json b/site/public/v1/software/better-safe-than-sorry/index.json new file mode 100644 index 000000000000..28289bfe1c3d --- /dev/null +++ b/site/public/v1/software/better-safe-than-sorry/index.json @@ -0,0 +1,21 @@ +{ + "id": 983, + "slug": "better-safe-than-sorry", + "name": "Better-Safe-Than-Sorry", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Apache Software License 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127485253" + ], + "created_at": "2026-07-10T10:12:39.912630", + "updated_at": "2026-07-10T10:12:39.912630", + "url": "/v1/software/better-safe-than-sorry" +} diff --git a/site/public/v1/software/beyond-compare/index.json b/site/public/v1/software/beyond-compare/index.json new file mode 100644 index 000000000000..4ce90f8f409d --- /dev/null +++ b/site/public/v1/software/beyond-compare/index.json @@ -0,0 +1,19 @@ +{ + "id": 984, + "slug": "beyond-compare", + "name": "Beyond Compare", + "release_date": "1996-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4899956" + ], + "created_at": "2026-07-10T10:12:39.912630", + "updated_at": "2026-07-10T10:12:39.912630", + "url": "/v1/software/beyond-compare" +} diff --git a/site/public/v1/software/beyond-english/index.json b/site/public/v1/software/beyond-english/index.json new file mode 100644 index 000000000000..9cf078a6df3b --- /dev/null +++ b/site/public/v1/software/beyond-english/index.json @@ -0,0 +1,19 @@ +{ + "id": 985, + "slug": "beyond-english", + "name": "Beyond English", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106515669" + ], + "created_at": "2026-07-10T10:12:39.912630", + "updated_at": "2026-07-10T10:12:39.912630", + "url": "/v1/software/beyond-english" +} diff --git a/site/public/v1/software/beyond-maths/index.json b/site/public/v1/software/beyond-maths/index.json new file mode 100644 index 000000000000..67101dcb4288 --- /dev/null +++ b/site/public/v1/software/beyond-maths/index.json @@ -0,0 +1,19 @@ +{ + "id": 986, + "slug": "beyond-maths", + "name": "Beyond Maths", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106515696" + ], + "created_at": "2026-07-10T10:12:39.913647", + "updated_at": "2026-07-10T10:12:39.913647", + "url": "/v1/software/beyond-maths" +} diff --git a/site/public/v1/software/beyond-science/index.json b/site/public/v1/software/beyond-science/index.json new file mode 100644 index 000000000000..8ad31256d5e8 --- /dev/null +++ b/site/public/v1/software/beyond-science/index.json @@ -0,0 +1,19 @@ +{ + "id": 987, + "slug": "beyond-science", + "name": "Beyond Science", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106515718" + ], + "created_at": "2026-07-10T10:12:39.913647", + "updated_at": "2026-07-10T10:12:39.913647", + "url": "/v1/software/beyond-science" +} diff --git a/site/public/v1/software/beyond-tv/index.json b/site/public/v1/software/beyond-tv/index.json new file mode 100644 index 000000000000..a75e40a1a8d7 --- /dev/null +++ b/site/public/v1/software/beyond-tv/index.json @@ -0,0 +1,19 @@ +{ + "id": 988, + "slug": "beyond-tv", + "name": "Beyond TV", + "release_date": "2000-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4900032" + ], + "created_at": "2026-07-10T10:12:39.913647", + "updated_at": "2026-07-10T10:12:39.913647", + "url": "/v1/software/beyond-tv" +} diff --git a/site/public/v1/software/beyz/index.json b/site/public/v1/software/beyz/index.json new file mode 100644 index 000000000000..2e652238943a --- /dev/null +++ b/site/public/v1/software/beyz/index.json @@ -0,0 +1,24 @@ +{ + "id": 989, + "slug": "beyz", + "name": "Beyz", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "web application", + "Google Play", + "iOS", + "cross-platform" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140144398" + ], + "created_at": "2026-07-10T10:12:39.914622", + "updated_at": "2026-07-10T10:12:39.914622", + "url": "/v1/software/beyz" +} diff --git a/site/public/v1/software/bgs-groundhog-desktop/index.json b/site/public/v1/software/bgs-groundhog-desktop/index.json new file mode 100644 index 000000000000..235f59611b6f --- /dev/null +++ b/site/public/v1/software/bgs-groundhog-desktop/index.json @@ -0,0 +1,19 @@ +{ + "id": 990, + "slug": "bgs-groundhog-desktop", + "name": "BGS Groundhog Desktop", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q65082637" + ], + "created_at": "2026-07-10T10:12:39.914622", + "updated_at": "2026-07-10T10:12:39.914622", + "url": "/v1/software/bgs-groundhog-desktop" +} diff --git a/site/public/v1/software/bhuvan/index.json b/site/public/v1/software/bhuvan/index.json new file mode 100644 index 000000000000..32961fe3aa52 --- /dev/null +++ b/site/public/v1/software/bhuvan/index.json @@ -0,0 +1,21 @@ +{ + "id": 991, + "slug": "bhuvan", + "name": "Bhuvan", + "release_date": null, + "developers": [ + "Indian Space Research Organisation" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2900724" + ], + "created_at": "2026-07-10T10:12:39.914622", + "updated_at": "2026-07-10T10:12:39.915570", + "url": "/v1/software/bhuvan" +} diff --git a/site/public/v1/software/biasly/index.json b/site/public/v1/software/biasly/index.json new file mode 100644 index 000000000000..10a90683436a --- /dev/null +++ b/site/public/v1/software/biasly/index.json @@ -0,0 +1,19 @@ +{ + "id": 992, + "slug": "biasly", + "name": "Biasly", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125210523" + ], + "created_at": "2026-07-10T10:12:39.915570", + "updated_at": "2026-07-10T10:12:39.915570", + "url": "/v1/software/biasly" +} diff --git a/site/public/v1/software/bibapp/index.json b/site/public/v1/software/bibapp/index.json new file mode 100644 index 000000000000..38b330e4074c --- /dev/null +++ b/site/public/v1/software/bibapp/index.json @@ -0,0 +1,19 @@ +{ + "id": 993, + "slug": "bibapp", + "name": "BibApp", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084801" + ], + "created_at": "2026-07-10T10:12:39.915570", + "updated_at": "2026-07-10T10:12:39.915570", + "url": "/v1/software/bibapp" +} diff --git a/site/public/v1/software/bibcon/index.json b/site/public/v1/software/bibcon/index.json new file mode 100644 index 000000000000..f0966295af36 --- /dev/null +++ b/site/public/v1/software/bibcon/index.json @@ -0,0 +1,19 @@ +{ + "id": 994, + "slug": "bibcon", + "name": "BIBCON", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087777" + ], + "created_at": "2026-07-10T10:12:39.915570", + "updated_at": "2026-07-10T10:12:39.915570", + "url": "/v1/software/bibcon" +} diff --git a/site/public/v1/software/biber/index.json b/site/public/v1/software/biber/index.json new file mode 100644 index 000000000000..7de103eaad36 --- /dev/null +++ b/site/public/v1/software/biber/index.json @@ -0,0 +1,23 @@ +{ + "id": 995, + "slug": "biber", + "name": "Biber", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "cross-platform" + ], + "programming_languages": [], + "licenses": [ + "Artistic License 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4902993" + ], + "created_at": "2026-07-10T10:12:39.916569", + "updated_at": "2026-07-10T10:12:39.916569", + "url": "/v1/software/biber" +} diff --git a/site/public/v1/software/bibexcel/index.json b/site/public/v1/software/bibexcel/index.json new file mode 100644 index 000000000000..e8aaa7941224 --- /dev/null +++ b/site/public/v1/software/bibexcel/index.json @@ -0,0 +1,19 @@ +{ + "id": 996, + "slug": "bibexcel", + "name": "BibExcel", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084803" + ], + "created_at": "2026-07-10T10:12:39.916569", + "updated_at": "2026-07-10T10:12:39.916569", + "url": "/v1/software/bibexcel" +} diff --git a/site/public/v1/software/bibi/index.json b/site/public/v1/software/bibi/index.json new file mode 100644 index 000000000000..15d03089cec4 --- /dev/null +++ b/site/public/v1/software/bibi/index.json @@ -0,0 +1,19 @@ +{ + "id": 997, + "slug": "bibi", + "name": "BiBi", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q12303372" + ], + "created_at": "2026-07-10T10:12:39.916569", + "updated_at": "2026-07-10T10:12:39.916569", + "url": "/v1/software/bibi" +} diff --git a/site/public/v1/software/bibliogo/index.json b/site/public/v1/software/bibliogo/index.json new file mode 100644 index 000000000000..69abffd0ae84 --- /dev/null +++ b/site/public/v1/software/bibliogo/index.json @@ -0,0 +1,19 @@ +{ + "id": 998, + "slug": "bibliogo", + "name": "Bibliogo", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084804" + ], + "created_at": "2026-07-10T10:12:39.917576", + "updated_at": "2026-07-10T10:12:39.917576", + "url": "/v1/software/bibliogo" +} diff --git a/site/public/v1/software/bibliography-doing-digital-humanities/index.json b/site/public/v1/software/bibliography-doing-digital-humanities/index.json new file mode 100644 index 000000000000..9381d84e0e42 --- /dev/null +++ b/site/public/v1/software/bibliography-doing-digital-humanities/index.json @@ -0,0 +1,19 @@ +{ + "id": 999, + "slug": "bibliography-doing-digital-humanities", + "name": "Bibliography Doing Digital Humanities", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084805" + ], + "created_at": "2026-07-10T10:12:39.917576", + "updated_at": "2026-07-10T10:12:39.917576", + "url": "/v1/software/bibliography-doing-digital-humanities" +} diff --git a/site/public/v1/software/bibliometrix/index.json b/site/public/v1/software/bibliometrix/index.json new file mode 100644 index 000000000000..3cff7d9e7a2f --- /dev/null +++ b/site/public/v1/software/bibliometrix/index.json @@ -0,0 +1,23 @@ +{ + "id": 1000, + "slug": "bibliometrix", + "name": "Bibliometrix", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "R" + ], + "licenses": [ + "GNU General Public License, version 2.0 or later" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28404211" + ], + "created_at": "2026-07-10T10:12:39.917576", + "updated_at": "2026-07-10T10:12:39.917576", + "url": "/v1/software/bibliometrix" +} diff --git a/site/public/v1/software/biblioteca-anatomica/index.json b/site/public/v1/software/biblioteca-anatomica/index.json new file mode 100644 index 000000000000..b6df9f94af41 --- /dev/null +++ b/site/public/v1/software/biblioteca-anatomica/index.json @@ -0,0 +1,19 @@ +{ + "id": 1001, + "slug": "biblioteca-anatomica", + "name": "Biblioteca anatomica", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084806" + ], + "created_at": "2026-07-10T10:12:39.918575", + "updated_at": "2026-07-10T10:12:39.918575", + "url": "/v1/software/biblioteca-anatomica" +} diff --git a/site/public/v1/software/bibtex/index.json b/site/public/v1/software/bibtex/index.json new file mode 100644 index 000000000000..fe3d6116e18a --- /dev/null +++ b/site/public/v1/software/bibtex/index.json @@ -0,0 +1,26 @@ +{ + "id": 1002, + "slug": "bibtex", + "name": "BibTeX", + "release_date": null, + "developers": [ + "Oren Patashnik" + ], + "publishers": [], + "operating_systems": [ + "Unix-like operating system", + "Microsoft Windows" + ], + "programming_languages": [ + "WEB" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8029" + ], + "created_at": "2026-07-10T10:12:39.918575", + "updated_at": "2026-07-10T10:12:39.918575", + "url": "/v1/software/bibtex" +} diff --git a/site/public/v1/software/bibtex2html/index.json b/site/public/v1/software/bibtex2html/index.json new file mode 100644 index 000000000000..d78d8f02754d --- /dev/null +++ b/site/public/v1/software/bibtex2html/index.json @@ -0,0 +1,19 @@ +{ + "id": 1003, + "slug": "bibtex2html", + "name": "bibtex2html", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60918182" + ], + "created_at": "2026-07-10T10:12:39.918575", + "updated_at": "2026-07-10T10:12:39.918575", + "url": "/v1/software/bibtex2html" +} diff --git a/site/public/v1/software/bibtex4word/index.json b/site/public/v1/software/bibtex4word/index.json new file mode 100644 index 000000000000..efb8292093a2 --- /dev/null +++ b/site/public/v1/software/bibtex4word/index.json @@ -0,0 +1,19 @@ +{ + "id": 1004, + "slug": "bibtex4word", + "name": "BibTeX4Word", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q856017" + ], + "created_at": "2026-07-10T10:12:39.919666", + "updated_at": "2026-07-10T10:12:39.919666", + "url": "/v1/software/bibtex4word" +} diff --git a/site/public/v1/software/bibwiki/index.json b/site/public/v1/software/bibwiki/index.json new file mode 100644 index 000000000000..508afe8fb5ec --- /dev/null +++ b/site/public/v1/software/bibwiki/index.json @@ -0,0 +1,24 @@ +{ + "id": 1005, + "slug": "bibwiki", + "name": "BibWiki", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "GNU General Public License, version 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105748768" + ], + "created_at": "2026-07-10T10:12:39.919666", + "updated_at": "2026-07-10T10:12:39.919666", + "url": "/v1/software/bibwiki" +} diff --git a/site/public/v1/software/bic-platform/index.json b/site/public/v1/software/bic-platform/index.json new file mode 100644 index 000000000000..3f99b7015035 --- /dev/null +++ b/site/public/v1/software/bic-platform/index.json @@ -0,0 +1,19 @@ +{ + "id": 1006, + "slug": "bic-platform", + "name": "BIC Platform", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q66768685" + ], + "created_at": "2026-07-10T10:12:39.919666", + "updated_at": "2026-07-10T10:12:39.919666", + "url": "/v1/software/bic-platform" +} diff --git a/site/public/v1/software/bicom-systems/index.json b/site/public/v1/software/bicom-systems/index.json new file mode 100644 index 000000000000..d6a4dc64dfc5 --- /dev/null +++ b/site/public/v1/software/bicom-systems/index.json @@ -0,0 +1,21 @@ +{ + "id": 1007, + "slug": "bicom-systems", + "name": "Bicom Systems", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q24884170" + ], + "created_at": "2026-07-10T10:12:39.919666", + "updated_at": "2026-07-10T10:12:39.919666", + "url": "/v1/software/bicom-systems" +} diff --git a/site/public/v1/software/bielik/index.json b/site/public/v1/software/bielik/index.json new file mode 100644 index 000000000000..f0ee355b8361 --- /dev/null +++ b/site/public/v1/software/bielik/index.json @@ -0,0 +1,21 @@ +{ + "id": 1008, + "slug": "bielik", + "name": "Bielik", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Apache Software License 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q133696013" + ], + "created_at": "2026-07-10T10:12:39.920657", + "updated_at": "2026-07-10T10:12:39.920657", + "url": "/v1/software/bielik" +} diff --git a/site/public/v1/software/bifrost/index.json b/site/public/v1/software/bifrost/index.json new file mode 100644 index 000000000000..b7f683c65d45 --- /dev/null +++ b/site/public/v1/software/bifrost/index.json @@ -0,0 +1,21 @@ +{ + "id": 1009, + "slug": "bifrost", + "name": "Bifrost", + "release_date": "2019-01-01", + "developers": [ + "Autodesk" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110943457" + ], + "created_at": "2026-07-10T10:12:39.920657", + "updated_at": "2026-07-10T10:12:39.920657", + "url": "/v1/software/bifrost" +} diff --git a/site/public/v1/software/big-al-software/index.json b/site/public/v1/software/big-al-software/index.json new file mode 100644 index 000000000000..5da2d8c93922 --- /dev/null +++ b/site/public/v1/software/big-al-software/index.json @@ -0,0 +1,21 @@ +{ + "id": 1010, + "slug": "big-al-software", + "name": "Big Al (software)", + "release_date": "2009-12-22", + "developers": [ + "PowerFX" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q23297255" + ], + "created_at": "2026-07-10T10:12:39.920657", + "updated_at": "2026-07-10T10:12:39.920657", + "url": "/v1/software/big-al-software" +} diff --git a/site/public/v1/software/big-brother/index.json b/site/public/v1/software/big-brother/index.json new file mode 100644 index 000000000000..89e627bc4a80 --- /dev/null +++ b/site/public/v1/software/big-brother/index.json @@ -0,0 +1,19 @@ +{ + "id": 1011, + "slug": "big-brother", + "name": "Big Brother", + "release_date": "1996-11-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q858585" + ], + "created_at": "2026-07-10T10:12:39.921666", + "updated_at": "2026-07-10T10:12:39.921666", + "url": "/v1/software/big-brother" +} diff --git a/site/public/v1/software/big-sister/index.json b/site/public/v1/software/big-sister/index.json new file mode 100644 index 000000000000..84979fa8d4b4 --- /dev/null +++ b/site/public/v1/software/big-sister/index.json @@ -0,0 +1,19 @@ +{ + "id": 1012, + "slug": "big-sister", + "name": "Big Sister", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q858386" + ], + "created_at": "2026-07-10T10:12:39.921666", + "updated_at": "2026-07-10T10:12:39.921666", + "url": "/v1/software/big-sister" +} diff --git a/site/public/v1/software/bigcouch/index.json b/site/public/v1/software/bigcouch/index.json new file mode 100644 index 000000000000..39e1fc48f631 --- /dev/null +++ b/site/public/v1/software/bigcouch/index.json @@ -0,0 +1,25 @@ +{ + "id": 1013, + "slug": "bigcouch", + "name": "BigCouch", + "release_date": null, + "developers": [ + "Cloudant" + ], + "publishers": [], + "operating_systems": [ + "cross-platform" + ], + "programming_languages": [], + "licenses": [ + "Apache License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4904859" + ], + "created_at": "2026-07-10T10:12:39.921666", + "updated_at": "2026-07-10T10:12:39.921666", + "url": "/v1/software/bigcouch" +} diff --git a/site/public/v1/software/bigdataviewer/index.json b/site/public/v1/software/bigdataviewer/index.json new file mode 100644 index 000000000000..3c03cde96f87 --- /dev/null +++ b/site/public/v1/software/bigdataviewer/index.json @@ -0,0 +1,19 @@ +{ + "id": 1014, + "slug": "bigdataviewer", + "name": "BigDataViewer", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113050269" + ], + "created_at": "2026-07-10T10:12:39.921666", + "updated_at": "2026-07-10T10:12:39.921666", + "url": "/v1/software/bigdataviewer" +} diff --git a/site/public/v1/software/bigdl/index.json b/site/public/v1/software/bigdl/index.json new file mode 100644 index 000000000000..8eef11de9eab --- /dev/null +++ b/site/public/v1/software/bigdl/index.json @@ -0,0 +1,19 @@ +{ + "id": 1015, + "slug": "bigdl", + "name": "BigDL", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q39059716" + ], + "created_at": "2026-07-10T10:12:39.922633", + "updated_at": "2026-07-10T10:12:39.922633", + "url": "/v1/software/bigdl" +} diff --git a/site/public/v1/software/bigmarker/index.json b/site/public/v1/software/bigmarker/index.json new file mode 100644 index 000000000000..40905fb67475 --- /dev/null +++ b/site/public/v1/software/bigmarker/index.json @@ -0,0 +1,21 @@ +{ + "id": 1016, + "slug": "bigmarker", + "name": "BigMarker", + "release_date": null, + "developers": [ + "BigMarker" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q20313316" + ], + "created_at": "2026-07-10T10:12:39.922633", + "updated_at": "2026-07-10T10:12:39.922633", + "url": "/v1/software/bigmarker" +} diff --git a/site/public/v1/software/bigquery-data-transfer-service/index.json b/site/public/v1/software/bigquery-data-transfer-service/index.json new file mode 100644 index 000000000000..fdc4a18e672c --- /dev/null +++ b/site/public/v1/software/bigquery-data-transfer-service/index.json @@ -0,0 +1,21 @@ +{ + "id": 1017, + "slug": "bigquery-data-transfer-service", + "name": "BigQuery Data Transfer Service", + "release_date": null, + "developers": [ + "Google" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60022847" + ], + "created_at": "2026-07-10T10:12:39.923635", + "updated_at": "2026-07-10T10:12:39.923635", + "url": "/v1/software/bigquery-data-transfer-service" +} diff --git a/site/public/v1/software/bigquery/index.json b/site/public/v1/software/bigquery/index.json new file mode 100644 index 000000000000..63ba67164101 --- /dev/null +++ b/site/public/v1/software/bigquery/index.json @@ -0,0 +1,21 @@ +{ + "id": 1018, + "slug": "bigquery", + "name": "BigQuery", + "release_date": "2010-05-19", + "developers": [ + "Google" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4904867" + ], + "created_at": "2026-07-10T10:12:39.923635", + "updated_at": "2026-07-10T10:12:39.923635", + "url": "/v1/software/bigquery" +} diff --git a/site/public/v1/software/bijoy-keyboard/index.json b/site/public/v1/software/bijoy-keyboard/index.json new file mode 100644 index 000000000000..eafc69ce002c --- /dev/null +++ b/site/public/v1/software/bijoy-keyboard/index.json @@ -0,0 +1,19 @@ +{ + "id": 1019, + "slug": "bijoy-keyboard", + "name": "Bijoy Keyboard", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106574784" + ], + "created_at": "2026-07-10T10:12:39.923635", + "updated_at": "2026-07-10T10:12:39.923635", + "url": "/v1/software/bijoy-keyboard" +} diff --git a/site/public/v1/software/bilbao-crystallographic-server/index.json b/site/public/v1/software/bilbao-crystallographic-server/index.json new file mode 100644 index 000000000000..9cc3b6efae57 --- /dev/null +++ b/site/public/v1/software/bilbao-crystallographic-server/index.json @@ -0,0 +1,19 @@ +{ + "id": 1020, + "slug": "bilbao-crystallographic-server", + "name": "Bilbao Crystallographic Server", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4907601" + ], + "created_at": "2026-07-10T10:12:39.923635", + "updated_at": "2026-07-10T10:12:39.923635", + "url": "/v1/software/bilbao-crystallographic-server" +} diff --git a/site/public/v1/software/bilby/index.json b/site/public/v1/software/bilby/index.json new file mode 100644 index 000000000000..a8241ac3b428 --- /dev/null +++ b/site/public/v1/software/bilby/index.json @@ -0,0 +1,25 @@ +{ + "id": 1021, + "slug": "bilby", + "name": "Bilby", + "release_date": null, + "developers": [ + "LIGO Scientific Collaboration" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Python" + ], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63968347" + ], + "created_at": "2026-07-10T10:12:39.924622", + "updated_at": "2026-07-10T10:12:39.924622", + "url": "/v1/software/bilby" +} diff --git a/site/public/v1/software/bimx/index.json b/site/public/v1/software/bimx/index.json new file mode 100644 index 000000000000..e3eda15e96c6 --- /dev/null +++ b/site/public/v1/software/bimx/index.json @@ -0,0 +1,23 @@ +{ + "id": 1022, + "slug": "bimx", + "name": "BIMx", + "release_date": null, + "developers": [ + "Graphisoft SE" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q129636" + ], + "created_at": "2026-07-10T10:12:39.924622", + "updated_at": "2026-07-10T10:12:39.924622", + "url": "/v1/software/bimx" +} diff --git a/site/public/v1/software/bin2svg/index.json b/site/public/v1/software/bin2svg/index.json new file mode 100644 index 000000000000..b7615cfa5f32 --- /dev/null +++ b/site/public/v1/software/bin2svg/index.json @@ -0,0 +1,22 @@ +{ + "id": 1023, + "slug": "bin2svg", + "name": "bin2svg", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Python", + "MATLAB" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137602880" + ], + "created_at": "2026-07-10T10:12:39.925647", + "updated_at": "2026-07-10T10:12:39.925647", + "url": "/v1/software/bin2svg" +} diff --git a/site/public/v1/software/bin86/index.json b/site/public/v1/software/bin86/index.json new file mode 100644 index 000000000000..ccbbbdf13c3d --- /dev/null +++ b/site/public/v1/software/bin86/index.json @@ -0,0 +1,19 @@ +{ + "id": 1024, + "slug": "bin86", + "name": "bin86", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62846162" + ], + "created_at": "2026-07-10T10:12:39.925647", + "updated_at": "2026-07-10T10:12:39.925647", + "url": "/v1/software/bin86" +} diff --git a/site/public/v1/software/binary-ninja/index.json b/site/public/v1/software/binary-ninja/index.json new file mode 100644 index 000000000000..35003a7f1f36 --- /dev/null +++ b/site/public/v1/software/binary-ninja/index.json @@ -0,0 +1,21 @@ +{ + "id": 1025, + "slug": "binary-ninja", + "name": "Binary Ninja", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q97738360" + ], + "created_at": "2026-07-10T10:12:39.925647", + "updated_at": "2026-07-10T10:12:39.925647", + "url": "/v1/software/binary-ninja" +} diff --git a/site/public/v1/software/bing-maps-platform/index.json b/site/public/v1/software/bing-maps-platform/index.json new file mode 100644 index 000000000000..64e8999333cd --- /dev/null +++ b/site/public/v1/software/bing-maps-platform/index.json @@ -0,0 +1,23 @@ +{ + "id": 1026, + "slug": "bing-maps-platform", + "name": "Bing Maps Platform", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q151524" + ], + "created_at": "2026-07-10T10:12:39.925647", + "updated_at": "2026-07-10T10:12:39.925647", + "url": "/v1/software/bing-maps-platform" +} diff --git a/site/public/v1/software/bing-mobile/index.json b/site/public/v1/software/bing-mobile/index.json new file mode 100644 index 000000000000..6431f3222aef --- /dev/null +++ b/site/public/v1/software/bing-mobile/index.json @@ -0,0 +1,23 @@ +{ + "id": 1027, + "slug": "bing-mobile", + "name": "Bing Mobile", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4914139" + ], + "created_at": "2026-07-10T10:12:39.926657", + "updated_at": "2026-07-10T10:12:39.926657", + "url": "/v1/software/bing-mobile" +} diff --git a/site/public/v1/software/bing-product-upload/index.json b/site/public/v1/software/bing-product-upload/index.json new file mode 100644 index 000000000000..891b6cd598f5 --- /dev/null +++ b/site/public/v1/software/bing-product-upload/index.json @@ -0,0 +1,21 @@ +{ + "id": 1028, + "slug": "bing-product-upload", + "name": "Bing Product Upload", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4914143" + ], + "created_at": "2026-07-10T10:12:39.926657", + "updated_at": "2026-07-10T10:12:39.926657", + "url": "/v1/software/bing-product-upload" +} diff --git a/site/public/v1/software/bing-shopping/index.json b/site/public/v1/software/bing-shopping/index.json new file mode 100644 index 000000000000..632c5320cdde --- /dev/null +++ b/site/public/v1/software/bing-shopping/index.json @@ -0,0 +1,21 @@ +{ + "id": 1029, + "slug": "bing-shopping", + "name": "Bing Shopping", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2903932" + ], + "created_at": "2026-07-10T10:12:39.926657", + "updated_at": "2026-07-10T10:12:39.926657", + "url": "/v1/software/bing-shopping" +} diff --git a/site/public/v1/software/bing-vision/index.json b/site/public/v1/software/bing-vision/index.json new file mode 100644 index 000000000000..1ede0b66b734 --- /dev/null +++ b/site/public/v1/software/bing-vision/index.json @@ -0,0 +1,19 @@ +{ + "id": 1030, + "slug": "bing-vision", + "name": "Bing Vision", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16976498" + ], + "created_at": "2026-07-10T10:12:39.927651", + "updated_at": "2026-07-10T10:12:39.927651", + "url": "/v1/software/bing-vision" +} diff --git a/site/public/v1/software/bing-xrank/index.json b/site/public/v1/software/bing-xrank/index.json new file mode 100644 index 000000000000..9df02ad3e037 --- /dev/null +++ b/site/public/v1/software/bing-xrank/index.json @@ -0,0 +1,21 @@ +{ + "id": 1031, + "slug": "bing-xrank", + "name": "Bing xRank", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4914162" + ], + "created_at": "2026-07-10T10:12:39.927651", + "updated_at": "2026-07-10T10:12:39.927651", + "url": "/v1/software/bing-xrank" +} diff --git a/site/public/v1/software/bintube/index.json b/site/public/v1/software/bintube/index.json new file mode 100644 index 000000000000..0303ee18a94f --- /dev/null +++ b/site/public/v1/software/bintube/index.json @@ -0,0 +1,21 @@ +{ + "id": 1032, + "slug": "bintube", + "name": "BinTube", + "release_date": "2007-01-01", + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4913763" + ], + "created_at": "2026-07-10T10:12:39.927651", + "updated_at": "2026-07-10T10:12:39.927651", + "url": "/v1/software/bintube" +} diff --git a/site/public/v1/software/biobike/index.json b/site/public/v1/software/biobike/index.json new file mode 100644 index 000000000000..88ac1620b1e7 --- /dev/null +++ b/site/public/v1/software/biobike/index.json @@ -0,0 +1,23 @@ +{ + "id": 1033, + "slug": "biobike", + "name": "BioBIKE", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Common Lisp" + ], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17018761" + ], + "created_at": "2026-07-10T10:12:39.927651", + "updated_at": "2026-07-10T10:12:39.927651", + "url": "/v1/software/biobike" +} diff --git a/site/public/v1/software/biocompute/index.json b/site/public/v1/software/biocompute/index.json new file mode 100644 index 000000000000..f6a7e4339817 --- /dev/null +++ b/site/public/v1/software/biocompute/index.json @@ -0,0 +1,21 @@ +{ + "id": 1034, + "slug": "biocompute", + "name": "BioCompute", + "release_date": null, + "developers": [ + "iTmethods Inc." + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139255637" + ], + "created_at": "2026-07-10T10:12:39.928628", + "updated_at": "2026-07-10T10:12:39.928628", + "url": "/v1/software/biocompute" +} diff --git a/site/public/v1/software/bioconductor-build-system/index.json b/site/public/v1/software/bioconductor-build-system/index.json new file mode 100644 index 000000000000..81fb9f6b4b69 --- /dev/null +++ b/site/public/v1/software/bioconductor-build-system/index.json @@ -0,0 +1,19 @@ +{ + "id": 1035, + "slug": "bioconductor-build-system", + "name": "Bioconductor Build System", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112236535" + ], + "created_at": "2026-07-10T10:12:39.928628", + "updated_at": "2026-07-10T10:12:39.928628", + "url": "/v1/software/bioconductor-build-system" +} diff --git a/site/public/v1/software/bioconductor/index.json b/site/public/v1/software/bioconductor/index.json new file mode 100644 index 000000000000..4b5ba1aa5b5e --- /dev/null +++ b/site/public/v1/software/bioconductor/index.json @@ -0,0 +1,26 @@ +{ + "id": 1036, + "slug": "bioconductor", + "name": "Bioconductor", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [ + "R" + ], + "licenses": [ + "Artistic License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2888953" + ], + "created_at": "2026-07-10T10:12:39.928628", + "updated_at": "2026-07-10T10:12:39.928628", + "url": "/v1/software/bioconductor" +} diff --git a/site/public/v1/software/biocypher/index.json b/site/public/v1/software/biocypher/index.json new file mode 100644 index 000000000000..c1f57b193df4 --- /dev/null +++ b/site/public/v1/software/biocypher/index.json @@ -0,0 +1,23 @@ +{ + "id": 1037, + "slug": "biocypher", + "name": "biocypher", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Python" + ], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135641346" + ], + "created_at": "2026-07-10T10:12:39.929630", + "updated_at": "2026-07-10T10:12:39.929630", + "url": "/v1/software/biocypher" +} diff --git a/site/public/v1/software/bioextract/index.json b/site/public/v1/software/bioextract/index.json new file mode 100644 index 000000000000..55e0db7ef6e4 --- /dev/null +++ b/site/public/v1/software/bioextract/index.json @@ -0,0 +1,19 @@ +{ + "id": 1038, + "slug": "bioextract", + "name": "BioExtract", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4914615" + ], + "created_at": "2026-07-10T10:12:39.929630", + "updated_at": "2026-07-10T10:12:39.929630", + "url": "/v1/software/bioextract" +} diff --git a/site/public/v1/software/bioinformatic-harvester/index.json b/site/public/v1/software/bioinformatic-harvester/index.json new file mode 100644 index 000000000000..1fefb99ffd7e --- /dev/null +++ b/site/public/v1/software/bioinformatic-harvester/index.json @@ -0,0 +1,19 @@ +{ + "id": 1039, + "slug": "bioinformatic-harvester", + "name": "Bioinformatic Harvester", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q864402" + ], + "created_at": "2026-07-10T10:12:39.929630", + "updated_at": "2026-07-10T10:12:39.929630", + "url": "/v1/software/bioinformatic-harvester" +} diff --git a/site/public/v1/software/biolinux/index.json b/site/public/v1/software/biolinux/index.json new file mode 100644 index 000000000000..8bef563282b1 --- /dev/null +++ b/site/public/v1/software/biolinux/index.json @@ -0,0 +1,19 @@ +{ + "id": 1040, + "slug": "biolinux", + "name": "BioLinux", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4914629" + ], + "created_at": "2026-07-10T10:12:39.929630", + "updated_at": "2026-07-10T10:12:39.930639", + "url": "/v1/software/biolinux" +} diff --git a/site/public/v1/software/biomappings/index.json b/site/public/v1/software/biomappings/index.json new file mode 100644 index 000000000000..aee39410aa9f --- /dev/null +++ b/site/public/v1/software/biomappings/index.json @@ -0,0 +1,23 @@ +{ + "id": 1041, + "slug": "biomappings", + "name": "Biomappings", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Python" + ], + "licenses": [ + "Creative Commons CC0 License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111239110" + ], + "created_at": "2026-07-10T10:12:39.930639", + "updated_at": "2026-07-10T10:12:39.930639", + "url": "/v1/software/biomappings" +} diff --git a/site/public/v1/software/biomate-ai/index.json b/site/public/v1/software/biomate-ai/index.json new file mode 100644 index 000000000000..71e037094523 --- /dev/null +++ b/site/public/v1/software/biomate-ai/index.json @@ -0,0 +1,23 @@ +{ + "id": 1042, + "slug": "biomate-ai", + "name": "BioMate AI", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [ + "software as a service" + ], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140074014" + ], + "created_at": "2026-07-10T10:12:39.930639", + "updated_at": "2026-07-10T10:12:39.930639", + "url": "/v1/software/biomate-ai" +} diff --git a/site/public/v1/software/biomodels-database/index.json b/site/public/v1/software/biomodels-database/index.json new file mode 100644 index 000000000000..590ce7491513 --- /dev/null +++ b/site/public/v1/software/biomodels-database/index.json @@ -0,0 +1,25 @@ +{ + "id": 1043, + "slug": "biomodels-database", + "name": "BioModels Database", + "release_date": null, + "developers": [ + "Babraham Institute", + "California Institute of Technology", + "EMBL's European Bioinformatics Institute" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Creative Commons CC0 License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4914638" + ], + "created_at": "2026-07-10T10:12:39.930639", + "updated_at": "2026-07-10T10:12:39.930639", + "url": "/v1/software/biomodels-database" +} diff --git a/site/public/v1/software/biomolecular-object-network-databank/index.json b/site/public/v1/software/biomolecular-object-network-databank/index.json new file mode 100644 index 000000000000..758524efe750 --- /dev/null +++ b/site/public/v1/software/biomolecular-object-network-databank/index.json @@ -0,0 +1,19 @@ +{ + "id": 1044, + "slug": "biomolecular-object-network-databank", + "name": "Biomolecular Object Network Databank", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4915148" + ], + "created_at": "2026-07-10T10:12:39.931654", + "updated_at": "2026-07-10T10:12:39.931654", + "url": "/v1/software/biomolecular-object-network-databank" +} diff --git a/site/public/v1/software/bionerds/index.json b/site/public/v1/software/bionerds/index.json new file mode 100644 index 000000000000..f65e753248b2 --- /dev/null +++ b/site/public/v1/software/bionerds/index.json @@ -0,0 +1,21 @@ +{ + "id": 1045, + "slug": "bionerds", + "name": "bioNerDS", + "release_date": "2012-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "2-clause BSD License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111095540" + ], + "created_at": "2026-07-10T10:12:39.931654", + "updated_at": "2026-07-10T10:12:39.931654", + "url": "/v1/software/bionerds" +} diff --git a/site/public/v1/software/bionty/index.json b/site/public/v1/software/bionty/index.json new file mode 100644 index 000000000000..f6249469407c --- /dev/null +++ b/site/public/v1/software/bionty/index.json @@ -0,0 +1,21 @@ +{ + "id": 1046, + "slug": "bionty", + "name": "bionty", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Python" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135641301" + ], + "created_at": "2026-07-10T10:12:39.931654", + "updated_at": "2026-07-10T10:12:39.931654", + "url": "/v1/software/bionty" +} diff --git a/site/public/v1/software/bionumerics/index.json b/site/public/v1/software/bionumerics/index.json new file mode 100644 index 000000000000..94a12dc8b46c --- /dev/null +++ b/site/public/v1/software/bionumerics/index.json @@ -0,0 +1,23 @@ +{ + "id": 1047, + "slug": "bionumerics", + "name": "BioNumerics", + "release_date": null, + "developers": [ + "Applied Maths" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4914637" + ], + "created_at": "2026-07-10T10:12:39.931654", + "updated_at": "2026-07-10T10:12:39.931654", + "url": "/v1/software/bionumerics" +} diff --git a/site/public/v1/software/bioperl-db/index.json b/site/public/v1/software/bioperl-db/index.json new file mode 100644 index 000000000000..8c21827c2770 --- /dev/null +++ b/site/public/v1/software/bioperl-db/index.json @@ -0,0 +1,19 @@ +{ + "id": 1048, + "slug": "bioperl-db", + "name": "bioperl-db", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28941654" + ], + "created_at": "2026-07-10T10:12:39.932652", + "updated_at": "2026-07-10T10:12:39.932652", + "url": "/v1/software/bioperl-db" +} diff --git a/site/public/v1/software/bioperl-network/index.json b/site/public/v1/software/bioperl-network/index.json new file mode 100644 index 000000000000..7ca38ad6dc17 --- /dev/null +++ b/site/public/v1/software/bioperl-network/index.json @@ -0,0 +1,19 @@ +{ + "id": 1049, + "slug": "bioperl-network", + "name": "bioperl-network", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28941655" + ], + "created_at": "2026-07-10T10:12:39.932652", + "updated_at": "2026-07-10T10:12:39.932652", + "url": "/v1/software/bioperl-network" +} diff --git a/site/public/v1/software/bioperl-run/index.json b/site/public/v1/software/bioperl-run/index.json new file mode 100644 index 000000000000..4fdfe59f9b3b --- /dev/null +++ b/site/public/v1/software/bioperl-run/index.json @@ -0,0 +1,19 @@ +{ + "id": 1050, + "slug": "bioperl-run", + "name": "bioperl-run", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28941657" + ], + "created_at": "2026-07-10T10:12:39.933651", + "updated_at": "2026-07-10T10:12:39.933651", + "url": "/v1/software/bioperl-run" +} diff --git a/site/public/v1/software/bioperl/index.json b/site/public/v1/software/bioperl/index.json new file mode 100644 index 000000000000..fa65868c106c --- /dev/null +++ b/site/public/v1/software/bioperl/index.json @@ -0,0 +1,21 @@ +{ + "id": 1051, + "slug": "bioperl", + "name": "BioPerl", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Artistic License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q912162" + ], + "created_at": "2026-07-10T10:12:39.933651", + "updated_at": "2026-07-10T10:12:39.933651", + "url": "/v1/software/bioperl" +} diff --git a/site/public/v1/software/biophp/index.json b/site/public/v1/software/biophp/index.json new file mode 100644 index 000000000000..f1b0ee2a6de6 --- /dev/null +++ b/site/public/v1/software/biophp/index.json @@ -0,0 +1,21 @@ +{ + "id": 1052, + "slug": "biophp", + "name": "BioPHP", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "PHP" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4914642" + ], + "created_at": "2026-07-10T10:12:39.933651", + "updated_at": "2026-07-10T10:12:39.933651", + "url": "/v1/software/biophp" +} diff --git a/site/public/v1/software/bios/index.json b/site/public/v1/software/bios/index.json new file mode 100644 index 000000000000..8c60efe5e464 --- /dev/null +++ b/site/public/v1/software/bios/index.json @@ -0,0 +1,19 @@ +{ + "id": 1053, + "slug": "bios", + "name": "BIOS", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q226264" + ], + "created_at": "2026-07-10T10:12:39.934571", + "updated_at": "2026-07-10T10:12:39.934571", + "url": "/v1/software/bios" +} diff --git a/site/public/v1/software/bioscope/index.json b/site/public/v1/software/bioscope/index.json new file mode 100644 index 000000000000..93358517723c --- /dev/null +++ b/site/public/v1/software/bioscope/index.json @@ -0,0 +1,19 @@ +{ + "id": 1054, + "slug": "bioscope", + "name": "Bioscope+", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135742213" + ], + "created_at": "2026-07-10T10:12:39.934571", + "updated_at": "2026-07-10T10:12:39.934571", + "url": "/v1/software/bioscope" +} diff --git a/site/public/v1/software/bioszen/index.json b/site/public/v1/software/bioszen/index.json new file mode 100644 index 000000000000..20fc5b85899e --- /dev/null +++ b/site/public/v1/software/bioszen/index.json @@ -0,0 +1,26 @@ +{ + "id": 1055, + "slug": "bioszen", + "name": "BIOSZEN", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [ + "R" + ], + "licenses": [ + "GNU General Public License, version 3.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137772062" + ], + "created_at": "2026-07-10T10:12:39.934571", + "updated_at": "2026-07-10T10:12:39.934571", + "url": "/v1/software/bioszen" +} diff --git a/site/public/v1/software/bird-internet-routing-daemon/index.json b/site/public/v1/software/bird-internet-routing-daemon/index.json new file mode 100644 index 000000000000..70a1f32b4569 --- /dev/null +++ b/site/public/v1/software/bird-internet-routing-daemon/index.json @@ -0,0 +1,23 @@ +{ + "id": 1056, + "slug": "bird-internet-routing-daemon", + "name": "BIRD Internet Routing Daemon", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Unix-like operating system" + ], + "programming_languages": [], + "licenses": [ + "GNU General Public License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4915863" + ], + "created_at": "2026-07-10T10:12:39.934571", + "updated_at": "2026-07-10T10:12:39.934571", + "url": "/v1/software/bird-internet-routing-daemon" +} diff --git a/site/public/v1/software/bird/index.json b/site/public/v1/software/bird/index.json new file mode 100644 index 000000000000..1bcfccb9130e --- /dev/null +++ b/site/public/v1/software/bird/index.json @@ -0,0 +1,19 @@ +{ + "id": 1057, + "slug": "bird", + "name": "Bird", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q55639320" + ], + "created_at": "2026-07-10T10:12:39.935569", + "updated_at": "2026-07-10T10:12:39.935569", + "url": "/v1/software/bird" +} diff --git a/site/public/v1/software/bisque/index.json b/site/public/v1/software/bisque/index.json new file mode 100644 index 000000000000..e282fa38b779 --- /dev/null +++ b/site/public/v1/software/bisque/index.json @@ -0,0 +1,27 @@ +{ + "id": 1058, + "slug": "bisque", + "name": "BisQue", + "release_date": null, + "developers": [ + "Santa Barbara", + "University of California" + ], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [ + "Python" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25339488" + ], + "created_at": "2026-07-10T10:12:39.935569", + "updated_at": "2026-07-10T10:12:39.935569", + "url": "/v1/software/bisque" +} diff --git a/site/public/v1/software/bitalino/index.json b/site/public/v1/software/bitalino/index.json new file mode 100644 index 000000000000..336ce44eff06 --- /dev/null +++ b/site/public/v1/software/bitalino/index.json @@ -0,0 +1,19 @@ +{ + "id": 1059, + "slug": "bitalino", + "name": "BITalino", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28691117" + ], + "created_at": "2026-07-10T10:12:39.935569", + "updated_at": "2026-07-10T10:12:39.935569", + "url": "/v1/software/bitalino" +} diff --git a/site/public/v1/software/bitblinder/index.json b/site/public/v1/software/bitblinder/index.json new file mode 100644 index 000000000000..0b9453d13e30 --- /dev/null +++ b/site/public/v1/software/bitblinder/index.json @@ -0,0 +1,23 @@ +{ + "id": 1060, + "slug": "bitblinder", + "name": "Bitblinder", + "release_date": "2009-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Python" + ], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4918761" + ], + "created_at": "2026-07-10T10:12:39.935569", + "updated_at": "2026-07-10T10:12:39.935569", + "url": "/v1/software/bitblinder" +} diff --git a/site/public/v1/software/bitbucket-data-center/index.json b/site/public/v1/software/bitbucket-data-center/index.json new file mode 100644 index 000000000000..fc84cc446870 --- /dev/null +++ b/site/public/v1/software/bitbucket-data-center/index.json @@ -0,0 +1,28 @@ +{ + "id": 1061, + "slug": "bitbucket-data-center", + "name": "Bitbucket Data Center", + "release_date": null, + "developers": [ + "Atlassian" + ], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [ + "Java" + ], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18392894" + ], + "created_at": "2026-07-10T10:12:39.936576", + "updated_at": "2026-07-10T10:12:39.936576", + "url": "/v1/software/bitbucket-data-center" +} diff --git a/site/public/v1/software/bitcache/index.json b/site/public/v1/software/bitcache/index.json new file mode 100644 index 000000000000..8e875ef0c951 --- /dev/null +++ b/site/public/v1/software/bitcache/index.json @@ -0,0 +1,19 @@ +{ + "id": 1062, + "slug": "bitcache", + "name": "Bitcache", + "release_date": "2018-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28127107" + ], + "created_at": "2026-07-10T10:12:39.936576", + "updated_at": "2026-07-10T10:12:39.936576", + "url": "/v1/software/bitcache" +} diff --git a/site/public/v1/software/bitcasa/index.json b/site/public/v1/software/bitcasa/index.json new file mode 100644 index 000000000000..33e4ff766df4 --- /dev/null +++ b/site/public/v1/software/bitcasa/index.json @@ -0,0 +1,19 @@ +{ + "id": 1063, + "slug": "bitcasa", + "name": "Bitcasa", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4189715" + ], + "created_at": "2026-07-10T10:12:39.936576", + "updated_at": "2026-07-10T10:12:39.936576", + "url": "/v1/software/bitcasa" +} diff --git a/site/public/v1/software/bitcoin-classic/index.json b/site/public/v1/software/bitcoin-classic/index.json new file mode 100644 index 000000000000..acc514d447db --- /dev/null +++ b/site/public/v1/software/bitcoin-classic/index.json @@ -0,0 +1,21 @@ +{ + "id": 1064, + "slug": "bitcoin-classic", + "name": "Bitcoin Classic", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22906775" + ], + "created_at": "2026-07-10T10:12:39.937688", + "updated_at": "2026-07-10T10:12:39.937688", + "url": "/v1/software/bitcoin-classic" +} diff --git a/site/public/v1/software/bitcoin-unlimited/index.json b/site/public/v1/software/bitcoin-unlimited/index.json new file mode 100644 index 000000000000..115e8fb76a9f --- /dev/null +++ b/site/public/v1/software/bitcoin-unlimited/index.json @@ -0,0 +1,19 @@ +{ + "id": 1065, + "slug": "bitcoin-unlimited", + "name": "Bitcoin Unlimited", + "release_date": "2015-12-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28445948" + ], + "created_at": "2026-07-10T10:12:39.937688", + "updated_at": "2026-07-10T10:12:39.937688", + "url": "/v1/software/bitcoin-unlimited" +} diff --git a/site/public/v1/software/bitcoin-xt/index.json b/site/public/v1/software/bitcoin-xt/index.json new file mode 100644 index 000000000000..0947fc712298 --- /dev/null +++ b/site/public/v1/software/bitcoin-xt/index.json @@ -0,0 +1,19 @@ +{ + "id": 1066, + "slug": "bitcoin-xt", + "name": "Bitcoin XT", + "release_date": "2015-08-15", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q20856847" + ], + "created_at": "2026-07-10T10:12:39.937688", + "updated_at": "2026-07-10T10:12:39.937688", + "url": "/v1/software/bitcoin-xt" +} diff --git a/site/public/v1/software/bitdefender-antivirus/index.json b/site/public/v1/software/bitdefender-antivirus/index.json new file mode 100644 index 000000000000..01f1deae4d6a --- /dev/null +++ b/site/public/v1/software/bitdefender-antivirus/index.json @@ -0,0 +1,21 @@ +{ + "id": 1067, + "slug": "bitdefender-antivirus", + "name": "Bitdefender Antivirus", + "release_date": null, + "developers": [ + "Bitdefender" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q15788824" + ], + "created_at": "2026-07-10T10:12:39.938659", + "updated_at": "2026-07-10T10:12:39.938659", + "url": "/v1/software/bitdefender-antivirus" +} diff --git a/site/public/v1/software/bitdefender-internet-security/index.json b/site/public/v1/software/bitdefender-internet-security/index.json new file mode 100644 index 000000000000..2cc6e2be3ec6 --- /dev/null +++ b/site/public/v1/software/bitdefender-internet-security/index.json @@ -0,0 +1,21 @@ +{ + "id": 1068, + "slug": "bitdefender-internet-security", + "name": "Bitdefender Internet Security", + "release_date": null, + "developers": [ + "Bitdefender" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10740239" + ], + "created_at": "2026-07-10T10:12:39.938659", + "updated_at": "2026-07-10T10:12:39.938659", + "url": "/v1/software/bitdefender-internet-security" +} diff --git a/site/public/v1/software/bitdefender-trafficlight/index.json b/site/public/v1/software/bitdefender-trafficlight/index.json new file mode 100644 index 000000000000..b6acf5310e35 --- /dev/null +++ b/site/public/v1/software/bitdefender-trafficlight/index.json @@ -0,0 +1,21 @@ +{ + "id": 1069, + "slug": "bitdefender-trafficlight", + "name": "BitDefender TrafficLight", + "release_date": null, + "developers": [ + "Bitdefender" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3536421" + ], + "created_at": "2026-07-10T10:12:39.938659", + "updated_at": "2026-07-10T10:12:39.938659", + "url": "/v1/software/bitdefender-trafficlight" +} diff --git a/site/public/v1/software/bitext/index.json b/site/public/v1/software/bitext/index.json new file mode 100644 index 000000000000..410130776bb7 --- /dev/null +++ b/site/public/v1/software/bitext/index.json @@ -0,0 +1,19 @@ +{ + "id": 1070, + "slug": "bitext", + "name": "BITEXT", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084809" + ], + "created_at": "2026-07-10T10:12:39.939685", + "updated_at": "2026-07-10T10:12:39.939685", + "url": "/v1/software/bitext" +} diff --git a/site/public/v1/software/bitextor/index.json b/site/public/v1/software/bitextor/index.json new file mode 100644 index 000000000000..25bfec959fe4 --- /dev/null +++ b/site/public/v1/software/bitextor/index.json @@ -0,0 +1,19 @@ +{ + "id": 1071, + "slug": "bitextor", + "name": "Bitextor", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2619312" + ], + "created_at": "2026-07-10T10:12:39.939685", + "updated_at": "2026-07-10T10:12:39.939685", + "url": "/v1/software/bitextor" +} diff --git a/site/public/v1/software/bitfunnel/index.json b/site/public/v1/software/bitfunnel/index.json new file mode 100644 index 000000000000..fccba6428a2e --- /dev/null +++ b/site/public/v1/software/bitfunnel/index.json @@ -0,0 +1,21 @@ +{ + "id": 1072, + "slug": "bitfunnel", + "name": "BitFunnel", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q96373630" + ], + "created_at": "2026-07-10T10:12:39.939685", + "updated_at": "2026-07-10T10:12:39.939685", + "url": "/v1/software/bitfunnel" +} diff --git a/site/public/v1/software/bitlbee-steam/index.json b/site/public/v1/software/bitlbee-steam/index.json new file mode 100644 index 000000000000..ffec4d4ff5ee --- /dev/null +++ b/site/public/v1/software/bitlbee-steam/index.json @@ -0,0 +1,21 @@ +{ + "id": 1073, + "slug": "bitlbee-steam", + "name": "bitlbee-steam", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "GNU General Public License, version 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28941659" + ], + "created_at": "2026-07-10T10:12:39.939685", + "updated_at": "2026-07-10T10:12:39.939685", + "url": "/v1/software/bitlbee-steam" +} diff --git a/site/public/v1/software/bitmarkets/index.json b/site/public/v1/software/bitmarkets/index.json new file mode 100644 index 000000000000..25ba5d491247 --- /dev/null +++ b/site/public/v1/software/bitmarkets/index.json @@ -0,0 +1,25 @@ +{ + "id": 1074, + "slug": "bitmarkets", + "name": "Bitmarkets", + "release_date": "2014-01-01", + "developers": [], + "publishers": [], + "operating_systems": [ + "macOS" + ], + "programming_languages": [ + "Objective-C" + ], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q19892083" + ], + "created_at": "2026-07-10T10:12:39.940654", + "updated_at": "2026-07-10T10:12:39.940654", + "url": "/v1/software/bitmarkets" +} diff --git a/site/public/v1/software/bitmask/index.json b/site/public/v1/software/bitmask/index.json new file mode 100644 index 000000000000..0fa5b651b668 --- /dev/null +++ b/site/public/v1/software/bitmask/index.json @@ -0,0 +1,21 @@ +{ + "id": 1075, + "slug": "bitmask", + "name": "Bitmask", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "GNU General Public License, version 3.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117455964" + ], + "created_at": "2026-07-10T10:12:39.940654", + "updated_at": "2026-07-10T10:12:39.940654", + "url": "/v1/software/bitmask" +} diff --git a/site/public/v1/software/bitmoji/index.json b/site/public/v1/software/bitmoji/index.json new file mode 100644 index 000000000000..9c4b57fa5257 --- /dev/null +++ b/site/public/v1/software/bitmoji/index.json @@ -0,0 +1,19 @@ +{ + "id": 1076, + "slug": "bitmoji", + "name": "Bitmoji", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136760098" + ], + "created_at": "2026-07-10T10:12:39.940654", + "updated_at": "2026-07-10T10:12:39.940654", + "url": "/v1/software/bitmoji" +} diff --git a/site/public/v1/software/bitport/index.json b/site/public/v1/software/bitport/index.json new file mode 100644 index 000000000000..a1e805773dcd --- /dev/null +++ b/site/public/v1/software/bitport/index.json @@ -0,0 +1,19 @@ +{ + "id": 1077, + "slug": "bitport", + "name": "Bitport", + "release_date": "2014-11-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28956420" + ], + "created_at": "2026-07-10T10:12:39.941656", + "updated_at": "2026-07-10T10:12:39.941656", + "url": "/v1/software/bitport" +} diff --git a/site/public/v1/software/bitrocket/index.json b/site/public/v1/software/bitrocket/index.json new file mode 100644 index 000000000000..b64fdab9de44 --- /dev/null +++ b/site/public/v1/software/bitrocket/index.json @@ -0,0 +1,19 @@ +{ + "id": 1078, + "slug": "bitrocket", + "name": "BitRocket", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17187233" + ], + "created_at": "2026-07-10T10:12:39.941656", + "updated_at": "2026-07-10T10:12:39.941656", + "url": "/v1/software/bitrocket" +} diff --git a/site/public/v1/software/bits-on-wheels/index.json b/site/public/v1/software/bits-on-wheels/index.json new file mode 100644 index 000000000000..71ad7bf85b31 --- /dev/null +++ b/site/public/v1/software/bits-on-wheels/index.json @@ -0,0 +1,19 @@ +{ + "id": 1079, + "slug": "bits-on-wheels", + "name": "Bits on Wheels", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4918948" + ], + "created_at": "2026-07-10T10:12:39.941656", + "updated_at": "2026-07-10T10:12:39.941656", + "url": "/v1/software/bits-on-wheels" +} diff --git a/site/public/v1/software/bitshares/index.json b/site/public/v1/software/bitshares/index.json new file mode 100644 index 000000000000..467c9d19e433 --- /dev/null +++ b/site/public/v1/software/bitshares/index.json @@ -0,0 +1,21 @@ +{ + "id": 1080, + "slug": "bitshares", + "name": "BitShares", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q44268550" + ], + "created_at": "2026-07-10T10:12:39.942664", + "updated_at": "2026-07-10T10:12:39.942664", + "url": "/v1/software/bitshares" +} diff --git a/site/public/v1/software/bittorious/index.json b/site/public/v1/software/bittorious/index.json new file mode 100644 index 000000000000..1909a17cb42f --- /dev/null +++ b/site/public/v1/software/bittorious/index.json @@ -0,0 +1,19 @@ +{ + "id": 1081, + "slug": "bittorious", + "name": "BitTorious", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25305290" + ], + "created_at": "2026-07-10T10:12:39.942664", + "updated_at": "2026-07-10T10:12:39.942664", + "url": "/v1/software/bittorious" +} diff --git a/site/public/v1/software/bixby-vision/index.json b/site/public/v1/software/bixby-vision/index.json new file mode 100644 index 000000000000..74a9995cf932 --- /dev/null +++ b/site/public/v1/software/bixby-vision/index.json @@ -0,0 +1,21 @@ +{ + "id": 1082, + "slug": "bixby-vision", + "name": "Bixby Vision", + "release_date": null, + "developers": [ + "Samsung Electronics" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136704415" + ], + "created_at": "2026-07-10T10:12:39.942664", + "updated_at": "2026-07-10T10:12:39.942664", + "url": "/v1/software/bixby-vision" +} diff --git a/site/public/v1/software/bizagi/index.json b/site/public/v1/software/bizagi/index.json new file mode 100644 index 000000000000..c369ae342a82 --- /dev/null +++ b/site/public/v1/software/bizagi/index.json @@ -0,0 +1,21 @@ +{ + "id": 1083, + "slug": "bizagi", + "name": "Bizagi", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Java" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4919356" + ], + "created_at": "2026-07-10T10:12:39.943640", + "updated_at": "2026-07-10T10:12:39.943640", + "url": "/v1/software/bizagi" +} diff --git a/site/public/v1/software/bizhard/index.json b/site/public/v1/software/bizhard/index.json new file mode 100644 index 000000000000..fae07797a5b9 --- /dev/null +++ b/site/public/v1/software/bizhard/index.json @@ -0,0 +1,19 @@ +{ + "id": 1084, + "slug": "bizhard", + "name": "BIZHARD", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16161031" + ], + "created_at": "2026-07-10T10:12:39.943640", + "updated_at": "2026-07-10T10:12:39.943640", + "url": "/v1/software/bizhard" +} diff --git a/site/public/v1/software/bizzdesign-architect/index.json b/site/public/v1/software/bizzdesign-architect/index.json new file mode 100644 index 000000000000..f3ece9a9d494 --- /dev/null +++ b/site/public/v1/software/bizzdesign-architect/index.json @@ -0,0 +1,21 @@ +{ + "id": 1085, + "slug": "bizzdesign-architect", + "name": "Bizzdesign Architect", + "release_date": null, + "developers": [ + "Bizzdesign" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16842567" + ], + "created_at": "2026-07-10T10:12:39.943640", + "updated_at": "2026-07-10T10:12:39.943640", + "url": "/v1/software/bizzdesign-architect" +} diff --git a/site/public/v1/software/bkav/index.json b/site/public/v1/software/bkav/index.json new file mode 100644 index 000000000000..aedcb5bf6f6e --- /dev/null +++ b/site/public/v1/software/bkav/index.json @@ -0,0 +1,19 @@ +{ + "id": 1086, + "slug": "bkav", + "name": "Bkav", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10740313" + ], + "created_at": "2026-07-10T10:12:39.943640", + "updated_at": "2026-07-10T10:12:39.943640", + "url": "/v1/software/bkav" +} diff --git a/site/public/v1/software/bl-ock/index.json b/site/public/v1/software/bl-ock/index.json new file mode 100644 index 000000000000..dda1b440519d --- /dev/null +++ b/site/public/v1/software/bl-ock/index.json @@ -0,0 +1,19 @@ +{ + "id": 1087, + "slug": "bl-ock", + "name": "bl.ock", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084812" + ], + "created_at": "2026-07-10T10:12:39.944631", + "updated_at": "2026-07-10T10:12:39.944631", + "url": "/v1/software/bl-ock" +} diff --git a/site/public/v1/software/blackberry-enterprise-server/index.json b/site/public/v1/software/blackberry-enterprise-server/index.json new file mode 100644 index 000000000000..c3d87d59e6d8 --- /dev/null +++ b/site/public/v1/software/blackberry-enterprise-server/index.json @@ -0,0 +1,21 @@ +{ + "id": 1088, + "slug": "blackberry-enterprise-server", + "name": "BlackBerry Enterprise Server", + "release_date": null, + "developers": [ + "BlackBerry" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2613503" + ], + "created_at": "2026-07-10T10:12:39.944631", + "updated_at": "2026-07-10T10:12:39.944631", + "url": "/v1/software/blackberry-enterprise-server" +} diff --git a/site/public/v1/software/blackberry-world/index.json b/site/public/v1/software/blackberry-world/index.json new file mode 100644 index 000000000000..503ac7caafda --- /dev/null +++ b/site/public/v1/software/blackberry-world/index.json @@ -0,0 +1,23 @@ +{ + "id": 1089, + "slug": "blackberry-world", + "name": "BlackBerry World", + "release_date": null, + "developers": [ + "BlackBerry" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Java" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122381" + ], + "created_at": "2026-07-10T10:12:39.944631", + "updated_at": "2026-07-10T10:12:39.944631", + "url": "/v1/software/blackberry-world" +} diff --git a/site/public/v1/software/blackbird/index.json b/site/public/v1/software/blackbird/index.json new file mode 100644 index 000000000000..461a51778a2c --- /dev/null +++ b/site/public/v1/software/blackbird/index.json @@ -0,0 +1,19 @@ +{ + "id": 1090, + "slug": "blackbird", + "name": "Blackbird", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124838573" + ], + "created_at": "2026-07-10T10:12:39.945633", + "updated_at": "2026-07-10T10:12:39.945633", + "url": "/v1/software/blackbird" +} diff --git a/site/public/v1/software/blackboard-scholar/index.json b/site/public/v1/software/blackboard-scholar/index.json new file mode 100644 index 000000000000..5e8d2ba8f74c --- /dev/null +++ b/site/public/v1/software/blackboard-scholar/index.json @@ -0,0 +1,19 @@ +{ + "id": 1091, + "slug": "blackboard-scholar", + "name": "Blackboard Scholar", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084810" + ], + "created_at": "2026-07-10T10:12:39.945633", + "updated_at": "2026-07-10T10:12:39.945633", + "url": "/v1/software/blackboard-scholar" +} diff --git a/site/public/v1/software/blackfire-profiler/index.json b/site/public/v1/software/blackfire-profiler/index.json new file mode 100644 index 000000000000..5f9f8d750ae9 --- /dev/null +++ b/site/public/v1/software/blackfire-profiler/index.json @@ -0,0 +1,23 @@ +{ + "id": 1092, + "slug": "blackfire-profiler", + "name": "Blackfire Profiler", + "release_date": null, + "developers": [ + "SensioLabs" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Go" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25312823" + ], + "created_at": "2026-07-10T10:12:39.945633", + "updated_at": "2026-07-10T10:12:39.945633", + "url": "/v1/software/blackfire-profiler" +} diff --git a/site/public/v1/software/blackhole/index.json b/site/public/v1/software/blackhole/index.json new file mode 100644 index 000000000000..6d2abe593053 --- /dev/null +++ b/site/public/v1/software/blackhole/index.json @@ -0,0 +1,25 @@ +{ + "id": 1093, + "slug": "blackhole", + "name": "BlackHole", + "release_date": null, + "developers": [ + "Existential Audio" + ], + "publishers": [], + "operating_systems": [ + "macOS" + ], + "programming_languages": [], + "licenses": [ + "GNU General Public License, version 3.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125807721" + ], + "created_at": "2026-07-10T10:12:39.945633", + "updated_at": "2026-07-10T10:12:39.946651", + "url": "/v1/software/blackhole" +} diff --git a/site/public/v1/software/blackpixel-ai/index.json b/site/public/v1/software/blackpixel-ai/index.json new file mode 100644 index 000000000000..81a176080ebf --- /dev/null +++ b/site/public/v1/software/blackpixel-ai/index.json @@ -0,0 +1,23 @@ +{ + "id": 1094, + "slug": "blackpixel-ai", + "name": "BlackPixel AI", + "release_date": null, + "developers": [ + "Black Pixel AI Inc" + ], + "publishers": [ + "Black Pixel AI Inc" + ], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139679696" + ], + "created_at": "2026-07-10T10:12:39.946651", + "updated_at": "2026-07-10T10:12:39.946651", + "url": "/v1/software/blackpixel-ai" +} diff --git a/site/public/v1/software/blackra1n/index.json b/site/public/v1/software/blackra1n/index.json new file mode 100644 index 000000000000..7589b3fcd38e --- /dev/null +++ b/site/public/v1/software/blackra1n/index.json @@ -0,0 +1,23 @@ +{ + "id": 1095, + "slug": "blackra1n", + "name": "blackra1n", + "release_date": null, + "developers": [ + "George Hotz" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4923298" + ], + "created_at": "2026-07-10T10:12:39.946651", + "updated_at": "2026-07-10T10:12:39.946651", + "url": "/v1/software/blackra1n" +} diff --git a/site/public/v1/software/bladerf/index.json b/site/public/v1/software/bladerf/index.json new file mode 100644 index 000000000000..b390155c0162 --- /dev/null +++ b/site/public/v1/software/bladerf/index.json @@ -0,0 +1,21 @@ +{ + "id": 1096, + "slug": "bladerf", + "name": "bladerf", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "VHDL" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28941661" + ], + "created_at": "2026-07-10T10:12:39.946651", + "updated_at": "2026-07-10T10:12:39.946651", + "url": "/v1/software/bladerf" +} diff --git a/site/public/v1/software/blake3/index.json b/site/public/v1/software/blake3/index.json new file mode 100644 index 000000000000..a1ce164b73f4 --- /dev/null +++ b/site/public/v1/software/blake3/index.json @@ -0,0 +1,28 @@ +{ + "id": 1097, + "slug": "blake3", + "name": "BLAKE3", + "release_date": "2019-01-09", + "developers": [ + "Jack O'Connor" + ], + "publishers": [], + "operating_systems": [ + "BSD", + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "Creative Commons CC0 License", + "Apache Software License 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111191355" + ], + "created_at": "2026-07-10T10:12:39.947642", + "updated_at": "2026-07-10T10:12:39.947642", + "url": "/v1/software/blake3" +} diff --git a/site/public/v1/software/blasfeo/index.json b/site/public/v1/software/blasfeo/index.json new file mode 100644 index 000000000000..b8146ff42323 --- /dev/null +++ b/site/public/v1/software/blasfeo/index.json @@ -0,0 +1,23 @@ +{ + "id": 1098, + "slug": "blasfeo", + "name": "BLASFEO", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "assembly language" + ], + "licenses": [ + "2-clause BSD License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134347773" + ], + "created_at": "2026-07-10T10:12:39.947642", + "updated_at": "2026-07-10T10:12:39.947642", + "url": "/v1/software/blasfeo" +} diff --git a/site/public/v1/software/blast-model-checker/index.json b/site/public/v1/software/blast-model-checker/index.json new file mode 100644 index 000000000000..c2b7fa145864 --- /dev/null +++ b/site/public/v1/software/blast-model-checker/index.json @@ -0,0 +1,23 @@ +{ + "id": 1099, + "slug": "blast-model-checker", + "name": "BLAST model checker", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "OCaml" + ], + "licenses": [ + "Apache License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4034701" + ], + "created_at": "2026-07-10T10:12:39.947642", + "updated_at": "2026-07-10T10:12:39.947642", + "url": "/v1/software/blast-model-checker" +} diff --git a/site/public/v1/software/blast2go/index.json b/site/public/v1/software/blast2go/index.json new file mode 100644 index 000000000000..bd45180ed53e --- /dev/null +++ b/site/public/v1/software/blast2go/index.json @@ -0,0 +1,23 @@ +{ + "id": 1100, + "slug": "blast2go", + "name": "Blast2GO", + "release_date": null, + "developers": [ + "BioBam Bioinformatics" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Java" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16335220" + ], + "created_at": "2026-07-10T10:12:39.947642", + "updated_at": "2026-07-10T10:12:39.947642", + "url": "/v1/software/blast2go" +} diff --git a/site/public/v1/software/blat/index.json b/site/public/v1/software/blat/index.json new file mode 100644 index 000000000000..81793dcc11e0 --- /dev/null +++ b/site/public/v1/software/blat/index.json @@ -0,0 +1,21 @@ +{ + "id": 1101, + "slug": "blat", + "name": "BLAT", + "release_date": null, + "developers": [ + "Jim Kent" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4835846" + ], + "created_at": "2026-07-10T10:12:39.948634", + "updated_at": "2026-07-10T10:12:39.948634", + "url": "/v1/software/blat" +} diff --git a/site/public/v1/software/blazeblogger/index.json b/site/public/v1/software/blazeblogger/index.json new file mode 100644 index 000000000000..2200da001f35 --- /dev/null +++ b/site/public/v1/software/blazeblogger/index.json @@ -0,0 +1,19 @@ +{ + "id": 1102, + "slug": "blazeblogger", + "name": "BlazeBlogger", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q104978439" + ], + "created_at": "2026-07-10T10:12:39.948634", + "updated_at": "2026-07-10T10:12:39.948634", + "url": "/v1/software/blazeblogger" +} diff --git a/site/public/v1/software/blazemeter/index.json b/site/public/v1/software/blazemeter/index.json new file mode 100644 index 000000000000..6c5f7a4890f7 --- /dev/null +++ b/site/public/v1/software/blazemeter/index.json @@ -0,0 +1,21 @@ +{ + "id": 1103, + "slug": "blazemeter", + "name": "BlazeMeter", + "release_date": null, + "developers": [ + "Perforce Software" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4925590" + ], + "created_at": "2026-07-10T10:12:39.948634", + "updated_at": "2026-07-10T10:12:39.948634", + "url": "/v1/software/blazemeter" +} diff --git a/site/public/v1/software/bleemcast/index.json b/site/public/v1/software/bleemcast/index.json new file mode 100644 index 000000000000..1465fae0070d --- /dev/null +++ b/site/public/v1/software/bleemcast/index.json @@ -0,0 +1,19 @@ +{ + "id": 1104, + "slug": "bleemcast", + "name": "Bleemcast!", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4925933" + ], + "created_at": "2026-07-10T10:12:39.949646", + "updated_at": "2026-07-10T10:12:39.949646", + "url": "/v1/software/bleemcast" +} diff --git a/site/public/v1/software/blender-3-0-0/index.json b/site/public/v1/software/blender-3-0-0/index.json new file mode 100644 index 000000000000..b4f144a33872 --- /dev/null +++ b/site/public/v1/software/blender-3-0-0/index.json @@ -0,0 +1,19 @@ +{ + "id": 1105, + "slug": "blender-3-0-0", + "name": "Blender 3.0.0", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110041665" + ], + "created_at": "2026-07-10T10:12:39.949646", + "updated_at": "2026-07-10T10:12:39.949646", + "url": "/v1/software/blender-3-0-0" +} diff --git a/site/public/v1/software/blender-osm/index.json b/site/public/v1/software/blender-osm/index.json new file mode 100644 index 000000000000..197c0f959873 --- /dev/null +++ b/site/public/v1/software/blender-osm/index.json @@ -0,0 +1,19 @@ +{ + "id": 1106, + "slug": "blender-osm", + "name": "blender-osm", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q104783553" + ], + "created_at": "2026-07-10T10:12:39.949646", + "updated_at": "2026-07-10T10:12:39.949646", + "url": "/v1/software/blender-osm" +} diff --git a/site/public/v1/software/blender-publisher/index.json b/site/public/v1/software/blender-publisher/index.json new file mode 100644 index 000000000000..a2b2712781f7 --- /dev/null +++ b/site/public/v1/software/blender-publisher/index.json @@ -0,0 +1,19 @@ +{ + "id": 1107, + "slug": "blender-publisher", + "name": "Blender Publisher", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q9659116" + ], + "created_at": "2026-07-10T10:12:39.950649", + "updated_at": "2026-07-10T10:12:39.950649", + "url": "/v1/software/blender-publisher" +} diff --git a/site/public/v1/software/blendr/index.json b/site/public/v1/software/blendr/index.json new file mode 100644 index 000000000000..f65e4af238ff --- /dev/null +++ b/site/public/v1/software/blendr/index.json @@ -0,0 +1,21 @@ +{ + "id": 1108, + "slug": "blendr", + "name": "Blendr", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "iOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4926023" + ], + "created_at": "2026-07-10T10:12:39.950649", + "updated_at": "2026-07-10T10:12:39.950649", + "url": "/v1/software/blendr" +} diff --git a/site/public/v1/software/blindspot/index.json b/site/public/v1/software/blindspot/index.json new file mode 100644 index 000000000000..6adde094b510 --- /dev/null +++ b/site/public/v1/software/blindspot/index.json @@ -0,0 +1,19 @@ +{ + "id": 1109, + "slug": "blindspot", + "name": "BLINDSPOT", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q29364641" + ], + "created_at": "2026-07-10T10:12:39.950649", + "updated_at": "2026-07-10T10:12:39.950649", + "url": "/v1/software/blindspot" +} diff --git a/site/public/v1/software/blinkentools/index.json b/site/public/v1/software/blinkentools/index.json new file mode 100644 index 000000000000..2c34a23f6f89 --- /dev/null +++ b/site/public/v1/software/blinkentools/index.json @@ -0,0 +1,19 @@ +{ + "id": 1110, + "slug": "blinkentools", + "name": "blinkentools", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065500" + ], + "created_at": "2026-07-10T10:12:39.951673", + "updated_at": "2026-07-10T10:12:39.951673", + "url": "/v1/software/blinkentools" +} diff --git a/site/public/v1/software/blis/index.json b/site/public/v1/software/blis/index.json new file mode 100644 index 000000000000..05e4b888e6c1 --- /dev/null +++ b/site/public/v1/software/blis/index.json @@ -0,0 +1,21 @@ +{ + "id": 1111, + "slug": "blis", + "name": "BLIS", + "release_date": null, + "developers": [ + "Field Garritt Van Zee" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q65087866" + ], + "created_at": "2026-07-10T10:12:39.951673", + "updated_at": "2026-07-10T10:12:39.951673", + "url": "/v1/software/blis" +} diff --git a/site/public/v1/software/blixnex/index.json b/site/public/v1/software/blixnex/index.json new file mode 100644 index 000000000000..c4275fce4794 --- /dev/null +++ b/site/public/v1/software/blixnex/index.json @@ -0,0 +1,19 @@ +{ + "id": 1112, + "slug": "blixnex", + "name": "BlixNex", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139831117" + ], + "created_at": "2026-07-10T10:12:39.951673", + "updated_at": "2026-07-10T10:12:39.951673", + "url": "/v1/software/blixnex" +} diff --git a/site/public/v1/software/blktrace/index.json b/site/public/v1/software/blktrace/index.json new file mode 100644 index 000000000000..77fd347ec6c0 --- /dev/null +++ b/site/public/v1/software/blktrace/index.json @@ -0,0 +1,19 @@ +{ + "id": 1113, + "slug": "blktrace", + "name": "blktrace", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60916917" + ], + "created_at": "2026-07-10T10:12:39.952638", + "updated_at": "2026-07-10T10:12:39.952638", + "url": "/v1/software/blktrace" +} diff --git a/site/public/v1/software/bllip-parser/index.json b/site/public/v1/software/bllip-parser/index.json new file mode 100644 index 000000000000..c681eae4a87a --- /dev/null +++ b/site/public/v1/software/bllip-parser/index.json @@ -0,0 +1,19 @@ +{ + "id": 1114, + "slug": "bllip-parser", + "name": "BLLIP Parser", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084811" + ], + "created_at": "2026-07-10T10:12:39.952638", + "updated_at": "2026-07-10T10:12:39.952638", + "url": "/v1/software/bllip-parser" +} diff --git a/site/public/v1/software/blocks/index.json b/site/public/v1/software/blocks/index.json new file mode 100644 index 000000000000..ba24d6da56a6 --- /dev/null +++ b/site/public/v1/software/blocks/index.json @@ -0,0 +1,19 @@ +{ + "id": 1115, + "slug": "blocks", + "name": "blocks", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28941664" + ], + "created_at": "2026-07-10T10:12:39.952638", + "updated_at": "2026-07-10T10:12:39.952638", + "url": "/v1/software/blocks" +} diff --git a/site/public/v1/software/blockstack/index.json b/site/public/v1/software/blockstack/index.json new file mode 100644 index 000000000000..0bc6d497a947 --- /dev/null +++ b/site/public/v1/software/blockstack/index.json @@ -0,0 +1,19 @@ +{ + "id": 1116, + "slug": "blockstack", + "name": "Blockstack", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q23680087" + ], + "created_at": "2026-07-10T10:12:39.953644", + "updated_at": "2026-07-10T10:12:39.953644", + "url": "/v1/software/blockstack" +} diff --git a/site/public/v1/software/blocul-meu/index.json b/site/public/v1/software/blocul-meu/index.json new file mode 100644 index 000000000000..027b3b1aa323 --- /dev/null +++ b/site/public/v1/software/blocul-meu/index.json @@ -0,0 +1,19 @@ +{ + "id": 1117, + "slug": "blocul-meu", + "name": "Blocul Meu", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139859932" + ], + "created_at": "2026-07-10T10:12:39.953644", + "updated_at": "2026-07-10T10:12:39.953644", + "url": "/v1/software/blocul-meu" +} diff --git a/site/public/v1/software/blog-analysis-toolkit-bat/index.json b/site/public/v1/software/blog-analysis-toolkit-bat/index.json new file mode 100644 index 000000000000..1a38c22c51c5 --- /dev/null +++ b/site/public/v1/software/blog-analysis-toolkit-bat/index.json @@ -0,0 +1,19 @@ +{ + "id": 1118, + "slug": "blog-analysis-toolkit-bat", + "name": "Blog Analysis Toolkit (BAT)", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084813" + ], + "created_at": "2026-07-10T10:12:39.953644", + "updated_at": "2026-07-10T10:12:39.953644", + "url": "/v1/software/blog-analysis-toolkit-bat" +} diff --git a/site/public/v1/software/bloglovin/index.json b/site/public/v1/software/bloglovin/index.json new file mode 100644 index 000000000000..a7c138baf562 --- /dev/null +++ b/site/public/v1/software/bloglovin/index.json @@ -0,0 +1,19 @@ +{ + "id": 1119, + "slug": "bloglovin", + "name": "Bloglovin'", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11961607" + ], + "created_at": "2026-07-10T10:12:39.954632", + "updated_at": "2026-07-10T10:12:39.954632", + "url": "/v1/software/bloglovin" +} diff --git a/site/public/v1/software/blogtk/index.json b/site/public/v1/software/blogtk/index.json new file mode 100644 index 000000000000..e0ea320b20d2 --- /dev/null +++ b/site/public/v1/software/blogtk/index.json @@ -0,0 +1,19 @@ +{ + "id": 1120, + "slug": "blogtk", + "name": "BloGTK", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5730274" + ], + "created_at": "2026-07-10T10:12:39.954632", + "updated_at": "2026-07-10T10:12:39.954632", + "url": "/v1/software/blogtk" +} diff --git a/site/public/v1/software/blohg-tumblelog/index.json b/site/public/v1/software/blohg-tumblelog/index.json new file mode 100644 index 000000000000..5a4f7f59118a --- /dev/null +++ b/site/public/v1/software/blohg-tumblelog/index.json @@ -0,0 +1,21 @@ +{ + "id": 1121, + "slug": "blohg-tumblelog", + "name": "blohg-tumblelog", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "GNU General Public License, version 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28941670" + ], + "created_at": "2026-07-10T10:12:39.954632", + "updated_at": "2026-07-10T10:12:39.954632", + "url": "/v1/software/blohg-tumblelog" +} diff --git a/site/public/v1/software/blohg/index.json b/site/public/v1/software/blohg/index.json new file mode 100644 index 000000000000..25f2cf24f626 --- /dev/null +++ b/site/public/v1/software/blohg/index.json @@ -0,0 +1,21 @@ +{ + "id": 1122, + "slug": "blohg", + "name": "blohg", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "GNU General Public License, version 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28941668" + ], + "created_at": "2026-07-10T10:12:39.955649", + "updated_at": "2026-07-10T10:12:39.955649", + "url": "/v1/software/blohg" +} diff --git a/site/public/v1/software/bloodspilot-client/index.json b/site/public/v1/software/bloodspilot-client/index.json new file mode 100644 index 000000000000..f9999bc647c5 --- /dev/null +++ b/site/public/v1/software/bloodspilot-client/index.json @@ -0,0 +1,19 @@ +{ + "id": 1123, + "slug": "bloodspilot-client", + "name": "BloodsPilot Client", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136562911" + ], + "created_at": "2026-07-10T10:12:39.955649", + "updated_at": "2026-07-10T10:12:39.955649", + "url": "/v1/software/bloodspilot-client" +} diff --git a/site/public/v1/software/bloodspilot-xpilot-fxi-server/index.json b/site/public/v1/software/bloodspilot-xpilot-fxi-server/index.json new file mode 100644 index 000000000000..44ce2c13624d --- /dev/null +++ b/site/public/v1/software/bloodspilot-xpilot-fxi-server/index.json @@ -0,0 +1,19 @@ +{ + "id": 1124, + "slug": "bloodspilot-xpilot-fxi-server", + "name": "BloodsPilot XPilot fxi Server", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136562915" + ], + "created_at": "2026-07-10T10:12:39.955649", + "updated_at": "2026-07-10T10:12:39.955649", + "url": "/v1/software/bloodspilot-xpilot-fxi-server" +} diff --git a/site/public/v1/software/bloom-fm/index.json b/site/public/v1/software/bloom-fm/index.json new file mode 100644 index 000000000000..42e4922a248e --- /dev/null +++ b/site/public/v1/software/bloom-fm/index.json @@ -0,0 +1,21 @@ +{ + "id": 1125, + "slug": "bloom-fm", + "name": "Bloom.fm", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "iOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4928136" + ], + "created_at": "2026-07-10T10:12:39.956626", + "updated_at": "2026-07-10T10:12:39.956626", + "url": "/v1/software/bloom-fm" +} diff --git a/site/public/v1/software/bloom/index.json b/site/public/v1/software/bloom/index.json new file mode 100644 index 000000000000..e2bc73cf7505 --- /dev/null +++ b/site/public/v1/software/bloom/index.json @@ -0,0 +1,21 @@ +{ + "id": 1126, + "slug": "bloom", + "name": "Bloom", + "release_date": "2008-10-07", + "developers": [ + "Brian Eno" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4928152" + ], + "created_at": "2026-07-10T10:12:39.956626", + "updated_at": "2026-07-10T10:12:39.956626", + "url": "/v1/software/bloom" +} diff --git a/site/public/v1/software/bloomba/index.json b/site/public/v1/software/bloomba/index.json new file mode 100644 index 000000000000..0cec32992505 --- /dev/null +++ b/site/public/v1/software/bloomba/index.json @@ -0,0 +1,21 @@ +{ + "id": 1127, + "slug": "bloomba", + "name": "Bloomba", + "release_date": null, + "developers": [ + "Stata Labs" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4928184" + ], + "created_at": "2026-07-10T10:12:39.956626", + "updated_at": "2026-07-10T10:12:39.956626", + "url": "/v1/software/bloomba" +} diff --git a/site/public/v1/software/blosc-2/index.json b/site/public/v1/software/blosc-2/index.json new file mode 100644 index 000000000000..3d0386945864 --- /dev/null +++ b/site/public/v1/software/blosc-2/index.json @@ -0,0 +1,21 @@ +{ + "id": 1128, + "slug": "blosc-2", + "name": "blosc-2", + "release_date": null, + "developers": [ + "Francesc Alted" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q119786053" + ], + "created_at": "2026-07-10T10:12:39.956626", + "updated_at": "2026-07-10T10:12:39.956626", + "url": "/v1/software/blosc-2" +} diff --git a/site/public/v1/software/blue-moon-rendering-tools/index.json b/site/public/v1/software/blue-moon-rendering-tools/index.json new file mode 100644 index 000000000000..1bf4e4021db8 --- /dev/null +++ b/site/public/v1/software/blue-moon-rendering-tools/index.json @@ -0,0 +1,21 @@ +{ + "id": 1129, + "slug": "blue-moon-rendering-tools", + "name": "Blue Moon Rendering Tools", + "release_date": null, + "developers": [ + "Larry Israel Gritz" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q885785" + ], + "created_at": "2026-07-10T10:12:39.957634", + "updated_at": "2026-07-10T10:12:39.957634", + "url": "/v1/software/blue-moon-rendering-tools" +} diff --git a/site/public/v1/software/bluebeam-revu/index.json b/site/public/v1/software/bluebeam-revu/index.json new file mode 100644 index 000000000000..ada33b14fcbc --- /dev/null +++ b/site/public/v1/software/bluebeam-revu/index.json @@ -0,0 +1,21 @@ +{ + "id": 1130, + "slug": "bluebeam-revu", + "name": "Bluebeam Revu", + "release_date": null, + "developers": [ + "Bluebeam Software, Inc." + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16843510" + ], + "created_at": "2026-07-10T10:12:39.957634", + "updated_at": "2026-07-10T10:12:39.957634", + "url": "/v1/software/bluebeam-revu" +} diff --git a/site/public/v1/software/bluedevil/index.json b/site/public/v1/software/bluedevil/index.json new file mode 100644 index 000000000000..6cc7a483dc93 --- /dev/null +++ b/site/public/v1/software/bluedevil/index.json @@ -0,0 +1,19 @@ +{ + "id": 1131, + "slug": "bluedevil", + "name": "bluedevil", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131147686" + ], + "created_at": "2026-07-10T10:12:39.957634", + "updated_at": "2026-07-10T10:12:39.957634", + "url": "/v1/software/bluedevil" +} diff --git a/site/public/v1/software/bluedragon/index.json b/site/public/v1/software/bluedragon/index.json new file mode 100644 index 000000000000..51feb2ced84d --- /dev/null +++ b/site/public/v1/software/bluedragon/index.json @@ -0,0 +1,19 @@ +{ + "id": 1132, + "slug": "bluedragon", + "name": "BlueDragon", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4928753" + ], + "created_at": "2026-07-10T10:12:39.958646", + "updated_at": "2026-07-10T10:12:39.958646", + "url": "/v1/software/bluedragon" +} diff --git a/site/public/v1/software/blueinvoice/index.json b/site/public/v1/software/blueinvoice/index.json new file mode 100644 index 000000000000..915dfb109fbe --- /dev/null +++ b/site/public/v1/software/blueinvoice/index.json @@ -0,0 +1,19 @@ +{ + "id": 1133, + "slug": "blueinvoice", + "name": "BlueInvoice", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140051724" + ], + "created_at": "2026-07-10T10:12:39.958646", + "updated_at": "2026-07-10T10:12:39.958646", + "url": "/v1/software/blueinvoice" +} diff --git a/site/public/v1/software/bluenog/index.json b/site/public/v1/software/bluenog/index.json new file mode 100644 index 000000000000..824c5f9ad161 --- /dev/null +++ b/site/public/v1/software/bluenog/index.json @@ -0,0 +1,19 @@ +{ + "id": 1134, + "slug": "bluenog", + "name": "Bluenog", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4930386" + ], + "created_at": "2026-07-10T10:12:39.958646", + "updated_at": "2026-07-10T10:12:39.958646", + "url": "/v1/software/bluenog" +} diff --git a/site/public/v1/software/bluesky-statistics/index.json b/site/public/v1/software/bluesky-statistics/index.json new file mode 100644 index 000000000000..b90495da353a --- /dev/null +++ b/site/public/v1/software/bluesky-statistics/index.json @@ -0,0 +1,23 @@ +{ + "id": 1135, + "slug": "bluesky-statistics", + "name": "BlueSky Statistics", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "macOS" + ], + "programming_languages": [ + "R" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117034585" + ], + "created_at": "2026-07-10T10:12:39.959626", + "updated_at": "2026-07-10T10:12:39.959626", + "url": "/v1/software/bluesky-statistics" +} diff --git a/site/public/v1/software/bluesoleil/index.json b/site/public/v1/software/bluesoleil/index.json new file mode 100644 index 000000000000..eb6d131df037 --- /dev/null +++ b/site/public/v1/software/bluesoleil/index.json @@ -0,0 +1,21 @@ +{ + "id": 1136, + "slug": "bluesoleil", + "name": "BlueSoleil", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1749530" + ], + "created_at": "2026-07-10T10:12:39.959626", + "updated_at": "2026-07-10T10:12:39.959626", + "url": "/v1/software/bluesoleil" +} diff --git a/site/public/v1/software/bluetail/index.json b/site/public/v1/software/bluetail/index.json new file mode 100644 index 000000000000..8ab115252347 --- /dev/null +++ b/site/public/v1/software/bluetail/index.json @@ -0,0 +1,19 @@ +{ + "id": 1137, + "slug": "bluetail", + "name": "Bluetail", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139494334" + ], + "created_at": "2026-07-10T10:12:39.959626", + "updated_at": "2026-07-10T10:12:39.959626", + "url": "/v1/software/bluetail" +} diff --git a/site/public/v1/software/bluetooth-file-exchange/index.json b/site/public/v1/software/bluetooth-file-exchange/index.json new file mode 100644 index 000000000000..7c90f6e639d5 --- /dev/null +++ b/site/public/v1/software/bluetooth-file-exchange/index.json @@ -0,0 +1,19 @@ +{ + "id": 1138, + "slug": "bluetooth-file-exchange", + "name": "Bluetooth File Exchange", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q420959" + ], + "created_at": "2026-07-10T10:12:39.960641", + "updated_at": "2026-07-10T10:12:39.960641", + "url": "/v1/software/bluetooth-file-exchange" +} diff --git a/site/public/v1/software/bluez-alsa/index.json b/site/public/v1/software/bluez-alsa/index.json new file mode 100644 index 000000000000..a2edfa5f6d19 --- /dev/null +++ b/site/public/v1/software/bluez-alsa/index.json @@ -0,0 +1,21 @@ +{ + "id": 1139, + "slug": "bluez-alsa", + "name": "bluez-alsa", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28941672" + ], + "created_at": "2026-07-10T10:12:39.960641", + "updated_at": "2026-07-10T10:12:39.960641", + "url": "/v1/software/bluez-alsa" +} diff --git a/site/public/v1/software/bmake/index.json b/site/public/v1/software/bmake/index.json new file mode 100644 index 000000000000..8e8788c04eeb --- /dev/null +++ b/site/public/v1/software/bmake/index.json @@ -0,0 +1,19 @@ +{ + "id": 1140, + "slug": "bmake", + "name": "bmake", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62851379" + ], + "created_at": "2026-07-10T10:12:39.960641", + "updated_at": "2026-07-10T10:12:39.960641", + "url": "/v1/software/bmake" +} diff --git a/site/public/v1/software/bmc-control-m/index.json b/site/public/v1/software/bmc-control-m/index.json new file mode 100644 index 000000000000..05d4663c6db5 --- /dev/null +++ b/site/public/v1/software/bmc-control-m/index.json @@ -0,0 +1,19 @@ +{ + "id": 1141, + "slug": "bmc-control-m", + "name": "BMC Control-M", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4835944" + ], + "created_at": "2026-07-10T10:12:39.961642", + "updated_at": "2026-07-10T10:12:39.961642", + "url": "/v1/software/bmc-control-m" +} diff --git a/site/public/v1/software/bmc-remedy-action-request-system/index.json b/site/public/v1/software/bmc-remedy-action-request-system/index.json new file mode 100644 index 000000000000..640ef89c5988 --- /dev/null +++ b/site/public/v1/software/bmc-remedy-action-request-system/index.json @@ -0,0 +1,22 @@ +{ + "id": 1142, + "slug": "bmc-remedy-action-request-system", + "name": "BMC Remedy Action Request System", + "release_date": null, + "developers": [ + "Remedy Corp", + "BMC Software" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q492344" + ], + "created_at": "2026-07-10T10:12:39.961642", + "updated_at": "2026-07-10T10:12:39.961642", + "url": "/v1/software/bmc-remedy-action-request-system" +} diff --git a/site/public/v1/software/bmdfm/index.json b/site/public/v1/software/bmdfm/index.json new file mode 100644 index 000000000000..2a12874e153a --- /dev/null +++ b/site/public/v1/software/bmdfm/index.json @@ -0,0 +1,19 @@ +{ + "id": 1143, + "slug": "bmdfm", + "name": "BMDFM", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4835952" + ], + "created_at": "2026-07-10T10:12:39.961642", + "updated_at": "2026-07-10T10:12:39.961642", + "url": "/v1/software/bmdfm" +} diff --git a/site/public/v1/software/bmdp/index.json b/site/public/v1/software/bmdp/index.json new file mode 100644 index 000000000000..0bd4d85c369e --- /dev/null +++ b/site/public/v1/software/bmdp/index.json @@ -0,0 +1,19 @@ +{ + "id": 1144, + "slug": "bmdp", + "name": "BMDP", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2468467" + ], + "created_at": "2026-07-10T10:12:39.962662", + "updated_at": "2026-07-10T10:12:39.962662", + "url": "/v1/software/bmdp" +} diff --git a/site/public/v1/software/bnaber/index.json b/site/public/v1/software/bnaber/index.json new file mode 100644 index 000000000000..af6156b14a08 --- /dev/null +++ b/site/public/v1/software/bnaber/index.json @@ -0,0 +1,21 @@ +{ + "id": 1145, + "slug": "bnaber", + "name": "BNAber", + "release_date": null, + "developers": [ + "Sanford Burnham Prebys Medical Discovery Institute" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16335155" + ], + "created_at": "2026-07-10T10:12:39.962662", + "updated_at": "2026-07-10T10:12:39.962662", + "url": "/v1/software/bnaber" +} diff --git a/site/public/v1/software/bny-nexen/index.json b/site/public/v1/software/bny-nexen/index.json new file mode 100644 index 000000000000..2314ef62c293 --- /dev/null +++ b/site/public/v1/software/bny-nexen/index.json @@ -0,0 +1,19 @@ +{ + "id": 1146, + "slug": "bny-nexen", + "name": "BNY NEXEN", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q30608106" + ], + "created_at": "2026-07-10T10:12:39.962662", + "updated_at": "2026-07-10T10:12:39.962662", + "url": "/v1/software/bny-nexen" +} diff --git a/site/public/v1/software/boats-animator/index.json b/site/public/v1/software/boats-animator/index.json new file mode 100644 index 000000000000..5b4a3133f7af --- /dev/null +++ b/site/public/v1/software/boats-animator/index.json @@ -0,0 +1,26 @@ +{ + "id": 1147, + "slug": "boats-animator", + "name": "Boats Animator", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "macOS", + "Linux distribution", + "Mac operating system", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "GNU General Public License, version 3.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120006002" + ], + "created_at": "2026-07-10T10:12:39.962662", + "updated_at": "2026-07-10T10:12:39.962662", + "url": "/v1/software/boats-animator" +} diff --git a/site/public/v1/software/bob-came-in-pieces/index.json b/site/public/v1/software/bob-came-in-pieces/index.json new file mode 100644 index 000000000000..b41cdd1cc945 --- /dev/null +++ b/site/public/v1/software/bob-came-in-pieces/index.json @@ -0,0 +1,22 @@ +{ + "id": 1148, + "slug": "bob-came-in-pieces", + "name": "Bob Came in Pieces", + "release_date": "2010-01-22", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [ + "puzzle video game", + "action game" + ], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q119952229" + ], + "created_at": "2026-07-10T10:12:39.963660", + "updated_at": "2026-07-10T10:12:39.963660", + "url": "/v1/software/bob-came-in-pieces" +} diff --git a/site/public/v1/software/bodypaint-3d/index.json b/site/public/v1/software/bodypaint-3d/index.json new file mode 100644 index 000000000000..6202eaba754d --- /dev/null +++ b/site/public/v1/software/bodypaint-3d/index.json @@ -0,0 +1,19 @@ +{ + "id": 1149, + "slug": "bodypaint-3d", + "name": "BodyPaint 3D", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4035255" + ], + "created_at": "2026-07-10T10:12:39.963660", + "updated_at": "2026-07-10T10:12:39.963660", + "url": "/v1/software/bodypaint-3d" +} diff --git a/site/public/v1/software/bolt-q28452141/index.json b/site/public/v1/software/bolt-q28452141/index.json new file mode 100644 index 000000000000..5c61ba8144ce --- /dev/null +++ b/site/public/v1/software/bolt-q28452141/index.json @@ -0,0 +1,21 @@ +{ + "id": 1150, + "slug": "bolt-q28452141", + "name": "Bolt", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Creative Commons license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28452141" + ], + "created_at": "2026-07-10T10:12:39.964637", + "updated_at": "2026-07-10T10:12:39.964637", + "url": "/v1/software/bolt-q28452141" +} diff --git a/site/public/v1/software/bolt/index.json b/site/public/v1/software/bolt/index.json new file mode 100644 index 000000000000..014de1773e21 --- /dev/null +++ b/site/public/v1/software/bolt/index.json @@ -0,0 +1,21 @@ +{ + "id": 1151, + "slug": "bolt", + "name": "Bolt", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Java" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2558647" + ], + "created_at": "2026-07-10T10:12:39.964637", + "updated_at": "2026-07-10T10:12:39.964637", + "url": "/v1/software/bolt" +} diff --git a/site/public/v1/software/bombusmod/index.json b/site/public/v1/software/bombusmod/index.json new file mode 100644 index 000000000000..ab54cbff3816 --- /dev/null +++ b/site/public/v1/software/bombusmod/index.json @@ -0,0 +1,21 @@ +{ + "id": 1152, + "slug": "bombusmod", + "name": "Bombusmod", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Java" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2173499" + ], + "created_at": "2026-07-10T10:12:39.964637", + "updated_at": "2026-07-10T10:12:39.964637", + "url": "/v1/software/bombusmod" +} diff --git a/site/public/v1/software/bomgar/index.json b/site/public/v1/software/bomgar/index.json new file mode 100644 index 000000000000..b55f19730add --- /dev/null +++ b/site/public/v1/software/bomgar/index.json @@ -0,0 +1,19 @@ +{ + "id": 1153, + "slug": "bomgar", + "name": "Bomgar", + "release_date": "2003-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4940859" + ], + "created_at": "2026-07-10T10:12:39.964637", + "updated_at": "2026-07-10T10:12:39.964637", + "url": "/v1/software/bomgar" +} diff --git a/site/public/v1/software/bonanza/index.json b/site/public/v1/software/bonanza/index.json new file mode 100644 index 000000000000..573a95121ad5 --- /dev/null +++ b/site/public/v1/software/bonanza/index.json @@ -0,0 +1,21 @@ +{ + "id": 1154, + "slug": "bonanza", + "name": "Bonanza", + "release_date": null, + "developers": [ + "Kunihito Hoki" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11192571" + ], + "created_at": "2026-07-10T10:12:39.965671", + "updated_at": "2026-07-10T10:12:39.965671", + "url": "/v1/software/bonanza" +} diff --git a/site/public/v1/software/bonapart/index.json b/site/public/v1/software/bonapart/index.json new file mode 100644 index 000000000000..578b048a46cd --- /dev/null +++ b/site/public/v1/software/bonapart/index.json @@ -0,0 +1,19 @@ +{ + "id": 1155, + "slug": "bonapart", + "name": "Bonapart", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q892091" + ], + "created_at": "2026-07-10T10:12:39.965671", + "updated_at": "2026-07-10T10:12:39.965671", + "url": "/v1/software/bonapart" +} diff --git a/site/public/v1/software/bondi/index.json b/site/public/v1/software/bondi/index.json new file mode 100644 index 000000000000..6f3767c717af --- /dev/null +++ b/site/public/v1/software/bondi/index.json @@ -0,0 +1,23 @@ +{ + "id": 1156, + "slug": "bondi", + "name": "BONDI", + "release_date": "2009-01-01", + "developers": [ + "Open Mobile Terminal Platform" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Apache License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4836212" + ], + "created_at": "2026-07-10T10:12:39.965671", + "updated_at": "2026-07-10T10:12:39.965671", + "url": "/v1/software/bondi" +} diff --git a/site/public/v1/software/bonjour/index.json b/site/public/v1/software/bonjour/index.json new file mode 100644 index 000000000000..2b7c263f2ac6 --- /dev/null +++ b/site/public/v1/software/bonjour/index.json @@ -0,0 +1,26 @@ +{ + "id": 1157, + "slug": "bonjour", + "name": "Bonjour", + "release_date": null, + "developers": [ + "Apple Inc." + ], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "Apache Software License 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q892647" + ], + "created_at": "2026-07-10T10:12:39.966626", + "updated_at": "2026-07-10T10:12:39.966626", + "url": "/v1/software/bonjour" +} diff --git a/site/public/v1/software/bonobo-software/index.json b/site/public/v1/software/bonobo-software/index.json new file mode 100644 index 000000000000..c2dc9b2177b3 --- /dev/null +++ b/site/public/v1/software/bonobo-software/index.json @@ -0,0 +1,21 @@ +{ + "id": 1158, + "slug": "bonobo-software", + "name": "bonobo (software)", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Apache Software License 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q67173588" + ], + "created_at": "2026-07-10T10:12:39.966626", + "updated_at": "2026-07-10T10:12:39.966626", + "url": "/v1/software/bonobo-software" +} diff --git a/site/public/v1/software/bonpatron/index.json b/site/public/v1/software/bonpatron/index.json new file mode 100644 index 000000000000..9e7b7e462351 --- /dev/null +++ b/site/public/v1/software/bonpatron/index.json @@ -0,0 +1,19 @@ +{ + "id": 1159, + "slug": "bonpatron", + "name": "BonPatron", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q55605725" + ], + "created_at": "2026-07-10T10:12:39.966626", + "updated_at": "2026-07-10T10:12:39.966626", + "url": "/v1/software/bonpatron" +} diff --git a/site/public/v1/software/bontq/index.json b/site/public/v1/software/bontq/index.json new file mode 100644 index 000000000000..4eb98da9bd7f --- /dev/null +++ b/site/public/v1/software/bontq/index.json @@ -0,0 +1,19 @@ +{ + "id": 1160, + "slug": "bontq", + "name": "Bontq", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2910377" + ], + "created_at": "2026-07-10T10:12:39.966626", + "updated_at": "2026-07-10T10:12:39.966626", + "url": "/v1/software/bontq" +} diff --git a/site/public/v1/software/bonzi-buddy/index.json b/site/public/v1/software/bonzi-buddy/index.json new file mode 100644 index 000000000000..cb47fd96e1d5 --- /dev/null +++ b/site/public/v1/software/bonzi-buddy/index.json @@ -0,0 +1,21 @@ +{ + "id": 1161, + "slug": "bonzi-buddy", + "name": "Bonzi Buddy", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3304472" + ], + "created_at": "2026-07-10T10:12:39.967652", + "updated_at": "2026-07-10T10:12:39.967652", + "url": "/v1/software/bonzi-buddy" +} diff --git a/site/public/v1/software/bookdoc/index.json b/site/public/v1/software/bookdoc/index.json new file mode 100644 index 000000000000..9583ac0a1a37 --- /dev/null +++ b/site/public/v1/software/bookdoc/index.json @@ -0,0 +1,19 @@ +{ + "id": 1162, + "slug": "bookdoc", + "name": "BookDoc", + "release_date": "2015-10-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22906857" + ], + "created_at": "2026-07-10T10:12:39.967652", + "updated_at": "2026-07-10T10:12:39.967652", + "url": "/v1/software/bookdoc" +} diff --git a/site/public/v1/software/bookit/index.json b/site/public/v1/software/bookit/index.json new file mode 100644 index 000000000000..9f0b6c6a5491 --- /dev/null +++ b/site/public/v1/software/bookit/index.json @@ -0,0 +1,19 @@ +{ + "id": 1163, + "slug": "bookit", + "name": "BOOKIT", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4836216" + ], + "created_at": "2026-07-10T10:12:39.968627", + "updated_at": "2026-07-10T10:12:39.968627", + "url": "/v1/software/bookit" +} diff --git a/site/public/v1/software/booklamp-labs-sentiment-viewer/index.json b/site/public/v1/software/booklamp-labs-sentiment-viewer/index.json new file mode 100644 index 000000000000..4b8ca44271ce --- /dev/null +++ b/site/public/v1/software/booklamp-labs-sentiment-viewer/index.json @@ -0,0 +1,19 @@ +{ + "id": 1164, + "slug": "booklamp-labs-sentiment-viewer", + "name": "BookLamp Labs: Sentiment Viewer", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084815" + ], + "created_at": "2026-07-10T10:12:39.968627", + "updated_at": "2026-07-10T10:12:39.968627", + "url": "/v1/software/booklamp-labs-sentiment-viewer" +} diff --git a/site/public/v1/software/booklamp-labs-storydna-viewer/index.json b/site/public/v1/software/booklamp-labs-storydna-viewer/index.json new file mode 100644 index 000000000000..30092ea1f5f7 --- /dev/null +++ b/site/public/v1/software/booklamp-labs-storydna-viewer/index.json @@ -0,0 +1,19 @@ +{ + "id": 1165, + "slug": "booklamp-labs-storydna-viewer", + "name": "BookLamp Labs: StoryDNA Viewer", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084816" + ], + "created_at": "2026-07-10T10:12:39.968627", + "updated_at": "2026-07-10T10:12:39.968627", + "url": "/v1/software/booklamp-labs-storydna-viewer" +} diff --git a/site/public/v1/software/booklamp-labs-stream-graph-viewer/index.json b/site/public/v1/software/booklamp-labs-stream-graph-viewer/index.json new file mode 100644 index 000000000000..66637c1af192 --- /dev/null +++ b/site/public/v1/software/booklamp-labs-stream-graph-viewer/index.json @@ -0,0 +1,19 @@ +{ + "id": 1166, + "slug": "booklamp-labs-stream-graph-viewer", + "name": "BookLamp Labs: Stream Graph Viewer", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084817" + ], + "created_at": "2026-07-10T10:12:39.968627", + "updated_at": "2026-07-10T10:12:39.968627", + "url": "/v1/software/booklamp-labs-stream-graph-viewer" +} diff --git a/site/public/v1/software/booklamp-labs-suggestion-viewer/index.json b/site/public/v1/software/booklamp-labs-suggestion-viewer/index.json new file mode 100644 index 000000000000..5d0013babe84 --- /dev/null +++ b/site/public/v1/software/booklamp-labs-suggestion-viewer/index.json @@ -0,0 +1,19 @@ +{ + "id": 1167, + "slug": "booklamp-labs-suggestion-viewer", + "name": "BookLamp Labs: Suggestion Viewer", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084818" + ], + "created_at": "2026-07-10T10:12:39.969628", + "updated_at": "2026-07-10T10:12:39.969628", + "url": "/v1/software/booklamp-labs-suggestion-viewer" +} diff --git a/site/public/v1/software/booklamp/index.json b/site/public/v1/software/booklamp/index.json new file mode 100644 index 000000000000..72b749299edb --- /dev/null +++ b/site/public/v1/software/booklamp/index.json @@ -0,0 +1,19 @@ +{ + "id": 1168, + "slug": "booklamp", + "name": "BookLamp", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084814" + ], + "created_at": "2026-07-10T10:12:39.969628", + "updated_at": "2026-07-10T10:12:39.969628", + "url": "/v1/software/booklamp" +} diff --git a/site/public/v1/software/bookly/index.json b/site/public/v1/software/bookly/index.json new file mode 100644 index 000000000000..804aa5b0cd8d --- /dev/null +++ b/site/public/v1/software/bookly/index.json @@ -0,0 +1,23 @@ +{ + "id": 1169, + "slug": "bookly", + "name": "Bookly", + "release_date": null, + "developers": [ + "NOTA-INFO S.R.L." + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "GNU General Public License, version 2.0 or later" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139710048" + ], + "created_at": "2026-07-10T10:12:39.969628", + "updated_at": "2026-07-10T10:12:39.969628", + "url": "/v1/software/bookly" +} diff --git a/site/public/v1/software/bookmaker/index.json b/site/public/v1/software/bookmaker/index.json new file mode 100644 index 000000000000..117cfea6af0d --- /dev/null +++ b/site/public/v1/software/bookmaker/index.json @@ -0,0 +1,19 @@ +{ + "id": 1170, + "slug": "bookmaker", + "name": "Bookmaker", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134125879" + ], + "created_at": "2026-07-10T10:12:39.970638", + "updated_at": "2026-07-10T10:12:39.970638", + "url": "/v1/software/bookmaker" +} diff --git a/site/public/v1/software/bookmarksync/index.json b/site/public/v1/software/bookmarksync/index.json new file mode 100644 index 000000000000..40901625860f --- /dev/null +++ b/site/public/v1/software/bookmarksync/index.json @@ -0,0 +1,19 @@ +{ + "id": 1171, + "slug": "bookmarksync", + "name": "BookmarkSync", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4943253" + ], + "created_at": "2026-07-10T10:12:39.970638", + "updated_at": "2026-07-10T10:12:39.970638", + "url": "/v1/software/bookmarksync" +} diff --git a/site/public/v1/software/booksmart/index.json b/site/public/v1/software/booksmart/index.json new file mode 100644 index 000000000000..091cf0ed1cd6 --- /dev/null +++ b/site/public/v1/software/booksmart/index.json @@ -0,0 +1,21 @@ +{ + "id": 1172, + "slug": "booksmart", + "name": "BookSmart", + "release_date": null, + "developers": [ + "Blurb, Inc." + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4942919" + ], + "created_at": "2026-07-10T10:12:39.970638", + "updated_at": "2026-07-10T10:12:39.970638", + "url": "/v1/software/booksmart" +} diff --git a/site/public/v1/software/bookworm/index.json b/site/public/v1/software/bookworm/index.json new file mode 100644 index 000000000000..2ee8ff8eac75 --- /dev/null +++ b/site/public/v1/software/bookworm/index.json @@ -0,0 +1,19 @@ +{ + "id": 1173, + "slug": "bookworm", + "name": "Bookworm", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084819" + ], + "created_at": "2026-07-10T10:12:39.971659", + "updated_at": "2026-07-10T10:12:39.971659", + "url": "/v1/software/bookworm" +} diff --git a/site/public/v1/software/booky/index.json b/site/public/v1/software/booky/index.json new file mode 100644 index 000000000000..66d3179ed5ae --- /dev/null +++ b/site/public/v1/software/booky/index.json @@ -0,0 +1,19 @@ +{ + "id": 1174, + "slug": "booky", + "name": "booky", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116788198" + ], + "created_at": "2026-07-10T10:12:39.971659", + "updated_at": "2026-07-10T10:12:39.971659", + "url": "/v1/software/booky" +} diff --git a/site/public/v1/software/boomerang/index.json b/site/public/v1/software/boomerang/index.json new file mode 100644 index 000000000000..005ab3d19627 --- /dev/null +++ b/site/public/v1/software/boomerang/index.json @@ -0,0 +1,23 @@ +{ + "id": 1175, + "slug": "boomerang", + "name": "Boomerang", + "release_date": null, + "developers": [ + "Benjamin C. Pierce" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "OCaml" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4943501" + ], + "created_at": "2026-07-10T10:12:39.971659", + "updated_at": "2026-07-10T10:12:39.971659", + "url": "/v1/software/boomerang" +} diff --git a/site/public/v1/software/boost-json/index.json b/site/public/v1/software/boost-json/index.json new file mode 100644 index 000000000000..ba21faf78109 --- /dev/null +++ b/site/public/v1/software/boost-json/index.json @@ -0,0 +1,23 @@ +{ + "id": 1176, + "slug": "boost-json", + "name": "Boost.JSON", + "release_date": null, + "developers": [ + "Vinnie Falco" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Boost Software License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123116374" + ], + "created_at": "2026-07-10T10:12:39.972660", + "updated_at": "2026-07-10T10:12:39.972660", + "url": "/v1/software/boost-json" +} diff --git a/site/public/v1/software/boot-camp/index.json b/site/public/v1/software/boot-camp/index.json new file mode 100644 index 000000000000..de04e102279e --- /dev/null +++ b/site/public/v1/software/boot-camp/index.json @@ -0,0 +1,23 @@ +{ + "id": 1177, + "slug": "boot-camp", + "name": "Boot Camp", + "release_date": null, + "developers": [ + "Apple Inc." + ], + "publishers": [], + "operating_systems": [ + "macOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q402799" + ], + "created_at": "2026-07-10T10:12:39.972660", + "updated_at": "2026-07-10T10:12:39.972660", + "url": "/v1/software/boot-camp" +} diff --git a/site/public/v1/software/bootman/index.json b/site/public/v1/software/bootman/index.json new file mode 100644 index 000000000000..9539c2532e00 --- /dev/null +++ b/site/public/v1/software/bootman/index.json @@ -0,0 +1,25 @@ +{ + "id": 1178, + "slug": "bootman", + "name": "Bootman", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "BeOS" + ], + "programming_languages": [ + "assembly language" + ], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4035320" + ], + "created_at": "2026-07-10T10:12:39.972660", + "updated_at": "2026-07-10T10:12:39.972660", + "url": "/v1/software/bootman" +} diff --git a/site/public/v1/software/bootstrapcdn/index.json b/site/public/v1/software/bootstrapcdn/index.json new file mode 100644 index 000000000000..8c5ff1997c03 --- /dev/null +++ b/site/public/v1/software/bootstrapcdn/index.json @@ -0,0 +1,19 @@ +{ + "id": 1179, + "slug": "bootstrapcdn", + "name": "BootstrapCDN", + "release_date": "2012-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17085830" + ], + "created_at": "2026-07-10T10:12:39.972660", + "updated_at": "2026-07-10T10:12:39.972660", + "url": "/v1/software/bootstrapcdn" +} diff --git a/site/public/v1/software/bootvis/index.json b/site/public/v1/software/bootvis/index.json new file mode 100644 index 000000000000..413629ec6473 --- /dev/null +++ b/site/public/v1/software/bootvis/index.json @@ -0,0 +1,21 @@ +{ + "id": 1180, + "slug": "bootvis", + "name": "BootVis", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4035321" + ], + "created_at": "2026-07-10T10:12:39.973626", + "updated_at": "2026-07-10T10:12:39.973626", + "url": "/v1/software/bootvis" +} diff --git a/site/public/v1/software/bop-a-bet/index.json b/site/public/v1/software/bop-a-bet/index.json new file mode 100644 index 000000000000..dac959d97d0e --- /dev/null +++ b/site/public/v1/software/bop-a-bet/index.json @@ -0,0 +1,23 @@ +{ + "id": 1181, + "slug": "bop-a-bet", + "name": "Bop-A-Bet", + "release_date": null, + "developers": [ + "Al Lowe" + ], + "publishers": [], + "operating_systems": [ + "Apple DOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4944148" + ], + "created_at": "2026-07-10T10:12:39.973626", + "updated_at": "2026-07-10T10:12:39.973626", + "url": "/v1/software/bop-a-bet" +} diff --git a/site/public/v1/software/borg-ai-platform/index.json b/site/public/v1/software/borg-ai-platform/index.json new file mode 100644 index 000000000000..b35c7852751d --- /dev/null +++ b/site/public/v1/software/borg-ai-platform/index.json @@ -0,0 +1,21 @@ +{ + "id": 1182, + "slug": "borg-ai-platform", + "name": "BORG (AI platform)", + "release_date": null, + "developers": [ + "Magnús Smári Smárason" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140460091" + ], + "created_at": "2026-07-10T10:12:39.973626", + "updated_at": "2026-07-10T10:12:39.973626", + "url": "/v1/software/borg-ai-platform" +} diff --git a/site/public/v1/software/borgmatic/index.json b/site/public/v1/software/borgmatic/index.json new file mode 100644 index 000000000000..b6a114b6db40 --- /dev/null +++ b/site/public/v1/software/borgmatic/index.json @@ -0,0 +1,19 @@ +{ + "id": 1183, + "slug": "borgmatic", + "name": "borgmatic", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127425567" + ], + "created_at": "2026-07-10T10:12:39.974659", + "updated_at": "2026-07-10T10:12:39.974659", + "url": "/v1/software/borgmatic" +} diff --git a/site/public/v1/software/borgweb/index.json b/site/public/v1/software/borgweb/index.json new file mode 100644 index 000000000000..a2484983650b --- /dev/null +++ b/site/public/v1/software/borgweb/index.json @@ -0,0 +1,19 @@ +{ + "id": 1184, + "slug": "borgweb", + "name": "borgweb", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065647" + ], + "created_at": "2026-07-10T10:12:39.974659", + "updated_at": "2026-07-10T10:12:39.974659", + "url": "/v1/software/borgweb" +} diff --git a/site/public/v1/software/boris/index.json b/site/public/v1/software/boris/index.json new file mode 100644 index 000000000000..22aceccc9f82 --- /dev/null +++ b/site/public/v1/software/boris/index.json @@ -0,0 +1,26 @@ +{ + "id": 1185, + "slug": "boris", + "name": "BORIS", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [ + "Python" + ], + "licenses": [ + "GNU General Public License, version 3.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105229787" + ], + "created_at": "2026-07-10T10:12:39.974659", + "updated_at": "2026-07-10T10:12:39.974659", + "url": "/v1/software/boris" +} diff --git a/site/public/v1/software/borland-enterprise-server/index.json b/site/public/v1/software/borland-enterprise-server/index.json new file mode 100644 index 000000000000..15836f9fce00 --- /dev/null +++ b/site/public/v1/software/borland-enterprise-server/index.json @@ -0,0 +1,19 @@ +{ + "id": 1186, + "slug": "borland-enterprise-server", + "name": "Borland Enterprise Server", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4945730" + ], + "created_at": "2026-07-10T10:12:39.975583", + "updated_at": "2026-07-10T10:12:39.975583", + "url": "/v1/software/borland-enterprise-server" +} diff --git a/site/public/v1/software/borland-reflex/index.json b/site/public/v1/software/borland-reflex/index.json new file mode 100644 index 000000000000..209f8a6e2dd2 --- /dev/null +++ b/site/public/v1/software/borland-reflex/index.json @@ -0,0 +1,21 @@ +{ + "id": 1187, + "slug": "borland-reflex", + "name": "Borland Reflex", + "release_date": null, + "developers": [ + "Borland" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4945732" + ], + "created_at": "2026-07-10T10:12:39.975583", + "updated_at": "2026-07-10T10:12:39.975583", + "url": "/v1/software/borland-reflex" +} diff --git a/site/public/v1/software/boss/index.json b/site/public/v1/software/boss/index.json new file mode 100644 index 000000000000..05adc4f9b927 --- /dev/null +++ b/site/public/v1/software/boss/index.json @@ -0,0 +1,21 @@ +{ + "id": 1188, + "slug": "boss", + "name": "BOSS", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Fortran" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4836232" + ], + "created_at": "2026-07-10T10:12:39.975583", + "updated_at": "2026-07-10T10:12:39.975583", + "url": "/v1/software/boss" +} diff --git a/site/public/v1/software/bossware/index.json b/site/public/v1/software/bossware/index.json new file mode 100644 index 000000000000..8f44f81d0b3f --- /dev/null +++ b/site/public/v1/software/bossware/index.json @@ -0,0 +1,19 @@ +{ + "id": 1189, + "slug": "bossware", + "name": "Bossware", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110269244" + ], + "created_at": "2026-07-10T10:12:39.976575", + "updated_at": "2026-07-10T10:12:39.976575", + "url": "/v1/software/bossware" +} diff --git a/site/public/v1/software/bothunter/index.json b/site/public/v1/software/bothunter/index.json new file mode 100644 index 000000000000..2acbef004908 --- /dev/null +++ b/site/public/v1/software/bothunter/index.json @@ -0,0 +1,21 @@ +{ + "id": 1190, + "slug": "bothunter", + "name": "Bothunter", + "release_date": null, + "developers": [ + "SRI International" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4948699" + ], + "created_at": "2026-07-10T10:12:39.976575", + "updated_at": "2026-07-10T10:12:39.976575", + "url": "/v1/software/bothunter" +} diff --git a/site/public/v1/software/botster/index.json b/site/public/v1/software/botster/index.json new file mode 100644 index 000000000000..2a4e0e9d9ff4 --- /dev/null +++ b/site/public/v1/software/botster/index.json @@ -0,0 +1,21 @@ +{ + "id": 1191, + "slug": "botster", + "name": "Botster", + "release_date": null, + "developers": [ + "Caprilytics" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140447567" + ], + "created_at": "2026-07-10T10:12:39.976575", + "updated_at": "2026-07-10T10:12:39.976575", + "url": "/v1/software/botster" +} diff --git a/site/public/v1/software/botw-cross-platform-mod-loader/index.json b/site/public/v1/software/botw-cross-platform-mod-loader/index.json new file mode 100644 index 000000000000..ceecfc2ca2a8 --- /dev/null +++ b/site/public/v1/software/botw-cross-platform-mod-loader/index.json @@ -0,0 +1,21 @@ +{ + "id": 1192, + "slug": "botw-cross-platform-mod-loader", + "name": "BOTW Cross-Platform Mod Loader", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Python" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q129677620" + ], + "created_at": "2026-07-10T10:12:39.977570", + "updated_at": "2026-07-10T10:12:39.977570", + "url": "/v1/software/botw-cross-platform-mod-loader" +} diff --git a/site/public/v1/software/boundschecker/index.json b/site/public/v1/software/boundschecker/index.json new file mode 100644 index 000000000000..c4ece909f509 --- /dev/null +++ b/site/public/v1/software/boundschecker/index.json @@ -0,0 +1,21 @@ +{ + "id": 1193, + "slug": "boundschecker", + "name": "BoundsChecker", + "release_date": null, + "developers": [ + "Micro Focus International" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4950003" + ], + "created_at": "2026-07-10T10:12:39.977570", + "updated_at": "2026-07-10T10:12:39.977570", + "url": "/v1/software/boundschecker" +} diff --git a/site/public/v1/software/boxely/index.json b/site/public/v1/software/boxely/index.json new file mode 100644 index 000000000000..8746207e6b3e --- /dev/null +++ b/site/public/v1/software/boxely/index.json @@ -0,0 +1,21 @@ +{ + "id": 1194, + "slug": "boxely", + "name": "Boxely", + "release_date": null, + "developers": [ + "AOL" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q848637" + ], + "created_at": "2026-07-10T10:12:39.977570", + "updated_at": "2026-07-10T10:12:39.977570", + "url": "/v1/software/boxely" +} diff --git a/site/public/v1/software/boxful/index.json b/site/public/v1/software/boxful/index.json new file mode 100644 index 000000000000..88852e85398d --- /dev/null +++ b/site/public/v1/software/boxful/index.json @@ -0,0 +1,19 @@ +{ + "id": 1195, + "slug": "boxful", + "name": "Boxful", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q19854793" + ], + "created_at": "2026-07-10T10:12:39.978575", + "updated_at": "2026-07-10T10:12:39.978575", + "url": "/v1/software/boxful" +} diff --git a/site/public/v1/software/boycottadvance/index.json b/site/public/v1/software/boycottadvance/index.json new file mode 100644 index 000000000000..fec151224dde --- /dev/null +++ b/site/public/v1/software/boycottadvance/index.json @@ -0,0 +1,19 @@ +{ + "id": 1196, + "slug": "boycottadvance", + "name": "BoycottAdvance", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4952273" + ], + "created_at": "2026-07-10T10:12:39.978575", + "updated_at": "2026-07-10T10:12:39.978575", + "url": "/v1/software/boycottadvance" +} diff --git a/site/public/v1/software/bpjscan/index.json b/site/public/v1/software/bpjscan/index.json new file mode 100644 index 000000000000..39d638ba4ff2 --- /dev/null +++ b/site/public/v1/software/bpjscan/index.json @@ -0,0 +1,21 @@ +{ + "id": 1197, + "slug": "bpjscan", + "name": "BPJScan", + "release_date": null, + "developers": [ + "Imperial Healthtech" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140305549" + ], + "created_at": "2026-07-10T10:12:39.978575", + "updated_at": "2026-07-10T10:12:39.978575", + "url": "/v1/software/bpjscan" +} diff --git a/site/public/v1/software/bps-biodiversity-performance-score/index.json b/site/public/v1/software/bps-biodiversity-performance-score/index.json new file mode 100644 index 000000000000..1c257eed34ce --- /dev/null +++ b/site/public/v1/software/bps-biodiversity-performance-score/index.json @@ -0,0 +1,21 @@ +{ + "id": 1198, + "slug": "bps-biodiversity-performance-score", + "name": "BPS — Biodiversity Performance Score", + "release_date": null, + "developers": [ + "IRICE" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139554618" + ], + "created_at": "2026-07-10T10:12:39.979653", + "updated_at": "2026-07-10T10:12:39.979653", + "url": "/v1/software/bps-biodiversity-performance-score" +} diff --git a/site/public/v1/software/brainflow-ai/index.json b/site/public/v1/software/brainflow-ai/index.json new file mode 100644 index 000000000000..46d904c83b82 --- /dev/null +++ b/site/public/v1/software/brainflow-ai/index.json @@ -0,0 +1,19 @@ +{ + "id": 1199, + "slug": "brainflow-ai", + "name": "BrainFlow AI", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139659917" + ], + "created_at": "2026-07-10T10:12:39.979653", + "updated_at": "2026-07-10T10:12:39.979653", + "url": "/v1/software/brainflow-ai" +} diff --git a/site/public/v1/software/brainflow/index.json b/site/public/v1/software/brainflow/index.json new file mode 100644 index 000000000000..61ffe32148de --- /dev/null +++ b/site/public/v1/software/brainflow/index.json @@ -0,0 +1,21 @@ +{ + "id": 1200, + "slug": "brainflow", + "name": "brainflow", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121539113" + ], + "created_at": "2026-07-10T10:12:39.979653", + "updated_at": "2026-07-10T10:12:39.979653", + "url": "/v1/software/brainflow" +} diff --git a/site/public/v1/software/brainstorm/index.json b/site/public/v1/software/brainstorm/index.json new file mode 100644 index 000000000000..e683335e683e --- /dev/null +++ b/site/public/v1/software/brainstorm/index.json @@ -0,0 +1,25 @@ +{ + "id": 1201, + "slug": "brainstorm", + "name": "Brainstorm", + "release_date": null, + "developers": [ + "MIT Computer Science and Artificial Intelligence Laboratory" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Python" + ], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q64816680" + ], + "created_at": "2026-07-10T10:12:39.980635", + "updated_at": "2026-07-10T10:12:39.980635", + "url": "/v1/software/brainstorm" +} diff --git a/site/public/v1/software/brainvoyager/index.json b/site/public/v1/software/brainvoyager/index.json new file mode 100644 index 000000000000..d217bc56e4d5 --- /dev/null +++ b/site/public/v1/software/brainvoyager/index.json @@ -0,0 +1,21 @@ +{ + "id": 1202, + "slug": "brainvoyager", + "name": "BrainVoyager", + "release_date": null, + "developers": [ + "Rainer Goebel" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q41793788" + ], + "created_at": "2026-07-10T10:12:39.980635", + "updated_at": "2026-07-10T10:12:39.980635", + "url": "/v1/software/brainvoyager" +} diff --git a/site/public/v1/software/brakeman/index.json b/site/public/v1/software/brakeman/index.json new file mode 100644 index 000000000000..8248bb025358 --- /dev/null +++ b/site/public/v1/software/brakeman/index.json @@ -0,0 +1,21 @@ +{ + "id": 1203, + "slug": "brakeman", + "name": "Brakeman", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q54886541" + ], + "created_at": "2026-07-10T10:12:39.980635", + "updated_at": "2026-07-10T10:12:39.980635", + "url": "/v1/software/brakeman" +} diff --git a/site/public/v1/software/branch-metrics/index.json b/site/public/v1/software/branch-metrics/index.json new file mode 100644 index 000000000000..6a616567e191 --- /dev/null +++ b/site/public/v1/software/branch-metrics/index.json @@ -0,0 +1,19 @@ +{ + "id": 1204, + "slug": "branch-metrics", + "name": "Branch Metrics", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q20800435" + ], + "created_at": "2026-07-10T10:12:39.980635", + "updated_at": "2026-07-10T10:12:39.980635", + "url": "/v1/software/branch-metrics" +} diff --git a/site/public/v1/software/brat-rapid-annotation-tool/index.json b/site/public/v1/software/brat-rapid-annotation-tool/index.json new file mode 100644 index 000000000000..9bb26daaa8e0 --- /dev/null +++ b/site/public/v1/software/brat-rapid-annotation-tool/index.json @@ -0,0 +1,22 @@ +{ + "id": 1205, + "slug": "brat-rapid-annotation-tool", + "name": "brat rapid annotation tool", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Creative Commons Attribution 3.0 Unported", + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084820" + ], + "created_at": "2026-07-10T10:12:39.981658", + "updated_at": "2026-07-10T10:12:39.981658", + "url": "/v1/software/brat-rapid-annotation-tool" +} diff --git a/site/public/v1/software/braveheart/index.json b/site/public/v1/software/braveheart/index.json new file mode 100644 index 000000000000..75b4ed2c8410 --- /dev/null +++ b/site/public/v1/software/braveheart/index.json @@ -0,0 +1,19 @@ +{ + "id": 1206, + "slug": "braveheart", + "name": "Braveheart", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140390614" + ], + "created_at": "2026-07-10T10:12:39.981658", + "updated_at": "2026-07-10T10:12:39.981658", + "url": "/v1/software/braveheart" +} diff --git a/site/public/v1/software/bravo/index.json b/site/public/v1/software/bravo/index.json new file mode 100644 index 000000000000..f1abced32e01 --- /dev/null +++ b/site/public/v1/software/bravo/index.json @@ -0,0 +1,21 @@ +{ + "id": 1207, + "slug": "bravo", + "name": "BRAVO", + "release_date": null, + "developers": [ + "Genesis Gaming Solutions" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18754143" + ], + "created_at": "2026-07-10T10:12:39.981658", + "updated_at": "2026-07-10T10:12:39.981658", + "url": "/v1/software/bravo" +} diff --git a/site/public/v1/software/brazil-r-s/index.json b/site/public/v1/software/brazil-r-s/index.json new file mode 100644 index 000000000000..64520610ecd9 --- /dev/null +++ b/site/public/v1/software/brazil-r-s/index.json @@ -0,0 +1,21 @@ +{ + "id": 1208, + "slug": "brazil-r-s", + "name": "Brazil R/S", + "release_date": null, + "developers": [ + "Imagination Technologies" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q958018" + ], + "created_at": "2026-07-10T10:12:39.982651", + "updated_at": "2026-07-10T10:12:39.982651", + "url": "/v1/software/brazil-r-s" +} diff --git a/site/public/v1/software/brcks/index.json b/site/public/v1/software/brcks/index.json new file mode 100644 index 000000000000..84fb26c806d5 --- /dev/null +++ b/site/public/v1/software/brcks/index.json @@ -0,0 +1,21 @@ +{ + "id": 1209, + "slug": "brcks", + "name": "BRCKS", + "release_date": null, + "developers": [ + "BRCKS" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138054080" + ], + "created_at": "2026-07-10T10:12:39.982651", + "updated_at": "2026-07-10T10:12:39.982651", + "url": "/v1/software/brcks" +} diff --git a/site/public/v1/software/breakdown/index.json b/site/public/v1/software/breakdown/index.json new file mode 100644 index 000000000000..e1b058f73c4c --- /dev/null +++ b/site/public/v1/software/breakdown/index.json @@ -0,0 +1,21 @@ +{ + "id": 1210, + "slug": "breakdown", + "name": "Breakdown", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Turbo Pascal" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125523450" + ], + "created_at": "2026-07-10T10:12:39.982651", + "updated_at": "2026-07-10T10:12:39.982651", + "url": "/v1/software/breakdown" +} diff --git a/site/public/v1/software/breezi/index.json b/site/public/v1/software/breezi/index.json new file mode 100644 index 000000000000..4153e2b569a3 --- /dev/null +++ b/site/public/v1/software/breezi/index.json @@ -0,0 +1,19 @@ +{ + "id": 1211, + "slug": "breezi", + "name": "Breezi", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22906907" + ], + "created_at": "2026-07-10T10:12:39.983628", + "updated_at": "2026-07-10T10:12:39.983628", + "url": "/v1/software/breezi" +} diff --git a/site/public/v1/software/brekeke-pbx/index.json b/site/public/v1/software/brekeke-pbx/index.json new file mode 100644 index 000000000000..7abd263e2167 --- /dev/null +++ b/site/public/v1/software/brekeke-pbx/index.json @@ -0,0 +1,21 @@ +{ + "id": 1212, + "slug": "brekeke-pbx", + "name": "Brekeke PBX", + "release_date": "2004-01-01", + "developers": [ + "Brekeke Software" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4960478" + ], + "created_at": "2026-07-10T10:12:39.983628", + "updated_at": "2026-07-10T10:12:39.983628", + "url": "/v1/software/brekeke-pbx" +} diff --git a/site/public/v1/software/brekeke-sip-server/index.json b/site/public/v1/software/brekeke-sip-server/index.json new file mode 100644 index 000000000000..1402307ce154 --- /dev/null +++ b/site/public/v1/software/brekeke-sip-server/index.json @@ -0,0 +1,25 @@ +{ + "id": 1213, + "slug": "brekeke-sip-server", + "name": "Brekeke SIP Server", + "release_date": "2003-01-01", + "developers": [ + "Brekeke Software" + ], + "publishers": [], + "operating_systems": [ + "Solaris", + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4960480" + ], + "created_at": "2026-07-10T10:12:39.983628", + "updated_at": "2026-07-10T10:12:39.983628", + "url": "/v1/software/brekeke-sip-server" +} diff --git a/site/public/v1/software/brewmaxx/index.json b/site/public/v1/software/brewmaxx/index.json new file mode 100644 index 000000000000..419f8876cac4 --- /dev/null +++ b/site/public/v1/software/brewmaxx/index.json @@ -0,0 +1,19 @@ +{ + "id": 1214, + "slug": "brewmaxx", + "name": "Brewmaxx", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q911403" + ], + "created_at": "2026-07-10T10:12:39.983628", + "updated_at": "2026-07-10T10:12:39.983628", + "url": "/v1/software/brewmaxx" +} diff --git a/site/public/v1/software/brfplus/index.json b/site/public/v1/software/brfplus/index.json new file mode 100644 index 000000000000..d154d4a553ab --- /dev/null +++ b/site/public/v1/software/brfplus/index.json @@ -0,0 +1,21 @@ +{ + "id": 1215, + "slug": "brfplus", + "name": "BRFplus", + "release_date": null, + "developers": [ + "SAP" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q796935" + ], + "created_at": "2026-07-10T10:12:39.984658", + "updated_at": "2026-07-10T10:12:39.984658", + "url": "/v1/software/brfplus" +} diff --git a/site/public/v1/software/bricklink-studio/index.json b/site/public/v1/software/bricklink-studio/index.json new file mode 100644 index 000000000000..70f8fee7adbb --- /dev/null +++ b/site/public/v1/software/bricklink-studio/index.json @@ -0,0 +1,19 @@ +{ + "id": 1216, + "slug": "bricklink-studio", + "name": "BrickLink Studio", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137783554" + ], + "created_at": "2026-07-10T10:12:39.984658", + "updated_at": "2026-07-10T10:12:39.984658", + "url": "/v1/software/bricklink-studio" +} diff --git a/site/public/v1/software/bridge-lms/index.json b/site/public/v1/software/bridge-lms/index.json new file mode 100644 index 000000000000..8de1043ea30c --- /dev/null +++ b/site/public/v1/software/bridge-lms/index.json @@ -0,0 +1,19 @@ +{ + "id": 1217, + "slug": "bridge-lms", + "name": "Bridge LMS", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136410017" + ], + "created_at": "2026-07-10T10:12:39.984658", + "updated_at": "2026-07-10T10:12:39.984658", + "url": "/v1/software/bridge-lms" +} diff --git a/site/public/v1/software/bridgedb/index.json b/site/public/v1/software/bridgedb/index.json new file mode 100644 index 000000000000..af7fb5c8fdd3 --- /dev/null +++ b/site/public/v1/software/bridgedb/index.json @@ -0,0 +1,19 @@ +{ + "id": 1218, + "slug": "bridgedb", + "name": "BridgeDb", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q55582517" + ], + "created_at": "2026-07-10T10:12:39.985641", + "updated_at": "2026-07-10T10:12:39.985641", + "url": "/v1/software/bridgedb" +} diff --git a/site/public/v1/software/brightwheel/index.json b/site/public/v1/software/brightwheel/index.json new file mode 100644 index 000000000000..13cd2cd99ae1 --- /dev/null +++ b/site/public/v1/software/brightwheel/index.json @@ -0,0 +1,21 @@ +{ + "id": 1219, + "slug": "brightwheel", + "name": "Brightwheel", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "iOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139328792" + ], + "created_at": "2026-07-10T10:12:39.985641", + "updated_at": "2026-07-10T10:12:39.985641", + "url": "/v1/software/brightwheel" +} diff --git a/site/public/v1/software/bristlr/index.json b/site/public/v1/software/bristlr/index.json new file mode 100644 index 000000000000..d7e079eb16e2 --- /dev/null +++ b/site/public/v1/software/bristlr/index.json @@ -0,0 +1,21 @@ +{ + "id": 1220, + "slug": "bristlr", + "name": "Bristlr", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "iOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q42417805" + ], + "created_at": "2026-07-10T10:12:39.985641", + "updated_at": "2026-07-10T10:12:39.985641", + "url": "/v1/software/bristlr" +} diff --git a/site/public/v1/software/britflix/index.json b/site/public/v1/software/britflix/index.json new file mode 100644 index 000000000000..70e4f00b3bf3 --- /dev/null +++ b/site/public/v1/software/britflix/index.json @@ -0,0 +1,19 @@ +{ + "id": 1221, + "slug": "britflix", + "name": "Britflix", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q24993854" + ], + "created_at": "2026-07-10T10:12:39.986639", + "updated_at": "2026-07-10T10:12:39.986639", + "url": "/v1/software/britflix" +} diff --git a/site/public/v1/software/brmsx/index.json b/site/public/v1/software/brmsx/index.json new file mode 100644 index 000000000000..530c355fe8f9 --- /dev/null +++ b/site/public/v1/software/brmsx/index.json @@ -0,0 +1,19 @@ +{ + "id": 1222, + "slug": "brmsx", + "name": "BrMSX", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1975741" + ], + "created_at": "2026-07-10T10:12:39.986639", + "updated_at": "2026-07-10T10:12:39.986639", + "url": "/v1/software/brmsx" +} diff --git a/site/public/v1/software/broken-picture-telephone/index.json b/site/public/v1/software/broken-picture-telephone/index.json new file mode 100644 index 000000000000..9d5fba790b68 --- /dev/null +++ b/site/public/v1/software/broken-picture-telephone/index.json @@ -0,0 +1,23 @@ +{ + "id": 1223, + "slug": "broken-picture-telephone", + "name": "Broken Picture Telephone", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "iOS" + ], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22019700" + ], + "created_at": "2026-07-10T10:12:39.986639", + "updated_at": "2026-07-10T10:12:39.986639", + "url": "/v1/software/broken-picture-telephone" +} diff --git a/site/public/v1/software/browsec/index.json b/site/public/v1/software/browsec/index.json new file mode 100644 index 000000000000..39653b445c4b --- /dev/null +++ b/site/public/v1/software/browsec/index.json @@ -0,0 +1,23 @@ +{ + "id": 1224, + "slug": "browsec", + "name": "Browsec", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "iOS", + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139386864" + ], + "created_at": "2026-07-10T10:12:39.987616", + "updated_at": "2026-07-10T10:12:39.987616", + "url": "/v1/software/browsec" +} diff --git a/site/public/v1/software/browsertrix/index.json b/site/public/v1/software/browsertrix/index.json new file mode 100644 index 000000000000..8dee602b933f --- /dev/null +++ b/site/public/v1/software/browsertrix/index.json @@ -0,0 +1,24 @@ +{ + "id": 1225, + "slug": "browsertrix", + "name": "Browsertrix", + "release_date": "2019-01-01", + "developers": [ + "Webrecorder" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Python", + "TypeScript" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112795579" + ], + "created_at": "2026-07-10T10:12:39.987616", + "updated_at": "2026-07-10T10:12:39.987616", + "url": "/v1/software/browsertrix" +} diff --git a/site/public/v1/software/bs-7925-1/index.json b/site/public/v1/software/bs-7925-1/index.json new file mode 100644 index 000000000000..be005d19af84 --- /dev/null +++ b/site/public/v1/software/bs-7925-1/index.json @@ -0,0 +1,19 @@ +{ + "id": 1226, + "slug": "bs-7925-1", + "name": "BS 7925-1", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4836648" + ], + "created_at": "2026-07-10T10:12:39.987616", + "updated_at": "2026-07-10T10:12:39.987616", + "url": "/v1/software/bs-7925-1" +} diff --git a/site/public/v1/software/bs-7925-2/index.json b/site/public/v1/software/bs-7925-2/index.json new file mode 100644 index 000000000000..35e92343cf24 --- /dev/null +++ b/site/public/v1/software/bs-7925-2/index.json @@ -0,0 +1,19 @@ +{ + "id": 1227, + "slug": "bs-7925-2", + "name": "BS 7925-2", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4836646" + ], + "created_at": "2026-07-10T10:12:39.987616", + "updated_at": "2026-07-10T10:12:39.987616", + "url": "/v1/software/bs-7925-2" +} diff --git a/site/public/v1/software/bsch/index.json b/site/public/v1/software/bsch/index.json new file mode 100644 index 000000000000..04240987d3fd --- /dev/null +++ b/site/public/v1/software/bsch/index.json @@ -0,0 +1,24 @@ +{ + "id": 1228, + "slug": "bsch", + "name": "BSch", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [ + "Visual C++" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11191767" + ], + "created_at": "2026-07-10T10:12:39.988639", + "updated_at": "2026-07-10T10:12:39.988639", + "url": "/v1/software/bsch" +} diff --git a/site/public/v1/software/bsdutils/index.json b/site/public/v1/software/bsdutils/index.json new file mode 100644 index 000000000000..734d7c3a3a8d --- /dev/null +++ b/site/public/v1/software/bsdutils/index.json @@ -0,0 +1,23 @@ +{ + "id": 1229, + "slug": "bsdutils", + "name": "bsdutils", + "release_date": null, + "developers": [ + "David L. Cantrell" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "3-clause BSD License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116695406" + ], + "created_at": "2026-07-10T10:12:39.988639", + "updated_at": "2026-07-10T10:12:39.988639", + "url": "/v1/software/bsdutils" +} diff --git a/site/public/v1/software/bsoft/index.json b/site/public/v1/software/bsoft/index.json new file mode 100644 index 000000000000..da0b0004a837 --- /dev/null +++ b/site/public/v1/software/bsoft/index.json @@ -0,0 +1,19 @@ +{ + "id": 1230, + "slug": "bsoft", + "name": "Bsoft", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4982024" + ], + "created_at": "2026-07-10T10:12:39.988639", + "updated_at": "2026-07-10T10:12:39.988639", + "url": "/v1/software/bsoft" +} diff --git a/site/public/v1/software/btcrack/index.json b/site/public/v1/software/btcrack/index.json new file mode 100644 index 000000000000..478f0c8a09a3 --- /dev/null +++ b/site/public/v1/software/btcrack/index.json @@ -0,0 +1,21 @@ +{ + "id": 1231, + "slug": "btcrack", + "name": "btcrack", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "GNU General Public License, version 3.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28941679" + ], + "created_at": "2026-07-10T10:12:39.989618", + "updated_at": "2026-07-10T10:12:39.989618", + "url": "/v1/software/btcrack" +} diff --git a/site/public/v1/software/btfs/index.json b/site/public/v1/software/btfs/index.json new file mode 100644 index 000000000000..1cfbc8261b7b --- /dev/null +++ b/site/public/v1/software/btfs/index.json @@ -0,0 +1,19 @@ +{ + "id": 1232, + "slug": "btfs", + "name": "btfs", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62846203" + ], + "created_at": "2026-07-10T10:12:39.989618", + "updated_at": "2026-07-10T10:12:39.989618", + "url": "/v1/software/btfs" +} diff --git a/site/public/v1/software/btguard/index.json b/site/public/v1/software/btguard/index.json new file mode 100644 index 000000000000..0b814a2b858d --- /dev/null +++ b/site/public/v1/software/btguard/index.json @@ -0,0 +1,21 @@ +{ + "id": 1233, + "slug": "btguard", + "name": "BTGuard", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22906943" + ], + "created_at": "2026-07-10T10:12:39.989618", + "updated_at": "2026-07-10T10:12:39.989618", + "url": "/v1/software/btguard" +} diff --git a/site/public/v1/software/bubble-plan/index.json b/site/public/v1/software/bubble-plan/index.json new file mode 100644 index 000000000000..904c65ac9cb8 --- /dev/null +++ b/site/public/v1/software/bubble-plan/index.json @@ -0,0 +1,19 @@ +{ + "id": 1234, + "slug": "bubble-plan", + "name": "Bubble Plan", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140312631" + ], + "created_at": "2026-07-10T10:12:39.990621", + "updated_at": "2026-07-10T10:12:39.990621", + "url": "/v1/software/bubble-plan" +} diff --git a/site/public/v1/software/bubbleupnp/index.json b/site/public/v1/software/bubbleupnp/index.json new file mode 100644 index 000000000000..5f51e32dd18e --- /dev/null +++ b/site/public/v1/software/bubbleupnp/index.json @@ -0,0 +1,19 @@ +{ + "id": 1235, + "slug": "bubbleupnp", + "name": "BubbleUPnP", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123221324" + ], + "created_at": "2026-07-10T10:12:39.990621", + "updated_at": "2026-07-10T10:12:39.990621", + "url": "/v1/software/bubbleupnp" +} diff --git a/site/public/v1/software/bubbly/index.json b/site/public/v1/software/bubbly/index.json new file mode 100644 index 000000000000..fad4fa24a216 --- /dev/null +++ b/site/public/v1/software/bubbly/index.json @@ -0,0 +1,19 @@ +{ + "id": 1236, + "slug": "bubbly", + "name": "Bubbly", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16828407" + ], + "created_at": "2026-07-10T10:12:39.990621", + "updated_at": "2026-07-10T10:12:39.990621", + "url": "/v1/software/bubbly" +} diff --git a/site/public/v1/software/budapest-reference-connectome/index.json b/site/public/v1/software/budapest-reference-connectome/index.json new file mode 100644 index 000000000000..d125ca69a587 --- /dev/null +++ b/site/public/v1/software/budapest-reference-connectome/index.json @@ -0,0 +1,19 @@ +{ + "id": 1237, + "slug": "budapest-reference-connectome", + "name": "Budapest Reference Connectome", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q20970339" + ], + "created_at": "2026-07-10T10:12:39.991690", + "updated_at": "2026-07-10T10:12:39.991690", + "url": "/v1/software/budapest-reference-connectome" +} diff --git a/site/public/v1/software/buffer/index.json b/site/public/v1/software/buffer/index.json new file mode 100644 index 000000000000..59d5105ef5d0 --- /dev/null +++ b/site/public/v1/software/buffer/index.json @@ -0,0 +1,19 @@ +{ + "id": 1238, + "slug": "buffer", + "name": "Buffer", + "release_date": "2010-11-30", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q15633715" + ], + "created_at": "2026-07-10T10:12:39.991690", + "updated_at": "2026-07-10T10:12:39.991690", + "url": "/v1/software/buffer" +} diff --git a/site/public/v1/software/bugtrap/index.json b/site/public/v1/software/bugtrap/index.json new file mode 100644 index 000000000000..e629700c30fa --- /dev/null +++ b/site/public/v1/software/bugtrap/index.json @@ -0,0 +1,21 @@ +{ + "id": 1239, + "slug": "bugtrap", + "name": "BugTrap", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q133288368" + ], + "created_at": "2026-07-10T10:12:39.991690", + "updated_at": "2026-07-10T10:12:39.991690", + "url": "/v1/software/bugtrap" +} diff --git a/site/public/v1/software/build-a-bird/index.json b/site/public/v1/software/build-a-bird/index.json new file mode 100644 index 000000000000..3d939125ebc2 --- /dev/null +++ b/site/public/v1/software/build-a-bird/index.json @@ -0,0 +1,19 @@ +{ + "id": 1240, + "slug": "build-a-bird", + "name": "Build-A-Bird", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4986376" + ], + "created_at": "2026-07-10T10:12:39.992646", + "updated_at": "2026-07-10T10:12:39.992646", + "url": "/v1/software/build-a-bird" +} diff --git a/site/public/v1/software/buka/index.json b/site/public/v1/software/buka/index.json new file mode 100644 index 000000000000..df7633a7a96e --- /dev/null +++ b/site/public/v1/software/buka/index.json @@ -0,0 +1,19 @@ +{ + "id": 1242, + "slug": "buka", + "name": "buka", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q59771340" + ], + "created_at": "2026-07-10T10:12:39.992646", + "updated_at": "2026-07-10T10:12:39.992646", + "url": "/v1/software/buka" +} diff --git a/site/public/v1/software/bulkhead-pattern/index.json b/site/public/v1/software/bulkhead-pattern/index.json new file mode 100644 index 000000000000..540cc03fb7bc --- /dev/null +++ b/site/public/v1/software/bulkhead-pattern/index.json @@ -0,0 +1,19 @@ +{ + "id": 1243, + "slug": "bulkhead-pattern", + "name": "Bulkhead pattern", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139855622" + ], + "created_at": "2026-07-10T10:12:39.993636", + "updated_at": "2026-07-10T10:12:39.993636", + "url": "/v1/software/bulkhead-pattern" +} diff --git a/site/public/v1/software/bullzip-pdf-printer/index.json b/site/public/v1/software/bullzip-pdf-printer/index.json new file mode 100644 index 000000000000..ae33506e6693 --- /dev/null +++ b/site/public/v1/software/bullzip-pdf-printer/index.json @@ -0,0 +1,19 @@ +{ + "id": 1244, + "slug": "bullzip-pdf-printer", + "name": "Bullzip PDF Printer", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4997111" + ], + "created_at": "2026-07-10T10:12:39.993636", + "updated_at": "2026-07-10T10:12:39.993636", + "url": "/v1/software/bullzip-pdf-printer" +} diff --git a/site/public/v1/software/bump/index.json b/site/public/v1/software/bump/index.json new file mode 100644 index 000000000000..3e7f8119ec01 --- /dev/null +++ b/site/public/v1/software/bump/index.json @@ -0,0 +1,21 @@ +{ + "id": 1245, + "slug": "bump", + "name": "Bump", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "iOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4997299" + ], + "created_at": "2026-07-10T10:12:39.993636", + "updated_at": "2026-07-10T10:12:39.993636", + "url": "/v1/software/bump" +} diff --git a/site/public/v1/software/bumpercar/index.json b/site/public/v1/software/bumpercar/index.json new file mode 100644 index 000000000000..8f40349135cf --- /dev/null +++ b/site/public/v1/software/bumpercar/index.json @@ -0,0 +1,23 @@ +{ + "id": 1246, + "slug": "bumpercar", + "name": "BumperCar", + "release_date": "2004-01-01", + "developers": [ + "Freeverse" + ], + "publishers": [], + "operating_systems": [ + "macOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4997325" + ], + "created_at": "2026-07-10T10:12:39.993636", + "updated_at": "2026-07-10T10:12:39.993636", + "url": "/v1/software/bumpercar" +} diff --git a/site/public/v1/software/bundestrip/index.json b/site/public/v1/software/bundestrip/index.json new file mode 100644 index 000000000000..a74318c85d94 --- /dev/null +++ b/site/public/v1/software/bundestrip/index.json @@ -0,0 +1,22 @@ +{ + "id": 1247, + "slug": "bundestrip", + "name": "BundesTrip", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Python", + "TypeScript" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139604866" + ], + "created_at": "2026-07-10T10:12:39.994713", + "updated_at": "2026-07-10T10:12:39.994713", + "url": "/v1/software/bundestrip" +} diff --git a/site/public/v1/software/bundled-software/index.json b/site/public/v1/software/bundled-software/index.json new file mode 100644 index 000000000000..63d7f1e3673d --- /dev/null +++ b/site/public/v1/software/bundled-software/index.json @@ -0,0 +1,19 @@ +{ + "id": 1248, + "slug": "bundled-software", + "name": "bundled software", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4997553" + ], + "created_at": "2026-07-10T10:12:39.994713", + "updated_at": "2026-07-10T10:12:39.994713", + "url": "/v1/software/bundled-software" +} diff --git a/site/public/v1/software/bunkatopics/index.json b/site/public/v1/software/bunkatopics/index.json new file mode 100644 index 000000000000..7f63c027b27d --- /dev/null +++ b/site/public/v1/software/bunkatopics/index.json @@ -0,0 +1,23 @@ +{ + "id": 1249, + "slug": "bunkatopics", + "name": "BunkaTopics", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Python" + ], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123348468" + ], + "created_at": "2026-07-10T10:12:39.994713", + "updated_at": "2026-07-10T10:12:39.994713", + "url": "/v1/software/bunkatopics" +} diff --git a/site/public/v1/software/bunkerweb/index.json b/site/public/v1/software/bunkerweb/index.json new file mode 100644 index 000000000000..7767639b29f3 --- /dev/null +++ b/site/public/v1/software/bunkerweb/index.json @@ -0,0 +1,19 @@ +{ + "id": 1250, + "slug": "bunkerweb", + "name": "BunkerWeb", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122929604" + ], + "created_at": "2026-07-10T10:12:39.995685", + "updated_at": "2026-07-10T10:12:39.995685", + "url": "/v1/software/bunkerweb" +} diff --git a/site/public/v1/software/bunqdesktop/index.json b/site/public/v1/software/bunqdesktop/index.json new file mode 100644 index 000000000000..9ba7c011c6e2 --- /dev/null +++ b/site/public/v1/software/bunqdesktop/index.json @@ -0,0 +1,21 @@ +{ + "id": 1251, + "slug": "bunqdesktop", + "name": "bunqdesktop", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q59771332" + ], + "created_at": "2026-07-10T10:12:39.995685", + "updated_at": "2026-07-10T10:12:39.995685", + "url": "/v1/software/bunqdesktop" +} diff --git a/site/public/v1/software/burn-proof/index.json b/site/public/v1/software/burn-proof/index.json new file mode 100644 index 000000000000..47e96ab04db2 --- /dev/null +++ b/site/public/v1/software/burn-proof/index.json @@ -0,0 +1,21 @@ +{ + "id": 1252, + "slug": "burn-proof", + "name": "Burn-Proof", + "release_date": null, + "developers": [ + "Sanyo" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q9182223" + ], + "created_at": "2026-07-10T10:12:39.995685", + "updated_at": "2026-07-10T10:12:39.995685", + "url": "/v1/software/burn-proof" +} diff --git a/site/public/v1/software/burncase-3d/index.json b/site/public/v1/software/burncase-3d/index.json new file mode 100644 index 000000000000..6f9f4d54f25d --- /dev/null +++ b/site/public/v1/software/burncase-3d/index.json @@ -0,0 +1,21 @@ +{ + "id": 1253, + "slug": "burncase-3d", + "name": "BurnCase 3D", + "release_date": null, + "developers": [ + "Johannes Kepler University Linz" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1016713" + ], + "created_at": "2026-07-10T10:12:39.996689", + "updated_at": "2026-07-10T10:12:39.996689", + "url": "/v1/software/burncase-3d" +} diff --git a/site/public/v1/software/burp-suite/index.json b/site/public/v1/software/burp-suite/index.json new file mode 100644 index 000000000000..b368b05f3a54 --- /dev/null +++ b/site/public/v1/software/burp-suite/index.json @@ -0,0 +1,21 @@ +{ + "id": 1254, + "slug": "burp-suite", + "name": "Burp Suite", + "release_date": "2004-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Java" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2324584" + ], + "created_at": "2026-07-10T10:12:39.996689", + "updated_at": "2026-07-10T10:12:39.996689", + "url": "/v1/software/burp-suite" +} diff --git a/site/public/v1/software/burrows-wheeler-aligner/index.json b/site/public/v1/software/burrows-wheeler-aligner/index.json new file mode 100644 index 000000000000..7f6eec9049c4 --- /dev/null +++ b/site/public/v1/software/burrows-wheeler-aligner/index.json @@ -0,0 +1,19 @@ +{ + "id": 1255, + "slug": "burrows-wheeler-aligner", + "name": "Burrows-Wheeler Aligner", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25395193" + ], + "created_at": "2026-07-10T10:12:39.996689", + "updated_at": "2026-07-10T10:12:39.996689", + "url": "/v1/software/burrows-wheeler-aligner" +} diff --git a/site/public/v1/software/burstcoin/index.json b/site/public/v1/software/burstcoin/index.json new file mode 100644 index 000000000000..4939fd6743d5 --- /dev/null +++ b/site/public/v1/software/burstcoin/index.json @@ -0,0 +1,21 @@ +{ + "id": 1256, + "slug": "burstcoin", + "name": "Burstcoin", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "GNU General Public License, version 3.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28765889" + ], + "created_at": "2026-07-10T10:12:39.996689", + "updated_at": "2026-07-10T10:12:39.996689", + "url": "/v1/software/burstcoin" +} diff --git a/site/public/v1/software/business-catalyst/index.json b/site/public/v1/software/business-catalyst/index.json new file mode 100644 index 000000000000..06d3c6b67273 --- /dev/null +++ b/site/public/v1/software/business-catalyst/index.json @@ -0,0 +1,21 @@ +{ + "id": 1257, + "slug": "business-catalyst", + "name": "Business Catalyst", + "release_date": null, + "developers": [ + "Adobe" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5001687" + ], + "created_at": "2026-07-10T10:12:39.997728", + "updated_at": "2026-07-10T10:12:39.997728", + "url": "/v1/software/business-catalyst" +} diff --git a/site/public/v1/software/business-intelligence-software/index.json b/site/public/v1/software/business-intelligence-software/index.json new file mode 100644 index 000000000000..dd04ef62dc99 --- /dev/null +++ b/site/public/v1/software/business-intelligence-software/index.json @@ -0,0 +1,19 @@ +{ + "id": 1258, + "slug": "business-intelligence-software", + "name": "business intelligence software", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5001888" + ], + "created_at": "2026-07-10T10:12:39.997728", + "updated_at": "2026-07-10T10:12:39.997728", + "url": "/v1/software/business-intelligence-software" +} diff --git a/site/public/v1/software/businessobjects-web-intelligence/index.json b/site/public/v1/software/businessobjects-web-intelligence/index.json new file mode 100644 index 000000000000..c59c7ad1ecc0 --- /dev/null +++ b/site/public/v1/software/businessobjects-web-intelligence/index.json @@ -0,0 +1,19 @@ +{ + "id": 1259, + "slug": "businessobjects-web-intelligence", + "name": "BusinessObjects Web Intelligence", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122782808" + ], + "created_at": "2026-07-10T10:12:39.997728", + "updated_at": "2026-07-10T10:12:39.997728", + "url": "/v1/software/businessobjects-web-intelligence" +} diff --git a/site/public/v1/software/butler/index.json b/site/public/v1/software/butler/index.json new file mode 100644 index 000000000000..6db9f0a2e94b --- /dev/null +++ b/site/public/v1/software/butler/index.json @@ -0,0 +1,21 @@ +{ + "id": 1260, + "slug": "butler", + "name": "Butler", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "donationware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5002565" + ], + "created_at": "2026-07-10T10:12:39.998713", + "updated_at": "2026-07-10T10:12:39.998713", + "url": "/v1/software/butler" +} diff --git a/site/public/v1/software/buttondown/index.json b/site/public/v1/software/buttondown/index.json new file mode 100644 index 000000000000..68f94c4b6356 --- /dev/null +++ b/site/public/v1/software/buttondown/index.json @@ -0,0 +1,19 @@ +{ + "id": 1261, + "slug": "buttondown", + "name": "Buttondown", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131583934" + ], + "created_at": "2026-07-10T10:12:39.998713", + "updated_at": "2026-07-10T10:12:39.998713", + "url": "/v1/software/buttondown" +} diff --git a/site/public/v1/software/buzan-s-imindmap/index.json b/site/public/v1/software/buzan-s-imindmap/index.json new file mode 100644 index 000000000000..da64b53cd872 --- /dev/null +++ b/site/public/v1/software/buzan-s-imindmap/index.json @@ -0,0 +1,22 @@ +{ + "id": 1262, + "slug": "buzan-s-imindmap", + "name": "Buzan's iMindMap", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3266380" + ], + "created_at": "2026-07-10T10:12:39.999716", + "updated_at": "2026-07-10T10:12:39.999716", + "url": "/v1/software/buzan-s-imindmap" +} diff --git a/site/public/v1/software/buzzdata/index.json b/site/public/v1/software/buzzdata/index.json new file mode 100644 index 000000000000..51e08308a4f5 --- /dev/null +++ b/site/public/v1/software/buzzdata/index.json @@ -0,0 +1,19 @@ +{ + "id": 1263, + "slug": "buzzdata", + "name": "BuzzData", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084821" + ], + "created_at": "2026-07-10T10:12:39.999716", + "updated_at": "2026-07-10T10:12:39.999716", + "url": "/v1/software/buzzdata" +} diff --git a/site/public/v1/software/bv4-1/index.json b/site/public/v1/software/bv4-1/index.json new file mode 100644 index 000000000000..c4f91222a7a1 --- /dev/null +++ b/site/public/v1/software/bv4-1/index.json @@ -0,0 +1,23 @@ +{ + "id": 1264, + "slug": "bv4-1", + "name": "BV4.1", + "release_date": null, + "developers": [ + "Federal Statistical Office of Germany" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q797100" + ], + "created_at": "2026-07-10T10:12:39.999716", + "updated_at": "2026-07-10T10:12:39.999716", + "url": "/v1/software/bv4-1" +} diff --git a/site/public/v1/software/bwfla-emulation-as-a-service/index.json b/site/public/v1/software/bwfla-emulation-as-a-service/index.json new file mode 100644 index 000000000000..ba19ca2cbaa0 --- /dev/null +++ b/site/public/v1/software/bwfla-emulation-as-a-service/index.json @@ -0,0 +1,24 @@ +{ + "id": 1265, + "slug": "bwfla-emulation-as-a-service", + "name": "bwFLA Emulation as a Service", + "release_date": null, + "developers": [ + "University of Freiburg" + ], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q34489794" + ], + "created_at": "2026-07-10T10:12:39.999716", + "updated_at": "2026-07-10T10:12:39.999716", + "url": "/v1/software/bwfla-emulation-as-a-service" +} diff --git a/site/public/v1/software/byfl/index.json b/site/public/v1/software/byfl/index.json new file mode 100644 index 000000000000..a27969a417d1 --- /dev/null +++ b/site/public/v1/software/byfl/index.json @@ -0,0 +1,19 @@ +{ + "id": 1266, + "slug": "byfl", + "name": "byfl", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28941702" + ], + "created_at": "2026-07-10T10:12:40.000693", + "updated_at": "2026-07-10T10:12:40.000693", + "url": "/v1/software/byfl" +} diff --git a/site/public/v1/software/byggdox/index.json b/site/public/v1/software/byggdox/index.json new file mode 100644 index 000000000000..a26eca879529 --- /dev/null +++ b/site/public/v1/software/byggdox/index.json @@ -0,0 +1,19 @@ +{ + "id": 1267, + "slug": "byggdox", + "name": "Byggdox", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139591403" + ], + "created_at": "2026-07-10T10:12:40.000693", + "updated_at": "2026-07-10T10:12:40.000693", + "url": "/v1/software/byggdox" +} diff --git a/site/public/v1/software/bytemarc/index.json b/site/public/v1/software/bytemarc/index.json new file mode 100644 index 000000000000..690d62f161be --- /dev/null +++ b/site/public/v1/software/bytemarc/index.json @@ -0,0 +1,19 @@ +{ + "id": 1268, + "slug": "bytemarc", + "name": "ByteMARC", + "release_date": "2002-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62128990" + ], + "created_at": "2026-07-10T10:12:40.000693", + "updated_at": "2026-07-10T10:12:40.000693", + "url": "/v1/software/bytemarc" +} diff --git a/site/public/v1/software/byteplant/index.json b/site/public/v1/software/byteplant/index.json new file mode 100644 index 000000000000..4bf576727c3f --- /dev/null +++ b/site/public/v1/software/byteplant/index.json @@ -0,0 +1,19 @@ +{ + "id": 1269, + "slug": "byteplant", + "name": "Byteplant", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126722374" + ], + "created_at": "2026-07-10T10:12:40.001718", + "updated_at": "2026-07-10T10:12:40.001718", + "url": "/v1/software/byteplant" +} diff --git a/site/public/v1/software/bytetren/index.json b/site/public/v1/software/bytetren/index.json new file mode 100644 index 000000000000..1f1539392e28 --- /dev/null +++ b/site/public/v1/software/bytetren/index.json @@ -0,0 +1,19 @@ +{ + "id": 1270, + "slug": "bytetren", + "name": "ByteTren", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139660623" + ], + "created_at": "2026-07-10T10:12:40.001718", + "updated_at": "2026-07-10T10:12:40.001718", + "url": "/v1/software/bytetren" +} diff --git a/site/public/v1/software/c-access/index.json b/site/public/v1/software/c-access/index.json new file mode 100644 index 000000000000..ab0ce5830818 --- /dev/null +++ b/site/public/v1/software/c-access/index.json @@ -0,0 +1,21 @@ +{ + "id": 1271, + "slug": "c-access", + "name": "C-Access", + "release_date": null, + "developers": [ + "KAI Commuter" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q97307599" + ], + "created_at": "2026-07-10T10:12:40.001718", + "updated_at": "2026-07-10T10:12:40.001718", + "url": "/v1/software/c-access" +} diff --git a/site/public/v1/software/c-amp/index.json b/site/public/v1/software/c-amp/index.json new file mode 100644 index 000000000000..ba3483d3590e --- /dev/null +++ b/site/public/v1/software/c-amp/index.json @@ -0,0 +1,21 @@ +{ + "id": 1272, + "slug": "c-amp", + "name": "C++ AMP", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q722084" + ], + "created_at": "2026-07-10T10:12:40.002690", + "updated_at": "2026-07-10T10:12:40.002690", + "url": "/v1/software/c-amp" +} diff --git a/site/public/v1/software/c-client/index.json b/site/public/v1/software/c-client/index.json new file mode 100644 index 000000000000..119c3f917c37 --- /dev/null +++ b/site/public/v1/software/c-client/index.json @@ -0,0 +1,19 @@ +{ + "id": 1273, + "slug": "c-client", + "name": "c-client", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065463" + ], + "created_at": "2026-07-10T10:12:40.002690", + "updated_at": "2026-07-10T10:12:40.002690", + "url": "/v1/software/c-client" +} diff --git a/site/public/v1/software/c2call-gmbh/index.json b/site/public/v1/software/c2call-gmbh/index.json new file mode 100644 index 000000000000..85e2572ecbce --- /dev/null +++ b/site/public/v1/software/c2call-gmbh/index.json @@ -0,0 +1,19 @@ +{ + "id": 1274, + "slug": "c2call-gmbh", + "name": "C2Call GmbH", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5008078" + ], + "created_at": "2026-07-10T10:12:40.002690", + "updated_at": "2026-07-10T10:12:40.002690", + "url": "/v1/software/c2call-gmbh" +} diff --git a/site/public/v1/software/c2talk/index.json b/site/public/v1/software/c2talk/index.json new file mode 100644 index 000000000000..bd81924d227b --- /dev/null +++ b/site/public/v1/software/c2talk/index.json @@ -0,0 +1,19 @@ +{ + "id": 1275, + "slug": "c2talk", + "name": "c2talk", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18455528" + ], + "created_at": "2026-07-10T10:12:40.003688", + "updated_at": "2026-07-10T10:12:40.003688", + "url": "/v1/software/c2talk" +} diff --git a/site/public/v1/software/c6-multichat/index.json b/site/public/v1/software/c6-multichat/index.json new file mode 100644 index 000000000000..e03b2980a6db --- /dev/null +++ b/site/public/v1/software/c6-multichat/index.json @@ -0,0 +1,21 @@ +{ + "id": 1276, + "slug": "c6-multichat", + "name": "C6 Multichat", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3648445" + ], + "created_at": "2026-07-10T10:12:40.003688", + "updated_at": "2026-07-10T10:12:40.003688", + "url": "/v1/software/c6-multichat" +} diff --git a/site/public/v1/software/ca-anti-spyware/index.json b/site/public/v1/software/ca-anti-spyware/index.json new file mode 100644 index 000000000000..176b286a08ac --- /dev/null +++ b/site/public/v1/software/ca-anti-spyware/index.json @@ -0,0 +1,21 @@ +{ + "id": 1277, + "slug": "ca-anti-spyware", + "name": "CA Anti-Spyware", + "release_date": null, + "developers": [ + "CA Technologies" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5008934" + ], + "created_at": "2026-07-10T10:12:40.003688", + "updated_at": "2026-07-10T10:12:40.003688", + "url": "/v1/software/ca-anti-spyware" +} diff --git a/site/public/v1/software/ca-it-process-automation-manager/index.json b/site/public/v1/software/ca-it-process-automation-manager/index.json new file mode 100644 index 000000000000..7460b667d8e0 --- /dev/null +++ b/site/public/v1/software/ca-it-process-automation-manager/index.json @@ -0,0 +1,21 @@ +{ + "id": 1278, + "slug": "ca-it-process-automation-manager", + "name": "CA IT Process Automation Manager", + "release_date": null, + "developers": [ + "CA Technologies" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5008944" + ], + "created_at": "2026-07-10T10:12:40.003688", + "updated_at": "2026-07-10T10:12:40.003688", + "url": "/v1/software/ca-it-process-automation-manager" +} diff --git a/site/public/v1/software/ca-spectrum/index.json b/site/public/v1/software/ca-spectrum/index.json new file mode 100644 index 000000000000..0312286f2751 --- /dev/null +++ b/site/public/v1/software/ca-spectrum/index.json @@ -0,0 +1,19 @@ +{ + "id": 1279, + "slug": "ca-spectrum", + "name": "CA Spectrum", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1493480" + ], + "created_at": "2026-07-10T10:12:40.004694", + "updated_at": "2026-07-10T10:12:40.004694", + "url": "/v1/software/ca-spectrum" +} diff --git a/site/public/v1/software/ca-workload-automation-ae/index.json b/site/public/v1/software/ca-workload-automation-ae/index.json new file mode 100644 index 000000000000..af4fa76c165b --- /dev/null +++ b/site/public/v1/software/ca-workload-automation-ae/index.json @@ -0,0 +1,21 @@ +{ + "id": 1280, + "slug": "ca-workload-automation-ae", + "name": "CA Workload Automation AE", + "release_date": null, + "developers": [ + "CA Technologies" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2931005" + ], + "created_at": "2026-07-10T10:12:40.004694", + "updated_at": "2026-07-10T10:12:40.004694", + "url": "/v1/software/ca-workload-automation-ae" +} diff --git a/site/public/v1/software/cacao/index.json b/site/public/v1/software/cacao/index.json new file mode 100644 index 000000000000..cce41074dc52 --- /dev/null +++ b/site/public/v1/software/cacao/index.json @@ -0,0 +1,21 @@ +{ + "id": 1281, + "slug": "cacao", + "name": "CACAO", + "release_date": null, + "developers": [ + "CyVerse" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122818615" + ], + "created_at": "2026-07-10T10:12:40.004694", + "updated_at": "2026-07-10T10:12:40.004694", + "url": "/v1/software/cacao" +} diff --git a/site/public/v1/software/cachix/index.json b/site/public/v1/software/cachix/index.json new file mode 100644 index 000000000000..6f2cae34ba04 --- /dev/null +++ b/site/public/v1/software/cachix/index.json @@ -0,0 +1,19 @@ +{ + "id": 1282, + "slug": "cachix", + "name": "Cachix", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130217155" + ], + "created_at": "2026-07-10T10:12:40.005688", + "updated_at": "2026-07-10T10:12:40.005688", + "url": "/v1/software/cachix" +} diff --git a/site/public/v1/software/cad-e/index.json b/site/public/v1/software/cad-e/index.json new file mode 100644 index 000000000000..4509686e7511 --- /dev/null +++ b/site/public/v1/software/cad-e/index.json @@ -0,0 +1,19 @@ +{ + "id": 1283, + "slug": "cad-e", + "name": "CAD-e", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18619872" + ], + "created_at": "2026-07-10T10:12:40.005688", + "updated_at": "2026-07-10T10:12:40.005688", + "url": "/v1/software/cad-e" +} diff --git a/site/public/v1/software/cad-overlay/index.json b/site/public/v1/software/cad-overlay/index.json new file mode 100644 index 000000000000..fb5724b29484 --- /dev/null +++ b/site/public/v1/software/cad-overlay/index.json @@ -0,0 +1,19 @@ +{ + "id": 1284, + "slug": "cad-overlay", + "name": "CAD Overlay", + "release_date": "1989-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28446216" + ], + "created_at": "2026-07-10T10:12:40.005688", + "updated_at": "2026-07-10T10:12:40.005688", + "url": "/v1/software/cad-overlay" +} diff --git a/site/public/v1/software/caddie/index.json b/site/public/v1/software/caddie/index.json new file mode 100644 index 000000000000..085b0fd8c640 --- /dev/null +++ b/site/public/v1/software/caddie/index.json @@ -0,0 +1,19 @@ +{ + "id": 1285, + "slug": "caddie", + "name": "Caddie", + "release_date": "1986-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5016296" + ], + "created_at": "2026-07-10T10:12:40.006948", + "updated_at": "2026-07-10T10:12:40.006948", + "url": "/v1/software/caddie" +} diff --git a/site/public/v1/software/cadec/index.json b/site/public/v1/software/cadec/index.json new file mode 100644 index 000000000000..4d3da995b751 --- /dev/null +++ b/site/public/v1/software/cadec/index.json @@ -0,0 +1,19 @@ +{ + "id": 1286, + "slug": "cadec", + "name": "CADEC", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5016344" + ], + "created_at": "2026-07-10T10:12:40.006948", + "updated_at": "2026-07-10T10:12:40.006948", + "url": "/v1/software/cadec" +} diff --git a/site/public/v1/software/cadkey/index.json b/site/public/v1/software/cadkey/index.json new file mode 100644 index 000000000000..3dd6f9a53591 --- /dev/null +++ b/site/public/v1/software/cadkey/index.json @@ -0,0 +1,22 @@ +{ + "id": 1287, + "slug": "cadkey", + "name": "CADKEY", + "release_date": "1984-12-01", + "developers": [], + "publishers": [], + "operating_systems": [ + "DOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5008558" + ], + "created_at": "2026-07-10T10:12:40.006948", + "updated_at": "2026-07-10T10:12:40.006948", + "url": "/v1/software/cadkey" +} diff --git a/site/public/v1/software/cadstar/index.json b/site/public/v1/software/cadstar/index.json new file mode 100644 index 000000000000..d58b3e07f3cb --- /dev/null +++ b/site/public/v1/software/cadstar/index.json @@ -0,0 +1,19 @@ +{ + "id": 1288, + "slug": "cadstar", + "name": "CADSTAR", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5008572" + ], + "created_at": "2026-07-10T10:12:40.007957", + "updated_at": "2026-07-10T10:12:40.007957", + "url": "/v1/software/cadstar" +} diff --git a/site/public/v1/software/cadview/index.json b/site/public/v1/software/cadview/index.json new file mode 100644 index 000000000000..f401e825cba9 --- /dev/null +++ b/site/public/v1/software/cadview/index.json @@ -0,0 +1,19 @@ +{ + "id": 1289, + "slug": "cadview", + "name": "CADView", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q89465394" + ], + "created_at": "2026-07-10T10:12:40.007957", + "updated_at": "2026-07-10T10:12:40.007957", + "url": "/v1/software/cadview" +} diff --git a/site/public/v1/software/cagrid/index.json b/site/public/v1/software/cagrid/index.json new file mode 100644 index 000000000000..2d7f0e451a47 --- /dev/null +++ b/site/public/v1/software/cagrid/index.json @@ -0,0 +1,19 @@ +{ + "id": 1290, + "slug": "cagrid", + "name": "CaGrid", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5015151" + ], + "created_at": "2026-07-10T10:12:40.007957", + "updated_at": "2026-07-10T10:12:40.007957", + "url": "/v1/software/cagrid" +} diff --git a/site/public/v1/software/cai-format/index.json b/site/public/v1/software/cai-format/index.json new file mode 100644 index 000000000000..e83b39d03f0b --- /dev/null +++ b/site/public/v1/software/cai-format/index.json @@ -0,0 +1,19 @@ +{ + "id": 1291, + "slug": "cai-format", + "name": "CAI Format", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16954806" + ], + "created_at": "2026-07-10T10:12:40.008959", + "updated_at": "2026-07-10T10:12:40.008959", + "url": "/v1/software/cai-format" +} diff --git a/site/public/v1/software/cainiao/index.json b/site/public/v1/software/cainiao/index.json new file mode 100644 index 000000000000..0be29498c3a2 --- /dev/null +++ b/site/public/v1/software/cainiao/index.json @@ -0,0 +1,19 @@ +{ + "id": 1292, + "slug": "cainiao", + "name": "Cainiao", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16947973" + ], + "created_at": "2026-07-10T10:12:40.008959", + "updated_at": "2026-07-10T10:12:40.008959", + "url": "/v1/software/cainiao" +} diff --git a/site/public/v1/software/cakewalk-by-bandlab/index.json b/site/public/v1/software/cakewalk-by-bandlab/index.json new file mode 100644 index 000000000000..652bdf9fbfc3 --- /dev/null +++ b/site/public/v1/software/cakewalk-by-bandlab/index.json @@ -0,0 +1,19 @@ +{ + "id": 1293, + "slug": "cakewalk-by-bandlab", + "name": "Cakewalk by BandLab", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110913753" + ], + "created_at": "2026-07-10T10:12:40.008959", + "updated_at": "2026-07-10T10:12:40.008959", + "url": "/v1/software/cakewalk-by-bandlab" +} diff --git a/site/public/v1/software/calamari/index.json b/site/public/v1/software/calamari/index.json new file mode 100644 index 000000000000..e6e07b02a3d6 --- /dev/null +++ b/site/public/v1/software/calamari/index.json @@ -0,0 +1,23 @@ +{ + "id": 1294, + "slug": "calamari", + "name": "Calamari", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Python" + ], + "licenses": [ + "Apache Software License 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124348079" + ], + "created_at": "2026-07-10T10:12:40.008959", + "updated_at": "2026-07-10T10:12:40.008959", + "url": "/v1/software/calamari" +} diff --git a/site/public/v1/software/calamus/index.json b/site/public/v1/software/calamus/index.json new file mode 100644 index 000000000000..20268ce4f573 --- /dev/null +++ b/site/public/v1/software/calamus/index.json @@ -0,0 +1,19 @@ +{ + "id": 1295, + "slug": "calamus", + "name": "Calamus", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1026230" + ], + "created_at": "2026-07-10T10:12:40.008959", + "updated_at": "2026-07-10T10:12:40.008959", + "url": "/v1/software/calamus" +} diff --git a/site/public/v1/software/calcpad/index.json b/site/public/v1/software/calcpad/index.json new file mode 100644 index 000000000000..57c877ccde66 --- /dev/null +++ b/site/public/v1/software/calcpad/index.json @@ -0,0 +1,19 @@ +{ + "id": 1296, + "slug": "calcpad", + "name": "Calcpad", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137727794" + ], + "created_at": "2026-07-10T10:12:40.010324", + "updated_at": "2026-07-10T10:12:40.010324", + "url": "/v1/software/calcpad" +} diff --git a/site/public/v1/software/calcufloor/index.json b/site/public/v1/software/calcufloor/index.json new file mode 100644 index 000000000000..fe787bc7b1fd --- /dev/null +++ b/site/public/v1/software/calcufloor/index.json @@ -0,0 +1,19 @@ +{ + "id": 1297, + "slug": "calcufloor", + "name": "Calcufloor", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137794393" + ], + "created_at": "2026-07-10T10:12:40.010324", + "updated_at": "2026-07-10T10:12:40.010324", + "url": "/v1/software/calcufloor" +} diff --git a/site/public/v1/software/calcurates/index.json b/site/public/v1/software/calcurates/index.json new file mode 100644 index 000000000000..cfa6c8437d2e --- /dev/null +++ b/site/public/v1/software/calcurates/index.json @@ -0,0 +1,19 @@ +{ + "id": 1298, + "slug": "calcurates", + "name": "Calcurates", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140042122" + ], + "created_at": "2026-07-10T10:12:40.011277", + "updated_at": "2026-07-10T10:12:40.011277", + "url": "/v1/software/calcurates" +} diff --git a/site/public/v1/software/calcurse/index.json b/site/public/v1/software/calcurse/index.json new file mode 100644 index 000000000000..6608ab664201 --- /dev/null +++ b/site/public/v1/software/calcurse/index.json @@ -0,0 +1,21 @@ +{ + "id": 1299, + "slug": "calcurse", + "name": "Calcurse", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "2-clause BSD License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62851771" + ], + "created_at": "2026-07-10T10:12:40.011277", + "updated_at": "2026-07-10T10:12:40.011277", + "url": "/v1/software/calcurse" +} diff --git a/site/public/v1/software/calen-dash/index.json b/site/public/v1/software/calen-dash/index.json new file mode 100644 index 000000000000..1fdc4becf472 --- /dev/null +++ b/site/public/v1/software/calen-dash/index.json @@ -0,0 +1,19 @@ +{ + "id": 1300, + "slug": "calen-dash", + "name": "Calen Dash", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138735614" + ], + "created_at": "2026-07-10T10:12:40.011277", + "updated_at": "2026-07-10T10:12:40.011277", + "url": "/v1/software/calen-dash" +} diff --git a/site/public/v1/software/calenda/index.json b/site/public/v1/software/calenda/index.json new file mode 100644 index 000000000000..4ac85c06e8aa --- /dev/null +++ b/site/public/v1/software/calenda/index.json @@ -0,0 +1,19 @@ +{ + "id": 1301, + "slug": "calenda", + "name": "Calenda", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084823" + ], + "created_at": "2026-07-10T10:12:40.011277", + "updated_at": "2026-07-10T10:12:40.011277", + "url": "/v1/software/calenda" +} diff --git a/site/public/v1/software/calendar-exporter/index.json b/site/public/v1/software/calendar-exporter/index.json new file mode 100644 index 000000000000..02d54cb22ef5 --- /dev/null +++ b/site/public/v1/software/calendar-exporter/index.json @@ -0,0 +1,23 @@ +{ + "id": 1302, + "slug": "calendar-exporter", + "name": "Calendar Exporter", + "release_date": null, + "developers": [ + "C. M. Leal Ltda" + ], + "publishers": [], + "operating_systems": [ + "macOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138472614" + ], + "created_at": "2026-07-10T10:12:40.012315", + "updated_at": "2026-07-10T10:12:40.012315", + "url": "/v1/software/calendar-exporter" +} diff --git a/site/public/v1/software/calendar/index.json b/site/public/v1/software/calendar/index.json new file mode 100644 index 000000000000..b188de085503 --- /dev/null +++ b/site/public/v1/software/calendar/index.json @@ -0,0 +1,23 @@ +{ + "id": 1303, + "slug": "calendar", + "name": "Calendar", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Windows 10 Mobile", + "Windows Phone 8.1", + "Windows Phone 8" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q27928931" + ], + "created_at": "2026-07-10T10:12:40.012315", + "updated_at": "2026-07-10T10:12:40.012315", + "url": "/v1/software/calendar" +} diff --git a/site/public/v1/software/calest/index.json b/site/public/v1/software/calest/index.json new file mode 100644 index 000000000000..a843be3d01d7 --- /dev/null +++ b/site/public/v1/software/calest/index.json @@ -0,0 +1,19 @@ +{ + "id": 1304, + "slug": "calest", + "name": "CalEst", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5018102" + ], + "created_at": "2026-07-10T10:12:40.012315", + "updated_at": "2026-07-10T10:12:40.012315", + "url": "/v1/software/calest" +} diff --git a/site/public/v1/software/calfile/index.json b/site/public/v1/software/calfile/index.json new file mode 100644 index 000000000000..bb780dffdb10 --- /dev/null +++ b/site/public/v1/software/calfile/index.json @@ -0,0 +1,19 @@ +{ + "id": 1305, + "slug": "calfile", + "name": "CalFile", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q97179364" + ], + "created_at": "2026-07-10T10:12:40.013286", + "updated_at": "2026-07-10T10:12:40.013286", + "url": "/v1/software/calfile" +} diff --git a/site/public/v1/software/callapp/index.json b/site/public/v1/software/callapp/index.json new file mode 100644 index 000000000000..d3d4a3f5766a --- /dev/null +++ b/site/public/v1/software/callapp/index.json @@ -0,0 +1,19 @@ +{ + "id": 1306, + "slug": "callapp", + "name": "CallApp", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105834335" + ], + "created_at": "2026-07-10T10:12:40.013286", + "updated_at": "2026-07-10T10:12:40.013286", + "url": "/v1/software/callapp" +} diff --git a/site/public/v1/software/calligra-suite/index.json b/site/public/v1/software/calligra-suite/index.json new file mode 100644 index 000000000000..af0bf5d5336b --- /dev/null +++ b/site/public/v1/software/calligra-suite/index.json @@ -0,0 +1,25 @@ +{ + "id": 1307, + "slug": "calligra-suite", + "name": "Calligra Suite", + "release_date": "2000-01-01", + "developers": [], + "publishers": [], + "operating_systems": [ + "Unix-like operating system", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "GNU Lesser General Public License", + "GNU General Public License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q864680" + ], + "created_at": "2026-07-10T10:12:40.013286", + "updated_at": "2026-07-10T10:12:40.013286", + "url": "/v1/software/calligra-suite" +} diff --git a/site/public/v1/software/cambridge-algebra-system/index.json b/site/public/v1/software/cambridge-algebra-system/index.json new file mode 100644 index 000000000000..e8c9f2dd9089 --- /dev/null +++ b/site/public/v1/software/cambridge-algebra-system/index.json @@ -0,0 +1,25 @@ +{ + "id": 1308, + "slug": "cambridge-algebra-system", + "name": "Cambridge Algebra System", + "release_date": null, + "developers": [ + "John Fitch", + "Stephen R. Bourne" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "ALGOL 68C", + "BCPL" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16247009" + ], + "created_at": "2026-07-10T10:12:40.014283", + "updated_at": "2026-07-10T10:12:40.014283", + "url": "/v1/software/cambridge-algebra-system" +} diff --git a/site/public/v1/software/cambridge-animation-systems/index.json b/site/public/v1/software/cambridge-animation-systems/index.json new file mode 100644 index 000000000000..9c7d323e7e6c --- /dev/null +++ b/site/public/v1/software/cambridge-animation-systems/index.json @@ -0,0 +1,23 @@ +{ + "id": 1309, + "slug": "cambridge-animation-systems", + "name": "Cambridge Animation Systems", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "SGI O2", + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q24915332" + ], + "created_at": "2026-07-10T10:12:40.014283", + "updated_at": "2026-07-10T10:12:40.014283", + "url": "/v1/software/cambridge-animation-systems" +} diff --git a/site/public/v1/software/camel-view-testrig/index.json b/site/public/v1/software/camel-view-testrig/index.json new file mode 100644 index 000000000000..a2058e06ac42 --- /dev/null +++ b/site/public/v1/software/camel-view-testrig/index.json @@ -0,0 +1,19 @@ +{ + "id": 1310, + "slug": "camel-view-testrig", + "name": "CAMeL-View TestRig", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q428975" + ], + "created_at": "2026-07-10T10:12:40.014283", + "updated_at": "2026-07-10T10:12:40.014283", + "url": "/v1/software/camel-view-testrig" +} diff --git a/site/public/v1/software/cameleon/index.json b/site/public/v1/software/cameleon/index.json new file mode 100644 index 000000000000..3c189780fa0a --- /dev/null +++ b/site/public/v1/software/cameleon/index.json @@ -0,0 +1,19 @@ +{ + "id": 1311, + "slug": "cameleon", + "name": "Cameleon", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5025884" + ], + "created_at": "2026-07-10T10:12:40.015297", + "updated_at": "2026-07-10T10:12:40.015297", + "url": "/v1/software/cameleon" +} diff --git a/site/public/v1/software/camera-42/index.json b/site/public/v1/software/camera-42/index.json new file mode 100644 index 000000000000..8a90151623a8 --- /dev/null +++ b/site/public/v1/software/camera-42/index.json @@ -0,0 +1,19 @@ +{ + "id": 1312, + "slug": "camera-42", + "name": "Camera 42", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q15919088" + ], + "created_at": "2026-07-10T10:12:40.015297", + "updated_at": "2026-07-10T10:12:40.015297", + "url": "/v1/software/camera-42" +} diff --git a/site/public/v1/software/camerton/index.json b/site/public/v1/software/camerton/index.json new file mode 100644 index 000000000000..ca96df9e8e76 --- /dev/null +++ b/site/public/v1/software/camerton/index.json @@ -0,0 +1,19 @@ +{ + "id": 1313, + "slug": "camerton", + "name": "CAMERTON", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109524341" + ], + "created_at": "2026-07-10T10:12:40.015297", + "updated_at": "2026-07-10T10:12:40.015297", + "url": "/v1/software/camerton" +} diff --git a/site/public/v1/software/camfind/index.json b/site/public/v1/software/camfind/index.json new file mode 100644 index 000000000000..6a63a3e41543 --- /dev/null +++ b/site/public/v1/software/camfind/index.json @@ -0,0 +1,21 @@ +{ + "id": 1314, + "slug": "camfind", + "name": "CamFind", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "iOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q19877655" + ], + "created_at": "2026-07-10T10:12:40.016233", + "updated_at": "2026-07-10T10:12:40.016233", + "url": "/v1/software/camfind" +} diff --git a/site/public/v1/software/camo/index.json b/site/public/v1/software/camo/index.json new file mode 100644 index 000000000000..b4ca331a0797 --- /dev/null +++ b/site/public/v1/software/camo/index.json @@ -0,0 +1,19 @@ +{ + "id": 1315, + "slug": "camo", + "name": "Camo", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116701161" + ], + "created_at": "2026-07-10T10:12:40.016233", + "updated_at": "2026-07-10T10:12:40.016233", + "url": "/v1/software/camo" +} diff --git a/site/public/v1/software/campfire/index.json b/site/public/v1/software/campfire/index.json new file mode 100644 index 000000000000..2a92b27b1edd --- /dev/null +++ b/site/public/v1/software/campfire/index.json @@ -0,0 +1,19 @@ +{ + "id": 1316, + "slug": "campfire", + "name": "Campfire", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139807949" + ], + "created_at": "2026-07-10T10:12:40.016233", + "updated_at": "2026-07-10T10:12:40.016233", + "url": "/v1/software/campfire" +} diff --git a/site/public/v1/software/campus-maps/index.json b/site/public/v1/software/campus-maps/index.json new file mode 100644 index 000000000000..0b91daa7d582 --- /dev/null +++ b/site/public/v1/software/campus-maps/index.json @@ -0,0 +1,19 @@ +{ + "id": 1317, + "slug": "campus-maps", + "name": "Campus Maps", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q19877665" + ], + "created_at": "2026-07-10T10:12:40.017232", + "updated_at": "2026-07-10T10:12:40.017232", + "url": "/v1/software/campus-maps" +} diff --git a/site/public/v1/software/canalyzer/index.json b/site/public/v1/software/canalyzer/index.json new file mode 100644 index 000000000000..a5289de90f5b --- /dev/null +++ b/site/public/v1/software/canalyzer/index.json @@ -0,0 +1,21 @@ +{ + "id": 1318, + "slug": "canalyzer", + "name": "CANalyzer", + "release_date": "1992-01-01", + "developers": [ + "Vector Informatik" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1022805" + ], + "created_at": "2026-07-10T10:12:40.017232", + "updated_at": "2026-07-10T10:12:40.017232", + "url": "/v1/software/canalyzer" +} diff --git a/site/public/v1/software/candid/index.json b/site/public/v1/software/candid/index.json new file mode 100644 index 000000000000..3e27c8704ff6 --- /dev/null +++ b/site/public/v1/software/candid/index.json @@ -0,0 +1,19 @@ +{ + "id": 1319, + "slug": "candid", + "name": "Candid", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28453032" + ], + "created_at": "2026-07-10T10:12:40.017232", + "updated_at": "2026-07-10T10:12:40.017232", + "url": "/v1/software/candid" +} diff --git a/site/public/v1/software/cannon-brawl/index.json b/site/public/v1/software/cannon-brawl/index.json new file mode 100644 index 000000000000..a051fd8d54d7 --- /dev/null +++ b/site/public/v1/software/cannon-brawl/index.json @@ -0,0 +1,24 @@ +{ + "id": 1320, + "slug": "cannon-brawl", + "name": "Cannon Brawl", + "release_date": "2014-09-19", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [ + "action-adventure game", + "strategy video game", + "adventure video game", + "action game" + ], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q64915829" + ], + "created_at": "2026-07-10T10:12:40.017232", + "updated_at": "2026-07-10T10:12:40.017232", + "url": "/v1/software/cannon-brawl" +} diff --git a/site/public/v1/software/canoe/index.json b/site/public/v1/software/canoe/index.json new file mode 100644 index 000000000000..5cf9994ca25f --- /dev/null +++ b/site/public/v1/software/canoe/index.json @@ -0,0 +1,21 @@ +{ + "id": 1321, + "slug": "canoe", + "name": "CANoe", + "release_date": null, + "developers": [ + "Vector Informatik" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1022808" + ], + "created_at": "2026-07-10T10:12:40.018308", + "updated_at": "2026-07-10T10:12:40.018308", + "url": "/v1/software/canoe" +} diff --git a/site/public/v1/software/canoma/index.json b/site/public/v1/software/canoma/index.json new file mode 100644 index 000000000000..4c7cebee55d2 --- /dev/null +++ b/site/public/v1/software/canoma/index.json @@ -0,0 +1,19 @@ +{ + "id": 1322, + "slug": "canoma", + "name": "Canoma", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5033167" + ], + "created_at": "2026-07-10T10:12:40.018308", + "updated_at": "2026-07-10T10:12:40.018308", + "url": "/v1/software/canoma" +} diff --git a/site/public/v1/software/cantor/index.json b/site/public/v1/software/cantor/index.json new file mode 100644 index 000000000000..21775b5ec9ec --- /dev/null +++ b/site/public/v1/software/cantor/index.json @@ -0,0 +1,24 @@ +{ + "id": 1323, + "slug": "cantor", + "name": "Cantor", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5034027" + ], + "created_at": "2026-07-10T10:12:40.018308", + "updated_at": "2026-07-10T10:12:40.018308", + "url": "/v1/software/cantor" +} diff --git a/site/public/v1/software/canvas-x/index.json b/site/public/v1/software/canvas-x/index.json new file mode 100644 index 000000000000..aaa242f0cc0e --- /dev/null +++ b/site/public/v1/software/canvas-x/index.json @@ -0,0 +1,21 @@ +{ + "id": 1324, + "slug": "canvas-x", + "name": "Canvas X", + "release_date": null, + "developers": [ + "Deneba Software" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q75929129" + ], + "created_at": "2026-07-10T10:12:40.019295", + "updated_at": "2026-07-10T10:12:40.019295", + "url": "/v1/software/canvas-x" +} diff --git a/site/public/v1/software/cap-communication-access-point/index.json b/site/public/v1/software/cap-communication-access-point/index.json new file mode 100644 index 000000000000..22e13d409285 --- /dev/null +++ b/site/public/v1/software/cap-communication-access-point/index.json @@ -0,0 +1,25 @@ +{ + "id": 1325, + "slug": "cap-communication-access-point", + "name": "CAP (Communication Access Point)", + "release_date": null, + "developers": [ + "Messenger2050 Technologies" + ], + "publishers": [], + "operating_systems": [ + "iOS", + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q104666726" + ], + "created_at": "2026-07-10T10:12:40.019295", + "updated_at": "2026-07-10T10:12:40.019295", + "url": "/v1/software/cap-communication-access-point" +} diff --git a/site/public/v1/software/capella-q21965864/index.json b/site/public/v1/software/capella-q21965864/index.json new file mode 100644 index 000000000000..eac117e5c2e2 --- /dev/null +++ b/site/public/v1/software/capella-q21965864/index.json @@ -0,0 +1,26 @@ +{ + "id": 1326, + "slug": "capella-q21965864", + "name": "Capella", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [ + "Java" + ], + "licenses": [ + "Eclipse Public License 1.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q21965864" + ], + "created_at": "2026-07-10T10:12:40.019295", + "updated_at": "2026-07-10T10:12:40.019295", + "url": "/v1/software/capella-q21965864" +} diff --git a/site/public/v1/software/capella/index.json b/site/public/v1/software/capella/index.json new file mode 100644 index 000000000000..01872680e39e --- /dev/null +++ b/site/public/v1/software/capella/index.json @@ -0,0 +1,23 @@ +{ + "id": 1327, + "slug": "capella", + "name": "Capella", + "release_date": "1998-01-01", + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [ + "dubbing" + ], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2937543" + ], + "created_at": "2026-07-10T10:12:40.019295", + "updated_at": "2026-07-10T10:12:40.019295", + "url": "/v1/software/capella" +} diff --git a/site/public/v1/software/capital-one-auto-navigator/index.json b/site/public/v1/software/capital-one-auto-navigator/index.json new file mode 100644 index 000000000000..2f4124f19a08 --- /dev/null +++ b/site/public/v1/software/capital-one-auto-navigator/index.json @@ -0,0 +1,19 @@ +{ + "id": 1328, + "slug": "capital-one-auto-navigator", + "name": "Capital One Auto Navigator", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140241224" + ], + "created_at": "2026-07-10T10:12:40.020295", + "updated_at": "2026-07-10T10:12:40.020295", + "url": "/v1/software/capital-one-auto-navigator" +} diff --git a/site/public/v1/software/capital-one-navigator-platform/index.json b/site/public/v1/software/capital-one-navigator-platform/index.json new file mode 100644 index 000000000000..03eb7512346d --- /dev/null +++ b/site/public/v1/software/capital-one-navigator-platform/index.json @@ -0,0 +1,19 @@ +{ + "id": 1329, + "slug": "capital-one-navigator-platform", + "name": "Capital One Navigator Platform", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140253310" + ], + "created_at": "2026-07-10T10:12:40.020295", + "updated_at": "2026-07-10T10:12:40.020295", + "url": "/v1/software/capital-one-navigator-platform" +} diff --git a/site/public/v1/software/capito-digital/index.json b/site/public/v1/software/capito-digital/index.json new file mode 100644 index 000000000000..f4a5cce5ce2c --- /dev/null +++ b/site/public/v1/software/capito-digital/index.json @@ -0,0 +1,19 @@ +{ + "id": 1330, + "slug": "capito-digital", + "name": "Capito Digital", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108516755" + ], + "created_at": "2026-07-10T10:12:40.020295", + "updated_at": "2026-07-10T10:12:40.020295", + "url": "/v1/software/capito-digital" +} diff --git a/site/public/v1/software/captio/index.json b/site/public/v1/software/captio/index.json new file mode 100644 index 000000000000..4dbaa27ce3a4 --- /dev/null +++ b/site/public/v1/software/captio/index.json @@ -0,0 +1,23 @@ +{ + "id": 1331, + "slug": "captio", + "name": "Captio", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "BlackBerry OS", + "Windows Phone", + "iOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q19722049" + ], + "created_at": "2026-07-10T10:12:40.021317", + "updated_at": "2026-07-10T10:12:40.021317", + "url": "/v1/software/captio" +} diff --git a/site/public/v1/software/captricity/index.json b/site/public/v1/software/captricity/index.json new file mode 100644 index 000000000000..8921ce55e5c8 --- /dev/null +++ b/site/public/v1/software/captricity/index.json @@ -0,0 +1,19 @@ +{ + "id": 1332, + "slug": "captricity", + "name": "Captricity", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17082759" + ], + "created_at": "2026-07-10T10:12:40.021317", + "updated_at": "2026-07-10T10:12:40.021317", + "url": "/v1/software/captricity" +} diff --git a/site/public/v1/software/capture-nx/index.json b/site/public/v1/software/capture-nx/index.json new file mode 100644 index 000000000000..98f939c0a4e2 --- /dev/null +++ b/site/public/v1/software/capture-nx/index.json @@ -0,0 +1,22 @@ +{ + "id": 1333, + "slug": "capture-nx", + "name": "Capture NX", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Mac operating system", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1989988" + ], + "created_at": "2026-07-10T10:12:40.021317", + "updated_at": "2026-07-10T10:12:40.021317", + "url": "/v1/software/capture-nx" +} diff --git a/site/public/v1/software/capture-one/index.json b/site/public/v1/software/capture-one/index.json new file mode 100644 index 000000000000..608ca347b9e7 --- /dev/null +++ b/site/public/v1/software/capture-one/index.json @@ -0,0 +1,27 @@ +{ + "id": 1334, + "slug": "capture-one", + "name": "Capture One", + "release_date": null, + "developers": [ + "Phase One" + ], + "publishers": [], + "operating_systems": [ + "iOS", + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3658057" + ], + "created_at": "2026-07-10T10:12:40.022237", + "updated_at": "2026-07-10T10:12:40.022237", + "url": "/v1/software/capture-one" +} diff --git a/site/public/v1/software/caramba-switcher/index.json b/site/public/v1/software/caramba-switcher/index.json new file mode 100644 index 000000000000..1a485dbfc825 --- /dev/null +++ b/site/public/v1/software/caramba-switcher/index.json @@ -0,0 +1,22 @@ +{ + "id": 1335, + "slug": "caramba-switcher", + "name": "Caramba Switcher", + "release_date": "2018-06-01", + "developers": [], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115773738" + ], + "created_at": "2026-07-10T10:12:40.022237", + "updated_at": "2026-07-10T10:12:40.022237", + "url": "/v1/software/caramba-switcher" +} diff --git a/site/public/v1/software/carbon-copy-cloner/index.json b/site/public/v1/software/carbon-copy-cloner/index.json new file mode 100644 index 000000000000..cf9b447b6ec6 --- /dev/null +++ b/site/public/v1/software/carbon-copy-cloner/index.json @@ -0,0 +1,19 @@ +{ + "id": 1336, + "slug": "carbon-copy-cloner", + "name": "Carbon Copy Cloner", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2937932" + ], + "created_at": "2026-07-10T10:12:40.022237", + "updated_at": "2026-07-10T10:12:40.022237", + "url": "/v1/software/carbon-copy-cloner" +} diff --git a/site/public/v1/software/carbon-design-system/index.json b/site/public/v1/software/carbon-design-system/index.json new file mode 100644 index 000000000000..388a541ea6c2 --- /dev/null +++ b/site/public/v1/software/carbon-design-system/index.json @@ -0,0 +1,25 @@ +{ + "id": 1337, + "slug": "carbon-design-system", + "name": "Carbon Design System", + "release_date": null, + "developers": [ + "IBM" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Vue.js" + ], + "licenses": [ + "Apache Software License 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106070551" + ], + "created_at": "2026-07-10T10:12:40.023236", + "updated_at": "2026-07-10T10:12:40.023236", + "url": "/v1/software/carbon-design-system" +} diff --git a/site/public/v1/software/carbon/index.json b/site/public/v1/software/carbon/index.json new file mode 100644 index 000000000000..6ef465426ef7 --- /dev/null +++ b/site/public/v1/software/carbon/index.json @@ -0,0 +1,24 @@ +{ + "id": 1338, + "slug": "carbon", + "name": "Carbon", + "release_date": null, + "developers": [ + "Apple Inc." + ], + "publishers": [], + "operating_systems": [ + "Mac operating system", + "macOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1035519" + ], + "created_at": "2026-07-10T10:12:40.023236", + "updated_at": "2026-07-10T10:12:40.023236", + "url": "/v1/software/carbon" +} diff --git a/site/public/v1/software/carbonado/index.json b/site/public/v1/software/carbonado/index.json new file mode 100644 index 000000000000..dcdef14a05e8 --- /dev/null +++ b/site/public/v1/software/carbonado/index.json @@ -0,0 +1,25 @@ +{ + "id": 1339, + "slug": "carbonado", + "name": "Carbonado", + "release_date": null, + "developers": [ + "Amazon" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Java" + ], + "licenses": [ + "Apache License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5038005" + ], + "created_at": "2026-07-10T10:12:40.023236", + "updated_at": "2026-07-10T10:12:40.023236", + "url": "/v1/software/carbonado" +} diff --git a/site/public/v1/software/carbonite/index.json b/site/public/v1/software/carbonite/index.json new file mode 100644 index 000000000000..fb1b67a61247 --- /dev/null +++ b/site/public/v1/software/carbonite/index.json @@ -0,0 +1,19 @@ +{ + "id": 1340, + "slug": "carbonite", + "name": "Carbonite", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5038056" + ], + "created_at": "2026-07-10T10:12:40.023236", + "updated_at": "2026-07-10T10:12:40.023236", + "url": "/v1/software/carbonite" +} diff --git a/site/public/v1/software/carceo-pro/index.json b/site/public/v1/software/carceo-pro/index.json new file mode 100644 index 000000000000..8cd1c77d8d81 --- /dev/null +++ b/site/public/v1/software/carceo-pro/index.json @@ -0,0 +1,23 @@ +{ + "id": 1341, + "slug": "carceo-pro", + "name": "CarCEO PRO", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "web browser" + ], + "programming_languages": [], + "licenses": [], + "genres": [ + "fleet management" + ], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139782547" + ], + "created_at": "2026-07-10T10:12:40.024233", + "updated_at": "2026-07-10T10:12:40.024233", + "url": "/v1/software/carceo-pro" +} diff --git a/site/public/v1/software/cards/index.json b/site/public/v1/software/cards/index.json new file mode 100644 index 000000000000..394a2348e76b --- /dev/null +++ b/site/public/v1/software/cards/index.json @@ -0,0 +1,23 @@ +{ + "id": 1342, + "slug": "cards", + "name": "Cards", + "release_date": null, + "developers": [ + "Apple Inc." + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3658513" + ], + "created_at": "2026-07-10T10:12:40.024233", + "updated_at": "2026-07-10T10:12:40.024233", + "url": "/v1/software/cards" +} diff --git a/site/public/v1/software/cardup/index.json b/site/public/v1/software/cardup/index.json new file mode 100644 index 000000000000..ea1b2d77b6e4 --- /dev/null +++ b/site/public/v1/software/cardup/index.json @@ -0,0 +1,19 @@ +{ + "id": 1343, + "slug": "cardup", + "name": "CardUP", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q104849391" + ], + "created_at": "2026-07-10T10:12:40.024233", + "updated_at": "2026-07-10T10:12:40.024233", + "url": "/v1/software/cardup" +} diff --git a/site/public/v1/software/career-ops/index.json b/site/public/v1/software/career-ops/index.json new file mode 100644 index 000000000000..991c8257732d --- /dev/null +++ b/site/public/v1/software/career-ops/index.json @@ -0,0 +1,28 @@ +{ + "id": 1344, + "slug": "career-ops", + "name": "career-ops", + "release_date": null, + "developers": [ + "Santiago Fernández de Valderrama" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Python", + "TypeScript", + "Go", + "GNU Bash" + ], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139007988" + ], + "created_at": "2026-07-10T10:12:40.024233", + "updated_at": "2026-07-10T10:12:40.024233", + "url": "/v1/software/career-ops" +} diff --git a/site/public/v1/software/carefiji/index.json b/site/public/v1/software/carefiji/index.json new file mode 100644 index 000000000000..e1d77b67e4e6 --- /dev/null +++ b/site/public/v1/software/carefiji/index.json @@ -0,0 +1,19 @@ +{ + "id": 1345, + "slug": "carefiji", + "name": "CareFIJI", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q104628416" + ], + "created_at": "2026-07-10T10:12:40.025243", + "updated_at": "2026-07-10T10:12:40.025243", + "url": "/v1/software/carefiji" +} diff --git a/site/public/v1/software/carestack/index.json b/site/public/v1/software/carestack/index.json new file mode 100644 index 000000000000..bbf8df146bdb --- /dev/null +++ b/site/public/v1/software/carestack/index.json @@ -0,0 +1,21 @@ +{ + "id": 1346, + "slug": "carestack", + "name": "CareStack", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "web application" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140085746" + ], + "created_at": "2026-07-10T10:12:40.025243", + "updated_at": "2026-07-10T10:12:40.025243", + "url": "/v1/software/carestack" +} diff --git a/site/public/v1/software/caret/index.json b/site/public/v1/software/caret/index.json new file mode 100644 index 000000000000..56991ce7c5da --- /dev/null +++ b/site/public/v1/software/caret/index.json @@ -0,0 +1,19 @@ +{ + "id": 1347, + "slug": "caret", + "name": "CARET", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5008798" + ], + "created_at": "2026-07-10T10:12:40.025243", + "updated_at": "2026-07-10T10:12:40.025243", + "url": "/v1/software/caret" +} diff --git a/site/public/v1/software/cargomax/index.json b/site/public/v1/software/cargomax/index.json new file mode 100644 index 000000000000..71047853b7d2 --- /dev/null +++ b/site/public/v1/software/cargomax/index.json @@ -0,0 +1,21 @@ +{ + "id": 1348, + "slug": "cargomax", + "name": "CargoMax", + "release_date": "1979-12-01", + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5039262" + ], + "created_at": "2026-07-10T10:12:40.026243", + "updated_at": "2026-07-10T10:12:40.026243", + "url": "/v1/software/cargomax" +} diff --git a/site/public/v1/software/carnap/index.json b/site/public/v1/software/carnap/index.json new file mode 100644 index 000000000000..2e1693f9a49d --- /dev/null +++ b/site/public/v1/software/carnap/index.json @@ -0,0 +1,19 @@ +{ + "id": 1349, + "slug": "carnap", + "name": "Carnap", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122841160" + ], + "created_at": "2026-07-10T10:12:40.026243", + "updated_at": "2026-07-10T10:12:40.026243", + "url": "/v1/software/carnap" +} diff --git a/site/public/v1/software/carnivore/index.json b/site/public/v1/software/carnivore/index.json new file mode 100644 index 000000000000..c594bded99b3 --- /dev/null +++ b/site/public/v1/software/carnivore/index.json @@ -0,0 +1,21 @@ +{ + "id": 1350, + "slug": "carnivore", + "name": "Carnivore", + "release_date": null, + "developers": [ + "Federal Bureau of Investigation" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q594062" + ], + "created_at": "2026-07-10T10:12:40.026243", + "updated_at": "2026-07-10T10:12:40.026243", + "url": "/v1/software/carnivore" +} diff --git a/site/public/v1/software/carplay/index.json b/site/public/v1/software/carplay/index.json new file mode 100644 index 000000000000..6a84fca610f3 --- /dev/null +++ b/site/public/v1/software/carplay/index.json @@ -0,0 +1,23 @@ +{ + "id": 1351, + "slug": "carplay", + "name": "CarPlay", + "release_date": null, + "developers": [ + "Apple Inc." + ], + "publishers": [], + "operating_systems": [ + "iOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q15940106" + ], + "created_at": "2026-07-10T10:12:40.027336", + "updated_at": "2026-07-10T10:12:40.027336", + "url": "/v1/software/carplay" +} diff --git a/site/public/v1/software/carrier-grade-linux/index.json b/site/public/v1/software/carrier-grade-linux/index.json new file mode 100644 index 000000000000..a37074932bcf --- /dev/null +++ b/site/public/v1/software/carrier-grade-linux/index.json @@ -0,0 +1,21 @@ +{ + "id": 1352, + "slug": "carrier-grade-linux", + "name": "Carrier Grade Linux", + "release_date": null, + "developers": [ + "Linux Foundation" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5046349" + ], + "created_at": "2026-07-10T10:12:40.027336", + "updated_at": "2026-07-10T10:12:40.027336", + "url": "/v1/software/carrier-grade-linux" +} diff --git a/site/public/v1/software/cartographer/index.json b/site/public/v1/software/cartographer/index.json new file mode 100644 index 000000000000..32347a435cd3 --- /dev/null +++ b/site/public/v1/software/cartographer/index.json @@ -0,0 +1,21 @@ +{ + "id": 1353, + "slug": "cartographer", + "name": "Cartographer", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Apache Software License 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122765716" + ], + "created_at": "2026-07-10T10:12:40.027336", + "updated_at": "2026-07-10T10:12:40.027336", + "url": "/v1/software/cartographer" +} diff --git a/site/public/v1/software/cartooners/index.json b/site/public/v1/software/cartooners/index.json new file mode 100644 index 000000000000..2689c9682998 --- /dev/null +++ b/site/public/v1/software/cartooners/index.json @@ -0,0 +1,23 @@ +{ + "id": 1354, + "slug": "cartooners", + "name": "Cartooners", + "release_date": null, + "developers": [ + "ITDA" + ], + "publishers": [ + "Electronic Arts" + ], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q90046932" + ], + "created_at": "2026-07-10T10:12:40.027336", + "updated_at": "2026-07-10T10:12:40.027336", + "url": "/v1/software/cartooners" +} diff --git a/site/public/v1/software/cartopedia/index.json b/site/public/v1/software/cartopedia/index.json new file mode 100644 index 000000000000..ab156bf43758 --- /dev/null +++ b/site/public/v1/software/cartopedia/index.json @@ -0,0 +1,21 @@ +{ + "id": 1355, + "slug": "cartopedia", + "name": "Cartopedia", + "release_date": null, + "developers": [], + "publishers": [ + "DK" + ], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5047431" + ], + "created_at": "2026-07-10T10:12:40.028296", + "updated_at": "2026-07-10T10:12:40.028296", + "url": "/v1/software/cartopedia" +} diff --git a/site/public/v1/software/cas-home/index.json b/site/public/v1/software/cas-home/index.json new file mode 100644 index 000000000000..afe0ba5e35f0 --- /dev/null +++ b/site/public/v1/software/cas-home/index.json @@ -0,0 +1,19 @@ +{ + "id": 1356, + "slug": "cas-home", + "name": "CAS@home", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10846657" + ], + "created_at": "2026-07-10T10:12:40.028296", + "updated_at": "2026-07-10T10:12:40.028296", + "url": "/v1/software/cas-home" +} diff --git a/site/public/v1/software/casecomplete/index.json b/site/public/v1/software/casecomplete/index.json new file mode 100644 index 000000000000..a6f499219dcd --- /dev/null +++ b/site/public/v1/software/casecomplete/index.json @@ -0,0 +1,19 @@ +{ + "id": 1357, + "slug": "casecomplete", + "name": "CaseComplete", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5048280" + ], + "created_at": "2026-07-10T10:12:40.028296", + "updated_at": "2026-07-10T10:12:40.028296", + "url": "/v1/software/casecomplete" +} diff --git a/site/public/v1/software/caseparity/index.json b/site/public/v1/software/caseparity/index.json new file mode 100644 index 000000000000..549b458a5517 --- /dev/null +++ b/site/public/v1/software/caseparity/index.json @@ -0,0 +1,19 @@ +{ + "id": 1358, + "slug": "caseparity", + "name": "CaseParity", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140374607" + ], + "created_at": "2026-07-10T10:12:40.029290", + "updated_at": "2026-07-10T10:12:40.029290", + "url": "/v1/software/caseparity" +} diff --git a/site/public/v1/software/casino/index.json b/site/public/v1/software/casino/index.json new file mode 100644 index 000000000000..6398ebf8ca35 --- /dev/null +++ b/site/public/v1/software/casino/index.json @@ -0,0 +1,21 @@ +{ + "id": 1359, + "slug": "casino", + "name": "CASINO", + "release_date": null, + "developers": [ + "Theory of Condensed Matter group" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5008866" + ], + "created_at": "2026-07-10T10:12:40.029290", + "updated_at": "2026-07-10T10:12:40.029290", + "url": "/v1/software/casino" +} diff --git a/site/public/v1/software/cassandre-software/index.json b/site/public/v1/software/cassandre-software/index.json new file mode 100644 index 000000000000..8ce357b0677d --- /dev/null +++ b/site/public/v1/software/cassandre-software/index.json @@ -0,0 +1,24 @@ +{ + "id": 1360, + "slug": "cassandre-software", + "name": "Cassandre software", + "release_date": null, + "developers": [ + "Christophe Lejeune" + ], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28956978" + ], + "created_at": "2026-07-10T10:12:40.029290", + "updated_at": "2026-07-10T10:12:40.029290", + "url": "/v1/software/cassandre-software" +} diff --git a/site/public/v1/software/casskai/index.json b/site/public/v1/software/casskai/index.json new file mode 100644 index 000000000000..dce7da6f8436 --- /dev/null +++ b/site/public/v1/software/casskai/index.json @@ -0,0 +1,19 @@ +{ + "id": 1361, + "slug": "casskai", + "name": "CassKai", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140403596" + ], + "created_at": "2026-07-10T10:12:40.030341", + "updated_at": "2026-07-10T10:12:40.030341", + "url": "/v1/software/casskai" +} diff --git a/site/public/v1/software/casting-process-simulation/index.json b/site/public/v1/software/casting-process-simulation/index.json new file mode 100644 index 000000000000..5182ee975802 --- /dev/null +++ b/site/public/v1/software/casting-process-simulation/index.json @@ -0,0 +1,19 @@ +{ + "id": 1362, + "slug": "casting-process-simulation", + "name": "Casting process simulation", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124900581" + ], + "created_at": "2026-07-10T10:12:40.030341", + "updated_at": "2026-07-10T10:12:40.030341", + "url": "/v1/software/casting-process-simulation" +} diff --git a/site/public/v1/software/castor/index.json b/site/public/v1/software/castor/index.json new file mode 100644 index 000000000000..9c0a052d8ded --- /dev/null +++ b/site/public/v1/software/castor/index.json @@ -0,0 +1,23 @@ +{ + "id": 1363, + "slug": "castor", + "name": "Castor", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Java" + ], + "licenses": [ + "Apache License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22907101" + ], + "created_at": "2026-07-10T10:12:40.030341", + "updated_at": "2026-07-10T10:12:40.030341", + "url": "/v1/software/castor" +} diff --git a/site/public/v1/software/castp/index.json b/site/public/v1/software/castp/index.json new file mode 100644 index 000000000000..c4a2b7f1dc9b --- /dev/null +++ b/site/public/v1/software/castp/index.json @@ -0,0 +1,19 @@ +{ + "id": 1364, + "slug": "castp", + "name": "CASTp", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17007097" + ], + "created_at": "2026-07-10T10:12:40.030341", + "updated_at": "2026-07-10T10:12:40.030341", + "url": "/v1/software/castp" +} diff --git a/site/public/v1/software/casual/index.json b/site/public/v1/software/casual/index.json new file mode 100644 index 000000000000..dd2a241c25ac --- /dev/null +++ b/site/public/v1/software/casual/index.json @@ -0,0 +1,19 @@ +{ + "id": 1365, + "slug": "casual", + "name": "Casual", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084824" + ], + "created_at": "2026-07-10T10:12:40.031341", + "updated_at": "2026-07-10T10:12:40.031341", + "url": "/v1/software/casual" +} diff --git a/site/public/v1/software/casualconc/index.json b/site/public/v1/software/casualconc/index.json new file mode 100644 index 000000000000..08700e85078c --- /dev/null +++ b/site/public/v1/software/casualconc/index.json @@ -0,0 +1,19 @@ +{ + "id": 1366, + "slug": "casualconc", + "name": "CasualConc", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087778" + ], + "created_at": "2026-07-10T10:12:40.031341", + "updated_at": "2026-07-10T10:12:40.031341", + "url": "/v1/software/casualconc" +} diff --git a/site/public/v1/software/casualtranscriber/index.json b/site/public/v1/software/casualtranscriber/index.json new file mode 100644 index 000000000000..ba52601162af --- /dev/null +++ b/site/public/v1/software/casualtranscriber/index.json @@ -0,0 +1,23 @@ +{ + "id": 1367, + "slug": "casualtranscriber", + "name": "casualtranscriber", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "macOS" + ], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105076381" + ], + "created_at": "2026-07-10T10:12:40.031341", + "updated_at": "2026-07-10T10:12:40.031341", + "url": "/v1/software/casualtranscriber" +} diff --git a/site/public/v1/software/catalyst/index.json b/site/public/v1/software/catalyst/index.json new file mode 100644 index 000000000000..035a027b379d --- /dev/null +++ b/site/public/v1/software/catalyst/index.json @@ -0,0 +1,19 @@ +{ + "id": 1368, + "slug": "catalyst", + "name": "catalyst", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974754" + ], + "created_at": "2026-07-10T10:12:40.032287", + "updated_at": "2026-07-10T10:12:40.032287", + "url": "/v1/software/catalyst" +} diff --git a/site/public/v1/software/catdoc/index.json b/site/public/v1/software/catdoc/index.json new file mode 100644 index 000000000000..c8d6ca3fe497 --- /dev/null +++ b/site/public/v1/software/catdoc/index.json @@ -0,0 +1,19 @@ +{ + "id": 1369, + "slug": "catdoc", + "name": "catdoc", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127418919" + ], + "created_at": "2026-07-10T10:12:40.032287", + "updated_at": "2026-07-10T10:12:40.032287", + "url": "/v1/software/catdoc" +} diff --git a/site/public/v1/software/catkin-pkg/index.json b/site/public/v1/software/catkin-pkg/index.json new file mode 100644 index 000000000000..7a505af45580 --- /dev/null +++ b/site/public/v1/software/catkin-pkg/index.json @@ -0,0 +1,21 @@ +{ + "id": 1370, + "slug": "catkin-pkg", + "name": "catkin_pkg", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "3-clause BSD License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974757" + ], + "created_at": "2026-07-10T10:12:40.032287", + "updated_at": "2026-07-10T10:12:40.032287", + "url": "/v1/software/catkin-pkg" +} diff --git a/site/public/v1/software/catma/index.json b/site/public/v1/software/catma/index.json new file mode 100644 index 000000000000..85202fc03483 --- /dev/null +++ b/site/public/v1/software/catma/index.json @@ -0,0 +1,26 @@ +{ + "id": 1371, + "slug": "catma", + "name": "CATMA", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [ + "Java" + ], + "licenses": [ + "GNU General Public License, version 3.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106323236" + ], + "created_at": "2026-07-10T10:12:40.033287", + "updated_at": "2026-07-10T10:12:40.033287", + "url": "/v1/software/catma" +} diff --git a/site/public/v1/software/catnip/index.json b/site/public/v1/software/catnip/index.json new file mode 100644 index 000000000000..44dc143efa37 --- /dev/null +++ b/site/public/v1/software/catnip/index.json @@ -0,0 +1,19 @@ +{ + "id": 1372, + "slug": "catnip", + "name": "catnip", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127485505" + ], + "created_at": "2026-07-10T10:12:40.033287", + "updated_at": "2026-07-10T10:12:40.033287", + "url": "/v1/software/catnip" +} diff --git a/site/public/v1/software/cb-simulator/index.json b/site/public/v1/software/cb-simulator/index.json new file mode 100644 index 000000000000..fd4cc02f417d --- /dev/null +++ b/site/public/v1/software/cb-simulator/index.json @@ -0,0 +1,19 @@ +{ + "id": 1373, + "slug": "cb-simulator", + "name": "CB Simulator", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5009386" + ], + "created_at": "2026-07-10T10:12:40.033287", + "updated_at": "2026-07-10T10:12:40.033287", + "url": "/v1/software/cb-simulator" +} diff --git a/site/public/v1/software/cbecon/index.json b/site/public/v1/software/cbecon/index.json new file mode 100644 index 000000000000..620738dddd39 --- /dev/null +++ b/site/public/v1/software/cbecon/index.json @@ -0,0 +1,19 @@ +{ + "id": 1374, + "slug": "cbecon", + "name": "CBEcon", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17006248" + ], + "created_at": "2026-07-10T10:12:40.034301", + "updated_at": "2026-07-10T10:12:40.034301", + "url": "/v1/software/cbecon" +} diff --git a/site/public/v1/software/cbsd/index.json b/site/public/v1/software/cbsd/index.json new file mode 100644 index 000000000000..79866d7461dd --- /dev/null +++ b/site/public/v1/software/cbsd/index.json @@ -0,0 +1,19 @@ +{ + "id": 1375, + "slug": "cbsd", + "name": "cbsd", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127947590" + ], + "created_at": "2026-07-10T10:12:40.034301", + "updated_at": "2026-07-10T10:12:40.034301", + "url": "/v1/software/cbsd" +} diff --git a/site/public/v1/software/cc-mail/index.json b/site/public/v1/software/cc-mail/index.json new file mode 100644 index 000000000000..5f456503c6c8 --- /dev/null +++ b/site/public/v1/software/cc-mail/index.json @@ -0,0 +1,19 @@ +{ + "id": 1376, + "slug": "cc-mail", + "name": "cc:Mail", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5055632" + ], + "created_at": "2026-07-10T10:12:40.034301", + "updated_at": "2026-07-10T10:12:40.034301", + "url": "/v1/software/cc-mail" +} diff --git a/site/public/v1/software/cced/index.json b/site/public/v1/software/cced/index.json new file mode 100644 index 000000000000..4dbc220aa017 --- /dev/null +++ b/site/public/v1/software/cced/index.json @@ -0,0 +1,21 @@ +{ + "id": 1377, + "slug": "cced", + "name": "CCED", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "DOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17159414" + ], + "created_at": "2026-07-10T10:12:40.035338", + "updated_at": "2026-07-10T10:12:40.035338", + "url": "/v1/software/cced" +} diff --git a/site/public/v1/software/ccextractor/index.json b/site/public/v1/software/ccextractor/index.json new file mode 100644 index 000000000000..e1a909176b6c --- /dev/null +++ b/site/public/v1/software/ccextractor/index.json @@ -0,0 +1,19 @@ +{ + "id": 1378, + "slug": "ccextractor", + "name": "ccextractor", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065339" + ], + "created_at": "2026-07-10T10:12:40.035338", + "updated_at": "2026-07-10T10:12:40.035338", + "url": "/v1/software/ccextractor" +} diff --git a/site/public/v1/software/ccleaner-cloud/index.json b/site/public/v1/software/ccleaner-cloud/index.json new file mode 100644 index 000000000000..2e7f20c06f8a --- /dev/null +++ b/site/public/v1/software/ccleaner-cloud/index.json @@ -0,0 +1,21 @@ +{ + "id": 1379, + "slug": "ccleaner-cloud", + "name": "CCleaner Cloud", + "release_date": null, + "developers": [ + "Piriform" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17122129" + ], + "created_at": "2026-07-10T10:12:40.035338", + "updated_at": "2026-07-10T10:12:40.035338", + "url": "/v1/software/ccleaner-cloud" +} diff --git a/site/public/v1/software/ccp1gui/index.json b/site/public/v1/software/ccp1gui/index.json new file mode 100644 index 000000000000..6c43b5498e77 --- /dev/null +++ b/site/public/v1/software/ccp1gui/index.json @@ -0,0 +1,21 @@ +{ + "id": 1380, + "slug": "ccp1gui", + "name": "CCP1GUI", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "GNU General Public License, version 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125096586" + ], + "created_at": "2026-07-10T10:12:40.036319", + "updated_at": "2026-07-10T10:12:40.036319", + "url": "/v1/software/ccp1gui" +} diff --git a/site/public/v1/software/cd3wd/index.json b/site/public/v1/software/cd3wd/index.json new file mode 100644 index 000000000000..cbf887178991 --- /dev/null +++ b/site/public/v1/software/cd3wd/index.json @@ -0,0 +1,19 @@ +{ + "id": 1381, + "slug": "cd3wd", + "name": "CD3WD", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q24590060" + ], + "created_at": "2026-07-10T10:12:40.036319", + "updated_at": "2026-07-10T10:12:40.036319", + "url": "/v1/software/cd3wd" +} diff --git a/site/public/v1/software/cdbackup/index.json b/site/public/v1/software/cdbackup/index.json new file mode 100644 index 000000000000..298f502205fd --- /dev/null +++ b/site/public/v1/software/cdbackup/index.json @@ -0,0 +1,19 @@ +{ + "id": 1382, + "slug": "cdbackup", + "name": "cdbackup", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62851476" + ], + "created_at": "2026-07-10T10:12:40.036319", + "updated_at": "2026-07-10T10:12:40.036319", + "url": "/v1/software/cdbackup" +} diff --git a/site/public/v1/software/cdc-ez-text/index.json b/site/public/v1/software/cdc-ez-text/index.json new file mode 100644 index 000000000000..a9e098a3ca1a --- /dev/null +++ b/site/public/v1/software/cdc-ez-text/index.json @@ -0,0 +1,21 @@ +{ + "id": 1383, + "slug": "cdc-ez-text", + "name": "CDC EZ-Text", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105229742" + ], + "created_at": "2026-07-10T10:12:40.036319", + "updated_at": "2026-07-10T10:12:40.036319", + "url": "/v1/software/cdc-ez-text" +} diff --git a/site/public/v1/software/cdcat/index.json b/site/public/v1/software/cdcat/index.json new file mode 100644 index 000000000000..34c4e0cbb0de --- /dev/null +++ b/site/public/v1/software/cdcat/index.json @@ -0,0 +1,19 @@ +{ + "id": 1384, + "slug": "cdcat", + "name": "cdcat", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62851472" + ], + "created_at": "2026-07-10T10:12:40.037673", + "updated_at": "2026-07-10T10:12:40.037673", + "url": "/v1/software/cdcat" +} diff --git a/site/public/v1/software/cdcd/index.json b/site/public/v1/software/cdcd/index.json new file mode 100644 index 000000000000..a0a214e9b484 --- /dev/null +++ b/site/public/v1/software/cdcd/index.json @@ -0,0 +1,19 @@ +{ + "id": 1385, + "slug": "cdcd", + "name": "cdcd", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62851473" + ], + "created_at": "2026-07-10T10:12:40.037673", + "updated_at": "2026-07-10T10:12:40.037673", + "url": "/v1/software/cdcd" +} diff --git a/site/public/v1/software/cdck/index.json b/site/public/v1/software/cdck/index.json new file mode 100644 index 000000000000..fd819ac2ffc2 --- /dev/null +++ b/site/public/v1/software/cdck/index.json @@ -0,0 +1,19 @@ +{ + "id": 1386, + "slug": "cdck", + "name": "cdck", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62851775" + ], + "created_at": "2026-07-10T10:12:40.037673", + "updated_at": "2026-07-10T10:12:40.037673", + "url": "/v1/software/cdck" +} diff --git a/site/public/v1/software/cdf-player/index.json b/site/public/v1/software/cdf-player/index.json new file mode 100644 index 000000000000..d8bf323e1b1a --- /dev/null +++ b/site/public/v1/software/cdf-player/index.json @@ -0,0 +1,21 @@ +{ + "id": 1387, + "slug": "cdf-player", + "name": "CDF Player", + "release_date": null, + "developers": [ + "Wolfram Research" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1023112" + ], + "created_at": "2026-07-10T10:12:40.037673", + "updated_at": "2026-07-10T10:12:40.037673", + "url": "/v1/software/cdf-player" +} diff --git a/site/public/v1/software/cdfinder/index.json b/site/public/v1/software/cdfinder/index.json new file mode 100644 index 000000000000..a7fdfd13c453 --- /dev/null +++ b/site/public/v1/software/cdfinder/index.json @@ -0,0 +1,19 @@ +{ + "id": 1388, + "slug": "cdfinder", + "name": "CDFinder", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5009924" + ], + "created_at": "2026-07-10T10:12:40.037673", + "updated_at": "2026-07-10T10:12:40.037673", + "url": "/v1/software/cdfinder" +} diff --git a/site/public/v1/software/cdiff/index.json b/site/public/v1/software/cdiff/index.json new file mode 100644 index 000000000000..c1ddc8b47829 --- /dev/null +++ b/site/public/v1/software/cdiff/index.json @@ -0,0 +1,21 @@ +{ + "id": 1389, + "slug": "cdiff", + "name": "cdiff", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "3-clause BSD License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974759" + ], + "created_at": "2026-07-10T10:12:40.039180", + "updated_at": "2026-07-10T10:12:40.039180", + "url": "/v1/software/cdiff" +} diff --git a/site/public/v1/software/cdigix/index.json b/site/public/v1/software/cdigix/index.json new file mode 100644 index 000000000000..7d7693446648 --- /dev/null +++ b/site/public/v1/software/cdigix/index.json @@ -0,0 +1,19 @@ +{ + "id": 1390, + "slug": "cdigix", + "name": "Cdigix", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5055659" + ], + "created_at": "2026-07-10T10:12:40.039503", + "updated_at": "2026-07-10T10:12:40.039503", + "url": "/v1/software/cdigix" +} diff --git a/site/public/v1/software/cdisplayex/index.json b/site/public/v1/software/cdisplayex/index.json new file mode 100644 index 000000000000..403aba795028 --- /dev/null +++ b/site/public/v1/software/cdisplayex/index.json @@ -0,0 +1,23 @@ +{ + "id": 1391, + "slug": "cdisplayex", + "name": "CDisplayEx", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Object Pascal" + ], + "licenses": [ + "Mozilla Public License, version 1.1" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8254045" + ], + "created_at": "2026-07-10T10:12:40.040009", + "updated_at": "2026-07-10T10:12:40.040009", + "url": "/v1/software/cdisplayex" +} diff --git a/site/public/v1/software/cdpedia/index.json b/site/public/v1/software/cdpedia/index.json new file mode 100644 index 000000000000..6c8b88aa3007 --- /dev/null +++ b/site/public/v1/software/cdpedia/index.json @@ -0,0 +1,19 @@ +{ + "id": 1392, + "slug": "cdpedia", + "name": "CDPedia", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5736948" + ], + "created_at": "2026-07-10T10:12:40.040009", + "updated_at": "2026-07-10T10:12:40.040009", + "url": "/v1/software/cdpedia" +} diff --git a/site/public/v1/software/cdroller/index.json b/site/public/v1/software/cdroller/index.json new file mode 100644 index 000000000000..07f6af6bb9fd --- /dev/null +++ b/site/public/v1/software/cdroller/index.json @@ -0,0 +1,19 @@ +{ + "id": 1393, + "slug": "cdroller", + "name": "CDRoller", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5010005" + ], + "created_at": "2026-07-10T10:12:40.040539", + "updated_at": "2026-07-10T10:12:40.040539", + "url": "/v1/software/cdroller" +} diff --git a/site/public/v1/software/cdrwin/index.json b/site/public/v1/software/cdrwin/index.json new file mode 100644 index 000000000000..4c6ed34c63ca --- /dev/null +++ b/site/public/v1/software/cdrwin/index.json @@ -0,0 +1,21 @@ +{ + "id": 1394, + "slug": "cdrwin", + "name": "CDRWIN", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5010001" + ], + "created_at": "2026-07-10T10:12:40.040539", + "updated_at": "2026-07-10T10:12:40.040539", + "url": "/v1/software/cdrwin" +} diff --git a/site/public/v1/software/cdwinder/index.json b/site/public/v1/software/cdwinder/index.json new file mode 100644 index 000000000000..14026d2f6a4b --- /dev/null +++ b/site/public/v1/software/cdwinder/index.json @@ -0,0 +1,19 @@ +{ + "id": 1395, + "slug": "cdwinder", + "name": "CDWinder", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5010015" + ], + "created_at": "2026-07-10T10:12:40.040539", + "updated_at": "2026-07-10T10:12:40.040539", + "url": "/v1/software/cdwinder" +} diff --git a/site/public/v1/software/ceedo/index.json b/site/public/v1/software/ceedo/index.json new file mode 100644 index 000000000000..c987dbea5702 --- /dev/null +++ b/site/public/v1/software/ceedo/index.json @@ -0,0 +1,19 @@ +{ + "id": 1396, + "slug": "ceedo", + "name": "Ceedo", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4035945" + ], + "created_at": "2026-07-10T10:12:40.041549", + "updated_at": "2026-07-10T10:12:40.041549", + "url": "/v1/software/ceedo" +} diff --git a/site/public/v1/software/ceiton-workflow-system/index.json b/site/public/v1/software/ceiton-workflow-system/index.json new file mode 100644 index 000000000000..a6e4cf259784 --- /dev/null +++ b/site/public/v1/software/ceiton-workflow-system/index.json @@ -0,0 +1,23 @@ +{ + "id": 1397, + "slug": "ceiton-workflow-system", + "name": "Ceiton workflow system", + "release_date": "2001-01-01", + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [ + "ASP.NET" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q15956419" + ], + "created_at": "2026-07-10T10:12:40.041549", + "updated_at": "2026-07-10T10:12:40.041549", + "url": "/v1/software/ceiton-workflow-system" +} diff --git a/site/public/v1/software/cellebrite-ufed/index.json b/site/public/v1/software/cellebrite-ufed/index.json new file mode 100644 index 000000000000..026ad3746f16 --- /dev/null +++ b/site/public/v1/software/cellebrite-ufed/index.json @@ -0,0 +1,21 @@ +{ + "id": 1398, + "slug": "cellebrite-ufed", + "name": "Cellebrite UFED", + "release_date": null, + "developers": [ + "Cellebrite" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108649702" + ], + "created_at": "2026-07-10T10:12:40.041549", + "updated_at": "2026-07-10T10:12:40.041549", + "url": "/v1/software/cellebrite-ufed" +} diff --git a/site/public/v1/software/cellular-automata-lab/index.json b/site/public/v1/software/cellular-automata-lab/index.json new file mode 100644 index 000000000000..111a587c6a70 --- /dev/null +++ b/site/public/v1/software/cellular-automata-lab/index.json @@ -0,0 +1,21 @@ +{ + "id": 1399, + "slug": "cellular-automata-lab", + "name": "Cellular Automata Lab", + "release_date": "1989-01-01", + "developers": [], + "publishers": [ + "Autodesk" + ], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125762825" + ], + "created_at": "2026-07-10T10:12:40.041549", + "updated_at": "2026-07-10T10:12:40.041549", + "url": "/v1/software/cellular-automata-lab" +} diff --git a/site/public/v1/software/celpip-simulator/index.json b/site/public/v1/software/celpip-simulator/index.json new file mode 100644 index 000000000000..f44656e2f2f5 --- /dev/null +++ b/site/public/v1/software/celpip-simulator/index.json @@ -0,0 +1,19 @@ +{ + "id": 1400, + "slug": "celpip-simulator", + "name": "CELPIP Simulator", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139761574" + ], + "created_at": "2026-07-10T10:12:40.042548", + "updated_at": "2026-07-10T10:12:40.042548", + "url": "/v1/software/celpip-simulator" +} diff --git a/site/public/v1/software/celstart/index.json b/site/public/v1/software/celstart/index.json new file mode 100644 index 000000000000..4b52897ca0c6 --- /dev/null +++ b/site/public/v1/software/celstart/index.json @@ -0,0 +1,19 @@ +{ + "id": 1401, + "slug": "celstart", + "name": "CELstart", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5010263" + ], + "created_at": "2026-07-10T10:12:40.042548", + "updated_at": "2026-07-10T10:12:40.042548", + "url": "/v1/software/celstart" +} diff --git a/site/public/v1/software/centennial-discovery/index.json b/site/public/v1/software/centennial-discovery/index.json new file mode 100644 index 000000000000..5c440d3bdf68 --- /dev/null +++ b/site/public/v1/software/centennial-discovery/index.json @@ -0,0 +1,19 @@ +{ + "id": 1402, + "slug": "centennial-discovery", + "name": "Centennial Discovery", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5059138" + ], + "created_at": "2026-07-10T10:12:40.043549", + "updated_at": "2026-07-10T10:12:40.043549", + "url": "/v1/software/centennial-discovery" +} diff --git a/site/public/v1/software/central-authentication-service/index.json b/site/public/v1/software/central-authentication-service/index.json new file mode 100644 index 000000000000..17a0e6de8e11 --- /dev/null +++ b/site/public/v1/software/central-authentication-service/index.json @@ -0,0 +1,19 @@ +{ + "id": 1403, + "slug": "central-authentication-service", + "name": "Central Authentication Service", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q628566" + ], + "created_at": "2026-07-10T10:12:40.043549", + "updated_at": "2026-07-10T10:12:40.043549", + "url": "/v1/software/central-authentication-service" +} diff --git a/site/public/v1/software/central-point-anti-virus/index.json b/site/public/v1/software/central-point-anti-virus/index.json new file mode 100644 index 000000000000..91aae6e81a2e --- /dev/null +++ b/site/public/v1/software/central-point-anti-virus/index.json @@ -0,0 +1,19 @@ +{ + "id": 1404, + "slug": "central-point-anti-virus", + "name": "Central Point Anti-Virus", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1053952" + ], + "created_at": "2026-07-10T10:12:40.043549", + "updated_at": "2026-07-10T10:12:40.043549", + "url": "/v1/software/central-point-anti-virus" +} diff --git a/site/public/v1/software/central-venous-catheter-simulation/index.json b/site/public/v1/software/central-venous-catheter-simulation/index.json new file mode 100644 index 000000000000..352e4da3a7e1 --- /dev/null +++ b/site/public/v1/software/central-venous-catheter-simulation/index.json @@ -0,0 +1,19 @@ +{ + "id": 1405, + "slug": "central-venous-catheter-simulation", + "name": "Central Venous Catheter Simulation", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115336602" + ], + "created_at": "2026-07-10T10:12:40.043549", + "updated_at": "2026-07-10T10:12:40.043549", + "url": "/v1/software/central-venous-catheter-simulation" +} diff --git a/site/public/v1/software/centricity/index.json b/site/public/v1/software/centricity/index.json new file mode 100644 index 000000000000..a9551d34af2f --- /dev/null +++ b/site/public/v1/software/centricity/index.json @@ -0,0 +1,21 @@ +{ + "id": 1406, + "slug": "centricity", + "name": "Centricity", + "release_date": null, + "developers": [ + "GE HealthCare" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5062743" + ], + "created_at": "2026-07-10T10:12:40.044628", + "updated_at": "2026-07-10T10:12:40.044628", + "url": "/v1/software/centricity" +} diff --git a/site/public/v1/software/cepteteb/index.json b/site/public/v1/software/cepteteb/index.json new file mode 100644 index 000000000000..d9a32045ffee --- /dev/null +++ b/site/public/v1/software/cepteteb/index.json @@ -0,0 +1,19 @@ +{ + "id": 1407, + "slug": "cepteteb", + "name": "CEPTETEB", + "release_date": "2008-09-25", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q26709566" + ], + "created_at": "2026-07-10T10:12:40.044628", + "updated_at": "2026-07-10T10:12:40.044628", + "url": "/v1/software/cepteteb" +} diff --git a/site/public/v1/software/cerberus-ftp-server/index.json b/site/public/v1/software/cerberus-ftp-server/index.json new file mode 100644 index 000000000000..e2257cbb7d55 --- /dev/null +++ b/site/public/v1/software/cerberus-ftp-server/index.json @@ -0,0 +1,21 @@ +{ + "id": 1408, + "slug": "cerberus-ftp-server", + "name": "Cerberus FTP Server", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5063912" + ], + "created_at": "2026-07-10T10:12:40.044628", + "updated_at": "2026-07-10T10:12:40.044628", + "url": "/v1/software/cerberus-ftp-server" +} diff --git a/site/public/v1/software/cerbos/index.json b/site/public/v1/software/cerbos/index.json new file mode 100644 index 000000000000..637aebd77dfa --- /dev/null +++ b/site/public/v1/software/cerbos/index.json @@ -0,0 +1,19 @@ +{ + "id": 1409, + "slug": "cerbos", + "name": "Cerbos", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137211704" + ], + "created_at": "2026-07-10T10:12:40.045635", + "updated_at": "2026-07-10T10:12:40.045635", + "url": "/v1/software/cerbos" +} diff --git a/site/public/v1/software/cereproc/index.json b/site/public/v1/software/cereproc/index.json new file mode 100644 index 000000000000..c154c8b4dafe --- /dev/null +++ b/site/public/v1/software/cereproc/index.json @@ -0,0 +1,21 @@ +{ + "id": 1410, + "slug": "cereproc", + "name": "CereProc", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "cross-platform" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5064047" + ], + "created_at": "2026-07-10T10:12:40.045635", + "updated_at": "2026-07-10T10:12:40.045635", + "url": "/v1/software/cereproc" +} diff --git a/site/public/v1/software/certbot/index.json b/site/public/v1/software/certbot/index.json new file mode 100644 index 000000000000..ceeaf6c7ea16 --- /dev/null +++ b/site/public/v1/software/certbot/index.json @@ -0,0 +1,25 @@ +{ + "id": 1411, + "slug": "certbot", + "name": "certbot", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "cross-platform" + ], + "programming_languages": [ + "Python" + ], + "licenses": [ + "Apache Software License 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974761" + ], + "created_at": "2026-07-10T10:12:40.045635", + "updated_at": "2026-07-10T10:12:40.045635", + "url": "/v1/software/certbot" +} diff --git a/site/public/v1/software/cesiumjs/index.json b/site/public/v1/software/cesiumjs/index.json new file mode 100644 index 000000000000..b3fc4e6b6cc0 --- /dev/null +++ b/site/public/v1/software/cesiumjs/index.json @@ -0,0 +1,24 @@ +{ + "id": 1412, + "slug": "cesiumjs", + "name": "CesiumJS", + "release_date": null, + "developers": [ + "Cesium", + "Patrick Cozzi" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Apache Software License 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116465523" + ], + "created_at": "2026-07-10T10:12:40.045635", + "updated_at": "2026-07-10T10:12:40.045635", + "url": "/v1/software/cesiumjs" +} diff --git a/site/public/v1/software/cestagi/index.json b/site/public/v1/software/cestagi/index.json new file mode 100644 index 000000000000..02cd39f0935b --- /dev/null +++ b/site/public/v1/software/cestagi/index.json @@ -0,0 +1,19 @@ +{ + "id": 1413, + "slug": "cestagi", + "name": "Cestagi", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084825" + ], + "created_at": "2026-07-10T10:12:40.046613", + "updated_at": "2026-07-10T10:12:40.046613", + "url": "/v1/software/cestagi" +} diff --git a/site/public/v1/software/ceta-parser/index.json b/site/public/v1/software/ceta-parser/index.json new file mode 100644 index 000000000000..aa7c54dd4fc8 --- /dev/null +++ b/site/public/v1/software/ceta-parser/index.json @@ -0,0 +1,19 @@ +{ + "id": 1414, + "slug": "ceta-parser", + "name": "CETA Parser", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084826" + ], + "created_at": "2026-07-10T10:12:40.046613", + "updated_at": "2026-07-10T10:12:40.046613", + "url": "/v1/software/ceta-parser" +} diff --git a/site/public/v1/software/cfd-ace/index.json b/site/public/v1/software/cfd-ace/index.json new file mode 100644 index 000000000000..259a7bd33c71 --- /dev/null +++ b/site/public/v1/software/cfd-ace/index.json @@ -0,0 +1,21 @@ +{ + "id": 1415, + "slug": "cfd-ace", + "name": "CFD-ACE+", + "release_date": null, + "developers": [ + "ESI Group" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5010594" + ], + "created_at": "2026-07-10T10:12:40.047632", + "updated_at": "2026-07-10T10:12:40.047632", + "url": "/v1/software/cfd-ace" +} diff --git a/site/public/v1/software/cfd-fastran/index.json b/site/public/v1/software/cfd-fastran/index.json new file mode 100644 index 000000000000..0a3a828633cb --- /dev/null +++ b/site/public/v1/software/cfd-fastran/index.json @@ -0,0 +1,21 @@ +{ + "id": 1416, + "slug": "cfd-fastran", + "name": "CFD-FASTRAN", + "release_date": null, + "developers": [ + "ESI Group" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5010596" + ], + "created_at": "2026-07-10T10:12:40.047632", + "updated_at": "2026-07-10T10:12:40.047632", + "url": "/v1/software/cfd-fastran" +} diff --git a/site/public/v1/software/cfosspeed/index.json b/site/public/v1/software/cfosspeed/index.json new file mode 100644 index 000000000000..54b9ae7a2b5f --- /dev/null +++ b/site/public/v1/software/cfosspeed/index.json @@ -0,0 +1,21 @@ +{ + "id": 1417, + "slug": "cfosspeed", + "name": "CFosSpeed", + "release_date": null, + "developers": [ + "CFosSpeed" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q306106" + ], + "created_at": "2026-07-10T10:12:40.047632", + "updated_at": "2026-07-10T10:12:40.047632", + "url": "/v1/software/cfosspeed" +} diff --git a/site/public/v1/software/cfssl/index.json b/site/public/v1/software/cfssl/index.json new file mode 100644 index 000000000000..8dc925baa278 --- /dev/null +++ b/site/public/v1/software/cfssl/index.json @@ -0,0 +1,19 @@ +{ + "id": 1418, + "slug": "cfssl", + "name": "cfssl", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60918039" + ], + "created_at": "2026-07-10T10:12:40.048600", + "updated_at": "2026-07-10T10:12:40.048600", + "url": "/v1/software/cfssl" +} diff --git a/site/public/v1/software/cgilib/index.json b/site/public/v1/software/cgilib/index.json new file mode 100644 index 000000000000..57588444016f --- /dev/null +++ b/site/public/v1/software/cgilib/index.json @@ -0,0 +1,19 @@ +{ + "id": 1419, + "slug": "cgilib", + "name": "cgilib", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62851773" + ], + "created_at": "2026-07-10T10:12:40.048600", + "updated_at": "2026-07-10T10:12:40.048600", + "url": "/v1/software/cgilib" +} diff --git a/site/public/v1/software/cgiproxy/index.json b/site/public/v1/software/cgiproxy/index.json new file mode 100644 index 000000000000..e95429951335 --- /dev/null +++ b/site/public/v1/software/cgiproxy/index.json @@ -0,0 +1,21 @@ +{ + "id": 1420, + "slug": "cgiproxy", + "name": "CGIProxy", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5010971" + ], + "created_at": "2026-07-10T10:12:40.048600", + "updated_at": "2026-07-10T10:12:40.048600", + "url": "/v1/software/cgiproxy" +} diff --git a/site/public/v1/software/cgoban/index.json b/site/public/v1/software/cgoban/index.json new file mode 100644 index 000000000000..58a43a7f7e25 --- /dev/null +++ b/site/public/v1/software/cgoban/index.json @@ -0,0 +1,19 @@ +{ + "id": 1421, + "slug": "cgoban", + "name": "CGoban", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62851471" + ], + "created_at": "2026-07-10T10:12:40.048600", + "updated_at": "2026-07-10T10:12:40.048600", + "url": "/v1/software/cgoban" +} diff --git a/site/public/v1/software/cgram-software/index.json b/site/public/v1/software/cgram-software/index.json new file mode 100644 index 000000000000..935b22b17c9a --- /dev/null +++ b/site/public/v1/software/cgram-software/index.json @@ -0,0 +1,19 @@ +{ + "id": 1422, + "slug": "cgram-software", + "name": "CGram Software", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5011013" + ], + "created_at": "2026-07-10T10:12:40.049592", + "updated_at": "2026-07-10T10:12:40.049592", + "url": "/v1/software/cgram-software" +} diff --git a/site/public/v1/software/cgvg/index.json b/site/public/v1/software/cgvg/index.json new file mode 100644 index 000000000000..b6d9c7bbeb47 --- /dev/null +++ b/site/public/v1/software/cgvg/index.json @@ -0,0 +1,19 @@ +{ + "id": 1423, + "slug": "cgvg", + "name": "cgvg", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62851468" + ], + "created_at": "2026-07-10T10:12:40.049592", + "updated_at": "2026-07-10T10:12:40.049592", + "url": "/v1/software/cgvg" +} diff --git a/site/public/v1/software/chainlink/index.json b/site/public/v1/software/chainlink/index.json new file mode 100644 index 000000000000..e305b669e39e --- /dev/null +++ b/site/public/v1/software/chainlink/index.json @@ -0,0 +1,24 @@ +{ + "id": 1424, + "slug": "chainlink", + "name": "Chainlink", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Go", + "Solidity" + ], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q100804984" + ], + "created_at": "2026-07-10T10:12:40.049592", + "updated_at": "2026-07-10T10:12:40.049592", + "url": "/v1/software/chainlink" +} diff --git a/site/public/v1/software/chalk/index.json b/site/public/v1/software/chalk/index.json new file mode 100644 index 000000000000..5d73049ba40a --- /dev/null +++ b/site/public/v1/software/chalk/index.json @@ -0,0 +1,23 @@ +{ + "id": 1425, + "slug": "chalk", + "name": "Chalk", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Objective-C" + ], + "licenses": [ + "CeCILL" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q61687348" + ], + "created_at": "2026-07-10T10:12:40.050618", + "updated_at": "2026-07-10T10:12:40.050618", + "url": "/v1/software/chalk" +} diff --git a/site/public/v1/software/changa/index.json b/site/public/v1/software/changa/index.json new file mode 100644 index 000000000000..f9d50349205a --- /dev/null +++ b/site/public/v1/software/changa/index.json @@ -0,0 +1,19 @@ +{ + "id": 1426, + "slug": "changa", + "name": "ChaNGa", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5065916" + ], + "created_at": "2026-07-10T10:12:40.050618", + "updated_at": "2026-07-10T10:12:40.050618", + "url": "/v1/software/changa" +} diff --git a/site/public/v1/software/changebeadsthreader/index.json b/site/public/v1/software/changebeadsthreader/index.json new file mode 100644 index 000000000000..e06df170793b --- /dev/null +++ b/site/public/v1/software/changebeadsthreader/index.json @@ -0,0 +1,21 @@ +{ + "id": 1427, + "slug": "changebeadsthreader", + "name": "ChangeBeadsThreader", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Apache Software License 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127485891" + ], + "created_at": "2026-07-10T10:12:40.050618", + "updated_at": "2026-07-10T10:12:40.050618", + "url": "/v1/software/changebeadsthreader" +} diff --git a/site/public/v1/software/chankast/index.json b/site/public/v1/software/chankast/index.json new file mode 100644 index 000000000000..01487f29d933 --- /dev/null +++ b/site/public/v1/software/chankast/index.json @@ -0,0 +1,19 @@ +{ + "id": 1428, + "slug": "chankast", + "name": "Chankast", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3277266" + ], + "created_at": "2026-07-10T10:12:40.051600", + "updated_at": "2026-07-10T10:12:40.051600", + "url": "/v1/software/chankast" +} diff --git a/site/public/v1/software/channel-4/index.json b/site/public/v1/software/channel-4/index.json new file mode 100644 index 000000000000..7c50ecb5afc9 --- /dev/null +++ b/site/public/v1/software/channel-4/index.json @@ -0,0 +1,23 @@ +{ + "id": 1429, + "slug": "channel-4", + "name": "Channel 4", + "release_date": "2006-11-16", + "developers": [ + "Channel Four Television Corporation" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4639144" + ], + "created_at": "2026-07-10T10:12:40.051600", + "updated_at": "2026-07-10T10:12:40.051600", + "url": "/v1/software/channel-4" +} diff --git a/site/public/v1/software/chaos-corona/index.json b/site/public/v1/software/chaos-corona/index.json new file mode 100644 index 000000000000..09f8e963c2ad --- /dev/null +++ b/site/public/v1/software/chaos-corona/index.json @@ -0,0 +1,21 @@ +{ + "id": 1430, + "slug": "chaos-corona", + "name": "Chaos Corona", + "release_date": null, + "developers": [ + "Chaos Group" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115518473" + ], + "created_at": "2026-07-10T10:12:40.051600", + "updated_at": "2026-07-10T10:12:40.051600", + "url": "/v1/software/chaos-corona" +} diff --git a/site/public/v1/software/chaos-heroes-online/index.json b/site/public/v1/software/chaos-heroes-online/index.json new file mode 100644 index 000000000000..64749b6d52b5 --- /dev/null +++ b/site/public/v1/software/chaos-heroes-online/index.json @@ -0,0 +1,19 @@ +{ + "id": 1431, + "slug": "chaos-heroes-online", + "name": "Chaos Heroes Online", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140391199" + ], + "created_at": "2026-07-10T10:12:40.052619", + "updated_at": "2026-07-10T10:12:40.052619", + "url": "/v1/software/chaos-heroes-online" +} diff --git a/site/public/v1/software/chaotica/index.json b/site/public/v1/software/chaotica/index.json new file mode 100644 index 000000000000..e7fcee9075ba --- /dev/null +++ b/site/public/v1/software/chaotica/index.json @@ -0,0 +1,19 @@ +{ + "id": 1432, + "slug": "chaotica", + "name": "Chaotica", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18205923" + ], + "created_at": "2026-07-10T10:12:40.052619", + "updated_at": "2026-07-10T10:12:40.052619", + "url": "/v1/software/chaotica" +} diff --git a/site/public/v1/software/character-generator/index.json b/site/public/v1/software/character-generator/index.json new file mode 100644 index 000000000000..b71800e86280 --- /dev/null +++ b/site/public/v1/software/character-generator/index.json @@ -0,0 +1,19 @@ +{ + "id": 1433, + "slug": "character-generator", + "name": "character generator", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q184736" + ], + "created_at": "2026-07-10T10:12:40.052619", + "updated_at": "2026-07-10T10:12:40.052619", + "url": "/v1/software/character-generator" +} diff --git a/site/public/v1/software/character-studio/index.json b/site/public/v1/software/character-studio/index.json new file mode 100644 index 000000000000..a824a107571d --- /dev/null +++ b/site/public/v1/software/character-studio/index.json @@ -0,0 +1,19 @@ +{ + "id": 1434, + "slug": "character-studio", + "name": "Character Studio", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5073726" + ], + "created_at": "2026-07-10T10:12:40.053595", + "updated_at": "2026-07-10T10:12:40.053595", + "url": "/v1/software/character-studio" +} diff --git a/site/public/v1/software/charmm/index.json b/site/public/v1/software/charmm/index.json new file mode 100644 index 000000000000..dd6dec802f60 --- /dev/null +++ b/site/public/v1/software/charmm/index.json @@ -0,0 +1,23 @@ +{ + "id": 1435, + "slug": "charmm", + "name": "CHARMM", + "release_date": null, + "developers": [ + "Martin Karplus" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Fortran" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q902642" + ], + "created_at": "2026-07-10T10:12:40.053595", + "updated_at": "2026-07-10T10:12:40.053595", + "url": "/v1/software/charmm" +} diff --git a/site/public/v1/software/charter-for-innovation-creativity-and-access-to-knowledge/index.json b/site/public/v1/software/charter-for-innovation-creativity-and-access-to-knowledge/index.json new file mode 100644 index 000000000000..06d375e69434 --- /dev/null +++ b/site/public/v1/software/charter-for-innovation-creativity-and-access-to-knowledge/index.json @@ -0,0 +1,19 @@ +{ + "id": 1436, + "slug": "charter-for-innovation-creativity-and-access-to-knowledge", + "name": "Charter for Innovation, Creativity and Access to Knowledge", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5086759" + ], + "created_at": "2026-07-10T10:12:40.053595", + "updated_at": "2026-07-10T10:12:40.053595", + "url": "/v1/software/charter-for-innovation-creativity-and-access-to-knowledge" +} diff --git a/site/public/v1/software/chartle/index.json b/site/public/v1/software/chartle/index.json new file mode 100644 index 000000000000..491d2a5e183f --- /dev/null +++ b/site/public/v1/software/chartle/index.json @@ -0,0 +1,19 @@ +{ + "id": 1437, + "slug": "chartle", + "name": "Chartle", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084827" + ], + "created_at": "2026-07-10T10:12:40.054622", + "updated_at": "2026-07-10T10:12:40.054622", + "url": "/v1/software/chartle" +} diff --git a/site/public/v1/software/chat-80/index.json b/site/public/v1/software/chat-80/index.json new file mode 100644 index 000000000000..fd4b483da15a --- /dev/null +++ b/site/public/v1/software/chat-80/index.json @@ -0,0 +1,19 @@ +{ + "id": 1438, + "slug": "chat-80", + "name": "Chat-80", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q32160626" + ], + "created_at": "2026-07-10T10:12:40.054622", + "updated_at": "2026-07-10T10:12:40.054622", + "url": "/v1/software/chat-80" +} diff --git a/site/public/v1/software/chatbot/index.json b/site/public/v1/software/chatbot/index.json new file mode 100644 index 000000000000..a1fceb71d5cc --- /dev/null +++ b/site/public/v1/software/chatbot/index.json @@ -0,0 +1,29 @@ +{ + "id": 1439, + "slug": "chatbot", + "name": "ChatBot", + "release_date": null, + "developers": [ + "Text, Inc.", + "Text" + ], + "publishers": [ + "Text", + "Text, Inc." + ], + "operating_systems": [ + "web browser" + ], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113127602" + ], + "created_at": "2026-07-10T10:12:40.054622", + "updated_at": "2026-07-10T10:12:40.054622", + "url": "/v1/software/chatbot" +} diff --git a/site/public/v1/software/chatbotkit/index.json b/site/public/v1/software/chatbotkit/index.json new file mode 100644 index 000000000000..4c0fd8b3b1c1 --- /dev/null +++ b/site/public/v1/software/chatbotkit/index.json @@ -0,0 +1,19 @@ +{ + "id": 1440, + "slug": "chatbotkit", + "name": "ChatBotKit", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140443886" + ], + "created_at": "2026-07-10T10:12:40.054622", + "updated_at": "2026-07-10T10:12:40.054622", + "url": "/v1/software/chatbotkit" +} diff --git a/site/public/v1/software/chatsku/index.json b/site/public/v1/software/chatsku/index.json new file mode 100644 index 000000000000..56c1e9116b15 --- /dev/null +++ b/site/public/v1/software/chatsku/index.json @@ -0,0 +1,19 @@ +{ + "id": 1441, + "slug": "chatsku", + "name": "ChatSKU", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140353523" + ], + "created_at": "2026-07-10T10:12:40.055633", + "updated_at": "2026-07-10T10:12:40.055633", + "url": "/v1/software/chatsku" +} diff --git a/site/public/v1/software/cheat/index.json b/site/public/v1/software/cheat/index.json new file mode 100644 index 000000000000..53ee3264186b --- /dev/null +++ b/site/public/v1/software/cheat/index.json @@ -0,0 +1,31 @@ +{ + "id": 1442, + "slug": "cheat", + "name": "cheat", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "illumos", + "DragonFly BSD", + "Plan 9", + "IBM AIX", + "OpenBSD", + "Solaris", + "Microsoft Windows" + ], + "programming_languages": [ + "Go" + ], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117427798" + ], + "created_at": "2026-07-10T10:12:40.055633", + "updated_at": "2026-07-10T10:12:40.055633", + "url": "/v1/software/cheat" +} diff --git a/site/public/v1/software/check-mii-out-channel/index.json b/site/public/v1/software/check-mii-out-channel/index.json new file mode 100644 index 000000000000..ea25a88ac64c --- /dev/null +++ b/site/public/v1/software/check-mii-out-channel/index.json @@ -0,0 +1,19 @@ +{ + "id": 1443, + "slug": "check-mii-out-channel", + "name": "Check Mii Out Channel", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3283969" + ], + "created_at": "2026-07-10T10:12:40.055633", + "updated_at": "2026-07-10T10:12:40.055633", + "url": "/v1/software/check-mii-out-channel" +} diff --git a/site/public/v1/software/check-point-vpn-1/index.json b/site/public/v1/software/check-point-vpn-1/index.json new file mode 100644 index 000000000000..aa9992c43f84 --- /dev/null +++ b/site/public/v1/software/check-point-vpn-1/index.json @@ -0,0 +1,21 @@ +{ + "id": 1444, + "slug": "check-point-vpn-1", + "name": "Check Point VPN-1", + "release_date": null, + "developers": [ + "Check Point" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q751519" + ], + "created_at": "2026-07-10T10:12:40.056547", + "updated_at": "2026-07-10T10:12:40.056547", + "url": "/v1/software/check-point-vpn-1" +} diff --git a/site/public/v1/software/checkin-safe/index.json b/site/public/v1/software/checkin-safe/index.json new file mode 100644 index 000000000000..585ad624dcd3 --- /dev/null +++ b/site/public/v1/software/checkin-safe/index.json @@ -0,0 +1,19 @@ +{ + "id": 1445, + "slug": "checkin-safe", + "name": "CheckIn Safe", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139548993" + ], + "created_at": "2026-07-10T10:12:40.056547", + "updated_at": "2026-07-10T10:12:40.056547", + "url": "/v1/software/checkin-safe" +} diff --git a/site/public/v1/software/checkpolicy/index.json b/site/public/v1/software/checkpolicy/index.json new file mode 100644 index 000000000000..3b74b285df96 --- /dev/null +++ b/site/public/v1/software/checkpolicy/index.json @@ -0,0 +1,19 @@ +{ + "id": 1446, + "slug": "checkpolicy", + "name": "checkpolicy", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974766" + ], + "created_at": "2026-07-10T10:12:40.056547", + "updated_at": "2026-07-10T10:12:40.056547", + "url": "/v1/software/checkpolicy" +} diff --git a/site/public/v1/software/checktext/index.json b/site/public/v1/software/checktext/index.json new file mode 100644 index 000000000000..d148ba5e478e --- /dev/null +++ b/site/public/v1/software/checktext/index.json @@ -0,0 +1,19 @@ +{ + "id": 1447, + "slug": "checktext", + "name": "CheckText", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087779" + ], + "created_at": "2026-07-10T10:12:40.057544", + "updated_at": "2026-07-10T10:12:40.057544", + "url": "/v1/software/checktext" +} diff --git a/site/public/v1/software/cheeppy/index.json b/site/public/v1/software/cheeppy/index.json new file mode 100644 index 000000000000..4a7287ac0531 --- /dev/null +++ b/site/public/v1/software/cheeppy/index.json @@ -0,0 +1,19 @@ +{ + "id": 1448, + "slug": "cheeppy", + "name": "Cheeppy", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139801229" + ], + "created_at": "2026-07-10T10:12:40.057544", + "updated_at": "2026-07-10T10:12:40.057544", + "url": "/v1/software/cheeppy" +} diff --git a/site/public/v1/software/cheetah-security-browser/index.json b/site/public/v1/software/cheetah-security-browser/index.json new file mode 100644 index 000000000000..5f38b9bf9872 --- /dev/null +++ b/site/public/v1/software/cheetah-security-browser/index.json @@ -0,0 +1,23 @@ +{ + "id": 1449, + "slug": "cheetah-security-browser", + "name": "Cheetah Security Browser", + "release_date": null, + "developers": [ + "Cheetah Mobile" + ], + "publishers": [ + "Cheetah Mobile" + ], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q15904677" + ], + "created_at": "2026-07-10T10:12:40.057544", + "updated_at": "2026-07-10T10:12:40.057544", + "url": "/v1/software/cheetah-security-browser" +} diff --git a/site/public/v1/software/cheetah3d/index.json b/site/public/v1/software/cheetah3d/index.json new file mode 100644 index 000000000000..917292112796 --- /dev/null +++ b/site/public/v1/software/cheetah3d/index.json @@ -0,0 +1,19 @@ +{ + "id": 1450, + "slug": "cheetah3d", + "name": "Cheetah3D", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5089450" + ], + "created_at": "2026-07-10T10:12:40.058549", + "updated_at": "2026-07-10T10:12:40.058549", + "url": "/v1/software/cheetah3d" +} diff --git a/site/public/v1/software/chemdoodle-web-components/index.json b/site/public/v1/software/chemdoodle-web-components/index.json new file mode 100644 index 000000000000..85c80a367dd9 --- /dev/null +++ b/site/public/v1/software/chemdoodle-web-components/index.json @@ -0,0 +1,19 @@ +{ + "id": 1451, + "slug": "chemdoodle-web-components", + "name": "ChemDoodle Web Components", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123585903" + ], + "created_at": "2026-07-10T10:12:40.058549", + "updated_at": "2026-07-10T10:12:40.058549", + "url": "/v1/software/chemdoodle-web-components" +} diff --git a/site/public/v1/software/chemdraw/index.json b/site/public/v1/software/chemdraw/index.json new file mode 100644 index 000000000000..54d9bf7b6d2a --- /dev/null +++ b/site/public/v1/software/chemdraw/index.json @@ -0,0 +1,25 @@ +{ + "id": 1452, + "slug": "chemdraw", + "name": "ChemDraw", + "release_date": null, + "developers": [ + "PerkinElmer" + ], + "publishers": [], + "operating_systems": [ + "iOS", + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q898716" + ], + "created_at": "2026-07-10T10:12:40.058549", + "updated_at": "2026-07-10T10:12:40.058549", + "url": "/v1/software/chemdraw" +} diff --git a/site/public/v1/software/chemical-mime-data/index.json b/site/public/v1/software/chemical-mime-data/index.json new file mode 100644 index 000000000000..663e3bf12988 --- /dev/null +++ b/site/public/v1/software/chemical-mime-data/index.json @@ -0,0 +1,19 @@ +{ + "id": 1453, + "slug": "chemical-mime-data", + "name": "chemical-mime-data", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62851466" + ], + "created_at": "2026-07-10T10:12:40.058549", + "updated_at": "2026-07-10T10:12:40.058549", + "url": "/v1/software/chemical-mime-data" +} diff --git a/site/public/v1/software/chemical-workbench/index.json b/site/public/v1/software/chemical-workbench/index.json new file mode 100644 index 000000000000..846bb9349880 --- /dev/null +++ b/site/public/v1/software/chemical-workbench/index.json @@ -0,0 +1,19 @@ +{ + "id": 1454, + "slug": "chemical-workbench", + "name": "Chemical WorkBench", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5090436" + ], + "created_at": "2026-07-10T10:12:40.059549", + "updated_at": "2026-07-10T10:12:40.059549", + "url": "/v1/software/chemical-workbench" +} diff --git a/site/public/v1/software/chemicalize-org/index.json b/site/public/v1/software/chemicalize-org/index.json new file mode 100644 index 000000000000..0a960e7cd70c --- /dev/null +++ b/site/public/v1/software/chemicalize-org/index.json @@ -0,0 +1,19 @@ +{ + "id": 1455, + "slug": "chemicalize-org", + "name": "Chemicalize.org", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5090512" + ], + "created_at": "2026-07-10T10:12:40.059549", + "updated_at": "2026-07-10T10:12:40.059549", + "url": "/v1/software/chemicalize-org" +} diff --git a/site/public/v1/software/chemminer/index.json b/site/public/v1/software/chemminer/index.json new file mode 100644 index 000000000000..c41c132ff699 --- /dev/null +++ b/site/public/v1/software/chemminer/index.json @@ -0,0 +1,23 @@ +{ + "id": 1456, + "slug": "chemminer", + "name": "ChemmineR", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "R" + ], + "licenses": [ + "Artistic License 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112338622" + ], + "created_at": "2026-07-10T10:12:40.059549", + "updated_at": "2026-07-10T10:12:40.059549", + "url": "/v1/software/chemminer" +} diff --git a/site/public/v1/software/chemwindow/index.json b/site/public/v1/software/chemwindow/index.json new file mode 100644 index 000000000000..11ac120499d2 --- /dev/null +++ b/site/public/v1/software/chemwindow/index.json @@ -0,0 +1,21 @@ +{ + "id": 1457, + "slug": "chemwindow", + "name": "ChemWindow", + "release_date": null, + "developers": [ + "Bio-Rad Laboratories" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22907190" + ], + "created_at": "2026-07-10T10:12:40.060549", + "updated_at": "2026-07-10T10:12:40.060549", + "url": "/v1/software/chemwindow" +} diff --git a/site/public/v1/software/cheqin/index.json b/site/public/v1/software/cheqin/index.json new file mode 100644 index 000000000000..1e8677e1d2a2 --- /dev/null +++ b/site/public/v1/software/cheqin/index.json @@ -0,0 +1,19 @@ +{ + "id": 1458, + "slug": "cheqin", + "name": "CHEQIN", + "release_date": "1993-03-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121631738" + ], + "created_at": "2026-07-10T10:12:40.060549", + "updated_at": "2026-07-10T10:12:40.060549", + "url": "/v1/software/cheqin" +} diff --git a/site/public/v1/software/cherryos/index.json b/site/public/v1/software/cherryos/index.json new file mode 100644 index 000000000000..73e5443b76f6 --- /dev/null +++ b/site/public/v1/software/cherryos/index.json @@ -0,0 +1,21 @@ +{ + "id": 1459, + "slug": "cherryos", + "name": "CherryOS", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3306008" + ], + "created_at": "2026-07-10T10:12:40.060549", + "updated_at": "2026-07-10T10:12:40.060549", + "url": "/v1/software/cherryos" +} diff --git a/site/public/v1/software/chess-assistant/index.json b/site/public/v1/software/chess-assistant/index.json new file mode 100644 index 000000000000..a8def94d5e15 --- /dev/null +++ b/site/public/v1/software/chess-assistant/index.json @@ -0,0 +1,19 @@ +{ + "id": 1460, + "slug": "chess-assistant", + "name": "Chess Assistant", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120337" + ], + "created_at": "2026-07-10T10:12:40.061665", + "updated_at": "2026-07-10T10:12:40.061665", + "url": "/v1/software/chess-assistant" +} diff --git a/site/public/v1/software/chess-tiger/index.json b/site/public/v1/software/chess-tiger/index.json new file mode 100644 index 000000000000..5bd92862bb9e --- /dev/null +++ b/site/public/v1/software/chess-tiger/index.json @@ -0,0 +1,21 @@ +{ + "id": 1461, + "slug": "chess-tiger", + "name": "Chess Tiger", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "iOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2157532" + ], + "created_at": "2026-07-10T10:12:40.061665", + "updated_at": "2026-07-10T10:12:40.061665", + "url": "/v1/software/chess-tiger" +} diff --git a/site/public/v1/software/chess960-home/index.json b/site/public/v1/software/chess960-home/index.json new file mode 100644 index 000000000000..a7cd3b0271f8 --- /dev/null +++ b/site/public/v1/software/chess960-home/index.json @@ -0,0 +1,19 @@ +{ + "id": 1462, + "slug": "chess960-home", + "name": "Chess960@home", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3667263" + ], + "created_at": "2026-07-10T10:12:40.061665", + "updated_at": "2026-07-10T10:12:40.061665", + "url": "/v1/software/chess960-home" +} diff --git a/site/public/v1/software/chessgenius/index.json b/site/public/v1/software/chessgenius/index.json new file mode 100644 index 000000000000..561ebe4a42af --- /dev/null +++ b/site/public/v1/software/chessgenius/index.json @@ -0,0 +1,19 @@ +{ + "id": 1463, + "slug": "chessgenius", + "name": "ChessGenius", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2962838" + ], + "created_at": "2026-07-10T10:12:40.062745", + "updated_at": "2026-07-10T10:12:40.062745", + "url": "/v1/software/chessgenius" +} diff --git a/site/public/v1/software/chessx/index.json b/site/public/v1/software/chessx/index.json new file mode 100644 index 000000000000..d6bf31a77e61 --- /dev/null +++ b/site/public/v1/software/chessx/index.json @@ -0,0 +1,19 @@ +{ + "id": 1464, + "slug": "chessx", + "name": "ChessX", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62851465" + ], + "created_at": "2026-07-10T10:12:40.062745", + "updated_at": "2026-07-10T10:12:40.062745", + "url": "/v1/software/chessx" +} diff --git a/site/public/v1/software/chet-c/index.json b/site/public/v1/software/chet-c/index.json new file mode 100644 index 000000000000..7f4867554291 --- /dev/null +++ b/site/public/v1/software/chet-c/index.json @@ -0,0 +1,19 @@ +{ + "id": 1465, + "slug": "chet-c", + "name": "CHET-C", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084828" + ], + "created_at": "2026-07-10T10:12:40.062745", + "updated_at": "2026-07-10T10:12:40.062745", + "url": "/v1/software/chet-c" +} diff --git a/site/public/v1/software/chiasmus/index.json b/site/public/v1/software/chiasmus/index.json new file mode 100644 index 000000000000..e5d8b70dd895 --- /dev/null +++ b/site/public/v1/software/chiasmus/index.json @@ -0,0 +1,25 @@ +{ + "id": 1466, + "slug": "chiasmus", + "name": "Chiasmus", + "release_date": null, + "developers": [ + "Federal Office for Information Security" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1071695" + ], + "created_at": "2026-07-10T10:12:40.062745", + "updated_at": "2026-07-10T10:12:40.062745", + "url": "/v1/software/chiasmus" +} diff --git a/site/public/v1/software/chika/index.json b/site/public/v1/software/chika/index.json new file mode 100644 index 000000000000..296ebcb6d68a --- /dev/null +++ b/site/public/v1/software/chika/index.json @@ -0,0 +1,23 @@ +{ + "id": 1467, + "slug": "chika", + "name": "Chika", + "release_date": "2014-10-16", + "developers": [ + "Internet Co." + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25205745" + ], + "created_at": "2026-07-10T10:12:40.062745", + "updated_at": "2026-07-10T10:12:40.062745", + "url": "/v1/software/chika" +} diff --git a/site/public/v1/software/childsplay/index.json b/site/public/v1/software/childsplay/index.json new file mode 100644 index 000000000000..8ea2f09b6919 --- /dev/null +++ b/site/public/v1/software/childsplay/index.json @@ -0,0 +1,19 @@ +{ + "id": 1468, + "slug": "childsplay", + "name": "Childsplay", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11913677" + ], + "created_at": "2026-07-10T10:12:40.063780", + "updated_at": "2026-07-10T10:12:40.063780", + "url": "/v1/software/childsplay" +} diff --git a/site/public/v1/software/chillispot/index.json b/site/public/v1/software/chillispot/index.json new file mode 100644 index 000000000000..e0f638773ec9 --- /dev/null +++ b/site/public/v1/software/chillispot/index.json @@ -0,0 +1,19 @@ +{ + "id": 1469, + "slug": "chillispot", + "name": "ChilliSpot", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5099041" + ], + "created_at": "2026-07-10T10:12:40.063780", + "updated_at": "2026-07-10T10:12:40.063780", + "url": "/v1/software/chillispot" +} diff --git a/site/public/v1/software/chimera-kernel-module-system/index.json b/site/public/v1/software/chimera-kernel-module-system/index.json new file mode 100644 index 000000000000..83845c6427ee --- /dev/null +++ b/site/public/v1/software/chimera-kernel-module-system/index.json @@ -0,0 +1,21 @@ +{ + "id": 1470, + "slug": "chimera-kernel-module-system", + "name": "Chimera Kernel Module System", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "2-clause BSD License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116695529" + ], + "created_at": "2026-07-10T10:12:40.064739", + "updated_at": "2026-07-10T10:12:40.064739", + "url": "/v1/software/chimera-kernel-module-system" +} diff --git a/site/public/v1/software/chinook/index.json b/site/public/v1/software/chinook/index.json new file mode 100644 index 000000000000..34953ad4c07f --- /dev/null +++ b/site/public/v1/software/chinook/index.json @@ -0,0 +1,23 @@ +{ + "id": 1471, + "slug": "chinook", + "name": "Chinook", + "release_date": null, + "developers": [ + "Jonathan Schaeffer" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [ + "puzzle video game" + ], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q537261" + ], + "created_at": "2026-07-10T10:12:40.064739", + "updated_at": "2026-07-10T10:12:40.064739", + "url": "/v1/software/chinook" +} diff --git a/site/public/v1/software/chipspeech/index.json b/site/public/v1/software/chipspeech/index.json new file mode 100644 index 000000000000..e9ce03923f18 --- /dev/null +++ b/site/public/v1/software/chipspeech/index.json @@ -0,0 +1,19 @@ +{ + "id": 1472, + "slug": "chipspeech", + "name": "Chipspeech", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22907211" + ], + "created_at": "2026-07-10T10:12:40.064739", + "updated_at": "2026-07-10T10:12:40.064739", + "url": "/v1/software/chipspeech" +} diff --git a/site/public/v1/software/chitbase/index.json b/site/public/v1/software/chitbase/index.json new file mode 100644 index 000000000000..08b7b8e6375e --- /dev/null +++ b/site/public/v1/software/chitbase/index.json @@ -0,0 +1,21 @@ +{ + "id": 1473, + "slug": "chitbase", + "name": "ChitBase", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "iOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139971152" + ], + "created_at": "2026-07-10T10:12:40.064739", + "updated_at": "2026-07-10T10:12:40.064739", + "url": "/v1/software/chitbase" +} diff --git a/site/public/v1/software/chitchat/index.json b/site/public/v1/software/chitchat/index.json new file mode 100644 index 000000000000..0b6c9d537650 --- /dev/null +++ b/site/public/v1/software/chitchat/index.json @@ -0,0 +1,21 @@ +{ + "id": 1474, + "slug": "chitchat", + "name": "ChitChat", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "donationware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5102173" + ], + "created_at": "2026-07-10T10:12:40.065742", + "updated_at": "2026-07-10T10:12:40.065742", + "url": "/v1/software/chitchat" +} diff --git a/site/public/v1/software/chkdsk/index.json b/site/public/v1/software/chkdsk/index.json new file mode 100644 index 000000000000..8ae594fc50cf --- /dev/null +++ b/site/public/v1/software/chkdsk/index.json @@ -0,0 +1,21 @@ +{ + "id": 1475, + "slug": "chkdsk", + "name": "CHKDSK", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "CP/J" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11689311" + ], + "created_at": "2026-07-10T10:12:40.065742", + "updated_at": "2026-07-10T10:12:40.065742", + "url": "/v1/software/chkdsk" +} diff --git a/site/public/v1/software/choremonster/index.json b/site/public/v1/software/choremonster/index.json new file mode 100644 index 000000000000..0e2045b47b37 --- /dev/null +++ b/site/public/v1/software/choremonster/index.json @@ -0,0 +1,19 @@ +{ + "id": 1476, + "slug": "choremonster", + "name": "ChoreMonster", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17050842" + ], + "created_at": "2026-07-10T10:12:40.065742", + "updated_at": "2026-07-10T10:12:40.065742", + "url": "/v1/software/choremonster" +} diff --git a/site/public/v1/software/chorus/index.json b/site/public/v1/software/chorus/index.json new file mode 100644 index 000000000000..76832cfd12f7 --- /dev/null +++ b/site/public/v1/software/chorus/index.json @@ -0,0 +1,19 @@ +{ + "id": 1477, + "slug": "chorus", + "name": "Chorus", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084829" + ], + "created_at": "2026-07-10T10:12:40.066742", + "updated_at": "2026-07-10T10:12:40.066742", + "url": "/v1/software/chorus" +} diff --git a/site/public/v1/software/chous/index.json b/site/public/v1/software/chous/index.json new file mode 100644 index 000000000000..6044d8be9e3f --- /dev/null +++ b/site/public/v1/software/chous/index.json @@ -0,0 +1,19 @@ +{ + "id": 1478, + "slug": "chous", + "name": "Chous", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137782083" + ], + "created_at": "2026-07-10T10:12:40.066742", + "updated_at": "2026-07-10T10:12:40.066742", + "url": "/v1/software/chous" +} diff --git a/site/public/v1/software/chromas/index.json b/site/public/v1/software/chromas/index.json new file mode 100644 index 000000000000..effae942a70f --- /dev/null +++ b/site/public/v1/software/chromas/index.json @@ -0,0 +1,19 @@ +{ + "id": 1479, + "slug": "chromas", + "name": "Chromas", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131367123" + ], + "created_at": "2026-07-10T10:12:40.066742", + "updated_at": "2026-07-10T10:12:40.066742", + "url": "/v1/software/chromas" +} diff --git a/site/public/v1/software/chrome-engine/index.json b/site/public/v1/software/chrome-engine/index.json new file mode 100644 index 000000000000..849ce978c54c --- /dev/null +++ b/site/public/v1/software/chrome-engine/index.json @@ -0,0 +1,19 @@ +{ + "id": 1480, + "slug": "chrome-engine", + "name": "Chrome Engine", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2497805" + ], + "created_at": "2026-07-10T10:12:40.067751", + "updated_at": "2026-07-10T10:12:40.067751", + "url": "/v1/software/chrome-engine" +} diff --git a/site/public/v1/software/chronojump-boscosystem/index.json b/site/public/v1/software/chronojump-boscosystem/index.json new file mode 100644 index 000000000000..d777e2436275 --- /dev/null +++ b/site/public/v1/software/chronojump-boscosystem/index.json @@ -0,0 +1,19 @@ +{ + "id": 1481, + "slug": "chronojump-boscosystem", + "name": "Chronojump Boscosystem", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5562017" + ], + "created_at": "2026-07-10T10:12:40.067751", + "updated_at": "2026-07-10T10:12:40.067751", + "url": "/v1/software/chronojump-boscosystem" +} diff --git a/site/public/v1/software/chronos-timeline/index.json b/site/public/v1/software/chronos-timeline/index.json new file mode 100644 index 000000000000..03969c161161 --- /dev/null +++ b/site/public/v1/software/chronos-timeline/index.json @@ -0,0 +1,19 @@ +{ + "id": 1482, + "slug": "chronos-timeline", + "name": "Chronos Timeline", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084830" + ], + "created_at": "2026-07-10T10:12:40.068743", + "updated_at": "2026-07-10T10:12:40.068743", + "url": "/v1/software/chronos-timeline" +} diff --git a/site/public/v1/software/chuchel/index.json b/site/public/v1/software/chuchel/index.json new file mode 100644 index 000000000000..190effb71139 --- /dev/null +++ b/site/public/v1/software/chuchel/index.json @@ -0,0 +1,32 @@ +{ + "id": 1483, + "slug": "chuchel", + "name": "Chuchel", + "release_date": "2018-03-07", + "developers": [ + "Amanita Design" + ], + "publishers": [ + "Amanita Design" + ], + "operating_systems": [ + "iOS", + "Mac operating system", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [ + "art game", + "point-and-click adventure", + "puzzle video game", + "graphic adventure game" + ], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q50414488" + ], + "created_at": "2026-07-10T10:12:40.068743", + "updated_at": "2026-07-10T10:12:40.068743", + "url": "/v1/software/chuchel" +} diff --git a/site/public/v1/software/chunked-data/index.json b/site/public/v1/software/chunked-data/index.json new file mode 100644 index 000000000000..122683f3730f --- /dev/null +++ b/site/public/v1/software/chunked-data/index.json @@ -0,0 +1,19 @@ +{ + "id": 1484, + "slug": "chunked-data", + "name": "chunked-data", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q88501124" + ], + "created_at": "2026-07-10T10:12:40.068743", + "updated_at": "2026-07-10T10:12:40.068743", + "url": "/v1/software/chunked-data" +} diff --git a/site/public/v1/software/cib-pdf-brewer/index.json b/site/public/v1/software/cib-pdf-brewer/index.json new file mode 100644 index 000000000000..d8ff4d0917ab --- /dev/null +++ b/site/public/v1/software/cib-pdf-brewer/index.json @@ -0,0 +1,21 @@ +{ + "id": 1485, + "slug": "cib-pdf-brewer", + "name": "CIB pdf brewer", + "release_date": null, + "developers": [ + "CIB" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1023694" + ], + "created_at": "2026-07-10T10:12:40.068743", + "updated_at": "2026-07-10T10:12:40.068743", + "url": "/v1/software/cib-pdf-brewer" +} diff --git a/site/public/v1/software/cietmap/index.json b/site/public/v1/software/cietmap/index.json new file mode 100644 index 000000000000..1503b9eeb36d --- /dev/null +++ b/site/public/v1/software/cietmap/index.json @@ -0,0 +1,19 @@ +{ + "id": 1486, + "slug": "cietmap", + "name": "CIETmap", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5011637" + ], + "created_at": "2026-07-10T10:12:40.069669", + "updated_at": "2026-07-10T10:12:40.069669", + "url": "/v1/software/cietmap" +} diff --git a/site/public/v1/software/cifs-utils/index.json b/site/public/v1/software/cifs-utils/index.json new file mode 100644 index 000000000000..779b106be169 --- /dev/null +++ b/site/public/v1/software/cifs-utils/index.json @@ -0,0 +1,23 @@ +{ + "id": 1487, + "slug": "cifs-utils", + "name": "cifs-utils", + "release_date": "2010-03-03", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "GNU General Public License, version 2.0 or later", + "GNU Lesser General Public License, version 3.0 or later", + "GNU Lesser General Public License, version 2.1 or later" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62846243" + ], + "created_at": "2026-07-10T10:12:40.069669", + "updated_at": "2026-07-10T10:12:40.069669", + "url": "/v1/software/cifs-utils" +} diff --git a/site/public/v1/software/cimact/index.json b/site/public/v1/software/cimact/index.json new file mode 100644 index 000000000000..05368cfb8a14 --- /dev/null +++ b/site/public/v1/software/cimact/index.json @@ -0,0 +1,19 @@ +{ + "id": 1488, + "slug": "cimact", + "name": "CIMACT", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1023728" + ], + "created_at": "2026-07-10T10:12:40.069669", + "updated_at": "2026-07-10T10:12:40.069669", + "url": "/v1/software/cimact" +} diff --git a/site/public/v1/software/cinco/index.json b/site/public/v1/software/cinco/index.json new file mode 100644 index 000000000000..1aec6c6486ae --- /dev/null +++ b/site/public/v1/software/cinco/index.json @@ -0,0 +1,19 @@ +{ + "id": 1489, + "slug": "cinco", + "name": "Cinco", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084831" + ], + "created_at": "2026-07-10T10:12:40.070761", + "updated_at": "2026-07-10T10:12:40.070761", + "url": "/v1/software/cinco" +} diff --git a/site/public/v1/software/cinder/index.json b/site/public/v1/software/cinder/index.json new file mode 100644 index 000000000000..41cc449e1470 --- /dev/null +++ b/site/public/v1/software/cinder/index.json @@ -0,0 +1,21 @@ +{ + "id": 1490, + "slug": "cinder", + "name": "cinder", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Apache License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974768" + ], + "created_at": "2026-07-10T10:12:40.070761", + "updated_at": "2026-07-10T10:12:40.070761", + "url": "/v1/software/cinder" +} diff --git a/site/public/v1/software/cinema-craft-encoder/index.json b/site/public/v1/software/cinema-craft-encoder/index.json new file mode 100644 index 000000000000..5165938c5aba --- /dev/null +++ b/site/public/v1/software/cinema-craft-encoder/index.json @@ -0,0 +1,19 @@ +{ + "id": 1491, + "slug": "cinema-craft-encoder", + "name": "Cinema Craft Encoder", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5120715" + ], + "created_at": "2026-07-10T10:12:40.070761", + "updated_at": "2026-07-10T10:12:40.070761", + "url": "/v1/software/cinema-craft-encoder" +} diff --git a/site/public/v1/software/cinema-tools/index.json b/site/public/v1/software/cinema-tools/index.json new file mode 100644 index 000000000000..fcb9ea5fd7fb --- /dev/null +++ b/site/public/v1/software/cinema-tools/index.json @@ -0,0 +1,21 @@ +{ + "id": 1492, + "slug": "cinema-tools", + "name": "Cinema Tools", + "release_date": null, + "developers": [ + "Apple Inc." + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5120762" + ], + "created_at": "2026-07-10T10:12:40.071742", + "updated_at": "2026-07-10T10:12:40.071742", + "url": "/v1/software/cinema-tools" +} diff --git a/site/public/v1/software/cinemagraph/index.json b/site/public/v1/software/cinemagraph/index.json new file mode 100644 index 000000000000..2f8e6ed0396d --- /dev/null +++ b/site/public/v1/software/cinemagraph/index.json @@ -0,0 +1,21 @@ +{ + "id": 1493, + "slug": "cinemagraph", + "name": "Cinemagraph", + "release_date": null, + "developers": [ + "Microsoft Mobile" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q14623425" + ], + "created_at": "2026-07-10T10:12:40.071742", + "updated_at": "2026-07-10T10:12:40.071742", + "url": "/v1/software/cinemagraph" +} diff --git a/site/public/v1/software/cinesync/index.json b/site/public/v1/software/cinesync/index.json new file mode 100644 index 000000000000..97e93bd8556c --- /dev/null +++ b/site/public/v1/software/cinesync/index.json @@ -0,0 +1,19 @@ +{ + "id": 1494, + "slug": "cinesync", + "name": "cineSync", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5120636" + ], + "created_at": "2026-07-10T10:12:40.071742", + "updated_at": "2026-07-10T10:12:40.071742", + "url": "/v1/software/cinesync" +} diff --git a/site/public/v1/software/cinnamon-control-center/index.json b/site/public/v1/software/cinnamon-control-center/index.json new file mode 100644 index 000000000000..4b3cf2724ae8 --- /dev/null +++ b/site/public/v1/software/cinnamon-control-center/index.json @@ -0,0 +1,21 @@ +{ + "id": 1495, + "slug": "cinnamon-control-center", + "name": "cinnamon-control-center", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Unix-like operating system" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065534" + ], + "created_at": "2026-07-10T10:12:40.072781", + "updated_at": "2026-07-10T10:12:40.072781", + "url": "/v1/software/cinnamon-control-center" +} diff --git a/site/public/v1/software/cip-tool/index.json b/site/public/v1/software/cip-tool/index.json new file mode 100644 index 000000000000..918683d3df3c --- /dev/null +++ b/site/public/v1/software/cip-tool/index.json @@ -0,0 +1,21 @@ +{ + "id": 1496, + "slug": "cip-tool", + "name": "CIP-Tool", + "release_date": null, + "developers": [ + "ETH Zurich" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5011809" + ], + "created_at": "2026-07-10T10:12:40.072781", + "updated_at": "2026-07-10T10:12:40.072781", + "url": "/v1/software/cip-tool" +} diff --git a/site/public/v1/software/circa-news/index.json b/site/public/v1/software/circa-news/index.json new file mode 100644 index 000000000000..2ff7a6e9e2e1 --- /dev/null +++ b/site/public/v1/software/circa-news/index.json @@ -0,0 +1,19 @@ +{ + "id": 1497, + "slug": "circa-news", + "name": "Circa News", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16971452" + ], + "created_at": "2026-07-10T10:12:40.072781", + "updated_at": "2026-07-10T10:12:40.072781", + "url": "/v1/software/circa-news" +} diff --git a/site/public/v1/software/circos/index.json b/site/public/v1/software/circos/index.json new file mode 100644 index 000000000000..f5eb02136004 --- /dev/null +++ b/site/public/v1/software/circos/index.json @@ -0,0 +1,19 @@ +{ + "id": 1498, + "slug": "circos", + "name": "circos", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63064884" + ], + "created_at": "2026-07-10T10:12:40.073738", + "updated_at": "2026-07-10T10:12:40.073738", + "url": "/v1/software/circos" +} diff --git a/site/public/v1/software/circuit-simulator/index.json b/site/public/v1/software/circuit-simulator/index.json new file mode 100644 index 000000000000..445bfe560b08 --- /dev/null +++ b/site/public/v1/software/circuit-simulator/index.json @@ -0,0 +1,19 @@ +{ + "id": 1499, + "slug": "circuit-simulator", + "name": "Circuit Simulator", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q97378478" + ], + "created_at": "2026-07-10T10:12:40.073738", + "updated_at": "2026-07-10T10:12:40.073738", + "url": "/v1/software/circuit-simulator" +} diff --git a/site/public/v1/software/circuit/index.json b/site/public/v1/software/circuit/index.json new file mode 100644 index 000000000000..afa810e22817 --- /dev/null +++ b/site/public/v1/software/circuit/index.json @@ -0,0 +1,21 @@ +{ + "id": 1500, + "slug": "circuit", + "name": "Circuit", + "release_date": null, + "developers": [ + "Siemens Enterprise Communications" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22907261" + ], + "created_at": "2026-07-10T10:12:40.073738", + "updated_at": "2026-07-10T10:12:40.073738", + "url": "/v1/software/circuit" +} diff --git a/site/public/v1/software/circuitlogix/index.json b/site/public/v1/software/circuitlogix/index.json new file mode 100644 index 000000000000..8dd3a2042e84 --- /dev/null +++ b/site/public/v1/software/circuitlogix/index.json @@ -0,0 +1,19 @@ +{ + "id": 1501, + "slug": "circuitlogix", + "name": "CircuitLogix", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5121566" + ], + "created_at": "2026-07-10T10:12:40.074759", + "updated_at": "2026-07-10T10:12:40.074759", + "url": "/v1/software/circuitlogix" +} diff --git a/site/public/v1/software/circuitmaker/index.json b/site/public/v1/software/circuitmaker/index.json new file mode 100644 index 000000000000..2e7ea62eb775 --- /dev/null +++ b/site/public/v1/software/circuitmaker/index.json @@ -0,0 +1,25 @@ +{ + "id": 1502, + "slug": "circuitmaker", + "name": "CircuitMaker", + "release_date": "2015-01-01", + "developers": [ + "Altium Limited" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [ + "Delphi" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25304395" + ], + "created_at": "2026-07-10T10:12:40.074759", + "updated_at": "2026-07-10T10:12:40.074759", + "url": "/v1/software/circuitmaker" +} diff --git a/site/public/v1/software/circuitpython/index.json b/site/public/v1/software/circuitpython/index.json new file mode 100644 index 000000000000..594257677aa3 --- /dev/null +++ b/site/public/v1/software/circuitpython/index.json @@ -0,0 +1,21 @@ +{ + "id": 1503, + "slug": "circuitpython", + "name": "CircuitPython", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q55607667" + ], + "created_at": "2026-07-10T10:12:40.074759", + "updated_at": "2026-07-10T10:12:40.074759", + "url": "/v1/software/circuitpython" +} diff --git a/site/public/v1/software/circuits-cloud/index.json b/site/public/v1/software/circuits-cloud/index.json new file mode 100644 index 000000000000..1a16bdcf9b46 --- /dev/null +++ b/site/public/v1/software/circuits-cloud/index.json @@ -0,0 +1,19 @@ +{ + "id": 1504, + "slug": "circuits-cloud", + "name": "Circuits Cloud", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22907263" + ], + "created_at": "2026-07-10T10:12:40.075729", + "updated_at": "2026-07-10T10:12:40.075729", + "url": "/v1/software/circuits-cloud" +} diff --git a/site/public/v1/software/circulaw/index.json b/site/public/v1/software/circulaw/index.json new file mode 100644 index 000000000000..bb53fc13c02e --- /dev/null +++ b/site/public/v1/software/circulaw/index.json @@ -0,0 +1,21 @@ +{ + "id": 1505, + "slug": "circulaw", + "name": "CircuLaw", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "GNU General Public License, version 3.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120232836" + ], + "created_at": "2026-07-10T10:12:40.075729", + "updated_at": "2026-07-10T10:12:40.075729", + "url": "/v1/software/circulaw" +} diff --git a/site/public/v1/software/circumflex/index.json b/site/public/v1/software/circumflex/index.json new file mode 100644 index 000000000000..57a2e0110b87 --- /dev/null +++ b/site/public/v1/software/circumflex/index.json @@ -0,0 +1,19 @@ +{ + "id": 1506, + "slug": "circumflex", + "name": "Circumflex", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4036226" + ], + "created_at": "2026-07-10T10:12:40.075729", + "updated_at": "2026-07-10T10:12:40.075729", + "url": "/v1/software/circumflex" +} diff --git a/site/public/v1/software/cis-benchmark-evaluation/index.json b/site/public/v1/software/cis-benchmark-evaluation/index.json new file mode 100644 index 000000000000..480b8ec6b9c8 --- /dev/null +++ b/site/public/v1/software/cis-benchmark-evaluation/index.json @@ -0,0 +1,19 @@ +{ + "id": 1507, + "slug": "cis-benchmark-evaluation", + "name": "CIS-Benchmark-Evaluation", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127485269" + ], + "created_at": "2026-07-10T10:12:40.075729", + "updated_at": "2026-07-10T10:12:40.075729", + "url": "/v1/software/cis-benchmark-evaluation" +} diff --git a/site/public/v1/software/cisco-9200l-48t-4x/index.json b/site/public/v1/software/cisco-9200l-48t-4x/index.json new file mode 100644 index 000000000000..2805df4fb4fe --- /dev/null +++ b/site/public/v1/software/cisco-9200l-48t-4x/index.json @@ -0,0 +1,19 @@ +{ + "id": 1508, + "slug": "cisco-9200l-48t-4x", + "name": "Cisco 9200L-48T-4X", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130364042" + ], + "created_at": "2026-07-10T10:12:40.075729", + "updated_at": "2026-07-10T10:12:40.075729", + "url": "/v1/software/cisco-9200l-48t-4x" +} diff --git a/site/public/v1/software/cisco-active-network-abstraction/index.json b/site/public/v1/software/cisco-active-network-abstraction/index.json new file mode 100644 index 000000000000..5796e28caa10 --- /dev/null +++ b/site/public/v1/software/cisco-active-network-abstraction/index.json @@ -0,0 +1,19 @@ +{ + "id": 1509, + "slug": "cisco-active-network-abstraction", + "name": "Cisco Active Network Abstraction", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2453082" + ], + "created_at": "2026-07-10T10:12:40.077330", + "updated_at": "2026-07-10T10:12:40.077330", + "url": "/v1/software/cisco-active-network-abstraction" +} diff --git a/site/public/v1/software/cisco-cbs250-16t-2g/index.json b/site/public/v1/software/cisco-cbs250-16t-2g/index.json new file mode 100644 index 000000000000..84bebcb38bdc --- /dev/null +++ b/site/public/v1/software/cisco-cbs250-16t-2g/index.json @@ -0,0 +1,19 @@ +{ + "id": 1510, + "slug": "cisco-cbs250-16t-2g", + "name": "Cisco CBS250-16T-2G", + "release_date": "2020-06-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123714576" + ], + "created_at": "2026-07-10T10:12:40.077330", + "updated_at": "2026-07-10T10:12:40.077330", + "url": "/v1/software/cisco-cbs250-16t-2g" +} diff --git a/site/public/v1/software/cisco-cbs250-8t-e-2g/index.json b/site/public/v1/software/cisco-cbs250-8t-e-2g/index.json new file mode 100644 index 000000000000..a3d697cca2fb --- /dev/null +++ b/site/public/v1/software/cisco-cbs250-8t-e-2g/index.json @@ -0,0 +1,19 @@ +{ + "id": 1511, + "slug": "cisco-cbs250-8t-e-2g", + "name": "Cisco CBS250-8T-E-2G", + "release_date": "2020-06-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111108610" + ], + "created_at": "2026-07-10T10:12:40.077330", + "updated_at": "2026-07-10T10:12:40.077330", + "url": "/v1/software/cisco-cbs250-8t-e-2g" +} diff --git a/site/public/v1/software/cisco-network-registrar/index.json b/site/public/v1/software/cisco-network-registrar/index.json new file mode 100644 index 000000000000..303091426b69 --- /dev/null +++ b/site/public/v1/software/cisco-network-registrar/index.json @@ -0,0 +1,19 @@ +{ + "id": 1512, + "slug": "cisco-network-registrar", + "name": "Cisco Network Registrar", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4308412" + ], + "created_at": "2026-07-10T10:12:40.078418", + "updated_at": "2026-07-10T10:12:40.078418", + "url": "/v1/software/cisco-network-registrar" +} diff --git a/site/public/v1/software/cisco-security-agent/index.json b/site/public/v1/software/cisco-security-agent/index.json new file mode 100644 index 000000000000..1cff2801c6cd --- /dev/null +++ b/site/public/v1/software/cisco-security-agent/index.json @@ -0,0 +1,19 @@ +{ + "id": 1513, + "slug": "cisco-security-agent", + "name": "Cisco Security Agent", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16247729" + ], + "created_at": "2026-07-10T10:12:40.078418", + "updated_at": "2026-07-10T10:12:40.078418", + "url": "/v1/software/cisco-security-agent" +} diff --git a/site/public/v1/software/cisco-systems-vpn-client/index.json b/site/public/v1/software/cisco-systems-vpn-client/index.json new file mode 100644 index 000000000000..728a6762356b --- /dev/null +++ b/site/public/v1/software/cisco-systems-vpn-client/index.json @@ -0,0 +1,21 @@ +{ + "id": 1514, + "slug": "cisco-systems-vpn-client", + "name": "Cisco Systems VPN Client", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2974330" + ], + "created_at": "2026-07-10T10:12:40.078418", + "updated_at": "2026-07-10T10:12:40.078418", + "url": "/v1/software/cisco-systems-vpn-client" +} diff --git a/site/public/v1/software/cisco-unified-communications-manager/index.json b/site/public/v1/software/cisco-unified-communications-manager/index.json new file mode 100644 index 000000000000..8577927747b2 --- /dev/null +++ b/site/public/v1/software/cisco-unified-communications-manager/index.json @@ -0,0 +1,19 @@ +{ + "id": 1515, + "slug": "cisco-unified-communications-manager", + "name": "Cisco Unified Communications Manager", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1027338" + ], + "created_at": "2026-07-10T10:12:40.079397", + "updated_at": "2026-07-10T10:12:40.079397", + "url": "/v1/software/cisco-unified-communications-manager" +} diff --git a/site/public/v1/software/cisdem-pdfconverterocr-for-mac/index.json b/site/public/v1/software/cisdem-pdfconverterocr-for-mac/index.json new file mode 100644 index 000000000000..8762480bd45e --- /dev/null +++ b/site/public/v1/software/cisdem-pdfconverterocr-for-mac/index.json @@ -0,0 +1,19 @@ +{ + "id": 1516, + "slug": "cisdem-pdfconverterocr-for-mac", + "name": "Cisdem PDFConverterOCR for Mac", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084832" + ], + "created_at": "2026-07-10T10:12:40.079397", + "updated_at": "2026-07-10T10:12:40.079397", + "url": "/v1/software/cisdem-pdfconverterocr-for-mac" +} diff --git a/site/public/v1/software/citablehub/index.json b/site/public/v1/software/citablehub/index.json new file mode 100644 index 000000000000..37126e6b036e --- /dev/null +++ b/site/public/v1/software/citablehub/index.json @@ -0,0 +1,19 @@ +{ + "id": 1517, + "slug": "citablehub", + "name": "CitableHub", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140078947" + ], + "created_at": "2026-07-10T10:12:40.079397", + "updated_at": "2026-07-10T10:12:40.079397", + "url": "/v1/software/citablehub" +} diff --git a/site/public/v1/software/citadel-q112569085/index.json b/site/public/v1/software/citadel-q112569085/index.json new file mode 100644 index 000000000000..02208a2c1f47 --- /dev/null +++ b/site/public/v1/software/citadel-q112569085/index.json @@ -0,0 +1,19 @@ +{ + "id": 1518, + "slug": "citadel-q112569085", + "name": "Citadel", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112569085" + ], + "created_at": "2026-07-10T10:12:40.080423", + "updated_at": "2026-07-10T10:12:40.080423", + "url": "/v1/software/citadel-q112569085" +} diff --git a/site/public/v1/software/citadel/index.json b/site/public/v1/software/citadel/index.json new file mode 100644 index 000000000000..76963e0aa22d --- /dev/null +++ b/site/public/v1/software/citadel/index.json @@ -0,0 +1,19 @@ +{ + "id": 1519, + "slug": "citadel", + "name": "Citadel", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5122367" + ], + "created_at": "2026-07-10T10:12:40.080423", + "updated_at": "2026-07-10T10:12:40.080423", + "url": "/v1/software/citadel" +} diff --git a/site/public/v1/software/citation-intelligence/index.json b/site/public/v1/software/citation-intelligence/index.json new file mode 100644 index 000000000000..bbcb18cfdfe9 --- /dev/null +++ b/site/public/v1/software/citation-intelligence/index.json @@ -0,0 +1,25 @@ +{ + "id": 1520, + "slug": "citation-intelligence", + "name": "citation-intelligence", + "release_date": null, + "developers": [ + "AutomateLab" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "TypeScript" + ], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139962041" + ], + "created_at": "2026-07-10T10:12:40.080423", + "updated_at": "2026-07-10T10:12:40.080423", + "url": "/v1/software/citation-intelligence" +} diff --git a/site/public/v1/software/citation-js/index.json b/site/public/v1/software/citation-js/index.json new file mode 100644 index 000000000000..9d2770eaaa69 --- /dev/null +++ b/site/public/v1/software/citation-js/index.json @@ -0,0 +1,25 @@ +{ + "id": 1521, + "slug": "citation-js", + "name": "Citation.js", + "release_date": "2016-10-27", + "developers": [ + "Lars Willighagen" + ], + "publishers": [], + "operating_systems": [ + "cross-platform" + ], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60565843" + ], + "created_at": "2026-07-10T10:12:40.080423", + "updated_at": "2026-07-10T10:12:40.080423", + "url": "/v1/software/citation-js" +} diff --git a/site/public/v1/software/citavi/index.json b/site/public/v1/software/citavi/index.json new file mode 100644 index 000000000000..19487d6058e4 --- /dev/null +++ b/site/public/v1/software/citavi/index.json @@ -0,0 +1,29 @@ +{ + "id": 1522, + "slug": "citavi", + "name": "Citavi", + "release_date": "1995-01-01", + "developers": [ + "Swiss Academic Software" + ], + "publishers": [], + "operating_systems": [ + "Windows Server 2016", + "Windows 8.1", + "Windows Server 2008", + "Windows 7", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1093321" + ], + "created_at": "2026-07-10T10:12:40.081422", + "updated_at": "2026-07-10T10:12:40.081422", + "url": "/v1/software/citavi" +} diff --git a/site/public/v1/software/citect/index.json b/site/public/v1/software/citect/index.json new file mode 100644 index 000000000000..ed5d86749a44 --- /dev/null +++ b/site/public/v1/software/citect/index.json @@ -0,0 +1,19 @@ +{ + "id": 1523, + "slug": "citect", + "name": "Citect", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q479220" + ], + "created_at": "2026-07-10T10:12:40.081422", + "updated_at": "2026-07-10T10:12:40.081422", + "url": "/v1/software/citect" +} diff --git a/site/public/v1/software/citeproc-js/index.json b/site/public/v1/software/citeproc-js/index.json new file mode 100644 index 000000000000..e355ed58f159 --- /dev/null +++ b/site/public/v1/software/citeproc-js/index.json @@ -0,0 +1,24 @@ +{ + "id": 1524, + "slug": "citeproc-js", + "name": "citeproc-js", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "cross-platform" + ], + "programming_languages": [], + "licenses": [ + "GNU Affero General Public License, version 3.0 or later", + "Common Public Attribution License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112255333" + ], + "created_at": "2026-07-10T10:12:40.081422", + "updated_at": "2026-07-10T10:12:40.081422", + "url": "/v1/software/citeproc-js" +} diff --git a/site/public/v1/software/citizen-cop/index.json b/site/public/v1/software/citizen-cop/index.json new file mode 100644 index 000000000000..969df333f15f --- /dev/null +++ b/site/public/v1/software/citizen-cop/index.json @@ -0,0 +1,19 @@ +{ + "id": 1525, + "slug": "citizen-cop", + "name": "Citizen COP", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17050907" + ], + "created_at": "2026-07-10T10:12:40.082394", + "updated_at": "2026-07-10T10:12:40.082394", + "url": "/v1/software/citizen-cop" +} diff --git a/site/public/v1/software/citizen/index.json b/site/public/v1/software/citizen/index.json new file mode 100644 index 000000000000..8ea38d09e79c --- /dev/null +++ b/site/public/v1/software/citizen/index.json @@ -0,0 +1,19 @@ +{ + "id": 1526, + "slug": "citizen", + "name": "Citizen", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60756019" + ], + "created_at": "2026-07-10T10:12:40.082394", + "updated_at": "2026-07-10T10:12:40.082394", + "url": "/v1/software/citizen" +} diff --git a/site/public/v1/software/citrio/index.json b/site/public/v1/software/citrio/index.json new file mode 100644 index 000000000000..daacfd4d3e5b --- /dev/null +++ b/site/public/v1/software/citrio/index.json @@ -0,0 +1,19 @@ +{ + "id": 1527, + "slug": "citrio", + "name": "Citrio", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q19864769" + ], + "created_at": "2026-07-10T10:12:40.082394", + "updated_at": "2026-07-10T10:12:40.082394", + "url": "/v1/software/citrio" +} diff --git a/site/public/v1/software/citrix-analytics/index.json b/site/public/v1/software/citrix-analytics/index.json new file mode 100644 index 000000000000..edc10f1f9668 --- /dev/null +++ b/site/public/v1/software/citrix-analytics/index.json @@ -0,0 +1,21 @@ +{ + "id": 1528, + "slug": "citrix-analytics", + "name": "Citrix Analytics", + "release_date": null, + "developers": [ + "Citrix Systems" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105756395" + ], + "created_at": "2026-07-10T10:12:40.083148", + "updated_at": "2026-07-10T10:12:40.083148", + "url": "/v1/software/citrix-analytics" +} diff --git a/site/public/v1/software/citrix-cloud/index.json b/site/public/v1/software/citrix-cloud/index.json new file mode 100644 index 000000000000..15dec45d6705 --- /dev/null +++ b/site/public/v1/software/citrix-cloud/index.json @@ -0,0 +1,21 @@ +{ + "id": 1529, + "slug": "citrix-cloud", + "name": "Citrix Cloud", + "release_date": null, + "developers": [ + "Citrix Systems" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28404578" + ], + "created_at": "2026-07-10T10:12:40.083148", + "updated_at": "2026-07-10T10:12:40.083148", + "url": "/v1/software/citrix-cloud" +} diff --git a/site/public/v1/software/citrix-endpoint-management/index.json b/site/public/v1/software/citrix-endpoint-management/index.json new file mode 100644 index 000000000000..1aaf572d41a5 --- /dev/null +++ b/site/public/v1/software/citrix-endpoint-management/index.json @@ -0,0 +1,21 @@ +{ + "id": 1530, + "slug": "citrix-endpoint-management", + "name": "Citrix Endpoint Management", + "release_date": null, + "developers": [ + "Citrix Systems" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q21041374" + ], + "created_at": "2026-07-10T10:12:40.083148", + "updated_at": "2026-07-10T10:12:40.083148", + "url": "/v1/software/citrix-endpoint-management" +} diff --git a/site/public/v1/software/citrix-sd-wan/index.json b/site/public/v1/software/citrix-sd-wan/index.json new file mode 100644 index 000000000000..bf34c40110c2 --- /dev/null +++ b/site/public/v1/software/citrix-sd-wan/index.json @@ -0,0 +1,21 @@ +{ + "id": 1531, + "slug": "citrix-sd-wan", + "name": "Citrix SD-WAN", + "release_date": null, + "developers": [ + "Citrix Systems" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106627259" + ], + "created_at": "2026-07-10T10:12:40.083148", + "updated_at": "2026-07-10T10:12:40.083148", + "url": "/v1/software/citrix-sd-wan" +} diff --git a/site/public/v1/software/citrix-secure-internet-access/index.json b/site/public/v1/software/citrix-secure-internet-access/index.json new file mode 100644 index 000000000000..891862c3ff90 --- /dev/null +++ b/site/public/v1/software/citrix-secure-internet-access/index.json @@ -0,0 +1,21 @@ +{ + "id": 1532, + "slug": "citrix-secure-internet-access", + "name": "Citrix Secure Internet Access", + "release_date": null, + "developers": [ + "Citrix Systems" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106627241" + ], + "created_at": "2026-07-10T10:12:40.084156", + "updated_at": "2026-07-10T10:12:40.084156", + "url": "/v1/software/citrix-secure-internet-access" +} diff --git a/site/public/v1/software/citrix-secure-workspace-access/index.json b/site/public/v1/software/citrix-secure-workspace-access/index.json new file mode 100644 index 000000000000..45229521fd0c --- /dev/null +++ b/site/public/v1/software/citrix-secure-workspace-access/index.json @@ -0,0 +1,21 @@ +{ + "id": 1533, + "slug": "citrix-secure-workspace-access", + "name": "Citrix Secure Workspace Access", + "release_date": null, + "developers": [ + "Citrix Systems" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106627221" + ], + "created_at": "2026-07-10T10:12:40.084156", + "updated_at": "2026-07-10T10:12:40.084156", + "url": "/v1/software/citrix-secure-workspace-access" +} diff --git a/site/public/v1/software/citrix-virtual-apps/index.json b/site/public/v1/software/citrix-virtual-apps/index.json new file mode 100644 index 000000000000..c1e57665c9c0 --- /dev/null +++ b/site/public/v1/software/citrix-virtual-apps/index.json @@ -0,0 +1,25 @@ +{ + "id": 1534, + "slug": "citrix-virtual-apps", + "name": "Citrix Virtual Apps", + "release_date": null, + "developers": [ + "Citrix Systems" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1093482" + ], + "created_at": "2026-07-10T10:12:40.084156", + "updated_at": "2026-07-10T10:12:40.084156", + "url": "/v1/software/citrix-virtual-apps" +} diff --git a/site/public/v1/software/citrix-workspace/index.json b/site/public/v1/software/citrix-workspace/index.json new file mode 100644 index 000000000000..a0966ee28417 --- /dev/null +++ b/site/public/v1/software/citrix-workspace/index.json @@ -0,0 +1,23 @@ +{ + "id": 1535, + "slug": "citrix-workspace", + "name": "Citrix Workspace", + "release_date": null, + "developers": [ + "Citrix Systems" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105394670" + ], + "created_at": "2026-07-10T10:12:40.085156", + "updated_at": "2026-07-10T10:12:40.085156", + "url": "/v1/software/citrix-workspace" +} diff --git a/site/public/v1/software/city-art-search/index.json b/site/public/v1/software/city-art-search/index.json new file mode 100644 index 000000000000..69851b1972d1 --- /dev/null +++ b/site/public/v1/software/city-art-search/index.json @@ -0,0 +1,19 @@ +{ + "id": 1536, + "slug": "city-art-search", + "name": "City Art Search", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131471057" + ], + "created_at": "2026-07-10T10:12:40.085156", + "updated_at": "2026-07-10T10:12:40.085156", + "url": "/v1/software/city-art-search" +} diff --git a/site/public/v1/software/cityengine/index.json b/site/public/v1/software/cityengine/index.json new file mode 100644 index 000000000000..d05e82d8f069 --- /dev/null +++ b/site/public/v1/software/cityengine/index.json @@ -0,0 +1,23 @@ +{ + "id": 1537, + "slug": "cityengine", + "name": "CityEngine", + "release_date": "2008-08-01", + "developers": [ + "Esri" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4036242" + ], + "created_at": "2026-07-10T10:12:40.085156", + "updated_at": "2026-07-10T10:12:40.085156", + "url": "/v1/software/cityengine" +} diff --git a/site/public/v1/software/citymanager/index.json b/site/public/v1/software/citymanager/index.json new file mode 100644 index 000000000000..800eb824aba4 --- /dev/null +++ b/site/public/v1/software/citymanager/index.json @@ -0,0 +1,21 @@ +{ + "id": 1538, + "slug": "citymanager", + "name": "CityManager", + "release_date": null, + "developers": [ + "MyTraffic" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138855896" + ], + "created_at": "2026-07-10T10:12:40.085156", + "updated_at": "2026-07-10T10:12:40.085156", + "url": "/v1/software/citymanager" +} diff --git a/site/public/v1/software/citysurf-globe/index.json b/site/public/v1/software/citysurf-globe/index.json new file mode 100644 index 000000000000..7772894f4147 --- /dev/null +++ b/site/public/v1/software/citysurf-globe/index.json @@ -0,0 +1,19 @@ +{ + "id": 1539, + "slug": "citysurf-globe", + "name": "CitySurf Globe", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5122998" + ], + "created_at": "2026-07-10T10:12:40.086161", + "updated_at": "2026-07-10T10:12:40.086161", + "url": "/v1/software/citysurf-globe" +} diff --git a/site/public/v1/software/civil-engineering-software/index.json b/site/public/v1/software/civil-engineering-software/index.json new file mode 100644 index 000000000000..bc4eaa0aa384 --- /dev/null +++ b/site/public/v1/software/civil-engineering-software/index.json @@ -0,0 +1,19 @@ +{ + "id": 1540, + "slug": "civil-engineering-software", + "name": "civil engineering software", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5124663" + ], + "created_at": "2026-07-10T10:12:40.086161", + "updated_at": "2026-07-10T10:12:40.086161", + "url": "/v1/software/civil-engineering-software" +} diff --git a/site/public/v1/software/ckbcomp/index.json b/site/public/v1/software/ckbcomp/index.json new file mode 100644 index 000000000000..982901f5f25f --- /dev/null +++ b/site/public/v1/software/ckbcomp/index.json @@ -0,0 +1,19 @@ +{ + "id": 1541, + "slug": "ckbcomp", + "name": "ckbcomp", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065567" + ], + "created_at": "2026-07-10T10:12:40.087160", + "updated_at": "2026-07-10T10:12:40.087160", + "url": "/v1/software/ckbcomp" +} diff --git a/site/public/v1/software/cl/index.json b/site/public/v1/software/cl/index.json new file mode 100644 index 000000000000..933540e8dee1 --- /dev/null +++ b/site/public/v1/software/cl/index.json @@ -0,0 +1,19 @@ +{ + "id": 1542, + "slug": "cl", + "name": "cl", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974769" + ], + "created_at": "2026-07-10T10:12:40.087160", + "updated_at": "2026-07-10T10:12:40.087160", + "url": "/v1/software/cl" +} diff --git a/site/public/v1/software/clamp/index.json b/site/public/v1/software/clamp/index.json new file mode 100644 index 000000000000..25a6a22f1876 --- /dev/null +++ b/site/public/v1/software/clamp/index.json @@ -0,0 +1,19 @@ +{ + "id": 1543, + "slug": "clamp", + "name": "CLAMP", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117223249" + ], + "created_at": "2026-07-10T10:12:40.087160", + "updated_at": "2026-07-10T10:12:40.087160", + "url": "/v1/software/clamp" +} diff --git a/site/public/v1/software/clampd/index.json b/site/public/v1/software/clampd/index.json new file mode 100644 index 000000000000..948598c5b0e5 --- /dev/null +++ b/site/public/v1/software/clampd/index.json @@ -0,0 +1,27 @@ +{ + "id": 1544, + "slug": "clampd", + "name": "Clampd", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [ + "Python", + "TypeScript", + "ClickHouse", + "React" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139792412" + ], + "created_at": "2026-07-10T10:12:40.087160", + "updated_at": "2026-07-10T10:12:40.087160", + "url": "/v1/software/clampd" +} diff --git a/site/public/v1/software/clamsmtp/index.json b/site/public/v1/software/clamsmtp/index.json new file mode 100644 index 000000000000..817a065f6695 --- /dev/null +++ b/site/public/v1/software/clamsmtp/index.json @@ -0,0 +1,19 @@ +{ + "id": 1545, + "slug": "clamsmtp", + "name": "ClamSMTP", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62851461" + ], + "created_at": "2026-07-10T10:12:40.088160", + "updated_at": "2026-07-10T10:12:40.088160", + "url": "/v1/software/clamsmtp" +} diff --git a/site/public/v1/software/clang-python/index.json b/site/public/v1/software/clang-python/index.json new file mode 100644 index 000000000000..114c48747aee --- /dev/null +++ b/site/public/v1/software/clang-python/index.json @@ -0,0 +1,21 @@ +{ + "id": 1546, + "slug": "clang-python", + "name": "clang-python", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Apache License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974770" + ], + "created_at": "2026-07-10T10:12:40.088160", + "updated_at": "2026-07-10T10:12:40.088160", + "url": "/v1/software/clang-python" +} diff --git a/site/public/v1/software/clapper/index.json b/site/public/v1/software/clapper/index.json new file mode 100644 index 000000000000..2512cd7c9f57 --- /dev/null +++ b/site/public/v1/software/clapper/index.json @@ -0,0 +1,19 @@ +{ + "id": 1547, + "slug": "clapper", + "name": "Clapper", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q132132616" + ], + "created_at": "2026-07-10T10:12:40.089160", + "updated_at": "2026-07-10T10:12:40.089160", + "url": "/v1/software/clapper" +} diff --git a/site/public/v1/software/clarabel/index.json b/site/public/v1/software/clarabel/index.json new file mode 100644 index 000000000000..bf59d4f8b700 --- /dev/null +++ b/site/public/v1/software/clarabel/index.json @@ -0,0 +1,21 @@ +{ + "id": 1548, + "slug": "clarabel", + "name": "clarabel", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Apache Software License 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134410820" + ], + "created_at": "2026-07-10T10:12:40.089160", + "updated_at": "2026-07-10T10:12:40.089160", + "url": "/v1/software/clarabel" +} diff --git a/site/public/v1/software/clarified-networks/index.json b/site/public/v1/software/clarified-networks/index.json new file mode 100644 index 000000000000..7d2e0b418a12 --- /dev/null +++ b/site/public/v1/software/clarified-networks/index.json @@ -0,0 +1,19 @@ +{ + "id": 1549, + "slug": "clarified-networks", + "name": "Clarified Networks", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5126964" + ], + "created_at": "2026-07-10T10:12:40.089160", + "updated_at": "2026-07-10T10:12:40.089160", + "url": "/v1/software/clarified-networks" +} diff --git a/site/public/v1/software/clarify-it/index.json b/site/public/v1/software/clarify-it/index.json new file mode 100644 index 000000000000..86a4a56dcc6d --- /dev/null +++ b/site/public/v1/software/clarify-it/index.json @@ -0,0 +1,19 @@ +{ + "id": 1550, + "slug": "clarify-it", + "name": "Clarify-it", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084833" + ], + "created_at": "2026-07-10T10:12:40.089160", + "updated_at": "2026-07-10T10:12:40.089160", + "url": "/v1/software/clarify-it" +} diff --git a/site/public/v1/software/clarin-pl/index.json b/site/public/v1/software/clarin-pl/index.json new file mode 100644 index 000000000000..5e9869b9edb9 --- /dev/null +++ b/site/public/v1/software/clarin-pl/index.json @@ -0,0 +1,19 @@ +{ + "id": 1551, + "slug": "clarin-pl", + "name": "CLARIN-PL", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084835" + ], + "created_at": "2026-07-10T10:12:40.090160", + "updated_at": "2026-07-10T10:12:40.090160", + "url": "/v1/software/clarin-pl" +} diff --git a/site/public/v1/software/claris-cad/index.json b/site/public/v1/software/claris-cad/index.json new file mode 100644 index 000000000000..9d26e5420736 --- /dev/null +++ b/site/public/v1/software/claris-cad/index.json @@ -0,0 +1,21 @@ +{ + "id": 1552, + "slug": "claris-cad", + "name": "Claris CAD", + "release_date": null, + "developers": [ + "Claris" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5127046" + ], + "created_at": "2026-07-10T10:12:40.090160", + "updated_at": "2026-07-10T10:12:40.090160", + "url": "/v1/software/claris-cad" +} diff --git a/site/public/v1/software/claris-impact/index.json b/site/public/v1/software/claris-impact/index.json new file mode 100644 index 000000000000..c1d2278c73fc --- /dev/null +++ b/site/public/v1/software/claris-impact/index.json @@ -0,0 +1,19 @@ +{ + "id": 1553, + "slug": "claris-impact", + "name": "Claris Impact", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5127049" + ], + "created_at": "2026-07-10T10:12:40.091157", + "updated_at": "2026-07-10T10:12:40.091157", + "url": "/v1/software/claris-impact" +} diff --git a/site/public/v1/software/claris-resolve/index.json b/site/public/v1/software/claris-resolve/index.json new file mode 100644 index 000000000000..c911c5e5c6ad --- /dev/null +++ b/site/public/v1/software/claris-resolve/index.json @@ -0,0 +1,19 @@ +{ + "id": 1554, + "slug": "claris-resolve", + "name": "Claris Resolve", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5127055" + ], + "created_at": "2026-07-10T10:12:40.091157", + "updated_at": "2026-07-10T10:12:40.091157", + "url": "/v1/software/claris-resolve" +} diff --git a/site/public/v1/software/clarisworks/index.json b/site/public/v1/software/clarisworks/index.json new file mode 100644 index 000000000000..cbbaa22aaffb --- /dev/null +++ b/site/public/v1/software/clarisworks/index.json @@ -0,0 +1,21 @@ +{ + "id": 1555, + "slug": "clarisworks", + "name": "ClarisWorks", + "release_date": null, + "developers": [], + "publishers": [ + "Claris" + ], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3679131" + ], + "created_at": "2026-07-10T10:12:40.091157", + "updated_at": "2026-07-10T10:12:40.091157", + "url": "/v1/software/clarisworks" +} diff --git a/site/public/v1/software/clarity-q139414637/index.json b/site/public/v1/software/clarity-q139414637/index.json new file mode 100644 index 000000000000..d2cb0b63e581 --- /dev/null +++ b/site/public/v1/software/clarity-q139414637/index.json @@ -0,0 +1,25 @@ +{ + "id": 1556, + "slug": "clarity-q139414637", + "name": "Clarity", + "release_date": null, + "developers": [ + "Health AI" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Python" + ], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139414637" + ], + "created_at": "2026-07-10T10:12:40.091157", + "updated_at": "2026-07-10T10:12:40.091157", + "url": "/v1/software/clarity-q139414637" +} diff --git a/site/public/v1/software/clarity/index.json b/site/public/v1/software/clarity/index.json new file mode 100644 index 000000000000..4a1017ae61f0 --- /dev/null +++ b/site/public/v1/software/clarity/index.json @@ -0,0 +1,22 @@ +{ + "id": 1557, + "slug": "clarity", + "name": "Clarity", + "release_date": null, + "developers": [ + "CA Technologies", + "Broadcom" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1095644" + ], + "created_at": "2026-07-10T10:12:40.091157", + "updated_at": "2026-07-10T10:12:40.091157", + "url": "/v1/software/clarity" +} diff --git a/site/public/v1/software/claromentis-franchise-platform/index.json b/site/public/v1/software/claromentis-franchise-platform/index.json new file mode 100644 index 000000000000..fe49dbdf5416 --- /dev/null +++ b/site/public/v1/software/claromentis-franchise-platform/index.json @@ -0,0 +1,21 @@ +{ + "id": 1558, + "slug": "claromentis-franchise-platform", + "name": "Claromentis Franchise Platform", + "release_date": null, + "developers": [ + "Claromentis" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138314708" + ], + "created_at": "2026-07-10T10:12:40.092205", + "updated_at": "2026-07-10T10:12:40.092205", + "url": "/v1/software/claromentis-franchise-platform" +} diff --git a/site/public/v1/software/clash/index.json b/site/public/v1/software/clash/index.json new file mode 100644 index 000000000000..6073af40690a --- /dev/null +++ b/site/public/v1/software/clash/index.json @@ -0,0 +1,23 @@ +{ + "id": 1559, + "slug": "clash", + "name": "Clash", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [ + "Go" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105756101" + ], + "created_at": "2026-07-10T10:12:40.092205", + "updated_at": "2026-07-10T10:12:40.092205", + "url": "/v1/software/clash" +} diff --git a/site/public/v1/software/clasp/index.json b/site/public/v1/software/clasp/index.json new file mode 100644 index 000000000000..6d3245ff3d0c --- /dev/null +++ b/site/public/v1/software/clasp/index.json @@ -0,0 +1,21 @@ +{ + "id": 1560, + "slug": "clasp", + "name": "clasp", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Apache Software License 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q119701065" + ], + "created_at": "2026-07-10T10:12:40.092205", + "updated_at": "2026-07-10T10:12:40.092205", + "url": "/v1/software/clasp" +} diff --git a/site/public/v1/software/classer-le-monde/index.json b/site/public/v1/software/classer-le-monde/index.json new file mode 100644 index 000000000000..89da7c499014 --- /dev/null +++ b/site/public/v1/software/classer-le-monde/index.json @@ -0,0 +1,25 @@ +{ + "id": 1561, + "slug": "classer-le-monde", + "name": "Classer le monde", + "release_date": "2019-01-01", + "developers": [], + "publishers": [ + "Algolit" + ], + "operating_systems": [], + "programming_languages": [ + "Python" + ], + "licenses": [], + "genres": [ + "Combinatory literature" + ], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131292679" + ], + "created_at": "2026-07-10T10:12:40.093240", + "updated_at": "2026-07-10T10:12:40.093240", + "url": "/v1/software/classer-le-monde" +} diff --git a/site/public/v1/software/classical-text-editor/index.json b/site/public/v1/software/classical-text-editor/index.json new file mode 100644 index 000000000000..2a61e5ef33b7 --- /dev/null +++ b/site/public/v1/software/classical-text-editor/index.json @@ -0,0 +1,25 @@ +{ + "id": 1562, + "slug": "classical-text-editor", + "name": "Classical Text Editor", + "release_date": "1997-10-01", + "developers": [ + "Stefan Hagel" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116949834" + ], + "created_at": "2026-07-10T10:12:40.093240", + "updated_at": "2026-07-10T10:12:40.093240", + "url": "/v1/software/classical-text-editor" +} diff --git a/site/public/v1/software/classilla/index.json b/site/public/v1/software/classilla/index.json new file mode 100644 index 000000000000..faa063344d54 --- /dev/null +++ b/site/public/v1/software/classilla/index.json @@ -0,0 +1,21 @@ +{ + "id": 1563, + "slug": "classilla", + "name": "Classilla", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Mozilla Public License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2284803" + ], + "created_at": "2026-07-10T10:12:40.093240", + "updated_at": "2026-07-10T10:12:40.093240", + "url": "/v1/software/classilla" +} diff --git a/site/public/v1/software/classlens/index.json b/site/public/v1/software/classlens/index.json new file mode 100644 index 000000000000..21b1b3f8abc2 --- /dev/null +++ b/site/public/v1/software/classlens/index.json @@ -0,0 +1,23 @@ +{ + "id": 1564, + "slug": "classlens", + "name": "ClassLens", + "release_date": null, + "developers": [ + "Evolved Academics" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [ + "educational technology" + ], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139721327" + ], + "created_at": "2026-07-10T10:12:40.093240", + "updated_at": "2026-07-10T10:12:40.093240", + "url": "/v1/software/classlens" +} diff --git a/site/public/v1/software/classroom-apple/index.json b/site/public/v1/software/classroom-apple/index.json new file mode 100644 index 000000000000..444330a3e4f3 --- /dev/null +++ b/site/public/v1/software/classroom-apple/index.json @@ -0,0 +1,19 @@ +{ + "id": 1565, + "slug": "classroom-apple", + "name": "Classroom (Apple)", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q29364693" + ], + "created_at": "2026-07-10T10:12:40.094301", + "updated_at": "2026-07-10T10:12:40.094301", + "url": "/v1/software/classroom-apple" +} diff --git a/site/public/v1/software/claude-code/index.json b/site/public/v1/software/claude-code/index.json new file mode 100644 index 000000000000..5e557b400ed4 --- /dev/null +++ b/site/public/v1/software/claude-code/index.json @@ -0,0 +1,22 @@ +{ + "id": 1566, + "slug": "claude-code", + "name": "Claude Code", + "release_date": null, + "developers": [ + "Boris Cherny", + "Anthropic" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138457287" + ], + "created_at": "2026-07-10T10:12:40.094301", + "updated_at": "2026-07-10T10:12:40.094301", + "url": "/v1/software/claude-code" +} diff --git a/site/public/v1/software/claws-tagger/index.json b/site/public/v1/software/claws-tagger/index.json new file mode 100644 index 000000000000..7347189a8d08 --- /dev/null +++ b/site/public/v1/software/claws-tagger/index.json @@ -0,0 +1,19 @@ +{ + "id": 1567, + "slug": "claws-tagger", + "name": "CLAWS Tagger", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084837" + ], + "created_at": "2026-07-10T10:12:40.094301", + "updated_at": "2026-07-10T10:12:40.094301", + "url": "/v1/software/claws-tagger" +} diff --git a/site/public/v1/software/claws/index.json b/site/public/v1/software/claws/index.json new file mode 100644 index 000000000000..d99986051c42 --- /dev/null +++ b/site/public/v1/software/claws/index.json @@ -0,0 +1,21 @@ +{ + "id": 1568, + "slug": "claws", + "name": "CLAWS", + "release_date": null, + "developers": [ + "University of Lancaster" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q15947002" + ], + "created_at": "2026-07-10T10:12:40.095300", + "updated_at": "2026-07-10T10:12:40.095300", + "url": "/v1/software/claws" +} diff --git a/site/public/v1/software/clc-genomics-workbench/index.json b/site/public/v1/software/clc-genomics-workbench/index.json new file mode 100644 index 000000000000..21f5b8236dbd --- /dev/null +++ b/site/public/v1/software/clc-genomics-workbench/index.json @@ -0,0 +1,19 @@ +{ + "id": 1569, + "slug": "clc-genomics-workbench", + "name": "CLC Genomics Workbench", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q29876897" + ], + "created_at": "2026-07-10T10:12:40.095300", + "updated_at": "2026-07-10T10:12:40.095300", + "url": "/v1/software/clc-genomics-workbench" +} diff --git a/site/public/v1/software/clean-email/index.json b/site/public/v1/software/clean-email/index.json new file mode 100644 index 000000000000..70e2a1a8d352 --- /dev/null +++ b/site/public/v1/software/clean-email/index.json @@ -0,0 +1,19 @@ +{ + "id": 1570, + "slug": "clean-email", + "name": "Clean Email", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130251275" + ], + "created_at": "2026-07-10T10:12:40.095300", + "updated_at": "2026-07-10T10:12:40.095300", + "url": "/v1/software/clean-email" +} diff --git a/site/public/v1/software/clean-master/index.json b/site/public/v1/software/clean-master/index.json new file mode 100644 index 000000000000..53cf20ae2b48 --- /dev/null +++ b/site/public/v1/software/clean-master/index.json @@ -0,0 +1,21 @@ +{ + "id": 1571, + "slug": "clean-master", + "name": "Clean Master", + "release_date": null, + "developers": [ + "Cheetah Mobile" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17040307" + ], + "created_at": "2026-07-10T10:12:40.095300", + "updated_at": "2026-07-10T10:12:40.095300", + "url": "/v1/software/clean-master" +} diff --git a/site/public/v1/software/cleancode-email/index.json b/site/public/v1/software/cleancode-email/index.json new file mode 100644 index 000000000000..767c2b9f1a58 --- /dev/null +++ b/site/public/v1/software/cleancode-email/index.json @@ -0,0 +1,19 @@ +{ + "id": 1572, + "slug": "cleancode-email", + "name": "Cleancode email", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5130553" + ], + "created_at": "2026-07-10T10:12:40.096297", + "updated_at": "2026-07-10T10:12:40.096297", + "url": "/v1/software/cleancode-email" +} diff --git a/site/public/v1/software/cleaning-for-poems/index.json b/site/public/v1/software/cleaning-for-poems/index.json new file mode 100644 index 000000000000..774112edcb40 --- /dev/null +++ b/site/public/v1/software/cleaning-for-poems/index.json @@ -0,0 +1,23 @@ +{ + "id": 1573, + "slug": "cleaning-for-poems", + "name": "Cleaning for Poems", + "release_date": "2019-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Python" + ], + "licenses": [], + "genres": [ + "code poetry" + ], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131293635" + ], + "created_at": "2026-07-10T10:12:40.096297", + "updated_at": "2026-07-10T10:12:40.096297", + "url": "/v1/software/cleaning-for-poems" +} diff --git a/site/public/v1/software/cleanmail-antispam/index.json b/site/public/v1/software/cleanmail-antispam/index.json new file mode 100644 index 000000000000..0120a8db1bdc --- /dev/null +++ b/site/public/v1/software/cleanmail-antispam/index.json @@ -0,0 +1,19 @@ +{ + "id": 1574, + "slug": "cleanmail-antispam", + "name": "CleanMail Antispam", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16935475" + ], + "created_at": "2026-07-10T10:12:40.097294", + "updated_at": "2026-07-10T10:12:40.097294", + "url": "/v1/software/cleanmail-antispam" +} diff --git a/site/public/v1/software/clearfacts/index.json b/site/public/v1/software/clearfacts/index.json new file mode 100644 index 000000000000..e16889fa201b --- /dev/null +++ b/site/public/v1/software/clearfacts/index.json @@ -0,0 +1,19 @@ +{ + "id": 1575, + "slug": "clearfacts", + "name": "Clearfacts", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140330180" + ], + "created_at": "2026-07-10T10:12:40.097294", + "updated_at": "2026-07-10T10:12:40.097294", + "url": "/v1/software/clearfacts" +} diff --git a/site/public/v1/software/cleome/index.json b/site/public/v1/software/cleome/index.json new file mode 100644 index 000000000000..dc4abfbb270c --- /dev/null +++ b/site/public/v1/software/cleome/index.json @@ -0,0 +1,22 @@ +{ + "id": 1576, + "slug": "cleome", + "name": "Cleome", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [ + "generative music", + "ambient music" + ], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139618309" + ], + "created_at": "2026-07-10T10:12:40.097294", + "updated_at": "2026-07-10T10:12:40.097294", + "url": "/v1/software/cleome" +} diff --git a/site/public/v1/software/clever-audio-plug-in/index.json b/site/public/v1/software/clever-audio-plug-in/index.json new file mode 100644 index 000000000000..0541f5a50d90 --- /dev/null +++ b/site/public/v1/software/clever-audio-plug-in/index.json @@ -0,0 +1,24 @@ +{ + "id": 1577, + "slug": "clever-audio-plug-in", + "name": "CLever Audio Plug-in", + "release_date": null, + "developers": [ + "Bitwig", + "u-he" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116756249" + ], + "created_at": "2026-07-10T10:12:40.097294", + "updated_at": "2026-07-10T10:12:40.097294", + "url": "/v1/software/clever-audio-plug-in" +} diff --git a/site/public/v1/software/cleverbot/index.json b/site/public/v1/software/cleverbot/index.json new file mode 100644 index 000000000000..434f25da2585 --- /dev/null +++ b/site/public/v1/software/cleverbot/index.json @@ -0,0 +1,21 @@ +{ + "id": 1578, + "slug": "cleverbot", + "name": "Cleverbot", + "release_date": null, + "developers": [ + "Rollo Carpenter" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1100860" + ], + "created_at": "2026-07-10T10:12:40.098529", + "updated_at": "2026-07-10T10:12:40.098529", + "url": "/v1/software/cleverbot" +} diff --git a/site/public/v1/software/clevr/index.json b/site/public/v1/software/clevr/index.json new file mode 100644 index 000000000000..e9021b748445 --- /dev/null +++ b/site/public/v1/software/clevr/index.json @@ -0,0 +1,23 @@ +{ + "id": 1579, + "slug": "clevr", + "name": "CleVR", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "macOS" + ], + "programming_languages": [ + "ActionScript" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5130411" + ], + "created_at": "2026-07-10T10:12:40.098529", + "updated_at": "2026-07-10T10:12:40.098529", + "url": "/v1/software/clevr" +} diff --git a/site/public/v1/software/clickmeeting/index.json b/site/public/v1/software/clickmeeting/index.json new file mode 100644 index 000000000000..4541a2c07305 --- /dev/null +++ b/site/public/v1/software/clickmeeting/index.json @@ -0,0 +1,19 @@ +{ + "id": 1580, + "slug": "clickmeeting", + "name": "ClickMeeting", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q86667650" + ], + "created_at": "2026-07-10T10:12:40.098529", + "updated_at": "2026-07-10T10:12:40.098529", + "url": "/v1/software/clickmeeting" +} diff --git a/site/public/v1/software/clicksaver/index.json b/site/public/v1/software/clicksaver/index.json new file mode 100644 index 000000000000..7d4ec7c72c6e --- /dev/null +++ b/site/public/v1/software/clicksaver/index.json @@ -0,0 +1,19 @@ +{ + "id": 1581, + "slug": "clicksaver", + "name": "ClickSaver", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139677730" + ], + "created_at": "2026-07-10T10:12:40.099537", + "updated_at": "2026-07-10T10:12:40.099537", + "url": "/v1/software/clicksaver" +} diff --git a/site/public/v1/software/clij/index.json b/site/public/v1/software/clij/index.json new file mode 100644 index 000000000000..c49d091c589e --- /dev/null +++ b/site/public/v1/software/clij/index.json @@ -0,0 +1,19 @@ +{ + "id": 1582, + "slug": "clij", + "name": "CLIJ", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113018348" + ], + "created_at": "2026-07-10T10:12:40.099537", + "updated_at": "2026-07-10T10:12:40.099537", + "url": "/v1/software/clij" +} diff --git a/site/public/v1/software/climaf/index.json b/site/public/v1/software/climaf/index.json new file mode 100644 index 000000000000..f51c9b90a45e --- /dev/null +++ b/site/public/v1/software/climaf/index.json @@ -0,0 +1,21 @@ +{ + "id": 1583, + "slug": "climaf", + "name": "CliMAF", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "CeCILL" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117832732" + ], + "created_at": "2026-07-10T10:12:40.099537", + "updated_at": "2026-07-10T10:12:40.099537", + "url": "/v1/software/climaf" +} diff --git a/site/public/v1/software/climate-data-exchange/index.json b/site/public/v1/software/climate-data-exchange/index.json new file mode 100644 index 000000000000..3e9d8cc5d7de --- /dev/null +++ b/site/public/v1/software/climate-data-exchange/index.json @@ -0,0 +1,19 @@ +{ + "id": 1584, + "slug": "climate-data-exchange", + "name": "Climate Data Exchange", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5133431" + ], + "created_at": "2026-07-10T10:12:40.100615", + "updated_at": "2026-07-10T10:12:40.100615", + "url": "/v1/software/climate-data-exchange" +} diff --git a/site/public/v1/software/climate-data-operators/index.json b/site/public/v1/software/climate-data-operators/index.json new file mode 100644 index 000000000000..bdff9a0ae5c7 --- /dev/null +++ b/site/public/v1/software/climate-data-operators/index.json @@ -0,0 +1,25 @@ +{ + "id": 1585, + "slug": "climate-data-operators", + "name": "Climate Data Operators", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "macOS", + "NEC", + "IBM", + "FreeBSD", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1101420" + ], + "created_at": "2026-07-10T10:12:40.100615", + "updated_at": "2026-07-10T10:12:40.100615", + "url": "/v1/software/climate-data-operators" +} diff --git a/site/public/v1/software/climatetracker/index.json b/site/public/v1/software/climatetracker/index.json new file mode 100644 index 000000000000..7eabc8583515 --- /dev/null +++ b/site/public/v1/software/climatetracker/index.json @@ -0,0 +1,21 @@ +{ + "id": 1586, + "slug": "climatetracker", + "name": "ClimateTracker", + "release_date": null, + "developers": [ + "Graph Research Labs" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138783507" + ], + "created_at": "2026-07-10T10:12:40.100615", + "updated_at": "2026-07-10T10:12:40.100615", + "url": "/v1/software/climatetracker" +} diff --git a/site/public/v1/software/climatevision/index.json b/site/public/v1/software/climatevision/index.json new file mode 100644 index 000000000000..4fbe1f17c6cc --- /dev/null +++ b/site/public/v1/software/climatevision/index.json @@ -0,0 +1,21 @@ +{ + "id": 1587, + "slug": "climatevision", + "name": "ClimateVision", + "release_date": null, + "developers": [ + "Callendar" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135552210" + ], + "created_at": "2026-07-10T10:12:40.101609", + "updated_at": "2026-07-10T10:12:40.101609", + "url": "/v1/software/climatevision" +} diff --git a/site/public/v1/software/clinia/index.json b/site/public/v1/software/clinia/index.json new file mode 100644 index 000000000000..b659c3c0c397 --- /dev/null +++ b/site/public/v1/software/clinia/index.json @@ -0,0 +1,19 @@ +{ + "id": 1588, + "slug": "clinia", + "name": "ClinIA", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140310432" + ], + "created_at": "2026-07-10T10:12:40.101609", + "updated_at": "2026-07-10T10:12:40.101609", + "url": "/v1/software/clinia" +} diff --git a/site/public/v1/software/clinical-judgement-simulation/index.json b/site/public/v1/software/clinical-judgement-simulation/index.json new file mode 100644 index 000000000000..6b311d95ce01 --- /dev/null +++ b/site/public/v1/software/clinical-judgement-simulation/index.json @@ -0,0 +1,19 @@ +{ + "id": 1589, + "slug": "clinical-judgement-simulation", + "name": "Clinical Judgement Simulation", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115345394" + ], + "created_at": "2026-07-10T10:12:40.101609", + "updated_at": "2026-07-10T10:12:40.101609", + "url": "/v1/software/clinical-judgement-simulation" +} diff --git a/site/public/v1/software/clinical-trial-management-system/index.json b/site/public/v1/software/clinical-trial-management-system/index.json new file mode 100644 index 000000000000..071e48cebe7a --- /dev/null +++ b/site/public/v1/software/clinical-trial-management-system/index.json @@ -0,0 +1,19 @@ +{ + "id": 1590, + "slug": "clinical-trial-management-system", + "name": "Clinical trial management system", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1101537" + ], + "created_at": "2026-07-10T10:12:40.101609", + "updated_at": "2026-07-10T10:12:40.101609", + "url": "/v1/software/clinical-trial-management-system" +} diff --git a/site/public/v1/software/clinicspulse/index.json b/site/public/v1/software/clinicspulse/index.json new file mode 100644 index 000000000000..6f3e162160e2 --- /dev/null +++ b/site/public/v1/software/clinicspulse/index.json @@ -0,0 +1,19 @@ +{ + "id": 1591, + "slug": "clinicspulse", + "name": "ClinicsPulse", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140378001" + ], + "created_at": "2026-07-10T10:12:40.102611", + "updated_at": "2026-07-10T10:12:40.102611", + "url": "/v1/software/clinicspulse" +} diff --git a/site/public/v1/software/clinikpe/index.json b/site/public/v1/software/clinikpe/index.json new file mode 100644 index 000000000000..82863ec7c9e3 --- /dev/null +++ b/site/public/v1/software/clinikpe/index.json @@ -0,0 +1,19 @@ +{ + "id": 1592, + "slug": "clinikpe", + "name": "ClinikPe", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139801637" + ], + "created_at": "2026-07-10T10:12:40.102611", + "updated_at": "2026-07-10T10:12:40.102611", + "url": "/v1/software/clinikpe" +} diff --git a/site/public/v1/software/clinwiki/index.json b/site/public/v1/software/clinwiki/index.json new file mode 100644 index 000000000000..d5904e8f79e2 --- /dev/null +++ b/site/public/v1/software/clinwiki/index.json @@ -0,0 +1,21 @@ +{ + "id": 1593, + "slug": "clinwiki", + "name": "ClinWiki", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q96777166" + ], + "created_at": "2026-07-10T10:12:40.103633", + "updated_at": "2026-07-10T10:12:40.103633", + "url": "/v1/software/clinwiki" +} diff --git a/site/public/v1/software/clip-os/index.json b/site/public/v1/software/clip-os/index.json new file mode 100644 index 000000000000..dcc0aabf96dd --- /dev/null +++ b/site/public/v1/software/clip-os/index.json @@ -0,0 +1,19 @@ +{ + "id": 1594, + "slug": "clip-os", + "name": "CLIP OS", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60744792" + ], + "created_at": "2026-07-10T10:12:40.103633", + "updated_at": "2026-07-10T10:12:40.103633", + "url": "/v1/software/clip-os" +} diff --git a/site/public/v1/software/clipbook-viewer/index.json b/site/public/v1/software/clipbook-viewer/index.json new file mode 100644 index 000000000000..db2cb12c3fee --- /dev/null +++ b/site/public/v1/software/clipbook-viewer/index.json @@ -0,0 +1,21 @@ +{ + "id": 1595, + "slug": "clipbook-viewer", + "name": "ClipBook Viewer", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5134342" + ], + "created_at": "2026-07-10T10:12:40.103633", + "updated_at": "2026-07-10T10:12:40.103633", + "url": "/v1/software/clipbook-viewer" +} diff --git a/site/public/v1/software/clipconverter/index.json b/site/public/v1/software/clipconverter/index.json new file mode 100644 index 000000000000..69b100307fa9 --- /dev/null +++ b/site/public/v1/software/clipconverter/index.json @@ -0,0 +1,21 @@ +{ + "id": 1596, + "slug": "clipconverter", + "name": "ClipConverter", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "website" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q98709489" + ], + "created_at": "2026-07-10T10:12:40.103633", + "updated_at": "2026-07-10T10:12:40.103633", + "url": "/v1/software/clipconverter" +} diff --git a/site/public/v1/software/clipping-magic/index.json b/site/public/v1/software/clipping-magic/index.json new file mode 100644 index 000000000000..164474618777 --- /dev/null +++ b/site/public/v1/software/clipping-magic/index.json @@ -0,0 +1,19 @@ +{ + "id": 1597, + "slug": "clipping-magic", + "name": "Clipping Magic", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084838" + ], + "created_at": "2026-07-10T10:12:40.104599", + "updated_at": "2026-07-10T10:12:40.104599", + "url": "/v1/software/clipping-magic" +} diff --git a/site/public/v1/software/clips/index.json b/site/public/v1/software/clips/index.json new file mode 100644 index 000000000000..52f1a0a07be8 --- /dev/null +++ b/site/public/v1/software/clips/index.json @@ -0,0 +1,23 @@ +{ + "id": 1598, + "slug": "clips", + "name": "Clips", + "release_date": "2017-04-06", + "developers": [ + "Apple Inc." + ], + "publishers": [], + "operating_systems": [ + "iOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q29364615" + ], + "created_at": "2026-07-10T10:12:40.104599", + "updated_at": "2026-07-10T10:12:40.104599", + "url": "/v1/software/clips" +} diff --git a/site/public/v1/software/clipsalvage/index.json b/site/public/v1/software/clipsalvage/index.json new file mode 100644 index 000000000000..d53e1dda670e --- /dev/null +++ b/site/public/v1/software/clipsalvage/index.json @@ -0,0 +1,24 @@ +{ + "id": 1599, + "slug": "clipsalvage", + "name": "ClipSalvage", + "release_date": null, + "developers": [ + "Qloud LTD" + ], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139991148" + ], + "created_at": "2026-07-10T10:12:40.104599", + "updated_at": "2026-07-10T10:12:40.104599", + "url": "/v1/software/clipsalvage" +} diff --git a/site/public/v1/software/clockwise/index.json b/site/public/v1/software/clockwise/index.json new file mode 100644 index 000000000000..79151894c349 --- /dev/null +++ b/site/public/v1/software/clockwise/index.json @@ -0,0 +1,19 @@ +{ + "id": 1600, + "slug": "clockwise", + "name": "Clockwise", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115350741" + ], + "created_at": "2026-07-10T10:12:40.105541", + "updated_at": "2026-07-10T10:12:40.105541", + "url": "/v1/software/clockwise" +} diff --git a/site/public/v1/software/clocx/index.json b/site/public/v1/software/clocx/index.json new file mode 100644 index 000000000000..a33c4c3b5829 --- /dev/null +++ b/site/public/v1/software/clocx/index.json @@ -0,0 +1,19 @@ +{ + "id": 1601, + "slug": "clocx", + "name": "ClocX", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11773575" + ], + "created_at": "2026-07-10T10:12:40.105541", + "updated_at": "2026-07-10T10:12:40.105541", + "url": "/v1/software/clocx" +} diff --git a/site/public/v1/software/clone-manager/index.json b/site/public/v1/software/clone-manager/index.json new file mode 100644 index 000000000000..9189e9fbab52 --- /dev/null +++ b/site/public/v1/software/clone-manager/index.json @@ -0,0 +1,19 @@ +{ + "id": 1602, + "slug": "clone-manager", + "name": "Clone manager", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5134991" + ], + "created_at": "2026-07-10T10:12:40.105541", + "updated_at": "2026-07-10T10:12:40.105541", + "url": "/v1/software/clone-manager" +} diff --git a/site/public/v1/software/clonedvd/index.json b/site/public/v1/software/clonedvd/index.json new file mode 100644 index 000000000000..d922f0591d65 --- /dev/null +++ b/site/public/v1/software/clonedvd/index.json @@ -0,0 +1,21 @@ +{ + "id": 1603, + "slug": "clonedvd", + "name": "CloneDVD", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1102222" + ], + "created_at": "2026-07-10T10:12:40.106540", + "updated_at": "2026-07-10T10:12:40.106540", + "url": "/v1/software/clonedvd" +} diff --git a/site/public/v1/software/cloog/index.json b/site/public/v1/software/cloog/index.json new file mode 100644 index 000000000000..9edb42de2277 --- /dev/null +++ b/site/public/v1/software/cloog/index.json @@ -0,0 +1,19 @@ +{ + "id": 1604, + "slug": "cloog", + "name": "cloog", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974774" + ], + "created_at": "2026-07-10T10:12:40.106540", + "updated_at": "2026-07-10T10:12:40.106540", + "url": "/v1/software/cloog" +} diff --git a/site/public/v1/software/close-combat-modern-tactics/index.json b/site/public/v1/software/close-combat-modern-tactics/index.json new file mode 100644 index 000000000000..2924a7ca0f05 --- /dev/null +++ b/site/public/v1/software/close-combat-modern-tactics/index.json @@ -0,0 +1,23 @@ +{ + "id": 1605, + "slug": "close-combat-modern-tactics", + "name": "Close Combat: Modern Tactics", + "release_date": "2007-11-15", + "developers": [], + "publishers": [ + "Slitherine Software UK Limited" + ], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [ + "strategy video game" + ], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q88545216" + ], + "created_at": "2026-07-10T10:12:40.106540", + "updated_at": "2026-07-10T10:12:40.106540", + "url": "/v1/software/close-combat-modern-tactics" +} diff --git a/site/public/v1/software/closedbsd/index.json b/site/public/v1/software/closedbsd/index.json new file mode 100644 index 000000000000..900839f1cb98 --- /dev/null +++ b/site/public/v1/software/closedbsd/index.json @@ -0,0 +1,19 @@ +{ + "id": 1606, + "slug": "closedbsd", + "name": "ClosedBSD", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1992350" + ], + "created_at": "2026-07-10T10:12:40.107579", + "updated_at": "2026-07-10T10:12:40.107579", + "url": "/v1/software/closedbsd" +} diff --git a/site/public/v1/software/closerprompter/index.json b/site/public/v1/software/closerprompter/index.json new file mode 100644 index 000000000000..9c0cd86ff13e --- /dev/null +++ b/site/public/v1/software/closerprompter/index.json @@ -0,0 +1,21 @@ +{ + "id": 1607, + "slug": "closerprompter", + "name": "CloserPrompter", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [ + "Sales software" + ], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138685149" + ], + "created_at": "2026-07-10T10:12:40.107579", + "updated_at": "2026-07-10T10:12:40.107579", + "url": "/v1/software/closerprompter" +} diff --git a/site/public/v1/software/cloud-application-management-framework/index.json b/site/public/v1/software/cloud-application-management-framework/index.json new file mode 100644 index 000000000000..57dcf0e143a2 --- /dev/null +++ b/site/public/v1/software/cloud-application-management-framework/index.json @@ -0,0 +1,19 @@ +{ + "id": 1608, + "slug": "cloud-application-management-framework", + "name": "Cloud Application Management Framework", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76178862" + ], + "created_at": "2026-07-10T10:12:40.107579", + "updated_at": "2026-07-10T10:12:40.107579", + "url": "/v1/software/cloud-application-management-framework" +} diff --git a/site/public/v1/software/cloud-console-mobile-app/index.json b/site/public/v1/software/cloud-console-mobile-app/index.json new file mode 100644 index 000000000000..a47c738804e1 --- /dev/null +++ b/site/public/v1/software/cloud-console-mobile-app/index.json @@ -0,0 +1,21 @@ +{ + "id": 1609, + "slug": "cloud-console-mobile-app", + "name": "Cloud Console Mobile App", + "release_date": null, + "developers": [ + "Google" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q59945735" + ], + "created_at": "2026-07-10T10:12:40.107579", + "updated_at": "2026-07-10T10:12:40.107579", + "url": "/v1/software/cloud-console-mobile-app" +} diff --git a/site/public/v1/software/cloud-console/index.json b/site/public/v1/software/cloud-console/index.json new file mode 100644 index 000000000000..0b8b7bee0491 --- /dev/null +++ b/site/public/v1/software/cloud-console/index.json @@ -0,0 +1,21 @@ +{ + "id": 1610, + "slug": "cloud-console", + "name": "Cloud Console", + "release_date": null, + "developers": [ + "Google" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q59944703" + ], + "created_at": "2026-07-10T10:12:40.107579", + "updated_at": "2026-07-10T10:12:40.107579", + "url": "/v1/software/cloud-console" +} diff --git a/site/public/v1/software/cloud-datalab/index.json b/site/public/v1/software/cloud-datalab/index.json new file mode 100644 index 000000000000..65760af97927 --- /dev/null +++ b/site/public/v1/software/cloud-datalab/index.json @@ -0,0 +1,21 @@ +{ + "id": 1611, + "slug": "cloud-datalab", + "name": "Cloud Datalab", + "release_date": null, + "developers": [ + "Google" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60149076" + ], + "created_at": "2026-07-10T10:12:40.109141", + "updated_at": "2026-07-10T10:12:40.109141", + "url": "/v1/software/cloud-datalab" +} diff --git a/site/public/v1/software/cloud-debugger/index.json b/site/public/v1/software/cloud-debugger/index.json new file mode 100644 index 000000000000..267656857425 --- /dev/null +++ b/site/public/v1/software/cloud-debugger/index.json @@ -0,0 +1,21 @@ +{ + "id": 1612, + "slug": "cloud-debugger", + "name": "Cloud Debugger", + "release_date": null, + "developers": [ + "Google" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q59944337" + ], + "created_at": "2026-07-10T10:12:40.109141", + "updated_at": "2026-07-10T10:12:40.109141", + "url": "/v1/software/cloud-debugger" +} diff --git a/site/public/v1/software/cloud-deployment-manager/index.json b/site/public/v1/software/cloud-deployment-manager/index.json new file mode 100644 index 000000000000..b831d427db5d --- /dev/null +++ b/site/public/v1/software/cloud-deployment-manager/index.json @@ -0,0 +1,21 @@ +{ + "id": 1613, + "slug": "cloud-deployment-manager", + "name": "Cloud Deployment Manager", + "release_date": null, + "developers": [ + "Google" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q59944594" + ], + "created_at": "2026-07-10T10:12:40.109141", + "updated_at": "2026-07-10T10:12:40.109141", + "url": "/v1/software/cloud-deployment-manager" +} diff --git a/site/public/v1/software/cloud-healthcare-api/index.json b/site/public/v1/software/cloud-healthcare-api/index.json new file mode 100644 index 000000000000..02dda0899159 --- /dev/null +++ b/site/public/v1/software/cloud-healthcare-api/index.json @@ -0,0 +1,21 @@ +{ + "id": 1614, + "slug": "cloud-healthcare-api", + "name": "Cloud Healthcare API", + "release_date": null, + "developers": [ + "Google" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60021729" + ], + "created_at": "2026-07-10T10:12:40.109141", + "updated_at": "2026-07-10T10:12:40.109141", + "url": "/v1/software/cloud-healthcare-api" +} diff --git a/site/public/v1/software/cloud-iam/index.json b/site/public/v1/software/cloud-iam/index.json new file mode 100644 index 000000000000..50086208a41f --- /dev/null +++ b/site/public/v1/software/cloud-iam/index.json @@ -0,0 +1,21 @@ +{ + "id": 1615, + "slug": "cloud-iam", + "name": "Cloud IAM", + "release_date": null, + "developers": [ + "Google" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q59852253" + ], + "created_at": "2026-07-10T10:12:40.110223", + "updated_at": "2026-07-10T10:12:40.110223", + "url": "/v1/software/cloud-iam" +} diff --git a/site/public/v1/software/cloud-identity-for-customers-and-partners/index.json b/site/public/v1/software/cloud-identity-for-customers-and-partners/index.json new file mode 100644 index 000000000000..dbf27e58ea73 --- /dev/null +++ b/site/public/v1/software/cloud-identity-for-customers-and-partners/index.json @@ -0,0 +1,21 @@ +{ + "id": 1616, + "slug": "cloud-identity-for-customers-and-partners", + "name": "Cloud Identity for Customers and Partners", + "release_date": null, + "developers": [ + "Google" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60165658" + ], + "created_at": "2026-07-10T10:12:40.110223", + "updated_at": "2026-07-10T10:12:40.110223", + "url": "/v1/software/cloud-identity-for-customers-and-partners" +} diff --git a/site/public/v1/software/cloud-identity/index.json b/site/public/v1/software/cloud-identity/index.json new file mode 100644 index 000000000000..3ddb49ae0ffa --- /dev/null +++ b/site/public/v1/software/cloud-identity/index.json @@ -0,0 +1,21 @@ +{ + "id": 1617, + "slug": "cloud-identity", + "name": "Cloud Identity", + "release_date": null, + "developers": [ + "Google" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q59851730" + ], + "created_at": "2026-07-10T10:12:40.110223", + "updated_at": "2026-07-10T10:12:40.110223", + "url": "/v1/software/cloud-identity" +} diff --git a/site/public/v1/software/cloud-init/index.json b/site/public/v1/software/cloud-init/index.json new file mode 100644 index 000000000000..ec8131364467 --- /dev/null +++ b/site/public/v1/software/cloud-init/index.json @@ -0,0 +1,22 @@ +{ + "id": 1618, + "slug": "cloud-init", + "name": "cloud-init", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Apache Software License 2.0", + "GNU General Public License, version 3.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974776" + ], + "created_at": "2026-07-10T10:12:40.111196", + "updated_at": "2026-07-10T10:12:40.111196", + "url": "/v1/software/cloud-init" +} diff --git a/site/public/v1/software/cloud-storage-transfer-service/index.json b/site/public/v1/software/cloud-storage-transfer-service/index.json new file mode 100644 index 000000000000..b528a69e376f --- /dev/null +++ b/site/public/v1/software/cloud-storage-transfer-service/index.json @@ -0,0 +1,21 @@ +{ + "id": 1619, + "slug": "cloud-storage-transfer-service", + "name": "Cloud Storage Transfer Service", + "release_date": null, + "developers": [ + "Google" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60022339" + ], + "created_at": "2026-07-10T10:12:40.111196", + "updated_at": "2026-07-10T10:12:40.111196", + "url": "/v1/software/cloud-storage-transfer-service" +} diff --git a/site/public/v1/software/cloud-tools-for-eclipse/index.json b/site/public/v1/software/cloud-tools-for-eclipse/index.json new file mode 100644 index 000000000000..76001baf2249 --- /dev/null +++ b/site/public/v1/software/cloud-tools-for-eclipse/index.json @@ -0,0 +1,21 @@ +{ + "id": 1620, + "slug": "cloud-tools-for-eclipse", + "name": "Cloud Tools for Eclipse", + "release_date": null, + "developers": [ + "Google" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60061958" + ], + "created_at": "2026-07-10T10:12:40.111196", + "updated_at": "2026-07-10T10:12:40.111196", + "url": "/v1/software/cloud-tools-for-eclipse" +} diff --git a/site/public/v1/software/cloud-tools-for-intellij/index.json b/site/public/v1/software/cloud-tools-for-intellij/index.json new file mode 100644 index 000000000000..ef7132924c87 --- /dev/null +++ b/site/public/v1/software/cloud-tools-for-intellij/index.json @@ -0,0 +1,21 @@ +{ + "id": 1621, + "slug": "cloud-tools-for-intellij", + "name": "Cloud Tools for IntelliJ", + "release_date": null, + "developers": [ + "Google" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60024009" + ], + "created_at": "2026-07-10T10:12:40.111196", + "updated_at": "2026-07-10T10:12:40.111196", + "url": "/v1/software/cloud-tools-for-intellij" +} diff --git a/site/public/v1/software/cloud-tools-for-powershell/index.json b/site/public/v1/software/cloud-tools-for-powershell/index.json new file mode 100644 index 000000000000..61c6403a0c06 --- /dev/null +++ b/site/public/v1/software/cloud-tools-for-powershell/index.json @@ -0,0 +1,21 @@ +{ + "id": 1622, + "slug": "cloud-tools-for-powershell", + "name": "Cloud Tools for PowerShell", + "release_date": null, + "developers": [ + "Google" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60025529" + ], + "created_at": "2026-07-10T10:12:40.112230", + "updated_at": "2026-07-10T10:12:40.112230", + "url": "/v1/software/cloud-tools-for-powershell" +} diff --git a/site/public/v1/software/cloud-tools-for-visual-studio/index.json b/site/public/v1/software/cloud-tools-for-visual-studio/index.json new file mode 100644 index 000000000000..c51ae56e29cb --- /dev/null +++ b/site/public/v1/software/cloud-tools-for-visual-studio/index.json @@ -0,0 +1,21 @@ +{ + "id": 1623, + "slug": "cloud-tools-for-visual-studio", + "name": "Cloud Tools for Visual Studio", + "release_date": null, + "developers": [ + "Google" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60025837" + ], + "created_at": "2026-07-10T10:12:40.112230", + "updated_at": "2026-07-10T10:12:40.112230", + "url": "/v1/software/cloud-tools-for-visual-studio" +} diff --git a/site/public/v1/software/cloud-trace/index.json b/site/public/v1/software/cloud-trace/index.json new file mode 100644 index 000000000000..c93503f39559 --- /dev/null +++ b/site/public/v1/software/cloud-trace/index.json @@ -0,0 +1,21 @@ +{ + "id": 1624, + "slug": "cloud-trace", + "name": "Cloud Trace", + "release_date": null, + "developers": [ + "Google" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q59944233" + ], + "created_at": "2026-07-10T10:12:40.112230", + "updated_at": "2026-07-10T10:12:40.112230", + "url": "/v1/software/cloud-trace" +} diff --git a/site/public/v1/software/cloudberry-backup/index.json b/site/public/v1/software/cloudberry-backup/index.json new file mode 100644 index 000000000000..97b8b8efdaf5 --- /dev/null +++ b/site/public/v1/software/cloudberry-backup/index.json @@ -0,0 +1,19 @@ +{ + "id": 1625, + "slug": "cloudberry-backup", + "name": "CloudBerry Backup", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60746737" + ], + "created_at": "2026-07-10T10:12:40.116150", + "updated_at": "2026-07-10T10:12:40.116150", + "url": "/v1/software/cloudberry-backup" +} diff --git a/site/public/v1/software/cloudevo/index.json b/site/public/v1/software/cloudevo/index.json new file mode 100644 index 000000000000..84acb68b3cda --- /dev/null +++ b/site/public/v1/software/cloudevo/index.json @@ -0,0 +1,26 @@ +{ + "id": 1626, + "slug": "cloudevo", + "name": "Cloudevo", + "release_date": null, + "developers": [ + "Evorim GmbH" + ], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "end-user license agreement" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60983125" + ], + "created_at": "2026-07-10T10:12:40.119243", + "updated_at": "2026-07-10T10:12:40.119243", + "url": "/v1/software/cloudevo" +} diff --git a/site/public/v1/software/cloudforms/index.json b/site/public/v1/software/cloudforms/index.json new file mode 100644 index 000000000000..db22991b7fe1 --- /dev/null +++ b/site/public/v1/software/cloudforms/index.json @@ -0,0 +1,21 @@ +{ + "id": 1627, + "slug": "cloudforms", + "name": "CloudForms", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Apache License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q27557202" + ], + "created_at": "2026-07-10T10:12:40.122154", + "updated_at": "2026-07-10T10:12:40.122154", + "url": "/v1/software/cloudforms" +} diff --git a/site/public/v1/software/cloudhq/index.json b/site/public/v1/software/cloudhq/index.json new file mode 100644 index 000000000000..883806a7207a --- /dev/null +++ b/site/public/v1/software/cloudhq/index.json @@ -0,0 +1,19 @@ +{ + "id": 1628, + "slug": "cloudhq", + "name": "CloudHQ", + "release_date": "2011-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17008090" + ], + "created_at": "2026-07-10T10:12:40.126153", + "updated_at": "2026-07-10T10:12:40.126153", + "url": "/v1/software/cloudhq" +} diff --git a/site/public/v1/software/cloudike/index.json b/site/public/v1/software/cloudike/index.json new file mode 100644 index 000000000000..7b8cf6fbef99 --- /dev/null +++ b/site/public/v1/software/cloudike/index.json @@ -0,0 +1,23 @@ +{ + "id": 1629, + "slug": "cloudike", + "name": "Cloudike", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [ + "Python" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q19456357" + ], + "created_at": "2026-07-10T10:12:40.130818", + "updated_at": "2026-07-10T10:12:40.131853", + "url": "/v1/software/cloudike" +} diff --git a/site/public/v1/software/cloudkick/index.json b/site/public/v1/software/cloudkick/index.json new file mode 100644 index 000000000000..7ee727b53b59 --- /dev/null +++ b/site/public/v1/software/cloudkick/index.json @@ -0,0 +1,21 @@ +{ + "id": 1630, + "slug": "cloudkick", + "name": "Cloudkick", + "release_date": null, + "developers": [ + "Cloudkick" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5135748" + ], + "created_at": "2026-07-10T10:12:40.134824", + "updated_at": "2026-07-10T10:12:40.134824", + "url": "/v1/software/cloudkick" +} diff --git a/site/public/v1/software/cloudmagic/index.json b/site/public/v1/software/cloudmagic/index.json new file mode 100644 index 000000000000..bc9460c165f8 --- /dev/null +++ b/site/public/v1/software/cloudmagic/index.json @@ -0,0 +1,21 @@ +{ + "id": 1631, + "slug": "cloudmagic", + "name": "CloudMagic", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "iOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16949351" + ], + "created_at": "2026-07-10T10:12:40.138819", + "updated_at": "2026-07-10T10:12:40.138819", + "url": "/v1/software/cloudmagic" +} diff --git a/site/public/v1/software/cloudme/index.json b/site/public/v1/software/cloudme/index.json new file mode 100644 index 000000000000..f09b7f12d1b1 --- /dev/null +++ b/site/public/v1/software/cloudme/index.json @@ -0,0 +1,21 @@ +{ + "id": 1632, + "slug": "cloudme", + "name": "CloudMe", + "release_date": "2011-04-01", + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5135619" + ], + "created_at": "2026-07-10T10:12:40.143843", + "updated_at": "2026-07-10T10:12:40.143843", + "url": "/v1/software/cloudme" +} diff --git a/site/public/v1/software/cloudron/index.json b/site/public/v1/software/cloudron/index.json new file mode 100644 index 000000000000..ac7bab14a22d --- /dev/null +++ b/site/public/v1/software/cloudron/index.json @@ -0,0 +1,19 @@ +{ + "id": 1633, + "slug": "cloudron", + "name": "Cloudron", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130299941" + ], + "created_at": "2026-07-10T10:12:40.144751", + "updated_at": "2026-07-10T10:12:40.144751", + "url": "/v1/software/cloudron" +} diff --git a/site/public/v1/software/cloudsim/index.json b/site/public/v1/software/cloudsim/index.json new file mode 100644 index 000000000000..90f17c3a2373 --- /dev/null +++ b/site/public/v1/software/cloudsim/index.json @@ -0,0 +1,21 @@ +{ + "id": 1634, + "slug": "cloudsim", + "name": "CloudSim", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Java" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22095616" + ], + "created_at": "2026-07-10T10:12:40.145748", + "updated_at": "2026-07-10T10:12:40.145748", + "url": "/v1/software/cloudsim" +} diff --git a/site/public/v1/software/cloudtran/index.json b/site/public/v1/software/cloudtran/index.json new file mode 100644 index 000000000000..9b0c4bd2f201 --- /dev/null +++ b/site/public/v1/software/cloudtran/index.json @@ -0,0 +1,23 @@ +{ + "id": 1635, + "slug": "cloudtran", + "name": "CloudTran", + "release_date": "2010-01-01", + "developers": [], + "publishers": [], + "operating_systems": [ + "cross-platform" + ], + "programming_languages": [ + "Java" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5135622" + ], + "created_at": "2026-07-10T10:12:40.145748", + "updated_at": "2026-07-10T10:12:40.145748", + "url": "/v1/software/cloudtran" +} diff --git a/site/public/v1/software/clr-profiler/index.json b/site/public/v1/software/clr-profiler/index.json new file mode 100644 index 000000000000..1ccf3e99f7cc --- /dev/null +++ b/site/public/v1/software/clr-profiler/index.json @@ -0,0 +1,19 @@ +{ + "id": 1636, + "slug": "clr-profiler", + "name": "CLR Profiler", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5012791" + ], + "created_at": "2026-07-10T10:12:40.146747", + "updated_at": "2026-07-10T10:12:40.146747", + "url": "/v1/software/clr-profiler" +} diff --git a/site/public/v1/software/clsql/index.json b/site/public/v1/software/clsql/index.json new file mode 100644 index 000000000000..f959a0d9d815 --- /dev/null +++ b/site/public/v1/software/clsql/index.json @@ -0,0 +1,21 @@ +{ + "id": 1637, + "slug": "clsql", + "name": "CLSQL", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Common Lisp" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5012799" + ], + "created_at": "2026-07-10T10:12:40.146747", + "updated_at": "2026-07-10T10:12:40.146747", + "url": "/v1/software/clsql" +} diff --git a/site/public/v1/software/club-nokia/index.json b/site/public/v1/software/club-nokia/index.json new file mode 100644 index 000000000000..cc2d2be18c70 --- /dev/null +++ b/site/public/v1/software/club-nokia/index.json @@ -0,0 +1,19 @@ +{ + "id": 1638, + "slug": "club-nokia", + "name": "Club Nokia", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60040796" + ], + "created_at": "2026-07-10T10:12:40.147743", + "updated_at": "2026-07-10T10:12:40.147743", + "url": "/v1/software/club-nokia" +} diff --git a/site/public/v1/software/clue/index.json b/site/public/v1/software/clue/index.json new file mode 100644 index 000000000000..02fff9396d6e --- /dev/null +++ b/site/public/v1/software/clue/index.json @@ -0,0 +1,21 @@ +{ + "id": 1639, + "slug": "clue", + "name": "Clue", + "release_date": "2013-01-01", + "developers": [], + "publishers": [], + "operating_systems": [ + "iOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22095621" + ], + "created_at": "2026-07-10T10:12:40.147743", + "updated_at": "2026-07-10T10:12:40.147743", + "url": "/v1/software/clue" +} diff --git a/site/public/v1/software/clustal-omega/index.json b/site/public/v1/software/clustal-omega/index.json new file mode 100644 index 000000000000..8f2409323e1b --- /dev/null +++ b/site/public/v1/software/clustal-omega/index.json @@ -0,0 +1,19 @@ +{ + "id": 1640, + "slug": "clustal-omega", + "name": "Clustal Omega", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109500111" + ], + "created_at": "2026-07-10T10:12:40.147743", + "updated_at": "2026-07-10T10:12:40.147743", + "url": "/v1/software/clustal-omega" +} diff --git a/site/public/v1/software/clustermarket/index.json b/site/public/v1/software/clustermarket/index.json new file mode 100644 index 000000000000..87cbe7968208 --- /dev/null +++ b/site/public/v1/software/clustermarket/index.json @@ -0,0 +1,19 @@ +{ + "id": 1641, + "slug": "clustermarket", + "name": "Clustermarket", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116922448" + ], + "created_at": "2026-07-10T10:12:40.148744", + "updated_at": "2026-07-10T10:12:40.148744", + "url": "/v1/software/clustermarket" +} diff --git a/site/public/v1/software/cluttermm/index.json b/site/public/v1/software/cluttermm/index.json new file mode 100644 index 000000000000..98c65750ee34 --- /dev/null +++ b/site/public/v1/software/cluttermm/index.json @@ -0,0 +1,19 @@ +{ + "id": 1642, + "slug": "cluttermm", + "name": "cluttermm", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76181591" + ], + "created_at": "2026-07-10T10:12:40.148744", + "updated_at": "2026-07-10T10:12:40.148744", + "url": "/v1/software/cluttermm" +} diff --git a/site/public/v1/software/cluuz/index.json b/site/public/v1/software/cluuz/index.json new file mode 100644 index 000000000000..3cd742d79a04 --- /dev/null +++ b/site/public/v1/software/cluuz/index.json @@ -0,0 +1,19 @@ +{ + "id": 1643, + "slug": "cluuz", + "name": "Cluuz", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084840" + ], + "created_at": "2026-07-10T10:12:40.148744", + "updated_at": "2026-07-10T10:12:40.148744", + "url": "/v1/software/cluuz" +} diff --git a/site/public/v1/software/clx/index.json b/site/public/v1/software/clx/index.json new file mode 100644 index 000000000000..9784e85f0084 --- /dev/null +++ b/site/public/v1/software/clx/index.json @@ -0,0 +1,21 @@ +{ + "id": 1644, + "slug": "clx", + "name": "CLX", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Common Lisp" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5012808" + ], + "created_at": "2026-07-10T10:12:40.148744", + "updated_at": "2026-07-10T10:12:40.148744", + "url": "/v1/software/clx" +} diff --git a/site/public/v1/software/cmap-tools/index.json b/site/public/v1/software/cmap-tools/index.json new file mode 100644 index 000000000000..4d36b37e7f01 --- /dev/null +++ b/site/public/v1/software/cmap-tools/index.json @@ -0,0 +1,25 @@ +{ + "id": 1645, + "slug": "cmap-tools", + "name": "CMAP Tools", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "proprietary license", + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5012839" + ], + "created_at": "2026-07-10T10:12:40.149744", + "updated_at": "2026-07-10T10:12:40.149744", + "url": "/v1/software/cmap-tools" +} diff --git a/site/public/v1/software/cmder/index.json b/site/public/v1/software/cmder/index.json new file mode 100644 index 000000000000..64a02459c6a7 --- /dev/null +++ b/site/public/v1/software/cmder/index.json @@ -0,0 +1,21 @@ +{ + "id": 1646, + "slug": "cmder", + "name": "Cmder", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127415913" + ], + "created_at": "2026-07-10T10:12:40.149744", + "updated_at": "2026-07-10T10:12:40.149744", + "url": "/v1/software/cmder" +} diff --git a/site/public/v1/software/cmi-star/index.json b/site/public/v1/software/cmi-star/index.json new file mode 100644 index 000000000000..337fed307777 --- /dev/null +++ b/site/public/v1/software/cmi-star/index.json @@ -0,0 +1,21 @@ +{ + "id": 1647, + "slug": "cmi-star", + "name": "CMI STAR", + "release_date": null, + "developers": [ + "CM Informatik AG" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q98557796" + ], + "created_at": "2026-07-10T10:12:40.149744", + "updated_at": "2026-07-10T10:12:40.149744", + "url": "/v1/software/cmi-star" +} diff --git a/site/public/v1/software/cmix/index.json b/site/public/v1/software/cmix/index.json new file mode 100644 index 000000000000..8d224b00657a --- /dev/null +++ b/site/public/v1/software/cmix/index.json @@ -0,0 +1,19 @@ +{ + "id": 1648, + "slug": "cmix", + "name": "cmix", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q99510878" + ], + "created_at": "2026-07-10T10:12:40.149744", + "updated_at": "2026-07-10T10:12:40.149744", + "url": "/v1/software/cmix" +} diff --git a/site/public/v1/software/cmm/index.json b/site/public/v1/software/cmm/index.json new file mode 100644 index 000000000000..3d784db9535b --- /dev/null +++ b/site/public/v1/software/cmm/index.json @@ -0,0 +1,21 @@ +{ + "id": 1649, + "slug": "cmm", + "name": "CMM", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "PRS Custom" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109375562" + ], + "created_at": "2026-07-10T10:12:40.150744", + "updated_at": "2026-07-10T10:12:40.150744", + "url": "/v1/software/cmm" +} diff --git a/site/public/v1/software/cmospwd/index.json b/site/public/v1/software/cmospwd/index.json new file mode 100644 index 000000000000..b67e9a5f93c0 --- /dev/null +++ b/site/public/v1/software/cmospwd/index.json @@ -0,0 +1,19 @@ +{ + "id": 1650, + "slug": "cmospwd", + "name": "cmospwd", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60915994" + ], + "created_at": "2026-07-10T10:12:40.150744", + "updated_at": "2026-07-10T10:12:40.150744", + "url": "/v1/software/cmospwd" +} diff --git a/site/public/v1/software/cnr/index.json b/site/public/v1/software/cnr/index.json new file mode 100644 index 000000000000..0051b632d990 --- /dev/null +++ b/site/public/v1/software/cnr/index.json @@ -0,0 +1,19 @@ +{ + "id": 1651, + "slug": "cnr", + "name": "CNR", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2742054" + ], + "created_at": "2026-07-10T10:12:40.150744", + "updated_at": "2026-07-10T10:12:40.150744", + "url": "/v1/software/cnr" +} diff --git a/site/public/v1/software/cnrtl-extension-for-firefox/index.json b/site/public/v1/software/cnrtl-extension-for-firefox/index.json new file mode 100644 index 000000000000..0606010e6a86 --- /dev/null +++ b/site/public/v1/software/cnrtl-extension-for-firefox/index.json @@ -0,0 +1,19 @@ +{ + "id": 1652, + "slug": "cnrtl-extension-for-firefox", + "name": "CNRTL Extension for Firefox", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084841" + ], + "created_at": "2026-07-10T10:12:40.151745", + "updated_at": "2026-07-10T10:12:40.151745", + "url": "/v1/software/cnrtl-extension-for-firefox" +} diff --git a/site/public/v1/software/cntk/index.json b/site/public/v1/software/cntk/index.json new file mode 100644 index 000000000000..0df376713d10 --- /dev/null +++ b/site/public/v1/software/cntk/index.json @@ -0,0 +1,25 @@ +{ + "id": 1653, + "slug": "cntk", + "name": "CNTK", + "release_date": null, + "developers": [ + "Microsoft Research" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q23680120" + ], + "created_at": "2026-07-10T10:12:40.151745", + "updated_at": "2026-07-10T10:12:40.151745", + "url": "/v1/software/cntk" +} diff --git a/site/public/v1/software/co2sys/index.json b/site/public/v1/software/co2sys/index.json new file mode 100644 index 000000000000..13eca9d12273 --- /dev/null +++ b/site/public/v1/software/co2sys/index.json @@ -0,0 +1,19 @@ +{ + "id": 1654, + "slug": "co2sys", + "name": "CO2SYS", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107210863" + ], + "created_at": "2026-07-10T10:12:40.151745", + "updated_at": "2026-07-10T10:12:40.151745", + "url": "/v1/software/co2sys" +} diff --git a/site/public/v1/software/coach-joel-s-way/index.json b/site/public/v1/software/coach-joel-s-way/index.json new file mode 100644 index 000000000000..43328cdc1db6 --- /dev/null +++ b/site/public/v1/software/coach-joel-s-way/index.json @@ -0,0 +1,21 @@ +{ + "id": 1655, + "slug": "coach-joel-s-way", + "name": "Coach Joel's Way", + "release_date": "2025-09-22", + "developers": [ + "Joel Hill" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137362926" + ], + "created_at": "2026-07-10T10:12:40.151745", + "updated_at": "2026-07-10T10:12:40.151745", + "url": "/v1/software/coach-joel-s-way" +} diff --git a/site/public/v1/software/cobalt-strike/index.json b/site/public/v1/software/cobalt-strike/index.json new file mode 100644 index 000000000000..516df629306e --- /dev/null +++ b/site/public/v1/software/cobalt-strike/index.json @@ -0,0 +1,22 @@ +{ + "id": 1656, + "slug": "cobalt-strike", + "name": "Cobalt Strike", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q29364585" + ], + "created_at": "2026-07-10T10:12:40.151745", + "updated_at": "2026-07-10T10:12:40.151745", + "url": "/v1/software/cobalt-strike" +} diff --git a/site/public/v1/software/cobalt/index.json b/site/public/v1/software/cobalt/index.json new file mode 100644 index 000000000000..30fdd3ffaca7 --- /dev/null +++ b/site/public/v1/software/cobalt/index.json @@ -0,0 +1,21 @@ +{ + "id": 1657, + "slug": "cobalt", + "name": "Cobalt", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q12055182" + ], + "created_at": "2026-07-10T10:12:40.152744", + "updated_at": "2026-07-10T10:12:40.152744", + "url": "/v1/software/cobalt" +} diff --git a/site/public/v1/software/coc-coc-search/index.json b/site/public/v1/software/coc-coc-search/index.json new file mode 100644 index 000000000000..48824fb3800e --- /dev/null +++ b/site/public/v1/software/coc-coc-search/index.json @@ -0,0 +1,22 @@ +{ + "id": 1658, + "slug": "coc-coc-search", + "name": "Coc Coc Search", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Java", + "Go" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q20025385" + ], + "created_at": "2026-07-10T10:12:40.152744", + "updated_at": "2026-07-10T10:12:40.152744", + "url": "/v1/software/coc-coc-search" +} diff --git a/site/public/v1/software/cocaine/index.json b/site/public/v1/software/cocaine/index.json new file mode 100644 index 000000000000..272126dbe526 --- /dev/null +++ b/site/public/v1/software/cocaine/index.json @@ -0,0 +1,19 @@ +{ + "id": 1659, + "slug": "cocaine", + "name": "Cocaine", + "release_date": "2011-03-20", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17087127" + ], + "created_at": "2026-07-10T10:12:40.152744", + "updated_at": "2026-07-10T10:12:40.152744", + "url": "/v1/software/cocaine" +} diff --git a/site/public/v1/software/cockatrice/index.json b/site/public/v1/software/cockatrice/index.json new file mode 100644 index 000000000000..67d0760932c9 --- /dev/null +++ b/site/public/v1/software/cockatrice/index.json @@ -0,0 +1,19 @@ +{ + "id": 1660, + "slug": "cockatrice", + "name": "cockatrice", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63064931" + ], + "created_at": "2026-07-10T10:12:40.152744", + "updated_at": "2026-07-10T10:12:40.152744", + "url": "/v1/software/cockatrice" +} diff --git a/site/public/v1/software/cockpit/index.json b/site/public/v1/software/cockpit/index.json new file mode 100644 index 000000000000..9bf7c2635014 --- /dev/null +++ b/site/public/v1/software/cockpit/index.json @@ -0,0 +1,19 @@ +{ + "id": 1661, + "slug": "cockpit", + "name": "Cockpit", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q114691201" + ], + "created_at": "2026-07-10T10:12:40.153744", + "updated_at": "2026-07-10T10:12:40.153744", + "url": "/v1/software/cockpit" +} diff --git a/site/public/v1/software/coco-simulator/index.json b/site/public/v1/software/coco-simulator/index.json new file mode 100644 index 000000000000..163e67a8c75b --- /dev/null +++ b/site/public/v1/software/coco-simulator/index.json @@ -0,0 +1,19 @@ +{ + "id": 1662, + "slug": "coco-simulator", + "name": "COCO simulator", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5013270" + ], + "created_at": "2026-07-10T10:12:40.153744", + "updated_at": "2026-07-10T10:12:40.153744", + "url": "/v1/software/coco-simulator" +} diff --git a/site/public/v1/software/cocoa/index.json b/site/public/v1/software/cocoa/index.json new file mode 100644 index 000000000000..b14617d1cd4b --- /dev/null +++ b/site/public/v1/software/cocoa/index.json @@ -0,0 +1,19 @@ +{ + "id": 1663, + "slug": "cocoa", + "name": "COCOA", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087780" + ], + "created_at": "2026-07-10T10:12:40.153744", + "updated_at": "2026-07-10T10:12:40.153744", + "url": "/v1/software/cocoa" +} diff --git a/site/public/v1/software/cocoapods/index.json b/site/public/v1/software/cocoapods/index.json new file mode 100644 index 000000000000..133edb4070db --- /dev/null +++ b/site/public/v1/software/cocoapods/index.json @@ -0,0 +1,21 @@ +{ + "id": 1664, + "slug": "cocoapods", + "name": "CocoaPods", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16247893" + ], + "created_at": "2026-07-10T10:12:40.154744", + "updated_at": "2026-07-10T10:12:40.154744", + "url": "/v1/software/cocoapods" +} diff --git a/site/public/v1/software/cocoon/index.json b/site/public/v1/software/cocoon/index.json new file mode 100644 index 000000000000..9fc95cf6c8e8 --- /dev/null +++ b/site/public/v1/software/cocoon/index.json @@ -0,0 +1,19 @@ +{ + "id": 1665, + "slug": "cocoon", + "name": "COCOON", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084842" + ], + "created_at": "2026-07-10T10:12:40.154744", + "updated_at": "2026-07-10T10:12:40.154744", + "url": "/v1/software/cocoon" +} diff --git a/site/public/v1/software/cocoonjs/index.json b/site/public/v1/software/cocoonjs/index.json new file mode 100644 index 000000000000..c19678ea7842 --- /dev/null +++ b/site/public/v1/software/cocoonjs/index.json @@ -0,0 +1,19 @@ +{ + "id": 1666, + "slug": "cocoonjs", + "name": "CocoonJS", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18148932" + ], + "created_at": "2026-07-10T10:12:40.154744", + "updated_at": "2026-07-10T10:12:40.154744", + "url": "/v1/software/cocoonjs" +} diff --git a/site/public/v1/software/coda/index.json b/site/public/v1/software/coda/index.json new file mode 100644 index 000000000000..76310bc909a4 --- /dev/null +++ b/site/public/v1/software/coda/index.json @@ -0,0 +1,21 @@ +{ + "id": 1667, + "slug": "coda", + "name": "Coda", + "release_date": null, + "developers": [ + "Panic" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1105496" + ], + "created_at": "2026-07-10T10:12:40.154744", + "updated_at": "2026-07-10T10:12:40.154744", + "url": "/v1/software/coda" +} diff --git a/site/public/v1/software/codabox/index.json b/site/public/v1/software/codabox/index.json new file mode 100644 index 000000000000..1c3fee1ef121 --- /dev/null +++ b/site/public/v1/software/codabox/index.json @@ -0,0 +1,19 @@ +{ + "id": 1668, + "slug": "codabox", + "name": "Codabox", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131885236" + ], + "created_at": "2026-07-10T10:12:40.154744", + "updated_at": "2026-07-10T10:12:40.154744", + "url": "/v1/software/codabox" +} diff --git a/site/public/v1/software/code-bubbles/index.json b/site/public/v1/software/code-bubbles/index.json new file mode 100644 index 000000000000..ef4a5b282925 --- /dev/null +++ b/site/public/v1/software/code-bubbles/index.json @@ -0,0 +1,19 @@ +{ + "id": 1669, + "slug": "code-bubbles", + "name": "Code Bubbles", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084843" + ], + "created_at": "2026-07-10T10:12:40.155744", + "updated_at": "2026-07-10T10:12:40.155744", + "url": "/v1/software/code-bubbles" +} diff --git a/site/public/v1/software/code-morphing-software/index.json b/site/public/v1/software/code-morphing-software/index.json new file mode 100644 index 000000000000..26d8cf6108dd --- /dev/null +++ b/site/public/v1/software/code-morphing-software/index.json @@ -0,0 +1,19 @@ +{ + "id": 1670, + "slug": "code-morphing-software", + "name": "Code Morphing Software", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3682022" + ], + "created_at": "2026-07-10T10:12:40.155744", + "updated_at": "2026-07-10T10:12:40.155744", + "url": "/v1/software/code-morphing-software" +} diff --git a/site/public/v1/software/code-recommenders-incubator/index.json b/site/public/v1/software/code-recommenders-incubator/index.json new file mode 100644 index 000000000000..a7e84470aafb --- /dev/null +++ b/site/public/v1/software/code-recommenders-incubator/index.json @@ -0,0 +1,19 @@ +{ + "id": 1671, + "slug": "code-recommenders-incubator", + "name": "Code Recommenders Incubator", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76178841" + ], + "created_at": "2026-07-10T10:12:40.155744", + "updated_at": "2026-07-10T10:12:40.155744", + "url": "/v1/software/code-recommenders-incubator" +} diff --git a/site/public/v1/software/code-red/index.json b/site/public/v1/software/code-red/index.json new file mode 100644 index 000000000000..e24756bfdea6 --- /dev/null +++ b/site/public/v1/software/code-red/index.json @@ -0,0 +1,19 @@ +{ + "id": 1672, + "slug": "code-red", + "name": "Code Red", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1105649" + ], + "created_at": "2026-07-10T10:12:40.156744", + "updated_at": "2026-07-10T10:12:40.156744", + "url": "/v1/software/code-red" +} diff --git a/site/public/v1/software/code-tympan/index.json b/site/public/v1/software/code-tympan/index.json new file mode 100644 index 000000000000..2c5d312d2d63 --- /dev/null +++ b/site/public/v1/software/code-tympan/index.json @@ -0,0 +1,19 @@ +{ + "id": 1673, + "slug": "code-tympan", + "name": "Code TYMPAN", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16540682" + ], + "created_at": "2026-07-10T10:12:40.156744", + "updated_at": "2026-07-10T10:12:40.156744", + "url": "/v1/software/code-tympan" +} diff --git a/site/public/v1/software/code-v/index.json b/site/public/v1/software/code-v/index.json new file mode 100644 index 000000000000..5f88e1b4a5f0 --- /dev/null +++ b/site/public/v1/software/code-v/index.json @@ -0,0 +1,23 @@ +{ + "id": 1674, + "slug": "code-v", + "name": "Code V", + "release_date": null, + "developers": [ + "Synopsys" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5140056" + ], + "created_at": "2026-07-10T10:12:40.156744", + "updated_at": "2026-07-10T10:12:40.156744", + "url": "/v1/software/code-v" +} diff --git a/site/public/v1/software/code2html/index.json b/site/public/v1/software/code2html/index.json new file mode 100644 index 000000000000..2868bc0e171e --- /dev/null +++ b/site/public/v1/software/code2html/index.json @@ -0,0 +1,19 @@ +{ + "id": 1675, + "slug": "code2html", + "name": "code2html", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62846248" + ], + "created_at": "2026-07-10T10:12:40.156744", + "updated_at": "2026-07-10T10:12:40.156744", + "url": "/v1/software/code2html" +} diff --git a/site/public/v1/software/codea/index.json b/site/public/v1/software/codea/index.json new file mode 100644 index 000000000000..4f89babf5a11 --- /dev/null +++ b/site/public/v1/software/codea/index.json @@ -0,0 +1,19 @@ +{ + "id": 1676, + "slug": "codea", + "name": "Codea", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16969711" + ], + "created_at": "2026-07-10T10:12:40.157745", + "updated_at": "2026-07-10T10:12:40.157745", + "url": "/v1/software/codea" +} diff --git a/site/public/v1/software/codeassistance/index.json b/site/public/v1/software/codeassistance/index.json new file mode 100644 index 000000000000..33391b0d297f --- /dev/null +++ b/site/public/v1/software/codeassistance/index.json @@ -0,0 +1,19 @@ +{ + "id": 1677, + "slug": "codeassistance", + "name": "CodeAssistance", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q50827597" + ], + "created_at": "2026-07-10T10:12:40.157745", + "updated_at": "2026-07-10T10:12:40.157745", + "url": "/v1/software/codeassistance" +} diff --git a/site/public/v1/software/codebook/index.json b/site/public/v1/software/codebook/index.json new file mode 100644 index 000000000000..24abf9790edd --- /dev/null +++ b/site/public/v1/software/codebook/index.json @@ -0,0 +1,19 @@ +{ + "id": 1678, + "slug": "codebook", + "name": "CodeBook", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5139972" + ], + "created_at": "2026-07-10T10:12:40.157745", + "updated_at": "2026-07-10T10:12:40.157745", + "url": "/v1/software/codebook" +} diff --git a/site/public/v1/software/codeen/index.json b/site/public/v1/software/codeen/index.json new file mode 100644 index 000000000000..6310840fb3f5 --- /dev/null +++ b/site/public/v1/software/codeen/index.json @@ -0,0 +1,21 @@ +{ + "id": 1679, + "slug": "codeen", + "name": "CoDeeN", + "release_date": "2003-01-01", + "developers": [ + "Princeton University" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5137529" + ], + "created_at": "2026-07-10T10:12:40.157745", + "updated_at": "2026-07-10T10:12:40.157745", + "url": "/v1/software/codeen" +} diff --git a/site/public/v1/software/codemonkey/index.json b/site/public/v1/software/codemonkey/index.json new file mode 100644 index 000000000000..410c178f5e52 --- /dev/null +++ b/site/public/v1/software/codemonkey/index.json @@ -0,0 +1,19 @@ +{ + "id": 1680, + "slug": "codemonkey", + "name": "CodeMonkey", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108551418" + ], + "created_at": "2026-07-10T10:12:40.158744", + "updated_at": "2026-07-10T10:12:40.158744", + "url": "/v1/software/codemonkey" +} diff --git a/site/public/v1/software/codemyshop/index.json b/site/public/v1/software/codemyshop/index.json new file mode 100644 index 000000000000..9c292834321b --- /dev/null +++ b/site/public/v1/software/codemyshop/index.json @@ -0,0 +1,21 @@ +{ + "id": 1681, + "slug": "codemyshop", + "name": "CodeMyShop", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "TypeScript" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138862900" + ], + "created_at": "2026-07-10T10:12:40.158744", + "updated_at": "2026-07-10T10:12:40.158744", + "url": "/v1/software/codemyshop" +} diff --git a/site/public/v1/software/codenomicon/index.json b/site/public/v1/software/codenomicon/index.json new file mode 100644 index 000000000000..488fd4d5f0db --- /dev/null +++ b/site/public/v1/software/codenomicon/index.json @@ -0,0 +1,19 @@ +{ + "id": 1682, + "slug": "codenomicon", + "name": "Codenomicon", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5140157" + ], + "created_at": "2026-07-10T10:12:40.158744", + "updated_at": "2026-07-10T10:12:40.158744", + "url": "/v1/software/codenomicon" +} diff --git a/site/public/v1/software/codepeer/index.json b/site/public/v1/software/codepeer/index.json new file mode 100644 index 000000000000..9afd7211cf8d --- /dev/null +++ b/site/public/v1/software/codepeer/index.json @@ -0,0 +1,19 @@ +{ + "id": 1683, + "slug": "codepeer", + "name": "CodePeer", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17182531" + ], + "created_at": "2026-07-10T10:12:40.158744", + "updated_at": "2026-07-10T10:12:40.158744", + "url": "/v1/software/codepeer" +} diff --git a/site/public/v1/software/coderush/index.json b/site/public/v1/software/coderush/index.json new file mode 100644 index 000000000000..987fe04d1559 --- /dev/null +++ b/site/public/v1/software/coderush/index.json @@ -0,0 +1,21 @@ +{ + "id": 1684, + "slug": "coderush", + "name": "CodeRush", + "release_date": null, + "developers": [ + "DevExpress" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4036358" + ], + "created_at": "2026-07-10T10:12:40.159744", + "updated_at": "2026-07-10T10:12:40.159744", + "url": "/v1/software/coderush" +} diff --git a/site/public/v1/software/codescene/index.json b/site/public/v1/software/codescene/index.json new file mode 100644 index 000000000000..52366b7fbed8 --- /dev/null +++ b/site/public/v1/software/codescene/index.json @@ -0,0 +1,19 @@ +{ + "id": 1685, + "slug": "codescene", + "name": "CodeScene", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60749946" + ], + "created_at": "2026-07-10T10:12:40.159744", + "updated_at": "2026-07-10T10:12:40.159744", + "url": "/v1/software/codescene" +} diff --git a/site/public/v1/software/codewright/index.json b/site/public/v1/software/codewright/index.json new file mode 100644 index 000000000000..b2222750bc4b --- /dev/null +++ b/site/public/v1/software/codewright/index.json @@ -0,0 +1,19 @@ +{ + "id": 1686, + "slug": "codewright", + "name": "CodeWright", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5139983" + ], + "created_at": "2026-07-10T10:12:40.159744", + "updated_at": "2026-07-10T10:12:40.159744", + "url": "/v1/software/codewright" +} diff --git a/site/public/v1/software/codex-tdp-engine/index.json b/site/public/v1/software/codex-tdp-engine/index.json new file mode 100644 index 000000000000..e4cd597f8269 --- /dev/null +++ b/site/public/v1/software/codex-tdp-engine/index.json @@ -0,0 +1,21 @@ +{ + "id": 1687, + "slug": "codex-tdp-engine", + "name": "CODEX TDP Engine", + "release_date": null, + "developers": [ + "XOps360 LLC" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139581473" + ], + "created_at": "2026-07-10T10:12:40.159744", + "updated_at": "2026-07-10T10:12:40.159744", + "url": "/v1/software/codex-tdp-engine" +} diff --git a/site/public/v1/software/codimg/index.json b/site/public/v1/software/codimg/index.json new file mode 100644 index 000000000000..01665aa1a6e4 --- /dev/null +++ b/site/public/v1/software/codimg/index.json @@ -0,0 +1,19 @@ +{ + "id": 1688, + "slug": "codimg", + "name": "Codimg", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q119964583" + ], + "created_at": "2026-07-10T10:12:40.160744", + "updated_at": "2026-07-10T10:12:40.160744", + "url": "/v1/software/codimg" +} diff --git a/site/public/v1/software/codoncode-aligner/index.json b/site/public/v1/software/codoncode-aligner/index.json new file mode 100644 index 000000000000..fc4e8f3f2ba3 --- /dev/null +++ b/site/public/v1/software/codoncode-aligner/index.json @@ -0,0 +1,24 @@ +{ + "id": 1689, + "slug": "codoncode-aligner", + "name": "CodonCode Aligner", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5140318" + ], + "created_at": "2026-07-10T10:12:40.160744", + "updated_at": "2026-07-10T10:12:40.160744", + "url": "/v1/software/codoncode-aligner" +} diff --git a/site/public/v1/software/cody-assessment/index.json b/site/public/v1/software/cody-assessment/index.json new file mode 100644 index 000000000000..1bce046e7280 --- /dev/null +++ b/site/public/v1/software/cody-assessment/index.json @@ -0,0 +1,19 @@ +{ + "id": 1690, + "slug": "cody-assessment", + "name": "CODY Assessment", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25313557" + ], + "created_at": "2026-07-10T10:12:40.160744", + "updated_at": "2026-07-10T10:12:40.160744", + "url": "/v1/software/cody-assessment" +} diff --git a/site/public/v1/software/cofarmer/index.json b/site/public/v1/software/cofarmer/index.json new file mode 100644 index 000000000000..132992402a23 --- /dev/null +++ b/site/public/v1/software/cofarmer/index.json @@ -0,0 +1,21 @@ +{ + "id": 1691, + "slug": "cofarmer", + "name": "CoFarmer", + "release_date": null, + "developers": [ + "Enki Technologies S.L" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140357989" + ], + "created_at": "2026-07-10T10:12:40.160744", + "updated_at": "2026-07-10T10:12:40.160744", + "url": "/v1/software/cofarmer" +} diff --git a/site/public/v1/software/coggle/index.json b/site/public/v1/software/coggle/index.json new file mode 100644 index 000000000000..5a2b967aaa6e --- /dev/null +++ b/site/public/v1/software/coggle/index.json @@ -0,0 +1,19 @@ +{ + "id": 1692, + "slug": "coggle", + "name": "Coggle", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084844" + ], + "created_at": "2026-07-10T10:12:40.161744", + "updated_at": "2026-07-10T10:12:40.161744", + "url": "/v1/software/coggle" +} diff --git a/site/public/v1/software/cognos-reportnet/index.json b/site/public/v1/software/cognos-reportnet/index.json new file mode 100644 index 000000000000..a2b41227a866 --- /dev/null +++ b/site/public/v1/software/cognos-reportnet/index.json @@ -0,0 +1,23 @@ +{ + "id": 1693, + "slug": "cognos-reportnet", + "name": "Cognos Reportnet", + "release_date": "2003-01-01", + "developers": [ + "IBM" + ], + "publishers": [], + "operating_systems": [ + "Multiple" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5141271" + ], + "created_at": "2026-07-10T10:12:40.161744", + "updated_at": "2026-07-10T10:12:40.161744", + "url": "/v1/software/cognos-reportnet" +} diff --git a/site/public/v1/software/cogo/index.json b/site/public/v1/software/cogo/index.json new file mode 100644 index 000000000000..5871470ba82e --- /dev/null +++ b/site/public/v1/software/cogo/index.json @@ -0,0 +1,19 @@ +{ + "id": 1694, + "slug": "cogo", + "name": "COGO", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5013299" + ], + "created_at": "2026-07-10T10:12:40.161744", + "updated_at": "2026-07-10T10:12:40.161744", + "url": "/v1/software/cogo" +} diff --git a/site/public/v1/software/cogs-3/index.json b/site/public/v1/software/cogs-3/index.json new file mode 100644 index 000000000000..a9a61485f626 --- /dev/null +++ b/site/public/v1/software/cogs-3/index.json @@ -0,0 +1,19 @@ +{ + "id": 1695, + "slug": "cogs-3", + "name": "COGS-3", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084846" + ], + "created_at": "2026-07-10T10:12:40.161744", + "updated_at": "2026-07-10T10:12:40.161744", + "url": "/v1/software/cogs-3" +} diff --git a/site/public/v1/software/coharmonify/index.json b/site/public/v1/software/coharmonify/index.json new file mode 100644 index 000000000000..5d0ca519a8e3 --- /dev/null +++ b/site/public/v1/software/coharmonify/index.json @@ -0,0 +1,19 @@ +{ + "id": 1696, + "slug": "coharmonify", + "name": "CoHarmonify", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138795590" + ], + "created_at": "2026-07-10T10:12:40.162744", + "updated_at": "2026-07-10T10:12:40.162744", + "url": "/v1/software/coharmonify" +} diff --git a/site/public/v1/software/coke-on/index.json b/site/public/v1/software/coke-on/index.json new file mode 100644 index 000000000000..158e94c8787f --- /dev/null +++ b/site/public/v1/software/coke-on/index.json @@ -0,0 +1,21 @@ +{ + "id": 1697, + "slug": "coke-on", + "name": "Coke ON", + "release_date": null, + "developers": [], + "publishers": [ + "Coca-Cola Japan" + ], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q102384210" + ], + "created_at": "2026-07-10T10:12:40.162744", + "updated_at": "2026-07-10T10:12:40.162744", + "url": "/v1/software/coke-on" +} diff --git a/site/public/v1/software/colaboratory/index.json b/site/public/v1/software/colaboratory/index.json new file mode 100644 index 000000000000..60a9923f9d29 --- /dev/null +++ b/site/public/v1/software/colaboratory/index.json @@ -0,0 +1,19 @@ +{ + "id": 1698, + "slug": "colaboratory", + "name": "Colaboratory", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084847" + ], + "created_at": "2026-07-10T10:12:40.162744", + "updated_at": "2026-07-10T10:12:40.162744", + "url": "/v1/software/colaboratory" +} diff --git a/site/public/v1/software/coldstone-game-engine/index.json b/site/public/v1/software/coldstone-game-engine/index.json new file mode 100644 index 000000000000..f2f432276834 --- /dev/null +++ b/site/public/v1/software/coldstone-game-engine/index.json @@ -0,0 +1,23 @@ +{ + "id": 1699, + "slug": "coldstone-game-engine", + "name": "Coldstone game engine", + "release_date": null, + "developers": [ + "Beenox" + ], + "publishers": [], + "operating_systems": [ + "Mac operating system" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4036395" + ], + "created_at": "2026-07-10T10:12:40.162744", + "updated_at": "2026-07-10T10:12:40.162744", + "url": "/v1/software/coldstone-game-engine" +} diff --git a/site/public/v1/software/colectica/index.json b/site/public/v1/software/colectica/index.json new file mode 100644 index 000000000000..ffed841377dd --- /dev/null +++ b/site/public/v1/software/colectica/index.json @@ -0,0 +1,21 @@ +{ + "id": 1700, + "slug": "colectica", + "name": "Colectica", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22907346" + ], + "created_at": "2026-07-10T10:12:40.163744", + "updated_at": "2026-07-10T10:12:40.163744", + "url": "/v1/software/colectica" +} diff --git a/site/public/v1/software/collabaro/index.json b/site/public/v1/software/collabaro/index.json new file mode 100644 index 000000000000..b8f6059ce926 --- /dev/null +++ b/site/public/v1/software/collabaro/index.json @@ -0,0 +1,21 @@ +{ + "id": 1701, + "slug": "collabaro", + "name": "Collabaro", + "release_date": null, + "developers": [ + "Railston and Company" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139583715" + ], + "created_at": "2026-07-10T10:12:40.163744", + "updated_at": "2026-07-10T10:12:40.163744", + "url": "/v1/software/collabaro" +} diff --git a/site/public/v1/software/collaber/index.json b/site/public/v1/software/collaber/index.json new file mode 100644 index 000000000000..a5a76e3fd145 --- /dev/null +++ b/site/public/v1/software/collaber/index.json @@ -0,0 +1,19 @@ +{ + "id": 1702, + "slug": "collaber", + "name": "Collaber", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5145788" + ], + "created_at": "2026-07-10T10:12:40.163744", + "updated_at": "2026-07-10T10:12:40.163744", + "url": "/v1/software/collaber" +} diff --git a/site/public/v1/software/collaborative-computational-project-number-4/index.json b/site/public/v1/software/collaborative-computational-project-number-4/index.json new file mode 100644 index 000000000000..c29f60bb7b6f --- /dev/null +++ b/site/public/v1/software/collaborative-computational-project-number-4/index.json @@ -0,0 +1,19 @@ +{ + "id": 1703, + "slug": "collaborative-computational-project-number-4", + "name": "Collaborative Computational Project Number 4", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5145814" + ], + "created_at": "2026-07-10T10:12:40.163744", + "updated_at": "2026-07-10T10:12:40.163744", + "url": "/v1/software/collaborative-computational-project-number-4" +} diff --git a/site/public/v1/software/collaborator/index.json b/site/public/v1/software/collaborator/index.json new file mode 100644 index 000000000000..35c706db9c60 --- /dev/null +++ b/site/public/v1/software/collaborator/index.json @@ -0,0 +1,19 @@ +{ + "id": 1704, + "slug": "collaborator", + "name": "Collaborator", + "release_date": "2003-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q30668403" + ], + "created_at": "2026-07-10T10:12:40.164744", + "updated_at": "2026-07-10T10:12:40.164744", + "url": "/v1/software/collaborator" +} diff --git a/site/public/v1/software/collada-dom/index.json b/site/public/v1/software/collada-dom/index.json new file mode 100644 index 000000000000..0e53aa3f0d0b --- /dev/null +++ b/site/public/v1/software/collada-dom/index.json @@ -0,0 +1,19 @@ +{ + "id": 1705, + "slug": "collada-dom", + "name": "collada-dom", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974780" + ], + "created_at": "2026-07-10T10:12:40.164744", + "updated_at": "2026-07-10T10:12:40.164744", + "url": "/v1/software/collada-dom" +} diff --git a/site/public/v1/software/collatex/index.json b/site/public/v1/software/collatex/index.json new file mode 100644 index 000000000000..e91800ac5ed8 --- /dev/null +++ b/site/public/v1/software/collatex/index.json @@ -0,0 +1,19 @@ +{ + "id": 1706, + "slug": "collatex", + "name": "CollateX", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084848" + ], + "created_at": "2026-07-10T10:12:40.164744", + "updated_at": "2026-07-10T10:12:40.164744", + "url": "/v1/software/collatex" +} diff --git a/site/public/v1/software/collation-works/index.json b/site/public/v1/software/collation-works/index.json new file mode 100644 index 000000000000..08ce21719266 --- /dev/null +++ b/site/public/v1/software/collation-works/index.json @@ -0,0 +1,19 @@ +{ + "id": 1707, + "slug": "collation-works", + "name": "Collation Works", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084849" + ], + "created_at": "2026-07-10T10:12:40.164744", + "updated_at": "2026-07-10T10:12:40.164744", + "url": "/v1/software/collation-works" +} diff --git a/site/public/v1/software/collector-sahab/index.json b/site/public/v1/software/collector-sahab/index.json new file mode 100644 index 000000000000..e94bd91e1719 --- /dev/null +++ b/site/public/v1/software/collector-sahab/index.json @@ -0,0 +1,21 @@ +{ + "id": 1708, + "slug": "collector-sahab", + "name": "collector-sahab", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Unlicense" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127485880" + ], + "created_at": "2026-07-10T10:12:40.165744", + "updated_at": "2026-07-10T10:12:40.165744", + "url": "/v1/software/collector-sahab" +} diff --git a/site/public/v1/software/collocate/index.json b/site/public/v1/software/collocate/index.json new file mode 100644 index 000000000000..6664794e2cd7 --- /dev/null +++ b/site/public/v1/software/collocate/index.json @@ -0,0 +1,19 @@ +{ + "id": 1709, + "slug": "collocate", + "name": "Collocate", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087781" + ], + "created_at": "2026-07-10T10:12:40.165744", + "updated_at": "2026-07-10T10:12:40.165744", + "url": "/v1/software/collocate" +} diff --git a/site/public/v1/software/color-labs/index.json b/site/public/v1/software/color-labs/index.json new file mode 100644 index 000000000000..1d3615bdedad --- /dev/null +++ b/site/public/v1/software/color-labs/index.json @@ -0,0 +1,23 @@ +{ + "id": 1710, + "slug": "color-labs", + "name": "Color labs", + "release_date": "2010-03-24", + "developers": [], + "publishers": [], + "operating_systems": [ + "iOS" + ], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5148613" + ], + "created_at": "2026-07-10T10:12:40.165744", + "updated_at": "2026-07-10T10:12:40.165744", + "url": "/v1/software/color-labs" +} diff --git a/site/public/v1/software/color64/index.json b/site/public/v1/software/color64/index.json new file mode 100644 index 000000000000..be74bd9ae705 --- /dev/null +++ b/site/public/v1/software/color64/index.json @@ -0,0 +1,21 @@ +{ + "id": 1711, + "slug": "color64", + "name": "Color64", + "release_date": null, + "developers": [ + "Greg Pfountz" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5148533" + ], + "created_at": "2026-07-10T10:12:40.165744", + "updated_at": "2026-07-10T10:12:40.165744", + "url": "/v1/software/color64" +} diff --git a/site/public/v1/software/colorbrewer/index.json b/site/public/v1/software/colorbrewer/index.json new file mode 100644 index 000000000000..b520d1605835 --- /dev/null +++ b/site/public/v1/software/colorbrewer/index.json @@ -0,0 +1,19 @@ +{ + "id": 1712, + "slug": "colorbrewer", + "name": "ColorBrewer", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084850" + ], + "created_at": "2026-07-10T10:12:40.166744", + "updated_at": "2026-07-10T10:12:40.166744", + "url": "/v1/software/colorbrewer" +} diff --git a/site/public/v1/software/colordiff/index.json b/site/public/v1/software/colordiff/index.json new file mode 100644 index 000000000000..c80e4d23f9a6 --- /dev/null +++ b/site/public/v1/software/colordiff/index.json @@ -0,0 +1,19 @@ +{ + "id": 1713, + "slug": "colordiff", + "name": "ColorDiff", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62851495" + ], + "created_at": "2026-07-10T10:12:40.166744", + "updated_at": "2026-07-10T10:12:40.166744", + "url": "/v1/software/colordiff" +} diff --git a/site/public/v1/software/colored-coins/index.json b/site/public/v1/software/colored-coins/index.json new file mode 100644 index 000000000000..c64b034d8f70 --- /dev/null +++ b/site/public/v1/software/colored-coins/index.json @@ -0,0 +1,19 @@ +{ + "id": 1714, + "slug": "colored-coins", + "name": "Colored Coins", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22907364" + ], + "created_at": "2026-07-10T10:12:40.166744", + "updated_at": "2026-07-10T10:12:40.166744", + "url": "/v1/software/colored-coins" +} diff --git a/site/public/v1/software/colorer-take5/index.json b/site/public/v1/software/colorer-take5/index.json new file mode 100644 index 000000000000..5af39d4c2a98 --- /dev/null +++ b/site/public/v1/software/colorer-take5/index.json @@ -0,0 +1,19 @@ +{ + "id": 1715, + "slug": "colorer-take5", + "name": "Colorer-take5", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4036417" + ], + "created_at": "2026-07-10T10:12:40.166744", + "updated_at": "2026-07-10T10:12:40.166744", + "url": "/v1/software/colorer-take5" +} diff --git a/site/public/v1/software/colorsync-utility/index.json b/site/public/v1/software/colorsync-utility/index.json new file mode 100644 index 000000000000..7d2934692f32 --- /dev/null +++ b/site/public/v1/software/colorsync-utility/index.json @@ -0,0 +1,19 @@ +{ + "id": 1716, + "slug": "colorsync-utility", + "name": "ColorSync Utility", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4006770" + ], + "created_at": "2026-07-10T10:12:40.167744", + "updated_at": "2026-07-10T10:12:40.167744", + "url": "/v1/software/colorsync-utility" +} diff --git a/site/public/v1/software/colorsync/index.json b/site/public/v1/software/colorsync/index.json new file mode 100644 index 000000000000..e8846a1d852d --- /dev/null +++ b/site/public/v1/software/colorsync/index.json @@ -0,0 +1,21 @@ +{ + "id": 1717, + "slug": "colorsync", + "name": "ColorSync", + "release_date": null, + "developers": [ + "Apple Inc." + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1111151" + ], + "created_at": "2026-07-10T10:12:40.167744", + "updated_at": "2026-07-10T10:12:40.167744", + "url": "/v1/software/colorsync" +} diff --git a/site/public/v1/software/colt/index.json b/site/public/v1/software/colt/index.json new file mode 100644 index 000000000000..f43764e2f95d --- /dev/null +++ b/site/public/v1/software/colt/index.json @@ -0,0 +1,19 @@ +{ + "id": 1718, + "slug": "colt", + "name": "COLT", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16927839" + ], + "created_at": "2026-07-10T10:12:40.167744", + "updated_at": "2026-07-10T10:12:40.167744", + "url": "/v1/software/colt" +} diff --git a/site/public/v1/software/colviq/index.json b/site/public/v1/software/colviq/index.json new file mode 100644 index 000000000000..87587aa827cc --- /dev/null +++ b/site/public/v1/software/colviq/index.json @@ -0,0 +1,19 @@ +{ + "id": 1719, + "slug": "colviq", + "name": "ColviQ", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140420258" + ], + "created_at": "2026-07-10T10:12:40.167744", + "updated_at": "2026-07-10T10:12:40.167744", + "url": "/v1/software/colviq" +} diff --git a/site/public/v1/software/com-port-redirector/index.json b/site/public/v1/software/com-port-redirector/index.json new file mode 100644 index 000000000000..4a200708d5ef --- /dev/null +++ b/site/public/v1/software/com-port-redirector/index.json @@ -0,0 +1,19 @@ +{ + "id": 1720, + "slug": "com-port-redirector", + "name": "COM port redirector", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5013388" + ], + "created_at": "2026-07-10T10:12:40.168744", + "updated_at": "2026-07-10T10:12:40.168744", + "url": "/v1/software/com-port-redirector" +} diff --git a/site/public/v1/software/comanche/index.json b/site/public/v1/software/comanche/index.json new file mode 100644 index 000000000000..c421c64d7ff7 --- /dev/null +++ b/site/public/v1/software/comanche/index.json @@ -0,0 +1,21 @@ +{ + "id": 1721, + "slug": "comanche", + "name": "Comanche", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Tcl" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122974379" + ], + "created_at": "2026-07-10T10:12:40.168744", + "updated_at": "2026-07-10T10:12:40.168744", + "url": "/v1/software/comanche" +} diff --git a/site/public/v1/software/combat-air-drop-planning-software/index.json b/site/public/v1/software/combat-air-drop-planning-software/index.json new file mode 100644 index 000000000000..c0337a731231 --- /dev/null +++ b/site/public/v1/software/combat-air-drop-planning-software/index.json @@ -0,0 +1,19 @@ +{ + "id": 1722, + "slug": "combat-air-drop-planning-software", + "name": "Combat Air Drop Planning Software", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q43518563" + ], + "created_at": "2026-07-10T10:12:40.168744", + "updated_at": "2026-07-10T10:12:40.168744", + "url": "/v1/software/combat-air-drop-planning-software" +} diff --git a/site/public/v1/software/combat-flight-planning-software/index.json b/site/public/v1/software/combat-flight-planning-software/index.json new file mode 100644 index 000000000000..13129b4ae5bf --- /dev/null +++ b/site/public/v1/software/combat-flight-planning-software/index.json @@ -0,0 +1,19 @@ +{ + "id": 1723, + "slug": "combat-flight-planning-software", + "name": "Combat Flight Planning Software", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q43518353" + ], + "created_at": "2026-07-10T10:12:40.168744", + "updated_at": "2026-07-10T10:12:40.168744", + "url": "/v1/software/combat-flight-planning-software" +} diff --git a/site/public/v1/software/combat-weapon-delivery-software/index.json b/site/public/v1/software/combat-weapon-delivery-software/index.json new file mode 100644 index 000000000000..5fe782c74e69 --- /dev/null +++ b/site/public/v1/software/combat-weapon-delivery-software/index.json @@ -0,0 +1,19 @@ +{ + "id": 1724, + "slug": "combat-weapon-delivery-software", + "name": "Combat Weapon Delivery Software", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q43518465" + ], + "created_at": "2026-07-10T10:12:40.169744", + "updated_at": "2026-07-10T10:12:40.169744", + "url": "/v1/software/combat-weapon-delivery-software" +} diff --git a/site/public/v1/software/combine/index.json b/site/public/v1/software/combine/index.json new file mode 100644 index 000000000000..f65fb6287c91 --- /dev/null +++ b/site/public/v1/software/combine/index.json @@ -0,0 +1,19 @@ +{ + "id": 1725, + "slug": "combine", + "name": "Combine", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76183882" + ], + "created_at": "2026-07-10T10:12:40.169744", + "updated_at": "2026-07-10T10:12:40.169744", + "url": "/v1/software/combine" +} diff --git a/site/public/v1/software/combined-dna-index-system/index.json b/site/public/v1/software/combined-dna-index-system/index.json new file mode 100644 index 000000000000..a6dccded48d5 --- /dev/null +++ b/site/public/v1/software/combined-dna-index-system/index.json @@ -0,0 +1,19 @@ +{ + "id": 1726, + "slug": "combined-dna-index-system", + "name": "Combined DNA Index System", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1265403" + ], + "created_at": "2026-07-10T10:12:40.169744", + "updated_at": "2026-07-10T10:12:40.169744", + "url": "/v1/software/combined-dna-index-system" +} diff --git a/site/public/v1/software/combustion/index.json b/site/public/v1/software/combustion/index.json new file mode 100644 index 000000000000..fa45ea936990 --- /dev/null +++ b/site/public/v1/software/combustion/index.json @@ -0,0 +1,21 @@ +{ + "id": 1727, + "slug": "combustion", + "name": "Combustion", + "release_date": null, + "developers": [ + "Autodesk" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2872554" + ], + "created_at": "2026-07-10T10:12:40.170745", + "updated_at": "2026-07-10T10:12:40.170745", + "url": "/v1/software/combustion" +} diff --git a/site/public/v1/software/comdi/index.json b/site/public/v1/software/comdi/index.json new file mode 100644 index 000000000000..bff84fdee6ac --- /dev/null +++ b/site/public/v1/software/comdi/index.json @@ -0,0 +1,19 @@ +{ + "id": 1728, + "slug": "comdi", + "name": "COMDI", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4035650" + ], + "created_at": "2026-07-10T10:12:40.170745", + "updated_at": "2026-07-10T10:12:40.170745", + "url": "/v1/software/comdi" +} diff --git a/site/public/v1/software/comenius-logo/index.json b/site/public/v1/software/comenius-logo/index.json new file mode 100644 index 000000000000..fc496d23e561 --- /dev/null +++ b/site/public/v1/software/comenius-logo/index.json @@ -0,0 +1,19 @@ +{ + "id": 1729, + "slug": "comenius-logo", + "name": "Comenius Logo", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q868472" + ], + "created_at": "2026-07-10T10:12:40.170745", + "updated_at": "2026-07-10T10:12:40.170745", + "url": "/v1/software/comenius-logo" +} diff --git a/site/public/v1/software/comeon/index.json b/site/public/v1/software/comeon/index.json new file mode 100644 index 000000000000..0ed57451f56a --- /dev/null +++ b/site/public/v1/software/comeon/index.json @@ -0,0 +1,21 @@ +{ + "id": 1730, + "slug": "comeon", + "name": "ComeOn!", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Java" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28956362" + ], + "created_at": "2026-07-10T10:12:40.170745", + "updated_at": "2026-07-10T10:12:40.170745", + "url": "/v1/software/comeon" +} diff --git a/site/public/v1/software/comet-cursor/index.json b/site/public/v1/software/comet-cursor/index.json new file mode 100644 index 000000000000..552db1ea2d42 --- /dev/null +++ b/site/public/v1/software/comet-cursor/index.json @@ -0,0 +1,21 @@ +{ + "id": 1731, + "slug": "comet-cursor", + "name": "Comet Cursor", + "release_date": "1990-01-01", + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5151605" + ], + "created_at": "2026-07-10T10:12:40.171744", + "updated_at": "2026-07-10T10:12:40.171744", + "url": "/v1/software/comet-cursor" +} diff --git a/site/public/v1/software/comic-life/index.json b/site/public/v1/software/comic-life/index.json new file mode 100644 index 000000000000..8d807ac0ec68 --- /dev/null +++ b/site/public/v1/software/comic-life/index.json @@ -0,0 +1,21 @@ +{ + "id": 1732, + "slug": "comic-life", + "name": "Comic Life", + "release_date": null, + "developers": [ + "plasq" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4384583" + ], + "created_at": "2026-07-10T10:12:40.171744", + "updated_at": "2026-07-10T10:12:40.171744", + "url": "/v1/software/comic-life" +} diff --git a/site/public/v1/software/comic-works/index.json b/site/public/v1/software/comic-works/index.json new file mode 100644 index 000000000000..f928a29ede13 --- /dev/null +++ b/site/public/v1/software/comic-works/index.json @@ -0,0 +1,21 @@ +{ + "id": 1733, + "slug": "comic-works", + "name": "Comic Works", + "release_date": null, + "developers": [ + "DELETER" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11194811" + ], + "created_at": "2026-07-10T10:12:40.171744", + "updated_at": "2026-07-10T10:12:40.171744", + "url": "/v1/software/comic-works" +} diff --git a/site/public/v1/software/comicbase/index.json b/site/public/v1/software/comicbase/index.json new file mode 100644 index 000000000000..91f7395b83c4 --- /dev/null +++ b/site/public/v1/software/comicbase/index.json @@ -0,0 +1,19 @@ +{ + "id": 1734, + "slug": "comicbase", + "name": "ComicBase", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5151728" + ], + "created_at": "2026-07-10T10:12:40.171744", + "updated_at": "2026-07-10T10:12:40.171744", + "url": "/v1/software/comicbase" +} diff --git a/site/public/v1/software/comicink/index.json b/site/public/v1/software/comicink/index.json new file mode 100644 index 000000000000..247eb83de783 --- /dev/null +++ b/site/public/v1/software/comicink/index.json @@ -0,0 +1,25 @@ +{ + "id": 1735, + "slug": "comicink", + "name": "ComicInk", + "release_date": "2026-01-01", + "developers": [], + "publishers": [], + "operating_systems": [ + "iOS", + "web browser" + ], + "programming_languages": [ + "TypeScript", + "Swift" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139504919" + ], + "created_at": "2026-07-10T10:12:40.172744", + "updated_at": "2026-07-10T10:12:40.172744", + "url": "/v1/software/comicink" +} diff --git a/site/public/v1/software/comico/index.json b/site/public/v1/software/comico/index.json new file mode 100644 index 000000000000..4cc402eab6ee --- /dev/null +++ b/site/public/v1/software/comico/index.json @@ -0,0 +1,19 @@ +{ + "id": 1736, + "slug": "comico", + "name": "Comico", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17991433" + ], + "created_at": "2026-07-10T10:12:40.172744", + "updated_at": "2026-07-10T10:12:40.172744", + "url": "/v1/software/comico" +} diff --git a/site/public/v1/software/comicsviewer/index.json b/site/public/v1/software/comicsviewer/index.json new file mode 100644 index 000000000000..4acdb07b6f73 --- /dev/null +++ b/site/public/v1/software/comicsviewer/index.json @@ -0,0 +1,19 @@ +{ + "id": 1737, + "slug": "comicsviewer", + "name": "ComicsViewer", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10846809" + ], + "created_at": "2026-07-10T10:12:40.172744", + "updated_at": "2026-07-10T10:12:40.172744", + "url": "/v1/software/comicsviewer" +} diff --git a/site/public/v1/software/comindware-tracker/index.json b/site/public/v1/software/comindware-tracker/index.json new file mode 100644 index 000000000000..97600262f194 --- /dev/null +++ b/site/public/v1/software/comindware-tracker/index.json @@ -0,0 +1,19 @@ +{ + "id": 1738, + "slug": "comindware-tracker", + "name": "Comindware Tracker", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5151893" + ], + "created_at": "2026-07-10T10:12:40.172744", + "updated_at": "2026-07-10T10:12:40.172744", + "url": "/v1/software/comindware-tracker" +} diff --git a/site/public/v1/software/comm100-live-chat/index.json b/site/public/v1/software/comm100-live-chat/index.json new file mode 100644 index 000000000000..d95b71bce808 --- /dev/null +++ b/site/public/v1/software/comm100-live-chat/index.json @@ -0,0 +1,21 @@ +{ + "id": 1739, + "slug": "comm100-live-chat", + "name": "Comm100 Live Chat", + "release_date": null, + "developers": [ + "Comm100" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17087251" + ], + "created_at": "2026-07-10T10:12:40.173744", + "updated_at": "2026-07-10T10:12:40.173744", + "url": "/v1/software/comm100-live-chat" +} diff --git a/site/public/v1/software/command-aces-of-the-deep/index.json b/site/public/v1/software/command-aces-of-the-deep/index.json new file mode 100644 index 000000000000..e787aeea2226 --- /dev/null +++ b/site/public/v1/software/command-aces-of-the-deep/index.json @@ -0,0 +1,19 @@ +{ + "id": 1740, + "slug": "command-aces-of-the-deep", + "name": "Command: Aces of the Deep", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q87409596" + ], + "created_at": "2026-07-10T10:12:40.173744", + "updated_at": "2026-07-10T10:12:40.173744", + "url": "/v1/software/command-aces-of-the-deep" +} diff --git a/site/public/v1/software/comme-il-faut/index.json b/site/public/v1/software/comme-il-faut/index.json new file mode 100644 index 000000000000..65b0a2ba171c --- /dev/null +++ b/site/public/v1/software/comme-il-faut/index.json @@ -0,0 +1,25 @@ +{ + "id": 1741, + "slug": "comme-il-faut", + "name": "Comme Il Faut", + "release_date": null, + "developers": [ + "Mike Treanor", + "Michael Mateas", + "Noah Wardrip-Fruin", + "Ben Samuel", + "Joshua McCoy" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125523910" + ], + "created_at": "2026-07-10T10:12:40.173744", + "updated_at": "2026-07-10T10:12:40.173744", + "url": "/v1/software/comme-il-faut" +} diff --git a/site/public/v1/software/commentpress/index.json b/site/public/v1/software/commentpress/index.json new file mode 100644 index 000000000000..e7f1975b10a4 --- /dev/null +++ b/site/public/v1/software/commentpress/index.json @@ -0,0 +1,19 @@ +{ + "id": 1742, + "slug": "commentpress", + "name": "Commentpress", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084851" + ], + "created_at": "2026-07-10T10:12:40.173744", + "updated_at": "2026-07-10T10:12:40.173744", + "url": "/v1/software/commentpress" +} diff --git a/site/public/v1/software/commentspace/index.json b/site/public/v1/software/commentspace/index.json new file mode 100644 index 000000000000..4bd16e2144f9 --- /dev/null +++ b/site/public/v1/software/commentspace/index.json @@ -0,0 +1,19 @@ +{ + "id": 1743, + "slug": "commentspace", + "name": "CommentSpace", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084852" + ], + "created_at": "2026-07-10T10:12:40.174744", + "updated_at": "2026-07-10T10:12:40.174744", + "url": "/v1/software/commentspace" +} diff --git a/site/public/v1/software/common-lisp-interface-manager/index.json b/site/public/v1/software/common-lisp-interface-manager/index.json new file mode 100644 index 000000000000..5ecbaea17851 --- /dev/null +++ b/site/public/v1/software/common-lisp-interface-manager/index.json @@ -0,0 +1,21 @@ +{ + "id": 1744, + "slug": "common-lisp-interface-manager", + "name": "Common Lisp Interface Manager", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Common Lisp" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1116166" + ], + "created_at": "2026-07-10T10:12:40.174744", + "updated_at": "2026-07-10T10:12:40.174744", + "url": "/v1/software/common-lisp-interface-manager" +} diff --git a/site/public/v1/software/commonmeta-py-q130394645/index.json b/site/public/v1/software/commonmeta-py-q130394645/index.json new file mode 100644 index 000000000000..ba570846a246 --- /dev/null +++ b/site/public/v1/software/commonmeta-py-q130394645/index.json @@ -0,0 +1,19 @@ +{ + "id": 1745, + "slug": "commonmeta-py-q130394645", + "name": "commonmeta-py", + "release_date": "2024-02-04", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130394645" + ], + "created_at": "2026-07-10T10:12:40.174744", + "updated_at": "2026-07-10T10:12:40.174744", + "url": "/v1/software/commonmeta-py-q130394645" +} diff --git a/site/public/v1/software/commonmeta-py/index.json b/site/public/v1/software/commonmeta-py/index.json new file mode 100644 index 000000000000..6928c1436c56 --- /dev/null +++ b/site/public/v1/software/commonmeta-py/index.json @@ -0,0 +1,19 @@ +{ + "id": 1746, + "slug": "commonmeta-py", + "name": "commonmeta-py", + "release_date": "2024-02-04", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130394644" + ], + "created_at": "2026-07-10T10:12:40.174744", + "updated_at": "2026-07-10T10:12:40.175744", + "url": "/v1/software/commonmeta-py" +} diff --git a/site/public/v1/software/commonmeta-ruby-q130394648/index.json b/site/public/v1/software/commonmeta-ruby-q130394648/index.json new file mode 100644 index 000000000000..0f1776e414b9 --- /dev/null +++ b/site/public/v1/software/commonmeta-ruby-q130394648/index.json @@ -0,0 +1,19 @@ +{ + "id": 1747, + "slug": "commonmeta-ruby-q130394648", + "name": "commonmeta-ruby", + "release_date": "2024-02-04", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130394648" + ], + "created_at": "2026-07-10T10:12:40.175744", + "updated_at": "2026-07-10T10:12:40.175744", + "url": "/v1/software/commonmeta-ruby-q130394648" +} diff --git a/site/public/v1/software/commonmeta-ruby/index.json b/site/public/v1/software/commonmeta-ruby/index.json new file mode 100644 index 000000000000..0d78e5f16b1f --- /dev/null +++ b/site/public/v1/software/commonmeta-ruby/index.json @@ -0,0 +1,19 @@ +{ + "id": 1748, + "slug": "commonmeta-ruby", + "name": "commonmeta-ruby", + "release_date": "2024-02-04", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130394646" + ], + "created_at": "2026-07-10T10:12:40.175744", + "updated_at": "2026-07-10T10:12:40.175744", + "url": "/v1/software/commonmeta-ruby" +} diff --git a/site/public/v1/software/commons-email/index.json b/site/public/v1/software/commons-email/index.json new file mode 100644 index 000000000000..818211986df3 --- /dev/null +++ b/site/public/v1/software/commons-email/index.json @@ -0,0 +1,19 @@ +{ + "id": 1749, + "slug": "commons-email", + "name": "Commons Email", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11190365" + ], + "created_at": "2026-07-10T10:12:40.175744", + "updated_at": "2026-07-10T10:12:40.175744", + "url": "/v1/software/commons-email" +} diff --git a/site/public/v1/software/commons-in-a-box/index.json b/site/public/v1/software/commons-in-a-box/index.json new file mode 100644 index 000000000000..2723ef857102 --- /dev/null +++ b/site/public/v1/software/commons-in-a-box/index.json @@ -0,0 +1,19 @@ +{ + "id": 1750, + "slug": "commons-in-a-box", + "name": "Commons In A Box", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084853" + ], + "created_at": "2026-07-10T10:12:40.176745", + "updated_at": "2026-07-10T10:12:40.176745", + "url": "/v1/software/commons-in-a-box" +} diff --git a/site/public/v1/software/community-cyberinfrastructure-for-advanced-marine-microbial-ecology-research-and-analysis/index.json b/site/public/v1/software/community-cyberinfrastructure-for-advanced-marine-microbial-ecology-research-and-analysis/index.json new file mode 100644 index 000000000000..cbf7f95a5a4d --- /dev/null +++ b/site/public/v1/software/community-cyberinfrastructure-for-advanced-marine-microbial-ecology-research-and-analysis/index.json @@ -0,0 +1,19 @@ +{ + "id": 1751, + "slug": "community-cyberinfrastructure-for-advanced-marine-microbial-ecology-research-and-analysis", + "name": "Community Cyberinfrastructure for Advanced Marine Microbial Ecology Research and Analysis", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q73625" + ], + "created_at": "2026-07-10T10:12:40.176745", + "updated_at": "2026-07-10T10:12:40.176745", + "url": "/v1/software/community-cyberinfrastructure-for-advanced-marine-microbial-ecology-research-and-analysis" +} diff --git a/site/public/v1/software/community-earth-system-model/index.json b/site/public/v1/software/community-earth-system-model/index.json new file mode 100644 index 000000000000..21bbf152d527 --- /dev/null +++ b/site/public/v1/software/community-earth-system-model/index.json @@ -0,0 +1,21 @@ +{ + "id": 1752, + "slug": "community-earth-system-model", + "name": "Community Earth System Model", + "release_date": null, + "developers": [ + "National Center for Atmospheric Research" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q23579713" + ], + "created_at": "2026-07-10T10:12:40.176745", + "updated_at": "2026-07-10T10:12:40.176745", + "url": "/v1/software/community-earth-system-model" +} diff --git a/site/public/v1/software/communityviz/index.json b/site/public/v1/software/communityviz/index.json new file mode 100644 index 000000000000..7060c20f1f5c --- /dev/null +++ b/site/public/v1/software/communityviz/index.json @@ -0,0 +1,19 @@ +{ + "id": 1753, + "slug": "communityviz", + "name": "CommunityViz", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5154605" + ], + "created_at": "2026-07-10T10:12:40.176745", + "updated_at": "2026-07-10T10:12:40.176745", + "url": "/v1/software/communityviz" +} diff --git a/site/public/v1/software/comodo-backup/index.json b/site/public/v1/software/comodo-backup/index.json new file mode 100644 index 000000000000..8bd4ca08a1e1 --- /dev/null +++ b/site/public/v1/software/comodo-backup/index.json @@ -0,0 +1,21 @@ +{ + "id": 1754, + "slug": "comodo-backup", + "name": "Comodo Backup", + "release_date": null, + "developers": [ + "Comodo Group" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1986559" + ], + "created_at": "2026-07-10T10:12:40.177745", + "updated_at": "2026-07-10T10:12:40.177745", + "url": "/v1/software/comodo-backup" +} diff --git a/site/public/v1/software/compact-pro/index.json b/site/public/v1/software/compact-pro/index.json new file mode 100644 index 000000000000..f5acbad2b28a --- /dev/null +++ b/site/public/v1/software/compact-pro/index.json @@ -0,0 +1,19 @@ +{ + "id": 1755, + "slug": "compact-pro", + "name": "Compact Pro", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5155295" + ], + "created_at": "2026-07-10T10:12:40.177745", + "updated_at": "2026-07-10T10:12:40.177745", + "url": "/v1/software/compact-pro" +} diff --git a/site/public/v1/software/comparative-toxicogenomics-database/index.json b/site/public/v1/software/comparative-toxicogenomics-database/index.json new file mode 100644 index 000000000000..5d5f0cd43cad --- /dev/null +++ b/site/public/v1/software/comparative-toxicogenomics-database/index.json @@ -0,0 +1,21 @@ +{ + "id": 1756, + "slug": "comparative-toxicogenomics-database", + "name": "Comparative Toxicogenomics Database", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5155628" + ], + "created_at": "2026-07-10T10:12:40.177745", + "updated_at": "2026-07-10T10:12:40.177745", + "url": "/v1/software/comparative-toxicogenomics-database" +} diff --git a/site/public/v1/software/compare-lists/index.json b/site/public/v1/software/compare-lists/index.json new file mode 100644 index 000000000000..4eed37b82ac7 --- /dev/null +++ b/site/public/v1/software/compare-lists/index.json @@ -0,0 +1,19 @@ +{ + "id": 1757, + "slug": "compare-lists", + "name": "Compare Lists", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084854" + ], + "created_at": "2026-07-10T10:12:40.177745", + "updated_at": "2026-07-10T10:12:40.177745", + "url": "/v1/software/compare-lists" +} diff --git a/site/public/v1/software/compare-networks-over-time/index.json b/site/public/v1/software/compare-networks-over-time/index.json new file mode 100644 index 000000000000..8d5867876a83 --- /dev/null +++ b/site/public/v1/software/compare-networks-over-time/index.json @@ -0,0 +1,19 @@ +{ + "id": 1758, + "slug": "compare-networks-over-time", + "name": "Compare Networks Over Time", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084855" + ], + "created_at": "2026-07-10T10:12:40.178744", + "updated_at": "2026-07-10T10:12:40.178744", + "url": "/v1/software/compare-networks-over-time" +} diff --git a/site/public/v1/software/comparison-of-software-saving-web-pages-for-offline-use/index.json b/site/public/v1/software/comparison-of-software-saving-web-pages-for-offline-use/index.json new file mode 100644 index 000000000000..3b227228150c --- /dev/null +++ b/site/public/v1/software/comparison-of-software-saving-web-pages-for-offline-use/index.json @@ -0,0 +1,19 @@ +{ + "id": 1759, + "slug": "comparison-of-software-saving-web-pages-for-offline-use", + "name": "Comparison of software saving Web pages for offline use", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5155993" + ], + "created_at": "2026-07-10T10:12:40.178744", + "updated_at": "2026-07-10T10:12:40.178744", + "url": "/v1/software/comparison-of-software-saving-web-pages-for-offline-use" +} diff --git a/site/public/v1/software/compfight/index.json b/site/public/v1/software/compfight/index.json new file mode 100644 index 000000000000..dd72e6fcb908 --- /dev/null +++ b/site/public/v1/software/compfight/index.json @@ -0,0 +1,19 @@ +{ + "id": 1760, + "slug": "compfight", + "name": "Compfight", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084856" + ], + "created_at": "2026-07-10T10:12:40.178744", + "updated_at": "2026-07-10T10:12:40.178744", + "url": "/v1/software/compfight" +} diff --git a/site/public/v1/software/comphep/index.json b/site/public/v1/software/comphep/index.json new file mode 100644 index 000000000000..0e58730138da --- /dev/null +++ b/site/public/v1/software/comphep/index.json @@ -0,0 +1,23 @@ +{ + "id": 1761, + "slug": "comphep", + "name": "CompHEP", + "release_date": null, + "developers": [ + "SINP MSU" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "non-commercial activity" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4036462" + ], + "created_at": "2026-07-10T10:12:40.178744", + "updated_at": "2026-07-10T10:12:40.178744", + "url": "/v1/software/comphep" +} diff --git a/site/public/v1/software/comphistsem/index.json b/site/public/v1/software/comphistsem/index.json new file mode 100644 index 000000000000..a0fc18fa4c90 --- /dev/null +++ b/site/public/v1/software/comphistsem/index.json @@ -0,0 +1,19 @@ +{ + "id": 1762, + "slug": "comphistsem", + "name": "CompHistSem", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087783" + ], + "created_at": "2026-07-10T10:12:40.179744", + "updated_at": "2026-07-10T10:12:40.179744", + "url": "/v1/software/comphistsem" +} diff --git a/site/public/v1/software/compiler-rt-sanitizers/index.json b/site/public/v1/software/compiler-rt-sanitizers/index.json new file mode 100644 index 000000000000..585a0ed82681 --- /dev/null +++ b/site/public/v1/software/compiler-rt-sanitizers/index.json @@ -0,0 +1,21 @@ +{ + "id": 1763, + "slug": "compiler-rt-sanitizers", + "name": "compiler-rt-sanitizers", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Apache License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974782" + ], + "created_at": "2026-07-10T10:12:40.179744", + "updated_at": "2026-07-10T10:12:40.179744", + "url": "/v1/software/compiler-rt-sanitizers" +} diff --git a/site/public/v1/software/compiler-rt/index.json b/site/public/v1/software/compiler-rt/index.json new file mode 100644 index 000000000000..ba5f8a1ab551 --- /dev/null +++ b/site/public/v1/software/compiler-rt/index.json @@ -0,0 +1,21 @@ +{ + "id": 1764, + "slug": "compiler-rt", + "name": "compiler-rt", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Apache License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974781" + ], + "created_at": "2026-07-10T10:12:40.179744", + "updated_at": "2026-07-10T10:12:40.179744", + "url": "/v1/software/compiler-rt" +} diff --git a/site/public/v1/software/complete-ftp-server/index.json b/site/public/v1/software/complete-ftp-server/index.json new file mode 100644 index 000000000000..e59a89bc40cf --- /dev/null +++ b/site/public/v1/software/complete-ftp-server/index.json @@ -0,0 +1,19 @@ +{ + "id": 1765, + "slug": "complete-ftp-server", + "name": "Complete FTP Server", + "release_date": "2008-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5156460" + ], + "created_at": "2026-07-10T10:12:40.180745", + "updated_at": "2026-07-10T10:12:40.180745", + "url": "/v1/software/complete-ftp-server" +} diff --git a/site/public/v1/software/completetax/index.json b/site/public/v1/software/completetax/index.json new file mode 100644 index 000000000000..3ac44b7ccc00 --- /dev/null +++ b/site/public/v1/software/completetax/index.json @@ -0,0 +1,21 @@ +{ + "id": 1766, + "slug": "completetax", + "name": "CompleteTax", + "release_date": null, + "developers": [ + "CCH" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5156439" + ], + "created_at": "2026-07-10T10:12:40.180745", + "updated_at": "2026-07-10T10:12:40.180745", + "url": "/v1/software/completetax" +} diff --git a/site/public/v1/software/complex-sentiment-analysis/index.json b/site/public/v1/software/complex-sentiment-analysis/index.json new file mode 100644 index 000000000000..3fc2ede4d002 --- /dev/null +++ b/site/public/v1/software/complex-sentiment-analysis/index.json @@ -0,0 +1,19 @@ +{ + "id": 1767, + "slug": "complex-sentiment-analysis", + "name": "Complex Sentiment Analysis", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084857" + ], + "created_at": "2026-07-10T10:12:40.180745", + "updated_at": "2026-07-10T10:12:40.180745", + "url": "/v1/software/complex-sentiment-analysis" +} diff --git a/site/public/v1/software/complydog/index.json b/site/public/v1/software/complydog/index.json new file mode 100644 index 000000000000..ecded22e15a7 --- /dev/null +++ b/site/public/v1/software/complydog/index.json @@ -0,0 +1,21 @@ +{ + "id": 1768, + "slug": "complydog", + "name": "ComplyDog", + "release_date": null, + "developers": [ + "ComplyDog" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138339765" + ], + "created_at": "2026-07-10T10:12:40.180745", + "updated_at": "2026-07-10T10:12:40.180745", + "url": "/v1/software/complydog" +} diff --git a/site/public/v1/software/component-based-scalable-logical-architecture/index.json b/site/public/v1/software/component-based-scalable-logical-architecture/index.json new file mode 100644 index 000000000000..467ae874d67d --- /dev/null +++ b/site/public/v1/software/component-based-scalable-logical-architecture/index.json @@ -0,0 +1,19 @@ +{ + "id": 1769, + "slug": "component-based-scalable-logical-architecture", + "name": "Component-based Scalable Logical Architecture", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5156683" + ], + "created_at": "2026-07-10T10:12:40.181744", + "updated_at": "2026-07-10T10:12:40.181744", + "url": "/v1/software/component-based-scalable-logical-architecture" +} diff --git a/site/public/v1/software/composer-by-bluerock-tms/index.json b/site/public/v1/software/composer-by-bluerock-tms/index.json new file mode 100644 index 000000000000..d9ff0703129f --- /dev/null +++ b/site/public/v1/software/composer-by-bluerock-tms/index.json @@ -0,0 +1,21 @@ +{ + "id": 1770, + "slug": "composer-by-bluerock-tms", + "name": "Composer by Bluerock TMS", + "release_date": null, + "developers": [ + "Bluerock TMS" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140449825" + ], + "created_at": "2026-07-10T10:12:40.181744", + "updated_at": "2026-07-10T10:12:40.181744", + "url": "/v1/software/composer-by-bluerock-tms" +} diff --git a/site/public/v1/software/compressed-file-library/index.json b/site/public/v1/software/compressed-file-library/index.json new file mode 100644 index 000000000000..d40c3a836763 --- /dev/null +++ b/site/public/v1/software/compressed-file-library/index.json @@ -0,0 +1,23 @@ +{ + "id": 1771, + "slug": "compressed-file-library", + "name": "compressed file library", + "release_date": null, + "developers": [ + "Fathammer" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "public-domain software" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5157021" + ], + "created_at": "2026-07-10T10:12:40.181744", + "updated_at": "2026-07-10T10:12:40.181744", + "url": "/v1/software/compressed-file-library" +} diff --git a/site/public/v1/software/compressor-q11872312/index.json b/site/public/v1/software/compressor-q11872312/index.json new file mode 100644 index 000000000000..7ee368f32907 --- /dev/null +++ b/site/public/v1/software/compressor-q11872312/index.json @@ -0,0 +1,19 @@ +{ + "id": 1772, + "slug": "compressor-q11872312", + "name": "compressor", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11872312" + ], + "created_at": "2026-07-10T10:12:40.181744", + "updated_at": "2026-07-10T10:12:40.181744", + "url": "/v1/software/compressor-q11872312" +} diff --git a/site/public/v1/software/compressor/index.json b/site/public/v1/software/compressor/index.json new file mode 100644 index 000000000000..f3b236e1fa76 --- /dev/null +++ b/site/public/v1/software/compressor/index.json @@ -0,0 +1,21 @@ +{ + "id": 1773, + "slug": "compressor", + "name": "Compressor", + "release_date": null, + "developers": [ + "Apple Inc." + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2720274" + ], + "created_at": "2026-07-10T10:12:40.182744", + "updated_at": "2026-07-10T10:12:40.182744", + "url": "/v1/software/compressor" +} diff --git a/site/public/v1/software/compucell3d/index.json b/site/public/v1/software/compucell3d/index.json new file mode 100644 index 000000000000..34856e6d3902 --- /dev/null +++ b/site/public/v1/software/compucell3d/index.json @@ -0,0 +1,19 @@ +{ + "id": 1774, + "slug": "compucell3d", + "name": "CompuCell3D", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5157207" + ], + "created_at": "2026-07-10T10:12:40.182744", + "updated_at": "2026-07-10T10:12:40.182744", + "url": "/v1/software/compucell3d" +} diff --git a/site/public/v1/software/computational-anatomy-toolbox/index.json b/site/public/v1/software/computational-anatomy-toolbox/index.json new file mode 100644 index 000000000000..bb85ffec41b7 --- /dev/null +++ b/site/public/v1/software/computational-anatomy-toolbox/index.json @@ -0,0 +1,19 @@ +{ + "id": 1775, + "slug": "computational-anatomy-toolbox", + "name": "Computational anatomy toolbox", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130548057" + ], + "created_at": "2026-07-10T10:12:40.182744", + "updated_at": "2026-07-10T10:12:40.182744", + "url": "/v1/software/computational-anatomy-toolbox" +} diff --git a/site/public/v1/software/computational-resource-for-drug-discovery/index.json b/site/public/v1/software/computational-resource-for-drug-discovery/index.json new file mode 100644 index 000000000000..4105c129d75f --- /dev/null +++ b/site/public/v1/software/computational-resource-for-drug-discovery/index.json @@ -0,0 +1,19 @@ +{ + "id": 1776, + "slug": "computational-resource-for-drug-discovery", + "name": "Computational Resource for Drug Discovery", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5157292" + ], + "created_at": "2026-07-10T10:12:40.182744", + "updated_at": "2026-07-10T10:12:40.182744", + "url": "/v1/software/computational-resource-for-drug-discovery" +} diff --git a/site/public/v1/software/compute-architecture-for-neural-networks/index.json b/site/public/v1/software/compute-architecture-for-neural-networks/index.json new file mode 100644 index 000000000000..a8ebe5f7b196 --- /dev/null +++ b/site/public/v1/software/compute-architecture-for-neural-networks/index.json @@ -0,0 +1,21 @@ +{ + "id": 1777, + "slug": "compute-architecture-for-neural-networks", + "name": "Compute Architecture for Neural Networks", + "release_date": null, + "developers": [ + "Huawei" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115931552" + ], + "created_at": "2026-07-10T10:12:40.183744", + "updated_at": "2026-07-10T10:12:40.183744", + "url": "/v1/software/compute-architecture-for-neural-networks" +} diff --git a/site/public/v1/software/computer-accessibility/index.json b/site/public/v1/software/computer-accessibility/index.json new file mode 100644 index 000000000000..08ac41bc7b09 --- /dev/null +++ b/site/public/v1/software/computer-accessibility/index.json @@ -0,0 +1,19 @@ +{ + "id": 1778, + "slug": "computer-accessibility", + "name": "computer accessibility", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3097841" + ], + "created_at": "2026-07-10T10:12:40.183744", + "updated_at": "2026-07-10T10:12:40.183744", + "url": "/v1/software/computer-accessibility" +} diff --git a/site/public/v1/software/computer-aided-technologies/index.json b/site/public/v1/software/computer-aided-technologies/index.json new file mode 100644 index 000000000000..5add96dd50d1 --- /dev/null +++ b/site/public/v1/software/computer-aided-technologies/index.json @@ -0,0 +1,19 @@ +{ + "id": 1779, + "slug": "computer-aided-technologies", + "name": "Computer-aided technologies", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1022947" + ], + "created_at": "2026-07-10T10:12:40.183744", + "updated_at": "2026-07-10T10:12:40.183744", + "url": "/v1/software/computer-aided-technologies" +} diff --git a/site/public/v1/software/computer-aided-transcription-system/index.json b/site/public/v1/software/computer-aided-transcription-system/index.json new file mode 100644 index 000000000000..c36fcbac27ea --- /dev/null +++ b/site/public/v1/software/computer-aided-transcription-system/index.json @@ -0,0 +1,21 @@ +{ + "id": 1780, + "slug": "computer-aided-transcription-system", + "name": "Computer Aided Transcription System", + "release_date": null, + "developers": [], + "publishers": [ + "CATS Software, Inc." + ], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5008900" + ], + "created_at": "2026-07-10T10:12:40.183744", + "updated_at": "2026-07-10T10:12:40.183744", + "url": "/v1/software/computer-aided-transcription-system" +} diff --git a/site/public/v1/software/computer-and-internet-protocol-address-verifier/index.json b/site/public/v1/software/computer-and-internet-protocol-address-verifier/index.json new file mode 100644 index 000000000000..3f48c26bd097 --- /dev/null +++ b/site/public/v1/software/computer-and-internet-protocol-address-verifier/index.json @@ -0,0 +1,21 @@ +{ + "id": 1781, + "slug": "computer-and-internet-protocol-address-verifier", + "name": "Computer and Internet Protocol Address Verifier", + "release_date": null, + "developers": [ + "Federal Bureau of Investigation" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1122348" + ], + "created_at": "2026-07-10T10:12:40.184744", + "updated_at": "2026-07-10T10:12:40.184744", + "url": "/v1/software/computer-and-internet-protocol-address-verifier" +} diff --git a/site/public/v1/software/computer-model-railroad-interface/index.json b/site/public/v1/software/computer-model-railroad-interface/index.json new file mode 100644 index 000000000000..8adf634695fa --- /dev/null +++ b/site/public/v1/software/computer-model-railroad-interface/index.json @@ -0,0 +1,19 @@ +{ + "id": 1782, + "slug": "computer-model-railroad-interface", + "name": "Computer Model Railroad Interface", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5157453" + ], + "created_at": "2026-07-10T10:12:40.184744", + "updated_at": "2026-07-10T10:12:40.184744", + "url": "/v1/software/computer-model-railroad-interface" +} diff --git a/site/public/v1/software/computer-online-forensic-evidence-extractor/index.json b/site/public/v1/software/computer-online-forensic-evidence-extractor/index.json new file mode 100644 index 000000000000..ccaee7bb1d4e --- /dev/null +++ b/site/public/v1/software/computer-online-forensic-evidence-extractor/index.json @@ -0,0 +1,19 @@ +{ + "id": 1783, + "slug": "computer-online-forensic-evidence-extractor", + "name": "Computer Online Forensic Evidence Extractor", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1122286" + ], + "created_at": "2026-07-10T10:12:40.184744", + "updated_at": "2026-07-10T10:12:40.184744", + "url": "/v1/software/computer-online-forensic-evidence-extractor" +} diff --git a/site/public/v1/software/computer-program-to-calculate-emissions-from-road-transport/index.json b/site/public/v1/software/computer-program-to-calculate-emissions-from-road-transport/index.json new file mode 100644 index 000000000000..17e2203d9486 --- /dev/null +++ b/site/public/v1/software/computer-program-to-calculate-emissions-from-road-transport/index.json @@ -0,0 +1,21 @@ +{ + "id": 1784, + "slug": "computer-program-to-calculate-emissions-from-road-transport", + "name": "Computer Program to Calculate Emissions from Road Transport", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2990907" + ], + "created_at": "2026-07-10T10:12:40.185744", + "updated_at": "2026-07-10T10:12:40.185744", + "url": "/v1/software/computer-program-to-calculate-emissions-from-road-transport" +} diff --git a/site/public/v1/software/computer-stored-ambulatory-record/index.json b/site/public/v1/software/computer-stored-ambulatory-record/index.json new file mode 100644 index 000000000000..857571b70426 --- /dev/null +++ b/site/public/v1/software/computer-stored-ambulatory-record/index.json @@ -0,0 +1,23 @@ +{ + "id": 1785, + "slug": "computer-stored-ambulatory-record", + "name": "COmputer STored Ambulatory Record", + "release_date": null, + "developers": [ + "Massachusetts General Hospital" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "MUMPS" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5013564" + ], + "created_at": "2026-07-10T10:12:40.185744", + "updated_at": "2026-07-10T10:12:40.185744", + "url": "/v1/software/computer-stored-ambulatory-record" +} diff --git a/site/public/v1/software/computrac/index.json b/site/public/v1/software/computrac/index.json new file mode 100644 index 000000000000..2af504035aab --- /dev/null +++ b/site/public/v1/software/computrac/index.json @@ -0,0 +1,19 @@ +{ + "id": 1786, + "slug": "computrac", + "name": "CompuTrac", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5157213" + ], + "created_at": "2026-07-10T10:12:40.185744", + "updated_at": "2026-07-10T10:12:40.185744", + "url": "/v1/software/computrac" +} diff --git a/site/public/v1/software/conceptdraw-diagram/index.json b/site/public/v1/software/conceptdraw-diagram/index.json new file mode 100644 index 000000000000..059a87c7a265 --- /dev/null +++ b/site/public/v1/software/conceptdraw-diagram/index.json @@ -0,0 +1,21 @@ +{ + "id": 1787, + "slug": "conceptdraw-diagram", + "name": "ConceptDraw DIAGRAM", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q15614383" + ], + "created_at": "2026-07-10T10:12:40.185744", + "updated_at": "2026-07-10T10:12:40.185744", + "url": "/v1/software/conceptdraw-diagram" +} diff --git a/site/public/v1/software/conceptdraw-mindmap/index.json b/site/public/v1/software/conceptdraw-mindmap/index.json new file mode 100644 index 000000000000..d4f7b0d5fe04 --- /dev/null +++ b/site/public/v1/software/conceptdraw-mindmap/index.json @@ -0,0 +1,19 @@ +{ + "id": 1788, + "slug": "conceptdraw-mindmap", + "name": "ConceptDraw MINDMAP", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16526552" + ], + "created_at": "2026-07-10T10:12:40.185744", + "updated_at": "2026-07-10T10:12:40.185744", + "url": "/v1/software/conceptdraw-mindmap" +} diff --git a/site/public/v1/software/conceptdraw-office/index.json b/site/public/v1/software/conceptdraw-office/index.json new file mode 100644 index 000000000000..f5c2fadc4864 --- /dev/null +++ b/site/public/v1/software/conceptdraw-office/index.json @@ -0,0 +1,19 @@ +{ + "id": 1789, + "slug": "conceptdraw-office", + "name": "ConceptDraw Office", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q15240487" + ], + "created_at": "2026-07-10T10:12:40.186744", + "updated_at": "2026-07-10T10:12:40.186744", + "url": "/v1/software/conceptdraw-office" +} diff --git a/site/public/v1/software/conceptdraw-project/index.json b/site/public/v1/software/conceptdraw-project/index.json new file mode 100644 index 000000000000..dce9786febe2 --- /dev/null +++ b/site/public/v1/software/conceptdraw-project/index.json @@ -0,0 +1,19 @@ +{ + "id": 1790, + "slug": "conceptdraw-project", + "name": "ConceptDraw Project", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5158376" + ], + "created_at": "2026-07-10T10:12:40.186744", + "updated_at": "2026-07-10T10:12:40.186744", + "url": "/v1/software/conceptdraw-project" +} diff --git a/site/public/v1/software/concord/index.json b/site/public/v1/software/concord/index.json new file mode 100644 index 000000000000..7e1fda8a5832 --- /dev/null +++ b/site/public/v1/software/concord/index.json @@ -0,0 +1,19 @@ +{ + "id": 1791, + "slug": "concord", + "name": "CONCORD", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087784" + ], + "created_at": "2026-07-10T10:12:40.186744", + "updated_at": "2026-07-10T10:12:40.186744", + "url": "/v1/software/concord" +} diff --git a/site/public/v1/software/concordance/index.json b/site/public/v1/software/concordance/index.json new file mode 100644 index 000000000000..bf3a2c0ee48f --- /dev/null +++ b/site/public/v1/software/concordance/index.json @@ -0,0 +1,19 @@ +{ + "id": 1792, + "slug": "concordance", + "name": "Concordance", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084859" + ], + "created_at": "2026-07-10T10:12:40.187745", + "updated_at": "2026-07-10T10:12:40.187745", + "url": "/v1/software/concordance" +} diff --git a/site/public/v1/software/concorde-tsp-solver/index.json b/site/public/v1/software/concorde-tsp-solver/index.json new file mode 100644 index 000000000000..a2171f1ebfff --- /dev/null +++ b/site/public/v1/software/concorde-tsp-solver/index.json @@ -0,0 +1,21 @@ +{ + "id": 1793, + "slug": "concorde-tsp-solver", + "name": "Concorde TSP Solver", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "ANSI C" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5158938" + ], + "created_at": "2026-07-10T10:12:40.187745", + "updated_at": "2026-07-10T10:12:40.187745", + "url": "/v1/software/concorde-tsp-solver" +} diff --git a/site/public/v1/software/concordle/index.json b/site/public/v1/software/concordle/index.json new file mode 100644 index 000000000000..718861e6446c --- /dev/null +++ b/site/public/v1/software/concordle/index.json @@ -0,0 +1,19 @@ +{ + "id": 1794, + "slug": "concordle", + "name": "Concordle", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087786" + ], + "created_at": "2026-07-10T10:12:40.187745", + "updated_at": "2026-07-10T10:12:40.187745", + "url": "/v1/software/concordle" +} diff --git a/site/public/v1/software/concraft-dependencyparser/index.json b/site/public/v1/software/concraft-dependencyparser/index.json new file mode 100644 index 000000000000..fbb2b6976ac9 --- /dev/null +++ b/site/public/v1/software/concraft-dependencyparser/index.json @@ -0,0 +1,19 @@ +{ + "id": 1795, + "slug": "concraft-dependencyparser", + "name": "Concraft -> DependencyParser", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084861" + ], + "created_at": "2026-07-10T10:12:40.187745", + "updated_at": "2026-07-10T10:12:40.187745", + "url": "/v1/software/concraft-dependencyparser" +} diff --git a/site/public/v1/software/concraft-nerf/index.json b/site/public/v1/software/concraft-nerf/index.json new file mode 100644 index 000000000000..aad6c41add40 --- /dev/null +++ b/site/public/v1/software/concraft-nerf/index.json @@ -0,0 +1,19 @@ +{ + "id": 1796, + "slug": "concraft-nerf", + "name": "Concraft -> Nerf", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087787" + ], + "created_at": "2026-07-10T10:12:40.188744", + "updated_at": "2026-07-10T10:12:40.188744", + "url": "/v1/software/concraft-nerf" +} diff --git a/site/public/v1/software/concraft-pl-2-0/index.json b/site/public/v1/software/concraft-pl-2-0/index.json new file mode 100644 index 000000000000..76002d87f7c5 --- /dev/null +++ b/site/public/v1/software/concraft-pl-2-0/index.json @@ -0,0 +1,19 @@ +{ + "id": 1797, + "slug": "concraft-pl-2-0", + "name": "Concraft-pl 2.0", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084862" + ], + "created_at": "2026-07-10T10:12:40.188744", + "updated_at": "2026-07-10T10:12:40.188744", + "url": "/v1/software/concraft-pl-2-0" +} diff --git a/site/public/v1/software/concraft-sentipejd/index.json b/site/public/v1/software/concraft-sentipejd/index.json new file mode 100644 index 000000000000..497e92a42da9 --- /dev/null +++ b/site/public/v1/software/concraft-sentipejd/index.json @@ -0,0 +1,19 @@ +{ + "id": 1798, + "slug": "concraft-sentipejd", + "name": "Concraft -> Sentipejd", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087788" + ], + "created_at": "2026-07-10T10:12:40.188744", + "updated_at": "2026-07-10T10:12:40.188744", + "url": "/v1/software/concraft-sentipejd" +} diff --git a/site/public/v1/software/concraft-spejd/index.json b/site/public/v1/software/concraft-spejd/index.json new file mode 100644 index 000000000000..158d4a3d90b9 --- /dev/null +++ b/site/public/v1/software/concraft-spejd/index.json @@ -0,0 +1,19 @@ +{ + "id": 1799, + "slug": "concraft-spejd", + "name": "Concraft->Spejd", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084864" + ], + "created_at": "2026-07-10T10:12:40.188744", + "updated_at": "2026-07-10T10:12:40.188744", + "url": "/v1/software/concraft-spejd" +} diff --git a/site/public/v1/software/concraft/index.json b/site/public/v1/software/concraft/index.json new file mode 100644 index 000000000000..e0d7f2f61b41 --- /dev/null +++ b/site/public/v1/software/concraft/index.json @@ -0,0 +1,19 @@ +{ + "id": 1800, + "slug": "concraft", + "name": "Concraft", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084860" + ], + "created_at": "2026-07-10T10:12:40.189744", + "updated_at": "2026-07-10T10:12:40.189744", + "url": "/v1/software/concraft" +} diff --git a/site/public/v1/software/conda/index.json b/site/public/v1/software/conda/index.json new file mode 100644 index 000000000000..67302069fb89 --- /dev/null +++ b/site/public/v1/software/conda/index.json @@ -0,0 +1,26 @@ +{ + "id": 1801, + "slug": "conda", + "name": "Conda", + "release_date": null, + "developers": [ + "Kale Franz", + "Bryan Van de Ven" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Python" + ], + "licenses": [ + "3-clause BSD License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22907431" + ], + "created_at": "2026-07-10T10:12:40.189744", + "updated_at": "2026-07-10T10:12:40.189744", + "url": "/v1/software/conda" +} diff --git a/site/public/v1/software/condor/index.json b/site/public/v1/software/condor/index.json new file mode 100644 index 000000000000..b8906726a2f6 --- /dev/null +++ b/site/public/v1/software/condor/index.json @@ -0,0 +1,19 @@ +{ + "id": 1802, + "slug": "condor", + "name": "CONDOR", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087789" + ], + "created_at": "2026-07-10T10:12:40.189744", + "updated_at": "2026-07-10T10:12:40.189744", + "url": "/v1/software/condor" +} diff --git a/site/public/v1/software/conductor/index.json b/site/public/v1/software/conductor/index.json new file mode 100644 index 000000000000..bca2d55cce65 --- /dev/null +++ b/site/public/v1/software/conductor/index.json @@ -0,0 +1,19 @@ +{ + "id": 1803, + "slug": "conductor", + "name": "Conductor", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108795301" + ], + "created_at": "2026-07-10T10:12:40.191827", + "updated_at": "2026-07-10T10:12:40.191827", + "url": "/v1/software/conductor" +} diff --git a/site/public/v1/software/conedakor/index.json b/site/public/v1/software/conedakor/index.json new file mode 100644 index 000000000000..6e6957d88bdd --- /dev/null +++ b/site/public/v1/software/conedakor/index.json @@ -0,0 +1,22 @@ +{ + "id": 1804, + "slug": "conedakor", + "name": "ConedaKOR", + "release_date": null, + "developers": [ + "Moritz Schepp", + "Thorsten Wuebbena" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q42309254" + ], + "created_at": "2026-07-10T10:12:40.195944", + "updated_at": "2026-07-10T10:12:40.195944", + "url": "/v1/software/conedakor" +} diff --git a/site/public/v1/software/confer/index.json b/site/public/v1/software/confer/index.json new file mode 100644 index 000000000000..ce1418231824 --- /dev/null +++ b/site/public/v1/software/confer/index.json @@ -0,0 +1,21 @@ +{ + "id": 1805, + "slug": "confer", + "name": "CONFER", + "release_date": "1975-01-01", + "developers": [], + "publishers": [], + "operating_systems": [ + "Michigan Terminal System" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5013397" + ], + "created_at": "2026-07-10T10:12:40.199965", + "updated_at": "2026-07-10T10:12:40.199965", + "url": "/v1/software/confer" +} diff --git a/site/public/v1/software/confession-a-roman-catholic-app/index.json b/site/public/v1/software/confession-a-roman-catholic-app/index.json new file mode 100644 index 000000000000..d1c1457a6cdf --- /dev/null +++ b/site/public/v1/software/confession-a-roman-catholic-app/index.json @@ -0,0 +1,19 @@ +{ + "id": 1806, + "slug": "confession-a-roman-catholic-app", + "name": "Confession: A Roman Catholic App", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5159976" + ], + "created_at": "2026-07-10T10:12:40.203961", + "updated_at": "2026-07-10T10:12:40.203961", + "url": "/v1/software/confession-a-roman-catholic-app" +} diff --git a/site/public/v1/software/confide/index.json b/site/public/v1/software/confide/index.json new file mode 100644 index 000000000000..1a6a963d4a98 --- /dev/null +++ b/site/public/v1/software/confide/index.json @@ -0,0 +1,23 @@ +{ + "id": 1807, + "slug": "confide", + "name": "Confide", + "release_date": "2013-01-01", + "developers": [], + "publishers": [], + "operating_systems": [ + "iOS", + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28956988" + ], + "created_at": "2026-07-10T10:12:40.207854", + "updated_at": "2026-07-10T10:12:40.207854", + "url": "/v1/software/confide" +} diff --git a/site/public/v1/software/configshell/index.json b/site/public/v1/software/configshell/index.json new file mode 100644 index 000000000000..65471e7a2629 --- /dev/null +++ b/site/public/v1/software/configshell/index.json @@ -0,0 +1,21 @@ +{ + "id": 1808, + "slug": "configshell", + "name": "configshell", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Apache License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974784" + ], + "created_at": "2026-07-10T10:12:40.212442", + "updated_at": "2026-07-10T10:12:40.212442", + "url": "/v1/software/configshell" +} diff --git a/site/public/v1/software/conflict-catcher/index.json b/site/public/v1/software/conflict-catcher/index.json new file mode 100644 index 000000000000..e5ecfd1af714 --- /dev/null +++ b/site/public/v1/software/conflict-catcher/index.json @@ -0,0 +1,21 @@ +{ + "id": 1809, + "slug": "conflict-catcher", + "name": "Conflict Catcher", + "release_date": null, + "developers": [ + "Casady & Greene" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5160164" + ], + "created_at": "2026-07-10T10:12:40.212442", + "updated_at": "2026-07-10T10:12:40.212442", + "url": "/v1/software/conflict-catcher" +} diff --git a/site/public/v1/software/conflict-resolver/index.json b/site/public/v1/software/conflict-resolver/index.json new file mode 100644 index 000000000000..f13755d86a18 --- /dev/null +++ b/site/public/v1/software/conflict-resolver/index.json @@ -0,0 +1,21 @@ +{ + "id": 1810, + "slug": "conflict-resolver", + "name": "Conflict Resolver", + "release_date": null, + "developers": [ + "Apple Inc." + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3937041" + ], + "created_at": "2026-07-10T10:12:40.214035", + "updated_at": "2026-07-10T10:12:40.214035", + "url": "/v1/software/conflict-resolver" +} diff --git a/site/public/v1/software/conftool/index.json b/site/public/v1/software/conftool/index.json new file mode 100644 index 000000000000..cf6b86787d37 --- /dev/null +++ b/site/public/v1/software/conftool/index.json @@ -0,0 +1,19 @@ +{ + "id": 1811, + "slug": "conftool", + "name": "ConfTool", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084866" + ], + "created_at": "2026-07-10T10:12:40.214035", + "updated_at": "2026-07-10T10:12:40.214035", + "url": "/v1/software/conftool" +} diff --git a/site/public/v1/software/congree/index.json b/site/public/v1/software/congree/index.json new file mode 100644 index 000000000000..7ba47fccf1ff --- /dev/null +++ b/site/public/v1/software/congree/index.json @@ -0,0 +1,19 @@ +{ + "id": 1812, + "slug": "congree", + "name": "congree", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084867" + ], + "created_at": "2026-07-10T10:12:40.215688", + "updated_at": "2026-07-10T10:12:40.215688", + "url": "/v1/software/congree" +} diff --git a/site/public/v1/software/conn/index.json b/site/public/v1/software/conn/index.json new file mode 100644 index 000000000000..f5c4b186ecdc --- /dev/null +++ b/site/public/v1/software/conn/index.json @@ -0,0 +1,21 @@ +{ + "id": 1813, + "slug": "conn", + "name": "CONN", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22907443" + ], + "created_at": "2026-07-10T10:12:40.215688", + "updated_at": "2026-07-10T10:12:40.215688", + "url": "/v1/software/conn" +} diff --git a/site/public/v1/software/connect-direct/index.json b/site/public/v1/software/connect-direct/index.json new file mode 100644 index 000000000000..4786abf1a383 --- /dev/null +++ b/site/public/v1/software/connect-direct/index.json @@ -0,0 +1,19 @@ +{ + "id": 1814, + "slug": "connect-direct", + "name": "Connect:Direct", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q369085" + ], + "created_at": "2026-07-10T10:12:40.215688", + "updated_at": "2026-07-10T10:12:40.215688", + "url": "/v1/software/connect-direct" +} diff --git a/site/public/v1/software/connect360/index.json b/site/public/v1/software/connect360/index.json new file mode 100644 index 000000000000..a58e951cf01e --- /dev/null +++ b/site/public/v1/software/connect360/index.json @@ -0,0 +1,21 @@ +{ + "id": 1815, + "slug": "connect360", + "name": "Connect360", + "release_date": "2006-01-01", + "developers": [], + "publishers": [], + "operating_systems": [ + "macOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5161367" + ], + "created_at": "2026-07-10T10:12:40.215688", + "updated_at": "2026-07-10T10:12:40.215688", + "url": "/v1/software/connect360" +} diff --git a/site/public/v1/software/connectedtext/index.json b/site/public/v1/software/connectedtext/index.json new file mode 100644 index 000000000000..9b91ae67cd2d --- /dev/null +++ b/site/public/v1/software/connectedtext/index.json @@ -0,0 +1,19 @@ +{ + "id": 1816, + "slug": "connectedtext", + "name": "ConnectedText", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5161398" + ], + "created_at": "2026-07-10T10:12:40.215688", + "updated_at": "2026-07-10T10:12:40.215688", + "url": "/v1/software/connectedtext" +} diff --git a/site/public/v1/software/connectivity/index.json b/site/public/v1/software/connectivity/index.json new file mode 100644 index 000000000000..b75bb62b184d --- /dev/null +++ b/site/public/v1/software/connectivity/index.json @@ -0,0 +1,19 @@ +{ + "id": 1817, + "slug": "connectivity", + "name": "Connectivity", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76178912" + ], + "created_at": "2026-07-10T10:12:40.217337", + "updated_at": "2026-07-10T10:12:40.217337", + "url": "/v1/software/connectivity" +} diff --git a/site/public/v1/software/connman-gtk/index.json b/site/public/v1/software/connman-gtk/index.json new file mode 100644 index 000000000000..448d3288f9da --- /dev/null +++ b/site/public/v1/software/connman-gtk/index.json @@ -0,0 +1,19 @@ +{ + "id": 1818, + "slug": "connman-gtk", + "name": "connman-gtk", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065148" + ], + "created_at": "2026-07-10T10:12:40.217337", + "updated_at": "2026-07-10T10:12:40.217337", + "url": "/v1/software/connman-gtk" +} diff --git a/site/public/v1/software/connman-ui/index.json b/site/public/v1/software/connman-ui/index.json new file mode 100644 index 000000000000..b240d0c0a552 --- /dev/null +++ b/site/public/v1/software/connman-ui/index.json @@ -0,0 +1,21 @@ +{ + "id": 1819, + "slug": "connman-ui", + "name": "connman-ui", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "GNU General Public License, version 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974785" + ], + "created_at": "2026-07-10T10:12:40.217337", + "updated_at": "2026-07-10T10:12:40.217337", + "url": "/v1/software/connman-ui" +} diff --git a/site/public/v1/software/conquest/index.json b/site/public/v1/software/conquest/index.json new file mode 100644 index 000000000000..66696626ebe0 --- /dev/null +++ b/site/public/v1/software/conquest/index.json @@ -0,0 +1,19 @@ +{ + "id": 1820, + "slug": "conquest", + "name": "CONQUEST", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5013404" + ], + "created_at": "2026-07-10T10:12:40.218345", + "updated_at": "2026-07-10T10:12:40.218345", + "url": "/v1/software/conquest" +} diff --git a/site/public/v1/software/consed/index.json b/site/public/v1/software/consed/index.json new file mode 100644 index 000000000000..d8f9f2f3ee65 --- /dev/null +++ b/site/public/v1/software/consed/index.json @@ -0,0 +1,23 @@ +{ + "id": 1821, + "slug": "consed", + "name": "Consed", + "release_date": null, + "developers": [ + "David Gordon" + ], + "publishers": [], + "operating_systems": [ + "macOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5162789" + ], + "created_at": "2026-07-10T10:12:40.218345", + "updated_at": "2026-07-10T10:12:40.218345", + "url": "/v1/software/consed" +} diff --git a/site/public/v1/software/consexpression/index.json b/site/public/v1/software/consexpression/index.json new file mode 100644 index 000000000000..ffc5129a38a4 --- /dev/null +++ b/site/public/v1/software/consexpression/index.json @@ -0,0 +1,21 @@ +{ + "id": 1822, + "slug": "consexpression", + "name": "CONSEXPRESSION", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Python" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113304232" + ], + "created_at": "2026-07-10T10:12:40.218345", + "updated_at": "2026-07-10T10:12:40.218345", + "url": "/v1/software/consexpression" +} diff --git a/site/public/v1/software/console-bridge/index.json b/site/public/v1/software/console-bridge/index.json new file mode 100644 index 000000000000..1a44830e57ce --- /dev/null +++ b/site/public/v1/software/console-bridge/index.json @@ -0,0 +1,21 @@ +{ + "id": 1823, + "slug": "console-bridge", + "name": "console_bridge", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "3-clause BSD License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974786" + ], + "created_at": "2026-07-10T10:12:40.218345", + "updated_at": "2026-07-10T10:12:40.219344", + "url": "/v1/software/console-bridge" +} diff --git a/site/public/v1/software/console/index.json b/site/public/v1/software/console/index.json new file mode 100644 index 000000000000..a7f4a2331f3c --- /dev/null +++ b/site/public/v1/software/console/index.json @@ -0,0 +1,23 @@ +{ + "id": 1824, + "slug": "console", + "name": "Console", + "release_date": null, + "developers": [ + "Apple Inc." + ], + "publishers": [], + "operating_systems": [ + "macOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q290151" + ], + "created_at": "2026-07-10T10:12:40.219344", + "updated_at": "2026-07-10T10:12:40.219344", + "url": "/v1/software/console" +} diff --git a/site/public/v1/software/conspy/index.json b/site/public/v1/software/conspy/index.json new file mode 100644 index 000000000000..a5c7669179bd --- /dev/null +++ b/site/public/v1/software/conspy/index.json @@ -0,0 +1,19 @@ +{ + "id": 1825, + "slug": "conspy", + "name": "conspy", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62851477" + ], + "created_at": "2026-07-10T10:12:40.219344", + "updated_at": "2026-07-10T10:12:40.219344", + "url": "/v1/software/conspy" +} diff --git a/site/public/v1/software/constraint-report/index.json b/site/public/v1/software/constraint-report/index.json new file mode 100644 index 000000000000..3f31af5bccb3 --- /dev/null +++ b/site/public/v1/software/constraint-report/index.json @@ -0,0 +1,19 @@ +{ + "id": 1826, + "slug": "constraint-report", + "name": "constraint report", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q21754329" + ], + "created_at": "2026-07-10T10:12:40.219344", + "updated_at": "2026-07-10T10:12:40.219344", + "url": "/v1/software/constraint-report" +} diff --git a/site/public/v1/software/construction-and-analysis-of-distributed-processes/index.json b/site/public/v1/software/construction-and-analysis-of-distributed-processes/index.json new file mode 100644 index 000000000000..9f00bdfead96 --- /dev/null +++ b/site/public/v1/software/construction-and-analysis-of-distributed-processes/index.json @@ -0,0 +1,21 @@ +{ + "id": 1827, + "slug": "construction-and-analysis-of-distributed-processes", + "name": "Construction and Analysis of Distributed Processes", + "release_date": null, + "developers": [ + "Institut National de Recherche en Informatique et en Automatique" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5164442" + ], + "created_at": "2026-07-10T10:12:40.220350", + "updated_at": "2026-07-10T10:12:40.220350", + "url": "/v1/software/construction-and-analysis-of-distributed-processes" +} diff --git a/site/public/v1/software/constructor/index.json b/site/public/v1/software/constructor/index.json new file mode 100644 index 000000000000..c1f66f931260 --- /dev/null +++ b/site/public/v1/software/constructor/index.json @@ -0,0 +1,19 @@ +{ + "id": 1828, + "slug": "constructor", + "name": "Constructor", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5164513" + ], + "created_at": "2026-07-10T10:12:40.220350", + "updated_at": "2026-07-10T10:12:40.220350", + "url": "/v1/software/constructor" +} diff --git a/site/public/v1/software/contact-95/index.json b/site/public/v1/software/contact-95/index.json new file mode 100644 index 000000000000..8d20aec7472e --- /dev/null +++ b/site/public/v1/software/contact-95/index.json @@ -0,0 +1,19 @@ +{ + "id": 1829, + "slug": "contact-95", + "name": "Contact 95", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121631698" + ], + "created_at": "2026-07-10T10:12:40.221353", + "updated_at": "2026-07-10T10:12:40.221353", + "url": "/v1/software/contact-95" +} diff --git a/site/public/v1/software/contacts-exporter/index.json b/site/public/v1/software/contacts-exporter/index.json new file mode 100644 index 000000000000..49116716d7b4 --- /dev/null +++ b/site/public/v1/software/contacts-exporter/index.json @@ -0,0 +1,23 @@ +{ + "id": 1830, + "slug": "contacts-exporter", + "name": "Contacts Exporter", + "release_date": null, + "developers": [ + "C. M. Leal Ltda" + ], + "publishers": [], + "operating_systems": [ + "macOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138472530" + ], + "created_at": "2026-07-10T10:12:40.224430", + "updated_at": "2026-07-10T10:12:40.224430", + "url": "/v1/software/contacts-exporter" +} diff --git a/site/public/v1/software/contawords/index.json b/site/public/v1/software/contawords/index.json new file mode 100644 index 000000000000..f5e787ba362c --- /dev/null +++ b/site/public/v1/software/contawords/index.json @@ -0,0 +1,19 @@ +{ + "id": 1831, + "slug": "contawords", + "name": "ContaWords", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087790" + ], + "created_at": "2026-07-10T10:12:40.226429", + "updated_at": "2026-07-10T10:12:40.226429", + "url": "/v1/software/contawords" +} diff --git a/site/public/v1/software/contemplative-agent/index.json b/site/public/v1/software/contemplative-agent/index.json new file mode 100644 index 000000000000..99d9083bb22c --- /dev/null +++ b/site/public/v1/software/contemplative-agent/index.json @@ -0,0 +1,23 @@ +{ + "id": 1832, + "slug": "contemplative-agent", + "name": "Contemplative Agent", + "release_date": "2026-03-25", + "developers": [ + "Tatsuya Shimomoto" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140090187" + ], + "created_at": "2026-07-10T10:12:40.226429", + "updated_at": "2026-07-10T10:12:40.226429", + "url": "/v1/software/contemplative-agent" +} diff --git a/site/public/v1/software/content-distribution-mcp/index.json b/site/public/v1/software/content-distribution-mcp/index.json new file mode 100644 index 000000000000..9b537779327c --- /dev/null +++ b/site/public/v1/software/content-distribution-mcp/index.json @@ -0,0 +1,25 @@ +{ + "id": 1833, + "slug": "content-distribution-mcp", + "name": "content-distribution-mcp", + "release_date": null, + "developers": [ + "AutomateLab" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "TypeScript" + ], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139962037" + ], + "created_at": "2026-07-10T10:12:40.227438", + "updated_at": "2026-07-10T10:12:40.227438", + "url": "/v1/software/content-distribution-mcp" +} diff --git a/site/public/v1/software/contentdm/index.json b/site/public/v1/software/contentdm/index.json new file mode 100644 index 000000000000..39e4454eafb9 --- /dev/null +++ b/site/public/v1/software/contentdm/index.json @@ -0,0 +1,21 @@ +{ + "id": 1834, + "slug": "contentdm", + "name": "CONTENTdm", + "release_date": null, + "developers": [ + "OCLC, Inc." + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q61756741" + ], + "created_at": "2026-07-10T10:12:40.228436", + "updated_at": "2026-07-10T10:12:40.228436", + "url": "/v1/software/contentdm" +} diff --git a/site/public/v1/software/contextics/index.json b/site/public/v1/software/contextics/index.json new file mode 100644 index 000000000000..07343499016f --- /dev/null +++ b/site/public/v1/software/contextics/index.json @@ -0,0 +1,19 @@ +{ + "id": 1835, + "slug": "contextics", + "name": "Contextics", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q27204913" + ], + "created_at": "2026-07-10T10:12:40.229436", + "updated_at": "2026-07-10T10:12:40.229436", + "url": "/v1/software/contextics" +} diff --git a/site/public/v1/software/contextli/index.json b/site/public/v1/software/contextli/index.json new file mode 100644 index 000000000000..e94ba19998b8 --- /dev/null +++ b/site/public/v1/software/contextli/index.json @@ -0,0 +1,25 @@ +{ + "id": 1836, + "slug": "contextli", + "name": "Contextli", + "release_date": null, + "developers": [ + "Ertiqah LLC" + ], + "publishers": [], + "operating_systems": [ + "iOS", + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138859402" + ], + "created_at": "2026-07-10T10:12:40.229436", + "updated_at": "2026-07-10T10:12:40.229436", + "url": "/v1/software/contextli" +} diff --git a/site/public/v1/software/contig/index.json b/site/public/v1/software/contig/index.json new file mode 100644 index 000000000000..7af551c3f362 --- /dev/null +++ b/site/public/v1/software/contig/index.json @@ -0,0 +1,21 @@ +{ + "id": 1837, + "slug": "contig", + "name": "Contig", + "release_date": null, + "developers": [ + "Mark Russinovich" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5165209" + ], + "created_at": "2026-07-10T10:12:40.229436", + "updated_at": "2026-07-10T10:12:40.229436", + "url": "/v1/software/contig" +} diff --git a/site/public/v1/software/contiki-ng/index.json b/site/public/v1/software/contiki-ng/index.json new file mode 100644 index 000000000000..89d8b49628b6 --- /dev/null +++ b/site/public/v1/software/contiki-ng/index.json @@ -0,0 +1,24 @@ +{ + "id": 1838, + "slug": "contiki-ng", + "name": "Contiki-NG", + "release_date": null, + "developers": [ + "George Oikonomou", + "Simon Duquennoy" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "3-clause BSD License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125458900" + ], + "created_at": "2026-07-10T10:12:40.229436", + "updated_at": "2026-07-10T10:12:40.229436", + "url": "/v1/software/contiki-ng" +} diff --git a/site/public/v1/software/continoprova/index.json b/site/public/v1/software/continoprova/index.json new file mode 100644 index 000000000000..13879f3db128 --- /dev/null +++ b/site/public/v1/software/continoprova/index.json @@ -0,0 +1,19 @@ +{ + "id": 1839, + "slug": "continoprova", + "name": "ContinoProva", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60982260" + ], + "created_at": "2026-07-10T10:12:40.230436", + "updated_at": "2026-07-10T10:12:40.230436", + "url": "/v1/software/continoprova" +} diff --git a/site/public/v1/software/continuum/index.json b/site/public/v1/software/continuum/index.json new file mode 100644 index 000000000000..65468550e513 --- /dev/null +++ b/site/public/v1/software/continuum/index.json @@ -0,0 +1,21 @@ +{ + "id": 1840, + "slug": "continuum", + "name": "Continuum", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25414245" + ], + "created_at": "2026-07-10T10:12:40.230436", + "updated_at": "2026-07-10T10:12:40.230436", + "url": "/v1/software/continuum" +} diff --git a/site/public/v1/software/contract-management-software/index.json b/site/public/v1/software/contract-management-software/index.json new file mode 100644 index 000000000000..72a010b04792 --- /dev/null +++ b/site/public/v1/software/contract-management-software/index.json @@ -0,0 +1,19 @@ +{ + "id": 1841, + "slug": "contract-management-software", + "name": "Contract management software", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25324549" + ], + "created_at": "2026-07-10T10:12:40.231436", + "updated_at": "2026-07-10T10:12:40.231436", + "url": "/v1/software/contract-management-software" +} diff --git a/site/public/v1/software/contractexpress/index.json b/site/public/v1/software/contractexpress/index.json new file mode 100644 index 000000000000..fc9f2991b200 --- /dev/null +++ b/site/public/v1/software/contractexpress/index.json @@ -0,0 +1,19 @@ +{ + "id": 1842, + "slug": "contractexpress", + "name": "ContractExpress", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5165643" + ], + "created_at": "2026-07-10T10:12:40.231436", + "updated_at": "2026-07-10T10:12:40.231436", + "url": "/v1/software/contractexpress" +} diff --git a/site/public/v1/software/contraption-maker/index.json b/site/public/v1/software/contraption-maker/index.json new file mode 100644 index 000000000000..a810985a45a7 --- /dev/null +++ b/site/public/v1/software/contraption-maker/index.json @@ -0,0 +1,22 @@ +{ + "id": 1843, + "slug": "contraption-maker", + "name": "Contraption Maker", + "release_date": "2014-07-07", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [ + "casual game", + "simulation video game" + ], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q89408853" + ], + "created_at": "2026-07-10T10:12:40.231436", + "updated_at": "2026-07-10T10:12:40.231436", + "url": "/v1/software/contraption-maker" +} diff --git a/site/public/v1/software/contrast/index.json b/site/public/v1/software/contrast/index.json new file mode 100644 index 000000000000..d578dbafb03f --- /dev/null +++ b/site/public/v1/software/contrast/index.json @@ -0,0 +1,19 @@ +{ + "id": 1844, + "slug": "contrast", + "name": "Contrast", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135913365" + ], + "created_at": "2026-07-10T10:12:40.231436", + "updated_at": "2026-07-10T10:12:40.231436", + "url": "/v1/software/contrast" +} diff --git a/site/public/v1/software/contrastive-language-image-pre-training/index.json b/site/public/v1/software/contrastive-language-image-pre-training/index.json new file mode 100644 index 000000000000..bf20dafa6542 --- /dev/null +++ b/site/public/v1/software/contrastive-language-image-pre-training/index.json @@ -0,0 +1,21 @@ +{ + "id": 1845, + "slug": "contrastive-language-image-pre-training", + "name": "Contrastive Language-Image Pre-Training", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124169113" + ], + "created_at": "2026-07-10T10:12:40.232534", + "updated_at": "2026-07-10T10:12:40.232534", + "url": "/v1/software/contrastive-language-image-pre-training" +} diff --git a/site/public/v1/software/control-block/index.json b/site/public/v1/software/control-block/index.json new file mode 100644 index 000000000000..74d791fd96e8 --- /dev/null +++ b/site/public/v1/software/control-block/index.json @@ -0,0 +1,19 @@ +{ + "id": 1846, + "slug": "control-block", + "name": "Control block", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137369468" + ], + "created_at": "2026-07-10T10:12:40.232534", + "updated_at": "2026-07-10T10:12:40.232534", + "url": "/v1/software/control-block" +} diff --git a/site/public/v1/software/control-center/index.json b/site/public/v1/software/control-center/index.json new file mode 100644 index 000000000000..cd428ba488d9 --- /dev/null +++ b/site/public/v1/software/control-center/index.json @@ -0,0 +1,21 @@ +{ + "id": 1847, + "slug": "control-center", + "name": "Control Center", + "release_date": null, + "developers": [ + "Apple Inc." + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16971518" + ], + "created_at": "2026-07-10T10:12:40.232534", + "updated_at": "2026-07-10T10:12:40.232534", + "url": "/v1/software/control-center" +} diff --git a/site/public/v1/software/control-m-workload-automation/index.json b/site/public/v1/software/control-m-workload-automation/index.json new file mode 100644 index 000000000000..072dfc248885 --- /dev/null +++ b/site/public/v1/software/control-m-workload-automation/index.json @@ -0,0 +1,21 @@ +{ + "id": 1848, + "slug": "control-m-workload-automation", + "name": "Control-M Workload Automation", + "release_date": null, + "developers": [ + "BMC Software" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62061186" + ], + "created_at": "2026-07-10T10:12:40.233529", + "updated_at": "2026-07-10T10:12:40.233529", + "url": "/v1/software/control-m-workload-automation" +} diff --git a/site/public/v1/software/controlup/index.json b/site/public/v1/software/controlup/index.json new file mode 100644 index 000000000000..3b6227a6c380 --- /dev/null +++ b/site/public/v1/software/controlup/index.json @@ -0,0 +1,19 @@ +{ + "id": 1849, + "slug": "controlup", + "name": "ControlUp", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140131154" + ], + "created_at": "2026-07-10T10:12:40.233529", + "updated_at": "2026-07-10T10:12:40.233529", + "url": "/v1/software/controlup" +} diff --git a/site/public/v1/software/contropedia/index.json b/site/public/v1/software/contropedia/index.json new file mode 100644 index 000000000000..bb238720fd9c --- /dev/null +++ b/site/public/v1/software/contropedia/index.json @@ -0,0 +1,19 @@ +{ + "id": 1850, + "slug": "contropedia", + "name": "Contropedia", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087791" + ], + "created_at": "2026-07-10T10:12:40.233529", + "updated_at": "2026-07-10T10:12:40.233529", + "url": "/v1/software/contropedia" +} diff --git a/site/public/v1/software/contub/index.json b/site/public/v1/software/contub/index.json new file mode 100644 index 000000000000..cfb63eefe92b --- /dev/null +++ b/site/public/v1/software/contub/index.json @@ -0,0 +1,23 @@ +{ + "id": 1851, + "slug": "contub", + "name": "CoNTub", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Java" + ], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5137542" + ], + "created_at": "2026-07-10T10:12:40.234505", + "updated_at": "2026-07-10T10:12:40.234505", + "url": "/v1/software/contub" +} diff --git a/site/public/v1/software/convverse-ai/index.json b/site/public/v1/software/convverse-ai/index.json new file mode 100644 index 000000000000..5d39129a241a --- /dev/null +++ b/site/public/v1/software/convverse-ai/index.json @@ -0,0 +1,19 @@ +{ + "id": 1852, + "slug": "convverse-ai", + "name": "convverse.ai", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140458529" + ], + "created_at": "2026-07-10T10:12:40.234505", + "updated_at": "2026-07-10T10:12:40.234505", + "url": "/v1/software/convverse-ai" +} diff --git a/site/public/v1/software/coolnovo/index.json b/site/public/v1/software/coolnovo/index.json new file mode 100644 index 000000000000..a88d9bf511de --- /dev/null +++ b/site/public/v1/software/coolnovo/index.json @@ -0,0 +1,19 @@ +{ + "id": 1853, + "slug": "coolnovo", + "name": "CoolNovo", + "release_date": "2009-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1051547" + ], + "created_at": "2026-07-10T10:12:40.234505", + "updated_at": "2026-07-10T10:12:40.234505", + "url": "/v1/software/coolnovo" +} diff --git a/site/public/v1/software/coolspeech/index.json b/site/public/v1/software/coolspeech/index.json new file mode 100644 index 000000000000..4861cbbe7858 --- /dev/null +++ b/site/public/v1/software/coolspeech/index.json @@ -0,0 +1,21 @@ +{ + "id": 1854, + "slug": "coolspeech", + "name": "CoolSpeech", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5167234" + ], + "created_at": "2026-07-10T10:12:40.235500", + "updated_at": "2026-07-10T10:12:40.235500", + "url": "/v1/software/coolspeech" +} diff --git a/site/public/v1/software/cooltalk/index.json b/site/public/v1/software/cooltalk/index.json new file mode 100644 index 000000000000..76b37d65aad8 --- /dev/null +++ b/site/public/v1/software/cooltalk/index.json @@ -0,0 +1,19 @@ +{ + "id": 1855, + "slug": "cooltalk", + "name": "CoolTalk", + "release_date": "1996-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5167238" + ], + "created_at": "2026-07-10T10:12:40.235500", + "updated_at": "2026-07-10T10:12:40.235500", + "url": "/v1/software/cooltalk" +} diff --git a/site/public/v1/software/cooltext/index.json b/site/public/v1/software/cooltext/index.json new file mode 100644 index 000000000000..db19b2d7873f --- /dev/null +++ b/site/public/v1/software/cooltext/index.json @@ -0,0 +1,19 @@ +{ + "id": 1856, + "slug": "cooltext", + "name": "CoolText", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084869" + ], + "created_at": "2026-07-10T10:12:40.236700", + "updated_at": "2026-07-10T10:12:40.236700", + "url": "/v1/software/cooltext" +} diff --git a/site/public/v1/software/cooperating-validity-checker/index.json b/site/public/v1/software/cooperating-validity-checker/index.json new file mode 100644 index 000000000000..b006817c2ae5 --- /dev/null +++ b/site/public/v1/software/cooperating-validity-checker/index.json @@ -0,0 +1,19 @@ +{ + "id": 1857, + "slug": "cooperating-validity-checker", + "name": "Cooperating Validity Checker", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123808036" + ], + "created_at": "2026-07-10T10:12:40.236700", + "updated_at": "2026-07-10T10:12:40.236700", + "url": "/v1/software/cooperating-validity-checker" +} diff --git a/site/public/v1/software/copbrazil-core-v1-0425/index.json b/site/public/v1/software/copbrazil-core-v1-0425/index.json new file mode 100644 index 000000000000..d519ba7dda94 --- /dev/null +++ b/site/public/v1/software/copbrazil-core-v1-0425/index.json @@ -0,0 +1,21 @@ +{ + "id": 1858, + "slug": "copbrazil-core-v1-0425", + "name": "COPBRAZIL_CORE::v1.0425", + "release_date": null, + "developers": [ + "Prado Leandro" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135491318" + ], + "created_at": "2026-07-10T10:12:40.236700", + "updated_at": "2026-07-10T10:12:40.236700", + "url": "/v1/software/copbrazil-core-v1-0425" +} diff --git a/site/public/v1/software/copper-project/index.json b/site/public/v1/software/copper-project/index.json new file mode 100644 index 000000000000..c0322cbdbc01 --- /dev/null +++ b/site/public/v1/software/copper-project/index.json @@ -0,0 +1,19 @@ +{ + "id": 1859, + "slug": "copper-project", + "name": "Copper Project", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5168762" + ], + "created_at": "2026-07-10T10:12:40.238024", + "updated_at": "2026-07-10T10:12:40.238024", + "url": "/v1/software/copper-project" +} diff --git a/site/public/v1/software/copssh/index.json b/site/public/v1/software/copssh/index.json new file mode 100644 index 000000000000..a78b6347b31c --- /dev/null +++ b/site/public/v1/software/copssh/index.json @@ -0,0 +1,19 @@ +{ + "id": 1860, + "slug": "copssh", + "name": "CopSSH", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5168999" + ], + "created_at": "2026-07-10T10:12:40.238024", + "updated_at": "2026-07-10T10:12:40.238024", + "url": "/v1/software/copssh" +} diff --git a/site/public/v1/software/copy9/index.json b/site/public/v1/software/copy9/index.json new file mode 100644 index 000000000000..209c1a5daa22 --- /dev/null +++ b/site/public/v1/software/copy9/index.json @@ -0,0 +1,19 @@ +{ + "id": 1861, + "slug": "copy9", + "name": "Copy9", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2996882" + ], + "created_at": "2026-07-10T10:12:40.239028", + "updated_at": "2026-07-10T10:12:40.239028", + "url": "/v1/software/copy9" +} diff --git a/site/public/v1/software/copycat/index.json b/site/public/v1/software/copycat/index.json new file mode 100644 index 000000000000..116dd16e248e --- /dev/null +++ b/site/public/v1/software/copycat/index.json @@ -0,0 +1,21 @@ +{ + "id": 1862, + "slug": "copycat", + "name": "Copycat", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Common Lisp" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2996887" + ], + "created_at": "2026-07-10T10:12:40.239028", + "updated_at": "2026-07-10T10:12:40.239028", + "url": "/v1/software/copycat" +} diff --git a/site/public/v1/software/core-animation/index.json b/site/public/v1/software/core-animation/index.json new file mode 100644 index 000000000000..afc2b6cf3017 --- /dev/null +++ b/site/public/v1/software/core-animation/index.json @@ -0,0 +1,21 @@ +{ + "id": 1863, + "slug": "core-animation", + "name": "Core Animation", + "release_date": null, + "developers": [ + "Apple Inc." + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1132468" + ], + "created_at": "2026-07-10T10:12:40.239028", + "updated_at": "2026-07-10T10:12:40.239028", + "url": "/v1/software/core-animation" +} diff --git a/site/public/v1/software/core-data/index.json b/site/public/v1/software/core-data/index.json new file mode 100644 index 000000000000..23e6f98f9cfb --- /dev/null +++ b/site/public/v1/software/core-data/index.json @@ -0,0 +1,21 @@ +{ + "id": 1864, + "slug": "core-data", + "name": "Core Data", + "release_date": null, + "developers": [ + "Apple Inc." + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2146830" + ], + "created_at": "2026-07-10T10:12:40.240036", + "updated_at": "2026-07-10T10:12:40.240036", + "url": "/v1/software/core-data" +} diff --git a/site/public/v1/software/core-fonts-for-the-web/index.json b/site/public/v1/software/core-fonts-for-the-web/index.json new file mode 100644 index 000000000000..c93f198dd708 --- /dev/null +++ b/site/public/v1/software/core-fonts-for-the-web/index.json @@ -0,0 +1,19 @@ +{ + "id": 1865, + "slug": "core-fonts-for-the-web", + "name": "Core fonts for the Web", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1132493" + ], + "created_at": "2026-07-10T10:12:40.240036", + "updated_at": "2026-07-10T10:12:40.240036", + "url": "/v1/software/core-fonts-for-the-web" +} diff --git a/site/public/v1/software/core-foundation/index.json b/site/public/v1/software/core-foundation/index.json new file mode 100644 index 000000000000..df68f1f48c9c --- /dev/null +++ b/site/public/v1/software/core-foundation/index.json @@ -0,0 +1,21 @@ +{ + "id": 1866, + "slug": "core-foundation", + "name": "Core Foundation", + "release_date": null, + "developers": [ + "Apple Inc." + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3693449" + ], + "created_at": "2026-07-10T10:12:40.240036", + "updated_at": "2026-07-10T10:12:40.240036", + "url": "/v1/software/core-foundation" +} diff --git a/site/public/v1/software/core-ftp/index.json b/site/public/v1/software/core-ftp/index.json new file mode 100644 index 000000000000..da3dc5c2bd65 --- /dev/null +++ b/site/public/v1/software/core-ftp/index.json @@ -0,0 +1,19 @@ +{ + "id": 1867, + "slug": "core-ftp", + "name": "Core FTP", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16951619" + ], + "created_at": "2026-07-10T10:12:40.241137", + "updated_at": "2026-07-10T10:12:40.241137", + "url": "/v1/software/core-ftp" +} diff --git a/site/public/v1/software/core-temp/index.json b/site/public/v1/software/core-temp/index.json new file mode 100644 index 000000000000..e7b2bd48b331 --- /dev/null +++ b/site/public/v1/software/core-temp/index.json @@ -0,0 +1,23 @@ +{ + "id": 1868, + "slug": "core-temp", + "name": "Core Temp", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25473477" + ], + "created_at": "2026-07-10T10:12:40.241137", + "updated_at": "2026-07-10T10:12:40.241137", + "url": "/v1/software/core-temp" +} diff --git a/site/public/v1/software/corel-mediaone/index.json b/site/public/v1/software/corel-mediaone/index.json new file mode 100644 index 000000000000..934863893a4f --- /dev/null +++ b/site/public/v1/software/corel-mediaone/index.json @@ -0,0 +1,19 @@ +{ + "id": 1869, + "slug": "corel-mediaone", + "name": "Corel MediaOne", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2290507" + ], + "created_at": "2026-07-10T10:12:40.241137", + "updated_at": "2026-07-10T10:12:40.241137", + "url": "/v1/software/corel-mediaone" +} diff --git a/site/public/v1/software/corel-presentations-11/index.json b/site/public/v1/software/corel-presentations-11/index.json new file mode 100644 index 000000000000..6425992e92c2 --- /dev/null +++ b/site/public/v1/software/corel-presentations-11/index.json @@ -0,0 +1,19 @@ +{ + "id": 1870, + "slug": "corel-presentations-11", + "name": "Corel Presentations 11", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q64857783" + ], + "created_at": "2026-07-10T10:12:40.242120", + "updated_at": "2026-07-10T10:12:40.242120", + "url": "/v1/software/corel-presentations-11" +} diff --git a/site/public/v1/software/corel-presentations-7/index.json b/site/public/v1/software/corel-presentations-7/index.json new file mode 100644 index 000000000000..8002eb6db261 --- /dev/null +++ b/site/public/v1/software/corel-presentations-7/index.json @@ -0,0 +1,21 @@ +{ + "id": 1871, + "slug": "corel-presentations-7", + "name": "Corel Presentations 7", + "release_date": null, + "developers": [ + "Corel" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q64762578" + ], + "created_at": "2026-07-10T10:12:40.242120", + "updated_at": "2026-07-10T10:12:40.242120", + "url": "/v1/software/corel-presentations-7" +} diff --git a/site/public/v1/software/corel-presentations/index.json b/site/public/v1/software/corel-presentations/index.json new file mode 100644 index 000000000000..f24bada64860 --- /dev/null +++ b/site/public/v1/software/corel-presentations/index.json @@ -0,0 +1,21 @@ +{ + "id": 1872, + "slug": "corel-presentations", + "name": "Corel Presentations", + "release_date": null, + "developers": [ + "Corel" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1132534" + ], + "created_at": "2026-07-10T10:12:40.242120", + "updated_at": "2026-07-10T10:12:40.242120", + "url": "/v1/software/corel-presentations" +} diff --git a/site/public/v1/software/corel-print-office-2000/index.json b/site/public/v1/software/corel-print-office-2000/index.json new file mode 100644 index 000000000000..378a4336961e --- /dev/null +++ b/site/public/v1/software/corel-print-office-2000/index.json @@ -0,0 +1,24 @@ +{ + "id": 1873, + "slug": "corel-print-office-2000", + "name": "Corel Print Office 2000", + "release_date": null, + "developers": [ + "Corel" + ], + "publishers": [], + "operating_systems": [ + "Windows NT 4.0", + "Windows 95" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q56612717" + ], + "created_at": "2026-07-10T10:12:40.243086", + "updated_at": "2026-07-10T10:12:40.243086", + "url": "/v1/software/corel-print-office-2000" +} diff --git a/site/public/v1/software/corel-r-a-v-e/index.json b/site/public/v1/software/corel-r-a-v-e/index.json new file mode 100644 index 000000000000..882fff1727da --- /dev/null +++ b/site/public/v1/software/corel-r-a-v-e/index.json @@ -0,0 +1,21 @@ +{ + "id": 1874, + "slug": "corel-r-a-v-e", + "name": "Corel R.A.V.E.", + "release_date": null, + "developers": [ + "Corel" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2997221" + ], + "created_at": "2026-07-10T10:12:40.243086", + "updated_at": "2026-07-10T10:12:40.243086", + "url": "/v1/software/corel-r-a-v-e" +} diff --git a/site/public/v1/software/corel-ventura/index.json b/site/public/v1/software/corel-ventura/index.json new file mode 100644 index 000000000000..67a561441393 --- /dev/null +++ b/site/public/v1/software/corel-ventura/index.json @@ -0,0 +1,25 @@ +{ + "id": 1875, + "slug": "corel-ventura", + "name": "Corel Ventura", + "release_date": "1986-01-01", + "developers": [ + "Corel" + ], + "publishers": [], + "operating_systems": [ + "Graphics Environment Manager", + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1132555" + ], + "created_at": "2026-07-10T10:12:40.243086", + "updated_at": "2026-07-10T10:12:40.243086", + "url": "/v1/software/corel-ventura" +} diff --git a/site/public/v1/software/cork-pos/index.json b/site/public/v1/software/cork-pos/index.json new file mode 100644 index 000000000000..7b6f8a066011 --- /dev/null +++ b/site/public/v1/software/cork-pos/index.json @@ -0,0 +1,19 @@ +{ + "id": 1876, + "slug": "cork-pos", + "name": "Cork POS", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139986024" + ], + "created_at": "2026-07-10T10:12:40.244153", + "updated_at": "2026-07-10T10:12:40.244153", + "url": "/v1/software/cork-pos" +} diff --git a/site/public/v1/software/cornell-notes-pdf-generator/index.json b/site/public/v1/software/cornell-notes-pdf-generator/index.json new file mode 100644 index 000000000000..5a844ae6e350 --- /dev/null +++ b/site/public/v1/software/cornell-notes-pdf-generator/index.json @@ -0,0 +1,19 @@ +{ + "id": 1877, + "slug": "cornell-notes-pdf-generator", + "name": "Cornell Notes PDF Generator", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084870" + ], + "created_at": "2026-07-10T10:12:40.244153", + "updated_at": "2026-07-10T10:12:40.244153", + "url": "/v1/software/cornell-notes-pdf-generator" +} diff --git a/site/public/v1/software/cornerstone/index.json b/site/public/v1/software/cornerstone/index.json new file mode 100644 index 000000000000..430d294a54d7 --- /dev/null +++ b/site/public/v1/software/cornerstone/index.json @@ -0,0 +1,21 @@ +{ + "id": 1878, + "slug": "cornerstone", + "name": "Cornerstone", + "release_date": null, + "developers": [ + "Infocom" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5171657" + ], + "created_at": "2026-07-10T10:12:40.244153", + "updated_at": "2026-07-10T10:12:40.244153", + "url": "/v1/software/cornerstone" +} diff --git a/site/public/v1/software/coronamelder/index.json b/site/public/v1/software/coronamelder/index.json new file mode 100644 index 000000000000..2373cd11beaa --- /dev/null +++ b/site/public/v1/software/coronamelder/index.json @@ -0,0 +1,19 @@ +{ + "id": 1879, + "slug": "coronamelder", + "name": "CoronaMelder", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q98435134" + ], + "created_at": "2026-07-10T10:12:40.244153", + "updated_at": "2026-07-10T10:12:40.244153", + "url": "/v1/software/coronamelder" +} diff --git a/site/public/v1/software/corpkit/index.json b/site/public/v1/software/corpkit/index.json new file mode 100644 index 000000000000..00adfb743fbf --- /dev/null +++ b/site/public/v1/software/corpkit/index.json @@ -0,0 +1,19 @@ +{ + "id": 1880, + "slug": "corpkit", + "name": "Corpkit", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087793" + ], + "created_at": "2026-07-10T10:12:40.245142", + "updated_at": "2026-07-10T10:12:40.245142", + "url": "/v1/software/corpkit" +} diff --git a/site/public/v1/software/corporify/index.json b/site/public/v1/software/corporify/index.json new file mode 100644 index 000000000000..f8a8d96e2e7e --- /dev/null +++ b/site/public/v1/software/corporify/index.json @@ -0,0 +1,19 @@ +{ + "id": 1881, + "slug": "corporify", + "name": "Corporify", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136468994" + ], + "created_at": "2026-07-10T10:12:40.245142", + "updated_at": "2026-07-10T10:12:40.245142", + "url": "/v1/software/corporify" +} diff --git a/site/public/v1/software/corpusexplorer/index.json b/site/public/v1/software/corpusexplorer/index.json new file mode 100644 index 000000000000..24dbe8238d2c --- /dev/null +++ b/site/public/v1/software/corpusexplorer/index.json @@ -0,0 +1,19 @@ +{ + "id": 1882, + "slug": "corpusexplorer", + "name": "CorpusExplorer", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084871" + ], + "created_at": "2026-07-10T10:12:40.246148", + "updated_at": "2026-07-10T10:12:40.246148", + "url": "/v1/software/corpusexplorer" +} diff --git a/site/public/v1/software/corpussearch-2/index.json b/site/public/v1/software/corpussearch-2/index.json new file mode 100644 index 000000000000..6c938e9910ff --- /dev/null +++ b/site/public/v1/software/corpussearch-2/index.json @@ -0,0 +1,19 @@ +{ + "id": 1883, + "slug": "corpussearch-2", + "name": "CorpusSearch 2", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084875" + ], + "created_at": "2026-07-10T10:12:40.246148", + "updated_at": "2026-07-10T10:12:40.246148", + "url": "/v1/software/corpussearch-2" +} diff --git a/site/public/v1/software/corpussearch/index.json b/site/public/v1/software/corpussearch/index.json new file mode 100644 index 000000000000..4e6ef2d72ab5 --- /dev/null +++ b/site/public/v1/software/corpussearch/index.json @@ -0,0 +1,19 @@ +{ + "id": 1884, + "slug": "corpussearch", + "name": "CorpusSearch", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084872" + ], + "created_at": "2026-07-10T10:12:40.246148", + "updated_at": "2026-07-10T10:12:40.246148", + "url": "/v1/software/corpussearch" +} diff --git a/site/public/v1/software/correlizer/index.json b/site/public/v1/software/correlizer/index.json new file mode 100644 index 000000000000..579b2d15bf37 --- /dev/null +++ b/site/public/v1/software/correlizer/index.json @@ -0,0 +1,19 @@ +{ + "id": 1885, + "slug": "correlizer", + "name": "Correlizer", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4036560" + ], + "created_at": "2026-07-10T10:12:40.247129", + "updated_at": "2026-07-10T10:12:40.247129", + "url": "/v1/software/correlizer" +} diff --git a/site/public/v1/software/corsika/index.json b/site/public/v1/software/corsika/index.json new file mode 100644 index 000000000000..a3499908166e --- /dev/null +++ b/site/public/v1/software/corsika/index.json @@ -0,0 +1,19 @@ +{ + "id": 1886, + "slug": "corsika", + "name": "CORSIKA", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5013483" + ], + "created_at": "2026-07-10T10:12:40.247129", + "updated_at": "2026-07-10T10:12:40.247129", + "url": "/v1/software/corsika" +} diff --git a/site/public/v1/software/corsim/index.json b/site/public/v1/software/corsim/index.json new file mode 100644 index 000000000000..1147f1da7f00 --- /dev/null +++ b/site/public/v1/software/corsim/index.json @@ -0,0 +1,19 @@ +{ + "id": 1887, + "slug": "corsim", + "name": "CORSIM", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5013487" + ], + "created_at": "2026-07-10T10:12:40.248090", + "updated_at": "2026-07-10T10:12:40.248090", + "url": "/v1/software/corsim" +} diff --git a/site/public/v1/software/cosign-single-sign-on/index.json b/site/public/v1/software/cosign-single-sign-on/index.json new file mode 100644 index 000000000000..02b812596dd3 --- /dev/null +++ b/site/public/v1/software/cosign-single-sign-on/index.json @@ -0,0 +1,19 @@ +{ + "id": 1888, + "slug": "cosign-single-sign-on", + "name": "CoSign single sign on", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5137549" + ], + "created_at": "2026-07-10T10:12:40.248090", + "updated_at": "2026-07-10T10:12:40.248090", + "url": "/v1/software/cosign-single-sign-on" +} diff --git a/site/public/v1/software/cosm/index.json b/site/public/v1/software/cosm/index.json new file mode 100644 index 000000000000..3180878b96e7 --- /dev/null +++ b/site/public/v1/software/cosm/index.json @@ -0,0 +1,21 @@ +{ + "id": 1889, + "slug": "cosm", + "name": "Cosm", + "release_date": "1995-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Apache License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5173966" + ], + "created_at": "2026-07-10T10:12:40.248090", + "updated_at": "2026-07-10T10:12:40.248090", + "url": "/v1/software/cosm" +} diff --git a/site/public/v1/software/cosmology-home/index.json b/site/public/v1/software/cosmology-home/index.json new file mode 100644 index 000000000000..792bb57d9823 --- /dev/null +++ b/site/public/v1/software/cosmology-home/index.json @@ -0,0 +1,19 @@ +{ + "id": 1890, + "slug": "cosmology-home", + "name": "Cosmology@Home", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1136163" + ], + "created_at": "2026-07-10T10:12:40.248090", + "updated_at": "2026-07-10T10:12:40.248090", + "url": "/v1/software/cosmology-home" +} diff --git a/site/public/v1/software/cosmos/index.json b/site/public/v1/software/cosmos/index.json new file mode 100644 index 000000000000..b801e36add56 --- /dev/null +++ b/site/public/v1/software/cosmos/index.json @@ -0,0 +1,19 @@ +{ + "id": 1891, + "slug": "cosmos", + "name": "Cosmos", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111518088" + ], + "created_at": "2026-07-10T10:12:40.249128", + "updated_at": "2026-07-10T10:12:40.249128", + "url": "/v1/software/cosmos" +} diff --git a/site/public/v1/software/cosmotool/index.json b/site/public/v1/software/cosmotool/index.json new file mode 100644 index 000000000000..ea6f63740303 --- /dev/null +++ b/site/public/v1/software/cosmotool/index.json @@ -0,0 +1,19 @@ +{ + "id": 1892, + "slug": "cosmotool", + "name": "CosmoTool", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084876" + ], + "created_at": "2026-07-10T10:12:40.249128", + "updated_at": "2026-07-10T10:12:40.249128", + "url": "/v1/software/cosmotool" +} diff --git a/site/public/v1/software/couchbase-lite/index.json b/site/public/v1/software/couchbase-lite/index.json new file mode 100644 index 000000000000..849095420184 --- /dev/null +++ b/site/public/v1/software/couchbase-lite/index.json @@ -0,0 +1,21 @@ +{ + "id": 1893, + "slug": "couchbase-lite", + "name": "Couchbase Lite", + "release_date": null, + "developers": [ + "Couchbase, Inc." + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25348952" + ], + "created_at": "2026-07-10T10:12:40.249128", + "updated_at": "2026-07-10T10:12:40.250088", + "url": "/v1/software/couchbase-lite" +} diff --git a/site/public/v1/software/couenne/index.json b/site/public/v1/software/couenne/index.json new file mode 100644 index 000000000000..97a93a2d2f37 --- /dev/null +++ b/site/public/v1/software/couenne/index.json @@ -0,0 +1,19 @@ +{ + "id": 1894, + "slug": "couenne", + "name": "Couenne", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22907515" + ], + "created_at": "2026-07-10T10:12:40.250088", + "updated_at": "2026-07-10T10:12:40.250088", + "url": "/v1/software/couenne" +} diff --git a/site/public/v1/software/counterclaim-skill-pack/index.json b/site/public/v1/software/counterclaim-skill-pack/index.json new file mode 100644 index 000000000000..c76ec11ad48b --- /dev/null +++ b/site/public/v1/software/counterclaim-skill-pack/index.json @@ -0,0 +1,21 @@ +{ + "id": 1895, + "slug": "counterclaim-skill-pack", + "name": "Counterclaim (skill pack)", + "release_date": null, + "developers": [ + "Mudd Ventures" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140466808" + ], + "created_at": "2026-07-10T10:12:40.250088", + "updated_at": "2026-07-10T10:12:40.250088", + "url": "/v1/software/counterclaim-skill-pack" +} diff --git a/site/public/v1/software/counterparty/index.json b/site/public/v1/software/counterparty/index.json new file mode 100644 index 000000000000..cbbf306a68fe --- /dev/null +++ b/site/public/v1/software/counterparty/index.json @@ -0,0 +1,21 @@ +{ + "id": 1896, + "slug": "counterparty", + "name": "Counterparty", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Python" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17001970" + ], + "created_at": "2026-07-10T10:12:40.250088", + "updated_at": "2026-07-10T10:12:40.250088", + "url": "/v1/software/counterparty" +} diff --git a/site/public/v1/software/counterspy/index.json b/site/public/v1/software/counterspy/index.json new file mode 100644 index 000000000000..1f0f36adcae1 --- /dev/null +++ b/site/public/v1/software/counterspy/index.json @@ -0,0 +1,23 @@ +{ + "id": 1897, + "slug": "counterspy", + "name": "Counterspy", + "release_date": null, + "developers": [ + "Sunbelt Software" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5177037" + ], + "created_at": "2026-07-10T10:12:40.251086", + "updated_at": "2026-07-10T10:12:40.251086", + "url": "/v1/software/counterspy" +} diff --git a/site/public/v1/software/couple/index.json b/site/public/v1/software/couple/index.json new file mode 100644 index 000000000000..73f03cff4c51 --- /dev/null +++ b/site/public/v1/software/couple/index.json @@ -0,0 +1,19 @@ +{ + "id": 1898, + "slug": "couple", + "name": "Couple", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5178009" + ], + "created_at": "2026-07-10T10:12:40.251086", + "updated_at": "2026-07-10T10:12:40.251086", + "url": "/v1/software/couple" +} diff --git a/site/public/v1/software/courier/index.json b/site/public/v1/software/courier/index.json new file mode 100644 index 000000000000..3e99251db3d1 --- /dev/null +++ b/site/public/v1/software/courier/index.json @@ -0,0 +1,21 @@ +{ + "id": 1899, + "slug": "courier", + "name": "Courier", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5178135" + ], + "created_at": "2026-07-10T10:12:40.251086", + "updated_at": "2026-07-10T10:12:40.251086", + "url": "/v1/software/courier" +} diff --git a/site/public/v1/software/cover-clustering-with-overlaps/index.json b/site/public/v1/software/cover-clustering-with-overlaps/index.json new file mode 100644 index 000000000000..ebb86aa9b543 --- /dev/null +++ b/site/public/v1/software/cover-clustering-with-overlaps/index.json @@ -0,0 +1,23 @@ +{ + "id": 1900, + "slug": "cover-clustering-with-overlaps", + "name": "COveR: clustering with overlaps", + "release_date": "2017-11-06", + "developers": [ + "Guillaume Cleuziou" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "GNU General Public License, version 2.0 or later" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138660581" + ], + "created_at": "2026-07-10T10:12:40.252095", + "updated_at": "2026-07-10T10:12:40.252095", + "url": "/v1/software/cover-clustering-with-overlaps" +} diff --git a/site/public/v1/software/cover-flow/index.json b/site/public/v1/software/cover-flow/index.json new file mode 100644 index 000000000000..bfe94e8669c7 --- /dev/null +++ b/site/public/v1/software/cover-flow/index.json @@ -0,0 +1,19 @@ +{ + "id": 1901, + "slug": "cover-flow", + "name": "Cover Flow", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1138099" + ], + "created_at": "2026-07-10T10:12:40.252095", + "updated_at": "2026-07-10T10:12:40.252095", + "url": "/v1/software/cover-flow" +} diff --git a/site/public/v1/software/coverme/index.json b/site/public/v1/software/coverme/index.json new file mode 100644 index 000000000000..59d5967abd62 --- /dev/null +++ b/site/public/v1/software/coverme/index.json @@ -0,0 +1,19 @@ +{ + "id": 1902, + "slug": "coverme", + "name": "CoverMe", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28449264" + ], + "created_at": "2026-07-10T10:12:40.252095", + "updated_at": "2026-07-10T10:12:40.252095", + "url": "/v1/software/coverme" +} diff --git a/site/public/v1/software/cowo/index.json b/site/public/v1/software/cowo/index.json new file mode 100644 index 000000000000..45c773fccccf --- /dev/null +++ b/site/public/v1/software/cowo/index.json @@ -0,0 +1,19 @@ +{ + "id": 1903, + "slug": "cowo", + "name": "Cowo", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084877" + ], + "created_at": "2026-07-10T10:12:40.253101", + "updated_at": "2026-07-10T10:12:40.253101", + "url": "/v1/software/cowo" +} diff --git a/site/public/v1/software/cozi-central/index.json b/site/public/v1/software/cozi-central/index.json new file mode 100644 index 000000000000..c232f893a611 --- /dev/null +++ b/site/public/v1/software/cozi-central/index.json @@ -0,0 +1,21 @@ +{ + "id": 1904, + "slug": "cozi-central", + "name": "Cozi Central", + "release_date": null, + "developers": [ + "Cozi" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5180133" + ], + "created_at": "2026-07-10T10:12:40.253101", + "updated_at": "2026-07-10T10:12:40.253101", + "url": "/v1/software/cozi-central" +} diff --git a/site/public/v1/software/cozy/index.json b/site/public/v1/software/cozy/index.json new file mode 100644 index 000000000000..92355250ac07 --- /dev/null +++ b/site/public/v1/software/cozy/index.json @@ -0,0 +1,19 @@ +{ + "id": 1905, + "slug": "cozy", + "name": "Cozy", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q19559831" + ], + "created_at": "2026-07-10T10:12:40.253101", + "updated_at": "2026-07-10T10:12:40.253101", + "url": "/v1/software/cozy" +} diff --git a/site/public/v1/software/cpachecker/index.json b/site/public/v1/software/cpachecker/index.json new file mode 100644 index 000000000000..54ce69f78e0e --- /dev/null +++ b/site/public/v1/software/cpachecker/index.json @@ -0,0 +1,19 @@ +{ + "id": 1906, + "slug": "cpachecker", + "name": "CPAchecker", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5013609" + ], + "created_at": "2026-07-10T10:12:40.254029", + "updated_at": "2026-07-10T10:12:40.254029", + "url": "/v1/software/cpachecker" +} diff --git a/site/public/v1/software/cpc-tool/index.json b/site/public/v1/software/cpc-tool/index.json new file mode 100644 index 000000000000..e7077fae36b7 --- /dev/null +++ b/site/public/v1/software/cpc-tool/index.json @@ -0,0 +1,26 @@ +{ + "id": 1907, + "slug": "cpc-tool", + "name": "CPC Tool", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "SunOS", + "UnixWare", + "IRIX", + "FreeBSD", + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q61504972" + ], + "created_at": "2026-07-10T10:12:40.254029", + "updated_at": "2026-07-10T10:12:40.254029", + "url": "/v1/software/cpc-tool" +} diff --git a/site/public/v1/software/cpce/index.json b/site/public/v1/software/cpce/index.json new file mode 100644 index 000000000000..32960c969d09 --- /dev/null +++ b/site/public/v1/software/cpce/index.json @@ -0,0 +1,19 @@ +{ + "id": 1908, + "slug": "cpce", + "name": "CPCe", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5013625" + ], + "created_at": "2026-07-10T10:12:40.254029", + "updated_at": "2026-07-10T10:12:40.254029", + "url": "/v1/software/cpce" +} diff --git a/site/public/v1/software/cpdf/index.json b/site/public/v1/software/cpdf/index.json new file mode 100644 index 000000000000..702274006aa1 --- /dev/null +++ b/site/public/v1/software/cpdf/index.json @@ -0,0 +1,19 @@ +{ + "id": 1909, + "slug": "cpdf", + "name": "cpdf", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63064910" + ], + "created_at": "2026-07-10T10:12:40.255029", + "updated_at": "2026-07-10T10:12:40.255029", + "url": "/v1/software/cpdf" +} diff --git a/site/public/v1/software/cports/index.json b/site/public/v1/software/cports/index.json new file mode 100644 index 000000000000..fdd192c3645b --- /dev/null +++ b/site/public/v1/software/cports/index.json @@ -0,0 +1,21 @@ +{ + "id": 1910, + "slug": "cports", + "name": "Cports", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "2-clause BSD License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116697679" + ], + "created_at": "2026-07-10T10:12:40.255029", + "updated_at": "2026-07-10T10:12:40.255029", + "url": "/v1/software/cports" +} diff --git a/site/public/v1/software/cppdepend/index.json b/site/public/v1/software/cppdepend/index.json new file mode 100644 index 000000000000..5d736acd1829 --- /dev/null +++ b/site/public/v1/software/cppdepend/index.json @@ -0,0 +1,19 @@ +{ + "id": 1911, + "slug": "cppdepend", + "name": "Cppdepend", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25111292" + ], + "created_at": "2026-07-10T10:12:40.255029", + "updated_at": "2026-07-10T10:12:40.255029", + "url": "/v1/software/cppdepend" +} diff --git a/site/public/v1/software/cpudyn/index.json b/site/public/v1/software/cpudyn/index.json new file mode 100644 index 000000000000..9a1eb27a84b0 --- /dev/null +++ b/site/public/v1/software/cpudyn/index.json @@ -0,0 +1,21 @@ +{ + "id": 1912, + "slug": "cpudyn", + "name": "Cpudyn", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "GNU General Public License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5790483" + ], + "created_at": "2026-07-10T10:12:40.256034", + "updated_at": "2026-07-10T10:12:40.256034", + "url": "/v1/software/cpudyn" +} diff --git a/site/public/v1/software/cpulimit/index.json b/site/public/v1/software/cpulimit/index.json new file mode 100644 index 000000000000..d86d04b41731 --- /dev/null +++ b/site/public/v1/software/cpulimit/index.json @@ -0,0 +1,21 @@ +{ + "id": 1913, + "slug": "cpulimit", + "name": "cpulimit", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "GNU General Public License, version 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127418892" + ], + "created_at": "2026-07-10T10:12:40.256034", + "updated_at": "2026-07-10T10:12:40.256034", + "url": "/v1/software/cpulimit" +} diff --git a/site/public/v1/software/cpuminer-opt/index.json b/site/public/v1/software/cpuminer-opt/index.json new file mode 100644 index 000000000000..c90aefc88b12 --- /dev/null +++ b/site/public/v1/software/cpuminer-opt/index.json @@ -0,0 +1,19 @@ +{ + "id": 1914, + "slug": "cpuminer-opt", + "name": "cpuminer-opt", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065266" + ], + "created_at": "2026-07-10T10:12:40.256034", + "updated_at": "2026-07-10T10:12:40.256034", + "url": "/v1/software/cpuminer-opt" +} diff --git a/site/public/v1/software/cqpweb/index.json b/site/public/v1/software/cqpweb/index.json new file mode 100644 index 000000000000..9522975682d9 --- /dev/null +++ b/site/public/v1/software/cqpweb/index.json @@ -0,0 +1,19 @@ +{ + "id": 1915, + "slug": "cqpweb", + "name": "CQPweb", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084878" + ], + "created_at": "2026-07-10T10:12:40.256034", + "updated_at": "2026-07-10T10:12:40.256034", + "url": "/v1/software/cqpweb" +} diff --git a/site/public/v1/software/cracks-software/index.json b/site/public/v1/software/cracks-software/index.json new file mode 100644 index 000000000000..50781a9fadc4 --- /dev/null +++ b/site/public/v1/software/cracks-software/index.json @@ -0,0 +1,19 @@ +{ + "id": 1916, + "slug": "cracks-software", + "name": "Cracks (software)", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139829587" + ], + "created_at": "2026-07-10T10:12:40.257038", + "updated_at": "2026-07-10T10:12:40.257038", + "url": "/v1/software/cracks-software" +} diff --git a/site/public/v1/software/craftercms/index.json b/site/public/v1/software/craftercms/index.json new file mode 100644 index 000000000000..ba9434ffe375 --- /dev/null +++ b/site/public/v1/software/craftercms/index.json @@ -0,0 +1,21 @@ +{ + "id": 1917, + "slug": "craftercms", + "name": "CrafterCMS", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Java" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q39057240" + ], + "created_at": "2026-07-10T10:12:40.257038", + "updated_at": "2026-07-10T10:12:40.257038", + "url": "/v1/software/craftercms" +} diff --git a/site/public/v1/software/craftstudio/index.json b/site/public/v1/software/craftstudio/index.json new file mode 100644 index 000000000000..39e0ae0c26e7 --- /dev/null +++ b/site/public/v1/software/craftstudio/index.json @@ -0,0 +1,19 @@ +{ + "id": 1918, + "slug": "craftstudio", + "name": "CraftStudio", + "release_date": "2011-06-12", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105044267" + ], + "created_at": "2026-07-10T10:12:40.258077", + "updated_at": "2026-07-10T10:12:40.258077", + "url": "/v1/software/craftstudio" +} diff --git a/site/public/v1/software/cram/index.json b/site/public/v1/software/cram/index.json new file mode 100644 index 000000000000..ee5a7100972c --- /dev/null +++ b/site/public/v1/software/cram/index.json @@ -0,0 +1,22 @@ +{ + "id": 1919, + "slug": "cram", + "name": "Cram", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "iOS", + "macOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5181806" + ], + "created_at": "2026-07-10T10:12:40.258077", + "updated_at": "2026-07-10T10:12:40.258077", + "url": "/v1/software/cram" +} diff --git a/site/public/v1/software/crane/index.json b/site/public/v1/software/crane/index.json new file mode 100644 index 000000000000..10b6ff502fa9 --- /dev/null +++ b/site/public/v1/software/crane/index.json @@ -0,0 +1,21 @@ +{ + "id": 1920, + "slug": "crane", + "name": "CRANE", + "release_date": null, + "developers": [ + "Rho Impact" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138806904" + ], + "created_at": "2026-07-10T10:12:40.258077", + "updated_at": "2026-07-10T10:12:40.258077", + "url": "/v1/software/crane" +} diff --git a/site/public/v1/software/cranelift/index.json b/site/public/v1/software/cranelift/index.json new file mode 100644 index 000000000000..fe3e14799062 --- /dev/null +++ b/site/public/v1/software/cranelift/index.json @@ -0,0 +1,21 @@ +{ + "id": 1921, + "slug": "cranelift", + "name": "Cranelift", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Apache License v2.0 with LLVM Exceptions" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116745226" + ], + "created_at": "2026-07-10T10:12:40.258077", + "updated_at": "2026-07-10T10:12:40.258077", + "url": "/v1/software/cranelift" +} diff --git a/site/public/v1/software/crank-storyboard-suite/index.json b/site/public/v1/software/crank-storyboard-suite/index.json new file mode 100644 index 000000000000..324b4361f05b --- /dev/null +++ b/site/public/v1/software/crank-storyboard-suite/index.json @@ -0,0 +1,19 @@ +{ + "id": 1922, + "slug": "crank-storyboard-suite", + "name": "Crank Storyboard Suite", + "release_date": "2010-05-14", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5182178" + ], + "created_at": "2026-07-10T10:12:40.259076", + "updated_at": "2026-07-10T10:12:40.259076", + "url": "/v1/software/crank-storyboard-suite" +} diff --git a/site/public/v1/software/crash-reporter/index.json b/site/public/v1/software/crash-reporter/index.json new file mode 100644 index 000000000000..edf26c0f446f --- /dev/null +++ b/site/public/v1/software/crash-reporter/index.json @@ -0,0 +1,23 @@ +{ + "id": 1923, + "slug": "crash-reporter", + "name": "Crash Reporter", + "release_date": null, + "developers": [ + "Apple Inc." + ], + "publishers": [], + "operating_systems": [ + "macOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q290399" + ], + "created_at": "2026-07-10T10:12:40.259076", + "updated_at": "2026-07-10T10:12:40.259076", + "url": "/v1/software/crash-reporter" +} diff --git a/site/public/v1/software/crashme/index.json b/site/public/v1/software/crashme/index.json new file mode 100644 index 000000000000..5fa4faaa84d0 --- /dev/null +++ b/site/public/v1/software/crashme/index.json @@ -0,0 +1,21 @@ +{ + "id": 1924, + "slug": "crashme", + "name": "crashme", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "GNU Lesser General Public License, version 2.1 or later" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11194970" + ], + "created_at": "2026-07-10T10:12:40.259076", + "updated_at": "2026-07-10T10:12:40.259076", + "url": "/v1/software/crashme" +} diff --git a/site/public/v1/software/crawdad-text-analysis-software/index.json b/site/public/v1/software/crawdad-text-analysis-software/index.json new file mode 100644 index 000000000000..214c9bffe52a --- /dev/null +++ b/site/public/v1/software/crawdad-text-analysis-software/index.json @@ -0,0 +1,19 @@ +{ + "id": 1925, + "slug": "crawdad-text-analysis-software", + "name": "Crawdad Text Analysis Software", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084879" + ], + "created_at": "2026-07-10T10:12:40.260124", + "updated_at": "2026-07-10T10:12:40.260124", + "url": "/v1/software/crawdad-text-analysis-software" +} diff --git a/site/public/v1/software/crayola-art-studio/index.json b/site/public/v1/software/crayola-art-studio/index.json new file mode 100644 index 000000000000..6be3f59eeace --- /dev/null +++ b/site/public/v1/software/crayola-art-studio/index.json @@ -0,0 +1,21 @@ +{ + "id": 1926, + "slug": "crayola-art-studio", + "name": "Crayola Art Studio", + "release_date": "1994-01-01", + "developers": [ + "Micrografx" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q56612239" + ], + "created_at": "2026-07-10T10:12:40.260124", + "updated_at": "2026-07-10T10:12:40.260124", + "url": "/v1/software/crayola-art-studio" +} diff --git a/site/public/v1/software/crazytalk/index.json b/site/public/v1/software/crazytalk/index.json new file mode 100644 index 000000000000..48cddeb0fd70 --- /dev/null +++ b/site/public/v1/software/crazytalk/index.json @@ -0,0 +1,21 @@ +{ + "id": 1927, + "slug": "crazytalk", + "name": "Crazytalk", + "release_date": null, + "developers": [ + "Reallusion" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16959238" + ], + "created_at": "2026-07-10T10:12:40.260124", + "updated_at": "2026-07-10T10:12:40.260124", + "url": "/v1/software/crazytalk" +} diff --git a/site/public/v1/software/creacode-sip-application-server/index.json b/site/public/v1/software/creacode-sip-application-server/index.json new file mode 100644 index 000000000000..fd7e7c242c93 --- /dev/null +++ b/site/public/v1/software/creacode-sip-application-server/index.json @@ -0,0 +1,19 @@ +{ + "id": 1928, + "slug": "creacode-sip-application-server", + "name": "Creacode SIP Application Server", + "release_date": "2006-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22907538" + ], + "created_at": "2026-07-10T10:12:40.260124", + "updated_at": "2026-07-10T10:12:40.260124", + "url": "/v1/software/creacode-sip-application-server" +} diff --git a/site/public/v1/software/creatio/index.json b/site/public/v1/software/creatio/index.json new file mode 100644 index 000000000000..5905d5e4c2b4 --- /dev/null +++ b/site/public/v1/software/creatio/index.json @@ -0,0 +1,22 @@ +{ + "id": 1929, + "slug": "creatio", + "name": "Creatio", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4034719" + ], + "created_at": "2026-07-10T10:12:40.261094", + "updated_at": "2026-07-10T10:12:40.261094", + "url": "/v1/software/creatio" +} diff --git a/site/public/v1/software/creator/index.json b/site/public/v1/software/creator/index.json new file mode 100644 index 000000000000..0209a205eb1b --- /dev/null +++ b/site/public/v1/software/creator/index.json @@ -0,0 +1,19 @@ +{ + "id": 1930, + "slug": "creator", + "name": "Creator", + "release_date": "1993-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5183603" + ], + "created_at": "2026-07-10T10:12:40.261094", + "updated_at": "2026-07-10T10:12:40.261094", + "url": "/v1/software/creator" +} diff --git a/site/public/v1/software/credit/index.json b/site/public/v1/software/credit/index.json new file mode 100644 index 000000000000..453048f03eae --- /dev/null +++ b/site/public/v1/software/credit/index.json @@ -0,0 +1,21 @@ +{ + "id": 1931, + "slug": "credit", + "name": "Credit", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [ + "hypertext" + ], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q12764228" + ], + "created_at": "2026-07-10T10:12:40.262097", + "updated_at": "2026-07-10T10:12:40.262097", + "url": "/v1/software/credit" +} diff --git a/site/public/v1/software/credyt/index.json b/site/public/v1/software/credyt/index.json new file mode 100644 index 000000000000..d761502b4f85 --- /dev/null +++ b/site/public/v1/software/credyt/index.json @@ -0,0 +1,23 @@ +{ + "id": 1932, + "slug": "credyt", + "name": "Credyt", + "release_date": null, + "developers": [ + "Credyt" + ], + "publishers": [], + "operating_systems": [ + "cloud computing" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138976474" + ], + "created_at": "2026-07-10T10:12:40.262097", + "updated_at": "2026-07-10T10:12:40.262097", + "url": "/v1/software/credyt" +} diff --git a/site/public/v1/software/creo-elements-view/index.json b/site/public/v1/software/creo-elements-view/index.json new file mode 100644 index 000000000000..aed953cd16a2 --- /dev/null +++ b/site/public/v1/software/creo-elements-view/index.json @@ -0,0 +1,23 @@ +{ + "id": 1933, + "slug": "creo-elements-view", + "name": "Creo Elements/View", + "release_date": "1997-01-01", + "developers": [ + "Parametric Technology Corporation" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5184179" + ], + "created_at": "2026-07-10T10:12:40.262097", + "updated_at": "2026-07-10T10:12:40.262097", + "url": "/v1/software/creo-elements-view" +} diff --git a/site/public/v1/software/crewai/index.json b/site/public/v1/software/crewai/index.json new file mode 100644 index 000000000000..397932d6f3e0 --- /dev/null +++ b/site/public/v1/software/crewai/index.json @@ -0,0 +1,19 @@ +{ + "id": 1934, + "slug": "crewai", + "name": "CrewAI", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139761640" + ], + "created_at": "2026-07-10T10:12:40.262097", + "updated_at": "2026-07-10T10:12:40.262097", + "url": "/v1/software/crewai" +} diff --git a/site/public/v1/software/cricketdraw/index.json b/site/public/v1/software/cricketdraw/index.json new file mode 100644 index 000000000000..b93ea92dce55 --- /dev/null +++ b/site/public/v1/software/cricketdraw/index.json @@ -0,0 +1,19 @@ +{ + "id": 1935, + "slug": "cricketdraw", + "name": "CricketDraw", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5184936" + ], + "created_at": "2026-07-10T10:12:40.263134", + "updated_at": "2026-07-10T10:12:40.263134", + "url": "/v1/software/cricketdraw" +} diff --git a/site/public/v1/software/cricketgraph/index.json b/site/public/v1/software/cricketgraph/index.json new file mode 100644 index 000000000000..b8747a312254 --- /dev/null +++ b/site/public/v1/software/cricketgraph/index.json @@ -0,0 +1,19 @@ +{ + "id": 1936, + "slug": "cricketgraph", + "name": "CricketGraph", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5184938" + ], + "created_at": "2026-07-10T10:12:40.263134", + "updated_at": "2026-07-10T10:12:40.263134", + "url": "/v1/software/cricketgraph" +} diff --git a/site/public/v1/software/crimeanalyst/index.json b/site/public/v1/software/crimeanalyst/index.json new file mode 100644 index 000000000000..7287dbea9fed --- /dev/null +++ b/site/public/v1/software/crimeanalyst/index.json @@ -0,0 +1,21 @@ +{ + "id": 1937, + "slug": "crimeanalyst", + "name": "CrimeAnalyst", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5185151" + ], + "created_at": "2026-07-10T10:12:40.263134", + "updated_at": "2026-07-10T10:12:40.263134", + "url": "/v1/software/crimeanalyst" +} diff --git a/site/public/v1/software/crimeview/index.json b/site/public/v1/software/crimeview/index.json new file mode 100644 index 000000000000..57a362b8edfa --- /dev/null +++ b/site/public/v1/software/crimeview/index.json @@ -0,0 +1,19 @@ +{ + "id": 1938, + "slug": "crimeview", + "name": "CrimeView", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5185154" + ], + "created_at": "2026-07-10T10:12:40.264106", + "updated_at": "2026-07-10T10:12:40.264106", + "url": "/v1/software/crimeview" +} diff --git a/site/public/v1/software/critical-care-nursing-simulation/index.json b/site/public/v1/software/critical-care-nursing-simulation/index.json new file mode 100644 index 000000000000..e63a3f8e97ce --- /dev/null +++ b/site/public/v1/software/critical-care-nursing-simulation/index.json @@ -0,0 +1,19 @@ +{ + "id": 1939, + "slug": "critical-care-nursing-simulation", + "name": "critical care nursing simulation", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115339624" + ], + "created_at": "2026-07-10T10:12:40.264106", + "updated_at": "2026-07-10T10:12:40.264106", + "url": "/v1/software/critical-care-nursing-simulation" +} diff --git a/site/public/v1/software/criticaliq/index.json b/site/public/v1/software/criticaliq/index.json new file mode 100644 index 000000000000..29ee4dd4fbae --- /dev/null +++ b/site/public/v1/software/criticaliq/index.json @@ -0,0 +1,21 @@ +{ + "id": 1940, + "slug": "criticaliq", + "name": "CriticalIQ", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138507665" + ], + "created_at": "2026-07-10T10:12:40.264106", + "updated_at": "2026-07-10T10:12:40.264106", + "url": "/v1/software/criticaliq" +} diff --git a/site/public/v1/software/critterding/index.json b/site/public/v1/software/critterding/index.json new file mode 100644 index 000000000000..12b300288f62 --- /dev/null +++ b/site/public/v1/software/critterding/index.json @@ -0,0 +1,21 @@ +{ + "id": 1941, + "slug": "critterding", + "name": "Critterding", + "release_date": "2005-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [ + "artificial life" + ], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16248386" + ], + "created_at": "2026-07-10T10:12:40.264106", + "updated_at": "2026-07-10T10:12:40.264106", + "url": "/v1/software/critterding" +} diff --git a/site/public/v1/software/crlibm/index.json b/site/public/v1/software/crlibm/index.json new file mode 100644 index 000000000000..bed9b58940d5 --- /dev/null +++ b/site/public/v1/software/crlibm/index.json @@ -0,0 +1,21 @@ +{ + "id": 1942, + "slug": "crlibm", + "name": "CRlibm", + "release_date": null, + "developers": [ + "Florent de Dinechin" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117845970" + ], + "created_at": "2026-07-10T10:12:40.265116", + "updated_at": "2026-07-10T10:12:40.265116", + "url": "/v1/software/crlibm" +} diff --git a/site/public/v1/software/croixleur-sigma/index.json b/site/public/v1/software/croixleur-sigma/index.json new file mode 100644 index 000000000000..484f7e21f0a7 --- /dev/null +++ b/site/public/v1/software/croixleur-sigma/index.json @@ -0,0 +1,25 @@ +{ + "id": 1943, + "slug": "croixleur-sigma", + "name": "Croixleur Sigma", + "release_date": "2014-04-30", + "developers": [], + "publishers": [ + "Playism" + ], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [ + "action game", + "beat 'em up", + "hack and slash" + ], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q74250432" + ], + "created_at": "2026-07-10T10:12:40.265116", + "updated_at": "2026-07-10T10:12:40.265116", + "url": "/v1/software/croixleur-sigma" +} diff --git a/site/public/v1/software/cronus-emulator/index.json b/site/public/v1/software/cronus-emulator/index.json new file mode 100644 index 000000000000..c0c804d018cf --- /dev/null +++ b/site/public/v1/software/cronus-emulator/index.json @@ -0,0 +1,19 @@ +{ + "id": 1944, + "slug": "cronus-emulator", + "name": "Cronus-Emulator", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10261795" + ], + "created_at": "2026-07-10T10:12:40.266030", + "updated_at": "2026-07-10T10:12:40.266030", + "url": "/v1/software/cronus-emulator" +} diff --git a/site/public/v1/software/cropgui/index.json b/site/public/v1/software/cropgui/index.json new file mode 100644 index 000000000000..ab08bb9313e8 --- /dev/null +++ b/site/public/v1/software/cropgui/index.json @@ -0,0 +1,21 @@ +{ + "id": 1945, + "slug": "cropgui", + "name": "cropgui", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "GNU General Public License, version 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974792" + ], + "created_at": "2026-07-10T10:12:40.266030", + "updated_at": "2026-07-10T10:12:40.266030", + "url": "/v1/software/cropgui" +} diff --git a/site/public/v1/software/croquet-project/index.json b/site/public/v1/software/croquet-project/index.json new file mode 100644 index 000000000000..279ebf361525 --- /dev/null +++ b/site/public/v1/software/croquet-project/index.json @@ -0,0 +1,25 @@ +{ + "id": 1946, + "slug": "croquet-project", + "name": "Croquet Project", + "release_date": null, + "developers": [ + "Alan Kay" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Squeak" + ], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3567305" + ], + "created_at": "2026-07-10T10:12:40.266030", + "updated_at": "2026-07-10T10:12:40.266030", + "url": "/v1/software/croquet-project" +} diff --git a/site/public/v1/software/cross-crossdj/index.json b/site/public/v1/software/cross-crossdj/index.json new file mode 100644 index 000000000000..b893f47576fe --- /dev/null +++ b/site/public/v1/software/cross-crossdj/index.json @@ -0,0 +1,19 @@ +{ + "id": 1947, + "slug": "cross-crossdj", + "name": "Cross/CrossDJ", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5188211" + ], + "created_at": "2026-07-10T10:12:40.266030", + "updated_at": "2026-07-10T10:12:40.266030", + "url": "/v1/software/cross-crossdj" +} diff --git a/site/public/v1/software/crossconvert/index.json b/site/public/v1/software/crossconvert/index.json new file mode 100644 index 000000000000..5ebe0aecc498 --- /dev/null +++ b/site/public/v1/software/crossconvert/index.json @@ -0,0 +1,23 @@ +{ + "id": 1948, + "slug": "crossconvert", + "name": "CrossConvert", + "release_date": null, + "developers": [ + "C. M. Leal Ltda" + ], + "publishers": [], + "operating_systems": [ + "macOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138472623" + ], + "created_at": "2026-07-10T10:12:40.267086", + "updated_at": "2026-07-10T10:12:40.267086", + "url": "/v1/software/crossconvert" +} diff --git a/site/public/v1/software/crossdev/index.json b/site/public/v1/software/crossdev/index.json new file mode 100644 index 000000000000..5af577b591df --- /dev/null +++ b/site/public/v1/software/crossdev/index.json @@ -0,0 +1,19 @@ +{ + "id": 1949, + "slug": "crossdev", + "name": "crossdev", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974793" + ], + "created_at": "2026-07-10T10:12:40.267086", + "updated_at": "2026-07-10T10:12:40.267086", + "url": "/v1/software/crossdev" +} diff --git a/site/public/v1/software/crossdos/index.json b/site/public/v1/software/crossdos/index.json new file mode 100644 index 000000000000..9c712464faba --- /dev/null +++ b/site/public/v1/software/crossdos/index.json @@ -0,0 +1,19 @@ +{ + "id": 1950, + "slug": "crossdos", + "name": "CrossDOS", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4036695" + ], + "created_at": "2026-07-10T10:12:40.267086", + "updated_at": "2026-07-10T10:12:40.267086", + "url": "/v1/software/crossdos" +} diff --git a/site/public/v1/software/crossfilter/index.json b/site/public/v1/software/crossfilter/index.json new file mode 100644 index 000000000000..9fdfe879a802 --- /dev/null +++ b/site/public/v1/software/crossfilter/index.json @@ -0,0 +1,19 @@ +{ + "id": 1951, + "slug": "crossfilter", + "name": "Crossfilter", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084882" + ], + "created_at": "2026-07-10T10:12:40.268213", + "updated_at": "2026-07-10T10:12:40.268213", + "url": "/v1/software/crossfilter" +} diff --git a/site/public/v1/software/crossftp/index.json b/site/public/v1/software/crossftp/index.json new file mode 100644 index 000000000000..84a5cb043cab --- /dev/null +++ b/site/public/v1/software/crossftp/index.json @@ -0,0 +1,19 @@ +{ + "id": 1952, + "slug": "crossftp", + "name": "CrossFTP", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16971542" + ], + "created_at": "2026-07-10T10:12:40.268213", + "updated_at": "2026-07-10T10:12:40.268213", + "url": "/v1/software/crossftp" +} diff --git a/site/public/v1/software/crossguid/index.json b/site/public/v1/software/crossguid/index.json new file mode 100644 index 000000000000..0c5d01f96235 --- /dev/null +++ b/site/public/v1/software/crossguid/index.json @@ -0,0 +1,21 @@ +{ + "id": 1953, + "slug": "crossguid", + "name": "crossguid", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974794" + ], + "created_at": "2026-07-10T10:12:40.268213", + "updated_at": "2026-07-10T10:12:40.268213", + "url": "/v1/software/crossguid" +} diff --git a/site/public/v1/software/crossig/index.json b/site/public/v1/software/crossig/index.json new file mode 100644 index 000000000000..f1ebf0c988e7 --- /dev/null +++ b/site/public/v1/software/crossig/index.json @@ -0,0 +1,19 @@ +{ + "id": 1954, + "slug": "crossig", + "name": "Crossig", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18620194" + ], + "created_at": "2026-07-10T10:12:40.268213", + "updated_at": "2026-07-10T10:12:40.268213", + "url": "/v1/software/crossig" +} diff --git a/site/public/v1/software/crowd-kit/index.json b/site/public/v1/software/crowd-kit/index.json new file mode 100644 index 000000000000..0d662dab5a38 --- /dev/null +++ b/site/public/v1/software/crowd-kit/index.json @@ -0,0 +1,19 @@ +{ + "id": 1955, + "slug": "crowd-kit", + "name": "crowd-kit", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127485286" + ], + "created_at": "2026-07-10T10:12:40.269222", + "updated_at": "2026-07-10T10:12:40.269222", + "url": "/v1/software/crowd-kit" +} diff --git a/site/public/v1/software/crowd/index.json b/site/public/v1/software/crowd/index.json new file mode 100644 index 000000000000..56b317a56d0f --- /dev/null +++ b/site/public/v1/software/crowd/index.json @@ -0,0 +1,21 @@ +{ + "id": 1956, + "slug": "crowd", + "name": "Crowd", + "release_date": null, + "developers": [ + "Atlassian" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q56759798" + ], + "created_at": "2026-07-10T10:12:40.269222", + "updated_at": "2026-07-10T10:12:40.269222", + "url": "/v1/software/crowd" +} diff --git a/site/public/v1/software/crowdmap/index.json b/site/public/v1/software/crowdmap/index.json new file mode 100644 index 000000000000..dd0d6bb12ed4 --- /dev/null +++ b/site/public/v1/software/crowdmap/index.json @@ -0,0 +1,19 @@ +{ + "id": 1957, + "slug": "crowdmap", + "name": "Crowdmap", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084883" + ], + "created_at": "2026-07-10T10:12:40.270226", + "updated_at": "2026-07-10T10:12:40.270226", + "url": "/v1/software/crowdmap" +} diff --git a/site/public/v1/software/crowdsource/index.json b/site/public/v1/software/crowdsource/index.json new file mode 100644 index 000000000000..d3644bacdf2c --- /dev/null +++ b/site/public/v1/software/crowdsource/index.json @@ -0,0 +1,19 @@ +{ + "id": 1958, + "slug": "crowdsource", + "name": "Crowdsource", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q56346787" + ], + "created_at": "2026-07-10T10:12:40.270226", + "updated_at": "2026-07-10T10:12:40.270226", + "url": "/v1/software/crowdsource" +} diff --git a/site/public/v1/software/crucible-q5189793/index.json b/site/public/v1/software/crucible-q5189793/index.json new file mode 100644 index 000000000000..37a190e06533 --- /dev/null +++ b/site/public/v1/software/crucible-q5189793/index.json @@ -0,0 +1,19 @@ +{ + "id": 1959, + "slug": "crucible-q5189793", + "name": "Crucible", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5189793" + ], + "created_at": "2026-07-10T10:12:40.270226", + "updated_at": "2026-07-10T10:12:40.270226", + "url": "/v1/software/crucible-q5189793" +} diff --git a/site/public/v1/software/crucible/index.json b/site/public/v1/software/crucible/index.json new file mode 100644 index 000000000000..7796222542bc --- /dev/null +++ b/site/public/v1/software/crucible/index.json @@ -0,0 +1,23 @@ +{ + "id": 1960, + "slug": "crucible", + "name": "Crucible", + "release_date": null, + "developers": [ + "Atlassian" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Java" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5189794" + ], + "created_at": "2026-07-10T10:12:40.271223", + "updated_at": "2026-07-10T10:12:40.271223", + "url": "/v1/software/crucible" +} diff --git a/site/public/v1/software/crunchycleaner/index.json b/site/public/v1/software/crunchycleaner/index.json new file mode 100644 index 000000000000..e0fbd2956df4 --- /dev/null +++ b/site/public/v1/software/crunchycleaner/index.json @@ -0,0 +1,25 @@ +{ + "id": 1961, + "slug": "crunchycleaner", + "name": "CrunchyCleaner", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [ + "Go" + ], + "licenses": [ + "Creative Commons Attribution 4.0 International" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137629725" + ], + "created_at": "2026-07-10T10:12:40.271223", + "updated_at": "2026-07-10T10:12:40.271223", + "url": "/v1/software/crunchycleaner" +} diff --git a/site/public/v1/software/crx/index.json b/site/public/v1/software/crx/index.json new file mode 100644 index 000000000000..7e67087f0679 --- /dev/null +++ b/site/public/v1/software/crx/index.json @@ -0,0 +1,19 @@ +{ + "id": 1962, + "slug": "crx", + "name": "CRX", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5013957" + ], + "created_at": "2026-07-10T10:12:40.271223", + "updated_at": "2026-07-10T10:12:40.271223", + "url": "/v1/software/crx" +} diff --git a/site/public/v1/software/cryptload/index.json b/site/public/v1/software/cryptload/index.json new file mode 100644 index 000000000000..cea0022e5b31 --- /dev/null +++ b/site/public/v1/software/cryptload/index.json @@ -0,0 +1,19 @@ +{ + "id": 1963, + "slug": "cryptload", + "name": "CryptLoad", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1142245" + ], + "created_at": "2026-07-10T10:12:40.272314", + "updated_at": "2026-07-10T10:12:40.272314", + "url": "/v1/software/cryptload" +} diff --git a/site/public/v1/software/cryptograf/index.json b/site/public/v1/software/cryptograf/index.json new file mode 100644 index 000000000000..ea5ffd6e2336 --- /dev/null +++ b/site/public/v1/software/cryptograf/index.json @@ -0,0 +1,19 @@ +{ + "id": 1964, + "slug": "cryptograf", + "name": "CryptoGraf", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5190790" + ], + "created_at": "2026-07-10T10:12:40.272314", + "updated_at": "2026-07-10T10:12:40.272314", + "url": "/v1/software/cryptograf" +} diff --git a/site/public/v1/software/cryptopro/index.json b/site/public/v1/software/cryptopro/index.json new file mode 100644 index 000000000000..232e2375ccab --- /dev/null +++ b/site/public/v1/software/cryptopro/index.json @@ -0,0 +1,27 @@ +{ + "id": 1965, + "slug": "cryptopro", + "name": "CryptoPro", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Solaris", + "macOS", + "Microsoft Windows", + "IBM AIX", + "Aurora OS", + "FreeBSD", + "iOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4241171" + ], + "created_at": "2026-07-10T10:12:40.272314", + "updated_at": "2026-07-10T10:12:40.272314", + "url": "/v1/software/cryptopro" +} diff --git a/site/public/v1/software/cryptoverif/index.json b/site/public/v1/software/cryptoverif/index.json new file mode 100644 index 000000000000..eca9ac5bdfa9 --- /dev/null +++ b/site/public/v1/software/cryptoverif/index.json @@ -0,0 +1,21 @@ +{ + "id": 1966, + "slug": "cryptoverif", + "name": "CryptoVerif", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "OCaml" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5190795" + ], + "created_at": "2026-07-10T10:12:40.272314", + "updated_at": "2026-07-10T10:12:40.272314", + "url": "/v1/software/cryptoverif" +} diff --git a/site/public/v1/software/cryptowatch/index.json b/site/public/v1/software/cryptowatch/index.json new file mode 100644 index 000000000000..51dae58a6f62 --- /dev/null +++ b/site/public/v1/software/cryptowatch/index.json @@ -0,0 +1,19 @@ +{ + "id": 1967, + "slug": "cryptowatch", + "name": "cryptowatch", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q47487590" + ], + "created_at": "2026-07-10T10:12:40.273333", + "updated_at": "2026-07-10T10:12:40.273333", + "url": "/v1/software/cryptowatch" +} diff --git a/site/public/v1/software/crystal-analysis/index.json b/site/public/v1/software/crystal-analysis/index.json new file mode 100644 index 000000000000..b581e795d19f --- /dev/null +++ b/site/public/v1/software/crystal-analysis/index.json @@ -0,0 +1,21 @@ +{ + "id": 1968, + "slug": "crystal-analysis", + "name": "Crystal Analysis", + "release_date": null, + "developers": [ + "Seagate Software" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5191113" + ], + "created_at": "2026-07-10T10:12:40.273333", + "updated_at": "2026-07-10T10:12:40.273333", + "url": "/v1/software/crystal-analysis" +} diff --git a/site/public/v1/software/crystal-enterprise/index.json b/site/public/v1/software/crystal-enterprise/index.json new file mode 100644 index 000000000000..718b08f24286 --- /dev/null +++ b/site/public/v1/software/crystal-enterprise/index.json @@ -0,0 +1,21 @@ +{ + "id": 1969, + "slug": "crystal-enterprise", + "name": "Crystal Enterprise", + "release_date": null, + "developers": [ + "Crystal Decisions" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5191185" + ], + "created_at": "2026-07-10T10:12:40.274223", + "updated_at": "2026-07-10T10:12:40.274223", + "url": "/v1/software/crystal-enterprise" +} diff --git a/site/public/v1/software/crystal-reports-q60815906/index.json b/site/public/v1/software/crystal-reports-q60815906/index.json new file mode 100644 index 000000000000..b559f4e0b6bf --- /dev/null +++ b/site/public/v1/software/crystal-reports-q60815906/index.json @@ -0,0 +1,23 @@ +{ + "id": 1970, + "slug": "crystal-reports-q60815906", + "name": "Crystal Reports", + "release_date": null, + "developers": [ + "Crystal Decisions" + ], + "publishers": [], + "operating_systems": [ + "Windows 95" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60815906" + ], + "created_at": "2026-07-10T10:12:40.274223", + "updated_at": "2026-07-10T10:12:40.274223", + "url": "/v1/software/crystal-reports-q60815906" +} diff --git a/site/public/v1/software/crystal-reports/index.json b/site/public/v1/software/crystal-reports/index.json new file mode 100644 index 000000000000..a4ad8109f5d4 --- /dev/null +++ b/site/public/v1/software/crystal-reports/index.json @@ -0,0 +1,26 @@ +{ + "id": 1971, + "slug": "crystal-reports", + "name": "Crystal Reports", + "release_date": null, + "developers": [ + "SAP" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "proprietary license", + "end-user license agreement" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1142403" + ], + "created_at": "2026-07-10T10:12:40.274223", + "updated_at": "2026-07-10T10:12:40.274223", + "url": "/v1/software/crystal-reports" +} diff --git a/site/public/v1/software/crystalexplorer/index.json b/site/public/v1/software/crystalexplorer/index.json new file mode 100644 index 000000000000..1fcf1a062bbb --- /dev/null +++ b/site/public/v1/software/crystalexplorer/index.json @@ -0,0 +1,19 @@ +{ + "id": 1972, + "slug": "crystalexplorer", + "name": "CrystalExplorer", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q104853830" + ], + "created_at": "2026-07-10T10:12:40.274223", + "updated_at": "2026-07-10T10:12:40.274223", + "url": "/v1/software/crystalexplorer" +} diff --git a/site/public/v1/software/crystbox/index.json b/site/public/v1/software/crystbox/index.json new file mode 100644 index 000000000000..2e67ed3afa39 --- /dev/null +++ b/site/public/v1/software/crystbox/index.json @@ -0,0 +1,19 @@ +{ + "id": 1973, + "slug": "crystbox", + "name": "CrysTBox", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110251739" + ], + "created_at": "2026-07-10T10:12:40.275220", + "updated_at": "2026-07-10T10:12:40.275220", + "url": "/v1/software/crystbox" +} diff --git a/site/public/v1/software/cs-rosetta/index.json b/site/public/v1/software/cs-rosetta/index.json new file mode 100644 index 000000000000..9ce630454be8 --- /dev/null +++ b/site/public/v1/software/cs-rosetta/index.json @@ -0,0 +1,19 @@ +{ + "id": 1974, + "slug": "cs-rosetta", + "name": "CS-ROSETTA", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5014009" + ], + "created_at": "2026-07-10T10:12:40.275220", + "updated_at": "2026-07-10T10:12:40.275220", + "url": "/v1/software/cs-rosetta" +} diff --git a/site/public/v1/software/cs-script/index.json b/site/public/v1/software/cs-script/index.json new file mode 100644 index 000000000000..52b6f65a0f9f --- /dev/null +++ b/site/public/v1/software/cs-script/index.json @@ -0,0 +1,19 @@ +{ + "id": 1975, + "slug": "cs-script", + "name": "CS-Script", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5014010" + ], + "created_at": "2026-07-10T10:12:40.275220", + "updated_at": "2026-07-10T10:12:40.275220", + "url": "/v1/software/cs-script" +} diff --git a/site/public/v1/software/cs23d/index.json b/site/public/v1/software/cs23d/index.json new file mode 100644 index 000000000000..26e77283e454 --- /dev/null +++ b/site/public/v1/software/cs23d/index.json @@ -0,0 +1,21 @@ +{ + "id": 1976, + "slug": "cs23d", + "name": "CS23D", + "release_date": null, + "developers": [ + "University of Alberta" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17009524" + ], + "created_at": "2026-07-10T10:12:40.276220", + "updated_at": "2026-07-10T10:12:40.276220", + "url": "/v1/software/cs23d" +} diff --git a/site/public/v1/software/cshell/index.json b/site/public/v1/software/cshell/index.json new file mode 100644 index 000000000000..6d717d3efff0 --- /dev/null +++ b/site/public/v1/software/cshell/index.json @@ -0,0 +1,19 @@ +{ + "id": 1977, + "slug": "cshell", + "name": "Cshell", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q30905185" + ], + "created_at": "2026-07-10T10:12:40.276220", + "updated_at": "2026-07-10T10:12:40.276220", + "url": "/v1/software/cshell" +} diff --git a/site/public/v1/software/csmith/index.json b/site/public/v1/software/csmith/index.json new file mode 100644 index 000000000000..1dd84534e406 --- /dev/null +++ b/site/public/v1/software/csmith/index.json @@ -0,0 +1,19 @@ +{ + "id": 1978, + "slug": "csmith", + "name": "Csmith", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q29364608" + ], + "created_at": "2026-07-10T10:12:40.276220", + "updated_at": "2026-07-10T10:12:40.276220", + "url": "/v1/software/csmith" +} diff --git a/site/public/v1/software/cspro/index.json b/site/public/v1/software/cspro/index.json new file mode 100644 index 000000000000..1f47a1ff1eb7 --- /dev/null +++ b/site/public/v1/software/cspro/index.json @@ -0,0 +1,19 @@ +{ + "id": 1979, + "slug": "cspro", + "name": "CSPro", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5014227" + ], + "created_at": "2026-07-10T10:12:40.277267", + "updated_at": "2026-07-10T10:12:40.277267", + "url": "/v1/software/cspro" +} diff --git a/site/public/v1/software/css3menu/index.json b/site/public/v1/software/css3menu/index.json new file mode 100644 index 000000000000..c1b802de7543 --- /dev/null +++ b/site/public/v1/software/css3menu/index.json @@ -0,0 +1,19 @@ +{ + "id": 1980, + "slug": "css3menu", + "name": "CSS3Menu", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17623347" + ], + "created_at": "2026-07-10T10:12:40.277267", + "updated_at": "2026-07-10T10:12:40.277267", + "url": "/v1/software/css3menu" +} diff --git a/site/public/v1/software/cstream/index.json b/site/public/v1/software/cstream/index.json new file mode 100644 index 000000000000..65529a79e57a --- /dev/null +++ b/site/public/v1/software/cstream/index.json @@ -0,0 +1,19 @@ +{ + "id": 1981, + "slug": "cstream", + "name": "cstream", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065448" + ], + "created_at": "2026-07-10T10:12:40.277267", + "updated_at": "2026-07-10T10:12:40.277267", + "url": "/v1/software/cstream" +} diff --git a/site/public/v1/software/csv-reconcile/index.json b/site/public/v1/software/csv-reconcile/index.json new file mode 100644 index 000000000000..ff8c5afebcba --- /dev/null +++ b/site/public/v1/software/csv-reconcile/index.json @@ -0,0 +1,21 @@ +{ + "id": 1982, + "slug": "csv-reconcile", + "name": "csv-reconcile", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Python" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113401035" + ], + "created_at": "2026-07-10T10:12:40.278283", + "updated_at": "2026-07-10T10:12:40.278283", + "url": "/v1/software/csv-reconcile" +} diff --git a/site/public/v1/software/csv-sort/index.json b/site/public/v1/software/csv-sort/index.json new file mode 100644 index 000000000000..545e4ab3661b --- /dev/null +++ b/site/public/v1/software/csv-sort/index.json @@ -0,0 +1,19 @@ +{ + "id": 1983, + "slug": "csv-sort", + "name": "CSV Sort", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084884" + ], + "created_at": "2026-07-10T10:12:40.278283", + "updated_at": "2026-07-10T10:12:40.278283", + "url": "/v1/software/csv-sort" +} diff --git a/site/public/v1/software/csvlint/index.json b/site/public/v1/software/csvlint/index.json new file mode 100644 index 000000000000..11c04f78fc48 --- /dev/null +++ b/site/public/v1/software/csvlint/index.json @@ -0,0 +1,21 @@ +{ + "id": 1984, + "slug": "csvlint", + "name": "csvlint", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q54880870" + ], + "created_at": "2026-07-10T10:12:40.278283", + "updated_at": "2026-07-10T10:12:40.278283", + "url": "/v1/software/csvlint" +} diff --git a/site/public/v1/software/ctdb/index.json b/site/public/v1/software/ctdb/index.json new file mode 100644 index 000000000000..b0173d558edf --- /dev/null +++ b/site/public/v1/software/ctdb/index.json @@ -0,0 +1,19 @@ +{ + "id": 1985, + "slug": "ctdb", + "name": "CTDB", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5737513" + ], + "created_at": "2026-07-10T10:12:40.279281", + "updated_at": "2026-07-10T10:12:40.279281", + "url": "/v1/software/ctdb" +} diff --git a/site/public/v1/software/cthumb/index.json b/site/public/v1/software/cthumb/index.json new file mode 100644 index 000000000000..8f4eb8a9fd7e --- /dev/null +++ b/site/public/v1/software/cthumb/index.json @@ -0,0 +1,19 @@ +{ + "id": 1986, + "slug": "cthumb", + "name": "cthumb", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62851632" + ], + "created_at": "2026-07-10T10:12:40.279281", + "updated_at": "2026-07-10T10:12:40.279281", + "url": "/v1/software/cthumb" +} diff --git a/site/public/v1/software/ctrader-codepilot/index.json b/site/public/v1/software/ctrader-codepilot/index.json new file mode 100644 index 000000000000..af48516f6d09 --- /dev/null +++ b/site/public/v1/software/ctrader-codepilot/index.json @@ -0,0 +1,23 @@ +{ + "id": 1987, + "slug": "ctrader-codepilot", + "name": "cTrader CodePilot", + "release_date": null, + "developers": [ + "ClickAlgo(').\",abcd" + ], + "publishers": [], + "operating_systems": [ + "cross-platform" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135651903" + ], + "created_at": "2026-07-10T10:12:40.279281", + "updated_at": "2026-07-10T10:12:40.279281", + "url": "/v1/software/ctrader-codepilot" +} diff --git a/site/public/v1/software/cu-dalos/index.json b/site/public/v1/software/cu-dalos/index.json new file mode 100644 index 000000000000..da2ef0ce9410 --- /dev/null +++ b/site/public/v1/software/cu-dalos/index.json @@ -0,0 +1,19 @@ +{ + "id": 1988, + "slug": "cu-dalos", + "name": "Cuídalos", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q78288101" + ], + "created_at": "2026-07-10T10:12:40.280279", + "updated_at": "2026-07-10T10:12:40.280279", + "url": "/v1/software/cu-dalos" +} diff --git a/site/public/v1/software/cu-writer/index.json b/site/public/v1/software/cu-writer/index.json new file mode 100644 index 000000000000..119a1e764a61 --- /dev/null +++ b/site/public/v1/software/cu-writer/index.json @@ -0,0 +1,19 @@ +{ + "id": 1989, + "slug": "cu-writer", + "name": "CU Writer", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q13014608" + ], + "created_at": "2026-07-10T10:12:40.280279", + "updated_at": "2026-07-10T10:12:40.280279", + "url": "/v1/software/cu-writer" +} diff --git a/site/public/v1/software/cubepdf/index.json b/site/public/v1/software/cubepdf/index.json new file mode 100644 index 000000000000..d197bce6f9f9 --- /dev/null +++ b/site/public/v1/software/cubepdf/index.json @@ -0,0 +1,21 @@ +{ + "id": 1990, + "slug": "cubepdf", + "name": "CubePDF", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Apache License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17987943" + ], + "created_at": "2026-07-10T10:12:40.280279", + "updated_at": "2026-07-10T10:12:40.280279", + "url": "/v1/software/cubepdf" +} diff --git a/site/public/v1/software/cubeport/index.json b/site/public/v1/software/cubeport/index.json new file mode 100644 index 000000000000..808bf35bc4be --- /dev/null +++ b/site/public/v1/software/cubeport/index.json @@ -0,0 +1,19 @@ +{ + "id": 1991, + "slug": "cubeport", + "name": "CubePort", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5192199" + ], + "created_at": "2026-07-10T10:12:40.280279", + "updated_at": "2026-07-10T10:12:40.281283", + "url": "/v1/software/cubeport" +} diff --git a/site/public/v1/software/cubes/index.json b/site/public/v1/software/cubes/index.json new file mode 100644 index 000000000000..55cbff49eb52 --- /dev/null +++ b/site/public/v1/software/cubes/index.json @@ -0,0 +1,21 @@ +{ + "id": 1992, + "slug": "cubes", + "name": "Cubes", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Python" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22907581" + ], + "created_at": "2026-07-10T10:12:40.281283", + "updated_at": "2026-07-10T10:12:40.281283", + "url": "/v1/software/cubes" +} diff --git a/site/public/v1/software/cuckoochess/index.json b/site/public/v1/software/cuckoochess/index.json new file mode 100644 index 000000000000..2b5edc04164f --- /dev/null +++ b/site/public/v1/software/cuckoochess/index.json @@ -0,0 +1,21 @@ +{ + "id": 1993, + "slug": "cuckoochess", + "name": "Cuckoochess", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Java" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q55608644" + ], + "created_at": "2026-07-10T10:12:40.281283", + "updated_at": "2026-07-10T10:12:40.281283", + "url": "/v1/software/cuckoochess" +} diff --git a/site/public/v1/software/cuddlr/index.json b/site/public/v1/software/cuddlr/index.json new file mode 100644 index 000000000000..0b7a832dffac --- /dev/null +++ b/site/public/v1/software/cuddlr/index.json @@ -0,0 +1,19 @@ +{ + "id": 1994, + "slug": "cuddlr", + "name": "Cuddlr", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q19892285" + ], + "created_at": "2026-07-10T10:12:40.282302", + "updated_at": "2026-07-10T10:12:40.282302", + "url": "/v1/software/cuddlr" +} diff --git a/site/public/v1/software/cue-language/index.json b/site/public/v1/software/cue-language/index.json new file mode 100644 index 000000000000..0cb1104bd474 --- /dev/null +++ b/site/public/v1/software/cue-language/index.json @@ -0,0 +1,19 @@ +{ + "id": 1995, + "slug": "cue-language", + "name": "cue.language", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084885" + ], + "created_at": "2026-07-10T10:12:40.282302", + "updated_at": "2026-07-10T10:12:40.282302", + "url": "/v1/software/cue-language" +} diff --git a/site/public/v1/software/cue/index.json b/site/public/v1/software/cue/index.json new file mode 100644 index 000000000000..06e76a67abd2 --- /dev/null +++ b/site/public/v1/software/cue/index.json @@ -0,0 +1,23 @@ +{ + "id": 1996, + "slug": "cue", + "name": "CUE", + "release_date": null, + "developers": [ + "Marcel van Lohuizen" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Apache Software License 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116962956" + ], + "created_at": "2026-07-10T10:12:40.282302", + "updated_at": "2026-07-10T10:12:40.282302", + "url": "/v1/software/cue" +} diff --git a/site/public/v1/software/cufflinks/index.json b/site/public/v1/software/cufflinks/index.json new file mode 100644 index 000000000000..f9e7f05dfbe9 --- /dev/null +++ b/site/public/v1/software/cufflinks/index.json @@ -0,0 +1,21 @@ +{ + "id": 1997, + "slug": "cufflinks", + "name": "Cufflinks", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Boost Software License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122830193" + ], + "created_at": "2026-07-10T10:12:40.282302", + "updated_at": "2026-07-10T10:12:40.282302", + "url": "/v1/software/cufflinks" +} diff --git a/site/public/v1/software/cuisine-libre/index.json b/site/public/v1/software/cuisine-libre/index.json new file mode 100644 index 000000000000..a9ded6ffee03 --- /dev/null +++ b/site/public/v1/software/cuisine-libre/index.json @@ -0,0 +1,19 @@ +{ + "id": 1998, + "slug": "cuisine-libre", + "name": "Cuisine Libre", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q98732121" + ], + "created_at": "2026-07-10T10:12:40.283300", + "updated_at": "2026-07-10T10:12:40.283300", + "url": "/v1/software/cuisine-libre" +} diff --git a/site/public/v1/software/cul/index.json b/site/public/v1/software/cul/index.json new file mode 100644 index 000000000000..83cceda5ed65 --- /dev/null +++ b/site/public/v1/software/cul/index.json @@ -0,0 +1,23 @@ +{ + "id": 1999, + "slug": "cul", + "name": "CUL", + "release_date": "2011-12-22", + "developers": [ + "Internet Co." + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11194176" + ], + "created_at": "2026-07-10T10:12:40.283300", + "updated_at": "2026-07-10T10:12:40.283300", + "url": "/v1/software/cul" +} diff --git a/site/public/v1/software/culinary-explorer/index.json b/site/public/v1/software/culinary-explorer/index.json new file mode 100644 index 000000000000..0401d219c974 --- /dev/null +++ b/site/public/v1/software/culinary-explorer/index.json @@ -0,0 +1,25 @@ +{ + "id": 2000, + "slug": "culinary-explorer", + "name": "Culinary Explorer", + "release_date": null, + "developers": [ + "Sapient Technology Group" + ], + "publishers": [ + "Sapient Technology Group" + ], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [ + "cooking" + ], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139043906" + ], + "created_at": "2026-07-10T10:12:40.283300", + "updated_at": "2026-07-10T10:12:40.283300", + "url": "/v1/software/culinary-explorer" +} diff --git a/site/public/v1/software/culturalanalytics/index.json b/site/public/v1/software/culturalanalytics/index.json new file mode 100644 index 000000000000..76c701635400 --- /dev/null +++ b/site/public/v1/software/culturalanalytics/index.json @@ -0,0 +1,19 @@ +{ + "id": 2001, + "slug": "culturalanalytics", + "name": "CulturalAnalytics", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084886" + ], + "created_at": "2026-07-10T10:12:40.284220", + "updated_at": "2026-07-10T10:12:40.284220", + "url": "/v1/software/culturalanalytics" +} diff --git a/site/public/v1/software/cummerbund/index.json b/site/public/v1/software/cummerbund/index.json new file mode 100644 index 000000000000..01769e61af7a --- /dev/null +++ b/site/public/v1/software/cummerbund/index.json @@ -0,0 +1,23 @@ +{ + "id": 2002, + "slug": "cummerbund", + "name": "cummeRbund", + "release_date": null, + "developers": [ + "Cole Trapnell", + "David Kelly", + "Loyal Goff" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122830233" + ], + "created_at": "2026-07-10T10:12:40.284220", + "updated_at": "2026-07-10T10:12:40.284220", + "url": "/v1/software/cummerbund" +} diff --git a/site/public/v1/software/cumulus-linux/index.json b/site/public/v1/software/cumulus-linux/index.json new file mode 100644 index 000000000000..1ccfd7fc3995 --- /dev/null +++ b/site/public/v1/software/cumulus-linux/index.json @@ -0,0 +1,21 @@ +{ + "id": 2003, + "slug": "cumulus-linux", + "name": "Cumulus Linux", + "release_date": null, + "developers": [ + "Cumulus Networks" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q21655365" + ], + "created_at": "2026-07-10T10:12:40.284220", + "updated_at": "2026-07-10T10:12:40.284220", + "url": "/v1/software/cumulus-linux" +} diff --git a/site/public/v1/software/cumulus/index.json b/site/public/v1/software/cumulus/index.json new file mode 100644 index 000000000000..84e2a1936b65 --- /dev/null +++ b/site/public/v1/software/cumulus/index.json @@ -0,0 +1,19 @@ +{ + "id": 2004, + "slug": "cumulus", + "name": "Cumulus", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1033826" + ], + "created_at": "2026-07-10T10:12:40.284220", + "updated_at": "2026-07-10T10:12:40.284220", + "url": "/v1/software/cumulus" +} diff --git a/site/public/v1/software/cupl/index.json b/site/public/v1/software/cupl/index.json new file mode 100644 index 000000000000..78d10d0b6fa5 --- /dev/null +++ b/site/public/v1/software/cupl/index.json @@ -0,0 +1,21 @@ +{ + "id": 2005, + "slug": "cupl", + "name": "CUPL", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q12360486" + ], + "created_at": "2026-07-10T10:12:40.285294", + "updated_at": "2026-07-10T10:12:40.285294", + "url": "/v1/software/cupl" +} diff --git a/site/public/v1/software/cups-pdf/index.json b/site/public/v1/software/cups-pdf/index.json new file mode 100644 index 000000000000..8f1a890893d0 --- /dev/null +++ b/site/public/v1/software/cups-pdf/index.json @@ -0,0 +1,19 @@ +{ + "id": 2006, + "slug": "cups-pdf", + "name": "Cups-pdf", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25049186" + ], + "created_at": "2026-07-10T10:12:40.285294", + "updated_at": "2026-07-10T10:12:40.285294", + "url": "/v1/software/cups-pdf" +} diff --git a/site/public/v1/software/cupy/index.json b/site/public/v1/software/cupy/index.json new file mode 100644 index 000000000000..80652c691e02 --- /dev/null +++ b/site/public/v1/software/cupy/index.json @@ -0,0 +1,23 @@ +{ + "id": 2007, + "slug": "cupy", + "name": "CuPy", + "release_date": null, + "developers": [ + "Preferred Networks" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112872195" + ], + "created_at": "2026-07-10T10:12:40.285294", + "updated_at": "2026-07-10T10:12:40.285294", + "url": "/v1/software/cupy" +} diff --git a/site/public/v1/software/curacy/index.json b/site/public/v1/software/curacy/index.json new file mode 100644 index 000000000000..904609b585cb --- /dev/null +++ b/site/public/v1/software/curacy/index.json @@ -0,0 +1,19 @@ +{ + "id": 2008, + "slug": "curacy", + "name": "Curacy", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139884674" + ], + "created_at": "2026-07-10T10:12:40.286222", + "updated_at": "2026-07-10T10:12:40.286222", + "url": "/v1/software/curacy" +} diff --git a/site/public/v1/software/curies/index.json b/site/public/v1/software/curies/index.json new file mode 100644 index 000000000000..67937e4336a5 --- /dev/null +++ b/site/public/v1/software/curies/index.json @@ -0,0 +1,23 @@ +{ + "id": 2009, + "slug": "curies", + "name": "curies", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Python" + ], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116738064" + ], + "created_at": "2026-07-10T10:12:40.286222", + "updated_at": "2026-07-10T10:12:40.286222", + "url": "/v1/software/curies" +} diff --git a/site/public/v1/software/curl-loader/index.json b/site/public/v1/software/curl-loader/index.json new file mode 100644 index 000000000000..2092e3ab75a2 --- /dev/null +++ b/site/public/v1/software/curl-loader/index.json @@ -0,0 +1,21 @@ +{ + "id": 2010, + "slug": "curl-loader", + "name": "Curl-loader", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "GNU General Public License, version 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5194807" + ], + "created_at": "2026-07-10T10:12:40.286222", + "updated_at": "2026-07-10T10:12:40.286222", + "url": "/v1/software/curl-loader" +} diff --git a/site/public/v1/software/currency-converter/index.json b/site/public/v1/software/currency-converter/index.json new file mode 100644 index 000000000000..d10cd22b0898 --- /dev/null +++ b/site/public/v1/software/currency-converter/index.json @@ -0,0 +1,19 @@ +{ + "id": 2011, + "slug": "currency-converter", + "name": "currency converter", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5195005" + ], + "created_at": "2026-07-10T10:12:40.287224", + "updated_at": "2026-07-10T10:12:40.287224", + "url": "/v1/software/currency-converter" +} diff --git a/site/public/v1/software/custom-cast/index.json b/site/public/v1/software/custom-cast/index.json new file mode 100644 index 000000000000..183b897364fc --- /dev/null +++ b/site/public/v1/software/custom-cast/index.json @@ -0,0 +1,23 @@ +{ + "id": 2012, + "slug": "custom-cast", + "name": "CUSTOM CAST", + "release_date": "2018-10-03", + "developers": [ + "Dwango" + ], + "publishers": [], + "operating_systems": [ + "iOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60986526" + ], + "created_at": "2026-07-10T10:12:40.287224", + "updated_at": "2026-07-10T10:12:40.287224", + "url": "/v1/software/custom-cast" +} diff --git a/site/public/v1/software/custom-virtual-keyboard/index.json b/site/public/v1/software/custom-virtual-keyboard/index.json new file mode 100644 index 000000000000..9e3c7e2a1b93 --- /dev/null +++ b/site/public/v1/software/custom-virtual-keyboard/index.json @@ -0,0 +1,19 @@ +{ + "id": 2013, + "slug": "custom-virtual-keyboard", + "name": "Custom Virtual Keyboard", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3007909" + ], + "created_at": "2026-07-10T10:12:40.287224", + "updated_at": "2026-07-10T10:12:40.287224", + "url": "/v1/software/custom-virtual-keyboard" +} diff --git a/site/public/v1/software/customer-account-data-engine/index.json b/site/public/v1/software/customer-account-data-engine/index.json new file mode 100644 index 000000000000..1684bdba0b23 --- /dev/null +++ b/site/public/v1/software/customer-account-data-engine/index.json @@ -0,0 +1,21 @@ +{ + "id": 2014, + "slug": "customer-account-data-engine", + "name": "Customer Account Data Engine", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Java" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5196430" + ], + "created_at": "2026-07-10T10:12:40.287224", + "updated_at": "2026-07-10T10:12:40.287224", + "url": "/v1/software/customer-account-data-engine" +} diff --git a/site/public/v1/software/customerhero/index.json b/site/public/v1/software/customerhero/index.json new file mode 100644 index 000000000000..41145556f6d2 --- /dev/null +++ b/site/public/v1/software/customerhero/index.json @@ -0,0 +1,21 @@ +{ + "id": 2015, + "slug": "customerhero", + "name": "CustomerHero", + "release_date": null, + "developers": [ + "CustomerHero" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134955293" + ], + "created_at": "2026-07-10T10:12:40.288305", + "updated_at": "2026-07-10T10:12:40.288305", + "url": "/v1/software/customerhero" +} diff --git a/site/public/v1/software/cutepdf/index.json b/site/public/v1/software/cutepdf/index.json new file mode 100644 index 000000000000..56386a162876 --- /dev/null +++ b/site/public/v1/software/cutepdf/index.json @@ -0,0 +1,19 @@ +{ + "id": 2016, + "slug": "cutepdf", + "name": "CutePDF", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2311366" + ], + "created_at": "2026-07-10T10:12:40.288305", + "updated_at": "2026-07-10T10:12:40.288305", + "url": "/v1/software/cutepdf" +} diff --git a/site/public/v1/software/cutepeaks/index.json b/site/public/v1/software/cutepeaks/index.json new file mode 100644 index 000000000000..ca8819717d77 --- /dev/null +++ b/site/public/v1/software/cutepeaks/index.json @@ -0,0 +1,21 @@ +{ + "id": 2017, + "slug": "cutepeaks", + "name": "CutePeaks", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "GNU General Public License, version 3.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131362362" + ], + "created_at": "2026-07-10T10:12:40.288305", + "updated_at": "2026-07-10T10:12:40.288305", + "url": "/v1/software/cutepeaks" +} diff --git a/site/public/v1/software/cuter/index.json b/site/public/v1/software/cuter/index.json new file mode 100644 index 000000000000..47b160bf8fce --- /dev/null +++ b/site/public/v1/software/cuter/index.json @@ -0,0 +1,21 @@ +{ + "id": 2018, + "slug": "cuter", + "name": "CUTEr", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "open source" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5014732" + ], + "created_at": "2026-07-10T10:12:40.289277", + "updated_at": "2026-07-10T10:12:40.289277", + "url": "/v1/software/cuter" +} diff --git a/site/public/v1/software/cviptools/index.json b/site/public/v1/software/cviptools/index.json new file mode 100644 index 000000000000..e44cfc4f4d52 --- /dev/null +++ b/site/public/v1/software/cviptools/index.json @@ -0,0 +1,21 @@ +{ + "id": 2019, + "slug": "cviptools", + "name": "CVIPtools", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17009656" + ], + "created_at": "2026-07-10T10:12:40.289277", + "updated_at": "2026-07-10T10:12:40.289277", + "url": "/v1/software/cviptools" +} diff --git a/site/public/v1/software/cvm/index.json b/site/public/v1/software/cvm/index.json new file mode 100644 index 000000000000..b32cf6e76c5b --- /dev/null +++ b/site/public/v1/software/cvm/index.json @@ -0,0 +1,19 @@ +{ + "id": 2020, + "slug": "cvm", + "name": "cvm", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62851628" + ], + "created_at": "2026-07-10T10:12:40.289277", + "updated_at": "2026-07-10T10:12:40.289277", + "url": "/v1/software/cvm" +} diff --git a/site/public/v1/software/cvs-fast-export/index.json b/site/public/v1/software/cvs-fast-export/index.json new file mode 100644 index 000000000000..bcfb8dca3299 --- /dev/null +++ b/site/public/v1/software/cvs-fast-export/index.json @@ -0,0 +1,19 @@ +{ + "id": 2021, + "slug": "cvs-fast-export", + "name": "cvs-fast-export", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62847759" + ], + "created_at": "2026-07-10T10:12:40.290282", + "updated_at": "2026-07-10T10:12:40.290282", + "url": "/v1/software/cvs-fast-export" +} diff --git a/site/public/v1/software/cvs2svn/index.json b/site/public/v1/software/cvs2svn/index.json new file mode 100644 index 000000000000..c20800937298 --- /dev/null +++ b/site/public/v1/software/cvs2svn/index.json @@ -0,0 +1,19 @@ +{ + "id": 2022, + "slug": "cvs2svn", + "name": "cvs2svn", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62847771" + ], + "created_at": "2026-07-10T10:12:40.290282", + "updated_at": "2026-07-10T10:12:40.290282", + "url": "/v1/software/cvs2svn" +} diff --git a/site/public/v1/software/cvsd/index.json b/site/public/v1/software/cvsd/index.json new file mode 100644 index 000000000000..6f1806f629f8 --- /dev/null +++ b/site/public/v1/software/cvsd/index.json @@ -0,0 +1,19 @@ +{ + "id": 2023, + "slug": "cvsd", + "name": "cvsd", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62846402" + ], + "created_at": "2026-07-10T10:12:40.290282", + "updated_at": "2026-07-10T10:12:40.290282", + "url": "/v1/software/cvsd" +} diff --git a/site/public/v1/software/cvsgraph/index.json b/site/public/v1/software/cvsgraph/index.json new file mode 100644 index 000000000000..bb4408bb8ab8 --- /dev/null +++ b/site/public/v1/software/cvsgraph/index.json @@ -0,0 +1,19 @@ +{ + "id": 2024, + "slug": "cvsgraph", + "name": "CvsGraph", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62846412" + ], + "created_at": "2026-07-10T10:12:40.291296", + "updated_at": "2026-07-10T10:12:40.291296", + "url": "/v1/software/cvsgraph" +} diff --git a/site/public/v1/software/cvsps/index.json b/site/public/v1/software/cvsps/index.json new file mode 100644 index 000000000000..71ea79b14e3f --- /dev/null +++ b/site/public/v1/software/cvsps/index.json @@ -0,0 +1,19 @@ +{ + "id": 2025, + "slug": "cvsps", + "name": "CVSps", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62847781" + ], + "created_at": "2026-07-10T10:12:40.291296", + "updated_at": "2026-07-10T10:12:40.291296", + "url": "/v1/software/cvsps" +} diff --git a/site/public/v1/software/cvsync/index.json b/site/public/v1/software/cvsync/index.json new file mode 100644 index 000000000000..27a0c52061fe --- /dev/null +++ b/site/public/v1/software/cvsync/index.json @@ -0,0 +1,21 @@ +{ + "id": 2026, + "slug": "cvsync", + "name": "cvsync", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "3-clause BSD License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974796" + ], + "created_at": "2026-07-10T10:12:40.291296", + "updated_at": "2026-07-10T10:12:40.291296", + "url": "/v1/software/cvsync" +} diff --git a/site/public/v1/software/cway/index.json b/site/public/v1/software/cway/index.json new file mode 100644 index 000000000000..bdd6ff0dd36e --- /dev/null +++ b/site/public/v1/software/cway/index.json @@ -0,0 +1,19 @@ +{ + "id": 2027, + "slug": "cway", + "name": "Cway", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138658367" + ], + "created_at": "2026-07-10T10:12:40.292267", + "updated_at": "2026-07-10T10:12:40.292267", + "url": "/v1/software/cway" +} diff --git a/site/public/v1/software/cwdiff/index.json b/site/public/v1/software/cwdiff/index.json new file mode 100644 index 000000000000..72d42ef0d8a7 --- /dev/null +++ b/site/public/v1/software/cwdiff/index.json @@ -0,0 +1,19 @@ +{ + "id": 2028, + "slug": "cwdiff", + "name": "cwdiff", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974797" + ], + "created_at": "2026-07-10T10:12:40.292267", + "updated_at": "2026-07-10T10:12:40.292267", + "url": "/v1/software/cwdiff" +} diff --git a/site/public/v1/software/cwm/index.json b/site/public/v1/software/cwm/index.json new file mode 100644 index 000000000000..d3b5776d64d7 --- /dev/null +++ b/site/public/v1/software/cwm/index.json @@ -0,0 +1,23 @@ +{ + "id": 2029, + "slug": "cwm", + "name": "Cwm", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "OS X Mavericks", + "FreeBSD", + "OpenBSD" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5197177" + ], + "created_at": "2026-07-10T10:12:40.292267", + "updated_at": "2026-07-10T10:12:40.292267", + "url": "/v1/software/cwm" +} diff --git a/site/public/v1/software/cwrsync/index.json b/site/public/v1/software/cwrsync/index.json new file mode 100644 index 000000000000..c772b6966a6a --- /dev/null +++ b/site/public/v1/software/cwrsync/index.json @@ -0,0 +1,19 @@ +{ + "id": 2030, + "slug": "cwrsync", + "name": "cwRsync", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4036786" + ], + "created_at": "2026-07-10T10:12:40.293291", + "updated_at": "2026-07-10T10:12:40.293291", + "url": "/v1/software/cwrsync" +} diff --git a/site/public/v1/software/cwshredder/index.json b/site/public/v1/software/cwshredder/index.json new file mode 100644 index 000000000000..d5293f5b91e7 --- /dev/null +++ b/site/public/v1/software/cwshredder/index.json @@ -0,0 +1,19 @@ +{ + "id": 2031, + "slug": "cwshredder", + "name": "CWShredder", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5014862" + ], + "created_at": "2026-07-10T10:12:40.293291", + "updated_at": "2026-07-10T10:12:40.293291", + "url": "/v1/software/cwshredder" +} diff --git a/site/public/v1/software/cwtch-im/index.json b/site/public/v1/software/cwtch-im/index.json new file mode 100644 index 000000000000..47c091646dde --- /dev/null +++ b/site/public/v1/software/cwtch-im/index.json @@ -0,0 +1,23 @@ +{ + "id": 2032, + "slug": "cwtch-im", + "name": "Cwtch.im", + "release_date": null, + "developers": [ + "Open Privacy" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125317880" + ], + "created_at": "2026-07-10T10:12:40.293291", + "updated_at": "2026-07-10T10:12:40.293291", + "url": "/v1/software/cwtch-im" +} diff --git a/site/public/v1/software/cyana/index.json b/site/public/v1/software/cyana/index.json new file mode 100644 index 000000000000..0b946d567323 --- /dev/null +++ b/site/public/v1/software/cyana/index.json @@ -0,0 +1,19 @@ +{ + "id": 2033, + "slug": "cyana", + "name": "CYANA", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5014908" + ], + "created_at": "2026-07-10T10:12:40.294271", + "updated_at": "2026-07-10T10:12:40.294271", + "url": "/v1/software/cyana" +} diff --git a/site/public/v1/software/cyber-chief/index.json b/site/public/v1/software/cyber-chief/index.json new file mode 100644 index 000000000000..499010ce48b4 --- /dev/null +++ b/site/public/v1/software/cyber-chief/index.json @@ -0,0 +1,21 @@ +{ + "id": 2034, + "slug": "cyber-chief", + "name": "Cyber Chief", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118646226" + ], + "created_at": "2026-07-10T10:12:40.294271", + "updated_at": "2026-07-10T10:12:40.294271", + "url": "/v1/software/cyber-chief" +} diff --git a/site/public/v1/software/cyber-diva/index.json b/site/public/v1/software/cyber-diva/index.json new file mode 100644 index 000000000000..719aaaa400f6 --- /dev/null +++ b/site/public/v1/software/cyber-diva/index.json @@ -0,0 +1,19 @@ +{ + "id": 2035, + "slug": "cyber-diva", + "name": "Cyber Diva", + "release_date": "2015-02-04", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25245534" + ], + "created_at": "2026-07-10T10:12:40.294271", + "updated_at": "2026-07-10T10:12:40.294271", + "url": "/v1/software/cyber-diva" +} diff --git a/site/public/v1/software/cyber-songman/index.json b/site/public/v1/software/cyber-songman/index.json new file mode 100644 index 000000000000..79f933bb5b2d --- /dev/null +++ b/site/public/v1/software/cyber-songman/index.json @@ -0,0 +1,19 @@ +{ + "id": 2036, + "slug": "cyber-songman", + "name": "Cyber Songman", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q41658509" + ], + "created_at": "2026-07-10T10:12:40.295359", + "updated_at": "2026-07-10T10:12:40.295359", + "url": "/v1/software/cyber-songman" +} diff --git a/site/public/v1/software/cyber-studio-cad-3d/index.json b/site/public/v1/software/cyber-studio-cad-3d/index.json new file mode 100644 index 000000000000..995297f827a8 --- /dev/null +++ b/site/public/v1/software/cyber-studio-cad-3d/index.json @@ -0,0 +1,23 @@ +{ + "id": 2037, + "slug": "cyber-studio-cad-3d", + "name": "Cyber Studio CAD-3D", + "release_date": null, + "developers": [ + "Antic Software" + ], + "publishers": [], + "operating_systems": [ + "Atari TOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5197734" + ], + "created_at": "2026-07-10T10:12:40.295359", + "updated_at": "2026-07-10T10:12:40.295359", + "url": "/v1/software/cyber-studio-cad-3d" +} diff --git a/site/public/v1/software/cyberdog/index.json b/site/public/v1/software/cyberdog/index.json new file mode 100644 index 000000000000..4faff80e35b6 --- /dev/null +++ b/site/public/v1/software/cyberdog/index.json @@ -0,0 +1,23 @@ +{ + "id": 2038, + "slug": "cyberdog", + "name": "Cyberdog", + "release_date": "1996-02-01", + "developers": [ + "Apple Inc." + ], + "publishers": [], + "operating_systems": [ + "Classic Mac OS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1147130" + ], + "created_at": "2026-07-10T10:12:40.295359", + "updated_at": "2026-07-10T10:12:40.295359", + "url": "/v1/software/cyberdog" +} diff --git a/site/public/v1/software/cyberextension/index.json b/site/public/v1/software/cyberextension/index.json new file mode 100644 index 000000000000..9aee57e3c151 --- /dev/null +++ b/site/public/v1/software/cyberextension/index.json @@ -0,0 +1,19 @@ +{ + "id": 2039, + "slug": "cyberextension", + "name": "CyberExtension", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5197681" + ], + "created_at": "2026-07-10T10:12:40.295359", + "updated_at": "2026-07-10T10:12:40.295359", + "url": "/v1/software/cyberextension" +} diff --git a/site/public/v1/software/cyberghost-vpn/index.json b/site/public/v1/software/cyberghost-vpn/index.json new file mode 100644 index 000000000000..4422afc8afe9 --- /dev/null +++ b/site/public/v1/software/cyberghost-vpn/index.json @@ -0,0 +1,19 @@ +{ + "id": 2040, + "slug": "cyberghost-vpn", + "name": "CyberGhost VPN", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q15804138" + ], + "created_at": "2026-07-10T10:12:40.296278", + "updated_at": "2026-07-10T10:12:40.296278", + "url": "/v1/software/cyberghost-vpn" +} diff --git a/site/public/v1/software/cyberlink-media-suite/index.json b/site/public/v1/software/cyberlink-media-suite/index.json new file mode 100644 index 000000000000..1459d619c1aa --- /dev/null +++ b/site/public/v1/software/cyberlink-media-suite/index.json @@ -0,0 +1,21 @@ +{ + "id": 2041, + "slug": "cyberlink-media-suite", + "name": "CyberLink Media Suite", + "release_date": null, + "developers": [ + "CyberLink" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3011502" + ], + "created_at": "2026-07-10T10:12:40.296278", + "updated_at": "2026-07-10T10:12:40.296278", + "url": "/v1/software/cyberlink-media-suite" +} diff --git a/site/public/v1/software/cyberlink-mediashow/index.json b/site/public/v1/software/cyberlink-mediashow/index.json new file mode 100644 index 000000000000..a95692ca5986 --- /dev/null +++ b/site/public/v1/software/cyberlink-mediashow/index.json @@ -0,0 +1,21 @@ +{ + "id": 2042, + "slug": "cyberlink-mediashow", + "name": "CyberLink MediaShow", + "release_date": null, + "developers": [ + "CyberLink" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1304521" + ], + "created_at": "2026-07-10T10:12:40.296278", + "updated_at": "2026-07-10T10:12:40.296278", + "url": "/v1/software/cyberlink-mediashow" +} diff --git a/site/public/v1/software/cybertracker/index.json b/site/public/v1/software/cybertracker/index.json new file mode 100644 index 000000000000..e4fe65f662c4 --- /dev/null +++ b/site/public/v1/software/cybertracker/index.json @@ -0,0 +1,23 @@ +{ + "id": 2043, + "slug": "cybertracker", + "name": "CyberTracker", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "iOS" + ], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1147213" + ], + "created_at": "2026-07-10T10:12:40.297392", + "updated_at": "2026-07-10T10:12:40.297392", + "url": "/v1/software/cybertracker" +} diff --git a/site/public/v1/software/cycada/index.json b/site/public/v1/software/cycada/index.json new file mode 100644 index 000000000000..d0b943a4fe9f --- /dev/null +++ b/site/public/v1/software/cycada/index.json @@ -0,0 +1,19 @@ +{ + "id": 2044, + "slug": "cycada", + "name": "Cycada", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16988527" + ], + "created_at": "2026-07-10T10:12:40.297392", + "updated_at": "2026-07-10T10:12:40.297392", + "url": "/v1/software/cycada" +} diff --git a/site/public/v1/software/cyclescape/index.json b/site/public/v1/software/cyclescape/index.json new file mode 100644 index 000000000000..f82359c31748 --- /dev/null +++ b/site/public/v1/software/cyclescape/index.json @@ -0,0 +1,21 @@ +{ + "id": 2045, + "slug": "cyclescape", + "name": "Cyclescape", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135434732" + ], + "created_at": "2026-07-10T10:12:40.297392", + "updated_at": "2026-07-10T10:12:40.297392", + "url": "/v1/software/cyclescape" +} diff --git a/site/public/v1/software/cycliqplus-firmware-updater/index.json b/site/public/v1/software/cycliqplus-firmware-updater/index.json new file mode 100644 index 000000000000..44d8f9aa5dd9 --- /dev/null +++ b/site/public/v1/software/cycliqplus-firmware-updater/index.json @@ -0,0 +1,21 @@ +{ + "id": 2046, + "slug": "cycliqplus-firmware-updater", + "name": "CycliqPlus Firmware Updater", + "release_date": null, + "developers": [ + "Cycliq Products Pty. Ltd." + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107329143" + ], + "created_at": "2026-07-10T10:12:40.297392", + "updated_at": "2026-07-10T10:12:40.297392", + "url": "/v1/software/cycliqplus-firmware-updater" +} diff --git a/site/public/v1/software/cycliqplus-for-desktop/index.json b/site/public/v1/software/cycliqplus-for-desktop/index.json new file mode 100644 index 000000000000..ada1dda1d3b0 --- /dev/null +++ b/site/public/v1/software/cycliqplus-for-desktop/index.json @@ -0,0 +1,24 @@ +{ + "id": 2047, + "slug": "cycliqplus-for-desktop", + "name": "CycliqPlus for Desktop", + "release_date": null, + "developers": [ + "Cycliq Products Pty. Ltd." + ], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107329026" + ], + "created_at": "2026-07-10T10:12:40.298403", + "updated_at": "2026-07-10T10:12:40.298403", + "url": "/v1/software/cycliqplus-for-desktop" +} diff --git a/site/public/v1/software/cyclo/index.json b/site/public/v1/software/cyclo/index.json new file mode 100644 index 000000000000..51b442667ab6 --- /dev/null +++ b/site/public/v1/software/cyclo/index.json @@ -0,0 +1,21 @@ +{ + "id": 2048, + "slug": "cyclo", + "name": "cyclo", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "GNU General Public License, version 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974799" + ], + "created_at": "2026-07-10T10:12:40.298403", + "updated_at": "2026-07-10T10:12:40.298403", + "url": "/v1/software/cyclo" +} diff --git a/site/public/v1/software/cyclopedia/index.json b/site/public/v1/software/cyclopedia/index.json new file mode 100644 index 000000000000..dcf67bb45686 --- /dev/null +++ b/site/public/v1/software/cyclopedia/index.json @@ -0,0 +1,19 @@ +{ + "id": 2049, + "slug": "cyclopedia", + "name": "Cyclopedia", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5198923" + ], + "created_at": "2026-07-10T10:12:40.298403", + "updated_at": "2026-07-10T10:12:40.298403", + "url": "/v1/software/cyclopedia" +} diff --git a/site/public/v1/software/cycloramic/index.json b/site/public/v1/software/cycloramic/index.json new file mode 100644 index 000000000000..4f48d5a9f19c --- /dev/null +++ b/site/public/v1/software/cycloramic/index.json @@ -0,0 +1,19 @@ +{ + "id": 2050, + "slug": "cycloramic", + "name": "Cycloramic", + "release_date": "2012-12-20", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11195115" + ], + "created_at": "2026-07-10T10:12:40.299405", + "updated_at": "2026-07-10T10:12:40.299405", + "url": "/v1/software/cycloramic" +} diff --git a/site/public/v1/software/cyma/index.json b/site/public/v1/software/cyma/index.json new file mode 100644 index 000000000000..1c95eb3edbe2 --- /dev/null +++ b/site/public/v1/software/cyma/index.json @@ -0,0 +1,19 @@ +{ + "id": 2051, + "slug": "cyma", + "name": "CYMA", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106282596" + ], + "created_at": "2026-07-10T10:12:40.299405", + "updated_at": "2026-07-10T10:12:40.299405", + "url": "/v1/software/cyma" +} diff --git a/site/public/v1/software/cyphal/index.json b/site/public/v1/software/cyphal/index.json new file mode 100644 index 000000000000..5970185612ff --- /dev/null +++ b/site/public/v1/software/cyphal/index.json @@ -0,0 +1,21 @@ +{ + "id": 2052, + "slug": "cyphal", + "name": "Cyphal", + "release_date": "2014-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q33106548" + ], + "created_at": "2026-07-10T10:12:40.299405", + "updated_at": "2026-07-10T10:12:40.299405", + "url": "/v1/software/cyphal" +} diff --git a/site/public/v1/software/cypherpunk-anonymous-remailer/index.json b/site/public/v1/software/cypherpunk-anonymous-remailer/index.json new file mode 100644 index 000000000000..714fffe63de1 --- /dev/null +++ b/site/public/v1/software/cypherpunk-anonymous-remailer/index.json @@ -0,0 +1,19 @@ +{ + "id": 2053, + "slug": "cypherpunk-anonymous-remailer", + "name": "cypherpunk anonymous remailer", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1148190" + ], + "created_at": "2026-07-10T10:12:40.300404", + "updated_at": "2026-07-10T10:12:40.300404", + "url": "/v1/software/cypherpunk-anonymous-remailer" +} diff --git a/site/public/v1/software/cypress/index.json b/site/public/v1/software/cypress/index.json new file mode 100644 index 000000000000..f8d9b6c0853a --- /dev/null +++ b/site/public/v1/software/cypress/index.json @@ -0,0 +1,21 @@ +{ + "id": 2054, + "slug": "cypress", + "name": "Cypress", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115978662" + ], + "created_at": "2026-07-10T10:12:40.300404", + "updated_at": "2026-07-10T10:12:40.300404", + "url": "/v1/software/cypress" +} diff --git a/site/public/v1/software/cyverse/index.json b/site/public/v1/software/cyverse/index.json new file mode 100644 index 000000000000..3d810618fb9e --- /dev/null +++ b/site/public/v1/software/cyverse/index.json @@ -0,0 +1,19 @@ +{ + "id": 2055, + "slug": "cyverse", + "name": "CyVerse", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122585695" + ], + "created_at": "2026-07-10T10:12:40.301403", + "updated_at": "2026-07-10T10:12:40.301403", + "url": "/v1/software/cyverse" +} diff --git a/site/public/v1/software/d-crypthon/index.json b/site/public/v1/software/d-crypthon/index.json new file mode 100644 index 000000000000..0a7239285ef6 --- /dev/null +++ b/site/public/v1/software/d-crypthon/index.json @@ -0,0 +1,19 @@ +{ + "id": 2056, + "slug": "d-crypthon", + "name": "Décrypthon", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3042989" + ], + "created_at": "2026-07-10T10:12:40.301403", + "updated_at": "2026-07-10T10:12:40.301403", + "url": "/v1/software/d-crypthon" +} diff --git a/site/public/v1/software/d-d-insider/index.json b/site/public/v1/software/d-d-insider/index.json new file mode 100644 index 000000000000..d4ca6d30c77a --- /dev/null +++ b/site/public/v1/software/d-d-insider/index.json @@ -0,0 +1,21 @@ +{ + "id": 2057, + "slug": "d-d-insider", + "name": "D&D Insider", + "release_date": "2007-01-01", + "developers": [ + "Wizards of the Coast" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5203009" + ], + "created_at": "2026-07-10T10:12:40.301403", + "updated_at": "2026-07-10T10:12:40.301403", + "url": "/v1/software/d-d-insider" +} diff --git a/site/public/v1/software/d-rif-d-rivation-en-fran-ais/index.json b/site/public/v1/software/d-rif-d-rivation-en-fran-ais/index.json new file mode 100644 index 000000000000..c635e7c70173 --- /dev/null +++ b/site/public/v1/software/d-rif-d-rivation-en-fran-ais/index.json @@ -0,0 +1,19 @@ +{ + "id": 2058, + "slug": "d-rif-d-rivation-en-fran-ais", + "name": "DériF (Dérivation en Français)", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084912" + ], + "created_at": "2026-07-10T10:12:40.301403", + "updated_at": "2026-07-10T10:12:40.301403", + "url": "/v1/software/d-rif-d-rivation-en-fran-ais" +} diff --git a/site/public/v1/software/d3dmetal/index.json b/site/public/v1/software/d3dmetal/index.json new file mode 100644 index 000000000000..f498d86e064d --- /dev/null +++ b/site/public/v1/software/d3dmetal/index.json @@ -0,0 +1,19 @@ +{ + "id": 2059, + "slug": "d3dmetal", + "name": "D3DMetal", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q119292796" + ], + "created_at": "2026-07-10T10:12:40.302462", + "updated_at": "2026-07-10T10:12:40.302462", + "url": "/v1/software/d3dmetal" +} diff --git a/site/public/v1/software/daa2iso/index.json b/site/public/v1/software/daa2iso/index.json new file mode 100644 index 000000000000..66d2e9e868f6 --- /dev/null +++ b/site/public/v1/software/daa2iso/index.json @@ -0,0 +1,19 @@ +{ + "id": 2060, + "slug": "daa2iso", + "name": "DAA2ISO", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62846429" + ], + "created_at": "2026-07-10T10:12:40.302462", + "updated_at": "2026-07-10T10:12:40.302462", + "url": "/v1/software/daa2iso" +} diff --git a/site/public/v1/software/dabbler/index.json b/site/public/v1/software/dabbler/index.json new file mode 100644 index 000000000000..570f971f957a --- /dev/null +++ b/site/public/v1/software/dabbler/index.json @@ -0,0 +1,19 @@ +{ + "id": 2061, + "slug": "dabbler", + "name": "Dabbler", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5207443" + ], + "created_at": "2026-07-10T10:12:40.302462", + "updated_at": "2026-07-10T10:12:40.303487", + "url": "/v1/software/dabbler" +} diff --git a/site/public/v1/software/dacy/index.json b/site/public/v1/software/dacy/index.json new file mode 100644 index 000000000000..047f3c62fd5f --- /dev/null +++ b/site/public/v1/software/dacy/index.json @@ -0,0 +1,21 @@ +{ + "id": 2062, + "slug": "dacy", + "name": "DaCy", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Apache Software License 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084888" + ], + "created_at": "2026-07-10T10:12:40.303487", + "updated_at": "2026-07-10T10:12:40.303487", + "url": "/v1/software/dacy" +} diff --git a/site/public/v1/software/daedalmap/index.json b/site/public/v1/software/daedalmap/index.json new file mode 100644 index 000000000000..526bc92551d4 --- /dev/null +++ b/site/public/v1/software/daedalmap/index.json @@ -0,0 +1,23 @@ +{ + "id": 2063, + "slug": "daedalmap", + "name": "DaedalMap", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Python" + ], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138775675" + ], + "created_at": "2026-07-10T10:12:40.303487", + "updated_at": "2026-07-10T10:12:40.303487", + "url": "/v1/software/daedalmap" +} diff --git a/site/public/v1/software/daemon-tools/index.json b/site/public/v1/software/daemon-tools/index.json new file mode 100644 index 000000000000..435c8c9f01de --- /dev/null +++ b/site/public/v1/software/daemon-tools/index.json @@ -0,0 +1,24 @@ +{ + "id": 2064, + "slug": "daemon-tools", + "name": "Daemon Tools", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "shareware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q874892" + ], + "created_at": "2026-07-10T10:12:40.303487", + "updated_at": "2026-07-10T10:12:40.303487", + "url": "/v1/software/daemon-tools" +} diff --git a/site/public/v1/software/daemon-vector/index.json b/site/public/v1/software/daemon-vector/index.json new file mode 100644 index 000000000000..aa2042ee9273 --- /dev/null +++ b/site/public/v1/software/daemon-vector/index.json @@ -0,0 +1,19 @@ +{ + "id": 2065, + "slug": "daemon-vector", + "name": "Daemon Vector", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140355843" + ], + "created_at": "2026-07-10T10:12:40.304469", + "updated_at": "2026-07-10T10:12:40.304469", + "url": "/v1/software/daemon-vector" +} diff --git a/site/public/v1/software/daemonize/index.json b/site/public/v1/software/daemonize/index.json new file mode 100644 index 000000000000..312561b68a2b --- /dev/null +++ b/site/public/v1/software/daemonize/index.json @@ -0,0 +1,22 @@ +{ + "id": 2066, + "slug": "daemonize", + "name": "daemonize", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Unix-like operating system", + "macOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113574827" + ], + "created_at": "2026-07-10T10:12:40.304469", + "updated_at": "2026-07-10T10:12:40.304469", + "url": "/v1/software/daemonize" +} diff --git a/site/public/v1/software/daemontools-encore/index.json b/site/public/v1/software/daemontools-encore/index.json new file mode 100644 index 000000000000..5dabea1ee392 --- /dev/null +++ b/site/public/v1/software/daemontools-encore/index.json @@ -0,0 +1,19 @@ +{ + "id": 2067, + "slug": "daemontools-encore", + "name": "daemontools-encore", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131574553" + ], + "created_at": "2026-07-10T10:12:40.304469", + "updated_at": "2026-07-10T10:12:40.304469", + "url": "/v1/software/daemontools-encore" +} diff --git a/site/public/v1/software/daftar/index.json b/site/public/v1/software/daftar/index.json new file mode 100644 index 000000000000..9279e7bd8fff --- /dev/null +++ b/site/public/v1/software/daftar/index.json @@ -0,0 +1,19 @@ +{ + "id": 2068, + "slug": "daftar", + "name": "Daftar", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139954229" + ], + "created_at": "2026-07-10T10:12:40.305527", + "updated_at": "2026-07-10T10:12:40.305527", + "url": "/v1/software/daftar" +} diff --git a/site/public/v1/software/daime-package-for-r/index.json b/site/public/v1/software/daime-package-for-r/index.json new file mode 100644 index 000000000000..2458abb1844e --- /dev/null +++ b/site/public/v1/software/daime-package-for-r/index.json @@ -0,0 +1,19 @@ +{ + "id": 2069, + "slug": "daime-package-for-r", + "name": "DAIME package for R", + "release_date": "2020-03-10", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125695238" + ], + "created_at": "2026-07-10T10:12:40.305527", + "updated_at": "2026-07-10T10:12:40.305527", + "url": "/v1/software/daime-package-for-r" +} diff --git a/site/public/v1/software/daina/index.json b/site/public/v1/software/daina/index.json new file mode 100644 index 000000000000..9c1c582c55b6 --- /dev/null +++ b/site/public/v1/software/daina/index.json @@ -0,0 +1,19 @@ +{ + "id": 2070, + "slug": "daina", + "name": "Daina", + "release_date": "2015-11-20", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25339794" + ], + "created_at": "2026-07-10T10:12:40.305527", + "updated_at": "2026-07-10T10:12:40.305527", + "url": "/v1/software/daina" +} diff --git a/site/public/v1/software/dairia-ia/index.json b/site/public/v1/software/dairia-ia/index.json new file mode 100644 index 000000000000..1ef48faa8a44 --- /dev/null +++ b/site/public/v1/software/dairia-ia/index.json @@ -0,0 +1,21 @@ +{ + "id": 2071, + "slug": "dairia-ia", + "name": "Dairia IA", + "release_date": null, + "developers": [ + "Dairia Avocats" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140360866" + ], + "created_at": "2026-07-10T10:12:40.306404", + "updated_at": "2026-07-10T10:12:40.306404", + "url": "/v1/software/dairia-ia" +} diff --git a/site/public/v1/software/daisydisk/index.json b/site/public/v1/software/daisydisk/index.json new file mode 100644 index 000000000000..58156494ba90 --- /dev/null +++ b/site/public/v1/software/daisydisk/index.json @@ -0,0 +1,21 @@ +{ + "id": 2072, + "slug": "daisydisk", + "name": "DaisyDisk", + "release_date": "2008-01-01", + "developers": [], + "publishers": [], + "operating_systems": [ + "macOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5209674" + ], + "created_at": "2026-07-10T10:12:40.306404", + "updated_at": "2026-07-10T10:12:40.306404", + "url": "/v1/software/daisydisk" +} diff --git a/site/public/v1/software/dakhl-o-kharj/index.json b/site/public/v1/software/dakhl-o-kharj/index.json new file mode 100644 index 000000000000..3bc20754ac5b --- /dev/null +++ b/site/public/v1/software/dakhl-o-kharj/index.json @@ -0,0 +1,21 @@ +{ + "id": 2073, + "slug": "dakhl-o-kharj", + "name": "Dakhl o Kharj", + "release_date": null, + "developers": [ + "TaxiApps" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138388650" + ], + "created_at": "2026-07-10T10:12:40.306404", + "updated_at": "2026-07-10T10:12:40.306404", + "url": "/v1/software/dakhl-o-kharj" +} diff --git a/site/public/v1/software/daksh902/index.json b/site/public/v1/software/daksh902/index.json new file mode 100644 index 000000000000..cadf52c37e7f --- /dev/null +++ b/site/public/v1/software/daksh902/index.json @@ -0,0 +1,19 @@ +{ + "id": 2074, + "slug": "daksh902", + "name": "Daksh902", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140323204" + ], + "created_at": "2026-07-10T10:12:40.307475", + "updated_at": "2026-07-10T10:12:40.307475", + "url": "/v1/software/daksh902" +} diff --git a/site/public/v1/software/dalton/index.json b/site/public/v1/software/dalton/index.json new file mode 100644 index 000000000000..7b4c151d8ae7 --- /dev/null +++ b/site/public/v1/software/dalton/index.json @@ -0,0 +1,23 @@ +{ + "id": 2075, + "slug": "dalton", + "name": "Dalton", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Fortran" + ], + "licenses": [ + "GNU Lesser General Public License, version 2.1" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5211666" + ], + "created_at": "2026-07-10T10:12:40.307475", + "updated_at": "2026-07-10T10:12:40.307475", + "url": "/v1/software/dalton" +} diff --git a/site/public/v1/software/dalvik-turbo-virtual-machine/index.json b/site/public/v1/software/dalvik-turbo-virtual-machine/index.json new file mode 100644 index 000000000000..fd17a5d23eea --- /dev/null +++ b/site/public/v1/software/dalvik-turbo-virtual-machine/index.json @@ -0,0 +1,21 @@ +{ + "id": 2076, + "slug": "dalvik-turbo-virtual-machine", + "name": "Dalvik Turbo virtual machine", + "release_date": null, + "developers": [ + "Myriad Group" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16241347" + ], + "created_at": "2026-07-10T10:12:40.307475", + "updated_at": "2026-07-10T10:12:40.307475", + "url": "/v1/software/dalvik-turbo-virtual-machine" +} diff --git a/site/public/v1/software/damos/index.json b/site/public/v1/software/damos/index.json new file mode 100644 index 000000000000..e134a07b542a --- /dev/null +++ b/site/public/v1/software/damos/index.json @@ -0,0 +1,19 @@ +{ + "id": 2077, + "slug": "damos", + "name": "Damos", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76178939" + ], + "created_at": "2026-07-10T10:12:40.307475", + "updated_at": "2026-07-10T10:12:40.307475", + "url": "/v1/software/damos" +} diff --git a/site/public/v1/software/dance-party/index.json b/site/public/v1/software/dance-party/index.json new file mode 100644 index 000000000000..81fc234ddd03 --- /dev/null +++ b/site/public/v1/software/dance-party/index.json @@ -0,0 +1,23 @@ +{ + "id": 2078, + "slug": "dance-party", + "name": "Dance Party", + "release_date": "2026-06-06", + "developers": [ + "Chris Doyle" + ], + "publishers": [], + "operating_systems": [ + "tvOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140199229" + ], + "created_at": "2026-07-10T10:12:40.308514", + "updated_at": "2026-07-10T10:12:40.308514", + "url": "/v1/software/dance-party" +} diff --git a/site/public/v1/software/daos/index.json b/site/public/v1/software/daos/index.json new file mode 100644 index 000000000000..36f2bab7e6b6 --- /dev/null +++ b/site/public/v1/software/daos/index.json @@ -0,0 +1,19 @@ +{ + "id": 2079, + "slug": "daos", + "name": "Daos", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138007144" + ], + "created_at": "2026-07-10T10:12:40.308514", + "updated_at": "2026-07-10T10:12:40.308514", + "url": "/v1/software/daos" +} diff --git a/site/public/v1/software/darcmail/index.json b/site/public/v1/software/darcmail/index.json new file mode 100644 index 000000000000..10fe3a135d8c --- /dev/null +++ b/site/public/v1/software/darcmail/index.json @@ -0,0 +1,23 @@ +{ + "id": 2080, + "slug": "darcmail", + "name": "DArcMail", + "release_date": null, + "developers": [ + "Smithsonian Institution Archives" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Python" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q82723232" + ], + "created_at": "2026-07-10T10:12:40.308514", + "updated_at": "2026-07-10T10:12:40.308514", + "url": "/v1/software/darcmail" +} diff --git a/site/public/v1/software/daria-s-sick-sad-life-planner/index.json b/site/public/v1/software/daria-s-sick-sad-life-planner/index.json new file mode 100644 index 000000000000..131ba2918d94 --- /dev/null +++ b/site/public/v1/software/daria-s-sick-sad-life-planner/index.json @@ -0,0 +1,23 @@ +{ + "id": 2081, + "slug": "daria-s-sick-sad-life-planner", + "name": "Daria's Sick, Sad Life Planner", + "release_date": "1999-01-01", + "developers": [ + "Hypnotix" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16989106" + ], + "created_at": "2026-07-10T10:12:40.309488", + "updated_at": "2026-07-10T10:12:40.309488", + "url": "/v1/software/daria-s-sick-sad-life-planner" +} diff --git a/site/public/v1/software/dariah-de-collection-registry/index.json b/site/public/v1/software/dariah-de-collection-registry/index.json new file mode 100644 index 000000000000..3065213599fb --- /dev/null +++ b/site/public/v1/software/dariah-de-collection-registry/index.json @@ -0,0 +1,19 @@ +{ + "id": 2082, + "slug": "dariah-de-collection-registry", + "name": "DARIAH-DE Collection Registry", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084889" + ], + "created_at": "2026-07-10T10:12:40.309488", + "updated_at": "2026-07-10T10:12:40.309488", + "url": "/v1/software/dariah-de-collection-registry" +} diff --git a/site/public/v1/software/dariah-de-data-modeling-environment/index.json b/site/public/v1/software/dariah-de-data-modeling-environment/index.json new file mode 100644 index 000000000000..a69f5621b0a7 --- /dev/null +++ b/site/public/v1/software/dariah-de-data-modeling-environment/index.json @@ -0,0 +1,19 @@ +{ + "id": 2083, + "slug": "dariah-de-data-modeling-environment", + "name": "DARIAH-DE Data Modeling Environment", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084890" + ], + "created_at": "2026-07-10T10:12:40.310061", + "updated_at": "2026-07-10T10:12:40.310061", + "url": "/v1/software/dariah-de-data-modeling-environment" +} diff --git a/site/public/v1/software/dariah-de-generic-search/index.json b/site/public/v1/software/dariah-de-generic-search/index.json new file mode 100644 index 000000000000..2e8f32fa1135 --- /dev/null +++ b/site/public/v1/software/dariah-de-generic-search/index.json @@ -0,0 +1,19 @@ +{ + "id": 2084, + "slug": "dariah-de-generic-search", + "name": "DARIAH-DE Generic Search", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084892" + ], + "created_at": "2026-07-10T10:12:40.310061", + "updated_at": "2026-07-10T10:12:40.310061", + "url": "/v1/software/dariah-de-generic-search" +} diff --git a/site/public/v1/software/dariah-de-hedgedoc/index.json b/site/public/v1/software/dariah-de-hedgedoc/index.json new file mode 100644 index 000000000000..f08d7841fa73 --- /dev/null +++ b/site/public/v1/software/dariah-de-hedgedoc/index.json @@ -0,0 +1,19 @@ +{ + "id": 2085, + "slug": "dariah-de-hedgedoc", + "name": "DARIAH-DE Hedgedoc", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084893" + ], + "created_at": "2026-07-10T10:12:40.310061", + "updated_at": "2026-07-10T10:12:40.310061", + "url": "/v1/software/dariah-de-hedgedoc" +} diff --git a/site/public/v1/software/dariah-de-mailing-lists/index.json b/site/public/v1/software/dariah-de-mailing-lists/index.json new file mode 100644 index 000000000000..c8ed2d58ad54 --- /dev/null +++ b/site/public/v1/software/dariah-de-mailing-lists/index.json @@ -0,0 +1,19 @@ +{ + "id": 2086, + "slug": "dariah-de-mailing-lists", + "name": "DARIAH-DE Mailing lists", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084895" + ], + "created_at": "2026-07-10T10:12:40.311143", + "updated_at": "2026-07-10T10:12:40.311143", + "url": "/v1/software/dariah-de-mailing-lists" +} diff --git a/site/public/v1/software/dariah-de-openproject/index.json b/site/public/v1/software/dariah-de-openproject/index.json new file mode 100644 index 000000000000..15eae0264d45 --- /dev/null +++ b/site/public/v1/software/dariah-de-openproject/index.json @@ -0,0 +1,19 @@ +{ + "id": 2087, + "slug": "dariah-de-openproject", + "name": "DARIAH-DE OpenProject", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084896" + ], + "created_at": "2026-07-10T10:12:40.311143", + "updated_at": "2026-07-10T10:12:40.311143", + "url": "/v1/software/dariah-de-openproject" +} diff --git a/site/public/v1/software/dariah-de-publikator/index.json b/site/public/v1/software/dariah-de-publikator/index.json new file mode 100644 index 000000000000..af0ce960a83c --- /dev/null +++ b/site/public/v1/software/dariah-de-publikator/index.json @@ -0,0 +1,19 @@ +{ + "id": 2088, + "slug": "dariah-de-publikator", + "name": "DARIAH-DE Publikator", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084897" + ], + "created_at": "2026-07-10T10:12:40.311143", + "updated_at": "2026-07-10T10:12:40.311143", + "url": "/v1/software/dariah-de-publikator" +} diff --git a/site/public/v1/software/dariah-de-repository-dhrep/index.json b/site/public/v1/software/dariah-de-repository-dhrep/index.json new file mode 100644 index 000000000000..28d88598fee0 --- /dev/null +++ b/site/public/v1/software/dariah-de-repository-dhrep/index.json @@ -0,0 +1,19 @@ +{ + "id": 2089, + "slug": "dariah-de-repository-dhrep", + "name": "DARIAH-DE Repository dhrep", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084898" + ], + "created_at": "2026-07-10T10:12:40.312141", + "updated_at": "2026-07-10T10:12:40.312141", + "url": "/v1/software/dariah-de-repository-dhrep" +} diff --git a/site/public/v1/software/dariah-de-survey-provisioning/index.json b/site/public/v1/software/dariah-de-survey-provisioning/index.json new file mode 100644 index 000000000000..4fcfe77729b2 --- /dev/null +++ b/site/public/v1/software/dariah-de-survey-provisioning/index.json @@ -0,0 +1,19 @@ +{ + "id": 2090, + "slug": "dariah-de-survey-provisioning", + "name": "DARIAH-DE Survey Provisioning", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084899" + ], + "created_at": "2026-07-10T10:12:40.312141", + "updated_at": "2026-07-10T10:12:40.312141", + "url": "/v1/software/dariah-de-survey-provisioning" +} diff --git a/site/public/v1/software/dariah-de-topicsexplorer/index.json b/site/public/v1/software/dariah-de-topicsexplorer/index.json new file mode 100644 index 000000000000..6a925fa3e17d --- /dev/null +++ b/site/public/v1/software/dariah-de-topicsexplorer/index.json @@ -0,0 +1,19 @@ +{ + "id": 2091, + "slug": "dariah-de-topicsexplorer", + "name": "DARIAH-DE TopicsExplorer", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084900" + ], + "created_at": "2026-07-10T10:12:40.312141", + "updated_at": "2026-07-10T10:12:40.312141", + "url": "/v1/software/dariah-de-topicsexplorer" +} diff --git a/site/public/v1/software/dariah-de-working-papers/index.json b/site/public/v1/software/dariah-de-working-papers/index.json new file mode 100644 index 000000000000..4e2ec973f0ae --- /dev/null +++ b/site/public/v1/software/dariah-de-working-papers/index.json @@ -0,0 +1,19 @@ +{ + "id": 2092, + "slug": "dariah-de-working-papers", + "name": "DARIAH-DE Working Papers", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084901" + ], + "created_at": "2026-07-10T10:12:40.313140", + "updated_at": "2026-07-10T10:12:40.313140", + "url": "/v1/software/dariah-de-working-papers" +} diff --git a/site/public/v1/software/dariah-eldah-consent-form-wizard-cfw/index.json b/site/public/v1/software/dariah-eldah-consent-form-wizard-cfw/index.json new file mode 100644 index 000000000000..d9101e690930 --- /dev/null +++ b/site/public/v1/software/dariah-eldah-consent-form-wizard-cfw/index.json @@ -0,0 +1,19 @@ +{ + "id": 2093, + "slug": "dariah-eldah-consent-form-wizard-cfw", + "name": "DARIAH ELDAH Consent Form Wizard (CFW)", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084902" + ], + "created_at": "2026-07-10T10:12:40.313140", + "updated_at": "2026-07-10T10:12:40.313140", + "url": "/v1/software/dariah-eldah-consent-form-wizard-cfw" +} diff --git a/site/public/v1/software/darkbasic-professional/index.json b/site/public/v1/software/darkbasic-professional/index.json new file mode 100644 index 000000000000..bb5027b54578 --- /dev/null +++ b/site/public/v1/software/darkbasic-professional/index.json @@ -0,0 +1,21 @@ +{ + "id": 2094, + "slug": "darkbasic-professional", + "name": "DarkBASIC Professional", + "release_date": null, + "developers": [ + "The Game Creators" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10986684" + ], + "created_at": "2026-07-10T10:12:40.313140", + "updated_at": "2026-07-10T10:12:40.313140", + "url": "/v1/software/darkbasic-professional" +} diff --git a/site/public/v1/software/darna-tchad/index.json b/site/public/v1/software/darna-tchad/index.json new file mode 100644 index 000000000000..7ff53c5b0156 --- /dev/null +++ b/site/public/v1/software/darna-tchad/index.json @@ -0,0 +1,21 @@ +{ + "id": 2095, + "slug": "darna-tchad", + "name": "Darna Tchad", + "release_date": "2014-01-01", + "developers": [ + "Nair Abakar" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107432337" + ], + "created_at": "2026-07-10T10:12:40.313140", + "updated_at": "2026-07-10T10:12:40.313140", + "url": "/v1/software/darna-tchad" +} diff --git a/site/public/v1/software/dart/index.json b/site/public/v1/software/dart/index.json new file mode 100644 index 000000000000..01090ae69f92 --- /dev/null +++ b/site/public/v1/software/dart/index.json @@ -0,0 +1,21 @@ +{ + "id": 2096, + "slug": "dart", + "name": "DART", + "release_date": null, + "developers": [ + "Georgia Tech" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11916456" + ], + "created_at": "2026-07-10T10:12:40.314168", + "updated_at": "2026-07-10T10:12:40.314168", + "url": "/v1/software/dart" +} diff --git a/site/public/v1/software/das-element/index.json b/site/public/v1/software/das-element/index.json new file mode 100644 index 000000000000..38d10a3c4b41 --- /dev/null +++ b/site/public/v1/software/das-element/index.json @@ -0,0 +1,25 @@ +{ + "id": 2097, + "slug": "das-element", + "name": "Das Element", + "release_date": null, + "developers": [ + "Jonas Kluger" + ], + "publishers": [], + "operating_systems": [ + "cross-platform", + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138800766" + ], + "created_at": "2026-07-10T10:12:40.314168", + "updated_at": "2026-07-10T10:12:40.314168", + "url": "/v1/software/das-element" +} diff --git a/site/public/v1/software/das-programm/index.json b/site/public/v1/software/das-programm/index.json new file mode 100644 index 000000000000..4e473f8d98eb --- /dev/null +++ b/site/public/v1/software/das-programm/index.json @@ -0,0 +1,19 @@ +{ + "id": 2098, + "slug": "das-programm", + "name": "das Programm", + "release_date": "2020-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139816819" + ], + "created_at": "2026-07-10T10:12:40.314168", + "updated_at": "2026-07-10T10:12:40.314168", + "url": "/v1/software/das-programm" +} diff --git a/site/public/v1/software/dasboot/index.json b/site/public/v1/software/dasboot/index.json new file mode 100644 index 000000000000..852669b24abe --- /dev/null +++ b/site/public/v1/software/dasboot/index.json @@ -0,0 +1,21 @@ +{ + "id": 2099, + "slug": "dasboot", + "name": "DasBoot", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5226349" + ], + "created_at": "2026-07-10T10:12:40.315145", + "updated_at": "2026-07-10T10:12:40.315145", + "url": "/v1/software/dasboot" +} diff --git a/site/public/v1/software/dash-radio/index.json b/site/public/v1/software/dash-radio/index.json new file mode 100644 index 000000000000..a59cd3d5b02c --- /dev/null +++ b/site/public/v1/software/dash-radio/index.json @@ -0,0 +1,21 @@ +{ + "id": 2100, + "slug": "dash-radio", + "name": "Dash Radio", + "release_date": "2014-08-19", + "developers": [], + "publishers": [], + "operating_systems": [ + "iOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22907651" + ], + "created_at": "2026-07-10T10:12:40.315145", + "updated_at": "2026-07-10T10:12:40.315145", + "url": "/v1/software/dash-radio" +} diff --git a/site/public/v1/software/dashboard-of-sustainability/index.json b/site/public/v1/software/dashboard-of-sustainability/index.json new file mode 100644 index 000000000000..2c52371f9278 --- /dev/null +++ b/site/public/v1/software/dashboard-of-sustainability/index.json @@ -0,0 +1,19 @@ +{ + "id": 2101, + "slug": "dashboard-of-sustainability", + "name": "Dashboard of Sustainability", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5226598" + ], + "created_at": "2026-07-10T10:12:40.315145", + "updated_at": "2026-07-10T10:12:40.315145", + "url": "/v1/software/dashboard-of-sustainability" +} diff --git a/site/public/v1/software/dashboard/index.json b/site/public/v1/software/dashboard/index.json new file mode 100644 index 000000000000..cf9e69fc5e13 --- /dev/null +++ b/site/public/v1/software/dashboard/index.json @@ -0,0 +1,21 @@ +{ + "id": 2102, + "slug": "dashboard", + "name": "Dashboard", + "release_date": null, + "developers": [ + "Apple Inc." + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1171872" + ], + "created_at": "2026-07-10T10:12:40.316126", + "updated_at": "2026-07-10T10:12:40.316126", + "url": "/v1/software/dashboard" +} diff --git a/site/public/v1/software/dashcode/index.json b/site/public/v1/software/dashcode/index.json new file mode 100644 index 000000000000..abf20a67061c --- /dev/null +++ b/site/public/v1/software/dashcode/index.json @@ -0,0 +1,21 @@ +{ + "id": 2103, + "slug": "dashcode", + "name": "Dashcode", + "release_date": null, + "developers": [ + "Apple Inc." + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1171875" + ], + "created_at": "2026-07-10T10:12:40.316126", + "updated_at": "2026-07-10T10:12:40.316126", + "url": "/v1/software/dashcode" +} diff --git a/site/public/v1/software/dasho/index.json b/site/public/v1/software/dasho/index.json new file mode 100644 index 000000000000..e63dffde7c68 --- /dev/null +++ b/site/public/v1/software/dasho/index.json @@ -0,0 +1,19 @@ +{ + "id": 2104, + "slug": "dasho", + "name": "DashO", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108541906" + ], + "created_at": "2026-07-10T10:12:40.316126", + "updated_at": "2026-07-10T10:12:40.316126", + "url": "/v1/software/dasho" +} diff --git a/site/public/v1/software/data-build-tool/index.json b/site/public/v1/software/data-build-tool/index.json new file mode 100644 index 000000000000..b998b616ab30 --- /dev/null +++ b/site/public/v1/software/data-build-tool/index.json @@ -0,0 +1,23 @@ +{ + "id": 2105, + "slug": "data-build-tool", + "name": "data build tool", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Python" + ], + "licenses": [ + "Apache Software License 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107610347" + ], + "created_at": "2026-07-10T10:12:40.317159", + "updated_at": "2026-07-10T10:12:40.317159", + "url": "/v1/software/data-build-tool" +} diff --git a/site/public/v1/software/data-corruptor/index.json b/site/public/v1/software/data-corruptor/index.json new file mode 100644 index 000000000000..71ed1a2d8b16 --- /dev/null +++ b/site/public/v1/software/data-corruptor/index.json @@ -0,0 +1,19 @@ +{ + "id": 2106, + "slug": "data-corruptor", + "name": "Data Corruptor", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137201249" + ], + "created_at": "2026-07-10T10:12:40.317159", + "updated_at": "2026-07-10T10:12:40.317159", + "url": "/v1/software/data-corruptor" +} diff --git a/site/public/v1/software/data-desk-q126084903/index.json b/site/public/v1/software/data-desk-q126084903/index.json new file mode 100644 index 000000000000..e19c5bbd96cc --- /dev/null +++ b/site/public/v1/software/data-desk-q126084903/index.json @@ -0,0 +1,19 @@ +{ + "id": 2107, + "slug": "data-desk-q126084903", + "name": "Data Desk", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084903" + ], + "created_at": "2026-07-10T10:12:40.317159", + "updated_at": "2026-07-10T10:12:40.317159", + "url": "/v1/software/data-desk-q126084903" +} diff --git a/site/public/v1/software/data-desk/index.json b/site/public/v1/software/data-desk/index.json new file mode 100644 index 000000000000..4ee37f3758ae --- /dev/null +++ b/site/public/v1/software/data-desk/index.json @@ -0,0 +1,19 @@ +{ + "id": 2108, + "slug": "data-desk", + "name": "Data Desk", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5227156" + ], + "created_at": "2026-07-10T10:12:40.318139", + "updated_at": "2026-07-10T10:12:40.318139", + "url": "/v1/software/data-desk" +} diff --git a/site/public/v1/software/data-dictionary-generator-ddg/index.json b/site/public/v1/software/data-dictionary-generator-ddg/index.json new file mode 100644 index 000000000000..1215572d455a --- /dev/null +++ b/site/public/v1/software/data-dictionary-generator-ddg/index.json @@ -0,0 +1,19 @@ +{ + "id": 2109, + "slug": "data-dictionary-generator-ddg", + "name": "Data Dictionary Generator (DDG)", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084904" + ], + "created_at": "2026-07-10T10:12:40.318139", + "updated_at": "2026-07-10T10:12:40.318139", + "url": "/v1/software/data-dictionary-generator-ddg" +} diff --git a/site/public/v1/software/data-facility-product/index.json b/site/public/v1/software/data-facility-product/index.json new file mode 100644 index 000000000000..a0fda8fe326b --- /dev/null +++ b/site/public/v1/software/data-facility-product/index.json @@ -0,0 +1,23 @@ +{ + "id": 2110, + "slug": "data-facility-product", + "name": "Data Facility Product", + "release_date": null, + "developers": [ + "IBM" + ], + "publishers": [], + "operating_systems": [ + "MVS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28871075" + ], + "created_at": "2026-07-10T10:12:40.318139", + "updated_at": "2026-07-10T10:12:40.318139", + "url": "/v1/software/data-facility-product" +} diff --git a/site/public/v1/software/data-for-research-dfr/index.json b/site/public/v1/software/data-for-research-dfr/index.json new file mode 100644 index 000000000000..85e7d1ffee05 --- /dev/null +++ b/site/public/v1/software/data-for-research-dfr/index.json @@ -0,0 +1,19 @@ +{ + "id": 2111, + "slug": "data-for-research-dfr", + "name": "Data for Research (DFR)", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084905" + ], + "created_at": "2026-07-10T10:12:40.319120", + "updated_at": "2026-07-10T10:12:40.319120", + "url": "/v1/software/data-for-research-dfr" +} diff --git a/site/public/v1/software/data-foundry-jupyter-notebooks/index.json b/site/public/v1/software/data-foundry-jupyter-notebooks/index.json new file mode 100644 index 000000000000..7fb1b4a5eaaf --- /dev/null +++ b/site/public/v1/software/data-foundry-jupyter-notebooks/index.json @@ -0,0 +1,19 @@ +{ + "id": 2112, + "slug": "data-foundry-jupyter-notebooks", + "name": "Data Foundry - Jupyter Notebooks", + "release_date": "2020-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111411199" + ], + "created_at": "2026-07-10T10:12:40.319120", + "updated_at": "2026-07-10T10:12:40.319120", + "url": "/v1/software/data-foundry-jupyter-notebooks" +} diff --git a/site/public/v1/software/data-illustrator/index.json b/site/public/v1/software/data-illustrator/index.json new file mode 100644 index 000000000000..f92fac22965e --- /dev/null +++ b/site/public/v1/software/data-illustrator/index.json @@ -0,0 +1,19 @@ +{ + "id": 2113, + "slug": "data-illustrator", + "name": "Data-illustrator", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084907" + ], + "created_at": "2026-07-10T10:12:40.319120", + "updated_at": "2026-07-10T10:12:40.319120", + "url": "/v1/software/data-illustrator" +} diff --git a/site/public/v1/software/data-loader/index.json b/site/public/v1/software/data-loader/index.json new file mode 100644 index 000000000000..99acd533c857 --- /dev/null +++ b/site/public/v1/software/data-loader/index.json @@ -0,0 +1,28 @@ +{ + "id": 2114, + "slug": "data-loader", + "name": "Data Loader", + "release_date": null, + "developers": [ + "Salesforce" + ], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [ + "Java" + ], + "licenses": [ + "3-clause BSD License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115602902" + ], + "created_at": "2026-07-10T10:12:40.320125", + "updated_at": "2026-07-10T10:12:40.320125", + "url": "/v1/software/data-loader" +} diff --git a/site/public/v1/software/data-manipulation/index.json b/site/public/v1/software/data-manipulation/index.json new file mode 100644 index 000000000000..f524c266daaa --- /dev/null +++ b/site/public/v1/software/data-manipulation/index.json @@ -0,0 +1,19 @@ +{ + "id": 2115, + "slug": "data-manipulation", + "name": "data manipulation", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62747096" + ], + "created_at": "2026-07-10T10:12:40.320125", + "updated_at": "2026-07-10T10:12:40.320125", + "url": "/v1/software/data-manipulation" +} diff --git a/site/public/v1/software/data-model-api/index.json b/site/public/v1/software/data-model-api/index.json new file mode 100644 index 000000000000..fa7d247fc0de --- /dev/null +++ b/site/public/v1/software/data-model-api/index.json @@ -0,0 +1,19 @@ +{ + "id": 2116, + "slug": "data-model-api", + "name": "Data Model API", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76181475" + ], + "created_at": "2026-07-10T10:12:40.320125", + "updated_at": "2026-07-10T10:12:40.320125", + "url": "/v1/software/data-model-api" +} diff --git a/site/public/v1/software/data-stewardship-wizard/index.json b/site/public/v1/software/data-stewardship-wizard/index.json new file mode 100644 index 000000000000..a66cb103c043 --- /dev/null +++ b/site/public/v1/software/data-stewardship-wizard/index.json @@ -0,0 +1,19 @@ +{ + "id": 2117, + "slug": "data-stewardship-wizard", + "name": "Data Stewardship Wizard", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123311024" + ], + "created_at": "2026-07-10T10:12:40.321121", + "updated_at": "2026-07-10T10:12:40.321121", + "url": "/v1/software/data-stewardship-wizard" +} diff --git a/site/public/v1/software/data-storage-tape-management-system/index.json b/site/public/v1/software/data-storage-tape-management-system/index.json new file mode 100644 index 000000000000..2f8b084e5642 --- /dev/null +++ b/site/public/v1/software/data-storage-tape-management-system/index.json @@ -0,0 +1,19 @@ +{ + "id": 2118, + "slug": "data-storage-tape-management-system", + "name": "data storage tape management system", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115798549" + ], + "created_at": "2026-07-10T10:12:40.321121", + "updated_at": "2026-07-10T10:12:40.321121", + "url": "/v1/software/data-storage-tape-management-system" +} diff --git a/site/public/v1/software/data-studio/index.json b/site/public/v1/software/data-studio/index.json new file mode 100644 index 000000000000..48f5435551a2 --- /dev/null +++ b/site/public/v1/software/data-studio/index.json @@ -0,0 +1,21 @@ +{ + "id": 2119, + "slug": "data-studio", + "name": "Data Studio", + "release_date": null, + "developers": [ + "Google" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60165325" + ], + "created_at": "2026-07-10T10:12:40.321121", + "updated_at": "2026-07-10T10:12:40.321121", + "url": "/v1/software/data-studio" +} diff --git a/site/public/v1/software/data-toolbar/index.json b/site/public/v1/software/data-toolbar/index.json new file mode 100644 index 000000000000..0bb79c233b7b --- /dev/null +++ b/site/public/v1/software/data-toolbar/index.json @@ -0,0 +1,21 @@ +{ + "id": 2120, + "slug": "data-toolbar", + "name": "Data Toolbar", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5227223" + ], + "created_at": "2026-07-10T10:12:40.321121", + "updated_at": "2026-07-10T10:12:40.321121", + "url": "/v1/software/data-toolbar" +} diff --git a/site/public/v1/software/data-version-control/index.json b/site/public/v1/software/data-version-control/index.json new file mode 100644 index 000000000000..ae921e01ae4d --- /dev/null +++ b/site/public/v1/software/data-version-control/index.json @@ -0,0 +1,19 @@ +{ + "id": 2121, + "slug": "data-version-control", + "name": "Data Version Control", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115519393" + ], + "created_at": "2026-07-10T10:12:40.322173", + "updated_at": "2026-07-10T10:12:40.322173", + "url": "/v1/software/data-version-control" +} diff --git a/site/public/v1/software/databank/index.json b/site/public/v1/software/databank/index.json new file mode 100644 index 000000000000..3ab5fd5f66f9 --- /dev/null +++ b/site/public/v1/software/databank/index.json @@ -0,0 +1,19 @@ +{ + "id": 2122, + "slug": "databank", + "name": "databank", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q30743204" + ], + "created_at": "2026-07-10T10:12:40.322173", + "updated_at": "2026-07-10T10:12:40.322173", + "url": "/v1/software/databank" +} diff --git a/site/public/v1/software/database-workbench/index.json b/site/public/v1/software/database-workbench/index.json new file mode 100644 index 000000000000..d751792c0f99 --- /dev/null +++ b/site/public/v1/software/database-workbench/index.json @@ -0,0 +1,21 @@ +{ + "id": 2123, + "slug": "database-workbench", + "name": "Database Workbench", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18149561" + ], + "created_at": "2026-07-10T10:12:40.323157", + "updated_at": "2026-07-10T10:12:40.323157", + "url": "/v1/software/database-workbench" +} diff --git a/site/public/v1/software/databasespy/index.json b/site/public/v1/software/databasespy/index.json new file mode 100644 index 000000000000..443890d0881a --- /dev/null +++ b/site/public/v1/software/databasespy/index.json @@ -0,0 +1,23 @@ +{ + "id": 2124, + "slug": "databasespy", + "name": "DatabaseSpy", + "release_date": null, + "developers": [ + "Altova" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "end-user license agreement" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5227380" + ], + "created_at": "2026-07-10T10:12:40.323157", + "updated_at": "2026-07-10T10:12:40.323157", + "url": "/v1/software/databasespy" +} diff --git a/site/public/v1/software/datacad/index.json b/site/public/v1/software/datacad/index.json new file mode 100644 index 000000000000..310e027101ab --- /dev/null +++ b/site/public/v1/software/datacad/index.json @@ -0,0 +1,19 @@ +{ + "id": 2125, + "slug": "datacad", + "name": "DataCAD", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5227108" + ], + "created_at": "2026-07-10T10:12:40.323157", + "updated_at": "2026-07-10T10:12:40.323157", + "url": "/v1/software/datacad" +} diff --git a/site/public/v1/software/datacoin-hp/index.json b/site/public/v1/software/datacoin-hp/index.json new file mode 100644 index 000000000000..4090d9ef1aec --- /dev/null +++ b/site/public/v1/software/datacoin-hp/index.json @@ -0,0 +1,21 @@ +{ + "id": 2126, + "slug": "datacoin-hp", + "name": "datacoin-hp", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974800" + ], + "created_at": "2026-07-10T10:12:40.323157", + "updated_at": "2026-07-10T10:12:40.323157", + "url": "/v1/software/datacoin-hp" +} diff --git a/site/public/v1/software/datacom-db/index.json b/site/public/v1/software/datacom-db/index.json new file mode 100644 index 000000000000..2794a1c6031e --- /dev/null +++ b/site/public/v1/software/datacom-db/index.json @@ -0,0 +1,23 @@ +{ + "id": 2127, + "slug": "datacom-db", + "name": "DATACOM/DB", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "z/OS" + ], + "programming_languages": [], + "licenses": [ + "end-user license agreement" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5204331" + ], + "created_at": "2026-07-10T10:12:40.324121", + "updated_at": "2026-07-10T10:12:40.324121", + "url": "/v1/software/datacom-db" +} diff --git a/site/public/v1/software/datacopia/index.json b/site/public/v1/software/datacopia/index.json new file mode 100644 index 000000000000..5b0c863c4a75 --- /dev/null +++ b/site/public/v1/software/datacopia/index.json @@ -0,0 +1,19 @@ +{ + "id": 2128, + "slug": "datacopia", + "name": "Datacopia", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18206349" + ], + "created_at": "2026-07-10T10:12:40.324121", + "updated_at": "2026-07-10T10:12:40.324121", + "url": "/v1/software/datacopia" +} diff --git a/site/public/v1/software/dataddo/index.json b/site/public/v1/software/dataddo/index.json new file mode 100644 index 000000000000..6e491b04a0b0 --- /dev/null +++ b/site/public/v1/software/dataddo/index.json @@ -0,0 +1,19 @@ +{ + "id": 2129, + "slug": "dataddo", + "name": "Dataddo", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140377030" + ], + "created_at": "2026-07-10T10:12:40.324121", + "updated_at": "2026-07-10T10:12:40.324121", + "url": "/v1/software/dataddo" +} diff --git a/site/public/v1/software/datadetective/index.json b/site/public/v1/software/datadetective/index.json new file mode 100644 index 000000000000..29196678c64e --- /dev/null +++ b/site/public/v1/software/datadetective/index.json @@ -0,0 +1,21 @@ +{ + "id": 2130, + "slug": "datadetective", + "name": "DataDetective", + "release_date": null, + "developers": [ + "Sentient Information Systems" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5227109" + ], + "created_at": "2026-07-10T10:12:40.325142", + "updated_at": "2026-07-10T10:12:40.325142", + "url": "/v1/software/datadetective" +} diff --git a/site/public/v1/software/dataflex/index.json b/site/public/v1/software/dataflex/index.json new file mode 100644 index 000000000000..01df05f370eb --- /dev/null +++ b/site/public/v1/software/dataflex/index.json @@ -0,0 +1,19 @@ +{ + "id": 2131, + "slug": "dataflex", + "name": "DataFlex", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2391203" + ], + "created_at": "2026-07-10T10:12:40.325142", + "updated_at": "2026-07-10T10:12:40.325142", + "url": "/v1/software/dataflex" +} diff --git a/site/public/v1/software/datagraph/index.json b/site/public/v1/software/datagraph/index.json new file mode 100644 index 000000000000..fca9732848af --- /dev/null +++ b/site/public/v1/software/datagraph/index.json @@ -0,0 +1,19 @@ +{ + "id": 2132, + "slug": "datagraph", + "name": "DataGraph", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q104901838" + ], + "created_at": "2026-07-10T10:12:40.325142", + "updated_at": "2026-07-10T10:12:40.325142", + "url": "/v1/software/datagraph" +} diff --git a/site/public/v1/software/datahero/index.json b/site/public/v1/software/datahero/index.json new file mode 100644 index 000000000000..f9b2d45b0855 --- /dev/null +++ b/site/public/v1/software/datahero/index.json @@ -0,0 +1,19 @@ +{ + "id": 2133, + "slug": "datahero", + "name": "DataHero", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084906" + ], + "created_at": "2026-07-10T10:12:40.326070", + "updated_at": "2026-07-10T10:12:40.326070", + "url": "/v1/software/datahero" +} diff --git a/site/public/v1/software/datalad/index.json b/site/public/v1/software/datalad/index.json new file mode 100644 index 000000000000..ad5466603374 --- /dev/null +++ b/site/public/v1/software/datalad/index.json @@ -0,0 +1,21 @@ +{ + "id": 2134, + "slug": "datalad", + "name": "DataLad", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Python" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115117478" + ], + "created_at": "2026-07-10T10:12:40.326070", + "updated_at": "2026-07-10T10:12:40.326070", + "url": "/v1/software/datalad" +} diff --git a/site/public/v1/software/dataobjects-net/index.json b/site/public/v1/software/dataobjects-net/index.json new file mode 100644 index 000000000000..977988453624 --- /dev/null +++ b/site/public/v1/software/dataobjects-net/index.json @@ -0,0 +1,19 @@ +{ + "id": 2135, + "slug": "dataobjects-net", + "name": "DataObjects.NET", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4037058" + ], + "created_at": "2026-07-10T10:12:40.326070", + "updated_at": "2026-07-10T10:12:40.326070", + "url": "/v1/software/dataobjects-net" +} diff --git a/site/public/v1/software/dataplot/index.json b/site/public/v1/software/dataplot/index.json new file mode 100644 index 000000000000..6ecb7e1b0b5a --- /dev/null +++ b/site/public/v1/software/dataplot/index.json @@ -0,0 +1,26 @@ +{ + "id": 2136, + "slug": "dataplot", + "name": "Dataplot", + "release_date": "1978-01-01", + "developers": [ + "National Institute of Standards and Technology" + ], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [ + "Fortran" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5227478" + ], + "created_at": "2026-07-10T10:12:40.326070", + "updated_at": "2026-07-10T10:12:40.326070", + "url": "/v1/software/dataplot" +} diff --git a/site/public/v1/software/datascene/index.json b/site/public/v1/software/datascene/index.json new file mode 100644 index 000000000000..d681c9a1f140 --- /dev/null +++ b/site/public/v1/software/datascene/index.json @@ -0,0 +1,21 @@ +{ + "id": 2137, + "slug": "datascene", + "name": "DataScene", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5227126" + ], + "created_at": "2026-07-10T10:12:40.327167", + "updated_at": "2026-07-10T10:12:40.327167", + "url": "/v1/software/datascene" +} diff --git a/site/public/v1/software/datasets-load/index.json b/site/public/v1/software/datasets-load/index.json new file mode 100644 index 000000000000..e0a4ebf18b82 --- /dev/null +++ b/site/public/v1/software/datasets-load/index.json @@ -0,0 +1,21 @@ +{ + "id": 2138, + "slug": "datasets-load", + "name": "Datasets.load", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "R" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60744039" + ], + "created_at": "2026-07-10T10:12:40.327167", + "updated_at": "2026-07-10T10:12:40.327167", + "url": "/v1/software/datasets-load" +} diff --git a/site/public/v1/software/datashield/index.json b/site/public/v1/software/datashield/index.json new file mode 100644 index 000000000000..238e86515019 --- /dev/null +++ b/site/public/v1/software/datashield/index.json @@ -0,0 +1,21 @@ +{ + "id": 2139, + "slug": "datashield", + "name": "DataSHIELD", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "R" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130616688" + ], + "created_at": "2026-07-10T10:12:40.327167", + "updated_at": "2026-07-10T10:12:40.327167", + "url": "/v1/software/datashield" +} diff --git a/site/public/v1/software/datatank/index.json b/site/public/v1/software/datatank/index.json new file mode 100644 index 000000000000..24cf037b2ad0 --- /dev/null +++ b/site/public/v1/software/datatank/index.json @@ -0,0 +1,19 @@ +{ + "id": 2140, + "slug": "datatank", + "name": "DataTank", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084908" + ], + "created_at": "2026-07-10T10:12:40.328166", + "updated_at": "2026-07-10T10:12:40.328166", + "url": "/v1/software/datatank" +} diff --git a/site/public/v1/software/dataverse-r-study/index.json b/site/public/v1/software/dataverse-r-study/index.json new file mode 100644 index 000000000000..f6791e29bb77 --- /dev/null +++ b/site/public/v1/software/dataverse-r-study/index.json @@ -0,0 +1,21 @@ +{ + "id": 2141, + "slug": "dataverse-r-study", + "name": "dataverse-r-study", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127485519" + ], + "created_at": "2026-07-10T10:12:40.328166", + "updated_at": "2026-07-10T10:12:40.328166", + "url": "/v1/software/dataverse-r-study" +} diff --git a/site/public/v1/software/datenstrom-yellow/index.json b/site/public/v1/software/datenstrom-yellow/index.json new file mode 100644 index 000000000000..c804a8e63cfa --- /dev/null +++ b/site/public/v1/software/datenstrom-yellow/index.json @@ -0,0 +1,19 @@ +{ + "id": 2142, + "slug": "datenstrom-yellow", + "name": "Datenstrom Yellow", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q29364695" + ], + "created_at": "2026-07-10T10:12:40.328166", + "updated_at": "2026-07-10T10:12:40.328166", + "url": "/v1/software/datenstrom-yellow" +} diff --git a/site/public/v1/software/dateutils/index.json b/site/public/v1/software/dateutils/index.json new file mode 100644 index 000000000000..bbf8fd10a957 --- /dev/null +++ b/site/public/v1/software/dateutils/index.json @@ -0,0 +1,19 @@ +{ + "id": 2143, + "slug": "dateutils", + "name": "dateutils", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62847786" + ], + "created_at": "2026-07-10T10:12:40.329071", + "updated_at": "2026-07-10T10:12:40.329071", + "url": "/v1/software/dateutils" +} diff --git a/site/public/v1/software/datopian/index.json b/site/public/v1/software/datopian/index.json new file mode 100644 index 000000000000..55de331fc084 --- /dev/null +++ b/site/public/v1/software/datopian/index.json @@ -0,0 +1,19 @@ +{ + "id": 2144, + "slug": "datopian", + "name": "Datopian", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123049092" + ], + "created_at": "2026-07-10T10:12:40.329071", + "updated_at": "2026-07-10T10:12:40.329071", + "url": "/v1/software/datopian" +} diff --git a/site/public/v1/software/dave/index.json b/site/public/v1/software/dave/index.json new file mode 100644 index 000000000000..8770b8c6d4ef --- /dev/null +++ b/site/public/v1/software/dave/index.json @@ -0,0 +1,21 @@ +{ + "id": 2145, + "slug": "dave", + "name": "DAvE", + "release_date": null, + "developers": [ + "Infineon Technologies" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5204374" + ], + "created_at": "2026-07-10T10:12:40.329071", + "updated_at": "2026-07-10T10:12:40.330069", + "url": "/v1/software/dave" +} diff --git a/site/public/v1/software/david-laserscanner/index.json b/site/public/v1/software/david-laserscanner/index.json new file mode 100644 index 000000000000..9ac306eba680 --- /dev/null +++ b/site/public/v1/software/david-laserscanner/index.json @@ -0,0 +1,19 @@ +{ + "id": 2146, + "slug": "david-laserscanner", + "name": "David Laserscanner", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1173463" + ], + "created_at": "2026-07-10T10:12:40.330069", + "updated_at": "2026-07-10T10:12:40.330069", + "url": "/v1/software/david-laserscanner" +} diff --git a/site/public/v1/software/david/index.json b/site/public/v1/software/david/index.json new file mode 100644 index 000000000000..dfbeb16bee27 --- /dev/null +++ b/site/public/v1/software/david/index.json @@ -0,0 +1,21 @@ +{ + "id": 2147, + "slug": "david", + "name": "DAVID", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5204342" + ], + "created_at": "2026-07-10T10:12:40.330069", + "updated_at": "2026-07-10T10:12:40.330069", + "url": "/v1/software/david" +} diff --git a/site/public/v1/software/dawn/index.json b/site/public/v1/software/dawn/index.json new file mode 100644 index 000000000000..3a97db8873d6 --- /dev/null +++ b/site/public/v1/software/dawn/index.json @@ -0,0 +1,21 @@ +{ + "id": 2148, + "slug": "dawn", + "name": "Dawn", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Apache Software License 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q119854416" + ], + "created_at": "2026-07-10T10:12:40.330069", + "updated_at": "2026-07-10T10:12:40.330069", + "url": "/v1/software/dawn" +} diff --git a/site/public/v1/software/dax/index.json b/site/public/v1/software/dax/index.json new file mode 100644 index 000000000000..bd577f778401 --- /dev/null +++ b/site/public/v1/software/dax/index.json @@ -0,0 +1,19 @@ +{ + "id": 2149, + "slug": "dax", + "name": "DAX", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17104553" + ], + "created_at": "2026-07-10T10:12:40.331069", + "updated_at": "2026-07-10T10:12:40.331069", + "url": "/v1/software/dax" +} diff --git a/site/public/v1/software/daxin/index.json b/site/public/v1/software/daxin/index.json new file mode 100644 index 000000000000..a2791d665f6d --- /dev/null +++ b/site/public/v1/software/daxin/index.json @@ -0,0 +1,19 @@ +{ + "id": 2150, + "slug": "daxin", + "name": "Daxin", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111913144" + ], + "created_at": "2026-07-10T10:12:40.331069", + "updated_at": "2026-07-10T10:12:40.331069", + "url": "/v1/software/daxin" +} diff --git a/site/public/v1/software/daylio/index.json b/site/public/v1/software/daylio/index.json new file mode 100644 index 000000000000..22b0d1bd9d0c --- /dev/null +++ b/site/public/v1/software/daylio/index.json @@ -0,0 +1,21 @@ +{ + "id": 2151, + "slug": "daylio", + "name": "Daylio", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "iOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109406959" + ], + "created_at": "2026-07-10T10:12:40.331069", + "updated_at": "2026-07-10T10:12:40.331069", + "url": "/v1/software/daylio" +} diff --git a/site/public/v1/software/daystream-ai/index.json b/site/public/v1/software/daystream-ai/index.json new file mode 100644 index 000000000000..ff8bd5fe4abd --- /dev/null +++ b/site/public/v1/software/daystream-ai/index.json @@ -0,0 +1,23 @@ +{ + "id": 2152, + "slug": "daystream-ai", + "name": "DayStream AI", + "release_date": "2026-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [ + "artificial intelligence", + "mobile app", + "productivity software" + ], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139498857" + ], + "created_at": "2026-07-10T10:12:40.332154", + "updated_at": "2026-07-10T10:12:40.332154", + "url": "/v1/software/daystream-ai" +} diff --git a/site/public/v1/software/daz-studio/index.json b/site/public/v1/software/daz-studio/index.json new file mode 100644 index 000000000000..6fba897c47df --- /dev/null +++ b/site/public/v1/software/daz-studio/index.json @@ -0,0 +1,21 @@ +{ + "id": 2153, + "slug": "daz-studio", + "name": "DAZ Studio", + "release_date": null, + "developers": [ + "DAZ 3D" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q460296" + ], + "created_at": "2026-07-10T10:12:40.332154", + "updated_at": "2026-07-10T10:12:40.332154", + "url": "/v1/software/daz-studio" +} diff --git a/site/public/v1/software/db-hub/index.json b/site/public/v1/software/db-hub/index.json new file mode 100644 index 000000000000..9aed0ac04d7c --- /dev/null +++ b/site/public/v1/software/db-hub/index.json @@ -0,0 +1,21 @@ +{ + "id": 2154, + "slug": "db-hub", + "name": "DB Hub", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "GNU General Public License, version 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q9200359" + ], + "created_at": "2026-07-10T10:12:40.332154", + "updated_at": "2026-07-10T10:12:40.332154", + "url": "/v1/software/db-hub" +} diff --git a/site/public/v1/software/db2-udb/index.json b/site/public/v1/software/db2-udb/index.json new file mode 100644 index 000000000000..a2b94e67370e --- /dev/null +++ b/site/public/v1/software/db2-udb/index.json @@ -0,0 +1,19 @@ +{ + "id": 2155, + "slug": "db2-udb", + "name": "DB2 UDB", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17088071" + ], + "created_at": "2026-07-10T10:12:40.333139", + "updated_at": "2026-07-10T10:12:40.333139", + "url": "/v1/software/db2-udb" +} diff --git a/site/public/v1/software/dbacl/index.json b/site/public/v1/software/dbacl/index.json new file mode 100644 index 000000000000..277962d7cfd5 --- /dev/null +++ b/site/public/v1/software/dbacl/index.json @@ -0,0 +1,19 @@ +{ + "id": 2156, + "slug": "dbacl", + "name": "dbacl", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62847796" + ], + "created_at": "2026-07-10T10:12:40.333139", + "updated_at": "2026-07-10T10:12:40.333139", + "url": "/v1/software/dbacl" +} diff --git a/site/public/v1/software/dbase-mac/index.json b/site/public/v1/software/dbase-mac/index.json new file mode 100644 index 000000000000..bfce264b524f --- /dev/null +++ b/site/public/v1/software/dbase-mac/index.json @@ -0,0 +1,21 @@ +{ + "id": 2157, + "slug": "dbase-mac", + "name": "dBASE Mac", + "release_date": null, + "developers": [ + "Ashton-Tate" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5204387" + ], + "created_at": "2026-07-10T10:12:40.333139", + "updated_at": "2026-07-10T10:12:40.333139", + "url": "/v1/software/dbase-mac" +} diff --git a/site/public/v1/software/dbeaver/index.json b/site/public/v1/software/dbeaver/index.json new file mode 100644 index 000000000000..fd65d8cad9ee --- /dev/null +++ b/site/public/v1/software/dbeaver/index.json @@ -0,0 +1,25 @@ +{ + "id": 2158, + "slug": "dbeaver", + "name": "DBeaver", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "cross-platform" + ], + "programming_languages": [ + "Java" + ], + "licenses": [ + "Apache License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28956992" + ], + "created_at": "2026-07-10T10:12:40.333139", + "updated_at": "2026-07-10T10:12:40.333139", + "url": "/v1/software/dbeaver" +} diff --git a/site/public/v1/software/dbforge-studio-for-mysql/index.json b/site/public/v1/software/dbforge-studio-for-mysql/index.json new file mode 100644 index 000000000000..cd2fb4d01878 --- /dev/null +++ b/site/public/v1/software/dbforge-studio-for-mysql/index.json @@ -0,0 +1,19 @@ +{ + "id": 2159, + "slug": "dbforge-studio-for-mysql", + "name": "DbForge Studio for MySQL", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q29364778" + ], + "created_at": "2026-07-10T10:12:40.334137", + "updated_at": "2026-07-10T10:12:40.334137", + "url": "/v1/software/dbforge-studio-for-mysql" +} diff --git a/site/public/v1/software/dbforge-studio-for-oracle/index.json b/site/public/v1/software/dbforge-studio-for-oracle/index.json new file mode 100644 index 000000000000..1546c002d565 --- /dev/null +++ b/site/public/v1/software/dbforge-studio-for-oracle/index.json @@ -0,0 +1,19 @@ +{ + "id": 2160, + "slug": "dbforge-studio-for-oracle", + "name": "DbForge Studio for Oracle", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q29364779" + ], + "created_at": "2026-07-10T10:12:40.334137", + "updated_at": "2026-07-10T10:12:40.334137", + "url": "/v1/software/dbforge-studio-for-oracle" +} diff --git a/site/public/v1/software/dbfree/index.json b/site/public/v1/software/dbfree/index.json new file mode 100644 index 000000000000..80fa1817c749 --- /dev/null +++ b/site/public/v1/software/dbfree/index.json @@ -0,0 +1,19 @@ +{ + "id": 2161, + "slug": "dbfree", + "name": "DBFree", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139580665" + ], + "created_at": "2026-07-10T10:12:40.334137", + "updated_at": "2026-07-10T10:12:40.334137", + "url": "/v1/software/dbfree" +} diff --git a/site/public/v1/software/dbgallery/index.json b/site/public/v1/software/dbgallery/index.json new file mode 100644 index 000000000000..b50fcf7432ea --- /dev/null +++ b/site/public/v1/software/dbgallery/index.json @@ -0,0 +1,19 @@ +{ + "id": 2162, + "slug": "dbgallery", + "name": "DBGallery", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5204398" + ], + "created_at": "2026-07-10T10:12:40.335168", + "updated_at": "2026-07-10T10:12:40.335168", + "url": "/v1/software/dbgallery" +} diff --git a/site/public/v1/software/dbndns/index.json b/site/public/v1/software/dbndns/index.json new file mode 100644 index 000000000000..29e138f045f7 --- /dev/null +++ b/site/public/v1/software/dbndns/index.json @@ -0,0 +1,21 @@ +{ + "id": 2163, + "slug": "dbndns", + "name": "dbndns", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Unix-like operating system" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5243770" + ], + "created_at": "2026-07-10T10:12:40.335168", + "updated_at": "2026-07-10T10:12:40.335168", + "url": "/v1/software/dbndns" +} diff --git a/site/public/v1/software/dbomp/index.json b/site/public/v1/software/dbomp/index.json new file mode 100644 index 000000000000..af91894ae5a8 --- /dev/null +++ b/site/public/v1/software/dbomp/index.json @@ -0,0 +1,19 @@ +{ + "id": 2164, + "slug": "dbomp", + "name": "DBOMP", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q65084058" + ], + "created_at": "2026-07-10T10:12:40.335168", + "updated_at": "2026-07-10T10:12:40.335168", + "url": "/v1/software/dbomp" +} diff --git a/site/public/v1/software/dbpedia-spotlight/index.json b/site/public/v1/software/dbpedia-spotlight/index.json new file mode 100644 index 000000000000..66ead4c119ef --- /dev/null +++ b/site/public/v1/software/dbpedia-spotlight/index.json @@ -0,0 +1,19 @@ +{ + "id": 2165, + "slug": "dbpedia-spotlight", + "name": "DBpedia Spotlight", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q276902" + ], + "created_at": "2026-07-10T10:12:40.336148", + "updated_at": "2026-07-10T10:12:40.336148", + "url": "/v1/software/dbpedia-spotlight" +} diff --git a/site/public/v1/software/dbpoweramp/index.json b/site/public/v1/software/dbpoweramp/index.json new file mode 100644 index 000000000000..fcdd457d7f41 --- /dev/null +++ b/site/public/v1/software/dbpoweramp/index.json @@ -0,0 +1,19 @@ +{ + "id": 2166, + "slug": "dbpoweramp", + "name": "dBpoweramp", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1152133" + ], + "created_at": "2026-07-10T10:12:40.336148", + "updated_at": "2026-07-10T10:12:40.336148", + "url": "/v1/software/dbpoweramp" +} diff --git a/site/public/v1/software/dcadec/index.json b/site/public/v1/software/dcadec/index.json new file mode 100644 index 000000000000..db9b4216b3a5 --- /dev/null +++ b/site/public/v1/software/dcadec/index.json @@ -0,0 +1,21 @@ +{ + "id": 2167, + "slug": "dcadec", + "name": "dcadec", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "GNU Lesser General Public License, version 2.1" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974801" + ], + "created_at": "2026-07-10T10:12:40.336148", + "updated_at": "2026-07-10T10:12:40.336148", + "url": "/v1/software/dcadec" +} diff --git a/site/public/v1/software/dcaenc/index.json b/site/public/v1/software/dcaenc/index.json new file mode 100644 index 000000000000..1ae2785bdfb5 --- /dev/null +++ b/site/public/v1/software/dcaenc/index.json @@ -0,0 +1,19 @@ +{ + "id": 2168, + "slug": "dcaenc", + "name": "dcaenc", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974802" + ], + "created_at": "2026-07-10T10:12:40.337156", + "updated_at": "2026-07-10T10:12:40.337156", + "url": "/v1/software/dcaenc" +} diff --git a/site/public/v1/software/dcar/index.json b/site/public/v1/software/dcar/index.json new file mode 100644 index 000000000000..8725f8439726 --- /dev/null +++ b/site/public/v1/software/dcar/index.json @@ -0,0 +1,19 @@ +{ + "id": 2169, + "slug": "dcar", + "name": "Dcar", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136190617" + ], + "created_at": "2026-07-10T10:12:40.337156", + "updated_at": "2026-07-10T10:12:40.337156", + "url": "/v1/software/dcar" +} diff --git a/site/public/v1/software/dclock/index.json b/site/public/v1/software/dclock/index.json new file mode 100644 index 000000000000..f8e7370b9643 --- /dev/null +++ b/site/public/v1/software/dclock/index.json @@ -0,0 +1,19 @@ +{ + "id": 2170, + "slug": "dclock", + "name": "dclock", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065051" + ], + "created_at": "2026-07-10T10:12:40.338135", + "updated_at": "2026-07-10T10:12:40.338135", + "url": "/v1/software/dclock" +} diff --git a/site/public/v1/software/dcmtk/index.json b/site/public/v1/software/dcmtk/index.json new file mode 100644 index 000000000000..94ee0f97b1ad --- /dev/null +++ b/site/public/v1/software/dcmtk/index.json @@ -0,0 +1,19 @@ +{ + "id": 2171, + "slug": "dcmtk", + "name": "DCMTK", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138798877" + ], + "created_at": "2026-07-10T10:12:40.338135", + "updated_at": "2026-07-10T10:12:40.338135", + "url": "/v1/software/dcmtk" +} diff --git a/site/public/v1/software/deal-flow/index.json b/site/public/v1/software/deal-flow/index.json new file mode 100644 index 000000000000..cd176923974f --- /dev/null +++ b/site/public/v1/software/deal-flow/index.json @@ -0,0 +1,19 @@ +{ + "id": 2172, + "slug": "deal-flow", + "name": "Deal Flow", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139856688" + ], + "created_at": "2026-07-10T10:12:40.338135", + "updated_at": "2026-07-10T10:12:40.338135", + "url": "/v1/software/deal-flow" +} diff --git a/site/public/v1/software/dealdox/index.json b/site/public/v1/software/dealdox/index.json new file mode 100644 index 000000000000..511334bdfe35 --- /dev/null +++ b/site/public/v1/software/dealdox/index.json @@ -0,0 +1,19 @@ +{ + "id": 2173, + "slug": "dealdox", + "name": "DealDox", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140353860" + ], + "created_at": "2026-07-10T10:12:40.338135", + "updated_at": "2026-07-10T10:12:40.338135", + "url": "/v1/software/dealdox" +} diff --git a/site/public/v1/software/dealerdesk/index.json b/site/public/v1/software/dealerdesk/index.json new file mode 100644 index 000000000000..f6e0bbb8920d --- /dev/null +++ b/site/public/v1/software/dealerdesk/index.json @@ -0,0 +1,21 @@ +{ + "id": 2174, + "slug": "dealerdesk", + "name": "DealerDesk", + "release_date": null, + "developers": [ + "Chief Mechanic Limited" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140073458" + ], + "created_at": "2026-07-10T10:12:40.339127", + "updated_at": "2026-07-10T10:12:40.339127", + "url": "/v1/software/dealerdesk" +} diff --git a/site/public/v1/software/dealership-management-system/index.json b/site/public/v1/software/dealership-management-system/index.json new file mode 100644 index 000000000000..bebf22333438 --- /dev/null +++ b/site/public/v1/software/dealership-management-system/index.json @@ -0,0 +1,19 @@ +{ + "id": 2175, + "slug": "dealership-management-system", + "name": "dealership management system", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q472046" + ], + "created_at": "2026-07-10T10:12:40.339127", + "updated_at": "2026-07-10T10:12:40.339127", + "url": "/v1/software/dealership-management-system" +} diff --git a/site/public/v1/software/deb2targz/index.json b/site/public/v1/software/deb2targz/index.json new file mode 100644 index 000000000000..c0553ba969ac --- /dev/null +++ b/site/public/v1/software/deb2targz/index.json @@ -0,0 +1,19 @@ +{ + "id": 2176, + "slug": "deb2targz", + "name": "deb2targz", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065258" + ], + "created_at": "2026-07-10T10:12:40.340161", + "updated_at": "2026-07-10T10:12:40.340161", + "url": "/v1/software/deb2targz" +} diff --git a/site/public/v1/software/debezium/index.json b/site/public/v1/software/debezium/index.json new file mode 100644 index 000000000000..fb905c2bc555 --- /dev/null +++ b/site/public/v1/software/debezium/index.json @@ -0,0 +1,19 @@ +{ + "id": 2177, + "slug": "debezium", + "name": "Debezium", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126165313" + ], + "created_at": "2026-07-10T10:12:40.340161", + "updated_at": "2026-07-10T10:12:40.340161", + "url": "/v1/software/debezium" +} diff --git a/site/public/v1/software/debian-alternatives-system/index.json b/site/public/v1/software/debian-alternatives-system/index.json new file mode 100644 index 000000000000..162ead1fb3ac --- /dev/null +++ b/site/public/v1/software/debian-alternatives-system/index.json @@ -0,0 +1,19 @@ +{ + "id": 2178, + "slug": "debian-alternatives-system", + "name": "Debian Alternatives System", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4033835" + ], + "created_at": "2026-07-10T10:12:40.340161", + "updated_at": "2026-07-10T10:12:40.340161", + "url": "/v1/software/debian-alternatives-system" +} diff --git a/site/public/v1/software/debut-video-capture-software/index.json b/site/public/v1/software/debut-video-capture-software/index.json new file mode 100644 index 000000000000..53ae6f926ee4 --- /dev/null +++ b/site/public/v1/software/debut-video-capture-software/index.json @@ -0,0 +1,21 @@ +{ + "id": 2179, + "slug": "debut-video-capture-software", + "name": "Debut Video Capture Software", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [ + "screencasting software" + ], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q43080158" + ], + "created_at": "2026-07-10T10:12:40.340161", + "updated_at": "2026-07-10T10:12:40.340161", + "url": "/v1/software/debut-video-capture-software" +} diff --git a/site/public/v1/software/decent-network/index.json b/site/public/v1/software/decent-network/index.json new file mode 100644 index 000000000000..6e1c00fc0027 --- /dev/null +++ b/site/public/v1/software/decent-network/index.json @@ -0,0 +1,19 @@ +{ + "id": 2180, + "slug": "decent-network", + "name": "DECENT Network", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28127138" + ], + "created_at": "2026-07-10T10:12:40.341135", + "updated_at": "2026-07-10T10:12:40.341135", + "url": "/v1/software/decent-network" +} diff --git a/site/public/v1/software/decimer/index.json b/site/public/v1/software/decimer/index.json new file mode 100644 index 000000000000..042d92917743 --- /dev/null +++ b/site/public/v1/software/decimer/index.json @@ -0,0 +1,19 @@ +{ + "id": 2181, + "slug": "decimer", + "name": "DECIMER", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112083305" + ], + "created_at": "2026-07-10T10:12:40.341135", + "updated_at": "2026-07-10T10:12:40.341135", + "url": "/v1/software/decimer" +} diff --git a/site/public/v1/software/deck-daemon/index.json b/site/public/v1/software/deck-daemon/index.json new file mode 100644 index 000000000000..e268838fb503 --- /dev/null +++ b/site/public/v1/software/deck-daemon/index.json @@ -0,0 +1,19 @@ +{ + "id": 2182, + "slug": "deck-daemon", + "name": "Deck Daemon", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q133809007" + ], + "created_at": "2026-07-10T10:12:40.342127", + "updated_at": "2026-07-10T10:12:40.342127", + "url": "/v1/software/deck-daemon" +} diff --git a/site/public/v1/software/deck/index.json b/site/public/v1/software/deck/index.json new file mode 100644 index 000000000000..82d34eb2b877 --- /dev/null +++ b/site/public/v1/software/deck/index.json @@ -0,0 +1,21 @@ +{ + "id": 2183, + "slug": "deck", + "name": "Deck", + "release_date": "1990-01-01", + "developers": [], + "publishers": [ + "OSC" + ], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135494358" + ], + "created_at": "2026-07-10T10:12:40.342127", + "updated_at": "2026-07-10T10:12:40.342127", + "url": "/v1/software/deck" +} diff --git a/site/public/v1/software/decky-loader/index.json b/site/public/v1/software/decky-loader/index.json new file mode 100644 index 000000000000..f0caa832b335 --- /dev/null +++ b/site/public/v1/software/decky-loader/index.json @@ -0,0 +1,25 @@ +{ + "id": 2184, + "slug": "decky-loader", + "name": "Decky Loader", + "release_date": "2022-01-01", + "developers": [ + "Steam Deck Homebrew" + ], + "publishers": [ + "Steam Deck Homebrew" + ], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "GNU General Public License, version 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130531690" + ], + "created_at": "2026-07-10T10:12:40.342127", + "updated_at": "2026-07-10T10:12:40.342127", + "url": "/v1/software/decky-loader" +} diff --git a/site/public/v1/software/decodoku/index.json b/site/public/v1/software/decodoku/index.json new file mode 100644 index 000000000000..289e2970535f --- /dev/null +++ b/site/public/v1/software/decodoku/index.json @@ -0,0 +1,23 @@ +{ + "id": 2185, + "slug": "decodoku", + "name": "Decodoku", + "release_date": "2016-01-01", + "developers": [], + "publishers": [], + "operating_systems": [ + "iOS" + ], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28135096" + ], + "created_at": "2026-07-10T10:12:40.342127", + "updated_at": "2026-07-10T10:12:40.342127", + "url": "/v1/software/decodoku" +} diff --git a/site/public/v1/software/dede-content-management-system/index.json b/site/public/v1/software/dede-content-management-system/index.json new file mode 100644 index 000000000000..4205593ce541 --- /dev/null +++ b/site/public/v1/software/dede-content-management-system/index.json @@ -0,0 +1,25 @@ +{ + "id": 2186, + "slug": "dede-content-management-system", + "name": "Dede content management system", + "release_date": "2004-01-01", + "developers": [ + "ShangHai DesDev Information Technology Co, Ltd" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "PHP" + ], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q59522857" + ], + "created_at": "2026-07-10T10:12:40.342127", + "updated_at": "2026-07-10T10:12:40.342127", + "url": "/v1/software/dede-content-management-system" +} diff --git a/site/public/v1/software/deep-dungeons-of-doom/index.json b/site/public/v1/software/deep-dungeons-of-doom/index.json new file mode 100644 index 000000000000..1861afd206d2 --- /dev/null +++ b/site/public/v1/software/deep-dungeons-of-doom/index.json @@ -0,0 +1,23 @@ +{ + "id": 2187, + "slug": "deep-dungeons-of-doom", + "name": "Deep Dungeons of Doom", + "release_date": "2014-10-14", + "developers": [ + "Bossa Studios" + ], + "publishers": [ + "Bossa Studios" + ], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q89408241" + ], + "created_at": "2026-07-10T10:12:40.343128", + "updated_at": "2026-07-10T10:12:40.343128", + "url": "/v1/software/deep-dungeons-of-doom" +} diff --git a/site/public/v1/software/deep-fusion/index.json b/site/public/v1/software/deep-fusion/index.json new file mode 100644 index 000000000000..839521594091 --- /dev/null +++ b/site/public/v1/software/deep-fusion/index.json @@ -0,0 +1,23 @@ +{ + "id": 2188, + "slug": "deep-fusion", + "name": "Deep Fusion", + "release_date": null, + "developers": [ + "Apple Inc." + ], + "publishers": [], + "operating_systems": [ + "iOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q86735868" + ], + "created_at": "2026-07-10T10:12:40.343128", + "updated_at": "2026-07-10T10:12:40.343128", + "url": "/v1/software/deep-fusion" +} diff --git a/site/public/v1/software/deep-learning-studio/index.json b/site/public/v1/software/deep-learning-studio/index.json new file mode 100644 index 000000000000..6dcd00a9fef2 --- /dev/null +++ b/site/public/v1/software/deep-learning-studio/index.json @@ -0,0 +1,21 @@ +{ + "id": 2189, + "slug": "deep-learning-studio", + "name": "Deep Learning Studio", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Python" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q55080166" + ], + "created_at": "2026-07-10T10:12:40.343128", + "updated_at": "2026-07-10T10:12:40.343128", + "url": "/v1/software/deep-learning-studio" +} diff --git a/site/public/v1/software/deep-nostalgia/index.json b/site/public/v1/software/deep-nostalgia/index.json new file mode 100644 index 000000000000..ba2a7dfd4d60 --- /dev/null +++ b/site/public/v1/software/deep-nostalgia/index.json @@ -0,0 +1,19 @@ +{ + "id": 2190, + "slug": "deep-nostalgia", + "name": "Deep Nostalgia", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106695289" + ], + "created_at": "2026-07-10T10:12:40.344150", + "updated_at": "2026-07-10T10:12:40.344150", + "url": "/v1/software/deep-nostalgia" +} diff --git a/site/public/v1/software/deep-sky-planner/index.json b/site/public/v1/software/deep-sky-planner/index.json new file mode 100644 index 000000000000..9dd96a1d20c0 --- /dev/null +++ b/site/public/v1/software/deep-sky-planner/index.json @@ -0,0 +1,21 @@ +{ + "id": 2191, + "slug": "deep-sky-planner", + "name": "Deep-Sky Planner", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16989290" + ], + "created_at": "2026-07-10T10:12:40.344150", + "updated_at": "2026-07-10T10:12:40.344150", + "url": "/v1/software/deep-sky-planner" +} diff --git a/site/public/v1/software/deep-zoom/index.json b/site/public/v1/software/deep-zoom/index.json new file mode 100644 index 000000000000..1a29c9af30f6 --- /dev/null +++ b/site/public/v1/software/deep-zoom/index.json @@ -0,0 +1,21 @@ +{ + "id": 2192, + "slug": "deep-zoom", + "name": "Deep Zoom", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5250364" + ], + "created_at": "2026-07-10T10:12:40.344150", + "updated_at": "2026-07-10T10:12:40.344150", + "url": "/v1/software/deep-zoom" +} diff --git a/site/public/v1/software/deepart/index.json b/site/public/v1/software/deepart/index.json new file mode 100644 index 000000000000..fbf6a893662d --- /dev/null +++ b/site/public/v1/software/deepart/index.json @@ -0,0 +1,19 @@ +{ + "id": 2193, + "slug": "deepart", + "name": "DeepArt", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28130429" + ], + "created_at": "2026-07-10T10:12:40.344150", + "updated_at": "2026-07-10T10:12:40.344150", + "url": "/v1/software/deepart" +} diff --git a/site/public/v1/software/deeperweb/index.json b/site/public/v1/software/deeperweb/index.json new file mode 100644 index 000000000000..43b34671a37b --- /dev/null +++ b/site/public/v1/software/deeperweb/index.json @@ -0,0 +1,19 @@ +{ + "id": 2194, + "slug": "deeperweb", + "name": "DeeperWeb", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084909" + ], + "created_at": "2026-07-10T10:12:40.344150", + "updated_at": "2026-07-10T10:12:40.344150", + "url": "/v1/software/deeperweb" +} diff --git a/site/public/v1/software/deepfacelab/index.json b/site/public/v1/software/deepfacelab/index.json new file mode 100644 index 000000000000..05ed5cab5471 --- /dev/null +++ b/site/public/v1/software/deepfacelab/index.json @@ -0,0 +1,23 @@ +{ + "id": 2195, + "slug": "deepfacelab", + "name": "DeepFaceLab", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Python" + ], + "licenses": [ + "GNU General Public License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q95242927" + ], + "created_at": "2026-07-10T10:12:40.345533", + "updated_at": "2026-07-10T10:12:40.345533", + "url": "/v1/software/deepfacelab" +} diff --git a/site/public/v1/software/deepgrip/index.json b/site/public/v1/software/deepgrip/index.json new file mode 100644 index 000000000000..bafefe986074 --- /dev/null +++ b/site/public/v1/software/deepgrip/index.json @@ -0,0 +1,21 @@ +{ + "id": 2196, + "slug": "deepgrip", + "name": "Deepgrip", + "release_date": null, + "developers": [ + "Dootlabs Private Limited" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139889436" + ], + "created_at": "2026-07-10T10:12:40.345533", + "updated_at": "2026-07-10T10:12:40.345533", + "url": "/v1/software/deepgrip" +} diff --git a/site/public/v1/software/deepnet-explorer/index.json b/site/public/v1/software/deepnet-explorer/index.json new file mode 100644 index 000000000000..0433e32708ad --- /dev/null +++ b/site/public/v1/software/deepnet-explorer/index.json @@ -0,0 +1,19 @@ +{ + "id": 2197, + "slug": "deepnet-explorer", + "name": "Deepnet Explorer", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2406681" + ], + "created_at": "2026-07-10T10:12:40.345533", + "updated_at": "2026-07-10T10:12:40.345533", + "url": "/v1/software/deepnet-explorer" +} diff --git a/site/public/v1/software/deepsight/index.json b/site/public/v1/software/deepsight/index.json new file mode 100644 index 000000000000..597da4d98ae1 --- /dev/null +++ b/site/public/v1/software/deepsight/index.json @@ -0,0 +1,21 @@ +{ + "id": 2198, + "slug": "deepsight", + "name": "Deepsight", + "release_date": null, + "developers": [ + "Incode" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138859397" + ], + "created_at": "2026-07-10T10:12:40.346539", + "updated_at": "2026-07-10T10:12:40.346539", + "url": "/v1/software/deepsight" +} diff --git a/site/public/v1/software/defeat-device/index.json b/site/public/v1/software/defeat-device/index.json new file mode 100644 index 000000000000..3176a5fc5dce --- /dev/null +++ b/site/public/v1/software/defeat-device/index.json @@ -0,0 +1,19 @@ +{ + "id": 2199, + "slug": "defeat-device", + "name": "defeat device", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q21041527" + ], + "created_at": "2026-07-10T10:12:40.346539", + "updated_at": "2026-07-10T10:12:40.346539", + "url": "/v1/software/defeat-device" +} diff --git a/site/public/v1/software/defense4all/index.json b/site/public/v1/software/defense4all/index.json new file mode 100644 index 000000000000..74d4a199f7e0 --- /dev/null +++ b/site/public/v1/software/defense4all/index.json @@ -0,0 +1,19 @@ +{ + "id": 2200, + "slug": "defense4all", + "name": "Defense4All", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q97310208" + ], + "created_at": "2026-07-10T10:12:40.346539", + "updated_at": "2026-07-10T10:12:40.346539", + "url": "/v1/software/defense4all" +} diff --git a/site/public/v1/software/dehy/index.json b/site/public/v1/software/dehy/index.json new file mode 100644 index 000000000000..fb2a97959e50 --- /dev/null +++ b/site/public/v1/software/dehy/index.json @@ -0,0 +1,19 @@ +{ + "id": 2201, + "slug": "dehy", + "name": "DEHY", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140047428" + ], + "created_at": "2026-07-10T10:12:40.347537", + "updated_at": "2026-07-10T10:12:40.347537", + "url": "/v1/software/dehy" +} diff --git a/site/public/v1/software/delaunay-tessellation-field-estimator/index.json b/site/public/v1/software/delaunay-tessellation-field-estimator/index.json new file mode 100644 index 000000000000..f801ccefb1e6 --- /dev/null +++ b/site/public/v1/software/delaunay-tessellation-field-estimator/index.json @@ -0,0 +1,19 @@ +{ + "id": 2202, + "slug": "delaunay-tessellation-field-estimator", + "name": "Delaunay tessellation field estimator", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5253187" + ], + "created_at": "2026-07-10T10:12:40.347537", + "updated_at": "2026-07-10T10:12:40.347537", + "url": "/v1/software/delaunay-tessellation-field-estimator" +} diff --git a/site/public/v1/software/delay-lama/index.json b/site/public/v1/software/delay-lama/index.json new file mode 100644 index 000000000000..2b8fd4a20b09 --- /dev/null +++ b/site/public/v1/software/delay-lama/index.json @@ -0,0 +1,21 @@ +{ + "id": 2203, + "slug": "delay-lama", + "name": "Delay Lama", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "donationware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10846936" + ], + "created_at": "2026-07-10T10:12:40.347537", + "updated_at": "2026-07-10T10:12:40.347537", + "url": "/v1/software/delay-lama" +} diff --git a/site/public/v1/software/delegate/index.json b/site/public/v1/software/delegate/index.json new file mode 100644 index 000000000000..fcc0e0da7567 --- /dev/null +++ b/site/public/v1/software/delegate/index.json @@ -0,0 +1,19 @@ +{ + "id": 2204, + "slug": "delegate", + "name": "DeleGate", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5253575" + ], + "created_at": "2026-07-10T10:12:40.348544", + "updated_at": "2026-07-10T10:12:40.348544", + "url": "/v1/software/delegate" +} diff --git a/site/public/v1/software/deleteme/index.json b/site/public/v1/software/deleteme/index.json new file mode 100644 index 000000000000..24fd5d7eca28 --- /dev/null +++ b/site/public/v1/software/deleteme/index.json @@ -0,0 +1,19 @@ +{ + "id": 2205, + "slug": "deleteme", + "name": "DeleteMe", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123739151" + ], + "created_at": "2026-07-10T10:12:40.348544", + "updated_at": "2026-07-10T10:12:40.348544", + "url": "/v1/software/deleteme" +} diff --git a/site/public/v1/software/delicious-library/index.json b/site/public/v1/software/delicious-library/index.json new file mode 100644 index 000000000000..4bd181c26c45 --- /dev/null +++ b/site/public/v1/software/delicious-library/index.json @@ -0,0 +1,21 @@ +{ + "id": 2206, + "slug": "delicious-library", + "name": "Delicious Library", + "release_date": "2004-11-01", + "developers": [ + "Delicious Monster" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1184229" + ], + "created_at": "2026-07-10T10:12:40.348544", + "updated_at": "2026-07-10T10:12:40.348544", + "url": "/v1/software/delicious-library" +} diff --git a/site/public/v1/software/delivery-biz-pro/index.json b/site/public/v1/software/delivery-biz-pro/index.json new file mode 100644 index 000000000000..6a006e659d67 --- /dev/null +++ b/site/public/v1/software/delivery-biz-pro/index.json @@ -0,0 +1,19 @@ +{ + "id": 2207, + "slug": "delivery-biz-pro", + "name": "Delivery Biz Pro", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139580492" + ], + "created_at": "2026-07-10T10:12:40.349625", + "updated_at": "2026-07-10T10:12:40.349625", + "url": "/v1/software/delivery-biz-pro" +} diff --git a/site/public/v1/software/dell-mediadirect/index.json b/site/public/v1/software/dell-mediadirect/index.json new file mode 100644 index 000000000000..2f85437f4ef8 --- /dev/null +++ b/site/public/v1/software/dell-mediadirect/index.json @@ -0,0 +1,19 @@ +{ + "id": 2208, + "slug": "dell-mediadirect", + "name": "Dell MediaDirect", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5254126" + ], + "created_at": "2026-07-10T10:12:40.349625", + "updated_at": "2026-07-10T10:12:40.349625", + "url": "/v1/software/dell-mediadirect" +} diff --git a/site/public/v1/software/delmia/index.json b/site/public/v1/software/delmia/index.json new file mode 100644 index 000000000000..4fc607828859 --- /dev/null +++ b/site/public/v1/software/delmia/index.json @@ -0,0 +1,23 @@ +{ + "id": 2209, + "slug": "delmia", + "name": "DELMIA", + "release_date": null, + "developers": [ + "Dassault Systèmes" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q316333" + ], + "created_at": "2026-07-10T10:12:40.349625", + "updated_at": "2026-07-10T10:12:40.349625", + "url": "/v1/software/delmia" +} diff --git a/site/public/v1/software/delphish/index.json b/site/public/v1/software/delphish/index.json new file mode 100644 index 000000000000..ba6d9e2efda7 --- /dev/null +++ b/site/public/v1/software/delphish/index.json @@ -0,0 +1,23 @@ +{ + "id": 2210, + "slug": "delphish", + "name": "Delphish", + "release_date": "2007-01-01", + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q20989199" + ], + "created_at": "2026-07-10T10:12:40.349625", + "updated_at": "2026-07-10T10:12:40.350624", + "url": "/v1/software/delphish" +} diff --git a/site/public/v1/software/delta-drawing/index.json b/site/public/v1/software/delta-drawing/index.json new file mode 100644 index 000000000000..4ba693e91225 --- /dev/null +++ b/site/public/v1/software/delta-drawing/index.json @@ -0,0 +1,23 @@ +{ + "id": 2211, + "slug": "delta-drawing", + "name": "Delta Drawing", + "release_date": "1983-01-01", + "developers": [ + "Computer Access Corporation" + ], + "publishers": [ + "Spinnaker Software" + ], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5254614" + ], + "created_at": "2026-07-10T10:12:40.350624", + "updated_at": "2026-07-10T10:12:40.350624", + "url": "/v1/software/delta-drawing" +} diff --git a/site/public/v1/software/delta-situational-awareness-system/index.json b/site/public/v1/software/delta-situational-awareness-system/index.json new file mode 100644 index 000000000000..e85d04c608f3 --- /dev/null +++ b/site/public/v1/software/delta-situational-awareness-system/index.json @@ -0,0 +1,19 @@ +{ + "id": 2212, + "slug": "delta-situational-awareness-system", + "name": "Delta (situational awareness system)", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115042149" + ], + "created_at": "2026-07-10T10:12:40.350624", + "updated_at": "2026-07-10T10:12:40.350624", + "url": "/v1/software/delta-situational-awareness-system" +} diff --git a/site/public/v1/software/deltarpm/index.json b/site/public/v1/software/deltarpm/index.json new file mode 100644 index 000000000000..3affcf468b7a --- /dev/null +++ b/site/public/v1/software/deltarpm/index.json @@ -0,0 +1,19 @@ +{ + "id": 2213, + "slug": "deltarpm", + "name": "DeltaRPM", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62847890" + ], + "created_at": "2026-07-10T10:12:40.350624", + "updated_at": "2026-07-10T10:12:40.350624", + "url": "/v1/software/deltarpm" +} diff --git a/site/public/v1/software/delve-deeper/index.json b/site/public/v1/software/delve-deeper/index.json new file mode 100644 index 000000000000..870a1492012c --- /dev/null +++ b/site/public/v1/software/delve-deeper/index.json @@ -0,0 +1,19 @@ +{ + "id": 2214, + "slug": "delve-deeper", + "name": "Delve Deeper", + "release_date": "2010-09-24", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106727692" + ], + "created_at": "2026-07-10T10:12:40.351592", + "updated_at": "2026-07-10T10:12:40.351592", + "url": "/v1/software/delve-deeper" +} diff --git a/site/public/v1/software/demodokos-foundry/index.json b/site/public/v1/software/demodokos-foundry/index.json new file mode 100644 index 000000000000..1a6ae9500531 --- /dev/null +++ b/site/public/v1/software/demodokos-foundry/index.json @@ -0,0 +1,21 @@ +{ + "id": 2215, + "slug": "demodokos-foundry", + "name": "Demodokos Foundry", + "release_date": "2024-01-01", + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139761562" + ], + "created_at": "2026-07-10T10:12:40.351592", + "updated_at": "2026-07-10T10:12:40.351592", + "url": "/v1/software/demodokos-foundry" +} diff --git a/site/public/v1/software/dendral/index.json b/site/public/v1/software/dendral/index.json new file mode 100644 index 000000000000..ae7617430142 --- /dev/null +++ b/site/public/v1/software/dendral/index.json @@ -0,0 +1,19 @@ +{ + "id": 2216, + "slug": "dendral", + "name": "Dendral", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3022317" + ], + "created_at": "2026-07-10T10:12:40.351592", + "updated_at": "2026-07-10T10:12:40.351592", + "url": "/v1/software/dendral" +} diff --git a/site/public/v1/software/dendronetwork-a-r-package-to-create-dendrochronological-provenance-networks/index.json b/site/public/v1/software/dendronetwork-a-r-package-to-create-dendrochronological-provenance-networks/index.json new file mode 100644 index 000000000000..1b96fef8727b --- /dev/null +++ b/site/public/v1/software/dendronetwork-a-r-package-to-create-dendrochronological-provenance-networks/index.json @@ -0,0 +1,19 @@ +{ + "id": 2217, + "slug": "dendronetwork-a-r-package-to-create-dendrochronological-provenance-networks", + "name": "dendroNetwork: a R-package to create dendrochronological provenance networks", + "release_date": "2024-02-08", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131349944" + ], + "created_at": "2026-07-10T10:12:40.352594", + "updated_at": "2026-07-10T10:12:40.352594", + "url": "/v1/software/dendronetwork-a-r-package-to-create-dendrochronological-provenance-networks" +} diff --git a/site/public/v1/software/denis-home/index.json b/site/public/v1/software/denis-home/index.json new file mode 100644 index 000000000000..8fdaf3d65a1f --- /dev/null +++ b/site/public/v1/software/denis-home/index.json @@ -0,0 +1,19 @@ +{ + "id": 2218, + "slug": "denis-home", + "name": "DENIS@Home", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q20240941" + ], + "created_at": "2026-07-10T10:12:40.352594", + "updated_at": "2026-07-10T10:12:40.352594", + "url": "/v1/software/denis-home" +} diff --git a/site/public/v1/software/density-design-knot/index.json b/site/public/v1/software/density-design-knot/index.json new file mode 100644 index 000000000000..f71c177f83e9 --- /dev/null +++ b/site/public/v1/software/density-design-knot/index.json @@ -0,0 +1,19 @@ +{ + "id": 2219, + "slug": "density-design-knot", + "name": "Density Design - Knot", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084910" + ], + "created_at": "2026-07-10T10:12:40.352594", + "updated_at": "2026-07-10T10:12:40.352594", + "url": "/v1/software/density-design-knot" +} diff --git a/site/public/v1/software/denwer/index.json b/site/public/v1/software/denwer/index.json new file mode 100644 index 000000000000..6c82f1cf9ca9 --- /dev/null +++ b/site/public/v1/software/denwer/index.json @@ -0,0 +1,21 @@ +{ + "id": 2220, + "slug": "denwer", + "name": "Denwer", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4157853" + ], + "created_at": "2026-07-10T10:12:40.353614", + "updated_at": "2026-07-10T10:12:40.353614", + "url": "/v1/software/denwer" +} diff --git a/site/public/v1/software/depclean/index.json b/site/public/v1/software/depclean/index.json new file mode 100644 index 000000000000..7f723851207e --- /dev/null +++ b/site/public/v1/software/depclean/index.json @@ -0,0 +1,21 @@ +{ + "id": 2221, + "slug": "depclean", + "name": "depclean", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127485509" + ], + "created_at": "2026-07-10T10:12:40.353614", + "updated_at": "2026-07-10T10:12:40.353614", + "url": "/v1/software/depclean" +} diff --git a/site/public/v1/software/dependabot/index.json b/site/public/v1/software/dependabot/index.json new file mode 100644 index 000000000000..f669aa9d2441 --- /dev/null +++ b/site/public/v1/software/dependabot/index.json @@ -0,0 +1,21 @@ +{ + "id": 2222, + "slug": "dependabot", + "name": "Dependabot", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137368720" + ], + "created_at": "2026-07-10T10:12:40.353614", + "updated_at": "2026-07-10T10:12:40.353614", + "url": "/v1/software/dependabot" +} diff --git a/site/public/v1/software/depot-tools/index.json b/site/public/v1/software/depot-tools/index.json new file mode 100644 index 000000000000..6fb3b24e4acb --- /dev/null +++ b/site/public/v1/software/depot-tools/index.json @@ -0,0 +1,19 @@ +{ + "id": 2223, + "slug": "depot-tools", + "name": "depot-tools", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125501931" + ], + "created_at": "2026-07-10T10:12:40.354593", + "updated_at": "2026-07-10T10:12:40.354593", + "url": "/v1/software/depot-tools" +} diff --git a/site/public/v1/software/deprem-wiki/index.json b/site/public/v1/software/deprem-wiki/index.json new file mode 100644 index 000000000000..e26847d3dda7 --- /dev/null +++ b/site/public/v1/software/deprem-wiki/index.json @@ -0,0 +1,19 @@ +{ + "id": 2224, + "slug": "deprem-wiki", + "name": "Deprem Wiki", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q133866011" + ], + "created_at": "2026-07-10T10:12:40.354593", + "updated_at": "2026-07-10T10:12:40.354593", + "url": "/v1/software/deprem-wiki" +} diff --git a/site/public/v1/software/deredec/index.json b/site/public/v1/software/deredec/index.json new file mode 100644 index 000000000000..3c07e72aa7f3 --- /dev/null +++ b/site/public/v1/software/deredec/index.json @@ -0,0 +1,19 @@ +{ + "id": 2225, + "slug": "deredec", + "name": "DEREDEC", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084911" + ], + "created_at": "2026-07-10T10:12:40.354593", + "updated_at": "2026-07-10T10:12:40.354593", + "url": "/v1/software/deredec" +} diff --git a/site/public/v1/software/desi-iii/index.json b/site/public/v1/software/desi-iii/index.json new file mode 100644 index 000000000000..63166f2ff3ce --- /dev/null +++ b/site/public/v1/software/desi-iii/index.json @@ -0,0 +1,19 @@ +{ + "id": 2226, + "slug": "desi-iii", + "name": "DESI-III", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5204863" + ], + "created_at": "2026-07-10T10:12:40.355596", + "updated_at": "2026-07-10T10:12:40.355596", + "url": "/v1/software/desi-iii" +} diff --git a/site/public/v1/software/design-expert/index.json b/site/public/v1/software/design-expert/index.json new file mode 100644 index 000000000000..3196178a37b6 --- /dev/null +++ b/site/public/v1/software/design-expert/index.json @@ -0,0 +1,19 @@ +{ + "id": 2227, + "slug": "design-expert", + "name": "Design–Expert", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22907735" + ], + "created_at": "2026-07-10T10:12:40.355596", + "updated_at": "2026-07-10T10:12:40.355596", + "url": "/v1/software/design-expert" +} diff --git a/site/public/v1/software/design-rule-for-camera-file-system/index.json b/site/public/v1/software/design-rule-for-camera-file-system/index.json new file mode 100644 index 000000000000..062b05e83d4e --- /dev/null +++ b/site/public/v1/software/design-rule-for-camera-file-system/index.json @@ -0,0 +1,19 @@ +{ + "id": 2228, + "slug": "design-rule-for-camera-file-system", + "name": "Design rule for Camera File system", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1200685" + ], + "created_at": "2026-07-10T10:12:40.355596", + "updated_at": "2026-07-10T10:12:40.355596", + "url": "/v1/software/design-rule-for-camera-file-system" +} diff --git a/site/public/v1/software/designbox/index.json b/site/public/v1/software/designbox/index.json new file mode 100644 index 000000000000..2d19e225f453 --- /dev/null +++ b/site/public/v1/software/designbox/index.json @@ -0,0 +1,19 @@ +{ + "id": 2229, + "slug": "designbox", + "name": "Designbox", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5264413" + ], + "created_at": "2026-07-10T10:12:40.356591", + "updated_at": "2026-07-10T10:12:40.356591", + "url": "/v1/software/designbox" +} diff --git a/site/public/v1/software/designspark-mechanical/index.json b/site/public/v1/software/designspark-mechanical/index.json new file mode 100644 index 000000000000..aa0e728e9a97 --- /dev/null +++ b/site/public/v1/software/designspark-mechanical/index.json @@ -0,0 +1,21 @@ +{ + "id": 2230, + "slug": "designspark-mechanical", + "name": "DesignSpark Mechanical", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17628742" + ], + "created_at": "2026-07-10T10:12:40.356591", + "updated_at": "2026-07-10T10:12:40.356591", + "url": "/v1/software/designspark-mechanical" +} diff --git a/site/public/v1/software/designspark-pcb-pro/index.json b/site/public/v1/software/designspark-pcb-pro/index.json new file mode 100644 index 000000000000..e6d086870d6b --- /dev/null +++ b/site/public/v1/software/designspark-pcb-pro/index.json @@ -0,0 +1,19 @@ +{ + "id": 2231, + "slug": "designspark-pcb-pro", + "name": "DesignSpark PCB Pro", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q97860797" + ], + "created_at": "2026-07-10T10:12:40.356591", + "updated_at": "2026-07-10T10:12:40.356591", + "url": "/v1/software/designspark-pcb-pro" +} diff --git a/site/public/v1/software/deskalerts/index.json b/site/public/v1/software/deskalerts/index.json new file mode 100644 index 000000000000..75915b9ee5d8 --- /dev/null +++ b/site/public/v1/software/deskalerts/index.json @@ -0,0 +1,27 @@ +{ + "id": 2232, + "slug": "deskalerts", + "name": "DeskAlerts", + "release_date": null, + "developers": [ + "ToolbarStudio Inc" + ], + "publishers": [], + "operating_systems": [ + "iOS", + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137298996" + ], + "created_at": "2026-07-10T10:12:40.356591", + "updated_at": "2026-07-10T10:12:40.356591", + "url": "/v1/software/deskalerts" +} diff --git a/site/public/v1/software/deskmate/index.json b/site/public/v1/software/deskmate/index.json new file mode 100644 index 000000000000..bf60421ed820 --- /dev/null +++ b/site/public/v1/software/deskmate/index.json @@ -0,0 +1,23 @@ +{ + "id": 2233, + "slug": "deskmate", + "name": "DeskMate", + "release_date": null, + "developers": [ + "Tandy Corporation" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "assembly language" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5264540" + ], + "created_at": "2026-07-10T10:12:40.357618", + "updated_at": "2026-07-10T10:12:40.357618", + "url": "/v1/software/deskmate" +} diff --git a/site/public/v1/software/deskmemo/index.json b/site/public/v1/software/deskmemo/index.json new file mode 100644 index 000000000000..61584246187b --- /dev/null +++ b/site/public/v1/software/deskmemo/index.json @@ -0,0 +1,23 @@ +{ + "id": 2234, + "slug": "deskmemo", + "name": "DeskMemo", + "release_date": null, + "developers": [ + "Cynthia Luo" + ], + "publishers": [], + "operating_systems": [ + "macOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139591339" + ], + "created_at": "2026-07-10T10:12:40.357618", + "updated_at": "2026-07-10T10:12:40.357618", + "url": "/v1/software/deskmemo" +} diff --git a/site/public/v1/software/deskspace/index.json b/site/public/v1/software/deskspace/index.json new file mode 100644 index 000000000000..b8a4a04b3073 --- /dev/null +++ b/site/public/v1/software/deskspace/index.json @@ -0,0 +1,19 @@ +{ + "id": 2235, + "slug": "deskspace", + "name": "DeskSpace", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1979133" + ], + "created_at": "2026-07-10T10:12:40.357618", + "updated_at": "2026-07-10T10:12:40.357618", + "url": "/v1/software/deskspace" +} diff --git a/site/public/v1/software/desktime/index.json b/site/public/v1/software/desktime/index.json new file mode 100644 index 000000000000..9d0bfa2f1a3b --- /dev/null +++ b/site/public/v1/software/desktime/index.json @@ -0,0 +1,19 @@ +{ + "id": 2236, + "slug": "desktime", + "name": "DeskTime", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5264546" + ], + "created_at": "2026-07-10T10:12:40.358586", + "updated_at": "2026-07-10T10:12:40.358586", + "url": "/v1/software/desktime" +} diff --git a/site/public/v1/software/desktop-architect/index.json b/site/public/v1/software/desktop-architect/index.json new file mode 100644 index 000000000000..ac7bedc5ad0d --- /dev/null +++ b/site/public/v1/software/desktop-architect/index.json @@ -0,0 +1,19 @@ +{ + "id": 2237, + "slug": "desktop-architect", + "name": "Desktop Architect", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5264565" + ], + "created_at": "2026-07-10T10:12:40.358586", + "updated_at": "2026-07-10T10:12:40.358586", + "url": "/v1/software/desktop-architect" +} diff --git a/site/public/v1/software/desktop-destroyer-christmassy/index.json b/site/public/v1/software/desktop-destroyer-christmassy/index.json new file mode 100644 index 000000000000..395fb29b8e1f --- /dev/null +++ b/site/public/v1/software/desktop-destroyer-christmassy/index.json @@ -0,0 +1,24 @@ +{ + "id": 2238, + "slug": "desktop-destroyer-christmassy", + "name": "Desktop Destroyer Christmassy", + "release_date": "2003-01-01", + "developers": [ + "Gemtree" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [ + "action game", + "shooter game" + ], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138646292" + ], + "created_at": "2026-07-10T10:12:40.358586", + "updated_at": "2026-07-10T10:12:40.358586", + "url": "/v1/software/desktop-destroyer-christmassy" +} diff --git a/site/public/v1/software/desktop-gadget-gallery/index.json b/site/public/v1/software/desktop-gadget-gallery/index.json new file mode 100644 index 000000000000..de3dcded33fb --- /dev/null +++ b/site/public/v1/software/desktop-gadget-gallery/index.json @@ -0,0 +1,19 @@ +{ + "id": 2239, + "slug": "desktop-gadget-gallery", + "name": "Desktop Gadget Gallery", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17187311" + ], + "created_at": "2026-07-10T10:12:40.359586", + "updated_at": "2026-07-10T10:12:40.359586", + "url": "/v1/software/desktop-gadget-gallery" +} diff --git a/site/public/v1/software/desktop-kanojo/index.json b/site/public/v1/software/desktop-kanojo/index.json new file mode 100644 index 000000000000..3b5166ec65ef --- /dev/null +++ b/site/public/v1/software/desktop-kanojo/index.json @@ -0,0 +1,19 @@ +{ + "id": 2240, + "slug": "desktop-kanojo", + "name": "Desktop Kanojo", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106567534" + ], + "created_at": "2026-07-10T10:12:40.359586", + "updated_at": "2026-07-10T10:12:40.359586", + "url": "/v1/software/desktop-kanojo" +} diff --git a/site/public/v1/software/desktoptwo/index.json b/site/public/v1/software/desktoptwo/index.json new file mode 100644 index 000000000000..b211a3590f3d --- /dev/null +++ b/site/public/v1/software/desktoptwo/index.json @@ -0,0 +1,19 @@ +{ + "id": 2241, + "slug": "desktoptwo", + "name": "DesktopTwo", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3705981" + ], + "created_at": "2026-07-10T10:12:40.359586", + "updated_at": "2026-07-10T10:12:40.359586", + "url": "/v1/software/desktoptwo" +} diff --git a/site/public/v1/software/desmond/index.json b/site/public/v1/software/desmond/index.json new file mode 100644 index 000000000000..da2f94106150 --- /dev/null +++ b/site/public/v1/software/desmond/index.json @@ -0,0 +1,21 @@ +{ + "id": 2242, + "slug": "desmond", + "name": "Desmond", + "release_date": null, + "developers": [ + "D. E. Shaw Research" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5264661" + ], + "created_at": "2026-07-10T10:12:40.360589", + "updated_at": "2026-07-10T10:12:40.360589", + "url": "/v1/software/desmond" +} diff --git a/site/public/v1/software/desmos/index.json b/site/public/v1/software/desmos/index.json new file mode 100644 index 000000000000..7526a7e514c4 --- /dev/null +++ b/site/public/v1/software/desmos/index.json @@ -0,0 +1,25 @@ +{ + "id": 2243, + "slug": "desmos", + "name": "Desmos", + "release_date": null, + "developers": [ + "Desmos" + ], + "publishers": [], + "operating_systems": [ + "iOS" + ], + "programming_languages": [ + "TypeScript" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16909328" + ], + "created_at": "2026-07-10T10:12:40.360589", + "updated_at": "2026-07-10T10:12:40.360589", + "url": "/v1/software/desmos" +} diff --git a/site/public/v1/software/detailed-city-experience/index.json b/site/public/v1/software/detailed-city-experience/index.json new file mode 100644 index 000000000000..69b8af2d7b79 --- /dev/null +++ b/site/public/v1/software/detailed-city-experience/index.json @@ -0,0 +1,19 @@ +{ + "id": 2244, + "slug": "detailed-city-experience", + "name": "Detailed City Experience", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135938694" + ], + "created_at": "2026-07-10T10:12:40.360589", + "updated_at": "2026-07-10T10:12:40.360589", + "url": "/v1/software/detailed-city-experience" +} diff --git a/site/public/v1/software/detex/index.json b/site/public/v1/software/detex/index.json new file mode 100644 index 000000000000..400309e21035 --- /dev/null +++ b/site/public/v1/software/detex/index.json @@ -0,0 +1,19 @@ +{ + "id": 2245, + "slug": "detex", + "name": "detex", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63064765" + ], + "created_at": "2026-07-10T10:12:40.360589", + "updated_at": "2026-07-10T10:12:40.360589", + "url": "/v1/software/detex" +} diff --git a/site/public/v1/software/deva/index.json b/site/public/v1/software/deva/index.json new file mode 100644 index 000000000000..559a3f6876e2 --- /dev/null +++ b/site/public/v1/software/deva/index.json @@ -0,0 +1,19 @@ +{ + "id": 2246, + "slug": "deva", + "name": "Deva", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125523833" + ], + "created_at": "2026-07-10T10:12:40.361617", + "updated_at": "2026-07-10T10:12:40.361617", + "url": "/v1/software/deva" +} diff --git a/site/public/v1/software/devast-ace-ii/index.json b/site/public/v1/software/devast-ace-ii/index.json new file mode 100644 index 000000000000..2b5e69d29f42 --- /dev/null +++ b/site/public/v1/software/devast-ace-ii/index.json @@ -0,0 +1,19 @@ +{ + "id": 2247, + "slug": "devast-ace-ii", + "name": "Devast Ace II", + "release_date": "1992-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11774679" + ], + "created_at": "2026-07-10T10:12:40.361617", + "updated_at": "2026-07-10T10:12:40.361617", + "url": "/v1/software/devast-ace-ii" +} diff --git a/site/public/v1/software/deveco-studio/index.json b/site/public/v1/software/deveco-studio/index.json new file mode 100644 index 000000000000..4cd79d8afa5d --- /dev/null +++ b/site/public/v1/software/deveco-studio/index.json @@ -0,0 +1,21 @@ +{ + "id": 2248, + "slug": "deveco-studio", + "name": "DevEco Studio", + "release_date": null, + "developers": [ + "Huawei" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113213972" + ], + "created_at": "2026-07-10T10:12:40.362587", + "updated_at": "2026-07-10T10:12:40.362587", + "url": "/v1/software/deveco-studio" +} diff --git a/site/public/v1/software/devmanual/index.json b/site/public/v1/software/devmanual/index.json new file mode 100644 index 000000000000..aa94834e6e58 --- /dev/null +++ b/site/public/v1/software/devmanual/index.json @@ -0,0 +1,19 @@ +{ + "id": 2249, + "slug": "devmanual", + "name": "devmanual", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974804" + ], + "created_at": "2026-07-10T10:12:40.362587", + "updated_at": "2026-07-10T10:12:40.362587", + "url": "/v1/software/devmanual" +} diff --git a/site/public/v1/software/devonthink/index.json b/site/public/v1/software/devonthink/index.json new file mode 100644 index 000000000000..fc14d319bef4 --- /dev/null +++ b/site/public/v1/software/devonthink/index.json @@ -0,0 +1,19 @@ +{ + "id": 2250, + "slug": "devonthink", + "name": "DEVONthink", + "release_date": "2005-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084914" + ], + "created_at": "2026-07-10T10:12:40.362587", + "updated_at": "2026-07-10T10:12:40.362587", + "url": "/v1/software/devonthink" +} diff --git a/site/public/v1/software/devpartner/index.json b/site/public/v1/software/devpartner/index.json new file mode 100644 index 000000000000..93101f25296b --- /dev/null +++ b/site/public/v1/software/devpartner/index.json @@ -0,0 +1,23 @@ +{ + "id": 2251, + "slug": "devpartner", + "name": "DevPartner", + "release_date": null, + "developers": [ + "Nu-Mega Technologies", + "Compuware", + "Borland" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5266377" + ], + "created_at": "2026-07-10T10:12:40.362587", + "updated_at": "2026-07-10T10:12:40.362587", + "url": "/v1/software/devpartner" +} diff --git a/site/public/v1/software/dewesoftx/index.json b/site/public/v1/software/dewesoftx/index.json new file mode 100644 index 000000000000..6c47f0590655 --- /dev/null +++ b/site/public/v1/software/dewesoftx/index.json @@ -0,0 +1,19 @@ +{ + "id": 2252, + "slug": "dewesoftx", + "name": "DewesoftX", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105744786" + ], + "created_at": "2026-07-10T10:12:40.363616", + "updated_at": "2026-07-10T10:12:40.363616", + "url": "/v1/software/dewesoftx" +} diff --git a/site/public/v1/software/dex/index.json b/site/public/v1/software/dex/index.json new file mode 100644 index 000000000000..64dd354e082d --- /dev/null +++ b/site/public/v1/software/dex/index.json @@ -0,0 +1,21 @@ +{ + "id": 2253, + "slug": "dex", + "name": "Dex", + "release_date": "2015-11-20", + "developers": [ + "Zero-G Ltd" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25339793" + ], + "created_at": "2026-07-10T10:12:40.363616", + "updated_at": "2026-07-10T10:12:40.363616", + "url": "/v1/software/dex" +} diff --git a/site/public/v1/software/dfbnet/index.json b/site/public/v1/software/dfbnet/index.json new file mode 100644 index 000000000000..137eba0eb53d --- /dev/null +++ b/site/public/v1/software/dfbnet/index.json @@ -0,0 +1,19 @@ +{ + "id": 2254, + "slug": "dfbnet", + "name": "DFBnet", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1153287" + ], + "created_at": "2026-07-10T10:12:40.363616", + "updated_at": "2026-07-10T10:12:40.363616", + "url": "/v1/software/dfbnet" +} diff --git a/site/public/v1/software/dfg-viewer/index.json b/site/public/v1/software/dfg-viewer/index.json new file mode 100644 index 000000000000..54ac471bd993 --- /dev/null +++ b/site/public/v1/software/dfg-viewer/index.json @@ -0,0 +1,19 @@ +{ + "id": 2255, + "slug": "dfg-viewer", + "name": "DFG Viewer", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q56298708" + ], + "created_at": "2026-07-10T10:12:40.364631", + "updated_at": "2026-07-10T10:12:40.364631", + "url": "/v1/software/dfg-viewer" +} diff --git a/site/public/v1/software/dfr-browser/index.json b/site/public/v1/software/dfr-browser/index.json new file mode 100644 index 000000000000..7347b2424aa4 --- /dev/null +++ b/site/public/v1/software/dfr-browser/index.json @@ -0,0 +1,19 @@ +{ + "id": 2256, + "slug": "dfr-browser", + "name": "DfR Browser", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084915" + ], + "created_at": "2026-07-10T10:12:40.364631", + "updated_at": "2026-07-10T10:12:40.364631", + "url": "/v1/software/dfr-browser" +} diff --git a/site/public/v1/software/dfsms/index.json b/site/public/v1/software/dfsms/index.json new file mode 100644 index 000000000000..6a577a1a895d --- /dev/null +++ b/site/public/v1/software/dfsms/index.json @@ -0,0 +1,21 @@ +{ + "id": 2257, + "slug": "dfsms", + "name": "DFSMS", + "release_date": null, + "developers": [ + "IBM" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28871078" + ], + "created_at": "2026-07-10T10:12:40.364631", + "updated_at": "2026-07-10T10:12:40.364631", + "url": "/v1/software/dfsms" +} diff --git a/site/public/v1/software/dfsmsdfp/index.json b/site/public/v1/software/dfsmsdfp/index.json new file mode 100644 index 000000000000..0f02a6c9f7a7 --- /dev/null +++ b/site/public/v1/software/dfsmsdfp/index.json @@ -0,0 +1,23 @@ +{ + "id": 2258, + "slug": "dfsmsdfp", + "name": "DFSMSdfp", + "release_date": null, + "developers": [ + "IBM" + ], + "publishers": [], + "operating_systems": [ + "z/OS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28871081" + ], + "created_at": "2026-07-10T10:12:40.365656", + "updated_at": "2026-07-10T10:12:40.365656", + "url": "/v1/software/dfsmsdfp" +} diff --git a/site/public/v1/software/dh-press/index.json b/site/public/v1/software/dh-press/index.json new file mode 100644 index 000000000000..64519c6a3889 --- /dev/null +++ b/site/public/v1/software/dh-press/index.json @@ -0,0 +1,19 @@ +{ + "id": 2259, + "slug": "dh-press", + "name": "DH Press", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084917" + ], + "created_at": "2026-07-10T10:12:40.365656", + "updated_at": "2026-07-10T10:12:40.365656", + "url": "/v1/software/dh-press" +} diff --git a/site/public/v1/software/dhammin/index.json b/site/public/v1/software/dhammin/index.json new file mode 100644 index 000000000000..a6cc2d4b3e70 --- /dev/null +++ b/site/public/v1/software/dhammin/index.json @@ -0,0 +1,23 @@ +{ + "id": 2260, + "slug": "dhammin", + "name": "Dhammin", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "PHP", + "Java", + "Objective-C" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q65552828" + ], + "created_at": "2026-07-10T10:12:40.365656", + "updated_at": "2026-07-10T10:12:40.365656", + "url": "/v1/software/dhammin" +} diff --git a/site/public/v1/software/dhd-blog/index.json b/site/public/v1/software/dhd-blog/index.json new file mode 100644 index 000000000000..5ad3ce26a12f --- /dev/null +++ b/site/public/v1/software/dhd-blog/index.json @@ -0,0 +1,19 @@ +{ + "id": 2261, + "slug": "dhd-blog", + "name": "DHd Blog", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084916" + ], + "created_at": "2026-07-10T10:12:40.366614", + "updated_at": "2026-07-10T10:12:40.366614", + "url": "/v1/software/dhd-blog" +} diff --git a/site/public/v1/software/dhtmlx/index.json b/site/public/v1/software/dhtmlx/index.json new file mode 100644 index 000000000000..598740566e11 --- /dev/null +++ b/site/public/v1/software/dhtmlx/index.json @@ -0,0 +1,21 @@ +{ + "id": 2262, + "slug": "dhtmlx", + "name": "DHTMLX", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "GNU General Public License, version 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5269827" + ], + "created_at": "2026-07-10T10:12:40.366614", + "updated_at": "2026-07-10T10:12:40.366614", + "url": "/v1/software/dhtmlx" +} diff --git a/site/public/v1/software/dial-gate-softswitch-pbx/index.json b/site/public/v1/software/dial-gate-softswitch-pbx/index.json new file mode 100644 index 000000000000..4e4b0b77b954 --- /dev/null +++ b/site/public/v1/software/dial-gate-softswitch-pbx/index.json @@ -0,0 +1,23 @@ +{ + "id": 2263, + "slug": "dial-gate-softswitch-pbx", + "name": "Dial-Gate Softswitch PBX", + "release_date": "2006-01-01", + "developers": [ + "Dialexia" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18754144" + ], + "created_at": "2026-07-10T10:12:40.366614", + "updated_at": "2026-07-10T10:12:40.366614", + "url": "/v1/software/dial-gate-softswitch-pbx" +} diff --git a/site/public/v1/software/dial-office-ip-pbx/index.json b/site/public/v1/software/dial-office-ip-pbx/index.json new file mode 100644 index 000000000000..8e42d09ecefc --- /dev/null +++ b/site/public/v1/software/dial-office-ip-pbx/index.json @@ -0,0 +1,23 @@ +{ + "id": 2264, + "slug": "dial-office-ip-pbx", + "name": "Dial-Office IP-PBX", + "release_date": "2003-01-01", + "developers": [ + "Dialexia" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18351594" + ], + "created_at": "2026-07-10T10:12:40.366614", + "updated_at": "2026-07-10T10:12:40.366614", + "url": "/v1/software/dial-office-ip-pbx" +} diff --git a/site/public/v1/software/dialidol/index.json b/site/public/v1/software/dialidol/index.json new file mode 100644 index 000000000000..46907a61cf69 --- /dev/null +++ b/site/public/v1/software/dialidol/index.json @@ -0,0 +1,21 @@ +{ + "id": 2265, + "slug": "dialidol", + "name": "DialIdol", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5270433" + ], + "created_at": "2026-07-10T10:12:40.367613", + "updated_at": "2026-07-10T10:12:40.367613", + "url": "/v1/software/dialidol" +} diff --git a/site/public/v1/software/dialogos/index.json b/site/public/v1/software/dialogos/index.json new file mode 100644 index 000000000000..14305eea4087 --- /dev/null +++ b/site/public/v1/software/dialogos/index.json @@ -0,0 +1,19 @@ +{ + "id": 2266, + "slug": "dialogos", + "name": "DialogOS", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116328" + ], + "created_at": "2026-07-10T10:12:40.367613", + "updated_at": "2026-07-10T10:12:40.367613", + "url": "/v1/software/dialogos" +} diff --git a/site/public/v1/software/dialogue-assisted-visual-environment-for-geoinformation/index.json b/site/public/v1/software/dialogue-assisted-visual-environment-for-geoinformation/index.json new file mode 100644 index 000000000000..a385cbc8a2eb --- /dev/null +++ b/site/public/v1/software/dialogue-assisted-visual-environment-for-geoinformation/index.json @@ -0,0 +1,21 @@ +{ + "id": 2267, + "slug": "dialogue-assisted-visual-environment-for-geoinformation", + "name": "Dialogue-Assisted Visual Environment for Geoinformation", + "release_date": null, + "developers": [ + "Pennsylvania State University" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5270593" + ], + "created_at": "2026-07-10T10:12:40.368596", + "updated_at": "2026-07-10T10:12:40.368596", + "url": "/v1/software/dialogue-assisted-visual-environment-for-geoinformation" +} diff --git a/site/public/v1/software/dialux/index.json b/site/public/v1/software/dialux/index.json new file mode 100644 index 000000000000..241bf4c38538 --- /dev/null +++ b/site/public/v1/software/dialux/index.json @@ -0,0 +1,19 @@ +{ + "id": 2268, + "slug": "dialux", + "name": "DIAlux", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q635722" + ], + "created_at": "2026-07-10T10:12:40.368596", + "updated_at": "2026-07-10T10:12:40.368596", + "url": "/v1/software/dialux" +} diff --git a/site/public/v1/software/diamondtouch/index.json b/site/public/v1/software/diamondtouch/index.json new file mode 100644 index 000000000000..6a3e29c393dd --- /dev/null +++ b/site/public/v1/software/diamondtouch/index.json @@ -0,0 +1,21 @@ +{ + "id": 2269, + "slug": "diamondtouch", + "name": "DiamondTouch", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5270714" + ], + "created_at": "2026-07-10T10:12:40.368596", + "updated_at": "2026-07-10T10:12:40.368596", + "url": "/v1/software/diamondtouch" +} diff --git a/site/public/v1/software/diastext/index.json b/site/public/v1/software/diastext/index.json new file mode 100644 index 000000000000..190c1674213c --- /dev/null +++ b/site/public/v1/software/diastext/index.json @@ -0,0 +1,19 @@ +{ + "id": 2270, + "slug": "diastext", + "name": "DIASTEXT", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125523432" + ], + "created_at": "2026-07-10T10:12:40.368596", + "updated_at": "2026-07-10T10:12:40.368596", + "url": "/v1/software/diastext" +} diff --git a/site/public/v1/software/dibbler-client/index.json b/site/public/v1/software/dibbler-client/index.json new file mode 100644 index 000000000000..cc4c8ee4758e --- /dev/null +++ b/site/public/v1/software/dibbler-client/index.json @@ -0,0 +1,19 @@ +{ + "id": 2271, + "slug": "dibbler-client", + "name": "dibbler-client", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q88501646" + ], + "created_at": "2026-07-10T10:12:40.369597", + "updated_at": "2026-07-10T10:12:40.369597", + "url": "/v1/software/dibbler-client" +} diff --git a/site/public/v1/software/dibbler/index.json b/site/public/v1/software/dibbler/index.json new file mode 100644 index 000000000000..dc17ebfeb731 --- /dev/null +++ b/site/public/v1/software/dibbler/index.json @@ -0,0 +1,19 @@ +{ + "id": 2272, + "slug": "dibbler", + "name": "dibbler", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q88501765" + ], + "created_at": "2026-07-10T10:12:40.369597", + "updated_at": "2026-07-10T10:12:40.369597", + "url": "/v1/software/dibbler" +} diff --git a/site/public/v1/software/dicra/index.json b/site/public/v1/software/dicra/index.json new file mode 100644 index 000000000000..a4009c146911 --- /dev/null +++ b/site/public/v1/software/dicra/index.json @@ -0,0 +1,21 @@ +{ + "id": 2273, + "slug": "dicra", + "name": "DiCRA", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115688435" + ], + "created_at": "2026-07-10T10:12:40.370599", + "updated_at": "2026-07-10T10:12:40.370599", + "url": "/v1/software/dicra" +} diff --git a/site/public/v1/software/diction/index.json b/site/public/v1/software/diction/index.json new file mode 100644 index 000000000000..a2dc14ed1653 --- /dev/null +++ b/site/public/v1/software/diction/index.json @@ -0,0 +1,24 @@ +{ + "id": 2274, + "slug": "diction", + "name": "Diction", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76184013" + ], + "created_at": "2026-07-10T10:12:40.370599", + "updated_at": "2026-07-10T10:12:40.370599", + "url": "/v1/software/diction" +} diff --git a/site/public/v1/software/dictionary/index.json b/site/public/v1/software/dictionary/index.json new file mode 100644 index 000000000000..80346da56188 --- /dev/null +++ b/site/public/v1/software/dictionary/index.json @@ -0,0 +1,27 @@ +{ + "id": 2275, + "slug": "dictionary", + "name": "Dictionary", + "release_date": "2005-01-01", + "developers": [ + "Apple Inc." + ], + "publishers": [ + "Apple Inc." + ], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [ + "dictionary" + ], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2706736" + ], + "created_at": "2026-07-10T10:12:40.370599", + "updated_at": "2026-07-10T10:12:40.370599", + "url": "/v1/software/dictionary" +} diff --git a/site/public/v1/software/didgeridoo-other-primitive-instruments/index.json b/site/public/v1/software/didgeridoo-other-primitive-instruments/index.json new file mode 100644 index 000000000000..832df5ef7529 --- /dev/null +++ b/site/public/v1/software/didgeridoo-other-primitive-instruments/index.json @@ -0,0 +1,21 @@ +{ + "id": 2276, + "slug": "didgeridoo-other-primitive-instruments", + "name": "Didgeridoo & Other Primitive Instruments", + "release_date": "1996-01-01", + "developers": [], + "publishers": [ + "Big Fish Audio" + ], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135455306" + ], + "created_at": "2026-07-10T10:12:40.370599", + "updated_at": "2026-07-10T10:12:40.370599", + "url": "/v1/software/didgeridoo-other-primitive-instruments" +} diff --git a/site/public/v1/software/didi/index.json b/site/public/v1/software/didi/index.json new file mode 100644 index 000000000000..f7c9b5beed74 --- /dev/null +++ b/site/public/v1/software/didi/index.json @@ -0,0 +1,19 @@ +{ + "id": 2277, + "slug": "didi", + "name": "DiDi", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q21190510" + ], + "created_at": "2026-07-10T10:12:40.370599", + "updated_at": "2026-07-10T10:12:40.371603", + "url": "/v1/software/didi" +} diff --git a/site/public/v1/software/didiwiki/index.json b/site/public/v1/software/didiwiki/index.json new file mode 100644 index 000000000000..c2bd549ec74f --- /dev/null +++ b/site/public/v1/software/didiwiki/index.json @@ -0,0 +1,19 @@ +{ + "id": 2278, + "slug": "didiwiki", + "name": "didiwiki", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10846949" + ], + "created_at": "2026-07-10T10:12:40.371603", + "updated_at": "2026-07-10T10:12:40.371603", + "url": "/v1/software/didiwiki" +} diff --git a/site/public/v1/software/didoo-ai/index.json b/site/public/v1/software/didoo-ai/index.json new file mode 100644 index 000000000000..3e991faccfef --- /dev/null +++ b/site/public/v1/software/didoo-ai/index.json @@ -0,0 +1,19 @@ +{ + "id": 2279, + "slug": "didoo-ai", + "name": "Didoo AI", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138863716" + ], + "created_at": "2026-07-10T10:12:40.371603", + "updated_at": "2026-07-10T10:12:40.371603", + "url": "/v1/software/didoo-ai" +} diff --git a/site/public/v1/software/diella/index.json b/site/public/v1/software/diella/index.json new file mode 100644 index 000000000000..ca371d1bec96 --- /dev/null +++ b/site/public/v1/software/diella/index.json @@ -0,0 +1,21 @@ +{ + "id": 2280, + "slug": "diella", + "name": "Diella", + "release_date": null, + "developers": [ + "National Agency for Information Society" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136236435" + ], + "created_at": "2026-07-10T10:12:40.372609", + "updated_at": "2026-07-10T10:12:40.372609", + "url": "/v1/software/diella" +} diff --git a/site/public/v1/software/diem/index.json b/site/public/v1/software/diem/index.json new file mode 100644 index 000000000000..81b5c4f10f61 --- /dev/null +++ b/site/public/v1/software/diem/index.json @@ -0,0 +1,23 @@ +{ + "id": 2281, + "slug": "diem", + "name": "Diem", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "PHP" + ], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3027475" + ], + "created_at": "2026-07-10T10:12:40.372609", + "updated_at": "2026-07-10T10:12:40.372609", + "url": "/v1/software/diem" +} diff --git a/site/public/v1/software/diff-text/index.json b/site/public/v1/software/diff-text/index.json new file mode 100644 index 000000000000..ecf308005aa6 --- /dev/null +++ b/site/public/v1/software/diff-text/index.json @@ -0,0 +1,19 @@ +{ + "id": 2282, + "slug": "diff-text", + "name": "Diff-Text", + "release_date": "2012-10-29", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5275255" + ], + "created_at": "2026-07-10T10:12:40.372609", + "updated_at": "2026-07-10T10:12:40.372609", + "url": "/v1/software/diff-text" +} diff --git a/site/public/v1/software/diff3/index.json b/site/public/v1/software/diff3/index.json new file mode 100644 index 000000000000..8ce891a2a4e3 --- /dev/null +++ b/site/public/v1/software/diff3/index.json @@ -0,0 +1,21 @@ +{ + "id": 2283, + "slug": "diff3", + "name": "diff3", + "release_date": null, + "developers": [ + "Bell Labs" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5275258" + ], + "created_at": "2026-07-10T10:12:40.372609", + "updated_at": "2026-07-10T10:12:40.372609", + "url": "/v1/software/diff3" +} diff --git a/site/public/v1/software/diffmask/index.json b/site/public/v1/software/diffmask/index.json new file mode 100644 index 000000000000..5d06e01cd607 --- /dev/null +++ b/site/public/v1/software/diffmask/index.json @@ -0,0 +1,19 @@ +{ + "id": 2284, + "slug": "diffmask", + "name": "diffmask", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974807" + ], + "created_at": "2026-07-10T10:12:40.373595", + "updated_at": "2026-07-10T10:12:40.373595", + "url": "/v1/software/diffmask" +} diff --git a/site/public/v1/software/diffpack/index.json b/site/public/v1/software/diffpack/index.json new file mode 100644 index 000000000000..ceca78b25b74 --- /dev/null +++ b/site/public/v1/software/diffpack/index.json @@ -0,0 +1,26 @@ +{ + "id": 2285, + "slug": "diffpack", + "name": "Diffpack", + "release_date": "1991-01-01", + "developers": [ + "Hans Petter Langtangen" + ], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [ + "Python" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5275397" + ], + "created_at": "2026-07-10T10:12:40.373595", + "updated_at": "2026-07-10T10:12:40.373595", + "url": "/v1/software/diffpack" +} diff --git a/site/public/v1/software/diffstat/index.json b/site/public/v1/software/diffstat/index.json new file mode 100644 index 000000000000..31b63c3fe1dd --- /dev/null +++ b/site/public/v1/software/diffstat/index.json @@ -0,0 +1,23 @@ +{ + "id": 2286, + "slug": "diffstat", + "name": "diffstat", + "release_date": "1994-06-13", + "developers": [ + "Thomas E. Dickey" + ], + "publishers": [], + "operating_systems": [ + "Unix-like operating system" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62847936" + ], + "created_at": "2026-07-10T10:12:40.373595", + "updated_at": "2026-07-10T10:12:40.373595", + "url": "/v1/software/diffstat" +} diff --git a/site/public/v1/software/digg-reader/index.json b/site/public/v1/software/digg-reader/index.json new file mode 100644 index 000000000000..aa91bddcc2ba --- /dev/null +++ b/site/public/v1/software/digg-reader/index.json @@ -0,0 +1,21 @@ +{ + "id": 2287, + "slug": "digg-reader", + "name": "Digg Reader", + "release_date": "2013-06-26", + "developers": [ + "Digg" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16927636" + ], + "created_at": "2026-07-10T10:12:40.374603", + "updated_at": "2026-07-10T10:12:40.374603", + "url": "/v1/software/digg-reader" +} diff --git a/site/public/v1/software/dight/index.json b/site/public/v1/software/dight/index.json new file mode 100644 index 000000000000..f4ade71dd86a --- /dev/null +++ b/site/public/v1/software/dight/index.json @@ -0,0 +1,19 @@ +{ + "id": 2288, + "slug": "dight", + "name": "Dight", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138465445" + ], + "created_at": "2026-07-10T10:12:40.374603", + "updated_at": "2026-07-10T10:12:40.374603", + "url": "/v1/software/dight" +} diff --git a/site/public/v1/software/digiarty-winx-dvd-ripper-platinum/index.json b/site/public/v1/software/digiarty-winx-dvd-ripper-platinum/index.json new file mode 100644 index 000000000000..2b723efc908c --- /dev/null +++ b/site/public/v1/software/digiarty-winx-dvd-ripper-platinum/index.json @@ -0,0 +1,21 @@ +{ + "id": 2289, + "slug": "digiarty-winx-dvd-ripper-platinum", + "name": "Digiarty WinX DVD Ripper Platinum", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18351753" + ], + "created_at": "2026-07-10T10:12:40.374603", + "updated_at": "2026-07-10T10:12:40.374603", + "url": "/v1/software/digiarty-winx-dvd-ripper-platinum" +} diff --git a/site/public/v1/software/digicam-print-channel/index.json b/site/public/v1/software/digicam-print-channel/index.json new file mode 100644 index 000000000000..8e39b00f80a5 --- /dev/null +++ b/site/public/v1/software/digicam-print-channel/index.json @@ -0,0 +1,19 @@ +{ + "id": 2290, + "slug": "digicam-print-channel", + "name": "Digicam Print Channel", + "release_date": "2008-07-23", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10266307" + ], + "created_at": "2026-07-10T10:12:40.375543", + "updated_at": "2026-07-10T10:12:40.375543", + "url": "/v1/software/digicam-print-channel" +} diff --git a/site/public/v1/software/digiguide/index.json b/site/public/v1/software/digiguide/index.json new file mode 100644 index 000000000000..c2d17c7139e2 --- /dev/null +++ b/site/public/v1/software/digiguide/index.json @@ -0,0 +1,19 @@ +{ + "id": 2291, + "slug": "digiguide", + "name": "DigiGuide", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5275707" + ], + "created_at": "2026-07-10T10:12:40.375543", + "updated_at": "2026-07-10T10:12:40.375543", + "url": "/v1/software/digiguide" +} diff --git a/site/public/v1/software/digikavach/index.json b/site/public/v1/software/digikavach/index.json new file mode 100644 index 000000000000..a0280fc2b931 --- /dev/null +++ b/site/public/v1/software/digikavach/index.json @@ -0,0 +1,19 @@ +{ + "id": 2292, + "slug": "digikavach", + "name": "DigiKavach", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123169504" + ], + "created_at": "2026-07-10T10:12:40.375543", + "updated_at": "2026-07-10T10:12:40.375543", + "url": "/v1/software/digikavach" +} diff --git a/site/public/v1/software/digilib/index.json b/site/public/v1/software/digilib/index.json new file mode 100644 index 000000000000..c775e9f84684 --- /dev/null +++ b/site/public/v1/software/digilib/index.json @@ -0,0 +1,19 @@ +{ + "id": 2293, + "slug": "digilib", + "name": "digilib", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084918" + ], + "created_at": "2026-07-10T10:12:40.376541", + "updated_at": "2026-07-10T10:12:40.376541", + "url": "/v1/software/digilib" +} diff --git a/site/public/v1/software/digiprodify/index.json b/site/public/v1/software/digiprodify/index.json new file mode 100644 index 000000000000..e0460479a333 --- /dev/null +++ b/site/public/v1/software/digiprodify/index.json @@ -0,0 +1,19 @@ +{ + "id": 2294, + "slug": "digiprodify", + "name": "DigiProdify", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139917723" + ], + "created_at": "2026-07-10T10:12:40.376541", + "updated_at": "2026-07-10T10:12:40.376541", + "url": "/v1/software/digiprodify" +} diff --git a/site/public/v1/software/digital-adoption-platform/index.json b/site/public/v1/software/digital-adoption-platform/index.json new file mode 100644 index 000000000000..c94648f7c9b5 --- /dev/null +++ b/site/public/v1/software/digital-adoption-platform/index.json @@ -0,0 +1,19 @@ +{ + "id": 2295, + "slug": "digital-adoption-platform", + "name": "Digital adoption platform", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116030310" + ], + "created_at": "2026-07-10T10:12:40.376541", + "updated_at": "2026-07-10T10:12:40.376541", + "url": "/v1/software/digital-adoption-platform" +} diff --git a/site/public/v1/software/digital-automated-identification-system/index.json b/site/public/v1/software/digital-automated-identification-system/index.json new file mode 100644 index 000000000000..19fc808f79df --- /dev/null +++ b/site/public/v1/software/digital-automated-identification-system/index.json @@ -0,0 +1,21 @@ +{ + "id": 2296, + "slug": "digital-automated-identification-system", + "name": "Digital Automated Identification SYstem", + "release_date": null, + "developers": [ + "Mark A. O'Neill" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5275790" + ], + "created_at": "2026-07-10T10:12:40.377538", + "updated_at": "2026-07-10T10:12:40.377538", + "url": "/v1/software/digital-automated-identification-system" +} diff --git a/site/public/v1/software/digital-dna/index.json b/site/public/v1/software/digital-dna/index.json new file mode 100644 index 000000000000..d853614020ef --- /dev/null +++ b/site/public/v1/software/digital-dna/index.json @@ -0,0 +1,19 @@ +{ + "id": 2297, + "slug": "digital-dna", + "name": "Digital DNA", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084919" + ], + "created_at": "2026-07-10T10:12:40.377538", + "updated_at": "2026-07-10T10:12:40.377538", + "url": "/v1/software/digital-dna" +} diff --git a/site/public/v1/software/digital-driver/index.json b/site/public/v1/software/digital-driver/index.json new file mode 100644 index 000000000000..150bad2b1c08 --- /dev/null +++ b/site/public/v1/software/digital-driver/index.json @@ -0,0 +1,19 @@ +{ + "id": 2298, + "slug": "digital-driver", + "name": "Digital Driver", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106140468" + ], + "created_at": "2026-07-10T10:12:40.377538", + "updated_at": "2026-07-10T10:12:40.377538", + "url": "/v1/software/digital-driver" +} diff --git a/site/public/v1/software/digital-electronics-education-and-design-suite/index.json b/site/public/v1/software/digital-electronics-education-and-design-suite/index.json new file mode 100644 index 000000000000..07656b8a9e56 --- /dev/null +++ b/site/public/v1/software/digital-electronics-education-and-design-suite/index.json @@ -0,0 +1,23 @@ +{ + "id": 2299, + "slug": "digital-electronics-education-and-design-suite", + "name": "Digital Electronics Education and Design Suite", + "release_date": "2002-01-01", + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60542040" + ], + "created_at": "2026-07-10T10:12:40.377538", + "updated_at": "2026-07-10T10:12:40.377538", + "url": "/v1/software/digital-electronics-education-and-design-suite" +} diff --git a/site/public/v1/software/digital-factory/index.json b/site/public/v1/software/digital-factory/index.json new file mode 100644 index 000000000000..56800f9574f5 --- /dev/null +++ b/site/public/v1/software/digital-factory/index.json @@ -0,0 +1,19 @@ +{ + "id": 2300, + "slug": "digital-factory", + "name": "Digital factory", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1224893" + ], + "created_at": "2026-07-10T10:12:40.378638", + "updated_at": "2026-07-10T10:12:40.378638", + "url": "/v1/software/digital-factory" +} diff --git a/site/public/v1/software/digital-humanities-austria-dha/index.json b/site/public/v1/software/digital-humanities-austria-dha/index.json new file mode 100644 index 000000000000..a4a61809f049 --- /dev/null +++ b/site/public/v1/software/digital-humanities-austria-dha/index.json @@ -0,0 +1,19 @@ +{ + "id": 2301, + "slug": "digital-humanities-austria-dha", + "name": "digital humanities austria (DHA)", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087795" + ], + "created_at": "2026-07-10T10:12:40.378638", + "updated_at": "2026-07-10T10:12:40.378638", + "url": "/v1/software/digital-humanities-austria-dha" +} diff --git a/site/public/v1/software/digital-information-archiving-system/index.json b/site/public/v1/software/digital-information-archiving-system/index.json new file mode 100644 index 000000000000..091dc2db9bfc --- /dev/null +++ b/site/public/v1/software/digital-information-archiving-system/index.json @@ -0,0 +1,21 @@ +{ + "id": 2302, + "slug": "digital-information-archiving-system", + "name": "Digital Information Archiving System", + "release_date": null, + "developers": [ + "IBM" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q37608988" + ], + "created_at": "2026-07-10T10:12:40.378638", + "updated_at": "2026-07-10T10:12:40.378638", + "url": "/v1/software/digital-information-archiving-system" +} diff --git a/site/public/v1/software/digital-libraries-federation/index.json b/site/public/v1/software/digital-libraries-federation/index.json new file mode 100644 index 000000000000..596bac5da3ce --- /dev/null +++ b/site/public/v1/software/digital-libraries-federation/index.json @@ -0,0 +1,19 @@ +{ + "id": 2303, + "slug": "digital-libraries-federation", + "name": "Digital Libraries Federation", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084921" + ], + "created_at": "2026-07-10T10:12:40.379596", + "updated_at": "2026-07-10T10:12:40.379596", + "url": "/v1/software/digital-libraries-federation" +} diff --git a/site/public/v1/software/digital-management-of-curatorial-processes-obatal-plug-in/index.json b/site/public/v1/software/digital-management-of-curatorial-processes-obatal-plug-in/index.json new file mode 100644 index 000000000000..e6e4264fd4a0 --- /dev/null +++ b/site/public/v1/software/digital-management-of-curatorial-processes-obatal-plug-in/index.json @@ -0,0 +1,19 @@ +{ + "id": 2304, + "slug": "digital-management-of-curatorial-processes-obatal-plug-in", + "name": "Digital Management of Curatorial Processes (Obatalá plug-in)", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140364397" + ], + "created_at": "2026-07-10T10:12:40.379596", + "updated_at": "2026-07-10T10:12:40.379596", + "url": "/v1/software/digital-management-of-curatorial-processes-obatal-plug-in" +} diff --git a/site/public/v1/software/digital-mappa/index.json b/site/public/v1/software/digital-mappa/index.json new file mode 100644 index 000000000000..dcd74702e20b --- /dev/null +++ b/site/public/v1/software/digital-mappa/index.json @@ -0,0 +1,19 @@ +{ + "id": 2305, + "slug": "digital-mappa", + "name": "Digital Mappa", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084922" + ], + "created_at": "2026-07-10T10:12:40.379596", + "updated_at": "2026-07-10T10:12:40.379596", + "url": "/v1/software/digital-mappa" +} diff --git a/site/public/v1/software/digital-original/index.json b/site/public/v1/software/digital-original/index.json new file mode 100644 index 000000000000..9d5a7e8631a2 --- /dev/null +++ b/site/public/v1/software/digital-original/index.json @@ -0,0 +1,19 @@ +{ + "id": 2306, + "slug": "digital-original", + "name": "Digital Original", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140356383" + ], + "created_at": "2026-07-10T10:12:40.380617", + "updated_at": "2026-07-10T10:12:40.380617", + "url": "/v1/software/digital-original" +} diff --git a/site/public/v1/software/digital-performer/index.json b/site/public/v1/software/digital-performer/index.json new file mode 100644 index 000000000000..4cffa2457744 --- /dev/null +++ b/site/public/v1/software/digital-performer/index.json @@ -0,0 +1,21 @@ +{ + "id": 2307, + "slug": "digital-performer", + "name": "Digital Performer", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q499062" + ], + "created_at": "2026-07-10T10:12:40.380617", + "updated_at": "2026-07-10T10:12:40.380617", + "url": "/v1/software/digital-performer" +} diff --git a/site/public/v1/software/digital-photo-professional/index.json b/site/public/v1/software/digital-photo-professional/index.json new file mode 100644 index 000000000000..fb77c7941080 --- /dev/null +++ b/site/public/v1/software/digital-photo-professional/index.json @@ -0,0 +1,24 @@ +{ + "id": 2308, + "slug": "digital-photo-professional", + "name": "Digital Photo Professional", + "release_date": null, + "developers": [ + "Canon Inc." + ], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1224790" + ], + "created_at": "2026-07-10T10:12:40.380617", + "updated_at": "2026-07-10T10:12:40.380617", + "url": "/v1/software/digital-photo-professional" +} diff --git a/site/public/v1/software/digital-project/index.json b/site/public/v1/software/digital-project/index.json new file mode 100644 index 000000000000..8ff143b13c26 --- /dev/null +++ b/site/public/v1/software/digital-project/index.json @@ -0,0 +1,19 @@ +{ + "id": 2309, + "slug": "digital-project", + "name": "Digital Project", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3027812" + ], + "created_at": "2026-07-10T10:12:40.381601", + "updated_at": "2026-07-10T10:12:40.381601", + "url": "/v1/software/digital-project" +} diff --git a/site/public/v1/software/digital-record-object-identification/index.json b/site/public/v1/software/digital-record-object-identification/index.json new file mode 100644 index 000000000000..e2f3013694d2 --- /dev/null +++ b/site/public/v1/software/digital-record-object-identification/index.json @@ -0,0 +1,25 @@ +{ + "id": 2310, + "slug": "digital-record-object-identification", + "name": "Digital Record Object Identification", + "release_date": null, + "developers": [ + "UK National Archives" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Java" + ], + "licenses": [ + "3-clause BSD License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q24305922" + ], + "created_at": "2026-07-10T10:12:40.381601", + "updated_at": "2026-07-10T10:12:40.381601", + "url": "/v1/software/digital-record-object-identification" +} diff --git a/site/public/v1/software/digital-replay-system/index.json b/site/public/v1/software/digital-replay-system/index.json new file mode 100644 index 000000000000..23f59bd5856e --- /dev/null +++ b/site/public/v1/software/digital-replay-system/index.json @@ -0,0 +1,24 @@ +{ + "id": 2311, + "slug": "digital-replay-system", + "name": "digital replay system", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "BSD licenses" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107035677" + ], + "created_at": "2026-07-10T10:12:40.381601", + "updated_at": "2026-07-10T10:12:40.381601", + "url": "/v1/software/digital-replay-system" +} diff --git a/site/public/v1/software/digital-repository-audit-method-based-on-risk-assessment/index.json b/site/public/v1/software/digital-repository-audit-method-based-on-risk-assessment/index.json new file mode 100644 index 000000000000..eed6373f77e7 --- /dev/null +++ b/site/public/v1/software/digital-repository-audit-method-based-on-risk-assessment/index.json @@ -0,0 +1,21 @@ +{ + "id": 2312, + "slug": "digital-repository-audit-method-based-on-risk-assessment", + "name": "Digital repository audit method based on risk assessment", + "release_date": "2007-01-01", + "developers": [ + "Digital Curation Centre" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22907808" + ], + "created_at": "2026-07-10T10:12:40.381601", + "updated_at": "2026-07-10T10:12:40.381601", + "url": "/v1/software/digital-repository-audit-method-based-on-risk-assessment" +} diff --git a/site/public/v1/software/digital-visual-fortran/index.json b/site/public/v1/software/digital-visual-fortran/index.json new file mode 100644 index 000000000000..955c61d32a9a --- /dev/null +++ b/site/public/v1/software/digital-visual-fortran/index.json @@ -0,0 +1,21 @@ +{ + "id": 2313, + "slug": "digital-visual-fortran", + "name": "Digital Visual Fortran", + "release_date": null, + "developers": [ + "Digital Equipment Corporation" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4037350" + ], + "created_at": "2026-07-10T10:12:40.382614", + "updated_at": "2026-07-10T10:12:40.382614", + "url": "/v1/software/digital-visual-fortran" +} diff --git a/site/public/v1/software/digitalbooker/index.json b/site/public/v1/software/digitalbooker/index.json new file mode 100644 index 000000000000..3d1f97847051 --- /dev/null +++ b/site/public/v1/software/digitalbooker/index.json @@ -0,0 +1,19 @@ +{ + "id": 2314, + "slug": "digitalbooker", + "name": "DigitalBooker", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22907811" + ], + "created_at": "2026-07-10T10:12:40.382614", + "updated_at": "2026-07-10T10:12:40.382614", + "url": "/v1/software/digitalbooker" +} diff --git a/site/public/v1/software/digitalcolor-meter/index.json b/site/public/v1/software/digitalcolor-meter/index.json new file mode 100644 index 000000000000..0de24c90620a --- /dev/null +++ b/site/public/v1/software/digitalcolor-meter/index.json @@ -0,0 +1,23 @@ +{ + "id": 2315, + "slug": "digitalcolor-meter", + "name": "DigitalColor Meter", + "release_date": null, + "developers": [ + "Apple Inc." + ], + "publishers": [], + "operating_systems": [ + "macOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3707596" + ], + "created_at": "2026-07-10T10:12:40.382614", + "updated_at": "2026-07-10T10:12:40.382614", + "url": "/v1/software/digitalcolor-meter" +} diff --git a/site/public/v1/software/digitales-schaudepot/index.json b/site/public/v1/software/digitales-schaudepot/index.json new file mode 100644 index 000000000000..733a452ed17b --- /dev/null +++ b/site/public/v1/software/digitales-schaudepot/index.json @@ -0,0 +1,19 @@ +{ + "id": 2316, + "slug": "digitales-schaudepot", + "name": "digitales schaudepot", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087794" + ], + "created_at": "2026-07-10T10:12:40.383606", + "updated_at": "2026-07-10T10:12:40.383606", + "url": "/v1/software/digitales-schaudepot" +} diff --git a/site/public/v1/software/digitalyser-io/index.json b/site/public/v1/software/digitalyser-io/index.json new file mode 100644 index 000000000000..8eb2dc3db1d1 --- /dev/null +++ b/site/public/v1/software/digitalyser-io/index.json @@ -0,0 +1,19 @@ +{ + "id": 2317, + "slug": "digitalyser-io", + "name": "digitalyser.io", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140467808" + ], + "created_at": "2026-07-10T10:12:40.383606", + "updated_at": "2026-07-10T10:12:40.383606", + "url": "/v1/software/digitalyser-io" +} diff --git a/site/public/v1/software/digress-it/index.json b/site/public/v1/software/digress-it/index.json new file mode 100644 index 000000000000..2ea734154ce2 --- /dev/null +++ b/site/public/v1/software/digress-it/index.json @@ -0,0 +1,19 @@ +{ + "id": 2318, + "slug": "digress-it", + "name": "Digress.it", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084923" + ], + "created_at": "2026-07-10T10:12:40.383606", + "updated_at": "2026-07-10T10:12:40.383606", + "url": "/v1/software/digress-it" +} diff --git a/site/public/v1/software/digsby/index.json b/site/public/v1/software/digsby/index.json new file mode 100644 index 000000000000..710339d9f793 --- /dev/null +++ b/site/public/v1/software/digsby/index.json @@ -0,0 +1,23 @@ +{ + "id": 2319, + "slug": "digsby", + "name": "Digsby", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "Python Software Foundation License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q58069" + ], + "created_at": "2026-07-10T10:12:40.384593", + "updated_at": "2026-07-10T10:12:40.384593", + "url": "/v1/software/digsby" +} diff --git a/site/public/v1/software/diino/index.json b/site/public/v1/software/diino/index.json new file mode 100644 index 000000000000..4a18f98a5a17 --- /dev/null +++ b/site/public/v1/software/diino/index.json @@ -0,0 +1,22 @@ +{ + "id": 2320, + "slug": "diino", + "name": "Diino", + "release_date": "2004-01-01", + "developers": [], + "publishers": [], + "operating_systems": [ + "iPhone", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5276472" + ], + "created_at": "2026-07-10T10:12:40.384593", + "updated_at": "2026-07-10T10:12:40.384593", + "url": "/v1/software/diino" +} diff --git a/site/public/v1/software/dimag/index.json b/site/public/v1/software/dimag/index.json new file mode 100644 index 000000000000..1206c50b25d1 --- /dev/null +++ b/site/public/v1/software/dimag/index.json @@ -0,0 +1,19 @@ +{ + "id": 2321, + "slug": "dimag", + "name": "DIMAG", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110532511" + ], + "created_at": "2026-07-10T10:12:40.384593", + "updated_at": "2026-07-10T10:12:40.384593", + "url": "/v1/software/dimag" +} diff --git a/site/public/v1/software/dimensions-cm/index.json b/site/public/v1/software/dimensions-cm/index.json new file mode 100644 index 000000000000..7094861adc43 --- /dev/null +++ b/site/public/v1/software/dimensions-cm/index.json @@ -0,0 +1,21 @@ +{ + "id": 2322, + "slug": "dimensions-cm", + "name": "Dimensions CM", + "release_date": null, + "developers": [ + "Serena Software" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22907820" + ], + "created_at": "2026-07-10T10:12:40.384593", + "updated_at": "2026-07-10T10:12:40.384593", + "url": "/v1/software/dimensions-cm" +} diff --git a/site/public/v1/software/dimreduction/index.json b/site/public/v1/software/dimreduction/index.json new file mode 100644 index 000000000000..b3ef0f884328 --- /dev/null +++ b/site/public/v1/software/dimreduction/index.json @@ -0,0 +1,21 @@ +{ + "id": 2323, + "slug": "dimreduction", + "name": "dimreduction", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Java" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113308276" + ], + "created_at": "2026-07-10T10:12:40.385655", + "updated_at": "2026-07-10T10:12:40.385655", + "url": "/v1/software/dimreduction" +} diff --git a/site/public/v1/software/dinocapture/index.json b/site/public/v1/software/dinocapture/index.json new file mode 100644 index 000000000000..3f30e0a33de5 --- /dev/null +++ b/site/public/v1/software/dinocapture/index.json @@ -0,0 +1,19 @@ +{ + "id": 2324, + "slug": "dinocapture", + "name": "DinoCapture", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112650960" + ], + "created_at": "2026-07-10T10:12:40.385655", + "updated_at": "2026-07-10T10:12:40.385655", + "url": "/v1/software/dinocapture" +} diff --git a/site/public/v1/software/dipmeter-advisor/index.json b/site/public/v1/software/dipmeter-advisor/index.json new file mode 100644 index 000000000000..c5af61c7c3e0 --- /dev/null +++ b/site/public/v1/software/dipmeter-advisor/index.json @@ -0,0 +1,23 @@ +{ + "id": 2325, + "slug": "dipmeter-advisor", + "name": "Dipmeter Advisor", + "release_date": null, + "developers": [ + "SLB" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Interlisp" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5280016" + ], + "created_at": "2026-07-10T10:12:40.385655", + "updated_at": "2026-07-10T10:12:40.385655", + "url": "/v1/software/dipmeter-advisor" +} diff --git a/site/public/v1/software/dips/index.json b/site/public/v1/software/dips/index.json new file mode 100644 index 000000000000..f474b871f4b1 --- /dev/null +++ b/site/public/v1/software/dips/index.json @@ -0,0 +1,19 @@ +{ + "id": 2326, + "slug": "dips", + "name": "DIPS", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11964312" + ], + "created_at": "2026-07-10T10:12:40.386642", + "updated_at": "2026-07-10T10:12:40.386642", + "url": "/v1/software/dips" +} diff --git a/site/public/v1/software/diptrace/index.json b/site/public/v1/software/diptrace/index.json new file mode 100644 index 000000000000..bd75668930f9 --- /dev/null +++ b/site/public/v1/software/diptrace/index.json @@ -0,0 +1,24 @@ +{ + "id": 2327, + "slug": "diptrace", + "name": "DipTrace", + "release_date": "2004-08-01", + "developers": [], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [ + "Delphi" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5279665" + ], + "created_at": "2026-07-10T10:12:40.386642", + "updated_at": "2026-07-10T10:12:40.386642", + "url": "/v1/software/diptrace" +} diff --git a/site/public/v1/software/direct3d-12/index.json b/site/public/v1/software/direct3d-12/index.json new file mode 100644 index 000000000000..f89d3debb8d1 --- /dev/null +++ b/site/public/v1/software/direct3d-12/index.json @@ -0,0 +1,19 @@ +{ + "id": 2328, + "slug": "direct3d-12", + "name": "Direct3D 12", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18395655" + ], + "created_at": "2026-07-10T10:12:40.386642", + "updated_at": "2026-07-10T10:12:40.386642", + "url": "/v1/software/direct3d-12" +} diff --git a/site/public/v1/software/direct3d/index.json b/site/public/v1/software/direct3d/index.json new file mode 100644 index 000000000000..5c563d40cbcf --- /dev/null +++ b/site/public/v1/software/direct3d/index.json @@ -0,0 +1,21 @@ +{ + "id": 2329, + "slug": "direct3d", + "name": "Direct3D", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q939208" + ], + "created_at": "2026-07-10T10:12:40.387589", + "updated_at": "2026-07-10T10:12:40.387589", + "url": "/v1/software/direct3d" +} diff --git a/site/public/v1/software/directmusic/index.json b/site/public/v1/software/directmusic/index.json new file mode 100644 index 000000000000..a02d90fe8a6b --- /dev/null +++ b/site/public/v1/software/directmusic/index.json @@ -0,0 +1,21 @@ +{ + "id": 2330, + "slug": "directmusic", + "name": "DirectMusic", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3495959" + ], + "created_at": "2026-07-10T10:12:40.387589", + "updated_at": "2026-07-10T10:12:40.387589", + "url": "/v1/software/directmusic" +} diff --git a/site/public/v1/software/director-musices/index.json b/site/public/v1/software/director-musices/index.json new file mode 100644 index 000000000000..07cde2c19b5f --- /dev/null +++ b/site/public/v1/software/director-musices/index.json @@ -0,0 +1,19 @@ +{ + "id": 2331, + "slug": "director-musices", + "name": "Director Musices", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5280527" + ], + "created_at": "2026-07-10T10:12:40.387589", + "updated_at": "2026-07-10T10:12:40.387589", + "url": "/v1/software/director-musices" +} diff --git a/site/public/v1/software/directory-utility/index.json b/site/public/v1/software/directory-utility/index.json new file mode 100644 index 000000000000..61d7b9a74106 --- /dev/null +++ b/site/public/v1/software/directory-utility/index.json @@ -0,0 +1,21 @@ +{ + "id": 2332, + "slug": "directory-utility", + "name": "Directory Utility", + "release_date": null, + "developers": [ + "Apple Inc." + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1049235" + ], + "created_at": "2026-07-10T10:12:40.388618", + "updated_at": "2026-07-10T10:12:40.388618", + "url": "/v1/software/directory-utility" +} diff --git a/site/public/v1/software/directskin/index.json b/site/public/v1/software/directskin/index.json new file mode 100644 index 000000000000..2a42454aed68 --- /dev/null +++ b/site/public/v1/software/directskin/index.json @@ -0,0 +1,19 @@ +{ + "id": 2333, + "slug": "directskin", + "name": "DirectSkin", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5280234" + ], + "created_at": "2026-07-10T10:12:40.388618", + "updated_at": "2026-07-10T10:12:40.388618", + "url": "/v1/software/directskin" +} diff --git a/site/public/v1/software/directsound/index.json b/site/public/v1/software/directsound/index.json new file mode 100644 index 000000000000..6ee4f1986ad1 --- /dev/null +++ b/site/public/v1/software/directsound/index.json @@ -0,0 +1,19 @@ +{ + "id": 2334, + "slug": "directsound", + "name": "DirectSound", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1371166" + ], + "created_at": "2026-07-10T10:12:40.388618", + "updated_at": "2026-07-10T10:12:40.388618", + "url": "/v1/software/directsound" +} diff --git a/site/public/v1/software/directxshadercompiler/index.json b/site/public/v1/software/directxshadercompiler/index.json new file mode 100644 index 000000000000..9e9b315ce7e9 --- /dev/null +++ b/site/public/v1/software/directxshadercompiler/index.json @@ -0,0 +1,19 @@ +{ + "id": 2335, + "slug": "directxshadercompiler", + "name": "DirectXShaderCompiler", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115757154" + ], + "created_at": "2026-07-10T10:12:40.389596", + "updated_at": "2026-07-10T10:12:40.389596", + "url": "/v1/software/directxshadercompiler" +} diff --git a/site/public/v1/software/direz/index.json b/site/public/v1/software/direz/index.json new file mode 100644 index 000000000000..65e75d37a8cb --- /dev/null +++ b/site/public/v1/software/direz/index.json @@ -0,0 +1,24 @@ +{ + "id": 2336, + "slug": "direz", + "name": "DIREZ", + "release_date": null, + "developers": [ + "TWGIGA Computer Co., Ltd." + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "TypeScript", + "React" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139233335" + ], + "created_at": "2026-07-10T10:12:40.389596", + "updated_at": "2026-07-10T10:12:40.389596", + "url": "/v1/software/direz" +} diff --git a/site/public/v1/software/disa-windows-server-2016/index.json b/site/public/v1/software/disa-windows-server-2016/index.json new file mode 100644 index 000000000000..29108dd0017d --- /dev/null +++ b/site/public/v1/software/disa-windows-server-2016/index.json @@ -0,0 +1,19 @@ +{ + "id": 2337, + "slug": "disa-windows-server-2016", + "name": "disa-windows-server-2016", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127485682" + ], + "created_at": "2026-07-10T10:12:40.393745", + "updated_at": "2026-07-10T10:12:40.393745", + "url": "/v1/software/disa-windows-server-2016" +} diff --git a/site/public/v1/software/disa-windows-server-2019/index.json b/site/public/v1/software/disa-windows-server-2019/index.json new file mode 100644 index 000000000000..168ebac57e5e --- /dev/null +++ b/site/public/v1/software/disa-windows-server-2019/index.json @@ -0,0 +1,19 @@ +{ + "id": 2338, + "slug": "disa-windows-server-2019", + "name": "disa-windows-server-2019", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127485375" + ], + "created_at": "2026-07-10T10:12:40.395832", + "updated_at": "2026-07-10T10:12:40.395832", + "url": "/v1/software/disa-windows-server-2019" +} diff --git a/site/public/v1/software/disc-cover/index.json b/site/public/v1/software/disc-cover/index.json new file mode 100644 index 000000000000..0afdb4c44d8f --- /dev/null +++ b/site/public/v1/software/disc-cover/index.json @@ -0,0 +1,19 @@ +{ + "id": 2339, + "slug": "disc-cover", + "name": "disc-cover", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065596" + ], + "created_at": "2026-07-10T10:12:40.397835", + "updated_at": "2026-07-10T10:12:40.397835", + "url": "/v1/software/disc-cover" +} diff --git a/site/public/v1/software/disc2phone/index.json b/site/public/v1/software/disc2phone/index.json new file mode 100644 index 000000000000..18ff8109dc25 --- /dev/null +++ b/site/public/v1/software/disc2phone/index.json @@ -0,0 +1,23 @@ +{ + "id": 2340, + "slug": "disc2phone", + "name": "Disc2Phone", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5281378" + ], + "created_at": "2026-07-10T10:12:40.397835", + "updated_at": "2026-07-10T10:12:40.397835", + "url": "/v1/software/disc2phone" +} diff --git a/site/public/v1/software/discan/index.json b/site/public/v1/software/discan/index.json new file mode 100644 index 000000000000..7fc15dafcfdc --- /dev/null +++ b/site/public/v1/software/discan/index.json @@ -0,0 +1,19 @@ +{ + "id": 2341, + "slug": "discan", + "name": "DISCAN", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087796" + ], + "created_at": "2026-07-10T10:12:40.398868", + "updated_at": "2026-07-10T10:12:40.398868", + "url": "/v1/software/discan" +} diff --git a/site/public/v1/software/discon/index.json b/site/public/v1/software/discon/index.json new file mode 100644 index 000000000000..ce4d5593c4ff --- /dev/null +++ b/site/public/v1/software/discon/index.json @@ -0,0 +1,19 @@ +{ + "id": 2342, + "slug": "discon", + "name": "DISCON", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087797" + ], + "created_at": "2026-07-10T10:12:40.398868", + "updated_at": "2026-07-10T10:12:40.398868", + "url": "/v1/software/discon" +} diff --git a/site/public/v1/software/discover/index.json b/site/public/v1/software/discover/index.json new file mode 100644 index 000000000000..06a51c7ba844 --- /dev/null +++ b/site/public/v1/software/discover/index.json @@ -0,0 +1,24 @@ +{ + "id": 2343, + "slug": "discover", + "name": "Discover", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Unix-like operating system" + ], + "programming_languages": [], + "licenses": [ + "GNU General Public License, version 2.0 or later", + "GNU General Public License, version 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q64788058" + ], + "created_at": "2026-07-10T10:12:40.399869", + "updated_at": "2026-07-10T10:12:40.399869", + "url": "/v1/software/discover" +} diff --git a/site/public/v1/software/discursis/index.json b/site/public/v1/software/discursis/index.json new file mode 100644 index 000000000000..9d56617383cc --- /dev/null +++ b/site/public/v1/software/discursis/index.json @@ -0,0 +1,19 @@ +{ + "id": 2344, + "slug": "discursis", + "name": "Discursis", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084924" + ], + "created_at": "2026-07-10T10:12:40.399869", + "updated_at": "2026-07-10T10:12:40.399869", + "url": "/v1/software/discursis" +} diff --git a/site/public/v1/software/discworld-mudlib/index.json b/site/public/v1/software/discworld-mudlib/index.json new file mode 100644 index 000000000000..d47b2f63ff22 --- /dev/null +++ b/site/public/v1/software/discworld-mudlib/index.json @@ -0,0 +1,19 @@ +{ + "id": 2345, + "slug": "discworld-mudlib", + "name": "Discworld mudlib", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5282112" + ], + "created_at": "2026-07-10T10:12:40.400849", + "updated_at": "2026-07-10T10:12:40.400849", + "url": "/v1/software/discworld-mudlib" +} diff --git a/site/public/v1/software/disk-cleanup/index.json b/site/public/v1/software/disk-cleanup/index.json new file mode 100644 index 000000000000..dce9512295c9 --- /dev/null +++ b/site/public/v1/software/disk-cleanup/index.json @@ -0,0 +1,19 @@ +{ + "id": 2346, + "slug": "disk-cleanup", + "name": "Disk Cleanup", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1185139" + ], + "created_at": "2026-07-10T10:12:40.400849", + "updated_at": "2026-07-10T10:12:40.400849", + "url": "/v1/software/disk-cleanup" +} diff --git a/site/public/v1/software/disk-drill-mac-data-recovery/index.json b/site/public/v1/software/disk-drill-mac-data-recovery/index.json new file mode 100644 index 000000000000..89df179efb36 --- /dev/null +++ b/site/public/v1/software/disk-drill-mac-data-recovery/index.json @@ -0,0 +1,19 @@ +{ + "id": 2347, + "slug": "disk-drill-mac-data-recovery", + "name": "Disk Drill Mac Data Recovery", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5282290" + ], + "created_at": "2026-07-10T10:12:40.401826", + "updated_at": "2026-07-10T10:12:40.401826", + "url": "/v1/software/disk-drill-mac-data-recovery" +} diff --git a/site/public/v1/software/disk-first-aid/index.json b/site/public/v1/software/disk-first-aid/index.json new file mode 100644 index 000000000000..7406d2fa00ab --- /dev/null +++ b/site/public/v1/software/disk-first-aid/index.json @@ -0,0 +1,21 @@ +{ + "id": 2348, + "slug": "disk-first-aid", + "name": "Disk First Aid", + "release_date": null, + "developers": [ + "Apple Inc." + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5282296" + ], + "created_at": "2026-07-10T10:12:40.401826", + "updated_at": "2026-07-10T10:12:40.401826", + "url": "/v1/software/disk-first-aid" +} diff --git a/site/public/v1/software/disk-manager/index.json b/site/public/v1/software/disk-manager/index.json new file mode 100644 index 000000000000..1218edceefef --- /dev/null +++ b/site/public/v1/software/disk-manager/index.json @@ -0,0 +1,21 @@ +{ + "id": 2349, + "slug": "disk-manager", + "name": "Disk Manager", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "IBM PC DOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5282298" + ], + "created_at": "2026-07-10T10:12:40.401826", + "updated_at": "2026-07-10T10:12:40.401826", + "url": "/v1/software/disk-manager" +} diff --git a/site/public/v1/software/disk-master/index.json b/site/public/v1/software/disk-master/index.json new file mode 100644 index 000000000000..80df5cc538c1 --- /dev/null +++ b/site/public/v1/software/disk-master/index.json @@ -0,0 +1,24 @@ +{ + "id": 2350, + "slug": "disk-master", + "name": "Disk Master", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "AmigaOS 4", + "AmigaOS" + ], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110008293" + ], + "created_at": "2026-07-10T10:12:40.402752", + "updated_at": "2026-07-10T10:12:40.402752", + "url": "/v1/software/disk-master" +} diff --git a/site/public/v1/software/disk-order/index.json b/site/public/v1/software/disk-order/index.json new file mode 100644 index 000000000000..07bd53212f95 --- /dev/null +++ b/site/public/v1/software/disk-order/index.json @@ -0,0 +1,19 @@ +{ + "id": 2351, + "slug": "disk-order", + "name": "Disk Order", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4037435" + ], + "created_at": "2026-07-10T10:12:40.402752", + "updated_at": "2026-07-10T10:12:40.402752", + "url": "/v1/software/disk-order" +} diff --git a/site/public/v1/software/disk-utility/index.json b/site/public/v1/software/disk-utility/index.json new file mode 100644 index 000000000000..b7a59460e156 --- /dev/null +++ b/site/public/v1/software/disk-utility/index.json @@ -0,0 +1,21 @@ +{ + "id": 2352, + "slug": "disk-utility", + "name": "Disk Utility", + "release_date": null, + "developers": [ + "Apple Inc." + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2704444" + ], + "created_at": "2026-07-10T10:12:40.402752", + "updated_at": "2026-07-10T10:12:40.402752", + "url": "/v1/software/disk-utility" +} diff --git a/site/public/v1/software/diskcopy/index.json b/site/public/v1/software/diskcopy/index.json new file mode 100644 index 000000000000..1f99052318e1 --- /dev/null +++ b/site/public/v1/software/diskcopy/index.json @@ -0,0 +1,28 @@ +{ + "id": 2353, + "slug": "diskcopy", + "name": "DiskCopy", + "release_date": null, + "developers": [ + "Apple Inc." + ], + "publishers": [], + "operating_systems": [ + "Mac OS 8", + "Mac OS X 10.0", + "Mac OS 9", + "Mac OS X 10.2", + "Mac OS X 10.1", + "System 7" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5282289" + ], + "created_at": "2026-07-10T10:12:40.402752", + "updated_at": "2026-07-10T10:12:40.402752", + "url": "/v1/software/diskcopy" +} diff --git a/site/public/v1/software/diskdoubler/index.json b/site/public/v1/software/diskdoubler/index.json new file mode 100644 index 000000000000..eba039f5931b --- /dev/null +++ b/site/public/v1/software/diskdoubler/index.json @@ -0,0 +1,21 @@ +{ + "id": 2354, + "slug": "diskdoubler", + "name": "DiskDoubler", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Classic Mac OS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5282282" + ], + "created_at": "2026-07-10T10:12:40.403828", + "updated_at": "2026-07-10T10:12:40.403828", + "url": "/v1/software/diskdoubler" +} diff --git a/site/public/v1/software/diskeeper/index.json b/site/public/v1/software/diskeeper/index.json new file mode 100644 index 000000000000..51e0a9a53120 --- /dev/null +++ b/site/public/v1/software/diskeeper/index.json @@ -0,0 +1,22 @@ +{ + "id": 2355, + "slug": "diskeeper", + "name": "Diskeeper", + "release_date": null, + "developers": [ + "Condusiv Technologies", + "Diskeeper Corporation" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1228788" + ], + "created_at": "2026-07-10T10:12:40.403828", + "updated_at": "2026-07-10T10:12:40.403828", + "url": "/v1/software/diskeeper" +} diff --git a/site/public/v1/software/diskgenius/index.json b/site/public/v1/software/diskgenius/index.json new file mode 100644 index 000000000000..17a9957d2a0a --- /dev/null +++ b/site/public/v1/software/diskgenius/index.json @@ -0,0 +1,19 @@ +{ + "id": 2356, + "slug": "diskgenius", + "name": "DiskGenius", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10846954" + ], + "created_at": "2026-07-10T10:12:40.405759", + "updated_at": "2026-07-10T10:12:40.405759", + "url": "/v1/software/diskgenius" +} diff --git a/site/public/v1/software/diskimagemounter/index.json b/site/public/v1/software/diskimagemounter/index.json new file mode 100644 index 000000000000..e6687b722e21 --- /dev/null +++ b/site/public/v1/software/diskimagemounter/index.json @@ -0,0 +1,23 @@ +{ + "id": 2357, + "slug": "diskimagemounter", + "name": "DiskImageMounter", + "release_date": null, + "developers": [ + "Apple Inc." + ], + "publishers": [], + "operating_systems": [ + "macOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1049242" + ], + "created_at": "2026-07-10T10:12:40.405759", + "updated_at": "2026-07-10T10:12:40.405759", + "url": "/v1/software/diskimagemounter" +} diff --git a/site/public/v1/software/diskpart/index.json b/site/public/v1/software/diskpart/index.json new file mode 100644 index 000000000000..f0ad2628da85 --- /dev/null +++ b/site/public/v1/software/diskpart/index.json @@ -0,0 +1,23 @@ +{ + "id": 2358, + "slug": "diskpart", + "name": "DiskPart", + "release_date": "2026-04-15", + "developers": [], + "publishers": [], + "operating_systems": [ + "AmigaOS" + ], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140068198" + ], + "created_at": "2026-07-10T10:12:40.406757", + "updated_at": "2026-07-10T10:12:40.406757", + "url": "/v1/software/diskpart" +} diff --git a/site/public/v1/software/diskspd/index.json b/site/public/v1/software/diskspd/index.json new file mode 100644 index 000000000000..d94a4eed0ced --- /dev/null +++ b/site/public/v1/software/diskspd/index.json @@ -0,0 +1,25 @@ +{ + "id": 2359, + "slug": "diskspd", + "name": "Diskspd", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q24886469" + ], + "created_at": "2026-07-10T10:12:40.406757", + "updated_at": "2026-07-10T10:12:40.406757", + "url": "/v1/software/diskspd" +} diff --git a/site/public/v1/software/disktracker/index.json b/site/public/v1/software/disktracker/index.json new file mode 100644 index 000000000000..ddbc6fbae3a5 --- /dev/null +++ b/site/public/v1/software/disktracker/index.json @@ -0,0 +1,19 @@ +{ + "id": 2360, + "slug": "disktracker", + "name": "DiskTracker", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5282285" + ], + "created_at": "2026-07-10T10:12:40.407755", + "updated_at": "2026-07-10T10:12:40.407755", + "url": "/v1/software/disktracker" +} diff --git a/site/public/v1/software/disktype/index.json b/site/public/v1/software/disktype/index.json new file mode 100644 index 000000000000..102674df10e0 --- /dev/null +++ b/site/public/v1/software/disktype/index.json @@ -0,0 +1,19 @@ +{ + "id": 2361, + "slug": "disktype", + "name": "disktype", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q47494685" + ], + "created_at": "2026-07-10T10:12:40.407755", + "updated_at": "2026-07-10T10:12:40.407755", + "url": "/v1/software/disktype" +} diff --git a/site/public/v1/software/dislin/index.json b/site/public/v1/software/dislin/index.json new file mode 100644 index 000000000000..3eaf9c0b3253 --- /dev/null +++ b/site/public/v1/software/dislin/index.json @@ -0,0 +1,26 @@ +{ + "id": 2362, + "slug": "dislin", + "name": "DISLIN", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "OpenVMS", + "macOS", + "Microsoft Windows" + ], + "programming_languages": [ + "FORTRAN 77", + "Fortran 90" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1228955" + ], + "created_at": "2026-07-10T10:12:40.407755", + "updated_at": "2026-07-10T10:12:40.407755", + "url": "/v1/software/dislin" +} diff --git a/site/public/v1/software/dislocker/index.json b/site/public/v1/software/dislocker/index.json new file mode 100644 index 000000000000..f479d42a0fcb --- /dev/null +++ b/site/public/v1/software/dislocker/index.json @@ -0,0 +1,21 @@ +{ + "id": 2363, + "slug": "dislocker", + "name": "dislocker", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "GNU General Public License, version 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974808" + ], + "created_at": "2026-07-10T10:12:40.408850", + "updated_at": "2026-07-10T10:12:40.408850", + "url": "/v1/software/dislocker" +} diff --git a/site/public/v1/software/disney-app/index.json b/site/public/v1/software/disney-app/index.json new file mode 100644 index 000000000000..be39f88680cf --- /dev/null +++ b/site/public/v1/software/disney-app/index.json @@ -0,0 +1,19 @@ +{ + "id": 2364, + "slug": "disney-app", + "name": "Disney+ app", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76301153" + ], + "created_at": "2026-07-10T10:12:40.409431", + "updated_at": "2026-07-10T10:12:40.409431", + "url": "/v1/software/disney-app" +} diff --git a/site/public/v1/software/disney-s-magic-artist-3d/index.json b/site/public/v1/software/disney-s-magic-artist-3d/index.json new file mode 100644 index 000000000000..d4136f8d6462 --- /dev/null +++ b/site/public/v1/software/disney-s-magic-artist-3d/index.json @@ -0,0 +1,23 @@ +{ + "id": 2365, + "slug": "disney-s-magic-artist-3d", + "name": "Disney's Magic Artist 3D", + "release_date": "2000-01-01", + "developers": [ + "Disney Interactive Studios" + ], + "publishers": [ + "Disney Interactive Studios" + ], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136521771" + ], + "created_at": "2026-07-10T10:12:40.409431", + "updated_at": "2026-07-10T10:12:40.409431", + "url": "/v1/software/disney-s-magic-artist-3d" +} diff --git a/site/public/v1/software/disney-second-screen/index.json b/site/public/v1/software/disney-second-screen/index.json new file mode 100644 index 000000000000..6ce0f804b8af --- /dev/null +++ b/site/public/v1/software/disney-second-screen/index.json @@ -0,0 +1,23 @@ +{ + "id": 2366, + "slug": "disney-second-screen", + "name": "Disney Second Screen", + "release_date": null, + "developers": [ + "Walt Disney Studios Home Entertainment" + ], + "publishers": [], + "operating_systems": [ + "iOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5282470" + ], + "created_at": "2026-07-10T10:12:40.409431", + "updated_at": "2026-07-10T10:12:40.409431", + "url": "/v1/software/disney-second-screen" +} diff --git a/site/public/v1/software/dispak/index.json b/site/public/v1/software/dispak/index.json new file mode 100644 index 000000000000..a20b85f90abd --- /dev/null +++ b/site/public/v1/software/dispak/index.json @@ -0,0 +1,19 @@ +{ + "id": 2367, + "slug": "dispak", + "name": "DISPAK", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q19907864" + ], + "created_at": "2026-07-10T10:12:40.410556", + "updated_at": "2026-07-10T10:12:40.410556", + "url": "/v1/software/dispak" +} diff --git a/site/public/v1/software/distant-viewing-toolkit/index.json b/site/public/v1/software/distant-viewing-toolkit/index.json new file mode 100644 index 000000000000..a8fe5a45c889 --- /dev/null +++ b/site/public/v1/software/distant-viewing-toolkit/index.json @@ -0,0 +1,19 @@ +{ + "id": 2368, + "slug": "distant-viewing-toolkit", + "name": "Distant Viewing Toolkit", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q74026296" + ], + "created_at": "2026-07-10T10:12:40.410556", + "updated_at": "2026-07-10T10:12:40.410556", + "url": "/v1/software/distant-viewing-toolkit" +} diff --git a/site/public/v1/software/distributed-image-library-processing-system/index.json b/site/public/v1/software/distributed-image-library-processing-system/index.json new file mode 100644 index 000000000000..874c790599f5 --- /dev/null +++ b/site/public/v1/software/distributed-image-library-processing-system/index.json @@ -0,0 +1,23 @@ +{ + "id": 2369, + "slug": "distributed-image-library-processing-system", + "name": "Distributed Image Library Processing System", + "release_date": null, + "developers": [ + "Jürgen Enge" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "PHP" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108836746" + ], + "created_at": "2026-07-10T10:12:40.410556", + "updated_at": "2026-07-10T10:12:40.410556", + "url": "/v1/software/distributed-image-library-processing-system" +} diff --git a/site/public/v1/software/distributed-manufacturing/index.json b/site/public/v1/software/distributed-manufacturing/index.json new file mode 100644 index 000000000000..38161121841b --- /dev/null +++ b/site/public/v1/software/distributed-manufacturing/index.json @@ -0,0 +1,19 @@ +{ + "id": 2370, + "slug": "distributed-manufacturing", + "name": "Distributed manufacturing", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17010810" + ], + "created_at": "2026-07-10T10:12:40.410556", + "updated_at": "2026-07-10T10:12:40.410556", + "url": "/v1/software/distributed-manufacturing" +} diff --git a/site/public/v1/software/distributed-oceanographic-data-systems/index.json b/site/public/v1/software/distributed-oceanographic-data-systems/index.json new file mode 100644 index 000000000000..8582bc6eaff9 --- /dev/null +++ b/site/public/v1/software/distributed-oceanographic-data-systems/index.json @@ -0,0 +1,21 @@ +{ + "id": 2371, + "slug": "distributed-oceanographic-data-systems", + "name": "Distributed Oceanographic Data Systems", + "release_date": null, + "developers": [ + "National Oceanic and Atmospheric Administration" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5283124" + ], + "created_at": "2026-07-10T10:12:40.411528", + "updated_at": "2026-07-10T10:12:40.411528", + "url": "/v1/software/distributed-oceanographic-data-systems" +} diff --git a/site/public/v1/software/distro-info/index.json b/site/public/v1/software/distro-info/index.json new file mode 100644 index 000000000000..5cfacd4700db --- /dev/null +++ b/site/public/v1/software/distro-info/index.json @@ -0,0 +1,19 @@ +{ + "id": 2372, + "slug": "distro-info", + "name": "distro-info", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q68080703" + ], + "created_at": "2026-07-10T10:12:40.411528", + "updated_at": "2026-07-10T10:12:40.411528", + "url": "/v1/software/distro-info" +} diff --git a/site/public/v1/software/distrobuilder/index.json b/site/public/v1/software/distrobuilder/index.json new file mode 100644 index 000000000000..9a5144f2ba82 --- /dev/null +++ b/site/public/v1/software/distrobuilder/index.json @@ -0,0 +1,21 @@ +{ + "id": 2373, + "slug": "distrobuilder", + "name": "distrobuilder", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Apache Software License 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120488825" + ], + "created_at": "2026-07-10T10:12:40.412537", + "updated_at": "2026-07-10T10:12:40.412537", + "url": "/v1/software/distrobuilder" +} diff --git a/site/public/v1/software/disy-cadenza/index.json b/site/public/v1/software/disy-cadenza/index.json new file mode 100644 index 000000000000..fa4303a82c79 --- /dev/null +++ b/site/public/v1/software/disy-cadenza/index.json @@ -0,0 +1,19 @@ +{ + "id": 2374, + "slug": "disy-cadenza", + "name": "disy Cadenza", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127868948" + ], + "created_at": "2026-07-10T10:12:40.412537", + "updated_at": "2026-07-10T10:12:40.412537", + "url": "/v1/software/disy-cadenza" +} diff --git a/site/public/v1/software/dita-open-toolkit/index.json b/site/public/v1/software/dita-open-toolkit/index.json new file mode 100644 index 000000000000..4a98a24488fe --- /dev/null +++ b/site/public/v1/software/dita-open-toolkit/index.json @@ -0,0 +1,25 @@ +{ + "id": 2375, + "slug": "dita-open-toolkit", + "name": "DITA Open Toolkit", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "cross-platform" + ], + "programming_languages": [ + "Java" + ], + "licenses": [ + "Apache License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5205158" + ], + "created_at": "2026-07-10T10:12:40.412537", + "updated_at": "2026-07-10T10:12:40.412537", + "url": "/v1/software/dita-open-toolkit" +} diff --git a/site/public/v1/software/diva-js/index.json b/site/public/v1/software/diva-js/index.json new file mode 100644 index 000000000000..1997a2e748d8 --- /dev/null +++ b/site/public/v1/software/diva-js/index.json @@ -0,0 +1,19 @@ +{ + "id": 2376, + "slug": "diva-js", + "name": "Diva.js", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084925" + ], + "created_at": "2026-07-10T10:12:40.412537", + "updated_at": "2026-07-10T10:12:40.412537", + "url": "/v1/software/diva-js" +} diff --git a/site/public/v1/software/diversion/index.json b/site/public/v1/software/diversion/index.json new file mode 100644 index 000000000000..5ec0ceee8baf --- /dev/null +++ b/site/public/v1/software/diversion/index.json @@ -0,0 +1,19 @@ +{ + "id": 2377, + "slug": "diversion", + "name": "Diversion", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137611191" + ], + "created_at": "2026-07-10T10:12:40.413513", + "updated_at": "2026-07-10T10:12:40.413513", + "url": "/v1/software/diversion" +} diff --git a/site/public/v1/software/divineapi/index.json b/site/public/v1/software/divineapi/index.json new file mode 100644 index 000000000000..551161f7b550 --- /dev/null +++ b/site/public/v1/software/divineapi/index.json @@ -0,0 +1,19 @@ +{ + "id": 2378, + "slug": "divineapi", + "name": "DivineAPI", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140377882" + ], + "created_at": "2026-07-10T10:12:40.413513", + "updated_at": "2026-07-10T10:12:40.413513", + "url": "/v1/software/divineapi" +} diff --git a/site/public/v1/software/divvycloud/index.json b/site/public/v1/software/divvycloud/index.json new file mode 100644 index 000000000000..18f265412d35 --- /dev/null +++ b/site/public/v1/software/divvycloud/index.json @@ -0,0 +1,19 @@ +{ + "id": 2379, + "slug": "divvycloud", + "name": "DivvyCloud", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25111366" + ], + "created_at": "2026-07-10T10:12:40.413513", + "updated_at": "2026-07-10T10:12:40.414505", + "url": "/v1/software/divvycloud" +} diff --git a/site/public/v1/software/dixim/index.json b/site/public/v1/software/dixim/index.json new file mode 100644 index 000000000000..7d392aea480d --- /dev/null +++ b/site/public/v1/software/dixim/index.json @@ -0,0 +1,21 @@ +{ + "id": 2380, + "slug": "dixim", + "name": "DiXiM", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "iOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11196807" + ], + "created_at": "2026-07-10T10:12:40.414505", + "updated_at": "2026-07-10T10:12:40.414505", + "url": "/v1/software/dixim" +} diff --git a/site/public/v1/software/dj-x/index.json b/site/public/v1/software/dj-x/index.json new file mode 100644 index 000000000000..20203d65ce6c --- /dev/null +++ b/site/public/v1/software/dj-x/index.json @@ -0,0 +1,19 @@ +{ + "id": 2381, + "slug": "dj-x", + "name": "DJ X", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140089081" + ], + "created_at": "2026-07-10T10:12:40.414505", + "updated_at": "2026-07-10T10:12:40.414505", + "url": "/v1/software/dj-x" +} diff --git a/site/public/v1/software/django/index.json b/site/public/v1/software/django/index.json new file mode 100644 index 000000000000..e4ebdac39e28 --- /dev/null +++ b/site/public/v1/software/django/index.json @@ -0,0 +1,19 @@ +{ + "id": 2382, + "slug": "django", + "name": "Django", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5285233" + ], + "created_at": "2026-07-10T10:12:40.414505", + "updated_at": "2026-07-10T10:12:40.414505", + "url": "/v1/software/django" +} diff --git a/site/public/v1/software/djv/index.json b/site/public/v1/software/djv/index.json new file mode 100644 index 000000000000..247e2eef13be --- /dev/null +++ b/site/public/v1/software/djv/index.json @@ -0,0 +1,21 @@ +{ + "id": 2383, + "slug": "djv", + "name": "DJV", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "3-clause BSD License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q67212745" + ], + "created_at": "2026-07-10T10:12:40.415515", + "updated_at": "2026-07-10T10:12:40.415515", + "url": "/v1/software/djv" +} diff --git a/site/public/v1/software/dlibra/index.json b/site/public/v1/software/dlibra/index.json new file mode 100644 index 000000000000..622757fe5d8d --- /dev/null +++ b/site/public/v1/software/dlibra/index.json @@ -0,0 +1,21 @@ +{ + "id": 2384, + "slug": "dlibra", + "name": "dLibra", + "release_date": null, + "developers": [ + "Poznań Supercomputing and Networking Center" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q9200485" + ], + "created_at": "2026-07-10T10:12:40.415515", + "updated_at": "2026-07-10T10:12:40.415515", + "url": "/v1/software/dlibra" +} diff --git a/site/public/v1/software/dlr-tapas/index.json b/site/public/v1/software/dlr-tapas/index.json new file mode 100644 index 000000000000..8965477db5e7 --- /dev/null +++ b/site/public/v1/software/dlr-tapas/index.json @@ -0,0 +1,21 @@ +{ + "id": 2385, + "slug": "dlr-tapas", + "name": "DLR TAPAS", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117813838" + ], + "created_at": "2026-07-10T10:12:40.415515", + "updated_at": "2026-07-10T10:12:40.415515", + "url": "/v1/software/dlr-tapas" +} diff --git a/site/public/v1/software/dm-verity/index.json b/site/public/v1/software/dm-verity/index.json new file mode 100644 index 000000000000..90258a606066 --- /dev/null +++ b/site/public/v1/software/dm-verity/index.json @@ -0,0 +1,19 @@ +{ + "id": 2386, + "slug": "dm-verity", + "name": "dm-verity", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q101208595" + ], + "created_at": "2026-07-10T10:12:40.416524", + "updated_at": "2026-07-10T10:12:40.416524", + "url": "/v1/software/dm-verity" +} diff --git a/site/public/v1/software/dmailer-backup/index.json b/site/public/v1/software/dmailer-backup/index.json new file mode 100644 index 000000000000..d46d8efc606b --- /dev/null +++ b/site/public/v1/software/dmailer-backup/index.json @@ -0,0 +1,24 @@ +{ + "id": 2387, + "slug": "dmailer-backup", + "name": "Dmailer Backup", + "release_date": null, + "developers": [ + "Dmailer" + ], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5285442" + ], + "created_at": "2026-07-10T10:12:40.416524", + "updated_at": "2026-07-10T10:12:40.416524", + "url": "/v1/software/dmailer-backup" +} diff --git a/site/public/v1/software/dmde/index.json b/site/public/v1/software/dmde/index.json new file mode 100644 index 000000000000..76583cf03e40 --- /dev/null +++ b/site/public/v1/software/dmde/index.json @@ -0,0 +1,19 @@ +{ + "id": 2388, + "slug": "dmde", + "name": "dmde", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4037459" + ], + "created_at": "2026-07-10T10:12:40.416524", + "updated_at": "2026-07-10T10:12:40.416524", + "url": "/v1/software/dmde" +} diff --git a/site/public/v1/software/dmraid/index.json b/site/public/v1/software/dmraid/index.json new file mode 100644 index 000000000000..b94e4b51523d --- /dev/null +++ b/site/public/v1/software/dmraid/index.json @@ -0,0 +1,19 @@ +{ + "id": 2389, + "slug": "dmraid", + "name": "dmraid", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60864740" + ], + "created_at": "2026-07-10T10:12:40.417499", + "updated_at": "2026-07-10T10:12:40.417499", + "url": "/v1/software/dmraid" +} diff --git a/site/public/v1/software/dms-software-reengineering-toolkit/index.json b/site/public/v1/software/dms-software-reengineering-toolkit/index.json new file mode 100644 index 000000000000..8e3364d76bf4 --- /dev/null +++ b/site/public/v1/software/dms-software-reengineering-toolkit/index.json @@ -0,0 +1,19 @@ +{ + "id": 2390, + "slug": "dms-software-reengineering-toolkit", + "name": "DMS Software Reengineering Toolkit", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5205644" + ], + "created_at": "2026-07-10T10:12:40.417499", + "updated_at": "2026-07-10T10:12:40.417499", + "url": "/v1/software/dms-software-reengineering-toolkit" +} diff --git a/site/public/v1/software/dmx-desktop/index.json b/site/public/v1/software/dmx-desktop/index.json new file mode 100644 index 000000000000..721b0d34a1a6 --- /dev/null +++ b/site/public/v1/software/dmx-desktop/index.json @@ -0,0 +1,24 @@ +{ + "id": 2391, + "slug": "dmx-desktop", + "name": "DMX Desktop", + "release_date": null, + "developers": [ + "Mike Lines" + ], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136677293" + ], + "created_at": "2026-07-10T10:12:40.417499", + "updated_at": "2026-07-10T10:12:40.417499", + "url": "/v1/software/dmx-desktop" +} diff --git a/site/public/v1/software/dnadynamo/index.json b/site/public/v1/software/dnadynamo/index.json new file mode 100644 index 000000000000..c7ebf63197cb --- /dev/null +++ b/site/public/v1/software/dnadynamo/index.json @@ -0,0 +1,22 @@ +{ + "id": 2392, + "slug": "dnadynamo", + "name": "DNADynamo", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28956994" + ], + "created_at": "2026-07-10T10:12:40.418504", + "updated_at": "2026-07-10T10:12:40.418504", + "url": "/v1/software/dnadynamo" +} diff --git a/site/public/v1/software/dnnv/index.json b/site/public/v1/software/dnnv/index.json new file mode 100644 index 000000000000..860e78dfcf5d --- /dev/null +++ b/site/public/v1/software/dnnv/index.json @@ -0,0 +1,21 @@ +{ + "id": 2393, + "slug": "dnnv", + "name": "dnnv", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127432231" + ], + "created_at": "2026-07-10T10:12:40.418504", + "updated_at": "2026-07-10T10:12:40.418504", + "url": "/v1/software/dnnv" +} diff --git a/site/public/v1/software/dnscrypt/index.json b/site/public/v1/software/dnscrypt/index.json new file mode 100644 index 000000000000..aab0ad52f634 --- /dev/null +++ b/site/public/v1/software/dnscrypt/index.json @@ -0,0 +1,19 @@ +{ + "id": 2394, + "slug": "dnscrypt", + "name": "DNSCrypt", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22569635" + ], + "created_at": "2026-07-10T10:12:40.418504", + "updated_at": "2026-07-10T10:12:40.418504", + "url": "/v1/software/dnscrypt" +} diff --git a/site/public/v1/software/dnsmax/index.json b/site/public/v1/software/dnsmax/index.json new file mode 100644 index 000000000000..5cee887f660b --- /dev/null +++ b/site/public/v1/software/dnsmax/index.json @@ -0,0 +1,19 @@ +{ + "id": 2395, + "slug": "dnsmax", + "name": "DNSMax", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5205807" + ], + "created_at": "2026-07-10T10:12:40.418504", + "updated_at": "2026-07-10T10:12:40.418504", + "url": "/v1/software/dnsmax" +} diff --git a/site/public/v1/software/dnstop/index.json b/site/public/v1/software/dnstop/index.json new file mode 100644 index 000000000000..c0c512896008 --- /dev/null +++ b/site/public/v1/software/dnstop/index.json @@ -0,0 +1,19 @@ +{ + "id": 2396, + "slug": "dnstop", + "name": "dnstop", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62847951" + ], + "created_at": "2026-07-10T10:12:40.419504", + "updated_at": "2026-07-10T10:12:40.419504", + "url": "/v1/software/dnstop" +} diff --git a/site/public/v1/software/dnstracer/index.json b/site/public/v1/software/dnstracer/index.json new file mode 100644 index 000000000000..b046aa204c31 --- /dev/null +++ b/site/public/v1/software/dnstracer/index.json @@ -0,0 +1,19 @@ +{ + "id": 2397, + "slug": "dnstracer", + "name": "dnstracer", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62847956" + ], + "created_at": "2026-07-10T10:12:40.419504", + "updated_at": "2026-07-10T10:12:40.419504", + "url": "/v1/software/dnstracer" +} diff --git a/site/public/v1/software/do-it-again/index.json b/site/public/v1/software/do-it-again/index.json new file mode 100644 index 000000000000..dbec8a8d0e1f --- /dev/null +++ b/site/public/v1/software/do-it-again/index.json @@ -0,0 +1,21 @@ +{ + "id": 2398, + "slug": "do-it-again", + "name": "Do It Again", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Windows 7" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q67150596" + ], + "created_at": "2026-07-10T10:12:40.420516", + "updated_at": "2026-07-10T10:12:40.420516", + "url": "/v1/software/do-it-again" +} diff --git a/site/public/v1/software/do-xr/index.json b/site/public/v1/software/do-xr/index.json new file mode 100644 index 000000000000..8f841f7c617c --- /dev/null +++ b/site/public/v1/software/do-xr/index.json @@ -0,0 +1,19 @@ +{ + "id": 2399, + "slug": "do-xr", + "name": "DO XR", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140356417" + ], + "created_at": "2026-07-10T10:12:40.420516", + "updated_at": "2026-07-10T10:12:40.420516", + "url": "/v1/software/do-xr" +} diff --git a/site/public/v1/software/do3d/index.json b/site/public/v1/software/do3d/index.json new file mode 100644 index 000000000000..fd9aec16d6d4 --- /dev/null +++ b/site/public/v1/software/do3d/index.json @@ -0,0 +1,19 @@ +{ + "id": 2400, + "slug": "do3d", + "name": "Do3D", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5285892" + ], + "created_at": "2026-07-10T10:12:40.420516", + "updated_at": "2026-07-10T10:12:40.420516", + "url": "/v1/software/do3d" +} diff --git a/site/public/v1/software/docbook2x/index.json b/site/public/v1/software/docbook2x/index.json new file mode 100644 index 000000000000..2adfdfaf037c --- /dev/null +++ b/site/public/v1/software/docbook2x/index.json @@ -0,0 +1,19 @@ +{ + "id": 2401, + "slug": "docbook2x", + "name": "docbook2X", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60916596" + ], + "created_at": "2026-07-10T10:12:40.420516", + "updated_at": "2026-07-10T10:12:40.420516", + "url": "/v1/software/docbook2x" +} diff --git a/site/public/v1/software/dock-q140011545/index.json b/site/public/v1/software/dock-q140011545/index.json new file mode 100644 index 000000000000..14c7481a9cfd --- /dev/null +++ b/site/public/v1/software/dock-q140011545/index.json @@ -0,0 +1,19 @@ +{ + "id": 2402, + "slug": "dock-q140011545", + "name": "Dock", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140011545" + ], + "created_at": "2026-07-10T10:12:40.421673", + "updated_at": "2026-07-10T10:12:40.421673", + "url": "/v1/software/dock-q140011545" +} diff --git a/site/public/v1/software/dock/index.json b/site/public/v1/software/dock/index.json new file mode 100644 index 000000000000..b9d840c3e8fb --- /dev/null +++ b/site/public/v1/software/dock/index.json @@ -0,0 +1,21 @@ +{ + "id": 2403, + "slug": "dock", + "name": "DOCK", + "release_date": null, + "developers": [ + "University of California, San Francisco" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5205842" + ], + "created_at": "2026-07-10T10:12:40.421673", + "updated_at": "2026-07-10T10:12:40.421673", + "url": "/v1/software/dock" +} diff --git a/site/public/v1/software/docker-gc/index.json b/site/public/v1/software/docker-gc/index.json new file mode 100644 index 000000000000..bf28400183e6 --- /dev/null +++ b/site/public/v1/software/docker-gc/index.json @@ -0,0 +1,21 @@ +{ + "id": 2404, + "slug": "docker-gc", + "name": "docker-gc", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Apache License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974811" + ], + "created_at": "2026-07-10T10:12:40.421673", + "updated_at": "2026-07-10T10:12:40.421673", + "url": "/v1/software/docker-gc" +} diff --git a/site/public/v1/software/docking-home/index.json b/site/public/v1/software/docking-home/index.json new file mode 100644 index 000000000000..220200ad6fb5 --- /dev/null +++ b/site/public/v1/software/docking-home/index.json @@ -0,0 +1,19 @@ +{ + "id": 2405, + "slug": "docking-home", + "name": "Docking@Home", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2704276" + ], + "created_at": "2026-07-10T10:12:40.422684", + "updated_at": "2026-07-10T10:12:40.422684", + "url": "/v1/software/docking-home" +} diff --git a/site/public/v1/software/docs/index.json b/site/public/v1/software/docs/index.json new file mode 100644 index 000000000000..cda200e6c464 --- /dev/null +++ b/site/public/v1/software/docs/index.json @@ -0,0 +1,21 @@ +{ + "id": 2406, + "slug": "docs", + "name": "DOCS", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "VSE" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5205848" + ], + "created_at": "2026-07-10T10:12:40.422684", + "updated_at": "2026-07-10T10:12:40.422684", + "url": "/v1/software/docs" +} diff --git a/site/public/v1/software/docte/index.json b/site/public/v1/software/docte/index.json new file mode 100644 index 000000000000..714571bb0a6c --- /dev/null +++ b/site/public/v1/software/docte/index.json @@ -0,0 +1,19 @@ +{ + "id": 2407, + "slug": "docte", + "name": "Docte", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3712431" + ], + "created_at": "2026-07-10T10:12:40.422684", + "updated_at": "2026-07-10T10:12:40.422684", + "url": "/v1/software/docte" +} diff --git a/site/public/v1/software/doctl/index.json b/site/public/v1/software/doctl/index.json new file mode 100644 index 000000000000..0aff2505738d --- /dev/null +++ b/site/public/v1/software/doctl/index.json @@ -0,0 +1,19 @@ +{ + "id": 2408, + "slug": "doctl", + "name": "doctl", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q47487589" + ], + "created_at": "2026-07-10T10:12:40.422684", + "updated_at": "2026-07-10T10:12:40.423681", + "url": "/v1/software/doctl" +} diff --git a/site/public/v1/software/doctorbase/index.json b/site/public/v1/software/doctorbase/index.json new file mode 100644 index 000000000000..19414e6c8733 --- /dev/null +++ b/site/public/v1/software/doctorbase/index.json @@ -0,0 +1,19 @@ +{ + "id": 2409, + "slug": "doctorbase", + "name": "DoctorBase", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5287286" + ], + "created_at": "2026-07-10T10:12:40.423681", + "updated_at": "2026-07-10T10:12:40.423681", + "url": "/v1/software/doctorbase" +} diff --git a/site/public/v1/software/doctoroncall/index.json b/site/public/v1/software/doctoroncall/index.json new file mode 100644 index 000000000000..42ccde442c31 --- /dev/null +++ b/site/public/v1/software/doctoroncall/index.json @@ -0,0 +1,19 @@ +{ + "id": 2410, + "slug": "doctoroncall", + "name": "DoctorOnCall", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q96376492" + ], + "created_at": "2026-07-10T10:12:40.423681", + "updated_at": "2026-07-10T10:12:40.423681", + "url": "/v1/software/doctoroncall" +} diff --git a/site/public/v1/software/docuburst/index.json b/site/public/v1/software/docuburst/index.json new file mode 100644 index 000000000000..312165487398 --- /dev/null +++ b/site/public/v1/software/docuburst/index.json @@ -0,0 +1,19 @@ +{ + "id": 2411, + "slug": "docuburst", + "name": "DocuBurst", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084926" + ], + "created_at": "2026-07-10T10:12:40.424749", + "updated_at": "2026-07-10T10:12:40.424749", + "url": "/v1/software/docuburst" +} diff --git a/site/public/v1/software/docugov-ai/index.json b/site/public/v1/software/docugov-ai/index.json new file mode 100644 index 000000000000..e9088aa5ff6d --- /dev/null +++ b/site/public/v1/software/docugov-ai/index.json @@ -0,0 +1,19 @@ +{ + "id": 2412, + "slug": "docugov-ai", + "name": "DocuGov.ai", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138862438" + ], + "created_at": "2026-07-10T10:12:40.424749", + "updated_at": "2026-07-10T10:12:40.424749", + "url": "/v1/software/docugov-ai" +} diff --git a/site/public/v1/software/document-composition-facility/index.json b/site/public/v1/software/document-composition-facility/index.json new file mode 100644 index 000000000000..d9b35e831674 --- /dev/null +++ b/site/public/v1/software/document-composition-facility/index.json @@ -0,0 +1,19 @@ +{ + "id": 2413, + "slug": "document-composition-facility", + "name": "Document Composition Facility", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3033611" + ], + "created_at": "2026-07-10T10:12:40.424749", + "updated_at": "2026-07-10T10:12:40.424749", + "url": "/v1/software/document-composition-facility" +} diff --git a/site/public/v1/software/documents-to-go/index.json b/site/public/v1/software/documents-to-go/index.json new file mode 100644 index 000000000000..19f00776f395 --- /dev/null +++ b/site/public/v1/software/documents-to-go/index.json @@ -0,0 +1,19 @@ +{ + "id": 2414, + "slug": "documents-to-go", + "name": "Documents To Go", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q460027" + ], + "created_at": "2026-07-10T10:12:40.425764", + "updated_at": "2026-07-10T10:12:40.425764", + "url": "/v1/software/documents-to-go" +} diff --git a/site/public/v1/software/documents/index.json b/site/public/v1/software/documents/index.json new file mode 100644 index 000000000000..e8e6917d01a2 --- /dev/null +++ b/site/public/v1/software/documents/index.json @@ -0,0 +1,19 @@ +{ + "id": 2415, + "slug": "documents", + "name": "Documents", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124381809" + ], + "created_at": "2026-07-10T10:12:40.425764", + "updated_at": "2026-07-10T10:12:40.425764", + "url": "/v1/software/documents" +} diff --git a/site/public/v1/software/docus/index.json b/site/public/v1/software/docus/index.json new file mode 100644 index 000000000000..31e6436d766a --- /dev/null +++ b/site/public/v1/software/docus/index.json @@ -0,0 +1,19 @@ +{ + "id": 2416, + "slug": "docus", + "name": "Docus", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123504990" + ], + "created_at": "2026-07-10T10:12:40.425764", + "updated_at": "2026-07-10T10:12:40.425764", + "url": "/v1/software/docus" +} diff --git a/site/public/v1/software/docuscope/index.json b/site/public/v1/software/docuscope/index.json new file mode 100644 index 000000000000..a0af94ddadfc --- /dev/null +++ b/site/public/v1/software/docuscope/index.json @@ -0,0 +1,19 @@ +{ + "id": 2417, + "slug": "docuscope", + "name": "DocuScope", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084927" + ], + "created_at": "2026-07-10T10:12:40.426743", + "updated_at": "2026-07-10T10:12:40.426743", + "url": "/v1/software/docuscope" +} diff --git a/site/public/v1/software/docusearch-ai/index.json b/site/public/v1/software/docusearch-ai/index.json new file mode 100644 index 000000000000..02dfe5386236 --- /dev/null +++ b/site/public/v1/software/docusearch-ai/index.json @@ -0,0 +1,21 @@ +{ + "id": 2418, + "slug": "docusearch-ai", + "name": "DocuSearch AI", + "release_date": null, + "developers": [ + "REEA SRL" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140247811" + ], + "created_at": "2026-07-10T10:12:40.426743", + "updated_at": "2026-07-10T10:12:40.426743", + "url": "/v1/software/docusearch-ai" +} diff --git a/site/public/v1/software/docushare/index.json b/site/public/v1/software/docushare/index.json new file mode 100644 index 000000000000..a63af8496fed --- /dev/null +++ b/site/public/v1/software/docushare/index.json @@ -0,0 +1,19 @@ +{ + "id": 2419, + "slug": "docushare", + "name": "Docushare", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28568233" + ], + "created_at": "2026-07-10T10:12:40.426743", + "updated_at": "2026-07-10T10:12:40.426743", + "url": "/v1/software/docushare" +} diff --git a/site/public/v1/software/docuware/index.json b/site/public/v1/software/docuware/index.json new file mode 100644 index 000000000000..299843ebddd8 --- /dev/null +++ b/site/public/v1/software/docuware/index.json @@ -0,0 +1,19 @@ +{ + "id": 2420, + "slug": "docuware", + "name": "DocuWare", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q787083" + ], + "created_at": "2026-07-10T10:12:40.427742", + "updated_at": "2026-07-10T10:12:40.427742", + "url": "/v1/software/docuware" +} diff --git a/site/public/v1/software/doddle/index.json b/site/public/v1/software/doddle/index.json new file mode 100644 index 000000000000..37794dec584f --- /dev/null +++ b/site/public/v1/software/doddle/index.json @@ -0,0 +1,21 @@ +{ + "id": 2421, + "slug": "doddle", + "name": "Doddle", + "release_date": "2010-01-01", + "developers": [], + "publishers": [], + "operating_systems": [ + "iOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5287783" + ], + "created_at": "2026-07-10T10:12:40.427742", + "updated_at": "2026-07-10T10:12:40.427742", + "url": "/v1/software/doddle" +} diff --git a/site/public/v1/software/doe-2/index.json b/site/public/v1/software/doe-2/index.json new file mode 100644 index 000000000000..ac92bb1d15da --- /dev/null +++ b/site/public/v1/software/doe-2/index.json @@ -0,0 +1,19 @@ +{ + "id": 2422, + "slug": "doe-2", + "name": "DOE-2", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10846902" + ], + "created_at": "2026-07-10T10:12:40.427742", + "updated_at": "2026-07-10T10:12:40.427742", + "url": "/v1/software/doe-2" +} diff --git a/site/public/v1/software/dog-land/index.json b/site/public/v1/software/dog-land/index.json new file mode 100644 index 000000000000..d6a9e98b4ce1 --- /dev/null +++ b/site/public/v1/software/dog-land/index.json @@ -0,0 +1,19 @@ +{ + "id": 2423, + "slug": "dog-land", + "name": "Dog Land", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17104950" + ], + "created_at": "2026-07-10T10:12:40.428770", + "updated_at": "2026-07-10T10:12:40.428770", + "url": "/v1/software/dog-land" +} diff --git a/site/public/v1/software/dogmamodeler/index.json b/site/public/v1/software/dogmamodeler/index.json new file mode 100644 index 000000000000..7d57a7e8b843 --- /dev/null +++ b/site/public/v1/software/dogmamodeler/index.json @@ -0,0 +1,22 @@ +{ + "id": 2424, + "slug": "dogmamodeler", + "name": "DogmaModeler", + "release_date": null, + "developers": [ + "Rami Hodrob", + "Mustafa Jarrar" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5288385" + ], + "created_at": "2026-07-10T10:12:40.428770", + "updated_at": "2026-07-10T10:12:40.428770", + "url": "/v1/software/dogmamodeler" +} diff --git a/site/public/v1/software/dogs-playing-poker/index.json b/site/public/v1/software/dogs-playing-poker/index.json new file mode 100644 index 000000000000..bdc001673e9f --- /dev/null +++ b/site/public/v1/software/dogs-playing-poker/index.json @@ -0,0 +1,19 @@ +{ + "id": 2425, + "slug": "dogs-playing-poker", + "name": "Dogs Playing Poker", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140391937" + ], + "created_at": "2026-07-10T10:12:40.428770", + "updated_at": "2026-07-10T10:12:40.428770", + "url": "/v1/software/dogs-playing-poker" +} diff --git a/site/public/v1/software/dogtail/index.json b/site/public/v1/software/dogtail/index.json new file mode 100644 index 000000000000..3efac12dbe0e --- /dev/null +++ b/site/public/v1/software/dogtail/index.json @@ -0,0 +1,19 @@ +{ + "id": 2426, + "slug": "dogtail", + "name": "Dogtail", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5288474" + ], + "created_at": "2026-07-10T10:12:40.429755", + "updated_at": "2026-07-10T10:12:40.429755", + "url": "/v1/software/dogtail" +} diff --git a/site/public/v1/software/dolfin-adjoint/index.json b/site/public/v1/software/dolfin-adjoint/index.json new file mode 100644 index 000000000000..3cc22cf9afda --- /dev/null +++ b/site/public/v1/software/dolfin-adjoint/index.json @@ -0,0 +1,23 @@ +{ + "id": 2427, + "slug": "dolfin-adjoint", + "name": "dolfin-adjoint", + "release_date": null, + "developers": [ + "Jørgen S. Dokken", + "Sebastian Mitusch", + "Simon Wolfgang Funke" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116943145" + ], + "created_at": "2026-07-10T10:12:40.429755", + "updated_at": "2026-07-10T10:12:40.429755", + "url": "/v1/software/dolfin-adjoint" +} diff --git a/site/public/v1/software/dolfinx/index.json b/site/public/v1/software/dolfinx/index.json new file mode 100644 index 000000000000..c3d47d58e023 --- /dev/null +++ b/site/public/v1/software/dolfinx/index.json @@ -0,0 +1,22 @@ +{ + "id": 2428, + "slug": "dolfinx", + "name": "DOLFINx", + "release_date": null, + "developers": [ + "Anders Logg", + "Garth Wells" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116943166" + ], + "created_at": "2026-07-10T10:12:40.429755", + "updated_at": "2026-07-10T10:12:40.429755", + "url": "/v1/software/dolfinx" +} diff --git a/site/public/v1/software/dolphin-anty/index.json b/site/public/v1/software/dolphin-anty/index.json new file mode 100644 index 000000000000..1a26be8ac779 --- /dev/null +++ b/site/public/v1/software/dolphin-anty/index.json @@ -0,0 +1,19 @@ +{ + "id": 2429, + "slug": "dolphin-anty", + "name": "Dolphin Anty", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136085415" + ], + "created_at": "2026-07-10T10:12:40.430753", + "updated_at": "2026-07-10T10:12:40.430753", + "url": "/v1/software/dolphin-anty" +} diff --git a/site/public/v1/software/dolphin-smalltalk/index.json b/site/public/v1/software/dolphin-smalltalk/index.json new file mode 100644 index 000000000000..33a662b9f255 --- /dev/null +++ b/site/public/v1/software/dolphin-smalltalk/index.json @@ -0,0 +1,21 @@ +{ + "id": 2430, + "slug": "dolphin-smalltalk", + "name": "Dolphin Smalltalk", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5289650" + ], + "created_at": "2026-07-10T10:12:40.430753", + "updated_at": "2026-07-10T10:12:40.430753", + "url": "/v1/software/dolphin-smalltalk" +} diff --git a/site/public/v1/software/domain-technologie-control/index.json b/site/public/v1/software/domain-technologie-control/index.json new file mode 100644 index 000000000000..da1b6b74e54c --- /dev/null +++ b/site/public/v1/software/domain-technologie-control/index.json @@ -0,0 +1,19 @@ +{ + "id": 2431, + "slug": "domain-technologie-control", + "name": "Domain Technologie Control", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5289806" + ], + "created_at": "2026-07-10T10:12:40.430753", + "updated_at": "2026-07-10T10:12:40.430753", + "url": "/v1/software/domain-technologie-control" +} diff --git a/site/public/v1/software/domeo-annotation-toolkit/index.json b/site/public/v1/software/domeo-annotation-toolkit/index.json new file mode 100644 index 000000000000..e0898021dd88 --- /dev/null +++ b/site/public/v1/software/domeo-annotation-toolkit/index.json @@ -0,0 +1,19 @@ +{ + "id": 2432, + "slug": "domeo-annotation-toolkit", + "name": "Domeo Annotation Toolkit", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084928" + ], + "created_at": "2026-07-10T10:12:40.431761", + "updated_at": "2026-07-10T10:12:40.431761", + "url": "/v1/software/domeo-annotation-toolkit" +} diff --git a/site/public/v1/software/dominion/index.json b/site/public/v1/software/dominion/index.json new file mode 100644 index 000000000000..20532b19bbe0 --- /dev/null +++ b/site/public/v1/software/dominion/index.json @@ -0,0 +1,19 @@ +{ + "id": 2433, + "slug": "dominion", + "name": "Dominion", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76183348" + ], + "created_at": "2026-07-10T10:12:40.431761", + "updated_at": "2026-07-10T10:12:40.431761", + "url": "/v1/software/dominion" +} diff --git a/site/public/v1/software/domoai/index.json b/site/public/v1/software/domoai/index.json new file mode 100644 index 000000000000..d19cfb2783c7 --- /dev/null +++ b/site/public/v1/software/domoai/index.json @@ -0,0 +1,19 @@ +{ + "id": 2434, + "slug": "domoai", + "name": "DomoAI", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139780708" + ], + "created_at": "2026-07-10T10:12:40.431761", + "updated_at": "2026-07-10T10:12:40.431761", + "url": "/v1/software/domoai" +} diff --git a/site/public/v1/software/donotpay/index.json b/site/public/v1/software/donotpay/index.json new file mode 100644 index 000000000000..0b48602aa8c7 --- /dev/null +++ b/site/public/v1/software/donotpay/index.json @@ -0,0 +1,19 @@ +{ + "id": 2435, + "slug": "donotpay", + "name": "DoNotPay", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q56298005" + ], + "created_at": "2026-07-10T10:12:40.432740", + "updated_at": "2026-07-10T10:12:40.432740", + "url": "/v1/software/donotpay" +} diff --git a/site/public/v1/software/doom-modding/index.json b/site/public/v1/software/doom-modding/index.json new file mode 100644 index 000000000000..6d539b4ae16d --- /dev/null +++ b/site/public/v1/software/doom-modding/index.json @@ -0,0 +1,19 @@ +{ + "id": 2436, + "slug": "doom-modding", + "name": "Doom modding", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105973513" + ], + "created_at": "2026-07-10T10:12:40.432740", + "updated_at": "2026-07-10T10:12:40.432740", + "url": "/v1/software/doom-modding" +} diff --git a/site/public/v1/software/doorvault/index.json b/site/public/v1/software/doorvault/index.json new file mode 100644 index 000000000000..f8a1bc9246b4 --- /dev/null +++ b/site/public/v1/software/doorvault/index.json @@ -0,0 +1,19 @@ +{ + "id": 2437, + "slug": "doorvault", + "name": "DoorVault", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140421528" + ], + "created_at": "2026-07-10T10:12:40.432740", + "updated_at": "2026-07-10T10:12:40.432740", + "url": "/v1/software/doorvault" +} diff --git a/site/public/v1/software/dopdf/index.json b/site/public/v1/software/dopdf/index.json new file mode 100644 index 000000000000..59fc7ef2e355 --- /dev/null +++ b/site/public/v1/software/dopdf/index.json @@ -0,0 +1,21 @@ +{ + "id": 2438, + "slug": "dopdf", + "name": "doPDF", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5285913" + ], + "created_at": "2026-07-10T10:12:40.433752", + "updated_at": "2026-07-10T10:12:40.433752", + "url": "/v1/software/dopdf" +} diff --git a/site/public/v1/software/dos-shell/index.json b/site/public/v1/software/dos-shell/index.json new file mode 100644 index 000000000000..2dc73956f195 --- /dev/null +++ b/site/public/v1/software/dos-shell/index.json @@ -0,0 +1,23 @@ +{ + "id": 2439, + "slug": "dos-shell", + "name": "DOS Shell", + "release_date": "1988-06-01", + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [ + "IBM PC DOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1154805" + ], + "created_at": "2026-07-10T10:12:40.433752", + "updated_at": "2026-07-10T10:12:40.433752", + "url": "/v1/software/dos-shell" +} diff --git a/site/public/v1/software/dos-xl/index.json b/site/public/v1/software/dos-xl/index.json new file mode 100644 index 000000000000..66e3fb536ad1 --- /dev/null +++ b/site/public/v1/software/dos-xl/index.json @@ -0,0 +1,21 @@ +{ + "id": 2440, + "slug": "dos-xl", + "name": "DOS XL", + "release_date": null, + "developers": [ + "Optimized Systems Software" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5205894" + ], + "created_at": "2026-07-10T10:12:40.433752", + "updated_at": "2026-07-10T10:12:40.433752", + "url": "/v1/software/dos-xl" +} diff --git a/site/public/v1/software/dosbar/index.json b/site/public/v1/software/dosbar/index.json new file mode 100644 index 000000000000..40a181b34895 --- /dev/null +++ b/site/public/v1/software/dosbar/index.json @@ -0,0 +1,19 @@ +{ + "id": 2441, + "slug": "dosbar", + "name": "DosBar", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125071284" + ], + "created_at": "2026-07-10T10:12:40.434759", + "updated_at": "2026-07-10T10:12:40.434759", + "url": "/v1/software/dosbar" +} diff --git a/site/public/v1/software/doteditor/index.json b/site/public/v1/software/doteditor/index.json new file mode 100644 index 000000000000..5b67fbb49a5a --- /dev/null +++ b/site/public/v1/software/doteditor/index.json @@ -0,0 +1,19 @@ +{ + "id": 2442, + "slug": "doteditor", + "name": "DotEditor", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111367179" + ], + "created_at": "2026-07-10T10:12:40.434759", + "updated_at": "2026-07-10T10:12:40.434759", + "url": "/v1/software/doteditor" +} diff --git a/site/public/v1/software/dottrace/index.json b/site/public/v1/software/dottrace/index.json new file mode 100644 index 000000000000..db65cfc8e54f --- /dev/null +++ b/site/public/v1/software/dottrace/index.json @@ -0,0 +1,25 @@ +{ + "id": 2443, + "slug": "dottrace", + "name": "DotTrace", + "release_date": null, + "developers": [ + "JetBrains" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4037547" + ], + "created_at": "2026-07-10T10:12:40.434759", + "updated_at": "2026-07-10T10:12:40.434759", + "url": "/v1/software/dottrace" +} diff --git a/site/public/v1/software/double-tools-for-doublespace/index.json b/site/public/v1/software/double-tools-for-doublespace/index.json new file mode 100644 index 000000000000..936fc4e16d40 --- /dev/null +++ b/site/public/v1/software/double-tools-for-doublespace/index.json @@ -0,0 +1,19 @@ +{ + "id": 2444, + "slug": "double-tools-for-doublespace", + "name": "Double Tools for DoubleSpace", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5299905" + ], + "created_at": "2026-07-10T10:12:40.434759", + "updated_at": "2026-07-10T10:12:40.434759", + "url": "/v1/software/double-tools-for-doublespace" +} diff --git a/site/public/v1/software/doubledos/index.json b/site/public/v1/software/doubledos/index.json new file mode 100644 index 000000000000..2be05cbde53d --- /dev/null +++ b/site/public/v1/software/doubledos/index.json @@ -0,0 +1,21 @@ +{ + "id": 2445, + "slug": "doubledos", + "name": "DoubleDOS", + "release_date": "1984-01-01", + "developers": [], + "publishers": [], + "operating_systems": [ + "IBM PC DOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q19599405" + ], + "created_at": "2026-07-10T10:12:40.435682", + "updated_at": "2026-07-10T10:12:40.435682", + "url": "/v1/software/doubledos" +} diff --git a/site/public/v1/software/down-to-lunch/index.json b/site/public/v1/software/down-to-lunch/index.json new file mode 100644 index 000000000000..1e2f243c7730 --- /dev/null +++ b/site/public/v1/software/down-to-lunch/index.json @@ -0,0 +1,19 @@ +{ + "id": 2446, + "slug": "down-to-lunch", + "name": "Down To Lunch", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60746478" + ], + "created_at": "2026-07-10T10:12:40.435682", + "updated_at": "2026-07-10T10:12:40.435682", + "url": "/v1/software/down-to-lunch" +} diff --git a/site/public/v1/software/down/index.json b/site/public/v1/software/down/index.json new file mode 100644 index 000000000000..3277935c38ff --- /dev/null +++ b/site/public/v1/software/down/index.json @@ -0,0 +1,19 @@ +{ + "id": 2447, + "slug": "down", + "name": "DOWN", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109285562" + ], + "created_at": "2026-07-10T10:12:40.435682", + "updated_at": "2026-07-10T10:12:40.435682", + "url": "/v1/software/down" +} diff --git a/site/public/v1/software/downthemall/index.json b/site/public/v1/software/downthemall/index.json new file mode 100644 index 000000000000..99fbd34adbd4 --- /dev/null +++ b/site/public/v1/software/downthemall/index.json @@ -0,0 +1,19 @@ +{ + "id": 2448, + "slug": "downthemall", + "name": "DownThemAll", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084929" + ], + "created_at": "2026-07-10T10:12:40.436835", + "updated_at": "2026-07-10T10:12:40.436835", + "url": "/v1/software/downthemall" +} diff --git a/site/public/v1/software/dp-code/index.json b/site/public/v1/software/dp-code/index.json new file mode 100644 index 000000000000..c8e89a6a860c --- /dev/null +++ b/site/public/v1/software/dp-code/index.json @@ -0,0 +1,19 @@ +{ + "id": 2449, + "slug": "dp-code", + "name": "DP code", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5205974" + ], + "created_at": "2026-07-10T10:12:40.436835", + "updated_at": "2026-07-10T10:12:40.436835", + "url": "/v1/software/dp-code" +} diff --git a/site/public/v1/software/dplyr/index.json b/site/public/v1/software/dplyr/index.json new file mode 100644 index 000000000000..86f3cb1f5f98 --- /dev/null +++ b/site/public/v1/software/dplyr/index.json @@ -0,0 +1,21 @@ +{ + "id": 2450, + "slug": "dplyr", + "name": "dplyr", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "R" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q104854189" + ], + "created_at": "2026-07-10T10:12:40.436835", + "updated_at": "2026-07-10T10:12:40.436835", + "url": "/v1/software/dplyr" +} diff --git a/site/public/v1/software/dpvs/index.json b/site/public/v1/software/dpvs/index.json new file mode 100644 index 000000000000..f4bbf2a3b0ae --- /dev/null +++ b/site/public/v1/software/dpvs/index.json @@ -0,0 +1,19 @@ +{ + "id": 2451, + "slug": "dpvs", + "name": "DPVS", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5205965" + ], + "created_at": "2026-07-10T10:12:40.437847", + "updated_at": "2026-07-10T10:12:40.437847", + "url": "/v1/software/dpvs" +} diff --git a/site/public/v1/software/dr-halo/index.json b/site/public/v1/software/dr-halo/index.json new file mode 100644 index 000000000000..75ad519406ee --- /dev/null +++ b/site/public/v1/software/dr-halo/index.json @@ -0,0 +1,19 @@ +{ + "id": 2452, + "slug": "dr-halo", + "name": "Dr. Halo", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110127722" + ], + "created_at": "2026-07-10T10:12:40.437847", + "updated_at": "2026-07-10T10:12:40.437847", + "url": "/v1/software/dr-halo" +} diff --git a/site/public/v1/software/dr-sbaitso/index.json b/site/public/v1/software/dr-sbaitso/index.json new file mode 100644 index 000000000000..163b131ffc99 --- /dev/null +++ b/site/public/v1/software/dr-sbaitso/index.json @@ -0,0 +1,21 @@ +{ + "id": 2453, + "slug": "dr-sbaitso", + "name": "Dr. Sbaitso", + "release_date": null, + "developers": [ + "Creative Technology" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3714862" + ], + "created_at": "2026-07-10T10:12:40.437847", + "updated_at": "2026-07-10T10:12:40.437847", + "url": "/v1/software/dr-sbaitso" +} diff --git a/site/public/v1/software/dracor/index.json b/site/public/v1/software/dracor/index.json new file mode 100644 index 000000000000..1b341caccf13 --- /dev/null +++ b/site/public/v1/software/dracor/index.json @@ -0,0 +1,23 @@ +{ + "id": 2454, + "slug": "dracor", + "name": "DraCor", + "release_date": null, + "developers": [ + "Carsten Milling" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Creative Commons CC0 License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122408266" + ], + "created_at": "2026-07-10T10:12:40.438846", + "updated_at": "2026-07-10T10:12:40.438846", + "url": "/v1/software/dracor" +} diff --git a/site/public/v1/software/dradis-framework/index.json b/site/public/v1/software/dradis-framework/index.json new file mode 100644 index 000000000000..ebbeb7b2c367 --- /dev/null +++ b/site/public/v1/software/dradis-framework/index.json @@ -0,0 +1,19 @@ +{ + "id": 2455, + "slug": "dradis-framework", + "name": "Dradis Framework", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136799133" + ], + "created_at": "2026-07-10T10:12:40.438846", + "updated_at": "2026-07-10T10:12:40.438846", + "url": "/v1/software/dradis-framework" +} diff --git a/site/public/v1/software/draftsight/index.json b/site/public/v1/software/draftsight/index.json new file mode 100644 index 000000000000..27403f4565e1 --- /dev/null +++ b/site/public/v1/software/draftsight/index.json @@ -0,0 +1,26 @@ +{ + "id": 2456, + "slug": "draftsight", + "name": "DraftSight", + "release_date": null, + "developers": [ + "Dassault Systèmes" + ], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2436588" + ], + "created_at": "2026-07-10T10:12:40.438846", + "updated_at": "2026-07-10T10:12:40.438846", + "url": "/v1/software/draftsight" +} diff --git a/site/public/v1/software/dragonframe/index.json b/site/public/v1/software/dragonframe/index.json new file mode 100644 index 000000000000..f26df2d0fa31 --- /dev/null +++ b/site/public/v1/software/dragonframe/index.json @@ -0,0 +1,19 @@ +{ + "id": 2457, + "slug": "dragonframe", + "name": "Dragonframe", + "release_date": "2008-03-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28401315" + ], + "created_at": "2026-07-10T10:12:40.438846", + "updated_at": "2026-07-10T10:12:40.438846", + "url": "/v1/software/dragonframe" +} diff --git a/site/public/v1/software/dragthing/index.json b/site/public/v1/software/dragthing/index.json new file mode 100644 index 000000000000..ccc8167d3e9f --- /dev/null +++ b/site/public/v1/software/dragthing/index.json @@ -0,0 +1,19 @@ +{ + "id": 2458, + "slug": "dragthing", + "name": "DragThing", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5304790" + ], + "created_at": "2026-07-10T10:12:40.439846", + "updated_at": "2026-07-10T10:12:40.439846", + "url": "/v1/software/dragthing" +} diff --git a/site/public/v1/software/drakon-editor/index.json b/site/public/v1/software/drakon-editor/index.json new file mode 100644 index 000000000000..8f786ed6f92d --- /dev/null +++ b/site/public/v1/software/drakon-editor/index.json @@ -0,0 +1,19 @@ +{ + "id": 2459, + "slug": "drakon-editor", + "name": "DRAKON Editor", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q24884408" + ], + "created_at": "2026-07-10T10:12:40.439846", + "updated_at": "2026-07-10T10:12:40.439846", + "url": "/v1/software/drakon-editor" +} diff --git a/site/public/v1/software/dramatica/index.json b/site/public/v1/software/dramatica/index.json new file mode 100644 index 000000000000..b91d1d53dd81 --- /dev/null +++ b/site/public/v1/software/dramatica/index.json @@ -0,0 +1,23 @@ +{ + "id": 2460, + "slug": "dramatica", + "name": "Dramatica", + "release_date": null, + "developers": [ + "Write Brothers" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3715141" + ], + "created_at": "2026-07-10T10:12:40.439846", + "updated_at": "2026-07-10T10:12:40.439846", + "url": "/v1/software/dramatica" +} diff --git a/site/public/v1/software/drawmd/index.json b/site/public/v1/software/drawmd/index.json new file mode 100644 index 000000000000..ec30a3310cfd --- /dev/null +++ b/site/public/v1/software/drawmd/index.json @@ -0,0 +1,19 @@ +{ + "id": 2461, + "slug": "drawmd", + "name": "DrawMD", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q19877965" + ], + "created_at": "2026-07-10T10:12:40.440846", + "updated_at": "2026-07-10T10:12:40.440846", + "url": "/v1/software/drawmd" +} diff --git a/site/public/v1/software/drawshield/index.json b/site/public/v1/software/drawshield/index.json new file mode 100644 index 000000000000..8515338cb771 --- /dev/null +++ b/site/public/v1/software/drawshield/index.json @@ -0,0 +1,21 @@ +{ + "id": 2462, + "slug": "drawshield", + "name": "DrawShield", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "GNU General Public License, version 3.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137515866" + ], + "created_at": "2026-07-10T10:12:40.440846", + "updated_at": "2026-07-10T10:12:40.440846", + "url": "/v1/software/drawshield" +} diff --git a/site/public/v1/software/drawtiming/index.json b/site/public/v1/software/drawtiming/index.json new file mode 100644 index 000000000000..bd418e8a9fa3 --- /dev/null +++ b/site/public/v1/software/drawtiming/index.json @@ -0,0 +1,19 @@ +{ + "id": 2463, + "slug": "drawtiming", + "name": "drawtiming", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065379" + ], + "created_at": "2026-07-10T10:12:40.440846", + "updated_at": "2026-07-10T10:12:40.440846", + "url": "/v1/software/drawtiming" +} diff --git a/site/public/v1/software/dream-keyboard/index.json b/site/public/v1/software/dream-keyboard/index.json new file mode 100644 index 000000000000..c479d154a29b --- /dev/null +++ b/site/public/v1/software/dream-keyboard/index.json @@ -0,0 +1,19 @@ +{ + "id": 2464, + "slug": "dream-keyboard", + "name": "Dream Keyboard", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108149754" + ], + "created_at": "2026-07-10T10:12:40.441900", + "updated_at": "2026-07-10T10:12:40.441900", + "url": "/v1/software/dream-keyboard" +} diff --git a/site/public/v1/software/dreambooth/index.json b/site/public/v1/software/dreambooth/index.json new file mode 100644 index 000000000000..c804d5aede20 --- /dev/null +++ b/site/public/v1/software/dreambooth/index.json @@ -0,0 +1,19 @@ +{ + "id": 2465, + "slug": "dreambooth", + "name": "DreamBooth", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115059532" + ], + "created_at": "2026-07-10T10:12:40.441900", + "updated_at": "2026-07-10T10:12:40.441900", + "url": "/v1/software/dreambooth" +} diff --git a/site/public/v1/software/dreamscape/index.json b/site/public/v1/software/dreamscape/index.json new file mode 100644 index 000000000000..f523eca0ef99 --- /dev/null +++ b/site/public/v1/software/dreamscape/index.json @@ -0,0 +1,24 @@ +{ + "id": 2466, + "slug": "dreamscape", + "name": "Dreamscape", + "release_date": null, + "developers": [ + "Fujitsu" + ], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5306764" + ], + "created_at": "2026-07-10T10:12:40.441900", + "updated_at": "2026-07-10T10:12:40.441900", + "url": "/v1/software/dreamscape" +} diff --git a/site/public/v1/software/dremel/index.json b/site/public/v1/software/dremel/index.json new file mode 100644 index 000000000000..668536677824 --- /dev/null +++ b/site/public/v1/software/dremel/index.json @@ -0,0 +1,21 @@ +{ + "id": 2467, + "slug": "dremel", + "name": "Dremel", + "release_date": null, + "developers": [ + "Google" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5306908" + ], + "created_at": "2026-07-10T10:12:40.442892", + "updated_at": "2026-07-10T10:12:40.442892", + "url": "/v1/software/dremel" +} diff --git a/site/public/v1/software/driftnet/index.json b/site/public/v1/software/driftnet/index.json new file mode 100644 index 000000000000..04a92fab60d6 --- /dev/null +++ b/site/public/v1/software/driftnet/index.json @@ -0,0 +1,21 @@ +{ + "id": 2468, + "slug": "driftnet", + "name": "Driftnet", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Kali Linux" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q55420367" + ], + "created_at": "2026-07-10T10:12:40.442892", + "updated_at": "2026-07-10T10:12:40.442892", + "url": "/v1/software/driftnet" +} diff --git a/site/public/v1/software/drive-image/index.json b/site/public/v1/software/drive-image/index.json new file mode 100644 index 000000000000..53941d8c0045 --- /dev/null +++ b/site/public/v1/software/drive-image/index.json @@ -0,0 +1,23 @@ +{ + "id": 2469, + "slug": "drive-image", + "name": "Drive Image", + "release_date": null, + "developers": [ + "Gen Digital" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5307905" + ], + "created_at": "2026-07-10T10:12:40.442892", + "updated_at": "2026-07-10T10:12:40.442892", + "url": "/v1/software/drive-image" +} diff --git a/site/public/v1/software/drive-letter-access/index.json b/site/public/v1/software/drive-letter-access/index.json new file mode 100644 index 000000000000..a5ced1c55b15 --- /dev/null +++ b/site/public/v1/software/drive-letter-access/index.json @@ -0,0 +1,21 @@ +{ + "id": 2470, + "slug": "drive-letter-access", + "name": "Drive Letter Access", + "release_date": null, + "developers": [ + "Sonic Solutions" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1259369" + ], + "created_at": "2026-07-10T10:12:40.442892", + "updated_at": "2026-07-10T10:12:40.442892", + "url": "/v1/software/drive-letter-access" +} diff --git a/site/public/v1/software/driver-easy/index.json b/site/public/v1/software/driver-easy/index.json new file mode 100644 index 000000000000..c37f0c9f05bc --- /dev/null +++ b/site/public/v1/software/driver-easy/index.json @@ -0,0 +1,21 @@ +{ + "id": 2471, + "slug": "driver-easy", + "name": "Driver Easy", + "release_date": null, + "developers": [ + "Easeware Technology Limited" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109438166" + ], + "created_at": "2026-07-10T10:12:40.443899", + "updated_at": "2026-07-10T10:12:40.443899", + "url": "/v1/software/driver-easy" +} diff --git a/site/public/v1/software/driver-verifier/index.json b/site/public/v1/software/driver-verifier/index.json new file mode 100644 index 000000000000..0acbe5d580a8 --- /dev/null +++ b/site/public/v1/software/driver-verifier/index.json @@ -0,0 +1,21 @@ +{ + "id": 2472, + "slug": "driver-verifier", + "name": "Driver Verifier", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5308007" + ], + "created_at": "2026-07-10T10:12:40.443899", + "updated_at": "2026-07-10T10:12:40.443899", + "url": "/v1/software/driver-verifier" +} diff --git a/site/public/v1/software/drivermax/index.json b/site/public/v1/software/drivermax/index.json new file mode 100644 index 000000000000..eb079afa8afc --- /dev/null +++ b/site/public/v1/software/drivermax/index.json @@ -0,0 +1,19 @@ +{ + "id": 2473, + "slug": "drivermax", + "name": "DriverMax", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10268797" + ], + "created_at": "2026-07-10T10:12:40.443899", + "updated_at": "2026-07-10T10:12:40.443899", + "url": "/v1/software/drivermax" +} diff --git a/site/public/v1/software/drivernest/index.json b/site/public/v1/software/drivernest/index.json new file mode 100644 index 000000000000..de9ce73fddec --- /dev/null +++ b/site/public/v1/software/drivernest/index.json @@ -0,0 +1,19 @@ +{ + "id": 2474, + "slug": "drivernest", + "name": "DriverNest", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140386264" + ], + "created_at": "2026-07-10T10:12:40.444901", + "updated_at": "2026-07-10T10:12:40.444901", + "url": "/v1/software/drivernest" +} diff --git a/site/public/v1/software/driveworks/index.json b/site/public/v1/software/driveworks/index.json new file mode 100644 index 000000000000..3b581259aae1 --- /dev/null +++ b/site/public/v1/software/driveworks/index.json @@ -0,0 +1,19 @@ +{ + "id": 2475, + "slug": "driveworks", + "name": "DriveWorks", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137196697" + ], + "created_at": "2026-07-10T10:12:40.444901", + "updated_at": "2026-07-10T10:12:40.444901", + "url": "/v1/software/driveworks" +} diff --git a/site/public/v1/software/drivin/index.json b/site/public/v1/software/drivin/index.json new file mode 100644 index 000000000000..118199ac30d6 --- /dev/null +++ b/site/public/v1/software/drivin/index.json @@ -0,0 +1,19 @@ +{ + "id": 2476, + "slug": "drivin", + "name": "Drivin", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139547110" + ], + "created_at": "2026-07-10T10:12:40.444901", + "updated_at": "2026-07-10T10:12:40.444901", + "url": "/v1/software/drivin" +} diff --git a/site/public/v1/software/drone-ci-oss/index.json b/site/public/v1/software/drone-ci-oss/index.json new file mode 100644 index 000000000000..2ee14c7685d3 --- /dev/null +++ b/site/public/v1/software/drone-ci-oss/index.json @@ -0,0 +1,21 @@ +{ + "id": 2477, + "slug": "drone-ci-oss", + "name": "Drone CI OSS", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Apache Software License 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123510170" + ], + "created_at": "2026-07-10T10:12:40.445893", + "updated_at": "2026-07-10T10:12:40.445893", + "url": "/v1/software/drone-ci-oss" +} diff --git a/site/public/v1/software/dronebundle/index.json b/site/public/v1/software/dronebundle/index.json new file mode 100644 index 000000000000..7d74bdea15e1 --- /dev/null +++ b/site/public/v1/software/dronebundle/index.json @@ -0,0 +1,21 @@ +{ + "id": 2478, + "slug": "dronebundle", + "name": "Dronebundle", + "release_date": null, + "developers": [ + "Dronebundle" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138339690" + ], + "created_at": "2026-07-10T10:12:40.445893", + "updated_at": "2026-07-10T10:12:40.445893", + "url": "/v1/software/dronebundle" +} diff --git a/site/public/v1/software/dropbox-carousel/index.json b/site/public/v1/software/dropbox-carousel/index.json new file mode 100644 index 000000000000..662aa8266034 --- /dev/null +++ b/site/public/v1/software/dropbox-carousel/index.json @@ -0,0 +1,19 @@ +{ + "id": 2479, + "slug": "dropbox-carousel", + "name": "Dropbox Carousel", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q21203438" + ], + "created_at": "2026-07-10T10:12:40.445893", + "updated_at": "2026-07-10T10:12:40.445893", + "url": "/v1/software/dropbox-carousel" +} diff --git a/site/public/v1/software/dropbox-paper/index.json b/site/public/v1/software/dropbox-paper/index.json new file mode 100644 index 000000000000..153715c87878 --- /dev/null +++ b/site/public/v1/software/dropbox-paper/index.json @@ -0,0 +1,21 @@ +{ + "id": 2480, + "slug": "dropbox-paper", + "name": "Dropbox Paper", + "release_date": null, + "developers": [ + "Dropbox" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22907957" + ], + "created_at": "2026-07-10T10:12:40.446922", + "updated_at": "2026-07-10T10:12:40.446922", + "url": "/v1/software/dropbox-paper" +} diff --git a/site/public/v1/software/dropmire/index.json b/site/public/v1/software/dropmire/index.json new file mode 100644 index 000000000000..d4a2ff2c0b23 --- /dev/null +++ b/site/public/v1/software/dropmire/index.json @@ -0,0 +1,19 @@ +{ + "id": 2481, + "slug": "dropmire", + "name": "Dropmire", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q13592736" + ], + "created_at": "2026-07-10T10:12:40.446922", + "updated_at": "2026-07-10T10:12:40.446922", + "url": "/v1/software/dropmire" +} diff --git a/site/public/v1/software/dropmyemail/index.json b/site/public/v1/software/dropmyemail/index.json new file mode 100644 index 000000000000..73f8389ad617 --- /dev/null +++ b/site/public/v1/software/dropmyemail/index.json @@ -0,0 +1,19 @@ +{ + "id": 2482, + "slug": "dropmyemail", + "name": "Dropmyemail", + "release_date": "2012-03-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5308463" + ], + "created_at": "2026-07-10T10:12:40.446922", + "updated_at": "2026-07-10T10:12:40.446922", + "url": "/v1/software/dropmyemail" +} diff --git a/site/public/v1/software/dropresolve/index.json b/site/public/v1/software/dropresolve/index.json new file mode 100644 index 000000000000..e408858952c5 --- /dev/null +++ b/site/public/v1/software/dropresolve/index.json @@ -0,0 +1,19 @@ +{ + "id": 2483, + "slug": "dropresolve", + "name": "DropResolve", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138773268" + ], + "created_at": "2026-07-10T10:12:40.447903", + "updated_at": "2026-07-10T10:12:40.447903", + "url": "/v1/software/dropresolve" +} diff --git a/site/public/v1/software/dropship/index.json b/site/public/v1/software/dropship/index.json new file mode 100644 index 000000000000..f5dda6b6a45d --- /dev/null +++ b/site/public/v1/software/dropship/index.json @@ -0,0 +1,23 @@ +{ + "id": 2484, + "slug": "dropship", + "name": "Dropship", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Python" + ], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5308496" + ], + "created_at": "2026-07-10T10:12:40.447903", + "updated_at": "2026-07-10T10:12:40.447903", + "url": "/v1/software/dropship" +} diff --git a/site/public/v1/software/drotr/index.json b/site/public/v1/software/drotr/index.json new file mode 100644 index 000000000000..1dad86cb8d3b --- /dev/null +++ b/site/public/v1/software/drotr/index.json @@ -0,0 +1,21 @@ +{ + "id": 2485, + "slug": "drotr", + "name": "DROTR", + "release_date": null, + "developers": [ + "Vidby" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17523639" + ], + "created_at": "2026-07-10T10:12:40.447903", + "updated_at": "2026-07-10T10:12:40.447903", + "url": "/v1/software/drotr" +} diff --git a/site/public/v1/software/drug-design-and-optimization-lab/index.json b/site/public/v1/software/drug-design-and-optimization-lab/index.json new file mode 100644 index 000000000000..ae3763b71507 --- /dev/null +++ b/site/public/v1/software/drug-design-and-optimization-lab/index.json @@ -0,0 +1,19 @@ +{ + "id": 2486, + "slug": "drug-design-and-optimization-lab", + "name": "Drug Design and Optimization Lab", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q842362" + ], + "created_at": "2026-07-10T10:12:40.448914", + "updated_at": "2026-07-10T10:12:40.448914", + "url": "/v1/software/drug-design-and-optimization-lab" +} diff --git a/site/public/v1/software/drugfire/index.json b/site/public/v1/software/drugfire/index.json new file mode 100644 index 000000000000..3f415ad92dca --- /dev/null +++ b/site/public/v1/software/drugfire/index.json @@ -0,0 +1,19 @@ +{ + "id": 2487, + "slug": "drugfire", + "name": "Drugfire", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5308938" + ], + "created_at": "2026-07-10T10:12:40.448914", + "updated_at": "2026-07-10T10:12:40.448914", + "url": "/v1/software/drugfire" +} diff --git a/site/public/v1/software/drumup/index.json b/site/public/v1/software/drumup/index.json new file mode 100644 index 000000000000..f9c6f3462880 --- /dev/null +++ b/site/public/v1/software/drumup/index.json @@ -0,0 +1,19 @@ +{ + "id": 2488, + "slug": "drumup", + "name": "DrumUp", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22907961" + ], + "created_at": "2026-07-10T10:12:40.448914", + "updated_at": "2026-07-10T10:12:40.448914", + "url": "/v1/software/drumup" +} diff --git a/site/public/v1/software/drync/index.json b/site/public/v1/software/drync/index.json new file mode 100644 index 000000000000..4cf35395e682 --- /dev/null +++ b/site/public/v1/software/drync/index.json @@ -0,0 +1,19 @@ +{ + "id": 2489, + "slug": "drync", + "name": "Drync", + "release_date": "2008-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16973178" + ], + "created_at": "2026-07-10T10:12:40.449926", + "updated_at": "2026-07-10T10:12:40.449926", + "url": "/v1/software/drync" +} diff --git a/site/public/v1/software/ds-2/index.json b/site/public/v1/software/ds-2/index.json new file mode 100644 index 000000000000..00faa440fce0 --- /dev/null +++ b/site/public/v1/software/ds-2/index.json @@ -0,0 +1,21 @@ +{ + "id": 2490, + "slug": "ds-2", + "name": "DS-2", + "release_date": null, + "developers": [ + "Zuken" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5206095" + ], + "created_at": "2026-07-10T10:12:40.449926", + "updated_at": "2026-07-10T10:12:40.449926", + "url": "/v1/software/ds-2" +} diff --git a/site/public/v1/software/ds-game-maker/index.json b/site/public/v1/software/ds-game-maker/index.json new file mode 100644 index 000000000000..1a1e6d1d5a3d --- /dev/null +++ b/site/public/v1/software/ds-game-maker/index.json @@ -0,0 +1,19 @@ +{ + "id": 2491, + "slug": "ds-game-maker", + "name": "DS Game Maker", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3700565" + ], + "created_at": "2026-07-10T10:12:40.449926", + "updated_at": "2026-07-10T10:12:40.449926", + "url": "/v1/software/ds-game-maker" +} diff --git a/site/public/v1/software/dsh/index.json b/site/public/v1/software/dsh/index.json new file mode 100644 index 000000000000..1442de3572a2 --- /dev/null +++ b/site/public/v1/software/dsh/index.json @@ -0,0 +1,19 @@ +{ + "id": 2492, + "slug": "dsh", + "name": "dsh", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110473920" + ], + "created_at": "2026-07-10T10:12:40.451010", + "updated_at": "2026-07-10T10:12:40.451010", + "url": "/v1/software/dsh" +} diff --git a/site/public/v1/software/dsniff/index.json b/site/public/v1/software/dsniff/index.json new file mode 100644 index 000000000000..126538007652 --- /dev/null +++ b/site/public/v1/software/dsniff/index.json @@ -0,0 +1,23 @@ +{ + "id": 2493, + "slug": "dsniff", + "name": "dSniff", + "release_date": "2000-12-17", + "developers": [], + "publishers": [], + "operating_systems": [ + "Unix-like operating system" + ], + "programming_languages": [], + "licenses": [ + "3-clause BSD License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2350040" + ], + "created_at": "2026-07-10T10:12:40.454038", + "updated_at": "2026-07-10T10:12:40.454038", + "url": "/v1/software/dsniff" +} diff --git a/site/public/v1/software/dsplayer/index.json b/site/public/v1/software/dsplayer/index.json new file mode 100644 index 000000000000..9c5c79316035 --- /dev/null +++ b/site/public/v1/software/dsplayer/index.json @@ -0,0 +1,19 @@ +{ + "id": 2494, + "slug": "dsplayer", + "name": "DSPlayer", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2092513" + ], + "created_at": "2026-07-10T10:12:40.458065", + "updated_at": "2026-07-10T10:12:40.458065", + "url": "/v1/software/dsplayer" +} diff --git a/site/public/v1/software/dssat/index.json b/site/public/v1/software/dssat/index.json new file mode 100644 index 000000000000..25cefc7882f2 --- /dev/null +++ b/site/public/v1/software/dssat/index.json @@ -0,0 +1,19 @@ +{ + "id": 2495, + "slug": "dssat", + "name": "DSSAT", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17073957" + ], + "created_at": "2026-07-10T10:12:40.462051", + "updated_at": "2026-07-10T10:12:40.462051", + "url": "/v1/software/dssat" +} diff --git a/site/public/v1/software/dssp/index.json b/site/public/v1/software/dssp/index.json new file mode 100644 index 000000000000..342de0ba241c --- /dev/null +++ b/site/public/v1/software/dssp/index.json @@ -0,0 +1,21 @@ +{ + "id": 2496, + "slug": "dssp", + "name": "DSSP", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "2-clause BSD License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5206192" + ], + "created_at": "2026-07-10T10:12:40.465606", + "updated_at": "2026-07-10T10:12:40.465606", + "url": "/v1/software/dssp" +} diff --git a/site/public/v1/software/dta-gview/index.json b/site/public/v1/software/dta-gview/index.json new file mode 100644 index 000000000000..6232e68b69fc --- /dev/null +++ b/site/public/v1/software/dta-gview/index.json @@ -0,0 +1,19 @@ +{ + "id": 2497, + "slug": "dta-gview", + "name": "DTA GView", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111913020" + ], + "created_at": "2026-07-10T10:12:40.471711", + "updated_at": "2026-07-10T10:12:40.471711", + "url": "/v1/software/dta-gview" +} diff --git a/site/public/v1/software/dtc/index.json b/site/public/v1/software/dtc/index.json new file mode 100644 index 000000000000..aec446640de4 --- /dev/null +++ b/site/public/v1/software/dtc/index.json @@ -0,0 +1,19 @@ +{ + "id": 2498, + "slug": "dtc", + "name": "dtc", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974812" + ], + "created_at": "2026-07-10T10:12:40.473719", + "updated_at": "2026-07-10T10:12:40.473719", + "url": "/v1/software/dtc" +} diff --git a/site/public/v1/software/dtrx/index.json b/site/public/v1/software/dtrx/index.json new file mode 100644 index 000000000000..81a77dd85548 --- /dev/null +++ b/site/public/v1/software/dtrx/index.json @@ -0,0 +1,19 @@ +{ + "id": 2499, + "slug": "dtrx", + "name": "dtrx", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110473926" + ], + "created_at": "2026-07-10T10:12:40.475749", + "updated_at": "2026-07-10T10:12:40.475749", + "url": "/v1/software/dtrx" +} diff --git a/site/public/v1/software/dts-1/index.json b/site/public/v1/software/dts-1/index.json new file mode 100644 index 000000000000..a69b01b48171 --- /dev/null +++ b/site/public/v1/software/dts-1/index.json @@ -0,0 +1,19 @@ +{ + "id": 2500, + "slug": "dts-1", + "name": "DTS-1", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q9200588" + ], + "created_at": "2026-07-10T10:12:40.477695", + "updated_at": "2026-07-10T10:12:40.477695", + "url": "/v1/software/dts-1" +} diff --git a/site/public/v1/software/dubsmash/index.json b/site/public/v1/software/dubsmash/index.json new file mode 100644 index 000000000000..359d5ec8fc11 --- /dev/null +++ b/site/public/v1/software/dubsmash/index.json @@ -0,0 +1,21 @@ +{ + "id": 2501, + "slug": "dubsmash", + "name": "Dubsmash", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "iOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18612597" + ], + "created_at": "2026-07-10T10:12:40.478744", + "updated_at": "2026-07-10T10:12:40.478744", + "url": "/v1/software/dubsmash" +} diff --git a/site/public/v1/software/ducs/index.json b/site/public/v1/software/ducs/index.json new file mode 100644 index 000000000000..6045b6f23f88 --- /dev/null +++ b/site/public/v1/software/ducs/index.json @@ -0,0 +1,19 @@ +{ + "id": 2502, + "slug": "ducs", + "name": "DUCS", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5206291" + ], + "created_at": "2026-07-10T10:12:40.479690", + "updated_at": "2026-07-10T10:12:40.479690", + "url": "/v1/software/ducs" +} diff --git a/site/public/v1/software/duden-bibliothek/index.json b/site/public/v1/software/duden-bibliothek/index.json new file mode 100644 index 000000000000..04886a2a87e4 --- /dev/null +++ b/site/public/v1/software/duden-bibliothek/index.json @@ -0,0 +1,19 @@ +{ + "id": 2503, + "slug": "duden-bibliothek", + "name": "Duden-Bibliothek", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1263656" + ], + "created_at": "2026-07-10T10:12:40.481697", + "updated_at": "2026-07-10T10:12:40.481697", + "url": "/v1/software/duden-bibliothek" +} diff --git a/site/public/v1/software/duet/index.json b/site/public/v1/software/duet/index.json new file mode 100644 index 000000000000..b542a8b33d91 --- /dev/null +++ b/site/public/v1/software/duet/index.json @@ -0,0 +1,22 @@ +{ + "id": 2504, + "slug": "duet", + "name": "Duet", + "release_date": null, + "developers": [ + "SAP", + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1263942" + ], + "created_at": "2026-07-10T10:12:40.482700", + "updated_at": "2026-07-10T10:12:40.482700", + "url": "/v1/software/duet" +} diff --git a/site/public/v1/software/duktus/index.json b/site/public/v1/software/duktus/index.json new file mode 100644 index 000000000000..e1a735031e86 --- /dev/null +++ b/site/public/v1/software/duktus/index.json @@ -0,0 +1,21 @@ +{ + "id": 2505, + "slug": "duktus", + "name": "duktus", + "release_date": null, + "developers": [ + "Joshua Quattek" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139884553" + ], + "created_at": "2026-07-10T10:12:40.483617", + "updated_at": "2026-07-10T10:12:40.483617", + "url": "/v1/software/duktus" +} diff --git a/site/public/v1/software/dump1090/index.json b/site/public/v1/software/dump1090/index.json new file mode 100644 index 000000000000..4bcc9b9832ce --- /dev/null +++ b/site/public/v1/software/dump1090/index.json @@ -0,0 +1,21 @@ +{ + "id": 2506, + "slug": "dump1090", + "name": "dump1090", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "3-clause BSD License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974814" + ], + "created_at": "2026-07-10T10:12:40.483617", + "updated_at": "2026-07-10T10:12:40.483617", + "url": "/v1/software/dump1090" +} diff --git a/site/public/v1/software/dundas/index.json b/site/public/v1/software/dundas/index.json new file mode 100644 index 000000000000..30c0f61d9b41 --- /dev/null +++ b/site/public/v1/software/dundas/index.json @@ -0,0 +1,19 @@ +{ + "id": 2507, + "slug": "dundas", + "name": "Dundas", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084931" + ], + "created_at": "2026-07-10T10:12:40.484614", + "updated_at": "2026-07-10T10:12:40.484614", + "url": "/v1/software/dundas" +} diff --git a/site/public/v1/software/dungeon-lords-mmxii/index.json b/site/public/v1/software/dungeon-lords-mmxii/index.json new file mode 100644 index 000000000000..725a40df5f03 --- /dev/null +++ b/site/public/v1/software/dungeon-lords-mmxii/index.json @@ -0,0 +1,19 @@ +{ + "id": 2508, + "slug": "dungeon-lords-mmxii", + "name": "Dungeon Lords MMXII", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140361140" + ], + "created_at": "2026-07-10T10:12:40.485618", + "updated_at": "2026-07-10T10:12:40.485618", + "url": "/v1/software/dungeon-lords-mmxii" +} diff --git a/site/public/v1/software/dungeon-master-s-assistant-volume-i/index.json b/site/public/v1/software/dungeon-master-s-assistant-volume-i/index.json new file mode 100644 index 000000000000..221eb382aba9 --- /dev/null +++ b/site/public/v1/software/dungeon-master-s-assistant-volume-i/index.json @@ -0,0 +1,19 @@ +{ + "id": 2509, + "slug": "dungeon-master-s-assistant-volume-i", + "name": "Dungeon Master's Assistant Volume I", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130336279" + ], + "created_at": "2026-07-10T10:12:40.486618", + "updated_at": "2026-07-10T10:12:40.486618", + "url": "/v1/software/dungeon-master-s-assistant-volume-i" +} diff --git a/site/public/v1/software/dupdub/index.json b/site/public/v1/software/dupdub/index.json new file mode 100644 index 000000000000..4ae23422dc76 --- /dev/null +++ b/site/public/v1/software/dupdub/index.json @@ -0,0 +1,19 @@ +{ + "id": 2510, + "slug": "dupdub", + "name": "DupDub", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134971379" + ], + "created_at": "2026-07-10T10:12:40.486618", + "updated_at": "2026-07-10T10:12:40.486618", + "url": "/v1/software/dupdub" +} diff --git a/site/public/v1/software/duracloud/index.json b/site/public/v1/software/duracloud/index.json new file mode 100644 index 000000000000..664e26c5c590 --- /dev/null +++ b/site/public/v1/software/duracloud/index.json @@ -0,0 +1,23 @@ +{ + "id": 2511, + "slug": "duracloud", + "name": "DuraCloud", + "release_date": null, + "developers": [ + "DuraSpace" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Java" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5316103" + ], + "created_at": "2026-07-10T10:12:40.487722", + "updated_at": "2026-07-10T10:12:40.487722", + "url": "/v1/software/duracloud" +} diff --git a/site/public/v1/software/durchg-ngige-elektronische-fahrplaninformation/index.json b/site/public/v1/software/durchg-ngige-elektronische-fahrplaninformation/index.json new file mode 100644 index 000000000000..02fd7cae6e8c --- /dev/null +++ b/site/public/v1/software/durchg-ngige-elektronische-fahrplaninformation/index.json @@ -0,0 +1,19 @@ +{ + "id": 2512, + "slug": "durchg-ngige-elektronische-fahrplaninformation", + "name": "Durchgängige elektronische Fahrplaninformation", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1267026" + ], + "created_at": "2026-07-10T10:12:40.487722", + "updated_at": "2026-07-10T10:12:40.487722", + "url": "/v1/software/durchg-ngige-elektronische-fahrplaninformation" +} diff --git a/site/public/v1/software/dvb-dream/index.json b/site/public/v1/software/dvb-dream/index.json new file mode 100644 index 000000000000..4cfe889cc4ab --- /dev/null +++ b/site/public/v1/software/dvb-dream/index.json @@ -0,0 +1,19 @@ +{ + "id": 2513, + "slug": "dvb-dream", + "name": "DVB Dream", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q20708015" + ], + "created_at": "2026-07-10T10:12:40.488714", + "updated_at": "2026-07-10T10:12:40.488714", + "url": "/v1/software/dvb-dream" +} diff --git a/site/public/v1/software/dvbackup/index.json b/site/public/v1/software/dvbackup/index.json new file mode 100644 index 000000000000..602d2f758f31 --- /dev/null +++ b/site/public/v1/software/dvbackup/index.json @@ -0,0 +1,19 @@ +{ + "id": 2514, + "slug": "dvbackup", + "name": "dvbackup", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62848221" + ], + "created_at": "2026-07-10T10:12:40.488714", + "updated_at": "2026-07-10T10:12:40.488714", + "url": "/v1/software/dvbackup" +} diff --git a/site/public/v1/software/dvbsnoop/index.json b/site/public/v1/software/dvbsnoop/index.json new file mode 100644 index 000000000000..ecb0f890e749 --- /dev/null +++ b/site/public/v1/software/dvbsnoop/index.json @@ -0,0 +1,19 @@ +{ + "id": 2515, + "slug": "dvbsnoop", + "name": "dvbsnoop", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62848215" + ], + "created_at": "2026-07-10T10:12:40.489745", + "updated_at": "2026-07-10T10:12:40.489745", + "url": "/v1/software/dvbsnoop" +} diff --git a/site/public/v1/software/dvbviewer/index.json b/site/public/v1/software/dvbviewer/index.json new file mode 100644 index 000000000000..96c674f1a98d --- /dev/null +++ b/site/public/v1/software/dvbviewer/index.json @@ -0,0 +1,21 @@ +{ + "id": 2516, + "slug": "dvbviewer", + "name": "DVBViewer", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Delphi" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q685241" + ], + "created_at": "2026-07-10T10:12:40.489745", + "updated_at": "2026-07-10T10:12:40.489745", + "url": "/v1/software/dvbviewer" +} diff --git a/site/public/v1/software/dvd-identifier/index.json b/site/public/v1/software/dvd-identifier/index.json new file mode 100644 index 000000000000..71576ae3e058 --- /dev/null +++ b/site/public/v1/software/dvd-identifier/index.json @@ -0,0 +1,23 @@ +{ + "id": 2517, + "slug": "dvd-identifier", + "name": "DVD Identifier", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1826295" + ], + "created_at": "2026-07-10T10:12:40.489745", + "updated_at": "2026-07-10T10:12:40.489745", + "url": "/v1/software/dvd-identifier" +} diff --git a/site/public/v1/software/dvd-player-q3700591/index.json b/site/public/v1/software/dvd-player-q3700591/index.json new file mode 100644 index 000000000000..d669fd25e28e --- /dev/null +++ b/site/public/v1/software/dvd-player-q3700591/index.json @@ -0,0 +1,24 @@ +{ + "id": 2518, + "slug": "dvd-player-q3700591", + "name": "DVD Player", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [ + "Windows Whistler", + "Windows Neptune" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3700591" + ], + "created_at": "2026-07-10T10:12:40.490690", + "updated_at": "2026-07-10T10:12:40.490690", + "url": "/v1/software/dvd-player-q3700591" +} diff --git a/site/public/v1/software/dvd-player/index.json b/site/public/v1/software/dvd-player/index.json new file mode 100644 index 000000000000..2988e22a49ba --- /dev/null +++ b/site/public/v1/software/dvd-player/index.json @@ -0,0 +1,23 @@ +{ + "id": 2519, + "slug": "dvd-player", + "name": "DVD Player", + "release_date": null, + "developers": [ + "Apple Inc." + ], + "publishers": [], + "operating_systems": [ + "macOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q420557" + ], + "created_at": "2026-07-10T10:12:40.490690", + "updated_at": "2026-07-10T10:12:40.490690", + "url": "/v1/software/dvd-player" +} diff --git a/site/public/v1/software/dvd-profiler/index.json b/site/public/v1/software/dvd-profiler/index.json new file mode 100644 index 000000000000..c934699c0d99 --- /dev/null +++ b/site/public/v1/software/dvd-profiler/index.json @@ -0,0 +1,19 @@ +{ + "id": 2520, + "slug": "dvd-profiler", + "name": "DVD Profiler", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5206362" + ], + "created_at": "2026-07-10T10:12:40.490690", + "updated_at": "2026-07-10T10:12:40.490690", + "url": "/v1/software/dvd-profiler" +} diff --git a/site/public/v1/software/dvd-shrink/index.json b/site/public/v1/software/dvd-shrink/index.json new file mode 100644 index 000000000000..53732468d9cd --- /dev/null +++ b/site/public/v1/software/dvd-shrink/index.json @@ -0,0 +1,23 @@ +{ + "id": 2521, + "slug": "dvd-shrink", + "name": "DVD Shrink", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1156104" + ], + "created_at": "2026-07-10T10:12:40.490690", + "updated_at": "2026-07-10T10:12:40.490690", + "url": "/v1/software/dvd-shrink" +} diff --git a/site/public/v1/software/dvd-studio-pro/index.json b/site/public/v1/software/dvd-studio-pro/index.json new file mode 100644 index 000000000000..d3d7f83746a8 --- /dev/null +++ b/site/public/v1/software/dvd-studio-pro/index.json @@ -0,0 +1,21 @@ +{ + "id": 2522, + "slug": "dvd-studio-pro", + "name": "DVD Studio Pro", + "release_date": null, + "developers": [ + "Apple Inc." + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q787647" + ], + "created_at": "2026-07-10T10:12:40.491692", + "updated_at": "2026-07-10T10:12:40.491692", + "url": "/v1/software/dvd-studio-pro" +} diff --git a/site/public/v1/software/dvd-x-copy/index.json b/site/public/v1/software/dvd-x-copy/index.json new file mode 100644 index 000000000000..5a7db8c6d031 --- /dev/null +++ b/site/public/v1/software/dvd-x-copy/index.json @@ -0,0 +1,21 @@ +{ + "id": 2523, + "slug": "dvd-x-copy", + "name": "DVD X Copy", + "release_date": null, + "developers": [ + "321 Studios" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5206369" + ], + "created_at": "2026-07-10T10:12:40.491692", + "updated_at": "2026-07-10T10:12:40.491692", + "url": "/v1/software/dvd-x-copy" +} diff --git a/site/public/v1/software/dvd43/index.json b/site/public/v1/software/dvd43/index.json new file mode 100644 index 000000000000..88aab690262f --- /dev/null +++ b/site/public/v1/software/dvd43/index.json @@ -0,0 +1,21 @@ +{ + "id": 2524, + "slug": "dvd43", + "name": "DVD43", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5206353" + ], + "created_at": "2026-07-10T10:12:40.491692", + "updated_at": "2026-07-10T10:12:40.491692", + "url": "/v1/software/dvd43" +} diff --git a/site/public/v1/software/dvdfab/index.json b/site/public/v1/software/dvdfab/index.json new file mode 100644 index 000000000000..5b7a7699f091 --- /dev/null +++ b/site/public/v1/software/dvdfab/index.json @@ -0,0 +1,27 @@ +{ + "id": 2525, + "slug": "dvdfab", + "name": "DVDFab", + "release_date": null, + "developers": [ + "Fengtao Software Inc." + ], + "publishers": [], + "operating_systems": [ + "macOS", + "iOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [ + "multimedia software" + ], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1156085" + ], + "created_at": "2026-07-10T10:12:40.492681", + "updated_at": "2026-07-10T10:12:40.492681", + "url": "/v1/software/dvdfab" +} diff --git a/site/public/v1/software/dvdinfo/index.json b/site/public/v1/software/dvdinfo/index.json new file mode 100644 index 000000000000..2bb31c82adf4 --- /dev/null +++ b/site/public/v1/software/dvdinfo/index.json @@ -0,0 +1,23 @@ +{ + "id": 2526, + "slug": "dvdinfo", + "name": "DVDInfo", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [ + "Visual Basic" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q133819034" + ], + "created_at": "2026-07-10T10:12:40.492681", + "updated_at": "2026-07-10T10:12:40.492681", + "url": "/v1/software/dvdinfo" +} diff --git a/site/public/v1/software/dwarves/index.json b/site/public/v1/software/dwarves/index.json new file mode 100644 index 000000000000..1503c279c6de --- /dev/null +++ b/site/public/v1/software/dwarves/index.json @@ -0,0 +1,19 @@ +{ + "id": 2527, + "slug": "dwarves", + "name": "dwarves", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974816" + ], + "created_at": "2026-07-10T10:12:40.492681", + "updated_at": "2026-07-10T10:12:40.492681", + "url": "/v1/software/dwarves" +} diff --git a/site/public/v1/software/dxplain/index.json b/site/public/v1/software/dxplain/index.json new file mode 100644 index 000000000000..6dc889ccae01 --- /dev/null +++ b/site/public/v1/software/dxplain/index.json @@ -0,0 +1,21 @@ +{ + "id": 2528, + "slug": "dxplain", + "name": "DXplain", + "release_date": null, + "developers": [ + "Massachusetts General Hospital" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5206773" + ], + "created_at": "2026-07-10T10:12:40.492681", + "updated_at": "2026-07-10T10:12:40.492681", + "url": "/v1/software/dxplain" +} diff --git a/site/public/v1/software/dyalog-apl/index.json b/site/public/v1/software/dyalog-apl/index.json new file mode 100644 index 000000000000..032eef64d61c --- /dev/null +++ b/site/public/v1/software/dyalog-apl/index.json @@ -0,0 +1,23 @@ +{ + "id": 2529, + "slug": "dyalog-apl", + "name": "Dyalog APL", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "APL" + ], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106463105" + ], + "created_at": "2026-07-10T10:12:40.493689", + "updated_at": "2026-07-10T10:12:40.493689", + "url": "/v1/software/dyalog-apl" +} diff --git a/site/public/v1/software/dyas-humanities-thesaurus/index.json b/site/public/v1/software/dyas-humanities-thesaurus/index.json new file mode 100644 index 000000000000..9c3e92d08eda --- /dev/null +++ b/site/public/v1/software/dyas-humanities-thesaurus/index.json @@ -0,0 +1,19 @@ +{ + "id": 2530, + "slug": "dyas-humanities-thesaurus", + "name": "DYAS Humanities Thesaurus", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087798" + ], + "created_at": "2026-07-10T10:12:40.493689", + "updated_at": "2026-07-10T10:12:40.493689", + "url": "/v1/software/dyas-humanities-thesaurus" +} diff --git a/site/public/v1/software/dybuster/index.json b/site/public/v1/software/dybuster/index.json new file mode 100644 index 000000000000..c50d27de51b3 --- /dev/null +++ b/site/public/v1/software/dybuster/index.json @@ -0,0 +1,19 @@ +{ + "id": 2531, + "slug": "dybuster", + "name": "Dybuster", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1237343" + ], + "created_at": "2026-07-10T10:12:40.493689", + "updated_at": "2026-07-10T10:12:40.493689", + "url": "/v1/software/dybuster" +} diff --git a/site/public/v1/software/dymola/index.json b/site/public/v1/software/dymola/index.json new file mode 100644 index 000000000000..b243b11afe2f --- /dev/null +++ b/site/public/v1/software/dymola/index.json @@ -0,0 +1,21 @@ +{ + "id": 2532, + "slug": "dymola", + "name": "Dymola", + "release_date": null, + "developers": [ + "Dassault Systèmes" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3716878" + ], + "created_at": "2026-07-10T10:12:40.494765", + "updated_at": "2026-07-10T10:12:40.494765", + "url": "/v1/software/dymola" +} diff --git a/site/public/v1/software/dynalist/index.json b/site/public/v1/software/dynalist/index.json new file mode 100644 index 000000000000..5509778a298a --- /dev/null +++ b/site/public/v1/software/dynalist/index.json @@ -0,0 +1,21 @@ +{ + "id": 2533, + "slug": "dynalist", + "name": "Dynalist", + "release_date": null, + "developers": [ + "Dynalist Inc." + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q58844017" + ], + "created_at": "2026-07-10T10:12:40.494765", + "updated_at": "2026-07-10T10:12:40.494765", + "url": "/v1/software/dynalist" +} diff --git a/site/public/v1/software/dynamation/index.json b/site/public/v1/software/dynamation/index.json new file mode 100644 index 000000000000..9a4d67c6779a --- /dev/null +++ b/site/public/v1/software/dynamation/index.json @@ -0,0 +1,19 @@ +{ + "id": 2534, + "slug": "dynamation", + "name": "Dynamation", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5318893" + ], + "created_at": "2026-07-10T10:12:40.494765", + "updated_at": "2026-07-10T10:12:40.494765", + "url": "/v1/software/dynamation" +} diff --git a/site/public/v1/software/dynamic-c/index.json b/site/public/v1/software/dynamic-c/index.json new file mode 100644 index 000000000000..98c4c93fd359 --- /dev/null +++ b/site/public/v1/software/dynamic-c/index.json @@ -0,0 +1,19 @@ +{ + "id": 2535, + "slug": "dynamic-c", + "name": "Dynamic C", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3716884" + ], + "created_at": "2026-07-10T10:12:40.495757", + "updated_at": "2026-07-10T10:12:40.495757", + "url": "/v1/software/dynamic-c" +} diff --git a/site/public/v1/software/dynamic-collateralized-payment-system-process/index.json b/site/public/v1/software/dynamic-collateralized-payment-system-process/index.json new file mode 100644 index 000000000000..8d318e1022d4 --- /dev/null +++ b/site/public/v1/software/dynamic-collateralized-payment-system-process/index.json @@ -0,0 +1,19 @@ +{ + "id": 2536, + "slug": "dynamic-collateralized-payment-system-process", + "name": "Dynamic Collateralized Payment System Process", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134008803" + ], + "created_at": "2026-07-10T10:12:40.495757", + "updated_at": "2026-07-10T10:12:40.495757", + "url": "/v1/software/dynamic-collateralized-payment-system-process" +} diff --git a/site/public/v1/software/dynamic-language-runtime/index.json b/site/public/v1/software/dynamic-language-runtime/index.json new file mode 100644 index 000000000000..85eaeb94d716 --- /dev/null +++ b/site/public/v1/software/dynamic-language-runtime/index.json @@ -0,0 +1,23 @@ +{ + "id": 2537, + "slug": "dynamic-language-runtime", + "name": "Dynamic Language Runtime", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Apache License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3041988" + ], + "created_at": "2026-07-10T10:12:40.495757", + "updated_at": "2026-07-10T10:12:40.495757", + "url": "/v1/software/dynamic-language-runtime" +} diff --git a/site/public/v1/software/dynamic-leecher-protection/index.json b/site/public/v1/software/dynamic-leecher-protection/index.json new file mode 100644 index 000000000000..0eb7e1e3c153 --- /dev/null +++ b/site/public/v1/software/dynamic-leecher-protection/index.json @@ -0,0 +1,19 @@ +{ + "id": 2538, + "slug": "dynamic-leecher-protection", + "name": "Dynamic Leecher Protection", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17164390" + ], + "created_at": "2026-07-10T10:12:40.496750", + "updated_at": "2026-07-10T10:12:40.496750", + "url": "/v1/software/dynamic-leecher-protection" +} diff --git a/site/public/v1/software/dynamic-symbols/index.json b/site/public/v1/software/dynamic-symbols/index.json new file mode 100644 index 000000000000..adf50d7a332a --- /dev/null +++ b/site/public/v1/software/dynamic-symbols/index.json @@ -0,0 +1,23 @@ +{ + "id": 2539, + "slug": "dynamic-symbols", + "name": "Dynamic Symbols", + "release_date": null, + "developers": [ + "Febhouse" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [ + "architecture" + ], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138658074" + ], + "created_at": "2026-07-10T10:12:40.496750", + "updated_at": "2026-07-10T10:12:40.496750", + "url": "/v1/software/dynamic-symbols" +} diff --git a/site/public/v1/software/dynarmic/index.json b/site/public/v1/software/dynarmic/index.json new file mode 100644 index 000000000000..170fb10e7587 --- /dev/null +++ b/site/public/v1/software/dynarmic/index.json @@ -0,0 +1,23 @@ +{ + "id": 2540, + "slug": "dynarmic", + "name": "dynarmic", + "release_date": null, + "developers": [ + "merryhime" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Zero-clause BSD License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q119982945" + ], + "created_at": "2026-07-10T10:12:40.496750", + "updated_at": "2026-07-10T10:12:40.496750", + "url": "/v1/software/dynarmic" +} diff --git a/site/public/v1/software/dynatext-browser/index.json b/site/public/v1/software/dynatext-browser/index.json new file mode 100644 index 000000000000..fe4d83d3100d --- /dev/null +++ b/site/public/v1/software/dynatext-browser/index.json @@ -0,0 +1,27 @@ +{ + "id": 2541, + "slug": "dynatext-browser", + "name": "DynaText Browser", + "release_date": null, + "developers": [ + "Inso corporation" + ], + "publishers": [], + "operating_systems": [ + "Windows NT 3.51", + "HP-UX", + "IRIX", + "Windows 95", + "Solaris" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124454231" + ], + "created_at": "2026-07-10T10:12:40.496750", + "updated_at": "2026-07-10T10:12:40.496750", + "url": "/v1/software/dynatext-browser" +} diff --git a/site/public/v1/software/dynatrace-software-intelligence-plattform/index.json b/site/public/v1/software/dynatrace-software-intelligence-plattform/index.json new file mode 100644 index 000000000000..2f2f6a574f4d --- /dev/null +++ b/site/public/v1/software/dynatrace-software-intelligence-plattform/index.json @@ -0,0 +1,21 @@ +{ + "id": 2542, + "slug": "dynatrace-software-intelligence-plattform", + "name": "Dynatrace Software Intelligence Plattform", + "release_date": null, + "developers": [ + "Dynatrace" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122147734" + ], + "created_at": "2026-07-10T10:12:40.497776", + "updated_at": "2026-07-10T10:12:40.497776", + "url": "/v1/software/dynatrace-software-intelligence-plattform" +} diff --git a/site/public/v1/software/dynaweb/index.json b/site/public/v1/software/dynaweb/index.json new file mode 100644 index 000000000000..43bc7457536b --- /dev/null +++ b/site/public/v1/software/dynaweb/index.json @@ -0,0 +1,21 @@ +{ + "id": 2543, + "slug": "dynaweb", + "name": "DynaWeb", + "release_date": null, + "developers": [ + "Electronic Book Technologies" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124454432" + ], + "created_at": "2026-07-10T10:12:40.500288", + "updated_at": "2026-07-10T10:12:40.500288", + "url": "/v1/software/dynaweb" +} diff --git a/site/public/v1/software/dynverse/index.json b/site/public/v1/software/dynverse/index.json new file mode 100644 index 000000000000..78974e20f0cf --- /dev/null +++ b/site/public/v1/software/dynverse/index.json @@ -0,0 +1,21 @@ +{ + "id": 2544, + "slug": "dynverse", + "name": "dynverse", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "R" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112570085" + ], + "created_at": "2026-07-10T10:12:40.501286", + "updated_at": "2026-07-10T10:12:40.501286", + "url": "/v1/software/dynverse" +} diff --git a/site/public/v1/software/dzaima-apl/index.json b/site/public/v1/software/dzaima-apl/index.json new file mode 100644 index 000000000000..4f0d07d2fe60 --- /dev/null +++ b/site/public/v1/software/dzaima-apl/index.json @@ -0,0 +1,23 @@ +{ + "id": 2545, + "slug": "dzaima-apl", + "name": "dzaima APL", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Java" + ], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106542006" + ], + "created_at": "2026-07-10T10:12:40.502290", + "updated_at": "2026-07-10T10:12:40.502290", + "url": "/v1/software/dzaima-apl" +} diff --git a/site/public/v1/software/dzen/index.json b/site/public/v1/software/dzen/index.json new file mode 100644 index 000000000000..25e1295d9fea --- /dev/null +++ b/site/public/v1/software/dzen/index.json @@ -0,0 +1,23 @@ +{ + "id": 2546, + "slug": "dzen", + "name": "Dzen", + "release_date": null, + "developers": [ + "Yandex" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q29223522" + ], + "created_at": "2026-07-10T10:12:40.503376", + "updated_at": "2026-07-10T10:12:40.503376", + "url": "/v1/software/dzen" +} diff --git a/site/public/v1/software/e-aksharayan/index.json b/site/public/v1/software/e-aksharayan/index.json new file mode 100644 index 000000000000..e264ba0bcdd2 --- /dev/null +++ b/site/public/v1/software/e-aksharayan/index.json @@ -0,0 +1,21 @@ +{ + "id": 2547, + "slug": "e-aksharayan", + "name": "E-aksharayan", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q24883484" + ], + "created_at": "2026-07-10T10:12:40.504361", + "updated_at": "2026-07-10T10:12:40.504361", + "url": "/v1/software/e-aksharayan" +} diff --git a/site/public/v1/software/e-gree/index.json b/site/public/v1/software/e-gree/index.json new file mode 100644 index 000000000000..35c980d95b2f --- /dev/null +++ b/site/public/v1/software/e-gree/index.json @@ -0,0 +1,19 @@ +{ + "id": 2548, + "slug": "e-gree", + "name": "E-gree", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106514694" + ], + "created_at": "2026-07-10T10:12:40.506383", + "updated_at": "2026-07-10T10:12:40.506383", + "url": "/v1/software/e-gree" +} diff --git a/site/public/v1/software/e-mu-emulator-x/index.json b/site/public/v1/software/e-mu-emulator-x/index.json new file mode 100644 index 000000000000..4f6b55b578a8 --- /dev/null +++ b/site/public/v1/software/e-mu-emulator-x/index.json @@ -0,0 +1,19 @@ +{ + "id": 2549, + "slug": "e-mu-emulator-x", + "name": "E-mu Emulator X", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5321528" + ], + "created_at": "2026-07-10T10:12:40.507374", + "updated_at": "2026-07-10T10:12:40.507374", + "url": "/v1/software/e-mu-emulator-x" +} diff --git a/site/public/v1/software/e-on-vue/index.json b/site/public/v1/software/e-on-vue/index.json new file mode 100644 index 000000000000..21cdfbd45fb4 --- /dev/null +++ b/site/public/v1/software/e-on-vue/index.json @@ -0,0 +1,21 @@ +{ + "id": 2550, + "slug": "e-on-vue", + "name": "E-on Vue", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1116420" + ], + "created_at": "2026-07-10T10:12:40.508341", + "updated_at": "2026-07-10T10:12:40.508341", + "url": "/v1/software/e-on-vue" +} diff --git a/site/public/v1/software/e-parser/index.json b/site/public/v1/software/e-parser/index.json new file mode 100644 index 000000000000..381454dd688b --- /dev/null +++ b/site/public/v1/software/e-parser/index.json @@ -0,0 +1,19 @@ +{ + "id": 2551, + "slug": "e-parser", + "name": "E-Parser", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087801" + ], + "created_at": "2026-07-10T10:12:40.509881", + "updated_at": "2026-07-10T10:12:40.509881", + "url": "/v1/software/e-parser" +} diff --git a/site/public/v1/software/e-sword/index.json b/site/public/v1/software/e-sword/index.json new file mode 100644 index 000000000000..e794e034639b --- /dev/null +++ b/site/public/v1/software/e-sword/index.json @@ -0,0 +1,19 @@ +{ + "id": 2552, + "slug": "e-sword", + "name": "E-Sword", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q986639" + ], + "created_at": "2026-07-10T10:12:40.510976", + "updated_at": "2026-07-10T10:12:40.510976", + "url": "/v1/software/e-sword" +} diff --git a/site/public/v1/software/e-tools/index.json b/site/public/v1/software/e-tools/index.json new file mode 100644 index 000000000000..313cf9245284 --- /dev/null +++ b/site/public/v1/software/e-tools/index.json @@ -0,0 +1,19 @@ +{ + "id": 2553, + "slug": "e-tools", + "name": "e-Tools", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5321467" + ], + "created_at": "2026-07-10T10:12:40.511976", + "updated_at": "2026-07-10T10:12:40.511976", + "url": "/v1/software/e-tools" +} diff --git a/site/public/v1/software/e15/index.json b/site/public/v1/software/e15/index.json new file mode 100644 index 000000000000..fec22baf0c2b --- /dev/null +++ b/site/public/v1/software/e15/index.json @@ -0,0 +1,19 @@ +{ + "id": 2554, + "slug": "e15", + "name": "E15", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5322344" + ], + "created_at": "2026-07-10T10:12:40.512963", + "updated_at": "2026-07-10T10:12:40.512963", + "url": "/v1/software/e15" +} diff --git a/site/public/v1/software/e3-series/index.json b/site/public/v1/software/e3-series/index.json new file mode 100644 index 000000000000..829353fa2506 --- /dev/null +++ b/site/public/v1/software/e3-series/index.json @@ -0,0 +1,23 @@ +{ + "id": 2555, + "slug": "e3-series", + "name": "E3.Series", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4037762" + ], + "created_at": "2026-07-10T10:12:40.512963", + "updated_at": "2026-07-10T10:12:40.512963", + "url": "/v1/software/e3-series" +} diff --git a/site/public/v1/software/e3/index.json b/site/public/v1/software/e3/index.json new file mode 100644 index 000000000000..4238e2d6a3c4 --- /dev/null +++ b/site/public/v1/software/e3/index.json @@ -0,0 +1,19 @@ +{ + "id": 2556, + "slug": "e3", + "name": "e3", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62849248" + ], + "created_at": "2026-07-10T10:12:40.514892", + "updated_at": "2026-07-10T10:12:40.514892", + "url": "/v1/software/e3" +} diff --git a/site/public/v1/software/ea-autolog/index.json b/site/public/v1/software/ea-autolog/index.json new file mode 100644 index 000000000000..553e01b0e6a8 --- /dev/null +++ b/site/public/v1/software/ea-autolog/index.json @@ -0,0 +1,21 @@ +{ + "id": 2557, + "slug": "ea-autolog", + "name": "EA Autolog", + "release_date": null, + "developers": [ + "Criterion Games" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5322545" + ], + "created_at": "2026-07-10T10:12:40.514892", + "updated_at": "2026-07-10T10:12:40.514892", + "url": "/v1/software/ea-autolog" +} diff --git a/site/public/v1/software/ea-download-manager/index.json b/site/public/v1/software/ea-download-manager/index.json new file mode 100644 index 000000000000..4050ff0d06b6 --- /dev/null +++ b/site/public/v1/software/ea-download-manager/index.json @@ -0,0 +1,23 @@ +{ + "id": 2558, + "slug": "ea-download-manager", + "name": "EA Download Manager", + "release_date": "2007-09-01", + "developers": [ + "Electronic Arts" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121327235" + ], + "created_at": "2026-07-10T10:12:40.515888", + "updated_at": "2026-07-10T10:12:40.515888", + "url": "/v1/software/ea-download-manager" +} diff --git a/site/public/v1/software/ea-downloader/index.json b/site/public/v1/software/ea-downloader/index.json new file mode 100644 index 000000000000..c82e92238a93 --- /dev/null +++ b/site/public/v1/software/ea-downloader/index.json @@ -0,0 +1,23 @@ +{ + "id": 2559, + "slug": "ea-downloader", + "name": "EA Downloader", + "release_date": "2005-01-01", + "developers": [ + "Electronic Arts" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121327310" + ], + "created_at": "2026-07-10T10:12:40.515888", + "updated_at": "2026-07-10T10:12:40.515888", + "url": "/v1/software/ea-downloader" +} diff --git a/site/public/v1/software/eaasi/index.json b/site/public/v1/software/eaasi/index.json new file mode 100644 index 000000000000..b94ee4776673 --- /dev/null +++ b/site/public/v1/software/eaasi/index.json @@ -0,0 +1,19 @@ +{ + "id": 2560, + "slug": "eaasi", + "name": "EaaSI", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109380161" + ], + "created_at": "2026-07-10T10:12:40.516892", + "updated_at": "2026-07-10T10:12:40.516892", + "url": "/v1/software/eaasi" +} diff --git a/site/public/v1/software/eac3to/index.json b/site/public/v1/software/eac3to/index.json new file mode 100644 index 000000000000..91cf21120237 --- /dev/null +++ b/site/public/v1/software/eac3to/index.json @@ -0,0 +1,21 @@ +{ + "id": 2561, + "slug": "eac3to", + "name": "Eac3to", + "release_date": null, + "developers": [ + "Mathias Rauen" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q19368614" + ], + "created_at": "2026-07-10T10:12:40.517892", + "updated_at": "2026-07-10T10:12:40.517892", + "url": "/v1/software/eac3to" +} diff --git a/site/public/v1/software/eagle/index.json b/site/public/v1/software/eagle/index.json new file mode 100644 index 000000000000..4ae89f7913eb --- /dev/null +++ b/site/public/v1/software/eagle/index.json @@ -0,0 +1,19 @@ +{ + "id": 2562, + "slug": "eagle", + "name": "Eagle", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5324997" + ], + "created_at": "2026-07-10T10:12:40.517892", + "updated_at": "2026-07-10T10:12:40.517892", + "url": "/v1/software/eagle" +} diff --git a/site/public/v1/software/eaglecoin/index.json b/site/public/v1/software/eaglecoin/index.json new file mode 100644 index 000000000000..f5ad41483fbc --- /dev/null +++ b/site/public/v1/software/eaglecoin/index.json @@ -0,0 +1,19 @@ +{ + "id": 2563, + "slug": "eaglecoin", + "name": "EagleCoin", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q20639637" + ], + "created_at": "2026-07-10T10:12:40.518891", + "updated_at": "2026-07-10T10:12:40.518891", + "url": "/v1/software/eaglecoin" +} diff --git a/site/public/v1/software/eagleget/index.json b/site/public/v1/software/eagleget/index.json new file mode 100644 index 000000000000..7ee9d8126df1 --- /dev/null +++ b/site/public/v1/software/eagleget/index.json @@ -0,0 +1,19 @@ +{ + "id": 2564, + "slug": "eagleget", + "name": "EagleGet", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q15927760" + ], + "created_at": "2026-07-10T10:12:40.518891", + "updated_at": "2026-07-10T10:12:40.518891", + "url": "/v1/software/eagleget" +} diff --git a/site/public/v1/software/eaglelytics/index.json b/site/public/v1/software/eaglelytics/index.json new file mode 100644 index 000000000000..74cb7970f80e --- /dev/null +++ b/site/public/v1/software/eaglelytics/index.json @@ -0,0 +1,25 @@ +{ + "id": 2565, + "slug": "eaglelytics", + "name": "EagleLytics", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "web application" + ], + "programming_languages": [ + "Python" + ], + "licenses": [], + "genres": [ + "inventory management software" + ], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139618882" + ], + "created_at": "2026-07-10T10:12:40.519960", + "updated_at": "2026-07-10T10:12:40.519960", + "url": "/v1/software/eaglelytics" +} diff --git a/site/public/v1/software/earlyforge/index.json b/site/public/v1/software/earlyforge/index.json new file mode 100644 index 000000000000..65ea9173c5ca --- /dev/null +++ b/site/public/v1/software/earlyforge/index.json @@ -0,0 +1,21 @@ +{ + "id": 2566, + "slug": "earlyforge", + "name": "EarlyForge", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [ + "news" + ], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140465799" + ], + "created_at": "2026-07-10T10:12:40.519960", + "updated_at": "2026-07-10T10:12:40.519960", + "url": "/v1/software/earlyforge" +} diff --git a/site/public/v1/software/earmaster/index.json b/site/public/v1/software/earmaster/index.json new file mode 100644 index 000000000000..395d852aaba2 --- /dev/null +++ b/site/public/v1/software/earmaster/index.json @@ -0,0 +1,19 @@ +{ + "id": 2567, + "slug": "earmaster", + "name": "EarMaster", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2465130" + ], + "created_at": "2026-07-10T10:12:40.520968", + "updated_at": "2026-07-10T10:12:40.520968", + "url": "/v1/software/earmaster" +} diff --git a/site/public/v1/software/earth-simulator/index.json b/site/public/v1/software/earth-simulator/index.json new file mode 100644 index 000000000000..aa8d3e56d46d --- /dev/null +++ b/site/public/v1/software/earth-simulator/index.json @@ -0,0 +1,24 @@ +{ + "id": 2568, + "slug": "earth-simulator", + "name": "Earth Simulator", + "release_date": null, + "developers": [ + "Japan Aerospace Exploration Agency", + "NEC" + ], + "publishers": [], + "operating_systems": [ + "SUPER-UX" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1277662" + ], + "created_at": "2026-07-10T10:12:40.520968", + "updated_at": "2026-07-10T10:12:40.520968", + "url": "/v1/software/earth-simulator" +} diff --git a/site/public/v1/software/earth-system-grid/index.json b/site/public/v1/software/earth-system-grid/index.json new file mode 100644 index 000000000000..e1eca1929827 --- /dev/null +++ b/site/public/v1/software/earth-system-grid/index.json @@ -0,0 +1,19 @@ +{ + "id": 2569, + "slug": "earth-system-grid", + "name": "Earth System Grid", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5327134" + ], + "created_at": "2026-07-10T10:12:40.520968", + "updated_at": "2026-07-10T10:12:40.520968", + "url": "/v1/software/earth-system-grid" +} diff --git a/site/public/v1/software/earthbrowser/index.json b/site/public/v1/software/earthbrowser/index.json new file mode 100644 index 000000000000..4b0d77c78c57 --- /dev/null +++ b/site/public/v1/software/earthbrowser/index.json @@ -0,0 +1,19 @@ +{ + "id": 2570, + "slug": "earthbrowser", + "name": "EarthBrowser", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5327019" + ], + "created_at": "2026-07-10T10:12:40.521954", + "updated_at": "2026-07-10T10:12:40.521954", + "url": "/v1/software/earthbrowser" +} diff --git a/site/public/v1/software/earthquake-early-warning/index.json b/site/public/v1/software/earthquake-early-warning/index.json new file mode 100644 index 000000000000..9e8d3c4948eb --- /dev/null +++ b/site/public/v1/software/earthquake-early-warning/index.json @@ -0,0 +1,19 @@ +{ + "id": 2571, + "slug": "earthquake-early-warning", + "name": "Earthquake Early Warning", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1281628" + ], + "created_at": "2026-07-10T10:12:40.521954", + "updated_at": "2026-07-10T10:12:40.521954", + "url": "/v1/software/earthquake-early-warning" +} diff --git a/site/public/v1/software/earthstation-5/index.json b/site/public/v1/software/earthstation-5/index.json new file mode 100644 index 000000000000..cb3ae295160e --- /dev/null +++ b/site/public/v1/software/earthstation-5/index.json @@ -0,0 +1,19 @@ +{ + "id": 2572, + "slug": "earthstation-5", + "name": "EarthStation 5", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q49665" + ], + "created_at": "2026-07-10T10:12:40.522963", + "updated_at": "2026-07-10T10:12:40.522963", + "url": "/v1/software/earthstation-5" +} diff --git a/site/public/v1/software/ease-focus/index.json b/site/public/v1/software/ease-focus/index.json new file mode 100644 index 000000000000..303e6f07e581 --- /dev/null +++ b/site/public/v1/software/ease-focus/index.json @@ -0,0 +1,19 @@ +{ + "id": 2573, + "slug": "ease-focus", + "name": "EASE Focus", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q29374310" + ], + "created_at": "2026-07-10T10:12:40.522963", + "updated_at": "2026-07-10T10:12:40.522963", + "url": "/v1/software/ease-focus" +} diff --git a/site/public/v1/software/easeus-data-recovery-wizard/index.json b/site/public/v1/software/easeus-data-recovery-wizard/index.json new file mode 100644 index 000000000000..a90fd1efe60a --- /dev/null +++ b/site/public/v1/software/easeus-data-recovery-wizard/index.json @@ -0,0 +1,25 @@ +{ + "id": 2574, + "slug": "easeus-data-recovery-wizard", + "name": "EaseUS Data Recovery Wizard", + "release_date": null, + "developers": [ + "EaseUS" + ], + "publishers": [], + "operating_systems": [ + "iOS", + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5227205" + ], + "created_at": "2026-07-10T10:12:40.522963", + "updated_at": "2026-07-10T10:12:40.522963", + "url": "/v1/software/easeus-data-recovery-wizard" +} diff --git a/site/public/v1/software/easeus-partition-master/index.json b/site/public/v1/software/easeus-partition-master/index.json new file mode 100644 index 000000000000..79375bb888e1 --- /dev/null +++ b/site/public/v1/software/easeus-partition-master/index.json @@ -0,0 +1,23 @@ +{ + "id": 2575, + "slug": "easeus-partition-master", + "name": "EaseUS Partition Master", + "release_date": null, + "developers": [ + "EaseUS" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11197442" + ], + "created_at": "2026-07-10T10:12:40.522963", + "updated_at": "2026-07-10T10:12:40.522963", + "url": "/v1/software/easeus-partition-master" +} diff --git a/site/public/v1/software/easy-projects/index.json b/site/public/v1/software/easy-projects/index.json new file mode 100644 index 000000000000..81e17990a325 --- /dev/null +++ b/site/public/v1/software/easy-projects/index.json @@ -0,0 +1,19 @@ +{ + "id": 2576, + "slug": "easy-projects", + "name": "Easy Projects", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4037886" + ], + "created_at": "2026-07-10T10:12:40.523952", + "updated_at": "2026-07-10T10:12:40.523952", + "url": "/v1/software/easy-projects" +} diff --git a/site/public/v1/software/easy-rsa/index.json b/site/public/v1/software/easy-rsa/index.json new file mode 100644 index 000000000000..ea0d955a3409 --- /dev/null +++ b/site/public/v1/software/easy-rsa/index.json @@ -0,0 +1,19 @@ +{ + "id": 2577, + "slug": "easy-rsa", + "name": "easy-rsa", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62848476" + ], + "created_at": "2026-07-10T10:12:40.523952", + "updated_at": "2026-07-10T10:12:40.523952", + "url": "/v1/software/easy-rsa" +} diff --git a/site/public/v1/software/easy-transcript/index.json b/site/public/v1/software/easy-transcript/index.json new file mode 100644 index 000000000000..0d058369c63a --- /dev/null +++ b/site/public/v1/software/easy-transcript/index.json @@ -0,0 +1,26 @@ +{ + "id": 2578, + "slug": "easy-transcript", + "name": "Easy Transcript", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [ + "PHP" + ], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106465177" + ], + "created_at": "2026-07-10T10:12:40.524943", + "updated_at": "2026-07-10T10:12:40.524943", + "url": "/v1/software/easy-transcript" +} diff --git a/site/public/v1/software/easy2sync-for-files/index.json b/site/public/v1/software/easy2sync-for-files/index.json new file mode 100644 index 000000000000..f4cd6e6ef6e8 --- /dev/null +++ b/site/public/v1/software/easy2sync-for-files/index.json @@ -0,0 +1,19 @@ +{ + "id": 2579, + "slug": "easy2sync-for-files", + "name": "Easy2Sync for Files", + "release_date": "2002-07-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5331059" + ], + "created_at": "2026-07-10T10:12:40.524943", + "updated_at": "2026-07-10T10:12:40.524943", + "url": "/v1/software/easy2sync-for-files" +} diff --git a/site/public/v1/software/easy8/index.json b/site/public/v1/software/easy8/index.json new file mode 100644 index 000000000000..2ea50fe069cf --- /dev/null +++ b/site/public/v1/software/easy8/index.json @@ -0,0 +1,19 @@ +{ + "id": 2580, + "slug": "easy8", + "name": "Easy8", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123879836" + ], + "created_at": "2026-07-10T10:12:40.524943", + "updated_at": "2026-07-10T10:12:40.524943", + "url": "/v1/software/easy8" +} diff --git a/site/public/v1/software/easybase/index.json b/site/public/v1/software/easybase/index.json new file mode 100644 index 000000000000..4af4bf019159 --- /dev/null +++ b/site/public/v1/software/easybase/index.json @@ -0,0 +1,21 @@ +{ + "id": 2581, + "slug": "easybase", + "name": "EasyBase", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Atari TOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q95491295" + ], + "created_at": "2026-07-10T10:12:40.524943", + "updated_at": "2026-07-10T10:12:40.524943", + "url": "/v1/software/easybase" +} diff --git a/site/public/v1/software/easybcd/index.json b/site/public/v1/software/easybcd/index.json new file mode 100644 index 000000000000..65e37f79a1dc --- /dev/null +++ b/site/public/v1/software/easybcd/index.json @@ -0,0 +1,21 @@ +{ + "id": 2582, + "slug": "easybcd", + "name": "EasyBCD", + "release_date": "2004-07-04", + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1278326" + ], + "created_at": "2026-07-10T10:12:40.525970", + "updated_at": "2026-07-10T10:12:40.525970", + "url": "/v1/software/easybcd" +} diff --git a/site/public/v1/software/easycad/index.json b/site/public/v1/software/easycad/index.json new file mode 100644 index 000000000000..5e8bb48fc78a --- /dev/null +++ b/site/public/v1/software/easycad/index.json @@ -0,0 +1,21 @@ +{ + "id": 2583, + "slug": "easycad", + "name": "EasyCAD", + "release_date": null, + "developers": [ + "Evolution Computing" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108722295" + ], + "created_at": "2026-07-10T10:12:40.525970", + "updated_at": "2026-07-10T10:12:40.525970", + "url": "/v1/software/easycad" +} diff --git a/site/public/v1/software/easycleaner/index.json b/site/public/v1/software/easycleaner/index.json new file mode 100644 index 000000000000..59cd180eefe5 --- /dev/null +++ b/site/public/v1/software/easycleaner/index.json @@ -0,0 +1,21 @@ +{ + "id": 2584, + "slug": "easycleaner", + "name": "EasyCleaner", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113063796" + ], + "created_at": "2026-07-10T10:12:40.526949", + "updated_at": "2026-07-10T10:12:40.526949", + "url": "/v1/software/easycleaner" +} diff --git a/site/public/v1/software/easycode/index.json b/site/public/v1/software/easycode/index.json new file mode 100644 index 000000000000..ce710c0ac7ce --- /dev/null +++ b/site/public/v1/software/easycode/index.json @@ -0,0 +1,23 @@ +{ + "id": 2585, + "slug": "easycode", + "name": "EasyCODE", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1278310" + ], + "created_at": "2026-07-10T10:12:40.526949", + "updated_at": "2026-07-10T10:12:40.526949", + "url": "/v1/software/easycode" +} diff --git a/site/public/v1/software/easydb/index.json b/site/public/v1/software/easydb/index.json new file mode 100644 index 000000000000..bea5687dda7f --- /dev/null +++ b/site/public/v1/software/easydb/index.json @@ -0,0 +1,19 @@ +{ + "id": 2586, + "slug": "easydb", + "name": "easydb", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1278375" + ], + "created_at": "2026-07-10T10:12:40.526949", + "updated_at": "2026-07-10T10:12:40.526949", + "url": "/v1/software/easydb" +} diff --git a/site/public/v1/software/easydriver/index.json b/site/public/v1/software/easydriver/index.json new file mode 100644 index 000000000000..6ba9fc637665 --- /dev/null +++ b/site/public/v1/software/easydriver/index.json @@ -0,0 +1,19 @@ +{ + "id": 2587, + "slug": "easydriver", + "name": "EasyDriver", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138495561" + ], + "created_at": "2026-07-10T10:12:40.526949", + "updated_at": "2026-07-10T10:12:40.526949", + "url": "/v1/software/easydriver" +} diff --git a/site/public/v1/software/easyeda/index.json b/site/public/v1/software/easyeda/index.json new file mode 100644 index 000000000000..161ea46a3f67 --- /dev/null +++ b/site/public/v1/software/easyeda/index.json @@ -0,0 +1,21 @@ +{ + "id": 2588, + "slug": "easyeda", + "name": "EasyEDA", + "release_date": "2013-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "commercial software" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25304421" + ], + "created_at": "2026-07-10T10:12:40.528003", + "updated_at": "2026-07-10T10:12:40.528003", + "url": "/v1/software/easyeda" +} diff --git a/site/public/v1/software/easyhdr/index.json b/site/public/v1/software/easyhdr/index.json new file mode 100644 index 000000000000..f3e2b963bd4d --- /dev/null +++ b/site/public/v1/software/easyhdr/index.json @@ -0,0 +1,19 @@ +{ + "id": 2589, + "slug": "easyhdr", + "name": "EasyHDR", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1278331" + ], + "created_at": "2026-07-10T10:12:40.528003", + "updated_at": "2026-07-10T10:12:40.528003", + "url": "/v1/software/easyhdr" +} diff --git a/site/public/v1/software/easylist/index.json b/site/public/v1/software/easylist/index.json new file mode 100644 index 000000000000..8d5af8aab959 --- /dev/null +++ b/site/public/v1/software/easylist/index.json @@ -0,0 +1,21 @@ +{ + "id": 2590, + "slug": "easylist", + "name": "EasyList", + "release_date": "2005-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Creative Commons Attribution-ShareAlike 3.0 Unported" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q24873696" + ], + "created_at": "2026-07-10T10:12:40.528003", + "updated_at": "2026-07-10T10:12:40.528003", + "url": "/v1/software/easylist" +} diff --git a/site/public/v1/software/easymp3gain/index.json b/site/public/v1/software/easymp3gain/index.json new file mode 100644 index 000000000000..7c4dd8b87d00 --- /dev/null +++ b/site/public/v1/software/easymp3gain/index.json @@ -0,0 +1,19 @@ +{ + "id": 2591, + "slug": "easymp3gain", + "name": "EasyMP3Gain", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4037883" + ], + "created_at": "2026-07-10T10:12:40.529892", + "updated_at": "2026-07-10T10:12:40.529892", + "url": "/v1/software/easymp3gain" +} diff --git a/site/public/v1/software/easyoffice/index.json b/site/public/v1/software/easyoffice/index.json new file mode 100644 index 000000000000..d125ab3ef741 --- /dev/null +++ b/site/public/v1/software/easyoffice/index.json @@ -0,0 +1,19 @@ +{ + "id": 2592, + "slug": "easyoffice", + "name": "EasyOffice", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5331071" + ], + "created_at": "2026-07-10T10:12:40.530889", + "updated_at": "2026-07-10T10:12:40.530889", + "url": "/v1/software/easyoffice" +} diff --git a/site/public/v1/software/easyrisk-manager/index.json b/site/public/v1/software/easyrisk-manager/index.json new file mode 100644 index 000000000000..32e75afc2dd8 --- /dev/null +++ b/site/public/v1/software/easyrisk-manager/index.json @@ -0,0 +1,23 @@ +{ + "id": 2593, + "slug": "easyrisk-manager", + "name": "EasyRisk Manager", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [ + "risk management" + ], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5331075" + ], + "created_at": "2026-07-10T10:12:40.530889", + "updated_at": "2026-07-10T10:12:40.530889", + "url": "/v1/software/easyrisk-manager" +} diff --git a/site/public/v1/software/easytoon/index.json b/site/public/v1/software/easytoon/index.json new file mode 100644 index 000000000000..55374712ca4e --- /dev/null +++ b/site/public/v1/software/easytoon/index.json @@ -0,0 +1,19 @@ +{ + "id": 2594, + "slug": "easytoon", + "name": "EasyToon", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10269906" + ], + "created_at": "2026-07-10T10:12:40.531888", + "updated_at": "2026-07-10T10:12:40.531888", + "url": "/v1/software/easytoon" +} diff --git a/site/public/v1/software/easytopromo/index.json b/site/public/v1/software/easytopromo/index.json new file mode 100644 index 000000000000..7d7551218793 --- /dev/null +++ b/site/public/v1/software/easytopromo/index.json @@ -0,0 +1,19 @@ +{ + "id": 2595, + "slug": "easytopromo", + "name": "EasytoPromo", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138758453" + ], + "created_at": "2026-07-10T10:12:40.531888", + "updated_at": "2026-07-10T10:12:40.531888", + "url": "/v1/software/easytopromo" +} diff --git a/site/public/v1/software/easytracker/index.json b/site/public/v1/software/easytracker/index.json new file mode 100644 index 000000000000..46dc2e2bc1cb --- /dev/null +++ b/site/public/v1/software/easytracker/index.json @@ -0,0 +1,19 @@ +{ + "id": 2596, + "slug": "easytracker", + "name": "EasyTracker", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5331077" + ], + "created_at": "2026-07-10T10:12:40.532891", + "updated_at": "2026-07-10T10:12:40.532891", + "url": "/v1/software/easytracker" +} diff --git a/site/public/v1/software/easytranscript/index.json b/site/public/v1/software/easytranscript/index.json new file mode 100644 index 000000000000..4e769743e479 --- /dev/null +++ b/site/public/v1/software/easytranscript/index.json @@ -0,0 +1,26 @@ +{ + "id": 2597, + "slug": "easytranscript", + "name": "easytranscript", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [ + "Java" + ], + "licenses": [ + "GNU General Public License, version 3.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q66659624" + ], + "created_at": "2026-07-10T10:12:40.533960", + "updated_at": "2026-07-10T10:12:40.533960", + "url": "/v1/software/easytranscript" +} diff --git a/site/public/v1/software/eathena/index.json b/site/public/v1/software/eathena/index.json new file mode 100644 index 000000000000..aba69bcbeab9 --- /dev/null +++ b/site/public/v1/software/eathena/index.json @@ -0,0 +1,19 @@ +{ + "id": 2598, + "slug": "eathena", + "name": "EAthena", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1941308" + ], + "created_at": "2026-07-10T10:12:40.533960", + "updated_at": "2026-07-10T10:12:40.533960", + "url": "/v1/software/eathena" +} diff --git a/site/public/v1/software/eavl/index.json b/site/public/v1/software/eavl/index.json new file mode 100644 index 000000000000..9715056040a3 --- /dev/null +++ b/site/public/v1/software/eavl/index.json @@ -0,0 +1,19 @@ +{ + "id": 2599, + "slug": "eavl", + "name": "EAVL", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117571933" + ], + "created_at": "2026-07-10T10:12:40.533960", + "updated_at": "2026-07-10T10:12:40.533960", + "url": "/v1/software/eavl" +} diff --git a/site/public/v1/software/eazydraw/index.json b/site/public/v1/software/eazydraw/index.json new file mode 100644 index 000000000000..6069367a60b7 --- /dev/null +++ b/site/public/v1/software/eazydraw/index.json @@ -0,0 +1,19 @@ +{ + "id": 2600, + "slug": "eazydraw", + "name": "Eazydraw", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5331477" + ], + "created_at": "2026-07-10T10:12:40.534972", + "updated_at": "2026-07-10T10:12:40.534972", + "url": "/v1/software/eazydraw" +} diff --git a/site/public/v1/software/ebean/index.json b/site/public/v1/software/ebean/index.json new file mode 100644 index 000000000000..dd8f3f30b7be --- /dev/null +++ b/site/public/v1/software/ebean/index.json @@ -0,0 +1,25 @@ +{ + "id": 2601, + "slug": "ebean", + "name": "Ebean", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "cross-platform" + ], + "programming_languages": [ + "Java" + ], + "licenses": [ + "Apache Software License 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5331584" + ], + "created_at": "2026-07-10T10:12:40.534972", + "updated_at": "2026-07-10T10:12:40.534972", + "url": "/v1/software/ebean" +} diff --git a/site/public/v1/software/eboard/index.json b/site/public/v1/software/eboard/index.json new file mode 100644 index 000000000000..8c0bb0f7f9a0 --- /dev/null +++ b/site/public/v1/software/eboard/index.json @@ -0,0 +1,19 @@ +{ + "id": 2602, + "slug": "eboard", + "name": "eboard", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62848490" + ], + "created_at": "2026-07-10T10:12:40.534972", + "updated_at": "2026-07-10T10:12:40.534972", + "url": "/v1/software/eboard" +} diff --git a/site/public/v1/software/ebsilon-professional/index.json b/site/public/v1/software/ebsilon-professional/index.json new file mode 100644 index 000000000000..877ad2a152ab --- /dev/null +++ b/site/public/v1/software/ebsilon-professional/index.json @@ -0,0 +1,19 @@ +{ + "id": 2603, + "slug": "ebsilon-professional", + "name": "EBSILON Professional", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16064019" + ], + "created_at": "2026-07-10T10:12:40.534972", + "updated_at": "2026-07-10T10:12:40.534972", + "url": "/v1/software/ebsilon-professional" +} diff --git a/site/public/v1/software/ec-cube/index.json b/site/public/v1/software/ec-cube/index.json new file mode 100644 index 000000000000..8a62283b470f --- /dev/null +++ b/site/public/v1/software/ec-cube/index.json @@ -0,0 +1,19 @@ +{ + "id": 2604, + "slug": "ec-cube", + "name": "EC-CUBE", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11197472" + ], + "created_at": "2026-07-10T10:12:40.535974", + "updated_at": "2026-07-10T10:12:40.535974", + "url": "/v1/software/ec-cube" +} diff --git a/site/public/v1/software/ec-orange/index.json b/site/public/v1/software/ec-orange/index.json new file mode 100644 index 000000000000..755084394efc --- /dev/null +++ b/site/public/v1/software/ec-orange/index.json @@ -0,0 +1,19 @@ +{ + "id": 2605, + "slug": "ec-orange", + "name": "EC Orange", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11197500" + ], + "created_at": "2026-07-10T10:12:40.535974", + "updated_at": "2026-07-10T10:12:40.535974", + "url": "/v1/software/ec-orange" +} diff --git a/site/public/v1/software/ecadstar/index.json b/site/public/v1/software/ecadstar/index.json new file mode 100644 index 000000000000..6f132f3ff873 --- /dev/null +++ b/site/public/v1/software/ecadstar/index.json @@ -0,0 +1,23 @@ +{ + "id": 2606, + "slug": "ecadstar", + "name": "eCADSTAR", + "release_date": null, + "developers": [ + "Zuken" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q114776615" + ], + "created_at": "2026-07-10T10:12:40.535974", + "updated_at": "2026-07-10T10:12:40.535974", + "url": "/v1/software/ecadstar" +} diff --git a/site/public/v1/software/eccky/index.json b/site/public/v1/software/eccky/index.json new file mode 100644 index 000000000000..4c9aac358ec1 --- /dev/null +++ b/site/public/v1/software/eccky/index.json @@ -0,0 +1,19 @@ +{ + "id": 2607, + "slug": "eccky", + "name": "Eccky", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5332189" + ], + "created_at": "2026-07-10T10:12:40.535974", + "updated_at": "2026-07-10T10:12:40.535974", + "url": "/v1/software/eccky" +} diff --git a/site/public/v1/software/ecco-pro/index.json b/site/public/v1/software/ecco-pro/index.json new file mode 100644 index 000000000000..832f79e3454b --- /dev/null +++ b/site/public/v1/software/ecco-pro/index.json @@ -0,0 +1,21 @@ +{ + "id": 2608, + "slug": "ecco-pro", + "name": "Ecco Pro", + "release_date": null, + "developers": [ + "NetManage" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5332297" + ], + "created_at": "2026-07-10T10:12:40.536948", + "updated_at": "2026-07-10T10:12:40.536948", + "url": "/v1/software/ecco-pro" +} diff --git a/site/public/v1/software/echo-lake/index.json b/site/public/v1/software/echo-lake/index.json new file mode 100644 index 000000000000..10b941466163 --- /dev/null +++ b/site/public/v1/software/echo-lake/index.json @@ -0,0 +1,19 @@ +{ + "id": 2609, + "slug": "echo-lake", + "name": "Echo Lake", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5332725" + ], + "created_at": "2026-07-10T10:12:40.536948", + "updated_at": "2026-07-10T10:12:40.536948", + "url": "/v1/software/echo-lake" +} diff --git a/site/public/v1/software/echodamp/index.json b/site/public/v1/software/echodamp/index.json new file mode 100644 index 000000000000..29b8e8fae5de --- /dev/null +++ b/site/public/v1/software/echodamp/index.json @@ -0,0 +1,19 @@ +{ + "id": 2610, + "slug": "echodamp", + "name": "ECHODamp", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084933" + ], + "created_at": "2026-07-10T10:12:40.536948", + "updated_at": "2026-07-10T10:12:40.536948", + "url": "/v1/software/echodamp" +} diff --git a/site/public/v1/software/echolink/index.json b/site/public/v1/software/echolink/index.json new file mode 100644 index 000000000000..157989c25f17 --- /dev/null +++ b/site/public/v1/software/echolink/index.json @@ -0,0 +1,19 @@ +{ + "id": 2611, + "slug": "echolink", + "name": "Echolink", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1202730" + ], + "created_at": "2026-07-10T10:12:40.536948", + "updated_at": "2026-07-10T10:12:40.537958", + "url": "/v1/software/echolink" +} diff --git a/site/public/v1/software/echoping/index.json b/site/public/v1/software/echoping/index.json new file mode 100644 index 000000000000..e816d03cc6bb --- /dev/null +++ b/site/public/v1/software/echoping/index.json @@ -0,0 +1,19 @@ +{ + "id": 2612, + "slug": "echoping", + "name": "echoping", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62848498" + ], + "created_at": "2026-07-10T10:12:40.537958", + "updated_at": "2026-07-10T10:12:40.537958", + "url": "/v1/software/echoping" +} diff --git a/site/public/v1/software/ecib/index.json b/site/public/v1/software/ecib/index.json new file mode 100644 index 000000000000..fe29d82bada7 --- /dev/null +++ b/site/public/v1/software/ecib/index.json @@ -0,0 +1,19 @@ +{ + "id": 2613, + "slug": "ecib", + "name": "ECIB", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5322679" + ], + "created_at": "2026-07-10T10:12:40.537958", + "updated_at": "2026-07-10T10:12:40.537958", + "url": "/v1/software/ecib" +} diff --git a/site/public/v1/software/eclair/index.json b/site/public/v1/software/eclair/index.json new file mode 100644 index 000000000000..fe52c8180468 --- /dev/null +++ b/site/public/v1/software/eclair/index.json @@ -0,0 +1,19 @@ +{ + "id": 2614, + "slug": "eclair", + "name": "ECLAIR", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5322687" + ], + "created_at": "2026-07-10T10:12:40.537958", + "updated_at": "2026-07-10T10:12:40.537958", + "url": "/v1/software/eclair" +} diff --git a/site/public/v1/software/eclipse-4diac/index.json b/site/public/v1/software/eclipse-4diac/index.json new file mode 100644 index 000000000000..560d19ca4550 --- /dev/null +++ b/site/public/v1/software/eclipse-4diac/index.json @@ -0,0 +1,19 @@ +{ + "id": 2615, + "slug": "eclipse-4diac", + "name": "Eclipse 4diac", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76166953" + ], + "created_at": "2026-07-10T10:12:40.538949", + "updated_at": "2026-07-10T10:12:40.538949", + "url": "/v1/software/eclipse-4diac" +} diff --git a/site/public/v1/software/eclipse-accessibility-tools-framework/index.json b/site/public/v1/software/eclipse-accessibility-tools-framework/index.json new file mode 100644 index 000000000000..d764648a64c0 --- /dev/null +++ b/site/public/v1/software/eclipse-accessibility-tools-framework/index.json @@ -0,0 +1,19 @@ +{ + "id": 2616, + "slug": "eclipse-accessibility-tools-framework", + "name": "Eclipse Accessibility Tools Framework", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76166973" + ], + "created_at": "2026-07-10T10:12:40.538949", + "updated_at": "2026-07-10T10:12:40.538949", + "url": "/v1/software/eclipse-accessibility-tools-framework" +} diff --git a/site/public/v1/software/eclipse-acute/index.json b/site/public/v1/software/eclipse-acute/index.json new file mode 100644 index 000000000000..7285c9dd991d --- /dev/null +++ b/site/public/v1/software/eclipse-acute/index.json @@ -0,0 +1,19 @@ +{ + "id": 2617, + "slug": "eclipse-acute", + "name": "Eclipse aCute", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76165264" + ], + "created_at": "2026-07-10T10:12:40.538949", + "updated_at": "2026-07-10T10:12:40.538949", + "url": "/v1/software/eclipse-acute" +} diff --git a/site/public/v1/software/eclipse-advanced-scripting-environment/index.json b/site/public/v1/software/eclipse-advanced-scripting-environment/index.json new file mode 100644 index 000000000000..8cd32a68c910 --- /dev/null +++ b/site/public/v1/software/eclipse-advanced-scripting-environment/index.json @@ -0,0 +1,19 @@ +{ + "id": 2618, + "slug": "eclipse-advanced-scripting-environment", + "name": "Eclipse Advanced Scripting Environment", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76178957" + ], + "created_at": "2026-07-10T10:12:40.538949", + "updated_at": "2026-07-10T10:12:40.538949", + "url": "/v1/software/eclipse-advanced-scripting-environment" +} diff --git a/site/public/v1/software/eclipse-advanced-visualization-project/index.json b/site/public/v1/software/eclipse-advanced-visualization-project/index.json new file mode 100644 index 000000000000..3384e7bdd4ac --- /dev/null +++ b/site/public/v1/software/eclipse-advanced-visualization-project/index.json @@ -0,0 +1,19 @@ +{ + "id": 2619, + "slug": "eclipse-advanced-visualization-project", + "name": "Eclipse Advanced Visualization Project", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72272881" + ], + "created_at": "2026-07-10T10:12:40.539992", + "updated_at": "2026-07-10T10:12:40.539992", + "url": "/v1/software/eclipse-advanced-visualization-project" +} diff --git a/site/public/v1/software/eclipse-agail/index.json b/site/public/v1/software/eclipse-agail/index.json new file mode 100644 index 000000000000..4b22ccd7c39b --- /dev/null +++ b/site/public/v1/software/eclipse-agail/index.json @@ -0,0 +1,19 @@ +{ + "id": 2620, + "slug": "eclipse-agail", + "name": "Eclipse Agail", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76178764" + ], + "created_at": "2026-07-10T10:12:40.539992", + "updated_at": "2026-07-10T10:12:40.539992", + "url": "/v1/software/eclipse-agail" +} diff --git a/site/public/v1/software/eclipse-agent-modeling-platform/index.json b/site/public/v1/software/eclipse-agent-modeling-platform/index.json new file mode 100644 index 000000000000..ab62ca8c55eb --- /dev/null +++ b/site/public/v1/software/eclipse-agent-modeling-platform/index.json @@ -0,0 +1,19 @@ +{ + "id": 2621, + "slug": "eclipse-agent-modeling-platform", + "name": "Eclipse Agent Modeling Platform", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76166988" + ], + "created_at": "2026-07-10T10:12:40.539992", + "updated_at": "2026-07-10T10:12:40.539992", + "url": "/v1/software/eclipse-agent-modeling-platform" +} diff --git a/site/public/v1/software/eclipse-ajax-tools-framework-atf/index.json b/site/public/v1/software/eclipse-ajax-tools-framework-atf/index.json new file mode 100644 index 000000000000..9f2218420110 --- /dev/null +++ b/site/public/v1/software/eclipse-ajax-tools-framework-atf/index.json @@ -0,0 +1,19 @@ +{ + "id": 2622, + "slug": "eclipse-ajax-tools-framework-atf", + "name": "Eclipse Ajax Tools Framework (ATF)", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72273719" + ], + "created_at": "2026-07-10T10:12:40.539992", + "updated_at": "2026-07-10T10:12:40.539992", + "url": "/v1/software/eclipse-ajax-tools-framework-atf" +} diff --git a/site/public/v1/software/eclipse-ajdt-aspectj-development-tools-project/index.json b/site/public/v1/software/eclipse-ajdt-aspectj-development-tools-project/index.json new file mode 100644 index 000000000000..5eeecc523b64 --- /dev/null +++ b/site/public/v1/software/eclipse-ajdt-aspectj-development-tools-project/index.json @@ -0,0 +1,19 @@ +{ + "id": 2623, + "slug": "eclipse-ajdt-aspectj-development-tools-project", + "name": "Eclipse AJDT - AspectJ Development Tools Project", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72273785" + ], + "created_at": "2026-07-10T10:12:40.540944", + "updated_at": "2026-07-10T10:12:40.540944", + "url": "/v1/software/eclipse-ajdt-aspectj-development-tools-project" +} diff --git a/site/public/v1/software/eclipse-amalgamation/index.json b/site/public/v1/software/eclipse-amalgamation/index.json new file mode 100644 index 000000000000..e6d9e3cf5aae --- /dev/null +++ b/site/public/v1/software/eclipse-amalgamation/index.json @@ -0,0 +1,19 @@ +{ + "id": 2624, + "slug": "eclipse-amalgamation", + "name": "Eclipse Amalgamation", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72273727" + ], + "created_at": "2026-07-10T10:12:40.540944", + "updated_at": "2026-07-10T10:12:40.540944", + "url": "/v1/software/eclipse-amalgamation" +} diff --git a/site/public/v1/software/eclipse-andmore/index.json b/site/public/v1/software/eclipse-andmore/index.json new file mode 100644 index 000000000000..2c54a79913ca --- /dev/null +++ b/site/public/v1/software/eclipse-andmore/index.json @@ -0,0 +1,19 @@ +{ + "id": 2625, + "slug": "eclipse-andmore", + "name": "Eclipse Andmore", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76166112" + ], + "created_at": "2026-07-10T10:12:40.540944", + "updated_at": "2026-07-10T10:12:40.540944", + "url": "/v1/software/eclipse-andmore" +} diff --git a/site/public/v1/software/eclipse-apogy/index.json b/site/public/v1/software/eclipse-apogy/index.json new file mode 100644 index 000000000000..8520fb527166 --- /dev/null +++ b/site/public/v1/software/eclipse-apogy/index.json @@ -0,0 +1,19 @@ +{ + "id": 2626, + "slug": "eclipse-apogy", + "name": "Eclipse Apogy", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76178747" + ], + "created_at": "2026-07-10T10:12:40.541958", + "updated_at": "2026-07-10T10:12:40.541958", + "url": "/v1/software/eclipse-apogy" +} diff --git a/site/public/v1/software/eclipse-app4mc/index.json b/site/public/v1/software/eclipse-app4mc/index.json new file mode 100644 index 000000000000..b45be048875a --- /dev/null +++ b/site/public/v1/software/eclipse-app4mc/index.json @@ -0,0 +1,19 @@ +{ + "id": 2627, + "slug": "eclipse-app4mc", + "name": "Eclipse APP4MC", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76179011" + ], + "created_at": "2026-07-10T10:12:40.541958", + "updated_at": "2026-07-10T10:12:40.541958", + "url": "/v1/software/eclipse-app4mc" +} diff --git a/site/public/v1/software/eclipse-apricot/index.json b/site/public/v1/software/eclipse-apricot/index.json new file mode 100644 index 000000000000..45c08d20e84c --- /dev/null +++ b/site/public/v1/software/eclipse-apricot/index.json @@ -0,0 +1,19 @@ +{ + "id": 2628, + "slug": "eclipse-apricot", + "name": "Eclipse Apricot", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72273733" + ], + "created_at": "2026-07-10T10:12:40.541958", + "updated_at": "2026-07-10T10:12:40.541958", + "url": "/v1/software/eclipse-apricot" +} diff --git a/site/public/v1/software/eclipse-arrowhead/index.json b/site/public/v1/software/eclipse-arrowhead/index.json new file mode 100644 index 000000000000..a07f890cb620 --- /dev/null +++ b/site/public/v1/software/eclipse-arrowhead/index.json @@ -0,0 +1,19 @@ +{ + "id": 2629, + "slug": "eclipse-arrowhead", + "name": "Eclipse Arrowhead", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q96652466" + ], + "created_at": "2026-07-10T10:12:40.541958", + "updated_at": "2026-07-10T10:12:40.541958", + "url": "/v1/software/eclipse-arrowhead" +} diff --git a/site/public/v1/software/eclipse-aspectj/index.json b/site/public/v1/software/eclipse-aspectj/index.json new file mode 100644 index 000000000000..c6f0e38f9552 --- /dev/null +++ b/site/public/v1/software/eclipse-aspectj/index.json @@ -0,0 +1,19 @@ +{ + "id": 2630, + "slug": "eclipse-aspectj", + "name": "Eclipse AspectJ", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72273740" + ], + "created_at": "2026-07-10T10:12:40.542954", + "updated_at": "2026-07-10T10:12:40.542954", + "url": "/v1/software/eclipse-aspectj" +} diff --git a/site/public/v1/software/eclipse-atl/index.json b/site/public/v1/software/eclipse-atl/index.json new file mode 100644 index 000000000000..8a6e4205b55a --- /dev/null +++ b/site/public/v1/software/eclipse-atl/index.json @@ -0,0 +1,19 @@ +{ + "id": 2631, + "slug": "eclipse-atl", + "name": "Eclipse ATL", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72272532" + ], + "created_at": "2026-07-10T10:12:40.542954", + "updated_at": "2026-07-10T10:12:40.542954", + "url": "/v1/software/eclipse-atl" +} diff --git a/site/public/v1/software/eclipse-automated-driving-open-research-adore/index.json b/site/public/v1/software/eclipse-automated-driving-open-research-adore/index.json new file mode 100644 index 000000000000..352ef9aea863 --- /dev/null +++ b/site/public/v1/software/eclipse-automated-driving-open-research-adore/index.json @@ -0,0 +1,19 @@ +{ + "id": 2632, + "slug": "eclipse-automated-driving-open-research-adore", + "name": "Eclipse Automated Driving Open Research (ADORe)", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q96072021" + ], + "created_at": "2026-07-10T10:12:40.542954", + "updated_at": "2026-07-10T10:12:40.542954", + "url": "/v1/software/eclipse-automated-driving-open-research-adore" +} diff --git a/site/public/v1/software/eclipse-avsys/index.json b/site/public/v1/software/eclipse-avsys/index.json new file mode 100644 index 000000000000..7f80a4c8d003 --- /dev/null +++ b/site/public/v1/software/eclipse-avsys/index.json @@ -0,0 +1,19 @@ +{ + "id": 2633, + "slug": "eclipse-avsys", + "name": "Eclipse AVSys", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76169994" + ], + "created_at": "2026-07-10T10:12:40.543933", + "updated_at": "2026-07-10T10:12:40.543933", + "url": "/v1/software/eclipse-avsys" +} diff --git a/site/public/v1/software/eclipse-b612-the-polarsys-font/index.json b/site/public/v1/software/eclipse-b612-the-polarsys-font/index.json new file mode 100644 index 000000000000..6e0ef770ce1b --- /dev/null +++ b/site/public/v1/software/eclipse-b612-the-polarsys-font/index.json @@ -0,0 +1,19 @@ +{ + "id": 2634, + "slug": "eclipse-b612-the-polarsys-font", + "name": "Eclipse B612 - The PolarSys Font", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76175012" + ], + "created_at": "2026-07-10T10:12:40.543933", + "updated_at": "2026-07-10T10:12:40.543933", + "url": "/v1/software/eclipse-b612-the-polarsys-font" +} diff --git a/site/public/v1/software/eclipse-babel/index.json b/site/public/v1/software/eclipse-babel/index.json new file mode 100644 index 000000000000..b5ec53a635fd --- /dev/null +++ b/site/public/v1/software/eclipse-babel/index.json @@ -0,0 +1,19 @@ +{ + "id": 2635, + "slug": "eclipse-babel", + "name": "Eclipse Babel", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72273751" + ], + "created_at": "2026-07-10T10:12:40.543933", + "updated_at": "2026-07-10T10:12:40.543933", + "url": "/v1/software/eclipse-babel" +} diff --git a/site/public/v1/software/eclipse-basyx/index.json b/site/public/v1/software/eclipse-basyx/index.json new file mode 100644 index 000000000000..a8e8b83f40d5 --- /dev/null +++ b/site/public/v1/software/eclipse-basyx/index.json @@ -0,0 +1,19 @@ +{ + "id": 2636, + "slug": "eclipse-basyx", + "name": "Eclipse BaSyx", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76178737" + ], + "created_at": "2026-07-10T10:12:40.543933", + "updated_at": "2026-07-10T10:12:40.543933", + "url": "/v1/software/eclipse-basyx" +} diff --git a/site/public/v1/software/eclipse-bpel-designer/index.json b/site/public/v1/software/eclipse-bpel-designer/index.json new file mode 100644 index 000000000000..f498a4c7aeaa --- /dev/null +++ b/site/public/v1/software/eclipse-bpel-designer/index.json @@ -0,0 +1,19 @@ +{ + "id": 2637, + "slug": "eclipse-bpel-designer", + "name": "Eclipse BPEL Designer", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76164701" + ], + "created_at": "2026-07-10T10:12:40.543933", + "updated_at": "2026-07-10T10:12:40.543933", + "url": "/v1/software/eclipse-bpel-designer" +} diff --git a/site/public/v1/software/eclipse-bpmn2-modeler-project/index.json b/site/public/v1/software/eclipse-bpmn2-modeler-project/index.json new file mode 100644 index 000000000000..e82df8c38167 --- /dev/null +++ b/site/public/v1/software/eclipse-bpmn2-modeler-project/index.json @@ -0,0 +1,19 @@ +{ + "id": 2638, + "slug": "eclipse-bpmn2-modeler-project", + "name": "Eclipse BPMN2 Modeler Project", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76164702" + ], + "created_at": "2026-07-10T10:12:40.545279", + "updated_at": "2026-07-10T10:12:40.545279", + "url": "/v1/software/eclipse-bpmn2-modeler-project" +} diff --git a/site/public/v1/software/eclipse-bridge-iot/index.json b/site/public/v1/software/eclipse-bridge-iot/index.json new file mode 100644 index 000000000000..2892ef77445b --- /dev/null +++ b/site/public/v1/software/eclipse-bridge-iot/index.json @@ -0,0 +1,19 @@ +{ + "id": 2639, + "slug": "eclipse-bridge-iot", + "name": "Eclipse Bridge.IoT", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76176737" + ], + "created_at": "2026-07-10T10:12:40.545279", + "updated_at": "2026-07-10T10:12:40.545279", + "url": "/v1/software/eclipse-bridge-iot" +} diff --git a/site/public/v1/software/eclipse-buckminster-component-assembly/index.json b/site/public/v1/software/eclipse-buckminster-component-assembly/index.json new file mode 100644 index 000000000000..0da29e7e5163 --- /dev/null +++ b/site/public/v1/software/eclipse-buckminster-component-assembly/index.json @@ -0,0 +1,19 @@ +{ + "id": 2640, + "slug": "eclipse-buckminster-component-assembly", + "name": "Eclipse Buckminster Component Assembly", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76164703" + ], + "created_at": "2026-07-10T10:12:40.545279", + "updated_at": "2026-07-10T10:12:40.545279", + "url": "/v1/software/eclipse-buckminster-component-assembly" +} diff --git a/site/public/v1/software/eclipse-buildship-eclipse-plug-ins-for-gradle/index.json b/site/public/v1/software/eclipse-buildship-eclipse-plug-ins-for-gradle/index.json new file mode 100644 index 000000000000..4fa0b4426b80 --- /dev/null +++ b/site/public/v1/software/eclipse-buildship-eclipse-plug-ins-for-gradle/index.json @@ -0,0 +1,19 @@ +{ + "id": 2641, + "slug": "eclipse-buildship-eclipse-plug-ins-for-gradle", + "name": "Eclipse Buildship: Eclipse Plug-ins for Gradle", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72273088" + ], + "created_at": "2026-07-10T10:12:40.545279", + "updated_at": "2026-07-10T10:12:40.545279", + "url": "/v1/software/eclipse-buildship-eclipse-plug-ins-for-gradle" +} diff --git a/site/public/v1/software/eclipse-bundle-recipes/index.json b/site/public/v1/software/eclipse-bundle-recipes/index.json new file mode 100644 index 000000000000..6b4134cea157 --- /dev/null +++ b/site/public/v1/software/eclipse-bundle-recipes/index.json @@ -0,0 +1,19 @@ +{ + "id": 2642, + "slug": "eclipse-bundle-recipes", + "name": "Eclipse Bundle Recipes", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76178721" + ], + "created_at": "2026-07-10T10:12:40.545279", + "updated_at": "2026-07-10T10:12:40.545279", + "url": "/v1/software/eclipse-bundle-recipes" +} diff --git a/site/public/v1/software/eclipse-business-process-model-and-notation-bpmn2/index.json b/site/public/v1/software/eclipse-business-process-model-and-notation-bpmn2/index.json new file mode 100644 index 000000000000..5fd548e63b0e --- /dev/null +++ b/site/public/v1/software/eclipse-business-process-model-and-notation-bpmn2/index.json @@ -0,0 +1,19 @@ +{ + "id": 2643, + "slug": "eclipse-business-process-model-and-notation-bpmn2", + "name": "Eclipse Business Process Model and Notation (BPMN2)", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76164704" + ], + "created_at": "2026-07-10T10:12:40.546288", + "updated_at": "2026-07-10T10:12:40.546288", + "url": "/v1/software/eclipse-business-process-model-and-notation-bpmn2" +} diff --git a/site/public/v1/software/eclipse-c-c-development-tooling-cdt/index.json b/site/public/v1/software/eclipse-c-c-development-tooling-cdt/index.json new file mode 100644 index 000000000000..f2e77f127684 --- /dev/null +++ b/site/public/v1/software/eclipse-c-c-development-tooling-cdt/index.json @@ -0,0 +1,19 @@ +{ + "id": 2644, + "slug": "eclipse-c-c-development-tooling-cdt", + "name": "Eclipse C/C++ Development Tooling (CDT)", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72273760" + ], + "created_at": "2026-07-10T10:12:40.546288", + "updated_at": "2026-07-10T10:12:40.546288", + "url": "/v1/software/eclipse-c-c-development-tooling-cdt" +} diff --git a/site/public/v1/software/eclipse-californium-cf-coap-framework/index.json b/site/public/v1/software/eclipse-californium-cf-coap-framework/index.json new file mode 100644 index 000000000000..1aff414dc08f --- /dev/null +++ b/site/public/v1/software/eclipse-californium-cf-coap-framework/index.json @@ -0,0 +1,19 @@ +{ + "id": 2645, + "slug": "eclipse-californium-cf-coap-framework", + "name": "Eclipse Californium (Cf) CoAP Framework", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76174813" + ], + "created_at": "2026-07-10T10:12:40.546288", + "updated_at": "2026-07-10T10:12:40.546288", + "url": "/v1/software/eclipse-californium-cf-coap-framework" +} diff --git a/site/public/v1/software/eclipse-capra/index.json b/site/public/v1/software/eclipse-capra/index.json new file mode 100644 index 000000000000..2a3803ea5626 --- /dev/null +++ b/site/public/v1/software/eclipse-capra/index.json @@ -0,0 +1,19 @@ +{ + "id": 2646, + "slug": "eclipse-capra", + "name": "Eclipse Capra", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76164718" + ], + "created_at": "2026-07-10T10:12:40.547290", + "updated_at": "2026-07-10T10:12:40.547290", + "url": "/v1/software/eclipse-capra" +} diff --git a/site/public/v1/software/eclipse-cargo-tracker/index.json b/site/public/v1/software/eclipse-cargo-tracker/index.json new file mode 100644 index 000000000000..910a53f83c01 --- /dev/null +++ b/site/public/v1/software/eclipse-cargo-tracker/index.json @@ -0,0 +1,19 @@ +{ + "id": 2647, + "slug": "eclipse-cargo-tracker", + "name": "Eclipse Cargo Tracker", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76168831" + ], + "created_at": "2026-07-10T10:12:40.547290", + "updated_at": "2026-07-10T10:12:40.547290", + "url": "/v1/software/eclipse-cargo-tracker" +} diff --git a/site/public/v1/software/eclipse-cdo-model-repository/index.json b/site/public/v1/software/eclipse-cdo-model-repository/index.json new file mode 100644 index 000000000000..b0540bf455db --- /dev/null +++ b/site/public/v1/software/eclipse-cdo-model-repository/index.json @@ -0,0 +1,19 @@ +{ + "id": 2648, + "slug": "eclipse-cdo-model-repository", + "name": "Eclipse CDO Model Repository", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72273770" + ], + "created_at": "2026-07-10T10:12:40.547290", + "updated_at": "2026-07-10T10:12:40.547290", + "url": "/v1/software/eclipse-cdo-model-repository" +} diff --git a/site/public/v1/software/eclipse-che4z/index.json b/site/public/v1/software/eclipse-che4z/index.json new file mode 100644 index 000000000000..8f101dd2a4b2 --- /dev/null +++ b/site/public/v1/software/eclipse-che4z/index.json @@ -0,0 +1,19 @@ +{ + "id": 2649, + "slug": "eclipse-che4z", + "name": "Eclipse Che4z", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76168702" + ], + "created_at": "2026-07-10T10:12:40.547290", + "updated_at": "2026-07-10T10:12:40.547290", + "url": "/v1/software/eclipse-che4z" +} diff --git a/site/public/v1/software/eclipse-chess/index.json b/site/public/v1/software/eclipse-chess/index.json new file mode 100644 index 000000000000..01bfcfe55b3f --- /dev/null +++ b/site/public/v1/software/eclipse-chess/index.json @@ -0,0 +1,19 @@ +{ + "id": 2650, + "slug": "eclipse-chess", + "name": "Eclipse CHESS", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76174991" + ], + "created_at": "2026-07-10T10:12:40.548349", + "updated_at": "2026-07-10T10:12:40.548349", + "url": "/v1/software/eclipse-chess" +} diff --git a/site/public/v1/software/eclipse-cloe/index.json b/site/public/v1/software/eclipse-cloe/index.json new file mode 100644 index 000000000000..3c5807c3e1c2 --- /dev/null +++ b/site/public/v1/software/eclipse-cloe/index.json @@ -0,0 +1,19 @@ +{ + "id": 2651, + "slug": "eclipse-cloe", + "name": "Eclipse Cloe", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q96652464" + ], + "created_at": "2026-07-10T10:12:40.548349", + "updated_at": "2026-07-10T10:12:40.548349", + "url": "/v1/software/eclipse-cloe" +} diff --git a/site/public/v1/software/eclipse-cloud-development/index.json b/site/public/v1/software/eclipse-cloud-development/index.json new file mode 100644 index 000000000000..4f7e61e022fd --- /dev/null +++ b/site/public/v1/software/eclipse-cloud-development/index.json @@ -0,0 +1,19 @@ +{ + "id": 2652, + "slug": "eclipse-cloud-development", + "name": "Eclipse Cloud Development", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76178711" + ], + "created_at": "2026-07-10T10:12:40.548349", + "updated_at": "2026-07-10T10:12:40.548349", + "url": "/v1/software/eclipse-cloud-development" +} diff --git a/site/public/v1/software/eclipse-code-recommenders/index.json b/site/public/v1/software/eclipse-code-recommenders/index.json new file mode 100644 index 000000000000..466831dc692b --- /dev/null +++ b/site/public/v1/software/eclipse-code-recommenders/index.json @@ -0,0 +1,19 @@ +{ + "id": 2653, + "slug": "eclipse-code-recommenders", + "name": "Eclipse Code Recommenders", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72273667" + ], + "created_at": "2026-07-10T10:12:40.549359", + "updated_at": "2026-07-10T10:12:40.549359", + "url": "/v1/software/eclipse-code-recommenders" +} diff --git a/site/public/v1/software/eclipse-codewind/index.json b/site/public/v1/software/eclipse-codewind/index.json new file mode 100644 index 000000000000..d0420a6cf9c7 --- /dev/null +++ b/site/public/v1/software/eclipse-codewind/index.json @@ -0,0 +1,19 @@ +{ + "id": 2654, + "slug": "eclipse-codewind", + "name": "Eclipse Codewind", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76174501" + ], + "created_at": "2026-07-10T10:12:40.549359", + "updated_at": "2026-07-10T10:12:40.549359", + "url": "/v1/software/eclipse-codewind" +} diff --git a/site/public/v1/software/eclipse-cognicrypt/index.json b/site/public/v1/software/eclipse-cognicrypt/index.json new file mode 100644 index 000000000000..2545f4eefa82 --- /dev/null +++ b/site/public/v1/software/eclipse-cognicrypt/index.json @@ -0,0 +1,19 @@ +{ + "id": 2655, + "slug": "eclipse-cognicrypt", + "name": "Eclipse CogniCrypt", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76176751" + ], + "created_at": "2026-07-10T10:12:40.549359", + "updated_at": "2026-07-10T10:12:40.549359", + "url": "/v1/software/eclipse-cognicrypt" +} diff --git a/site/public/v1/software/eclipse-collections/index.json b/site/public/v1/software/eclipse-collections/index.json new file mode 100644 index 000000000000..2795b8b55cea --- /dev/null +++ b/site/public/v1/software/eclipse-collections/index.json @@ -0,0 +1,19 @@ +{ + "id": 2656, + "slug": "eclipse-collections", + "name": "Eclipse Collections", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72272454" + ], + "created_at": "2026-07-10T10:12:40.550362", + "updated_at": "2026-07-10T10:12:40.550362", + "url": "/v1/software/eclipse-collections" +} diff --git a/site/public/v1/software/eclipse-common-build-infrastructure/index.json b/site/public/v1/software/eclipse-common-build-infrastructure/index.json new file mode 100644 index 000000000000..41e6e28c9429 --- /dev/null +++ b/site/public/v1/software/eclipse-common-build-infrastructure/index.json @@ -0,0 +1,19 @@ +{ + "id": 2657, + "slug": "eclipse-common-build-infrastructure", + "name": "Eclipse Common Build Infrastructure", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72273830" + ], + "created_at": "2026-07-10T10:12:40.550362", + "updated_at": "2026-07-10T10:12:40.550362", + "url": "/v1/software/eclipse-common-build-infrastructure" +} diff --git a/site/public/v1/software/eclipse-communication-framework/index.json b/site/public/v1/software/eclipse-communication-framework/index.json new file mode 100644 index 000000000000..15009c6f3ba4 --- /dev/null +++ b/site/public/v1/software/eclipse-communication-framework/index.json @@ -0,0 +1,19 @@ +{ + "id": 2658, + "slug": "eclipse-communication-framework", + "name": "Eclipse Communication Framework", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72273835" + ], + "created_at": "2026-07-10T10:12:40.550362", + "updated_at": "2026-07-10T10:12:40.550362", + "url": "/v1/software/eclipse-communication-framework" +} diff --git a/site/public/v1/software/eclipse-concierge/index.json b/site/public/v1/software/eclipse-concierge/index.json new file mode 100644 index 000000000000..2ca9007975a2 --- /dev/null +++ b/site/public/v1/software/eclipse-concierge/index.json @@ -0,0 +1,19 @@ +{ + "id": 2659, + "slug": "eclipse-concierge", + "name": "Eclipse Concierge", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72272962" + ], + "created_at": "2026-07-10T10:12:40.550362", + "updated_at": "2026-07-10T10:12:40.550362", + "url": "/v1/software/eclipse-concierge" +} diff --git a/site/public/v1/software/eclipse-corrosion-the-eclipse-ide-for-rust/index.json b/site/public/v1/software/eclipse-corrosion-the-eclipse-ide-for-rust/index.json new file mode 100644 index 000000000000..55957c6843e5 --- /dev/null +++ b/site/public/v1/software/eclipse-corrosion-the-eclipse-ide-for-rust/index.json @@ -0,0 +1,19 @@ +{ + "id": 2660, + "slug": "eclipse-corrosion-the-eclipse-ide-for-rust", + "name": "Eclipse Corrosion: the Eclipse IDE for Rust", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76169070" + ], + "created_at": "2026-07-10T10:12:40.551346", + "updated_at": "2026-07-10T10:12:40.551346", + "url": "/v1/software/eclipse-corrosion-the-eclipse-ide-for-rust" +} diff --git a/site/public/v1/software/eclipse-crossmeter/index.json b/site/public/v1/software/eclipse-crossmeter/index.json new file mode 100644 index 000000000000..16d1f2e93174 --- /dev/null +++ b/site/public/v1/software/eclipse-crossmeter/index.json @@ -0,0 +1,19 @@ +{ + "id": 2661, + "slug": "eclipse-crossmeter", + "name": "Eclipse CROSSMETER", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76176766" + ], + "created_at": "2026-07-10T10:12:40.551346", + "updated_at": "2026-07-10T10:12:40.551346", + "url": "/v1/software/eclipse-crossmeter" +} diff --git a/site/public/v1/software/eclipse-cyclone-dds/index.json b/site/public/v1/software/eclipse-cyclone-dds/index.json new file mode 100644 index 000000000000..f53500e0b39e --- /dev/null +++ b/site/public/v1/software/eclipse-cyclone-dds/index.json @@ -0,0 +1,19 @@ +{ + "id": 2662, + "slug": "eclipse-cyclone-dds", + "name": "Eclipse Cyclone DDS", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76176783" + ], + "created_at": "2026-07-10T10:12:40.551346", + "updated_at": "2026-07-10T10:12:40.551346", + "url": "/v1/software/eclipse-cyclone-dds" +} diff --git a/site/public/v1/software/eclipse-dali-java-persistence-tools/index.json b/site/public/v1/software/eclipse-dali-java-persistence-tools/index.json new file mode 100644 index 000000000000..f1b15726aad9 --- /dev/null +++ b/site/public/v1/software/eclipse-dali-java-persistence-tools/index.json @@ -0,0 +1,19 @@ +{ + "id": 2663, + "slug": "eclipse-dali-java-persistence-tools", + "name": "Eclipse Dali Java Persistence Tools", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72273917" + ], + "created_at": "2026-07-10T10:12:40.552345", + "updated_at": "2026-07-10T10:12:40.552345", + "url": "/v1/software/eclipse-dali-java-persistence-tools" +} diff --git a/site/public/v1/software/eclipse-dartboard/index.json b/site/public/v1/software/eclipse-dartboard/index.json new file mode 100644 index 000000000000..c599f9aaecd8 --- /dev/null +++ b/site/public/v1/software/eclipse-dartboard/index.json @@ -0,0 +1,19 @@ +{ + "id": 2664, + "slug": "eclipse-dartboard", + "name": "Eclipse Dartboard", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76170097" + ], + "created_at": "2026-07-10T10:12:40.552345", + "updated_at": "2026-07-10T10:12:40.552345", + "url": "/v1/software/eclipse-dartboard" +} diff --git a/site/public/v1/software/eclipse-dash-commits-dashboard/index.json b/site/public/v1/software/eclipse-dash-commits-dashboard/index.json new file mode 100644 index 000000000000..d90a773b6fd8 --- /dev/null +++ b/site/public/v1/software/eclipse-dash-commits-dashboard/index.json @@ -0,0 +1,19 @@ +{ + "id": 2665, + "slug": "eclipse-dash-commits-dashboard", + "name": "Eclipse Dash Commits Dashboard", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76178685" + ], + "created_at": "2026-07-10T10:12:40.552345", + "updated_at": "2026-07-10T10:12:40.552345", + "url": "/v1/software/eclipse-dash-commits-dashboard" +} diff --git a/site/public/v1/software/eclipse-dash/index.json b/site/public/v1/software/eclipse-dash/index.json new file mode 100644 index 000000000000..12a9308fed37 --- /dev/null +++ b/site/public/v1/software/eclipse-dash/index.json @@ -0,0 +1,19 @@ +{ + "id": 2666, + "slug": "eclipse-dash", + "name": "Eclipse Dash", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76178700" + ], + "created_at": "2026-07-10T10:12:40.552345", + "updated_at": "2026-07-10T10:12:40.552345", + "url": "/v1/software/eclipse-dash" +} diff --git a/site/public/v1/software/eclipse-data-tools-enablement/index.json b/site/public/v1/software/eclipse-data-tools-enablement/index.json new file mode 100644 index 000000000000..762524e12a16 --- /dev/null +++ b/site/public/v1/software/eclipse-data-tools-enablement/index.json @@ -0,0 +1,19 @@ +{ + "id": 2667, + "slug": "eclipse-data-tools-enablement", + "name": "Eclipse Data Tools Enablement", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76178674" + ], + "created_at": "2026-07-10T10:12:40.553373", + "updated_at": "2026-07-10T10:12:40.553373", + "url": "/v1/software/eclipse-data-tools-enablement" +} diff --git a/site/public/v1/software/eclipse-data-tools-incubator/index.json b/site/public/v1/software/eclipse-data-tools-incubator/index.json new file mode 100644 index 000000000000..11375e5f6967 --- /dev/null +++ b/site/public/v1/software/eclipse-data-tools-incubator/index.json @@ -0,0 +1,19 @@ +{ + "id": 2668, + "slug": "eclipse-data-tools-incubator", + "name": "Eclipse Data Tools Incubator", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72273852" + ], + "created_at": "2026-07-10T10:12:40.553373", + "updated_at": "2026-07-10T10:12:40.553373", + "url": "/v1/software/eclipse-data-tools-incubator" +} diff --git a/site/public/v1/software/eclipse-data-tools-model-base/index.json b/site/public/v1/software/eclipse-data-tools-model-base/index.json new file mode 100644 index 000000000000..b82e0fe46ae9 --- /dev/null +++ b/site/public/v1/software/eclipse-data-tools-model-base/index.json @@ -0,0 +1,19 @@ +{ + "id": 2669, + "slug": "eclipse-data-tools-model-base", + "name": "Eclipse Data Tools Model Base", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76176478" + ], + "created_at": "2026-07-10T10:12:40.553373", + "updated_at": "2026-07-10T10:12:40.553373", + "url": "/v1/software/eclipse-data-tools-model-base" +} diff --git a/site/public/v1/software/eclipse-data-tools-platform/index.json b/site/public/v1/software/eclipse-data-tools-platform/index.json new file mode 100644 index 000000000000..23c0e7934b29 --- /dev/null +++ b/site/public/v1/software/eclipse-data-tools-platform/index.json @@ -0,0 +1,19 @@ +{ + "id": 2670, + "slug": "eclipse-data-tools-platform", + "name": "Eclipse Data Tools Platform", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72273861" + ], + "created_at": "2026-07-10T10:12:40.553373", + "updated_at": "2026-07-10T10:12:40.553373", + "url": "/v1/software/eclipse-data-tools-platform" +} diff --git a/site/public/v1/software/eclipse-data-tools-sql-dev-tools/index.json b/site/public/v1/software/eclipse-data-tools-sql-dev-tools/index.json new file mode 100644 index 000000000000..ed4f9af476b6 --- /dev/null +++ b/site/public/v1/software/eclipse-data-tools-sql-dev-tools/index.json @@ -0,0 +1,19 @@ +{ + "id": 2671, + "slug": "eclipse-data-tools-sql-dev-tools", + "name": "Eclipse Data Tools SQL Dev Tools", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76176493" + ], + "created_at": "2026-07-10T10:12:40.554336", + "updated_at": "2026-07-10T10:12:40.554336", + "url": "/v1/software/eclipse-data-tools-sql-dev-tools" +} diff --git a/site/public/v1/software/eclipse-dawnsci/index.json b/site/public/v1/software/eclipse-dawnsci/index.json new file mode 100644 index 000000000000..9d3e6b2ed446 --- /dev/null +++ b/site/public/v1/software/eclipse-dawnsci/index.json @@ -0,0 +1,19 @@ +{ + "id": 2672, + "slug": "eclipse-dawnsci", + "name": "Eclipse DAWNSci", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76179068" + ], + "created_at": "2026-07-10T10:12:40.554336", + "updated_at": "2026-07-10T10:12:40.554336", + "url": "/v1/software/eclipse-dawnsci" +} diff --git a/site/public/v1/software/eclipse-deeplearning4j/index.json b/site/public/v1/software/eclipse-deeplearning4j/index.json new file mode 100644 index 000000000000..cb6456b2180a --- /dev/null +++ b/site/public/v1/software/eclipse-deeplearning4j/index.json @@ -0,0 +1,19 @@ +{ + "id": 2673, + "slug": "eclipse-deeplearning4j", + "name": "Eclipse Deeplearning4j", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76178662" + ], + "created_at": "2026-07-10T10:12:40.554336", + "updated_at": "2026-07-10T10:12:40.554336", + "url": "/v1/software/eclipse-deeplearning4j" +} diff --git a/site/public/v1/software/eclipse-dirigible/index.json b/site/public/v1/software/eclipse-dirigible/index.json new file mode 100644 index 000000000000..961b4531110f --- /dev/null +++ b/site/public/v1/software/eclipse-dirigible/index.json @@ -0,0 +1,19 @@ +{ + "id": 2674, + "slug": "eclipse-dirigible", + "name": "Eclipse Dirigible", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72273869" + ], + "created_at": "2026-07-10T10:12:40.555370", + "updated_at": "2026-07-10T10:12:40.555370", + "url": "/v1/software/eclipse-dirigible" +} diff --git a/site/public/v1/software/eclipse-duttile/index.json b/site/public/v1/software/eclipse-duttile/index.json new file mode 100644 index 000000000000..9546b5433f02 --- /dev/null +++ b/site/public/v1/software/eclipse-duttile/index.json @@ -0,0 +1,19 @@ +{ + "id": 2675, + "slug": "eclipse-duttile", + "name": "Eclipse Duttile", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76178636" + ], + "created_at": "2026-07-10T10:12:40.555370", + "updated_at": "2026-07-10T10:12:40.555370", + "url": "/v1/software/eclipse-duttile" +} diff --git a/site/public/v1/software/eclipse-dynamic-languages-toolkit/index.json b/site/public/v1/software/eclipse-dynamic-languages-toolkit/index.json new file mode 100644 index 000000000000..a9af00754cc9 --- /dev/null +++ b/site/public/v1/software/eclipse-dynamic-languages-toolkit/index.json @@ -0,0 +1,19 @@ +{ + "id": 2676, + "slug": "eclipse-dynamic-languages-toolkit", + "name": "Eclipse Dynamic Languages Toolkit", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72272551" + ], + "created_at": "2026-07-10T10:12:40.555370", + "updated_at": "2026-07-10T10:12:40.555370", + "url": "/v1/software/eclipse-dynamic-languages-toolkit" +} diff --git a/site/public/v1/software/eclipse-e-fx-clipse/index.json b/site/public/v1/software/eclipse-e-fx-clipse/index.json new file mode 100644 index 000000000000..f9a9b14ff38d --- /dev/null +++ b/site/public/v1/software/eclipse-e-fx-clipse/index.json @@ -0,0 +1,19 @@ +{ + "id": 2677, + "slug": "eclipse-e-fx-clipse", + "name": "Eclipse e(fx)clipse", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76165392" + ], + "created_at": "2026-07-10T10:12:40.555370", + "updated_at": "2026-07-10T10:12:40.555370", + "url": "/v1/software/eclipse-e-fx-clipse" +} diff --git a/site/public/v1/software/eclipse-e4-project/index.json b/site/public/v1/software/eclipse-e4-project/index.json new file mode 100644 index 000000000000..33a051a7310d --- /dev/null +++ b/site/public/v1/software/eclipse-e4-project/index.json @@ -0,0 +1,19 @@ +{ + "id": 2678, + "slug": "eclipse-e4-project", + "name": "Eclipse e4 Project", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72273891" + ], + "created_at": "2026-07-10T10:12:40.556341", + "updated_at": "2026-07-10T10:12:40.556341", + "url": "/v1/software/eclipse-e4-project" +} diff --git a/site/public/v1/software/eclipse-eatop/index.json b/site/public/v1/software/eclipse-eatop/index.json new file mode 100644 index 000000000000..8f111d81ca06 --- /dev/null +++ b/site/public/v1/software/eclipse-eatop/index.json @@ -0,0 +1,19 @@ +{ + "id": 2679, + "slug": "eclipse-eatop", + "name": "Eclipse EATOP", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72273920" + ], + "created_at": "2026-07-10T10:12:40.556341", + "updated_at": "2026-07-10T10:12:40.556341", + "url": "/v1/software/eclipse-eatop" +} diff --git a/site/public/v1/software/eclipse-ebpm/index.json b/site/public/v1/software/eclipse-ebpm/index.json new file mode 100644 index 000000000000..dd3baf74c0c2 --- /dev/null +++ b/site/public/v1/software/eclipse-ebpm/index.json @@ -0,0 +1,19 @@ +{ + "id": 2680, + "slug": "eclipse-ebpm", + "name": "Eclipse eBPM", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72273921" + ], + "created_at": "2026-07-10T10:12:40.556341", + "updated_at": "2026-07-10T10:12:40.556341", + "url": "/v1/software/eclipse-ebpm" +} diff --git a/site/public/v1/software/eclipse-eclemma/index.json b/site/public/v1/software/eclipse-eclemma/index.json new file mode 100644 index 000000000000..f1bb3899f9f4 --- /dev/null +++ b/site/public/v1/software/eclipse-eclemma/index.json @@ -0,0 +1,19 @@ +{ + "id": 2681, + "slug": "eclipse-eclemma", + "name": "Eclipse EclEmma", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76165292" + ], + "created_at": "2026-07-10T10:12:40.556341", + "updated_at": "2026-07-10T10:12:40.556341", + "url": "/v1/software/eclipse-eclemma" +} diff --git a/site/public/v1/software/eclipse-ecore-tools/index.json b/site/public/v1/software/eclipse-ecore-tools/index.json new file mode 100644 index 000000000000..2dff7adeb3c4 --- /dev/null +++ b/site/public/v1/software/eclipse-ecore-tools/index.json @@ -0,0 +1,19 @@ +{ + "id": 2682, + "slug": "eclipse-ecore-tools", + "name": "Eclipse Ecore Tools", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76165843" + ], + "created_at": "2026-07-10T10:12:40.557333", + "updated_at": "2026-07-10T10:12:40.557333", + "url": "/v1/software/eclipse-ecore-tools" +} diff --git a/site/public/v1/software/eclipse-edapt/index.json b/site/public/v1/software/eclipse-edapt/index.json new file mode 100644 index 000000000000..c09536cc06c7 --- /dev/null +++ b/site/public/v1/software/eclipse-edapt/index.json @@ -0,0 +1,19 @@ +{ + "id": 2683, + "slug": "eclipse-edapt", + "name": "Eclipse Edapt", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76164705" + ], + "created_at": "2026-07-10T10:12:40.557333", + "updated_at": "2026-07-10T10:12:40.557333", + "url": "/v1/software/eclipse-edapt" +} diff --git a/site/public/v1/software/eclipse-editdor/index.json b/site/public/v1/software/eclipse-editdor/index.json new file mode 100644 index 000000000000..6f9b9a5beb50 --- /dev/null +++ b/site/public/v1/software/eclipse-editdor/index.json @@ -0,0 +1,19 @@ +{ + "id": 2684, + "slug": "eclipse-editdor", + "name": "Eclipse EdiTDor", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q99482988" + ], + "created_at": "2026-07-10T10:12:40.557333", + "updated_at": "2026-07-10T10:12:40.557333", + "url": "/v1/software/eclipse-editdor" +} diff --git a/site/public/v1/software/eclipse-edje/index.json b/site/public/v1/software/eclipse-edje/index.json new file mode 100644 index 000000000000..41a0e2b9a937 --- /dev/null +++ b/site/public/v1/software/eclipse-edje/index.json @@ -0,0 +1,19 @@ +{ + "id": 2685, + "slug": "eclipse-edje", + "name": "Eclipse Edje", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76178624" + ], + "created_at": "2026-07-10T10:12:40.558360", + "updated_at": "2026-07-10T10:12:40.558360", + "url": "/v1/software/eclipse-edje" +} diff --git a/site/public/v1/software/eclipse-egerrit/index.json b/site/public/v1/software/eclipse-egerrit/index.json new file mode 100644 index 000000000000..718a0a9701df --- /dev/null +++ b/site/public/v1/software/eclipse-egerrit/index.json @@ -0,0 +1,19 @@ +{ + "id": 2686, + "slug": "eclipse-egerrit", + "name": "Eclipse EGerrit", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76166654" + ], + "created_at": "2026-07-10T10:12:40.558360", + "updated_at": "2026-07-10T10:12:40.558360", + "url": "/v1/software/eclipse-egerrit" +} diff --git a/site/public/v1/software/eclipse-egit-git-integration-for-eclipse/index.json b/site/public/v1/software/eclipse-egit-git-integration-for-eclipse/index.json new file mode 100644 index 000000000000..108bdbaeef25 --- /dev/null +++ b/site/public/v1/software/eclipse-egit-git-integration-for-eclipse/index.json @@ -0,0 +1,21 @@ +{ + "id": 2687, + "slug": "eclipse-egit-git-integration-for-eclipse", + "name": "Eclipse EGit: Git Integration for Eclipse", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Eclipse Public License 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76163463" + ], + "created_at": "2026-07-10T10:12:40.558360", + "updated_at": "2026-07-10T10:12:40.558360", + "url": "/v1/software/eclipse-egit-git-integration-for-eclipse" +} diff --git a/site/public/v1/software/eclipse-elogbook-openk/index.json b/site/public/v1/software/eclipse-elogbook-openk/index.json new file mode 100644 index 000000000000..12a909dcea2a --- /dev/null +++ b/site/public/v1/software/eclipse-elogbook-openk/index.json @@ -0,0 +1,19 @@ +{ + "id": 2688, + "slug": "eclipse-elogbook-openk", + "name": "Eclipse eLogbook@openK", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76178611" + ], + "created_at": "2026-07-10T10:12:40.558360", + "updated_at": "2026-07-10T10:12:40.558360", + "url": "/v1/software/eclipse-elogbook-openk" +} diff --git a/site/public/v1/software/eclipse-embedded-cdt-c-c-development-tools/index.json b/site/public/v1/software/eclipse-embedded-cdt-c-c-development-tools/index.json new file mode 100644 index 000000000000..8d7fc3ce9917 --- /dev/null +++ b/site/public/v1/software/eclipse-embedded-cdt-c-c-development-tools/index.json @@ -0,0 +1,19 @@ +{ + "id": 2689, + "slug": "eclipse-embedded-cdt-c-c-development-tools", + "name": "Eclipse Embedded CDT (C/C++ Development Tools)", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q96072022" + ], + "created_at": "2026-07-10T10:12:40.559349", + "updated_at": "2026-07-10T10:12:40.559349", + "url": "/v1/software/eclipse-embedded-cdt-c-c-development-tools" +} diff --git a/site/public/v1/software/eclipse-emf-client-platform/index.json b/site/public/v1/software/eclipse-emf-client-platform/index.json new file mode 100644 index 000000000000..a51505496ff6 --- /dev/null +++ b/site/public/v1/software/eclipse-emf-client-platform/index.json @@ -0,0 +1,19 @@ +{ + "id": 2690, + "slug": "eclipse-emf-client-platform", + "name": "Eclipse EMF Client Platform", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72272501" + ], + "created_at": "2026-07-10T10:12:40.559349", + "updated_at": "2026-07-10T10:12:40.559349", + "url": "/v1/software/eclipse-emf-client-platform" +} diff --git a/site/public/v1/software/eclipse-emf-cloud/index.json b/site/public/v1/software/eclipse-emf-cloud/index.json new file mode 100644 index 000000000000..54734126ac45 --- /dev/null +++ b/site/public/v1/software/eclipse-emf-cloud/index.json @@ -0,0 +1,19 @@ +{ + "id": 2691, + "slug": "eclipse-emf-cloud", + "name": "Eclipse EMF.cloud", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76168847" + ], + "created_at": "2026-07-10T10:12:40.559349", + "updated_at": "2026-07-10T10:12:40.559349", + "url": "/v1/software/eclipse-emf-cloud" +} diff --git a/site/public/v1/software/eclipse-emf-compare/index.json b/site/public/v1/software/eclipse-emf-compare/index.json new file mode 100644 index 000000000000..9ee297ab9390 --- /dev/null +++ b/site/public/v1/software/eclipse-emf-compare/index.json @@ -0,0 +1,19 @@ +{ + "id": 2692, + "slug": "eclipse-emf-compare", + "name": "Eclipse EMF Compare", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76164707" + ], + "created_at": "2026-07-10T10:12:40.559349", + "updated_at": "2026-07-10T10:12:40.559349", + "url": "/v1/software/eclipse-emf-compare" +} diff --git a/site/public/v1/software/eclipse-emf-diff-merge/index.json b/site/public/v1/software/eclipse-emf-diff-merge/index.json new file mode 100644 index 000000000000..cbb4a72be3a3 --- /dev/null +++ b/site/public/v1/software/eclipse-emf-diff-merge/index.json @@ -0,0 +1,19 @@ +{ + "id": 2693, + "slug": "eclipse-emf-diff-merge", + "name": "Eclipse EMF Diff/Merge", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72272560" + ], + "created_at": "2026-07-10T10:12:40.559349", + "updated_at": "2026-07-10T10:12:40.560562", + "url": "/v1/software/eclipse-emf-diff-merge" +} diff --git a/site/public/v1/software/eclipse-emf-facet/index.json b/site/public/v1/software/eclipse-emf-facet/index.json new file mode 100644 index 000000000000..88df042258a8 --- /dev/null +++ b/site/public/v1/software/eclipse-emf-facet/index.json @@ -0,0 +1,19 @@ +{ + "id": 2694, + "slug": "eclipse-emf-facet", + "name": "Eclipse EMF Facet", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72273922" + ], + "created_at": "2026-07-10T10:12:40.560562", + "updated_at": "2026-07-10T10:12:40.560562", + "url": "/v1/software/eclipse-emf-facet" +} diff --git a/site/public/v1/software/eclipse-emf-parsley/index.json b/site/public/v1/software/eclipse-emf-parsley/index.json new file mode 100644 index 000000000000..4afac3c8307a --- /dev/null +++ b/site/public/v1/software/eclipse-emf-parsley/index.json @@ -0,0 +1,19 @@ +{ + "id": 2695, + "slug": "eclipse-emf-parsley", + "name": "Eclipse EMF Parsley", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76166127" + ], + "created_at": "2026-07-10T10:12:40.560562", + "updated_at": "2026-07-10T10:12:40.560562", + "url": "/v1/software/eclipse-emf-parsley" +} diff --git a/site/public/v1/software/eclipse-emf-services/index.json b/site/public/v1/software/eclipse-emf-services/index.json new file mode 100644 index 000000000000..c1492478c3e1 --- /dev/null +++ b/site/public/v1/software/eclipse-emf-services/index.json @@ -0,0 +1,19 @@ +{ + "id": 2696, + "slug": "eclipse-emf-services", + "name": "Eclipse EMF Services", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76178313" + ], + "created_at": "2026-07-10T10:12:40.560562", + "updated_at": "2026-07-10T10:12:40.560562", + "url": "/v1/software/eclipse-emf-services" +} diff --git a/site/public/v1/software/eclipse-emf/index.json b/site/public/v1/software/eclipse-emf/index.json new file mode 100644 index 000000000000..9841840ae21b --- /dev/null +++ b/site/public/v1/software/eclipse-emf/index.json @@ -0,0 +1,19 @@ +{ + "id": 2697, + "slug": "eclipse-emf", + "name": "Eclipse EMF", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76178379" + ], + "created_at": "2026-07-10T10:12:40.561676", + "updated_at": "2026-07-10T10:12:40.561676", + "url": "/v1/software/eclipse-emf" +} diff --git a/site/public/v1/software/eclipse-enterprise-tools-for-the-osgi-service-platform/index.json b/site/public/v1/software/eclipse-enterprise-tools-for-the-osgi-service-platform/index.json new file mode 100644 index 000000000000..7a8d6aad04d0 --- /dev/null +++ b/site/public/v1/software/eclipse-enterprise-tools-for-the-osgi-service-platform/index.json @@ -0,0 +1,19 @@ +{ + "id": 2698, + "slug": "eclipse-enterprise-tools-for-the-osgi-service-platform", + "name": "Eclipse Enterprise Tools for the OSGi Service Platform", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72272866" + ], + "created_at": "2026-07-10T10:12:40.561676", + "updated_at": "2026-07-10T10:12:40.561676", + "url": "/v1/software/eclipse-enterprise-tools-for-the-osgi-service-platform" +} diff --git a/site/public/v1/software/eclipse-erp/index.json b/site/public/v1/software/eclipse-erp/index.json new file mode 100644 index 000000000000..a865ad31ad67 --- /dev/null +++ b/site/public/v1/software/eclipse-erp/index.json @@ -0,0 +1,25 @@ +{ + "id": 2699, + "slug": "eclipse-erp", + "name": "Eclipse ERP", + "release_date": "1990-11-26", + "developers": [ + "Activant", + "Epicor", + "Intuit" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28956996" + ], + "created_at": "2026-07-10T10:12:40.561676", + "updated_at": "2026-07-10T10:12:40.561676", + "url": "/v1/software/eclipse-erp" +} diff --git a/site/public/v1/software/eclipse-escet-supervisory-control-engineering-toolkit/index.json b/site/public/v1/software/eclipse-escet-supervisory-control-engineering-toolkit/index.json new file mode 100644 index 000000000000..788ac011ff46 --- /dev/null +++ b/site/public/v1/software/eclipse-escet-supervisory-control-engineering-toolkit/index.json @@ -0,0 +1,19 @@ +{ + "id": 2700, + "slug": "eclipse-escet-supervisory-control-engineering-toolkit", + "name": "Eclipse ESCET (Supervisory Control Engineering Toolkit)", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q96072023" + ], + "created_at": "2026-07-10T10:12:40.561676", + "updated_at": "2026-07-10T10:12:40.561676", + "url": "/v1/software/eclipse-escet-supervisory-control-engineering-toolkit" +} diff --git a/site/public/v1/software/eclipse-etrice/index.json b/site/public/v1/software/eclipse-etrice/index.json new file mode 100644 index 000000000000..8bbbd3b2b76c --- /dev/null +++ b/site/public/v1/software/eclipse-etrice/index.json @@ -0,0 +1,19 @@ +{ + "id": 2701, + "slug": "eclipse-etrice", + "name": "Eclipse eTrice", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76166641" + ], + "created_at": "2026-07-10T10:12:40.562675", + "updated_at": "2026-07-10T10:12:40.562675", + "url": "/v1/software/eclipse-etrice" +} diff --git a/site/public/v1/software/eclipse-extended-editing-framework-eef/index.json b/site/public/v1/software/eclipse-extended-editing-framework-eef/index.json new file mode 100644 index 000000000000..d41b9362f4ef --- /dev/null +++ b/site/public/v1/software/eclipse-extended-editing-framework-eef/index.json @@ -0,0 +1,19 @@ +{ + "id": 2702, + "slug": "eclipse-extended-editing-framework-eef", + "name": "Eclipse Extended Editing Framework (EEF)", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76166395" + ], + "created_at": "2026-07-10T10:12:40.562675", + "updated_at": "2026-07-10T10:12:40.562675", + "url": "/v1/software/eclipse-extended-editing-framework-eef" +} diff --git a/site/public/v1/software/eclipse-flux/index.json b/site/public/v1/software/eclipse-flux/index.json new file mode 100644 index 000000000000..7330b611d3ee --- /dev/null +++ b/site/public/v1/software/eclipse-flux/index.json @@ -0,0 +1,19 @@ +{ + "id": 2703, + "slug": "eclipse-flux", + "name": "Eclipse Flux", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76178289" + ], + "created_at": "2026-07-10T10:12:40.562675", + "updated_at": "2026-07-10T10:12:40.562675", + "url": "/v1/software/eclipse-flux" +} diff --git a/site/public/v1/software/eclipse-fog05/index.json b/site/public/v1/software/eclipse-fog05/index.json new file mode 100644 index 000000000000..d50777c113dc --- /dev/null +++ b/site/public/v1/software/eclipse-fog05/index.json @@ -0,0 +1,19 @@ +{ + "id": 2704, + "slug": "eclipse-fog05", + "name": "Eclipse fog05", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76169403" + ], + "created_at": "2026-07-10T10:12:40.562675", + "updated_at": "2026-07-10T10:12:40.562675", + "url": "/v1/software/eclipse-fog05" +} diff --git a/site/public/v1/software/eclipse-formal-modeling-project/index.json b/site/public/v1/software/eclipse-formal-modeling-project/index.json new file mode 100644 index 000000000000..98f942ab01b1 --- /dev/null +++ b/site/public/v1/software/eclipse-formal-modeling-project/index.json @@ -0,0 +1,19 @@ +{ + "id": 2705, + "slug": "eclipse-formal-modeling-project", + "name": "Eclipse Formal Modeling Project", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72273000" + ], + "created_at": "2026-07-10T10:12:40.563679", + "updated_at": "2026-07-10T10:12:40.563679", + "url": "/v1/software/eclipse-formal-modeling-project" +} diff --git a/site/public/v1/software/eclipse-franca/index.json b/site/public/v1/software/eclipse-franca/index.json new file mode 100644 index 000000000000..d4dcddc77cdc --- /dev/null +++ b/site/public/v1/software/eclipse-franca/index.json @@ -0,0 +1,19 @@ +{ + "id": 2706, + "slug": "eclipse-franca", + "name": "Eclipse Franca", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76178268" + ], + "created_at": "2026-07-10T10:12:40.563679", + "updated_at": "2026-07-10T10:12:40.563679", + "url": "/v1/software/eclipse-franca" +} diff --git a/site/public/v1/software/eclipse-free-bird-tools/index.json b/site/public/v1/software/eclipse-free-bird-tools/index.json new file mode 100644 index 000000000000..a0e46036087a --- /dev/null +++ b/site/public/v1/software/eclipse-free-bird-tools/index.json @@ -0,0 +1,19 @@ +{ + "id": 2707, + "slug": "eclipse-free-bird-tools", + "name": "Eclipse Free BIRD Tools", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q96072024" + ], + "created_at": "2026-07-10T10:12:40.563679", + "updated_at": "2026-07-10T10:12:40.563679", + "url": "/v1/software/eclipse-free-bird-tools" +} diff --git a/site/public/v1/software/eclipse-fundamental-modeling-concepts/index.json b/site/public/v1/software/eclipse-fundamental-modeling-concepts/index.json new file mode 100644 index 000000000000..b0d98b62634a --- /dev/null +++ b/site/public/v1/software/eclipse-fundamental-modeling-concepts/index.json @@ -0,0 +1,19 @@ +{ + "id": 2708, + "slug": "eclipse-fundamental-modeling-concepts", + "name": "Eclipse Fundamental Modeling Concepts", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72273130" + ], + "created_at": "2026-07-10T10:12:40.563679", + "updated_at": "2026-07-10T10:12:40.563679", + "url": "/v1/software/eclipse-fundamental-modeling-concepts" +} diff --git a/site/public/v1/software/eclipse-gemoc-studio/index.json b/site/public/v1/software/eclipse-gemoc-studio/index.json new file mode 100644 index 000000000000..1d463a9a3b4e --- /dev/null +++ b/site/public/v1/software/eclipse-gemoc-studio/index.json @@ -0,0 +1,19 @@ +{ + "id": 2709, + "slug": "eclipse-gemoc-studio", + "name": "Eclipse GEMOC Studio", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72272760" + ], + "created_at": "2026-07-10T10:12:40.564747", + "updated_at": "2026-07-10T10:12:40.564747", + "url": "/v1/software/eclipse-gemoc-studio" +} diff --git a/site/public/v1/software/eclipse-gendoc/index.json b/site/public/v1/software/eclipse-gendoc/index.json new file mode 100644 index 000000000000..ad9ed30d22b7 --- /dev/null +++ b/site/public/v1/software/eclipse-gendoc/index.json @@ -0,0 +1,19 @@ +{ + "id": 2710, + "slug": "eclipse-gendoc", + "name": "Eclipse Gendoc", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76179083" + ], + "created_at": "2026-07-10T10:12:40.564747", + "updated_at": "2026-07-10T10:12:40.564747", + "url": "/v1/software/eclipse-gendoc" +} diff --git a/site/public/v1/software/eclipse-generation-factories-egf/index.json b/site/public/v1/software/eclipse-generation-factories-egf/index.json new file mode 100644 index 000000000000..bfb3c13c6b3e --- /dev/null +++ b/site/public/v1/software/eclipse-generation-factories-egf/index.json @@ -0,0 +1,19 @@ +{ + "id": 2711, + "slug": "eclipse-generation-factories-egf", + "name": "Eclipse Generation Factories (EGF)", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72272939" + ], + "created_at": "2026-07-10T10:12:40.564747", + "updated_at": "2026-07-10T10:12:40.564747", + "url": "/v1/software/eclipse-generation-factories-egf" +} diff --git a/site/public/v1/software/eclipse-glassfish-tools/index.json b/site/public/v1/software/eclipse-glassfish-tools/index.json new file mode 100644 index 000000000000..96fdf529e7a9 --- /dev/null +++ b/site/public/v1/software/eclipse-glassfish-tools/index.json @@ -0,0 +1,19 @@ +{ + "id": 2712, + "slug": "eclipse-glassfish-tools", + "name": "Eclipse GlassFish Tools", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76176509" + ], + "created_at": "2026-07-10T10:12:40.565774", + "updated_at": "2026-07-10T10:12:40.565774", + "url": "/v1/software/eclipse-glassfish-tools" +} diff --git a/site/public/v1/software/eclipse-glsp/index.json b/site/public/v1/software/eclipse-glsp/index.json new file mode 100644 index 000000000000..9e5da339b021 --- /dev/null +++ b/site/public/v1/software/eclipse-glsp/index.json @@ -0,0 +1,19 @@ +{ + "id": 2713, + "slug": "eclipse-glsp", + "name": "Eclipse GLSP", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76168867" + ], + "created_at": "2026-07-10T10:12:40.565774", + "updated_at": "2026-07-10T10:12:40.565774", + "url": "/v1/software/eclipse-glsp" +} diff --git a/site/public/v1/software/eclipse-gmf-notation/index.json b/site/public/v1/software/eclipse-gmf-notation/index.json new file mode 100644 index 000000000000..e5b5dc002983 --- /dev/null +++ b/site/public/v1/software/eclipse-gmf-notation/index.json @@ -0,0 +1,19 @@ +{ + "id": 2714, + "slug": "eclipse-gmf-notation", + "name": "Eclipse GMF Notation", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72273924" + ], + "created_at": "2026-07-10T10:12:40.565774", + "updated_at": "2026-07-10T10:12:40.565774", + "url": "/v1/software/eclipse-gmf-notation" +} diff --git a/site/public/v1/software/eclipse-gmf-runtime/index.json b/site/public/v1/software/eclipse-gmf-runtime/index.json new file mode 100644 index 000000000000..b975299bb079 --- /dev/null +++ b/site/public/v1/software/eclipse-gmf-runtime/index.json @@ -0,0 +1,19 @@ +{ + "id": 2715, + "slug": "eclipse-gmf-runtime", + "name": "Eclipse GMF Runtime", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72273956" + ], + "created_at": "2026-07-10T10:12:40.566684", + "updated_at": "2026-07-10T10:12:40.566684", + "url": "/v1/software/eclipse-gmf-runtime" +} diff --git a/site/public/v1/software/eclipse-gmf-tooling/index.json b/site/public/v1/software/eclipse-gmf-tooling/index.json new file mode 100644 index 000000000000..169af44acc57 --- /dev/null +++ b/site/public/v1/software/eclipse-gmf-tooling/index.json @@ -0,0 +1,19 @@ +{ + "id": 2716, + "slug": "eclipse-gmf-tooling", + "name": "Eclipse GMF Tooling", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72274060" + ], + "created_at": "2026-07-10T10:12:40.566684", + "updated_at": "2026-07-10T10:12:40.566684", + "url": "/v1/software/eclipse-gmf-tooling" +} diff --git a/site/public/v1/software/eclipse-golo/index.json b/site/public/v1/software/eclipse-golo/index.json new file mode 100644 index 000000000000..70c4fa5818bb --- /dev/null +++ b/site/public/v1/software/eclipse-golo/index.json @@ -0,0 +1,19 @@ +{ + "id": 2717, + "slug": "eclipse-golo", + "name": "Eclipse Golo", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72274065" + ], + "created_at": "2026-07-10T10:12:40.566684", + "updated_at": "2026-07-10T10:12:40.566684", + "url": "/v1/software/eclipse-golo" +} diff --git a/site/public/v1/software/eclipse-graphiti/index.json b/site/public/v1/software/eclipse-graphiti/index.json new file mode 100644 index 000000000000..eb5f2572fdbf --- /dev/null +++ b/site/public/v1/software/eclipse-graphiti/index.json @@ -0,0 +1,19 @@ +{ + "id": 2718, + "slug": "eclipse-graphiti", + "name": "Eclipse Graphiti", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72274072" + ], + "created_at": "2026-07-10T10:12:40.566684", + "updated_at": "2026-07-10T10:12:40.566684", + "url": "/v1/software/eclipse-graphiti" +} diff --git a/site/public/v1/software/eclipse-grizzly/index.json b/site/public/v1/software/eclipse-grizzly/index.json new file mode 100644 index 000000000000..651efc66ede4 --- /dev/null +++ b/site/public/v1/software/eclipse-grizzly/index.json @@ -0,0 +1,19 @@ +{ + "id": 2719, + "slug": "eclipse-grizzly", + "name": "Eclipse Grizzly", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76176253" + ], + "created_at": "2026-07-10T10:12:40.567679", + "updated_at": "2026-07-10T10:12:40.567679", + "url": "/v1/software/eclipse-grizzly" +} diff --git a/site/public/v1/software/eclipse-gyrex-project/index.json b/site/public/v1/software/eclipse-gyrex-project/index.json new file mode 100644 index 000000000000..5d28cdca060d --- /dev/null +++ b/site/public/v1/software/eclipse-gyrex-project/index.json @@ -0,0 +1,19 @@ +{ + "id": 2720, + "slug": "eclipse-gyrex-project", + "name": "Eclipse Gyrex Project", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72274075" + ], + "created_at": "2026-07-10T10:12:40.567679", + "updated_at": "2026-07-10T10:12:40.567679", + "url": "/v1/software/eclipse-gyrex-project" +} diff --git a/site/public/v1/software/eclipse-handly/index.json b/site/public/v1/software/eclipse-handly/index.json new file mode 100644 index 000000000000..b0d9304ca662 --- /dev/null +++ b/site/public/v1/software/eclipse-handly/index.json @@ -0,0 +1,19 @@ +{ + "id": 2721, + "slug": "eclipse-handly", + "name": "Eclipse Handly", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72272876" + ], + "created_at": "2026-07-10T10:12:40.567679", + "updated_at": "2026-07-10T10:12:40.567679", + "url": "/v1/software/eclipse-handly" +} diff --git a/site/public/v1/software/eclipse-hara/index.json b/site/public/v1/software/eclipse-hara/index.json new file mode 100644 index 000000000000..0bb44a005b3a --- /dev/null +++ b/site/public/v1/software/eclipse-hara/index.json @@ -0,0 +1,19 @@ +{ + "id": 2722, + "slug": "eclipse-hara", + "name": "Eclipse Hara", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q96072025" + ], + "created_at": "2026-07-10T10:12:40.568677", + "updated_at": "2026-07-10T10:12:40.568677", + "url": "/v1/software/eclipse-hara" +} diff --git a/site/public/v1/software/eclipse-hawk/index.json b/site/public/v1/software/eclipse-hawk/index.json new file mode 100644 index 000000000000..7a04110f6a8f --- /dev/null +++ b/site/public/v1/software/eclipse-hawk/index.json @@ -0,0 +1,19 @@ +{ + "id": 2723, + "slug": "eclipse-hawk", + "name": "Eclipse Hawk", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76169551" + ], + "created_at": "2026-07-10T10:12:40.568677", + "updated_at": "2026-07-10T10:12:40.568677", + "url": "/v1/software/eclipse-hawk" +} diff --git a/site/public/v1/software/eclipse-hawkbit/index.json b/site/public/v1/software/eclipse-hawkbit/index.json new file mode 100644 index 000000000000..e0fcf372c5a4 --- /dev/null +++ b/site/public/v1/software/eclipse-hawkbit/index.json @@ -0,0 +1,19 @@ +{ + "id": 2724, + "slug": "eclipse-hawkbit", + "name": "Eclipse hawkBit", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76178253" + ], + "created_at": "2026-07-10T10:12:40.568677", + "updated_at": "2026-07-10T10:12:40.568677", + "url": "/v1/software/eclipse-hawkbit" +} diff --git a/site/public/v1/software/eclipse-hip/index.json b/site/public/v1/software/eclipse-hip/index.json new file mode 100644 index 000000000000..48393d7d1d91 --- /dev/null +++ b/site/public/v1/software/eclipse-hip/index.json @@ -0,0 +1,19 @@ +{ + "id": 2725, + "slug": "eclipse-hip", + "name": "Eclipse HIP", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76169334" + ], + "created_at": "2026-07-10T10:12:40.568677", + "updated_at": "2026-07-10T10:12:40.568677", + "url": "/v1/software/eclipse-hip" +} diff --git a/site/public/v1/software/eclipse-hono/index.json b/site/public/v1/software/eclipse-hono/index.json new file mode 100644 index 000000000000..38686909f550 --- /dev/null +++ b/site/public/v1/software/eclipse-hono/index.json @@ -0,0 +1,19 @@ +{ + "id": 2726, + "slug": "eclipse-hono", + "name": "Eclipse Hono", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72274082" + ], + "created_at": "2026-07-10T10:12:40.569732", + "updated_at": "2026-07-10T10:12:40.569732", + "url": "/v1/software/eclipse-hono" +} diff --git a/site/public/v1/software/eclipse-hudson/index.json b/site/public/v1/software/eclipse-hudson/index.json new file mode 100644 index 000000000000..6837f13642fd --- /dev/null +++ b/site/public/v1/software/eclipse-hudson/index.json @@ -0,0 +1,19 @@ +{ + "id": 2727, + "slug": "eclipse-hudson", + "name": "Eclipse Hudson", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72274092" + ], + "created_at": "2026-07-10T10:12:40.569732", + "updated_at": "2026-07-10T10:12:40.569732", + "url": "/v1/software/eclipse-hudson" +} diff --git a/site/public/v1/software/eclipse-iceoryx/index.json b/site/public/v1/software/eclipse-iceoryx/index.json new file mode 100644 index 000000000000..99f966ef598d --- /dev/null +++ b/site/public/v1/software/eclipse-iceoryx/index.json @@ -0,0 +1,19 @@ +{ + "id": 2728, + "slug": "eclipse-iceoryx", + "name": "Eclipse iceoryx", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76168887" + ], + "created_at": "2026-07-10T10:12:40.569732", + "updated_at": "2026-07-10T10:12:40.569732", + "url": "/v1/software/eclipse-iceoryx" +} diff --git a/site/public/v1/software/eclipse-ignite-iot/index.json b/site/public/v1/software/eclipse-ignite-iot/index.json new file mode 100644 index 000000000000..b1557a13c71d --- /dev/null +++ b/site/public/v1/software/eclipse-ignite-iot/index.json @@ -0,0 +1,19 @@ +{ + "id": 2729, + "slug": "eclipse-ignite-iot", + "name": "Eclipse Ignite|IoT", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76178242" + ], + "created_at": "2026-07-10T10:12:40.570722", + "updated_at": "2026-07-10T10:12:40.570722", + "url": "/v1/software/eclipse-ignite-iot" +} diff --git a/site/public/v1/software/eclipse-imagen/index.json b/site/public/v1/software/eclipse-imagen/index.json new file mode 100644 index 000000000000..32fcae166515 --- /dev/null +++ b/site/public/v1/software/eclipse-imagen/index.json @@ -0,0 +1,19 @@ +{ + "id": 2730, + "slug": "eclipse-imagen", + "name": "Eclipse ImageN", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76170116" + ], + "created_at": "2026-07-10T10:12:40.570722", + "updated_at": "2026-07-10T10:12:40.570722", + "url": "/v1/software/eclipse-imagen" +} diff --git a/site/public/v1/software/eclipse-implementation-of-jaxb/index.json b/site/public/v1/software/eclipse-implementation-of-jaxb/index.json new file mode 100644 index 000000000000..b50ec2e31fc0 --- /dev/null +++ b/site/public/v1/software/eclipse-implementation-of-jaxb/index.json @@ -0,0 +1,19 @@ +{ + "id": 2731, + "slug": "eclipse-implementation-of-jaxb", + "name": "Eclipse Implementation of JAXB", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76169440" + ], + "created_at": "2026-07-10T10:12:40.570722", + "updated_at": "2026-07-10T10:12:40.570722", + "url": "/v1/software/eclipse-implementation-of-jaxb" +} diff --git a/site/public/v1/software/eclipse-iofog/index.json b/site/public/v1/software/eclipse-iofog/index.json new file mode 100644 index 000000000000..7bab1d97db41 --- /dev/null +++ b/site/public/v1/software/eclipse-iofog/index.json @@ -0,0 +1,19 @@ +{ + "id": 2732, + "slug": "eclipse-iofog", + "name": "Eclipse ioFog", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76178229" + ], + "created_at": "2026-07-10T10:12:40.571737", + "updated_at": "2026-07-10T10:12:40.571737", + "url": "/v1/software/eclipse-iofog" +} diff --git a/site/public/v1/software/eclipse-iot-packages/index.json b/site/public/v1/software/eclipse-iot-packages/index.json new file mode 100644 index 000000000000..327846a4f04f --- /dev/null +++ b/site/public/v1/software/eclipse-iot-packages/index.json @@ -0,0 +1,19 @@ +{ + "id": 2733, + "slug": "eclipse-iot-packages", + "name": "Eclipse IoT Packages", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76168907" + ], + "created_at": "2026-07-10T10:12:40.571737", + "updated_at": "2026-07-10T10:12:40.571737", + "url": "/v1/software/eclipse-iot-packages" +} diff --git a/site/public/v1/software/eclipse-iot-testware/index.json b/site/public/v1/software/eclipse-iot-testware/index.json new file mode 100644 index 000000000000..0b01b3252b91 --- /dev/null +++ b/site/public/v1/software/eclipse-iot-testware/index.json @@ -0,0 +1,19 @@ +{ + "id": 2734, + "slug": "eclipse-iot-testware", + "name": "Eclipse IoT-Testware", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76178825" + ], + "created_at": "2026-07-10T10:12:40.571737", + "updated_at": "2026-07-10T10:12:40.571737", + "url": "/v1/software/eclipse-iot-testware" +} diff --git a/site/public/v1/software/eclipse-iot/index.json b/site/public/v1/software/eclipse-iot/index.json new file mode 100644 index 000000000000..c5899d5b99d2 --- /dev/null +++ b/site/public/v1/software/eclipse-iot/index.json @@ -0,0 +1,19 @@ +{ + "id": 2735, + "slug": "eclipse-iot", + "name": "Eclipse IoT", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76166414" + ], + "created_at": "2026-07-10T10:12:40.571737", + "updated_at": "2026-07-10T10:12:40.571737", + "url": "/v1/software/eclipse-iot" +} diff --git a/site/public/v1/software/eclipse-iota-trinity/index.json b/site/public/v1/software/eclipse-iota-trinity/index.json new file mode 100644 index 000000000000..70244f3d2286 --- /dev/null +++ b/site/public/v1/software/eclipse-iota-trinity/index.json @@ -0,0 +1,19 @@ +{ + "id": 2736, + "slug": "eclipse-iota-trinity", + "name": "Eclipse IOTA Trinity", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76169825" + ], + "created_at": "2026-07-10T10:12:40.572746", + "updated_at": "2026-07-10T10:12:40.572746", + "url": "/v1/software/eclipse-iota-trinity" +} diff --git a/site/public/v1/software/eclipse-jakarta-ee-platform/index.json b/site/public/v1/software/eclipse-jakarta-ee-platform/index.json new file mode 100644 index 000000000000..d6ab43e989bc --- /dev/null +++ b/site/public/v1/software/eclipse-jakarta-ee-platform/index.json @@ -0,0 +1,19 @@ +{ + "id": 2737, + "slug": "eclipse-jakarta-ee-platform", + "name": "Eclipse Jakarta EE Platform", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76169455" + ], + "created_at": "2026-07-10T10:12:40.572746", + "updated_at": "2026-07-10T10:12:40.572746", + "url": "/v1/software/eclipse-jakarta-ee-platform" +} diff --git a/site/public/v1/software/eclipse-jakarta-ee-tck/index.json b/site/public/v1/software/eclipse-jakarta-ee-tck/index.json new file mode 100644 index 000000000000..1416275f08ad --- /dev/null +++ b/site/public/v1/software/eclipse-jakarta-ee-tck/index.json @@ -0,0 +1,19 @@ +{ + "id": 2738, + "slug": "eclipse-jakarta-ee-tck", + "name": "Eclipse Jakarta EE TCK", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76169484" + ], + "created_at": "2026-07-10T10:12:40.572746", + "updated_at": "2026-07-10T10:12:40.572746", + "url": "/v1/software/eclipse-jakarta-ee-tck" +} diff --git a/site/public/v1/software/eclipse-january/index.json b/site/public/v1/software/eclipse-january/index.json new file mode 100644 index 000000000000..d63d9ff384d0 --- /dev/null +++ b/site/public/v1/software/eclipse-january/index.json @@ -0,0 +1,19 @@ +{ + "id": 2739, + "slug": "eclipse-january", + "name": "Eclipse January", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76164751" + ], + "created_at": "2026-07-10T10:12:40.572746", + "updated_at": "2026-07-10T10:12:40.572746", + "url": "/v1/software/eclipse-january" +} diff --git a/site/public/v1/software/eclipse-javascript-development-tools/index.json b/site/public/v1/software/eclipse-javascript-development-tools/index.json new file mode 100644 index 000000000000..2cd2a7ae3766 --- /dev/null +++ b/site/public/v1/software/eclipse-javascript-development-tools/index.json @@ -0,0 +1,19 @@ +{ + "id": 2740, + "slug": "eclipse-javascript-development-tools", + "name": "Eclipse JavaScript Development Tools", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72274541" + ], + "created_at": "2026-07-10T10:12:40.573740", + "updated_at": "2026-07-10T10:12:40.573740", + "url": "/v1/software/eclipse-javascript-development-tools" +} diff --git a/site/public/v1/software/eclipse-jdt-language-server/index.json b/site/public/v1/software/eclipse-jdt-language-server/index.json new file mode 100644 index 000000000000..3133bea03f63 --- /dev/null +++ b/site/public/v1/software/eclipse-jdt-language-server/index.json @@ -0,0 +1,19 @@ +{ + "id": 2741, + "slug": "eclipse-jdt-language-server", + "name": "Eclipse JDT Language Server", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76178216" + ], + "created_at": "2026-07-10T10:12:40.573740", + "updated_at": "2026-07-10T10:12:40.573740", + "url": "/v1/software/eclipse-jdt-language-server" +} diff --git a/site/public/v1/software/eclipse-jemo-cloud-application-runtime/index.json b/site/public/v1/software/eclipse-jemo-cloud-application-runtime/index.json new file mode 100644 index 000000000000..c2ea3a4cf118 --- /dev/null +++ b/site/public/v1/software/eclipse-jemo-cloud-application-runtime/index.json @@ -0,0 +1,19 @@ +{ + "id": 2742, + "slug": "eclipse-jemo-cloud-application-runtime", + "name": "Eclipse Jemo - Cloud Application Runtime", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76169873" + ], + "created_at": "2026-07-10T10:12:40.573740", + "updated_at": "2026-07-10T10:12:40.573740", + "url": "/v1/software/eclipse-jemo-cloud-application-runtime" +} diff --git a/site/public/v1/software/eclipse-jersey/index.json b/site/public/v1/software/eclipse-jersey/index.json new file mode 100644 index 000000000000..ea29118620fc --- /dev/null +++ b/site/public/v1/software/eclipse-jersey/index.json @@ -0,0 +1,19 @@ +{ + "id": 2743, + "slug": "eclipse-jersey", + "name": "Eclipse Jersey", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76176267" + ], + "created_at": "2026-07-10T10:12:40.573740", + "updated_at": "2026-07-10T10:12:40.573740", + "url": "/v1/software/eclipse-jersey" +} diff --git a/site/public/v1/software/eclipse-jifa/index.json b/site/public/v1/software/eclipse-jifa/index.json new file mode 100644 index 000000000000..6c1a50aacf77 --- /dev/null +++ b/site/public/v1/software/eclipse-jifa/index.json @@ -0,0 +1,19 @@ +{ + "id": 2744, + "slug": "eclipse-jifa", + "name": "Eclipse Jifa", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q99482985" + ], + "created_at": "2026-07-10T10:12:40.575678", + "updated_at": "2026-07-10T10:12:40.575678", + "url": "/v1/software/eclipse-jifa" +} diff --git a/site/public/v1/software/eclipse-jkube/index.json b/site/public/v1/software/eclipse-jkube/index.json new file mode 100644 index 000000000000..439bda34abba --- /dev/null +++ b/site/public/v1/software/eclipse-jkube/index.json @@ -0,0 +1,19 @@ +{ + "id": 2745, + "slug": "eclipse-jkube", + "name": "Eclipse JKube", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q96072019" + ], + "created_at": "2026-07-10T10:12:40.576674", + "updated_at": "2026-07-10T10:12:40.576674", + "url": "/v1/software/eclipse-jkube" +} diff --git a/site/public/v1/software/eclipse-jnosql/index.json b/site/public/v1/software/eclipse-jnosql/index.json new file mode 100644 index 000000000000..74f0bbc624a2 --- /dev/null +++ b/site/public/v1/software/eclipse-jnosql/index.json @@ -0,0 +1,19 @@ +{ + "id": 2746, + "slug": "eclipse-jnosql", + "name": "Eclipse JNoSQL", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72274164" + ], + "created_at": "2026-07-10T10:12:40.577674", + "updated_at": "2026-07-10T10:12:40.577674", + "url": "/v1/software/eclipse-jnosql" +} diff --git a/site/public/v1/software/eclipse-justj/index.json b/site/public/v1/software/eclipse-justj/index.json new file mode 100644 index 000000000000..3f82dae60bde --- /dev/null +++ b/site/public/v1/software/eclipse-justj/index.json @@ -0,0 +1,19 @@ +{ + "id": 2747, + "slug": "eclipse-justj", + "name": "Eclipse JustJ", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q96652468" + ], + "created_at": "2026-07-10T10:12:40.577674", + "updated_at": "2026-07-10T10:12:40.577674", + "url": "/v1/software/eclipse-justj" +} diff --git a/site/public/v1/software/eclipse-jwt/index.json b/site/public/v1/software/eclipse-jwt/index.json new file mode 100644 index 000000000000..a9d9bb50df5e --- /dev/null +++ b/site/public/v1/software/eclipse-jwt/index.json @@ -0,0 +1,19 @@ +{ + "id": 2748, + "slug": "eclipse-jwt", + "name": "Eclipse JWT", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72274166" + ], + "created_at": "2026-07-10T10:12:40.578674", + "updated_at": "2026-07-10T10:12:40.578674", + "url": "/v1/software/eclipse-jwt" +} diff --git a/site/public/v1/software/eclipse-kapua/index.json b/site/public/v1/software/eclipse-kapua/index.json new file mode 100644 index 000000000000..18e2874b428b --- /dev/null +++ b/site/public/v1/software/eclipse-kapua/index.json @@ -0,0 +1,19 @@ +{ + "id": 2749, + "slug": "eclipse-kapua", + "name": "Eclipse Kapua", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76178204" + ], + "created_at": "2026-07-10T10:12:40.579674", + "updated_at": "2026-07-10T10:12:40.579674", + "url": "/v1/software/eclipse-kapua" +} diff --git a/site/public/v1/software/eclipse-keti/index.json b/site/public/v1/software/eclipse-keti/index.json new file mode 100644 index 000000000000..2cc49a865a9f --- /dev/null +++ b/site/public/v1/software/eclipse-keti/index.json @@ -0,0 +1,19 @@ +{ + "id": 2750, + "slug": "eclipse-keti", + "name": "Eclipse Keti", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76178187" + ], + "created_at": "2026-07-10T10:12:40.579674", + "updated_at": "2026-07-10T10:12:40.579674", + "url": "/v1/software/eclipse-keti" +} diff --git a/site/public/v1/software/eclipse-keyple/index.json b/site/public/v1/software/eclipse-keyple/index.json new file mode 100644 index 000000000000..40a5af7c722c --- /dev/null +++ b/site/public/v1/software/eclipse-keyple/index.json @@ -0,0 +1,19 @@ +{ + "id": 2751, + "slug": "eclipse-keyple", + "name": "Eclipse Keyple", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76174998" + ], + "created_at": "2026-07-10T10:12:40.580671", + "updated_at": "2026-07-10T10:12:40.580671", + "url": "/v1/software/eclipse-keyple" +} diff --git a/site/public/v1/software/eclipse-kitalpha/index.json b/site/public/v1/software/eclipse-kitalpha/index.json new file mode 100644 index 000000000000..00e60244b2be --- /dev/null +++ b/site/public/v1/software/eclipse-kitalpha/index.json @@ -0,0 +1,19 @@ +{ + "id": 2752, + "slug": "eclipse-kitalpha", + "name": "Eclipse Kitalpha", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76169854" + ], + "created_at": "2026-07-10T10:12:40.580671", + "updated_at": "2026-07-10T10:12:40.580671", + "url": "/v1/software/eclipse-kitalpha" +} diff --git a/site/public/v1/software/eclipse-krazo/index.json b/site/public/v1/software/eclipse-krazo/index.json new file mode 100644 index 000000000000..743b2b3cd368 --- /dev/null +++ b/site/public/v1/software/eclipse-krazo/index.json @@ -0,0 +1,19 @@ +{ + "id": 2753, + "slug": "eclipse-krazo", + "name": "Eclipse Krazo", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76175005" + ], + "created_at": "2026-07-10T10:12:40.580671", + "updated_at": "2026-07-10T10:12:40.580671", + "url": "/v1/software/eclipse-krazo" +} diff --git a/site/public/v1/software/eclipse-kuksa/index.json b/site/public/v1/software/eclipse-kuksa/index.json new file mode 100644 index 000000000000..71070459a0f6 --- /dev/null +++ b/site/public/v1/software/eclipse-kuksa/index.json @@ -0,0 +1,19 @@ +{ + "id": 2754, + "slug": "eclipse-kuksa", + "name": "Eclipse Kuksa", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76176798" + ], + "created_at": "2026-07-10T10:12:40.580671", + "updated_at": "2026-07-10T10:12:40.580671", + "url": "/v1/software/eclipse-kuksa" +} diff --git a/site/public/v1/software/eclipse-kura/index.json b/site/public/v1/software/eclipse-kura/index.json new file mode 100644 index 000000000000..4f118a13dd98 --- /dev/null +++ b/site/public/v1/software/eclipse-kura/index.json @@ -0,0 +1,19 @@ +{ + "id": 2755, + "slug": "eclipse-kura", + "name": "Eclipse Kura", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72274167" + ], + "created_at": "2026-07-10T10:12:40.581671", + "updated_at": "2026-07-10T10:12:40.581671", + "url": "/v1/software/eclipse-kura" +} diff --git a/site/public/v1/software/eclipse-layout-kernel/index.json b/site/public/v1/software/eclipse-layout-kernel/index.json new file mode 100644 index 000000000000..1cef3a7401ab --- /dev/null +++ b/site/public/v1/software/eclipse-layout-kernel/index.json @@ -0,0 +1,19 @@ +{ + "id": 2756, + "slug": "eclipse-layout-kernel", + "name": "Eclipse Layout Kernel", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72272600" + ], + "created_at": "2026-07-10T10:12:40.581671", + "updated_at": "2026-07-10T10:12:40.581671", + "url": "/v1/software/eclipse-layout-kernel" +} diff --git a/site/public/v1/software/eclipse-leshan/index.json b/site/public/v1/software/eclipse-leshan/index.json new file mode 100644 index 000000000000..0e20da61f2b3 --- /dev/null +++ b/site/public/v1/software/eclipse-leshan/index.json @@ -0,0 +1,19 @@ +{ + "id": 2757, + "slug": "eclipse-leshan", + "name": "Eclipse Leshan", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72274168" + ], + "created_at": "2026-07-10T10:12:40.581671", + "updated_at": "2026-07-10T10:12:40.581671", + "url": "/v1/software/eclipse-leshan" +} diff --git a/site/public/v1/software/eclipse-libims/index.json b/site/public/v1/software/eclipse-libims/index.json new file mode 100644 index 000000000000..3223d692ec9b --- /dev/null +++ b/site/public/v1/software/eclipse-libims/index.json @@ -0,0 +1,19 @@ +{ + "id": 2758, + "slug": "eclipse-libims", + "name": "Eclipse LibIMS", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76169910" + ], + "created_at": "2026-07-10T10:12:40.582742", + "updated_at": "2026-07-10T10:12:40.582742", + "url": "/v1/software/eclipse-libims" +} diff --git a/site/public/v1/software/eclipse-linux-tools/index.json b/site/public/v1/software/eclipse-linux-tools/index.json new file mode 100644 index 000000000000..06ab3754bfbd --- /dev/null +++ b/site/public/v1/software/eclipse-linux-tools/index.json @@ -0,0 +1,19 @@ +{ + "id": 2759, + "slug": "eclipse-linux-tools", + "name": "Eclipse Linux Tools", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72272610" + ], + "created_at": "2026-07-10T10:12:40.582742", + "updated_at": "2026-07-10T10:12:40.582742", + "url": "/v1/software/eclipse-linux-tools" +} diff --git a/site/public/v1/software/eclipse-lsp4e/index.json b/site/public/v1/software/eclipse-lsp4e/index.json new file mode 100644 index 000000000000..875c3a2936f8 --- /dev/null +++ b/site/public/v1/software/eclipse-lsp4e/index.json @@ -0,0 +1,19 @@ +{ + "id": 2760, + "slug": "eclipse-lsp4e", + "name": "Eclipse LSP4E", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76164720" + ], + "created_at": "2026-07-10T10:12:40.582742", + "updated_at": "2026-07-10T10:12:40.582742", + "url": "/v1/software/eclipse-lsp4e" +} diff --git a/site/public/v1/software/eclipse-lsp4j/index.json b/site/public/v1/software/eclipse-lsp4j/index.json new file mode 100644 index 000000000000..a228e9fc98a4 --- /dev/null +++ b/site/public/v1/software/eclipse-lsp4j/index.json @@ -0,0 +1,19 @@ +{ + "id": 2761, + "slug": "eclipse-lsp4j", + "name": "Eclipse LSP4J", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72272613" + ], + "created_at": "2026-07-10T10:12:40.582742", + "updated_at": "2026-07-10T10:12:40.582742", + "url": "/v1/software/eclipse-lsp4j" +} diff --git a/site/public/v1/software/eclipse-lsphub/index.json b/site/public/v1/software/eclipse-lsphub/index.json new file mode 100644 index 000000000000..87bc1a8e4c02 --- /dev/null +++ b/site/public/v1/software/eclipse-lsphub/index.json @@ -0,0 +1,19 @@ +{ + "id": 2762, + "slug": "eclipse-lsphub", + "name": "Eclipse LSPHub", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76169089" + ], + "created_at": "2026-07-10T10:12:40.583767", + "updated_at": "2026-07-10T10:12:40.583767", + "url": "/v1/software/eclipse-lsphub" +} diff --git a/site/public/v1/software/eclipse-lua-development-tools/index.json b/site/public/v1/software/eclipse-lua-development-tools/index.json new file mode 100644 index 000000000000..d9bd63bdf69e --- /dev/null +++ b/site/public/v1/software/eclipse-lua-development-tools/index.json @@ -0,0 +1,19 @@ +{ + "id": 2763, + "slug": "eclipse-lua-development-tools", + "name": "Eclipse Lua Development Tools", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72272592" + ], + "created_at": "2026-07-10T10:12:40.583767", + "updated_at": "2026-07-10T10:12:40.583767", + "url": "/v1/software/eclipse-lua-development-tools" +} diff --git a/site/public/v1/software/eclipse-lyo/index.json b/site/public/v1/software/eclipse-lyo/index.json new file mode 100644 index 000000000000..94c43d246bfc --- /dev/null +++ b/site/public/v1/software/eclipse-lyo/index.json @@ -0,0 +1,19 @@ +{ + "id": 2764, + "slug": "eclipse-lyo", + "name": "Eclipse Lyo", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72274233" + ], + "created_at": "2026-07-10T10:12:40.583767", + "updated_at": "2026-07-10T10:12:40.583767", + "url": "/v1/software/eclipse-lyo" +} diff --git a/site/public/v1/software/eclipse-marketplace-client/index.json b/site/public/v1/software/eclipse-marketplace-client/index.json new file mode 100644 index 000000000000..ca29b9e37363 --- /dev/null +++ b/site/public/v1/software/eclipse-marketplace-client/index.json @@ -0,0 +1,19 @@ +{ + "id": 2765, + "slug": "eclipse-marketplace-client", + "name": "Eclipse Marketplace Client", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72273641" + ], + "created_at": "2026-07-10T10:12:40.583767", + "updated_at": "2026-07-10T10:12:40.583767", + "url": "/v1/software/eclipse-marketplace-client" +} diff --git a/site/public/v1/software/eclipse-maven-integration-for-web-tools-platform/index.json b/site/public/v1/software/eclipse-maven-integration-for-web-tools-platform/index.json new file mode 100644 index 000000000000..fb06fca882c6 --- /dev/null +++ b/site/public/v1/software/eclipse-maven-integration-for-web-tools-platform/index.json @@ -0,0 +1,19 @@ +{ + "id": 2766, + "slug": "eclipse-maven-integration-for-web-tools-platform", + "name": "Eclipse Maven Integration for Web Tools Platform", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76163475" + ], + "created_at": "2026-07-10T10:12:40.584673", + "updated_at": "2026-07-10T10:12:40.584673", + "url": "/v1/software/eclipse-maven-integration-for-web-tools-platform" +} diff --git a/site/public/v1/software/eclipse-maven-integration/index.json b/site/public/v1/software/eclipse-maven-integration/index.json new file mode 100644 index 000000000000..99d07afcd424 --- /dev/null +++ b/site/public/v1/software/eclipse-maven-integration/index.json @@ -0,0 +1,19 @@ +{ + "id": 2767, + "slug": "eclipse-maven-integration", + "name": "Eclipse Maven Integration", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76164706" + ], + "created_at": "2026-07-10T10:12:40.584673", + "updated_at": "2026-07-10T10:12:40.584673", + "url": "/v1/software/eclipse-maven-integration" +} diff --git a/site/public/v1/software/eclipse-mbeddr/index.json b/site/public/v1/software/eclipse-mbeddr/index.json new file mode 100644 index 000000000000..423edd045a0f --- /dev/null +++ b/site/public/v1/software/eclipse-mbeddr/index.json @@ -0,0 +1,19 @@ +{ + "id": 2768, + "slug": "eclipse-mbeddr", + "name": "Eclipse Mbeddr", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76178175" + ], + "created_at": "2026-07-10T10:12:40.584673", + "updated_at": "2026-07-10T10:12:40.584673", + "url": "/v1/software/eclipse-mbeddr" +} diff --git a/site/public/v1/software/eclipse-mdm-bl/index.json b/site/public/v1/software/eclipse-mdm-bl/index.json new file mode 100644 index 000000000000..3e013ed1ac38 --- /dev/null +++ b/site/public/v1/software/eclipse-mdm-bl/index.json @@ -0,0 +1,19 @@ +{ + "id": 2769, + "slug": "eclipse-mdm-bl", + "name": "Eclipse MDM|BL", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76178807" + ], + "created_at": "2026-07-10T10:12:40.585732", + "updated_at": "2026-07-10T10:12:40.585732", + "url": "/v1/software/eclipse-mdm-bl" +} diff --git a/site/public/v1/software/eclipse-mdt-uml2/index.json b/site/public/v1/software/eclipse-mdt-uml2/index.json new file mode 100644 index 000000000000..d64f9bfb4268 --- /dev/null +++ b/site/public/v1/software/eclipse-mdt-uml2/index.json @@ -0,0 +1,19 @@ +{ + "id": 2770, + "slug": "eclipse-mdt-uml2", + "name": "Eclipse MDT UML2", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72272459" + ], + "created_at": "2026-07-10T10:12:40.585732", + "updated_at": "2026-07-10T10:12:40.585732", + "url": "/v1/software/eclipse-mdt-uml2" +} diff --git a/site/public/v1/software/eclipse-mdt-xsd-xml-schema-definition/index.json b/site/public/v1/software/eclipse-mdt-xsd-xml-schema-definition/index.json new file mode 100644 index 000000000000..c0ebaf1990a2 --- /dev/null +++ b/site/public/v1/software/eclipse-mdt-xsd-xml-schema-definition/index.json @@ -0,0 +1,19 @@ +{ + "id": 2771, + "slug": "eclipse-mdt-xsd-xml-schema-definition", + "name": "Eclipse MDT XSD (XML Schema Definition)", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72274238" + ], + "created_at": "2026-07-10T10:12:40.585732", + "updated_at": "2026-07-10T10:12:40.585732", + "url": "/v1/software/eclipse-mdt-xsd-xml-schema-definition" +} diff --git a/site/public/v1/software/eclipse-memory-analyzer/index.json b/site/public/v1/software/eclipse-memory-analyzer/index.json new file mode 100644 index 000000000000..ef08bf18da34 --- /dev/null +++ b/site/public/v1/software/eclipse-memory-analyzer/index.json @@ -0,0 +1,19 @@ +{ + "id": 2772, + "slug": "eclipse-memory-analyzer", + "name": "Eclipse Memory Analyzer", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76164750" + ], + "created_at": "2026-07-10T10:12:40.585732", + "updated_at": "2026-07-10T10:12:40.585732", + "url": "/v1/software/eclipse-memory-analyzer" +} diff --git a/site/public/v1/software/eclipse-microprofile/index.json b/site/public/v1/software/eclipse-microprofile/index.json new file mode 100644 index 000000000000..1a424cc546ad --- /dev/null +++ b/site/public/v1/software/eclipse-microprofile/index.json @@ -0,0 +1,19 @@ +{ + "id": 2773, + "slug": "eclipse-microprofile", + "name": "Eclipse MicroProfile", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72273002" + ], + "created_at": "2026-07-10T10:12:40.586766", + "updated_at": "2026-07-10T10:12:40.586766", + "url": "/v1/software/eclipse-microprofile" +} diff --git a/site/public/v1/software/eclipse-milo/index.json b/site/public/v1/software/eclipse-milo/index.json new file mode 100644 index 000000000000..99976ac8c463 --- /dev/null +++ b/site/public/v1/software/eclipse-milo/index.json @@ -0,0 +1,21 @@ +{ + "id": 2774, + "slug": "eclipse-milo", + "name": "Eclipse Milo", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Eclipse Public License 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76178164" + ], + "created_at": "2026-07-10T10:12:40.586766", + "updated_at": "2026-07-10T10:12:40.586766", + "url": "/v1/software/eclipse-milo" +} diff --git a/site/public/v1/software/eclipse-mita/index.json b/site/public/v1/software/eclipse-mita/index.json new file mode 100644 index 000000000000..db9b6aa58966 --- /dev/null +++ b/site/public/v1/software/eclipse-mita/index.json @@ -0,0 +1,19 @@ +{ + "id": 2775, + "slug": "eclipse-mita", + "name": "Eclipse Mita", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76169272" + ], + "created_at": "2026-07-10T10:12:40.586766", + "updated_at": "2026-07-10T10:12:40.586766", + "url": "/v1/software/eclipse-mita" +} diff --git a/site/public/v1/software/eclipse-mobile-tools-for-java/index.json b/site/public/v1/software/eclipse-mobile-tools-for-java/index.json new file mode 100644 index 000000000000..6308d56d22ee --- /dev/null +++ b/site/public/v1/software/eclipse-mobile-tools-for-java/index.json @@ -0,0 +1,19 @@ +{ + "id": 2776, + "slug": "eclipse-mobile-tools-for-java", + "name": "Eclipse Mobile Tools for Java™", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72272747" + ], + "created_at": "2026-07-10T10:12:40.586766", + "updated_at": "2026-07-10T10:12:40.586766", + "url": "/v1/software/eclipse-mobile-tools-for-java" +} diff --git a/site/public/v1/software/eclipse-model-driven-health-tools/index.json b/site/public/v1/software/eclipse-model-driven-health-tools/index.json new file mode 100644 index 000000000000..7acf00eac144 --- /dev/null +++ b/site/public/v1/software/eclipse-model-driven-health-tools/index.json @@ -0,0 +1,19 @@ +{ + "id": 2777, + "slug": "eclipse-model-driven-health-tools", + "name": "Eclipse Model Driven Health Tools", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72272802" + ], + "created_at": "2026-07-10T10:12:40.586766", + "updated_at": "2026-07-10T10:12:40.586766", + "url": "/v1/software/eclipse-model-driven-health-tools" +} diff --git a/site/public/v1/software/eclipse-model-framework-technology-emft/index.json b/site/public/v1/software/eclipse-model-framework-technology-emft/index.json new file mode 100644 index 000000000000..419120025da0 --- /dev/null +++ b/site/public/v1/software/eclipse-model-framework-technology-emft/index.json @@ -0,0 +1,19 @@ +{ + "id": 2778, + "slug": "eclipse-model-framework-technology-emft", + "name": "Eclipse Model Framework Technology (EMFT)", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72274248" + ], + "created_at": "2026-07-10T10:12:40.587763", + "updated_at": "2026-07-10T10:12:40.587763", + "url": "/v1/software/eclipse-model-framework-technology-emft" +} diff --git a/site/public/v1/software/eclipse-modeling-workflow-engine/index.json b/site/public/v1/software/eclipse-modeling-workflow-engine/index.json new file mode 100644 index 000000000000..4546ebcd1266 --- /dev/null +++ b/site/public/v1/software/eclipse-modeling-workflow-engine/index.json @@ -0,0 +1,19 @@ +{ + "id": 2779, + "slug": "eclipse-modeling-workflow-engine", + "name": "Eclipse Modeling Workflow Engine", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72274275" + ], + "created_at": "2026-07-10T10:12:40.587763", + "updated_at": "2026-07-10T10:12:40.587763", + "url": "/v1/software/eclipse-modeling-workflow-engine" +} diff --git a/site/public/v1/software/eclipse-modisco/index.json b/site/public/v1/software/eclipse-modisco/index.json new file mode 100644 index 000000000000..93a79e78602f --- /dev/null +++ b/site/public/v1/software/eclipse-modisco/index.json @@ -0,0 +1,19 @@ +{ + "id": 2780, + "slug": "eclipse-modisco", + "name": "Eclipse MoDisco", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72274289" + ], + "created_at": "2026-07-10T10:12:40.587763", + "updated_at": "2026-07-10T10:12:40.587763", + "url": "/v1/software/eclipse-modisco" +} diff --git a/site/public/v1/software/eclipse-mojarra/index.json b/site/public/v1/software/eclipse-mojarra/index.json new file mode 100644 index 000000000000..aa6fc073f97d --- /dev/null +++ b/site/public/v1/software/eclipse-mojarra/index.json @@ -0,0 +1,19 @@ +{ + "id": 2781, + "slug": "eclipse-mojarra", + "name": "Eclipse Mojarra", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76176284" + ], + "created_at": "2026-07-10T10:12:40.588760", + "updated_at": "2026-07-10T10:12:40.588760", + "url": "/v1/software/eclipse-mojarra" +} diff --git a/site/public/v1/software/eclipse-mraa/index.json b/site/public/v1/software/eclipse-mraa/index.json new file mode 100644 index 000000000000..b33094ecea18 --- /dev/null +++ b/site/public/v1/software/eclipse-mraa/index.json @@ -0,0 +1,19 @@ +{ + "id": 2782, + "slug": "eclipse-mraa", + "name": "Eclipse MRAA", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76170079" + ], + "created_at": "2026-07-10T10:12:40.588760", + "updated_at": "2026-07-10T10:12:40.588760", + "url": "/v1/software/eclipse-mraa" +} diff --git a/site/public/v1/software/eclipse-n4js/index.json b/site/public/v1/software/eclipse-n4js/index.json new file mode 100644 index 000000000000..b8f5aff3148b --- /dev/null +++ b/site/public/v1/software/eclipse-n4js/index.json @@ -0,0 +1,19 @@ +{ + "id": 2783, + "slug": "eclipse-n4js", + "name": "Eclipse N4JS", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76175349" + ], + "created_at": "2026-07-10T10:12:40.588760", + "updated_at": "2026-07-10T10:12:40.588760", + "url": "/v1/software/eclipse-n4js" +} diff --git a/site/public/v1/software/eclipse-nebula-incubator/index.json b/site/public/v1/software/eclipse-nebula-incubator/index.json new file mode 100644 index 000000000000..39051f6f6162 --- /dev/null +++ b/site/public/v1/software/eclipse-nebula-incubator/index.json @@ -0,0 +1,19 @@ +{ + "id": 2784, + "slug": "eclipse-nebula-incubator", + "name": "Eclipse Nebula Incubator", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76175394" + ], + "created_at": "2026-07-10T10:12:40.588760", + "updated_at": "2026-07-10T10:12:40.588760", + "url": "/v1/software/eclipse-nebula-incubator" +} diff --git a/site/public/v1/software/eclipse-nebula-nattable/index.json b/site/public/v1/software/eclipse-nebula-nattable/index.json new file mode 100644 index 000000000000..f437d75d506c --- /dev/null +++ b/site/public/v1/software/eclipse-nebula-nattable/index.json @@ -0,0 +1,19 @@ +{ + "id": 2785, + "slug": "eclipse-nebula-nattable", + "name": "Eclipse Nebula NatTable", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76164710" + ], + "created_at": "2026-07-10T10:12:40.589744", + "updated_at": "2026-07-10T10:12:40.589744", + "url": "/v1/software/eclipse-nebula-nattable" +} diff --git a/site/public/v1/software/eclipse-nebula-supplemental-widgets-for-swt/index.json b/site/public/v1/software/eclipse-nebula-supplemental-widgets-for-swt/index.json new file mode 100644 index 000000000000..f593789234dc --- /dev/null +++ b/site/public/v1/software/eclipse-nebula-supplemental-widgets-for-swt/index.json @@ -0,0 +1,19 @@ +{ + "id": 2786, + "slug": "eclipse-nebula-supplemental-widgets-for-swt", + "name": "Eclipse Nebula - Supplemental Widgets for SWT", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76163480" + ], + "created_at": "2026-07-10T10:12:40.589744", + "updated_at": "2026-07-10T10:12:40.589744", + "url": "/v1/software/eclipse-nebula-supplemental-widgets-for-swt" +} diff --git a/site/public/v1/software/eclipse-object-teams/index.json b/site/public/v1/software/eclipse-object-teams/index.json new file mode 100644 index 000000000000..63cafa0f0769 --- /dev/null +++ b/site/public/v1/software/eclipse-object-teams/index.json @@ -0,0 +1,19 @@ +{ + "id": 2787, + "slug": "eclipse-object-teams", + "name": "Eclipse Object Teams", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76163615" + ], + "created_at": "2026-07-10T10:12:40.589744", + "updated_at": "2026-07-10T10:12:40.589744", + "url": "/v1/software/eclipse-object-teams" +} diff --git a/site/public/v1/software/eclipse-ocl-object-constraint-language/index.json b/site/public/v1/software/eclipse-ocl-object-constraint-language/index.json new file mode 100644 index 000000000000..64ae55179f0b --- /dev/null +++ b/site/public/v1/software/eclipse-ocl-object-constraint-language/index.json @@ -0,0 +1,19 @@ +{ + "id": 2788, + "slug": "eclipse-ocl-object-constraint-language", + "name": "Eclipse OCL (Object Constraint Language)", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72272404" + ], + "created_at": "2026-07-10T10:12:40.589744", + "updated_at": "2026-07-10T10:12:40.589744", + "url": "/v1/software/eclipse-ocl-object-constraint-language" +} diff --git a/site/public/v1/software/eclipse-ogee/index.json b/site/public/v1/software/eclipse-ogee/index.json new file mode 100644 index 000000000000..28b29b80d7ae --- /dev/null +++ b/site/public/v1/software/eclipse-ogee/index.json @@ -0,0 +1,19 @@ +{ + "id": 2789, + "slug": "eclipse-ogee", + "name": "Eclipse Ogee", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72272469" + ], + "created_at": "2026-07-10T10:12:40.590774", + "updated_at": "2026-07-10T10:12:40.590774", + "url": "/v1/software/eclipse-ogee" +} diff --git a/site/public/v1/software/eclipse-om2m/index.json b/site/public/v1/software/eclipse-om2m/index.json new file mode 100644 index 000000000000..685224d9c5f5 --- /dev/null +++ b/site/public/v1/software/eclipse-om2m/index.json @@ -0,0 +1,19 @@ +{ + "id": 2790, + "slug": "eclipse-om2m", + "name": "Eclipse OM2M", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72274350" + ], + "created_at": "2026-07-10T10:12:40.590774", + "updated_at": "2026-07-10T10:12:40.590774", + "url": "/v1/software/eclipse-om2m" +} diff --git a/site/public/v1/software/eclipse-oomph/index.json b/site/public/v1/software/eclipse-oomph/index.json new file mode 100644 index 000000000000..4b791b54ad2b --- /dev/null +++ b/site/public/v1/software/eclipse-oomph/index.json @@ -0,0 +1,19 @@ +{ + "id": 2791, + "slug": "eclipse-oomph", + "name": "Eclipse Oomph", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76164708" + ], + "created_at": "2026-07-10T10:12:40.590774", + "updated_at": "2026-07-10T10:12:40.590774", + "url": "/v1/software/eclipse-oomph" +} diff --git a/site/public/v1/software/eclipse-open-standard-business-platform/index.json b/site/public/v1/software/eclipse-open-standard-business-platform/index.json new file mode 100644 index 000000000000..36b0b4f0463f --- /dev/null +++ b/site/public/v1/software/eclipse-open-standard-business-platform/index.json @@ -0,0 +1,19 @@ +{ + "id": 2792, + "slug": "eclipse-open-standard-business-platform", + "name": "Eclipse Open Standard Business Platform", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76175443" + ], + "created_at": "2026-07-10T10:12:40.591788", + "updated_at": "2026-07-10T10:12:40.591788", + "url": "/v1/software/eclipse-open-standard-business-platform" +} diff --git a/site/public/v1/software/eclipse-openj9/index.json b/site/public/v1/software/eclipse-openj9/index.json new file mode 100644 index 000000000000..0192983f610f --- /dev/null +++ b/site/public/v1/software/eclipse-openj9/index.json @@ -0,0 +1,19 @@ +{ + "id": 2793, + "slug": "eclipse-openj9", + "name": "Eclipse OpenJ9", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76178792" + ], + "created_at": "2026-07-10T10:12:40.591788", + "updated_at": "2026-07-10T10:12:40.591788", + "url": "/v1/software/eclipse-openj9" +} diff --git a/site/public/v1/software/eclipse-openk-platform/index.json b/site/public/v1/software/eclipse-openk-platform/index.json new file mode 100644 index 000000000000..fffd8b3db499 --- /dev/null +++ b/site/public/v1/software/eclipse-openk-platform/index.json @@ -0,0 +1,19 @@ +{ + "id": 2794, + "slug": "eclipse-openk-platform", + "name": "Eclipse openK platform", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76175458" + ], + "created_at": "2026-07-10T10:12:40.591788", + "updated_at": "2026-07-10T10:12:40.591788", + "url": "/v1/software/eclipse-openk-platform" +} diff --git a/site/public/v1/software/eclipse-openk-user-modules/index.json b/site/public/v1/software/eclipse-openk-user-modules/index.json new file mode 100644 index 000000000000..9b72a4f9c63b --- /dev/null +++ b/site/public/v1/software/eclipse-openk-user-modules/index.json @@ -0,0 +1,19 @@ +{ + "id": 2795, + "slug": "eclipse-openk-user-modules", + "name": "Eclipse openK User Modules", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76169517" + ], + "created_at": "2026-07-10T10:12:40.591788", + "updated_at": "2026-07-10T10:12:40.591788", + "url": "/v1/software/eclipse-openk-user-modules" +} diff --git a/site/public/v1/software/eclipse-openmq/index.json b/site/public/v1/software/eclipse-openmq/index.json new file mode 100644 index 000000000000..c1a2b85843a3 --- /dev/null +++ b/site/public/v1/software/eclipse-openmq/index.json @@ -0,0 +1,19 @@ +{ + "id": 2796, + "slug": "eclipse-openmq", + "name": "Eclipse OpenMQ", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76176298" + ], + "created_at": "2026-07-10T10:12:40.592823", + "updated_at": "2026-07-10T10:12:40.592823", + "url": "/v1/software/eclipse-openmq" +} diff --git a/site/public/v1/software/eclipse-orb/index.json b/site/public/v1/software/eclipse-orb/index.json new file mode 100644 index 000000000000..b2b352ebe38b --- /dev/null +++ b/site/public/v1/software/eclipse-orb/index.json @@ -0,0 +1,19 @@ +{ + "id": 2797, + "slug": "eclipse-orb", + "name": "Eclipse ORB", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76169534" + ], + "created_at": "2026-07-10T10:12:40.592823", + "updated_at": "2026-07-10T10:12:40.592823", + "url": "/v1/software/eclipse-orb" +} diff --git a/site/public/v1/software/eclipse-orbit-project/index.json b/site/public/v1/software/eclipse-orbit-project/index.json new file mode 100644 index 000000000000..e131b7609119 --- /dev/null +++ b/site/public/v1/software/eclipse-orbit-project/index.json @@ -0,0 +1,19 @@ +{ + "id": 2798, + "slug": "eclipse-orbit-project", + "name": "Eclipse Orbit Project", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72274530" + ], + "created_at": "2026-07-10T10:12:40.592823", + "updated_at": "2026-07-10T10:12:40.592823", + "url": "/v1/software/eclipse-orbit-project" +} diff --git a/site/public/v1/software/eclipse-orion/index.json b/site/public/v1/software/eclipse-orion/index.json new file mode 100644 index 000000000000..819bb9046b8a --- /dev/null +++ b/site/public/v1/software/eclipse-orion/index.json @@ -0,0 +1,19 @@ +{ + "id": 2799, + "slug": "eclipse-orion", + "name": "Eclipse Orion", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q12063061" + ], + "created_at": "2026-07-10T10:12:40.592823", + "updated_at": "2026-07-10T10:12:40.592823", + "url": "/v1/software/eclipse-orion" +} diff --git a/site/public/v1/software/eclipse-package-drone/index.json b/site/public/v1/software/eclipse-package-drone/index.json new file mode 100644 index 000000000000..b434a4786c1e --- /dev/null +++ b/site/public/v1/software/eclipse-package-drone/index.json @@ -0,0 +1,19 @@ +{ + "id": 2800, + "slug": "eclipse-package-drone", + "name": "Eclipse Package Drone", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72272907" + ], + "created_at": "2026-07-10T10:12:40.593790", + "updated_at": "2026-07-10T10:12:40.593790", + "url": "/v1/software/eclipse-package-drone" +} diff --git a/site/public/v1/software/eclipse-packaging-project/index.json b/site/public/v1/software/eclipse-packaging-project/index.json new file mode 100644 index 000000000000..a5314d1401dd --- /dev/null +++ b/site/public/v1/software/eclipse-packaging-project/index.json @@ -0,0 +1,19 @@ +{ + "id": 2801, + "slug": "eclipse-packaging-project", + "name": "Eclipse Packaging Project", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72274361" + ], + "created_at": "2026-07-10T10:12:40.593790", + "updated_at": "2026-07-10T10:12:40.593790", + "url": "/v1/software/eclipse-packaging-project" +} diff --git a/site/public/v1/software/eclipse-paho-incubator/index.json b/site/public/v1/software/eclipse-paho-incubator/index.json new file mode 100644 index 000000000000..1e2471c10faa --- /dev/null +++ b/site/public/v1/software/eclipse-paho-incubator/index.json @@ -0,0 +1,19 @@ +{ + "id": 2802, + "slug": "eclipse-paho-incubator", + "name": "Eclipse Paho Incubator", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76175495" + ], + "created_at": "2026-07-10T10:12:40.593790", + "updated_at": "2026-07-10T10:12:40.593790", + "url": "/v1/software/eclipse-paho-incubator" +} diff --git a/site/public/v1/software/eclipse-paho/index.json b/site/public/v1/software/eclipse-paho/index.json new file mode 100644 index 000000000000..54c21eed55a4 --- /dev/null +++ b/site/public/v1/software/eclipse-paho/index.json @@ -0,0 +1,21 @@ +{ + "id": 2803, + "slug": "eclipse-paho", + "name": "Eclipse Paho", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Java" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q55610474" + ], + "created_at": "2026-07-10T10:12:40.593790", + "updated_at": "2026-07-10T10:12:40.593790", + "url": "/v1/software/eclipse-paho" +} diff --git a/site/public/v1/software/eclipse-papyrus-for-real-time-papyrus-rt/index.json b/site/public/v1/software/eclipse-papyrus-for-real-time-papyrus-rt/index.json new file mode 100644 index 000000000000..5659479d947d --- /dev/null +++ b/site/public/v1/software/eclipse-papyrus-for-real-time-papyrus-rt/index.json @@ -0,0 +1,19 @@ +{ + "id": 2804, + "slug": "eclipse-papyrus-for-real-time-papyrus-rt", + "name": "Eclipse Papyrus for Real Time (Papyrus-RT)", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76164714" + ], + "created_at": "2026-07-10T10:12:40.594882", + "updated_at": "2026-07-10T10:12:40.594882", + "url": "/v1/software/eclipse-papyrus-for-real-time-papyrus-rt" +} diff --git a/site/public/v1/software/eclipse-papyrus-for-xtuml/index.json b/site/public/v1/software/eclipse-papyrus-for-xtuml/index.json new file mode 100644 index 000000000000..5097decc5bb5 --- /dev/null +++ b/site/public/v1/software/eclipse-papyrus-for-xtuml/index.json @@ -0,0 +1,19 @@ +{ + "id": 2805, + "slug": "eclipse-papyrus-for-xtuml", + "name": "Eclipse Papyrus for xtUML", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76175530" + ], + "created_at": "2026-07-10T10:12:40.594882", + "updated_at": "2026-07-10T10:12:40.594882", + "url": "/v1/software/eclipse-papyrus-for-xtuml" +} diff --git a/site/public/v1/software/eclipse-parallel-tools-platform-ptp/index.json b/site/public/v1/software/eclipse-parallel-tools-platform-ptp/index.json new file mode 100644 index 000000000000..1df8b9b6b16c --- /dev/null +++ b/site/public/v1/software/eclipse-parallel-tools-platform-ptp/index.json @@ -0,0 +1,19 @@ +{ + "id": 2806, + "slug": "eclipse-parallel-tools-platform-ptp", + "name": "Eclipse Parallel Tools Platform (PTP)", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72274514" + ], + "created_at": "2026-07-10T10:12:40.594882", + "updated_at": "2026-07-10T10:12:40.594882", + "url": "/v1/software/eclipse-parallel-tools-platform-ptp" +} diff --git a/site/public/v1/software/eclipse-passage/index.json b/site/public/v1/software/eclipse-passage/index.json new file mode 100644 index 000000000000..0bbdcb7813bb --- /dev/null +++ b/site/public/v1/software/eclipse-passage/index.json @@ -0,0 +1,19 @@ +{ + "id": 2807, + "slug": "eclipse-passage", + "name": "Eclipse Passage", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76169949" + ], + "created_at": "2026-07-10T10:12:40.594882", + "updated_at": "2026-07-10T10:12:40.594882", + "url": "/v1/software/eclipse-passage" +} diff --git a/site/public/v1/software/eclipse-picasso-a-free-open-source-visualizer-for-convolutional-neural-networks/index.json b/site/public/v1/software/eclipse-picasso-a-free-open-source-visualizer-for-convolutional-neural-networks/index.json new file mode 100644 index 000000000000..8820455394ef --- /dev/null +++ b/site/public/v1/software/eclipse-picasso-a-free-open-source-visualizer-for-convolutional-neural-networks/index.json @@ -0,0 +1,19 @@ +{ + "id": 2808, + "slug": "eclipse-picasso-a-free-open-source-visualizer-for-convolutional-neural-networks", + "name": "Eclipse Picasso: A free open-source visualizer for Convolutional Neural Networks", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76175916" + ], + "created_at": "2026-07-10T10:12:40.595793", + "updated_at": "2026-07-10T10:12:40.595793", + "url": "/v1/software/eclipse-picasso-a-free-open-source-visualizer-for-convolutional-neural-networks" +} diff --git a/site/public/v1/software/eclipse-pmf/index.json b/site/public/v1/software/eclipse-pmf/index.json new file mode 100644 index 000000000000..f107dc5cd040 --- /dev/null +++ b/site/public/v1/software/eclipse-pmf/index.json @@ -0,0 +1,19 @@ +{ + "id": 2809, + "slug": "eclipse-pmf", + "name": "Eclipse PMF", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76175862" + ], + "created_at": "2026-07-10T10:12:40.595793", + "updated_at": "2026-07-10T10:12:40.595793", + "url": "/v1/software/eclipse-pmf" +} diff --git a/site/public/v1/software/eclipse-ponte/index.json b/site/public/v1/software/eclipse-ponte/index.json new file mode 100644 index 000000000000..87d98ebc31a9 --- /dev/null +++ b/site/public/v1/software/eclipse-ponte/index.json @@ -0,0 +1,19 @@ +{ + "id": 2810, + "slug": "eclipse-ponte", + "name": "Eclipse Ponte", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76175874" + ], + "created_at": "2026-07-10T10:12:40.595793", + "updated_at": "2026-07-10T10:12:40.595793", + "url": "/v1/software/eclipse-ponte" +} diff --git a/site/public/v1/software/eclipse-project-for-common-annotations/index.json b/site/public/v1/software/eclipse-project-for-common-annotations/index.json new file mode 100644 index 000000000000..fe385519394e --- /dev/null +++ b/site/public/v1/software/eclipse-project-for-common-annotations/index.json @@ -0,0 +1,19 @@ +{ + "id": 2811, + "slug": "eclipse-project-for-common-annotations", + "name": "Eclipse Project for Common Annotations", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76169289" + ], + "created_at": "2026-07-10T10:12:40.595793", + "updated_at": "2026-07-10T10:12:40.595793", + "url": "/v1/software/eclipse-project-for-common-annotations" +} diff --git a/site/public/v1/software/eclipse-project-for-jax-rs/index.json b/site/public/v1/software/eclipse-project-for-jax-rs/index.json new file mode 100644 index 000000000000..2f560bdd9874 --- /dev/null +++ b/site/public/v1/software/eclipse-project-for-jax-rs/index.json @@ -0,0 +1,19 @@ +{ + "id": 2812, + "slug": "eclipse-project-for-jax-rs", + "name": "Eclipse Project for JAX-RS", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76176309" + ], + "created_at": "2026-07-10T10:12:40.596855", + "updated_at": "2026-07-10T10:12:40.596855", + "url": "/v1/software/eclipse-project-for-jax-rs" +} diff --git a/site/public/v1/software/eclipse-project-for-jms/index.json b/site/public/v1/software/eclipse-project-for-jms/index.json new file mode 100644 index 000000000000..807caae9ce78 --- /dev/null +++ b/site/public/v1/software/eclipse-project-for-jms/index.json @@ -0,0 +1,19 @@ +{ + "id": 2813, + "slug": "eclipse-project-for-jms", + "name": "Eclipse Project for JMS", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76176328" + ], + "created_at": "2026-07-10T10:12:40.596855", + "updated_at": "2026-07-10T10:12:40.596855", + "url": "/v1/software/eclipse-project-for-jms" +} diff --git a/site/public/v1/software/eclipse-project-for-json-processing/index.json b/site/public/v1/software/eclipse-project-for-json-processing/index.json new file mode 100644 index 000000000000..4df60076bb03 --- /dev/null +++ b/site/public/v1/software/eclipse-project-for-json-processing/index.json @@ -0,0 +1,19 @@ +{ + "id": 2814, + "slug": "eclipse-project-for-json-processing", + "name": "Eclipse Project for JSON Processing", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76176344" + ], + "created_at": "2026-07-10T10:12:40.596855", + "updated_at": "2026-07-10T10:12:40.596855", + "url": "/v1/software/eclipse-project-for-json-processing" +} diff --git a/site/public/v1/software/eclipse-project-for-websocket/index.json b/site/public/v1/software/eclipse-project-for-websocket/index.json new file mode 100644 index 000000000000..3c76abcd0af1 --- /dev/null +++ b/site/public/v1/software/eclipse-project-for-websocket/index.json @@ -0,0 +1,19 @@ +{ + "id": 2815, + "slug": "eclipse-project-for-websocket", + "name": "Eclipse Project for WebSocket", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76176361" + ], + "created_at": "2026-07-10T10:12:40.596855", + "updated_at": "2026-07-10T10:12:40.596855", + "url": "/v1/software/eclipse-project-for-websocket" +} diff --git a/site/public/v1/software/eclipse-qvt-operational/index.json b/site/public/v1/software/eclipse-qvt-operational/index.json new file mode 100644 index 000000000000..c82b9c9a5449 --- /dev/null +++ b/site/public/v1/software/eclipse-qvt-operational/index.json @@ -0,0 +1,19 @@ +{ + "id": 2816, + "slug": "eclipse-qvt-operational", + "name": "Eclipse QVT Operational", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72272373" + ], + "created_at": "2026-07-10T10:12:40.597874", + "updated_at": "2026-07-10T10:12:40.597874", + "url": "/v1/software/eclipse-qvt-operational" +} diff --git a/site/public/v1/software/eclipse-qvtd-qvt-declarative/index.json b/site/public/v1/software/eclipse-qvtd-qvt-declarative/index.json new file mode 100644 index 000000000000..d517dc93ed4b --- /dev/null +++ b/site/public/v1/software/eclipse-qvtd-qvt-declarative/index.json @@ -0,0 +1,19 @@ +{ + "id": 2817, + "slug": "eclipse-qvtd-qvt-declarative", + "name": "Eclipse QVTd (QVT Declarative)", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72272701" + ], + "created_at": "2026-07-10T10:12:40.597874", + "updated_at": "2026-07-10T10:12:40.597874", + "url": "/v1/software/eclipse-qvtd-qvt-declarative" +} diff --git a/site/public/v1/software/eclipse-rcp-testing-tool/index.json b/site/public/v1/software/eclipse-rcp-testing-tool/index.json new file mode 100644 index 000000000000..33f404201a94 --- /dev/null +++ b/site/public/v1/software/eclipse-rcp-testing-tool/index.json @@ -0,0 +1,19 @@ +{ + "id": 2818, + "slug": "eclipse-rcp-testing-tool", + "name": "Eclipse RCP Testing Tool", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76164190" + ], + "created_at": "2026-07-10T10:12:40.597874", + "updated_at": "2026-07-10T10:12:40.597874", + "url": "/v1/software/eclipse-rcp-testing-tool" +} diff --git a/site/public/v1/software/eclipse-reddeer/index.json b/site/public/v1/software/eclipse-reddeer/index.json new file mode 100644 index 000000000000..a46321d67a35 --- /dev/null +++ b/site/public/v1/software/eclipse-reddeer/index.json @@ -0,0 +1,21 @@ +{ + "id": 2819, + "slug": "eclipse-reddeer", + "name": "Eclipse RedDeer", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Eclipse Public License 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76166033" + ], + "created_at": "2026-07-10T10:12:40.597874", + "updated_at": "2026-07-10T10:12:40.597874", + "url": "/v1/software/eclipse-reddeer" +} diff --git a/site/public/v1/software/eclipse-remus/index.json b/site/public/v1/software/eclipse-remus/index.json new file mode 100644 index 000000000000..77a919193be4 --- /dev/null +++ b/site/public/v1/software/eclipse-remus/index.json @@ -0,0 +1,19 @@ +{ + "id": 2820, + "slug": "eclipse-remus", + "name": "Eclipse Remus", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76175587" + ], + "created_at": "2026-07-10T10:12:40.598866", + "updated_at": "2026-07-10T10:12:40.598866", + "url": "/v1/software/eclipse-remus" +} diff --git a/site/public/v1/software/eclipse-rich-beans/index.json b/site/public/v1/software/eclipse-rich-beans/index.json new file mode 100644 index 000000000000..01d6dec86db9 --- /dev/null +++ b/site/public/v1/software/eclipse-rich-beans/index.json @@ -0,0 +1,19 @@ +{ + "id": 2821, + "slug": "eclipse-rich-beans", + "name": "Eclipse Rich Beans", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76175600" + ], + "created_at": "2026-07-10T10:12:40.598866", + "updated_at": "2026-07-10T10:12:40.598866", + "url": "/v1/software/eclipse-rich-beans" +} diff --git a/site/public/v1/software/eclipse-rise-v2g/index.json b/site/public/v1/software/eclipse-rise-v2g/index.json new file mode 100644 index 000000000000..512e5697caf3 --- /dev/null +++ b/site/public/v1/software/eclipse-rise-v2g/index.json @@ -0,0 +1,19 @@ +{ + "id": 2822, + "slug": "eclipse-rise-v2g", + "name": "Eclipse RISE V2G", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76165882" + ], + "created_at": "2026-07-10T10:12:40.598866", + "updated_at": "2026-07-10T10:12:40.598866", + "url": "/v1/software/eclipse-rise-v2g" +} diff --git a/site/public/v1/software/eclipse-runtime-packaging-project/index.json b/site/public/v1/software/eclipse-runtime-packaging-project/index.json new file mode 100644 index 000000000000..565d0038fc97 --- /dev/null +++ b/site/public/v1/software/eclipse-runtime-packaging-project/index.json @@ -0,0 +1,19 @@ +{ + "id": 2823, + "slug": "eclipse-runtime-packaging-project", + "name": "Eclipse Runtime Packaging Project", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72274502" + ], + "created_at": "2026-07-10T10:12:40.598866", + "updated_at": "2026-07-10T10:12:40.599853", + "url": "/v1/software/eclipse-runtime-packaging-project" +} diff --git a/site/public/v1/software/eclipse-sapphire/index.json b/site/public/v1/software/eclipse-sapphire/index.json new file mode 100644 index 000000000000..531ada734d22 --- /dev/null +++ b/site/public/v1/software/eclipse-sapphire/index.json @@ -0,0 +1,19 @@ +{ + "id": 2824, + "slug": "eclipse-sapphire", + "name": "Eclipse Sapphire", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72274435" + ], + "created_at": "2026-07-10T10:12:40.599853", + "updated_at": "2026-07-10T10:12:40.599853", + "url": "/v1/software/eclipse-sapphire" +} diff --git a/site/public/v1/software/eclipse-scanning/index.json b/site/public/v1/software/eclipse-scanning/index.json new file mode 100644 index 000000000000..a44c0374006e --- /dev/null +++ b/site/public/v1/software/eclipse-scanning/index.json @@ -0,0 +1,19 @@ +{ + "id": 2825, + "slug": "eclipse-scanning", + "name": "Eclipse Scanning", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76175683" + ], + "created_at": "2026-07-10T10:12:40.599853", + "updated_at": "2026-07-10T10:12:40.599853", + "url": "/v1/software/eclipse-scanning" +} diff --git a/site/public/v1/software/eclipse-science/index.json b/site/public/v1/software/eclipse-science/index.json new file mode 100644 index 000000000000..d4161dd14e96 --- /dev/null +++ b/site/public/v1/software/eclipse-science/index.json @@ -0,0 +1,19 @@ +{ + "id": 2826, + "slug": "eclipse-science", + "name": "Eclipse Science", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76175848" + ], + "created_at": "2026-07-10T10:12:40.599853", + "updated_at": "2026-07-10T10:12:40.599853", + "url": "/v1/software/eclipse-science" +} diff --git a/site/public/v1/software/eclipse-scout/index.json b/site/public/v1/software/eclipse-scout/index.json new file mode 100644 index 000000000000..859d41c5f202 --- /dev/null +++ b/site/public/v1/software/eclipse-scout/index.json @@ -0,0 +1,19 @@ +{ + "id": 2827, + "slug": "eclipse-scout", + "name": "Eclipse Scout", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76166194" + ], + "created_at": "2026-07-10T10:12:40.600898", + "updated_at": "2026-07-10T10:12:40.600898", + "url": "/v1/software/eclipse-scout" +} diff --git a/site/public/v1/software/eclipse-seco-blocks/index.json b/site/public/v1/software/eclipse-seco-blocks/index.json new file mode 100644 index 000000000000..ca90b2317282 --- /dev/null +++ b/site/public/v1/software/eclipse-seco-blocks/index.json @@ -0,0 +1,19 @@ +{ + "id": 2828, + "slug": "eclipse-seco-blocks", + "name": "Eclipse SeCo Blocks", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q96652471" + ], + "created_at": "2026-07-10T10:12:40.600898", + "updated_at": "2026-07-10T10:12:40.600898", + "url": "/v1/software/eclipse-seco-blocks" +} diff --git a/site/public/v1/software/eclipse-sensinact/index.json b/site/public/v1/software/eclipse-sensinact/index.json new file mode 100644 index 000000000000..f021158db7eb --- /dev/null +++ b/site/public/v1/software/eclipse-sensinact/index.json @@ -0,0 +1,19 @@ +{ + "id": 2829, + "slug": "eclipse-sensinact", + "name": "Eclipse sensiNact", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72272970" + ], + "created_at": "2026-07-10T10:12:40.600898", + "updated_at": "2026-07-10T10:12:40.600898", + "url": "/v1/software/eclipse-sensinact" +} diff --git a/site/public/v1/software/eclipse-shellwax/index.json b/site/public/v1/software/eclipse-shellwax/index.json new file mode 100644 index 000000000000..e65066e6deaf --- /dev/null +++ b/site/public/v1/software/eclipse-shellwax/index.json @@ -0,0 +1,19 @@ +{ + "id": 2830, + "slug": "eclipse-shellwax", + "name": "Eclipse ShellWax", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76174564" + ], + "created_at": "2026-07-10T10:12:40.600898", + "updated_at": "2026-07-10T10:12:40.600898", + "url": "/v1/software/eclipse-shellwax" +} diff --git a/site/public/v1/software/eclipse-sim-openpass/index.json b/site/public/v1/software/eclipse-sim-openpass/index.json new file mode 100644 index 000000000000..a7655cd3d800 --- /dev/null +++ b/site/public/v1/software/eclipse-sim-openpass/index.json @@ -0,0 +1,19 @@ +{ + "id": 2831, + "slug": "eclipse-sim-openpass", + "name": "Eclipse sim@openPASS", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76166896" + ], + "created_at": "2026-07-10T10:12:40.601867", + "updated_at": "2026-07-10T10:12:40.601867", + "url": "/v1/software/eclipse-sim-openpass" +} diff --git a/site/public/v1/software/eclipse-smarthome/index.json b/site/public/v1/software/eclipse-smarthome/index.json new file mode 100644 index 000000000000..182e13b6c905 --- /dev/null +++ b/site/public/v1/software/eclipse-smarthome/index.json @@ -0,0 +1,19 @@ +{ + "id": 2832, + "slug": "eclipse-smarthome", + "name": "Eclipse SmartHome", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76164715" + ], + "created_at": "2026-07-10T10:12:40.601867", + "updated_at": "2026-07-10T10:12:40.601867", + "url": "/v1/software/eclipse-smarthome" +} diff --git a/site/public/v1/software/eclipse-smartmdsd/index.json b/site/public/v1/software/eclipse-smartmdsd/index.json new file mode 100644 index 000000000000..c30316af8ae7 --- /dev/null +++ b/site/public/v1/software/eclipse-smartmdsd/index.json @@ -0,0 +1,19 @@ +{ + "id": 2833, + "slug": "eclipse-smartmdsd", + "name": "Eclipse SmartMDSD", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q99482942" + ], + "created_at": "2026-07-10T10:12:40.601867", + "updated_at": "2026-07-10T10:12:40.601867", + "url": "/v1/software/eclipse-smartmdsd" +} diff --git a/site/public/v1/software/eclipse-spatio-temporal-epidemiological-modeler/index.json b/site/public/v1/software/eclipse-spatio-temporal-epidemiological-modeler/index.json new file mode 100644 index 000000000000..b5897bb6c1f3 --- /dev/null +++ b/site/public/v1/software/eclipse-spatio-temporal-epidemiological-modeler/index.json @@ -0,0 +1,19 @@ +{ + "id": 2834, + "slug": "eclipse-spatio-temporal-epidemiological-modeler", + "name": "Eclipse Spatio-Temporal Epidemiological Modeler", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72274450" + ], + "created_at": "2026-07-10T10:12:40.601867", + "updated_at": "2026-07-10T10:12:40.601867", + "url": "/v1/software/eclipse-spatio-temporal-epidemiological-modeler" +} diff --git a/site/public/v1/software/eclipse-sphinx/index.json b/site/public/v1/software/eclipse-sphinx/index.json new file mode 100644 index 000000000000..9bc03a131b51 --- /dev/null +++ b/site/public/v1/software/eclipse-sphinx/index.json @@ -0,0 +1,19 @@ +{ + "id": 2835, + "slug": "eclipse-sphinx", + "name": "Eclipse Sphinx", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72272734" + ], + "created_at": "2026-07-10T10:12:40.602909", + "updated_at": "2026-07-10T10:12:40.602909", + "url": "/v1/software/eclipse-sphinx" +} diff --git a/site/public/v1/software/eclipse-statet-tooling-for-the-r-language/index.json b/site/public/v1/software/eclipse-statet-tooling-for-the-r-language/index.json new file mode 100644 index 000000000000..a3da9c3de8ab --- /dev/null +++ b/site/public/v1/software/eclipse-statet-tooling-for-the-r-language/index.json @@ -0,0 +1,19 @@ +{ + "id": 2836, + "slug": "eclipse-statet-tooling-for-the-r-language", + "name": "Eclipse StatET: Tooling for the R language", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76175812" + ], + "created_at": "2026-07-10T10:12:40.602909", + "updated_at": "2026-07-10T10:12:40.602909", + "url": "/v1/software/eclipse-statet-tooling-for-the-r-language" +} diff --git a/site/public/v1/software/eclipse-steady/index.json b/site/public/v1/software/eclipse-steady/index.json new file mode 100644 index 000000000000..222026b84057 --- /dev/null +++ b/site/public/v1/software/eclipse-steady/index.json @@ -0,0 +1,19 @@ +{ + "id": 2837, + "slug": "eclipse-steady", + "name": "Eclipse Steady", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q96072018" + ], + "created_at": "2026-07-10T10:12:40.602909", + "updated_at": "2026-07-10T10:12:40.602909", + "url": "/v1/software/eclipse-steady" +} diff --git a/site/public/v1/software/eclipse-streamsheets/index.json b/site/public/v1/software/eclipse-streamsheets/index.json new file mode 100644 index 000000000000..1f39a6b12c09 --- /dev/null +++ b/site/public/v1/software/eclipse-streamsheets/index.json @@ -0,0 +1,19 @@ +{ + "id": 2838, + "slug": "eclipse-streamsheets", + "name": "Eclipse Streamsheets", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q96652473" + ], + "created_at": "2026-07-10T10:12:40.602909", + "updated_at": "2026-07-10T10:12:40.602909", + "url": "/v1/software/eclipse-streamsheets" +} diff --git a/site/public/v1/software/eclipse-subversive-svn-team-provider/index.json b/site/public/v1/software/eclipse-subversive-svn-team-provider/index.json new file mode 100644 index 000000000000..b90bda3263d1 --- /dev/null +++ b/site/public/v1/software/eclipse-subversive-svn-team-provider/index.json @@ -0,0 +1,19 @@ +{ + "id": 2839, + "slug": "eclipse-subversive-svn-team-provider", + "name": "Eclipse Subversive SVN Team Provider", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76164241" + ], + "created_at": "2026-07-10T10:12:40.603863", + "updated_at": "2026-07-10T10:12:40.603863", + "url": "/v1/software/eclipse-subversive-svn-team-provider" +} diff --git a/site/public/v1/software/eclipse-sw360/index.json b/site/public/v1/software/eclipse-sw360/index.json new file mode 100644 index 000000000000..c2c6157403eb --- /dev/null +++ b/site/public/v1/software/eclipse-sw360/index.json @@ -0,0 +1,19 @@ +{ + "id": 2840, + "slug": "eclipse-sw360", + "name": "Eclipse SW360", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76176557" + ], + "created_at": "2026-07-10T10:12:40.603863", + "updated_at": "2026-07-10T10:12:40.603863", + "url": "/v1/software/eclipse-sw360" +} diff --git a/site/public/v1/software/eclipse-sw360antenna/index.json b/site/public/v1/software/eclipse-sw360antenna/index.json new file mode 100644 index 000000000000..c28f800617c4 --- /dev/null +++ b/site/public/v1/software/eclipse-sw360antenna/index.json @@ -0,0 +1,19 @@ +{ + "id": 2841, + "slug": "eclipse-sw360antenna", + "name": "Eclipse SW360antenna", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76174483" + ], + "created_at": "2026-07-10T10:12:40.603863", + "updated_at": "2026-07-10T10:12:40.603863", + "url": "/v1/software/eclipse-sw360antenna" +} diff --git a/site/public/v1/software/eclipse-swtbot/index.json b/site/public/v1/software/eclipse-swtbot/index.json new file mode 100644 index 000000000000..96b3892f761a --- /dev/null +++ b/site/public/v1/software/eclipse-swtbot/index.json @@ -0,0 +1,21 @@ +{ + "id": 2842, + "slug": "eclipse-swtbot", + "name": "Eclipse SWTBot", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Eclipse Public License 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72273098" + ], + "created_at": "2026-07-10T10:12:40.603863", + "updated_at": "2026-07-10T10:12:40.603863", + "url": "/v1/software/eclipse-swtbot" +} diff --git a/site/public/v1/software/eclipse-systemfocus/index.json b/site/public/v1/software/eclipse-systemfocus/index.json new file mode 100644 index 000000000000..7369dc597480 --- /dev/null +++ b/site/public/v1/software/eclipse-systemfocus/index.json @@ -0,0 +1,19 @@ +{ + "id": 2843, + "slug": "eclipse-systemfocus", + "name": "Eclipse SystemFOCUS", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76176573" + ], + "created_at": "2026-07-10T10:12:40.604859", + "updated_at": "2026-07-10T10:12:40.604859", + "url": "/v1/software/eclipse-systemfocus" +} diff --git a/site/public/v1/software/eclipse-tahu/index.json b/site/public/v1/software/eclipse-tahu/index.json new file mode 100644 index 000000000000..2561a9e143cc --- /dev/null +++ b/site/public/v1/software/eclipse-tahu/index.json @@ -0,0 +1,19 @@ +{ + "id": 2844, + "slug": "eclipse-tahu", + "name": "Eclipse Tahu", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76168734" + ], + "created_at": "2026-07-10T10:12:40.604859", + "updated_at": "2026-07-10T10:12:40.604859", + "url": "/v1/software/eclipse-tahu" +} diff --git a/site/public/v1/software/eclipse-target-communication-framework/index.json b/site/public/v1/software/eclipse-target-communication-framework/index.json new file mode 100644 index 000000000000..eeb48e3f6fa6 --- /dev/null +++ b/site/public/v1/software/eclipse-target-communication-framework/index.json @@ -0,0 +1,19 @@ +{ + "id": 2845, + "slug": "eclipse-target-communication-framework", + "name": "Eclipse Target Communication Framework", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76167010" + ], + "created_at": "2026-07-10T10:12:40.604859", + "updated_at": "2026-07-10T10:12:40.604859", + "url": "/v1/software/eclipse-target-communication-framework" +} diff --git a/site/public/v1/software/eclipse-target-management/index.json b/site/public/v1/software/eclipse-target-management/index.json new file mode 100644 index 000000000000..a77fba5541df --- /dev/null +++ b/site/public/v1/software/eclipse-target-management/index.json @@ -0,0 +1,19 @@ +{ + "id": 2846, + "slug": "eclipse-target-management", + "name": "Eclipse Target Management", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76167028" + ], + "created_at": "2026-07-10T10:12:40.604859", + "updated_at": "2026-07-10T10:12:40.604859", + "url": "/v1/software/eclipse-target-management" +} diff --git a/site/public/v1/software/eclipse-tea-tasking-engine-advanced/index.json b/site/public/v1/software/eclipse-tea-tasking-engine-advanced/index.json new file mode 100644 index 000000000000..30153bb7195e --- /dev/null +++ b/site/public/v1/software/eclipse-tea-tasking-engine-advanced/index.json @@ -0,0 +1,19 @@ +{ + "id": 2847, + "slug": "eclipse-tea-tasking-engine-advanced", + "name": "Eclipse TEA (Tasking Engine Advanced)", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76164722" + ], + "created_at": "2026-07-10T10:12:40.605875", + "updated_at": "2026-07-10T10:12:40.605875", + "url": "/v1/software/eclipse-tea-tasking-engine-advanced" +} diff --git a/site/public/v1/software/eclipse-texlipse/index.json b/site/public/v1/software/eclipse-texlipse/index.json new file mode 100644 index 000000000000..745f2db370b0 --- /dev/null +++ b/site/public/v1/software/eclipse-texlipse/index.json @@ -0,0 +1,19 @@ +{ + "id": 2848, + "slug": "eclipse-texlipse", + "name": "Eclipse TeXlipse", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76164717" + ], + "created_at": "2026-07-10T10:12:40.605875", + "updated_at": "2026-07-10T10:12:40.605875", + "url": "/v1/software/eclipse-texlipse" +} diff --git a/site/public/v1/software/eclipse-thingweb/index.json b/site/public/v1/software/eclipse-thingweb/index.json new file mode 100644 index 000000000000..da63df217d51 --- /dev/null +++ b/site/public/v1/software/eclipse-thingweb/index.json @@ -0,0 +1,19 @@ +{ + "id": 2849, + "slug": "eclipse-thingweb", + "name": "Eclipse Thingweb", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76174996" + ], + "created_at": "2026-07-10T10:12:40.605875", + "updated_at": "2026-07-10T10:12:40.605875", + "url": "/v1/software/eclipse-thingweb" +} diff --git a/site/public/v1/software/eclipse-thym/index.json b/site/public/v1/software/eclipse-thym/index.json new file mode 100644 index 000000000000..ff7cbcacdde5 --- /dev/null +++ b/site/public/v1/software/eclipse-thym/index.json @@ -0,0 +1,19 @@ +{ + "id": 2850, + "slug": "eclipse-thym", + "name": "Eclipse Thym", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76176234" + ], + "created_at": "2026-07-10T10:12:40.606882", + "updated_at": "2026-07-10T10:12:40.606882", + "url": "/v1/software/eclipse-thym" +} diff --git a/site/public/v1/software/eclipse-tinydtls/index.json b/site/public/v1/software/eclipse-tinydtls/index.json new file mode 100644 index 000000000000..7ca283a971ba --- /dev/null +++ b/site/public/v1/software/eclipse-tinydtls/index.json @@ -0,0 +1,19 @@ +{ + "id": 2851, + "slug": "eclipse-tinydtls", + "name": "Eclipse tinydtls", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76176219" + ], + "created_at": "2026-07-10T10:12:40.606882", + "updated_at": "2026-07-10T10:12:40.606882", + "url": "/v1/software/eclipse-tinydtls" +} diff --git a/site/public/v1/software/eclipse-titan/index.json b/site/public/v1/software/eclipse-titan/index.json new file mode 100644 index 000000000000..e3d1be26cae5 --- /dev/null +++ b/site/public/v1/software/eclipse-titan/index.json @@ -0,0 +1,19 @@ +{ + "id": 2852, + "slug": "eclipse-titan", + "name": "Eclipse Titan", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72272987" + ], + "created_at": "2026-07-10T10:12:40.606882", + "updated_at": "2026-07-10T10:12:40.606882", + "url": "/v1/software/eclipse-titan" +} diff --git a/site/public/v1/software/eclipse-tm4e-textmate-support-in-the-eclipse-ide/index.json b/site/public/v1/software/eclipse-tm4e-textmate-support-in-the-eclipse-ide/index.json new file mode 100644 index 000000000000..558afc91e769 --- /dev/null +++ b/site/public/v1/software/eclipse-tm4e-textmate-support-in-the-eclipse-ide/index.json @@ -0,0 +1,19 @@ +{ + "id": 2853, + "slug": "eclipse-tm4e-textmate-support-in-the-eclipse-ide", + "name": "Eclipse TM4E - TextMate support in the Eclipse IDE", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76166058" + ], + "created_at": "2026-07-10T10:12:40.606882", + "updated_at": "2026-07-10T10:12:40.606882", + "url": "/v1/software/eclipse-tm4e-textmate-support-in-the-eclipse-ide" +} diff --git a/site/public/v1/software/eclipse-tools-for-cloud-foundry/index.json b/site/public/v1/software/eclipse-tools-for-cloud-foundry/index.json new file mode 100644 index 000000000000..3a998a1493bd --- /dev/null +++ b/site/public/v1/software/eclipse-tools-for-cloud-foundry/index.json @@ -0,0 +1,19 @@ +{ + "id": 2854, + "slug": "eclipse-tools-for-cloud-foundry", + "name": "Eclipse Tools for Cloud Foundry", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72272752" + ], + "created_at": "2026-07-10T10:12:40.607887", + "updated_at": "2026-07-10T10:12:40.607887", + "url": "/v1/software/eclipse-tools-for-cloud-foundry" +} diff --git a/site/public/v1/software/eclipse-trace-compass-incubator/index.json b/site/public/v1/software/eclipse-trace-compass-incubator/index.json new file mode 100644 index 000000000000..98e05f926b09 --- /dev/null +++ b/site/public/v1/software/eclipse-trace-compass-incubator/index.json @@ -0,0 +1,19 @@ +{ + "id": 2855, + "slug": "eclipse-trace-compass-incubator", + "name": "Eclipse Trace Compass Incubator", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76176202" + ], + "created_at": "2026-07-10T10:12:40.607887", + "updated_at": "2026-07-10T10:12:40.607887", + "url": "/v1/software/eclipse-trace-compass-incubator" +} diff --git a/site/public/v1/software/eclipse-trace-compass/index.json b/site/public/v1/software/eclipse-trace-compass/index.json new file mode 100644 index 000000000000..897ed7ff424d --- /dev/null +++ b/site/public/v1/software/eclipse-trace-compass/index.json @@ -0,0 +1,21 @@ +{ + "id": 2856, + "slug": "eclipse-trace-compass", + "name": "Eclipse Trace Compass", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Eclipse Public License 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72272475" + ], + "created_at": "2026-07-10T10:12:40.607887", + "updated_at": "2026-07-10T10:12:40.607887", + "url": "/v1/software/eclipse-trace-compass" +} diff --git a/site/public/v1/software/eclipse-transformer/index.json b/site/public/v1/software/eclipse-transformer/index.json new file mode 100644 index 000000000000..bd6e45e4aeae --- /dev/null +++ b/site/public/v1/software/eclipse-transformer/index.json @@ -0,0 +1,19 @@ +{ + "id": 2857, + "slug": "eclipse-transformer", + "name": "Eclipse Transformer", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q99482938" + ], + "created_at": "2026-07-10T10:12:40.607887", + "updated_at": "2026-07-10T10:12:40.607887", + "url": "/v1/software/eclipse-transformer" +} diff --git a/site/public/v1/software/eclipse-triquetrum/index.json b/site/public/v1/software/eclipse-triquetrum/index.json new file mode 100644 index 000000000000..86030d8109ee --- /dev/null +++ b/site/public/v1/software/eclipse-triquetrum/index.json @@ -0,0 +1,19 @@ +{ + "id": 2858, + "slug": "eclipse-triquetrum", + "name": "Eclipse Triquetrum", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76166746" + ], + "created_at": "2026-07-10T10:12:40.607887", + "updated_at": "2026-07-10T10:12:40.607887", + "url": "/v1/software/eclipse-triquetrum" +} diff --git a/site/public/v1/software/eclipse-tycho/index.json b/site/public/v1/software/eclipse-tycho/index.json new file mode 100644 index 000000000000..7590bb59a41b --- /dev/null +++ b/site/public/v1/software/eclipse-tycho/index.json @@ -0,0 +1,19 @@ +{ + "id": 2859, + "slug": "eclipse-tycho", + "name": "Eclipse Tycho", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76167049" + ], + "created_at": "2026-07-10T10:12:40.607887", + "updated_at": "2026-07-10T10:12:40.607887", + "url": "/v1/software/eclipse-tycho" +} diff --git a/site/public/v1/software/eclipse-uml-generators/index.json b/site/public/v1/software/eclipse-uml-generators/index.json new file mode 100644 index 000000000000..ede8af71977d --- /dev/null +++ b/site/public/v1/software/eclipse-uml-generators/index.json @@ -0,0 +1,19 @@ +{ + "id": 2860, + "slug": "eclipse-uml-generators", + "name": "Eclipse UML Generators", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72273106" + ], + "created_at": "2026-07-10T10:12:40.609393", + "updated_at": "2026-07-10T10:12:40.609393", + "url": "/v1/software/eclipse-uml-generators" +} diff --git a/site/public/v1/software/eclipse-uml-profiles-repository/index.json b/site/public/v1/software/eclipse-uml-profiles-repository/index.json new file mode 100644 index 000000000000..01acb55262f1 --- /dev/null +++ b/site/public/v1/software/eclipse-uml-profiles-repository/index.json @@ -0,0 +1,19 @@ +{ + "id": 2861, + "slug": "eclipse-uml-profiles-repository", + "name": "Eclipse UML Profiles Repository", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72272806" + ], + "created_at": "2026-07-10T10:12:40.609393", + "updated_at": "2026-07-10T10:12:40.609393", + "url": "/v1/software/eclipse-uml-profiles-repository" +} diff --git a/site/public/v1/software/eclipse-unide/index.json b/site/public/v1/software/eclipse-unide/index.json new file mode 100644 index 000000000000..e018d7d65210 --- /dev/null +++ b/site/public/v1/software/eclipse-unide/index.json @@ -0,0 +1,19 @@ +{ + "id": 2862, + "slug": "eclipse-unide", + "name": "Eclipse Unide", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76175997" + ], + "created_at": "2026-07-10T10:12:40.609393", + "updated_at": "2026-07-10T10:12:40.609393", + "url": "/v1/software/eclipse-unide" +} diff --git a/site/public/v1/software/eclipse-uomo/index.json b/site/public/v1/software/eclipse-uomo/index.json new file mode 100644 index 000000000000..bb436fc975de --- /dev/null +++ b/site/public/v1/software/eclipse-uomo/index.json @@ -0,0 +1,19 @@ +{ + "id": 2863, + "slug": "eclipse-uomo", + "name": "Eclipse UOMo", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76166920" + ], + "created_at": "2026-07-10T10:12:40.610405", + "updated_at": "2026-07-10T10:12:40.610405", + "url": "/v1/software/eclipse-uomo" +} diff --git a/site/public/v1/software/eclipse-user-storage-service-sdk/index.json b/site/public/v1/software/eclipse-user-storage-service-sdk/index.json new file mode 100644 index 000000000000..21c6948baf18 --- /dev/null +++ b/site/public/v1/software/eclipse-user-storage-service-sdk/index.json @@ -0,0 +1,19 @@ +{ + "id": 2864, + "slug": "eclipse-user-storage-service-sdk", + "name": "Eclipse User Storage Service SDK", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72273645" + ], + "created_at": "2026-07-10T10:12:40.610405", + "updated_at": "2026-07-10T10:12:40.610405", + "url": "/v1/software/eclipse-user-storage-service-sdk" +} diff --git a/site/public/v1/software/eclipse-vert-x/index.json b/site/public/v1/software/eclipse-vert-x/index.json new file mode 100644 index 000000000000..4b4b9aac9128 --- /dev/null +++ b/site/public/v1/software/eclipse-vert-x/index.json @@ -0,0 +1,19 @@ +{ + "id": 2865, + "slug": "eclipse-vert-x", + "name": "Eclipse Vert.x", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72273080" + ], + "created_at": "2026-07-10T10:12:40.610405", + "updated_at": "2026-07-10T10:12:40.610405", + "url": "/v1/software/eclipse-vert-x" +} diff --git a/site/public/v1/software/eclipse-viatra/index.json b/site/public/v1/software/eclipse-viatra/index.json new file mode 100644 index 000000000000..f0ee214a67fc --- /dev/null +++ b/site/public/v1/software/eclipse-viatra/index.json @@ -0,0 +1,19 @@ +{ + "id": 2866, + "slug": "eclipse-viatra", + "name": "Eclipse VIATRA", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72273120" + ], + "created_at": "2026-07-10T10:12:40.610405", + "updated_at": "2026-07-10T10:12:40.610405", + "url": "/v1/software/eclipse-viatra" +} diff --git a/site/public/v1/software/eclipse-visual-editor-for-xml/index.json b/site/public/v1/software/eclipse-visual-editor-for-xml/index.json new file mode 100644 index 000000000000..975d1afa7c9e --- /dev/null +++ b/site/public/v1/software/eclipse-visual-editor-for-xml/index.json @@ -0,0 +1,19 @@ +{ + "id": 2867, + "slug": "eclipse-visual-editor-for-xml", + "name": "Eclipse Visual Editor for XML", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76165206" + ], + "created_at": "2026-07-10T10:12:40.611403", + "updated_at": "2026-07-10T10:12:40.611403", + "url": "/v1/software/eclipse-visual-editor-for-xml" +} diff --git a/site/public/v1/software/eclipse-vorto/index.json b/site/public/v1/software/eclipse-vorto/index.json new file mode 100644 index 000000000000..4c3cb6ef1409 --- /dev/null +++ b/site/public/v1/software/eclipse-vorto/index.json @@ -0,0 +1,19 @@ +{ + "id": 2868, + "slug": "eclipse-vorto", + "name": "Eclipse Vorto", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72273654" + ], + "created_at": "2026-07-10T10:12:40.611403", + "updated_at": "2026-07-10T10:12:40.611403", + "url": "/v1/software/eclipse-vorto" +} diff --git a/site/public/v1/software/eclipse-wakaama/index.json b/site/public/v1/software/eclipse-wakaama/index.json new file mode 100644 index 000000000000..f8509884a467 --- /dev/null +++ b/site/public/v1/software/eclipse-wakaama/index.json @@ -0,0 +1,19 @@ +{ + "id": 2869, + "slug": "eclipse-wakaama", + "name": "Eclipse Wakaama", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76168752" + ], + "created_at": "2026-07-10T10:12:40.611403", + "updated_at": "2026-07-10T10:12:40.611403", + "url": "/v1/software/eclipse-wakaama" +} diff --git a/site/public/v1/software/eclipse-whiskers/index.json b/site/public/v1/software/eclipse-whiskers/index.json new file mode 100644 index 000000000000..87f7ebd87d5c --- /dev/null +++ b/site/public/v1/software/eclipse-whiskers/index.json @@ -0,0 +1,19 @@ +{ + "id": 2870, + "slug": "eclipse-whiskers", + "name": "Eclipse Whiskers", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76176042" + ], + "created_at": "2026-07-10T10:12:40.611403", + "updated_at": "2026-07-10T10:12:40.611403", + "url": "/v1/software/eclipse-whiskers" +} diff --git a/site/public/v1/software/eclipse-wild-web-developer/index.json b/site/public/v1/software/eclipse-wild-web-developer/index.json new file mode 100644 index 000000000000..9b9f01b4023e --- /dev/null +++ b/site/public/v1/software/eclipse-wild-web-developer/index.json @@ -0,0 +1,19 @@ +{ + "id": 2871, + "slug": "eclipse-wild-web-developer", + "name": "Eclipse Wild Web Developer", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76169893" + ], + "created_at": "2026-07-10T10:12:40.612472", + "updated_at": "2026-07-10T10:12:40.612472", + "url": "/v1/software/eclipse-wild-web-developer" +} diff --git a/site/public/v1/software/eclipse-winery/index.json b/site/public/v1/software/eclipse-winery/index.json new file mode 100644 index 000000000000..ff82602d4e19 --- /dev/null +++ b/site/public/v1/software/eclipse-winery/index.json @@ -0,0 +1,19 @@ +{ + "id": 2872, + "slug": "eclipse-winery", + "name": "Eclipse Winery", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76176057" + ], + "created_at": "2026-07-10T10:12:40.612472", + "updated_at": "2026-07-10T10:12:40.612472", + "url": "/v1/software/eclipse-winery" +} diff --git a/site/public/v1/software/eclipse-wtp-source-editing/index.json b/site/public/v1/software/eclipse-wtp-source-editing/index.json new file mode 100644 index 000000000000..673f04e18083 --- /dev/null +++ b/site/public/v1/software/eclipse-wtp-source-editing/index.json @@ -0,0 +1,19 @@ +{ + "id": 2873, + "slug": "eclipse-wtp-source-editing", + "name": "Eclipse WTP Source Editing", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76166937" + ], + "created_at": "2026-07-10T10:12:40.612472", + "updated_at": "2026-07-10T10:12:40.612472", + "url": "/v1/software/eclipse-wtp-source-editing" +} diff --git a/site/public/v1/software/eclipse-xacc/index.json b/site/public/v1/software/eclipse-xacc/index.json new file mode 100644 index 000000000000..cc22c34a7a72 --- /dev/null +++ b/site/public/v1/software/eclipse-xacc/index.json @@ -0,0 +1,19 @@ +{ + "id": 2874, + "slug": "eclipse-xacc", + "name": "Eclipse XACC", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76176071" + ], + "created_at": "2026-07-10T10:12:40.613472", + "updated_at": "2026-07-10T10:12:40.613472", + "url": "/v1/software/eclipse-xacc" +} diff --git a/site/public/v1/software/eclipse-xpand/index.json b/site/public/v1/software/eclipse-xpand/index.json new file mode 100644 index 000000000000..89a7ab84810a --- /dev/null +++ b/site/public/v1/software/eclipse-xpand/index.json @@ -0,0 +1,19 @@ +{ + "id": 2875, + "slug": "eclipse-xpand", + "name": "Eclipse Xpand", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76167383" + ], + "created_at": "2026-07-10T10:12:40.613472", + "updated_at": "2026-07-10T10:12:40.613472", + "url": "/v1/software/eclipse-xpand" +} diff --git a/site/public/v1/software/eclipse-xpect/index.json b/site/public/v1/software/eclipse-xpect/index.json new file mode 100644 index 000000000000..81ffbcf2226b --- /dev/null +++ b/site/public/v1/software/eclipse-xpect/index.json @@ -0,0 +1,19 @@ +{ + "id": 2876, + "slug": "eclipse-xpect", + "name": "Eclipse Xpect", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76176083" + ], + "created_at": "2026-07-10T10:12:40.613472", + "updated_at": "2026-07-10T10:12:40.613472", + "url": "/v1/software/eclipse-xpect" +} diff --git a/site/public/v1/software/eclipse-xtext/index.json b/site/public/v1/software/eclipse-xtext/index.json new file mode 100644 index 000000000000..c331113fd2a3 --- /dev/null +++ b/site/public/v1/software/eclipse-xtext/index.json @@ -0,0 +1,19 @@ +{ + "id": 2877, + "slug": "eclipse-xtext", + "name": "Eclipse Xtext", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76164345" + ], + "created_at": "2026-07-10T10:12:40.613472", + "updated_at": "2026-07-10T10:12:40.613472", + "url": "/v1/software/eclipse-xtext" +} diff --git a/site/public/v1/software/eclipse-xwt/index.json b/site/public/v1/software/eclipse-xwt/index.json new file mode 100644 index 000000000000..8e4919de9d94 --- /dev/null +++ b/site/public/v1/software/eclipse-xwt/index.json @@ -0,0 +1,19 @@ +{ + "id": 2878, + "slug": "eclipse-xwt", + "name": "Eclipse XWT", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76166095" + ], + "created_at": "2026-07-10T10:12:40.613472", + "updated_at": "2026-07-10T10:12:40.613472", + "url": "/v1/software/eclipse-xwt" +} diff --git a/site/public/v1/software/eclipse-yasson/index.json b/site/public/v1/software/eclipse-yasson/index.json new file mode 100644 index 000000000000..c0e9bab4bc88 --- /dev/null +++ b/site/public/v1/software/eclipse-yasson/index.json @@ -0,0 +1,19 @@ +{ + "id": 2879, + "slug": "eclipse-yasson", + "name": "Eclipse Yasson", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72273067" + ], + "created_at": "2026-07-10T10:12:40.614460", + "updated_at": "2026-07-10T10:12:40.614460", + "url": "/v1/software/eclipse-yasson" +} diff --git a/site/public/v1/software/eclipse-zenoh/index.json b/site/public/v1/software/eclipse-zenoh/index.json new file mode 100644 index 000000000000..9fa4de49f87f --- /dev/null +++ b/site/public/v1/software/eclipse-zenoh/index.json @@ -0,0 +1,19 @@ +{ + "id": 2880, + "slug": "eclipse-zenoh", + "name": "Eclipse zenoh", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q96072020" + ], + "created_at": "2026-07-10T10:12:40.614460", + "updated_at": "2026-07-10T10:12:40.614460", + "url": "/v1/software/eclipse-zenoh" +} diff --git a/site/public/v1/software/eclipse/index.json b/site/public/v1/software/eclipse/index.json new file mode 100644 index 000000000000..cf96a73a80e3 --- /dev/null +++ b/site/public/v1/software/eclipse/index.json @@ -0,0 +1,23 @@ +{ + "id": 2881, + "slug": "eclipse", + "name": "ECLiPSe", + "release_date": null, + "developers": [ + "European Computer-Industry Research Center" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Mozilla Public License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5322693" + ], + "created_at": "2026-07-10T10:12:40.614460", + "updated_at": "2026-07-10T10:12:40.614460", + "url": "/v1/software/eclipse" +} diff --git a/site/public/v1/software/eclipsecrossword/index.json b/site/public/v1/software/eclipsecrossword/index.json new file mode 100644 index 000000000000..a88cfc6b4dd8 --- /dev/null +++ b/site/public/v1/software/eclipsecrossword/index.json @@ -0,0 +1,19 @@ +{ + "id": 2882, + "slug": "eclipsecrossword", + "name": "EclipseCrossword", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q83872278" + ], + "created_at": "2026-07-10T10:12:40.615448", + "updated_at": "2026-07-10T10:12:40.615448", + "url": "/v1/software/eclipsecrossword" +} diff --git a/site/public/v1/software/eclipseforumdata/index.json b/site/public/v1/software/eclipseforumdata/index.json new file mode 100644 index 000000000000..903c94c8cab0 --- /dev/null +++ b/site/public/v1/software/eclipseforumdata/index.json @@ -0,0 +1,19 @@ +{ + "id": 2883, + "slug": "eclipseforumdata", + "name": "EclipseForumData", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127485788" + ], + "created_at": "2026-07-10T10:12:40.615448", + "updated_at": "2026-07-10T10:12:40.615448", + "url": "/v1/software/eclipseforumdata" +} diff --git a/site/public/v1/software/eco-index-biodiversity-dashboards/index.json b/site/public/v1/software/eco-index-biodiversity-dashboards/index.json new file mode 100644 index 000000000000..6634f949de0c --- /dev/null +++ b/site/public/v1/software/eco-index-biodiversity-dashboards/index.json @@ -0,0 +1,21 @@ +{ + "id": 2884, + "slug": "eco-index-biodiversity-dashboards", + "name": "Eco-Index Biodiversity Dashboards", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "GNU General Public License, version 3.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115688412" + ], + "created_at": "2026-07-10T10:12:40.615448", + "updated_at": "2026-07-10T10:12:40.615448", + "url": "/v1/software/eco-index-biodiversity-dashboards" +} diff --git a/site/public/v1/software/eco/index.json b/site/public/v1/software/eco/index.json new file mode 100644 index 000000000000..e493ac1c4d2c --- /dev/null +++ b/site/public/v1/software/eco/index.json @@ -0,0 +1,19 @@ +{ + "id": 2885, + "slug": "eco", + "name": "ECO", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q843803" + ], + "created_at": "2026-07-10T10:12:40.615448", + "updated_at": "2026-07-10T10:12:40.615448", + "url": "/v1/software/eco" +} diff --git a/site/public/v1/software/ecocities/index.json b/site/public/v1/software/ecocities/index.json new file mode 100644 index 000000000000..680d04b01532 --- /dev/null +++ b/site/public/v1/software/ecocities/index.json @@ -0,0 +1,21 @@ +{ + "id": 2886, + "slug": "ecocities", + "name": "ECOCITIES", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Java" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q23579981" + ], + "created_at": "2026-07-10T10:12:40.616459", + "updated_at": "2026-07-10T10:12:40.616459", + "url": "/v1/software/ecocities" +} diff --git a/site/public/v1/software/ecodrive/index.json b/site/public/v1/software/ecodrive/index.json new file mode 100644 index 000000000000..3b55d4eea099 --- /dev/null +++ b/site/public/v1/software/ecodrive/index.json @@ -0,0 +1,22 @@ +{ + "id": 2887, + "slug": "ecodrive", + "name": "Ecodrive", + "release_date": null, + "developers": [ + "Fiat", + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1282000" + ], + "created_at": "2026-07-10T10:12:40.616459", + "updated_at": "2026-07-10T10:12:40.616459", + "url": "/v1/software/ecodrive" +} diff --git a/site/public/v1/software/ecoenergy/index.json b/site/public/v1/software/ecoenergy/index.json new file mode 100644 index 000000000000..7c8578e62da8 --- /dev/null +++ b/site/public/v1/software/ecoenergy/index.json @@ -0,0 +1,19 @@ +{ + "id": 2888, + "slug": "ecoenergy", + "name": "Ecoenergy", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5333172" + ], + "created_at": "2026-07-10T10:12:40.616459", + "updated_at": "2026-07-10T10:12:40.616459", + "url": "/v1/software/ecoenergy" +} diff --git a/site/public/v1/software/ecofont/index.json b/site/public/v1/software/ecofont/index.json new file mode 100644 index 000000000000..941b5ee78c89 --- /dev/null +++ b/site/public/v1/software/ecofont/index.json @@ -0,0 +1,19 @@ +{ + "id": 2889, + "slug": "ecofont", + "name": "Ecofont", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1983672" + ], + "created_at": "2026-07-10T10:12:40.616459", + "updated_at": "2026-07-10T10:12:40.616459", + "url": "/v1/software/ecofont" +} diff --git a/site/public/v1/software/ecolego/index.json b/site/public/v1/software/ecolego/index.json new file mode 100644 index 000000000000..f215319562ce --- /dev/null +++ b/site/public/v1/software/ecolego/index.json @@ -0,0 +1,22 @@ +{ + "id": 2890, + "slug": "ecolego", + "name": "Ecolego", + "release_date": "2003-12-01", + "developers": [], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5333204" + ], + "created_at": "2026-07-10T10:12:40.617484", + "updated_at": "2026-07-10T10:12:40.617484", + "url": "/v1/software/ecolego" +} diff --git a/site/public/v1/software/ecommfy/index.json b/site/public/v1/software/ecommfy/index.json new file mode 100644 index 000000000000..f9eaa451ced1 --- /dev/null +++ b/site/public/v1/software/ecommfy/index.json @@ -0,0 +1,21 @@ +{ + "id": 2891, + "slug": "ecommfy", + "name": "eCommfy", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Java" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q61087512" + ], + "created_at": "2026-07-10T10:12:40.617484", + "updated_at": "2026-07-10T10:12:40.617484", + "url": "/v1/software/ecommfy" +} diff --git a/site/public/v1/software/ecosimpro/index.json b/site/public/v1/software/ecosimpro/index.json new file mode 100644 index 000000000000..42e468d33c4b --- /dev/null +++ b/site/public/v1/software/ecosimpro/index.json @@ -0,0 +1,21 @@ +{ + "id": 2892, + "slug": "ecosimpro", + "name": "EcosimPro", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5333872" + ], + "created_at": "2026-07-10T10:12:40.617484", + "updated_at": "2026-07-10T10:12:40.617484", + "url": "/v1/software/ecosimpro" +} diff --git a/site/public/v1/software/ecosystem-site-anomaly-visualization-notebook-tool/index.json b/site/public/v1/software/ecosystem-site-anomaly-visualization-notebook-tool/index.json new file mode 100644 index 000000000000..fe1e24e2386a --- /dev/null +++ b/site/public/v1/software/ecosystem-site-anomaly-visualization-notebook-tool/index.json @@ -0,0 +1,19 @@ +{ + "id": 2893, + "slug": "ecosystem-site-anomaly-visualization-notebook-tool", + "name": "Ecosystem Site Anomaly Visualization Notebook Tool", + "release_date": "2023-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124219328" + ], + "created_at": "2026-07-10T10:12:40.617484", + "updated_at": "2026-07-10T10:12:40.617484", + "url": "/v1/software/ecosystem-site-anomaly-visualization-notebook-tool" +} diff --git a/site/public/v1/software/ecoute/index.json b/site/public/v1/software/ecoute/index.json new file mode 100644 index 000000000000..198adf5b18ee --- /dev/null +++ b/site/public/v1/software/ecoute/index.json @@ -0,0 +1,19 @@ +{ + "id": 2894, + "slug": "ecoute", + "name": "Ecoute", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17042294" + ], + "created_at": "2026-07-10T10:12:40.618461", + "updated_at": "2026-07-10T10:12:40.618461", + "url": "/v1/software/ecoute" +} diff --git a/site/public/v1/software/ecu-test/index.json b/site/public/v1/software/ecu-test/index.json new file mode 100644 index 000000000000..7be22c56f85a --- /dev/null +++ b/site/public/v1/software/ecu-test/index.json @@ -0,0 +1,21 @@ +{ + "id": 2895, + "slug": "ecu-test", + "name": "ECU-TEST", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1274225" + ], + "created_at": "2026-07-10T10:12:40.619460", + "updated_at": "2026-07-10T10:12:40.619460", + "url": "/v1/software/ecu-test" +} diff --git a/site/public/v1/software/ed/index.json b/site/public/v1/software/ed/index.json new file mode 100644 index 000000000000..4959c9e070f1 --- /dev/null +++ b/site/public/v1/software/ed/index.json @@ -0,0 +1,19 @@ +{ + "id": 2896, + "slug": "ed", + "name": "Ed", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q129262202" + ], + "created_at": "2026-07-10T10:12:40.623883", + "updated_at": "2026-07-10T10:12:40.623883", + "url": "/v1/software/ed" +} diff --git a/site/public/v1/software/edbuild-ai/index.json b/site/public/v1/software/edbuild-ai/index.json new file mode 100644 index 000000000000..03be4f7546d4 --- /dev/null +++ b/site/public/v1/software/edbuild-ai/index.json @@ -0,0 +1,19 @@ +{ + "id": 2897, + "slug": "edbuild-ai", + "name": "EdBuild AI", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138912364" + ], + "created_at": "2026-07-10T10:12:40.627974", + "updated_at": "2026-07-10T10:12:40.627974", + "url": "/v1/software/edbuild-ai" +} diff --git a/site/public/v1/software/edcast/index.json b/site/public/v1/software/edcast/index.json new file mode 100644 index 000000000000..15f8c90eb9bd --- /dev/null +++ b/site/public/v1/software/edcast/index.json @@ -0,0 +1,21 @@ +{ + "id": 2898, + "slug": "edcast", + "name": "Edcast", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5335742" + ], + "created_at": "2026-07-10T10:12:40.633942", + "updated_at": "2026-07-10T10:12:40.633942", + "url": "/v1/software/edcast" +} diff --git a/site/public/v1/software/eddycab/index.json b/site/public/v1/software/eddycab/index.json new file mode 100644 index 000000000000..41a8360ebdb8 --- /dev/null +++ b/site/public/v1/software/eddycab/index.json @@ -0,0 +1,19 @@ +{ + "id": 2899, + "slug": "eddycab", + "name": "eddycab", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q65282538" + ], + "created_at": "2026-07-10T10:12:40.636952", + "updated_at": "2026-07-10T10:12:40.636952", + "url": "/v1/software/eddycab" +} diff --git a/site/public/v1/software/edge-q31891244/index.json b/site/public/v1/software/edge-q31891244/index.json new file mode 100644 index 000000000000..f29e100e5bca --- /dev/null +++ b/site/public/v1/software/edge-q31891244/index.json @@ -0,0 +1,19 @@ +{ + "id": 2900, + "slug": "edge-q31891244", + "name": "Edge", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q31891244" + ], + "created_at": "2026-07-10T10:12:40.639941", + "updated_at": "2026-07-10T10:12:40.639941", + "url": "/v1/software/edge-q31891244" +} diff --git a/site/public/v1/software/edge/index.json b/site/public/v1/software/edge/index.json new file mode 100644 index 000000000000..64add9a44bd5 --- /dev/null +++ b/site/public/v1/software/edge/index.json @@ -0,0 +1,19 @@ +{ + "id": 2901, + "slug": "edge", + "name": "EDGE", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11197536" + ], + "created_at": "2026-07-10T10:12:40.642937", + "updated_at": "2026-07-10T10:12:40.642937", + "url": "/v1/software/edge" +} diff --git a/site/public/v1/software/edgecam/index.json b/site/public/v1/software/edgecam/index.json new file mode 100644 index 000000000000..964c364cf3c1 --- /dev/null +++ b/site/public/v1/software/edgecam/index.json @@ -0,0 +1,19 @@ +{ + "id": 2902, + "slug": "edgecam", + "name": "edgeCam", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8145551" + ], + "created_at": "2026-07-10T10:12:40.644940", + "updated_at": "2026-07-10T10:12:40.644940", + "url": "/v1/software/edgecam" +} diff --git a/site/public/v1/software/edger-package/index.json b/site/public/v1/software/edger-package/index.json new file mode 100644 index 000000000000..3879ef7bd1b9 --- /dev/null +++ b/site/public/v1/software/edger-package/index.json @@ -0,0 +1,21 @@ +{ + "id": 2903, + "slug": "edger-package", + "name": "edgeR package", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "R" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112236367" + ], + "created_at": "2026-07-10T10:12:40.646958", + "updated_at": "2026-07-10T10:12:40.646958", + "url": "/v1/software/edger-package" +} diff --git a/site/public/v1/software/edicolor/index.json b/site/public/v1/software/edicolor/index.json new file mode 100644 index 000000000000..6d0ec97df4d9 --- /dev/null +++ b/site/public/v1/software/edicolor/index.json @@ -0,0 +1,21 @@ +{ + "id": 2904, + "slug": "edicolor", + "name": "EDICOLOR", + "release_date": null, + "developers": [ + "Canon IT Solutions" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11197543" + ], + "created_at": "2026-07-10T10:12:40.648940", + "updated_at": "2026-07-10T10:12:40.648940", + "url": "/v1/software/edicolor" +} diff --git a/site/public/v1/software/edificius/index.json b/site/public/v1/software/edificius/index.json new file mode 100644 index 000000000000..66514ba1f6be --- /dev/null +++ b/site/public/v1/software/edificius/index.json @@ -0,0 +1,19 @@ +{ + "id": 2905, + "slug": "edificius", + "name": "Edificius", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117814129" + ], + "created_at": "2026-07-10T10:12:40.650958", + "updated_at": "2026-07-10T10:12:40.650958", + "url": "/v1/software/edificius" +} diff --git a/site/public/v1/software/edit-flow/index.json b/site/public/v1/software/edit-flow/index.json new file mode 100644 index 000000000000..d41d44be9224 --- /dev/null +++ b/site/public/v1/software/edit-flow/index.json @@ -0,0 +1,19 @@ +{ + "id": 2906, + "slug": "edit-flow", + "name": "Edit Flow", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084934" + ], + "created_at": "2026-07-10T10:12:40.651973", + "updated_at": "2026-07-10T10:12:40.651973", + "url": "/v1/software/edit-flow" +} diff --git a/site/public/v1/software/editgrid/index.json b/site/public/v1/software/editgrid/index.json new file mode 100644 index 000000000000..b8ae0c05fc50 --- /dev/null +++ b/site/public/v1/software/editgrid/index.json @@ -0,0 +1,21 @@ +{ + "id": 2907, + "slug": "editgrid", + "name": "EditGrid", + "release_date": "2006-01-01", + "developers": [ + "Team and Concepts" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3047615" + ], + "created_at": "2026-07-10T10:12:40.651973", + "updated_at": "2026-07-10T10:12:40.651973", + "url": "/v1/software/editgrid" +} diff --git a/site/public/v1/software/editors-notes/index.json b/site/public/v1/software/editors-notes/index.json new file mode 100644 index 000000000000..bac70cd42c6a --- /dev/null +++ b/site/public/v1/software/editors-notes/index.json @@ -0,0 +1,19 @@ +{ + "id": 2908, + "slug": "editors-notes", + "name": "Editors' Notes", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084935" + ], + "created_at": "2026-07-10T10:12:40.652979", + "updated_at": "2026-07-10T10:12:40.652979", + "url": "/v1/software/editors-notes" +} diff --git a/site/public/v1/software/edlmax/index.json b/site/public/v1/software/edlmax/index.json new file mode 100644 index 000000000000..b801d1af0d03 --- /dev/null +++ b/site/public/v1/software/edlmax/index.json @@ -0,0 +1,19 @@ +{ + "id": 2909, + "slug": "edlmax", + "name": "EdlMax", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28919097" + ], + "created_at": "2026-07-10T10:12:40.654472", + "updated_at": "2026-07-10T10:12:40.654472", + "url": "/v1/software/edlmax" +} diff --git a/site/public/v1/software/edmax/index.json b/site/public/v1/software/edmax/index.json new file mode 100644 index 000000000000..e918a1381ffb --- /dev/null +++ b/site/public/v1/software/edmax/index.json @@ -0,0 +1,19 @@ +{ + "id": 2910, + "slug": "edmax", + "name": "edmax", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11198209" + ], + "created_at": "2026-07-10T10:12:40.656478", + "updated_at": "2026-07-10T10:12:40.656478", + "url": "/v1/software/edmax" +} diff --git a/site/public/v1/software/edoklady/index.json b/site/public/v1/software/edoklady/index.json new file mode 100644 index 000000000000..f72c35b78b56 --- /dev/null +++ b/site/public/v1/software/edoklady/index.json @@ -0,0 +1,21 @@ +{ + "id": 2911, + "slug": "edoklady", + "name": "eDoklady", + "release_date": null, + "developers": [ + "Digital and Information Agency" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124042068" + ], + "created_at": "2026-07-10T10:12:40.656478", + "updated_at": "2026-07-10T10:12:40.656478", + "url": "/v1/software/edoklady" +} diff --git a/site/public/v1/software/edraw-max/index.json b/site/public/v1/software/edraw-max/index.json new file mode 100644 index 000000000000..cfb7f7ed91b3 --- /dev/null +++ b/site/public/v1/software/edraw-max/index.json @@ -0,0 +1,19 @@ +{ + "id": 2912, + "slug": "edraw-max", + "name": "Edraw Max", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5340240" + ], + "created_at": "2026-07-10T10:12:40.657482", + "updated_at": "2026-07-10T10:12:40.657482", + "url": "/v1/software/edraw-max" +} diff --git a/site/public/v1/software/edraw-mind-map/index.json b/site/public/v1/software/edraw-mind-map/index.json new file mode 100644 index 000000000000..cf8ad09fd71f --- /dev/null +++ b/site/public/v1/software/edraw-mind-map/index.json @@ -0,0 +1,19 @@ +{ + "id": 2913, + "slug": "edraw-mind-map", + "name": "Edraw Mind Map", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5340241" + ], + "created_at": "2026-07-10T10:12:40.658482", + "updated_at": "2026-07-10T10:12:40.658482", + "url": "/v1/software/edraw-mind-map" +} diff --git a/site/public/v1/software/eduloo/index.json b/site/public/v1/software/eduloo/index.json new file mode 100644 index 000000000000..4e81c4b66322 --- /dev/null +++ b/site/public/v1/software/eduloo/index.json @@ -0,0 +1,19 @@ +{ + "id": 2914, + "slug": "eduloo", + "name": "EduLoo", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140051768" + ], + "created_at": "2026-07-10T10:12:40.658482", + "updated_at": "2026-07-10T10:12:40.658482", + "url": "/v1/software/eduloo" +} diff --git a/site/public/v1/software/edunext-technologies/index.json b/site/public/v1/software/edunext-technologies/index.json new file mode 100644 index 000000000000..7bc47b163291 --- /dev/null +++ b/site/public/v1/software/edunext-technologies/index.json @@ -0,0 +1,19 @@ +{ + "id": 2915, + "slug": "edunext-technologies", + "name": "Edunext Technologies", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q47461177" + ], + "created_at": "2026-07-10T10:12:40.659482", + "updated_at": "2026-07-10T10:12:40.659482", + "url": "/v1/software/edunext-technologies" +} diff --git a/site/public/v1/software/edusim/index.json b/site/public/v1/software/edusim/index.json new file mode 100644 index 000000000000..cee0a32aebd0 --- /dev/null +++ b/site/public/v1/software/edusim/index.json @@ -0,0 +1,19 @@ +{ + "id": 2916, + "slug": "edusim", + "name": "Edusim", + "release_date": "2007-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5341342" + ], + "created_at": "2026-07-10T10:12:40.659482", + "updated_at": "2026-07-10T10:12:40.659482", + "url": "/v1/software/edusim" +} diff --git a/site/public/v1/software/efax-gtk/index.json b/site/public/v1/software/efax-gtk/index.json new file mode 100644 index 000000000000..8f957dff4ffb --- /dev/null +++ b/site/public/v1/software/efax-gtk/index.json @@ -0,0 +1,19 @@ +{ + "id": 2917, + "slug": "efax-gtk", + "name": "Efax-gtk", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62848506" + ], + "created_at": "2026-07-10T10:12:40.660537", + "updated_at": "2026-07-10T10:12:40.660537", + "url": "/v1/software/efax-gtk" +} diff --git a/site/public/v1/software/efdc-explorer/index.json b/site/public/v1/software/efdc-explorer/index.json new file mode 100644 index 000000000000..37a7d3932081 --- /dev/null +++ b/site/public/v1/software/efdc-explorer/index.json @@ -0,0 +1,19 @@ +{ + "id": 2918, + "slug": "efdc-explorer", + "name": "EFDC+ Explorer", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5322966" + ], + "created_at": "2026-07-10T10:12:40.660537", + "updated_at": "2026-07-10T10:12:40.660537", + "url": "/v1/software/efdc-explorer" +} diff --git a/site/public/v1/software/efficarbone/index.json b/site/public/v1/software/efficarbone/index.json new file mode 100644 index 000000000000..059507faecc5 --- /dev/null +++ b/site/public/v1/software/efficarbone/index.json @@ -0,0 +1,21 @@ +{ + "id": 2919, + "slug": "efficarbone", + "name": "Efficarbone", + "release_date": null, + "developers": [ + "IRICE" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139554657" + ], + "created_at": "2026-07-10T10:12:40.661555", + "updated_at": "2026-07-10T10:12:40.661555", + "url": "/v1/software/efficarbone" +} diff --git a/site/public/v1/software/efficient-java-matrix-library/index.json b/site/public/v1/software/efficient-java-matrix-library/index.json new file mode 100644 index 000000000000..c8ecaceefa10 --- /dev/null +++ b/site/public/v1/software/efficient-java-matrix-library/index.json @@ -0,0 +1,22 @@ +{ + "id": 2920, + "slug": "efficient-java-matrix-library", + "name": "Efficient Java Matrix Library", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Apache Software License 2.0", + "Apache License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17008884" + ], + "created_at": "2026-07-10T10:12:40.661555", + "updated_at": "2026-07-10T10:12:40.661555", + "url": "/v1/software/efficient-java-matrix-library" +} diff --git a/site/public/v1/software/egencia-by-amex-gbt/index.json b/site/public/v1/software/egencia-by-amex-gbt/index.json new file mode 100644 index 000000000000..449544f8c3b3 --- /dev/null +++ b/site/public/v1/software/egencia-by-amex-gbt/index.json @@ -0,0 +1,19 @@ +{ + "id": 2921, + "slug": "egencia-by-amex-gbt", + "name": "Egencia by Amex GBT", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q12008745" + ], + "created_at": "2026-07-10T10:12:40.661555", + "updated_at": "2026-07-10T10:12:40.661555", + "url": "/v1/software/egencia-by-amex-gbt" +} diff --git a/site/public/v1/software/egl-development-tools/index.json b/site/public/v1/software/egl-development-tools/index.json new file mode 100644 index 000000000000..78f7699e0e19 --- /dev/null +++ b/site/public/v1/software/egl-development-tools/index.json @@ -0,0 +1,19 @@ +{ + "id": 2922, + "slug": "egl-development-tools", + "name": "EGL Development Tools", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76167395" + ], + "created_at": "2026-07-10T10:12:40.662540", + "updated_at": "2026-07-10T10:12:40.662540", + "url": "/v1/software/egl-development-tools" +} diff --git a/site/public/v1/software/egoweb-2-0/index.json b/site/public/v1/software/egoweb-2-0/index.json new file mode 100644 index 000000000000..6caec606096b --- /dev/null +++ b/site/public/v1/software/egoweb-2-0/index.json @@ -0,0 +1,19 @@ +{ + "id": 2923, + "slug": "egoweb-2-0", + "name": "EgoWeb 2.0", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087799" + ], + "created_at": "2026-07-10T10:12:40.662540", + "updated_at": "2026-07-10T10:12:40.662540", + "url": "/v1/software/egoweb-2-0" +} diff --git a/site/public/v1/software/egs/index.json b/site/public/v1/software/egs/index.json new file mode 100644 index 000000000000..d5ba28b42b57 --- /dev/null +++ b/site/public/v1/software/egs/index.json @@ -0,0 +1,21 @@ +{ + "id": 2924, + "slug": "egs", + "name": "EGS", + "release_date": null, + "developers": [ + "SLAC National Accelerator Laboratory" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4835399" + ], + "created_at": "2026-07-10T10:12:40.662540", + "updated_at": "2026-07-10T10:12:40.662540", + "url": "/v1/software/egs" +} diff --git a/site/public/v1/software/egword/index.json b/site/public/v1/software/egword/index.json new file mode 100644 index 000000000000..0293bc13ee11 --- /dev/null +++ b/site/public/v1/software/egword/index.json @@ -0,0 +1,19 @@ +{ + "id": 2925, + "slug": "egword", + "name": "EGWord", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11197582" + ], + "created_at": "2026-07-10T10:12:40.663533", + "updated_at": "2026-07-10T10:12:40.663533", + "url": "/v1/software/egword" +} diff --git a/site/public/v1/software/eiffeldoc/index.json b/site/public/v1/software/eiffeldoc/index.json new file mode 100644 index 000000000000..fc072032d78d --- /dev/null +++ b/site/public/v1/software/eiffeldoc/index.json @@ -0,0 +1,21 @@ +{ + "id": 2926, + "slug": "eiffeldoc", + "name": "Eiffeldoc", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "GNU General Public License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3049348" + ], + "created_at": "2026-07-10T10:12:40.663533", + "updated_at": "2026-07-10T10:12:40.663533", + "url": "/v1/software/eiffeldoc" +} diff --git a/site/public/v1/software/eijir/index.json b/site/public/v1/software/eijir/index.json new file mode 100644 index 000000000000..59c8e5defd39 --- /dev/null +++ b/site/public/v1/software/eijir/index.json @@ -0,0 +1,19 @@ +{ + "id": 2927, + "slug": "eijir", + "name": "Eijirō", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5349230" + ], + "created_at": "2026-07-10T10:12:40.663533", + "updated_at": "2026-07-10T10:12:40.663533", + "url": "/v1/software/eijir" +} diff --git a/site/public/v1/software/eikon/index.json b/site/public/v1/software/eikon/index.json new file mode 100644 index 000000000000..e5ad820ef486 --- /dev/null +++ b/site/public/v1/software/eikon/index.json @@ -0,0 +1,19 @@ +{ + "id": 2928, + "slug": "eikon", + "name": "Eikon", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q43763745" + ], + "created_at": "2026-07-10T10:12:40.664542", + "updated_at": "2026-07-10T10:12:40.664542", + "url": "/v1/software/eikon" +} diff --git a/site/public/v1/software/einstein/index.json b/site/public/v1/software/einstein/index.json new file mode 100644 index 000000000000..474097172786 --- /dev/null +++ b/site/public/v1/software/einstein/index.json @@ -0,0 +1,21 @@ +{ + "id": 2929, + "slug": "einstein", + "name": "Einstein", + "release_date": "2004-01-01", + "developers": [ + "United States Computer Emergency Readiness Team" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5349785" + ], + "created_at": "2026-07-10T10:12:40.664542", + "updated_at": "2026-07-10T10:12:40.664542", + "url": "/v1/software/einstein" +} diff --git a/site/public/v1/software/eioffice/index.json b/site/public/v1/software/eioffice/index.json new file mode 100644 index 000000000000..5b340f250171 --- /dev/null +++ b/site/public/v1/software/eioffice/index.json @@ -0,0 +1,21 @@ +{ + "id": 2930, + "slug": "eioffice", + "name": "EIOffice", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Java" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5323211" + ], + "created_at": "2026-07-10T10:12:40.664542", + "updated_at": "2026-07-10T10:12:40.664542", + "url": "/v1/software/eioffice" +} diff --git a/site/public/v1/software/eitaa/index.json b/site/public/v1/software/eitaa/index.json new file mode 100644 index 000000000000..7b131d720bb9 --- /dev/null +++ b/site/public/v1/software/eitaa/index.json @@ -0,0 +1,23 @@ +{ + "id": 2931, + "slug": "eitaa", + "name": "Eitaa", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "iOS", + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122780466" + ], + "created_at": "2026-07-10T10:12:40.665480", + "updated_at": "2026-07-10T10:12:40.665480", + "url": "/v1/software/eitaa" +} diff --git a/site/public/v1/software/eka1/index.json b/site/public/v1/software/eka1/index.json new file mode 100644 index 000000000000..7cbfca49904a --- /dev/null +++ b/site/public/v1/software/eka1/index.json @@ -0,0 +1,21 @@ +{ + "id": 2932, + "slug": "eka1", + "name": "EKA1", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "assembly language" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5323236" + ], + "created_at": "2026-07-10T10:12:40.665480", + "updated_at": "2026-07-10T10:12:40.665480", + "url": "/v1/software/eka1" +} diff --git a/site/public/v1/software/eka2l1/index.json b/site/public/v1/software/eka2l1/index.json new file mode 100644 index 000000000000..f4b3fc15a60d --- /dev/null +++ b/site/public/v1/software/eka2l1/index.json @@ -0,0 +1,19 @@ +{ + "id": 2933, + "slug": "eka2l1", + "name": "EKA2L1", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q119982966" + ], + "created_at": "2026-07-10T10:12:40.665480", + "updated_at": "2026-07-10T10:12:40.665480", + "url": "/v1/software/eka2l1" +} diff --git a/site/public/v1/software/ekahau-site-survey/index.json b/site/public/v1/software/ekahau-site-survey/index.json new file mode 100644 index 000000000000..31264704b3aa --- /dev/null +++ b/site/public/v1/software/ekahau-site-survey/index.json @@ -0,0 +1,23 @@ +{ + "id": 2934, + "slug": "ekahau-site-survey", + "name": "Ekahau Site Survey", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "iOS" + ], + "programming_languages": [], + "licenses": [ + "end-user license agreement" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5350272" + ], + "created_at": "2026-07-10T10:12:40.665480", + "updated_at": "2026-07-10T10:12:40.665480", + "url": "/v1/software/ekahau-site-survey" +} diff --git a/site/public/v1/software/elaborate/index.json b/site/public/v1/software/elaborate/index.json new file mode 100644 index 000000000000..5e3f4d1af482 --- /dev/null +++ b/site/public/v1/software/elaborate/index.json @@ -0,0 +1,19 @@ +{ + "id": 2935, + "slug": "elaborate", + "name": "eLaborate", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084936" + ], + "created_at": "2026-07-10T10:12:40.666529", + "updated_at": "2026-07-10T10:12:40.666529", + "url": "/v1/software/elaborate" +} diff --git a/site/public/v1/software/elan-q126084937/index.json b/site/public/v1/software/elan-q126084937/index.json new file mode 100644 index 000000000000..5db2129a4308 --- /dev/null +++ b/site/public/v1/software/elan-q126084937/index.json @@ -0,0 +1,19 @@ +{ + "id": 2936, + "slug": "elan-q126084937", + "name": "ELAN", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084937" + ], + "created_at": "2026-07-10T10:12:40.666529", + "updated_at": "2026-07-10T10:12:40.666529", + "url": "/v1/software/elan-q126084937" +} diff --git a/site/public/v1/software/elan-software/index.json b/site/public/v1/software/elan-software/index.json new file mode 100644 index 000000000000..9ea3f516c820 --- /dev/null +++ b/site/public/v1/software/elan-software/index.json @@ -0,0 +1,25 @@ +{ + "id": 2937, + "slug": "elan-software", + "name": "ELAN software", + "release_date": "2015-12-21", + "developers": [ + "Max Planck Institute for Psycholinguistics" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [ + "Java" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3045942" + ], + "created_at": "2026-07-10T10:12:40.666529", + "updated_at": "2026-07-10T10:12:40.666529", + "url": "/v1/software/elan-software" +} diff --git a/site/public/v1/software/elan/index.json b/site/public/v1/software/elan/index.json new file mode 100644 index 000000000000..41286fcc7969 --- /dev/null +++ b/site/public/v1/software/elan/index.json @@ -0,0 +1,29 @@ +{ + "id": 2938, + "slug": "elan", + "name": "ELAN", + "release_date": null, + "developers": [ + "Max Planck Institute for Psycholinguistics" + ], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [ + "Java" + ], + "licenses": [ + "GNU General Public License, version 3.0", + "GNU General Public License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105076382" + ], + "created_at": "2026-07-10T10:12:40.667539", + "updated_at": "2026-07-10T10:12:40.667539", + "url": "/v1/software/elan" +} diff --git a/site/public/v1/software/elastix-toolbox-for-image-registration/index.json b/site/public/v1/software/elastix-toolbox-for-image-registration/index.json new file mode 100644 index 000000000000..ab0cc9c4c0e9 --- /dev/null +++ b/site/public/v1/software/elastix-toolbox-for-image-registration/index.json @@ -0,0 +1,21 @@ +{ + "id": 2939, + "slug": "elastix-toolbox-for-image-registration", + "name": "Elastix (toolbox for image registration)", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Apache Software License 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q96651279" + ], + "created_at": "2026-07-10T10:12:40.667539", + "updated_at": "2026-07-10T10:12:40.667539", + "url": "/v1/software/elastix-toolbox-for-image-registration" +} diff --git a/site/public/v1/software/ele-me/index.json b/site/public/v1/software/ele-me/index.json new file mode 100644 index 000000000000..aa02da74013f --- /dev/null +++ b/site/public/v1/software/ele-me/index.json @@ -0,0 +1,23 @@ +{ + "id": 2940, + "slug": "ele-me", + "name": "Ele.me", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Java" + ], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q24838019" + ], + "created_at": "2026-07-10T10:12:40.667539", + "updated_at": "2026-07-10T10:12:40.667539", + "url": "/v1/software/ele-me" +} diff --git a/site/public/v1/software/electoral-studies-knowledge-graph/index.json b/site/public/v1/software/electoral-studies-knowledge-graph/index.json new file mode 100644 index 000000000000..d24e2087e3f9 --- /dev/null +++ b/site/public/v1/software/electoral-studies-knowledge-graph/index.json @@ -0,0 +1,19 @@ +{ + "id": 2941, + "slug": "electoral-studies-knowledge-graph", + "name": "Electoral Studies Knowledge Graph", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084938" + ], + "created_at": "2026-07-10T10:12:40.667539", + "updated_at": "2026-07-10T10:12:40.667539", + "url": "/v1/software/electoral-studies-knowledge-graph" +} diff --git a/site/public/v1/software/electric-image-animation-system/index.json b/site/public/v1/software/electric-image-animation-system/index.json new file mode 100644 index 000000000000..b7eaecf0b66d --- /dev/null +++ b/site/public/v1/software/electric-image-animation-system/index.json @@ -0,0 +1,22 @@ +{ + "id": 2942, + "slug": "electric-image-animation-system", + "name": "Electric Image Animation System", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5357403" + ], + "created_at": "2026-07-10T10:12:40.668579", + "updated_at": "2026-07-10T10:12:40.668579", + "url": "/v1/software/electric-image-animation-system" +} diff --git a/site/public/v1/software/electrical-impedance-and-diffuse-optical-tomography-reconstruction-software/index.json b/site/public/v1/software/electrical-impedance-and-diffuse-optical-tomography-reconstruction-software/index.json new file mode 100644 index 000000000000..deb99b6ef098 --- /dev/null +++ b/site/public/v1/software/electrical-impedance-and-diffuse-optical-tomography-reconstruction-software/index.json @@ -0,0 +1,19 @@ +{ + "id": 2943, + "slug": "electrical-impedance-and-diffuse-optical-tomography-reconstruction-software", + "name": "Electrical Impedance and Diffuse Optical Tomography Reconstruction Software", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q20164634" + ], + "created_at": "2026-07-10T10:12:40.668579", + "updated_at": "2026-07-10T10:12:40.668579", + "url": "/v1/software/electrical-impedance-and-diffuse-optical-tomography-reconstruction-software" +} diff --git a/site/public/v1/software/electrical-transient-and-analysis-program/index.json b/site/public/v1/software/electrical-transient-and-analysis-program/index.json new file mode 100644 index 000000000000..23641db8d6e7 --- /dev/null +++ b/site/public/v1/software/electrical-transient-and-analysis-program/index.json @@ -0,0 +1,19 @@ +{ + "id": 2944, + "slug": "electrical-transient-and-analysis-program", + "name": "Electrical Transient and Analysis Program", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28803883" + ], + "created_at": "2026-07-10T10:12:40.669535", + "updated_at": "2026-07-10T10:12:40.669535", + "url": "/v1/software/electrical-transient-and-analysis-program" +} diff --git a/site/public/v1/software/electron-builder/index.json b/site/public/v1/software/electron-builder/index.json new file mode 100644 index 000000000000..8932099a1fd2 --- /dev/null +++ b/site/public/v1/software/electron-builder/index.json @@ -0,0 +1,21 @@ +{ + "id": 2945, + "slug": "electron-builder", + "name": "electron-builder", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q132832890" + ], + "created_at": "2026-07-10T10:12:40.669535", + "updated_at": "2026-07-10T10:12:40.669535", + "url": "/v1/software/electron-builder" +} diff --git a/site/public/v1/software/electron-microscopy-datasets/index.json b/site/public/v1/software/electron-microscopy-datasets/index.json new file mode 100644 index 000000000000..cea265f474ec --- /dev/null +++ b/site/public/v1/software/electron-microscopy-datasets/index.json @@ -0,0 +1,19 @@ +{ + "id": 2946, + "slug": "electron-microscopy-datasets", + "name": "Electron Microscopy Datasets", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121223764" + ], + "created_at": "2026-07-10T10:12:40.669535", + "updated_at": "2026-07-10T10:12:40.669535", + "url": "/v1/software/electron-microscopy-datasets" +} diff --git a/site/public/v1/software/electronic-appwrapper/index.json b/site/public/v1/software/electronic-appwrapper/index.json new file mode 100644 index 000000000000..04b1a364b268 --- /dev/null +++ b/site/public/v1/software/electronic-appwrapper/index.json @@ -0,0 +1,21 @@ +{ + "id": 2947, + "slug": "electronic-appwrapper", + "name": "Electronic AppWrapper", + "release_date": "1991-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Objective-C" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q21463026" + ], + "created_at": "2026-07-10T10:12:40.669535", + "updated_at": "2026-07-10T10:12:40.669535", + "url": "/v1/software/electronic-appwrapper" +} diff --git a/site/public/v1/software/electronic-document-management-system/index.json b/site/public/v1/software/electronic-document-management-system/index.json new file mode 100644 index 000000000000..80d8931fcc4b --- /dev/null +++ b/site/public/v1/software/electronic-document-management-system/index.json @@ -0,0 +1,19 @@ +{ + "id": 2948, + "slug": "electronic-document-management-system", + "name": "Electronic document management system", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q249269" + ], + "created_at": "2026-07-10T10:12:40.670552", + "updated_at": "2026-07-10T10:12:40.670552", + "url": "/v1/software/electronic-document-management-system" +} diff --git a/site/public/v1/software/elektrik-piano/index.json b/site/public/v1/software/elektrik-piano/index.json new file mode 100644 index 000000000000..40c2d0b15184 --- /dev/null +++ b/site/public/v1/software/elektrik-piano/index.json @@ -0,0 +1,21 @@ +{ + "id": 2949, + "slug": "elektrik-piano", + "name": "Elektrik Piano", + "release_date": null, + "developers": [ + "Native Instruments" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5358765" + ], + "created_at": "2026-07-10T10:12:40.670552", + "updated_at": "2026-07-10T10:12:40.670552", + "url": "/v1/software/elektrik-piano" +} diff --git a/site/public/v1/software/elemenope/index.json b/site/public/v1/software/elemenope/index.json new file mode 100644 index 000000000000..0ccf5fae3271 --- /dev/null +++ b/site/public/v1/software/elemenope/index.json @@ -0,0 +1,21 @@ +{ + "id": 2950, + "slug": "elemenope", + "name": "Elemenope", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Apache License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5358812" + ], + "created_at": "2026-07-10T10:12:40.671549", + "updated_at": "2026-07-10T10:12:40.671549", + "url": "/v1/software/elemenope" +} diff --git a/site/public/v1/software/element-3d/index.json b/site/public/v1/software/element-3d/index.json new file mode 100644 index 000000000000..1c71abe35304 --- /dev/null +++ b/site/public/v1/software/element-3d/index.json @@ -0,0 +1,19 @@ +{ + "id": 2951, + "slug": "element-3d", + "name": "Element 3D", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25000882" + ], + "created_at": "2026-07-10T10:12:40.671549", + "updated_at": "2026-07-10T10:12:40.671549", + "url": "/v1/software/element-3d" +} diff --git a/site/public/v1/software/elephantdrive/index.json b/site/public/v1/software/elephantdrive/index.json new file mode 100644 index 000000000000..50e786f20b4a --- /dev/null +++ b/site/public/v1/software/elephantdrive/index.json @@ -0,0 +1,21 @@ +{ + "id": 2952, + "slug": "elephantdrive", + "name": "ElephantDrive", + "release_date": "2006-04-01", + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5359288" + ], + "created_at": "2026-07-10T10:12:40.671549", + "updated_at": "2026-07-10T10:12:40.671549", + "url": "/v1/software/elephantdrive" +} diff --git a/site/public/v1/software/elfix/index.json b/site/public/v1/software/elfix/index.json new file mode 100644 index 000000000000..74771d1e4418 --- /dev/null +++ b/site/public/v1/software/elfix/index.json @@ -0,0 +1,19 @@ +{ + "id": 2953, + "slug": "elfix", + "name": "elfix", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974820" + ], + "created_at": "2026-07-10T10:12:40.671549", + "updated_at": "2026-07-10T10:12:40.671549", + "url": "/v1/software/elfix" +} diff --git a/site/public/v1/software/elflight-engine/index.json b/site/public/v1/software/elflight-engine/index.json new file mode 100644 index 000000000000..c4c148cad0bc --- /dev/null +++ b/site/public/v1/software/elflight-engine/index.json @@ -0,0 +1,19 @@ +{ + "id": 2954, + "slug": "elflight-engine", + "name": "Elflight Engine", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5359914" + ], + "created_at": "2026-07-10T10:12:40.672478", + "updated_at": "2026-07-10T10:12:40.672478", + "url": "/v1/software/elflight-engine" +} diff --git a/site/public/v1/software/eli-review/index.json b/site/public/v1/software/eli-review/index.json new file mode 100644 index 000000000000..72625c502236 --- /dev/null +++ b/site/public/v1/software/eli-review/index.json @@ -0,0 +1,19 @@ +{ + "id": 2955, + "slug": "eli-review", + "name": "Eli Review", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25109856" + ], + "created_at": "2026-07-10T10:12:40.672478", + "updated_at": "2026-07-10T10:12:40.672478", + "url": "/v1/software/eli-review" +} diff --git a/site/public/v1/software/elicitus/index.json b/site/public/v1/software/elicitus/index.json new file mode 100644 index 000000000000..1afba26c111b --- /dev/null +++ b/site/public/v1/software/elicitus/index.json @@ -0,0 +1,21 @@ +{ + "id": 2956, + "slug": "elicitus", + "name": "Elicitus", + "release_date": null, + "developers": [ + "Harbinger Knowledge Products" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17105153" + ], + "created_at": "2026-07-10T10:12:40.672478", + "updated_at": "2026-07-10T10:12:40.672478", + "url": "/v1/software/elicitus" +} diff --git a/site/public/v1/software/elite/index.json b/site/public/v1/software/elite/index.json new file mode 100644 index 000000000000..9c96db23446c --- /dev/null +++ b/site/public/v1/software/elite/index.json @@ -0,0 +1,21 @@ +{ + "id": 2957, + "slug": "elite", + "name": "ELITE", + "release_date": null, + "developers": [ + "Palantir Technologies" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137908507" + ], + "created_at": "2026-07-10T10:12:40.673547", + "updated_at": "2026-07-10T10:12:40.673547", + "url": "/v1/software/elite" +} diff --git a/site/public/v1/software/elium/index.json b/site/public/v1/software/elium/index.json new file mode 100644 index 000000000000..36c98ae2ca19 --- /dev/null +++ b/site/public/v1/software/elium/index.json @@ -0,0 +1,19 @@ +{ + "id": 2958, + "slug": "elium", + "name": "Elium", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q55387640" + ], + "created_at": "2026-07-10T10:12:40.673547", + "updated_at": "2026-07-10T10:12:40.673547", + "url": "/v1/software/elium" +} diff --git a/site/public/v1/software/elixir-code-smells/index.json b/site/public/v1/software/elixir-code-smells/index.json new file mode 100644 index 000000000000..8a5bb589825d --- /dev/null +++ b/site/public/v1/software/elixir-code-smells/index.json @@ -0,0 +1,21 @@ +{ + "id": 2959, + "slug": "elixir-code-smells", + "name": "Elixir-Code-Smells", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127485796" + ], + "created_at": "2026-07-10T10:12:40.673547", + "updated_at": "2026-07-10T10:12:40.673547", + "url": "/v1/software/elixir-code-smells" +} diff --git a/site/public/v1/software/elixirfm/index.json b/site/public/v1/software/elixirfm/index.json new file mode 100644 index 000000000000..c5a4b84ecdc2 --- /dev/null +++ b/site/public/v1/software/elixirfm/index.json @@ -0,0 +1,21 @@ +{ + "id": 2960, + "slug": "elixirfm", + "name": "ElixirFM", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "GNU General Public License, version 3.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134778570" + ], + "created_at": "2026-07-10T10:12:40.674547", + "updated_at": "2026-07-10T10:12:40.674547", + "url": "/v1/software/elixirfm" +} diff --git a/site/public/v1/software/eliya/index.json b/site/public/v1/software/eliya/index.json new file mode 100644 index 000000000000..c693d68abc6e --- /dev/null +++ b/site/public/v1/software/eliya/index.json @@ -0,0 +1,21 @@ +{ + "id": 2961, + "slug": "eliya", + "name": "Eliya", + "release_date": null, + "developers": [ + "Asymm Systems" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140406475" + ], + "created_at": "2026-07-10T10:12:40.674547", + "updated_at": "2026-07-10T10:12:40.674547", + "url": "/v1/software/eliya" +} diff --git a/site/public/v1/software/eliza/index.json b/site/public/v1/software/eliza/index.json new file mode 100644 index 000000000000..e2c5e8737663 --- /dev/null +++ b/site/public/v1/software/eliza/index.json @@ -0,0 +1,21 @@ +{ + "id": 2962, + "slug": "eliza", + "name": "ELIZA", + "release_date": null, + "developers": [ + "Joseph Weizenbaum" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q580318" + ], + "created_at": "2026-07-10T10:12:40.674547", + "updated_at": "2026-07-10T10:12:40.674547", + "url": "/v1/software/eliza" +} diff --git a/site/public/v1/software/ellty/index.json b/site/public/v1/software/ellty/index.json new file mode 100644 index 000000000000..242f0f17f1a7 --- /dev/null +++ b/site/public/v1/software/ellty/index.json @@ -0,0 +1,21 @@ +{ + "id": 2963, + "slug": "ellty", + "name": "Ellty", + "release_date": null, + "developers": [ + "Taskina Pty Ltd" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137716180" + ], + "created_at": "2026-07-10T10:12:40.675483", + "updated_at": "2026-07-10T10:12:40.675483", + "url": "/v1/software/ellty" +} diff --git a/site/public/v1/software/elmah/index.json b/site/public/v1/software/elmah/index.json new file mode 100644 index 000000000000..cd01c67b677f --- /dev/null +++ b/site/public/v1/software/elmah/index.json @@ -0,0 +1,21 @@ +{ + "id": 2964, + "slug": "elmah", + "name": "ELMAH", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Apache License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5323298" + ], + "created_at": "2026-07-10T10:12:40.675483", + "updated_at": "2026-07-10T10:12:40.675483", + "url": "/v1/software/elmah" +} diff --git a/site/public/v1/software/elml/index.json b/site/public/v1/software/elml/index.json new file mode 100644 index 000000000000..891d74c01212 --- /dev/null +++ b/site/public/v1/software/elml/index.json @@ -0,0 +1,23 @@ +{ + "id": 2965, + "slug": "elml", + "name": "eLML", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Java" + ], + "licenses": [ + "Apache License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1993217" + ], + "created_at": "2026-07-10T10:12:40.675483", + "updated_at": "2026-07-10T10:12:40.675483", + "url": "/v1/software/elml" +} diff --git a/site/public/v1/software/elmo/index.json b/site/public/v1/software/elmo/index.json new file mode 100644 index 000000000000..8e834c3a1eca --- /dev/null +++ b/site/public/v1/software/elmo/index.json @@ -0,0 +1,19 @@ +{ + "id": 2966, + "slug": "elmo", + "name": "ELMo", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q100952135" + ], + "created_at": "2026-07-10T10:12:40.675483", + "updated_at": "2026-07-10T10:12:40.675483", + "url": "/v1/software/elmo" +} diff --git a/site/public/v1/software/elogind/index.json b/site/public/v1/software/elogind/index.json new file mode 100644 index 000000000000..612ff814b59f --- /dev/null +++ b/site/public/v1/software/elogind/index.json @@ -0,0 +1,19 @@ +{ + "id": 2967, + "slug": "elogind", + "name": "elogind", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116695664" + ], + "created_at": "2026-07-10T10:12:40.676548", + "updated_at": "2026-07-10T10:12:40.676548", + "url": "/v1/software/elogind" +} diff --git a/site/public/v1/software/eloquens/index.json b/site/public/v1/software/eloquens/index.json new file mode 100644 index 000000000000..5b0f420704d2 --- /dev/null +++ b/site/public/v1/software/eloquens/index.json @@ -0,0 +1,19 @@ +{ + "id": 2968, + "slug": "eloquens", + "name": "Eloquens", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q48771199" + ], + "created_at": "2026-07-10T10:12:40.676548", + "updated_at": "2026-07-10T10:12:40.676548", + "url": "/v1/software/eloquens" +} diff --git a/site/public/v1/software/else/index.json b/site/public/v1/software/else/index.json new file mode 100644 index 000000000000..5c200e5bad17 --- /dev/null +++ b/site/public/v1/software/else/index.json @@ -0,0 +1,19 @@ +{ + "id": 2969, + "slug": "else", + "name": "ELSE", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087800" + ], + "created_at": "2026-07-10T10:12:40.676548", + "updated_at": "2026-07-10T10:12:40.676548", + "url": "/v1/software/else" +} diff --git a/site/public/v1/software/elymentz/index.json b/site/public/v1/software/elymentz/index.json new file mode 100644 index 000000000000..48aa0cab0da3 --- /dev/null +++ b/site/public/v1/software/elymentz/index.json @@ -0,0 +1,19 @@ +{ + "id": 2970, + "slug": "elymentz", + "name": "Elymentz", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q21463036" + ], + "created_at": "2026-07-10T10:12:40.677568", + "updated_at": "2026-07-10T10:12:40.677568", + "url": "/v1/software/elymentz" +} diff --git a/site/public/v1/software/em-client/index.json b/site/public/v1/software/em-client/index.json new file mode 100644 index 000000000000..027183833068 --- /dev/null +++ b/site/public/v1/software/em-client/index.json @@ -0,0 +1,22 @@ +{ + "id": 2971, + "slug": "em-client", + "name": "eM Client", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5323650" + ], + "created_at": "2026-07-10T10:12:40.677568", + "updated_at": "2026-07-10T10:12:40.677568", + "url": "/v1/software/em-client" +} diff --git a/site/public/v1/software/emailchemy/index.json b/site/public/v1/software/emailchemy/index.json new file mode 100644 index 000000000000..391e16f27de1 --- /dev/null +++ b/site/public/v1/software/emailchemy/index.json @@ -0,0 +1,22 @@ +{ + "id": 2972, + "slug": "emailchemy", + "name": "Emailchemy", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q82729870" + ], + "created_at": "2026-07-10T10:12:40.677568", + "updated_at": "2026-07-10T10:12:40.677568", + "url": "/v1/software/emailchemy" +} diff --git a/site/public/v1/software/emailtray/index.json b/site/public/v1/software/emailtray/index.json new file mode 100644 index 000000000000..7771f73bce3f --- /dev/null +++ b/site/public/v1/software/emailtray/index.json @@ -0,0 +1,19 @@ +{ + "id": 2973, + "slug": "emailtray", + "name": "EmailTray", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5368797" + ], + "created_at": "2026-07-10T10:12:40.678553", + "updated_at": "2026-07-10T10:12:40.678553", + "url": "/v1/software/emailtray" +} diff --git a/site/public/v1/software/emarox-map/index.json b/site/public/v1/software/emarox-map/index.json new file mode 100644 index 000000000000..990b97743fbb --- /dev/null +++ b/site/public/v1/software/emarox-map/index.json @@ -0,0 +1,23 @@ +{ + "id": 2974, + "slug": "emarox-map", + "name": "Emarox Map", + "release_date": null, + "developers": [ + "EMAROX" + ], + "publishers": [], + "operating_systems": [ + "website" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139997505" + ], + "created_at": "2026-07-10T10:12:40.678553", + "updated_at": "2026-07-10T10:12:40.678553", + "url": "/v1/software/emarox-map" +} diff --git a/site/public/v1/software/emarox-pallet/index.json b/site/public/v1/software/emarox-pallet/index.json new file mode 100644 index 000000000000..d19fa69208f0 --- /dev/null +++ b/site/public/v1/software/emarox-pallet/index.json @@ -0,0 +1,23 @@ +{ + "id": 2975, + "slug": "emarox-pallet", + "name": "Emarox Pallet", + "release_date": null, + "developers": [ + "EMAROX" + ], + "publishers": [], + "operating_systems": [ + "website" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139997495" + ], + "created_at": "2026-07-10T10:12:40.678553", + "updated_at": "2026-07-10T10:12:40.678553", + "url": "/v1/software/emarox-pallet" +} diff --git a/site/public/v1/software/embedded-javascript/index.json b/site/public/v1/software/embedded-javascript/index.json new file mode 100644 index 000000000000..7d5410ea2955 --- /dev/null +++ b/site/public/v1/software/embedded-javascript/index.json @@ -0,0 +1,21 @@ +{ + "id": 2976, + "slug": "embedded-javascript", + "name": "Embedded JavaScript", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Apache Software License 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131298877" + ], + "created_at": "2026-07-10T10:12:40.679552", + "updated_at": "2026-07-10T10:12:40.679552", + "url": "/v1/software/embedded-javascript" +} diff --git a/site/public/v1/software/embedded-wizard/index.json b/site/public/v1/software/embedded-wizard/index.json new file mode 100644 index 000000000000..9eb5babc744f --- /dev/null +++ b/site/public/v1/software/embedded-wizard/index.json @@ -0,0 +1,19 @@ +{ + "id": 2977, + "slug": "embedded-wizard", + "name": "Embedded Wizard", + "release_date": "2003-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5369996" + ], + "created_at": "2026-07-10T10:12:40.679552", + "updated_at": "2026-07-10T10:12:40.679552", + "url": "/v1/software/embedded-wizard" +} diff --git a/site/public/v1/software/embergen/index.json b/site/public/v1/software/embergen/index.json new file mode 100644 index 000000000000..3e960961555a --- /dev/null +++ b/site/public/v1/software/embergen/index.json @@ -0,0 +1,19 @@ +{ + "id": 2978, + "slug": "embergen", + "name": "EmberGen", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q114935602" + ], + "created_at": "2026-07-10T10:12:40.679552", + "updated_at": "2026-07-10T10:12:40.679552", + "url": "/v1/software/embergen" +} diff --git a/site/public/v1/software/emc-atmos/index.json b/site/public/v1/software/emc-atmos/index.json new file mode 100644 index 000000000000..e095e2cef6dd --- /dev/null +++ b/site/public/v1/software/emc-atmos/index.json @@ -0,0 +1,21 @@ +{ + "id": 2979, + "slug": "emc-atmos", + "name": "EMC Atmos", + "release_date": null, + "developers": [ + "Dell EMC" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5323372" + ], + "created_at": "2026-07-10T10:12:40.679552", + "updated_at": "2026-07-10T10:12:40.679552", + "url": "/v1/software/emc-atmos" +} diff --git a/site/public/v1/software/emc-scaleio/index.json b/site/public/v1/software/emc-scaleio/index.json new file mode 100644 index 000000000000..6cf3c719578c --- /dev/null +++ b/site/public/v1/software/emc-scaleio/index.json @@ -0,0 +1,23 @@ +{ + "id": 2980, + "slug": "emc-scaleio", + "name": "EMC ScaleIO", + "release_date": null, + "developers": [ + "Dell EMC" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22073386" + ], + "created_at": "2026-07-10T10:12:40.680551", + "updated_at": "2026-07-10T10:12:40.680551", + "url": "/v1/software/emc-scaleio" +} diff --git a/site/public/v1/software/emerging-rule/index.json b/site/public/v1/software/emerging-rule/index.json new file mode 100644 index 000000000000..c490435f160b --- /dev/null +++ b/site/public/v1/software/emerging-rule/index.json @@ -0,0 +1,19 @@ +{ + "id": 2981, + "slug": "emerging-rule", + "name": "Emerging Rule", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139494902" + ], + "created_at": "2026-07-10T10:12:40.680551", + "updated_at": "2026-07-10T10:12:40.680551", + "url": "/v1/software/emerging-rule" +} diff --git a/site/public/v1/software/emf-refactor/index.json b/site/public/v1/software/emf-refactor/index.json new file mode 100644 index 000000000000..94c4c9ff7df0 --- /dev/null +++ b/site/public/v1/software/emf-refactor/index.json @@ -0,0 +1,19 @@ +{ + "id": 2982, + "slug": "emf-refactor", + "name": "EMF Refactor", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76167549" + ], + "created_at": "2026-07-10T10:12:40.680551", + "updated_at": "2026-07-10T10:12:40.680551", + "url": "/v1/software/emf-refactor" +} diff --git a/site/public/v1/software/emf-teneo-model-relational-database-integration/index.json b/site/public/v1/software/emf-teneo-model-relational-database-integration/index.json new file mode 100644 index 000000000000..5ea457fe995d --- /dev/null +++ b/site/public/v1/software/emf-teneo-model-relational-database-integration/index.json @@ -0,0 +1,19 @@ +{ + "id": 2983, + "slug": "emf-teneo-model-relational-database-integration", + "name": "EMF Teneo Model - Relational Database Integration", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76167568" + ], + "created_at": "2026-07-10T10:12:40.681555", + "updated_at": "2026-07-10T10:12:40.681555", + "url": "/v1/software/emf-teneo-model-relational-database-integration" +} diff --git a/site/public/v1/software/emfatic/index.json b/site/public/v1/software/emfatic/index.json new file mode 100644 index 000000000000..caf4aa3f3723 --- /dev/null +++ b/site/public/v1/software/emfatic/index.json @@ -0,0 +1,19 @@ +{ + "id": 2984, + "slug": "emfatic", + "name": "emfatic", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76167579" + ], + "created_at": "2026-07-10T10:12:40.681555", + "updated_at": "2026-07-10T10:12:40.681555", + "url": "/v1/software/emfatic" +} diff --git a/site/public/v1/software/emft-texo/index.json b/site/public/v1/software/emft-texo/index.json new file mode 100644 index 000000000000..615130d138cb --- /dev/null +++ b/site/public/v1/software/emft-texo/index.json @@ -0,0 +1,19 @@ +{ + "id": 2985, + "slug": "emft-texo", + "name": "EMFT Texo", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76167598" + ], + "created_at": "2026-07-10T10:12:40.681555", + "updated_at": "2026-07-10T10:12:40.681555", + "url": "/v1/software/emft-texo" +} diff --git a/site/public/v1/software/emigma/index.json b/site/public/v1/software/emigma/index.json new file mode 100644 index 000000000000..5d35da50d502 --- /dev/null +++ b/site/public/v1/software/emigma/index.json @@ -0,0 +1,19 @@ +{ + "id": 2986, + "slug": "emigma", + "name": "Emigma", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28957000" + ], + "created_at": "2026-07-10T10:12:40.682614", + "updated_at": "2026-07-10T10:12:40.682614", + "url": "/v1/software/emigma" +} diff --git a/site/public/v1/software/emilpro/index.json b/site/public/v1/software/emilpro/index.json new file mode 100644 index 000000000000..b5fbfb63d5e2 --- /dev/null +++ b/site/public/v1/software/emilpro/index.json @@ -0,0 +1,21 @@ +{ + "id": 2987, + "slug": "emilpro", + "name": "emilpro", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "GNU General Public License, version 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974822" + ], + "created_at": "2026-07-10T10:12:40.682614", + "updated_at": "2026-07-10T10:12:40.682614", + "url": "/v1/software/emilpro" +} diff --git a/site/public/v1/software/emissary/index.json b/site/public/v1/software/emissary/index.json new file mode 100644 index 000000000000..5456f22aad37 --- /dev/null +++ b/site/public/v1/software/emissary/index.json @@ -0,0 +1,23 @@ +{ + "id": 2988, + "slug": "emissary", + "name": "Emissary", + "release_date": "1995-01-01", + "developers": [ + "Attachmate" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5372623" + ], + "created_at": "2026-07-10T10:12:40.682614", + "updated_at": "2026-07-10T10:12:40.682614", + "url": "/v1/software/emissary" +} diff --git a/site/public/v1/software/emissions-generation-resource-integrated-database/index.json b/site/public/v1/software/emissions-generation-resource-integrated-database/index.json new file mode 100644 index 000000000000..63120799bb5c --- /dev/null +++ b/site/public/v1/software/emissions-generation-resource-integrated-database/index.json @@ -0,0 +1,19 @@ +{ + "id": 2989, + "slug": "emissions-generation-resource-integrated-database", + "name": "Emissions & Generation Resource Integrated Database", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5372633" + ], + "created_at": "2026-07-10T10:12:40.683567", + "updated_at": "2026-07-10T10:12:40.683567", + "url": "/v1/software/emissions-generation-resource-integrated-database" +} diff --git a/site/public/v1/software/eml-to-csv/index.json b/site/public/v1/software/eml-to-csv/index.json new file mode 100644 index 000000000000..3db562b7ce11 --- /dev/null +++ b/site/public/v1/software/eml-to-csv/index.json @@ -0,0 +1,23 @@ +{ + "id": 2990, + "slug": "eml-to-csv", + "name": "EML to CSV", + "release_date": null, + "developers": [ + "C. M. Leal Ltda" + ], + "publishers": [], + "operating_systems": [ + "macOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138472454" + ], + "created_at": "2026-07-10T10:12:40.683567", + "updated_at": "2026-07-10T10:12:40.683567", + "url": "/v1/software/eml-to-csv" +} diff --git a/site/public/v1/software/eml-to-pdf/index.json b/site/public/v1/software/eml-to-pdf/index.json new file mode 100644 index 000000000000..ebe305c42227 --- /dev/null +++ b/site/public/v1/software/eml-to-pdf/index.json @@ -0,0 +1,23 @@ +{ + "id": 2991, + "slug": "eml-to-pdf", + "name": "EML to PDF", + "release_date": null, + "developers": [ + "C. M. Leal Ltda" + ], + "publishers": [], + "operating_systems": [ + "macOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138472374" + ], + "created_at": "2026-07-10T10:12:40.683567", + "updated_at": "2026-07-10T10:12:40.683567", + "url": "/v1/software/eml-to-pdf" +} diff --git a/site/public/v1/software/empire/index.json b/site/public/v1/software/empire/index.json new file mode 100644 index 000000000000..1328b857a04c --- /dev/null +++ b/site/public/v1/software/empire/index.json @@ -0,0 +1,19 @@ +{ + "id": 2992, + "slug": "empire", + "name": "Empire", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16335178" + ], + "created_at": "2026-07-10T10:12:40.684480", + "updated_at": "2026-07-10T10:12:40.684480", + "url": "/v1/software/empire" +} diff --git a/site/public/v1/software/empirical-software-engineering/index.json b/site/public/v1/software/empirical-software-engineering/index.json new file mode 100644 index 000000000000..c086fb38d733 --- /dev/null +++ b/site/public/v1/software/empirical-software-engineering/index.json @@ -0,0 +1,19 @@ +{ + "id": 2993, + "slug": "empirical-software-engineering", + "name": "Empirical software engineering", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109973292" + ], + "created_at": "2026-07-10T10:12:40.684480", + "updated_at": "2026-07-10T10:12:40.684480", + "url": "/v1/software/empirical-software-engineering" +} diff --git a/site/public/v1/software/employee-coaching-software/index.json b/site/public/v1/software/employee-coaching-software/index.json new file mode 100644 index 000000000000..8f79e6bc950a --- /dev/null +++ b/site/public/v1/software/employee-coaching-software/index.json @@ -0,0 +1,19 @@ +{ + "id": 2994, + "slug": "employee-coaching-software", + "name": "Employee Coaching Software", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135527200" + ], + "created_at": "2026-07-10T10:12:40.684480", + "updated_at": "2026-07-10T10:12:40.684480", + "url": "/v1/software/employee-coaching-software" +} diff --git a/site/public/v1/software/employee-recognition-software/index.json b/site/public/v1/software/employee-recognition-software/index.json new file mode 100644 index 000000000000..5bc6d19952d0 --- /dev/null +++ b/site/public/v1/software/employee-recognition-software/index.json @@ -0,0 +1,19 @@ +{ + "id": 2995, + "slug": "employee-recognition-software", + "name": "Employee Recognition Software", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135527167" + ], + "created_at": "2026-07-10T10:12:40.685478", + "updated_at": "2026-07-10T10:12:40.685478", + "url": "/v1/software/employee-recognition-software" +} diff --git a/site/public/v1/software/empress-embedded-database/index.json b/site/public/v1/software/empress-embedded-database/index.json new file mode 100644 index 000000000000..0ea12995faa6 --- /dev/null +++ b/site/public/v1/software/empress-embedded-database/index.json @@ -0,0 +1,19 @@ +{ + "id": 2996, + "slug": "empress-embedded-database", + "name": "Empress Embedded Database", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5374511" + ], + "created_at": "2026-07-10T10:12:40.685478", + "updated_at": "2026-07-10T10:12:40.685478", + "url": "/v1/software/empress-embedded-database" +} diff --git a/site/public/v1/software/emso-simulator/index.json b/site/public/v1/software/emso-simulator/index.json new file mode 100644 index 000000000000..9f5e16ad7e2c --- /dev/null +++ b/site/public/v1/software/emso-simulator/index.json @@ -0,0 +1,19 @@ +{ + "id": 2997, + "slug": "emso-simulator", + "name": "EMSO simulator", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5323630" + ], + "created_at": "2026-07-10T10:12:40.685478", + "updated_at": "2026-07-10T10:12:40.685478", + "url": "/v1/software/emso-simulator" +} diff --git a/site/public/v1/software/emulationstation/index.json b/site/public/v1/software/emulationstation/index.json new file mode 100644 index 000000000000..2cddb5887f34 --- /dev/null +++ b/site/public/v1/software/emulationstation/index.json @@ -0,0 +1,19 @@ +{ + "id": 2998, + "slug": "emulationstation", + "name": "EmulationStation", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115295210" + ], + "created_at": "2026-07-10T10:12:40.686482", + "updated_at": "2026-07-10T10:12:40.686482", + "url": "/v1/software/emulationstation" +} diff --git a/site/public/v1/software/emule-cn-mod/index.json b/site/public/v1/software/emule-cn-mod/index.json new file mode 100644 index 000000000000..7de248c75686 --- /dev/null +++ b/site/public/v1/software/emule-cn-mod/index.json @@ -0,0 +1,19 @@ +{ + "id": 2999, + "slug": "emule-cn-mod", + "name": "Emule CN Mod", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10847001" + ], + "created_at": "2026-07-10T10:12:40.686482", + "updated_at": "2026-07-10T10:12:40.686482", + "url": "/v1/software/emule-cn-mod" +} diff --git a/site/public/v1/software/emule-eastshare-mod/index.json b/site/public/v1/software/emule-eastshare-mod/index.json new file mode 100644 index 000000000000..ac3bf4d25d04 --- /dev/null +++ b/site/public/v1/software/emule-eastshare-mod/index.json @@ -0,0 +1,19 @@ +{ + "id": 3000, + "slug": "emule-eastshare-mod", + "name": "Emule Eastshare Mod", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10847002" + ], + "created_at": "2026-07-10T10:12:40.686482", + "updated_at": "2026-07-10T10:12:40.686482", + "url": "/v1/software/emule-eastshare-mod" +} diff --git a/site/public/v1/software/emule-excalibur-mod/index.json b/site/public/v1/software/emule-excalibur-mod/index.json new file mode 100644 index 000000000000..27d6583c17ce --- /dev/null +++ b/site/public/v1/software/emule-excalibur-mod/index.json @@ -0,0 +1,19 @@ +{ + "id": 3001, + "slug": "emule-excalibur-mod", + "name": "Emule excalibur Mod", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10847011" + ], + "created_at": "2026-07-10T10:12:40.687550", + "updated_at": "2026-07-10T10:12:40.687550", + "url": "/v1/software/emule-excalibur-mod" +} diff --git a/site/public/v1/software/emule-magicangel-mod/index.json b/site/public/v1/software/emule-magicangel-mod/index.json new file mode 100644 index 000000000000..4b7ca3bc1c7b --- /dev/null +++ b/site/public/v1/software/emule-magicangel-mod/index.json @@ -0,0 +1,19 @@ +{ + "id": 3002, + "slug": "emule-magicangel-mod", + "name": "Emule Magicangel Mod", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10847003" + ], + "created_at": "2026-07-10T10:12:40.687550", + "updated_at": "2026-07-10T10:12:40.687550", + "url": "/v1/software/emule-magicangel-mod" +} diff --git a/site/public/v1/software/emule-mephisto-mod/index.json b/site/public/v1/software/emule-mephisto-mod/index.json new file mode 100644 index 000000000000..4918dada15eb --- /dev/null +++ b/site/public/v1/software/emule-mephisto-mod/index.json @@ -0,0 +1,19 @@ +{ + "id": 3003, + "slug": "emule-mephisto-mod", + "name": "Emule Mephisto Mod", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10847004" + ], + "created_at": "2026-07-10T10:12:40.687550", + "updated_at": "2026-07-10T10:12:40.687550", + "url": "/v1/software/emule-mephisto-mod" +} diff --git a/site/public/v1/software/emule-neomule-mod/index.json b/site/public/v1/software/emule-neomule-mod/index.json new file mode 100644 index 000000000000..4804efcb5186 --- /dev/null +++ b/site/public/v1/software/emule-neomule-mod/index.json @@ -0,0 +1,19 @@ +{ + "id": 3004, + "slug": "emule-neomule-mod", + "name": "Emule Neomule Mod", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10847005" + ], + "created_at": "2026-07-10T10:12:40.688575", + "updated_at": "2026-07-10T10:12:40.688575", + "url": "/v1/software/emule-neomule-mod" +} diff --git a/site/public/v1/software/emule-plus-koizo/index.json b/site/public/v1/software/emule-plus-koizo/index.json new file mode 100644 index 000000000000..b12e525949c2 --- /dev/null +++ b/site/public/v1/software/emule-plus-koizo/index.json @@ -0,0 +1,19 @@ +{ + "id": 3005, + "slug": "emule-plus-koizo", + "name": "Emule Plus Koizo", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10269533" + ], + "created_at": "2026-07-10T10:12:40.688575", + "updated_at": "2026-07-10T10:12:40.688575", + "url": "/v1/software/emule-plus-koizo" +} diff --git a/site/public/v1/software/emule-scarangel-mod/index.json b/site/public/v1/software/emule-scarangel-mod/index.json new file mode 100644 index 000000000000..1f8b8f49dfbd --- /dev/null +++ b/site/public/v1/software/emule-scarangel-mod/index.json @@ -0,0 +1,19 @@ +{ + "id": 3006, + "slug": "emule-scarangel-mod", + "name": "Emule Scarangel mod", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10847006" + ], + "created_at": "2026-07-10T10:12:40.689486", + "updated_at": "2026-07-10T10:12:40.689486", + "url": "/v1/software/emule-scarangel-mod" +} diff --git a/site/public/v1/software/emule-scarangel/index.json b/site/public/v1/software/emule-scarangel/index.json new file mode 100644 index 000000000000..45d9f2903176 --- /dev/null +++ b/site/public/v1/software/emule-scarangel/index.json @@ -0,0 +1,19 @@ +{ + "id": 3007, + "slug": "emule-scarangel", + "name": "Emule ScarAngel", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5816169" + ], + "created_at": "2026-07-10T10:12:40.689486", + "updated_at": "2026-07-10T10:12:40.689486", + "url": "/v1/software/emule-scarangel" +} diff --git a/site/public/v1/software/emule-stullemule-mod/index.json b/site/public/v1/software/emule-stullemule-mod/index.json new file mode 100644 index 000000000000..96b4fd11e8a2 --- /dev/null +++ b/site/public/v1/software/emule-stullemule-mod/index.json @@ -0,0 +1,19 @@ +{ + "id": 3008, + "slug": "emule-stullemule-mod", + "name": "Emule Stullemule mod", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10847007" + ], + "created_at": "2026-07-10T10:12:40.689486", + "updated_at": "2026-07-10T10:12:40.689486", + "url": "/v1/software/emule-stullemule-mod" +} diff --git a/site/public/v1/software/emule-verycd-mod/index.json b/site/public/v1/software/emule-verycd-mod/index.json new file mode 100644 index 000000000000..e5f00408e12c --- /dev/null +++ b/site/public/v1/software/emule-verycd-mod/index.json @@ -0,0 +1,19 @@ +{ + "id": 3009, + "slug": "emule-verycd-mod", + "name": "Emule VeryCD Mod", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10847008" + ], + "created_at": "2026-07-10T10:12:40.689486", + "updated_at": "2026-07-10T10:12:40.689486", + "url": "/v1/software/emule-verycd-mod" +} diff --git a/site/public/v1/software/emule-x-mod/index.json b/site/public/v1/software/emule-x-mod/index.json new file mode 100644 index 000000000000..70321126493b --- /dev/null +++ b/site/public/v1/software/emule-x-mod/index.json @@ -0,0 +1,19 @@ +{ + "id": 3010, + "slug": "emule-x-mod", + "name": "Emule X Mod", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10847010" + ], + "created_at": "2026-07-10T10:12:40.690554", + "updated_at": "2026-07-10T10:12:40.690554", + "url": "/v1/software/emule-x-mod" +} diff --git a/site/public/v1/software/emule-x-ray-mod/index.json b/site/public/v1/software/emule-x-ray-mod/index.json new file mode 100644 index 000000000000..3cc2b5984570 --- /dev/null +++ b/site/public/v1/software/emule-x-ray-mod/index.json @@ -0,0 +1,19 @@ +{ + "id": 3011, + "slug": "emule-x-ray-mod", + "name": "Emule X-Ray Mod", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10847009" + ], + "created_at": "2026-07-10T10:12:40.690554", + "updated_at": "2026-07-10T10:12:40.690554", + "url": "/v1/software/emule-x-ray-mod" +} diff --git a/site/public/v1/software/emule-xtreme-mod/index.json b/site/public/v1/software/emule-xtreme-mod/index.json new file mode 100644 index 000000000000..cabf4d85df69 --- /dev/null +++ b/site/public/v1/software/emule-xtreme-mod/index.json @@ -0,0 +1,19 @@ +{ + "id": 3012, + "slug": "emule-xtreme-mod", + "name": "eMule Xtreme Mod", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8045077" + ], + "created_at": "2026-07-10T10:12:40.691568", + "updated_at": "2026-07-10T10:12:40.691568", + "url": "/v1/software/emule-xtreme-mod" +} diff --git a/site/public/v1/software/emx/index.json b/site/public/v1/software/emx/index.json new file mode 100644 index 000000000000..e4d5a139211a --- /dev/null +++ b/site/public/v1/software/emx/index.json @@ -0,0 +1,21 @@ +{ + "id": 3013, + "slug": "emx", + "name": "EMX", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "DOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5323648" + ], + "created_at": "2026-07-10T10:12:40.691568", + "updated_at": "2026-07-10T10:12:40.691568", + "url": "/v1/software/emx" +} diff --git a/site/public/v1/software/en-vogue/index.json b/site/public/v1/software/en-vogue/index.json new file mode 100644 index 000000000000..0c2154a026f5 --- /dev/null +++ b/site/public/v1/software/en-vogue/index.json @@ -0,0 +1,21 @@ +{ + "id": 3014, + "slug": "en-vogue", + "name": "En Vogue", + "release_date": null, + "developers": [ + "Matthias Jaap" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122750124" + ], + "created_at": "2026-07-10T10:12:40.691568", + "updated_at": "2026-07-10T10:12:40.691568", + "url": "/v1/software/en-vogue" +} diff --git a/site/public/v1/software/enable-software/index.json b/site/public/v1/software/enable-software/index.json new file mode 100644 index 000000000000..fef18d221001 --- /dev/null +++ b/site/public/v1/software/enable-software/index.json @@ -0,0 +1,19 @@ +{ + "id": 3015, + "slug": "enable-software", + "name": "EnABLE software", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5374929" + ], + "created_at": "2026-07-10T10:12:40.692539", + "updated_at": "2026-07-10T10:12:40.692539", + "url": "/v1/software/enable-software" +} diff --git a/site/public/v1/software/enca/index.json b/site/public/v1/software/enca/index.json new file mode 100644 index 000000000000..f6d8f41f0702 --- /dev/null +++ b/site/public/v1/software/enca/index.json @@ -0,0 +1,19 @@ +{ + "id": 3016, + "slug": "enca", + "name": "Enca", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110473961" + ], + "created_at": "2026-07-10T10:12:40.692539", + "updated_at": "2026-07-10T10:12:40.692539", + "url": "/v1/software/enca" +} diff --git a/site/public/v1/software/encarta/index.json b/site/public/v1/software/encarta/index.json new file mode 100644 index 000000000000..efb4facc5a9e --- /dev/null +++ b/site/public/v1/software/encarta/index.json @@ -0,0 +1,25 @@ +{ + "id": 3017, + "slug": "encarta", + "name": "Encarta", + "release_date": "1993-01-01", + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [ + "encyclopedia" + ], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q231136" + ], + "created_at": "2026-07-10T10:12:40.692539", + "updated_at": "2026-07-10T10:12:40.692539", + "url": "/v1/software/encarta" +} diff --git a/site/public/v1/software/encase/index.json b/site/public/v1/software/encase/index.json new file mode 100644 index 000000000000..6976bbe38933 --- /dev/null +++ b/site/public/v1/software/encase/index.json @@ -0,0 +1,23 @@ +{ + "id": 3018, + "slug": "encase", + "name": "EnCase", + "release_date": null, + "developers": [ + "Guidance Software" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3435415" + ], + "created_at": "2026-07-10T10:12:40.693557", + "updated_at": "2026-07-10T10:12:40.693557", + "url": "/v1/software/encase" +} diff --git a/site/public/v1/software/enchant-js/index.json b/site/public/v1/software/enchant-js/index.json new file mode 100644 index 000000000000..ff3ca6b020d7 --- /dev/null +++ b/site/public/v1/software/enchant-js/index.json @@ -0,0 +1,21 @@ +{ + "id": 3019, + "slug": "enchant-js", + "name": "enchant.js", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q24874740" + ], + "created_at": "2026-07-10T10:12:40.693557", + "updated_at": "2026-07-10T10:12:40.693557", + "url": "/v1/software/enchant-js" +} diff --git a/site/public/v1/software/encina/index.json b/site/public/v1/software/encina/index.json new file mode 100644 index 000000000000..dc292980918b --- /dev/null +++ b/site/public/v1/software/encina/index.json @@ -0,0 +1,22 @@ +{ + "id": 3020, + "slug": "encina", + "name": "Encina", + "release_date": null, + "developers": [ + "Transarc", + "IBM" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22695924" + ], + "created_at": "2026-07-10T10:12:40.693557", + "updated_at": "2026-07-10T10:12:40.693557", + "url": "/v1/software/encina" +} diff --git a/site/public/v1/software/encorebassing/index.json b/site/public/v1/software/encorebassing/index.json new file mode 100644 index 000000000000..166fd793eb18 --- /dev/null +++ b/site/public/v1/software/encorebassing/index.json @@ -0,0 +1,19 @@ +{ + "id": 3021, + "slug": "encorebassing", + "name": "EncoreBassing", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10758477" + ], + "created_at": "2026-07-10T10:12:40.693557", + "updated_at": "2026-07-10T10:12:40.693557", + "url": "/v1/software/encorebassing" +} diff --git a/site/public/v1/software/encyclop-dia-britannica-ultimate-reference-suite/index.json b/site/public/v1/software/encyclop-dia-britannica-ultimate-reference-suite/index.json new file mode 100644 index 000000000000..0c035b484958 --- /dev/null +++ b/site/public/v1/software/encyclop-dia-britannica-ultimate-reference-suite/index.json @@ -0,0 +1,25 @@ +{ + "id": 3022, + "slug": "encyclop-dia-britannica-ultimate-reference-suite", + "name": "Encyclopædia Britannica Ultimate Reference Suite", + "release_date": null, + "developers": [ + "Encyclopædia Britannica Inc." + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5375744" + ], + "created_at": "2026-07-10T10:12:40.694545", + "updated_at": "2026-07-10T10:12:40.694545", + "url": "/v1/software/encyclop-dia-britannica-ultimate-reference-suite" +} diff --git a/site/public/v1/software/endaro/index.json b/site/public/v1/software/endaro/index.json new file mode 100644 index 000000000000..59c4cc13ed9d --- /dev/null +++ b/site/public/v1/software/endaro/index.json @@ -0,0 +1,19 @@ +{ + "id": 3023, + "slug": "endaro", + "name": "Endaro", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140363080" + ], + "created_at": "2026-07-10T10:12:40.694545", + "updated_at": "2026-07-10T10:12:40.694545", + "url": "/v1/software/endaro" +} diff --git a/site/public/v1/software/endrain/index.json b/site/public/v1/software/endrain/index.json new file mode 100644 index 000000000000..816e6c7bf71f --- /dev/null +++ b/site/public/v1/software/endrain/index.json @@ -0,0 +1,21 @@ +{ + "id": 3024, + "slug": "endrain", + "name": "EnDrain", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Delphi" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q30642511" + ], + "created_at": "2026-07-10T10:12:40.694545", + "updated_at": "2026-07-10T10:12:40.694545", + "url": "/v1/software/endrain" +} diff --git a/site/public/v1/software/eneboo/index.json b/site/public/v1/software/eneboo/index.json new file mode 100644 index 000000000000..23b83be60a9e --- /dev/null +++ b/site/public/v1/software/eneboo/index.json @@ -0,0 +1,19 @@ +{ + "id": 3025, + "slug": "eneboo", + "name": "Eneboo", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q20014793" + ], + "created_at": "2026-07-10T10:12:40.695602", + "updated_at": "2026-07-10T10:12:40.695602", + "url": "/v1/software/eneboo" +} diff --git a/site/public/v1/software/energymech/index.json b/site/public/v1/software/energymech/index.json new file mode 100644 index 000000000000..c78922248c8c --- /dev/null +++ b/site/public/v1/software/energymech/index.json @@ -0,0 +1,19 @@ +{ + "id": 3026, + "slug": "energymech", + "name": "EnergyMech", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3054099" + ], + "created_at": "2026-07-10T10:12:40.695602", + "updated_at": "2026-07-10T10:12:40.695602", + "url": "/v1/software/energymech" +} diff --git a/site/public/v1/software/engauge-digitizer/index.json b/site/public/v1/software/engauge-digitizer/index.json new file mode 100644 index 000000000000..2d7d46db61b9 --- /dev/null +++ b/site/public/v1/software/engauge-digitizer/index.json @@ -0,0 +1,19 @@ +{ + "id": 3027, + "slug": "engauge-digitizer", + "name": "Engauge Digitizer", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16687704" + ], + "created_at": "2026-07-10T10:12:40.695602", + "updated_at": "2026-07-10T10:12:40.695602", + "url": "/v1/software/engauge-digitizer" +} diff --git a/site/public/v1/software/engaz-crm/index.json b/site/public/v1/software/engaz-crm/index.json new file mode 100644 index 000000000000..61452f80871f --- /dev/null +++ b/site/public/v1/software/engaz-crm/index.json @@ -0,0 +1,19 @@ +{ + "id": 3028, + "slug": "engaz-crm", + "name": "Engaz CRM", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139916955" + ], + "created_at": "2026-07-10T10:12:40.696617", + "updated_at": "2026-07-10T10:12:40.696617", + "url": "/v1/software/engaz-crm" +} diff --git a/site/public/v1/software/engineering-equation-solver/index.json b/site/public/v1/software/engineering-equation-solver/index.json new file mode 100644 index 000000000000..477adb532b1f --- /dev/null +++ b/site/public/v1/software/engineering-equation-solver/index.json @@ -0,0 +1,19 @@ +{ + "id": 3029, + "slug": "engineering-equation-solver", + "name": "Engineering Equation Solver", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5377834" + ], + "created_at": "2026-07-10T10:12:40.696617", + "updated_at": "2026-07-10T10:12:40.696617", + "url": "/v1/software/engineering-equation-solver" +} diff --git a/site/public/v1/software/enhydra-server/index.json b/site/public/v1/software/enhydra-server/index.json new file mode 100644 index 000000000000..b85495acd1b7 --- /dev/null +++ b/site/public/v1/software/enhydra-server/index.json @@ -0,0 +1,19 @@ +{ + "id": 3030, + "slug": "enhydra-server", + "name": "Enhydra Server", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5378823" + ], + "created_at": "2026-07-10T10:12:40.696617", + "updated_at": "2026-07-10T10:12:40.696617", + "url": "/v1/software/enhydra-server" +} diff --git a/site/public/v1/software/enlight-quickshot/index.json b/site/public/v1/software/enlight-quickshot/index.json new file mode 100644 index 000000000000..1287f5d51ce9 --- /dev/null +++ b/site/public/v1/software/enlight-quickshot/index.json @@ -0,0 +1,19 @@ +{ + "id": 3031, + "slug": "enlight-quickshot", + "name": "Enlight Quickshot", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q85759377" + ], + "created_at": "2026-07-10T10:12:40.697618", + "updated_at": "2026-07-10T10:12:40.697618", + "url": "/v1/software/enlight-quickshot" +} diff --git a/site/public/v1/software/enlightened-sound-daemon/index.json b/site/public/v1/software/enlightened-sound-daemon/index.json new file mode 100644 index 000000000000..6b9cf1cfaf81 --- /dev/null +++ b/site/public/v1/software/enlightened-sound-daemon/index.json @@ -0,0 +1,21 @@ +{ + "id": 3032, + "slug": "enlightened-sound-daemon", + "name": "Enlightened Sound Daemon", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "GNU General Public License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1167965" + ], + "created_at": "2026-07-10T10:12:40.697618", + "updated_at": "2026-07-10T10:12:40.697618", + "url": "/v1/software/enlightened-sound-daemon" +} diff --git a/site/public/v1/software/enlil/index.json b/site/public/v1/software/enlil/index.json new file mode 100644 index 000000000000..41ad3978ba81 --- /dev/null +++ b/site/public/v1/software/enlil/index.json @@ -0,0 +1,19 @@ +{ + "id": 3033, + "slug": "enlil", + "name": "Enlil", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136995211" + ], + "created_at": "2026-07-10T10:12:40.697618", + "updated_at": "2026-07-10T10:12:40.697618", + "url": "/v1/software/enlil" +} diff --git a/site/public/v1/software/enovia/index.json b/site/public/v1/software/enovia/index.json new file mode 100644 index 000000000000..0fc1b4f61280 --- /dev/null +++ b/site/public/v1/software/enovia/index.json @@ -0,0 +1,19 @@ +{ + "id": 3034, + "slug": "enovia", + "name": "ENOVIA", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3045997" + ], + "created_at": "2026-07-10T10:12:40.698630", + "updated_at": "2026-07-10T10:12:40.698630", + "url": "/v1/software/enovia" +} diff --git a/site/public/v1/software/enps/index.json b/site/public/v1/software/enps/index.json new file mode 100644 index 000000000000..1a2c361d7f47 --- /dev/null +++ b/site/public/v1/software/enps/index.json @@ -0,0 +1,21 @@ +{ + "id": 3035, + "slug": "enps", + "name": "ENPS", + "release_date": null, + "developers": [ + "Associated Press" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1794491" + ], + "created_at": "2026-07-10T10:12:40.698630", + "updated_at": "2026-07-10T10:12:40.698630", + "url": "/v1/software/enps" +} diff --git a/site/public/v1/software/enquire/index.json b/site/public/v1/software/enquire/index.json new file mode 100644 index 000000000000..58b5b08fd290 --- /dev/null +++ b/site/public/v1/software/enquire/index.json @@ -0,0 +1,19 @@ +{ + "id": 3036, + "slug": "enquire", + "name": "EnQuire", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5374939" + ], + "created_at": "2026-07-10T10:12:40.698630", + "updated_at": "2026-07-10T10:12:40.698630", + "url": "/v1/software/enquire" +} diff --git a/site/public/v1/software/enscape/index.json b/site/public/v1/software/enscape/index.json new file mode 100644 index 000000000000..a62ff3cdbda8 --- /dev/null +++ b/site/public/v1/software/enscape/index.json @@ -0,0 +1,19 @@ +{ + "id": 3037, + "slug": "enscape", + "name": "Enscape", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q83416071" + ], + "created_at": "2026-07-10T10:12:40.699630", + "updated_at": "2026-07-10T10:12:40.699630", + "url": "/v1/software/enscape" +} diff --git a/site/public/v1/software/enscribe/index.json b/site/public/v1/software/enscribe/index.json new file mode 100644 index 000000000000..f7bc7ea3646f --- /dev/null +++ b/site/public/v1/software/enscribe/index.json @@ -0,0 +1,21 @@ +{ + "id": 3038, + "slug": "enscribe", + "name": "Enscribe", + "release_date": null, + "developers": [ + "Hewlett-Packard" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5379930" + ], + "created_at": "2026-07-10T10:12:40.699630", + "updated_at": "2026-07-10T10:12:40.699630", + "url": "/v1/software/enscribe" +} diff --git a/site/public/v1/software/ensemblebma/index.json b/site/public/v1/software/ensemblebma/index.json new file mode 100644 index 000000000000..6ebbfed42fbf --- /dev/null +++ b/site/public/v1/software/ensemblebma/index.json @@ -0,0 +1,21 @@ +{ + "id": 3039, + "slug": "ensemblebma", + "name": "ensembleBMA", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "GNU General Public License, version 2.0 or later" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q98972500" + ], + "created_at": "2026-07-10T10:12:40.699630", + "updated_at": "2026-07-10T10:12:40.699630", + "url": "/v1/software/ensemblebma" +} diff --git a/site/public/v1/software/ensmallen/index.json b/site/public/v1/software/ensmallen/index.json new file mode 100644 index 000000000000..258f18ff9b84 --- /dev/null +++ b/site/public/v1/software/ensmallen/index.json @@ -0,0 +1,23 @@ +{ + "id": 3040, + "slug": "ensmallen", + "name": "ensmallen", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Python" + ], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116924819" + ], + "created_at": "2026-07-10T10:12:40.700621", + "updated_at": "2026-07-10T10:12:40.700621", + "url": "/v1/software/ensmallen" +} diff --git a/site/public/v1/software/enstratus/index.json b/site/public/v1/software/enstratus/index.json new file mode 100644 index 000000000000..cfd78e6a2504 --- /dev/null +++ b/site/public/v1/software/enstratus/index.json @@ -0,0 +1,19 @@ +{ + "id": 3041, + "slug": "enstratus", + "name": "Enstratus", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5374945" + ], + "created_at": "2026-07-10T10:12:40.700621", + "updated_at": "2026-07-10T10:12:40.700621", + "url": "/v1/software/enstratus" +} diff --git a/site/public/v1/software/ente-web-api-server/index.json b/site/public/v1/software/ente-web-api-server/index.json new file mode 100644 index 000000000000..ac3caefdbf5b --- /dev/null +++ b/site/public/v1/software/ente-web-api-server/index.json @@ -0,0 +1,19 @@ +{ + "id": 3042, + "slug": "ente-web-api-server", + "name": "Ente Web API (server)", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136521787" + ], + "created_at": "2026-07-10T10:12:40.700621", + "updated_at": "2026-07-10T10:12:40.700621", + "url": "/v1/software/ente-web-api-server" +} diff --git a/site/public/v1/software/ente-web-photos-server/index.json b/site/public/v1/software/ente-web-photos-server/index.json new file mode 100644 index 000000000000..72abe1fea78f --- /dev/null +++ b/site/public/v1/software/ente-web-photos-server/index.json @@ -0,0 +1,19 @@ +{ + "id": 3043, + "slug": "ente-web-photos-server", + "name": "Ente Web Photos (server)", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136521736" + ], + "created_at": "2026-07-10T10:12:40.701615", + "updated_at": "2026-07-10T10:12:40.701615", + "url": "/v1/software/ente-web-photos-server" +} diff --git a/site/public/v1/software/enterprise-archive-solution/index.json b/site/public/v1/software/enterprise-archive-solution/index.json new file mode 100644 index 000000000000..cec20caaa381 --- /dev/null +++ b/site/public/v1/software/enterprise-archive-solution/index.json @@ -0,0 +1,19 @@ +{ + "id": 3044, + "slug": "enterprise-archive-solution", + "name": "Enterprise Archive Solution", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25339837" + ], + "created_at": "2026-07-10T10:12:40.701615", + "updated_at": "2026-07-10T10:12:40.701615", + "url": "/v1/software/enterprise-archive-solution" +} diff --git a/site/public/v1/software/enterprise-dynamics/index.json b/site/public/v1/software/enterprise-dynamics/index.json new file mode 100644 index 000000000000..7f365f15e173 --- /dev/null +++ b/site/public/v1/software/enterprise-dynamics/index.json @@ -0,0 +1,25 @@ +{ + "id": 3045, + "slug": "enterprise-dynamics", + "name": "Enterprise Dynamics", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [ + "Delphi" + ], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1344662" + ], + "created_at": "2026-07-10T10:12:40.701615", + "updated_at": "2026-07-10T10:12:40.701615", + "url": "/v1/software/enterprise-dynamics" +} diff --git a/site/public/v1/software/enterprise-extender/index.json b/site/public/v1/software/enterprise-extender/index.json new file mode 100644 index 000000000000..323738783dcb --- /dev/null +++ b/site/public/v1/software/enterprise-extender/index.json @@ -0,0 +1,19 @@ +{ + "id": 3046, + "slug": "enterprise-extender", + "name": "Enterprise Extender", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120207377" + ], + "created_at": "2026-07-10T10:12:40.701615", + "updated_at": "2026-07-10T10:12:40.701615", + "url": "/v1/software/enterprise-extender" +} diff --git a/site/public/v1/software/enterprise-storage-os/index.json b/site/public/v1/software/enterprise-storage-os/index.json new file mode 100644 index 000000000000..5d6430bb76ff --- /dev/null +++ b/site/public/v1/software/enterprise-storage-os/index.json @@ -0,0 +1,19 @@ +{ + "id": 3047, + "slug": "enterprise-storage-os", + "name": "Enterprise Storage OS", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q19597079" + ], + "created_at": "2026-07-10T10:12:40.702641", + "updated_at": "2026-07-10T10:12:40.702641", + "url": "/v1/software/enterprise-storage-os" +} diff --git a/site/public/v1/software/enterprise-vault/index.json b/site/public/v1/software/enterprise-vault/index.json new file mode 100644 index 000000000000..5aa1e8acd886 --- /dev/null +++ b/site/public/v1/software/enterprise-vault/index.json @@ -0,0 +1,21 @@ +{ + "id": 3048, + "slug": "enterprise-vault", + "name": "Enterprise Vault", + "release_date": null, + "developers": [ + "Gen Digital" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5380363" + ], + "created_at": "2026-07-10T10:12:40.702641", + "updated_at": "2026-07-10T10:12:40.702641", + "url": "/v1/software/enterprise-vault" +} diff --git a/site/public/v1/software/entropy/index.json b/site/public/v1/software/entropy/index.json new file mode 100644 index 000000000000..53e218a9f9f0 --- /dev/null +++ b/site/public/v1/software/entropy/index.json @@ -0,0 +1,19 @@ +{ + "id": 3049, + "slug": "entropy", + "name": "ENTROPY", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1957501" + ], + "created_at": "2026-07-10T10:12:40.702641", + "updated_at": "2026-07-10T10:12:40.702641", + "url": "/v1/software/entropy" +} diff --git a/site/public/v1/software/env3d/index.json b/site/public/v1/software/env3d/index.json new file mode 100644 index 000000000000..a28aa4b0307c --- /dev/null +++ b/site/public/v1/software/env3d/index.json @@ -0,0 +1,19 @@ +{ + "id": 3050, + "slug": "env3d", + "name": "Env3D", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5380902" + ], + "created_at": "2026-07-10T10:12:40.703638", + "updated_at": "2026-07-10T10:12:40.703638", + "url": "/v1/software/env3d" +} diff --git a/site/public/v1/software/enverus-intelligence-research/index.json b/site/public/v1/software/enverus-intelligence-research/index.json new file mode 100644 index 000000000000..d58201065885 --- /dev/null +++ b/site/public/v1/software/enverus-intelligence-research/index.json @@ -0,0 +1,21 @@ +{ + "id": 3051, + "slug": "enverus-intelligence-research", + "name": "Enverus Intelligence Research", + "release_date": null, + "developers": [ + "Enverus" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135263945" + ], + "created_at": "2026-07-10T10:12:40.703638", + "updated_at": "2026-07-10T10:12:40.703638", + "url": "/v1/software/enverus-intelligence-research" +} diff --git a/site/public/v1/software/enverus-rfx/index.json b/site/public/v1/software/enverus-rfx/index.json new file mode 100644 index 000000000000..0a1c1872113e --- /dev/null +++ b/site/public/v1/software/enverus-rfx/index.json @@ -0,0 +1,21 @@ +{ + "id": 3052, + "slug": "enverus-rfx", + "name": "Enverus RFx", + "release_date": null, + "developers": [ + "Enverus" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135263959" + ], + "created_at": "2026-07-10T10:12:40.703638", + "updated_at": "2026-07-10T10:12:40.703638", + "url": "/v1/software/enverus-rfx" +} diff --git a/site/public/v1/software/envi-met/index.json b/site/public/v1/software/envi-met/index.json new file mode 100644 index 000000000000..c01e6d5927de --- /dev/null +++ b/site/public/v1/software/envi-met/index.json @@ -0,0 +1,19 @@ +{ + "id": 3053, + "slug": "envi-met", + "name": "ENVI-met", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111603204" + ], + "created_at": "2026-07-10T10:12:40.704632", + "updated_at": "2026-07-10T10:12:40.704632", + "url": "/v1/software/envi-met" +} diff --git a/site/public/v1/software/environmental-audio-extensions/index.json b/site/public/v1/software/environmental-audio-extensions/index.json new file mode 100644 index 000000000000..50d48c756753 --- /dev/null +++ b/site/public/v1/software/environmental-audio-extensions/index.json @@ -0,0 +1,21 @@ +{ + "id": 3054, + "slug": "environmental-audio-extensions", + "name": "Environmental Audio Extensions", + "release_date": null, + "developers": [ + "Creative Technology" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1202192" + ], + "created_at": "2026-07-10T10:12:40.704632", + "updated_at": "2026-07-10T10:12:40.704632", + "url": "/v1/software/environmental-audio-extensions" +} diff --git a/site/public/v1/software/envoy-distributable-viewer/index.json b/site/public/v1/software/envoy-distributable-viewer/index.json new file mode 100644 index 000000000000..a334b6abd9d4 --- /dev/null +++ b/site/public/v1/software/envoy-distributable-viewer/index.json @@ -0,0 +1,21 @@ +{ + "id": 3055, + "slug": "envoy-distributable-viewer", + "name": "Envoy Distributable Viewer", + "release_date": null, + "developers": [ + "Tumbleweed Communications" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63885859" + ], + "created_at": "2026-07-10T10:12:40.704632", + "updated_at": "2026-07-10T10:12:40.704632", + "url": "/v1/software/envoy-distributable-viewer" +} diff --git a/site/public/v1/software/enzona/index.json b/site/public/v1/software/enzona/index.json new file mode 100644 index 000000000000..af7625268990 --- /dev/null +++ b/site/public/v1/software/enzona/index.json @@ -0,0 +1,21 @@ +{ + "id": 3056, + "slug": "enzona", + "name": "Enzona", + "release_date": "2019-07-10", + "developers": [], + "publishers": [], + "operating_systems": [ + "cross-platform" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113404585" + ], + "created_at": "2026-07-10T10:12:40.705634", + "updated_at": "2026-07-10T10:12:40.705634", + "url": "/v1/software/enzona" +} diff --git a/site/public/v1/software/enzyme/index.json b/site/public/v1/software/enzyme/index.json new file mode 100644 index 000000000000..09b38b69407e --- /dev/null +++ b/site/public/v1/software/enzyme/index.json @@ -0,0 +1,21 @@ +{ + "id": 3057, + "slug": "enzyme", + "name": "enzyme", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Apache Software License 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974823" + ], + "created_at": "2026-07-10T10:12:40.705634", + "updated_at": "2026-07-10T10:12:40.705634", + "url": "/v1/software/enzyme" +} diff --git a/site/public/v1/software/eonebill/index.json b/site/public/v1/software/eonebill/index.json new file mode 100644 index 000000000000..3202db4bb9c9 --- /dev/null +++ b/site/public/v1/software/eonebill/index.json @@ -0,0 +1,19 @@ +{ + "id": 3058, + "slug": "eonebill", + "name": "Eonebill", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138771047" + ], + "created_at": "2026-07-10T10:12:40.705634", + "updated_at": "2026-07-10T10:12:40.705634", + "url": "/v1/software/eonebill" +} diff --git a/site/public/v1/software/epages/index.json b/site/public/v1/software/epages/index.json new file mode 100644 index 000000000000..d8ac827e4393 --- /dev/null +++ b/site/public/v1/software/epages/index.json @@ -0,0 +1,19 @@ +{ + "id": 3059, + "slug": "epages", + "name": "ePages", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1275707" + ], + "created_at": "2026-07-10T10:12:40.706614", + "updated_at": "2026-07-10T10:12:40.706614", + "url": "/v1/software/epages" +} diff --git a/site/public/v1/software/epanet/index.json b/site/public/v1/software/epanet/index.json new file mode 100644 index 000000000000..53324d2f35e6 --- /dev/null +++ b/site/public/v1/software/epanet/index.json @@ -0,0 +1,23 @@ +{ + "id": 3060, + "slug": "epanet", + "name": "EPANET", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [ + "Object Pascal" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3277870" + ], + "created_at": "2026-07-10T10:12:40.706614", + "updated_at": "2026-07-10T10:12:40.706614", + "url": "/v1/software/epanet" +} diff --git a/site/public/v1/software/eparaksts/index.json b/site/public/v1/software/eparaksts/index.json new file mode 100644 index 000000000000..b7f4e16d8de9 --- /dev/null +++ b/site/public/v1/software/eparaksts/index.json @@ -0,0 +1,21 @@ +{ + "id": 3061, + "slug": "eparaksts", + "name": "eParaksts", + "release_date": null, + "developers": [ + "Latvia State Radio and Television Center" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123537135" + ], + "created_at": "2026-07-10T10:12:40.706614", + "updated_at": "2026-07-10T10:12:40.706614", + "url": "/v1/software/eparaksts" +} diff --git a/site/public/v1/software/epaybl/index.json b/site/public/v1/software/epaybl/index.json new file mode 100644 index 000000000000..2c0834ee00da --- /dev/null +++ b/site/public/v1/software/epaybl/index.json @@ -0,0 +1,19 @@ +{ + "id": 3062, + "slug": "epaybl", + "name": "EPayBL", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1275704" + ], + "created_at": "2026-07-10T10:12:40.706614", + "updated_at": "2026-07-10T10:12:40.706614", + "url": "/v1/software/epaybl" +} diff --git a/site/public/v1/software/epcedit/index.json b/site/public/v1/software/epcedit/index.json new file mode 100644 index 000000000000..4408a8a61de2 --- /dev/null +++ b/site/public/v1/software/epcedit/index.json @@ -0,0 +1,19 @@ +{ + "id": 3063, + "slug": "epcedit", + "name": "epcEdit", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084939" + ], + "created_at": "2026-07-10T10:12:40.707662", + "updated_at": "2026-07-10T10:12:40.707662", + "url": "/v1/software/epcedit" +} diff --git a/site/public/v1/software/epesi-q13099384/index.json b/site/public/v1/software/epesi-q13099384/index.json new file mode 100644 index 000000000000..c90fe2bb38c1 --- /dev/null +++ b/site/public/v1/software/epesi-q13099384/index.json @@ -0,0 +1,24 @@ +{ + "id": 3064, + "slug": "epesi-q13099384", + "name": "Epesi", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "PHP" + ], + "licenses": [ + "copyrighted free use", + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q13099384" + ], + "created_at": "2026-07-10T10:12:40.707662", + "updated_at": "2026-07-10T10:12:40.707662", + "url": "/v1/software/epesi-q13099384" +} diff --git a/site/public/v1/software/epesi/index.json b/site/public/v1/software/epesi/index.json new file mode 100644 index 000000000000..0a28bed43f69 --- /dev/null +++ b/site/public/v1/software/epesi/index.json @@ -0,0 +1,19 @@ +{ + "id": 3065, + "slug": "epesi", + "name": "Epesi", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5382117" + ], + "created_at": "2026-07-10T10:12:40.707662", + "updated_at": "2026-07-10T10:12:40.707662", + "url": "/v1/software/epesi" +} diff --git a/site/public/v1/software/ephedra/index.json b/site/public/v1/software/ephedra/index.json new file mode 100644 index 000000000000..7db58a1ed7f8 --- /dev/null +++ b/site/public/v1/software/ephedra/index.json @@ -0,0 +1,19 @@ +{ + "id": 3066, + "slug": "ephedra", + "name": "Ephedra", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q64030632" + ], + "created_at": "2026-07-10T10:12:40.708642", + "updated_at": "2026-07-10T10:12:40.708642", + "url": "/v1/software/ephedra" +} diff --git a/site/public/v1/software/epi-map/index.json b/site/public/v1/software/epi-map/index.json new file mode 100644 index 000000000000..5be2b6aa8081 --- /dev/null +++ b/site/public/v1/software/epi-map/index.json @@ -0,0 +1,25 @@ +{ + "id": 3067, + "slug": "epi-map", + "name": "Epi Map", + "release_date": null, + "developers": [ + "United States Centers for Disease Control and Prevention" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [ + "Visual Basic" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5382398" + ], + "created_at": "2026-07-10T10:12:40.708642", + "updated_at": "2026-07-10T10:12:40.708642", + "url": "/v1/software/epi-map" +} diff --git a/site/public/v1/software/epi-suite/index.json b/site/public/v1/software/epi-suite/index.json new file mode 100644 index 000000000000..83dbb6acf742 --- /dev/null +++ b/site/public/v1/software/epi-suite/index.json @@ -0,0 +1,19 @@ +{ + "id": 3068, + "slug": "epi-suite", + "name": "EPI Suite", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q114648314" + ], + "created_at": "2026-07-10T10:12:40.708642", + "updated_at": "2026-07-10T10:12:40.708642", + "url": "/v1/software/epi-suite" +} diff --git a/site/public/v1/software/epic-citadel/index.json b/site/public/v1/software/epic-citadel/index.json new file mode 100644 index 000000000000..2aa7c47c9b4d --- /dev/null +++ b/site/public/v1/software/epic-citadel/index.json @@ -0,0 +1,23 @@ +{ + "id": 3069, + "slug": "epic-citadel", + "name": "Epic Citadel", + "release_date": null, + "developers": [ + "Epic Games" + ], + "publishers": [], + "operating_systems": [ + "iOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5382446" + ], + "created_at": "2026-07-10T10:12:40.708642", + "updated_at": "2026-07-10T10:12:40.708642", + "url": "/v1/software/epic-citadel" +} diff --git a/site/public/v1/software/epidata/index.json b/site/public/v1/software/epidata/index.json new file mode 100644 index 000000000000..aff5ededd346 --- /dev/null +++ b/site/public/v1/software/epidata/index.json @@ -0,0 +1,21 @@ +{ + "id": 3070, + "slug": "epidata", + "name": "Epidata", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5382673" + ], + "created_at": "2026-07-10T10:12:40.709624", + "updated_at": "2026-07-10T10:12:40.709624", + "url": "/v1/software/epidata" +} diff --git a/site/public/v1/software/epoptes/index.json b/site/public/v1/software/epoptes/index.json new file mode 100644 index 000000000000..fe215919eac9 --- /dev/null +++ b/site/public/v1/software/epoptes/index.json @@ -0,0 +1,19 @@ +{ + "id": 3071, + "slug": "epoptes", + "name": "Epoptes", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q21264631" + ], + "created_at": "2026-07-10T10:12:40.710215", + "updated_at": "2026-07-10T10:12:40.710215", + "url": "/v1/software/epoptes" +} diff --git a/site/public/v1/software/epostmailer/index.json b/site/public/v1/software/epostmailer/index.json new file mode 100644 index 000000000000..baca60dec085 --- /dev/null +++ b/site/public/v1/software/epostmailer/index.json @@ -0,0 +1,19 @@ +{ + "id": 3072, + "slug": "epostmailer", + "name": "Epostmailer", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5383819" + ], + "created_at": "2026-07-10T10:12:40.710215", + "updated_at": "2026-07-10T10:12:40.710215", + "url": "/v1/software/epostmailer" +} diff --git a/site/public/v1/software/eprints-org/index.json b/site/public/v1/software/eprints-org/index.json new file mode 100644 index 000000000000..21e8077c5bd2 --- /dev/null +++ b/site/public/v1/software/eprints-org/index.json @@ -0,0 +1,19 @@ +{ + "id": 3073, + "slug": "eprints-org", + "name": "EPrints.org", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084940" + ], + "created_at": "2026-07-10T10:12:40.710215", + "updated_at": "2026-07-10T10:12:40.710215", + "url": "/v1/software/eprints-org" +} diff --git a/site/public/v1/software/eprompter/index.json b/site/public/v1/software/eprompter/index.json new file mode 100644 index 000000000000..e71f204032e7 --- /dev/null +++ b/site/public/v1/software/eprompter/index.json @@ -0,0 +1,19 @@ +{ + "id": 3074, + "slug": "eprompter", + "name": "ePrompter", + "release_date": "2000-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5323979" + ], + "created_at": "2026-07-10T10:12:40.710215", + "updated_at": "2026-07-10T10:12:40.710215", + "url": "/v1/software/eprompter" +} diff --git a/site/public/v1/software/epstool/index.json b/site/public/v1/software/epstool/index.json new file mode 100644 index 000000000000..d14970745a13 --- /dev/null +++ b/site/public/v1/software/epstool/index.json @@ -0,0 +1,19 @@ +{ + "id": 3075, + "slug": "epstool", + "name": "epstool", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62848686" + ], + "created_at": "2026-07-10T10:12:40.711328", + "updated_at": "2026-07-10T10:12:40.711328", + "url": "/v1/software/epstool" +} diff --git a/site/public/v1/software/eqiqs/index.json b/site/public/v1/software/eqiqs/index.json new file mode 100644 index 000000000000..754aa6fae4e6 --- /dev/null +++ b/site/public/v1/software/eqiqs/index.json @@ -0,0 +1,21 @@ +{ + "id": 3076, + "slug": "eqiqs", + "name": "EQIQs", + "release_date": null, + "developers": [ + "EQIQs" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140036722" + ], + "created_at": "2026-07-10T10:12:40.711328", + "updated_at": "2026-07-10T10:12:40.711328", + "url": "/v1/software/eqiqs" +} diff --git a/site/public/v1/software/equinox/index.json b/site/public/v1/software/equinox/index.json new file mode 100644 index 000000000000..da58096b1b63 --- /dev/null +++ b/site/public/v1/software/equinox/index.json @@ -0,0 +1,25 @@ +{ + "id": 3077, + "slug": "equinox", + "name": "Equinox", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "cross-platform" + ], + "programming_languages": [ + "Java" + ], + "licenses": [ + "Eclipse Public License 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1347837" + ], + "created_at": "2026-07-10T10:12:40.711328", + "updated_at": "2026-07-10T10:12:40.711328", + "url": "/v1/software/equinox" +} diff --git a/site/public/v1/software/er-studio/index.json b/site/public/v1/software/er-studio/index.json new file mode 100644 index 000000000000..92d0bfec2efb --- /dev/null +++ b/site/public/v1/software/er-studio/index.json @@ -0,0 +1,21 @@ +{ + "id": 3078, + "slug": "er-studio", + "name": "ER/Studio", + "release_date": null, + "developers": [ + "Idera Software" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5323995" + ], + "created_at": "2026-07-10T10:12:40.712292", + "updated_at": "2026-07-10T10:12:40.712292", + "url": "/v1/software/er-studio" +} diff --git a/site/public/v1/software/erbele/index.json b/site/public/v1/software/erbele/index.json new file mode 100644 index 000000000000..03c3b9799b0b --- /dev/null +++ b/site/public/v1/software/erbele/index.json @@ -0,0 +1,21 @@ +{ + "id": 3079, + "slug": "erbele", + "name": "Erbele", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Apache Software License 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q29364573" + ], + "created_at": "2026-07-10T10:12:40.712292", + "updated_at": "2026-07-10T10:12:40.712292", + "url": "/v1/software/erbele" +} diff --git a/site/public/v1/software/es-file-explorer/index.json b/site/public/v1/software/es-file-explorer/index.json new file mode 100644 index 000000000000..e4bce994287e --- /dev/null +++ b/site/public/v1/software/es-file-explorer/index.json @@ -0,0 +1,22 @@ +{ + "id": 3080, + "slug": "es-file-explorer", + "name": "ES File Explorer", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "iOS", + "macOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q15807046" + ], + "created_at": "2026-07-10T10:12:40.712292", + "updated_at": "2026-07-10T10:12:40.712292", + "url": "/v1/software/es-file-explorer" +} diff --git a/site/public/v1/software/escriptorium/index.json b/site/public/v1/software/escriptorium/index.json new file mode 100644 index 000000000000..cd7b0562f311 --- /dev/null +++ b/site/public/v1/software/escriptorium/index.json @@ -0,0 +1,26 @@ +{ + "id": 3081, + "slug": "escriptorium", + "name": "eScriptorium", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "macOS" + ], + "programming_languages": [ + "Python", + "HTML" + ], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111218645" + ], + "created_at": "2026-07-10T10:12:40.712292", + "updated_at": "2026-07-10T10:12:40.712292", + "url": "/v1/software/escriptorium" +} diff --git a/site/public/v1/software/esdat/index.json b/site/public/v1/software/esdat/index.json new file mode 100644 index 000000000000..c231d88114c9 --- /dev/null +++ b/site/public/v1/software/esdat/index.json @@ -0,0 +1,19 @@ +{ + "id": 3082, + "slug": "esdat", + "name": "Esdat", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5397530" + ], + "created_at": "2026-07-10T10:12:40.713284", + "updated_at": "2026-07-10T10:12:40.713284", + "url": "/v1/software/esdat" +} diff --git a/site/public/v1/software/esearch/index.json b/site/public/v1/software/esearch/index.json new file mode 100644 index 000000000000..c176cbfe2875 --- /dev/null +++ b/site/public/v1/software/esearch/index.json @@ -0,0 +1,19 @@ +{ + "id": 3083, + "slug": "esearch", + "name": "esearch", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974825" + ], + "created_at": "2026-07-10T10:12:40.714231", + "updated_at": "2026-07-10T10:12:40.714231", + "url": "/v1/software/esearch" +} diff --git a/site/public/v1/software/eselect-lib-bin-symlink/index.json b/site/public/v1/software/eselect-lib-bin-symlink/index.json new file mode 100644 index 000000000000..519f213a373d --- /dev/null +++ b/site/public/v1/software/eselect-lib-bin-symlink/index.json @@ -0,0 +1,19 @@ +{ + "id": 3084, + "slug": "eselect-lib-bin-symlink", + "name": "eselect-lib-bin-symlink", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974827" + ], + "created_at": "2026-07-10T10:12:40.714231", + "updated_at": "2026-07-10T10:12:40.714231", + "url": "/v1/software/eselect-lib-bin-symlink" +} diff --git a/site/public/v1/software/eselect-mode/index.json b/site/public/v1/software/eselect-mode/index.json new file mode 100644 index 000000000000..4f04f00d2d6a --- /dev/null +++ b/site/public/v1/software/eselect-mode/index.json @@ -0,0 +1,19 @@ +{ + "id": 3085, + "slug": "eselect-mode", + "name": "eselect-mode", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974828" + ], + "created_at": "2026-07-10T10:12:40.714231", + "updated_at": "2026-07-10T10:12:40.714231", + "url": "/v1/software/eselect-mode" +} diff --git a/site/public/v1/software/eselect-python/index.json b/site/public/v1/software/eselect-python/index.json new file mode 100644 index 000000000000..89370bb2dd6d --- /dev/null +++ b/site/public/v1/software/eselect-python/index.json @@ -0,0 +1,19 @@ +{ + "id": 3086, + "slug": "eselect-python", + "name": "eselect-python", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974829" + ], + "created_at": "2026-07-10T10:12:40.714231", + "updated_at": "2026-07-10T10:12:40.714231", + "url": "/v1/software/eselect-python" +} diff --git a/site/public/v1/software/eselect/index.json b/site/public/v1/software/eselect/index.json new file mode 100644 index 000000000000..29741a13a94e --- /dev/null +++ b/site/public/v1/software/eselect/index.json @@ -0,0 +1,21 @@ +{ + "id": 3087, + "slug": "eselect", + "name": "eselect", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Gentoo Linux" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974826" + ], + "created_at": "2026-07-10T10:12:40.715226", + "updated_at": "2026-07-10T10:12:40.715226", + "url": "/v1/software/eselect" +} diff --git a/site/public/v1/software/eset-smart-security/index.json b/site/public/v1/software/eset-smart-security/index.json new file mode 100644 index 000000000000..438a6fb3fa78 --- /dev/null +++ b/site/public/v1/software/eset-smart-security/index.json @@ -0,0 +1,21 @@ +{ + "id": 3088, + "slug": "eset-smart-security", + "name": "ESET Smart Security", + "release_date": null, + "developers": [ + "ESET" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11197790" + ], + "created_at": "2026-07-10T10:12:40.715226", + "updated_at": "2026-07-10T10:12:40.715226", + "url": "/v1/software/eset-smart-security" +} diff --git a/site/public/v1/software/esewa/index.json b/site/public/v1/software/esewa/index.json new file mode 100644 index 000000000000..dc093f94bdaa --- /dev/null +++ b/site/public/v1/software/esewa/index.json @@ -0,0 +1,19 @@ +{ + "id": 3089, + "slug": "esewa", + "name": "eSewa", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5324409" + ], + "created_at": "2026-07-10T10:12:40.716225", + "updated_at": "2026-07-10T10:12:40.716225", + "url": "/v1/software/esewa" +} diff --git a/site/public/v1/software/esg-analytics/index.json b/site/public/v1/software/esg-analytics/index.json new file mode 100644 index 000000000000..1963b23d9bf8 --- /dev/null +++ b/site/public/v1/software/esg-analytics/index.json @@ -0,0 +1,21 @@ +{ + "id": 3090, + "slug": "esg-analytics", + "name": "ESG Analytics", + "release_date": null, + "developers": [ + "Enverus" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135263966" + ], + "created_at": "2026-07-10T10:12:40.716225", + "updated_at": "2026-07-10T10:12:40.716225", + "url": "/v1/software/esg-analytics" +} diff --git a/site/public/v1/software/esignal/index.json b/site/public/v1/software/esignal/index.json new file mode 100644 index 000000000000..07093b10897c --- /dev/null +++ b/site/public/v1/software/esignal/index.json @@ -0,0 +1,21 @@ +{ + "id": 3091, + "slug": "esignal", + "name": "eSignal", + "release_date": null, + "developers": [ + "Interactive Data Corporation" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5324413" + ], + "created_at": "2026-07-10T10:12:40.716225", + "updated_at": "2026-07-10T10:12:40.716225", + "url": "/v1/software/esignal" +} diff --git a/site/public/v1/software/esker-fax/index.json b/site/public/v1/software/esker-fax/index.json new file mode 100644 index 000000000000..01de753bbdce --- /dev/null +++ b/site/public/v1/software/esker-fax/index.json @@ -0,0 +1,19 @@ +{ + "id": 3092, + "slug": "esker-fax", + "name": "Esker Fax", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5398077" + ], + "created_at": "2026-07-10T10:12:40.717227", + "updated_at": "2026-07-10T10:12:40.717227", + "url": "/v1/software/esker-fax" +} diff --git a/site/public/v1/software/esmf/index.json b/site/public/v1/software/esmf/index.json new file mode 100644 index 000000000000..ae59c5dee7ec --- /dev/null +++ b/site/public/v1/software/esmf/index.json @@ -0,0 +1,19 @@ +{ + "id": 3093, + "slug": "esmf", + "name": "ESMF", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5324181" + ], + "created_at": "2026-07-10T10:12:40.717227", + "updated_at": "2026-07-10T10:12:40.717227", + "url": "/v1/software/esmf" +} diff --git a/site/public/v1/software/esmtp/index.json b/site/public/v1/software/esmtp/index.json new file mode 100644 index 000000000000..f4732abdad14 --- /dev/null +++ b/site/public/v1/software/esmtp/index.json @@ -0,0 +1,19 @@ +{ + "id": 3094, + "slug": "esmtp", + "name": "ESMTP", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62849044" + ], + "created_at": "2026-07-10T10:12:40.717227", + "updated_at": "2026-07-10T10:12:40.717227", + "url": "/v1/software/esmtp" +} diff --git a/site/public/v1/software/esobi/index.json b/site/public/v1/software/esobi/index.json new file mode 100644 index 000000000000..9e28d75e2f7b --- /dev/null +++ b/site/public/v1/software/esobi/index.json @@ -0,0 +1,19 @@ +{ + "id": 3095, + "slug": "esobi", + "name": "eSobi", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q200483" + ], + "created_at": "2026-07-10T10:12:40.718226", + "updated_at": "2026-07-10T10:12:40.718226", + "url": "/v1/software/esobi" +} diff --git a/site/public/v1/software/esomidas/index.json b/site/public/v1/software/esomidas/index.json new file mode 100644 index 000000000000..615dcb58c0fd --- /dev/null +++ b/site/public/v1/software/esomidas/index.json @@ -0,0 +1,19 @@ +{ + "id": 3096, + "slug": "esomidas", + "name": "esomidas", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065130" + ], + "created_at": "2026-07-10T10:12:40.718226", + "updated_at": "2026-07-10T10:12:40.718226", + "url": "/v1/software/esomidas" +} diff --git a/site/public/v1/software/esp-idf/index.json b/site/public/v1/software/esp-idf/index.json new file mode 100644 index 000000000000..4c9d609c958a --- /dev/null +++ b/site/public/v1/software/esp-idf/index.json @@ -0,0 +1,24 @@ +{ + "id": 3097, + "slug": "esp-idf", + "name": "ESP-IDF", + "release_date": null, + "developers": [ + "Angus Gratton", + "Ivan Grokhotkov" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Apache Software License 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131611294" + ], + "created_at": "2026-07-10T10:12:40.718226", + "updated_at": "2026-07-10T10:12:40.718226", + "url": "/v1/software/esp-idf" +} diff --git a/site/public/v1/software/esp-r/index.json b/site/public/v1/software/esp-r/index.json new file mode 100644 index 000000000000..0316ea06b212 --- /dev/null +++ b/site/public/v1/software/esp-r/index.json @@ -0,0 +1,19 @@ +{ + "id": 3098, + "slug": "esp-r", + "name": "ESP-r", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5324204" + ], + "created_at": "2026-07-10T10:12:40.719293", + "updated_at": "2026-07-10T10:12:40.719293", + "url": "/v1/software/esp-r" +} diff --git a/site/public/v1/software/esperient-creator/index.json b/site/public/v1/software/esperient-creator/index.json new file mode 100644 index 000000000000..9d2758022b08 --- /dev/null +++ b/site/public/v1/software/esperient-creator/index.json @@ -0,0 +1,19 @@ +{ + "id": 3099, + "slug": "esperient-creator", + "name": "Esperient Creator", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10275062" + ], + "created_at": "2026-07-10T10:12:40.719293", + "updated_at": "2026-07-10T10:12:40.719293", + "url": "/v1/software/esperient-creator" +} diff --git a/site/public/v1/software/esphome/index.json b/site/public/v1/software/esphome/index.json new file mode 100644 index 000000000000..477712b89570 --- /dev/null +++ b/site/public/v1/software/esphome/index.json @@ -0,0 +1,24 @@ +{ + "id": 3100, + "slug": "esphome", + "name": "ESPHome", + "release_date": null, + "developers": [ + "Nabu Casa" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "GNU General Public License, version 3.0", + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117037663" + ], + "created_at": "2026-07-10T10:12:40.719293", + "updated_at": "2026-07-10T10:12:40.719293", + "url": "/v1/software/esphome" +} diff --git a/site/public/v1/software/espocrm/index.json b/site/public/v1/software/espocrm/index.json new file mode 100644 index 000000000000..a7d9969e319c --- /dev/null +++ b/site/public/v1/software/espocrm/index.json @@ -0,0 +1,19 @@ +{ + "id": 3101, + "slug": "espocrm", + "name": "EspoCRM", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111333251" + ], + "created_at": "2026-07-10T10:12:40.719293", + "updated_at": "2026-07-10T10:12:40.719293", + "url": "/v1/software/espocrm" +} diff --git a/site/public/v1/software/espresso-q28974831/index.json b/site/public/v1/software/espresso-q28974831/index.json new file mode 100644 index 000000000000..a5be60ec0ef2 --- /dev/null +++ b/site/public/v1/software/espresso-q28974831/index.json @@ -0,0 +1,21 @@ +{ + "id": 3102, + "slug": "espresso-q28974831", + "name": "espresso++", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "GNU General Public License, version 3.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974831" + ], + "created_at": "2026-07-10T10:12:40.720285", + "updated_at": "2026-07-10T10:12:40.720285", + "url": "/v1/software/espresso-q28974831" +} diff --git a/site/public/v1/software/espresso/index.json b/site/public/v1/software/espresso/index.json new file mode 100644 index 000000000000..5fa1cb56e2c8 --- /dev/null +++ b/site/public/v1/software/espresso/index.json @@ -0,0 +1,19 @@ +{ + "id": 3103, + "slug": "espresso", + "name": "espresso", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974830" + ], + "created_at": "2026-07-10T10:12:40.720285", + "updated_at": "2026-07-10T10:12:40.720285", + "url": "/v1/software/espresso" +} diff --git a/site/public/v1/software/essbase/index.json b/site/public/v1/software/essbase/index.json new file mode 100644 index 000000000000..19d8bbab9aab --- /dev/null +++ b/site/public/v1/software/essbase/index.json @@ -0,0 +1,30 @@ +{ + "id": 3104, + "slug": "essbase", + "name": "Essbase", + "release_date": null, + "developers": [ + "Hyperion Solutions Corporation", + "Oracle Corporation" + ], + "publishers": [], + "operating_systems": [ + "HP-UX", + "IBM AIX", + "Solaris", + "macOS", + "Microsoft Windows" + ], + "programming_languages": [ + "Java" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1368563" + ], + "created_at": "2026-07-10T10:12:40.720285", + "updated_at": "2026-07-10T10:12:40.720285", + "url": "/v1/software/essbase" +} diff --git a/site/public/v1/software/essiv/index.json b/site/public/v1/software/essiv/index.json new file mode 100644 index 000000000000..dc599e285d7f --- /dev/null +++ b/site/public/v1/software/essiv/index.json @@ -0,0 +1,19 @@ +{ + "id": 3105, + "slug": "essiv", + "name": "ESSIV", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1275969" + ], + "created_at": "2026-07-10T10:12:40.721286", + "updated_at": "2026-07-10T10:12:40.721286", + "url": "/v1/software/essiv" +} diff --git a/site/public/v1/software/estar/index.json b/site/public/v1/software/estar/index.json new file mode 100644 index 000000000000..8d2f1675f878 --- /dev/null +++ b/site/public/v1/software/estar/index.json @@ -0,0 +1,22 @@ +{ + "id": 3106, + "slug": "estar", + "name": "ESTAR", + "release_date": null, + "developers": [ + "Liverpool John Moores University", + "University of Exeter" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5324380" + ], + "created_at": "2026-07-10T10:12:40.721286", + "updated_at": "2026-07-10T10:12:40.721286", + "url": "/v1/software/estar" +} diff --git a/site/public/v1/software/estmorf/index.json b/site/public/v1/software/estmorf/index.json new file mode 100644 index 000000000000..9420ce7906e2 --- /dev/null +++ b/site/public/v1/software/estmorf/index.json @@ -0,0 +1,19 @@ +{ + "id": 3107, + "slug": "estmorf", + "name": "ESTMORF", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087802" + ], + "created_at": "2026-07-10T10:12:40.721286", + "updated_at": "2026-07-10T10:12:40.721286", + "url": "/v1/software/estmorf" +} diff --git a/site/public/v1/software/etaoi-keyboard/index.json b/site/public/v1/software/etaoi-keyboard/index.json new file mode 100644 index 000000000000..bb9b3edea563 --- /dev/null +++ b/site/public/v1/software/etaoi-keyboard/index.json @@ -0,0 +1,19 @@ +{ + "id": 3108, + "slug": "etaoi-keyboard", + "name": "ETAOI keyboard", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5324435" + ], + "created_at": "2026-07-10T10:12:40.722300", + "updated_at": "2026-07-10T10:12:40.722300", + "url": "/v1/software/etaoi-keyboard" +} diff --git a/site/public/v1/software/etap-3/index.json b/site/public/v1/software/etap-3/index.json new file mode 100644 index 000000000000..6f54e6a51e51 --- /dev/null +++ b/site/public/v1/software/etap-3/index.json @@ -0,0 +1,19 @@ +{ + "id": 3109, + "slug": "etap-3", + "name": "ETAP-3", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5324436" + ], + "created_at": "2026-07-10T10:12:40.722300", + "updated_at": "2026-07-10T10:12:40.722300", + "url": "/v1/software/etap-3" +} diff --git a/site/public/v1/software/etblast/index.json b/site/public/v1/software/etblast/index.json new file mode 100644 index 000000000000..dbc595ad9a4e --- /dev/null +++ b/site/public/v1/software/etblast/index.json @@ -0,0 +1,19 @@ +{ + "id": 3110, + "slug": "etblast", + "name": "eTBLAST", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5324447" + ], + "created_at": "2026-07-10T10:12:40.722300", + "updated_at": "2026-07-10T10:12:40.722300", + "url": "/v1/software/etblast" +} diff --git a/site/public/v1/software/etcpack/index.json b/site/public/v1/software/etcpack/index.json new file mode 100644 index 000000000000..21b3e18e2c0b --- /dev/null +++ b/site/public/v1/software/etcpack/index.json @@ -0,0 +1,21 @@ +{ + "id": 3111, + "slug": "etcpack", + "name": "ETCPACK", + "release_date": null, + "developers": [ + "Ericsson" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60526092" + ], + "created_at": "2026-07-10T10:12:40.723314", + "updated_at": "2026-07-10T10:12:40.723314", + "url": "/v1/software/etcpack" +} diff --git a/site/public/v1/software/etecsim/index.json b/site/public/v1/software/etecsim/index.json new file mode 100644 index 000000000000..aff4a198de7c --- /dev/null +++ b/site/public/v1/software/etecsim/index.json @@ -0,0 +1,21 @@ +{ + "id": 3112, + "slug": "etecsim", + "name": "eTecSim", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122729450" + ], + "created_at": "2026-07-10T10:12:40.723314", + "updated_at": "2026-07-10T10:12:40.723314", + "url": "/v1/software/etecsim" +} diff --git a/site/public/v1/software/ethercalc/index.json b/site/public/v1/software/ethercalc/index.json new file mode 100644 index 000000000000..8a0307d030b0 --- /dev/null +++ b/site/public/v1/software/ethercalc/index.json @@ -0,0 +1,26 @@ +{ + "id": 3113, + "slug": "ethercalc", + "name": "EtherCalc", + "release_date": null, + "developers": [ + "Audrey Tang" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Artistic License 2.0", + "Apache Software License 2.0", + "Creative Commons CC0 License", + "Common Public Attribution License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3059271" + ], + "created_at": "2026-07-10T10:12:40.723314", + "updated_at": "2026-07-10T10:12:40.723314", + "url": "/v1/software/ethercalc" +} diff --git a/site/public/v1/software/ethno/index.json b/site/public/v1/software/ethno/index.json new file mode 100644 index 000000000000..92b2cce9f58e --- /dev/null +++ b/site/public/v1/software/ethno/index.json @@ -0,0 +1,21 @@ +{ + "id": 3114, + "slug": "ethno", + "name": "Ethno", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105229744" + ], + "created_at": "2026-07-10T10:12:40.723314", + "updated_at": "2026-07-10T10:12:40.723314", + "url": "/v1/software/ethno" +} diff --git a/site/public/v1/software/ethnograph/index.json b/site/public/v1/software/ethnograph/index.json new file mode 100644 index 000000000000..b363e4f315d9 --- /dev/null +++ b/site/public/v1/software/ethnograph/index.json @@ -0,0 +1,19 @@ +{ + "id": 3115, + "slug": "ethnograph", + "name": "Ethnograph", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084941" + ], + "created_at": "2026-07-10T10:12:40.724286", + "updated_at": "2026-07-10T10:12:40.724286", + "url": "/v1/software/ethnograph" +} diff --git a/site/public/v1/software/ethosce/index.json b/site/public/v1/software/ethosce/index.json new file mode 100644 index 000000000000..96ccd88c5820 --- /dev/null +++ b/site/public/v1/software/ethosce/index.json @@ -0,0 +1,21 @@ +{ + "id": 3116, + "slug": "ethosce", + "name": "EthosCE", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "PHP" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q30588106" + ], + "created_at": "2026-07-10T10:12:40.724286", + "updated_at": "2026-07-10T10:12:40.724286", + "url": "/v1/software/ethosce" +} diff --git a/site/public/v1/software/ethswitch/index.json b/site/public/v1/software/ethswitch/index.json new file mode 100644 index 000000000000..218085edf674 --- /dev/null +++ b/site/public/v1/software/ethswitch/index.json @@ -0,0 +1,19 @@ +{ + "id": 3117, + "slug": "ethswitch", + "name": "Ethswitch", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135516755" + ], + "created_at": "2026-07-10T10:12:40.724286", + "updated_at": "2026-07-10T10:12:40.724286", + "url": "/v1/software/ethswitch" +} diff --git a/site/public/v1/software/etka/index.json b/site/public/v1/software/etka/index.json new file mode 100644 index 000000000000..5d9ede58aba6 --- /dev/null +++ b/site/public/v1/software/etka/index.json @@ -0,0 +1,19 @@ +{ + "id": 3118, + "slug": "etka", + "name": "ETKA", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1276108" + ], + "created_at": "2026-07-10T10:12:40.725307", + "updated_at": "2026-07-10T10:12:40.725307", + "url": "/v1/software/etka" +} diff --git a/site/public/v1/software/etrice/index.json b/site/public/v1/software/etrice/index.json new file mode 100644 index 000000000000..6dbabb62759e --- /dev/null +++ b/site/public/v1/software/etrice/index.json @@ -0,0 +1,19 @@ +{ + "id": 3119, + "slug": "etrice", + "name": "ETrice", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q31838467" + ], + "created_at": "2026-07-10T10:12:40.725307", + "updated_at": "2026-07-10T10:12:40.725307", + "url": "/v1/software/etrice" +} diff --git a/site/public/v1/software/euclid/index.json b/site/public/v1/software/euclid/index.json new file mode 100644 index 000000000000..8279d0725840 --- /dev/null +++ b/site/public/v1/software/euclid/index.json @@ -0,0 +1,21 @@ +{ + "id": 3120, + "slug": "euclid", + "name": "Euclid", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Fortran" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5406096" + ], + "created_at": "2026-07-10T10:12:40.725307", + "updated_at": "2026-07-10T10:12:40.725307", + "url": "/v1/software/euclid" +} diff --git a/site/public/v1/software/eudev/index.json b/site/public/v1/software/eudev/index.json new file mode 100644 index 000000000000..b997a335cd86 --- /dev/null +++ b/site/public/v1/software/eudev/index.json @@ -0,0 +1,21 @@ +{ + "id": 3121, + "slug": "eudev", + "name": "eudev", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "GNU General Public License, version 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974832" + ], + "created_at": "2026-07-10T10:12:40.726310", + "updated_at": "2026-07-10T10:12:40.726310", + "url": "/v1/software/eudev" +} diff --git a/site/public/v1/software/euler/index.json b/site/public/v1/software/euler/index.json new file mode 100644 index 000000000000..f652edec8106 --- /dev/null +++ b/site/public/v1/software/euler/index.json @@ -0,0 +1,19 @@ +{ + "id": 3122, + "slug": "euler", + "name": "EULER", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084942" + ], + "created_at": "2026-07-10T10:12:40.726310", + "updated_at": "2026-07-10T10:12:40.726310", + "url": "/v1/software/euler" +} diff --git a/site/public/v1/software/eunicycle/index.json b/site/public/v1/software/eunicycle/index.json new file mode 100644 index 000000000000..d8a39bafcb5c --- /dev/null +++ b/site/public/v1/software/eunicycle/index.json @@ -0,0 +1,19 @@ +{ + "id": 3123, + "slug": "eunicycle", + "name": "Eunicycle", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4534577" + ], + "created_at": "2026-07-10T10:12:40.726310", + "updated_at": "2026-07-10T10:12:40.726310", + "url": "/v1/software/eunicycle" +} diff --git a/site/public/v1/software/eurac-comparison-arcs/index.json b/site/public/v1/software/eurac-comparison-arcs/index.json new file mode 100644 index 000000000000..433f43df3dad --- /dev/null +++ b/site/public/v1/software/eurac-comparison-arcs/index.json @@ -0,0 +1,19 @@ +{ + "id": 3124, + "slug": "eurac-comparison-arcs", + "name": "EURAC: Comparison Arcs", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084944" + ], + "created_at": "2026-07-10T10:12:40.727306", + "updated_at": "2026-07-10T10:12:40.727306", + "url": "/v1/software/eurac-comparison-arcs" +} diff --git a/site/public/v1/software/eurac-corpus-clouds/index.json b/site/public/v1/software/eurac-corpus-clouds/index.json new file mode 100644 index 000000000000..2a7889c83e7f --- /dev/null +++ b/site/public/v1/software/eurac-corpus-clouds/index.json @@ -0,0 +1,19 @@ +{ + "id": 3125, + "slug": "eurac-corpus-clouds", + "name": "EURAC: Corpus Clouds", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084945" + ], + "created_at": "2026-07-10T10:12:40.727306", + "updated_at": "2026-07-10T10:12:40.727306", + "url": "/v1/software/eurac-corpus-clouds" +} diff --git a/site/public/v1/software/eurac-double-tree/index.json b/site/public/v1/software/eurac-double-tree/index.json new file mode 100644 index 000000000000..889cbe4e1d2f --- /dev/null +++ b/site/public/v1/software/eurac-double-tree/index.json @@ -0,0 +1,19 @@ +{ + "id": 3126, + "slug": "eurac-double-tree", + "name": "EURAC: Double Tree", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084946" + ], + "created_at": "2026-07-10T10:12:40.727306", + "updated_at": "2026-07-10T10:12:40.727306", + "url": "/v1/software/eurac-double-tree" +} diff --git a/site/public/v1/software/eurac-end-to-end/index.json b/site/public/v1/software/eurac-end-to-end/index.json new file mode 100644 index 000000000000..30e89cb5974a --- /dev/null +++ b/site/public/v1/software/eurac-end-to-end/index.json @@ -0,0 +1,19 @@ +{ + "id": 3127, + "slug": "eurac-end-to-end", + "name": "EURAC: End to End", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084947" + ], + "created_at": "2026-07-10T10:12:40.728322", + "updated_at": "2026-07-10T10:12:40.728322", + "url": "/v1/software/eurac-end-to-end" +} diff --git a/site/public/v1/software/eurac-interhist/index.json b/site/public/v1/software/eurac-interhist/index.json new file mode 100644 index 000000000000..7d9eb134546a --- /dev/null +++ b/site/public/v1/software/eurac-interhist/index.json @@ -0,0 +1,19 @@ +{ + "id": 3128, + "slug": "eurac-interhist", + "name": "EURAC: interHist", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084948" + ], + "created_at": "2026-07-10T10:12:40.728322", + "updated_at": "2026-07-10T10:12:40.728322", + "url": "/v1/software/eurac-interhist" +} diff --git a/site/public/v1/software/eurac-structured-parallel-coordinates/index.json b/site/public/v1/software/eurac-structured-parallel-coordinates/index.json new file mode 100644 index 000000000000..09fbeacdd21c --- /dev/null +++ b/site/public/v1/software/eurac-structured-parallel-coordinates/index.json @@ -0,0 +1,19 @@ +{ + "id": 3129, + "slug": "eurac-structured-parallel-coordinates", + "name": "EURAC: Structured Parallel Coordinates", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084949" + ], + "created_at": "2026-07-10T10:12:40.729313", + "updated_at": "2026-07-10T10:12:40.729313", + "url": "/v1/software/eurac-structured-parallel-coordinates" +} diff --git a/site/public/v1/software/eurisko/index.json b/site/public/v1/software/eurisko/index.json new file mode 100644 index 000000000000..657643215623 --- /dev/null +++ b/site/public/v1/software/eurisko/index.json @@ -0,0 +1,21 @@ +{ + "id": 3130, + "slug": "eurisko", + "name": "Eurisko", + "release_date": null, + "developers": [ + "Douglas B. Lenat" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3060518" + ], + "created_at": "2026-07-10T10:12:40.729313", + "updated_at": "2026-07-10T10:12:40.729313", + "url": "/v1/software/eurisko" +} diff --git a/site/public/v1/software/european-middleware-initiative/index.json b/site/public/v1/software/european-middleware-initiative/index.json new file mode 100644 index 000000000000..056123121f71 --- /dev/null +++ b/site/public/v1/software/european-middleware-initiative/index.json @@ -0,0 +1,19 @@ +{ + "id": 3131, + "slug": "european-middleware-initiative", + "name": "European Middleware Initiative", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5412825" + ], + "created_at": "2026-07-10T10:12:40.729313", + "updated_at": "2026-07-10T10:12:40.729313", + "url": "/v1/software/european-middleware-initiative" +} diff --git a/site/public/v1/software/euscan/index.json b/site/public/v1/software/euscan/index.json new file mode 100644 index 000000000000..ccaa69013e11 --- /dev/null +++ b/site/public/v1/software/euscan/index.json @@ -0,0 +1,21 @@ +{ + "id": 3132, + "slug": "euscan", + "name": "euscan", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "GNU General Public License, version 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974833" + ], + "created_at": "2026-07-10T10:12:40.730225", + "updated_at": "2026-07-10T10:12:40.730225", + "url": "/v1/software/euscan" +} diff --git a/site/public/v1/software/evalplus/index.json b/site/public/v1/software/evalplus/index.json new file mode 100644 index 000000000000..94b295957372 --- /dev/null +++ b/site/public/v1/software/evalplus/index.json @@ -0,0 +1,21 @@ +{ + "id": 3133, + "slug": "evalplus", + "name": "evalplus", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Apache Software License 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127474976" + ], + "created_at": "2026-07-10T10:12:40.730225", + "updated_at": "2026-07-10T10:12:40.730225", + "url": "/v1/software/evalplus" +} diff --git a/site/public/v1/software/evasi0n/index.json b/site/public/v1/software/evasi0n/index.json new file mode 100644 index 000000000000..96c55590ddec --- /dev/null +++ b/site/public/v1/software/evasi0n/index.json @@ -0,0 +1,21 @@ +{ + "id": 3134, + "slug": "evasi0n", + "name": "Evasi0n", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5416087" + ], + "created_at": "2026-07-10T10:12:40.730225", + "updated_at": "2026-07-10T10:12:40.730225", + "url": "/v1/software/evasi0n" +} diff --git a/site/public/v1/software/evcc/index.json b/site/public/v1/software/evcc/index.json new file mode 100644 index 000000000000..0c0cf369162a --- /dev/null +++ b/site/public/v1/software/evcc/index.json @@ -0,0 +1,24 @@ +{ + "id": 3135, + "slug": "evcc", + "name": "evcc", + "release_date": "2020-01-01", + "developers": [], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131222833" + ], + "created_at": "2026-07-10T10:12:40.730225", + "updated_at": "2026-07-10T10:12:40.730225", + "url": "/v1/software/evcc" +} diff --git a/site/public/v1/software/event-viewer/index.json b/site/public/v1/software/event-viewer/index.json new file mode 100644 index 000000000000..f6f29224c582 --- /dev/null +++ b/site/public/v1/software/event-viewer/index.json @@ -0,0 +1,21 @@ +{ + "id": 3136, + "slug": "event-viewer", + "name": "Event Viewer", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q360204" + ], + "created_at": "2026-07-10T10:12:40.731224", + "updated_at": "2026-07-10T10:12:40.731224", + "url": "/v1/software/event-viewer" +} diff --git a/site/public/v1/software/eventdrive/index.json b/site/public/v1/software/eventdrive/index.json new file mode 100644 index 000000000000..fc77220004d9 --- /dev/null +++ b/site/public/v1/software/eventdrive/index.json @@ -0,0 +1,19 @@ +{ + "id": 3137, + "slug": "eventdrive", + "name": "Eventdrive", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139860459" + ], + "created_at": "2026-07-10T10:12:40.731224", + "updated_at": "2026-07-10T10:12:40.731224", + "url": "/v1/software/eventdrive" +} diff --git a/site/public/v1/software/eventifai/index.json b/site/public/v1/software/eventifai/index.json new file mode 100644 index 000000000000..931f42bea5fc --- /dev/null +++ b/site/public/v1/software/eventifai/index.json @@ -0,0 +1,19 @@ +{ + "id": 3138, + "slug": "eventifai", + "name": "Eventifai", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136459469" + ], + "created_at": "2026-07-10T10:12:40.731224", + "updated_at": "2026-07-10T10:12:40.731224", + "url": "/v1/software/eventifai" +} diff --git a/site/public/v1/software/eventmanager/index.json b/site/public/v1/software/eventmanager/index.json new file mode 100644 index 000000000000..c54a9992641a --- /dev/null +++ b/site/public/v1/software/eventmanager/index.json @@ -0,0 +1,19 @@ +{ + "id": 3139, + "slug": "eventmanager", + "name": "EventManager", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5416691" + ], + "created_at": "2026-07-10T10:12:40.732227", + "updated_at": "2026-07-10T10:12:40.732227", + "url": "/v1/software/eventmanager" +} diff --git a/site/public/v1/software/everblock/index.json b/site/public/v1/software/everblock/index.json new file mode 100644 index 000000000000..8f0c8167495b --- /dev/null +++ b/site/public/v1/software/everblock/index.json @@ -0,0 +1,19 @@ +{ + "id": 3140, + "slug": "everblock", + "name": "Everblock", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134573098" + ], + "created_at": "2026-07-10T10:12:40.732227", + "updated_at": "2026-07-10T10:12:40.732227", + "url": "/v1/software/everblock" +} diff --git a/site/public/v1/software/everhour/index.json b/site/public/v1/software/everhour/index.json new file mode 100644 index 000000000000..ca9103d82c6d --- /dev/null +++ b/site/public/v1/software/everhour/index.json @@ -0,0 +1,19 @@ +{ + "id": 3141, + "slug": "everhour", + "name": "Everhour", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q55611221" + ], + "created_at": "2026-07-10T10:12:40.732227", + "updated_at": "2026-07-10T10:12:40.732227", + "url": "/v1/software/everhour" +} diff --git a/site/public/v1/software/everstory/index.json b/site/public/v1/software/everstory/index.json new file mode 100644 index 000000000000..61ef26572557 --- /dev/null +++ b/site/public/v1/software/everstory/index.json @@ -0,0 +1,23 @@ +{ + "id": 3142, + "slug": "everstory", + "name": "EverStory", + "release_date": null, + "developers": [ + "Black Pixel AI Inc" + ], + "publishers": [ + "Black Pixel AI Inc" + ], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139679664" + ], + "created_at": "2026-07-10T10:12:40.733315", + "updated_at": "2026-07-10T10:12:40.733315", + "url": "/v1/software/everstory" +} diff --git a/site/public/v1/software/evertontv/index.json b/site/public/v1/software/evertontv/index.json new file mode 100644 index 000000000000..bd0078881e75 --- /dev/null +++ b/site/public/v1/software/evertontv/index.json @@ -0,0 +1,21 @@ +{ + "id": 3143, + "slug": "evertontv", + "name": "EvertonTV", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5417388" + ], + "created_at": "2026-07-10T10:12:40.733315", + "updated_at": "2026-07-10T10:12:40.733315", + "url": "/v1/software/evertontv" +} diff --git a/site/public/v1/software/everybody-votes-channel/index.json b/site/public/v1/software/everybody-votes-channel/index.json new file mode 100644 index 000000000000..325106808c69 --- /dev/null +++ b/site/public/v1/software/everybody-votes-channel/index.json @@ -0,0 +1,23 @@ +{ + "id": 3144, + "slug": "everybody-votes-channel", + "name": "Everybody Votes Channel", + "release_date": "2007-02-14", + "developers": [ + "Nintendo" + ], + "publishers": [ + "Nintendo" + ], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3282596" + ], + "created_at": "2026-07-10T10:12:40.733315", + "updated_at": "2026-07-10T10:12:40.733315", + "url": "/v1/software/everybody-votes-channel" +} diff --git a/site/public/v1/software/everyday-genius-squarelogic/index.json b/site/public/v1/software/everyday-genius-squarelogic/index.json new file mode 100644 index 000000000000..16cbbc340580 --- /dev/null +++ b/site/public/v1/software/everyday-genius-squarelogic/index.json @@ -0,0 +1,21 @@ +{ + "id": 3145, + "slug": "everyday-genius-squarelogic", + "name": "Everyday Genius: SquareLogic", + "release_date": "2009-10-09", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [ + "puzzle video game" + ], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q119167580" + ], + "created_at": "2026-07-10T10:12:40.733315", + "updated_at": "2026-07-10T10:12:40.733315", + "url": "/v1/software/everyday-genius-squarelogic" +} diff --git a/site/public/v1/software/everyonepiano/index.json b/site/public/v1/software/everyonepiano/index.json new file mode 100644 index 000000000000..3e0531500dea --- /dev/null +++ b/site/public/v1/software/everyonepiano/index.json @@ -0,0 +1,23 @@ +{ + "id": 3146, + "slug": "everyonepiano", + "name": "EveryonePiano", + "release_date": "2010-01-01", + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107751548" + ], + "created_at": "2026-07-10T10:12:40.734299", + "updated_at": "2026-07-10T10:12:40.734299", + "url": "/v1/software/everyonepiano" +} diff --git a/site/public/v1/software/everyscape/index.json b/site/public/v1/software/everyscape/index.json new file mode 100644 index 000000000000..8622cf97c3c4 --- /dev/null +++ b/site/public/v1/software/everyscape/index.json @@ -0,0 +1,19 @@ +{ + "id": 3147, + "slug": "everyscape", + "name": "EveryScape", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q278558" + ], + "created_at": "2026-07-10T10:12:40.734299", + "updated_at": "2026-07-10T10:12:40.734299", + "url": "/v1/software/everyscape" +} diff --git a/site/public/v1/software/evi-linhd/index.json b/site/public/v1/software/evi-linhd/index.json new file mode 100644 index 000000000000..bc22c365ddc2 --- /dev/null +++ b/site/public/v1/software/evi-linhd/index.json @@ -0,0 +1,19 @@ +{ + "id": 3148, + "slug": "evi-linhd", + "name": "EVI-LINHD", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084951" + ], + "created_at": "2026-07-10T10:12:40.734299", + "updated_at": "2026-07-10T10:12:40.734299", + "url": "/v1/software/evi-linhd" +} diff --git a/site/public/v1/software/evocb/index.json b/site/public/v1/software/evocb/index.json new file mode 100644 index 000000000000..358f1a329722 --- /dev/null +++ b/site/public/v1/software/evocb/index.json @@ -0,0 +1,23 @@ +{ + "id": 3149, + "slug": "evocb", + "name": "Evocb", + "release_date": "2011-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Java" + ], + "licenses": [ + "GNU Lesser General Public License, version 2.1 or later" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5418548" + ], + "created_at": "2026-07-10T10:12:40.735284", + "updated_at": "2026-07-10T10:12:40.735284", + "url": "/v1/software/evocb" +} diff --git a/site/public/v1/software/evoke/index.json b/site/public/v1/software/evoke/index.json new file mode 100644 index 000000000000..99c9010545e9 --- /dev/null +++ b/site/public/v1/software/evoke/index.json @@ -0,0 +1,21 @@ +{ + "id": 3150, + "slug": "evoke", + "name": "Evoke", + "release_date": null, + "developers": [ + "System Automation" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138858804" + ], + "created_at": "2026-07-10T10:12:40.735284", + "updated_at": "2026-07-10T10:12:40.735284", + "url": "/v1/software/evoke" +} diff --git a/site/public/v1/software/exact-audio-copy/index.json b/site/public/v1/software/exact-audio-copy/index.json new file mode 100644 index 000000000000..088cc60be043 --- /dev/null +++ b/site/public/v1/software/exact-audio-copy/index.json @@ -0,0 +1,23 @@ +{ + "id": 3151, + "slug": "exact-audio-copy", + "name": "Exact Audio Copy", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1196436" + ], + "created_at": "2026-07-10T10:12:40.735284", + "updated_at": "2026-07-10T10:12:40.735284", + "url": "/v1/software/exact-audio-copy" +} diff --git a/site/public/v1/software/exact-online/index.json b/site/public/v1/software/exact-online/index.json new file mode 100644 index 000000000000..4ef85bb8f4ea --- /dev/null +++ b/site/public/v1/software/exact-online/index.json @@ -0,0 +1,19 @@ +{ + "id": 3152, + "slug": "exact-online", + "name": "Exact Online", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q26857571" + ], + "created_at": "2026-07-10T10:12:40.735284", + "updated_at": "2026-07-10T10:12:40.735284", + "url": "/v1/software/exact-online" +} diff --git a/site/public/v1/software/exam/index.json b/site/public/v1/software/exam/index.json new file mode 100644 index 000000000000..21708fcf5e09 --- /dev/null +++ b/site/public/v1/software/exam/index.json @@ -0,0 +1,19 @@ +{ + "id": 3153, + "slug": "exam", + "name": "EXAM", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1276541" + ], + "created_at": "2026-07-10T10:12:40.736303", + "updated_at": "2026-07-10T10:12:40.736303", + "url": "/v1/software/exam" +} diff --git a/site/public/v1/software/examdiff-pro/index.json b/site/public/v1/software/examdiff-pro/index.json new file mode 100644 index 000000000000..92a1d1572bf0 --- /dev/null +++ b/site/public/v1/software/examdiff-pro/index.json @@ -0,0 +1,19 @@ +{ + "id": 3154, + "slug": "examdiff-pro", + "name": "ExamDiff Pro", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5419269" + ], + "created_at": "2026-07-10T10:12:40.736303", + "updated_at": "2026-07-10T10:12:40.736303", + "url": "/v1/software/examdiff-pro" +} diff --git a/site/public/v1/software/exasearch/index.json b/site/public/v1/software/exasearch/index.json new file mode 100644 index 000000000000..de418421e33d --- /dev/null +++ b/site/public/v1/software/exasearch/index.json @@ -0,0 +1,21 @@ +{ + "id": 3155, + "slug": "exasearch", + "name": "ExaSearch", + "release_date": null, + "developers": [ + "Exanet" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5419205" + ], + "created_at": "2026-07-10T10:12:40.737225", + "updated_at": "2026-07-10T10:12:40.737225", + "url": "/v1/software/exasearch" +} diff --git a/site/public/v1/software/excalibug/index.json b/site/public/v1/software/excalibug/index.json new file mode 100644 index 000000000000..fd258e8cd4df --- /dev/null +++ b/site/public/v1/software/excalibug/index.json @@ -0,0 +1,19 @@ +{ + "id": 3156, + "slug": "excalibug", + "name": "ExcaliBug", + "release_date": "2001-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140355888" + ], + "created_at": "2026-07-10T10:12:40.737225", + "updated_at": "2026-07-10T10:12:40.737225", + "url": "/v1/software/excalibug" +} diff --git a/site/public/v1/software/excelsior-jet/index.json b/site/public/v1/software/excelsior-jet/index.json new file mode 100644 index 000000000000..4b317ffc99a2 --- /dev/null +++ b/site/public/v1/software/excelsior-jet/index.json @@ -0,0 +1,25 @@ +{ + "id": 3157, + "slug": "excelsior-jet", + "name": "Excelsior JET", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [ + "Modula-2" + ], + "licenses": [ + "end-user license agreement" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1383464" + ], + "created_at": "2026-07-10T10:12:40.737225", + "updated_at": "2026-07-10T10:12:40.737225", + "url": "/v1/software/excelsior-jet" +} diff --git a/site/public/v1/software/exchange-activesync/index.json b/site/public/v1/software/exchange-activesync/index.json new file mode 100644 index 000000000000..202a213cea49 --- /dev/null +++ b/site/public/v1/software/exchange-activesync/index.json @@ -0,0 +1,21 @@ +{ + "id": 3158, + "slug": "exchange-activesync", + "name": "Exchange ActiveSync", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q263029" + ], + "created_at": "2026-07-10T10:12:40.737225", + "updated_at": "2026-07-10T10:12:40.737225", + "url": "/v1/software/exchange-activesync" +} diff --git a/site/public/v1/software/excise-movement-and-control-system/index.json b/site/public/v1/software/excise-movement-and-control-system/index.json new file mode 100644 index 000000000000..540ad2b1e33c --- /dev/null +++ b/site/public/v1/software/excise-movement-and-control-system/index.json @@ -0,0 +1,19 @@ +{ + "id": 3159, + "slug": "excise-movement-and-control-system", + "name": "Excise Movement and Control System", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1275160" + ], + "created_at": "2026-07-10T10:12:40.738317", + "updated_at": "2026-07-10T10:12:40.738317", + "url": "/v1/software/excise-movement-and-control-system" +} diff --git a/site/public/v1/software/exeem/index.json b/site/public/v1/software/exeem/index.json new file mode 100644 index 000000000000..a9c707130cc2 --- /dev/null +++ b/site/public/v1/software/exeem/index.json @@ -0,0 +1,19 @@ +{ + "id": 3160, + "slug": "exeem", + "name": "eXeem", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q853479" + ], + "created_at": "2026-07-10T10:12:40.738317", + "updated_at": "2026-07-10T10:12:40.738317", + "url": "/v1/software/exeem" +} diff --git a/site/public/v1/software/exergy/index.json b/site/public/v1/software/exergy/index.json new file mode 100644 index 000000000000..63209bce00fc --- /dev/null +++ b/site/public/v1/software/exergy/index.json @@ -0,0 +1,19 @@ +{ + "id": 3161, + "slug": "exergy", + "name": "Exergy", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28458608" + ], + "created_at": "2026-07-10T10:12:40.738317", + "updated_at": "2026-07-10T10:12:40.738317", + "url": "/v1/software/exergy" +} diff --git a/site/public/v1/software/exheres-syntax/index.json b/site/public/v1/software/exheres-syntax/index.json new file mode 100644 index 000000000000..a5a7317a9a04 --- /dev/null +++ b/site/public/v1/software/exheres-syntax/index.json @@ -0,0 +1,19 @@ +{ + "id": 3162, + "slug": "exheres-syntax", + "name": "exheres-syntax", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974834" + ], + "created_at": "2026-07-10T10:12:40.739295", + "updated_at": "2026-07-10T10:12:40.739295", + "url": "/v1/software/exheres-syntax" +} diff --git a/site/public/v1/software/exhibit-3-0/index.json b/site/public/v1/software/exhibit-3-0/index.json new file mode 100644 index 000000000000..a75161ea2949 --- /dev/null +++ b/site/public/v1/software/exhibit-3-0/index.json @@ -0,0 +1,19 @@ +{ + "id": 3163, + "slug": "exhibit-3-0", + "name": "Exhibit 3.0", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084952" + ], + "created_at": "2026-07-10T10:12:40.739295", + "updated_at": "2026-07-10T10:12:40.739295", + "url": "/v1/software/exhibit-3-0" +} diff --git a/site/public/v1/software/exiftags/index.json b/site/public/v1/software/exiftags/index.json new file mode 100644 index 000000000000..088090e17001 --- /dev/null +++ b/site/public/v1/software/exiftags/index.json @@ -0,0 +1,19 @@ +{ + "id": 3164, + "slug": "exiftags", + "name": "exiftags", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62849048" + ], + "created_at": "2026-07-10T10:12:40.739295", + "updated_at": "2026-07-10T10:12:40.739295", + "url": "/v1/software/exiftags" +} diff --git a/site/public/v1/software/existence-proof-an-empowerment-doctrine-for-credential-less-ai-enabled-creators-existence/index.json b/site/public/v1/software/existence-proof-an-empowerment-doctrine-for-credential-less-ai-enabled-creators-existence/index.json new file mode 100644 index 000000000000..7cc4ee594ba0 --- /dev/null +++ b/site/public/v1/software/existence-proof-an-empowerment-doctrine-for-credential-less-ai-enabled-creators-existence/index.json @@ -0,0 +1,23 @@ +{ + "id": 3165, + "slug": "existence-proof-an-empowerment-doctrine-for-credential-less-ai-enabled-creators-existence", + "name": "existence-proof: An Empowerment Doctrine for Credential-less AI-enabled Creators — Existence Proof Format, Feasibility-Question Corpus, and Gatekeeping Eval", + "release_date": "2026-06-05", + "developers": [ + "Tatsuya Shimomoto" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140090192" + ], + "created_at": "2026-07-10T10:12:40.739295", + "updated_at": "2026-07-10T10:12:40.739295", + "url": "/v1/software/existence-proof-an-empowerment-doctrine-for-credential-less-ai-enabled-creators-existence" +} diff --git a/site/public/v1/software/exmaralda/index.json b/site/public/v1/software/exmaralda/index.json new file mode 100644 index 000000000000..a390450884b8 --- /dev/null +++ b/site/public/v1/software/exmaralda/index.json @@ -0,0 +1,25 @@ +{ + "id": 3166, + "slug": "exmaralda", + "name": "EXMARaLDA", + "release_date": "2001-01-01", + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [ + "Java" + ], + "licenses": [ + "GNU General Public License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5324690" + ], + "created_at": "2026-07-10T10:12:40.740332", + "updated_at": "2026-07-10T10:12:40.740332", + "url": "/v1/software/exmaralda" +} diff --git a/site/public/v1/software/exo-inc/index.json b/site/public/v1/software/exo-inc/index.json new file mode 100644 index 000000000000..721a842a1696 --- /dev/null +++ b/site/public/v1/software/exo-inc/index.json @@ -0,0 +1,19 @@ +{ + "id": 3167, + "slug": "exo-inc", + "name": "Exo Inc", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25327054" + ], + "created_at": "2026-07-10T10:12:40.740332", + "updated_at": "2026-07-10T10:12:40.740332", + "url": "/v1/software/exo-inc" +} diff --git a/site/public/v1/software/exodus/index.json b/site/public/v1/software/exodus/index.json new file mode 100644 index 000000000000..630f7037741f --- /dev/null +++ b/site/public/v1/software/exodus/index.json @@ -0,0 +1,21 @@ +{ + "id": 3168, + "slug": "exodus", + "name": "Exodus", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Object Pascal" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q58076" + ], + "created_at": "2026-07-10T10:12:40.741302", + "updated_at": "2026-07-10T10:12:40.741302", + "url": "/v1/software/exodus" +} diff --git a/site/public/v1/software/exoneree-app/index.json b/site/public/v1/software/exoneree-app/index.json new file mode 100644 index 000000000000..201ab67ab8ca --- /dev/null +++ b/site/public/v1/software/exoneree-app/index.json @@ -0,0 +1,23 @@ +{ + "id": 3169, + "slug": "exoneree-app", + "name": "Exoneree App", + "release_date": null, + "developers": [ + "Dylan Carnahan" + ], + "publishers": [ + "ProCarn Solutions" + ], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138865716" + ], + "created_at": "2026-07-10T10:12:40.741302", + "updated_at": "2026-07-10T10:12:40.741302", + "url": "/v1/software/exoneree-app" +} diff --git a/site/public/v1/software/expandrive/index.json b/site/public/v1/software/expandrive/index.json new file mode 100644 index 000000000000..35561c2906d6 --- /dev/null +++ b/site/public/v1/software/expandrive/index.json @@ -0,0 +1,19 @@ +{ + "id": 3170, + "slug": "expandrive", + "name": "ExpanDrive", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5420736" + ], + "created_at": "2026-07-10T10:12:40.741302", + "updated_at": "2026-07-10T10:12:40.741302", + "url": "/v1/software/expandrive" +} diff --git a/site/public/v1/software/expasy/index.json b/site/public/v1/software/expasy/index.json new file mode 100644 index 000000000000..3274b9e15c18 --- /dev/null +++ b/site/public/v1/software/expasy/index.json @@ -0,0 +1,19 @@ +{ + "id": 3171, + "slug": "expasy", + "name": "ExPASy", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q905689" + ], + "created_at": "2026-07-10T10:12:40.741302", + "updated_at": "2026-07-10T10:12:40.741302", + "url": "/v1/software/expasy" +} diff --git a/site/public/v1/software/expensive-desk-calculator/index.json b/site/public/v1/software/expensive-desk-calculator/index.json new file mode 100644 index 000000000000..6b202660ae38 --- /dev/null +++ b/site/public/v1/software/expensive-desk-calculator/index.json @@ -0,0 +1,19 @@ +{ + "id": 3172, + "slug": "expensive-desk-calculator", + "name": "Expensive Desk Calculator", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5421016" + ], + "created_at": "2026-07-10T10:12:40.742300", + "updated_at": "2026-07-10T10:12:40.742300", + "url": "/v1/software/expensive-desk-calculator" +} diff --git a/site/public/v1/software/expensive-tape-recorder/index.json b/site/public/v1/software/expensive-tape-recorder/index.json new file mode 100644 index 000000000000..72bc4b7fab16 --- /dev/null +++ b/site/public/v1/software/expensive-tape-recorder/index.json @@ -0,0 +1,19 @@ +{ + "id": 3173, + "slug": "expensive-tape-recorder", + "name": "Expensive Tape Recorder", + "release_date": "1959-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5421017" + ], + "created_at": "2026-07-10T10:12:40.742300", + "updated_at": "2026-07-10T10:12:40.742300", + "url": "/v1/software/expensive-tape-recorder" +} diff --git a/site/public/v1/software/experience-this/index.json b/site/public/v1/software/experience-this/index.json new file mode 100644 index 000000000000..4f350be87b69 --- /dev/null +++ b/site/public/v1/software/experience-this/index.json @@ -0,0 +1,19 @@ +{ + "id": 3174, + "slug": "experience-this", + "name": "Experience This", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139973863" + ], + "created_at": "2026-07-10T10:12:40.743314", + "updated_at": "2026-07-10T10:12:40.743314", + "url": "/v1/software/experience-this" +} diff --git a/site/public/v1/software/explex/index.json b/site/public/v1/software/explex/index.json new file mode 100644 index 000000000000..bbca255d4573 --- /dev/null +++ b/site/public/v1/software/explex/index.json @@ -0,0 +1,19 @@ +{ + "id": 3175, + "slug": "explex", + "name": "EXPLEX", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087803" + ], + "created_at": "2026-07-10T10:12:40.743314", + "updated_at": "2026-07-10T10:12:40.743314", + "url": "/v1/software/explex" +} diff --git a/site/public/v1/software/exploratree/index.json b/site/public/v1/software/exploratree/index.json new file mode 100644 index 000000000000..dcc6fd560275 --- /dev/null +++ b/site/public/v1/software/exploratree/index.json @@ -0,0 +1,19 @@ +{ + "id": 3176, + "slug": "exploratree", + "name": "Exploratree", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084953" + ], + "created_at": "2026-07-10T10:12:40.743314", + "updated_at": "2026-07-10T10:12:40.743314", + "url": "/v1/software/exploratree" +} diff --git a/site/public/v1/software/explore2fs/index.json b/site/public/v1/software/explore2fs/index.json new file mode 100644 index 000000000000..c423ea954c16 --- /dev/null +++ b/site/public/v1/software/explore2fs/index.json @@ -0,0 +1,19 @@ +{ + "id": 3177, + "slug": "explore2fs", + "name": "Explore2fs", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q510409" + ], + "created_at": "2026-07-10T10:12:40.744342", + "updated_at": "2026-07-10T10:12:40.744342", + "url": "/v1/software/explore2fs" +} diff --git a/site/public/v1/software/explzh/index.json b/site/public/v1/software/explzh/index.json new file mode 100644 index 000000000000..0c5b0f1fba78 --- /dev/null +++ b/site/public/v1/software/explzh/index.json @@ -0,0 +1,21 @@ +{ + "id": 3178, + "slug": "explzh", + "name": "Explzh", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11198539" + ], + "created_at": "2026-07-10T10:12:40.744342", + "updated_at": "2026-07-10T10:12:40.744342", + "url": "/v1/software/explzh" +} diff --git a/site/public/v1/software/expos/index.json b/site/public/v1/software/expos/index.json new file mode 100644 index 000000000000..ac97e23d7145 --- /dev/null +++ b/site/public/v1/software/expos/index.json @@ -0,0 +1,23 @@ +{ + "id": 3179, + "slug": "expos", + "name": "Exposé", + "release_date": null, + "developers": [ + "Apple Inc." + ], + "publishers": [], + "operating_systems": [ + "macOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q306175" + ], + "created_at": "2026-07-10T10:12:40.744342", + "updated_at": "2026-07-10T10:12:40.744342", + "url": "/v1/software/expos" +} diff --git a/site/public/v1/software/express-data-path/index.json b/site/public/v1/software/express-data-path/index.json new file mode 100644 index 000000000000..2977e8ce9dfc --- /dev/null +++ b/site/public/v1/software/express-data-path/index.json @@ -0,0 +1,19 @@ +{ + "id": 3180, + "slug": "express-data-path", + "name": "Express Data Path", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q65070151" + ], + "created_at": "2026-07-10T10:12:40.745229", + "updated_at": "2026-07-10T10:12:40.745229", + "url": "/v1/software/express-data-path" +} diff --git a/site/public/v1/software/express-scribe-transcription-software/index.json b/site/public/v1/software/express-scribe-transcription-software/index.json new file mode 100644 index 000000000000..63781c597f81 --- /dev/null +++ b/site/public/v1/software/express-scribe-transcription-software/index.json @@ -0,0 +1,19 @@ +{ + "id": 3181, + "slug": "express-scribe-transcription-software", + "name": "Express Scribe Transcription Software", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084954" + ], + "created_at": "2026-07-10T10:12:40.745229", + "updated_at": "2026-07-10T10:12:40.745229", + "url": "/v1/software/express-scribe-transcription-software" +} diff --git a/site/public/v1/software/express-scribe/index.json b/site/public/v1/software/express-scribe/index.json new file mode 100644 index 000000000000..bc598b96a839 --- /dev/null +++ b/site/public/v1/software/express-scribe/index.json @@ -0,0 +1,24 @@ +{ + "id": 3182, + "slug": "express-scribe", + "name": "Express Scribe", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105076383" + ], + "created_at": "2026-07-10T10:12:40.745229", + "updated_at": "2026-07-10T10:12:40.745229", + "url": "/v1/software/express-scribe" +} diff --git a/site/public/v1/software/expression-studio/index.json b/site/public/v1/software/expression-studio/index.json new file mode 100644 index 000000000000..08345523fc13 --- /dev/null +++ b/site/public/v1/software/expression-studio/index.json @@ -0,0 +1,21 @@ +{ + "id": 3183, + "slug": "expression-studio", + "name": "Expression Studio", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q688988" + ], + "created_at": "2026-07-10T10:12:40.745229", + "updated_at": "2026-07-10T10:12:40.745229", + "url": "/v1/software/expression-studio" +} diff --git a/site/public/v1/software/expresso-spreadsheet/index.json b/site/public/v1/software/expresso-spreadsheet/index.json new file mode 100644 index 000000000000..9856e8455b38 --- /dev/null +++ b/site/public/v1/software/expresso-spreadsheet/index.json @@ -0,0 +1,19 @@ +{ + "id": 3184, + "slug": "expresso-spreadsheet", + "name": "Expresso spreadsheet", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5421738" + ], + "created_at": "2026-07-10T10:12:40.746290", + "updated_at": "2026-07-10T10:12:40.746290", + "url": "/v1/software/expresso-spreadsheet" +} diff --git a/site/public/v1/software/exs24/index.json b/site/public/v1/software/exs24/index.json new file mode 100644 index 000000000000..e803a6da2872 --- /dev/null +++ b/site/public/v1/software/exs24/index.json @@ -0,0 +1,21 @@ +{ + "id": 3185, + "slug": "exs24", + "name": "EXS24", + "release_date": null, + "developers": [ + "Emagic" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10478876" + ], + "created_at": "2026-07-10T10:12:40.746290", + "updated_at": "2026-07-10T10:12:40.746290", + "url": "/v1/software/exs24" +} diff --git a/site/public/v1/software/exstream/index.json b/site/public/v1/software/exstream/index.json new file mode 100644 index 000000000000..c1d80dbc4814 --- /dev/null +++ b/site/public/v1/software/exstream/index.json @@ -0,0 +1,25 @@ +{ + "id": 3186, + "slug": "exstream", + "name": "Exstream", + "release_date": null, + "developers": [ + "Exstream Software", + "Open Text Corporation", + "Autonomy Corporation", + "HP Inc.", + "Hewlett-Packard" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q30926249" + ], + "created_at": "2026-07-10T10:12:40.747226", + "updated_at": "2026-07-10T10:12:40.747226", + "url": "/v1/software/exstream" +} diff --git a/site/public/v1/software/extempore/index.json b/site/public/v1/software/extempore/index.json new file mode 100644 index 000000000000..4d43f28cbf45 --- /dev/null +++ b/site/public/v1/software/extempore/index.json @@ -0,0 +1,19 @@ +{ + "id": 3187, + "slug": "extempore", + "name": "Extempore", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q19865096" + ], + "created_at": "2026-07-10T10:12:40.747226", + "updated_at": "2026-07-10T10:12:40.747226", + "url": "/v1/software/extempore" +} diff --git a/site/public/v1/software/extensible-computational-chemistry-environment/index.json b/site/public/v1/software/extensible-computational-chemistry-environment/index.json new file mode 100644 index 000000000000..b52bbbe9433a --- /dev/null +++ b/site/public/v1/software/extensible-computational-chemistry-environment/index.json @@ -0,0 +1,21 @@ +{ + "id": 3188, + "slug": "extensible-computational-chemistry-environment", + "name": "Extensible Computational Chemistry Environment", + "release_date": null, + "developers": [ + "Pacific Northwest National Laboratory" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5421920" + ], + "created_at": "2026-07-10T10:12:40.747226", + "updated_at": "2026-07-10T10:12:40.747226", + "url": "/v1/software/extensible-computational-chemistry-environment" +} diff --git a/site/public/v1/software/extensible-server-pages/index.json b/site/public/v1/software/extensible-server-pages/index.json new file mode 100644 index 000000000000..a2404b685b62 --- /dev/null +++ b/site/public/v1/software/extensible-server-pages/index.json @@ -0,0 +1,19 @@ +{ + "id": 3189, + "slug": "extensible-server-pages", + "name": "eXtensible Server Pages", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1384967" + ], + "created_at": "2026-07-10T10:12:40.747226", + "updated_at": "2026-07-10T10:12:40.747226", + "url": "/v1/software/extensible-server-pages" +} diff --git a/site/public/v1/software/extensible-text-framework/index.json b/site/public/v1/software/extensible-text-framework/index.json new file mode 100644 index 000000000000..1dda9a5d5304 --- /dev/null +++ b/site/public/v1/software/extensible-text-framework/index.json @@ -0,0 +1,21 @@ +{ + "id": 3190, + "slug": "extensible-text-framework", + "name": "eXtensible Text Framework", + "release_date": null, + "developers": [ + "California Digital Library" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16937575" + ], + "created_at": "2026-07-10T10:12:40.748227", + "updated_at": "2026-07-10T10:12:40.748227", + "url": "/v1/software/extensible-text-framework" +} diff --git a/site/public/v1/software/extenxls/index.json b/site/public/v1/software/extenxls/index.json new file mode 100644 index 000000000000..bf282440adf5 --- /dev/null +++ b/site/public/v1/software/extenxls/index.json @@ -0,0 +1,19 @@ +{ + "id": 3191, + "slug": "extenxls", + "name": "ExtenXLS", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5421798" + ], + "created_at": "2026-07-10T10:12:40.748227", + "updated_at": "2026-07-10T10:12:40.748227", + "url": "/v1/software/extenxls" +} diff --git a/site/public/v1/software/extreme-loading-for-structures/index.json b/site/public/v1/software/extreme-loading-for-structures/index.json new file mode 100644 index 000000000000..e265023296ce --- /dev/null +++ b/site/public/v1/software/extreme-loading-for-structures/index.json @@ -0,0 +1,21 @@ +{ + "id": 3192, + "slug": "extreme-loading-for-structures", + "name": "Extreme Loading for Structures", + "release_date": null, + "developers": [ + "Applied Science International" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5422337" + ], + "created_at": "2026-07-10T10:12:40.748227", + "updated_at": "2026-07-10T10:12:40.748227", + "url": "/v1/software/extreme-loading-for-structures" +} diff --git a/site/public/v1/software/extremedb/index.json b/site/public/v1/software/extremedb/index.json new file mode 100644 index 000000000000..b95735019dd1 --- /dev/null +++ b/site/public/v1/software/extremedb/index.json @@ -0,0 +1,19 @@ +{ + "id": 3193, + "slug": "extremedb", + "name": "eXtremeDB", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5324736" + ], + "created_at": "2026-07-10T10:12:40.749352", + "updated_at": "2026-07-10T10:12:40.749352", + "url": "/v1/software/extremedb" +} diff --git a/site/public/v1/software/extremez-ip/index.json b/site/public/v1/software/extremez-ip/index.json new file mode 100644 index 000000000000..fee2d184fdf8 --- /dev/null +++ b/site/public/v1/software/extremez-ip/index.json @@ -0,0 +1,21 @@ +{ + "id": 3194, + "slug": "extremez-ip", + "name": "ExtremeZ-IP", + "release_date": null, + "developers": [ + "GroupLogic" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5422306" + ], + "created_at": "2026-07-10T10:12:40.749352", + "updated_at": "2026-07-10T10:12:40.749352", + "url": "/v1/software/extremez-ip" +} diff --git a/site/public/v1/software/extromatica-network-monitor/index.json b/site/public/v1/software/extromatica-network-monitor/index.json new file mode 100644 index 000000000000..515039e06250 --- /dev/null +++ b/site/public/v1/software/extromatica-network-monitor/index.json @@ -0,0 +1,19 @@ +{ + "id": 3195, + "slug": "extromatica-network-monitor", + "name": "Extromatica Network Monitor", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5422486" + ], + "created_at": "2026-07-10T10:12:40.749352", + "updated_at": "2026-07-10T10:12:40.749352", + "url": "/v1/software/extromatica-network-monitor" +} diff --git a/site/public/v1/software/eye-sys/index.json b/site/public/v1/software/eye-sys/index.json new file mode 100644 index 000000000000..d4b64c5317d1 --- /dev/null +++ b/site/public/v1/software/eye-sys/index.json @@ -0,0 +1,19 @@ +{ + "id": 3196, + "slug": "eye-sys", + "name": "Eye-Sys", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5422581" + ], + "created_at": "2026-07-10T10:12:40.750307", + "updated_at": "2026-07-10T10:12:40.750307", + "url": "/v1/software/eye-sys" +} diff --git a/site/public/v1/software/eyeball-chat/index.json b/site/public/v1/software/eyeball-chat/index.json new file mode 100644 index 000000000000..69473a0b62e5 --- /dev/null +++ b/site/public/v1/software/eyeball-chat/index.json @@ -0,0 +1,19 @@ +{ + "id": 3197, + "slug": "eyeball-chat", + "name": "Eyeball Chat", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5422742" + ], + "created_at": "2026-07-10T10:12:40.750307", + "updated_at": "2026-07-10T10:12:40.750307", + "url": "/v1/software/eyeball-chat" +} diff --git a/site/public/v1/software/eyegroove/index.json b/site/public/v1/software/eyegroove/index.json new file mode 100644 index 000000000000..b3ce612ccc53 --- /dev/null +++ b/site/public/v1/software/eyegroove/index.json @@ -0,0 +1,19 @@ +{ + "id": 3198, + "slug": "eyegroove", + "name": "Eyegroove", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q65072619" + ], + "created_at": "2026-07-10T10:12:40.750307", + "updated_at": "2026-07-10T10:12:40.750307", + "url": "/v1/software/eyegroove" +} diff --git a/site/public/v1/software/ezf-advance/index.json b/site/public/v1/software/ezf-advance/index.json new file mode 100644 index 000000000000..a1f7a4eb9d3f --- /dev/null +++ b/site/public/v1/software/ezf-advance/index.json @@ -0,0 +1,19 @@ +{ + "id": 3199, + "slug": "ezf-advance", + "name": "EZF Advance", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10478875" + ], + "created_at": "2026-07-10T10:12:40.751298", + "updated_at": "2026-07-10T10:12:40.751298", + "url": "/v1/software/ezf-advance" +} diff --git a/site/public/v1/software/ezhtml/index.json b/site/public/v1/software/ezhtml/index.json new file mode 100644 index 000000000000..46b96ee33151 --- /dev/null +++ b/site/public/v1/software/ezhtml/index.json @@ -0,0 +1,19 @@ +{ + "id": 3200, + "slug": "ezhtml", + "name": "EzHTML", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q9257211" + ], + "created_at": "2026-07-10T10:12:40.751298", + "updated_at": "2026-07-10T10:12:40.751298", + "url": "/v1/software/ezhtml" +} diff --git a/site/public/v1/software/ezlinavis/index.json b/site/public/v1/software/ezlinavis/index.json new file mode 100644 index 000000000000..ad0bf34fee51 --- /dev/null +++ b/site/public/v1/software/ezlinavis/index.json @@ -0,0 +1,24 @@ +{ + "id": 3201, + "slug": "ezlinavis", + "name": "ezlinavis", + "release_date": null, + "developers": [ + "Carsten Milling", + "Frank Fischer" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084932" + ], + "created_at": "2026-07-10T10:12:40.751298", + "updated_at": "2026-07-10T10:12:40.751298", + "url": "/v1/software/ezlinavis" +} diff --git a/site/public/v1/software/ezmol/index.json b/site/public/v1/software/ezmol/index.json new file mode 100644 index 000000000000..78668c2eec6a --- /dev/null +++ b/site/public/v1/software/ezmol/index.json @@ -0,0 +1,19 @@ +{ + "id": 3202, + "slug": "ezmol", + "name": "EzMol", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q55611316" + ], + "created_at": "2026-07-10T10:12:40.752309", + "updated_at": "2026-07-10T10:12:40.752309", + "url": "/v1/software/ezmol" +} diff --git a/site/public/v1/software/ezproxy/index.json b/site/public/v1/software/ezproxy/index.json new file mode 100644 index 000000000000..5537ffc955ce --- /dev/null +++ b/site/public/v1/software/ezproxy/index.json @@ -0,0 +1,21 @@ +{ + "id": 3203, + "slug": "ezproxy", + "name": "EZproxy", + "release_date": null, + "developers": [ + "OCLC, Inc." + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5324770" + ], + "created_at": "2026-07-10T10:12:40.752309", + "updated_at": "2026-07-10T10:12:40.752309", + "url": "/v1/software/ezproxy" +} diff --git a/site/public/v1/software/ezstream/index.json b/site/public/v1/software/ezstream/index.json new file mode 100644 index 000000000000..ff71d08b26d0 --- /dev/null +++ b/site/public/v1/software/ezstream/index.json @@ -0,0 +1,19 @@ +{ + "id": 3204, + "slug": "ezstream", + "name": "Ezstream", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110473988" + ], + "created_at": "2026-07-10T10:12:40.752309", + "updated_at": "2026-07-10T10:12:40.752309", + "url": "/v1/software/ezstream" +} diff --git a/site/public/v1/software/f-lux/index.json b/site/public/v1/software/f-lux/index.json new file mode 100644 index 000000000000..c501dbf747bd --- /dev/null +++ b/site/public/v1/software/f-lux/index.json @@ -0,0 +1,27 @@ +{ + "id": 3205, + "slug": "f-lux", + "name": "f.lux", + "release_date": "2009-01-01", + "developers": [ + "Michael Herf" + ], + "publishers": [], + "operating_systems": [ + "iOS", + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "end-user license agreement" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5424140" + ], + "created_at": "2026-07-10T10:12:40.752309", + "updated_at": "2026-07-10T10:12:40.753309", + "url": "/v1/software/f-lux" +} diff --git a/site/public/v1/software/f-o-x/index.json b/site/public/v1/software/f-o-x/index.json new file mode 100644 index 000000000000..f495d7b13bfa --- /dev/null +++ b/site/public/v1/software/f-o-x/index.json @@ -0,0 +1,19 @@ +{ + "id": 3206, + "slug": "f-o-x", + "name": "F.O.X.", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125093234" + ], + "created_at": "2026-07-10T10:12:40.753309", + "updated_at": "2026-07-10T10:12:40.753309", + "url": "/v1/software/f-o-x" +} diff --git a/site/public/v1/software/f4analyse/index.json b/site/public/v1/software/f4analyse/index.json new file mode 100644 index 000000000000..e146820d7f20 --- /dev/null +++ b/site/public/v1/software/f4analyse/index.json @@ -0,0 +1,24 @@ +{ + "id": 3207, + "slug": "f4analyse", + "name": "f4analyse", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105229745" + ], + "created_at": "2026-07-10T10:12:40.753309", + "updated_at": "2026-07-10T10:12:40.753309", + "url": "/v1/software/f4analyse" +} diff --git a/site/public/v1/software/f4transkript/index.json b/site/public/v1/software/f4transkript/index.json new file mode 100644 index 000000000000..2a99b9ce442e --- /dev/null +++ b/site/public/v1/software/f4transkript/index.json @@ -0,0 +1,24 @@ +{ + "id": 3208, + "slug": "f4transkript", + "name": "f4transkript", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105076384" + ], + "created_at": "2026-07-10T10:12:40.753309", + "updated_at": "2026-07-10T10:12:40.753309", + "url": "/v1/software/f4transkript" +} diff --git a/site/public/v1/software/f9-financial-reporting/index.json b/site/public/v1/software/f9-financial-reporting/index.json new file mode 100644 index 000000000000..378b91c9159b --- /dev/null +++ b/site/public/v1/software/f9-financial-reporting/index.json @@ -0,0 +1,19 @@ +{ + "id": 3209, + "slug": "f9-financial-reporting", + "name": "F9 Financial Reporting", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5424269" + ], + "created_at": "2026-07-10T10:12:40.754316", + "updated_at": "2026-07-10T10:12:40.754316", + "url": "/v1/software/f9-financial-reporting" +} diff --git a/site/public/v1/software/faac/index.json b/site/public/v1/software/faac/index.json new file mode 100644 index 000000000000..002a064f529d --- /dev/null +++ b/site/public/v1/software/faac/index.json @@ -0,0 +1,25 @@ +{ + "id": 3210, + "slug": "faac", + "name": "FAAC", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "FreeBSD", + "macOS" + ], + "programming_languages": [], + "licenses": [ + "GNU Lesser General Public License, version 2.1 or later", + "GNU Library General Public License, version 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5424275" + ], + "created_at": "2026-07-10T10:12:40.754316", + "updated_at": "2026-07-10T10:12:40.754316", + "url": "/v1/software/faac" +} diff --git a/site/public/v1/software/fabasoft-egov-suite/index.json b/site/public/v1/software/fabasoft-egov-suite/index.json new file mode 100644 index 000000000000..3aa4b5479643 --- /dev/null +++ b/site/public/v1/software/fabasoft-egov-suite/index.json @@ -0,0 +1,19 @@ +{ + "id": 3211, + "slug": "fabasoft-egov-suite", + "name": "Fabasoft eGov-Suite", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1133619" + ], + "created_at": "2026-07-10T10:12:40.754316", + "updated_at": "2026-07-10T10:12:40.754316", + "url": "/v1/software/fabasoft-egov-suite" +} diff --git a/site/public/v1/software/fabasoft-folio-cloud/index.json b/site/public/v1/software/fabasoft-folio-cloud/index.json new file mode 100644 index 000000000000..a38172f13492 --- /dev/null +++ b/site/public/v1/software/fabasoft-folio-cloud/index.json @@ -0,0 +1,19 @@ +{ + "id": 3212, + "slug": "fabasoft-folio-cloud", + "name": "Fabasoft Folio Cloud", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1133530" + ], + "created_at": "2026-07-10T10:12:40.755292", + "updated_at": "2026-07-10T10:12:40.755292", + "url": "/v1/software/fabasoft-folio-cloud" +} diff --git a/site/public/v1/software/facadecolorizer/index.json b/site/public/v1/software/facadecolorizer/index.json new file mode 100644 index 000000000000..b18ee21de89b --- /dev/null +++ b/site/public/v1/software/facadecolorizer/index.json @@ -0,0 +1,21 @@ +{ + "id": 3213, + "slug": "facadecolorizer", + "name": "FacadeColorizer", + "release_date": null, + "developers": [ + "Hugo Dumoulin" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139589296" + ], + "created_at": "2026-07-10T10:12:40.755292", + "updated_at": "2026-07-10T10:12:40.755292", + "url": "/v1/software/facadecolorizer" +} diff --git a/site/public/v1/software/face-of-the-future/index.json b/site/public/v1/software/face-of-the-future/index.json new file mode 100644 index 000000000000..58051810bafb --- /dev/null +++ b/site/public/v1/software/face-of-the-future/index.json @@ -0,0 +1,21 @@ +{ + "id": 3214, + "slug": "face-of-the-future", + "name": "Face of the Future", + "release_date": null, + "developers": [ + "University of St Andrews" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q39048434" + ], + "created_at": "2026-07-10T10:12:40.755292", + "updated_at": "2026-07-10T10:12:40.755292", + "url": "/v1/software/face-of-the-future" +} diff --git a/site/public/v1/software/face-swap-live/index.json b/site/public/v1/software/face-swap-live/index.json new file mode 100644 index 000000000000..e3c058d17957 --- /dev/null +++ b/site/public/v1/software/face-swap-live/index.json @@ -0,0 +1,19 @@ +{ + "id": 3215, + "slug": "face-swap-live", + "name": "Face Swap Live", + "release_date": "2015-12-14", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q55264370" + ], + "created_at": "2026-07-10T10:12:40.755292", + "updated_at": "2026-07-10T10:12:40.755292", + "url": "/v1/software/face-swap-live" +} diff --git a/site/public/v1/software/facebook-home/index.json b/site/public/v1/software/facebook-home/index.json new file mode 100644 index 000000000000..2388a2564d66 --- /dev/null +++ b/site/public/v1/software/facebook-home/index.json @@ -0,0 +1,21 @@ +{ + "id": 3216, + "slug": "facebook-home", + "name": "Facebook Home", + "release_date": "2013-04-12", + "developers": [ + "Meta" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10630551" + ], + "created_at": "2026-07-10T10:12:40.756295", + "updated_at": "2026-07-10T10:12:40.756295", + "url": "/v1/software/facebook-home" +} diff --git a/site/public/v1/software/facebook-paper/index.json b/site/public/v1/software/facebook-paper/index.json new file mode 100644 index 000000000000..504f6355340f --- /dev/null +++ b/site/public/v1/software/facebook-paper/index.json @@ -0,0 +1,19 @@ +{ + "id": 3217, + "slug": "facebook-paper", + "name": "Facebook Paper", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16927686" + ], + "created_at": "2026-07-10T10:12:40.756295", + "updated_at": "2026-07-10T10:12:40.756295", + "url": "/v1/software/facebook-paper" +} diff --git a/site/public/v1/software/facebook-room/index.json b/site/public/v1/software/facebook-room/index.json new file mode 100644 index 000000000000..05e8a1f38f66 --- /dev/null +++ b/site/public/v1/software/facebook-room/index.json @@ -0,0 +1,19 @@ +{ + "id": 3218, + "slug": "facebook-room", + "name": "Facebook Room", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q97959542" + ], + "created_at": "2026-07-10T10:12:40.757311", + "updated_at": "2026-07-10T10:12:40.757311", + "url": "/v1/software/facebook-room" +} diff --git a/site/public/v1/software/facebook-slingshot/index.json b/site/public/v1/software/facebook-slingshot/index.json new file mode 100644 index 000000000000..5db68575ac78 --- /dev/null +++ b/site/public/v1/software/facebook-slingshot/index.json @@ -0,0 +1,19 @@ +{ + "id": 3219, + "slug": "facebook-slingshot", + "name": "Facebook Slingshot", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18149779" + ], + "created_at": "2026-07-10T10:12:40.757311", + "updated_at": "2026-07-10T10:12:40.757311", + "url": "/v1/software/facebook-slingshot" +} diff --git a/site/public/v1/software/facefx/index.json b/site/public/v1/software/facefx/index.json new file mode 100644 index 000000000000..ddf550a11fbc --- /dev/null +++ b/site/public/v1/software/facefx/index.json @@ -0,0 +1,19 @@ +{ + "id": 3220, + "slug": "facefx", + "name": "FaceFX", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4038567" + ], + "created_at": "2026-07-10T10:12:40.757311", + "updated_at": "2026-07-10T10:12:40.757311", + "url": "/v1/software/facefx" +} diff --git a/site/public/v1/software/facepager/index.json b/site/public/v1/software/facepager/index.json new file mode 100644 index 000000000000..c6e23cf04f17 --- /dev/null +++ b/site/public/v1/software/facepager/index.json @@ -0,0 +1,19 @@ +{ + "id": 3221, + "slug": "facepager", + "name": "Facepager", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087804" + ], + "created_at": "2026-07-10T10:12:40.757311", + "updated_at": "2026-07-10T10:12:40.757311", + "url": "/v1/software/facepager" +} diff --git a/site/public/v1/software/facerig/index.json b/site/public/v1/software/facerig/index.json new file mode 100644 index 000000000000..dc9da6777bee --- /dev/null +++ b/site/public/v1/software/facerig/index.json @@ -0,0 +1,19 @@ +{ + "id": 3222, + "slug": "facerig", + "name": "FaceRig", + "release_date": "2015-07-07", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18417130" + ], + "created_at": "2026-07-10T10:12:40.758317", + "updated_at": "2026-07-10T10:12:40.758317", + "url": "/v1/software/facerig" +} diff --git a/site/public/v1/software/facetune/index.json b/site/public/v1/software/facetune/index.json new file mode 100644 index 000000000000..98d86782f0f4 --- /dev/null +++ b/site/public/v1/software/facetune/index.json @@ -0,0 +1,19 @@ +{ + "id": 3223, + "slug": "facetune", + "name": "Facetune", + "release_date": "2013-03-06", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16972003" + ], + "created_at": "2026-07-10T10:12:40.758317", + "updated_at": "2026-07-10T10:12:40.758317", + "url": "/v1/software/facetune" +} diff --git a/site/public/v1/software/facsys/index.json b/site/public/v1/software/facsys/index.json new file mode 100644 index 000000000000..eb18bead29d8 --- /dev/null +++ b/site/public/v1/software/facsys/index.json @@ -0,0 +1,19 @@ +{ + "id": 3224, + "slug": "facsys", + "name": "FACSys", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5424311" + ], + "created_at": "2026-07-10T10:12:40.759226", + "updated_at": "2026-07-10T10:12:40.759226", + "url": "/v1/software/facsys" +} diff --git a/site/public/v1/software/facter/index.json b/site/public/v1/software/facter/index.json new file mode 100644 index 000000000000..dc444934491c --- /dev/null +++ b/site/public/v1/software/facter/index.json @@ -0,0 +1,21 @@ +{ + "id": 3225, + "slug": "facter", + "name": "facter", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974836" + ], + "created_at": "2026-07-10T10:12:40.759226", + "updated_at": "2026-07-10T10:12:40.759226", + "url": "/v1/software/facter" +} diff --git a/site/public/v1/software/factory-i-o/index.json b/site/public/v1/software/factory-i-o/index.json new file mode 100644 index 000000000000..288ab50ae5fb --- /dev/null +++ b/site/public/v1/software/factory-i-o/index.json @@ -0,0 +1,19 @@ +{ + "id": 3226, + "slug": "factory-i-o", + "name": "Factory I/O", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110788023" + ], + "created_at": "2026-07-10T10:12:40.759226", + "updated_at": "2026-07-10T10:12:40.759226", + "url": "/v1/software/factory-i-o" +} diff --git a/site/public/v1/software/factotum/index.json b/site/public/v1/software/factotum/index.json new file mode 100644 index 000000000000..f1179dba7b12 --- /dev/null +++ b/site/public/v1/software/factotum/index.json @@ -0,0 +1,21 @@ +{ + "id": 3227, + "slug": "factotum", + "name": "factotum", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Plan 9" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5428799" + ], + "created_at": "2026-07-10T10:12:40.760224", + "updated_at": "2026-07-10T10:12:40.760224", + "url": "/v1/software/factotum" +} diff --git a/site/public/v1/software/factuchat/index.json b/site/public/v1/software/factuchat/index.json new file mode 100644 index 000000000000..b1a8d001ff74 --- /dev/null +++ b/site/public/v1/software/factuchat/index.json @@ -0,0 +1,29 @@ +{ + "id": 3228, + "slug": "factuchat", + "name": "FactuChat", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "iOS", + "macOS", + "Microsoft Windows" + ], + "programming_languages": [ + "Python" + ], + "licenses": [ + "proprietary license" + ], + "genres": [ + "Invoicing system" + ], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138773962" + ], + "created_at": "2026-07-10T10:12:40.760224", + "updated_at": "2026-07-10T10:12:40.760224", + "url": "/v1/software/factuchat" +} diff --git a/site/public/v1/software/facturascripts/index.json b/site/public/v1/software/facturascripts/index.json new file mode 100644 index 000000000000..23fd5407cd48 --- /dev/null +++ b/site/public/v1/software/facturascripts/index.json @@ -0,0 +1,19 @@ +{ + "id": 3229, + "slug": "facturascripts", + "name": "FacturaScripts", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q21002073" + ], + "created_at": "2026-07-10T10:12:40.760224", + "updated_at": "2026-07-10T10:12:40.760224", + "url": "/v1/software/facturascripts" +} diff --git a/site/public/v1/software/facultyfiles/index.json b/site/public/v1/software/facultyfiles/index.json new file mode 100644 index 000000000000..4a9602313b02 --- /dev/null +++ b/site/public/v1/software/facultyfiles/index.json @@ -0,0 +1,19 @@ +{ + "id": 3230, + "slug": "facultyfiles", + "name": "FacultyFiles", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084955" + ], + "created_at": "2026-07-10T10:12:40.760224", + "updated_at": "2026-07-10T10:12:40.760224", + "url": "/v1/software/facultyfiles" +} diff --git a/site/public/v1/software/fade-in/index.json b/site/public/v1/software/fade-in/index.json new file mode 100644 index 000000000000..250cf3ccb616 --- /dev/null +++ b/site/public/v1/software/fade-in/index.json @@ -0,0 +1,22 @@ +{ + "id": 3231, + "slug": "fade-in", + "name": "Fade In", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q20712368" + ], + "created_at": "2026-07-10T10:12:40.761225", + "updated_at": "2026-07-10T10:12:40.761225", + "url": "/v1/software/fade-in" +} diff --git a/site/public/v1/software/fade/index.json b/site/public/v1/software/fade/index.json new file mode 100644 index 000000000000..b8eff77eed46 --- /dev/null +++ b/site/public/v1/software/fade/index.json @@ -0,0 +1,21 @@ +{ + "id": 3232, + "slug": "fade", + "name": "FADE", + "release_date": null, + "developers": [ + "Codemasters" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4038503" + ], + "created_at": "2026-07-10T10:12:40.761225", + "updated_at": "2026-07-10T10:12:40.761225", + "url": "/v1/software/fade" +} diff --git a/site/public/v1/software/faerun/index.json b/site/public/v1/software/faerun/index.json new file mode 100644 index 000000000000..343cab1e663f --- /dev/null +++ b/site/public/v1/software/faerun/index.json @@ -0,0 +1,19 @@ +{ + "id": 3233, + "slug": "faerun", + "name": "faerun", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112338962" + ], + "created_at": "2026-07-10T10:12:40.761225", + "updated_at": "2026-07-10T10:12:40.761225", + "url": "/v1/software/faerun" +} diff --git a/site/public/v1/software/faims-mobile-platform/index.json b/site/public/v1/software/faims-mobile-platform/index.json new file mode 100644 index 000000000000..ccb666ac730c --- /dev/null +++ b/site/public/v1/software/faims-mobile-platform/index.json @@ -0,0 +1,21 @@ +{ + "id": 3234, + "slug": "faims-mobile-platform", + "name": "FAIMS Mobile Platform", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "iOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084956" + ], + "created_at": "2026-07-10T10:12:40.762225", + "updated_at": "2026-07-10T10:12:40.762225", + "url": "/v1/software/faims-mobile-platform" +} diff --git a/site/public/v1/software/fairmat/index.json b/site/public/v1/software/fairmat/index.json new file mode 100644 index 000000000000..d312addf9566 --- /dev/null +++ b/site/public/v1/software/fairmat/index.json @@ -0,0 +1,19 @@ +{ + "id": 3235, + "slug": "fairmat", + "name": "Fairmat", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5430565" + ], + "created_at": "2026-07-10T10:12:40.762225", + "updated_at": "2026-07-10T10:12:40.765221", + "url": "/v1/software/fairmat" +} diff --git a/site/public/v1/software/fakechroot/index.json b/site/public/v1/software/fakechroot/index.json new file mode 100644 index 000000000000..0b49890b1d6c --- /dev/null +++ b/site/public/v1/software/fakechroot/index.json @@ -0,0 +1,19 @@ +{ + "id": 3236, + "slug": "fakechroot", + "name": "fakechroot", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62849173" + ], + "created_at": "2026-07-10T10:12:40.768221", + "updated_at": "2026-07-10T10:12:40.768221", + "url": "/v1/software/fakechroot" +} diff --git a/site/public/v1/software/fakeroot/index.json b/site/public/v1/software/fakeroot/index.json new file mode 100644 index 000000000000..96c06c9a4a08 --- /dev/null +++ b/site/public/v1/software/fakeroot/index.json @@ -0,0 +1,21 @@ +{ + "id": 3237, + "slug": "fakeroot", + "name": "fakeroot", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "GNU General Public License, version 3.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62849198" + ], + "created_at": "2026-07-10T10:12:40.768221", + "updated_at": "2026-07-10T10:12:40.768221", + "url": "/v1/software/fakeroot" +} diff --git a/site/public/v1/software/faktur-lu/index.json b/site/public/v1/software/faktur-lu/index.json new file mode 100644 index 000000000000..5f6840fe6147 --- /dev/null +++ b/site/public/v1/software/faktur-lu/index.json @@ -0,0 +1,19 @@ +{ + "id": 3238, + "slug": "faktur-lu", + "name": "faktur.lu", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139674760" + ], + "created_at": "2026-07-10T10:12:40.768221", + "updated_at": "2026-07-10T10:12:40.768221", + "url": "/v1/software/faktur-lu" +} diff --git a/site/public/v1/software/fakturia/index.json b/site/public/v1/software/fakturia/index.json new file mode 100644 index 000000000000..03fa839b6f39 --- /dev/null +++ b/site/public/v1/software/fakturia/index.json @@ -0,0 +1,19 @@ +{ + "id": 3239, + "slug": "fakturia", + "name": "Fakturia", + "release_date": "2016-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139943876" + ], + "created_at": "2026-07-10T10:12:40.769329", + "updated_at": "2026-07-10T10:12:40.769329", + "url": "/v1/software/fakturia" +} diff --git a/site/public/v1/software/falc/index.json b/site/public/v1/software/falc/index.json new file mode 100644 index 000000000000..94aa36e27c4a --- /dev/null +++ b/site/public/v1/software/falc/index.json @@ -0,0 +1,19 @@ +{ + "id": 3240, + "slug": "falc", + "name": "FALC", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121462981" + ], + "created_at": "2026-07-10T10:12:40.769329", + "updated_at": "2026-07-10T10:12:40.769329", + "url": "/v1/software/falc" +} diff --git a/site/public/v1/software/falcon-180b/index.json b/site/public/v1/software/falcon-180b/index.json new file mode 100644 index 000000000000..1f7fef96df59 --- /dev/null +++ b/site/public/v1/software/falcon-180b/index.json @@ -0,0 +1,19 @@ +{ + "id": 3241, + "slug": "falcon-180b", + "name": "Falcon 180B", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124713322" + ], + "created_at": "2026-07-10T10:12:40.769329", + "updated_at": "2026-07-10T10:12:40.769329", + "url": "/v1/software/falcon-180b" +} diff --git a/site/public/v1/software/falconview/index.json b/site/public/v1/software/falconview/index.json new file mode 100644 index 000000000000..cd94e66f9d9e --- /dev/null +++ b/site/public/v1/software/falconview/index.json @@ -0,0 +1,24 @@ +{ + "id": 3242, + "slug": "falconview", + "name": "FalconView", + "release_date": "1994-01-01", + "developers": [ + "Georgia Tech Research Institute" + ], + "publishers": [], + "operating_systems": [ + "iOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5431723" + ], + "created_at": "2026-07-10T10:12:40.770280", + "updated_at": "2026-07-10T10:12:40.770280", + "url": "/v1/software/falconview" +} diff --git a/site/public/v1/software/falf-player/index.json b/site/public/v1/software/falf-player/index.json new file mode 100644 index 000000000000..d194c065ff5d --- /dev/null +++ b/site/public/v1/software/falf-player/index.json @@ -0,0 +1,21 @@ +{ + "id": 3243, + "slug": "falf-player", + "name": "FALF Player", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Unix-like operating system" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11985805" + ], + "created_at": "2026-07-10T10:12:40.770280", + "updated_at": "2026-07-10T10:12:40.770280", + "url": "/v1/software/falf-player" +} diff --git a/site/public/v1/software/family-sharing/index.json b/site/public/v1/software/family-sharing/index.json new file mode 100644 index 000000000000..e14001b8bf0f --- /dev/null +++ b/site/public/v1/software/family-sharing/index.json @@ -0,0 +1,19 @@ +{ + "id": 3244, + "slug": "family-sharing", + "name": "Family Sharing", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q65067102" + ], + "created_at": "2026-07-10T10:12:40.771280", + "updated_at": "2026-07-10T10:12:40.771280", + "url": "/v1/software/family-sharing" +} diff --git a/site/public/v1/software/family-tree-maker-10/index.json b/site/public/v1/software/family-tree-maker-10/index.json new file mode 100644 index 000000000000..23992a4e9201 --- /dev/null +++ b/site/public/v1/software/family-tree-maker-10/index.json @@ -0,0 +1,21 @@ +{ + "id": 3245, + "slug": "family-tree-maker-10", + "name": "Family Tree Maker 10", + "release_date": "2002-09-01", + "developers": [ + "genealogy.com" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q64859017" + ], + "created_at": "2026-07-10T10:12:40.771280", + "updated_at": "2026-07-10T10:12:40.771280", + "url": "/v1/software/family-tree-maker-10" +} diff --git a/site/public/v1/software/famitracker/index.json b/site/public/v1/software/famitracker/index.json new file mode 100644 index 000000000000..428d735f02ba --- /dev/null +++ b/site/public/v1/software/famitracker/index.json @@ -0,0 +1,21 @@ +{ + "id": 3246, + "slug": "famitracker", + "name": "FamiTracker", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "GNU General Public License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22582305" + ], + "created_at": "2026-07-10T10:12:40.771280", + "updated_at": "2026-07-10T10:12:40.771280", + "url": "/v1/software/famitracker" +} diff --git a/site/public/v1/software/famulus/index.json b/site/public/v1/software/famulus/index.json new file mode 100644 index 000000000000..b629c768e9e5 --- /dev/null +++ b/site/public/v1/software/famulus/index.json @@ -0,0 +1,22 @@ +{ + "id": 3247, + "slug": "famulus", + "name": "FAMULUS", + "release_date": null, + "developers": [ + "Miloš Sobotka", + "Leoš Dvořák" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q59593930" + ], + "created_at": "2026-07-10T10:12:40.772301", + "updated_at": "2026-07-10T10:12:40.772301", + "url": "/v1/software/famulus" +} diff --git a/site/public/v1/software/fangorn/index.json b/site/public/v1/software/fangorn/index.json new file mode 100644 index 000000000000..6e85ba63eefb --- /dev/null +++ b/site/public/v1/software/fangorn/index.json @@ -0,0 +1,19 @@ +{ + "id": 3248, + "slug": "fangorn", + "name": "FANGORN", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087805" + ], + "created_at": "2026-07-10T10:12:40.772301", + "updated_at": "2026-07-10T10:12:40.772301", + "url": "/v1/software/fangorn" +} diff --git a/site/public/v1/software/fantamorph/index.json b/site/public/v1/software/fantamorph/index.json new file mode 100644 index 000000000000..412946197b72 --- /dev/null +++ b/site/public/v1/software/fantamorph/index.json @@ -0,0 +1,19 @@ +{ + "id": 3249, + "slug": "fantamorph", + "name": "FantaMorph", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5434106" + ], + "created_at": "2026-07-10T10:12:40.772301", + "updated_at": "2026-07-10T10:12:40.772301", + "url": "/v1/software/fantamorph" +} diff --git a/site/public/v1/software/fantastico/index.json b/site/public/v1/software/fantastico/index.json new file mode 100644 index 000000000000..cb87e547b4c2 --- /dev/null +++ b/site/public/v1/software/fantastico/index.json @@ -0,0 +1,19 @@ +{ + "id": 3250, + "slug": "fantastico", + "name": "Fantastico", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1397488" + ], + "created_at": "2026-07-10T10:12:40.773305", + "updated_at": "2026-07-10T10:12:40.773305", + "url": "/v1/software/fantastico" +} diff --git a/site/public/v1/software/fantoir-datasource/index.json b/site/public/v1/software/fantoir-datasource/index.json new file mode 100644 index 000000000000..e7e2aa5b38b5 --- /dev/null +++ b/site/public/v1/software/fantoir-datasource/index.json @@ -0,0 +1,23 @@ +{ + "id": 3251, + "slug": "fantoir-datasource", + "name": "fantoir-datasource", + "release_date": null, + "developers": [], + "publishers": [ + "Nasqueron" + ], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "2-clause BSD License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116205103" + ], + "created_at": "2026-07-10T10:12:40.773305", + "updated_at": "2026-07-10T10:12:40.773305", + "url": "/v1/software/fantoir-datasource" +} diff --git a/site/public/v1/software/fanurio/index.json b/site/public/v1/software/fanurio/index.json new file mode 100644 index 000000000000..6518cfcde7f7 --- /dev/null +++ b/site/public/v1/software/fanurio/index.json @@ -0,0 +1,19 @@ +{ + "id": 3252, + "slug": "fanurio", + "name": "Fanurio", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5434418" + ], + "created_at": "2026-07-10T10:12:40.773305", + "updated_at": "2026-07-10T10:12:40.773305", + "url": "/v1/software/fanurio" +} diff --git a/site/public/v1/software/fao-country-profiles/index.json b/site/public/v1/software/fao-country-profiles/index.json new file mode 100644 index 000000000000..fbb558a2c726 --- /dev/null +++ b/site/public/v1/software/fao-country-profiles/index.json @@ -0,0 +1,21 @@ +{ + "id": 3253, + "slug": "fao-country-profiles", + "name": "FAO Country Profiles", + "release_date": null, + "developers": [ + "Food and Agriculture Organization of the United Nations" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5424440" + ], + "created_at": "2026-07-10T10:12:40.774224", + "updated_at": "2026-07-10T10:12:40.774224", + "url": "/v1/software/fao-country-profiles" +} diff --git a/site/public/v1/software/far-play/index.json b/site/public/v1/software/far-play/index.json new file mode 100644 index 000000000000..073b2a1d1c29 --- /dev/null +++ b/site/public/v1/software/far-play/index.json @@ -0,0 +1,21 @@ +{ + "id": 3254, + "slug": "far-play", + "name": "Far-Play", + "release_date": "2008-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "PHP" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17013184" + ], + "created_at": "2026-07-10T10:12:40.774224", + "updated_at": "2026-07-10T10:12:40.774224", + "url": "/v1/software/far-play" +} diff --git a/site/public/v1/software/farfield/index.json b/site/public/v1/software/farfield/index.json new file mode 100644 index 000000000000..5270857766d2 --- /dev/null +++ b/site/public/v1/software/farfield/index.json @@ -0,0 +1,19 @@ +{ + "id": 3255, + "slug": "farfield", + "name": "Farfield", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139964415" + ], + "created_at": "2026-07-10T10:12:40.774224", + "updated_at": "2026-07-10T10:12:40.774224", + "url": "/v1/software/farfield" +} diff --git a/site/public/v1/software/farplay/index.json b/site/public/v1/software/farplay/index.json new file mode 100644 index 000000000000..bff2e8e68926 --- /dev/null +++ b/site/public/v1/software/farplay/index.json @@ -0,0 +1,19 @@ +{ + "id": 3256, + "slug": "farplay", + "name": "FarPlay", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130601811" + ], + "created_at": "2026-07-10T10:12:40.775223", + "updated_at": "2026-07-10T10:12:40.775223", + "url": "/v1/software/farplay" +} diff --git a/site/public/v1/software/farpoint-spread/index.json b/site/public/v1/software/farpoint-spread/index.json new file mode 100644 index 000000000000..34c43a9bb0f4 --- /dev/null +++ b/site/public/v1/software/farpoint-spread/index.json @@ -0,0 +1,21 @@ +{ + "id": 3257, + "slug": "farpoint-spread", + "name": "FarPoint Spread", + "release_date": "1991-01-01", + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5434485" + ], + "created_at": "2026-07-10T10:12:40.775223", + "updated_at": "2026-07-10T10:12:40.775223", + "url": "/v1/software/farpoint-spread" +} diff --git a/site/public/v1/software/fast-and-realistic-opengl-displayer/index.json b/site/public/v1/software/fast-and-realistic-opengl-displayer/index.json new file mode 100644 index 000000000000..8bef82e79948 --- /dev/null +++ b/site/public/v1/software/fast-and-realistic-opengl-displayer/index.json @@ -0,0 +1,19 @@ +{ + "id": 3258, + "slug": "fast-and-realistic-opengl-displayer", + "name": "Fast and Realistic OpenGL Displayer", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5437020" + ], + "created_at": "2026-07-10T10:12:40.775223", + "updated_at": "2026-07-10T10:12:40.775223", + "url": "/v1/software/fast-and-realistic-opengl-displayer" +} diff --git a/site/public/v1/software/fast-hack-em/index.json b/site/public/v1/software/fast-hack-em/index.json new file mode 100644 index 000000000000..59b57359f94a --- /dev/null +++ b/site/public/v1/software/fast-hack-em/index.json @@ -0,0 +1,19 @@ +{ + "id": 3259, + "slug": "fast-hack-em", + "name": "Fast Hack'em", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5436945" + ], + "created_at": "2026-07-10T10:12:40.776221", + "updated_at": "2026-07-10T10:12:40.776221", + "url": "/v1/software/fast-hack-em" +} diff --git a/site/public/v1/software/fast-library-for-approximate-nearest-neighbors/index.json b/site/public/v1/software/fast-library-for-approximate-nearest-neighbors/index.json new file mode 100644 index 000000000000..7760620c968e --- /dev/null +++ b/site/public/v1/software/fast-library-for-approximate-nearest-neighbors/index.json @@ -0,0 +1,23 @@ +{ + "id": 3260, + "slug": "fast-library-for-approximate-nearest-neighbors", + "name": "Fast Library for Approximate Nearest Neighbors", + "release_date": null, + "developers": [ + "Marius Muja" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "3-clause BSD License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974849" + ], + "created_at": "2026-07-10T10:12:40.776221", + "updated_at": "2026-07-10T10:12:40.776221", + "url": "/v1/software/fast-library-for-approximate-nearest-neighbors" +} diff --git a/site/public/v1/software/fast-metabolizer/index.json b/site/public/v1/software/fast-metabolizer/index.json new file mode 100644 index 000000000000..9d12d49591f9 --- /dev/null +++ b/site/public/v1/software/fast-metabolizer/index.json @@ -0,0 +1,19 @@ +{ + "id": 3261, + "slug": "fast-metabolizer", + "name": "FAst MEtabolizer", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72150105" + ], + "created_at": "2026-07-10T10:12:40.776221", + "updated_at": "2026-07-10T10:12:40.776221", + "url": "/v1/software/fast-metabolizer" +} diff --git a/site/public/v1/software/fast-statistical-alignment/index.json b/site/public/v1/software/fast-statistical-alignment/index.json new file mode 100644 index 000000000000..6ea888dab6aa --- /dev/null +++ b/site/public/v1/software/fast-statistical-alignment/index.json @@ -0,0 +1,19 @@ +{ + "id": 3262, + "slug": "fast-statistical-alignment", + "name": "Fast statistical alignment", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5437052" + ], + "created_at": "2026-07-10T10:12:40.777221", + "updated_at": "2026-07-10T10:12:40.777221", + "url": "/v1/software/fast-statistical-alignment" +} diff --git a/site/public/v1/software/fastback/index.json b/site/public/v1/software/fastback/index.json new file mode 100644 index 000000000000..21e9965355d7 --- /dev/null +++ b/site/public/v1/software/fastback/index.json @@ -0,0 +1,21 @@ +{ + "id": 3263, + "slug": "fastback", + "name": "FastBack", + "release_date": null, + "developers": [ + "Fifth Generation Systems" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5436869" + ], + "created_at": "2026-07-10T10:12:40.777221", + "updated_at": "2026-07-10T10:12:40.777221", + "url": "/v1/software/fastback" +} diff --git a/site/public/v1/software/fastboot/index.json b/site/public/v1/software/fastboot/index.json new file mode 100644 index 000000000000..39e64631136e --- /dev/null +++ b/site/public/v1/software/fastboot/index.json @@ -0,0 +1,21 @@ +{ + "id": 3264, + "slug": "fastboot", + "name": "fastboot", + "release_date": null, + "developers": [ + "Google" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11072391" + ], + "created_at": "2026-07-10T10:12:40.777221", + "updated_at": "2026-07-10T10:12:40.777221", + "url": "/v1/software/fastboot" +} diff --git a/site/public/v1/software/fastbridge/index.json b/site/public/v1/software/fastbridge/index.json new file mode 100644 index 000000000000..73288b30ff60 --- /dev/null +++ b/site/public/v1/software/fastbridge/index.json @@ -0,0 +1,21 @@ +{ + "id": 3265, + "slug": "fastbridge", + "name": "FastBridge", + "release_date": null, + "developers": [ + "Avail Deposits" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139602748" + ], + "created_at": "2026-07-10T10:12:40.778229", + "updated_at": "2026-07-10T10:12:40.778229", + "url": "/v1/software/fastbridge" +} diff --git a/site/public/v1/software/fastcad/index.json b/site/public/v1/software/fastcad/index.json new file mode 100644 index 000000000000..1d49ab6d91cd --- /dev/null +++ b/site/public/v1/software/fastcad/index.json @@ -0,0 +1,21 @@ +{ + "id": 3266, + "slug": "fastcad", + "name": "FastCAD", + "release_date": null, + "developers": [ + "Evolution Computing" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5436870" + ], + "created_at": "2026-07-10T10:12:40.778229", + "updated_at": "2026-07-10T10:12:40.778229", + "url": "/v1/software/fastcad" +} diff --git a/site/public/v1/software/fastecho/index.json b/site/public/v1/software/fastecho/index.json new file mode 100644 index 000000000000..52c23bd719f1 --- /dev/null +++ b/site/public/v1/software/fastecho/index.json @@ -0,0 +1,21 @@ +{ + "id": 3267, + "slug": "fastecho", + "name": "FastEcho", + "release_date": "1991-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5436877" + ], + "created_at": "2026-07-10T10:12:40.778229", + "updated_at": "2026-07-10T10:12:40.778229", + "url": "/v1/software/fastecho" +} diff --git a/site/public/v1/software/fasterfox/index.json b/site/public/v1/software/fasterfox/index.json new file mode 100644 index 000000000000..5e8698c3be6f --- /dev/null +++ b/site/public/v1/software/fasterfox/index.json @@ -0,0 +1,19 @@ +{ + "id": 3268, + "slug": "fasterfox", + "name": "Fasterfox", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2370129" + ], + "created_at": "2026-07-10T10:12:40.779316", + "updated_at": "2026-07-10T10:12:40.779316", + "url": "/v1/software/fasterfox" +} diff --git a/site/public/v1/software/fastic/index.json b/site/public/v1/software/fastic/index.json new file mode 100644 index 000000000000..ce7cc893dc6a --- /dev/null +++ b/site/public/v1/software/fastic/index.json @@ -0,0 +1,21 @@ +{ + "id": 3269, + "slug": "fastic", + "name": "Fastic", + "release_date": "2019-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120441738" + ], + "created_at": "2026-07-10T10:12:40.779316", + "updated_at": "2026-07-10T10:12:40.779316", + "url": "/v1/software/fastic" +} diff --git a/site/public/v1/software/fastik-io/index.json b/site/public/v1/software/fastik-io/index.json new file mode 100644 index 000000000000..179af230d1b2 --- /dev/null +++ b/site/public/v1/software/fastik-io/index.json @@ -0,0 +1,19 @@ +{ + "id": 3270, + "slug": "fastik-io", + "name": "Fastik.io", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138786925" + ], + "created_at": "2026-07-10T10:12:40.779316", + "updated_at": "2026-07-10T10:12:40.779316", + "url": "/v1/software/fastik-io" +} diff --git a/site/public/v1/software/fastjar/index.json b/site/public/v1/software/fastjar/index.json new file mode 100644 index 000000000000..6121b9811f94 --- /dev/null +++ b/site/public/v1/software/fastjar/index.json @@ -0,0 +1,19 @@ +{ + "id": 3271, + "slug": "fastjar", + "name": "fastjar", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110474005" + ], + "created_at": "2026-07-10T10:12:40.780280", + "updated_at": "2026-07-10T10:12:40.780280", + "url": "/v1/software/fastjar" +} diff --git a/site/public/v1/software/fastkwic/index.json b/site/public/v1/software/fastkwic/index.json new file mode 100644 index 000000000000..2cc4d609a7d8 --- /dev/null +++ b/site/public/v1/software/fastkwic/index.json @@ -0,0 +1,19 @@ +{ + "id": 3272, + "slug": "fastkwic", + "name": "FastKwic", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087806" + ], + "created_at": "2026-07-10T10:12:40.780280", + "updated_at": "2026-07-10T10:12:40.780280", + "url": "/v1/software/fastkwic" +} diff --git a/site/public/v1/software/fastpass-sspr/index.json b/site/public/v1/software/fastpass-sspr/index.json new file mode 100644 index 000000000000..dfd1ab3d665f --- /dev/null +++ b/site/public/v1/software/fastpass-sspr/index.json @@ -0,0 +1,21 @@ +{ + "id": 3273, + "slug": "fastpass-sspr", + "name": "FastPass SSPR", + "release_date": null, + "developers": [ + "FastPassCorp" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137612430" + ], + "created_at": "2026-07-10T10:12:40.780280", + "updated_at": "2026-07-10T10:12:40.780280", + "url": "/v1/software/fastpass-sspr" +} diff --git a/site/public/v1/software/fastpcr/index.json b/site/public/v1/software/fastpcr/index.json new file mode 100644 index 000000000000..dd19c3700af4 --- /dev/null +++ b/site/public/v1/software/fastpcr/index.json @@ -0,0 +1,19 @@ +{ + "id": 3274, + "slug": "fastpcr", + "name": "FastPCR", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4038648" + ], + "created_at": "2026-07-10T10:12:40.781292", + "updated_at": "2026-07-10T10:12:40.781292", + "url": "/v1/software/fastpcr" +} diff --git a/site/public/v1/software/fastpoet/index.json b/site/public/v1/software/fastpoet/index.json new file mode 100644 index 000000000000..8db0341a26ba --- /dev/null +++ b/site/public/v1/software/fastpoet/index.json @@ -0,0 +1,19 @@ +{ + "id": 3275, + "slug": "fastpoet", + "name": "FastPoet", + "release_date": "1992-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121599279" + ], + "created_at": "2026-07-10T10:12:40.781292", + "updated_at": "2026-07-10T10:12:40.781292", + "url": "/v1/software/fastpoet" +} diff --git a/site/public/v1/software/fastrad/index.json b/site/public/v1/software/fastrad/index.json new file mode 100644 index 000000000000..ea80adb0d08c --- /dev/null +++ b/site/public/v1/software/fastrad/index.json @@ -0,0 +1,19 @@ +{ + "id": 3276, + "slug": "fastrad", + "name": "FASTRAD", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4038508" + ], + "created_at": "2026-07-10T10:12:40.781292", + "updated_at": "2026-07-10T10:12:40.781292", + "url": "/v1/software/fastrad" +} diff --git a/site/public/v1/software/fastsense/index.json b/site/public/v1/software/fastsense/index.json new file mode 100644 index 000000000000..9a4bbce9ca52 --- /dev/null +++ b/site/public/v1/software/fastsense/index.json @@ -0,0 +1,19 @@ +{ + "id": 3277, + "slug": "fastsense", + "name": "FastSense", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084957" + ], + "created_at": "2026-07-10T10:12:40.782329", + "updated_at": "2026-07-10T10:12:40.782329", + "url": "/v1/software/fastsense" +} diff --git a/site/public/v1/software/fasttrack-schedule/index.json b/site/public/v1/software/fasttrack-schedule/index.json new file mode 100644 index 000000000000..b6c36be51cbe --- /dev/null +++ b/site/public/v1/software/fasttrack-schedule/index.json @@ -0,0 +1,19 @@ +{ + "id": 3278, + "slug": "fasttrack-schedule", + "name": "FastTrack Schedule", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1397625" + ], + "created_at": "2026-07-10T10:12:40.782329", + "updated_at": "2026-07-10T10:12:40.782329", + "url": "/v1/software/fasttrack-schedule" +} diff --git a/site/public/v1/software/fatbooth/index.json b/site/public/v1/software/fatbooth/index.json new file mode 100644 index 000000000000..ce11935a443e --- /dev/null +++ b/site/public/v1/software/fatbooth/index.json @@ -0,0 +1,19 @@ +{ + "id": 3279, + "slug": "fatbooth", + "name": "FatBooth", + "release_date": "2010-05-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17013304" + ], + "created_at": "2026-07-10T10:12:40.782329", + "updated_at": "2026-07-10T10:12:40.782329", + "url": "/v1/software/fatbooth" +} diff --git a/site/public/v1/software/fatfs/index.json b/site/public/v1/software/fatfs/index.json new file mode 100644 index 000000000000..9f8ef3ecf980 --- /dev/null +++ b/site/public/v1/software/fatfs/index.json @@ -0,0 +1,19 @@ +{ + "id": 3280, + "slug": "fatfs", + "name": "FatFs", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109424206" + ], + "created_at": "2026-07-10T10:12:40.783242", + "updated_at": "2026-07-10T10:12:40.783242", + "url": "/v1/software/fatfs" +} diff --git a/site/public/v1/software/favro/index.json b/site/public/v1/software/favro/index.json new file mode 100644 index 000000000000..d7d93e22ff64 --- /dev/null +++ b/site/public/v1/software/favro/index.json @@ -0,0 +1,19 @@ +{ + "id": 3281, + "slug": "favro", + "name": "Favro", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q27650831" + ], + "created_at": "2026-07-10T10:12:40.783242", + "updated_at": "2026-07-10T10:12:40.783242", + "url": "/v1/software/favro" +} diff --git a/site/public/v1/software/fawkes/index.json b/site/public/v1/software/fawkes/index.json new file mode 100644 index 000000000000..1d3e25340956 --- /dev/null +++ b/site/public/v1/software/fawkes/index.json @@ -0,0 +1,19 @@ +{ + "id": 3282, + "slug": "fawkes", + "name": "Fawkes", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107070627" + ], + "created_at": "2026-07-10T10:12:40.784229", + "updated_at": "2026-07-10T10:12:40.784229", + "url": "/v1/software/fawkes" +} diff --git a/site/public/v1/software/faxman/index.json b/site/public/v1/software/faxman/index.json new file mode 100644 index 000000000000..52601ffc48f7 --- /dev/null +++ b/site/public/v1/software/faxman/index.json @@ -0,0 +1,19 @@ +{ + "id": 3283, + "slug": "faxman", + "name": "FAXman", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121631730" + ], + "created_at": "2026-07-10T10:12:40.784229", + "updated_at": "2026-07-10T10:12:40.784229", + "url": "/v1/software/faxman" +} diff --git a/site/public/v1/software/fayedu/index.json b/site/public/v1/software/fayedu/index.json new file mode 100644 index 000000000000..3f57b90f56ea --- /dev/null +++ b/site/public/v1/software/fayedu/index.json @@ -0,0 +1,19 @@ +{ + "id": 3284, + "slug": "fayedu", + "name": "FayEDU", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139770422" + ], + "created_at": "2026-07-10T10:12:40.784229", + "updated_at": "2026-07-10T10:12:40.784229", + "url": "/v1/software/fayedu" +} diff --git a/site/public/v1/software/fbb/index.json b/site/public/v1/software/fbb/index.json new file mode 100644 index 000000000000..82df6f887b9d --- /dev/null +++ b/site/public/v1/software/fbb/index.json @@ -0,0 +1,21 @@ +{ + "id": 3285, + "slug": "fbb", + "name": "FBB", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3062993" + ], + "created_at": "2026-07-10T10:12:40.784229", + "updated_at": "2026-07-10T10:12:40.785229", + "url": "/v1/software/fbb" +} diff --git a/site/public/v1/software/fbg/index.json b/site/public/v1/software/fbg/index.json new file mode 100644 index 000000000000..19e181e43c4f --- /dev/null +++ b/site/public/v1/software/fbg/index.json @@ -0,0 +1,19 @@ +{ + "id": 3286, + "slug": "fbg", + "name": "fbg", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065037" + ], + "created_at": "2026-07-10T10:12:40.785229", + "updated_at": "2026-07-10T10:12:40.785229", + "url": "/v1/software/fbg" +} diff --git a/site/public/v1/software/fbgemm/index.json b/site/public/v1/software/fbgemm/index.json new file mode 100644 index 000000000000..5a0030cef365 --- /dev/null +++ b/site/public/v1/software/fbgemm/index.json @@ -0,0 +1,21 @@ +{ + "id": 3287, + "slug": "fbgemm", + "name": "fbgemm", + "release_date": null, + "developers": [ + "Jongsoo Park" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115729437" + ], + "created_at": "2026-07-10T10:12:40.785229", + "updated_at": "2026-07-10T10:12:40.785229", + "url": "/v1/software/fbgemm" +} diff --git a/site/public/v1/software/fbida/index.json b/site/public/v1/software/fbida/index.json new file mode 100644 index 000000000000..b97086822193 --- /dev/null +++ b/site/public/v1/software/fbida/index.json @@ -0,0 +1,21 @@ +{ + "id": 3288, + "slug": "fbida", + "name": "fbida", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "GNU General Public License, version 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974839" + ], + "created_at": "2026-07-10T10:12:40.786227", + "updated_at": "2026-07-10T10:12:40.786227", + "url": "/v1/software/fbida" +} diff --git a/site/public/v1/software/fbless/index.json b/site/public/v1/software/fbless/index.json new file mode 100644 index 000000000000..beb7291e3aa2 --- /dev/null +++ b/site/public/v1/software/fbless/index.json @@ -0,0 +1,19 @@ +{ + "id": 3289, + "slug": "fbless", + "name": "fbless", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974840" + ], + "created_at": "2026-07-10T10:12:40.786227", + "updated_at": "2026-07-10T10:12:40.786227", + "url": "/v1/software/fbless" +} diff --git a/site/public/v1/software/fcitx-sayura/index.json b/site/public/v1/software/fcitx-sayura/index.json new file mode 100644 index 000000000000..aebffeb3bfac --- /dev/null +++ b/site/public/v1/software/fcitx-sayura/index.json @@ -0,0 +1,19 @@ +{ + "id": 3290, + "slug": "fcitx-sayura", + "name": "fcitx-sayura", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28465737" + ], + "created_at": "2026-07-10T10:12:40.786227", + "updated_at": "2026-07-10T10:12:40.786227", + "url": "/v1/software/fcitx-sayura" +} diff --git a/site/public/v1/software/fcl/index.json b/site/public/v1/software/fcl/index.json new file mode 100644 index 000000000000..90008e11f85a --- /dev/null +++ b/site/public/v1/software/fcl/index.json @@ -0,0 +1,23 @@ +{ + "id": 3291, + "slug": "fcl", + "name": "fcl", + "release_date": null, + "developers": [ + "Jeongseok Lee" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "3-clause BSD License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974843" + ], + "created_at": "2026-07-10T10:12:40.786227", + "updated_at": "2026-07-10T10:12:40.786227", + "url": "/v1/software/fcl" +} diff --git a/site/public/v1/software/fcrackzip/index.json b/site/public/v1/software/fcrackzip/index.json new file mode 100644 index 000000000000..a9e3ce1479af --- /dev/null +++ b/site/public/v1/software/fcrackzip/index.json @@ -0,0 +1,19 @@ +{ + "id": 3292, + "slug": "fcrackzip", + "name": "fcrackzip", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62849652" + ], + "created_at": "2026-07-10T10:12:40.787337", + "updated_at": "2026-07-10T10:12:40.787337", + "url": "/v1/software/fcrackzip" +} diff --git a/site/public/v1/software/fdfmerge/index.json b/site/public/v1/software/fdfmerge/index.json new file mode 100644 index 000000000000..84070d41efe7 --- /dev/null +++ b/site/public/v1/software/fdfmerge/index.json @@ -0,0 +1,19 @@ +{ + "id": 3293, + "slug": "fdfmerge", + "name": "FDFMerge", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122705371" + ], + "created_at": "2026-07-10T10:12:40.787337", + "updated_at": "2026-07-10T10:12:40.787337", + "url": "/v1/software/fdfmerge" +} diff --git a/site/public/v1/software/fdmnes/index.json b/site/public/v1/software/fdmnes/index.json new file mode 100644 index 000000000000..8870a9463471 --- /dev/null +++ b/site/public/v1/software/fdmnes/index.json @@ -0,0 +1,19 @@ +{ + "id": 3294, + "slug": "fdmnes", + "name": "FDMNES", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q661137" + ], + "created_at": "2026-07-10T10:12:40.787337", + "updated_at": "2026-07-10T10:12:40.787337", + "url": "/v1/software/fdmnes" +} diff --git a/site/public/v1/software/fdr/index.json b/site/public/v1/software/fdr/index.json new file mode 100644 index 000000000000..0424a5cef233 --- /dev/null +++ b/site/public/v1/software/fdr/index.json @@ -0,0 +1,26 @@ +{ + "id": 3295, + "slug": "fdr", + "name": "FDR", + "release_date": null, + "developers": [ + "University of Oxford" + ], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5425291" + ], + "created_at": "2026-07-10T10:12:40.788333", + "updated_at": "2026-07-10T10:12:40.788333", + "url": "/v1/software/fdr" +} diff --git a/site/public/v1/software/feat/index.json b/site/public/v1/software/feat/index.json new file mode 100644 index 000000000000..3b4f338bd714 --- /dev/null +++ b/site/public/v1/software/feat/index.json @@ -0,0 +1,19 @@ +{ + "id": 3296, + "slug": "feat", + "name": "FEAT", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112074142" + ], + "created_at": "2026-07-10T10:12:40.788333", + "updated_at": "2026-07-10T10:12:40.788333", + "url": "/v1/software/feat" +} diff --git a/site/public/v1/software/featherpad/index.json b/site/public/v1/software/featherpad/index.json new file mode 100644 index 000000000000..815bfc0bb1ad --- /dev/null +++ b/site/public/v1/software/featherpad/index.json @@ -0,0 +1,19 @@ +{ + "id": 3297, + "slug": "featherpad", + "name": "FeatherPad", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q78908533" + ], + "created_at": "2026-07-10T10:12:40.788333", + "updated_at": "2026-07-10T10:12:40.788333", + "url": "/v1/software/featherpad" +} diff --git a/site/public/v1/software/featureflip/index.json b/site/public/v1/software/featureflip/index.json new file mode 100644 index 000000000000..deb883ee174d --- /dev/null +++ b/site/public/v1/software/featureflip/index.json @@ -0,0 +1,23 @@ +{ + "id": 3298, + "slug": "featureflip", + "name": "Featureflip", + "release_date": null, + "developers": [ + "Canopy Labs" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139003903" + ], + "created_at": "2026-07-10T10:12:40.789231", + "updated_at": "2026-07-10T10:12:40.789231", + "url": "/v1/software/featureflip" +} diff --git a/site/public/v1/software/fedena/index.json b/site/public/v1/software/fedena/index.json new file mode 100644 index 000000000000..a8e9b7a22e97 --- /dev/null +++ b/site/public/v1/software/fedena/index.json @@ -0,0 +1,23 @@ +{ + "id": 3299, + "slug": "fedena", + "name": "Fedena", + "release_date": null, + "developers": [ + "Foradian" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Apache License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5439928" + ], + "created_at": "2026-07-10T10:12:40.789231", + "updated_at": "2026-07-10T10:12:40.789231", + "url": "/v1/software/fedena" +} diff --git a/site/public/v1/software/federated-learning-of-cohorts/index.json b/site/public/v1/software/federated-learning-of-cohorts/index.json new file mode 100644 index 000000000000..fc4a83b94a4d --- /dev/null +++ b/site/public/v1/software/federated-learning-of-cohorts/index.json @@ -0,0 +1,22 @@ +{ + "id": 3300, + "slug": "federated-learning-of-cohorts", + "name": "Federated Learning of Cohorts", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "3-clause BSD License", + "W3C Software License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106522497" + ], + "created_at": "2026-07-10T10:12:40.789231", + "updated_at": "2026-07-10T10:12:40.789231", + "url": "/v1/software/federated-learning-of-cohorts" +} diff --git a/site/public/v1/software/fedibird/index.json b/site/public/v1/software/fedibird/index.json new file mode 100644 index 000000000000..e65127898d8f --- /dev/null +++ b/site/public/v1/software/fedibird/index.json @@ -0,0 +1,19 @@ +{ + "id": 3301, + "slug": "fedibird", + "name": "Fedibird", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124099239" + ], + "created_at": "2026-07-10T10:12:40.790309", + "updated_at": "2026-07-10T10:12:40.790309", + "url": "/v1/software/fedibird" +} diff --git a/site/public/v1/software/feed-over-e-mail/index.json b/site/public/v1/software/feed-over-e-mail/index.json new file mode 100644 index 000000000000..c4320ca7d3e4 --- /dev/null +++ b/site/public/v1/software/feed-over-e-mail/index.json @@ -0,0 +1,19 @@ +{ + "id": 3302, + "slug": "feed-over-e-mail", + "name": "Feed Over E-mail", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10847154" + ], + "created_at": "2026-07-10T10:12:40.790309", + "updated_at": "2026-07-10T10:12:40.790309", + "url": "/v1/software/feed-over-e-mail" +} diff --git a/site/public/v1/software/feed-viewer/index.json b/site/public/v1/software/feed-viewer/index.json new file mode 100644 index 000000000000..936a11c47d4e --- /dev/null +++ b/site/public/v1/software/feed-viewer/index.json @@ -0,0 +1,21 @@ +{ + "id": 3303, + "slug": "feed-viewer", + "name": "Feed Viewer", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18150680" + ], + "created_at": "2026-07-10T10:12:40.790309", + "updated_at": "2026-07-10T10:12:40.790309", + "url": "/v1/software/feed-viewer" +} diff --git a/site/public/v1/software/feedback-hub/index.json b/site/public/v1/software/feedback-hub/index.json new file mode 100644 index 000000000000..17cf0b291a5a --- /dev/null +++ b/site/public/v1/software/feedback-hub/index.json @@ -0,0 +1,19 @@ +{ + "id": 3304, + "slug": "feedback-hub", + "name": "Feedback Hub", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28448991" + ], + "created_at": "2026-07-10T10:12:40.791292", + "updated_at": "2026-07-10T10:12:40.791292", + "url": "/v1/software/feedback-hub" +} diff --git a/site/public/v1/software/feedity/index.json b/site/public/v1/software/feedity/index.json new file mode 100644 index 000000000000..7c7fa991a9f0 --- /dev/null +++ b/site/public/v1/software/feedity/index.json @@ -0,0 +1,19 @@ +{ + "id": 3305, + "slug": "feedity", + "name": "Feedity", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084958" + ], + "created_at": "2026-07-10T10:12:40.791292", + "updated_at": "2026-07-10T10:12:40.791292", + "url": "/v1/software/feedity" +} diff --git a/site/public/v1/software/feff/index.json b/site/public/v1/software/feff/index.json new file mode 100644 index 000000000000..93a5cde09cf3 --- /dev/null +++ b/site/public/v1/software/feff/index.json @@ -0,0 +1,21 @@ +{ + "id": 3306, + "slug": "feff", + "name": "FEFF", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Fortran" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5425326" + ], + "created_at": "2026-07-10T10:12:40.791292", + "updated_at": "2026-07-10T10:12:40.791292", + "url": "/v1/software/feff" +} diff --git a/site/public/v1/software/feishu/index.json b/site/public/v1/software/feishu/index.json new file mode 100644 index 000000000000..290de80950d6 --- /dev/null +++ b/site/public/v1/software/feishu/index.json @@ -0,0 +1,19 @@ +{ + "id": 3307, + "slug": "feishu", + "name": "Feishu", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109342779" + ], + "created_at": "2026-07-10T10:12:40.792272", + "updated_at": "2026-07-10T10:12:40.792272", + "url": "/v1/software/feishu" +} diff --git a/site/public/v1/software/feko/index.json b/site/public/v1/software/feko/index.json new file mode 100644 index 000000000000..85400890b623 --- /dev/null +++ b/site/public/v1/software/feko/index.json @@ -0,0 +1,23 @@ +{ + "id": 3308, + "slug": "feko", + "name": "FEKO", + "release_date": null, + "developers": [ + "Altair Engineering" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5425337" + ], + "created_at": "2026-07-10T10:12:40.792272", + "updated_at": "2026-07-10T10:12:40.792272", + "url": "/v1/software/feko" +} diff --git a/site/public/v1/software/feldpartitur/index.json b/site/public/v1/software/feldpartitur/index.json new file mode 100644 index 000000000000..8fc3a511f76f --- /dev/null +++ b/site/public/v1/software/feldpartitur/index.json @@ -0,0 +1,24 @@ +{ + "id": 3309, + "slug": "feldpartitur", + "name": "Feldpartitur", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105076385" + ], + "created_at": "2026-07-10T10:12:40.792272", + "updated_at": "2026-07-10T10:12:40.792272", + "url": "/v1/software/feldpartitur" +} diff --git a/site/public/v1/software/felix/index.json b/site/public/v1/software/felix/index.json new file mode 100644 index 000000000000..9ec95a4d2f90 --- /dev/null +++ b/site/public/v1/software/felix/index.json @@ -0,0 +1,21 @@ +{ + "id": 3310, + "slug": "felix", + "name": "Felix", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q24897315" + ], + "created_at": "2026-07-10T10:12:40.792272", + "updated_at": "2026-07-10T10:12:40.792272", + "url": "/v1/software/felix" +} diff --git a/site/public/v1/software/felsius/index.json b/site/public/v1/software/felsius/index.json new file mode 100644 index 000000000000..a25afe41ed39 --- /dev/null +++ b/site/public/v1/software/felsius/index.json @@ -0,0 +1,19 @@ +{ + "id": 3311, + "slug": "felsius", + "name": "Felsius", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138497112" + ], + "created_at": "2026-07-10T10:12:40.793287", + "updated_at": "2026-07-10T10:12:40.793287", + "url": "/v1/software/felsius" +} diff --git a/site/public/v1/software/felt/index.json b/site/public/v1/software/felt/index.json new file mode 100644 index 000000000000..9d6a917415f4 --- /dev/null +++ b/site/public/v1/software/felt/index.json @@ -0,0 +1,19 @@ +{ + "id": 3312, + "slug": "felt", + "name": "Felt", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136524054" + ], + "created_at": "2026-07-10T10:12:40.793287", + "updated_at": "2026-07-10T10:12:40.793287", + "url": "/v1/software/felt" +} diff --git a/site/public/v1/software/femorph/index.json b/site/public/v1/software/femorph/index.json new file mode 100644 index 000000000000..3653db2340d4 --- /dev/null +++ b/site/public/v1/software/femorph/index.json @@ -0,0 +1,21 @@ +{ + "id": 3313, + "slug": "femorph", + "name": "FeMorph", + "release_date": null, + "developers": [ + "Jeff Brown" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122311157" + ], + "created_at": "2026-07-10T10:12:40.793287", + "updated_at": "2026-07-10T10:12:40.793287", + "url": "/v1/software/femorph" +} diff --git a/site/public/v1/software/femtechnet/index.json b/site/public/v1/software/femtechnet/index.json new file mode 100644 index 000000000000..6dffef4a170d --- /dev/null +++ b/site/public/v1/software/femtechnet/index.json @@ -0,0 +1,19 @@ +{ + "id": 3314, + "slug": "femtechnet", + "name": "FemTechNet", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16235118" + ], + "created_at": "2026-07-10T10:12:40.794301", + "updated_at": "2026-07-10T10:12:40.794301", + "url": "/v1/software/femtechnet" +} diff --git a/site/public/v1/software/feng-office-professional-edition/index.json b/site/public/v1/software/feng-office-professional-edition/index.json new file mode 100644 index 000000000000..59bc30b98373 --- /dev/null +++ b/site/public/v1/software/feng-office-professional-edition/index.json @@ -0,0 +1,21 @@ +{ + "id": 3315, + "slug": "feng-office-professional-edition", + "name": "Feng Office Professional Edition", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28062278" + ], + "created_at": "2026-07-10T10:12:40.794301", + "updated_at": "2026-07-10T10:12:40.794301", + "url": "/v1/software/feng-office-professional-edition" +} diff --git a/site/public/v1/software/fesom/index.json b/site/public/v1/software/fesom/index.json new file mode 100644 index 000000000000..c91dfcf299e1 --- /dev/null +++ b/site/public/v1/software/fesom/index.json @@ -0,0 +1,23 @@ +{ + "id": 3316, + "slug": "fesom", + "name": "FESOM", + "release_date": null, + "developers": [ + "Alfred Wegener Institute for Polar and Marine Research" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Fortran" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28231742" + ], + "created_at": "2026-07-10T10:12:40.794301", + "updated_at": "2026-07-10T10:12:40.794301", + "url": "/v1/software/fesom" +} diff --git a/site/public/v1/software/fetion/index.json b/site/public/v1/software/fetion/index.json new file mode 100644 index 000000000000..d61e4051fc25 --- /dev/null +++ b/site/public/v1/software/fetion/index.json @@ -0,0 +1,19 @@ +{ + "id": 3317, + "slug": "fetion", + "name": "Fetion", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5445958" + ], + "created_at": "2026-07-10T10:12:40.795307", + "updated_at": "2026-07-10T10:12:40.795307", + "url": "/v1/software/fetion" +} diff --git a/site/public/v1/software/fez/index.json b/site/public/v1/software/fez/index.json new file mode 100644 index 000000000000..0d829514b758 --- /dev/null +++ b/site/public/v1/software/fez/index.json @@ -0,0 +1,19 @@ +{ + "id": 3318, + "slug": "fez", + "name": "FEZ", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5425402" + ], + "created_at": "2026-07-10T10:12:40.795307", + "updated_at": "2026-07-10T10:12:40.795307", + "url": "/v1/software/fez" +} diff --git a/site/public/v1/software/fflogs/index.json b/site/public/v1/software/fflogs/index.json new file mode 100644 index 000000000000..d064a5b6ab75 --- /dev/null +++ b/site/public/v1/software/fflogs/index.json @@ -0,0 +1,21 @@ +{ + "id": 3319, + "slug": "fflogs", + "name": "fflogs", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136522463" + ], + "created_at": "2026-07-10T10:12:40.795307", + "updated_at": "2026-07-10T10:12:40.795307", + "url": "/v1/software/fflogs" +} diff --git a/site/public/v1/software/ffmpeg2theora/index.json b/site/public/v1/software/ffmpeg2theora/index.json new file mode 100644 index 000000000000..a23a2126a873 --- /dev/null +++ b/site/public/v1/software/ffmpeg2theora/index.json @@ -0,0 +1,21 @@ +{ + "id": 3320, + "slug": "ffmpeg2theora", + "name": "Ffmpeg2theora", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Unix-like operating system" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10847163" + ], + "created_at": "2026-07-10T10:12:40.796305", + "updated_at": "2026-07-10T10:12:40.796305", + "url": "/v1/software/ffmpeg2theora" +} diff --git a/site/public/v1/software/ffmpegsource/index.json b/site/public/v1/software/ffmpegsource/index.json new file mode 100644 index 000000000000..5a2dee0f44f2 --- /dev/null +++ b/site/public/v1/software/ffmpegsource/index.json @@ -0,0 +1,21 @@ +{ + "id": 3321, + "slug": "ffmpegsource", + "name": "ffmpegsource", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974844" + ], + "created_at": "2026-07-10T10:12:40.796305", + "updated_at": "2026-07-10T10:12:40.796305", + "url": "/v1/software/ffmpegsource" +} diff --git a/site/public/v1/software/fftpack/index.json b/site/public/v1/software/fftpack/index.json new file mode 100644 index 000000000000..88bec9ac59d1 --- /dev/null +++ b/site/public/v1/software/fftpack/index.json @@ -0,0 +1,19 @@ +{ + "id": 3322, + "slug": "fftpack", + "name": "FFTPACK", + "release_date": "1985-04-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5425436" + ], + "created_at": "2026-07-10T10:12:40.796305", + "updated_at": "2026-07-10T10:12:40.796305", + "url": "/v1/software/fftpack" +} diff --git a/site/public/v1/software/fglrx/index.json b/site/public/v1/software/fglrx/index.json new file mode 100644 index 000000000000..c5a7b2cfc1fc --- /dev/null +++ b/site/public/v1/software/fglrx/index.json @@ -0,0 +1,23 @@ +{ + "id": 3323, + "slug": "fglrx", + "name": "fglrx", + "release_date": null, + "developers": [ + "AMD" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "end-user license agreement" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1936343" + ], + "created_at": "2026-07-10T10:12:40.797305", + "updated_at": "2026-07-10T10:12:40.797305", + "url": "/v1/software/fglrx" +} diff --git a/site/public/v1/software/fhem/index.json b/site/public/v1/software/fhem/index.json new file mode 100644 index 000000000000..822cb1310b40 --- /dev/null +++ b/site/public/v1/software/fhem/index.json @@ -0,0 +1,21 @@ +{ + "id": 3324, + "slug": "fhem", + "name": "FHEM", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "GNU General Public License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1388254" + ], + "created_at": "2026-07-10T10:12:40.797305", + "updated_at": "2026-07-10T10:12:40.797305", + "url": "/v1/software/fhem" +} diff --git a/site/public/v1/software/fhfs-file-server/index.json b/site/public/v1/software/fhfs-file-server/index.json new file mode 100644 index 000000000000..39ac62342827 --- /dev/null +++ b/site/public/v1/software/fhfs-file-server/index.json @@ -0,0 +1,19 @@ +{ + "id": 3325, + "slug": "fhfs-file-server", + "name": "FHFS (File Server)", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q20829740" + ], + "created_at": "2026-07-10T10:12:40.797305", + "updated_at": "2026-07-10T10:12:40.797305", + "url": "/v1/software/fhfs-file-server" +} diff --git a/site/public/v1/software/fibre-channel-utility/index.json b/site/public/v1/software/fibre-channel-utility/index.json new file mode 100644 index 000000000000..9b8e2e69b62c --- /dev/null +++ b/site/public/v1/software/fibre-channel-utility/index.json @@ -0,0 +1,21 @@ +{ + "id": 3326, + "slug": "fibre-channel-utility", + "name": "Fibre Channel Utility", + "release_date": null, + "developers": [ + "Apple Inc." + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3744487" + ], + "created_at": "2026-07-10T10:12:40.802391", + "updated_at": "2026-07-10T10:12:40.802391", + "url": "/v1/software/fibre-channel-utility" +} diff --git a/site/public/v1/software/fico-xpress/index.json b/site/public/v1/software/fico-xpress/index.json new file mode 100644 index 000000000000..f1ed666e0225 --- /dev/null +++ b/site/public/v1/software/fico-xpress/index.json @@ -0,0 +1,21 @@ +{ + "id": 3327, + "slug": "fico-xpress", + "name": "FICO Xpress", + "release_date": null, + "developers": [ + "FICO" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22908372" + ], + "created_at": "2026-07-10T10:12:40.808390", + "updated_at": "2026-07-10T10:12:40.808390", + "url": "/v1/software/fico-xpress" +} diff --git a/site/public/v1/software/fidyst/index.json b/site/public/v1/software/fidyst/index.json new file mode 100644 index 000000000000..2d049165cef6 --- /dev/null +++ b/site/public/v1/software/fidyst/index.json @@ -0,0 +1,19 @@ +{ + "id": 3328, + "slug": "fidyst", + "name": "FIDYST", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q29044169" + ], + "created_at": "2026-07-10T10:12:40.813061", + "updated_at": "2026-07-10T10:12:40.813061", + "url": "/v1/software/fidyst" +} diff --git a/site/public/v1/software/field-trip/index.json b/site/public/v1/software/field-trip/index.json new file mode 100644 index 000000000000..d61f40973d29 --- /dev/null +++ b/site/public/v1/software/field-trip/index.json @@ -0,0 +1,19 @@ +{ + "id": 3329, + "slug": "field-trip", + "name": "Field Trip", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q56276775" + ], + "created_at": "2026-07-10T10:12:40.816978", + "updated_at": "2026-07-10T10:12:40.816978", + "url": "/v1/software/field-trip" +} diff --git a/site/public/v1/software/fieldworks/index.json b/site/public/v1/software/fieldworks/index.json new file mode 100644 index 000000000000..3d9a550c8dcc --- /dev/null +++ b/site/public/v1/software/fieldworks/index.json @@ -0,0 +1,21 @@ +{ + "id": 3330, + "slug": "fieldworks", + "name": "FieldWorks", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "GNU Lesser General Public License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084959" + ], + "created_at": "2026-07-10T10:12:40.819088", + "updated_at": "2026-07-10T10:12:40.819088", + "url": "/v1/software/fieldworks" +} diff --git a/site/public/v1/software/fifa-transfer-matching-system/index.json b/site/public/v1/software/fifa-transfer-matching-system/index.json new file mode 100644 index 000000000000..dc0a51617a42 --- /dev/null +++ b/site/public/v1/software/fifa-transfer-matching-system/index.json @@ -0,0 +1,19 @@ +{ + "id": 3331, + "slug": "fifa-transfer-matching-system", + "name": "FIFA Transfer Matching System", + "release_date": "2010-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q20807509" + ], + "created_at": "2026-07-10T10:12:40.822133", + "updated_at": "2026-07-10T10:12:40.822133", + "url": "/v1/software/fifa-transfer-matching-system" +} diff --git a/site/public/v1/software/fightcade/index.json b/site/public/v1/software/fightcade/index.json new file mode 100644 index 000000000000..7788eafc5a8a --- /dev/null +++ b/site/public/v1/software/fightcade/index.json @@ -0,0 +1,19 @@ +{ + "id": 3332, + "slug": "fightcade", + "name": "Fightcade", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q48967392" + ], + "created_at": "2026-07-10T10:12:40.824086", + "updated_at": "2026-07-10T10:12:40.824086", + "url": "/v1/software/fightcade" +} diff --git a/site/public/v1/software/figleaf/index.json b/site/public/v1/software/figleaf/index.json new file mode 100644 index 000000000000..fcb806682cae --- /dev/null +++ b/site/public/v1/software/figleaf/index.json @@ -0,0 +1,19 @@ +{ + "id": 3333, + "slug": "figleaf", + "name": "figleaf", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065346" + ], + "created_at": "2026-07-10T10:12:40.827104", + "updated_at": "2026-07-10T10:12:40.827104", + "url": "/v1/software/figleaf" +} diff --git a/site/public/v1/software/filament-audio-software/index.json b/site/public/v1/software/filament-audio-software/index.json new file mode 100644 index 000000000000..e51267043d38 --- /dev/null +++ b/site/public/v1/software/filament-audio-software/index.json @@ -0,0 +1,24 @@ +{ + "id": 3334, + "slug": "filament-audio-software", + "name": "Filament (audio software)", + "release_date": null, + "developers": [ + "Forma Labs Audio" + ], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138796469" + ], + "created_at": "2026-07-10T10:12:40.828039", + "updated_at": "2026-07-10T10:12:40.828039", + "url": "/v1/software/filament-audio-software" +} diff --git a/site/public/v1/software/filament-record-navigation/index.json b/site/public/v1/software/filament-record-navigation/index.json new file mode 100644 index 000000000000..efdaea3808d5 --- /dev/null +++ b/site/public/v1/software/filament-record-navigation/index.json @@ -0,0 +1,31 @@ +{ + "id": 3335, + "slug": "filament-record-navigation", + "name": "Filament Record Navigation", + "release_date": "2025-05-27", + "developers": [ + "Nben Malla" + ], + "publishers": [ + "Nben Malla" + ], + "operating_systems": [ + "cross-platform", + "macOS", + "Microsoft Windows" + ], + "programming_languages": [ + "PHP" + ], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139569681" + ], + "created_at": "2026-07-10T10:12:40.828039", + "updated_at": "2026-07-10T10:12:40.828039", + "url": "/v1/software/filament-record-navigation" +} diff --git a/site/public/v1/software/file-explorer/index.json b/site/public/v1/software/file-explorer/index.json new file mode 100644 index 000000000000..53f3b6e9bad5 --- /dev/null +++ b/site/public/v1/software/file-explorer/index.json @@ -0,0 +1,26 @@ +{ + "id": 3336, + "slug": "file-explorer", + "name": "File Explorer", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [ + "file manager", + "operating system shell" + ], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q196305" + ], + "created_at": "2026-07-10T10:12:40.829048", + "updated_at": "2026-07-10T10:12:40.829048", + "url": "/v1/software/file-explorer" +} diff --git a/site/public/v1/software/file2text/index.json b/site/public/v1/software/file2text/index.json new file mode 100644 index 000000000000..e054fd911726 --- /dev/null +++ b/site/public/v1/software/file2text/index.json @@ -0,0 +1,23 @@ +{ + "id": 3337, + "slug": "file2text", + "name": "File2Text", + "release_date": null, + "developers": [ + "C. M. Leal Ltda" + ], + "publishers": [], + "operating_systems": [ + "macOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138472618" + ], + "created_at": "2026-07-10T10:12:40.830052", + "updated_at": "2026-07-10T10:12:40.830052", + "url": "/v1/software/file2text" +} diff --git a/site/public/v1/software/filebot/index.json b/site/public/v1/software/filebot/index.json new file mode 100644 index 000000000000..ccd93c85ab67 --- /dev/null +++ b/site/public/v1/software/filebot/index.json @@ -0,0 +1,25 @@ +{ + "id": 3338, + "slug": "filebot", + "name": "FileBot", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [ + "Java", + "Apache Groovy" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11968825" + ], + "created_at": "2026-07-10T10:12:40.831030", + "updated_at": "2026-07-10T10:12:40.831030", + "url": "/v1/software/filebot" +} diff --git a/site/public/v1/software/filecamp/index.json b/site/public/v1/software/filecamp/index.json new file mode 100644 index 000000000000..ad9fa9374d0a --- /dev/null +++ b/site/public/v1/software/filecamp/index.json @@ -0,0 +1,19 @@ +{ + "id": 3339, + "slug": "filecamp", + "name": "Filecamp", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084960" + ], + "created_at": "2026-07-10T10:12:40.831030", + "updated_at": "2026-07-10T10:12:40.831030", + "url": "/v1/software/filecamp" +} diff --git a/site/public/v1/software/filecloud/index.json b/site/public/v1/software/filecloud/index.json new file mode 100644 index 000000000000..bf966fbe8d49 --- /dev/null +++ b/site/public/v1/software/filecloud/index.json @@ -0,0 +1,19 @@ +{ + "id": 3340, + "slug": "filecloud", + "name": "FileCloud", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135926561" + ], + "created_at": "2026-07-10T10:12:40.832046", + "updated_at": "2026-07-10T10:12:40.832046", + "url": "/v1/software/filecloud" +} diff --git a/site/public/v1/software/filecoin/index.json b/site/public/v1/software/filecoin/index.json new file mode 100644 index 000000000000..72073fac5eb6 --- /dev/null +++ b/site/public/v1/software/filecoin/index.json @@ -0,0 +1,21 @@ +{ + "id": 3341, + "slug": "filecoin", + "name": "Filecoin", + "release_date": null, + "developers": [ + "Protocol Labs" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q39048590" + ], + "created_at": "2026-07-10T10:12:40.833055", + "updated_at": "2026-07-10T10:12:40.833055", + "url": "/v1/software/filecoin" +} diff --git a/site/public/v1/software/filehippo-update-checker/index.json b/site/public/v1/software/filehippo-update-checker/index.json new file mode 100644 index 000000000000..74ca332dbdec --- /dev/null +++ b/site/public/v1/software/filehippo-update-checker/index.json @@ -0,0 +1,23 @@ +{ + "id": 3342, + "slug": "filehippo-update-checker", + "name": "FileHippo Update Checker", + "release_date": null, + "developers": [ + "FileHippo" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16636209" + ], + "created_at": "2026-07-10T10:12:40.834084", + "updated_at": "2026-07-10T10:12:40.834084", + "url": "/v1/software/filehippo-update-checker" +} diff --git a/site/public/v1/software/filemail/index.json b/site/public/v1/software/filemail/index.json new file mode 100644 index 000000000000..7b257dfd9f98 --- /dev/null +++ b/site/public/v1/software/filemail/index.json @@ -0,0 +1,21 @@ +{ + "id": 3343, + "slug": "filemail", + "name": "Filemail", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3071777" + ], + "created_at": "2026-07-10T10:12:40.834084", + "updated_at": "2026-07-10T10:12:40.834084", + "url": "/v1/software/filemail" +} diff --git a/site/public/v1/software/filemerlin/index.json b/site/public/v1/software/filemerlin/index.json new file mode 100644 index 000000000000..9444d6ed1a8d --- /dev/null +++ b/site/public/v1/software/filemerlin/index.json @@ -0,0 +1,19 @@ +{ + "id": 3344, + "slug": "filemerlin", + "name": "FileMerlin", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q83276375" + ], + "created_at": "2026-07-10T10:12:40.835101", + "updated_at": "2026-07-10T10:12:40.835101", + "url": "/v1/software/filemerlin" +} diff --git a/site/public/v1/software/filetopia/index.json b/site/public/v1/software/filetopia/index.json new file mode 100644 index 000000000000..8da9f729176a --- /dev/null +++ b/site/public/v1/software/filetopia/index.json @@ -0,0 +1,22 @@ +{ + "id": 3345, + "slug": "filetopia", + "name": "Filetopia", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "proprietary license", + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q265548" + ], + "created_at": "2026-07-10T10:12:40.835978", + "updated_at": "2026-07-10T10:12:40.835978", + "url": "/v1/software/filetopia" +} diff --git a/site/public/v1/software/filio/index.json b/site/public/v1/software/filio/index.json new file mode 100644 index 000000000000..11372f131a53 --- /dev/null +++ b/site/public/v1/software/filio/index.json @@ -0,0 +1,23 @@ +{ + "id": 3346, + "slug": "filio", + "name": "Filio", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "iOS", + "Mac operating system", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137972910" + ], + "created_at": "2026-07-10T10:12:40.835978", + "updated_at": "2026-07-10T10:12:40.835978", + "url": "/v1/software/filio" +} diff --git a/site/public/v1/software/film4od/index.json b/site/public/v1/software/film4od/index.json new file mode 100644 index 000000000000..16402a5110c3 --- /dev/null +++ b/site/public/v1/software/film4od/index.json @@ -0,0 +1,21 @@ +{ + "id": 3347, + "slug": "film4od", + "name": "Film4oD", + "release_date": "2010-11-01", + "developers": [ + "FilmFlex" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5448887" + ], + "created_at": "2026-07-10T10:12:40.835978", + "updated_at": "2026-07-10T10:12:40.835978", + "url": "/v1/software/film4od" +} diff --git a/site/public/v1/software/filterbloom/index.json b/site/public/v1/software/filterbloom/index.json new file mode 100644 index 000000000000..1e4eec35cfd7 --- /dev/null +++ b/site/public/v1/software/filterbloom/index.json @@ -0,0 +1,26 @@ +{ + "id": 3348, + "slug": "filterbloom", + "name": "Filterbloom", + "release_date": null, + "developers": [ + "Streamfog Inc." + ], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138948219" + ], + "created_at": "2026-07-10T10:12:40.836976", + "updated_at": "2026-07-10T10:12:40.836976", + "url": "/v1/software/filterbloom" +} diff --git a/site/public/v1/software/finacle/index.json b/site/public/v1/software/finacle/index.json new file mode 100644 index 000000000000..757856cfbd23 --- /dev/null +++ b/site/public/v1/software/finacle/index.json @@ -0,0 +1,23 @@ +{ + "id": 3349, + "slug": "finacle", + "name": "Finacle", + "release_date": null, + "developers": [ + "Infosys" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Java" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5449339" + ], + "created_at": "2026-07-10T10:12:40.836976", + "updated_at": "2026-07-10T10:12:40.836976", + "url": "/v1/software/finacle" +} diff --git a/site/public/v1/software/final-scratch/index.json b/site/public/v1/software/final-scratch/index.json new file mode 100644 index 000000000000..2e52d0726226 --- /dev/null +++ b/site/public/v1/software/final-scratch/index.json @@ -0,0 +1,19 @@ +{ + "id": 3350, + "slug": "final-scratch", + "name": "Final Scratch", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q834907" + ], + "created_at": "2026-07-10T10:12:40.837977", + "updated_at": "2026-07-10T10:12:40.837977", + "url": "/v1/software/final-scratch" +} diff --git a/site/public/v1/software/finale/index.json b/site/public/v1/software/finale/index.json new file mode 100644 index 000000000000..03c5abda5da2 --- /dev/null +++ b/site/public/v1/software/finale/index.json @@ -0,0 +1,19 @@ +{ + "id": 3351, + "slug": "finale", + "name": "Finale", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084961" + ], + "created_at": "2026-07-10T10:12:40.837977", + "updated_at": "2026-07-10T10:12:40.837977", + "url": "/v1/software/finale" +} diff --git a/site/public/v1/software/finalrender/index.json b/site/public/v1/software/finalrender/index.json new file mode 100644 index 000000000000..bb200052b5ed --- /dev/null +++ b/site/public/v1/software/finalrender/index.json @@ -0,0 +1,19 @@ +{ + "id": 3352, + "slug": "finalrender", + "name": "finalRender", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3072340" + ], + "created_at": "2026-07-10T10:12:40.838977", + "updated_at": "2026-07-10T10:12:40.838977", + "url": "/v1/software/finalrender" +} diff --git a/site/public/v1/software/finco/index.json b/site/public/v1/software/finco/index.json new file mode 100644 index 000000000000..1486a01d0f34 --- /dev/null +++ b/site/public/v1/software/finco/index.json @@ -0,0 +1,21 @@ +{ + "id": 3353, + "slug": "finco", + "name": "Finco", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138809062" + ], + "created_at": "2026-07-10T10:12:40.838977", + "updated_at": "2026-07-10T10:12:40.838977", + "url": "/v1/software/finco" +} diff --git a/site/public/v1/software/find-my-device/index.json b/site/public/v1/software/find-my-device/index.json new file mode 100644 index 000000000000..99a4bcfe767d --- /dev/null +++ b/site/public/v1/software/find-my-device/index.json @@ -0,0 +1,21 @@ +{ + "id": 3354, + "slug": "find-my-device", + "name": "Find My Device", + "release_date": null, + "developers": [ + "Google" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17988580" + ], + "created_at": "2026-07-10T10:12:40.838977", + "updated_at": "2026-07-10T10:12:40.838977", + "url": "/v1/software/find-my-device" +} diff --git a/site/public/v1/software/finding-popular-hashtags/index.json b/site/public/v1/software/finding-popular-hashtags/index.json new file mode 100644 index 000000000000..c41e8e367f25 --- /dev/null +++ b/site/public/v1/software/finding-popular-hashtags/index.json @@ -0,0 +1,19 @@ +{ + "id": 3355, + "slug": "finding-popular-hashtags", + "name": "Finding Popular Hashtags", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084962" + ], + "created_at": "2026-07-10T10:12:40.840034", + "updated_at": "2026-07-10T10:12:40.840034", + "url": "/v1/software/finding-popular-hashtags" +} diff --git a/site/public/v1/software/fine-mep/index.json b/site/public/v1/software/fine-mep/index.json new file mode 100644 index 000000000000..02f431e3d955 --- /dev/null +++ b/site/public/v1/software/fine-mep/index.json @@ -0,0 +1,19 @@ +{ + "id": 3356, + "slug": "fine-mep", + "name": "FINE MEP", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5425832" + ], + "created_at": "2026-07-10T10:12:40.840034", + "updated_at": "2026-07-10T10:12:40.840034", + "url": "/v1/software/fine-mep" +} diff --git a/site/public/v1/software/finereader-pdf/index.json b/site/public/v1/software/finereader-pdf/index.json new file mode 100644 index 000000000000..c6cd8b28e991 --- /dev/null +++ b/site/public/v1/software/finereader-pdf/index.json @@ -0,0 +1,26 @@ +{ + "id": 3357, + "slug": "finereader-pdf", + "name": "FineReader PDF", + "release_date": null, + "developers": [ + "ABBYY" + ], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1416880" + ], + "created_at": "2026-07-10T10:12:40.840034", + "updated_at": "2026-07-10T10:12:40.840034", + "url": "/v1/software/finereader-pdf" +} diff --git a/site/public/v1/software/fing/index.json b/site/public/v1/software/fing/index.json new file mode 100644 index 000000000000..a3eb604f4435 --- /dev/null +++ b/site/public/v1/software/fing/index.json @@ -0,0 +1,23 @@ +{ + "id": 3358, + "slug": "fing", + "name": "Fing", + "release_date": "2010-01-01", + "developers": [ + "Fing Limited" + ], + "publishers": [ + "Fing Limited" + ], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3072574" + ], + "created_at": "2026-07-10T10:12:40.840034", + "updated_at": "2026-07-10T10:12:40.840034", + "url": "/v1/software/fing" +} diff --git a/site/public/v1/software/finger-on-the-app/index.json b/site/public/v1/software/finger-on-the-app/index.json new file mode 100644 index 000000000000..8f208e6444cb --- /dev/null +++ b/site/public/v1/software/finger-on-the-app/index.json @@ -0,0 +1,19 @@ +{ + "id": 3359, + "slug": "finger-on-the-app", + "name": "Finger on the App", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131353840" + ], + "created_at": "2026-07-10T10:12:40.841043", + "updated_at": "2026-07-10T10:12:40.841043", + "url": "/v1/software/finger-on-the-app" +} diff --git a/site/public/v1/software/finnish-media-scrapers/index.json b/site/public/v1/software/finnish-media-scrapers/index.json new file mode 100644 index 000000000000..e0f7fd5a04e6 --- /dev/null +++ b/site/public/v1/software/finnish-media-scrapers/index.json @@ -0,0 +1,19 @@ +{ + "id": 3360, + "slug": "finnish-media-scrapers", + "name": "Finnish Media Scrapers", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084963" + ], + "created_at": "2026-07-10T10:12:40.841043", + "updated_at": "2026-07-10T10:12:40.841043", + "url": "/v1/software/finnish-media-scrapers" +} diff --git a/site/public/v1/software/finnmorf/index.json b/site/public/v1/software/finnmorf/index.json new file mode 100644 index 000000000000..8edc77e73299 --- /dev/null +++ b/site/public/v1/software/finnmorf/index.json @@ -0,0 +1,19 @@ +{ + "id": 3361, + "slug": "finnmorf", + "name": "FINNMORF", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084964" + ], + "created_at": "2026-07-10T10:12:40.841043", + "updated_at": "2026-07-10T10:12:40.841043", + "url": "/v1/software/finnmorf" +} diff --git a/site/public/v1/software/finoptory/index.json b/site/public/v1/software/finoptory/index.json new file mode 100644 index 000000000000..634dc37d7888 --- /dev/null +++ b/site/public/v1/software/finoptory/index.json @@ -0,0 +1,21 @@ +{ + "id": 3362, + "slug": "finoptory", + "name": "FinOptory", + "release_date": null, + "developers": [ + "Green Dopamine GmbH" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139862254" + ], + "created_at": "2026-07-10T10:12:40.842047", + "updated_at": "2026-07-10T10:12:40.842047", + "url": "/v1/software/finoptory" +} diff --git a/site/public/v1/software/fio/index.json b/site/public/v1/software/fio/index.json new file mode 100644 index 000000000000..aae14100c37d --- /dev/null +++ b/site/public/v1/software/fio/index.json @@ -0,0 +1,19 @@ +{ + "id": 3363, + "slug": "fio", + "name": "fio", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60918490" + ], + "created_at": "2026-07-10T10:12:40.842047", + "updated_at": "2026-07-10T10:12:40.842047", + "url": "/v1/software/fio" +} diff --git a/site/public/v1/software/fiona/index.json b/site/public/v1/software/fiona/index.json new file mode 100644 index 000000000000..14dddfedf3dc --- /dev/null +++ b/site/public/v1/software/fiona/index.json @@ -0,0 +1,21 @@ +{ + "id": 3364, + "slug": "fiona", + "name": "Fiona", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "3-clause BSD License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974845" + ], + "created_at": "2026-07-10T10:12:40.842047", + "updated_at": "2026-07-10T10:12:40.842047", + "url": "/v1/software/fiona" +} diff --git a/site/public/v1/software/fips/index.json b/site/public/v1/software/fips/index.json new file mode 100644 index 000000000000..3ecb3aeefce8 --- /dev/null +++ b/site/public/v1/software/fips/index.json @@ -0,0 +1,19 @@ +{ + "id": 3365, + "slug": "fips", + "name": "FIPS", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140312825" + ], + "created_at": "2026-07-10T10:12:40.843020", + "updated_at": "2026-07-10T10:12:40.843020", + "url": "/v1/software/fips" +} diff --git a/site/public/v1/software/fireball/index.json b/site/public/v1/software/fireball/index.json new file mode 100644 index 000000000000..3800df8c1144 --- /dev/null +++ b/site/public/v1/software/fireball/index.json @@ -0,0 +1,19 @@ +{ + "id": 3366, + "slug": "fireball", + "name": "Fireball", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q30611762" + ], + "created_at": "2026-07-10T10:12:40.843020", + "updated_at": "2026-07-10T10:12:40.843020", + "url": "/v1/software/fireball" +} diff --git a/site/public/v1/software/firebase-authentication/index.json b/site/public/v1/software/firebase-authentication/index.json new file mode 100644 index 000000000000..2004feff70a8 --- /dev/null +++ b/site/public/v1/software/firebase-authentication/index.json @@ -0,0 +1,21 @@ +{ + "id": 3367, + "slug": "firebase-authentication", + "name": "Firebase Authentication", + "release_date": null, + "developers": [ + "Google" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60167254" + ], + "created_at": "2026-07-10T10:12:40.843020", + "updated_at": "2026-07-10T10:12:40.843020", + "url": "/v1/software/firebase-authentication" +} diff --git a/site/public/v1/software/firebenchmarks/index.json b/site/public/v1/software/firebenchmarks/index.json new file mode 100644 index 000000000000..93c3a50d7449 --- /dev/null +++ b/site/public/v1/software/firebenchmarks/index.json @@ -0,0 +1,19 @@ +{ + "id": 3368, + "slug": "firebenchmarks", + "name": "FireBenchmarks", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3745931" + ], + "created_at": "2026-07-10T10:12:40.844070", + "updated_at": "2026-07-10T10:12:40.844070", + "url": "/v1/software/firebenchmarks" +} diff --git a/site/public/v1/software/firebird-bbs/index.json b/site/public/v1/software/firebird-bbs/index.json new file mode 100644 index 000000000000..4f219870cbc1 --- /dev/null +++ b/site/public/v1/software/firebird-bbs/index.json @@ -0,0 +1,19 @@ +{ + "id": 3369, + "slug": "firebird-bbs", + "name": "Firebird BBS", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5451732" + ], + "created_at": "2026-07-10T10:12:40.844070", + "updated_at": "2026-07-10T10:12:40.844070", + "url": "/v1/software/firebird-bbs" +} diff --git a/site/public/v1/software/firecracker/index.json b/site/public/v1/software/firecracker/index.json new file mode 100644 index 000000000000..b03a7d07911e --- /dev/null +++ b/site/public/v1/software/firecracker/index.json @@ -0,0 +1,23 @@ +{ + "id": 3370, + "slug": "firecracker", + "name": "Firecracker", + "release_date": null, + "developers": [ + "Amazon Web Services" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Apache Software License 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107341874" + ], + "created_at": "2026-07-10T10:12:40.844070", + "updated_at": "2026-07-10T10:12:40.844070", + "url": "/v1/software/firecracker" +} diff --git a/site/public/v1/software/firedaemon/index.json b/site/public/v1/software/firedaemon/index.json new file mode 100644 index 000000000000..9292849998c4 --- /dev/null +++ b/site/public/v1/software/firedaemon/index.json @@ -0,0 +1,19 @@ +{ + "id": 3371, + "slug": "firedaemon", + "name": "FireDaemon", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5451273" + ], + "created_at": "2026-07-10T10:12:40.845031", + "updated_at": "2026-07-10T10:12:40.845031", + "url": "/v1/software/firedaemon" +} diff --git a/site/public/v1/software/firefox-1-5/index.json b/site/public/v1/software/firefox-1-5/index.json new file mode 100644 index 000000000000..e015fcff6055 --- /dev/null +++ b/site/public/v1/software/firefox-1-5/index.json @@ -0,0 +1,19 @@ +{ + "id": 3372, + "slug": "firefox-1-5", + "name": "Firefox 1.5", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3866728" + ], + "created_at": "2026-07-10T10:12:40.845031", + "updated_at": "2026-07-10T10:12:40.845031", + "url": "/v1/software/firefox-1-5" +} diff --git a/site/public/v1/software/firefox-8/index.json b/site/public/v1/software/firefox-8/index.json new file mode 100644 index 000000000000..30a73361ac8c --- /dev/null +++ b/site/public/v1/software/firefox-8/index.json @@ -0,0 +1,19 @@ +{ + "id": 3373, + "slug": "firefox-8", + "name": "Firefox 8", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25584289" + ], + "created_at": "2026-07-10T10:12:40.845031", + "updated_at": "2026-07-10T10:12:40.845031", + "url": "/v1/software/firefox-8" +} diff --git a/site/public/v1/software/firefox-lorentz/index.json b/site/public/v1/software/firefox-lorentz/index.json new file mode 100644 index 000000000000..3404fccf2b1b --- /dev/null +++ b/site/public/v1/software/firefox-lorentz/index.json @@ -0,0 +1,19 @@ +{ + "id": 3374, + "slug": "firefox-lorentz", + "name": "Firefox Lorentz", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5862218" + ], + "created_at": "2026-07-10T10:12:40.846059", + "updated_at": "2026-07-10T10:12:40.846059", + "url": "/v1/software/firefox-lorentz" +} diff --git a/site/public/v1/software/firemonger/index.json b/site/public/v1/software/firemonger/index.json new file mode 100644 index 000000000000..0f7bb4849a37 --- /dev/null +++ b/site/public/v1/software/firemonger/index.json @@ -0,0 +1,19 @@ +{ + "id": 3375, + "slug": "firemonger", + "name": "Firemonger", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5451920" + ], + "created_at": "2026-07-10T10:12:40.846059", + "updated_at": "2026-07-10T10:12:40.846059", + "url": "/v1/software/firemonger" +} diff --git a/site/public/v1/software/firesheep/index.json b/site/public/v1/software/firesheep/index.json new file mode 100644 index 000000000000..4b517eed37cd --- /dev/null +++ b/site/public/v1/software/firesheep/index.json @@ -0,0 +1,21 @@ +{ + "id": 3376, + "slug": "firesheep", + "name": "Firesheep", + "release_date": "2010-10-24", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "GNU General Public License, version 3.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1418986" + ], + "created_at": "2026-07-10T10:12:40.846059", + "updated_at": "2026-07-10T10:12:40.846059", + "url": "/v1/software/firesheep" +} diff --git a/site/public/v1/software/firetune/index.json b/site/public/v1/software/firetune/index.json new file mode 100644 index 000000000000..20dc863223d7 --- /dev/null +++ b/site/public/v1/software/firetune/index.json @@ -0,0 +1,19 @@ +{ + "id": 3377, + "slug": "firetune", + "name": "FireTune", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5451282" + ], + "created_at": "2026-07-10T10:12:40.847061", + "updated_at": "2026-07-10T10:12:40.847061", + "url": "/v1/software/firetune" +} diff --git a/site/public/v1/software/firstclass/index.json b/site/public/v1/software/firstclass/index.json new file mode 100644 index 000000000000..9400200a8d31 --- /dev/null +++ b/site/public/v1/software/firstclass/index.json @@ -0,0 +1,19 @@ +{ + "id": 3378, + "slug": "firstclass", + "name": "FirstClass", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q960382" + ], + "created_at": "2026-07-10T10:12:40.847061", + "updated_at": "2026-07-10T10:12:40.847061", + "url": "/v1/software/firstclass" +} diff --git a/site/public/v1/software/fishbrain/index.json b/site/public/v1/software/fishbrain/index.json new file mode 100644 index 000000000000..ee2de181cb66 --- /dev/null +++ b/site/public/v1/software/fishbrain/index.json @@ -0,0 +1,19 @@ +{ + "id": 3379, + "slug": "fishbrain", + "name": "Fishbrain", + "release_date": "2010-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28127029" + ], + "created_at": "2026-07-10T10:12:40.847061", + "updated_at": "2026-07-10T10:12:40.847061", + "url": "/v1/software/fishbrain" +} diff --git a/site/public/v1/software/fisher/index.json b/site/public/v1/software/fisher/index.json new file mode 100644 index 000000000000..991b4d214e10 --- /dev/null +++ b/site/public/v1/software/fisher/index.json @@ -0,0 +1,19 @@ +{ + "id": 3380, + "slug": "fisher", + "name": "FISHER", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084965" + ], + "created_at": "2026-07-10T10:12:40.848037", + "updated_at": "2026-07-10T10:12:40.848037", + "url": "/v1/software/fisher" +} diff --git a/site/public/v1/software/fishsupper/index.json b/site/public/v1/software/fishsupper/index.json new file mode 100644 index 000000000000..140107d0460c --- /dev/null +++ b/site/public/v1/software/fishsupper/index.json @@ -0,0 +1,19 @@ +{ + "id": 3381, + "slug": "fishsupper", + "name": "fishsupper", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065570" + ], + "created_at": "2026-07-10T10:12:40.848037", + "updated_at": "2026-07-10T10:12:40.848037", + "url": "/v1/software/fishsupper" +} diff --git a/site/public/v1/software/fitbod/index.json b/site/public/v1/software/fitbod/index.json new file mode 100644 index 000000000000..1a002db7666f --- /dev/null +++ b/site/public/v1/software/fitbod/index.json @@ -0,0 +1,19 @@ +{ + "id": 3382, + "slug": "fitbod", + "name": "Fitbod", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140196767" + ], + "created_at": "2026-07-10T10:12:40.848037", + "updated_at": "2026-07-10T10:12:40.848037", + "url": "/v1/software/fitbod" +} diff --git a/site/public/v1/software/fitcompare/index.json b/site/public/v1/software/fitcompare/index.json new file mode 100644 index 000000000000..a7517d2fbaf4 --- /dev/null +++ b/site/public/v1/software/fitcompare/index.json @@ -0,0 +1,23 @@ +{ + "id": 3383, + "slug": "fitcompare", + "name": "Fitcompare", + "release_date": null, + "developers": [ + "Grégory Chanez" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "GNU General Public License, version 3.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135914180" + ], + "created_at": "2026-07-10T10:12:40.849068", + "updated_at": "2026-07-10T10:12:40.849068", + "url": "/v1/software/fitcompare" +} diff --git a/site/public/v1/software/fitit/index.json b/site/public/v1/software/fitit/index.json new file mode 100644 index 000000000000..fe8a46e2675f --- /dev/null +++ b/site/public/v1/software/fitit/index.json @@ -0,0 +1,19 @@ +{ + "id": 3384, + "slug": "fitit", + "name": "FitIt", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5455376" + ], + "created_at": "2026-07-10T10:12:40.849068", + "updated_at": "2026-07-10T10:12:40.849068", + "url": "/v1/software/fitit" +} diff --git a/site/public/v1/software/fitspng/index.json b/site/public/v1/software/fitspng/index.json new file mode 100644 index 000000000000..b5cc1b6e68a3 --- /dev/null +++ b/site/public/v1/software/fitspng/index.json @@ -0,0 +1,19 @@ +{ + "id": 3385, + "slug": "fitspng", + "name": "fitspng", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065075" + ], + "created_at": "2026-07-10T10:12:40.849068", + "updated_at": "2026-07-10T10:12:40.849068", + "url": "/v1/software/fitspng" +} diff --git a/site/public/v1/software/fitsverify/index.json b/site/public/v1/software/fitsverify/index.json new file mode 100644 index 000000000000..e07be77cd940 --- /dev/null +++ b/site/public/v1/software/fitsverify/index.json @@ -0,0 +1,19 @@ +{ + "id": 3386, + "slug": "fitsverify", + "name": "fitsverify", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065214" + ], + "created_at": "2026-07-10T10:12:40.850046", + "updated_at": "2026-07-10T10:12:40.850046", + "url": "/v1/software/fitsverify" +} diff --git a/site/public/v1/software/fixed/index.json b/site/public/v1/software/fixed/index.json new file mode 100644 index 000000000000..980cd9332d52 --- /dev/null +++ b/site/public/v1/software/fixed/index.json @@ -0,0 +1,19 @@ +{ + "id": 3387, + "slug": "fixed", + "name": "fixed", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084966" + ], + "created_at": "2026-07-10T10:12:40.850046", + "updated_at": "2026-07-10T10:12:40.850046", + "url": "/v1/software/fixed" +} diff --git a/site/public/v1/software/flac123/index.json b/site/public/v1/software/flac123/index.json new file mode 100644 index 000000000000..10670ec4551b --- /dev/null +++ b/site/public/v1/software/flac123/index.json @@ -0,0 +1,19 @@ +{ + "id": 3388, + "slug": "flac123", + "name": "flac123", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065523" + ], + "created_at": "2026-07-10T10:12:40.850977", + "updated_at": "2026-07-10T10:12:40.850977", + "url": "/v1/software/flac123" +} diff --git a/site/public/v1/software/flacs/index.json b/site/public/v1/software/flacs/index.json new file mode 100644 index 000000000000..53c1e96960a4 --- /dev/null +++ b/site/public/v1/software/flacs/index.json @@ -0,0 +1,19 @@ +{ + "id": 3389, + "slug": "flacs", + "name": "FLACS", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17014056" + ], + "created_at": "2026-07-10T10:12:40.850977", + "updated_at": "2026-07-10T10:12:40.850977", + "url": "/v1/software/flacs" +} diff --git a/site/public/v1/software/flaky-test/index.json b/site/public/v1/software/flaky-test/index.json new file mode 100644 index 000000000000..0133f52f4d71 --- /dev/null +++ b/site/public/v1/software/flaky-test/index.json @@ -0,0 +1,19 @@ +{ + "id": 3390, + "slug": "flaky-test", + "name": "Flaky test", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140408128" + ], + "created_at": "2026-07-10T10:12:40.850977", + "updated_at": "2026-07-10T10:12:40.850977", + "url": "/v1/software/flaky-test" +} diff --git a/site/public/v1/software/flame-over/index.json b/site/public/v1/software/flame-over/index.json new file mode 100644 index 000000000000..9ffbd081b333 --- /dev/null +++ b/site/public/v1/software/flame-over/index.json @@ -0,0 +1,21 @@ +{ + "id": 3391, + "slug": "flame-over", + "name": "Flame Over", + "release_date": "2015-05-28", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [ + "action game" + ], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105374181" + ], + "created_at": "2026-07-10T10:12:40.850977", + "updated_at": "2026-07-10T10:12:40.850977", + "url": "/v1/software/flame-over" +} diff --git a/site/public/v1/software/flamenco-search/index.json b/site/public/v1/software/flamenco-search/index.json new file mode 100644 index 000000000000..33d39562713a --- /dev/null +++ b/site/public/v1/software/flamenco-search/index.json @@ -0,0 +1,19 @@ +{ + "id": 3392, + "slug": "flamenco-search", + "name": "Flamenco Search", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084967" + ], + "created_at": "2026-07-10T10:12:40.851975", + "updated_at": "2026-07-10T10:12:40.851975", + "url": "/v1/software/flamenco-search" +} diff --git a/site/public/v1/software/flare/index.json b/site/public/v1/software/flare/index.json new file mode 100644 index 000000000000..5d5d65f86955 --- /dev/null +++ b/site/public/v1/software/flare/index.json @@ -0,0 +1,19 @@ +{ + "id": 3393, + "slug": "flare", + "name": "Flare", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084968" + ], + "created_at": "2026-07-10T10:12:40.851975", + "updated_at": "2026-07-10T10:12:40.851975", + "url": "/v1/software/flare" +} diff --git a/site/public/v1/software/flaresight/index.json b/site/public/v1/software/flaresight/index.json new file mode 100644 index 000000000000..4af4d72ecc25 --- /dev/null +++ b/site/public/v1/software/flaresight/index.json @@ -0,0 +1,19 @@ +{ + "id": 3394, + "slug": "flaresight", + "name": "FlareSight", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139916855" + ], + "created_at": "2026-07-10T10:12:40.852975", + "updated_at": "2026-07-10T10:12:40.852975", + "url": "/v1/software/flaresight" +} diff --git a/site/public/v1/software/flarum/index.json b/site/public/v1/software/flarum/index.json new file mode 100644 index 000000000000..8910688494c7 --- /dev/null +++ b/site/public/v1/software/flarum/index.json @@ -0,0 +1,23 @@ +{ + "id": 3395, + "slug": "flarum", + "name": "Flarum", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "PHP" + ], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q86592421" + ], + "created_at": "2026-07-10T10:12:40.852975", + "updated_at": "2026-07-10T10:12:40.852975", + "url": "/v1/software/flarum" +} diff --git a/site/public/v1/software/flashback-pro/index.json b/site/public/v1/software/flashback-pro/index.json new file mode 100644 index 000000000000..da1c5949ca1e --- /dev/null +++ b/site/public/v1/software/flashback-pro/index.json @@ -0,0 +1,21 @@ +{ + "id": 3396, + "slug": "flashback-pro", + "name": "FlashBack Pro", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [ + "screencasting software" + ], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4835099" + ], + "created_at": "2026-07-10T10:12:40.852975", + "updated_at": "2026-07-10T10:12:40.852975", + "url": "/v1/software/flashback-pro" +} diff --git a/site/public/v1/software/flashblock/index.json b/site/public/v1/software/flashblock/index.json new file mode 100644 index 000000000000..e91b82eee5eb --- /dev/null +++ b/site/public/v1/software/flashblock/index.json @@ -0,0 +1,21 @@ +{ + "id": 3397, + "slug": "flashblock", + "name": "Flashblock", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Mozilla Public License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5457604" + ], + "created_at": "2026-07-10T10:12:40.852975", + "updated_at": "2026-07-10T10:12:40.852975", + "url": "/v1/software/flashblock" +} diff --git a/site/public/v1/software/flashcard-machine/index.json b/site/public/v1/software/flashcard-machine/index.json new file mode 100644 index 000000000000..bb2480fb04bb --- /dev/null +++ b/site/public/v1/software/flashcard-machine/index.json @@ -0,0 +1,19 @@ +{ + "id": 3398, + "slug": "flashcard-machine", + "name": "Flashcard Machine", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084969" + ], + "created_at": "2026-07-10T10:12:40.854048", + "updated_at": "2026-07-10T10:12:40.854048", + "url": "/v1/software/flashcard-machine" +} diff --git a/site/public/v1/software/flashfxp/index.json b/site/public/v1/software/flashfxp/index.json new file mode 100644 index 000000000000..491cb71829d0 --- /dev/null +++ b/site/public/v1/software/flashfxp/index.json @@ -0,0 +1,19 @@ +{ + "id": 3399, + "slug": "flashfxp", + "name": "FlashFXP", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q993236" + ], + "created_at": "2026-07-10T10:12:40.854048", + "updated_at": "2026-07-10T10:12:40.854048", + "url": "/v1/software/flashfxp" +} diff --git a/site/public/v1/software/flashpaper/index.json b/site/public/v1/software/flashpaper/index.json new file mode 100644 index 000000000000..844b3ce1039b --- /dev/null +++ b/site/public/v1/software/flashpaper/index.json @@ -0,0 +1,21 @@ +{ + "id": 3400, + "slug": "flashpaper", + "name": "FlashPaper", + "release_date": null, + "developers": [ + "Adobe" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1325617" + ], + "created_at": "2026-07-10T10:12:40.855080", + "updated_at": "2026-07-10T10:12:40.855080", + "url": "/v1/software/flashpaper" +} diff --git a/site/public/v1/software/flask-cors/index.json b/site/public/v1/software/flask-cors/index.json new file mode 100644 index 000000000000..c60f8423e88c --- /dev/null +++ b/site/public/v1/software/flask-cors/index.json @@ -0,0 +1,21 @@ +{ + "id": 3401, + "slug": "flask-cors", + "name": "flask-cors", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974850" + ], + "created_at": "2026-07-10T10:12:40.855080", + "updated_at": "2026-07-10T10:12:40.855080", + "url": "/v1/software/flask-cors" +} diff --git a/site/public/v1/software/flawfinder/index.json b/site/public/v1/software/flawfinder/index.json new file mode 100644 index 000000000000..c87b0ed17ef8 --- /dev/null +++ b/site/public/v1/software/flawfinder/index.json @@ -0,0 +1,19 @@ +{ + "id": 3402, + "slug": "flawfinder", + "name": "Flawfinder", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110474298" + ], + "created_at": "2026-07-10T10:12:40.855080", + "updated_at": "2026-07-10T10:12:40.855080", + "url": "/v1/software/flawfinder" +} diff --git a/site/public/v1/software/fleck/index.json b/site/public/v1/software/fleck/index.json new file mode 100644 index 000000000000..269fa9581c0e --- /dev/null +++ b/site/public/v1/software/fleck/index.json @@ -0,0 +1,19 @@ +{ + "id": 3403, + "slug": "fleck", + "name": "Fleck", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084970" + ], + "created_at": "2026-07-10T10:12:40.855080", + "updated_at": "2026-07-10T10:12:40.855973", + "url": "/v1/software/fleck" +} diff --git a/site/public/v1/software/fleet-management-software/index.json b/site/public/v1/software/fleet-management-software/index.json new file mode 100644 index 000000000000..11b60e872576 --- /dev/null +++ b/site/public/v1/software/fleet-management-software/index.json @@ -0,0 +1,19 @@ +{ + "id": 3404, + "slug": "fleet-management-software", + "name": "Fleet management software", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5458441" + ], + "created_at": "2026-07-10T10:12:40.855973", + "updated_at": "2026-07-10T10:12:40.855973", + "url": "/v1/software/fleet-management-software" +} diff --git a/site/public/v1/software/fleet/index.json b/site/public/v1/software/fleet/index.json new file mode 100644 index 000000000000..d1bb2db3e018 --- /dev/null +++ b/site/public/v1/software/fleet/index.json @@ -0,0 +1,21 @@ +{ + "id": 3405, + "slug": "fleet", + "name": "fleet", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Apache License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974851" + ], + "created_at": "2026-07-10T10:12:40.855973", + "updated_at": "2026-07-10T10:12:40.855973", + "url": "/v1/software/fleet" +} diff --git a/site/public/v1/software/fleur/index.json b/site/public/v1/software/fleur/index.json new file mode 100644 index 000000000000..8a4268242999 --- /dev/null +++ b/site/public/v1/software/fleur/index.json @@ -0,0 +1,19 @@ +{ + "id": 3406, + "slug": "fleur", + "name": "FLEUR", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108241750" + ], + "created_at": "2026-07-10T10:12:40.857040", + "updated_at": "2026-07-10T10:12:40.857040", + "url": "/v1/software/fleur" +} diff --git a/site/public/v1/software/flexaid/index.json b/site/public/v1/software/flexaid/index.json new file mode 100644 index 000000000000..6e688e96dc3d --- /dev/null +++ b/site/public/v1/software/flexaid/index.json @@ -0,0 +1,21 @@ +{ + "id": 3407, + "slug": "flexaid", + "name": "FlexAID", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Apache License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q65072815" + ], + "created_at": "2026-07-10T10:12:40.857040", + "updated_at": "2026-07-10T10:12:40.857040", + "url": "/v1/software/flexaid" +} diff --git a/site/public/v1/software/flexbackup/index.json b/site/public/v1/software/flexbackup/index.json new file mode 100644 index 000000000000..6bdac5060abc --- /dev/null +++ b/site/public/v1/software/flexbackup/index.json @@ -0,0 +1,19 @@ +{ + "id": 3408, + "slug": "flexbackup", + "name": "flexbackup", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62849836" + ], + "created_at": "2026-07-10T10:12:40.857040", + "updated_at": "2026-07-10T10:12:40.857040", + "url": "/v1/software/flexbackup" +} diff --git a/site/public/v1/software/flexcom/index.json b/site/public/v1/software/flexcom/index.json new file mode 100644 index 000000000000..3fed10aebb20 --- /dev/null +++ b/site/public/v1/software/flexcom/index.json @@ -0,0 +1,21 @@ +{ + "id": 3409, + "slug": "flexcom", + "name": "Flexcom", + "release_date": null, + "developers": [ + "John Wood Group plc" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5458942" + ], + "created_at": "2026-07-10T10:12:40.857040", + "updated_at": "2026-07-10T10:12:40.857040", + "url": "/v1/software/flexcom" +} diff --git a/site/public/v1/software/flexget/index.json b/site/public/v1/software/flexget/index.json new file mode 100644 index 000000000000..764d76a6defe --- /dev/null +++ b/site/public/v1/software/flexget/index.json @@ -0,0 +1,21 @@ +{ + "id": 3410, + "slug": "flexget", + "name": "flexget", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974852" + ], + "created_at": "2026-07-10T10:12:40.858095", + "updated_at": "2026-07-10T10:12:40.858095", + "url": "/v1/software/flexget" +} diff --git a/site/public/v1/software/flexhex/index.json b/site/public/v1/software/flexhex/index.json new file mode 100644 index 000000000000..206f07ef4cc2 --- /dev/null +++ b/site/public/v1/software/flexhex/index.json @@ -0,0 +1,23 @@ +{ + "id": 3411, + "slug": "flexhex", + "name": "FlexHex", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60741091" + ], + "created_at": "2026-07-10T10:12:40.858095", + "updated_at": "2026-07-10T10:12:40.858095", + "url": "/v1/software/flexhex" +} diff --git a/site/public/v1/software/flexpde/index.json b/site/public/v1/software/flexpde/index.json new file mode 100644 index 000000000000..62d0c2ffc141 --- /dev/null +++ b/site/public/v1/software/flexpde/index.json @@ -0,0 +1,19 @@ +{ + "id": 3412, + "slug": "flexpde", + "name": "Flexpde", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5459036" + ], + "created_at": "2026-07-10T10:12:40.858095", + "updated_at": "2026-07-10T10:12:40.858095", + "url": "/v1/software/flexpde" +} diff --git a/site/public/v1/software/flexpro/index.json b/site/public/v1/software/flexpro/index.json new file mode 100644 index 000000000000..f3d0c6ec0dbd --- /dev/null +++ b/site/public/v1/software/flexpro/index.json @@ -0,0 +1,21 @@ +{ + "id": 3413, + "slug": "flexpro", + "name": "FlexPro", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5458913" + ], + "created_at": "2026-07-10T10:12:40.859056", + "updated_at": "2026-07-10T10:12:40.859056", + "url": "/v1/software/flexpro" +} diff --git a/site/public/v1/software/flexsim/index.json b/site/public/v1/software/flexsim/index.json new file mode 100644 index 000000000000..d223cc05acdf --- /dev/null +++ b/site/public/v1/software/flexsim/index.json @@ -0,0 +1,19 @@ +{ + "id": 3414, + "slug": "flexsim", + "name": "Flexsim", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17014099" + ], + "created_at": "2026-07-10T10:12:40.859056", + "updated_at": "2026-07-10T10:12:40.859056", + "url": "/v1/software/flexsim" +} diff --git a/site/public/v1/software/flickr-downloadr/index.json b/site/public/v1/software/flickr-downloadr/index.json new file mode 100644 index 000000000000..2906650fe9ab --- /dev/null +++ b/site/public/v1/software/flickr-downloadr/index.json @@ -0,0 +1,21 @@ +{ + "id": 3415, + "slug": "flickr-downloadr", + "name": "flickr downloadr", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63088320" + ], + "created_at": "2026-07-10T10:12:40.859056", + "updated_at": "2026-07-10T10:12:40.859056", + "url": "/v1/software/flickr-downloadr" +} diff --git a/site/public/v1/software/flickypedia/index.json b/site/public/v1/software/flickypedia/index.json new file mode 100644 index 000000000000..2671dbaa47c3 --- /dev/null +++ b/site/public/v1/software/flickypedia/index.json @@ -0,0 +1,21 @@ +{ + "id": 3416, + "slug": "flickypedia", + "name": "Flickypedia", + "release_date": null, + "developers": [ + "Flickr Foundation" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121064487" + ], + "created_at": "2026-07-10T10:12:40.859056", + "updated_at": "2026-07-10T10:12:40.859056", + "url": "/v1/software/flickypedia" +} diff --git a/site/public/v1/software/fliggy-software/index.json b/site/public/v1/software/fliggy-software/index.json new file mode 100644 index 000000000000..65d6a8d9e4ce --- /dev/null +++ b/site/public/v1/software/fliggy-software/index.json @@ -0,0 +1,19 @@ +{ + "id": 3417, + "slug": "fliggy-software", + "name": "Fliggy Software", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62081774" + ], + "created_at": "2026-07-10T10:12:40.860087", + "updated_at": "2026-07-10T10:12:40.860087", + "url": "/v1/software/fliggy-software" +} diff --git a/site/public/v1/software/flightgear-data/index.json b/site/public/v1/software/flightgear-data/index.json new file mode 100644 index 000000000000..5870df7ec5ab --- /dev/null +++ b/site/public/v1/software/flightgear-data/index.json @@ -0,0 +1,21 @@ +{ + "id": 3418, + "slug": "flightgear-data", + "name": "flightgear-data", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "GNU General Public License, version 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974853" + ], + "created_at": "2026-07-10T10:12:40.860087", + "updated_at": "2026-07-10T10:12:40.860087", + "url": "/v1/software/flightgear-data" +} diff --git a/site/public/v1/software/flip/index.json b/site/public/v1/software/flip/index.json new file mode 100644 index 000000000000..f180312b94e7 --- /dev/null +++ b/site/public/v1/software/flip/index.json @@ -0,0 +1,21 @@ +{ + "id": 3419, + "slug": "flip", + "name": "Flip", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113269213" + ], + "created_at": "2026-07-10T10:12:40.861050", + "updated_at": "2026-07-10T10:12:40.861050", + "url": "/v1/software/flip" +} diff --git a/site/public/v1/software/flip4mac/index.json b/site/public/v1/software/flip4mac/index.json new file mode 100644 index 000000000000..f51804690e11 --- /dev/null +++ b/site/public/v1/software/flip4mac/index.json @@ -0,0 +1,19 @@ +{ + "id": 3420, + "slug": "flip4mac", + "name": "Flip4Mac", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5459646" + ], + "created_at": "2026-07-10T10:12:40.861050", + "updated_at": "2026-07-10T10:12:40.861050", + "url": "/v1/software/flip4mac" +} diff --git a/site/public/v1/software/flipbuilder/index.json b/site/public/v1/software/flipbuilder/index.json new file mode 100644 index 000000000000..a02ff8c5693e --- /dev/null +++ b/site/public/v1/software/flipbuilder/index.json @@ -0,0 +1,21 @@ +{ + "id": 3421, + "slug": "flipbuilder", + "name": "FlipBuilder", + "release_date": null, + "developers": [ + "WONDER IDEA TECHNOLOGY LIMITED" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139959918" + ], + "created_at": "2026-07-10T10:12:40.861050", + "updated_at": "2026-07-10T10:12:40.861050", + "url": "/v1/software/flipbuilder" +} diff --git a/site/public/v1/software/fliphtml5/index.json b/site/public/v1/software/fliphtml5/index.json new file mode 100644 index 000000000000..3c6ce46ae1b7 --- /dev/null +++ b/site/public/v1/software/fliphtml5/index.json @@ -0,0 +1,21 @@ +{ + "id": 3422, + "slug": "fliphtml5", + "name": "FlipHTML5", + "release_date": null, + "developers": [ + "WONDER IDEA TECHNOLOGY LIMITED" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139772478" + ], + "created_at": "2026-07-10T10:12:40.861050", + "updated_at": "2026-07-10T10:12:40.861050", + "url": "/v1/software/fliphtml5" +} diff --git a/site/public/v1/software/flipscore/index.json b/site/public/v1/software/flipscore/index.json new file mode 100644 index 000000000000..af1d8256778a --- /dev/null +++ b/site/public/v1/software/flipscore/index.json @@ -0,0 +1,21 @@ +{ + "id": 3423, + "slug": "flipscore", + "name": "FlipScore", + "release_date": null, + "developers": [ + "FlipScore" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139829593" + ], + "created_at": "2026-07-10T10:12:40.862047", + "updated_at": "2026-07-10T10:12:40.862047", + "url": "/v1/software/flipscore" +} diff --git a/site/public/v1/software/flmask/index.json b/site/public/v1/software/flmask/index.json new file mode 100644 index 000000000000..485660cd79fb --- /dev/null +++ b/site/public/v1/software/flmask/index.json @@ -0,0 +1,19 @@ +{ + "id": 3424, + "slug": "flmask", + "name": "FLMask", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11199214" + ], + "created_at": "2026-07-10T10:12:40.862047", + "updated_at": "2026-07-10T10:12:40.862047", + "url": "/v1/software/flmask" +} diff --git a/site/public/v1/software/flokoon/index.json b/site/public/v1/software/flokoon/index.json new file mode 100644 index 000000000000..972502899756 --- /dev/null +++ b/site/public/v1/software/flokoon/index.json @@ -0,0 +1,19 @@ +{ + "id": 3425, + "slug": "flokoon", + "name": "flokoon", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084972" + ], + "created_at": "2026-07-10T10:12:40.862047", + "updated_at": "2026-07-10T10:12:40.862047", + "url": "/v1/software/flokoon" +} diff --git a/site/public/v1/software/flood-modeller/index.json b/site/public/v1/software/flood-modeller/index.json new file mode 100644 index 000000000000..7eb2c3ccdf4e --- /dev/null +++ b/site/public/v1/software/flood-modeller/index.json @@ -0,0 +1,21 @@ +{ + "id": 3426, + "slug": "flood-modeller", + "name": "Flood Modeller", + "release_date": null, + "developers": [ + "CH2M Hill" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q19824660" + ], + "created_at": "2026-07-10T10:12:40.863089", + "updated_at": "2026-07-10T10:12:40.863089", + "url": "/v1/software/flood-modeller" +} diff --git a/site/public/v1/software/floristware/index.json b/site/public/v1/software/floristware/index.json new file mode 100644 index 000000000000..7b7eeb5fe4c0 --- /dev/null +++ b/site/public/v1/software/floristware/index.json @@ -0,0 +1,19 @@ +{ + "id": 3427, + "slug": "floristware", + "name": "FloristWare", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5461906" + ], + "created_at": "2026-07-10T10:12:40.863089", + "updated_at": "2026-07-10T10:12:40.863089", + "url": "/v1/software/floristware" +} diff --git a/site/public/v1/software/flot/index.json b/site/public/v1/software/flot/index.json new file mode 100644 index 000000000000..c5b16169da0d --- /dev/null +++ b/site/public/v1/software/flot/index.json @@ -0,0 +1,19 @@ +{ + "id": 3428, + "slug": "flot", + "name": "Flot", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084973" + ], + "created_at": "2026-07-10T10:12:40.863089", + "updated_at": "2026-07-10T10:12:40.863089", + "url": "/v1/software/flot" +} diff --git a/site/public/v1/software/flow-q111269149/index.json b/site/public/v1/software/flow-q111269149/index.json new file mode 100644 index 000000000000..815541afa6f8 --- /dev/null +++ b/site/public/v1/software/flow-q111269149/index.json @@ -0,0 +1,25 @@ +{ + "id": 3429, + "slug": "flow-q111269149", + "name": "flow", + "release_date": null, + "developers": [ + "Meta" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "OCaml" + ], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111269149" + ], + "created_at": "2026-07-10T10:12:40.863089", + "updated_at": "2026-07-10T10:12:40.863089", + "url": "/v1/software/flow-q111269149" +} diff --git a/site/public/v1/software/flow-tools/index.json b/site/public/v1/software/flow-tools/index.json new file mode 100644 index 000000000000..45561d62b57f --- /dev/null +++ b/site/public/v1/software/flow-tools/index.json @@ -0,0 +1,19 @@ +{ + "id": 3430, + "slug": "flow-tools", + "name": "flow-tools", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62849830" + ], + "created_at": "2026-07-10T10:12:40.864095", + "updated_at": "2026-07-10T10:12:40.864095", + "url": "/v1/software/flow-tools" +} diff --git a/site/public/v1/software/flow-tracer/index.json b/site/public/v1/software/flow-tracer/index.json new file mode 100644 index 000000000000..9690fcd44936 --- /dev/null +++ b/site/public/v1/software/flow-tracer/index.json @@ -0,0 +1,19 @@ +{ + "id": 3431, + "slug": "flow-tracer", + "name": "Flow tracer", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q989961" + ], + "created_at": "2026-07-10T10:12:40.864095", + "updated_at": "2026-07-10T10:12:40.864095", + "url": "/v1/software/flow-tracer" +} diff --git a/site/public/v1/software/flow/index.json b/site/public/v1/software/flow/index.json new file mode 100644 index 000000000000..d1109b906228 --- /dev/null +++ b/site/public/v1/software/flow/index.json @@ -0,0 +1,19 @@ +{ + "id": 3432, + "slug": "flow", + "name": "Flow", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106362772" + ], + "created_at": "2026-07-10T10:12:40.865043", + "updated_at": "2026-07-10T10:12:40.865043", + "url": "/v1/software/flow" +} diff --git a/site/public/v1/software/flowable/index.json b/site/public/v1/software/flowable/index.json new file mode 100644 index 000000000000..52bd96eb9a94 --- /dev/null +++ b/site/public/v1/software/flowable/index.json @@ -0,0 +1,21 @@ +{ + "id": 3433, + "slug": "flowable", + "name": "Flowable", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Java" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28449892" + ], + "created_at": "2026-07-10T10:12:40.865043", + "updated_at": "2026-07-10T10:12:40.865043", + "url": "/v1/software/flowable" +} diff --git a/site/public/v1/software/flowin/index.json b/site/public/v1/software/flowin/index.json new file mode 100644 index 000000000000..aba7a2c1cc94 --- /dev/null +++ b/site/public/v1/software/flowin/index.json @@ -0,0 +1,19 @@ +{ + "id": 3434, + "slug": "flowin", + "name": "Flowin", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140333560" + ], + "created_at": "2026-07-10T10:12:40.865043", + "updated_at": "2026-07-10T10:12:40.865043", + "url": "/v1/software/flowin" +} diff --git a/site/public/v1/software/flowjo/index.json b/site/public/v1/software/flowjo/index.json new file mode 100644 index 000000000000..7ba739067b35 --- /dev/null +++ b/site/public/v1/software/flowjo/index.json @@ -0,0 +1,21 @@ +{ + "id": 3435, + "slug": "flowjo", + "name": "FlowJo", + "release_date": null, + "developers": [ + "FlowJo LLC" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5462055" + ], + "created_at": "2026-07-10T10:12:40.866106", + "updated_at": "2026-07-10T10:12:40.866106", + "url": "/v1/software/flowjo" +} diff --git a/site/public/v1/software/flowos/index.json b/site/public/v1/software/flowos/index.json new file mode 100644 index 000000000000..0991305c7498 --- /dev/null +++ b/site/public/v1/software/flowos/index.json @@ -0,0 +1,23 @@ +{ + "id": 3436, + "slug": "flowos", + "name": "FlowOS", + "release_date": null, + "developers": [ + "Filip Sardi" + ], + "publishers": [], + "operating_systems": [ + "web browser" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139682292" + ], + "created_at": "2026-07-10T10:12:40.866106", + "updated_at": "2026-07-10T10:12:40.866106", + "url": "/v1/software/flowos" +} diff --git a/site/public/v1/software/flowtriq/index.json b/site/public/v1/software/flowtriq/index.json new file mode 100644 index 000000000000..72b0948eefb8 --- /dev/null +++ b/site/public/v1/software/flowtriq/index.json @@ -0,0 +1,19 @@ +{ + "id": 3437, + "slug": "flowtriq", + "name": "Flowtriq", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139601085" + ], + "created_at": "2026-07-10T10:12:40.866106", + "updated_at": "2026-07-10T10:12:40.866106", + "url": "/v1/software/flowtriq" +} diff --git a/site/public/v1/software/fluctuat/index.json b/site/public/v1/software/fluctuat/index.json new file mode 100644 index 000000000000..69ad6d08f18e --- /dev/null +++ b/site/public/v1/software/fluctuat/index.json @@ -0,0 +1,23 @@ +{ + "id": 3438, + "slug": "fluctuat", + "name": "Fluctuat", + "release_date": null, + "developers": [ + "Alternative Energies and Atomic Energy Commission" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5462617" + ], + "created_at": "2026-07-10T10:12:40.867115", + "updated_at": "2026-07-10T10:12:40.867115", + "url": "/v1/software/fluctuat" +} diff --git a/site/public/v1/software/fluent-design-system/index.json b/site/public/v1/software/fluent-design-system/index.json new file mode 100644 index 000000000000..95d114ab91ad --- /dev/null +++ b/site/public/v1/software/fluent-design-system/index.json @@ -0,0 +1,28 @@ +{ + "id": 3439, + "slug": "fluent-design-system", + "name": "Fluent Design System", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "TypeScript", + "Kotlin", + "Swift", + "Objective-C" + ], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q29900635" + ], + "created_at": "2026-07-10T10:12:40.867115", + "updated_at": "2026-07-10T10:12:40.867115", + "url": "/v1/software/fluent-design-system" +} diff --git a/site/public/v1/software/fluenz/index.json b/site/public/v1/software/fluenz/index.json new file mode 100644 index 000000000000..5f309b9b161f --- /dev/null +++ b/site/public/v1/software/fluenz/index.json @@ -0,0 +1,19 @@ +{ + "id": 3440, + "slug": "fluenz", + "name": "Fluenz", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17105467" + ], + "created_at": "2026-07-10T10:12:40.867115", + "updated_at": "2026-07-10T10:12:40.867115", + "url": "/v1/software/fluenz" +} diff --git a/site/public/v1/software/fluid/index.json b/site/public/v1/software/fluid/index.json new file mode 100644 index 000000000000..29150a8b734f --- /dev/null +++ b/site/public/v1/software/fluid/index.json @@ -0,0 +1,21 @@ +{ + "id": 3441, + "slug": "fluid", + "name": "Fluid", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Objective-C" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5462698" + ], + "created_at": "2026-07-10T10:12:40.867115", + "updated_at": "2026-07-10T10:12:40.867115", + "url": "/v1/software/fluid" +} diff --git a/site/public/v1/software/fluidinfo/index.json b/site/public/v1/software/fluidinfo/index.json new file mode 100644 index 000000000000..20bac249b4a9 --- /dev/null +++ b/site/public/v1/software/fluidinfo/index.json @@ -0,0 +1,23 @@ +{ + "id": 3442, + "slug": "fluidinfo", + "name": "Fluidinfo", + "release_date": "2009-01-01", + "developers": [ + "Fluidinfo" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Python" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5462743" + ], + "created_at": "2026-07-10T10:12:40.868117", + "updated_at": "2026-07-10T10:12:40.868117", + "url": "/v1/software/fluidinfo" +} diff --git a/site/public/v1/software/fluka/index.json b/site/public/v1/software/fluka/index.json new file mode 100644 index 000000000000..c45ef6010cd0 --- /dev/null +++ b/site/public/v1/software/fluka/index.json @@ -0,0 +1,25 @@ +{ + "id": 3443, + "slug": "fluka", + "name": "FLUKA", + "release_date": null, + "developers": [ + "Istituto Nazionale di Fisica Nucleare" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Fortran" + ], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3737232" + ], + "created_at": "2026-07-10T10:12:40.868117", + "updated_at": "2026-07-10T10:12:40.868117", + "url": "/v1/software/fluka" +} diff --git a/site/public/v1/software/fluster/index.json b/site/public/v1/software/fluster/index.json new file mode 100644 index 000000000000..9d9ea2e3ae2b --- /dev/null +++ b/site/public/v1/software/fluster/index.json @@ -0,0 +1,19 @@ +{ + "id": 3444, + "slug": "fluster", + "name": "fluster", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122599349" + ], + "created_at": "2026-07-10T10:12:40.868117", + "updated_at": "2026-07-10T10:12:40.868117", + "url": "/v1/software/fluster" +} diff --git a/site/public/v1/software/flvto/index.json b/site/public/v1/software/flvto/index.json new file mode 100644 index 000000000000..846347a76320 --- /dev/null +++ b/site/public/v1/software/flvto/index.json @@ -0,0 +1,19 @@ +{ + "id": 3445, + "slug": "flvto", + "name": "FLVTO", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q20712396" + ], + "created_at": "2026-07-10T10:12:40.869118", + "updated_at": "2026-07-10T10:12:40.869118", + "url": "/v1/software/flvto" +} diff --git a/site/public/v1/software/flyenv/index.json b/site/public/v1/software/flyenv/index.json new file mode 100644 index 000000000000..af17a3e7f2f3 --- /dev/null +++ b/site/public/v1/software/flyenv/index.json @@ -0,0 +1,19 @@ +{ + "id": 3446, + "slug": "flyenv", + "name": "FlyEnv", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138567332" + ], + "created_at": "2026-07-10T10:12:40.869118", + "updated_at": "2026-07-10T10:12:40.869118", + "url": "/v1/software/flyenv" +} diff --git a/site/public/v1/software/flyexpress/index.json b/site/public/v1/software/flyexpress/index.json new file mode 100644 index 000000000000..b8c88c8aa522 --- /dev/null +++ b/site/public/v1/software/flyexpress/index.json @@ -0,0 +1,23 @@ +{ + "id": 3447, + "slug": "flyexpress", + "name": "FlyExpress", + "release_date": null, + "developers": [ + "Biodesign Institute" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17014272" + ], + "created_at": "2026-07-10T10:12:40.869118", + "updated_at": "2026-07-10T10:12:40.869118", + "url": "/v1/software/flyexpress" +} diff --git a/site/public/v1/software/flyover/index.json b/site/public/v1/software/flyover/index.json new file mode 100644 index 000000000000..1511dad5ac5e --- /dev/null +++ b/site/public/v1/software/flyover/index.json @@ -0,0 +1,19 @@ +{ + "id": 3448, + "slug": "flyover", + "name": "Flyover", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122850616" + ], + "created_at": "2026-07-10T10:12:40.869118", + "updated_at": "2026-07-10T10:12:40.869118", + "url": "/v1/software/flyover" +} diff --git a/site/public/v1/software/flyugegenhaimen/index.json b/site/public/v1/software/flyugegenhaimen/index.json new file mode 100644 index 000000000000..d11f8e4c3787 --- /dev/null +++ b/site/public/v1/software/flyugegenhaimen/index.json @@ -0,0 +1,19 @@ +{ + "id": 3449, + "slug": "flyugegenhaimen", + "name": "Flyugegenhaimen", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140158790" + ], + "created_at": "2026-07-10T10:12:40.870184", + "updated_at": "2026-07-10T10:12:40.870184", + "url": "/v1/software/flyugegenhaimen" +} diff --git a/site/public/v1/software/fmfs/index.json b/site/public/v1/software/fmfs/index.json new file mode 100644 index 000000000000..78dbde38b4d0 --- /dev/null +++ b/site/public/v1/software/fmfs/index.json @@ -0,0 +1,19 @@ +{ + "id": 3450, + "slug": "fmfs", + "name": "FMFS", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10847125" + ], + "created_at": "2026-07-10T10:12:40.870184", + "updated_at": "2026-07-10T10:12:40.870184", + "url": "/v1/software/fmfs" +} diff --git a/site/public/v1/software/fmptools/index.json b/site/public/v1/software/fmptools/index.json new file mode 100644 index 000000000000..801e0c08778e --- /dev/null +++ b/site/public/v1/software/fmptools/index.json @@ -0,0 +1,21 @@ +{ + "id": 3451, + "slug": "fmptools", + "name": "fmptools", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138642367" + ], + "created_at": "2026-07-10T10:12:40.871181", + "updated_at": "2026-07-10T10:12:40.871181", + "url": "/v1/software/fmptools" +} diff --git a/site/public/v1/software/fnord/index.json b/site/public/v1/software/fnord/index.json new file mode 100644 index 000000000000..f20e1a424f0a --- /dev/null +++ b/site/public/v1/software/fnord/index.json @@ -0,0 +1,19 @@ +{ + "id": 3452, + "slug": "fnord", + "name": "fnord", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065233" + ], + "created_at": "2026-07-10T10:12:40.871181", + "updated_at": "2026-07-10T10:12:40.871181", + "url": "/v1/software/fnord" +} diff --git a/site/public/v1/software/focalis/index.json b/site/public/v1/software/focalis/index.json new file mode 100644 index 000000000000..88c585a7b13e --- /dev/null +++ b/site/public/v1/software/focalis/index.json @@ -0,0 +1,23 @@ +{ + "id": 3453, + "slug": "focalis", + "name": "Focalis", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [ + "photography", + "learning", + "coaching" + ], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139764296" + ], + "created_at": "2026-07-10T10:12:40.871181", + "updated_at": "2026-07-10T10:12:40.871181", + "url": "/v1/software/focalis" +} diff --git a/site/public/v1/software/focusopen-digital-asset-manager/index.json b/site/public/v1/software/focusopen-digital-asset-manager/index.json new file mode 100644 index 000000000000..bdbe5f3f0f20 --- /dev/null +++ b/site/public/v1/software/focusopen-digital-asset-manager/index.json @@ -0,0 +1,19 @@ +{ + "id": 3454, + "slug": "focusopen-digital-asset-manager", + "name": "FocusOPEN Digital Asset Manager", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084974" + ], + "created_at": "2026-07-10T10:12:40.871181", + "updated_at": "2026-07-10T10:12:40.871181", + "url": "/v1/software/focusopen-digital-asset-manager" +} diff --git a/site/public/v1/software/focustrack/index.json b/site/public/v1/software/focustrack/index.json new file mode 100644 index 000000000000..32d53d6c1334 --- /dev/null +++ b/site/public/v1/software/focustrack/index.json @@ -0,0 +1,19 @@ +{ + "id": 3455, + "slug": "focustrack", + "name": "FocusTrack", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5463904" + ], + "created_at": "2026-07-10T10:12:40.872183", + "updated_at": "2026-07-10T10:12:40.872183", + "url": "/v1/software/focustrack" +} diff --git a/site/public/v1/software/fog-project/index.json b/site/public/v1/software/fog-project/index.json new file mode 100644 index 000000000000..4afb44fffb3a --- /dev/null +++ b/site/public/v1/software/fog-project/index.json @@ -0,0 +1,21 @@ +{ + "id": 3456, + "slug": "fog-project", + "name": "FOG Project", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "PHP" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109236742" + ], + "created_at": "2026-07-10T10:12:40.872183", + "updated_at": "2026-07-10T10:12:40.872183", + "url": "/v1/software/fog-project" +} diff --git a/site/public/v1/software/fogalqrn/index.json b/site/public/v1/software/fogalqrn/index.json new file mode 100644 index 000000000000..2197e540f91f --- /dev/null +++ b/site/public/v1/software/fogalqrn/index.json @@ -0,0 +1,19 @@ +{ + "id": 3457, + "slug": "fogalqrn", + "name": "FogAlqrn", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140247409" + ], + "created_at": "2026-07-10T10:12:40.873166", + "updated_at": "2026-07-10T10:12:40.873166", + "url": "/v1/software/fogalqrn" +} diff --git a/site/public/v1/software/fogbugz/index.json b/site/public/v1/software/fogbugz/index.json new file mode 100644 index 000000000000..12281ebbd2b4 --- /dev/null +++ b/site/public/v1/software/fogbugz/index.json @@ -0,0 +1,21 @@ +{ + "id": 3458, + "slug": "fogbugz", + "name": "FogBugz", + "release_date": null, + "developers": [ + "Glitch, Inc." + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5464038" + ], + "created_at": "2026-07-10T10:12:40.873166", + "updated_at": "2026-07-10T10:12:40.873166", + "url": "/v1/software/fogbugz" +} diff --git a/site/public/v1/software/foldersize/index.json b/site/public/v1/software/foldersize/index.json new file mode 100644 index 000000000000..ebd40fefd714 --- /dev/null +++ b/site/public/v1/software/foldersize/index.json @@ -0,0 +1,19 @@ +{ + "id": 3459, + "slug": "foldersize", + "name": "FolderSize", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5464284" + ], + "created_at": "2026-07-10T10:12:40.873166", + "updated_at": "2026-07-10T10:12:40.873166", + "url": "/v1/software/foldersize" +} diff --git a/site/public/v1/software/foldseek/index.json b/site/public/v1/software/foldseek/index.json new file mode 100644 index 000000000000..5357fc78b733 --- /dev/null +++ b/site/public/v1/software/foldseek/index.json @@ -0,0 +1,19 @@ +{ + "id": 3460, + "slug": "foldseek", + "name": "foldseek", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q114840749" + ], + "created_at": "2026-07-10T10:12:40.873166", + "updated_at": "2026-07-10T10:12:40.873166", + "url": "/v1/software/foldseek" +} diff --git a/site/public/v1/software/foldx/index.json b/site/public/v1/software/foldx/index.json new file mode 100644 index 000000000000..b4c71377d806 --- /dev/null +++ b/site/public/v1/software/foldx/index.json @@ -0,0 +1,19 @@ +{ + "id": 3461, + "slug": "foldx", + "name": "FoldX", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5464253" + ], + "created_at": "2026-07-10T10:12:40.874196", + "updated_at": "2026-07-10T10:12:40.874196", + "url": "/v1/software/foldx" +} diff --git a/site/public/v1/software/foliot/index.json b/site/public/v1/software/foliot/index.json new file mode 100644 index 000000000000..2679c88529d3 --- /dev/null +++ b/site/public/v1/software/foliot/index.json @@ -0,0 +1,19 @@ +{ + "id": 3462, + "slug": "foliot", + "name": "Foliot", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76182959" + ], + "created_at": "2026-07-10T10:12:40.874196", + "updated_at": "2026-07-10T10:12:40.874196", + "url": "/v1/software/foliot" +} diff --git a/site/public/v1/software/folker/index.json b/site/public/v1/software/folker/index.json new file mode 100644 index 000000000000..90601e5b82e1 --- /dev/null +++ b/site/public/v1/software/folker/index.json @@ -0,0 +1,23 @@ +{ + "id": 3463, + "slug": "folker", + "name": "Folker", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "GNU General Public License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105076386" + ], + "created_at": "2026-07-10T10:12:40.875179", + "updated_at": "2026-07-10T10:12:40.875179", + "url": "/v1/software/folker" +} diff --git a/site/public/v1/software/fonema/index.json b/site/public/v1/software/fonema/index.json new file mode 100644 index 000000000000..6238f6ec15fc --- /dev/null +++ b/site/public/v1/software/fonema/index.json @@ -0,0 +1,19 @@ +{ + "id": 3464, + "slug": "fonema", + "name": "Fonema", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138497490" + ], + "created_at": "2026-07-10T10:12:40.875179", + "updated_at": "2026-07-10T10:12:40.875179", + "url": "/v1/software/fonema" +} diff --git a/site/public/v1/software/font-bomb/index.json b/site/public/v1/software/font-bomb/index.json new file mode 100644 index 000000000000..d6c6c5f58252 --- /dev/null +++ b/site/public/v1/software/font-bomb/index.json @@ -0,0 +1,19 @@ +{ + "id": 3465, + "slug": "font-bomb", + "name": "Font Bomb", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60775911" + ], + "created_at": "2026-07-10T10:12:40.875179", + "updated_at": "2026-07-10T10:12:40.875179", + "url": "/v1/software/font-bomb" +} diff --git a/site/public/v1/software/font-book/index.json b/site/public/v1/software/font-book/index.json new file mode 100644 index 000000000000..1e48e6d1bc3f --- /dev/null +++ b/site/public/v1/software/font-book/index.json @@ -0,0 +1,21 @@ +{ + "id": 3466, + "slug": "font-book", + "name": "Font Book", + "release_date": null, + "developers": [ + "Apple Inc." + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2252819" + ], + "created_at": "2026-07-10T10:12:40.875179", + "updated_at": "2026-07-10T10:12:40.875179", + "url": "/v1/software/font-book" +} diff --git a/site/public/v1/software/font-fusion/index.json b/site/public/v1/software/font-fusion/index.json new file mode 100644 index 000000000000..267cdbe16d1d --- /dev/null +++ b/site/public/v1/software/font-fusion/index.json @@ -0,0 +1,21 @@ +{ + "id": 3467, + "slug": "font-fusion", + "name": "Font Fusion", + "release_date": "1999-10-01", + "developers": [ + "Bitstream Inc." + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5465082" + ], + "created_at": "2026-07-10T10:12:40.876171", + "updated_at": "2026-07-10T10:12:40.876171", + "url": "/v1/software/font-fusion" +} diff --git a/site/public/v1/software/font-util/index.json b/site/public/v1/software/font-util/index.json new file mode 100644 index 000000000000..566cbbc93518 --- /dev/null +++ b/site/public/v1/software/font-util/index.json @@ -0,0 +1,19 @@ +{ + "id": 3468, + "slug": "font-util", + "name": "font-util", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974854" + ], + "created_at": "2026-07-10T10:12:40.876171", + "updated_at": "2026-07-10T10:12:40.876171", + "url": "/v1/software/font-util" +} diff --git a/site/public/v1/software/fontcreator/index.json b/site/public/v1/software/fontcreator/index.json new file mode 100644 index 000000000000..c26054dcd1c4 --- /dev/null +++ b/site/public/v1/software/fontcreator/index.json @@ -0,0 +1,19 @@ +{ + "id": 3469, + "slug": "fontcreator", + "name": "FontCreator", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q12654602" + ], + "created_at": "2026-07-10T10:12:40.876171", + "updated_at": "2026-07-10T10:12:40.876171", + "url": "/v1/software/fontcreator" +} diff --git a/site/public/v1/software/fontlab/index.json b/site/public/v1/software/fontlab/index.json new file mode 100644 index 000000000000..8a3f86f635c7 --- /dev/null +++ b/site/public/v1/software/fontlab/index.json @@ -0,0 +1,19 @@ +{ + "id": 3470, + "slug": "fontlab", + "name": "FontLab", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q453290" + ], + "created_at": "2026-07-10T10:12:40.879111", + "updated_at": "2026-07-10T10:12:40.879111", + "url": "/v1/software/fontlab" +} diff --git a/site/public/v1/software/foodnotify/index.json b/site/public/v1/software/foodnotify/index.json new file mode 100644 index 000000000000..64184569f196 --- /dev/null +++ b/site/public/v1/software/foodnotify/index.json @@ -0,0 +1,19 @@ +{ + "id": 3471, + "slug": "foodnotify", + "name": "FoodNotify", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q26252912" + ], + "created_at": "2026-07-10T10:12:40.880120", + "updated_at": "2026-07-10T10:12:40.880120", + "url": "/v1/software/foodnotify" +} diff --git a/site/public/v1/software/football-manager-2017-in-game-editor/index.json b/site/public/v1/software/football-manager-2017-in-game-editor/index.json new file mode 100644 index 000000000000..5799c2b06bd8 --- /dev/null +++ b/site/public/v1/software/football-manager-2017-in-game-editor/index.json @@ -0,0 +1,19 @@ +{ + "id": 3472, + "slug": "football-manager-2017-in-game-editor", + "name": "Football Manager 2017 In-Game Editor", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q85232443" + ], + "created_at": "2026-07-10T10:12:40.881165", + "updated_at": "2026-07-10T10:12:40.881165", + "url": "/v1/software/football-manager-2017-in-game-editor" +} diff --git a/site/public/v1/software/football-manager-2018-in-game-editor/index.json b/site/public/v1/software/football-manager-2018-in-game-editor/index.json new file mode 100644 index 000000000000..cb63b2afb0ef --- /dev/null +++ b/site/public/v1/software/football-manager-2018-in-game-editor/index.json @@ -0,0 +1,19 @@ +{ + "id": 3473, + "slug": "football-manager-2018-in-game-editor", + "name": "Football Manager 2018 - In-Game Editor", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q85232519" + ], + "created_at": "2026-07-10T10:12:40.882178", + "updated_at": "2026-07-10T10:12:40.882178", + "url": "/v1/software/football-manager-2018-in-game-editor" +} diff --git a/site/public/v1/software/footbayes-r-package/index.json b/site/public/v1/software/footbayes-r-package/index.json new file mode 100644 index 000000000000..15ed46238dcf --- /dev/null +++ b/site/public/v1/software/footbayes-r-package/index.json @@ -0,0 +1,19 @@ +{ + "id": 3474, + "slug": "footbayes-r-package", + "name": "footBayes (R package)", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136324425" + ], + "created_at": "2026-07-10T10:12:40.884182", + "updated_at": "2026-07-10T10:12:40.884182", + "url": "/v1/software/footbayes-r-package" +} diff --git a/site/public/v1/software/fooya/index.json b/site/public/v1/software/fooya/index.json new file mode 100644 index 000000000000..59fcd1649cc0 --- /dev/null +++ b/site/public/v1/software/fooya/index.json @@ -0,0 +1,21 @@ +{ + "id": 3475, + "slug": "fooya", + "name": "Fooya", + "release_date": null, + "developers": [ + "FriendsLearn" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22077809" + ], + "created_at": "2026-07-10T10:12:40.888186", + "updated_at": "2026-07-10T10:12:40.888186", + "url": "/v1/software/fooya" +} diff --git a/site/public/v1/software/foran-system/index.json b/site/public/v1/software/foran-system/index.json new file mode 100644 index 000000000000..110ba247a5d7 --- /dev/null +++ b/site/public/v1/software/foran-system/index.json @@ -0,0 +1,23 @@ +{ + "id": 3476, + "slug": "foran-system", + "name": "FORAN System", + "release_date": null, + "developers": [ + "Sener" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6129601" + ], + "created_at": "2026-07-10T10:12:40.890324", + "updated_at": "2026-07-10T10:12:40.890324", + "url": "/v1/software/foran-system" +} diff --git a/site/public/v1/software/ford-sync/index.json b/site/public/v1/software/ford-sync/index.json new file mode 100644 index 000000000000..a3817ac424d2 --- /dev/null +++ b/site/public/v1/software/ford-sync/index.json @@ -0,0 +1,23 @@ +{ + "id": 3477, + "slug": "ford-sync", + "name": "Ford Sync", + "release_date": null, + "developers": [ + "Ford Motor Company" + ], + "publishers": [], + "operating_systems": [ + "Windows Embedded Automotive" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4038903" + ], + "created_at": "2026-07-10T10:12:40.891193", + "updated_at": "2026-07-10T10:12:40.891193", + "url": "/v1/software/ford-sync" +} diff --git a/site/public/v1/software/fordisc/index.json b/site/public/v1/software/fordisc/index.json new file mode 100644 index 000000000000..bcbab5a02bab --- /dev/null +++ b/site/public/v1/software/fordisc/index.json @@ -0,0 +1,19 @@ +{ + "id": 3478, + "slug": "fordisc", + "name": "FORDISC", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5426876" + ], + "created_at": "2026-07-10T10:12:40.893207", + "updated_at": "2026-07-10T10:12:40.893207", + "url": "/v1/software/fordisc" +} diff --git a/site/public/v1/software/fore-coffee/index.json b/site/public/v1/software/fore-coffee/index.json new file mode 100644 index 000000000000..862e30088edf --- /dev/null +++ b/site/public/v1/software/fore-coffee/index.json @@ -0,0 +1,21 @@ +{ + "id": 3479, + "slug": "fore-coffee", + "name": "Fore Coffee", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "iOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q66424373" + ], + "created_at": "2026-07-10T10:12:40.894297", + "updated_at": "2026-07-10T10:12:40.894297", + "url": "/v1/software/fore-coffee" +} diff --git a/site/public/v1/software/foreflight/index.json b/site/public/v1/software/foreflight/index.json new file mode 100644 index 000000000000..f5a98cb36848 --- /dev/null +++ b/site/public/v1/software/foreflight/index.json @@ -0,0 +1,19 @@ +{ + "id": 3480, + "slug": "foreflight", + "name": "ForeFlight", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116745307" + ], + "created_at": "2026-07-10T10:12:40.895466", + "updated_at": "2026-07-10T10:12:40.895466", + "url": "/v1/software/foreflight" +} diff --git a/site/public/v1/software/forefront-identity-manager/index.json b/site/public/v1/software/forefront-identity-manager/index.json new file mode 100644 index 000000000000..42d578415d5e --- /dev/null +++ b/site/public/v1/software/forefront-identity-manager/index.json @@ -0,0 +1,21 @@ +{ + "id": 3481, + "slug": "forefront-identity-manager", + "name": "Forefront Identity Manager", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5468182" + ], + "created_at": "2026-07-10T10:12:40.896390", + "updated_at": "2026-07-10T10:12:40.896390", + "url": "/v1/software/forefront-identity-manager" +} diff --git a/site/public/v1/software/forensic-toolkit/index.json b/site/public/v1/software/forensic-toolkit/index.json new file mode 100644 index 000000000000..732154c052fa --- /dev/null +++ b/site/public/v1/software/forensic-toolkit/index.json @@ -0,0 +1,21 @@ +{ + "id": 3482, + "slug": "forensic-toolkit", + "name": "Forensic Toolkit", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5468696" + ], + "created_at": "2026-07-10T10:12:40.898697", + "updated_at": "2026-07-10T10:12:40.898697", + "url": "/v1/software/forensic-toolkit" +} diff --git a/site/public/v1/software/forest/index.json b/site/public/v1/software/forest/index.json new file mode 100644 index 000000000000..91b4f115d828 --- /dev/null +++ b/site/public/v1/software/forest/index.json @@ -0,0 +1,19 @@ +{ + "id": 3483, + "slug": "forest", + "name": "Forest", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105663890" + ], + "created_at": "2026-07-10T10:12:40.898697", + "updated_at": "2026-07-10T10:12:40.898697", + "url": "/v1/software/forest" +} diff --git a/site/public/v1/software/foreui/index.json b/site/public/v1/software/foreui/index.json new file mode 100644 index 000000000000..0aa2a2e88de5 --- /dev/null +++ b/site/public/v1/software/foreui/index.json @@ -0,0 +1,21 @@ +{ + "id": 3484, + "slug": "foreui", + "name": "ForeUI", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5468125" + ], + "created_at": "2026-07-10T10:12:40.899740", + "updated_at": "2026-07-10T10:12:40.899740", + "url": "/v1/software/foreui" +} diff --git a/site/public/v1/software/forge/index.json b/site/public/v1/software/forge/index.json new file mode 100644 index 000000000000..eea115be053d --- /dev/null +++ b/site/public/v1/software/forge/index.json @@ -0,0 +1,21 @@ +{ + "id": 3485, + "slug": "forge", + "name": "Forge", + "release_date": null, + "developers": [ + "iTmethods Inc." + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139255636" + ], + "created_at": "2026-07-10T10:12:40.900697", + "updated_at": "2026-07-10T10:12:40.900697", + "url": "/v1/software/forge" +} diff --git a/site/public/v1/software/form-builder/index.json b/site/public/v1/software/form-builder/index.json new file mode 100644 index 000000000000..7d410d1f2e8b --- /dev/null +++ b/site/public/v1/software/form-builder/index.json @@ -0,0 +1,19 @@ +{ + "id": 3486, + "slug": "form-builder", + "name": "form builder", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137737872" + ], + "created_at": "2026-07-10T10:12:40.901657", + "updated_at": "2026-07-10T10:12:40.901657", + "url": "/v1/software/form-builder" +} diff --git a/site/public/v1/software/form-faces/index.json b/site/public/v1/software/form-faces/index.json new file mode 100644 index 000000000000..eca13be83ffa --- /dev/null +++ b/site/public/v1/software/form-faces/index.json @@ -0,0 +1,19 @@ +{ + "id": 3487, + "slug": "form-faces", + "name": "Form Faces", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5469916" + ], + "created_at": "2026-07-10T10:12:40.901657", + "updated_at": "2026-07-10T10:12:40.901657", + "url": "/v1/software/form-faces" +} diff --git a/site/public/v1/software/form-z/index.json b/site/public/v1/software/form-z/index.json new file mode 100644 index 000000000000..c1cbdcd025a0 --- /dev/null +++ b/site/public/v1/software/form-z/index.json @@ -0,0 +1,19 @@ +{ + "id": 3488, + "slug": "form-z", + "name": "Form-Z", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3077316" + ], + "created_at": "2026-07-10T10:12:40.903642", + "updated_at": "2026-07-10T10:12:40.903642", + "url": "/v1/software/form-z" +} diff --git a/site/public/v1/software/format-udf/index.json b/site/public/v1/software/format-udf/index.json new file mode 100644 index 000000000000..6beddc45e97f --- /dev/null +++ b/site/public/v1/software/format-udf/index.json @@ -0,0 +1,23 @@ +{ + "id": 3489, + "slug": "format-udf", + "name": "format-udf", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "GNU Bash" + ], + "licenses": [ + "GNU General Public License, version 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107574655" + ], + "created_at": "2026-07-10T10:12:40.903642", + "updated_at": "2026-07-10T10:12:40.903642", + "url": "/v1/software/format-udf" +} diff --git a/site/public/v1/software/formatdb/index.json b/site/public/v1/software/formatdb/index.json new file mode 100644 index 000000000000..ff5a753ffce9 --- /dev/null +++ b/site/public/v1/software/formatdb/index.json @@ -0,0 +1,19 @@ +{ + "id": 3490, + "slug": "formatdb", + "name": "formatdb", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4286442" + ], + "created_at": "2026-07-10T10:12:40.903642", + "updated_at": "2026-07-10T10:12:40.903642", + "url": "/v1/software/formatdb" +} diff --git a/site/public/v1/software/formatfactory/index.json b/site/public/v1/software/formatfactory/index.json new file mode 100644 index 000000000000..40e27ee6b37e --- /dev/null +++ b/site/public/v1/software/formatfactory/index.json @@ -0,0 +1,21 @@ +{ + "id": 3491, + "slug": "formatfactory", + "name": "FormatFactory", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "adware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2582499" + ], + "created_at": "2026-07-10T10:12:40.904685", + "updated_at": "2026-07-10T10:12:40.904685", + "url": "/v1/software/formatfactory" +} diff --git a/site/public/v1/software/formatted-file-system/index.json b/site/public/v1/software/formatted-file-system/index.json new file mode 100644 index 000000000000..e7c3273b549e --- /dev/null +++ b/site/public/v1/software/formatted-file-system/index.json @@ -0,0 +1,19 @@ +{ + "id": 3492, + "slug": "formatted-file-system", + "name": "Formatted File System", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5470057" + ], + "created_at": "2026-07-10T10:12:40.905642", + "updated_at": "2026-07-10T10:12:40.905642", + "url": "/v1/software/formatted-file-system" +} diff --git a/site/public/v1/software/formbox/index.json b/site/public/v1/software/formbox/index.json new file mode 100644 index 000000000000..bc889f85a808 --- /dev/null +++ b/site/public/v1/software/formbox/index.json @@ -0,0 +1,21 @@ +{ + "id": 3493, + "slug": "formbox", + "name": "Formbox", + "release_date": null, + "developers": [ + "Health Samurai" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140066918" + ], + "created_at": "2026-07-10T10:12:40.905642", + "updated_at": "2026-07-10T10:12:40.905642", + "url": "/v1/software/formbox" +} diff --git a/site/public/v1/software/formdev/index.json b/site/public/v1/software/formdev/index.json new file mode 100644 index 000000000000..52d9421f5134 --- /dev/null +++ b/site/public/v1/software/formdev/index.json @@ -0,0 +1,19 @@ +{ + "id": 3494, + "slug": "formdev", + "name": "Formdev", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140249145" + ], + "created_at": "2026-07-10T10:12:40.905642", + "updated_at": "2026-07-10T10:12:40.905642", + "url": "/v1/software/formdev" +} diff --git a/site/public/v1/software/formerly-open-source-or-free-software/index.json b/site/public/v1/software/formerly-open-source-or-free-software/index.json new file mode 100644 index 000000000000..f55aef1dbe98 --- /dev/null +++ b/site/public/v1/software/formerly-open-source-or-free-software/index.json @@ -0,0 +1,19 @@ +{ + "id": 3495, + "slug": "formerly-open-source-or-free-software", + "name": "formerly open-source or free software", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136757662" + ], + "created_at": "2026-07-10T10:12:40.906686", + "updated_at": "2026-07-10T10:12:40.906686", + "url": "/v1/software/formerly-open-source-or-free-software" +} diff --git a/site/public/v1/software/formhug/index.json b/site/public/v1/software/formhug/index.json new file mode 100644 index 000000000000..566787cae2ed --- /dev/null +++ b/site/public/v1/software/formhug/index.json @@ -0,0 +1,19 @@ +{ + "id": 3496, + "slug": "formhug", + "name": "FormHug", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139385399" + ], + "created_at": "2026-07-10T10:12:40.907638", + "updated_at": "2026-07-10T10:12:40.907638", + "url": "/v1/software/formhug" +} diff --git a/site/public/v1/software/formosa-bbs/index.json b/site/public/v1/software/formosa-bbs/index.json new file mode 100644 index 000000000000..3a067dbef57f --- /dev/null +++ b/site/public/v1/software/formosa-bbs/index.json @@ -0,0 +1,19 @@ +{ + "id": 3497, + "slug": "formosa-bbs", + "name": "Formosa BBS", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62598301" + ], + "created_at": "2026-07-10T10:12:40.907638", + "updated_at": "2026-07-10T10:12:40.907638", + "url": "/v1/software/formosa-bbs" +} diff --git a/site/public/v1/software/formspring/index.json b/site/public/v1/software/formspring/index.json new file mode 100644 index 000000000000..06635623fe31 --- /dev/null +++ b/site/public/v1/software/formspring/index.json @@ -0,0 +1,19 @@ +{ + "id": 3498, + "slug": "formspring", + "name": "Formspring", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087807" + ], + "created_at": "2026-07-10T10:12:40.907638", + "updated_at": "2026-07-10T10:12:40.907638", + "url": "/v1/software/formspring" +} diff --git a/site/public/v1/software/fortext/index.json b/site/public/v1/software/fortext/index.json new file mode 100644 index 000000000000..cbffa6ef8550 --- /dev/null +++ b/site/public/v1/software/fortext/index.json @@ -0,0 +1,19 @@ +{ + "id": 3499, + "slug": "fortext", + "name": "forTEXT", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084975" + ], + "created_at": "2026-07-10T10:12:40.908717", + "updated_at": "2026-07-10T10:12:40.908717", + "url": "/v1/software/fortext" +} diff --git a/site/public/v1/software/fortezza/index.json b/site/public/v1/software/fortezza/index.json new file mode 100644 index 000000000000..88760923ca20 --- /dev/null +++ b/site/public/v1/software/fortezza/index.json @@ -0,0 +1,21 @@ +{ + "id": 3500, + "slug": "fortezza", + "name": "Fortezza", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [ + "information security" + ], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5472575" + ], + "created_at": "2026-07-10T10:12:40.908717", + "updated_at": "2026-07-10T10:12:40.908717", + "url": "/v1/software/fortezza" +} diff --git a/site/public/v1/software/forthcast/index.json b/site/public/v1/software/forthcast/index.json new file mode 100644 index 000000000000..1e30285151b2 --- /dev/null +++ b/site/public/v1/software/forthcast/index.json @@ -0,0 +1,25 @@ +{ + "id": 3501, + "slug": "forthcast", + "name": "Forthcast", + "release_date": null, + "developers": [ + "Forthsuite" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "TypeScript" + ], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139680636" + ], + "created_at": "2026-07-10T10:12:40.908717", + "updated_at": "2026-07-10T10:12:40.908717", + "url": "/v1/software/forthcast" +} diff --git a/site/public/v1/software/forthclear/index.json b/site/public/v1/software/forthclear/index.json new file mode 100644 index 000000000000..b5346c75e2d7 --- /dev/null +++ b/site/public/v1/software/forthclear/index.json @@ -0,0 +1,25 @@ +{ + "id": 3502, + "slug": "forthclear", + "name": "Forthclear", + "release_date": null, + "developers": [ + "Forthsuite" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "TypeScript" + ], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139689445" + ], + "created_at": "2026-07-10T10:12:40.908717", + "updated_at": "2026-07-10T10:12:40.908717", + "url": "/v1/software/forthclear" +} diff --git a/site/public/v1/software/forthmatch/index.json b/site/public/v1/software/forthmatch/index.json new file mode 100644 index 000000000000..f6aa5a86256d --- /dev/null +++ b/site/public/v1/software/forthmatch/index.json @@ -0,0 +1,25 @@ +{ + "id": 3503, + "slug": "forthmatch", + "name": "Forthmatch", + "release_date": null, + "developers": [ + "Forthsuite" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "TypeScript" + ], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139689426" + ], + "created_at": "2026-07-10T10:12:40.908717", + "updated_at": "2026-07-10T10:12:40.908717", + "url": "/v1/software/forthmatch" +} diff --git a/site/public/v1/software/forthroute/index.json b/site/public/v1/software/forthroute/index.json new file mode 100644 index 000000000000..93cea7442d8f --- /dev/null +++ b/site/public/v1/software/forthroute/index.json @@ -0,0 +1,25 @@ +{ + "id": 3504, + "slug": "forthroute", + "name": "Forthroute", + "release_date": null, + "developers": [ + "Forthsuite" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "TypeScript" + ], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139689376" + ], + "created_at": "2026-07-10T10:12:40.908717", + "updated_at": "2026-07-10T10:12:40.908717", + "url": "/v1/software/forthroute" +} diff --git a/site/public/v1/software/forthsource/index.json b/site/public/v1/software/forthsource/index.json new file mode 100644 index 000000000000..a8a945e1e86b --- /dev/null +++ b/site/public/v1/software/forthsource/index.json @@ -0,0 +1,25 @@ +{ + "id": 3505, + "slug": "forthsource", + "name": "Forthsource", + "release_date": null, + "developers": [ + "Forthsuite" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "TypeScript" + ], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139689466" + ], + "created_at": "2026-07-10T10:12:40.910301", + "updated_at": "2026-07-10T10:12:40.910301", + "url": "/v1/software/forthsource" +} diff --git a/site/public/v1/software/forthsuite/index.json b/site/public/v1/software/forthsuite/index.json new file mode 100644 index 000000000000..ce2fb980c620 --- /dev/null +++ b/site/public/v1/software/forthsuite/index.json @@ -0,0 +1,23 @@ +{ + "id": 3506, + "slug": "forthsuite", + "name": "Forthsuite", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "TypeScript" + ], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139532889" + ], + "created_at": "2026-07-10T10:12:40.910301", + "updated_at": "2026-07-10T10:12:40.910301", + "url": "/v1/software/forthsuite" +} diff --git a/site/public/v1/software/fortify-headers/index.json b/site/public/v1/software/fortify-headers/index.json new file mode 100644 index 000000000000..0c29ffed6184 --- /dev/null +++ b/site/public/v1/software/fortify-headers/index.json @@ -0,0 +1,19 @@ +{ + "id": 3507, + "slug": "fortify-headers", + "name": "fortify-headers", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974855" + ], + "created_at": "2026-07-10T10:12:40.910301", + "updated_at": "2026-07-10T10:12:40.910301", + "url": "/v1/software/fortify-headers" +} diff --git a/site/public/v1/software/fortios/index.json b/site/public/v1/software/fortios/index.json new file mode 100644 index 000000000000..c6deab596dfb --- /dev/null +++ b/site/public/v1/software/fortios/index.json @@ -0,0 +1,21 @@ +{ + "id": 3508, + "slug": "fortios", + "name": "FortiOS", + "release_date": null, + "developers": [ + "Fortinet" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q56729972" + ], + "created_at": "2026-07-10T10:12:40.910301", + "updated_at": "2026-07-10T10:12:40.910301", + "url": "/v1/software/fortios" +} diff --git a/site/public/v1/software/fortix-2/index.json b/site/public/v1/software/fortix-2/index.json new file mode 100644 index 000000000000..3b2d7aab7ac5 --- /dev/null +++ b/site/public/v1/software/fortix-2/index.json @@ -0,0 +1,21 @@ +{ + "id": 3509, + "slug": "fortix-2", + "name": "Fortix 2", + "release_date": "2011-05-06", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [ + "action game" + ], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q119983074" + ], + "created_at": "2026-07-10T10:12:40.911420", + "updated_at": "2026-07-10T10:12:40.911420", + "url": "/v1/software/fortix-2" +} diff --git a/site/public/v1/software/fortmp/index.json b/site/public/v1/software/fortmp/index.json new file mode 100644 index 000000000000..e61c59e68d2f --- /dev/null +++ b/site/public/v1/software/fortmp/index.json @@ -0,0 +1,19 @@ +{ + "id": 3510, + "slug": "fortmp", + "name": "FortMP", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5470693" + ], + "created_at": "2026-07-10T10:12:40.915310", + "updated_at": "2026-07-10T10:12:40.915310", + "url": "/v1/software/fortmp" +} diff --git a/site/public/v1/software/fortora-fresh-finance/index.json b/site/public/v1/software/fortora-fresh-finance/index.json new file mode 100644 index 000000000000..6780313685c4 --- /dev/null +++ b/site/public/v1/software/fortora-fresh-finance/index.json @@ -0,0 +1,19 @@ +{ + "id": 3511, + "slug": "fortora-fresh-finance", + "name": "Fortora Fresh Finance", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5472697" + ], + "created_at": "2026-07-10T10:12:40.919420", + "updated_at": "2026-07-10T10:12:40.919420", + "url": "/v1/software/fortora-fresh-finance" +} diff --git a/site/public/v1/software/fortran-builder/index.json b/site/public/v1/software/fortran-builder/index.json new file mode 100644 index 000000000000..4466ad5db52e --- /dev/null +++ b/site/public/v1/software/fortran-builder/index.json @@ -0,0 +1,19 @@ +{ + "id": 3512, + "slug": "fortran-builder", + "name": "Fortran Builder", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11200423" + ], + "created_at": "2026-07-10T10:12:40.923417", + "updated_at": "2026-07-10T10:12:40.923417", + "url": "/v1/software/fortran-builder" +} diff --git a/site/public/v1/software/fortresscraft-evolved/index.json b/site/public/v1/software/fortresscraft-evolved/index.json new file mode 100644 index 000000000000..034e932fb312 --- /dev/null +++ b/site/public/v1/software/fortresscraft-evolved/index.json @@ -0,0 +1,25 @@ +{ + "id": 3513, + "slug": "fortresscraft-evolved", + "name": "FortressCraft Evolved", + "release_date": "2015-11-09", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [ + "adventure video game", + "strategy video game", + "role-playing video game", + "casual game", + "simulation video game" + ], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q89282812" + ], + "created_at": "2026-07-10T10:12:40.926399", + "updated_at": "2026-07-10T10:12:40.926399", + "url": "/v1/software/fortresscraft-evolved" +} diff --git a/site/public/v1/software/fortsp/index.json b/site/public/v1/software/fortsp/index.json new file mode 100644 index 000000000000..f041c7e7243e --- /dev/null +++ b/site/public/v1/software/fortsp/index.json @@ -0,0 +1,19 @@ +{ + "id": 3514, + "slug": "fortsp", + "name": "FortSP", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5470696" + ], + "created_at": "2026-07-10T10:12:40.931397", + "updated_at": "2026-07-10T10:12:40.931397", + "url": "/v1/software/fortsp" +} diff --git a/site/public/v1/software/fortune/index.json b/site/public/v1/software/fortune/index.json new file mode 100644 index 000000000000..89778a504f71 --- /dev/null +++ b/site/public/v1/software/fortune/index.json @@ -0,0 +1,19 @@ +{ + "id": 3515, + "slug": "fortune", + "name": "fortune", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q491498" + ], + "created_at": "2026-07-10T10:12:40.935392", + "updated_at": "2026-07-10T10:12:40.935392", + "url": "/v1/software/fortune" +} diff --git a/site/public/v1/software/forvue/index.json b/site/public/v1/software/forvue/index.json new file mode 100644 index 000000000000..9a3deec15689 --- /dev/null +++ b/site/public/v1/software/forvue/index.json @@ -0,0 +1,23 @@ +{ + "id": 3516, + "slug": "forvue", + "name": "ForVue", + "release_date": null, + "developers": [ + "Wise Capital LLC" + ], + "publishers": [ + "Wise Capital LLC" + ], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138861159" + ], + "created_at": "2026-07-10T10:12:40.941423", + "updated_at": "2026-07-10T10:12:40.941423", + "url": "/v1/software/forvue" +} diff --git a/site/public/v1/software/fossdoc/index.json b/site/public/v1/software/fossdoc/index.json new file mode 100644 index 000000000000..680cc6c72caa --- /dev/null +++ b/site/public/v1/software/fossdoc/index.json @@ -0,0 +1,23 @@ +{ + "id": 3517, + "slug": "fossdoc", + "name": "FossDoc", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4038940" + ], + "created_at": "2026-07-10T10:12:40.942475", + "updated_at": "2026-07-10T10:12:40.942475", + "url": "/v1/software/fossdoc" +} diff --git a/site/public/v1/software/fossilo/index.json b/site/public/v1/software/fossilo/index.json new file mode 100644 index 000000000000..c2396cf91693 --- /dev/null +++ b/site/public/v1/software/fossilo/index.json @@ -0,0 +1,19 @@ +{ + "id": 3518, + "slug": "fossilo", + "name": "Fossilo", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106873542" + ], + "created_at": "2026-07-10T10:12:40.943311", + "updated_at": "2026-07-10T10:12:40.943311", + "url": "/v1/software/fossilo" +} diff --git a/site/public/v1/software/fotomagico/index.json b/site/public/v1/software/fotomagico/index.json new file mode 100644 index 000000000000..598602ee35f6 --- /dev/null +++ b/site/public/v1/software/fotomagico/index.json @@ -0,0 +1,21 @@ +{ + "id": 3519, + "slug": "fotomagico", + "name": "FotoMagico", + "release_date": null, + "developers": [ + "Boinx Software" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1439583" + ], + "created_at": "2026-07-10T10:12:40.945314", + "updated_at": "2026-07-10T10:12:40.945314", + "url": "/v1/software/fotomagico" +} diff --git a/site/public/v1/software/foundry-vtt/index.json b/site/public/v1/software/foundry-vtt/index.json new file mode 100644 index 000000000000..90e886139d75 --- /dev/null +++ b/site/public/v1/software/foundry-vtt/index.json @@ -0,0 +1,19 @@ +{ + "id": 3520, + "slug": "foundry-vtt", + "name": "Foundry VTT", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134716032" + ], + "created_at": "2026-07-10T10:12:40.946328", + "updated_at": "2026-07-10T10:12:40.946328", + "url": "/v1/software/foundry-vtt" +} diff --git a/site/public/v1/software/foxmail/index.json b/site/public/v1/software/foxmail/index.json new file mode 100644 index 000000000000..01a9e20b41d9 --- /dev/null +++ b/site/public/v1/software/foxmail/index.json @@ -0,0 +1,26 @@ +{ + "id": 3521, + "slug": "foxmail", + "name": "Foxmail", + "release_date": null, + "developers": [ + "Zhang Xiaolong", + "Tencent" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Object Pascal" + ], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2718098" + ], + "created_at": "2026-07-10T10:12:40.946328", + "updated_at": "2026-07-10T10:12:40.946328", + "url": "/v1/software/foxmail" +} diff --git a/site/public/v1/software/fping/index.json b/site/public/v1/software/fping/index.json new file mode 100644 index 000000000000..5f62493ff38a --- /dev/null +++ b/site/public/v1/software/fping/index.json @@ -0,0 +1,19 @@ +{ + "id": 3522, + "slug": "fping", + "name": "fping", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62849712" + ], + "created_at": "2026-07-10T10:12:40.946328", + "updated_at": "2026-07-10T10:12:40.946328", + "url": "/v1/software/fping" +} diff --git a/site/public/v1/software/fps-creator/index.json b/site/public/v1/software/fps-creator/index.json new file mode 100644 index 000000000000..269538af0958 --- /dev/null +++ b/site/public/v1/software/fps-creator/index.json @@ -0,0 +1,21 @@ +{ + "id": 3523, + "slug": "fps-creator", + "name": "FPS Creator", + "release_date": null, + "developers": [ + "The Game Creators" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3063380" + ], + "created_at": "2026-07-10T10:12:40.947315", + "updated_at": "2026-07-10T10:12:40.947315", + "url": "/v1/software/fps-creator" +} diff --git a/site/public/v1/software/fractify-aiscan/index.json b/site/public/v1/software/fractify-aiscan/index.json new file mode 100644 index 000000000000..719f681fdca9 --- /dev/null +++ b/site/public/v1/software/fractify-aiscan/index.json @@ -0,0 +1,26 @@ +{ + "id": 3524, + "slug": "fractify-aiscan", + "name": "Fractify AIScan", + "release_date": null, + "developers": [ + "Databoost Sdn Bhd" + ], + "publishers": [], + "operating_systems": [ + "web application", + "iOS" + ], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140027202" + ], + "created_at": "2026-07-10T10:12:40.947315", + "updated_at": "2026-07-10T10:12:40.947315", + "url": "/v1/software/fractify-aiscan" +} diff --git a/site/public/v1/software/fragmotion/index.json b/site/public/v1/software/fragmotion/index.json new file mode 100644 index 000000000000..fb5730f73bce --- /dev/null +++ b/site/public/v1/software/fragmotion/index.json @@ -0,0 +1,19 @@ +{ + "id": 3525, + "slug": "fragmotion", + "name": "fragMOTION", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124423755" + ], + "created_at": "2026-07-10T10:12:40.947315", + "updated_at": "2026-07-10T10:12:40.947315", + "url": "/v1/software/fragmotion" +} diff --git a/site/public/v1/software/framakey/index.json b/site/public/v1/software/framakey/index.json new file mode 100644 index 000000000000..594d7297eb1b --- /dev/null +++ b/site/public/v1/software/framakey/index.json @@ -0,0 +1,21 @@ +{ + "id": 3526, + "slug": "framakey", + "name": "Framakey", + "release_date": null, + "developers": [ + "Framasoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28147459" + ], + "created_at": "2026-07-10T10:12:40.948314", + "updated_at": "2026-07-10T10:12:40.948314", + "url": "/v1/software/framakey" +} diff --git a/site/public/v1/software/frameforge-3d-studio/index.json b/site/public/v1/software/frameforge-3d-studio/index.json new file mode 100644 index 000000000000..2dbfb034df3b --- /dev/null +++ b/site/public/v1/software/frameforge-3d-studio/index.json @@ -0,0 +1,19 @@ +{ + "id": 3527, + "slug": "frameforge-3d-studio", + "name": "FrameForge 3D Studio", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5477872" + ], + "created_at": "2026-07-10T10:12:40.948314", + "updated_at": "2026-07-10T10:12:40.948314", + "url": "/v1/software/frameforge-3d-studio" +} diff --git a/site/public/v1/software/framework-for-integrated-test/index.json b/site/public/v1/software/framework-for-integrated-test/index.json new file mode 100644 index 000000000000..f678ce804122 --- /dev/null +++ b/site/public/v1/software/framework-for-integrated-test/index.json @@ -0,0 +1,19 @@ +{ + "id": 3528, + "slug": "framework-for-integrated-test", + "name": "Framework for Integrated Test", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q572630" + ], + "created_at": "2026-07-10T10:12:40.948314", + "updated_at": "2026-07-10T10:12:40.948314", + "url": "/v1/software/framework-for-integrated-test" +} diff --git a/site/public/v1/software/framsticks/index.json b/site/public/v1/software/framsticks/index.json new file mode 100644 index 000000000000..5b924272ad9f --- /dev/null +++ b/site/public/v1/software/framsticks/index.json @@ -0,0 +1,19 @@ +{ + "id": 3529, + "slug": "framsticks", + "name": "Framsticks", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5478064" + ], + "created_at": "2026-07-10T10:12:40.949313", + "updated_at": "2026-07-10T10:12:40.949313", + "url": "/v1/software/framsticks" +} diff --git a/site/public/v1/software/franca-idl/index.json b/site/public/v1/software/franca-idl/index.json new file mode 100644 index 000000000000..a255e0d35dd0 --- /dev/null +++ b/site/public/v1/software/franca-idl/index.json @@ -0,0 +1,21 @@ +{ + "id": 3530, + "slug": "franca-idl", + "name": "Franca IDL", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Eclipse Public License 1.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5478242" + ], + "created_at": "2026-07-10T10:12:40.949313", + "updated_at": "2026-07-10T10:12:40.949313", + "url": "/v1/software/franca-idl" +} diff --git a/site/public/v1/software/frankki-mcp/index.json b/site/public/v1/software/frankki-mcp/index.json new file mode 100644 index 000000000000..54dc681a5e56 --- /dev/null +++ b/site/public/v1/software/frankki-mcp/index.json @@ -0,0 +1,19 @@ +{ + "id": 3531, + "slug": "frankki-mcp", + "name": "FrankKi MCP", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140435022" + ], + "created_at": "2026-07-10T10:12:40.950314", + "updated_at": "2026-07-10T10:12:40.950314", + "url": "/v1/software/frankki-mcp" +} diff --git a/site/public/v1/software/franklin-planner/index.json b/site/public/v1/software/franklin-planner/index.json new file mode 100644 index 000000000000..fbd96555a05a --- /dev/null +++ b/site/public/v1/software/franklin-planner/index.json @@ -0,0 +1,19 @@ +{ + "id": 3532, + "slug": "franklin-planner", + "name": "Franklin Planner", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5491760" + ], + "created_at": "2026-07-10T10:12:40.950314", + "updated_at": "2026-07-10T10:12:40.950314", + "url": "/v1/software/franklin-planner" +} diff --git a/site/public/v1/software/frantext-stella/index.json b/site/public/v1/software/frantext-stella/index.json new file mode 100644 index 000000000000..851be4842ec1 --- /dev/null +++ b/site/public/v1/software/frantext-stella/index.json @@ -0,0 +1,19 @@ +{ + "id": 3533, + "slug": "frantext-stella", + "name": "FRANTEXT / Stella", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084976" + ], + "created_at": "2026-07-10T10:12:40.950314", + "updated_at": "2026-07-10T10:12:40.950314", + "url": "/v1/software/frantext-stella" +} diff --git a/site/public/v1/software/franz-lisp/index.json b/site/public/v1/software/franz-lisp/index.json new file mode 100644 index 000000000000..56270e910a18 --- /dev/null +++ b/site/public/v1/software/franz-lisp/index.json @@ -0,0 +1,19 @@ +{ + "id": 3534, + "slug": "franz-lisp", + "name": "Franz Lisp", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5492884" + ], + "created_at": "2026-07-10T10:12:40.950314", + "updated_at": "2026-07-10T10:12:40.950314", + "url": "/v1/software/franz-lisp" +} diff --git a/site/public/v1/software/fraunhofer-opensource-sensorthings-server/index.json b/site/public/v1/software/fraunhofer-opensource-sensorthings-server/index.json new file mode 100644 index 000000000000..f9c67fb26406 --- /dev/null +++ b/site/public/v1/software/fraunhofer-opensource-sensorthings-server/index.json @@ -0,0 +1,25 @@ +{ + "id": 3535, + "slug": "fraunhofer-opensource-sensorthings-server", + "name": "FRaunhofer Opensource SensorThings-Server", + "release_date": null, + "developers": [ + "Fraunhofer Institute of Optronics, System Technologies and Image Exploitation" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Java" + ], + "licenses": [ + "GNU Lesser General Public License, version 3.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124361086" + ], + "created_at": "2026-07-10T10:12:40.951378", + "updated_at": "2026-07-10T10:12:40.951378", + "url": "/v1/software/fraunhofer-opensource-sensorthings-server" +} diff --git a/site/public/v1/software/fred-optical-engineering-software/index.json b/site/public/v1/software/fred-optical-engineering-software/index.json new file mode 100644 index 000000000000..a0a78d00f45d --- /dev/null +++ b/site/public/v1/software/fred-optical-engineering-software/index.json @@ -0,0 +1,23 @@ +{ + "id": 3536, + "slug": "fred-optical-engineering-software", + "name": "Fred Optical Engineering Software", + "release_date": null, + "developers": [ + "Photon Engineering" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5496032" + ], + "created_at": "2026-07-10T10:12:40.951378", + "updated_at": "2026-07-10T10:12:40.951378", + "url": "/v1/software/fred-optical-engineering-software" +} diff --git a/site/public/v1/software/free-avi-video-converter/index.json b/site/public/v1/software/free-avi-video-converter/index.json new file mode 100644 index 000000000000..e8d2866bcf09 --- /dev/null +++ b/site/public/v1/software/free-avi-video-converter/index.json @@ -0,0 +1,23 @@ +{ + "id": 3537, + "slug": "free-avi-video-converter", + "name": "Free AVI Video Converter", + "release_date": null, + "developers": [ + "DVDVideoSoft" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16993803" + ], + "created_at": "2026-07-10T10:12:40.951378", + "updated_at": "2026-07-10T10:12:40.951378", + "url": "/v1/software/free-avi-video-converter" +} diff --git a/site/public/v1/software/free-protocol/index.json b/site/public/v1/software/free-protocol/index.json new file mode 100644 index 000000000000..fd7f1c9bd62d --- /dev/null +++ b/site/public/v1/software/free-protocol/index.json @@ -0,0 +1,19 @@ +{ + "id": 3538, + "slug": "free-protocol", + "name": "Free protocol", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5500276" + ], + "created_at": "2026-07-10T10:12:40.952410", + "updated_at": "2026-07-10T10:12:40.952410", + "url": "/v1/software/free-protocol" +} diff --git a/site/public/v1/software/free-radio-network/index.json b/site/public/v1/software/free-radio-network/index.json new file mode 100644 index 000000000000..73182090908b --- /dev/null +++ b/site/public/v1/software/free-radio-network/index.json @@ -0,0 +1,26 @@ +{ + "id": 3539, + "slug": "free-radio-network", + "name": "Free Radio Network", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [ + "Delphi" + ], + "licenses": [ + "proprietary license", + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1453410" + ], + "created_at": "2026-07-10T10:12:40.952410", + "updated_at": "2026-07-10T10:12:40.952410", + "url": "/v1/software/free-radio-network" +} diff --git a/site/public/v1/software/free-software-adoption-cases/index.json b/site/public/v1/software/free-software-adoption-cases/index.json new file mode 100644 index 000000000000..f57cc980a530 --- /dev/null +++ b/site/public/v1/software/free-software-adoption-cases/index.json @@ -0,0 +1,19 @@ +{ + "id": 3540, + "slug": "free-software-adoption-cases", + "name": "Free software adoption cases", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3605581" + ], + "created_at": "2026-07-10T10:12:40.952410", + "updated_at": "2026-07-10T10:12:40.952410", + "url": "/v1/software/free-software-adoption-cases" +} diff --git a/site/public/v1/software/free-standard/index.json b/site/public/v1/software/free-standard/index.json new file mode 100644 index 000000000000..05cb0917bf10 --- /dev/null +++ b/site/public/v1/software/free-standard/index.json @@ -0,0 +1,19 @@ +{ + "id": 3541, + "slug": "free-standard", + "name": "Free standard", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5500303" + ], + "created_at": "2026-07-10T10:12:40.952410", + "updated_at": "2026-07-10T10:12:40.952410", + "url": "/v1/software/free-standard" +} diff --git a/site/public/v1/software/free-youtube-to-mp3-converter/index.json b/site/public/v1/software/free-youtube-to-mp3-converter/index.json new file mode 100644 index 000000000000..426be7c4ab94 --- /dev/null +++ b/site/public/v1/software/free-youtube-to-mp3-converter/index.json @@ -0,0 +1,19 @@ +{ + "id": 3542, + "slug": "free-youtube-to-mp3-converter", + "name": "Free YouTube to MP3 Converter", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q13602919" + ], + "created_at": "2026-07-10T10:12:40.953391", + "updated_at": "2026-07-10T10:12:40.953391", + "url": "/v1/software/free-youtube-to-mp3-converter" +} diff --git a/site/public/v1/software/free/index.json b/site/public/v1/software/free/index.json new file mode 100644 index 000000000000..68b343d91de5 --- /dev/null +++ b/site/public/v1/software/free/index.json @@ -0,0 +1,19 @@ +{ + "id": 3543, + "slug": "free", + "name": "free", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3087262" + ], + "created_at": "2026-07-10T10:12:40.953391", + "updated_at": "2026-07-10T10:12:40.953391", + "url": "/v1/software/free" +} diff --git a/site/public/v1/software/freedcamp/index.json b/site/public/v1/software/freedcamp/index.json new file mode 100644 index 000000000000..90553769c712 --- /dev/null +++ b/site/public/v1/software/freedcamp/index.json @@ -0,0 +1,19 @@ +{ + "id": 3544, + "slug": "freedcamp", + "name": "Freedcamp", + "release_date": "2010-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3087308" + ], + "created_at": "2026-07-10T10:12:40.954385", + "updated_at": "2026-07-10T10:12:40.954385", + "url": "/v1/software/freedcamp" +} diff --git a/site/public/v1/software/freedomerp/index.json b/site/public/v1/software/freedomerp/index.json new file mode 100644 index 000000000000..b734dc98068b --- /dev/null +++ b/site/public/v1/software/freedomerp/index.json @@ -0,0 +1,19 @@ +{ + "id": 3545, + "slug": "freedomerp", + "name": "FreedomERP", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10285853" + ], + "created_at": "2026-07-10T10:12:40.954385", + "updated_at": "2026-07-10T10:12:40.954385", + "url": "/v1/software/freedomerp" +} diff --git a/site/public/v1/software/freefem/index.json b/site/public/v1/software/freefem/index.json new file mode 100644 index 000000000000..f75a5070213e --- /dev/null +++ b/site/public/v1/software/freefem/index.json @@ -0,0 +1,25 @@ +{ + "id": 3546, + "slug": "freefem", + "name": "FreeFem++", + "release_date": "1987-01-01", + "developers": [ + "Pierre Jolivet", + "Frédéric Hecht", + "Pierre and Marie Curie University" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "GNU Lesser General Public License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5499643" + ], + "created_at": "2026-07-10T10:12:40.954385", + "updated_at": "2026-07-10T10:12:40.954385", + "url": "/v1/software/freefem" +} diff --git a/site/public/v1/software/freeform/index.json b/site/public/v1/software/freeform/index.json new file mode 100644 index 000000000000..e77a76d67545 --- /dev/null +++ b/site/public/v1/software/freeform/index.json @@ -0,0 +1,24 @@ +{ + "id": 3547, + "slug": "freeform", + "name": "Freeform", + "release_date": "2022-12-13", + "developers": [], + "publishers": [], + "operating_systems": [ + "visionOS", + "iPadOS", + "iOS", + "macOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115917025" + ], + "created_at": "2026-07-10T10:12:40.954385", + "updated_at": "2026-07-10T10:12:40.954385", + "url": "/v1/software/freeform" +} diff --git a/site/public/v1/software/freeglut/index.json b/site/public/v1/software/freeglut/index.json new file mode 100644 index 000000000000..a3fbde9187a7 --- /dev/null +++ b/site/public/v1/software/freeglut/index.json @@ -0,0 +1,21 @@ +{ + "id": 3548, + "slug": "freeglut", + "name": "Freeglut", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1948592" + ], + "created_at": "2026-07-10T10:12:40.955356", + "updated_at": "2026-07-10T10:12:40.955356", + "url": "/v1/software/freeglut" +} diff --git a/site/public/v1/software/freemail/index.json b/site/public/v1/software/freemail/index.json new file mode 100644 index 000000000000..d8d203133e5f --- /dev/null +++ b/site/public/v1/software/freemail/index.json @@ -0,0 +1,21 @@ +{ + "id": 3549, + "slug": "freemail", + "name": "Freemail", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "GNU General Public License, version 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974856" + ], + "created_at": "2026-07-10T10:12:40.955356", + "updated_at": "2026-07-10T10:12:40.955356", + "url": "/v1/software/freemail" +} diff --git a/site/public/v1/software/freemake-audio-converter/index.json b/site/public/v1/software/freemake-audio-converter/index.json new file mode 100644 index 000000000000..dff5f2ceac66 --- /dev/null +++ b/site/public/v1/software/freemake-audio-converter/index.json @@ -0,0 +1,21 @@ +{ + "id": 3550, + "slug": "freemake-audio-converter", + "name": "Freemake Audio Converter", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1326156" + ], + "created_at": "2026-07-10T10:12:40.955356", + "updated_at": "2026-07-10T10:12:40.955356", + "url": "/v1/software/freemake-audio-converter" +} diff --git a/site/public/v1/software/freemake-music-box/index.json b/site/public/v1/software/freemake-music-box/index.json new file mode 100644 index 000000000000..61f6c2852832 --- /dev/null +++ b/site/public/v1/software/freemake-music-box/index.json @@ -0,0 +1,21 @@ +{ + "id": 3551, + "slug": "freemake-music-box", + "name": "Freemake Music Box", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5500966" + ], + "created_at": "2026-07-10T10:12:40.956400", + "updated_at": "2026-07-10T10:12:40.956400", + "url": "/v1/software/freemake-music-box" +} diff --git a/site/public/v1/software/freemake-video-downloader/index.json b/site/public/v1/software/freemake-video-downloader/index.json new file mode 100644 index 000000000000..e459d38cd42b --- /dev/null +++ b/site/public/v1/software/freemake-video-downloader/index.json @@ -0,0 +1,25 @@ +{ + "id": 3552, + "slug": "freemake-video-downloader", + "name": "Freemake Video Downloader", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Windows 8.1", + "Windows 7", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1453571" + ], + "created_at": "2026-07-10T10:12:40.956400", + "updated_at": "2026-07-10T10:12:40.956400", + "url": "/v1/software/freemake-video-downloader" +} diff --git a/site/public/v1/software/freeproxy/index.json b/site/public/v1/software/freeproxy/index.json new file mode 100644 index 000000000000..daeb7318f66c --- /dev/null +++ b/site/public/v1/software/freeproxy/index.json @@ -0,0 +1,21 @@ +{ + "id": 3553, + "slug": "freeproxy", + "name": "FreeProxy", + "release_date": "1999-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5499663" + ], + "created_at": "2026-07-10T10:12:40.956400", + "updated_at": "2026-07-10T10:12:40.956400", + "url": "/v1/software/freeproxy" +} diff --git a/site/public/v1/software/freeqda/index.json b/site/public/v1/software/freeqda/index.json new file mode 100644 index 000000000000..e0af49652a08 --- /dev/null +++ b/site/public/v1/software/freeqda/index.json @@ -0,0 +1,26 @@ +{ + "id": 3554, + "slug": "freeqda", + "name": "FreeQDA", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [ + "Java" + ], + "licenses": [ + "unknown" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105229784" + ], + "created_at": "2026-07-10T10:12:40.956400", + "updated_at": "2026-07-10T10:12:40.956400", + "url": "/v1/software/freeqda" +} diff --git a/site/public/v1/software/frees-wan/index.json b/site/public/v1/software/frees-wan/index.json new file mode 100644 index 000000000000..705f6554d2ea --- /dev/null +++ b/site/public/v1/software/frees-wan/index.json @@ -0,0 +1,21 @@ +{ + "id": 3555, + "slug": "frees-wan", + "name": "FreeS/WAN", + "release_date": null, + "developers": [ + "John Gilmore" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5499675" + ], + "created_at": "2026-07-10T10:12:40.957410", + "updated_at": "2026-07-10T10:12:40.957410", + "url": "/v1/software/frees-wan" +} diff --git a/site/public/v1/software/freesurfer/index.json b/site/public/v1/software/freesurfer/index.json new file mode 100644 index 000000000000..6f63688bcb71 --- /dev/null +++ b/site/public/v1/software/freesurfer/index.json @@ -0,0 +1,23 @@ +{ + "id": 3556, + "slug": "freesurfer", + "name": "FreeSurfer", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "macOS" + ], + "programming_languages": [], + "licenses": [ + "open-source license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2363545" + ], + "created_at": "2026-07-10T10:12:40.957410", + "updated_at": "2026-07-10T10:12:40.957410", + "url": "/v1/software/freesurfer" +} diff --git a/site/public/v1/software/freesync/index.json b/site/public/v1/software/freesync/index.json new file mode 100644 index 000000000000..c73b08933b6f --- /dev/null +++ b/site/public/v1/software/freesync/index.json @@ -0,0 +1,23 @@ +{ + "id": 3557, + "slug": "freesync", + "name": "FreeSync", + "release_date": "2015-03-19", + "developers": [ + "AMD" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "free software" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q19878318" + ], + "created_at": "2026-07-10T10:12:40.957410", + "updated_at": "2026-07-10T10:12:40.957410", + "url": "/v1/software/freesync" +} diff --git a/site/public/v1/software/freeundelete/index.json b/site/public/v1/software/freeundelete/index.json new file mode 100644 index 000000000000..ee9eba8b4c18 --- /dev/null +++ b/site/public/v1/software/freeundelete/index.json @@ -0,0 +1,21 @@ +{ + "id": 3558, + "slug": "freeundelete", + "name": "FreeUndelete", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5499676" + ], + "created_at": "2026-07-10T10:12:40.958369", + "updated_at": "2026-07-10T10:12:40.958369", + "url": "/v1/software/freeundelete" +} diff --git a/site/public/v1/software/freeway/index.json b/site/public/v1/software/freeway/index.json new file mode 100644 index 000000000000..7cfeb4b0c074 --- /dev/null +++ b/site/public/v1/software/freeway/index.json @@ -0,0 +1,21 @@ +{ + "id": 3559, + "slug": "freeway", + "name": "Freeway", + "release_date": null, + "developers": [ + "Softpress" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1403179" + ], + "created_at": "2026-07-10T10:12:40.958369", + "updated_at": "2026-07-10T10:12:40.958369", + "url": "/v1/software/freeway" +} diff --git a/site/public/v1/software/frequency-sorter/index.json b/site/public/v1/software/frequency-sorter/index.json new file mode 100644 index 000000000000..2c1e7eb0d092 --- /dev/null +++ b/site/public/v1/software/frequency-sorter/index.json @@ -0,0 +1,19 @@ +{ + "id": 3560, + "slug": "frequency-sorter", + "name": "Frequency Sorter", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084977" + ], + "created_at": "2026-07-10T10:12:40.958369", + "updated_at": "2026-07-10T10:12:40.958369", + "url": "/v1/software/frequency-sorter" +} diff --git a/site/public/v1/software/fresco/index.json b/site/public/v1/software/fresco/index.json new file mode 100644 index 000000000000..6dbffec83aad --- /dev/null +++ b/site/public/v1/software/fresco/index.json @@ -0,0 +1,21 @@ +{ + "id": 3561, + "slug": "fresco", + "name": "Fresco", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5502903" + ], + "created_at": "2026-07-10T10:12:40.959368", + "updated_at": "2026-07-10T10:12:40.959368", + "url": "/v1/software/fresco" +} diff --git a/site/public/v1/software/freshservice/index.json b/site/public/v1/software/freshservice/index.json new file mode 100644 index 000000000000..636f791664d3 --- /dev/null +++ b/site/public/v1/software/freshservice/index.json @@ -0,0 +1,19 @@ +{ + "id": 3562, + "slug": "freshservice", + "name": "Freshservice", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137427374" + ], + "created_at": "2026-07-10T10:12:40.959368", + "updated_at": "2026-07-10T10:12:40.959368", + "url": "/v1/software/freshservice" +} diff --git a/site/public/v1/software/fresnel-editor/index.json b/site/public/v1/software/fresnel-editor/index.json new file mode 100644 index 000000000000..3317def7ae13 --- /dev/null +++ b/site/public/v1/software/fresnel-editor/index.json @@ -0,0 +1,19 @@ +{ + "id": 3563, + "slug": "fresnel-editor", + "name": "Fresnel Editor", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105745539" + ], + "created_at": "2026-07-10T10:12:40.959368", + "updated_at": "2026-07-10T10:12:40.959368", + "url": "/v1/software/fresnel-editor" +} diff --git a/site/public/v1/software/fret/index.json b/site/public/v1/software/fret/index.json new file mode 100644 index 000000000000..4ea000cf3fe8 --- /dev/null +++ b/site/public/v1/software/fret/index.json @@ -0,0 +1,19 @@ +{ + "id": 3564, + "slug": "fret", + "name": "FRET", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123746508" + ], + "created_at": "2026-07-10T10:12:40.960384", + "updated_at": "2026-07-10T10:12:40.960384", + "url": "/v1/software/fret" +} diff --git a/site/public/v1/software/friday-os/index.json b/site/public/v1/software/friday-os/index.json new file mode 100644 index 000000000000..357ef257e1c4 --- /dev/null +++ b/site/public/v1/software/friday-os/index.json @@ -0,0 +1,25 @@ +{ + "id": 3565, + "slug": "friday-os", + "name": "Friday OS", + "release_date": null, + "developers": [ + "Framework Friday" + ], + "publishers": [], + "operating_systems": [ + "web application" + ], + "programming_languages": [], + "licenses": [], + "genres": [ + "knowledge management software" + ], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140010788" + ], + "created_at": "2026-07-10T10:12:40.960384", + "updated_at": "2026-07-10T10:12:40.960384", + "url": "/v1/software/friday-os" +} diff --git a/site/public/v1/software/friendcaller/index.json b/site/public/v1/software/friendcaller/index.json new file mode 100644 index 000000000000..c82fed13bf24 --- /dev/null +++ b/site/public/v1/software/friendcaller/index.json @@ -0,0 +1,23 @@ +{ + "id": 3566, + "slug": "friendcaller", + "name": "FriendCaller", + "release_date": null, + "developers": [ + "C2Call GmbH" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Java" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5503998" + ], + "created_at": "2026-07-10T10:12:40.960384", + "updated_at": "2026-07-10T10:12:40.960384", + "url": "/v1/software/friendcaller" +} diff --git a/site/public/v1/software/friendlyware/index.json b/site/public/v1/software/friendlyware/index.json new file mode 100644 index 000000000000..479061f672da --- /dev/null +++ b/site/public/v1/software/friendlyware/index.json @@ -0,0 +1,19 @@ +{ + "id": 3567, + "slug": "friendlyware", + "name": "Friendlyware", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17042310" + ], + "created_at": "2026-07-10T10:12:40.960384", + "updated_at": "2026-07-10T10:12:40.960384", + "url": "/v1/software/friendlyware" +} diff --git a/site/public/v1/software/fring/index.json b/site/public/v1/software/fring/index.json new file mode 100644 index 000000000000..1ac2d1449d2b --- /dev/null +++ b/site/public/v1/software/fring/index.json @@ -0,0 +1,23 @@ +{ + "id": 3568, + "slug": "fring", + "name": "Fring", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Java" + ], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1938031" + ], + "created_at": "2026-07-10T10:12:40.961381", + "updated_at": "2026-07-10T10:12:40.961381", + "url": "/v1/software/fring" +} diff --git a/site/public/v1/software/frog-creator/index.json b/site/public/v1/software/frog-creator/index.json new file mode 100644 index 000000000000..7e7855f1300e --- /dev/null +++ b/site/public/v1/software/frog-creator/index.json @@ -0,0 +1,19 @@ +{ + "id": 3569, + "slug": "frog-creator", + "name": "FRoG Creator", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3063411" + ], + "created_at": "2026-07-10T10:12:40.961381", + "updated_at": "2026-07-10T10:12:40.961381", + "url": "/v1/software/frog-creator" +} diff --git a/site/public/v1/software/fromthepage/index.json b/site/public/v1/software/fromthepage/index.json new file mode 100644 index 000000000000..c95f6dabdad9 --- /dev/null +++ b/site/public/v1/software/fromthepage/index.json @@ -0,0 +1,19 @@ +{ + "id": 3570, + "slug": "fromthepage", + "name": "FromThePage", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084978" + ], + "created_at": "2026-07-10T10:12:40.961381", + "updated_at": "2026-07-10T10:12:40.961381", + "url": "/v1/software/fromthepage" +} diff --git a/site/public/v1/software/front-row/index.json b/site/public/v1/software/front-row/index.json new file mode 100644 index 000000000000..29e417b9fc0e --- /dev/null +++ b/site/public/v1/software/front-row/index.json @@ -0,0 +1,25 @@ +{ + "id": 3571, + "slug": "front-row", + "name": "Front Row", + "release_date": "2005-10-12", + "developers": [ + "Apple Inc." + ], + "publishers": [], + "operating_systems": [ + "macOS" + ], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q421105" + ], + "created_at": "2026-07-10T10:12:40.962372", + "updated_at": "2026-07-10T10:12:40.962372", + "url": "/v1/software/front-row" +} diff --git a/site/public/v1/software/frontbase/index.json b/site/public/v1/software/frontbase/index.json new file mode 100644 index 000000000000..cc210b1adcbf --- /dev/null +++ b/site/public/v1/software/frontbase/index.json @@ -0,0 +1,19 @@ +{ + "id": 3572, + "slug": "frontbase", + "name": "FrontBase", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1469969" + ], + "created_at": "2026-07-10T10:12:40.962372", + "updated_at": "2026-07-10T10:12:40.962372", + "url": "/v1/software/frontbase" +} diff --git a/site/public/v1/software/frontdoor/index.json b/site/public/v1/software/frontdoor/index.json new file mode 100644 index 000000000000..435fcaa33709 --- /dev/null +++ b/site/public/v1/software/frontdoor/index.json @@ -0,0 +1,23 @@ +{ + "id": 3573, + "slug": "frontdoor", + "name": "FrontDoor", + "release_date": "1986-01-01", + "developers": [], + "publishers": [], + "operating_systems": [ + "DOS" + ], + "programming_languages": [], + "licenses": [ + "shareware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5505773" + ], + "created_at": "2026-07-10T10:12:40.962372", + "updated_at": "2026-07-10T10:12:40.962372", + "url": "/v1/software/frontdoor" +} diff --git a/site/public/v1/software/fronter/index.json b/site/public/v1/software/fronter/index.json new file mode 100644 index 000000000000..ee72200ac4b7 --- /dev/null +++ b/site/public/v1/software/fronter/index.json @@ -0,0 +1,21 @@ +{ + "id": 3574, + "slug": "fronter", + "name": "Fronter", + "release_date": "1998-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [ + "learning management system" + ], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1782768" + ], + "created_at": "2026-07-10T10:12:40.962372", + "updated_at": "2026-07-10T10:12:40.962372", + "url": "/v1/software/fronter" +} diff --git a/site/public/v1/software/frontman/index.json b/site/public/v1/software/frontman/index.json new file mode 100644 index 000000000000..febace5318f8 --- /dev/null +++ b/site/public/v1/software/frontman/index.json @@ -0,0 +1,23 @@ +{ + "id": 3575, + "slug": "frontman", + "name": "Frontman", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "web browser" + ], + "programming_languages": [], + "licenses": [ + "Apache Software License 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138753470" + ], + "created_at": "2026-07-10T10:12:40.963430", + "updated_at": "2026-07-10T10:12:40.963430", + "url": "/v1/software/frontman" +} diff --git a/site/public/v1/software/frontrun/index.json b/site/public/v1/software/frontrun/index.json new file mode 100644 index 000000000000..fdf3e9f47f97 --- /dev/null +++ b/site/public/v1/software/frontrun/index.json @@ -0,0 +1,21 @@ +{ + "id": 3576, + "slug": "frontrun", + "name": "Frontrun", + "release_date": null, + "developers": [ + "Frontrun" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139865681" + ], + "created_at": "2026-07-10T10:12:40.963430", + "updated_at": "2026-07-10T10:12:40.963430", + "url": "/v1/software/frontrun" +} diff --git a/site/public/v1/software/frost/index.json b/site/public/v1/software/frost/index.json new file mode 100644 index 000000000000..7f03cd8a0bde --- /dev/null +++ b/site/public/v1/software/frost/index.json @@ -0,0 +1,23 @@ +{ + "id": 3577, + "slug": "frost", + "name": "Frost", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Java" + ], + "licenses": [ + "GNU General Public License, version 3.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11200552" + ], + "created_at": "2026-07-10T10:12:40.963430", + "updated_at": "2026-07-10T10:12:40.963430", + "url": "/v1/software/frost" +} diff --git a/site/public/v1/software/frrouting/index.json b/site/public/v1/software/frrouting/index.json new file mode 100644 index 000000000000..fc2a7ca56681 --- /dev/null +++ b/site/public/v1/software/frrouting/index.json @@ -0,0 +1,23 @@ +{ + "id": 3578, + "slug": "frrouting", + "name": "FRRouting", + "release_date": "2017-03-04", + "developers": [ + "Linux Foundation" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "GNU General Public License, version 2.0 or later" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60768337" + ], + "created_at": "2026-07-10T10:12:40.964365", + "updated_at": "2026-07-10T10:12:40.964365", + "url": "/v1/software/frrouting" +} diff --git a/site/public/v1/software/fruux/index.json b/site/public/v1/software/fruux/index.json new file mode 100644 index 000000000000..5ce6070eb8be --- /dev/null +++ b/site/public/v1/software/fruux/index.json @@ -0,0 +1,21 @@ +{ + "id": 3579, + "slug": "fruux", + "name": "fruux", + "release_date": "2008-09-01", + "developers": [ + "fruux GmbH" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1242120" + ], + "created_at": "2026-07-10T10:12:40.964365", + "updated_at": "2026-07-10T10:12:40.964365", + "url": "/v1/software/fruux" +} diff --git a/site/public/v1/software/fryrender/index.json b/site/public/v1/software/fryrender/index.json new file mode 100644 index 000000000000..0aadc9b9d07e --- /dev/null +++ b/site/public/v1/software/fryrender/index.json @@ -0,0 +1,19 @@ +{ + "id": 3580, + "slug": "fryrender", + "name": "Fryrender", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5506623" + ], + "created_at": "2026-07-10T10:12:40.964365", + "updated_at": "2026-07-10T10:12:40.964365", + "url": "/v1/software/fryrender" +} diff --git a/site/public/v1/software/fsdpc/index.json b/site/public/v1/software/fsdpc/index.json new file mode 100644 index 000000000000..3b01f114cd07 --- /dev/null +++ b/site/public/v1/software/fsdpc/index.json @@ -0,0 +1,21 @@ +{ + "id": 3581, + "slug": "fsdpc", + "name": "FSDPC", + "release_date": null, + "developers": [ + "IBM" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q21086946" + ], + "created_at": "2026-07-10T10:12:40.964365", + "updated_at": "2026-07-10T10:12:40.964365", + "url": "/v1/software/fsdpc" +} diff --git a/site/public/v1/software/fslint/index.json b/site/public/v1/software/fslint/index.json new file mode 100644 index 000000000000..6f4e0cf4a6d2 --- /dev/null +++ b/site/public/v1/software/fslint/index.json @@ -0,0 +1,23 @@ +{ + "id": 3582, + "slug": "fslint", + "name": "FSlint", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Python" + ], + "licenses": [ + "GNU General Public License, version 2.0 or later" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62849893" + ], + "created_at": "2026-07-10T10:12:40.965382", + "updated_at": "2026-07-10T10:12:40.965382", + "url": "/v1/software/fslint" +} diff --git a/site/public/v1/software/fsn/index.json b/site/public/v1/software/fsn/index.json new file mode 100644 index 000000000000..2aa8ff14618a --- /dev/null +++ b/site/public/v1/software/fsn/index.json @@ -0,0 +1,23 @@ +{ + "id": 3583, + "slug": "fsn", + "name": "fsn", + "release_date": null, + "developers": [ + "Silicon Graphics" + ], + "publishers": [], + "operating_systems": [ + "IRIX" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1942812" + ], + "created_at": "2026-07-10T10:12:40.965382", + "updated_at": "2026-07-10T10:12:40.965382", + "url": "/v1/software/fsn" +} diff --git a/site/public/v1/software/fsqca/index.json b/site/public/v1/software/fsqca/index.json new file mode 100644 index 000000000000..f6869b4887a6 --- /dev/null +++ b/site/public/v1/software/fsqca/index.json @@ -0,0 +1,24 @@ +{ + "id": 3584, + "slug": "fsqca", + "name": "fsQCA", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105229746" + ], + "created_at": "2026-07-10T10:12:40.965382", + "updated_at": "2026-07-10T10:12:40.965382", + "url": "/v1/software/fsqca" +} diff --git a/site/public/v1/software/fsx-play-golf-simulator-software/index.json b/site/public/v1/software/fsx-play-golf-simulator-software/index.json new file mode 100644 index 000000000000..7959f4f67b99 --- /dev/null +++ b/site/public/v1/software/fsx-play-golf-simulator-software/index.json @@ -0,0 +1,19 @@ +{ + "id": 3585, + "slug": "fsx-play-golf-simulator-software", + "name": "FSX Play Golf Simulator Software", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136649257" + ], + "created_at": "2026-07-10T10:12:40.966369", + "updated_at": "2026-07-10T10:12:40.966369", + "url": "/v1/software/fsx-play-golf-simulator-software" +} diff --git a/site/public/v1/software/ftapi/index.json b/site/public/v1/software/ftapi/index.json new file mode 100644 index 000000000000..ea89672cf17c --- /dev/null +++ b/site/public/v1/software/ftapi/index.json @@ -0,0 +1,19 @@ +{ + "id": 3586, + "slug": "ftapi", + "name": "FTAPI", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17321584" + ], + "created_at": "2026-07-10T10:12:40.966369", + "updated_at": "2026-07-10T10:12:40.966369", + "url": "/v1/software/ftapi" +} diff --git a/site/public/v1/software/ftd/index.json b/site/public/v1/software/ftd/index.json new file mode 100644 index 000000000000..8cca4b64d677 --- /dev/null +++ b/site/public/v1/software/ftd/index.json @@ -0,0 +1,19 @@ +{ + "id": 3587, + "slug": "ftd", + "name": "FTD", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2206957" + ], + "created_at": "2026-07-10T10:12:40.966369", + "updated_at": "2026-07-10T10:12:40.966369", + "url": "/v1/software/ftd" +} diff --git a/site/public/v1/software/ftjam/index.json b/site/public/v1/software/ftjam/index.json new file mode 100644 index 000000000000..b24231ff972d --- /dev/null +++ b/site/public/v1/software/ftjam/index.json @@ -0,0 +1,19 @@ +{ + "id": 3588, + "slug": "ftjam", + "name": "ftjam", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60916594" + ], + "created_at": "2026-07-10T10:12:40.967408", + "updated_at": "2026-07-10T10:12:40.967408", + "url": "/v1/software/ftjam" +} diff --git a/site/public/v1/software/ftp-commander/index.json b/site/public/v1/software/ftp-commander/index.json new file mode 100644 index 000000000000..aa93cdec3f77 --- /dev/null +++ b/site/public/v1/software/ftp-commander/index.json @@ -0,0 +1,19 @@ +{ + "id": 3589, + "slug": "ftp-commander", + "name": "FTP Commander", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5427219" + ], + "created_at": "2026-07-10T10:12:40.967408", + "updated_at": "2026-07-10T10:12:40.967408", + "url": "/v1/software/ftp-commander" +} diff --git a/site/public/v1/software/ftp-voyager/index.json b/site/public/v1/software/ftp-voyager/index.json new file mode 100644 index 000000000000..97a3abcaa633 --- /dev/null +++ b/site/public/v1/software/ftp-voyager/index.json @@ -0,0 +1,21 @@ +{ + "id": 3590, + "slug": "ftp-voyager", + "name": "FTP Voyager", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1389773" + ], + "created_at": "2026-07-10T10:12:40.967408", + "updated_at": "2026-07-10T10:12:40.967408", + "url": "/v1/software/ftp-voyager" +} diff --git a/site/public/v1/software/fuel-manager/index.json b/site/public/v1/software/fuel-manager/index.json new file mode 100644 index 000000000000..f99a16684751 --- /dev/null +++ b/site/public/v1/software/fuel-manager/index.json @@ -0,0 +1,23 @@ +{ + "id": 3591, + "slug": "fuel-manager", + "name": "Fuel Manager", + "release_date": null, + "developers": [ + "Marorka" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5507128" + ], + "created_at": "2026-07-10T10:12:40.968407", + "updated_at": "2026-07-10T10:12:40.968407", + "url": "/v1/software/fuel-manager" +} diff --git a/site/public/v1/software/fugitive/index.json b/site/public/v1/software/fugitive/index.json new file mode 100644 index 000000000000..72c00fb0da84 --- /dev/null +++ b/site/public/v1/software/fugitive/index.json @@ -0,0 +1,19 @@ +{ + "id": 3592, + "slug": "fugitive", + "name": "fugitive", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974857" + ], + "created_at": "2026-07-10T10:12:40.968407", + "updated_at": "2026-07-10T10:12:40.968407", + "url": "/v1/software/fugitive" +} diff --git a/site/public/v1/software/fugue-machine/index.json b/site/public/v1/software/fugue-machine/index.json new file mode 100644 index 000000000000..35443866ba8d --- /dev/null +++ b/site/public/v1/software/fugue-machine/index.json @@ -0,0 +1,19 @@ +{ + "id": 3593, + "slug": "fugue-machine", + "name": "Fugue Machine", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q48806558" + ], + "created_at": "2026-07-10T10:12:40.968407", + "updated_at": "2026-07-10T10:12:40.968407", + "url": "/v1/software/fugue-machine" +} diff --git a/site/public/v1/software/fujitsu-global-cloud-platform/index.json b/site/public/v1/software/fujitsu-global-cloud-platform/index.json new file mode 100644 index 000000000000..de2014b46704 --- /dev/null +++ b/site/public/v1/software/fujitsu-global-cloud-platform/index.json @@ -0,0 +1,19 @@ +{ + "id": 3594, + "slug": "fujitsu-global-cloud-platform", + "name": "Fujitsu Global Cloud Platform", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5507501" + ], + "created_at": "2026-07-10T10:12:40.969394", + "updated_at": "2026-07-10T10:12:40.969394", + "url": "/v1/software/fujitsu-global-cloud-platform" +} diff --git a/site/public/v1/software/fukase/index.json b/site/public/v1/software/fukase/index.json new file mode 100644 index 000000000000..9ba040871ede --- /dev/null +++ b/site/public/v1/software/fukase/index.json @@ -0,0 +1,19 @@ +{ + "id": 3595, + "slug": "fukase", + "name": "Fukase", + "release_date": "2016-01-28", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q24907643" + ], + "created_at": "2026-07-10T10:12:40.969394", + "updated_at": "2026-07-10T10:12:40.969394", + "url": "/v1/software/fukase" +} diff --git a/site/public/v1/software/full-impact/index.json b/site/public/v1/software/full-impact/index.json new file mode 100644 index 000000000000..007a7dccaa1b --- /dev/null +++ b/site/public/v1/software/full-impact/index.json @@ -0,0 +1,21 @@ +{ + "id": 3596, + "slug": "full-impact", + "name": "Full Impact", + "release_date": null, + "developers": [ + "Ashton-Tate" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5508084" + ], + "created_at": "2026-07-10T10:12:40.969394", + "updated_at": "2026-07-10T10:12:40.969394", + "url": "/v1/software/full-impact" +} diff --git a/site/public/v1/software/functional-mock-up-interface/index.json b/site/public/v1/software/functional-mock-up-interface/index.json new file mode 100644 index 000000000000..eeb5f4a42572 --- /dev/null +++ b/site/public/v1/software/functional-mock-up-interface/index.json @@ -0,0 +1,19 @@ +{ + "id": 3597, + "slug": "functional-mock-up-interface", + "name": "Functional Mock-up Interface", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5508789" + ], + "created_at": "2026-07-10T10:12:40.970416", + "updated_at": "2026-07-10T10:12:40.970416", + "url": "/v1/software/functional-mock-up-interface" +} diff --git a/site/public/v1/software/fundamental-risk/index.json b/site/public/v1/software/fundamental-risk/index.json new file mode 100644 index 000000000000..da87c1930c30 --- /dev/null +++ b/site/public/v1/software/fundamental-risk/index.json @@ -0,0 +1,19 @@ +{ + "id": 3598, + "slug": "fundamental-risk", + "name": "fundamental risk", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10853069" + ], + "created_at": "2026-07-10T10:12:40.970416", + "updated_at": "2026-07-10T10:12:40.970416", + "url": "/v1/software/fundamental-risk" +} diff --git a/site/public/v1/software/fundraising-platform/index.json b/site/public/v1/software/fundraising-platform/index.json new file mode 100644 index 000000000000..4051a1985e30 --- /dev/null +++ b/site/public/v1/software/fundraising-platform/index.json @@ -0,0 +1,19 @@ +{ + "id": 3599, + "slug": "fundraising-platform", + "name": "fundraising platform", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136682809" + ], + "created_at": "2026-07-10T10:12:40.970416", + "updated_at": "2026-07-10T10:12:40.970416", + "url": "/v1/software/fundraising-platform" +} diff --git a/site/public/v1/software/funes/index.json b/site/public/v1/software/funes/index.json new file mode 100644 index 000000000000..194db8841c5a --- /dev/null +++ b/site/public/v1/software/funes/index.json @@ -0,0 +1,19 @@ +{ + "id": 3600, + "slug": "funes", + "name": "FUNES", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084979" + ], + "created_at": "2026-07-10T10:12:40.971387", + "updated_at": "2026-07-10T10:12:40.971387", + "url": "/v1/software/funes" +} diff --git a/site/public/v1/software/funsearch/index.json b/site/public/v1/software/funsearch/index.json new file mode 100644 index 000000000000..718b4469c483 --- /dev/null +++ b/site/public/v1/software/funsearch/index.json @@ -0,0 +1,19 @@ +{ + "id": 3601, + "slug": "funsearch", + "name": "FunSearch", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139892340" + ], + "created_at": "2026-07-10T10:12:40.971387", + "updated_at": "2026-07-10T10:12:40.971387", + "url": "/v1/software/funsearch" +} diff --git a/site/public/v1/software/funshion/index.json b/site/public/v1/software/funshion/index.json new file mode 100644 index 000000000000..c2de1884a8a8 --- /dev/null +++ b/site/public/v1/software/funshion/index.json @@ -0,0 +1,23 @@ +{ + "id": 3602, + "slug": "funshion", + "name": "Funshion", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q15995081" + ], + "created_at": "2026-07-10T10:12:40.971387", + "updated_at": "2026-07-10T10:12:40.971387", + "url": "/v1/software/funshion" +} diff --git a/site/public/v1/software/furryball/index.json b/site/public/v1/software/furryball/index.json new file mode 100644 index 000000000000..18b0ea48b778 --- /dev/null +++ b/site/public/v1/software/furryball/index.json @@ -0,0 +1,19 @@ +{ + "id": 3603, + "slug": "furryball", + "name": "FurryBall", + "release_date": "2009-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18392147" + ], + "created_at": "2026-07-10T10:12:40.971387", + "updated_at": "2026-07-10T10:12:40.971387", + "url": "/v1/software/furryball" +} diff --git a/site/public/v1/software/furybsd/index.json b/site/public/v1/software/furybsd/index.json new file mode 100644 index 000000000000..3a9c25f846cd --- /dev/null +++ b/site/public/v1/software/furybsd/index.json @@ -0,0 +1,21 @@ +{ + "id": 3604, + "slug": "furybsd", + "name": "FuryBSD", + "release_date": "2019-10-24", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "BSD licenses" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q79027338" + ], + "created_at": "2026-07-10T10:12:40.972402", + "updated_at": "2026-07-10T10:12:40.972402", + "url": "/v1/software/furybsd" +} diff --git a/site/public/v1/software/fuse-character-creator/index.json b/site/public/v1/software/fuse-character-creator/index.json new file mode 100644 index 000000000000..f31ccd30df44 --- /dev/null +++ b/site/public/v1/software/fuse-character-creator/index.json @@ -0,0 +1,21 @@ +{ + "id": 3605, + "slug": "fuse-character-creator", + "name": "Fuse Character Creator", + "release_date": null, + "developers": [ + "Adobe" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q19866184" + ], + "created_at": "2026-07-10T10:12:40.972402", + "updated_at": "2026-07-10T10:12:40.972402", + "url": "/v1/software/fuse-character-creator" +} diff --git a/site/public/v1/software/fuse-esb/index.json b/site/public/v1/software/fuse-esb/index.json new file mode 100644 index 000000000000..0da7365fedff --- /dev/null +++ b/site/public/v1/software/fuse-esb/index.json @@ -0,0 +1,23 @@ +{ + "id": 3606, + "slug": "fuse-esb", + "name": "Fuse ESB", + "release_date": null, + "developers": [ + "Red Hat" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Java" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5509980" + ], + "created_at": "2026-07-10T10:12:40.972402", + "updated_at": "2026-07-10T10:12:40.972402", + "url": "/v1/software/fuse-esb" +} diff --git a/site/public/v1/software/fuse-mediation-router/index.json b/site/public/v1/software/fuse-mediation-router/index.json new file mode 100644 index 000000000000..7db4723e60c3 --- /dev/null +++ b/site/public/v1/software/fuse-mediation-router/index.json @@ -0,0 +1,21 @@ +{ + "id": 3607, + "slug": "fuse-mediation-router", + "name": "Fuse Mediation Router", + "release_date": null, + "developers": [ + "Red Hat" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5509983" + ], + "created_at": "2026-07-10T10:12:40.973410", + "updated_at": "2026-07-10T10:12:40.973410", + "url": "/v1/software/fuse-mediation-router" +} diff --git a/site/public/v1/software/fuse-message-broker/index.json b/site/public/v1/software/fuse-message-broker/index.json new file mode 100644 index 000000000000..da5437a0516d --- /dev/null +++ b/site/public/v1/software/fuse-message-broker/index.json @@ -0,0 +1,21 @@ +{ + "id": 3608, + "slug": "fuse-message-broker", + "name": "Fuse Message Broker", + "release_date": null, + "developers": [ + "Red Hat" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5509981" + ], + "created_at": "2026-07-10T10:12:40.973410", + "updated_at": "2026-07-10T10:12:40.973410", + "url": "/v1/software/fuse-message-broker" +} diff --git a/site/public/v1/software/fuse-services-framework/index.json b/site/public/v1/software/fuse-services-framework/index.json new file mode 100644 index 000000000000..b89484f6d3a8 --- /dev/null +++ b/site/public/v1/software/fuse-services-framework/index.json @@ -0,0 +1,21 @@ +{ + "id": 3609, + "slug": "fuse-services-framework", + "name": "Fuse Services Framework", + "release_date": null, + "developers": [ + "Red Hat" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5509986" + ], + "created_at": "2026-07-10T10:12:40.973410", + "updated_at": "2026-07-10T10:12:40.973410", + "url": "/v1/software/fuse-services-framework" +} diff --git a/site/public/v1/software/fuse-zip/index.json b/site/public/v1/software/fuse-zip/index.json new file mode 100644 index 000000000000..3165af393336 --- /dev/null +++ b/site/public/v1/software/fuse-zip/index.json @@ -0,0 +1,19 @@ +{ + "id": 3610, + "slug": "fuse-zip", + "name": "fuse-zip", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62850390" + ], + "created_at": "2026-07-10T10:12:40.974311", + "updated_at": "2026-07-10T10:12:40.974311", + "url": "/v1/software/fuse-zip" +} diff --git a/site/public/v1/software/fuseiso/index.json b/site/public/v1/software/fuseiso/index.json new file mode 100644 index 000000000000..cb15adea0594 --- /dev/null +++ b/site/public/v1/software/fuseiso/index.json @@ -0,0 +1,19 @@ +{ + "id": 3611, + "slug": "fuseiso", + "name": "FuseIso", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62849957" + ], + "created_at": "2026-07-10T10:12:40.974311", + "updated_at": "2026-07-10T10:12:40.974311", + "url": "/v1/software/fuseiso" +} diff --git a/site/public/v1/software/fusion-360/index.json b/site/public/v1/software/fusion-360/index.json new file mode 100644 index 000000000000..4825ba4eaa69 --- /dev/null +++ b/site/public/v1/software/fusion-360/index.json @@ -0,0 +1,19 @@ +{ + "id": 3612, + "slug": "fusion-360", + "name": "Fusion 360", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110779090" + ], + "created_at": "2026-07-10T10:12:40.974311", + "updated_at": "2026-07-10T10:12:40.974311", + "url": "/v1/software/fusion-360" +} diff --git a/site/public/v1/software/fusionpos/index.json b/site/public/v1/software/fusionpos/index.json new file mode 100644 index 000000000000..790f509fa47c --- /dev/null +++ b/site/public/v1/software/fusionpos/index.json @@ -0,0 +1,19 @@ +{ + "id": 3613, + "slug": "fusionpos", + "name": "FusionPOS", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113564072" + ], + "created_at": "2026-07-10T10:12:40.975374", + "updated_at": "2026-07-10T10:12:40.975374", + "url": "/v1/software/fusionpos" +} diff --git a/site/public/v1/software/fusionviewer/index.json b/site/public/v1/software/fusionviewer/index.json new file mode 100644 index 000000000000..9edc156a6a36 --- /dev/null +++ b/site/public/v1/software/fusionviewer/index.json @@ -0,0 +1,19 @@ +{ + "id": 3614, + "slug": "fusionviewer", + "name": "Fusionviewer", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5510289" + ], + "created_at": "2026-07-10T10:12:40.975374", + "updated_at": "2026-07-10T10:12:40.975374", + "url": "/v1/software/fusionviewer" +} diff --git a/site/public/v1/software/future-pinball/index.json b/site/public/v1/software/future-pinball/index.json new file mode 100644 index 000000000000..ab4dda673e64 --- /dev/null +++ b/site/public/v1/software/future-pinball/index.json @@ -0,0 +1,21 @@ +{ + "id": 3615, + "slug": "future-pinball", + "name": "Future Pinball", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5510735" + ], + "created_at": "2026-07-10T10:12:40.975374", + "updated_at": "2026-07-10T10:12:40.975374", + "url": "/v1/software/future-pinball" +} diff --git a/site/public/v1/software/fwkcs/index.json b/site/public/v1/software/fwkcs/index.json new file mode 100644 index 000000000000..8a31ec93aca4 --- /dev/null +++ b/site/public/v1/software/fwkcs/index.json @@ -0,0 +1,19 @@ +{ + "id": 3616, + "slug": "fwkcs", + "name": "FWKCS", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28756162" + ], + "created_at": "2026-07-10T10:12:40.976392", + "updated_at": "2026-07-10T10:12:40.976392", + "url": "/v1/software/fwkcs" +} diff --git a/site/public/v1/software/fx-photo-studio-q5427412/index.json b/site/public/v1/software/fx-photo-studio-q5427412/index.json new file mode 100644 index 000000000000..3d84632e3c3e --- /dev/null +++ b/site/public/v1/software/fx-photo-studio-q5427412/index.json @@ -0,0 +1,19 @@ +{ + "id": 3617, + "slug": "fx-photo-studio-q5427412", + "name": "FX Photo Studio", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5427412" + ], + "created_at": "2026-07-10T10:12:40.976392", + "updated_at": "2026-07-10T10:12:40.976392", + "url": "/v1/software/fx-photo-studio-q5427412" +} diff --git a/site/public/v1/software/fx-photo-studio/index.json b/site/public/v1/software/fx-photo-studio/index.json new file mode 100644 index 000000000000..24005afac437 --- /dev/null +++ b/site/public/v1/software/fx-photo-studio/index.json @@ -0,0 +1,19 @@ +{ + "id": 3618, + "slug": "fx-photo-studio", + "name": "FX Photo Studio", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5427410" + ], + "created_at": "2026-07-10T10:12:40.977310", + "updated_at": "2026-07-10T10:12:40.977310", + "url": "/v1/software/fx-photo-studio" +} diff --git a/site/public/v1/software/fynix-co-banking/index.json b/site/public/v1/software/fynix-co-banking/index.json new file mode 100644 index 000000000000..58eb9a8f7060 --- /dev/null +++ b/site/public/v1/software/fynix-co-banking/index.json @@ -0,0 +1,19 @@ +{ + "id": 3619, + "slug": "fynix-co-banking", + "name": "Fynix Co-Banking", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139677391" + ], + "created_at": "2026-07-10T10:12:40.977310", + "updated_at": "2026-07-10T10:12:40.977310", + "url": "/v1/software/fynix-co-banking" +} diff --git a/site/public/v1/software/fyracle/index.json b/site/public/v1/software/fyracle/index.json new file mode 100644 index 000000000000..f3de583a97aa --- /dev/null +++ b/site/public/v1/software/fyracle/index.json @@ -0,0 +1,19 @@ +{ + "id": 3620, + "slug": "fyracle", + "name": "Fyracle", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5511292" + ], + "created_at": "2026-07-10T10:12:40.977310", + "updated_at": "2026-07-10T10:12:40.977310", + "url": "/v1/software/fyracle" +} diff --git a/site/public/v1/software/fyuse/index.json b/site/public/v1/software/fyuse/index.json new file mode 100644 index 000000000000..ade0fa36afdf --- /dev/null +++ b/site/public/v1/software/fyuse/index.json @@ -0,0 +1,19 @@ +{ + "id": 3621, + "slug": "fyuse", + "name": "Fyuse", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28127366" + ], + "created_at": "2026-07-10T10:12:40.977310", + "updated_at": "2026-07-10T10:12:40.977310", + "url": "/v1/software/fyuse" +} diff --git a/site/public/v1/software/g-cpan/index.json b/site/public/v1/software/g-cpan/index.json new file mode 100644 index 000000000000..993d62bf98c5 --- /dev/null +++ b/site/public/v1/software/g-cpan/index.json @@ -0,0 +1,19 @@ +{ + "id": 3622, + "slug": "g-cpan", + "name": "g-cpan", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974861" + ], + "created_at": "2026-07-10T10:12:40.978386", + "updated_at": "2026-07-10T10:12:40.978386", + "url": "/v1/software/g-cpan" +} diff --git a/site/public/v1/software/g-ho-st/index.json b/site/public/v1/software/g-ho-st/index.json new file mode 100644 index 000000000000..000fabb39067 --- /dev/null +++ b/site/public/v1/software/g-ho-st/index.json @@ -0,0 +1,19 @@ +{ + "id": 3623, + "slug": "g-ho-st", + "name": "G.ho.st", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1989472" + ], + "created_at": "2026-07-10T10:12:40.978386", + "updated_at": "2026-07-10T10:12:40.978386", + "url": "/v1/software/g-ho-st" +} diff --git a/site/public/v1/software/g-power/index.json b/site/public/v1/software/g-power/index.json new file mode 100644 index 000000000000..2489d83dca3f --- /dev/null +++ b/site/public/v1/software/g-power/index.json @@ -0,0 +1,19 @@ +{ + "id": 3624, + "slug": "g-power", + "name": "G*Power", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18411871" + ], + "created_at": "2026-07-10T10:12:40.979317", + "updated_at": "2026-07-10T10:12:40.979317", + "url": "/v1/software/g-power" +} diff --git a/site/public/v1/software/g-sorcery/index.json b/site/public/v1/software/g-sorcery/index.json new file mode 100644 index 000000000000..ce4d13baf44a --- /dev/null +++ b/site/public/v1/software/g-sorcery/index.json @@ -0,0 +1,19 @@ +{ + "id": 3625, + "slug": "g-sorcery", + "name": "g-sorcery", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974911" + ], + "created_at": "2026-07-10T10:12:40.979317", + "updated_at": "2026-07-10T10:12:40.979317", + "url": "/v1/software/g-sorcery" +} diff --git a/site/public/v1/software/gab-dissenter/index.json b/site/public/v1/software/gab-dissenter/index.json new file mode 100644 index 000000000000..ede741840028 --- /dev/null +++ b/site/public/v1/software/gab-dissenter/index.json @@ -0,0 +1,19 @@ +{ + "id": 3626, + "slug": "gab-dissenter", + "name": "Gab Dissenter", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q61913733" + ], + "created_at": "2026-07-10T10:12:40.979317", + "updated_at": "2026-07-10T10:12:40.979317", + "url": "/v1/software/gab-dissenter" +} diff --git a/site/public/v1/software/gable-cad/index.json b/site/public/v1/software/gable-cad/index.json new file mode 100644 index 000000000000..a4ab7a1b3857 --- /dev/null +++ b/site/public/v1/software/gable-cad/index.json @@ -0,0 +1,21 @@ +{ + "id": 3627, + "slug": "gable-cad", + "name": "Gable CAD", + "release_date": "1985-01-01", + "developers": [ + "University of Sheffield" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5515418" + ], + "created_at": "2026-07-10T10:12:40.979317", + "updated_at": "2026-07-10T10:12:40.979317", + "url": "/v1/software/gable-cad" +} diff --git a/site/public/v1/software/gachapoid/index.json b/site/public/v1/software/gachapoid/index.json new file mode 100644 index 000000000000..c596af42a9a6 --- /dev/null +++ b/site/public/v1/software/gachapoid/index.json @@ -0,0 +1,19 @@ +{ + "id": 3628, + "slug": "gachapoid", + "name": "Gachapoid", + "release_date": "2010-10-08", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11296022" + ], + "created_at": "2026-07-10T10:12:40.980313", + "updated_at": "2026-07-10T10:12:40.980313", + "url": "/v1/software/gachapoid" +} diff --git a/site/public/v1/software/gadgettrak/index.json b/site/public/v1/software/gadgettrak/index.json new file mode 100644 index 000000000000..b44ce1f7eb5a --- /dev/null +++ b/site/public/v1/software/gadgettrak/index.json @@ -0,0 +1,23 @@ +{ + "id": 3629, + "slug": "gadgettrak", + "name": "GadgetTrak", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [ + "Objective-C" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16993904" + ], + "created_at": "2026-07-10T10:12:40.980313", + "updated_at": "2026-07-10T10:12:40.980313", + "url": "/v1/software/gadgettrak" +} diff --git a/site/public/v1/software/gaggle/index.json b/site/public/v1/software/gaggle/index.json new file mode 100644 index 000000000000..4d1ae0aad2c6 --- /dev/null +++ b/site/public/v1/software/gaggle/index.json @@ -0,0 +1,19 @@ +{ + "id": 3630, + "slug": "gaggle", + "name": "Gaggle", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113659147" + ], + "created_at": "2026-07-10T10:12:40.981313", + "updated_at": "2026-07-10T10:12:40.981313", + "url": "/v1/software/gaggle" +} diff --git a/site/public/v1/software/gaia/index.json b/site/public/v1/software/gaia/index.json new file mode 100644 index 000000000000..97cf650772a9 --- /dev/null +++ b/site/public/v1/software/gaia/index.json @@ -0,0 +1,19 @@ +{ + "id": 3631, + "slug": "gaia", + "name": "Gaia", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q20871234" + ], + "created_at": "2026-07-10T10:12:40.981313", + "updated_at": "2026-07-10T10:12:40.981313", + "url": "/v1/software/gaia" +} diff --git a/site/public/v1/software/gal-ne/index.json b/site/public/v1/software/gal-ne/index.json new file mode 100644 index 000000000000..5248eb0006bd --- /dev/null +++ b/site/public/v1/software/gal-ne/index.json @@ -0,0 +1,19 @@ +{ + "id": 3632, + "slug": "gal-ne", + "name": "Galène", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122815546" + ], + "created_at": "2026-07-10T10:12:40.981313", + "updated_at": "2026-07-10T10:12:40.981313", + "url": "/v1/software/gal-ne" +} diff --git a/site/public/v1/software/gala/index.json b/site/public/v1/software/gala/index.json new file mode 100644 index 000000000000..a9100572870b --- /dev/null +++ b/site/public/v1/software/gala/index.json @@ -0,0 +1,26 @@ +{ + "id": 3633, + "slug": "gala", + "name": "Gala", + "release_date": null, + "developers": [ + "Edward Waisanen" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Ruby on Rails", + "React" + ], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130549584" + ], + "created_at": "2026-07-10T10:12:40.981313", + "updated_at": "2026-07-10T10:12:40.981313", + "url": "/v1/software/gala" +} diff --git a/site/public/v1/software/galaco/index.json b/site/public/v1/software/galaco/index.json new file mode 100644 index 000000000000..e29afe2d4221 --- /dev/null +++ b/site/public/v1/software/galaco/index.json @@ -0,0 +1,19 @@ +{ + "id": 3634, + "slug": "galaco", + "name": "Galaco", + "release_date": "2012-08-05", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28956412" + ], + "created_at": "2026-07-10T10:12:40.982407", + "updated_at": "2026-07-10T10:12:40.982407", + "url": "/v1/software/galaco" +} diff --git a/site/public/v1/software/galago/index.json b/site/public/v1/software/galago/index.json new file mode 100644 index 000000000000..f3ff20e8d7a7 --- /dev/null +++ b/site/public/v1/software/galago/index.json @@ -0,0 +1,19 @@ +{ + "id": 3635, + "slug": "galago", + "name": "Galago", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5517888" + ], + "created_at": "2026-07-10T10:12:40.982407", + "updated_at": "2026-07-10T10:12:40.982407", + "url": "/v1/software/galago" +} diff --git a/site/public/v1/software/galaksija-basic/index.json b/site/public/v1/software/galaksija-basic/index.json new file mode 100644 index 000000000000..60cb5e634870 --- /dev/null +++ b/site/public/v1/software/galaksija-basic/index.json @@ -0,0 +1,19 @@ +{ + "id": 3636, + "slug": "galaksija-basic", + "name": "Galaksija BASIC", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5517904" + ], + "created_at": "2026-07-10T10:12:40.983415", + "updated_at": "2026-07-10T10:12:40.983415", + "url": "/v1/software/galaksija-basic" +} diff --git a/site/public/v1/software/galaxy-store/index.json b/site/public/v1/software/galaxy-store/index.json new file mode 100644 index 000000000000..a05ada3f46f1 --- /dev/null +++ b/site/public/v1/software/galaxy-store/index.json @@ -0,0 +1,23 @@ +{ + "id": 3637, + "slug": "galaxy-store", + "name": "Galaxy Store", + "release_date": "2009-01-01", + "developers": [ + "Samsung Electronics" + ], + "publishers": [ + "Samsung Electronics" + ], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q484531" + ], + "created_at": "2026-07-10T10:12:40.983415", + "updated_at": "2026-07-10T10:12:40.983415", + "url": "/v1/software/galaxy-store" +} diff --git a/site/public/v1/software/galculator/index.json b/site/public/v1/software/galculator/index.json new file mode 100644 index 000000000000..76529a8d7572 --- /dev/null +++ b/site/public/v1/software/galculator/index.json @@ -0,0 +1,19 @@ +{ + "id": 3638, + "slug": "galculator", + "name": "galculator", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130638631" + ], + "created_at": "2026-07-10T10:12:40.983415", + "updated_at": "2026-07-10T10:12:40.983415", + "url": "/v1/software/galculator" +} diff --git a/site/public/v1/software/galen-framework/index.json b/site/public/v1/software/galen-framework/index.json new file mode 100644 index 000000000000..c434da5ba2cc --- /dev/null +++ b/site/public/v1/software/galen-framework/index.json @@ -0,0 +1,23 @@ +{ + "id": 3639, + "slug": "galen-framework", + "name": "Galen Framework", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Java" + ], + "licenses": [ + "Apache License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22661275" + ], + "created_at": "2026-07-10T10:12:40.983415", + "updated_at": "2026-07-10T10:12:40.983415", + "url": "/v1/software/galen-framework" +} diff --git a/site/public/v1/software/gallery-software/index.json b/site/public/v1/software/gallery-software/index.json new file mode 100644 index 000000000000..e5694ce9654a --- /dev/null +++ b/site/public/v1/software/gallery-software/index.json @@ -0,0 +1,19 @@ +{ + "id": 3640, + "slug": "gallery-software", + "name": "Gallery Software", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18356904" + ], + "created_at": "2026-07-10T10:12:40.984390", + "updated_at": "2026-07-10T10:12:40.984390", + "url": "/v1/software/gallery-software" +} diff --git a/site/public/v1/software/galleta/index.json b/site/public/v1/software/galleta/index.json new file mode 100644 index 000000000000..9ce6b14a6f89 --- /dev/null +++ b/site/public/v1/software/galleta/index.json @@ -0,0 +1,19 @@ +{ + "id": 3641, + "slug": "galleta", + "name": "galleta", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127418913" + ], + "created_at": "2026-07-10T10:12:40.984390", + "updated_at": "2026-07-10T10:12:40.984390", + "url": "/v1/software/galleta" +} diff --git a/site/public/v1/software/gambit/index.json b/site/public/v1/software/gambit/index.json new file mode 100644 index 000000000000..e26b6ebb7bb5 --- /dev/null +++ b/site/public/v1/software/gambit/index.json @@ -0,0 +1,21 @@ +{ + "id": 3642, + "slug": "gambit", + "name": "Gambit", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Creative Commons CC0 License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065589" + ], + "created_at": "2026-07-10T10:12:40.984390", + "updated_at": "2026-07-10T10:12:40.984390", + "url": "/v1/software/gambit" +} diff --git a/site/public/v1/software/game-center/index.json b/site/public/v1/software/game-center/index.json new file mode 100644 index 000000000000..6dea1475a10c --- /dev/null +++ b/site/public/v1/software/game-center/index.json @@ -0,0 +1,19 @@ +{ + "id": 3643, + "slug": "game-center", + "name": "Game Center", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1251280" + ], + "created_at": "2026-07-10T10:12:40.985429", + "updated_at": "2026-07-10T10:12:40.985429", + "url": "/v1/software/game-center" +} diff --git a/site/public/v1/software/game-jackal/index.json b/site/public/v1/software/game-jackal/index.json new file mode 100644 index 000000000000..a15c5eb2a0b1 --- /dev/null +++ b/site/public/v1/software/game-jackal/index.json @@ -0,0 +1,21 @@ +{ + "id": 3644, + "slug": "game-jackal", + "name": "Game Jackal", + "release_date": null, + "developers": [ + "RedFox" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1493053" + ], + "created_at": "2026-07-10T10:12:40.985429", + "updated_at": "2026-07-10T10:12:40.985429", + "url": "/v1/software/game-jackal" +} diff --git a/site/public/v1/software/game-of-trees-web-daemon/index.json b/site/public/v1/software/game-of-trees-web-daemon/index.json new file mode 100644 index 000000000000..70a9d0d08327 --- /dev/null +++ b/site/public/v1/software/game-of-trees-web-daemon/index.json @@ -0,0 +1,19 @@ +{ + "id": 3645, + "slug": "game-of-trees-web-daemon", + "name": "Game of Trees Web Daemon", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125968140" + ], + "created_at": "2026-07-10T10:12:40.985429", + "updated_at": "2026-07-10T10:12:40.985429", + "url": "/v1/software/game-of-trees-web-daemon" +} diff --git a/site/public/v1/software/game-server-browser/index.json b/site/public/v1/software/game-server-browser/index.json new file mode 100644 index 000000000000..b27fdf0e8e6f --- /dev/null +++ b/site/public/v1/software/game-server-browser/index.json @@ -0,0 +1,19 @@ +{ + "id": 3646, + "slug": "game-server-browser", + "name": "game server browser", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5519970" + ], + "created_at": "2026-07-10T10:12:40.986387", + "updated_at": "2026-07-10T10:12:40.986387", + "url": "/v1/software/game-server-browser" +} diff --git a/site/public/v1/software/gameagent/index.json b/site/public/v1/software/gameagent/index.json new file mode 100644 index 000000000000..f176328503d7 --- /dev/null +++ b/site/public/v1/software/gameagent/index.json @@ -0,0 +1,21 @@ +{ + "id": 3647, + "slug": "gameagent", + "name": "GameAgent", + "release_date": null, + "developers": [ + "Aspyr" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5519761" + ], + "created_at": "2026-07-10T10:12:40.986387", + "updated_at": "2026-07-10T10:12:40.986387", + "url": "/v1/software/gameagent" +} diff --git a/site/public/v1/software/gamechat/index.json b/site/public/v1/software/gamechat/index.json new file mode 100644 index 000000000000..d83e31306576 --- /dev/null +++ b/site/public/v1/software/gamechat/index.json @@ -0,0 +1,19 @@ +{ + "id": 3648, + "slug": "gamechat", + "name": "GameChat", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137783612" + ], + "created_at": "2026-07-10T10:12:40.986387", + "updated_at": "2026-07-10T10:12:40.986387", + "url": "/v1/software/gamechat" +} diff --git a/site/public/v1/software/gameday/index.json b/site/public/v1/software/gameday/index.json new file mode 100644 index 000000000000..9c8b8da41252 --- /dev/null +++ b/site/public/v1/software/gameday/index.json @@ -0,0 +1,19 @@ +{ + "id": 3649, + "slug": "gameday", + "name": "GameDay", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5519773" + ], + "created_at": "2026-07-10T10:12:40.987424", + "updated_at": "2026-07-10T10:12:40.987424", + "url": "/v1/software/gameday" +} diff --git a/site/public/v1/software/gamengen/index.json b/site/public/v1/software/gamengen/index.json new file mode 100644 index 000000000000..70b6c4aa6a1e --- /dev/null +++ b/site/public/v1/software/gamengen/index.json @@ -0,0 +1,19 @@ +{ + "id": 3650, + "slug": "gamengen", + "name": "GameNGen", + "release_date": "2024-08-27", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135419843" + ], + "created_at": "2026-07-10T10:12:40.987424", + "updated_at": "2026-07-10T10:12:40.987424", + "url": "/v1/software/gamengen" +} diff --git a/site/public/v1/software/gamera/index.json b/site/public/v1/software/gamera/index.json new file mode 100644 index 000000000000..47671df3ed38 --- /dev/null +++ b/site/public/v1/software/gamera/index.json @@ -0,0 +1,19 @@ +{ + "id": 3651, + "slug": "gamera", + "name": "Gamera", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084980" + ], + "created_at": "2026-07-10T10:12:40.987424", + "updated_at": "2026-07-10T10:12:40.987424", + "url": "/v1/software/gamera" +} diff --git a/site/public/v1/software/gameranger/index.json b/site/public/v1/software/gameranger/index.json new file mode 100644 index 000000000000..beb5feb5dec5 --- /dev/null +++ b/site/public/v1/software/gameranger/index.json @@ -0,0 +1,21 @@ +{ + "id": 3652, + "slug": "gameranger", + "name": "GameRanger", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3757948" + ], + "created_at": "2026-07-10T10:12:40.988379", + "updated_at": "2026-07-10T10:12:40.988379", + "url": "/v1/software/gameranger" +} diff --git a/site/public/v1/software/games-for-windows-live/index.json b/site/public/v1/software/games-for-windows-live/index.json new file mode 100644 index 000000000000..b6a04e468ac9 --- /dev/null +++ b/site/public/v1/software/games-for-windows-live/index.json @@ -0,0 +1,21 @@ +{ + "id": 3653, + "slug": "games-for-windows-live", + "name": "Games for Windows – Live", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2991004" + ], + "created_at": "2026-07-10T10:12:40.988379", + "updated_at": "2026-07-10T10:12:40.988379", + "url": "/v1/software/games-for-windows-live" +} diff --git a/site/public/v1/software/games-for-windows/index.json b/site/public/v1/software/games-for-windows/index.json new file mode 100644 index 000000000000..e3d50d56c82f --- /dev/null +++ b/site/public/v1/software/games-for-windows/index.json @@ -0,0 +1,19 @@ +{ + "id": 3654, + "slug": "games-for-windows", + "name": "Games for Windows", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1062711" + ], + "created_at": "2026-07-10T10:12:40.988379", + "updated_at": "2026-07-10T10:12:40.988379", + "url": "/v1/software/games-for-windows" +} diff --git a/site/public/v1/software/gameshadow/index.json b/site/public/v1/software/gameshadow/index.json new file mode 100644 index 000000000000..c83900076d85 --- /dev/null +++ b/site/public/v1/software/gameshadow/index.json @@ -0,0 +1,19 @@ +{ + "id": 3655, + "slug": "gameshadow", + "name": "GameShadow", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5519789" + ], + "created_at": "2026-07-10T10:12:40.989398", + "updated_at": "2026-07-10T10:12:40.989398", + "url": "/v1/software/gameshadow" +} diff --git a/site/public/v1/software/gamespy/index.json b/site/public/v1/software/gamespy/index.json new file mode 100644 index 000000000000..d34fbedef309 --- /dev/null +++ b/site/public/v1/software/gamespy/index.json @@ -0,0 +1,19 @@ +{ + "id": 3656, + "slug": "gamespy", + "name": "GameSpy", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q281239" + ], + "created_at": "2026-07-10T10:12:40.989398", + "updated_at": "2026-07-10T10:12:40.989398", + "url": "/v1/software/gamespy" +} diff --git a/site/public/v1/software/gamess/index.json b/site/public/v1/software/gamess/index.json new file mode 100644 index 000000000000..8bbaaaa14edb --- /dev/null +++ b/site/public/v1/software/gamess/index.json @@ -0,0 +1,23 @@ +{ + "id": 3657, + "slug": "gamess", + "name": "GAMESS", + "release_date": null, + "developers": [ + "Iowa State University" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Fortran" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q400744" + ], + "created_at": "2026-07-10T10:12:40.989398", + "updated_at": "2026-07-10T10:12:40.989398", + "url": "/v1/software/gamess" +} diff --git a/site/public/v1/software/gamgi/index.json b/site/public/v1/software/gamgi/index.json new file mode 100644 index 000000000000..4322de036777 --- /dev/null +++ b/site/public/v1/software/gamgi/index.json @@ -0,0 +1,21 @@ +{ + "id": 3658, + "slug": "gamgi", + "name": "GAMGI", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "GNU General Public License, version 3.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125092641" + ], + "created_at": "2026-07-10T10:12:40.990359", + "updated_at": "2026-07-10T10:12:40.990359", + "url": "/v1/software/gamgi" +} diff --git a/site/public/v1/software/gamification-software/index.json b/site/public/v1/software/gamification-software/index.json new file mode 100644 index 000000000000..31db8bc8d1f2 --- /dev/null +++ b/site/public/v1/software/gamification-software/index.json @@ -0,0 +1,19 @@ +{ + "id": 3659, + "slug": "gamification-software", + "name": "Gamification software", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135527129" + ], + "created_at": "2026-07-10T10:12:40.990359", + "updated_at": "2026-07-10T10:12:40.990359", + "url": "/v1/software/gamification-software" +} diff --git a/site/public/v1/software/gamin/index.json b/site/public/v1/software/gamin/index.json new file mode 100644 index 000000000000..d2bcdd0382f6 --- /dev/null +++ b/site/public/v1/software/gamin/index.json @@ -0,0 +1,19 @@ +{ + "id": 3660, + "slug": "gamin", + "name": "Gamin", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4039254" + ], + "created_at": "2026-07-10T10:12:40.990359", + "updated_at": "2026-07-10T10:12:40.990359", + "url": "/v1/software/gamin" +} diff --git a/site/public/v1/software/gamma/index.json b/site/public/v1/software/gamma/index.json new file mode 100644 index 000000000000..2cae96199ccc --- /dev/null +++ b/site/public/v1/software/gamma/index.json @@ -0,0 +1,19 @@ +{ + "id": 3661, + "slug": "gamma", + "name": "Gamma", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139552981" + ], + "created_at": "2026-07-10T10:12:40.991371", + "updated_at": "2026-07-10T10:12:40.991371", + "url": "/v1/software/gamma" +} diff --git a/site/public/v1/software/gams/index.json b/site/public/v1/software/gams/index.json new file mode 100644 index 000000000000..5c24d637f161 --- /dev/null +++ b/site/public/v1/software/gams/index.json @@ -0,0 +1,19 @@ +{ + "id": 3662, + "slug": "gams", + "name": "GAMS", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084981" + ], + "created_at": "2026-07-10T10:12:40.991371", + "updated_at": "2026-07-10T10:12:40.991371", + "url": "/v1/software/gams" +} diff --git a/site/public/v1/software/ganeti-instance-image/index.json b/site/public/v1/software/ganeti-instance-image/index.json new file mode 100644 index 000000000000..77c8b03847c6 --- /dev/null +++ b/site/public/v1/software/ganeti-instance-image/index.json @@ -0,0 +1,19 @@ +{ + "id": 3663, + "slug": "ganeti-instance-image", + "name": "ganeti-instance-image", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974858" + ], + "created_at": "2026-07-10T10:12:40.991371", + "updated_at": "2026-07-10T10:12:40.991371", + "url": "/v1/software/ganeti-instance-image" +} diff --git a/site/public/v1/software/gap-messenger/index.json b/site/public/v1/software/gap-messenger/index.json new file mode 100644 index 000000000000..9b2ca5726731 --- /dev/null +++ b/site/public/v1/software/gap-messenger/index.json @@ -0,0 +1,22 @@ +{ + "id": 3664, + "slug": "gap-messenger", + "name": "Gap Messenger", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "iOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q58003860" + ], + "created_at": "2026-07-10T10:12:40.992377", + "updated_at": "2026-07-10T10:12:40.992377", + "url": "/v1/software/gap-messenger" +} diff --git a/site/public/v1/software/gapvis/index.json b/site/public/v1/software/gapvis/index.json new file mode 100644 index 000000000000..c8d2bb0331f2 --- /dev/null +++ b/site/public/v1/software/gapvis/index.json @@ -0,0 +1,19 @@ +{ + "id": 3665, + "slug": "gapvis", + "name": "GapVis", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084984" + ], + "created_at": "2026-07-10T10:12:40.992377", + "updated_at": "2026-07-10T10:12:40.992377", + "url": "/v1/software/gapvis" +} diff --git a/site/public/v1/software/gar/index.json b/site/public/v1/software/gar/index.json new file mode 100644 index 000000000000..228549e4e741 --- /dev/null +++ b/site/public/v1/software/gar/index.json @@ -0,0 +1,19 @@ +{ + "id": 3666, + "slug": "gar", + "name": "GAR", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110429369" + ], + "created_at": "2026-07-10T10:12:40.992377", + "updated_at": "2026-07-10T10:12:40.992377", + "url": "/v1/software/gar" +} diff --git a/site/public/v1/software/garak/index.json b/site/public/v1/software/garak/index.json new file mode 100644 index 000000000000..ae67fceedeb1 --- /dev/null +++ b/site/public/v1/software/garak/index.json @@ -0,0 +1,19 @@ +{ + "id": 3667, + "slug": "garak", + "name": "Garak", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136346073" + ], + "created_at": "2026-07-10T10:12:40.993376", + "updated_at": "2026-07-10T10:12:40.993376", + "url": "/v1/software/garak" +} diff --git a/site/public/v1/software/garant/index.json b/site/public/v1/software/garant/index.json new file mode 100644 index 000000000000..4bc39555c466 --- /dev/null +++ b/site/public/v1/software/garant/index.json @@ -0,0 +1,25 @@ +{ + "id": 3668, + "slug": "garant", + "name": "Garant", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Astra Linux", + "iOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16251052" + ], + "created_at": "2026-07-10T10:12:40.993376", + "updated_at": "2026-07-10T10:12:40.993376", + "url": "/v1/software/garant" +} diff --git a/site/public/v1/software/garry-s-mod-addon-creator-and-extractor/index.json b/site/public/v1/software/garry-s-mod-addon-creator-and-extractor/index.json new file mode 100644 index 000000000000..f3d72d0e5866 --- /dev/null +++ b/site/public/v1/software/garry-s-mod-addon-creator-and-extractor/index.json @@ -0,0 +1,19 @@ +{ + "id": 3669, + "slug": "garry-s-mod-addon-creator-and-extractor", + "name": "Garry's Mod Addon Creator and Extractor", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q65946960" + ], + "created_at": "2026-07-10T10:12:40.993376", + "updated_at": "2026-07-10T10:12:40.993376", + "url": "/v1/software/garry-s-mod-addon-creator-and-extractor" +} diff --git a/site/public/v1/software/garstow/index.json b/site/public/v1/software/garstow/index.json new file mode 100644 index 000000000000..1061ea8e392b --- /dev/null +++ b/site/public/v1/software/garstow/index.json @@ -0,0 +1,19 @@ +{ + "id": 3670, + "slug": "garstow", + "name": "GARstow", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110429577" + ], + "created_at": "2026-07-10T10:12:40.994313", + "updated_at": "2026-07-10T10:12:40.994313", + "url": "/v1/software/garstow" +} diff --git a/site/public/v1/software/garv-app/index.json b/site/public/v1/software/garv-app/index.json new file mode 100644 index 000000000000..f5ec0c722ce1 --- /dev/null +++ b/site/public/v1/software/garv-app/index.json @@ -0,0 +1,21 @@ +{ + "id": 3671, + "slug": "garv-app", + "name": "GARV app", + "release_date": null, + "developers": [ + "Rural Electrification Corporation Limited" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28957010" + ], + "created_at": "2026-07-10T10:12:40.994313", + "updated_at": "2026-07-10T10:12:40.994313", + "url": "/v1/software/garv-app" +} diff --git a/site/public/v1/software/gasty/index.json b/site/public/v1/software/gasty/index.json new file mode 100644 index 000000000000..6f7bb073a63a --- /dev/null +++ b/site/public/v1/software/gasty/index.json @@ -0,0 +1,19 @@ +{ + "id": 3672, + "slug": "gasty", + "name": "Gasty", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140225693" + ], + "created_at": "2026-07-10T10:12:40.994313", + "updated_at": "2026-07-10T10:12:40.994313", + "url": "/v1/software/gasty" +} diff --git a/site/public/v1/software/gatekeeper-q28451423/index.json b/site/public/v1/software/gatekeeper-q28451423/index.json new file mode 100644 index 000000000000..f80debbff760 --- /dev/null +++ b/site/public/v1/software/gatekeeper-q28451423/index.json @@ -0,0 +1,21 @@ +{ + "id": 3673, + "slug": "gatekeeper-q28451423", + "name": "GateKeeper", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28451423" + ], + "created_at": "2026-07-10T10:12:40.995310", + "updated_at": "2026-07-10T10:12:40.995310", + "url": "/v1/software/gatekeeper-q28451423" +} diff --git a/site/public/v1/software/gatekeeper-q96678585/index.json b/site/public/v1/software/gatekeeper-q96678585/index.json new file mode 100644 index 000000000000..cc18b9231f07 --- /dev/null +++ b/site/public/v1/software/gatekeeper-q96678585/index.json @@ -0,0 +1,21 @@ +{ + "id": 3674, + "slug": "gatekeeper-q96678585", + "name": "Gatekeeper", + "release_date": null, + "developers": [ + "Google" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q96678585" + ], + "created_at": "2026-07-10T10:12:40.995310", + "updated_at": "2026-07-10T10:12:40.995310", + "url": "/v1/software/gatekeeper-q96678585" +} diff --git a/site/public/v1/software/gatekeeper/index.json b/site/public/v1/software/gatekeeper/index.json new file mode 100644 index 000000000000..14d64b1a6ee0 --- /dev/null +++ b/site/public/v1/software/gatekeeper/index.json @@ -0,0 +1,23 @@ +{ + "id": 3675, + "slug": "gatekeeper", + "name": "Gatekeeper", + "release_date": null, + "developers": [ + "Apple Inc." + ], + "publishers": [], + "operating_systems": [ + "macOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5527069" + ], + "created_at": "2026-07-10T10:12:40.995310", + "updated_at": "2026-07-10T10:12:40.995310", + "url": "/v1/software/gatekeeper" +} diff --git a/site/public/v1/software/gates-of-andaron/index.json b/site/public/v1/software/gates-of-andaron/index.json new file mode 100644 index 000000000000..ef72a62349d1 --- /dev/null +++ b/site/public/v1/software/gates-of-andaron/index.json @@ -0,0 +1,19 @@ +{ + "id": 3676, + "slug": "gates-of-andaron", + "name": "Gates of Andaron", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140354972" + ], + "created_at": "2026-07-10T10:12:40.995310", + "updated_at": "2026-07-10T10:12:40.995310", + "url": "/v1/software/gates-of-andaron" +} diff --git a/site/public/v1/software/gatgpt/index.json b/site/public/v1/software/gatgpt/index.json new file mode 100644 index 000000000000..c423c11c6e22 --- /dev/null +++ b/site/public/v1/software/gatgpt/index.json @@ -0,0 +1,19 @@ +{ + "id": 3677, + "slug": "gatgpt", + "name": "GatGPT", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122981231" + ], + "created_at": "2026-07-10T10:12:40.996320", + "updated_at": "2026-07-10T10:12:40.996320", + "url": "/v1/software/gatgpt" +} diff --git a/site/public/v1/software/gatk/index.json b/site/public/v1/software/gatk/index.json new file mode 100644 index 000000000000..245425e76d8e --- /dev/null +++ b/site/public/v1/software/gatk/index.json @@ -0,0 +1,21 @@ +{ + "id": 3678, + "slug": "gatk", + "name": "gatk", + "release_date": null, + "developers": [ + "David \"Broad\" Benjamin" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974859" + ], + "created_at": "2026-07-10T10:12:40.996320", + "updated_at": "2026-07-10T10:12:40.996320", + "url": "/v1/software/gatk" +} diff --git a/site/public/v1/software/gazelle/index.json b/site/public/v1/software/gazelle/index.json new file mode 100644 index 000000000000..50842c3798f7 --- /dev/null +++ b/site/public/v1/software/gazelle/index.json @@ -0,0 +1,19 @@ +{ + "id": 3679, + "slug": "gazelle", + "name": "Gazelle", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1496637" + ], + "created_at": "2026-07-10T10:12:40.997319", + "updated_at": "2026-07-10T10:12:40.997319", + "url": "/v1/software/gazelle" +} diff --git a/site/public/v1/software/gba4ios/index.json b/site/public/v1/software/gba4ios/index.json new file mode 100644 index 000000000000..8b2ca86e4e53 --- /dev/null +++ b/site/public/v1/software/gba4ios/index.json @@ -0,0 +1,23 @@ +{ + "id": 3680, + "slug": "gba4ios", + "name": "GBA4iOS", + "release_date": null, + "developers": [ + "Riley Testut" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "GNU General Public License, version 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131583562" + ], + "created_at": "2026-07-10T10:12:40.997319", + "updated_at": "2026-07-10T10:12:40.997319", + "url": "/v1/software/gba4ios" +} diff --git a/site/public/v1/software/gbehistun/index.json b/site/public/v1/software/gbehistun/index.json new file mode 100644 index 000000000000..b3e9fc053c7f --- /dev/null +++ b/site/public/v1/software/gbehistun/index.json @@ -0,0 +1,19 @@ +{ + "id": 3681, + "slug": "gbehistun", + "name": "Gbehistun", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76183188" + ], + "created_at": "2026-07-10T10:12:40.997319", + "updated_at": "2026-07-10T10:12:40.997319", + "url": "/v1/software/gbehistun" +} diff --git a/site/public/v1/software/gbtoolsid/index.json b/site/public/v1/software/gbtoolsid/index.json new file mode 100644 index 000000000000..b71bf5b91123 --- /dev/null +++ b/site/public/v1/software/gbtoolsid/index.json @@ -0,0 +1,21 @@ +{ + "id": 3682, + "slug": "gbtoolsid", + "name": "gbtoolsid", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Unlicense" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122199923" + ], + "created_at": "2026-07-10T10:12:40.997319", + "updated_at": "2026-07-10T10:12:40.997319", + "url": "/v1/software/gbtoolsid" +} diff --git a/site/public/v1/software/gc-ai/index.json b/site/public/v1/software/gc-ai/index.json new file mode 100644 index 000000000000..1f813a6f3307 --- /dev/null +++ b/site/public/v1/software/gc-ai/index.json @@ -0,0 +1,19 @@ +{ + "id": 3683, + "slug": "gc-ai", + "name": "GC AI", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137380835" + ], + "created_at": "2026-07-10T10:12:40.998320", + "updated_at": "2026-07-10T10:12:40.998320", + "url": "/v1/software/gc-ai" +} diff --git a/site/public/v1/software/gcalcli/index.json b/site/public/v1/software/gcalcli/index.json new file mode 100644 index 000000000000..6b8521e9ab88 --- /dev/null +++ b/site/public/v1/software/gcalcli/index.json @@ -0,0 +1,19 @@ +{ + "id": 3684, + "slug": "gcalcli", + "name": "gcalcli", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62850463" + ], + "created_at": "2026-07-10T10:12:40.998320", + "updated_at": "2026-07-10T10:12:40.998320", + "url": "/v1/software/gcalcli" +} diff --git a/site/public/v1/software/gcfscape/index.json b/site/public/v1/software/gcfscape/index.json new file mode 100644 index 000000000000..029ad05c7dbf --- /dev/null +++ b/site/public/v1/software/gcfscape/index.json @@ -0,0 +1,19 @@ +{ + "id": 3685, + "slug": "gcfscape", + "name": "GCFScape", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124423695" + ], + "created_at": "2026-07-10T10:12:40.999379", + "updated_at": "2026-07-10T10:12:40.999379", + "url": "/v1/software/gcfscape" +} diff --git a/site/public/v1/software/gcin/index.json b/site/public/v1/software/gcin/index.json new file mode 100644 index 000000000000..be2cc54aa74b --- /dev/null +++ b/site/public/v1/software/gcin/index.json @@ -0,0 +1,19 @@ +{ + "id": 3686, + "slug": "gcin", + "name": "gcin", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10847303" + ], + "created_at": "2026-07-10T10:12:40.999379", + "updated_at": "2026-07-10T10:12:40.999379", + "url": "/v1/software/gcin" +} diff --git a/site/public/v1/software/gcolor2/index.json b/site/public/v1/software/gcolor2/index.json new file mode 100644 index 000000000000..5f3019560904 --- /dev/null +++ b/site/public/v1/software/gcolor2/index.json @@ -0,0 +1,19 @@ +{ + "id": 3687, + "slug": "gcolor2", + "name": "gcolor2", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62850473" + ], + "created_at": "2026-07-10T10:12:40.999379", + "updated_at": "2026-07-10T10:12:40.999379", + "url": "/v1/software/gcolor2" +} diff --git a/site/public/v1/software/gcube-system/index.json b/site/public/v1/software/gcube-system/index.json new file mode 100644 index 000000000000..4da65337a4fa --- /dev/null +++ b/site/public/v1/software/gcube-system/index.json @@ -0,0 +1,19 @@ +{ + "id": 3688, + "slug": "gcube-system", + "name": "GCube system", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106935968" + ], + "created_at": "2026-07-10T10:12:40.999379", + "updated_at": "2026-07-10T10:12:40.999379", + "url": "/v1/software/gcube-system" +} diff --git a/site/public/v1/software/gdk-pixbuf-loader-webp/index.json b/site/public/v1/software/gdk-pixbuf-loader-webp/index.json new file mode 100644 index 000000000000..617656bfb8a6 --- /dev/null +++ b/site/public/v1/software/gdk-pixbuf-loader-webp/index.json @@ -0,0 +1,21 @@ +{ + "id": 3689, + "slug": "gdk-pixbuf-loader-webp", + "name": "gdk-pixbuf-loader-webp", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "GNU Library General Public License, version 2.0 or later" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974862" + ], + "created_at": "2026-07-10T10:12:41.000378", + "updated_at": "2026-07-10T10:12:41.000378", + "url": "/v1/software/gdk-pixbuf-loader-webp" +} diff --git a/site/public/v1/software/geditcom/index.json b/site/public/v1/software/geditcom/index.json new file mode 100644 index 000000000000..29595f26f414 --- /dev/null +++ b/site/public/v1/software/geditcom/index.json @@ -0,0 +1,19 @@ +{ + "id": 3690, + "slug": "geditcom", + "name": "GEDitCOM", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5513142" + ], + "created_at": "2026-07-10T10:12:41.000378", + "updated_at": "2026-07-10T10:12:41.000378", + "url": "/v1/software/geditcom" +} diff --git a/site/public/v1/software/geekbench/index.json b/site/public/v1/software/geekbench/index.json new file mode 100644 index 000000000000..6d3d8a6fffd1 --- /dev/null +++ b/site/public/v1/software/geekbench/index.json @@ -0,0 +1,19 @@ +{ + "id": 3691, + "slug": "geekbench", + "name": "Geekbench", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q20708054" + ], + "created_at": "2026-07-10T10:12:41.001398", + "updated_at": "2026-07-10T10:12:41.001398", + "url": "/v1/software/geekbench" +} diff --git a/site/public/v1/software/geforce-experience/index.json b/site/public/v1/software/geforce-experience/index.json new file mode 100644 index 000000000000..449f97c1f209 --- /dev/null +++ b/site/public/v1/software/geforce-experience/index.json @@ -0,0 +1,21 @@ +{ + "id": 3692, + "slug": "geforce-experience", + "name": "GeForce Experience", + "release_date": null, + "developers": [ + "Nvidia" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120986537" + ], + "created_at": "2026-07-10T10:12:41.001398", + "updated_at": "2026-07-10T10:12:41.001398", + "url": "/v1/software/geforce-experience" +} diff --git a/site/public/v1/software/gekkofs/index.json b/site/public/v1/software/gekkofs/index.json new file mode 100644 index 000000000000..4e9070d55299 --- /dev/null +++ b/site/public/v1/software/gekkofs/index.json @@ -0,0 +1,19 @@ +{ + "id": 3693, + "slug": "gekkofs", + "name": "GekkoFS", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117852532" + ], + "created_at": "2026-07-10T10:12:41.001398", + "updated_at": "2026-07-10T10:12:41.001398", + "url": "/v1/software/gekkofs" +} diff --git a/site/public/v1/software/gem5/index.json b/site/public/v1/software/gem5/index.json new file mode 100644 index 000000000000..2676536fcf91 --- /dev/null +++ b/site/public/v1/software/gem5/index.json @@ -0,0 +1,19 @@ +{ + "id": 3694, + "slug": "gem5", + "name": "Gem5", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q85762894" + ], + "created_at": "2026-07-10T10:12:41.001398", + "updated_at": "2026-07-10T10:12:41.001398", + "url": "/v1/software/gem5" +} diff --git a/site/public/v1/software/gemato/index.json b/site/public/v1/software/gemato/index.json new file mode 100644 index 000000000000..28ac2b432bbe --- /dev/null +++ b/site/public/v1/software/gemato/index.json @@ -0,0 +1,19 @@ +{ + "id": 3695, + "slug": "gemato", + "name": "gemato", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065376" + ], + "created_at": "2026-07-10T10:12:41.002536", + "updated_at": "2026-07-10T10:12:41.002536", + "url": "/v1/software/gemato" +} diff --git a/site/public/v1/software/gemini-blueprint/index.json b/site/public/v1/software/gemini-blueprint/index.json new file mode 100644 index 000000000000..7b526b03437c --- /dev/null +++ b/site/public/v1/software/gemini-blueprint/index.json @@ -0,0 +1,19 @@ +{ + "id": 3696, + "slug": "gemini-blueprint", + "name": "Gemini Blueprint", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76167636" + ], + "created_at": "2026-07-10T10:12:41.002536", + "updated_at": "2026-07-10T10:12:41.002536", + "url": "/v1/software/gemini-blueprint" +} diff --git a/site/public/v1/software/gemini-dbaccess/index.json b/site/public/v1/software/gemini-dbaccess/index.json new file mode 100644 index 000000000000..be96a70485bb --- /dev/null +++ b/site/public/v1/software/gemini-dbaccess/index.json @@ -0,0 +1,19 @@ +{ + "id": 3697, + "slug": "gemini-dbaccess", + "name": "Gemini DBAccess", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76167948" + ], + "created_at": "2026-07-10T10:12:41.002536", + "updated_at": "2026-07-10T10:12:41.002536", + "url": "/v1/software/gemini-dbaccess" +} diff --git a/site/public/v1/software/gemini-enterprise-modules-project/index.json b/site/public/v1/software/gemini-enterprise-modules-project/index.json new file mode 100644 index 000000000000..db6f1bfc6084 --- /dev/null +++ b/site/public/v1/software/gemini-enterprise-modules-project/index.json @@ -0,0 +1,19 @@ +{ + "id": 3698, + "slug": "gemini-enterprise-modules-project", + "name": "Gemini - Enterprise Modules Project", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76167616" + ], + "created_at": "2026-07-10T10:12:41.003593", + "updated_at": "2026-07-10T10:12:41.003593", + "url": "/v1/software/gemini-enterprise-modules-project" +} diff --git a/site/public/v1/software/gemini-jpa/index.json b/site/public/v1/software/gemini-jpa/index.json new file mode 100644 index 000000000000..05fa234a57c8 --- /dev/null +++ b/site/public/v1/software/gemini-jpa/index.json @@ -0,0 +1,19 @@ +{ + "id": 3699, + "slug": "gemini-jpa", + "name": "Gemini JPA", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76167932" + ], + "created_at": "2026-07-10T10:12:41.003593", + "updated_at": "2026-07-10T10:12:41.003593", + "url": "/v1/software/gemini-jpa" +} diff --git a/site/public/v1/software/gemini-management/index.json b/site/public/v1/software/gemini-management/index.json new file mode 100644 index 000000000000..95a8fddce37a --- /dev/null +++ b/site/public/v1/software/gemini-management/index.json @@ -0,0 +1,19 @@ +{ + "id": 3700, + "slug": "gemini-management", + "name": "Gemini Management", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76167907" + ], + "created_at": "2026-07-10T10:12:41.003593", + "updated_at": "2026-07-10T10:12:41.003593", + "url": "/v1/software/gemini-management" +} diff --git a/site/public/v1/software/gemini-web/index.json b/site/public/v1/software/gemini-web/index.json new file mode 100644 index 000000000000..e85f625d712e --- /dev/null +++ b/site/public/v1/software/gemini-web/index.json @@ -0,0 +1,19 @@ +{ + "id": 3701, + "slug": "gemini-web", + "name": "Gemini Web", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76167881" + ], + "created_at": "2026-07-10T10:12:41.004547", + "updated_at": "2026-07-10T10:12:41.004547", + "url": "/v1/software/gemini-web" +} diff --git a/site/public/v1/software/gemini/index.json b/site/public/v1/software/gemini/index.json new file mode 100644 index 000000000000..dc4ca031b6aa --- /dev/null +++ b/site/public/v1/software/gemini/index.json @@ -0,0 +1,19 @@ +{ + "id": 3702, + "slug": "gemini", + "name": "Gemini", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4039313" + ], + "created_at": "2026-07-10T10:12:41.004547", + "updated_at": "2026-07-10T10:12:41.004547", + "url": "/v1/software/gemini" +} diff --git a/site/public/v1/software/gemix-studio/index.json b/site/public/v1/software/gemix-studio/index.json new file mode 100644 index 000000000000..77374a47cda2 --- /dev/null +++ b/site/public/v1/software/gemix-studio/index.json @@ -0,0 +1,19 @@ +{ + "id": 3703, + "slug": "gemix-studio", + "name": "Gemix Studio", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5876695" + ], + "created_at": "2026-07-10T10:12:41.004547", + "updated_at": "2026-07-10T10:12:41.004547", + "url": "/v1/software/gemix-studio" +} diff --git a/site/public/v1/software/gemulator/index.json b/site/public/v1/software/gemulator/index.json new file mode 100644 index 000000000000..f30cc5c87428 --- /dev/null +++ b/site/public/v1/software/gemulator/index.json @@ -0,0 +1,21 @@ +{ + "id": 3704, + "slug": "gemulator", + "name": "Gemulator", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1501207" + ], + "created_at": "2026-07-10T10:12:41.005594", + "updated_at": "2026-07-10T10:12:41.005594", + "url": "/v1/software/gemulator" +} diff --git a/site/public/v1/software/gene-designer/index.json b/site/public/v1/software/gene-designer/index.json new file mode 100644 index 000000000000..ed15ee015b38 --- /dev/null +++ b/site/public/v1/software/gene-designer/index.json @@ -0,0 +1,23 @@ +{ + "id": 3705, + "slug": "gene-designer", + "name": "Gene Designer", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5531177" + ], + "created_at": "2026-07-10T10:12:41.005594", + "updated_at": "2026-07-10T10:12:41.005594", + "url": "/v1/software/gene-designer" +} diff --git a/site/public/v1/software/gene-expression-dynamics-inspector/index.json b/site/public/v1/software/gene-expression-dynamics-inspector/index.json new file mode 100644 index 000000000000..a83109c62de7 --- /dev/null +++ b/site/public/v1/software/gene-expression-dynamics-inspector/index.json @@ -0,0 +1,21 @@ +{ + "id": 3706, + "slug": "gene-expression-dynamics-inspector", + "name": "Gene Expression Dynamics Inspector", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "MATLAB" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113338282" + ], + "created_at": "2026-07-10T10:12:41.005594", + "updated_at": "2026-07-10T10:12:41.005594", + "url": "/v1/software/gene-expression-dynamics-inspector" +} diff --git a/site/public/v1/software/geneious/index.json b/site/public/v1/software/geneious/index.json new file mode 100644 index 000000000000..8db9704be906 --- /dev/null +++ b/site/public/v1/software/geneious/index.json @@ -0,0 +1,21 @@ +{ + "id": 3707, + "slug": "geneious", + "name": "Geneious", + "release_date": null, + "developers": [ + "Biomatters" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5531616" + ], + "created_at": "2026-07-10T10:12:41.005594", + "updated_at": "2026-07-10T10:12:41.005594", + "url": "/v1/software/geneious" +} diff --git a/site/public/v1/software/genemark/index.json b/site/public/v1/software/genemark/index.json new file mode 100644 index 000000000000..fe6d790c13d5 --- /dev/null +++ b/site/public/v1/software/genemark/index.json @@ -0,0 +1,23 @@ +{ + "id": 3708, + "slug": "genemark", + "name": "GeneMark", + "release_date": "1993-01-01", + "developers": [ + "Georgia Tech" + ], + "publishers": [], + "operating_systems": [ + "macOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16335160" + ], + "created_at": "2026-07-10T10:12:41.006616", + "updated_at": "2026-07-10T10:12:41.006616", + "url": "/v1/software/genemark" +} diff --git a/site/public/v1/software/genepattern/index.json b/site/public/v1/software/genepattern/index.json new file mode 100644 index 000000000000..8ca61254f92a --- /dev/null +++ b/site/public/v1/software/genepattern/index.json @@ -0,0 +1,21 @@ +{ + "id": 3709, + "slug": "genepattern", + "name": "GenePattern", + "release_date": null, + "developers": [ + "Broad Institute" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5531054" + ], + "created_at": "2026-07-10T10:12:41.006616", + "updated_at": "2026-07-10T10:12:41.006616", + "url": "/v1/software/genepattern" +} diff --git a/site/public/v1/software/general-graphics-interface/index.json b/site/public/v1/software/general-graphics-interface/index.json new file mode 100644 index 000000000000..62abf05b773d --- /dev/null +++ b/site/public/v1/software/general-graphics-interface/index.json @@ -0,0 +1,21 @@ +{ + "id": 3710, + "slug": "general-graphics-interface", + "name": "General Graphics Interface", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5531930" + ], + "created_at": "2026-07-10T10:12:41.007595", + "updated_at": "2026-07-10T10:12:41.007595", + "url": "/v1/software/general-graphics-interface" +} diff --git a/site/public/v1/software/general-inquirer-category/index.json b/site/public/v1/software/general-inquirer-category/index.json new file mode 100644 index 000000000000..2c357b857c9f --- /dev/null +++ b/site/public/v1/software/general-inquirer-category/index.json @@ -0,0 +1,19 @@ +{ + "id": 3711, + "slug": "general-inquirer-category", + "name": "General Inquirer Category", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084985" + ], + "created_at": "2026-07-10T10:12:41.007595", + "updated_at": "2026-07-10T10:12:41.007595", + "url": "/v1/software/general-inquirer-category" +} diff --git a/site/public/v1/software/generalized-environmental-modeling-system-for-surfacewaters/index.json b/site/public/v1/software/generalized-environmental-modeling-system-for-surfacewaters/index.json new file mode 100644 index 000000000000..29d47013514c --- /dev/null +++ b/site/public/v1/software/generalized-environmental-modeling-system-for-surfacewaters/index.json @@ -0,0 +1,21 @@ +{ + "id": 3712, + "slug": "generalized-environmental-modeling-system-for-surfacewaters", + "name": "Generalized Environmental Modeling System for Surfacewaters", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5532433" + ], + "created_at": "2026-07-10T10:12:41.007595", + "updated_at": "2026-07-10T10:12:41.007595", + "url": "/v1/software/generalized-environmental-modeling-system-for-surfacewaters" +} diff --git a/site/public/v1/software/generic-linked-database/index.json b/site/public/v1/software/generic-linked-database/index.json new file mode 100644 index 000000000000..7b1d3f8e1c95 --- /dev/null +++ b/site/public/v1/software/generic-linked-database/index.json @@ -0,0 +1,23 @@ +{ + "id": 3713, + "slug": "generic-linked-database", + "name": "generic-linked-database", + "release_date": null, + "developers": [ + "Matthias Probst" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Python" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131579929" + ], + "created_at": "2026-07-10T10:12:41.007595", + "updated_at": "2026-07-10T10:12:41.007595", + "url": "/v1/software/generic-linked-database" +} diff --git a/site/public/v1/software/genevestigator/index.json b/site/public/v1/software/genevestigator/index.json new file mode 100644 index 000000000000..fe6be2c40d7b --- /dev/null +++ b/site/public/v1/software/genevestigator/index.json @@ -0,0 +1,21 @@ +{ + "id": 3714, + "slug": "genevestigator", + "name": "Genevestigator", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q30178153" + ], + "created_at": "2026-07-10T10:12:41.008611", + "updated_at": "2026-07-10T10:12:41.008611", + "url": "/v1/software/genevestigator" +} diff --git a/site/public/v1/software/genext2fs/index.json b/site/public/v1/software/genext2fs/index.json new file mode 100644 index 000000000000..42727a489f01 --- /dev/null +++ b/site/public/v1/software/genext2fs/index.json @@ -0,0 +1,19 @@ +{ + "id": 3715, + "slug": "genext2fs", + "name": "genext2fs", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62850739" + ], + "created_at": "2026-07-10T10:12:41.008611", + "updated_at": "2026-07-10T10:12:41.008611", + "url": "/v1/software/genext2fs" +} diff --git a/site/public/v1/software/gengen/index.json b/site/public/v1/software/gengen/index.json new file mode 100644 index 000000000000..72927c125535 --- /dev/null +++ b/site/public/v1/software/gengen/index.json @@ -0,0 +1,19 @@ +{ + "id": 3716, + "slug": "gengen", + "name": "Gengen", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76183229" + ], + "created_at": "2026-07-10T10:12:41.008611", + "updated_at": "2026-07-10T10:12:41.008611", + "url": "/v1/software/gengen" +} diff --git a/site/public/v1/software/genially/index.json b/site/public/v1/software/genially/index.json new file mode 100644 index 000000000000..77b388770635 --- /dev/null +++ b/site/public/v1/software/genially/index.json @@ -0,0 +1,19 @@ +{ + "id": 3717, + "slug": "genially", + "name": "Genially", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q57977122" + ], + "created_at": "2026-07-10T10:12:41.009605", + "updated_at": "2026-07-10T10:12:41.009605", + "url": "/v1/software/genially" +} diff --git a/site/public/v1/software/genie-backup-manager/index.json b/site/public/v1/software/genie-backup-manager/index.json new file mode 100644 index 000000000000..5b729b606f22 --- /dev/null +++ b/site/public/v1/software/genie-backup-manager/index.json @@ -0,0 +1,21 @@ +{ + "id": 3718, + "slug": "genie-backup-manager", + "name": "Genie Backup Manager", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5533181" + ], + "created_at": "2026-07-10T10:12:41.009605", + "updated_at": "2026-07-10T10:12:41.009605", + "url": "/v1/software/genie-backup-manager" +} diff --git a/site/public/v1/software/genius-project/index.json b/site/public/v1/software/genius-project/index.json new file mode 100644 index 000000000000..871e264f29ad --- /dev/null +++ b/site/public/v1/software/genius-project/index.json @@ -0,0 +1,19 @@ +{ + "id": 3719, + "slug": "genius-project", + "name": "Genius Project", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2698837" + ], + "created_at": "2026-07-10T10:12:41.009605", + "updated_at": "2026-07-10T10:12:41.009605", + "url": "/v1/software/genius-project" +} diff --git a/site/public/v1/software/geniusmatcher/index.json b/site/public/v1/software/geniusmatcher/index.json new file mode 100644 index 000000000000..7ca4a02beb44 --- /dev/null +++ b/site/public/v1/software/geniusmatcher/index.json @@ -0,0 +1,19 @@ +{ + "id": 3720, + "slug": "geniusmatcher", + "name": "Geniusmatcher", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17156057" + ], + "created_at": "2026-07-10T10:12:41.010627", + "updated_at": "2026-07-10T10:12:41.010627", + "url": "/v1/software/geniusmatcher" +} diff --git a/site/public/v1/software/genlop/index.json b/site/public/v1/software/genlop/index.json new file mode 100644 index 000000000000..5e375fba3c3a --- /dev/null +++ b/site/public/v1/software/genlop/index.json @@ -0,0 +1,21 @@ +{ + "id": 3721, + "slug": "genlop", + "name": "genlop", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "GNU General Public License, version 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974863" + ], + "created_at": "2026-07-10T10:12:41.010627", + "updated_at": "2026-07-10T10:12:41.010627", + "url": "/v1/software/genlop" +} diff --git a/site/public/v1/software/genome-compiler/index.json b/site/public/v1/software/genome-compiler/index.json new file mode 100644 index 000000000000..66f8ae90eb6d --- /dev/null +++ b/site/public/v1/software/genome-compiler/index.json @@ -0,0 +1,19 @@ +{ + "id": 3722, + "slug": "genome-compiler", + "name": "Genome Compiler", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17127922" + ], + "created_at": "2026-07-10T10:12:41.011200", + "updated_at": "2026-07-10T10:12:41.011200", + "url": "/v1/software/genome-compiler" +} diff --git a/site/public/v1/software/genomescope/index.json b/site/public/v1/software/genomescope/index.json new file mode 100644 index 000000000000..31e02bbac00e --- /dev/null +++ b/site/public/v1/software/genomescope/index.json @@ -0,0 +1,19 @@ +{ + "id": 3723, + "slug": "genomescope", + "name": "GenomeScope", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112129601" + ], + "created_at": "2026-07-10T10:12:41.011200", + "updated_at": "2026-07-10T10:12:41.011200", + "url": "/v1/software/genomescope" +} diff --git a/site/public/v1/software/gens-emulator/index.json b/site/public/v1/software/gens-emulator/index.json new file mode 100644 index 000000000000..a0237ef61ebf --- /dev/null +++ b/site/public/v1/software/gens-emulator/index.json @@ -0,0 +1,19 @@ +{ + "id": 3724, + "slug": "gens-emulator", + "name": "Gens (emulator)", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q104822401" + ], + "created_at": "2026-07-10T10:12:41.011200", + "updated_at": "2026-07-10T10:12:41.011200", + "url": "/v1/software/gens-emulator" +} diff --git a/site/public/v1/software/genscan/index.json b/site/public/v1/software/genscan/index.json new file mode 100644 index 000000000000..f7206a6dbc76 --- /dev/null +++ b/site/public/v1/software/genscan/index.json @@ -0,0 +1,21 @@ +{ + "id": 3725, + "slug": "genscan", + "name": "GENSCAN", + "release_date": null, + "developers": [ + "Christopher Burge" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5513176" + ], + "created_at": "2026-07-10T10:12:41.012278", + "updated_at": "2026-07-10T10:12:41.012278", + "url": "/v1/software/genscan" +} diff --git a/site/public/v1/software/genstat/index.json b/site/public/v1/software/genstat/index.json new file mode 100644 index 000000000000..ce8b5b15b0a3 --- /dev/null +++ b/site/public/v1/software/genstat/index.json @@ -0,0 +1,25 @@ +{ + "id": 3726, + "slug": "genstat", + "name": "GenStat", + "release_date": null, + "developers": [ + "John Nelder" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [ + "Fortran" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5530846" + ], + "created_at": "2026-07-10T10:12:41.012278", + "updated_at": "2026-07-10T10:12:41.012278", + "url": "/v1/software/genstat" +} diff --git a/site/public/v1/software/gentoo-functions/index.json b/site/public/v1/software/gentoo-functions/index.json new file mode 100644 index 000000000000..4b0c01b7346e --- /dev/null +++ b/site/public/v1/software/gentoo-functions/index.json @@ -0,0 +1,21 @@ +{ + "id": 3727, + "slug": "gentoo-functions", + "name": "gentoo-functions", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "GNU General Public License, version 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974864" + ], + "created_at": "2026-07-10T10:12:41.012278", + "updated_at": "2026-07-10T10:12:41.012278", + "url": "/v1/software/gentoo-functions" +} diff --git a/site/public/v1/software/gentoo-syntax/index.json b/site/public/v1/software/gentoo-syntax/index.json new file mode 100644 index 000000000000..aebc1e06b2bd --- /dev/null +++ b/site/public/v1/software/gentoo-syntax/index.json @@ -0,0 +1,19 @@ +{ + "id": 3728, + "slug": "gentoo-syntax", + "name": "gentoo-syntax", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974867" + ], + "created_at": "2026-07-10T10:12:41.012278", + "updated_at": "2026-07-10T10:12:41.012278", + "url": "/v1/software/gentoo-syntax" +} diff --git a/site/public/v1/software/gentoo-systemd-integration/index.json b/site/public/v1/software/gentoo-systemd-integration/index.json new file mode 100644 index 000000000000..071b536952d2 --- /dev/null +++ b/site/public/v1/software/gentoo-systemd-integration/index.json @@ -0,0 +1,19 @@ +{ + "id": 3729, + "slug": "gentoo-systemd-integration", + "name": "gentoo-systemd-integration", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974868" + ], + "created_at": "2026-07-10T10:12:41.013260", + "updated_at": "2026-07-10T10:12:41.013260", + "url": "/v1/software/gentoo-systemd-integration" +} diff --git a/site/public/v1/software/gentoo-zsh-completions/index.json b/site/public/v1/software/gentoo-zsh-completions/index.json new file mode 100644 index 000000000000..a10dec616697 --- /dev/null +++ b/site/public/v1/software/gentoo-zsh-completions/index.json @@ -0,0 +1,19 @@ +{ + "id": 3730, + "slug": "gentoo-zsh-completions", + "name": "gentoo-zsh-completions", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974869" + ], + "created_at": "2026-07-10T10:12:41.013260", + "updated_at": "2026-07-10T10:12:41.013260", + "url": "/v1/software/gentoo-zsh-completions" +} diff --git a/site/public/v1/software/gentoolkit-dev/index.json b/site/public/v1/software/gentoolkit-dev/index.json new file mode 100644 index 000000000000..88f741beff66 --- /dev/null +++ b/site/public/v1/software/gentoolkit-dev/index.json @@ -0,0 +1,19 @@ +{ + "id": 3731, + "slug": "gentoolkit-dev", + "name": "gentoolkit-dev", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974865" + ], + "created_at": "2026-07-10T10:12:41.014317", + "updated_at": "2026-07-10T10:12:41.014317", + "url": "/v1/software/gentoolkit-dev" +} diff --git a/site/public/v1/software/genztrade/index.json b/site/public/v1/software/genztrade/index.json new file mode 100644 index 000000000000..bfa03299ef7b --- /dev/null +++ b/site/public/v1/software/genztrade/index.json @@ -0,0 +1,19 @@ +{ + "id": 3732, + "slug": "genztrade", + "name": "GenZTrade", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139937729" + ], + "created_at": "2026-07-10T10:12:41.014317", + "updated_at": "2026-07-10T10:12:41.014317", + "url": "/v1/software/genztrade" +} diff --git a/site/public/v1/software/geoapi/index.json b/site/public/v1/software/geoapi/index.json new file mode 100644 index 000000000000..691e031dfc0f --- /dev/null +++ b/site/public/v1/software/geoapi/index.json @@ -0,0 +1,25 @@ +{ + "id": 3733, + "slug": "geoapi", + "name": "GeoAPI", + "release_date": null, + "developers": [ + "Open Geospatial Consortium" + ], + "publishers": [], + "operating_systems": [ + "cross-platform" + ], + "programming_languages": [ + "Java" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5533883" + ], + "created_at": "2026-07-10T10:12:41.014317", + "updated_at": "2026-07-10T10:12:41.014317", + "url": "/v1/software/geoapi" +} diff --git a/site/public/v1/software/geoblink-by-mytraffic/index.json b/site/public/v1/software/geoblink-by-mytraffic/index.json new file mode 100644 index 000000000000..c79c32aa8b08 --- /dev/null +++ b/site/public/v1/software/geoblink-by-mytraffic/index.json @@ -0,0 +1,21 @@ +{ + "id": 3734, + "slug": "geoblink-by-mytraffic", + "name": "Geoblink by MyTraffic", + "release_date": null, + "developers": [ + "MyTraffic" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138855861" + ], + "created_at": "2026-07-10T10:12:41.014317", + "updated_at": "2026-07-10T10:12:41.014317", + "url": "/v1/software/geoblink-by-mytraffic" +} diff --git a/site/public/v1/software/geobrowser/index.json b/site/public/v1/software/geobrowser/index.json new file mode 100644 index 000000000000..24b1784a6265 --- /dev/null +++ b/site/public/v1/software/geobrowser/index.json @@ -0,0 +1,19 @@ +{ + "id": 3735, + "slug": "geobrowser", + "name": "Geobrowser", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q119361130" + ], + "created_at": "2026-07-10T10:12:41.015270", + "updated_at": "2026-07-10T10:12:41.015270", + "url": "/v1/software/geobrowser" +} diff --git a/site/public/v1/software/geoda/index.json b/site/public/v1/software/geoda/index.json new file mode 100644 index 000000000000..c57bc57bc6ab --- /dev/null +++ b/site/public/v1/software/geoda/index.json @@ -0,0 +1,26 @@ +{ + "id": 3736, + "slug": "geoda", + "name": "GeoDA", + "release_date": null, + "developers": [ + "Luc Anselin" + ], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "GNU General Public License, version 3.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5533897" + ], + "created_at": "2026-07-10T10:12:41.015270", + "updated_at": "2026-07-10T10:12:41.015270", + "url": "/v1/software/geoda" +} diff --git a/site/public/v1/software/geodin/index.json b/site/public/v1/software/geodin/index.json new file mode 100644 index 000000000000..986bbdc2c34e --- /dev/null +++ b/site/public/v1/software/geodin/index.json @@ -0,0 +1,26 @@ +{ + "id": 3737, + "slug": "geodin", + "name": "GeoDin", + "release_date": null, + "developers": [ + "GeoDin", + "Fugro Germany Land" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [ + "Delphi" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125765" + ], + "created_at": "2026-07-10T10:12:41.015270", + "updated_at": "2026-07-10T10:12:41.015270", + "url": "/v1/software/geodin" +} diff --git a/site/public/v1/software/geofeedia/index.json b/site/public/v1/software/geofeedia/index.json new file mode 100644 index 000000000000..9805558191c2 --- /dev/null +++ b/site/public/v1/software/geofeedia/index.json @@ -0,0 +1,19 @@ +{ + "id": 3738, + "slug": "geofeedia", + "name": "Geofeedia", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q27663611" + ], + "created_at": "2026-07-10T10:12:41.015270", + "updated_at": "2026-07-10T10:12:41.015270", + "url": "/v1/software/geofeedia" +} diff --git a/site/public/v1/software/geographic-information-retrieval-and-analysis-system/index.json b/site/public/v1/software/geographic-information-retrieval-and-analysis-system/index.json new file mode 100644 index 000000000000..01580e8bf842 --- /dev/null +++ b/site/public/v1/software/geographic-information-retrieval-and-analysis-system/index.json @@ -0,0 +1,19 @@ +{ + "id": 3739, + "slug": "geographic-information-retrieval-and-analysis-system", + "name": "Geographic Information Retrieval and Analysis System", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q132186452" + ], + "created_at": "2026-07-10T10:12:41.016305", + "updated_at": "2026-07-10T10:12:41.016305", + "url": "/v1/software/geographic-information-retrieval-and-analysis-system" +} diff --git a/site/public/v1/software/geom-raid5/index.json b/site/public/v1/software/geom-raid5/index.json new file mode 100644 index 000000000000..463080db51c8 --- /dev/null +++ b/site/public/v1/software/geom-raid5/index.json @@ -0,0 +1,19 @@ +{ + "id": 3740, + "slug": "geom-raid5", + "name": "geom raid5", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5535436" + ], + "created_at": "2026-07-10T10:12:41.016305", + "updated_at": "2026-07-10T10:12:41.016305", + "url": "/v1/software/geom-raid5" +} diff --git a/site/public/v1/software/geomedia/index.json b/site/public/v1/software/geomedia/index.json new file mode 100644 index 000000000000..c013e0346c1d --- /dev/null +++ b/site/public/v1/software/geomedia/index.json @@ -0,0 +1,21 @@ +{ + "id": 3741, + "slug": "geomedia", + "name": "GeoMedia", + "release_date": null, + "developers": [ + "Intergraph" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5533906" + ], + "created_at": "2026-07-10T10:12:41.016305", + "updated_at": "2026-07-10T10:12:41.016305", + "url": "/v1/software/geomedia" +} diff --git a/site/public/v1/software/geometric-modeling-kernel/index.json b/site/public/v1/software/geometric-modeling-kernel/index.json new file mode 100644 index 000000000000..3989e841f14d --- /dev/null +++ b/site/public/v1/software/geometric-modeling-kernel/index.json @@ -0,0 +1,19 @@ +{ + "id": 3742, + "slug": "geometric-modeling-kernel", + "name": "geometric modeling kernel", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1941895" + ], + "created_at": "2026-07-10T10:12:41.017276", + "updated_at": "2026-07-10T10:12:41.017276", + "url": "/v1/software/geometric-modeling-kernel" +} diff --git a/site/public/v1/software/geometricus/index.json b/site/public/v1/software/geometricus/index.json new file mode 100644 index 000000000000..6517696d8227 --- /dev/null +++ b/site/public/v1/software/geometricus/index.json @@ -0,0 +1,21 @@ +{ + "id": 3743, + "slug": "geometricus", + "name": "Geometricus", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q114840743" + ], + "created_at": "2026-07-10T10:12:41.017276", + "updated_at": "2026-07-10T10:12:41.017276", + "url": "/v1/software/geometricus" +} diff --git a/site/public/v1/software/geometry-blaster/index.json b/site/public/v1/software/geometry-blaster/index.json new file mode 100644 index 000000000000..e575d878edad --- /dev/null +++ b/site/public/v1/software/geometry-blaster/index.json @@ -0,0 +1,19 @@ +{ + "id": 3744, + "slug": "geometry-blaster", + "name": "Geometry Blaster", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121365427" + ], + "created_at": "2026-07-10T10:12:41.018268", + "updated_at": "2026-07-10T10:12:41.018268", + "url": "/v1/software/geometry-blaster" +} diff --git a/site/public/v1/software/geomodeller3d/index.json b/site/public/v1/software/geomodeller3d/index.json new file mode 100644 index 000000000000..9451b0dea816 --- /dev/null +++ b/site/public/v1/software/geomodeller3d/index.json @@ -0,0 +1,19 @@ +{ + "id": 3745, + "slug": "geomodeller3d", + "name": "Geomodeller3D", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5535536" + ], + "created_at": "2026-07-10T10:12:41.018268", + "updated_at": "2026-07-10T10:12:41.018268", + "url": "/v1/software/geomodeller3d" +} diff --git a/site/public/v1/software/geonature/index.json b/site/public/v1/software/geonature/index.json new file mode 100644 index 000000000000..f084a409b72a --- /dev/null +++ b/site/public/v1/software/geonature/index.json @@ -0,0 +1,26 @@ +{ + "id": 3746, + "slug": "geonature", + "name": "GeoNature", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Python", + "PostgreSQL", + "TypeScript", + "PostGIS" + ], + "licenses": [ + "GNU General Public License, version 3.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109038131" + ], + "created_at": "2026-07-10T10:12:41.018268", + "updated_at": "2026-07-10T10:12:41.018268", + "url": "/v1/software/geonature" +} diff --git a/site/public/v1/software/geonetwork-cartes-gouv-fr/index.json b/site/public/v1/software/geonetwork-cartes-gouv-fr/index.json new file mode 100644 index 000000000000..6d98d7179b46 --- /dev/null +++ b/site/public/v1/software/geonetwork-cartes-gouv-fr/index.json @@ -0,0 +1,21 @@ +{ + "id": 3747, + "slug": "geonetwork-cartes-gouv-fr", + "name": "GeoNetwork (cartes.gouv.fr)", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "GNU General Public License, version 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137712883" + ], + "created_at": "2026-07-10T10:12:41.018268", + "updated_at": "2026-07-10T10:12:41.018268", + "url": "/v1/software/geonetwork-cartes-gouv-fr" +} diff --git a/site/public/v1/software/geopaint/index.json b/site/public/v1/software/geopaint/index.json new file mode 100644 index 000000000000..4c168754acd4 --- /dev/null +++ b/site/public/v1/software/geopaint/index.json @@ -0,0 +1,21 @@ +{ + "id": 3748, + "slug": "geopaint", + "name": "GeoPaint", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "GEOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q9266985" + ], + "created_at": "2026-07-10T10:12:41.019299", + "updated_at": "2026-07-10T10:12:41.019299", + "url": "/v1/software/geopaint" +} diff --git a/site/public/v1/software/geopaparazzi/index.json b/site/public/v1/software/geopaparazzi/index.json new file mode 100644 index 000000000000..f68e97de7c00 --- /dev/null +++ b/site/public/v1/software/geopaparazzi/index.json @@ -0,0 +1,21 @@ +{ + "id": 3749, + "slug": "geopaparazzi", + "name": "Geopaparazzi", + "release_date": null, + "developers": [ + "Andrea Antonello" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120122287" + ], + "created_at": "2026-07-10T10:12:41.019299", + "updated_at": "2026-07-10T10:12:41.019299", + "url": "/v1/software/geopaparazzi" +} diff --git a/site/public/v1/software/geopublish/index.json b/site/public/v1/software/geopublish/index.json new file mode 100644 index 000000000000..aef05ab891fe --- /dev/null +++ b/site/public/v1/software/geopublish/index.json @@ -0,0 +1,19 @@ +{ + "id": 3750, + "slug": "geopublish", + "name": "GeoPublish", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5533912" + ], + "created_at": "2026-07-10T10:12:41.019299", + "updated_at": "2026-07-10T10:12:41.019299", + "url": "/v1/software/geopublish" +} diff --git a/site/public/v1/software/georeader/index.json b/site/public/v1/software/georeader/index.json new file mode 100644 index 000000000000..8d0b6b3b8dee --- /dev/null +++ b/site/public/v1/software/georeader/index.json @@ -0,0 +1,19 @@ +{ + "id": 3751, + "slug": "georeader", + "name": "GeoReader", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5533914" + ], + "created_at": "2026-07-10T10:12:41.020279", + "updated_at": "2026-07-10T10:12:41.020279", + "url": "/v1/software/georeader" +} diff --git a/site/public/v1/software/geos-chem/index.json b/site/public/v1/software/geos-chem/index.json new file mode 100644 index 000000000000..a0ffed373789 --- /dev/null +++ b/site/public/v1/software/geos-chem/index.json @@ -0,0 +1,19 @@ +{ + "id": 3752, + "slug": "geos-chem", + "name": "GEOS-Chem", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122831932" + ], + "created_at": "2026-07-10T10:12:41.020279", + "updated_at": "2026-07-10T10:12:41.020279", + "url": "/v1/software/geos-chem" +} diff --git a/site/public/v1/software/geos/index.json b/site/public/v1/software/geos/index.json new file mode 100644 index 000000000000..bbf4a2c1cb21 --- /dev/null +++ b/site/public/v1/software/geos/index.json @@ -0,0 +1,19 @@ +{ + "id": 3753, + "slug": "geos", + "name": "GEOS", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q973563" + ], + "created_at": "2026-07-10T10:12:41.020279", + "updated_at": "2026-07-10T10:12:41.020279", + "url": "/v1/software/geos" +} diff --git a/site/public/v1/software/geoshake/index.json b/site/public/v1/software/geoshake/index.json new file mode 100644 index 000000000000..be854d9e4ae3 --- /dev/null +++ b/site/public/v1/software/geoshake/index.json @@ -0,0 +1,23 @@ +{ + "id": 3754, + "slug": "geoshake", + "name": "GeoShake", + "release_date": null, + "developers": [ + "Appflows Technology Inc." + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138784132" + ], + "created_at": "2026-07-10T10:12:41.020279", + "updated_at": "2026-07-10T10:12:41.020279", + "url": "/v1/software/geoshake" +} diff --git a/site/public/v1/software/geosom-suite/index.json b/site/public/v1/software/geosom-suite/index.json new file mode 100644 index 000000000000..779069f4ce27 --- /dev/null +++ b/site/public/v1/software/geosom-suite/index.json @@ -0,0 +1,19 @@ +{ + "id": 3755, + "slug": "geosom-suite", + "name": "GeoSOM Suite", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137045936" + ], + "created_at": "2026-07-10T10:12:41.021306", + "updated_at": "2026-07-10T10:12:41.021306", + "url": "/v1/software/geosom-suite" +} diff --git a/site/public/v1/software/geotemco/index.json b/site/public/v1/software/geotemco/index.json new file mode 100644 index 000000000000..0f41c373462b --- /dev/null +++ b/site/public/v1/software/geotemco/index.json @@ -0,0 +1,19 @@ +{ + "id": 3756, + "slug": "geotemco", + "name": "GeoTemCo", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084987" + ], + "created_at": "2026-07-10T10:12:41.021306", + "updated_at": "2026-07-10T10:12:41.021306", + "url": "/v1/software/geotemco" +} diff --git a/site/public/v1/software/geotime/index.json b/site/public/v1/software/geotime/index.json new file mode 100644 index 000000000000..10e909ac07d6 --- /dev/null +++ b/site/public/v1/software/geotime/index.json @@ -0,0 +1,19 @@ +{ + "id": 3757, + "slug": "geotime", + "name": "Geotime", + "release_date": "2005-05-18", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5548616" + ], + "created_at": "2026-07-10T10:12:41.022305", + "updated_at": "2026-07-10T10:12:41.022305", + "url": "/v1/software/geotime" +} diff --git a/site/public/v1/software/geotrek/index.json b/site/public/v1/software/geotrek/index.json new file mode 100644 index 000000000000..6a146a6506fa --- /dev/null +++ b/site/public/v1/software/geotrek/index.json @@ -0,0 +1,26 @@ +{ + "id": 3758, + "slug": "geotrek", + "name": "Geotrek", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Python", + "TypeScript", + "PostgreSQL", + "PostGIS" + ], + "licenses": [ + "2-clause BSD License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116819111" + ], + "created_at": "2026-07-10T10:12:41.022305", + "updated_at": "2026-07-10T10:12:41.022305", + "url": "/v1/software/geotrek" +} diff --git a/site/public/v1/software/geovia/index.json b/site/public/v1/software/geovia/index.json new file mode 100644 index 000000000000..d2e985ac071f --- /dev/null +++ b/site/public/v1/software/geovia/index.json @@ -0,0 +1,21 @@ +{ + "id": 3759, + "slug": "geovia", + "name": "GEOVIA", + "release_date": null, + "developers": [ + "Dassault Systèmes" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q24893639" + ], + "created_at": "2026-07-10T10:12:41.022305", + "updated_at": "2026-07-10T10:12:41.022305", + "url": "/v1/software/geovia" +} diff --git a/site/public/v1/software/geovista-studio/index.json b/site/public/v1/software/geovista-studio/index.json new file mode 100644 index 000000000000..d43d374e8619 --- /dev/null +++ b/site/public/v1/software/geovista-studio/index.json @@ -0,0 +1,19 @@ +{ + "id": 3760, + "slug": "geovista-studio", + "name": "GeoVISTA Studio", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122311073" + ], + "created_at": "2026-07-10T10:12:41.022305", + "updated_at": "2026-07-10T10:12:41.022305", + "url": "/v1/software/geovista-studio" +} diff --git a/site/public/v1/software/geovistory/index.json b/site/public/v1/software/geovistory/index.json new file mode 100644 index 000000000000..48ab11b0ae29 --- /dev/null +++ b/site/public/v1/software/geovistory/index.json @@ -0,0 +1,19 @@ +{ + "id": 3761, + "slug": "geovistory", + "name": "Geovistory", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124394290" + ], + "created_at": "2026-07-10T10:12:41.023326", + "updated_at": "2026-07-10T10:12:41.023326", + "url": "/v1/software/geovistory" +} diff --git a/site/public/v1/software/geox-ai/index.json b/site/public/v1/software/geox-ai/index.json new file mode 100644 index 000000000000..15d854e5cbda --- /dev/null +++ b/site/public/v1/software/geox-ai/index.json @@ -0,0 +1,19 @@ +{ + "id": 3762, + "slug": "geox-ai", + "name": "GEOX AI", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139487864" + ], + "created_at": "2026-07-10T10:12:41.023326", + "updated_at": "2026-07-10T10:12:41.023326", + "url": "/v1/software/geox-ai" +} diff --git a/site/public/v1/software/geoxa/index.json b/site/public/v1/software/geoxa/index.json new file mode 100644 index 000000000000..f92610daa85b --- /dev/null +++ b/site/public/v1/software/geoxa/index.json @@ -0,0 +1,21 @@ +{ + "id": 3763, + "slug": "geoxa", + "name": "Geoxa", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q9267372" + ], + "created_at": "2026-07-10T10:12:41.023326", + "updated_at": "2026-07-10T10:12:41.023326", + "url": "/v1/software/geoxa" +} diff --git a/site/public/v1/software/gephi/index.json b/site/public/v1/software/gephi/index.json new file mode 100644 index 000000000000..09d0881007c7 --- /dev/null +++ b/site/public/v1/software/gephi/index.json @@ -0,0 +1,28 @@ +{ + "id": 3764, + "slug": "gephi", + "name": "Gephi", + "release_date": null, + "developers": [ + "Mathieu Jacomy" + ], + "publishers": [], + "operating_systems": [ + "Mac operating system", + "Microsoft Windows" + ], + "programming_languages": [ + "Java" + ], + "licenses": [ + "GNU General Public License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5548660" + ], + "created_at": "2026-07-10T10:12:41.023326", + "updated_at": "2026-07-10T10:12:41.024403", + "url": "/v1/software/gephi" +} diff --git a/site/public/v1/software/geppetto/index.json b/site/public/v1/software/geppetto/index.json new file mode 100644 index 000000000000..d28865f81f1f --- /dev/null +++ b/site/public/v1/software/geppetto/index.json @@ -0,0 +1,19 @@ +{ + "id": 3765, + "slug": "geppetto", + "name": "Geppetto", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105061636" + ], + "created_at": "2026-07-10T10:12:41.024403", + "updated_at": "2026-07-10T10:12:41.024403", + "url": "/v1/software/geppetto" +} diff --git a/site/public/v1/software/gerbera/index.json b/site/public/v1/software/gerbera/index.json new file mode 100644 index 000000000000..dc4eeb0ed7ca --- /dev/null +++ b/site/public/v1/software/gerbera/index.json @@ -0,0 +1,19 @@ +{ + "id": 3766, + "slug": "gerbera", + "name": "gerbera", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127418065" + ], + "created_at": "2026-07-10T10:12:41.024403", + "updated_at": "2026-07-10T10:12:41.024403", + "url": "/v1/software/gerbera" +} diff --git a/site/public/v1/software/gerbil/index.json b/site/public/v1/software/gerbil/index.json new file mode 100644 index 000000000000..c82c2aa6f8ff --- /dev/null +++ b/site/public/v1/software/gerbil/index.json @@ -0,0 +1,19 @@ +{ + "id": 3767, + "slug": "gerbil", + "name": "Gerbil", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084989" + ], + "created_at": "2026-07-10T10:12:41.024403", + "updated_at": "2026-07-10T10:12:41.024403", + "url": "/v1/software/gerbil" +} diff --git a/site/public/v1/software/gerby/index.json b/site/public/v1/software/gerby/index.json new file mode 100644 index 000000000000..edca1c8720c5 --- /dev/null +++ b/site/public/v1/software/gerby/index.json @@ -0,0 +1,19 @@ +{ + "id": 3768, + "slug": "gerby", + "name": "Gerby", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q99731919" + ], + "created_at": "2026-07-10T10:12:41.025427", + "updated_at": "2026-07-10T10:12:41.025427", + "url": "/v1/software/gerby" +} diff --git a/site/public/v1/software/germes/index.json b/site/public/v1/software/germes/index.json new file mode 100644 index 000000000000..b3bd9b065d70 --- /dev/null +++ b/site/public/v1/software/germes/index.json @@ -0,0 +1,19 @@ +{ + "id": 3769, + "slug": "germes", + "name": "Germes", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4039370" + ], + "created_at": "2026-07-10T10:12:41.025427", + "updated_at": "2026-07-10T10:12:41.025427", + "url": "/v1/software/germes" +} diff --git a/site/public/v1/software/gertwol/index.json b/site/public/v1/software/gertwol/index.json new file mode 100644 index 000000000000..a2c9f2e0ccef --- /dev/null +++ b/site/public/v1/software/gertwol/index.json @@ -0,0 +1,19 @@ +{ + "id": 3770, + "slug": "gertwol", + "name": "GERTWOL", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087808" + ], + "created_at": "2026-07-10T10:12:41.026404", + "updated_at": "2026-07-10T10:12:41.026404", + "url": "/v1/software/gertwol" +} diff --git a/site/public/v1/software/gess/index.json b/site/public/v1/software/gess/index.json new file mode 100644 index 000000000000..23685e6f819b --- /dev/null +++ b/site/public/v1/software/gess/index.json @@ -0,0 +1,19 @@ +{ + "id": 3771, + "slug": "gess", + "name": "GESS", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5513233" + ], + "created_at": "2026-07-10T10:12:41.026404", + "updated_at": "2026-07-10T10:12:41.026404", + "url": "/v1/software/gess" +} diff --git a/site/public/v1/software/gestassophp/index.json b/site/public/v1/software/gestassophp/index.json new file mode 100644 index 000000000000..f6d83a74d152 --- /dev/null +++ b/site/public/v1/software/gestassophp/index.json @@ -0,0 +1,23 @@ +{ + "id": 3772, + "slug": "gestassophp", + "name": "GestAssoPhp", + "release_date": "2009-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "PHP" + ], + "licenses": [ + "Creative Commons Attribution-ShareAlike 2.0 Generic" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105093907" + ], + "created_at": "2026-07-10T10:12:41.026404", + "updated_at": "2026-07-10T10:12:41.026404", + "url": "/v1/software/gestassophp" +} diff --git a/site/public/v1/software/get-help/index.json b/site/public/v1/software/get-help/index.json new file mode 100644 index 000000000000..2e7c9086f9f0 --- /dev/null +++ b/site/public/v1/software/get-help/index.json @@ -0,0 +1,19 @@ +{ + "id": 3773, + "slug": "get-help", + "name": "Get Help", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q30590743" + ], + "created_at": "2026-07-10T10:12:41.026404", + "updated_at": "2026-07-10T10:12:41.026404", + "url": "/v1/software/get-help" +} diff --git a/site/public/v1/software/get-iplayer/index.json b/site/public/v1/software/get-iplayer/index.json new file mode 100644 index 000000000000..05c6d0be3ee2 --- /dev/null +++ b/site/public/v1/software/get-iplayer/index.json @@ -0,0 +1,19 @@ +{ + "id": 3774, + "slug": "get-iplayer", + "name": "get-iplayer", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q50827940" + ], + "created_at": "2026-07-10T10:12:41.027404", + "updated_at": "2026-07-10T10:12:41.027404", + "url": "/v1/software/get-iplayer" +} diff --git a/site/public/v1/software/getaref/index.json b/site/public/v1/software/getaref/index.json new file mode 100644 index 000000000000..5e505c2813e4 --- /dev/null +++ b/site/public/v1/software/getaref/index.json @@ -0,0 +1,23 @@ +{ + "id": 3775, + "slug": "getaref", + "name": "GetARef", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105749254" + ], + "created_at": "2026-07-10T10:12:41.027404", + "updated_at": "2026-07-10T10:12:41.027404", + "url": "/v1/software/getaref" +} diff --git a/site/public/v1/software/getdata/index.json b/site/public/v1/software/getdata/index.json new file mode 100644 index 000000000000..2825b8905ece --- /dev/null +++ b/site/public/v1/software/getdata/index.json @@ -0,0 +1,19 @@ +{ + "id": 3776, + "slug": "getdata", + "name": "Getdata", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110474325" + ], + "created_at": "2026-07-10T10:12:41.027404", + "updated_at": "2026-07-10T10:12:41.027404", + "url": "/v1/software/getdata" +} diff --git a/site/public/v1/software/getdataback/index.json b/site/public/v1/software/getdataback/index.json new file mode 100644 index 000000000000..8e39b2d2ad80 --- /dev/null +++ b/site/public/v1/software/getdataback/index.json @@ -0,0 +1,19 @@ +{ + "id": 3777, + "slug": "getdataback", + "name": "GetDataBack", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3104594" + ], + "created_at": "2026-07-10T10:12:41.028405", + "updated_at": "2026-07-10T10:12:41.028405", + "url": "/v1/software/getdataback" +} diff --git a/site/public/v1/software/getresponse/index.json b/site/public/v1/software/getresponse/index.json new file mode 100644 index 000000000000..c10e03677f4b --- /dev/null +++ b/site/public/v1/software/getresponse/index.json @@ -0,0 +1,19 @@ +{ + "id": 3778, + "slug": "getresponse", + "name": "GetResponse", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105425091" + ], + "created_at": "2026-07-10T10:12:41.028405", + "updated_at": "2026-07-10T10:12:41.028405", + "url": "/v1/software/getresponse" +} diff --git a/site/public/v1/software/gett/index.json b/site/public/v1/software/gett/index.json new file mode 100644 index 000000000000..47e5c0f5afa8 --- /dev/null +++ b/site/public/v1/software/gett/index.json @@ -0,0 +1,24 @@ +{ + "id": 3779, + "slug": "gett", + "name": "Gett", + "release_date": "2010-11-01", + "developers": [], + "publishers": [], + "operating_systems": [ + "BlackBerry OS", + "iOS" + ], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5553771" + ], + "created_at": "2026-07-10T10:12:41.028405", + "updated_at": "2026-07-10T10:12:41.028405", + "url": "/v1/software/gett" +} diff --git a/site/public/v1/software/getty/index.json b/site/public/v1/software/getty/index.json new file mode 100644 index 000000000000..e13f874d519b --- /dev/null +++ b/site/public/v1/software/getty/index.json @@ -0,0 +1,19 @@ +{ + "id": 3780, + "slug": "getty", + "name": "getty", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q307180" + ], + "created_at": "2026-07-10T10:12:41.029408", + "updated_at": "2026-07-10T10:12:41.029408", + "url": "/v1/software/getty" +} diff --git a/site/public/v1/software/getyou/index.json b/site/public/v1/software/getyou/index.json new file mode 100644 index 000000000000..891e5068f6d7 --- /dev/null +++ b/site/public/v1/software/getyou/index.json @@ -0,0 +1,19 @@ +{ + "id": 3781, + "slug": "getyou", + "name": "GetYou", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18150232" + ], + "created_at": "2026-07-10T10:12:41.029408", + "updated_at": "2026-07-10T10:12:41.029408", + "url": "/v1/software/getyou" +} diff --git a/site/public/v1/software/geup/index.json b/site/public/v1/software/geup/index.json new file mode 100644 index 000000000000..2232678f677d --- /dev/null +++ b/site/public/v1/software/geup/index.json @@ -0,0 +1,24 @@ +{ + "id": 3782, + "slug": "geup", + "name": "GEUP", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Windows 8.1", + "Windows NT 4.0", + "Windows 95", + "Windows 7" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5513242" + ], + "created_at": "2026-07-10T10:12:41.029408", + "updated_at": "2026-07-10T10:12:41.029408", + "url": "/v1/software/geup" +} diff --git a/site/public/v1/software/geworkbench/index.json b/site/public/v1/software/geworkbench/index.json new file mode 100644 index 000000000000..fadf9d47f23d --- /dev/null +++ b/site/public/v1/software/geworkbench/index.json @@ -0,0 +1,27 @@ +{ + "id": 3783, + "slug": "geworkbench", + "name": "Geworkbench", + "release_date": null, + "developers": [ + "Columbia University" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [ + "Java" + ], + "licenses": [ + "open-source license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17016730" + ], + "created_at": "2026-07-10T10:12:41.030333", + "updated_at": "2026-07-10T10:12:41.030333", + "url": "/v1/software/geworkbench" +} diff --git a/site/public/v1/software/gfacet/index.json b/site/public/v1/software/gfacet/index.json new file mode 100644 index 000000000000..bbfaffff991a --- /dev/null +++ b/site/public/v1/software/gfacet/index.json @@ -0,0 +1,19 @@ +{ + "id": 3784, + "slug": "gfacet", + "name": "gFacet", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084990" + ], + "created_at": "2026-07-10T10:12:41.030333", + "updated_at": "2026-07-10T10:12:41.030333", + "url": "/v1/software/gfacet" +} diff --git a/site/public/v1/software/gfarm-file-system/index.json b/site/public/v1/software/gfarm-file-system/index.json new file mode 100644 index 000000000000..c7aa99c74c22 --- /dev/null +++ b/site/public/v1/software/gfarm-file-system/index.json @@ -0,0 +1,21 @@ +{ + "id": 3785, + "slug": "gfarm-file-system", + "name": "Gfarm file system", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5555116" + ], + "created_at": "2026-07-10T10:12:41.030333", + "updated_at": "2026-07-10T10:12:41.030333", + "url": "/v1/software/gfarm-file-system" +} diff --git a/site/public/v1/software/gflags/index.json b/site/public/v1/software/gflags/index.json new file mode 100644 index 000000000000..d769f60ab2cf --- /dev/null +++ b/site/public/v1/software/gflags/index.json @@ -0,0 +1,21 @@ +{ + "id": 3786, + "slug": "gflags", + "name": "gflags", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "3-clause BSD License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974871" + ], + "created_at": "2026-07-10T10:12:41.030333", + "updated_at": "2026-07-10T10:12:41.030333", + "url": "/v1/software/gflags" +} diff --git a/site/public/v1/software/gforge/index.json b/site/public/v1/software/gforge/index.json new file mode 100644 index 000000000000..109a1e1faecc --- /dev/null +++ b/site/public/v1/software/gforge/index.json @@ -0,0 +1,19 @@ +{ + "id": 3787, + "slug": "gforge", + "name": "GForge", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3104748" + ], + "created_at": "2026-07-10T10:12:41.031405", + "updated_at": "2026-07-10T10:12:41.031405", + "url": "/v1/software/gforge" +} diff --git a/site/public/v1/software/gg/index.json b/site/public/v1/software/gg/index.json new file mode 100644 index 000000000000..a6831f8b916f --- /dev/null +++ b/site/public/v1/software/gg/index.json @@ -0,0 +1,23 @@ +{ + "id": 3788, + "slug": "gg", + "name": "GG", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "adware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q58034" + ], + "created_at": "2026-07-10T10:12:41.031405", + "updated_at": "2026-07-10T10:12:41.031405", + "url": "/v1/software/gg" +} diff --git a/site/public/v1/software/ggalluvial/index.json b/site/public/v1/software/ggalluvial/index.json new file mode 100644 index 000000000000..66ecec0d3962 --- /dev/null +++ b/site/public/v1/software/ggalluvial/index.json @@ -0,0 +1,21 @@ +{ + "id": 3789, + "slug": "ggalluvial", + "name": "ggalluvial", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "R" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112338660" + ], + "created_at": "2026-07-10T10:12:41.032431", + "updated_at": "2026-07-10T10:12:41.032431", + "url": "/v1/software/ggalluvial" +} diff --git a/site/public/v1/software/ggtree/index.json b/site/public/v1/software/ggtree/index.json new file mode 100644 index 000000000000..65539877aae1 --- /dev/null +++ b/site/public/v1/software/ggtree/index.json @@ -0,0 +1,23 @@ +{ + "id": 3790, + "slug": "ggtree", + "name": "ggtree", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "R" + ], + "licenses": [ + "Artistic License 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112338735" + ], + "created_at": "2026-07-10T10:12:41.032431", + "updated_at": "2026-07-10T10:12:41.032431", + "url": "/v1/software/ggtree" +} diff --git a/site/public/v1/software/ggtreeextra/index.json b/site/public/v1/software/ggtreeextra/index.json new file mode 100644 index 000000000000..bae94f92074d --- /dev/null +++ b/site/public/v1/software/ggtreeextra/index.json @@ -0,0 +1,21 @@ +{ + "id": 3791, + "slug": "ggtreeextra", + "name": "ggtreeExtra", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "R" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112338760" + ], + "created_at": "2026-07-10T10:12:41.032431", + "updated_at": "2026-07-10T10:12:41.032431", + "url": "/v1/software/ggtreeextra" +} diff --git a/site/public/v1/software/gh0st-rat/index.json b/site/public/v1/software/gh0st-rat/index.json new file mode 100644 index 000000000000..a832e1d1c19c --- /dev/null +++ b/site/public/v1/software/gh0st-rat/index.json @@ -0,0 +1,21 @@ +{ + "id": 3792, + "slug": "gh0st-rat", + "name": "Gh0st RAT", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5557127" + ], + "created_at": "2026-07-10T10:12:41.032431", + "updated_at": "2026-07-10T10:12:41.032431", + "url": "/v1/software/gh0st-rat" +} diff --git a/site/public/v1/software/ghgproof/index.json b/site/public/v1/software/ghgproof/index.json new file mode 100644 index 000000000000..d17fd4456835 --- /dev/null +++ b/site/public/v1/software/ghgproof/index.json @@ -0,0 +1,19 @@ +{ + "id": 3793, + "slug": "ghgproof", + "name": "GHGProof", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5513413" + ], + "created_at": "2026-07-10T10:12:41.033400", + "updated_at": "2026-07-10T10:12:41.033400", + "url": "/v1/software/ghgproof" +} diff --git a/site/public/v1/software/ghost/index.json b/site/public/v1/software/ghost/index.json new file mode 100644 index 000000000000..7d7eaa0af5ac --- /dev/null +++ b/site/public/v1/software/ghost/index.json @@ -0,0 +1,19 @@ +{ + "id": 3794, + "slug": "ghost", + "name": "Ghost", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084991" + ], + "created_at": "2026-07-10T10:12:41.033400", + "updated_at": "2026-07-10T10:12:41.033400", + "url": "/v1/software/ghost" +} diff --git a/site/public/v1/software/gia/index.json b/site/public/v1/software/gia/index.json new file mode 100644 index 000000000000..680823d8e7d0 --- /dev/null +++ b/site/public/v1/software/gia/index.json @@ -0,0 +1,19 @@ +{ + "id": 3795, + "slug": "gia", + "name": "GIA", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138887285" + ], + "created_at": "2026-07-10T10:12:41.034421", + "updated_at": "2026-07-10T10:12:41.034421", + "url": "/v1/software/gia" +} diff --git a/site/public/v1/software/giant-antispyware/index.json b/site/public/v1/software/giant-antispyware/index.json new file mode 100644 index 000000000000..fbbfaae23a8b --- /dev/null +++ b/site/public/v1/software/giant-antispyware/index.json @@ -0,0 +1,19 @@ +{ + "id": 3796, + "slug": "giant-antispyware", + "name": "GIANT AntiSpyware", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5513434" + ], + "created_at": "2026-07-10T10:12:41.034421", + "updated_at": "2026-07-10T10:12:41.034421", + "url": "/v1/software/giant-antispyware" +} diff --git a/site/public/v1/software/giant/index.json b/site/public/v1/software/giant/index.json new file mode 100644 index 000000000000..1c16103ccfe9 --- /dev/null +++ b/site/public/v1/software/giant/index.json @@ -0,0 +1,24 @@ +{ + "id": 3797, + "slug": "giant", + "name": "GIAnT", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "GNU General Public License, version 3.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105229786" + ], + "created_at": "2026-07-10T10:12:41.034421", + "updated_at": "2026-07-10T10:12:41.034421", + "url": "/v1/software/giant" +} diff --git a/site/public/v1/software/gif2png/index.json b/site/public/v1/software/gif2png/index.json new file mode 100644 index 000000000000..c98c8e1b4cb9 --- /dev/null +++ b/site/public/v1/software/gif2png/index.json @@ -0,0 +1,19 @@ +{ + "id": 3798, + "slug": "gif2png", + "name": "gif2png", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62850681" + ], + "created_at": "2026-07-10T10:12:41.034421", + "updated_at": "2026-07-10T10:12:41.034421", + "url": "/v1/software/gif2png" +} diff --git a/site/public/v1/software/gifboom/index.json b/site/public/v1/software/gifboom/index.json new file mode 100644 index 000000000000..0fbacaafe9b7 --- /dev/null +++ b/site/public/v1/software/gifboom/index.json @@ -0,0 +1,23 @@ +{ + "id": 3799, + "slug": "gifboom", + "name": "GifBoom", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "iOS" + ], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q15007977" + ], + "created_at": "2026-07-10T10:12:41.035452", + "updated_at": "2026-07-10T10:12:41.035452", + "url": "/v1/software/gifboom" +} diff --git a/site/public/v1/software/gigantic-army/index.json b/site/public/v1/software/gigantic-army/index.json new file mode 100644 index 000000000000..58955a5f02d0 --- /dev/null +++ b/site/public/v1/software/gigantic-army/index.json @@ -0,0 +1,23 @@ +{ + "id": 3800, + "slug": "gigantic-army", + "name": "Gigantic Army", + "release_date": "2014-03-06", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [ + "action game", + "platformer", + "shooter game" + ], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q74250971" + ], + "created_at": "2026-07-10T10:12:41.035452", + "updated_at": "2026-07-10T10:12:41.035452", + "url": "/v1/software/gigantic-army" +} diff --git a/site/public/v1/software/gigatribe/index.json b/site/public/v1/software/gigatribe/index.json new file mode 100644 index 000000000000..9ccd7c641436 --- /dev/null +++ b/site/public/v1/software/gigatribe/index.json @@ -0,0 +1,19 @@ +{ + "id": 3801, + "slug": "gigatribe", + "name": "GigaTribe", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q491330" + ], + "created_at": "2026-07-10T10:12:41.035452", + "updated_at": "2026-07-10T10:12:41.035452", + "url": "/v1/software/gigatribe" +} diff --git a/site/public/v1/software/gimp-2-0-2/index.json b/site/public/v1/software/gimp-2-0-2/index.json new file mode 100644 index 000000000000..0bd706b16f43 --- /dev/null +++ b/site/public/v1/software/gimp-2-0-2/index.json @@ -0,0 +1,19 @@ +{ + "id": 3802, + "slug": "gimp-2-0-2", + "name": "GIMP 2.0.2", + "release_date": "2004-06-15", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q64739349" + ], + "created_at": "2026-07-10T10:12:41.036404", + "updated_at": "2026-07-10T10:12:41.036404", + "url": "/v1/software/gimp-2-0-2" +} diff --git a/site/public/v1/software/gimp-2-2-11/index.json b/site/public/v1/software/gimp-2-2-11/index.json new file mode 100644 index 000000000000..89be1adbef6c --- /dev/null +++ b/site/public/v1/software/gimp-2-2-11/index.json @@ -0,0 +1,19 @@ +{ + "id": 3803, + "slug": "gimp-2-2-11", + "name": "GIMP 2.2.11", + "release_date": "2006-04-13", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q64829528" + ], + "created_at": "2026-07-10T10:12:41.036404", + "updated_at": "2026-07-10T10:12:41.036404", + "url": "/v1/software/gimp-2-2-11" +} diff --git a/site/public/v1/software/gin/index.json b/site/public/v1/software/gin/index.json new file mode 100644 index 000000000000..6b0e6c24da56 --- /dev/null +++ b/site/public/v1/software/gin/index.json @@ -0,0 +1,19 @@ +{ + "id": 3804, + "slug": "gin", + "name": "GIN", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4039143" + ], + "created_at": "2026-07-10T10:12:41.036404", + "updated_at": "2026-07-10T10:12:41.036404", + "url": "/v1/software/gin" +} diff --git a/site/public/v1/software/ginga-scout/index.json b/site/public/v1/software/ginga-scout/index.json new file mode 100644 index 000000000000..81d764befce2 --- /dev/null +++ b/site/public/v1/software/ginga-scout/index.json @@ -0,0 +1,21 @@ +{ + "id": 3805, + "slug": "ginga-scout", + "name": "Ginga Scout", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "iOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q21463093" + ], + "created_at": "2026-07-10T10:12:41.037402", + "updated_at": "2026-07-10T10:12:41.037402", + "url": "/v1/software/ginga-scout" +} diff --git a/site/public/v1/software/ginger-ii/index.json b/site/public/v1/software/ginger-ii/index.json new file mode 100644 index 000000000000..aa6ed871139f --- /dev/null +++ b/site/public/v1/software/ginger-ii/index.json @@ -0,0 +1,19 @@ +{ + "id": 3806, + "slug": "ginger-ii", + "name": "GINGER II", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087809" + ], + "created_at": "2026-07-10T10:12:41.037402", + "updated_at": "2026-07-10T10:12:41.037402", + "url": "/v1/software/ginger-ii" +} diff --git a/site/public/v1/software/gini-by-mytraffic/index.json b/site/public/v1/software/gini-by-mytraffic/index.json new file mode 100644 index 000000000000..5c04f65698d1 --- /dev/null +++ b/site/public/v1/software/gini-by-mytraffic/index.json @@ -0,0 +1,21 @@ +{ + "id": 3807, + "slug": "gini-by-mytraffic", + "name": "Gini by Mytraffic", + "release_date": null, + "developers": [ + "MyTraffic" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138855808" + ], + "created_at": "2026-07-10T10:12:41.037402", + "updated_at": "2026-07-10T10:12:41.037402", + "url": "/v1/software/gini-by-mytraffic" +} diff --git a/site/public/v1/software/gio-key-board/index.json b/site/public/v1/software/gio-key-board/index.json new file mode 100644 index 000000000000..a0c41500b37d --- /dev/null +++ b/site/public/v1/software/gio-key-board/index.json @@ -0,0 +1,19 @@ +{ + "id": 3808, + "slug": "gio-key-board", + "name": "Gio-Key-Board", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q771472" + ], + "created_at": "2026-07-10T10:12:41.038414", + "updated_at": "2026-07-10T10:12:41.038414", + "url": "/v1/software/gio-key-board" +} diff --git a/site/public/v1/software/girara/index.json b/site/public/v1/software/girara/index.json new file mode 100644 index 000000000000..dd90e8340124 --- /dev/null +++ b/site/public/v1/software/girara/index.json @@ -0,0 +1,19 @@ +{ + "id": 3809, + "slug": "girara", + "name": "girara", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974872" + ], + "created_at": "2026-07-10T10:12:41.038414", + "updated_at": "2026-07-10T10:12:41.038414", + "url": "/v1/software/girara" +} diff --git a/site/public/v1/software/gis-arta/index.json b/site/public/v1/software/gis-arta/index.json new file mode 100644 index 000000000000..d3c3e125b849 --- /dev/null +++ b/site/public/v1/software/gis-arta/index.json @@ -0,0 +1,19 @@ +{ + "id": 3810, + "slug": "gis-arta", + "name": "GIS Arta", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112609566" + ], + "created_at": "2026-07-10T10:12:41.038992", + "updated_at": "2026-07-10T10:12:41.038992", + "url": "/v1/software/gis-arta" +} diff --git a/site/public/v1/software/giscus/index.json b/site/public/v1/software/giscus/index.json new file mode 100644 index 000000000000..acb81717f0c9 --- /dev/null +++ b/site/public/v1/software/giscus/index.json @@ -0,0 +1,21 @@ +{ + "id": 3811, + "slug": "giscus", + "name": "giscus", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122255776" + ], + "created_at": "2026-07-10T10:12:41.038992", + "updated_at": "2026-07-10T10:12:41.038992", + "url": "/v1/software/giscus" +} diff --git a/site/public/v1/software/gist/index.json b/site/public/v1/software/gist/index.json new file mode 100644 index 000000000000..3c33d53f8d93 --- /dev/null +++ b/site/public/v1/software/gist/index.json @@ -0,0 +1,19 @@ +{ + "id": 3812, + "slug": "gist", + "name": "Gist", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5564996" + ], + "created_at": "2026-07-10T10:12:41.039540", + "updated_at": "2026-07-10T10:12:41.039540", + "url": "/v1/software/gist" +} diff --git a/site/public/v1/software/git-bz/index.json b/site/public/v1/software/git-bz/index.json new file mode 100644 index 000000000000..7245c3320777 --- /dev/null +++ b/site/public/v1/software/git-bz/index.json @@ -0,0 +1,21 @@ +{ + "id": 3813, + "slug": "git-bz", + "name": "git-bz", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "GNU General Public License, version 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974873" + ], + "created_at": "2026-07-10T10:12:41.039540", + "updated_at": "2026-07-10T10:12:41.039540", + "url": "/v1/software/git-bz" +} diff --git a/site/public/v1/software/git-deps/index.json b/site/public/v1/software/git-deps/index.json new file mode 100644 index 000000000000..269c70c559ad --- /dev/null +++ b/site/public/v1/software/git-deps/index.json @@ -0,0 +1,21 @@ +{ + "id": 3814, + "slug": "git-deps", + "name": "git-deps", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "GNU General Public License, version 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974874" + ], + "created_at": "2026-07-10T10:12:41.040238", + "updated_at": "2026-07-10T10:12:41.040238", + "url": "/v1/software/git-deps" +} diff --git a/site/public/v1/software/gitgutter/index.json b/site/public/v1/software/gitgutter/index.json new file mode 100644 index 000000000000..8747b161fa13 --- /dev/null +++ b/site/public/v1/software/gitgutter/index.json @@ -0,0 +1,21 @@ +{ + "id": 3815, + "slug": "gitgutter", + "name": "gitgutter", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974875" + ], + "created_at": "2026-07-10T10:12:41.040857", + "updated_at": "2026-07-10T10:12:41.040857", + "url": "/v1/software/gitgutter" +} diff --git a/site/public/v1/software/github-codespaces/index.json b/site/public/v1/software/github-codespaces/index.json new file mode 100644 index 000000000000..164757633f81 --- /dev/null +++ b/site/public/v1/software/github-codespaces/index.json @@ -0,0 +1,19 @@ +{ + "id": 3816, + "slug": "github-codespaces", + "name": "GitHub Codespaces", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135672383" + ], + "created_at": "2026-07-10T10:12:41.040857", + "updated_at": "2026-07-10T10:12:41.040857", + "url": "/v1/software/github-codespaces" +} diff --git a/site/public/v1/software/github-desktop/index.json b/site/public/v1/software/github-desktop/index.json new file mode 100644 index 000000000000..57b376bc8f57 --- /dev/null +++ b/site/public/v1/software/github-desktop/index.json @@ -0,0 +1,21 @@ +{ + "id": 3817, + "slug": "github-desktop", + "name": "GitHub Desktop", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120976843" + ], + "created_at": "2026-07-10T10:12:41.041393", + "updated_at": "2026-07-10T10:12:41.041393", + "url": "/v1/software/github-desktop" +} diff --git a/site/public/v1/software/gitk/index.json b/site/public/v1/software/gitk/index.json new file mode 100644 index 000000000000..d951a1d66931 --- /dev/null +++ b/site/public/v1/software/gitk/index.json @@ -0,0 +1,19 @@ +{ + "id": 3818, + "slug": "gitk", + "name": "Gitk", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16687835" + ], + "created_at": "2026-07-10T10:12:41.041393", + "updated_at": "2026-07-10T10:12:41.041393", + "url": "/v1/software/gitk" +} diff --git a/site/public/v1/software/gitlanding/index.json b/site/public/v1/software/gitlanding/index.json new file mode 100644 index 000000000000..a257ecb99c2b --- /dev/null +++ b/site/public/v1/software/gitlanding/index.json @@ -0,0 +1,23 @@ +{ + "id": 3819, + "slug": "gitlanding", + "name": "GitLanding", + "release_date": null, + "developers": [ + "Joseph Garrone" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112595096" + ], + "created_at": "2026-07-10T10:12:41.041936", + "updated_at": "2026-07-10T10:12:41.041936", + "url": "/v1/software/gitlanding" +} diff --git a/site/public/v1/software/gitmind/index.json b/site/public/v1/software/gitmind/index.json new file mode 100644 index 000000000000..1e321beafd53 --- /dev/null +++ b/site/public/v1/software/gitmind/index.json @@ -0,0 +1,19 @@ +{ + "id": 3820, + "slug": "gitmind", + "name": "GitMind", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q97218982" + ], + "created_at": "2026-07-10T10:12:41.042475", + "updated_at": "2026-07-10T10:12:41.042475", + "url": "/v1/software/gitmind" +} diff --git a/site/public/v1/software/gitolite-gentoo/index.json b/site/public/v1/software/gitolite-gentoo/index.json new file mode 100644 index 000000000000..c92262bbb903 --- /dev/null +++ b/site/public/v1/software/gitolite-gentoo/index.json @@ -0,0 +1,19 @@ +{ + "id": 3821, + "slug": "gitolite-gentoo", + "name": "gitolite-gentoo", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974878" + ], + "created_at": "2026-07-10T10:12:41.042475", + "updated_at": "2026-07-10T10:12:41.042475", + "url": "/v1/software/gitolite-gentoo" +} diff --git a/site/public/v1/software/gitstats/index.json b/site/public/v1/software/gitstats/index.json new file mode 100644 index 000000000000..71cd02d02f79 --- /dev/null +++ b/site/public/v1/software/gitstats/index.json @@ -0,0 +1,19 @@ +{ + "id": 3822, + "slug": "gitstats", + "name": "gitstats", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974879" + ], + "created_at": "2026-07-10T10:12:41.043006", + "updated_at": "2026-07-10T10:12:41.043006", + "url": "/v1/software/gitstats" +} diff --git a/site/public/v1/software/gitter/index.json b/site/public/v1/software/gitter/index.json new file mode 100644 index 000000000000..ba58ebe742c9 --- /dev/null +++ b/site/public/v1/software/gitter/index.json @@ -0,0 +1,21 @@ +{ + "id": 3823, + "slug": "gitter", + "name": "Gitter", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28955995" + ], + "created_at": "2026-07-10T10:12:41.043006", + "updated_at": "2026-07-10T10:12:41.043006", + "url": "/v1/software/gitter" +} diff --git a/site/public/v1/software/gitv/index.json b/site/public/v1/software/gitv/index.json new file mode 100644 index 000000000000..2bf6aad84dec --- /dev/null +++ b/site/public/v1/software/gitv/index.json @@ -0,0 +1,19 @@ +{ + "id": 3824, + "slug": "gitv", + "name": "gitv", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974880" + ], + "created_at": "2026-07-10T10:12:41.043545", + "updated_at": "2026-07-10T10:12:41.043545", + "url": "/v1/software/gitv" +} diff --git a/site/public/v1/software/giveaway-of-the-day/index.json b/site/public/v1/software/giveaway-of-the-day/index.json new file mode 100644 index 000000000000..b9684dbdc57c --- /dev/null +++ b/site/public/v1/software/giveaway-of-the-day/index.json @@ -0,0 +1,19 @@ +{ + "id": 3825, + "slug": "giveaway-of-the-day", + "name": "Giveaway of the Day", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q129070" + ], + "created_at": "2026-07-10T10:12:41.043545", + "updated_at": "2026-07-10T10:12:41.043545", + "url": "/v1/software/giveaway-of-the-day" +} diff --git a/site/public/v1/software/givore/index.json b/site/public/v1/software/givore/index.json new file mode 100644 index 000000000000..0f9bac989c45 --- /dev/null +++ b/site/public/v1/software/givore/index.json @@ -0,0 +1,21 @@ +{ + "id": 3826, + "slug": "givore", + "name": "Givore", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "iOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139819307" + ], + "created_at": "2026-07-10T10:12:41.044076", + "updated_at": "2026-07-10T10:12:41.044076", + "url": "/v1/software/givore" +} diff --git a/site/public/v1/software/giws/index.json b/site/public/v1/software/giws/index.json new file mode 100644 index 000000000000..16ab1857e4c0 --- /dev/null +++ b/site/public/v1/software/giws/index.json @@ -0,0 +1,19 @@ +{ + "id": 3827, + "slug": "giws", + "name": "GIWS", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q21043317" + ], + "created_at": "2026-07-10T10:12:41.044615", + "updated_at": "2026-07-10T10:12:41.044615", + "url": "/v1/software/giws" +} diff --git a/site/public/v1/software/gizmo5/index.json b/site/public/v1/software/gizmo5/index.json new file mode 100644 index 000000000000..31b1c2e63ed0 --- /dev/null +++ b/site/public/v1/software/gizmo5/index.json @@ -0,0 +1,23 @@ +{ + "id": 3828, + "slug": "gizmo5", + "name": "Gizmo5", + "release_date": null, + "developers": [ + "Google" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1528873" + ], + "created_at": "2026-07-10T10:12:41.044615", + "updated_at": "2026-07-10T10:12:41.044615", + "url": "/v1/software/gizmo5" +} diff --git a/site/public/v1/software/gkeys-gen/index.json b/site/public/v1/software/gkeys-gen/index.json new file mode 100644 index 000000000000..d0ab7e9b49ed --- /dev/null +++ b/site/public/v1/software/gkeys-gen/index.json @@ -0,0 +1,19 @@ +{ + "id": 3829, + "slug": "gkeys-gen", + "name": "gkeys-gen", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974882" + ], + "created_at": "2026-07-10T10:12:41.045153", + "updated_at": "2026-07-10T10:12:41.045153", + "url": "/v1/software/gkeys-gen" +} diff --git a/site/public/v1/software/gkeys/index.json b/site/public/v1/software/gkeys/index.json new file mode 100644 index 000000000000..6edfe6b30ec1 --- /dev/null +++ b/site/public/v1/software/gkeys/index.json @@ -0,0 +1,19 @@ +{ + "id": 3830, + "slug": "gkeys", + "name": "gkeys", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974881" + ], + "created_at": "2026-07-10T10:12:41.045153", + "updated_at": "2026-07-10T10:12:41.045153", + "url": "/v1/software/gkeys" +} diff --git a/site/public/v1/software/gkrellaclock/index.json b/site/public/v1/software/gkrellaclock/index.json new file mode 100644 index 000000000000..dc06e45166de --- /dev/null +++ b/site/public/v1/software/gkrellaclock/index.json @@ -0,0 +1,19 @@ +{ + "id": 3831, + "slug": "gkrellaclock", + "name": "gkrellaclock", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065653" + ], + "created_at": "2026-07-10T10:12:41.045691", + "updated_at": "2026-07-10T10:12:41.045691", + "url": "/v1/software/gkrellaclock" +} diff --git a/site/public/v1/software/gkrellmwireless/index.json b/site/public/v1/software/gkrellmwireless/index.json new file mode 100644 index 000000000000..f9970c8e8480 --- /dev/null +++ b/site/public/v1/software/gkrellmwireless/index.json @@ -0,0 +1,19 @@ +{ + "id": 3832, + "slug": "gkrellmwireless", + "name": "gkrellmwireless", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106102038" + ], + "created_at": "2026-07-10T10:12:41.045691", + "updated_at": "2026-07-10T10:12:41.045691", + "url": "/v1/software/gkrellmwireless" +} diff --git a/site/public/v1/software/gladinet/index.json b/site/public/v1/software/gladinet/index.json new file mode 100644 index 000000000000..835e64c8d78e --- /dev/null +++ b/site/public/v1/software/gladinet/index.json @@ -0,0 +1,21 @@ +{ + "id": 3833, + "slug": "gladinet", + "name": "Gladinet", + "release_date": "2009-05-01", + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5566288" + ], + "created_at": "2026-07-10T10:12:41.046225", + "updated_at": "2026-07-10T10:12:41.046225", + "url": "/v1/software/gladinet" +} diff --git a/site/public/v1/software/glam-jupyter-notebooks/index.json b/site/public/v1/software/glam-jupyter-notebooks/index.json new file mode 100644 index 000000000000..6092089df671 --- /dev/null +++ b/site/public/v1/software/glam-jupyter-notebooks/index.json @@ -0,0 +1,21 @@ +{ + "id": 3834, + "slug": "glam-jupyter-notebooks", + "name": "GLAM Jupyter Notebooks", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Creative Commons Attribution 4.0 International" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111396450" + ], + "created_at": "2026-07-10T10:12:41.046762", + "updated_at": "2026-07-10T10:12:41.046762", + "url": "/v1/software/glam-jupyter-notebooks" +} diff --git a/site/public/v1/software/glam-workbench/index.json b/site/public/v1/software/glam-workbench/index.json new file mode 100644 index 000000000000..2ddb3ae83b13 --- /dev/null +++ b/site/public/v1/software/glam-workbench/index.json @@ -0,0 +1,21 @@ +{ + "id": 3835, + "slug": "glam-workbench", + "name": "GLAM Workbench", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111396660" + ], + "created_at": "2026-07-10T10:12:41.046762", + "updated_at": "2026-07-10T10:12:41.046762", + "url": "/v1/software/glam-workbench" +} diff --git a/site/public/v1/software/glance/index.json b/site/public/v1/software/glance/index.json new file mode 100644 index 000000000000..1a489d0abba7 --- /dev/null +++ b/site/public/v1/software/glance/index.json @@ -0,0 +1,21 @@ +{ + "id": 3836, + "slug": "glance", + "name": "glance", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Apache License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974883" + ], + "created_at": "2026-07-10T10:12:41.047391", + "updated_at": "2026-07-10T10:12:41.047391", + "url": "/v1/software/glance" +} diff --git a/site/public/v1/software/glary-utilities/index.json b/site/public/v1/software/glary-utilities/index.json new file mode 100644 index 000000000000..a3f087abca5d --- /dev/null +++ b/site/public/v1/software/glary-utilities/index.json @@ -0,0 +1,19 @@ +{ + "id": 3837, + "slug": "glary-utilities", + "name": "Glary Utilities", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5566691" + ], + "created_at": "2026-07-10T10:12:41.047391", + "updated_at": "2026-07-10T10:12:41.047391", + "url": "/v1/software/glary-utilities" +} diff --git a/site/public/v1/software/glasp/index.json b/site/public/v1/software/glasp/index.json new file mode 100644 index 000000000000..ebaf70b9240c --- /dev/null +++ b/site/public/v1/software/glasp/index.json @@ -0,0 +1,21 @@ +{ + "id": 3838, + "slug": "glasp", + "name": "Glasp", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "TypeScript" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122746406" + ], + "created_at": "2026-07-10T10:12:41.047928", + "updated_at": "2026-07-10T10:12:41.047928", + "url": "/v1/software/glasp" +} diff --git a/site/public/v1/software/glavior/index.json b/site/public/v1/software/glavior/index.json new file mode 100644 index 000000000000..d94332ec69c1 --- /dev/null +++ b/site/public/v1/software/glavior/index.json @@ -0,0 +1,19 @@ +{ + "id": 3839, + "slug": "glavior", + "name": "Glavior", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140068968" + ], + "created_at": "2026-07-10T10:12:41.048460", + "updated_at": "2026-07-10T10:12:41.048460", + "url": "/v1/software/glavior" +} diff --git a/site/public/v1/software/glean/index.json b/site/public/v1/software/glean/index.json new file mode 100644 index 000000000000..dcccbadd93c2 --- /dev/null +++ b/site/public/v1/software/glean/index.json @@ -0,0 +1,19 @@ +{ + "id": 3840, + "slug": "glean", + "name": "Glean", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76182778" + ], + "created_at": "2026-07-10T10:12:41.048460", + "updated_at": "2026-07-10T10:12:41.048460", + "url": "/v1/software/glean" +} diff --git a/site/public/v1/software/glftpd/index.json b/site/public/v1/software/glftpd/index.json new file mode 100644 index 000000000000..cfb47fac4316 --- /dev/null +++ b/site/public/v1/software/glftpd/index.json @@ -0,0 +1,21 @@ +{ + "id": 3841, + "slug": "glftpd", + "name": "Glftpd", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "cross-platform" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4575112" + ], + "created_at": "2026-07-10T10:12:41.048994", + "updated_at": "2026-07-10T10:12:41.048994", + "url": "/v1/software/glftpd" +} diff --git a/site/public/v1/software/glide-os/index.json b/site/public/v1/software/glide-os/index.json new file mode 100644 index 000000000000..0505d712ce06 --- /dev/null +++ b/site/public/v1/software/glide-os/index.json @@ -0,0 +1,19 @@ +{ + "id": 3842, + "slug": "glide-os", + "name": "Glide OS", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5569569" + ], + "created_at": "2026-07-10T10:12:41.048994", + "updated_at": "2026-07-10T10:12:41.048994", + "url": "/v1/software/glide-os" +} diff --git a/site/public/v1/software/glide/index.json b/site/public/v1/software/glide/index.json new file mode 100644 index 000000000000..960b9f42dc77 --- /dev/null +++ b/site/public/v1/software/glide/index.json @@ -0,0 +1,21 @@ +{ + "id": 3843, + "slug": "glide", + "name": "Glide", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "iOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16927655" + ], + "created_at": "2026-07-10T10:12:41.049531", + "updated_at": "2026-07-10T10:12:41.049531", + "url": "/v1/software/glide" +} diff --git a/site/public/v1/software/gliffy/index.json b/site/public/v1/software/gliffy/index.json new file mode 100644 index 000000000000..e07a27d7ab72 --- /dev/null +++ b/site/public/v1/software/gliffy/index.json @@ -0,0 +1,19 @@ +{ + "id": 3844, + "slug": "gliffy", + "name": "Gliffy", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18344838" + ], + "created_at": "2026-07-10T10:12:41.049531", + "updated_at": "2026-07-10T10:12:41.049531", + "url": "/v1/software/gliffy" +} diff --git a/site/public/v1/software/glimmer/index.json b/site/public/v1/software/glimmer/index.json new file mode 100644 index 000000000000..5e378a4d4e03 --- /dev/null +++ b/site/public/v1/software/glimmer/index.json @@ -0,0 +1,19 @@ +{ + "id": 3845, + "slug": "glimmer", + "name": "GLIMMER", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5513624" + ], + "created_at": "2026-07-10T10:12:41.050062", + "updated_at": "2026-07-10T10:12:41.050062", + "url": "/v1/software/glimmer" +} diff --git a/site/public/v1/software/glip/index.json b/site/public/v1/software/glip/index.json new file mode 100644 index 000000000000..3d8cdfc8a5db --- /dev/null +++ b/site/public/v1/software/glip/index.json @@ -0,0 +1,19 @@ +{ + "id": 3846, + "slug": "glip", + "name": "Glip", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q19364826" + ], + "created_at": "2026-07-10T10:12:41.050599", + "updated_at": "2026-07-10T10:12:41.050599", + "url": "/v1/software/glip" +} diff --git a/site/public/v1/software/glitch/index.json b/site/public/v1/software/glitch/index.json new file mode 100644 index 000000000000..a1394a26c2e1 --- /dev/null +++ b/site/public/v1/software/glitch/index.json @@ -0,0 +1,19 @@ +{ + "id": 3847, + "slug": "glitch", + "name": "GLITCH", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127485276" + ], + "created_at": "2026-07-10T10:12:41.051138", + "updated_at": "2026-07-10T10:12:41.051138", + "url": "/v1/software/glitch" +} diff --git a/site/public/v1/software/glite-amga/index.json b/site/public/v1/software/glite-amga/index.json new file mode 100644 index 000000000000..b46c1354135f --- /dev/null +++ b/site/public/v1/software/glite-amga/index.json @@ -0,0 +1,19 @@ +{ + "id": 3848, + "slug": "glite-amga", + "name": "GLite-AMGA", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5513681" + ], + "created_at": "2026-07-10T10:12:41.051138", + "updated_at": "2026-07-10T10:12:41.051138", + "url": "/v1/software/glite-amga" +} diff --git a/site/public/v1/software/glite/index.json b/site/public/v1/software/glite/index.json new file mode 100644 index 000000000000..f27092d53500 --- /dev/null +++ b/site/public/v1/software/glite/index.json @@ -0,0 +1,19 @@ +{ + "id": 3849, + "slug": "glite", + "name": "gLite", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5513682" + ], + "created_at": "2026-07-10T10:12:41.051138", + "updated_at": "2026-07-10T10:12:41.051138", + "url": "/v1/software/glite" +} diff --git a/site/public/v1/software/global-address-space-programming-interface/index.json b/site/public/v1/software/global-address-space-programming-interface/index.json new file mode 100644 index 000000000000..6cf2ff580c1f --- /dev/null +++ b/site/public/v1/software/global-address-space-programming-interface/index.json @@ -0,0 +1,21 @@ +{ + "id": 3850, + "slug": "global-address-space-programming-interface", + "name": "Global Address Space Programming Interface", + "release_date": null, + "developers": [ + "Fraunhofer Society" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18153273" + ], + "created_at": "2026-07-10T10:12:41.051138", + "updated_at": "2026-07-10T10:12:41.051138", + "url": "/v1/software/global-address-space-programming-interface" +} diff --git a/site/public/v1/software/global-distribution-system/index.json b/site/public/v1/software/global-distribution-system/index.json new file mode 100644 index 000000000000..12403920b6cb --- /dev/null +++ b/site/public/v1/software/global-distribution-system/index.json @@ -0,0 +1,19 @@ +{ + "id": 3851, + "slug": "global-distribution-system", + "name": "global distribution system", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q15989663" + ], + "created_at": "2026-07-10T10:12:41.052148", + "updated_at": "2026-07-10T10:12:41.052148", + "url": "/v1/software/global-distribution-system" +} diff --git a/site/public/v1/software/global-ime/index.json b/site/public/v1/software/global-ime/index.json new file mode 100644 index 000000000000..97fac8ad6eb0 --- /dev/null +++ b/site/public/v1/software/global-ime/index.json @@ -0,0 +1,19 @@ +{ + "id": 3852, + "slug": "global-ime", + "name": "Global IME", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10847325" + ], + "created_at": "2026-07-10T10:12:41.052148", + "updated_at": "2026-07-10T10:12:41.052148", + "url": "/v1/software/global-ime" +} diff --git a/site/public/v1/software/global-mapper/index.json b/site/public/v1/software/global-mapper/index.json new file mode 100644 index 000000000000..c34fe0a240d5 --- /dev/null +++ b/site/public/v1/software/global-mapper/index.json @@ -0,0 +1,21 @@ +{ + "id": 3853, + "slug": "global-mapper", + "name": "Global Mapper", + "release_date": null, + "developers": [ + "Blue Marble Geographics" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4039494" + ], + "created_at": "2026-07-10T10:12:41.052148", + "updated_at": "2026-07-10T10:12:41.052148", + "url": "/v1/software/global-mapper" +} diff --git a/site/public/v1/software/global-plant-clinic/index.json b/site/public/v1/software/global-plant-clinic/index.json new file mode 100644 index 000000000000..8fa1bb35e276 --- /dev/null +++ b/site/public/v1/software/global-plant-clinic/index.json @@ -0,0 +1,19 @@ +{ + "id": 3854, + "slug": "global-plant-clinic", + "name": "Global Plant Clinic", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5570562" + ], + "created_at": "2026-07-10T10:12:41.053148", + "updated_at": "2026-07-10T10:12:41.053148", + "url": "/v1/software/global-plant-clinic" +} diff --git a/site/public/v1/software/global-resource-leaks-codeql/index.json b/site/public/v1/software/global-resource-leaks-codeql/index.json new file mode 100644 index 000000000000..41dd74ca52c7 --- /dev/null +++ b/site/public/v1/software/global-resource-leaks-codeql/index.json @@ -0,0 +1,21 @@ +{ + "id": 3855, + "slug": "global-resource-leaks-codeql", + "name": "global-resource-leaks-codeql", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127485772" + ], + "created_at": "2026-07-10T10:12:41.053148", + "updated_at": "2026-07-10T10:12:41.053148", + "url": "/v1/software/global-resource-leaks-codeql" +} diff --git a/site/public/v1/software/global-translator/index.json b/site/public/v1/software/global-translator/index.json new file mode 100644 index 000000000000..6132a107340c --- /dev/null +++ b/site/public/v1/software/global-translator/index.json @@ -0,0 +1,19 @@ +{ + "id": 3856, + "slug": "global-translator", + "name": "Global Translator", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084992" + ], + "created_at": "2026-07-10T10:12:41.053148", + "updated_at": "2026-07-10T10:12:41.053148", + "url": "/v1/software/global-translator" +} diff --git a/site/public/v1/software/globetrooper/index.json b/site/public/v1/software/globetrooper/index.json new file mode 100644 index 000000000000..0f5404bdf40c --- /dev/null +++ b/site/public/v1/software/globetrooper/index.json @@ -0,0 +1,19 @@ +{ + "id": 3857, + "slug": "globetrooper", + "name": "Globetrooper", + "release_date": "2010-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25327095" + ], + "created_at": "2026-07-10T10:12:41.054148", + "updated_at": "2026-07-10T10:12:41.054148", + "url": "/v1/software/globetrooper" +} diff --git a/site/public/v1/software/globus-toolkit/index.json b/site/public/v1/software/globus-toolkit/index.json new file mode 100644 index 000000000000..5b452c2a24fd --- /dev/null +++ b/site/public/v1/software/globus-toolkit/index.json @@ -0,0 +1,21 @@ +{ + "id": 3858, + "slug": "globus-toolkit", + "name": "Globus Toolkit", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Apache Software License 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2601990" + ], + "created_at": "2026-07-10T10:12:41.054148", + "updated_at": "2026-07-10T10:12:41.054148", + "url": "/v1/software/globus-toolkit" +} diff --git a/site/public/v1/software/glogg/index.json b/site/public/v1/software/glogg/index.json new file mode 100644 index 000000000000..044df5594164 --- /dev/null +++ b/site/public/v1/software/glogg/index.json @@ -0,0 +1,24 @@ +{ + "id": 3859, + "slug": "glogg", + "name": "glogg", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "GNU General Public License, version 3.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107559893" + ], + "created_at": "2026-07-10T10:12:41.054148", + "updated_at": "2026-07-10T10:12:41.054148", + "url": "/v1/software/glogg" +} diff --git a/site/public/v1/software/glow-app/index.json b/site/public/v1/software/glow-app/index.json new file mode 100644 index 000000000000..f636ea510212 --- /dev/null +++ b/site/public/v1/software/glow-app/index.json @@ -0,0 +1,21 @@ +{ + "id": 3860, + "slug": "glow-app", + "name": "Glow (app)", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "iOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136419177" + ], + "created_at": "2026-07-10T10:12:41.055213", + "updated_at": "2026-07-10T10:12:41.055213", + "url": "/v1/software/glow-app" +} diff --git a/site/public/v1/software/glowcode/index.json b/site/public/v1/software/glowcode/index.json new file mode 100644 index 000000000000..e4dcb02e17f4 --- /dev/null +++ b/site/public/v1/software/glowcode/index.json @@ -0,0 +1,19 @@ +{ + "id": 3861, + "slug": "glowcode", + "name": "GlowCode", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5572206" + ], + "created_at": "2026-07-10T10:12:41.055213", + "updated_at": "2026-07-10T10:12:41.055213", + "url": "/v1/software/glowcode" +} diff --git a/site/public/v1/software/glu/index.json b/site/public/v1/software/glu/index.json new file mode 100644 index 000000000000..b17f08a96960 --- /dev/null +++ b/site/public/v1/software/glu/index.json @@ -0,0 +1,19 @@ +{ + "id": 3862, + "slug": "glu", + "name": "glu", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1532294" + ], + "created_at": "2026-07-10T10:12:41.055213", + "updated_at": "2026-07-10T10:12:41.055213", + "url": "/v1/software/glu" +} diff --git a/site/public/v1/software/glue/index.json b/site/public/v1/software/glue/index.json new file mode 100644 index 000000000000..c0fecaa3bb4b --- /dev/null +++ b/site/public/v1/software/glue/index.json @@ -0,0 +1,19 @@ +{ + "id": 3863, + "slug": "glue", + "name": "Glue", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60745634" + ], + "created_at": "2026-07-10T10:12:41.055213", + "updated_at": "2026-07-10T10:12:41.055213", + "url": "/v1/software/glue" +} diff --git a/site/public/v1/software/glx/index.json b/site/public/v1/software/glx/index.json new file mode 100644 index 000000000000..fc666098bbf7 --- /dev/null +++ b/site/public/v1/software/glx/index.json @@ -0,0 +1,21 @@ +{ + "id": 3864, + "slug": "glx", + "name": "GLX", + "release_date": "1992-01-01", + "developers": [ + "Silicon Graphics" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q604536" + ], + "created_at": "2026-07-10T10:12:41.056211", + "updated_at": "2026-07-10T10:12:41.056211", + "url": "/v1/software/glx" +} diff --git a/site/public/v1/software/glyphs/index.json b/site/public/v1/software/glyphs/index.json new file mode 100644 index 000000000000..7f04039413cf --- /dev/null +++ b/site/public/v1/software/glyphs/index.json @@ -0,0 +1,19 @@ +{ + "id": 3865, + "slug": "glyphs", + "name": "Glyphs", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138535578" + ], + "created_at": "2026-07-10T10:12:41.056211", + "updated_at": "2026-07-10T10:12:41.056211", + "url": "/v1/software/glyphs" +} diff --git a/site/public/v1/software/gmap/index.json b/site/public/v1/software/gmap/index.json new file mode 100644 index 000000000000..814ebb4c4e5a --- /dev/null +++ b/site/public/v1/software/gmap/index.json @@ -0,0 +1,19 @@ +{ + "id": 3866, + "slug": "gmap", + "name": "gmap", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60915930" + ], + "created_at": "2026-07-10T10:12:41.057204", + "updated_at": "2026-07-10T10:12:41.057204", + "url": "/v1/software/gmap" +} diff --git a/site/public/v1/software/gmass/index.json b/site/public/v1/software/gmass/index.json new file mode 100644 index 000000000000..022d6a1e9d3d --- /dev/null +++ b/site/public/v1/software/gmass/index.json @@ -0,0 +1,19 @@ +{ + "id": 3867, + "slug": "gmass", + "name": "GMass", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140430480" + ], + "created_at": "2026-07-10T10:12:41.057204", + "updated_at": "2026-07-10T10:12:41.057204", + "url": "/v1/software/gmass" +} diff --git a/site/public/v1/software/gmdb2/index.json b/site/public/v1/software/gmdb2/index.json new file mode 100644 index 000000000000..4ef49329ef26 --- /dev/null +++ b/site/public/v1/software/gmdb2/index.json @@ -0,0 +1,19 @@ +{ + "id": 3868, + "slug": "gmdb2", + "name": "GMDB2", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135936988" + ], + "created_at": "2026-07-10T10:12:41.057204", + "updated_at": "2026-07-10T10:12:41.057204", + "url": "/v1/software/gmdb2" +} diff --git a/site/public/v1/software/gmer/index.json b/site/public/v1/software/gmer/index.json new file mode 100644 index 000000000000..04b669124e27 --- /dev/null +++ b/site/public/v1/software/gmer/index.json @@ -0,0 +1,23 @@ +{ + "id": 3869, + "slug": "gmer", + "name": "GMER", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5513761" + ], + "created_at": "2026-07-10T10:12:41.057204", + "updated_at": "2026-07-10T10:12:41.058244", + "url": "/v1/software/gmer" +} diff --git a/site/public/v1/software/gms/index.json b/site/public/v1/software/gms/index.json new file mode 100644 index 000000000000..731e7950bd06 --- /dev/null +++ b/site/public/v1/software/gms/index.json @@ -0,0 +1,21 @@ +{ + "id": 3870, + "slug": "gms", + "name": "GMS", + "release_date": null, + "developers": [ + "Aquaveo" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5513795" + ], + "created_at": "2026-07-10T10:12:41.058244", + "updated_at": "2026-07-10T10:12:41.058244", + "url": "/v1/software/gms" +} diff --git a/site/public/v1/software/gmtp/index.json b/site/public/v1/software/gmtp/index.json new file mode 100644 index 000000000000..299ce4a673c4 --- /dev/null +++ b/site/public/v1/software/gmtp/index.json @@ -0,0 +1,19 @@ +{ + "id": 3871, + "slug": "gmtp", + "name": "gMTP", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62850725" + ], + "created_at": "2026-07-10T10:12:41.058244", + "updated_at": "2026-07-10T10:12:41.058244", + "url": "/v1/software/gmtp" +} diff --git a/site/public/v1/software/gmw/index.json b/site/public/v1/software/gmw/index.json new file mode 100644 index 000000000000..ac14ceda29c3 --- /dev/null +++ b/site/public/v1/software/gmw/index.json @@ -0,0 +1,21 @@ +{ + "id": 3872, + "slug": "gmw", + "name": "GMW", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Unix-like operating system" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11201257" + ], + "created_at": "2026-07-10T10:12:41.059218", + "updated_at": "2026-07-10T10:12:41.059218", + "url": "/v1/software/gmw" +} diff --git a/site/public/v1/software/gmx-multi-messenger/index.json b/site/public/v1/software/gmx-multi-messenger/index.json new file mode 100644 index 000000000000..f0604dfc1e09 --- /dev/null +++ b/site/public/v1/software/gmx-multi-messenger/index.json @@ -0,0 +1,21 @@ +{ + "id": 3873, + "slug": "gmx-multi-messenger", + "name": "GMX Multi Messenger", + "release_date": "2006-11-01", + "developers": [ + "United Internet" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1486058" + ], + "created_at": "2026-07-10T10:12:41.059218", + "updated_at": "2026-07-10T10:12:41.059218", + "url": "/v1/software/gmx-multi-messenger" +} diff --git a/site/public/v1/software/gnm/index.json b/site/public/v1/software/gnm/index.json new file mode 100644 index 000000000000..b534255a65f7 --- /dev/null +++ b/site/public/v1/software/gnm/index.json @@ -0,0 +1,22 @@ +{ + "id": 3874, + "slug": "gnm", + "name": "GNM", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "PlayStation 5 system software", + "PlayStation 4 system software" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111367521" + ], + "created_at": "2026-07-10T10:12:41.059218", + "updated_at": "2026-07-10T10:12:41.059218", + "url": "/v1/software/gnm" +} diff --git a/site/public/v1/software/gnome-desktop/index.json b/site/public/v1/software/gnome-desktop/index.json new file mode 100644 index 000000000000..0c5264258874 --- /dev/null +++ b/site/public/v1/software/gnome-desktop/index.json @@ -0,0 +1,19 @@ +{ + "id": 3875, + "slug": "gnome-desktop", + "name": "gnome-desktop", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065095" + ], + "created_at": "2026-07-10T10:12:41.059218", + "updated_at": "2026-07-10T10:12:41.059218", + "url": "/v1/software/gnome-desktop" +} diff --git a/site/public/v1/software/gnome-devel-docs/index.json b/site/public/v1/software/gnome-devel-docs/index.json new file mode 100644 index 000000000000..43d4fbca7cdb --- /dev/null +++ b/site/public/v1/software/gnome-devel-docs/index.json @@ -0,0 +1,19 @@ +{ + "id": 3876, + "slug": "gnome-devel-docs", + "name": "gnome-devel-docs", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065487" + ], + "created_at": "2026-07-10T10:12:41.060253", + "updated_at": "2026-07-10T10:12:41.060253", + "url": "/v1/software/gnome-devel-docs" +} diff --git a/site/public/v1/software/gnome-education-projects/index.json b/site/public/v1/software/gnome-education-projects/index.json new file mode 100644 index 000000000000..6da680137639 --- /dev/null +++ b/site/public/v1/software/gnome-education-projects/index.json @@ -0,0 +1,19 @@ +{ + "id": 3877, + "slug": "gnome-education-projects", + "name": "GNOME Education projects", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q50827629" + ], + "created_at": "2026-07-10T10:12:41.060253", + "updated_at": "2026-07-10T10:12:41.060253", + "url": "/v1/software/gnome-education-projects" +} diff --git a/site/public/v1/software/gnome-hearts/index.json b/site/public/v1/software/gnome-hearts/index.json new file mode 100644 index 000000000000..304a52826ce9 --- /dev/null +++ b/site/public/v1/software/gnome-hearts/index.json @@ -0,0 +1,19 @@ +{ + "id": 3878, + "slug": "gnome-hearts", + "name": "gnome-hearts", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065409" + ], + "created_at": "2026-07-10T10:12:41.061232", + "updated_at": "2026-07-10T10:12:41.061232", + "url": "/v1/software/gnome-hearts" +} diff --git a/site/public/v1/software/gnome-jabber/index.json b/site/public/v1/software/gnome-jabber/index.json new file mode 100644 index 000000000000..0314783232c3 --- /dev/null +++ b/site/public/v1/software/gnome-jabber/index.json @@ -0,0 +1,19 @@ +{ + "id": 3879, + "slug": "gnome-jabber", + "name": "Gnome Jabber", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2025712" + ], + "created_at": "2026-07-10T10:12:41.061232", + "updated_at": "2026-07-10T10:12:41.061232", + "url": "/v1/software/gnome-jabber" +} diff --git a/site/public/v1/software/gnome-pie/index.json b/site/public/v1/software/gnome-pie/index.json new file mode 100644 index 000000000000..42e81017f25d --- /dev/null +++ b/site/public/v1/software/gnome-pie/index.json @@ -0,0 +1,19 @@ +{ + "id": 3880, + "slug": "gnome-pie", + "name": "Gnome-Pie", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60751666" + ], + "created_at": "2026-07-10T10:12:41.061232", + "updated_at": "2026-07-10T10:12:41.061232", + "url": "/v1/software/gnome-pie" +} diff --git a/site/public/v1/software/gnome-sessionmanagement/index.json b/site/public/v1/software/gnome-sessionmanagement/index.json new file mode 100644 index 000000000000..60743db45fa4 --- /dev/null +++ b/site/public/v1/software/gnome-sessionmanagement/index.json @@ -0,0 +1,21 @@ +{ + "id": 3881, + "slug": "gnome-sessionmanagement", + "name": "Gnome SessionManagement", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "GNU General Public License, version 2.0 or later" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q50827642" + ], + "created_at": "2026-07-10T10:12:41.061232", + "updated_at": "2026-07-10T10:12:41.061232", + "url": "/v1/software/gnome-sessionmanagement" +} diff --git a/site/public/v1/software/gnome-shell/index.json b/site/public/v1/software/gnome-shell/index.json new file mode 100644 index 000000000000..719f681d79c5 --- /dev/null +++ b/site/public/v1/software/gnome-shell/index.json @@ -0,0 +1,26 @@ +{ + "id": 3882, + "slug": "gnome-shell", + "name": "GNOME Shell", + "release_date": null, + "developers": [ + "GNOME Foundation", + "The GNOME Project" + ], + "publishers": [], + "operating_systems": [ + "BSD" + ], + "programming_languages": [], + "licenses": [ + "GNU General Public License, version 2.0 or later" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1343860" + ], + "created_at": "2026-07-10T10:12:41.062226", + "updated_at": "2026-07-10T10:12:41.062226", + "url": "/v1/software/gnome-shell" +} diff --git a/site/public/v1/software/gnomedirectorythumbnailer/index.json b/site/public/v1/software/gnomedirectorythumbnailer/index.json new file mode 100644 index 000000000000..592e36130104 --- /dev/null +++ b/site/public/v1/software/gnomedirectorythumbnailer/index.json @@ -0,0 +1,19 @@ +{ + "id": 3883, + "slug": "gnomedirectorythumbnailer", + "name": "GnomeDirectoryThumbnailer", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q68089940" + ], + "created_at": "2026-07-10T10:12:41.062226", + "updated_at": "2026-07-10T10:12:41.062226", + "url": "/v1/software/gnomedirectorythumbnailer" +} diff --git a/site/public/v1/software/gnomeshellintegrationforchrome/index.json b/site/public/v1/software/gnomeshellintegrationforchrome/index.json new file mode 100644 index 000000000000..b125c2473b19 --- /dev/null +++ b/site/public/v1/software/gnomeshellintegrationforchrome/index.json @@ -0,0 +1,19 @@ +{ + "id": 3884, + "slug": "gnomeshellintegrationforchrome", + "name": "GnomeShellIntegrationForChrome", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76181294" + ], + "created_at": "2026-07-10T10:12:41.063147", + "updated_at": "2026-07-10T10:12:41.063147", + "url": "/v1/software/gnomeshellintegrationforchrome" +} diff --git a/site/public/v1/software/gnomevfs/index.json b/site/public/v1/software/gnomevfs/index.json new file mode 100644 index 000000000000..778b92e1f266 --- /dev/null +++ b/site/public/v1/software/gnomevfs/index.json @@ -0,0 +1,19 @@ +{ + "id": 3885, + "slug": "gnomevfs", + "name": "GnomeVFS", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2629361" + ], + "created_at": "2026-07-10T10:12:41.063147", + "updated_at": "2026-07-10T10:12:41.063147", + "url": "/v1/software/gnomevfs" +} diff --git a/site/public/v1/software/gnowit/index.json b/site/public/v1/software/gnowit/index.json new file mode 100644 index 000000000000..e9225c610415 --- /dev/null +++ b/site/public/v1/software/gnowit/index.json @@ -0,0 +1,19 @@ +{ + "id": 3886, + "slug": "gnowit", + "name": "Gnowit", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17126195" + ], + "created_at": "2026-07-10T10:12:41.063147", + "updated_at": "2026-07-10T10:12:41.063147", + "url": "/v1/software/gnowit" +} diff --git a/site/public/v1/software/gnss-ir-analysis-software/index.json b/site/public/v1/software/gnss-ir-analysis-software/index.json new file mode 100644 index 000000000000..fd685f5b1a61 --- /dev/null +++ b/site/public/v1/software/gnss-ir-analysis-software/index.json @@ -0,0 +1,19 @@ +{ + "id": 3887, + "slug": "gnss-ir-analysis-software", + "name": "GNSS-IR Analysis Software", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q132186429" + ], + "created_at": "2026-07-10T10:12:41.064145", + "updated_at": "2026-07-10T10:12:41.064145", + "url": "/v1/software/gnss-ir-analysis-software" +} diff --git a/site/public/v1/software/gnu-interactive-tools/index.json b/site/public/v1/software/gnu-interactive-tools/index.json new file mode 100644 index 000000000000..f7fc69799252 --- /dev/null +++ b/site/public/v1/software/gnu-interactive-tools/index.json @@ -0,0 +1,19 @@ +{ + "id": 3888, + "slug": "gnu-interactive-tools", + "name": "GNU Interactive Tools", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76182594" + ], + "created_at": "2026-07-10T10:12:41.064145", + "updated_at": "2026-07-10T10:12:41.064145", + "url": "/v1/software/gnu-interactive-tools" +} diff --git a/site/public/v1/software/gnu-pdf/index.json b/site/public/v1/software/gnu-pdf/index.json new file mode 100644 index 000000000000..4dc56d328517 --- /dev/null +++ b/site/public/v1/software/gnu-pdf/index.json @@ -0,0 +1,19 @@ +{ + "id": 3889, + "slug": "gnu-pdf", + "name": "GNU PDF", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3756205" + ], + "created_at": "2026-07-10T10:12:41.064145", + "updated_at": "2026-07-10T10:12:41.064145", + "url": "/v1/software/gnu-pdf" +} diff --git a/site/public/v1/software/gnu-slip/index.json b/site/public/v1/software/gnu-slip/index.json new file mode 100644 index 000000000000..294361ca73cf --- /dev/null +++ b/site/public/v1/software/gnu-slip/index.json @@ -0,0 +1,19 @@ +{ + "id": 3890, + "slug": "gnu-slip", + "name": "GNU Slip", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76182398" + ], + "created_at": "2026-07-10T10:12:41.065149", + "updated_at": "2026-07-10T10:12:41.065149", + "url": "/v1/software/gnu-slip" +} diff --git a/site/public/v1/software/gnu-web-translation-coordination/index.json b/site/public/v1/software/gnu-web-translation-coordination/index.json new file mode 100644 index 000000000000..9d1da7183c88 --- /dev/null +++ b/site/public/v1/software/gnu-web-translation-coordination/index.json @@ -0,0 +1,19 @@ +{ + "id": 3891, + "slug": "gnu-web-translation-coordination", + "name": "GNU Web Translation Coordination", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76184718" + ], + "created_at": "2026-07-10T10:12:41.065149", + "updated_at": "2026-07-10T10:12:41.065149", + "url": "/v1/software/gnu-web-translation-coordination" +} diff --git a/site/public/v1/software/gnucad/index.json b/site/public/v1/software/gnucad/index.json new file mode 100644 index 000000000000..373e2b313750 --- /dev/null +++ b/site/public/v1/software/gnucad/index.json @@ -0,0 +1,19 @@ +{ + "id": 3892, + "slug": "gnucad", + "name": "GnuCAD", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q50378418" + ], + "created_at": "2026-07-10T10:12:41.065149", + "updated_at": "2026-07-10T10:12:41.065149", + "url": "/v1/software/gnucad" +} diff --git a/site/public/v1/software/gnuschool/index.json b/site/public/v1/software/gnuschool/index.json new file mode 100644 index 000000000000..601b20806546 --- /dev/null +++ b/site/public/v1/software/gnuschool/index.json @@ -0,0 +1,19 @@ +{ + "id": 3893, + "slug": "gnuschool", + "name": "GNUschool", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q45115714" + ], + "created_at": "2026-07-10T10:12:41.066148", + "updated_at": "2026-07-10T10:12:41.066148", + "url": "/v1/software/gnuschool" +} diff --git a/site/public/v1/software/gnushogi/index.json b/site/public/v1/software/gnushogi/index.json new file mode 100644 index 000000000000..e4fe6a478ae0 --- /dev/null +++ b/site/public/v1/software/gnushogi/index.json @@ -0,0 +1,19 @@ +{ + "id": 3894, + "slug": "gnushogi", + "name": "gnushogi", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065088" + ], + "created_at": "2026-07-10T10:12:41.066148", + "updated_at": "2026-07-10T10:12:41.066148", + "url": "/v1/software/gnushogi" +} diff --git a/site/public/v1/software/gnutella2/index.json b/site/public/v1/software/gnutella2/index.json new file mode 100644 index 000000000000..dbd83e1eef9e --- /dev/null +++ b/site/public/v1/software/gnutella2/index.json @@ -0,0 +1,19 @@ +{ + "id": 3895, + "slug": "gnutella2", + "name": "Gnutella2", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1206697" + ], + "created_at": "2026-07-10T10:12:41.066148", + "updated_at": "2026-07-10T10:12:41.066148", + "url": "/v1/software/gnutella2" +} diff --git a/site/public/v1/software/go-continuous-delivery/index.json b/site/public/v1/software/go-continuous-delivery/index.json new file mode 100644 index 000000000000..4f63130ea61f --- /dev/null +++ b/site/public/v1/software/go-continuous-delivery/index.json @@ -0,0 +1,23 @@ +{ + "id": 3896, + "slug": "go-continuous-delivery", + "name": "Go continuous delivery", + "release_date": "2007-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Java" + ], + "licenses": [ + "Apache License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22252153" + ], + "created_at": "2026-07-10T10:12:41.067148", + "updated_at": "2026-07-10T10:12:41.067148", + "url": "/v1/software/go-continuous-delivery" +} diff --git a/site/public/v1/software/go-fuse/index.json b/site/public/v1/software/go-fuse/index.json new file mode 100644 index 000000000000..56c000abd350 --- /dev/null +++ b/site/public/v1/software/go-fuse/index.json @@ -0,0 +1,19 @@ +{ + "id": 3897, + "slug": "go-fuse", + "name": "go-fuse", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974886" + ], + "created_at": "2026-07-10T10:12:41.067148", + "updated_at": "2026-07-10T10:12:41.067148", + "url": "/v1/software/go-fuse" +} diff --git a/site/public/v1/software/go-messenger/index.json b/site/public/v1/software/go-messenger/index.json new file mode 100644 index 000000000000..9490a3607860 --- /dev/null +++ b/site/public/v1/software/go-messenger/index.json @@ -0,0 +1,19 @@ +{ + "id": 3898, + "slug": "go-messenger", + "name": "Go!Messenger", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3109510" + ], + "created_at": "2026-07-10T10:12:41.067148", + "updated_at": "2026-07-10T10:12:41.067148", + "url": "/v1/software/go-messenger" +} diff --git a/site/public/v1/software/go-usb/index.json b/site/public/v1/software/go-usb/index.json new file mode 100644 index 000000000000..23805eacdd43 --- /dev/null +++ b/site/public/v1/software/go-usb/index.json @@ -0,0 +1,19 @@ +{ + "id": 3899, + "slug": "go-usb", + "name": "go-usb", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974888" + ], + "created_at": "2026-07-10T10:12:41.068148", + "updated_at": "2026-07-10T10:12:41.068148", + "url": "/v1/software/go-usb" +} diff --git a/site/public/v1/software/go1984/index.json b/site/public/v1/software/go1984/index.json new file mode 100644 index 000000000000..b248c1501c48 --- /dev/null +++ b/site/public/v1/software/go1984/index.json @@ -0,0 +1,23 @@ +{ + "id": 3900, + "slug": "go1984", + "name": "go1984", + "release_date": null, + "developers": [ + "logiware GmbH" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140136608" + ], + "created_at": "2026-07-10T10:12:41.068148", + "updated_at": "2026-07-10T10:12:41.068148", + "url": "/v1/software/go1984" +} diff --git a/site/public/v1/software/goback/index.json b/site/public/v1/software/goback/index.json new file mode 100644 index 000000000000..05e12b2daf6c --- /dev/null +++ b/site/public/v1/software/goback/index.json @@ -0,0 +1,23 @@ +{ + "id": 3901, + "slug": "goback", + "name": "GoBack", + "release_date": null, + "developers": [ + "Gen Digital" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2890639" + ], + "created_at": "2026-07-10T10:12:41.068148", + "updated_at": "2026-07-10T10:12:41.068148", + "url": "/v1/software/goback" +} diff --git a/site/public/v1/software/gobohide/index.json b/site/public/v1/software/gobohide/index.json new file mode 100644 index 000000000000..745b4a787c82 --- /dev/null +++ b/site/public/v1/software/gobohide/index.json @@ -0,0 +1,19 @@ +{ + "id": 3902, + "slug": "gobohide", + "name": "GoboHide", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1011281" + ], + "created_at": "2026-07-10T10:12:41.068148", + "updated_at": "2026-07-10T10:12:41.068148", + "url": "/v1/software/gobohide" +} diff --git a/site/public/v1/software/gobra/index.json b/site/public/v1/software/gobra/index.json new file mode 100644 index 000000000000..97e225bd2506 --- /dev/null +++ b/site/public/v1/software/gobra/index.json @@ -0,0 +1,21 @@ +{ + "id": 3903, + "slug": "gobra", + "name": "Gobra", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Mozilla Public License, version 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116619880" + ], + "created_at": "2026-07-10T10:12:41.069190", + "updated_at": "2026-07-10T10:12:41.069190", + "url": "/v1/software/gobra" +} diff --git a/site/public/v1/software/gobstones/index.json b/site/public/v1/software/gobstones/index.json new file mode 100644 index 000000000000..07d43bd724fe --- /dev/null +++ b/site/public/v1/software/gobstones/index.json @@ -0,0 +1,19 @@ +{ + "id": 3904, + "slug": "gobstones", + "name": "Gobstones", + "release_date": "2009-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5882078" + ], + "created_at": "2026-07-10T10:12:41.069190", + "updated_at": "2026-07-10T10:12:41.069190", + "url": "/v1/software/gobstones" +} diff --git a/site/public/v1/software/gobuster/index.json b/site/public/v1/software/gobuster/index.json new file mode 100644 index 000000000000..c87414156547 --- /dev/null +++ b/site/public/v1/software/gobuster/index.json @@ -0,0 +1,21 @@ +{ + "id": 3905, + "slug": "gobuster", + "name": "Gobuster", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Apache Software License 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116776695" + ], + "created_at": "2026-07-10T10:12:41.069190", + "updated_at": "2026-07-10T10:12:41.069190", + "url": "/v1/software/gobuster" +} diff --git a/site/public/v1/software/goby/index.json b/site/public/v1/software/goby/index.json new file mode 100644 index 000000000000..8d81d6a2b138 --- /dev/null +++ b/site/public/v1/software/goby/index.json @@ -0,0 +1,21 @@ +{ + "id": 3906, + "slug": "goby", + "name": "Goby", + "release_date": null, + "developers": [ + "Telenav" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5575608" + ], + "created_at": "2026-07-10T10:12:41.070216", + "updated_at": "2026-07-10T10:12:41.070216", + "url": "/v1/software/goby" +} diff --git a/site/public/v1/software/gocatch/index.json b/site/public/v1/software/gocatch/index.json new file mode 100644 index 000000000000..4c905a6d6851 --- /dev/null +++ b/site/public/v1/software/gocatch/index.json @@ -0,0 +1,19 @@ +{ + "id": 3907, + "slug": "gocatch", + "name": "GoCatch", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16927656" + ], + "created_at": "2026-07-10T10:12:41.070216", + "updated_at": "2026-07-10T10:12:41.070216", + "url": "/v1/software/gocatch" +} diff --git a/site/public/v1/software/gogglesmm/index.json b/site/public/v1/software/gogglesmm/index.json new file mode 100644 index 000000000000..aefe965cab6e --- /dev/null +++ b/site/public/v1/software/gogglesmm/index.json @@ -0,0 +1,19 @@ +{ + "id": 3908, + "slug": "gogglesmm", + "name": "gogglesmm", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065152" + ], + "created_at": "2026-07-10T10:12:41.070216", + "updated_at": "2026-07-10T10:12:41.070216", + "url": "/v1/software/gogglesmm" +} diff --git a/site/public/v1/software/gogrid/index.json b/site/public/v1/software/gogrid/index.json new file mode 100644 index 000000000000..fe8047a9fd45 --- /dev/null +++ b/site/public/v1/software/gogrid/index.json @@ -0,0 +1,19 @@ +{ + "id": 3909, + "slug": "gogrid", + "name": "GoGrid", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5574633" + ], + "created_at": "2026-07-10T10:12:41.071214", + "updated_at": "2026-07-10T10:12:41.071214", + "url": "/v1/software/gogrid" +} diff --git a/site/public/v1/software/golaem-crowd/index.json b/site/public/v1/software/golaem-crowd/index.json new file mode 100644 index 000000000000..7fb17f278d2b --- /dev/null +++ b/site/public/v1/software/golaem-crowd/index.json @@ -0,0 +1,21 @@ +{ + "id": 3910, + "slug": "golaem-crowd", + "name": "Golaem Crowd", + "release_date": null, + "developers": [ + "Golaem" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5578359" + ], + "created_at": "2026-07-10T10:12:41.071214", + "updated_at": "2026-07-10T10:12:41.071214", + "url": "/v1/software/golaem-crowd" +} diff --git a/site/public/v1/software/goland/index.json b/site/public/v1/software/goland/index.json new file mode 100644 index 000000000000..edfa9d61464d --- /dev/null +++ b/site/public/v1/software/goland/index.json @@ -0,0 +1,19 @@ +{ + "id": 3911, + "slug": "goland", + "name": "goland", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065478" + ], + "created_at": "2026-07-10T10:12:41.071214", + "updated_at": "2026-07-10T10:12:41.071214", + "url": "/v1/software/goland" +} diff --git a/site/public/v1/software/golden-spy/index.json b/site/public/v1/software/golden-spy/index.json new file mode 100644 index 000000000000..98fa3264d774 --- /dev/null +++ b/site/public/v1/software/golden-spy/index.json @@ -0,0 +1,19 @@ +{ + "id": 3912, + "slug": "golden-spy", + "name": "Golden Spy", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107248640" + ], + "created_at": "2026-07-10T10:12:41.072241", + "updated_at": "2026-07-10T10:12:41.072241", + "url": "/v1/software/golden-spy" +} diff --git a/site/public/v1/software/goldsim/index.json b/site/public/v1/software/goldsim/index.json new file mode 100644 index 000000000000..4ec56b57e58a --- /dev/null +++ b/site/public/v1/software/goldsim/index.json @@ -0,0 +1,21 @@ +{ + "id": 3913, + "slug": "goldsim", + "name": "GoldSim", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5578525" + ], + "created_at": "2026-07-10T10:12:41.072241", + "updated_at": "2026-07-10T10:12:41.072241", + "url": "/v1/software/goldsim" +} diff --git a/site/public/v1/software/golfcore/index.json b/site/public/v1/software/golfcore/index.json new file mode 100644 index 000000000000..815d8ff5519a --- /dev/null +++ b/site/public/v1/software/golfcore/index.json @@ -0,0 +1,21 @@ +{ + "id": 3914, + "slug": "golfcore", + "name": "GolfCore", + "release_date": null, + "developers": [ + "Golfcore LLC" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140452682" + ], + "created_at": "2026-07-10T10:12:41.072241", + "updated_at": "2026-07-10T10:12:41.072241", + "url": "/v1/software/golfcore" +} diff --git a/site/public/v1/software/gollum-browser/index.json b/site/public/v1/software/gollum-browser/index.json new file mode 100644 index 000000000000..7b8dc9ed6f12 --- /dev/null +++ b/site/public/v1/software/gollum-browser/index.json @@ -0,0 +1,21 @@ +{ + "id": 3915, + "slug": "gollum-browser", + "name": "Gollum browser", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "PHP" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1191954" + ], + "created_at": "2026-07-10T10:12:41.073215", + "updated_at": "2026-07-10T10:12:41.073215", + "url": "/v1/software/gollum-browser" +} diff --git a/site/public/v1/software/good-lock/index.json b/site/public/v1/software/good-lock/index.json new file mode 100644 index 000000000000..351c711ea6ff --- /dev/null +++ b/site/public/v1/software/good-lock/index.json @@ -0,0 +1,19 @@ +{ + "id": 3916, + "slug": "good-lock", + "name": "Good Lock", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123125339" + ], + "created_at": "2026-07-10T10:12:41.073215", + "updated_at": "2026-07-10T10:12:41.073215", + "url": "/v1/software/good-lock" +} diff --git a/site/public/v1/software/good-smartphone-activated-medics/index.json b/site/public/v1/software/good-smartphone-activated-medics/index.json new file mode 100644 index 000000000000..cc1cdb5f3234 --- /dev/null +++ b/site/public/v1/software/good-smartphone-activated-medics/index.json @@ -0,0 +1,19 @@ +{ + "id": 3917, + "slug": "good-smartphone-activated-medics", + "name": "Good Smartphone Activated Medics", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q19961304" + ], + "created_at": "2026-07-10T10:12:41.073215", + "updated_at": "2026-07-10T10:12:41.073215", + "url": "/v1/software/good-smartphone-activated-medics" +} diff --git a/site/public/v1/software/good-tix/index.json b/site/public/v1/software/good-tix/index.json new file mode 100644 index 000000000000..67367c611cd7 --- /dev/null +++ b/site/public/v1/software/good-tix/index.json @@ -0,0 +1,19 @@ +{ + "id": 3918, + "slug": "good-tix", + "name": "Good Tix", + "release_date": "2026-05-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139970148" + ], + "created_at": "2026-07-10T10:12:41.073215", + "updated_at": "2026-07-10T10:12:41.073215", + "url": "/v1/software/good-tix" +} diff --git a/site/public/v1/software/goodnotes/index.json b/site/public/v1/software/goodnotes/index.json new file mode 100644 index 000000000000..3d033a6671ee --- /dev/null +++ b/site/public/v1/software/goodnotes/index.json @@ -0,0 +1,19 @@ +{ + "id": 3919, + "slug": "goodnotes", + "name": "GoodNotes", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110442565" + ], + "created_at": "2026-07-10T10:12:41.074209", + "updated_at": "2026-07-10T10:12:41.074209", + "url": "/v1/software/goodnotes" +} diff --git a/site/public/v1/software/goodreader/index.json b/site/public/v1/software/goodreader/index.json new file mode 100644 index 000000000000..1eaaad5caee6 --- /dev/null +++ b/site/public/v1/software/goodreader/index.json @@ -0,0 +1,21 @@ +{ + "id": 3920, + "slug": "goodreader", + "name": "GoodReader", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "iOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17182786" + ], + "created_at": "2026-07-10T10:12:41.074209", + "updated_at": "2026-07-10T10:12:41.074209", + "url": "/v1/software/goodreader" +} diff --git a/site/public/v1/software/goodtools/index.json b/site/public/v1/software/goodtools/index.json new file mode 100644 index 000000000000..d19b64166235 --- /dev/null +++ b/site/public/v1/software/goodtools/index.json @@ -0,0 +1,21 @@ +{ + "id": 3921, + "slug": "goodtools", + "name": "GoodTools", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q753183" + ], + "created_at": "2026-07-10T10:12:41.075200", + "updated_at": "2026-07-10T10:12:41.075200", + "url": "/v1/software/goodtools" +} diff --git a/site/public/v1/software/goodwall/index.json b/site/public/v1/software/goodwall/index.json new file mode 100644 index 000000000000..dd2e2aadf113 --- /dev/null +++ b/site/public/v1/software/goodwall/index.json @@ -0,0 +1,21 @@ +{ + "id": 3922, + "slug": "goodwall", + "name": "Goodwall", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "iOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18357312" + ], + "created_at": "2026-07-10T10:12:41.075200", + "updated_at": "2026-07-10T10:12:41.075200", + "url": "/v1/software/goodwall" +} diff --git a/site/public/v1/software/google-3d-warehouse/index.json b/site/public/v1/software/google-3d-warehouse/index.json new file mode 100644 index 000000000000..fb47d67b2e79 --- /dev/null +++ b/site/public/v1/software/google-3d-warehouse/index.json @@ -0,0 +1,19 @@ +{ + "id": 3923, + "slug": "google-3d-warehouse", + "name": "Google 3D Warehouse", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084993" + ], + "created_at": "2026-07-10T10:12:41.075200", + "updated_at": "2026-07-10T10:12:41.075200", + "url": "/v1/software/google-3d-warehouse" +} diff --git a/site/public/v1/software/google-admin/index.json b/site/public/v1/software/google-admin/index.json new file mode 100644 index 000000000000..d12e54016e72 --- /dev/null +++ b/site/public/v1/software/google-admin/index.json @@ -0,0 +1,21 @@ +{ + "id": 3924, + "slug": "google-admin", + "name": "Google Admin", + "release_date": null, + "developers": [ + "Google" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60178298" + ], + "created_at": "2026-07-10T10:12:41.075200", + "updated_at": "2026-07-10T10:12:41.075200", + "url": "/v1/software/google-admin" +} diff --git a/site/public/v1/software/google-adsense/index.json b/site/public/v1/software/google-adsense/index.json new file mode 100644 index 000000000000..74968a151eda --- /dev/null +++ b/site/public/v1/software/google-adsense/index.json @@ -0,0 +1,23 @@ +{ + "id": 3925, + "slug": "google-adsense", + "name": "Google AdSense", + "release_date": "2003-06-18", + "developers": [ + "Google" + ], + "publishers": [], + "operating_systems": [ + "cross-platform" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q183480" + ], + "created_at": "2026-07-10T10:12:41.076217", + "updated_at": "2026-07-10T10:12:41.076217", + "url": "/v1/software/google-adsense" +} diff --git a/site/public/v1/software/google-ai-studio/index.json b/site/public/v1/software/google-ai-studio/index.json new file mode 100644 index 000000000000..1b26489831e2 --- /dev/null +++ b/site/public/v1/software/google-ai-studio/index.json @@ -0,0 +1,21 @@ +{ + "id": 3926, + "slug": "google-ai-studio", + "name": "Google AI Studio", + "release_date": "2023-01-01", + "developers": [ + "Google" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136556923" + ], + "created_at": "2026-07-10T10:12:41.076217", + "updated_at": "2026-07-10T10:12:41.076217", + "url": "/v1/software/google-ai-studio" +} diff --git a/site/public/v1/software/google-app-runtime-for-chrome/index.json b/site/public/v1/software/google-app-runtime-for-chrome/index.json new file mode 100644 index 000000000000..896161124f5b --- /dev/null +++ b/site/public/v1/software/google-app-runtime-for-chrome/index.json @@ -0,0 +1,21 @@ +{ + "id": 3927, + "slug": "google-app-runtime-for-chrome", + "name": "Google App Runtime for Chrome", + "release_date": null, + "developers": [ + "Google" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q19880945" + ], + "created_at": "2026-07-10T10:12:41.076217", + "updated_at": "2026-07-10T10:12:41.076217", + "url": "/v1/software/google-app-runtime-for-chrome" +} diff --git a/site/public/v1/software/google-arts-culture/index.json b/site/public/v1/software/google-arts-culture/index.json new file mode 100644 index 000000000000..fee594f6bf16 --- /dev/null +++ b/site/public/v1/software/google-arts-culture/index.json @@ -0,0 +1,21 @@ +{ + "id": 3928, + "slug": "google-arts-culture", + "name": "Google Arts & Culture", + "release_date": null, + "developers": [ + "Google" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q369089" + ], + "created_at": "2026-07-10T10:12:41.077229", + "updated_at": "2026-07-10T10:12:41.077229", + "url": "/v1/software/google-arts-culture" +} diff --git a/site/public/v1/software/google-blogsearch-scraper/index.json b/site/public/v1/software/google-blogsearch-scraper/index.json new file mode 100644 index 000000000000..3abea550e929 --- /dev/null +++ b/site/public/v1/software/google-blogsearch-scraper/index.json @@ -0,0 +1,19 @@ +{ + "id": 3929, + "slug": "google-blogsearch-scraper", + "name": "Google Blogsearch Scraper", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084994" + ], + "created_at": "2026-07-10T10:12:41.077229", + "updated_at": "2026-07-10T10:12:41.077229", + "url": "/v1/software/google-blogsearch-scraper" +} diff --git a/site/public/v1/software/google-building-maker/index.json b/site/public/v1/software/google-building-maker/index.json new file mode 100644 index 000000000000..2e1c3b880814 --- /dev/null +++ b/site/public/v1/software/google-building-maker/index.json @@ -0,0 +1,19 @@ +{ + "id": 3930, + "slug": "google-building-maker", + "name": "Google Building Maker", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5583810" + ], + "created_at": "2026-07-10T10:12:41.077229", + "updated_at": "2026-07-10T10:12:41.077229", + "url": "/v1/software/google-building-maker" +} diff --git a/site/public/v1/software/google-chart-api/index.json b/site/public/v1/software/google-chart-api/index.json new file mode 100644 index 000000000000..5579377946e9 --- /dev/null +++ b/site/public/v1/software/google-chart-api/index.json @@ -0,0 +1,19 @@ +{ + "id": 3931, + "slug": "google-chart-api", + "name": "Google Chart API", + "release_date": "2007-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5583813" + ], + "created_at": "2026-07-10T10:12:41.077229", + "updated_at": "2026-07-10T10:12:41.077229", + "url": "/v1/software/google-chart-api" +} diff --git a/site/public/v1/software/google-charts/index.json b/site/public/v1/software/google-charts/index.json new file mode 100644 index 000000000000..5e6cebea1d9a --- /dev/null +++ b/site/public/v1/software/google-charts/index.json @@ -0,0 +1,21 @@ +{ + "id": 3932, + "slug": "google-charts", + "name": "Google Charts", + "release_date": null, + "developers": [ + "Google" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28957012" + ], + "created_at": "2026-07-10T10:12:41.078206", + "updated_at": "2026-07-10T10:12:41.078206", + "url": "/v1/software/google-charts" +} diff --git a/site/public/v1/software/google-checkout/index.json b/site/public/v1/software/google-checkout/index.json new file mode 100644 index 000000000000..43352926a57b --- /dev/null +++ b/site/public/v1/software/google-checkout/index.json @@ -0,0 +1,21 @@ +{ + "id": 3933, + "slug": "google-checkout", + "name": "Google Checkout", + "release_date": null, + "developers": [ + "Google" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1048294" + ], + "created_at": "2026-07-10T10:12:41.081142", + "updated_at": "2026-07-10T10:12:41.081142", + "url": "/v1/software/google-checkout" +} diff --git a/site/public/v1/software/google-cloud-connect/index.json b/site/public/v1/software/google-cloud-connect/index.json new file mode 100644 index 000000000000..94a760586a0f --- /dev/null +++ b/site/public/v1/software/google-cloud-connect/index.json @@ -0,0 +1,21 @@ +{ + "id": 3934, + "slug": "google-cloud-connect", + "name": "Google Cloud Connect", + "release_date": null, + "developers": [ + "Google" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2501673" + ], + "created_at": "2026-07-10T10:12:41.084368", + "updated_at": "2026-07-10T10:12:41.085369", + "url": "/v1/software/google-cloud-connect" +} diff --git a/site/public/v1/software/google-cloud-print/index.json b/site/public/v1/software/google-cloud-print/index.json new file mode 100644 index 000000000000..a967ac2415e6 --- /dev/null +++ b/site/public/v1/software/google-cloud-print/index.json @@ -0,0 +1,21 @@ +{ + "id": 3935, + "slug": "google-cloud-print", + "name": "Google Cloud Print", + "release_date": null, + "developers": [ + "Google" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q540202" + ], + "created_at": "2026-07-10T10:12:41.088293", + "updated_at": "2026-07-10T10:12:41.088293", + "url": "/v1/software/google-cloud-print" +} diff --git a/site/public/v1/software/google-cloud-s-operations-suite/index.json b/site/public/v1/software/google-cloud-s-operations-suite/index.json new file mode 100644 index 000000000000..86b09fec1712 --- /dev/null +++ b/site/public/v1/software/google-cloud-s-operations-suite/index.json @@ -0,0 +1,21 @@ +{ + "id": 3936, + "slug": "google-cloud-s-operations-suite", + "name": "Google Cloud's operations suite", + "release_date": null, + "developers": [ + "Google" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17088889" + ], + "created_at": "2026-07-10T10:12:41.091256", + "updated_at": "2026-07-10T10:12:41.092227", + "url": "/v1/software/google-cloud-s-operations-suite" +} diff --git a/site/public/v1/software/google-cloud-sdk/index.json b/site/public/v1/software/google-cloud-sdk/index.json new file mode 100644 index 000000000000..cec6cae2d7f8 --- /dev/null +++ b/site/public/v1/software/google-cloud-sdk/index.json @@ -0,0 +1,21 @@ +{ + "id": 3937, + "slug": "google-cloud-sdk", + "name": "Google Cloud SDK", + "release_date": null, + "developers": [ + "Google" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60023631" + ], + "created_at": "2026-07-10T10:12:41.093272", + "updated_at": "2026-07-10T10:12:41.093272", + "url": "/v1/software/google-cloud-sdk" +} diff --git a/site/public/v1/software/google-cloud-search-q60193397/index.json b/site/public/v1/software/google-cloud-search-q60193397/index.json new file mode 100644 index 000000000000..faeb545b1a09 --- /dev/null +++ b/site/public/v1/software/google-cloud-search-q60193397/index.json @@ -0,0 +1,21 @@ +{ + "id": 3938, + "slug": "google-cloud-search-q60193397", + "name": "Google Cloud Search", + "release_date": null, + "developers": [ + "Google" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60193397" + ], + "created_at": "2026-07-10T10:12:41.094222", + "updated_at": "2026-07-10T10:12:41.094222", + "url": "/v1/software/google-cloud-search-q60193397" +} diff --git a/site/public/v1/software/google-cloud-search/index.json b/site/public/v1/software/google-cloud-search/index.json new file mode 100644 index 000000000000..1af25cb79703 --- /dev/null +++ b/site/public/v1/software/google-cloud-search/index.json @@ -0,0 +1,23 @@ +{ + "id": 3939, + "slug": "google-cloud-search", + "name": "Google Cloud Search", + "release_date": null, + "developers": [ + "Google" + ], + "publishers": [], + "operating_systems": [ + "iOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28957014" + ], + "created_at": "2026-07-10T10:12:41.096365", + "updated_at": "2026-07-10T10:12:41.096365", + "url": "/v1/software/google-cloud-search" +} diff --git a/site/public/v1/software/google-code-search/index.json b/site/public/v1/software/google-code-search/index.json new file mode 100644 index 000000000000..57d0f8322154 --- /dev/null +++ b/site/public/v1/software/google-code-search/index.json @@ -0,0 +1,21 @@ +{ + "id": 3940, + "slug": "google-code-search", + "name": "Google Code Search", + "release_date": null, + "developers": [ + "Google" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q664672" + ], + "created_at": "2026-07-10T10:12:41.099285", + "updated_at": "2026-07-10T10:12:41.099285", + "url": "/v1/software/google-code-search" +} diff --git a/site/public/v1/software/google-colab/index.json b/site/public/v1/software/google-colab/index.json new file mode 100644 index 000000000000..a72215bd03c6 --- /dev/null +++ b/site/public/v1/software/google-colab/index.json @@ -0,0 +1,19 @@ +{ + "id": 3941, + "slug": "google-colab", + "name": "Google Colab", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084995" + ], + "created_at": "2026-07-10T10:12:41.101370", + "updated_at": "2026-07-10T10:12:41.101370", + "url": "/v1/software/google-colab" +} diff --git a/site/public/v1/software/google-currents/index.json b/site/public/v1/software/google-currents/index.json new file mode 100644 index 000000000000..723a98cd8203 --- /dev/null +++ b/site/public/v1/software/google-currents/index.json @@ -0,0 +1,21 @@ +{ + "id": 3942, + "slug": "google-currents", + "name": "Google Currents", + "release_date": null, + "developers": [ + "Google" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q85764061" + ], + "created_at": "2026-07-10T10:12:41.102414", + "updated_at": "2026-07-10T10:12:41.102414", + "url": "/v1/software/google-currents" +} diff --git a/site/public/v1/software/google-docs-editors/index.json b/site/public/v1/software/google-docs-editors/index.json new file mode 100644 index 000000000000..5558782b25d6 --- /dev/null +++ b/site/public/v1/software/google-docs-editors/index.json @@ -0,0 +1,19 @@ +{ + "id": 3943, + "slug": "google-docs-editors", + "name": "Google Docs Editors", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q100154042" + ], + "created_at": "2026-07-10T10:12:41.103365", + "updated_at": "2026-07-10T10:12:41.103365", + "url": "/v1/software/google-docs-editors" +} diff --git a/site/public/v1/software/google-file-system/index.json b/site/public/v1/software/google-file-system/index.json new file mode 100644 index 000000000000..9b287f3d4c67 --- /dev/null +++ b/site/public/v1/software/google-file-system/index.json @@ -0,0 +1,23 @@ +{ + "id": 3944, + "slug": "google-file-system", + "name": "Google File System", + "release_date": "2003-01-01", + "developers": [ + "Google Search" + ], + "publishers": [], + "operating_systems": [ + "Linux kernel" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1537683" + ], + "created_at": "2026-07-10T10:12:41.104285", + "updated_at": "2026-07-10T10:12:41.104285", + "url": "/v1/software/google-file-system" +} diff --git a/site/public/v1/software/google-finance/index.json b/site/public/v1/software/google-finance/index.json new file mode 100644 index 000000000000..2b1a295a9486 --- /dev/null +++ b/site/public/v1/software/google-finance/index.json @@ -0,0 +1,21 @@ +{ + "id": 3945, + "slug": "google-finance", + "name": "Google Finance", + "release_date": null, + "developers": [ + "Google" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1198691" + ], + "created_at": "2026-07-10T10:12:41.105286", + "updated_at": "2026-07-10T10:12:41.105286", + "url": "/v1/software/google-finance" +} diff --git a/site/public/v1/software/google-fit/index.json b/site/public/v1/software/google-fit/index.json new file mode 100644 index 000000000000..2129437711f3 --- /dev/null +++ b/site/public/v1/software/google-fit/index.json @@ -0,0 +1,25 @@ +{ + "id": 3946, + "slug": "google-fit", + "name": "Google Fit", + "release_date": "2014-01-01", + "developers": [ + "Google" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [ + "fitness tracker" + ], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18150347" + ], + "created_at": "2026-07-10T10:12:41.105286", + "updated_at": "2026-07-10T10:12:41.105286", + "url": "/v1/software/google-fit" +} diff --git a/site/public/v1/software/google-font-tools/index.json b/site/public/v1/software/google-font-tools/index.json new file mode 100644 index 000000000000..9cd20a07ff2a --- /dev/null +++ b/site/public/v1/software/google-font-tools/index.json @@ -0,0 +1,21 @@ +{ + "id": 3947, + "slug": "google-font-tools", + "name": "Google Font Tools", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Apache Software License 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q119961000" + ], + "created_at": "2026-07-10T10:12:41.107286", + "updated_at": "2026-07-10T10:12:41.107286", + "url": "/v1/software/google-font-tools" +} diff --git a/site/public/v1/software/google-for-education/index.json b/site/public/v1/software/google-for-education/index.json new file mode 100644 index 000000000000..7187c7189287 --- /dev/null +++ b/site/public/v1/software/google-for-education/index.json @@ -0,0 +1,21 @@ +{ + "id": 3948, + "slug": "google-for-education", + "name": "Google for Education", + "release_date": null, + "developers": [ + "Google" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q19878045" + ], + "created_at": "2026-07-10T10:12:41.107286", + "updated_at": "2026-07-10T10:12:41.107286", + "url": "/v1/software/google-for-education" +} diff --git a/site/public/v1/software/google-gadgets-api/index.json b/site/public/v1/software/google-gadgets-api/index.json new file mode 100644 index 000000000000..89acb8d18d6a --- /dev/null +++ b/site/public/v1/software/google-gadgets-api/index.json @@ -0,0 +1,21 @@ +{ + "id": 3949, + "slug": "google-gadgets-api", + "name": "Google Gadgets API", + "release_date": null, + "developers": [ + "Google" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5583839" + ], + "created_at": "2026-07-10T10:12:41.108285", + "updated_at": "2026-07-10T10:12:41.108285", + "url": "/v1/software/google-gadgets-api" +} diff --git a/site/public/v1/software/google-gesture-search/index.json b/site/public/v1/software/google-gesture-search/index.json new file mode 100644 index 000000000000..9a33c6717f35 --- /dev/null +++ b/site/public/v1/software/google-gesture-search/index.json @@ -0,0 +1,21 @@ +{ + "id": 3950, + "slug": "google-gesture-search", + "name": "Google Gesture Search", + "release_date": null, + "developers": [ + "Google" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28957013" + ], + "created_at": "2026-07-10T10:12:41.109349", + "updated_at": "2026-07-10T10:12:41.109349", + "url": "/v1/software/google-gesture-search" +} diff --git a/site/public/v1/software/google-hacks/index.json b/site/public/v1/software/google-hacks/index.json new file mode 100644 index 000000000000..fb69464a41d0 --- /dev/null +++ b/site/public/v1/software/google-hacks/index.json @@ -0,0 +1,19 @@ +{ + "id": 3951, + "slug": "google-hacks", + "name": "Google Hacks", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28803438" + ], + "created_at": "2026-07-10T10:12:41.109349", + "updated_at": "2026-07-10T10:12:41.109349", + "url": "/v1/software/google-hacks" +} diff --git a/site/public/v1/software/google-hire/index.json b/site/public/v1/software/google-hire/index.json new file mode 100644 index 000000000000..6e2ec0bf206c --- /dev/null +++ b/site/public/v1/software/google-hire/index.json @@ -0,0 +1,19 @@ +{ + "id": 3952, + "slug": "google-hire", + "name": "Google Hire", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q54958397" + ], + "created_at": "2026-07-10T10:12:41.109349", + "updated_at": "2026-07-10T10:12:41.109349", + "url": "/v1/software/google-hire" +} diff --git a/site/public/v1/software/google-jump/index.json b/site/public/v1/software/google-jump/index.json new file mode 100644 index 000000000000..7f2e4ac0a1f6 --- /dev/null +++ b/site/public/v1/software/google-jump/index.json @@ -0,0 +1,21 @@ +{ + "id": 3953, + "slug": "google-jump", + "name": "Google Jump", + "release_date": null, + "developers": [ + "Google AR & VR" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q21463119" + ], + "created_at": "2026-07-10T10:12:41.110860", + "updated_at": "2026-07-10T10:12:41.110860", + "url": "/v1/software/google-jump" +} diff --git a/site/public/v1/software/google-kythe/index.json b/site/public/v1/software/google-kythe/index.json new file mode 100644 index 000000000000..8d422c4dd96d --- /dev/null +++ b/site/public/v1/software/google-kythe/index.json @@ -0,0 +1,23 @@ +{ + "id": 3954, + "slug": "google-kythe", + "name": "Google Kythe", + "release_date": null, + "developers": [ + "Google" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Apache License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q19597364" + ], + "created_at": "2026-07-10T10:12:41.111872", + "updated_at": "2026-07-10T10:12:41.111872", + "url": "/v1/software/google-kythe" +} diff --git a/site/public/v1/software/google-mashup-editor/index.json b/site/public/v1/software/google-mashup-editor/index.json new file mode 100644 index 000000000000..06be4297e92f --- /dev/null +++ b/site/public/v1/software/google-mashup-editor/index.json @@ -0,0 +1,21 @@ +{ + "id": 3955, + "slug": "google-mashup-editor", + "name": "Google Mashup Editor", + "release_date": null, + "developers": [ + "Google" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5583861" + ], + "created_at": "2026-07-10T10:12:41.111872", + "updated_at": "2026-07-10T10:12:41.111872", + "url": "/v1/software/google-mashup-editor" +} diff --git a/site/public/v1/software/google-millwheel/index.json b/site/public/v1/software/google-millwheel/index.json new file mode 100644 index 000000000000..29baafe6b694 --- /dev/null +++ b/site/public/v1/software/google-millwheel/index.json @@ -0,0 +1,19 @@ +{ + "id": 3956, + "slug": "google-millwheel", + "name": "Google MillWheel", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25110405" + ], + "created_at": "2026-07-10T10:12:41.112872", + "updated_at": "2026-07-10T10:12:41.112872", + "url": "/v1/software/google-millwheel" +} diff --git a/site/public/v1/software/google-news-scraper/index.json b/site/public/v1/software/google-news-scraper/index.json new file mode 100644 index 000000000000..09483f029230 --- /dev/null +++ b/site/public/v1/software/google-news-scraper/index.json @@ -0,0 +1,19 @@ +{ + "id": 3957, + "slug": "google-news-scraper", + "name": "Google News Scraper", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084996" + ], + "created_at": "2026-07-10T10:12:41.112872", + "updated_at": "2026-07-10T10:12:41.112872", + "url": "/v1/software/google-news-scraper" +} diff --git a/site/public/v1/software/google-news-weather/index.json b/site/public/v1/software/google-news-weather/index.json new file mode 100644 index 000000000000..7deb804ccea9 --- /dev/null +++ b/site/public/v1/software/google-news-weather/index.json @@ -0,0 +1,23 @@ +{ + "id": 3958, + "slug": "google-news-weather", + "name": "Google News & Weather", + "release_date": null, + "developers": [ + "Google" + ], + "publishers": [], + "operating_systems": [ + "Android Ice Cream Sandwich" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18345379" + ], + "created_at": "2026-07-10T10:12:41.113872", + "updated_at": "2026-07-10T10:12:41.113872", + "url": "/v1/software/google-news-weather" +} diff --git a/site/public/v1/software/google-now-launcher/index.json b/site/public/v1/software/google-now-launcher/index.json new file mode 100644 index 000000000000..0759150c2b4f --- /dev/null +++ b/site/public/v1/software/google-now-launcher/index.json @@ -0,0 +1,19 @@ +{ + "id": 3959, + "slug": "google-now-launcher", + "name": "Google Now Launcher", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18651125" + ], + "created_at": "2026-07-10T10:12:41.113872", + "updated_at": "2026-07-10T10:12:41.113872", + "url": "/v1/software/google-now-launcher" +} diff --git a/site/public/v1/software/google-one-pass/index.json b/site/public/v1/software/google-one-pass/index.json new file mode 100644 index 000000000000..aaffff207f7b --- /dev/null +++ b/site/public/v1/software/google-one-pass/index.json @@ -0,0 +1,21 @@ +{ + "id": 3960, + "slug": "google-one-pass", + "name": "Google One Pass", + "release_date": null, + "developers": [ + "Google" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5583858" + ], + "created_at": "2026-07-10T10:12:41.113872", + "updated_at": "2026-07-10T10:12:41.113872", + "url": "/v1/software/google-one-pass" +} diff --git a/site/public/v1/software/google-optimize/index.json b/site/public/v1/software/google-optimize/index.json new file mode 100644 index 000000000000..6e0227b826df --- /dev/null +++ b/site/public/v1/software/google-optimize/index.json @@ -0,0 +1,23 @@ +{ + "id": 3961, + "slug": "google-optimize", + "name": "Google Optimize", + "release_date": null, + "developers": [ + "Google" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "freemium" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1537691" + ], + "created_at": "2026-07-10T10:12:41.114963", + "updated_at": "2026-07-10T10:12:41.114963", + "url": "/v1/software/google-optimize" +} diff --git a/site/public/v1/software/google-pack/index.json b/site/public/v1/software/google-pack/index.json new file mode 100644 index 000000000000..50dbb8621cff --- /dev/null +++ b/site/public/v1/software/google-pack/index.json @@ -0,0 +1,21 @@ +{ + "id": 3962, + "slug": "google-pack", + "name": "Google Pack", + "release_date": null, + "developers": [ + "Google" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q79593" + ], + "created_at": "2026-07-10T10:12:41.114963", + "updated_at": "2026-07-10T10:12:41.114963", + "url": "/v1/software/google-pack" +} diff --git a/site/public/v1/software/google-page-creator/index.json b/site/public/v1/software/google-page-creator/index.json new file mode 100644 index 000000000000..d88dfb44a40c --- /dev/null +++ b/site/public/v1/software/google-page-creator/index.json @@ -0,0 +1,22 @@ +{ + "id": 3963, + "slug": "google-page-creator", + "name": "Google Page Creator", + "release_date": null, + "developers": [ + "Nathan Naze", + "Google" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3110781" + ], + "created_at": "2026-07-10T10:12:41.114963", + "updated_at": "2026-07-10T10:12:41.114963", + "url": "/v1/software/google-page-creator" +} diff --git a/site/public/v1/software/google-pay-send/index.json b/site/public/v1/software/google-pay-send/index.json new file mode 100644 index 000000000000..67c1530d1e1d --- /dev/null +++ b/site/public/v1/software/google-pay-send/index.json @@ -0,0 +1,21 @@ +{ + "id": 3964, + "slug": "google-pay-send", + "name": "Google Pay Send", + "release_date": null, + "developers": [ + "Google" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2334242" + ], + "created_at": "2026-07-10T10:12:41.115870", + "updated_at": "2026-07-10T10:12:41.115870", + "url": "/v1/software/google-pay-send" +} diff --git a/site/public/v1/software/google-pay/index.json b/site/public/v1/software/google-pay/index.json new file mode 100644 index 000000000000..576f5ecc593c --- /dev/null +++ b/site/public/v1/software/google-pay/index.json @@ -0,0 +1,19 @@ +{ + "id": 3965, + "slug": "google-pay", + "name": "Google Pay", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113364543" + ], + "created_at": "2026-07-10T10:12:41.115870", + "updated_at": "2026-07-10T10:12:41.115870", + "url": "/v1/software/google-pay" +} diff --git a/site/public/v1/software/google-personalized-search/index.json b/site/public/v1/software/google-personalized-search/index.json new file mode 100644 index 000000000000..1acb0414a006 --- /dev/null +++ b/site/public/v1/software/google-personalized-search/index.json @@ -0,0 +1,21 @@ +{ + "id": 3966, + "slug": "google-personalized-search", + "name": "Google Personalized Search", + "release_date": null, + "developers": [ + "Google" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5583864" + ], + "created_at": "2026-07-10T10:12:41.115870", + "updated_at": "2026-07-10T10:12:41.115870", + "url": "/v1/software/google-personalized-search" +} diff --git a/site/public/v1/software/google-play-app-licensing/index.json b/site/public/v1/software/google-play-app-licensing/index.json new file mode 100644 index 000000000000..bf47aabbf185 --- /dev/null +++ b/site/public/v1/software/google-play-app-licensing/index.json @@ -0,0 +1,19 @@ +{ + "id": 3967, + "slug": "google-play-app-licensing", + "name": "Google Play App Licensing", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123085009" + ], + "created_at": "2026-07-10T10:12:41.116940", + "updated_at": "2026-07-10T10:12:41.116940", + "url": "/v1/software/google-play-app-licensing" +} diff --git a/site/public/v1/software/google-play-newsstand/index.json b/site/public/v1/software/google-play-newsstand/index.json new file mode 100644 index 000000000000..51fb6b1fd681 --- /dev/null +++ b/site/public/v1/software/google-play-newsstand/index.json @@ -0,0 +1,21 @@ +{ + "id": 3968, + "slug": "google-play-newsstand", + "name": "Google Play Newsstand", + "release_date": "2013-11-20", + "developers": [ + "Google" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18643705" + ], + "created_at": "2026-07-10T10:12:41.116940", + "updated_at": "2026-07-10T10:12:41.116940", + "url": "/v1/software/google-play-newsstand" +} diff --git a/site/public/v1/software/google-plugin-for-eclipse/index.json b/site/public/v1/software/google-plugin-for-eclipse/index.json new file mode 100644 index 000000000000..bdc3cd66f459 --- /dev/null +++ b/site/public/v1/software/google-plugin-for-eclipse/index.json @@ -0,0 +1,21 @@ +{ + "id": 3969, + "slug": "google-plugin-for-eclipse", + "name": "Google Plugin for Eclipse", + "release_date": "2009-04-07", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Java" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5583870" + ], + "created_at": "2026-07-10T10:12:41.116940", + "updated_at": "2026-07-10T10:12:41.116940", + "url": "/v1/software/google-plugin-for-eclipse" +} diff --git a/site/public/v1/software/google-read-along/index.json b/site/public/v1/software/google-read-along/index.json new file mode 100644 index 000000000000..339741eefc86 --- /dev/null +++ b/site/public/v1/software/google-read-along/index.json @@ -0,0 +1,19 @@ +{ + "id": 3970, + "slug": "google-read-along", + "name": "Google Read Along", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q104721162" + ], + "created_at": "2026-07-10T10:12:41.117869", + "updated_at": "2026-07-10T10:12:41.117869", + "url": "/v1/software/google-read-along" +} diff --git a/site/public/v1/software/google-scholar-citations/index.json b/site/public/v1/software/google-scholar-citations/index.json new file mode 100644 index 000000000000..b1e24ba08d72 --- /dev/null +++ b/site/public/v1/software/google-scholar-citations/index.json @@ -0,0 +1,19 @@ +{ + "id": 3971, + "slug": "google-scholar-citations", + "name": "Google Scholar Citations", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084997" + ], + "created_at": "2026-07-10T10:12:41.117869", + "updated_at": "2026-07-10T10:12:41.117869", + "url": "/v1/software/google-scholar-citations" +} diff --git a/site/public/v1/software/google-shopping/index.json b/site/public/v1/software/google-shopping/index.json new file mode 100644 index 000000000000..802056304036 --- /dev/null +++ b/site/public/v1/software/google-shopping/index.json @@ -0,0 +1,21 @@ +{ + "id": 3972, + "slug": "google-shopping", + "name": "Google Shopping", + "release_date": null, + "developers": [ + "Google" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1433417" + ], + "created_at": "2026-07-10T10:12:41.117869", + "updated_at": "2026-07-10T10:12:41.117869", + "url": "/v1/software/google-shopping" +} diff --git a/site/public/v1/software/google-sites/index.json b/site/public/v1/software/google-sites/index.json new file mode 100644 index 000000000000..6acbe64652b9 --- /dev/null +++ b/site/public/v1/software/google-sites/index.json @@ -0,0 +1,21 @@ +{ + "id": 3973, + "slug": "google-sites", + "name": "Google Sites", + "release_date": null, + "developers": [ + "Google" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q623456" + ], + "created_at": "2026-07-10T10:12:41.117869", + "updated_at": "2026-07-10T10:12:41.117869", + "url": "/v1/software/google-sites" +} diff --git a/site/public/v1/software/google-sky/index.json b/site/public/v1/software/google-sky/index.json new file mode 100644 index 000000000000..4d4bcab5f0ec --- /dev/null +++ b/site/public/v1/software/google-sky/index.json @@ -0,0 +1,19 @@ +{ + "id": 3974, + "slug": "google-sky", + "name": "Google Sky", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q974700" + ], + "created_at": "2026-07-10T10:12:41.118928", + "updated_at": "2026-07-10T10:12:41.118928", + "url": "/v1/software/google-sky" +} diff --git a/site/public/v1/software/google-spaces/index.json b/site/public/v1/software/google-spaces/index.json new file mode 100644 index 000000000000..525f5ab77250 --- /dev/null +++ b/site/public/v1/software/google-spaces/index.json @@ -0,0 +1,27 @@ +{ + "id": 3975, + "slug": "google-spaces", + "name": "Google Spaces", + "release_date": null, + "developers": [ + "Google" + ], + "publishers": [], + "operating_systems": [ + "iOS", + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25345972" + ], + "created_at": "2026-07-10T10:12:41.118928", + "updated_at": "2026-07-10T10:12:41.118928", + "url": "/v1/software/google-spaces" +} diff --git a/site/public/v1/software/google-street-view-q25488739/index.json b/site/public/v1/software/google-street-view-q25488739/index.json new file mode 100644 index 000000000000..af69693f1e0f --- /dev/null +++ b/site/public/v1/software/google-street-view-q25488739/index.json @@ -0,0 +1,19 @@ +{ + "id": 3976, + "slug": "google-street-view-q25488739", + "name": "Google Street View", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25488739" + ], + "created_at": "2026-07-10T10:12:41.118928", + "updated_at": "2026-07-10T10:12:41.118928", + "url": "/v1/software/google-street-view-q25488739" +} diff --git a/site/public/v1/software/google-street-view/index.json b/site/public/v1/software/google-street-view/index.json new file mode 100644 index 000000000000..27871d8ce094 --- /dev/null +++ b/site/public/v1/software/google-street-view/index.json @@ -0,0 +1,21 @@ +{ + "id": 3977, + "slug": "google-street-view", + "name": "Google Street View", + "release_date": "2007-05-25", + "developers": [ + "Google" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q213602" + ], + "created_at": "2026-07-10T10:12:41.119935", + "updated_at": "2026-07-10T10:12:41.119935", + "url": "/v1/software/google-street-view" +} diff --git a/site/public/v1/software/google-sync/index.json b/site/public/v1/software/google-sync/index.json new file mode 100644 index 000000000000..6ed01c0382b6 --- /dev/null +++ b/site/public/v1/software/google-sync/index.json @@ -0,0 +1,21 @@ +{ + "id": 3978, + "slug": "google-sync", + "name": "Google Sync", + "release_date": null, + "developers": [ + "Google" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2502809" + ], + "created_at": "2026-07-10T10:12:41.119935", + "updated_at": "2026-07-10T10:12:41.119935", + "url": "/v1/software/google-sync" +} diff --git a/site/public/v1/software/google-takeout/index.json b/site/public/v1/software/google-takeout/index.json new file mode 100644 index 000000000000..39d6934d1543 --- /dev/null +++ b/site/public/v1/software/google-takeout/index.json @@ -0,0 +1,21 @@ +{ + "id": 3979, + "slug": "google-takeout", + "name": "Google Takeout", + "release_date": "2011-01-01", + "developers": [ + "Google" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3110764" + ], + "created_at": "2026-07-10T10:12:41.119935", + "updated_at": "2026-07-10T10:12:41.119935", + "url": "/v1/software/google-takeout" +} diff --git a/site/public/v1/software/google-talk/index.json b/site/public/v1/software/google-talk/index.json new file mode 100644 index 000000000000..09c06e2293a5 --- /dev/null +++ b/site/public/v1/software/google-talk/index.json @@ -0,0 +1,33 @@ +{ + "id": 3980, + "slug": "google-talk", + "name": "Google Talk", + "release_date": "2005-08-24", + "developers": [ + "Google" + ], + "publishers": [], + "operating_systems": [ + "webOS", + "Maemo", + "ChromeOS", + "iOS", + "BlackBerry 10", + "BlackBerry OS", + "Windows Mobile", + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q51713" + ], + "created_at": "2026-07-10T10:12:41.119935", + "updated_at": "2026-07-10T10:12:41.119935", + "url": "/v1/software/google-talk" +} diff --git a/site/public/v1/software/google-tasks/index.json b/site/public/v1/software/google-tasks/index.json new file mode 100644 index 000000000000..1733c14ae7c1 --- /dev/null +++ b/site/public/v1/software/google-tasks/index.json @@ -0,0 +1,19 @@ +{ + "id": 3981, + "slug": "google-tasks", + "name": "Google Tasks", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113288788" + ], + "created_at": "2026-07-10T10:12:41.120953", + "updated_at": "2026-07-10T10:12:41.120953", + "url": "/v1/software/google-tasks" +} diff --git a/site/public/v1/software/google-tez/index.json b/site/public/v1/software/google-tez/index.json new file mode 100644 index 000000000000..1bc77067f623 --- /dev/null +++ b/site/public/v1/software/google-tez/index.json @@ -0,0 +1,23 @@ +{ + "id": 3982, + "slug": "google-tez", + "name": "Google Tez", + "release_date": "2017-09-19", + "developers": [ + "Google" + ], + "publishers": [], + "operating_systems": [ + "iOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q40406186" + ], + "created_at": "2026-07-10T10:12:41.120953", + "updated_at": "2026-07-10T10:12:41.120953", + "url": "/v1/software/google-tez" +} diff --git a/site/public/v1/software/google-toolbar/index.json b/site/public/v1/software/google-toolbar/index.json new file mode 100644 index 000000000000..a36517f27140 --- /dev/null +++ b/site/public/v1/software/google-toolbar/index.json @@ -0,0 +1,21 @@ +{ + "id": 3983, + "slug": "google-toolbar", + "name": "Google Toolbar", + "release_date": null, + "developers": [ + "Google" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q79608" + ], + "created_at": "2026-07-10T10:12:41.120953", + "updated_at": "2026-07-10T10:12:41.120953", + "url": "/v1/software/google-toolbar" +} diff --git a/site/public/v1/software/google-translator-toolkit/index.json b/site/public/v1/software/google-translator-toolkit/index.json new file mode 100644 index 000000000000..39e4bc4d68c9 --- /dev/null +++ b/site/public/v1/software/google-translator-toolkit/index.json @@ -0,0 +1,21 @@ +{ + "id": 3984, + "slug": "google-translator-toolkit", + "name": "Google Translator Toolkit", + "release_date": null, + "developers": [ + "Google" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2755835" + ], + "created_at": "2026-07-10T10:12:41.121934", + "updated_at": "2026-07-10T10:12:41.121934", + "url": "/v1/software/google-translator-toolkit" +} diff --git a/site/public/v1/software/google-transliteration/index.json b/site/public/v1/software/google-transliteration/index.json new file mode 100644 index 000000000000..a076af93c866 --- /dev/null +++ b/site/public/v1/software/google-transliteration/index.json @@ -0,0 +1,19 @@ +{ + "id": 3985, + "slug": "google-transliteration", + "name": "Google transliteration", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3520765" + ], + "created_at": "2026-07-10T10:12:41.121934", + "updated_at": "2026-07-10T10:12:41.121934", + "url": "/v1/software/google-transliteration" +} diff --git a/site/public/v1/software/google-travel/index.json b/site/public/v1/software/google-travel/index.json new file mode 100644 index 000000000000..168d309b9709 --- /dev/null +++ b/site/public/v1/software/google-travel/index.json @@ -0,0 +1,24 @@ +{ + "id": 3986, + "slug": "google-travel", + "name": "Google Travel", + "release_date": null, + "developers": [ + "Google" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [ + "route planning software", + "trip planner" + ], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q56280421" + ], + "created_at": "2026-07-10T10:12:41.121934", + "updated_at": "2026-07-10T10:12:41.121934", + "url": "/v1/software/google-travel" +} diff --git a/site/public/v1/software/google-vault/index.json b/site/public/v1/software/google-vault/index.json new file mode 100644 index 000000000000..1c90b65413e8 --- /dev/null +++ b/site/public/v1/software/google-vault/index.json @@ -0,0 +1,21 @@ +{ + "id": 3987, + "slug": "google-vault", + "name": "Google Vault", + "release_date": null, + "developers": [ + "Google" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60193001" + ], + "created_at": "2026-07-10T10:12:41.121934", + "updated_at": "2026-07-10T10:12:41.121934", + "url": "/v1/software/google-vault" +} diff --git a/site/public/v1/software/google-video-marketplace/index.json b/site/public/v1/software/google-video-marketplace/index.json new file mode 100644 index 000000000000..0c8488587be2 --- /dev/null +++ b/site/public/v1/software/google-video-marketplace/index.json @@ -0,0 +1,21 @@ +{ + "id": 3988, + "slug": "google-video-marketplace", + "name": "Google Video Marketplace", + "release_date": null, + "developers": [ + "Google" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5583894" + ], + "created_at": "2026-07-10T10:12:41.122950", + "updated_at": "2026-07-10T10:12:41.122950", + "url": "/v1/software/google-video-marketplace" +} diff --git a/site/public/v1/software/google-videos/index.json b/site/public/v1/software/google-videos/index.json new file mode 100644 index 000000000000..2c28da0c6162 --- /dev/null +++ b/site/public/v1/software/google-videos/index.json @@ -0,0 +1,27 @@ +{ + "id": 3989, + "slug": "google-videos", + "name": "Google Videos", + "release_date": null, + "developers": [ + "Google" + ], + "publishers": [], + "operating_systems": [ + "iOS", + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q219885" + ], + "created_at": "2026-07-10T10:12:41.122950", + "updated_at": "2026-07-10T10:12:41.122950", + "url": "/v1/software/google-videos" +} diff --git a/site/public/v1/software/google-voice-search/index.json b/site/public/v1/software/google-voice-search/index.json new file mode 100644 index 000000000000..0ae8dfa7bcd5 --- /dev/null +++ b/site/public/v1/software/google-voice-search/index.json @@ -0,0 +1,21 @@ +{ + "id": 3990, + "slug": "google-voice-search", + "name": "Google Voice Search", + "release_date": null, + "developers": [ + "Google" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2736257" + ], + "created_at": "2026-07-10T10:12:41.122950", + "updated_at": "2026-07-10T10:12:41.122950", + "url": "/v1/software/google-voice-search" +} diff --git a/site/public/v1/software/google-voice/index.json b/site/public/v1/software/google-voice/index.json new file mode 100644 index 000000000000..de1d5638e13c --- /dev/null +++ b/site/public/v1/software/google-voice/index.json @@ -0,0 +1,23 @@ +{ + "id": 3991, + "slug": "google-voice", + "name": "Google Voice", + "release_date": "2009-01-01", + "developers": [ + "Google" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q51712" + ], + "created_at": "2026-07-10T10:12:41.123943", + "updated_at": "2026-07-10T10:12:41.123943", + "url": "/v1/software/google-voice" +} diff --git a/site/public/v1/software/google-web-accelerator/index.json b/site/public/v1/software/google-web-accelerator/index.json new file mode 100644 index 000000000000..182600c424a4 --- /dev/null +++ b/site/public/v1/software/google-web-accelerator/index.json @@ -0,0 +1,23 @@ +{ + "id": 3992, + "slug": "google-web-accelerator", + "name": "Google Web Accelerator", + "release_date": null, + "developers": [ + "Google" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2249121" + ], + "created_at": "2026-07-10T10:12:41.123943", + "updated_at": "2026-07-10T10:12:41.123943", + "url": "/v1/software/google-web-accelerator" +} diff --git a/site/public/v1/software/google-wonder-wheel/index.json b/site/public/v1/software/google-wonder-wheel/index.json new file mode 100644 index 000000000000..c11d715c6613 --- /dev/null +++ b/site/public/v1/software/google-wonder-wheel/index.json @@ -0,0 +1,19 @@ +{ + "id": 3993, + "slug": "google-wonder-wheel", + "name": "Google Wonder Wheel", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084999" + ], + "created_at": "2026-07-10T10:12:41.123943", + "updated_at": "2026-07-10T10:12:41.123943", + "url": "/v1/software/google-wonder-wheel" +} diff --git a/site/public/v1/software/google-zanzibar/index.json b/site/public/v1/software/google-zanzibar/index.json new file mode 100644 index 000000000000..87e85ce0f164 --- /dev/null +++ b/site/public/v1/software/google-zanzibar/index.json @@ -0,0 +1,21 @@ +{ + "id": 3994, + "slug": "google-zanzibar", + "name": "Google Zanzibar", + "release_date": null, + "developers": [ + "Google" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q119950635" + ], + "created_at": "2026-07-10T10:12:41.123943", + "updated_at": "2026-07-10T10:12:41.123943", + "url": "/v1/software/google-zanzibar" +} diff --git a/site/public/v1/software/google/index.json b/site/public/v1/software/google/index.json new file mode 100644 index 000000000000..521ecdc3d7c0 --- /dev/null +++ b/site/public/v1/software/google/index.json @@ -0,0 +1,19 @@ +{ + "id": 3995, + "slug": "google", + "name": "Google+", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q356" + ], + "created_at": "2026-07-10T10:12:41.124921", + "updated_at": "2026-07-10T10:12:41.124921", + "url": "/v1/software/google" +} diff --git a/site/public/v1/software/googlescraper-lippmannian-device/index.json b/site/public/v1/software/googlescraper-lippmannian-device/index.json new file mode 100644 index 000000000000..c9aae6118369 --- /dev/null +++ b/site/public/v1/software/googlescraper-lippmannian-device/index.json @@ -0,0 +1,19 @@ +{ + "id": 3996, + "slug": "googlescraper-lippmannian-device", + "name": "Googlescraper (Lippmannian Device)", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084998" + ], + "created_at": "2026-07-10T10:12:41.124921", + "updated_at": "2026-07-10T10:12:41.124921", + "url": "/v1/software/googlescraper-lippmannian-device" +} diff --git a/site/public/v1/software/goose-vpn/index.json b/site/public/v1/software/goose-vpn/index.json new file mode 100644 index 000000000000..faa03b3ce92e --- /dev/null +++ b/site/public/v1/software/goose-vpn/index.json @@ -0,0 +1,19 @@ +{ + "id": 3997, + "slug": "goose-vpn", + "name": "GOOSE VPN", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111011420" + ], + "created_at": "2026-07-10T10:12:41.125869", + "updated_at": "2026-07-10T10:12:41.125869", + "url": "/v1/software/goose-vpn" +} diff --git a/site/public/v1/software/goosy/index.json b/site/public/v1/software/goosy/index.json new file mode 100644 index 000000000000..876051faa12e --- /dev/null +++ b/site/public/v1/software/goosy/index.json @@ -0,0 +1,21 @@ +{ + "id": 3998, + "slug": "goosy", + "name": "GOOSY", + "release_date": null, + "developers": [ + "GSI Helmholtz Centre for Heavy Ion Research" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q114809738" + ], + "created_at": "2026-07-10T10:12:41.125869", + "updated_at": "2026-07-10T10:12:41.125869", + "url": "/v1/software/goosy" +} diff --git a/site/public/v1/software/gopher/index.json b/site/public/v1/software/gopher/index.json new file mode 100644 index 000000000000..2f8313e70f29 --- /dev/null +++ b/site/public/v1/software/gopher/index.json @@ -0,0 +1,19 @@ +{ + "id": 3999, + "slug": "gopher", + "name": "Gopher+", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5584259" + ], + "created_at": "2026-07-10T10:12:41.125869", + "updated_at": "2026-07-10T10:12:41.125869", + "url": "/v1/software/gopher" +} diff --git a/site/public/v1/software/goptical/index.json b/site/public/v1/software/goptical/index.json new file mode 100644 index 000000000000..43f803ea92da --- /dev/null +++ b/site/public/v1/software/goptical/index.json @@ -0,0 +1,19 @@ +{ + "id": 4000, + "slug": "goptical", + "name": "Goptical", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q45115770" + ], + "created_at": "2026-07-10T10:12:41.126868", + "updated_at": "2026-07-10T10:12:41.126868", + "url": "/v1/software/goptical" +} diff --git a/site/public/v1/software/goskills/index.json b/site/public/v1/software/goskills/index.json new file mode 100644 index 000000000000..d67059ee2766 --- /dev/null +++ b/site/public/v1/software/goskills/index.json @@ -0,0 +1,19 @@ +{ + "id": 4001, + "slug": "goskills", + "name": "GoSkills", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q94999831" + ], + "created_at": "2026-07-10T10:12:41.126868", + "updated_at": "2026-07-10T10:12:41.126868", + "url": "/v1/software/goskills" +} diff --git a/site/public/v1/software/goslinux/index.json b/site/public/v1/software/goslinux/index.json new file mode 100644 index 000000000000..4d8b72659335 --- /dev/null +++ b/site/public/v1/software/goslinux/index.json @@ -0,0 +1,19 @@ +{ + "id": 4002, + "slug": "goslinux", + "name": "GosLinux", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16638912" + ], + "created_at": "2026-07-10T10:12:41.126868", + "updated_at": "2026-07-10T10:12:41.126868", + "url": "/v1/software/goslinux" +} diff --git a/site/public/v1/software/goto/index.json b/site/public/v1/software/goto/index.json new file mode 100644 index 000000000000..dc352db7c3e1 --- /dev/null +++ b/site/public/v1/software/goto/index.json @@ -0,0 +1,19 @@ +{ + "id": 4003, + "slug": "goto", + "name": "GoTo", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q971477" + ], + "created_at": "2026-07-10T10:12:41.127871", + "updated_at": "2026-07-10T10:12:41.127871", + "url": "/v1/software/goto" +} diff --git a/site/public/v1/software/gotoassist/index.json b/site/public/v1/software/gotoassist/index.json new file mode 100644 index 000000000000..5b8e2bff0c58 --- /dev/null +++ b/site/public/v1/software/gotoassist/index.json @@ -0,0 +1,19 @@ +{ + "id": 4004, + "slug": "gotoassist", + "name": "GoToAssist", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5574647" + ], + "created_at": "2026-07-10T10:12:41.127871", + "updated_at": "2026-07-10T10:12:41.127871", + "url": "/v1/software/gotoassist" +} diff --git a/site/public/v1/software/gototraining/index.json b/site/public/v1/software/gototraining/index.json new file mode 100644 index 000000000000..6e0ff1f6590a --- /dev/null +++ b/site/public/v1/software/gototraining/index.json @@ -0,0 +1,21 @@ +{ + "id": 4005, + "slug": "gototraining", + "name": "Gototraining", + "release_date": null, + "developers": [ + "Citrix Systems" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5587939" + ], + "created_at": "2026-07-10T10:12:41.127871", + "updated_at": "2026-07-10T10:12:41.127871", + "url": "/v1/software/gototraining" +} diff --git a/site/public/v1/software/gotriple-discovery-platform/index.json b/site/public/v1/software/gotriple-discovery-platform/index.json new file mode 100644 index 000000000000..ef96523222bd --- /dev/null +++ b/site/public/v1/software/gotriple-discovery-platform/index.json @@ -0,0 +1,19 @@ +{ + "id": 4006, + "slug": "gotriple-discovery-platform", + "name": "GoTriple Discovery Platform", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085000" + ], + "created_at": "2026-07-10T10:12:41.128871", + "updated_at": "2026-07-10T10:12:41.128871", + "url": "/v1/software/gotriple-discovery-platform" +} diff --git a/site/public/v1/software/goupile/index.json b/site/public/v1/software/goupile/index.json new file mode 100644 index 000000000000..4aa3a48550f6 --- /dev/null +++ b/site/public/v1/software/goupile/index.json @@ -0,0 +1,21 @@ +{ + "id": 4007, + "slug": "goupile", + "name": "Goupile", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "GNU Affero General Public License, version 3.0 or later" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120131804" + ], + "created_at": "2026-07-10T10:12:41.128871", + "updated_at": "2026-07-10T10:12:41.128871", + "url": "/v1/software/goupile" +} diff --git a/site/public/v1/software/gource/index.json b/site/public/v1/software/gource/index.json new file mode 100644 index 000000000000..108dd3717744 --- /dev/null +++ b/site/public/v1/software/gource/index.json @@ -0,0 +1,21 @@ +{ + "id": 4008, + "slug": "gource", + "name": "Gource", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "GNU General Public License, version 3.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115279740" + ], + "created_at": "2026-07-10T10:12:41.128871", + "updated_at": "2026-07-10T10:12:41.128871", + "url": "/v1/software/gource" +} diff --git a/site/public/v1/software/goverlan-systems-management/index.json b/site/public/v1/software/goverlan-systems-management/index.json new file mode 100644 index 000000000000..4f1356639fcd --- /dev/null +++ b/site/public/v1/software/goverlan-systems-management/index.json @@ -0,0 +1,23 @@ +{ + "id": 4009, + "slug": "goverlan-systems-management", + "name": "Goverlan Systems Management", + "release_date": "1998-01-01", + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q20712426" + ], + "created_at": "2026-07-10T10:12:41.129876", + "updated_at": "2026-07-10T10:12:41.129876", + "url": "/v1/software/goverlan-systems-management" +} diff --git a/site/public/v1/software/governance-risk-and-compliance-software/index.json b/site/public/v1/software/governance-risk-and-compliance-software/index.json new file mode 100644 index 000000000000..6a6243d2c43c --- /dev/null +++ b/site/public/v1/software/governance-risk-and-compliance-software/index.json @@ -0,0 +1,19 @@ +{ + "id": 4010, + "slug": "governance-risk-and-compliance-software", + "name": "Governance, Risk and Compliance software", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138643002" + ], + "created_at": "2026-07-10T10:12:41.129876", + "updated_at": "2026-07-10T10:12:41.129876", + "url": "/v1/software/governance-risk-and-compliance-software" +} diff --git a/site/public/v1/software/governikus/index.json b/site/public/v1/software/governikus/index.json new file mode 100644 index 000000000000..cd8b9dab8624 --- /dev/null +++ b/site/public/v1/software/governikus/index.json @@ -0,0 +1,21 @@ +{ + "id": 4011, + "slug": "governikus", + "name": "Governikus", + "release_date": null, + "developers": [ + "Governikus KG" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1540435" + ], + "created_at": "2026-07-10T10:12:41.129876", + "updated_at": "2026-07-10T10:12:41.129876", + "url": "/v1/software/governikus" +} diff --git a/site/public/v1/software/govpay/index.json b/site/public/v1/software/govpay/index.json new file mode 100644 index 000000000000..5887874abe5b --- /dev/null +++ b/site/public/v1/software/govpay/index.json @@ -0,0 +1,19 @@ +{ + "id": 4012, + "slug": "govpay", + "name": "GovPay", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134413016" + ], + "created_at": "2026-07-10T10:12:41.129876", + "updated_at": "2026-07-10T10:12:41.129876", + "url": "/v1/software/govpay" +} diff --git a/site/public/v1/software/gox/index.json b/site/public/v1/software/gox/index.json new file mode 100644 index 000000000000..40f234ea57d5 --- /dev/null +++ b/site/public/v1/software/gox/index.json @@ -0,0 +1,19 @@ +{ + "id": 4013, + "slug": "gox", + "name": "Gox", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110474439" + ], + "created_at": "2026-07-10T10:12:41.130937", + "updated_at": "2026-07-10T10:12:41.130937", + "url": "/v1/software/gox" +} diff --git a/site/public/v1/software/gpa/index.json b/site/public/v1/software/gpa/index.json new file mode 100644 index 000000000000..c9c93a7d8eac --- /dev/null +++ b/site/public/v1/software/gpa/index.json @@ -0,0 +1,19 @@ +{ + "id": 4014, + "slug": "gpa", + "name": "GPA", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110474575" + ], + "created_at": "2026-07-10T10:12:41.130937", + "updated_at": "2026-07-10T10:12:41.130937", + "url": "/v1/software/gpa" +} diff --git a/site/public/v1/software/gpass/index.json b/site/public/v1/software/gpass/index.json new file mode 100644 index 000000000000..c09643fb2efb --- /dev/null +++ b/site/public/v1/software/gpass/index.json @@ -0,0 +1,19 @@ +{ + "id": 4015, + "slug": "gpass", + "name": "GPASS", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5514155" + ], + "created_at": "2026-07-10T10:12:41.130937", + "updated_at": "2026-07-10T10:12:41.130937", + "url": "/v1/software/gpass" +} diff --git a/site/public/v1/software/gpi-space/index.json b/site/public/v1/software/gpi-space/index.json new file mode 100644 index 000000000000..fc05ff3e00c3 --- /dev/null +++ b/site/public/v1/software/gpi-space/index.json @@ -0,0 +1,19 @@ +{ + "id": 4016, + "slug": "gpi-space", + "name": "GPI-Space", + "release_date": "2010-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17091053" + ], + "created_at": "2026-07-10T10:12:41.131932", + "updated_at": "2026-07-10T10:12:41.131932", + "url": "/v1/software/gpi-space" +} diff --git a/site/public/v1/software/gpicview/index.json b/site/public/v1/software/gpicview/index.json new file mode 100644 index 000000000000..f54c5ab1d846 --- /dev/null +++ b/site/public/v1/software/gpicview/index.json @@ -0,0 +1,21 @@ +{ + "id": 4017, + "slug": "gpicview", + "name": "GPicView", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "GNU General Public License, version 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2172010" + ], + "created_at": "2026-07-10T10:12:41.131932", + "updated_at": "2026-07-10T10:12:41.131932", + "url": "/v1/software/gpicview" +} diff --git a/site/public/v1/software/gpn-schedule/index.json b/site/public/v1/software/gpn-schedule/index.json new file mode 100644 index 000000000000..919075414062 --- /dev/null +++ b/site/public/v1/software/gpn-schedule/index.json @@ -0,0 +1,21 @@ +{ + "id": 4018, + "slug": "gpn-schedule", + "name": "GPN Schedule", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Apache Software License 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140129504" + ], + "created_at": "2026-07-10T10:12:41.131932", + "updated_at": "2026-07-10T10:12:41.131932", + "url": "/v1/software/gpn-schedule" +} diff --git a/site/public/v1/software/gpops-ii/index.json b/site/public/v1/software/gpops-ii/index.json new file mode 100644 index 000000000000..64f3a7a45cbf --- /dev/null +++ b/site/public/v1/software/gpops-ii/index.json @@ -0,0 +1,21 @@ +{ + "id": 4019, + "slug": "gpops-ii", + "name": "GPOPS-II", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "macOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22682127" + ], + "created_at": "2026-07-10T10:12:41.132936", + "updated_at": "2026-07-10T10:12:41.132936", + "url": "/v1/software/gpops-ii" +} diff --git a/site/public/v1/software/gpp/index.json b/site/public/v1/software/gpp/index.json new file mode 100644 index 000000000000..569913841adc --- /dev/null +++ b/site/public/v1/software/gpp/index.json @@ -0,0 +1,19 @@ +{ + "id": 4020, + "slug": "gpp", + "name": "GPP", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110474627" + ], + "created_at": "2026-07-10T10:12:41.132936", + "updated_at": "2026-07-10T10:12:41.132936", + "url": "/v1/software/gpp" +} diff --git a/site/public/v1/software/gps-visualizer/index.json b/site/public/v1/software/gps-visualizer/index.json new file mode 100644 index 000000000000..db679477b2aa --- /dev/null +++ b/site/public/v1/software/gps-visualizer/index.json @@ -0,0 +1,19 @@ +{ + "id": 4021, + "slug": "gps-visualizer", + "name": "GPS Visualizer", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085001" + ], + "created_at": "2026-07-10T10:12:41.133916", + "updated_at": "2026-07-10T10:12:41.133916", + "url": "/v1/software/gps-visualizer" +} diff --git a/site/public/v1/software/gpsprune/index.json b/site/public/v1/software/gpsprune/index.json new file mode 100644 index 000000000000..2a67b596c7b0 --- /dev/null +++ b/site/public/v1/software/gpsprune/index.json @@ -0,0 +1,23 @@ +{ + "id": 4022, + "slug": "gpsprune", + "name": "GpsPrune", + "release_date": "2006-09-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Java" + ], + "licenses": [ + "GNU General Public License, version 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124684408" + ], + "created_at": "2026-07-10T10:12:41.133916", + "updated_at": "2026-07-10T10:12:41.133916", + "url": "/v1/software/gpsprune" +} diff --git a/site/public/v1/software/gpt-5-2/index.json b/site/public/v1/software/gpt-5-2/index.json new file mode 100644 index 000000000000..4b0039d95982 --- /dev/null +++ b/site/public/v1/software/gpt-5-2/index.json @@ -0,0 +1,23 @@ +{ + "id": 4023, + "slug": "gpt-5-2", + "name": "GPT-5.2", + "release_date": "2025-12-11", + "developers": [ + "OpenAI" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137401468" + ], + "created_at": "2026-07-10T10:12:41.133916", + "updated_at": "2026-07-10T10:12:41.133916", + "url": "/v1/software/gpt-5-2" +} diff --git a/site/public/v1/software/gpt-5-4/index.json b/site/public/v1/software/gpt-5-4/index.json new file mode 100644 index 000000000000..4f6e18ad9cee --- /dev/null +++ b/site/public/v1/software/gpt-5-4/index.json @@ -0,0 +1,21 @@ +{ + "id": 4024, + "slug": "gpt-5-4", + "name": "GPT-5.4", + "release_date": "2026-03-05", + "developers": [ + "OpenAI" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138662031" + ], + "created_at": "2026-07-10T10:12:41.133916", + "updated_at": "2026-07-10T10:12:41.133916", + "url": "/v1/software/gpt-5-4" +} diff --git a/site/public/v1/software/gpt-5-6/index.json b/site/public/v1/software/gpt-5-6/index.json new file mode 100644 index 000000000000..a486203061e6 --- /dev/null +++ b/site/public/v1/software/gpt-5-6/index.json @@ -0,0 +1,19 @@ +{ + "id": 4025, + "slug": "gpt-5-6", + "name": "GPT-5.6", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140371307" + ], + "created_at": "2026-07-10T10:12:41.134944", + "updated_at": "2026-07-10T10:12:41.134944", + "url": "/v1/software/gpt-5-6" +} diff --git a/site/public/v1/software/gptfy/index.json b/site/public/v1/software/gptfy/index.json new file mode 100644 index 000000000000..ed0a56e0e819 --- /dev/null +++ b/site/public/v1/software/gptfy/index.json @@ -0,0 +1,19 @@ +{ + "id": 4026, + "slug": "gptfy", + "name": "GPTfy", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140262029" + ], + "created_at": "2026-07-10T10:12:41.134944", + "updated_at": "2026-07-10T10:12:41.134944", + "url": "/v1/software/gptfy" +} diff --git a/site/public/v1/software/gptq/index.json b/site/public/v1/software/gptq/index.json new file mode 100644 index 000000000000..308e64aec828 --- /dev/null +++ b/site/public/v1/software/gptq/index.json @@ -0,0 +1,21 @@ +{ + "id": 4027, + "slug": "gptq", + "name": "GPTQ", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Apache Software License 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117315350" + ], + "created_at": "2026-07-10T10:12:41.134944", + "updated_at": "2026-07-10T10:12:41.134944", + "url": "/v1/software/gptq" +} diff --git a/site/public/v1/software/gptzero/index.json b/site/public/v1/software/gptzero/index.json new file mode 100644 index 000000000000..7814bcdd70d3 --- /dev/null +++ b/site/public/v1/software/gptzero/index.json @@ -0,0 +1,21 @@ +{ + "id": 4028, + "slug": "gptzero", + "name": "GPTZero", + "release_date": "2023-01-03", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Python" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122791560" + ], + "created_at": "2026-07-10T10:12:41.135868", + "updated_at": "2026-07-10T10:12:41.135868", + "url": "/v1/software/gptzero" +} diff --git a/site/public/v1/software/gpudb/index.json b/site/public/v1/software/gpudb/index.json new file mode 100644 index 000000000000..e92a99d72ef4 --- /dev/null +++ b/site/public/v1/software/gpudb/index.json @@ -0,0 +1,19 @@ +{ + "id": 4029, + "slug": "gpudb", + "name": "GPUdb", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q19866917" + ], + "created_at": "2026-07-10T10:12:41.135868", + "updated_at": "2026-07-10T10:12:41.135868", + "url": "/v1/software/gpudb" +} diff --git a/site/public/v1/software/gpulib/index.json b/site/public/v1/software/gpulib/index.json new file mode 100644 index 000000000000..7be94eb430b4 --- /dev/null +++ b/site/public/v1/software/gpulib/index.json @@ -0,0 +1,19 @@ +{ + "id": 4030, + "slug": "gpulib", + "name": "GPULib", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17018579" + ], + "created_at": "2026-07-10T10:12:41.135868", + "updated_at": "2026-07-10T10:12:41.135868", + "url": "/v1/software/gpulib" +} diff --git a/site/public/v1/software/gpuopen/index.json b/site/public/v1/software/gpuopen/index.json new file mode 100644 index 000000000000..b67570ff5637 --- /dev/null +++ b/site/public/v1/software/gpuopen/index.json @@ -0,0 +1,27 @@ +{ + "id": 4031, + "slug": "gpuopen", + "name": "GPUOpen", + "release_date": null, + "developers": [ + "AMD" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [ + "OpenGL Shading Language" + ], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q21729745" + ], + "created_at": "2026-07-10T10:12:41.135868", + "updated_at": "2026-07-10T10:12:41.135868", + "url": "/v1/software/gpuopen" +} diff --git a/site/public/v1/software/gpxe/index.json b/site/public/v1/software/gpxe/index.json new file mode 100644 index 000000000000..58bf106a001a --- /dev/null +++ b/site/public/v1/software/gpxe/index.json @@ -0,0 +1,19 @@ +{ + "id": 4032, + "slug": "gpxe", + "name": "gPXE", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5514360" + ], + "created_at": "2026-07-10T10:12:41.136868", + "updated_at": "2026-07-10T10:12:41.136868", + "url": "/v1/software/gpxe" +} diff --git a/site/public/v1/software/gpxplore/index.json b/site/public/v1/software/gpxplore/index.json new file mode 100644 index 000000000000..0ab1e9eb386a --- /dev/null +++ b/site/public/v1/software/gpxplore/index.json @@ -0,0 +1,19 @@ +{ + "id": 4033, + "slug": "gpxplore", + "name": "GPXplore", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138499491" + ], + "created_at": "2026-07-10T10:12:41.136868", + "updated_at": "2026-07-10T10:12:41.136868", + "url": "/v1/software/gpxplore" +} diff --git a/site/public/v1/software/gpyutils/index.json b/site/public/v1/software/gpyutils/index.json new file mode 100644 index 000000000000..9e82b4494ac9 --- /dev/null +++ b/site/public/v1/software/gpyutils/index.json @@ -0,0 +1,19 @@ +{ + "id": 4034, + "slug": "gpyutils", + "name": "gpyutils", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974889" + ], + "created_at": "2026-07-10T10:12:41.136868", + "updated_at": "2026-07-10T10:12:41.137944", + "url": "/v1/software/gpyutils" +} diff --git a/site/public/v1/software/gqrx/index.json b/site/public/v1/software/gqrx/index.json new file mode 100644 index 000000000000..a990ceae433b --- /dev/null +++ b/site/public/v1/software/gqrx/index.json @@ -0,0 +1,23 @@ +{ + "id": 4035, + "slug": "gqrx", + "name": "gqrx", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "macOS" + ], + "programming_languages": [], + "licenses": [ + "GNU General Public License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974890" + ], + "created_at": "2026-07-10T10:12:41.137944", + "updated_at": "2026-07-10T10:12:41.137944", + "url": "/v1/software/gqrx" +} diff --git a/site/public/v1/software/gr-air-modes/index.json b/site/public/v1/software/gr-air-modes/index.json new file mode 100644 index 000000000000..019fd9124be0 --- /dev/null +++ b/site/public/v1/software/gr-air-modes/index.json @@ -0,0 +1,19 @@ +{ + "id": 4036, + "slug": "gr-air-modes", + "name": "gr-air-modes", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974892" + ], + "created_at": "2026-07-10T10:12:41.137944", + "updated_at": "2026-07-10T10:12:41.137944", + "url": "/v1/software/gr-air-modes" +} diff --git a/site/public/v1/software/gr-baz/index.json b/site/public/v1/software/gr-baz/index.json new file mode 100644 index 000000000000..3183f128b9de --- /dev/null +++ b/site/public/v1/software/gr-baz/index.json @@ -0,0 +1,19 @@ +{ + "id": 4037, + "slug": "gr-baz", + "name": "gr-baz", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974893" + ], + "created_at": "2026-07-10T10:12:41.137944", + "updated_at": "2026-07-10T10:12:41.137944", + "url": "/v1/software/gr-baz" +} diff --git a/site/public/v1/software/gr-foo/index.json b/site/public/v1/software/gr-foo/index.json new file mode 100644 index 000000000000..c73f6ff810ef --- /dev/null +++ b/site/public/v1/software/gr-foo/index.json @@ -0,0 +1,19 @@ +{ + "id": 4038, + "slug": "gr-foo", + "name": "gr-foo", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974895" + ], + "created_at": "2026-07-10T10:12:41.138950", + "updated_at": "2026-07-10T10:12:41.138950", + "url": "/v1/software/gr-foo" +} diff --git a/site/public/v1/software/gr-fosphor/index.json b/site/public/v1/software/gr-fosphor/index.json new file mode 100644 index 000000000000..1b42770662b4 --- /dev/null +++ b/site/public/v1/software/gr-fosphor/index.json @@ -0,0 +1,19 @@ +{ + "id": 4039, + "slug": "gr-fosphor", + "name": "gr-fosphor", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974896" + ], + "created_at": "2026-07-10T10:12:41.138950", + "updated_at": "2026-07-10T10:12:41.138950", + "url": "/v1/software/gr-fosphor" +} diff --git a/site/public/v1/software/gr-ieee802154/index.json b/site/public/v1/software/gr-ieee802154/index.json new file mode 100644 index 000000000000..2f64435f5466 --- /dev/null +++ b/site/public/v1/software/gr-ieee802154/index.json @@ -0,0 +1,19 @@ +{ + "id": 4040, + "slug": "gr-ieee802154", + "name": "gr-ieee802154", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974897" + ], + "created_at": "2026-07-10T10:12:41.138950", + "updated_at": "2026-07-10T10:12:41.138950", + "url": "/v1/software/gr-ieee802154" +} diff --git a/site/public/v1/software/gr-iqbal/index.json b/site/public/v1/software/gr-iqbal/index.json new file mode 100644 index 000000000000..c077192a4868 --- /dev/null +++ b/site/public/v1/software/gr-iqbal/index.json @@ -0,0 +1,19 @@ +{ + "id": 4041, + "slug": "gr-iqbal", + "name": "gr-iqbal", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974898" + ], + "created_at": "2026-07-10T10:12:41.140007", + "updated_at": "2026-07-10T10:12:41.140007", + "url": "/v1/software/gr-iqbal" +} diff --git a/site/public/v1/software/gr-osmosdr/index.json b/site/public/v1/software/gr-osmosdr/index.json new file mode 100644 index 000000000000..c07282ff04f1 --- /dev/null +++ b/site/public/v1/software/gr-osmosdr/index.json @@ -0,0 +1,19 @@ +{ + "id": 4042, + "slug": "gr-osmosdr", + "name": "gr-osmosdr", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974903" + ], + "created_at": "2026-07-10T10:12:41.140007", + "updated_at": "2026-07-10T10:12:41.140007", + "url": "/v1/software/gr-osmosdr" +} diff --git a/site/public/v1/software/gr-rds/index.json b/site/public/v1/software/gr-rds/index.json new file mode 100644 index 000000000000..93e990625746 --- /dev/null +++ b/site/public/v1/software/gr-rds/index.json @@ -0,0 +1,19 @@ +{ + "id": 4043, + "slug": "gr-rds", + "name": "gr-rds", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974905" + ], + "created_at": "2026-07-10T10:12:41.140872", + "updated_at": "2026-07-10T10:12:41.140872", + "url": "/v1/software/gr-rds" +} diff --git a/site/public/v1/software/gr-rftap/index.json b/site/public/v1/software/gr-rftap/index.json new file mode 100644 index 000000000000..d6bbc9be0e04 --- /dev/null +++ b/site/public/v1/software/gr-rftap/index.json @@ -0,0 +1,19 @@ +{ + "id": 4044, + "slug": "gr-rftap", + "name": "gr-rftap", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974906" + ], + "created_at": "2026-07-10T10:12:41.140872", + "updated_at": "2026-07-10T10:12:41.140872", + "url": "/v1/software/gr-rftap" +} diff --git a/site/public/v1/software/graalvm/index.json b/site/public/v1/software/graalvm/index.json new file mode 100644 index 000000000000..c2bafb86dae7 --- /dev/null +++ b/site/public/v1/software/graalvm/index.json @@ -0,0 +1,29 @@ +{ + "id": 4045, + "slug": "graalvm", + "name": "GraalVM", + "release_date": null, + "developers": [ + "Oracle Corporation" + ], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [ + "Java" + ], + "licenses": [ + "GPL linking exception", + "GNU General Public License, version 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16928072" + ], + "created_at": "2026-07-10T10:12:41.140872", + "updated_at": "2026-07-10T10:12:41.140872", + "url": "/v1/software/graalvm" +} diff --git a/site/public/v1/software/grab/index.json b/site/public/v1/software/grab/index.json new file mode 100644 index 000000000000..9e8db49529ad --- /dev/null +++ b/site/public/v1/software/grab/index.json @@ -0,0 +1,23 @@ +{ + "id": 4046, + "slug": "grab", + "name": "Grab", + "release_date": null, + "developers": [ + "Apple Inc." + ], + "publishers": [], + "operating_systems": [ + "macOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2249548" + ], + "created_at": "2026-07-10T10:12:41.140872", + "updated_at": "2026-07-10T10:12:41.140872", + "url": "/v1/software/grab" +} diff --git a/site/public/v1/software/grabble/index.json b/site/public/v1/software/grabble/index.json new file mode 100644 index 000000000000..79494166ff67 --- /dev/null +++ b/site/public/v1/software/grabble/index.json @@ -0,0 +1,21 @@ +{ + "id": 4047, + "slug": "grabble", + "name": "Grabble", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "iOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28447117" + ], + "created_at": "2026-07-10T10:12:41.141871", + "updated_at": "2026-07-10T10:12:41.141871", + "url": "/v1/software/grabble" +} diff --git a/site/public/v1/software/grabcartoons/index.json b/site/public/v1/software/grabcartoons/index.json new file mode 100644 index 000000000000..741b46d83b38 --- /dev/null +++ b/site/public/v1/software/grabcartoons/index.json @@ -0,0 +1,19 @@ +{ + "id": 4048, + "slug": "grabcartoons", + "name": "grabcartoons", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974891" + ], + "created_at": "2026-07-10T10:12:41.141871", + "updated_at": "2026-07-10T10:12:41.141871", + "url": "/v1/software/grabcartoons" +} diff --git a/site/public/v1/software/grabilla/index.json b/site/public/v1/software/grabilla/index.json new file mode 100644 index 000000000000..0db55fb6cd37 --- /dev/null +++ b/site/public/v1/software/grabilla/index.json @@ -0,0 +1,21 @@ +{ + "id": 4049, + "slug": "grabilla", + "name": "Grabilla", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [ + "screencasting software" + ], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18150997" + ], + "created_at": "2026-07-10T10:12:41.141871", + "updated_at": "2026-07-10T10:12:41.141871", + "url": "/v1/software/grabilla" +} diff --git a/site/public/v1/software/grabit/index.json b/site/public/v1/software/grabit/index.json new file mode 100644 index 000000000000..56b4583980c6 --- /dev/null +++ b/site/public/v1/software/grabit/index.json @@ -0,0 +1,19 @@ +{ + "id": 4050, + "slug": "grabit", + "name": "GrabIt", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3112923" + ], + "created_at": "2026-07-10T10:12:41.142871", + "updated_at": "2026-07-10T10:12:41.142871", + "url": "/v1/software/grabit" +} diff --git a/site/public/v1/software/gradio/index.json b/site/public/v1/software/gradio/index.json new file mode 100644 index 000000000000..d1fe8adbf1fc --- /dev/null +++ b/site/public/v1/software/gradio/index.json @@ -0,0 +1,25 @@ +{ + "id": 4051, + "slug": "gradio", + "name": "gradio", + "release_date": null, + "developers": [ + "Abubakar Abid" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Python" + ], + "licenses": [ + "Apache Software License 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117829662" + ], + "created_at": "2026-07-10T10:12:41.142871", + "updated_at": "2026-07-10T10:12:41.142871", + "url": "/v1/software/gradio" +} diff --git a/site/public/v1/software/gradle-app-engine-plugin/index.json b/site/public/v1/software/gradle-app-engine-plugin/index.json new file mode 100644 index 000000000000..35e94c7ec3d7 --- /dev/null +++ b/site/public/v1/software/gradle-app-engine-plugin/index.json @@ -0,0 +1,21 @@ +{ + "id": 4052, + "slug": "gradle-app-engine-plugin", + "name": "Gradle App Engine Plugin", + "release_date": null, + "developers": [ + "Google" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60062036" + ], + "created_at": "2026-07-10T10:12:41.142871", + "updated_at": "2026-07-10T10:12:41.142871", + "url": "/v1/software/gradle-app-engine-plugin" +} diff --git a/site/public/v1/software/graduate-talent-pool/index.json b/site/public/v1/software/graduate-talent-pool/index.json new file mode 100644 index 000000000000..851c7e3a4426 --- /dev/null +++ b/site/public/v1/software/graduate-talent-pool/index.json @@ -0,0 +1,19 @@ +{ + "id": 4053, + "slug": "graduate-talent-pool", + "name": "Graduate Talent Pool", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q55612882" + ], + "created_at": "2026-07-10T10:12:41.143871", + "updated_at": "2026-07-10T10:12:41.143871", + "url": "/v1/software/graduate-talent-pool" +} diff --git a/site/public/v1/software/graffiti/index.json b/site/public/v1/software/graffiti/index.json new file mode 100644 index 000000000000..cb48b823a423 --- /dev/null +++ b/site/public/v1/software/graffiti/index.json @@ -0,0 +1,21 @@ +{ + "id": 4054, + "slug": "graffiti", + "name": "Graffiti", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Palm OS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1541559" + ], + "created_at": "2026-07-10T10:12:41.143871", + "updated_at": "2026-07-10T10:12:41.143871", + "url": "/v1/software/graffiti" +} diff --git a/site/public/v1/software/grafoo/index.json b/site/public/v1/software/grafoo/index.json new file mode 100644 index 000000000000..4d5b617e622a --- /dev/null +++ b/site/public/v1/software/grafoo/index.json @@ -0,0 +1,21 @@ +{ + "id": 4055, + "slug": "grafoo", + "name": "Grafoo", + "release_date": null, + "developers": [ + "Silvio Peroni" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q38080146" + ], + "created_at": "2026-07-10T10:12:41.143871", + "updated_at": "2026-07-10T10:12:41.143871", + "url": "/v1/software/grafoo" +} diff --git a/site/public/v1/software/grafstat/index.json b/site/public/v1/software/grafstat/index.json new file mode 100644 index 000000000000..565443098d24 --- /dev/null +++ b/site/public/v1/software/grafstat/index.json @@ -0,0 +1,23 @@ +{ + "id": 4056, + "slug": "grafstat", + "name": "Grafstat", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1541860" + ], + "created_at": "2026-07-10T10:12:41.143871", + "updated_at": "2026-07-10T10:12:41.143871", + "url": "/v1/software/grafstat" +} diff --git a/site/public/v1/software/grafting-trees/index.json b/site/public/v1/software/grafting-trees/index.json new file mode 100644 index 000000000000..7605b78c0a71 --- /dev/null +++ b/site/public/v1/software/grafting-trees/index.json @@ -0,0 +1,24 @@ +{ + "id": 4057, + "slug": "grafting-trees", + "name": "Grafting trees", + "release_date": "2019-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Python" + ], + "licenses": [], + "genres": [ + "generative art", + "Combinatory literature" + ], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131293444" + ], + "created_at": "2026-07-10T10:12:41.143871", + "updated_at": "2026-07-10T10:12:41.143871", + "url": "/v1/software/grafting-trees" +} diff --git a/site/public/v1/software/grakn-ai/index.json b/site/public/v1/software/grakn-ai/index.json new file mode 100644 index 000000000000..7489a91b4d65 --- /dev/null +++ b/site/public/v1/software/grakn-ai/index.json @@ -0,0 +1,21 @@ +{ + "id": 4058, + "slug": "grakn-ai", + "name": "GRAKN.AI", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Java" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q42266763" + ], + "created_at": "2026-07-10T10:12:41.144965", + "updated_at": "2026-07-10T10:12:41.144965", + "url": "/v1/software/grakn-ai" +} diff --git a/site/public/v1/software/gramtrans/index.json b/site/public/v1/software/gramtrans/index.json new file mode 100644 index 000000000000..935ef6a82145 --- /dev/null +++ b/site/public/v1/software/gramtrans/index.json @@ -0,0 +1,19 @@ +{ + "id": 4059, + "slug": "gramtrans", + "name": "GramTrans", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17644405" + ], + "created_at": "2026-07-10T10:12:41.144965", + "updated_at": "2026-07-10T10:12:41.144965", + "url": "/v1/software/gramtrans" +} diff --git a/site/public/v1/software/grand-central-dispatch/index.json b/site/public/v1/software/grand-central-dispatch/index.json new file mode 100644 index 000000000000..70360864475b --- /dev/null +++ b/site/public/v1/software/grand-central-dispatch/index.json @@ -0,0 +1,23 @@ +{ + "id": 4060, + "slug": "grand-central-dispatch", + "name": "Grand Central Dispatch", + "release_date": null, + "developers": [ + "Apple Inc." + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Apache License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1542558" + ], + "created_at": "2026-07-10T10:12:41.145926", + "updated_at": "2026-07-10T10:12:41.145926", + "url": "/v1/software/grand-central-dispatch" +} diff --git a/site/public/v1/software/grandorgue/index.json b/site/public/v1/software/grandorgue/index.json new file mode 100644 index 000000000000..06cfa66990d6 --- /dev/null +++ b/site/public/v1/software/grandorgue/index.json @@ -0,0 +1,21 @@ +{ + "id": 4061, + "slug": "grandorgue", + "name": "GrandOrgue", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "GNU General Public License, version 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q27926666" + ], + "created_at": "2026-07-10T10:12:41.145926", + "updated_at": "2026-07-10T10:12:41.145926", + "url": "/v1/software/grandorgue" +} diff --git a/site/public/v1/software/grandperspective/index.json b/site/public/v1/software/grandperspective/index.json new file mode 100644 index 000000000000..09c0e7844618 --- /dev/null +++ b/site/public/v1/software/grandperspective/index.json @@ -0,0 +1,19 @@ +{ + "id": 4062, + "slug": "grandperspective", + "name": "GrandPerspective", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5594209" + ], + "created_at": "2026-07-10T10:12:41.145926", + "updated_at": "2026-07-10T10:12:41.145926", + "url": "/v1/software/grandperspective" +} diff --git a/site/public/v1/software/grani/index.json b/site/public/v1/software/grani/index.json new file mode 100644 index 000000000000..7c464a4b5321 --- /dev/null +++ b/site/public/v1/software/grani/index.json @@ -0,0 +1,21 @@ +{ + "id": 4063, + "slug": "grani", + "name": "Grani", + "release_date": null, + "developers": [ + "Fenrir Inc." + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11221863" + ], + "created_at": "2026-07-10T10:12:41.145926", + "updated_at": "2026-07-10T10:12:41.145926", + "url": "/v1/software/grani" +} diff --git a/site/public/v1/software/granola/index.json b/site/public/v1/software/granola/index.json new file mode 100644 index 000000000000..e707b45d9314 --- /dev/null +++ b/site/public/v1/software/granola/index.json @@ -0,0 +1,21 @@ +{ + "id": 4064, + "slug": "granola", + "name": "Granola", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Python" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3775749" + ], + "created_at": "2026-07-10T10:12:41.146930", + "updated_at": "2026-07-10T10:12:41.146930", + "url": "/v1/software/granola" +} diff --git a/site/public/v1/software/grape/index.json b/site/public/v1/software/grape/index.json new file mode 100644 index 000000000000..b8f40348d0c4 --- /dev/null +++ b/site/public/v1/software/grape/index.json @@ -0,0 +1,22 @@ +{ + "id": 4065, + "slug": "grape", + "name": "GRAPE", + "release_date": null, + "developers": [ + "University of Bonn", + "University of Freiburg" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2121523" + ], + "created_at": "2026-07-10T10:12:41.146930", + "updated_at": "2026-07-10T10:12:41.146930", + "url": "/v1/software/grape" +} diff --git a/site/public/v1/software/grapes/index.json b/site/public/v1/software/grapes/index.json new file mode 100644 index 000000000000..2bc1a6a87645 --- /dev/null +++ b/site/public/v1/software/grapes/index.json @@ -0,0 +1,19 @@ +{ + "id": 4066, + "slug": "grapes", + "name": "GRAPES", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11201799" + ], + "created_at": "2026-07-10T10:12:41.146930", + "updated_at": "2026-07-10T10:12:41.146930", + "url": "/v1/software/grapes" +} diff --git a/site/public/v1/software/graph/index.json b/site/public/v1/software/graph/index.json new file mode 100644 index 000000000000..0bf13123e767 --- /dev/null +++ b/site/public/v1/software/graph/index.json @@ -0,0 +1,19 @@ +{ + "id": 4067, + "slug": "graph", + "name": "Graph", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10291386" + ], + "created_at": "2026-07-10T10:12:41.147960", + "updated_at": "2026-07-10T10:12:41.147960", + "url": "/v1/software/graph" +} diff --git a/site/public/v1/software/grapher/index.json b/site/public/v1/software/grapher/index.json new file mode 100644 index 000000000000..35c9e023f9e2 --- /dev/null +++ b/site/public/v1/software/grapher/index.json @@ -0,0 +1,21 @@ +{ + "id": 4068, + "slug": "grapher", + "name": "Grapher", + "release_date": null, + "developers": [ + "Apple Inc." + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1371756" + ], + "created_at": "2026-07-10T10:12:41.147960", + "updated_at": "2026-07-10T10:12:41.147960", + "url": "/v1/software/grapher" +} diff --git a/site/public/v1/software/graphic-workshop/index.json b/site/public/v1/software/graphic-workshop/index.json new file mode 100644 index 000000000000..5e878cbcd69e --- /dev/null +++ b/site/public/v1/software/graphic-workshop/index.json @@ -0,0 +1,19 @@ +{ + "id": 4069, + "slug": "graphic-workshop", + "name": "Graphic Workshop", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63416112" + ], + "created_at": "2026-07-10T10:12:41.147960", + "updated_at": "2026-07-10T10:12:41.147960", + "url": "/v1/software/graphic-workshop" +} diff --git a/site/public/v1/software/graphical-editing-framework/index.json b/site/public/v1/software/graphical-editing-framework/index.json new file mode 100644 index 000000000000..cd904320c78c --- /dev/null +++ b/site/public/v1/software/graphical-editing-framework/index.json @@ -0,0 +1,23 @@ +{ + "id": 4070, + "slug": "graphical-editing-framework", + "name": "Graphical Editing Framework", + "release_date": null, + "developers": [ + "Eclipse Foundation" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Java" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4039668" + ], + "created_at": "2026-07-10T10:12:41.148956", + "updated_at": "2026-07-10T10:12:41.148956", + "url": "/v1/software/graphical-editing-framework" +} diff --git a/site/public/v1/software/graphics-animation-system-for-professionals/index.json b/site/public/v1/software/graphics-animation-system-for-professionals/index.json new file mode 100644 index 000000000000..37e6d8f0afda --- /dev/null +++ b/site/public/v1/software/graphics-animation-system-for-professionals/index.json @@ -0,0 +1,21 @@ +{ + "id": 4071, + "slug": "graphics-animation-system-for-professionals", + "name": "Graphics Animation System for Professionals", + "release_date": null, + "developers": [ + "John Bridges" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4039189" + ], + "created_at": "2026-07-10T10:12:41.148956", + "updated_at": "2026-07-10T10:12:41.148956", + "url": "/v1/software/graphics-animation-system-for-professionals" +} diff --git a/site/public/v1/software/graphics-device-interface/index.json b/site/public/v1/software/graphics-device-interface/index.json new file mode 100644 index 000000000000..c99cea9363bc --- /dev/null +++ b/site/public/v1/software/graphics-device-interface/index.json @@ -0,0 +1,19 @@ +{ + "id": 4072, + "slug": "graphics-device-interface", + "name": "Graphics Device Interface", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1046656" + ], + "created_at": "2026-07-10T10:12:41.148956", + "updated_at": "2026-07-10T10:12:41.148956", + "url": "/v1/software/graphics-device-interface" +} diff --git a/site/public/v1/software/graphing-twitter-data/index.json b/site/public/v1/software/graphing-twitter-data/index.json new file mode 100644 index 000000000000..9f06f5cf0763 --- /dev/null +++ b/site/public/v1/software/graphing-twitter-data/index.json @@ -0,0 +1,19 @@ +{ + "id": 4073, + "slug": "graphing-twitter-data", + "name": "Graphing Twitter Data", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085002" + ], + "created_at": "2026-07-10T10:12:41.149961", + "updated_at": "2026-07-10T10:12:41.149961", + "url": "/v1/software/graphing-twitter-data" +} diff --git a/site/public/v1/software/graphisoft-bim-server/index.json b/site/public/v1/software/graphisoft-bim-server/index.json new file mode 100644 index 000000000000..61f47b4e476f --- /dev/null +++ b/site/public/v1/software/graphisoft-bim-server/index.json @@ -0,0 +1,25 @@ +{ + "id": 4074, + "slug": "graphisoft-bim-server", + "name": "Graphisoft BIM Server", + "release_date": "2009-01-01", + "developers": [ + "Graphisoft SE" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5597217" + ], + "created_at": "2026-07-10T10:12:41.149961", + "updated_at": "2026-07-10T10:12:41.149961", + "url": "/v1/software/graphisoft-bim-server" +} diff --git a/site/public/v1/software/graphisoft-ecodesigner/index.json b/site/public/v1/software/graphisoft-ecodesigner/index.json new file mode 100644 index 000000000000..e34bbe9ca227 --- /dev/null +++ b/site/public/v1/software/graphisoft-ecodesigner/index.json @@ -0,0 +1,21 @@ +{ + "id": 4075, + "slug": "graphisoft-ecodesigner", + "name": "Graphisoft EcoDesigner", + "release_date": null, + "developers": [ + "Graphisoft SE" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q129660" + ], + "created_at": "2026-07-10T10:12:41.149961", + "updated_at": "2026-07-10T10:12:41.149961", + "url": "/v1/software/graphisoft-ecodesigner" +} diff --git a/site/public/v1/software/graphisoft-mep-modeler/index.json b/site/public/v1/software/graphisoft-mep-modeler/index.json new file mode 100644 index 000000000000..c8a41605f807 --- /dev/null +++ b/site/public/v1/software/graphisoft-mep-modeler/index.json @@ -0,0 +1,23 @@ +{ + "id": 4076, + "slug": "graphisoft-mep-modeler", + "name": "Graphisoft MEP Modeler", + "release_date": null, + "developers": [ + "Graphisoft SE" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q129664" + ], + "created_at": "2026-07-10T10:12:41.149961", + "updated_at": "2026-07-10T10:12:41.149961", + "url": "/v1/software/graphisoft-mep-modeler" +} diff --git a/site/public/v1/software/graphlab/index.json b/site/public/v1/software/graphlab/index.json new file mode 100644 index 000000000000..0ab9e1c87d43 --- /dev/null +++ b/site/public/v1/software/graphlab/index.json @@ -0,0 +1,21 @@ +{ + "id": 4077, + "slug": "graphlab", + "name": "GraphLab", + "release_date": null, + "developers": [ + "Carnegie Mellon University" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5597063" + ], + "created_at": "2026-07-10T10:12:41.150975", + "updated_at": "2026-07-10T10:12:41.150975", + "url": "/v1/software/graphlab" +} diff --git a/site/public/v1/software/graphmatica/index.json b/site/public/v1/software/graphmatica/index.json new file mode 100644 index 000000000000..c73df9f5b644 --- /dev/null +++ b/site/public/v1/software/graphmatica/index.json @@ -0,0 +1,23 @@ +{ + "id": 4078, + "slug": "graphmatica", + "name": "Graphmatica", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "iOS", + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5597317" + ], + "created_at": "2026-07-10T10:12:41.150975", + "updated_at": "2026-07-10T10:12:41.150975", + "url": "/v1/software/graphmatica" +} diff --git a/site/public/v1/software/graphpad-instat/index.json b/site/public/v1/software/graphpad-instat/index.json new file mode 100644 index 000000000000..7f542d2524a7 --- /dev/null +++ b/site/public/v1/software/graphpad-instat/index.json @@ -0,0 +1,24 @@ +{ + "id": 4079, + "slug": "graphpad-instat", + "name": "GraphPad InStat", + "release_date": null, + "developers": [ + "GraphPad Software" + ], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5597064" + ], + "created_at": "2026-07-10T10:12:41.150975", + "updated_at": "2026-07-10T10:12:41.150975", + "url": "/v1/software/graphpad-instat" +} diff --git a/site/public/v1/software/graphpad-prism/index.json b/site/public/v1/software/graphpad-prism/index.json new file mode 100644 index 000000000000..53602ab9a2b1 --- /dev/null +++ b/site/public/v1/software/graphpad-prism/index.json @@ -0,0 +1,24 @@ +{ + "id": 4080, + "slug": "graphpad-prism", + "name": "GraphPad Prism", + "release_date": null, + "developers": [ + "GraphPad Software" + ], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1355082" + ], + "created_at": "2026-07-10T10:12:41.150975", + "updated_at": "2026-07-10T10:12:41.150975", + "url": "/v1/software/graphpad-prism" +} diff --git a/site/public/v1/software/graphstudio/index.json b/site/public/v1/software/graphstudio/index.json new file mode 100644 index 000000000000..c94fd3351a32 --- /dev/null +++ b/site/public/v1/software/graphstudio/index.json @@ -0,0 +1,19 @@ +{ + "id": 4081, + "slug": "graphstudio", + "name": "GraphStudio", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q979680" + ], + "created_at": "2026-07-10T10:12:41.151938", + "updated_at": "2026-07-10T10:12:41.151938", + "url": "/v1/software/graphstudio" +} diff --git a/site/public/v1/software/grasp/index.json b/site/public/v1/software/grasp/index.json new file mode 100644 index 000000000000..0251ba2b58e5 --- /dev/null +++ b/site/public/v1/software/grasp/index.json @@ -0,0 +1,19 @@ +{ + "id": 4082, + "slug": "grasp", + "name": "Grasp", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5597407" + ], + "created_at": "2026-07-10T10:12:41.151938", + "updated_at": "2026-07-10T10:12:41.151938", + "url": "/v1/software/grasp" +} diff --git a/site/public/v1/software/grasshopper-3d/index.json b/site/public/v1/software/grasshopper-3d/index.json new file mode 100644 index 000000000000..347122a21a8b --- /dev/null +++ b/site/public/v1/software/grasshopper-3d/index.json @@ -0,0 +1,19 @@ +{ + "id": 4083, + "slug": "grasshopper-3d", + "name": "Grasshopper 3d", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5597529" + ], + "created_at": "2026-07-10T10:12:41.151938", + "updated_at": "2026-07-10T10:12:41.151938", + "url": "/v1/software/grasshopper-3d" +} diff --git a/site/public/v1/software/grasshopper-q114414318/index.json b/site/public/v1/software/grasshopper-q114414318/index.json new file mode 100644 index 000000000000..67afd2c6c471 --- /dev/null +++ b/site/public/v1/software/grasshopper-q114414318/index.json @@ -0,0 +1,21 @@ +{ + "id": 4084, + "slug": "grasshopper-q114414318", + "name": "Grasshopper", + "release_date": "2017-06-20", + "developers": [ + "Google" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q114414318" + ], + "created_at": "2026-07-10T10:12:41.152940", + "updated_at": "2026-07-10T10:12:41.152940", + "url": "/v1/software/grasshopper-q114414318" +} diff --git a/site/public/v1/software/grasshopper/index.json b/site/public/v1/software/grasshopper/index.json new file mode 100644 index 000000000000..183921b6f889 --- /dev/null +++ b/site/public/v1/software/grasshopper/index.json @@ -0,0 +1,23 @@ +{ + "id": 4085, + "slug": "grasshopper", + "name": "Grasshopper", + "release_date": null, + "developers": [ + "harmon.ie" + ], + "publishers": [], + "operating_systems": [ + "cross-platform" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5597532" + ], + "created_at": "2026-07-10T10:12:41.152940", + "updated_at": "2026-07-10T10:12:41.152940", + "url": "/v1/software/grasshopper" +} diff --git a/site/public/v1/software/grateful-med/index.json b/site/public/v1/software/grateful-med/index.json new file mode 100644 index 000000000000..cbb76dcb0148 --- /dev/null +++ b/site/public/v1/software/grateful-med/index.json @@ -0,0 +1,19 @@ +{ + "id": 4086, + "slug": "grateful-med", + "name": "Grateful Med", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q70323060" + ], + "created_at": "2026-07-10T10:12:41.152940", + "updated_at": "2026-07-10T10:12:41.152940", + "url": "/v1/software/grateful-med" +} diff --git a/site/public/v1/software/gravit-designer/index.json b/site/public/v1/software/gravit-designer/index.json new file mode 100644 index 000000000000..3bdb25bc6ac1 --- /dev/null +++ b/site/public/v1/software/gravit-designer/index.json @@ -0,0 +1,19 @@ +{ + "id": 4087, + "slug": "gravit-designer", + "name": "Gravit Designer", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q56354069" + ], + "created_at": "2026-07-10T10:12:41.153944", + "updated_at": "2026-07-10T10:12:41.153944", + "url": "/v1/software/gravit-designer" +} diff --git a/site/public/v1/software/grc-cockpit/index.json b/site/public/v1/software/grc-cockpit/index.json new file mode 100644 index 000000000000..18f4e4cd86fd --- /dev/null +++ b/site/public/v1/software/grc-cockpit/index.json @@ -0,0 +1,21 @@ +{ + "id": 4088, + "slug": "grc-cockpit", + "name": "GRC-COCKPIT", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [ + "Governance, Risk and Compliance software" + ], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138642684" + ], + "created_at": "2026-07-10T10:12:41.153944", + "updated_at": "2026-07-10T10:12:41.153944", + "url": "/v1/software/grc-cockpit" +} diff --git a/site/public/v1/software/grc-envelop/index.json b/site/public/v1/software/grc-envelop/index.json new file mode 100644 index 000000000000..d87eed319257 --- /dev/null +++ b/site/public/v1/software/grc-envelop/index.json @@ -0,0 +1,23 @@ +{ + "id": 4089, + "slug": "grc-envelop", + "name": "GRC Envelop", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Python" + ], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q30156339" + ], + "created_at": "2026-07-10T10:12:41.153944", + "updated_at": "2026-07-10T10:12:41.153944", + "url": "/v1/software/grc-envelop" +} diff --git a/site/public/v1/software/grc/index.json b/site/public/v1/software/grc/index.json new file mode 100644 index 000000000000..3db7990c98bb --- /dev/null +++ b/site/public/v1/software/grc/index.json @@ -0,0 +1,19 @@ +{ + "id": 4090, + "slug": "grc", + "name": "grc", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60917095" + ], + "created_at": "2026-07-10T10:12:41.154942", + "updated_at": "2026-07-10T10:12:41.154942", + "url": "/v1/software/grc" +} diff --git a/site/public/v1/software/greenfield/index.json b/site/public/v1/software/greenfield/index.json new file mode 100644 index 000000000000..793cf0d4574c --- /dev/null +++ b/site/public/v1/software/greenfield/index.json @@ -0,0 +1,19 @@ +{ + "id": 4091, + "slug": "greenfield", + "name": "Greenfield", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105580759" + ], + "created_at": "2026-07-10T10:12:41.155871", + "updated_at": "2026-07-10T10:12:41.155871", + "url": "/v1/software/greenfield" +} diff --git a/site/public/v1/software/greengnome/index.json b/site/public/v1/software/greengnome/index.json new file mode 100644 index 000000000000..c992090bb350 --- /dev/null +++ b/site/public/v1/software/greengnome/index.json @@ -0,0 +1,19 @@ +{ + "id": 4092, + "slug": "greengnome", + "name": "Greengnome", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5604066" + ], + "created_at": "2026-07-10T10:12:41.157871", + "updated_at": "2026-07-10T10:12:41.157871", + "url": "/v1/software/greengnome" +} diff --git a/site/public/v1/software/greenify/index.json b/site/public/v1/software/greenify/index.json new file mode 100644 index 000000000000..a07b606c17a3 --- /dev/null +++ b/site/public/v1/software/greenify/index.json @@ -0,0 +1,19 @@ +{ + "id": 4093, + "slug": "greenify", + "name": "Greenify", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q78994986" + ], + "created_at": "2026-07-10T10:12:41.158943", + "updated_at": "2026-07-10T10:12:41.158943", + "url": "/v1/software/greenify" +} diff --git a/site/public/v1/software/greenleaf-archivelib/index.json b/site/public/v1/software/greenleaf-archivelib/index.json new file mode 100644 index 000000000000..5304ae16c883 --- /dev/null +++ b/site/public/v1/software/greenleaf-archivelib/index.json @@ -0,0 +1,19 @@ +{ + "id": 4094, + "slug": "greenleaf-archivelib", + "name": "Greenleaf ArchiveLib", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28757931" + ], + "created_at": "2026-07-10T10:12:41.159930", + "updated_at": "2026-07-10T10:12:41.159930", + "url": "/v1/software/greenleaf-archivelib" +} diff --git a/site/public/v1/software/greenonion-ai/index.json b/site/public/v1/software/greenonion-ai/index.json new file mode 100644 index 000000000000..b13eba53cd05 --- /dev/null +++ b/site/public/v1/software/greenonion-ai/index.json @@ -0,0 +1,19 @@ +{ + "id": 4095, + "slug": "greenonion-ai", + "name": "GreenOnion AI", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139784570" + ], + "created_at": "2026-07-10T10:12:41.159930", + "updated_at": "2026-07-10T10:12:41.159930", + "url": "/v1/software/greenonion-ai" +} diff --git a/site/public/v1/software/greenworks/index.json b/site/public/v1/software/greenworks/index.json new file mode 100644 index 000000000000..d1a63281e4c2 --- /dev/null +++ b/site/public/v1/software/greenworks/index.json @@ -0,0 +1,19 @@ +{ + "id": 4096, + "slug": "greenworks", + "name": "Greenworks", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1544845" + ], + "created_at": "2026-07-10T10:12:41.160920", + "updated_at": "2026-07-10T10:12:41.160920", + "url": "/v1/software/greenworks" +} diff --git a/site/public/v1/software/greg/index.json b/site/public/v1/software/greg/index.json new file mode 100644 index 000000000000..f75dfb98cec9 --- /dev/null +++ b/site/public/v1/software/greg/index.json @@ -0,0 +1,19 @@ +{ + "id": 4097, + "slug": "greg", + "name": "Greg", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76182445" + ], + "created_at": "2026-07-10T10:12:41.160920", + "updated_at": "2026-07-10T10:12:41.160920", + "url": "/v1/software/greg" +} diff --git a/site/public/v1/software/grepcidr/index.json b/site/public/v1/software/grepcidr/index.json new file mode 100644 index 000000000000..76f00e12c3c3 --- /dev/null +++ b/site/public/v1/software/grepcidr/index.json @@ -0,0 +1,19 @@ +{ + "id": 4098, + "slug": "grepcidr", + "name": "grepcidr", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110474656" + ], + "created_at": "2026-07-10T10:12:41.161935", + "updated_at": "2026-07-10T10:12:41.161935", + "url": "/v1/software/grepcidr" +} diff --git a/site/public/v1/software/greybird/index.json b/site/public/v1/software/greybird/index.json new file mode 100644 index 000000000000..14dfaf712954 --- /dev/null +++ b/site/public/v1/software/greybird/index.json @@ -0,0 +1,19 @@ +{ + "id": 4099, + "slug": "greybird", + "name": "greybird", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974894" + ], + "created_at": "2026-07-10T10:12:41.162920", + "updated_at": "2026-07-10T10:12:41.162920", + "url": "/v1/software/greybird" +} diff --git a/site/public/v1/software/greynoise/index.json b/site/public/v1/software/greynoise/index.json new file mode 100644 index 000000000000..248b24a91cd2 --- /dev/null +++ b/site/public/v1/software/greynoise/index.json @@ -0,0 +1,21 @@ +{ + "id": 4100, + "slug": "greynoise", + "name": "GreyNoise", + "release_date": null, + "developers": [ + "GreyNoise Intelligence" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109598178" + ], + "created_at": "2026-07-10T10:12:41.162920", + "updated_at": "2026-07-10T10:12:41.162920", + "url": "/v1/software/greynoise" +} diff --git a/site/public/v1/software/grid-community-toolkit/index.json b/site/public/v1/software/grid-community-toolkit/index.json new file mode 100644 index 000000000000..0007d58b5ab5 --- /dev/null +++ b/site/public/v1/software/grid-community-toolkit/index.json @@ -0,0 +1,21 @@ +{ + "id": 4101, + "slug": "grid-community-toolkit", + "name": "Grid Community Toolkit", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Apache Software License 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116294146" + ], + "created_at": "2026-07-10T10:12:41.162920", + "updated_at": "2026-07-10T10:12:41.162920", + "url": "/v1/software/grid-community-toolkit" +} diff --git a/site/public/v1/software/grid-mp/index.json b/site/public/v1/software/grid-mp/index.json new file mode 100644 index 000000000000..5e960f1fd045 --- /dev/null +++ b/site/public/v1/software/grid-mp/index.json @@ -0,0 +1,21 @@ +{ + "id": 4102, + "slug": "grid-mp", + "name": "Grid MP", + "release_date": null, + "developers": [ + "Univa" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5608589" + ], + "created_at": "2026-07-10T10:12:41.162920", + "updated_at": "2026-07-10T10:12:41.162920", + "url": "/v1/software/grid-mp" +} diff --git a/site/public/v1/software/gridgain-systems/index.json b/site/public/v1/software/gridgain-systems/index.json new file mode 100644 index 000000000000..540d3a8b3c3a --- /dev/null +++ b/site/public/v1/software/gridgain-systems/index.json @@ -0,0 +1,21 @@ +{ + "id": 4103, + "slug": "gridgain-systems", + "name": "GridGain Systems", + "release_date": "2007-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Java" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22084391" + ], + "created_at": "2026-07-10T10:12:41.163915", + "updated_at": "2026-07-10T10:12:41.163915", + "url": "/v1/software/gridgain-systems" +} diff --git a/site/public/v1/software/gridinsoft-anti-malware/index.json b/site/public/v1/software/gridinsoft-anti-malware/index.json new file mode 100644 index 000000000000..84c9a131ba65 --- /dev/null +++ b/site/public/v1/software/gridinsoft-anti-malware/index.json @@ -0,0 +1,19 @@ +{ + "id": 4104, + "slug": "gridinsoft-anti-malware", + "name": "GridinSoft Anti-Malware", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q21682871" + ], + "created_at": "2026-07-10T10:12:41.163915", + "updated_at": "2026-07-10T10:12:41.163915", + "url": "/v1/software/gridinsoft-anti-malware" +} diff --git a/site/public/v1/software/gridmathematica/index.json b/site/public/v1/software/gridmathematica/index.json new file mode 100644 index 000000000000..cbf85d2d7ef5 --- /dev/null +++ b/site/public/v1/software/gridmathematica/index.json @@ -0,0 +1,21 @@ +{ + "id": 4105, + "slug": "gridmathematica", + "name": "gridMathematica", + "release_date": null, + "developers": [ + "Wolfram Research" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q307524" + ], + "created_at": "2026-07-10T10:12:41.163915", + "updated_at": "2026-07-10T10:12:41.163915", + "url": "/v1/software/gridmathematica" +} diff --git a/site/public/v1/software/gridrepublic/index.json b/site/public/v1/software/gridrepublic/index.json new file mode 100644 index 000000000000..b6d497650bdf --- /dev/null +++ b/site/public/v1/software/gridrepublic/index.json @@ -0,0 +1,19 @@ +{ + "id": 4106, + "slug": "gridrepublic", + "name": "GridRepublic", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5608578" + ], + "created_at": "2026-07-10T10:12:41.164964", + "updated_at": "2026-07-10T10:12:41.164964", + "url": "/v1/software/gridrepublic" +} diff --git a/site/public/v1/software/gridway/index.json b/site/public/v1/software/gridway/index.json new file mode 100644 index 000000000000..8d5fd1c0f668 --- /dev/null +++ b/site/public/v1/software/gridway/index.json @@ -0,0 +1,19 @@ +{ + "id": 4107, + "slug": "gridway", + "name": "GridWay", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5608581" + ], + "created_at": "2026-07-10T10:12:41.165970", + "updated_at": "2026-07-10T10:12:41.165970", + "url": "/v1/software/gridway" +} diff --git a/site/public/v1/software/grind/index.json b/site/public/v1/software/grind/index.json new file mode 100644 index 000000000000..901d0a15cb13 --- /dev/null +++ b/site/public/v1/software/grind/index.json @@ -0,0 +1,21 @@ +{ + "id": 4108, + "slug": "grind", + "name": "Grind", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [ + "first-person shooter" + ], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q133225782" + ], + "created_at": "2026-07-10T10:12:41.166951", + "updated_at": "2026-07-10T10:12:41.166951", + "url": "/v1/software/grind" +} diff --git a/site/public/v1/software/grindstone/index.json b/site/public/v1/software/grindstone/index.json new file mode 100644 index 000000000000..fefa656376f3 --- /dev/null +++ b/site/public/v1/software/grindstone/index.json @@ -0,0 +1,23 @@ +{ + "id": 4109, + "slug": "grindstone", + "name": "Grindstone", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5609469" + ], + "created_at": "2026-07-10T10:12:41.166951", + "updated_at": "2026-07-10T10:12:41.166951", + "url": "/v1/software/grindstone" +} diff --git a/site/public/v1/software/griot-system/index.json b/site/public/v1/software/griot-system/index.json new file mode 100644 index 000000000000..f7b72189cbfa --- /dev/null +++ b/site/public/v1/software/griot-system/index.json @@ -0,0 +1,22 @@ +{ + "id": 4110, + "slug": "griot-system", + "name": "Griot System", + "release_date": null, + "developers": [ + "D. Fox Harrell", + "Joseph Amadee Goguen" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125523936" + ], + "created_at": "2026-07-10T10:12:41.168020", + "updated_at": "2026-07-10T10:12:41.168020", + "url": "/v1/software/griot-system" +} diff --git a/site/public/v1/software/grip-os/index.json b/site/public/v1/software/grip-os/index.json new file mode 100644 index 000000000000..12e6bdccef39 --- /dev/null +++ b/site/public/v1/software/grip-os/index.json @@ -0,0 +1,21 @@ +{ + "id": 4111, + "slug": "grip-os", + "name": "GRIP OS", + "release_date": null, + "developers": [ + "Caugia" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138714123" + ], + "created_at": "2026-07-10T10:12:41.168020", + "updated_at": "2026-07-10T10:12:41.168020", + "url": "/v1/software/grip-os" +} diff --git a/site/public/v1/software/grl-semantic-ai-platform/index.json b/site/public/v1/software/grl-semantic-ai-platform/index.json new file mode 100644 index 000000000000..83d285b24db9 --- /dev/null +++ b/site/public/v1/software/grl-semantic-ai-platform/index.json @@ -0,0 +1,24 @@ +{ + "id": 4112, + "slug": "grl-semantic-ai-platform", + "name": "GRL Semantic AI Platform", + "release_date": null, + "developers": [ + "Graph Research Labs" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Java", + "TypeScript" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138783497" + ], + "created_at": "2026-07-10T10:12:41.168944", + "updated_at": "2026-07-10T10:12:41.168944", + "url": "/v1/software/grl-semantic-ai-platform" +} diff --git a/site/public/v1/software/grlevelx/index.json b/site/public/v1/software/grlevelx/index.json new file mode 100644 index 000000000000..f667d4dbbc0e --- /dev/null +++ b/site/public/v1/software/grlevelx/index.json @@ -0,0 +1,21 @@ +{ + "id": 4113, + "slug": "grlevelx", + "name": "Grlevelx", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "hardware multithreading" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5609832" + ], + "created_at": "2026-07-10T10:12:41.168944", + "updated_at": "2026-07-10T10:12:41.168944", + "url": "/v1/software/grlevelx" +} diff --git a/site/public/v1/software/grling-sdm/index.json b/site/public/v1/software/grling-sdm/index.json new file mode 100644 index 000000000000..d91ebef1a834 --- /dev/null +++ b/site/public/v1/software/grling-sdm/index.json @@ -0,0 +1,19 @@ +{ + "id": 4114, + "slug": "grling-sdm", + "name": "grling-sdm", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087810" + ], + "created_at": "2026-07-10T10:12:41.169992", + "updated_at": "2026-07-10T10:12:41.169992", + "url": "/v1/software/grling-sdm" +} diff --git a/site/public/v1/software/grobid/index.json b/site/public/v1/software/grobid/index.json new file mode 100644 index 000000000000..6b6bea800b4c --- /dev/null +++ b/site/public/v1/software/grobid/index.json @@ -0,0 +1,23 @@ +{ + "id": 4115, + "slug": "grobid", + "name": "GROBID", + "release_date": null, + "developers": [ + "Patrice Lopez" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Apache Software License 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62830627" + ], + "created_at": "2026-07-10T10:12:41.169992", + "updated_at": "2026-07-10T10:12:41.169992", + "url": "/v1/software/grobid" +} diff --git a/site/public/v1/software/grokker/index.json b/site/public/v1/software/grokker/index.json new file mode 100644 index 000000000000..3680ddc32488 --- /dev/null +++ b/site/public/v1/software/grokker/index.json @@ -0,0 +1,19 @@ +{ + "id": 4116, + "slug": "grokker", + "name": "Grokker", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085004" + ], + "created_at": "2026-07-10T10:12:41.170943", + "updated_at": "2026-07-10T10:12:41.170943", + "url": "/v1/software/grokker" +} diff --git a/site/public/v1/software/grokster/index.json b/site/public/v1/software/grokster/index.json new file mode 100644 index 000000000000..2f6b0a8fafb3 --- /dev/null +++ b/site/public/v1/software/grokster/index.json @@ -0,0 +1,19 @@ +{ + "id": 4117, + "slug": "grokster", + "name": "Grokster", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q920145" + ], + "created_at": "2026-07-10T10:12:41.170943", + "updated_at": "2026-07-10T10:12:41.170943", + "url": "/v1/software/grokster" +} diff --git a/site/public/v1/software/grome/index.json b/site/public/v1/software/grome/index.json new file mode 100644 index 000000000000..ebfe65ed90ea --- /dev/null +++ b/site/public/v1/software/grome/index.json @@ -0,0 +1,19 @@ +{ + "id": 4118, + "slug": "grome", + "name": "Grome", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5610169" + ], + "created_at": "2026-07-10T10:12:41.171944", + "updated_at": "2026-07-10T10:12:41.171944", + "url": "/v1/software/grome" +} diff --git a/site/public/v1/software/gromos/index.json b/site/public/v1/software/gromos/index.json new file mode 100644 index 000000000000..40eea5c84b3b --- /dev/null +++ b/site/public/v1/software/gromos/index.json @@ -0,0 +1,21 @@ +{ + "id": 4119, + "slug": "gromos", + "name": "GROMOS", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Fortran" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1486739" + ], + "created_at": "2026-07-10T10:12:41.171944", + "updated_at": "2026-07-10T10:12:41.171944", + "url": "/v1/software/gromos" +} diff --git a/site/public/v1/software/grond/index.json b/site/public/v1/software/grond/index.json new file mode 100644 index 000000000000..41851c88ce34 --- /dev/null +++ b/site/public/v1/software/grond/index.json @@ -0,0 +1,19 @@ +{ + "id": 4120, + "slug": "grond", + "name": "Grond", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112158602" + ], + "created_at": "2026-07-10T10:12:41.172919", + "updated_at": "2026-07-10T10:12:41.172919", + "url": "/v1/software/grond" +} diff --git a/site/public/v1/software/group-shot/index.json b/site/public/v1/software/group-shot/index.json new file mode 100644 index 000000000000..6ce17b6db75c --- /dev/null +++ b/site/public/v1/software/group-shot/index.json @@ -0,0 +1,21 @@ +{ + "id": 4121, + "slug": "group-shot", + "name": "Group Shot", + "release_date": null, + "developers": [ + "Microsoft Research" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5611197" + ], + "created_at": "2026-07-10T10:12:41.172919", + "updated_at": "2026-07-10T10:12:41.172919", + "url": "/v1/software/group-shot" +} diff --git a/site/public/v1/software/grs/index.json b/site/public/v1/software/grs/index.json new file mode 100644 index 000000000000..5823eb7aa903 --- /dev/null +++ b/site/public/v1/software/grs/index.json @@ -0,0 +1,19 @@ +{ + "id": 4122, + "slug": "grs", + "name": "grs", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974908" + ], + "created_at": "2026-07-10T10:12:41.173937", + "updated_at": "2026-07-10T10:12:41.173937", + "url": "/v1/software/grs" +} diff --git a/site/public/v1/software/grype/index.json b/site/public/v1/software/grype/index.json new file mode 100644 index 000000000000..f51e8f0b5c08 --- /dev/null +++ b/site/public/v1/software/grype/index.json @@ -0,0 +1,19 @@ +{ + "id": 4123, + "slug": "grype", + "name": "Grype", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139377307" + ], + "created_at": "2026-07-10T10:12:41.173937", + "updated_at": "2026-07-10T10:12:41.173937", + "url": "/v1/software/grype" +} diff --git a/site/public/v1/software/gs-elpa/index.json b/site/public/v1/software/gs-elpa/index.json new file mode 100644 index 000000000000..bd2cf0fafbaf --- /dev/null +++ b/site/public/v1/software/gs-elpa/index.json @@ -0,0 +1,19 @@ +{ + "id": 4124, + "slug": "gs-elpa", + "name": "gs-elpa", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974909" + ], + "created_at": "2026-07-10T10:12:41.173937", + "updated_at": "2026-07-10T10:12:41.173937", + "url": "/v1/software/gs-elpa" +} diff --git a/site/public/v1/software/gs-pypi/index.json b/site/public/v1/software/gs-pypi/index.json new file mode 100644 index 000000000000..82d9b7737032 --- /dev/null +++ b/site/public/v1/software/gs-pypi/index.json @@ -0,0 +1,19 @@ +{ + "id": 4125, + "slug": "gs-pypi", + "name": "gs-pypi", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974912" + ], + "created_at": "2026-07-10T10:12:41.174925", + "updated_at": "2026-07-10T10:12:41.174925", + "url": "/v1/software/gs-pypi" +} diff --git a/site/public/v1/software/gs-richcopy-360-enterprise/index.json b/site/public/v1/software/gs-richcopy-360-enterprise/index.json new file mode 100644 index 000000000000..9ee2e638955c --- /dev/null +++ b/site/public/v1/software/gs-richcopy-360-enterprise/index.json @@ -0,0 +1,19 @@ +{ + "id": 4126, + "slug": "gs-richcopy-360-enterprise", + "name": "GS RichCopy 360 Enterprise", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q42915596" + ], + "created_at": "2026-07-10T10:12:41.174925", + "updated_at": "2026-07-10T10:12:41.174925", + "url": "/v1/software/gs-richcopy-360-enterprise" +} diff --git a/site/public/v1/software/gs-tools/index.json b/site/public/v1/software/gs-tools/index.json new file mode 100644 index 000000000000..c4f94f750280 --- /dev/null +++ b/site/public/v1/software/gs-tools/index.json @@ -0,0 +1,23 @@ +{ + "id": 4127, + "slug": "gs-tools", + "name": "GS Tools", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Python" + ], + "licenses": [ + "GNU Lesser General Public License, version 3.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140379452" + ], + "created_at": "2026-07-10T10:12:41.174925", + "updated_at": "2026-07-10T10:12:41.174925", + "url": "/v1/software/gs-tools" +} diff --git a/site/public/v1/software/gsea/index.json b/site/public/v1/software/gsea/index.json new file mode 100644 index 000000000000..21565b49b3ff --- /dev/null +++ b/site/public/v1/software/gsea/index.json @@ -0,0 +1,19 @@ +{ + "id": 4128, + "slug": "gsea", + "name": "GSEA", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112306272" + ], + "created_at": "2026-07-10T10:12:41.175930", + "updated_at": "2026-07-10T10:12:41.175930", + "url": "/v1/software/gsea" +} diff --git a/site/public/v1/software/gsegrafix/index.json b/site/public/v1/software/gsegrafix/index.json new file mode 100644 index 000000000000..596080195e7d --- /dev/null +++ b/site/public/v1/software/gsegrafix/index.json @@ -0,0 +1,19 @@ +{ + "id": 4129, + "slug": "gsegrafix", + "name": "Gsegrafix", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76182413" + ], + "created_at": "2026-07-10T10:12:41.175930", + "updated_at": "2026-07-10T10:12:41.175930", + "url": "/v1/software/gsegrafix" +} diff --git a/site/public/v1/software/gshhg/index.json b/site/public/v1/software/gshhg/index.json new file mode 100644 index 000000000000..f8159a5cbae4 --- /dev/null +++ b/site/public/v1/software/gshhg/index.json @@ -0,0 +1,19 @@ +{ + "id": 4130, + "slug": "gshhg", + "name": "GSHHG", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5514552" + ], + "created_at": "2026-07-10T10:12:41.175930", + "updated_at": "2026-07-10T10:12:41.175930", + "url": "/v1/software/gshhg" +} diff --git a/site/public/v1/software/gsi3d/index.json b/site/public/v1/software/gsi3d/index.json new file mode 100644 index 000000000000..57e416536508 --- /dev/null +++ b/site/public/v1/software/gsi3d/index.json @@ -0,0 +1,19 @@ +{ + "id": 4131, + "slug": "gsi3d", + "name": "GSI3D", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5514554" + ], + "created_at": "2026-07-10T10:12:41.176957", + "updated_at": "2026-07-10T10:12:41.176957", + "url": "/v1/software/gsi3d" +} diff --git a/site/public/v1/software/gslapt/index.json b/site/public/v1/software/gslapt/index.json new file mode 100644 index 000000000000..441c6dce85d7 --- /dev/null +++ b/site/public/v1/software/gslapt/index.json @@ -0,0 +1,19 @@ +{ + "id": 4132, + "slug": "gslapt", + "name": "Gslapt", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4039735" + ], + "created_at": "2026-07-10T10:12:41.176957", + "updated_at": "2026-07-10T10:12:41.176957", + "url": "/v1/software/gslapt" +} diff --git a/site/public/v1/software/gsm-receiver/index.json b/site/public/v1/software/gsm-receiver/index.json new file mode 100644 index 000000000000..0604746fdf91 --- /dev/null +++ b/site/public/v1/software/gsm-receiver/index.json @@ -0,0 +1,19 @@ +{ + "id": 4133, + "slug": "gsm-receiver", + "name": "gsm-receiver", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974910" + ], + "created_at": "2026-07-10T10:12:41.177980", + "updated_at": "2026-07-10T10:12:41.177980", + "url": "/v1/software/gsm-receiver" +} diff --git a/site/public/v1/software/gspot/index.json b/site/public/v1/software/gspot/index.json new file mode 100644 index 000000000000..baa4499e9634 --- /dev/null +++ b/site/public/v1/software/gspot/index.json @@ -0,0 +1,21 @@ +{ + "id": 4134, + "slug": "gspot", + "name": "GSpot", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q842447" + ], + "created_at": "2026-07-10T10:12:41.177980", + "updated_at": "2026-07-10T10:12:41.177980", + "url": "/v1/software/gspot" +} diff --git a/site/public/v1/software/gssha/index.json b/site/public/v1/software/gssha/index.json new file mode 100644 index 000000000000..230a51079955 --- /dev/null +++ b/site/public/v1/software/gssha/index.json @@ -0,0 +1,21 @@ +{ + "id": 4135, + "slug": "gssha", + "name": "GSSHA", + "release_date": null, + "developers": [ + "Engineer Research and Development Center" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5514616" + ], + "created_at": "2026-07-10T10:12:41.177980", + "updated_at": "2026-07-10T10:12:41.177980", + "url": "/v1/software/gssha" +} diff --git a/site/public/v1/software/gst-plugins-amr/index.json b/site/public/v1/software/gst-plugins-amr/index.json new file mode 100644 index 000000000000..7ed03a7adf63 --- /dev/null +++ b/site/public/v1/software/gst-plugins-amr/index.json @@ -0,0 +1,19 @@ +{ + "id": 4136, + "slug": "gst-plugins-amr", + "name": "gst-plugins-amr", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106102056" + ], + "created_at": "2026-07-10T10:12:41.177980", + "updated_at": "2026-07-10T10:12:41.177980", + "url": "/v1/software/gst-plugins-amr" +} diff --git a/site/public/v1/software/gst-plugins-pulse/index.json b/site/public/v1/software/gst-plugins-pulse/index.json new file mode 100644 index 000000000000..de7f7f91af91 --- /dev/null +++ b/site/public/v1/software/gst-plugins-pulse/index.json @@ -0,0 +1,19 @@ +{ + "id": 4137, + "slug": "gst-plugins-pulse", + "name": "gst-plugins-pulse", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065542" + ], + "created_at": "2026-07-10T10:12:41.178940", + "updated_at": "2026-07-10T10:12:41.178940", + "url": "/v1/software/gst-plugins-pulse" +} diff --git a/site/public/v1/software/gstarcad/index.json b/site/public/v1/software/gstarcad/index.json new file mode 100644 index 000000000000..1938ff63f473 --- /dev/null +++ b/site/public/v1/software/gstarcad/index.json @@ -0,0 +1,19 @@ +{ + "id": 4138, + "slug": "gstarcad", + "name": "GstarCAD", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3118654" + ], + "created_at": "2026-07-10T10:12:41.178940", + "updated_at": "2026-07-10T10:12:41.178940", + "url": "/v1/software/gstarcad" +} diff --git a/site/public/v1/software/gstat/index.json b/site/public/v1/software/gstat/index.json new file mode 100644 index 000000000000..47e8d01f6648 --- /dev/null +++ b/site/public/v1/software/gstat/index.json @@ -0,0 +1,19 @@ +{ + "id": 4139, + "slug": "gstat", + "name": "GStat", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5514652" + ], + "created_at": "2026-07-10T10:12:41.179981", + "updated_at": "2026-07-10T10:12:41.179981", + "url": "/v1/software/gstat" +} diff --git a/site/public/v1/software/gt-power/index.json b/site/public/v1/software/gt-power/index.json new file mode 100644 index 000000000000..eaf65eafe5b7 --- /dev/null +++ b/site/public/v1/software/gt-power/index.json @@ -0,0 +1,19 @@ +{ + "id": 4140, + "slug": "gt-power", + "name": "GT-Power", + "release_date": "1980-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5514656" + ], + "created_at": "2026-07-10T10:12:41.179981", + "updated_at": "2026-07-10T10:12:41.179981", + "url": "/v1/software/gt-power" +} diff --git a/site/public/v1/software/gti/index.json b/site/public/v1/software/gti/index.json new file mode 100644 index 000000000000..e7f114d67772 --- /dev/null +++ b/site/public/v1/software/gti/index.json @@ -0,0 +1,19 @@ +{ + "id": 4141, + "slug": "gti", + "name": "gti", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974913" + ], + "created_at": "2026-07-10T10:12:41.179981", + "updated_at": "2026-07-10T10:12:41.179981", + "url": "/v1/software/gti" +} diff --git a/site/public/v1/software/gtk-layer-shell/index.json b/site/public/v1/software/gtk-layer-shell/index.json new file mode 100644 index 000000000000..f624dc9a59d8 --- /dev/null +++ b/site/public/v1/software/gtk-layer-shell/index.json @@ -0,0 +1,19 @@ +{ + "id": 4142, + "slug": "gtk-layer-shell", + "name": "gtk-layer-shell", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131861607" + ], + "created_at": "2026-07-10T10:12:41.179981", + "updated_at": "2026-07-10T10:12:41.179981", + "url": "/v1/software/gtk-layer-shell" +} diff --git a/site/public/v1/software/gtk-meteo/index.json b/site/public/v1/software/gtk-meteo/index.json new file mode 100644 index 000000000000..d329ef832d96 --- /dev/null +++ b/site/public/v1/software/gtk-meteo/index.json @@ -0,0 +1,21 @@ +{ + "id": 4143, + "slug": "gtk-meteo", + "name": "GTK Meteo", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135485338" + ], + "created_at": "2026-07-10T10:12:41.180940", + "updated_at": "2026-07-10T10:12:41.180940", + "url": "/v1/software/gtk-meteo" +} diff --git a/site/public/v1/software/gtk-perl/index.json b/site/public/v1/software/gtk-perl/index.json new file mode 100644 index 000000000000..48457ba176db --- /dev/null +++ b/site/public/v1/software/gtk-perl/index.json @@ -0,0 +1,19 @@ +{ + "id": 4144, + "slug": "gtk-perl", + "name": "GTK-Perl", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q50827610" + ], + "created_at": "2026-07-10T10:12:41.180940", + "updated_at": "2026-07-10T10:12:41.180940", + "url": "/v1/software/gtk-perl" +} diff --git a/site/public/v1/software/gtkboard/index.json b/site/public/v1/software/gtkboard/index.json new file mode 100644 index 000000000000..832995274173 --- /dev/null +++ b/site/public/v1/software/gtkboard/index.json @@ -0,0 +1,19 @@ +{ + "id": 4145, + "slug": "gtkboard", + "name": "gtkboard", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60917832" + ], + "created_at": "2026-07-10T10:12:41.181936", + "updated_at": "2026-07-10T10:12:41.181936", + "url": "/v1/software/gtkboard" +} diff --git a/site/public/v1/software/gtkevemon/index.json b/site/public/v1/software/gtkevemon/index.json new file mode 100644 index 000000000000..5d53b6a5afa5 --- /dev/null +++ b/site/public/v1/software/gtkevemon/index.json @@ -0,0 +1,19 @@ +{ + "id": 4146, + "slug": "gtkevemon", + "name": "gtkevemon", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974914" + ], + "created_at": "2026-07-10T10:12:41.181936", + "updated_at": "2026-07-10T10:12:41.181936", + "url": "/v1/software/gtkevemon" +} diff --git a/site/public/v1/software/gtkglext/index.json b/site/public/v1/software/gtkglext/index.json new file mode 100644 index 000000000000..38366c7128ea --- /dev/null +++ b/site/public/v1/software/gtkglext/index.json @@ -0,0 +1,19 @@ +{ + "id": 4147, + "slug": "gtkglext", + "name": "GtkGLExt", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131574576" + ], + "created_at": "2026-07-10T10:12:41.181936", + "updated_at": "2026-07-10T10:12:41.181936", + "url": "/v1/software/gtkglext" +} diff --git a/site/public/v1/software/gtkhash/index.json b/site/public/v1/software/gtkhash/index.json new file mode 100644 index 000000000000..e822cd69a473 --- /dev/null +++ b/site/public/v1/software/gtkhash/index.json @@ -0,0 +1,19 @@ +{ + "id": 4148, + "slug": "gtkhash", + "name": "GtkHash", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110474709" + ], + "created_at": "2026-07-10T10:12:41.181936", + "updated_at": "2026-07-10T10:12:41.181936", + "url": "/v1/software/gtkhash" +} diff --git a/site/public/v1/software/gtkinspector/index.json b/site/public/v1/software/gtkinspector/index.json new file mode 100644 index 000000000000..cffed41489a9 --- /dev/null +++ b/site/public/v1/software/gtkinspector/index.json @@ -0,0 +1,19 @@ +{ + "id": 4149, + "slug": "gtkinspector", + "name": "GtkInspector", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q20072246" + ], + "created_at": "2026-07-10T10:12:41.182940", + "updated_at": "2026-07-10T10:12:41.182940", + "url": "/v1/software/gtkinspector" +} diff --git a/site/public/v1/software/gtkperf/index.json b/site/public/v1/software/gtkperf/index.json new file mode 100644 index 000000000000..9db9ba3c67e3 --- /dev/null +++ b/site/public/v1/software/gtkperf/index.json @@ -0,0 +1,19 @@ +{ + "id": 4150, + "slug": "gtkperf", + "name": "GtkPerf", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18202193" + ], + "created_at": "2026-07-10T10:12:41.182940", + "updated_at": "2026-07-10T10:12:41.182940", + "url": "/v1/software/gtkperf" +} diff --git a/site/public/v1/software/gtkspell/index.json b/site/public/v1/software/gtkspell/index.json new file mode 100644 index 000000000000..9942e7ed0721 --- /dev/null +++ b/site/public/v1/software/gtkspell/index.json @@ -0,0 +1,21 @@ +{ + "id": 4151, + "slug": "gtkspell", + "name": "GtkSpell", + "release_date": null, + "developers": [ + "Evan Martin" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116046938" + ], + "created_at": "2026-07-10T10:12:41.183936", + "updated_at": "2026-07-10T10:12:41.183936", + "url": "/v1/software/gtkspell" +} diff --git a/site/public/v1/software/gtunnel/index.json b/site/public/v1/software/gtunnel/index.json new file mode 100644 index 000000000000..8f98dfe65dc3 --- /dev/null +++ b/site/public/v1/software/gtunnel/index.json @@ -0,0 +1,23 @@ +{ + "id": 4152, + "slug": "gtunnel", + "name": "GTunnel", + "release_date": null, + "developers": [ + "Garden Networks" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5514783" + ], + "created_at": "2026-07-10T10:12:41.183936", + "updated_at": "2026-07-10T10:12:41.183936", + "url": "/v1/software/gtunnel" +} diff --git a/site/public/v1/software/gubb/index.json b/site/public/v1/software/gubb/index.json new file mode 100644 index 000000000000..ed8dcd3a1f59 --- /dev/null +++ b/site/public/v1/software/gubb/index.json @@ -0,0 +1,19 @@ +{ + "id": 4153, + "slug": "gubb", + "name": "Gubb", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136370699" + ], + "created_at": "2026-07-10T10:12:41.183936", + "updated_at": "2026-07-10T10:12:41.183936", + "url": "/v1/software/gubb" +} diff --git a/site/public/v1/software/guess-the-graph-exploration-system/index.json b/site/public/v1/software/guess-the-graph-exploration-system/index.json new file mode 100644 index 000000000000..b0b8e538f387 --- /dev/null +++ b/site/public/v1/software/guess-the-graph-exploration-system/index.json @@ -0,0 +1,19 @@ +{ + "id": 4154, + "slug": "guess-the-graph-exploration-system", + "name": "GUESS: The Graph Exploration System", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085005" + ], + "created_at": "2026-07-10T10:12:41.183936", + "updated_at": "2026-07-10T10:12:41.183936", + "url": "/v1/software/guess-the-graph-exploration-system" +} diff --git a/site/public/v1/software/guidegeek/index.json b/site/public/v1/software/guidegeek/index.json new file mode 100644 index 000000000000..792109c5d64e --- /dev/null +++ b/site/public/v1/software/guidegeek/index.json @@ -0,0 +1,19 @@ +{ + "id": 4155, + "slug": "guidegeek", + "name": "GuideGeek", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130542322" + ], + "created_at": "2026-07-10T10:12:41.184955", + "updated_at": "2026-07-10T10:12:41.184955", + "url": "/v1/software/guidegeek" +} diff --git a/site/public/v1/software/guile-dbi/index.json b/site/public/v1/software/guile-dbi/index.json new file mode 100644 index 000000000000..68c27d6c0d8a --- /dev/null +++ b/site/public/v1/software/guile-dbi/index.json @@ -0,0 +1,19 @@ +{ + "id": 4156, + "slug": "guile-dbi", + "name": "Guile-dbi", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76184881" + ], + "created_at": "2026-07-10T10:12:41.184955", + "updated_at": "2026-07-10T10:12:41.184955", + "url": "/v1/software/guile-dbi" +} diff --git a/site/public/v1/software/guitar-rig/index.json b/site/public/v1/software/guitar-rig/index.json new file mode 100644 index 000000000000..0e8071929a4c --- /dev/null +++ b/site/public/v1/software/guitar-rig/index.json @@ -0,0 +1,26 @@ +{ + "id": 4157, + "slug": "guitar-rig", + "name": "Guitar Rig", + "release_date": null, + "developers": [ + "Native Instruments" + ], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3120678" + ], + "created_at": "2026-07-10T10:12:41.184955", + "updated_at": "2026-07-10T10:12:41.184955", + "url": "/v1/software/guitar-rig" +} diff --git a/site/public/v1/software/gun/index.json b/site/public/v1/software/gun/index.json new file mode 100644 index 000000000000..ddaea76d155b --- /dev/null +++ b/site/public/v1/software/gun/index.json @@ -0,0 +1,19 @@ +{ + "id": 4158, + "slug": "gun", + "name": "GUN", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130755109" + ], + "created_at": "2026-07-10T10:12:41.185930", + "updated_at": "2026-07-10T10:12:41.185930", + "url": "/v1/software/gun" +} diff --git a/site/public/v1/software/gundam-virtual-modeler-light/index.json b/site/public/v1/software/gundam-virtual-modeler-light/index.json new file mode 100644 index 000000000000..323c51851025 --- /dev/null +++ b/site/public/v1/software/gundam-virtual-modeler-light/index.json @@ -0,0 +1,19 @@ +{ + "id": 4159, + "slug": "gundam-virtual-modeler-light", + "name": "Gundam Virtual Modeler Light", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3120819" + ], + "created_at": "2026-07-10T10:12:41.185930", + "updated_at": "2026-07-10T10:12:41.185930", + "url": "/v1/software/gundam-virtual-modeler-light" +} diff --git a/site/public/v1/software/gundam-virtual-modeler-pro/index.json b/site/public/v1/software/gundam-virtual-modeler-pro/index.json new file mode 100644 index 000000000000..d677b727f334 --- /dev/null +++ b/site/public/v1/software/gundam-virtual-modeler-pro/index.json @@ -0,0 +1,19 @@ +{ + "id": 4160, + "slug": "gundam-virtual-modeler-pro", + "name": "Gundam Virtual Modeler Pro", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3120821" + ], + "created_at": "2026-07-10T10:12:41.185930", + "updated_at": "2026-07-10T10:12:41.185930", + "url": "/v1/software/gundam-virtual-modeler-pro" +} diff --git a/site/public/v1/software/gurobi/index.json b/site/public/v1/software/gurobi/index.json new file mode 100644 index 000000000000..cd97a4f317cc --- /dev/null +++ b/site/public/v1/software/gurobi/index.json @@ -0,0 +1,21 @@ +{ + "id": 4161, + "slug": "gurobi", + "name": "Gurobi", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5620239" + ], + "created_at": "2026-07-10T10:12:41.186869", + "updated_at": "2026-07-10T10:12:41.186869", + "url": "/v1/software/gurobi" +} diff --git a/site/public/v1/software/gvisor/index.json b/site/public/v1/software/gvisor/index.json new file mode 100644 index 000000000000..dcfa73a7573c --- /dev/null +++ b/site/public/v1/software/gvisor/index.json @@ -0,0 +1,21 @@ +{ + "id": 4162, + "slug": "gvisor", + "name": "gVisor", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Go" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q65074419" + ], + "created_at": "2026-07-10T10:12:41.186869", + "updated_at": "2026-07-10T10:12:41.186869", + "url": "/v1/software/gvisor" +} diff --git a/site/public/v1/software/gvrpcd/index.json b/site/public/v1/software/gvrpcd/index.json new file mode 100644 index 000000000000..6a8b3ef0e7ee --- /dev/null +++ b/site/public/v1/software/gvrpcd/index.json @@ -0,0 +1,19 @@ +{ + "id": 4163, + "slug": "gvrpcd", + "name": "gvrpcd", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63064762" + ], + "created_at": "2026-07-10T10:12:41.187868", + "updated_at": "2026-07-10T10:12:41.187868", + "url": "/v1/software/gvrpcd" +} diff --git a/site/public/v1/software/gwhois/index.json b/site/public/v1/software/gwhois/index.json new file mode 100644 index 000000000000..b930073fd1c6 --- /dev/null +++ b/site/public/v1/software/gwhois/index.json @@ -0,0 +1,19 @@ +{ + "id": 4164, + "slug": "gwhois", + "name": "gwhois", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62864624" + ], + "created_at": "2026-07-10T10:12:41.187868", + "updated_at": "2026-07-10T10:12:41.187868", + "url": "/v1/software/gwhois" +} diff --git a/site/public/v1/software/gymwork/index.json b/site/public/v1/software/gymwork/index.json new file mode 100644 index 000000000000..386402d60481 --- /dev/null +++ b/site/public/v1/software/gymwork/index.json @@ -0,0 +1,19 @@ +{ + "id": 4165, + "slug": "gymwork", + "name": "Gymwork", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139714126" + ], + "created_at": "2026-07-10T10:12:41.187868", + "updated_at": "2026-07-10T10:12:41.187868", + "url": "/v1/software/gymwork" +} diff --git a/site/public/v1/software/gyro/index.json b/site/public/v1/software/gyro/index.json new file mode 100644 index 000000000000..c57edb2fedfc --- /dev/null +++ b/site/public/v1/software/gyro/index.json @@ -0,0 +1,21 @@ +{ + "id": 4166, + "slug": "gyro", + "name": "GYRO", + "release_date": null, + "developers": [ + "General Atomics" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5515091" + ], + "created_at": "2026-07-10T10:12:41.187868", + "updated_at": "2026-07-10T10:12:41.187868", + "url": "/v1/software/gyro" +} diff --git a/site/public/v1/software/gzilla/index.json b/site/public/v1/software/gzilla/index.json new file mode 100644 index 000000000000..949662e6f4f8 --- /dev/null +++ b/site/public/v1/software/gzilla/index.json @@ -0,0 +1,19 @@ +{ + "id": 4167, + "slug": "gzilla", + "name": "Gzilla", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1030834" + ], + "created_at": "2026-07-10T10:12:41.188869", + "updated_at": "2026-07-10T10:12:41.188869", + "url": "/v1/software/gzilla" +} diff --git a/site/public/v1/software/h-a-graham-budleigh-brook-beaver-hydro-submission-release/index.json b/site/public/v1/software/h-a-graham-budleigh-brook-beaver-hydro-submission-release/index.json new file mode 100644 index 000000000000..49e398118f5e --- /dev/null +++ b/site/public/v1/software/h-a-graham-budleigh-brook-beaver-hydro-submission-release/index.json @@ -0,0 +1,19 @@ +{ + "id": 4168, + "slug": "h-a-graham-budleigh-brook-beaver-hydro-submission-release", + "name": "h-a-graham/Budleigh_Brook_Beaver_Hydro: Submission Release", + "release_date": "2022-02-10", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115018116" + ], + "created_at": "2026-07-10T10:12:41.188869", + "updated_at": "2026-07-10T10:12:41.188869", + "url": "/v1/software/h-a-graham-budleigh-brook-beaver-hydro-submission-release" +} diff --git a/site/public/v1/software/h-sphere/index.json b/site/public/v1/software/h-sphere/index.json new file mode 100644 index 000000000000..78351a5dba0a --- /dev/null +++ b/site/public/v1/software/h-sphere/index.json @@ -0,0 +1,19 @@ +{ + "id": 4169, + "slug": "h-sphere", + "name": "H-Sphere", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1562483" + ], + "created_at": "2026-07-10T10:12:41.189868", + "updated_at": "2026-07-10T10:12:41.189868", + "url": "/v1/software/h-sphere" +} diff --git a/site/public/v1/software/h2o-gtk/index.json b/site/public/v1/software/h2o-gtk/index.json new file mode 100644 index 000000000000..77e54937edaf --- /dev/null +++ b/site/public/v1/software/h2o-gtk/index.json @@ -0,0 +1,21 @@ +{ + "id": 4170, + "slug": "h2o-gtk", + "name": "h2o-gtk", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "2-clause BSD License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974917" + ], + "created_at": "2026-07-10T10:12:41.189868", + "updated_at": "2026-07-10T10:12:41.189868", + "url": "/v1/software/h2o-gtk" +} diff --git a/site/public/v1/software/h3/index.json b/site/public/v1/software/h3/index.json new file mode 100644 index 000000000000..489b2403eb72 --- /dev/null +++ b/site/public/v1/software/h3/index.json @@ -0,0 +1,23 @@ +{ + "id": 4171, + "slug": "h3", + "name": "h3", + "release_date": null, + "developers": [ + "Zacharias Knudsen" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Apache Software License 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117023379" + ], + "created_at": "2026-07-10T10:12:41.189868", + "updated_at": "2026-07-10T10:12:41.189868", + "url": "/v1/software/h3" +} diff --git a/site/public/v1/software/h5rdmtoolbox/index.json b/site/public/v1/software/h5rdmtoolbox/index.json new file mode 100644 index 000000000000..4ba71fbdef8a --- /dev/null +++ b/site/public/v1/software/h5rdmtoolbox/index.json @@ -0,0 +1,31 @@ +{ + "id": 4172, + "slug": "h5rdmtoolbox", + "name": "h5rdmtoolbox", + "release_date": null, + "developers": [ + "Balazs Pritz", + "Matthias Probst", + "Lucas Büttner" + ], + "publishers": [], + "operating_systems": [ + "Unix-like operating system", + "macOS", + "Microsoft Windows" + ], + "programming_languages": [ + "Python" + ], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126946499" + ], + "created_at": "2026-07-10T10:12:41.189868", + "updated_at": "2026-07-10T10:12:41.189868", + "url": "/v1/software/h5rdmtoolbox" +} diff --git a/site/public/v1/software/h5utils/index.json b/site/public/v1/software/h5utils/index.json new file mode 100644 index 000000000000..817b2468491b --- /dev/null +++ b/site/public/v1/software/h5utils/index.json @@ -0,0 +1,19 @@ +{ + "id": 4173, + "slug": "h5utils", + "name": "h5utils", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62864618" + ], + "created_at": "2026-07-10T10:12:41.190868", + "updated_at": "2026-07-10T10:12:41.190868", + "url": "/v1/software/h5utils" +} diff --git a/site/public/v1/software/hackedbox/index.json b/site/public/v1/software/hackedbox/index.json new file mode 100644 index 000000000000..32e1d9187797 --- /dev/null +++ b/site/public/v1/software/hackedbox/index.json @@ -0,0 +1,19 @@ +{ + "id": 4174, + "slug": "hackedbox", + "name": "Hackedbox", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5637202" + ], + "created_at": "2026-07-10T10:12:41.190868", + "updated_at": "2026-07-10T10:12:41.190868", + "url": "/v1/software/hackedbox" +} diff --git a/site/public/v1/software/hackhq/index.json b/site/public/v1/software/hackhq/index.json new file mode 100644 index 000000000000..4d0d50714cb2 --- /dev/null +++ b/site/public/v1/software/hackhq/index.json @@ -0,0 +1,19 @@ +{ + "id": 4175, + "slug": "hackhq", + "name": "HackHQ", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139695647" + ], + "created_at": "2026-07-10T10:12:41.191866", + "updated_at": "2026-07-10T10:12:41.191866", + "url": "/v1/software/hackhq" +} diff --git a/site/public/v1/software/hackmaster/index.json b/site/public/v1/software/hackmaster/index.json new file mode 100644 index 000000000000..2dac2917232b --- /dev/null +++ b/site/public/v1/software/hackmaster/index.json @@ -0,0 +1,19 @@ +{ + "id": 4176, + "slug": "hackmaster", + "name": "HackMaster", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5637161" + ], + "created_at": "2026-07-10T10:12:41.191866", + "updated_at": "2026-07-10T10:12:41.191866", + "url": "/v1/software/hackmaster" +} diff --git a/site/public/v1/software/hackport/index.json b/site/public/v1/software/hackport/index.json new file mode 100644 index 000000000000..16c416e9650d --- /dev/null +++ b/site/public/v1/software/hackport/index.json @@ -0,0 +1,19 @@ +{ + "id": 4177, + "slug": "hackport", + "name": "hackport", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974918" + ], + "created_at": "2026-07-10T10:12:41.191866", + "updated_at": "2026-07-10T10:12:41.191866", + "url": "/v1/software/hackport" +} diff --git a/site/public/v1/software/hackrf-tools/index.json b/site/public/v1/software/hackrf-tools/index.json new file mode 100644 index 000000000000..d5d0cdc3a35c --- /dev/null +++ b/site/public/v1/software/hackrf-tools/index.json @@ -0,0 +1,19 @@ +{ + "id": 4178, + "slug": "hackrf-tools", + "name": "hackrf-tools", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974919" + ], + "created_at": "2026-07-10T10:12:41.191866", + "updated_at": "2026-07-10T10:12:41.191866", + "url": "/v1/software/hackrf-tools" +} diff --git a/site/public/v1/software/hajime/index.json b/site/public/v1/software/hajime/index.json new file mode 100644 index 000000000000..116b07a99fba --- /dev/null +++ b/site/public/v1/software/hajime/index.json @@ -0,0 +1,19 @@ +{ + "id": 4179, + "slug": "hajime", + "name": "Hajime", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q48790548" + ], + "created_at": "2026-07-10T10:12:41.192866", + "updated_at": "2026-07-10T10:12:41.192866", + "url": "/v1/software/hajime" +} diff --git a/site/public/v1/software/hal-shs/index.json b/site/public/v1/software/hal-shs/index.json new file mode 100644 index 000000000000..54cfd8e640d8 --- /dev/null +++ b/site/public/v1/software/hal-shs/index.json @@ -0,0 +1,19 @@ +{ + "id": 4180, + "slug": "hal-shs", + "name": "HAL SHS", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085007" + ], + "created_at": "2026-07-10T10:12:41.192866", + "updated_at": "2026-07-10T10:12:41.192866", + "url": "/v1/software/hal-shs" +} diff --git a/site/public/v1/software/halcon/index.json b/site/public/v1/software/halcon/index.json new file mode 100644 index 000000000000..fdb9e553f900 --- /dev/null +++ b/site/public/v1/software/halcon/index.json @@ -0,0 +1,21 @@ +{ + "id": 4181, + "slug": "halcon", + "name": "Halcon", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q20827523" + ], + "created_at": "2026-07-10T10:12:41.193866", + "updated_at": "2026-07-10T10:12:41.193866", + "url": "/v1/software/halcon" +} diff --git a/site/public/v1/software/half-life-model-viewer/index.json b/site/public/v1/software/half-life-model-viewer/index.json new file mode 100644 index 000000000000..d8231808318e --- /dev/null +++ b/site/public/v1/software/half-life-model-viewer/index.json @@ -0,0 +1,19 @@ +{ + "id": 4182, + "slug": "half-life-model-viewer", + "name": "Half-Life Model Viewer", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124423719" + ], + "created_at": "2026-07-10T10:12:41.193866", + "updated_at": "2026-07-10T10:12:41.193866", + "url": "/v1/software/half-life-model-viewer" +} diff --git a/site/public/v1/software/halifax/index.json b/site/public/v1/software/halifax/index.json new file mode 100644 index 000000000000..86e856ae09d7 --- /dev/null +++ b/site/public/v1/software/halifax/index.json @@ -0,0 +1,19 @@ +{ + "id": 4183, + "slug": "halifax", + "name": "HaliFAX", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76184988" + ], + "created_at": "2026-07-10T10:12:41.193866", + "updated_at": "2026-07-10T10:12:41.193866", + "url": "/v1/software/halifax" +} diff --git a/site/public/v1/software/halion-symphonic-orchestra/index.json b/site/public/v1/software/halion-symphonic-orchestra/index.json new file mode 100644 index 000000000000..39d482b35ea6 --- /dev/null +++ b/site/public/v1/software/halion-symphonic-orchestra/index.json @@ -0,0 +1,19 @@ +{ + "id": 4184, + "slug": "halion-symphonic-orchestra", + "name": "HALion Symphonic Orchestra", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5628926" + ], + "created_at": "2026-07-10T10:12:41.193866", + "updated_at": "2026-07-10T10:12:41.193866", + "url": "/v1/software/halion-symphonic-orchestra" +} diff --git a/site/public/v1/software/halper-ai/index.json b/site/public/v1/software/halper-ai/index.json new file mode 100644 index 000000000000..374e7f133e06 --- /dev/null +++ b/site/public/v1/software/halper-ai/index.json @@ -0,0 +1,19 @@ +{ + "id": 4185, + "slug": "halper-ai", + "name": "Halper AI", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139595975" + ], + "created_at": "2026-07-10T10:12:41.194865", + "updated_at": "2026-07-10T10:12:41.194865", + "url": "/v1/software/halper-ai" +} diff --git a/site/public/v1/software/haluka/index.json b/site/public/v1/software/haluka/index.json new file mode 100644 index 000000000000..6a68ab39ad27 --- /dev/null +++ b/site/public/v1/software/haluka/index.json @@ -0,0 +1,21 @@ +{ + "id": 4186, + "slug": "haluka", + "name": "Haluka", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q65089028" + ], + "created_at": "2026-07-10T10:12:41.194865", + "updated_at": "2026-07-10T10:12:41.194865", + "url": "/v1/software/haluka" +} diff --git a/site/public/v1/software/haml-lint/index.json b/site/public/v1/software/haml-lint/index.json new file mode 100644 index 000000000000..ae0ce825526b --- /dev/null +++ b/site/public/v1/software/haml-lint/index.json @@ -0,0 +1,21 @@ +{ + "id": 4187, + "slug": "haml-lint", + "name": "haml_lint", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q54883200" + ], + "created_at": "2026-07-10T10:12:41.194865", + "updated_at": "2026-07-10T10:12:41.194865", + "url": "/v1/software/haml-lint" +} diff --git a/site/public/v1/software/hammer/index.json b/site/public/v1/software/hammer/index.json new file mode 100644 index 000000000000..209c55cc0520 --- /dev/null +++ b/site/public/v1/software/hammer/index.json @@ -0,0 +1,21 @@ +{ + "id": 4188, + "slug": "hammer", + "name": "Hammer++", + "release_date": "2021-03-14", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136490557" + ], + "created_at": "2026-07-10T10:12:41.195865", + "updated_at": "2026-07-10T10:12:41.195865", + "url": "/v1/software/hammer" +} diff --git a/site/public/v1/software/hammerspoon/index.json b/site/public/v1/software/hammerspoon/index.json new file mode 100644 index 000000000000..0ec49b269bb9 --- /dev/null +++ b/site/public/v1/software/hammerspoon/index.json @@ -0,0 +1,24 @@ +{ + "id": 4189, + "slug": "hammerspoon", + "name": "Hammerspoon", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Objective-C", + "Lua" + ], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113675707" + ], + "created_at": "2026-07-10T10:12:41.195865", + "updated_at": "2026-07-10T10:12:41.195865", + "url": "/v1/software/hammerspoon" +} diff --git a/site/public/v1/software/hamsphere/index.json b/site/public/v1/software/hamsphere/index.json new file mode 100644 index 000000000000..5431d2bdad8b --- /dev/null +++ b/site/public/v1/software/hamsphere/index.json @@ -0,0 +1,19 @@ +{ + "id": 4190, + "slug": "hamsphere", + "name": "HamSphere", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q9001910" + ], + "created_at": "2026-07-10T10:12:41.195865", + "updated_at": "2026-07-10T10:12:41.195865", + "url": "/v1/software/hamsphere" +} diff --git a/site/public/v1/software/handbook-emission-factors-for-road-transport/index.json b/site/public/v1/software/handbook-emission-factors-for-road-transport/index.json new file mode 100644 index 000000000000..21f78677ce0b --- /dev/null +++ b/site/public/v1/software/handbook-emission-factors-for-road-transport/index.json @@ -0,0 +1,23 @@ +{ + "id": 4191, + "slug": "handbook-emission-factors-for-road-transport", + "name": "Handbook Emission Factors for Road Transport", + "release_date": "1995-01-01", + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [ + "Visual Basic for Applications" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18392525" + ], + "created_at": "2026-07-10T10:12:41.195865", + "updated_at": "2026-07-10T10:12:41.195865", + "url": "/v1/software/handbook-emission-factors-for-road-transport" +} diff --git a/site/public/v1/software/handwallet/index.json b/site/public/v1/software/handwallet/index.json new file mode 100644 index 000000000000..6250235a2ece --- /dev/null +++ b/site/public/v1/software/handwallet/index.json @@ -0,0 +1,19 @@ +{ + "id": 4192, + "slug": "handwallet", + "name": "HandWallet", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q9001958" + ], + "created_at": "2026-07-10T10:12:41.196972", + "updated_at": "2026-07-10T10:12:41.196972", + "url": "/v1/software/handwallet" +} diff --git a/site/public/v1/software/handy-backup/index.json b/site/public/v1/software/handy-backup/index.json new file mode 100644 index 000000000000..b193284118da --- /dev/null +++ b/site/public/v1/software/handy-backup/index.json @@ -0,0 +1,22 @@ +{ + "id": 4193, + "slug": "handy-backup", + "name": "Handy Backup", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Vista", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4040391" + ], + "created_at": "2026-07-10T10:12:41.196972", + "updated_at": "2026-07-10T10:12:41.196972", + "url": "/v1/software/handy-backup" +} diff --git a/site/public/v1/software/handycache/index.json b/site/public/v1/software/handycache/index.json new file mode 100644 index 000000000000..575a2a46453d --- /dev/null +++ b/site/public/v1/software/handycache/index.json @@ -0,0 +1,19 @@ +{ + "id": 4194, + "slug": "handycache", + "name": "HandyCache", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4040389" + ], + "created_at": "2026-07-10T10:12:41.196972", + "updated_at": "2026-07-10T10:12:41.196972", + "url": "/v1/software/handycache" +} diff --git a/site/public/v1/software/hanshan/index.json b/site/public/v1/software/hanshan/index.json new file mode 100644 index 000000000000..e8b218d7c5c1 --- /dev/null +++ b/site/public/v1/software/hanshan/index.json @@ -0,0 +1,21 @@ +{ + "id": 4195, + "slug": "hanshan", + "name": "Hanshan", + "release_date": null, + "developers": [ + "Tim Hartnell" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125523486" + ], + "created_at": "2026-07-10T10:12:41.197982", + "updated_at": "2026-07-10T10:12:41.197982", + "url": "/v1/software/hanshan" +} diff --git a/site/public/v1/software/haozip/index.json b/site/public/v1/software/haozip/index.json new file mode 100644 index 000000000000..55e1b61ad97c --- /dev/null +++ b/site/public/v1/software/haozip/index.json @@ -0,0 +1,19 @@ +{ + "id": 4196, + "slug": "haozip", + "name": "HaoZip", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4040407" + ], + "created_at": "2026-07-10T10:12:41.197982", + "updated_at": "2026-07-10T10:12:41.197982", + "url": "/v1/software/haozip" +} diff --git a/site/public/v1/software/hapi/index.json b/site/public/v1/software/hapi/index.json new file mode 100644 index 000000000000..a1a1f7041d5c --- /dev/null +++ b/site/public/v1/software/hapi/index.json @@ -0,0 +1,21 @@ +{ + "id": 4197, + "slug": "hapi", + "name": "HAPI", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Apache Software License 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127485387" + ], + "created_at": "2026-07-10T10:12:41.197982", + "updated_at": "2026-07-10T10:12:41.197982", + "url": "/v1/software/hapi" +} diff --git a/site/public/v1/software/haploview/index.json b/site/public/v1/software/haploview/index.json new file mode 100644 index 000000000000..cae6476a2210 --- /dev/null +++ b/site/public/v1/software/haploview/index.json @@ -0,0 +1,19 @@ +{ + "id": 4198, + "slug": "haploview", + "name": "Haploview", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5652128" + ], + "created_at": "2026-07-10T10:12:41.198997", + "updated_at": "2026-07-10T10:12:41.198997", + "url": "/v1/software/haploview" +} diff --git a/site/public/v1/software/happyhopper/index.json b/site/public/v1/software/happyhopper/index.json new file mode 100644 index 000000000000..17ff6ca3ebca --- /dev/null +++ b/site/public/v1/software/happyhopper/index.json @@ -0,0 +1,21 @@ +{ + "id": 4199, + "slug": "happyhopper", + "name": "happyhopper", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "iOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138858833" + ], + "created_at": "2026-07-10T10:12:41.198997", + "updated_at": "2026-07-10T10:12:41.198997", + "url": "/v1/software/happyhopper" +} diff --git a/site/public/v1/software/hardware-accelerated-execution-manager/index.json b/site/public/v1/software/hardware-accelerated-execution-manager/index.json new file mode 100644 index 000000000000..b799cf150019 --- /dev/null +++ b/site/public/v1/software/hardware-accelerated-execution-manager/index.json @@ -0,0 +1,23 @@ +{ + "id": 4200, + "slug": "hardware-accelerated-execution-manager", + "name": "Hardware-Accelerated Execution Manager", + "release_date": null, + "developers": [ + "Intel" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "3-clause BSD License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116058002" + ], + "created_at": "2026-07-10T10:12:41.198997", + "updated_at": "2026-07-10T10:12:41.198997", + "url": "/v1/software/hardware-accelerated-execution-manager" +} diff --git a/site/public/v1/software/harminv/index.json b/site/public/v1/software/harminv/index.json new file mode 100644 index 000000000000..1942321f7e71 --- /dev/null +++ b/site/public/v1/software/harminv/index.json @@ -0,0 +1,19 @@ +{ + "id": 4201, + "slug": "harminv", + "name": "Harminv", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62864610" + ], + "created_at": "2026-07-10T10:12:41.199948", + "updated_at": "2026-07-10T10:12:41.199948", + "url": "/v1/software/harminv" +} diff --git a/site/public/v1/software/harmony-compiler/index.json b/site/public/v1/software/harmony-compiler/index.json new file mode 100644 index 000000000000..ba9e3d143e72 --- /dev/null +++ b/site/public/v1/software/harmony-compiler/index.json @@ -0,0 +1,21 @@ +{ + "id": 4202, + "slug": "harmony-compiler", + "name": "Harmony Compiler", + "release_date": "1960-01-01", + "developers": [ + "Peter Samson" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q9002111" + ], + "created_at": "2026-07-10T10:12:41.199948", + "updated_at": "2026-07-10T10:12:41.199948", + "url": "/v1/software/harmony-compiler" +} diff --git a/site/public/v1/software/harmor/index.json b/site/public/v1/software/harmor/index.json new file mode 100644 index 000000000000..69c5fab64875 --- /dev/null +++ b/site/public/v1/software/harmor/index.json @@ -0,0 +1,25 @@ +{ + "id": 4203, + "slug": "harmor", + "name": "Harmor", + "release_date": null, + "developers": [ + "Image-Line" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [ + "Delphi" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q21160991" + ], + "created_at": "2026-07-10T10:12:41.199948", + "updated_at": "2026-07-10T10:12:41.199948", + "url": "/v1/software/harmor" +} diff --git a/site/public/v1/software/harrison-mixbus/index.json b/site/public/v1/software/harrison-mixbus/index.json new file mode 100644 index 000000000000..601fe9c061e7 --- /dev/null +++ b/site/public/v1/software/harrison-mixbus/index.json @@ -0,0 +1,21 @@ +{ + "id": 4204, + "slug": "harrison-mixbus", + "name": "Harrison Mixbus", + "release_date": null, + "developers": [ + "Harrison Audio" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16972798" + ], + "created_at": "2026-07-10T10:12:41.199948", + "updated_at": "2026-07-10T10:12:41.199948", + "url": "/v1/software/harrison-mixbus" +} diff --git a/site/public/v1/software/harrow/index.json b/site/public/v1/software/harrow/index.json new file mode 100644 index 000000000000..1e921f1811df --- /dev/null +++ b/site/public/v1/software/harrow/index.json @@ -0,0 +1,21 @@ +{ + "id": 4205, + "slug": "harrow", + "name": "Harrow", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Go" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25345942" + ], + "created_at": "2026-07-10T10:12:41.200952", + "updated_at": "2026-07-10T10:12:41.200952", + "url": "/v1/software/harrow" +} diff --git a/site/public/v1/software/harvard-predictive-analyser/index.json b/site/public/v1/software/harvard-predictive-analyser/index.json new file mode 100644 index 000000000000..06ba5b6655c9 --- /dev/null +++ b/site/public/v1/software/harvard-predictive-analyser/index.json @@ -0,0 +1,19 @@ +{ + "id": 4206, + "slug": "harvard-predictive-analyser", + "name": "Harvard Predictive Analyser", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087811" + ], + "created_at": "2026-07-10T10:12:41.200952", + "updated_at": "2026-07-10T10:12:41.200952", + "url": "/v1/software/harvard-predictive-analyser" +} diff --git a/site/public/v1/software/harvest/index.json b/site/public/v1/software/harvest/index.json new file mode 100644 index 000000000000..7d1c3cc78375 --- /dev/null +++ b/site/public/v1/software/harvest/index.json @@ -0,0 +1,19 @@ +{ + "id": 4207, + "slug": "harvest", + "name": "Harvest", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5676747" + ], + "created_at": "2026-07-10T10:12:41.200952", + "updated_at": "2026-07-10T10:12:41.202002", + "url": "/v1/software/harvest" +} diff --git a/site/public/v1/software/harvester/index.json b/site/public/v1/software/harvester/index.json new file mode 100644 index 000000000000..c81fe8d49744 --- /dev/null +++ b/site/public/v1/software/harvester/index.json @@ -0,0 +1,19 @@ +{ + "id": 4208, + "slug": "harvester", + "name": "harvester", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123916931" + ], + "created_at": "2026-07-10T10:12:41.202002", + "updated_at": "2026-07-10T10:12:41.202002", + "url": "/v1/software/harvester" +} diff --git a/site/public/v1/software/harvey-ai/index.json b/site/public/v1/software/harvey-ai/index.json new file mode 100644 index 000000000000..c7105a6c436e --- /dev/null +++ b/site/public/v1/software/harvey-ai/index.json @@ -0,0 +1,19 @@ +{ + "id": 4209, + "slug": "harvey-ai", + "name": "Harvey AI", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q132249659" + ], + "created_at": "2026-07-10T10:12:41.202002", + "updated_at": "2026-07-10T10:12:41.202002", + "url": "/v1/software/harvey-ai" +} diff --git a/site/public/v1/software/hashcash/index.json b/site/public/v1/software/hashcash/index.json new file mode 100644 index 000000000000..b2e2241cf382 --- /dev/null +++ b/site/public/v1/software/hashcash/index.json @@ -0,0 +1,19 @@ +{ + "id": 4210, + "slug": "hashcash", + "name": "Hashcash", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q357569" + ], + "created_at": "2026-07-10T10:12:41.202869", + "updated_at": "2026-07-10T10:12:41.202869", + "url": "/v1/software/hashcash" +} diff --git a/site/public/v1/software/hashkeeper/index.json b/site/public/v1/software/hashkeeper/index.json new file mode 100644 index 000000000000..81229e03e7c7 --- /dev/null +++ b/site/public/v1/software/hashkeeper/index.json @@ -0,0 +1,19 @@ +{ + "id": 4211, + "slug": "hashkeeper", + "name": "HashKeeper", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3128082" + ], + "created_at": "2026-07-10T10:12:41.202869", + "updated_at": "2026-07-10T10:12:41.202869", + "url": "/v1/software/hashkeeper" +} diff --git a/site/public/v1/software/hatools/index.json b/site/public/v1/software/hatools/index.json new file mode 100644 index 000000000000..b8ffba9eecd1 --- /dev/null +++ b/site/public/v1/software/hatools/index.json @@ -0,0 +1,19 @@ +{ + "id": 4212, + "slug": "hatools", + "name": "hatools", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065430" + ], + "created_at": "2026-07-10T10:12:41.202869", + "updated_at": "2026-07-10T10:12:41.202869", + "url": "/v1/software/hatools" +} diff --git a/site/public/v1/software/hatop/index.json b/site/public/v1/software/hatop/index.json new file mode 100644 index 000000000000..02b4928623cf --- /dev/null +++ b/site/public/v1/software/hatop/index.json @@ -0,0 +1,19 @@ +{ + "id": 4213, + "slug": "hatop", + "name": "HATop", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62864545" + ], + "created_at": "2026-07-10T10:12:41.203876", + "updated_at": "2026-07-10T10:12:41.203876", + "url": "/v1/software/hatop" +} diff --git a/site/public/v1/software/hauptwerk/index.json b/site/public/v1/software/hauptwerk/index.json new file mode 100644 index 000000000000..d1156601ae80 --- /dev/null +++ b/site/public/v1/software/hauptwerk/index.json @@ -0,0 +1,19 @@ +{ + "id": 4214, + "slug": "hauptwerk", + "name": "Hauptwerk", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1589810" + ], + "created_at": "2026-07-10T10:12:41.203876", + "updated_at": "2026-07-10T10:12:41.203876", + "url": "/v1/software/hauptwerk" +} diff --git a/site/public/v1/software/hawaii/index.json b/site/public/v1/software/hawaii/index.json new file mode 100644 index 000000000000..e1b6ed36f9ef --- /dev/null +++ b/site/public/v1/software/hawaii/index.json @@ -0,0 +1,19 @@ +{ + "id": 4215, + "slug": "hawaii", + "name": "Hawaii", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16252318" + ], + "created_at": "2026-07-10T10:12:41.203876", + "updated_at": "2026-07-10T10:12:41.203876", + "url": "/v1/software/hawaii" +} diff --git a/site/public/v1/software/hawkeye/index.json b/site/public/v1/software/hawkeye/index.json new file mode 100644 index 000000000000..a48cc4a03f93 --- /dev/null +++ b/site/public/v1/software/hawkeye/index.json @@ -0,0 +1,19 @@ +{ + "id": 4216, + "slug": "hawkeye", + "name": "HAWKEYE", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087812" + ], + "created_at": "2026-07-10T10:12:41.204874", + "updated_at": "2026-07-10T10:12:41.204874", + "url": "/v1/software/hawkeye" +} diff --git a/site/public/v1/software/haxi/index.json b/site/public/v1/software/haxi/index.json new file mode 100644 index 000000000000..3590eaaa5ce7 --- /dev/null +++ b/site/public/v1/software/haxi/index.json @@ -0,0 +1,21 @@ +{ + "id": 4217, + "slug": "haxi", + "name": "Haxi", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Java" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18164967" + ], + "created_at": "2026-07-10T10:12:41.204874", + "updated_at": "2026-07-10T10:12:41.204874", + "url": "/v1/software/haxi" +} diff --git a/site/public/v1/software/haystack/index.json b/site/public/v1/software/haystack/index.json new file mode 100644 index 000000000000..affe1a0bb64e --- /dev/null +++ b/site/public/v1/software/haystack/index.json @@ -0,0 +1,19 @@ +{ + "id": 4218, + "slug": "haystack", + "name": "Haystack", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5687249" + ], + "created_at": "2026-07-10T10:12:41.204874", + "updated_at": "2026-07-10T10:12:41.204874", + "url": "/v1/software/haystack" +} diff --git a/site/public/v1/software/hazelcast/index.json b/site/public/v1/software/hazelcast/index.json new file mode 100644 index 000000000000..75f46a438e1f --- /dev/null +++ b/site/public/v1/software/hazelcast/index.json @@ -0,0 +1,23 @@ +{ + "id": 4219, + "slug": "hazelcast", + "name": "Hazelcast", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Java" + ], + "licenses": [ + "Apache Software License 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17021540" + ], + "created_at": "2026-07-10T10:12:41.205932", + "updated_at": "2026-07-10T10:12:41.205932", + "url": "/v1/software/hazelcast" +} diff --git a/site/public/v1/software/hazus/index.json b/site/public/v1/software/hazus/index.json new file mode 100644 index 000000000000..8f764c8b6d19 --- /dev/null +++ b/site/public/v1/software/hazus/index.json @@ -0,0 +1,24 @@ +{ + "id": 4220, + "slug": "hazus", + "name": "HAZUS", + "release_date": null, + "developers": [ + "Federal Emergency Management Agency" + ], + "publishers": [], + "operating_systems": [ + "Windows 8.1", + "Windows 7" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5629007" + ], + "created_at": "2026-07-10T10:12:41.205932", + "updated_at": "2026-07-10T10:12:41.205932", + "url": "/v1/software/hazus" +} diff --git a/site/public/v1/software/hbb-nexus-os/index.json b/site/public/v1/software/hbb-nexus-os/index.json new file mode 100644 index 000000000000..a6fed6a8436e --- /dev/null +++ b/site/public/v1/software/hbb-nexus-os/index.json @@ -0,0 +1,21 @@ +{ + "id": 4221, + "slug": "hbb-nexus-os", + "name": "HBB Nexus OS", + "release_date": null, + "developers": [ + "Hospitality Brandbook" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138824336" + ], + "created_at": "2026-07-10T10:12:41.205932", + "updated_at": "2026-07-10T10:12:41.205932", + "url": "/v1/software/hbb-nexus-os" +} diff --git a/site/public/v1/software/hbook/index.json b/site/public/v1/software/hbook/index.json new file mode 100644 index 000000000000..dcd3c6608dfa --- /dev/null +++ b/site/public/v1/software/hbook/index.json @@ -0,0 +1,19 @@ +{ + "id": 4222, + "slug": "hbook", + "name": "HBOOK", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3780410" + ], + "created_at": "2026-07-10T10:12:41.206903", + "updated_at": "2026-07-10T10:12:41.206903", + "url": "/v1/software/hbook" +} diff --git a/site/public/v1/software/hd-tach/index.json b/site/public/v1/software/hd-tach/index.json new file mode 100644 index 000000000000..0de56c867d2a --- /dev/null +++ b/site/public/v1/software/hd-tach/index.json @@ -0,0 +1,21 @@ +{ + "id": 4223, + "slug": "hd-tach", + "name": "HD Tach", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5629394" + ], + "created_at": "2026-07-10T10:12:41.206903", + "updated_at": "2026-07-10T10:12:41.206903", + "url": "/v1/software/hd-tach" +} diff --git a/site/public/v1/software/hd-tune/index.json b/site/public/v1/software/hd-tune/index.json new file mode 100644 index 000000000000..470fed99725c --- /dev/null +++ b/site/public/v1/software/hd-tune/index.json @@ -0,0 +1,21 @@ +{ + "id": 4224, + "slug": "hd-tune", + "name": "HD Tune", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4039963" + ], + "created_at": "2026-07-10T10:12:41.206903", + "updated_at": "2026-07-10T10:12:41.206903", + "url": "/v1/software/hd-tune" +} diff --git a/site/public/v1/software/hd3d/index.json b/site/public/v1/software/hd3d/index.json new file mode 100644 index 000000000000..19974a976807 --- /dev/null +++ b/site/public/v1/software/hd3d/index.json @@ -0,0 +1,19 @@ +{ + "id": 4225, + "slug": "hd3d", + "name": "HD3D", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5629162" + ], + "created_at": "2026-07-10T10:12:41.206903", + "updated_at": "2026-07-10T10:12:41.206903", + "url": "/v1/software/hd3d" +} diff --git a/site/public/v1/software/hddtemp/index.json b/site/public/v1/software/hddtemp/index.json new file mode 100644 index 000000000000..da0208ee4a23 --- /dev/null +++ b/site/public/v1/software/hddtemp/index.json @@ -0,0 +1,19 @@ +{ + "id": 4226, + "slug": "hddtemp", + "name": "hddtemp", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62864523" + ], + "created_at": "2026-07-10T10:12:41.207927", + "updated_at": "2026-07-10T10:12:41.207927", + "url": "/v1/software/hddtemp" +} diff --git a/site/public/v1/software/hdf-explorer/index.json b/site/public/v1/software/hdf-explorer/index.json new file mode 100644 index 000000000000..48c9921f91ac --- /dev/null +++ b/site/public/v1/software/hdf-explorer/index.json @@ -0,0 +1,21 @@ +{ + "id": 4227, + "slug": "hdf-explorer", + "name": "HDF Explorer", + "release_date": "1998-01-01", + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5629190" + ], + "created_at": "2026-07-10T10:12:41.207927", + "updated_at": "2026-07-10T10:12:41.207927", + "url": "/v1/software/hdf-explorer" +} diff --git a/site/public/v1/software/hdf5/index.json b/site/public/v1/software/hdf5/index.json new file mode 100644 index 000000000000..06a1d8dcf4b7 --- /dev/null +++ b/site/public/v1/software/hdf5/index.json @@ -0,0 +1,25 @@ +{ + "id": 4228, + "slug": "hdf5", + "name": "HDF5", + "release_date": null, + "developers": [ + "The HDF Group" + ], + "publishers": [], + "operating_systems": [ + "cross-platform" + ], + "programming_languages": [], + "licenses": [ + "3-clause BSD License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q61080677" + ], + "created_at": "2026-07-10T10:12:41.207927", + "updated_at": "2026-07-10T10:12:41.207927", + "url": "/v1/software/hdf5" +} diff --git a/site/public/v1/software/hdfview/index.json b/site/public/v1/software/hdfview/index.json new file mode 100644 index 000000000000..6afdfa52f6fa --- /dev/null +++ b/site/public/v1/software/hdfview/index.json @@ -0,0 +1,25 @@ +{ + "id": 4229, + "slug": "hdfview", + "name": "HDFView", + "release_date": null, + "developers": [ + "The HDF Group" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Java" + ], + "licenses": [ + "3-clause BSD License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130060108" + ], + "created_at": "2026-07-10T10:12:41.208929", + "updated_at": "2026-07-10T10:12:41.208929", + "url": "/v1/software/hdfview" +} diff --git a/site/public/v1/software/hdiv/index.json b/site/public/v1/software/hdiv/index.json new file mode 100644 index 000000000000..d26ab52f10b8 --- /dev/null +++ b/site/public/v1/software/hdiv/index.json @@ -0,0 +1,19 @@ +{ + "id": 4230, + "slug": "hdiv", + "name": "HDIV", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22661277" + ], + "created_at": "2026-07-10T10:12:41.208929", + "updated_at": "2026-07-10T10:12:41.208929", + "url": "/v1/software/hdiv" +} diff --git a/site/public/v1/software/hdr-photostudio/index.json b/site/public/v1/software/hdr-photostudio/index.json new file mode 100644 index 000000000000..88ca4dfbf601 --- /dev/null +++ b/site/public/v1/software/hdr-photostudio/index.json @@ -0,0 +1,19 @@ +{ + "id": 4231, + "slug": "hdr-photostudio", + "name": "HDR PhotoStudio", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5629261" + ], + "created_at": "2026-07-10T10:12:41.208929", + "updated_at": "2026-07-10T10:12:41.208929", + "url": "/v1/software/hdr-photostudio" +} diff --git a/site/public/v1/software/hdrug/index.json b/site/public/v1/software/hdrug/index.json new file mode 100644 index 000000000000..b04ca8580550 --- /dev/null +++ b/site/public/v1/software/hdrug/index.json @@ -0,0 +1,21 @@ +{ + "id": 4232, + "slug": "hdrug", + "name": "HDRUG", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "SICStus Prolog" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q32161532" + ], + "created_at": "2026-07-10T10:12:41.208929", + "updated_at": "2026-07-10T10:12:41.208929", + "url": "/v1/software/hdrug" +} diff --git a/site/public/v1/software/hdup/index.json b/site/public/v1/software/hdup/index.json new file mode 100644 index 000000000000..ec999e50a39c --- /dev/null +++ b/site/public/v1/software/hdup/index.json @@ -0,0 +1,19 @@ +{ + "id": 4233, + "slug": "hdup", + "name": "hdup", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62864516" + ], + "created_at": "2026-07-10T10:12:41.209945", + "updated_at": "2026-07-10T10:12:41.209945", + "url": "/v1/software/hdup" +} diff --git a/site/public/v1/software/headstart/index.json b/site/public/v1/software/headstart/index.json new file mode 100644 index 000000000000..b301011af29a --- /dev/null +++ b/site/public/v1/software/headstart/index.json @@ -0,0 +1,19 @@ +{ + "id": 4234, + "slug": "headstart", + "name": "Headstart", + "release_date": "2019-03-07", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q67479224" + ], + "created_at": "2026-07-10T10:12:41.209945", + "updated_at": "2026-07-10T10:12:41.209945", + "url": "/v1/software/headstart" +} diff --git a/site/public/v1/software/headway/index.json b/site/public/v1/software/headway/index.json new file mode 100644 index 000000000000..ab55dba77fbe --- /dev/null +++ b/site/public/v1/software/headway/index.json @@ -0,0 +1,19 @@ +{ + "id": 4235, + "slug": "headway", + "name": "Headway", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138011128" + ], + "created_at": "2026-07-10T10:12:41.210929", + "updated_at": "2026-07-10T10:12:41.210929", + "url": "/v1/software/headway" +} diff --git a/site/public/v1/software/headweb/index.json b/site/public/v1/software/headweb/index.json new file mode 100644 index 000000000000..d6cccbcb16ac --- /dev/null +++ b/site/public/v1/software/headweb/index.json @@ -0,0 +1,19 @@ +{ + "id": 4236, + "slug": "headweb", + "name": "Headweb", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10518732" + ], + "created_at": "2026-07-10T10:12:41.210929", + "updated_at": "2026-07-10T10:12:41.210929", + "url": "/v1/software/headweb" +} diff --git a/site/public/v1/software/healthcare-voc-compliance-calculator-and-datasets/index.json b/site/public/v1/software/healthcare-voc-compliance-calculator-and-datasets/index.json new file mode 100644 index 000000000000..36dc60e4cc4a --- /dev/null +++ b/site/public/v1/software/healthcare-voc-compliance-calculator-and-datasets/index.json @@ -0,0 +1,21 @@ +{ + "id": 4237, + "slug": "healthcare-voc-compliance-calculator-and-datasets", + "name": "Healthcare VOC Compliance Calculator and Datasets", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138975783" + ], + "created_at": "2026-07-10T10:12:41.211571", + "updated_at": "2026-07-10T10:12:41.211571", + "url": "/v1/software/healthcare-voc-compliance-calculator-and-datasets" +} diff --git a/site/public/v1/software/healthshare/index.json b/site/public/v1/software/healthshare/index.json new file mode 100644 index 000000000000..605f83ae1f43 --- /dev/null +++ b/site/public/v1/software/healthshare/index.json @@ -0,0 +1,21 @@ +{ + "id": 4238, + "slug": "healthshare", + "name": "HealthShare", + "release_date": null, + "developers": [ + "InterSystems" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17092621" + ], + "created_at": "2026-07-10T10:12:41.211571", + "updated_at": "2026-07-10T10:12:41.211571", + "url": "/v1/software/healthshare" +} diff --git a/site/public/v1/software/hearplanet/index.json b/site/public/v1/software/hearplanet/index.json new file mode 100644 index 000000000000..9336df996cb1 --- /dev/null +++ b/site/public/v1/software/hearplanet/index.json @@ -0,0 +1,19 @@ +{ + "id": 4239, + "slug": "hearplanet", + "name": "HearPlanet", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087813" + ], + "created_at": "2026-07-10T10:12:41.211571", + "updated_at": "2026-07-10T10:12:41.211571", + "url": "/v1/software/hearplanet" +} diff --git a/site/public/v1/software/heart-of-africa/index.json b/site/public/v1/software/heart-of-africa/index.json new file mode 100644 index 000000000000..a7ce258dd433 --- /dev/null +++ b/site/public/v1/software/heart-of-africa/index.json @@ -0,0 +1,19 @@ +{ + "id": 4240, + "slug": "heart-of-africa", + "name": "Heart of Africa", + "release_date": "1995-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135490352" + ], + "created_at": "2026-07-10T10:12:41.212577", + "updated_at": "2026-07-10T10:12:41.212577", + "url": "/v1/software/heart-of-africa" +} diff --git a/site/public/v1/software/heart-of-asia-phrases-instruments-utterances-from-the-far-east/index.json b/site/public/v1/software/heart-of-asia-phrases-instruments-utterances-from-the-far-east/index.json new file mode 100644 index 000000000000..aaebc380d1fa --- /dev/null +++ b/site/public/v1/software/heart-of-asia-phrases-instruments-utterances-from-the-far-east/index.json @@ -0,0 +1,19 @@ +{ + "id": 4241, + "slug": "heart-of-asia-phrases-instruments-utterances-from-the-far-east", + "name": "Heart of Asia : Phrases, Instruments & Utterances from the Far East.", + "release_date": "1994-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135490375" + ], + "created_at": "2026-07-10T10:12:41.212577", + "updated_at": "2026-07-10T10:12:41.212577", + "url": "/v1/software/heart-of-asia-phrases-instruments-utterances-from-the-far-east" +} diff --git a/site/public/v1/software/heartbeat-networks/index.json b/site/public/v1/software/heartbeat-networks/index.json new file mode 100644 index 000000000000..dc1e7fa16aca --- /dev/null +++ b/site/public/v1/software/heartbeat-networks/index.json @@ -0,0 +1,19 @@ +{ + "id": 4242, + "slug": "heartbeat-networks", + "name": "HeartBeat Networks", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q90405628" + ], + "created_at": "2026-07-10T10:12:41.212577", + "updated_at": "2026-07-10T10:12:41.212577", + "url": "/v1/software/heartbeat-networks" +} diff --git a/site/public/v1/software/heat-q28974922/index.json b/site/public/v1/software/heat-q28974922/index.json new file mode 100644 index 000000000000..e22bf8ddaa37 --- /dev/null +++ b/site/public/v1/software/heat-q28974922/index.json @@ -0,0 +1,21 @@ +{ + "id": 4243, + "slug": "heat-q28974922", + "name": "heat", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Apache License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974922" + ], + "created_at": "2026-07-10T10:12:41.213576", + "updated_at": "2026-07-10T10:12:41.213576", + "url": "/v1/software/heat-q28974922" +} diff --git a/site/public/v1/software/heat/index.json b/site/public/v1/software/heat/index.json new file mode 100644 index 000000000000..eac687d3629c --- /dev/null +++ b/site/public/v1/software/heat/index.json @@ -0,0 +1,19 @@ +{ + "id": 4244, + "slug": "heat", + "name": "HEAT", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5629409" + ], + "created_at": "2026-07-10T10:12:41.213576", + "updated_at": "2026-07-10T10:12:41.213576", + "url": "/v1/software/heat" +} diff --git a/site/public/v1/software/hec-1/index.json b/site/public/v1/software/hec-1/index.json new file mode 100644 index 000000000000..aa7b61bda12f --- /dev/null +++ b/site/public/v1/software/hec-1/index.json @@ -0,0 +1,21 @@ +{ + "id": 4245, + "slug": "hec-1", + "name": "HEC-1", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Fortran" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5629418" + ], + "created_at": "2026-07-10T10:12:41.213576", + "updated_at": "2026-07-10T10:12:41.213576", + "url": "/v1/software/hec-1" +} diff --git a/site/public/v1/software/hec-hms/index.json b/site/public/v1/software/hec-hms/index.json new file mode 100644 index 000000000000..60aab0077ca8 --- /dev/null +++ b/site/public/v1/software/hec-hms/index.json @@ -0,0 +1,19 @@ +{ + "id": 4246, + "slug": "hec-hms", + "name": "HEC-HMS", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5629419" + ], + "created_at": "2026-07-10T10:12:41.214575", + "updated_at": "2026-07-10T10:12:41.214575", + "url": "/v1/software/hec-hms" +} diff --git a/site/public/v1/software/hec-ras/index.json b/site/public/v1/software/hec-ras/index.json new file mode 100644 index 000000000000..4312055484c2 --- /dev/null +++ b/site/public/v1/software/hec-ras/index.json @@ -0,0 +1,26 @@ +{ + "id": 4247, + "slug": "hec-ras", + "name": "HEC-RAS", + "release_date": null, + "developers": [ + "United States Army Corps of Engineers" + ], + "publishers": [], + "operating_systems": [ + "Windows 8.1", + "Windows 7" + ], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q594096" + ], + "created_at": "2026-07-10T10:12:41.214575", + "updated_at": "2026-07-10T10:12:41.214575", + "url": "/v1/software/hec-ras" +} diff --git a/site/public/v1/software/hedgedoc/index.json b/site/public/v1/software/hedgedoc/index.json new file mode 100644 index 000000000000..4879afa7a88b --- /dev/null +++ b/site/public/v1/software/hedgedoc/index.json @@ -0,0 +1,21 @@ +{ + "id": 4248, + "slug": "hedgedoc", + "name": "HedgeDoc", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "TypeScript" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q98731953" + ], + "created_at": "2026-07-10T10:12:41.214575", + "updated_at": "2026-07-10T10:12:41.214575", + "url": "/v1/software/hedgedoc" +} diff --git a/site/public/v1/software/heif-image-extensions/index.json b/site/public/v1/software/heif-image-extensions/index.json new file mode 100644 index 000000000000..dd70bfdfa411 --- /dev/null +++ b/site/public/v1/software/heif-image-extensions/index.json @@ -0,0 +1,21 @@ +{ + "id": 4249, + "slug": "heif-image-extensions", + "name": "HEIF Image Extensions", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117327904" + ], + "created_at": "2026-07-10T10:12:41.214575", + "updated_at": "2026-07-10T10:12:41.214575", + "url": "/v1/software/heif-image-extensions" +} diff --git a/site/public/v1/software/heimdall/index.json b/site/public/v1/software/heimdall/index.json new file mode 100644 index 000000000000..6cc3d01d4d30 --- /dev/null +++ b/site/public/v1/software/heimdall/index.json @@ -0,0 +1,25 @@ +{ + "id": 4250, + "slug": "heimdall", + "name": "HEIMDALL", + "release_date": "2024-12-24", + "developers": [], + "publishers": [], + "operating_systems": [ + "cross-platform" + ], + "programming_languages": [ + "Python" + ], + "licenses": [ + "GNU Affero General Public License, version 3.0 or later" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135155542" + ], + "created_at": "2026-07-10T10:12:41.215582", + "updated_at": "2026-07-10T10:12:41.215582", + "url": "/v1/software/heimdall" +} diff --git a/site/public/v1/software/heirloom-legacy-platform/index.json b/site/public/v1/software/heirloom-legacy-platform/index.json new file mode 100644 index 000000000000..7a7a0962514c --- /dev/null +++ b/site/public/v1/software/heirloom-legacy-platform/index.json @@ -0,0 +1,21 @@ +{ + "id": 4251, + "slug": "heirloom-legacy-platform", + "name": "Heirloom - legacy platform", + "release_date": null, + "developers": [ + "Heirloom LLC" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135670058" + ], + "created_at": "2026-07-10T10:12:41.215582", + "updated_at": "2026-07-10T10:12:41.215582", + "url": "/v1/software/heirloom-legacy-platform" +} diff --git a/site/public/v1/software/heirloom-project/index.json b/site/public/v1/software/heirloom-project/index.json new file mode 100644 index 000000000000..bd5e7f4345dc --- /dev/null +++ b/site/public/v1/software/heirloom-project/index.json @@ -0,0 +1,19 @@ +{ + "id": 4252, + "slug": "heirloom-project", + "name": "Heirloom Project", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5700958" + ], + "created_at": "2026-07-10T10:12:41.216580", + "updated_at": "2026-07-10T10:12:41.216580", + "url": "/v1/software/heirloom-project" +} diff --git a/site/public/v1/software/helicon-ape/index.json b/site/public/v1/software/helicon-ape/index.json new file mode 100644 index 000000000000..aba5a1bce256 --- /dev/null +++ b/site/public/v1/software/helicon-ape/index.json @@ -0,0 +1,19 @@ +{ + "id": 4253, + "slug": "helicon-ape", + "name": "Helicon Ape", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5705080" + ], + "created_at": "2026-07-10T10:12:41.216580", + "updated_at": "2026-07-10T10:12:41.216580", + "url": "/v1/software/helicon-ape" +} diff --git a/site/public/v1/software/helicon-focus/index.json b/site/public/v1/software/helicon-focus/index.json new file mode 100644 index 000000000000..97d3462ccfb8 --- /dev/null +++ b/site/public/v1/software/helicon-focus/index.json @@ -0,0 +1,21 @@ +{ + "id": 4254, + "slug": "helicon-focus", + "name": "Helicon Focus", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5705092" + ], + "created_at": "2026-07-10T10:12:41.216580", + "updated_at": "2026-07-10T10:12:41.216580", + "url": "/v1/software/helicon-focus" +} diff --git a/site/public/v1/software/helios-voting/index.json b/site/public/v1/software/helios-voting/index.json new file mode 100644 index 000000000000..375e225bde4e --- /dev/null +++ b/site/public/v1/software/helios-voting/index.json @@ -0,0 +1,23 @@ +{ + "id": 4255, + "slug": "helios-voting", + "name": "Helios Voting", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Python" + ], + "licenses": [ + "Apache Software License 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q12871894" + ], + "created_at": "2026-07-10T10:12:41.216580", + "updated_at": "2026-07-10T10:12:41.216580", + "url": "/v1/software/helios-voting" +} diff --git a/site/public/v1/software/helix-universal-server/index.json b/site/public/v1/software/helix-universal-server/index.json new file mode 100644 index 000000000000..1eec25453e2d --- /dev/null +++ b/site/public/v1/software/helix-universal-server/index.json @@ -0,0 +1,21 @@ +{ + "id": 4256, + "slug": "helix-universal-server", + "name": "Helix Universal Server", + "release_date": null, + "developers": [ + "RealNetworks" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5706284" + ], + "created_at": "2026-07-10T10:12:41.217606", + "updated_at": "2026-07-10T10:12:41.217606", + "url": "/v1/software/helix-universal-server" +} diff --git a/site/public/v1/software/help-conquer-cancer/index.json b/site/public/v1/software/help-conquer-cancer/index.json new file mode 100644 index 000000000000..cda648b25582 --- /dev/null +++ b/site/public/v1/software/help-conquer-cancer/index.json @@ -0,0 +1,19 @@ +{ + "id": 4257, + "slug": "help-conquer-cancer", + "name": "Help Conquer Cancer", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1604511" + ], + "created_at": "2026-07-10T10:12:41.217606", + "updated_at": "2026-07-10T10:12:41.217606", + "url": "/v1/software/help-conquer-cancer" +} diff --git a/site/public/v1/software/help-cure-muscular-dystrophy/index.json b/site/public/v1/software/help-cure-muscular-dystrophy/index.json new file mode 100644 index 000000000000..15612a1bd763 --- /dev/null +++ b/site/public/v1/software/help-cure-muscular-dystrophy/index.json @@ -0,0 +1,19 @@ +{ + "id": 4258, + "slug": "help-cure-muscular-dystrophy", + "name": "Help Cure Muscular Dystrophy", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1604510" + ], + "created_at": "2026-07-10T10:12:41.217606", + "updated_at": "2026-07-10T10:12:41.217606", + "url": "/v1/software/help-cure-muscular-dystrophy" +} diff --git a/site/public/v1/software/help-to-rtf/index.json b/site/public/v1/software/help-to-rtf/index.json new file mode 100644 index 000000000000..47f1422c8f16 --- /dev/null +++ b/site/public/v1/software/help-to-rtf/index.json @@ -0,0 +1,19 @@ +{ + "id": 4259, + "slug": "help-to-rtf", + "name": "Help to RTF", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140350137" + ], + "created_at": "2026-07-10T10:12:41.218584", + "updated_at": "2026-07-10T10:12:41.218584", + "url": "/v1/software/help-to-rtf" +} diff --git a/site/public/v1/software/help/index.json b/site/public/v1/software/help/index.json new file mode 100644 index 000000000000..5be30a4b92a1 --- /dev/null +++ b/site/public/v1/software/help/index.json @@ -0,0 +1,19 @@ +{ + "id": 4260, + "slug": "help", + "name": "help", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2985722" + ], + "created_at": "2026-07-10T10:12:41.218584", + "updated_at": "2026-07-10T10:12:41.218584", + "url": "/v1/software/help" +} diff --git a/site/public/v1/software/helpdeco/index.json b/site/public/v1/software/helpdeco/index.json new file mode 100644 index 000000000000..56320546fdfd --- /dev/null +++ b/site/public/v1/software/helpdeco/index.json @@ -0,0 +1,19 @@ +{ + "id": 4261, + "slug": "helpdeco", + "name": "helpdeco", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124733911" + ], + "created_at": "2026-07-10T10:12:41.219580", + "updated_at": "2026-07-10T10:12:41.219580", + "url": "/v1/software/helpdeco" +} diff --git a/site/public/v1/software/helpdesk/index.json b/site/public/v1/software/helpdesk/index.json new file mode 100644 index 000000000000..87b08bf4579c --- /dev/null +++ b/site/public/v1/software/helpdesk/index.json @@ -0,0 +1,29 @@ +{ + "id": 4262, + "slug": "helpdesk", + "name": "HelpDesk", + "release_date": null, + "developers": [ + "Text, Inc.", + "Text" + ], + "publishers": [ + "Text", + "Text, Inc." + ], + "operating_systems": [ + "web browser" + ], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125939905" + ], + "created_at": "2026-07-10T10:12:41.219580", + "updated_at": "2026-07-10T10:12:41.219580", + "url": "/v1/software/helpdesk" +} diff --git a/site/public/v1/software/helpwire/index.json b/site/public/v1/software/helpwire/index.json new file mode 100644 index 000000000000..ba9c5ac39c08 --- /dev/null +++ b/site/public/v1/software/helpwire/index.json @@ -0,0 +1,24 @@ +{ + "id": 4263, + "slug": "helpwire", + "name": "HelpWire", + "release_date": null, + "developers": [ + "Electronic Team" + ], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q132146439" + ], + "created_at": "2026-07-10T10:12:41.219580", + "updated_at": "2026-07-10T10:12:41.219580", + "url": "/v1/software/helpwire" +} diff --git a/site/public/v1/software/hemismas/index.json b/site/public/v1/software/hemismas/index.json new file mode 100644 index 000000000000..84bbeb788fba --- /dev/null +++ b/site/public/v1/software/hemismas/index.json @@ -0,0 +1,21 @@ +{ + "id": 4264, + "slug": "hemismas", + "name": "Hemismas", + "release_date": null, + "developers": [ + "Abdullaev Javokhirbek Zokirjon ugli" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139990018" + ], + "created_at": "2026-07-10T10:12:41.219580", + "updated_at": "2026-07-10T10:12:41.219580", + "url": "/v1/software/hemismas" +} diff --git a/site/public/v1/software/hemospat/index.json b/site/public/v1/software/hemospat/index.json new file mode 100644 index 000000000000..ada454aeb298 --- /dev/null +++ b/site/public/v1/software/hemospat/index.json @@ -0,0 +1,23 @@ +{ + "id": 4265, + "slug": "hemospat", + "name": "HemoSpat", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Windows 8.1", + "Windows 7", + "macOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16972872" + ], + "created_at": "2026-07-10T10:12:41.219580", + "updated_at": "2026-07-10T10:12:41.219580", + "url": "/v1/software/hemospat" +} diff --git a/site/public/v1/software/henshin/index.json b/site/public/v1/software/henshin/index.json new file mode 100644 index 000000000000..ec859ec0fdf7 --- /dev/null +++ b/site/public/v1/software/henshin/index.json @@ -0,0 +1,19 @@ +{ + "id": 4266, + "slug": "henshin", + "name": "Henshin", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q90819957" + ], + "created_at": "2026-07-10T10:12:41.220580", + "updated_at": "2026-07-10T10:12:41.220580", + "url": "/v1/software/henshin" +} diff --git a/site/public/v1/software/her/index.json b/site/public/v1/software/her/index.json new file mode 100644 index 000000000000..186f214fe5be --- /dev/null +++ b/site/public/v1/software/her/index.json @@ -0,0 +1,19 @@ +{ + "id": 4267, + "slug": "her", + "name": "Her", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16927788" + ], + "created_at": "2026-07-10T10:12:41.220580", + "updated_at": "2026-07-10T10:12:41.220580", + "url": "/v1/software/her" +} diff --git a/site/public/v1/software/heras-af/index.json b/site/public/v1/software/heras-af/index.json new file mode 100644 index 000000000000..2d1e9e88e4d2 --- /dev/null +++ b/site/public/v1/software/heras-af/index.json @@ -0,0 +1,25 @@ +{ + "id": 4268, + "slug": "heras-af", + "name": "HERAS-AF", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "cross-platform" + ], + "programming_languages": [ + "Java" + ], + "licenses": [ + "Apache License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5629459" + ], + "created_at": "2026-07-10T10:12:41.220580", + "updated_at": "2026-07-10T10:12:41.221580", + "url": "/v1/software/heras-af" +} diff --git a/site/public/v1/software/herdsman/index.json b/site/public/v1/software/herdsman/index.json new file mode 100644 index 000000000000..09beae9ab8fe --- /dev/null +++ b/site/public/v1/software/herdsman/index.json @@ -0,0 +1,19 @@ +{ + "id": 4269, + "slug": "herdsman", + "name": "Herdsman", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106352913" + ], + "created_at": "2026-07-10T10:12:41.221580", + "updated_at": "2026-07-10T10:12:41.221580", + "url": "/v1/software/herdsman" +} diff --git a/site/public/v1/software/here-wego/index.json b/site/public/v1/software/here-wego/index.json new file mode 100644 index 000000000000..3d3b4a138938 --- /dev/null +++ b/site/public/v1/software/here-wego/index.json @@ -0,0 +1,21 @@ +{ + "id": 4270, + "slug": "here-wego", + "name": "HERE WeGo", + "release_date": null, + "developers": [ + "Here Technologies" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q20647408" + ], + "created_at": "2026-07-10T10:12:41.221580", + "updated_at": "2026-07-10T10:12:41.221580", + "url": "/v1/software/here-wego" +} diff --git a/site/public/v1/software/hermetic-word-frequency-counter/index.json b/site/public/v1/software/hermetic-word-frequency-counter/index.json new file mode 100644 index 000000000000..17f99295bf5e --- /dev/null +++ b/site/public/v1/software/hermetic-word-frequency-counter/index.json @@ -0,0 +1,19 @@ +{ + "id": 4271, + "slug": "hermetic-word-frequency-counter", + "name": "Hermetic Word Frequency Counter", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087814" + ], + "created_at": "2026-07-10T10:12:41.221580", + "updated_at": "2026-07-10T10:12:41.221580", + "url": "/v1/software/hermetic-word-frequency-counter" +} diff --git a/site/public/v1/software/hermit/index.json b/site/public/v1/software/hermit/index.json new file mode 100644 index 000000000000..2083859b5a26 --- /dev/null +++ b/site/public/v1/software/hermit/index.json @@ -0,0 +1,19 @@ +{ + "id": 4272, + "slug": "hermit", + "name": "Hermit", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113012289" + ], + "created_at": "2026-07-10T10:12:41.222687", + "updated_at": "2026-07-10T10:12:41.222687", + "url": "/v1/software/hermit" +} diff --git a/site/public/v1/software/hero-hosted-pbx/index.json b/site/public/v1/software/hero-hosted-pbx/index.json new file mode 100644 index 000000000000..591434fd59e1 --- /dev/null +++ b/site/public/v1/software/hero-hosted-pbx/index.json @@ -0,0 +1,23 @@ +{ + "id": 4273, + "slug": "hero-hosted-pbx", + "name": "HERO Hosted PBX", + "release_date": "2008-01-01", + "developers": [ + "Dialexia" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18347824" + ], + "created_at": "2026-07-10T10:12:41.222687", + "updated_at": "2026-07-10T10:12:41.222687", + "url": "/v1/software/hero-hosted-pbx" +} diff --git a/site/public/v1/software/heroic-games-launcher/index.json b/site/public/v1/software/heroic-games-launcher/index.json new file mode 100644 index 000000000000..29fd2b6c0509 --- /dev/null +++ b/site/public/v1/software/heroic-games-launcher/index.json @@ -0,0 +1,28 @@ +{ + "id": 4274, + "slug": "heroic-games-launcher", + "name": "Heroic Games Launcher", + "release_date": "2020-01-01", + "developers": [], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [ + "Cascading Style Sheets", + "TypeScript", + "Sass" + ], + "licenses": [ + "GNU General Public License, version 3.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123510384" + ], + "created_at": "2026-07-10T10:12:41.222687", + "updated_at": "2026-07-10T10:12:41.222687", + "url": "/v1/software/heroic-games-launcher" +} diff --git a/site/public/v1/software/heron/index.json b/site/public/v1/software/heron/index.json new file mode 100644 index 000000000000..399ff7c6d5ff --- /dev/null +++ b/site/public/v1/software/heron/index.json @@ -0,0 +1,21 @@ +{ + "id": 4275, + "slug": "heron", + "name": "Heron", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Java" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25212139" + ], + "created_at": "2026-07-10T10:12:41.223583", + "updated_at": "2026-07-10T10:12:41.223583", + "url": "/v1/software/heron" +} diff --git a/site/public/v1/software/herosoft-sthvcd/index.json b/site/public/v1/software/herosoft-sthvcd/index.json new file mode 100644 index 000000000000..5949b17f9242 --- /dev/null +++ b/site/public/v1/software/herosoft-sthvcd/index.json @@ -0,0 +1,19 @@ +{ + "id": 4276, + "slug": "herosoft-sthvcd", + "name": "Herosoft STHVCD", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q15928738" + ], + "created_at": "2026-07-10T10:12:41.223583", + "updated_at": "2026-07-10T10:12:41.223583", + "url": "/v1/software/herosoft-sthvcd" +} diff --git a/site/public/v1/software/hessian/index.json b/site/public/v1/software/hessian/index.json new file mode 100644 index 000000000000..99fd0da44f7f --- /dev/null +++ b/site/public/v1/software/hessian/index.json @@ -0,0 +1,23 @@ +{ + "id": 4277, + "slug": "hessian", + "name": "Hessian", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Java" + ], + "licenses": [ + "Apache License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1615863" + ], + "created_at": "2026-07-10T10:12:41.223583", + "updated_at": "2026-07-10T10:12:41.223583", + "url": "/v1/software/hessian" +} diff --git a/site/public/v1/software/hetman-partition-recovery/index.json b/site/public/v1/software/hetman-partition-recovery/index.json new file mode 100644 index 000000000000..2c4c51956bab --- /dev/null +++ b/site/public/v1/software/hetman-partition-recovery/index.json @@ -0,0 +1,19 @@ +{ + "id": 4278, + "slug": "hetman-partition-recovery", + "name": "Hetman Partition Recovery", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q20033505" + ], + "created_at": "2026-07-10T10:12:41.223583", + "updated_at": "2026-07-10T10:12:41.223583", + "url": "/v1/software/hetman-partition-recovery" +} diff --git a/site/public/v1/software/hetman-uneraser/index.json b/site/public/v1/software/hetman-uneraser/index.json new file mode 100644 index 000000000000..59f2ca3cfca0 --- /dev/null +++ b/site/public/v1/software/hetman-uneraser/index.json @@ -0,0 +1,23 @@ +{ + "id": 4279, + "slug": "hetman-uneraser", + "name": "Hetman Uneraser", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "shareware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4040622" + ], + "created_at": "2026-07-10T10:12:41.224580", + "updated_at": "2026-07-10T10:12:41.224580", + "url": "/v1/software/hetman-uneraser" +} diff --git a/site/public/v1/software/heurist/index.json b/site/public/v1/software/heurist/index.json new file mode 100644 index 000000000000..2685ed0d8558 --- /dev/null +++ b/site/public/v1/software/heurist/index.json @@ -0,0 +1,25 @@ +{ + "id": 4280, + "slug": "heurist", + "name": "Heurist", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [ + "PHP" + ], + "licenses": [ + "GNU General Public License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5748237" + ], + "created_at": "2026-07-10T10:12:41.224580", + "updated_at": "2026-07-10T10:12:41.224580", + "url": "/v1/software/heurist" +} diff --git a/site/public/v1/software/hevc-video-extensions/index.json b/site/public/v1/software/hevc-video-extensions/index.json new file mode 100644 index 000000000000..765a10ba07c5 --- /dev/null +++ b/site/public/v1/software/hevc-video-extensions/index.json @@ -0,0 +1,25 @@ +{ + "id": 4281, + "slug": "hevc-video-extensions", + "name": "HEVC Video Extensions", + "release_date": "2018-02-21", + "developers": [ + "Microsoft" + ], + "publishers": [ + "Microsoft" + ], + "operating_systems": [ + "Xbox One and Xbox Series X/S system software" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q87379549" + ], + "created_at": "2026-07-10T10:12:41.224580", + "updated_at": "2026-07-10T10:12:41.224580", + "url": "/v1/software/hevc-video-extensions" +} diff --git a/site/public/v1/software/hex/index.json b/site/public/v1/software/hex/index.json new file mode 100644 index 000000000000..c6877717d0c3 --- /dev/null +++ b/site/public/v1/software/hex/index.json @@ -0,0 +1,23 @@ +{ + "id": 4282, + "slug": "hex", + "name": "Hex", + "release_date": null, + "developers": [ + "Hex" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Python" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138943420" + ], + "created_at": "2026-07-10T10:12:41.225580", + "updated_at": "2026-07-10T10:12:41.225580", + "url": "/v1/software/hex" +} diff --git a/site/public/v1/software/hexagon/index.json b/site/public/v1/software/hexagon/index.json new file mode 100644 index 000000000000..239bbc40bd48 --- /dev/null +++ b/site/public/v1/software/hexagon/index.json @@ -0,0 +1,19 @@ +{ + "id": 4283, + "slug": "hexagon", + "name": "Hexagon", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2720336" + ], + "created_at": "2026-07-10T10:12:41.225580", + "updated_at": "2026-07-10T10:12:41.225580", + "url": "/v1/software/hexagon" +} diff --git a/site/public/v1/software/hexatomic/index.json b/site/public/v1/software/hexatomic/index.json new file mode 100644 index 000000000000..f336a4c691a0 --- /dev/null +++ b/site/public/v1/software/hexatomic/index.json @@ -0,0 +1,21 @@ +{ + "id": 4284, + "slug": "hexatomic", + "name": "Hexatomic", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Apache Software License 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135002983" + ], + "created_at": "2026-07-10T10:12:41.225580", + "updated_at": "2026-07-10T10:12:41.225580", + "url": "/v1/software/hexatomic" +} diff --git a/site/public/v1/software/hexxagon/index.json b/site/public/v1/software/hexxagon/index.json new file mode 100644 index 000000000000..ff9c4045da11 --- /dev/null +++ b/site/public/v1/software/hexxagon/index.json @@ -0,0 +1,19 @@ +{ + "id": 4285, + "slug": "hexxagon", + "name": "hexxagon", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60918642" + ], + "created_at": "2026-07-10T10:12:41.225580", + "updated_at": "2026-07-10T10:12:41.225580", + "url": "/v1/software/hexxagon" +} diff --git a/site/public/v1/software/heym/index.json b/site/public/v1/software/heym/index.json new file mode 100644 index 000000000000..fcdf8961e3fa --- /dev/null +++ b/site/public/v1/software/heym/index.json @@ -0,0 +1,27 @@ +{ + "id": 4286, + "slug": "heym", + "name": "Heym", + "release_date": "2026-04-28", + "developers": [ + "Ceren Kaya Akgün", + "Mehmet Burak Akgün" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Python", + "TypeScript" + ], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139570764" + ], + "created_at": "2026-07-10T10:12:41.226580", + "updated_at": "2026-07-10T10:12:41.226580", + "url": "/v1/software/heym" +} diff --git a/site/public/v1/software/hfss/index.json b/site/public/v1/software/hfss/index.json new file mode 100644 index 000000000000..31bef1b4848a --- /dev/null +++ b/site/public/v1/software/hfss/index.json @@ -0,0 +1,19 @@ +{ + "id": 4287, + "slug": "hfss", + "name": "HFSS", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5629526" + ], + "created_at": "2026-07-10T10:12:41.226580", + "updated_at": "2026-07-10T10:12:41.226580", + "url": "/v1/software/hfss" +} diff --git a/site/public/v1/software/hicolor-icon-theme/index.json b/site/public/v1/software/hicolor-icon-theme/index.json new file mode 100644 index 000000000000..1a0614728b98 --- /dev/null +++ b/site/public/v1/software/hicolor-icon-theme/index.json @@ -0,0 +1,21 @@ +{ + "id": 4288, + "slug": "hicolor-icon-theme", + "name": "hicolor-icon-theme", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "GNU General Public License, version 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065507" + ], + "created_at": "2026-07-10T10:12:41.226580", + "updated_at": "2026-07-10T10:12:41.226580", + "url": "/v1/software/hicolor-icon-theme" +} diff --git a/site/public/v1/software/hidapi/index.json b/site/public/v1/software/hidapi/index.json new file mode 100644 index 000000000000..dbd1fad700be --- /dev/null +++ b/site/public/v1/software/hidapi/index.json @@ -0,0 +1,22 @@ +{ + "id": 4289, + "slug": "hidapi", + "name": "hidapi", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "3-clause BSD License", + "GNU General Public License, version 3.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974924" + ], + "created_at": "2026-07-10T10:12:41.227706", + "updated_at": "2026-07-10T10:12:41.227706", + "url": "/v1/software/hidapi" +} diff --git a/site/public/v1/software/hidemaru-editor/index.json b/site/public/v1/software/hidemaru-editor/index.json new file mode 100644 index 000000000000..ad8e426ec4e2 --- /dev/null +++ b/site/public/v1/software/hidemaru-editor/index.json @@ -0,0 +1,19 @@ +{ + "id": 4290, + "slug": "hidemaru-editor", + "name": "Hidemaru Editor", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11594517" + ], + "created_at": "2026-07-10T10:12:41.227706", + "updated_at": "2026-07-10T10:12:41.227706", + "url": "/v1/software/hidemaru-editor" +} diff --git a/site/public/v1/software/hidpoint/index.json b/site/public/v1/software/hidpoint/index.json new file mode 100644 index 000000000000..7afec533ce30 --- /dev/null +++ b/site/public/v1/software/hidpoint/index.json @@ -0,0 +1,19 @@ +{ + "id": 4291, + "slug": "hidpoint", + "name": "HIDPoint", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5629633" + ], + "created_at": "2026-07-10T10:12:41.227706", + "updated_at": "2026-07-10T10:12:41.227706", + "url": "/v1/software/hidpoint" +} diff --git a/site/public/v1/software/hieroglyphika/index.json b/site/public/v1/software/hieroglyphika/index.json new file mode 100644 index 000000000000..ad822baacc7b --- /dev/null +++ b/site/public/v1/software/hieroglyphika/index.json @@ -0,0 +1,22 @@ +{ + "id": 4292, + "slug": "hieroglyphika", + "name": "Hieroglyphika", + "release_date": "2016-02-03", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [ + "strategy video game", + "role-playing video game" + ], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q97362569" + ], + "created_at": "2026-07-10T10:12:41.227706", + "updated_at": "2026-07-10T10:12:41.228663", + "url": "/v1/software/hieroglyphika" +} diff --git a/site/public/v1/software/hifiasm/index.json b/site/public/v1/software/hifiasm/index.json new file mode 100644 index 000000000000..ea6e20056751 --- /dev/null +++ b/site/public/v1/software/hifiasm/index.json @@ -0,0 +1,19 @@ +{ + "id": 4293, + "slug": "hifiasm", + "name": "hifiasm", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113018366" + ], + "created_at": "2026-07-10T10:12:41.228663", + "updated_at": "2026-07-10T10:12:41.228663", + "url": "/v1/software/hifiasm" +} diff --git a/site/public/v1/software/high-orbit-ion-cannon/index.json b/site/public/v1/software/high-orbit-ion-cannon/index.json new file mode 100644 index 000000000000..6237b4c64be1 --- /dev/null +++ b/site/public/v1/software/high-orbit-ion-cannon/index.json @@ -0,0 +1,24 @@ +{ + "id": 4294, + "slug": "high-orbit-ion-cannon", + "name": "High Orbit Ion Cannon", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [ + "Visual Basic" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22661279" + ], + "created_at": "2026-07-10T10:12:41.228663", + "updated_at": "2026-07-10T10:12:41.228663", + "url": "/v1/software/high-orbit-ion-cannon" +} diff --git a/site/public/v1/software/high-performance-parallex/index.json b/site/public/v1/software/high-performance-parallex/index.json new file mode 100644 index 000000000000..9d05772c6847 --- /dev/null +++ b/site/public/v1/software/high-performance-parallex/index.json @@ -0,0 +1,19 @@ +{ + "id": 4295, + "slug": "high-performance-parallex", + "name": "High Performance Parallex", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q55613712" + ], + "created_at": "2026-07-10T10:12:41.229673", + "updated_at": "2026-07-10T10:12:41.229673", + "url": "/v1/software/high-performance-parallex" +} diff --git a/site/public/v1/software/highlight/index.json b/site/public/v1/software/highlight/index.json new file mode 100644 index 000000000000..b92a24e08374 --- /dev/null +++ b/site/public/v1/software/highlight/index.json @@ -0,0 +1,19 @@ +{ + "id": 4296, + "slug": "highlight", + "name": "Highlight", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5759470" + ], + "created_at": "2026-07-10T10:12:41.229673", + "updated_at": "2026-07-10T10:12:41.229673", + "url": "/v1/software/highlight" +} diff --git a/site/public/v1/software/highly-available-storage/index.json b/site/public/v1/software/highly-available-storage/index.json new file mode 100644 index 000000000000..c132538f67be --- /dev/null +++ b/site/public/v1/software/highly-available-storage/index.json @@ -0,0 +1,19 @@ +{ + "id": 4297, + "slug": "highly-available-storage", + "name": "Highly Available STorage", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5759527" + ], + "created_at": "2026-07-10T10:12:41.229673", + "updated_at": "2026-07-10T10:12:41.229673", + "url": "/v1/software/highly-available-storage" +} diff --git a/site/public/v1/software/highly-scalable-data-service/index.json b/site/public/v1/software/highly-scalable-data-service/index.json new file mode 100644 index 000000000000..4b9bc74f516a --- /dev/null +++ b/site/public/v1/software/highly-scalable-data-service/index.json @@ -0,0 +1,27 @@ +{ + "id": 4298, + "slug": "highly-scalable-data-service", + "name": "Highly Scalable Data Service", + "release_date": null, + "developers": [ + "The HDF Group" + ], + "publishers": [], + "operating_systems": [ + "cross-platform" + ], + "programming_languages": [ + "Python" + ], + "licenses": [ + "Apache Software License 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q114859023" + ], + "created_at": "2026-07-10T10:12:41.229673", + "updated_at": "2026-07-10T10:12:41.229673", + "url": "/v1/software/highly-scalable-data-service" +} diff --git a/site/public/v1/software/highs-optimization-solver/index.json b/site/public/v1/software/highs-optimization-solver/index.json new file mode 100644 index 000000000000..90e098029c71 --- /dev/null +++ b/site/public/v1/software/highs-optimization-solver/index.json @@ -0,0 +1,21 @@ +{ + "id": 4299, + "slug": "highs-optimization-solver", + "name": "HiGHS optimization solver", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113289177" + ], + "created_at": "2026-07-10T10:12:41.230581", + "updated_at": "2026-07-10T10:12:41.230581", + "url": "/v1/software/highs-optimization-solver" +} diff --git a/site/public/v1/software/hiki/index.json b/site/public/v1/software/hiki/index.json new file mode 100644 index 000000000000..7913964a791d --- /dev/null +++ b/site/public/v1/software/hiki/index.json @@ -0,0 +1,19 @@ +{ + "id": 4300, + "slug": "hiki", + "name": "Hiki", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11223422" + ], + "created_at": "2026-07-10T10:12:41.230581", + "updated_at": "2026-07-10T10:12:41.230581", + "url": "/v1/software/hiki" +} diff --git a/site/public/v1/software/hily/index.json b/site/public/v1/software/hily/index.json new file mode 100644 index 000000000000..d6ad82a18e69 --- /dev/null +++ b/site/public/v1/software/hily/index.json @@ -0,0 +1,19 @@ +{ + "id": 4301, + "slug": "hily", + "name": "Hily", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q74409386" + ], + "created_at": "2026-07-10T10:12:41.230581", + "updated_at": "2026-07-10T10:12:41.230581", + "url": "/v1/software/hily" +} diff --git a/site/public/v1/software/hindi-to-punjabi-machine-translation-system/index.json b/site/public/v1/software/hindi-to-punjabi-machine-translation-system/index.json new file mode 100644 index 000000000000..46e816fa5d08 --- /dev/null +++ b/site/public/v1/software/hindi-to-punjabi-machine-translation-system/index.json @@ -0,0 +1,19 @@ +{ + "id": 4302, + "slug": "hindi-to-punjabi-machine-translation-system", + "name": "Hindi-to-Punjabi Machine Translation System", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3635314" + ], + "created_at": "2026-07-10T10:12:41.231654", + "updated_at": "2026-07-10T10:12:41.231654", + "url": "/v1/software/hindi-to-punjabi-machine-translation-system" +} diff --git a/site/public/v1/software/hinge/index.json b/site/public/v1/software/hinge/index.json new file mode 100644 index 000000000000..095681abe3e0 --- /dev/null +++ b/site/public/v1/software/hinge/index.json @@ -0,0 +1,21 @@ +{ + "id": 4303, + "slug": "hinge", + "name": "Hinge", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "visionOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115680335" + ], + "created_at": "2026-07-10T10:12:41.231654", + "updated_at": "2026-07-10T10:12:41.231654", + "url": "/v1/software/hinge" +} diff --git a/site/public/v1/software/hios/index.json b/site/public/v1/software/hios/index.json new file mode 100644 index 000000000000..40a511b816e3 --- /dev/null +++ b/site/public/v1/software/hios/index.json @@ -0,0 +1,21 @@ +{ + "id": 4304, + "slug": "hios", + "name": "HiOS", + "release_date": null, + "developers": [ + "Tecno Mobile" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28457860" + ], + "created_at": "2026-07-10T10:12:41.231654", + "updated_at": "2026-07-10T10:12:41.231654", + "url": "/v1/software/hios" +} diff --git a/site/public/v1/software/hipcrime/index.json b/site/public/v1/software/hipcrime/index.json new file mode 100644 index 000000000000..877b185606da --- /dev/null +++ b/site/public/v1/software/hipcrime/index.json @@ -0,0 +1,21 @@ +{ + "id": 4305, + "slug": "hipcrime", + "name": "Hipcrime", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Java" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5768058" + ], + "created_at": "2026-07-10T10:12:41.232657", + "updated_at": "2026-07-10T10:12:41.232657", + "url": "/v1/software/hipcrime" +} diff --git a/site/public/v1/software/hipnav/index.json b/site/public/v1/software/hipnav/index.json new file mode 100644 index 000000000000..5f2096000db1 --- /dev/null +++ b/site/public/v1/software/hipnav/index.json @@ -0,0 +1,21 @@ +{ + "id": 4306, + "slug": "hipnav", + "name": "HipNav", + "release_date": null, + "developers": [ + "Carnegie Mellon University" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5767832" + ], + "created_at": "2026-07-10T10:12:41.232657", + "updated_at": "2026-07-10T10:12:41.232657", + "url": "/v1/software/hipnav" +} diff --git a/site/public/v1/software/hirmeos-metrics-suite/index.json b/site/public/v1/software/hirmeos-metrics-suite/index.json new file mode 100644 index 000000000000..3eee31d54539 --- /dev/null +++ b/site/public/v1/software/hirmeos-metrics-suite/index.json @@ -0,0 +1,21 @@ +{ + "id": 4307, + "slug": "hirmeos-metrics-suite", + "name": "HIRMEOS metrics suite", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Python" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109569243" + ], + "created_at": "2026-07-10T10:12:41.232657", + "updated_at": "2026-07-10T10:12:41.232657", + "url": "/v1/software/hirmeos-metrics-suite" +} diff --git a/site/public/v1/software/history-of-slovenia-sistory-portal/index.json b/site/public/v1/software/history-of-slovenia-sistory-portal/index.json new file mode 100644 index 000000000000..724f8bbb684e --- /dev/null +++ b/site/public/v1/software/history-of-slovenia-sistory-portal/index.json @@ -0,0 +1,19 @@ +{ + "id": 4308, + "slug": "history-of-slovenia-sistory-portal", + "name": "History of Slovenia - SIstory portal", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085011" + ], + "created_at": "2026-07-10T10:12:41.233578", + "updated_at": "2026-07-10T10:12:41.233578", + "url": "/v1/software/history-of-slovenia-sistory-portal" +} diff --git a/site/public/v1/software/hit-clou/index.json b/site/public/v1/software/hit-clou/index.json new file mode 100644 index 000000000000..cb42bfb33047 --- /dev/null +++ b/site/public/v1/software/hit-clou/index.json @@ -0,0 +1,19 @@ +{ + "id": 4309, + "slug": "hit-clou", + "name": "HIT/CLOU", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1563727" + ], + "created_at": "2026-07-10T10:12:41.233578", + "updated_at": "2026-07-10T10:12:41.233578", + "url": "/v1/software/hit-clou" +} diff --git a/site/public/v1/software/hitoo/index.json b/site/public/v1/software/hitoo/index.json new file mode 100644 index 000000000000..fcb045fd264a --- /dev/null +++ b/site/public/v1/software/hitoo/index.json @@ -0,0 +1,19 @@ +{ + "id": 4310, + "slug": "hitoo", + "name": "Hitoo", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139013707" + ], + "created_at": "2026-07-10T10:12:41.233578", + "updated_at": "2026-07-10T10:12:41.233578", + "url": "/v1/software/hitoo" +} diff --git a/site/public/v1/software/hive-ui/index.json b/site/public/v1/software/hive-ui/index.json new file mode 100644 index 000000000000..901772669c7f --- /dev/null +++ b/site/public/v1/software/hive-ui/index.json @@ -0,0 +1,21 @@ +{ + "id": 4311, + "slug": "hive-ui", + "name": "Hive UI", + "release_date": null, + "developers": [ + "XOLO" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q19605524" + ], + "created_at": "2026-07-10T10:12:41.234576", + "updated_at": "2026-07-10T10:12:41.234576", + "url": "/v1/software/hive-ui" +} diff --git a/site/public/v1/software/hiview3/index.json b/site/public/v1/software/hiview3/index.json new file mode 100644 index 000000000000..84ef0673c232 --- /dev/null +++ b/site/public/v1/software/hiview3/index.json @@ -0,0 +1,19 @@ +{ + "id": 4312, + "slug": "hiview3", + "name": "Hiview3", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5872799" + ], + "created_at": "2026-07-10T10:12:41.234576", + "updated_at": "2026-07-10T10:12:41.234576", + "url": "/v1/software/hiview3" +} diff --git a/site/public/v1/software/hiyama-kiyoteru/index.json b/site/public/v1/software/hiyama-kiyoteru/index.json new file mode 100644 index 000000000000..bef80c7fe5a1 --- /dev/null +++ b/site/public/v1/software/hiyama-kiyoteru/index.json @@ -0,0 +1,19 @@ +{ + "id": 4313, + "slug": "hiyama-kiyoteru", + "name": "Hiyama Kiyoteru", + "release_date": "2009-12-04", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11549575" + ], + "created_at": "2026-07-10T10:12:41.234576", + "updated_at": "2026-07-10T10:12:41.235575", + "url": "/v1/software/hiyama-kiyoteru" +} diff --git a/site/public/v1/software/hkchat/index.json b/site/public/v1/software/hkchat/index.json new file mode 100644 index 000000000000..b6c064e53d95 --- /dev/null +++ b/site/public/v1/software/hkchat/index.json @@ -0,0 +1,19 @@ +{ + "id": 4314, + "slug": "hkchat", + "name": "HKChat", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137533762" + ], + "created_at": "2026-07-10T10:12:41.235575", + "updated_at": "2026-07-10T10:12:41.235575", + "url": "/v1/software/hkchat" +} diff --git a/site/public/v1/software/hmailserver/index.json b/site/public/v1/software/hmailserver/index.json new file mode 100644 index 000000000000..686f93c60f15 --- /dev/null +++ b/site/public/v1/software/hmailserver/index.json @@ -0,0 +1,21 @@ +{ + "id": 4315, + "slug": "hmailserver", + "name": "hMailServer", + "release_date": "2002-01-01", + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q285635" + ], + "created_at": "2026-07-10T10:12:41.235575", + "updated_at": "2026-07-10T10:12:41.235575", + "url": "/v1/software/hmailserver" +} diff --git a/site/public/v1/software/hnsky/index.json b/site/public/v1/software/hnsky/index.json new file mode 100644 index 000000000000..8d548195c794 --- /dev/null +++ b/site/public/v1/software/hnsky/index.json @@ -0,0 +1,23 @@ +{ + "id": 4316, + "slug": "hnsky", + "name": "HNSKY", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q490177" + ], + "created_at": "2026-07-10T10:12:41.235575", + "updated_at": "2026-07-10T10:12:41.235575", + "url": "/v1/software/hnsky" +} diff --git a/site/public/v1/software/hobbies/index.json b/site/public/v1/software/hobbies/index.json new file mode 100644 index 000000000000..f4d84a8d84e9 --- /dev/null +++ b/site/public/v1/software/hobbies/index.json @@ -0,0 +1,19 @@ +{ + "id": 4317, + "slug": "hobbies", + "name": "HOBBIES", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5635431" + ], + "created_at": "2026-07-10T10:12:41.236580", + "updated_at": "2026-07-10T10:12:41.236580", + "url": "/v1/software/hobbies" +} diff --git a/site/public/v1/software/hobo-request/index.json b/site/public/v1/software/hobo-request/index.json new file mode 100644 index 000000000000..e9b7ac01957a --- /dev/null +++ b/site/public/v1/software/hobo-request/index.json @@ -0,0 +1,24 @@ +{ + "id": 4318, + "slug": "hobo-request", + "name": "HOBO-request", + "release_date": "2022-07-21", + "developers": [ + "Luis Felipe R. Murillo", + "John Readey" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "GNU General Public License, version 3.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118146762" + ], + "created_at": "2026-07-10T10:12:41.236580", + "updated_at": "2026-07-10T10:12:41.236580", + "url": "/v1/software/hobo-request" +} diff --git a/site/public/v1/software/holiline-reminder/index.json b/site/public/v1/software/holiline-reminder/index.json new file mode 100644 index 000000000000..c5b70b7da6c1 --- /dev/null +++ b/site/public/v1/software/holiline-reminder/index.json @@ -0,0 +1,21 @@ +{ + "id": 4319, + "slug": "holiline-reminder", + "name": "Holiline Reminder", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25048596" + ], + "created_at": "2026-07-10T10:12:41.236580", + "updated_at": "2026-07-10T10:12:41.236580", + "url": "/v1/software/holiline-reminder" +} diff --git a/site/public/v1/software/holmes/index.json b/site/public/v1/software/holmes/index.json new file mode 100644 index 000000000000..9b91ed9b3241 --- /dev/null +++ b/site/public/v1/software/holmes/index.json @@ -0,0 +1,19 @@ +{ + "id": 4320, + "slug": "holmes", + "name": "Holmes", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25184471" + ], + "created_at": "2026-07-10T10:12:41.237638", + "updated_at": "2026-07-10T10:12:41.237638", + "url": "/v1/software/holmes" +} diff --git a/site/public/v1/software/holo/index.json b/site/public/v1/software/holo/index.json new file mode 100644 index 000000000000..da3240080405 --- /dev/null +++ b/site/public/v1/software/holo/index.json @@ -0,0 +1,19 @@ +{ + "id": 4321, + "slug": "holo", + "name": "Holo", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136933026" + ], + "created_at": "2026-07-10T10:12:41.237638", + "updated_at": "2026-07-10T10:12:41.237638", + "url": "/v1/software/holo" +} diff --git a/site/public/v1/software/holographic-versatile-disc/index.json b/site/public/v1/software/holographic-versatile-disc/index.json new file mode 100644 index 000000000000..3089fe029422 --- /dev/null +++ b/site/public/v1/software/holographic-versatile-disc/index.json @@ -0,0 +1,19 @@ +{ + "id": 4322, + "slug": "holographic-versatile-disc", + "name": "Holographic Versatile Disc", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q502906" + ], + "created_at": "2026-07-10T10:12:41.237638", + "updated_at": "2026-07-10T10:12:41.237638", + "url": "/v1/software/holographic-versatile-disc" +} diff --git a/site/public/v1/software/hololive/index.json b/site/public/v1/software/hololive/index.json new file mode 100644 index 000000000000..be75e3cf5434 --- /dev/null +++ b/site/public/v1/software/hololive/index.json @@ -0,0 +1,25 @@ +{ + "id": 4323, + "slug": "hololive", + "name": "hololive", + "release_date": "2017-12-20", + "developers": [ + "COVER Corporation" + ], + "publishers": [ + "COVER Corporation" + ], + "operating_systems": [ + "iOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60990236" + ], + "created_at": "2026-07-10T10:12:41.237638", + "updated_at": "2026-07-10T10:12:41.237638", + "url": "/v1/software/hololive" +} diff --git a/site/public/v1/software/holomatix-rendition/index.json b/site/public/v1/software/holomatix-rendition/index.json new file mode 100644 index 000000000000..be1f10cca9c3 --- /dev/null +++ b/site/public/v1/software/holomatix-rendition/index.json @@ -0,0 +1,21 @@ +{ + "id": 4324, + "slug": "holomatix-rendition", + "name": "Holomatix Rendition", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5884141" + ], + "created_at": "2026-07-10T10:12:41.238696", + "updated_at": "2026-07-10T10:12:41.238696", + "url": "/v1/software/holomatix-rendition" +} diff --git a/site/public/v1/software/homepage-penguin/index.json b/site/public/v1/software/homepage-penguin/index.json new file mode 100644 index 000000000000..c03c1b824c6b --- /dev/null +++ b/site/public/v1/software/homepage-penguin/index.json @@ -0,0 +1,21 @@ +{ + "id": 4325, + "slug": "homepage-penguin", + "name": "HomePage Penguin", + "release_date": null, + "developers": [ + "Matthias Jaap" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122730159" + ], + "created_at": "2026-07-10T10:12:41.238696", + "updated_at": "2026-07-10T10:12:41.238696", + "url": "/v1/software/homepage-penguin" +} diff --git a/site/public/v1/software/homepak/index.json b/site/public/v1/software/homepak/index.json new file mode 100644 index 000000000000..005b476737fd --- /dev/null +++ b/site/public/v1/software/homepak/index.json @@ -0,0 +1,23 @@ +{ + "id": 4326, + "slug": "homepak", + "name": "Homepak", + "release_date": null, + "developers": [ + "Batteries Included" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Action!" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3786445" + ], + "created_at": "2026-07-10T10:12:41.238696", + "updated_at": "2026-07-10T10:12:41.238696", + "url": "/v1/software/homepak" +} diff --git a/site/public/v1/software/honeyview/index.json b/site/public/v1/software/honeyview/index.json new file mode 100644 index 000000000000..2f8d53283b96 --- /dev/null +++ b/site/public/v1/software/honeyview/index.json @@ -0,0 +1,19 @@ +{ + "id": 4327, + "slug": "honeyview", + "name": "Honeyview", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q12589464" + ], + "created_at": "2026-07-10T10:12:41.239652", + "updated_at": "2026-07-10T10:12:41.239652", + "url": "/v1/software/honeyview" +} diff --git a/site/public/v1/software/hoodie/index.json b/site/public/v1/software/hoodie/index.json new file mode 100644 index 000000000000..6869567d0413 --- /dev/null +++ b/site/public/v1/software/hoodie/index.json @@ -0,0 +1,21 @@ +{ + "id": 4328, + "slug": "hoodie", + "name": "Hoodie", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Apache License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28453358" + ], + "created_at": "2026-07-10T10:12:41.239652", + "updated_at": "2026-07-10T10:12:41.239652", + "url": "/v1/software/hoodie" +} diff --git a/site/public/v1/software/hooked/index.json b/site/public/v1/software/hooked/index.json new file mode 100644 index 000000000000..1cadea615843 --- /dev/null +++ b/site/public/v1/software/hooked/index.json @@ -0,0 +1,19 @@ +{ + "id": 4329, + "slug": "hooked", + "name": "Hooked", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q48780589" + ], + "created_at": "2026-07-10T10:12:41.239652", + "updated_at": "2026-07-10T10:12:41.239652", + "url": "/v1/software/hooked" +} diff --git a/site/public/v1/software/hookiq/index.json b/site/public/v1/software/hookiq/index.json new file mode 100644 index 000000000000..e927f79c5e3f --- /dev/null +++ b/site/public/v1/software/hookiq/index.json @@ -0,0 +1,19 @@ +{ + "id": 4330, + "slug": "hookiq", + "name": "HOOKiQ", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140050382" + ], + "created_at": "2026-07-10T10:12:41.240635", + "updated_at": "2026-07-10T10:12:41.240635", + "url": "/v1/software/hookiq" +} diff --git a/site/public/v1/software/hoomd-blue/index.json b/site/public/v1/software/hoomd-blue/index.json new file mode 100644 index 000000000000..d8cdd7b087b9 --- /dev/null +++ b/site/public/v1/software/hoomd-blue/index.json @@ -0,0 +1,19 @@ +{ + "id": 4331, + "slug": "hoomd-blue", + "name": "hoomd-blue", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974927" + ], + "created_at": "2026-07-10T10:12:41.240635", + "updated_at": "2026-07-10T10:12:41.240635", + "url": "/v1/software/hoomd-blue" +} diff --git a/site/public/v1/software/hoops-3d-graphics-system/index.json b/site/public/v1/software/hoops-3d-graphics-system/index.json new file mode 100644 index 000000000000..8d52d97f3187 --- /dev/null +++ b/site/public/v1/software/hoops-3d-graphics-system/index.json @@ -0,0 +1,19 @@ +{ + "id": 4332, + "slug": "hoops-3d-graphics-system", + "name": "HOOPS 3D Graphics System", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5635456" + ], + "created_at": "2026-07-10T10:12:41.240635", + "updated_at": "2026-07-10T10:12:41.240635", + "url": "/v1/software/hoops-3d-graphics-system" +} diff --git a/site/public/v1/software/hopin-ltd/index.json b/site/public/v1/software/hopin-ltd/index.json new file mode 100644 index 000000000000..ca2db1c2791d --- /dev/null +++ b/site/public/v1/software/hopin-ltd/index.json @@ -0,0 +1,19 @@ +{ + "id": 4333, + "slug": "hopin-ltd", + "name": "Hopin Ltd.", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q100977865" + ], + "created_at": "2026-07-10T10:12:41.241654", + "updated_at": "2026-07-10T10:12:41.241654", + "url": "/v1/software/hopin-ltd" +} diff --git a/site/public/v1/software/hoppscotch/index.json b/site/public/v1/software/hoppscotch/index.json new file mode 100644 index 000000000000..9c308f1a2370 --- /dev/null +++ b/site/public/v1/software/hoppscotch/index.json @@ -0,0 +1,21 @@ +{ + "id": 4334, + "slug": "hoppscotch", + "name": "Hoppscotch", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135670202" + ], + "created_at": "2026-07-10T10:12:41.241654", + "updated_at": "2026-07-10T10:12:41.241654", + "url": "/v1/software/hoppscotch" +} diff --git a/site/public/v1/software/horgand/index.json b/site/public/v1/software/horgand/index.json new file mode 100644 index 000000000000..cb7a8e503154 --- /dev/null +++ b/site/public/v1/software/horgand/index.json @@ -0,0 +1,19 @@ +{ + "id": 4335, + "slug": "horgand", + "name": "Horgand", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62864453" + ], + "created_at": "2026-07-10T10:12:41.242639", + "updated_at": "2026-07-10T10:12:41.242639", + "url": "/v1/software/horgand" +} diff --git a/site/public/v1/software/horizons-software-starter-pack/index.json b/site/public/v1/software/horizons-software-starter-pack/index.json new file mode 100644 index 000000000000..cc7ca2c87ceb --- /dev/null +++ b/site/public/v1/software/horizons-software-starter-pack/index.json @@ -0,0 +1,19 @@ +{ + "id": 4336, + "slug": "horizons-software-starter-pack", + "name": "Horizons: Software Starter Pack", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5903516" + ], + "created_at": "2026-07-10T10:12:41.242639", + "updated_at": "2026-07-10T10:12:41.242639", + "url": "/v1/software/horizons-software-starter-pack" +} diff --git a/site/public/v1/software/hornby-track-master/index.json b/site/public/v1/software/hornby-track-master/index.json new file mode 100644 index 000000000000..59c5f249aac3 --- /dev/null +++ b/site/public/v1/software/hornby-track-master/index.json @@ -0,0 +1,21 @@ +{ + "id": 4337, + "slug": "hornby-track-master", + "name": "Hornby Track Master", + "release_date": "2011-09-19", + "developers": [ + "Hornby Hobbies Limited" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5904142" + ], + "created_at": "2026-07-10T10:12:41.242639", + "updated_at": "2026-07-10T10:12:41.242639", + "url": "/v1/software/hornby-track-master" +} diff --git a/site/public/v1/software/horned-owl/index.json b/site/public/v1/software/horned-owl/index.json new file mode 100644 index 000000000000..1cdb2c3e66ad --- /dev/null +++ b/site/public/v1/software/horned-owl/index.json @@ -0,0 +1,24 @@ +{ + "id": 4338, + "slug": "horned-owl", + "name": "horned-owl", + "release_date": null, + "developers": [ + "Phillip Lord", + "Janna Hastings" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "GNU General Public License, version 3.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116968042" + ], + "created_at": "2026-07-10T10:12:41.242639", + "updated_at": "2026-07-10T10:12:41.242639", + "url": "/v1/software/horned-owl" +} diff --git a/site/public/v1/software/horst/index.json b/site/public/v1/software/horst/index.json new file mode 100644 index 000000000000..eb369de14298 --- /dev/null +++ b/site/public/v1/software/horst/index.json @@ -0,0 +1,19 @@ +{ + "id": 4339, + "slug": "horst", + "name": "horst", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974928" + ], + "created_at": "2026-07-10T10:12:41.243656", + "updated_at": "2026-07-10T10:12:41.243656", + "url": "/v1/software/horst" +} diff --git a/site/public/v1/software/hosebird/index.json b/site/public/v1/software/hosebird/index.json new file mode 100644 index 000000000000..ead36b2f66be --- /dev/null +++ b/site/public/v1/software/hosebird/index.json @@ -0,0 +1,19 @@ +{ + "id": 4340, + "slug": "hosebird", + "name": "Hosebird", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4906744" + ], + "created_at": "2026-07-10T10:12:41.243656", + "updated_at": "2026-07-10T10:12:41.243656", + "url": "/v1/software/hosebird" +} diff --git a/site/public/v1/software/hosst/index.json b/site/public/v1/software/hosst/index.json new file mode 100644 index 000000000000..3702ff4b3ba9 --- /dev/null +++ b/site/public/v1/software/hosst/index.json @@ -0,0 +1,19 @@ +{ + "id": 4341, + "slug": "hosst", + "name": "HOSST", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138678698" + ], + "created_at": "2026-07-10T10:12:41.244578", + "updated_at": "2026-07-10T10:12:41.244578", + "url": "/v1/software/hosst" +} diff --git a/site/public/v1/software/hosttracker/index.json b/site/public/v1/software/hosttracker/index.json new file mode 100644 index 000000000000..63a64055f1a1 --- /dev/null +++ b/site/public/v1/software/hosttracker/index.json @@ -0,0 +1,19 @@ +{ + "id": 4342, + "slug": "hosttracker", + "name": "HostTracker", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5909201" + ], + "created_at": "2026-07-10T10:12:41.244578", + "updated_at": "2026-07-10T10:12:41.244578", + "url": "/v1/software/hosttracker" +} diff --git a/site/public/v1/software/hot-potatoes/index.json b/site/public/v1/software/hot-potatoes/index.json new file mode 100644 index 000000000000..e287cca208e1 --- /dev/null +++ b/site/public/v1/software/hot-potatoes/index.json @@ -0,0 +1,23 @@ +{ + "id": 4343, + "slug": "hot-potatoes", + "name": "Hot Potatoes", + "release_date": null, + "developers": [ + "University of Victoria" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1630722" + ], + "created_at": "2026-07-10T10:12:41.244578", + "updated_at": "2026-07-10T10:12:41.244578", + "url": "/v1/software/hot-potatoes" +} diff --git a/site/public/v1/software/hotjava-views/index.json b/site/public/v1/software/hotjava-views/index.json new file mode 100644 index 000000000000..49694a162353 --- /dev/null +++ b/site/public/v1/software/hotjava-views/index.json @@ -0,0 +1,21 @@ +{ + "id": 4344, + "slug": "hotjava-views", + "name": "HotJava Views", + "release_date": null, + "developers": [ + "Sun Microsystems" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5909620" + ], + "created_at": "2026-07-10T10:12:41.245576", + "updated_at": "2026-07-10T10:12:41.245576", + "url": "/v1/software/hotjava-views" +} diff --git a/site/public/v1/software/hotjava/index.json b/site/public/v1/software/hotjava/index.json new file mode 100644 index 000000000000..0fa139a69206 --- /dev/null +++ b/site/public/v1/software/hotjava/index.json @@ -0,0 +1,23 @@ +{ + "id": 4345, + "slug": "hotjava", + "name": "HotJava", + "release_date": null, + "developers": [ + "Sun Microsystems" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Java" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1358512" + ], + "created_at": "2026-07-10T10:12:41.245576", + "updated_at": "2026-07-10T10:12:41.245576", + "url": "/v1/software/hotjava" +} diff --git a/site/public/v1/software/hotruby/index.json b/site/public/v1/software/hotruby/index.json new file mode 100644 index 000000000000..618b64064757 --- /dev/null +++ b/site/public/v1/software/hotruby/index.json @@ -0,0 +1,21 @@ +{ + "id": 4346, + "slug": "hotruby", + "name": "HotRuby", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "cross-platform" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5909640" + ], + "created_at": "2026-07-10T10:12:41.245576", + "updated_at": "2026-07-10T10:12:41.245576", + "url": "/v1/software/hotruby" +} diff --git a/site/public/v1/software/hotsauce/index.json b/site/public/v1/software/hotsauce/index.json new file mode 100644 index 000000000000..766534d240fe --- /dev/null +++ b/site/public/v1/software/hotsauce/index.json @@ -0,0 +1,21 @@ +{ + "id": 4347, + "slug": "hotsauce", + "name": "HotSauce", + "release_date": null, + "developers": [ + "Apple Inc." + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1630664" + ], + "created_at": "2026-07-10T10:12:41.246580", + "updated_at": "2026-07-10T10:12:41.246580", + "url": "/v1/software/hotsauce" +} diff --git a/site/public/v1/software/hotspot-shieldxnxx/index.json b/site/public/v1/software/hotspot-shieldxnxx/index.json new file mode 100644 index 000000000000..024577edf55c --- /dev/null +++ b/site/public/v1/software/hotspot-shieldxnxx/index.json @@ -0,0 +1,25 @@ +{ + "id": 4348, + "slug": "hotspot-shieldxnxx", + "name": "Hotspot Shieldxnxx", + "release_date": "2008-01-01", + "developers": [ + "AnchorFree" + ], + "publishers": [], + "operating_systems": [ + "iOS", + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4040782" + ], + "created_at": "2026-07-10T10:12:41.246580", + "updated_at": "2026-07-10T10:12:41.246580", + "url": "/v1/software/hotspot-shieldxnxx" +} diff --git a/site/public/v1/software/houdini/index.json b/site/public/v1/software/houdini/index.json new file mode 100644 index 000000000000..b05d2077f233 --- /dev/null +++ b/site/public/v1/software/houdini/index.json @@ -0,0 +1,23 @@ +{ + "id": 4349, + "slug": "houdini", + "name": "Houdini", + "release_date": "1996-12-01", + "developers": [ + "Side Effects Software Inc." + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2595529" + ], + "created_at": "2026-07-10T10:12:41.246580", + "updated_at": "2026-07-10T10:12:41.246580", + "url": "/v1/software/houdini" +} diff --git a/site/public/v1/software/hound/index.json b/site/public/v1/software/hound/index.json new file mode 100644 index 000000000000..66dccd5f4522 --- /dev/null +++ b/site/public/v1/software/hound/index.json @@ -0,0 +1,23 @@ +{ + "id": 4350, + "slug": "hound", + "name": "hound", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Go" + ], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q132860991" + ], + "created_at": "2026-07-10T10:12:41.246580", + "updated_at": "2026-07-10T10:12:41.246580", + "url": "/v1/software/hound" +} diff --git a/site/public/v1/software/hourglass/index.json b/site/public/v1/software/hourglass/index.json new file mode 100644 index 000000000000..f0f8b861834e --- /dev/null +++ b/site/public/v1/software/hourglass/index.json @@ -0,0 +1,19 @@ +{ + "id": 4351, + "slug": "hourglass", + "name": "hourglass", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60916734" + ], + "created_at": "2026-07-10T10:12:41.247580", + "updated_at": "2026-07-10T10:12:41.247580", + "url": "/v1/software/hourglass" +} diff --git a/site/public/v1/software/hourzero-dev/index.json b/site/public/v1/software/hourzero-dev/index.json new file mode 100644 index 000000000000..cbcb318315e2 --- /dev/null +++ b/site/public/v1/software/hourzero-dev/index.json @@ -0,0 +1,25 @@ +{ + "id": 4352, + "slug": "hourzero-dev", + "name": "hourzero.dev", + "release_date": "2026-02-28", + "developers": [], + "publishers": [], + "operating_systems": [ + "cross-platform" + ], + "programming_languages": [ + "TypeScript" + ], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138479878" + ], + "created_at": "2026-07-10T10:12:41.247580", + "updated_at": "2026-07-10T10:12:41.247580", + "url": "/v1/software/hourzero-dev" +} diff --git a/site/public/v1/software/houseparty/index.json b/site/public/v1/software/houseparty/index.json new file mode 100644 index 000000000000..fec438eff644 --- /dev/null +++ b/site/public/v1/software/houseparty/index.json @@ -0,0 +1,21 @@ +{ + "id": 4353, + "slug": "houseparty", + "name": "Houseparty", + "release_date": null, + "developers": [ + "Epic Games" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q55639916" + ], + "created_at": "2026-07-10T10:12:41.247580", + "updated_at": "2026-07-10T10:12:41.247580", + "url": "/v1/software/houseparty" +} diff --git a/site/public/v1/software/houston-automatic-spooling-priority/index.json b/site/public/v1/software/houston-automatic-spooling-priority/index.json new file mode 100644 index 000000000000..d5867686c900 --- /dev/null +++ b/site/public/v1/software/houston-automatic-spooling-priority/index.json @@ -0,0 +1,23 @@ +{ + "id": 4354, + "slug": "houston-automatic-spooling-priority", + "name": "Houston Automatic Spooling Priority", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "OS/360" + ], + "programming_languages": [ + "assembly language" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q596433" + ], + "created_at": "2026-07-10T10:12:41.247580", + "updated_at": "2026-07-10T10:12:41.247580", + "url": "/v1/software/houston-automatic-spooling-priority" +} diff --git a/site/public/v1/software/hoyle-casino-2008/index.json b/site/public/v1/software/hoyle-casino-2008/index.json new file mode 100644 index 000000000000..d21eca6c7414 --- /dev/null +++ b/site/public/v1/software/hoyle-casino-2008/index.json @@ -0,0 +1,19 @@ +{ + "id": 4355, + "slug": "hoyle-casino-2008", + "name": "Hoyle Casino 2008", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140361207" + ], + "created_at": "2026-07-10T10:12:41.248738", + "updated_at": "2026-07-10T10:12:41.248738", + "url": "/v1/software/hoyle-casino-2008" +} diff --git a/site/public/v1/software/hozo/index.json b/site/public/v1/software/hozo/index.json new file mode 100644 index 000000000000..76da9ed7e22e --- /dev/null +++ b/site/public/v1/software/hozo/index.json @@ -0,0 +1,21 @@ +{ + "id": 4356, + "slug": "hozo", + "name": "Hozo", + "release_date": null, + "developers": [ + "The Institute of Scientific and Industrial Research,Osaka University" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5922997" + ], + "created_at": "2026-07-10T10:12:41.248738", + "updated_at": "2026-07-10T10:12:41.248738", + "url": "/v1/software/hozo" +} diff --git a/site/public/v1/software/hp-ac/index.json b/site/public/v1/software/hp-ac/index.json new file mode 100644 index 000000000000..6b1f7afe48f2 --- /dev/null +++ b/site/public/v1/software/hp-ac/index.json @@ -0,0 +1,19 @@ +{ + "id": 4357, + "slug": "hp-ac", + "name": "HP aC++", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5635754" + ], + "created_at": "2026-07-10T10:12:41.248738", + "updated_at": "2026-07-10T10:12:41.248738", + "url": "/v1/software/hp-ac" +} diff --git a/site/public/v1/software/hp-application-lifecycle-management/index.json b/site/public/v1/software/hp-application-lifecycle-management/index.json new file mode 100644 index 000000000000..5ff6ed890d5f --- /dev/null +++ b/site/public/v1/software/hp-application-lifecycle-management/index.json @@ -0,0 +1,22 @@ +{ + "id": 4358, + "slug": "hp-application-lifecycle-management", + "name": "HP Application Lifecycle Management", + "release_date": null, + "developers": [ + "Open Text Corporation", + "Hewlett-Packard" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5635637" + ], + "created_at": "2026-07-10T10:12:41.249665", + "updated_at": "2026-07-10T10:12:41.249665", + "url": "/v1/software/hp-application-lifecycle-management" +} diff --git a/site/public/v1/software/hp-business-service-management/index.json b/site/public/v1/software/hp-business-service-management/index.json new file mode 100644 index 000000000000..09c79b0a72b8 --- /dev/null +++ b/site/public/v1/software/hp-business-service-management/index.json @@ -0,0 +1,19 @@ +{ + "id": 4359, + "slug": "hp-business-service-management", + "name": "HP Business Service Management", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5635648" + ], + "created_at": "2026-07-10T10:12:41.249665", + "updated_at": "2026-07-10T10:12:41.249665", + "url": "/v1/software/hp-business-service-management" +} diff --git a/site/public/v1/software/hp-client-automation-software/index.json b/site/public/v1/software/hp-client-automation-software/index.json new file mode 100644 index 000000000000..6d2908515c6f --- /dev/null +++ b/site/public/v1/software/hp-client-automation-software/index.json @@ -0,0 +1,19 @@ +{ + "id": 4360, + "slug": "hp-client-automation-software", + "name": "HP Client Automation Software", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1228254" + ], + "created_at": "2026-07-10T10:12:41.249665", + "updated_at": "2026-07-10T10:12:41.249665", + "url": "/v1/software/hp-client-automation-software" +} diff --git a/site/public/v1/software/hp-cloud-service-automation-software/index.json b/site/public/v1/software/hp-cloud-service-automation-software/index.json new file mode 100644 index 000000000000..d84e53f6691e --- /dev/null +++ b/site/public/v1/software/hp-cloud-service-automation-software/index.json @@ -0,0 +1,19 @@ +{ + "id": 4361, + "slug": "hp-cloud-service-automation-software", + "name": "HP Cloud Service Automation Software", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5635650" + ], + "created_at": "2026-07-10T10:12:41.250676", + "updated_at": "2026-07-10T10:12:41.250676", + "url": "/v1/software/hp-cloud-service-automation-software" +} diff --git a/site/public/v1/software/hp-data-protector/index.json b/site/public/v1/software/hp-data-protector/index.json new file mode 100644 index 000000000000..d343c2be4db5 --- /dev/null +++ b/site/public/v1/software/hp-data-protector/index.json @@ -0,0 +1,23 @@ +{ + "id": 4362, + "slug": "hp-data-protector", + "name": "HP Data Protector", + "release_date": null, + "developers": [ + "Hewlett-Packard" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2374452" + ], + "created_at": "2026-07-10T10:12:41.250676", + "updated_at": "2026-07-10T10:12:41.250676", + "url": "/v1/software/hp-data-protector" +} diff --git a/site/public/v1/software/hp-icewall-sso/index.json b/site/public/v1/software/hp-icewall-sso/index.json new file mode 100644 index 000000000000..d3af7a261483 --- /dev/null +++ b/site/public/v1/software/hp-icewall-sso/index.json @@ -0,0 +1,21 @@ +{ + "id": 4363, + "slug": "hp-icewall-sso", + "name": "HP IceWall SSO", + "release_date": null, + "developers": [ + "Hewlett Packard Enterprise" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5635671" + ], + "created_at": "2026-07-10T10:12:41.250676", + "updated_at": "2026-07-10T10:12:41.250676", + "url": "/v1/software/hp-icewall-sso" +} diff --git a/site/public/v1/software/hp-information-management-software/index.json b/site/public/v1/software/hp-information-management-software/index.json new file mode 100644 index 000000000000..3e03d29ccc67 --- /dev/null +++ b/site/public/v1/software/hp-information-management-software/index.json @@ -0,0 +1,19 @@ +{ + "id": 4364, + "slug": "hp-information-management-software", + "name": "HP Information Management Software", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5635673" + ], + "created_at": "2026-07-10T10:12:41.251670", + "updated_at": "2026-07-10T10:12:41.251670", + "url": "/v1/software/hp-information-management-software" +} diff --git a/site/public/v1/software/hp-network-management-center/index.json b/site/public/v1/software/hp-network-management-center/index.json new file mode 100644 index 000000000000..eebc723fcff0 --- /dev/null +++ b/site/public/v1/software/hp-network-management-center/index.json @@ -0,0 +1,21 @@ +{ + "id": 4365, + "slug": "hp-network-management-center", + "name": "HP Network Management Center", + "release_date": null, + "developers": [ + "Hewlett-Packard" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5635697" + ], + "created_at": "2026-07-10T10:12:41.251670", + "updated_at": "2026-07-10T10:12:41.251670", + "url": "/v1/software/hp-network-management-center" +} diff --git a/site/public/v1/software/hp-opencall/index.json b/site/public/v1/software/hp-opencall/index.json new file mode 100644 index 000000000000..75f6529bba5b --- /dev/null +++ b/site/public/v1/software/hp-opencall/index.json @@ -0,0 +1,21 @@ +{ + "id": 4366, + "slug": "hp-opencall", + "name": "HP OpenCall", + "release_date": null, + "developers": [ + "Hewlett-Packard" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5635704" + ], + "created_at": "2026-07-10T10:12:41.251670", + "updated_at": "2026-07-10T10:12:41.251670", + "url": "/v1/software/hp-opencall" +} diff --git a/site/public/v1/software/hp-openview/index.json b/site/public/v1/software/hp-openview/index.json new file mode 100644 index 000000000000..1d91bdb17e36 --- /dev/null +++ b/site/public/v1/software/hp-openview/index.json @@ -0,0 +1,21 @@ +{ + "id": 4367, + "slug": "hp-openview", + "name": "HP OpenView", + "release_date": null, + "developers": [ + "Hewlett-Packard" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q515316" + ], + "created_at": "2026-07-10T10:12:41.252695", + "updated_at": "2026-07-10T10:12:41.252695", + "url": "/v1/software/hp-openview" +} diff --git a/site/public/v1/software/hp-quicktest-professional/index.json b/site/public/v1/software/hp-quicktest-professional/index.json new file mode 100644 index 000000000000..67dd46cca60e --- /dev/null +++ b/site/public/v1/software/hp-quicktest-professional/index.json @@ -0,0 +1,21 @@ +{ + "id": 4368, + "slug": "hp-quicktest-professional", + "name": "HP QuickTest Professional", + "release_date": null, + "developers": [ + "Hewlett Packard Enterprise" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4040296" + ], + "created_at": "2026-07-10T10:12:41.252695", + "updated_at": "2026-07-10T10:12:41.252695", + "url": "/v1/software/hp-quicktest-professional" +} diff --git a/site/public/v1/software/hp-webinspect/index.json b/site/public/v1/software/hp-webinspect/index.json new file mode 100644 index 000000000000..e9d1bcd6c54c --- /dev/null +++ b/site/public/v1/software/hp-webinspect/index.json @@ -0,0 +1,21 @@ +{ + "id": 4369, + "slug": "hp-webinspect", + "name": "HP WebInspect", + "release_date": null, + "developers": [ + "HP Inc." + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2781532" + ], + "created_at": "2026-07-10T10:12:41.252695", + "updated_at": "2026-07-10T10:12:41.252695", + "url": "/v1/software/hp-webinspect" +} diff --git a/site/public/v1/software/hp-winrunner/index.json b/site/public/v1/software/hp-winrunner/index.json new file mode 100644 index 000000000000..46a19e3a217e --- /dev/null +++ b/site/public/v1/software/hp-winrunner/index.json @@ -0,0 +1,19 @@ +{ + "id": 4370, + "slug": "hp-winrunner", + "name": "HP WinRunner", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2583318" + ], + "created_at": "2026-07-10T10:12:41.252695", + "updated_at": "2026-07-10T10:12:41.252695", + "url": "/v1/software/hp-winrunner" +} diff --git a/site/public/v1/software/hpc-challenge-benchmark/index.json b/site/public/v1/software/hpc-challenge-benchmark/index.json new file mode 100644 index 000000000000..0bcee50a596e --- /dev/null +++ b/site/public/v1/software/hpc-challenge-benchmark/index.json @@ -0,0 +1,19 @@ +{ + "id": 4371, + "slug": "hpc-challenge-benchmark", + "name": "HPC Challenge Benchmark", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4040289" + ], + "created_at": "2026-07-10T10:12:41.253681", + "updated_at": "2026-07-10T10:12:41.253681", + "url": "/v1/software/hpc-challenge-benchmark" +} diff --git a/site/public/v1/software/hpcg-benchmark/index.json b/site/public/v1/software/hpcg-benchmark/index.json new file mode 100644 index 000000000000..f161ae6ab1f6 --- /dev/null +++ b/site/public/v1/software/hpcg-benchmark/index.json @@ -0,0 +1,23 @@ +{ + "id": 4372, + "slug": "hpcg-benchmark", + "name": "HPCG benchmark", + "release_date": null, + "developers": [ + "Jack Dongarra", + "Piotr Luszczek", + "Michael Heroux" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25345993" + ], + "created_at": "2026-07-10T10:12:41.253681", + "updated_at": "2026-07-10T10:12:41.253681", + "url": "/v1/software/hpcg-benchmark" +} diff --git a/site/public/v1/software/hpipm/index.json b/site/public/v1/software/hpipm/index.json new file mode 100644 index 000000000000..d6633a558204 --- /dev/null +++ b/site/public/v1/software/hpipm/index.json @@ -0,0 +1,21 @@ +{ + "id": 4373, + "slug": "hpipm", + "name": "HPIPM", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "2-clause BSD License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134395572" + ], + "created_at": "2026-07-10T10:12:41.254633", + "updated_at": "2026-07-10T10:12:41.254633", + "url": "/v1/software/hpipm" +} diff --git a/site/public/v1/software/hpl-ai/index.json b/site/public/v1/software/hpl-ai/index.json new file mode 100644 index 000000000000..cdb34eabe968 --- /dev/null +++ b/site/public/v1/software/hpl-ai/index.json @@ -0,0 +1,19 @@ +{ + "id": 4374, + "slug": "hpl-ai", + "name": "HPL-AI", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109524982" + ], + "created_at": "2026-07-10T10:12:41.254633", + "updated_at": "2026-07-10T10:12:41.254633", + "url": "/v1/software/hpl-ai" +} diff --git a/site/public/v1/software/hrhis/index.json b/site/public/v1/software/hrhis/index.json new file mode 100644 index 000000000000..86368a96f89a --- /dev/null +++ b/site/public/v1/software/hrhis/index.json @@ -0,0 +1,21 @@ +{ + "id": 4375, + "slug": "hrhis", + "name": "HRHIS", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "PHP" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5635796" + ], + "created_at": "2026-07-10T10:12:41.254633", + "updated_at": "2026-07-10T10:12:41.254633", + "url": "/v1/software/hrhis" +} diff --git a/site/public/v1/software/ht-bookworm/index.json b/site/public/v1/software/ht-bookworm/index.json new file mode 100644 index 000000000000..0c9fc3aa7e71 --- /dev/null +++ b/site/public/v1/software/ht-bookworm/index.json @@ -0,0 +1,19 @@ +{ + "id": 4376, + "slug": "ht-bookworm", + "name": "HT-Bookworm", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085012" + ], + "created_at": "2026-07-10T10:12:41.254633", + "updated_at": "2026-07-10T10:12:41.254633", + "url": "/v1/software/ht-bookworm" +} diff --git a/site/public/v1/software/htag/index.json b/site/public/v1/software/htag/index.json new file mode 100644 index 000000000000..278fb16fb036 --- /dev/null +++ b/site/public/v1/software/htag/index.json @@ -0,0 +1,19 @@ +{ + "id": 4377, + "slug": "htag", + "name": "htag", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62864447" + ], + "created_at": "2026-07-10T10:12:41.255687", + "updated_at": "2026-07-10T10:12:41.255687", + "url": "/v1/software/htag" +} diff --git a/site/public/v1/software/htc-sense/index.json b/site/public/v1/software/htc-sense/index.json new file mode 100644 index 000000000000..4294651ab833 --- /dev/null +++ b/site/public/v1/software/htc-sense/index.json @@ -0,0 +1,19 @@ +{ + "id": 4378, + "slug": "htc-sense", + "name": "HTC Sense", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q718504" + ], + "created_at": "2026-07-10T10:12:41.255687", + "updated_at": "2026-07-10T10:12:41.255687", + "url": "/v1/software/htc-sense" +} diff --git a/site/public/v1/software/htk/index.json b/site/public/v1/software/htk/index.json new file mode 100644 index 000000000000..32403d60658a --- /dev/null +++ b/site/public/v1/software/htk/index.json @@ -0,0 +1,26 @@ +{ + "id": 4379, + "slug": "htk", + "name": "HTK", + "release_date": null, + "developers": [ + "Cambridge University Engineering Department" + ], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5636086" + ], + "created_at": "2026-07-10T10:12:41.255687", + "updated_at": "2026-07-10T10:12:41.256578", + "url": "/v1/software/htk" +} diff --git a/site/public/v1/software/html-viewer-3/index.json b/site/public/v1/software/html-viewer-3/index.json new file mode 100644 index 000000000000..43875a06ce75 --- /dev/null +++ b/site/public/v1/software/html-viewer-3/index.json @@ -0,0 +1,19 @@ +{ + "id": 4380, + "slug": "html-viewer-3", + "name": "HTML Viewer 3", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4040800" + ], + "created_at": "2026-07-10T10:12:41.256578", + "updated_at": "2026-07-10T10:12:41.256578", + "url": "/v1/software/html-viewer-3" +} diff --git a/site/public/v1/software/html-xml-utils/index.json b/site/public/v1/software/html-xml-utils/index.json new file mode 100644 index 000000000000..8014a402f392 --- /dev/null +++ b/site/public/v1/software/html-xml-utils/index.json @@ -0,0 +1,19 @@ +{ + "id": 4381, + "slug": "html-xml-utils", + "name": "HTML-XML-utils", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62864441" + ], + "created_at": "2026-07-10T10:12:41.256578", + "updated_at": "2026-07-10T10:12:41.256578", + "url": "/v1/software/html-xml-utils" +} diff --git a/site/public/v1/software/html/index.json b/site/public/v1/software/html/index.json new file mode 100644 index 000000000000..c42936aa35c0 --- /dev/null +++ b/site/public/v1/software/html/index.json @@ -0,0 +1,19 @@ +{ + "id": 4382, + "slug": "html", + "name": "HTML +", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5890781" + ], + "created_at": "2026-07-10T10:12:41.256578", + "updated_at": "2026-07-10T10:12:41.256578", + "url": "/v1/software/html" +} diff --git a/site/public/v1/software/html5-boilerplate/index.json b/site/public/v1/software/html5-boilerplate/index.json new file mode 100644 index 000000000000..07fccab40bbe --- /dev/null +++ b/site/public/v1/software/html5-boilerplate/index.json @@ -0,0 +1,19 @@ +{ + "id": 4383, + "slug": "html5-boilerplate", + "name": "HTML5 Boilerplate", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60596715" + ], + "created_at": "2026-07-10T10:12:41.257575", + "updated_at": "2026-07-10T10:12:41.257575", + "url": "/v1/software/html5-boilerplate" +} diff --git a/site/public/v1/software/htmlup/index.json b/site/public/v1/software/htmlup/index.json new file mode 100644 index 000000000000..69fb8b37758f --- /dev/null +++ b/site/public/v1/software/htmlup/index.json @@ -0,0 +1,19 @@ +{ + "id": 4384, + "slug": "htmlup", + "name": "HTMLUP", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085013" + ], + "created_at": "2026-07-10T10:12:41.257575", + "updated_at": "2026-07-10T10:12:41.257575", + "url": "/v1/software/htmlup" +} diff --git a/site/public/v1/software/htsjdk/index.json b/site/public/v1/software/htsjdk/index.json new file mode 100644 index 000000000000..a38a11fb519b --- /dev/null +++ b/site/public/v1/software/htsjdk/index.json @@ -0,0 +1,21 @@ +{ + "id": 4385, + "slug": "htsjdk", + "name": "HTSJDK", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Java" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113018351" + ], + "created_at": "2026-07-10T10:12:41.257575", + "updated_at": "2026-07-10T10:12:41.257575", + "url": "/v1/software/htsjdk" +} diff --git a/site/public/v1/software/httping/index.json b/site/public/v1/software/httping/index.json new file mode 100644 index 000000000000..4862dd396d00 --- /dev/null +++ b/site/public/v1/software/httping/index.json @@ -0,0 +1,19 @@ +{ + "id": 4386, + "slug": "httping", + "name": "httping", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110474722" + ], + "created_at": "2026-07-10T10:12:41.258668", + "updated_at": "2026-07-10T10:12:41.258668", + "url": "/v1/software/httping" +} diff --git a/site/public/v1/software/httpry/index.json b/site/public/v1/software/httpry/index.json new file mode 100644 index 000000000000..a491c1d935b2 --- /dev/null +++ b/site/public/v1/software/httpry/index.json @@ -0,0 +1,19 @@ +{ + "id": 4387, + "slug": "httpry", + "name": "httpry", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110474732" + ], + "created_at": "2026-07-10T10:12:41.258668", + "updated_at": "2026-07-10T10:12:41.258668", + "url": "/v1/software/httpry" +} diff --git a/site/public/v1/software/huawei-hicar/index.json b/site/public/v1/software/huawei-hicar/index.json new file mode 100644 index 000000000000..6d85aebf62e4 --- /dev/null +++ b/site/public/v1/software/huawei-hicar/index.json @@ -0,0 +1,25 @@ +{ + "id": 4388, + "slug": "huawei-hicar", + "name": "Huawei HiCar", + "release_date": "2020-05-09", + "developers": [ + "Huawei" + ], + "publishers": [], + "operating_systems": [ + "Android 10" + ], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125457864" + ], + "created_at": "2026-07-10T10:12:41.258668", + "updated_at": "2026-07-10T10:12:41.258668", + "url": "/v1/software/huawei-hicar" +} diff --git a/site/public/v1/software/huawei-mobile-services/index.json b/site/public/v1/software/huawei-mobile-services/index.json new file mode 100644 index 000000000000..caef851b93aa --- /dev/null +++ b/site/public/v1/software/huawei-mobile-services/index.json @@ -0,0 +1,21 @@ +{ + "id": 4389, + "slug": "huawei-mobile-services", + "name": "Huawei Mobile Services", + "release_date": null, + "developers": [ + "Huawei" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q86729107" + ], + "created_at": "2026-07-10T10:12:41.259655", + "updated_at": "2026-07-10T10:12:41.259655", + "url": "/v1/software/huawei-mobile-services" +} diff --git a/site/public/v1/software/huawei-pay/index.json b/site/public/v1/software/huawei-pay/index.json new file mode 100644 index 000000000000..660889897f69 --- /dev/null +++ b/site/public/v1/software/huawei-pay/index.json @@ -0,0 +1,21 @@ +{ + "id": 4390, + "slug": "huawei-pay", + "name": "Huawei Pay", + "release_date": null, + "developers": [ + "Huawei" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q64254189" + ], + "created_at": "2026-07-10T10:12:41.259655", + "updated_at": "2026-07-10T10:12:41.259655", + "url": "/v1/software/huawei-pay" +} diff --git a/site/public/v1/software/hubstaff-desk/index.json b/site/public/v1/software/hubstaff-desk/index.json new file mode 100644 index 000000000000..20adb7e3c8cd --- /dev/null +++ b/site/public/v1/software/hubstaff-desk/index.json @@ -0,0 +1,28 @@ +{ + "id": 4391, + "slug": "hubstaff-desk", + "name": "Hubstaff Desk", + "release_date": null, + "developers": [ + "Hubstaff" + ], + "publishers": [], + "operating_systems": [ + "iOS", + "Mac operating system", + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "end-user license agreement" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110713542" + ], + "created_at": "2026-07-10T10:12:41.259655", + "updated_at": "2026-07-10T10:12:41.259655", + "url": "/v1/software/hubstaff-desk" +} diff --git a/site/public/v1/software/hubstaff-field/index.json b/site/public/v1/software/hubstaff-field/index.json new file mode 100644 index 000000000000..2e6a3ffc6e42 --- /dev/null +++ b/site/public/v1/software/hubstaff-field/index.json @@ -0,0 +1,28 @@ +{ + "id": 4392, + "slug": "hubstaff-field", + "name": "Hubstaff Field", + "release_date": null, + "developers": [ + "Hubstaff" + ], + "publishers": [], + "operating_systems": [ + "iOS", + "Mac operating system", + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "end-user license agreement" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110713564" + ], + "created_at": "2026-07-10T10:12:41.259655", + "updated_at": "2026-07-10T10:12:41.259655", + "url": "/v1/software/hubstaff-field" +} diff --git a/site/public/v1/software/hubstaff-tasks/index.json b/site/public/v1/software/hubstaff-tasks/index.json new file mode 100644 index 000000000000..7e630daca30d --- /dev/null +++ b/site/public/v1/software/hubstaff-tasks/index.json @@ -0,0 +1,28 @@ +{ + "id": 4393, + "slug": "hubstaff-tasks", + "name": "Hubstaff Tasks", + "release_date": null, + "developers": [ + "Hubstaff" + ], + "publishers": [], + "operating_systems": [ + "iOS", + "Mac operating system", + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "end-user license agreement" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110713615" + ], + "created_at": "2026-07-10T10:12:41.260648", + "updated_at": "2026-07-10T10:12:41.260648", + "url": "/v1/software/hubstaff-tasks" +} diff --git a/site/public/v1/software/hubstaff-time/index.json b/site/public/v1/software/hubstaff-time/index.json new file mode 100644 index 000000000000..6cd4f3bc123e --- /dev/null +++ b/site/public/v1/software/hubstaff-time/index.json @@ -0,0 +1,28 @@ +{ + "id": 4394, + "slug": "hubstaff-time", + "name": "Hubstaff Time", + "release_date": null, + "developers": [ + "Hubstaff" + ], + "publishers": [], + "operating_systems": [ + "iOS", + "Mac operating system", + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "end-user license agreement" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110713477" + ], + "created_at": "2026-07-10T10:12:41.260648", + "updated_at": "2026-07-10T10:12:41.260648", + "url": "/v1/software/hubstaff-time" +} diff --git a/site/public/v1/software/huggle/index.json b/site/public/v1/software/huggle/index.json new file mode 100644 index 000000000000..11f44e269a29 --- /dev/null +++ b/site/public/v1/software/huggle/index.json @@ -0,0 +1,21 @@ +{ + "id": 4395, + "slug": "huggle", + "name": "Huggle", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "iOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28134506" + ], + "created_at": "2026-07-10T10:12:41.260648", + "updated_at": "2026-07-10T10:12:41.260648", + "url": "/v1/software/huggle" +} diff --git a/site/public/v1/software/humanize-ai/index.json b/site/public/v1/software/humanize-ai/index.json new file mode 100644 index 000000000000..09755374f1df --- /dev/null +++ b/site/public/v1/software/humanize-ai/index.json @@ -0,0 +1,19 @@ +{ + "id": 4396, + "slug": "humanize-ai", + "name": "Humanize AI", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138847598" + ], + "created_at": "2026-07-10T10:12:41.260648", + "updated_at": "2026-07-10T10:12:41.260648", + "url": "/v1/software/humanize-ai" +} diff --git a/site/public/v1/software/humu/index.json b/site/public/v1/software/humu/index.json new file mode 100644 index 000000000000..44ae1cad632b --- /dev/null +++ b/site/public/v1/software/humu/index.json @@ -0,0 +1,19 @@ +{ + "id": 4397, + "slug": "humu", + "name": "Humu", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112262036" + ], + "created_at": "2026-07-10T10:12:41.261619", + "updated_at": "2026-07-10T10:12:41.261619", + "url": "/v1/software/humu" +} diff --git a/site/public/v1/software/hupnp-ng/index.json b/site/public/v1/software/hupnp-ng/index.json new file mode 100644 index 000000000000..864953dda3e7 --- /dev/null +++ b/site/public/v1/software/hupnp-ng/index.json @@ -0,0 +1,19 @@ +{ + "id": 4398, + "slug": "hupnp-ng", + "name": "hupnp-ng", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974930" + ], + "created_at": "2026-07-10T10:12:41.261619", + "updated_at": "2026-07-10T10:12:41.261619", + "url": "/v1/software/hupnp-ng" +} diff --git a/site/public/v1/software/hurl-it/index.json b/site/public/v1/software/hurl-it/index.json new file mode 100644 index 000000000000..cda960dcbf96 --- /dev/null +++ b/site/public/v1/software/hurl-it/index.json @@ -0,0 +1,21 @@ +{ + "id": 4399, + "slug": "hurl-it", + "name": "hurl.it", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108239205" + ], + "created_at": "2026-07-10T10:12:41.261619", + "updated_at": "2026-07-10T10:12:41.261619", + "url": "/v1/software/hurl-it" +} diff --git a/site/public/v1/software/hush/index.json b/site/public/v1/software/hush/index.json new file mode 100644 index 000000000000..8ea6991101f7 --- /dev/null +++ b/site/public/v1/software/hush/index.json @@ -0,0 +1,21 @@ +{ + "id": 4400, + "slug": "hush", + "name": "hush", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113308926" + ], + "created_at": "2026-07-10T10:12:41.262645", + "updated_at": "2026-07-10T10:12:41.262645", + "url": "/v1/software/hush" +} diff --git a/site/public/v1/software/hv/index.json b/site/public/v1/software/hv/index.json new file mode 100644 index 000000000000..1be4eded1c5e --- /dev/null +++ b/site/public/v1/software/hv/index.json @@ -0,0 +1,23 @@ +{ + "id": 4401, + "slug": "hv", + "name": "HV", + "release_date": null, + "developers": [ + "D&A Software" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121672452" + ], + "created_at": "2026-07-10T10:12:41.262645", + "updated_at": "2026-07-10T10:12:41.262645", + "url": "/v1/software/hv" +} diff --git a/site/public/v1/software/hxd/index.json b/site/public/v1/software/hxd/index.json new file mode 100644 index 000000000000..7b3fcb2aebc8 --- /dev/null +++ b/site/public/v1/software/hxd/index.json @@ -0,0 +1,19 @@ +{ + "id": 4402, + "slug": "hxd", + "name": "hxd", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065583" + ], + "created_at": "2026-07-10T10:12:41.262645", + "updated_at": "2026-07-10T10:12:41.262645", + "url": "/v1/software/hxd" +} diff --git a/site/public/v1/software/hybrid-web-cluster/index.json b/site/public/v1/software/hybrid-web-cluster/index.json new file mode 100644 index 000000000000..198a3f7a4c20 --- /dev/null +++ b/site/public/v1/software/hybrid-web-cluster/index.json @@ -0,0 +1,19 @@ +{ + "id": 4403, + "slug": "hybrid-web-cluster", + "name": "Hybrid Web Cluster", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5953149" + ], + "created_at": "2026-07-10T10:12:41.262645", + "updated_at": "2026-07-10T10:12:41.262645", + "url": "/v1/software/hybrid-web-cluster" +} diff --git a/site/public/v1/software/hydra-oms/index.json b/site/public/v1/software/hydra-oms/index.json new file mode 100644 index 000000000000..7fe4566d5072 --- /dev/null +++ b/site/public/v1/software/hydra-oms/index.json @@ -0,0 +1,21 @@ +{ + "id": 4404, + "slug": "hydra-oms", + "name": "Hydra OMS", + "release_date": "2016-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Apache License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25345992" + ], + "created_at": "2026-07-10T10:12:41.263775", + "updated_at": "2026-07-10T10:12:41.263775", + "url": "/v1/software/hydra-oms" +} diff --git a/site/public/v1/software/hypelist/index.json b/site/public/v1/software/hypelist/index.json new file mode 100644 index 000000000000..b9558dde0f3b --- /dev/null +++ b/site/public/v1/software/hypelist/index.json @@ -0,0 +1,19 @@ +{ + "id": 4405, + "slug": "hypelist", + "name": "Hypelist", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125768440" + ], + "created_at": "2026-07-10T10:12:41.263775", + "updated_at": "2026-07-10T10:12:41.263775", + "url": "/v1/software/hypelist" +} diff --git a/site/public/v1/software/hyperaccess/index.json b/site/public/v1/software/hyperaccess/index.json new file mode 100644 index 000000000000..55b692b44bc5 --- /dev/null +++ b/site/public/v1/software/hyperaccess/index.json @@ -0,0 +1,23 @@ +{ + "id": 4406, + "slug": "hyperaccess", + "name": "HyperACCESS", + "release_date": null, + "developers": [ + "Hilgraeve" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1516517" + ], + "created_at": "2026-07-10T10:12:41.263775", + "updated_at": "2026-07-10T10:12:41.263775", + "url": "/v1/software/hyperaccess" +} diff --git a/site/public/v1/software/hyperbase/index.json b/site/public/v1/software/hyperbase/index.json new file mode 100644 index 000000000000..f944b3b9db3e --- /dev/null +++ b/site/public/v1/software/hyperbase/index.json @@ -0,0 +1,25 @@ +{ + "id": 4407, + "slug": "hyperbase", + "name": "Hyperbase", + "release_date": null, + "developers": [ + "University of Côte d'Azur", + "National Center for Scientific Research" + ], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17630126" + ], + "created_at": "2026-07-10T10:12:41.264911", + "updated_at": "2026-07-10T10:12:41.264911", + "url": "/v1/software/hyperbase" +} diff --git a/site/public/v1/software/hypercam/index.json b/site/public/v1/software/hypercam/index.json new file mode 100644 index 000000000000..af807e3c8144 --- /dev/null +++ b/site/public/v1/software/hypercam/index.json @@ -0,0 +1,23 @@ +{ + "id": 4408, + "slug": "hypercam", + "name": "HyperCam", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [ + "screencasting software" + ], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3072026" + ], + "created_at": "2026-07-10T10:12:41.264911", + "updated_at": "2026-07-10T10:12:41.264911", + "url": "/v1/software/hypercam" +} diff --git a/site/public/v1/software/hyperd/index.json b/site/public/v1/software/hyperd/index.json new file mode 100644 index 000000000000..ecf6569cd106 --- /dev/null +++ b/site/public/v1/software/hyperd/index.json @@ -0,0 +1,19 @@ +{ + "id": 4409, + "slug": "hyperd", + "name": "hyperd", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065256" + ], + "created_at": "2026-07-10T10:12:41.264911", + "updated_at": "2026-07-10T10:12:41.264911", + "url": "/v1/software/hyperd" +} diff --git a/site/public/v1/software/hyperfilesql/index.json b/site/public/v1/software/hyperfilesql/index.json new file mode 100644 index 000000000000..b73a99d00ec1 --- /dev/null +++ b/site/public/v1/software/hyperfilesql/index.json @@ -0,0 +1,21 @@ +{ + "id": 4410, + "slug": "hyperfilesql", + "name": "HyperFileSQL", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3144089" + ], + "created_at": "2026-07-10T10:12:41.264911", + "updated_at": "2026-07-10T10:12:41.264911", + "url": "/v1/software/hyperfilesql" +} diff --git a/site/public/v1/software/hypergate/index.json b/site/public/v1/software/hypergate/index.json new file mode 100644 index 000000000000..362a8eb3b37b --- /dev/null +++ b/site/public/v1/software/hypergate/index.json @@ -0,0 +1,25 @@ +{ + "id": 4411, + "slug": "hypergate", + "name": "Hypergate", + "release_date": null, + "developers": [ + "Mark Bernstein" + ], + "publishers": [ + "Eastgate Systems" + ], + "operating_systems": [], + "programming_languages": [ + "Forth" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125523455" + ], + "created_at": "2026-07-10T10:12:41.265851", + "updated_at": "2026-07-10T10:12:41.265851", + "url": "/v1/software/hypergate" +} diff --git a/site/public/v1/software/hyperimage/index.json b/site/public/v1/software/hyperimage/index.json new file mode 100644 index 000000000000..17aedead4543 --- /dev/null +++ b/site/public/v1/software/hyperimage/index.json @@ -0,0 +1,23 @@ +{ + "id": 4412, + "slug": "hyperimage", + "name": "hyperimage", + "release_date": null, + "developers": [ + "Martin Warnke" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Java" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106087889" + ], + "created_at": "2026-07-10T10:12:41.265851", + "updated_at": "2026-07-10T10:12:41.265851", + "url": "/v1/software/hyperimage" +} diff --git a/site/public/v1/software/hyperion-planning/index.json b/site/public/v1/software/hyperion-planning/index.json new file mode 100644 index 000000000000..5cfce4faf8ee --- /dev/null +++ b/site/public/v1/software/hyperion-planning/index.json @@ -0,0 +1,21 @@ +{ + "id": 4413, + "slug": "hyperion-planning", + "name": "Hyperion Planning", + "release_date": null, + "developers": [ + "Oracle Corporation" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5958168" + ], + "created_at": "2026-07-10T10:12:41.265851", + "updated_at": "2026-07-10T10:12:41.265851", + "url": "/v1/software/hyperion-planning" +} diff --git a/site/public/v1/software/hyperplanning/index.json b/site/public/v1/software/hyperplanning/index.json new file mode 100644 index 000000000000..671236b941a1 --- /dev/null +++ b/site/public/v1/software/hyperplanning/index.json @@ -0,0 +1,19 @@ +{ + "id": 4414, + "slug": "hyperplanning", + "name": "Hyperplanning", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q56316349" + ], + "created_at": "2026-07-10T10:12:41.266858", + "updated_at": "2026-07-10T10:12:41.266858", + "url": "/v1/software/hyperplanning" +} diff --git a/site/public/v1/software/hyperpo/index.json b/site/public/v1/software/hyperpo/index.json new file mode 100644 index 000000000000..f277b129c1e4 --- /dev/null +++ b/site/public/v1/software/hyperpo/index.json @@ -0,0 +1,19 @@ +{ + "id": 4415, + "slug": "hyperpo", + "name": "HyperPo", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087815" + ], + "created_at": "2026-07-10T10:12:41.266858", + "updated_at": "2026-07-10T10:12:41.266858", + "url": "/v1/software/hyperpo" +} diff --git a/site/public/v1/software/hyperresearch/index.json b/site/public/v1/software/hyperresearch/index.json new file mode 100644 index 000000000000..adf54876b169 --- /dev/null +++ b/site/public/v1/software/hyperresearch/index.json @@ -0,0 +1,24 @@ +{ + "id": 4416, + "slug": "hyperresearch", + "name": "HyperResearch", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105229747" + ], + "created_at": "2026-07-10T10:12:41.266858", + "updated_at": "2026-07-10T10:12:41.266858", + "url": "/v1/software/hyperresearch" +} diff --git a/site/public/v1/software/hyperscore/index.json b/site/public/v1/software/hyperscore/index.json new file mode 100644 index 000000000000..bb493db31d71 --- /dev/null +++ b/site/public/v1/software/hyperscore/index.json @@ -0,0 +1,19 @@ +{ + "id": 4417, + "slug": "hyperscore", + "name": "Hyperscore", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5958556" + ], + "created_at": "2026-07-10T10:12:41.267864", + "updated_at": "2026-07-10T10:12:41.267864", + "url": "/v1/software/hyperscore" +} diff --git a/site/public/v1/software/hypersizer/index.json b/site/public/v1/software/hypersizer/index.json new file mode 100644 index 000000000000..3dfd3cf5e695 --- /dev/null +++ b/site/public/v1/software/hypersizer/index.json @@ -0,0 +1,21 @@ +{ + "id": 4418, + "slug": "hypersizer", + "name": "HyperSizer", + "release_date": null, + "developers": [ + "Collier Research Corporation" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5957596" + ], + "created_at": "2026-07-10T10:12:41.267864", + "updated_at": "2026-07-10T10:12:41.267864", + "url": "/v1/software/hypersizer" +} diff --git a/site/public/v1/software/hyperstudio/index.json b/site/public/v1/software/hyperstudio/index.json new file mode 100644 index 000000000000..bfe23ff0790b --- /dev/null +++ b/site/public/v1/software/hyperstudio/index.json @@ -0,0 +1,19 @@ +{ + "id": 4419, + "slug": "hyperstudio", + "name": "HyperStudio", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5957598" + ], + "created_at": "2026-07-10T10:12:41.267864", + "updated_at": "2026-07-10T10:12:41.267864", + "url": "/v1/software/hyperstudio" +} diff --git a/site/public/v1/software/hypertext-on-hypertext/index.json b/site/public/v1/software/hypertext-on-hypertext/index.json new file mode 100644 index 000000000000..326738a5bf1c --- /dev/null +++ b/site/public/v1/software/hypertext-on-hypertext/index.json @@ -0,0 +1,22 @@ +{ + "id": 4420, + "slug": "hypertext-on-hypertext", + "name": "Hypertext on Hypertext", + "release_date": "1988-01-01", + "developers": [], + "publishers": [ + "Association for Computing Machinery", + "Institute for Research in Information and Scholarship" + ], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72969084" + ], + "created_at": "2026-07-10T10:12:41.268843", + "updated_at": "2026-07-10T10:12:41.268843", + "url": "/v1/software/hypertext-on-hypertext" +} diff --git a/site/public/v1/software/hypertranscribe/index.json b/site/public/v1/software/hypertranscribe/index.json new file mode 100644 index 000000000000..b7d6c6f9cd6e --- /dev/null +++ b/site/public/v1/software/hypertranscribe/index.json @@ -0,0 +1,24 @@ +{ + "id": 4421, + "slug": "hypertranscribe", + "name": "HyperTRANSCRIBE", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105076387" + ], + "created_at": "2026-07-10T10:12:41.268843", + "updated_at": "2026-07-10T10:12:41.268843", + "url": "/v1/software/hypertranscribe" +} diff --git a/site/public/v1/software/hyperwords/index.json b/site/public/v1/software/hyperwords/index.json new file mode 100644 index 000000000000..7c7ca01ec065 --- /dev/null +++ b/site/public/v1/software/hyperwords/index.json @@ -0,0 +1,19 @@ +{ + "id": 4422, + "slug": "hyperwords", + "name": "Hyperwords", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5958828" + ], + "created_at": "2026-07-10T10:12:41.268843", + "updated_at": "2026-07-10T10:12:41.268843", + "url": "/v1/software/hyperwords" +} diff --git a/site/public/v1/software/hyperx-software/index.json b/site/public/v1/software/hyperx-software/index.json new file mode 100644 index 000000000000..5f845695b196 --- /dev/null +++ b/site/public/v1/software/hyperx-software/index.json @@ -0,0 +1,19 @@ +{ + "id": 4423, + "slug": "hyperx-software", + "name": "HyperX Software", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135411741" + ], + "created_at": "2026-07-10T10:12:41.269880", + "updated_at": "2026-07-10T10:12:41.269880", + "url": "/v1/software/hyperx-software" +} diff --git a/site/public/v1/software/hyphy/index.json b/site/public/v1/software/hyphy/index.json new file mode 100644 index 000000000000..c5c2792a32b0 --- /dev/null +++ b/site/public/v1/software/hyphy/index.json @@ -0,0 +1,19 @@ +{ + "id": 4424, + "slug": "hyphy", + "name": "HYPHY", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5636278" + ], + "created_at": "2026-07-10T10:12:41.269880", + "updated_at": "2026-07-10T10:12:41.269880", + "url": "/v1/software/hyphy" +} diff --git a/site/public/v1/software/hypotheses-academic-blogs/index.json b/site/public/v1/software/hypotheses-academic-blogs/index.json new file mode 100644 index 000000000000..208197435a07 --- /dev/null +++ b/site/public/v1/software/hypotheses-academic-blogs/index.json @@ -0,0 +1,19 @@ +{ + "id": 4425, + "slug": "hypotheses-academic-blogs", + "name": "Hypotheses, Academic Blogs", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085014" + ], + "created_at": "2026-07-10T10:12:41.269880", + "updated_at": "2026-07-10T10:12:41.269880", + "url": "/v1/software/hypotheses-academic-blogs" +} diff --git a/site/public/v1/software/i-am-rich/index.json b/site/public/v1/software/i-am-rich/index.json new file mode 100644 index 000000000000..d119f301b0e8 --- /dev/null +++ b/site/public/v1/software/i-am-rich/index.json @@ -0,0 +1,23 @@ +{ + "id": 4426, + "slug": "i-am-rich", + "name": "I Am Rich", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "iOS" + ], + "programming_languages": [ + "Objective-C" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1187627" + ], + "created_at": "2026-07-10T10:12:41.269880", + "updated_at": "2026-07-10T10:12:41.269880", + "url": "/v1/software/i-am-rich" +} diff --git a/site/public/v1/software/i-analyzer/index.json b/site/public/v1/software/i-analyzer/index.json new file mode 100644 index 000000000000..e3e58970c285 --- /dev/null +++ b/site/public/v1/software/i-analyzer/index.json @@ -0,0 +1,19 @@ +{ + "id": 4427, + "slug": "i-analyzer", + "name": "I-Analyzer", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085015" + ], + "created_at": "2026-07-10T10:12:41.270844", + "updated_at": "2026-07-10T10:12:41.270844", + "url": "/v1/software/i-analyzer" +} diff --git a/site/public/v1/software/i-doser/index.json b/site/public/v1/software/i-doser/index.json new file mode 100644 index 000000000000..23fffecdcb00 --- /dev/null +++ b/site/public/v1/software/i-doser/index.json @@ -0,0 +1,19 @@ +{ + "id": 4428, + "slug": "i-doser", + "name": "I-Doser", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1186015" + ], + "created_at": "2026-07-10T10:12:41.270844", + "updated_at": "2026-07-10T10:12:41.270844", + "url": "/v1/software/i-doser" +} diff --git a/site/public/v1/software/i-have-said-nothing/index.json b/site/public/v1/software/i-have-said-nothing/index.json new file mode 100644 index 000000000000..df8338bdcb32 --- /dev/null +++ b/site/public/v1/software/i-have-said-nothing/index.json @@ -0,0 +1,23 @@ +{ + "id": 4429, + "slug": "i-have-said-nothing", + "name": "I Have Said Nothing", + "release_date": "1994-01-01", + "developers": [], + "publishers": [ + "Eastgate Systems" + ], + "operating_systems": [], + "programming_languages": [ + "HTML" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q48791865" + ], + "created_at": "2026-07-10T10:12:41.271846", + "updated_at": "2026-07-10T10:12:41.271846", + "url": "/v1/software/i-have-said-nothing" +} diff --git a/site/public/v1/software/i-librarian/index.json b/site/public/v1/software/i-librarian/index.json new file mode 100644 index 000000000000..df63590c07f1 --- /dev/null +++ b/site/public/v1/software/i-librarian/index.json @@ -0,0 +1,26 @@ +{ + "id": 4430, + "slug": "i-librarian", + "name": "I, Librarian", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [ + "PHP" + ], + "licenses": [ + "GNU General Public License, version 3.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105748769" + ], + "created_at": "2026-07-10T10:12:41.271846", + "updated_at": "2026-07-10T10:12:41.271846", + "url": "/v1/software/i-librarian" +} diff --git a/site/public/v1/software/i-m-intouch/index.json b/site/public/v1/software/i-m-intouch/index.json new file mode 100644 index 000000000000..e1ddd568d9e7 --- /dev/null +++ b/site/public/v1/software/i-m-intouch/index.json @@ -0,0 +1,23 @@ +{ + "id": 4431, + "slug": "i-m-intouch", + "name": "I'm InTouch", + "release_date": null, + "developers": [ + "01 Communique" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5966402" + ], + "created_at": "2026-07-10T10:12:41.271846", + "updated_at": "2026-07-10T10:12:41.271846", + "url": "/v1/software/i-m-intouch" +} diff --git a/site/public/v1/software/i-net-crystal-clear/index.json b/site/public/v1/software/i-net-crystal-clear/index.json new file mode 100644 index 000000000000..fde6dc5e908d --- /dev/null +++ b/site/public/v1/software/i-net-crystal-clear/index.json @@ -0,0 +1,23 @@ +{ + "id": 4432, + "slug": "i-net-crystal-clear", + "name": "I-net Crystal-Clear", + "release_date": "1999-01-01", + "developers": [], + "publishers": [], + "operating_systems": [ + "cross-platform" + ], + "programming_languages": [ + "Java" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16973021" + ], + "created_at": "2026-07-10T10:12:41.271846", + "updated_at": "2026-07-10T10:12:41.271846", + "url": "/v1/software/i-net-crystal-clear" +} diff --git a/site/public/v1/software/i-novae/index.json b/site/public/v1/software/i-novae/index.json new file mode 100644 index 000000000000..3b5131cdb8ac --- /dev/null +++ b/site/public/v1/software/i-novae/index.json @@ -0,0 +1,19 @@ +{ + "id": 4433, + "slug": "i-novae", + "name": "I-Novae", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5967667" + ], + "created_at": "2026-07-10T10:12:41.271846", + "updated_at": "2026-07-10T10:12:41.271846", + "url": "/v1/software/i-novae" +} diff --git a/site/public/v1/software/i-reporter/index.json b/site/public/v1/software/i-reporter/index.json new file mode 100644 index 000000000000..d90d71540c39 --- /dev/null +++ b/site/public/v1/software/i-reporter/index.json @@ -0,0 +1,21 @@ +{ + "id": 4434, + "slug": "i-reporter", + "name": "i-Reporter", + "release_date": null, + "developers": [ + "CIMTOPS Corporation." + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138702257" + ], + "created_at": "2026-07-10T10:12:41.272869", + "updated_at": "2026-07-10T10:12:41.272869", + "url": "/v1/software/i-reporter" +} diff --git a/site/public/v1/software/i-scream-homelearn/index.json b/site/public/v1/software/i-scream-homelearn/index.json new file mode 100644 index 000000000000..ce116f8160d7 --- /dev/null +++ b/site/public/v1/software/i-scream-homelearn/index.json @@ -0,0 +1,21 @@ +{ + "id": 4435, + "slug": "i-scream-homelearn", + "name": "I-scream homelearn", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [ + "educational website" + ], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109461771" + ], + "created_at": "2026-07-10T10:12:41.272869", + "updated_at": "2026-07-10T10:12:41.272869", + "url": "/v1/software/i-scream-homelearn" +} diff --git a/site/public/v1/software/i-solve/index.json b/site/public/v1/software/i-solve/index.json new file mode 100644 index 000000000000..167590ca861e --- /dev/null +++ b/site/public/v1/software/i-solve/index.json @@ -0,0 +1,21 @@ +{ + "id": 4436, + "slug": "i-solve", + "name": "I-SOLVE", + "release_date": null, + "developers": [ + "Kurt Walter Leucht" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124478906" + ], + "created_at": "2026-07-10T10:12:41.272869", + "updated_at": "2026-07-10T10:12:41.272869", + "url": "/v1/software/i-solve" +} diff --git a/site/public/v1/software/i-tasser/index.json b/site/public/v1/software/i-tasser/index.json new file mode 100644 index 000000000000..578754c36d88 --- /dev/null +++ b/site/public/v1/software/i-tasser/index.json @@ -0,0 +1,19 @@ +{ + "id": 4437, + "slug": "i-tasser", + "name": "I-TASSER", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17029600" + ], + "created_at": "2026-07-10T10:12:41.273846", + "updated_at": "2026-07-10T10:12:41.273846", + "url": "/v1/software/i-tasser" +} diff --git a/site/public/v1/software/i2phex/index.json b/site/public/v1/software/i2phex/index.json new file mode 100644 index 000000000000..0b4bab61f3bd --- /dev/null +++ b/site/public/v1/software/i2phex/index.json @@ -0,0 +1,19 @@ +{ + "id": 4438, + "slug": "i2phex", + "name": "I2Phex", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3788383" + ], + "created_at": "2026-07-10T10:12:41.273846", + "updated_at": "2026-07-10T10:12:41.273846", + "url": "/v1/software/i2phex" +} diff --git a/site/public/v1/software/ia/index.json b/site/public/v1/software/ia/index.json new file mode 100644 index 000000000000..b5cec27f7505 --- /dev/null +++ b/site/public/v1/software/ia/index.json @@ -0,0 +1,23 @@ +{ + "id": 4439, + "slug": "ia", + "name": "IA", + "release_date": "2012-01-27", + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q15908849" + ], + "created_at": "2026-07-10T10:12:41.273846", + "updated_at": "2026-07-10T10:12:41.273846", + "url": "/v1/software/ia" +} diff --git a/site/public/v1/software/iannotate/index.json b/site/public/v1/software/iannotate/index.json new file mode 100644 index 000000000000..9dc654353eb7 --- /dev/null +++ b/site/public/v1/software/iannotate/index.json @@ -0,0 +1,19 @@ +{ + "id": 4440, + "slug": "iannotate", + "name": "iAnnotate", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085016" + ], + "created_at": "2026-07-10T10:12:41.274885", + "updated_at": "2026-07-10T10:12:41.274885", + "url": "/v1/software/iannotate" +} diff --git a/site/public/v1/software/ibm-administrative-terminal-system/index.json b/site/public/v1/software/ibm-administrative-terminal-system/index.json new file mode 100644 index 000000000000..d15b9a22d32b --- /dev/null +++ b/site/public/v1/software/ibm-administrative-terminal-system/index.json @@ -0,0 +1,23 @@ +{ + "id": 4441, + "slug": "ibm-administrative-terminal-system", + "name": "IBM Administrative Terminal System", + "release_date": null, + "developers": [ + "IBM" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "assembly language" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5968755" + ], + "created_at": "2026-07-10T10:12:41.274885", + "updated_at": "2026-07-10T10:12:41.274885", + "url": "/v1/software/ibm-administrative-terminal-system" +} diff --git a/site/public/v1/software/ibm-aerotext/index.json b/site/public/v1/software/ibm-aerotext/index.json new file mode 100644 index 000000000000..e55ca227c042 --- /dev/null +++ b/site/public/v1/software/ibm-aerotext/index.json @@ -0,0 +1,19 @@ +{ + "id": 4442, + "slug": "ibm-aerotext", + "name": "IBM AeroText", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087816" + ], + "created_at": "2026-07-10T10:12:41.274885", + "updated_at": "2026-07-10T10:12:41.274885", + "url": "/v1/software/ibm-aerotext" +} diff --git a/site/public/v1/software/ibm-api-management/index.json b/site/public/v1/software/ibm-api-management/index.json new file mode 100644 index 000000000000..cd77505b8e4f --- /dev/null +++ b/site/public/v1/software/ibm-api-management/index.json @@ -0,0 +1,19 @@ +{ + "id": 4443, + "slug": "ibm-api-management", + "name": "IBM API Management", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q21463214" + ], + "created_at": "2026-07-10T10:12:41.275845", + "updated_at": "2026-07-10T10:12:41.275845", + "url": "/v1/software/ibm-api-management" +} diff --git a/site/public/v1/software/ibm-bigfix/index.json b/site/public/v1/software/ibm-bigfix/index.json new file mode 100644 index 000000000000..f5cfa118b61f --- /dev/null +++ b/site/public/v1/software/ibm-bigfix/index.json @@ -0,0 +1,22 @@ +{ + "id": 4444, + "slug": "ibm-bigfix", + "name": "IBM BigFix", + "release_date": null, + "developers": [ + "BigFix", + "IBM" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7810432" + ], + "created_at": "2026-07-10T10:12:41.275845", + "updated_at": "2026-07-10T10:12:41.275845", + "url": "/v1/software/ibm-bigfix" +} diff --git a/site/public/v1/software/ibm-bluemix/index.json b/site/public/v1/software/ibm-bluemix/index.json new file mode 100644 index 000000000000..805be2f4a781 --- /dev/null +++ b/site/public/v1/software/ibm-bluemix/index.json @@ -0,0 +1,25 @@ +{ + "id": 4445, + "slug": "ibm-bluemix", + "name": "IBM Bluemix", + "release_date": null, + "developers": [ + "IBM" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "PHP", + "Java", + "Python" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18378690" + ], + "created_at": "2026-07-10T10:12:41.275845", + "updated_at": "2026-07-10T10:12:41.275845", + "url": "/v1/software/ibm-bluemix" +} diff --git a/site/public/v1/software/ibm-blueworks-live/index.json b/site/public/v1/software/ibm-blueworks-live/index.json new file mode 100644 index 000000000000..20b113576bad --- /dev/null +++ b/site/public/v1/software/ibm-blueworks-live/index.json @@ -0,0 +1,21 @@ +{ + "id": 4446, + "slug": "ibm-blueworks-live", + "name": "IBM BlueWorks Live", + "release_date": null, + "developers": [ + "IBM" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5968769" + ], + "created_at": "2026-07-10T10:12:41.275845", + "updated_at": "2026-07-10T10:12:41.275845", + "url": "/v1/software/ibm-blueworks-live" +} diff --git a/site/public/v1/software/ibm-check-processing-control-system/index.json b/site/public/v1/software/ibm-check-processing-control-system/index.json new file mode 100644 index 000000000000..88d351a7343e --- /dev/null +++ b/site/public/v1/software/ibm-check-processing-control-system/index.json @@ -0,0 +1,21 @@ +{ + "id": 4447, + "slug": "ibm-check-processing-control-system", + "name": "IBM Check Processing Control System", + "release_date": null, + "developers": [ + "IBM" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5968794" + ], + "created_at": "2026-07-10T10:12:41.276867", + "updated_at": "2026-07-10T10:12:41.276867", + "url": "/v1/software/ibm-check-processing-control-system" +} diff --git a/site/public/v1/software/ibm-cobol/index.json b/site/public/v1/software/ibm-cobol/index.json new file mode 100644 index 000000000000..ef814202aa34 --- /dev/null +++ b/site/public/v1/software/ibm-cobol/index.json @@ -0,0 +1,21 @@ +{ + "id": 4448, + "slug": "ibm-cobol", + "name": "IBM COBOL", + "release_date": null, + "developers": [ + "IBM" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5968783" + ], + "created_at": "2026-07-10T10:12:41.276867", + "updated_at": "2026-07-10T10:12:41.276867", + "url": "/v1/software/ibm-cobol" +} diff --git a/site/public/v1/software/ibm-cognos-8-business-intelligence/index.json b/site/public/v1/software/ibm-cognos-8-business-intelligence/index.json new file mode 100644 index 000000000000..4f66464622fd --- /dev/null +++ b/site/public/v1/software/ibm-cognos-8-business-intelligence/index.json @@ -0,0 +1,21 @@ +{ + "id": 4449, + "slug": "ibm-cognos-8-business-intelligence", + "name": "IBM Cognos 8 Business Intelligence", + "release_date": null, + "developers": [ + "IBM" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5968799" + ], + "created_at": "2026-07-10T10:12:41.276867", + "updated_at": "2026-07-10T10:12:41.276867", + "url": "/v1/software/ibm-cognos-8-business-intelligence" +} diff --git a/site/public/v1/software/ibm-configuration-management-version-control/index.json b/site/public/v1/software/ibm-configuration-management-version-control/index.json new file mode 100644 index 000000000000..c585d4e50701 --- /dev/null +++ b/site/public/v1/software/ibm-configuration-management-version-control/index.json @@ -0,0 +1,21 @@ +{ + "id": 4450, + "slug": "ibm-configuration-management-version-control", + "name": "IBM Configuration Management Version Control", + "release_date": null, + "developers": [ + "IBM" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4040968" + ], + "created_at": "2026-07-10T10:12:41.277846", + "updated_at": "2026-07-10T10:12:41.277846", + "url": "/v1/software/ibm-configuration-management-version-control" +} diff --git a/site/public/v1/software/ibm-director/index.json b/site/public/v1/software/ibm-director/index.json new file mode 100644 index 000000000000..ae06af3f767a --- /dev/null +++ b/site/public/v1/software/ibm-director/index.json @@ -0,0 +1,21 @@ +{ + "id": 4451, + "slug": "ibm-director", + "name": "IBM Director", + "release_date": null, + "developers": [ + "IBM" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4040973" + ], + "created_at": "2026-07-10T10:12:41.277846", + "updated_at": "2026-07-10T10:12:41.277846", + "url": "/v1/software/ibm-director" +} diff --git a/site/public/v1/software/ibm-disoss/index.json b/site/public/v1/software/ibm-disoss/index.json new file mode 100644 index 000000000000..46b1f7ab74f1 --- /dev/null +++ b/site/public/v1/software/ibm-disoss/index.json @@ -0,0 +1,21 @@ +{ + "id": 4452, + "slug": "ibm-disoss", + "name": "IBM DISOSS", + "release_date": null, + "developers": [ + "IBM" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5968820" + ], + "created_at": "2026-07-10T10:12:41.277846", + "updated_at": "2026-07-10T10:12:41.277846", + "url": "/v1/software/ibm-disoss" +} diff --git a/site/public/v1/software/ibm-docs/index.json b/site/public/v1/software/ibm-docs/index.json new file mode 100644 index 000000000000..20b48d21479f --- /dev/null +++ b/site/public/v1/software/ibm-docs/index.json @@ -0,0 +1,19 @@ +{ + "id": 4453, + "slug": "ibm-docs", + "name": "IBM Docs", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q15149499" + ], + "created_at": "2026-07-10T10:12:41.278857", + "updated_at": "2026-07-10T10:12:41.278857", + "url": "/v1/software/ibm-docs" +} diff --git a/site/public/v1/software/ibm-engineering-systems-design-rhapsody/index.json b/site/public/v1/software/ibm-engineering-systems-design-rhapsody/index.json new file mode 100644 index 000000000000..15eee4280fdb --- /dev/null +++ b/site/public/v1/software/ibm-engineering-systems-design-rhapsody/index.json @@ -0,0 +1,19 @@ +{ + "id": 4454, + "slug": "ibm-engineering-systems-design-rhapsody", + "name": "IBM Engineering Systems Design Rhapsody", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10652242" + ], + "created_at": "2026-07-10T10:12:41.278857", + "updated_at": "2026-07-10T10:12:41.278857", + "url": "/v1/software/ibm-engineering-systems-design-rhapsody" +} diff --git a/site/public/v1/software/ibm-general-parallel-file-system/index.json b/site/public/v1/software/ibm-general-parallel-file-system/index.json new file mode 100644 index 000000000000..bae2df265aab --- /dev/null +++ b/site/public/v1/software/ibm-general-parallel-file-system/index.json @@ -0,0 +1,23 @@ +{ + "id": 4455, + "slug": "ibm-general-parallel-file-system", + "name": "IBM General Parallel File System", + "release_date": null, + "developers": [ + "IBM" + ], + "publishers": [], + "operating_systems": [ + "IBM AIX" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2389927" + ], + "created_at": "2026-07-10T10:12:41.278857", + "updated_at": "2026-07-10T10:12:41.278857", + "url": "/v1/software/ibm-general-parallel-file-system" +} diff --git a/site/public/v1/software/ibm-high-availability-cluster-multiprocessing/index.json b/site/public/v1/software/ibm-high-availability-cluster-multiprocessing/index.json new file mode 100644 index 000000000000..8bcc52142a84 --- /dev/null +++ b/site/public/v1/software/ibm-high-availability-cluster-multiprocessing/index.json @@ -0,0 +1,23 @@ +{ + "id": 4456, + "slug": "ibm-high-availability-cluster-multiprocessing", + "name": "IBM High Availability Cluster Multiprocessing", + "release_date": null, + "developers": [ + "IBM" + ], + "publishers": [], + "operating_systems": [ + "IBM AIX" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10850880" + ], + "created_at": "2026-07-10T10:12:41.279894", + "updated_at": "2026-07-10T10:12:41.279894", + "url": "/v1/software/ibm-high-availability-cluster-multiprocessing" +} diff --git a/site/public/v1/software/ibm-home-page-reader/index.json b/site/public/v1/software/ibm-home-page-reader/index.json new file mode 100644 index 000000000000..ecc749f95472 --- /dev/null +++ b/site/public/v1/software/ibm-home-page-reader/index.json @@ -0,0 +1,21 @@ +{ + "id": 4457, + "slug": "ibm-home-page-reader", + "name": "IBM Home Page Reader", + "release_date": null, + "developers": [ + "IBM" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5968853" + ], + "created_at": "2026-07-10T10:12:41.279894", + "updated_at": "2026-07-10T10:12:41.279894", + "url": "/v1/software/ibm-home-page-reader" +} diff --git a/site/public/v1/software/ibm-informix-dynamic-server/index.json b/site/public/v1/software/ibm-informix-dynamic-server/index.json new file mode 100644 index 000000000000..0d3d79dffc98 --- /dev/null +++ b/site/public/v1/software/ibm-informix-dynamic-server/index.json @@ -0,0 +1,19 @@ +{ + "id": 4458, + "slug": "ibm-informix-dynamic-server", + "name": "IBM Informix Dynamic Server", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5968869" + ], + "created_at": "2026-07-10T10:12:41.279894", + "updated_at": "2026-07-10T10:12:41.279894", + "url": "/v1/software/ibm-informix-dynamic-server" +} diff --git a/site/public/v1/software/ibm-infosphere-datastage/index.json b/site/public/v1/software/ibm-infosphere-datastage/index.json new file mode 100644 index 000000000000..a84998f040b9 --- /dev/null +++ b/site/public/v1/software/ibm-infosphere-datastage/index.json @@ -0,0 +1,19 @@ +{ + "id": 4459, + "slug": "ibm-infosphere-datastage", + "name": "IBM InfoSphere DataStage", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5968866" + ], + "created_at": "2026-07-10T10:12:41.280784", + "updated_at": "2026-07-10T10:12:41.280784", + "url": "/v1/software/ibm-infosphere-datastage" +} diff --git a/site/public/v1/software/ibm-lan-server/index.json b/site/public/v1/software/ibm-lan-server/index.json new file mode 100644 index 000000000000..a3573986d1e2 --- /dev/null +++ b/site/public/v1/software/ibm-lan-server/index.json @@ -0,0 +1,21 @@ +{ + "id": 4460, + "slug": "ibm-lan-server", + "name": "IBM LAN Server", + "release_date": null, + "developers": [ + "IBM" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q490264" + ], + "created_at": "2026-07-10T10:12:41.280784", + "updated_at": "2026-07-10T10:12:41.280784", + "url": "/v1/software/ibm-lan-server" +} diff --git a/site/public/v1/software/ibm-lotus-approach/index.json b/site/public/v1/software/ibm-lotus-approach/index.json new file mode 100644 index 000000000000..7ba4705b4dd0 --- /dev/null +++ b/site/public/v1/software/ibm-lotus-approach/index.json @@ -0,0 +1,21 @@ +{ + "id": 4461, + "slug": "ibm-lotus-approach", + "name": "IBM Lotus Approach", + "release_date": null, + "developers": [ + "IBM" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1755003" + ], + "created_at": "2026-07-10T10:12:41.280784", + "updated_at": "2026-07-10T10:12:41.280784", + "url": "/v1/software/ibm-lotus-approach" +} diff --git a/site/public/v1/software/ibm-lotus-domino/index.json b/site/public/v1/software/ibm-lotus-domino/index.json new file mode 100644 index 000000000000..81382c38489b --- /dev/null +++ b/site/public/v1/software/ibm-lotus-domino/index.json @@ -0,0 +1,28 @@ +{ + "id": 4462, + "slug": "ibm-lotus-domino", + "name": "IBM Lotus Domino", + "release_date": null, + "developers": [ + "Lotus Software", + "IBM" + ], + "publishers": [], + "operating_systems": [ + "Solaris version 8", + "Solaris version 7", + "Solaris version 2.6", + "OS/2 Warp Server", + "Windows NT 4.0" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1069529" + ], + "created_at": "2026-07-10T10:12:41.280784", + "updated_at": "2026-07-10T10:12:41.280784", + "url": "/v1/software/ibm-lotus-domino" +} diff --git a/site/public/v1/software/ibm-lotus-freelance-graphics/index.json b/site/public/v1/software/ibm-lotus-freelance-graphics/index.json new file mode 100644 index 000000000000..425293b6e637 --- /dev/null +++ b/site/public/v1/software/ibm-lotus-freelance-graphics/index.json @@ -0,0 +1,23 @@ +{ + "id": 4463, + "slug": "ibm-lotus-freelance-graphics", + "name": "IBM Lotus Freelance Graphics", + "release_date": null, + "developers": [ + "IBM" + ], + "publishers": [], + "operating_systems": [ + "DOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1871252" + ], + "created_at": "2026-07-10T10:12:41.281852", + "updated_at": "2026-07-10T10:12:41.281852", + "url": "/v1/software/ibm-lotus-freelance-graphics" +} diff --git a/site/public/v1/software/ibm-lotus-web-content-management/index.json b/site/public/v1/software/ibm-lotus-web-content-management/index.json new file mode 100644 index 000000000000..13a9d4f72947 --- /dev/null +++ b/site/public/v1/software/ibm-lotus-web-content-management/index.json @@ -0,0 +1,23 @@ +{ + "id": 4464, + "slug": "ibm-lotus-web-content-management", + "name": "IBM Lotus Web Content Management", + "release_date": null, + "developers": [ + "IBM" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Java" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5968879" + ], + "created_at": "2026-07-10T10:12:41.281852", + "updated_at": "2026-07-10T10:12:41.281852", + "url": "/v1/software/ibm-lotus-web-content-management" +} diff --git a/site/public/v1/software/ibm-office-36/index.json b/site/public/v1/software/ibm-office-36/index.json new file mode 100644 index 000000000000..00822c272d62 --- /dev/null +++ b/site/public/v1/software/ibm-office-36/index.json @@ -0,0 +1,21 @@ +{ + "id": 4465, + "slug": "ibm-office-36", + "name": "IBM Office/36", + "release_date": "1983-01-01", + "developers": [ + "IBM" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5968910" + ], + "created_at": "2026-07-10T10:12:41.281852", + "updated_at": "2026-07-10T10:12:41.281852", + "url": "/v1/software/ibm-office-36" +} diff --git a/site/public/v1/software/ibm-office-and-document-control-system/index.json b/site/public/v1/software/ibm-office-and-document-control-system/index.json new file mode 100644 index 000000000000..1a83d2260ed4 --- /dev/null +++ b/site/public/v1/software/ibm-office-and-document-control-system/index.json @@ -0,0 +1,21 @@ +{ + "id": 4466, + "slug": "ibm-office-and-document-control-system", + "name": "IBM Office and Document Control System", + "release_date": null, + "developers": [ + "IBM" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q19341041" + ], + "created_at": "2026-07-10T10:12:41.281852", + "updated_at": "2026-07-10T10:12:41.281852", + "url": "/v1/software/ibm-office-and-document-control-system" +} diff --git a/site/public/v1/software/ibm-officevision/index.json b/site/public/v1/software/ibm-officevision/index.json new file mode 100644 index 000000000000..66ae0173fd64 --- /dev/null +++ b/site/public/v1/software/ibm-officevision/index.json @@ -0,0 +1,21 @@ +{ + "id": 4467, + "slug": "ibm-officevision", + "name": "IBM OfficeVision", + "release_date": null, + "developers": [ + "IBM" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5968918" + ], + "created_at": "2026-07-10T10:12:41.282857", + "updated_at": "2026-07-10T10:12:41.282857", + "url": "/v1/software/ibm-officevision" +} diff --git a/site/public/v1/software/ibm-omegamon/index.json b/site/public/v1/software/ibm-omegamon/index.json new file mode 100644 index 000000000000..3ab7d699378c --- /dev/null +++ b/site/public/v1/software/ibm-omegamon/index.json @@ -0,0 +1,21 @@ +{ + "id": 4468, + "slug": "ibm-omegamon", + "name": "IBM OMEGAMON", + "release_date": null, + "developers": [ + "IBM" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5968908" + ], + "created_at": "2026-07-10T10:12:41.282857", + "updated_at": "2026-07-10T10:12:41.282857", + "url": "/v1/software/ibm-omegamon" +} diff --git a/site/public/v1/software/ibm-omnifind-yahoo-edition/index.json b/site/public/v1/software/ibm-omnifind-yahoo-edition/index.json new file mode 100644 index 000000000000..ec96b6568157 --- /dev/null +++ b/site/public/v1/software/ibm-omnifind-yahoo-edition/index.json @@ -0,0 +1,21 @@ +{ + "id": 4469, + "slug": "ibm-omnifind-yahoo-edition", + "name": "IBM OmniFind Yahoo! Edition", + "release_date": null, + "developers": [ + "IBM" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q12317884" + ], + "created_at": "2026-07-10T10:12:41.282857", + "updated_at": "2026-07-10T10:12:41.282857", + "url": "/v1/software/ibm-omnifind-yahoo-edition" +} diff --git a/site/public/v1/software/ibm-omnifind/index.json b/site/public/v1/software/ibm-omnifind/index.json new file mode 100644 index 000000000000..2a0073de1566 --- /dev/null +++ b/site/public/v1/software/ibm-omnifind/index.json @@ -0,0 +1,21 @@ +{ + "id": 4470, + "slug": "ibm-omnifind", + "name": "IBM Omnifind", + "release_date": null, + "developers": [ + "IBM" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5968913" + ], + "created_at": "2026-07-10T10:12:41.283884", + "updated_at": "2026-07-10T10:12:41.283884", + "url": "/v1/software/ibm-omnifind" +} diff --git a/site/public/v1/software/ibm-operational-decision-management/index.json b/site/public/v1/software/ibm-operational-decision-management/index.json new file mode 100644 index 000000000000..a54ef7be6761 --- /dev/null +++ b/site/public/v1/software/ibm-operational-decision-management/index.json @@ -0,0 +1,21 @@ +{ + "id": 4471, + "slug": "ibm-operational-decision-management", + "name": "IBM Operational Decision Management", + "release_date": null, + "developers": [ + "IBM" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16928000" + ], + "created_at": "2026-07-10T10:12:41.283884", + "updated_at": "2026-07-10T10:12:41.283884", + "url": "/v1/software/ibm-operational-decision-management" +} diff --git a/site/public/v1/software/ibm-power/index.json b/site/public/v1/software/ibm-power/index.json new file mode 100644 index 000000000000..369e2e44c4f0 --- /dev/null +++ b/site/public/v1/software/ibm-power/index.json @@ -0,0 +1,21 @@ +{ + "id": 4472, + "slug": "ibm-power", + "name": "IBM Power", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "VSE" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5968938" + ], + "created_at": "2026-07-10T10:12:41.283884", + "updated_at": "2026-07-10T10:12:41.283884", + "url": "/v1/software/ibm-power" +} diff --git a/site/public/v1/software/ibm-profs/index.json b/site/public/v1/software/ibm-profs/index.json new file mode 100644 index 000000000000..ad1d740ec5e3 --- /dev/null +++ b/site/public/v1/software/ibm-profs/index.json @@ -0,0 +1,21 @@ +{ + "id": 4473, + "slug": "ibm-profs", + "name": "IBM PROFS", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "VM" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117349476" + ], + "created_at": "2026-07-10T10:12:41.283884", + "updated_at": "2026-07-10T10:12:41.283884", + "url": "/v1/software/ibm-profs" +} diff --git a/site/public/v1/software/ibm-purequery/index.json b/site/public/v1/software/ibm-purequery/index.json new file mode 100644 index 000000000000..53865ce98581 --- /dev/null +++ b/site/public/v1/software/ibm-purequery/index.json @@ -0,0 +1,19 @@ +{ + "id": 4474, + "slug": "ibm-purequery", + "name": "IBM PureQuery", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5968945" + ], + "created_at": "2026-07-10T10:12:41.284859", + "updated_at": "2026-07-10T10:12:41.284859", + "url": "/v1/software/ibm-purequery" +} diff --git a/site/public/v1/software/ibm-rational-appscan/index.json b/site/public/v1/software/ibm-rational-appscan/index.json new file mode 100644 index 000000000000..330c4969d5a5 --- /dev/null +++ b/site/public/v1/software/ibm-rational-appscan/index.json @@ -0,0 +1,21 @@ +{ + "id": 4475, + "slug": "ibm-rational-appscan", + "name": "IBM Rational AppScan", + "release_date": null, + "developers": [ + "IBM" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5968958" + ], + "created_at": "2026-07-10T10:12:41.284859", + "updated_at": "2026-07-10T10:12:41.284859", + "url": "/v1/software/ibm-rational-appscan" +} diff --git a/site/public/v1/software/ibm-rational-automation-framework/index.json b/site/public/v1/software/ibm-rational-automation-framework/index.json new file mode 100644 index 000000000000..5b312f916ab9 --- /dev/null +++ b/site/public/v1/software/ibm-rational-automation-framework/index.json @@ -0,0 +1,23 @@ +{ + "id": 4476, + "slug": "ibm-rational-automation-framework", + "name": "IBM Rational Automation Framework", + "release_date": null, + "developers": [ + "IBM" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Java" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5968962" + ], + "created_at": "2026-07-10T10:12:41.284859", + "updated_at": "2026-07-10T10:12:41.284859", + "url": "/v1/software/ibm-rational-automation-framework" +} diff --git a/site/public/v1/software/ibm-rational-business-developer-extension/index.json b/site/public/v1/software/ibm-rational-business-developer-extension/index.json new file mode 100644 index 000000000000..81ef1f0d3af5 --- /dev/null +++ b/site/public/v1/software/ibm-rational-business-developer-extension/index.json @@ -0,0 +1,21 @@ +{ + "id": 4477, + "slug": "ibm-rational-business-developer-extension", + "name": "IBM Rational Business Developer Extension", + "release_date": null, + "developers": [ + "IBM" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5968964" + ], + "created_at": "2026-07-10T10:12:41.285862", + "updated_at": "2026-07-10T10:12:41.285862", + "url": "/v1/software/ibm-rational-business-developer-extension" +} diff --git a/site/public/v1/software/ibm-rational-focal-point/index.json b/site/public/v1/software/ibm-rational-focal-point/index.json new file mode 100644 index 000000000000..5331d4114138 --- /dev/null +++ b/site/public/v1/software/ibm-rational-focal-point/index.json @@ -0,0 +1,21 @@ +{ + "id": 4478, + "slug": "ibm-rational-focal-point", + "name": "IBM Rational Focal Point", + "release_date": null, + "developers": [ + "UNICOM Global" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5968969" + ], + "created_at": "2026-07-10T10:12:41.285862", + "updated_at": "2026-07-10T10:12:41.285862", + "url": "/v1/software/ibm-rational-focal-point" +} diff --git a/site/public/v1/software/ibm-rational-performance-tester/index.json b/site/public/v1/software/ibm-rational-performance-tester/index.json new file mode 100644 index 000000000000..d123f41c64cc --- /dev/null +++ b/site/public/v1/software/ibm-rational-performance-tester/index.json @@ -0,0 +1,21 @@ +{ + "id": 4479, + "slug": "ibm-rational-performance-tester", + "name": "IBM Rational Performance Tester", + "release_date": null, + "developers": [ + "IBM" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5968973" + ], + "created_at": "2026-07-10T10:12:41.285862", + "updated_at": "2026-07-10T10:12:41.285862", + "url": "/v1/software/ibm-rational-performance-tester" +} diff --git a/site/public/v1/software/ibm-rational-purify/index.json b/site/public/v1/software/ibm-rational-purify/index.json new file mode 100644 index 000000000000..20d5137d639f --- /dev/null +++ b/site/public/v1/software/ibm-rational-purify/index.json @@ -0,0 +1,21 @@ +{ + "id": 4480, + "slug": "ibm-rational-purify", + "name": "IBM Rational Purify", + "release_date": null, + "developers": [ + "IBM" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5968974" + ], + "created_at": "2026-07-10T10:12:41.286873", + "updated_at": "2026-07-10T10:12:41.286873", + "url": "/v1/software/ibm-rational-purify" +} diff --git a/site/public/v1/software/ibm-rational-rose-xde/index.json b/site/public/v1/software/ibm-rational-rose-xde/index.json new file mode 100644 index 000000000000..9aa238898624 --- /dev/null +++ b/site/public/v1/software/ibm-rational-rose-xde/index.json @@ -0,0 +1,21 @@ +{ + "id": 4481, + "slug": "ibm-rational-rose-xde", + "name": "IBM Rational Rose XDE", + "release_date": "1994-01-01", + "developers": [ + "IBM" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5968978" + ], + "created_at": "2026-07-10T10:12:41.286873", + "updated_at": "2026-07-10T10:12:41.286873", + "url": "/v1/software/ibm-rational-rose-xde" +} diff --git a/site/public/v1/software/ibm-san-file-system/index.json b/site/public/v1/software/ibm-san-file-system/index.json new file mode 100644 index 000000000000..781e7f339d6e --- /dev/null +++ b/site/public/v1/software/ibm-san-file-system/index.json @@ -0,0 +1,21 @@ +{ + "id": 4482, + "slug": "ibm-san-file-system", + "name": "IBM SAN File System", + "release_date": null, + "developers": [ + "IBM" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5968998" + ], + "created_at": "2026-07-10T10:12:41.286873", + "updated_at": "2026-07-10T10:12:41.286873", + "url": "/v1/software/ibm-san-file-system" +} diff --git a/site/public/v1/software/ibm-scalable-architecture-for-financial-reporting/index.json b/site/public/v1/software/ibm-scalable-architecture-for-financial-reporting/index.json new file mode 100644 index 000000000000..400b4bff4e8d --- /dev/null +++ b/site/public/v1/software/ibm-scalable-architecture-for-financial-reporting/index.json @@ -0,0 +1,21 @@ +{ + "id": 4483, + "slug": "ibm-scalable-architecture-for-financial-reporting", + "name": "IBM Scalable Architecture for Financial Reporting", + "release_date": null, + "developers": [ + "IBM" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5969006" + ], + "created_at": "2026-07-10T10:12:41.287857", + "updated_at": "2026-07-10T10:12:41.287857", + "url": "/v1/software/ibm-scalable-architecture-for-financial-reporting" +} diff --git a/site/public/v1/software/ibm-scale-out-file-services/index.json b/site/public/v1/software/ibm-scale-out-file-services/index.json new file mode 100644 index 000000000000..37d1568b1077 --- /dev/null +++ b/site/public/v1/software/ibm-scale-out-file-services/index.json @@ -0,0 +1,21 @@ +{ + "id": 4484, + "slug": "ibm-scale-out-file-services", + "name": "IBM Scale-out File Services", + "release_date": null, + "developers": [ + "IBM" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5969017" + ], + "created_at": "2026-07-10T10:12:41.287857", + "updated_at": "2026-07-10T10:12:41.287857", + "url": "/v1/software/ibm-scale-out-file-services" +} diff --git a/site/public/v1/software/ibm-service-management-framework/index.json b/site/public/v1/software/ibm-service-management-framework/index.json new file mode 100644 index 000000000000..9ec0bfa1955c --- /dev/null +++ b/site/public/v1/software/ibm-service-management-framework/index.json @@ -0,0 +1,21 @@ +{ + "id": 4485, + "slug": "ibm-service-management-framework", + "name": "IBM Service Management Framework", + "release_date": null, + "developers": [ + "IBM" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5969020" + ], + "created_at": "2026-07-10T10:12:41.287857", + "updated_at": "2026-07-10T10:12:41.287857", + "url": "/v1/software/ibm-service-management-framework" +} diff --git a/site/public/v1/software/ibm-spectrum-symphony/index.json b/site/public/v1/software/ibm-spectrum-symphony/index.json new file mode 100644 index 000000000000..0e56b318cf7b --- /dev/null +++ b/site/public/v1/software/ibm-spectrum-symphony/index.json @@ -0,0 +1,24 @@ +{ + "id": 4486, + "slug": "ibm-spectrum-symphony", + "name": "IBM Spectrum Symphony", + "release_date": null, + "developers": [ + "Platform Computing", + "IBM" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Java" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7661461" + ], + "created_at": "2026-07-10T10:12:41.287857", + "updated_at": "2026-07-10T10:12:41.287857", + "url": "/v1/software/ibm-spectrum-symphony" +} diff --git a/site/public/v1/software/ibm-spufi/index.json b/site/public/v1/software/ibm-spufi/index.json new file mode 100644 index 000000000000..9021b2aa8b8c --- /dev/null +++ b/site/public/v1/software/ibm-spufi/index.json @@ -0,0 +1,21 @@ +{ + "id": 4487, + "slug": "ibm-spufi", + "name": "IBM Spufi", + "release_date": null, + "developers": [ + "IBM" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1604254" + ], + "created_at": "2026-07-10T10:12:41.288843", + "updated_at": "2026-07-10T10:12:41.288843", + "url": "/v1/software/ibm-spufi" +} diff --git a/site/public/v1/software/ibm-stairs/index.json b/site/public/v1/software/ibm-stairs/index.json new file mode 100644 index 000000000000..d90e0c7bd3e4 --- /dev/null +++ b/site/public/v1/software/ibm-stairs/index.json @@ -0,0 +1,23 @@ +{ + "id": 4488, + "slug": "ibm-stairs", + "name": "IBM STAIRS", + "release_date": null, + "developers": [ + "IBM" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "assembly language" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5969008" + ], + "created_at": "2026-07-10T10:12:41.288843", + "updated_at": "2026-07-10T10:12:41.288843", + "url": "/v1/software/ibm-stairs" +} diff --git a/site/public/v1/software/ibm-storyboard-plus/index.json b/site/public/v1/software/ibm-storyboard-plus/index.json new file mode 100644 index 000000000000..535612c5fbf8 --- /dev/null +++ b/site/public/v1/software/ibm-storyboard-plus/index.json @@ -0,0 +1,19 @@ +{ + "id": 4489, + "slug": "ibm-storyboard-plus", + "name": "IBM Storyboard Plus", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5969035" + ], + "created_at": "2026-07-10T10:12:41.288843", + "updated_at": "2026-07-10T10:12:41.288843", + "url": "/v1/software/ibm-storyboard-plus" +} diff --git a/site/public/v1/software/ibm-system-34-and-system-36-screen-design-aid/index.json b/site/public/v1/software/ibm-system-34-and-system-36-screen-design-aid/index.json new file mode 100644 index 000000000000..024d8dbc06ab --- /dev/null +++ b/site/public/v1/software/ibm-system-34-and-system-36-screen-design-aid/index.json @@ -0,0 +1,21 @@ +{ + "id": 4490, + "slug": "ibm-system-34-and-system-36-screen-design-aid", + "name": "IBM System/34 and System/36 Screen Design Aid", + "release_date": null, + "developers": [ + "IBM" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5969043" + ], + "created_at": "2026-07-10T10:12:41.289846", + "updated_at": "2026-07-10T10:12:41.289846", + "url": "/v1/software/ibm-system-34-and-system-36-screen-design-aid" +} diff --git a/site/public/v1/software/ibm-system-management-facilities/index.json b/site/public/v1/software/ibm-system-management-facilities/index.json new file mode 100644 index 000000000000..5618e77529a1 --- /dev/null +++ b/site/public/v1/software/ibm-system-management-facilities/index.json @@ -0,0 +1,21 @@ +{ + "id": 4491, + "slug": "ibm-system-management-facilities", + "name": "IBM System Management Facilities", + "release_date": null, + "developers": [ + "IBM" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5969059" + ], + "created_at": "2026-07-10T10:12:41.289846", + "updated_at": "2026-07-10T10:12:41.289846", + "url": "/v1/software/ibm-system-management-facilities" +} diff --git a/site/public/v1/software/ibm-system-object-model/index.json b/site/public/v1/software/ibm-system-object-model/index.json new file mode 100644 index 000000000000..640916cd122d --- /dev/null +++ b/site/public/v1/software/ibm-system-object-model/index.json @@ -0,0 +1,21 @@ +{ + "id": 4492, + "slug": "ibm-system-object-model", + "name": "IBM System Object Model", + "release_date": null, + "developers": [ + "IBM" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2376827" + ], + "created_at": "2026-07-10T10:12:41.289846", + "updated_at": "2026-07-10T10:12:41.289846", + "url": "/v1/software/ibm-system-object-model" +} diff --git a/site/public/v1/software/ibm-systemt/index.json b/site/public/v1/software/ibm-systemt/index.json new file mode 100644 index 000000000000..73c82bc8fde1 --- /dev/null +++ b/site/public/v1/software/ibm-systemt/index.json @@ -0,0 +1,21 @@ +{ + "id": 4493, + "slug": "ibm-systemt", + "name": "IBM SystemT", + "release_date": null, + "developers": [ + "IBM" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28456210" + ], + "created_at": "2026-07-10T10:12:41.289846", + "updated_at": "2026-07-10T10:12:41.289846", + "url": "/v1/software/ibm-systemt" +} diff --git a/site/public/v1/software/ibm-tivoli-access-manager/index.json b/site/public/v1/software/ibm-tivoli-access-manager/index.json new file mode 100644 index 000000000000..a3ce3705b2eb --- /dev/null +++ b/site/public/v1/software/ibm-tivoli-access-manager/index.json @@ -0,0 +1,21 @@ +{ + "id": 4494, + "slug": "ibm-tivoli-access-manager", + "name": "IBM Tivoli Access Manager", + "release_date": null, + "developers": [ + "IBM" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16928076" + ], + "created_at": "2026-07-10T10:12:41.290845", + "updated_at": "2026-07-10T10:12:41.290845", + "url": "/v1/software/ibm-tivoli-access-manager" +} diff --git a/site/public/v1/software/ibm-tivoli-directory-server/index.json b/site/public/v1/software/ibm-tivoli-directory-server/index.json new file mode 100644 index 000000000000..64747c24e6aa --- /dev/null +++ b/site/public/v1/software/ibm-tivoli-directory-server/index.json @@ -0,0 +1,21 @@ +{ + "id": 4495, + "slug": "ibm-tivoli-directory-server", + "name": "IBM Tivoli Directory Server", + "release_date": null, + "developers": [ + "IBM" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q634163" + ], + "created_at": "2026-07-10T10:12:41.290845", + "updated_at": "2026-07-10T10:12:41.290845", + "url": "/v1/software/ibm-tivoli-directory-server" +} diff --git a/site/public/v1/software/ibm-tivoli-storage-manager/index.json b/site/public/v1/software/ibm-tivoli-storage-manager/index.json new file mode 100644 index 000000000000..3ddef2d4bdb2 --- /dev/null +++ b/site/public/v1/software/ibm-tivoli-storage-manager/index.json @@ -0,0 +1,21 @@ +{ + "id": 4496, + "slug": "ibm-tivoli-storage-manager", + "name": "IBM Tivoli Storage Manager", + "release_date": null, + "developers": [ + "IBM" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2001900" + ], + "created_at": "2026-07-10T10:12:41.290845", + "updated_at": "2026-07-10T10:12:41.290845", + "url": "/v1/software/ibm-tivoli-storage-manager" +} diff --git a/site/public/v1/software/ibm-tivoli-system-automation/index.json b/site/public/v1/software/ibm-tivoli-system-automation/index.json new file mode 100644 index 000000000000..cfec09512bb7 --- /dev/null +++ b/site/public/v1/software/ibm-tivoli-system-automation/index.json @@ -0,0 +1,23 @@ +{ + "id": 4497, + "slug": "ibm-tivoli-system-automation", + "name": "IBM Tivoli System Automation", + "release_date": null, + "developers": [ + "IBM" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "REXX" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2437278" + ], + "created_at": "2026-07-10T10:12:41.291845", + "updated_at": "2026-07-10T10:12:41.291845", + "url": "/v1/software/ibm-tivoli-system-automation" +} diff --git a/site/public/v1/software/ibm-tpns/index.json b/site/public/v1/software/ibm-tpns/index.json new file mode 100644 index 000000000000..24eaa803d829 --- /dev/null +++ b/site/public/v1/software/ibm-tpns/index.json @@ -0,0 +1,21 @@ +{ + "id": 4498, + "slug": "ibm-tpns", + "name": "IBM TPNS", + "release_date": null, + "developers": [ + "IBM" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5969064" + ], + "created_at": "2026-07-10T10:12:41.291845", + "updated_at": "2026-07-10T10:12:41.291845", + "url": "/v1/software/ibm-tpns" +} diff --git a/site/public/v1/software/ibm-unica-netinsight/index.json b/site/public/v1/software/ibm-unica-netinsight/index.json new file mode 100644 index 000000000000..51a4f271df9e --- /dev/null +++ b/site/public/v1/software/ibm-unica-netinsight/index.json @@ -0,0 +1,21 @@ +{ + "id": 4499, + "slug": "ibm-unica-netinsight", + "name": "IBM Unica NetInsight", + "release_date": null, + "developers": [ + "IBM" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5969112" + ], + "created_at": "2026-07-10T10:12:41.291845", + "updated_at": "2026-07-10T10:12:41.291845", + "url": "/v1/software/ibm-unica-netinsight" +} diff --git a/site/public/v1/software/ibm-viavoice/index.json b/site/public/v1/software/ibm-viavoice/index.json new file mode 100644 index 000000000000..272f3324ee6d --- /dev/null +++ b/site/public/v1/software/ibm-viavoice/index.json @@ -0,0 +1,21 @@ +{ + "id": 4500, + "slug": "ibm-viavoice", + "name": "IBM ViaVoice", + "release_date": null, + "developers": [ + "IBM" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4116861" + ], + "created_at": "2026-07-10T10:12:41.292863", + "updated_at": "2026-07-10T10:12:41.292863", + "url": "/v1/software/ibm-viavoice" +} diff --git a/site/public/v1/software/ibm-visualage-for-basic/index.json b/site/public/v1/software/ibm-visualage-for-basic/index.json new file mode 100644 index 000000000000..30aec11c38f1 --- /dev/null +++ b/site/public/v1/software/ibm-visualage-for-basic/index.json @@ -0,0 +1,19 @@ +{ + "id": 4501, + "slug": "ibm-visualage-for-basic", + "name": "IBM VisualAge for Basic", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q114102337" + ], + "created_at": "2026-07-10T10:12:41.292863", + "updated_at": "2026-07-10T10:12:41.292863", + "url": "/v1/software/ibm-visualage-for-basic" +} diff --git a/site/public/v1/software/ibm-websphere-business-events/index.json b/site/public/v1/software/ibm-websphere-business-events/index.json new file mode 100644 index 000000000000..dd77b178c410 --- /dev/null +++ b/site/public/v1/software/ibm-websphere-business-events/index.json @@ -0,0 +1,19 @@ +{ + "id": 4502, + "slug": "ibm-websphere-business-events", + "name": "IBM Websphere Business Events", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16927955" + ], + "created_at": "2026-07-10T10:12:41.292863", + "updated_at": "2026-07-10T10:12:41.292863", + "url": "/v1/software/ibm-websphere-business-events" +} diff --git a/site/public/v1/software/ibm-websphere-commerce/index.json b/site/public/v1/software/ibm-websphere-commerce/index.json new file mode 100644 index 000000000000..ba803a24e1f8 --- /dev/null +++ b/site/public/v1/software/ibm-websphere-commerce/index.json @@ -0,0 +1,21 @@ +{ + "id": 4503, + "slug": "ibm-websphere-commerce", + "name": "IBM WebSphere Commerce", + "release_date": null, + "developers": [ + "IBM" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5969126" + ], + "created_at": "2026-07-10T10:12:41.293845", + "updated_at": "2026-07-10T10:12:41.293845", + "url": "/v1/software/ibm-websphere-commerce" +} diff --git a/site/public/v1/software/ibm-websphere-extreme-scale/index.json b/site/public/v1/software/ibm-websphere-extreme-scale/index.json new file mode 100644 index 000000000000..580093d07658 --- /dev/null +++ b/site/public/v1/software/ibm-websphere-extreme-scale/index.json @@ -0,0 +1,21 @@ +{ + "id": 4504, + "slug": "ibm-websphere-extreme-scale", + "name": "IBM WebSphere eXtreme Scale", + "release_date": null, + "developers": [ + "IBM" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5969150" + ], + "created_at": "2026-07-10T10:12:41.293845", + "updated_at": "2026-07-10T10:12:41.293845", + "url": "/v1/software/ibm-websphere-extreme-scale" +} diff --git a/site/public/v1/software/ibm-websphere-host-on-demand/index.json b/site/public/v1/software/ibm-websphere-host-on-demand/index.json new file mode 100644 index 000000000000..054c7357734d --- /dev/null +++ b/site/public/v1/software/ibm-websphere-host-on-demand/index.json @@ -0,0 +1,19 @@ +{ + "id": 4505, + "slug": "ibm-websphere-host-on-demand", + "name": "IBM Websphere Host On-Demand", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16973030" + ], + "created_at": "2026-07-10T10:12:41.293845", + "updated_at": "2026-07-10T10:12:41.293845", + "url": "/v1/software/ibm-websphere-host-on-demand" +} diff --git a/site/public/v1/software/ibm-websphere-message-broker/index.json b/site/public/v1/software/ibm-websphere-message-broker/index.json new file mode 100644 index 000000000000..bd5e6b42bf95 --- /dev/null +++ b/site/public/v1/software/ibm-websphere-message-broker/index.json @@ -0,0 +1,19 @@ +{ + "id": 4506, + "slug": "ibm-websphere-message-broker", + "name": "IBM WebSphere Message Broker", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5969139" + ], + "created_at": "2026-07-10T10:12:41.294790", + "updated_at": "2026-07-10T10:12:41.294790", + "url": "/v1/software/ibm-websphere-message-broker" +} diff --git a/site/public/v1/software/ibm-websphere-process-server/index.json b/site/public/v1/software/ibm-websphere-process-server/index.json new file mode 100644 index 000000000000..528ab6b0ddf8 --- /dev/null +++ b/site/public/v1/software/ibm-websphere-process-server/index.json @@ -0,0 +1,21 @@ +{ + "id": 4507, + "slug": "ibm-websphere-process-server", + "name": "IBM WebSphere Process Server", + "release_date": null, + "developers": [ + "IBM" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5969143" + ], + "created_at": "2026-07-10T10:12:41.294790", + "updated_at": "2026-07-10T10:12:41.294790", + "url": "/v1/software/ibm-websphere-process-server" +} diff --git a/site/public/v1/software/ibm-websphere-service-registry-and-repository/index.json b/site/public/v1/software/ibm-websphere-service-registry-and-repository/index.json new file mode 100644 index 000000000000..54d025f61a01 --- /dev/null +++ b/site/public/v1/software/ibm-websphere-service-registry-and-repository/index.json @@ -0,0 +1,21 @@ +{ + "id": 4508, + "slug": "ibm-websphere-service-registry-and-repository", + "name": "IBM WebSphere Service Registry and Repository", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Java" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5969145" + ], + "created_at": "2026-07-10T10:12:41.294790", + "updated_at": "2026-07-10T10:12:41.294790", + "url": "/v1/software/ibm-websphere-service-registry-and-repository" +} diff --git a/site/public/v1/software/ibm-websphere/index.json b/site/public/v1/software/ibm-websphere/index.json new file mode 100644 index 000000000000..9471810a5e1f --- /dev/null +++ b/site/public/v1/software/ibm-websphere/index.json @@ -0,0 +1,21 @@ +{ + "id": 4509, + "slug": "ibm-websphere", + "name": "IBM WebSphere", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Java" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2536917" + ], + "created_at": "2026-07-10T10:12:41.295785", + "updated_at": "2026-07-10T10:12:41.295785", + "url": "/v1/software/ibm-websphere" +} diff --git a/site/public/v1/software/ibm-works/index.json b/site/public/v1/software/ibm-works/index.json new file mode 100644 index 000000000000..0a3c1a506b14 --- /dev/null +++ b/site/public/v1/software/ibm-works/index.json @@ -0,0 +1,21 @@ +{ + "id": 4510, + "slug": "ibm-works", + "name": "IBM Works", + "release_date": null, + "developers": [ + "IBM" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5969161" + ], + "created_at": "2026-07-10T10:12:41.295785", + "updated_at": "2026-07-10T10:12:41.295785", + "url": "/v1/software/ibm-works" +} diff --git a/site/public/v1/software/ibm-xl-c/index.json b/site/public/v1/software/ibm-xl-c/index.json new file mode 100644 index 000000000000..e7bf15508ad5 --- /dev/null +++ b/site/public/v1/software/ibm-xl-c/index.json @@ -0,0 +1,21 @@ +{ + "id": 4511, + "slug": "ibm-xl-c", + "name": "IBM XL C++", + "release_date": null, + "developers": [ + "IBM" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16928007" + ], + "created_at": "2026-07-10T10:12:41.295785", + "updated_at": "2026-07-10T10:12:41.295785", + "url": "/v1/software/ibm-xl-c" +} diff --git a/site/public/v1/software/iboogie/index.json b/site/public/v1/software/iboogie/index.json new file mode 100644 index 000000000000..28260706efd0 --- /dev/null +++ b/site/public/v1/software/iboogie/index.json @@ -0,0 +1,19 @@ +{ + "id": 4512, + "slug": "iboogie", + "name": "iBoogie", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085017" + ], + "created_at": "2026-07-10T10:12:41.296791", + "updated_at": "2026-07-10T10:12:41.296791", + "url": "/v1/software/iboogie" +} diff --git a/site/public/v1/software/iboysoft/index.json b/site/public/v1/software/iboysoft/index.json new file mode 100644 index 000000000000..3f61640db137 --- /dev/null +++ b/site/public/v1/software/iboysoft/index.json @@ -0,0 +1,22 @@ +{ + "id": 4513, + "slug": "iboysoft", + "name": "iBoysoft", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115620685" + ], + "created_at": "2026-07-10T10:12:41.296791", + "updated_at": "2026-07-10T10:12:41.296791", + "url": "/v1/software/iboysoft" +} diff --git a/site/public/v1/software/ic-project/index.json b/site/public/v1/software/ic-project/index.json new file mode 100644 index 000000000000..65d8de91702b --- /dev/null +++ b/site/public/v1/software/ic-project/index.json @@ -0,0 +1,19 @@ +{ + "id": 4514, + "slug": "ic-project", + "name": "IC Project", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q29364732" + ], + "created_at": "2026-07-10T10:12:41.296791", + "updated_at": "2026-07-10T10:12:41.296791", + "url": "/v1/software/ic-project" +} diff --git a/site/public/v1/software/icab/index.json b/site/public/v1/software/icab/index.json new file mode 100644 index 000000000000..5e30c8a723d5 --- /dev/null +++ b/site/public/v1/software/icab/index.json @@ -0,0 +1,23 @@ +{ + "id": 4515, + "slug": "icab", + "name": "iCab", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "macOS" + ], + "programming_languages": [ + "Objective-C" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q284497" + ], + "created_at": "2026-07-10T10:12:41.296791", + "updated_at": "2026-07-10T10:12:41.296791", + "url": "/v1/software/icab" +} diff --git a/site/public/v1/software/icad-universe/index.json b/site/public/v1/software/icad-universe/index.json new file mode 100644 index 000000000000..d3794afc4718 --- /dev/null +++ b/site/public/v1/software/icad-universe/index.json @@ -0,0 +1,23 @@ +{ + "id": 4516, + "slug": "icad-universe", + "name": "Icad Universe", + "release_date": null, + "developers": [ + "Instituto Tecnológico del Calzado y Conexas" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140393099" + ], + "created_at": "2026-07-10T10:12:41.297869", + "updated_at": "2026-07-10T10:12:41.297869", + "url": "/v1/software/icad-universe" +} diff --git a/site/public/v1/software/icaros/index.json b/site/public/v1/software/icaros/index.json new file mode 100644 index 000000000000..291377de6902 --- /dev/null +++ b/site/public/v1/software/icaros/index.json @@ -0,0 +1,19 @@ +{ + "id": 4517, + "slug": "icaros", + "name": "Icaros", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3147584" + ], + "created_at": "2026-07-10T10:12:41.297869", + "updated_at": "2026-07-10T10:12:41.297869", + "url": "/v1/software/icaros" +} diff --git a/site/public/v1/software/icc-examin/index.json b/site/public/v1/software/icc-examin/index.json new file mode 100644 index 000000000000..484cc11d4244 --- /dev/null +++ b/site/public/v1/software/icc-examin/index.json @@ -0,0 +1,19 @@ +{ + "id": 4518, + "slug": "icc-examin", + "name": "icc_examin", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974933" + ], + "created_at": "2026-07-10T10:12:41.297869", + "updated_at": "2026-07-10T10:12:41.297869", + "url": "/v1/software/icc-examin" +} diff --git a/site/public/v1/software/iccube/index.json b/site/public/v1/software/iccube/index.json new file mode 100644 index 000000000000..d55b5ec0d3c0 --- /dev/null +++ b/site/public/v1/software/iccube/index.json @@ -0,0 +1,19 @@ +{ + "id": 4519, + "slug": "iccube", + "name": "IcCube", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17028697" + ], + "created_at": "2026-07-10T10:12:41.298885", + "updated_at": "2026-07-10T10:12:41.298885", + "url": "/v1/software/iccube" +} diff --git a/site/public/v1/software/ice-integrated-content-environment/index.json b/site/public/v1/software/ice-integrated-content-environment/index.json new file mode 100644 index 000000000000..2a2e2d4afcb0 --- /dev/null +++ b/site/public/v1/software/ice-integrated-content-environment/index.json @@ -0,0 +1,19 @@ +{ + "id": 4520, + "slug": "ice-integrated-content-environment", + "name": "ICE (Integrated Content Environment)", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085018" + ], + "created_at": "2026-07-10T10:12:41.298885", + "updated_at": "2026-07-10T10:12:41.298885", + "url": "/v1/software/ice-integrated-content-environment" +} diff --git a/site/public/v1/software/icebuddha/index.json b/site/public/v1/software/icebuddha/index.json new file mode 100644 index 000000000000..2d4316def46c --- /dev/null +++ b/site/public/v1/software/icebuddha/index.json @@ -0,0 +1,21 @@ +{ + "id": 4521, + "slug": "icebuddha", + "name": "IceBuddha", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q29168392" + ], + "created_at": "2026-07-10T10:12:41.298885", + "updated_at": "2026-07-10T10:12:41.298885", + "url": "/v1/software/icebuddha" +} diff --git a/site/public/v1/software/icecream-video-editor/index.json b/site/public/v1/software/icecream-video-editor/index.json new file mode 100644 index 000000000000..6ac8c01b3887 --- /dev/null +++ b/site/public/v1/software/icecream-video-editor/index.json @@ -0,0 +1,19 @@ +{ + "id": 4522, + "slug": "icecream-video-editor", + "name": "Icecream Video Editor", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105571795" + ], + "created_at": "2026-07-10T10:12:41.299865", + "updated_at": "2026-07-10T10:12:41.299865", + "url": "/v1/software/icecream-video-editor" +} diff --git a/site/public/v1/software/icecream/index.json b/site/public/v1/software/icecream/index.json new file mode 100644 index 000000000000..51b2c8cf2e87 --- /dev/null +++ b/site/public/v1/software/icecream/index.json @@ -0,0 +1,23 @@ +{ + "id": 4523, + "slug": "icecream", + "name": "icecream", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "cross-platform" + ], + "programming_languages": [], + "licenses": [ + "GNU General Public License, version 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127553093" + ], + "created_at": "2026-07-10T10:12:41.299865", + "updated_at": "2026-07-10T10:12:41.299865", + "url": "/v1/software/icecream" +} diff --git a/site/public/v1/software/icem-surf/index.json b/site/public/v1/software/icem-surf/index.json new file mode 100644 index 000000000000..e88b49894710 --- /dev/null +++ b/site/public/v1/software/icem-surf/index.json @@ -0,0 +1,23 @@ +{ + "id": 4524, + "slug": "icem-surf", + "name": "ICEM Surf", + "release_date": null, + "developers": [ + "Dassault Systèmes" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10299730" + ], + "created_at": "2026-07-10T10:12:41.299865", + "updated_at": "2026-07-10T10:12:41.299865", + "url": "/v1/software/icem-surf" +} diff --git a/site/public/v1/software/ich-quiz/index.json b/site/public/v1/software/ich-quiz/index.json new file mode 100644 index 000000000000..1c229710dc8d --- /dev/null +++ b/site/public/v1/software/ich-quiz/index.json @@ -0,0 +1,21 @@ +{ + "id": 4525, + "slug": "ich-quiz", + "name": "ICH Quiz", + "release_date": null, + "developers": [ + "BMSoft1024" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140352426" + ], + "created_at": "2026-07-10T10:12:41.300863", + "updated_at": "2026-07-10T10:12:41.300863", + "url": "/v1/software/ich-quiz" +} diff --git a/site/public/v1/software/icingaweb2-module-director/index.json b/site/public/v1/software/icingaweb2-module-director/index.json new file mode 100644 index 000000000000..c34a11a15006 --- /dev/null +++ b/site/public/v1/software/icingaweb2-module-director/index.json @@ -0,0 +1,19 @@ +{ + "id": 4526, + "slug": "icingaweb2-module-director", + "name": "icingaweb2-module-director", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974936" + ], + "created_at": "2026-07-10T10:12:41.300863", + "updated_at": "2026-07-10T10:12:41.300863", + "url": "/v1/software/icingaweb2-module-director" +} diff --git a/site/public/v1/software/icingaweb2-module-graphite/index.json b/site/public/v1/software/icingaweb2-module-graphite/index.json new file mode 100644 index 000000000000..77d47bbda615 --- /dev/null +++ b/site/public/v1/software/icingaweb2-module-graphite/index.json @@ -0,0 +1,19 @@ +{ + "id": 4527, + "slug": "icingaweb2-module-graphite", + "name": "icingaweb2-module-graphite", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974937" + ], + "created_at": "2026-07-10T10:12:41.300863", + "updated_at": "2026-07-10T10:12:41.300863", + "url": "/v1/software/icingaweb2-module-graphite" +} diff --git a/site/public/v1/software/icingaweb2-module-pnp4nagios/index.json b/site/public/v1/software/icingaweb2-module-pnp4nagios/index.json new file mode 100644 index 000000000000..f10072862984 --- /dev/null +++ b/site/public/v1/software/icingaweb2-module-pnp4nagios/index.json @@ -0,0 +1,19 @@ +{ + "id": 4528, + "slug": "icingaweb2-module-pnp4nagios", + "name": "icingaweb2-module-pnp4nagios", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974938" + ], + "created_at": "2026-07-10T10:12:41.300863", + "updated_at": "2026-07-10T10:12:41.300863", + "url": "/v1/software/icingaweb2-module-pnp4nagios" +} diff --git a/site/public/v1/software/iclone/index.json b/site/public/v1/software/iclone/index.json new file mode 100644 index 000000000000..9ddc8b32f36b --- /dev/null +++ b/site/public/v1/software/iclone/index.json @@ -0,0 +1,21 @@ +{ + "id": 4529, + "slug": "iclone", + "name": "iClone", + "release_date": null, + "developers": [ + "Reallusion" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q291782" + ], + "created_at": "2026-07-10T10:12:41.301871", + "updated_at": "2026-07-10T10:12:41.301871", + "url": "/v1/software/iclone" +} diff --git a/site/public/v1/software/icon-library/index.json b/site/public/v1/software/icon-library/index.json new file mode 100644 index 000000000000..291ae372aafb --- /dev/null +++ b/site/public/v1/software/icon-library/index.json @@ -0,0 +1,21 @@ +{ + "id": 4530, + "slug": "icon-library", + "name": "Icon Library", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "shareware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q128244879" + ], + "created_at": "2026-07-10T10:12:41.301871", + "updated_at": "2026-07-10T10:12:41.301871", + "url": "/v1/software/icon-library" +} diff --git a/site/public/v1/software/icon/index.json b/site/public/v1/software/icon/index.json new file mode 100644 index 000000000000..30bd17259461 --- /dev/null +++ b/site/public/v1/software/icon/index.json @@ -0,0 +1,21 @@ +{ + "id": 4531, + "slug": "icon", + "name": "α-ICON", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Creative Commons Attribution 4.0 International" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108740141" + ], + "created_at": "2026-07-10T10:12:41.301871", + "updated_at": "2026-07-10T10:12:41.301871", + "url": "/v1/software/icon" +} diff --git a/site/public/v1/software/icore-virtual-accounts/index.json b/site/public/v1/software/icore-virtual-accounts/index.json new file mode 100644 index 000000000000..1038d78fdf77 --- /dev/null +++ b/site/public/v1/software/icore-virtual-accounts/index.json @@ -0,0 +1,21 @@ +{ + "id": 4532, + "slug": "icore-virtual-accounts", + "name": "iCore Virtual Accounts", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4041008" + ], + "created_at": "2026-07-10T10:12:41.302863", + "updated_at": "2026-07-10T10:12:41.302863", + "url": "/v1/software/icore-virtual-accounts" +} diff --git a/site/public/v1/software/icoutils/index.json b/site/public/v1/software/icoutils/index.json new file mode 100644 index 000000000000..16701c48d059 --- /dev/null +++ b/site/public/v1/software/icoutils/index.json @@ -0,0 +1,19 @@ +{ + "id": 4533, + "slug": "icoutils", + "name": "icoutils", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62864275" + ], + "created_at": "2026-07-10T10:12:41.302863", + "updated_at": "2026-07-10T10:12:41.302863", + "url": "/v1/software/icoutils" +} diff --git a/site/public/v1/software/icse-2023-artifacts/index.json b/site/public/v1/software/icse-2023-artifacts/index.json new file mode 100644 index 000000000000..d2934896c6fe --- /dev/null +++ b/site/public/v1/software/icse-2023-artifacts/index.json @@ -0,0 +1,21 @@ +{ + "id": 4534, + "slug": "icse-2023-artifacts", + "name": "ICSE-2023-Artifacts", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127485669" + ], + "created_at": "2026-07-10T10:12:41.302863", + "updated_at": "2026-07-10T10:12:41.302863", + "url": "/v1/software/icse-2023-artifacts" +} diff --git a/site/public/v1/software/icta-internet-community-text-analyzer/index.json b/site/public/v1/software/icta-internet-community-text-analyzer/index.json new file mode 100644 index 000000000000..292b6dd4a8da --- /dev/null +++ b/site/public/v1/software/icta-internet-community-text-analyzer/index.json @@ -0,0 +1,19 @@ +{ + "id": 4535, + "slug": "icta-internet-community-text-analyzer", + "name": "ICTA (internet community text analyzer)", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087817" + ], + "created_at": "2026-07-10T10:12:41.303870", + "updated_at": "2026-07-10T10:12:41.303870", + "url": "/v1/software/icta-internet-community-text-analyzer" +} diff --git a/site/public/v1/software/icy/index.json b/site/public/v1/software/icy/index.json new file mode 100644 index 000000000000..e1564aee7942 --- /dev/null +++ b/site/public/v1/software/icy/index.json @@ -0,0 +1,23 @@ +{ + "id": 4536, + "slug": "icy", + "name": "Icy", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "iOS" + ], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3147746" + ], + "created_at": "2026-07-10T10:12:41.303870", + "updated_at": "2026-07-10T10:12:41.303870", + "url": "/v1/software/icy" +} diff --git a/site/public/v1/software/id3tool/index.json b/site/public/v1/software/id3tool/index.json new file mode 100644 index 000000000000..51c306dcb3ea --- /dev/null +++ b/site/public/v1/software/id3tool/index.json @@ -0,0 +1,19 @@ +{ + "id": 4537, + "slug": "id3tool", + "name": "id3tool", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62864269" + ], + "created_at": "2026-07-10T10:12:41.303870", + "updated_at": "2026-07-10T10:12:41.303870", + "url": "/v1/software/id3tool" +} diff --git a/site/public/v1/software/id3v2/index.json b/site/public/v1/software/id3v2/index.json new file mode 100644 index 000000000000..331d993ec693 --- /dev/null +++ b/site/public/v1/software/id3v2/index.json @@ -0,0 +1,21 @@ +{ + "id": 4538, + "slug": "id3v2", + "name": "id3v2", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "GNU Library General Public License, version 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62864266" + ], + "created_at": "2026-07-10T10:12:41.304860", + "updated_at": "2026-07-10T10:12:41.304860", + "url": "/v1/software/id3v2" +} diff --git a/site/public/v1/software/ida-indoor-climate-and-energy/index.json b/site/public/v1/software/ida-indoor-climate-and-energy/index.json new file mode 100644 index 000000000000..73d1e70bba4a --- /dev/null +++ b/site/public/v1/software/ida-indoor-climate-and-energy/index.json @@ -0,0 +1,19 @@ +{ + "id": 4539, + "slug": "ida-indoor-climate-and-energy", + "name": "IDA Indoor Climate and Energy", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q55639934" + ], + "created_at": "2026-07-10T10:12:41.304860", + "updated_at": "2026-07-10T10:12:41.304860", + "url": "/v1/software/ida-indoor-climate-and-energy" +} diff --git a/site/public/v1/software/iddu-36/index.json b/site/public/v1/software/iddu-36/index.json new file mode 100644 index 000000000000..d27c3e93fcc0 --- /dev/null +++ b/site/public/v1/software/iddu-36/index.json @@ -0,0 +1,21 @@ +{ + "id": 4540, + "slug": "iddu-36", + "name": "IDDU/36", + "release_date": null, + "developers": [ + "IBM" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28869424" + ], + "created_at": "2026-07-10T10:12:41.304860", + "updated_at": "2026-07-10T10:12:41.304860", + "url": "/v1/software/iddu-36" +} diff --git a/site/public/v1/software/idea-architectural/index.json b/site/public/v1/software/idea-architectural/index.json new file mode 100644 index 000000000000..457270d637af --- /dev/null +++ b/site/public/v1/software/idea-architectural/index.json @@ -0,0 +1,21 @@ +{ + "id": 4541, + "slug": "idea-architectural", + "name": "IDEA Architectural", + "release_date": null, + "developers": [ + "4M" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5969973" + ], + "created_at": "2026-07-10T10:12:41.304860", + "updated_at": "2026-07-10T10:12:41.304860", + "url": "/v1/software/idea-architectural" +} diff --git a/site/public/v1/software/idealist/index.json b/site/public/v1/software/idealist/index.json new file mode 100644 index 000000000000..4958cece5af3 --- /dev/null +++ b/site/public/v1/software/idealist/index.json @@ -0,0 +1,19 @@ +{ + "id": 4542, + "slug": "idealist", + "name": "IdeaList", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60787778" + ], + "created_at": "2026-07-10T10:12:41.305899", + "updated_at": "2026-07-10T10:12:41.305899", + "url": "/v1/software/idealist" +} diff --git a/site/public/v1/software/ideas-emulator/index.json b/site/public/v1/software/ideas-emulator/index.json new file mode 100644 index 000000000000..1cfb027daf0a --- /dev/null +++ b/site/public/v1/software/ideas-emulator/index.json @@ -0,0 +1,19 @@ +{ + "id": 4543, + "slug": "ideas-emulator", + "name": "iDeaS Emulator", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q307740" + ], + "created_at": "2026-07-10T10:12:41.305899", + "updated_at": "2026-07-10T10:12:41.305899", + "url": "/v1/software/ideas-emulator" +} diff --git a/site/public/v1/software/ideco-ics/index.json b/site/public/v1/software/ideco-ics/index.json new file mode 100644 index 000000000000..43f82081a7dc --- /dev/null +++ b/site/public/v1/software/ideco-ics/index.json @@ -0,0 +1,21 @@ +{ + "id": 4544, + "slug": "ideco-ics", + "name": "Ideco ICS", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "commercial software" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4041257" + ], + "created_at": "2026-07-10T10:12:41.306869", + "updated_at": "2026-07-10T10:12:41.306869", + "url": "/v1/software/ideco-ics" +} diff --git a/site/public/v1/software/idempiere/index.json b/site/public/v1/software/idempiere/index.json new file mode 100644 index 000000000000..55e1fbbf2589 --- /dev/null +++ b/site/public/v1/software/idempiere/index.json @@ -0,0 +1,30 @@ +{ + "id": 4545, + "slug": "idempiere", + "name": "iDempiere", + "release_date": null, + "developers": [ + "virtual community" + ], + "publishers": [], + "operating_systems": [ + "cross-platform", + "Unix-like operating system", + "macOS", + "Microsoft Windows" + ], + "programming_languages": [ + "Java" + ], + "licenses": [ + "GNU General Public License, version 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16577004" + ], + "created_at": "2026-07-10T10:12:41.306869", + "updated_at": "2026-07-10T10:12:41.306869", + "url": "/v1/software/idempiere" +} diff --git a/site/public/v1/software/idlcoyote/index.json b/site/public/v1/software/idlcoyote/index.json new file mode 100644 index 000000000000..cc6ed38af200 --- /dev/null +++ b/site/public/v1/software/idlcoyote/index.json @@ -0,0 +1,19 @@ +{ + "id": 4546, + "slug": "idlcoyote", + "name": "idlcoyote", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974942" + ], + "created_at": "2026-07-10T10:12:41.306869", + "updated_at": "2026-07-10T10:12:41.306869", + "url": "/v1/software/idlcoyote" +} diff --git a/site/public/v1/software/ieatbrainz/index.json b/site/public/v1/software/ieatbrainz/index.json new file mode 100644 index 000000000000..028dba6c8bf7 --- /dev/null +++ b/site/public/v1/software/ieatbrainz/index.json @@ -0,0 +1,19 @@ +{ + "id": 4547, + "slug": "ieatbrainz", + "name": "IEatBrainz", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3009208" + ], + "created_at": "2026-07-10T10:12:41.306869", + "updated_at": "2026-07-10T10:12:41.306869", + "url": "/v1/software/ieatbrainz" +} diff --git a/site/public/v1/software/ifmetric/index.json b/site/public/v1/software/ifmetric/index.json new file mode 100644 index 000000000000..50a1d70933a7 --- /dev/null +++ b/site/public/v1/software/ifmetric/index.json @@ -0,0 +1,19 @@ +{ + "id": 4548, + "slug": "ifmetric", + "name": "ifmetric", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62864205" + ], + "created_at": "2026-07-10T10:12:41.307853", + "updated_at": "2026-07-10T10:12:41.307853", + "url": "/v1/software/ifmetric" +} diff --git a/site/public/v1/software/ifplugd/index.json b/site/public/v1/software/ifplugd/index.json new file mode 100644 index 000000000000..aedf61e9d30e --- /dev/null +++ b/site/public/v1/software/ifplugd/index.json @@ -0,0 +1,19 @@ +{ + "id": 4549, + "slug": "ifplugd", + "name": "ifplugd", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62864195" + ], + "created_at": "2026-07-10T10:12:41.307853", + "updated_at": "2026-07-10T10:12:41.307853", + "url": "/v1/software/ifplugd" +} diff --git a/site/public/v1/software/ifscl/index.json b/site/public/v1/software/ifscl/index.json new file mode 100644 index 000000000000..1398e0b635fc --- /dev/null +++ b/site/public/v1/software/ifscl/index.json @@ -0,0 +1,19 @@ +{ + "id": 4550, + "slug": "ifscl", + "name": "IFSCL", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2879611" + ], + "created_at": "2026-07-10T10:12:41.307853", + "updated_at": "2026-07-10T10:12:41.307853", + "url": "/v1/software/ifscl" +} diff --git a/site/public/v1/software/ifstat/index.json b/site/public/v1/software/ifstat/index.json new file mode 100644 index 000000000000..df0cc02d99b4 --- /dev/null +++ b/site/public/v1/software/ifstat/index.json @@ -0,0 +1,19 @@ +{ + "id": 4551, + "slug": "ifstat", + "name": "ifstat", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62864190" + ], + "created_at": "2026-07-10T10:12:41.308903", + "updated_at": "2026-07-10T10:12:41.308903", + "url": "/v1/software/ifstat" +} diff --git a/site/public/v1/software/ifstatus/index.json b/site/public/v1/software/ifstatus/index.json new file mode 100644 index 000000000000..9c8a9a474fd6 --- /dev/null +++ b/site/public/v1/software/ifstatus/index.json @@ -0,0 +1,19 @@ +{ + "id": 4552, + "slug": "ifstatus", + "name": "ifstatus", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065651" + ], + "created_at": "2026-07-10T10:12:41.311182", + "updated_at": "2026-07-10T10:12:41.311182", + "url": "/v1/software/ifstatus" +} diff --git a/site/public/v1/software/igl/index.json b/site/public/v1/software/igl/index.json new file mode 100644 index 000000000000..c094f392b07d --- /dev/null +++ b/site/public/v1/software/igl/index.json @@ -0,0 +1,21 @@ +{ + "id": 4553, + "slug": "igl", + "name": "IGL", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120446096" + ], + "created_at": "2026-07-10T10:12:41.312194", + "updated_at": "2026-07-10T10:12:41.312194", + "url": "/v1/software/igl" +} diff --git a/site/public/v1/software/ignite/index.json b/site/public/v1/software/ignite/index.json new file mode 100644 index 000000000000..5c84393de371 --- /dev/null +++ b/site/public/v1/software/ignite/index.json @@ -0,0 +1,21 @@ +{ + "id": 4554, + "slug": "ignite", + "name": "Ignite", + "release_date": null, + "developers": [ + "Electronic Arts" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16996604" + ], + "created_at": "2026-07-10T10:12:41.312194", + "updated_at": "2026-07-10T10:12:41.312194", + "url": "/v1/software/ignite" +} diff --git a/site/public/v1/software/igo/index.json b/site/public/v1/software/igo/index.json new file mode 100644 index 000000000000..c098a71fe385 --- /dev/null +++ b/site/public/v1/software/igo/index.json @@ -0,0 +1,19 @@ +{ + "id": 4555, + "slug": "igo", + "name": "iGO", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2064656" + ], + "created_at": "2026-07-10T10:12:41.313193", + "updated_at": "2026-07-10T10:12:41.313193", + "url": "/v1/software/igo" +} diff --git a/site/public/v1/software/igoogle/index.json b/site/public/v1/software/igoogle/index.json new file mode 100644 index 000000000000..3c85043eac4e --- /dev/null +++ b/site/public/v1/software/igoogle/index.json @@ -0,0 +1,21 @@ +{ + "id": 4556, + "slug": "igoogle", + "name": "iGoogle", + "release_date": null, + "developers": [ + "Google" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q305910" + ], + "created_at": "2026-07-10T10:12:41.314193", + "updated_at": "2026-07-10T10:12:41.314193", + "url": "/v1/software/igoogle" +} diff --git a/site/public/v1/software/igor/index.json b/site/public/v1/software/igor/index.json new file mode 100644 index 000000000000..802e6f40adfb --- /dev/null +++ b/site/public/v1/software/igor/index.json @@ -0,0 +1,19 @@ +{ + "id": 4557, + "slug": "igor", + "name": "IGOR", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138026217" + ], + "created_at": "2026-07-10T10:12:41.315194", + "updated_at": "2026-07-10T10:12:41.315194", + "url": "/v1/software/igor" +} diff --git a/site/public/v1/software/igorilla/index.json b/site/public/v1/software/igorilla/index.json new file mode 100644 index 000000000000..dbde0227da1b --- /dev/null +++ b/site/public/v1/software/igorilla/index.json @@ -0,0 +1,19 @@ +{ + "id": 4558, + "slug": "igorilla", + "name": "iGorilla", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5971089" + ], + "created_at": "2026-07-10T10:12:41.315194", + "updated_at": "2026-07-10T10:12:41.315194", + "url": "/v1/software/igorilla" +} diff --git a/site/public/v1/software/igrafx-flowcharter/index.json b/site/public/v1/software/igrafx-flowcharter/index.json new file mode 100644 index 000000000000..b31d0374a511 --- /dev/null +++ b/site/public/v1/software/igrafx-flowcharter/index.json @@ -0,0 +1,22 @@ +{ + "id": 4559, + "slug": "igrafx-flowcharter", + "name": "iGrafx FlowCharter", + "release_date": null, + "developers": [ + "Corel", + "Micrografx" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4650153" + ], + "created_at": "2026-07-10T10:12:41.315194", + "updated_at": "2026-07-10T10:12:41.315194", + "url": "/v1/software/igrafx-flowcharter" +} diff --git a/site/public/v1/software/igraph-m/index.json b/site/public/v1/software/igraph-m/index.json new file mode 100644 index 000000000000..4b2bcbc4ed8a --- /dev/null +++ b/site/public/v1/software/igraph-m/index.json @@ -0,0 +1,26 @@ +{ + "id": 4560, + "slug": "igraph-m", + "name": "iGraph/M", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [ + "Wolfram Language" + ], + "licenses": [ + "GNU General Public License, version 3.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116480091" + ], + "created_at": "2026-07-10T10:12:41.315194", + "updated_at": "2026-07-10T10:12:41.315194", + "url": "/v1/software/igraph-m" +} diff --git a/site/public/v1/software/igraph/index.json b/site/public/v1/software/igraph/index.json new file mode 100644 index 000000000000..4dca95f955da --- /dev/null +++ b/site/public/v1/software/igraph/index.json @@ -0,0 +1,23 @@ +{ + "id": 4561, + "slug": "igraph", + "name": "igraph", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "cross-platform" + ], + "programming_languages": [], + "licenses": [ + "GNU General Public License, version 2.0 or later" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25052508" + ], + "created_at": "2026-07-10T10:12:41.315194", + "updated_at": "2026-07-10T10:12:41.315194", + "url": "/v1/software/igraph" +} diff --git a/site/public/v1/software/igsuite/index.json b/site/public/v1/software/igsuite/index.json new file mode 100644 index 000000000000..ec37f40852ef --- /dev/null +++ b/site/public/v1/software/igsuite/index.json @@ -0,0 +1,19 @@ +{ + "id": 4562, + "slug": "igsuite", + "name": "IGSuite", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3788532" + ], + "created_at": "2026-07-10T10:12:41.316331", + "updated_at": "2026-07-10T10:12:41.316331", + "url": "/v1/software/igsuite" +} diff --git a/site/public/v1/software/igt-gpu-tools/index.json b/site/public/v1/software/igt-gpu-tools/index.json new file mode 100644 index 000000000000..871f0e53332d --- /dev/null +++ b/site/public/v1/software/igt-gpu-tools/index.json @@ -0,0 +1,23 @@ +{ + "id": 4563, + "slug": "igt-gpu-tools", + "name": "IGT GPU Tools", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "BSD" + ], + "programming_languages": [], + "licenses": [ + "Expat license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q90847082" + ], + "created_at": "2026-07-10T10:12:41.316331", + "updated_at": "2026-07-10T10:12:41.316331", + "url": "/v1/software/igt-gpu-tools" +} diff --git a/site/public/v1/software/iiif-universal-viewer/index.json b/site/public/v1/software/iiif-universal-viewer/index.json new file mode 100644 index 000000000000..5e46ca0aa300 --- /dev/null +++ b/site/public/v1/software/iiif-universal-viewer/index.json @@ -0,0 +1,19 @@ +{ + "id": 4564, + "slug": "iiif-universal-viewer", + "name": "IIIF Universal Viewer", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087818" + ], + "created_at": "2026-07-10T10:12:41.317250", + "updated_at": "2026-07-10T10:12:41.317250", + "url": "/v1/software/iiif-universal-viewer" +} diff --git a/site/public/v1/software/iipimage/index.json b/site/public/v1/software/iipimage/index.json new file mode 100644 index 000000000000..ec63b1c1e38a --- /dev/null +++ b/site/public/v1/software/iipimage/index.json @@ -0,0 +1,23 @@ +{ + "id": 4565, + "slug": "iipimage", + "name": "IIPImage", + "release_date": null, + "developers": [ + "Ruven Pillay" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "GNU General Public License, version 3.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107611569" + ], + "created_at": "2026-07-10T10:12:41.317250", + "updated_at": "2026-07-10T10:12:41.317250", + "url": "/v1/software/iipimage" +} diff --git a/site/public/v1/software/iitagger/index.json b/site/public/v1/software/iitagger/index.json new file mode 100644 index 000000000000..5390ca4982ff --- /dev/null +++ b/site/public/v1/software/iitagger/index.json @@ -0,0 +1,19 @@ +{ + "id": 4566, + "slug": "iitagger", + "name": "IITagger", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085021" + ], + "created_at": "2026-07-10T10:12:41.317250", + "updated_at": "2026-07-10T10:12:41.317250", + "url": "/v1/software/iitagger" +} diff --git a/site/public/v1/software/ike-scan/index.json b/site/public/v1/software/ike-scan/index.json new file mode 100644 index 000000000000..b73b355b371c --- /dev/null +++ b/site/public/v1/software/ike-scan/index.json @@ -0,0 +1,19 @@ +{ + "id": 4567, + "slug": "ike-scan", + "name": "ike-scan", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62864161" + ], + "created_at": "2026-07-10T10:12:41.317250", + "updated_at": "2026-07-10T10:12:41.317250", + "url": "/v1/software/ike-scan" +} diff --git a/site/public/v1/software/ikeymonitor/index.json b/site/public/v1/software/ikeymonitor/index.json new file mode 100644 index 000000000000..ef147cb32915 --- /dev/null +++ b/site/public/v1/software/ikeymonitor/index.json @@ -0,0 +1,21 @@ +{ + "id": 4568, + "slug": "ikeymonitor", + "name": "IKeyMonitor", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "iOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q48988965" + ], + "created_at": "2026-07-10T10:12:41.318266", + "updated_at": "2026-07-10T10:12:41.318266", + "url": "/v1/software/ikeymonitor" +} diff --git a/site/public/v1/software/il2cpp/index.json b/site/public/v1/software/il2cpp/index.json new file mode 100644 index 000000000000..d852e4da0cd2 --- /dev/null +++ b/site/public/v1/software/il2cpp/index.json @@ -0,0 +1,24 @@ +{ + "id": 4569, + "slug": "il2cpp", + "name": "IL2CPP", + "release_date": null, + "developers": [ + "Unity Technologies" + ], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q99515369" + ], + "created_at": "2026-07-10T10:12:41.318266", + "updated_at": "2026-07-10T10:12:41.318266", + "url": "/v1/software/il2cpp" +} diff --git a/site/public/v1/software/ilane/index.json b/site/public/v1/software/ilane/index.json new file mode 100644 index 000000000000..e2d52d5744b6 --- /dev/null +++ b/site/public/v1/software/ilane/index.json @@ -0,0 +1,19 @@ +{ + "id": 4570, + "slug": "ilane", + "name": "iLane", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5971897" + ], + "created_at": "2026-07-10T10:12:41.319250", + "updated_at": "2026-07-10T10:12:41.319250", + "url": "/v1/software/ilane" +} diff --git a/site/public/v1/software/illixis/index.json b/site/public/v1/software/illixis/index.json new file mode 100644 index 000000000000..fad34a878bb0 --- /dev/null +++ b/site/public/v1/software/illixis/index.json @@ -0,0 +1,19 @@ +{ + "id": 4571, + "slug": "illixis", + "name": "ILLIXIS", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139960266" + ], + "created_at": "2026-07-10T10:12:41.319250", + "updated_at": "2026-07-10T10:12:41.319250", + "url": "/v1/software/illixis" +} diff --git a/site/public/v1/software/illuststudio/index.json b/site/public/v1/software/illuststudio/index.json new file mode 100644 index 000000000000..c8410c2a265b --- /dev/null +++ b/site/public/v1/software/illuststudio/index.json @@ -0,0 +1,19 @@ +{ + "id": 4572, + "slug": "illuststudio", + "name": "IllustStudio", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q9008003" + ], + "created_at": "2026-07-10T10:12:41.319250", + "updated_at": "2026-07-10T10:12:41.319250", + "url": "/v1/software/illuststudio" +} diff --git a/site/public/v1/software/illyria/index.json b/site/public/v1/software/illyria/index.json new file mode 100644 index 000000000000..f2851886c622 --- /dev/null +++ b/site/public/v1/software/illyria/index.json @@ -0,0 +1,19 @@ +{ + "id": 4573, + "slug": "illyria", + "name": "Illyria", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16253854" + ], + "created_at": "2026-07-10T10:12:41.319250", + "updated_at": "2026-07-10T10:12:41.319250", + "url": "/v1/software/illyria" +} diff --git a/site/public/v1/software/ilovepdf/index.json b/site/public/v1/software/ilovepdf/index.json new file mode 100644 index 000000000000..7f05d296900c --- /dev/null +++ b/site/public/v1/software/ilovepdf/index.json @@ -0,0 +1,19 @@ +{ + "id": 4574, + "slug": "ilovepdf", + "name": "ILovePDF", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130772808" + ], + "created_at": "2026-07-10T10:12:41.320263", + "updated_at": "2026-07-10T10:12:41.320263", + "url": "/v1/software/ilovepdf" +} diff --git a/site/public/v1/software/ilunascape/index.json b/site/public/v1/software/ilunascape/index.json new file mode 100644 index 000000000000..6ed111b1ee65 --- /dev/null +++ b/site/public/v1/software/ilunascape/index.json @@ -0,0 +1,19 @@ +{ + "id": 4575, + "slug": "ilunascape", + "name": "iLunascape", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11224029" + ], + "created_at": "2026-07-10T10:12:41.320263", + "updated_at": "2026-07-10T10:12:41.320263", + "url": "/v1/software/ilunascape" +} diff --git a/site/public/v1/software/ima-evm-utils/index.json b/site/public/v1/software/ima-evm-utils/index.json new file mode 100644 index 000000000000..c5a97f315cdd --- /dev/null +++ b/site/public/v1/software/ima-evm-utils/index.json @@ -0,0 +1,19 @@ +{ + "id": 4576, + "slug": "ima-evm-utils", + "name": "ima-evm-utils", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974943" + ], + "created_at": "2026-07-10T10:12:41.321301", + "updated_at": "2026-07-10T10:12:41.321301", + "url": "/v1/software/ima-evm-utils" +} diff --git a/site/public/v1/software/image-alchemy/index.json b/site/public/v1/software/image-alchemy/index.json new file mode 100644 index 000000000000..bb9955e228f3 --- /dev/null +++ b/site/public/v1/software/image-alchemy/index.json @@ -0,0 +1,19 @@ +{ + "id": 4577, + "slug": "image-alchemy", + "name": "Image Alchemy", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28205547" + ], + "created_at": "2026-07-10T10:12:41.321301", + "updated_at": "2026-07-10T10:12:41.321301", + "url": "/v1/software/image-alchemy" +} diff --git a/site/public/v1/software/image-analyzer/index.json b/site/public/v1/software/image-analyzer/index.json new file mode 100644 index 000000000000..30bbb21b4e24 --- /dev/null +++ b/site/public/v1/software/image-analyzer/index.json @@ -0,0 +1,21 @@ +{ + "id": 4578, + "slug": "image-analyzer", + "name": "Image Analyzer", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2461480" + ], + "created_at": "2026-07-10T10:12:41.321301", + "updated_at": "2026-07-10T10:12:41.321301", + "url": "/v1/software/image-analyzer" +} diff --git a/site/public/v1/software/image-capture/index.json b/site/public/v1/software/image-capture/index.json new file mode 100644 index 000000000000..15fdbef1e1a3 --- /dev/null +++ b/site/public/v1/software/image-capture/index.json @@ -0,0 +1,21 @@ +{ + "id": 4579, + "slug": "image-capture", + "name": "Image Capture", + "release_date": "2005-12-28", + "developers": [ + "Apple Inc." + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1071250" + ], + "created_at": "2026-07-10T10:12:41.322265", + "updated_at": "2026-07-10T10:12:41.322265", + "url": "/v1/software/image-capture" +} diff --git a/site/public/v1/software/image-lab/index.json b/site/public/v1/software/image-lab/index.json new file mode 100644 index 000000000000..e0e57f143c2a --- /dev/null +++ b/site/public/v1/software/image-lab/index.json @@ -0,0 +1,19 @@ +{ + "id": 4580, + "slug": "image-lab", + "name": "Image Lab", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121010326" + ], + "created_at": "2026-07-10T10:12:41.322265", + "updated_at": "2026-07-10T10:12:41.322265", + "url": "/v1/software/image-lab" +} diff --git a/site/public/v1/software/image-map-tool/index.json b/site/public/v1/software/image-map-tool/index.json new file mode 100644 index 000000000000..57b89f9b8f47 --- /dev/null +++ b/site/public/v1/software/image-map-tool/index.json @@ -0,0 +1,19 @@ +{ + "id": 4581, + "slug": "image-map-tool", + "name": "Image Map Tool", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085024" + ], + "created_at": "2026-07-10T10:12:41.322265", + "updated_at": "2026-07-10T10:12:41.322265", + "url": "/v1/software/image-map-tool" +} diff --git a/site/public/v1/software/image-studio-lite/index.json b/site/public/v1/software/image-studio-lite/index.json new file mode 100644 index 000000000000..2422e9d311a9 --- /dev/null +++ b/site/public/v1/software/image-studio-lite/index.json @@ -0,0 +1,25 @@ +{ + "id": 4582, + "slug": "image-studio-lite", + "name": "Image Studio Lite", + "release_date": null, + "developers": [ + "LI-COR Biosciences" + ], + "publishers": [], + "operating_systems": [ + "macOS Sierra" + ], + "programming_languages": [ + "Java" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22097426" + ], + "created_at": "2026-07-10T10:12:41.323276", + "updated_at": "2026-07-10T10:12:41.323276", + "url": "/v1/software/image-studio-lite" +} diff --git a/site/public/v1/software/image-sxm/index.json b/site/public/v1/software/image-sxm/index.json new file mode 100644 index 000000000000..c61fde6f1da9 --- /dev/null +++ b/site/public/v1/software/image-sxm/index.json @@ -0,0 +1,19 @@ +{ + "id": 4583, + "slug": "image-sxm", + "name": "Image SXM", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1420482" + ], + "created_at": "2026-07-10T10:12:41.323276", + "updated_at": "2026-07-10T10:12:41.323276", + "url": "/v1/software/image-sxm" +} diff --git a/site/public/v1/software/image-zoom/index.json b/site/public/v1/software/image-zoom/index.json new file mode 100644 index 000000000000..f25bd6e0830d --- /dev/null +++ b/site/public/v1/software/image-zoom/index.json @@ -0,0 +1,19 @@ +{ + "id": 4584, + "slug": "image-zoom", + "name": "Image Zoom", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6002183" + ], + "created_at": "2026-07-10T10:12:41.323276", + "updated_at": "2026-07-10T10:12:41.323276", + "url": "/v1/software/image-zoom" +} diff --git a/site/public/v1/software/imagej/index.json b/site/public/v1/software/imagej/index.json new file mode 100644 index 000000000000..086ebc152dd3 --- /dev/null +++ b/site/public/v1/software/imagej/index.json @@ -0,0 +1,19 @@ +{ + "id": 4585, + "slug": "imagej", + "name": "ImageJ", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085022" + ], + "created_at": "2026-07-10T10:12:41.324260", + "updated_at": "2026-07-10T10:12:41.324260", + "url": "/v1/software/imagej" +} diff --git a/site/public/v1/software/imagemagik/index.json b/site/public/v1/software/imagemagik/index.json new file mode 100644 index 000000000000..732487367130 --- /dev/null +++ b/site/public/v1/software/imagemagik/index.json @@ -0,0 +1,19 @@ +{ + "id": 4586, + "slug": "imagemagik", + "name": "ImageMagik", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085023" + ], + "created_at": "2026-07-10T10:12:41.324260", + "updated_at": "2026-07-10T10:12:41.324260", + "url": "/v1/software/imagemagik" +} diff --git a/site/public/v1/software/imagenets/index.json b/site/public/v1/software/imagenets/index.json new file mode 100644 index 000000000000..9e79c9e0945c --- /dev/null +++ b/site/public/v1/software/imagenets/index.json @@ -0,0 +1,19 @@ +{ + "id": 4587, + "slug": "imagenets", + "name": "ImageNets", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6002088" + ], + "created_at": "2026-07-10T10:12:41.324260", + "updated_at": "2026-07-10T10:12:41.325194", + "url": "/v1/software/imagenets" +} diff --git a/site/public/v1/software/imagequant/index.json b/site/public/v1/software/imagequant/index.json new file mode 100644 index 000000000000..4e8a68b5b901 --- /dev/null +++ b/site/public/v1/software/imagequant/index.json @@ -0,0 +1,19 @@ +{ + "id": 4588, + "slug": "imagequant", + "name": "ImageQuant", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112270642" + ], + "created_at": "2026-07-10T10:12:41.325194", + "updated_at": "2026-07-10T10:12:41.325194", + "url": "/v1/software/imagequant" +} diff --git a/site/public/v1/software/imagestyler/index.json b/site/public/v1/software/imagestyler/index.json new file mode 100644 index 000000000000..27f91b5d7e9e --- /dev/null +++ b/site/public/v1/software/imagestyler/index.json @@ -0,0 +1,23 @@ +{ + "id": 4589, + "slug": "imagestyler", + "name": "ImageStyler", + "release_date": null, + "developers": [ + "Adobe" + ], + "publishers": [], + "operating_systems": [ + "Windows 95" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q66004659" + ], + "created_at": "2026-07-10T10:12:41.325194", + "updated_at": "2026-07-10T10:12:41.325194", + "url": "/v1/software/imagestyler" +} diff --git a/site/public/v1/software/imagine-photogrammetry/index.json b/site/public/v1/software/imagine-photogrammetry/index.json new file mode 100644 index 000000000000..7a84ffef9ee3 --- /dev/null +++ b/site/public/v1/software/imagine-photogrammetry/index.json @@ -0,0 +1,19 @@ +{ + "id": 4590, + "slug": "imagine-photogrammetry", + "name": "IMAGINE Photogrammetry", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6519126" + ], + "created_at": "2026-07-10T10:12:41.325194", + "updated_at": "2026-07-10T10:12:41.325194", + "url": "/v1/software/imagine-photogrammetry" +} diff --git a/site/public/v1/software/imagine/index.json b/site/public/v1/software/imagine/index.json new file mode 100644 index 000000000000..4f71f6e7c5c4 --- /dev/null +++ b/site/public/v1/software/imagine/index.json @@ -0,0 +1,19 @@ +{ + "id": 4591, + "slug": "imagine", + "name": "Imagine", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11711786" + ], + "created_at": "2026-07-10T10:12:41.326194", + "updated_at": "2026-07-10T10:12:41.326194", + "url": "/v1/software/imagine" +} diff --git a/site/public/v1/software/imapfilter/index.json b/site/public/v1/software/imapfilter/index.json new file mode 100644 index 000000000000..da736803b268 --- /dev/null +++ b/site/public/v1/software/imapfilter/index.json @@ -0,0 +1,19 @@ +{ + "id": 4592, + "slug": "imapfilter", + "name": "IMAPFilter", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62864149" + ], + "created_at": "2026-07-10T10:12:41.326194", + "updated_at": "2026-07-10T10:12:41.326194", + "url": "/v1/software/imapfilter" +} diff --git a/site/public/v1/software/imazing/index.json b/site/public/v1/software/imazing/index.json new file mode 100644 index 000000000000..e0beb0e559b6 --- /dev/null +++ b/site/public/v1/software/imazing/index.json @@ -0,0 +1,19 @@ +{ + "id": 4593, + "slug": "imazing", + "name": "iMazing", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q43401695" + ], + "created_at": "2026-07-10T10:12:41.326194", + "updated_at": "2026-07-10T10:12:41.326194", + "url": "/v1/software/imazing" +} diff --git a/site/public/v1/software/imc-famos/index.json b/site/public/v1/software/imc-famos/index.json new file mode 100644 index 000000000000..32bf36d4eaf5 --- /dev/null +++ b/site/public/v1/software/imc-famos/index.json @@ -0,0 +1,19 @@ +{ + "id": 4594, + "slug": "imc-famos", + "name": "imc FAMOS", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1659792" + ], + "created_at": "2026-07-10T10:12:41.327191", + "updated_at": "2026-07-10T10:12:41.327191", + "url": "/v1/software/imc-famos" +} diff --git a/site/public/v1/software/imediff2/index.json b/site/public/v1/software/imediff2/index.json new file mode 100644 index 000000000000..6710557d8b46 --- /dev/null +++ b/site/public/v1/software/imediff2/index.json @@ -0,0 +1,19 @@ +{ + "id": 4595, + "slug": "imediff2", + "name": "imediff2", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62864142" + ], + "created_at": "2026-07-10T10:12:41.327191", + "updated_at": "2026-07-10T10:12:41.327191", + "url": "/v1/software/imediff2" +} diff --git a/site/public/v1/software/imesh/index.json b/site/public/v1/software/imesh/index.json new file mode 100644 index 000000000000..54bf9e2ddf13 --- /dev/null +++ b/site/public/v1/software/imesh/index.json @@ -0,0 +1,19 @@ +{ + "id": 4596, + "slug": "imesh", + "name": "iMesh", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1050551" + ], + "created_at": "2026-07-10T10:12:41.327191", + "updated_at": "2026-07-10T10:12:41.327191", + "url": "/v1/software/imesh" +} diff --git a/site/public/v1/software/img2pdf/index.json b/site/public/v1/software/img2pdf/index.json new file mode 100644 index 000000000000..ec6339328887 --- /dev/null +++ b/site/public/v1/software/img2pdf/index.json @@ -0,0 +1,21 @@ +{ + "id": 4597, + "slug": "img2pdf", + "name": "img2pdf", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "GNU Lesser General Public License, version 3.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62864137" + ], + "created_at": "2026-07-10T10:12:41.328191", + "updated_at": "2026-07-10T10:12:41.328191", + "url": "/v1/software/img2pdf" +} diff --git a/site/public/v1/software/imgdeal/index.json b/site/public/v1/software/imgdeal/index.json new file mode 100644 index 000000000000..95347c49e170 --- /dev/null +++ b/site/public/v1/software/imgdeal/index.json @@ -0,0 +1,19 @@ +{ + "id": 4598, + "slug": "imgdeal", + "name": "Imgdeal", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140051800" + ], + "created_at": "2026-07-10T10:12:41.328191", + "updated_at": "2026-07-10T10:12:41.328191", + "url": "/v1/software/imgdeal" +} diff --git a/site/public/v1/software/imglib2/index.json b/site/public/v1/software/imglib2/index.json new file mode 100644 index 000000000000..449e15085cd4 --- /dev/null +++ b/site/public/v1/software/imglib2/index.json @@ -0,0 +1,19 @@ +{ + "id": 4599, + "slug": "imglib2", + "name": "ImgLib2", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113050056" + ], + "created_at": "2026-07-10T10:12:41.329193", + "updated_at": "2026-07-10T10:12:41.329193", + "url": "/v1/software/imglib2" +} diff --git a/site/public/v1/software/imgs-ai/index.json b/site/public/v1/software/imgs-ai/index.json new file mode 100644 index 000000000000..21f694adaeb5 --- /dev/null +++ b/site/public/v1/software/imgs-ai/index.json @@ -0,0 +1,22 @@ +{ + "id": 4600, + "slug": "imgs-ai", + "name": "imgs.ai", + "release_date": null, + "developers": [ + "Fabian Offert", + "Peter Bell" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107176493" + ], + "created_at": "2026-07-10T10:12:41.329193", + "updated_at": "2026-07-10T10:12:41.329193", + "url": "/v1/software/imgs-ai" +} diff --git a/site/public/v1/software/imhex/index.json b/site/public/v1/software/imhex/index.json new file mode 100644 index 000000000000..413fad438906 --- /dev/null +++ b/site/public/v1/software/imhex/index.json @@ -0,0 +1,21 @@ +{ + "id": 4601, + "slug": "imhex", + "name": "ImHex", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "GNU General Public License, version 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116764539" + ], + "created_at": "2026-07-10T10:12:41.329193", + "updated_at": "2026-07-10T10:12:41.329193", + "url": "/v1/software/imhex" +} diff --git a/site/public/v1/software/imindq/index.json b/site/public/v1/software/imindq/index.json new file mode 100644 index 000000000000..9227b35d859d --- /dev/null +++ b/site/public/v1/software/imindq/index.json @@ -0,0 +1,23 @@ +{ + "id": 4602, + "slug": "imindq", + "name": "iMindQ", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "iOS", + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q65033609" + ], + "created_at": "2026-07-10T10:12:41.329193", + "updated_at": "2026-07-10T10:12:41.329193", + "url": "/v1/software/imindq" +} diff --git a/site/public/v1/software/immersivision/index.json b/site/public/v1/software/immersivision/index.json new file mode 100644 index 000000000000..aaa8165a8ae2 --- /dev/null +++ b/site/public/v1/software/immersivision/index.json @@ -0,0 +1,19 @@ +{ + "id": 4603, + "slug": "immersivision", + "name": "ImmersiVision", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6004847" + ], + "created_at": "2026-07-10T10:12:41.330193", + "updated_at": "2026-07-10T10:12:41.330193", + "url": "/v1/software/immersivision" +} diff --git a/site/public/v1/software/immigrationos/index.json b/site/public/v1/software/immigrationos/index.json new file mode 100644 index 000000000000..c38a79fd466d --- /dev/null +++ b/site/public/v1/software/immigrationos/index.json @@ -0,0 +1,23 @@ +{ + "id": 4604, + "slug": "immigrationos", + "name": "ImmigrationOS", + "release_date": null, + "developers": [ + "Palantir Technologies" + ], + "publishers": [ + "Palantir Technologies" + ], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137908492" + ], + "created_at": "2026-07-10T10:12:41.330193", + "updated_at": "2026-07-10T10:12:41.330193", + "url": "/v1/software/immigrationos" +} diff --git a/site/public/v1/software/imo-im/index.json b/site/public/v1/software/imo-im/index.json new file mode 100644 index 000000000000..e5bf31e129b0 --- /dev/null +++ b/site/public/v1/software/imo-im/index.json @@ -0,0 +1,26 @@ +{ + "id": 4605, + "slug": "imo-im", + "name": "Imo.im", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "BlackBerry OS", + "Windows Phone", + "iOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4041310" + ], + "created_at": "2026-07-10T10:12:41.330193", + "updated_at": "2026-07-10T10:12:41.330193", + "url": "/v1/software/imo-im" +} diff --git a/site/public/v1/software/imonggo/index.json b/site/public/v1/software/imonggo/index.json new file mode 100644 index 000000000000..03ee9e442876 --- /dev/null +++ b/site/public/v1/software/imonggo/index.json @@ -0,0 +1,22 @@ +{ + "id": 4606, + "slug": "imonggo", + "name": "Imonggo", + "release_date": "2009-01-01", + "developers": [], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6005718" + ], + "created_at": "2026-07-10T10:12:41.330193", + "updated_at": "2026-07-10T10:12:41.330193", + "url": "/v1/software/imonggo" +} diff --git a/site/public/v1/software/impact-q129257323/index.json b/site/public/v1/software/impact-q129257323/index.json new file mode 100644 index 000000000000..91bacce84d95 --- /dev/null +++ b/site/public/v1/software/impact-q129257323/index.json @@ -0,0 +1,21 @@ +{ + "id": 4607, + "slug": "impact-q129257323", + "name": "Impact", + "release_date": null, + "developers": [ + "Electronic Arts" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q129257323" + ], + "created_at": "2026-07-10T10:12:41.331281", + "updated_at": "2026-07-10T10:12:41.331281", + "url": "/v1/software/impact-q129257323" +} diff --git a/site/public/v1/software/impact/index.json b/site/public/v1/software/impact/index.json new file mode 100644 index 000000000000..591871f86b30 --- /dev/null +++ b/site/public/v1/software/impact/index.json @@ -0,0 +1,21 @@ +{ + "id": 4608, + "slug": "impact", + "name": "Impact", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17239037" + ], + "created_at": "2026-07-10T10:12:41.331281", + "updated_at": "2026-07-10T10:12:41.331281", + "url": "/v1/software/impact" +} diff --git a/site/public/v1/software/impactnet/index.json b/site/public/v1/software/impactnet/index.json new file mode 100644 index 000000000000..f0965f0be886 --- /dev/null +++ b/site/public/v1/software/impactnet/index.json @@ -0,0 +1,19 @@ +{ + "id": 4609, + "slug": "impactnet", + "name": "impactnet", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139386679" + ], + "created_at": "2026-07-10T10:12:41.331281", + "updated_at": "2026-07-10T10:12:41.331281", + "url": "/v1/software/impactnet" +} diff --git a/site/public/v1/software/imperial-hero/index.json b/site/public/v1/software/imperial-hero/index.json new file mode 100644 index 000000000000..14b4fce00933 --- /dev/null +++ b/site/public/v1/software/imperial-hero/index.json @@ -0,0 +1,21 @@ +{ + "id": 4610, + "slug": "imperial-hero", + "name": "Imperial Hero", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [ + "massively multiplayer online role-playing game" + ], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25929156" + ], + "created_at": "2026-07-10T10:12:41.332291", + "updated_at": "2026-07-10T10:12:41.332291", + "url": "/v1/software/imperial-hero" +} diff --git a/site/public/v1/software/impos-2/index.json b/site/public/v1/software/impos-2/index.json new file mode 100644 index 000000000000..12fa6797eb51 --- /dev/null +++ b/site/public/v1/software/impos-2/index.json @@ -0,0 +1,19 @@ +{ + "id": 4611, + "slug": "impos-2", + "name": "Impos/2", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136689558" + ], + "created_at": "2026-07-10T10:12:41.332291", + "updated_at": "2026-07-10T10:12:41.332291", + "url": "/v1/software/impos-2" +} diff --git a/site/public/v1/software/impress-remote/index.json b/site/public/v1/software/impress-remote/index.json new file mode 100644 index 000000000000..fd7d0910451f --- /dev/null +++ b/site/public/v1/software/impress-remote/index.json @@ -0,0 +1,27 @@ +{ + "id": 4612, + "slug": "impress-remote", + "name": "Impress Remote", + "release_date": "2014-02-01", + "developers": [ + "The Document Foundation" + ], + "publishers": [], + "operating_systems": [ + "iOS" + ], + "programming_languages": [ + "Java" + ], + "licenses": [ + "Mozilla Public License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16927687" + ], + "created_at": "2026-07-10T10:12:41.332291", + "updated_at": "2026-07-10T10:12:41.332291", + "url": "/v1/software/impress-remote" +} diff --git a/site/public/v1/software/impression/index.json b/site/public/v1/software/impression/index.json new file mode 100644 index 000000000000..bb7704550397 --- /dev/null +++ b/site/public/v1/software/impression/index.json @@ -0,0 +1,25 @@ +{ + "id": 4613, + "slug": "impression", + "name": "Impression", + "release_date": null, + "developers": [ + "Xara" + ], + "publishers": [], + "operating_systems": [ + "RISC OS" + ], + "programming_languages": [ + "assembly language" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16994773" + ], + "created_at": "2026-07-10T10:12:41.332291", + "updated_at": "2026-07-10T10:12:41.332291", + "url": "/v1/software/impression" +} diff --git a/site/public/v1/software/imprint/index.json b/site/public/v1/software/imprint/index.json new file mode 100644 index 000000000000..aaaa284f6b47 --- /dev/null +++ b/site/public/v1/software/imprint/index.json @@ -0,0 +1,21 @@ +{ + "id": 4614, + "slug": "imprint", + "name": "IMPRINT", + "release_date": null, + "developers": [ + "Alion Science and Technology" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28457576" + ], + "created_at": "2026-07-10T10:12:41.333253", + "updated_at": "2026-07-10T10:12:41.333253", + "url": "/v1/software/imprint" +} diff --git a/site/public/v1/software/improvise/index.json b/site/public/v1/software/improvise/index.json new file mode 100644 index 000000000000..3b369af94ce6 --- /dev/null +++ b/site/public/v1/software/improvise/index.json @@ -0,0 +1,19 @@ +{ + "id": 4615, + "slug": "improvise", + "name": "Improvise", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085025" + ], + "created_at": "2026-07-10T10:12:41.333253", + "updated_at": "2026-07-10T10:12:41.333253", + "url": "/v1/software/improvise" +} diff --git a/site/public/v1/software/imputation-and-variance-estimation-software/index.json b/site/public/v1/software/imputation-and-variance-estimation-software/index.json new file mode 100644 index 000000000000..38bc48174355 --- /dev/null +++ b/site/public/v1/software/imputation-and-variance-estimation-software/index.json @@ -0,0 +1,19 @@ +{ + "id": 4616, + "slug": "imputation-and-variance-estimation-software", + "name": "Imputation and Variance Estimation Software", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60744645" + ], + "created_at": "2026-07-10T10:12:41.333253", + "updated_at": "2026-07-10T10:12:41.333253", + "url": "/v1/software/imputation-and-variance-estimation-software" +} diff --git a/site/public/v1/software/ims-open-corpus-workbench-cwb/index.json b/site/public/v1/software/ims-open-corpus-workbench-cwb/index.json new file mode 100644 index 000000000000..5299a13a6185 --- /dev/null +++ b/site/public/v1/software/ims-open-corpus-workbench-cwb/index.json @@ -0,0 +1,19 @@ +{ + "id": 4617, + "slug": "ims-open-corpus-workbench-cwb", + "name": "IMS Open Corpus Workbench (CWB)", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085026" + ], + "created_at": "2026-07-10T10:12:41.334277", + "updated_at": "2026-07-10T10:12:41.334277", + "url": "/v1/software/ims-open-corpus-workbench-cwb" +} diff --git a/site/public/v1/software/imvu/index.json b/site/public/v1/software/imvu/index.json new file mode 100644 index 000000000000..5866daebd378 --- /dev/null +++ b/site/public/v1/software/imvu/index.json @@ -0,0 +1,19 @@ +{ + "id": 4618, + "slug": "imvu", + "name": "IMVU", + "release_date": "2004-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2361202" + ], + "created_at": "2026-07-10T10:12:41.334277", + "updated_at": "2026-07-10T10:12:41.334277", + "url": "/v1/software/imvu" +} diff --git a/site/public/v1/software/imwheel/index.json b/site/public/v1/software/imwheel/index.json new file mode 100644 index 000000000000..7a074c36dfa2 --- /dev/null +++ b/site/public/v1/software/imwheel/index.json @@ -0,0 +1,19 @@ +{ + "id": 4619, + "slug": "imwheel", + "name": "IMWheel", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62864130" + ], + "created_at": "2026-07-10T10:12:41.334277", + "updated_at": "2026-07-10T10:12:41.334277", + "url": "/v1/software/imwheel" +} diff --git a/site/public/v1/software/in-step/index.json b/site/public/v1/software/in-step/index.json new file mode 100644 index 000000000000..4c8e2f3412e0 --- /dev/null +++ b/site/public/v1/software/in-step/index.json @@ -0,0 +1,19 @@ +{ + "id": 4620, + "slug": "in-step", + "name": "In-Step", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1600146" + ], + "created_at": "2026-07-10T10:12:41.335267", + "updated_at": "2026-07-10T10:12:41.335267", + "url": "/v1/software/in-step" +} diff --git a/site/public/v1/software/inca/index.json b/site/public/v1/software/inca/index.json new file mode 100644 index 000000000000..9d7c06bfa095 --- /dev/null +++ b/site/public/v1/software/inca/index.json @@ -0,0 +1,21 @@ +{ + "id": 4621, + "slug": "inca", + "name": "INCA", + "release_date": null, + "developers": [ + "ETAS Group" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1654158" + ], + "created_at": "2026-07-10T10:12:41.335267", + "updated_at": "2026-07-10T10:12:41.335267", + "url": "/v1/software/inca" +} diff --git a/site/public/v1/software/inca3d/index.json b/site/public/v1/software/inca3d/index.json new file mode 100644 index 000000000000..5380b88ed920 --- /dev/null +++ b/site/public/v1/software/inca3d/index.json @@ -0,0 +1,19 @@ +{ + "id": 4622, + "slug": "inca3d", + "name": "InCa3D", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3149590" + ], + "created_at": "2026-07-10T10:12:41.335267", + "updated_at": "2026-07-10T10:12:41.335267", + "url": "/v1/software/inca3d" +} diff --git a/site/public/v1/software/incd/index.json b/site/public/v1/software/incd/index.json new file mode 100644 index 000000000000..52aba580ed7d --- /dev/null +++ b/site/public/v1/software/incd/index.json @@ -0,0 +1,19 @@ +{ + "id": 4623, + "slug": "incd", + "name": "InCD", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3818879" + ], + "created_at": "2026-07-10T10:12:41.336263", + "updated_at": "2026-07-10T10:12:41.336263", + "url": "/v1/software/incd" +} diff --git a/site/public/v1/software/inception/index.json b/site/public/v1/software/inception/index.json new file mode 100644 index 000000000000..3851a3e31494 --- /dev/null +++ b/site/public/v1/software/inception/index.json @@ -0,0 +1,23 @@ +{ + "id": 4624, + "slug": "inception", + "name": "INCEpTION", + "release_date": null, + "developers": [ + "Iryna Gurevych" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Apache Software License 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105824503" + ], + "created_at": "2026-07-10T10:12:41.336263", + "updated_at": "2026-07-10T10:12:41.336263", + "url": "/v1/software/inception" +} diff --git a/site/public/v1/software/incogni/index.json b/site/public/v1/software/incogni/index.json new file mode 100644 index 000000000000..a55bd0cc6760 --- /dev/null +++ b/site/public/v1/software/incogni/index.json @@ -0,0 +1,19 @@ +{ + "id": 4625, + "slug": "incogni", + "name": "Incogni", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123751849" + ], + "created_at": "2026-07-10T10:12:41.336263", + "updated_at": "2026-07-10T10:12:41.336263", + "url": "/v1/software/incogni" +} diff --git a/site/public/v1/software/incomer-playtest/index.json b/site/public/v1/software/incomer-playtest/index.json new file mode 100644 index 000000000000..915624e769ea --- /dev/null +++ b/site/public/v1/software/incomer-playtest/index.json @@ -0,0 +1,19 @@ +{ + "id": 4626, + "slug": "incomer-playtest", + "name": "INCOMER Playtest", + "release_date": "2022-08-05", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134964927" + ], + "created_at": "2026-07-10T10:12:41.337257", + "updated_at": "2026-07-10T10:12:41.337257", + "url": "/v1/software/incomer-playtest" +} diff --git a/site/public/v1/software/index.json b/site/public/v1/software/index.json new file mode 100644 index 000000000000..443298b88295 --- /dev/null +++ b/site/public/v1/software/index.json @@ -0,0 +1,58060 @@ +{ + "count": 11611, + "results": [ + { + "slug": "u-common-c", + "name": "(u)Common C++", + "url": "/v1/software/u-common-c" + }, + { + "slug": "net-bio", + "name": ".NET Bio", + "url": "/v1/software/net-bio" + }, + { + "slug": "net-compact-framework-controls", + "name": ".NET Compact Framework controls", + "url": "/v1/software/net-compact-framework-controls" + }, + { + "slug": "net-reflector", + "name": ".NET Reflector", + "url": "/v1/software/net-reflector" + }, + { + "slug": "net-gadgeteer", + "name": ".Net Gadgeteer", + "url": "/v1/software/net-gadgeteer" + }, + { + "slug": "1-second-everyday", + "name": "1 Second Everyday", + "url": "/v1/software/1-second-everyday" + }, + { + "slug": "10", + "name": "10", + "url": "/v1/software/10" + }, + { + "slug": "1000minds", + "name": "1000minds", + "url": "/v1/software/1000minds" + }, + { + "slug": "1099-nec-form-generator", + "name": "1099-NEC form generator", + "url": "/v1/software/1099-nec-form-generator" + }, + { + "slug": "140kit", + "name": "140kit", + "url": "/v1/software/140kit" + }, + { + "slug": "17live", + "name": "17LIVE", + "url": "/v1/software/17live" + }, + { + "slug": "1c-accounting", + "name": "1C:Accounting", + "url": "/v1/software/1c-accounting" + }, + { + "slug": "1c-enterprise", + "name": "1C:Enterprise", + "url": "/v1/software/1c-enterprise" + }, + { + "slug": "1daylater", + "name": "1DayLater", + "url": "/v1/software/1daylater" + }, + { + "slug": "1legcall", + "name": "1legcall", + "url": "/v1/software/1legcall" + }, + { + "slug": "1st-word-1st-word-plus", + "name": "1st Word/1st Word Plus", + "url": "/v1/software/1st-word-1st-word-plus" + }, + { + "slug": "1tik", + "name": "1tik", + "url": "/v1/software/1tik" + }, + { + "slug": "20-sim", + "name": "20-sim", + "url": "/v1/software/20-sim" + }, + { + "slug": "20-20", + "name": "20/20", + "url": "/v1/software/20-20" + }, + { + "slug": "2000-fonts-by-fantazia", + "name": "2000 Fonts by Fantazia", + "url": "/v1/software/2000-fonts-by-fantazia" + }, + { + "slug": "2029-online", + "name": "2029 Online", + "url": "/v1/software/2029-online" + }, + { + "slug": "20th-century-video-almanac", + "name": "20th Century Video Almanac", + "url": "/v1/software/20th-century-video-almanac" + }, + { + "slug": "24six", + "name": "24Six", + "url": "/v1/software/24six" + }, + { + "slug": "2geom", + "name": "2Geom", + "url": "/v1/software/2geom" + }, + { + "slug": "350pages", + "name": "350pages", + "url": "/v1/software/350pages" + }, + { + "slug": "360-clean-droid", + "name": "360 Clean Droid", + "url": "/v1/software/360-clean-droid" + }, + { + "slug": "360-extreme-browser", + "name": "360 Extreme Browser", + "url": "/v1/software/360-extreme-browser" + }, + { + "slug": "360-safeguard", + "name": "360 Safeguard", + "url": "/v1/software/360-safeguard" + }, + { + "slug": "360-yunpan", + "name": "360 Yunpan", + "url": "/v1/software/360-yunpan" + }, + { + "slug": "360softmanager", + "name": "360softmanager", + "url": "/v1/software/360softmanager" + }, + { + "slug": "3615-telecharge", + "name": "3615 Telecharge", + "url": "/v1/software/3615-telecharge" + }, + { + "slug": "3d-artist", + "name": "3D Artist", + "url": "/v1/software/3d-artist" + }, + { + "slug": "3d-builder-q111936153", + "name": "3D Builder", + "url": "/v1/software/3d-builder-q111936153" + }, + { + "slug": "3d-builder", + "name": "3D Builder", + "url": "/v1/software/3d-builder" + }, + { + "slug": "3d-cube-hopper", + "name": "3D Cube Hopper", + "url": "/v1/software/3d-cube-hopper" + }, + { + "slug": "3d-home-architect", + "name": "3D Home Architect", + "url": "/v1/software/3d-home-architect" + }, + { + "slug": "3d-kitchen", + "name": "3D Kitchen", + "url": "/v1/software/3d-kitchen" + }, + { + "slug": "3d-slash", + "name": "3D Slash", + "url": "/v1/software/3d-slash" + }, + { + "slug": "3d-topicscape", + "name": "3D Topicscape", + "url": "/v1/software/3d-topicscape" + }, + { + "slug": "3d-utilities", + "name": "3D Utilities", + "url": "/v1/software/3d-utilities" + }, + { + "slug": "3d-wayfinder", + "name": "3D Wayfinder", + "url": "/v1/software/3d-wayfinder" + }, + { + "slug": "3d-world-atlas", + "name": "3D World Atlas", + "url": "/v1/software/3d-world-atlas" + }, + { + "slug": "3d-calc", + "name": "3D-Calc", + "url": "/v1/software/3d-calc" + }, + { + "slug": "3dcrafter", + "name": "3DCrafter", + "url": "/v1/software/3dcrafter" + }, + { + "slug": "3df-zephyr", + "name": "3DF Zephyr", + "url": "/v1/software/3df-zephyr" + }, + { + "slug": "3dmark", + "name": "3DMark", + "url": "/v1/software/3dmark" + }, + { + "slug": "3dreshaper", + "name": "3DReshaper", + "url": "/v1/software/3dreshaper" + }, + { + "slug": "3delight", + "name": "3Delight", + "url": "/v1/software/3delight" + }, + { + "slug": "3dsurvey", + "name": "3Dsurvey", + "url": "/v1/software/3dsurvey" + }, + { + "slug": "3player", + "name": "3Player", + "url": "/v1/software/3player" + }, + { + "slug": "3dcart", + "name": "3dcart", + "url": "/v1/software/3dcart" + }, + { + "slug": "3dmix", + "name": "3dmiX", + "url": "/v1/software/3dmix" + }, + { + "slug": "4-paws-of-crab", + "name": "4 Paws of Crab", + "url": "/v1/software/4-paws-of-crab" + }, + { + "slug": "40tude-dialog", + "name": "40tude Dialog", + "url": "/v1/software/40tude-dialog" + }, + { + "slug": "4d-explorer", + "name": "4D-Explorer", + "url": "/v1/software/4d-explorer" + }, + { + "slug": "4kdownload", + "name": "4KDownload", + "url": "/v1/software/4kdownload" + }, + { + "slug": "4pm", + "name": "4PM", + "url": "/v1/software/4pm" + }, + { + "slug": "4peaks", + "name": "4Peaks", + "url": "/v1/software/4peaks" + }, + { + "slug": "4sync", + "name": "4sync", + "url": "/v1/software/4sync" + }, + { + "slug": "4th-dimension", + "name": "4th Dimension", + "url": "/v1/software/4th-dimension" + }, + { + "slug": "5-tiles", + "name": "5-Tiles", + "url": "/v1/software/5-tiles" + }, + { + "slug": "50x-impact", + "name": "50X Impact", + "url": "/v1/software/50x-impact" + }, + { + "slug": "51-forth", + "name": "51-FORTH", + "url": "/v1/software/51-forth" + }, + { + "slug": "602pc-suite", + "name": "602PC Suite", + "url": "/v1/software/602pc-suite" + }, + { + "slug": "75-seasons-the-history-of-the-nfl", + "name": "75 Seasons: The History of the NFL", + "url": "/v1/software/75-seasons-the-history-of-the-nfl" + }, + { + "slug": "755", + "name": "755", + "url": "/v1/software/755" + }, + { + "slug": "95buddy", + "name": "95Buddy", + "url": "/v1/software/95buddy" + }, + { + "slug": "98lite", + "name": "98Lite", + "url": "/v1/software/98lite" + }, + { + "slug": "9apps", + "name": "9Apps", + "url": "/v1/software/9apps" + }, + { + "slug": "9now", + "name": "9Now", + "url": "/v1/software/9now" + }, + { + "slug": "mail", + "name": "@Mail", + "url": "/v1/software/mail" + }, + { + "slug": "a-poke-in-the-ear-with-a-sharp-stick", + "name": "A Poke in the Ear with a Sharp Stick", + "url": "/v1/software/a-poke-in-the-ear-with-a-sharp-stick" + }, + { + "slug": "a-virtual-file-system", + "name": "A Virtual File System", + "url": "/v1/software/a-virtual-file-system" + }, + { + "slug": "a-parser", + "name": "A-Parser", + "url": "/v1/software/a-parser" + }, + { + "slug": "a-nnotate", + "name": "A.nnotate", + "url": "/v1/software/a-nnotate" + }, + { + "slug": "a3d", + "name": "A3D", + "url": "/v1/software/a3d" + }, + { + "slug": "a86", + "name": "A86", + "url": "/v1/software/a86" + }, + { + "slug": "a9cad", + "name": "A9CAD", + "url": "/v1/software/a9cad" + }, + { + "slug": "aaa-map-n-go", + "name": "AAA Map 'n' Go", + "url": "/v1/software/aaa-map-n-go" + }, + { + "slug": "abbyy-pdf-transformer", + "name": "ABBYY PDF Transformer+", + "url": "/v1/software/abbyy-pdf-transformer" + }, + { + "slug": "abc-media-manager", + "name": "ABC Media Manager", + "url": "/v1/software/abc-media-manager" + }, + { + "slug": "abc-newslinks", + "name": "ABC NewsLinks", + "url": "/v1/software/abc-newslinks" + }, + { + "slug": "abc-iview", + "name": "ABC iview", + "url": "/v1/software/abc-iview" + }, + { + "slug": "abc-lx", + "name": "ABC/LX", + "url": "/v1/software/abc-lx" + }, + { + "slug": "abc-home", + "name": "ABC@Home", + "url": "/v1/software/abc-home" + }, + { + "slug": "abfreq", + "name": "ABFREQ", + "url": "/v1/software/abfreq" + }, + { + "slug": "abviewer", + "name": "ABViewer", + "url": "/v1/software/abviewer" + }, + { + "slug": "abasic", + "name": "ABasiC", + "url": "/v1/software/abasic" + }, + { + "slug": "abrowse", + "name": "ABrowse", + "url": "/v1/software/abrowse" + }, + { + "slug": "ac3d", + "name": "AC3D", + "url": "/v1/software/ac3d" + }, + { + "slug": "acado-toolkit", + "name": "ACADO Toolkit", + "url": "/v1/software/acado-toolkit" + }, + { + "slug": "acarm-ng", + "name": "ACARM-ng", + "url": "/v1/software/acarm-ng" + }, + { + "slug": "acaso", + "name": "ACASO", + "url": "/v1/software/acaso" + }, + { + "slug": "acd-labs-percepta", + "name": "ACD/Labs Percepta", + "url": "/v1/software/acd-labs-percepta" + }, + { + "slug": "acif", + "name": "ACIF", + "url": "/v1/software/acif" + }, + { + "slug": "actapro", + "name": "ACTApro", + "url": "/v1/software/actapro" + }, + { + "slug": "adabas", + "name": "ADABAS", + "url": "/v1/software/adabas" + }, + { + "slug": "adic", + "name": "ADIC", + "url": "/v1/software/adic" + }, + { + "slug": "admar", + "name": "ADMAR", + "url": "/v1/software/admar" + }, + { + "slug": "admixtools", + "name": "ADMIXTOOLS", + "url": "/v1/software/admixtools" + }, + { + "slug": "adrift", + "name": "ADRIFT", + "url": "/v1/software/adrift" + }, + { + "slug": "advantage-framework", + "name": "ADvantage Framework", + "url": "/v1/software/advantage-framework" + }, + { + "slug": "aeo-audit-pro", + "name": "AEO Audit Pro", + "url": "/v1/software/aeo-audit-pro" + }, + { + "slug": "afcaa-revic", + "name": "AFCAA REVIC", + "url": "/v1/software/afcaa-revic" + }, + { + "slug": "agora-multi-agent-research-system", + "name": "AGORA Multi-Agent Research System", + "url": "/v1/software/agora-multi-agent-research-system" + }, + { + "slug": "agi32", + "name": "AGi32", + "url": "/v1/software/agi32" + }, + { + "slug": "ahi", + "name": "AHI", + "url": "/v1/software/ahi" + }, + { + "slug": "ai-citation-toolkit", + "name": "AI Citation Toolkit", + "url": "/v1/software/ai-citation-toolkit" + }, + { + "slug": "ai-endurance", + "name": "AI Endurance", + "url": "/v1/software/ai-endurance" + }, + { + "slug": "ai-platform-for-contract-redlining-due-diligence-questionnaires-and-security-questionnaire", + "name": "AI Platform for Contract Redlining, Due Diligence Questionnaires, and Security Questionnaire Automation", + "url": "/v1/software/ai-platform-for-contract-redlining-due-diligence-questionnaires-and-security-questionnaire" + }, + { + "slug": "ai-sql-tuner-studio", + "name": "AI SQL Tuner Studio", + "url": "/v1/software/ai-sql-tuner-studio" + }, + { + "slug": "ai-site-builder", + "name": "AI Site Builder", + "url": "/v1/software/ai-site-builder" + }, + { + "slug": "ai-sales-development-representative-software", + "name": "AI sales development representative software", + "url": "/v1/software/ai-sales-development-representative-software" + }, + { + "slug": "aim-ad-hack", + "name": "AIM Ad Hack", + "url": "/v1/software/aim-ad-hack" + }, + { + "slug": "aim-phoneline", + "name": "AIM Phoneline", + "url": "/v1/software/aim-phoneline" + }, + { + "slug": "aimall", + "name": "AIMAll", + "url": "/v1/software/aimall" + }, + { + "slug": "aimstor", + "name": "AIMstor", + "url": "/v1/software/aimstor" + }, + { + "slug": "ainot", + "name": "AINOT", + "url": "/v1/software/ainot" + }, + { + "slug": "aioncalls-ai-voice-agent", + "name": "AIOnCalls AI Voice Agent", + "url": "/v1/software/aioncalls-ai-voice-agent" + }, + { + "slug": "air-q41795204", + "name": "AIR", + "url": "/v1/software/air-q41795204" + }, + { + "slug": "air", + "name": "AIR", + "url": "/v1/software/air" + }, + { + "slug": "airman", + "name": "AIRMAN", + "url": "/v1/software/airman" + }, + { + "slug": "airnovel", + "name": "AIRNovel", + "url": "/v1/software/airnovel" + }, + { + "slug": "aitc-homes", + "name": "AITC Homes", + "url": "/v1/software/aitc-homes" + }, + { + "slug": "albert-library-search-engine", + "name": "ALBERT - Library Search Engine", + "url": "/v1/software/albert-library-search-engine" + }, + { + "slug": "alcapture", + "name": "ALCapture", + "url": "/v1/software/alcapture" + }, + { + "slug": "aldrive", + "name": "ALDrive", + "url": "/v1/software/aldrive" + }, + { + "slug": "alegra", + "name": "ALEGRA", + "url": "/v1/software/alegra" + }, + { + "slug": "algor", + "name": "ALGOR", + "url": "/v1/software/algor" + }, + { + "slug": "alsee", + "name": "ALSee", + "url": "/v1/software/alsee" + }, + { + "slug": "alsong", + "name": "ALSong", + "url": "/v1/software/alsong" + }, + { + "slug": "altoolbar", + "name": "ALToolbar", + "url": "/v1/software/altoolbar" + }, + { + "slug": "alyac", + "name": "ALYac", + "url": "/v1/software/alyac" + }, + { + "slug": "aliyun-drive", + "name": "ALiYun Drive", + "url": "/v1/software/aliyun-drive" + }, + { + "slug": "amado-online", + "name": "AMADO-online", + "url": "/v1/software/amado-online" + }, + { + "slug": "amber", + "name": "AMBER", + "url": "/v1/software/amber" + }, + { + "slug": "amd-700-chipset-series", + "name": "AMD 700 chipset series", + "url": "/v1/software/amd-700-chipset-series" + }, + { + "slug": "amd-app", + "name": "AMD APP", + "url": "/v1/software/amd-app" + }, + { + "slug": "amd-codexl", + "name": "AMD CodeXL", + "url": "/v1/software/amd-codexl" + }, + { + "slug": "amd-ryzen-master", + "name": "AMD Ryzen Master", + "url": "/v1/software/amd-ryzen-master" + }, + { + "slug": "ame-accounting-software", + "name": "AME Accounting Software", + "url": "/v1/software/ame-accounting-software" + }, + { + "slug": "ametek-crank", + "name": "AMETEK Crank", + "url": "/v1/software/ametek-crank" + }, + { + "slug": "amir", + "name": "AMIR", + "url": "/v1/software/amir" + }, + { + "slug": "amos-q112594634", + "name": "AMOS", + "url": "/v1/software/amos-q112594634" + }, + { + "slug": "amos", + "name": "AMOS", + "url": "/v1/software/amos" + }, + { + "slug": "amr", + "name": "AMR", + "url": "/v1/software/amr" + }, + { + "slug": "amrfinderplus", + "name": "AMRFinderPlus", + "url": "/v1/software/amrfinderplus" + }, + { + "slug": "ams-device-manager", + "name": "AMS Device Manager", + "url": "/v1/software/ams-device-manager" + }, + { + "slug": "amosaic", + "name": "AMosaic", + "url": "/v1/software/amosaic" + }, + { + "slug": "ansa-pre-processor", + "name": "ANSA Pre-processor", + "url": "/v1/software/ansa-pre-processor" + }, + { + "slug": "ansys", + "name": "ANSYS", + "url": "/v1/software/ansys" + }, + { + "slug": "anthropac", + "name": "ANTHROPAC", + "url": "/v1/software/anthropac" + }, + { + "slug": "antlr-studio", + "name": "ANTLR Studio", + "url": "/v1/software/antlr-studio" + }, + { + "slug": "anton", + "name": "ANTON", + "url": "/v1/software/anton" + }, + { + "slug": "any-run", + "name": "ANY.RUN", + "url": "/v1/software/any-run" + }, + { + "slug": "aniuta", + "name": "ANiUTa", + "url": "/v1/software/aniuta" + }, + { + "slug": "aol-desktop", + "name": "AOL Desktop", + "url": "/v1/software/aol-desktop" + }, + { + "slug": "aol-explorer", + "name": "AOL Explorer", + "url": "/v1/software/aol-explorer" + }, + { + "slug": "aol-openride", + "name": "AOL OpenRide", + "url": "/v1/software/aol-openride" + }, + { + "slug": "apbs", + "name": "APBS", + "url": "/v1/software/apbs" + }, + { + "slug": "apex-stoke-intel", + "name": "APEX Stoke Intel", + "url": "/v1/software/apex-stoke-intel" + }, + { + "slug": "api-analytics", + "name": "API Analytics", + "url": "/v1/software/api-analytics" + }, + { + "slug": "api-monetization", + "name": "API Monetization", + "url": "/v1/software/api-monetization" + }, + { + "slug": "aplac", + "name": "APLAC", + "url": "/v1/software/aplac" + }, + { + "slug": "aptos", + "name": "APTOS", + "url": "/v1/software/aptos" + }, + { + "slug": "apus-group", + "name": "APUS Group", + "url": "/v1/software/apus-group" + }, + { + "slug": "apus-launcher", + "name": "APUS Launcher", + "url": "/v1/software/apus-launcher" + }, + { + "slug": "aqemu", + "name": "AQEMU", + "url": "/v1/software/aqemu" + }, + { + "slug": "aqua-home", + "name": "AQUA@home", + "url": "/v1/software/aqua-home" + }, + { + "slug": "aqtime", + "name": "AQtime", + "url": "/v1/software/aqtime" + }, + { + "slug": "ar-models", + "name": "AR Models", + "url": "/v1/software/ar-models" + }, + { + "slug": "ar-zone", + "name": "AR Zone", + "url": "/v1/software/ar-zone" + }, + { + "slug": "ara-audio-random-access", + "name": "ARA Audio Random Access", + "url": "/v1/software/ara-audio-random-access" + }, + { + "slug": "arc", + "name": "ARC", + "url": "/v1/software/arc" + }, + { + "slug": "arcady", + "name": "ARCADY", + "url": "/v1/software/arcady" + }, + { + "slug": "archline-xp", + "name": "ARCHline.XP", + "url": "/v1/software/archline-xp" + }, + { + "slug": "ares-cad", + "name": "ARES CAD", + "url": "/v1/software/ares-cad" + }, + { + "slug": "ariadne-portal", + "name": "ARIADNE Portal", + "url": "/v1/software/ariadne-portal" + }, + { + "slug": "aris-mashzone", + "name": "ARIS MashZone", + "url": "/v1/software/aris-mashzone" + }, + { + "slug": "arras", + "name": "ARRAS", + "url": "/v1/software/arras" + }, + { + "slug": "arsloid", + "name": "ARSloid", + "url": "/v1/software/arsloid" + }, + { + "slug": "arswp", + "name": "ARSwp", + "url": "/v1/software/arswp" + }, + { + "slug": "art", + "name": "ART", + "url": "/v1/software/art" + }, + { + "slug": "artas", + "name": "ARTAS", + "url": "/v1/software/artas" + }, + { + "slug": "artool-project", + "name": "ARTool-project", + "url": "/v1/software/artool-project" + }, + { + "slug": "artoolkit", + "name": "ARToolKit", + "url": "/v1/software/artoolkit" + }, + { + "slug": "arexx", + "name": "ARexx", + "url": "/v1/software/arexx" + }, + { + "slug": "as-400-automated-message-paging", + "name": "AS/400 Automated Message Paging", + "url": "/v1/software/as-400-automated-message-paging" + }, + { + "slug": "ascertain", + "name": "ASCERTain", + "url": "/v1/software/ascertain" + }, + { + "slug": "ascet", + "name": "ASCET", + "url": "/v1/software/ascet" + }, + { + "slug": "ascii-express", + "name": "ASCII Express", + "url": "/v1/software/ascii-express" + }, + { + "slug": "asf-sdf-meta-environment", + "name": "ASF+SDF Meta Environment", + "url": "/v1/software/asf-sdf-meta-environment" + }, + { + "slug": "ash", + "name": "ASH", + "url": "/v1/software/ash" + }, + { + "slug": "asic", + "name": "ASIC", + "url": "/v1/software/asic" + }, + { + "slug": "asp-net-dynamic-data", + "name": "ASP.NET Dynamic Data", + "url": "/v1/software/asp-net-dynamic-data" + }, + { + "slug": "asp-net-web-forms", + "name": "ASP.NET Web Forms", + "url": "/v1/software/asp-net-web-forms" + }, + { + "slug": "asp-net-web-site-administration-tool", + "name": "ASP.NET Web Site Administration Tool", + "url": "/v1/software/asp-net-web-site-administration-tool" + }, + { + "slug": "asreml", + "name": "ASReml", + "url": "/v1/software/asreml" + }, + { + "slug": "astos", + "name": "ASTOS", + "url": "/v1/software/astos" + }, + { + "slug": "astpp", + "name": "ASTPP", + "url": "/v1/software/astpp" + }, + { + "slug": "astra32", + "name": "ASTRA32", + "url": "/v1/software/astra32" + }, + { + "slug": "asus-gpu-tweak", + "name": "ASUS GPU Tweak", + "url": "/v1/software/asus-gpu-tweak" + }, + { + "slug": "asus-zenui", + "name": "ASUS ZenUI", + "url": "/v1/software/asus-zenui" + }, + { + "slug": "asv-online-toolbox", + "name": "ASV Online Toolbox", + "url": "/v1/software/asv-online-toolbox" + }, + { + "slug": "at-calc", + "name": "AT Calc", + "url": "/v1/software/at-calc" + }, + { + "slug": "at-t-natural-voices", + "name": "AT&T Natural Voices", + "url": "/v1/software/at-t-natural-voices" + }, + { + "slug": "atatool", + "name": "ATATool", + "url": "/v1/software/atatool" + }, + { + "slug": "ati-avivo", + "name": "ATI Avivo", + "url": "/v1/software/ati-avivo" + }, + { + "slug": "ati-tray-tools", + "name": "ATI Tray Tools", + "url": "/v1/software/ati-tray-tools" + }, + { + "slug": "atila", + "name": "ATILA", + "url": "/v1/software/atila" + }, + { + "slug": "atis-cloud", + "name": "ATIS.cloud", + "url": "/v1/software/atis-cloud" + }, + { + "slug": "atlas-ti", + "name": "ATLAS.ti", + "url": "/v1/software/atlas-ti" + }, + { + "slug": "atos", + "name": "ATOS", + "url": "/v1/software/atos" + }, + { + "slug": "aua-framework", + "name": "AUA Framework", + "url": "/v1/software/aua-framework" + }, + { + "slug": "audix", + "name": "AUDIX", + "url": "/v1/software/audix" + }, + { + "slug": "austal", + "name": "AUSTAL", + "url": "/v1/software/austal" + }, + { + "slug": "author", + "name": "AUTHOR", + "url": "/v1/software/author" + }, + { + "slug": "autokon", + "name": "AUTOKON", + "url": "/v1/software/autokon" + }, + { + "slug": "autonom", + "name": "AUTONOM", + "url": "/v1/software/autonom" + }, + { + "slug": "autostyl", + "name": "AUTOSTYL", + "url": "/v1/software/autostyl" + }, + { + "slug": "aunit", + "name": "AUnit", + "url": "/v1/software/aunit" + }, + { + "slug": "av-comparatives", + "name": "AV-Comparatives", + "url": "/v1/software/av-comparatives" + }, + { + "slug": "ava-advanced-video-annotations", + "name": "AVA (Advanced Video Annotations)", + "url": "/v1/software/ava-advanced-video-annotations" + }, + { + "slug": "avg", + "name": "AVG", + "url": "/v1/software/avg" + }, + { + "slug": "avobmat", + "name": "AVOBMAT", + "url": "/v1/software/avobmat" + }, + { + "slug": "avs-video-converter", + "name": "AVS Video Converter", + "url": "/v1/software/avs-video-converter" + }, + { + "slug": "avsnap", + "name": "AVSnap", + "url": "/v1/software/avsnap" + }, + { + "slug": "aws-app-runner", + "name": "AWS App Runner", + "url": "/v1/software/aws-app-runner" + }, + { + "slug": "aws-cloud-development-kit", + "name": "AWS Cloud Development Kit", + "url": "/v1/software/aws-cloud-development-kit" + }, + { + "slug": "aws-cloudformation", + "name": "AWS CloudFormation", + "url": "/v1/software/aws-cloudformation" + }, + { + "slug": "aws-elastic-beanstalk", + "name": "AWS Elastic Beanstalk", + "url": "/v1/software/aws-elastic-beanstalk" + }, + { + "slug": "aws-sdk", + "name": "AWS SDK", + "url": "/v1/software/aws-sdk" + }, + { + "slug": "axe", + "name": "AXE", + "url": "/v1/software/axe" + }, + { + "slug": "aya-space", + "name": "AYA Space", + "url": "/v1/software/aya-space" + }, + { + "slug": "aapanel", + "name": "AaPanel", + "url": "/v1/software/aapanel" + }, + { + "slug": "aakhy-n", + "name": "Aakhyān", + "url": "/v1/software/aakhy-n" + }, + { + "slug": "aanval", + "name": "Aanval", + "url": "/v1/software/aanval" + }, + { + "slug": "aarogya-setu", + "name": "Aarogya Setu", + "url": "/v1/software/aarogya-setu" + }, + { + "slug": "abalone", + "name": "Abalone", + "url": "/v1/software/abalone" + }, + { + "slug": "abbot", + "name": "Abbot", + "url": "/v1/software/abbot" + }, + { + "slug": "aber", + "name": "Aber", + "url": "/v1/software/aber" + }, + { + "slug": "ability-office", + "name": "Ability Office", + "url": "/v1/software/ability-office" + }, + { + "slug": "abills", + "name": "Abills", + "url": "/v1/software/abills" + }, + { + "slug": "abiquo", + "name": "Abiquo", + "url": "/v1/software/abiquo" + }, + { + "slug": "able2extract", + "name": "Able2extract", + "url": "/v1/software/able2extract" + }, + { + "slug": "ableton-operator", + "name": "Ableton Operator", + "url": "/v1/software/ableton-operator" + }, + { + "slug": "abra-academy-returning-cast", + "name": "Abra Academy: Returning Cast", + "url": "/v1/software/abra-academy-returning-cast" + }, + { + "slug": "abseil", + "name": "Abseil", + "url": "/v1/software/abseil" + }, + { + "slug": "absolute-manage", + "name": "Absolute Manage", + "url": "/v1/software/absolute-manage" + }, + { + "slug": "absolute-poker", + "name": "Absolute Poker", + "url": "/v1/software/absolute-poker" + }, + { + "slug": "academic-meta-tool", + "name": "Academic Meta Tool", + "url": "/v1/software/academic-meta-tool" + }, + { + "slug": "accelerated-linear-algebra", + "name": "Accelerated Linear Algebra", + "url": "/v1/software/accelerated-linear-algebra" + }, + { + "slug": "accelerated-math", + "name": "Accelerated Math", + "url": "/v1/software/accelerated-math" + }, + { + "slug": "accelerated-reader", + "name": "Accelerated Reader", + "url": "/v1/software/accelerated-reader" + }, + { + "slug": "accelerator-physics-codes", + "name": "Accelerator Physics Codes", + "url": "/v1/software/accelerator-physics-codes" + }, + { + "slug": "accesdata-ftk", + "name": "AccesData FTK", + "url": "/v1/software/accesdata-ftk" + }, + { + "slug": "accurev-scm", + "name": "AccuRev SCM", + "url": "/v1/software/accurev-scm" + }, + { + "slug": "acerules", + "name": "AceRules", + "url": "/v1/software/acerules" + }, + { + "slug": "acid-pro", + "name": "Acid Pro", + "url": "/v1/software/acid-pro" + }, + { + "slug": "acodis", + "name": "Acodis", + "url": "/v1/software/acodis" + }, + { + "slug": "acorn-c-c", + "name": "Acorn C/C++", + "url": "/v1/software/acorn-c-c" + }, + { + "slug": "acornsoft-lisp", + "name": "Acornsoft LISP", + "url": "/v1/software/acornsoft-lisp" + }, + { + "slug": "acornsoft-logo", + "name": "Acornsoft Logo", + "url": "/v1/software/acornsoft-logo" + }, + { + "slug": "acrolinx", + "name": "Acrolinx", + "url": "/v1/software/acrolinx" + }, + { + "slug": "acronis-backup-recovery", + "name": "Acronis Backup & Recovery", + "url": "/v1/software/acronis-backup-recovery" + }, + { + "slug": "across-language-server", + "name": "Across Language Server", + "url": "/v1/software/across-language-server" + }, + { + "slug": "act", + "name": "Act!", + "url": "/v1/software/act" + }, + { + "slug": "act-on", + "name": "Act-On", + "url": "/v1/software/act-on" + }, + { + "slug": "actcad", + "name": "ActCAD", + "url": "/v1/software/actcad" + }, + { + "slug": "actifsource", + "name": "Actifsource", + "url": "/v1/software/actifsource" + }, + { + "slug": "action-center", + "name": "Action Center", + "url": "/v1/software/action-center" + }, + { + "slug": "actionoutline", + "name": "ActionOutline", + "url": "/v1/software/actionoutline" + }, + { + "slug": "activecho", + "name": "ActivEcho", + "url": "/v1/software/activecho" + }, + { + "slug": "active-desktop", + "name": "Active Desktop", + "url": "/v1/software/active-desktop" + }, + { + "slug": "activecollab", + "name": "ActiveCollab", + "url": "/v1/software/activecollab" + }, + { + "slug": "activefile", + "name": "ActiveFile", + "url": "/v1/software/activefile" + }, + { + "slug": "activepresentation", + "name": "ActivePresentation", + "url": "/v1/software/activepresentation" + }, + { + "slug": "activepresenter", + "name": "ActivePresenter", + "url": "/v1/software/activepresenter" + }, + { + "slug": "activepython", + "name": "ActivePython", + "url": "/v1/software/activepython" + }, + { + "slug": "activeshare", + "name": "ActiveShare", + "url": "/v1/software/activeshare" + }, + { + "slug": "activesync", + "name": "ActiveSync", + "url": "/v1/software/activesync" + }, + { + "slug": "activevos", + "name": "ActiveVOS", + "url": "/v1/software/activevos" + }, + { + "slug": "activeweave", + "name": "Activeweave", + "url": "/v1/software/activeweave" + }, + { + "slug": "activity-monitor", + "name": "Activity Monitor", + "url": "/v1/software/activity-monitor" + }, + { + "slug": "actran", + "name": "Actran", + "url": "/v1/software/actran" + }, + { + "slug": "acumbamail", + "name": "Acumbamail", + "url": "/v1/software/acumbamail" + }, + { + "slug": "acunetix", + "name": "Acunetix", + "url": "/v1/software/acunetix" + }, + { + "slug": "adacontrol", + "name": "AdaControl", + "url": "/v1/software/adacontrol" + }, + { + "slug": "adabas-d", + "name": "Adabas D", + "url": "/v1/software/adabas-d" + }, + { + "slug": "adaptable-input-output-system-version-2", + "name": "Adaptable Input Output System version 2", + "url": "/v1/software/adaptable-input-output-system-version-2" + }, + { + "slug": "adaptation-kit-upgrade", + "name": "Adaptation kit upgrade", + "url": "/v1/software/adaptation-kit-upgrade" + }, + { + "slug": "adapter", + "name": "Adapter", + "url": "/v1/software/adapter" + }, + { + "slug": "adaptive-domain-environment-for-operating-systems", + "name": "Adaptive Domain Environment for Operating Systems", + "url": "/v1/software/adaptive-domain-environment-for-operating-systems" + }, + { + "slug": "adaptive-modeler", + "name": "Adaptive Modeler", + "url": "/v1/software/adaptive-modeler" + }, + { + "slug": "adaware-antivirus", + "name": "Adaware Antivirus", + "url": "/v1/software/adaware-antivirus" + }, + { + "slug": "address-book", + "name": "Address Book", + "url": "/v1/software/address-book" + }, + { + "slug": "adesklets", + "name": "Adesklets", + "url": "/v1/software/adesklets" + }, + { + "slug": "adiirc", + "name": "AdiIRC", + "url": "/v1/software/adiirc" + }, + { + "slug": "adios", + "name": "AdiOS", + "url": "/v1/software/adios" + }, + { + "slug": "adibou", + "name": "Adibou", + "url": "/v1/software/adibou" + }, + { + "slug": "adisyo", + "name": "Adisyo", + "url": "/v1/software/adisyo" + }, + { + "slug": "adlib-archive", + "name": "Adlib Archive", + "url": "/v1/software/adlib-archive" + }, + { + "slug": "adobe-air", + "name": "Adobe AIR", + "url": "/v1/software/adobe-air" + }, + { + "slug": "adobe-account-access", + "name": "Adobe Account Access", + "url": "/v1/software/adobe-account-access" + }, + { + "slug": "adobe-acrobat-capture-3-0", + "name": "Adobe Acrobat Capture 3.0", + "url": "/v1/software/adobe-acrobat-capture-3-0" + }, + { + "slug": "adobe-acrobat-reader-dc", + "name": "Adobe Acrobat Reader DC", + "url": "/v1/software/adobe-acrobat-reader-dc" + }, + { + "slug": "adobe-acrobat-reader-dc-2017", + "name": "Adobe Acrobat Reader DC 2017", + "url": "/v1/software/adobe-acrobat-reader-dc-2017" + }, + { + "slug": "adobe-browserlab", + "name": "Adobe BrowserLab", + "url": "/v1/software/adobe-browserlab" + }, + { + "slug": "adobe-character-animator", + "name": "Adobe Character Animator", + "url": "/v1/software/adobe-character-animator" + }, + { + "slug": "adobe-color", + "name": "Adobe Color", + "url": "/v1/software/adobe-color" + }, + { + "slug": "adobe-device-central", + "name": "Adobe Device Central", + "url": "/v1/software/adobe-device-central" + }, + { + "slug": "adobe-digital-editions", + "name": "Adobe Digital Editions", + "url": "/v1/software/adobe-digital-editions" + }, + { + "slug": "adobe-dimensions", + "name": "Adobe Dimensions", + "url": "/v1/software/adobe-dimensions" + }, + { + "slug": "adobe-edge", + "name": "Adobe Edge", + "url": "/v1/software/adobe-edge" + }, + { + "slug": "adobe-edge-animate", + "name": "Adobe Edge Animate", + "url": "/v1/software/adobe-edge-animate" + }, + { + "slug": "adobe-express", + "name": "Adobe Express", + "url": "/v1/software/adobe-express" + }, + { + "slug": "adobe-flash-catalyst", + "name": "Adobe Flash Catalyst", + "url": "/v1/software/adobe-flash-catalyst" + }, + { + "slug": "adobe-flash-lite", + "name": "Adobe Flash Lite", + "url": "/v1/software/adobe-flash-lite" + }, + { + "slug": "adobe-flash-media-live-encoder", + "name": "Adobe Flash Media Live Encoder", + "url": "/v1/software/adobe-flash-media-live-encoder" + }, + { + "slug": "adobe-font-folio", + "name": "Adobe Font Folio", + "url": "/v1/software/adobe-font-folio" + }, + { + "slug": "adobe-fresco", + "name": "Adobe Fresco", + "url": "/v1/software/adobe-fresco" + }, + { + "slug": "adobe-illustrator-9-0", + "name": "Adobe Illustrator 9.0", + "url": "/v1/software/adobe-illustrator-9-0" + }, + { + "slug": "adobe-indesign", + "name": "Adobe InDesign", + "url": "/v1/software/adobe-indesign" + }, + { + "slug": "adobe-jrun", + "name": "Adobe JRun", + "url": "/v1/software/adobe-jrun" + }, + { + "slug": "adobe-livecycle-designer", + "name": "Adobe LiveCycle Designer", + "url": "/v1/software/adobe-livecycle-designer" + }, + { + "slug": "adobe-media-player", + "name": "Adobe Media Player", + "url": "/v1/software/adobe-media-player" + }, + { + "slug": "adobe-media-server", + "name": "Adobe Media Server", + "url": "/v1/software/adobe-media-server" + }, + { + "slug": "adobe-muse", + "name": "Adobe Muse", + "url": "/v1/software/adobe-muse" + }, + { + "slug": "adobe-onlocation", + "name": "Adobe OnLocation", + "url": "/v1/software/adobe-onlocation" + }, + { + "slug": "adobe-ovation", + "name": "Adobe Ovation", + "url": "/v1/software/adobe-ovation" + }, + { + "slug": "adobe-pdf-print-engine", + "name": "Adobe PDF Print Engine", + "url": "/v1/software/adobe-pdf-print-engine" + }, + { + "slug": "adobe-pagemaker", + "name": "Adobe PageMaker", + "url": "/v1/software/adobe-pagemaker" + }, + { + "slug": "adobe-pagemill-3-0", + "name": "Adobe PageMill 3.0", + "url": "/v1/software/adobe-pagemill-3-0" + }, + { + "slug": "adobe-persuasion", + "name": "Adobe Persuasion", + "url": "/v1/software/adobe-persuasion" + }, + { + "slug": "adobe-photoshop-express", + "name": "Adobe Photoshop Express", + "url": "/v1/software/adobe-photoshop-express" + }, + { + "slug": "adobe-pixel-bender", + "name": "Adobe Pixel Bender", + "url": "/v1/software/adobe-pixel-bender" + }, + { + "slug": "adobe-premiere-express", + "name": "Adobe Premiere Express", + "url": "/v1/software/adobe-premiere-express" + }, + { + "slug": "adobe-presenter-video-express", + "name": "Adobe Presenter Video Express", + "url": "/v1/software/adobe-presenter-video-express" + }, + { + "slug": "adobe-reader-1-0", + "name": "Adobe Reader 1.0", + "url": "/v1/software/adobe-reader-1-0" + }, + { + "slug": "adobe-reader-2-0", + "name": "Adobe Reader 2.0", + "url": "/v1/software/adobe-reader-2-0" + }, + { + "slug": "adobe-reader-3-0", + "name": "Adobe Reader 3.0", + "url": "/v1/software/adobe-reader-3-0" + }, + { + "slug": "adobe-reader-4-0", + "name": "Adobe Reader 4.0", + "url": "/v1/software/adobe-reader-4-0" + }, + { + "slug": "adobe-reader-6-0", + "name": "Adobe Reader 6.0", + "url": "/v1/software/adobe-reader-6-0" + }, + { + "slug": "adobe-reader-7-0", + "name": "Adobe Reader 7.0", + "url": "/v1/software/adobe-reader-7-0" + }, + { + "slug": "adobe-reader-8-0", + "name": "Adobe Reader 8.0", + "url": "/v1/software/adobe-reader-8-0" + }, + { + "slug": "adobe-reader-9-0", + "name": "Adobe Reader 9.0", + "url": "/v1/software/adobe-reader-9-0" + }, + { + "slug": "adobe-reader-x", + "name": "Adobe Reader X", + "url": "/v1/software/adobe-reader-x" + }, + { + "slug": "adobe-reader-xi", + "name": "Adobe Reader XI", + "url": "/v1/software/adobe-reader-xi" + }, + { + "slug": "adobe-reader-version-9-2", + "name": "Adobe Reader, version 9.2", + "url": "/v1/software/adobe-reader-version-9-2" + }, + { + "slug": "adobe-revel", + "name": "Adobe Revel", + "url": "/v1/software/adobe-revel" + }, + { + "slug": "adobe-robohelp", + "name": "Adobe RoboHelp", + "url": "/v1/software/adobe-robohelp" + }, + { + "slug": "adobe-shockwave-player", + "name": "Adobe Shockwave Player", + "url": "/v1/software/adobe-shockwave-player" + }, + { + "slug": "adobe-source-libraries", + "name": "Adobe Source Libraries", + "url": "/v1/software/adobe-source-libraries" + }, + { + "slug": "adobe-spark-video", + "name": "Adobe Spark Video", + "url": "/v1/software/adobe-spark-video" + }, + { + "slug": "adobe-stock", + "name": "Adobe Stock", + "url": "/v1/software/adobe-stock" + }, + { + "slug": "adobe-streamline", + "name": "Adobe Streamline", + "url": "/v1/software/adobe-streamline" + }, + { + "slug": "adobe-type-manager-version-3-02", + "name": "Adobe Type Manager, version 3.02", + "url": "/v1/software/adobe-type-manager-version-3-02" + }, + { + "slug": "adobe-version-cue", + "name": "Adobe Version Cue", + "url": "/v1/software/adobe-version-cue" + }, + { + "slug": "adobe-voco", + "name": "Adobe VoCo", + "url": "/v1/software/adobe-voco" + }, + { + "slug": "adobe-elearning-suite", + "name": "Adobe eLearning Suite", + "url": "/v1/software/adobe-elearning-suite" + }, + { + "slug": "adscockpit", + "name": "AdsCockpit", + "url": "/v1/software/adscockpit" + }, + { + "slug": "advance-steel", + "name": "Advance Steel", + "url": "/v1/software/advance-steel" + }, + { + "slug": "advanced-design-system", + "name": "Advanced Design System", + "url": "/v1/software/advanced-design-system" + }, + { + "slug": "advanced-dungeons-dragons-cd-rom-core-rules", + "name": "Advanced Dungeons & Dragons CD-ROM Core Rules", + "url": "/v1/software/advanced-dungeons-dragons-cd-rom-core-rules" + }, + { + "slug": "advanced-manufacturing-software", + "name": "Advanced Manufacturing Software", + "url": "/v1/software/advanced-manufacturing-software" + }, + { + "slug": "advanced-multi-mission-operations-system", + "name": "Advanced Multi-Mission Operations System", + "url": "/v1/software/advanced-multi-mission-operations-system" + }, + { + "slug": "advanced-renamer", + "name": "Advanced Renamer", + "url": "/v1/software/advanced-renamer" + }, + { + "slug": "advanced-resource-connector", + "name": "Advanced Resource Connector", + "url": "/v1/software/advanced-resource-connector" + }, + { + "slug": "advanced-systemcare", + "name": "Advanced SystemCare", + "url": "/v1/software/advanced-systemcare" + }, + { + "slug": "advanced-systems-analysis-program", + "name": "Advanced Systems Analysis Program", + "url": "/v1/software/advanced-systems-analysis-program" + }, + { + "slug": "advanced-weather-interactive-processing-system", + "name": "Advanced Weather Interactive Processing System", + "url": "/v1/software/advanced-weather-interactive-processing-system" + }, + { + "slug": "advanced-automation-functions", + "name": "Advanced automation functions", + "url": "/v1/software/advanced-automation-functions" + }, + { + "slug": "advantage-database-server", + "name": "Advantage Database Server", + "url": "/v1/software/advantage-database-server" + }, + { + "slug": "advene", + "name": "Advene", + "url": "/v1/software/advene" + }, + { + "slug": "adventure-game-studio", + "name": "Adventure Game Studio", + "url": "/v1/software/adventure-game-studio" + }, + { + "slug": "adventure-game-toolkit", + "name": "Adventure Game Toolkit", + "url": "/v1/software/adventure-game-toolkit" + }, + { + "slug": "adwcleaner", + "name": "AdwCleaner", + "url": "/v1/software/adwcleaner" + }, + { + "slug": "aelfred", + "name": "Aelfred", + "url": "/v1/software/aelfred" + }, + { + "slug": "aeon-timeline", + "name": "Aeon Timeline", + "url": "/v1/software/aeon-timeline" + }, + { + "slug": "aerogear", + "name": "AeroGear", + "url": "/v1/software/aerogear" + }, + { + "slug": "aerospike-database-server", + "name": "Aerospike Database Server", + "url": "/v1/software/aerospike-database-server" + }, + { + "slug": "aetherpal", + "name": "AetherPal", + "url": "/v1/software/aetherpal" + }, + { + "slug": "affidario", + "name": "Affidario", + "url": "/v1/software/affidario" + }, + { + "slug": "affinity", + "name": "Affinity", + "url": "/v1/software/affinity" + }, + { + "slug": "affinity-photo", + "name": "Affinity Photo", + "url": "/v1/software/affinity-photo" + }, + { + "slug": "affymetrix-genechip-operating-software", + "name": "Affymetrix GeneChip Operating Software", + "url": "/v1/software/affymetrix-genechip-operating-software" + }, + { + "slug": "afloat", + "name": "Afloat", + "url": "/v1/software/afloat" + }, + { + "slug": "afrinolly", + "name": "Afrinolly", + "url": "/v1/software/afrinolly" + }, + { + "slug": "afrivid-studio", + "name": "Afrivid Studio", + "url": "/v1/software/afrivid-studio" + }, + { + "slug": "agantty", + "name": "Agantty", + "url": "/v1/software/agantty" + }, + { + "slug": "agent-attribution-practice-architectural-decision-records-and-four-business-ai-quadrants-o", + "name": "Agent Attribution Practice: Architectural Decision Records and Four Business AI Quadrants on Accountability Distribution in Autonomous AI Agents", + "url": "/v1/software/agent-attribution-practice-architectural-decision-records-and-four-business-ai-quadrants-o" + }, + { + "slug": "agent-based-modelling-for-archaeologists-tutorials", + "name": "Agent Based Modelling for Archaeologists: Tutorials", + "url": "/v1/software/agent-based-modelling-for-archaeologists-tutorials" + }, + { + "slug": "agent-knowledge-cycle-akc", + "name": "Agent Knowledge Cycle (AKC)", + "url": "/v1/software/agent-knowledge-cycle-akc" + }, + { + "slug": "agentflow", + "name": "AgentFlow", + "url": "/v1/software/agentflow" + }, + { + "slug": "agentic-identity", + "name": "Agentic Identity", + "url": "/v1/software/agentic-identity" + }, + { + "slug": "agenticassure", + "name": "AgenticAssure", + "url": "/v1/software/agenticassure" + }, + { + "slug": "agfa-impax-6", + "name": "Agfa impax 6", + "url": "/v1/software/agfa-impax-6" + }, + { + "slug": "agile-architecture", + "name": "Agile Architecture", + "url": "/v1/software/agile-architecture" + }, + { + "slug": "agile-uml", + "name": "Agile UML", + "url": "/v1/software/agile-uml" + }, + { + "slug": "aglets", + "name": "Aglets", + "url": "/v1/software/aglets" + }, + { + "slug": "aguapey", + "name": "Aguapey", + "url": "/v1/software/aguapey" + }, + { + "slug": "aideliv", + "name": "AiDeliv", + "url": "/v1/software/aideliv" + }, + { + "slug": "aiko", + "name": "AiKO", + "url": "/v1/software/aiko" + }, + { + "slug": "aid4mail", + "name": "Aid4Mail", + "url": "/v1/software/aid4mail" + }, + { + "slug": "aidbox", + "name": "Aidbox", + "url": "/v1/software/aidbox" + }, + { + "slug": "aidstest", + "name": "Aidstest", + "url": "/v1/software/aidstest" + }, + { + "slug": "aiiaco", + "name": "AiiACo", + "url": "/v1/software/aiiaco" + }, + { + "slug": "aimeos", + "name": "Aimeos", + "url": "/v1/software/aimeos" + }, + { + "slug": "aimsun-live", + "name": "Aimsun Live", + "url": "/v1/software/aimsun-live" + }, + { + "slug": "air-sharing", + "name": "Air Sharing", + "url": "/v1/software/air-sharing" + }, + { + "slug": "airdroid", + "name": "AirDroid", + "url": "/v1/software/airdroid" + }, + { + "slug": "airhelp", + "name": "AirHelp", + "url": "/v1/software/airhelp" + }, + { + "slug": "airport-utility", + "name": "AirPort Utility", + "url": "/v1/software/airport-utility" + }, + { + "slug": "airq", + "name": "AirQ+", + "url": "/v1/software/airq" + }, + { + "slug": "airfair", + "name": "Airfair", + "url": "/v1/software/airfair" + }, + { + "slug": "airmail", + "name": "Airmail", + "url": "/v1/software/airmail" + }, + { + "slug": "airy", + "name": "Airy", + "url": "/v1/software/airy" + }, + { + "slug": "aitalk", + "name": "Aitalk", + "url": "/v1/software/aitalk" + }, + { + "slug": "ajaxsketch", + "name": "AjaxSketch", + "url": "/v1/software/ajaxsketch" + }, + { + "slug": "ajaxwrite", + "name": "AjaxWrite", + "url": "/v1/software/ajaxwrite" + }, + { + "slug": "ajenti", + "name": "Ajenti", + "url": "/v1/software/ajenti" + }, + { + "slug": "alreader", + "name": "AlReader", + "url": "/v1/software/alreader" + }, + { + "slug": "alarms-clock", + "name": "Alarms & Clock", + "url": "/v1/software/alarms-clock" + }, + { + "slug": "albumforge", + "name": "AlbumForge", + "url": "/v1/software/albumforge" + }, + { + "slug": "albumentations", + "name": "Albumentations", + "url": "/v1/software/albumentations" + }, + { + "slug": "alchemy-catalyst", + "name": "Alchemy Catalyst", + "url": "/v1/software/alchemy-catalyst" + }, + { + "slug": "aldfaer", + "name": "Aldfaer", + "url": "/v1/software/aldfaer" + }, + { + "slug": "aleksis", + "name": "AlekSIS", + "url": "/v1/software/aleksis" + }, + { + "slug": "aleph", + "name": "Aleph", + "url": "/v1/software/aleph" + }, + { + "slug": "alertforge", + "name": "AlertForge", + "url": "/v1/software/alertforge" + }, + { + "slug": "alerta-chart", + "name": "Alerta Chart", + "url": "/v1/software/alerta-chart" + }, + { + "slug": "alerts-in-ua", + "name": "Alerts.in.ua", + "url": "/v1/software/alerts-in-ua" + }, + { + "slug": "alex-the-allegator-4", + "name": "Alex the Allegator 4", + "url": "/v1/software/alex-the-allegator-4" + }, + { + "slug": "alexnet", + "name": "AlexNet", + "url": "/v1/software/alexnet" + }, + { + "slug": "alexa-toolbar", + "name": "Alexa Toolbar", + "url": "/v1/software/alexa-toolbar" + }, + { + "slug": "alexandria", + "name": "Alexandria", + "url": "/v1/software/alexandria" + }, + { + "slug": "alexis-spectral-data", + "name": "Alexis Spectral Data", + "url": "/v1/software/alexis-spectral-data" + }, + { + "slug": "alfa-ebooks-manager", + "name": "Alfa Ebooks Manager", + "url": "/v1/software/alfa-ebooks-manager" + }, + { + "slug": "alfaview-video-conferencing-systems", + "name": "Alfaview Video Conferencing Systems", + "url": "/v1/software/alfaview-video-conferencing-systems" + }, + { + "slug": "alflow-ocr", + "name": "Alflow OCR", + "url": "/v1/software/alflow-ocr" + }, + { + "slug": "alfred", + "name": "Alfred", + "url": "/v1/software/alfred" + }, + { + "slug": "algoneer", + "name": "Algoneer", + "url": "/v1/software/algoneer" + }, + { + "slug": "algoneer-app", + "name": "Algoneer App", + "url": "/v1/software/algoneer-app" + }, + { + "slug": "algorithm-builder", + "name": "Algorithm Builder", + "url": "/v1/software/algorithm-builder" + }, + { + "slug": "alien", + "name": "AliEn", + "url": "/v1/software/alien" + }, + { + "slug": "alias-eclipse", + "name": "Alias Eclipse", + "url": "/v1/software/alias-eclipse" + }, + { + "slug": "alice-q126888621", + "name": "Alice", + "url": "/v1/software/alice-q126888621" + }, + { + "slug": "alice", + "name": "Alice", + "url": "/v1/software/alice" + }, + { + "slug": "alicevision-meshroom", + "name": "AliceVision Meshroom", + "url": "/v1/software/alicevision-meshroom" + }, + { + "slug": "alien-blue", + "name": "Alien Blue", + "url": "/v1/software/alien-blue" + }, + { + "slug": "alienbrain", + "name": "Alienbrain", + "url": "/v1/software/alienbrain" + }, + { + "slug": "all-our-ideas", + "name": "All Our Ideas", + "url": "/v1/software/all-our-ideas" + }, + { + "slug": "all-in-one-sidebar", + "name": "All-in-One Sidebar", + "url": "/v1/software/all-in-one-sidebar" + }, + { + "slug": "alladdin", + "name": "AllAddin", + "url": "/v1/software/alladdin" + }, + { + "slug": "allmymovies", + "name": "AllMyMovies", + "url": "/v1/software/allmymovies" + }, + { + "slug": "allmynotes-organizer", + "name": "AllMyNotes Organizer", + "url": "/v1/software/allmynotes-organizer" + }, + { + "slug": "allsign", + "name": "AllSign", + "url": "/v1/software/allsign" + }, + { + "slug": "allvideodownloader", + "name": "AllVideoDownloader", + "url": "/v1/software/allvideodownloader" + }, + { + "slug": "alleleid", + "name": "AlleleID", + "url": "/v1/software/alleleid" + }, + { + "slug": "alligator-allen-transformer", + "name": "Alligator - Allen Transformer", + "url": "/v1/software/alligator-allen-transformer" + }, + { + "slug": "allinea-map", + "name": "Allinea MAP", + "url": "/v1/software/allinea-map" + }, + { + "slug": "allmyvideodownloader", + "name": "Allmyvideodownloader", + "url": "/v1/software/allmyvideodownloader" + }, + { + "slug": "allycad", + "name": "AllyCAD", + "url": "/v1/software/allycad" + }, + { + "slug": "alpakalent", + "name": "Alpakalent", + "url": "/v1/software/alpakalent" + }, + { + "slug": "alpha-five", + "name": "Alpha Five", + "url": "/v1/software/alpha-five" + }, + { + "slug": "alphabasic", + "name": "AlphaBasic", + "url": "/v1/software/alphabasic" + }, + { + "slug": "alphafold", + "name": "AlphaFold", + "url": "/v1/software/alphafold" + }, + { + "slug": "alphafold2", + "name": "AlphaFold2", + "url": "/v1/software/alphafold2" + }, + { + "slug": "alphastar", + "name": "AlphaStar", + "url": "/v1/software/alphastar" + }, + { + "slug": "alpheios", + "name": "Alpheios", + "url": "/v1/software/alpheios" + }, + { + "slug": "alt-text", + "name": "Alt.Text", + "url": "/v1/software/alt-text" + }, + { + "slug": "alta-lista", + "name": "Alta Lista", + "url": "/v1/software/alta-lista" + }, + { + "slug": "alter-ego", + "name": "Alter/Ego", + "url": "/v1/software/alter-ego" + }, + { + "slug": "alternativa3d", + "name": "Alternativa3D", + "url": "/v1/software/alternativa3d" + }, + { + "slug": "alternative-girls", + "name": "Alternative Girls", + "url": "/v1/software/alternative-girls" + }, + { + "slug": "altius", + "name": "Altius", + "url": "/v1/software/altius" + }, + { + "slug": "altmetric", + "name": "Altmetric", + "url": "/v1/software/altmetric" + }, + { + "slug": "alto-mail", + "name": "Alto Mail", + "url": "/v1/software/alto-mail" + }, + { + "slug": "alureon", + "name": "Alureon", + "url": "/v1/software/alureon" + }, + { + "slug": "alvadesc", + "name": "AlvaDesc", + "url": "/v1/software/alvadesc" + }, + { + "slug": "alveo", + "name": "Alveo", + "url": "/v1/software/alveo" + }, + { + "slug": "alveo-virtual-laboratory", + "name": "Alveo Virtual Laboratory", + "url": "/v1/software/alveo-virtual-laboratory" + }, + { + "slug": "amadeus-alt-a", + "name": "Amadeus Altéa", + "url": "/v1/software/amadeus-alt-a" + }, + { + "slug": "amaze", + "name": "Amaze", + "url": "/v1/software/amaze" + }, + { + "slug": "amazon-corretto", + "name": "Amazon Corretto", + "url": "/v1/software/amazon-corretto" + }, + { + "slug": "amazon-digital-software-video-games", + "name": "Amazon Digital Software & Video Games", + "url": "/v1/software/amazon-digital-software-video-games" + }, + { + "slug": "amazon-documentdb", + "name": "Amazon DocumentDB", + "url": "/v1/software/amazon-documentdb" + }, + { + "slug": "amazon-elastic-file-system", + "name": "Amazon Elastic File System", + "url": "/v1/software/amazon-elastic-file-system" + }, + { + "slug": "amazon-kinesis", + "name": "Amazon Kinesis", + "url": "/v1/software/amazon-kinesis" + }, + { + "slug": "amazon-music-for-artists", + "name": "Amazon Music for Artists", + "url": "/v1/software/amazon-music-for-artists" + }, + { + "slug": "amazonface-ethnobotanical-dashboard", + "name": "AmazonFACE Ethnobotanical Dashboard", + "url": "/v1/software/amazonface-ethnobotanical-dashboard" + }, + { + "slug": "amazonface-ecosystem-model-ensemble-analysis", + "name": "AmazonFACE ecosystem model ensemble analysis", + "url": "/v1/software/amazonface-ecosystem-model-ensemble-analysis" + }, + { + "slug": "amber-smalltalk", + "name": "Amber Smalltalk", + "url": "/v1/software/amber-smalltalk" + }, + { + "slug": "ambiguous-restraints-for-iterative-assignment", + "name": "Ambiguous Restraints for Iterative Assignment", + "url": "/v1/software/ambiguous-restraints-for-iterative-assignment" + }, + { + "slug": "ambulatory-glucose-profile", + "name": "Ambulatory Glucose Profile", + "url": "/v1/software/ambulatory-glucose-profile" + }, + { + "slug": "amcharge", + "name": "Amcharge", + "url": "/v1/software/amcharge" + }, + { + "slug": "amcharge-version-2", + "name": "Amcharge version 2", + "url": "/v1/software/amcharge-version-2" + }, + { + "slug": "amelica-xml", + "name": "AmeliCA XML", + "url": "/v1/software/amelica-xml" + }, + { + "slug": "amitcp", + "name": "AmiTCP", + "url": "/v1/software/amitcp" + }, + { + "slug": "amiexpress", + "name": "Amiexpress", + "url": "/v1/software/amiexpress" + }, + { + "slug": "amiga-basic", + "name": "Amiga Basic", + "url": "/v1/software/amiga-basic" + }, + { + "slug": "amiga-forever", + "name": "Amiga Forever", + "url": "/v1/software/amiga-forever" + }, + { + "slug": "amigatex", + "name": "AmigaTeX", + "url": "/v1/software/amigatex" + }, + { + "slug": "amira", + "name": "Amira", + "url": "/v1/software/amira" + }, + { + "slug": "amiro-cms", + "name": "Amiro.CMS", + "url": "/v1/software/amiro-cms" + }, + { + "slug": "amithlon", + "name": "Amithlon", + "url": "/v1/software/amithlon" + }, + { + "slug": "amiwm", + "name": "Amiwm", + "url": "/v1/software/amiwm" + }, + { + "slug": "ammyy", + "name": "Ammyy", + "url": "/v1/software/ammyy" + }, + { + "slug": "amoebax", + "name": "Amoebax", + "url": "/v1/software/amoebax" + }, + { + "slug": "amortization", + "name": "Amortization", + "url": "/v1/software/amortization" + }, + { + "slug": "amplitube", + "name": "AmpliTube", + "url": "/v1/software/amplitube" + }, + { + "slug": "amsterdam-density-functional", + "name": "Amsterdam Density Functional", + "url": "/v1/software/amsterdam-density-functional" + }, + { + "slug": "amtk", + "name": "Amtk", + "url": "/v1/software/amtk" + }, + { + "slug": "an-introduction-to-hdf5", + "name": "An Introduction to HDF5", + "url": "/v1/software/an-introduction-to-hdf5" + }, + { + "slug": "answr", + "name": "AnSWR", + "url": "/v1/software/answr" + }, + { + "slug": "analyse-it", + "name": "Analyse-it", + "url": "/v1/software/analyse-it" + }, + { + "slug": "analyse-it-method-validation-edition", + "name": "Analyse-it Method Validation Edition", + "url": "/v1/software/analyse-it-method-validation-edition" + }, + { + "slug": "analyse-it-standard-edition", + "name": "Analyse-it Standard Edition", + "url": "/v1/software/analyse-it-standard-edition" + }, + { + "slug": "analyst-s-notebook", + "name": "Analyst's Notebook", + "url": "/v1/software/analyst-s-notebook" + }, + { + "slug": "analyze", + "name": "Analyze", + "url": "/v1/software/analyze" + }, + { + "slug": "andengine", + "name": "AndEngine", + "url": "/v1/software/andengine" + }, + { + "slug": "andchat", + "name": "Andchat", + "url": "/v1/software/andchat" + }, + { + "slug": "andromda", + "name": "AndroMDA", + "url": "/v1/software/andromda" + }, + { + "slug": "android-alpha", + "name": "Android Alpha", + "url": "/v1/software/android-alpha" + }, + { + "slug": "android-ndk", + "name": "Android NDK", + "url": "/v1/software/android-ndk" + }, + { + "slug": "android-pay", + "name": "Android Pay", + "url": "/v1/software/android-pay" + }, + { + "slug": "android-privacy-guard", + "name": "Android Privacy Guard", + "url": "/v1/software/android-privacy-guard" + }, + { + "slug": "android-sdk", + "name": "Android SDK", + "url": "/v1/software/android-sdk" + }, + { + "slug": "androidify", + "name": "Androidify", + "url": "/v1/software/androidify" + }, + { + "slug": "anglonas", + "name": "Anglonas", + "url": "/v1/software/anglonas" + }, + { + "slug": "animl", + "name": "AniML", + "url": "/v1/software/animl" + }, + { + "slug": "animal-behaviour-pro", + "name": "Animal Behaviour Pro", + "url": "/v1/software/animal-behaviour-pro" + }, + { + "slug": "animal-crossing-new-horizons-island-transfer-tool", + "name": "Animal Crossing: New Horizons Island Transfer Tool", + "url": "/v1/software/animal-crossing-new-horizons-island-transfer-tool" + }, + { + "slug": "animal-observer", + "name": "Animal Observer", + "url": "/v1/software/animal-observer" + }, + { + "slug": "animatlab", + "name": "AnimatLab", + "url": "/v1/software/animatlab" + }, + { + "slug": "animation-shop", + "name": "Animation Shop", + "url": "/v1/software/animation-shop" + }, + { + "slug": "animation-master", + "name": "Animation:Master", + "url": "/v1/software/animation-master" + }, + { + "slug": "animoji", + "name": "Animoji", + "url": "/v1/software/animoji" + }, + { + "slug": "animoog", + "name": "Animoog", + "url": "/v1/software/animoog" + }, + { + "slug": "annotation-graph-toolkit", + "name": "Annotation Graph Toolkit", + "url": "/v1/software/annotation-graph-toolkit" + }, + { + "slug": "annotation-studio", + "name": "Annotation Studio", + "url": "/v1/software/annotation-studio" + }, + { + "slug": "annotationdbi", + "name": "AnnotationDbi", + "url": "/v1/software/annotationdbi" + }, + { + "slug": "annotations-for-mac", + "name": "Annotations for Mac", + "url": "/v1/software/annotations-for-mac" + }, + { + "slug": "annotator-s-workbench", + "name": "Annotator's Workbench", + "url": "/v1/software/annotator-s-workbench" + }, + { + "slug": "annotorious", + "name": "Annotorious", + "url": "/v1/software/annotorious" + }, + { + "slug": "annotum", + "name": "Annotum", + "url": "/v1/software/annotum" + }, + { + "slug": "annozilla-annotea-on-mozilla", + "name": "Annozilla (Annotea on Mozilla)", + "url": "/v1/software/annozilla-annotea-on-mozilla" + }, + { + "slug": "anonet-q4991384", + "name": "AnoNet", + "url": "/v1/software/anonet-q4991384" + }, + { + "slug": "anomaly-detection-at-multiple-scales", + "name": "Anomaly Detection at Multiple Scales", + "url": "/v1/software/anomaly-detection-at-multiple-scales" + }, + { + "slug": "another-haskell-compiler", + "name": "Another Haskell Compiler", + "url": "/v1/software/another-haskell-compiler" + }, + { + "slug": "ant-fortune", + "name": "Ant Fortune", + "url": "/v1/software/ant-fortune" + }, + { + "slug": "antconc", + "name": "AntConc", + "url": "/v1/software/antconc" + }, + { + "slug": "antwordprofiler", + "name": "AntWordProfiler", + "url": "/v1/software/antwordprofiler" + }, + { + "slug": "antenna-house-formatter", + "name": "Antenna House Formatter", + "url": "/v1/software/antenna-house-formatter" + }, + { + "slug": "antescofo", + "name": "Antescofo", + "url": "/v1/software/antescofo" + }, + { + "slug": "anthologize", + "name": "Anthologize", + "url": "/v1/software/anthologize" + }, + { + "slug": "anti-virus-comodo", + "name": "Anti Virus Comodo", + "url": "/v1/software/anti-virus-comodo" + }, + { + "slug": "antivirus-gold", + "name": "AntiVirus Gold", + "url": "/v1/software/antivirus-gold" + }, + { + "slug": "antics3d", + "name": "Antics3D", + "url": "/v1/software/antics3d" + }, + { + "slug": "anuvaad", + "name": "Anuvaad", + "url": "/v1/software/anuvaad" + }, + { + "slug": "anvevoice", + "name": "AnveVoice", + "url": "/v1/software/anvevoice" + }, + { + "slug": "anvil", + "name": "Anvil", + "url": "/v1/software/anvil" + }, + { + "slug": "anvil-studio", + "name": "Anvil Studio", + "url": "/v1/software/anvil-studio" + }, + { + "slug": "any-do", + "name": "Any.do", + "url": "/v1/software/any-do" + }, + { + "slug": "anydvd", + "name": "AnyDVD", + "url": "/v1/software/anydvd" + }, + { + "slug": "anydesk", + "name": "AnyDesk", + "url": "/v1/software/anydesk" + }, + { + "slug": "anykode-marilou", + "name": "AnyKode Marilou", + "url": "/v1/software/anykode-marilou" + }, + { + "slug": "anylogic", + "name": "AnyLogic", + "url": "/v1/software/anylogic" + }, + { + "slug": "anyrec-screen-recorder", + "name": "AnyRec Screen Recorder", + "url": "/v1/software/anyrec-screen-recorder" + }, + { + "slug": "anyplace-control", + "name": "Anyplace Control", + "url": "/v1/software/anyplace-control" + }, + { + "slug": "aoki-lapis", + "name": "Aoki Lapis", + "url": "/v1/software/aoki-lapis" + }, + { + "slug": "aona-ai", + "name": "Aona AI", + "url": "/v1/software/aona-ai" + }, + { + "slug": "apache-ldap-api", + "name": "Apache LDAP API", + "url": "/v1/software/apache-ldap-api" + }, + { + "slug": "apache-sedona", + "name": "Apache Sedona", + "url": "/v1/software/apache-sedona" + }, + { + "slug": "apache-module", + "name": "Apache module", + "url": "/v1/software/apache-module" + }, + { + "slug": "apama", + "name": "Apama", + "url": "/v1/software/apama" + }, + { + "slug": "apatar", + "name": "Apatar", + "url": "/v1/software/apatar" + }, + { + "slug": "apertus", + "name": "Apertus", + "url": "/v1/software/apertus" + }, + { + "slug": "aphelion", + "name": "Aphelion", + "url": "/v1/software/aphelion" + }, + { + "slug": "apidog", + "name": "Apidog", + "url": "/v1/software/apidog" + }, + { + "slug": "apigee-api-platform", + "name": "Apigee API Platform", + "url": "/v1/software/apigee-api-platform" + }, + { + "slug": "apigee-open-banking-apix", + "name": "Apigee Open Banking APIx", + "url": "/v1/software/apigee-open-banking-apix" + }, + { + "slug": "apollo", + "name": "Apollo", + "url": "/v1/software/apollo" + }, + { + "slug": "apollo-genome-annotation-editor", + "name": "Apollo Genome Annotation Editor", + "url": "/v1/software/apollo-genome-annotation-editor" + }, + { + "slug": "app-clips", + "name": "App Clips", + "url": "/v1/software/app-clips" + }, + { + "slug": "app-game-kit", + "name": "App Game Kit", + "url": "/v1/software/app-game-kit" + }, + { + "slug": "app-installer", + "name": "App Installer", + "url": "/v1/software/app-installer" + }, + { + "slug": "app-maker", + "name": "App Maker", + "url": "/v1/software/app-maker" + }, + { + "slug": "appblock", + "name": "AppBlock", + "url": "/v1/software/appblock" + }, + { + "slug": "appsheet", + "name": "AppSheet", + "url": "/v1/software/appsheet" + }, + { + "slug": "appzapper", + "name": "AppZapper", + "url": "/v1/software/appzapper" + }, + { + "slug": "appbox-pro", + "name": "Appbox Pro", + "url": "/v1/software/appbox-pro" + }, + { + "slug": "appery-io", + "name": "Appery.io", + "url": "/v1/software/appery-io" + }, + { + "slug": "appium", + "name": "Appium", + "url": "/v1/software/appium" + }, + { + "slug": "apple-advanced-typography", + "name": "Apple Advanced Typography", + "url": "/v1/software/apple-advanced-typography" + }, + { + "slug": "apple-business-basic", + "name": "Apple Business BASIC", + "url": "/v1/software/apple-business-basic" + }, + { + "slug": "apple-chooser", + "name": "Apple Chooser", + "url": "/v1/software/apple-chooser" + }, + { + "slug": "apple-configurator", + "name": "Apple Configurator", + "url": "/v1/software/apple-configurator" + }, + { + "slug": "apple-console", + "name": "Apple Console", + "url": "/v1/software/apple-console" + }, + { + "slug": "apple-creator-studio", + "name": "Apple Creator Studio", + "url": "/v1/software/apple-creator-studio" + }, + { + "slug": "apple-devices", + "name": "Apple Devices", + "url": "/v1/software/apple-devices" + }, + { + "slug": "apple-games", + "name": "Apple Games", + "url": "/v1/software/apple-games" + }, + { + "slug": "apple-hd-sc-setup", + "name": "Apple HD SC Setup", + "url": "/v1/software/apple-hd-sc-setup" + }, + { + "slug": "apple-help-viewer", + "name": "Apple Help Viewer", + "url": "/v1/software/apple-help-viewer" + }, + { + "slug": "apple-homekit", + "name": "Apple HomeKit", + "url": "/v1/software/apple-homekit" + }, + { + "slug": "apple-invites", + "name": "Apple Invites", + "url": "/v1/software/apple-invites" + }, + { + "slug": "apple-open-directory", + "name": "Apple Open Directory", + "url": "/v1/software/apple-open-directory" + }, + { + "slug": "apple-pie-parser", + "name": "Apple Pie Parser", + "url": "/v1/software/apple-pie-parser" + }, + { + "slug": "apple-qadministrator", + "name": "Apple Qadministrator", + "url": "/v1/software/apple-qadministrator" + }, + { + "slug": "apple-qmaster", + "name": "Apple Qmaster", + "url": "/v1/software/apple-qmaster" + }, + { + "slug": "apple-remote-desktop", + "name": "Apple Remote Desktop", + "url": "/v1/software/apple-remote-desktop" + }, + { + "slug": "apple-sandbox", + "name": "Apple Sandbox", + "url": "/v1/software/apple-sandbox" + }, + { + "slug": "apple-software-restore", + "name": "Apple Software Restore", + "url": "/v1/software/apple-software-restore" + }, + { + "slug": "apple-tv-channels", + "name": "Apple TV Channels", + "url": "/v1/software/apple-tv-channels" + }, + { + "slug": "apple-tv-remote", + "name": "Apple TV Remote", + "url": "/v1/software/apple-tv-remote" + }, + { + "slug": "apple-type-services-for-unicode-imaging", + "name": "Apple Type Services for Unicode Imaging", + "url": "/v1/software/apple-type-services-for-unicode-imaging" + }, + { + "slug": "apple-watch", + "name": "Apple Watch", + "url": "/v1/software/apple-watch" + }, + { + "slug": "apple-container", + "name": "Apple container", + "url": "/v1/software/apple-container" + }, + { + "slug": "apple-menu", + "name": "Apple menu", + "url": "/v1/software/apple-menu" + }, + { + "slug": "appleshare-ip-migration", + "name": "AppleShare IP Migration", + "url": "/v1/software/appleshare-ip-migration" + }, + { + "slug": "appletviewer", + "name": "AppletViewer", + "url": "/v1/software/appletviewer" + }, + { + "slug": "application-mapper", + "name": "Application Mapper", + "url": "/v1/software/application-mapper" + }, + { + "slug": "application-request-routing", + "name": "Application Request Routing", + "url": "/v1/software/application-request-routing" + }, + { + "slug": "applixware", + "name": "Applixware", + "url": "/v1/software/applixware" + }, + { + "slug": "apprentice", + "name": "Apprentice", + "url": "/v1/software/apprentice" + }, + { + "slug": "approvalmax", + "name": "ApprovalMax", + "url": "/v1/software/approvalmax" + }, + { + "slug": "april-apl", + "name": "April APL", + "url": "/v1/software/april-apl" + }, + { + "slug": "apriltag", + "name": "AprilTag", + "url": "/v1/software/apriltag" + }, + { + "slug": "apt-cacher-ng", + "name": "Apt-Cacher-NG", + "url": "/v1/software/apt-cacher-ng" + }, + { + "slug": "apt-mirror", + "name": "Apt-Mirror", + "url": "/v1/software/apt-mirror" + }, + { + "slug": "apwal", + "name": "Apwal", + "url": "/v1/software/apwal" + }, + { + "slug": "aqion", + "name": "Aqion", + "url": "/v1/software/aqion" + }, + { + "slug": "aqua-data-studio", + "name": "Aqua Data Studio", + "url": "/v1/software/aqua-data-studio" + }, + { + "slug": "arkaos", + "name": "ArKaos", + "url": "/v1/software/arkaos" + }, + { + "slug": "arccatalog", + "name": "ArcCatalog", + "url": "/v1/software/arccatalog" + }, + { + "slug": "arceditor", + "name": "ArcEditor", + "url": "/v1/software/arceditor" + }, + { + "slug": "arcgis-engine", + "name": "ArcGIS Engine", + "url": "/v1/software/arcgis-engine" + }, + { + "slug": "arcgis-hub", + "name": "ArcGIS Hub", + "url": "/v1/software/arcgis-hub" + }, + { + "slug": "arcgis-server", + "name": "ArcGIS Server", + "url": "/v1/software/arcgis-server" + }, + { + "slug": "arcims", + "name": "ArcIMS", + "url": "/v1/software/arcims" + }, + { + "slug": "arcinfo", + "name": "ArcInfo", + "url": "/v1/software/arcinfo" + }, + { + "slug": "arcmap", + "name": "ArcMap", + "url": "/v1/software/arcmap" + }, + { + "slug": "arcview", + "name": "ArcView", + "url": "/v1/software/arcview" + }, + { + "slug": "archeblade", + "name": "Archeblade", + "url": "/v1/software/archeblade" + }, + { + "slug": "archi", + "name": "Archi", + "url": "/v1/software/archi" + }, + { + "slug": "architxt", + "name": "ArchiTXT", + "url": "/v1/software/architxt" + }, + { + "slug": "archibus", + "name": "Archibus", + "url": "/v1/software/archibus" + }, + { + "slug": "archimedes-geo3d", + "name": "Archimedes Geo3D", + "url": "/v1/software/archimedes-geo3d" + }, + { + "slug": "archipelago", + "name": "Archipelago", + "url": "/v1/software/archipelago" + }, + { + "slug": "architect", + "name": "Architect", + "url": "/v1/software/architect" + }, + { + "slug": "architecture-of-integrated-information-systems", + "name": "Architecture of Integrated Information Systems", + "url": "/v1/software/architecture-of-integrated-information-systems" + }, + { + "slug": "architrave", + "name": "Architrave", + "url": "/v1/software/architrave" + }, + { + "slug": "archive-in-a-box", + "name": "Archive in a Box", + "url": "/v1/software/archive-in-a-box" + }, + { + "slug": "archive-it", + "name": "Archive-It", + "url": "/v1/software/archive-it" + }, + { + "slug": "archivebox", + "name": "ArchiveBox", + "url": "/v1/software/archivebox" + }, + { + "slug": "archiveweb-page", + "name": "ArchiveWeb.page", + "url": "/v1/software/archiveweb-page" + }, + { + "slug": "archivematica", + "name": "Archivematica", + "url": "/v1/software/archivematica" + }, + { + "slug": "arcinsys", + "name": "Arcinsys", + "url": "/v1/software/arcinsys" + }, + { + "slug": "arcplan", + "name": "Arcplan", + "url": "/v1/software/arcplan" + }, + { + "slug": "arcsoft-totalmedia-theatre", + "name": "Arcsoft TotalMedia Theatre", + "url": "/v1/software/arcsoft-totalmedia-theatre" + }, + { + "slug": "arctos", + "name": "Arctos", + "url": "/v1/software/arctos" + }, + { + "slug": "arduino-programming", + "name": "Arduino programming", + "url": "/v1/software/arduino-programming" + }, + { + "slug": "arena", + "name": "Arena", + "url": "/v1/software/arena" + }, + { + "slug": "arges-erp", + "name": "Arges ERP", + "url": "/v1/software/arges-erp" + }, + { + "slug": "argobots", + "name": "Argobots", + "url": "/v1/software/argobots" + }, + { + "slug": "argus", + "name": "Argus", + "url": "/v1/software/argus" + }, + { + "slug": "argusmonitor", + "name": "ArgusMonitor", + "url": "/v1/software/argusmonitor" + }, + { + "slug": "argyll-cms", + "name": "Argyll CMS", + "url": "/v1/software/argyll-cms" + }, + { + "slug": "aria-systems", + "name": "Aria Systems", + "url": "/v1/software/aria-systems" + }, + { + "slug": "arianis", + "name": "Arianis", + "url": "/v1/software/arianis" + }, + { + "slug": "aries-leads", + "name": "Aries Leads", + "url": "/v1/software/aries-leads" + }, + { + "slug": "aristotle-metadata-registry", + "name": "Aristotle Metadata Registry", + "url": "/v1/software/aristotle-metadata-registry" + }, + { + "slug": "ark-compiler", + "name": "Ark Compiler", + "url": "/v1/software/ark-compiler" + }, + { + "slug": "arkivum", + "name": "Arkivum", + "url": "/v1/software/arkivum" + }, + { + "slug": "arlequin", + "name": "Arlequin", + "url": "/v1/software/arlequin" + }, + { + "slug": "armed-bear-common-lisp", + "name": "Armed Bear Common Lisp", + "url": "/v1/software/armed-bear-common-lisp" + }, + { + "slug": "arnis-mc", + "name": "Arnis MC", + "url": "/v1/software/arnis-mc" + }, + { + "slug": "aroundme", + "name": "AroundMe", + "url": "/v1/software/aroundme" + }, + { + "slug": "arraytrack", + "name": "ArrayTrack", + "url": "/v1/software/arraytrack" + }, + { + "slug": "arrivecan", + "name": "ArriveCAN", + "url": "/v1/software/arrivecan" + }, + { + "slug": "arsdigita-community-system", + "name": "ArsDigita Community System", + "url": "/v1/software/arsdigita-community-system" + }, + { + "slug": "art-authority", + "name": "Art Authority", + "url": "/v1/software/art-authority" + }, + { + "slug": "artcam", + "name": "ArtCAM", + "url": "/v1/software/artcam" + }, + { + "slug": "artmoney", + "name": "ArtMoney", + "url": "/v1/software/artmoney" + }, + { + "slug": "arti", + "name": "Arti", + "url": "/v1/software/arti" + }, + { + "slug": "artifex-press", + "name": "Artifex Press", + "url": "/v1/software/artifex-press" + }, + { + "slug": "artioscad", + "name": "ArtiosCAD", + "url": "/v1/software/artioscad" + }, + { + "slug": "artipic", + "name": "Artipic", + "url": "/v1/software/artipic" + }, + { + "slug": "artisteer", + "name": "Artisteer", + "url": "/v1/software/artisteer" + }, + { + "slug": "artisto", + "name": "Artisto", + "url": "/v1/software/artisto" + }, + { + "slug": "artlantis", + "name": "Artlantis", + "url": "/v1/software/artlantis" + }, + { + "slug": "artlas-geomap", + "name": "Artlas / Geomap", + "url": "/v1/software/artlas-geomap" + }, + { + "slug": "aruspix", + "name": "Aruspix", + "url": "/v1/software/aruspix" + }, + { + "slug": "asagi", + "name": "Asagi", + "url": "/v1/software/asagi" + }, + { + "slug": "ashampoo-core-tuner", + "name": "Ashampoo Core Tuner", + "url": "/v1/software/ashampoo-core-tuner" + }, + { + "slug": "ashampoo-snap", + "name": "Ashampoo Snap", + "url": "/v1/software/ashampoo-snap" + }, + { + "slug": "asio-eduerp", + "name": "Asio EduERP", + "url": "/v1/software/asio-eduerp" + }, + { + "slug": "ask-bignews", + "name": "Ask BigNews", + "url": "/v1/software/ask-bignews" + }, + { + "slug": "aspera", + "name": "Aspera", + "url": "/v1/software/aspera" + }, + { + "slug": "asprise-ocr", + "name": "Asprise OCR", + "url": "/v1/software/asprise-ocr" + }, + { + "slug": "asset-bank", + "name": "Asset Bank", + "url": "/v1/software/asset-bank" + }, + { + "slug": "astah", + "name": "Astah*", + "url": "/v1/software/astah" + }, + { + "slug": "astar-network", + "name": "Astar Network", + "url": "/v1/software/astar-network" + }, + { + "slug": "asterisk-gateway-interface", + "name": "Asterisk Gateway Interface", + "url": "/v1/software/asterisk-gateway-interface" + }, + { + "slug": "astra", + "name": "Astra", + "url": "/v1/software/astra" + }, + { + "slug": "astr-e", + "name": "Astrée", + "url": "/v1/software/astr-e" + }, + { + "slug": "asus-webstorage", + "name": "Asus WebStorage", + "url": "/v1/software/asus-webstorage" + }, + { + "slug": "atari-assembler-editor", + "name": "Atari Assembler Editor", + "url": "/v1/software/atari-assembler-editor" + }, + { + "slug": "atari-calculator", + "name": "Atari Calculator", + "url": "/v1/software/atari-calculator" + }, + { + "slug": "atari-message-information-system", + "name": "Atari Message Information System", + "url": "/v1/software/atari-message-information-system" + }, + { + "slug": "atari-st-basic", + "name": "Atari ST BASIC", + "url": "/v1/software/atari-st-basic" + }, + { + "slug": "atari-word-processor", + "name": "Atari Word Processor", + "url": "/v1/software/atari-word-processor" + }, + { + "slug": "atarilab", + "name": "AtariLab", + "url": "/v1/software/atarilab" + }, + { + "slug": "atera-networks", + "name": "Atera Networks", + "url": "/v1/software/atera-networks" + }, + { + "slug": "athenaplus", + "name": "AthenaPlus", + "url": "/v1/software/athenaplus" + }, + { + "slug": "atlas-vpn", + "name": "Atlas VPN", + "url": "/v1/software/atlas-vpn" + }, + { + "slug": "atlasify", + "name": "Atlasify", + "url": "/v1/software/atlasify" + }, + { + "slug": "atlensa", + "name": "Atlensa", + "url": "/v1/software/atlensa" + }, + { + "slug": "atom", + "name": "Atom", + "url": "/v1/software/atom" + }, + { + "slug": "atomicparsley", + "name": "AtomicParsley", + "url": "/v1/software/atomicparsley" + }, + { + "slug": "atomistix-virtual-nanolab", + "name": "Atomistix Virtual NanoLab", + "url": "/v1/software/atomistix-virtual-nanolab" + }, + { + "slug": "attack-surface-analyzer", + "name": "Attack Surface Analyzer", + "url": "/v1/software/attack-surface-analyzer" + }, + { + "slug": "attensity", + "name": "Attensity", + "url": "/v1/software/attensity" + }, + { + "slug": "audex", + "name": "Audex", + "url": "/v1/software/audex" + }, + { + "slug": "audials-one", + "name": "Audials One", + "url": "/v1/software/audials-one" + }, + { + "slug": "audio-midi-setup", + "name": "Audio MIDI Setup", + "url": "/v1/software/audio-midi-setup" + }, + { + "slug": "audio-overload", + "name": "Audio Overload", + "url": "/v1/software/audio-overload" + }, + { + "slug": "audiostreamerscrobbler", + "name": "AudioStreamerScrobbler", + "url": "/v1/software/audiostreamerscrobbler" + }, + { + "slug": "audiobook-cutter-free-edition", + "name": "Audiobook Cutter Free Edition", + "url": "/v1/software/audiobook-cutter-free-edition" + }, + { + "slug": "audiograbber", + "name": "Audiograbber", + "url": "/v1/software/audiograbber" + }, + { + "slug": "audiotool", + "name": "Audiotool", + "url": "/v1/software/audiotool" + }, + { + "slug": "audit-record-generation-and-utilization-system", + "name": "Audit Record Generation and Utilization System", + "url": "/v1/software/audit-record-generation-and-utilization-system" + }, + { + "slug": "auditspark", + "name": "AuditSpark", + "url": "/v1/software/auditspark" + }, + { + "slug": "augur", + "name": "Augur", + "url": "/v1/software/augur" + }, + { + "slug": "aura-sync", + "name": "Aura Sync", + "url": "/v1/software/aura-sync" + }, + { + "slug": "aurora-borealis", + "name": "Aurora Borealis", + "url": "/v1/software/aurora-borealis" + }, + { + "slug": "aurora-center", + "name": "Aurora Center", + "url": "/v1/software/aurora-center" + }, + { + "slug": "aurora-hdr", + "name": "Aurora HDR", + "url": "/v1/software/aurora-hdr" + }, + { + "slug": "auroracoin", + "name": "Auroracoin", + "url": "/v1/software/auroracoin" + }, + { + "slug": "aurous", + "name": "Aurous", + "url": "/v1/software/aurous" + }, + { + "slug": "australian-integrated-forecast-system", + "name": "Australian Integrated Forecast System", + "url": "/v1/software/australian-integrated-forecast-system" + }, + { + "slug": "ausweisapp-q20828705", + "name": "AusweisApp", + "url": "/v1/software/ausweisapp-q20828705" + }, + { + "slug": "ausweisapp", + "name": "AusweisApp", + "url": "/v1/software/ausweisapp" + }, + { + "slug": "authentilens", + "name": "AuthentiLens", + "url": "/v1/software/authentilens" + }, + { + "slug": "authorized-steinway-virtual-concert-grand-piano", + "name": "Authorized Steinway Virtual Concert Grand Piano", + "url": "/v1/software/authorized-steinway-virtual-concert-grand-piano" + }, + { + "slug": "authorship-strategy-a-normative-framework-and-tactical-catalog-for-ai-era-authenticity-inv", + "name": "Authorship Strategy: A Normative Framework and Tactical Catalog for AI-Era Authenticity Inversion, with Empirical Grounding from a Four-Repository Research Ecosystem", + "url": "/v1/software/authorship-strategy-a-normative-framework-and-tactical-catalog-for-ai-era-authenticity-inv" + }, + { + "slug": "auto-latex-equations", + "name": "Auto-Latex Equations", + "url": "/v1/software/auto-latex-equations" + }, + { + "slug": "autocad-architecture", + "name": "AutoCAD Architecture", + "url": "/v1/software/autocad-architecture" + }, + { + "slug": "autocollage-2008", + "name": "AutoCollage 2008", + "url": "/v1/software/autocollage-2008" + }, + { + "slug": "autoit", + "name": "AutoIt", + "url": "/v1/software/autoit" + }, + { + "slug": "automap", + "name": "AutoMap", + "url": "/v1/software/automap" + }, + { + "slug": "autopatcher", + "name": "AutoPatcher", + "url": "/v1/software/autopatcher" + }, + { + "slug": "autoshade", + "name": "AutoShade", + "url": "/v1/software/autoshade" + }, + { + "slug": "autosketch", + "name": "AutoSketch", + "url": "/v1/software/autosketch" + }, + { + "slug": "autostitch", + "name": "AutoStitch", + "url": "/v1/software/autostitch" + }, + { + "slug": "autoturn", + "name": "AutoTURN", + "url": "/v1/software/autoturn" + }, + { + "slug": "autotrack", + "name": "AutoTrack", + "url": "/v1/software/autotrack" + }, + { + "slug": "autotutor", + "name": "AutoTutor", + "url": "/v1/software/autotutor" + }, + { + "slug": "autochem", + "name": "Autochem", + "url": "/v1/software/autochem" + }, + { + "slug": "autodesk-123d", + "name": "Autodesk 123D", + "url": "/v1/software/autodesk-123d" + }, + { + "slug": "autodesk-aliasstudio", + "name": "Autodesk AliasStudio", + "url": "/v1/software/autodesk-aliasstudio" + }, + { + "slug": "autodesk-ecotect-analysis", + "name": "Autodesk Ecotect Analysis", + "url": "/v1/software/autodesk-ecotect-analysis" + }, + { + "slug": "autodesk-motionbuilder", + "name": "Autodesk MotionBuilder", + "url": "/v1/software/autodesk-motionbuilder" + }, + { + "slug": "autodesk-smoke", + "name": "Autodesk Smoke", + "url": "/v1/software/autodesk-smoke" + }, + { + "slug": "autodesk-toxik", + "name": "Autodesk Toxik", + "url": "/v1/software/autodesk-toxik" + }, + { + "slug": "autoflow", + "name": "Autoflow", + "url": "/v1/software/autoflow" + }, + { + "slug": "autofs", + "name": "Autofs", + "url": "/v1/software/autofs" + }, + { + "slug": "autojump", + "name": "Autojump", + "url": "/v1/software/autojump" + }, + { + "slug": "automapa", + "name": "Automapa", + "url": "/v1/software/automapa" + }, + { + "slug": "automate-the-schools", + "name": "Automate the Schools", + "url": "/v1/software/automate-the-schools" + }, + { + "slug": "automated-anatomical-labeling", + "name": "Automated Anatomical Labeling", + "url": "/v1/software/automated-anatomical-labeling" + }, + { + "slug": "automated-customer-account-transfer-service", + "name": "Automated Customer Account Transfer Service", + "url": "/v1/software/automated-customer-account-transfer-service" + }, + { + "slug": "automated-data-inquiry-for-oil-spills", + "name": "Automated Data Inquiry for Oil Spills", + "url": "/v1/software/automated-data-inquiry-for-oil-spills" + }, + { + "slug": "automated-sales-suppression-device", + "name": "Automated sales suppression device", + "url": "/v1/software/automated-sales-suppression-device" + }, + { + "slug": "automatic-storage-management", + "name": "Automatic Storage Management", + "url": "/v1/software/automatic-storage-management" + }, + { + "slug": "automatic-verification-tool-avt", + "name": "Automatic Verification Tool (AVT)", + "url": "/v1/software/automatic-verification-tool-avt" + }, + { + "slug": "automatik-text-reader", + "name": "Automatik Text Reader", + "url": "/v1/software/automatik-text-reader" + }, + { + "slug": "automation-anywhere", + "name": "Automation Anywhere", + "url": "/v1/software/automation-anywhere" + }, + { + "slug": "automation-studio", + "name": "Automation Studio", + "url": "/v1/software/automation-studio" + }, + { + "slug": "automatix", + "name": "Automatix", + "url": "/v1/software/automatix" + }, + { + "slug": "autopano", + "name": "Autopano", + "url": "/v1/software/autopano" + }, + { + "slug": "autoscan", + "name": "Autoscan", + "url": "/v1/software/autoscan" + }, + { + "slug": "autossh", + "name": "Autossh", + "url": "/v1/software/autossh" + }, + { + "slug": "autotrax", + "name": "Autotrax", + "url": "/v1/software/autotrax" + }, + { + "slug": "auxora-ai", + "name": "Auxora.ai", + "url": "/v1/software/auxora-ai" + }, + { + "slug": "auxy-beat-studio", + "name": "Auxy: Beat Studio", + "url": "/v1/software/auxy-beat-studio" + }, + { + "slug": "avalon-the-legend-lives", + "name": "Avalon: The Legend Lives", + "url": "/v1/software/avalon-the-legend-lives" + }, + { + "slug": "avalonia", + "name": "Avalonia", + "url": "/v1/software/avalonia" + }, + { + "slug": "avanna", + "name": "Avanna", + "url": "/v1/software/avanna" + }, + { + "slug": "avare", + "name": "Avare", + "url": "/v1/software/avare" + }, + { + "slug": "avast", + "name": "Avast", + "url": "/v1/software/avast" + }, + { + "slug": "avedesk", + "name": "AveDesk", + "url": "/v1/software/avedesk" + }, + { + "slug": "aventus-protocol", + "name": "Aventus Protocol", + "url": "/v1/software/aventus-protocol" + }, + { + "slug": "aviary", + "name": "Aviary", + "url": "/v1/software/aviary" + }, + { + "slug": "aviatrix3d", + "name": "Aviatrix3D", + "url": "/v1/software/aviatrix3d" + }, + { + "slug": "avid-ds", + "name": "Avid DS", + "url": "/v1/software/avid-ds" + }, + { + "slug": "avira", + "name": "Avira", + "url": "/v1/software/avira" + }, + { + "slug": "avizo", + "name": "Avizo", + "url": "/v1/software/avizo" + }, + { + "slug": "avro-keyboard", + "name": "Avro Keyboard", + "url": "/v1/software/avro-keyboard" + }, + { + "slug": "awomo", + "name": "Awomo", + "url": "/v1/software/awomo" + }, + { + "slug": "axial", + "name": "Axial", + "url": "/v1/software/axial" + }, + { + "slug": "axigen", + "name": "Axigen", + "url": "/v1/software/axigen" + }, + { + "slug": "axon-perform", + "name": "Axon Perform", + "url": "/v1/software/axon-perform" + }, + { + "slug": "axon2013", + "name": "Axon2013", + "url": "/v1/software/axon2013" + }, + { + "slug": "axsjax", + "name": "AxsJAX", + "url": "/v1/software/axsjax" + }, + { + "slug": "ayoba", + "name": "Ayoba", + "url": "/v1/software/ayoba" + }, + { + "slug": "azar", + "name": "Azar", + "url": "/v1/software/azar" + }, + { + "slug": "azendoo", + "name": "Azendoo", + "url": "/v1/software/azendoo" + }, + { + "slug": "azure-virtual-desktop", + "name": "Azure Virtual Desktop", + "url": "/v1/software/azure-virtual-desktop" + }, + { + "slug": "a-oli-platform", + "name": "Aïoli platform", + "url": "/v1/software/a-oli-platform" + }, + { + "slug": "b-step-sequencer", + "name": "B-Step Sequencer", + "url": "/v1/software/b-step-sequencer" + }, + { + "slug": "b4-organ-ii", + "name": "B4 Organ II", + "url": "/v1/software/b4-organ-ii" + }, + { + "slug": "b4x", + "name": "B4X", + "url": "/v1/software/b4x" + }, + { + "slug": "baron", + "name": "BARON", + "url": "/v1/software/baron" + }, + { + "slug": "bas-business-automation-software", + "name": "BAS (Business automation software)", + "url": "/v1/software/bas-business-automation-software" + }, + { + "slug": "bas-bayesian-variable-selection-and-model-averaging-using-bayesian-adaptive-sampling", + "name": "BAS: Bayesian Variable Selection and Model Averaging using Bayesian Adaptive Sampling", + "url": "/v1/software/bas-bayesian-variable-selection-and-model-averaging-using-bayesian-adaptive-sampling" + }, + { + "slug": "bashlite", + "name": "BASHLITE", + "url": "/v1/software/bashlite" + }, + { + "slug": "basic-a", + "name": "BASIC A+", + "url": "/v1/software/basic-a" + }, + { + "slug": "basic-11", + "name": "BASIC-11", + "url": "/v1/software/basic-11" + }, + { + "slug": "basic-f", + "name": "BASIC-F", + "url": "/v1/software/basic-f" + }, + { + "slug": "basic-g", + "name": "BASIC-G", + "url": "/v1/software/basic-g" + }, + { + "slug": "basic-i", + "name": "BASIC-I", + "url": "/v1/software/basic-i" + }, + { + "slug": "bass", + "name": "BASS", + "url": "/v1/software/bass" + }, + { + "slug": "bali-phy", + "name": "BAli-Phy", + "url": "/v1/software/bali-phy" + }, + { + "slug": "bbc-radio-explorer", + "name": "BBC Radio Explorer", + "url": "/v1/software/bbc-radio-explorer" + }, + { + "slug": "bbc-store", + "name": "BBC Store", + "url": "/v1/software/bbc-store" + }, + { + "slug": "bbedit-lite", + "name": "BBEdit Lite", + "url": "/v1/software/bbedit-lite" + }, + { + "slug": "bbm-enterprise", + "name": "BBM Enterprise", + "url": "/v1/software/bbm-enterprise" + }, + { + "slug": "bbt-backbone-thesaurus", + "name": "BBT - BackBone Thesaurus", + "url": "/v1/software/bbt-backbone-thesaurus" + }, + { + "slug": "bcdedit", + "name": "BCDEdit", + "url": "/v1/software/bcdedit" + }, + { + "slug": "bdii", + "name": "BDII", + "url": "/v1/software/bdii" + }, + { + "slug": "bdv-notepad", + "name": "BDV Notepad", + "url": "/v1/software/bdv-notepad" + }, + { + "slug": "beast-2", + "name": "BEAST 2", + "url": "/v1/software/beast-2" + }, + { + "slug": "bedpostx", + "name": "BEDPOSTX", + "url": "/v1/software/bedpostx" + }, + { + "slug": "bedtools", + "name": "BEDtools", + "url": "/v1/software/bedtools" + }, + { + "slug": "bgs-groundhog-desktop", + "name": "BGS Groundhog Desktop", + "url": "/v1/software/bgs-groundhog-desktop" + }, + { + "slug": "bibcon", + "name": "BIBCON", + "url": "/v1/software/bibcon" + }, + { + "slug": "bic-platform", + "name": "BIC Platform", + "url": "/v1/software/bic-platform" + }, + { + "slug": "bimx", + "name": "BIMx", + "url": "/v1/software/bimx" + }, + { + "slug": "bios", + "name": "BIOS", + "url": "/v1/software/bios" + }, + { + "slug": "bioszen", + "name": "BIOSZEN", + "url": "/v1/software/bioszen" + }, + { + "slug": "bird-internet-routing-daemon", + "name": "BIRD Internet Routing Daemon", + "url": "/v1/software/bird-internet-routing-daemon" + }, + { + "slug": "bitext", + "name": "BITEXT", + "url": "/v1/software/bitext" + }, + { + "slug": "bitalino", + "name": "BITalino", + "url": "/v1/software/bitalino" + }, + { + "slug": "bizhard", + "name": "BIZHARD", + "url": "/v1/software/bizhard" + }, + { + "slug": "blake3", + "name": "BLAKE3", + "url": "/v1/software/blake3" + }, + { + "slug": "blasfeo", + "name": "BLASFEO", + "url": "/v1/software/blasfeo" + }, + { + "slug": "blast-model-checker", + "name": "BLAST model checker", + "url": "/v1/software/blast-model-checker" + }, + { + "slug": "blat", + "name": "BLAT", + "url": "/v1/software/blat" + }, + { + "slug": "blindspot", + "name": "BLINDSPOT", + "url": "/v1/software/blindspot" + }, + { + "slug": "blis", + "name": "BLIS", + "url": "/v1/software/blis" + }, + { + "slug": "bllip-parser", + "name": "BLLIP Parser", + "url": "/v1/software/bllip-parser" + }, + { + "slug": "bmc-control-m", + "name": "BMC Control-M", + "url": "/v1/software/bmc-control-m" + }, + { + "slug": "bmc-remedy-action-request-system", + "name": "BMC Remedy Action Request System", + "url": "/v1/software/bmc-remedy-action-request-system" + }, + { + "slug": "bmdfm", + "name": "BMDFM", + "url": "/v1/software/bmdfm" + }, + { + "slug": "bmdp", + "name": "BMDP", + "url": "/v1/software/bmdp" + }, + { + "slug": "bnaber", + "name": "BNAber", + "url": "/v1/software/bnaber" + }, + { + "slug": "bny-nexen", + "name": "BNY NEXEN", + "url": "/v1/software/bny-nexen" + }, + { + "slug": "bondi", + "name": "BONDI", + "url": "/v1/software/bondi" + }, + { + "slug": "bookit", + "name": "BOOKIT", + "url": "/v1/software/bookit" + }, + { + "slug": "borg-ai-platform", + "name": "BORG (AI platform)", + "url": "/v1/software/borg-ai-platform" + }, + { + "slug": "boris", + "name": "BORIS", + "url": "/v1/software/boris" + }, + { + "slug": "boss", + "name": "BOSS", + "url": "/v1/software/boss" + }, + { + "slug": "botw-cross-platform-mod-loader", + "name": "BOTW Cross-Platform Mod Loader", + "url": "/v1/software/botw-cross-platform-mod-loader" + }, + { + "slug": "bpjscan", + "name": "BPJScan", + "url": "/v1/software/bpjscan" + }, + { + "slug": "bps-biodiversity-performance-score", + "name": "BPS — Biodiversity Performance Score", + "url": "/v1/software/bps-biodiversity-performance-score" + }, + { + "slug": "bravo", + "name": "BRAVO", + "url": "/v1/software/bravo" + }, + { + "slug": "brcks", + "name": "BRCKS", + "url": "/v1/software/brcks" + }, + { + "slug": "brfplus", + "name": "BRFplus", + "url": "/v1/software/brfplus" + }, + { + "slug": "bs-7925-1", + "name": "BS 7925-1", + "url": "/v1/software/bs-7925-1" + }, + { + "slug": "bs-7925-2", + "name": "BS 7925-2", + "url": "/v1/software/bs-7925-2" + }, + { + "slug": "bsch", + "name": "BSch", + "url": "/v1/software/bsch" + }, + { + "slug": "btguard", + "name": "BTGuard", + "url": "/v1/software/btguard" + }, + { + "slug": "bv4-1", + "name": "BV4.1", + "url": "/v1/software/bv4-1" + }, + { + "slug": "babelfy", + "name": "Babelfy", + "url": "/v1/software/babelfy" + }, + { + "slug": "babelgum", + "name": "Babelgum", + "url": "/v1/software/babelgum" + }, + { + "slug": "babeltrace", + "name": "Babeltrace", + "url": "/v1/software/babeltrace" + }, + { + "slug": "baby-food-allergy-tracker", + "name": "Baby Food & Allergy Tracker", + "url": "/v1/software/baby-food-allergy-tracker" + }, + { + "slug": "babylon", + "name": "Babylon", + "url": "/v1/software/babylon" + }, + { + "slug": "backblaze", + "name": "Backblaze", + "url": "/v1/software/backblaze" + }, + { + "slug": "backbone-one", + "name": "Backbone One", + "url": "/v1/software/backbone-one" + }, + { + "slug": "backgammon", + "name": "Backgammon", + "url": "/v1/software/backgammon" + }, + { + "slug": "backtrack", + "name": "Backtrack", + "url": "/v1/software/backtrack" + }, + { + "slug": "backup-express", + "name": "Backup Express", + "url": "/v1/software/backup-express" + }, + { + "slug": "backupbluray", + "name": "BackupBluRay", + "url": "/v1/software/backupbluray" + }, + { + "slug": "baicizhan", + "name": "Baicizhan", + "url": "/v1/software/baicizhan" + }, + { + "slug": "baidu-browser", + "name": "Baidu Browser", + "url": "/v1/software/baidu-browser" + }, + { + "slug": "bakeprofit", + "name": "BakeProfit", + "url": "/v1/software/bakeprofit" + }, + { + "slug": "bakesale", + "name": "BakeSale", + "url": "/v1/software/bakesale" + }, + { + "slug": "bale", + "name": "Bale", + "url": "/v1/software/bale" + }, + { + "slug": "balsamiq", + "name": "Balsamiq", + "url": "/v1/software/balsamiq" + }, + { + "slug": "bambi", + "name": "Bambi", + "url": "/v1/software/bambi" + }, + { + "slug": "bank-statement-pdf-converter", + "name": "Bank Statement PDF Converter", + "url": "/v1/software/bank-statement-pdf-converter" + }, + { + "slug": "bank-street-music-writer", + "name": "Bank Street Music Writer", + "url": "/v1/software/bank-street-music-writer" + }, + { + "slug": "banktivity", + "name": "Banktivity", + "url": "/v1/software/banktivity" + }, + { + "slug": "banner-mania", + "name": "Banner Mania", + "url": "/v1/software/banner-mania" + }, + { + "slug": "baob-xia", + "name": "Baobáxia", + "url": "/v1/software/baob-xia" + }, + { + "slug": "barbie-mermaid-adventure", + "name": "Barbie Mermaid Adventure", + "url": "/v1/software/barbie-mermaid-adventure" + }, + { + "slug": "bartpe", + "name": "BartPE", + "url": "/v1/software/bartpe" + }, + { + "slug": "bartok", + "name": "Bartok", + "url": "/v1/software/bartok" + }, + { + "slug": "base4", + "name": "Base4", + "url": "/v1/software/base4" + }, + { + "slug": "basecamp-classic", + "name": "Basecamp Classic", + "url": "/v1/software/basecamp-classic" + }, + { + "slug": "baserow", + "name": "Baserow", + "url": "/v1/software/baserow" + }, + { + "slug": "bashburn", + "name": "BashBurn", + "url": "/v1/software/bashburn" + }, + { + "slug": "basic-support-for-cooperative-work", + "name": "Basic Support for Cooperative Work", + "url": "/v1/software/basic-support-for-cooperative-work" + }, + { + "slug": "basis", + "name": "Basis", + "url": "/v1/software/basis" + }, + { + "slug": "batch-monitor", + "name": "Batch Monitor", + "url": "/v1/software/batch-monitor" + }, + { + "slug": "batchgeo", + "name": "BatchGeo", + "url": "/v1/software/batchgeo" + }, + { + "slug": "batchpipeworks", + "name": "BatchPipeWorks", + "url": "/v1/software/batchpipeworks" + }, + { + "slug": "batchpipes", + "name": "BatchPipes", + "url": "/v1/software/batchpipes" + }, + { + "slug": "battmo", + "name": "BattMo", + "url": "/v1/software/battmo" + }, + { + "slug": "battlezone-98-redux", + "name": "Battlezone 98 Redux", + "url": "/v1/software/battlezone-98-redux" + }, + { + "slug": "baudline", + "name": "Baudline", + "url": "/v1/software/baudline" + }, + { + "slug": "bavar-t", + "name": "BavAR[t]", + "url": "/v1/software/bavar-t" + }, + { + "slug": "baypoint-ai", + "name": "BayPoint AI", + "url": "/v1/software/baypoint-ai" + }, + { + "slug": "behafizh", + "name": "BeHafizh", + "url": "/v1/software/behafizh" + }, + { + "slug": "beacon-designer", + "name": "Beacon designer", + "url": "/v1/software/beacon-designer" + }, + { + "slug": "bearshare", + "name": "BearShare", + "url": "/v1/software/bearshare" + }, + { + "slug": "bearnie", + "name": "Bearnie", + "url": "/v1/software/bearnie" + }, + { + "slug": "beartooth-radio", + "name": "Beartooth Radio", + "url": "/v1/software/beartooth-radio" + }, + { + "slug": "beast", + "name": "Beast", + "url": "/v1/software/beast" + }, + { + "slug": "beatroot", + "name": "BeatRoot", + "url": "/v1/software/beatroot" + }, + { + "slug": "bedoma", + "name": "Bedoma", + "url": "/v1/software/bedoma" + }, + { + "slug": "beegfs", + "name": "BeeGFS", + "url": "/v1/software/beegfs" + }, + { + "slug": "beesafe", + "name": "BeeSafe", + "url": "/v1/software/beesafe" + }, + { + "slug": "beetalk", + "name": "BeeTalk", + "url": "/v1/software/beetalk" + }, + { + "slug": "beebole", + "name": "Beebole", + "url": "/v1/software/beebole" + }, + { + "slug": "beeceptor", + "name": "Beeceptor", + "url": "/v1/software/beeceptor" + }, + { + "slug": "beepcar", + "name": "BeepCar", + "url": "/v1/software/beepcar" + }, + { + "slug": "beerwin-s-plainhtml", + "name": "Beerwin’s PlainHTML", + "url": "/v1/software/beerwin-s-plainhtml" + }, + { + "slug": "beetle-buggin", + "name": "Beetle Buggin", + "url": "/v1/software/beetle-buggin" + }, + { + "slug": "beli", + "name": "Beli", + "url": "/v1/software/beli" + }, + { + "slug": "belkart-pay", + "name": "Belkart Pay", + "url": "/v1/software/belkart-pay" + }, + { + "slug": "bellerophon", + "name": "Bellerophon", + "url": "/v1/software/bellerophon" + }, + { + "slug": "ben-and-ed", + "name": "Ben and Ed", + "url": "/v1/software/ben-and-ed" + }, + { + "slug": "benchit", + "name": "BenchIT", + "url": "/v1/software/benchit" + }, + { + "slug": "benmap", + "name": "Benmap", + "url": "/v1/software/benmap" + }, + { + "slug": "berkeley-madonna", + "name": "Berkeley Madonna", + "url": "/v1/software/berkeley-madonna" + }, + { + "slug": "berkeley-parser", + "name": "Berkeley Parser", + "url": "/v1/software/berkeley-parser" + }, + { + "slug": "bespokesynth", + "name": "BespokeSynth", + "url": "/v1/software/bespokesynth" + }, + { + "slug": "bestmarc", + "name": "BestMARC", + "url": "/v1/software/bestmarc" + }, + { + "slug": "better-safe-than-sorry", + "name": "Better-Safe-Than-Sorry", + "url": "/v1/software/better-safe-than-sorry" + }, + { + "slug": "beyond-compare", + "name": "Beyond Compare", + "url": "/v1/software/beyond-compare" + }, + { + "slug": "beyond-english", + "name": "Beyond English", + "url": "/v1/software/beyond-english" + }, + { + "slug": "beyond-maths", + "name": "Beyond Maths", + "url": "/v1/software/beyond-maths" + }, + { + "slug": "beyond-science", + "name": "Beyond Science", + "url": "/v1/software/beyond-science" + }, + { + "slug": "beyond-tv", + "name": "Beyond TV", + "url": "/v1/software/beyond-tv" + }, + { + "slug": "beyz", + "name": "Beyz", + "url": "/v1/software/beyz" + }, + { + "slug": "bhuvan", + "name": "Bhuvan", + "url": "/v1/software/bhuvan" + }, + { + "slug": "bibi", + "name": "BiBi", + "url": "/v1/software/bibi" + }, + { + "slug": "biasly", + "name": "Biasly", + "url": "/v1/software/biasly" + }, + { + "slug": "bibapp", + "name": "BibApp", + "url": "/v1/software/bibapp" + }, + { + "slug": "bibexcel", + "name": "BibExcel", + "url": "/v1/software/bibexcel" + }, + { + "slug": "bibtex", + "name": "BibTeX", + "url": "/v1/software/bibtex" + }, + { + "slug": "bibtex4word", + "name": "BibTeX4Word", + "url": "/v1/software/bibtex4word" + }, + { + "slug": "bibwiki", + "name": "BibWiki", + "url": "/v1/software/bibwiki" + }, + { + "slug": "biber", + "name": "Biber", + "url": "/v1/software/biber" + }, + { + "slug": "bibliogo", + "name": "Bibliogo", + "url": "/v1/software/bibliogo" + }, + { + "slug": "bibliography-doing-digital-humanities", + "name": "Bibliography Doing Digital Humanities", + "url": "/v1/software/bibliography-doing-digital-humanities" + }, + { + "slug": "bibliometrix", + "name": "Bibliometrix", + "url": "/v1/software/bibliometrix" + }, + { + "slug": "biblioteca-anatomica", + "name": "Biblioteca anatomica", + "url": "/v1/software/biblioteca-anatomica" + }, + { + "slug": "bicom-systems", + "name": "Bicom Systems", + "url": "/v1/software/bicom-systems" + }, + { + "slug": "bielik", + "name": "Bielik", + "url": "/v1/software/bielik" + }, + { + "slug": "bifrost", + "name": "Bifrost", + "url": "/v1/software/bifrost" + }, + { + "slug": "big-al-software", + "name": "Big Al (software)", + "url": "/v1/software/big-al-software" + }, + { + "slug": "big-brother", + "name": "Big Brother", + "url": "/v1/software/big-brother" + }, + { + "slug": "big-sister", + "name": "Big Sister", + "url": "/v1/software/big-sister" + }, + { + "slug": "bigcouch", + "name": "BigCouch", + "url": "/v1/software/bigcouch" + }, + { + "slug": "bigdl", + "name": "BigDL", + "url": "/v1/software/bigdl" + }, + { + "slug": "bigdataviewer", + "name": "BigDataViewer", + "url": "/v1/software/bigdataviewer" + }, + { + "slug": "bigmarker", + "name": "BigMarker", + "url": "/v1/software/bigmarker" + }, + { + "slug": "bigquery", + "name": "BigQuery", + "url": "/v1/software/bigquery" + }, + { + "slug": "bigquery-data-transfer-service", + "name": "BigQuery Data Transfer Service", + "url": "/v1/software/bigquery-data-transfer-service" + }, + { + "slug": "bijoy-keyboard", + "name": "Bijoy Keyboard", + "url": "/v1/software/bijoy-keyboard" + }, + { + "slug": "bilbao-crystallographic-server", + "name": "Bilbao Crystallographic Server", + "url": "/v1/software/bilbao-crystallographic-server" + }, + { + "slug": "bilby", + "name": "Bilby", + "url": "/v1/software/bilby" + }, + { + "slug": "bintube", + "name": "BinTube", + "url": "/v1/software/bintube" + }, + { + "slug": "binary-ninja", + "name": "Binary Ninja", + "url": "/v1/software/binary-ninja" + }, + { + "slug": "bing-maps-platform", + "name": "Bing Maps Platform", + "url": "/v1/software/bing-maps-platform" + }, + { + "slug": "bing-mobile", + "name": "Bing Mobile", + "url": "/v1/software/bing-mobile" + }, + { + "slug": "bing-product-upload", + "name": "Bing Product Upload", + "url": "/v1/software/bing-product-upload" + }, + { + "slug": "bing-shopping", + "name": "Bing Shopping", + "url": "/v1/software/bing-shopping" + }, + { + "slug": "bing-vision", + "name": "Bing Vision", + "url": "/v1/software/bing-vision" + }, + { + "slug": "bing-xrank", + "name": "Bing xRank", + "url": "/v1/software/bing-xrank" + }, + { + "slug": "biobike", + "name": "BioBIKE", + "url": "/v1/software/biobike" + }, + { + "slug": "biocompute", + "name": "BioCompute", + "url": "/v1/software/biocompute" + }, + { + "slug": "bioextract", + "name": "BioExtract", + "url": "/v1/software/bioextract" + }, + { + "slug": "biolinux", + "name": "BioLinux", + "url": "/v1/software/biolinux" + }, + { + "slug": "biomate-ai", + "name": "BioMate AI", + "url": "/v1/software/biomate-ai" + }, + { + "slug": "biomodels-database", + "name": "BioModels Database", + "url": "/v1/software/biomodels-database" + }, + { + "slug": "bionumerics", + "name": "BioNumerics", + "url": "/v1/software/bionumerics" + }, + { + "slug": "biophp", + "name": "BioPHP", + "url": "/v1/software/biophp" + }, + { + "slug": "bioperl", + "name": "BioPerl", + "url": "/v1/software/bioperl" + }, + { + "slug": "bioconductor", + "name": "Bioconductor", + "url": "/v1/software/bioconductor" + }, + { + "slug": "bioconductor-build-system", + "name": "Bioconductor Build System", + "url": "/v1/software/bioconductor-build-system" + }, + { + "slug": "bioinformatic-harvester", + "name": "Bioinformatic Harvester", + "url": "/v1/software/bioinformatic-harvester" + }, + { + "slug": "biomappings", + "name": "Biomappings", + "url": "/v1/software/biomappings" + }, + { + "slug": "biomolecular-object-network-databank", + "name": "Biomolecular Object Network Databank", + "url": "/v1/software/biomolecular-object-network-databank" + }, + { + "slug": "bioscope", + "name": "Bioscope+", + "url": "/v1/software/bioscope" + }, + { + "slug": "bird", + "name": "Bird", + "url": "/v1/software/bird" + }, + { + "slug": "bisque", + "name": "BisQue", + "url": "/v1/software/bisque" + }, + { + "slug": "bitdefender-trafficlight", + "name": "BitDefender TrafficLight", + "url": "/v1/software/bitdefender-trafficlight" + }, + { + "slug": "bitfunnel", + "name": "BitFunnel", + "url": "/v1/software/bitfunnel" + }, + { + "slug": "bitrocket", + "name": "BitRocket", + "url": "/v1/software/bitrocket" + }, + { + "slug": "bitshares", + "name": "BitShares", + "url": "/v1/software/bitshares" + }, + { + "slug": "bittorious", + "name": "BitTorious", + "url": "/v1/software/bittorious" + }, + { + "slug": "bitblinder", + "name": "Bitblinder", + "url": "/v1/software/bitblinder" + }, + { + "slug": "bitbucket-data-center", + "name": "Bitbucket Data Center", + "url": "/v1/software/bitbucket-data-center" + }, + { + "slug": "bitcache", + "name": "Bitcache", + "url": "/v1/software/bitcache" + }, + { + "slug": "bitcasa", + "name": "Bitcasa", + "url": "/v1/software/bitcasa" + }, + { + "slug": "bitcoin-classic", + "name": "Bitcoin Classic", + "url": "/v1/software/bitcoin-classic" + }, + { + "slug": "bitcoin-unlimited", + "name": "Bitcoin Unlimited", + "url": "/v1/software/bitcoin-unlimited" + }, + { + "slug": "bitcoin-xt", + "name": "Bitcoin XT", + "url": "/v1/software/bitcoin-xt" + }, + { + "slug": "bitdefender-antivirus", + "name": "Bitdefender Antivirus", + "url": "/v1/software/bitdefender-antivirus" + }, + { + "slug": "bitdefender-internet-security", + "name": "Bitdefender Internet Security", + "url": "/v1/software/bitdefender-internet-security" + }, + { + "slug": "bitextor", + "name": "Bitextor", + "url": "/v1/software/bitextor" + }, + { + "slug": "bitmarkets", + "name": "Bitmarkets", + "url": "/v1/software/bitmarkets" + }, + { + "slug": "bitmask", + "name": "Bitmask", + "url": "/v1/software/bitmask" + }, + { + "slug": "bitmoji", + "name": "Bitmoji", + "url": "/v1/software/bitmoji" + }, + { + "slug": "bitport", + "name": "Bitport", + "url": "/v1/software/bitport" + }, + { + "slug": "bits-on-wheels", + "name": "Bits on Wheels", + "url": "/v1/software/bits-on-wheels" + }, + { + "slug": "bixby-vision", + "name": "Bixby Vision", + "url": "/v1/software/bixby-vision" + }, + { + "slug": "bizagi", + "name": "Bizagi", + "url": "/v1/software/bizagi" + }, + { + "slug": "bizzdesign-architect", + "name": "Bizzdesign Architect", + "url": "/v1/software/bizzdesign-architect" + }, + { + "slug": "bkav", + "name": "Bkav", + "url": "/v1/software/bkav" + }, + { + "slug": "blackberry-enterprise-server", + "name": "BlackBerry Enterprise Server", + "url": "/v1/software/blackberry-enterprise-server" + }, + { + "slug": "blackberry-world", + "name": "BlackBerry World", + "url": "/v1/software/blackberry-world" + }, + { + "slug": "blackhole", + "name": "BlackHole", + "url": "/v1/software/blackhole" + }, + { + "slug": "blackpixel-ai", + "name": "BlackPixel AI", + "url": "/v1/software/blackpixel-ai" + }, + { + "slug": "blackbird", + "name": "Blackbird", + "url": "/v1/software/blackbird" + }, + { + "slug": "blackboard-scholar", + "name": "Blackboard Scholar", + "url": "/v1/software/blackboard-scholar" + }, + { + "slug": "blackfire-profiler", + "name": "Blackfire Profiler", + "url": "/v1/software/blackfire-profiler" + }, + { + "slug": "blast2go", + "name": "Blast2GO", + "url": "/v1/software/blast2go" + }, + { + "slug": "blazeblogger", + "name": "BlazeBlogger", + "url": "/v1/software/blazeblogger" + }, + { + "slug": "blazemeter", + "name": "BlazeMeter", + "url": "/v1/software/blazemeter" + }, + { + "slug": "bleemcast", + "name": "Bleemcast!", + "url": "/v1/software/bleemcast" + }, + { + "slug": "blender-3-0-0", + "name": "Blender 3.0.0", + "url": "/v1/software/blender-3-0-0" + }, + { + "slug": "blender-publisher", + "name": "Blender Publisher", + "url": "/v1/software/blender-publisher" + }, + { + "slug": "blendr", + "name": "Blendr", + "url": "/v1/software/blendr" + }, + { + "slug": "blixnex", + "name": "BlixNex", + "url": "/v1/software/blixnex" + }, + { + "slug": "blogtk", + "name": "BloGTK", + "url": "/v1/software/blogtk" + }, + { + "slug": "blockstack", + "name": "Blockstack", + "url": "/v1/software/blockstack" + }, + { + "slug": "blocul-meu", + "name": "Blocul Meu", + "url": "/v1/software/blocul-meu" + }, + { + "slug": "blog-analysis-toolkit-bat", + "name": "Blog Analysis Toolkit (BAT)", + "url": "/v1/software/blog-analysis-toolkit-bat" + }, + { + "slug": "bloglovin", + "name": "Bloglovin'", + "url": "/v1/software/bloglovin" + }, + { + "slug": "bloodspilot-client", + "name": "BloodsPilot Client", + "url": "/v1/software/bloodspilot-client" + }, + { + "slug": "bloodspilot-xpilot-fxi-server", + "name": "BloodsPilot XPilot fxi Server", + "url": "/v1/software/bloodspilot-xpilot-fxi-server" + }, + { + "slug": "bloom", + "name": "Bloom", + "url": "/v1/software/bloom" + }, + { + "slug": "bloom-fm", + "name": "Bloom.fm", + "url": "/v1/software/bloom-fm" + }, + { + "slug": "bloomba", + "name": "Bloomba", + "url": "/v1/software/bloomba" + }, + { + "slug": "blue-moon-rendering-tools", + "name": "Blue Moon Rendering Tools", + "url": "/v1/software/blue-moon-rendering-tools" + }, + { + "slug": "bluedragon", + "name": "BlueDragon", + "url": "/v1/software/bluedragon" + }, + { + "slug": "blueinvoice", + "name": "BlueInvoice", + "url": "/v1/software/blueinvoice" + }, + { + "slug": "bluesky-statistics", + "name": "BlueSky Statistics", + "url": "/v1/software/bluesky-statistics" + }, + { + "slug": "bluesoleil", + "name": "BlueSoleil", + "url": "/v1/software/bluesoleil" + }, + { + "slug": "bluebeam-revu", + "name": "Bluebeam Revu", + "url": "/v1/software/bluebeam-revu" + }, + { + "slug": "bluenog", + "name": "Bluenog", + "url": "/v1/software/bluenog" + }, + { + "slug": "bluetail", + "name": "Bluetail", + "url": "/v1/software/bluetail" + }, + { + "slug": "bluetooth-file-exchange", + "name": "Bluetooth File Exchange", + "url": "/v1/software/bluetooth-file-exchange" + }, + { + "slug": "boats-animator", + "name": "Boats Animator", + "url": "/v1/software/boats-animator" + }, + { + "slug": "bob-came-in-pieces", + "name": "Bob Came in Pieces", + "url": "/v1/software/bob-came-in-pieces" + }, + { + "slug": "bodypaint-3d", + "name": "BodyPaint 3D", + "url": "/v1/software/bodypaint-3d" + }, + { + "slug": "bolt-q28452141", + "name": "Bolt", + "url": "/v1/software/bolt-q28452141" + }, + { + "slug": "bolt", + "name": "Bolt", + "url": "/v1/software/bolt" + }, + { + "slug": "bombusmod", + "name": "Bombusmod", + "url": "/v1/software/bombusmod" + }, + { + "slug": "bomgar", + "name": "Bomgar", + "url": "/v1/software/bomgar" + }, + { + "slug": "bonpatron", + "name": "BonPatron", + "url": "/v1/software/bonpatron" + }, + { + "slug": "bonanza", + "name": "Bonanza", + "url": "/v1/software/bonanza" + }, + { + "slug": "bonapart", + "name": "Bonapart", + "url": "/v1/software/bonapart" + }, + { + "slug": "bonjour", + "name": "Bonjour", + "url": "/v1/software/bonjour" + }, + { + "slug": "bontq", + "name": "Bontq", + "url": "/v1/software/bontq" + }, + { + "slug": "bonzi-buddy", + "name": "Bonzi Buddy", + "url": "/v1/software/bonzi-buddy" + }, + { + "slug": "bookdoc", + "name": "BookDoc", + "url": "/v1/software/bookdoc" + }, + { + "slug": "booklamp", + "name": "BookLamp", + "url": "/v1/software/booklamp" + }, + { + "slug": "booklamp-labs-sentiment-viewer", + "name": "BookLamp Labs: Sentiment Viewer", + "url": "/v1/software/booklamp-labs-sentiment-viewer" + }, + { + "slug": "booklamp-labs-storydna-viewer", + "name": "BookLamp Labs: StoryDNA Viewer", + "url": "/v1/software/booklamp-labs-storydna-viewer" + }, + { + "slug": "booklamp-labs-stream-graph-viewer", + "name": "BookLamp Labs: Stream Graph Viewer", + "url": "/v1/software/booklamp-labs-stream-graph-viewer" + }, + { + "slug": "booklamp-labs-suggestion-viewer", + "name": "BookLamp Labs: Suggestion Viewer", + "url": "/v1/software/booklamp-labs-suggestion-viewer" + }, + { + "slug": "booksmart", + "name": "BookSmart", + "url": "/v1/software/booksmart" + }, + { + "slug": "bookly", + "name": "Bookly", + "url": "/v1/software/bookly" + }, + { + "slug": "bookmaker", + "name": "Bookmaker", + "url": "/v1/software/bookmaker" + }, + { + "slug": "bookmarksync", + "name": "BookmarkSync", + "url": "/v1/software/bookmarksync" + }, + { + "slug": "bookworm", + "name": "Bookworm", + "url": "/v1/software/bookworm" + }, + { + "slug": "boomerang", + "name": "Boomerang", + "url": "/v1/software/boomerang" + }, + { + "slug": "boost-json", + "name": "Boost.JSON", + "url": "/v1/software/boost-json" + }, + { + "slug": "boot-camp", + "name": "Boot Camp", + "url": "/v1/software/boot-camp" + }, + { + "slug": "bootvis", + "name": "BootVis", + "url": "/v1/software/bootvis" + }, + { + "slug": "bootman", + "name": "Bootman", + "url": "/v1/software/bootman" + }, + { + "slug": "bootstrapcdn", + "name": "BootstrapCDN", + "url": "/v1/software/bootstrapcdn" + }, + { + "slug": "bop-a-bet", + "name": "Bop-A-Bet", + "url": "/v1/software/bop-a-bet" + }, + { + "slug": "borland-enterprise-server", + "name": "Borland Enterprise Server", + "url": "/v1/software/borland-enterprise-server" + }, + { + "slug": "borland-reflex", + "name": "Borland Reflex", + "url": "/v1/software/borland-reflex" + }, + { + "slug": "bossware", + "name": "Bossware", + "url": "/v1/software/bossware" + }, + { + "slug": "bothunter", + "name": "Bothunter", + "url": "/v1/software/bothunter" + }, + { + "slug": "botster", + "name": "Botster", + "url": "/v1/software/botster" + }, + { + "slug": "boundschecker", + "name": "BoundsChecker", + "url": "/v1/software/boundschecker" + }, + { + "slug": "boxely", + "name": "Boxely", + "url": "/v1/software/boxely" + }, + { + "slug": "boxful", + "name": "Boxful", + "url": "/v1/software/boxful" + }, + { + "slug": "boycottadvance", + "name": "BoycottAdvance", + "url": "/v1/software/boycottadvance" + }, + { + "slug": "brmsx", + "name": "BrMSX", + "url": "/v1/software/brmsx" + }, + { + "slug": "brainflow-ai", + "name": "BrainFlow AI", + "url": "/v1/software/brainflow-ai" + }, + { + "slug": "brainvoyager", + "name": "BrainVoyager", + "url": "/v1/software/brainvoyager" + }, + { + "slug": "brainstorm", + "name": "Brainstorm", + "url": "/v1/software/brainstorm" + }, + { + "slug": "brakeman", + "name": "Brakeman", + "url": "/v1/software/brakeman" + }, + { + "slug": "branch-metrics", + "name": "Branch Metrics", + "url": "/v1/software/branch-metrics" + }, + { + "slug": "braveheart", + "name": "Braveheart", + "url": "/v1/software/braveheart" + }, + { + "slug": "brazil-r-s", + "name": "Brazil R/S", + "url": "/v1/software/brazil-r-s" + }, + { + "slug": "breakdown", + "name": "Breakdown", + "url": "/v1/software/breakdown" + }, + { + "slug": "breezi", + "name": "Breezi", + "url": "/v1/software/breezi" + }, + { + "slug": "brekeke-pbx", + "name": "Brekeke PBX", + "url": "/v1/software/brekeke-pbx" + }, + { + "slug": "brekeke-sip-server", + "name": "Brekeke SIP Server", + "url": "/v1/software/brekeke-sip-server" + }, + { + "slug": "brewmaxx", + "name": "Brewmaxx", + "url": "/v1/software/brewmaxx" + }, + { + "slug": "bricklink-studio", + "name": "BrickLink Studio", + "url": "/v1/software/bricklink-studio" + }, + { + "slug": "bridge-lms", + "name": "Bridge LMS", + "url": "/v1/software/bridge-lms" + }, + { + "slug": "bridgedb", + "name": "BridgeDb", + "url": "/v1/software/bridgedb" + }, + { + "slug": "brightwheel", + "name": "Brightwheel", + "url": "/v1/software/brightwheel" + }, + { + "slug": "bristlr", + "name": "Bristlr", + "url": "/v1/software/bristlr" + }, + { + "slug": "britflix", + "name": "Britflix", + "url": "/v1/software/britflix" + }, + { + "slug": "broken-picture-telephone", + "name": "Broken Picture Telephone", + "url": "/v1/software/broken-picture-telephone" + }, + { + "slug": "browsec", + "name": "Browsec", + "url": "/v1/software/browsec" + }, + { + "slug": "browsertrix", + "name": "Browsertrix", + "url": "/v1/software/browsertrix" + }, + { + "slug": "bsoft", + "name": "Bsoft", + "url": "/v1/software/bsoft" + }, + { + "slug": "bubble-plan", + "name": "Bubble Plan", + "url": "/v1/software/bubble-plan" + }, + { + "slug": "bubbleupnp", + "name": "BubbleUPnP", + "url": "/v1/software/bubbleupnp" + }, + { + "slug": "bubbly", + "name": "Bubbly", + "url": "/v1/software/bubbly" + }, + { + "slug": "budapest-reference-connectome", + "name": "Budapest Reference Connectome", + "url": "/v1/software/budapest-reference-connectome" + }, + { + "slug": "buffer", + "name": "Buffer", + "url": "/v1/software/buffer" + }, + { + "slug": "bugtrap", + "name": "BugTrap", + "url": "/v1/software/bugtrap" + }, + { + "slug": "build-a-bird", + "name": "Build-A-Bird", + "url": "/v1/software/build-a-bird" + }, + { + "slug": "bulkhead-pattern", + "name": "Bulkhead pattern", + "url": "/v1/software/bulkhead-pattern" + }, + { + "slug": "bullzip-pdf-printer", + "name": "Bullzip PDF Printer", + "url": "/v1/software/bullzip-pdf-printer" + }, + { + "slug": "bump", + "name": "Bump", + "url": "/v1/software/bump" + }, + { + "slug": "bumpercar", + "name": "BumperCar", + "url": "/v1/software/bumpercar" + }, + { + "slug": "bundestrip", + "name": "BundesTrip", + "url": "/v1/software/bundestrip" + }, + { + "slug": "bunkatopics", + "name": "BunkaTopics", + "url": "/v1/software/bunkatopics" + }, + { + "slug": "bunkerweb", + "name": "BunkerWeb", + "url": "/v1/software/bunkerweb" + }, + { + "slug": "burn-proof", + "name": "Burn-Proof", + "url": "/v1/software/burn-proof" + }, + { + "slug": "burncase-3d", + "name": "BurnCase 3D", + "url": "/v1/software/burncase-3d" + }, + { + "slug": "burp-suite", + "name": "Burp Suite", + "url": "/v1/software/burp-suite" + }, + { + "slug": "burrows-wheeler-aligner", + "name": "Burrows-Wheeler Aligner", + "url": "/v1/software/burrows-wheeler-aligner" + }, + { + "slug": "burstcoin", + "name": "Burstcoin", + "url": "/v1/software/burstcoin" + }, + { + "slug": "business-catalyst", + "name": "Business Catalyst", + "url": "/v1/software/business-catalyst" + }, + { + "slug": "businessobjects-web-intelligence", + "name": "BusinessObjects Web Intelligence", + "url": "/v1/software/businessobjects-web-intelligence" + }, + { + "slug": "butler", + "name": "Butler", + "url": "/v1/software/butler" + }, + { + "slug": "buttondown", + "name": "Buttondown", + "url": "/v1/software/buttondown" + }, + { + "slug": "buzan-s-imindmap", + "name": "Buzan's iMindMap", + "url": "/v1/software/buzan-s-imindmap" + }, + { + "slug": "buzzdata", + "name": "BuzzData", + "url": "/v1/software/buzzdata" + }, + { + "slug": "byggdox", + "name": "Byggdox", + "url": "/v1/software/byggdox" + }, + { + "slug": "bytemarc", + "name": "ByteMARC", + "url": "/v1/software/bytemarc" + }, + { + "slug": "bytetren", + "name": "ByteTren", + "url": "/v1/software/bytetren" + }, + { + "slug": "byteplant", + "name": "Byteplant", + "url": "/v1/software/byteplant" + }, + { + "slug": "c-amp", + "name": "C++ AMP", + "url": "/v1/software/c-amp" + }, + { + "slug": "c-access", + "name": "C-Access", + "url": "/v1/software/c-access" + }, + { + "slug": "c2call-gmbh", + "name": "C2Call GmbH", + "url": "/v1/software/c2call-gmbh" + }, + { + "slug": "c6-multichat", + "name": "C6 Multichat", + "url": "/v1/software/c6-multichat" + }, + { + "slug": "ca-anti-spyware", + "name": "CA Anti-Spyware", + "url": "/v1/software/ca-anti-spyware" + }, + { + "slug": "ca-it-process-automation-manager", + "name": "CA IT Process Automation Manager", + "url": "/v1/software/ca-it-process-automation-manager" + }, + { + "slug": "ca-spectrum", + "name": "CA Spectrum", + "url": "/v1/software/ca-spectrum" + }, + { + "slug": "ca-workload-automation-ae", + "name": "CA Workload Automation AE", + "url": "/v1/software/ca-workload-automation-ae" + }, + { + "slug": "cacao", + "name": "CACAO", + "url": "/v1/software/cacao" + }, + { + "slug": "cad-overlay", + "name": "CAD Overlay", + "url": "/v1/software/cad-overlay" + }, + { + "slug": "cad-e", + "name": "CAD-e", + "url": "/v1/software/cad-e" + }, + { + "slug": "cadec", + "name": "CADEC", + "url": "/v1/software/cadec" + }, + { + "slug": "cadkey", + "name": "CADKEY", + "url": "/v1/software/cadkey" + }, + { + "slug": "cadstar", + "name": "CADSTAR", + "url": "/v1/software/cadstar" + }, + { + "slug": "cadview", + "name": "CADView", + "url": "/v1/software/cadview" + }, + { + "slug": "cai-format", + "name": "CAI Format", + "url": "/v1/software/cai-format" + }, + { + "slug": "camerton", + "name": "CAMERTON", + "url": "/v1/software/camerton" + }, + { + "slug": "camel-view-testrig", + "name": "CAMeL-View TestRig", + "url": "/v1/software/camel-view-testrig" + }, + { + "slug": "canalyzer", + "name": "CANalyzer", + "url": "/v1/software/canalyzer" + }, + { + "slug": "canoe", + "name": "CANoe", + "url": "/v1/software/canoe" + }, + { + "slug": "cap-communication-access-point", + "name": "CAP (Communication Access Point)", + "url": "/v1/software/cap-communication-access-point" + }, + { + "slug": "caret", + "name": "CARET", + "url": "/v1/software/caret" + }, + { + "slug": "cas-home", + "name": "CAS@home", + "url": "/v1/software/cas-home" + }, + { + "slug": "casino", + "name": "CASINO", + "url": "/v1/software/casino" + }, + { + "slug": "castp", + "name": "CASTp", + "url": "/v1/software/castp" + }, + { + "slug": "catma", + "name": "CATMA", + "url": "/v1/software/catma" + }, + { + "slug": "cb-simulator", + "name": "CB Simulator", + "url": "/v1/software/cb-simulator" + }, + { + "slug": "cbecon", + "name": "CBEcon", + "url": "/v1/software/cbecon" + }, + { + "slug": "cced", + "name": "CCED", + "url": "/v1/software/cced" + }, + { + "slug": "ccp1gui", + "name": "CCP1GUI", + "url": "/v1/software/ccp1gui" + }, + { + "slug": "ccleaner-cloud", + "name": "CCleaner Cloud", + "url": "/v1/software/ccleaner-cloud" + }, + { + "slug": "cd3wd", + "name": "CD3WD", + "url": "/v1/software/cd3wd" + }, + { + "slug": "cdc-ez-text", + "name": "CDC EZ-Text", + "url": "/v1/software/cdc-ez-text" + }, + { + "slug": "cdf-player", + "name": "CDF Player", + "url": "/v1/software/cdf-player" + }, + { + "slug": "cdfinder", + "name": "CDFinder", + "url": "/v1/software/cdfinder" + }, + { + "slug": "cdpedia", + "name": "CDPedia", + "url": "/v1/software/cdpedia" + }, + { + "slug": "cdrwin", + "name": "CDRWIN", + "url": "/v1/software/cdrwin" + }, + { + "slug": "cdroller", + "name": "CDRoller", + "url": "/v1/software/cdroller" + }, + { + "slug": "cdwinder", + "name": "CDWinder", + "url": "/v1/software/cdwinder" + }, + { + "slug": "cdisplayex", + "name": "CDisplayEx", + "url": "/v1/software/cdisplayex" + }, + { + "slug": "celpip-simulator", + "name": "CELPIP Simulator", + "url": "/v1/software/celpip-simulator" + }, + { + "slug": "celstart", + "name": "CELstart", + "url": "/v1/software/celstart" + }, + { + "slug": "cepteteb", + "name": "CEPTETEB", + "url": "/v1/software/cepteteb" + }, + { + "slug": "ceta-parser", + "name": "CETA Parser", + "url": "/v1/software/ceta-parser" + }, + { + "slug": "cfd-ace", + "name": "CFD-ACE+", + "url": "/v1/software/cfd-ace" + }, + { + "slug": "cfd-fastran", + "name": "CFD-FASTRAN", + "url": "/v1/software/cfd-fastran" + }, + { + "slug": "cfosspeed", + "name": "CFosSpeed", + "url": "/v1/software/cfosspeed" + }, + { + "slug": "cgiproxy", + "name": "CGIProxy", + "url": "/v1/software/cgiproxy" + }, + { + "slug": "cgoban", + "name": "CGoban", + "url": "/v1/software/cgoban" + }, + { + "slug": "cgram-software", + "name": "CGram Software", + "url": "/v1/software/cgram-software" + }, + { + "slug": "charmm", + "name": "CHARMM", + "url": "/v1/software/charmm" + }, + { + "slug": "cheqin", + "name": "CHEQIN", + "url": "/v1/software/cheqin" + }, + { + "slug": "chet-c", + "name": "CHET-C", + "url": "/v1/software/chet-c" + }, + { + "slug": "chkdsk", + "name": "CHKDSK", + "url": "/v1/software/chkdsk" + }, + { + "slug": "cib-pdf-brewer", + "name": "CIB pdf brewer", + "url": "/v1/software/cib-pdf-brewer" + }, + { + "slug": "cietmap", + "name": "CIETmap", + "url": "/v1/software/cietmap" + }, + { + "slug": "cimact", + "name": "CIMACT", + "url": "/v1/software/cimact" + }, + { + "slug": "cip-tool", + "name": "CIP-Tool", + "url": "/v1/software/cip-tool" + }, + { + "slug": "cis-benchmark-evaluation", + "name": "CIS-Benchmark-Evaluation", + "url": "/v1/software/cis-benchmark-evaluation" + }, + { + "slug": "clamp", + "name": "CLAMP", + "url": "/v1/software/clamp" + }, + { + "slug": "clarin-pl", + "name": "CLARIN-PL", + "url": "/v1/software/clarin-pl" + }, + { + "slug": "claws", + "name": "CLAWS", + "url": "/v1/software/claws" + }, + { + "slug": "claws-tagger", + "name": "CLAWS Tagger", + "url": "/v1/software/claws-tagger" + }, + { + "slug": "clc-genomics-workbench", + "name": "CLC Genomics Workbench", + "url": "/v1/software/clc-genomics-workbench" + }, + { + "slug": "clij", + "name": "CLIJ", + "url": "/v1/software/clij" + }, + { + "slug": "clip-os", + "name": "CLIP OS", + "url": "/v1/software/clip-os" + }, + { + "slug": "clr-profiler", + "name": "CLR Profiler", + "url": "/v1/software/clr-profiler" + }, + { + "slug": "clsql", + "name": "CLSQL", + "url": "/v1/software/clsql" + }, + { + "slug": "clx", + "name": "CLX", + "url": "/v1/software/clx" + }, + { + "slug": "clever-audio-plug-in", + "name": "CLever Audio Plug-in", + "url": "/v1/software/clever-audio-plug-in" + }, + { + "slug": "cmap-tools", + "name": "CMAP Tools", + "url": "/v1/software/cmap-tools" + }, + { + "slug": "cmi-star", + "name": "CMI STAR", + "url": "/v1/software/cmi-star" + }, + { + "slug": "cmm", + "name": "CMM", + "url": "/v1/software/cmm" + }, + { + "slug": "cnr", + "name": "CNR", + "url": "/v1/software/cnr" + }, + { + "slug": "cnrtl-extension-for-firefox", + "name": "CNRTL Extension for Firefox", + "url": "/v1/software/cnrtl-extension-for-firefox" + }, + { + "slug": "cntk", + "name": "CNTK", + "url": "/v1/software/cntk" + }, + { + "slug": "co2sys", + "name": "CO2SYS", + "url": "/v1/software/co2sys" + }, + { + "slug": "coco-simulator", + "name": "COCO simulator", + "url": "/v1/software/coco-simulator" + }, + { + "slug": "cocoa", + "name": "COCOA", + "url": "/v1/software/cocoa" + }, + { + "slug": "cocoon", + "name": "COCOON", + "url": "/v1/software/cocoon" + }, + { + "slug": "codex-tdp-engine", + "name": "CODEX TDP Engine", + "url": "/v1/software/codex-tdp-engine" + }, + { + "slug": "cody-assessment", + "name": "CODY Assessment", + "url": "/v1/software/cody-assessment" + }, + { + "slug": "cogo", + "name": "COGO", + "url": "/v1/software/cogo" + }, + { + "slug": "cogs-3", + "name": "COGS-3", + "url": "/v1/software/cogs-3" + }, + { + "slug": "colt", + "name": "COLT", + "url": "/v1/software/colt" + }, + { + "slug": "com-port-redirector", + "name": "COM port redirector", + "url": "/v1/software/com-port-redirector" + }, + { + "slug": "comdi", + "name": "COMDI", + "url": "/v1/software/comdi" + }, + { + "slug": "concord", + "name": "CONCORD", + "url": "/v1/software/concord" + }, + { + "slug": "condor", + "name": "CONDOR", + "url": "/v1/software/condor" + }, + { + "slug": "confer", + "name": "CONFER", + "url": "/v1/software/confer" + }, + { + "slug": "conn", + "name": "CONN", + "url": "/v1/software/conn" + }, + { + "slug": "conquest", + "name": "CONQUEST", + "url": "/v1/software/conquest" + }, + { + "slug": "consexpression", + "name": "CONSEXPRESSION", + "url": "/v1/software/consexpression" + }, + { + "slug": "contentdm", + "name": "CONTENTdm", + "url": "/v1/software/contentdm" + }, + { + "slug": "copbrazil-core-v1-0425", + "name": "COPBRAZIL_CORE::v1.0425", + "url": "/v1/software/copbrazil-core-v1-0425" + }, + { + "slug": "corsika", + "name": "CORSIKA", + "url": "/v1/software/corsika" + }, + { + "slug": "corsim", + "name": "CORSIM", + "url": "/v1/software/corsim" + }, + { + "slug": "computer-stored-ambulatory-record", + "name": "COmputer STored Ambulatory Record", + "url": "/v1/software/computer-stored-ambulatory-record" + }, + { + "slug": "cover-clustering-with-overlaps", + "name": "COveR: clustering with overlaps", + "url": "/v1/software/cover-clustering-with-overlaps" + }, + { + "slug": "cpachecker", + "name": "CPAchecker", + "url": "/v1/software/cpachecker" + }, + { + "slug": "cpc-tool", + "name": "CPC Tool", + "url": "/v1/software/cpc-tool" + }, + { + "slug": "cpce", + "name": "CPCe", + "url": "/v1/software/cpce" + }, + { + "slug": "cqpweb", + "name": "CQPweb", + "url": "/v1/software/cqpweb" + }, + { + "slug": "crane", + "name": "CRANE", + "url": "/v1/software/crane" + }, + { + "slug": "crx", + "name": "CRX", + "url": "/v1/software/crx" + }, + { + "slug": "crlibm", + "name": "CRlibm", + "url": "/v1/software/crlibm" + }, + { + "slug": "cs-rosetta", + "name": "CS-ROSETTA", + "url": "/v1/software/cs-rosetta" + }, + { + "slug": "cs-script", + "name": "CS-Script", + "url": "/v1/software/cs-script" + }, + { + "slug": "cs23d", + "name": "CS23D", + "url": "/v1/software/cs23d" + }, + { + "slug": "cspro", + "name": "CSPro", + "url": "/v1/software/cspro" + }, + { + "slug": "css3menu", + "name": "CSS3Menu", + "url": "/v1/software/css3menu" + }, + { + "slug": "csv-sort", + "name": "CSV Sort", + "url": "/v1/software/csv-sort" + }, + { + "slug": "ctdb", + "name": "CTDB", + "url": "/v1/software/ctdb" + }, + { + "slug": "cu-writer", + "name": "CU Writer", + "url": "/v1/software/cu-writer" + }, + { + "slug": "cue", + "name": "CUE", + "url": "/v1/software/cue" + }, + { + "slug": "cul", + "name": "CUL", + "url": "/v1/software/cul" + }, + { + "slug": "cupl", + "name": "CUPL", + "url": "/v1/software/cupl" + }, + { + "slug": "custom-cast", + "name": "CUSTOM CAST", + "url": "/v1/software/custom-cast" + }, + { + "slug": "cuter", + "name": "CUTEr", + "url": "/v1/software/cuter" + }, + { + "slug": "cviptools", + "name": "CVIPtools", + "url": "/v1/software/cviptools" + }, + { + "slug": "cvsps", + "name": "CVSps", + "url": "/v1/software/cvsps" + }, + { + "slug": "cwshredder", + "name": "CWShredder", + "url": "/v1/software/cwshredder" + }, + { + "slug": "cyana", + "name": "CYANA", + "url": "/v1/software/cyana" + }, + { + "slug": "cyma", + "name": "CYMA", + "url": "/v1/software/cyma" + }, + { + "slug": "cagrid", + "name": "CaGrid", + "url": "/v1/software/cagrid" + }, + { + "slug": "cachix", + "name": "Cachix", + "url": "/v1/software/cachix" + }, + { + "slug": "caddie", + "name": "Caddie", + "url": "/v1/software/caddie" + }, + { + "slug": "cainiao", + "name": "Cainiao", + "url": "/v1/software/cainiao" + }, + { + "slug": "cakewalk-by-bandlab", + "name": "Cakewalk by BandLab", + "url": "/v1/software/cakewalk-by-bandlab" + }, + { + "slug": "calest", + "name": "CalEst", + "url": "/v1/software/calest" + }, + { + "slug": "calfile", + "name": "CalFile", + "url": "/v1/software/calfile" + }, + { + "slug": "calamari", + "name": "Calamari", + "url": "/v1/software/calamari" + }, + { + "slug": "calamus", + "name": "Calamus", + "url": "/v1/software/calamus" + }, + { + "slug": "calcpad", + "name": "Calcpad", + "url": "/v1/software/calcpad" + }, + { + "slug": "calcufloor", + "name": "Calcufloor", + "url": "/v1/software/calcufloor" + }, + { + "slug": "calcurates", + "name": "Calcurates", + "url": "/v1/software/calcurates" + }, + { + "slug": "calcurse", + "name": "Calcurse", + "url": "/v1/software/calcurse" + }, + { + "slug": "calen-dash", + "name": "Calen Dash", + "url": "/v1/software/calen-dash" + }, + { + "slug": "calenda", + "name": "Calenda", + "url": "/v1/software/calenda" + }, + { + "slug": "calendar", + "name": "Calendar", + "url": "/v1/software/calendar" + }, + { + "slug": "calendar-exporter", + "name": "Calendar Exporter", + "url": "/v1/software/calendar-exporter" + }, + { + "slug": "callapp", + "name": "CallApp", + "url": "/v1/software/callapp" + }, + { + "slug": "calligra-suite", + "name": "Calligra Suite", + "url": "/v1/software/calligra-suite" + }, + { + "slug": "camfind", + "name": "CamFind", + "url": "/v1/software/camfind" + }, + { + "slug": "cambridge-algebra-system", + "name": "Cambridge Algebra System", + "url": "/v1/software/cambridge-algebra-system" + }, + { + "slug": "cambridge-animation-systems", + "name": "Cambridge Animation Systems", + "url": "/v1/software/cambridge-animation-systems" + }, + { + "slug": "cameleon", + "name": "Cameleon", + "url": "/v1/software/cameleon" + }, + { + "slug": "camera-42", + "name": "Camera 42", + "url": "/v1/software/camera-42" + }, + { + "slug": "camo", + "name": "Camo", + "url": "/v1/software/camo" + }, + { + "slug": "campfire", + "name": "Campfire", + "url": "/v1/software/campfire" + }, + { + "slug": "campus-maps", + "name": "Campus Maps", + "url": "/v1/software/campus-maps" + }, + { + "slug": "candid", + "name": "Candid", + "url": "/v1/software/candid" + }, + { + "slug": "cannon-brawl", + "name": "Cannon Brawl", + "url": "/v1/software/cannon-brawl" + }, + { + "slug": "canoma", + "name": "Canoma", + "url": "/v1/software/canoma" + }, + { + "slug": "cantor", + "name": "Cantor", + "url": "/v1/software/cantor" + }, + { + "slug": "canvas-x", + "name": "Canvas X", + "url": "/v1/software/canvas-x" + }, + { + "slug": "capella-q21965864", + "name": "Capella", + "url": "/v1/software/capella-q21965864" + }, + { + "slug": "capella", + "name": "Capella", + "url": "/v1/software/capella" + }, + { + "slug": "capital-one-auto-navigator", + "name": "Capital One Auto Navigator", + "url": "/v1/software/capital-one-auto-navigator" + }, + { + "slug": "capital-one-navigator-platform", + "name": "Capital One Navigator Platform", + "url": "/v1/software/capital-one-navigator-platform" + }, + { + "slug": "capito-digital", + "name": "Capito Digital", + "url": "/v1/software/capito-digital" + }, + { + "slug": "captio", + "name": "Captio", + "url": "/v1/software/captio" + }, + { + "slug": "captricity", + "name": "Captricity", + "url": "/v1/software/captricity" + }, + { + "slug": "capture-nx", + "name": "Capture NX", + "url": "/v1/software/capture-nx" + }, + { + "slug": "capture-one", + "name": "Capture One", + "url": "/v1/software/capture-one" + }, + { + "slug": "carceo-pro", + "name": "CarCEO PRO", + "url": "/v1/software/carceo-pro" + }, + { + "slug": "carplay", + "name": "CarPlay", + "url": "/v1/software/carplay" + }, + { + "slug": "caramba-switcher", + "name": "Caramba Switcher", + "url": "/v1/software/caramba-switcher" + }, + { + "slug": "carbon", + "name": "Carbon", + "url": "/v1/software/carbon" + }, + { + "slug": "carbon-copy-cloner", + "name": "Carbon Copy Cloner", + "url": "/v1/software/carbon-copy-cloner" + }, + { + "slug": "carbon-design-system", + "name": "Carbon Design System", + "url": "/v1/software/carbon-design-system" + }, + { + "slug": "carbonado", + "name": "Carbonado", + "url": "/v1/software/carbonado" + }, + { + "slug": "carbonite", + "name": "Carbonite", + "url": "/v1/software/carbonite" + }, + { + "slug": "cardup", + "name": "CardUP", + "url": "/v1/software/cardup" + }, + { + "slug": "cards", + "name": "Cards", + "url": "/v1/software/cards" + }, + { + "slug": "carefiji", + "name": "CareFIJI", + "url": "/v1/software/carefiji" + }, + { + "slug": "carestack", + "name": "CareStack", + "url": "/v1/software/carestack" + }, + { + "slug": "cargomax", + "name": "CargoMax", + "url": "/v1/software/cargomax" + }, + { + "slug": "carnap", + "name": "Carnap", + "url": "/v1/software/carnap" + }, + { + "slug": "carnivore", + "name": "Carnivore", + "url": "/v1/software/carnivore" + }, + { + "slug": "carrier-grade-linux", + "name": "Carrier Grade Linux", + "url": "/v1/software/carrier-grade-linux" + }, + { + "slug": "cartographer", + "name": "Cartographer", + "url": "/v1/software/cartographer" + }, + { + "slug": "cartooners", + "name": "Cartooners", + "url": "/v1/software/cartooners" + }, + { + "slug": "cartopedia", + "name": "Cartopedia", + "url": "/v1/software/cartopedia" + }, + { + "slug": "casecomplete", + "name": "CaseComplete", + "url": "/v1/software/casecomplete" + }, + { + "slug": "caseparity", + "name": "CaseParity", + "url": "/v1/software/caseparity" + }, + { + "slug": "casskai", + "name": "CassKai", + "url": "/v1/software/casskai" + }, + { + "slug": "cassandre-software", + "name": "Cassandre software", + "url": "/v1/software/cassandre-software" + }, + { + "slug": "casting-process-simulation", + "name": "Casting process simulation", + "url": "/v1/software/casting-process-simulation" + }, + { + "slug": "castor", + "name": "Castor", + "url": "/v1/software/castor" + }, + { + "slug": "casual", + "name": "Casual", + "url": "/v1/software/casual" + }, + { + "slug": "casualconc", + "name": "CasualConc", + "url": "/v1/software/casualconc" + }, + { + "slug": "cdigix", + "name": "Cdigix", + "url": "/v1/software/cdigix" + }, + { + "slug": "ceedo", + "name": "Ceedo", + "url": "/v1/software/ceedo" + }, + { + "slug": "ceiton-workflow-system", + "name": "Ceiton workflow system", + "url": "/v1/software/ceiton-workflow-system" + }, + { + "slug": "cellebrite-ufed", + "name": "Cellebrite UFED", + "url": "/v1/software/cellebrite-ufed" + }, + { + "slug": "cellular-automata-lab", + "name": "Cellular Automata Lab", + "url": "/v1/software/cellular-automata-lab" + }, + { + "slug": "centennial-discovery", + "name": "Centennial Discovery", + "url": "/v1/software/centennial-discovery" + }, + { + "slug": "central-authentication-service", + "name": "Central Authentication Service", + "url": "/v1/software/central-authentication-service" + }, + { + "slug": "central-point-anti-virus", + "name": "Central Point Anti-Virus", + "url": "/v1/software/central-point-anti-virus" + }, + { + "slug": "central-venous-catheter-simulation", + "name": "Central Venous Catheter Simulation", + "url": "/v1/software/central-venous-catheter-simulation" + }, + { + "slug": "centricity", + "name": "Centricity", + "url": "/v1/software/centricity" + }, + { + "slug": "cerberus-ftp-server", + "name": "Cerberus FTP Server", + "url": "/v1/software/cerberus-ftp-server" + }, + { + "slug": "cerbos", + "name": "Cerbos", + "url": "/v1/software/cerbos" + }, + { + "slug": "cereproc", + "name": "CereProc", + "url": "/v1/software/cereproc" + }, + { + "slug": "cesiumjs", + "name": "CesiumJS", + "url": "/v1/software/cesiumjs" + }, + { + "slug": "cestagi", + "name": "Cestagi", + "url": "/v1/software/cestagi" + }, + { + "slug": "changa", + "name": "ChaNGa", + "url": "/v1/software/changa" + }, + { + "slug": "chainlink", + "name": "Chainlink", + "url": "/v1/software/chainlink" + }, + { + "slug": "chalk", + "name": "Chalk", + "url": "/v1/software/chalk" + }, + { + "slug": "changebeadsthreader", + "name": "ChangeBeadsThreader", + "url": "/v1/software/changebeadsthreader" + }, + { + "slug": "chankast", + "name": "Chankast", + "url": "/v1/software/chankast" + }, + { + "slug": "channel-4", + "name": "Channel 4", + "url": "/v1/software/channel-4" + }, + { + "slug": "chaos-corona", + "name": "Chaos Corona", + "url": "/v1/software/chaos-corona" + }, + { + "slug": "chaos-heroes-online", + "name": "Chaos Heroes Online", + "url": "/v1/software/chaos-heroes-online" + }, + { + "slug": "chaotica", + "name": "Chaotica", + "url": "/v1/software/chaotica" + }, + { + "slug": "character-studio", + "name": "Character Studio", + "url": "/v1/software/character-studio" + }, + { + "slug": "charter-for-innovation-creativity-and-access-to-knowledge", + "name": "Charter for Innovation, Creativity and Access to Knowledge", + "url": "/v1/software/charter-for-innovation-creativity-and-access-to-knowledge" + }, + { + "slug": "chartle", + "name": "Chartle", + "url": "/v1/software/chartle" + }, + { + "slug": "chat-80", + "name": "Chat-80", + "url": "/v1/software/chat-80" + }, + { + "slug": "chatbot", + "name": "ChatBot", + "url": "/v1/software/chatbot" + }, + { + "slug": "chatbotkit", + "name": "ChatBotKit", + "url": "/v1/software/chatbotkit" + }, + { + "slug": "chatsku", + "name": "ChatSKU", + "url": "/v1/software/chatsku" + }, + { + "slug": "check-mii-out-channel", + "name": "Check Mii Out Channel", + "url": "/v1/software/check-mii-out-channel" + }, + { + "slug": "check-point-vpn-1", + "name": "Check Point VPN-1", + "url": "/v1/software/check-point-vpn-1" + }, + { + "slug": "checkin-safe", + "name": "CheckIn Safe", + "url": "/v1/software/checkin-safe" + }, + { + "slug": "checktext", + "name": "CheckText", + "url": "/v1/software/checktext" + }, + { + "slug": "cheeppy", + "name": "Cheeppy", + "url": "/v1/software/cheeppy" + }, + { + "slug": "cheetah-security-browser", + "name": "Cheetah Security Browser", + "url": "/v1/software/cheetah-security-browser" + }, + { + "slug": "cheetah3d", + "name": "Cheetah3D", + "url": "/v1/software/cheetah3d" + }, + { + "slug": "chemdoodle-web-components", + "name": "ChemDoodle Web Components", + "url": "/v1/software/chemdoodle-web-components" + }, + { + "slug": "chemdraw", + "name": "ChemDraw", + "url": "/v1/software/chemdraw" + }, + { + "slug": "chemwindow", + "name": "ChemWindow", + "url": "/v1/software/chemwindow" + }, + { + "slug": "chemical-workbench", + "name": "Chemical WorkBench", + "url": "/v1/software/chemical-workbench" + }, + { + "slug": "chemicalize-org", + "name": "Chemicalize.org", + "url": "/v1/software/chemicalize-org" + }, + { + "slug": "chemminer", + "name": "ChemmineR", + "url": "/v1/software/chemminer" + }, + { + "slug": "cherryos", + "name": "CherryOS", + "url": "/v1/software/cherryos" + }, + { + "slug": "chess-assistant", + "name": "Chess Assistant", + "url": "/v1/software/chess-assistant" + }, + { + "slug": "chess-tiger", + "name": "Chess Tiger", + "url": "/v1/software/chess-tiger" + }, + { + "slug": "chess960-home", + "name": "Chess960@home", + "url": "/v1/software/chess960-home" + }, + { + "slug": "chessgenius", + "name": "ChessGenius", + "url": "/v1/software/chessgenius" + }, + { + "slug": "chessx", + "name": "ChessX", + "url": "/v1/software/chessx" + }, + { + "slug": "chiasmus", + "name": "Chiasmus", + "url": "/v1/software/chiasmus" + }, + { + "slug": "chika", + "name": "Chika", + "url": "/v1/software/chika" + }, + { + "slug": "childsplay", + "name": "Childsplay", + "url": "/v1/software/childsplay" + }, + { + "slug": "chillispot", + "name": "ChilliSpot", + "url": "/v1/software/chillispot" + }, + { + "slug": "chimera-kernel-module-system", + "name": "Chimera Kernel Module System", + "url": "/v1/software/chimera-kernel-module-system" + }, + { + "slug": "chinook", + "name": "Chinook", + "url": "/v1/software/chinook" + }, + { + "slug": "chipspeech", + "name": "Chipspeech", + "url": "/v1/software/chipspeech" + }, + { + "slug": "chitbase", + "name": "ChitBase", + "url": "/v1/software/chitbase" + }, + { + "slug": "chitchat", + "name": "ChitChat", + "url": "/v1/software/chitchat" + }, + { + "slug": "choremonster", + "name": "ChoreMonster", + "url": "/v1/software/choremonster" + }, + { + "slug": "chorus", + "name": "Chorus", + "url": "/v1/software/chorus" + }, + { + "slug": "chous", + "name": "Chous", + "url": "/v1/software/chous" + }, + { + "slug": "chromas", + "name": "Chromas", + "url": "/v1/software/chromas" + }, + { + "slug": "chrome-engine", + "name": "Chrome Engine", + "url": "/v1/software/chrome-engine" + }, + { + "slug": "chronojump-boscosystem", + "name": "Chronojump Boscosystem", + "url": "/v1/software/chronojump-boscosystem" + }, + { + "slug": "chronos-timeline", + "name": "Chronos Timeline", + "url": "/v1/software/chronos-timeline" + }, + { + "slug": "chuchel", + "name": "Chuchel", + "url": "/v1/software/chuchel" + }, + { + "slug": "cinco", + "name": "Cinco", + "url": "/v1/software/cinco" + }, + { + "slug": "cinema-craft-encoder", + "name": "Cinema Craft Encoder", + "url": "/v1/software/cinema-craft-encoder" + }, + { + "slug": "cinema-tools", + "name": "Cinema Tools", + "url": "/v1/software/cinema-tools" + }, + { + "slug": "cinemagraph", + "name": "Cinemagraph", + "url": "/v1/software/cinemagraph" + }, + { + "slug": "circa-news", + "name": "Circa News", + "url": "/v1/software/circa-news" + }, + { + "slug": "circulaw", + "name": "CircuLaw", + "url": "/v1/software/circulaw" + }, + { + "slug": "circuit", + "name": "Circuit", + "url": "/v1/software/circuit" + }, + { + "slug": "circuit-simulator", + "name": "Circuit Simulator", + "url": "/v1/software/circuit-simulator" + }, + { + "slug": "circuitlogix", + "name": "CircuitLogix", + "url": "/v1/software/circuitlogix" + }, + { + "slug": "circuitmaker", + "name": "CircuitMaker", + "url": "/v1/software/circuitmaker" + }, + { + "slug": "circuitpython", + "name": "CircuitPython", + "url": "/v1/software/circuitpython" + }, + { + "slug": "circuits-cloud", + "name": "Circuits Cloud", + "url": "/v1/software/circuits-cloud" + }, + { + "slug": "circumflex", + "name": "Circumflex", + "url": "/v1/software/circumflex" + }, + { + "slug": "cisco-9200l-48t-4x", + "name": "Cisco 9200L-48T-4X", + "url": "/v1/software/cisco-9200l-48t-4x" + }, + { + "slug": "cisco-active-network-abstraction", + "name": "Cisco Active Network Abstraction", + "url": "/v1/software/cisco-active-network-abstraction" + }, + { + "slug": "cisco-cbs250-16t-2g", + "name": "Cisco CBS250-16T-2G", + "url": "/v1/software/cisco-cbs250-16t-2g" + }, + { + "slug": "cisco-cbs250-8t-e-2g", + "name": "Cisco CBS250-8T-E-2G", + "url": "/v1/software/cisco-cbs250-8t-e-2g" + }, + { + "slug": "cisco-network-registrar", + "name": "Cisco Network Registrar", + "url": "/v1/software/cisco-network-registrar" + }, + { + "slug": "cisco-security-agent", + "name": "Cisco Security Agent", + "url": "/v1/software/cisco-security-agent" + }, + { + "slug": "cisco-systems-vpn-client", + "name": "Cisco Systems VPN Client", + "url": "/v1/software/cisco-systems-vpn-client" + }, + { + "slug": "cisco-unified-communications-manager", + "name": "Cisco Unified Communications Manager", + "url": "/v1/software/cisco-unified-communications-manager" + }, + { + "slug": "cisdem-pdfconverterocr-for-mac", + "name": "Cisdem PDFConverterOCR for Mac", + "url": "/v1/software/cisdem-pdfconverterocr-for-mac" + }, + { + "slug": "citablehub", + "name": "CitableHub", + "url": "/v1/software/citablehub" + }, + { + "slug": "citadel-q112569085", + "name": "Citadel", + "url": "/v1/software/citadel-q112569085" + }, + { + "slug": "citadel", + "name": "Citadel", + "url": "/v1/software/citadel" + }, + { + "slug": "citation-js", + "name": "Citation.js", + "url": "/v1/software/citation-js" + }, + { + "slug": "citavi", + "name": "Citavi", + "url": "/v1/software/citavi" + }, + { + "slug": "citect", + "name": "Citect", + "url": "/v1/software/citect" + }, + { + "slug": "citizen", + "name": "Citizen", + "url": "/v1/software/citizen" + }, + { + "slug": "citizen-cop", + "name": "Citizen COP", + "url": "/v1/software/citizen-cop" + }, + { + "slug": "citrio", + "name": "Citrio", + "url": "/v1/software/citrio" + }, + { + "slug": "citrix-analytics", + "name": "Citrix Analytics", + "url": "/v1/software/citrix-analytics" + }, + { + "slug": "citrix-cloud", + "name": "Citrix Cloud", + "url": "/v1/software/citrix-cloud" + }, + { + "slug": "citrix-endpoint-management", + "name": "Citrix Endpoint Management", + "url": "/v1/software/citrix-endpoint-management" + }, + { + "slug": "citrix-sd-wan", + "name": "Citrix SD-WAN", + "url": "/v1/software/citrix-sd-wan" + }, + { + "slug": "citrix-secure-internet-access", + "name": "Citrix Secure Internet Access", + "url": "/v1/software/citrix-secure-internet-access" + }, + { + "slug": "citrix-secure-workspace-access", + "name": "Citrix Secure Workspace Access", + "url": "/v1/software/citrix-secure-workspace-access" + }, + { + "slug": "citrix-virtual-apps", + "name": "Citrix Virtual Apps", + "url": "/v1/software/citrix-virtual-apps" + }, + { + "slug": "citrix-workspace", + "name": "Citrix Workspace", + "url": "/v1/software/citrix-workspace" + }, + { + "slug": "city-art-search", + "name": "City Art Search", + "url": "/v1/software/city-art-search" + }, + { + "slug": "cityengine", + "name": "CityEngine", + "url": "/v1/software/cityengine" + }, + { + "slug": "citymanager", + "name": "CityManager", + "url": "/v1/software/citymanager" + }, + { + "slug": "citysurf-globe", + "name": "CitySurf Globe", + "url": "/v1/software/citysurf-globe" + }, + { + "slug": "clamsmtp", + "name": "ClamSMTP", + "url": "/v1/software/clamsmtp" + }, + { + "slug": "clampd", + "name": "Clampd", + "url": "/v1/software/clampd" + }, + { + "slug": "clapper", + "name": "Clapper", + "url": "/v1/software/clapper" + }, + { + "slug": "clarified-networks", + "name": "Clarified Networks", + "url": "/v1/software/clarified-networks" + }, + { + "slug": "clarify-it", + "name": "Clarify-it", + "url": "/v1/software/clarify-it" + }, + { + "slug": "claris-cad", + "name": "Claris CAD", + "url": "/v1/software/claris-cad" + }, + { + "slug": "claris-impact", + "name": "Claris Impact", + "url": "/v1/software/claris-impact" + }, + { + "slug": "claris-resolve", + "name": "Claris Resolve", + "url": "/v1/software/claris-resolve" + }, + { + "slug": "clarisworks", + "name": "ClarisWorks", + "url": "/v1/software/clarisworks" + }, + { + "slug": "clarity-q139414637", + "name": "Clarity", + "url": "/v1/software/clarity-q139414637" + }, + { + "slug": "clarity", + "name": "Clarity", + "url": "/v1/software/clarity" + }, + { + "slug": "claromentis-franchise-platform", + "name": "Claromentis Franchise Platform", + "url": "/v1/software/claromentis-franchise-platform" + }, + { + "slug": "clash", + "name": "Clash", + "url": "/v1/software/clash" + }, + { + "slug": "classlens", + "name": "ClassLens", + "url": "/v1/software/classlens" + }, + { + "slug": "classer-le-monde", + "name": "Classer le monde", + "url": "/v1/software/classer-le-monde" + }, + { + "slug": "classical-text-editor", + "name": "Classical Text Editor", + "url": "/v1/software/classical-text-editor" + }, + { + "slug": "classilla", + "name": "Classilla", + "url": "/v1/software/classilla" + }, + { + "slug": "classroom-apple", + "name": "Classroom (Apple)", + "url": "/v1/software/classroom-apple" + }, + { + "slug": "claude-code", + "name": "Claude Code", + "url": "/v1/software/claude-code" + }, + { + "slug": "clevr", + "name": "CleVR", + "url": "/v1/software/clevr" + }, + { + "slug": "clean-email", + "name": "Clean Email", + "url": "/v1/software/clean-email" + }, + { + "slug": "clean-master", + "name": "Clean Master", + "url": "/v1/software/clean-master" + }, + { + "slug": "cleanmail-antispam", + "name": "CleanMail Antispam", + "url": "/v1/software/cleanmail-antispam" + }, + { + "slug": "cleancode-email", + "name": "Cleancode email", + "url": "/v1/software/cleancode-email" + }, + { + "slug": "cleaning-for-poems", + "name": "Cleaning for Poems", + "url": "/v1/software/cleaning-for-poems" + }, + { + "slug": "clearfacts", + "name": "Clearfacts", + "url": "/v1/software/clearfacts" + }, + { + "slug": "cleome", + "name": "Cleome", + "url": "/v1/software/cleome" + }, + { + "slug": "cleverbot", + "name": "Cleverbot", + "url": "/v1/software/cleverbot" + }, + { + "slug": "climaf", + "name": "CliMAF", + "url": "/v1/software/climaf" + }, + { + "slug": "clickmeeting", + "name": "ClickMeeting", + "url": "/v1/software/clickmeeting" + }, + { + "slug": "clicksaver", + "name": "ClickSaver", + "url": "/v1/software/clicksaver" + }, + { + "slug": "climate-data-exchange", + "name": "Climate Data Exchange", + "url": "/v1/software/climate-data-exchange" + }, + { + "slug": "climate-data-operators", + "name": "Climate Data Operators", + "url": "/v1/software/climate-data-operators" + }, + { + "slug": "climatetracker", + "name": "ClimateTracker", + "url": "/v1/software/climatetracker" + }, + { + "slug": "climatevision", + "name": "ClimateVision", + "url": "/v1/software/climatevision" + }, + { + "slug": "clinia", + "name": "ClinIA", + "url": "/v1/software/clinia" + }, + { + "slug": "clinwiki", + "name": "ClinWiki", + "url": "/v1/software/clinwiki" + }, + { + "slug": "clinical-judgement-simulation", + "name": "Clinical Judgement Simulation", + "url": "/v1/software/clinical-judgement-simulation" + }, + { + "slug": "clinical-trial-management-system", + "name": "Clinical trial management system", + "url": "/v1/software/clinical-trial-management-system" + }, + { + "slug": "clinicspulse", + "name": "ClinicsPulse", + "url": "/v1/software/clinicspulse" + }, + { + "slug": "clinikpe", + "name": "ClinikPe", + "url": "/v1/software/clinikpe" + }, + { + "slug": "clipbook-viewer", + "name": "ClipBook Viewer", + "url": "/v1/software/clipbook-viewer" + }, + { + "slug": "clipconverter", + "name": "ClipConverter", + "url": "/v1/software/clipconverter" + }, + { + "slug": "clipsalvage", + "name": "ClipSalvage", + "url": "/v1/software/clipsalvage" + }, + { + "slug": "clipping-magic", + "name": "Clipping Magic", + "url": "/v1/software/clipping-magic" + }, + { + "slug": "clips", + "name": "Clips", + "url": "/v1/software/clips" + }, + { + "slug": "clocx", + "name": "ClocX", + "url": "/v1/software/clocx" + }, + { + "slug": "clockwise", + "name": "Clockwise", + "url": "/v1/software/clockwise" + }, + { + "slug": "clone-manager", + "name": "Clone manager", + "url": "/v1/software/clone-manager" + }, + { + "slug": "clonedvd", + "name": "CloneDVD", + "url": "/v1/software/clonedvd" + }, + { + "slug": "close-combat-modern-tactics", + "name": "Close Combat: Modern Tactics", + "url": "/v1/software/close-combat-modern-tactics" + }, + { + "slug": "closedbsd", + "name": "ClosedBSD", + "url": "/v1/software/closedbsd" + }, + { + "slug": "closerprompter", + "name": "CloserPrompter", + "url": "/v1/software/closerprompter" + }, + { + "slug": "cloud-application-management-framework", + "name": "Cloud Application Management Framework", + "url": "/v1/software/cloud-application-management-framework" + }, + { + "slug": "cloud-console", + "name": "Cloud Console", + "url": "/v1/software/cloud-console" + }, + { + "slug": "cloud-console-mobile-app", + "name": "Cloud Console Mobile App", + "url": "/v1/software/cloud-console-mobile-app" + }, + { + "slug": "cloud-datalab", + "name": "Cloud Datalab", + "url": "/v1/software/cloud-datalab" + }, + { + "slug": "cloud-debugger", + "name": "Cloud Debugger", + "url": "/v1/software/cloud-debugger" + }, + { + "slug": "cloud-deployment-manager", + "name": "Cloud Deployment Manager", + "url": "/v1/software/cloud-deployment-manager" + }, + { + "slug": "cloud-healthcare-api", + "name": "Cloud Healthcare API", + "url": "/v1/software/cloud-healthcare-api" + }, + { + "slug": "cloud-iam", + "name": "Cloud IAM", + "url": "/v1/software/cloud-iam" + }, + { + "slug": "cloud-identity", + "name": "Cloud Identity", + "url": "/v1/software/cloud-identity" + }, + { + "slug": "cloud-identity-for-customers-and-partners", + "name": "Cloud Identity for Customers and Partners", + "url": "/v1/software/cloud-identity-for-customers-and-partners" + }, + { + "slug": "cloud-storage-transfer-service", + "name": "Cloud Storage Transfer Service", + "url": "/v1/software/cloud-storage-transfer-service" + }, + { + "slug": "cloud-tools-for-eclipse", + "name": "Cloud Tools for Eclipse", + "url": "/v1/software/cloud-tools-for-eclipse" + }, + { + "slug": "cloud-tools-for-intellij", + "name": "Cloud Tools for IntelliJ", + "url": "/v1/software/cloud-tools-for-intellij" + }, + { + "slug": "cloud-tools-for-powershell", + "name": "Cloud Tools for PowerShell", + "url": "/v1/software/cloud-tools-for-powershell" + }, + { + "slug": "cloud-tools-for-visual-studio", + "name": "Cloud Tools for Visual Studio", + "url": "/v1/software/cloud-tools-for-visual-studio" + }, + { + "slug": "cloud-trace", + "name": "Cloud Trace", + "url": "/v1/software/cloud-trace" + }, + { + "slug": "cloudberry-backup", + "name": "CloudBerry Backup", + "url": "/v1/software/cloudberry-backup" + }, + { + "slug": "cloudforms", + "name": "CloudForms", + "url": "/v1/software/cloudforms" + }, + { + "slug": "cloudhq", + "name": "CloudHQ", + "url": "/v1/software/cloudhq" + }, + { + "slug": "cloudmagic", + "name": "CloudMagic", + "url": "/v1/software/cloudmagic" + }, + { + "slug": "cloudme", + "name": "CloudMe", + "url": "/v1/software/cloudme" + }, + { + "slug": "cloudsim", + "name": "CloudSim", + "url": "/v1/software/cloudsim" + }, + { + "slug": "cloudtran", + "name": "CloudTran", + "url": "/v1/software/cloudtran" + }, + { + "slug": "cloudevo", + "name": "Cloudevo", + "url": "/v1/software/cloudevo" + }, + { + "slug": "cloudike", + "name": "Cloudike", + "url": "/v1/software/cloudike" + }, + { + "slug": "cloudkick", + "name": "Cloudkick", + "url": "/v1/software/cloudkick" + }, + { + "slug": "cloudron", + "name": "Cloudron", + "url": "/v1/software/cloudron" + }, + { + "slug": "club-nokia", + "name": "Club Nokia", + "url": "/v1/software/club-nokia" + }, + { + "slug": "clue", + "name": "Clue", + "url": "/v1/software/clue" + }, + { + "slug": "clustal-omega", + "name": "Clustal Omega", + "url": "/v1/software/clustal-omega" + }, + { + "slug": "clustermarket", + "name": "Clustermarket", + "url": "/v1/software/clustermarket" + }, + { + "slug": "cluuz", + "name": "Cluuz", + "url": "/v1/software/cluuz" + }, + { + "slug": "cmder", + "name": "Cmder", + "url": "/v1/software/cmder" + }, + { + "slug": "codeen", + "name": "CoDeeN", + "url": "/v1/software/codeen" + }, + { + "slug": "cofarmer", + "name": "CoFarmer", + "url": "/v1/software/cofarmer" + }, + { + "slug": "coharmonify", + "name": "CoHarmonify", + "url": "/v1/software/coharmonify" + }, + { + "slug": "contub", + "name": "CoNTub", + "url": "/v1/software/contub" + }, + { + "slug": "cosign-single-sign-on", + "name": "CoSign single sign on", + "url": "/v1/software/cosign-single-sign-on" + }, + { + "slug": "coach-joel-s-way", + "name": "Coach Joel's Way", + "url": "/v1/software/coach-joel-s-way" + }, + { + "slug": "cobalt", + "name": "Cobalt", + "url": "/v1/software/cobalt" + }, + { + "slug": "cobalt-strike", + "name": "Cobalt Strike", + "url": "/v1/software/cobalt-strike" + }, + { + "slug": "coc-coc-search", + "name": "Coc Coc Search", + "url": "/v1/software/coc-coc-search" + }, + { + "slug": "cocaine", + "name": "Cocaine", + "url": "/v1/software/cocaine" + }, + { + "slug": "cockpit", + "name": "Cockpit", + "url": "/v1/software/cockpit" + }, + { + "slug": "cocoapods", + "name": "CocoaPods", + "url": "/v1/software/cocoapods" + }, + { + "slug": "cocoonjs", + "name": "CocoonJS", + "url": "/v1/software/cocoonjs" + }, + { + "slug": "coda", + "name": "Coda", + "url": "/v1/software/coda" + }, + { + "slug": "codabox", + "name": "Codabox", + "url": "/v1/software/codabox" + }, + { + "slug": "code-bubbles", + "name": "Code Bubbles", + "url": "/v1/software/code-bubbles" + }, + { + "slug": "code-morphing-software", + "name": "Code Morphing Software", + "url": "/v1/software/code-morphing-software" + }, + { + "slug": "code-recommenders-incubator", + "name": "Code Recommenders Incubator", + "url": "/v1/software/code-recommenders-incubator" + }, + { + "slug": "code-red", + "name": "Code Red", + "url": "/v1/software/code-red" + }, + { + "slug": "code-tympan", + "name": "Code TYMPAN", + "url": "/v1/software/code-tympan" + }, + { + "slug": "code-v", + "name": "Code V", + "url": "/v1/software/code-v" + }, + { + "slug": "codeassistance", + "name": "CodeAssistance", + "url": "/v1/software/codeassistance" + }, + { + "slug": "codebook", + "name": "CodeBook", + "url": "/v1/software/codebook" + }, + { + "slug": "codemonkey", + "name": "CodeMonkey", + "url": "/v1/software/codemonkey" + }, + { + "slug": "codemyshop", + "name": "CodeMyShop", + "url": "/v1/software/codemyshop" + }, + { + "slug": "codepeer", + "name": "CodePeer", + "url": "/v1/software/codepeer" + }, + { + "slug": "coderush", + "name": "CodeRush", + "url": "/v1/software/coderush" + }, + { + "slug": "codescene", + "name": "CodeScene", + "url": "/v1/software/codescene" + }, + { + "slug": "codewright", + "name": "CodeWright", + "url": "/v1/software/codewright" + }, + { + "slug": "codea", + "name": "Codea", + "url": "/v1/software/codea" + }, + { + "slug": "codenomicon", + "name": "Codenomicon", + "url": "/v1/software/codenomicon" + }, + { + "slug": "codimg", + "name": "Codimg", + "url": "/v1/software/codimg" + }, + { + "slug": "codoncode-aligner", + "name": "CodonCode Aligner", + "url": "/v1/software/codoncode-aligner" + }, + { + "slug": "coggle", + "name": "Coggle", + "url": "/v1/software/coggle" + }, + { + "slug": "cognos-reportnet", + "name": "Cognos Reportnet", + "url": "/v1/software/cognos-reportnet" + }, + { + "slug": "coke-on", + "name": "Coke ON", + "url": "/v1/software/coke-on" + }, + { + "slug": "colaboratory", + "name": "Colaboratory", + "url": "/v1/software/colaboratory" + }, + { + "slug": "coldstone-game-engine", + "name": "Coldstone game engine", + "url": "/v1/software/coldstone-game-engine" + }, + { + "slug": "colectica", + "name": "Colectica", + "url": "/v1/software/colectica" + }, + { + "slug": "collabaro", + "name": "Collabaro", + "url": "/v1/software/collabaro" + }, + { + "slug": "collaber", + "name": "Collaber", + "url": "/v1/software/collaber" + }, + { + "slug": "collaborative-computational-project-number-4", + "name": "Collaborative Computational Project Number 4", + "url": "/v1/software/collaborative-computational-project-number-4" + }, + { + "slug": "collaborator", + "name": "Collaborator", + "url": "/v1/software/collaborator" + }, + { + "slug": "collatex", + "name": "CollateX", + "url": "/v1/software/collatex" + }, + { + "slug": "collation-works", + "name": "Collation Works", + "url": "/v1/software/collation-works" + }, + { + "slug": "collocate", + "name": "Collocate", + "url": "/v1/software/collocate" + }, + { + "slug": "color-labs", + "name": "Color labs", + "url": "/v1/software/color-labs" + }, + { + "slug": "color64", + "name": "Color64", + "url": "/v1/software/color64" + }, + { + "slug": "colorbrewer", + "name": "ColorBrewer", + "url": "/v1/software/colorbrewer" + }, + { + "slug": "colordiff", + "name": "ColorDiff", + "url": "/v1/software/colordiff" + }, + { + "slug": "colorsync", + "name": "ColorSync", + "url": "/v1/software/colorsync" + }, + { + "slug": "colorsync-utility", + "name": "ColorSync Utility", + "url": "/v1/software/colorsync-utility" + }, + { + "slug": "colored-coins", + "name": "Colored Coins", + "url": "/v1/software/colored-coins" + }, + { + "slug": "colorer-take5", + "name": "Colorer-take5", + "url": "/v1/software/colorer-take5" + }, + { + "slug": "colviq", + "name": "ColviQ", + "url": "/v1/software/colviq" + }, + { + "slug": "comanche", + "name": "Comanche", + "url": "/v1/software/comanche" + }, + { + "slug": "combat-air-drop-planning-software", + "name": "Combat Air Drop Planning Software", + "url": "/v1/software/combat-air-drop-planning-software" + }, + { + "slug": "combat-flight-planning-software", + "name": "Combat Flight Planning Software", + "url": "/v1/software/combat-flight-planning-software" + }, + { + "slug": "combat-weapon-delivery-software", + "name": "Combat Weapon Delivery Software", + "url": "/v1/software/combat-weapon-delivery-software" + }, + { + "slug": "combine", + "name": "Combine", + "url": "/v1/software/combine" + }, + { + "slug": "combined-dna-index-system", + "name": "Combined DNA Index System", + "url": "/v1/software/combined-dna-index-system" + }, + { + "slug": "combustion", + "name": "Combustion", + "url": "/v1/software/combustion" + }, + { + "slug": "comeon", + "name": "ComeOn!", + "url": "/v1/software/comeon" + }, + { + "slug": "comenius-logo", + "name": "Comenius Logo", + "url": "/v1/software/comenius-logo" + }, + { + "slug": "comet-cursor", + "name": "Comet Cursor", + "url": "/v1/software/comet-cursor" + }, + { + "slug": "comic-life", + "name": "Comic Life", + "url": "/v1/software/comic-life" + }, + { + "slug": "comic-works", + "name": "Comic Works", + "url": "/v1/software/comic-works" + }, + { + "slug": "comicbase", + "name": "ComicBase", + "url": "/v1/software/comicbase" + }, + { + "slug": "comicink", + "name": "ComicInk", + "url": "/v1/software/comicink" + }, + { + "slug": "comico", + "name": "Comico", + "url": "/v1/software/comico" + }, + { + "slug": "comicsviewer", + "name": "ComicsViewer", + "url": "/v1/software/comicsviewer" + }, + { + "slug": "comindware-tracker", + "name": "Comindware Tracker", + "url": "/v1/software/comindware-tracker" + }, + { + "slug": "comm100-live-chat", + "name": "Comm100 Live Chat", + "url": "/v1/software/comm100-live-chat" + }, + { + "slug": "command-aces-of-the-deep", + "name": "Command: Aces of the Deep", + "url": "/v1/software/command-aces-of-the-deep" + }, + { + "slug": "comme-il-faut", + "name": "Comme Il Faut", + "url": "/v1/software/comme-il-faut" + }, + { + "slug": "commentspace", + "name": "CommentSpace", + "url": "/v1/software/commentspace" + }, + { + "slug": "commentpress", + "name": "Commentpress", + "url": "/v1/software/commentpress" + }, + { + "slug": "common-lisp-interface-manager", + "name": "Common Lisp Interface Manager", + "url": "/v1/software/common-lisp-interface-manager" + }, + { + "slug": "commons-email", + "name": "Commons Email", + "url": "/v1/software/commons-email" + }, + { + "slug": "commons-in-a-box", + "name": "Commons In A Box", + "url": "/v1/software/commons-in-a-box" + }, + { + "slug": "community-cyberinfrastructure-for-advanced-marine-microbial-ecology-research-and-analysis", + "name": "Community Cyberinfrastructure for Advanced Marine Microbial Ecology Research and Analysis", + "url": "/v1/software/community-cyberinfrastructure-for-advanced-marine-microbial-ecology-research-and-analysis" + }, + { + "slug": "community-earth-system-model", + "name": "Community Earth System Model", + "url": "/v1/software/community-earth-system-model" + }, + { + "slug": "communityviz", + "name": "CommunityViz", + "url": "/v1/software/communityviz" + }, + { + "slug": "comodo-backup", + "name": "Comodo Backup", + "url": "/v1/software/comodo-backup" + }, + { + "slug": "comphep", + "name": "CompHEP", + "url": "/v1/software/comphep" + }, + { + "slug": "comphistsem", + "name": "CompHistSem", + "url": "/v1/software/comphistsem" + }, + { + "slug": "compact-pro", + "name": "Compact Pro", + "url": "/v1/software/compact-pro" + }, + { + "slug": "comparative-toxicogenomics-database", + "name": "Comparative Toxicogenomics Database", + "url": "/v1/software/comparative-toxicogenomics-database" + }, + { + "slug": "compare-lists", + "name": "Compare Lists", + "url": "/v1/software/compare-lists" + }, + { + "slug": "compare-networks-over-time", + "name": "Compare Networks Over Time", + "url": "/v1/software/compare-networks-over-time" + }, + { + "slug": "comparison-of-software-saving-web-pages-for-offline-use", + "name": "Comparison of software saving Web pages for offline use", + "url": "/v1/software/comparison-of-software-saving-web-pages-for-offline-use" + }, + { + "slug": "compfight", + "name": "Compfight", + "url": "/v1/software/compfight" + }, + { + "slug": "complete-ftp-server", + "name": "Complete FTP Server", + "url": "/v1/software/complete-ftp-server" + }, + { + "slug": "completetax", + "name": "CompleteTax", + "url": "/v1/software/completetax" + }, + { + "slug": "complex-sentiment-analysis", + "name": "Complex Sentiment Analysis", + "url": "/v1/software/complex-sentiment-analysis" + }, + { + "slug": "complydog", + "name": "ComplyDog", + "url": "/v1/software/complydog" + }, + { + "slug": "component-based-scalable-logical-architecture", + "name": "Component-based Scalable Logical Architecture", + "url": "/v1/software/component-based-scalable-logical-architecture" + }, + { + "slug": "composer-by-bluerock-tms", + "name": "Composer by Bluerock TMS", + "url": "/v1/software/composer-by-bluerock-tms" + }, + { + "slug": "compressor", + "name": "Compressor", + "url": "/v1/software/compressor" + }, + { + "slug": "compucell3d", + "name": "CompuCell3D", + "url": "/v1/software/compucell3d" + }, + { + "slug": "computrac", + "name": "CompuTrac", + "url": "/v1/software/computrac" + }, + { + "slug": "computational-resource-for-drug-discovery", + "name": "Computational Resource for Drug Discovery", + "url": "/v1/software/computational-resource-for-drug-discovery" + }, + { + "slug": "computational-anatomy-toolbox", + "name": "Computational anatomy toolbox", + "url": "/v1/software/computational-anatomy-toolbox" + }, + { + "slug": "compute-architecture-for-neural-networks", + "name": "Compute Architecture for Neural Networks", + "url": "/v1/software/compute-architecture-for-neural-networks" + }, + { + "slug": "computer-aided-transcription-system", + "name": "Computer Aided Transcription System", + "url": "/v1/software/computer-aided-transcription-system" + }, + { + "slug": "computer-model-railroad-interface", + "name": "Computer Model Railroad Interface", + "url": "/v1/software/computer-model-railroad-interface" + }, + { + "slug": "computer-online-forensic-evidence-extractor", + "name": "Computer Online Forensic Evidence Extractor", + "url": "/v1/software/computer-online-forensic-evidence-extractor" + }, + { + "slug": "computer-program-to-calculate-emissions-from-road-transport", + "name": "Computer Program to Calculate Emissions from Road Transport", + "url": "/v1/software/computer-program-to-calculate-emissions-from-road-transport" + }, + { + "slug": "computer-and-internet-protocol-address-verifier", + "name": "Computer and Internet Protocol Address Verifier", + "url": "/v1/software/computer-and-internet-protocol-address-verifier" + }, + { + "slug": "computer-aided-technologies", + "name": "Computer-aided technologies", + "url": "/v1/software/computer-aided-technologies" + }, + { + "slug": "conceptdraw-diagram", + "name": "ConceptDraw DIAGRAM", + "url": "/v1/software/conceptdraw-diagram" + }, + { + "slug": "conceptdraw-mindmap", + "name": "ConceptDraw MINDMAP", + "url": "/v1/software/conceptdraw-mindmap" + }, + { + "slug": "conceptdraw-office", + "name": "ConceptDraw Office", + "url": "/v1/software/conceptdraw-office" + }, + { + "slug": "conceptdraw-project", + "name": "ConceptDraw Project", + "url": "/v1/software/conceptdraw-project" + }, + { + "slug": "concordance", + "name": "Concordance", + "url": "/v1/software/concordance" + }, + { + "slug": "concorde-tsp-solver", + "name": "Concorde TSP Solver", + "url": "/v1/software/concorde-tsp-solver" + }, + { + "slug": "concordle", + "name": "Concordle", + "url": "/v1/software/concordle" + }, + { + "slug": "concraft", + "name": "Concraft", + "url": "/v1/software/concraft" + }, + { + "slug": "concraft-dependencyparser", + "name": "Concraft -> DependencyParser", + "url": "/v1/software/concraft-dependencyparser" + }, + { + "slug": "concraft-nerf", + "name": "Concraft -> Nerf", + "url": "/v1/software/concraft-nerf" + }, + { + "slug": "concraft-sentipejd", + "name": "Concraft -> Sentipejd", + "url": "/v1/software/concraft-sentipejd" + }, + { + "slug": "concraft-spejd", + "name": "Concraft->Spejd", + "url": "/v1/software/concraft-spejd" + }, + { + "slug": "concraft-pl-2-0", + "name": "Concraft-pl 2.0", + "url": "/v1/software/concraft-pl-2-0" + }, + { + "slug": "conda", + "name": "Conda", + "url": "/v1/software/conda" + }, + { + "slug": "conductor", + "name": "Conductor", + "url": "/v1/software/conductor" + }, + { + "slug": "conedakor", + "name": "ConedaKOR", + "url": "/v1/software/conedakor" + }, + { + "slug": "conftool", + "name": "ConfTool", + "url": "/v1/software/conftool" + }, + { + "slug": "confession-a-roman-catholic-app", + "name": "Confession: A Roman Catholic App", + "url": "/v1/software/confession-a-roman-catholic-app" + }, + { + "slug": "confide", + "name": "Confide", + "url": "/v1/software/confide" + }, + { + "slug": "conflict-catcher", + "name": "Conflict Catcher", + "url": "/v1/software/conflict-catcher" + }, + { + "slug": "conflict-resolver", + "name": "Conflict Resolver", + "url": "/v1/software/conflict-resolver" + }, + { + "slug": "connect360", + "name": "Connect360", + "url": "/v1/software/connect360" + }, + { + "slug": "connect-direct", + "name": "Connect:Direct", + "url": "/v1/software/connect-direct" + }, + { + "slug": "connectedtext", + "name": "ConnectedText", + "url": "/v1/software/connectedtext" + }, + { + "slug": "connectivity", + "name": "Connectivity", + "url": "/v1/software/connectivity" + }, + { + "slug": "consed", + "name": "Consed", + "url": "/v1/software/consed" + }, + { + "slug": "console", + "name": "Console", + "url": "/v1/software/console" + }, + { + "slug": "construction-and-analysis-of-distributed-processes", + "name": "Construction and Analysis of Distributed Processes", + "url": "/v1/software/construction-and-analysis-of-distributed-processes" + }, + { + "slug": "constructor", + "name": "Constructor", + "url": "/v1/software/constructor" + }, + { + "slug": "contawords", + "name": "ContaWords", + "url": "/v1/software/contawords" + }, + { + "slug": "contact-95", + "name": "Contact 95", + "url": "/v1/software/contact-95" + }, + { + "slug": "contacts-exporter", + "name": "Contacts Exporter", + "url": "/v1/software/contacts-exporter" + }, + { + "slug": "contemplative-agent", + "name": "Contemplative Agent", + "url": "/v1/software/contemplative-agent" + }, + { + "slug": "contextics", + "name": "Contextics", + "url": "/v1/software/contextics" + }, + { + "slug": "contextli", + "name": "Contextli", + "url": "/v1/software/contextli" + }, + { + "slug": "contig", + "name": "Contig", + "url": "/v1/software/contig" + }, + { + "slug": "contiki-ng", + "name": "Contiki-NG", + "url": "/v1/software/contiki-ng" + }, + { + "slug": "continoprova", + "name": "ContinoProva", + "url": "/v1/software/continoprova" + }, + { + "slug": "continuum", + "name": "Continuum", + "url": "/v1/software/continuum" + }, + { + "slug": "contract-management-software", + "name": "Contract management software", + "url": "/v1/software/contract-management-software" + }, + { + "slug": "contractexpress", + "name": "ContractExpress", + "url": "/v1/software/contractexpress" + }, + { + "slug": "contraption-maker", + "name": "Contraption Maker", + "url": "/v1/software/contraption-maker" + }, + { + "slug": "contrast", + "name": "Contrast", + "url": "/v1/software/contrast" + }, + { + "slug": "contrastive-language-image-pre-training", + "name": "Contrastive Language-Image Pre-Training", + "url": "/v1/software/contrastive-language-image-pre-training" + }, + { + "slug": "control-center", + "name": "Control Center", + "url": "/v1/software/control-center" + }, + { + "slug": "control-block", + "name": "Control block", + "url": "/v1/software/control-block" + }, + { + "slug": "control-m-workload-automation", + "name": "Control-M Workload Automation", + "url": "/v1/software/control-m-workload-automation" + }, + { + "slug": "controlup", + "name": "ControlUp", + "url": "/v1/software/controlup" + }, + { + "slug": "contropedia", + "name": "Contropedia", + "url": "/v1/software/contropedia" + }, + { + "slug": "coolnovo", + "name": "CoolNovo", + "url": "/v1/software/coolnovo" + }, + { + "slug": "coolspeech", + "name": "CoolSpeech", + "url": "/v1/software/coolspeech" + }, + { + "slug": "cooltalk", + "name": "CoolTalk", + "url": "/v1/software/cooltalk" + }, + { + "slug": "cooltext", + "name": "CoolText", + "url": "/v1/software/cooltext" + }, + { + "slug": "cooperating-validity-checker", + "name": "Cooperating Validity Checker", + "url": "/v1/software/cooperating-validity-checker" + }, + { + "slug": "copssh", + "name": "CopSSH", + "url": "/v1/software/copssh" + }, + { + "slug": "copper-project", + "name": "Copper Project", + "url": "/v1/software/copper-project" + }, + { + "slug": "copy9", + "name": "Copy9", + "url": "/v1/software/copy9" + }, + { + "slug": "copycat", + "name": "Copycat", + "url": "/v1/software/copycat" + }, + { + "slug": "core-animation", + "name": "Core Animation", + "url": "/v1/software/core-animation" + }, + { + "slug": "core-data", + "name": "Core Data", + "url": "/v1/software/core-data" + }, + { + "slug": "core-ftp", + "name": "Core FTP", + "url": "/v1/software/core-ftp" + }, + { + "slug": "core-foundation", + "name": "Core Foundation", + "url": "/v1/software/core-foundation" + }, + { + "slug": "core-temp", + "name": "Core Temp", + "url": "/v1/software/core-temp" + }, + { + "slug": "core-fonts-for-the-web", + "name": "Core fonts for the Web", + "url": "/v1/software/core-fonts-for-the-web" + }, + { + "slug": "corel-mediaone", + "name": "Corel MediaOne", + "url": "/v1/software/corel-mediaone" + }, + { + "slug": "corel-presentations", + "name": "Corel Presentations", + "url": "/v1/software/corel-presentations" + }, + { + "slug": "corel-presentations-11", + "name": "Corel Presentations 11", + "url": "/v1/software/corel-presentations-11" + }, + { + "slug": "corel-presentations-7", + "name": "Corel Presentations 7", + "url": "/v1/software/corel-presentations-7" + }, + { + "slug": "corel-print-office-2000", + "name": "Corel Print Office 2000", + "url": "/v1/software/corel-print-office-2000" + }, + { + "slug": "corel-r-a-v-e", + "name": "Corel R.A.V.E.", + "url": "/v1/software/corel-r-a-v-e" + }, + { + "slug": "corel-ventura", + "name": "Corel Ventura", + "url": "/v1/software/corel-ventura" + }, + { + "slug": "cork-pos", + "name": "Cork POS", + "url": "/v1/software/cork-pos" + }, + { + "slug": "cornell-notes-pdf-generator", + "name": "Cornell Notes PDF Generator", + "url": "/v1/software/cornell-notes-pdf-generator" + }, + { + "slug": "cornerstone", + "name": "Cornerstone", + "url": "/v1/software/cornerstone" + }, + { + "slug": "coronamelder", + "name": "CoronaMelder", + "url": "/v1/software/coronamelder" + }, + { + "slug": "corpkit", + "name": "Corpkit", + "url": "/v1/software/corpkit" + }, + { + "slug": "corporify", + "name": "Corporify", + "url": "/v1/software/corporify" + }, + { + "slug": "corpusexplorer", + "name": "CorpusExplorer", + "url": "/v1/software/corpusexplorer" + }, + { + "slug": "corpussearch", + "name": "CorpusSearch", + "url": "/v1/software/corpussearch" + }, + { + "slug": "corpussearch-2", + "name": "CorpusSearch 2", + "url": "/v1/software/corpussearch-2" + }, + { + "slug": "correlizer", + "name": "Correlizer", + "url": "/v1/software/correlizer" + }, + { + "slug": "cosm", + "name": "Cosm", + "url": "/v1/software/cosm" + }, + { + "slug": "cosmotool", + "name": "CosmoTool", + "url": "/v1/software/cosmotool" + }, + { + "slug": "cosmology-home", + "name": "Cosmology@Home", + "url": "/v1/software/cosmology-home" + }, + { + "slug": "cosmos", + "name": "Cosmos", + "url": "/v1/software/cosmos" + }, + { + "slug": "couchbase-lite", + "name": "Couchbase Lite", + "url": "/v1/software/couchbase-lite" + }, + { + "slug": "couenne", + "name": "Couenne", + "url": "/v1/software/couenne" + }, + { + "slug": "counterclaim-skill-pack", + "name": "Counterclaim (skill pack)", + "url": "/v1/software/counterclaim-skill-pack" + }, + { + "slug": "counterparty", + "name": "Counterparty", + "url": "/v1/software/counterparty" + }, + { + "slug": "counterspy", + "name": "Counterspy", + "url": "/v1/software/counterspy" + }, + { + "slug": "couple", + "name": "Couple", + "url": "/v1/software/couple" + }, + { + "slug": "courier", + "name": "Courier", + "url": "/v1/software/courier" + }, + { + "slug": "cover-flow", + "name": "Cover Flow", + "url": "/v1/software/cover-flow" + }, + { + "slug": "coverme", + "name": "CoverMe", + "url": "/v1/software/coverme" + }, + { + "slug": "cowo", + "name": "Cowo", + "url": "/v1/software/cowo" + }, + { + "slug": "cozi-central", + "name": "Cozi Central", + "url": "/v1/software/cozi-central" + }, + { + "slug": "cozy", + "name": "Cozy", + "url": "/v1/software/cozy" + }, + { + "slug": "cports", + "name": "Cports", + "url": "/v1/software/cports" + }, + { + "slug": "cppdepend", + "name": "Cppdepend", + "url": "/v1/software/cppdepend" + }, + { + "slug": "cpudyn", + "name": "Cpudyn", + "url": "/v1/software/cpudyn" + }, + { + "slug": "cracks-software", + "name": "Cracks (software)", + "url": "/v1/software/cracks-software" + }, + { + "slug": "craftstudio", + "name": "CraftStudio", + "url": "/v1/software/craftstudio" + }, + { + "slug": "craftercms", + "name": "CrafterCMS", + "url": "/v1/software/craftercms" + }, + { + "slug": "cram", + "name": "Cram", + "url": "/v1/software/cram" + }, + { + "slug": "cranelift", + "name": "Cranelift", + "url": "/v1/software/cranelift" + }, + { + "slug": "crank-storyboard-suite", + "name": "Crank Storyboard Suite", + "url": "/v1/software/crank-storyboard-suite" + }, + { + "slug": "crash-reporter", + "name": "Crash Reporter", + "url": "/v1/software/crash-reporter" + }, + { + "slug": "crawdad-text-analysis-software", + "name": "Crawdad Text Analysis Software", + "url": "/v1/software/crawdad-text-analysis-software" + }, + { + "slug": "crayola-art-studio", + "name": "Crayola Art Studio", + "url": "/v1/software/crayola-art-studio" + }, + { + "slug": "crazytalk", + "name": "Crazytalk", + "url": "/v1/software/crazytalk" + }, + { + "slug": "creacode-sip-application-server", + "name": "Creacode SIP Application Server", + "url": "/v1/software/creacode-sip-application-server" + }, + { + "slug": "creatio", + "name": "Creatio", + "url": "/v1/software/creatio" + }, + { + "slug": "creator", + "name": "Creator", + "url": "/v1/software/creator" + }, + { + "slug": "credit", + "name": "Credit", + "url": "/v1/software/credit" + }, + { + "slug": "credyt", + "name": "Credyt", + "url": "/v1/software/credyt" + }, + { + "slug": "creo-elements-view", + "name": "Creo Elements/View", + "url": "/v1/software/creo-elements-view" + }, + { + "slug": "crewai", + "name": "CrewAI", + "url": "/v1/software/crewai" + }, + { + "slug": "cricketdraw", + "name": "CricketDraw", + "url": "/v1/software/cricketdraw" + }, + { + "slug": "cricketgraph", + "name": "CricketGraph", + "url": "/v1/software/cricketgraph" + }, + { + "slug": "crimeanalyst", + "name": "CrimeAnalyst", + "url": "/v1/software/crimeanalyst" + }, + { + "slug": "crimeview", + "name": "CrimeView", + "url": "/v1/software/crimeview" + }, + { + "slug": "criticaliq", + "name": "CriticalIQ", + "url": "/v1/software/criticaliq" + }, + { + "slug": "critterding", + "name": "Critterding", + "url": "/v1/software/critterding" + }, + { + "slug": "croixleur-sigma", + "name": "Croixleur Sigma", + "url": "/v1/software/croixleur-sigma" + }, + { + "slug": "cronus-emulator", + "name": "Cronus-Emulator", + "url": "/v1/software/cronus-emulator" + }, + { + "slug": "croquet-project", + "name": "Croquet Project", + "url": "/v1/software/croquet-project" + }, + { + "slug": "cross-crossdj", + "name": "Cross/CrossDJ", + "url": "/v1/software/cross-crossdj" + }, + { + "slug": "crossconvert", + "name": "CrossConvert", + "url": "/v1/software/crossconvert" + }, + { + "slug": "crossdos", + "name": "CrossDOS", + "url": "/v1/software/crossdos" + }, + { + "slug": "crossftp", + "name": "CrossFTP", + "url": "/v1/software/crossftp" + }, + { + "slug": "crossfilter", + "name": "Crossfilter", + "url": "/v1/software/crossfilter" + }, + { + "slug": "crossig", + "name": "Crossig", + "url": "/v1/software/crossig" + }, + { + "slug": "crowd", + "name": "Crowd", + "url": "/v1/software/crowd" + }, + { + "slug": "crowdmap", + "name": "Crowdmap", + "url": "/v1/software/crowdmap" + }, + { + "slug": "crowdsource", + "name": "Crowdsource", + "url": "/v1/software/crowdsource" + }, + { + "slug": "crucible-q5189793", + "name": "Crucible", + "url": "/v1/software/crucible-q5189793" + }, + { + "slug": "crucible", + "name": "Crucible", + "url": "/v1/software/crucible" + }, + { + "slug": "crunchycleaner", + "name": "CrunchyCleaner", + "url": "/v1/software/crunchycleaner" + }, + { + "slug": "cryptload", + "name": "CryptLoad", + "url": "/v1/software/cryptload" + }, + { + "slug": "cryptograf", + "name": "CryptoGraf", + "url": "/v1/software/cryptograf" + }, + { + "slug": "cryptopro", + "name": "CryptoPro", + "url": "/v1/software/cryptopro" + }, + { + "slug": "cryptoverif", + "name": "CryptoVerif", + "url": "/v1/software/cryptoverif" + }, + { + "slug": "crystbox", + "name": "CrysTBox", + "url": "/v1/software/crystbox" + }, + { + "slug": "crystal-analysis", + "name": "Crystal Analysis", + "url": "/v1/software/crystal-analysis" + }, + { + "slug": "crystal-enterprise", + "name": "Crystal Enterprise", + "url": "/v1/software/crystal-enterprise" + }, + { + "slug": "crystal-reports-q60815906", + "name": "Crystal Reports", + "url": "/v1/software/crystal-reports-q60815906" + }, + { + "slug": "crystal-reports", + "name": "Crystal Reports", + "url": "/v1/software/crystal-reports" + }, + { + "slug": "crystalexplorer", + "name": "CrystalExplorer", + "url": "/v1/software/crystalexplorer" + }, + { + "slug": "cshell", + "name": "Cshell", + "url": "/v1/software/cshell" + }, + { + "slug": "csmith", + "name": "Csmith", + "url": "/v1/software/csmith" + }, + { + "slug": "cupy", + "name": "CuPy", + "url": "/v1/software/cupy" + }, + { + "slug": "cubepdf", + "name": "CubePDF", + "url": "/v1/software/cubepdf" + }, + { + "slug": "cubeport", + "name": "CubePort", + "url": "/v1/software/cubeport" + }, + { + "slug": "cubes", + "name": "Cubes", + "url": "/v1/software/cubes" + }, + { + "slug": "cuckoochess", + "name": "Cuckoochess", + "url": "/v1/software/cuckoochess" + }, + { + "slug": "cuddlr", + "name": "Cuddlr", + "url": "/v1/software/cuddlr" + }, + { + "slug": "cufflinks", + "name": "Cufflinks", + "url": "/v1/software/cufflinks" + }, + { + "slug": "cuisine-libre", + "name": "Cuisine Libre", + "url": "/v1/software/cuisine-libre" + }, + { + "slug": "culinary-explorer", + "name": "Culinary Explorer", + "url": "/v1/software/culinary-explorer" + }, + { + "slug": "culturalanalytics", + "name": "CulturalAnalytics", + "url": "/v1/software/culturalanalytics" + }, + { + "slug": "cumulus", + "name": "Cumulus", + "url": "/v1/software/cumulus" + }, + { + "slug": "cumulus-linux", + "name": "Cumulus Linux", + "url": "/v1/software/cumulus-linux" + }, + { + "slug": "cups-pdf", + "name": "Cups-pdf", + "url": "/v1/software/cups-pdf" + }, + { + "slug": "curacy", + "name": "Curacy", + "url": "/v1/software/curacy" + }, + { + "slug": "curl-loader", + "name": "Curl-loader", + "url": "/v1/software/curl-loader" + }, + { + "slug": "custom-virtual-keyboard", + "name": "Custom Virtual Keyboard", + "url": "/v1/software/custom-virtual-keyboard" + }, + { + "slug": "customer-account-data-engine", + "name": "Customer Account Data Engine", + "url": "/v1/software/customer-account-data-engine" + }, + { + "slug": "customerhero", + "name": "CustomerHero", + "url": "/v1/software/customerhero" + }, + { + "slug": "cutepdf", + "name": "CutePDF", + "url": "/v1/software/cutepdf" + }, + { + "slug": "cutepeaks", + "name": "CutePeaks", + "url": "/v1/software/cutepeaks" + }, + { + "slug": "cu-dalos", + "name": "Cuídalos", + "url": "/v1/software/cu-dalos" + }, + { + "slug": "cvsgraph", + "name": "CvsGraph", + "url": "/v1/software/cvsgraph" + }, + { + "slug": "cway", + "name": "Cway", + "url": "/v1/software/cway" + }, + { + "slug": "cwm", + "name": "Cwm", + "url": "/v1/software/cwm" + }, + { + "slug": "cwtch-im", + "name": "Cwtch.im", + "url": "/v1/software/cwtch-im" + }, + { + "slug": "cyverse", + "name": "CyVerse", + "url": "/v1/software/cyverse" + }, + { + "slug": "cyber-chief", + "name": "Cyber Chief", + "url": "/v1/software/cyber-chief" + }, + { + "slug": "cyber-diva", + "name": "Cyber Diva", + "url": "/v1/software/cyber-diva" + }, + { + "slug": "cyber-songman", + "name": "Cyber Songman", + "url": "/v1/software/cyber-songman" + }, + { + "slug": "cyber-studio-cad-3d", + "name": "Cyber Studio CAD-3D", + "url": "/v1/software/cyber-studio-cad-3d" + }, + { + "slug": "cyberextension", + "name": "CyberExtension", + "url": "/v1/software/cyberextension" + }, + { + "slug": "cyberghost-vpn", + "name": "CyberGhost VPN", + "url": "/v1/software/cyberghost-vpn" + }, + { + "slug": "cyberlink-media-suite", + "name": "CyberLink Media Suite", + "url": "/v1/software/cyberlink-media-suite" + }, + { + "slug": "cyberlink-mediashow", + "name": "CyberLink MediaShow", + "url": "/v1/software/cyberlink-mediashow" + }, + { + "slug": "cybertracker", + "name": "CyberTracker", + "url": "/v1/software/cybertracker" + }, + { + "slug": "cyberdog", + "name": "Cyberdog", + "url": "/v1/software/cyberdog" + }, + { + "slug": "cycada", + "name": "Cycada", + "url": "/v1/software/cycada" + }, + { + "slug": "cyclescape", + "name": "Cyclescape", + "url": "/v1/software/cyclescape" + }, + { + "slug": "cycliqplus-firmware-updater", + "name": "CycliqPlus Firmware Updater", + "url": "/v1/software/cycliqplus-firmware-updater" + }, + { + "slug": "cycliqplus-for-desktop", + "name": "CycliqPlus for Desktop", + "url": "/v1/software/cycliqplus-for-desktop" + }, + { + "slug": "cyclopedia", + "name": "Cyclopedia", + "url": "/v1/software/cyclopedia" + }, + { + "slug": "cycloramic", + "name": "Cycloramic", + "url": "/v1/software/cycloramic" + }, + { + "slug": "cyphal", + "name": "Cyphal", + "url": "/v1/software/cyphal" + }, + { + "slug": "cypress", + "name": "Cypress", + "url": "/v1/software/cypress" + }, + { + "slug": "d-d-insider", + "name": "D&D Insider", + "url": "/v1/software/d-d-insider" + }, + { + "slug": "d3dmetal", + "name": "D3DMetal", + "url": "/v1/software/d3dmetal" + }, + { + "slug": "daa2iso", + "name": "DAA2ISO", + "url": "/v1/software/daa2iso" + }, + { + "slug": "daime-package-for-r", + "name": "DAIME package for R", + "url": "/v1/software/daime-package-for-r" + }, + { + "slug": "dariah-eldah-consent-form-wizard-cfw", + "name": "DARIAH ELDAH Consent Form Wizard (CFW)", + "url": "/v1/software/dariah-eldah-consent-form-wizard-cfw" + }, + { + "slug": "dariah-de-collection-registry", + "name": "DARIAH-DE Collection Registry", + "url": "/v1/software/dariah-de-collection-registry" + }, + { + "slug": "dariah-de-data-modeling-environment", + "name": "DARIAH-DE Data Modeling Environment", + "url": "/v1/software/dariah-de-data-modeling-environment" + }, + { + "slug": "dariah-de-generic-search", + "name": "DARIAH-DE Generic Search", + "url": "/v1/software/dariah-de-generic-search" + }, + { + "slug": "dariah-de-hedgedoc", + "name": "DARIAH-DE Hedgedoc", + "url": "/v1/software/dariah-de-hedgedoc" + }, + { + "slug": "dariah-de-mailing-lists", + "name": "DARIAH-DE Mailing lists", + "url": "/v1/software/dariah-de-mailing-lists" + }, + { + "slug": "dariah-de-openproject", + "name": "DARIAH-DE OpenProject", + "url": "/v1/software/dariah-de-openproject" + }, + { + "slug": "dariah-de-publikator", + "name": "DARIAH-DE Publikator", + "url": "/v1/software/dariah-de-publikator" + }, + { + "slug": "dariah-de-repository-dhrep", + "name": "DARIAH-DE Repository dhrep", + "url": "/v1/software/dariah-de-repository-dhrep" + }, + { + "slug": "dariah-de-survey-provisioning", + "name": "DARIAH-DE Survey Provisioning", + "url": "/v1/software/dariah-de-survey-provisioning" + }, + { + "slug": "dariah-de-topicsexplorer", + "name": "DARIAH-DE TopicsExplorer", + "url": "/v1/software/dariah-de-topicsexplorer" + }, + { + "slug": "dariah-de-working-papers", + "name": "DARIAH-DE Working Papers", + "url": "/v1/software/dariah-de-working-papers" + }, + { + "slug": "dart", + "name": "DART", + "url": "/v1/software/dart" + }, + { + "slug": "datacom-db", + "name": "DATACOM/DB", + "url": "/v1/software/datacom-db" + }, + { + "slug": "david", + "name": "DAVID", + "url": "/v1/software/david" + }, + { + "slug": "dax", + "name": "DAX", + "url": "/v1/software/dax" + }, + { + "slug": "daz-studio", + "name": "DAZ Studio", + "url": "/v1/software/daz-studio" + }, + { + "slug": "darcmail", + "name": "DArcMail", + "url": "/v1/software/darcmail" + }, + { + "slug": "dave", + "name": "DAvE", + "url": "/v1/software/dave" + }, + { + "slug": "db-hub", + "name": "DB Hub", + "url": "/v1/software/db-hub" + }, + { + "slug": "db2-udb", + "name": "DB2 UDB", + "url": "/v1/software/db2-udb" + }, + { + "slug": "dbfree", + "name": "DBFree", + "url": "/v1/software/dbfree" + }, + { + "slug": "dbgallery", + "name": "DBGallery", + "url": "/v1/software/dbgallery" + }, + { + "slug": "dbomp", + "name": "DBOMP", + "url": "/v1/software/dbomp" + }, + { + "slug": "dbeaver", + "name": "DBeaver", + "url": "/v1/software/dbeaver" + }, + { + "slug": "dbpedia-spotlight", + "name": "DBpedia Spotlight", + "url": "/v1/software/dbpedia-spotlight" + }, + { + "slug": "dcmtk", + "name": "DCMTK", + "url": "/v1/software/dcmtk" + }, + { + "slug": "decent-network", + "name": "DECENT Network", + "url": "/v1/software/decent-network" + }, + { + "slug": "decimer", + "name": "DECIMER", + "url": "/v1/software/decimer" + }, + { + "slug": "dehy", + "name": "DEHY", + "url": "/v1/software/dehy" + }, + { + "slug": "delmia", + "name": "DELMIA", + "url": "/v1/software/delmia" + }, + { + "slug": "denis-home", + "name": "DENIS@Home", + "url": "/v1/software/denis-home" + }, + { + "slug": "deredec", + "name": "DEREDEC", + "url": "/v1/software/deredec" + }, + { + "slug": "desi-iii", + "name": "DESI-III", + "url": "/v1/software/desi-iii" + }, + { + "slug": "devonthink", + "name": "DEVONthink", + "url": "/v1/software/devonthink" + }, + { + "slug": "dfbnet", + "name": "DFBnet", + "url": "/v1/software/dfbnet" + }, + { + "slug": "dfg-viewer", + "name": "DFG Viewer", + "url": "/v1/software/dfg-viewer" + }, + { + "slug": "dfsms", + "name": "DFSMS", + "url": "/v1/software/dfsms" + }, + { + "slug": "dfsmsdfp", + "name": "DFSMSdfp", + "url": "/v1/software/dfsmsdfp" + }, + { + "slug": "dh-press", + "name": "DH Press", + "url": "/v1/software/dh-press" + }, + { + "slug": "dhtmlx", + "name": "DHTMLX", + "url": "/v1/software/dhtmlx" + }, + { + "slug": "dhd-blog", + "name": "DHd Blog", + "url": "/v1/software/dhd-blog" + }, + { + "slug": "diastext", + "name": "DIASTEXT", + "url": "/v1/software/diastext" + }, + { + "slug": "dialux", + "name": "DIAlux", + "url": "/v1/software/dialux" + }, + { + "slug": "dimag", + "name": "DIMAG", + "url": "/v1/software/dimag" + }, + { + "slug": "dips", + "name": "DIPS", + "url": "/v1/software/dips" + }, + { + "slug": "direz", + "name": "DIREZ", + "url": "/v1/software/direz" + }, + { + "slug": "discan", + "name": "DISCAN", + "url": "/v1/software/discan" + }, + { + "slug": "discon", + "name": "DISCON", + "url": "/v1/software/discon" + }, + { + "slug": "dislin", + "name": "DISLIN", + "url": "/v1/software/dislin" + }, + { + "slug": "dispak", + "name": "DISPAK", + "url": "/v1/software/dispak" + }, + { + "slug": "dita-open-toolkit", + "name": "DITA Open Toolkit", + "url": "/v1/software/dita-open-toolkit" + }, + { + "slug": "dj-x", + "name": "DJ X", + "url": "/v1/software/dj-x" + }, + { + "slug": "djv", + "name": "DJV", + "url": "/v1/software/djv" + }, + { + "slug": "dlr-tapas", + "name": "DLR TAPAS", + "url": "/v1/software/dlr-tapas" + }, + { + "slug": "dms-software-reengineering-toolkit", + "name": "DMS Software Reengineering Toolkit", + "url": "/v1/software/dms-software-reengineering-toolkit" + }, + { + "slug": "dmx-desktop", + "name": "DMX Desktop", + "url": "/v1/software/dmx-desktop" + }, + { + "slug": "dnadynamo", + "name": "DNADynamo", + "url": "/v1/software/dnadynamo" + }, + { + "slug": "dnscrypt", + "name": "DNSCrypt", + "url": "/v1/software/dnscrypt" + }, + { + "slug": "dnsmax", + "name": "DNSMax", + "url": "/v1/software/dnsmax" + }, + { + "slug": "do-xr", + "name": "DO XR", + "url": "/v1/software/do-xr" + }, + { + "slug": "dock", + "name": "DOCK", + "url": "/v1/software/dock" + }, + { + "slug": "docs", + "name": "DOCS", + "url": "/v1/software/docs" + }, + { + "slug": "doe-2", + "name": "DOE-2", + "url": "/v1/software/doe-2" + }, + { + "slug": "dolfinx", + "name": "DOLFINx", + "url": "/v1/software/dolfinx" + }, + { + "slug": "dos-shell", + "name": "DOS Shell", + "url": "/v1/software/dos-shell" + }, + { + "slug": "dos-xl", + "name": "DOS XL", + "url": "/v1/software/dos-xl" + }, + { + "slug": "down", + "name": "DOWN", + "url": "/v1/software/down" + }, + { + "slug": "dp-code", + "name": "DP code", + "url": "/v1/software/dp-code" + }, + { + "slug": "dpvs", + "name": "DPVS", + "url": "/v1/software/dpvs" + }, + { + "slug": "drakon-editor", + "name": "DRAKON Editor", + "url": "/v1/software/drakon-editor" + }, + { + "slug": "drotr", + "name": "DROTR", + "url": "/v1/software/drotr" + }, + { + "slug": "ds-game-maker", + "name": "DS Game Maker", + "url": "/v1/software/ds-game-maker" + }, + { + "slug": "ds-2", + "name": "DS-2", + "url": "/v1/software/ds-2" + }, + { + "slug": "dsplayer", + "name": "DSPlayer", + "url": "/v1/software/dsplayer" + }, + { + "slug": "dssat", + "name": "DSSAT", + "url": "/v1/software/dssat" + }, + { + "slug": "dssp", + "name": "DSSP", + "url": "/v1/software/dssp" + }, + { + "slug": "dta-gview", + "name": "DTA GView", + "url": "/v1/software/dta-gview" + }, + { + "slug": "dts-1", + "name": "DTS-1", + "url": "/v1/software/dts-1" + }, + { + "slug": "ducs", + "name": "DUCS", + "url": "/v1/software/ducs" + }, + { + "slug": "dvb-dream", + "name": "DVB Dream", + "url": "/v1/software/dvb-dream" + }, + { + "slug": "dvbviewer", + "name": "DVBViewer", + "url": "/v1/software/dvbviewer" + }, + { + "slug": "dvd-identifier", + "name": "DVD Identifier", + "url": "/v1/software/dvd-identifier" + }, + { + "slug": "dvd-player-q3700591", + "name": "DVD Player", + "url": "/v1/software/dvd-player-q3700591" + }, + { + "slug": "dvd-player", + "name": "DVD Player", + "url": "/v1/software/dvd-player" + }, + { + "slug": "dvd-profiler", + "name": "DVD Profiler", + "url": "/v1/software/dvd-profiler" + }, + { + "slug": "dvd-shrink", + "name": "DVD Shrink", + "url": "/v1/software/dvd-shrink" + }, + { + "slug": "dvd-studio-pro", + "name": "DVD Studio Pro", + "url": "/v1/software/dvd-studio-pro" + }, + { + "slug": "dvd-x-copy", + "name": "DVD X Copy", + "url": "/v1/software/dvd-x-copy" + }, + { + "slug": "dvd43", + "name": "DVD43", + "url": "/v1/software/dvd43" + }, + { + "slug": "dvdfab", + "name": "DVDFab", + "url": "/v1/software/dvdfab" + }, + { + "slug": "dvdinfo", + "name": "DVDInfo", + "url": "/v1/software/dvdinfo" + }, + { + "slug": "dxplain", + "name": "DXplain", + "url": "/v1/software/dxplain" + }, + { + "slug": "dyas-humanities-thesaurus", + "name": "DYAS Humanities Thesaurus", + "url": "/v1/software/dyas-humanities-thesaurus" + }, + { + "slug": "dacy", + "name": "DaCy", + "url": "/v1/software/dacy" + }, + { + "slug": "dabbler", + "name": "Dabbler", + "url": "/v1/software/dabbler" + }, + { + "slug": "daedalmap", + "name": "DaedalMap", + "url": "/v1/software/daedalmap" + }, + { + "slug": "daemon-tools", + "name": "Daemon Tools", + "url": "/v1/software/daemon-tools" + }, + { + "slug": "daemon-vector", + "name": "Daemon Vector", + "url": "/v1/software/daemon-vector" + }, + { + "slug": "daftar", + "name": "Daftar", + "url": "/v1/software/daftar" + }, + { + "slug": "daina", + "name": "Daina", + "url": "/v1/software/daina" + }, + { + "slug": "dairia-ia", + "name": "Dairia IA", + "url": "/v1/software/dairia-ia" + }, + { + "slug": "daisydisk", + "name": "DaisyDisk", + "url": "/v1/software/daisydisk" + }, + { + "slug": "dakhl-o-kharj", + "name": "Dakhl o Kharj", + "url": "/v1/software/dakhl-o-kharj" + }, + { + "slug": "daksh902", + "name": "Daksh902", + "url": "/v1/software/daksh902" + }, + { + "slug": "dalton", + "name": "Dalton", + "url": "/v1/software/dalton" + }, + { + "slug": "dalvik-turbo-virtual-machine", + "name": "Dalvik Turbo virtual machine", + "url": "/v1/software/dalvik-turbo-virtual-machine" + }, + { + "slug": "damos", + "name": "Damos", + "url": "/v1/software/damos" + }, + { + "slug": "dance-party", + "name": "Dance Party", + "url": "/v1/software/dance-party" + }, + { + "slug": "daos", + "name": "Daos", + "url": "/v1/software/daos" + }, + { + "slug": "daria-s-sick-sad-life-planner", + "name": "Daria's Sick, Sad Life Planner", + "url": "/v1/software/daria-s-sick-sad-life-planner" + }, + { + "slug": "darkbasic-professional", + "name": "DarkBASIC Professional", + "url": "/v1/software/darkbasic-professional" + }, + { + "slug": "darna-tchad", + "name": "Darna Tchad", + "url": "/v1/software/darna-tchad" + }, + { + "slug": "das-element", + "name": "Das Element", + "url": "/v1/software/das-element" + }, + { + "slug": "dasboot", + "name": "DasBoot", + "url": "/v1/software/dasboot" + }, + { + "slug": "dash-radio", + "name": "Dash Radio", + "url": "/v1/software/dash-radio" + }, + { + "slug": "dasho", + "name": "DashO", + "url": "/v1/software/dasho" + }, + { + "slug": "dashboard", + "name": "Dashboard", + "url": "/v1/software/dashboard" + }, + { + "slug": "dashboard-of-sustainability", + "name": "Dashboard of Sustainability", + "url": "/v1/software/dashboard-of-sustainability" + }, + { + "slug": "dashcode", + "name": "Dashcode", + "url": "/v1/software/dashcode" + }, + { + "slug": "data-corruptor", + "name": "Data Corruptor", + "url": "/v1/software/data-corruptor" + }, + { + "slug": "data-desk-q126084903", + "name": "Data Desk", + "url": "/v1/software/data-desk-q126084903" + }, + { + "slug": "data-desk", + "name": "Data Desk", + "url": "/v1/software/data-desk" + }, + { + "slug": "data-dictionary-generator-ddg", + "name": "Data Dictionary Generator (DDG)", + "url": "/v1/software/data-dictionary-generator-ddg" + }, + { + "slug": "data-facility-product", + "name": "Data Facility Product", + "url": "/v1/software/data-facility-product" + }, + { + "slug": "data-foundry-jupyter-notebooks", + "name": "Data Foundry - Jupyter Notebooks", + "url": "/v1/software/data-foundry-jupyter-notebooks" + }, + { + "slug": "data-loader", + "name": "Data Loader", + "url": "/v1/software/data-loader" + }, + { + "slug": "data-model-api", + "name": "Data Model API", + "url": "/v1/software/data-model-api" + }, + { + "slug": "data-stewardship-wizard", + "name": "Data Stewardship Wizard", + "url": "/v1/software/data-stewardship-wizard" + }, + { + "slug": "data-studio", + "name": "Data Studio", + "url": "/v1/software/data-studio" + }, + { + "slug": "data-toolbar", + "name": "Data Toolbar", + "url": "/v1/software/data-toolbar" + }, + { + "slug": "data-version-control", + "name": "Data Version Control", + "url": "/v1/software/data-version-control" + }, + { + "slug": "data-for-research-dfr", + "name": "Data for Research (DFR)", + "url": "/v1/software/data-for-research-dfr" + }, + { + "slug": "data-illustrator", + "name": "Data-illustrator", + "url": "/v1/software/data-illustrator" + }, + { + "slug": "datacad", + "name": "DataCAD", + "url": "/v1/software/datacad" + }, + { + "slug": "datadetective", + "name": "DataDetective", + "url": "/v1/software/datadetective" + }, + { + "slug": "dataflex", + "name": "DataFlex", + "url": "/v1/software/dataflex" + }, + { + "slug": "datagraph", + "name": "DataGraph", + "url": "/v1/software/datagraph" + }, + { + "slug": "datahero", + "name": "DataHero", + "url": "/v1/software/datahero" + }, + { + "slug": "datalad", + "name": "DataLad", + "url": "/v1/software/datalad" + }, + { + "slug": "dataobjects-net", + "name": "DataObjects.NET", + "url": "/v1/software/dataobjects-net" + }, + { + "slug": "datashield", + "name": "DataSHIELD", + "url": "/v1/software/datashield" + }, + { + "slug": "datascene", + "name": "DataScene", + "url": "/v1/software/datascene" + }, + { + "slug": "datatank", + "name": "DataTank", + "url": "/v1/software/datatank" + }, + { + "slug": "database-workbench", + "name": "Database Workbench", + "url": "/v1/software/database-workbench" + }, + { + "slug": "databasespy", + "name": "DatabaseSpy", + "url": "/v1/software/databasespy" + }, + { + "slug": "datacopia", + "name": "Datacopia", + "url": "/v1/software/datacopia" + }, + { + "slug": "dataddo", + "name": "Dataddo", + "url": "/v1/software/dataddo" + }, + { + "slug": "dataplot", + "name": "Dataplot", + "url": "/v1/software/dataplot" + }, + { + "slug": "datasets-load", + "name": "Datasets.load", + "url": "/v1/software/datasets-load" + }, + { + "slug": "datenstrom-yellow", + "name": "Datenstrom Yellow", + "url": "/v1/software/datenstrom-yellow" + }, + { + "slug": "datopian", + "name": "Datopian", + "url": "/v1/software/datopian" + }, + { + "slug": "david-laserscanner", + "name": "David Laserscanner", + "url": "/v1/software/david-laserscanner" + }, + { + "slug": "dawn", + "name": "Dawn", + "url": "/v1/software/dawn" + }, + { + "slug": "daxin", + "name": "Daxin", + "url": "/v1/software/daxin" + }, + { + "slug": "daystream-ai", + "name": "DayStream AI", + "url": "/v1/software/daystream-ai" + }, + { + "slug": "daylio", + "name": "Daylio", + "url": "/v1/software/daylio" + }, + { + "slug": "dbforge-studio-for-mysql", + "name": "DbForge Studio for MySQL", + "url": "/v1/software/dbforge-studio-for-mysql" + }, + { + "slug": "dbforge-studio-for-oracle", + "name": "DbForge Studio for Oracle", + "url": "/v1/software/dbforge-studio-for-oracle" + }, + { + "slug": "dcar", + "name": "Dcar", + "url": "/v1/software/dcar" + }, + { + "slug": "deal-flow", + "name": "Deal Flow", + "url": "/v1/software/deal-flow" + }, + { + "slug": "dealdox", + "name": "DealDox", + "url": "/v1/software/dealdox" + }, + { + "slug": "dealerdesk", + "name": "DealerDesk", + "url": "/v1/software/dealerdesk" + }, + { + "slug": "debezium", + "name": "Debezium", + "url": "/v1/software/debezium" + }, + { + "slug": "debian-alternatives-system", + "name": "Debian Alternatives System", + "url": "/v1/software/debian-alternatives-system" + }, + { + "slug": "debut-video-capture-software", + "name": "Debut Video Capture Software", + "url": "/v1/software/debut-video-capture-software" + }, + { + "slug": "deck", + "name": "Deck", + "url": "/v1/software/deck" + }, + { + "slug": "deck-daemon", + "name": "Deck Daemon", + "url": "/v1/software/deck-daemon" + }, + { + "slug": "decky-loader", + "name": "Decky Loader", + "url": "/v1/software/decky-loader" + }, + { + "slug": "decodoku", + "name": "Decodoku", + "url": "/v1/software/decodoku" + }, + { + "slug": "dede-content-management-system", + "name": "Dede content management system", + "url": "/v1/software/dede-content-management-system" + }, + { + "slug": "deep-dungeons-of-doom", + "name": "Deep Dungeons of Doom", + "url": "/v1/software/deep-dungeons-of-doom" + }, + { + "slug": "deep-fusion", + "name": "Deep Fusion", + "url": "/v1/software/deep-fusion" + }, + { + "slug": "deep-learning-studio", + "name": "Deep Learning Studio", + "url": "/v1/software/deep-learning-studio" + }, + { + "slug": "deep-nostalgia", + "name": "Deep Nostalgia", + "url": "/v1/software/deep-nostalgia" + }, + { + "slug": "deep-zoom", + "name": "Deep Zoom", + "url": "/v1/software/deep-zoom" + }, + { + "slug": "deep-sky-planner", + "name": "Deep-Sky Planner", + "url": "/v1/software/deep-sky-planner" + }, + { + "slug": "deepart", + "name": "DeepArt", + "url": "/v1/software/deepart" + }, + { + "slug": "deepfacelab", + "name": "DeepFaceLab", + "url": "/v1/software/deepfacelab" + }, + { + "slug": "deeperweb", + "name": "DeeperWeb", + "url": "/v1/software/deeperweb" + }, + { + "slug": "deepgrip", + "name": "Deepgrip", + "url": "/v1/software/deepgrip" + }, + { + "slug": "deepnet-explorer", + "name": "Deepnet Explorer", + "url": "/v1/software/deepnet-explorer" + }, + { + "slug": "deepsight", + "name": "Deepsight", + "url": "/v1/software/deepsight" + }, + { + "slug": "defense4all", + "name": "Defense4All", + "url": "/v1/software/defense4all" + }, + { + "slug": "delaunay-tessellation-field-estimator", + "name": "Delaunay tessellation field estimator", + "url": "/v1/software/delaunay-tessellation-field-estimator" + }, + { + "slug": "delay-lama", + "name": "Delay Lama", + "url": "/v1/software/delay-lama" + }, + { + "slug": "delegate", + "name": "DeleGate", + "url": "/v1/software/delegate" + }, + { + "slug": "deleteme", + "name": "DeleteMe", + "url": "/v1/software/deleteme" + }, + { + "slug": "delicious-library", + "name": "Delicious Library", + "url": "/v1/software/delicious-library" + }, + { + "slug": "delivery-biz-pro", + "name": "Delivery Biz Pro", + "url": "/v1/software/delivery-biz-pro" + }, + { + "slug": "dell-mediadirect", + "name": "Dell MediaDirect", + "url": "/v1/software/dell-mediadirect" + }, + { + "slug": "delphish", + "name": "Delphish", + "url": "/v1/software/delphish" + }, + { + "slug": "delta-situational-awareness-system", + "name": "Delta (situational awareness system)", + "url": "/v1/software/delta-situational-awareness-system" + }, + { + "slug": "delta-drawing", + "name": "Delta Drawing", + "url": "/v1/software/delta-drawing" + }, + { + "slug": "deltarpm", + "name": "DeltaRPM", + "url": "/v1/software/deltarpm" + }, + { + "slug": "delve-deeper", + "name": "Delve Deeper", + "url": "/v1/software/delve-deeper" + }, + { + "slug": "demodokos-foundry", + "name": "Demodokos Foundry", + "url": "/v1/software/demodokos-foundry" + }, + { + "slug": "dendral", + "name": "Dendral", + "url": "/v1/software/dendral" + }, + { + "slug": "density-design-knot", + "name": "Density Design - Knot", + "url": "/v1/software/density-design-knot" + }, + { + "slug": "denwer", + "name": "Denwer", + "url": "/v1/software/denwer" + }, + { + "slug": "dependabot", + "name": "Dependabot", + "url": "/v1/software/dependabot" + }, + { + "slug": "deprem-wiki", + "name": "Deprem Wiki", + "url": "/v1/software/deprem-wiki" + }, + { + "slug": "design-rule-for-camera-file-system", + "name": "Design rule for Camera File system", + "url": "/v1/software/design-rule-for-camera-file-system" + }, + { + "slug": "designspark-mechanical", + "name": "DesignSpark Mechanical", + "url": "/v1/software/designspark-mechanical" + }, + { + "slug": "designspark-pcb-pro", + "name": "DesignSpark PCB Pro", + "url": "/v1/software/designspark-pcb-pro" + }, + { + "slug": "designbox", + "name": "Designbox", + "url": "/v1/software/designbox" + }, + { + "slug": "design-expert", + "name": "Design–Expert", + "url": "/v1/software/design-expert" + }, + { + "slug": "deskalerts", + "name": "DeskAlerts", + "url": "/v1/software/deskalerts" + }, + { + "slug": "deskmate", + "name": "DeskMate", + "url": "/v1/software/deskmate" + }, + { + "slug": "deskmemo", + "name": "DeskMemo", + "url": "/v1/software/deskmemo" + }, + { + "slug": "deskspace", + "name": "DeskSpace", + "url": "/v1/software/deskspace" + }, + { + "slug": "desktime", + "name": "DeskTime", + "url": "/v1/software/desktime" + }, + { + "slug": "desktop-architect", + "name": "Desktop Architect", + "url": "/v1/software/desktop-architect" + }, + { + "slug": "desktop-destroyer-christmassy", + "name": "Desktop Destroyer Christmassy", + "url": "/v1/software/desktop-destroyer-christmassy" + }, + { + "slug": "desktop-gadget-gallery", + "name": "Desktop Gadget Gallery", + "url": "/v1/software/desktop-gadget-gallery" + }, + { + "slug": "desktop-kanojo", + "name": "Desktop Kanojo", + "url": "/v1/software/desktop-kanojo" + }, + { + "slug": "desktoptwo", + "name": "DesktopTwo", + "url": "/v1/software/desktoptwo" + }, + { + "slug": "desmond", + "name": "Desmond", + "url": "/v1/software/desmond" + }, + { + "slug": "desmos", + "name": "Desmos", + "url": "/v1/software/desmos" + }, + { + "slug": "detailed-city-experience", + "name": "Detailed City Experience", + "url": "/v1/software/detailed-city-experience" + }, + { + "slug": "deveco-studio", + "name": "DevEco Studio", + "url": "/v1/software/deveco-studio" + }, + { + "slug": "devpartner", + "name": "DevPartner", + "url": "/v1/software/devpartner" + }, + { + "slug": "deva", + "name": "Deva", + "url": "/v1/software/deva" + }, + { + "slug": "devast-ace-ii", + "name": "Devast Ace II", + "url": "/v1/software/devast-ace-ii" + }, + { + "slug": "dewesoftx", + "name": "DewesoftX", + "url": "/v1/software/dewesoftx" + }, + { + "slug": "dex", + "name": "Dex", + "url": "/v1/software/dex" + }, + { + "slug": "dfr-browser", + "name": "DfR Browser", + "url": "/v1/software/dfr-browser" + }, + { + "slug": "dhammin", + "name": "Dhammin", + "url": "/v1/software/dhammin" + }, + { + "slug": "dicra", + "name": "DiCRA", + "url": "/v1/software/dicra" + }, + { + "slug": "didi", + "name": "DiDi", + "url": "/v1/software/didi" + }, + { + "slug": "dixim", + "name": "DiXiM", + "url": "/v1/software/dixim" + }, + { + "slug": "dial-gate-softswitch-pbx", + "name": "Dial-Gate Softswitch PBX", + "url": "/v1/software/dial-gate-softswitch-pbx" + }, + { + "slug": "dial-office-ip-pbx", + "name": "Dial-Office IP-PBX", + "url": "/v1/software/dial-office-ip-pbx" + }, + { + "slug": "dialidol", + "name": "DialIdol", + "url": "/v1/software/dialidol" + }, + { + "slug": "dialogos", + "name": "DialogOS", + "url": "/v1/software/dialogos" + }, + { + "slug": "dialogue-assisted-visual-environment-for-geoinformation", + "name": "Dialogue-Assisted Visual Environment for Geoinformation", + "url": "/v1/software/dialogue-assisted-visual-environment-for-geoinformation" + }, + { + "slug": "diamondtouch", + "name": "DiamondTouch", + "url": "/v1/software/diamondtouch" + }, + { + "slug": "diction", + "name": "Diction", + "url": "/v1/software/diction" + }, + { + "slug": "dictionary", + "name": "Dictionary", + "url": "/v1/software/dictionary" + }, + { + "slug": "didgeridoo-other-primitive-instruments", + "name": "Didgeridoo & Other Primitive Instruments", + "url": "/v1/software/didgeridoo-other-primitive-instruments" + }, + { + "slug": "didoo-ai", + "name": "Didoo AI", + "url": "/v1/software/didoo-ai" + }, + { + "slug": "diella", + "name": "Diella", + "url": "/v1/software/diella" + }, + { + "slug": "diem", + "name": "Diem", + "url": "/v1/software/diem" + }, + { + "slug": "diff-text", + "name": "Diff-Text", + "url": "/v1/software/diff-text" + }, + { + "slug": "diffpack", + "name": "Diffpack", + "url": "/v1/software/diffpack" + }, + { + "slug": "digg-reader", + "name": "Digg Reader", + "url": "/v1/software/digg-reader" + }, + { + "slug": "dight", + "name": "Dight", + "url": "/v1/software/dight" + }, + { + "slug": "digiguide", + "name": "DigiGuide", + "url": "/v1/software/digiguide" + }, + { + "slug": "digikavach", + "name": "DigiKavach", + "url": "/v1/software/digikavach" + }, + { + "slug": "digiprodify", + "name": "DigiProdify", + "url": "/v1/software/digiprodify" + }, + { + "slug": "digiarty-winx-dvd-ripper-platinum", + "name": "Digiarty WinX DVD Ripper Platinum", + "url": "/v1/software/digiarty-winx-dvd-ripper-platinum" + }, + { + "slug": "digicam-print-channel", + "name": "Digicam Print Channel", + "url": "/v1/software/digicam-print-channel" + }, + { + "slug": "digital-automated-identification-system", + "name": "Digital Automated Identification SYstem", + "url": "/v1/software/digital-automated-identification-system" + }, + { + "slug": "digital-dna", + "name": "Digital DNA", + "url": "/v1/software/digital-dna" + }, + { + "slug": "digital-driver", + "name": "Digital Driver", + "url": "/v1/software/digital-driver" + }, + { + "slug": "digital-electronics-education-and-design-suite", + "name": "Digital Electronics Education and Design Suite", + "url": "/v1/software/digital-electronics-education-and-design-suite" + }, + { + "slug": "digital-information-archiving-system", + "name": "Digital Information Archiving System", + "url": "/v1/software/digital-information-archiving-system" + }, + { + "slug": "digital-libraries-federation", + "name": "Digital Libraries Federation", + "url": "/v1/software/digital-libraries-federation" + }, + { + "slug": "digital-management-of-curatorial-processes-obatal-plug-in", + "name": "Digital Management of Curatorial Processes (Obatalá plug-in)", + "url": "/v1/software/digital-management-of-curatorial-processes-obatal-plug-in" + }, + { + "slug": "digital-mappa", + "name": "Digital Mappa", + "url": "/v1/software/digital-mappa" + }, + { + "slug": "digital-original", + "name": "Digital Original", + "url": "/v1/software/digital-original" + }, + { + "slug": "digital-performer", + "name": "Digital Performer", + "url": "/v1/software/digital-performer" + }, + { + "slug": "digital-photo-professional", + "name": "Digital Photo Professional", + "url": "/v1/software/digital-photo-professional" + }, + { + "slug": "digital-project", + "name": "Digital Project", + "url": "/v1/software/digital-project" + }, + { + "slug": "digital-record-object-identification", + "name": "Digital Record Object Identification", + "url": "/v1/software/digital-record-object-identification" + }, + { + "slug": "digital-visual-fortran", + "name": "Digital Visual Fortran", + "url": "/v1/software/digital-visual-fortran" + }, + { + "slug": "digital-adoption-platform", + "name": "Digital adoption platform", + "url": "/v1/software/digital-adoption-platform" + }, + { + "slug": "digital-factory", + "name": "Digital factory", + "url": "/v1/software/digital-factory" + }, + { + "slug": "digital-repository-audit-method-based-on-risk-assessment", + "name": "Digital repository audit method based on risk assessment", + "url": "/v1/software/digital-repository-audit-method-based-on-risk-assessment" + }, + { + "slug": "digitalbooker", + "name": "DigitalBooker", + "url": "/v1/software/digitalbooker" + }, + { + "slug": "digitalcolor-meter", + "name": "DigitalColor Meter", + "url": "/v1/software/digitalcolor-meter" + }, + { + "slug": "digress-it", + "name": "Digress.it", + "url": "/v1/software/digress-it" + }, + { + "slug": "digsby", + "name": "Digsby", + "url": "/v1/software/digsby" + }, + { + "slug": "diino", + "name": "Diino", + "url": "/v1/software/diino" + }, + { + "slug": "dimensions-cm", + "name": "Dimensions CM", + "url": "/v1/software/dimensions-cm" + }, + { + "slug": "dinocapture", + "name": "DinoCapture", + "url": "/v1/software/dinocapture" + }, + { + "slug": "diptrace", + "name": "DipTrace", + "url": "/v1/software/diptrace" + }, + { + "slug": "dipmeter-advisor", + "name": "Dipmeter Advisor", + "url": "/v1/software/dipmeter-advisor" + }, + { + "slug": "direct3d", + "name": "Direct3D", + "url": "/v1/software/direct3d" + }, + { + "slug": "direct3d-12", + "name": "Direct3D 12", + "url": "/v1/software/direct3d-12" + }, + { + "slug": "directmusic", + "name": "DirectMusic", + "url": "/v1/software/directmusic" + }, + { + "slug": "directskin", + "name": "DirectSkin", + "url": "/v1/software/directskin" + }, + { + "slug": "directsound", + "name": "DirectSound", + "url": "/v1/software/directsound" + }, + { + "slug": "directxshadercompiler", + "name": "DirectXShaderCompiler", + "url": "/v1/software/directxshadercompiler" + }, + { + "slug": "director-musices", + "name": "Director Musices", + "url": "/v1/software/director-musices" + }, + { + "slug": "directory-utility", + "name": "Directory Utility", + "url": "/v1/software/directory-utility" + }, + { + "slug": "disc2phone", + "name": "Disc2Phone", + "url": "/v1/software/disc2phone" + }, + { + "slug": "discover", + "name": "Discover", + "url": "/v1/software/discover" + }, + { + "slug": "discursis", + "name": "Discursis", + "url": "/v1/software/discursis" + }, + { + "slug": "discworld-mudlib", + "name": "Discworld mudlib", + "url": "/v1/software/discworld-mudlib" + }, + { + "slug": "disk-cleanup", + "name": "Disk Cleanup", + "url": "/v1/software/disk-cleanup" + }, + { + "slug": "disk-drill-mac-data-recovery", + "name": "Disk Drill Mac Data Recovery", + "url": "/v1/software/disk-drill-mac-data-recovery" + }, + { + "slug": "disk-first-aid", + "name": "Disk First Aid", + "url": "/v1/software/disk-first-aid" + }, + { + "slug": "disk-manager", + "name": "Disk Manager", + "url": "/v1/software/disk-manager" + }, + { + "slug": "disk-master", + "name": "Disk Master", + "url": "/v1/software/disk-master" + }, + { + "slug": "disk-order", + "name": "Disk Order", + "url": "/v1/software/disk-order" + }, + { + "slug": "disk-utility", + "name": "Disk Utility", + "url": "/v1/software/disk-utility" + }, + { + "slug": "diskcopy", + "name": "DiskCopy", + "url": "/v1/software/diskcopy" + }, + { + "slug": "diskdoubler", + "name": "DiskDoubler", + "url": "/v1/software/diskdoubler" + }, + { + "slug": "diskgenius", + "name": "DiskGenius", + "url": "/v1/software/diskgenius" + }, + { + "slug": "diskimagemounter", + "name": "DiskImageMounter", + "url": "/v1/software/diskimagemounter" + }, + { + "slug": "diskpart", + "name": "DiskPart", + "url": "/v1/software/diskpart" + }, + { + "slug": "disktracker", + "name": "DiskTracker", + "url": "/v1/software/disktracker" + }, + { + "slug": "diskeeper", + "name": "Diskeeper", + "url": "/v1/software/diskeeper" + }, + { + "slug": "diskspd", + "name": "Diskspd", + "url": "/v1/software/diskspd" + }, + { + "slug": "disney-second-screen", + "name": "Disney Second Screen", + "url": "/v1/software/disney-second-screen" + }, + { + "slug": "disney-s-magic-artist-3d", + "name": "Disney's Magic Artist 3D", + "url": "/v1/software/disney-s-magic-artist-3d" + }, + { + "slug": "disney-app", + "name": "Disney+ app", + "url": "/v1/software/disney-app" + }, + { + "slug": "distant-viewing-toolkit", + "name": "Distant Viewing Toolkit", + "url": "/v1/software/distant-viewing-toolkit" + }, + { + "slug": "distributed-image-library-processing-system", + "name": "Distributed Image Library Processing System", + "url": "/v1/software/distributed-image-library-processing-system" + }, + { + "slug": "distributed-oceanographic-data-systems", + "name": "Distributed Oceanographic Data Systems", + "url": "/v1/software/distributed-oceanographic-data-systems" + }, + { + "slug": "distributed-manufacturing", + "name": "Distributed manufacturing", + "url": "/v1/software/distributed-manufacturing" + }, + { + "slug": "diva-js", + "name": "Diva.js", + "url": "/v1/software/diva-js" + }, + { + "slug": "diversion", + "name": "Diversion", + "url": "/v1/software/diversion" + }, + { + "slug": "divineapi", + "name": "DivineAPI", + "url": "/v1/software/divineapi" + }, + { + "slug": "divvycloud", + "name": "DivvyCloud", + "url": "/v1/software/divvycloud" + }, + { + "slug": "django", + "name": "Django", + "url": "/v1/software/django" + }, + { + "slug": "dmailer-backup", + "name": "Dmailer Backup", + "url": "/v1/software/dmailer-backup" + }, + { + "slug": "do-it-again", + "name": "Do It Again", + "url": "/v1/software/do-it-again" + }, + { + "slug": "do3d", + "name": "Do3D", + "url": "/v1/software/do3d" + }, + { + "slug": "donotpay", + "name": "DoNotPay", + "url": "/v1/software/donotpay" + }, + { + "slug": "dock-q140011545", + "name": "Dock", + "url": "/v1/software/dock-q140011545" + }, + { + "slug": "docking-home", + "name": "Docking@Home", + "url": "/v1/software/docking-home" + }, + { + "slug": "docte", + "name": "Docte", + "url": "/v1/software/docte" + }, + { + "slug": "doctorbase", + "name": "DoctorBase", + "url": "/v1/software/doctorbase" + }, + { + "slug": "doctoroncall", + "name": "DoctorOnCall", + "url": "/v1/software/doctoroncall" + }, + { + "slug": "docuburst", + "name": "DocuBurst", + "url": "/v1/software/docuburst" + }, + { + "slug": "docugov-ai", + "name": "DocuGov.ai", + "url": "/v1/software/docugov-ai" + }, + { + "slug": "docuscope", + "name": "DocuScope", + "url": "/v1/software/docuscope" + }, + { + "slug": "docusearch-ai", + "name": "DocuSearch AI", + "url": "/v1/software/docusearch-ai" + }, + { + "slug": "docuware", + "name": "DocuWare", + "url": "/v1/software/docuware" + }, + { + "slug": "document-composition-facility", + "name": "Document Composition Facility", + "url": "/v1/software/document-composition-facility" + }, + { + "slug": "documents", + "name": "Documents", + "url": "/v1/software/documents" + }, + { + "slug": "documents-to-go", + "name": "Documents To Go", + "url": "/v1/software/documents-to-go" + }, + { + "slug": "docus", + "name": "Docus", + "url": "/v1/software/docus" + }, + { + "slug": "docushare", + "name": "Docushare", + "url": "/v1/software/docushare" + }, + { + "slug": "doddle", + "name": "Doddle", + "url": "/v1/software/doddle" + }, + { + "slug": "dog-land", + "name": "Dog Land", + "url": "/v1/software/dog-land" + }, + { + "slug": "dogmamodeler", + "name": "DogmaModeler", + "url": "/v1/software/dogmamodeler" + }, + { + "slug": "dogs-playing-poker", + "name": "Dogs Playing Poker", + "url": "/v1/software/dogs-playing-poker" + }, + { + "slug": "dogtail", + "name": "Dogtail", + "url": "/v1/software/dogtail" + }, + { + "slug": "dolphin-anty", + "name": "Dolphin Anty", + "url": "/v1/software/dolphin-anty" + }, + { + "slug": "dolphin-smalltalk", + "name": "Dolphin Smalltalk", + "url": "/v1/software/dolphin-smalltalk" + }, + { + "slug": "domain-technologie-control", + "name": "Domain Technologie Control", + "url": "/v1/software/domain-technologie-control" + }, + { + "slug": "domeo-annotation-toolkit", + "name": "Domeo Annotation Toolkit", + "url": "/v1/software/domeo-annotation-toolkit" + }, + { + "slug": "dominion", + "name": "Dominion", + "url": "/v1/software/dominion" + }, + { + "slug": "domoai", + "name": "DomoAI", + "url": "/v1/software/domoai" + }, + { + "slug": "doom-modding", + "name": "Doom modding", + "url": "/v1/software/doom-modding" + }, + { + "slug": "doorvault", + "name": "DoorVault", + "url": "/v1/software/doorvault" + }, + { + "slug": "dosbar", + "name": "DosBar", + "url": "/v1/software/dosbar" + }, + { + "slug": "doteditor", + "name": "DotEditor", + "url": "/v1/software/doteditor" + }, + { + "slug": "dottrace", + "name": "DotTrace", + "url": "/v1/software/dottrace" + }, + { + "slug": "double-tools-for-doublespace", + "name": "Double Tools for DoubleSpace", + "url": "/v1/software/double-tools-for-doublespace" + }, + { + "slug": "doubledos", + "name": "DoubleDOS", + "url": "/v1/software/doubledos" + }, + { + "slug": "down-to-lunch", + "name": "Down To Lunch", + "url": "/v1/software/down-to-lunch" + }, + { + "slug": "downthemall", + "name": "DownThemAll", + "url": "/v1/software/downthemall" + }, + { + "slug": "dr-halo", + "name": "Dr. Halo", + "url": "/v1/software/dr-halo" + }, + { + "slug": "dr-sbaitso", + "name": "Dr. Sbaitso", + "url": "/v1/software/dr-sbaitso" + }, + { + "slug": "dracor", + "name": "DraCor", + "url": "/v1/software/dracor" + }, + { + "slug": "dradis-framework", + "name": "Dradis Framework", + "url": "/v1/software/dradis-framework" + }, + { + "slug": "draftsight", + "name": "DraftSight", + "url": "/v1/software/draftsight" + }, + { + "slug": "dragthing", + "name": "DragThing", + "url": "/v1/software/dragthing" + }, + { + "slug": "dragonframe", + "name": "Dragonframe", + "url": "/v1/software/dragonframe" + }, + { + "slug": "dramatica", + "name": "Dramatica", + "url": "/v1/software/dramatica" + }, + { + "slug": "drawmd", + "name": "DrawMD", + "url": "/v1/software/drawmd" + }, + { + "slug": "drawshield", + "name": "DrawShield", + "url": "/v1/software/drawshield" + }, + { + "slug": "dream-keyboard", + "name": "Dream Keyboard", + "url": "/v1/software/dream-keyboard" + }, + { + "slug": "dreambooth", + "name": "DreamBooth", + "url": "/v1/software/dreambooth" + }, + { + "slug": "dreamscape", + "name": "Dreamscape", + "url": "/v1/software/dreamscape" + }, + { + "slug": "dremel", + "name": "Dremel", + "url": "/v1/software/dremel" + }, + { + "slug": "driftnet", + "name": "Driftnet", + "url": "/v1/software/driftnet" + }, + { + "slug": "drive-image", + "name": "Drive Image", + "url": "/v1/software/drive-image" + }, + { + "slug": "drive-letter-access", + "name": "Drive Letter Access", + "url": "/v1/software/drive-letter-access" + }, + { + "slug": "driveworks", + "name": "DriveWorks", + "url": "/v1/software/driveworks" + }, + { + "slug": "driver-easy", + "name": "Driver Easy", + "url": "/v1/software/driver-easy" + }, + { + "slug": "driver-verifier", + "name": "Driver Verifier", + "url": "/v1/software/driver-verifier" + }, + { + "slug": "drivermax", + "name": "DriverMax", + "url": "/v1/software/drivermax" + }, + { + "slug": "drivernest", + "name": "DriverNest", + "url": "/v1/software/drivernest" + }, + { + "slug": "drivin", + "name": "Drivin", + "url": "/v1/software/drivin" + }, + { + "slug": "drone-ci-oss", + "name": "Drone CI OSS", + "url": "/v1/software/drone-ci-oss" + }, + { + "slug": "dronebundle", + "name": "Dronebundle", + "url": "/v1/software/dronebundle" + }, + { + "slug": "dropresolve", + "name": "DropResolve", + "url": "/v1/software/dropresolve" + }, + { + "slug": "dropbox-carousel", + "name": "Dropbox Carousel", + "url": "/v1/software/dropbox-carousel" + }, + { + "slug": "dropbox-paper", + "name": "Dropbox Paper", + "url": "/v1/software/dropbox-paper" + }, + { + "slug": "dropmire", + "name": "Dropmire", + "url": "/v1/software/dropmire" + }, + { + "slug": "dropmyemail", + "name": "Dropmyemail", + "url": "/v1/software/dropmyemail" + }, + { + "slug": "dropship", + "name": "Dropship", + "url": "/v1/software/dropship" + }, + { + "slug": "drug-design-and-optimization-lab", + "name": "Drug Design and Optimization Lab", + "url": "/v1/software/drug-design-and-optimization-lab" + }, + { + "slug": "drugfire", + "name": "Drugfire", + "url": "/v1/software/drugfire" + }, + { + "slug": "drumup", + "name": "DrumUp", + "url": "/v1/software/drumup" + }, + { + "slug": "drync", + "name": "Drync", + "url": "/v1/software/drync" + }, + { + "slug": "dubsmash", + "name": "Dubsmash", + "url": "/v1/software/dubsmash" + }, + { + "slug": "duden-bibliothek", + "name": "Duden-Bibliothek", + "url": "/v1/software/duden-bibliothek" + }, + { + "slug": "duet", + "name": "Duet", + "url": "/v1/software/duet" + }, + { + "slug": "dundas", + "name": "Dundas", + "url": "/v1/software/dundas" + }, + { + "slug": "dungeon-lords-mmxii", + "name": "Dungeon Lords MMXII", + "url": "/v1/software/dungeon-lords-mmxii" + }, + { + "slug": "dungeon-master-s-assistant-volume-i", + "name": "Dungeon Master's Assistant Volume I", + "url": "/v1/software/dungeon-master-s-assistant-volume-i" + }, + { + "slug": "dupdub", + "name": "DupDub", + "url": "/v1/software/dupdub" + }, + { + "slug": "duracloud", + "name": "DuraCloud", + "url": "/v1/software/duracloud" + }, + { + "slug": "durchg-ngige-elektronische-fahrplaninformation", + "name": "Durchgängige elektronische Fahrplaninformation", + "url": "/v1/software/durchg-ngige-elektronische-fahrplaninformation" + }, + { + "slug": "dyalog-apl", + "name": "Dyalog APL", + "url": "/v1/software/dyalog-apl" + }, + { + "slug": "dybuster", + "name": "Dybuster", + "url": "/v1/software/dybuster" + }, + { + "slug": "dymola", + "name": "Dymola", + "url": "/v1/software/dymola" + }, + { + "slug": "dynatext-browser", + "name": "DynaText Browser", + "url": "/v1/software/dynatext-browser" + }, + { + "slug": "dynaweb", + "name": "DynaWeb", + "url": "/v1/software/dynaweb" + }, + { + "slug": "dynalist", + "name": "Dynalist", + "url": "/v1/software/dynalist" + }, + { + "slug": "dynamation", + "name": "Dynamation", + "url": "/v1/software/dynamation" + }, + { + "slug": "dynamic-c", + "name": "Dynamic C", + "url": "/v1/software/dynamic-c" + }, + { + "slug": "dynamic-collateralized-payment-system-process", + "name": "Dynamic Collateralized Payment System Process", + "url": "/v1/software/dynamic-collateralized-payment-system-process" + }, + { + "slug": "dynamic-language-runtime", + "name": "Dynamic Language Runtime", + "url": "/v1/software/dynamic-language-runtime" + }, + { + "slug": "dynamic-leecher-protection", + "name": "Dynamic Leecher Protection", + "url": "/v1/software/dynamic-leecher-protection" + }, + { + "slug": "dynamic-symbols", + "name": "Dynamic Symbols", + "url": "/v1/software/dynamic-symbols" + }, + { + "slug": "dynatrace-software-intelligence-plattform", + "name": "Dynatrace Software Intelligence Plattform", + "url": "/v1/software/dynatrace-software-intelligence-plattform" + }, + { + "slug": "dzen", + "name": "Dzen", + "url": "/v1/software/dzen" + }, + { + "slug": "d-crypthon", + "name": "Décrypthon", + "url": "/v1/software/d-crypthon" + }, + { + "slug": "d-rif-d-rivation-en-fran-ais", + "name": "DériF (Dérivation en Français)", + "url": "/v1/software/d-rif-d-rivation-en-fran-ais" + }, + { + "slug": "e-parser", + "name": "E-Parser", + "url": "/v1/software/e-parser" + }, + { + "slug": "e-sword", + "name": "E-Sword", + "url": "/v1/software/e-sword" + }, + { + "slug": "e-aksharayan", + "name": "E-aksharayan", + "url": "/v1/software/e-aksharayan" + }, + { + "slug": "e-gree", + "name": "E-gree", + "url": "/v1/software/e-gree" + }, + { + "slug": "e-mu-emulator-x", + "name": "E-mu Emulator X", + "url": "/v1/software/e-mu-emulator-x" + }, + { + "slug": "e-on-vue", + "name": "E-on Vue", + "url": "/v1/software/e-on-vue" + }, + { + "slug": "e15", + "name": "E15", + "url": "/v1/software/e15" + }, + { + "slug": "e3-series", + "name": "E3.Series", + "url": "/v1/software/e3-series" + }, + { + "slug": "ea-autolog", + "name": "EA Autolog", + "url": "/v1/software/ea-autolog" + }, + { + "slug": "ea-download-manager", + "name": "EA Download Manager", + "url": "/v1/software/ea-download-manager" + }, + { + "slug": "ea-downloader", + "name": "EA Downloader", + "url": "/v1/software/ea-downloader" + }, + { + "slug": "ease-focus", + "name": "EASE Focus", + "url": "/v1/software/ease-focus" + }, + { + "slug": "eavl", + "name": "EAVL", + "url": "/v1/software/eavl" + }, + { + "slug": "eathena", + "name": "EAthena", + "url": "/v1/software/eathena" + }, + { + "slug": "ebsilon-professional", + "name": "EBSILON Professional", + "url": "/v1/software/ebsilon-professional" + }, + { + "slug": "ec-orange", + "name": "EC Orange", + "url": "/v1/software/ec-orange" + }, + { + "slug": "ec-cube", + "name": "EC-CUBE", + "url": "/v1/software/ec-cube" + }, + { + "slug": "echodamp", + "name": "ECHODamp", + "url": "/v1/software/echodamp" + }, + { + "slug": "ecib", + "name": "ECIB", + "url": "/v1/software/ecib" + }, + { + "slug": "eclair", + "name": "ECLAIR", + "url": "/v1/software/eclair" + }, + { + "slug": "eclipse", + "name": "ECLiPSe", + "url": "/v1/software/eclipse" + }, + { + "slug": "eco", + "name": "ECO", + "url": "/v1/software/eco" + }, + { + "slug": "ecocities", + "name": "ECOCITIES", + "url": "/v1/software/ecocities" + }, + { + "slug": "ecu-test", + "name": "ECU-TEST", + "url": "/v1/software/ecu-test" + }, + { + "slug": "edge", + "name": "EDGE", + "url": "/v1/software/edge" + }, + { + "slug": "edicolor", + "name": "EDICOLOR", + "url": "/v1/software/edicolor" + }, + { + "slug": "efdc-explorer", + "name": "EFDC+ Explorer", + "url": "/v1/software/efdc-explorer" + }, + { + "slug": "egl-development-tools", + "name": "EGL Development Tools", + "url": "/v1/software/egl-development-tools" + }, + { + "slug": "egs", + "name": "EGS", + "url": "/v1/software/egs" + }, + { + "slug": "egword", + "name": "EGWord", + "url": "/v1/software/egword" + }, + { + "slug": "eioffice", + "name": "EIOffice", + "url": "/v1/software/eioffice" + }, + { + "slug": "eka1", + "name": "EKA1", + "url": "/v1/software/eka1" + }, + { + "slug": "eka2l1", + "name": "EKA2L1", + "url": "/v1/software/eka2l1" + }, + { + "slug": "elan-q126084937", + "name": "ELAN", + "url": "/v1/software/elan-q126084937" + }, + { + "slug": "elan", + "name": "ELAN", + "url": "/v1/software/elan" + }, + { + "slug": "elan-software", + "name": "ELAN software", + "url": "/v1/software/elan-software" + }, + { + "slug": "elite", + "name": "ELITE", + "url": "/v1/software/elite" + }, + { + "slug": "eliza", + "name": "ELIZA", + "url": "/v1/software/eliza" + }, + { + "slug": "elmah", + "name": "ELMAH", + "url": "/v1/software/elmah" + }, + { + "slug": "elmo", + "name": "ELMo", + "url": "/v1/software/elmo" + }, + { + "slug": "else", + "name": "ELSE", + "url": "/v1/software/else" + }, + { + "slug": "emc-atmos", + "name": "EMC Atmos", + "url": "/v1/software/emc-atmos" + }, + { + "slug": "emc-scaleio", + "name": "EMC ScaleIO", + "url": "/v1/software/emc-scaleio" + }, + { + "slug": "emf-refactor", + "name": "EMF Refactor", + "url": "/v1/software/emf-refactor" + }, + { + "slug": "emf-teneo-model-relational-database-integration", + "name": "EMF Teneo Model - Relational Database Integration", + "url": "/v1/software/emf-teneo-model-relational-database-integration" + }, + { + "slug": "emft-texo", + "name": "EMFT Texo", + "url": "/v1/software/emft-texo" + }, + { + "slug": "eml-to-csv", + "name": "EML to CSV", + "url": "/v1/software/eml-to-csv" + }, + { + "slug": "eml-to-pdf", + "name": "EML to PDF", + "url": "/v1/software/eml-to-pdf" + }, + { + "slug": "emso-simulator", + "name": "EMSO simulator", + "url": "/v1/software/emso-simulator" + }, + { + "slug": "emx", + "name": "EMX", + "url": "/v1/software/emx" + }, + { + "slug": "enovia", + "name": "ENOVIA", + "url": "/v1/software/enovia" + }, + { + "slug": "enps", + "name": "ENPS", + "url": "/v1/software/enps" + }, + { + "slug": "entropy", + "name": "ENTROPY", + "url": "/v1/software/entropy" + }, + { + "slug": "envi-met", + "name": "ENVI-met", + "url": "/v1/software/envi-met" + }, + { + "slug": "epanet", + "name": "EPANET", + "url": "/v1/software/epanet" + }, + { + "slug": "epi-suite", + "name": "EPI Suite", + "url": "/v1/software/epi-suite" + }, + { + "slug": "epaybl", + "name": "EPayBL", + "url": "/v1/software/epaybl" + }, + { + "slug": "eprints-org", + "name": "EPrints.org", + "url": "/v1/software/eprints-org" + }, + { + "slug": "eqiqs", + "name": "EQIQs", + "url": "/v1/software/eqiqs" + }, + { + "slug": "er-studio", + "name": "ER/Studio", + "url": "/v1/software/er-studio" + }, + { + "slug": "es-file-explorer", + "name": "ES File Explorer", + "url": "/v1/software/es-file-explorer" + }, + { + "slug": "eset-smart-security", + "name": "ESET Smart Security", + "url": "/v1/software/eset-smart-security" + }, + { + "slug": "esg-analytics", + "name": "ESG Analytics", + "url": "/v1/software/esg-analytics" + }, + { + "slug": "esmf", + "name": "ESMF", + "url": "/v1/software/esmf" + }, + { + "slug": "esmtp", + "name": "ESMTP", + "url": "/v1/software/esmtp" + }, + { + "slug": "esp-idf", + "name": "ESP-IDF", + "url": "/v1/software/esp-idf" + }, + { + "slug": "esp-r", + "name": "ESP-r", + "url": "/v1/software/esp-r" + }, + { + "slug": "esphome", + "name": "ESPHome", + "url": "/v1/software/esphome" + }, + { + "slug": "essiv", + "name": "ESSIV", + "url": "/v1/software/essiv" + }, + { + "slug": "estar", + "name": "ESTAR", + "url": "/v1/software/estar" + }, + { + "slug": "estmorf", + "name": "ESTMORF", + "url": "/v1/software/estmorf" + }, + { + "slug": "etaoi-keyboard", + "name": "ETAOI keyboard", + "url": "/v1/software/etaoi-keyboard" + }, + { + "slug": "etap-3", + "name": "ETAP-3", + "url": "/v1/software/etap-3" + }, + { + "slug": "etcpack", + "name": "ETCPACK", + "url": "/v1/software/etcpack" + }, + { + "slug": "etka", + "name": "ETKA", + "url": "/v1/software/etka" + }, + { + "slug": "etrice", + "name": "ETrice", + "url": "/v1/software/etrice" + }, + { + "slug": "euler", + "name": "EULER", + "url": "/v1/software/euler" + }, + { + "slug": "eurac-comparison-arcs", + "name": "EURAC: Comparison Arcs", + "url": "/v1/software/eurac-comparison-arcs" + }, + { + "slug": "eurac-corpus-clouds", + "name": "EURAC: Corpus Clouds", + "url": "/v1/software/eurac-corpus-clouds" + }, + { + "slug": "eurac-double-tree", + "name": "EURAC: Double Tree", + "url": "/v1/software/eurac-double-tree" + }, + { + "slug": "eurac-end-to-end", + "name": "EURAC: End to End", + "url": "/v1/software/eurac-end-to-end" + }, + { + "slug": "eurac-structured-parallel-coordinates", + "name": "EURAC: Structured Parallel Coordinates", + "url": "/v1/software/eurac-structured-parallel-coordinates" + }, + { + "slug": "eurac-interhist", + "name": "EURAC: interHist", + "url": "/v1/software/eurac-interhist" + }, + { + "slug": "evi-linhd", + "name": "EVI-LINHD", + "url": "/v1/software/evi-linhd" + }, + { + "slug": "exam", + "name": "EXAM", + "url": "/v1/software/exam" + }, + { + "slug": "exmaralda", + "name": "EXMARaLDA", + "url": "/v1/software/exmaralda" + }, + { + "slug": "explex", + "name": "EXPLEX", + "url": "/v1/software/explex" + }, + { + "slug": "exs24", + "name": "EXS24", + "url": "/v1/software/exs24" + }, + { + "slug": "ezf-advance", + "name": "EZF Advance", + "url": "/v1/software/ezf-advance" + }, + { + "slug": "ezproxy", + "name": "EZproxy", + "url": "/v1/software/ezproxy" + }, + { + "slug": "eaasi", + "name": "EaaSI", + "url": "/v1/software/eaasi" + }, + { + "slug": "eac3to", + "name": "Eac3to", + "url": "/v1/software/eac3to" + }, + { + "slug": "eagle", + "name": "Eagle", + "url": "/v1/software/eagle" + }, + { + "slug": "eaglecoin", + "name": "EagleCoin", + "url": "/v1/software/eaglecoin" + }, + { + "slug": "eagleget", + "name": "EagleGet", + "url": "/v1/software/eagleget" + }, + { + "slug": "eaglelytics", + "name": "EagleLytics", + "url": "/v1/software/eaglelytics" + }, + { + "slug": "earmaster", + "name": "EarMaster", + "url": "/v1/software/earmaster" + }, + { + "slug": "earlyforge", + "name": "EarlyForge", + "url": "/v1/software/earlyforge" + }, + { + "slug": "earth-simulator", + "name": "Earth Simulator", + "url": "/v1/software/earth-simulator" + }, + { + "slug": "earth-system-grid", + "name": "Earth System Grid", + "url": "/v1/software/earth-system-grid" + }, + { + "slug": "earthbrowser", + "name": "EarthBrowser", + "url": "/v1/software/earthbrowser" + }, + { + "slug": "earthstation-5", + "name": "EarthStation 5", + "url": "/v1/software/earthstation-5" + }, + { + "slug": "earthquake-early-warning", + "name": "Earthquake Early Warning", + "url": "/v1/software/earthquake-early-warning" + }, + { + "slug": "easeus-data-recovery-wizard", + "name": "EaseUS Data Recovery Wizard", + "url": "/v1/software/easeus-data-recovery-wizard" + }, + { + "slug": "easeus-partition-master", + "name": "EaseUS Partition Master", + "url": "/v1/software/easeus-partition-master" + }, + { + "slug": "easy-projects", + "name": "Easy Projects", + "url": "/v1/software/easy-projects" + }, + { + "slug": "easy-transcript", + "name": "Easy Transcript", + "url": "/v1/software/easy-transcript" + }, + { + "slug": "easy2sync-for-files", + "name": "Easy2Sync for Files", + "url": "/v1/software/easy2sync-for-files" + }, + { + "slug": "easy8", + "name": "Easy8", + "url": "/v1/software/easy8" + }, + { + "slug": "easybcd", + "name": "EasyBCD", + "url": "/v1/software/easybcd" + }, + { + "slug": "easybase", + "name": "EasyBase", + "url": "/v1/software/easybase" + }, + { + "slug": "easycad", + "name": "EasyCAD", + "url": "/v1/software/easycad" + }, + { + "slug": "easycode", + "name": "EasyCODE", + "url": "/v1/software/easycode" + }, + { + "slug": "easycleaner", + "name": "EasyCleaner", + "url": "/v1/software/easycleaner" + }, + { + "slug": "easydriver", + "name": "EasyDriver", + "url": "/v1/software/easydriver" + }, + { + "slug": "easyeda", + "name": "EasyEDA", + "url": "/v1/software/easyeda" + }, + { + "slug": "easyhdr", + "name": "EasyHDR", + "url": "/v1/software/easyhdr" + }, + { + "slug": "easylist", + "name": "EasyList", + "url": "/v1/software/easylist" + }, + { + "slug": "easymp3gain", + "name": "EasyMP3Gain", + "url": "/v1/software/easymp3gain" + }, + { + "slug": "easyoffice", + "name": "EasyOffice", + "url": "/v1/software/easyoffice" + }, + { + "slug": "easyrisk-manager", + "name": "EasyRisk Manager", + "url": "/v1/software/easyrisk-manager" + }, + { + "slug": "easytoon", + "name": "EasyToon", + "url": "/v1/software/easytoon" + }, + { + "slug": "easytracker", + "name": "EasyTracker", + "url": "/v1/software/easytracker" + }, + { + "slug": "easytopromo", + "name": "EasytoPromo", + "url": "/v1/software/easytopromo" + }, + { + "slug": "eazydraw", + "name": "Eazydraw", + "url": "/v1/software/eazydraw" + }, + { + "slug": "ebean", + "name": "Ebean", + "url": "/v1/software/ebean" + }, + { + "slug": "eccky", + "name": "Eccky", + "url": "/v1/software/eccky" + }, + { + "slug": "ecco-pro", + "name": "Ecco Pro", + "url": "/v1/software/ecco-pro" + }, + { + "slug": "echo-lake", + "name": "Echo Lake", + "url": "/v1/software/echo-lake" + }, + { + "slug": "echolink", + "name": "Echolink", + "url": "/v1/software/echolink" + }, + { + "slug": "eclipse-4diac", + "name": "Eclipse 4diac", + "url": "/v1/software/eclipse-4diac" + }, + { + "slug": "eclipse-ajdt-aspectj-development-tools-project", + "name": "Eclipse AJDT - AspectJ Development Tools Project", + "url": "/v1/software/eclipse-ajdt-aspectj-development-tools-project" + }, + { + "slug": "eclipse-app4mc", + "name": "Eclipse APP4MC", + "url": "/v1/software/eclipse-app4mc" + }, + { + "slug": "eclipse-atl", + "name": "Eclipse ATL", + "url": "/v1/software/eclipse-atl" + }, + { + "slug": "eclipse-avsys", + "name": "Eclipse AVSys", + "url": "/v1/software/eclipse-avsys" + }, + { + "slug": "eclipse-accessibility-tools-framework", + "name": "Eclipse Accessibility Tools Framework", + "url": "/v1/software/eclipse-accessibility-tools-framework" + }, + { + "slug": "eclipse-advanced-scripting-environment", + "name": "Eclipse Advanced Scripting Environment", + "url": "/v1/software/eclipse-advanced-scripting-environment" + }, + { + "slug": "eclipse-advanced-visualization-project", + "name": "Eclipse Advanced Visualization Project", + "url": "/v1/software/eclipse-advanced-visualization-project" + }, + { + "slug": "eclipse-agail", + "name": "Eclipse Agail", + "url": "/v1/software/eclipse-agail" + }, + { + "slug": "eclipse-agent-modeling-platform", + "name": "Eclipse Agent Modeling Platform", + "url": "/v1/software/eclipse-agent-modeling-platform" + }, + { + "slug": "eclipse-ajax-tools-framework-atf", + "name": "Eclipse Ajax Tools Framework (ATF)", + "url": "/v1/software/eclipse-ajax-tools-framework-atf" + }, + { + "slug": "eclipse-amalgamation", + "name": "Eclipse Amalgamation", + "url": "/v1/software/eclipse-amalgamation" + }, + { + "slug": "eclipse-andmore", + "name": "Eclipse Andmore", + "url": "/v1/software/eclipse-andmore" + }, + { + "slug": "eclipse-apogy", + "name": "Eclipse Apogy", + "url": "/v1/software/eclipse-apogy" + }, + { + "slug": "eclipse-apricot", + "name": "Eclipse Apricot", + "url": "/v1/software/eclipse-apricot" + }, + { + "slug": "eclipse-arrowhead", + "name": "Eclipse Arrowhead", + "url": "/v1/software/eclipse-arrowhead" + }, + { + "slug": "eclipse-aspectj", + "name": "Eclipse AspectJ", + "url": "/v1/software/eclipse-aspectj" + }, + { + "slug": "eclipse-automated-driving-open-research-adore", + "name": "Eclipse Automated Driving Open Research (ADORe)", + "url": "/v1/software/eclipse-automated-driving-open-research-adore" + }, + { + "slug": "eclipse-b612-the-polarsys-font", + "name": "Eclipse B612 - The PolarSys Font", + "url": "/v1/software/eclipse-b612-the-polarsys-font" + }, + { + "slug": "eclipse-bpel-designer", + "name": "Eclipse BPEL Designer", + "url": "/v1/software/eclipse-bpel-designer" + }, + { + "slug": "eclipse-bpmn2-modeler-project", + "name": "Eclipse BPMN2 Modeler Project", + "url": "/v1/software/eclipse-bpmn2-modeler-project" + }, + { + "slug": "eclipse-basyx", + "name": "Eclipse BaSyx", + "url": "/v1/software/eclipse-basyx" + }, + { + "slug": "eclipse-babel", + "name": "Eclipse Babel", + "url": "/v1/software/eclipse-babel" + }, + { + "slug": "eclipse-bridge-iot", + "name": "Eclipse Bridge.IoT", + "url": "/v1/software/eclipse-bridge-iot" + }, + { + "slug": "eclipse-buckminster-component-assembly", + "name": "Eclipse Buckminster Component Assembly", + "url": "/v1/software/eclipse-buckminster-component-assembly" + }, + { + "slug": "eclipse-buildship-eclipse-plug-ins-for-gradle", + "name": "Eclipse Buildship: Eclipse Plug-ins for Gradle", + "url": "/v1/software/eclipse-buildship-eclipse-plug-ins-for-gradle" + }, + { + "slug": "eclipse-bundle-recipes", + "name": "Eclipse Bundle Recipes", + "url": "/v1/software/eclipse-bundle-recipes" + }, + { + "slug": "eclipse-business-process-model-and-notation-bpmn2", + "name": "Eclipse Business Process Model and Notation (BPMN2)", + "url": "/v1/software/eclipse-business-process-model-and-notation-bpmn2" + }, + { + "slug": "eclipse-c-c-development-tooling-cdt", + "name": "Eclipse C/C++ Development Tooling (CDT)", + "url": "/v1/software/eclipse-c-c-development-tooling-cdt" + }, + { + "slug": "eclipse-cdo-model-repository", + "name": "Eclipse CDO Model Repository", + "url": "/v1/software/eclipse-cdo-model-repository" + }, + { + "slug": "eclipse-chess", + "name": "Eclipse CHESS", + "url": "/v1/software/eclipse-chess" + }, + { + "slug": "eclipse-crossmeter", + "name": "Eclipse CROSSMETER", + "url": "/v1/software/eclipse-crossmeter" + }, + { + "slug": "eclipse-californium-cf-coap-framework", + "name": "Eclipse Californium (Cf) CoAP Framework", + "url": "/v1/software/eclipse-californium-cf-coap-framework" + }, + { + "slug": "eclipse-capra", + "name": "Eclipse Capra", + "url": "/v1/software/eclipse-capra" + }, + { + "slug": "eclipse-cargo-tracker", + "name": "Eclipse Cargo Tracker", + "url": "/v1/software/eclipse-cargo-tracker" + }, + { + "slug": "eclipse-che4z", + "name": "Eclipse Che4z", + "url": "/v1/software/eclipse-che4z" + }, + { + "slug": "eclipse-cloe", + "name": "Eclipse Cloe", + "url": "/v1/software/eclipse-cloe" + }, + { + "slug": "eclipse-cloud-development", + "name": "Eclipse Cloud Development", + "url": "/v1/software/eclipse-cloud-development" + }, + { + "slug": "eclipse-code-recommenders", + "name": "Eclipse Code Recommenders", + "url": "/v1/software/eclipse-code-recommenders" + }, + { + "slug": "eclipse-codewind", + "name": "Eclipse Codewind", + "url": "/v1/software/eclipse-codewind" + }, + { + "slug": "eclipse-cognicrypt", + "name": "Eclipse CogniCrypt", + "url": "/v1/software/eclipse-cognicrypt" + }, + { + "slug": "eclipse-collections", + "name": "Eclipse Collections", + "url": "/v1/software/eclipse-collections" + }, + { + "slug": "eclipse-common-build-infrastructure", + "name": "Eclipse Common Build Infrastructure", + "url": "/v1/software/eclipse-common-build-infrastructure" + }, + { + "slug": "eclipse-communication-framework", + "name": "Eclipse Communication Framework", + "url": "/v1/software/eclipse-communication-framework" + }, + { + "slug": "eclipse-concierge", + "name": "Eclipse Concierge", + "url": "/v1/software/eclipse-concierge" + }, + { + "slug": "eclipse-corrosion-the-eclipse-ide-for-rust", + "name": "Eclipse Corrosion: the Eclipse IDE for Rust", + "url": "/v1/software/eclipse-corrosion-the-eclipse-ide-for-rust" + }, + { + "slug": "eclipse-cyclone-dds", + "name": "Eclipse Cyclone DDS", + "url": "/v1/software/eclipse-cyclone-dds" + }, + { + "slug": "eclipse-dawnsci", + "name": "Eclipse DAWNSci", + "url": "/v1/software/eclipse-dawnsci" + }, + { + "slug": "eclipse-dali-java-persistence-tools", + "name": "Eclipse Dali Java Persistence Tools", + "url": "/v1/software/eclipse-dali-java-persistence-tools" + }, + { + "slug": "eclipse-dartboard", + "name": "Eclipse Dartboard", + "url": "/v1/software/eclipse-dartboard" + }, + { + "slug": "eclipse-dash", + "name": "Eclipse Dash", + "url": "/v1/software/eclipse-dash" + }, + { + "slug": "eclipse-dash-commits-dashboard", + "name": "Eclipse Dash Commits Dashboard", + "url": "/v1/software/eclipse-dash-commits-dashboard" + }, + { + "slug": "eclipse-data-tools-enablement", + "name": "Eclipse Data Tools Enablement", + "url": "/v1/software/eclipse-data-tools-enablement" + }, + { + "slug": "eclipse-data-tools-incubator", + "name": "Eclipse Data Tools Incubator", + "url": "/v1/software/eclipse-data-tools-incubator" + }, + { + "slug": "eclipse-data-tools-model-base", + "name": "Eclipse Data Tools Model Base", + "url": "/v1/software/eclipse-data-tools-model-base" + }, + { + "slug": "eclipse-data-tools-platform", + "name": "Eclipse Data Tools Platform", + "url": "/v1/software/eclipse-data-tools-platform" + }, + { + "slug": "eclipse-data-tools-sql-dev-tools", + "name": "Eclipse Data Tools SQL Dev Tools", + "url": "/v1/software/eclipse-data-tools-sql-dev-tools" + }, + { + "slug": "eclipse-deeplearning4j", + "name": "Eclipse Deeplearning4j", + "url": "/v1/software/eclipse-deeplearning4j" + }, + { + "slug": "eclipse-dirigible", + "name": "Eclipse Dirigible", + "url": "/v1/software/eclipse-dirigible" + }, + { + "slug": "eclipse-duttile", + "name": "Eclipse Duttile", + "url": "/v1/software/eclipse-duttile" + }, + { + "slug": "eclipse-dynamic-languages-toolkit", + "name": "Eclipse Dynamic Languages Toolkit", + "url": "/v1/software/eclipse-dynamic-languages-toolkit" + }, + { + "slug": "eclipse-eatop", + "name": "Eclipse EATOP", + "url": "/v1/software/eclipse-eatop" + }, + { + "slug": "eclipse-egerrit", + "name": "Eclipse EGerrit", + "url": "/v1/software/eclipse-egerrit" + }, + { + "slug": "eclipse-egit-git-integration-for-eclipse", + "name": "Eclipse EGit: Git Integration for Eclipse", + "url": "/v1/software/eclipse-egit-git-integration-for-eclipse" + }, + { + "slug": "eclipse-emf", + "name": "Eclipse EMF", + "url": "/v1/software/eclipse-emf" + }, + { + "slug": "eclipse-emf-client-platform", + "name": "Eclipse EMF Client Platform", + "url": "/v1/software/eclipse-emf-client-platform" + }, + { + "slug": "eclipse-emf-compare", + "name": "Eclipse EMF Compare", + "url": "/v1/software/eclipse-emf-compare" + }, + { + "slug": "eclipse-emf-diff-merge", + "name": "Eclipse EMF Diff/Merge", + "url": "/v1/software/eclipse-emf-diff-merge" + }, + { + "slug": "eclipse-emf-facet", + "name": "Eclipse EMF Facet", + "url": "/v1/software/eclipse-emf-facet" + }, + { + "slug": "eclipse-emf-parsley", + "name": "Eclipse EMF Parsley", + "url": "/v1/software/eclipse-emf-parsley" + }, + { + "slug": "eclipse-emf-services", + "name": "Eclipse EMF Services", + "url": "/v1/software/eclipse-emf-services" + }, + { + "slug": "eclipse-emf-cloud", + "name": "Eclipse EMF.cloud", + "url": "/v1/software/eclipse-emf-cloud" + }, + { + "slug": "eclipse-erp", + "name": "Eclipse ERP", + "url": "/v1/software/eclipse-erp" + }, + { + "slug": "eclipse-escet-supervisory-control-engineering-toolkit", + "name": "Eclipse ESCET (Supervisory Control Engineering Toolkit)", + "url": "/v1/software/eclipse-escet-supervisory-control-engineering-toolkit" + }, + { + "slug": "eclipse-eclemma", + "name": "Eclipse EclEmma", + "url": "/v1/software/eclipse-eclemma" + }, + { + "slug": "eclipse-ecore-tools", + "name": "Eclipse Ecore Tools", + "url": "/v1/software/eclipse-ecore-tools" + }, + { + "slug": "eclipse-edapt", + "name": "Eclipse Edapt", + "url": "/v1/software/eclipse-edapt" + }, + { + "slug": "eclipse-editdor", + "name": "Eclipse EdiTDor", + "url": "/v1/software/eclipse-editdor" + }, + { + "slug": "eclipse-edje", + "name": "Eclipse Edje", + "url": "/v1/software/eclipse-edje" + }, + { + "slug": "eclipse-embedded-cdt-c-c-development-tools", + "name": "Eclipse Embedded CDT (C/C++ Development Tools)", + "url": "/v1/software/eclipse-embedded-cdt-c-c-development-tools" + }, + { + "slug": "eclipse-enterprise-tools-for-the-osgi-service-platform", + "name": "Eclipse Enterprise Tools for the OSGi Service Platform", + "url": "/v1/software/eclipse-enterprise-tools-for-the-osgi-service-platform" + }, + { + "slug": "eclipse-extended-editing-framework-eef", + "name": "Eclipse Extended Editing Framework (EEF)", + "url": "/v1/software/eclipse-extended-editing-framework-eef" + }, + { + "slug": "eclipse-flux", + "name": "Eclipse Flux", + "url": "/v1/software/eclipse-flux" + }, + { + "slug": "eclipse-formal-modeling-project", + "name": "Eclipse Formal Modeling Project", + "url": "/v1/software/eclipse-formal-modeling-project" + }, + { + "slug": "eclipse-franca", + "name": "Eclipse Franca", + "url": "/v1/software/eclipse-franca" + }, + { + "slug": "eclipse-free-bird-tools", + "name": "Eclipse Free BIRD Tools", + "url": "/v1/software/eclipse-free-bird-tools" + }, + { + "slug": "eclipse-fundamental-modeling-concepts", + "name": "Eclipse Fundamental Modeling Concepts", + "url": "/v1/software/eclipse-fundamental-modeling-concepts" + }, + { + "slug": "eclipse-gemoc-studio", + "name": "Eclipse GEMOC Studio", + "url": "/v1/software/eclipse-gemoc-studio" + }, + { + "slug": "eclipse-glsp", + "name": "Eclipse GLSP", + "url": "/v1/software/eclipse-glsp" + }, + { + "slug": "eclipse-gmf-notation", + "name": "Eclipse GMF Notation", + "url": "/v1/software/eclipse-gmf-notation" + }, + { + "slug": "eclipse-gmf-runtime", + "name": "Eclipse GMF Runtime", + "url": "/v1/software/eclipse-gmf-runtime" + }, + { + "slug": "eclipse-gmf-tooling", + "name": "Eclipse GMF Tooling", + "url": "/v1/software/eclipse-gmf-tooling" + }, + { + "slug": "eclipse-gendoc", + "name": "Eclipse Gendoc", + "url": "/v1/software/eclipse-gendoc" + }, + { + "slug": "eclipse-generation-factories-egf", + "name": "Eclipse Generation Factories (EGF)", + "url": "/v1/software/eclipse-generation-factories-egf" + }, + { + "slug": "eclipse-glassfish-tools", + "name": "Eclipse GlassFish Tools", + "url": "/v1/software/eclipse-glassfish-tools" + }, + { + "slug": "eclipse-golo", + "name": "Eclipse Golo", + "url": "/v1/software/eclipse-golo" + }, + { + "slug": "eclipse-graphiti", + "name": "Eclipse Graphiti", + "url": "/v1/software/eclipse-graphiti" + }, + { + "slug": "eclipse-grizzly", + "name": "Eclipse Grizzly", + "url": "/v1/software/eclipse-grizzly" + }, + { + "slug": "eclipse-gyrex-project", + "name": "Eclipse Gyrex Project", + "url": "/v1/software/eclipse-gyrex-project" + }, + { + "slug": "eclipse-hip", + "name": "Eclipse HIP", + "url": "/v1/software/eclipse-hip" + }, + { + "slug": "eclipse-handly", + "name": "Eclipse Handly", + "url": "/v1/software/eclipse-handly" + }, + { + "slug": "eclipse-hara", + "name": "Eclipse Hara", + "url": "/v1/software/eclipse-hara" + }, + { + "slug": "eclipse-hawk", + "name": "Eclipse Hawk", + "url": "/v1/software/eclipse-hawk" + }, + { + "slug": "eclipse-hono", + "name": "Eclipse Hono", + "url": "/v1/software/eclipse-hono" + }, + { + "slug": "eclipse-hudson", + "name": "Eclipse Hudson", + "url": "/v1/software/eclipse-hudson" + }, + { + "slug": "eclipse-iota-trinity", + "name": "Eclipse IOTA Trinity", + "url": "/v1/software/eclipse-iota-trinity" + }, + { + "slug": "eclipse-ignite-iot", + "name": "Eclipse Ignite|IoT", + "url": "/v1/software/eclipse-ignite-iot" + }, + { + "slug": "eclipse-imagen", + "name": "Eclipse ImageN", + "url": "/v1/software/eclipse-imagen" + }, + { + "slug": "eclipse-implementation-of-jaxb", + "name": "Eclipse Implementation of JAXB", + "url": "/v1/software/eclipse-implementation-of-jaxb" + }, + { + "slug": "eclipse-iot", + "name": "Eclipse IoT", + "url": "/v1/software/eclipse-iot" + }, + { + "slug": "eclipse-iot-packages", + "name": "Eclipse IoT Packages", + "url": "/v1/software/eclipse-iot-packages" + }, + { + "slug": "eclipse-iot-testware", + "name": "Eclipse IoT-Testware", + "url": "/v1/software/eclipse-iot-testware" + }, + { + "slug": "eclipse-jdt-language-server", + "name": "Eclipse JDT Language Server", + "url": "/v1/software/eclipse-jdt-language-server" + }, + { + "slug": "eclipse-jkube", + "name": "Eclipse JKube", + "url": "/v1/software/eclipse-jkube" + }, + { + "slug": "eclipse-jnosql", + "name": "Eclipse JNoSQL", + "url": "/v1/software/eclipse-jnosql" + }, + { + "slug": "eclipse-jwt", + "name": "Eclipse JWT", + "url": "/v1/software/eclipse-jwt" + }, + { + "slug": "eclipse-jakarta-ee-platform", + "name": "Eclipse Jakarta EE Platform", + "url": "/v1/software/eclipse-jakarta-ee-platform" + }, + { + "slug": "eclipse-jakarta-ee-tck", + "name": "Eclipse Jakarta EE TCK", + "url": "/v1/software/eclipse-jakarta-ee-tck" + }, + { + "slug": "eclipse-january", + "name": "Eclipse January", + "url": "/v1/software/eclipse-january" + }, + { + "slug": "eclipse-javascript-development-tools", + "name": "Eclipse JavaScript Development Tools", + "url": "/v1/software/eclipse-javascript-development-tools" + }, + { + "slug": "eclipse-jemo-cloud-application-runtime", + "name": "Eclipse Jemo - Cloud Application Runtime", + "url": "/v1/software/eclipse-jemo-cloud-application-runtime" + }, + { + "slug": "eclipse-jersey", + "name": "Eclipse Jersey", + "url": "/v1/software/eclipse-jersey" + }, + { + "slug": "eclipse-jifa", + "name": "Eclipse Jifa", + "url": "/v1/software/eclipse-jifa" + }, + { + "slug": "eclipse-justj", + "name": "Eclipse JustJ", + "url": "/v1/software/eclipse-justj" + }, + { + "slug": "eclipse-kapua", + "name": "Eclipse Kapua", + "url": "/v1/software/eclipse-kapua" + }, + { + "slug": "eclipse-keti", + "name": "Eclipse Keti", + "url": "/v1/software/eclipse-keti" + }, + { + "slug": "eclipse-keyple", + "name": "Eclipse Keyple", + "url": "/v1/software/eclipse-keyple" + }, + { + "slug": "eclipse-kitalpha", + "name": "Eclipse Kitalpha", + "url": "/v1/software/eclipse-kitalpha" + }, + { + "slug": "eclipse-krazo", + "name": "Eclipse Krazo", + "url": "/v1/software/eclipse-krazo" + }, + { + "slug": "eclipse-kuksa", + "name": "Eclipse Kuksa", + "url": "/v1/software/eclipse-kuksa" + }, + { + "slug": "eclipse-kura", + "name": "Eclipse Kura", + "url": "/v1/software/eclipse-kura" + }, + { + "slug": "eclipse-lsp4e", + "name": "Eclipse LSP4E", + "url": "/v1/software/eclipse-lsp4e" + }, + { + "slug": "eclipse-lsp4j", + "name": "Eclipse LSP4J", + "url": "/v1/software/eclipse-lsp4j" + }, + { + "slug": "eclipse-lsphub", + "name": "Eclipse LSPHub", + "url": "/v1/software/eclipse-lsphub" + }, + { + "slug": "eclipse-layout-kernel", + "name": "Eclipse Layout Kernel", + "url": "/v1/software/eclipse-layout-kernel" + }, + { + "slug": "eclipse-leshan", + "name": "Eclipse Leshan", + "url": "/v1/software/eclipse-leshan" + }, + { + "slug": "eclipse-libims", + "name": "Eclipse LibIMS", + "url": "/v1/software/eclipse-libims" + }, + { + "slug": "eclipse-linux-tools", + "name": "Eclipse Linux Tools", + "url": "/v1/software/eclipse-linux-tools" + }, + { + "slug": "eclipse-lua-development-tools", + "name": "Eclipse Lua Development Tools", + "url": "/v1/software/eclipse-lua-development-tools" + }, + { + "slug": "eclipse-lyo", + "name": "Eclipse Lyo", + "url": "/v1/software/eclipse-lyo" + }, + { + "slug": "eclipse-mdm-bl", + "name": "Eclipse MDM|BL", + "url": "/v1/software/eclipse-mdm-bl" + }, + { + "slug": "eclipse-mdt-uml2", + "name": "Eclipse MDT UML2", + "url": "/v1/software/eclipse-mdt-uml2" + }, + { + "slug": "eclipse-mdt-xsd-xml-schema-definition", + "name": "Eclipse MDT XSD (XML Schema Definition)", + "url": "/v1/software/eclipse-mdt-xsd-xml-schema-definition" + }, + { + "slug": "eclipse-mraa", + "name": "Eclipse MRAA", + "url": "/v1/software/eclipse-mraa" + }, + { + "slug": "eclipse-marketplace-client", + "name": "Eclipse Marketplace Client", + "url": "/v1/software/eclipse-marketplace-client" + }, + { + "slug": "eclipse-maven-integration", + "name": "Eclipse Maven Integration", + "url": "/v1/software/eclipse-maven-integration" + }, + { + "slug": "eclipse-maven-integration-for-web-tools-platform", + "name": "Eclipse Maven Integration for Web Tools Platform", + "url": "/v1/software/eclipse-maven-integration-for-web-tools-platform" + }, + { + "slug": "eclipse-mbeddr", + "name": "Eclipse Mbeddr", + "url": "/v1/software/eclipse-mbeddr" + }, + { + "slug": "eclipse-memory-analyzer", + "name": "Eclipse Memory Analyzer", + "url": "/v1/software/eclipse-memory-analyzer" + }, + { + "slug": "eclipse-microprofile", + "name": "Eclipse MicroProfile", + "url": "/v1/software/eclipse-microprofile" + }, + { + "slug": "eclipse-milo", + "name": "Eclipse Milo", + "url": "/v1/software/eclipse-milo" + }, + { + "slug": "eclipse-mita", + "name": "Eclipse Mita", + "url": "/v1/software/eclipse-mita" + }, + { + "slug": "eclipse-modisco", + "name": "Eclipse MoDisco", + "url": "/v1/software/eclipse-modisco" + }, + { + "slug": "eclipse-mobile-tools-for-java", + "name": "Eclipse Mobile Tools for Java™", + "url": "/v1/software/eclipse-mobile-tools-for-java" + }, + { + "slug": "eclipse-model-driven-health-tools", + "name": "Eclipse Model Driven Health Tools", + "url": "/v1/software/eclipse-model-driven-health-tools" + }, + { + "slug": "eclipse-model-framework-technology-emft", + "name": "Eclipse Model Framework Technology (EMFT)", + "url": "/v1/software/eclipse-model-framework-technology-emft" + }, + { + "slug": "eclipse-modeling-workflow-engine", + "name": "Eclipse Modeling Workflow Engine", + "url": "/v1/software/eclipse-modeling-workflow-engine" + }, + { + "slug": "eclipse-mojarra", + "name": "Eclipse Mojarra", + "url": "/v1/software/eclipse-mojarra" + }, + { + "slug": "eclipse-n4js", + "name": "Eclipse N4JS", + "url": "/v1/software/eclipse-n4js" + }, + { + "slug": "eclipse-nebula-supplemental-widgets-for-swt", + "name": "Eclipse Nebula - Supplemental Widgets for SWT", + "url": "/v1/software/eclipse-nebula-supplemental-widgets-for-swt" + }, + { + "slug": "eclipse-nebula-incubator", + "name": "Eclipse Nebula Incubator", + "url": "/v1/software/eclipse-nebula-incubator" + }, + { + "slug": "eclipse-nebula-nattable", + "name": "Eclipse Nebula NatTable", + "url": "/v1/software/eclipse-nebula-nattable" + }, + { + "slug": "eclipse-ocl-object-constraint-language", + "name": "Eclipse OCL (Object Constraint Language)", + "url": "/v1/software/eclipse-ocl-object-constraint-language" + }, + { + "slug": "eclipse-om2m", + "name": "Eclipse OM2M", + "url": "/v1/software/eclipse-om2m" + }, + { + "slug": "eclipse-orb", + "name": "Eclipse ORB", + "url": "/v1/software/eclipse-orb" + }, + { + "slug": "eclipse-object-teams", + "name": "Eclipse Object Teams", + "url": "/v1/software/eclipse-object-teams" + }, + { + "slug": "eclipse-ogee", + "name": "Eclipse Ogee", + "url": "/v1/software/eclipse-ogee" + }, + { + "slug": "eclipse-oomph", + "name": "Eclipse Oomph", + "url": "/v1/software/eclipse-oomph" + }, + { + "slug": "eclipse-open-standard-business-platform", + "name": "Eclipse Open Standard Business Platform", + "url": "/v1/software/eclipse-open-standard-business-platform" + }, + { + "slug": "eclipse-openj9", + "name": "Eclipse OpenJ9", + "url": "/v1/software/eclipse-openj9" + }, + { + "slug": "eclipse-openmq", + "name": "Eclipse OpenMQ", + "url": "/v1/software/eclipse-openmq" + }, + { + "slug": "eclipse-orbit-project", + "name": "Eclipse Orbit Project", + "url": "/v1/software/eclipse-orbit-project" + }, + { + "slug": "eclipse-orion", + "name": "Eclipse Orion", + "url": "/v1/software/eclipse-orion" + }, + { + "slug": "eclipse-pmf", + "name": "Eclipse PMF", + "url": "/v1/software/eclipse-pmf" + }, + { + "slug": "eclipse-package-drone", + "name": "Eclipse Package Drone", + "url": "/v1/software/eclipse-package-drone" + }, + { + "slug": "eclipse-packaging-project", + "name": "Eclipse Packaging Project", + "url": "/v1/software/eclipse-packaging-project" + }, + { + "slug": "eclipse-paho", + "name": "Eclipse Paho", + "url": "/v1/software/eclipse-paho" + }, + { + "slug": "eclipse-paho-incubator", + "name": "Eclipse Paho Incubator", + "url": "/v1/software/eclipse-paho-incubator" + }, + { + "slug": "eclipse-papyrus-for-real-time-papyrus-rt", + "name": "Eclipse Papyrus for Real Time (Papyrus-RT)", + "url": "/v1/software/eclipse-papyrus-for-real-time-papyrus-rt" + }, + { + "slug": "eclipse-papyrus-for-xtuml", + "name": "Eclipse Papyrus for xtUML", + "url": "/v1/software/eclipse-papyrus-for-xtuml" + }, + { + "slug": "eclipse-parallel-tools-platform-ptp", + "name": "Eclipse Parallel Tools Platform (PTP)", + "url": "/v1/software/eclipse-parallel-tools-platform-ptp" + }, + { + "slug": "eclipse-passage", + "name": "Eclipse Passage", + "url": "/v1/software/eclipse-passage" + }, + { + "slug": "eclipse-picasso-a-free-open-source-visualizer-for-convolutional-neural-networks", + "name": "Eclipse Picasso: A free open-source visualizer for Convolutional Neural Networks", + "url": "/v1/software/eclipse-picasso-a-free-open-source-visualizer-for-convolutional-neural-networks" + }, + { + "slug": "eclipse-ponte", + "name": "Eclipse Ponte", + "url": "/v1/software/eclipse-ponte" + }, + { + "slug": "eclipse-project-for-common-annotations", + "name": "Eclipse Project for Common Annotations", + "url": "/v1/software/eclipse-project-for-common-annotations" + }, + { + "slug": "eclipse-project-for-jax-rs", + "name": "Eclipse Project for JAX-RS", + "url": "/v1/software/eclipse-project-for-jax-rs" + }, + { + "slug": "eclipse-project-for-jms", + "name": "Eclipse Project for JMS", + "url": "/v1/software/eclipse-project-for-jms" + }, + { + "slug": "eclipse-project-for-json-processing", + "name": "Eclipse Project for JSON Processing", + "url": "/v1/software/eclipse-project-for-json-processing" + }, + { + "slug": "eclipse-project-for-websocket", + "name": "Eclipse Project for WebSocket", + "url": "/v1/software/eclipse-project-for-websocket" + }, + { + "slug": "eclipse-qvt-operational", + "name": "Eclipse QVT Operational", + "url": "/v1/software/eclipse-qvt-operational" + }, + { + "slug": "eclipse-qvtd-qvt-declarative", + "name": "Eclipse QVTd (QVT Declarative)", + "url": "/v1/software/eclipse-qvtd-qvt-declarative" + }, + { + "slug": "eclipse-rcp-testing-tool", + "name": "Eclipse RCP Testing Tool", + "url": "/v1/software/eclipse-rcp-testing-tool" + }, + { + "slug": "eclipse-rise-v2g", + "name": "Eclipse RISE V2G", + "url": "/v1/software/eclipse-rise-v2g" + }, + { + "slug": "eclipse-reddeer", + "name": "Eclipse RedDeer", + "url": "/v1/software/eclipse-reddeer" + }, + { + "slug": "eclipse-remus", + "name": "Eclipse Remus", + "url": "/v1/software/eclipse-remus" + }, + { + "slug": "eclipse-rich-beans", + "name": "Eclipse Rich Beans", + "url": "/v1/software/eclipse-rich-beans" + }, + { + "slug": "eclipse-runtime-packaging-project", + "name": "Eclipse Runtime Packaging Project", + "url": "/v1/software/eclipse-runtime-packaging-project" + }, + { + "slug": "eclipse-sw360", + "name": "Eclipse SW360", + "url": "/v1/software/eclipse-sw360" + }, + { + "slug": "eclipse-sw360antenna", + "name": "Eclipse SW360antenna", + "url": "/v1/software/eclipse-sw360antenna" + }, + { + "slug": "eclipse-swtbot", + "name": "Eclipse SWTBot", + "url": "/v1/software/eclipse-swtbot" + }, + { + "slug": "eclipse-sapphire", + "name": "Eclipse Sapphire", + "url": "/v1/software/eclipse-sapphire" + }, + { + "slug": "eclipse-scanning", + "name": "Eclipse Scanning", + "url": "/v1/software/eclipse-scanning" + }, + { + "slug": "eclipse-science", + "name": "Eclipse Science", + "url": "/v1/software/eclipse-science" + }, + { + "slug": "eclipse-scout", + "name": "Eclipse Scout", + "url": "/v1/software/eclipse-scout" + }, + { + "slug": "eclipse-seco-blocks", + "name": "Eclipse SeCo Blocks", + "url": "/v1/software/eclipse-seco-blocks" + }, + { + "slug": "eclipse-shellwax", + "name": "Eclipse ShellWax", + "url": "/v1/software/eclipse-shellwax" + }, + { + "slug": "eclipse-smarthome", + "name": "Eclipse SmartHome", + "url": "/v1/software/eclipse-smarthome" + }, + { + "slug": "eclipse-smartmdsd", + "name": "Eclipse SmartMDSD", + "url": "/v1/software/eclipse-smartmdsd" + }, + { + "slug": "eclipse-spatio-temporal-epidemiological-modeler", + "name": "Eclipse Spatio-Temporal Epidemiological Modeler", + "url": "/v1/software/eclipse-spatio-temporal-epidemiological-modeler" + }, + { + "slug": "eclipse-sphinx", + "name": "Eclipse Sphinx", + "url": "/v1/software/eclipse-sphinx" + }, + { + "slug": "eclipse-statet-tooling-for-the-r-language", + "name": "Eclipse StatET: Tooling for the R language", + "url": "/v1/software/eclipse-statet-tooling-for-the-r-language" + }, + { + "slug": "eclipse-steady", + "name": "Eclipse Steady", + "url": "/v1/software/eclipse-steady" + }, + { + "slug": "eclipse-streamsheets", + "name": "Eclipse Streamsheets", + "url": "/v1/software/eclipse-streamsheets" + }, + { + "slug": "eclipse-subversive-svn-team-provider", + "name": "Eclipse Subversive SVN Team Provider", + "url": "/v1/software/eclipse-subversive-svn-team-provider" + }, + { + "slug": "eclipse-systemfocus", + "name": "Eclipse SystemFOCUS", + "url": "/v1/software/eclipse-systemfocus" + }, + { + "slug": "eclipse-tea-tasking-engine-advanced", + "name": "Eclipse TEA (Tasking Engine Advanced)", + "url": "/v1/software/eclipse-tea-tasking-engine-advanced" + }, + { + "slug": "eclipse-tm4e-textmate-support-in-the-eclipse-ide", + "name": "Eclipse TM4E - TextMate support in the Eclipse IDE", + "url": "/v1/software/eclipse-tm4e-textmate-support-in-the-eclipse-ide" + }, + { + "slug": "eclipse-tahu", + "name": "Eclipse Tahu", + "url": "/v1/software/eclipse-tahu" + }, + { + "slug": "eclipse-target-communication-framework", + "name": "Eclipse Target Communication Framework", + "url": "/v1/software/eclipse-target-communication-framework" + }, + { + "slug": "eclipse-target-management", + "name": "Eclipse Target Management", + "url": "/v1/software/eclipse-target-management" + }, + { + "slug": "eclipse-texlipse", + "name": "Eclipse TeXlipse", + "url": "/v1/software/eclipse-texlipse" + }, + { + "slug": "eclipse-thingweb", + "name": "Eclipse Thingweb", + "url": "/v1/software/eclipse-thingweb" + }, + { + "slug": "eclipse-thym", + "name": "Eclipse Thym", + "url": "/v1/software/eclipse-thym" + }, + { + "slug": "eclipse-titan", + "name": "Eclipse Titan", + "url": "/v1/software/eclipse-titan" + }, + { + "slug": "eclipse-tools-for-cloud-foundry", + "name": "Eclipse Tools for Cloud Foundry", + "url": "/v1/software/eclipse-tools-for-cloud-foundry" + }, + { + "slug": "eclipse-trace-compass", + "name": "Eclipse Trace Compass", + "url": "/v1/software/eclipse-trace-compass" + }, + { + "slug": "eclipse-trace-compass-incubator", + "name": "Eclipse Trace Compass Incubator", + "url": "/v1/software/eclipse-trace-compass-incubator" + }, + { + "slug": "eclipse-transformer", + "name": "Eclipse Transformer", + "url": "/v1/software/eclipse-transformer" + }, + { + "slug": "eclipse-triquetrum", + "name": "Eclipse Triquetrum", + "url": "/v1/software/eclipse-triquetrum" + }, + { + "slug": "eclipse-tycho", + "name": "Eclipse Tycho", + "url": "/v1/software/eclipse-tycho" + }, + { + "slug": "eclipse-uml-generators", + "name": "Eclipse UML Generators", + "url": "/v1/software/eclipse-uml-generators" + }, + { + "slug": "eclipse-uml-profiles-repository", + "name": "Eclipse UML Profiles Repository", + "url": "/v1/software/eclipse-uml-profiles-repository" + }, + { + "slug": "eclipse-uomo", + "name": "Eclipse UOMo", + "url": "/v1/software/eclipse-uomo" + }, + { + "slug": "eclipse-unide", + "name": "Eclipse Unide", + "url": "/v1/software/eclipse-unide" + }, + { + "slug": "eclipse-user-storage-service-sdk", + "name": "Eclipse User Storage Service SDK", + "url": "/v1/software/eclipse-user-storage-service-sdk" + }, + { + "slug": "eclipse-viatra", + "name": "Eclipse VIATRA", + "url": "/v1/software/eclipse-viatra" + }, + { + "slug": "eclipse-vert-x", + "name": "Eclipse Vert.x", + "url": "/v1/software/eclipse-vert-x" + }, + { + "slug": "eclipse-visual-editor-for-xml", + "name": "Eclipse Visual Editor for XML", + "url": "/v1/software/eclipse-visual-editor-for-xml" + }, + { + "slug": "eclipse-vorto", + "name": "Eclipse Vorto", + "url": "/v1/software/eclipse-vorto" + }, + { + "slug": "eclipse-wtp-source-editing", + "name": "Eclipse WTP Source Editing", + "url": "/v1/software/eclipse-wtp-source-editing" + }, + { + "slug": "eclipse-wakaama", + "name": "Eclipse Wakaama", + "url": "/v1/software/eclipse-wakaama" + }, + { + "slug": "eclipse-whiskers", + "name": "Eclipse Whiskers", + "url": "/v1/software/eclipse-whiskers" + }, + { + "slug": "eclipse-wild-web-developer", + "name": "Eclipse Wild Web Developer", + "url": "/v1/software/eclipse-wild-web-developer" + }, + { + "slug": "eclipse-winery", + "name": "Eclipse Winery", + "url": "/v1/software/eclipse-winery" + }, + { + "slug": "eclipse-xacc", + "name": "Eclipse XACC", + "url": "/v1/software/eclipse-xacc" + }, + { + "slug": "eclipse-xwt", + "name": "Eclipse XWT", + "url": "/v1/software/eclipse-xwt" + }, + { + "slug": "eclipse-xpand", + "name": "Eclipse Xpand", + "url": "/v1/software/eclipse-xpand" + }, + { + "slug": "eclipse-xpect", + "name": "Eclipse Xpect", + "url": "/v1/software/eclipse-xpect" + }, + { + "slug": "eclipse-xtext", + "name": "Eclipse Xtext", + "url": "/v1/software/eclipse-xtext" + }, + { + "slug": "eclipse-yasson", + "name": "Eclipse Yasson", + "url": "/v1/software/eclipse-yasson" + }, + { + "slug": "eclipse-acute", + "name": "Eclipse aCute", + "url": "/v1/software/eclipse-acute" + }, + { + "slug": "eclipse-e-fx-clipse", + "name": "Eclipse e(fx)clipse", + "url": "/v1/software/eclipse-e-fx-clipse" + }, + { + "slug": "eclipse-e4-project", + "name": "Eclipse e4 Project", + "url": "/v1/software/eclipse-e4-project" + }, + { + "slug": "eclipse-ebpm", + "name": "Eclipse eBPM", + "url": "/v1/software/eclipse-ebpm" + }, + { + "slug": "eclipse-elogbook-openk", + "name": "Eclipse eLogbook@openK", + "url": "/v1/software/eclipse-elogbook-openk" + }, + { + "slug": "eclipse-etrice", + "name": "Eclipse eTrice", + "url": "/v1/software/eclipse-etrice" + }, + { + "slug": "eclipse-fog05", + "name": "Eclipse fog05", + "url": "/v1/software/eclipse-fog05" + }, + { + "slug": "eclipse-hawkbit", + "name": "Eclipse hawkBit", + "url": "/v1/software/eclipse-hawkbit" + }, + { + "slug": "eclipse-iceoryx", + "name": "Eclipse iceoryx", + "url": "/v1/software/eclipse-iceoryx" + }, + { + "slug": "eclipse-iofog", + "name": "Eclipse ioFog", + "url": "/v1/software/eclipse-iofog" + }, + { + "slug": "eclipse-openk-user-modules", + "name": "Eclipse openK User Modules", + "url": "/v1/software/eclipse-openk-user-modules" + }, + { + "slug": "eclipse-openk-platform", + "name": "Eclipse openK platform", + "url": "/v1/software/eclipse-openk-platform" + }, + { + "slug": "eclipse-sensinact", + "name": "Eclipse sensiNact", + "url": "/v1/software/eclipse-sensinact" + }, + { + "slug": "eclipse-sim-openpass", + "name": "Eclipse sim@openPASS", + "url": "/v1/software/eclipse-sim-openpass" + }, + { + "slug": "eclipse-tinydtls", + "name": "Eclipse tinydtls", + "url": "/v1/software/eclipse-tinydtls" + }, + { + "slug": "eclipse-zenoh", + "name": "Eclipse zenoh", + "url": "/v1/software/eclipse-zenoh" + }, + { + "slug": "eclipsecrossword", + "name": "EclipseCrossword", + "url": "/v1/software/eclipsecrossword" + }, + { + "slug": "eclipseforumdata", + "name": "EclipseForumData", + "url": "/v1/software/eclipseforumdata" + }, + { + "slug": "eco-index-biodiversity-dashboards", + "name": "Eco-Index Biodiversity Dashboards", + "url": "/v1/software/eco-index-biodiversity-dashboards" + }, + { + "slug": "ecodrive", + "name": "Ecodrive", + "url": "/v1/software/ecodrive" + }, + { + "slug": "ecoenergy", + "name": "Ecoenergy", + "url": "/v1/software/ecoenergy" + }, + { + "slug": "ecofont", + "name": "Ecofont", + "url": "/v1/software/ecofont" + }, + { + "slug": "ecolego", + "name": "Ecolego", + "url": "/v1/software/ecolego" + }, + { + "slug": "ecosimpro", + "name": "EcosimPro", + "url": "/v1/software/ecosimpro" + }, + { + "slug": "ecosystem-site-anomaly-visualization-notebook-tool", + "name": "Ecosystem Site Anomaly Visualization Notebook Tool", + "url": "/v1/software/ecosystem-site-anomaly-visualization-notebook-tool" + }, + { + "slug": "ecoute", + "name": "Ecoute", + "url": "/v1/software/ecoute" + }, + { + "slug": "ed", + "name": "Ed", + "url": "/v1/software/ed" + }, + { + "slug": "edbuild-ai", + "name": "EdBuild AI", + "url": "/v1/software/edbuild-ai" + }, + { + "slug": "edcast", + "name": "Edcast", + "url": "/v1/software/edcast" + }, + { + "slug": "edge-q31891244", + "name": "Edge", + "url": "/v1/software/edge-q31891244" + }, + { + "slug": "edificius", + "name": "Edificius", + "url": "/v1/software/edificius" + }, + { + "slug": "edit-flow", + "name": "Edit Flow", + "url": "/v1/software/edit-flow" + }, + { + "slug": "editgrid", + "name": "EditGrid", + "url": "/v1/software/editgrid" + }, + { + "slug": "editors-notes", + "name": "Editors' Notes", + "url": "/v1/software/editors-notes" + }, + { + "slug": "edlmax", + "name": "EdlMax", + "url": "/v1/software/edlmax" + }, + { + "slug": "edraw-max", + "name": "Edraw Max", + "url": "/v1/software/edraw-max" + }, + { + "slug": "edraw-mind-map", + "name": "Edraw Mind Map", + "url": "/v1/software/edraw-mind-map" + }, + { + "slug": "eduloo", + "name": "EduLoo", + "url": "/v1/software/eduloo" + }, + { + "slug": "edunext-technologies", + "name": "Edunext Technologies", + "url": "/v1/software/edunext-technologies" + }, + { + "slug": "edusim", + "name": "Edusim", + "url": "/v1/software/edusim" + }, + { + "slug": "efax-gtk", + "name": "Efax-gtk", + "url": "/v1/software/efax-gtk" + }, + { + "slug": "efficarbone", + "name": "Efficarbone", + "url": "/v1/software/efficarbone" + }, + { + "slug": "efficient-java-matrix-library", + "name": "Efficient Java Matrix Library", + "url": "/v1/software/efficient-java-matrix-library" + }, + { + "slug": "egencia-by-amex-gbt", + "name": "Egencia by Amex GBT", + "url": "/v1/software/egencia-by-amex-gbt" + }, + { + "slug": "egoweb-2-0", + "name": "EgoWeb 2.0", + "url": "/v1/software/egoweb-2-0" + }, + { + "slug": "eiffeldoc", + "name": "Eiffeldoc", + "url": "/v1/software/eiffeldoc" + }, + { + "slug": "eijir", + "name": "Eijirō", + "url": "/v1/software/eijir" + }, + { + "slug": "eikon", + "name": "Eikon", + "url": "/v1/software/eikon" + }, + { + "slug": "einstein", + "name": "Einstein", + "url": "/v1/software/einstein" + }, + { + "slug": "eitaa", + "name": "Eitaa", + "url": "/v1/software/eitaa" + }, + { + "slug": "ekahau-site-survey", + "name": "Ekahau Site Survey", + "url": "/v1/software/ekahau-site-survey" + }, + { + "slug": "elastix-toolbox-for-image-registration", + "name": "Elastix (toolbox for image registration)", + "url": "/v1/software/elastix-toolbox-for-image-registration" + }, + { + "slug": "ele-me", + "name": "Ele.me", + "url": "/v1/software/ele-me" + }, + { + "slug": "electoral-studies-knowledge-graph", + "name": "Electoral Studies Knowledge Graph", + "url": "/v1/software/electoral-studies-knowledge-graph" + }, + { + "slug": "electric-image-animation-system", + "name": "Electric Image Animation System", + "url": "/v1/software/electric-image-animation-system" + }, + { + "slug": "electrical-impedance-and-diffuse-optical-tomography-reconstruction-software", + "name": "Electrical Impedance and Diffuse Optical Tomography Reconstruction Software", + "url": "/v1/software/electrical-impedance-and-diffuse-optical-tomography-reconstruction-software" + }, + { + "slug": "electrical-transient-and-analysis-program", + "name": "Electrical Transient and Analysis Program", + "url": "/v1/software/electrical-transient-and-analysis-program" + }, + { + "slug": "electron-microscopy-datasets", + "name": "Electron Microscopy Datasets", + "url": "/v1/software/electron-microscopy-datasets" + }, + { + "slug": "electronic-appwrapper", + "name": "Electronic AppWrapper", + "url": "/v1/software/electronic-appwrapper" + }, + { + "slug": "electronic-document-management-system", + "name": "Electronic document management system", + "url": "/v1/software/electronic-document-management-system" + }, + { + "slug": "elektrik-piano", + "name": "Elektrik Piano", + "url": "/v1/software/elektrik-piano" + }, + { + "slug": "elemenope", + "name": "Elemenope", + "url": "/v1/software/elemenope" + }, + { + "slug": "element-3d", + "name": "Element 3D", + "url": "/v1/software/element-3d" + }, + { + "slug": "elephantdrive", + "name": "ElephantDrive", + "url": "/v1/software/elephantdrive" + }, + { + "slug": "elflight-engine", + "name": "Elflight Engine", + "url": "/v1/software/elflight-engine" + }, + { + "slug": "eli-review", + "name": "Eli Review", + "url": "/v1/software/eli-review" + }, + { + "slug": "elicitus", + "name": "Elicitus", + "url": "/v1/software/elicitus" + }, + { + "slug": "elium", + "name": "Elium", + "url": "/v1/software/elium" + }, + { + "slug": "elixir-code-smells", + "name": "Elixir-Code-Smells", + "url": "/v1/software/elixir-code-smells" + }, + { + "slug": "elixirfm", + "name": "ElixirFM", + "url": "/v1/software/elixirfm" + }, + { + "slug": "eliya", + "name": "Eliya", + "url": "/v1/software/eliya" + }, + { + "slug": "ellty", + "name": "Ellty", + "url": "/v1/software/ellty" + }, + { + "slug": "eloquens", + "name": "Eloquens", + "url": "/v1/software/eloquens" + }, + { + "slug": "elymentz", + "name": "Elymentz", + "url": "/v1/software/elymentz" + }, + { + "slug": "emailtray", + "name": "EmailTray", + "url": "/v1/software/emailtray" + }, + { + "slug": "emailchemy", + "name": "Emailchemy", + "url": "/v1/software/emailchemy" + }, + { + "slug": "emarox-map", + "name": "Emarox Map", + "url": "/v1/software/emarox-map" + }, + { + "slug": "emarox-pallet", + "name": "Emarox Pallet", + "url": "/v1/software/emarox-pallet" + }, + { + "slug": "embedded-javascript", + "name": "Embedded JavaScript", + "url": "/v1/software/embedded-javascript" + }, + { + "slug": "embedded-wizard", + "name": "Embedded Wizard", + "url": "/v1/software/embedded-wizard" + }, + { + "slug": "embergen", + "name": "EmberGen", + "url": "/v1/software/embergen" + }, + { + "slug": "emerging-rule", + "name": "Emerging Rule", + "url": "/v1/software/emerging-rule" + }, + { + "slug": "emigma", + "name": "Emigma", + "url": "/v1/software/emigma" + }, + { + "slug": "emissary", + "name": "Emissary", + "url": "/v1/software/emissary" + }, + { + "slug": "emissions-generation-resource-integrated-database", + "name": "Emissions & Generation Resource Integrated Database", + "url": "/v1/software/emissions-generation-resource-integrated-database" + }, + { + "slug": "empire", + "name": "Empire", + "url": "/v1/software/empire" + }, + { + "slug": "empirical-software-engineering", + "name": "Empirical software engineering", + "url": "/v1/software/empirical-software-engineering" + }, + { + "slug": "employee-coaching-software", + "name": "Employee Coaching Software", + "url": "/v1/software/employee-coaching-software" + }, + { + "slug": "employee-recognition-software", + "name": "Employee Recognition Software", + "url": "/v1/software/employee-recognition-software" + }, + { + "slug": "empress-embedded-database", + "name": "Empress Embedded Database", + "url": "/v1/software/empress-embedded-database" + }, + { + "slug": "emulationstation", + "name": "EmulationStation", + "url": "/v1/software/emulationstation" + }, + { + "slug": "emule-cn-mod", + "name": "Emule CN Mod", + "url": "/v1/software/emule-cn-mod" + }, + { + "slug": "emule-eastshare-mod", + "name": "Emule Eastshare Mod", + "url": "/v1/software/emule-eastshare-mod" + }, + { + "slug": "emule-magicangel-mod", + "name": "Emule Magicangel Mod", + "url": "/v1/software/emule-magicangel-mod" + }, + { + "slug": "emule-mephisto-mod", + "name": "Emule Mephisto Mod", + "url": "/v1/software/emule-mephisto-mod" + }, + { + "slug": "emule-neomule-mod", + "name": "Emule Neomule Mod", + "url": "/v1/software/emule-neomule-mod" + }, + { + "slug": "emule-plus-koizo", + "name": "Emule Plus Koizo", + "url": "/v1/software/emule-plus-koizo" + }, + { + "slug": "emule-scarangel", + "name": "Emule ScarAngel", + "url": "/v1/software/emule-scarangel" + }, + { + "slug": "emule-scarangel-mod", + "name": "Emule Scarangel mod", + "url": "/v1/software/emule-scarangel-mod" + }, + { + "slug": "emule-stullemule-mod", + "name": "Emule Stullemule mod", + "url": "/v1/software/emule-stullemule-mod" + }, + { + "slug": "emule-verycd-mod", + "name": "Emule VeryCD Mod", + "url": "/v1/software/emule-verycd-mod" + }, + { + "slug": "emule-x-mod", + "name": "Emule X Mod", + "url": "/v1/software/emule-x-mod" + }, + { + "slug": "emule-x-ray-mod", + "name": "Emule X-Ray Mod", + "url": "/v1/software/emule-x-ray-mod" + }, + { + "slug": "emule-excalibur-mod", + "name": "Emule excalibur Mod", + "url": "/v1/software/emule-excalibur-mod" + }, + { + "slug": "en-vogue", + "name": "En Vogue", + "url": "/v1/software/en-vogue" + }, + { + "slug": "enable-software", + "name": "EnABLE software", + "url": "/v1/software/enable-software" + }, + { + "slug": "encase", + "name": "EnCase", + "url": "/v1/software/encase" + }, + { + "slug": "endrain", + "name": "EnDrain", + "url": "/v1/software/endrain" + }, + { + "slug": "enquire", + "name": "EnQuire", + "url": "/v1/software/enquire" + }, + { + "slug": "enca", + "name": "Enca", + "url": "/v1/software/enca" + }, + { + "slug": "encarta", + "name": "Encarta", + "url": "/v1/software/encarta" + }, + { + "slug": "encina", + "name": "Encina", + "url": "/v1/software/encina" + }, + { + "slug": "encorebassing", + "name": "EncoreBassing", + "url": "/v1/software/encorebassing" + }, + { + "slug": "encyclop-dia-britannica-ultimate-reference-suite", + "name": "Encyclopædia Britannica Ultimate Reference Suite", + "url": "/v1/software/encyclop-dia-britannica-ultimate-reference-suite" + }, + { + "slug": "endaro", + "name": "Endaro", + "url": "/v1/software/endaro" + }, + { + "slug": "eneboo", + "name": "Eneboo", + "url": "/v1/software/eneboo" + }, + { + "slug": "energymech", + "name": "EnergyMech", + "url": "/v1/software/energymech" + }, + { + "slug": "engauge-digitizer", + "name": "Engauge Digitizer", + "url": "/v1/software/engauge-digitizer" + }, + { + "slug": "engaz-crm", + "name": "Engaz CRM", + "url": "/v1/software/engaz-crm" + }, + { + "slug": "engineering-equation-solver", + "name": "Engineering Equation Solver", + "url": "/v1/software/engineering-equation-solver" + }, + { + "slug": "enhydra-server", + "name": "Enhydra Server", + "url": "/v1/software/enhydra-server" + }, + { + "slug": "enlight-quickshot", + "name": "Enlight Quickshot", + "url": "/v1/software/enlight-quickshot" + }, + { + "slug": "enlightened-sound-daemon", + "name": "Enlightened Sound Daemon", + "url": "/v1/software/enlightened-sound-daemon" + }, + { + "slug": "enlil", + "name": "Enlil", + "url": "/v1/software/enlil" + }, + { + "slug": "enscape", + "name": "Enscape", + "url": "/v1/software/enscape" + }, + { + "slug": "enscribe", + "name": "Enscribe", + "url": "/v1/software/enscribe" + }, + { + "slug": "enstratus", + "name": "Enstratus", + "url": "/v1/software/enstratus" + }, + { + "slug": "ente-web-api-server", + "name": "Ente Web API (server)", + "url": "/v1/software/ente-web-api-server" + }, + { + "slug": "ente-web-photos-server", + "name": "Ente Web Photos (server)", + "url": "/v1/software/ente-web-photos-server" + }, + { + "slug": "enterprise-archive-solution", + "name": "Enterprise Archive Solution", + "url": "/v1/software/enterprise-archive-solution" + }, + { + "slug": "enterprise-dynamics", + "name": "Enterprise Dynamics", + "url": "/v1/software/enterprise-dynamics" + }, + { + "slug": "enterprise-extender", + "name": "Enterprise Extender", + "url": "/v1/software/enterprise-extender" + }, + { + "slug": "enterprise-storage-os", + "name": "Enterprise Storage OS", + "url": "/v1/software/enterprise-storage-os" + }, + { + "slug": "enterprise-vault", + "name": "Enterprise Vault", + "url": "/v1/software/enterprise-vault" + }, + { + "slug": "env3d", + "name": "Env3D", + "url": "/v1/software/env3d" + }, + { + "slug": "enverus-intelligence-research", + "name": "Enverus Intelligence Research", + "url": "/v1/software/enverus-intelligence-research" + }, + { + "slug": "enverus-rfx", + "name": "Enverus RFx", + "url": "/v1/software/enverus-rfx" + }, + { + "slug": "environmental-audio-extensions", + "name": "Environmental Audio Extensions", + "url": "/v1/software/environmental-audio-extensions" + }, + { + "slug": "envoy-distributable-viewer", + "name": "Envoy Distributable Viewer", + "url": "/v1/software/envoy-distributable-viewer" + }, + { + "slug": "enzona", + "name": "Enzona", + "url": "/v1/software/enzona" + }, + { + "slug": "eonebill", + "name": "Eonebill", + "url": "/v1/software/eonebill" + }, + { + "slug": "epesi-q13099384", + "name": "Epesi", + "url": "/v1/software/epesi-q13099384" + }, + { + "slug": "epesi", + "name": "Epesi", + "url": "/v1/software/epesi" + }, + { + "slug": "ephedra", + "name": "Ephedra", + "url": "/v1/software/ephedra" + }, + { + "slug": "epi-map", + "name": "Epi Map", + "url": "/v1/software/epi-map" + }, + { + "slug": "epic-citadel", + "name": "Epic Citadel", + "url": "/v1/software/epic-citadel" + }, + { + "slug": "epidata", + "name": "Epidata", + "url": "/v1/software/epidata" + }, + { + "slug": "epoptes", + "name": "Epoptes", + "url": "/v1/software/epoptes" + }, + { + "slug": "epostmailer", + "name": "Epostmailer", + "url": "/v1/software/epostmailer" + }, + { + "slug": "equinox", + "name": "Equinox", + "url": "/v1/software/equinox" + }, + { + "slug": "erbele", + "name": "Erbele", + "url": "/v1/software/erbele" + }, + { + "slug": "esdat", + "name": "Esdat", + "url": "/v1/software/esdat" + }, + { + "slug": "esker-fax", + "name": "Esker Fax", + "url": "/v1/software/esker-fax" + }, + { + "slug": "esperient-creator", + "name": "Esperient Creator", + "url": "/v1/software/esperient-creator" + }, + { + "slug": "espocrm", + "name": "EspoCRM", + "url": "/v1/software/espocrm" + }, + { + "slug": "essbase", + "name": "Essbase", + "url": "/v1/software/essbase" + }, + { + "slug": "ethercalc", + "name": "EtherCalc", + "url": "/v1/software/ethercalc" + }, + { + "slug": "ethno", + "name": "Ethno", + "url": "/v1/software/ethno" + }, + { + "slug": "ethnograph", + "name": "Ethnograph", + "url": "/v1/software/ethnograph" + }, + { + "slug": "ethosce", + "name": "EthosCE", + "url": "/v1/software/ethosce" + }, + { + "slug": "ethswitch", + "name": "Ethswitch", + "url": "/v1/software/ethswitch" + }, + { + "slug": "euclid", + "name": "Euclid", + "url": "/v1/software/euclid" + }, + { + "slug": "eunicycle", + "name": "Eunicycle", + "url": "/v1/software/eunicycle" + }, + { + "slug": "eurisko", + "name": "Eurisko", + "url": "/v1/software/eurisko" + }, + { + "slug": "european-middleware-initiative", + "name": "European Middleware Initiative", + "url": "/v1/software/european-middleware-initiative" + }, + { + "slug": "evasi0n", + "name": "Evasi0n", + "url": "/v1/software/evasi0n" + }, + { + "slug": "event-viewer", + "name": "Event Viewer", + "url": "/v1/software/event-viewer" + }, + { + "slug": "eventmanager", + "name": "EventManager", + "url": "/v1/software/eventmanager" + }, + { + "slug": "eventdrive", + "name": "Eventdrive", + "url": "/v1/software/eventdrive" + }, + { + "slug": "eventifai", + "name": "Eventifai", + "url": "/v1/software/eventifai" + }, + { + "slug": "everstory", + "name": "EverStory", + "url": "/v1/software/everstory" + }, + { + "slug": "everblock", + "name": "Everblock", + "url": "/v1/software/everblock" + }, + { + "slug": "everhour", + "name": "Everhour", + "url": "/v1/software/everhour" + }, + { + "slug": "evertontv", + "name": "EvertonTV", + "url": "/v1/software/evertontv" + }, + { + "slug": "everyscape", + "name": "EveryScape", + "url": "/v1/software/everyscape" + }, + { + "slug": "everybody-votes-channel", + "name": "Everybody Votes Channel", + "url": "/v1/software/everybody-votes-channel" + }, + { + "slug": "everyday-genius-squarelogic", + "name": "Everyday Genius: SquareLogic", + "url": "/v1/software/everyday-genius-squarelogic" + }, + { + "slug": "everyonepiano", + "name": "EveryonePiano", + "url": "/v1/software/everyonepiano" + }, + { + "slug": "evocb", + "name": "Evocb", + "url": "/v1/software/evocb" + }, + { + "slug": "evoke", + "name": "Evoke", + "url": "/v1/software/evoke" + }, + { + "slug": "expasy", + "name": "ExPASy", + "url": "/v1/software/expasy" + }, + { + "slug": "exasearch", + "name": "ExaSearch", + "url": "/v1/software/exasearch" + }, + { + "slug": "exact-audio-copy", + "name": "Exact Audio Copy", + "url": "/v1/software/exact-audio-copy" + }, + { + "slug": "exact-online", + "name": "Exact Online", + "url": "/v1/software/exact-online" + }, + { + "slug": "examdiff-pro", + "name": "ExamDiff Pro", + "url": "/v1/software/examdiff-pro" + }, + { + "slug": "excalibug", + "name": "ExcaliBug", + "url": "/v1/software/excalibug" + }, + { + "slug": "excelsior-jet", + "name": "Excelsior JET", + "url": "/v1/software/excelsior-jet" + }, + { + "slug": "exchange-activesync", + "name": "Exchange ActiveSync", + "url": "/v1/software/exchange-activesync" + }, + { + "slug": "excise-movement-and-control-system", + "name": "Excise Movement and Control System", + "url": "/v1/software/excise-movement-and-control-system" + }, + { + "slug": "exergy", + "name": "Exergy", + "url": "/v1/software/exergy" + }, + { + "slug": "exhibit-3-0", + "name": "Exhibit 3.0", + "url": "/v1/software/exhibit-3-0" + }, + { + "slug": "exo-inc", + "name": "Exo Inc", + "url": "/v1/software/exo-inc" + }, + { + "slug": "exodus", + "name": "Exodus", + "url": "/v1/software/exodus" + }, + { + "slug": "exoneree-app", + "name": "Exoneree App", + "url": "/v1/software/exoneree-app" + }, + { + "slug": "expandrive", + "name": "ExpanDrive", + "url": "/v1/software/expandrive" + }, + { + "slug": "expensive-desk-calculator", + "name": "Expensive Desk Calculator", + "url": "/v1/software/expensive-desk-calculator" + }, + { + "slug": "expensive-tape-recorder", + "name": "Expensive Tape Recorder", + "url": "/v1/software/expensive-tape-recorder" + }, + { + "slug": "experience-this", + "name": "Experience This", + "url": "/v1/software/experience-this" + }, + { + "slug": "exploratree", + "name": "Exploratree", + "url": "/v1/software/exploratree" + }, + { + "slug": "explore2fs", + "name": "Explore2fs", + "url": "/v1/software/explore2fs" + }, + { + "slug": "explzh", + "name": "Explzh", + "url": "/v1/software/explzh" + }, + { + "slug": "expos", + "name": "Exposé", + "url": "/v1/software/expos" + }, + { + "slug": "express-data-path", + "name": "Express Data Path", + "url": "/v1/software/express-data-path" + }, + { + "slug": "express-scribe", + "name": "Express Scribe", + "url": "/v1/software/express-scribe" + }, + { + "slug": "express-scribe-transcription-software", + "name": "Express Scribe Transcription Software", + "url": "/v1/software/express-scribe-transcription-software" + }, + { + "slug": "expression-studio", + "name": "Expression Studio", + "url": "/v1/software/expression-studio" + }, + { + "slug": "expresso-spreadsheet", + "name": "Expresso spreadsheet", + "url": "/v1/software/expresso-spreadsheet" + }, + { + "slug": "exstream", + "name": "Exstream", + "url": "/v1/software/exstream" + }, + { + "slug": "extempore", + "name": "Extempore", + "url": "/v1/software/extempore" + }, + { + "slug": "extenxls", + "name": "ExtenXLS", + "url": "/v1/software/extenxls" + }, + { + "slug": "extensible-computational-chemistry-environment", + "name": "Extensible Computational Chemistry Environment", + "url": "/v1/software/extensible-computational-chemistry-environment" + }, + { + "slug": "extreme-loading-for-structures", + "name": "Extreme Loading for Structures", + "url": "/v1/software/extreme-loading-for-structures" + }, + { + "slug": "extremez-ip", + "name": "ExtremeZ-IP", + "url": "/v1/software/extremez-ip" + }, + { + "slug": "extromatica-network-monitor", + "name": "Extromatica Network Monitor", + "url": "/v1/software/extromatica-network-monitor" + }, + { + "slug": "eye-sys", + "name": "Eye-Sys", + "url": "/v1/software/eye-sys" + }, + { + "slug": "eyeball-chat", + "name": "Eyeball Chat", + "url": "/v1/software/eyeball-chat" + }, + { + "slug": "eyegroove", + "name": "Eyegroove", + "url": "/v1/software/eyegroove" + }, + { + "slug": "ezhtml", + "name": "EzHTML", + "url": "/v1/software/ezhtml" + }, + { + "slug": "ezmol", + "name": "EzMol", + "url": "/v1/software/ezmol" + }, + { + "slug": "ezstream", + "name": "Ezstream", + "url": "/v1/software/ezstream" + }, + { + "slug": "f-o-x", + "name": "F.O.X.", + "url": "/v1/software/f-o-x" + }, + { + "slug": "f9-financial-reporting", + "name": "F9 Financial Reporting", + "url": "/v1/software/f9-financial-reporting" + }, + { + "slug": "faac", + "name": "FAAC", + "url": "/v1/software/faac" + }, + { + "slug": "facsys", + "name": "FACSys", + "url": "/v1/software/facsys" + }, + { + "slug": "fade", + "name": "FADE", + "url": "/v1/software/fade" + }, + { + "slug": "faims-mobile-platform", + "name": "FAIMS Mobile Platform", + "url": "/v1/software/faims-mobile-platform" + }, + { + "slug": "falc", + "name": "FALC", + "url": "/v1/software/falc" + }, + { + "slug": "falf-player", + "name": "FALF Player", + "url": "/v1/software/falf-player" + }, + { + "slug": "famulus", + "name": "FAMULUS", + "url": "/v1/software/famulus" + }, + { + "slug": "fangorn", + "name": "FANGORN", + "url": "/v1/software/fangorn" + }, + { + "slug": "fao-country-profiles", + "name": "FAO Country Profiles", + "url": "/v1/software/fao-country-profiles" + }, + { + "slug": "fastrad", + "name": "FASTRAD", + "url": "/v1/software/fastrad" + }, + { + "slug": "faxman", + "name": "FAXman", + "url": "/v1/software/faxman" + }, + { + "slug": "fast-metabolizer", + "name": "FAst MEtabolizer", + "url": "/v1/software/fast-metabolizer" + }, + { + "slug": "fbb", + "name": "FBB", + "url": "/v1/software/fbb" + }, + { + "slug": "fdfmerge", + "name": "FDFMerge", + "url": "/v1/software/fdfmerge" + }, + { + "slug": "fdmnes", + "name": "FDMNES", + "url": "/v1/software/fdmnes" + }, + { + "slug": "fdr", + "name": "FDR", + "url": "/v1/software/fdr" + }, + { + "slug": "feat", + "name": "FEAT", + "url": "/v1/software/feat" + }, + { + "slug": "feff", + "name": "FEFF", + "url": "/v1/software/feff" + }, + { + "slug": "feko", + "name": "FEKO", + "url": "/v1/software/feko" + }, + { + "slug": "fesom", + "name": "FESOM", + "url": "/v1/software/fesom" + }, + { + "slug": "fez", + "name": "FEZ", + "url": "/v1/software/fez" + }, + { + "slug": "fftpack", + "name": "FFTPACK", + "url": "/v1/software/fftpack" + }, + { + "slug": "fhem", + "name": "FHEM", + "url": "/v1/software/fhem" + }, + { + "slug": "fhfs-file-server", + "name": "FHFS (File Server)", + "url": "/v1/software/fhfs-file-server" + }, + { + "slug": "fico-xpress", + "name": "FICO Xpress", + "url": "/v1/software/fico-xpress" + }, + { + "slug": "fidyst", + "name": "FIDYST", + "url": "/v1/software/fidyst" + }, + { + "slug": "fifa-transfer-matching-system", + "name": "FIFA Transfer Matching System", + "url": "/v1/software/fifa-transfer-matching-system" + }, + { + "slug": "fine-mep", + "name": "FINE MEP", + "url": "/v1/software/fine-mep" + }, + { + "slug": "finnmorf", + "name": "FINNMORF", + "url": "/v1/software/finnmorf" + }, + { + "slug": "fips", + "name": "FIPS", + "url": "/v1/software/fips" + }, + { + "slug": "fisher", + "name": "FISHER", + "url": "/v1/software/fisher" + }, + { + "slug": "flacs", + "name": "FLACS", + "url": "/v1/software/flacs" + }, + { + "slug": "fleur", + "name": "FLEUR", + "url": "/v1/software/fleur" + }, + { + "slug": "flmask", + "name": "FLMask", + "url": "/v1/software/flmask" + }, + { + "slug": "fluka", + "name": "FLUKA", + "url": "/v1/software/fluka" + }, + { + "slug": "flvto", + "name": "FLVTO", + "url": "/v1/software/flvto" + }, + { + "slug": "fmfs", + "name": "FMFS", + "url": "/v1/software/fmfs" + }, + { + "slug": "fog-project", + "name": "FOG Project", + "url": "/v1/software/fog-project" + }, + { + "slug": "foran-system", + "name": "FORAN System", + "url": "/v1/software/foran-system" + }, + { + "slug": "fordisc", + "name": "FORDISC", + "url": "/v1/software/fordisc" + }, + { + "slug": "fps-creator", + "name": "FPS Creator", + "url": "/v1/software/fps-creator" + }, + { + "slug": "frantext-stella", + "name": "FRANTEXT / Stella", + "url": "/v1/software/frantext-stella" + }, + { + "slug": "fret", + "name": "FRET", + "url": "/v1/software/fret" + }, + { + "slug": "frrouting", + "name": "FRRouting", + "url": "/v1/software/frrouting" + }, + { + "slug": "fraunhofer-opensource-sensorthings-server", + "name": "FRaunhofer Opensource SensorThings-Server", + "url": "/v1/software/fraunhofer-opensource-sensorthings-server" + }, + { + "slug": "frog-creator", + "name": "FRoG Creator", + "url": "/v1/software/frog-creator" + }, + { + "slug": "fsdpc", + "name": "FSDPC", + "url": "/v1/software/fsdpc" + }, + { + "slug": "fsx-play-golf-simulator-software", + "name": "FSX Play Golf Simulator Software", + "url": "/v1/software/fsx-play-golf-simulator-software" + }, + { + "slug": "fslint", + "name": "FSlint", + "url": "/v1/software/fslint" + }, + { + "slug": "ftapi", + "name": "FTAPI", + "url": "/v1/software/ftapi" + }, + { + "slug": "ftd", + "name": "FTD", + "url": "/v1/software/ftd" + }, + { + "slug": "ftp-commander", + "name": "FTP Commander", + "url": "/v1/software/ftp-commander" + }, + { + "slug": "ftp-voyager", + "name": "FTP Voyager", + "url": "/v1/software/ftp-voyager" + }, + { + "slug": "funes", + "name": "FUNES", + "url": "/v1/software/funes" + }, + { + "slug": "fwkcs", + "name": "FWKCS", + "url": "/v1/software/fwkcs" + }, + { + "slug": "fx-photo-studio-q5427412", + "name": "FX Photo Studio", + "url": "/v1/software/fx-photo-studio-q5427412" + }, + { + "slug": "fx-photo-studio", + "name": "FX Photo Studio", + "url": "/v1/software/fx-photo-studio" + }, + { + "slug": "fabasoft-folio-cloud", + "name": "Fabasoft Folio Cloud", + "url": "/v1/software/fabasoft-folio-cloud" + }, + { + "slug": "fabasoft-egov-suite", + "name": "Fabasoft eGov-Suite", + "url": "/v1/software/fabasoft-egov-suite" + }, + { + "slug": "facadecolorizer", + "name": "FacadeColorizer", + "url": "/v1/software/facadecolorizer" + }, + { + "slug": "face-swap-live", + "name": "Face Swap Live", + "url": "/v1/software/face-swap-live" + }, + { + "slug": "face-of-the-future", + "name": "Face of the Future", + "url": "/v1/software/face-of-the-future" + }, + { + "slug": "facefx", + "name": "FaceFX", + "url": "/v1/software/facefx" + }, + { + "slug": "facerig", + "name": "FaceRig", + "url": "/v1/software/facerig" + }, + { + "slug": "facebook-home", + "name": "Facebook Home", + "url": "/v1/software/facebook-home" + }, + { + "slug": "facebook-paper", + "name": "Facebook Paper", + "url": "/v1/software/facebook-paper" + }, + { + "slug": "facebook-room", + "name": "Facebook Room", + "url": "/v1/software/facebook-room" + }, + { + "slug": "facebook-slingshot", + "name": "Facebook Slingshot", + "url": "/v1/software/facebook-slingshot" + }, + { + "slug": "facepager", + "name": "Facepager", + "url": "/v1/software/facepager" + }, + { + "slug": "facetune", + "name": "Facetune", + "url": "/v1/software/facetune" + }, + { + "slug": "factory-i-o", + "name": "Factory I/O", + "url": "/v1/software/factory-i-o" + }, + { + "slug": "factuchat", + "name": "FactuChat", + "url": "/v1/software/factuchat" + }, + { + "slug": "facturascripts", + "name": "FacturaScripts", + "url": "/v1/software/facturascripts" + }, + { + "slug": "facultyfiles", + "name": "FacultyFiles", + "url": "/v1/software/facultyfiles" + }, + { + "slug": "fade-in", + "name": "Fade In", + "url": "/v1/software/fade-in" + }, + { + "slug": "fairmat", + "name": "Fairmat", + "url": "/v1/software/fairmat" + }, + { + "slug": "fakturia", + "name": "Fakturia", + "url": "/v1/software/fakturia" + }, + { + "slug": "falcon-180b", + "name": "Falcon 180B", + "url": "/v1/software/falcon-180b" + }, + { + "slug": "falconview", + "name": "FalconView", + "url": "/v1/software/falconview" + }, + { + "slug": "famitracker", + "name": "FamiTracker", + "url": "/v1/software/famitracker" + }, + { + "slug": "family-sharing", + "name": "Family Sharing", + "url": "/v1/software/family-sharing" + }, + { + "slug": "family-tree-maker-10", + "name": "Family Tree Maker 10", + "url": "/v1/software/family-tree-maker-10" + }, + { + "slug": "fantamorph", + "name": "FantaMorph", + "url": "/v1/software/fantamorph" + }, + { + "slug": "fantastico", + "name": "Fantastico", + "url": "/v1/software/fantastico" + }, + { + "slug": "fanurio", + "name": "Fanurio", + "url": "/v1/software/fanurio" + }, + { + "slug": "far-play", + "name": "Far-Play", + "url": "/v1/software/far-play" + }, + { + "slug": "farplay", + "name": "FarPlay", + "url": "/v1/software/farplay" + }, + { + "slug": "farpoint-spread", + "name": "FarPoint Spread", + "url": "/v1/software/farpoint-spread" + }, + { + "slug": "farfield", + "name": "Farfield", + "url": "/v1/software/farfield" + }, + { + "slug": "fast-hack-em", + "name": "Fast Hack'em", + "url": "/v1/software/fast-hack-em" + }, + { + "slug": "fast-library-for-approximate-nearest-neighbors", + "name": "Fast Library for Approximate Nearest Neighbors", + "url": "/v1/software/fast-library-for-approximate-nearest-neighbors" + }, + { + "slug": "fast-and-realistic-opengl-displayer", + "name": "Fast and Realistic OpenGL Displayer", + "url": "/v1/software/fast-and-realistic-opengl-displayer" + }, + { + "slug": "fast-statistical-alignment", + "name": "Fast statistical alignment", + "url": "/v1/software/fast-statistical-alignment" + }, + { + "slug": "fastback", + "name": "FastBack", + "url": "/v1/software/fastback" + }, + { + "slug": "fastbridge", + "name": "FastBridge", + "url": "/v1/software/fastbridge" + }, + { + "slug": "fastcad", + "name": "FastCAD", + "url": "/v1/software/fastcad" + }, + { + "slug": "fastecho", + "name": "FastEcho", + "url": "/v1/software/fastecho" + }, + { + "slug": "fastkwic", + "name": "FastKwic", + "url": "/v1/software/fastkwic" + }, + { + "slug": "fastpcr", + "name": "FastPCR", + "url": "/v1/software/fastpcr" + }, + { + "slug": "fastpass-sspr", + "name": "FastPass SSPR", + "url": "/v1/software/fastpass-sspr" + }, + { + "slug": "fastpoet", + "name": "FastPoet", + "url": "/v1/software/fastpoet" + }, + { + "slug": "fastsense", + "name": "FastSense", + "url": "/v1/software/fastsense" + }, + { + "slug": "fasttrack-schedule", + "name": "FastTrack Schedule", + "url": "/v1/software/fasttrack-schedule" + }, + { + "slug": "fasterfox", + "name": "Fasterfox", + "url": "/v1/software/fasterfox" + }, + { + "slug": "fastic", + "name": "Fastic", + "url": "/v1/software/fastic" + }, + { + "slug": "fastik-io", + "name": "Fastik.io", + "url": "/v1/software/fastik-io" + }, + { + "slug": "fatbooth", + "name": "FatBooth", + "url": "/v1/software/fatbooth" + }, + { + "slug": "fatfs", + "name": "FatFs", + "url": "/v1/software/fatfs" + }, + { + "slug": "favro", + "name": "Favro", + "url": "/v1/software/favro" + }, + { + "slug": "fawkes", + "name": "Fawkes", + "url": "/v1/software/fawkes" + }, + { + "slug": "fayedu", + "name": "FayEDU", + "url": "/v1/software/fayedu" + }, + { + "slug": "femorph", + "name": "FeMorph", + "url": "/v1/software/femorph" + }, + { + "slug": "featherpad", + "name": "FeatherPad", + "url": "/v1/software/featherpad" + }, + { + "slug": "featureflip", + "name": "Featureflip", + "url": "/v1/software/featureflip" + }, + { + "slug": "fedena", + "name": "Fedena", + "url": "/v1/software/fedena" + }, + { + "slug": "federated-learning-of-cohorts", + "name": "Federated Learning of Cohorts", + "url": "/v1/software/federated-learning-of-cohorts" + }, + { + "slug": "fedibird", + "name": "Fedibird", + "url": "/v1/software/fedibird" + }, + { + "slug": "feed-over-e-mail", + "name": "Feed Over E-mail", + "url": "/v1/software/feed-over-e-mail" + }, + { + "slug": "feed-viewer", + "name": "Feed Viewer", + "url": "/v1/software/feed-viewer" + }, + { + "slug": "feedback-hub", + "name": "Feedback Hub", + "url": "/v1/software/feedback-hub" + }, + { + "slug": "feedity", + "name": "Feedity", + "url": "/v1/software/feedity" + }, + { + "slug": "feishu", + "name": "Feishu", + "url": "/v1/software/feishu" + }, + { + "slug": "feldpartitur", + "name": "Feldpartitur", + "url": "/v1/software/feldpartitur" + }, + { + "slug": "felix", + "name": "Felix", + "url": "/v1/software/felix" + }, + { + "slug": "felsius", + "name": "Felsius", + "url": "/v1/software/felsius" + }, + { + "slug": "felt", + "name": "Felt", + "url": "/v1/software/felt" + }, + { + "slug": "femtechnet", + "name": "FemTechNet", + "url": "/v1/software/femtechnet" + }, + { + "slug": "feng-office-professional-edition", + "name": "Feng Office Professional Edition", + "url": "/v1/software/feng-office-professional-edition" + }, + { + "slug": "fetion", + "name": "Fetion", + "url": "/v1/software/fetion" + }, + { + "slug": "ffmpeg2theora", + "name": "Ffmpeg2theora", + "url": "/v1/software/ffmpeg2theora" + }, + { + "slug": "fibre-channel-utility", + "name": "Fibre Channel Utility", + "url": "/v1/software/fibre-channel-utility" + }, + { + "slug": "field-trip", + "name": "Field Trip", + "url": "/v1/software/field-trip" + }, + { + "slug": "fieldworks", + "name": "FieldWorks", + "url": "/v1/software/fieldworks" + }, + { + "slug": "fightcade", + "name": "Fightcade", + "url": "/v1/software/fightcade" + }, + { + "slug": "filament-audio-software", + "name": "Filament (audio software)", + "url": "/v1/software/filament-audio-software" + }, + { + "slug": "filament-record-navigation", + "name": "Filament Record Navigation", + "url": "/v1/software/filament-record-navigation" + }, + { + "slug": "file-explorer", + "name": "File Explorer", + "url": "/v1/software/file-explorer" + }, + { + "slug": "file2text", + "name": "File2Text", + "url": "/v1/software/file2text" + }, + { + "slug": "filebot", + "name": "FileBot", + "url": "/v1/software/filebot" + }, + { + "slug": "filecloud", + "name": "FileCloud", + "url": "/v1/software/filecloud" + }, + { + "slug": "filehippo-update-checker", + "name": "FileHippo Update Checker", + "url": "/v1/software/filehippo-update-checker" + }, + { + "slug": "filemerlin", + "name": "FileMerlin", + "url": "/v1/software/filemerlin" + }, + { + "slug": "filecamp", + "name": "Filecamp", + "url": "/v1/software/filecamp" + }, + { + "slug": "filecoin", + "name": "Filecoin", + "url": "/v1/software/filecoin" + }, + { + "slug": "filemail", + "name": "Filemail", + "url": "/v1/software/filemail" + }, + { + "slug": "filetopia", + "name": "Filetopia", + "url": "/v1/software/filetopia" + }, + { + "slug": "filio", + "name": "Filio", + "url": "/v1/software/filio" + }, + { + "slug": "film4od", + "name": "Film4oD", + "url": "/v1/software/film4od" + }, + { + "slug": "filterbloom", + "name": "Filterbloom", + "url": "/v1/software/filterbloom" + }, + { + "slug": "finoptory", + "name": "FinOptory", + "url": "/v1/software/finoptory" + }, + { + "slug": "finacle", + "name": "Finacle", + "url": "/v1/software/finacle" + }, + { + "slug": "final-scratch", + "name": "Final Scratch", + "url": "/v1/software/final-scratch" + }, + { + "slug": "finale", + "name": "Finale", + "url": "/v1/software/finale" + }, + { + "slug": "finco", + "name": "Finco", + "url": "/v1/software/finco" + }, + { + "slug": "find-my-device", + "name": "Find My Device", + "url": "/v1/software/find-my-device" + }, + { + "slug": "finding-popular-hashtags", + "name": "Finding Popular Hashtags", + "url": "/v1/software/finding-popular-hashtags" + }, + { + "slug": "finereader-pdf", + "name": "FineReader PDF", + "url": "/v1/software/finereader-pdf" + }, + { + "slug": "fing", + "name": "Fing", + "url": "/v1/software/fing" + }, + { + "slug": "finger-on-the-app", + "name": "Finger on the App", + "url": "/v1/software/finger-on-the-app" + }, + { + "slug": "finnish-media-scrapers", + "name": "Finnish Media Scrapers", + "url": "/v1/software/finnish-media-scrapers" + }, + { + "slug": "fiona", + "name": "Fiona", + "url": "/v1/software/fiona" + }, + { + "slug": "firebenchmarks", + "name": "FireBenchmarks", + "url": "/v1/software/firebenchmarks" + }, + { + "slug": "firedaemon", + "name": "FireDaemon", + "url": "/v1/software/firedaemon" + }, + { + "slug": "firetune", + "name": "FireTune", + "url": "/v1/software/firetune" + }, + { + "slug": "fireball", + "name": "Fireball", + "url": "/v1/software/fireball" + }, + { + "slug": "firebase-authentication", + "name": "Firebase Authentication", + "url": "/v1/software/firebase-authentication" + }, + { + "slug": "firebird-bbs", + "name": "Firebird BBS", + "url": "/v1/software/firebird-bbs" + }, + { + "slug": "firecracker", + "name": "Firecracker", + "url": "/v1/software/firecracker" + }, + { + "slug": "firefox-1-5", + "name": "Firefox 1.5", + "url": "/v1/software/firefox-1-5" + }, + { + "slug": "firefox-8", + "name": "Firefox 8", + "url": "/v1/software/firefox-8" + }, + { + "slug": "firefox-lorentz", + "name": "Firefox Lorentz", + "url": "/v1/software/firefox-lorentz" + }, + { + "slug": "firemonger", + "name": "Firemonger", + "url": "/v1/software/firemonger" + }, + { + "slug": "firesheep", + "name": "Firesheep", + "url": "/v1/software/firesheep" + }, + { + "slug": "firstclass", + "name": "FirstClass", + "url": "/v1/software/firstclass" + }, + { + "slug": "fishbrain", + "name": "Fishbrain", + "url": "/v1/software/fishbrain" + }, + { + "slug": "fitit", + "name": "FitIt", + "url": "/v1/software/fitit" + }, + { + "slug": "fitbod", + "name": "Fitbod", + "url": "/v1/software/fitbod" + }, + { + "slug": "fitcompare", + "name": "Fitcompare", + "url": "/v1/software/fitcompare" + }, + { + "slug": "flaky-test", + "name": "Flaky test", + "url": "/v1/software/flaky-test" + }, + { + "slug": "flame-over", + "name": "Flame Over", + "url": "/v1/software/flame-over" + }, + { + "slug": "flamenco-search", + "name": "Flamenco Search", + "url": "/v1/software/flamenco-search" + }, + { + "slug": "flare", + "name": "Flare", + "url": "/v1/software/flare" + }, + { + "slug": "flaresight", + "name": "FlareSight", + "url": "/v1/software/flaresight" + }, + { + "slug": "flarum", + "name": "Flarum", + "url": "/v1/software/flarum" + }, + { + "slug": "flashback-pro", + "name": "FlashBack Pro", + "url": "/v1/software/flashback-pro" + }, + { + "slug": "flashfxp", + "name": "FlashFXP", + "url": "/v1/software/flashfxp" + }, + { + "slug": "flashpaper", + "name": "FlashPaper", + "url": "/v1/software/flashpaper" + }, + { + "slug": "flashblock", + "name": "Flashblock", + "url": "/v1/software/flashblock" + }, + { + "slug": "flashcard-machine", + "name": "Flashcard Machine", + "url": "/v1/software/flashcard-machine" + }, + { + "slug": "flawfinder", + "name": "Flawfinder", + "url": "/v1/software/flawfinder" + }, + { + "slug": "fleck", + "name": "Fleck", + "url": "/v1/software/fleck" + }, + { + "slug": "fleet-management-software", + "name": "Fleet management software", + "url": "/v1/software/fleet-management-software" + }, + { + "slug": "flexaid", + "name": "FlexAID", + "url": "/v1/software/flexaid" + }, + { + "slug": "flexhex", + "name": "FlexHex", + "url": "/v1/software/flexhex" + }, + { + "slug": "flexpro", + "name": "FlexPro", + "url": "/v1/software/flexpro" + }, + { + "slug": "flexcom", + "name": "Flexcom", + "url": "/v1/software/flexcom" + }, + { + "slug": "flexpde", + "name": "Flexpde", + "url": "/v1/software/flexpde" + }, + { + "slug": "flexsim", + "name": "Flexsim", + "url": "/v1/software/flexsim" + }, + { + "slug": "flickypedia", + "name": "Flickypedia", + "url": "/v1/software/flickypedia" + }, + { + "slug": "fliggy-software", + "name": "Fliggy Software", + "url": "/v1/software/fliggy-software" + }, + { + "slug": "flip", + "name": "Flip", + "url": "/v1/software/flip" + }, + { + "slug": "flip4mac", + "name": "Flip4Mac", + "url": "/v1/software/flip4mac" + }, + { + "slug": "flipbuilder", + "name": "FlipBuilder", + "url": "/v1/software/flipbuilder" + }, + { + "slug": "fliphtml5", + "name": "FlipHTML5", + "url": "/v1/software/fliphtml5" + }, + { + "slug": "flipscore", + "name": "FlipScore", + "url": "/v1/software/flipscore" + }, + { + "slug": "flood-modeller", + "name": "Flood Modeller", + "url": "/v1/software/flood-modeller" + }, + { + "slug": "floristware", + "name": "FloristWare", + "url": "/v1/software/floristware" + }, + { + "slug": "flot", + "name": "Flot", + "url": "/v1/software/flot" + }, + { + "slug": "flow", + "name": "Flow", + "url": "/v1/software/flow" + }, + { + "slug": "flow-tracer", + "name": "Flow tracer", + "url": "/v1/software/flow-tracer" + }, + { + "slug": "flowjo", + "name": "FlowJo", + "url": "/v1/software/flowjo" + }, + { + "slug": "flowos", + "name": "FlowOS", + "url": "/v1/software/flowos" + }, + { + "slug": "flowable", + "name": "Flowable", + "url": "/v1/software/flowable" + }, + { + "slug": "flowin", + "name": "Flowin", + "url": "/v1/software/flowin" + }, + { + "slug": "flowtriq", + "name": "Flowtriq", + "url": "/v1/software/flowtriq" + }, + { + "slug": "fluctuat", + "name": "Fluctuat", + "url": "/v1/software/fluctuat" + }, + { + "slug": "fluent-design-system", + "name": "Fluent Design System", + "url": "/v1/software/fluent-design-system" + }, + { + "slug": "fluenz", + "name": "Fluenz", + "url": "/v1/software/fluenz" + }, + { + "slug": "fluid", + "name": "Fluid", + "url": "/v1/software/fluid" + }, + { + "slug": "fluidinfo", + "name": "Fluidinfo", + "url": "/v1/software/fluidinfo" + }, + { + "slug": "flyenv", + "name": "FlyEnv", + "url": "/v1/software/flyenv" + }, + { + "slug": "flyexpress", + "name": "FlyExpress", + "url": "/v1/software/flyexpress" + }, + { + "slug": "flyover", + "name": "Flyover", + "url": "/v1/software/flyover" + }, + { + "slug": "flyugegenhaimen", + "name": "Flyugegenhaimen", + "url": "/v1/software/flyugegenhaimen" + }, + { + "slug": "focalis", + "name": "Focalis", + "url": "/v1/software/focalis" + }, + { + "slug": "focusopen-digital-asset-manager", + "name": "FocusOPEN Digital Asset Manager", + "url": "/v1/software/focusopen-digital-asset-manager" + }, + { + "slug": "focustrack", + "name": "FocusTrack", + "url": "/v1/software/focustrack" + }, + { + "slug": "fogalqrn", + "name": "FogAlqrn", + "url": "/v1/software/fogalqrn" + }, + { + "slug": "fogbugz", + "name": "FogBugz", + "url": "/v1/software/fogbugz" + }, + { + "slug": "foldx", + "name": "FoldX", + "url": "/v1/software/foldx" + }, + { + "slug": "foldersize", + "name": "FolderSize", + "url": "/v1/software/foldersize" + }, + { + "slug": "foliot", + "name": "Foliot", + "url": "/v1/software/foliot" + }, + { + "slug": "folker", + "name": "Folker", + "url": "/v1/software/folker" + }, + { + "slug": "fonema", + "name": "Fonema", + "url": "/v1/software/fonema" + }, + { + "slug": "font-bomb", + "name": "Font Bomb", + "url": "/v1/software/font-bomb" + }, + { + "slug": "font-book", + "name": "Font Book", + "url": "/v1/software/font-book" + }, + { + "slug": "font-fusion", + "name": "Font Fusion", + "url": "/v1/software/font-fusion" + }, + { + "slug": "fontcreator", + "name": "FontCreator", + "url": "/v1/software/fontcreator" + }, + { + "slug": "fontlab", + "name": "FontLab", + "url": "/v1/software/fontlab" + }, + { + "slug": "foodnotify", + "name": "FoodNotify", + "url": "/v1/software/foodnotify" + }, + { + "slug": "football-manager-2017-in-game-editor", + "name": "Football Manager 2017 In-Game Editor", + "url": "/v1/software/football-manager-2017-in-game-editor" + }, + { + "slug": "football-manager-2018-in-game-editor", + "name": "Football Manager 2018 - In-Game Editor", + "url": "/v1/software/football-manager-2018-in-game-editor" + }, + { + "slug": "fooya", + "name": "Fooya", + "url": "/v1/software/fooya" + }, + { + "slug": "forvue", + "name": "ForVue", + "url": "/v1/software/forvue" + }, + { + "slug": "ford-sync", + "name": "Ford Sync", + "url": "/v1/software/ford-sync" + }, + { + "slug": "fore-coffee", + "name": "Fore Coffee", + "url": "/v1/software/fore-coffee" + }, + { + "slug": "foreflight", + "name": "ForeFlight", + "url": "/v1/software/foreflight" + }, + { + "slug": "foreui", + "name": "ForeUI", + "url": "/v1/software/foreui" + }, + { + "slug": "forefront-identity-manager", + "name": "Forefront Identity Manager", + "url": "/v1/software/forefront-identity-manager" + }, + { + "slug": "forensic-toolkit", + "name": "Forensic Toolkit", + "url": "/v1/software/forensic-toolkit" + }, + { + "slug": "forest", + "name": "Forest", + "url": "/v1/software/forest" + }, + { + "slug": "forge", + "name": "Forge", + "url": "/v1/software/forge" + }, + { + "slug": "form-faces", + "name": "Form Faces", + "url": "/v1/software/form-faces" + }, + { + "slug": "form-z", + "name": "Form-Z", + "url": "/v1/software/form-z" + }, + { + "slug": "formhug", + "name": "FormHug", + "url": "/v1/software/formhug" + }, + { + "slug": "formatfactory", + "name": "FormatFactory", + "url": "/v1/software/formatfactory" + }, + { + "slug": "formatted-file-system", + "name": "Formatted File System", + "url": "/v1/software/formatted-file-system" + }, + { + "slug": "formbox", + "name": "Formbox", + "url": "/v1/software/formbox" + }, + { + "slug": "formdev", + "name": "Formdev", + "url": "/v1/software/formdev" + }, + { + "slug": "formosa-bbs", + "name": "Formosa BBS", + "url": "/v1/software/formosa-bbs" + }, + { + "slug": "formspring", + "name": "Formspring", + "url": "/v1/software/formspring" + }, + { + "slug": "fortmp", + "name": "FortMP", + "url": "/v1/software/fortmp" + }, + { + "slug": "fortsp", + "name": "FortSP", + "url": "/v1/software/fortsp" + }, + { + "slug": "fortezza", + "name": "Fortezza", + "url": "/v1/software/fortezza" + }, + { + "slug": "forthcast", + "name": "Forthcast", + "url": "/v1/software/forthcast" + }, + { + "slug": "forthclear", + "name": "Forthclear", + "url": "/v1/software/forthclear" + }, + { + "slug": "forthmatch", + "name": "Forthmatch", + "url": "/v1/software/forthmatch" + }, + { + "slug": "forthroute", + "name": "Forthroute", + "url": "/v1/software/forthroute" + }, + { + "slug": "forthsource", + "name": "Forthsource", + "url": "/v1/software/forthsource" + }, + { + "slug": "forthsuite", + "name": "Forthsuite", + "url": "/v1/software/forthsuite" + }, + { + "slug": "fortios", + "name": "FortiOS", + "url": "/v1/software/fortios" + }, + { + "slug": "fortix-2", + "name": "Fortix 2", + "url": "/v1/software/fortix-2" + }, + { + "slug": "fortora-fresh-finance", + "name": "Fortora Fresh Finance", + "url": "/v1/software/fortora-fresh-finance" + }, + { + "slug": "fortran-builder", + "name": "Fortran Builder", + "url": "/v1/software/fortran-builder" + }, + { + "slug": "fortresscraft-evolved", + "name": "FortressCraft Evolved", + "url": "/v1/software/fortresscraft-evolved" + }, + { + "slug": "fossdoc", + "name": "FossDoc", + "url": "/v1/software/fossdoc" + }, + { + "slug": "fossilo", + "name": "Fossilo", + "url": "/v1/software/fossilo" + }, + { + "slug": "fotomagico", + "name": "FotoMagico", + "url": "/v1/software/fotomagico" + }, + { + "slug": "foundry-vtt", + "name": "Foundry VTT", + "url": "/v1/software/foundry-vtt" + }, + { + "slug": "foxmail", + "name": "Foxmail", + "url": "/v1/software/foxmail" + }, + { + "slug": "fractify-aiscan", + "name": "Fractify AIScan", + "url": "/v1/software/fractify-aiscan" + }, + { + "slug": "framakey", + "name": "Framakey", + "url": "/v1/software/framakey" + }, + { + "slug": "frameforge-3d-studio", + "name": "FrameForge 3D Studio", + "url": "/v1/software/frameforge-3d-studio" + }, + { + "slug": "framework-for-integrated-test", + "name": "Framework for Integrated Test", + "url": "/v1/software/framework-for-integrated-test" + }, + { + "slug": "framsticks", + "name": "Framsticks", + "url": "/v1/software/framsticks" + }, + { + "slug": "franca-idl", + "name": "Franca IDL", + "url": "/v1/software/franca-idl" + }, + { + "slug": "frankki-mcp", + "name": "FrankKi MCP", + "url": "/v1/software/frankki-mcp" + }, + { + "slug": "franklin-planner", + "name": "Franklin Planner", + "url": "/v1/software/franklin-planner" + }, + { + "slug": "franz-lisp", + "name": "Franz Lisp", + "url": "/v1/software/franz-lisp" + }, + { + "slug": "fred-optical-engineering-software", + "name": "Fred Optical Engineering Software", + "url": "/v1/software/fred-optical-engineering-software" + }, + { + "slug": "free-avi-video-converter", + "name": "Free AVI Video Converter", + "url": "/v1/software/free-avi-video-converter" + }, + { + "slug": "free-radio-network", + "name": "Free Radio Network", + "url": "/v1/software/free-radio-network" + }, + { + "slug": "free-youtube-to-mp3-converter", + "name": "Free YouTube to MP3 Converter", + "url": "/v1/software/free-youtube-to-mp3-converter" + }, + { + "slug": "free-protocol", + "name": "Free protocol", + "url": "/v1/software/free-protocol" + }, + { + "slug": "free-software-adoption-cases", + "name": "Free software adoption cases", + "url": "/v1/software/free-software-adoption-cases" + }, + { + "slug": "free-standard", + "name": "Free standard", + "url": "/v1/software/free-standard" + }, + { + "slug": "freefem", + "name": "FreeFem++", + "url": "/v1/software/freefem" + }, + { + "slug": "freeproxy", + "name": "FreeProxy", + "url": "/v1/software/freeproxy" + }, + { + "slug": "freeqda", + "name": "FreeQDA", + "url": "/v1/software/freeqda" + }, + { + "slug": "frees-wan", + "name": "FreeS/WAN", + "url": "/v1/software/frees-wan" + }, + { + "slug": "freesurfer", + "name": "FreeSurfer", + "url": "/v1/software/freesurfer" + }, + { + "slug": "freesync", + "name": "FreeSync", + "url": "/v1/software/freesync" + }, + { + "slug": "freeundelete", + "name": "FreeUndelete", + "url": "/v1/software/freeundelete" + }, + { + "slug": "freedcamp", + "name": "Freedcamp", + "url": "/v1/software/freedcamp" + }, + { + "slug": "freedomerp", + "name": "FreedomERP", + "url": "/v1/software/freedomerp" + }, + { + "slug": "freeform", + "name": "Freeform", + "url": "/v1/software/freeform" + }, + { + "slug": "freeglut", + "name": "Freeglut", + "url": "/v1/software/freeglut" + }, + { + "slug": "freemail", + "name": "Freemail", + "url": "/v1/software/freemail" + }, + { + "slug": "freemake-audio-converter", + "name": "Freemake Audio Converter", + "url": "/v1/software/freemake-audio-converter" + }, + { + "slug": "freemake-music-box", + "name": "Freemake Music Box", + "url": "/v1/software/freemake-music-box" + }, + { + "slug": "freemake-video-downloader", + "name": "Freemake Video Downloader", + "url": "/v1/software/freemake-video-downloader" + }, + { + "slug": "freeway", + "name": "Freeway", + "url": "/v1/software/freeway" + }, + { + "slug": "frequency-sorter", + "name": "Frequency Sorter", + "url": "/v1/software/frequency-sorter" + }, + { + "slug": "fresco", + "name": "Fresco", + "url": "/v1/software/fresco" + }, + { + "slug": "freshservice", + "name": "Freshservice", + "url": "/v1/software/freshservice" + }, + { + "slug": "fresnel-editor", + "name": "Fresnel Editor", + "url": "/v1/software/fresnel-editor" + }, + { + "slug": "friday-os", + "name": "Friday OS", + "url": "/v1/software/friday-os" + }, + { + "slug": "friendcaller", + "name": "FriendCaller", + "url": "/v1/software/friendcaller" + }, + { + "slug": "friendlyware", + "name": "Friendlyware", + "url": "/v1/software/friendlyware" + }, + { + "slug": "fring", + "name": "Fring", + "url": "/v1/software/fring" + }, + { + "slug": "fromthepage", + "name": "FromThePage", + "url": "/v1/software/fromthepage" + }, + { + "slug": "front-row", + "name": "Front Row", + "url": "/v1/software/front-row" + }, + { + "slug": "frontbase", + "name": "FrontBase", + "url": "/v1/software/frontbase" + }, + { + "slug": "frontdoor", + "name": "FrontDoor", + "url": "/v1/software/frontdoor" + }, + { + "slug": "fronter", + "name": "Fronter", + "url": "/v1/software/fronter" + }, + { + "slug": "frontman", + "name": "Frontman", + "url": "/v1/software/frontman" + }, + { + "slug": "frontrun", + "name": "Frontrun", + "url": "/v1/software/frontrun" + }, + { + "slug": "frost", + "name": "Frost", + "url": "/v1/software/frost" + }, + { + "slug": "fryrender", + "name": "Fryrender", + "url": "/v1/software/fryrender" + }, + { + "slug": "fuel-manager", + "name": "Fuel Manager", + "url": "/v1/software/fuel-manager" + }, + { + "slug": "fugue-machine", + "name": "Fugue Machine", + "url": "/v1/software/fugue-machine" + }, + { + "slug": "fujitsu-global-cloud-platform", + "name": "Fujitsu Global Cloud Platform", + "url": "/v1/software/fujitsu-global-cloud-platform" + }, + { + "slug": "fukase", + "name": "Fukase", + "url": "/v1/software/fukase" + }, + { + "slug": "full-impact", + "name": "Full Impact", + "url": "/v1/software/full-impact" + }, + { + "slug": "funsearch", + "name": "FunSearch", + "url": "/v1/software/funsearch" + }, + { + "slug": "functional-mock-up-interface", + "name": "Functional Mock-up Interface", + "url": "/v1/software/functional-mock-up-interface" + }, + { + "slug": "funshion", + "name": "Funshion", + "url": "/v1/software/funshion" + }, + { + "slug": "furryball", + "name": "FurryBall", + "url": "/v1/software/furryball" + }, + { + "slug": "furybsd", + "name": "FuryBSD", + "url": "/v1/software/furybsd" + }, + { + "slug": "fuse-character-creator", + "name": "Fuse Character Creator", + "url": "/v1/software/fuse-character-creator" + }, + { + "slug": "fuse-esb", + "name": "Fuse ESB", + "url": "/v1/software/fuse-esb" + }, + { + "slug": "fuse-mediation-router", + "name": "Fuse Mediation Router", + "url": "/v1/software/fuse-mediation-router" + }, + { + "slug": "fuse-message-broker", + "name": "Fuse Message Broker", + "url": "/v1/software/fuse-message-broker" + }, + { + "slug": "fuse-services-framework", + "name": "Fuse Services Framework", + "url": "/v1/software/fuse-services-framework" + }, + { + "slug": "fuseiso", + "name": "FuseIso", + "url": "/v1/software/fuseiso" + }, + { + "slug": "fusion-360", + "name": "Fusion 360", + "url": "/v1/software/fusion-360" + }, + { + "slug": "fusionpos", + "name": "FusionPOS", + "url": "/v1/software/fusionpos" + }, + { + "slug": "fusionviewer", + "name": "Fusionviewer", + "url": "/v1/software/fusionviewer" + }, + { + "slug": "future-pinball", + "name": "Future Pinball", + "url": "/v1/software/future-pinball" + }, + { + "slug": "fynix-co-banking", + "name": "Fynix Co-Banking", + "url": "/v1/software/fynix-co-banking" + }, + { + "slug": "fyracle", + "name": "Fyracle", + "url": "/v1/software/fyracle" + }, + { + "slug": "fyuse", + "name": "Fyuse", + "url": "/v1/software/fyuse" + }, + { + "slug": "g-power", + "name": "G*Power", + "url": "/v1/software/g-power" + }, + { + "slug": "g-ho-st", + "name": "G.ho.st", + "url": "/v1/software/g-ho-st" + }, + { + "slug": "gamess", + "name": "GAMESS", + "url": "/v1/software/gamess" + }, + { + "slug": "gamgi", + "name": "GAMGI", + "url": "/v1/software/gamgi" + }, + { + "slug": "gams", + "name": "GAMS", + "url": "/v1/software/gams" + }, + { + "slug": "gar", + "name": "GAR", + "url": "/v1/software/gar" + }, + { + "slug": "garv-app", + "name": "GARV app", + "url": "/v1/software/garv-app" + }, + { + "slug": "garstow", + "name": "GARstow", + "url": "/v1/software/garstow" + }, + { + "slug": "gba4ios", + "name": "GBA4iOS", + "url": "/v1/software/gba4ios" + }, + { + "slug": "gc-ai", + "name": "GC AI", + "url": "/v1/software/gc-ai" + }, + { + "slug": "gcfscape", + "name": "GCFScape", + "url": "/v1/software/gcfscape" + }, + { + "slug": "gcube-system", + "name": "GCube system", + "url": "/v1/software/gcube-system" + }, + { + "slug": "geditcom", + "name": "GEDitCOM", + "url": "/v1/software/geditcom" + }, + { + "slug": "genscan", + "name": "GENSCAN", + "url": "/v1/software/genscan" + }, + { + "slug": "geos", + "name": "GEOS", + "url": "/v1/software/geos" + }, + { + "slug": "geos-chem", + "name": "GEOS-Chem", + "url": "/v1/software/geos-chem" + }, + { + "slug": "geovia", + "name": "GEOVIA", + "url": "/v1/software/geovia" + }, + { + "slug": "geox-ai", + "name": "GEOX AI", + "url": "/v1/software/geox-ai" + }, + { + "slug": "gertwol", + "name": "GERTWOL", + "url": "/v1/software/gertwol" + }, + { + "slug": "gess", + "name": "GESS", + "url": "/v1/software/gess" + }, + { + "slug": "geup", + "name": "GEUP", + "url": "/v1/software/geup" + }, + { + "slug": "gforge", + "name": "GForge", + "url": "/v1/software/gforge" + }, + { + "slug": "gg", + "name": "GG", + "url": "/v1/software/gg" + }, + { + "slug": "ghgproof", + "name": "GHGProof", + "url": "/v1/software/ghgproof" + }, + { + "slug": "gia", + "name": "GIA", + "url": "/v1/software/gia" + }, + { + "slug": "giant-antispyware", + "name": "GIANT AntiSpyware", + "url": "/v1/software/giant-antispyware" + }, + { + "slug": "giant", + "name": "GIAnT", + "url": "/v1/software/giant" + }, + { + "slug": "gimp-2-0-2", + "name": "GIMP 2.0.2", + "url": "/v1/software/gimp-2-0-2" + }, + { + "slug": "gimp-2-2-11", + "name": "GIMP 2.2.11", + "url": "/v1/software/gimp-2-2-11" + }, + { + "slug": "gin", + "name": "GIN", + "url": "/v1/software/gin" + }, + { + "slug": "ginger-ii", + "name": "GINGER II", + "url": "/v1/software/ginger-ii" + }, + { + "slug": "gis-arta", + "name": "GIS Arta", + "url": "/v1/software/gis-arta" + }, + { + "slug": "giws", + "name": "GIWS", + "url": "/v1/software/giws" + }, + { + "slug": "glam-jupyter-notebooks", + "name": "GLAM Jupyter Notebooks", + "url": "/v1/software/glam-jupyter-notebooks" + }, + { + "slug": "glam-workbench", + "name": "GLAM Workbench", + "url": "/v1/software/glam-workbench" + }, + { + "slug": "glimmer", + "name": "GLIMMER", + "url": "/v1/software/glimmer" + }, + { + "slug": "glitch", + "name": "GLITCH", + "url": "/v1/software/glitch" + }, + { + "slug": "glx", + "name": "GLX", + "url": "/v1/software/glx" + }, + { + "slug": "glite-amga", + "name": "GLite-AMGA", + "url": "/v1/software/glite-amga" + }, + { + "slug": "gmdb2", + "name": "GMDB2", + "url": "/v1/software/gmdb2" + }, + { + "slug": "gmer", + "name": "GMER", + "url": "/v1/software/gmer" + }, + { + "slug": "gms", + "name": "GMS", + "url": "/v1/software/gms" + }, + { + "slug": "gmw", + "name": "GMW", + "url": "/v1/software/gmw" + }, + { + "slug": "gmx-multi-messenger", + "name": "GMX Multi Messenger", + "url": "/v1/software/gmx-multi-messenger" + }, + { + "slug": "gmass", + "name": "GMass", + "url": "/v1/software/gmass" + }, + { + "slug": "gnm", + "name": "GNM", + "url": "/v1/software/gnm" + }, + { + "slug": "gnome-education-projects", + "name": "GNOME Education projects", + "url": "/v1/software/gnome-education-projects" + }, + { + "slug": "gnome-shell", + "name": "GNOME Shell", + "url": "/v1/software/gnome-shell" + }, + { + "slug": "gnss-ir-analysis-software", + "name": "GNSS-IR Analysis Software", + "url": "/v1/software/gnss-ir-analysis-software" + }, + { + "slug": "gnu-interactive-tools", + "name": "GNU Interactive Tools", + "url": "/v1/software/gnu-interactive-tools" + }, + { + "slug": "gnu-pdf", + "name": "GNU PDF", + "url": "/v1/software/gnu-pdf" + }, + { + "slug": "gnu-slip", + "name": "GNU Slip", + "url": "/v1/software/gnu-slip" + }, + { + "slug": "gnu-web-translation-coordination", + "name": "GNU Web Translation Coordination", + "url": "/v1/software/gnu-web-translation-coordination" + }, + { + "slug": "gnuschool", + "name": "GNUschool", + "url": "/v1/software/gnuschool" + }, + { + "slug": "goose-vpn", + "name": "GOOSE VPN", + "url": "/v1/software/goose-vpn" + }, + { + "slug": "goosy", + "name": "GOOSY", + "url": "/v1/software/goosy" + }, + { + "slug": "gpa", + "name": "GPA", + "url": "/v1/software/gpa" + }, + { + "slug": "gpass", + "name": "GPASS", + "url": "/v1/software/gpass" + }, + { + "slug": "gpi-space", + "name": "GPI-Space", + "url": "/v1/software/gpi-space" + }, + { + "slug": "gpn-schedule", + "name": "GPN Schedule", + "url": "/v1/software/gpn-schedule" + }, + { + "slug": "gpops-ii", + "name": "GPOPS-II", + "url": "/v1/software/gpops-ii" + }, + { + "slug": "gpp", + "name": "GPP", + "url": "/v1/software/gpp" + }, + { + "slug": "gps-visualizer", + "name": "GPS Visualizer", + "url": "/v1/software/gps-visualizer" + }, + { + "slug": "gpt-5-2", + "name": "GPT-5.2", + "url": "/v1/software/gpt-5-2" + }, + { + "slug": "gpt-5-4", + "name": "GPT-5.4", + "url": "/v1/software/gpt-5-4" + }, + { + "slug": "gpt-5-6", + "name": "GPT-5.6", + "url": "/v1/software/gpt-5-6" + }, + { + "slug": "gptq", + "name": "GPTQ", + "url": "/v1/software/gptq" + }, + { + "slug": "gptzero", + "name": "GPTZero", + "url": "/v1/software/gptzero" + }, + { + "slug": "gptfy", + "name": "GPTfy", + "url": "/v1/software/gptfy" + }, + { + "slug": "gpulib", + "name": "GPULib", + "url": "/v1/software/gpulib" + }, + { + "slug": "gpuopen", + "name": "GPUOpen", + "url": "/v1/software/gpuopen" + }, + { + "slug": "gpudb", + "name": "GPUdb", + "url": "/v1/software/gpudb" + }, + { + "slug": "gpxplore", + "name": "GPXplore", + "url": "/v1/software/gpxplore" + }, + { + "slug": "gpicview", + "name": "GPicView", + "url": "/v1/software/gpicview" + }, + { + "slug": "grakn-ai", + "name": "GRAKN.AI", + "url": "/v1/software/grakn-ai" + }, + { + "slug": "grape", + "name": "GRAPE", + "url": "/v1/software/grape" + }, + { + "slug": "grapes", + "name": "GRAPES", + "url": "/v1/software/grapes" + }, + { + "slug": "grc-envelop", + "name": "GRC Envelop", + "url": "/v1/software/grc-envelop" + }, + { + "slug": "grc-cockpit", + "name": "GRC-COCKPIT", + "url": "/v1/software/grc-cockpit" + }, + { + "slug": "grip-os", + "name": "GRIP OS", + "url": "/v1/software/grip-os" + }, + { + "slug": "grl-semantic-ai-platform", + "name": "GRL Semantic AI Platform", + "url": "/v1/software/grl-semantic-ai-platform" + }, + { + "slug": "grobid", + "name": "GROBID", + "url": "/v1/software/grobid" + }, + { + "slug": "gromos", + "name": "GROMOS", + "url": "/v1/software/gromos" + }, + { + "slug": "gs-richcopy-360-enterprise", + "name": "GS RichCopy 360 Enterprise", + "url": "/v1/software/gs-richcopy-360-enterprise" + }, + { + "slug": "gs-tools", + "name": "GS Tools", + "url": "/v1/software/gs-tools" + }, + { + "slug": "gsea", + "name": "GSEA", + "url": "/v1/software/gsea" + }, + { + "slug": "gshhg", + "name": "GSHHG", + "url": "/v1/software/gshhg" + }, + { + "slug": "gsi3d", + "name": "GSI3D", + "url": "/v1/software/gsi3d" + }, + { + "slug": "gssha", + "name": "GSSHA", + "url": "/v1/software/gssha" + }, + { + "slug": "gspot", + "name": "GSpot", + "url": "/v1/software/gspot" + }, + { + "slug": "gstat", + "name": "GStat", + "url": "/v1/software/gstat" + }, + { + "slug": "gt-power", + "name": "GT-Power", + "url": "/v1/software/gt-power" + }, + { + "slug": "gtk-meteo", + "name": "GTK Meteo", + "url": "/v1/software/gtk-meteo" + }, + { + "slug": "gtk-perl", + "name": "GTK-Perl", + "url": "/v1/software/gtk-perl" + }, + { + "slug": "gtunnel", + "name": "GTunnel", + "url": "/v1/software/gtunnel" + }, + { + "slug": "guess-the-graph-exploration-system", + "name": "GUESS: The Graph Exploration System", + "url": "/v1/software/guess-the-graph-exploration-system" + }, + { + "slug": "gun", + "name": "GUN", + "url": "/v1/software/gun" + }, + { + "slug": "gyro", + "name": "GYRO", + "url": "/v1/software/gyro" + }, + { + "slug": "gab-dissenter", + "name": "Gab Dissenter", + "url": "/v1/software/gab-dissenter" + }, + { + "slug": "gable-cad", + "name": "Gable CAD", + "url": "/v1/software/gable-cad" + }, + { + "slug": "gachapoid", + "name": "Gachapoid", + "url": "/v1/software/gachapoid" + }, + { + "slug": "gadgettrak", + "name": "GadgetTrak", + "url": "/v1/software/gadgettrak" + }, + { + "slug": "gaggle", + "name": "Gaggle", + "url": "/v1/software/gaggle" + }, + { + "slug": "gaia", + "name": "Gaia", + "url": "/v1/software/gaia" + }, + { + "slug": "gala", + "name": "Gala", + "url": "/v1/software/gala" + }, + { + "slug": "galaco", + "name": "Galaco", + "url": "/v1/software/galaco" + }, + { + "slug": "galago", + "name": "Galago", + "url": "/v1/software/galago" + }, + { + "slug": "galaksija-basic", + "name": "Galaksija BASIC", + "url": "/v1/software/galaksija-basic" + }, + { + "slug": "galaxy-store", + "name": "Galaxy Store", + "url": "/v1/software/galaxy-store" + }, + { + "slug": "galen-framework", + "name": "Galen Framework", + "url": "/v1/software/galen-framework" + }, + { + "slug": "gallery-software", + "name": "Gallery Software", + "url": "/v1/software/gallery-software" + }, + { + "slug": "gal-ne", + "name": "Galène", + "url": "/v1/software/gal-ne" + }, + { + "slug": "gambit", + "name": "Gambit", + "url": "/v1/software/gambit" + }, + { + "slug": "game-center", + "name": "Game Center", + "url": "/v1/software/game-center" + }, + { + "slug": "game-jackal", + "name": "Game Jackal", + "url": "/v1/software/game-jackal" + }, + { + "slug": "game-of-trees-web-daemon", + "name": "Game of Trees Web Daemon", + "url": "/v1/software/game-of-trees-web-daemon" + }, + { + "slug": "gameagent", + "name": "GameAgent", + "url": "/v1/software/gameagent" + }, + { + "slug": "gamechat", + "name": "GameChat", + "url": "/v1/software/gamechat" + }, + { + "slug": "gameday", + "name": "GameDay", + "url": "/v1/software/gameday" + }, + { + "slug": "gamengen", + "name": "GameNGen", + "url": "/v1/software/gamengen" + }, + { + "slug": "gameranger", + "name": "GameRanger", + "url": "/v1/software/gameranger" + }, + { + "slug": "gameshadow", + "name": "GameShadow", + "url": "/v1/software/gameshadow" + }, + { + "slug": "gamespy", + "name": "GameSpy", + "url": "/v1/software/gamespy" + }, + { + "slug": "gamera", + "name": "Gamera", + "url": "/v1/software/gamera" + }, + { + "slug": "games-for-windows", + "name": "Games for Windows", + "url": "/v1/software/games-for-windows" + }, + { + "slug": "games-for-windows-live", + "name": "Games for Windows – Live", + "url": "/v1/software/games-for-windows-live" + }, + { + "slug": "gamification-software", + "name": "Gamification software", + "url": "/v1/software/gamification-software" + }, + { + "slug": "gamin", + "name": "Gamin", + "url": "/v1/software/gamin" + }, + { + "slug": "gamma", + "name": "Gamma", + "url": "/v1/software/gamma" + }, + { + "slug": "gap-messenger", + "name": "Gap Messenger", + "url": "/v1/software/gap-messenger" + }, + { + "slug": "gapvis", + "name": "GapVis", + "url": "/v1/software/gapvis" + }, + { + "slug": "garak", + "name": "Garak", + "url": "/v1/software/garak" + }, + { + "slug": "garant", + "name": "Garant", + "url": "/v1/software/garant" + }, + { + "slug": "garry-s-mod-addon-creator-and-extractor", + "name": "Garry's Mod Addon Creator and Extractor", + "url": "/v1/software/garry-s-mod-addon-creator-and-extractor" + }, + { + "slug": "gasty", + "name": "Gasty", + "url": "/v1/software/gasty" + }, + { + "slug": "gatgpt", + "name": "GatGPT", + "url": "/v1/software/gatgpt" + }, + { + "slug": "gatekeeper-q28451423", + "name": "GateKeeper", + "url": "/v1/software/gatekeeper-q28451423" + }, + { + "slug": "gatekeeper-q96678585", + "name": "Gatekeeper", + "url": "/v1/software/gatekeeper-q96678585" + }, + { + "slug": "gatekeeper", + "name": "Gatekeeper", + "url": "/v1/software/gatekeeper" + }, + { + "slug": "gates-of-andaron", + "name": "Gates of Andaron", + "url": "/v1/software/gates-of-andaron" + }, + { + "slug": "gazelle", + "name": "Gazelle", + "url": "/v1/software/gazelle" + }, + { + "slug": "gbehistun", + "name": "Gbehistun", + "url": "/v1/software/gbehistun" + }, + { + "slug": "geforce-experience", + "name": "GeForce Experience", + "url": "/v1/software/geforce-experience" + }, + { + "slug": "geekbench", + "name": "Geekbench", + "url": "/v1/software/geekbench" + }, + { + "slug": "gekkofs", + "name": "GekkoFS", + "url": "/v1/software/gekkofs" + }, + { + "slug": "gem5", + "name": "Gem5", + "url": "/v1/software/gem5" + }, + { + "slug": "gemini", + "name": "Gemini", + "url": "/v1/software/gemini" + }, + { + "slug": "gemini-enterprise-modules-project", + "name": "Gemini - Enterprise Modules Project", + "url": "/v1/software/gemini-enterprise-modules-project" + }, + { + "slug": "gemini-blueprint", + "name": "Gemini Blueprint", + "url": "/v1/software/gemini-blueprint" + }, + { + "slug": "gemini-dbaccess", + "name": "Gemini DBAccess", + "url": "/v1/software/gemini-dbaccess" + }, + { + "slug": "gemini-jpa", + "name": "Gemini JPA", + "url": "/v1/software/gemini-jpa" + }, + { + "slug": "gemini-management", + "name": "Gemini Management", + "url": "/v1/software/gemini-management" + }, + { + "slug": "gemini-web", + "name": "Gemini Web", + "url": "/v1/software/gemini-web" + }, + { + "slug": "gemix-studio", + "name": "Gemix Studio", + "url": "/v1/software/gemix-studio" + }, + { + "slug": "gemulator", + "name": "Gemulator", + "url": "/v1/software/gemulator" + }, + { + "slug": "genstat", + "name": "GenStat", + "url": "/v1/software/genstat" + }, + { + "slug": "genztrade", + "name": "GenZTrade", + "url": "/v1/software/genztrade" + }, + { + "slug": "gene-designer", + "name": "Gene Designer", + "url": "/v1/software/gene-designer" + }, + { + "slug": "gene-expression-dynamics-inspector", + "name": "Gene Expression Dynamics Inspector", + "url": "/v1/software/gene-expression-dynamics-inspector" + }, + { + "slug": "genemark", + "name": "GeneMark", + "url": "/v1/software/genemark" + }, + { + "slug": "genepattern", + "name": "GenePattern", + "url": "/v1/software/genepattern" + }, + { + "slug": "geneious", + "name": "Geneious", + "url": "/v1/software/geneious" + }, + { + "slug": "general-graphics-interface", + "name": "General Graphics Interface", + "url": "/v1/software/general-graphics-interface" + }, + { + "slug": "general-inquirer-category", + "name": "General Inquirer Category", + "url": "/v1/software/general-inquirer-category" + }, + { + "slug": "generalized-environmental-modeling-system-for-surfacewaters", + "name": "Generalized Environmental Modeling System for Surfacewaters", + "url": "/v1/software/generalized-environmental-modeling-system-for-surfacewaters" + }, + { + "slug": "genevestigator", + "name": "Genevestigator", + "url": "/v1/software/genevestigator" + }, + { + "slug": "gengen", + "name": "Gengen", + "url": "/v1/software/gengen" + }, + { + "slug": "genially", + "name": "Genially", + "url": "/v1/software/genially" + }, + { + "slug": "genie-backup-manager", + "name": "Genie Backup Manager", + "url": "/v1/software/genie-backup-manager" + }, + { + "slug": "genius-project", + "name": "Genius Project", + "url": "/v1/software/genius-project" + }, + { + "slug": "geniusmatcher", + "name": "Geniusmatcher", + "url": "/v1/software/geniusmatcher" + }, + { + "slug": "genome-compiler", + "name": "Genome Compiler", + "url": "/v1/software/genome-compiler" + }, + { + "slug": "genomescope", + "name": "GenomeScope", + "url": "/v1/software/genomescope" + }, + { + "slug": "gens-emulator", + "name": "Gens (emulator)", + "url": "/v1/software/gens-emulator" + }, + { + "slug": "geoapi", + "name": "GeoAPI", + "url": "/v1/software/geoapi" + }, + { + "slug": "geoda", + "name": "GeoDA", + "url": "/v1/software/geoda" + }, + { + "slug": "geodin", + "name": "GeoDin", + "url": "/v1/software/geodin" + }, + { + "slug": "geomedia", + "name": "GeoMedia", + "url": "/v1/software/geomedia" + }, + { + "slug": "geonature", + "name": "GeoNature", + "url": "/v1/software/geonature" + }, + { + "slug": "geonetwork-cartes-gouv-fr", + "name": "GeoNetwork (cartes.gouv.fr)", + "url": "/v1/software/geonetwork-cartes-gouv-fr" + }, + { + "slug": "geopaint", + "name": "GeoPaint", + "url": "/v1/software/geopaint" + }, + { + "slug": "geopublish", + "name": "GeoPublish", + "url": "/v1/software/geopublish" + }, + { + "slug": "georeader", + "name": "GeoReader", + "url": "/v1/software/georeader" + }, + { + "slug": "geosom-suite", + "name": "GeoSOM Suite", + "url": "/v1/software/geosom-suite" + }, + { + "slug": "geoshake", + "name": "GeoShake", + "url": "/v1/software/geoshake" + }, + { + "slug": "geotemco", + "name": "GeoTemCo", + "url": "/v1/software/geotemco" + }, + { + "slug": "geovista-studio", + "name": "GeoVISTA Studio", + "url": "/v1/software/geovista-studio" + }, + { + "slug": "geoblink-by-mytraffic", + "name": "Geoblink by MyTraffic", + "url": "/v1/software/geoblink-by-mytraffic" + }, + { + "slug": "geobrowser", + "name": "Geobrowser", + "url": "/v1/software/geobrowser" + }, + { + "slug": "geofeedia", + "name": "Geofeedia", + "url": "/v1/software/geofeedia" + }, + { + "slug": "geographic-information-retrieval-and-analysis-system", + "name": "Geographic Information Retrieval and Analysis System", + "url": "/v1/software/geographic-information-retrieval-and-analysis-system" + }, + { + "slug": "geometricus", + "name": "Geometricus", + "url": "/v1/software/geometricus" + }, + { + "slug": "geometry-blaster", + "name": "Geometry Blaster", + "url": "/v1/software/geometry-blaster" + }, + { + "slug": "geomodeller3d", + "name": "Geomodeller3D", + "url": "/v1/software/geomodeller3d" + }, + { + "slug": "geopaparazzi", + "name": "Geopaparazzi", + "url": "/v1/software/geopaparazzi" + }, + { + "slug": "geotime", + "name": "Geotime", + "url": "/v1/software/geotime" + }, + { + "slug": "geotrek", + "name": "Geotrek", + "url": "/v1/software/geotrek" + }, + { + "slug": "geovistory", + "name": "Geovistory", + "url": "/v1/software/geovistory" + }, + { + "slug": "geoxa", + "name": "Geoxa", + "url": "/v1/software/geoxa" + }, + { + "slug": "gephi", + "name": "Gephi", + "url": "/v1/software/gephi" + }, + { + "slug": "geppetto", + "name": "Geppetto", + "url": "/v1/software/geppetto" + }, + { + "slug": "gerbil", + "name": "Gerbil", + "url": "/v1/software/gerbil" + }, + { + "slug": "gerby", + "name": "Gerby", + "url": "/v1/software/gerby" + }, + { + "slug": "germes", + "name": "Germes", + "url": "/v1/software/germes" + }, + { + "slug": "gestassophp", + "name": "GestAssoPhp", + "url": "/v1/software/gestassophp" + }, + { + "slug": "get-help", + "name": "Get Help", + "url": "/v1/software/get-help" + }, + { + "slug": "getaref", + "name": "GetARef", + "url": "/v1/software/getaref" + }, + { + "slug": "getdataback", + "name": "GetDataBack", + "url": "/v1/software/getdataback" + }, + { + "slug": "getresponse", + "name": "GetResponse", + "url": "/v1/software/getresponse" + }, + { + "slug": "getyou", + "name": "GetYou", + "url": "/v1/software/getyou" + }, + { + "slug": "getdata", + "name": "Getdata", + "url": "/v1/software/getdata" + }, + { + "slug": "gett", + "name": "Gett", + "url": "/v1/software/gett" + }, + { + "slug": "geworkbench", + "name": "Geworkbench", + "url": "/v1/software/geworkbench" + }, + { + "slug": "gfarm-file-system", + "name": "Gfarm file system", + "url": "/v1/software/gfarm-file-system" + }, + { + "slug": "gh0st-rat", + "name": "Gh0st RAT", + "url": "/v1/software/gh0st-rat" + }, + { + "slug": "ghost", + "name": "Ghost", + "url": "/v1/software/ghost" + }, + { + "slug": "gifboom", + "name": "GifBoom", + "url": "/v1/software/gifboom" + }, + { + "slug": "gigatribe", + "name": "GigaTribe", + "url": "/v1/software/gigatribe" + }, + { + "slug": "gigantic-army", + "name": "Gigantic Army", + "url": "/v1/software/gigantic-army" + }, + { + "slug": "ginga-scout", + "name": "Ginga Scout", + "url": "/v1/software/ginga-scout" + }, + { + "slug": "gini-by-mytraffic", + "name": "Gini by Mytraffic", + "url": "/v1/software/gini-by-mytraffic" + }, + { + "slug": "gio-key-board", + "name": "Gio-Key-Board", + "url": "/v1/software/gio-key-board" + }, + { + "slug": "gist", + "name": "Gist", + "url": "/v1/software/gist" + }, + { + "slug": "github-codespaces", + "name": "GitHub Codespaces", + "url": "/v1/software/github-codespaces" + }, + { + "slug": "github-desktop", + "name": "GitHub Desktop", + "url": "/v1/software/github-desktop" + }, + { + "slug": "gitlanding", + "name": "GitLanding", + "url": "/v1/software/gitlanding" + }, + { + "slug": "gitmind", + "name": "GitMind", + "url": "/v1/software/gitmind" + }, + { + "slug": "gitk", + "name": "Gitk", + "url": "/v1/software/gitk" + }, + { + "slug": "gitter", + "name": "Gitter", + "url": "/v1/software/gitter" + }, + { + "slug": "giveaway-of-the-day", + "name": "Giveaway of the Day", + "url": "/v1/software/giveaway-of-the-day" + }, + { + "slug": "givore", + "name": "Givore", + "url": "/v1/software/givore" + }, + { + "slug": "gizmo5", + "name": "Gizmo5", + "url": "/v1/software/gizmo5" + }, + { + "slug": "gladinet", + "name": "Gladinet", + "url": "/v1/software/gladinet" + }, + { + "slug": "glary-utilities", + "name": "Glary Utilities", + "url": "/v1/software/glary-utilities" + }, + { + "slug": "glasp", + "name": "Glasp", + "url": "/v1/software/glasp" + }, + { + "slug": "glavior", + "name": "Glavior", + "url": "/v1/software/glavior" + }, + { + "slug": "glean", + "name": "Glean", + "url": "/v1/software/glean" + }, + { + "slug": "glftpd", + "name": "Glftpd", + "url": "/v1/software/glftpd" + }, + { + "slug": "glide", + "name": "Glide", + "url": "/v1/software/glide" + }, + { + "slug": "glide-os", + "name": "Glide OS", + "url": "/v1/software/glide-os" + }, + { + "slug": "gliffy", + "name": "Gliffy", + "url": "/v1/software/gliffy" + }, + { + "slug": "glip", + "name": "Glip", + "url": "/v1/software/glip" + }, + { + "slug": "global-address-space-programming-interface", + "name": "Global Address Space Programming Interface", + "url": "/v1/software/global-address-space-programming-interface" + }, + { + "slug": "global-ime", + "name": "Global IME", + "url": "/v1/software/global-ime" + }, + { + "slug": "global-mapper", + "name": "Global Mapper", + "url": "/v1/software/global-mapper" + }, + { + "slug": "global-plant-clinic", + "name": "Global Plant Clinic", + "url": "/v1/software/global-plant-clinic" + }, + { + "slug": "global-translator", + "name": "Global Translator", + "url": "/v1/software/global-translator" + }, + { + "slug": "globetrooper", + "name": "Globetrooper", + "url": "/v1/software/globetrooper" + }, + { + "slug": "globus-toolkit", + "name": "Globus Toolkit", + "url": "/v1/software/globus-toolkit" + }, + { + "slug": "glow-app", + "name": "Glow (app)", + "url": "/v1/software/glow-app" + }, + { + "slug": "glowcode", + "name": "GlowCode", + "url": "/v1/software/glowcode" + }, + { + "slug": "glue", + "name": "Glue", + "url": "/v1/software/glue" + }, + { + "slug": "glyphs", + "name": "Glyphs", + "url": "/v1/software/glyphs" + }, + { + "slug": "gnome-jabber", + "name": "Gnome Jabber", + "url": "/v1/software/gnome-jabber" + }, + { + "slug": "gnome-sessionmanagement", + "name": "Gnome SessionManagement", + "url": "/v1/software/gnome-sessionmanagement" + }, + { + "slug": "gnome-pie", + "name": "Gnome-Pie", + "url": "/v1/software/gnome-pie" + }, + { + "slug": "gnomedirectorythumbnailer", + "name": "GnomeDirectoryThumbnailer", + "url": "/v1/software/gnomedirectorythumbnailer" + }, + { + "slug": "gnomeshellintegrationforchrome", + "name": "GnomeShellIntegrationForChrome", + "url": "/v1/software/gnomeshellintegrationforchrome" + }, + { + "slug": "gnomevfs", + "name": "GnomeVFS", + "url": "/v1/software/gnomevfs" + }, + { + "slug": "gnowit", + "name": "Gnowit", + "url": "/v1/software/gnowit" + }, + { + "slug": "gnucad", + "name": "GnuCAD", + "url": "/v1/software/gnucad" + }, + { + "slug": "gnutella2", + "name": "Gnutella2", + "url": "/v1/software/gnutella2" + }, + { + "slug": "go-continuous-delivery", + "name": "Go continuous delivery", + "url": "/v1/software/go-continuous-delivery" + }, + { + "slug": "go-messenger", + "name": "Go!Messenger", + "url": "/v1/software/go-messenger" + }, + { + "slug": "goback", + "name": "GoBack", + "url": "/v1/software/goback" + }, + { + "slug": "gocatch", + "name": "GoCatch", + "url": "/v1/software/gocatch" + }, + { + "slug": "gogrid", + "name": "GoGrid", + "url": "/v1/software/gogrid" + }, + { + "slug": "goskills", + "name": "GoSkills", + "url": "/v1/software/goskills" + }, + { + "slug": "goto", + "name": "GoTo", + "url": "/v1/software/goto" + }, + { + "slug": "gotoassist", + "name": "GoToAssist", + "url": "/v1/software/gotoassist" + }, + { + "slug": "gotriple-discovery-platform", + "name": "GoTriple Discovery Platform", + "url": "/v1/software/gotriple-discovery-platform" + }, + { + "slug": "gobohide", + "name": "GoboHide", + "url": "/v1/software/gobohide" + }, + { + "slug": "gobra", + "name": "Gobra", + "url": "/v1/software/gobra" + }, + { + "slug": "gobstones", + "name": "Gobstones", + "url": "/v1/software/gobstones" + }, + { + "slug": "gobuster", + "name": "Gobuster", + "url": "/v1/software/gobuster" + }, + { + "slug": "goby", + "name": "Goby", + "url": "/v1/software/goby" + }, + { + "slug": "golaem-crowd", + "name": "Golaem Crowd", + "url": "/v1/software/golaem-crowd" + }, + { + "slug": "goldsim", + "name": "GoldSim", + "url": "/v1/software/goldsim" + }, + { + "slug": "golden-spy", + "name": "Golden Spy", + "url": "/v1/software/golden-spy" + }, + { + "slug": "golfcore", + "name": "GolfCore", + "url": "/v1/software/golfcore" + }, + { + "slug": "gollum-browser", + "name": "Gollum browser", + "url": "/v1/software/gollum-browser" + }, + { + "slug": "good-lock", + "name": "Good Lock", + "url": "/v1/software/good-lock" + }, + { + "slug": "good-smartphone-activated-medics", + "name": "Good Smartphone Activated Medics", + "url": "/v1/software/good-smartphone-activated-medics" + }, + { + "slug": "good-tix", + "name": "Good Tix", + "url": "/v1/software/good-tix" + }, + { + "slug": "goodnotes", + "name": "GoodNotes", + "url": "/v1/software/goodnotes" + }, + { + "slug": "goodreader", + "name": "GoodReader", + "url": "/v1/software/goodreader" + }, + { + "slug": "goodtools", + "name": "GoodTools", + "url": "/v1/software/goodtools" + }, + { + "slug": "goodwall", + "name": "Goodwall", + "url": "/v1/software/goodwall" + }, + { + "slug": "google-3d-warehouse", + "name": "Google 3D Warehouse", + "url": "/v1/software/google-3d-warehouse" + }, + { + "slug": "google-ai-studio", + "name": "Google AI Studio", + "url": "/v1/software/google-ai-studio" + }, + { + "slug": "google-adsense", + "name": "Google AdSense", + "url": "/v1/software/google-adsense" + }, + { + "slug": "google-admin", + "name": "Google Admin", + "url": "/v1/software/google-admin" + }, + { + "slug": "google-app-runtime-for-chrome", + "name": "Google App Runtime for Chrome", + "url": "/v1/software/google-app-runtime-for-chrome" + }, + { + "slug": "google-arts-culture", + "name": "Google Arts & Culture", + "url": "/v1/software/google-arts-culture" + }, + { + "slug": "google-blogsearch-scraper", + "name": "Google Blogsearch Scraper", + "url": "/v1/software/google-blogsearch-scraper" + }, + { + "slug": "google-building-maker", + "name": "Google Building Maker", + "url": "/v1/software/google-building-maker" + }, + { + "slug": "google-chart-api", + "name": "Google Chart API", + "url": "/v1/software/google-chart-api" + }, + { + "slug": "google-charts", + "name": "Google Charts", + "url": "/v1/software/google-charts" + }, + { + "slug": "google-checkout", + "name": "Google Checkout", + "url": "/v1/software/google-checkout" + }, + { + "slug": "google-cloud-connect", + "name": "Google Cloud Connect", + "url": "/v1/software/google-cloud-connect" + }, + { + "slug": "google-cloud-print", + "name": "Google Cloud Print", + "url": "/v1/software/google-cloud-print" + }, + { + "slug": "google-cloud-sdk", + "name": "Google Cloud SDK", + "url": "/v1/software/google-cloud-sdk" + }, + { + "slug": "google-cloud-search-q60193397", + "name": "Google Cloud Search", + "url": "/v1/software/google-cloud-search-q60193397" + }, + { + "slug": "google-cloud-search", + "name": "Google Cloud Search", + "url": "/v1/software/google-cloud-search" + }, + { + "slug": "google-cloud-s-operations-suite", + "name": "Google Cloud's operations suite", + "url": "/v1/software/google-cloud-s-operations-suite" + }, + { + "slug": "google-code-search", + "name": "Google Code Search", + "url": "/v1/software/google-code-search" + }, + { + "slug": "google-colab", + "name": "Google Colab", + "url": "/v1/software/google-colab" + }, + { + "slug": "google-currents", + "name": "Google Currents", + "url": "/v1/software/google-currents" + }, + { + "slug": "google-docs-editors", + "name": "Google Docs Editors", + "url": "/v1/software/google-docs-editors" + }, + { + "slug": "google-file-system", + "name": "Google File System", + "url": "/v1/software/google-file-system" + }, + { + "slug": "google-finance", + "name": "Google Finance", + "url": "/v1/software/google-finance" + }, + { + "slug": "google-fit", + "name": "Google Fit", + "url": "/v1/software/google-fit" + }, + { + "slug": "google-font-tools", + "name": "Google Font Tools", + "url": "/v1/software/google-font-tools" + }, + { + "slug": "google-gadgets-api", + "name": "Google Gadgets API", + "url": "/v1/software/google-gadgets-api" + }, + { + "slug": "google-gesture-search", + "name": "Google Gesture Search", + "url": "/v1/software/google-gesture-search" + }, + { + "slug": "google-hacks", + "name": "Google Hacks", + "url": "/v1/software/google-hacks" + }, + { + "slug": "google-hire", + "name": "Google Hire", + "url": "/v1/software/google-hire" + }, + { + "slug": "google-jump", + "name": "Google Jump", + "url": "/v1/software/google-jump" + }, + { + "slug": "google-kythe", + "name": "Google Kythe", + "url": "/v1/software/google-kythe" + }, + { + "slug": "google-mashup-editor", + "name": "Google Mashup Editor", + "url": "/v1/software/google-mashup-editor" + }, + { + "slug": "google-millwheel", + "name": "Google MillWheel", + "url": "/v1/software/google-millwheel" + }, + { + "slug": "google-news-weather", + "name": "Google News & Weather", + "url": "/v1/software/google-news-weather" + }, + { + "slug": "google-news-scraper", + "name": "Google News Scraper", + "url": "/v1/software/google-news-scraper" + }, + { + "slug": "google-now-launcher", + "name": "Google Now Launcher", + "url": "/v1/software/google-now-launcher" + }, + { + "slug": "google-one-pass", + "name": "Google One Pass", + "url": "/v1/software/google-one-pass" + }, + { + "slug": "google-optimize", + "name": "Google Optimize", + "url": "/v1/software/google-optimize" + }, + { + "slug": "google-pack", + "name": "Google Pack", + "url": "/v1/software/google-pack" + }, + { + "slug": "google-page-creator", + "name": "Google Page Creator", + "url": "/v1/software/google-page-creator" + }, + { + "slug": "google-pay", + "name": "Google Pay", + "url": "/v1/software/google-pay" + }, + { + "slug": "google-pay-send", + "name": "Google Pay Send", + "url": "/v1/software/google-pay-send" + }, + { + "slug": "google-personalized-search", + "name": "Google Personalized Search", + "url": "/v1/software/google-personalized-search" + }, + { + "slug": "google-play-app-licensing", + "name": "Google Play App Licensing", + "url": "/v1/software/google-play-app-licensing" + }, + { + "slug": "google-play-newsstand", + "name": "Google Play Newsstand", + "url": "/v1/software/google-play-newsstand" + }, + { + "slug": "google-plugin-for-eclipse", + "name": "Google Plugin for Eclipse", + "url": "/v1/software/google-plugin-for-eclipse" + }, + { + "slug": "google-read-along", + "name": "Google Read Along", + "url": "/v1/software/google-read-along" + }, + { + "slug": "google-scholar-citations", + "name": "Google Scholar Citations", + "url": "/v1/software/google-scholar-citations" + }, + { + "slug": "google-shopping", + "name": "Google Shopping", + "url": "/v1/software/google-shopping" + }, + { + "slug": "google-sites", + "name": "Google Sites", + "url": "/v1/software/google-sites" + }, + { + "slug": "google-sky", + "name": "Google Sky", + "url": "/v1/software/google-sky" + }, + { + "slug": "google-spaces", + "name": "Google Spaces", + "url": "/v1/software/google-spaces" + }, + { + "slug": "google-street-view-q25488739", + "name": "Google Street View", + "url": "/v1/software/google-street-view-q25488739" + }, + { + "slug": "google-street-view", + "name": "Google Street View", + "url": "/v1/software/google-street-view" + }, + { + "slug": "google-sync", + "name": "Google Sync", + "url": "/v1/software/google-sync" + }, + { + "slug": "google-takeout", + "name": "Google Takeout", + "url": "/v1/software/google-takeout" + }, + { + "slug": "google-talk", + "name": "Google Talk", + "url": "/v1/software/google-talk" + }, + { + "slug": "google-tasks", + "name": "Google Tasks", + "url": "/v1/software/google-tasks" + }, + { + "slug": "google-tez", + "name": "Google Tez", + "url": "/v1/software/google-tez" + }, + { + "slug": "google-toolbar", + "name": "Google Toolbar", + "url": "/v1/software/google-toolbar" + }, + { + "slug": "google-translator-toolkit", + "name": "Google Translator Toolkit", + "url": "/v1/software/google-translator-toolkit" + }, + { + "slug": "google-travel", + "name": "Google Travel", + "url": "/v1/software/google-travel" + }, + { + "slug": "google-vault", + "name": "Google Vault", + "url": "/v1/software/google-vault" + }, + { + "slug": "google-video-marketplace", + "name": "Google Video Marketplace", + "url": "/v1/software/google-video-marketplace" + }, + { + "slug": "google-videos", + "name": "Google Videos", + "url": "/v1/software/google-videos" + }, + { + "slug": "google-voice", + "name": "Google Voice", + "url": "/v1/software/google-voice" + }, + { + "slug": "google-voice-search", + "name": "Google Voice Search", + "url": "/v1/software/google-voice-search" + }, + { + "slug": "google-web-accelerator", + "name": "Google Web Accelerator", + "url": "/v1/software/google-web-accelerator" + }, + { + "slug": "google-wonder-wheel", + "name": "Google Wonder Wheel", + "url": "/v1/software/google-wonder-wheel" + }, + { + "slug": "google-zanzibar", + "name": "Google Zanzibar", + "url": "/v1/software/google-zanzibar" + }, + { + "slug": "google-for-education", + "name": "Google for Education", + "url": "/v1/software/google-for-education" + }, + { + "slug": "google-transliteration", + "name": "Google transliteration", + "url": "/v1/software/google-transliteration" + }, + { + "slug": "google", + "name": "Google+", + "url": "/v1/software/google" + }, + { + "slug": "googlescraper-lippmannian-device", + "name": "Googlescraper (Lippmannian Device)", + "url": "/v1/software/googlescraper-lippmannian-device" + }, + { + "slug": "gopher", + "name": "Gopher+", + "url": "/v1/software/gopher" + }, + { + "slug": "goptical", + "name": "Goptical", + "url": "/v1/software/goptical" + }, + { + "slug": "goslinux", + "name": "GosLinux", + "url": "/v1/software/goslinux" + }, + { + "slug": "gototraining", + "name": "Gototraining", + "url": "/v1/software/gototraining" + }, + { + "slug": "goupile", + "name": "Goupile", + "url": "/v1/software/goupile" + }, + { + "slug": "gource", + "name": "Gource", + "url": "/v1/software/gource" + }, + { + "slug": "govpay", + "name": "GovPay", + "url": "/v1/software/govpay" + }, + { + "slug": "goverlan-systems-management", + "name": "Goverlan Systems Management", + "url": "/v1/software/goverlan-systems-management" + }, + { + "slug": "governance-risk-and-compliance-software", + "name": "Governance, Risk and Compliance software", + "url": "/v1/software/governance-risk-and-compliance-software" + }, + { + "slug": "governikus", + "name": "Governikus", + "url": "/v1/software/governikus" + }, + { + "slug": "gox", + "name": "Gox", + "url": "/v1/software/gox" + }, + { + "slug": "gpsprune", + "name": "GpsPrune", + "url": "/v1/software/gpsprune" + }, + { + "slug": "graalvm", + "name": "GraalVM", + "url": "/v1/software/graalvm" + }, + { + "slug": "grab", + "name": "Grab", + "url": "/v1/software/grab" + }, + { + "slug": "grabit", + "name": "GrabIt", + "url": "/v1/software/grabit" + }, + { + "slug": "grabble", + "name": "Grabble", + "url": "/v1/software/grabble" + }, + { + "slug": "grabilla", + "name": "Grabilla", + "url": "/v1/software/grabilla" + }, + { + "slug": "gradle-app-engine-plugin", + "name": "Gradle App Engine Plugin", + "url": "/v1/software/gradle-app-engine-plugin" + }, + { + "slug": "graduate-talent-pool", + "name": "Graduate Talent Pool", + "url": "/v1/software/graduate-talent-pool" + }, + { + "slug": "graffiti", + "name": "Graffiti", + "url": "/v1/software/graffiti" + }, + { + "slug": "grafoo", + "name": "Grafoo", + "url": "/v1/software/grafoo" + }, + { + "slug": "grafstat", + "name": "Grafstat", + "url": "/v1/software/grafstat" + }, + { + "slug": "grafting-trees", + "name": "Grafting trees", + "url": "/v1/software/grafting-trees" + }, + { + "slug": "gramtrans", + "name": "GramTrans", + "url": "/v1/software/gramtrans" + }, + { + "slug": "grand-central-dispatch", + "name": "Grand Central Dispatch", + "url": "/v1/software/grand-central-dispatch" + }, + { + "slug": "grandorgue", + "name": "GrandOrgue", + "url": "/v1/software/grandorgue" + }, + { + "slug": "grandperspective", + "name": "GrandPerspective", + "url": "/v1/software/grandperspective" + }, + { + "slug": "grani", + "name": "Grani", + "url": "/v1/software/grani" + }, + { + "slug": "granola", + "name": "Granola", + "url": "/v1/software/granola" + }, + { + "slug": "graph", + "name": "Graph", + "url": "/v1/software/graph" + }, + { + "slug": "graphlab", + "name": "GraphLab", + "url": "/v1/software/graphlab" + }, + { + "slug": "graphpad-instat", + "name": "GraphPad InStat", + "url": "/v1/software/graphpad-instat" + }, + { + "slug": "graphpad-prism", + "name": "GraphPad Prism", + "url": "/v1/software/graphpad-prism" + }, + { + "slug": "graphstudio", + "name": "GraphStudio", + "url": "/v1/software/graphstudio" + }, + { + "slug": "grapher", + "name": "Grapher", + "url": "/v1/software/grapher" + }, + { + "slug": "graphic-workshop", + "name": "Graphic Workshop", + "url": "/v1/software/graphic-workshop" + }, + { + "slug": "graphical-editing-framework", + "name": "Graphical Editing Framework", + "url": "/v1/software/graphical-editing-framework" + }, + { + "slug": "graphics-animation-system-for-professionals", + "name": "Graphics Animation System for Professionals", + "url": "/v1/software/graphics-animation-system-for-professionals" + }, + { + "slug": "graphics-device-interface", + "name": "Graphics Device Interface", + "url": "/v1/software/graphics-device-interface" + }, + { + "slug": "graphing-twitter-data", + "name": "Graphing Twitter Data", + "url": "/v1/software/graphing-twitter-data" + }, + { + "slug": "graphisoft-bim-server", + "name": "Graphisoft BIM Server", + "url": "/v1/software/graphisoft-bim-server" + }, + { + "slug": "graphisoft-ecodesigner", + "name": "Graphisoft EcoDesigner", + "url": "/v1/software/graphisoft-ecodesigner" + }, + { + "slug": "graphisoft-mep-modeler", + "name": "Graphisoft MEP Modeler", + "url": "/v1/software/graphisoft-mep-modeler" + }, + { + "slug": "graphmatica", + "name": "Graphmatica", + "url": "/v1/software/graphmatica" + }, + { + "slug": "grasp", + "name": "Grasp", + "url": "/v1/software/grasp" + }, + { + "slug": "grasshopper-q114414318", + "name": "Grasshopper", + "url": "/v1/software/grasshopper-q114414318" + }, + { + "slug": "grasshopper", + "name": "Grasshopper", + "url": "/v1/software/grasshopper" + }, + { + "slug": "grasshopper-3d", + "name": "Grasshopper 3d", + "url": "/v1/software/grasshopper-3d" + }, + { + "slug": "grateful-med", + "name": "Grateful Med", + "url": "/v1/software/grateful-med" + }, + { + "slug": "gravit-designer", + "name": "Gravit Designer", + "url": "/v1/software/gravit-designer" + }, + { + "slug": "greenonion-ai", + "name": "GreenOnion AI", + "url": "/v1/software/greenonion-ai" + }, + { + "slug": "greenfield", + "name": "Greenfield", + "url": "/v1/software/greenfield" + }, + { + "slug": "greengnome", + "name": "Greengnome", + "url": "/v1/software/greengnome" + }, + { + "slug": "greenify", + "name": "Greenify", + "url": "/v1/software/greenify" + }, + { + "slug": "greenleaf-archivelib", + "name": "Greenleaf ArchiveLib", + "url": "/v1/software/greenleaf-archivelib" + }, + { + "slug": "greenworks", + "name": "Greenworks", + "url": "/v1/software/greenworks" + }, + { + "slug": "greg", + "name": "Greg", + "url": "/v1/software/greg" + }, + { + "slug": "greynoise", + "name": "GreyNoise", + "url": "/v1/software/greynoise" + }, + { + "slug": "grid-community-toolkit", + "name": "Grid Community Toolkit", + "url": "/v1/software/grid-community-toolkit" + }, + { + "slug": "grid-mp", + "name": "Grid MP", + "url": "/v1/software/grid-mp" + }, + { + "slug": "gridgain-systems", + "name": "GridGain Systems", + "url": "/v1/software/gridgain-systems" + }, + { + "slug": "gridrepublic", + "name": "GridRepublic", + "url": "/v1/software/gridrepublic" + }, + { + "slug": "gridway", + "name": "GridWay", + "url": "/v1/software/gridway" + }, + { + "slug": "gridinsoft-anti-malware", + "name": "GridinSoft Anti-Malware", + "url": "/v1/software/gridinsoft-anti-malware" + }, + { + "slug": "grind", + "name": "Grind", + "url": "/v1/software/grind" + }, + { + "slug": "grindstone", + "name": "Grindstone", + "url": "/v1/software/grindstone" + }, + { + "slug": "griot-system", + "name": "Griot System", + "url": "/v1/software/griot-system" + }, + { + "slug": "grlevelx", + "name": "Grlevelx", + "url": "/v1/software/grlevelx" + }, + { + "slug": "grokker", + "name": "Grokker", + "url": "/v1/software/grokker" + }, + { + "slug": "grokster", + "name": "Grokster", + "url": "/v1/software/grokster" + }, + { + "slug": "grome", + "name": "Grome", + "url": "/v1/software/grome" + }, + { + "slug": "grond", + "name": "Grond", + "url": "/v1/software/grond" + }, + { + "slug": "group-shot", + "name": "Group Shot", + "url": "/v1/software/group-shot" + }, + { + "slug": "grype", + "name": "Grype", + "url": "/v1/software/grype" + }, + { + "slug": "gsegrafix", + "name": "Gsegrafix", + "url": "/v1/software/gsegrafix" + }, + { + "slug": "gslapt", + "name": "Gslapt", + "url": "/v1/software/gslapt" + }, + { + "slug": "gstarcad", + "name": "GstarCAD", + "url": "/v1/software/gstarcad" + }, + { + "slug": "gtkglext", + "name": "GtkGLExt", + "url": "/v1/software/gtkglext" + }, + { + "slug": "gtkhash", + "name": "GtkHash", + "url": "/v1/software/gtkhash" + }, + { + "slug": "gtkinspector", + "name": "GtkInspector", + "url": "/v1/software/gtkinspector" + }, + { + "slug": "gtkperf", + "name": "GtkPerf", + "url": "/v1/software/gtkperf" + }, + { + "slug": "gtkspell", + "name": "GtkSpell", + "url": "/v1/software/gtkspell" + }, + { + "slug": "gubb", + "name": "Gubb", + "url": "/v1/software/gubb" + }, + { + "slug": "guidegeek", + "name": "GuideGeek", + "url": "/v1/software/guidegeek" + }, + { + "slug": "guile-dbi", + "name": "Guile-dbi", + "url": "/v1/software/guile-dbi" + }, + { + "slug": "guitar-rig", + "name": "Guitar Rig", + "url": "/v1/software/guitar-rig" + }, + { + "slug": "gundam-virtual-modeler-light", + "name": "Gundam Virtual Modeler Light", + "url": "/v1/software/gundam-virtual-modeler-light" + }, + { + "slug": "gundam-virtual-modeler-pro", + "name": "Gundam Virtual Modeler Pro", + "url": "/v1/software/gundam-virtual-modeler-pro" + }, + { + "slug": "gurobi", + "name": "Gurobi", + "url": "/v1/software/gurobi" + }, + { + "slug": "gymwork", + "name": "Gymwork", + "url": "/v1/software/gymwork" + }, + { + "slug": "gzilla", + "name": "Gzilla", + "url": "/v1/software/gzilla" + }, + { + "slug": "h-sphere", + "name": "H-Sphere", + "url": "/v1/software/h-sphere" + }, + { + "slug": "hal-shs", + "name": "HAL SHS", + "url": "/v1/software/hal-shs" + }, + { + "slug": "halion-symphonic-orchestra", + "name": "HALion Symphonic Orchestra", + "url": "/v1/software/halion-symphonic-orchestra" + }, + { + "slug": "hapi", + "name": "HAPI", + "url": "/v1/software/hapi" + }, + { + "slug": "hatop", + "name": "HATop", + "url": "/v1/software/hatop" + }, + { + "slug": "hawkeye", + "name": "HAWKEYE", + "url": "/v1/software/hawkeye" + }, + { + "slug": "hazus", + "name": "HAZUS", + "url": "/v1/software/hazus" + }, + { + "slug": "hbb-nexus-os", + "name": "HBB Nexus OS", + "url": "/v1/software/hbb-nexus-os" + }, + { + "slug": "hbook", + "name": "HBOOK", + "url": "/v1/software/hbook" + }, + { + "slug": "hd-tach", + "name": "HD Tach", + "url": "/v1/software/hd-tach" + }, + { + "slug": "hd-tune", + "name": "HD Tune", + "url": "/v1/software/hd-tune" + }, + { + "slug": "hd3d", + "name": "HD3D", + "url": "/v1/software/hd3d" + }, + { + "slug": "hdf-explorer", + "name": "HDF Explorer", + "url": "/v1/software/hdf-explorer" + }, + { + "slug": "hdf5", + "name": "HDF5", + "url": "/v1/software/hdf5" + }, + { + "slug": "hdfview", + "name": "HDFView", + "url": "/v1/software/hdfview" + }, + { + "slug": "hdiv", + "name": "HDIV", + "url": "/v1/software/hdiv" + }, + { + "slug": "hdr-photostudio", + "name": "HDR PhotoStudio", + "url": "/v1/software/hdr-photostudio" + }, + { + "slug": "hdrug", + "name": "HDRUG", + "url": "/v1/software/hdrug" + }, + { + "slug": "heat", + "name": "HEAT", + "url": "/v1/software/heat" + }, + { + "slug": "hec-1", + "name": "HEC-1", + "url": "/v1/software/hec-1" + }, + { + "slug": "hec-hms", + "name": "HEC-HMS", + "url": "/v1/software/hec-hms" + }, + { + "slug": "hec-ras", + "name": "HEC-RAS", + "url": "/v1/software/hec-ras" + }, + { + "slug": "heif-image-extensions", + "name": "HEIF Image Extensions", + "url": "/v1/software/heif-image-extensions" + }, + { + "slug": "heimdall", + "name": "HEIMDALL", + "url": "/v1/software/heimdall" + }, + { + "slug": "heras-af", + "name": "HERAS-AF", + "url": "/v1/software/heras-af" + }, + { + "slug": "here-wego", + "name": "HERE WeGo", + "url": "/v1/software/here-wego" + }, + { + "slug": "hero-hosted-pbx", + "name": "HERO Hosted PBX", + "url": "/v1/software/hero-hosted-pbx" + }, + { + "slug": "hevc-video-extensions", + "name": "HEVC Video Extensions", + "url": "/v1/software/hevc-video-extensions" + }, + { + "slug": "hfss", + "name": "HFSS", + "url": "/v1/software/hfss" + }, + { + "slug": "hidpoint", + "name": "HIDPoint", + "url": "/v1/software/hidpoint" + }, + { + "slug": "hirmeos-metrics-suite", + "name": "HIRMEOS metrics suite", + "url": "/v1/software/hirmeos-metrics-suite" + }, + { + "slug": "hit-clou", + "name": "HIT/CLOU", + "url": "/v1/software/hit-clou" + }, + { + "slug": "hkchat", + "name": "HKChat", + "url": "/v1/software/hkchat" + }, + { + "slug": "hnsky", + "name": "HNSKY", + "url": "/v1/software/hnsky" + }, + { + "slug": "hobbies", + "name": "HOBBIES", + "url": "/v1/software/hobbies" + }, + { + "slug": "hobo-request", + "name": "HOBO-request", + "url": "/v1/software/hobo-request" + }, + { + "slug": "hookiq", + "name": "HOOKiQ", + "url": "/v1/software/hookiq" + }, + { + "slug": "hoops-3d-graphics-system", + "name": "HOOPS 3D Graphics System", + "url": "/v1/software/hoops-3d-graphics-system" + }, + { + "slug": "hosst", + "name": "HOSST", + "url": "/v1/software/hosst" + }, + { + "slug": "hp-application-lifecycle-management", + "name": "HP Application Lifecycle Management", + "url": "/v1/software/hp-application-lifecycle-management" + }, + { + "slug": "hp-business-service-management", + "name": "HP Business Service Management", + "url": "/v1/software/hp-business-service-management" + }, + { + "slug": "hp-client-automation-software", + "name": "HP Client Automation Software", + "url": "/v1/software/hp-client-automation-software" + }, + { + "slug": "hp-cloud-service-automation-software", + "name": "HP Cloud Service Automation Software", + "url": "/v1/software/hp-cloud-service-automation-software" + }, + { + "slug": "hp-data-protector", + "name": "HP Data Protector", + "url": "/v1/software/hp-data-protector" + }, + { + "slug": "hp-icewall-sso", + "name": "HP IceWall SSO", + "url": "/v1/software/hp-icewall-sso" + }, + { + "slug": "hp-information-management-software", + "name": "HP Information Management Software", + "url": "/v1/software/hp-information-management-software" + }, + { + "slug": "hp-network-management-center", + "name": "HP Network Management Center", + "url": "/v1/software/hp-network-management-center" + }, + { + "slug": "hp-opencall", + "name": "HP OpenCall", + "url": "/v1/software/hp-opencall" + }, + { + "slug": "hp-openview", + "name": "HP OpenView", + "url": "/v1/software/hp-openview" + }, + { + "slug": "hp-quicktest-professional", + "name": "HP QuickTest Professional", + "url": "/v1/software/hp-quicktest-professional" + }, + { + "slug": "hp-webinspect", + "name": "HP WebInspect", + "url": "/v1/software/hp-webinspect" + }, + { + "slug": "hp-winrunner", + "name": "HP WinRunner", + "url": "/v1/software/hp-winrunner" + }, + { + "slug": "hp-ac", + "name": "HP aC++", + "url": "/v1/software/hp-ac" + }, + { + "slug": "hpc-challenge-benchmark", + "name": "HPC Challenge Benchmark", + "url": "/v1/software/hpc-challenge-benchmark" + }, + { + "slug": "hpcg-benchmark", + "name": "HPCG benchmark", + "url": "/v1/software/hpcg-benchmark" + }, + { + "slug": "hpipm", + "name": "HPIPM", + "url": "/v1/software/hpipm" + }, + { + "slug": "hpl-ai", + "name": "HPL-AI", + "url": "/v1/software/hpl-ai" + }, + { + "slug": "hrhis", + "name": "HRHIS", + "url": "/v1/software/hrhis" + }, + { + "slug": "ht-bookworm", + "name": "HT-Bookworm", + "url": "/v1/software/ht-bookworm" + }, + { + "slug": "htc-sense", + "name": "HTC Sense", + "url": "/v1/software/htc-sense" + }, + { + "slug": "htk", + "name": "HTK", + "url": "/v1/software/htk" + }, + { + "slug": "html", + "name": "HTML +", + "url": "/v1/software/html" + }, + { + "slug": "html-viewer-3", + "name": "HTML Viewer 3", + "url": "/v1/software/html-viewer-3" + }, + { + "slug": "html-xml-utils", + "name": "HTML-XML-utils", + "url": "/v1/software/html-xml-utils" + }, + { + "slug": "html5-boilerplate", + "name": "HTML5 Boilerplate", + "url": "/v1/software/html5-boilerplate" + }, + { + "slug": "htmlup", + "name": "HTMLUP", + "url": "/v1/software/htmlup" + }, + { + "slug": "htsjdk", + "name": "HTSJDK", + "url": "/v1/software/htsjdk" + }, + { + "slug": "hv", + "name": "HV", + "url": "/v1/software/hv" + }, + { + "slug": "hyphy", + "name": "HYPHY", + "url": "/v1/software/hyphy" + }, + { + "slug": "hackhq", + "name": "HackHQ", + "url": "/v1/software/hackhq" + }, + { + "slug": "hackmaster", + "name": "HackMaster", + "url": "/v1/software/hackmaster" + }, + { + "slug": "hackedbox", + "name": "Hackedbox", + "url": "/v1/software/hackedbox" + }, + { + "slug": "hajime", + "name": "Hajime", + "url": "/v1/software/hajime" + }, + { + "slug": "halcon", + "name": "Halcon", + "url": "/v1/software/halcon" + }, + { + "slug": "half-life-model-viewer", + "name": "Half-Life Model Viewer", + "url": "/v1/software/half-life-model-viewer" + }, + { + "slug": "halifax", + "name": "HaliFAX", + "url": "/v1/software/halifax" + }, + { + "slug": "halper-ai", + "name": "Halper AI", + "url": "/v1/software/halper-ai" + }, + { + "slug": "haluka", + "name": "Haluka", + "url": "/v1/software/haluka" + }, + { + "slug": "hamsphere", + "name": "HamSphere", + "url": "/v1/software/hamsphere" + }, + { + "slug": "hammer", + "name": "Hammer++", + "url": "/v1/software/hammer" + }, + { + "slug": "hammerspoon", + "name": "Hammerspoon", + "url": "/v1/software/hammerspoon" + }, + { + "slug": "handwallet", + "name": "HandWallet", + "url": "/v1/software/handwallet" + }, + { + "slug": "handbook-emission-factors-for-road-transport", + "name": "Handbook Emission Factors for Road Transport", + "url": "/v1/software/handbook-emission-factors-for-road-transport" + }, + { + "slug": "handy-backup", + "name": "Handy Backup", + "url": "/v1/software/handy-backup" + }, + { + "slug": "handycache", + "name": "HandyCache", + "url": "/v1/software/handycache" + }, + { + "slug": "hanshan", + "name": "Hanshan", + "url": "/v1/software/hanshan" + }, + { + "slug": "haozip", + "name": "HaoZip", + "url": "/v1/software/haozip" + }, + { + "slug": "haploview", + "name": "Haploview", + "url": "/v1/software/haploview" + }, + { + "slug": "hardware-accelerated-execution-manager", + "name": "Hardware-Accelerated Execution Manager", + "url": "/v1/software/hardware-accelerated-execution-manager" + }, + { + "slug": "harminv", + "name": "Harminv", + "url": "/v1/software/harminv" + }, + { + "slug": "harmony-compiler", + "name": "Harmony Compiler", + "url": "/v1/software/harmony-compiler" + }, + { + "slug": "harmor", + "name": "Harmor", + "url": "/v1/software/harmor" + }, + { + "slug": "harrison-mixbus", + "name": "Harrison Mixbus", + "url": "/v1/software/harrison-mixbus" + }, + { + "slug": "harrow", + "name": "Harrow", + "url": "/v1/software/harrow" + }, + { + "slug": "harvard-predictive-analyser", + "name": "Harvard Predictive Analyser", + "url": "/v1/software/harvard-predictive-analyser" + }, + { + "slug": "harvest", + "name": "Harvest", + "url": "/v1/software/harvest" + }, + { + "slug": "harvey-ai", + "name": "Harvey AI", + "url": "/v1/software/harvey-ai" + }, + { + "slug": "hashkeeper", + "name": "HashKeeper", + "url": "/v1/software/hashkeeper" + }, + { + "slug": "hashcash", + "name": "Hashcash", + "url": "/v1/software/hashcash" + }, + { + "slug": "hauptwerk", + "name": "Hauptwerk", + "url": "/v1/software/hauptwerk" + }, + { + "slug": "hawaii", + "name": "Hawaii", + "url": "/v1/software/hawaii" + }, + { + "slug": "haxi", + "name": "Haxi", + "url": "/v1/software/haxi" + }, + { + "slug": "haystack", + "name": "Haystack", + "url": "/v1/software/haystack" + }, + { + "slug": "hazelcast", + "name": "Hazelcast", + "url": "/v1/software/hazelcast" + }, + { + "slug": "headstart", + "name": "Headstart", + "url": "/v1/software/headstart" + }, + { + "slug": "headway", + "name": "Headway", + "url": "/v1/software/headway" + }, + { + "slug": "headweb", + "name": "Headweb", + "url": "/v1/software/headweb" + }, + { + "slug": "healthshare", + "name": "HealthShare", + "url": "/v1/software/healthshare" + }, + { + "slug": "healthcare-voc-compliance-calculator-and-datasets", + "name": "Healthcare VOC Compliance Calculator and Datasets", + "url": "/v1/software/healthcare-voc-compliance-calculator-and-datasets" + }, + { + "slug": "hearplanet", + "name": "HearPlanet", + "url": "/v1/software/hearplanet" + }, + { + "slug": "heart-of-africa", + "name": "Heart of Africa", + "url": "/v1/software/heart-of-africa" + }, + { + "slug": "heart-of-asia-phrases-instruments-utterances-from-the-far-east", + "name": "Heart of Asia : Phrases, Instruments & Utterances from the Far East.", + "url": "/v1/software/heart-of-asia-phrases-instruments-utterances-from-the-far-east" + }, + { + "slug": "heartbeat-networks", + "name": "HeartBeat Networks", + "url": "/v1/software/heartbeat-networks" + }, + { + "slug": "hedgedoc", + "name": "HedgeDoc", + "url": "/v1/software/hedgedoc" + }, + { + "slug": "heirloom-legacy-platform", + "name": "Heirloom - legacy platform", + "url": "/v1/software/heirloom-legacy-platform" + }, + { + "slug": "heirloom-project", + "name": "Heirloom Project", + "url": "/v1/software/heirloom-project" + }, + { + "slug": "helicon-ape", + "name": "Helicon Ape", + "url": "/v1/software/helicon-ape" + }, + { + "slug": "helicon-focus", + "name": "Helicon Focus", + "url": "/v1/software/helicon-focus" + }, + { + "slug": "helios-voting", + "name": "Helios Voting", + "url": "/v1/software/helios-voting" + }, + { + "slug": "helix-universal-server", + "name": "Helix Universal Server", + "url": "/v1/software/helix-universal-server" + }, + { + "slug": "help-conquer-cancer", + "name": "Help Conquer Cancer", + "url": "/v1/software/help-conquer-cancer" + }, + { + "slug": "help-cure-muscular-dystrophy", + "name": "Help Cure Muscular Dystrophy", + "url": "/v1/software/help-cure-muscular-dystrophy" + }, + { + "slug": "help-to-rtf", + "name": "Help to RTF", + "url": "/v1/software/help-to-rtf" + }, + { + "slug": "helpdesk", + "name": "HelpDesk", + "url": "/v1/software/helpdesk" + }, + { + "slug": "helpwire", + "name": "HelpWire", + "url": "/v1/software/helpwire" + }, + { + "slug": "hemismas", + "name": "Hemismas", + "url": "/v1/software/hemismas" + }, + { + "slug": "hemospat", + "name": "HemoSpat", + "url": "/v1/software/hemospat" + }, + { + "slug": "henshin", + "name": "Henshin", + "url": "/v1/software/henshin" + }, + { + "slug": "her", + "name": "Her", + "url": "/v1/software/her" + }, + { + "slug": "herdsman", + "name": "Herdsman", + "url": "/v1/software/herdsman" + }, + { + "slug": "hermetic-word-frequency-counter", + "name": "Hermetic Word Frequency Counter", + "url": "/v1/software/hermetic-word-frequency-counter" + }, + { + "slug": "hermit", + "name": "Hermit", + "url": "/v1/software/hermit" + }, + { + "slug": "heroic-games-launcher", + "name": "Heroic Games Launcher", + "url": "/v1/software/heroic-games-launcher" + }, + { + "slug": "heron", + "name": "Heron", + "url": "/v1/software/heron" + }, + { + "slug": "herosoft-sthvcd", + "name": "Herosoft STHVCD", + "url": "/v1/software/herosoft-sthvcd" + }, + { + "slug": "hessian", + "name": "Hessian", + "url": "/v1/software/hessian" + }, + { + "slug": "hetman-partition-recovery", + "name": "Hetman Partition Recovery", + "url": "/v1/software/hetman-partition-recovery" + }, + { + "slug": "hetman-uneraser", + "name": "Hetman Uneraser", + "url": "/v1/software/hetman-uneraser" + }, + { + "slug": "heurist", + "name": "Heurist", + "url": "/v1/software/heurist" + }, + { + "slug": "hex", + "name": "Hex", + "url": "/v1/software/hex" + }, + { + "slug": "hexagon", + "name": "Hexagon", + "url": "/v1/software/hexagon" + }, + { + "slug": "hexatomic", + "name": "Hexatomic", + "url": "/v1/software/hexatomic" + }, + { + "slug": "heym", + "name": "Heym", + "url": "/v1/software/heym" + }, + { + "slug": "highs-optimization-solver", + "name": "HiGHS optimization solver", + "url": "/v1/software/highs-optimization-solver" + }, + { + "slug": "hios", + "name": "HiOS", + "url": "/v1/software/hios" + }, + { + "slug": "hidemaru-editor", + "name": "Hidemaru Editor", + "url": "/v1/software/hidemaru-editor" + }, + { + "slug": "hieroglyphika", + "name": "Hieroglyphika", + "url": "/v1/software/hieroglyphika" + }, + { + "slug": "high-orbit-ion-cannon", + "name": "High Orbit Ion Cannon", + "url": "/v1/software/high-orbit-ion-cannon" + }, + { + "slug": "high-performance-parallex", + "name": "High Performance Parallex", + "url": "/v1/software/high-performance-parallex" + }, + { + "slug": "highlight", + "name": "Highlight", + "url": "/v1/software/highlight" + }, + { + "slug": "highly-available-storage", + "name": "Highly Available STorage", + "url": "/v1/software/highly-available-storage" + }, + { + "slug": "highly-scalable-data-service", + "name": "Highly Scalable Data Service", + "url": "/v1/software/highly-scalable-data-service" + }, + { + "slug": "hiki", + "name": "Hiki", + "url": "/v1/software/hiki" + }, + { + "slug": "hily", + "name": "Hily", + "url": "/v1/software/hily" + }, + { + "slug": "hindi-to-punjabi-machine-translation-system", + "name": "Hindi-to-Punjabi Machine Translation System", + "url": "/v1/software/hindi-to-punjabi-machine-translation-system" + }, + { + "slug": "hinge", + "name": "Hinge", + "url": "/v1/software/hinge" + }, + { + "slug": "hipnav", + "name": "HipNav", + "url": "/v1/software/hipnav" + }, + { + "slug": "hipcrime", + "name": "Hipcrime", + "url": "/v1/software/hipcrime" + }, + { + "slug": "history-of-slovenia-sistory-portal", + "name": "History of Slovenia - SIstory portal", + "url": "/v1/software/history-of-slovenia-sistory-portal" + }, + { + "slug": "hitoo", + "name": "Hitoo", + "url": "/v1/software/hitoo" + }, + { + "slug": "hive-ui", + "name": "Hive UI", + "url": "/v1/software/hive-ui" + }, + { + "slug": "hiview3", + "name": "Hiview3", + "url": "/v1/software/hiview3" + }, + { + "slug": "hiyama-kiyoteru", + "name": "Hiyama Kiyoteru", + "url": "/v1/software/hiyama-kiyoteru" + }, + { + "slug": "holiline-reminder", + "name": "Holiline Reminder", + "url": "/v1/software/holiline-reminder" + }, + { + "slug": "holmes", + "name": "Holmes", + "url": "/v1/software/holmes" + }, + { + "slug": "holo", + "name": "Holo", + "url": "/v1/software/holo" + }, + { + "slug": "holographic-versatile-disc", + "name": "Holographic Versatile Disc", + "url": "/v1/software/holographic-versatile-disc" + }, + { + "slug": "holomatix-rendition", + "name": "Holomatix Rendition", + "url": "/v1/software/holomatix-rendition" + }, + { + "slug": "homepage-penguin", + "name": "HomePage Penguin", + "url": "/v1/software/homepage-penguin" + }, + { + "slug": "homepak", + "name": "Homepak", + "url": "/v1/software/homepak" + }, + { + "slug": "honeyview", + "name": "Honeyview", + "url": "/v1/software/honeyview" + }, + { + "slug": "hoodie", + "name": "Hoodie", + "url": "/v1/software/hoodie" + }, + { + "slug": "hooked", + "name": "Hooked", + "url": "/v1/software/hooked" + }, + { + "slug": "hopin-ltd", + "name": "Hopin Ltd.", + "url": "/v1/software/hopin-ltd" + }, + { + "slug": "hoppscotch", + "name": "Hoppscotch", + "url": "/v1/software/hoppscotch" + }, + { + "slug": "horgand", + "name": "Horgand", + "url": "/v1/software/horgand" + }, + { + "slug": "horizons-software-starter-pack", + "name": "Horizons: Software Starter Pack", + "url": "/v1/software/horizons-software-starter-pack" + }, + { + "slug": "hornby-track-master", + "name": "Hornby Track Master", + "url": "/v1/software/hornby-track-master" + }, + { + "slug": "hosebird", + "name": "Hosebird", + "url": "/v1/software/hosebird" + }, + { + "slug": "hosttracker", + "name": "HostTracker", + "url": "/v1/software/hosttracker" + }, + { + "slug": "hot-potatoes", + "name": "Hot Potatoes", + "url": "/v1/software/hot-potatoes" + }, + { + "slug": "hotjava", + "name": "HotJava", + "url": "/v1/software/hotjava" + }, + { + "slug": "hotjava-views", + "name": "HotJava Views", + "url": "/v1/software/hotjava-views" + }, + { + "slug": "hotruby", + "name": "HotRuby", + "url": "/v1/software/hotruby" + }, + { + "slug": "hotsauce", + "name": "HotSauce", + "url": "/v1/software/hotsauce" + }, + { + "slug": "hotspot-shieldxnxx", + "name": "Hotspot Shieldxnxx", + "url": "/v1/software/hotspot-shieldxnxx" + }, + { + "slug": "houdini", + "name": "Houdini", + "url": "/v1/software/houdini" + }, + { + "slug": "houseparty", + "name": "Houseparty", + "url": "/v1/software/houseparty" + }, + { + "slug": "houston-automatic-spooling-priority", + "name": "Houston Automatic Spooling Priority", + "url": "/v1/software/houston-automatic-spooling-priority" + }, + { + "slug": "hoyle-casino-2008", + "name": "Hoyle Casino 2008", + "url": "/v1/software/hoyle-casino-2008" + }, + { + "slug": "hozo", + "name": "Hozo", + "url": "/v1/software/hozo" + }, + { + "slug": "huawei-hicar", + "name": "Huawei HiCar", + "url": "/v1/software/huawei-hicar" + }, + { + "slug": "huawei-mobile-services", + "name": "Huawei Mobile Services", + "url": "/v1/software/huawei-mobile-services" + }, + { + "slug": "huawei-pay", + "name": "Huawei Pay", + "url": "/v1/software/huawei-pay" + }, + { + "slug": "hubstaff-desk", + "name": "Hubstaff Desk", + "url": "/v1/software/hubstaff-desk" + }, + { + "slug": "hubstaff-field", + "name": "Hubstaff Field", + "url": "/v1/software/hubstaff-field" + }, + { + "slug": "hubstaff-tasks", + "name": "Hubstaff Tasks", + "url": "/v1/software/hubstaff-tasks" + }, + { + "slug": "hubstaff-time", + "name": "Hubstaff Time", + "url": "/v1/software/hubstaff-time" + }, + { + "slug": "huggle", + "name": "Huggle", + "url": "/v1/software/huggle" + }, + { + "slug": "humanize-ai", + "name": "Humanize AI", + "url": "/v1/software/humanize-ai" + }, + { + "slug": "humu", + "name": "Humu", + "url": "/v1/software/humu" + }, + { + "slug": "hybrid-web-cluster", + "name": "Hybrid Web Cluster", + "url": "/v1/software/hybrid-web-cluster" + }, + { + "slug": "hydra-oms", + "name": "Hydra OMS", + "url": "/v1/software/hydra-oms" + }, + { + "slug": "hypelist", + "name": "Hypelist", + "url": "/v1/software/hypelist" + }, + { + "slug": "hyperaccess", + "name": "HyperACCESS", + "url": "/v1/software/hyperaccess" + }, + { + "slug": "hypercam", + "name": "HyperCam", + "url": "/v1/software/hypercam" + }, + { + "slug": "hyperfilesql", + "name": "HyperFileSQL", + "url": "/v1/software/hyperfilesql" + }, + { + "slug": "hyperpo", + "name": "HyperPo", + "url": "/v1/software/hyperpo" + }, + { + "slug": "hyperresearch", + "name": "HyperResearch", + "url": "/v1/software/hyperresearch" + }, + { + "slug": "hypersizer", + "name": "HyperSizer", + "url": "/v1/software/hypersizer" + }, + { + "slug": "hyperstudio", + "name": "HyperStudio", + "url": "/v1/software/hyperstudio" + }, + { + "slug": "hypertranscribe", + "name": "HyperTRANSCRIBE", + "url": "/v1/software/hypertranscribe" + }, + { + "slug": "hyperx-software", + "name": "HyperX Software", + "url": "/v1/software/hyperx-software" + }, + { + "slug": "hyperbase", + "name": "Hyperbase", + "url": "/v1/software/hyperbase" + }, + { + "slug": "hypergate", + "name": "Hypergate", + "url": "/v1/software/hypergate" + }, + { + "slug": "hyperion-planning", + "name": "Hyperion Planning", + "url": "/v1/software/hyperion-planning" + }, + { + "slug": "hyperplanning", + "name": "Hyperplanning", + "url": "/v1/software/hyperplanning" + }, + { + "slug": "hyperscore", + "name": "Hyperscore", + "url": "/v1/software/hyperscore" + }, + { + "slug": "hypertext-on-hypertext", + "name": "Hypertext on Hypertext", + "url": "/v1/software/hypertext-on-hypertext" + }, + { + "slug": "hyperwords", + "name": "Hyperwords", + "url": "/v1/software/hyperwords" + }, + { + "slug": "hypotheses-academic-blogs", + "name": "Hypotheses, Academic Blogs", + "url": "/v1/software/hypotheses-academic-blogs" + }, + { + "slug": "i-am-rich", + "name": "I Am Rich", + "url": "/v1/software/i-am-rich" + }, + { + "slug": "i-have-said-nothing", + "name": "I Have Said Nothing", + "url": "/v1/software/i-have-said-nothing" + }, + { + "slug": "i-m-intouch", + "name": "I'm InTouch", + "url": "/v1/software/i-m-intouch" + }, + { + "slug": "i-librarian", + "name": "I, Librarian", + "url": "/v1/software/i-librarian" + }, + { + "slug": "i-analyzer", + "name": "I-Analyzer", + "url": "/v1/software/i-analyzer" + }, + { + "slug": "i-doser", + "name": "I-Doser", + "url": "/v1/software/i-doser" + }, + { + "slug": "i-novae", + "name": "I-Novae", + "url": "/v1/software/i-novae" + }, + { + "slug": "i-solve", + "name": "I-SOLVE", + "url": "/v1/software/i-solve" + }, + { + "slug": "i-tasser", + "name": "I-TASSER", + "url": "/v1/software/i-tasser" + }, + { + "slug": "i-net-crystal-clear", + "name": "I-net Crystal-Clear", + "url": "/v1/software/i-net-crystal-clear" + }, + { + "slug": "i-scream-homelearn", + "name": "I-scream homelearn", + "url": "/v1/software/i-scream-homelearn" + }, + { + "slug": "i2phex", + "name": "I2Phex", + "url": "/v1/software/i2phex" + }, + { + "slug": "ia", + "name": "IA", + "url": "/v1/software/ia" + }, + { + "slug": "ibm-api-management", + "name": "IBM API Management", + "url": "/v1/software/ibm-api-management" + }, + { + "slug": "ibm-administrative-terminal-system", + "name": "IBM Administrative Terminal System", + "url": "/v1/software/ibm-administrative-terminal-system" + }, + { + "slug": "ibm-aerotext", + "name": "IBM AeroText", + "url": "/v1/software/ibm-aerotext" + }, + { + "slug": "ibm-bigfix", + "name": "IBM BigFix", + "url": "/v1/software/ibm-bigfix" + }, + { + "slug": "ibm-blueworks-live", + "name": "IBM BlueWorks Live", + "url": "/v1/software/ibm-blueworks-live" + }, + { + "slug": "ibm-bluemix", + "name": "IBM Bluemix", + "url": "/v1/software/ibm-bluemix" + }, + { + "slug": "ibm-cobol", + "name": "IBM COBOL", + "url": "/v1/software/ibm-cobol" + }, + { + "slug": "ibm-check-processing-control-system", + "name": "IBM Check Processing Control System", + "url": "/v1/software/ibm-check-processing-control-system" + }, + { + "slug": "ibm-cognos-8-business-intelligence", + "name": "IBM Cognos 8 Business Intelligence", + "url": "/v1/software/ibm-cognos-8-business-intelligence" + }, + { + "slug": "ibm-configuration-management-version-control", + "name": "IBM Configuration Management Version Control", + "url": "/v1/software/ibm-configuration-management-version-control" + }, + { + "slug": "ibm-disoss", + "name": "IBM DISOSS", + "url": "/v1/software/ibm-disoss" + }, + { + "slug": "ibm-director", + "name": "IBM Director", + "url": "/v1/software/ibm-director" + }, + { + "slug": "ibm-docs", + "name": "IBM Docs", + "url": "/v1/software/ibm-docs" + }, + { + "slug": "ibm-engineering-systems-design-rhapsody", + "name": "IBM Engineering Systems Design Rhapsody", + "url": "/v1/software/ibm-engineering-systems-design-rhapsody" + }, + { + "slug": "ibm-general-parallel-file-system", + "name": "IBM General Parallel File System", + "url": "/v1/software/ibm-general-parallel-file-system" + }, + { + "slug": "ibm-high-availability-cluster-multiprocessing", + "name": "IBM High Availability Cluster Multiprocessing", + "url": "/v1/software/ibm-high-availability-cluster-multiprocessing" + }, + { + "slug": "ibm-home-page-reader", + "name": "IBM Home Page Reader", + "url": "/v1/software/ibm-home-page-reader" + }, + { + "slug": "ibm-infosphere-datastage", + "name": "IBM InfoSphere DataStage", + "url": "/v1/software/ibm-infosphere-datastage" + }, + { + "slug": "ibm-informix-dynamic-server", + "name": "IBM Informix Dynamic Server", + "url": "/v1/software/ibm-informix-dynamic-server" + }, + { + "slug": "ibm-lan-server", + "name": "IBM LAN Server", + "url": "/v1/software/ibm-lan-server" + }, + { + "slug": "ibm-lotus-approach", + "name": "IBM Lotus Approach", + "url": "/v1/software/ibm-lotus-approach" + }, + { + "slug": "ibm-lotus-domino", + "name": "IBM Lotus Domino", + "url": "/v1/software/ibm-lotus-domino" + }, + { + "slug": "ibm-lotus-freelance-graphics", + "name": "IBM Lotus Freelance Graphics", + "url": "/v1/software/ibm-lotus-freelance-graphics" + }, + { + "slug": "ibm-lotus-web-content-management", + "name": "IBM Lotus Web Content Management", + "url": "/v1/software/ibm-lotus-web-content-management" + }, + { + "slug": "ibm-omegamon", + "name": "IBM OMEGAMON", + "url": "/v1/software/ibm-omegamon" + }, + { + "slug": "ibm-office-and-document-control-system", + "name": "IBM Office and Document Control System", + "url": "/v1/software/ibm-office-and-document-control-system" + }, + { + "slug": "ibm-office-36", + "name": "IBM Office/36", + "url": "/v1/software/ibm-office-36" + }, + { + "slug": "ibm-officevision", + "name": "IBM OfficeVision", + "url": "/v1/software/ibm-officevision" + }, + { + "slug": "ibm-omnifind-yahoo-edition", + "name": "IBM OmniFind Yahoo! Edition", + "url": "/v1/software/ibm-omnifind-yahoo-edition" + }, + { + "slug": "ibm-omnifind", + "name": "IBM Omnifind", + "url": "/v1/software/ibm-omnifind" + }, + { + "slug": "ibm-operational-decision-management", + "name": "IBM Operational Decision Management", + "url": "/v1/software/ibm-operational-decision-management" + }, + { + "slug": "ibm-profs", + "name": "IBM PROFS", + "url": "/v1/software/ibm-profs" + }, + { + "slug": "ibm-power", + "name": "IBM Power", + "url": "/v1/software/ibm-power" + }, + { + "slug": "ibm-purequery", + "name": "IBM PureQuery", + "url": "/v1/software/ibm-purequery" + }, + { + "slug": "ibm-rational-appscan", + "name": "IBM Rational AppScan", + "url": "/v1/software/ibm-rational-appscan" + }, + { + "slug": "ibm-rational-automation-framework", + "name": "IBM Rational Automation Framework", + "url": "/v1/software/ibm-rational-automation-framework" + }, + { + "slug": "ibm-rational-business-developer-extension", + "name": "IBM Rational Business Developer Extension", + "url": "/v1/software/ibm-rational-business-developer-extension" + }, + { + "slug": "ibm-rational-focal-point", + "name": "IBM Rational Focal Point", + "url": "/v1/software/ibm-rational-focal-point" + }, + { + "slug": "ibm-rational-performance-tester", + "name": "IBM Rational Performance Tester", + "url": "/v1/software/ibm-rational-performance-tester" + }, + { + "slug": "ibm-rational-purify", + "name": "IBM Rational Purify", + "url": "/v1/software/ibm-rational-purify" + }, + { + "slug": "ibm-rational-rose-xde", + "name": "IBM Rational Rose XDE", + "url": "/v1/software/ibm-rational-rose-xde" + }, + { + "slug": "ibm-san-file-system", + "name": "IBM SAN File System", + "url": "/v1/software/ibm-san-file-system" + }, + { + "slug": "ibm-stairs", + "name": "IBM STAIRS", + "url": "/v1/software/ibm-stairs" + }, + { + "slug": "ibm-scalable-architecture-for-financial-reporting", + "name": "IBM Scalable Architecture for Financial Reporting", + "url": "/v1/software/ibm-scalable-architecture-for-financial-reporting" + }, + { + "slug": "ibm-scale-out-file-services", + "name": "IBM Scale-out File Services", + "url": "/v1/software/ibm-scale-out-file-services" + }, + { + "slug": "ibm-service-management-framework", + "name": "IBM Service Management Framework", + "url": "/v1/software/ibm-service-management-framework" + }, + { + "slug": "ibm-spectrum-symphony", + "name": "IBM Spectrum Symphony", + "url": "/v1/software/ibm-spectrum-symphony" + }, + { + "slug": "ibm-spufi", + "name": "IBM Spufi", + "url": "/v1/software/ibm-spufi" + }, + { + "slug": "ibm-storyboard-plus", + "name": "IBM Storyboard Plus", + "url": "/v1/software/ibm-storyboard-plus" + }, + { + "slug": "ibm-system-management-facilities", + "name": "IBM System Management Facilities", + "url": "/v1/software/ibm-system-management-facilities" + }, + { + "slug": "ibm-system-object-model", + "name": "IBM System Object Model", + "url": "/v1/software/ibm-system-object-model" + }, + { + "slug": "ibm-system-34-and-system-36-screen-design-aid", + "name": "IBM System/34 and System/36 Screen Design Aid", + "url": "/v1/software/ibm-system-34-and-system-36-screen-design-aid" + }, + { + "slug": "ibm-systemt", + "name": "IBM SystemT", + "url": "/v1/software/ibm-systemt" + }, + { + "slug": "ibm-tpns", + "name": "IBM TPNS", + "url": "/v1/software/ibm-tpns" + }, + { + "slug": "ibm-tivoli-access-manager", + "name": "IBM Tivoli Access Manager", + "url": "/v1/software/ibm-tivoli-access-manager" + }, + { + "slug": "ibm-tivoli-directory-server", + "name": "IBM Tivoli Directory Server", + "url": "/v1/software/ibm-tivoli-directory-server" + }, + { + "slug": "ibm-tivoli-storage-manager", + "name": "IBM Tivoli Storage Manager", + "url": "/v1/software/ibm-tivoli-storage-manager" + }, + { + "slug": "ibm-tivoli-system-automation", + "name": "IBM Tivoli System Automation", + "url": "/v1/software/ibm-tivoli-system-automation" + }, + { + "slug": "ibm-unica-netinsight", + "name": "IBM Unica NetInsight", + "url": "/v1/software/ibm-unica-netinsight" + }, + { + "slug": "ibm-viavoice", + "name": "IBM ViaVoice", + "url": "/v1/software/ibm-viavoice" + }, + { + "slug": "ibm-visualage-for-basic", + "name": "IBM VisualAge for Basic", + "url": "/v1/software/ibm-visualage-for-basic" + }, + { + "slug": "ibm-websphere", + "name": "IBM WebSphere", + "url": "/v1/software/ibm-websphere" + }, + { + "slug": "ibm-websphere-commerce", + "name": "IBM WebSphere Commerce", + "url": "/v1/software/ibm-websphere-commerce" + }, + { + "slug": "ibm-websphere-message-broker", + "name": "IBM WebSphere Message Broker", + "url": "/v1/software/ibm-websphere-message-broker" + }, + { + "slug": "ibm-websphere-process-server", + "name": "IBM WebSphere Process Server", + "url": "/v1/software/ibm-websphere-process-server" + }, + { + "slug": "ibm-websphere-service-registry-and-repository", + "name": "IBM WebSphere Service Registry and Repository", + "url": "/v1/software/ibm-websphere-service-registry-and-repository" + }, + { + "slug": "ibm-websphere-extreme-scale", + "name": "IBM WebSphere eXtreme Scale", + "url": "/v1/software/ibm-websphere-extreme-scale" + }, + { + "slug": "ibm-websphere-business-events", + "name": "IBM Websphere Business Events", + "url": "/v1/software/ibm-websphere-business-events" + }, + { + "slug": "ibm-websphere-host-on-demand", + "name": "IBM Websphere Host On-Demand", + "url": "/v1/software/ibm-websphere-host-on-demand" + }, + { + "slug": "ibm-works", + "name": "IBM Works", + "url": "/v1/software/ibm-works" + }, + { + "slug": "ibm-xl-c", + "name": "IBM XL C++", + "url": "/v1/software/ibm-xl-c" + }, + { + "slug": "ic-project", + "name": "IC Project", + "url": "/v1/software/ic-project" + }, + { + "slug": "ice-integrated-content-environment", + "name": "ICE (Integrated Content Environment)", + "url": "/v1/software/ice-integrated-content-environment" + }, + { + "slug": "icem-surf", + "name": "ICEM Surf", + "url": "/v1/software/icem-surf" + }, + { + "slug": "ich-quiz", + "name": "ICH Quiz", + "url": "/v1/software/ich-quiz" + }, + { + "slug": "icse-2023-artifacts", + "name": "ICSE-2023-Artifacts", + "url": "/v1/software/icse-2023-artifacts" + }, + { + "slug": "icta-internet-community-text-analyzer", + "name": "ICTA (internet community text analyzer)", + "url": "/v1/software/icta-internet-community-text-analyzer" + }, + { + "slug": "ida-indoor-climate-and-energy", + "name": "IDA Indoor Climate and Energy", + "url": "/v1/software/ida-indoor-climate-and-energy" + }, + { + "slug": "iddu-36", + "name": "IDDU/36", + "url": "/v1/software/iddu-36" + }, + { + "slug": "idea-architectural", + "name": "IDEA Architectural", + "url": "/v1/software/idea-architectural" + }, + { + "slug": "ieatbrainz", + "name": "IEatBrainz", + "url": "/v1/software/ieatbrainz" + }, + { + "slug": "ifscl", + "name": "IFSCL", + "url": "/v1/software/ifscl" + }, + { + "slug": "igl", + "name": "IGL", + "url": "/v1/software/igl" + }, + { + "slug": "igor", + "name": "IGOR", + "url": "/v1/software/igor" + }, + { + "slug": "igsuite", + "name": "IGSuite", + "url": "/v1/software/igsuite" + }, + { + "slug": "igt-gpu-tools", + "name": "IGT GPU Tools", + "url": "/v1/software/igt-gpu-tools" + }, + { + "slug": "iiif-universal-viewer", + "name": "IIIF Universal Viewer", + "url": "/v1/software/iiif-universal-viewer" + }, + { + "slug": "iipimage", + "name": "IIPImage", + "url": "/v1/software/iipimage" + }, + { + "slug": "iitagger", + "name": "IITagger", + "url": "/v1/software/iitagger" + }, + { + "slug": "ikeymonitor", + "name": "IKeyMonitor", + "url": "/v1/software/ikeymonitor" + }, + { + "slug": "il2cpp", + "name": "IL2CPP", + "url": "/v1/software/il2cpp" + }, + { + "slug": "illixis", + "name": "ILLIXIS", + "url": "/v1/software/illixis" + }, + { + "slug": "ilovepdf", + "name": "ILovePDF", + "url": "/v1/software/ilovepdf" + }, + { + "slug": "imagine-photogrammetry", + "name": "IMAGINE Photogrammetry", + "url": "/v1/software/imagine-photogrammetry" + }, + { + "slug": "imapfilter", + "name": "IMAPFilter", + "url": "/v1/software/imapfilter" + }, + { + "slug": "imprint", + "name": "IMPRINT", + "url": "/v1/software/imprint" + }, + { + "slug": "ims-open-corpus-workbench-cwb", + "name": "IMS Open Corpus Workbench (CWB)", + "url": "/v1/software/ims-open-corpus-workbench-cwb" + }, + { + "slug": "imvu", + "name": "IMVU", + "url": "/v1/software/imvu" + }, + { + "slug": "imwheel", + "name": "IMWheel", + "url": "/v1/software/imwheel" + }, + { + "slug": "inca", + "name": "INCA", + "url": "/v1/software/inca" + }, + { + "slug": "inception", + "name": "INCEpTION", + "url": "/v1/software/inception" + }, + { + "slug": "incomer-playtest", + "name": "INCOMER Playtest", + "url": "/v1/software/incomer-playtest" + }, + { + "slug": "inke-dynamic-table-of-contexts", + "name": "INKE: Dynamic Table of Contexts", + "url": "/v1/software/inke-dynamic-table-of-contexts" + }, + { + "slug": "inl-blacklab", + "name": "INL BlackLab", + "url": "/v1/software/inl-blacklab" + }, + { + "slug": "inrac-language-compiler", + "name": "INRAC Language Compiler", + "url": "/v1/software/inrac-language-compiler" + }, + { + "slug": "inselect", + "name": "INSELECT", + "url": "/v1/software/inselect" + }, + { + "slug": "intex", + "name": "INTEX", + "url": "/v1/software/intex" + }, + { + "slug": "ion", + "name": "ION", + "url": "/v1/software/ion" + }, + { + "slug": "ionix", + "name": "IONIX", + "url": "/v1/software/ionix" + }, + { + "slug": "iobit-protected-folder", + "name": "IObit Protected Folder", + "url": "/v1/software/iobit-protected-folder" + }, + { + "slug": "iobit-start-menu", + "name": "IObit Start Menu", + "url": "/v1/software/iobit-start-menu" + }, + { + "slug": "iobit-winmetro", + "name": "IObit WinMetro", + "url": "/v1/software/iobit-winmetro" + }, + { + "slug": "iozone", + "name": "IOzone", + "url": "/v1/software/iozone" + }, + { + "slug": "ipdirector", + "name": "IPDirector", + "url": "/v1/software/ipdirector" + }, + { + "slug": "iped-digital-forensic-tool", + "name": "IPED Digital Forensic Tool", + "url": "/v1/software/iped-digital-forensic-tool" + }, + { + "slug": "ipm", + "name": "IPM", + "url": "/v1/software/ipm" + }, + { + "slug": "ipop", + "name": "IPOP", + "url": "/v1/software/ipop" + }, + { + "slug": "ippolit", + "name": "IPPOLIT", + "url": "/v1/software/ippolit" + }, + { + "slug": "iptraf", + "name": "IPTraf", + "url": "/v1/software/iptraf" + }, + { + "slug": "ipsoft-amelia", + "name": "IPsoft Amelia", + "url": "/v1/software/ipsoft-amelia" + }, + { + "slug": "iq-tree", + "name": "IQ-TREE", + "url": "/v1/software/iq-tree" + }, + { + "slug": "iqtell", + "name": "IQTELL", + "url": "/v1/software/iqtell" + }, + { + "slug": "iraf", + "name": "IRAF", + "url": "/v1/software/iraf" + }, + { + "slug": "irc-cloud", + "name": "IRC Cloud", + "url": "/v1/software/irc-cloud" + }, + { + "slug": "irccloud", + "name": "IRCCloud", + "url": "/v1/software/irccloud" + }, + { + "slug": "ironcad-q21043323", + "name": "IRONCAD", + "url": "/v1/software/ironcad-q21043323" + }, + { + "slug": "isbem", + "name": "ISBEM", + "url": "/v1/software/isbem" + }, + { + "slug": "isdoc", + "name": "ISDOC", + "url": "/v1/software/isdoc" + }, + { + "slug": "isis-draw", + "name": "ISIS/Draw", + "url": "/v1/software/isis-draw" + }, + { + "slug": "isodraft", + "name": "ISODraft", + "url": "/v1/software/isodraft" + }, + { + "slug": "issp-galaxy-classifier", + "name": "ISSP Galaxy Classifier", + "url": "/v1/software/issp-galaxy-classifier" + }, + { + "slug": "isconf", + "name": "ISconf", + "url": "/v1/software/isconf" + }, + { + "slug": "istudio-publisher", + "name": "IStudio Publisher", + "url": "/v1/software/istudio-publisher" + }, + { + "slug": "itvx", + "name": "ITVX", + "url": "/v1/software/itvx" + }, + { + "slug": "iuclid", + "name": "IUCLID", + "url": "/v1/software/iuclid" + }, + { + "slug": "ivona", + "name": "IVONA", + "url": "/v1/software/ivona" + }, + { + "slug": "ivpn", + "name": "IVPN", + "url": "/v1/software/ivpn" + }, + { + "slug": "ivocaloid", + "name": "IVocaloid", + "url": "/v1/software/ivocaloid" + }, + { + "slug": "iyouit", + "name": "IYOUIT", + "url": "/v1/software/iyouit" + }, + { + "slug": "izpack", + "name": "IZPack", + "url": "/v1/software/izpack" + }, + { + "slug": "iccube", + "name": "IcCube", + "url": "/v1/software/iccube" + }, + { + "slug": "icad-universe", + "name": "Icad Universe", + "url": "/v1/software/icad-universe" + }, + { + "slug": "icaros", + "name": "Icaros", + "url": "/v1/software/icaros" + }, + { + "slug": "icebuddha", + "name": "IceBuddha", + "url": "/v1/software/icebuddha" + }, + { + "slug": "icecream-video-editor", + "name": "Icecream Video Editor", + "url": "/v1/software/icecream-video-editor" + }, + { + "slug": "icon-library", + "name": "Icon Library", + "url": "/v1/software/icon-library" + }, + { + "slug": "icy", + "name": "Icy", + "url": "/v1/software/icy" + }, + { + "slug": "idealist", + "name": "IdeaList", + "url": "/v1/software/idealist" + }, + { + "slug": "ideco-ics", + "name": "Ideco ICS", + "url": "/v1/software/ideco-ics" + }, + { + "slug": "ignite", + "name": "Ignite", + "url": "/v1/software/ignite" + }, + { + "slug": "illuststudio", + "name": "IllustStudio", + "url": "/v1/software/illuststudio" + }, + { + "slug": "illyria", + "name": "Illyria", + "url": "/v1/software/illyria" + }, + { + "slug": "imhex", + "name": "ImHex", + "url": "/v1/software/imhex" + }, + { + "slug": "image-alchemy", + "name": "Image Alchemy", + "url": "/v1/software/image-alchemy" + }, + { + "slug": "image-analyzer", + "name": "Image Analyzer", + "url": "/v1/software/image-analyzer" + }, + { + "slug": "image-capture", + "name": "Image Capture", + "url": "/v1/software/image-capture" + }, + { + "slug": "image-lab", + "name": "Image Lab", + "url": "/v1/software/image-lab" + }, + { + "slug": "image-map-tool", + "name": "Image Map Tool", + "url": "/v1/software/image-map-tool" + }, + { + "slug": "image-sxm", + "name": "Image SXM", + "url": "/v1/software/image-sxm" + }, + { + "slug": "image-studio-lite", + "name": "Image Studio Lite", + "url": "/v1/software/image-studio-lite" + }, + { + "slug": "image-zoom", + "name": "Image Zoom", + "url": "/v1/software/image-zoom" + }, + { + "slug": "imagej", + "name": "ImageJ", + "url": "/v1/software/imagej" + }, + { + "slug": "imagemagik", + "name": "ImageMagik", + "url": "/v1/software/imagemagik" + }, + { + "slug": "imagenets", + "name": "ImageNets", + "url": "/v1/software/imagenets" + }, + { + "slug": "imagequant", + "name": "ImageQuant", + "url": "/v1/software/imagequant" + }, + { + "slug": "imagestyler", + "name": "ImageStyler", + "url": "/v1/software/imagestyler" + }, + { + "slug": "imagine", + "name": "Imagine", + "url": "/v1/software/imagine" + }, + { + "slug": "imglib2", + "name": "ImgLib2", + "url": "/v1/software/imglib2" + }, + { + "slug": "imgdeal", + "name": "Imgdeal", + "url": "/v1/software/imgdeal" + }, + { + "slug": "immersivision", + "name": "ImmersiVision", + "url": "/v1/software/immersivision" + }, + { + "slug": "immigrationos", + "name": "ImmigrationOS", + "url": "/v1/software/immigrationos" + }, + { + "slug": "imo-im", + "name": "Imo.im", + "url": "/v1/software/imo-im" + }, + { + "slug": "imonggo", + "name": "Imonggo", + "url": "/v1/software/imonggo" + }, + { + "slug": "impact-q129257323", + "name": "Impact", + "url": "/v1/software/impact-q129257323" + }, + { + "slug": "impact", + "name": "Impact", + "url": "/v1/software/impact" + }, + { + "slug": "imperial-hero", + "name": "Imperial Hero", + "url": "/v1/software/imperial-hero" + }, + { + "slug": "impos-2", + "name": "Impos/2", + "url": "/v1/software/impos-2" + }, + { + "slug": "impress-remote", + "name": "Impress Remote", + "url": "/v1/software/impress-remote" + }, + { + "slug": "impression", + "name": "Impression", + "url": "/v1/software/impression" + }, + { + "slug": "improvise", + "name": "Improvise", + "url": "/v1/software/improvise" + }, + { + "slug": "imputation-and-variance-estimation-software", + "name": "Imputation and Variance Estimation Software", + "url": "/v1/software/imputation-and-variance-estimation-software" + }, + { + "slug": "in-step", + "name": "In-Step", + "url": "/v1/software/in-step" + }, + { + "slug": "incd", + "name": "InCD", + "url": "/v1/software/incd" + }, + { + "slug": "inca3d", + "name": "InCa3D", + "url": "/v1/software/inca3d" + }, + { + "slug": "inmage-dr-scout", + "name": "InMage DR-Scout", + "url": "/v1/software/inmage-dr-scout" + }, + { + "slug": "inpage", + "name": "InPage", + "url": "/v1/software/inpage" + }, + { + "slug": "inph0-topic-explorer", + "name": "InPh0 Topic Explorer", + "url": "/v1/software/inph0-topic-explorer" + }, + { + "slug": "intext", + "name": "InTEXT", + "url": "/v1/software/intext" + }, + { + "slug": "incogni", + "name": "Incogni", + "url": "/v1/software/incogni" + }, + { + "slug": "indexhibit", + "name": "Indexhibit", + "url": "/v1/software/indexhibit" + }, + { + "slug": "indigobench", + "name": "IndigoBench", + "url": "/v1/software/indigobench" + }, + { + "slug": "indrastra-global-open-repository", + "name": "IndraStra Global Open Repository", + "url": "/v1/software/indrastra-global-open-repository" + }, + { + "slug": "infegy", + "name": "Infegy", + "url": "/v1/software/infegy" + }, + { + "slug": "infinidb", + "name": "InfiniDB", + "url": "/v1/software/infinidb" + }, + { + "slug": "infinit", + "name": "Infinit", + "url": "/v1/software/infinit" + }, + { + "slug": "infinite-pixel-battles-playtest", + "name": "Infinite Pixel Battles Playtest", + "url": "/v1/software/infinite-pixel-battles-playtest" + }, + { + "slug": "infinitegraph", + "name": "InfiniteGraph", + "url": "/v1/software/infinitegraph" + }, + { + "slug": "infltr", + "name": "Infltr", + "url": "/v1/software/infltr" + }, + { + "slug": "infoextractor", + "name": "InfoExtractor", + "url": "/v1/software/infoextractor" + }, + { + "slug": "infozoom", + "name": "InfoZoom", + "url": "/v1/software/infozoom" + }, + { + "slug": "informix-wingz", + "name": "Informix Wingz", + "url": "/v1/software/informix-wingz" + }, + { + "slug": "inklingreader", + "name": "Inklingreader", + "url": "/v1/software/inklingreader" + }, + { + "slug": "inkwell", + "name": "Inkwell", + "url": "/v1/software/inkwell" + }, + { + "slug": "inoerp", + "name": "InoERP", + "url": "/v1/software/inoerp" + }, + { + "slug": "input-director", + "name": "Input Director", + "url": "/v1/software/input-director" + }, + { + "slug": "input-output-configuration-program", + "name": "Input/Output Configuration Program", + "url": "/v1/software/input-output-configuration-program" + }, + { + "slug": "inquisitor", + "name": "Inquisitor", + "url": "/v1/software/inquisitor" + }, + { + "slug": "insight", + "name": "Insight", + "url": "/v1/software/insight" + }, + { + "slug": "insightlearn", + "name": "InsightLearn", + "url": "/v1/software/insightlearn" + }, + { + "slug": "inspectit", + "name": "InspectIT", + "url": "/v1/software/inspectit" + }, + { + "slug": "instaresume-pro", + "name": "InstaResume.Pro", + "url": "/v1/software/instaresume-pro" + }, + { + "slug": "installanywhere", + "name": "InstallAnywhere", + "url": "/v1/software/installanywhere" + }, + { + "slug": "installaware", + "name": "InstallAware", + "url": "/v1/software/installaware" + }, + { + "slug": "installer-vise", + "name": "Installer VISE", + "url": "/v1/software/installer-vise" + }, + { + "slug": "installer-app", + "name": "Installer.app", + "url": "/v1/software/installer-app" + }, + { + "slug": "instant-rails", + "name": "Instant Rails", + "url": "/v1/software/instant-rails" + }, + { + "slug": "instant-recall-2-0", + "name": "Instant Recall 2.0", + "url": "/v1/software/instant-recall-2-0" + }, + { + "slug": "instantatlas", + "name": "InstantAtlas", + "url": "/v1/software/instantatlas" + }, + { + "slug": "instanttv", + "name": "InstantTV", + "url": "/v1/software/instanttv" + }, + { + "slug": "instaviz", + "name": "Instaviz", + "url": "/v1/software/instaviz" + }, + { + "slug": "instruments", + "name": "Instruments", + "url": "/v1/software/instruments" + }, + { + "slug": "insure", + "name": "Insure++", + "url": "/v1/software/insure" + }, + { + "slug": "insync", + "name": "Insync", + "url": "/v1/software/insync" + }, + { + "slug": "intelib", + "name": "InteLib", + "url": "/v1/software/intelib" + }, + { + "slug": "integraxor-scada", + "name": "IntegraXor SCADA", + "url": "/v1/software/integraxor-scada" + }, + { + "slug": "integrated-ballistics-identification-system", + "name": "Integrated Ballistics Identification System", + "url": "/v1/software/integrated-ballistics-identification-system" + }, + { + "slug": "integrated-software-for-imagers-and-spectrometers", + "name": "Integrated Software for Imagers and Spectrometers", + "url": "/v1/software/integrated-software-for-imagers-and-spectrometers" + }, + { + "slug": "intel-appup", + "name": "Intel AppUp", + "url": "/v1/software/intel-appup" + }, + { + "slug": "intel-array-visualizer", + "name": "Intel Array Visualizer", + "url": "/v1/software/intel-array-visualizer" + }, + { + "slug": "intel-big-data-analytic-toolkit", + "name": "Intel Big Data Analytic Toolkit", + "url": "/v1/software/intel-big-data-analytic-toolkit" + }, + { + "slug": "intel-bridge-technology", + "name": "Intel Bridge Technology", + "url": "/v1/software/intel-bridge-technology" + }, + { + "slug": "intel-lanspool", + "name": "Intel LANSpool", + "url": "/v1/software/intel-lanspool" + }, + { + "slug": "intel-parallel-advisor", + "name": "Intel Parallel Advisor", + "url": "/v1/software/intel-parallel-advisor" + }, + { + "slug": "intel-parallel-composer", + "name": "Intel Parallel Composer", + "url": "/v1/software/intel-parallel-composer" + }, + { + "slug": "intel-parallel-inspector", + "name": "Intel Parallel Inspector", + "url": "/v1/software/intel-parallel-inspector" + }, + { + "slug": "intel-parallel-studio", + "name": "Intel Parallel Studio", + "url": "/v1/software/intel-parallel-studio" + }, + { + "slug": "intel-xdk", + "name": "Intel XDK", + "url": "/v1/software/intel-xdk" + }, + { + "slug": "intellext-watson", + "name": "Intellext Watson", + "url": "/v1/software/intellext-watson" + }, + { + "slug": "intellipoint", + "name": "IntelliPoint", + "url": "/v1/software/intellipoint" + }, + { + "slug": "intellistudio", + "name": "IntelliStudio", + "url": "/v1/software/intellistudio" + }, + { + "slug": "intellitype", + "name": "IntelliType", + "url": "/v1/software/intellitype" + }, + { + "slug": "intelligent-archive", + "name": "Intelligent Archive", + "url": "/v1/software/intelligent-archive" + }, + { + "slug": "intelligent-speech-analyser", + "name": "Intelligent Speech Analyser", + "url": "/v1/software/intelligent-speech-analyser" + }, + { + "slug": "intellitar", + "name": "Intellitar", + "url": "/v1/software/intellitar" + }, + { + "slug": "intent", + "name": "Intent", + "url": "/v1/software/intent" + }, + { + "slug": "interactual-player", + "name": "InterActual Player", + "url": "/v1/software/interactual-player" + }, + { + "slug": "interbase", + "name": "InterBase", + "url": "/v1/software/interbase" + }, + { + "slug": "interplanetary-wayback", + "name": "InterPlanetary Wayback", + "url": "/v1/software/interplanetary-wayback" + }, + { + "slug": "intervideo-windvr", + "name": "InterVideo WinDVR", + "url": "/v1/software/intervideo-windvr" + }, + { + "slug": "interactive-scenario-builder", + "name": "Interactive Scenario Builder", + "url": "/v1/software/interactive-scenario-builder" + }, + { + "slug": "interactive-tree-of-life", + "name": "Interactive Tree of Life", + "url": "/v1/software/interactive-tree-of-life" + }, + { + "slug": "interarchy", + "name": "Interarchy", + "url": "/v1/software/interarchy" + }, + { + "slug": "interior-designer", + "name": "Interior Designer", + "url": "/v1/software/interior-designer" + }, + { + "slug": "interlnk", + "name": "Interlnk", + "url": "/v1/software/interlnk" + }, + { + "slug": "internet-web-browser", + "name": "Internet (web browser)", + "url": "/v1/software/internet-web-browser" + }, + { + "slug": "internet-connect", + "name": "Internet Connect", + "url": "/v1/software/internet-connect" + }, + { + "slug": "internet-explorer-12", + "name": "Internet Explorer 12", + "url": "/v1/software/internet-explorer-12" + }, + { + "slug": "internet-explorer-platform-preview", + "name": "Internet Explorer Platform Preview", + "url": "/v1/software/internet-explorer-platform-preview" + }, + { + "slug": "internet-intranet-input-method-framework", + "name": "Internet/Intranet Input Method Framework", + "url": "/v1/software/internet-intranet-input-method-framework" + }, + { + "slug": "inthe-am", + "name": "Inthe.AM", + "url": "/v1/software/inthe-am" + }, + { + "slug": "intorel", + "name": "Intorel", + "url": "/v1/software/intorel" + }, + { + "slug": "intrakey-access-time", + "name": "IntraKey ACCESS & TIME", + "url": "/v1/software/intrakey-access-time" + }, + { + "slug": "inventor-labs", + "name": "Inventor Labs", + "url": "/v1/software/inventor-labs" + }, + { + "slug": "inventory-planner-by-sage", + "name": "Inventory Planner by Sage", + "url": "/v1/software/inventory-planner-by-sage" + }, + { + "slug": "inverse", + "name": "Inverse", + "url": "/v1/software/inverse" + }, + { + "slug": "invision-community", + "name": "Invision Community", + "url": "/v1/software/invision-community" + }, + { + "slug": "invoice-ninja", + "name": "Invoice Ninja", + "url": "/v1/software/invoice-ninja" + }, + { + "slug": "invoiceai", + "name": "InvoiceAI", + "url": "/v1/software/invoiceai" + }, + { + "slug": "iotivity", + "name": "IoTivity", + "url": "/v1/software/iotivity" + }, + { + "slug": "iobber", + "name": "Iobber", + "url": "/v1/software/iobber" + }, + { + "slug": "iometer", + "name": "Iometer", + "url": "/v1/software/iometer" + }, + { + "slug": "iotop", + "name": "Iotop", + "url": "/v1/software/iotop" + }, + { + "slug": "iris-browser", + "name": "Iris Browser", + "url": "/v1/software/iris-browser" + }, + { + "slug": "ironcad", + "name": "IronCAD", + "url": "/v1/software/ironcad" + }, + { + "slug": "irredit", + "name": "IrrEdit", + "url": "/v1/software/irredit" + }, + { + "slug": "irusoft", + "name": "IruSoft", + "url": "/v1/software/irusoft" + }, + { + "slug": "isaviz", + "name": "IsaViz", + "url": "/v1/software/isaviz" + }, + { + "slug": "isaac-dynamics", + "name": "Isaac dynamics", + "url": "/v1/software/isaac-dynamics" + }, + { + "slug": "islam-360", + "name": "Islam 360", + "url": "/v1/software/islam-360" + }, + { + "slug": "isobuster", + "name": "IsoBuster", + "url": "/v1/software/isobuster" + }, + { + "slug": "ispcp", + "name": "IspCP", + "url": "/v1/software/ispcp" + }, + { + "slug": "issue-discovery", + "name": "Issue Discovery", + "url": "/v1/software/issue-discovery" + }, + { + "slug": "issuelab", + "name": "IssueLab", + "url": "/v1/software/issuelab" + }, + { + "slug": "issuecrawler", + "name": "Issuecrawler", + "url": "/v1/software/issuecrawler" + }, + { + "slug": "isyvmon", + "name": "Isyvmon", + "url": "/v1/software/isyvmon" + }, + { + "slug": "itecad", + "name": "Itecad", + "url": "/v1/software/itecad" + }, + { + "slug": "itemis-analyze", + "name": "Itemis Analyze", + "url": "/v1/software/itemis-analyze" + }, + { + "slug": "iterative-template-library", + "name": "Iterative Template Library", + "url": "/v1/software/iterative-template-library" + }, + { + "slug": "ixi-software", + "name": "Ixi software", + "url": "/v1/software/ixi-software" + }, + { + "slug": "ixiquarks", + "name": "IxiQuarks", + "url": "/v1/software/ixiquarks" + }, + { + "slug": "j-pilot", + "name": "J-Pilot", + "url": "/v1/software/j-pilot" + }, + { + "slug": "j-xfs", + "name": "J/XFS", + "url": "/v1/software/j-xfs" + }, + { + "slug": "jack-intelligent-agents", + "name": "JACK Intelligent Agents", + "url": "/v1/software/jack-intelligent-agents" + }, + { + "slug": "jad", + "name": "JAD", + "url": "/v1/software/jad" + }, + { + "slug": "jama", + "name": "JAMA", + "url": "/v1/software/jama" + }, + { + "slug": "jamp", + "name": "JAMP", + "url": "/v1/software/jamp" + }, + { + "slug": "jamin", + "name": "JAMin", + "url": "/v1/software/jamin" + }, + { + "slug": "jar", + "name": "JAR", + "url": "/v1/software/jar" + }, + { + "slug": "jarvis", + "name": "JARVIS", + "url": "/v1/software/jarvis" + }, + { + "slug": "jazn", + "name": "JAZN", + "url": "/v1/software/jazn" + }, + { + "slug": "jarchitect", + "name": "JArchitect", + "url": "/v1/software/jarchitect" + }, + { + "slug": "jbidwatcher", + "name": "JBidwatcher", + "url": "/v1/software/jbidwatcher" + }, + { + "slug": "jboss-developer-studio", + "name": "JBoss Developer Studio", + "url": "/v1/software/jboss-developer-studio" + }, + { + "slug": "jboss-tools", + "name": "JBoss Tools", + "url": "/v1/software/jboss-tools" + }, + { + "slug": "jcsp", + "name": "JCSP", + "url": "/v1/software/jcsp" + }, + { + "slug": "jconcorder", + "name": "JConcorder", + "url": "/v1/software/jconcorder" + }, + { + "slug": "jdbc-type-2-driver", + "name": "JDBC Type 2 Driver", + "url": "/v1/software/jdbc-type-2-driver" + }, + { + "slug": "jdbc-driver", + "name": "JDBC driver", + "url": "/v1/software/jdbc-driver" + }, + { + "slug": "jdk-enhancement-proposal", + "name": "JDK Enhancement Proposal", + "url": "/v1/software/jdk-enhancement-proposal" + }, + { + "slug": "jdk-mission-control", + "name": "JDK Mission Control", + "url": "/v1/software/jdk-mission-control" + }, + { + "slug": "jdiff", + "name": "JDiff", + "url": "/v1/software/jdiff" + }, + { + "slug": "jdiskreport", + "name": "JDiskReport", + "url": "/v1/software/jdiskreport" + }, + { + "slug": "jdoodle", + "name": "JDoodle", + "url": "/v1/software/jdoodle" + }, + { + "slug": "jeudemo", + "name": "JEUDEMO", + "url": "/v1/software/jeudemo" + }, + { + "slug": "jeus", + "name": "JEUS", + "url": "/v1/software/jeus" + }, + { + "slug": "jexcel", + "name": "JExcel", + "url": "/v1/software/jexcel" + }, + { + "slug": "jformdesigner", + "name": "JFormDesigner", + "url": "/v1/software/jformdesigner" + }, + { + "slug": "jgir", + "name": "JGIR", + "url": "/v1/software/jgir" + }, + { + "slug": "jgroups", + "name": "JGroups", + "url": "/v1/software/jgroups" + }, + { + "slug": "jhbuild", + "name": "JHBuild", + "url": "/v1/software/jhbuild" + }, + { + "slug": "jhove", + "name": "JHOVE", + "url": "/v1/software/jhove" + }, + { + "slug": "jhymn", + "name": "JHymn", + "url": "/v1/software/jhymn" + }, + { + "slug": "jmag", + "name": "JMAG", + "url": "/v1/software/jmag" + }, + { + "slug": "jme-molecule-editor", + "name": "JME Molecule Editor", + "url": "/v1/software/jme-molecule-editor" + }, + { + "slug": "jmp", + "name": "JMP", + "url": "/v1/software/jmp" + }, + { + "slug": "jnaerator", + "name": "JNAerator", + "url": "/v1/software/jnaerator" + }, + { + "slug": "jox", + "name": "JOX", + "url": "/v1/software/jox" + }, + { + "slug": "jp1", + "name": "JP1", + "url": "/v1/software/jp1" + }, + { + "slug": "jqtouch", + "name": "JQTouch", + "url": "/v1/software/jqtouch" + }, + { + "slug": "jrebel", + "name": "JRebel", + "url": "/v1/software/jrebel" + }, + { + "slug": "jriver-media-center", + "name": "JRiver Media Center", + "url": "/v1/software/jriver-media-center" + }, + { + "slug": "jrockit", + "name": "JRockit", + "url": "/v1/software/jrockit" + }, + { + "slug": "jsan", + "name": "JSAN", + "url": "/v1/software/jsan" + }, + { + "slug": "jsfiddle", + "name": "JSFiddle", + "url": "/v1/software/jsfiddle" + }, + { + "slug": "json-resume", + "name": "JSON Resume", + "url": "/v1/software/json-resume" + }, + { + "slug": "jsr-94", + "name": "JSR 94", + "url": "/v1/software/jsr-94" + }, + { + "slug": "jstor-text-analyzer", + "name": "JSTOR Text Analyzer", + "url": "/v1/software/jstor-text-analyzer" + }, + { + "slug": "jsesh", + "name": "JSesh", + "url": "/v1/software/jsesh" + }, + { + "slug": "jspecview", + "name": "JSpecView", + "url": "/v1/software/jspecview" + }, + { + "slug": "jswipe", + "name": "JSwipe", + "url": "/v1/software/jswipe" + }, + { + "slug": "judo-erp", + "name": "JUDO ERP", + "url": "/v1/software/judo-erp" + }, + { + "slug": "just-pdf", + "name": "JUST PDF", + "url": "/v1/software/just-pdf" + }, + { + "slug": "jwalk", + "name": "JWalk", + "url": "/v1/software/jwalk" + }, + { + "slug": "jaamsim", + "name": "JaamSim", + "url": "/v1/software/jaamsim" + }, + { + "slug": "jabra-direct", + "name": "Jabra Direct", + "url": "/v1/software/jabra-direct" + }, + { + "slug": "jacorb", + "name": "JacORB", + "url": "/v1/software/jacorb" + }, + { + "slug": "jack-q6110904", + "name": "Jack", + "url": "/v1/software/jack-q6110904" + }, + { + "slug": "jack", + "name": "Jack", + "url": "/v1/software/jack" + }, + { + "slug": "jacket", + "name": "Jacket", + "url": "/v1/software/jacket" + }, + { + "slug": "jaeger", + "name": "Jaeger", + "url": "/v1/software/jaeger" + }, + { + "slug": "jailbreakme", + "name": "JailbreakMe", + "url": "/v1/software/jailbreakme" + }, + { + "slug": "jajah", + "name": "Jajah", + "url": "/v1/software/jajah" + }, + { + "slug": "jakarta-batch", + "name": "Jakarta Batch", + "url": "/v1/software/jakarta-batch" + }, + { + "slug": "jakarta-bean-validation", + "name": "Jakarta Bean Validation", + "url": "/v1/software/jakarta-bean-validation" + }, + { + "slug": "jakarta-connectors", + "name": "Jakarta Connectors", + "url": "/v1/software/jakarta-connectors" + }, + { + "slug": "jalview", + "name": "Jalview", + "url": "/v1/software/jalview" + }, + { + "slug": "jam-py", + "name": "Jam.py", + "url": "/v1/software/jam-py" + }, + { + "slug": "jam2jam", + "name": "Jam2jam", + "url": "/v1/software/jam2jam" + }, + { + "slug": "jamkazam", + "name": "JamKazam", + "url": "/v1/software/jamkazam" + }, + { + "slug": "jamaicavm", + "name": "JamaicaVM", + "url": "/v1/software/jamaicavm" + }, + { + "slug": "jamovi", + "name": "Jamovi", + "url": "/v1/software/jamovi" + }, + { + "slug": "jamstix", + "name": "Jamstix", + "url": "/v1/software/jamstix" + }, + { + "slug": "jamulus", + "name": "Jamulus", + "url": "/v1/software/jamulus" + }, + { + "slug": "jane", + "name": "Jane", + "url": "/v1/software/jane" + }, + { + "slug": "janggi-dosa", + "name": "Janggi Dosa", + "url": "/v1/software/janggi-dosa" + }, + { + "slug": "janitor", + "name": "Janitor", + "url": "/v1/software/janitor" + }, + { + "slug": "janium", + "name": "Janium", + "url": "/v1/software/janium" + }, + { + "slug": "janus-recognition-toolkit-jrtk", + "name": "Janus Recognition Toolkit (JRTk)", + "url": "/v1/software/janus-recognition-toolkit-jrtk" + }, + { + "slug": "jaos", + "name": "Jaos", + "url": "/v1/software/jaos" + }, + { + "slug": "jarnal", + "name": "Jarnal", + "url": "/v1/software/jarnal" + }, + { + "slug": "jart", + "name": "Jart", + "url": "/v1/software/jart" + }, + { + "slug": "jasper", + "name": "JasPer", + "url": "/v1/software/jasper" + }, + { + "slug": "java", + "name": "Java", + "url": "/v1/software/java" + }, + { + "slug": "java-3d", + "name": "Java 3D", + "url": "/v1/software/java-3d" + }, + { + "slug": "java-access-bridge", + "name": "Java Access Bridge", + "url": "/v1/software/java-access-bridge" + }, + { + "slug": "java-advanced-imaging", + "name": "Java Advanced Imaging", + "url": "/v1/software/java-advanced-imaging" + }, + { + "slug": "java-agent-template", + "name": "Java Agent Template", + "url": "/v1/software/java-agent-template" + }, + { + "slug": "java-ascii-versatile-editor", + "name": "Java Ascii Versatile Editor", + "url": "/v1/software/java-ascii-versatile-editor" + }, + { + "slug": "java-astrodynamics-toolkit", + "name": "Java Astrodynamics Toolkit", + "url": "/v1/software/java-astrodynamics-toolkit" + }, + { + "slug": "java-database-connectivity", + "name": "Java Database Connectivity", + "url": "/v1/software/java-database-connectivity" + }, + { + "slug": "java-dynamic-management-kit", + "name": "Java Dynamic Management Kit", + "url": "/v1/software/java-dynamic-management-kit" + }, + { + "slug": "java-ee-module-configuration-editors", + "name": "Java EE Module Configuration Editors", + "url": "/v1/software/java-ee-module-configuration-editors" + }, + { + "slug": "java-emitter-templates-jet2", + "name": "Java Emitter Templates (JET2)", + "url": "/v1/software/java-emitter-templates-jet2" + }, + { + "slug": "java-jwt", + "name": "Java JWT", + "url": "/v1/software/java-jwt" + }, + { + "slug": "java-model-railroad-interface", + "name": "Java Model Railroad Interface", + "url": "/v1/software/java-model-railroad-interface" + }, + { + "slug": "java-pathfinder", + "name": "Java Pathfinder", + "url": "/v1/software/java-pathfinder" + }, + { + "slug": "java-persistent-objects", + "name": "Java Persistent Objects", + "url": "/v1/software/java-persistent-objects" + }, + { + "slug": "java-virtual-machine-tools-interface", + "name": "Java Virtual Machine Tools Interface", + "url": "/v1/software/java-virtual-machine-tools-interface" + }, + { + "slug": "java-applet", + "name": "Java applet", + "url": "/v1/software/java-applet" + }, + { + "slug": "java-optimized-processor", + "name": "Java optimized processor", + "url": "/v1/software/java-optimized-processor" + }, + { + "slug": "java-getopt", + "name": "Java-getopt", + "url": "/v1/software/java-getopt" + }, + { + "slug": "javabeans", + "name": "JavaBeans", + "url": "/v1/software/javabeans" + }, + { + "slug": "javahelp", + "name": "JavaHelp", + "url": "/v1/software/javahelp" + }, + { + "slug": "javascriptmvc", + "name": "JavaScriptMVC", + "url": "/v1/software/javascriptmvc" + }, + { + "slug": "javelin-pdf-reader", + "name": "Javelin PDF Reader", + "url": "/v1/software/javelin-pdf-reader" + }, + { + "slug": "jcrom", + "name": "Jcrom", + "url": "/v1/software/jcrom" + }, + { + "slug": "jeroo", + "name": "Jeroo", + "url": "/v1/software/jeroo" + }, + { + "slug": "jeskola-buzz", + "name": "Jeskola Buzz", + "url": "/v1/software/jeskola-buzz" + }, + { + "slug": "jesperai", + "name": "JesperAI", + "url": "/v1/software/jesperai" + }, + { + "slug": "jet-data-access-objects", + "name": "Jet Data Access Objects", + "url": "/v1/software/jet-data-access-objects" + }, + { + "slug": "jetforge", + "name": "JetForge", + "url": "/v1/software/jetforge" + }, + { + "slug": "jetico-personal-firewall", + "name": "Jetico Personal Firewall", + "url": "/v1/software/jetico-personal-firewall" + }, + { + "slug": "jetty-servlet-engine-and-http-server", + "name": "Jetty - Servlet Engine and Http Server", + "url": "/v1/software/jetty-servlet-engine-and-http-server" + }, + { + "slug": "jibx", + "name": "JiBX", + "url": "/v1/software/jibx" + }, + { + "slug": "jiffydos", + "name": "JiffyDOS", + "url": "/v1/software/jiffydos" + }, + { + "slug": "jigdo", + "name": "Jigdo", + "url": "/v1/software/jigdo" + }, + { + "slug": "jigsaw-q126085053", + "name": "Jigsaw", + "url": "/v1/software/jigsaw-q126085053" + }, + { + "slug": "jigsaw", + "name": "Jigsaw", + "url": "/v1/software/jigsaw" + }, + { + "slug": "jing", + "name": "Jing", + "url": "/v1/software/jing" + }, + { + "slug": "jini", + "name": "Jini", + "url": "/v1/software/jini" + }, + { + "slug": "jinitiator", + "name": "Jinitiator", + "url": "/v1/software/jinitiator" + }, + { + "slug": "job-entry-subsystem-1", + "name": "Job Entry Subsystem 1", + "url": "/v1/software/job-entry-subsystem-1" + }, + { + "slug": "jobrunr", + "name": "JobRunr", + "url": "/v1/software/jobrunr" + }, + { + "slug": "jogre", + "name": "Jogre", + "url": "/v1/software/jogre" + }, + { + "slug": "johnny-castaway", + "name": "Johnny Castaway", + "url": "/v1/software/johnny-castaway" + }, + { + "slug": "joint-automated-deep-operations-coordination-system", + "name": "Joint Automated Deep Operations Coordination System", + "url": "/v1/software/joint-automated-deep-operations-coordination-system" + }, + { + "slug": "joint-chiefs", + "name": "Joint Chiefs", + "url": "/v1/software/joint-chiefs" + }, + { + "slug": "joint-theater-level-simulation", + "name": "Joint Theater Level Simulation", + "url": "/v1/software/joint-theater-level-simulation" + }, + { + "slug": "jointly-administered-knowledge-environment", + "name": "Jointly Administered Knowledge Environment", + "url": "/v1/software/jointly-administered-knowledge-environment" + }, + { + "slug": "joost", + "name": "Joost", + "url": "/v1/software/joost" + }, + { + "slug": "josh", + "name": "Josh", + "url": "/v1/software/josh" + }, + { + "slug": "jotterpad", + "name": "JotterPad", + "url": "/v1/software/jotterpad" + }, + { + "slug": "joy2key", + "name": "Joy2Key", + "url": "/v1/software/joy2key" + }, + { + "slug": "jpgraph", + "name": "JpGraph", + "url": "/v1/software/jpgraph" + }, + { + "slug": "jpred", + "name": "Jpred", + "url": "/v1/software/jpred" + }, + { + "slug": "jsphp", + "name": "JsPHP", + "url": "/v1/software/jsphp" + }, + { + "slug": "jscrambler", + "name": "Jscrambler", + "url": "/v1/software/jscrambler" + }, + { + "slug": "juglow", + "name": "JuGloW", + "url": "/v1/software/juglow" + }, + { + "slug": "jubster", + "name": "Jubster", + "url": "/v1/software/jubster" + }, + { + "slug": "jughead", + "name": "Jughead", + "url": "/v1/software/jughead" + }, + { + "slug": "juice", + "name": "Juice", + "url": "/v1/software/juice" + }, + { + "slug": "jumpchart", + "name": "Jumpchart", + "url": "/v1/software/jumpchart" + }, + { + "slug": "jumpshare", + "name": "Jumpshare", + "url": "/v1/software/jumpshare" + }, + { + "slug": "junaio", + "name": "Junaio", + "url": "/v1/software/junaio" + }, + { + "slug": "jungle-disk", + "name": "Jungle Disk", + "url": "/v1/software/jungle-disk" + }, + { + "slug": "juno", + "name": "Juno", + "url": "/v1/software/juno" + }, + { + "slug": "jupyter-notebooks-lc-for-robots-data-exploration", + "name": "Jupyter Notebooks LC for robots data exploration", + "url": "/v1/software/jupyter-notebooks-lc-for-robots-data-exploration" + }, + { + "slug": "jupyter-notebooks-at-national-library-of-estonia", + "name": "Jupyter Notebooks at National Library of Estonia", + "url": "/v1/software/jupyter-notebooks-at-national-library-of-estonia" + }, + { + "slug": "jupyter-notebooks-using-the-british-library-s-digital-collections-and-data", + "name": "Jupyter Notebooks using the British Library’s Digital Collections and Data", + "url": "/v1/software/jupyter-notebooks-using-the-british-library-s-digital-collections-and-data" + }, + { + "slug": "jupyter-notebooks-to-access-e-periodica", + "name": "Jupyter notebooks to access e-periodica", + "url": "/v1/software/jupyter-notebooks-to-access-e-periodica" + }, + { + "slug": "jupyter-notebooks-to-access-e-rara", + "name": "Jupyter notebooks to access e-rara", + "url": "/v1/software/jupyter-notebooks-to-access-e-rara" + }, + { + "slug": "jupyterhub", + "name": "JupyterHub", + "url": "/v1/software/jupyterhub" + }, + { + "slug": "justcrm", + "name": "JustCRM", + "url": "/v1/software/justcrm" + }, + { + "slug": "justinmind", + "name": "Justinmind", + "url": "/v1/software/justinmind" + }, + { + "slug": "juxta", + "name": "Juxta", + "url": "/v1/software/juxta" + }, + { + "slug": "juxta-commons", + "name": "Juxta Commons", + "url": "/v1/software/juxta-commons" + }, + { + "slug": "juxtaeditions-humedit", + "name": "JuxtaEditions (HumEdit)", + "url": "/v1/software/juxtaeditions-humedit" + }, + { + "slug": "juxtaposejs", + "name": "JuxtaposeJS", + "url": "/v1/software/juxtaposejs" + }, + { + "slug": "jw-cad", + "name": "Jw_cad", + "url": "/v1/software/jw-cad" + }, + { + "slug": "k-virtual-machine", + "name": "K virtual machine", + "url": "/v1/software/k-virtual-machine" + }, + { + "slug": "k-box", + "name": "K-box", + "url": "/v1/software/k-box" + }, + { + "slug": "k6", + "name": "K6", + "url": "/v1/software/k6" + }, + { + "slug": "k7-total-security", + "name": "K7 Total Security", + "url": "/v1/software/k7-total-security" + }, + { + "slug": "kant", + "name": "KANT", + "url": "/v1/software/kant" + }, + { + "slug": "kdiskfree", + "name": "KDiskFree", + "url": "/v1/software/kdiskfree" + }, + { + "slug": "kdocker", + "name": "KDocker", + "url": "/v1/software/kdocker" + }, + { + "slug": "kflow", + "name": "KFlow", + "url": "/v1/software/kflow" + }, + { + "slug": "kh-coder", + "name": "KH Coder", + "url": "/v1/software/kh-coder" + }, + { + "slug": "kiva", + "name": "KIVA", + "url": "/v1/software/kiva" + }, + { + "slug": "kiwi", + "name": "KIWI", + "url": "/v1/software/kiwi" + }, + { + "slug": "klic-key-letter-in-context", + "name": "KLIC (Key Letter in Context)", + "url": "/v1/software/klic-key-letter-in-context" + }, + { + "slug": "klx-esm", + "name": "KLX ESM", + "url": "/v1/software/klx-esm" + }, + { + "slug": "klatin", + "name": "KLatin", + "url": "/v1/software/klatin" + }, + { + "slug": "kora", + "name": "KORA", + "url": "/v1/software/kora" + }, + { + "slug": "kplayer", + "name": "KPlayer", + "url": "/v1/software/kplayer" + }, + { + "slug": "ksef-guard", + "name": "KSeF Guard", + "url": "/v1/software/ksef-guard" + }, + { + "slug": "ktts", + "name": "KTTS", + "url": "/v1/software/ktts" + }, + { + "slug": "kurt", + "name": "KURT", + "url": "/v1/software/kurt" + }, + { + "slug": "kwic", + "name": "KWIC", + "url": "/v1/software/kwic" + }, + { + "slug": "kxen-inc", + "name": "KXEN Inc.", + "url": "/v1/software/kxen-inc" + }, + { + "slug": "kaal", + "name": "Kaal", + "url": "/v1/software/kaal" + }, + { + "slug": "kahootz", + "name": "Kahootz", + "url": "/v1/software/kahootz" + }, + { + "slug": "kakao-t", + "name": "Kakao T", + "url": "/v1/software/kakao-t" + }, + { + "slug": "kakao-tv", + "name": "Kakao TV", + "url": "/v1/software/kakao-tv" + }, + { + "slug": "kakaogroup", + "name": "KakaoGroup", + "url": "/v1/software/kakaogroup" + }, + { + "slug": "kakaopay", + "name": "KakaoPay", + "url": "/v1/software/kakaopay" + }, + { + "slug": "kakaostyle", + "name": "KakaoStyle", + "url": "/v1/software/kakaostyle" + }, + { + "slug": "kalaban", + "name": "Kalaban", + "url": "/v1/software/kalaban" + }, + { + "slug": "kaleidica", + "name": "Kaleidica", + "url": "/v1/software/kaleidica" + }, + { + "slug": "kaleidoscope", + "name": "Kaleidoscope", + "url": "/v1/software/kaleidoscope" + }, + { + "slug": "kali", + "name": "Kali", + "url": "/v1/software/kali" + }, + { + "slug": "kamas", + "name": "Kamas", + "url": "/v1/software/kamas" + }, + { + "slug": "kameleon-fireex-kfx", + "name": "Kameleon FireEx KFX", + "url": "/v1/software/kameleon-fireex-kfx" + }, + { + "slug": "kamergotchi", + "name": "KamerGotchi", + "url": "/v1/software/kamergotchi" + }, + { + "slug": "kamus", + "name": "Kamus", + "url": "/v1/software/kamus" + }, + { + "slug": "kanban-tool", + "name": "Kanban Tool", + "url": "/v1/software/kanban-tool" + }, + { + "slug": "kanboard", + "name": "Kanboard", + "url": "/v1/software/kanboard" + }, + { + "slug": "kandinsky-music-painter", + "name": "Kandinsky Music Painter", + "url": "/v1/software/kandinsky-music-painter" + }, + { + "slug": "kanji-data-box", + "name": "Kanji Data Box", + "url": "/v1/software/kanji-data-box" + }, + { + "slug": "kantei-san", + "name": "Kantei-san", + "url": "/v1/software/kantei-san" + }, + { + "slug": "kar2ouche", + "name": "Kar2ouche", + "url": "/v1/software/kar2ouche" + }, + { + "slug": "karafun", + "name": "KaraFun", + "url": "/v1/software/karafun" + }, + { + "slug": "karabo", + "name": "Karabo", + "url": "/v1/software/karabo" + }, + { + "slug": "karelia-watson", + "name": "Karelia Watson", + "url": "/v1/software/karelia-watson" + }, + { + "slug": "karesansui", + "name": "Karesansui", + "url": "/v1/software/karesansui" + }, + { + "slug": "karta-gps", + "name": "Karta GPS", + "url": "/v1/software/karta-gps" + }, + { + "slug": "kartograph", + "name": "Kartograph", + "url": "/v1/software/kartograph" + }, + { + "slug": "kasane-teto", + "name": "Kasane Teto", + "url": "/v1/software/kasane-teto" + }, + { + "slug": "kaspersky-mobile-security", + "name": "Kaspersky Mobile Security", + "url": "/v1/software/kaspersky-mobile-security" + }, + { + "slug": "katalon-studio", + "name": "Katalon Studio", + "url": "/v1/software/katalon-studio" + }, + { + "slug": "kazaa-lite", + "name": "Kazaa Lite", + "url": "/v1/software/kazaa-lite" + }, + { + "slug": "kdewebdev", + "name": "Kdewebdev", + "url": "/v1/software/kdewebdev" + }, + { + "slug": "keel", + "name": "Keel", + "url": "/v1/software/keel" + }, + { + "slug": "keepsolid-vpn-unlimited", + "name": "KeepSolid VPN Unlimited", + "url": "/v1/software/keepsolid-vpn-unlimited" + }, + { + "slug": "keepvault", + "name": "KeepVault", + "url": "/v1/software/keepvault" + }, + { + "slug": "keka", + "name": "Keka", + "url": "/v1/software/keka" + }, + { + "slug": "kekul-program", + "name": "Kekulé Program", + "url": "/v1/software/kekul-program" + }, + { + "slug": "kelkoo", + "name": "Kelkoo", + "url": "/v1/software/kelkoo" + }, + { + "slug": "keobat", + "name": "KeoBat", + "url": "/v1/software/keobat" + }, + { + "slug": "kepler-scientific-workflow-system", + "name": "Kepler scientific workflow system", + "url": "/v1/software/kepler-scientific-workflow-system" + }, + { + "slug": "keploy", + "name": "Keploy", + "url": "/v1/software/keploy" + }, + { + "slug": "keras", + "name": "Keras", + "url": "/v1/software/keras" + }, + { + "slug": "kerio-connect", + "name": "Kerio Connect", + "url": "/v1/software/kerio-connect" + }, + { + "slug": "kernel-marker", + "name": "Kernel marker", + "url": "/v1/software/kernel-marker" + }, + { + "slug": "kernel-relocation", + "name": "Kernel relocation", + "url": "/v1/software/kernel-relocation" + }, + { + "slug": "kernelcad", + "name": "KernelCAD", + "url": "/v1/software/kernelcad" + }, + { + "slug": "kernelex", + "name": "KernelEx", + "url": "/v1/software/kernelex" + }, + { + "slug": "kestra", + "name": "Kestra", + "url": "/v1/software/kestra" + }, + { + "slug": "kevoree", + "name": "Kevoree", + "url": "/v1/software/kevoree" + }, + { + "slug": "keycreator", + "name": "KeyCreator", + "url": "/v1/software/keycreator" + }, + { + "slug": "keyholetv", + "name": "KeyHoleTV", + "url": "/v1/software/keyholetv" + }, + { + "slug": "keyrocket", + "name": "KeyRocket", + "url": "/v1/software/keyrocket" + }, + { + "slug": "keyboard-maestro", + "name": "Keyboard Maestro", + "url": "/v1/software/keyboard-maestro" + }, + { + "slug": "keyboard-ninja", + "name": "Keyboard Ninja", + "url": "/v1/software/keyboard-ninja" + }, + { + "slug": "keychain", + "name": "Keychain", + "url": "/v1/software/keychain" + }, + { + "slug": "keyhole", + "name": "Keyhole", + "url": "/v1/software/keyhole" + }, + { + "slug": "keylight", + "name": "Keylight", + "url": "/v1/software/keylight" + }, + { + "slug": "keymagic", + "name": "Keymagic", + "url": "/v1/software/keymagic" + }, + { + "slug": "keyman", + "name": "Keyman", + "url": "/v1/software/keyman" + }, + { + "slug": "khimera", + "name": "Khimera", + "url": "/v1/software/khimera" + }, + { + "slug": "kisao", + "name": "KiSAO", + "url": "/v1/software/kisao" + }, + { + "slug": "kia-uvo", + "name": "Kia Uvo", + "url": "/v1/software/kia-uvo" + }, + { + "slug": "kickidler", + "name": "Kickidler", + "url": "/v1/software/kickidler" + }, + { + "slug": "kiddesk", + "name": "KidDesk", + "url": "/v1/software/kiddesk" + }, + { + "slug": "kidguard", + "name": "KidGuard", + "url": "/v1/software/kidguard" + }, + { + "slug": "kimble", + "name": "Kimble", + "url": "/v1/software/kimble" + }, + { + "slug": "kindhoa", + "name": "KindHOA", + "url": "/v1/software/kindhoa" + }, + { + "slug": "kindwords", + "name": "KindWords", + "url": "/v1/software/kindwords" + }, + { + "slug": "kinect", + "name": "Kinect", + "url": "/v1/software/kinect" + }, + { + "slug": "kinemage", + "name": "Kinemage", + "url": "/v1/software/kinemage" + }, + { + "slug": "kingsoft-cloud", + "name": "Kingsoft Cloud", + "url": "/v1/software/kingsoft-cloud" + }, + { + "slug": "kintone", + "name": "Kintone", + "url": "/v1/software/kintone" + }, + { + "slug": "kismac", + "name": "KisMAC", + "url": "/v1/software/kismac" + }, + { + "slug": "kisekae-set-system", + "name": "Kisekae Set System", + "url": "/v1/software/kisekae-set-system" + }, + { + "slug": "kissable", + "name": "Kissable", + "url": "/v1/software/kissable" + }, + { + "slug": "kissmetrics", + "name": "Kissmetrics", + "url": "/v1/software/kissmetrics" + }, + { + "slug": "kitap-radiosi", + "name": "Kitap radiosi", + "url": "/v1/software/kitap-radiosi" + }, + { + "slug": "kith-and-kin-pro", + "name": "Kith and Kin Pro", + "url": "/v1/software/kith-and-kin-pro" + }, + { + "slug": "kittl", + "name": "Kittl", + "url": "/v1/software/kittl" + }, + { + "slug": "kitura", + "name": "Kitura", + "url": "/v1/software/kitura" + }, + { + "slug": "kleo-bare-metal-backup", + "name": "Kleo Bare Metal Backup", + "url": "/v1/software/kleo-bare-metal-backup" + }, + { + "slug": "klik", + "name": "Klik", + "url": "/v1/software/klik" + }, + { + "slug": "kling-ai", + "name": "Kling AI", + "url": "/v1/software/kling-ai" + }, + { + "slug": "klipper", + "name": "Klipper", + "url": "/v1/software/klipper" + }, + { + "slug": "kloxo-mr", + "name": "Kloxo-MR", + "url": "/v1/software/kloxo-mr" + }, + { + "slug": "knockin", + "name": "Knockin", + "url": "/v1/software/knockin" + }, + { + "slug": "knopflerfish", + "name": "Knopflerfish", + "url": "/v1/software/knopflerfish" + }, + { + "slug": "knotplot", + "name": "KnotPlot", + "url": "/v1/software/knotplot" + }, + { + "slug": "knowmint", + "name": "KnowMint", + "url": "/v1/software/knowmint" + }, + { + "slug": "knowledge-engineering-environment", + "name": "Knowledge Engineering Environment", + "url": "/v1/software/knowledge-engineering-environment" + }, + { + "slug": "knowledge-forum", + "name": "Knowledge Forum", + "url": "/v1/software/knowledge-forum" + }, + { + "slug": "knowledgebase", + "name": "KnowledgeBase", + "url": "/v1/software/knowledgebase" + }, + { + "slug": "knowledgeman", + "name": "KnowledgeMan", + "url": "/v1/software/knowledgeman" + }, + { + "slug": "knowmax", + "name": "Knowmax", + "url": "/v1/software/knowmax" + }, + { + "slug": "kobable", + "name": "Kobable", + "url": "/v1/software/kobable" + }, + { + "slug": "kodak-picture-kiosk", + "name": "Kodak Picture Kiosk", + "url": "/v1/software/kodak-picture-kiosk" + }, + { + "slug": "kodeks", + "name": "Kodeks", + "url": "/v1/software/kodeks" + }, + { + "slug": "koka", + "name": "Koka", + "url": "/v1/software/koka" + }, + { + "slug": "kokkoskernels", + "name": "KokkosKernels", + "url": "/v1/software/kokkoskernels" + }, + { + "slug": "kokone", + "name": "Kokone", + "url": "/v1/software/kokone" + }, + { + "slug": "kommandcore", + "name": "Kommandcore", + "url": "/v1/software/kommandcore" + }, + { + "slug": "kompozy", + "name": "Kompozy", + "url": "/v1/software/kompozy" + }, + { + "slug": "kontext", + "name": "KonText", + "url": "/v1/software/kontext" + }, + { + "slug": "konnekt", + "name": "Konnekt", + "url": "/v1/software/konnekt" + }, + { + "slug": "kontakt", + "name": "Kontakt", + "url": "/v1/software/kontakt" + }, + { + "slug": "konvertor", + "name": "Konvertor", + "url": "/v1/software/konvertor" + }, + { + "slug": "kopern", + "name": "Kopern", + "url": "/v1/software/kopern" + }, + { + "slug": "korg-gadget", + "name": "Korg Gadget", + "url": "/v1/software/korg-gadget" + }, + { + "slug": "korsakow", + "name": "Korsakow", + "url": "/v1/software/korsakow" + }, + { + "slug": "koubei", + "name": "Koubei", + "url": "/v1/software/koubei" + }, + { + "slug": "krakend", + "name": "KrakenD", + "url": "/v1/software/krakend" + }, + { + "slug": "kramerius", + "name": "Kramerius", + "url": "/v1/software/kramerius" + }, + { + "slug": "kreol", + "name": "Kreol", + "url": "/v1/software/kreol" + }, + { + "slug": "krisp", + "name": "Krisp", + "url": "/v1/software/krisp" + }, + { + "slug": "kryoflux", + "name": "KryoFlux", + "url": "/v1/software/kryoflux" + }, + { + "slug": "kugou", + "name": "KuGou", + "url": "/v1/software/kugou" + }, + { + "slug": "kumir", + "name": "KuMir", + "url": "/v1/software/kumir" + }, + { + "slug": "kuaidi-dache", + "name": "Kuaidi Dache", + "url": "/v1/software/kuaidi-dache" + }, + { + "slug": "kuake", + "name": "Kuake", + "url": "/v1/software/kuake" + }, + { + "slug": "kualitee", + "name": "Kualitee", + "url": "/v1/software/kualitee" + }, + { + "slug": "kudzu", + "name": "Kudzu", + "url": "/v1/software/kudzu" + }, + { + "slug": "kuniao-browser", + "name": "Kuniao Browser", + "url": "/v1/software/kuniao-browser" + }, + { + "slug": "kunnus", + "name": "Kunnus", + "url": "/v1/software/kunnus" + }, + { + "slug": "kurnik", + "name": "Kurnik", + "url": "/v1/software/kurnik" + }, + { + "slug": "kustomer", + "name": "Kustomer", + "url": "/v1/software/kustomer" + }, + { + "slug": "kustomize", + "name": "Kustomize", + "url": "/v1/software/kustomize" + }, + { + "slug": "kviskr", + "name": "Kviskr", + "url": "/v1/software/kviskr" + }, + { + "slug": "kwmap", + "name": "KwMap", + "url": "/v1/software/kwmap" + }, + { + "slug": "kwalitan", + "name": "Kwalitan", + "url": "/v1/software/kwalitan" + }, + { + "slug": "kyoto-common-lisp", + "name": "Kyoto Common Lisp", + "url": "/v1/software/kyoto-common-lisp" + }, + { + "slug": "kyvos", + "name": "Kyvos", + "url": "/v1/software/kyvos" + }, + { + "slug": "l2j", + "name": "L2J", + "url": "/v1/software/l2j" + }, + { + "slug": "l3enc", + "name": "L3enc", + "url": "/v1/software/l3enc" + }, + { + "slug": "l4-microkernel-family", + "name": "L4 microkernel family", + "url": "/v1/software/l4-microkernel-family" + }, + { + "slug": "landr", + "name": "LANDR", + "url": "/v1/software/landr" + }, + { + "slug": "larex", + "name": "LAREX", + "url": "/v1/software/larex" + }, + { + "slug": "lattice", + "name": "LATtice", + "url": "/v1/software/lattice" + }, + { + "slug": "lbry", + "name": "LBRY", + "url": "/v1/software/lbry" + }, + { + "slug": "lc-newspaper-viewer", + "name": "LC Newspaper Viewer", + "url": "/v1/software/lc-newspaper-viewer" + }, + { + "slug": "lcdproc", + "name": "LCDproc", + "url": "/v1/software/lcdproc" + }, + { + "slug": "ldraw", + "name": "LDraw", + "url": "/v1/software/ldraw" + }, + { + "slug": "lego-mindstorms-ev3", + "name": "LEGO Mindstorms EV3", + "url": "/v1/software/lego-mindstorms-ev3" + }, + { + "slug": "lemma", + "name": "LEMMA", + "url": "/v1/software/lemma" + }, + { + "slug": "leon", + "name": "LEON", + "url": "/v1/software/leon" + }, + { + "slug": "lft", + "name": "LFT", + "url": "/v1/software/lft" + }, + { + "slug": "lgte", + "name": "LGTE", + "url": "/v1/software/lgte" + }, + { + "slug": "lhasa-q125523061", + "name": "LHASA", + "url": "/v1/software/lhasa-q125523061" + }, + { + "slug": "lhc-home", + "name": "LHC@home", + "url": "/v1/software/lhc-home" + }, + { + "slug": "libox", + "name": "LIBOX", + "url": "/v1/software/libox" + }, + { + "slug": "lidort", + "name": "LIDORT", + "url": "/v1/software/lidort" + }, + { + "slug": "lifer-ladder", + "name": "LIFER/LADDER", + "url": "/v1/software/lifer-ladder" + }, + { + "slug": "ligplot", + "name": "LIGPLOT", + "url": "/v1/software/ligplot" + }, + { + "slug": "limdep", + "name": "LIMDEP", + "url": "/v1/software/limdep" + }, + { + "slug": "lindo", + "name": "LINDO", + "url": "/v1/software/lindo" + }, + { + "slug": "line-live", + "name": "LINE LIVE", + "url": "/v1/software/line-live" + }, + { + "slug": "line-messaging-api", + "name": "LINE Messaging API", + "url": "/v1/software/line-messaging-api" + }, + { + "slug": "linpack-benchmarks", + "name": "LINPACK benchmarks", + "url": "/v1/software/linpack-benchmarks" + }, + { + "slug": "linqpad", + "name": "LINQPad", + "url": "/v1/software/linqpad" + }, + { + "slug": "linsig", + "name": "LINSIG", + "url": "/v1/software/linsig" + }, + { + "slug": "lionsolver", + "name": "LIONsolver", + "url": "/v1/software/lionsolver" + }, + { + "slug": "lisa", + "name": "LISA+", + "url": "/v1/software/lisa" + }, + { + "slug": "lise", + "name": "LISE++", + "url": "/v1/software/lise" + }, + { + "slug": "lisrel", + "name": "LISREL", + "url": "/v1/software/lisrel" + }, + { + "slug": "listserv", + "name": "LISTSERV", + "url": "/v1/software/listserv" + }, + { + "slug": "livac-synchronous-corpus", + "name": "LIVAC Synchronous Corpus", + "url": "/v1/software/livac-synchronous-corpus" + }, + { + "slug": "llama-q118120085", + "name": "LLAMA", + "url": "/v1/software/llama-q118120085" + }, + { + "slug": "llama", + "name": "LLaMA", + "url": "/v1/software/llama" + }, + { + "slug": "lm-x-license-manager", + "name": "LM-X License Manager", + "url": "/v1/software/lm-x-license-manager" + }, + { + "slug": "lola", + "name": "LOLA", + "url": "/v1/software/lola" + }, + { + "slug": "loni-pipeline", + "name": "LONI Pipeline", + "url": "/v1/software/loni-pipeline" + }, + { + "slug": "lstu", + "name": "LSTU", + "url": "/v1/software/lstu" + }, + { + "slug": "lte440", + "name": "LTE440", + "url": "/v1/software/lte440" + }, + { + "slug": "ltools", + "name": "LTOOLS", + "url": "/v1/software/ltools" + }, + { + "slug": "ltx-studio", + "name": "LTX Studio", + "url": "/v1/software/ltx-studio" + }, + { + "slug": "ltx-2", + "name": "LTX-2", + "url": "/v1/software/ltx-2" + }, + { + "slug": "luma", + "name": "LUMA", + "url": "/v1/software/luma" + }, + { + "slug": "lusas", + "name": "LUSAS", + "url": "/v1/software/lusas" + }, + { + "slug": "lxbeams", + "name": "LXBeams", + "url": "/v1/software/lxbeams" + }, + { + "slug": "lxmf", + "name": "LXMF", + "url": "/v1/software/lxmf" + }, + { + "slug": "lynx-mosa-ic", + "name": "LYNX MOSA.ic", + "url": "/v1/software/lynx-mosa-ic" + }, + { + "slug": "lzf", + "name": "LZF", + "url": "/v1/software/lzf" + }, + { + "slug": "la-vortaro", + "name": "La Vortaro", + "url": "/v1/software/la-vortaro" + }, + { + "slug": "labse", + "name": "LaBSE", + "url": "/v1/software/labse" + }, + { + "slug": "lacros", + "name": "LaCrOs", + "url": "/v1/software/lacros" + }, + { + "slug": "lalavoice", + "name": "LaLaVoice", + "url": "/v1/software/lalavoice" + }, + { + "slug": "latex2rtf", + "name": "LaTeX2RTF", + "url": "/v1/software/latex2rtf" + }, + { + "slug": "lab-measurement", + "name": "Lab-Measurement", + "url": "/v1/software/lab-measurement" + }, + { + "slug": "labwindows-cvi", + "name": "LabWindows/CVI", + "url": "/v1/software/labwindows-cvi" + }, + { + "slug": "labelflash", + "name": "Labelflash", + "url": "/v1/software/labelflash" + }, + { + "slug": "laboratory-unit-for-computer-assisted-surgery", + "name": "Laboratory Unit for Computer Assisted Surgery", + "url": "/v1/software/laboratory-unit-for-computer-assisted-surgery" + }, + { + "slug": "labyrinth", + "name": "Labyrinth", + "url": "/v1/software/labyrinth" + }, + { + "slug": "lackeyccg", + "name": "LackeyCCG", + "url": "/v1/software/lackeyccg" + }, + { + "slug": "lakefs", + "name": "LakeFS", + "url": "/v1/software/lakefs" + }, + { + "slug": "lanschool", + "name": "LanSchool", + "url": "/v1/software/lanschool" + }, + { + "slug": "landview", + "name": "LandView", + "url": "/v1/software/landview" + }, + { + "slug": "landscape", + "name": "Landscape", + "url": "/v1/software/landscape" + }, + { + "slug": "langchain", + "name": "LangChain", + "url": "/v1/software/langchain" + }, + { + "slug": "language-acquisition-device", + "name": "Language Acquisition Device", + "url": "/v1/software/language-acquisition-device" + }, + { + "slug": "language-reactor", + "name": "Language Reactor", + "url": "/v1/software/language-reactor" + }, + { + "slug": "languageapp", + "name": "LanguageApp", + "url": "/v1/software/languageapp" + }, + { + "slug": "lansweeper", + "name": "Lansweeper", + "url": "/v1/software/lansweeper" + }, + { + "slug": "laplacesdemon", + "name": "LaplacesDemon", + "url": "/v1/software/laplacesdemon" + }, + { + "slug": "laplink", + "name": "Laplink", + "url": "/v1/software/laplink" + }, + { + "slug": "laplink-pcmover", + "name": "Laplink PCmover", + "url": "/v1/software/laplink-pcmover" + }, + { + "slug": "lapu-ai", + "name": "Lapu.AI", + "url": "/v1/software/lapu-ai" + }, + { + "slug": "lark", + "name": "Lark", + "url": "/v1/software/lark" + }, + { + "slug": "latent-diffusion-model", + "name": "Latent diffusion model", + "url": "/v1/software/latent-diffusion-model" + }, + { + "slug": "launch-pad", + "name": "Launch Pad", + "url": "/v1/software/launch-pad" + }, + { + "slug": "laurence-anthony-antwordprofiler", + "name": "Laurence Anthony: AntWordProfiler", + "url": "/v1/software/laurence-anthony-antwordprofiler" + }, + { + "slug": "lavarand", + "name": "Lavarand", + "url": "/v1/software/lavarand" + }, + { + "slug": "lawkit", + "name": "LawKit", + "url": "/v1/software/lawkit" + }, + { + "slug": "layla", + "name": "Layla", + "url": "/v1/software/layla" + }, + { + "slug": "ldapsaisie", + "name": "LdapSaisie", + "url": "/v1/software/ldapsaisie" + }, + { + "slug": "ldconfig", + "name": "Ldconfig", + "url": "/v1/software/ldconfig" + }, + { + "slug": "ledock", + "name": "LeDock", + "url": "/v1/software/ledock" + }, + { + "slug": "lerobot", + "name": "LeRobot", + "url": "/v1/software/lerobot" + }, + { + "slug": "lea-crm", + "name": "Lea CRM", + "url": "/v1/software/lea-crm" + }, + { + "slug": "lead-finder", + "name": "Lead Finder", + "url": "/v1/software/lead-finder" + }, + { + "slug": "lead-dbs", + "name": "Lead-DBS", + "url": "/v1/software/lead-dbs" + }, + { + "slug": "leadclaw", + "name": "LeadClaw", + "url": "/v1/software/leadclaw" + }, + { + "slug": "leaktracer", + "name": "LeakTracer", + "url": "/v1/software/leaktracer" + }, + { + "slug": "leakly", + "name": "Leakly", + "url": "/v1/software/leakly" + }, + { + "slug": "learn-2017", + "name": "Learn 2017", + "url": "/v1/software/learn-2017" + }, + { + "slug": "learn-to-program-basic", + "name": "Learn to Program BASIC", + "url": "/v1/software/learn-to-program-basic" + }, + { + "slug": "learnhub", + "name": "Learnhub", + "url": "/v1/software/learnhub" + }, + { + "slug": "lectora", + "name": "Lectora", + "url": "/v1/software/lectora" + }, + { + "slug": "ledgester", + "name": "Ledgester", + "url": "/v1/software/ledgester" + }, + { + "slug": "leetify", + "name": "Leetify", + "url": "/v1/software/leetify" + }, + { + "slug": "lego-movie-maker", + "name": "Lego Movie Maker", + "url": "/v1/software/lego-movie-maker" + }, + { + "slug": "leher-app", + "name": "Leher App", + "url": "/v1/software/leher-app" + }, + { + "slug": "leica-application-suite", + "name": "Leica Application Suite", + "url": "/v1/software/leica-application-suite" + }, + { + "slug": "lektz", + "name": "Lektz", + "url": "/v1/software/lektz" + }, + { + "slug": "lemonstand", + "name": "LemonStand", + "url": "/v1/software/lemonstand" + }, + { + "slug": "lens-studio", + "name": "Lens Studio", + "url": "/v1/software/lens-studio" + }, + { + "slug": "lensfun", + "name": "Lensfun", + "url": "/v1/software/lensfun" + }, + { + "slug": "leon-q28453245", + "name": "Leon", + "url": "/v1/software/leon-q28453245" + }, + { + "slug": "leonardo", + "name": "Leonardo", + "url": "/v1/software/leonardo" + }, + { + "slug": "lepion", + "name": "Lepion", + "url": "/v1/software/lepion" + }, + { + "slug": "letsview", + "name": "LetsView", + "url": "/v1/software/letsview" + }, + { + "slug": "letter-zyu", + "name": "Letter Zyu", + "url": "/v1/software/letter-zyu" + }, + { + "slug": "letterwise", + "name": "LetterWise", + "url": "/v1/software/letterwise" + }, + { + "slug": "levelator", + "name": "Levelator", + "url": "/v1/software/levelator" + }, + { + "slug": "levitate", + "name": "Levitate", + "url": "/v1/software/levitate" + }, + { + "slug": "lex", + "name": "Lex", + "url": "/v1/software/lex" + }, + { + "slug": "lexa-q139915394", + "name": "LexA", + "url": "/v1/software/lexa-q139915394" + }, + { + "slug": "lexa", + "name": "Lexa", + "url": "/v1/software/lexa" + }, + { + "slug": "lexcycle-stanza", + "name": "Lexcycle Stanza", + "url": "/v1/software/lexcycle-stanza" + }, + { + "slug": "lexical-variant-generation", + "name": "Lexical Variant Generation", + "url": "/v1/software/lexical-variant-generation" + }, + { + "slug": "lexico", + "name": "Lexico", + "url": "/v1/software/lexico" + }, + { + "slug": "leximancer", + "name": "Leximancer", + "url": "/v1/software/leximancer" + }, + { + "slug": "lexnet", + "name": "Lexnet", + "url": "/v1/software/lexnet" + }, + { + "slug": "lexomics", + "name": "Lexomics", + "url": "/v1/software/lexomics" + }, + { + "slug": "lexos", + "name": "Lexos", + "url": "/v1/software/lexos" + }, + { + "slug": "lextek", + "name": "Lextek", + "url": "/v1/software/lextek" + }, + { + "slug": "lhasa", + "name": "Lhasa", + "url": "/v1/software/lhasa" + }, + { + "slug": "lisica", + "name": "LiSiCA", + "url": "/v1/software/lisica" + }, + { + "slug": "liaotianbao", + "name": "Liaotianbao", + "url": "/v1/software/liaotianbao" + }, + { + "slug": "libaccroc", + "name": "LibAccroc", + "url": "/v1/software/libaccroc" + }, + { + "slug": "libfaketime", + "name": "LibFakeTime", + "url": "/v1/software/libfaketime" + }, + { + "slug": "libgssh", + "name": "LibGSSH", + "url": "/v1/software/libgssh" + }, + { + "slug": "libgsystem", + "name": "LibGSystem", + "url": "/v1/software/libgsystem" + }, + { + "slug": "libx", + "name": "LibX", + "url": "/v1/software/libx" + }, + { + "slug": "libdmc", + "name": "Libdmc", + "url": "/v1/software/libdmc" + }, + { + "slug": "libgit2-glib", + "name": "Libgit2-glib", + "url": "/v1/software/libgit2-glib" + }, + { + "slug": "libon", + "name": "Libon", + "url": "/v1/software/libon" + }, + { + "slug": "libp2p", + "name": "Libp2p", + "url": "/v1/software/libp2p" + }, + { + "slug": "libpolo", + "name": "Libpolo", + "url": "/v1/software/libpolo" + }, + { + "slug": "libramatic", + "name": "Libramatic", + "url": "/v1/software/libramatic" + }, + { + "slug": "libreoffice-impress", + "name": "LibreOffice Impress", + "url": "/v1/software/libreoffice-impress" + }, + { + "slug": "libresource", + "name": "LibreSource", + "url": "/v1/software/libresource" + }, + { + "slug": "libreja-gmbh", + "name": "Libreja GmbH", + "url": "/v1/software/libreja-gmbh" + }, + { + "slug": "libroadrunner", + "name": "Libroadrunner", + "url": "/v1/software/libroadrunner" + }, + { + "slug": "libsafe", + "name": "Libsafe", + "url": "/v1/software/libsafe" + }, + { + "slug": "libsafe-linux-security-defunct", + "name": "Libsafe linux security (defunct)", + "url": "/v1/software/libsafe-linux-security-defunct" + }, + { + "slug": "lideraai", + "name": "LideraAI", + "url": "/v1/software/lideraai" + }, + { + "slug": "life-with-playstation", + "name": "Life with PlayStation", + "url": "/v1/software/life-with-playstation" + }, + { + "slug": "life360", + "name": "Life360", + "url": "/v1/software/life360" + }, + { + "slug": "lifeyo", + "name": "Lifeyo", + "url": "/v1/software/lifeyo" + }, + { + "slug": "ligandscout", + "name": "LigandScout", + "url": "/v1/software/ligandscout" + }, + { + "slug": "light-alloy", + "name": "Light Alloy", + "url": "/v1/software/light-alloy" + }, + { + "slug": "lightgbm", + "name": "LightGBM", + "url": "/v1/software/lightgbm" + }, + { + "slug": "lightscribe", + "name": "LightScribe", + "url": "/v1/software/lightscribe" + }, + { + "slug": "lightbox", + "name": "Lightbox", + "url": "/v1/software/lightbox" + }, + { + "slug": "lighthouse", + "name": "Lighthouse", + "url": "/v1/software/lighthouse" + }, + { + "slug": "lily", + "name": "Lily", + "url": "/v1/software/lily" + }, + { + "slug": "limechat", + "name": "LimeChat", + "url": "/v1/software/limechat" + }, + { + "slug": "limesurvey", + "name": "LimeSurvey", + "url": "/v1/software/limesurvey" + }, + { + "slug": "limine", + "name": "Limine", + "url": "/v1/software/limine" + }, + { + "slug": "limnoria", + "name": "Limnoria", + "url": "/v1/software/limnoria" + }, + { + "slug": "limnu", + "name": "Limnu", + "url": "/v1/software/limnu" + }, + { + "slug": "lindvd", + "name": "LinDVD", + "url": "/v1/software/lindvd" + }, + { + "slug": "linknot", + "name": "LinKnot", + "url": "/v1/software/linknot" + }, + { + "slug": "liner", + "name": "Liner", + "url": "/v1/software/liner" + }, + { + "slug": "liner2", + "name": "Liner2", + "url": "/v1/software/liner2" + }, + { + "slug": "lineup-ai", + "name": "Lineup.ai", + "url": "/v1/software/lineup-ai" + }, + { + "slug": "lingea-lexicon", + "name": "Lingea Lexicon", + "url": "/v1/software/lingea-lexicon" + }, + { + "slug": "lingocloud", + "name": "LingoCloud", + "url": "/v1/software/lingocloud" + }, + { + "slug": "linguee", + "name": "Linguee", + "url": "/v1/software/linguee" + }, + { + "slug": "linguistic-inquiry-and-word-count", + "name": "Linguistic Inquiry and Word Count", + "url": "/v1/software/linguistic-inquiry-and-word-count" + }, + { + "slug": "linguix", + "name": "Linguix", + "url": "/v1/software/linguix" + }, + { + "slug": "linkml", + "name": "LinkML", + "url": "/v1/software/linkml" + }, + { + "slug": "linkplease", + "name": "LinkPlease", + "url": "/v1/software/linkplease" + }, + { + "slug": "linked-pipe-tool", + "name": "Linked Pipe Tool", + "url": "/v1/software/linked-pipe-tool" + }, + { + "slug": "linkerd", + "name": "Linkerd", + "url": "/v1/software/linkerd" + }, + { + "slug": "linter-sql-rdbms", + "name": "Linter SQL RDBMS", + "url": "/v1/software/linter-sql-rdbms" + }, + { + "slug": "linux-color-management", + "name": "Linux color management", + "url": "/v1/software/linux-color-management" + }, + { + "slug": "linux-rt", + "name": "Linux-RT", + "url": "/v1/software/linux-rt" + }, + { + "slug": "linuxpmi", + "name": "LinuxPMI", + "url": "/v1/software/linuxpmi" + }, + { + "slug": "linuxshield", + "name": "LinuxShield", + "url": "/v1/software/linuxshield" + }, + { + "slug": "lippmannian-device-to-gephi", + "name": "Lippmannian Device to Gephi", + "url": "/v1/software/lippmannian-device-to-gephi" + }, + { + "slug": "lipsia", + "name": "Lipsia", + "url": "/v1/software/lipsia" + }, + { + "slug": "liquid-rhythm", + "name": "Liquid Rhythm", + "url": "/v1/software/liquid-rhythm" + }, + { + "slug": "liquid-spins", + "name": "Liquid Spins", + "url": "/v1/software/liquid-spins" + }, + { + "slug": "liquidplanner", + "name": "LiquidPlanner", + "url": "/v1/software/liquidplanner" + }, + { + "slug": "lira", + "name": "Lira", + "url": "/v1/software/lira" + }, + { + "slug": "lisk", + "name": "Lisk", + "url": "/v1/software/lisk" + }, + { + "slug": "lispworks", + "name": "LispWorks", + "url": "/v1/software/lispworks" + }, + { + "slug": "lispintro", + "name": "Lispintro", + "url": "/v1/software/lispintro" + }, + { + "slug": "list-label", + "name": "List & Label", + "url": "/v1/software/list-label" + }, + { + "slug": "listango", + "name": "Listango", + "url": "/v1/software/listango" + }, + { + "slug": "listing-flow", + "name": "Listing Flow", + "url": "/v1/software/listing-flow" + }, + { + "slug": "litassist", + "name": "LitAssist", + "url": "/v1/software/litassist" + }, + { + "slug": "litblitz-literature-notes-manager", + "name": "LitBlitz Literature Notes Manager", + "url": "/v1/software/litblitz-literature-notes-manager" + }, + { + "slug": "litmedia", + "name": "LitMedia", + "url": "/v1/software/litmedia" + }, + { + "slug": "litstats", + "name": "LitStats", + "url": "/v1/software/litstats" + }, + { + "slug": "litviz", + "name": "LitViz", + "url": "/v1/software/litviz" + }, + { + "slug": "liteclm", + "name": "LiteCLM", + "url": "/v1/software/liteclm" + }, + { + "slug": "litemanager", + "name": "LiteManager", + "url": "/v1/software/litemanager" + }, + { + "slug": "literat", + "name": "LiteRat", + "url": "/v1/software/literat" + }, + { + "slug": "litlink", + "name": "Litlink", + "url": "/v1/software/litlink" + }, + { + "slug": "litmos", + "name": "Litmos", + "url": "/v1/software/litmos" + }, + { + "slug": "litmus", + "name": "Litmus", + "url": "/v1/software/litmus" + }, + { + "slug": "little-minion", + "name": "Little Minion", + "url": "/v1/software/little-minion" + }, + { + "slug": "live-clipboard", + "name": "Live Clipboard", + "url": "/v1/software/live-clipboard" + }, + { + "slug": "live-commerce", + "name": "Live Commerce", + "url": "/v1/software/live-commerce" + }, + { + "slug": "live-connect", + "name": "Live Connect", + "url": "/v1/software/live-connect" + }, + { + "slug": "live-home-3d", + "name": "Live Home 3D", + "url": "/v1/software/live-home-3d" + }, + { + "slug": "live-mesh", + "name": "Live Mesh", + "url": "/v1/software/live-mesh" + }, + { + "slug": "live-search-academic", + "name": "Live Search Academic", + "url": "/v1/software/live-search-academic" + }, + { + "slug": "live-search-books", + "name": "Live Search Books", + "url": "/v1/software/live-search-books" + }, + { + "slug": "live-transcribe", + "name": "Live Transcribe", + "url": "/v1/software/live-transcribe" + }, + { + "slug": "live-ink-character-recognition-solution", + "name": "Live ink character recognition solution", + "url": "/v1/software/live-ink-character-recognition-solution" + }, + { + "slug": "live-ly", + "name": "Live.ly", + "url": "/v1/software/live-ly" + }, + { + "slug": "livearea", + "name": "LiveArea", + "url": "/v1/software/livearea" + }, + { + "slug": "livechat", + "name": "LiveChat", + "url": "/v1/software/livechat" + }, + { + "slug": "livejournal", + "name": "LiveJournal", + "url": "/v1/software/livejournal" + }, + { + "slug": "liveme", + "name": "LiveMe", + "url": "/v1/software/liveme" + }, + { + "slug": "livestation", + "name": "LiveStation", + "url": "/v1/software/livestation" + }, + { + "slug": "livewire-professional", + "name": "LiveWire Professional", + "url": "/v1/software/livewire-professional" + }, + { + "slug": "livedrive", + "name": "Livedrive", + "url": "/v1/software/livedrive" + }, + { + "slug": "livestorm", + "name": "Livestorm", + "url": "/v1/software/livestorm" + }, + { + "slug": "locloud-collections", + "name": "LoCloud Collections", + "url": "/v1/software/locloud-collections" + }, + { + "slug": "lola-q105044096", + "name": "LoLa", + "url": "/v1/software/lola-q105044096" + }, + { + "slug": "loliwin", + "name": "LoLiWin", + "url": "/v1/software/loliwin" + }, + { + "slug": "local-economic-assessment-package", + "name": "Local Economic Assessment Package", + "url": "/v1/software/local-economic-assessment-package" + }, + { + "slug": "localwiki", + "name": "LocalWiki", + "url": "/v1/software/localwiki" + }, + { + "slug": "location-view", + "name": "Location View", + "url": "/v1/software/location-view" + }, + { + "slug": "locationtech-geogig", + "name": "LocationTech GeoGig", + "url": "/v1/software/locationtech-geogig" + }, + { + "slug": "locationtech-geomesa", + "name": "LocationTech GeoMesa", + "url": "/v1/software/locationtech-geomesa" + }, + { + "slug": "locationtech-geotrellis", + "name": "LocationTech GeoTrellis", + "url": "/v1/software/locationtech-geotrellis" + }, + { + "slug": "locationtech-geowave", + "name": "LocationTech GeoWave", + "url": "/v1/software/locationtech-geowave" + }, + { + "slug": "locationtech-spatial4j", + "name": "LocationTech Spatial4j", + "url": "/v1/software/locationtech-spatial4j" + }, + { + "slug": "locus-map", + "name": "Locus Map", + "url": "/v1/software/locus-map" + }, + { + "slug": "lodlive", + "name": "LodLive", + "url": "/v1/software/lodlive" + }, + { + "slug": "logcheck", + "name": "LogCheck", + "url": "/v1/software/logcheck" + }, + { + "slug": "loggerhead", + "name": "Loggerhead", + "url": "/v1/software/loggerhead" + }, + { + "slug": "logib", + "name": "Logib", + "url": "/v1/software/logib" + }, + { + "slug": "logic", + "name": "Logic", + "url": "/v1/software/logic" + }, + { + "slug": "logic-express", + "name": "Logic Express", + "url": "/v1/software/logic-express" + }, + { + "slug": "logic-studio", + "name": "Logic Studio", + "url": "/v1/software/logic-studio" + }, + { + "slug": "logic-for-structure-determination", + "name": "Logic for Structure Determination", + "url": "/v1/software/logic-for-structure-determination" + }, + { + "slug": "logical-decisions", + "name": "Logical Decisions", + "url": "/v1/software/logical-decisions" + }, + { + "slug": "login-vsi", + "name": "Login VSI", + "url": "/v1/software/login-vsi" + }, + { + "slug": "loginventory", + "name": "Loginventory", + "url": "/v1/software/loginventory" + }, + { + "slug": "logistics-functional-area-services", + "name": "Logistics Functional Area Services", + "url": "/v1/software/logistics-functional-area-services" + }, + { + "slug": "logo-extraction-puzzle", + "name": "Logo extraction puzzle", + "url": "/v1/software/logo-extraction-puzzle" + }, + { + "slug": "logoport", + "name": "Logoport", + "url": "/v1/software/logoport" + }, + { + "slug": "logos-the-logos-model-and-openlogos", + "name": "Logos, the Logos Model and OpenLogos", + "url": "/v1/software/logos-the-logos-model-and-openlogos" + }, + { + "slug": "logseq", + "name": "Logseq", + "url": "/v1/software/logseq" + }, + { + "slug": "logwatch", + "name": "Logwatch", + "url": "/v1/software/logwatch" + }, + { + "slug": "lojain", + "name": "Lojain", + "url": "/v1/software/lojain" + }, + { + "slug": "loki-network", + "name": "Loki Network", + "url": "/v1/software/loki-network" + }, + { + "slug": "lola-q30608689", + "name": "Lola", + "url": "/v1/software/lola-q30608689" + }, + { + "slug": "lookeen", + "name": "Lookeen", + "url": "/v1/software/lookeen" + }, + { + "slug": "lookout-mobile-security", + "name": "Lookout Mobile Security", + "url": "/v1/software/lookout-mobile-security" + }, + { + "slug": "loops", + "name": "Loops", + "url": "/v1/software/loops" + }, + { + "slug": "loqu8", + "name": "Loqu8", + "url": "/v1/software/loqu8" + }, + { + "slug": "los-angeles-strategic-extraction-and-restoration-zones", + "name": "Los Angeles’ Strategic Extraction and Restoration zones", + "url": "/v1/software/los-angeles-strategic-extraction-and-restoration-zones" + }, + { + "slug": "lotus-1-2-3-for-unix", + "name": "Lotus 1-2-3 for UNIX", + "url": "/v1/software/lotus-1-2-3-for-unix" + }, + { + "slug": "lotus-agenda", + "name": "Lotus Agenda", + "url": "/v1/software/lotus-agenda" + }, + { + "slug": "lotus-impress", + "name": "Lotus Impress", + "url": "/v1/software/lotus-impress" + }, + { + "slug": "lotus-jazz", + "name": "Lotus Jazz", + "url": "/v1/software/lotus-jazz" + }, + { + "slug": "lotus-magellan", + "name": "Lotus Magellan", + "url": "/v1/software/lotus-magellan" + }, + { + "slug": "lotus-manuscript", + "name": "Lotus Manuscript", + "url": "/v1/software/lotus-manuscript" + }, + { + "slug": "lotus-notes-vip", + "name": "Lotus Notes VIP", + "url": "/v1/software/lotus-notes-vip" + }, + { + "slug": "lotus-symphony", + "name": "Lotus Symphony", + "url": "/v1/software/lotus-symphony" + }, + { + "slug": "lo-na", + "name": "Loóna", + "url": "/v1/software/lo-na" + }, + { + "slug": "lp-solve", + "name": "Lp solve", + "url": "/v1/software/lp-solve" + }, + { + "slug": "lsyncd", + "name": "Lsyncd", + "url": "/v1/software/lsyncd" + }, + { + "slug": "lucidworks", + "name": "LucidWorks", + "url": "/v1/software/lucidworks" + }, + { + "slug": "lulu-app", + "name": "Lulu (app)", + "url": "/v1/software/lulu-app" + }, + { + "slug": "luma-ai-dream-machine", + "name": "Luma AI (Dream Machine)", + "url": "/v1/software/luma-ai-dream-machine" + }, + { + "slug": "lumina-desktop", + "name": "Lumina Desktop", + "url": "/v1/software/lumina-desktop" + }, + { + "slug": "luminar-neo", + "name": "Luminar Neo", + "url": "/v1/software/luminar-neo" + }, + { + "slug": "luminy", + "name": "Luminy", + "url": "/v1/software/luminy" + }, + { + "slug": "lumion", + "name": "Lumion", + "url": "/v1/software/lumion" + }, + { + "slug": "lumo", + "name": "Lumo", + "url": "/v1/software/lumo" + }, + { + "slug": "luna-modeler", + "name": "Luna Modeler", + "url": "/v1/software/luna-modeler" + }, + { + "slug": "luola", + "name": "Luola", + "url": "/v1/software/luola" + }, + { + "slug": "lura", + "name": "Lura", + "url": "/v1/software/lura" + }, + { + "slug": "lush", + "name": "Lush", + "url": "/v1/software/lush" + }, + { + "slug": "lutris-technologies", + "name": "Lutris Technologies", + "url": "/v1/software/lutris-technologies" + }, + { + "slug": "luxalgo", + "name": "LuxAlgo", + "url": "/v1/software/luxalgo" + }, + { + "slug": "luxo-ai", + "name": "Luxo AI", + "url": "/v1/software/luxo-ai" + }, + { + "slug": "lynks", + "name": "Lynks", + "url": "/v1/software/lynks" + }, + { + "slug": "lynks-create-explore-share", + "name": "Lynks - Create Explore Share", + "url": "/v1/software/lynks-create-explore-share" + }, + { + "slug": "lyra", + "name": "Lyra", + "url": "/v1/software/lyra" + }, + { + "slug": "lyteshot", + "name": "LyteShot", + "url": "/v1/software/lyteshot" + }, + { + "slug": "m-messenger", + "name": "M+ Messenger", + "url": "/v1/software/m-messenger" + }, + { + "slug": "m-netmail", + "name": "M+NetMail", + "url": "/v1/software/m-netmail" + }, + { + "slug": "m-cas", + "name": "M-CAS", + "url": "/v1/software/m-cas" + }, + { + "slug": "m-indicator", + "name": "M-Indicator", + "url": "/v1/software/m-indicator" + }, + { + "slug": "m-e-doc", + "name": "M.E.Doc", + "url": "/v1/software/m-e-doc" + }, + { + "slug": "m2m", + "name": "M2M", + "url": "/v1/software/m2m" + }, + { + "slug": "maas", + "name": "MAAS", + "url": "/v1/software/maas" + }, + { + "slug": "mac-65", + "name": "MAC/65", + "url": "/v1/software/mac-65" + }, + { + "slug": "macs", + "name": "MACS", + "url": "/v1/software/macs" + }, + { + "slug": "macs3", + "name": "MACS3", + "url": "/v1/software/macs3" + }, + { + "slug": "madymo", + "name": "MADYMO", + "url": "/v1/software/madymo" + }, + { + "slug": "mafft", + "name": "MAFFT", + "url": "/v1/software/mafft" + }, + { + "slug": "magix-sequoia", + "name": "MAGIX Sequoia", + "url": "/v1/software/magix-sequoia" + }, + { + "slug": "magma-lisp", + "name": "MAGMA-Lisp", + "url": "/v1/software/magma-lisp" + }, + { + "slug": "mallet-package-for-r", + "name": "MALLET package for R", + "url": "/v1/software/mallet-package-for-r" + }, + { + "slug": "malpas-software-static-analysis-toolset", + "name": "MALPAS Software Static Analysis Toolset", + "url": "/v1/software/malpas-software-static-analysis-toolset" + }, + { + "slug": "manta", + "name": "MANTA", + "url": "/v1/software/manta" + }, + { + "slug": "mapics", + "name": "MAPICS", + "url": "/v1/software/mapics" + }, + { + "slug": "mash-q112583738", + "name": "MASH", + "url": "/v1/software/mash-q112583738" + }, + { + "slug": "mash", + "name": "MASH", + "url": "/v1/software/mash" + }, + { + "slug": "massive", + "name": "MASSIVE", + "url": "/v1/software/massive" + }, + { + "slug": "matsim", + "name": "MATSim", + "url": "/v1/software/matsim" + }, + { + "slug": "mavid", + "name": "MAVID", + "url": "/v1/software/mavid" + }, + { + "slug": "maxqda", + "name": "MAXQDA", + "url": "/v1/software/maxqda" + }, + { + "slug": "mbn-explorer", + "name": "MBN Explorer", + "url": "/v1/software/mbn-explorer" + }, + { + "slug": "mbox-to-csv", + "name": "MBOX to CSV", + "url": "/v1/software/mbox-to-csv" + }, + { + "slug": "mbox-to-pdf", + "name": "MBOX to PDF", + "url": "/v1/software/mbox-to-pdf" + }, + { + "slug": "mblock", + "name": "MBlock", + "url": "/v1/software/mblock" + }, + { + "slug": "mbrace", + "name": "MBrace", + "url": "/v1/software/mbrace" + }, + { + "slug": "mc-musiceditor", + "name": "MC Musiceditor", + "url": "/v1/software/mc-musiceditor" + }, + { + "slug": "mc-wol", + "name": "MC-WOL", + "url": "/v1/software/mc-wol" + }, + { + "slug": "mc4j", + "name": "MC4J", + "url": "/v1/software/mc4j" + }, + { + "slug": "mcp-analytics", + "name": "MCP Analytics", + "url": "/v1/software/mcp-analytics" + }, + { + "slug": "mcpsafe", + "name": "MCPSafe", + "url": "/v1/software/mcpsafe" + }, + { + "slug": "mcve", + "name": "MCVE", + "url": "/v1/software/mcve" + }, + { + "slug": "mchess-pro", + "name": "MChess Pro", + "url": "/v1/software/mchess-pro" + }, + { + "slug": "mcreator", + "name": "MCreator", + "url": "/v1/software/mcreator" + }, + { + "slug": "mdl-chime", + "name": "MDL Chime", + "url": "/v1/software/mdl-chime" + }, + { + "slug": "megan", + "name": "MEGAN", + "url": "/v1/software/megan" + }, + { + "slug": "mei-friend", + "name": "MEI Friend", + "url": "/v1/software/mei-friend" + }, + { + "slug": "mei-garage", + "name": "MEI Garage", + "url": "/v1/software/mei-garage" + }, + { + "slug": "mei-friend-package-for-atom", + "name": "MEI-Friend Package for Atom", + "url": "/v1/software/mei-friend-package-for-atom" + }, + { + "slug": "meiko", + "name": "MEIKO", + "url": "/v1/software/meiko" + }, + { + "slug": "melcor", + "name": "MELCOR", + "url": "/v1/software/melcor" + }, + { + "slug": "meme-suite", + "name": "MEME suite", + "url": "/v1/software/meme-suite" + }, + { + "slug": "mepa", + "name": "MEPA", + "url": "/v1/software/mepa" + }, + { + "slug": "mesa", + "name": "MESA", + "url": "/v1/software/mesa" + }, + { + "slug": "mets-page-turner", + "name": "METS Page Turner", + "url": "/v1/software/mets-page-turner" + }, + { + "slug": "mfem", + "name": "MFEM", + "url": "/v1/software/mfem" + }, + { + "slug": "mg-rast", + "name": "MG-RAST", + "url": "/v1/software/mg-rast" + }, + { + "slug": "mhonarc", + "name": "MHonArc", + "url": "/v1/software/mhonarc" + }, + { + "slug": "midaco", + "name": "MIDACO", + "url": "/v1/software/midaco" + }, + { + "slug": "midas-technical-analysis", + "name": "MIDAS technical analysis", + "url": "/v1/software/midas-technical-analysis" + }, + { + "slug": "midijam", + "name": "MIDIJam", + "url": "/v1/software/midijam" + }, + { + "slug": "midipoet", + "name": "MIDIpoet", + "url": "/v1/software/midipoet" + }, + { + "slug": "mikbug", + "name": "MIKBUG", + "url": "/v1/software/mikbug" + }, + { + "slug": "mike-21", + "name": "MIKE 21", + "url": "/v1/software/mike-21" + }, + { + "slug": "minos", + "name": "MINOS", + "url": "/v1/software/minos" + }, + { + "slug": "minto", + "name": "MINTO", + "url": "/v1/software/minto" + }, + { + "slug": "minuit", + "name": "MINUIT", + "url": "/v1/software/minuit" + }, + { + "slug": "misp-threat-sharing", + "name": "MISP Threat Sharing", + "url": "/v1/software/misp-threat-sharing" + }, + { + "slug": "mit-shm", + "name": "MIT-SHM", + "url": "/v1/software/mit-shm" + }, + { + "slug": "mitre-syntactic-analysis-procedure", + "name": "MITRE Syntactic Analysis Procedure", + "url": "/v1/software/mitre-syntactic-analysis-procedure" + }, + { + "slug": "mix-2-0", + "name": "MIX 2.0", + "url": "/v1/software/mix-2-0" + }, + { + "slug": "mixmax-generator", + "name": "MIXMAX generator", + "url": "/v1/software/mixmax-generator" + }, + { + "slug": "mks-toolkit", + "name": "MKS Toolkit", + "url": "/v1/software/mks-toolkit" + }, + { + "slug": "mlcad", + "name": "MLCad", + "url": "/v1/software/mlcad" + }, + { + "slug": "mldesigner", + "name": "MLDesigner", + "url": "/v1/software/mldesigner" + }, + { + "slug": "mlir", + "name": "MLIR", + "url": "/v1/software/mlir" + }, + { + "slug": "mlton", + "name": "MLton", + "url": "/v1/software/mlton" + }, + { + "slug": "mlwin", + "name": "MLwiN", + "url": "/v1/software/mlwin" + }, + { + "slug": "mmana", + "name": "MMANA", + "url": "/v1/software/mmana" + }, + { + "slug": "mmdf", + "name": "MMDF", + "url": "/v1/software/mmdf" + }, + { + "slug": "mmseqs2", + "name": "MMSeqs2", + "url": "/v1/software/mmseqs2" + }, + { + "slug": "mmt", + "name": "MMT", + "url": "/v1/software/mmt" + }, + { + "slug": "mmax2", + "name": "MMax2", + "url": "/v1/software/mmax2" + }, + { + "slug": "mne-python", + "name": "MNE-Python", + "url": "/v1/software/mne-python" + }, + { + "slug": "mobiledit", + "name": "MOBILedit", + "url": "/v1/software/mobiledit" + }, + { + "slug": "mode32", + "name": "MODE32", + "url": "/v1/software/mode32" + }, + { + "slug": "modeller", + "name": "MODELLER", + "url": "/v1/software/modeller" + }, + { + "slug": "modflow-one-water-hydrologic-flow-model", + "name": "MODFLOW One-Water Hydrologic Flow Model", + "url": "/v1/software/modflow-one-water-hydrologic-flow-model" + }, + { + "slug": "mon-80", + "name": "MON-80", + "url": "/v1/software/mon-80" + }, + { + "slug": "monk-project", + "name": "MONK Project", + "url": "/v1/software/monk-project" + }, + { + "slug": "mooc-arab-world", + "name": "MOOC Arab World", + "url": "/v1/software/mooc-arab-world" + }, + { + "slug": "more", + "name": "MORE", + "url": "/v1/software/more" + }, + { + "slug": "mosdac", + "name": "MOSDAC", + "url": "/v1/software/mosdac" + }, + { + "slug": "mosek", + "name": "MOSEK", + "url": "/v1/software/mosek" + }, + { + "slug": "mosix", + "name": "MOSIX", + "url": "/v1/software/mosix" + }, + { + "slug": "moveit", + "name": "MOVEit", + "url": "/v1/software/moveit" + }, + { + "slug": "mp3info", + "name": "MP3info", + "url": "/v1/software/mp3info" + }, + { + "slug": "mp3val", + "name": "MP3val", + "url": "/v1/software/mp3val" + }, + { + "slug": "mpb", + "name": "MPB", + "url": "/v1/software/mpb" + }, + { + "slug": "mpc-mlq", + "name": "MPC-MLQ", + "url": "/v1/software/mpc-mlq" + }, + { + "slug": "mpcontribs", + "name": "MPContribs", + "url": "/v1/software/mpcontribs" + }, + { + "slug": "mpdcon", + "name": "MPDCon", + "url": "/v1/software/mpdcon" + }, + { + "slug": "mpich2", + "name": "MPICH2", + "url": "/v1/software/mpich2" + }, + { + "slug": "mpack", + "name": "MPack", + "url": "/v1/software/mpack" + }, + { + "slug": "mricro", + "name": "MRIcro", + "url": "/v1/software/mricro" + }, + { + "slug": "ms-antivirus", + "name": "MS Antivirus", + "url": "/v1/software/ms-antivirus" + }, + { + "slug": "ms-dial", + "name": "MS-DIAL", + "url": "/v1/software/ms-dial" + }, + { + "slug": "ms4-modeling-environment", + "name": "MS4 Modeling Environment", + "url": "/v1/software/ms4-modeling-environment" + }, + { + "slug": "msc-adams", + "name": "MSC ADAMS", + "url": "/v1/software/msc-adams" + }, + { + "slug": "msc-adams-q96391244", + "name": "MSC Adams", + "url": "/v1/software/msc-adams-q96391244" + }, + { + "slug": "mscdex", + "name": "MSCDEX", + "url": "/v1/software/mscdex" + }, + { + "slug": "msi-afterburner", + "name": "MSI Afterburner", + "url": "/v1/software/msi-afterburner" + }, + { + "slug": "msn-chat", + "name": "MSN Chat", + "url": "/v1/software/msn-chat" + }, + { + "slug": "msn-direct", + "name": "MSN Direct", + "url": "/v1/software/msn-direct" + }, + { + "slug": "msn-qna", + "name": "MSN QnA", + "url": "/v1/software/msn-qna" + }, + { + "slug": "msn-tv", + "name": "MSN TV", + "url": "/v1/software/msn-tv" + }, + { + "slug": "msn-wifi-hotspots", + "name": "MSN WiFi Hotspots", + "url": "/v1/software/msn-wifi-hotspots" + }, + { + "slug": "msn-apps", + "name": "MSN apps", + "url": "/v1/software/msn-apps" + }, + { + "slug": "msqrd", + "name": "MSQRD", + "url": "/v1/software/msqrd" + }, + { + "slug": "msr-tools", + "name": "MSR Tools", + "url": "/v1/software/msr-tools" + }, + { + "slug": "msx-trains", + "name": "MSX Trains", + "url": "/v1/software/msx-trains" + }, + { + "slug": "msecure", + "name": "MSecure", + "url": "/v1/software/msecure" + }, + { + "slug": "mtex", + "name": "MTEX", + "url": "/v1/software/mtex" + }, + { + "slug": "mtx", + "name": "MTX", + "url": "/v1/software/mtx" + }, + { + "slug": "mu-lab", + "name": "MU.LAB", + "url": "/v1/software/mu-lab" + }, + { + "slug": "mummer", + "name": "MUMmer", + "url": "/v1/software/mummer" + }, + { + "slug": "muscle", + "name": "MUSCLE", + "url": "/v1/software/muscle" + }, + { + "slug": "muxi", + "name": "MUXI", + "url": "/v1/software/muxi" + }, + { + "slug": "mx-player", + "name": "MX Player", + "url": "/v1/software/mx-player" + }, + { + "slug": "mx-takatak-q120882295", + "name": "MX TakaTak", + "url": "/v1/software/mx-takatak-q120882295" + }, + { + "slug": "mxe", + "name": "MXE", + "url": "/v1/software/mxe" + }, + { + "slug": "mymta", + "name": "MYmta", + "url": "/v1/software/mymta" + }, + { + "slug": "mac-box-set", + "name": "Mac Box Set", + "url": "/v1/software/mac-box-set" + }, + { + "slug": "mac-data-recovery-guru", + "name": "Mac Data Recovery Guru", + "url": "/v1/software/mac-data-recovery-guru" + }, + { + "slug": "mac-os-runtime-for-java", + "name": "Mac OS Runtime for Java", + "url": "/v1/software/mac-os-runtime-for-java" + }, + { + "slug": "mac-os-x-server-10-4", + "name": "Mac OS X Server 10.4", + "url": "/v1/software/mac-os-x-server-10-4" + }, + { + "slug": "mac-on-mac", + "name": "Mac-on-Mac", + "url": "/v1/software/mac-on-mac" + }, + { + "slug": "macdroid", + "name": "MacDroid", + "url": "/v1/software/macdroid" + }, + { + "slug": "macfamilytree", + "name": "MacFamilyTree", + "url": "/v1/software/macfamilytree" + }, + { + "slug": "macproject", + "name": "MacProject", + "url": "/v1/software/macproject" + }, + { + "slug": "macterminal", + "name": "MacTerminal", + "url": "/v1/software/macterminal" + }, + { + "slug": "mactype", + "name": "MacType", + "url": "/v1/software/mactype" + }, + { + "slug": "macvector", + "name": "MacVector", + "url": "/v1/software/macvector" + }, + { + "slug": "macventure", + "name": "MacVenture", + "url": "/v1/software/macventure" + }, + { + "slug": "macweb", + "name": "MacWeb", + "url": "/v1/software/macweb" + }, + { + "slug": "macworks-xl", + "name": "MacWorks XL", + "url": "/v1/software/macworks-xl" + }, + { + "slug": "macaw", + "name": "Macaw", + "url": "/v1/software/macaw" + }, + { + "slug": "macfusion", + "name": "Macfusion", + "url": "/v1/software/macfusion" + }, + { + "slug": "mach", + "name": "Mach", + "url": "/v1/software/mach" + }, + { + "slug": "machine-translation", + "name": "Machine Translation", + "url": "/v1/software/machine-translation" + }, + { + "slug": "machinery", + "name": "Machinery", + "url": "/v1/software/machinery" + }, + { + "slug": "macintosh-application-environment", + "name": "Macintosh Application Environment", + "url": "/v1/software/macintosh-application-environment" + }, + { + "slug": "macintosh-toolbox", + "name": "Macintosh Toolbox", + "url": "/v1/software/macintosh-toolbox" + }, + { + "slug": "mackie-tracktion", + "name": "Mackie Tracktion", + "url": "/v1/software/mackie-tracktion" + }, + { + "slug": "macne-nana", + "name": "Macne Nana", + "url": "/v1/software/macne-nana" + }, + { + "slug": "macro-express", + "name": "Macro Express", + "url": "/v1/software/macro-express" + }, + { + "slug": "macrodroid", + "name": "MacroDroid", + "url": "/v1/software/macrodroid" + }, + { + "slug": "macromodel", + "name": "MacroModel", + "url": "/v1/software/macromodel" + }, + { + "slug": "macromedia-central", + "name": "Macromedia Central", + "url": "/v1/software/macromedia-central" + }, + { + "slug": "macromedia-flash-8", + "name": "Macromedia Flash 8", + "url": "/v1/software/macromedia-flash-8" + }, + { + "slug": "macromedia-studio", + "name": "Macromedia Studio", + "url": "/v1/software/macromedia-studio" + }, + { + "slug": "macroscope", + "name": "Macroscope", + "url": "/v1/software/macroscope" + }, + { + "slug": "macrospace", + "name": "Macrospace", + "url": "/v1/software/macrospace" + }, + { + "slug": "mactracker", + "name": "Mactracker", + "url": "/v1/software/mactracker" + }, + { + "slug": "mad-commander", + "name": "Mad Commander", + "url": "/v1/software/mad-commander" + }, + { + "slug": "madgraph", + "name": "MadGraph", + "url": "/v1/software/madgraph" + }, + { + "slug": "madmuscles", + "name": "MadMuscles", + "url": "/v1/software/madmuscles" + }, + { + "slug": "madison-digital-image-database-mdid", + "name": "Madison Digital Image Database (MDID)", + "url": "/v1/software/madison-digital-image-database-mdid" + }, + { + "slug": "madoc", + "name": "Madoc", + "url": "/v1/software/madoc" + }, + { + "slug": "madura-english-sinhala-dictionary", + "name": "Madura English–Sinhala Dictionary", + "url": "/v1/software/madura-english-sinhala-dictionary" + }, + { + "slug": "maestro-q72275279", + "name": "Maestro", + "url": "/v1/software/maestro-q72275279" + }, + { + "slug": "maestro", + "name": "Maestro", + "url": "/v1/software/maestro" + }, + { + "slug": "maestro-mastersoftware", + "name": "Maestro MasterSoftware", + "url": "/v1/software/maestro-mastersoftware" + }, + { + "slug": "magic", + "name": "Magic", + "url": "/v1/software/magic" + }, + { + "slug": "magic-camera", + "name": "Magic Camera", + "url": "/v1/software/magic-camera" + }, + { + "slug": "magic-cat", + "name": "Magic Cat", + "url": "/v1/software/magic-cat" + }, + { + "slug": "magic-desk", + "name": "Magic Desk", + "url": "/v1/software/magic-desk" + }, + { + "slug": "magic-lantern", + "name": "Magic Lantern", + "url": "/v1/software/magic-lantern" + }, + { + "slug": "magic-music-visuals", + "name": "Magic Music Visuals", + "url": "/v1/software/magic-music-visuals" + }, + { + "slug": "magic-shadow-archiver", + "name": "Magic Shadow Archiver", + "url": "/v1/software/magic-shadow-archiver" + }, + { + "slug": "magic-workstation", + "name": "Magic Workstation", + "url": "/v1/software/magic-workstation" + }, + { + "slug": "magicdraw", + "name": "MagicDraw", + "url": "/v1/software/magicdraw" + }, + { + "slug": "magiciso", + "name": "MagicISO", + "url": "/v1/software/magiciso" + }, + { + "slug": "magicwb", + "name": "MagicWB", + "url": "/v1/software/magicwb" + }, + { + "slug": "magicfilter", + "name": "Magicfilter", + "url": "/v1/software/magicfilter" + }, + { + "slug": "magine", + "name": "Magine", + "url": "/v1/software/magine" + }, + { + "slug": "magister", + "name": "Magister", + "url": "/v1/software/magister" + }, + { + "slug": "magisto", + "name": "Magisto", + "url": "/v1/software/magisto" + }, + { + "slug": "magneto-go", + "name": "Magneto Go", + "url": "/v1/software/magneto-go" + }, + { + "slug": "magnifier", + "name": "Magnifier", + "url": "/v1/software/magnifier" + }, + { + "slug": "magnus-choir", + "name": "Magnus Choir", + "url": "/v1/software/magnus-choir" + }, + { + "slug": "maidcentral", + "name": "MaidCentral", + "url": "/v1/software/maidcentral" + }, + { + "slug": "mailstore", + "name": "MailStore", + "url": "/v1/software/mailstore" + }, + { + "slug": "mailtime", + "name": "MailTime", + "url": "/v1/software/mailtime" + }, + { + "slug": "mailbigfile", + "name": "Mailbigfile", + "url": "/v1/software/mailbigfile" + }, + { + "slug": "mailbird", + "name": "Mailbird", + "url": "/v1/software/mailbird" + }, + { + "slug": "mailchimp", + "name": "Mailchimp", + "url": "/v1/software/mailchimp" + }, + { + "slug": "maildir", + "name": "Maildir", + "url": "/v1/software/maildir" + }, + { + "slug": "mailerlite", + "name": "MailerLite", + "url": "/v1/software/mailerlite" + }, + { + "slug": "mailfilter", + "name": "Mailfilter", + "url": "/v1/software/mailfilter" + }, + { + "slug": "mailinblack", + "name": "Mailinblack", + "url": "/v1/software/mailinblack" + }, + { + "slug": "mailplane", + "name": "Mailplane", + "url": "/v1/software/mailplane" + }, + { + "slug": "mailrelay", + "name": "Mailrelay", + "url": "/v1/software/mailrelay" + }, + { + "slug": "mailwasher", + "name": "Mailwasher", + "url": "/v1/software/mailwasher" + }, + { + "slug": "mainstage", + "name": "Mainstage", + "url": "/v1/software/mainstage" + }, + { + "slug": "maintenup", + "name": "MaintenUP", + "url": "/v1/software/maintenup" + }, + { + "slug": "majestic-search-engine", + "name": "Majestic Search Engine", + "url": "/v1/software/majestic-search-engine" + }, + { + "slug": "make", + "name": "Make", + "url": "/v1/software/make" + }, + { + "slug": "make-the-dot", + "name": "Make the Dot", + "url": "/v1/software/make-the-dot" + }, + { + "slug": "makecd", + "name": "MakeCD", + "url": "/v1/software/makecd" + }, + { + "slug": "makemkv", + "name": "MakeMKV", + "url": "/v1/software/makemkv" + }, + { + "slug": "makemodes", + "name": "MakeModes", + "url": "/v1/software/makemodes" + }, + { + "slug": "makepasswd", + "name": "Makepasswd", + "url": "/v1/software/makepasswd" + }, + { + "slug": "makers-empire-3d", + "name": "Makers Empire 3D", + "url": "/v1/software/makers-empire-3d" + }, + { + "slug": "making-waves", + "name": "Making Waves", + "url": "/v1/software/making-waves" + }, + { + "slug": "mallzee", + "name": "Mallzee", + "url": "/v1/software/mallzee" + }, + { + "slug": "maltparser", + "name": "MaltParser", + "url": "/v1/software/maltparser" + }, + { + "slug": "maltego", + "name": "Maltego", + "url": "/v1/software/maltego" + }, + { + "slug": "mammoinsight", + "name": "MammoInsight", + "url": "/v1/software/mammoinsight" + }, + { + "slug": "manageengine", + "name": "ManageEngine", + "url": "/v1/software/manageengine" + }, + { + "slug": "manageengine-servicedesk-plus", + "name": "ManageEngine ServiceDesk Plus", + "url": "/v1/software/manageengine-servicedesk-plus" + }, + { + "slug": "managepro", + "name": "ManagePro", + "url": "/v1/software/managepro" + }, + { + "slug": "managewp", + "name": "ManageWP", + "url": "/v1/software/managewp" + }, + { + "slug": "managed-directx", + "name": "Managed DirectX", + "url": "/v1/software/managed-directx" + }, + { + "slug": "managed-extensibility-framework-q112629111", + "name": "Managed Extensibility Framework", + "url": "/v1/software/managed-extensibility-framework-q112629111" + }, + { + "slug": "managed-extensibility-framework", + "name": "Managed Extensibility Framework", + "url": "/v1/software/managed-extensibility-framework" + }, + { + "slug": "managedq", + "name": "ManagedQ", + "url": "/v1/software/managedq" + }, + { + "slug": "management-agent", + "name": "Management agent", + "url": "/v1/software/management-agent" + }, + { + "slug": "managing-your-money", + "name": "Managing Your Money", + "url": "/v1/software/managing-your-money" + }, + { + "slug": "manatee-open", + "name": "Manatee-open", + "url": "/v1/software/manatee-open" + }, + { + "slug": "mango", + "name": "Mango", + "url": "/v1/software/mango" + }, + { + "slug": "mango-tv", + "name": "Mango TV", + "url": "/v1/software/mango-tv" + }, + { + "slug": "manifest", + "name": "Manifest", + "url": "/v1/software/manifest" + }, + { + "slug": "manifold-scholarship", + "name": "Manifold Scholarship", + "url": "/v1/software/manifold-scholarship" + }, + { + "slug": "manjam-com", + "name": "Manjam.com", + "url": "/v1/software/manjam-com" + }, + { + "slug": "manman", + "name": "Manman", + "url": "/v1/software/manman" + }, + { + "slug": "mantis-bug-tracker", + "name": "Mantis Bug Tracker", + "url": "/v1/software/mantis-bug-tracker" + }, + { + "slug": "mantle", + "name": "Mantle", + "url": "/v1/software/mantle" + }, + { + "slug": "manuelbastionilab", + "name": "ManuelbastioniLAB", + "url": "/v1/software/manuelbastionilab" + }, + { + "slug": "manupl-n", + "name": "Manupl@n", + "url": "/v1/software/manupl-n" + }, + { + "slug": "manus", + "name": "Manus", + "url": "/v1/software/manus" + }, + { + "slug": "manuscript-desk", + "name": "Manuscript Desk", + "url": "/v1/software/manuscript-desk" + }, + { + "slug": "manycam", + "name": "ManyCam", + "url": "/v1/software/manycam" + }, + { + "slug": "manydesigns-portofino", + "name": "ManyDesigns Portofino", + "url": "/v1/software/manydesigns-portofino" + }, + { + "slug": "manzi-os", + "name": "Manzi OS", + "url": "/v1/software/manzi-os" + }, + { + "slug": "map-overlay-and-statistical-system", + "name": "Map Overlay and Statistical System", + "url": "/v1/software/map-overlay-and-statistical-system" + }, + { + "slug": "map-warper", + "name": "Map Warper", + "url": "/v1/software/map-warper" + }, + { + "slug": "mapalist", + "name": "MapAList", + "url": "/v1/software/mapalist" + }, + { + "slug": "mapbasic", + "name": "MapBasic", + "url": "/v1/software/mapbasic" + }, + { + "slug": "mapcraft", + "name": "MapCraft", + "url": "/v1/software/mapcraft" + }, + { + "slug": "mapdotnet", + "name": "MapDotNet", + "url": "/v1/software/mapdotnet" + }, + { + "slug": "maphub", + "name": "MapHub", + "url": "/v1/software/maphub" + }, + { + "slug": "mapjack", + "name": "MapJack", + "url": "/v1/software/mapjack" + }, + { + "slug": "maposmatic", + "name": "MapOSMatic", + "url": "/v1/software/maposmatic" + }, + { + "slug": "mapstory", + "name": "MapStory", + "url": "/v1/software/mapstory" + }, + { + "slug": "mapx", + "name": "MapX", + "url": "/v1/software/mapx" + }, + { + "slug": "mapamap", + "name": "MapaMap", + "url": "/v1/software/mapamap" + }, + { + "slug": "mapillary-uploader-for-desktop", + "name": "Mapillary Uploader for Desktop", + "url": "/v1/software/mapillary-uploader-for-desktop" + }, + { + "slug": "maple-t-a", + "name": "Maple T.A.", + "url": "/v1/software/maple-t-a" + }, + { + "slug": "maplesim", + "name": "MapleSim", + "url": "/v1/software/maplesim" + }, + { + "slug": "mapopolis", + "name": "Mapopolis", + "url": "/v1/software/mapopolis" + }, + { + "slug": "mapping-memory-manager", + "name": "Mapping Memory Manager", + "url": "/v1/software/mapping-memory-manager" + }, + { + "slug": "mapstraction", + "name": "Mapstraction", + "url": "/v1/software/mapstraction" + }, + { + "slug": "maptitude", + "name": "Maptitude", + "url": "/v1/software/maptitude" + }, + { + "slug": "mapumental", + "name": "Mapumental", + "url": "/v1/software/mapumental" + }, + { + "slug": "marrest", + "name": "MarRest", + "url": "/v1/software/marrest" + }, + { + "slug": "marcedit", + "name": "MarcEdit", + "url": "/v1/software/marcedit" + }, + { + "slug": "maren", + "name": "Maren", + "url": "/v1/software/maren" + }, + { + "slug": "margbooks", + "name": "MargBooks", + "url": "/v1/software/margbooks" + }, + { + "slug": "marionette", + "name": "Marionette", + "url": "/v1/software/marionette" + }, + { + "slug": "marklogic", + "name": "MarkLogic", + "url": "/v1/software/marklogic" + }, + { + "slug": "marketview", + "name": "MarketView", + "url": "/v1/software/marketview" + }, + { + "slug": "marlin", + "name": "Marlin", + "url": "/v1/software/marlin" + }, + { + "slug": "marq", + "name": "Marq", + "url": "/v1/software/marq" + }, + { + "slug": "mars-plm", + "name": "Mars PLM", + "url": "/v1/software/mars-plm" + }, + { + "slug": "mars-regional-atmospheric-modeling-system", + "name": "Mars regional atmospheric modeling system", + "url": "/v1/software/mars-regional-atmospheric-modeling-system" + }, + { + "slug": "mars24", + "name": "Mars24", + "url": "/v1/software/mars24" + }, + { + "slug": "marshall-plan", + "name": "Marshall Plan", + "url": "/v1/software/marshall-plan" + }, + { + "slug": "marxan", + "name": "Marxan", + "url": "/v1/software/marxan" + }, + { + "slug": "masheev", + "name": "Masheev", + "url": "/v1/software/masheev" + }, + { + "slug": "massmatrix", + "name": "MassMatrix", + "url": "/v1/software/massmatrix" + }, + { + "slug": "massmine", + "name": "MassMine", + "url": "/v1/software/massmine" + }, + { + "slug": "masstransit-project", + "name": "MassTransit-Project", + "url": "/v1/software/masstransit-project" + }, + { + "slug": "massive-pixel-environment", + "name": "Massive Pixel Environment", + "url": "/v1/software/massive-pixel-environment" + }, + { + "slug": "master-pdf-editor", + "name": "Master PDF Editor", + "url": "/v1/software/master-pdf-editor" + }, + { + "slug": "master-tracks-pro", + "name": "Master Tracks Pro", + "url": "/v1/software/master-tracks-pro" + }, + { + "slug": "mastercook", + "name": "MasterCook", + "url": "/v1/software/mastercook" + }, + { + "slug": "mastergear", + "name": "MasterGear", + "url": "/v1/software/mastergear" + }, + { + "slug": "masterplex-qt", + "name": "MasterPlex QT", + "url": "/v1/software/masterplex-qt" + }, + { + "slug": "masterplex-readerfit", + "name": "MasterPlex ReaderFit", + "url": "/v1/software/masterplex-readerfit" + }, + { + "slug": "mastercoin", + "name": "Mastercoin", + "url": "/v1/software/mastercoin" + }, + { + "slug": "masterpass", + "name": "Masterpass", + "url": "/v1/software/masterpass" + }, + { + "slug": "masterportal", + "name": "Masterportal", + "url": "/v1/software/masterportal" + }, + { + "slug": "matchlenz", + "name": "MatchLenz", + "url": "/v1/software/matchlenz" + }, + { + "slug": "matchware-mediator", + "name": "MatchWare Mediator", + "url": "/v1/software/matchware-mediator" + }, + { + "slug": "material-design", + "name": "Material Design", + "url": "/v1/software/material-design" + }, + { + "slug": "materialcenter", + "name": "MaterialCenter", + "url": "/v1/software/materialcenter" + }, + { + "slug": "math-blaster-master-the-basics", + "name": "Math Blaster Master the Basics", + "url": "/v1/software/math-blaster-master-the-basics" + }, + { + "slug": "math-o-mir", + "name": "Math-o-mir", + "url": "/v1/software/math-o-mir" + }, + { + "slug": "matheos", + "name": "MathEOS", + "url": "/v1/software/matheos" + }, + { + "slug": "mathgl", + "name": "MathGL", + "url": "/v1/software/mathgl" + }, + { + "slug": "mathmagic", + "name": "MathMagic", + "url": "/v1/software/mathmagic" + }, + { + "slug": "mathplayer", + "name": "MathPlayer", + "url": "/v1/software/mathplayer" + }, + { + "slug": "mathcad", + "name": "Mathcad", + "url": "/v1/software/mathcad" + }, + { + "slug": "mathletics", + "name": "Mathletics", + "url": "/v1/software/mathletics" + }, + { + "slug": "matific", + "name": "Matific", + "url": "/v1/software/matific" + }, + { + "slug": "matinno", + "name": "Matinno", + "url": "/v1/software/matinno" + }, + { + "slug": "matisse-light", + "name": "Matisse Light", + "url": "/v1/software/matisse-light" + }, + { + "slug": "matrix-prompt-injection-tool", + "name": "Matrix Prompt Injection Tool", + "url": "/v1/software/matrix-prompt-injection-tool" + }, + { + "slug": "matrix-template-library", + "name": "Matrix Template Library", + "url": "/v1/software/matrix-template-library" + }, + { + "slug": "matrox-simple-interface", + "name": "Matrox Simple Interface", + "url": "/v1/software/matrox-simple-interface" + }, + { + "slug": "maude-system", + "name": "Maude system", + "url": "/v1/software/maude-system" + }, + { + "slug": "maui-cluster-scheduler", + "name": "Maui Cluster Scheduler", + "url": "/v1/software/maui-cluster-scheduler" + }, + { + "slug": "mausezahn", + "name": "Mausezahn", + "url": "/v1/software/mausezahn" + }, + { + "slug": "maven-app-engine-plugin", + "name": "Maven App Engine Plugin", + "url": "/v1/software/maven-app-engine-plugin" + }, + { + "slug": "maxcluster", + "name": "MaxCluster", + "url": "/v1/software/maxcluster" + }, + { + "slug": "maxent", + "name": "Maxent", + "url": "/v1/software/maxent" + }, + { + "slug": "maxim-dl", + "name": "Maxim DL", + "url": "/v1/software/maxim-dl" + }, + { + "slug": "maximo", + "name": "Maximo", + "url": "/v1/software/maximo" + }, + { + "slug": "maxwell-render", + "name": "Maxwell Render", + "url": "/v1/software/maxwell-render" + }, + { + "slug": "mayan", + "name": "Mayan", + "url": "/v1/software/mayan" + }, + { + "slug": "mcafee-anti-virus", + "name": "McAfee Anti Virus", + "url": "/v1/software/mcafee-anti-virus" + }, + { + "slug": "mcafee-siteadvisor", + "name": "McAfee SiteAdvisor", + "url": "/v1/software/mcafee-siteadvisor" + }, + { + "slug": "mcafee-stinger", + "name": "McAfee Stinger", + "url": "/v1/software/mcafee-stinger" + }, + { + "slug": "mcbbs", + "name": "McBBS", + "url": "/v1/software/mcbbs" + }, + { + "slug": "mcool", + "name": "Mcool", + "url": "/v1/software/mcool" + }, + { + "slug": "megui", + "name": "MeGUI", + "url": "/v1/software/megui" + }, + { + "slug": "mevislab", + "name": "MeVisLab", + "url": "/v1/software/mevislab" + }, + { + "slug": "measure", + "name": "Measure", + "url": "/v1/software/measure" + }, + { + "slug": "measurement-studio", + "name": "Measurement Studio", + "url": "/v1/software/measurement-studio" + }, + { + "slug": "meatspace-chat", + "name": "Meatspace Chat", + "url": "/v1/software/meatspace-chat" + }, + { + "slug": "mechanical-desktop", + "name": "Mechanical Desktop", + "url": "/v1/software/mechanical-desktop" + }, + { + "slug": "mechanicalsoup", + "name": "MechanicalSoup", + "url": "/v1/software/mechanicalsoup" + }, + { + "slug": "medcalc", + "name": "MedCalc", + "url": "/v1/software/medcalc" + }, + { + "slug": "medtalk", + "name": "MedTalk", + "url": "/v1/software/medtalk" + }, + { + "slug": "meddies", + "name": "Meddies", + "url": "/v1/software/meddies" + }, + { + "slug": "medibang-paint", + "name": "MediBang Paint", + "url": "/v1/software/medibang-paint" + }, + { + "slug": "media-coach", + "name": "Media Coach", + "url": "/v1/software/media-coach" + }, + { + "slug": "media-creation-tool", + "name": "Media Creation Tool", + "url": "/v1/software/media-creation-tool" + }, + { + "slug": "media-share", + "name": "Media Share", + "url": "/v1/software/media-share" + }, + { + "slug": "mediahuman-audio-converter", + "name": "MediaHuman Audio Converter", + "url": "/v1/software/mediahuman-audio-converter" + }, + { + "slug": "mediaman", + "name": "MediaMan", + "url": "/v1/software/mediaman" + }, + { + "slug": "mediawiki-vagrant", + "name": "MediaWiki-Vagrant", + "url": "/v1/software/mediawiki-vagrant" + }, + { + "slug": "mediabot", + "name": "Mediabot", + "url": "/v1/software/mediabot" + }, + { + "slug": "medianalyst", + "name": "Medianalyst", + "url": "/v1/software/medianalyst" + }, + { + "slug": "mediathread", + "name": "Mediathread", + "url": "/v1/software/mediathread" + }, + { + "slug": "medibuntu", + "name": "Medibuntu", + "url": "/v1/software/medibuntu" + }, + { + "slug": "medical-reality-markup-language", + "name": "Medical Reality Markup Language", + "url": "/v1/software/medical-reality-markup-language" + }, + { + "slug": "meep", + "name": "Meep", + "url": "/v1/software/meep" + }, + { + "slug": "meerkat-app", + "name": "Meerkat App", + "url": "/v1/software/meerkat-app" + }, + { + "slug": "meeting-maker", + "name": "Meeting Maker", + "url": "/v1/software/meeting-maker" + }, + { + "slug": "meetro", + "name": "Meetro", + "url": "/v1/software/meetro" + }, + { + "slug": "megurine-luka", + "name": "Megurine Luka", + "url": "/v1/software/megurine-luka" + }, + { + "slug": "mehari", + "name": "Mehari", + "url": "/v1/software/mehari" + }, + { + "slug": "meitei-input-methods", + "name": "Meitei input methods", + "url": "/v1/software/meitei-input-methods" + }, + { + "slug": "meitu-pic", + "name": "Meitu Pic", + "url": "/v1/software/meitu-pic" + }, + { + "slug": "melodyne", + "name": "Melodyne", + "url": "/v1/software/melodyne" + }, + { + "slug": "melting", + "name": "Melting", + "url": "/v1/software/melting" + }, + { + "slug": "mempool", + "name": "MemPool", + "url": "/v1/software/mempool" + }, + { + "slug": "membershipworks", + "name": "MembershipWorks", + "url": "/v1/software/membershipworks" + }, + { + "slug": "memnar", + "name": "Memnar", + "url": "/v1/software/memnar" + }, + { + "slug": "memopal", + "name": "Memopal", + "url": "/v1/software/memopal" + }, + { + "slug": "memsource", + "name": "Memsource", + "url": "/v1/software/memsource" + }, + { + "slug": "mend-renovate", + "name": "Mend Renovate", + "url": "/v1/software/mend-renovate" + }, + { + "slug": "mend-renovate-cli", + "name": "Mend Renovate CLI", + "url": "/v1/software/mend-renovate-cli" + }, + { + "slug": "mental-ray", + "name": "Mental Ray", + "url": "/v1/software/mental-ray" + }, + { + "slug": "menu-blinking", + "name": "Menu blinking", + "url": "/v1/software/menu-blinking" + }, + { + "slug": "merc", + "name": "Merc", + "url": "/v1/software/merc" + }, + { + "slug": "mercury-browser", + "name": "Mercury Browser", + "url": "/v1/software/mercury-browser" + }, + { + "slug": "merli", + "name": "Merli", + "url": "/v1/software/merli" + }, + { + "slug": "merlin", + "name": "Merlin", + "url": "/v1/software/merlin" + }, + { + "slug": "mesamatrix", + "name": "Mesamatrix", + "url": "/v1/software/mesamatrix" + }, + { + "slug": "meshcore", + "name": "MeshCore", + "url": "/v1/software/meshcore" + }, + { + "slug": "meshdash", + "name": "MeshDash", + "url": "/v1/software/meshdash" + }, + { + "slug": "meshinspector", + "name": "MeshInspector", + "url": "/v1/software/meshinspector" + }, + { + "slug": "meshlib", + "name": "MeshLib", + "url": "/v1/software/meshlib" + }, + { + "slug": "mesosphere-inc", + "name": "Mesosphere Inc", + "url": "/v1/software/mesosphere-inc" + }, + { + "slug": "message-exchange-bus-mxb", + "name": "Message Exchange Bus (MXB)", + "url": "/v1/software/message-exchange-bus-mxb" + }, + { + "slug": "messenger-kids", + "name": "Messenger Kids", + "url": "/v1/software/messenger-kids" + }, + { + "slug": "messenger-mobile", + "name": "Messenger Mobile", + "url": "/v1/software/messenger-mobile" + }, + { + "slug": "meta-spark-studio", + "name": "Meta Spark Studio", + "url": "/v1/software/meta-spark-studio" + }, + { + "slug": "metaedit", + "name": "MetaEdit+", + "url": "/v1/software/metaedit" + }, + { + "slug": "metalith", + "name": "MetaLith", + "url": "/v1/software/metalith" + }, + { + "slug": "metastock", + "name": "MetaStock", + "url": "/v1/software/metastock" + }, + { + "slug": "metastock-d-c", + "name": "MetaStock D/C", + "url": "/v1/software/metastock-d-c" + }, + { + "slug": "metastock-r-t", + "name": "MetaStock R/T", + "url": "/v1/software/metastock-r-t" + }, + { + "slug": "metastock-xenith", + "name": "MetaStock XENITH", + "url": "/v1/software/metastock-xenith" + }, + { + "slug": "metateam", + "name": "MetaTeam", + "url": "/v1/software/metateam" + }, + { + "slug": "metatexis", + "name": "MetaTexis", + "url": "/v1/software/metatexis" + }, + { + "slug": "metatype1", + "name": "MetaType1", + "url": "/v1/software/metatype1" + }, + { + "slug": "metadata-facility-for-java", + "name": "Metadata Facility for Java", + "url": "/v1/software/metadata-facility-for-java" + }, + { + "slug": "metafacture", + "name": "Metafacture", + "url": "/v1/software/metafacture" + }, + { + "slug": "metahtml", + "name": "Metahtml", + "url": "/v1/software/metahtml" + }, + { + "slug": "metalmetric", + "name": "MetalMetric", + "url": "/v1/software/metalmetric" + }, + { + "slug": "metascape", + "name": "Metascape", + "url": "/v1/software/metascape" + }, + { + "slug": "metashape", + "name": "Metashape", + "url": "/v1/software/metashape" + }, + { + "slug": "metasploit", + "name": "Metasploit", + "url": "/v1/software/metasploit" + }, + { + "slug": "metatron-discovery", + "name": "Metatron discovery", + "url": "/v1/software/metatron-discovery" + }, + { + "slug": "meteodyn-wt", + "name": "Meteodyn WT", + "url": "/v1/software/meteodyn-wt" + }, + { + "slug": "metigo", + "name": "Metigo", + "url": "/v1/software/metigo" + }, + { + "slug": "metro", + "name": "Metro", + "url": "/v1/software/metro" + }, + { + "slug": "metview", + "name": "Metview", + "url": "/v1/software/metview" + }, + { + "slug": "mew", + "name": "Mew", + "url": "/v1/software/mew" + }, + { + "slug": "mikandi", + "name": "MiKandi", + "url": "/v1/software/mikandi" + }, + { + "slug": "mimeg", + "name": "MiMeG", + "url": "/v1/software/mimeg" + }, + { + "slug": "mimedia", + "name": "MiMedia", + "url": "/v1/software/mimedia" + }, + { + "slug": "mimic-simulation-software", + "name": "MiMiC Simulation Software", + "url": "/v1/software/mimic-simulation-software" + }, + { + "slug": "mioffice", + "name": "MiOffice", + "url": "/v1/software/mioffice" + }, + { + "slug": "mitap", + "name": "MiTAP", + "url": "/v1/software/mitap" + }, + { + "slug": "mixcr", + "name": "MiXCR", + "url": "/v1/software/mixcr" + }, + { + "slug": "miaopai", + "name": "Miaopai", + "url": "/v1/software/miaopai" + }, + { + "slug": "miarmy", + "name": "Miarmy", + "url": "/v1/software/miarmy" + }, + { + "slug": "mic-in-track", + "name": "Mic in track", + "url": "/v1/software/mic-in-track" + }, + { + "slug": "micahub", + "name": "Micahub", + "url": "/v1/software/micahub" + }, + { + "slug": "mickey-s-stickers-stuff-printing-fun-kit", + "name": "Mickey's Stickers & Stuff Printing Fun Kit", + "url": "/v1/software/mickey-s-stickers-stuff-printing-fun-kit" + }, + { + "slug": "microsiris", + "name": "MicrOsiris", + "url": "/v1/software/microsiris" + }, + { + "slug": "micro-saint-sharp", + "name": "Micro Saint Sharp", + "url": "/v1/software/micro-saint-sharp" + }, + { + "slug": "micro-frontend", + "name": "Micro frontend", + "url": "/v1/software/micro-frontend" + }, + { + "slug": "micro-cap", + "name": "Micro-Cap", + "url": "/v1/software/micro-cap" + }, + { + "slug": "micro-eyeball", + "name": "Micro-EYEBALL", + "url": "/v1/software/micro-eyeball" + }, + { + "slug": "micro-ocp", + "name": "Micro-OCP", + "url": "/v1/software/micro-ocp" + }, + { + "slug": "microb", + "name": "MicroB", + "url": "/v1/software/microb" + }, + { + "slug": "microc-os-ii", + "name": "MicroC/OS-II", + "url": "/v1/software/microc-os-ii" + }, + { + "slug": "microemulator", + "name": "MicroEmulator", + "url": "/v1/software/microemulator" + }, + { + "slug": "micromanager", + "name": "MicroManager", + "url": "/v1/software/micromanager" + }, + { + "slug": "microplanet-gravity", + "name": "MicroPlanet Gravity", + "url": "/v1/software/microplanet-gravity" + }, + { + "slug": "microplanner-x-pert", + "name": "MicroPlanner X-Pert", + "url": "/v1/software/microplanner-x-pert" + }, + { + "slug": "microstation", + "name": "MicroStation", + "url": "/v1/software/microstation" + }, + { + "slug": "microstrategy-analytics", + "name": "MicroStrategy Analytics", + "url": "/v1/software/microstrategy-analytics" + }, + { + "slug": "microxwin", + "name": "MicroXwin", + "url": "/v1/software/microxwin" + }, + { + "slug": "microalg", + "name": "Microalg", + "url": "/v1/software/microalg" + }, + { + "slug": "microchess", + "name": "Microchess", + "url": "/v1/software/microchess" + }, + { + "slug": "microsoft-access-2007", + "name": "Microsoft Access 2007", + "url": "/v1/software/microsoft-access-2007" + }, + { + "slug": "microsoft-agent", + "name": "Microsoft Agent", + "url": "/v1/software/microsoft-agent" + }, + { + "slug": "microsoft-amalga", + "name": "Microsoft Amalga", + "url": "/v1/software/microsoft-amalga" + }, + { + "slug": "microsoft-analysis-services", + "name": "Microsoft Analysis Services", + "url": "/v1/software/microsoft-analysis-services" + }, + { + "slug": "microsoft-app-v", + "name": "Microsoft App-V", + "url": "/v1/software/microsoft-app-v" + }, + { + "slug": "microsoft-authenticator", + "name": "Microsoft Authenticator", + "url": "/v1/software/microsoft-authenticator" + }, + { + "slug": "microsoft-autoroute", + "name": "Microsoft AutoRoute", + "url": "/v1/software/microsoft-autoroute" + }, + { + "slug": "microsoft-azure-quantum", + "name": "Microsoft Azure Quantum", + "url": "/v1/software/microsoft-azure-quantum" + }, + { + "slug": "microsoft-azure-sql-database", + "name": "Microsoft Azure SQL Database", + "url": "/v1/software/microsoft-azure-sql-database" + }, + { + "slug": "microsoft-backoffice-server", + "name": "Microsoft BackOffice Server", + "url": "/v1/software/microsoft-backoffice-server" + }, + { + "slug": "microsoft-baseline-security-analyzer", + "name": "Microsoft Baseline Security Analyzer", + "url": "/v1/software/microsoft-baseline-security-analyzer" + }, + { + "slug": "microsoft-basic-1-0", + "name": "Microsoft Basic 1.0", + "url": "/v1/software/microsoft-basic-1-0" + }, + { + "slug": "microsoft-biztalk-server", + "name": "Microsoft BizTalk Server", + "url": "/v1/software/microsoft-biztalk-server" + }, + { + "slug": "microsoft-bopomofo-ime", + "name": "Microsoft BoPoMoFo IME", + "url": "/v1/software/microsoft-bopomofo-ime" + }, + { + "slug": "microsoft-bookshelf", + "name": "Microsoft Bookshelf", + "url": "/v1/software/microsoft-bookshelf" + }, + { + "slug": "microsoft-clarity", + "name": "Microsoft Clarity", + "url": "/v1/software/microsoft-clarity" + }, + { + "slug": "microsoft-commerce-server", + "name": "Microsoft Commerce Server", + "url": "/v1/software/microsoft-commerce-server" + }, + { + "slug": "microsoft-cryptoapi", + "name": "Microsoft CryptoAPI", + "url": "/v1/software/microsoft-cryptoapi" + }, + { + "slug": "microsoft-customer-care-framework", + "name": "Microsoft Customer Care Framework", + "url": "/v1/software/microsoft-customer-care-framework" + }, + { + "slug": "microsoft-data-access-components", + "name": "Microsoft Data Access Components", + "url": "/v1/software/microsoft-data-access-components" + }, + { + "slug": "microsoft-delve", + "name": "Microsoft Delve", + "url": "/v1/software/microsoft-delve" + }, + { + "slug": "microsoft-diagnostics", + "name": "Microsoft Diagnostics", + "url": "/v1/software/microsoft-diagnostics" + }, + { + "slug": "microsoft-digital-image", + "name": "Microsoft Digital Image", + "url": "/v1/software/microsoft-digital-image" + }, + { + "slug": "microsoft-download-manager", + "name": "Microsoft Download Manager", + "url": "/v1/software/microsoft-download-manager" + }, + { + "slug": "microsoft-dynamics-365", + "name": "Microsoft Dynamics 365", + "url": "/v1/software/microsoft-dynamics-365" + }, + { + "slug": "microsoft-dynamics-365-business-central", + "name": "Microsoft Dynamics 365 Business Central", + "url": "/v1/software/microsoft-dynamics-365-business-central" + }, + { + "slug": "microsoft-dynamics-365-finance", + "name": "Microsoft Dynamics 365 Finance", + "url": "/v1/software/microsoft-dynamics-365-finance" + }, + { + "slug": "microsoft-dynamics-365-sales", + "name": "Microsoft Dynamics 365 Sales", + "url": "/v1/software/microsoft-dynamics-365-sales" + }, + { + "slug": "microsoft-dynamics-365-for-finance-and-operations", + "name": "Microsoft Dynamics 365 for Finance and Operations", + "url": "/v1/software/microsoft-dynamics-365-for-finance-and-operations" + }, + { + "slug": "microsoft-dynamics-ax", + "name": "Microsoft Dynamics AX", + "url": "/v1/software/microsoft-dynamics-ax" + }, + { + "slug": "microsoft-dynamics-c5", + "name": "Microsoft Dynamics C5", + "url": "/v1/software/microsoft-dynamics-c5" + }, + { + "slug": "microsoft-dynamics-gp", + "name": "Microsoft Dynamics GP", + "url": "/v1/software/microsoft-dynamics-gp" + }, + { + "slug": "microsoft-dynamics-nav", + "name": "Microsoft Dynamics NAV", + "url": "/v1/software/microsoft-dynamics-nav" + }, + { + "slug": "microsoft-dynamics-sl", + "name": "Microsoft Dynamics SL", + "url": "/v1/software/microsoft-dynamics-sl" + }, + { + "slug": "microsoft-encarta-98-research-organizer", + "name": "Microsoft Encarta 98 Research Organizer", + "url": "/v1/software/microsoft-encarta-98-research-organizer" + }, + { + "slug": "microsoft-endpoint-manager", + "name": "Microsoft Endpoint Manager", + "url": "/v1/software/microsoft-endpoint-manager" + }, + { + "slug": "microsoft-entourage", + "name": "Microsoft Entourage", + "url": "/v1/software/microsoft-entourage" + }, + { + "slug": "microsoft-excel-viewer", + "name": "Microsoft Excel Viewer", + "url": "/v1/software/microsoft-excel-viewer" + }, + { + "slug": "microsoft-excel-for-macintosh-and-power-macintosh-5-0", + "name": "Microsoft Excel for Macintosh and Power Macintosh 5.0", + "url": "/v1/software/microsoft-excel-for-macintosh-and-power-macintosh-5-0" + }, + { + "slug": "microsoft-exchange-server-2000", + "name": "Microsoft Exchange Server 2000", + "url": "/v1/software/microsoft-exchange-server-2000" + }, + { + "slug": "microsoft-exchange-server-2003", + "name": "Microsoft Exchange Server 2003", + "url": "/v1/software/microsoft-exchange-server-2003" + }, + { + "slug": "microsoft-exchange-server-2007", + "name": "Microsoft Exchange Server 2007", + "url": "/v1/software/microsoft-exchange-server-2007" + }, + { + "slug": "microsoft-exchange-server-2010", + "name": "Microsoft Exchange Server 2010", + "url": "/v1/software/microsoft-exchange-server-2010" + }, + { + "slug": "microsoft-exchange-server-4-0", + "name": "Microsoft Exchange Server 4.0", + "url": "/v1/software/microsoft-exchange-server-4-0" + }, + { + "slug": "microsoft-exchange-server-5-5", + "name": "Microsoft Exchange Server 5.5", + "url": "/v1/software/microsoft-exchange-server-5-5" + }, + { + "slug": "microsoft-expression-blend", + "name": "Microsoft Expression Blend", + "url": "/v1/software/microsoft-expression-blend" + }, + { + "slug": "microsoft-expression-encoder", + "name": "Microsoft Expression Encoder", + "url": "/v1/software/microsoft-expression-encoder" + }, + { + "slug": "microsoft-expression-web", + "name": "Microsoft Expression Web", + "url": "/v1/software/microsoft-expression-web" + }, + { + "slug": "microsoft-family-safety", + "name": "Microsoft Family Safety", + "url": "/v1/software/microsoft-family-safety" + }, + { + "slug": "microsoft-forefront-unified-access-gateway", + "name": "Microsoft Forefront Unified Access Gateway", + "url": "/v1/software/microsoft-forefront-unified-access-gateway" + }, + { + "slug": "microsoft-fresh-paint", + "name": "Microsoft Fresh Paint", + "url": "/v1/software/microsoft-fresh-paint" + }, + { + "slug": "microsoft-frontpage-2000", + "name": "Microsoft FrontPage 2000", + "url": "/v1/software/microsoft-frontpage-2000" + }, + { + "slug": "microsoft-frontpage-98", + "name": "Microsoft FrontPage 98", + "url": "/v1/software/microsoft-frontpage-98" + }, + { + "slug": "microsoft-healthvault", + "name": "Microsoft HealthVault", + "url": "/v1/software/microsoft-healthvault" + }, + { + "slug": "microsoft-help-viewer", + "name": "Microsoft Help Viewer", + "url": "/v1/software/microsoft-help-viewer" + }, + { + "slug": "microsoft-home", + "name": "Microsoft Home", + "url": "/v1/software/microsoft-home" + }, + { + "slug": "microsoft-ime", + "name": "Microsoft IME", + "url": "/v1/software/microsoft-ime" + }, + { + "slug": "microsoft-identity-integration-server", + "name": "Microsoft Identity Integration Server", + "url": "/v1/software/microsoft-identity-integration-server" + }, + { + "slug": "microsoft-indic-language-input-tool", + "name": "Microsoft Indic Language Input Tool", + "url": "/v1/software/microsoft-indic-language-input-tool" + }, + { + "slug": "microsoft-interconnect", + "name": "Microsoft InterConnect", + "url": "/v1/software/microsoft-interconnect" + }, + { + "slug": "microsoft-internet-security-and-acceleration-server", + "name": "Microsoft Internet Security and Acceleration Server", + "url": "/v1/software/microsoft-internet-security-and-acceleration-server" + }, + { + "slug": "microsoft-intune", + "name": "Microsoft Intune", + "url": "/v1/software/microsoft-intune" + }, + { + "slug": "microsoft-kaizala", + "name": "Microsoft Kaizala", + "url": "/v1/software/microsoft-kaizala" + }, + { + "slug": "microsoft-keyboard-layout-creator", + "name": "Microsoft Keyboard Layout Creator", + "url": "/v1/software/microsoft-keyboard-layout-creator" + }, + { + "slug": "microsoft-layer-for-unicode", + "name": "Microsoft Layer for Unicode", + "url": "/v1/software/microsoft-layer-for-unicode" + }, + { + "slug": "microsoft-live-labs-deepfish", + "name": "Microsoft Live Labs Deepfish", + "url": "/v1/software/microsoft-live-labs-deepfish" + }, + { + "slug": "microsoft-live-labs-listas", + "name": "Microsoft Live Labs Listas", + "url": "/v1/software/microsoft-live-labs-listas" + }, + { + "slug": "microsoft-live-labs-pivot", + "name": "Microsoft Live Labs Pivot", + "url": "/v1/software/microsoft-live-labs-pivot" + }, + { + "slug": "microsoft-loop", + "name": "Microsoft Loop", + "url": "/v1/software/microsoft-loop" + }, + { + "slug": "microsoft-mail", + "name": "Microsoft Mail", + "url": "/v1/software/microsoft-mail" + }, + { + "slug": "microsoft-mappoint", + "name": "Microsoft MapPoint", + "url": "/v1/software/microsoft-mappoint" + }, + { + "slug": "microsoft-mappoint-2000", + "name": "Microsoft MapPoint 2000", + "url": "/v1/software/microsoft-mappoint-2000" + }, + { + "slug": "microsoft-math-solver", + "name": "Microsoft Math Solver", + "url": "/v1/software/microsoft-math-solver" + }, + { + "slug": "microsoft-max", + "name": "Microsoft Max", + "url": "/v1/software/microsoft-max" + }, + { + "slug": "microsoft-mediaroom", + "name": "Microsoft Mediaroom", + "url": "/v1/software/microsoft-mediaroom" + }, + { + "slug": "microsoft-messaging", + "name": "Microsoft Messaging", + "url": "/v1/software/microsoft-messaging" + }, + { + "slug": "microsoft-money", + "name": "Microsoft Money", + "url": "/v1/software/microsoft-money" + }, + { + "slug": "microsoft-multimedia-viewer", + "name": "Microsoft Multimedia Viewer", + "url": "/v1/software/microsoft-multimedia-viewer" + }, + { + "slug": "microsoft-music-central", + "name": "Microsoft Music Central", + "url": "/v1/software/microsoft-music-central" + }, + { + "slug": "microsoft-musical-instruments", + "name": "Microsoft Musical Instruments", + "url": "/v1/software/microsoft-musical-instruments" + }, + { + "slug": "microsoft-network-monitor", + "name": "Microsoft Network Monitor", + "url": "/v1/software/microsoft-network-monitor" + }, + { + "slug": "microsoft-office-1-0", + "name": "Microsoft Office 1.0", + "url": "/v1/software/microsoft-office-1-0" + }, + { + "slug": "microsoft-office-1-5", + "name": "Microsoft Office 1.5", + "url": "/v1/software/microsoft-office-1-5" + }, + { + "slug": "microsoft-office-1-6", + "name": "Microsoft Office 1.6", + "url": "/v1/software/microsoft-office-1-6" + }, + { + "slug": "microsoft-office-2010", + "name": "Microsoft Office 2010", + "url": "/v1/software/microsoft-office-2010" + }, + { + "slug": "microsoft-office-2013", + "name": "Microsoft Office 2013", + "url": "/v1/software/microsoft-office-2013" + }, + { + "slug": "microsoft-office-2016-for-mac", + "name": "Microsoft Office 2016 for Mac", + "url": "/v1/software/microsoft-office-2016-for-mac" + }, + { + "slug": "microsoft-office-4-3", + "name": "Microsoft Office 4.3", + "url": "/v1/software/microsoft-office-4-3" + }, + { + "slug": "microsoft-office-4-x", + "name": "Microsoft Office 4.x", + "url": "/v1/software/microsoft-office-4-x" + }, + { + "slug": "microsoft-office-98-macintosh-edition", + "name": "Microsoft Office 98 Macintosh Edition", + "url": "/v1/software/microsoft-office-98-macintosh-edition" + }, + { + "slug": "microsoft-office-accounting", + "name": "Microsoft Office Accounting", + "url": "/v1/software/microsoft-office-accounting" + }, + { + "slug": "microsoft-office-communications-online", + "name": "Microsoft Office Communications Online", + "url": "/v1/software/microsoft-office-communications-online" + }, + { + "slug": "microsoft-office-communications-server", + "name": "Microsoft Office Communications Server", + "url": "/v1/software/microsoft-office-communications-server" + }, + { + "slug": "microsoft-office-communicator", + "name": "Microsoft Office Communicator", + "url": "/v1/software/microsoft-office-communicator" + }, + { + "slug": "microsoft-office-excel-2000", + "name": "Microsoft Office Excel 2000", + "url": "/v1/software/microsoft-office-excel-2000" + }, + { + "slug": "microsoft-office-excel-365", + "name": "Microsoft Office Excel 365", + "url": "/v1/software/microsoft-office-excel-365" + }, + { + "slug": "microsoft-office-forms-server", + "name": "Microsoft Office Forms Server", + "url": "/v1/software/microsoft-office-forms-server" + }, + { + "slug": "microsoft-office-frontpage-2002", + "name": "Microsoft Office FrontPage 2002", + "url": "/v1/software/microsoft-office-frontpage-2002" + }, + { + "slug": "microsoft-office-frontpage-2003", + "name": "Microsoft Office FrontPage 2003", + "url": "/v1/software/microsoft-office-frontpage-2003" + }, + { + "slug": "microsoft-office-frontpage-97", + "name": "Microsoft Office FrontPage 97", + "url": "/v1/software/microsoft-office-frontpage-97" + }, + { + "slug": "microsoft-office-groove-server", + "name": "Microsoft Office Groove Server", + "url": "/v1/software/microsoft-office-groove-server" + }, + { + "slug": "microsoft-office-infopath-2007", + "name": "Microsoft Office InfoPath 2007", + "url": "/v1/software/microsoft-office-infopath-2007" + }, + { + "slug": "microsoft-office-infopath-2013", + "name": "Microsoft Office InfoPath 2013", + "url": "/v1/software/microsoft-office-infopath-2013" + }, + { + "slug": "microsoft-office-live", + "name": "Microsoft Office Live", + "url": "/v1/software/microsoft-office-live" + }, + { + "slug": "microsoft-office-live-meeting", + "name": "Microsoft Office Live Meeting", + "url": "/v1/software/microsoft-office-live-meeting" + }, + { + "slug": "microsoft-office-onenote-2010", + "name": "Microsoft Office OneNote 2010", + "url": "/v1/software/microsoft-office-onenote-2010" + }, + { + "slug": "microsoft-office-onenote-2013", + "name": "Microsoft Office OneNote 2013", + "url": "/v1/software/microsoft-office-onenote-2013" + }, + { + "slug": "microsoft-office-outlook-2000", + "name": "Microsoft Office Outlook 2000", + "url": "/v1/software/microsoft-office-outlook-2000" + }, + { + "slug": "microsoft-office-outlook-2002", + "name": "Microsoft Office Outlook 2002", + "url": "/v1/software/microsoft-office-outlook-2002" + }, + { + "slug": "microsoft-office-outlook-2003", + "name": "Microsoft Office Outlook 2003", + "url": "/v1/software/microsoft-office-outlook-2003" + }, + { + "slug": "microsoft-office-outlook-2010", + "name": "Microsoft Office Outlook 2010", + "url": "/v1/software/microsoft-office-outlook-2010" + }, + { + "slug": "microsoft-office-outlook-2013", + "name": "Microsoft Office Outlook 2013", + "url": "/v1/software/microsoft-office-outlook-2013" + }, + { + "slug": "microsoft-office-outlook-97", + "name": "Microsoft Office Outlook 97", + "url": "/v1/software/microsoft-office-outlook-97" + }, + { + "slug": "microsoft-office-outlook-98", + "name": "Microsoft Office Outlook 98", + "url": "/v1/software/microsoft-office-outlook-98" + }, + { + "slug": "microsoft-office-outlook-web-access", + "name": "Microsoft Office Outlook Web Access", + "url": "/v1/software/microsoft-office-outlook-web-access" + }, + { + "slug": "microsoft-office-outlook-web-access-2003", + "name": "Microsoft Office Outlook Web Access 2003", + "url": "/v1/software/microsoft-office-outlook-web-access-2003" + }, + { + "slug": "microsoft-office-performancepoint-server", + "name": "Microsoft Office PerformancePoint Server", + "url": "/v1/software/microsoft-office-performancepoint-server" + }, + { + "slug": "microsoft-office-project-portfolio-server", + "name": "Microsoft Office Project Portfolio Server", + "url": "/v1/software/microsoft-office-project-portfolio-server" + }, + { + "slug": "microsoft-office-project-server", + "name": "Microsoft Office Project Server", + "url": "/v1/software/microsoft-office-project-server" + }, + { + "slug": "microsoft-office-publisher-2003", + "name": "Microsoft Office Publisher 2003", + "url": "/v1/software/microsoft-office-publisher-2003" + }, + { + "slug": "microsoft-office-sharepoint-server", + "name": "Microsoft Office SharePoint Server", + "url": "/v1/software/microsoft-office-sharepoint-server" + }, + { + "slug": "microsoft-office-word-2-0", + "name": "Microsoft Office Word 2.0", + "url": "/v1/software/microsoft-office-word-2-0" + }, + { + "slug": "microsoft-office-word-2000", + "name": "Microsoft Office Word 2000", + "url": "/v1/software/microsoft-office-word-2000" + }, + { + "slug": "microsoft-office-word-2002", + "name": "Microsoft Office Word 2002", + "url": "/v1/software/microsoft-office-word-2002" + }, + { + "slug": "microsoft-office-word-5-0", + "name": "Microsoft Office Word 5.0", + "url": "/v1/software/microsoft-office-word-5-0" + }, + { + "slug": "microsoft-office-word-6-0", + "name": "Microsoft Office Word 6.0", + "url": "/v1/software/microsoft-office-word-6-0" + }, + { + "slug": "microsoft-office-for-ipad", + "name": "Microsoft Office for iPad", + "url": "/v1/software/microsoft-office-for-ipad" + }, + { + "slug": "microsoft-office-shared-tools", + "name": "Microsoft Office shared tools", + "url": "/v1/software/microsoft-office-shared-tools" + }, + { + "slug": "microsoft-online-services", + "name": "Microsoft Online Services", + "url": "/v1/software/microsoft-online-services" + }, + { + "slug": "microsoft-outlook-hotmail-connector", + "name": "Microsoft Outlook Hotmail Connector", + "url": "/v1/software/microsoft-outlook-hotmail-connector" + }, + { + "slug": "microsoft-pc-manager", + "name": "Microsoft PC Manager", + "url": "/v1/software/microsoft-pc-manager" + }, + { + "slug": "microsoft-pinyin-ime", + "name": "Microsoft Pinyin IME", + "url": "/v1/software/microsoft-pinyin-ime" + }, + { + "slug": "microsoft-planner", + "name": "Microsoft Planner", + "url": "/v1/software/microsoft-planner" + }, + { + "slug": "microsoft-plus", + "name": "Microsoft Plus!", + "url": "/v1/software/microsoft-plus" + }, + { + "slug": "microsoft-power-apps", + "name": "Microsoft Power Apps", + "url": "/v1/software/microsoft-power-apps" + }, + { + "slug": "microsoft-power-automate", + "name": "Microsoft Power Automate", + "url": "/v1/software/microsoft-power-automate" + }, + { + "slug": "microsoft-power-bi", + "name": "Microsoft Power BI", + "url": "/v1/software/microsoft-power-bi" + }, + { + "slug": "microsoft-power-platform", + "name": "Microsoft Power Platform", + "url": "/v1/software/microsoft-power-platform" + }, + { + "slug": "microsoft-powerpoint-2010", + "name": "Microsoft PowerPoint 2010", + "url": "/v1/software/microsoft-powerpoint-2010" + }, + { + "slug": "microsoft-powerpoint-2013", + "name": "Microsoft PowerPoint 2013", + "url": "/v1/software/microsoft-powerpoint-2013" + }, + { + "slug": "microsoft-powerpoint-2016", + "name": "Microsoft PowerPoint 2016", + "url": "/v1/software/microsoft-powerpoint-2016" + }, + { + "slug": "microsoft-powerpoint-2019", + "name": "Microsoft PowerPoint 2019", + "url": "/v1/software/microsoft-powerpoint-2019" + }, + { + "slug": "microsoft-powerpoint-2021", + "name": "Microsoft PowerPoint 2021", + "url": "/v1/software/microsoft-powerpoint-2021" + }, + { + "slug": "microsoft-powerpoint-4-0", + "name": "Microsoft PowerPoint 4.0", + "url": "/v1/software/microsoft-powerpoint-4-0" + }, + { + "slug": "microsoft-powerpoint-7-0", + "name": "Microsoft PowerPoint 7.0", + "url": "/v1/software/microsoft-powerpoint-7-0" + }, + { + "slug": "microsoft-powerpoint-97", + "name": "Microsoft PowerPoint 97", + "url": "/v1/software/microsoft-powerpoint-97" + }, + { + "slug": "microsoft-powerpoint-3-0-for-mac", + "name": "Microsoft Powerpoint 3.0 for Mac", + "url": "/v1/software/microsoft-powerpoint-3-0-for-mac" + }, + { + "slug": "microsoft-private-folder", + "name": "Microsoft Private Folder", + "url": "/v1/software/microsoft-private-folder" + }, + { + "slug": "microsoft-producer-for-powerpoint", + "name": "Microsoft Producer for PowerPoint", + "url": "/v1/software/microsoft-producer-for-powerpoint" + }, + { + "slug": "microsoft-project-2000", + "name": "Microsoft Project 2000", + "url": "/v1/software/microsoft-project-2000" + }, + { + "slug": "microsoft-project-2003", + "name": "Microsoft Project 2003", + "url": "/v1/software/microsoft-project-2003" + }, + { + "slug": "microsoft-project-2007", + "name": "Microsoft Project 2007", + "url": "/v1/software/microsoft-project-2007" + }, + { + "slug": "microsoft-project-2010", + "name": "Microsoft Project 2010", + "url": "/v1/software/microsoft-project-2010" + }, + { + "slug": "microsoft-project-2010-server", + "name": "Microsoft Project 2010 Server", + "url": "/v1/software/microsoft-project-2010-server" + }, + { + "slug": "microsoft-project-2013", + "name": "Microsoft Project 2013", + "url": "/v1/software/microsoft-project-2013" + }, + { + "slug": "microsoft-project-4", + "name": "Microsoft Project 4", + "url": "/v1/software/microsoft-project-4" + }, + { + "slug": "microsoft-project-98", + "name": "Microsoft Project 98", + "url": "/v1/software/microsoft-project-98" + }, + { + "slug": "microsoft-publisher-98", + "name": "Microsoft Publisher 98", + "url": "/v1/software/microsoft-publisher-98" + }, + { + "slug": "microsoft-push-notification-service", + "name": "Microsoft Push Notification Service", + "url": "/v1/software/microsoft-push-notification-service" + }, + { + "slug": "microsoft-reader", + "name": "Microsoft Reader", + "url": "/v1/software/microsoft-reader" + }, + { + "slug": "microsoft-robotics-developer-studio", + "name": "Microsoft Robotics Developer Studio", + "url": "/v1/software/microsoft-robotics-developer-studio" + }, + { + "slug": "microsoft-seal", + "name": "Microsoft SEAL", + "url": "/v1/software/microsoft-seal" + }, + { + "slug": "microsoft-security-copilot", + "name": "Microsoft Security Copilot", + "url": "/v1/software/microsoft-security-copilot" + }, + { + "slug": "microsoft-sharepoint-2010", + "name": "Microsoft SharePoint 2010", + "url": "/v1/software/microsoft-sharepoint-2010" + }, + { + "slug": "microsoft-sharepoint-foundation", + "name": "Microsoft SharePoint Foundation", + "url": "/v1/software/microsoft-sharepoint-foundation" + }, + { + "slug": "microsoft-sharepoint-foundation-2010", + "name": "Microsoft SharePoint Foundation 2010", + "url": "/v1/software/microsoft-sharepoint-foundation-2010" + }, + { + "slug": "microsoft-site-server", + "name": "Microsoft Site Server", + "url": "/v1/software/microsoft-site-server" + }, + { + "slug": "microsoft-sort", + "name": "Microsoft Sort", + "url": "/v1/software/microsoft-sort" + }, + { + "slug": "microsoft-staffhub", + "name": "Microsoft StaffHub", + "url": "/v1/software/microsoft-staffhub" + }, + { + "slug": "microsoft-stream", + "name": "Microsoft Stream", + "url": "/v1/software/microsoft-stream" + }, + { + "slug": "microsoft-streets-trips", + "name": "Microsoft Streets & Trips", + "url": "/v1/software/microsoft-streets-trips" + }, + { + "slug": "microsoft-student", + "name": "Microsoft Student", + "url": "/v1/software/microsoft-student" + }, + { + "slug": "microsoft-surface", + "name": "Microsoft Surface", + "url": "/v1/software/microsoft-surface" + }, + { + "slug": "microsoft-tv", + "name": "Microsoft TV", + "url": "/v1/software/microsoft-tv" + }, + { + "slug": "microsoft-theme-packager", + "name": "Microsoft Theme Packager", + "url": "/v1/software/microsoft-theme-packager" + }, + { + "slug": "microsoft-undelete-for-windows", + "name": "Microsoft Undelete for Windows", + "url": "/v1/software/microsoft-undelete-for-windows" + }, + { + "slug": "microsoft-v-chat", + "name": "Microsoft V-Chat", + "url": "/v1/software/microsoft-v-chat" + }, + { + "slug": "microsoft-vine", + "name": "Microsoft Vine", + "url": "/v1/software/microsoft-vine" + }, + { + "slug": "microsoft-virtual-pc", + "name": "Microsoft Virtual PC", + "url": "/v1/software/microsoft-virtual-pc" + }, + { + "slug": "microsoft-visio-2003", + "name": "Microsoft Visio 2003", + "url": "/v1/software/microsoft-visio-2003" + }, + { + "slug": "microsoft-visio-2007", + "name": "Microsoft Visio 2007", + "url": "/v1/software/microsoft-visio-2007" + }, + { + "slug": "microsoft-visio-2010", + "name": "Microsoft Visio 2010", + "url": "/v1/software/microsoft-visio-2010" + }, + { + "slug": "microsoft-visio-2013", + "name": "Microsoft Visio 2013", + "url": "/v1/software/microsoft-visio-2013" + }, + { + "slug": "microsoft-visio-5-0", + "name": "Microsoft Visio 5.0", + "url": "/v1/software/microsoft-visio-5-0" + }, + { + "slug": "microsoft-visual-c-1-0", + "name": "Microsoft Visual C++ 1.0", + "url": "/v1/software/microsoft-visual-c-1-0" + }, + { + "slug": "microsoft-visual-c-5-0", + "name": "Microsoft Visual C++ 5.0", + "url": "/v1/software/microsoft-visual-c-5-0" + }, + { + "slug": "microsoft-visual-c-6-0", + "name": "Microsoft Visual C++ 6.0", + "url": "/v1/software/microsoft-visual-c-6-0" + }, + { + "slug": "microsoft-visual-c-net", + "name": "Microsoft Visual C++.NET", + "url": "/v1/software/microsoft-visual-c-net" + }, + { + "slug": "microsoft-visual-foxpro", + "name": "Microsoft Visual FoxPro", + "url": "/v1/software/microsoft-visual-foxpro" + }, + { + "slug": "microsoft-visual-foxpro-3-0", + "name": "Microsoft Visual FoxPro 3.0", + "url": "/v1/software/microsoft-visual-foxpro-3-0" + }, + { + "slug": "microsoft-visual-foxpro-5-0", + "name": "Microsoft Visual FoxPro 5.0", + "url": "/v1/software/microsoft-visual-foxpro-5-0" + }, + { + "slug": "microsoft-visual-foxpro-6-0", + "name": "Microsoft Visual FoxPro 6.0", + "url": "/v1/software/microsoft-visual-foxpro-6-0" + }, + { + "slug": "microsoft-visual-foxpro-7-0", + "name": "Microsoft Visual FoxPro 7.0", + "url": "/v1/software/microsoft-visual-foxpro-7-0" + }, + { + "slug": "microsoft-visual-modeler", + "name": "Microsoft Visual Modeler", + "url": "/v1/software/microsoft-visual-modeler" + }, + { + "slug": "microsoft-visual-sourcesafe", + "name": "Microsoft Visual SourceSafe", + "url": "/v1/software/microsoft-visual-sourcesafe" + }, + { + "slug": "microsoft-visual-studio-net", + "name": "Microsoft Visual Studio .NET", + "url": "/v1/software/microsoft-visual-studio-net" + }, + { + "slug": "microsoft-visual-studio-2008", + "name": "Microsoft Visual Studio 2008", + "url": "/v1/software/microsoft-visual-studio-2008" + }, + { + "slug": "microsoft-visual-studio-2010", + "name": "Microsoft Visual Studio 2010", + "url": "/v1/software/microsoft-visual-studio-2010" + }, + { + "slug": "microsoft-visual-studio-2017", + "name": "Microsoft Visual Studio 2017", + "url": "/v1/software/microsoft-visual-studio-2017" + }, + { + "slug": "microsoft-visual-studio-lightswitch", + "name": "Microsoft Visual Studio LightSwitch", + "url": "/v1/software/microsoft-visual-studio-lightswitch" + }, + { + "slug": "microsoft-vizact", + "name": "Microsoft Vizact", + "url": "/v1/software/microsoft-vizact" + }, + { + "slug": "microsoft-voice-command", + "name": "Microsoft Voice Command", + "url": "/v1/software/microsoft-voice-command" + }, + { + "slug": "microsoft-wallet", + "name": "Microsoft Wallet", + "url": "/v1/software/microsoft-wallet" + }, + { + "slug": "microsoft-web-platform-installer", + "name": "Microsoft Web Platform Installer", + "url": "/v1/software/microsoft-web-platform-installer" + }, + { + "slug": "microsoft-whiteboard", + "name": "Microsoft Whiteboard", + "url": "/v1/software/microsoft-whiteboard" + }, + { + "slug": "microsoft-word-97", + "name": "Microsoft Word 97", + "url": "/v1/software/microsoft-word-97" + }, + { + "slug": "microsoft-word-viewer", + "name": "Microsoft Word Viewer", + "url": "/v1/software/microsoft-word-viewer" + }, + { + "slug": "microsoft-works-4-0", + "name": "Microsoft Works 4.0", + "url": "/v1/software/microsoft-works-4-0" + }, + { + "slug": "microsoft-adcenter-analytics", + "name": "Microsoft adCenter Analytics", + "url": "/v1/software/microsoft-adcenter-analytics" + }, + { + "slug": "microsoft-mobile-services", + "name": "Microsoft mobile services", + "url": "/v1/software/microsoft-mobile-services" + }, + { + "slug": "microsoft-pubcenter", + "name": "Microsoft pubCenter", + "url": "/v1/software/microsoft-pubcenter" + }, + { + "slug": "midasai", + "name": "MidasAI", + "url": "/v1/software/midasai" + }, + { + "slug": "midaswww", + "name": "MidasWWW", + "url": "/v1/software/midaswww" + }, + { + "slug": "middleware-for-robotic-applications", + "name": "Middleware for Robotic Applications", + "url": "/v1/software/middleware-for-robotic-applications" + }, + { + "slug": "miga-data-viewer", + "name": "Miga Data Viewer", + "url": "/v1/software/miga-data-viewer" + }, + { + "slug": "migration-assistant", + "name": "Migration Assistant", + "url": "/v1/software/migration-assistant" + }, + { + "slug": "miiget", + "name": "Miiget", + "url": "/v1/software/miiget" + }, + { + "slug": "mika-vm", + "name": "Mika VM", + "url": "/v1/software/mika-vm" + }, + { + "slug": "miki", + "name": "Miki", + "url": "/v1/software/miki" + }, + { + "slug": "mikrosim", + "name": "MikroSim", + "url": "/v1/software/mikrosim" + }, + { + "slug": "mildom", + "name": "Mildom", + "url": "/v1/software/mildom" + }, + { + "slug": "miles-sound-system", + "name": "Miles Sound System", + "url": "/v1/software/miles-sound-system" + }, + { + "slug": "milestones-professional", + "name": "Milestones Professional", + "url": "/v1/software/milestones-professional" + }, + { + "slug": "milkshape-3d", + "name": "MilkShape 3D", + "url": "/v1/software/milkshape-3d" + }, + { + "slug": "millennium-exchange", + "name": "Millennium Exchange", + "url": "/v1/software/millennium-exchange" + }, + { + "slug": "milvus", + "name": "Milvus", + "url": "/v1/software/milvus" + }, + { + "slug": "mimorian", + "name": "Mimorian", + "url": "/v1/software/mimorian" + }, + { + "slug": "minbar", + "name": "Minbar", + "url": "/v1/software/minbar" + }, + { + "slug": "minbif", + "name": "Minbif", + "url": "/v1/software/minbif" + }, + { + "slug": "mind-vector", + "name": "Mind Vector", + "url": "/v1/software/mind-vector" + }, + { + "slug": "mind-s-eye", + "name": "Mind's Eye", + "url": "/v1/software/mind-s-eye" + }, + { + "slug": "minddecider", + "name": "MindDecider", + "url": "/v1/software/minddecider" + }, + { + "slug": "mindgenius", + "name": "MindGenius", + "url": "/v1/software/mindgenius" + }, + { + "slug": "mindmanager", + "name": "MindManager", + "url": "/v1/software/mindmanager" + }, + { + "slug": "mindmap-lx", + "name": "MindMap/LX", + "url": "/v1/software/mindmap-lx" + }, + { + "slug": "mindmaple", + "name": "MindMaple", + "url": "/v1/software/mindmaple" + }, + { + "slug": "mindmapper", + "name": "MindMapper", + "url": "/v1/software/mindmapper" + }, + { + "slug": "mindmaster", + "name": "MindMaster", + "url": "/v1/software/mindmaster" + }, + { + "slug": "mindmeister", + "name": "MindMeister", + "url": "/v1/software/mindmeister" + }, + { + "slug": "mindview", + "name": "MindView", + "url": "/v1/software/mindview" + }, + { + "slug": "mindwrite", + "name": "MindWrite", + "url": "/v1/software/mindwrite" + }, + { + "slug": "mindomo", + "name": "Mindomo", + "url": "/v1/software/mindomo" + }, + { + "slug": "mindsdb", + "name": "MindsDB", + "url": "/v1/software/mindsdb" + }, + { + "slug": "mineral-waste-manager", + "name": "Mineral Waste Manager", + "url": "/v1/software/mineral-waste-manager" + }, + { + "slug": "mineralsoft", + "name": "MineralSoft", + "url": "/v1/software/mineralsoft" + }, + { + "slug": "minerva", + "name": "Minerva", + "url": "/v1/software/minerva" + }, + { + "slug": "mingle", + "name": "Mingle", + "url": "/v1/software/mingle" + }, + { + "slug": "mingw-w64", + "name": "Mingw-w64", + "url": "/v1/software/mingw-w64" + }, + { + "slug": "mini-office-ii", + "name": "Mini Office II", + "url": "/v1/software/mini-office-ii" + }, + { + "slug": "minidlna", + "name": "MiniDLNA", + "url": "/v1/software/minidlna" + }, + { + "slug": "minigui", + "name": "MiniGUI", + "url": "/v1/software/minigui" + }, + { + "slug": "minipanzer-and-megapanzer", + "name": "MiniPanzer and MegaPanzer", + "url": "/v1/software/minipanzer-and-megapanzer" + }, + { + "slug": "minitsfo", + "name": "MiniTSFO", + "url": "/v1/software/minitsfo" + }, + { + "slug": "minitool-partition-wizard", + "name": "MiniTool Partition Wizard", + "url": "/v1/software/minitool-partition-wizard" + }, + { + "slug": "minicare", + "name": "Minicare", + "url": "/v1/software/minicare" + }, + { + "slug": "minitube", + "name": "Minitube", + "url": "/v1/software/minitube" + }, + { + "slug": "minix-vmd", + "name": "Minix-vmd", + "url": "/v1/software/minix-vmd" + }, + { + "slug": "min-per-smies", + "name": "Minä Peräsmies", + "url": "/v1/software/min-per-smies" + }, + { + "slug": "mirage-world", + "name": "Mirage World", + "url": "/v1/software/mirage-world" + }, + { + "slug": "mirageos", + "name": "MirageOS", + "url": "/v1/software/mirageos" + }, + { + "slug": "mirek-s-cellebration", + "name": "Mirek's Cellebration", + "url": "/v1/software/mirek-s-cellebration" + }, + { + "slug": "mirrativ", + "name": "Mirrativ", + "url": "/v1/software/mirrativ" + }, + { + "slug": "mirror", + "name": "Mirror", + "url": "/v1/software/mirror" + }, + { + "slug": "mirth-connect", + "name": "Mirth Connect", + "url": "/v1/software/mirth-connect" + }, + { + "slug": "misata", + "name": "Misata", + "url": "/v1/software/misata" + }, + { + "slug": "mission-control", + "name": "Mission Control", + "url": "/v1/software/mission-control" + }, + { + "slug": "mistral", + "name": "Mistral", + "url": "/v1/software/mistral" + }, + { + "slug": "mitid", + "name": "MitID", + "url": "/v1/software/mitid" + }, + { + "slug": "mitaka", + "name": "Mitaka", + "url": "/v1/software/mitaka" + }, + { + "slug": "mitsumori-lab", + "name": "Mitsumori Lab", + "url": "/v1/software/mitsumori-lab" + }, + { + "slug": "mitsurugi-kamui-hikae", + "name": "Mitsurugi Kamui Hikae", + "url": "/v1/software/mitsurugi-kamui-hikae" + }, + { + "slug": "mixbit", + "name": "MixBit", + "url": "/v1/software/mixbit" + }, + { + "slug": "mixmeister", + "name": "MixMeister", + "url": "/v1/software/mixmeister" + }, + { + "slug": "mixradio", + "name": "MixRadio", + "url": "/v1/software/mixradio" + }, + { + "slug": "mixcraft", + "name": "Mixcraft", + "url": "/v1/software/mixcraft" + }, + { + "slug": "mixed-reality-toolkit", + "name": "Mixed Reality Toolkit", + "url": "/v1/software/mixed-reality-toolkit" + }, + { + "slug": "mixer-app", + "name": "Mixer (app)", + "url": "/v1/software/mixer-app" + }, + { + "slug": "mixmaster-anonymous-remailer", + "name": "Mixmaster anonymous remailer", + "url": "/v1/software/mixmaster-anonymous-remailer" + }, + { + "slug": "mizar", + "name": "Mizar", + "url": "/v1/software/mizar" + }, + { + "slug": "mnemomap", + "name": "Mnemomap", + "url": "/v1/software/mnemomap" + }, + { + "slug": "mnet", + "name": "Mnet", + "url": "/v1/software/mnet" + }, + { + "slug": "mofa-mitra", + "name": "MoFA Mitra", + "url": "/v1/software/mofa-mitra" + }, + { + "slug": "mogo", + "name": "MoGo", + "url": "/v1/software/mogo" + }, + { + "slug": "moab-cluster-suite", + "name": "Moab Cluster Suite", + "url": "/v1/software/moab-cluster-suite" + }, + { + "slug": "mobaxterm", + "name": "MobaXterm", + "url": "/v1/software/mobaxterm" + }, + { + "slug": "mobile-market", + "name": "Mobile Market", + "url": "/v1/software/mobile-market" + }, + { + "slug": "mobile-vocaloid-editor", + "name": "Mobile Vocaloid Editor", + "url": "/v1/software/mobile-vocaloid-editor" + }, + { + "slug": "mobile-code", + "name": "Mobile code", + "url": "/v1/software/mobile-code" + }, + { + "slug": "mobile-dialer", + "name": "Mobile dialer", + "url": "/v1/software/mobile-dialer" + }, + { + "slug": "mobilecoin", + "name": "MobileCoin", + "url": "/v1/software/mobilecoin" + }, + { + "slug": "mobilepay", + "name": "MobilePay", + "url": "/v1/software/mobilepay" + }, + { + "slug": "mobileum", + "name": "Mobileum", + "url": "/v1/software/mobileum" + }, + { + "slug": "mobiola", + "name": "Mobiola", + "url": "/v1/software/mobiola" + }, + { + "slug": "mobirise", + "name": "Mobirise", + "url": "/v1/software/mobirise" + }, + { + "slug": "mobis", + "name": "Mobis", + "url": "/v1/software/mobis" + }, + { + "slug": "mobizen", + "name": "Mobizen", + "url": "/v1/software/mobizen" + }, + { + "slug": "mochiview", + "name": "MochiView", + "url": "/v1/software/mochiview" + }, + { + "slug": "mockiato", + "name": "Mockiato", + "url": "/v1/software/mockiato" + }, + { + "slug": "mocl", + "name": "Mocl", + "url": "/v1/software/mocl" + }, + { + "slug": "mocolo", + "name": "Mocolo", + "url": "/v1/software/mocolo" + }, + { + "slug": "mod4win", + "name": "Mod4Win", + "url": "/v1/software/mod4win" + }, + { + "slug": "modefrontier", + "name": "ModeFRONTIER", + "url": "/v1/software/modefrontier" + }, + { + "slug": "model-development-tools-mdt", + "name": "Model Development Tools (MDT)", + "url": "/v1/software/model-development-tools-mdt" + }, + { + "slug": "model-to-text-m2t", + "name": "Model To Text (M2T)", + "url": "/v1/software/model-to-text-m2t" + }, + { + "slug": "model-for-prediction-across-scales", + "name": "Model for Prediction Across Scales", + "url": "/v1/software/model-for-prediction-across-scales" + }, + { + "slug": "model-synthesis", + "name": "Model synthesis", + "url": "/v1/software/model-synthesis" + }, + { + "slug": "model-based-analysis-for-chip-seq", + "name": "Model-based Analysis for ChIP-Seq", + "url": "/v1/software/model-based-analysis-for-chip-seq" + }, + { + "slug": "model-to-model-transformation-mmt", + "name": "Model-to-Model Transformation (MMT)", + "url": "/v1/software/model-to-model-transformation-mmt" + }, + { + "slug": "modelsim", + "name": "ModelSim", + "url": "/v1/software/modelsim" + }, + { + "slug": "models-and-counter-examples", + "name": "Models And Counter-Examples", + "url": "/v1/software/models-and-counter-examples" + }, + { + "slug": "modeltest", + "name": "Modeltest", + "url": "/v1/software/modeltest" + }, + { + "slug": "modelur", + "name": "Modelur", + "url": "/v1/software/modelur" + }, + { + "slug": "modest-maps", + "name": "Modest Maps", + "url": "/v1/software/modest-maps" + }, + { + "slug": "modul8", + "name": "Modul8", + "url": "/v1/software/modul8" + }, + { + "slug": "moj", + "name": "Moj", + "url": "/v1/software/moj" + }, + { + "slug": "mojopac", + "name": "MojoPac", + "url": "/v1/software/mojopac" + }, + { + "slug": "moksha", + "name": "Moksha", + "url": "/v1/software/moksha" + }, + { + "slug": "molide", + "name": "MolIDE", + "url": "/v1/software/molide" + }, + { + "slug": "molden", + "name": "Molden", + "url": "/v1/software/molden" + }, + { + "slug": "molecular-evolutionary-genetics-analysis", + "name": "Molecular Evolutionary Genetics Analysis", + "url": "/v1/software/molecular-evolutionary-genetics-analysis" + }, + { + "slug": "molecular-modelling-toolkit", + "name": "Molecular Modelling Toolkit", + "url": "/v1/software/molecular-modelling-toolkit" + }, + { + "slug": "molecular-simulation-2", + "name": "Molecular simulation 2", + "url": "/v1/software/molecular-simulation-2" + }, + { + "slug": "moltos", + "name": "MoltOS", + "url": "/v1/software/moltos" + }, + { + "slug": "moltpe", + "name": "MoltPe", + "url": "/v1/software/moltpe" + }, + { + "slug": "moltenvk", + "name": "MoltenVK", + "url": "/v1/software/moltenvk" + }, + { + "slug": "moments", + "name": "Moments", + "url": "/v1/software/moments" + }, + { + "slug": "momentum", + "name": "Momentum", + "url": "/v1/software/momentum" + }, + { + "slug": "momo", + "name": "Momo", + "url": "/v1/software/momo" + }, + { + "slug": "monesa", + "name": "Monesa", + "url": "/v1/software/monesa" + }, + { + "slug": "money", + "name": "Money", + "url": "/v1/software/money" + }, + { + "slug": "moneywiz", + "name": "MoneyWiz", + "url": "/v1/software/moneywiz" + }, + { + "slug": "moneydance", + "name": "Moneydance", + "url": "/v1/software/moneydance" + }, + { + "slug": "mongoose", + "name": "Mongoose", + "url": "/v1/software/mongoose" + }, + { + "slug": "mongoose-os", + "name": "Mongoose OS", + "url": "/v1/software/mongoose-os" + }, + { + "slug": "moniwiki", + "name": "MoniWiki", + "url": "/v1/software/moniwiki" + }, + { + "slug": "monkeyjam", + "name": "MonkeyJam", + "url": "/v1/software/monkeyjam" + }, + { + "slug": "monorail", + "name": "MonoRail", + "url": "/v1/software/monorail" + }, + { + "slug": "monobjc", + "name": "Monobjc", + "url": "/v1/software/monobjc" + }, + { + "slug": "monosnap", + "name": "Monosnap", + "url": "/v1/software/monosnap" + }, + { + "slug": "montaic", + "name": "Montaic", + "url": "/v1/software/montaic" + }, + { + "slug": "monte-carlo-n-particle-transport-code", + "name": "Monte Carlo N-Particle Transport Code", + "url": "/v1/software/monte-carlo-n-particle-transport-code" + }, + { + "slug": "moog", + "name": "Moog", + "url": "/v1/software/moog" + }, + { + "slug": "moog-model-15", + "name": "Moog Model 15", + "url": "/v1/software/moog-model-15" + }, + { + "slug": "moon-modeler", + "name": "Moon Modeler", + "url": "/v1/software/moon-modeler" + }, + { + "slug": "moon-buggy", + "name": "Moon-Buggy", + "url": "/v1/software/moon-buggy" + }, + { + "slug": "moonbounce", + "name": "MoonBounce", + "url": "/v1/software/moonbounce" + }, + { + "slug": "moonshell", + "name": "MoonShell", + "url": "/v1/software/moonshell" + }, + { + "slug": "moosic", + "name": "Moosic", + "url": "/v1/software/moosic" + }, + { + "slug": "moovit", + "name": "Moovit", + "url": "/v1/software/moovit" + }, + { + "slug": "moovnt", + "name": "Moovnt", + "url": "/v1/software/moovnt" + }, + { + "slug": "mop-com", + "name": "Mop.com", + "url": "/v1/software/mop-com" + }, + { + "slug": "mopo", + "name": "Mopo", + "url": "/v1/software/mopo" + }, + { + "slug": "moqui", + "name": "Moqui", + "url": "/v1/software/moqui" + }, + { + "slug": "morfeusz-2", + "name": "Morfeusz 2", + "url": "/v1/software/morfeusz-2" + }, + { + "slug": "morla", + "name": "Morla", + "url": "/v1/software/morla" + }, + { + "slug": "morning-coffee", + "name": "Morning Coffee", + "url": "/v1/software/morning-coffee" + }, + { + "slug": "morphadorner", + "name": "MorphAdorner", + "url": "/v1/software/morphadorner" + }, + { + "slug": "morphgear", + "name": "MorphGear", + "url": "/v1/software/morphgear" + }, + { + "slug": "morpheus", + "name": "Morpheus", + "url": "/v1/software/morpheus" + }, + { + "slug": "morphobank", + "name": "Morphobank", + "url": "/v1/software/morphobank" + }, + { + "slug": "motherduck", + "name": "MotherDuck", + "url": "/v1/software/motherduck" + }, + { + "slug": "motherboard-monitor", + "name": "Motherboard Monitor", + "url": "/v1/software/motherboard-monitor" + }, + { + "slug": "motor-cad", + "name": "Motor-CAD", + "url": "/v1/software/motor-cad" + }, + { + "slug": "motordesk", + "name": "MotorDesk", + "url": "/v1/software/motordesk" + }, + { + "slug": "mountain-duck-app", + "name": "Mountain-duck (app)", + "url": "/v1/software/mountain-duck-app" + }, + { + "slug": "mountainsmap", + "name": "MountainsMap", + "url": "/v1/software/mountainsmap" + }, + { + "slug": "movalyzer", + "name": "MovAlyzeR", + "url": "/v1/software/movalyzer" + }, + { + "slug": "movavi-screen-capture-studio", + "name": "Movavi Screen Capture Studio", + "url": "/v1/software/movavi-screen-capture-studio" + }, + { + "slug": "move", + "name": "Move", + "url": "/v1/software/move" + }, + { + "slug": "movider", + "name": "Movider", + "url": "/v1/software/movider" + }, + { + "slug": "movieride-fx", + "name": "MovieRide FX", + "url": "/v1/software/movieride-fx" + }, + { + "slug": "moviestorm", + "name": "Moviestorm", + "url": "/v1/software/moviestorm" + }, + { + "slug": "moxa-mxsecurity", + "name": "Moxa MXsecurity", + "url": "/v1/software/moxa-mxsecurity" + }, + { + "slug": "mozbackup", + "name": "MozBackup", + "url": "/v1/software/mozbackup" + }, + { + "slug": "mozplugger", + "name": "MozPlugger", + "url": "/v1/software/mozplugger" + }, + { + "slug": "mozdeh", + "name": "Mozdeh", + "url": "/v1/software/mozdeh" + }, + { + "slug": "mozenda", + "name": "Mozenda", + "url": "/v1/software/mozenda" + }, + { + "slug": "mozilla-firefox-6", + "name": "Mozilla Firefox 6", + "url": "/v1/software/mozilla-firefox-6" + }, + { + "slug": "mozilla-persona", + "name": "Mozilla Persona", + "url": "/v1/software/mozilla-persona" + }, + { + "slug": "mozilla-prism", + "name": "Mozilla Prism", + "url": "/v1/software/mozilla-prism" + }, + { + "slug": "mozilla-thimble", + "name": "Mozilla Thimble", + "url": "/v1/software/mozilla-thimble" + }, + { + "slug": "mozilla-webthings", + "name": "Mozilla WebThings", + "url": "/v1/software/mozilla-webthings" + }, + { + "slug": "mpressgui", + "name": "MpressGUI", + "url": "/v1/software/mpressgui" + }, + { + "slug": "mpria", + "name": "Mpria", + "url": "/v1/software/mpria" + }, + { + "slug": "mr-data-converter", + "name": "Mr. Data Converter", + "url": "/v1/software/mr-data-converter" + }, + { + "slug": "mrbayes", + "name": "MrBayes", + "url": "/v1/software/mrbayes" + }, + { + "slug": "mujoco", + "name": "MuJoCo", + "url": "/v1/software/mujoco" + }, + { + "slug": "mumuplayer", + "name": "MuMuPlayer", + "url": "/v1/software/mumuplayer" + }, + { + "slug": "mudos", + "name": "MudOS", + "url": "/v1/software/mudos" + }, + { + "slug": "mudbox", + "name": "Mudbox", + "url": "/v1/software/mudbox" + }, + { + "slug": "mugu-marauder", + "name": "Mugu Marauder", + "url": "/v1/software/mugu-marauder" + }, + { + "slug": "muguito", + "name": "Muguito", + "url": "/v1/software/muguito" + }, + { + "slug": "mukurtu-cms", + "name": "Mukurtu CMS", + "url": "/v1/software/mukurtu-cms" + }, + { + "slug": "mule", + "name": "Mule", + "url": "/v1/software/mule" + }, + { + "slug": "multcloud", + "name": "Multcloud", + "url": "/v1/software/multcloud" + }, + { + "slug": "multicharts", + "name": "MultiCharts", + "url": "/v1/software/multicharts" + }, + { + "slug": "multinet", + "name": "MultiNet", + "url": "/v1/software/multinet" + }, + { + "slug": "multiagent-systems-product-lines", + "name": "Multiagent systems product lines", + "url": "/v1/software/multiagent-systems-product-lines" + }, + { + "slug": "multimedia-atlas-of-veneto-dialects", + "name": "Multimedia Atlas of Veneto Dialects", + "url": "/v1/software/multimedia-atlas-of-veneto-dialects" + }, + { + "slug": "multimedia-center", + "name": "Multimedia Center", + "url": "/v1/software/multimedia-center" + }, + { + "slug": "multimedia-fusion-2", + "name": "Multimedia Fusion 2", + "url": "/v1/software/multimedia-fusion-2" + }, + { + "slug": "multiple-boot-manager", + "name": "Multiple Boot Manager", + "url": "/v1/software/multiple-boot-manager" + }, + { + "slug": "multiplicity", + "name": "Multiplicity", + "url": "/v1/software/multiplicity" + }, + { + "slug": "multitool", + "name": "Multitool", + "url": "/v1/software/multitool" + }, + { + "slug": "multitrackstudio", + "name": "MultitrackStudio", + "url": "/v1/software/multitrackstudio" + }, + { + "slug": "multitran", + "name": "Multitran", + "url": "/v1/software/multitran" + }, + { + "slug": "munching-square", + "name": "Munching square", + "url": "/v1/software/munching-square" + }, + { + "slug": "mural", + "name": "Mural", + "url": "/v1/software/mural" + }, + { + "slug": "murmel-meetings", + "name": "Murmel Meetings", + "url": "/v1/software/murmel-meetings" + }, + { + "slug": "muro", + "name": "Muro", + "url": "/v1/software/muro" + }, + { + "slug": "mur", + "name": "Murφ", + "url": "/v1/software/mur" + }, + { + "slug": "mus2", + "name": "Mus2", + "url": "/v1/software/mus2" + }, + { + "slug": "musca", + "name": "Musca", + "url": "/v1/software/musca" + }, + { + "slug": "music-q123125463", + "name": "Music", + "url": "/v1/software/music-q123125463" + }, + { + "slug": "music", + "name": "Music", + "url": "/v1/software/music" + }, + { + "slug": "music-box", + "name": "Music Box", + "url": "/v1/software/music-box" + }, + { + "slug": "music-kit", + "name": "Music Kit", + "url": "/v1/software/music-kit" + }, + { + "slug": "music-shop", + "name": "Music Shop", + "url": "/v1/software/music-shop" + }, + { + "slug": "music-unlimited", + "name": "Music Unlimited", + "url": "/v1/software/music-unlimited" + }, + { + "slug": "musicedit", + "name": "Musicedit", + "url": "/v1/software/musicedit" + }, + { + "slug": "musicmaster", + "name": "Musicmaster", + "url": "/v1/software/musicmaster" + }, + { + "slug": "musixmatch", + "name": "Musixmatch", + "url": "/v1/software/musixmatch" + }, + { + "slug": "muttprint", + "name": "Muttprint", + "url": "/v1/software/muttprint" + }, + { + "slug": "muzmatch", + "name": "Muzmatch", + "url": "/v1/software/muzmatch" + }, + { + "slug": "mx-takatak", + "name": "Mx Takatak", + "url": "/v1/software/mx-takatak" + }, + { + "slug": "mxit", + "name": "Mxit", + "url": "/v1/software/mxit" + }, + { + "slug": "my-location", + "name": "My Location", + "url": "/v1/software/my-location" + }, + { + "slug": "my-phone", + "name": "My Phone", + "url": "/v1/software/my-phone" + }, + { + "slug": "my-tracks", + "name": "My Tracks", + "url": "/v1/software/my-tracks" + }, + { + "slug": "my-windows-phone", + "name": "My Windows Phone", + "url": "/v1/software/my-windows-phone" + }, + { + "slug": "my-yahoo", + "name": "My Yahoo!", + "url": "/v1/software/my-yahoo" + }, + { + "slug": "my5", + "name": "My5", + "url": "/v1/software/my5" + }, + { + "slug": "mycolors", + "name": "MyColors", + "url": "/v1/software/mycolors" + }, + { + "slug": "mydirectives", + "name": "MyDirectives", + "url": "/v1/software/mydirectives" + }, + { + "slug": "myfitnesspal", + "name": "MyFitnessPal", + "url": "/v1/software/myfitnesspal" + }, + { + "slug": "myhomelib", + "name": "MyHomeLib", + "url": "/v1/software/myhomelib" + }, + { + "slug": "myindicators", + "name": "MyIndicators", + "url": "/v1/software/myindicators" + }, + { + "slug": "myinfo", + "name": "MyInfo", + "url": "/v1/software/myinfo" + }, + { + "slug": "mymail", + "name": "MyMail", + "url": "/v1/software/mymail" + }, + { + "slug": "mymobileweb", + "name": "MyMobileWeb", + "url": "/v1/software/mymobileweb" + }, + { + "slug": "mynetworkmap", + "name": "MyNetworkmap", + "url": "/v1/software/mynetworkmap" + }, + { + "slug": "myoffice", + "name": "MyOffice", + "url": "/v1/software/myoffice" + }, + { + "slug": "mypcqq", + "name": "MyPCQQ", + "url": "/v1/software/mypcqq" + }, + { + "slug": "myquake", + "name": "MyQuake", + "url": "/v1/software/myquake" + }, + { + "slug": "myrulib", + "name": "MyRuLib", + "url": "/v1/software/myrulib" + }, + { + "slug": "mysql-administrator", + "name": "MySQL Administrator", + "url": "/v1/software/mysql-administrator" + }, + { + "slug": "mysql-manager", + "name": "MySQL Manager", + "url": "/v1/software/mysql-manager" + }, + { + "slug": "mysql-query-browser", + "name": "MySQL Query Browser", + "url": "/v1/software/mysql-query-browser" + }, + { + "slug": "mysecurefolder", + "name": "MySecureFolder", + "url": "/v1/software/mysecurefolder" + }, + { + "slug": "myshake", + "name": "MyShake", + "url": "/v1/software/myshake" + }, + { + "slug": "mystickies", + "name": "MyStickies", + "url": "/v1/software/mystickies" + }, + { + "slug": "mytraffic-saas", + "name": "MyTraffic SaaS", + "url": "/v1/software/mytraffic-saas" + }, + { + "slug": "mytuner-radio", + "name": "MyTuner Radio", + "url": "/v1/software/mytuner-radio" + }, + { + "slug": "mycin", + "name": "Mycin", + "url": "/v1/software/mycin" + }, + { + "slug": "mydrivers", + "name": "Mydrivers", + "url": "/v1/software/mydrivers" + }, + { + "slug": "mylyn-builds", + "name": "Mylyn Builds", + "url": "/v1/software/mylyn-builds" + }, + { + "slug": "mylyn-commons", + "name": "Mylyn Commons", + "url": "/v1/software/mylyn-commons" + }, + { + "slug": "mylyn-context", + "name": "Mylyn Context", + "url": "/v1/software/mylyn-context" + }, + { + "slug": "mylyn-docs", + "name": "Mylyn Docs", + "url": "/v1/software/mylyn-docs" + }, + { + "slug": "mylyn-incubator", + "name": "Mylyn Incubator", + "url": "/v1/software/mylyn-incubator" + }, + { + "slug": "mylyn-reviews", + "name": "Mylyn Reviews", + "url": "/v1/software/mylyn-reviews" + }, + { + "slug": "mylyn-tasks", + "name": "Mylyn Tasks", + "url": "/v1/software/mylyn-tasks" + }, + { + "slug": "mylyn-versions", + "name": "Mylyn Versions", + "url": "/v1/software/mylyn-versions" + }, + { + "slug": "mysms", + "name": "Mysms", + "url": "/v1/software/mysms" + }, + { + "slug": "mystic-bbs", + "name": "Mystic BBS", + "url": "/v1/software/mystic-bbs" + }, + { + "slug": "n0va-desktop", + "name": "N0va Desktop", + "url": "/v1/software/n0va-desktop" + }, + { + "slug": "n8n-in-university-of-cadiz", + "name": "N8N in University of Cadiz", + "url": "/v1/software/n8n-in-university-of-cadiz" + }, + { + "slug": "nag-fortran-compiler", + "name": "NAG Fortran Compiler", + "url": "/v1/software/nag-fortran-compiler" + }, + { + "slug": "nakala", + "name": "NAKALA", + "url": "/v1/software/nakala" + }, + { + "slug": "namd", + "name": "NAMD", + "url": "/v1/software/namd" + }, + { + "slug": "nars2000", + "name": "NARS2000", + "url": "/v1/software/nars2000" + }, + { + "slug": "nas-parallel-benchmarks", + "name": "NAS Parallel Benchmarks", + "url": "/v1/software/nas-parallel-benchmarks" + }, + { + "slug": "nat-braille", + "name": "NAT Braille", + "url": "/v1/software/nat-braille" + }, + { + "slug": "naver-series", + "name": "NAVER Series", + "url": "/v1/software/naver-series" + }, + { + "slug": "navgem", + "name": "NAVGEM", + "url": "/v1/software/navgem" + }, + { + "slug": "navmap", + "name": "NAVMAP", + "url": "/v1/software/navmap" + }, + { + "slug": "nbench", + "name": "NBench", + "url": "/v1/software/nbench" + }, + { + "slug": "ncss", + "name": "NCSS", + "url": "/v1/software/ncss" + }, + { + "slug": "ncsim", + "name": "NCSim", + "url": "/v1/software/ncsim" + }, + { + "slug": "ncomm", + "name": "NComm", + "url": "/v1/software/ncomm" + }, + { + "slug": "nd-cosmos", + "name": "ND-COSMOS", + "url": "/v1/software/nd-cosmos" + }, + { + "slug": "ndoutils", + "name": "NDOUtils", + "url": "/v1/software/ndoutils" + }, + { + "slug": "ndepend", + "name": "NDepend", + "url": "/v1/software/ndepend" + }, + { + "slug": "ndisc6", + "name": "NDisc6", + "url": "/v1/software/ndisc6" + }, + { + "slug": "nec-hydrastor", + "name": "NEC HYDRAstor", + "url": "/v1/software/nec-hydrastor" + }, + { + "slug": "nemo", + "name": "NEMO", + "url": "/v1/software/nemo" + }, + { + "slug": "neo-imaging", + "name": "NEO iMAGING", + "url": "/v1/software/neo-imaging" + }, + { + "slug": "ner-nltk", + "name": "NER NLTK", + "url": "/v1/software/ner-nltk" + }, + { + "slug": "nestimulator", + "name": "NEStimulator", + "url": "/v1/software/nestimulator" + }, + { + "slug": "netmet", + "name": "NETMET", + "url": "/v1/software/netmet" + }, + { + "slug": "neutrino", + "name": "NEUTRINO", + "url": "/v1/software/neutrino" + }, + { + "slug": "nflib", + "name": "NFlib", + "url": "/v1/software/nflib" + }, + { + "slug": "ngl", + "name": "NGL", + "url": "/v1/software/ngl" + }, + { + "slug": "ngn-apl", + "name": "NGN APL", + "url": "/v1/software/ngn-apl" + }, + { + "slug": "nhs-pathways", + "name": "NHS Pathways", + "url": "/v1/software/nhs-pathways" + }, + { + "slug": "ni-massive", + "name": "NI Massive", + "url": "/v1/software/ni-massive" + }, + { + "slug": "ni-multisim", + "name": "NI Multisim", + "url": "/v1/software/ni-multisim" + }, + { + "slug": "ni-ultiboard", + "name": "NI Ultiboard", + "url": "/v1/software/ni-ultiboard" + }, + { + "slug": "niaoniao-virtual-singer", + "name": "NIAONiao Virtual Singer", + "url": "/v1/software/niaoniao-virtual-singer" + }, + { + "slug": "niaflow", + "name": "NIAflow", + "url": "/v1/software/niaflow" + }, + { + "slug": "nicmoslook", + "name": "NICMOSlook", + "url": "/v1/software/nicmoslook" + }, + { + "slug": "niko-through-the-dream", + "name": "NIKO: Through The Dream", + "url": "/v1/software/niko-through-the-dream" + }, + { + "slug": "nis2compass", + "name": "NIS2Compass", + "url": "/v1/software/nis2compass" + }, + { + "slug": "nite-xml-toolkit", + "name": "NITE XML Toolkit", + "url": "/v1/software/nite-xml-toolkit" + }, + { + "slug": "nitf-file-parser", + "name": "NITF File Parser", + "url": "/v1/software/nitf-file-parser" + }, + { + "slug": "njstar-communicator", + "name": "NJStar Communicator", + "url": "/v1/software/njstar-communicator" + }, + { + "slug": "nk-audit", + "name": "NK-Audit", + "url": "/v1/software/nk-audit" + }, + { + "slug": "nl5-circuit-simulator", + "name": "NL5 Circuit Simulator", + "url": "/v1/software/nl5-circuit-simulator" + }, + { + "slug": "nlogit", + "name": "NLOGIT", + "url": "/v1/software/nlogit" + }, + { + "slug": "nlp-hub-multiple-ner-tools", + "name": "NLP-HUB (multiple NER tools)", + "url": "/v1/software/nlp-hub-multiple-ner-tools" + }, + { + "slug": "nlpqlp", + "name": "NLPQLP", + "url": "/v1/software/nlpqlp" + }, + { + "slug": "nltk-3-3-natural-language-toolkit", + "name": "NLTK 3.3 (Natural Language Toolkit)", + "url": "/v1/software/nltk-3-3-natural-language-toolkit" + }, + { + "slug": "nlog", + "name": "NLog", + "url": "/v1/software/nlog" + }, + { + "slug": "nnpdf", + "name": "NNPDF", + "url": "/v1/software/nnpdf" + }, + { + "slug": "nntpgrab", + "name": "NNTPGrab", + "url": "/v1/software/nntpgrab" + }, + { + "slug": "noc", + "name": "NOC", + "url": "/v1/software/noc" + }, + { + "slug": "nonmem", + "name": "NONMEM", + "url": "/v1/software/nonmem" + }, + { + "slug": "norc", + "name": "NORC", + "url": "/v1/software/norc" + }, + { + "slug": "nosa-itaca", + "name": "NOSA-ITACA", + "url": "/v1/software/nosa-itaca" + }, + { + "slug": "noza-inc", + "name": "NOZA, Inc.", + "url": "/v1/software/noza-inc" + }, + { + "slug": "nobjective", + "name": "NObjective", + "url": "/v1/software/nobjective" + }, + { + "slug": "npclassifier", + "name": "NPClassifier", + "url": "/v1/software/npclassifier" + }, + { + "slug": "npsol", + "name": "NPSOL", + "url": "/v1/software/npsol" + }, + { + "slug": "nparadox", + "name": "NParadox", + "url": "/v1/software/nparadox" + }, + { + "slug": "nsynth", + "name": "NSynth", + "url": "/v1/software/nsynth" + }, + { + "slug": "ntchem", + "name": "NTChem", + "url": "/v1/software/ntchem" + }, + { + "slug": "ntlite", + "name": "NTLite", + "url": "/v1/software/ntlite" + }, + { + "slug": "ntpsec", + "name": "NTPsec", + "url": "/v1/software/ntpsec" + }, + { + "slug": "ntsyspc", + "name": "NTSYSpc", + "url": "/v1/software/ntsyspc" + }, + { + "slug": "nu-tech", + "name": "NU-Tech", + "url": "/v1/software/nu-tech" + }, + { + "slug": "nursa", + "name": "NURSA", + "url": "/v1/software/nursa" + }, + { + "slug": "nuts", + "name": "NUTS", + "url": "/v1/software/nuts" + }, + { + "slug": "nvflare", + "name": "NVFlare", + "url": "/v1/software/nvflare" + }, + { + "slug": "nvidia-iray", + "name": "NVIDIA Iray", + "url": "/v1/software/nvidia-iray" + }, + { + "slug": "nvizn", + "name": "NViZn", + "url": "/v1/software/nvizn" + }, + { + "slug": "nvivotools", + "name": "NVivotools", + "url": "/v1/software/nvivotools" + }, + { + "slug": "nx-technology", + "name": "NX technology", + "url": "/v1/software/nx-technology" + }, + { + "slug": "nxlog", + "name": "NXLog", + "url": "/v1/software/nxlog" + }, + { + "slug": "nxnote", + "name": "NXNote", + "url": "/v1/software/nxnote" + }, + { + "slug": "naavi", + "name": "Naavi", + "url": "/v1/software/naavi" + }, + { + "slug": "nacsport-video-analysis-software", + "name": "Nacsport Video Analysis Software", + "url": "/v1/software/nacsport-video-analysis-software" + }, + { + "slug": "naemon", + "name": "Naemon", + "url": "/v1/software/naemon" + }, + { + "slug": "naeon", + "name": "Naeon", + "url": "/v1/software/naeon" + }, + { + "slug": "nagarik-app", + "name": "Nagarik App", + "url": "/v1/software/nagarik-app" + }, + { + "slug": "namebench", + "name": "Namebench", + "url": "/v1/software/namebench" + }, + { + "slug": "nana", + "name": "Nana", + "url": "/v1/software/nana" + }, + { + "slug": "nana-c", + "name": "Nana C++", + "url": "/v1/software/nana-c" + }, + { + "slug": "nana-music", + "name": "Nana Music", + "url": "/v1/software/nana-music" + }, + { + "slug": "nanitor", + "name": "Nanitor", + "url": "/v1/software/nanitor" + }, + { + "slug": "nano-simbox-imd", + "name": "Nano Simbox iMD", + "url": "/v1/software/nano-simbox-imd" + }, + { + "slug": "nano-threads", + "name": "Nano-threads", + "url": "/v1/software/nano-threads" + }, + { + "slug": "nanocad", + "name": "NanoCAD", + "url": "/v1/software/nanocad" + }, + { + "slug": "nanohttpd", + "name": "NanoHTTPD", + "url": "/v1/software/nanohttpd" + }, + { + "slug": "nanolanguage", + "name": "NanoLanguage", + "url": "/v1/software/nanolanguage" + }, + { + "slug": "nanodash", + "name": "Nanodash", + "url": "/v1/software/nanodash" + }, + { + "slug": "naoyun", + "name": "Naoyun", + "url": "/v1/software/naoyun" + }, + { + "slug": "napster-q1965067", + "name": "Napster", + "url": "/v1/software/napster-q1965067" + }, + { + "slug": "napster", + "name": "Napster", + "url": "/v1/software/napster" + }, + { + "slug": "narus", + "name": "Narus", + "url": "/v1/software/narus" + }, + { + "slug": "natachata", + "name": "Natachata", + "url": "/v1/software/natachata" + }, + { + "slug": "national-integrated-ballistic-information-network", + "name": "National Integrated Ballistic Information Network", + "url": "/v1/software/national-integrated-ballistic-information-network" + }, + { + "slug": "national-integrated-immigration-system", + "name": "National Integrated Immigration System", + "url": "/v1/software/national-integrated-immigration-system" + }, + { + "slug": "national-parking-platform", + "name": "National Parking Platform", + "url": "/v1/software/national-parking-platform" + }, + { + "slug": "native-and-foreign-format", + "name": "Native and foreign format", + "url": "/v1/software/native-and-foreign-format" + }, + { + "slug": "natpass", + "name": "Natpass", + "url": "/v1/software/natpass" + }, + { + "slug": "natural-cycles", + "name": "Natural Cycles", + "url": "/v1/software/natural-cycles" + }, + { + "slug": "nature-mobile", + "name": "Nature mobile", + "url": "/v1/software/nature-mobile" + }, + { + "slug": "navcis", + "name": "NavCIS", + "url": "/v1/software/navcis" + }, + { + "slug": "naval-observatory-vector-astrometry-subroutines", + "name": "Naval Observatory Vector Astrometry Subroutines", + "url": "/v1/software/naval-observatory-vector-astrometry-subroutines" + }, + { + "slug": "naver-pay", + "name": "Naver Pay", + "url": "/v1/software/naver-pay" + }, + { + "slug": "naver-vaccine", + "name": "Naver Vaccine", + "url": "/v1/software/naver-vaccine" + }, + { + "slug": "navicat-for-mysql", + "name": "Navicat for MySQL", + "url": "/v1/software/navicat-for-mysql" + }, + { + "slug": "navifon", + "name": "Navifon", + "url": "/v1/software/navifon" + }, + { + "slug": "navigraph", + "name": "Navigraph", + "url": "/v1/software/navigraph" + }, + { + "slug": "navisworks", + "name": "Navisworks", + "url": "/v1/software/navisworks" + }, + { + "slug": "nbtstat", + "name": "Nbtstat", + "url": "/v1/software/nbtstat" + }, + { + "slug": "ncftpd", + "name": "NcFTPd", + "url": "/v1/software/ncftpd" + }, + { + "slug": "ncored", + "name": "Ncored", + "url": "/v1/software/ncored" + }, + { + "slug": "nemo-nedimah-methods-ontology", + "name": "NeMO NeDiMAH Methods Ontology", + "url": "/v1/software/nemo-nedimah-methods-ontology" + }, + { + "slug": "nearby-share", + "name": "Nearby Share", + "url": "/v1/software/nearby-share" + }, + { + "slug": "nearpod", + "name": "Nearpod", + "url": "/v1/software/nearpod" + }, + { + "slug": "neatline", + "name": "Neatline", + "url": "/v1/software/neatline" + }, + { + "slug": "nebulagraph", + "name": "NebulaGraph", + "url": "/v1/software/nebulagraph" + }, + { + "slug": "neighbornode", + "name": "Neighbornode", + "url": "/v1/software/neighbornode" + }, + { + "slug": "nek5000", + "name": "Nek5000", + "url": "/v1/software/nek5000" + }, + { + "slug": "nekoai", + "name": "NekoAI", + "url": "/v1/software/nekoai" + }, + { + "slug": "nemid", + "name": "NemID", + "url": "/v1/software/nemid" + }, + { + "slug": "nemexia", + "name": "Nemexia", + "url": "/v1/software/nemexia" + }, + { + "slug": "neo-french-law-enforcement-agencies-mobile-terminals", + "name": "Neo (french law enforcement agencies mobile terminals)", + "url": "/v1/software/neo-french-law-enforcement-agencies-mobile-terminals" + }, + { + "slug": "neo4j-console", + "name": "Neo4j Console", + "url": "/v1/software/neo4j-console" + }, + { + "slug": "neoload", + "name": "NeoLoad", + "url": "/v1/software/neoload" + }, + { + "slug": "neoplanet", + "name": "NeoPlanet", + "url": "/v1/software/neoplanet" + }, + { + "slug": "neoragex", + "name": "NeoRAGEx", + "url": "/v1/software/neoragex" + }, + { + "slug": "neon", + "name": "Neon", + "url": "/v1/software/neon" + }, + { + "slug": "nequi", + "name": "Nequi", + "url": "/v1/software/nequi" + }, + { + "slug": "nerf", + "name": "Nerf", + "url": "/v1/software/nerf" + }, + { + "slug": "nero-digital", + "name": "Nero Digital", + "url": "/v1/software/nero-digital" + }, + { + "slug": "nero-linux", + "name": "Nero Linux", + "url": "/v1/software/nero-linux" + }, + { + "slug": "nero-multimedia-suite-10-platinum-hd", + "name": "Nero Multimedia Suite 10 Platinum HD", + "url": "/v1/software/nero-multimedia-suite-10-platinum-hd" + }, + { + "slug": "nero-wave-editor", + "name": "Nero Wave Editor", + "url": "/v1/software/nero-wave-editor" + }, + { + "slug": "nesstar", + "name": "Nesstar", + "url": "/v1/software/nesstar" + }, + { + "slug": "nessy-tales", + "name": "Nessy Tales", + "url": "/v1/software/nessy-tales" + }, + { + "slug": "net-party", + "name": "Net Party", + "url": "/v1/software/net-party" + }, + { + "slug": "net-speakerphone", + "name": "Net Speakerphone", + "url": "/v1/software/net-speakerphone" + }, + { + "slug": "netbackup", + "name": "NetBackup", + "url": "/v1/software/netbackup" + }, + { + "slug": "netbird", + "name": "NetBird", + "url": "/v1/software/netbird" + }, + { + "slug": "netboot", + "name": "NetBoot", + "url": "/v1/software/netboot" + }, + { + "slug": "netcache", + "name": "NetCache", + "url": "/v1/software/netcache" + }, + { + "slug": "netcaptor", + "name": "NetCaptor", + "url": "/v1/software/netcaptor" + }, + { + "slug": "netcommons", + "name": "NetCommons", + "url": "/v1/software/netcommons" + }, + { + "slug": "netcrunch", + "name": "NetCrunch", + "url": "/v1/software/netcrunch" + }, + { + "slug": "netdraw", + "name": "NetDraw", + "url": "/v1/software/netdraw" + }, + { + "slug": "netdrive", + "name": "NetDrive", + "url": "/v1/software/netdrive" + }, + { + "slug": "netdynamics-application-server", + "name": "NetDynamics Application Server", + "url": "/v1/software/netdynamics-application-server" + }, + { + "slug": "netease-cloud-music", + "name": "NetEase Cloud Music", + "url": "/v1/software/netease-cloud-music" + }, + { + "slug": "netease-instant-messaging", + "name": "NetEase Instant Messaging", + "url": "/v1/software/netease-instant-messaging" + }, + { + "slug": "netexpert", + "name": "NetExpert", + "url": "/v1/software/netexpert" + }, + { + "slug": "nethogs", + "name": "NetHogs", + "url": "/v1/software/nethogs" + }, + { + "slug": "netinfo", + "name": "NetInfo", + "url": "/v1/software/netinfo" + }, + { + "slug": "netlimiter", + "name": "NetLimiter", + "url": "/v1/software/netlimiter" + }, + { + "slug": "netnewswire", + "name": "NetNewsWire", + "url": "/v1/software/netnewswire" + }, + { + "slug": "netobjects-fusion", + "name": "NetObjects Fusion", + "url": "/v1/software/netobjects-fusion" + }, + { + "slug": "netpipes", + "name": "NetPipes", + "url": "/v1/software/netpipes" + }, + { + "slug": "netpoint", + "name": "NetPoint", + "url": "/v1/software/netpoint" + }, + { + "slug": "netpresenz", + "name": "NetPresenz", + "url": "/v1/software/netpresenz" + }, + { + "slug": "netshade", + "name": "NetShade", + "url": "/v1/software/netshade" + }, + { + "slug": "netsim", + "name": "NetSim", + "url": "/v1/software/netsim" + }, + { + "slug": "netspot", + "name": "NetSpot", + "url": "/v1/software/netspot" + }, + { + "slug": "netsupport-manager", + "name": "NetSupport Manager", + "url": "/v1/software/netsupport-manager" + }, + { + "slug": "netvault-backup", + "name": "NetVault Backup", + "url": "/v1/software/netvault-backup" + }, + { + "slug": "netwips", + "name": "NetWips", + "url": "/v1/software/netwips" + }, + { + "slug": "networker", + "name": "NetWorker", + "url": "/v1/software/networker" + }, + { + "slug": "netcabo-messenger", + "name": "Netcabo Messenger", + "url": "/v1/software/netcabo-messenger" + }, + { + "slug": "netcad", + "name": "Netcad", + "url": "/v1/software/netcad" + }, + { + "slug": "netcat", + "name": "Netcat", + "url": "/v1/software/netcat" + }, + { + "slug": "netdata", + "name": "Netdata", + "url": "/v1/software/netdata" + }, + { + "slug": "netfrastructure", + "name": "Netfrastructure", + "url": "/v1/software/netfrastructure" + }, + { + "slug": "nethermind-ethereum-client", + "name": "Nethermind Ethereum Client", + "url": "/v1/software/nethermind-ethereum-client" + }, + { + "slug": "netlytic", + "name": "Netlytic", + "url": "/v1/software/netlytic" + }, + { + "slug": "netperf", + "name": "Netperf", + "url": "/v1/software/netperf" + }, + { + "slug": "netprimer", + "name": "Netprimer", + "url": "/v1/software/netprimer" + }, + { + "slug": "netscape", + "name": "Netscape", + "url": "/v1/software/netscape" + }, + { + "slug": "netscape-5", + "name": "Netscape 5", + "url": "/v1/software/netscape-5" + }, + { + "slug": "netscape-6", + "name": "Netscape 6", + "url": "/v1/software/netscape-6" + }, + { + "slug": "netscape-7", + "name": "Netscape 7", + "url": "/v1/software/netscape-7" + }, + { + "slug": "netscape-browser", + "name": "Netscape Browser", + "url": "/v1/software/netscape-browser" + }, + { + "slug": "netscape-communicator", + "name": "Netscape Communicator", + "url": "/v1/software/netscape-communicator" + }, + { + "slug": "netscape-mail-newsgroups", + "name": "Netscape Mail & Newsgroups", + "url": "/v1/software/netscape-mail-newsgroups" + }, + { + "slug": "netscape-navigator-2", + "name": "Netscape Navigator 2", + "url": "/v1/software/netscape-navigator-2" + }, + { + "slug": "netvizz", + "name": "Netvizz", + "url": "/v1/software/netvizz" + }, + { + "slug": "network-access-protection", + "name": "Network Access Protection", + "url": "/v1/software/network-access-protection" + }, + { + "slug": "network-control-program", + "name": "Network Control Program", + "url": "/v1/software/network-control-program" + }, + { + "slug": "network-inventory-advisor", + "name": "Network Inventory Advisor", + "url": "/v1/software/network-inventory-advisor" + }, + { + "slug": "network-notepad", + "name": "Network Notepad", + "url": "/v1/software/network-notepad" + }, + { + "slug": "network-telemetry", + "name": "Network Telemetry", + "url": "/v1/software/network-telemetry" + }, + { + "slug": "network-utility", + "name": "Network Utility", + "url": "/v1/software/network-utility" + }, + { + "slug": "network-view-notebook-tool", + "name": "Network view notebook tool", + "url": "/v1/software/network-view-notebook-tool" + }, + { + "slug": "networkcomputer", + "name": "NetworkComputer", + "url": "/v1/software/networkcomputer" + }, + { + "slug": "neural-network-exchange-format", + "name": "Neural Network Exchange Format", + "url": "/v1/software/neural-network-exchange-format" + }, + { + "slug": "neural-network-intelligence", + "name": "Neural Network Intelligence", + "url": "/v1/software/neural-network-intelligence" + }, + { + "slug": "neural-document-modeling", + "name": "Neural-Document-Modeling", + "url": "/v1/software/neural-document-modeling" + }, + { + "slug": "neutron-acceptance-diagram-shading", + "name": "Neutron Acceptance Diagram Shading", + "url": "/v1/software/neutron-acceptance-diagram-shading" + }, + { + "slug": "new-grolier-multimedia-encyclopedia", + "name": "New Grolier Multimedia Encyclopedia", + "url": "/v1/software/new-grolier-multimedia-encyclopedia" + }, + { + "slug": "new-york-nights-2-friends-for-life", + "name": "New York Nights 2: Friends For Life", + "url": "/v1/software/new-york-nights-2-friends-for-life" + }, + { + "slug": "new-zealand-open-source-awards", + "name": "New Zealand Open Source Awards", + "url": "/v1/software/new-zealand-open-source-awards" + }, + { + "slug": "newicons", + "name": "NewIcons", + "url": "/v1/software/newicons" + }, + { + "slug": "newradial-inke", + "name": "NewRadial (INKE)", + "url": "/v1/software/newradial-inke" + }, + { + "slug": "newviews", + "name": "NewViews", + "url": "/v1/software/newviews" + }, + { + "slug": "newwayservice", + "name": "NewWaySERVICE", + "url": "/v1/software/newwayservice" + }, + { + "slug": "newbler", + "name": "Newbler", + "url": "/v1/software/newbler" + }, + { + "slug": "news-gg-discord-bot", + "name": "News.gg Discord Bot", + "url": "/v1/software/news-gg-discord-bot" + }, + { + "slug": "news360", + "name": "News360", + "url": "/v1/software/news360" + }, + { + "slug": "newsbin-pro", + "name": "NewsBin Pro", + "url": "/v1/software/newsbin-pro" + }, + { + "slug": "newsfire", + "name": "NewsFire", + "url": "/v1/software/newsfire" + }, + { + "slug": "newsml-g2", + "name": "NewsML-G2", + "url": "/v1/software/newsml-g2" + }, + { + "slug": "newsstand", + "name": "Newsstand", + "url": "/v1/software/newsstand" + }, + { + "slug": "newton-x", + "name": "Newton-X", + "url": "/v1/software/newton-x" + }, + { + "slug": "nexusdb", + "name": "NexusDB", + "url": "/v1/software/nexusdb" + }, + { + "slug": "nexusm", + "name": "NexusM", + "url": "/v1/software/nexusm" + }, + { + "slug": "neztio", + "name": "Neztio", + "url": "/v1/software/neztio" + }, + { + "slug": "ngram-statistics-package-nsp", + "name": "Ngram Statistics Package (NSP)", + "url": "/v1/software/ngram-statistics-package-nsp" + }, + { + "slug": "ngrok", + "name": "Ngrok", + "url": "/v1/software/ngrok" + }, + { + "slug": "nichimen-n-world", + "name": "Nichimen N-World", + "url": "/v1/software/nichimen-n-world" + }, + { + "slug": "niconico", + "name": "Niconico", + "url": "/v1/software/niconico" + }, + { + "slug": "nigerian-webradio", + "name": "Nigerian WebRadio", + "url": "/v1/software/nigerian-webradio" + }, + { + "slug": "night-sky", + "name": "Night Sky", + "url": "/v1/software/night-sky" + }, + { + "slug": "nightset", + "name": "Nightset", + "url": "/v1/software/nightset" + }, + { + "slug": "nightshade", + "name": "Nightshade", + "url": "/v1/software/nightshade" + }, + { + "slug": "nik-collection", + "name": "Nik Collection", + "url": "/v1/software/nik-collection" + }, + { + "slug": "nikto", + "name": "Nikto", + "url": "/v1/software/nikto" + }, + { + "slug": "nilon", + "name": "Nilon", + "url": "/v1/software/nilon" + }, + { + "slug": "nimble-streamer", + "name": "Nimble Streamer", + "url": "/v1/software/nimble-streamer" + }, + { + "slug": "nimbuzz", + "name": "Nimbuzz", + "url": "/v1/software/nimbuzz" + }, + { + "slug": "nimitai", + "name": "Nimitai", + "url": "/v1/software/nimitai" + }, + { + "slug": "ninjo", + "name": "NinJo", + "url": "/v1/software/ninjo" + }, + { + "slug": "ning", + "name": "Ning", + "url": "/v1/software/ning" + }, + { + "slug": "ninite", + "name": "Ninite", + "url": "/v1/software/ninite" + }, + { + "slug": "nintendo-dsi-camera", + "name": "Nintendo DSi Camera", + "url": "/v1/software/nintendo-dsi-camera" + }, + { + "slug": "nintendo-fan-network", + "name": "Nintendo Fan Network", + "url": "/v1/software/nintendo-fan-network" + }, + { + "slug": "nintendo-switch-online", + "name": "Nintendo Switch Online", + "url": "/v1/software/nintendo-switch-online" + }, + { + "slug": "nintendo-web-framework", + "name": "Nintendo Web Framework", + "url": "/v1/software/nintendo-web-framework" + }, + { + "slug": "nirvana", + "name": "Nirvana", + "url": "/v1/software/nirvana" + }, + { + "slug": "nitro-pro", + "name": "Nitro Pro", + "url": "/v1/software/nitro-pro" + }, + { + "slug": "njam", + "name": "Njam", + "url": "/v1/software/njam" + }, + { + "slug": "nmrpipe", + "name": "Nmrpipe", + "url": "/v1/software/nmrpipe" + }, + { + "slug": "noredink", + "name": "NoRedInk", + "url": "/v1/software/noredink" + }, + { + "slug": "nosqlz", + "name": "NoSQLz", + "url": "/v1/software/nosqlz" + }, + { + "slug": "noddy-and-the-toyland-fair", + "name": "Noddy and the Toyland Fair", + "url": "/v1/software/noddy-and-the-toyland-fair" + }, + { + "slug": "nodexl", + "name": "NodeXL", + "url": "/v1/software/nodexl" + }, + { + "slug": "noeclone", + "name": "NoeClone", + "url": "/v1/software/noeclone" + }, + { + "slug": "noeprimer", + "name": "NoePrimer", + "url": "/v1/software/noeprimer" + }, + { + "slug": "noesis", + "name": "Noesis", + "url": "/v1/software/noesis" + }, + { + "slug": "nogrid-points", + "name": "Nogrid points", + "url": "/v1/software/nogrid-points" + }, + { + "slug": "noise-ninja", + "name": "Noise Ninja", + "url": "/v1/software/noise-ninja" + }, + { + "slug": "noiseless", + "name": "Noiseless", + "url": "/v1/software/noiseless" + }, + { + "slug": "noiseware", + "name": "Noiseware", + "url": "/v1/software/noiseware" + }, + { + "slug": "nokia-lifeblog", + "name": "Nokia Lifeblog", + "url": "/v1/software/nokia-lifeblog" + }, + { + "slug": "nokia-music-store-india", + "name": "Nokia Music Store India", + "url": "/v1/software/nokia-music-store-india" + }, + { + "slug": "nokia-pc-suite", + "name": "Nokia PC Suite", + "url": "/v1/software/nokia-pc-suite" + }, + { + "slug": "nokia-store", + "name": "Nokia Store", + "url": "/v1/software/nokia-store" + }, + { + "slug": "nolapro", + "name": "NolaPro", + "url": "/v1/software/nolapro" + }, + { + "slug": "nomenklatura-q126084418", + "name": "Nomenklatura", + "url": "/v1/software/nomenklatura-q126084418" + }, + { + "slug": "nomenklatura", + "name": "Nomenklatura", + "url": "/v1/software/nomenklatura" + }, + { + "slug": "nomeroff-net", + "name": "Nomeroff Net", + "url": "/v1/software/nomeroff-net" + }, + { + "slug": "nomulus", + "name": "Nomulus", + "url": "/v1/software/nomulus" + }, + { + "slug": "nonstop-sql", + "name": "NonStop SQL", + "url": "/v1/software/nonstop-sql" + }, + { + "slug": "nooj", + "name": "NooJ", + "url": "/v1/software/nooj" + }, + { + "slug": "noodletools", + "name": "NoodleTools", + "url": "/v1/software/noodletools" + }, + { + "slug": "norconex-web-crawler", + "name": "Norconex Web Crawler", + "url": "/v1/software/norconex-web-crawler" + }, + { + "slug": "norcroft-c-compiler", + "name": "Norcroft C compiler", + "url": "/v1/software/norcroft-c-compiler" + }, + { + "slug": "nordfx", + "name": "NordFX", + "url": "/v1/software/nordfx" + }, + { + "slug": "nordlayer", + "name": "NordLayer", + "url": "/v1/software/nordlayer" + }, + { + "slug": "nordlocker", + "name": "NordLocker", + "url": "/v1/software/nordlocker" + }, + { + "slug": "nordvpn", + "name": "NordVPN", + "url": "/v1/software/nordvpn" + }, + { + "slug": "north-carolina-learning-object-repository", + "name": "North Carolina Learning Object Repository", + "url": "/v1/software/north-carolina-learning-object-repository" + }, + { + "slug": "norton-360", + "name": "Norton 360", + "url": "/v1/software/norton-360" + }, + { + "slug": "norton-confidential", + "name": "Norton Confidential", + "url": "/v1/software/norton-confidential" + }, + { + "slug": "norton-connectsafe", + "name": "Norton ConnectSafe", + "url": "/v1/software/norton-connectsafe" + }, + { + "slug": "norton-file-insight", + "name": "Norton File Insight", + "url": "/v1/software/norton-file-insight" + }, + { + "slug": "norton-insight", + "name": "Norton Insight", + "url": "/v1/software/norton-insight" + }, + { + "slug": "norton-liveupdate", + "name": "Norton LiveUpdate", + "url": "/v1/software/norton-liveupdate" + }, + { + "slug": "norton-personal-firewall", + "name": "Norton Personal Firewall", + "url": "/v1/software/norton-personal-firewall" + }, + { + "slug": "norton-power-eraser", + "name": "Norton Power Eraser", + "url": "/v1/software/norton-power-eraser" + }, + { + "slug": "norton-safe-web", + "name": "Norton Safe Web", + "url": "/v1/software/norton-safe-web" + }, + { + "slug": "norton-security", + "name": "Norton Security", + "url": "/v1/software/norton-security" + }, + { + "slug": "norton-system-insight", + "name": "Norton System Insight", + "url": "/v1/software/norton-system-insight" + }, + { + "slug": "norton-systemworks", + "name": "Norton SystemWorks", + "url": "/v1/software/norton-systemworks" + }, + { + "slug": "norton-utilities", + "name": "Norton Utilities", + "url": "/v1/software/norton-utilities" + }, + { + "slug": "norton-zone", + "name": "Norton Zone", + "url": "/v1/software/norton-zone" + }, + { + "slug": "nostrobeai", + "name": "NostrobeAI", + "url": "/v1/software/nostrobeai" + }, + { + "slug": "nota-bene-nb", + "name": "Nota Bene (NB)", + "url": "/v1/software/nota-bene-nb" + }, + { + "slug": "notabene", + "name": "Notabene", + "url": "/v1/software/notabene" + }, + { + "slug": "notational-velocity", + "name": "Notational Velocity", + "url": "/v1/software/notational-velocity" + }, + { + "slug": "note-block-studio", + "name": "Note Block Studio", + "url": "/v1/software/note-block-studio" + }, + { + "slug": "notebook", + "name": "NoteBook", + "url": "/v1/software/notebook" + }, + { + "slug": "notecontrol", + "name": "NoteControl", + "url": "/v1/software/notecontrol" + }, + { + "slug": "noteperformer", + "name": "NotePerformer", + "url": "/v1/software/noteperformer" + }, + { + "slug": "noter", + "name": "Noter", + "url": "/v1/software/noter" + }, + { + "slug": "notification-center", + "name": "Notification Center", + "url": "/v1/software/notification-center" + }, + { + "slug": "notificationdaemon", + "name": "NotificationDaemon", + "url": "/v1/software/notificationdaemon" + }, + { + "slug": "nottingham-arabidopsis-stock-centre", + "name": "Nottingham Arabidopsis Stock Centre", + "url": "/v1/software/nottingham-arabidopsis-stock-centre" + }, + { + "slug": "nova-q112514943", + "name": "Nova", + "url": "/v1/software/nova-q112514943" + }, + { + "slug": "novakid", + "name": "NovaKid", + "url": "/v1/software/novakid" + }, + { + "slug": "novabench", + "name": "Novabench", + "url": "/v1/software/novabench" + }, + { + "slug": "novelai", + "name": "NovelAI", + "url": "/v1/software/novelai" + }, + { + "slug": "novell-access-manager", + "name": "Novell Access Manager", + "url": "/v1/software/novell-access-manager" + }, + { + "slug": "novell-bordermanager", + "name": "Novell BorderManager", + "url": "/v1/software/novell-bordermanager" + }, + { + "slug": "novell-file-management-suite", + "name": "Novell File Management Suite", + "url": "/v1/software/novell-file-management-suite" + }, + { + "slug": "novell-file-reporter", + "name": "Novell File Reporter", + "url": "/v1/software/novell-file-reporter" + }, + { + "slug": "novell-identity-manager", + "name": "Novell Identity Manager", + "url": "/v1/software/novell-identity-manager" + }, + { + "slug": "novell-storage-manager", + "name": "Novell Storage Manager", + "url": "/v1/software/novell-storage-manager" + }, + { + "slug": "novell-zenworks", + "name": "Novell ZENworks", + "url": "/v1/software/novell-zenworks" + }, + { + "slug": "novell-edirectory", + "name": "Novell eDirectory", + "url": "/v1/software/novell-edirectory" + }, + { + "slug": "noverfly", + "name": "NoverFly", + "url": "/v1/software/noverfly" + }, + { + "slug": "novopay", + "name": "Novopay", + "url": "/v1/software/novopay" + }, + { + "slug": "nowcomment", + "name": "NowComment", + "url": "/v1/software/nowcomment" + }, + { + "slug": "nowserving", + "name": "NowServing", + "url": "/v1/software/nowserving" + }, + { + "slug": "noxplayer", + "name": "NoxPlayer", + "url": "/v1/software/noxplayer" + }, + { + "slug": "npgsql", + "name": "Npgsql", + "url": "/v1/software/npgsql" + }, + { + "slug": "nucalc", + "name": "NuCalc", + "url": "/v1/software/nucalc" + }, + { + "slug": "nudat", + "name": "NuDat", + "url": "/v1/software/nudat" + }, + { + "slug": "nuprl", + "name": "NuPRL", + "url": "/v1/software/nuprl" + }, + { + "slug": "nusphere", + "name": "NuSphere", + "url": "/v1/software/nusphere" + }, + { + "slug": "nuance-pdf-reader", + "name": "Nuance PDF Reader", + "url": "/v1/software/nuance-pdf-reader" + }, + { + "slug": "nubimed", + "name": "Nubimed", + "url": "/v1/software/nubimed" + }, + { + "slug": "nuclear-rat", + "name": "Nuclear RAT", + "url": "/v1/software/nuclear-rat" + }, + { + "slug": "nucleus-for-government", + "name": "Nucleus for Government", + "url": "/v1/software/nucleus-for-government" + }, + { + "slug": "nudi", + "name": "Nudi", + "url": "/v1/software/nudi" + }, + { + "slug": "nuitka", + "name": "Nuitka", + "url": "/v1/software/nuitka" + }, + { + "slug": "nukeviet", + "name": "NukeViet", + "url": "/v1/software/nukeviet" + }, + { + "slug": "nukemap", + "name": "Nukemap", + "url": "/v1/software/nukemap" + }, + { + "slug": "numbuster", + "name": "NumBuster!", + "url": "/v1/software/numbuster" + }, + { + "slug": "numlockx", + "name": "NumLockX", + "url": "/v1/software/numlockx" + }, + { + "slug": "numxl", + "name": "NumXL", + "url": "/v1/software/numxl" + }, + { + "slug": "numberguru", + "name": "NumberGuru", + "url": "/v1/software/numberguru" + }, + { + "slug": "numeo", + "name": "Numeo", + "url": "/v1/software/numeo" + }, + { + "slug": "numerical-electromagnetics-code", + "name": "Numerical Electromagnetics Code", + "url": "/v1/software/numerical-electromagnetics-code" + }, + { + "slug": "numerical-propulsion-system-simulation", + "name": "Numerical Propulsion System Simulation", + "url": "/v1/software/numerical-propulsion-system-simulation" + }, + { + "slug": "nurbak", + "name": "Nurbak", + "url": "/v1/software/nurbak" + }, + { + "slug": "nusuk", + "name": "Nusuk", + "url": "/v1/software/nusuk" + }, + { + "slug": "nutrilow", + "name": "Nutrilow", + "url": "/v1/software/nutrilow" + }, + { + "slug": "nutritious-rice-for-the-world", + "name": "Nutritious Rice for the World", + "url": "/v1/software/nutritious-rice-for-the-world" + }, + { + "slug": "nuvem-marketing", + "name": "Nuvem Marketing", + "url": "/v1/software/nuvem-marketing" + }, + { + "slug": "nvidia-hairworks", + "name": "Nvidia HairWorks", + "url": "/v1/software/nvidia-hairworks" + }, + { + "slug": "nvidia-shadowplay", + "name": "Nvidia Shadowplay", + "url": "/v1/software/nvidia-shadowplay" + }, + { + "slug": "nvidia-system-tools", + "name": "Nvidia System Tools", + "url": "/v1/software/nvidia-system-tools" + }, + { + "slug": "nxivo", + "name": "Nxivo", + "url": "/v1/software/nxivo" + }, + { + "slug": "nym-mixnet", + "name": "Nym Mixnet", + "url": "/v1/software/nym-mixnet" + }, + { + "slug": "nymgo", + "name": "Nymgo", + "url": "/v1/software/nymgo" + }, + { + "slug": "o2-system", + "name": "O2 System", + "url": "/v1/software/o2-system" + }, + { + "slug": "o3spaces", + "name": "O3spaces", + "url": "/v1/software/o3spaces" + }, + { + "slug": "obdtester", + "name": "OBDTester", + "url": "/v1/software/obdtester" + }, + { + "slug": "ocad", + "name": "OCAD", + "url": "/v1/software/ocad" + }, + { + "slug": "occa", + "name": "OCCA", + "url": "/v1/software/occa" + }, + { + "slug": "ocml", + "name": "OCML", + "url": "/v1/software/ocml" + }, + { + "slug": "ocr-in-indian-languages", + "name": "OCR in Indian languages", + "url": "/v1/software/ocr-in-indian-languages" + }, + { + "slug": "ocr4all", + "name": "OCR4all", + "url": "/v1/software/ocr4all" + }, + { + "slug": "odbc-administrator", + "name": "ODBC Administrator", + "url": "/v1/software/odbc-administrator" + }, + { + "slug": "odk", + "name": "ODK", + "url": "/v1/software/odk" + }, + { + "slug": "odma", + "name": "ODMA", + "url": "/v1/software/odma" + }, + { + "slug": "oe-cake", + "name": "OE-Cake!", + "url": "/v1/software/oe-cake" + }, + { + "slug": "oelib", + "name": "OELib", + "url": "/v1/software/oelib" + }, + { + "slug": "ofork", + "name": "OFORK", + "url": "/v1/software/ofork" + }, + { + "slug": "ogmrip", + "name": "OGMRip", + "url": "/v1/software/ogmrip" + }, + { + "slug": "oki-common-lisp", + "name": "OKI Common Lisp", + "url": "/v1/software/oki-common-lisp" + }, + { + "slug": "ole-db-provider", + "name": "OLE DB provider", + "url": "/v1/software/ole-db-provider" + }, + { + "slug": "olefa", + "name": "OLEFA", + "url": "/v1/software/olefa" + }, + { + "slug": "olga", + "name": "OLGA", + "url": "/v1/software/olga" + }, + { + "slug": "oli-analyzer", + "name": "OLI Analyzer", + "url": "/v1/software/oli-analyzer" + }, + { + "slug": "oligo-primer-analysis-software", + "name": "OLIGO Primer Analysis Software", + "url": "/v1/software/oligo-primer-analysis-software" + }, + { + "slug": "olimexino-2560", + "name": "OLIMEXINO-2560", + "url": "/v1/software/olimexino-2560" + }, + { + "slug": "om1", + "name": "OM1", + "url": "/v1/software/om1" + }, + { + "slug": "omero", + "name": "OMERO", + "url": "/v1/software/omero" + }, + { + "slug": "omgfixmd", + "name": "OMGfixMD", + "url": "/v1/software/omgfixmd" + }, + { + "slug": "omii-uk", + "name": "OMII-UK", + "url": "/v1/software/omii-uk" + }, + { + "slug": "ompl", + "name": "OMPL", + "url": "/v1/software/ompl" + }, + { + "slug": "omake", + "name": "OMake", + "url": "/v1/software/omake" + }, + { + "slug": "onb-jupyter-notebooks", + "name": "ONB Jupyter Notebooks", + "url": "/v1/software/onb-jupyter-notebooks" + }, + { + "slug": "opal", + "name": "OPAL", + "url": "/v1/software/opal" + }, + { + "slug": "opals", + "name": "OPALS", + "url": "/v1/software/opals" + }, + { + "slug": "opaws", + "name": "OPAWS", + "url": "/v1/software/opaws" + }, + { + "slug": "opcol", + "name": "OPCOL", + "url": "/v1/software/opcol" + }, + { + "slug": "opsin", + "name": "OPSIN", + "url": "/v1/software/opsin" + }, + { + "slug": "opus-q29364572", + "name": "OPUS", + "url": "/v1/software/opus-q29364572" + }, + { + "slug": "opus", + "name": "OPUS", + "url": "/v1/software/opus" + }, + { + "slug": "or-tools", + "name": "OR-Tools", + "url": "/v1/software/or-tools" + }, + { + "slug": "orbexpress", + "name": "ORBexpress", + "url": "/v1/software/orbexpress" + }, + { + "slug": "orfo", + "name": "ORFO", + "url": "/v1/software/orfo" + }, + { + "slug": "orm-designer", + "name": "ORM Designer", + "url": "/v1/software/orm-designer" + }, + { + "slug": "ortep", + "name": "ORTEP", + "url": "/v1/software/ortep" + }, + { + "slug": "ortolang", + "name": "ORTOLANG", + "url": "/v1/software/ortolang" + }, + { + "slug": "oscache", + "name": "OSCache", + "url": "/v1/software/oscache" + }, + { + "slug": "osmp", + "name": "OSMP", + "url": "/v1/software/osmp" + }, + { + "slug": "osome", + "name": "OSoMe", + "url": "/v1/software/osome" + }, + { + "slug": "ovn", + "name": "OVN", + "url": "/v1/software/ovn" + }, + { + "slug": "owbasic", + "name": "OWBasic", + "url": "/v1/software/owbasic" + }, + { + "slug": "owfs", + "name": "OWFS", + "url": "/v1/software/owfs" + }, + { + "slug": "oak-engage", + "name": "Oak Engage", + "url": "/v1/software/oak-engage" + }, + { + "slug": "oasis-montaj", + "name": "Oasis montaj", + "url": "/v1/software/oasis-montaj" + }, + { + "slug": "obexftp", + "name": "ObexFTP", + "url": "/v1/software/obexftp" + }, + { + "slug": "object-description-language", + "name": "Object Description Language", + "url": "/v1/software/object-description-language" + }, + { + "slug": "object-desktop", + "name": "Object Desktop", + "url": "/v1/software/object-desktop" + }, + { + "slug": "object-oriented-data-technology", + "name": "Object Oriented Data Technology", + "url": "/v1/software/object-oriented-data-technology" + }, + { + "slug": "object-oriented-abstract-type-hierarchy", + "name": "Object-oriented Abstract Type Hierarchy", + "url": "/v1/software/object-oriented-abstract-type-hierarchy" + }, + { + "slug": "objectdb", + "name": "ObjectDB", + "url": "/v1/software/objectdb" + }, + { + "slug": "objectdatabase", + "name": "ObjectDatabase++", + "url": "/v1/software/objectdatabase" + }, + { + "slug": "objectstore", + "name": "ObjectStore", + "url": "/v1/software/objectstore" + }, + { + "slug": "objectvision", + "name": "ObjectVision", + "url": "/v1/software/objectvision" + }, + { + "slug": "objective-vision", + "name": "Objective vision", + "url": "/v1/software/objective-vision" + }, + { + "slug": "objectivefs", + "name": "ObjectiveFS", + "url": "/v1/software/objectivefs" + }, + { + "slug": "oblix", + "name": "Oblix", + "url": "/v1/software/oblix" + }, + { + "slug": "obscuracam", + "name": "ObscuraCam", + "url": "/v1/software/obscuracam" + }, + { + "slug": "observer-xt", + "name": "Observer XT", + "url": "/v1/software/observer-xt" + }, + { + "slug": "ocarina", + "name": "Ocarina", + "url": "/v1/software/ocarina" + }, + { + "slug": "ocean-data-view", + "name": "Ocean Data View", + "url": "/v1/software/ocean-data-view" + }, + { + "slug": "octamed", + "name": "OctaMED", + "url": "/v1/software/octamed" + }, + { + "slug": "octane-render", + "name": "Octane Render", + "url": "/v1/software/octane-render" + }, + { + "slug": "octoprint", + "name": "OctoPrint", + "url": "/v1/software/octoprint" + }, + { + "slug": "octopi", + "name": "Octopi", + "url": "/v1/software/octopi" + }, + { + "slug": "oculus-quill", + "name": "Oculus Quill", + "url": "/v1/software/oculus-quill" + }, + { + "slug": "odigo-messenger", + "name": "Odigo Messenger", + "url": "/v1/software/odigo-messenger" + }, + { + "slug": "odin", + "name": "Odin", + "url": "/v1/software/odin" + }, + { + "slug": "odoshield", + "name": "OdoShield", + "url": "/v1/software/odoshield" + }, + { + "slug": "off-by-one", + "name": "Off By One", + "url": "/v1/software/off-by-one" + }, + { + "slug": "office-2004-for-mac", + "name": "Office 2004 for Mac", + "url": "/v1/software/office-2004-for-mac" + }, + { + "slug": "office-forms", + "name": "Office Forms", + "url": "/v1/software/office-forms" + }, + { + "slug": "office-genuine-advantage", + "name": "Office Genuine Advantage", + "url": "/v1/software/office-genuine-advantage" + }, + { + "slug": "officeweb", + "name": "Officeweb", + "url": "/v1/software/officeweb" + }, + { + "slug": "oh-my-zsh", + "name": "Oh My Zsh", + "url": "/v1/software/oh-my-zsh" + }, + { + "slug": "oiled", + "name": "OilEd", + "url": "/v1/software/oiled" + }, + { + "slug": "okapi-framework", + "name": "Okapi Framework", + "url": "/v1/software/okapi-framework" + }, + { + "slug": "okopipi", + "name": "Okopipi", + "url": "/v1/software/okopipi" + }, + { + "slug": "old-bailey-data-warehousing-interface", + "name": "Old Bailey Data Warehousing Interface", + "url": "/v1/software/old-bailey-data-warehousing-interface" + }, + { + "slug": "olive-browser", + "name": "Olive Browser", + "url": "/v1/software/olive-browser" + }, + { + "slug": "oliver", + "name": "Oliver", + "url": "/v1/software/oliver" + }, + { + "slug": "oloneo-photoengine", + "name": "Oloneo PhotoEngine", + "url": "/v1/software/oloneo-photoengine" + }, + { + "slug": "olvid", + "name": "Olvid", + "url": "/v1/software/olvid" + }, + { + "slug": "olympus-master", + "name": "Olympus Master", + "url": "/v1/software/olympus-master" + }, + { + "slug": "omega", + "name": "Omega", + "url": "/v1/software/omega" + }, + { + "slug": "omeka", + "name": "Omeka", + "url": "/v1/software/omeka" + }, + { + "slug": "omeka-s", + "name": "Omeka S", + "url": "/v1/software/omeka-s" + }, + { + "slug": "omisego", + "name": "OmiseGO", + "url": "/v1/software/omisego" + }, + { + "slug": "omnidictionary", + "name": "OmniDictionary", + "url": "/v1/software/omnidictionary" + }, + { + "slug": "omnidisksweeper", + "name": "OmniDiskSweeper", + "url": "/v1/software/omnidisksweeper" + }, + { + "slug": "omnifocus", + "name": "OmniFocus", + "url": "/v1/software/omnifocus" + }, + { + "slug": "omnigraphsketcher", + "name": "OmniGraphSketcher", + "url": "/v1/software/omnigraphsketcher" + }, + { + "slug": "omnioutliner", + "name": "OmniOutliner", + "url": "/v1/software/omnioutliner" + }, + { + "slug": "omnipage", + "name": "OmniPage", + "url": "/v1/software/omnipage" + }, + { + "slug": "omnipage-pro-12", + "name": "OmniPage Pro 12", + "url": "/v1/software/omnipage-pro-12" + }, + { + "slug": "omniplan", + "name": "OmniPlan", + "url": "/v1/software/omniplan" + }, + { + "slug": "omnissa-horizon", + "name": "Omnissa Horizon", + "url": "/v1/software/omnissa-horizon" + }, + { + "slug": "omnitracker", + "name": "Omnitracker", + "url": "/v1/software/omnitracker" + }, + { + "slug": "on-demand", + "name": "On Demand", + "url": "/v1/software/on-demand" + }, + { + "slug": "onapp", + "name": "OnApp", + "url": "/v1/software/onapp" + }, + { + "slug": "ontime", + "name": "OnTime", + "url": "/v1/software/ontime" + }, + { + "slug": "one-ui", + "name": "One UI", + "url": "/v1/software/one-ui" + }, + { + "slug": "one-os", + "name": "One-OS", + "url": "/v1/software/one-os" + }, + { + "slug": "onepager-pro", + "name": "Onepager Pro", + "url": "/v1/software/onepager-pro" + }, + { + "slug": "online-quran-project", + "name": "Online Quran Project", + "url": "/v1/software/online-quran-project" + }, + { + "slug": "onlinefamily-norton", + "name": "OnlineFamily.Norton", + "url": "/v1/software/onlinefamily-norton" + }, + { + "slug": "onlinehpc", + "name": "OnlineHPC", + "url": "/v1/software/onlinehpc" + }, + { + "slug": "onodo", + "name": "Onodo", + "url": "/v1/software/onodo" + }, + { + "slug": "onsen-ui", + "name": "Onsen UI", + "url": "/v1/software/onsen-ui" + }, + { + "slug": "ontario-prevention-clinic", + "name": "Ontario Prevention Clinic", + "url": "/v1/software/ontario-prevention-clinic" + }, + { + "slug": "ontoviz", + "name": "OntoViz", + "url": "/v1/software/ontoviz" + }, + { + "slug": "ontology-quality-assessment", + "name": "Ontology Quality Assessment", + "url": "/v1/software/ontology-quality-assessment" + }, + { + "slug": "onyx", + "name": "OnyX", + "url": "/v1/software/onyx" + }, + { + "slug": "oodle-sdk", + "name": "Oodle SDK", + "url": "/v1/software/oodle-sdk" + }, + { + "slug": "optex", + "name": "OpTeX", + "url": "/v1/software/optex" + }, + { + "slug": "opaque-binary-blob", + "name": "Opaque binary blob", + "url": "/v1/software/opaque-binary-blob" + }, + { + "slug": "open-quantitative-structure-activity-property-relationship-app", + "name": "Open (Quantitative) Structure-activity/property Relationship App", + "url": "/v1/software/open-quantitative-structure-activity-property-relationship-app" + }, + { + "slug": "open-3d-engine", + "name": "Open 3D Engine", + "url": "/v1/software/open-3d-engine" + }, + { + "slug": "open-assistant", + "name": "Open Assistant", + "url": "/v1/software/open-assistant" + }, + { + "slug": "open-attribute", + "name": "Open Attribute", + "url": "/v1/software/open-attribute" + }, + { + "slug": "open-brush", + "name": "Open Brush", + "url": "/v1/software/open-brush" + }, + { + "slug": "open-cobalt", + "name": "Open Cobalt", + "url": "/v1/software/open-cobalt" + }, + { + "slug": "open-code", + "name": "Open Code", + "url": "/v1/software/open-code" + }, + { + "slug": "open-collaboration-services", + "name": "Open Collaboration Services", + "url": "/v1/software/open-collaboration-services" + }, + { + "slug": "open-computer-forensics-architecture", + "name": "Open Computer Forensics Architecture", + "url": "/v1/software/open-computer-forensics-architecture" + }, + { + "slug": "open-conference-systems", + "name": "Open Conference Systems", + "url": "/v1/software/open-conference-systems" + }, + { + "slug": "open-digitalbiomarkerdiscoverypipeline", + "name": "Open DigitalBiomarkerDiscoveryPipeline", + "url": "/v1/software/open-digitalbiomarkerdiscoverypipeline" + }, + { + "slug": "open-dylan", + "name": "Open Dylan", + "url": "/v1/software/open-dylan" + }, + { + "slug": "open-harvester-systems", + "name": "Open Harvester Systems", + "url": "/v1/software/open-harvester-systems" + }, + { + "slug": "open-health-imaging-foundation-viewer", + "name": "Open Health Imaging Foundation Viewer", + "url": "/v1/software/open-health-imaging-foundation-viewer" + }, + { + "slug": "open-jtag", + "name": "Open JTAG", + "url": "/v1/software/open-jtag" + }, + { + "slug": "open-management-infrastructure", + "name": "Open Management Infrastructure", + "url": "/v1/software/open-management-infrastructure" + }, + { + "slug": "open-network-install-environment", + "name": "Open Network Install Environment", + "url": "/v1/software/open-network-install-environment" + }, + { + "slug": "open-platform-architecture", + "name": "Open Platform Architecture", + "url": "/v1/software/open-platform-architecture" + }, + { + "slug": "open-rails", + "name": "Open Rails", + "url": "/v1/software/open-rails" + }, + { + "slug": "open-science-community-starter-kit", + "name": "Open Science Community Starter Kit", + "url": "/v1/software/open-science-community-starter-kit" + }, + { + "slug": "open-source-cluster-application-resources", + "name": "Open Source Cluster Application Resources", + "url": "/v1/software/open-source-cluster-application-resources" + }, + { + "slug": "open-source-console-for-real-time-acquisition", + "name": "Open Source Console for Real-Time Acquisition", + "url": "/v1/software/open-source-console-for-real-time-acquisition" + }, + { + "slug": "open-source-software-cd", + "name": "Open Source Software CD", + "url": "/v1/software/open-source-software-cd" + }, + { + "slug": "open-source-software-image-map", + "name": "Open Source Software Image Map", + "url": "/v1/software/open-source-software-image-map" + }, + { + "slug": "open-specy", + "name": "Open Specy", + "url": "/v1/software/open-specy" + }, + { + "slug": "open-system-engineering-environment", + "name": "Open System Engineering Environment", + "url": "/v1/software/open-system-engineering-environment" + }, + { + "slug": "open-systems-accounting-software", + "name": "Open Systems Accounting Software", + "url": "/v1/software/open-systems-accounting-software" + }, + { + "slug": "open-threat-exchange", + "name": "Open Threat Exchange", + "url": "/v1/software/open-threat-exchange" + }, + { + "slug": "open-source-brand", + "name": "Open source brand", + "url": "/v1/software/open-source-brand" + }, + { + "slug": "open-source-in-kosovo", + "name": "Open source in Kosovo", + "url": "/v1/software/open-source-in-kosovo" + }, + { + "slug": "open-e-dss-v6", + "name": "Open-E DSS V6", + "url": "/v1/software/open-e-dss-v6" + }, + { + "slug": "open-meteo", + "name": "Open-Meteo", + "url": "/v1/software/open-meteo" + }, + { + "slug": "open-source-chemistry-analysis-routines", + "name": "Open-Source Chemistry Analysis Routines", + "url": "/v1/software/open-source-chemistry-analysis-routines" + }, + { + "slug": "open3dgc", + "name": "Open3DGC", + "url": "/v1/software/open3dgc" + }, + { + "slug": "openai-codex", + "name": "OpenAI Codex", + "url": "/v1/software/openai-codex" + }, + { + "slug": "openai-five", + "name": "OpenAI Five", + "url": "/v1/software/openai-five" + }, + { + "slug": "openai-operator", + "name": "OpenAI Operator", + "url": "/v1/software/openai-operator" + }, + { + "slug": "openalpr", + "name": "OpenALPR", + "url": "/v1/software/openalpr" + }, + { + "slug": "openam", + "name": "OpenAM", + "url": "/v1/software/openam" + }, + { + "slug": "openatlas", + "name": "OpenAtlas", + "url": "/v1/software/openatlas" + }, + { + "slug": "openautonomy", + "name": "OpenAutonomy", + "url": "/v1/software/openautonomy" + }, + { + "slug": "openbis", + "name": "OpenBIS", + "url": "/v1/software/openbis" + }, + { + "slug": "openbmc", + "name": "OpenBMC", + "url": "/v1/software/openbmc" + }, + { + "slug": "openbinder", + "name": "OpenBinder", + "url": "/v1/software/openbinder" + }, + { + "slug": "opencd", + "name": "OpenCD", + "url": "/v1/software/opencd" + }, + { + "slug": "opencmis", + "name": "OpenCMIS", + "url": "/v1/software/opencmis" + }, + { + "slug": "opencrg", + "name": "OpenCRG", + "url": "/v1/software/opencrg" + }, + { + "slug": "openct", + "name": "OpenCT", + "url": "/v1/software/openct" + }, + { + "slug": "opencard-framework", + "name": "OpenCard Framework", + "url": "/v1/software/opencard-framework" + }, + { + "slug": "opencloud", + "name": "OpenCloud", + "url": "/v1/software/opencloud" + }, + { + "slug": "openconf", + "name": "OpenConf", + "url": "/v1/software/openconf" + }, + { + "slug": "opencore-auxiliary-tools", + "name": "OpenCore Auxiliary Tools", + "url": "/v1/software/opencore-auxiliary-tools" + }, + { + "slug": "opendbx", + "name": "OpenDBX", + "url": "/v1/software/opendbx" + }, + { + "slug": "opendkim", + "name": "OpenDKIM", + "url": "/v1/software/opendkim" + }, + { + "slug": "opendmtp", + "name": "OpenDMTP", + "url": "/v1/software/opendmtp" + }, + { + "slug": "opendoc", + "name": "OpenDoc", + "url": "/v1/software/opendoc" + }, + { + "slug": "opendronemap", + "name": "OpenDroneMap", + "url": "/v1/software/opendronemap" + }, + { + "slug": "openetd", + "name": "OpenETD", + "url": "/v1/software/openetd" + }, + { + "slug": "openelect", + "name": "OpenElect", + "url": "/v1/software/openelect" + }, + { + "slug": "openemulator", + "name": "OpenEmulator", + "url": "/v1/software/openemulator" + }, + { + "slug": "openepi", + "name": "OpenEpi", + "url": "/v1/software/openepi" + }, + { + "slug": "openfeint", + "name": "OpenFeint", + "url": "/v1/software/openfeint" + }, + { + "slug": "openframe", + "name": "OpenFrame", + "url": "/v1/software/openframe" + }, + { + "slug": "opengl-es", + "name": "OpenGL ES", + "url": "/v1/software/opengl-es" + }, + { + "slug": "opengl-mathematics", + "name": "OpenGL Mathematics", + "url": "/v1/software/opengl-mathematics" + }, + { + "slug": "opengl-sc", + "name": "OpenGL SC", + "url": "/v1/software/opengl-sc" + }, + { + "slug": "opengeosys", + "name": "OpenGeoSys", + "url": "/v1/software/opengeosys" + }, + { + "slug": "openhpc", + "name": "OpenHPC", + "url": "/v1/software/openhpc" + }, + { + "slug": "openhpi", + "name": "OpenHPI", + "url": "/v1/software/openhpi" + }, + { + "slug": "openimis", + "name": "OpenIMIS", + "url": "/v1/software/openimis" + }, + { + "slug": "openipc", + "name": "OpenIPC", + "url": "/v1/software/openipc" + }, + { + "slug": "openipmi", + "name": "OpenIPMI", + "url": "/v1/software/openipmi" + }, + { + "slug": "openinkpot", + "name": "OpenInkpot", + "url": "/v1/software/openinkpot" + }, + { + "slug": "openinsight", + "name": "OpenInsight", + "url": "/v1/software/openinsight" + }, + { + "slug": "openintro-statistics", + "name": "OpenIntro Statistics", + "url": "/v1/software/openintro-statistics" + }, + { + "slug": "openkode", + "name": "OpenKODE", + "url": "/v1/software/openkode" + }, + { + "slug": "openlava", + "name": "OpenLava", + "url": "/v1/software/openlava" + }, + { + "slug": "openlink-structured-data-sniffer", + "name": "OpenLink Structured Data Sniffer", + "url": "/v1/software/openlink-structured-data-sniffer" + }, + { + "slug": "openlisp", + "name": "OpenLisp", + "url": "/v1/software/openlisp" + }, + { + "slug": "openlitespeed", + "name": "OpenLiteSpeed", + "url": "/v1/software/openlitespeed" + }, + { + "slug": "openmc", + "name": "OpenMC", + "url": "/v1/software/openmc" + }, + { + "slug": "openmfg", + "name": "OpenMFG", + "url": "/v1/software/openmfg" + }, + { + "slug": "openmi-standard", + "name": "OpenMI Standard", + "url": "/v1/software/openmi-standard" + }, + { + "slug": "openml", + "name": "OpenML", + "url": "/v1/software/openml" + }, + { + "slug": "openmm", + "name": "OpenMM", + "url": "/v1/software/openmm" + }, + { + "slug": "openmp", + "name": "OpenMP", + "url": "/v1/software/openmp" + }, + { + "slug": "openmanage", + "name": "OpenManage", + "url": "/v1/software/openmanage" + }, + { + "slug": "openni", + "name": "OpenNI", + "url": "/v1/software/openni" + }, + { + "slug": "openni2", + "name": "OpenNI2", + "url": "/v1/software/openni2" + }, + { + "slug": "openorienteering-mapper", + "name": "OpenOrienteering Mapper", + "url": "/v1/software/openorienteering-mapper" + }, + { + "slug": "openpec", + "name": "OpenPEC", + "url": "/v1/software/openpec" + }, + { + "slug": "openptk", + "name": "OpenPTK", + "url": "/v1/software/openptk" + }, + { + "slug": "openpose", + "name": "OpenPose", + "url": "/v1/software/openpose" + }, + { + "slug": "openprocurement", + "name": "OpenProcurement", + "url": "/v1/software/openprocurement" + }, + { + "slug": "openprofile", + "name": "OpenProfile", + "url": "/v1/software/openprofile" + }, + { + "slug": "openqwaq", + "name": "OpenQwaq", + "url": "/v1/software/openqwaq" + }, + { + "slug": "openradioss", + "name": "OpenRadioss", + "url": "/v1/software/openradioss" + }, + { + "slug": "opensl-es", + "name": "OpenSL ES", + "url": "/v1/software/opensl-es" + }, + { + "slug": "opensmile", + "name": "OpenSMILE", + "url": "/v1/software/opensmile" + }, + { + "slug": "opensso", + "name": "OpenSSO", + "url": "/v1/software/opensso" + }, + { + "slug": "opensearch", + "name": "OpenSearch", + "url": "/v1/software/opensearch" + }, + { + "slug": "opensees", + "name": "OpenSees", + "url": "/v1/software/opensees" + }, + { + "slug": "opensocial", + "name": "OpenSocial", + "url": "/v1/software/opensocial" + }, + { + "slug": "opensymphony", + "name": "OpenSymphony", + "url": "/v1/software/opensymphony" + }, + { + "slug": "opentimestamps", + "name": "OpenTimestamps", + "url": "/v1/software/opentimestamps" + }, + { + "slug": "openvg", + "name": "OpenVG", + "url": "/v1/software/openvg" + }, + { + "slug": "openwf", + "name": "OpenWF", + "url": "/v1/software/openwf" + }, + { + "slug": "openwebglobe", + "name": "OpenWebGlobe", + "url": "/v1/software/openwebglobe" + }, + { + "slug": "openwidget", + "name": "OpenWidget", + "url": "/v1/software/openwidget" + }, + { + "slug": "openworm", + "name": "OpenWorm", + "url": "/v1/software/openworm" + }, + { + "slug": "openxla", + "name": "OpenXLA", + "url": "/v1/software/openxla" + }, + { + "slug": "openxlive", + "name": "OpenXLive", + "url": "/v1/software/openxlive" + }, + { + "slug": "openxpki", + "name": "OpenXPKI", + "url": "/v1/software/openxpki" + }, + { + "slug": "openxr", + "name": "OpenXR", + "url": "/v1/software/openxr" + }, + { + "slug": "openbravo", + "name": "Openbravo", + "url": "/v1/software/openbravo" + }, + { + "slug": "openbravo-pos", + "name": "Openbravo POS", + "url": "/v1/software/openbravo-pos" + }, + { + "slug": "openchange", + "name": "Openchange", + "url": "/v1/software/openchange" + }, + { + "slug": "openclinica", + "name": "Openclinica", + "url": "/v1/software/openclinica" + }, + { + "slug": "opendisc", + "name": "Opendisc", + "url": "/v1/software/opendisc" + }, + { + "slug": "openlab", + "name": "Openlab", + "url": "/v1/software/openlab" + }, + { + "slug": "openpass", + "name": "Openpass", + "url": "/v1/software/openpass" + }, + { + "slug": "opentheso", + "name": "Opentheso", + "url": "/v1/software/opentheso" + }, + { + "slug": "opera-dragonfly", + "name": "Opera Dragonfly", + "url": "/v1/software/opera-dragonfly" + }, + { + "slug": "operation-time-research-software", + "name": "Operation Time Research Software", + "url": "/v1/software/operation-time-research-software" + }, + { + "slug": "operator", + "name": "Operator", + "url": "/v1/software/operator" + }, + { + "slug": "operator-s-cockpit", + "name": "Operator's Cockpit", + "url": "/v1/software/operator-s-cockpit" + }, + { + "slug": "opero", + "name": "Opero", + "url": "/v1/software/opero" + }, + { + "slug": "opertoon", + "name": "Opertoon", + "url": "/v1/software/opertoon" + }, + { + "slug": "opik", + "name": "Opik", + "url": "/v1/software/opik" + }, + { + "slug": "opspuls", + "name": "OpsPuls", + "url": "/v1/software/opspuls" + }, + { + "slug": "optquest", + "name": "OptQuest", + "url": "/v1/software/optquest" + }, + { + "slug": "opteamus", + "name": "Opteamus", + "url": "/v1/software/opteamus" + }, + { + "slug": "opti-bet", + "name": "Opti-Bet", + "url": "/v1/software/opti-bet" + }, + { + "slug": "optislang", + "name": "OptiSLang", + "url": "/v1/software/optislang" + }, + { + "slug": "optix", + "name": "OptiX", + "url": "/v1/software/optix" + }, + { + "slug": "optica-optics-software", + "name": "Optica Optics Software", + "url": "/v1/software/optica-optics-software" + }, + { + "slug": "optics-software-for-layout-and-optimization", + "name": "Optics Software for Layout and Optimization", + "url": "/v1/software/optics-software-for-layout-and-optimization" + }, + { + "slug": "optimalj", + "name": "OptimalJ", + "url": "/v1/software/optimalj" + }, + { + "slug": "optimization-toolbox", + "name": "Optimization Toolbox", + "url": "/v1/software/optimization-toolbox" + }, + { + "slug": "optix-pro", + "name": "Optix Pro", + "url": "/v1/software/optix-pro" + }, + { + "slug": "opus-computer-based-conversation-system", + "name": "Opus Computer Based Conversation System", + "url": "/v1/software/opus-computer-based-conversation-system" + }, + { + "slug": "opusmodus", + "name": "Opusmodus", + "url": "/v1/software/opusmodus" + }, + { + "slug": "oracle-adaptive-access-manager", + "name": "Oracle Adaptive Access Manager", + "url": "/v1/software/oracle-adaptive-access-manager" + }, + { + "slug": "oracle-advanced-security", + "name": "Oracle Advanced Security", + "url": "/v1/software/oracle-advanced-security" + }, + { + "slug": "oracle-advertising-and-customer-experience", + "name": "Oracle Advertising and Customer Experience", + "url": "/v1/software/oracle-advertising-and-customer-experience" + }, + { + "slug": "oracle-bi-publisher", + "name": "Oracle BI Publisher", + "url": "/v1/software/oracle-bi-publisher" + }, + { + "slug": "oracle-business-intelligence-suite-enterprise-edition", + "name": "Oracle Business Intelligence Suite Enterprise Edition", + "url": "/v1/software/oracle-business-intelligence-suite-enterprise-edition" + }, + { + "slug": "oracle-content-management", + "name": "Oracle Content Management", + "url": "/v1/software/oracle-content-management" + }, + { + "slug": "oracle-data-guard", + "name": "Oracle Data Guard", + "url": "/v1/software/oracle-data-guard" + }, + { + "slug": "oracle-data-integrator", + "name": "Oracle Data Integrator", + "url": "/v1/software/oracle-data-integrator" + }, + { + "slug": "oracle-data-mining", + "name": "Oracle Data Mining", + "url": "/v1/software/oracle-data-mining" + }, + { + "slug": "oracle-designer", + "name": "Oracle Designer", + "url": "/v1/software/oracle-designer" + }, + { + "slug": "oracle-discoverer", + "name": "Oracle Discoverer", + "url": "/v1/software/oracle-discoverer" + }, + { + "slug": "oracle-enterprise-manager-ops-center", + "name": "Oracle Enterprise Manager Ops Center", + "url": "/v1/software/oracle-enterprise-manager-ops-center" + }, + { + "slug": "oracle-enterprise-pack-for-eclipse", + "name": "Oracle Enterprise Pack for Eclipse", + "url": "/v1/software/oracle-enterprise-pack-for-eclipse" + }, + { + "slug": "oracle-financial-services-software", + "name": "Oracle Financial Services Software", + "url": "/v1/software/oracle-financial-services-software" + }, + { + "slug": "oracle-fusion-architecture", + "name": "Oracle Fusion Architecture", + "url": "/v1/software/oracle-fusion-architecture" + }, + { + "slug": "oracle-hcm-cloud", + "name": "Oracle HCM Cloud", + "url": "/v1/software/oracle-hcm-cloud" + }, + { + "slug": "oracle-net-services", + "name": "Oracle Net Services", + "url": "/v1/software/oracle-net-services" + }, + { + "slug": "oracle-nosql-database", + "name": "Oracle NoSQL Database", + "url": "/v1/software/oracle-nosql-database" + }, + { + "slug": "oracle-olap", + "name": "Oracle OLAP", + "url": "/v1/software/oracle-olap" + }, + { + "slug": "oracle-spatial", + "name": "Oracle Spatial", + "url": "/v1/software/oracle-spatial" + }, + { + "slug": "oracle-toplink", + "name": "Oracle TopLink", + "url": "/v1/software/oracle-toplink" + }, + { + "slug": "oracle-vdi", + "name": "Oracle VDI", + "url": "/v1/software/oracle-vdi" + }, + { + "slug": "oracle-vm", + "name": "Oracle VM", + "url": "/v1/software/oracle-vm" + }, + { + "slug": "oracle-warehouse-builder", + "name": "Oracle Warehouse Builder", + "url": "/v1/software/oracle-warehouse-builder" + }, + { + "slug": "oracle-zfs", + "name": "Oracle ZFS", + "url": "/v1/software/oracle-zfs" + }, + { + "slug": "oracle-zero-data-loss-recovery-appliance", + "name": "Oracle Zero Data Loss Recovery Appliance", + "url": "/v1/software/oracle-zero-data-loss-recovery-appliance" + }, + { + "slug": "oragent", + "name": "Oragent", + "url": "/v1/software/oragent" + }, + { + "slug": "oral-history-metadata-synchronizer", + "name": "Oral History Metadata Synchronizer", + "url": "/v1/software/oral-history-metadata-synchronizer" + }, + { + "slug": "orange", + "name": "Orange", + "url": "/v1/software/orange" + }, + { + "slug": "orb", + "name": "Orb", + "url": "/v1/software/orb" + }, + { + "slug": "orbitron", + "name": "Orbitron", + "url": "/v1/software/orbitron" + }, + { + "slug": "orbix", + "name": "Orbix", + "url": "/v1/software/orbix" + }, + { + "slug": "orgavision", + "name": "Orgavision", + "url": "/v1/software/orgavision" + }, + { + "slug": "origami-studio", + "name": "Origami Studio", + "url": "/v1/software/origami-studio" + }, + { + "slug": "origin", + "name": "Origin", + "url": "/v1/software/origin" + }, + { + "slug": "origyn-web-browser", + "name": "Origyn Web Browser", + "url": "/v1/software/origyn-web-browser" + }, + { + "slug": "orion-application-server", + "name": "Orion Application Server", + "url": "/v1/software/orion-application-server" + }, + { + "slug": "orion-engine", + "name": "Orion Engine", + "url": "/v1/software/orion-engine" + }, + { + "slug": "orionvm", + "name": "OrionVM", + "url": "/v1/software/orionvm" + }, + { + "slug": "orkas", + "name": "Orkas", + "url": "/v1/software/orkas" + }, + { + "slug": "orlando-breadboard", + "name": "Orlando Breadboard", + "url": "/v1/software/orlando-breadboard" + }, + { + "slug": "orlando-degrees-of-separation", + "name": "Orlando Degrees of Separation", + "url": "/v1/software/orlando-degrees-of-separation" + }, + { + "slug": "orlandovision-ovis", + "name": "OrlandoVision (OVis)", + "url": "/v1/software/orlandovision-ovis" + }, + { + "slug": "oroborus", + "name": "Oroborus", + "url": "/v1/software/oroborus" + }, + { + "slug": "orphex", + "name": "Orphex", + "url": "/v1/software/orphex" + }, + { + "slug": "orthofinder", + "name": "OrthoFinder", + "url": "/v1/software/orthofinder" + }, + { + "slug": "orthograph", + "name": "OrthoGraph", + "url": "/v1/software/orthograph" + }, + { + "slug": "orthopaedic-studio", + "name": "Orthopaedic Studio", + "url": "/v1/software/orthopaedic-studio" + }, + { + "slug": "orthopedic-surgery-simulation", + "name": "Orthopedic Surgery Simulation", + "url": "/v1/software/orthopedic-surgery-simulation" + }, + { + "slug": "osapher", + "name": "Osapher", + "url": "/v1/software/osapher" + }, + { + "slug": "osteoware", + "name": "Osteoware", + "url": "/v1/software/osteoware" + }, + { + "slug": "out-of-the-park-baseball-10", + "name": "Out of the Park Baseball 10", + "url": "/v1/software/out-of-the-park-baseball-10" + }, + { + "slug": "outernet", + "name": "Outernet", + "url": "/v1/software/outernet" + }, + { + "slug": "outline-of-free-software", + "name": "Outline of free software", + "url": "/v1/software/outline-of-free-software" + }, + { + "slug": "outlook-groups", + "name": "Outlook Groups", + "url": "/v1/software/outlook-groups" + }, + { + "slug": "outlook-for-windows", + "name": "Outlook for Windows", + "url": "/v1/software/outlook-for-windows" + }, + { + "slug": "outlook-on-the-web", + "name": "Outlook on the web", + "url": "/v1/software/outlook-on-the-web" + }, + { + "slug": "outpost-firewall-pro", + "name": "Outpost Firewall Pro", + "url": "/v1/software/outpost-firewall-pro" + }, + { + "slug": "outpost-security-suite", + "name": "Outpost Security Suite", + "url": "/v1/software/outpost-security-suite" + }, + { + "slug": "overdrive-media-console", + "name": "OverDrive Media Console", + "url": "/v1/software/overdrive-media-console" + }, + { + "slug": "oversim", + "name": "OverSim", + "url": "/v1/software/oversim" + }, + { + "slug": "overbite", + "name": "Overbite", + "url": "/v1/software/overbite" + }, + { + "slug": "overcast-media", + "name": "Overcast Media", + "url": "/v1/software/overcast-media" + }, + { + "slug": "overflow", + "name": "Overflow", + "url": "/v1/software/overflow" + }, + { + "slug": "overtone", + "name": "Overtone", + "url": "/v1/software/overtone" + }, + { + "slug": "overview", + "name": "Overview", + "url": "/v1/software/overview" + }, + { + "slug": "overview-of-restful-api-description-languages", + "name": "Overview of RESTful API Description Languages", + "url": "/v1/software/overview-of-restful-api-description-languages" + }, + { + "slug": "overwolf", + "name": "Overwolf", + "url": "/v1/software/overwolf" + }, + { + "slug": "owj-crm", + "name": "Owj CRM", + "url": "/v1/software/owj-crm" + }, + { + "slug": "owl-lisp", + "name": "Owl Lisp", + "url": "/v1/software/owl-lisp" + }, + { + "slug": "owlready2", + "name": "Owlready2", + "url": "/v1/software/owlready2" + }, + { + "slug": "owncast", + "name": "Owncast", + "url": "/v1/software/owncast" + }, + { + "slug": "oxford-concordance-program-ocp", + "name": "Oxford Concordance Program (OCP)", + "url": "/v1/software/oxford-concordance-program-ocp" + }, + { + "slug": "ozwin", + "name": "OzWin", + "url": "/v1/software/ozwin" + }, + { + "slug": "oziexplorer", + "name": "OziExplorer", + "url": "/v1/software/oziexplorer" + }, + { + "slug": "p-cad", + "name": "P-CAD", + "url": "/v1/software/p-cad" + }, + { + "slug": "p-i-p-s", + "name": "P.I.P.S.", + "url": "/v1/software/p-i-p-s" + }, + { + "slug": "pacte", + "name": "PACTE", + "url": "/v1/software/pacte" + }, + { + "slug": "palisade", + "name": "PALISADE", + "url": "/v1/software/palisade" + }, + { + "slug": "pan-os", + "name": "PAN-OS", + "url": "/v1/software/pan-os" + }, + { + "slug": "pangolin", + "name": "PANGOLIN", + "url": "/v1/software/pangolin" + }, + { + "slug": "panvs", + "name": "PANVS", + "url": "/v1/software/panvs" + }, + { + "slug": "paratec", + "name": "PARATEC", + "url": "/v1/software/paratec" + }, + { + "slug": "pas754", + "name": "PAS754", + "url": "/v1/software/pas754" + }, + { + "slug": "pass-sample-size-software", + "name": "PASS Sample Size Software", + "url": "/v1/software/pass-sample-size-software" + }, + { + "slug": "pass2rent", + "name": "PASS2RENT", + "url": "/v1/software/pass2rent" + }, + { + "slug": "patentem", + "name": "PATENTEM", + "url": "/v1/software/patentem" + }, + { + "slug": "pbboard", + "name": "PBBoard", + "url": "/v1/software/pbboard" + }, + { + "slug": "pbcore", + "name": "PBCore", + "url": "/v1/software/pbcore" + }, + { + "slug": "pbix-a11y", + "name": "PBIX A11y", + "url": "/v1/software/pbix-a11y" + }, + { + "slug": "pc-dataexchange", + "name": "PC DataExchange", + "url": "/v1/software/pc-dataexchange" + }, + { + "slug": "pc-file-transfer", + "name": "PC File Transfer", + "url": "/v1/software/pc-file-transfer" + }, + { + "slug": "pc-globe", + "name": "PC Globe", + "url": "/v1/software/pc-globe" + }, + { + "slug": "pc-reservation", + "name": "PC Reservation", + "url": "/v1/software/pc-reservation" + }, + { + "slug": "pc-file", + "name": "PC-File", + "url": "/v1/software/pc-file" + }, + { + "slug": "pc-kimmo", + "name": "PC-KIMMO", + "url": "/v1/software/pc-kimmo" + }, + { + "slug": "pc-lint", + "name": "PC-Lint", + "url": "/v1/software/pc-lint" + }, + { + "slug": "pc-talk", + "name": "PC-Talk", + "url": "/v1/software/pc-talk" + }, + { + "slug": "pc-write", + "name": "PC-Write", + "url": "/v1/software/pc-write" + }, + { + "slug": "pc-gene", + "name": "PC/GENE", + "url": "/v1/software/pc-gene" + }, + { + "slug": "pcb-investigator", + "name": "PCB-Investigator", + "url": "/v1/software/pcb-investigator" + }, + { + "slug": "pcboard", + "name": "PCBoard", + "url": "/v1/software/pcboard" + }, + { + "slug": "pci-geomatica", + "name": "PCI Geomatica", + "url": "/v1/software/pci-geomatica" + }, + { + "slug": "pcmark", + "name": "PCMark", + "url": "/v1/software/pcmark" + }, + { + "slug": "pcs-transcriber", + "name": "PCS-Transcriber", + "url": "/v1/software/pcs-transcriber" + }, + { + "slug": "pchar", + "name": "PChar", + "url": "/v1/software/pchar" + }, + { + "slug": "pc", + "name": "PC²", + "url": "/v1/software/pc" + }, + { + "slug": "pdb2pqr", + "name": "PDB2PQR", + "url": "/v1/software/pdb2pqr" + }, + { + "slug": "pdbreport", + "name": "PDBREPORT", + "url": "/v1/software/pdbreport" + }, + { + "slug": "pdcurses", + "name": "PDCurses", + "url": "/v1/software/pdcurses" + }, + { + "slug": "pde-plugin-development-environment", + "name": "PDE - Plugin Development Environment", + "url": "/v1/software/pde-plugin-development-environment" + }, + { + "slug": "pdf-compressor", + "name": "PDF Compressor", + "url": "/v1/software/pdf-compressor" + }, + { + "slug": "pdf-expert", + "name": "PDF Expert", + "url": "/v1/software/pdf-expert" + }, + { + "slug": "pdf-guru", + "name": "PDF Guru", + "url": "/v1/software/pdf-guru" + }, + { + "slug": "pdf-signer", + "name": "PDF Signer", + "url": "/v1/software/pdf-signer" + }, + { + "slug": "pdf-studio", + "name": "PDF Studio", + "url": "/v1/software/pdf-studio" + }, + { + "slug": "pdf-generator", + "name": "PDF generator", + "url": "/v1/software/pdf-generator" + }, + { + "slug": "pdf24-creator", + "name": "PDF24 Creator", + "url": "/v1/software/pdf24-creator" + }, + { + "slug": "pdffigures-2-0", + "name": "PDFFigures 2.0", + "url": "/v1/software/pdffigures-2-0" + }, + { + "slug": "pdfo", + "name": "PDFO", + "url": "/v1/software/pdfo" + }, + { + "slug": "pdfwix", + "name": "PDFWix", + "url": "/v1/software/pdfwix" + }, + { + "slug": "pdfdeal", + "name": "PDFdeal", + "url": "/v1/software/pdfdeal" + }, + { + "slug": "pdfescape", + "name": "PDFescape", + "url": "/v1/software/pdfescape" + }, + { + "slug": "pdfmyurl", + "name": "PDFmyURL", + "url": "/v1/software/pdfmyurl" + }, + { + "slug": "pdfsharp", + "name": "PDFsharp", + "url": "/v1/software/pdfsharp" + }, + { + "slug": "pecs", + "name": "PECS", + "url": "/v1/software/pecs" + }, + { + "slug": "penup", + "name": "PENUP", + "url": "/v1/software/penup" + }, + { + "slug": "permanitai", + "name": "PERMANITAI", + "url": "/v1/software/permanitai" + }, + { + "slug": "pesim", + "name": "PESim", + "url": "/v1/software/pesim" + }, + { + "slug": "petsc", + "name": "PETSc", + "url": "/v1/software/petsc" + }, + { + "slug": "peid", + "name": "PEiD", + "url": "/v1/software/peid" + }, + { + "slug": "pgpfone", + "name": "PGPfone", + "url": "/v1/software/pgpfone" + }, + { + "slug": "phoenix", + "name": "PHOENIX", + "url": "/v1/software/phoenix" + }, + { + "slug": "photomod", + "name": "PHOTOMOD", + "url": "/v1/software/photomod" + }, + { + "slug": "php-tools-for-visual-studio", + "name": "PHP Tools for Visual Studio", + "url": "/v1/software/php-tools-for-visual-studio" + }, + { + "slug": "phpboost", + "name": "PHPBoost", + "url": "/v1/software/phpboost" + }, + { + "slug": "phpstan", + "name": "PHPStan", + "url": "/v1/software/phpstan" + }, + { + "slug": "phpwind", + "name": "PHPWind", + "url": "/v1/software/phpwind" + }, + { + "slug": "phreeqc", + "name": "PHREEQC", + "url": "/v1/software/phreeqc" + }, + { + "slug": "phtml-encoder", + "name": "PHTML Encoder", + "url": "/v1/software/phtml-encoder" + }, + { + "slug": "picrust", + "name": "PICRUSt", + "url": "/v1/software/picrust" + }, + { + "slug": "pie-commander", + "name": "PIE Commander", + "url": "/v1/software/pie-commander" + }, + { + "slug": "pim-lx", + "name": "PIM/LX", + "url": "/v1/software/pim-lx" + }, + { + "slug": "pix", + "name": "PIX", + "url": "/v1/software/pix" + }, + { + "slug": "pix4dmapper", + "name": "PIX4Dmapper", + "url": "/v1/software/pix4dmapper" + }, + { + "slug": "pjblog", + "name": "PJBlog", + "url": "/v1/software/pjblog" + }, + { + "slug": "pkp-open-archives-harvester", + "name": "PKP Open Archives Harvester", + "url": "/v1/software/pkp-open-archives-harvester" + }, + { + "slug": "pkpm", + "name": "PKPM", + "url": "/v1/software/pkpm" + }, + { + "slug": "planta-project", + "name": "PLANTA Project", + "url": "/v1/software/planta-project" + }, + { + "slug": "platin", + "name": "PLATIN", + "url": "/v1/software/platin" + }, + { + "slug": "plato", + "name": "PLATO", + "url": "/v1/software/plato" + }, + { + "slug": "platon", + "name": "PLATON", + "url": "/v1/software/platon" + }, + { + "slug": "plecs", + "name": "PLECS", + "url": "/v1/software/plecs" + }, + { + "slug": "plink", + "name": "PLINK", + "url": "/v1/software/plink" + }, + { + "slug": "plumed", + "name": "PLUMED", + "url": "/v1/software/plumed" + }, + { + "slug": "ply", + "name": "PLY", + "url": "/v1/software/ply" + }, + { + "slug": "pm2", + "name": "PM2", + "url": "/v1/software/pm2" + }, + { + "slug": "pmspace-ai", + "name": "PMSPACE AI", + "url": "/v1/software/pmspace-ai" + }, + { + "slug": "pngtools", + "name": "PNGtools", + "url": "/v1/software/pngtools" + }, + { + "slug": "poji", + "name": "POJI", + "url": "/v1/software/poji" + }, + { + "slug": "polestar-xeus", + "name": "POLESTAR XEUS", + "url": "/v1/software/polestar-xeus" + }, + { + "slug": "popgene", + "name": "POPGENE", + "url": "/v1/software/popgene" + }, + { + "slug": "pp-jailbreak", + "name": "PP Jailbreak", + "url": "/v1/software/pp-jailbreak" + }, + { + "slug": "ppg-phonem", + "name": "PPG Phonem", + "url": "/v1/software/ppg-phonem" + }, + { + "slug": "pps-tv", + "name": "PPS.tv", + "url": "/v1/software/pps-tv" + }, + { + "slug": "prism-q135263888", + "name": "PRISM", + "url": "/v1/software/prism-q135263888" + }, + { + "slug": "pro-ii", + "name": "PRO/II", + "url": "/v1/software/pro-ii" + }, + { + "slug": "pro-lx", + "name": "PRO/LX", + "url": "/v1/software/pro-lx" + }, + { + "slug": "prodigy", + "name": "PRODIGY", + "url": "/v1/software/prodigy" + }, + { + "slug": "prolith", + "name": "PROLITH", + "url": "/v1/software/prolith" + }, + { + "slug": "promotic-scada-system", + "name": "PROMOTIC SCADA system", + "url": "/v1/software/promotic-scada-system" + }, + { + "slug": "prora", + "name": "PRORA", + "url": "/v1/software/prora" + }, + { + "slug": "proot", + "name": "PRoot", + "url": "/v1/software/proot" + }, + { + "slug": "ps-power-and-sample-size", + "name": "PS Power and Sample Size", + "url": "/v1/software/ps-power-and-sample-size" + }, + { + "slug": "pscad", + "name": "PSCAD", + "url": "/v1/software/pscad" + }, + { + "slug": "psf-lab", + "name": "PSF Lab", + "url": "/v1/software/psf-lab" + }, + { + "slug": "psi", + "name": "PSI", + "url": "/v1/software/psi" + }, + { + "slug": "psi-protein-classifier", + "name": "PSI Protein Classifier", + "url": "/v1/software/psi-protein-classifier" + }, + { + "slug": "psi-plot", + "name": "PSI-Plot", + "url": "/v1/software/psi-plot" + }, + { + "slug": "psim", + "name": "PSIM", + "url": "/v1/software/psim" + }, + { + "slug": "psipred", + "name": "PSIPRED", + "url": "/v1/software/psipred" + }, + { + "slug": "psort", + "name": "PSORT", + "url": "/v1/software/psort" + }, + { + "slug": "psp-media-manager", + "name": "PSP Media Manager", + "url": "/v1/software/psp-media-manager" + }, + { + "slug": "pspice", + "name": "PSpice", + "url": "/v1/software/pspice" + }, + { + "slug": "ptk-forensics", + "name": "PTK Forensics", + "url": "/v1/software/ptk-forensics" + }, + { + "slug": "pulse-q140247536", + "name": "PULSE", + "url": "/v1/software/pulse-q140247536" + }, + { + "slug": "pulse", + "name": "PULSE", + "url": "/v1/software/pulse" + }, + { + "slug": "pzflex", + "name": "PZFlex", + "url": "/v1/software/pzflex" + }, + { + "slug": "pacbase", + "name": "Pacbase", + "url": "/v1/software/pacbase" + }, + { + "slug": "pack200", + "name": "Pack200", + "url": "/v1/software/pack200" + }, + { + "slug": "packit", + "name": "PackIt", + "url": "/v1/software/packit" + }, + { + "slug": "packageforge", + "name": "PackageForge", + "url": "/v1/software/packageforge" + }, + { + "slug": "packard-bell-navigator", + "name": "Packard Bell Navigator", + "url": "/v1/software/packard-bell-navigator" + }, + { + "slug": "paedml", + "name": "PaedML", + "url": "/v1/software/paedml" + }, + { + "slug": "paessler-prtg", + "name": "Paessler PRTG", + "url": "/v1/software/paessler-prtg" + }, + { + "slug": "pagestream", + "name": "PageStream", + "url": "/v1/software/pagestream" + }, + { + "slug": "paint-the-town-red", + "name": "Paint the Town Red", + "url": "/v1/software/paint-the-town-red" + }, + { + "slug": "painworth", + "name": "Painworth", + "url": "/v1/software/painworth" + }, + { + "slug": "pakka-khata", + "name": "Pakka Khata", + "url": "/v1/software/pakka-khata" + }, + { + "slug": "paktor", + "name": "Paktor", + "url": "/v1/software/paktor" + }, + { + "slug": "palantir-gotham", + "name": "Palantir Gotham", + "url": "/v1/software/palantir-gotham" + }, + { + "slug": "palco-mp3", + "name": "Palco MP3", + "url": "/v1/software/palco-mp3" + }, + { + "slug": "paletton-color-scheme-designer-4", + "name": "Paletton (Color Scheme Designer 4)", + "url": "/v1/software/paletton-color-scheme-designer-4" + }, + { + "slug": "palladio", + "name": "Palladio", + "url": "/v1/software/palladio" + }, + { + "slug": "palm-desktop", + "name": "Palm Desktop", + "url": "/v1/software/palm-desktop" + }, + { + "slug": "palmyra", + "name": "Palmyra", + "url": "/v1/software/palmyra" + }, + { + "slug": "paludis", + "name": "Paludis", + "url": "/v1/software/paludis" + }, + { + "slug": "pam-crash", + "name": "Pam-Crash", + "url": "/v1/software/pam-crash" + }, + { + "slug": "panda-dataframe-manipulation", + "name": "Panda Dataframe Manipulation", + "url": "/v1/software/panda-dataframe-manipulation" + }, + { + "slug": "panda-and-csv-of-tweets", + "name": "Panda and CSV of Tweets", + "url": "/v1/software/panda-and-csv-of-tweets" + }, + { + "slug": "pandion", + "name": "Pandion", + "url": "/v1/software/pandion" + }, + { + "slug": "pandix", + "name": "Pandix", + "url": "/v1/software/pandix" + }, + { + "slug": "pandora-eclipse-of-nashira", + "name": "Pandora: Eclipse of Nashira", + "url": "/v1/software/pandora-eclipse-of-nashira" + }, + { + "slug": "pango", + "name": "Pango", + "url": "/v1/software/pango" + }, + { + "slug": "pangu-team", + "name": "Pangu Team", + "url": "/v1/software/pangu-team" + }, + { + "slug": "pangu-utility", + "name": "Pangu utility", + "url": "/v1/software/pangu-utility" + }, + { + "slug": "panorama-q7131493", + "name": "Panorama", + "url": "/v1/software/panorama-q7131493" + }, + { + "slug": "panorama-q76186079", + "name": "Panorama", + "url": "/v1/software/panorama-q76186079" + }, + { + "slug": "panorama", + "name": "Panorama", + "url": "/v1/software/panorama" + }, + { + "slug": "panta-rhei-game-engine", + "name": "Panta Rhei (game engine)", + "url": "/v1/software/panta-rhei-game-engine" + }, + { + "slug": "paparazzi-project", + "name": "Paparazzi Project", + "url": "/v1/software/paparazzi-project" + }, + { + "slug": "paper-machines", + "name": "Paper Machines", + "url": "/v1/software/paper-machines" + }, + { + "slug": "paperport", + "name": "PaperPort", + "url": "/v1/software/paperport" + }, + { + "slug": "papertracer", + "name": "PaperTracer", + "url": "/v1/software/papertracer" + }, + { + "slug": "paperkey", + "name": "Paperkey", + "url": "/v1/software/paperkey" + }, + { + "slug": "paperpile", + "name": "Paperpile", + "url": "/v1/software/paperpile" + }, + { + "slug": "paprika-app", + "name": "Paprika (app)", + "url": "/v1/software/paprika-app" + }, + { + "slug": "papyrus-autor-q106144081", + "name": "Papyrus Autor", + "url": "/v1/software/papyrus-autor-q106144081" + }, + { + "slug": "papyrus-autor", + "name": "Papyrus Autor", + "url": "/v1/software/papyrus-autor" + }, + { + "slug": "para-mail", + "name": "Para-Mail", + "url": "/v1/software/para-mail" + }, + { + "slug": "paradox", + "name": "Paradox", + "url": "/v1/software/paradox" + }, + { + "slug": "paragon", + "name": "Paragon", + "url": "/v1/software/paragon" + }, + { + "slug": "parakey", + "name": "Parakey", + "url": "/v1/software/parakey" + }, + { + "slug": "parallels-ras", + "name": "Parallels RAS", + "url": "/v1/software/parallels-ras" + }, + { + "slug": "parallels-workstation-extreme", + "name": "Parallels Workstation Extreme", + "url": "/v1/software/parallels-workstation-extreme" + }, + { + "slug": "parameter-validation", + "name": "Parameter validation", + "url": "/v1/software/parameter-validation" + }, + { + "slug": "parametric-memory", + "name": "Parametric Memory", + "url": "/v1/software/parametric-memory" + }, + { + "slug": "paramind", + "name": "Paramind", + "url": "/v1/software/paramind" + }, + { + "slug": "parasoft-c-c-test", + "name": "Parasoft C/C++test", + "url": "/v1/software/parasoft-c-c-test" + }, + { + "slug": "parasoft-concerto", + "name": "Parasoft Concerto", + "url": "/v1/software/parasoft-concerto" + }, + { + "slug": "parasoft-virtualize", + "name": "Parasoft Virtualize", + "url": "/v1/software/parasoft-virtualize" + }, + { + "slug": "parasurf", + "name": "Parasurf", + "url": "/v1/software/parasurf" + }, + { + "slug": "parboiled", + "name": "Parboiled", + "url": "/v1/software/parboiled" + }, + { + "slug": "parent-support", + "name": "Parent Support", + "url": "/v1/software/parent-support" + }, + { + "slug": "parlatype", + "name": "Parlatype", + "url": "/v1/software/parlatype" + }, + { + "slug": "parsec", + "name": "Parsec", + "url": "/v1/software/parsec" + }, + { + "slug": "parselmouth", + "name": "Parselmouth", + "url": "/v1/software/parselmouth" + }, + { + "slug": "parser-1-0", + "name": "Parser 1.0", + "url": "/v1/software/parser-1-0" + }, + { + "slug": "parser-tei-neo4j-import", + "name": "Parser TEI-Neo4j Import", + "url": "/v1/software/parser-tei-neo4j-import" + }, + { + "slug": "parsifal", + "name": "Parsifal", + "url": "/v1/software/parsifal" + }, + { + "slug": "participad", + "name": "Participad", + "url": "/v1/software/participad" + }, + { + "slug": "partition-saving", + "name": "Partition-Saving", + "url": "/v1/software/partition-saving" + }, + { + "slug": "partitionmagic", + "name": "PartitionMagic", + "url": "/v1/software/partitionmagic" + }, + { + "slug": "partitur-editor", + "name": "Partitur Editor", + "url": "/v1/software/partitur-editor" + }, + { + "slug": "parzu", + "name": "Parzu", + "url": "/v1/software/parzu" + }, + { + "slug": "passsecurium", + "name": "PassSecurium", + "url": "/v1/software/passsecurium" + }, + { + "slug": "passenger-service-system", + "name": "Passenger service system", + "url": "/v1/software/passenger-service-system" + }, + { + "slug": "passolo", + "name": "Passolo", + "url": "/v1/software/passolo" + }, + { + "slug": "password-depot", + "name": "Password Depot", + "url": "/v1/software/password-depot" + }, + { + "slug": "passwork-q140414609", + "name": "Passwork", + "url": "/v1/software/passwork-q140414609" + }, + { + "slug": "passwork", + "name": "Passwork", + "url": "/v1/software/passwork" + }, + { + "slug": "pastperfect-museum-software", + "name": "PastPerfect Museum Software", + "url": "/v1/software/pastperfect-museum-software" + }, + { + "slug": "pastel-accounting", + "name": "Pastel Accounting", + "url": "/v1/software/pastel-accounting" + }, + { + "slug": "pastpin", + "name": "Pastpin", + "url": "/v1/software/pastpin" + }, + { + "slug": "patatap", + "name": "Patatap", + "url": "/v1/software/patatap" + }, + { + "slug": "patchstack", + "name": "PatchStack", + "url": "/v1/software/patchstack" + }, + { + "slug": "patient-history-and-physical", + "name": "Patient History and Physical", + "url": "/v1/software/patient-history-and-physical" + }, + { + "slug": "patriot", + "name": "Patriot", + "url": "/v1/software/patriot" + }, + { + "slug": "patternhunter", + "name": "PatternHunter", + "url": "/v1/software/patternhunter" + }, + { + "slug": "patternrecognition", + "name": "PatternRecognition", + "url": "/v1/software/patternrecognition" + }, + { + "slug": "pay-stub-generator", + "name": "Pay stub generator", + "url": "/v1/software/pay-stub-generator" + }, + { + "slug": "paybox", + "name": "PayBox", + "url": "/v1/software/paybox" + }, + { + "slug": "payme", + "name": "PayMe", + "url": "/v1/software/payme" + }, + { + "slug": "paystubcreator-net", + "name": "PayStubCreator.net", + "url": "/v1/software/paystubcreator-net" + }, + { + "slug": "paystubs-net", + "name": "PayStubs.net", + "url": "/v1/software/paystubs-net" + }, + { + "slug": "paykeeper", + "name": "Paykeeper", + "url": "/v1/software/paykeeper" + }, + { + "slug": "payrails", + "name": "Payrails", + "url": "/v1/software/payrails" + }, + { + "slug": "pdf-parser", + "name": "Pdf-parser", + "url": "/v1/software/pdf-parser" + }, + { + "slug": "pdfvue", + "name": "Pdfvue", + "url": "/v1/software/pdfvue" + }, + { + "slug": "peacekeeper", + "name": "Peacekeeper", + "url": "/v1/software/peacekeeper" + }, + { + "slug": "peach", + "name": "Peach", + "url": "/v1/software/peach" + }, + { + "slug": "peachpie", + "name": "PeachPie", + "url": "/v1/software/peachpie" + }, + { + "slug": "peakfit", + "name": "PeakFit", + "url": "/v1/software/peakfit" + }, + { + "slug": "pearl-com", + "name": "Pearl.com", + "url": "/v1/software/pearl-com" + }, + { + "slug": "peekawoo", + "name": "Peekawoo", + "url": "/v1/software/peekawoo" + }, + { + "slug": "peel", + "name": "Peel", + "url": "/v1/software/peel" + }, + { + "slug": "peer2mail", + "name": "Peer2Mail", + "url": "/v1/software/peer2mail" + }, + { + "slug": "peerio", + "name": "Peerio", + "url": "/v1/software/peerio" + }, + { + "slug": "pegasus", + "name": "Pegasus", + "url": "/v1/software/pegasus" + }, + { + "slug": "pegasus-mail", + "name": "Pegasus Mail", + "url": "/v1/software/pegasus-mail" + }, + { + "slug": "pegs-n-co", + "name": "Pegs'n Co", + "url": "/v1/software/pegs-n-co" + }, + { + "slug": "peltarion-synapse", + "name": "Peltarion Synapse", + "url": "/v1/software/peltarion-synapse" + }, + { + "slug": "pem", + "name": "Pem", + "url": "/v1/software/pem" + }, + { + "slug": "pentaho", + "name": "Pentaho", + "url": "/v1/software/pentaho" + }, + { + "slug": "people", + "name": "People", + "url": "/v1/software/people" + }, + { + "slug": "percolator", + "name": "Percolator", + "url": "/v1/software/percolator" + }, + { + "slug": "percona-toolkit", + "name": "Percona Toolkit", + "url": "/v1/software/percona-toolkit" + }, + { + "slug": "perfect", + "name": "Perfect", + "url": "/v1/software/perfect" + }, + { + "slug": "perfect-photo-suite", + "name": "Perfect Photo Suite", + "url": "/v1/software/perfect-photo-suite" + }, + { + "slug": "perfectdisk", + "name": "PerfectDisk", + "url": "/v1/software/perfectdisk" + }, + { + "slug": "perfectit", + "name": "PerfectIt", + "url": "/v1/software/perfectit" + }, + { + "slug": "perfony", + "name": "Perfony", + "url": "/v1/software/perfony" + }, + { + "slug": "perforce-alm", + "name": "Perforce ALM", + "url": "/v1/software/perforce-alm" + }, + { + "slug": "perforce-iplm", + "name": "Perforce IPLM", + "url": "/v1/software/perforce-iplm" + }, + { + "slug": "perforce-p4", + "name": "Perforce P4", + "url": "/v1/software/perforce-p4" + }, + { + "slug": "perforce-qac", + "name": "Perforce QAC", + "url": "/v1/software/perforce-qac" + }, + { + "slug": "performance-analyzer", + "name": "Performance Analyzer", + "url": "/v1/software/performance-analyzer" + }, + { + "slug": "performance-counter-monitor", + "name": "Performance Counter Monitor", + "url": "/v1/software/performance-counter-monitor" + }, + { + "slug": "performance-management-software", + "name": "Performance Management Software", + "url": "/v1/software/performance-management-software" + }, + { + "slug": "perkeep", + "name": "Perkeep", + "url": "/v1/software/perkeep" + }, + { + "slug": "perl-programming-documentation", + "name": "Perl Programming Documentation", + "url": "/v1/software/perl-programming-documentation" + }, + { + "slug": "personal-agent-world", + "name": "Personal Agent World", + "url": "/v1/software/personal-agent-world" + }, + { + "slug": "personal-brain", + "name": "Personal Brain", + "url": "/v1/software/personal-brain" + }, + { + "slug": "personal-knowbase", + "name": "Personal Knowbase", + "url": "/v1/software/personal-knowbase" + }, + { + "slug": "personal-henshucho", + "name": "Personal henshucho", + "url": "/v1/software/personal-henshucho" + }, + { + "slug": "pervasive-psql", + "name": "Pervasive PSQL", + "url": "/v1/software/pervasive-psql" + }, + { + "slug": "petsynth", + "name": "PetSynth", + "url": "/v1/software/petsynth" + }, + { + "slug": "petal-search", + "name": "Petal Search", + "url": "/v1/software/petal-search" + }, + { + "slug": "petname", + "name": "Petname", + "url": "/v1/software/petname" + }, + { + "slug": "petrel", + "name": "Petrel", + "url": "/v1/software/petrel" + }, + { + "slug": "phalanger", + "name": "Phalanger", + "url": "/v1/software/phalanger" + }, + { + "slug": "pharmaconsult", + "name": "PharmaConsult", + "url": "/v1/software/pharmaconsult" + }, + { + "slug": "pharo", + "name": "Pharo", + "url": "/v1/software/pharo" + }, + { + "slug": "phaser", + "name": "Phaser", + "url": "/v1/software/phaser" + }, + { + "slug": "phasor", + "name": "Phasor", + "url": "/v1/software/phasor" + }, + { + "slug": "phi", + "name": "Phi", + "url": "/v1/software/phi" + }, + { + "slug": "philogl", + "name": "PhiloGL", + "url": "/v1/software/philogl" + }, + { + "slug": "philologic", + "name": "PhiloLogic", + "url": "/v1/software/philologic" + }, + { + "slug": "phing", + "name": "Phing", + "url": "/v1/software/phing" + }, + { + "slug": "phone-link", + "name": "Phone Link", + "url": "/v1/software/phone-link" + }, + { + "slug": "phonebook-file-repair", + "name": "PhoneBook File Repair", + "url": "/v1/software/phonebook-file-repair" + }, + { + "slug": "phonegaim", + "name": "PhoneGaim", + "url": "/v1/software/phonegaim" + }, + { + "slug": "phonevalet-message-center", + "name": "PhoneValet Message Center", + "url": "/v1/software/phonevalet-message-center" + }, + { + "slug": "phoner", + "name": "Phoner", + "url": "/v1/software/phoner" + }, + { + "slug": "photo-mechanic", + "name": "Photo Mechanic", + "url": "/v1/software/photo-mechanic" + }, + { + "slug": "photo-story", + "name": "Photo Story", + "url": "/v1/software/photo-story" + }, + { + "slug": "photodna", + "name": "PhotoDNA", + "url": "/v1/software/photodna" + }, + { + "slug": "photoimpression", + "name": "PhotoImpression", + "url": "/v1/software/photoimpression" + }, + { + "slug": "photomodeler", + "name": "PhotoModeler", + "url": "/v1/software/photomodeler" + }, + { + "slug": "photopc", + "name": "PhotoPC", + "url": "/v1/software/photopc" + }, + { + "slug": "photoscape", + "name": "PhotoScape", + "url": "/v1/software/photoscape" + }, + { + "slug": "photoscore", + "name": "PhotoScore", + "url": "/v1/software/photoscore" + }, + { + "slug": "photostage", + "name": "PhotoStage", + "url": "/v1/software/photostage" + }, + { + "slug": "photoworks", + "name": "PhotoWorks", + "url": "/v1/software/photoworks" + }, + { + "slug": "photogrammar", + "name": "Photogrammar", + "url": "/v1/software/photogrammar" + }, + { + "slug": "photopia-optical-design-software", + "name": "Photopia Optical Design Software", + "url": "/v1/software/photopia-optical-design-software" + }, + { + "slug": "photoshop-photomerge", + "name": "Photoshop Photomerge", + "url": "/v1/software/photoshop-photomerge" + }, + { + "slug": "photosynth", + "name": "Photosynth", + "url": "/v1/software/photosynth" + }, + { + "slug": "phrap", + "name": "Phrap", + "url": "/v1/software/phrap" + }, + { + "slug": "phraseanet", + "name": "Phraseanet", + "url": "/v1/software/phraseanet" + }, + { + "slug": "phred-base-calling", + "name": "Phred base calling", + "url": "/v1/software/phred-base-calling" + }, + { + "slug": "phreedom", + "name": "Phreedom", + "url": "/v1/software/phreedom" + }, + { + "slug": "phyloxml", + "name": "PhyloXML", + "url": "/v1/software/phyloxml" + }, + { + "slug": "phylogenetic-analysis-using-parsimony-and-other-methods", + "name": "Phylogenetic Analysis Using Parsimony *and other methods", + "url": "/v1/software/phylogenetic-analysis-using-parsimony-and-other-methods" + }, + { + "slug": "phyloscan", + "name": "Phyloscan", + "url": "/v1/software/phyloscan" + }, + { + "slug": "phyre-phyre2", + "name": "Phyre / Phyre2", + "url": "/v1/software/phyre-phyre2" + }, + { + "slug": "physicell", + "name": "PhysiCell", + "url": "/v1/software/physicell" + }, + { + "slug": "physicians-information-and-education-resource", + "name": "Physicians' Information and Education Resource", + "url": "/v1/software/physicians-information-and-education-resource" + }, + { + "slug": "pi-kvm", + "name": "Pi-KVM", + "url": "/v1/software/pi-kvm" + }, + { + "slug": "pifast", + "name": "PiFast", + "url": "/v1/software/pifast" + }, + { + "slug": "pihex", + "name": "PiHex", + "url": "/v1/software/pihex" + }, + { + "slug": "pisi", + "name": "PiSi", + "url": "/v1/software/pisi" + }, + { + "slug": "pisignage", + "name": "PiSignage", + "url": "/v1/software/pisignage" + }, + { + "slug": "piano-booster", + "name": "Piano Booster", + "url": "/v1/software/piano-booster" + }, + { + "slug": "piano-from-above", + "name": "Piano From Above", + "url": "/v1/software/piano-from-above" + }, + { + "slug": "pianoteq", + "name": "Pianoteq", + "url": "/v1/software/pianoteq" + }, + { + "slug": "piazza", + "name": "Piazza", + "url": "/v1/software/piazza" + }, + { + "slug": "pic4carto", + "name": "Pic4Carto", + "url": "/v1/software/pic4carto" + }, + { + "slug": "picapport", + "name": "PicApport", + "url": "/v1/software/picapport" + }, + { + "slug": "pickawin", + "name": "PickAWin", + "url": "/v1/software/pickawin" + }, + { + "slug": "pickle", + "name": "Pickle", + "url": "/v1/software/pickle" + }, + { + "slug": "picocalc", + "name": "PicoCalc", + "url": "/v1/software/picocalc" + }, + { + "slug": "picoscope", + "name": "PicoScope", + "url": "/v1/software/picoscope" + }, + { + "slug": "picospan", + "name": "PicoSpan", + "url": "/v1/software/picospan" + }, + { + "slug": "picom", + "name": "Picom", + "url": "/v1/software/picom" + }, + { + "slug": "picture-motion-browser", + "name": "Picture Motion Browser", + "url": "/v1/software/picture-motion-browser" + }, + { + "slug": "picture-prowler", + "name": "Picture Prowler", + "url": "/v1/software/picture-prowler" + }, + { + "slug": "picture-publisher", + "name": "Picture Publisher", + "url": "/v1/software/picture-publisher" + }, + { + "slug": "picturestoexe", + "name": "PicturesToExe", + "url": "/v1/software/picturestoexe" + }, + { + "slug": "pidoco", + "name": "Pidoco", + "url": "/v1/software/pidoco" + }, + { + "slug": "piep", + "name": "PieP", + "url": "/v1/software/piep" + }, + { + "slug": "pietty", + "name": "PieTTY", + "url": "/v1/software/pietty" + }, + { + "slug": "piictu", + "name": "Piictu", + "url": "/v1/software/piictu" + }, + { + "slug": "pikdek", + "name": "PikDek", + "url": "/v1/software/pikdek" + }, + { + "slug": "pika-labs", + "name": "Pika Labs", + "url": "/v1/software/pika-labs" + }, + { + "slug": "piktochart", + "name": "Piktochart", + "url": "/v1/software/piktochart" + }, + { + "slug": "pilot-link", + "name": "Pilot-link", + "url": "/v1/software/pilot-link" + }, + { + "slug": "pin", + "name": "Pin", + "url": "/v1/software/pin" + }, + { + "slug": "pingie", + "name": "Pingie", + "url": "/v1/software/pingie" + }, + { + "slug": "pinnacle-expression", + "name": "Pinnacle Expression", + "url": "/v1/software/pinnacle-expression" + }, + { + "slug": "pinocchio", + "name": "Pinocchio", + "url": "/v1/software/pinocchio" + }, + { + "slug": "pinpointiq", + "name": "PinpointIQ", + "url": "/v1/software/pinpointiq" + }, + { + "slug": "pipelight", + "name": "Pipelight", + "url": "/v1/software/pipelight" + }, + { + "slug": "piper", + "name": "Piper", + "url": "/v1/software/piper" + }, + { + "slug": "pipoca", + "name": "Pipoca", + "url": "/v1/software/pipoca" + }, + { + "slug": "piranesi", + "name": "Piranesi", + "url": "/v1/software/piranesi" + }, + { + "slug": "piranha", + "name": "Piranha", + "url": "/v1/software/piranha" + }, + { + "slug": "pirate-king-online", + "name": "Pirate King Online", + "url": "/v1/software/pirate-king-online" + }, + { + "slug": "pirate-pay", + "name": "Pirate Pay", + "url": "/v1/software/pirate-pay" + }, + { + "slug": "pirni", + "name": "Pirni", + "url": "/v1/software/pirni" + }, + { + "slug": "pisonet", + "name": "Pisonet", + "url": "/v1/software/pisonet" + }, + { + "slug": "pitchy-software", + "name": "Pitchy software", + "url": "/v1/software/pitchy-software" + }, + { + "slug": "pivot-animator", + "name": "Pivot Animator", + "url": "/v1/software/pivot-animator" + }, + { + "slug": "pivotal-greenplum-database", + "name": "Pivotal Greenplum Database", + "url": "/v1/software/pivotal-greenplum-database" + }, + { + "slug": "pivotal-labs", + "name": "Pivotal Labs", + "url": "/v1/software/pivotal-labs" + }, + { + "slug": "pivotal-tracker", + "name": "Pivotal Tracker", + "url": "/v1/software/pivotal-tracker" + }, + { + "slug": "pixinsight", + "name": "PixInsight", + "url": "/v1/software/pixinsight" + }, + { + "slug": "pixel-game-maker-mv", + "name": "Pixel Game Maker MV", + "url": "/v1/software/pixel-game-maker-mv" + }, + { + "slug": "pixel-studio-pro", + "name": "Pixel Studio Pro", + "url": "/v1/software/pixel-studio-pro" + }, + { + "slug": "pixeljunk-monsters-ultimate-hd", + "name": "PixelJunk Monsters Ultimate HD", + "url": "/v1/software/pixeljunk-monsters-ultimate-hd" + }, + { + "slug": "pixetell", + "name": "Pixetell", + "url": "/v1/software/pixetell" + }, + { + "slug": "pixie", + "name": "Pixie", + "url": "/v1/software/pixie" + }, + { + "slug": "plasim", + "name": "PlaSim", + "url": "/v1/software/plasim" + }, + { + "slug": "plagscan", + "name": "PlagScan", + "url": "/v1/software/plagscan" + }, + { + "slug": "plagiarismcheck", + "name": "PlagiarismCheck", + "url": "/v1/software/plagiarismcheck" + }, + { + "slug": "plaidml", + "name": "PlaidML", + "url": "/v1/software/plaidml" + }, + { + "slug": "plain-ticket", + "name": "Plain Ticket", + "url": "/v1/software/plain-ticket" + }, + { + "slug": "plan", + "name": "Plan", + "url": "/v1/software/plan" + }, + { + "slug": "planet-soho", + "name": "Planet Soho", + "url": "/v1/software/planet-soho" + }, + { + "slug": "planify", + "name": "Planify", + "url": "/v1/software/planify" + }, + { + "slug": "planisware", + "name": "Planisware", + "url": "/v1/software/planisware" + }, + { + "slug": "planned-parenthood-direct", + "name": "Planned Parenthood Direct", + "url": "/v1/software/planned-parenthood-direct" + }, + { + "slug": "plant-nanny", + "name": "Plant Nanny", + "url": "/v1/software/plant-nanny" + }, + { + "slug": "plant-simulation", + "name": "Plant Simulation", + "url": "/v1/software/plant-simulation" + }, + { + "slug": "plantix-mobile-app", + "name": "Plantix (mobile app)", + "url": "/v1/software/plantix-mobile-app" + }, + { + "slug": "plantum", + "name": "Plantum", + "url": "/v1/software/plantum" + }, + { + "slug": "planz", + "name": "Planz", + "url": "/v1/software/planz" + }, + { + "slug": "plasma-bigscreen", + "name": "Plasma Bigscreen", + "url": "/v1/software/plasma-bigscreen" + }, + { + "slug": "plasma-media-center", + "name": "Plasma Media Center", + "url": "/v1/software/plasma-media-center" + }, + { + "slug": "plastic-scm", + "name": "Plastic SCM", + "url": "/v1/software/plastic-scm" + }, + { + "slug": "plasticity", + "name": "Plasticity", + "url": "/v1/software/plasticity" + }, + { + "slug": "plate-recognizer", + "name": "Plate Recognizer", + "url": "/v1/software/plate-recognizer" + }, + { + "slug": "platform-lsf", + "name": "Platform LSF", + "url": "/v1/software/platform-lsf" + }, + { + "slug": "platform-for-real-time-impact-and-situation-monitoring", + "name": "Platform for Real-time Impact and Situation Monitoring", + "url": "/v1/software/platform-for-real-time-impact-and-situation-monitoring" + }, + { + "slug": "platforms-code", + "name": "Platforms Code", + "url": "/v1/software/platforms-code" + }, + { + "slug": "plaxis", + "name": "Plaxis", + "url": "/v1/software/plaxis" + }, + { + "slug": "play-anywhere", + "name": "Play Anywhere", + "url": "/v1/software/play-anywhere" + }, + { + "slug": "playmidi", + "name": "PlayMIDI", + "url": "/v1/software/playmidi" + }, + { + "slug": "playmemories-studio", + "name": "PlayMemories Studio", + "url": "/v1/software/playmemories-studio" + }, + { + "slug": "playn", + "name": "PlayN", + "url": "/v1/software/playn" + }, + { + "slug": "playnow-arena", + "name": "PlayNow Arena", + "url": "/v1/software/playnow-arena" + }, + { + "slug": "playstation-app", + "name": "PlayStation App", + "url": "/v1/software/playstation-app" + }, + { + "slug": "playstation-mobile", + "name": "PlayStation Mobile", + "url": "/v1/software/playstation-mobile" + }, + { + "slug": "playxpert", + "name": "PlayXpert", + "url": "/v1/software/playxpert" + }, + { + "slug": "playond", + "name": "Playond", + "url": "/v1/software/playond" + }, + { + "slug": "playwright", + "name": "Playwright", + "url": "/v1/software/playwright" + }, + { + "slug": "plesk", + "name": "Plesk", + "url": "/v1/software/plesk" + }, + { + "slug": "pliny", + "name": "Pliny", + "url": "/v1/software/pliny" + }, + { + "slug": "plot-digitizer", + "name": "Plot Digitizer", + "url": "/v1/software/plot-digitizer" + }, + { + "slug": "plotly", + "name": "Plotly", + "url": "/v1/software/plotly" + }, + { + "slug": "plugplayer", + "name": "PlugPlayer", + "url": "/v1/software/plugplayer" + }, + { + "slug": "plumbr", + "name": "Plumbr", + "url": "/v1/software/plumbr" + }, + { + "slug": "pnetc", + "name": "PnetC", + "url": "/v1/software/pnetc" + }, + { + "slug": "pocket-sales-force", + "name": "Pocket Sales Force", + "url": "/v1/software/pocket-sales-force" + }, + { + "slug": "pocket-word", + "name": "Pocket Word", + "url": "/v1/software/pocket-word" + }, + { + "slug": "podcast-capture", + "name": "Podcast Capture", + "url": "/v1/software/podcast-capture" + }, + { + "slug": "podcastify", + "name": "Podcastify", + "url": "/v1/software/podcastify" + }, + { + "slug": "podio", + "name": "Podio", + "url": "/v1/software/podio" + }, + { + "slug": "podman-desktop", + "name": "Podman Desktop", + "url": "/v1/software/podman-desktop" + }, + { + "slug": "podracer", + "name": "Podracer", + "url": "/v1/software/podracer" + }, + { + "slug": "poem-viewer", + "name": "Poem Viewer", + "url": "/v1/software/poem-viewer" + }, + { + "slug": "pogoseat", + "name": "Pogoseat", + "url": "/v1/software/pogoseat" + }, + { + "slug": "point-to-point-protocol-daemon", + "name": "Point-to-Point Protocol daemon", + "url": "/v1/software/point-to-point-protocol-daemon" + }, + { + "slug": "pointman", + "name": "Pointman", + "url": "/v1/software/pointman" + }, + { + "slug": "points-of-interest-loader", + "name": "Points of Interest Loader", + "url": "/v1/software/points-of-interest-loader" + }, + { + "slug": "pokee-ai", + "name": "Pokee AI", + "url": "/v1/software/pokee-ai" + }, + { + "slug": "pokertracker", + "name": "PokerTracker", + "url": "/v1/software/pokertracker" + }, + { + "slug": "pokeware", + "name": "Pokeware", + "url": "/v1/software/pokeware" + }, + { + "slug": "pokki", + "name": "Pokki", + "url": "/v1/software/pokki" + }, + { + "slug": "pok-mon-essentials", + "name": "Pokémon Essentials", + "url": "/v1/software/pok-mon-essentials" + }, + { + "slug": "pok-mon-online", + "name": "Pokémon Online", + "url": "/v1/software/pok-mon-online" + }, + { + "slug": "pok-mon-showdown", + "name": "Pokémon Showdown", + "url": "/v1/software/pok-mon-showdown" + }, + { + "slug": "pol-is", + "name": "Pol.is", + "url": "/v1/software/pol-is" + }, + { + "slug": "pola", + "name": "Pola", + "url": "/v1/software/pola" + }, + { + "slug": "polarization-in-congress", + "name": "Polarization in Congress", + "url": "/v1/software/polarization-in-congress" + }, + { + "slug": "policymodels", + "name": "PolicyModels", + "url": "/v1/software/policymodels" + }, + { + "slug": "polish-literary-bibliography-pbl", + "name": "Polish Literary Bibliography (PBL)", + "url": "/v1/software/polish-literary-bibliography-pbl" + }, + { + "slug": "polit-operating-system", + "name": "Polit (operating system)", + "url": "/v1/software/polit-operating-system" + }, + { + "slug": "polkadot", + "name": "Polkadot", + "url": "/v1/software/polkadot" + }, + { + "slug": "polkeyb", + "name": "Polkeyb", + "url": "/v1/software/polkeyb" + }, + { + "slug": "polldaddy", + "name": "Polldaddy", + "url": "/v1/software/polldaddy" + }, + { + "slug": "polonius", + "name": "Polonius", + "url": "/v1/software/polonius" + }, + { + "slug": "polyworks", + "name": "PolyWorks", + "url": "/v1/software/polyworks" + }, + { + "slug": "polyas", + "name": "Polyas", + "url": "/v1/software/polyas" + }, + { + "slug": "polygon-cruncher", + "name": "Polygon Cruncher", + "url": "/v1/software/polygon-cruncher" + }, + { + "slug": "polyhedra-dbms", + "name": "Polyhedra DBMS", + "url": "/v1/software/polyhedra-dbms" + }, + { + "slug": "polymail", + "name": "Polymail", + "url": "/v1/software/polymail" + }, + { + "slug": "polymny", + "name": "Polymny", + "url": "/v1/software/polymny" + }, + { + "slug": "polypad", + "name": "Polypad", + "url": "/v1/software/polypad" + }, + { + "slug": "polyspace", + "name": "Polyspace", + "url": "/v1/software/polyspace" + }, + { + "slug": "pompamo", + "name": "Pompamo", + "url": "/v1/software/pompamo" + }, + { + "slug": "ponta-pass", + "name": "Ponta PASS", + "url": "/v1/software/ponta-pass" + }, + { + "slug": "pontis", + "name": "Pontis", + "url": "/v1/software/pontis" + }, + { + "slug": "poolparty-semantic-suite", + "name": "PoolParty Semantic Suite", + "url": "/v1/software/poolparty-semantic-suite" + }, + { + "slug": "poop-map", + "name": "Poop Map", + "url": "/v1/software/poop-map" + }, + { + "slug": "poorman", + "name": "PoorMan", + "url": "/v1/software/poorman" + }, + { + "slug": "popcorn-js", + "name": "Popcorn.js", + "url": "/v1/software/popcorn-js" + }, + { + "slug": "popoto-js", + "name": "Popoto.js", + "url": "/v1/software/popoto-js" + }, + { + "slug": "portable-batch-system", + "name": "Portable Batch System", + "url": "/v1/software/portable-batch-system" + }, + { + "slug": "portals-network-programming-api", + "name": "Portals network programming api", + "url": "/v1/software/portals-network-programming-api" + }, + { + "slug": "poseidon-for-uml", + "name": "Poseidon for UML", + "url": "/v1/software/poseidon-for-uml" + }, + { + "slug": "postpass", + "name": "PostPass", + "url": "/v1/software/postpass" + }, + { + "slug": "postpet", + "name": "PostPet", + "url": "/v1/software/postpet" + }, + { + "slug": "postback", + "name": "Postback", + "url": "/v1/software/postback" + }, + { + "slug": "postbox", + "name": "Postbox", + "url": "/v1/software/postbox" + }, + { + "slug": "postchain", + "name": "Postchain", + "url": "/v1/software/postchain" + }, + { + "slug": "posterous-spaces", + "name": "Posterous Spaces", + "url": "/v1/software/posterous-spaces" + }, + { + "slug": "postgresql-studio", + "name": "PostgreSQL Studio", + "url": "/v1/software/postgresql-studio" + }, + { + "slug": "postgrey", + "name": "Postgrey", + "url": "/v1/software/postgrey" + }, + { + "slug": "postini", + "name": "Postini", + "url": "/v1/software/postini" + }, + { + "slug": "postybirb", + "name": "PostyBirb", + "url": "/v1/software/postybirb" + }, + { + "slug": "powatag", + "name": "PowaTag", + "url": "/v1/software/powatag" + }, + { + "slug": "power-dolls-detachment-of-limited-line-service", + "name": "Power DoLLS: Detachment of Limited Line Service", + "url": "/v1/software/power-dolls-detachment-of-limited-line-service" + }, + { + "slug": "power-query", + "name": "Power Query", + "url": "/v1/software/power-query" + }, + { + "slug": "power-tab-editor", + "name": "Power Tab Editor", + "url": "/v1/software/power-tab-editor" + }, + { + "slug": "power2go", + "name": "Power2Go", + "url": "/v1/software/power2go" + }, + { + "slug": "powerbuilder-foundation-classes", + "name": "PowerBuilder Foundation Classes", + "url": "/v1/software/powerbuilder-foundation-classes" + }, + { + "slug": "powerdevs", + "name": "PowerDEVS", + "url": "/v1/software/powerdevs" + }, + { + "slug": "powerdesigner", + "name": "PowerDesigner", + "url": "/v1/software/powerdesigner" + }, + { + "slug": "poweriso", + "name": "PowerISO", + "url": "/v1/software/poweriso" + }, + { + "slug": "powerlab", + "name": "PowerLab", + "url": "/v1/software/powerlab" + }, + { + "slug": "powerman", + "name": "PowerMAN", + "url": "/v1/software/powerman" + }, + { + "slug": "powermill", + "name": "PowerMILL", + "url": "/v1/software/powermill" + }, + { + "slug": "powerprm", + "name": "PowerPRM", + "url": "/v1/software/powerprm" + }, + { + "slug": "powerpoint-viewer", + "name": "PowerPoint Viewer", + "url": "/v1/software/powerpoint-viewer" + }, + { + "slug": "powerpoint-viewer-3-0-for-mac", + "name": "PowerPoint Viewer 3.0 for Mac", + "url": "/v1/software/powerpoint-viewer-3-0-for-mac" + }, + { + "slug": "powerpro", + "name": "PowerPro", + "url": "/v1/software/powerpro" + }, + { + "slug": "powershadow", + "name": "PowerShadow", + "url": "/v1/software/powershadow" + }, + { + "slug": "powervm", + "name": "PowerVM", + "url": "/v1/software/powervm" + }, + { + "slug": "powervm-lx86", + "name": "PowerVM Lx86", + "url": "/v1/software/powervm-lx86" + }, + { + "slug": "powerword", + "name": "PowerWord", + "url": "/v1/software/powerword" + }, + { + "slug": "powerflasher-fdt", + "name": "Powerflasher FDT", + "url": "/v1/software/powerflasher-fdt" + }, + { + "slug": "praat", + "name": "Praat", + "url": "/v1/software/praat" + }, + { + "slug": "practicelink", + "name": "PracticeLink", + "url": "/v1/software/practicelink" + }, + { + "slug": "precice", + "name": "PreCICE", + "url": "/v1/software/precice" + }, + { + "slug": "prepomax", + "name": "PrePoMax", + "url": "/v1/software/prepomax" + }, + { + "slug": "prediction-by-partial-matching-by-dmitry", + "name": "Prediction by Partial Matching by Dmitry", + "url": "/v1/software/prediction-by-partial-matching-by-dmitry" + }, + { + "slug": "predictor-home", + "name": "Predictor@home", + "url": "/v1/software/predictor-home" + }, + { + "slug": "predix", + "name": "Predix", + "url": "/v1/software/predix" + }, + { + "slug": "prelink", + "name": "Prelink", + "url": "/v1/software/prelink" + }, + { + "slug": "prelude-hybrid-ids", + "name": "Prelude Hybrid IDS", + "url": "/v1/software/prelude-hybrid-ids" + }, + { + "slug": "premier-sound-factory", + "name": "Premier Sound Factory", + "url": "/v1/software/premier-sound-factory" + }, + { + "slug": "prepare-and-visualize-mallet-topics", + "name": "Prepare and Visualize Mallet Topics", + "url": "/v1/software/prepare-and-visualize-mallet-topics" + }, + { + "slug": "preservica", + "name": "Preservica", + "url": "/v1/software/preservica" + }, + { + "slug": "pretendo-network", + "name": "Pretendo Network", + "url": "/v1/software/pretendo-network" + }, + { + "slug": "prewikka", + "name": "Prewikka", + "url": "/v1/software/prewikka" + }, + { + "slug": "prey-vs-predator-sy-01", + "name": "Prey vs Predator | SY-01", + "url": "/v1/software/prey-vs-predator-sy-01" + }, + { + "slug": "prezi", + "name": "Prezi", + "url": "/v1/software/prezi" + }, + { + "slug": "prim8-mobile", + "name": "Prim8 Mobile", + "url": "/v1/software/prim8-mobile" + }, + { + "slug": "prima", + "name": "Prima", + "url": "/v1/software/prima" + }, + { + "slug": "primavera", + "name": "Primavera", + "url": "/v1/software/primavera" + }, + { + "slug": "prime95", + "name": "Prime95", + "url": "/v1/software/prime95" + }, + { + "slug": "primeocr", + "name": "PrimeOCR", + "url": "/v1/software/primeocr" + }, + { + "slug": "primereviewspro", + "name": "PrimeReviewsPro", + "url": "/v1/software/primereviewspro" + }, + { + "slug": "primer-premier", + "name": "Primer Premier", + "url": "/v1/software/primer-premier" + }, + { + "slug": "primer-blast", + "name": "Primer-BLAST", + "url": "/v1/software/primer-blast" + }, + { + "slug": "primer-e-primer", + "name": "Primer-E Primer", + "url": "/v1/software/primer-e-primer" + }, + { + "slug": "primer3", + "name": "Primer3", + "url": "/v1/software/primer3" + }, + { + "slug": "primopdf", + "name": "PrimoPDF", + "url": "/v1/software/primopdf" + }, + { + "slug": "prince-xml", + "name": "Prince XML", + "url": "/v1/software/prince-xml" + }, + { + "slug": "print-magic", + "name": "Print Magic", + "url": "/v1/software/print-magic" + }, + { + "slug": "print-share", + "name": "Print&Share", + "url": "/v1/software/print-share" + }, + { + "slug": "printfriendly", + "name": "PrintFriendly", + "url": "/v1/software/printfriendly" + }, + { + "slug": "printkey-2000", + "name": "PrintKey 2000", + "url": "/v1/software/printkey-2000" + }, + { + "slug": "printmaster", + "name": "PrintMaster", + "url": "/v1/software/printmaster" + }, + { + "slug": "printmaster-gold-classic", + "name": "PrintMaster Gold Classic", + "url": "/v1/software/printmaster-gold-classic" + }, + { + "slug": "printer-setup-utility", + "name": "Printer Setup Utility", + "url": "/v1/software/printer-setup-utility" + }, + { + "slug": "priority-matrix", + "name": "Priority Matrix", + "url": "/v1/software/priority-matrix" + }, + { + "slug": "prism-q140026666", + "name": "Prism", + "url": "/v1/software/prism-q140026666" + }, + { + "slug": "prism", + "name": "Prism", + "url": "/v1/software/prism" + }, + { + "slug": "prism-video-converter", + "name": "Prism Video Converter", + "url": "/v1/software/prism-video-converter" + }, + { + "slug": "prismatic", + "name": "Prismatic", + "url": "/v1/software/prismatic" + }, + { + "slug": "privadovpn", + "name": "PrivadoVPN", + "url": "/v1/software/privadovpn" + }, + { + "slug": "private-character-editor", + "name": "Private Character Editor", + "url": "/v1/software/private-character-editor" + }, + { + "slug": "pro-cycling-manager", + "name": "Pro Cycling Manager", + "url": "/v1/software/pro-cycling-manager" + }, + { + "slug": "proarc", + "name": "ProArc", + "url": "/v1/software/proarc" + }, + { + "slug": "probis", + "name": "ProBiS", + "url": "/v1/software/probis" + }, + { + "slug": "procoder", + "name": "ProCoder", + "url": "/v1/software/procoder" + }, + { + "slug": "proicon", + "name": "ProIcon", + "url": "/v1/software/proicon" + }, + { + "slug": "promax", + "name": "ProMax", + "url": "/v1/software/promax" + }, + { + "slug": "proprofs-elearning-software", + "name": "ProProfs eLearning Software", + "url": "/v1/software/proprofs-elearning-software" + }, + { + "slug": "prorealtime", + "name": "ProRealTime", + "url": "/v1/software/prorealtime" + }, + { + "slug": "proschool360", + "name": "ProSchool360", + "url": "/v1/software/proschool360" + }, + { + "slug": "prostat", + "name": "ProStat", + "url": "/v1/software/prostat" + }, + { + "slug": "prosyst", + "name": "ProSyst", + "url": "/v1/software/prosyst" + }, + { + "slug": "proverif", + "name": "ProVerif", + "url": "/v1/software/proverif" + }, + { + "slug": "proworkflow", + "name": "ProWorkflow", + "url": "/v1/software/proworkflow" + }, + { + "slug": "proactive-discovery-of-insider-threats-using-graph-analysis-and-learning", + "name": "Proactive Discovery of Insider Threats Using Graph Analysis and Learning", + "url": "/v1/software/proactive-discovery-of-insider-threats-using-graph-analysis-and-learning" + }, + { + "slug": "problog", + "name": "ProbLog", + "url": "/v1/software/problog" + }, + { + "slug": "problem-solving-environment", + "name": "Problem Solving Environment", + "url": "/v1/software/problem-solving-environment" + }, + { + "slug": "process-analysis-toolkit", + "name": "Process Analysis Toolkit", + "url": "/v1/software/process-analysis-toolkit" + }, + { + "slug": "processing", + "name": "Processing", + "url": "/v1/software/processing" + }, + { + "slug": "processingjs", + "name": "ProcessingJS", + "url": "/v1/software/processingjs" + }, + { + "slug": "product-management-dashboard-for-jira", + "name": "Product Management Dashboard for Jira", + "url": "/v1/software/product-management-dashboard-for-jira" + }, + { + "slug": "productcenter", + "name": "ProductCenter", + "url": "/v1/software/productcenter" + }, + { + "slug": "prody-parrot", + "name": "Prody Parrot", + "url": "/v1/software/prody-parrot" + }, + { + "slug": "professional-music-driver", + "name": "Professional Music Driver", + "url": "/v1/software/professional-music-driver" + }, + { + "slug": "professional-open-source", + "name": "Professional open-source", + "url": "/v1/software/professional-open-source" + }, + { + "slug": "profiler-plus", + "name": "Profiler Plus", + "url": "/v1/software/profiler-plus" + }, + { + "slug": "progdvb", + "name": "ProgDVB", + "url": "/v1/software/progdvb" + }, + { + "slug": "programmed-airline-reservations-system", + "name": "Programmed Airline Reservations System", + "url": "/v1/software/programmed-airline-reservations-system" + }, + { + "slug": "programmer-and-operator-productivity-aid", + "name": "Programmer and Operator Productivity Aid", + "url": "/v1/software/programmer-and-operator-productivity-aid" + }, + { + "slug": "programming-experience-toolkit", + "name": "Programming Experience Toolkit", + "url": "/v1/software/programming-experience-toolkit" + }, + { + "slug": "programming-metadata-communications-protocol", + "name": "Programming Metadata Communications Protocol", + "url": "/v1/software/programming-metadata-communications-protocol" + }, + { + "slug": "project-bergamot", + "name": "Project Bergamot", + "url": "/v1/software/project-bergamot" + }, + { + "slug": "project-dream", + "name": "Project DReaM", + "url": "/v1/software/project-dream" + }, + { + "slug": "project-dakota", + "name": "Project Dakota", + "url": "/v1/software/project-dakota" + }, + { + "slug": "project-genoa", + "name": "Project Genoa", + "url": "/v1/software/project-genoa" + }, + { + "slug": "project-harmony", + "name": "Project Harmony", + "url": "/v1/software/project-harmony" + }, + { + "slug": "project-kickstart", + "name": "Project KickStart", + "url": "/v1/software/project-kickstart" + }, + { + "slug": "project-loom", + "name": "Project Loom", + "url": "/v1/software/project-loom" + }, + { + "slug": "project-noah-q22080512", + "name": "Project NOAH", + "url": "/v1/software/project-noah-q22080512" + }, + { + "slug": "project-noah", + "name": "Project Noah", + "url": "/v1/software/project-noah" + }, + { + "slug": "project-outdoor-gyms", + "name": "Project Outdoor Gyms", + "url": "/v1/software/project-outdoor-gyms" + }, + { + "slug": "project-pad", + "name": "Project Pad", + "url": "/v1/software/project-pad" + }, + { + "slug": "project-phobos", + "name": "Project Phobos", + "url": "/v1/software/project-phobos" + }, + { + "slug": "project-quincy", + "name": "Project Quincy", + "url": "/v1/software/project-quincy" + }, + { + "slug": "project-je", + "name": "Project-JE", + "url": "/v1/software/project-je" + }, + { + "slug": "projection-wizard", + "name": "Projection Wizard", + "url": "/v1/software/projection-wizard" + }, + { + "slug": "projectplace", + "name": "Projectplace", + "url": "/v1/software/projectplace" + }, + { + "slug": "projects", + "name": "Projects", + "url": "/v1/software/projects" + }, + { + "slug": "projektron-bcs", + "name": "Projektron BCS", + "url": "/v1/software/projektron-bcs" + }, + { + "slug": "prokon", + "name": "Prokon", + "url": "/v1/software/prokon" + }, + { + "slug": "prolib", + "name": "Prolib", + "url": "/v1/software/prolib" + }, + { + "slug": "prolog", + "name": "Prolog", + "url": "/v1/software/prolog" + }, + { + "slug": "prometea", + "name": "Prometea", + "url": "/v1/software/prometea" + }, + { + "slug": "promoiq", + "name": "PromoIQ", + "url": "/v1/software/promoiq" + }, + { + "slug": "pronote", + "name": "Pronote", + "url": "/v1/software/pronote" + }, + { + "slug": "property-technologies", + "name": "Property Technologies", + "url": "/v1/software/property-technologies" + }, + { + "slug": "propman-property-management-and-accounting-software", + "name": "Propman (property management and accounting software)", + "url": "/v1/software/propman-property-management-and-accounting-software" + }, + { + "slug": "prose-virtual-muse", + "name": "Prose (Virtual Muse)", + "url": "/v1/software/prose-virtual-muse" + }, + { + "slug": "prosecutor-s-management-information-system", + "name": "Prosecutor's Management Information System", + "url": "/v1/software/prosecutor-s-management-information-system" + }, + { + "slug": "prospect", + "name": "Prospect", + "url": "/v1/software/prospect" + }, + { + "slug": "prospects-course-exchange", + "name": "Prospects Course Exchange", + "url": "/v1/software/prospects-course-exchange" + }, + { + "slug": "protege-gx", + "name": "Protege GX", + "url": "/v1/software/protege-gx" + }, + { + "slug": "protege-wx", + "name": "Protege WX", + "url": "/v1/software/protege-wx" + }, + { + "slug": "protege-x", + "name": "Protege X", + "url": "/v1/software/protege-x" + }, + { + "slug": "protein-local-optimization-program", + "name": "Protein Local Optimization Program", + "url": "/v1/software/protein-local-optimization-program" + }, + { + "slug": "protime-ai", + "name": "Protime AI", + "url": "/v1/software/protime-ai" + }, + { + "slug": "proto-io", + "name": "Proto.io", + "url": "/v1/software/proto-io" + }, + { + "slug": "protopie", + "name": "ProtoPie", + "url": "/v1/software/protopie" + }, + { + "slug": "protoshare", + "name": "ProtoShare", + "url": "/v1/software/protoshare" + }, + { + "slug": "protowall", + "name": "ProtoWall", + "url": "/v1/software/protowall" + }, + { + "slug": "protomap", + "name": "Protomap", + "url": "/v1/software/protomap" + }, + { + "slug": "proton-mail", + "name": "Proton Mail", + "url": "/v1/software/proton-mail" + }, + { + "slug": "protos-ai", + "name": "Protos AI", + "url": "/v1/software/protos-ai" + }, + { + "slug": "protovis", + "name": "Protovis", + "url": "/v1/software/protovis" + }, + { + "slug": "proudnet", + "name": "ProudNet", + "url": "/v1/software/proudnet" + }, + { + "slug": "prove-ai", + "name": "Prove AI", + "url": "/v1/software/prove-ai" + }, + { + "slug": "proxsuite", + "name": "ProxSuite", + "url": "/v1/software/proxsuite" + }, + { + "slug": "proxy-based-estimating", + "name": "Proxy-based estimating", + "url": "/v1/software/proxy-based-estimating" + }, + { + "slug": "proxychains-ng", + "name": "Proxychains-ng", + "url": "/v1/software/proxychains-ng" + }, + { + "slug": "proxyknife", + "name": "Proxyknife", + "url": "/v1/software/proxyknife" + }, + { + "slug": "proxytunnel", + "name": "Proxytunnel", + "url": "/v1/software/proxytunnel" + }, + { + "slug": "pry", + "name": "Pry", + "url": "/v1/software/pry" + }, + { + "slug": "psytoolkit", + "name": "PsyToolkit", + "url": "/v1/software/psytoolkit" + }, + { + "slug": "psychedelia", + "name": "Psychedelia", + "url": "/v1/software/psychedelia" + }, + { + "slug": "psychojs", + "name": "PsychoJS", + "url": "/v1/software/psychojs" + }, + { + "slug": "psychosynth", + "name": "Psychosynth", + "url": "/v1/software/psychosynth" + }, + { + "slug": "psychtoolbox-for-matlab", + "name": "Psychtoolbox for MATLAB", + "url": "/v1/software/psychtoolbox-for-matlab" + }, + { + "slug": "psynth", + "name": "Psynth", + "url": "/v1/software/psynth" + }, + { + "slug": "ptolemaic", + "name": "Ptolemaic", + "url": "/v1/software/ptolemaic" + }, + { + "slug": "public-sector-credit-framework", + "name": "Public Sector Credit Framework", + "url": "/v1/software/public-sector-credit-framework" + }, + { + "slug": "publii", + "name": "Publii", + "url": "/v1/software/publii" + }, + { + "slug": "pubsoft", + "name": "Pubsoft", + "url": "/v1/software/pubsoft" + }, + { + "slug": "puff", + "name": "Puff", + "url": "/v1/software/puff" + }, + { + "slug": "pulpmotion", + "name": "Pulpmotion", + "url": "/v1/software/pulpmotion" + }, + { + "slug": "pulseeffects", + "name": "PulseEffects", + "url": "/v1/software/pulseeffects" + }, + { + "slug": "pulsepoint", + "name": "PulsePoint", + "url": "/v1/software/pulsepoint" + }, + { + "slug": "pulsonix", + "name": "Pulsonix", + "url": "/v1/software/pulsonix" + }, + { + "slug": "puma-scan", + "name": "Puma Scan", + "url": "/v1/software/puma-scan" + }, + { + "slug": "pumpic", + "name": "Pumpic", + "url": "/v1/software/pumpic" + }, + { + "slug": "pumplinx", + "name": "Pumplinx", + "url": "/v1/software/pumplinx" + }, + { + "slug": "punchcad", + "name": "PunchCAD", + "url": "/v1/software/punchcad" + }, + { + "slug": "punchscan", + "name": "Punchscan", + "url": "/v1/software/punchscan" + }, + { + "slug": "pundit", + "name": "Pundit", + "url": "/v1/software/pundit" + }, + { + "slug": "pungi", + "name": "Pungi", + "url": "/v1/software/pungi" + }, + { + "slug": "punie", + "name": "Punie", + "url": "/v1/software/punie" + }, + { + "slug": "punjabi-morphological-analyzer", + "name": "Punjabi Morphological Analyzer", + "url": "/v1/software/punjabi-morphological-analyzer" + }, + { + "slug": "pupasuite", + "name": "PupaSuite", + "url": "/v1/software/pupasuite" + }, + { + "slug": "purevpn", + "name": "PureVPN", + "url": "/v1/software/purevpn" + }, + { + "slug": "puter", + "name": "Puter", + "url": "/v1/software/puter" + }, + { + "slug": "puttygen", + "name": "Puttygen", + "url": "/v1/software/puttygen" + }, + { + "slug": "pvserver", + "name": "Pvserver", + "url": "/v1/software/pvserver" + }, + { + "slug": "pwman3", + "name": "Pwman3", + "url": "/v1/software/pwman3" + }, + { + "slug": "pwnagetool", + "name": "PwnageTool", + "url": "/v1/software/pwnagetool" + }, + { + "slug": "pwnagotchi", + "name": "Pwnagotchi", + "url": "/v1/software/pwnagotchi" + }, + { + "slug": "pwpaw", + "name": "Pwpaw", + "url": "/v1/software/pwpaw" + }, + { + "slug": "pxtone", + "name": "PxTone", + "url": "/v1/software/pxtone" + }, + { + "slug": "pychecker", + "name": "PyChecker", + "url": "/v1/software/pychecker" + }, + { + "slug": "pydelta", + "name": "PyDelta", + "url": "/v1/software/pydelta" + }, + { + "slug": "pygmt-a-python-interface-for-the-generic-mapping-tools", + "name": "PyGMT: A Python interface for the Generic Mapping Tools", + "url": "/v1/software/pygmt-a-python-interface-for-the-generic-mapping-tools" + }, + { + "slug": "pysolfc", + "name": "PySolFC", + "url": "/v1/software/pysolfc" + }, + { + "slug": "pyx", + "name": "PyX", + "url": "/v1/software/pyx" + }, + { + "slug": "pyxab", + "name": "PyXAB", + "url": "/v1/software/pyxab" + }, + { + "slug": "pyconfigure", + "name": "Pyconfigure", + "url": "/v1/software/pyconfigure" + }, + { + "slug": "pycoon", + "name": "Pycoon", + "url": "/v1/software/pycoon" + }, + { + "slug": "pygmalion-s-code", + "name": "Pygmalion’s code", + "url": "/v1/software/pygmalion-s-code" + }, + { + "slug": "pymacs", + "name": "Pymacs", + "url": "/v1/software/pymacs" + }, + { + "slug": "pyrus", + "name": "Pyrus", + "url": "/v1/software/pyrus" + }, + { + "slug": "pyscan", + "name": "Pyscan", + "url": "/v1/software/pyscan" + }, + { + "slug": "pythagoras-abm", + "name": "Pythagoras ABM", + "url": "/v1/software/pythagoras-abm" + }, + { + "slug": "python-tools-for-text-analysis", + "name": "Python Tools for Text-Analysis", + "url": "/v1/software/python-tools-for-text-analysis" + }, + { + "slug": "python-lzo", + "name": "Python-LZO", + "url": "/v1/software/python-lzo" + }, + { + "slug": "pyzor", + "name": "Pyzor", + "url": "/v1/software/pyzor" + }, + { + "slug": "p-atnik", + "name": "Płatnik", + "url": "/v1/software/p-atnik" + }, + { + "slug": "q", + "name": "Q", + "url": "/v1/software/q" + }, + { + "slug": "q-systems", + "name": "Q-systems", + "url": "/v1/software/q-systems" + }, + { + "slug": "q4wine", + "name": "Q4Wine", + "url": "/v1/software/q4wine" + }, + { + "slug": "qanda", + "name": "QANDA", + "url": "/v1/software/qanda" + }, + { + "slug": "qda-miner", + "name": "QDA Miner", + "url": "/v1/software/qda-miner" + }, + { + "slug": "qdacity", + "name": "QDAcity", + "url": "/v1/software/qdacity" + }, + { + "slug": "qdaminer", + "name": "QDAminer", + "url": "/v1/software/qdaminer" + }, + { + "slug": "qdriverstation", + "name": "QDriverStation", + "url": "/v1/software/qdriverstation" + }, + { + "slug": "qiime-2", + "name": "QIIME 2", + "url": "/v1/software/qiime-2" + }, + { + "slug": "qik", + "name": "QIK", + "url": "/v1/software/qik" + }, + { + "slug": "qinsy", + "name": "QINSy", + "url": "/v1/software/qinsy" + }, + { + "slug": "qjot", + "name": "QJot", + "url": "/v1/software/qjot" + }, + { + "slug": "qjoypad", + "name": "QJoyPad", + "url": "/v1/software/qjoypad" + }, + { + "slug": "qlab", + "name": "QLab", + "url": "/v1/software/qlab" + }, + { + "slug": "qlattice", + "name": "QLattice", + "url": "/v1/software/qlattice" + }, + { + "slug": "qmc-home", + "name": "QMC@Home", + "url": "/v1/software/qmc-home" + }, + { + "slug": "qmcpack", + "name": "QMCPACK", + "url": "/v1/software/qmcpack" + }, + { + "slug": "qq-music", + "name": "QQ Music", + "url": "/v1/software/qq-music" + }, + { + "slug": "qq-com", + "name": "QQ.com", + "url": "/v1/software/qq-com" + }, + { + "slug": "qrlynx", + "name": "QRLynx", + "url": "/v1/software/qrlynx" + }, + { + "slug": "qsplat", + "name": "QSplat", + "url": "/v1/software/qsplat" + }, + { + "slug": "qtss-publisher", + "name": "QTSS Publisher", + "url": "/v1/software/qtss-publisher" + }, + { + "slug": "qtads", + "name": "QTads", + "url": "/v1/software/qtads" + }, + { + "slug": "quast", + "name": "QUAST", + "url": "/v1/software/quast" + }, + { + "slug": "qvcs", + "name": "QVCS", + "url": "/v1/software/qvcs" + }, + { + "slug": "qeep", + "name": "Qeep", + "url": "/v1/software/qeep" + }, + { + "slug": "qemu-launcher", + "name": "Qemu Launcher", + "url": "/v1/software/qemu-launcher" + }, + { + "slug": "qigga", + "name": "Qigga", + "url": "/v1/software/qigga" + }, + { + "slug": "qippa", + "name": "Qippa", + "url": "/v1/software/qippa" + }, + { + "slug": "qizx", + "name": "Qizx", + "url": "/v1/software/qizx" + }, + { + "slug": "qlik-sense", + "name": "Qlik Sense", + "url": "/v1/software/qlik-sense" + }, + { + "slug": "qlipper", + "name": "Qlipper", + "url": "/v1/software/qlipper" + }, + { + "slug": "qlower", + "name": "Qlower", + "url": "/v1/software/qlower" + }, + { + "slug": "qmodem", + "name": "Qmodem", + "url": "/v1/software/qmodem" + }, + { + "slug": "qnotero", + "name": "Qnotero", + "url": "/v1/software/qnotero" + }, + { + "slug": "qodana", + "name": "Qodana", + "url": "/v1/software/qodana" + }, + { + "slug": "qoezion", + "name": "Qoezion", + "url": "/v1/software/qoezion" + }, + { + "slug": "qomeet", + "name": "Qomeet", + "url": "/v1/software/qomeet" + }, + { + "slug": "qpopper", + "name": "Qpopper", + "url": "/v1/software/qpopper" + }, + { + "slug": "qrisp", + "name": "Qrisp", + "url": "/v1/software/qrisp" + }, + { + "slug": "qstack", + "name": "Qstack", + "url": "/v1/software/qstack" + }, + { + "slug": "qtbitcointrader", + "name": "QtBitcoinTrader", + "url": "/v1/software/qtbitcointrader" + }, + { + "slug": "qtrax", + "name": "Qtrax", + "url": "/v1/software/qtrax" + }, + { + "slug": "quenc", + "name": "QuEnc", + "url": "/v1/software/quenc" + }, + { + "slug": "qupath", + "name": "QuPath", + "url": "/v1/software/qupath" + }, + { + "slug": "quad-chat", + "name": "Quad Chat", + "url": "/v1/software/quad-chat" + }, + { + "slug": "quadriga-audio-archiving-solution", + "name": "Quadriga Audio-Archiving Solution", + "url": "/v1/software/quadriga-audio-archiving-solution" + }, + { + "slug": "quadrigram", + "name": "Quadrigram", + "url": "/v1/software/quadrigram" + }, + { + "slug": "qualintel-os", + "name": "QualIntel OS", + "url": "/v1/software/qualintel-os" + }, + { + "slug": "qualifiers", + "name": "Qualifiers", + "url": "/v1/software/qualifiers" + }, + { + "slug": "quality-assurance-software", + "name": "Quality Assurance Software", + "url": "/v1/software/quality-assurance-software" + }, + { + "slug": "qualrus", + "name": "Qualrus", + "url": "/v1/software/qualrus" + }, + { + "slug": "quantum-moves", + "name": "Quantum Moves", + "url": "/v1/software/quantum-moves" + }, + { + "slug": "quark-publishing-platform-nextgen", + "name": "Quark Publishing Platform NextGen", + "url": "/v1/software/quark-publishing-platform-nextgen" + }, + { + "slug": "quark-publishing-system", + "name": "Quark Publishing System", + "url": "/v1/software/quark-publishing-system" + }, + { + "slug": "quarkimmedia", + "name": "QuarkImmedia", + "url": "/v1/software/quarkimmedia" + }, + { + "slug": "quarkxpress", + "name": "QuarkXPress", + "url": "/v1/software/quarkxpress" + }, + { + "slug": "quarkus", + "name": "Quarkus", + "url": "/v1/software/quarkus" + }, + { + "slug": "quarto", + "name": "Quarto", + "url": "/v1/software/quarto" + }, + { + "slug": "quartz", + "name": "Quartz", + "url": "/v1/software/quartz" + }, + { + "slug": "quartz-compositor", + "name": "Quartz Compositor", + "url": "/v1/software/quartz-compositor" + }, + { + "slug": "quattro-pro-11", + "name": "Quattro Pro 11", + "url": "/v1/software/quattro-pro-11" + }, + { + "slug": "query-processing-library", + "name": "Query Processing Library", + "url": "/v1/software/query-processing-library" + }, + { + "slug": "query-36", + "name": "Query/36", + "url": "/v1/software/query-36" + }, + { + "slug": "questworks", + "name": "QuestWorks", + "url": "/v1/software/questworks" + }, + { + "slug": "questagame", + "name": "Questagame", + "url": "/v1/software/questagame" + }, + { + "slug": "question-writer", + "name": "Question Writer", + "url": "/v1/software/question-writer" + }, + { + "slug": "quex", + "name": "Quex", + "url": "/v1/software/quex" + }, + { + "slug": "quick-devis", + "name": "Quick Devis", + "url": "/v1/software/quick-devis" + }, + { + "slug": "quick-look", + "name": "Quick Look", + "url": "/v1/software/quick-look" + }, + { + "slug": "quick-menu", + "name": "Quick Menu", + "url": "/v1/software/quick-menu" + }, + { + "slug": "quick-share", + "name": "Quick Share", + "url": "/v1/software/quick-share" + }, + { + "slug": "quick-view-plus", + "name": "Quick View Plus", + "url": "/v1/software/quick-view-plus" + }, + { + "slug": "quick-lx", + "name": "Quick/LX", + "url": "/v1/software/quick-lx" + }, + { + "slug": "quickbbs", + "name": "QuickBBS", + "url": "/v1/software/quickbbs" + }, + { + "slug": "quickload", + "name": "QuickLOAD", + "url": "/v1/software/quickload" + }, + { + "slug": "quickpar", + "name": "QuickPar", + "url": "/v1/software/quickpar" + }, + { + "slug": "quickstatements-client", + "name": "QuickStatements Client", + "url": "/v1/software/quickstatements-client" + }, + { + "slug": "quicktime-broadcaster", + "name": "QuickTime Broadcaster", + "url": "/v1/software/quicktime-broadcaster" + }, + { + "slug": "quicktime-player", + "name": "QuickTime Player", + "url": "/v1/software/quicktime-player" + }, + { + "slug": "quicktime-streaming-server", + "name": "QuickTime Streaming Server", + "url": "/v1/software/quicktime-streaming-server" + }, + { + "slug": "quicktransit", + "name": "QuickTransit", + "url": "/v1/software/quicktransit" + }, + { + "slug": "quickview", + "name": "QuickView", + "url": "/v1/software/quickview" + }, + { + "slug": "quickview-2-0", + "name": "QuickView 2.0", + "url": "/v1/software/quickview-2-0" + }, + { + "slug": "quickvoice-ip", + "name": "QuickVoice iP", + "url": "/v1/software/quickvoice-ip" + }, + { + "slug": "quicken", + "name": "Quicken", + "url": "/v1/software/quicken" + }, + { + "slug": "quicken-family-lawyer", + "name": "Quicken Family Lawyer", + "url": "/v1/software/quicken-family-lawyer" + }, + { + "slug": "quickfield", + "name": "Quickfield", + "url": "/v1/software/quickfield" + }, + { + "slug": "quickmap", + "name": "Quickmap", + "url": "/v1/software/quickmap" + }, + { + "slug": "quicknet", + "name": "Quicknet", + "url": "/v1/software/quicknet" + }, + { + "slug": "quickoffice", + "name": "Quickoffice", + "url": "/v1/software/quickoffice" + }, + { + "slug": "quickplot", + "name": "Quickplot", + "url": "/v1/software/quickplot" + }, + { + "slug": "quickterm", + "name": "Quickterm", + "url": "/v1/software/quickterm" + }, + { + "slug": "quill-q105972409", + "name": "Quill", + "url": "/v1/software/quill-q105972409" + }, + { + "slug": "quill", + "name": "Quill", + "url": "/v1/software/quill" + }, + { + "slug": "quintecia", + "name": "Quintecia", + "url": "/v1/software/quintecia" + }, + { + "slug": "quintessential-player", + "name": "Quintessential Player", + "url": "/v1/software/quintessential-player" + }, + { + "slug": "quintus-prolog", + "name": "Quintus Prolog", + "url": "/v1/software/quintus-prolog" + }, + { + "slug": "quire-io", + "name": "Quire.io", + "url": "/v1/software/quire-io" + }, + { + "slug": "quirkos", + "name": "Quirkos", + "url": "/v1/software/quirkos" + }, + { + "slug": "quitcount", + "name": "QuitCount", + "url": "/v1/software/quitcount" + }, + { + "slug": "qulto", + "name": "Qulto", + "url": "/v1/software/qulto" + }, + { + "slug": "quosal", + "name": "Quosal", + "url": "/v1/software/quosal" + }, + { + "slug": "qutoutiao", + "name": "Qutoutiao", + "url": "/v1/software/qutoutiao" + }, + { + "slug": "qvod", + "name": "Qvod", + "url": "/v1/software/qvod" + }, + { + "slug": "qxorm", + "name": "QxOrm", + "url": "/v1/software/qxorm" + }, + { + "slug": "r-drive-image", + "name": "R-Drive Image", + "url": "/v1/software/r-drive-image" + }, + { + "slug": "r-studio", + "name": "R-Studio", + "url": "/v1/software/r-studio" + }, + { + "slug": "r-sun", + "name": "R.sun", + "url": "/v1/software/r-sun" + }, + { + "slug": "r4e-review-for-eclipse", + "name": "R4E (Review for Eclipse)", + "url": "/v1/software/r4e-review-for-eclipse" + }, + { + "slug": "rag-weaver", + "name": "RAG Weaver", + "url": "/v1/software/rag-weaver" + }, + { + "slug": "raid-admin", + "name": "RAID Admin", + "url": "/v1/software/raid-admin" + }, + { + "slug": "raids-online", + "name": "RAIDS Online", + "url": "/v1/software/raids-online" + }, + { + "slug": "raise-restore-data-integration-suite", + "name": "RAISE - Restore dAta Integration SuitE", + "url": "/v1/software/raise-restore-data-integration-suite" + }, + { + "slug": "ramp-simulation-software-for-modelling-reliability-availability-and-maintainability", + "name": "RAMP Simulation Software for Modelling Reliability, Availability and Maintainability", + "url": "/v1/software/ramp-simulation-software-for-modelling-reliability-availability-and-maintainability" + }, + { + "slug": "raptor", + "name": "RAPTOR", + "url": "/v1/software/raptor" + }, + { + "slug": "rar", + "name": "RAR", + "url": "/v1/software/rar" + }, + { + "slug": "ras-daemon", + "name": "RAS Daemon", + "url": "/v1/software/ras-daemon" + }, + { + "slug": "rats-random-accessible-text-systems", + "name": "RATS (Random-Accessible Text Systems)", + "url": "/v1/software/rats-random-accessible-text-systems" + }, + { + "slug": "raw", + "name": "RAW", + "url": "/v1/software/raw" + }, + { + "slug": "rbbs-pc", + "name": "RBBS-PC", + "url": "/v1/software/rbbs-pc" + }, + { + "slug": "rcx-command-center", + "name": "RCX Command Center", + "url": "/v1/software/rcx-command-center" + }, + { + "slug": "rdf-gravity", + "name": "RDF Gravity", + "url": "/v1/software/rdf-gravity" + }, + { + "slug": "rdf2graph", + "name": "RDF2Graph", + "url": "/v1/software/rdf2graph" + }, + { + "slug": "rdf2svg-rhizomik", + "name": "RDF2SVG (Rhizomik)", + "url": "/v1/software/rdf2svg-rhizomik" + }, + { + "slug": "rdfox", + "name": "RDFox", + "url": "/v1/software/rdfox" + }, + { + "slug": "rdm-server", + "name": "RDM Server", + "url": "/v1/software/rdm-server" + }, + { + "slug": "re-flex", + "name": "RE/flex", + "url": "/v1/software/re-flex" + }, + { + "slug": "rebol", + "name": "REBOL", + "url": "/v1/software/rebol" + }, + { + "slug": "redcap", + "name": "REDCap", + "url": "/v1/software/redcap" + }, + { + "slug": "redhawk", + "name": "REDHAWK", + "url": "/v1/software/redhawk" + }, + { + "slug": "reduce", + "name": "REDUCE", + "url": "/v1/software/reduce" + }, + { + "slug": "redux", + "name": "REDUX", + "url": "/v1/software/redux" + }, + { + "slug": "refprop", + "name": "REFPROP", + "url": "/v1/software/refprop" + }, + { + "slug": "relap5-3d", + "name": "RELAP5-3D", + "url": "/v1/software/relap5-3d" + }, + { + "slug": "rendezvous", + "name": "RENDEZVOUS", + "url": "/v1/software/rendezvous" + }, + { + "slug": "retscreen", + "name": "RETScreen", + "url": "/v1/software/retscreen" + }, + { + "slug": "reviewer", + "name": "REviewER", + "url": "/v1/software/reviewer" + }, + { + "slug": "rexcel", + "name": "RExcel", + "url": "/v1/software/rexcel" + }, + { + "slug": "rfem", + "name": "RFEM", + "url": "/v1/software/rfem" + }, + { + "slug": "rfdump", + "name": "RFdump", + "url": "/v1/software/rfdump" + }, + { + "slug": "rgl", + "name": "RGL", + "url": "/v1/software/rgl" + }, + { + "slug": "rhide", + "name": "RHIDE", + "url": "/v1/software/rhide" + }, + { + "slug": "rht-compass", + "name": "RHT Compass", + "url": "/v1/software/rht-compass" + }, + { + "slug": "rinkt", + "name": "RINKT", + "url": "/v1/software/rinkt" + }, + { + "slug": "rips", + "name": "RIPS", + "url": "/v1/software/rips" + }, + { + "slug": "rkb-explorer", + "name": "RKB Explorer", + "url": "/v1/software/rkb-explorer" + }, + { + "slug": "rmcde", + "name": "RMCDE", + "url": "/v1/software/rmcde" + }, + { + "slug": "rmcprofile", + "name": "RMCProfile", + "url": "/v1/software/rmcprofile" + }, + { + "slug": "rohr2", + "name": "ROHR2", + "url": "/v1/software/rohr2" + }, + { + "slug": "romeo", + "name": "ROMeo", + "url": "/v1/software/romeo" + }, + { + "slug": "rossio-portal", + "name": "ROSSIO Portal", + "url": "/v1/software/rossio-portal" + }, + { + "slug": "rp-pppoe", + "name": "RP-PPPoE", + "url": "/v1/software/rp-pppoe" + }, + { + "slug": "rpcgen", + "name": "RPCGEN", + "url": "/v1/software/rpcgen" + }, + { + "slug": "rrdcollect", + "name": "RRDcollect", + "url": "/v1/software/rrdcollect" + }, + { + "slug": "rsa-archer", + "name": "RSA Archer", + "url": "/v1/software/rsa-archer" + }, + { + "slug": "rss-tracking", + "name": "RSS tracking", + "url": "/v1/software/rss-tracking" + }, + { + "slug": "rsiena", + "name": "RSiena", + "url": "/v1/software/rsiena" + }, + { + "slug": "rt-connect", + "name": "RT Connect", + "url": "/v1/software/rt-connect" + }, + { + "slug": "rtai", + "name": "RTAI", + "url": "/v1/software/rtai" + }, + { + "slug": "rtds-8", + "name": "RTDS-8", + "url": "/v1/software/rtds-8" + }, + { + "slug": "rtl-xl", + "name": "RTL XL", + "url": "/v1/software/rtl-xl" + }, + { + "slug": "rtlinux", + "name": "RTLinux", + "url": "/v1/software/rtlinux" + }, + { + "slug": "rtx-remix", + "name": "RTX Remix", + "url": "/v1/software/rtx-remix" + }, + { + "slug": "rtelnet", + "name": "RTelnet", + "url": "/v1/software/rtelnet" + }, + { + "slug": "rt-player", + "name": "RTÉ player", + "url": "/v1/software/rt-player" + }, + { + "slug": "ru-adlist", + "name": "RU AdList", + "url": "/v1/software/ru-adlist" + }, + { + "slug": "runoff", + "name": "RUNOFF", + "url": "/v1/software/runoff" + }, + { + "slug": "racemetrics", + "name": "RaceMetrics", + "url": "/v1/software/racemetrics" + }, + { + "slug": "radexpro-seismic-software", + "name": "RadExPro seismic software", + "url": "/v1/software/radexpro-seismic-software" + }, + { + "slug": "radeontool", + "name": "RadeonTool", + "url": "/v1/software/radeontool" + }, + { + "slug": "radiance", + "name": "Radiance", + "url": "/v1/software/radiance" + }, + { + "slug": "radiant-photo", + "name": "Radiant Photo", + "url": "/v1/software/radiant-photo" + }, + { + "slug": "radiate", + "name": "Radiate", + "url": "/v1/software/radiate" + }, + { + "slug": "radio-interface-layer", + "name": "Radio Interface Layer", + "url": "/v1/software/radio-interface-layer" + }, + { + "slug": "radioss", + "name": "Radioss", + "url": "/v1/software/radioss" + }, + { + "slug": "radium-smartchain", + "name": "Radium SmartChain", + "url": "/v1/software/radium-smartchain" + }, + { + "slug": "radmin", + "name": "Radmin", + "url": "/v1/software/radmin" + }, + { + "slug": "radmind", + "name": "Radmind", + "url": "/v1/software/radmind" + }, + { + "slug": "rae-assist", + "name": "Rae Assist", + "url": "/v1/software/rae-assist" + }, + { + "slug": "rafflecopter", + "name": "Rafflecopter", + "url": "/v1/software/rafflecopter" + }, + { + "slug": "raftlib", + "name": "RaftLib", + "url": "/v1/software/raftlib" + }, + { + "slug": "ragtime", + "name": "RagTime", + "url": "/v1/software/ragtime" + }, + { + "slug": "ragel", + "name": "Ragel", + "url": "/v1/software/ragel" + }, + { + "slug": "raidcall", + "name": "RaidCall", + "url": "/v1/software/raidcall" + }, + { + "slug": "rain-framework", + "name": "Rain Framework", + "url": "/v1/software/rain-framework" + }, + { + "slug": "raise-data-recovery", + "name": "Raise Data Recovery", + "url": "/v1/software/raise-data-recovery" + }, + { + "slug": "raman-tool-set", + "name": "Raman Tool Set", + "url": "/v1/software/raman-tool-set" + }, + { + "slug": "ramanujan-machine", + "name": "Ramanujan Machine", + "url": "/v1/software/ramanujan-machine" + }, + { + "slug": "ramanujan-machine-q108444510", + "name": "Ramanujan machine", + "url": "/v1/software/ramanujan-machine-q108444510" + }, + { + "slug": "ramaze", + "name": "Ramaze", + "url": "/v1/software/ramaze" + }, + { + "slug": "ramis-software", + "name": "Ramis Software", + "url": "/v1/software/ramis-software" + }, + { + "slug": "ramonia", + "name": "Ramonia", + "url": "/v1/software/ramonia" + }, + { + "slug": "rampnerd", + "name": "Rampnerd", + "url": "/v1/software/rampnerd" + }, + { + "slug": "rana", + "name": "Rana", + "url": "/v1/software/rana" + }, + { + "slug": "ranavision", + "name": "RanaVision", + "url": "/v1/software/ranavision" + }, + { + "slug": "randr", + "name": "RandR", + "url": "/v1/software/randr" + }, + { + "slug": "random", + "name": "Random", + "url": "/v1/software/random" + }, + { + "slug": "ranklabs", + "name": "RankLabs", + "url": "/v1/software/ranklabs" + }, + { + "slug": "ranke-2", + "name": "Ranke.2", + "url": "/v1/software/ranke-2" + }, + { + "slug": "ranorex", + "name": "Ranorex", + "url": "/v1/software/ranorex" + }, + { + "slug": "rapid-evolution", + "name": "Rapid Evolution", + "url": "/v1/software/rapid-evolution" + }, + { + "slug": "rapid-penang", + "name": "Rapid Penang", + "url": "/v1/software/rapid-penang" + }, + { + "slug": "rapid-update-cycle", + "name": "Rapid update cycle", + "url": "/v1/software/rapid-update-cycle" + }, + { + "slug": "rapidq", + "name": "RapidQ", + "url": "/v1/software/rapidq" + }, + { + "slug": "rapidweaver", + "name": "RapidWeaver", + "url": "/v1/software/rapidweaver" + }, + { + "slug": "rapido-q123159344", + "name": "Rapido", + "url": "/v1/software/rapido-q123159344" + }, + { + "slug": "rapido", + "name": "Rapido", + "url": "/v1/software/rapido" + }, + { + "slug": "raptorx", + "name": "RaptorX", + "url": "/v1/software/raptorx" + }, + { + "slug": "rasgir-check", + "name": "Rasgir check", + "url": "/v1/software/rasgir-check" + }, + { + "slug": "rask-ai", + "name": "Rask AI", + "url": "/v1/software/rask-ai" + }, + { + "slug": "raster3d", + "name": "Raster3D", + "url": "/v1/software/raster3d" + }, + { + "slug": "ratfiv", + "name": "Ratfiv", + "url": "/v1/software/ratfiv" + }, + { + "slug": "rational-publishing-engine", + "name": "Rational Publishing Engine", + "url": "/v1/software/rational-publishing-engine" + }, + { + "slug": "rational-rhapsody", + "name": "Rational Rhapsody", + "url": "/v1/software/rational-rhapsody" + }, + { + "slug": "raven-lite", + "name": "Raven Lite", + "url": "/v1/software/raven-lite" + }, + { + "slug": "rawzor", + "name": "Rawzor", + "url": "/v1/software/rawzor" + }, + { + "slug": "ray-dream-studio", + "name": "Ray Dream Studio", + "url": "/v1/software/ray-dream-studio" + }, + { + "slug": "raycast", + "name": "Raycast", + "url": "/v1/software/raycast" + }, + { + "slug": "rdio", + "name": "Rdio", + "url": "/v1/software/rdio" + }, + { + "slug": "recycle", + "name": "ReCycle", + "url": "/v1/software/recycle" + }, + { + "slug": "reqall", + "name": "ReQall", + "url": "/v1/software/reqall" + }, + { + "slug": "respark", + "name": "ReSpark", + "url": "/v1/software/respark" + }, + { + "slug": "react-checkout-pro", + "name": "React Checkout Pro", + "url": "/v1/software/react-checkout-pro" + }, + { + "slug": "react-native", + "name": "React Native", + "url": "/v1/software/react-native" + }, + { + "slug": "reactive-blocks", + "name": "Reactive Blocks", + "url": "/v1/software/reactive-blocks" + }, + { + "slug": "reactive-streams", + "name": "Reactive Streams", + "url": "/v1/software/reactive-streams" + }, + { + "slug": "reactor", + "name": "Reactor", + "url": "/v1/software/reactor" + }, + { + "slug": "readmaniac", + "name": "ReadManiac", + "url": "/v1/software/readmaniac" + }, + { + "slug": "readplease", + "name": "ReadPlease", + "url": "/v1/software/readplease" + }, + { + "slug": "readability-js", + "name": "Readability.js", + "url": "/v1/software/readability-js" + }, + { + "slug": "readium-lcp", + "name": "Readium LCP", + "url": "/v1/software/readium-lcp" + }, + { + "slug": "readless", + "name": "Readless", + "url": "/v1/software/readless" + }, + { + "slug": "readware-information-processor", + "name": "Readware Information Processor", + "url": "/v1/software/readware-information-processor" + }, + { + "slug": "ready-set-go", + "name": "Ready, Set, Go!", + "url": "/v1/software/ready-set-go" + }, + { + "slug": "readyboost", + "name": "ReadyBoost", + "url": "/v1/software/readyboost" + }, + { + "slug": "real-time-audiosuite", + "name": "Real Time AudioSuite", + "url": "/v1/software/real-time-audiosuite" + }, + { + "slug": "real-time-developer-studio", + "name": "Real Time Developer Studio", + "url": "/v1/software/real-time-developer-studio" + }, + { + "slug": "real-world-racing", + "name": "Real World Racing", + "url": "/v1/software/real-world-racing" + }, + { + "slug": "real-time-java", + "name": "Real time Java", + "url": "/v1/software/real-time-java" + }, + { + "slug": "real-time-dispatching", + "name": "Real-Time Dispatching", + "url": "/v1/software/real-time-dispatching" + }, + { + "slug": "realdownloader", + "name": "RealDownloader", + "url": "/v1/software/realdownloader" + }, + { + "slug": "realflow", + "name": "RealFlow", + "url": "/v1/software/realflow" + }, + { + "slug": "realone-player", + "name": "RealOne Player", + "url": "/v1/software/realone-player" + }, + { + "slug": "realpc", + "name": "RealPC", + "url": "/v1/software/realpc" + }, + { + "slug": "realsky", + "name": "RealSky", + "url": "/v1/software/realsky" + }, + { + "slug": "realthings", + "name": "RealThings", + "url": "/v1/software/realthings" + }, + { + "slug": "reality-lab", + "name": "Reality Lab", + "url": "/v1/software/reality-lab" + }, + { + "slug": "realitycapture", + "name": "RealityCapture", + "url": "/v1/software/realitycapture" + }, + { + "slug": "realsoft-3d", + "name": "Realsoft 3D", + "url": "/v1/software/realsoft-3d" + }, + { + "slug": "realtek-media-player", + "name": "Realtek Media Player", + "url": "/v1/software/realtek-media-player" + }, + { + "slug": "reaper", + "name": "Reaper", + "url": "/v1/software/reaper" + }, + { + "slug": "reason", + "name": "Reason", + "url": "/v1/software/reason" + }, + { + "slug": "rebelle", + "name": "Rebelle", + "url": "/v1/software/rebelle" + }, + { + "slug": "rebtel", + "name": "Rebtel", + "url": "/v1/software/rebtel" + }, + { + "slug": "recsql", + "name": "RecSQL", + "url": "/v1/software/recsql" + }, + { + "slug": "reception-genie", + "name": "Reception Genie", + "url": "/v1/software/reception-genie" + }, + { + "slug": "reception-reader", + "name": "Reception Reader", + "url": "/v1/software/reception-reader" + }, + { + "slug": "recogito", + "name": "Recogito", + "url": "/v1/software/recogito" + }, + { + "slug": "recollection", + "name": "Recollection", + "url": "/v1/software/recollection" + }, + { + "slug": "recombination-detection-program", + "name": "Recombination detection program", + "url": "/v1/software/recombination-detection-program" + }, + { + "slug": "recommerceiq", + "name": "RecommerceIQ", + "url": "/v1/software/recommerceiq" + }, + { + "slug": "reconcile-csv", + "name": "Reconcile CSV", + "url": "/v1/software/reconcile-csv" + }, + { + "slug": "record", + "name": "Record", + "url": "/v1/software/record" + }, + { + "slug": "recover-my-files", + "name": "Recover My Files", + "url": "/v1/software/recover-my-files" + }, + { + "slug": "recovery-toolbox", + "name": "Recovery Toolbox", + "url": "/v1/software/recovery-toolbox" + }, + { + "slug": "recruit-crm", + "name": "Recruit CRM", + "url": "/v1/software/recruit-crm" + }, + { + "slug": "recruitee", + "name": "Recruitee", + "url": "/v1/software/recruitee" + }, + { + "slug": "red-carpet", + "name": "Red Carpet", + "url": "/v1/software/red-carpet" + }, + { + "slug": "red-hat-test-suite", + "name": "Red Hat Test Suite", + "url": "/v1/software/red-hat-test-suite" + }, + { + "slug": "red-hat-virtualization", + "name": "Red Hat Virtualization", + "url": "/v1/software/red-hat-virtualization" + }, + { + "slug": "red-moon", + "name": "Red Moon", + "url": "/v1/software/red-moon" + }, + { + "slug": "red-ryder", + "name": "Red Ryder", + "url": "/v1/software/red-ryder" + }, + { + "slug": "reddwarf-server", + "name": "RedDwarf Server", + "url": "/v1/software/reddwarf-server" + }, + { + "slug": "redshift", + "name": "RedShift", + "url": "/v1/software/redshift" + }, + { + "slug": "redshift-q108084006", + "name": "Redshift", + "url": "/v1/software/redshift-q108084006" + }, + { + "slug": "reduck-ai", + "name": "Reduck AI", + "url": "/v1/software/reduck-ai" + }, + { + "slug": "reeco", + "name": "Reeco", + "url": "/v1/software/reeco" + }, + { + "slug": "reeder", + "name": "Reeder", + "url": "/v1/software/reeder" + }, + { + "slug": "refdb", + "name": "RefDB", + "url": "/v1/software/refdb" + }, + { + "slug": "refseek", + "name": "RefSeek", + "url": "/v1/software/refseek" + }, + { + "slug": "reface", + "name": "Reface", + "url": "/v1/software/reface" + }, + { + "slug": "refeus", + "name": "Refeus", + "url": "/v1/software/refeus" + }, + { + "slug": "refiner", + "name": "Refiner", + "url": "/v1/software/refiner" + }, + { + "slug": "reframe-it", + "name": "Reframe It", + "url": "/v1/software/reframe-it" + }, + { + "slug": "regent", + "name": "Regent", + "url": "/v1/software/regent" + }, + { + "slug": "regiograph", + "name": "RegioGraph", + "url": "/v1/software/regiograph" + }, + { + "slug": "regional-atmospheric-modeling-system", + "name": "Regional Atmospheric Modeling System", + "url": "/v1/software/regional-atmospheric-modeling-system" + }, + { + "slug": "registax", + "name": "Registax", + "url": "/v1/software/registax" + }, + { + "slug": "reiboot", + "name": "ReiBoot", + "url": "/v1/software/reiboot" + }, + { + "slug": "reign", + "name": "Reign", + "url": "/v1/software/reign" + }, + { + "slug": "relfinder", + "name": "RelFinder", + "url": "/v1/software/relfinder" + }, + { + "slug": "relate", + "name": "Relate", + "url": "/v1/software/relate" + }, + { + "slug": "relic-hunters-zero", + "name": "Relic Hunters Zero", + "url": "/v1/software/relic-hunters-zero" + }, + { + "slug": "relux", + "name": "Relux", + "url": "/v1/software/relux" + }, + { + "slug": "remember-me", + "name": "Remember Me", + "url": "/v1/software/remember-me" + }, + { + "slug": "remember-the-milk", + "name": "Remember the Milk", + "url": "/v1/software/remember-the-milk" + }, + { + "slug": "remento", + "name": "Remento", + "url": "/v1/software/remento" + }, + { + "slug": "remo-3d", + "name": "Remo 3D", + "url": "/v1/software/remo-3d" + }, + { + "slug": "remote-commander", + "name": "Remote Commander", + "url": "/v1/software/remote-commander" + }, + { + "slug": "remote-graphics-software", + "name": "Remote Graphics Software", + "url": "/v1/software/remote-graphics-software" + }, + { + "slug": "remote-install-mac-os-x", + "name": "Remote Install Mac OS X", + "url": "/v1/software/remote-install-mac-os-x" + }, + { + "slug": "remote-play", + "name": "Remote Play", + "url": "/v1/software/remote-play" + }, + { + "slug": "remote-spooling-communications-subsystem", + "name": "Remote Spooling Communications Subsystem", + "url": "/v1/software/remote-spooling-communications-subsystem" + }, + { + "slug": "remoteaccess", + "name": "RemoteAccess", + "url": "/v1/software/remoteaccess" + }, + { + "slug": "remotepc", + "name": "RemotePC", + "url": "/v1/software/remotepc" + }, + { + "slug": "remoteview-q17145825", + "name": "RemoteView", + "url": "/v1/software/remoteview-q17145825" + }, + { + "slug": "remoteview", + "name": "RemoteView", + "url": "/v1/software/remoteview" + }, + { + "slug": "renderforest", + "name": "Renderforest", + "url": "/v1/software/renderforest" + }, + { + "slug": "renderscript", + "name": "Renderscript", + "url": "/v1/software/renderscript" + }, + { + "slug": "renee-audio-tools", + "name": "Renee Audio Tools", + "url": "/v1/software/renee-audio-tools" + }, + { + "slug": "renee-becca", + "name": "Renee Becca", + "url": "/v1/software/renee-becca" + }, + { + "slug": "renee-file-protector", + "name": "Renee File Protector", + "url": "/v1/software/renee-file-protector" + }, + { + "slug": "renee-pdf-aide", + "name": "Renee PDF Aide", + "url": "/v1/software/renee-pdf-aide" + }, + { + "slug": "renee-passnow", + "name": "Renee PassNow", + "url": "/v1/software/renee-passnow" + }, + { + "slug": "renee-undeleter", + "name": "Renee Undeleter", + "url": "/v1/software/renee-undeleter" + }, + { + "slug": "renee-video-editor-pro", + "name": "Renee Video Editor Pro", + "url": "/v1/software/renee-video-editor-pro" + }, + { + "slug": "renegade", + "name": "Renegade", + "url": "/v1/software/renegade" + }, + { + "slug": "renesis-player", + "name": "Renesis Player", + "url": "/v1/software/renesis-player" + }, + { + "slug": "renovatiocms", + "name": "RenovatioCMS", + "url": "/v1/software/renovatiocms" + }, + { + "slug": "rentmanager-nz-limited", + "name": "RentManager NZ Limited", + "url": "/v1/software/rentmanager-nz-limited" + }, + { + "slug": "reperfection", + "name": "Reperfection", + "url": "/v1/software/reperfection" + }, + { + "slug": "repetier-host", + "name": "Repetier-Host", + "url": "/v1/software/repetier-host" + }, + { + "slug": "replica", + "name": "Replica", + "url": "/v1/software/replica" + }, + { + "slug": "replication-computing", + "name": "Replication (computing)", + "url": "/v1/software/replication-computing" + }, + { + "slug": "reprise-license-manager", + "name": "Reprise License Manager", + "url": "/v1/software/reprise-license-manager" + }, + { + "slug": "repuclinic", + "name": "RepuClinic", + "url": "/v1/software/repuclinic" + }, + { + "slug": "reqtify", + "name": "Reqtify", + "url": "/v1/software/reqtify" + }, + { + "slug": "requirejs", + "name": "RequireJS", + "url": "/v1/software/requirejs" + }, + { + "slug": "rescarta-toolkit", + "name": "ResCarta Toolkit", + "url": "/v1/software/rescarta-toolkit" + }, + { + "slug": "research-data-management-organiser", + "name": "Research Data Management Organiser", + "url": "/v1/software/research-data-management-organiser" + }, + { + "slug": "researchspace", + "name": "ResearchSpace", + "url": "/v1/software/researchspace" + }, + { + "slug": "resorcerer", + "name": "Resorcerer", + "url": "/v1/software/resorcerer" + }, + { + "slug": "resource-tuner", + "name": "Resource Tuner", + "url": "/v1/software/resource-tuner" + }, + { + "slug": "resource-construction-set", + "name": "Resource construction set", + "url": "/v1/software/resource-construction-set" + }, + { + "slug": "responsly", + "name": "Responsly", + "url": "/v1/software/responsly" + }, + { + "slug": "restlet", + "name": "Restlet", + "url": "/v1/software/restlet" + }, + { + "slug": "result-assessment-tool-rat", + "name": "Result Assessment Tool (RAT)", + "url": "/v1/software/result-assessment-tool-rat" + }, + { + "slug": "resumeai", + "name": "ResumeAI", + "url": "/v1/software/resumeai" + }, + { + "slug": "retm", + "name": "Retm", + "url": "/v1/software/retm" + }, + { + "slug": "retouch4me", + "name": "Retouch4me", + "url": "/v1/software/retouch4me" + }, + { + "slug": "retrieval-based-voice-conversion", + "name": "Retrieval-based Voice Conversion", + "url": "/v1/software/retrieval-based-voice-conversion" + }, + { + "slug": "retrievalware", + "name": "RetrievalWare", + "url": "/v1/software/retrievalware" + }, + { + "slug": "returnmail-ai", + "name": "ReturnMail.ai", + "url": "/v1/software/returnmail-ai" + }, + { + "slug": "reuters-3000-xtra", + "name": "Reuters 3000 Xtra", + "url": "/v1/software/reuters-3000-xtra" + }, + { + "slug": "revman", + "name": "RevMan", + "url": "/v1/software/revman" + }, + { + "slug": "revelion", + "name": "Revelion", + "url": "/v1/software/revelion" + }, + { + "slug": "reviewpilot", + "name": "ReviewPilot", + "url": "/v1/software/reviewpilot" + }, + { + "slug": "reviewping", + "name": "ReviewPing", + "url": "/v1/software/reviewping" + }, + { + "slug": "revizto", + "name": "Revizto", + "url": "/v1/software/revizto" + }, + { + "slug": "revoscaler", + "name": "RevoScaleR", + "url": "/v1/software/revoscaler" + }, + { + "slug": "revolution3d", + "name": "Revolution3D", + "url": "/v1/software/revolution3d" + }, + { + "slug": "revoscalepy", + "name": "Revoscalepy", + "url": "/v1/software/revoscalepy" + }, + { + "slug": "rexio", + "name": "RexiO", + "url": "/v1/software/rexio" + }, + { + "slug": "rhea-pipeline", + "name": "Rhea (pipeline)", + "url": "/v1/software/rhea-pipeline" + }, + { + "slug": "rhomobile-suite", + "name": "RhoMobile Suite", + "url": "/v1/software/rhomobile-suite" + }, + { + "slug": "rhyme-genie", + "name": "Rhyme Genie", + "url": "/v1/software/rhyme-genie" + }, + { + "slug": "rhythm-core-alpha", + "name": "Rhythm Core Alpha", + "url": "/v1/software/rhythm-core-alpha" + }, + { + "slug": "rita-q126087706", + "name": "RiTa", + "url": "/v1/software/rita-q126087706" + }, + { + "slug": "rita", + "name": "RiTa", + "url": "/v1/software/rita" + }, + { + "slug": "rialto-toolkit", + "name": "Rialto Toolkit", + "url": "/v1/software/rialto-toolkit" + }, + { + "slug": "rich-communication-services", + "name": "Rich Communication Services", + "url": "/v1/software/rich-communication-services" + }, + { + "slug": "richcopy", + "name": "RichCopy", + "url": "/v1/software/richcopy" + }, + { + "slug": "rierino-core", + "name": "Rierino Core", + "url": "/v1/software/rierino-core" + }, + { + "slug": "riffusion", + "name": "Riffusion", + "url": "/v1/software/riffusion" + }, + { + "slug": "rillsoft-project", + "name": "Rillsoft Project", + "url": "/v1/software/rillsoft-project" + }, + { + "slug": "ring-runner-flight-of-the-sages", + "name": "Ring Runner: Flight of the Sages", + "url": "/v1/software/ring-runner-flight-of-the-sages" + }, + { + "slug": "ringcube-vdesk", + "name": "RingCube vDesk", + "url": "/v1/software/ringcube-vdesk" + }, + { + "slug": "ringid", + "name": "RingID", + "url": "/v1/software/ringid" + }, + { + "slug": "ringdroid", + "name": "Ringdroid", + "url": "/v1/software/ringdroid" + }, + { + "slug": "ringo", + "name": "Ringo", + "url": "/v1/software/ringo" + }, + { + "slug": "ripcord", + "name": "Ripcord", + "url": "/v1/software/ripcord" + }, + { + "slug": "rippled", + "name": "Rippled", + "url": "/v1/software/rippled" + }, + { + "slug": "rising-antivirus", + "name": "Rising Antivirus", + "url": "/v1/software/rising-antivirus" + }, + { + "slug": "risk-ai-agent", + "name": "Risk AI Agent", + "url": "/v1/software/risk-ai-agent" + }, + { + "slug": "rivex", + "name": "RivEx", + "url": "/v1/software/rivex" + }, + { + "slug": "river", + "name": "River", + "url": "/v1/software/river" + }, + { + "slug": "riverside", + "name": "Riverside", + "url": "/v1/software/riverside" + }, + { + "slug": "rivet", + "name": "Rivet", + "url": "/v1/software/rivet" + }, + { + "slug": "rmarkdown", + "name": "Rmarkdown", + "url": "/v1/software/rmarkdown" + }, + { + "slug": "rose", + "name": "RoSE", + "url": "/v1/software/rose" + }, + { + "slug": "roam", + "name": "Roam", + "url": "/v1/software/roam" + }, + { + "slug": "roambi-flow", + "name": "Roambi Flow", + "url": "/v1/software/roambi-flow" + }, + { + "slug": "robert", + "name": "Robert", + "url": "/v1/software/robert" + }, + { + "slug": "roboboard-fx", + "name": "RoboBOARD/FX", + "url": "/v1/software/roboboard-fx" + }, + { + "slug": "robodk", + "name": "RoboDK", + "url": "/v1/software/robodk" + }, + { + "slug": "robogeo", + "name": "RoboGEO", + "url": "/v1/software/robogeo" + }, + { + "slug": "robologix", + "name": "RoboLogix", + "url": "/v1/software/robologix" + }, + { + "slug": "robomind", + "name": "RoboMind", + "url": "/v1/software/robomind" + }, + { + "slug": "robot-lawyer", + "name": "Robot Lawyer", + "url": "/v1/software/robot-lawyer" + }, + { + "slug": "robotml", + "name": "RobotML", + "url": "/v1/software/robotml" + }, + { + "slug": "rockmelt", + "name": "RockMelt", + "url": "/v1/software/rockmelt" + }, + { + "slug": "rocketcake", + "name": "RocketCake", + "url": "/v1/software/rocketcake" + }, + { + "slug": "rocscience", + "name": "Rocscience", + "url": "/v1/software/rocscience" + }, + { + "slug": "rodin-tool", + "name": "Rodin tool", + "url": "/v1/software/rodin-tool" + }, + { + "slug": "roger-wilco", + "name": "Roger Wilco", + "url": "/v1/software/roger-wilco" + }, + { + "slug": "romcc", + "name": "Romcc", + "url": "/v1/software/romcc" + }, + { + "slug": "romeo-model-checker", + "name": "Romeo Model Checker", + "url": "/v1/software/romeo-model-checker" + }, + { + "slug": "romulus", + "name": "Romulus", + "url": "/v1/software/romulus" + }, + { + "slug": "roon-bridge", + "name": "Roon Bridge", + "url": "/v1/software/roon-bridge" + }, + { + "slug": "roon-optimized-core-kit", + "name": "Roon Optimized Core Kit", + "url": "/v1/software/roon-optimized-core-kit" + }, + { + "slug": "roon-server", + "name": "Roon Server", + "url": "/v1/software/roon-server" + }, + { + "slug": "ropey", + "name": "Ropey", + "url": "/v1/software/ropey" + }, + { + "slug": "rosalind", + "name": "Rosalind", + "url": "/v1/software/rosalind" + }, + { + "slug": "rosetta-q37609971", + "name": "Rosetta", + "url": "/v1/software/rosetta-q37609971" + }, + { + "slug": "rosetta", + "name": "Rosetta", + "url": "/v1/software/rosetta" + }, + { + "slug": "rosetta-2", + "name": "Rosetta 2", + "url": "/v1/software/rosetta-2" + }, + { + "slug": "rotoshop", + "name": "Rotoshop", + "url": "/v1/software/rotoshop" + }, + { + "slug": "rottlog", + "name": "Rottlog", + "url": "/v1/software/rottlog" + }, + { + "slug": "roundme", + "name": "RoundMe", + "url": "/v1/software/roundme" + }, + { + "slug": "routeconverter", + "name": "RouteConverter", + "url": "/v1/software/routeconverter" + }, + { + "slug": "routerkeygen", + "name": "RouterKeygen", + "url": "/v1/software/routerkeygen" + }, + { + "slug": "rozetka-ai", + "name": "Rozetka AI", + "url": "/v1/software/rozetka-ai" + }, + { + "slug": "rsocket", + "name": "Rsocket", + "url": "/v1/software/rsocket" + }, + { + "slug": "rtmidi", + "name": "Rtmidi", + "url": "/v1/software/rtmidi" + }, + { + "slug": "rubika", + "name": "Rubika", + "url": "/v1/software/rubika" + }, + { + "slug": "rublon", + "name": "Rublon", + "url": "/v1/software/rublon" + }, + { + "slug": "ruby-geocoder", + "name": "Ruby Geocoder", + "url": "/v1/software/ruby-geocoder" + }, + { + "slug": "ruby-plsql-spec", + "name": "Ruby-plsql-spec", + "url": "/v1/software/ruby-plsql-spec" + }, + { + "slug": "rubyjs", + "name": "RubyJS", + "url": "/v1/software/rubyjs" + }, + { + "slug": "rubymine", + "name": "RubyMine", + "url": "/v1/software/rubymine" + }, + { + "slug": "ruley-the-e-referee", + "name": "Ruley the E-Referee", + "url": "/v1/software/ruley-the-e-referee" + }, + { + "slug": "run-time-infrastructure", + "name": "Run-Time Infrastructure", + "url": "/v1/software/run-time-infrastructure" + }, + { + "slug": "rungem", + "name": "RunGEM", + "url": "/v1/software/rungem" + }, + { + "slug": "rundata", + "name": "Rundata", + "url": "/v1/software/rundata" + }, + { + "slug": "rundll32-exe", + "name": "Rundll32.exe", + "url": "/v1/software/rundll32-exe" + }, + { + "slug": "rust-compiler", + "name": "Rust compiler", + "url": "/v1/software/rust-compiler" + }, + { + "slug": "rust-for-linux", + "name": "Rust for Linux", + "url": "/v1/software/rust-for-linux" + }, + { + "slug": "rx-savings-solutions", + "name": "Rx Savings Solutions", + "url": "/v1/software/rx-savings-solutions" + }, + { + "slug": "rymdport", + "name": "Rymdport", + "url": "/v1/software/rymdport" + }, + { + "slug": "rythm", + "name": "Rythm", + "url": "/v1/software/rythm" + }, + { + "slug": "ryugy-ng-changgi", + "name": "Ryugyŏng Changgi", + "url": "/v1/software/ryugy-ng-changgi" + }, + { + "slug": "s2-spreadsheet", + "name": "S2 Spreadsheet", + "url": "/v1/software/s2-spreadsheet" + }, + { + "slug": "s3ql", + "name": "S3QL", + "url": "/v1/software/s3ql" + }, + { + "slug": "s4e-io", + "name": "S4E.io", + "url": "/v1/software/s4e-io" + }, + { + "slug": "saint", + "name": "SAINT", + "url": "/v1/software/saint" + }, + { + "slug": "salem", + "name": "SALEM", + "url": "/v1/software/salem" + }, + { + "slug": "sam-basic", + "name": "SAM BASIC", + "url": "/v1/software/sam-basic" + }, + { + "slug": "sam-broadcaster", + "name": "SAM Broadcaster", + "url": "/v1/software/sam-broadcaster" + }, + { + "slug": "samcef", + "name": "SAMCEF", + "url": "/v1/software/samcef" + }, + { + "slug": "saminside", + "name": "SAMInside", + "url": "/v1/software/saminside" + }, + { + "slug": "sap-analytics-cloud", + "name": "SAP Analytics Cloud", + "url": "/v1/software/sap-analytics-cloud" + }, + { + "slug": "sap-anywhere", + "name": "SAP Anywhere", + "url": "/v1/software/sap-anywhere" + }, + { + "slug": "sap-business-bydesign", + "name": "SAP Business ByDesign", + "url": "/v1/software/sap-business-bydesign" + }, + { + "slug": "sap-business-one", + "name": "SAP Business One", + "url": "/v1/software/sap-business-one" + }, + { + "slug": "sap-business-suite", + "name": "SAP Business Suite", + "url": "/v1/software/sap-business-suite" + }, + { + "slug": "sap-converged-cloud", + "name": "SAP Converged Cloud", + "url": "/v1/software/sap-converged-cloud" + }, + { + "slug": "sap-enterprise-architecture-framework", + "name": "SAP Enterprise Architecture Framework", + "url": "/v1/software/sap-enterprise-architecture-framework" + }, + { + "slug": "sap-fiori", + "name": "SAP Fiori", + "url": "/v1/software/sap-fiori" + }, + { + "slug": "sap-gui", + "name": "SAP GUI", + "url": "/v1/software/sap-gui" + }, + { + "slug": "sap-is-u", + "name": "SAP IS-U", + "url": "/v1/software/sap-is-u" + }, + { + "slug": "sap-netweaver-application-server", + "name": "SAP NetWeaver Application Server", + "url": "/v1/software/sap-netweaver-application-server" + }, + { + "slug": "sap-netweaver-portal", + "name": "SAP NetWeaver Portal", + "url": "/v1/software/sap-netweaver-portal" + }, + { + "slug": "sap-netweaver-process-integration", + "name": "SAP NetWeaver Process Integration", + "url": "/v1/software/sap-netweaver-process-integration" + }, + { + "slug": "sap-netweaver-visual-composer", + "name": "SAP NetWeaver Visual Composer", + "url": "/v1/software/sap-netweaver-visual-composer" + }, + { + "slug": "sap-s-4hana", + "name": "SAP S/4HANA", + "url": "/v1/software/sap-s-4hana" + }, + { + "slug": "sap-solution-manager", + "name": "SAP Solution Manager", + "url": "/v1/software/sap-solution-manager" + }, + { + "slug": "sap-streamwork", + "name": "SAP StreamWork", + "url": "/v1/software/sap-streamwork" + }, + { + "slug": "sap-for-retail", + "name": "SAP for Retail", + "url": "/v1/software/sap-for-retail" + }, + { + "slug": "sap2000", + "name": "SAP2000", + "url": "/v1/software/sap2000" + }, + { + "slug": "sardu", + "name": "SARDU", + "url": "/v1/software/sardu" + }, + { + "slug": "sarit", + "name": "SARIT", + "url": "/v1/software/sarit" + }, + { + "slug": "sarloc", + "name": "SARLOC", + "url": "/v1/software/sarloc" + }, + { + "slug": "sas-viya", + "name": "SAS Viya", + "url": "/v1/software/sas-viya" + }, + { + "slug": "sas-planet", + "name": "SAS.Planet", + "url": "/v1/software/sas-planet" + }, + { + "slug": "sasdk", + "name": "SASDK", + "url": "/v1/software/sasdk" + }, + { + "slug": "sass-c", + "name": "SASS-C", + "url": "/v1/software/sass-c" + }, + { + "slug": "satro-ecg", + "name": "SATRO-ECG", + "url": "/v1/software/satro-ecg" + }, + { + "slug": "sawstudio", + "name": "SAWStudio", + "url": "/v1/software/sawstudio" + }, + { + "slug": "sbom-2023", + "name": "SBOM-2023", + "url": "/v1/software/sbom-2023" + }, + { + "slug": "sbscl", + "name": "SBSCL", + "url": "/v1/software/sbscl" + }, + { + "slug": "scald", + "name": "SCALD", + "url": "/v1/software/scald" + }, + { + "slug": "scan", + "name": "SCAN", + "url": "/v1/software/scan" + }, + { + "slug": "scia-engineer", + "name": "SCIA Engineer", + "url": "/v1/software/scia-engineer" + }, + { + "slug": "sco-skunkware", + "name": "SCO Skunkware", + "url": "/v1/software/sco-skunkware" + }, + { + "slug": "score", + "name": "SCORE", + "url": "/v1/software/score" + }, + { + "slug": "scos-2000", + "name": "SCOS 2000", + "url": "/v1/software/scos-2000" + }, + { + "slug": "scwrl4", + "name": "SCWRL4", + "url": "/v1/software/scwrl4" + }, + { + "slug": "scons", + "name": "SCons++", + "url": "/v1/software/scons" + }, + { + "slug": "sdc", + "name": "SDC", + "url": "/v1/software/sdc" + }, + { + "slug": "sdet", + "name": "SDET", + "url": "/v1/software/sdet" + }, + { + "slug": "sdf-toolkit", + "name": "SDF Toolkit", + "url": "/v1/software/sdf-toolkit" + }, + { + "slug": "sdi-tools", + "name": "SDI Tools", + "url": "/v1/software/sdi-tools" + }, + { + "slug": "sdl-multiterm", + "name": "SDL MultiTerm", + "url": "/v1/software/sdl-multiterm" + }, + { + "slug": "sdlmame", + "name": "SDLMAME", + "url": "/v1/software/sdlmame" + }, + { + "slug": "sdr", + "name": "SDR++", + "url": "/v1/software/sdr" + }, + { + "slug": "sdrsharp", + "name": "SDRSharp", + "url": "/v1/software/sdrsharp" + }, + { + "slug": "sdsf", + "name": "SDSF", + "url": "/v1/software/sdsf" + }, + { + "slug": "search-x", + "name": "SEARCH X", + "url": "/v1/software/search-x" + }, + { + "slug": "seasr", + "name": "SEASR", + "url": "/v1/software/seasr" + }, + { + "slug": "seasr-date-entities-to-simile-timeline", + "name": "SEASR: Date Entities to Simile Timeline", + "url": "/v1/software/seasr-date-entities-to-simile-timeline" + }, + { + "slug": "seasr-flesch-kincaid-readability-test", + "name": "SEASR: Flesch-Kincaid Readability Test", + "url": "/v1/software/seasr-flesch-kincaid-readability-test" + }, + { + "slug": "seasr-location-entities-to-google-map", + "name": "SEASR: Location Entities To Google Map", + "url": "/v1/software/seasr-location-entities-to-google-map" + }, + { + "slug": "seasr-ngram-tag-cloud-viewer", + "name": "SEASR: NGram Tag Cloud Viewer", + "url": "/v1/software/seasr-ngram-tag-cloud-viewer" + }, + { + "slug": "seasr-tag-cloud-viewer-with-stemming", + "name": "SEASR: Tag Cloud Viewer With Stemming", + "url": "/v1/software/seasr-tag-cloud-viewer-with-stemming" + }, + { + "slug": "secanda-digital-campus", + "name": "SECANDA DIGITAL CAMPUS", + "url": "/v1/software/secanda-digital-campus" + }, + { + "slug": "seep2d", + "name": "SEEP2D", + "url": "/v1/software/seep2d" + }, + { + "slug": "semcad", + "name": "SEMCAD", + "url": "/v1/software/semcad" + }, + { + "slug": "sentinel-q139555827", + "name": "SENTINEL", + "url": "/v1/software/sentinel-q139555827" + }, + { + "slug": "seo-panel", + "name": "SEO Panel", + "url": "/v1/software/seo-panel" + }, + { + "slug": "sequest", + "name": "SEQUEST", + "url": "/v1/software/sequest" + }, + { + "slug": "sesoil", + "name": "SESOIL", + "url": "/v1/software/sesoil" + }, + { + "slug": "sftpplus", + "name": "SFTPPlus", + "url": "/v1/software/sftpplus" + }, + { + "slug": "sfx", + "name": "SFX", + "url": "/v1/software/sfx" + }, + { + "slug": "sglang", + "name": "SGLang", + "url": "/v1/software/sglang" + }, + { + "slug": "sgs-genesis", + "name": "SGS Genesis", + "url": "/v1/software/sgs-genesis" + }, + { + "slug": "sg", + "name": "SG⁺⁺", + "url": "/v1/software/sg" + }, + { + "slug": "shaclex", + "name": "SHACLex", + "url": "/v1/software/shaclex" + }, + { + "slug": "sharc-molecular-dynamics-software", + "name": "SHARC molecular dynamics software", + "url": "/v1/software/sharc-molecular-dynamics-software" + }, + { + "slug": "shelx", + "name": "SHELX", + "url": "/v1/software/shelx" + }, + { + "slug": "shelxl", + "name": "SHELXL", + "url": "/v1/software/shelxl" + }, + { + "slug": "shelxt", + "name": "SHELXT", + "url": "/v1/software/shelxt" + }, + { + "slug": "shetran", + "name": "SHETRAN", + "url": "/v1/software/shetran" + }, + { + "slug": "shiftcor", + "name": "SHIFTCOR", + "url": "/v1/software/shiftcor" + }, + { + "slug": "shine-expert-system", + "name": "SHINE Expert System", + "url": "/v1/software/shine-expert-system" + }, + { + "slug": "shyster", + "name": "SHYSTER", + "url": "/v1/software/shyster" + }, + { + "slug": "si-dih-search-engine-and-repository", + "name": "SI-DIH Search Engine and Repository", + "url": "/v1/software/si-dih-search-engine-and-repository" + }, + { + "slug": "siafi", + "name": "SIAFI", + "url": "/v1/software/siafi" + }, + { + "slug": "sicstus-prolog", + "name": "SICStus Prolog", + "url": "/v1/software/sicstus-prolog" + }, + { + "slug": "siecle", + "name": "SIECLE", + "url": "/v1/software/siecle" + }, + { + "slug": "sief", + "name": "SIEF", + "url": "/v1/software/sief" + }, + { + "slug": "simap", + "name": "SIMAP", + "url": "/v1/software/simap" + }, + { + "slug": "simbl", + "name": "SIMBL", + "url": "/v1/software/simbl" + }, + { + "slug": "simdis", + "name": "SIMDIS", + "url": "/v1/software/simdis" + }, + { + "slug": "simeck", + "name": "SIMECK", + "url": "/v1/software/simeck" + }, + { + "slug": "simile-widgets-exhibit-3-0", + "name": "SIMILE Widgets: Exhibit 3.0", + "url": "/v1/software/simile-widgets-exhibit-3-0" + }, + { + "slug": "simile-widgets-gadget", + "name": "SIMILE Widgets: Gadget", + "url": "/v1/software/simile-widgets-gadget" + }, + { + "slug": "simile-widgets-jstex", + "name": "SIMILE Widgets: JsTeX", + "url": "/v1/software/simile-widgets-jstex" + }, + { + "slug": "simile-widgets-timeline", + "name": "SIMILE Widgets: Timeline", + "url": "/v1/software/simile-widgets-timeline" + }, + { + "slug": "simile-widgets-timeplot", + "name": "SIMILE Widgets: Timeplot", + "url": "/v1/software/simile-widgets-timeplot" + }, + { + "slug": "simile-widgets-welkin", + "name": "SIMILE Widgets: Welkin", + "url": "/v1/software/simile-widgets-welkin" + }, + { + "slug": "simion", + "name": "SIMION", + "url": "/v1/software/simion" + }, + { + "slug": "simmon", + "name": "SIMMON", + "url": "/v1/software/simmon" + }, + { + "slug": "simosphere-ai", + "name": "SIMOSphere AI", + "url": "/v1/software/simosphere-ai" + }, + { + "slug": "simpack", + "name": "SIMPACK", + "url": "/v1/software/simpack" + }, + { + "slug": "simulia", + "name": "SIMULIA", + "url": "/v1/software/simulia" + }, + { + "slug": "sintext", + "name": "SINTEXT", + "url": "/v1/software/sintext" + }, + { + "slug": "sistema", + "name": "SISTEMA", + "url": "/v1/software/sistema" + }, + { + "slug": "siv-system-information-viewer", + "name": "SIV - System Information Viewer", + "url": "/v1/software/siv-system-information-viewer" + }, + { + "slug": "skinroute", + "name": "SKINROUTE", + "url": "/v1/software/skinroute" + }, + { + "slug": "skulabs", + "name": "SKULabs", + "url": "/v1/software/skulabs" + }, + { + "slug": "slinca-home", + "name": "SLinCA@Home", + "url": "/v1/software/slinca-home" + }, + { + "slug": "sm-town-meta-passport", + "name": "SM Town Meta-Passport", + "url": "/v1/software/sm-town-meta-passport" + }, + { + "slug": "smart-information-retrieval-system", + "name": "SMART Information Retrieval System", + "url": "/v1/software/smart-information-retrieval-system" + }, + { + "slug": "smbnetfs", + "name": "SMBNetFS", + "url": "/v1/software/smbnetfs" + }, + { + "slug": "sms", + "name": "SMS", + "url": "/v1/software/sms" + }, + { + "slug": "smstools", + "name": "SMSTools", + "url": "/v1/software/smstools" + }, + { + "slug": "smstools2", + "name": "SMSTools2", + "url": "/v1/software/smstools2" + }, + { + "slug": "snap", + "name": "SNAP", + "url": "/v1/software/snap" + }, + { + "slug": "snark", + "name": "SNARK", + "url": "/v1/software/snark" + }, + { + "slug": "snns", + "name": "SNNS", + "url": "/v1/software/snns" + }, + { + "slug": "snomed-ct", + "name": "SNOMED CT", + "url": "/v1/software/snomed-ct" + }, + { + "slug": "snopt", + "name": "SNOPT", + "url": "/v1/software/snopt" + }, + { + "slug": "snpmasker", + "name": "SNPmasker", + "url": "/v1/software/snpmasker" + }, + { + "slug": "socet-set", + "name": "SOCET SET", + "url": "/v1/software/socet-set" + }, + { + "slug": "sofa", + "name": "SOFA", + "url": "/v1/software/sofa" + }, + { + "slug": "soma-messenger", + "name": "SOMA Messenger", + "url": "/v1/software/soma-messenger" + }, + { + "slug": "sonar", + "name": "SONAR", + "url": "/v1/software/sonar" + }, + { + "slug": "sos-online-backup", + "name": "SOS Online Backup", + "url": "/v1/software/sos-online-backup" + }, + { + "slug": "sp-forth", + "name": "SP-Forth", + "url": "/v1/software/sp-forth" + }, + { + "slug": "spade", + "name": "SPADE", + "url": "/v1/software/spade" + }, + { + "slug": "spaike", + "name": "SPAIKE", + "url": "/v1/software/spaike" + }, + { + "slug": "sparql-unicorn", + "name": "SPARQL Unicorn", + "url": "/v1/software/sparql-unicorn" + }, + { + "slug": "sparqlwrapper", + "name": "SPARQLWrapper", + "url": "/v1/software/sparqlwrapper" + }, + { + "slug": "sparqling-unicorn-qgis-plugin", + "name": "SPARQLing Unicorn QGIS Plugin", + "url": "/v1/software/sparqling-unicorn-qgis-plugin" + }, + { + "slug": "spc-vision", + "name": "SPC Vision", + "url": "/v1/software/spc-vision" + }, + { + "slug": "spdx-license-list", + "name": "SPDX License List", + "url": "/v1/software/spdx-license-list" + }, + { + "slug": "spedas", + "name": "SPEDAS", + "url": "/v1/software/spedas" + }, + { + "slug": "speed2000", + "name": "SPEED2000", + "url": "/v1/software/speed2000" + }, + { + "slug": "spharm-pdm", + "name": "SPHARM-PDM", + "url": "/v1/software/spharm-pdm" + }, + { + "slug": "spice-opus", + "name": "SPICE OPUS", + "url": "/v1/software/spice-opus" + }, + { + "slug": "spm", + "name": "SPM", + "url": "/v1/software/spm" + }, + { + "slug": "spm2", + "name": "SPM2", + "url": "/v1/software/spm2" + }, + { + "slug": "spm5", + "name": "SPM5", + "url": "/v1/software/spm5" + }, + { + "slug": "spm8", + "name": "SPM8", + "url": "/v1/software/spm8" + }, + { + "slug": "spm95", + "name": "SPM95", + "url": "/v1/software/spm95" + }, + { + "slug": "spm96", + "name": "SPM96", + "url": "/v1/software/spm96" + }, + { + "slug": "spm97", + "name": "SPM97", + "url": "/v1/software/spm97" + }, + { + "slug": "sppas", + "name": "SPPAS", + "url": "/v1/software/sppas" + }, + { + "slug": "spring", + "name": "SPRING", + "url": "/v1/software/spring" + }, + { + "slug": "spss-modeler", + "name": "SPSS Modeler", + "url": "/v1/software/spss-modeler" + }, + { + "slug": "sql-server-integration-services", + "name": "SQL Server Integration Services", + "url": "/v1/software/sql-server-integration-services" + }, + { + "slug": "sql-plus", + "name": "SQL*Plus", + "url": "/v1/software/sql-plus" + }, + { + "slug": "sqlcipher", + "name": "SQLCipher", + "url": "/v1/software/sqlcipher" + }, + { + "slug": "sqlgrey", + "name": "SQLgrey", + "url": "/v1/software/sqlgrey" + }, + { + "slug": "sqlite-manager", + "name": "SQLite Manager", + "url": "/v1/software/sqlite-manager" + }, + { + "slug": "sqlitestudio", + "name": "SQLiteStudio", + "url": "/v1/software/sqlitestudio" + }, + { + "slug": "sqlyog", + "name": "SQLyog", + "url": "/v1/software/sqlyog" + }, + { + "slug": "sqrl", + "name": "SQRL", + "url": "/v1/software/sqrl" + }, + { + "slug": "squore", + "name": "SQuORE", + "url": "/v1/software/squore" + }, + { + "slug": "sr-3d-builder", + "name": "SR 3D Builder", + "url": "/v1/software/sr-3d-builder" + }, + { + "slug": "srilm-sri-language-modelling-toolkit", + "name": "SRILM (SRI Language Modelling Toolkit)", + "url": "/v1/software/srilm-sri-language-modelling-toolkit" + }, + { + "slug": "srm-engine-suite", + "name": "SRM Engine Suite", + "url": "/v1/software/srm-engine-suite" + }, + { + "slug": "sselab", + "name": "SSELab", + "url": "/v1/software/sselab" + }, + { + "slug": "ssh-conversion-hub", + "name": "SSH Conversion Hub", + "url": "/v1/software/ssh-conversion-hub" + }, + { + "slug": "ssh-training-discovery-toolkit", + "name": "SSH Training Discovery Toolkit", + "url": "/v1/software/ssh-training-discovery-toolkit" + }, + { + "slug": "sshoc-reference-ontology-sshocro", + "name": "SSHOC Reference Ontology (SSHOCro)", + "url": "/v1/software/sshoc-reference-ontology-sshocro" + }, + { + "slug": "ssimulacra", + "name": "SSIMULACRA", + "url": "/v1/software/ssimulacra" + }, + { + "slug": "ssimulacra-2", + "name": "SSIMULACRA 2", + "url": "/v1/software/ssimulacra-2" + }, + { + "slug": "sssom-curator", + "name": "SSSOM Curator", + "url": "/v1/software/sssom-curator" + }, + { + "slug": "sssom-pydantic", + "name": "SSSOM Pydantic", + "url": "/v1/software/sssom-pydantic" + }, + { + "slug": "stacks-q126084591", + "name": "STACKS", + "url": "/v1/software/stacks-q126084591" + }, + { + "slug": "stadium", + "name": "STADIUM", + "url": "/v1/software/stadium" + }, + { + "slug": "stap", + "name": "STAP", + "url": "/v1/software/stap" + }, + { + "slug": "star", + "name": "STAR", + "url": "/v1/software/star" + }, + { + "slug": "start-prof", + "name": "START-PROF", + "url": "/v1/software/start-prof" + }, + { + "slug": "stata-1-0", + "name": "STATA 1.0", + "url": "/v1/software/stata-1-0" + }, + { + "slug": "stata-1-1", + "name": "STATA 1.1", + "url": "/v1/software/stata-1-1" + }, + { + "slug": "stata-10-0", + "name": "STATA 10.0", + "url": "/v1/software/stata-10-0" + }, + { + "slug": "stata-10-1", + "name": "STATA 10.1", + "url": "/v1/software/stata-10-1" + }, + { + "slug": "stata-11-0", + "name": "STATA 11.0", + "url": "/v1/software/stata-11-0" + }, + { + "slug": "stata-11-1", + "name": "STATA 11.1", + "url": "/v1/software/stata-11-1" + }, + { + "slug": "stata-11-2", + "name": "STATA 11.2", + "url": "/v1/software/stata-11-2" + }, + { + "slug": "stata-12-0", + "name": "STATA 12.0", + "url": "/v1/software/stata-12-0" + }, + { + "slug": "stata-12-1", + "name": "STATA 12.1", + "url": "/v1/software/stata-12-1" + }, + { + "slug": "stata-13-0", + "name": "STATA 13.0", + "url": "/v1/software/stata-13-0" + }, + { + "slug": "stata-13-1", + "name": "STATA 13.1", + "url": "/v1/software/stata-13-1" + }, + { + "slug": "stata-14-0", + "name": "STATA 14.0", + "url": "/v1/software/stata-14-0" + }, + { + "slug": "stata-14-1", + "name": "STATA 14.1", + "url": "/v1/software/stata-14-1" + }, + { + "slug": "stata-14-2", + "name": "STATA 14.2", + "url": "/v1/software/stata-14-2" + }, + { + "slug": "stata-15-0", + "name": "STATA 15.0", + "url": "/v1/software/stata-15-0" + }, + { + "slug": "stata-2-0", + "name": "STATA 2.0", + "url": "/v1/software/stata-2-0" + }, + { + "slug": "stata-2-05", + "name": "STATA 2.05", + "url": "/v1/software/stata-2-05" + }, + { + "slug": "stata-2-1", + "name": "STATA 2.1", + "url": "/v1/software/stata-2-1" + }, + { + "slug": "stata-3-0", + "name": "STATA 3.0", + "url": "/v1/software/stata-3-0" + }, + { + "slug": "stata-4-0", + "name": "STATA 4.0", + "url": "/v1/software/stata-4-0" + }, + { + "slug": "stata-5-0", + "name": "STATA 5.0", + "url": "/v1/software/stata-5-0" + }, + { + "slug": "stata-6-0", + "name": "STATA 6.0", + "url": "/v1/software/stata-6-0" + }, + { + "slug": "stata-7-0", + "name": "STATA 7.0", + "url": "/v1/software/stata-7-0" + }, + { + "slug": "stata-8-0", + "name": "STATA 8.0", + "url": "/v1/software/stata-8-0" + }, + { + "slug": "stata-8-1", + "name": "STATA 8.1", + "url": "/v1/software/stata-8-1" + }, + { + "slug": "stata-8-2", + "name": "STATA 8.2", + "url": "/v1/software/stata-8-2" + }, + { + "slug": "stata-9-0", + "name": "STATA 9.0", + "url": "/v1/software/stata-9-0" + }, + { + "slug": "stata-9-1", + "name": "STATA 9.1", + "url": "/v1/software/stata-9-1" + }, + { + "slug": "stata-9-2", + "name": "STATA 9.2", + "url": "/v1/software/stata-9-2" + }, + { + "slug": "statistica", + "name": "STATISTICA", + "url": "/v1/software/statistica" + }, + { + "slug": "sting", + "name": "STING", + "url": "/v1/software/sting" + }, + { + "slug": "strand7", + "name": "STRAND7", + "url": "/v1/software/strand7" + }, + { + "slug": "strap-2-0", + "name": "STRAP 2.0", + "url": "/v1/software/strap-2-0" + }, + { + "slug": "strasys", + "name": "STRASYS", + "url": "/v1/software/strasys" + }, + { + "slug": "strips", + "name": "STRIPS", + "url": "/v1/software/strips" + }, + { + "slug": "structure", + "name": "STRUCTURE", + "url": "/v1/software/structure" + }, + { + "slug": "student", + "name": "STUDENT", + "url": "/v1/software/student" + }, + { + "slug": "stv-player", + "name": "STV Player", + "url": "/v1/software/stv-player" + }, + { + "slug": "super", + "name": "SUPER", + "url": "/v1/software/super" + }, + { + "slug": "superantispyware", + "name": "SUPERAntiSpyware", + "url": "/v1/software/superantispyware" + }, + { + "slug": "suse-enterprise-storage", + "name": "SUSE Enterprise Storage", + "url": "/v1/software/suse-enterprise-storage" + }, + { + "slug": "svf", + "name": "SVF", + "url": "/v1/software/svf" + }, + { + "slug": "svflux", + "name": "SVFlux", + "url": "/v1/software/svflux" + }, + { + "slug": "svslope", + "name": "SVSlope", + "url": "/v1/software/svslope" + }, + { + "slug": "swat", + "name": "SWAT", + "url": "/v1/software/swat" + }, + { + "slug": "swf2exe-software", + "name": "SWF2EXE software", + "url": "/v1/software/swf2exe-software" + }, + { + "slug": "switch-q121631703", + "name": "SWITCH!", + "url": "/v1/software/switch-q121631703" + }, + { + "slug": "sxe-injected", + "name": "SXe Injected", + "url": "/v1/software/sxe-injected" + }, + { + "slug": "syal", + "name": "SYAL", + "url": "/v1/software/syal" + }, + { + "slug": "symap", + "name": "SYMAP", + "url": "/v1/software/symap" + }, + { + "slug": "syshedit", + "name": "SYSHEDIT", + "url": "/v1/software/syshedit" + }, + { + "slug": "saqc", + "name": "SaQC", + "url": "/v1/software/saqc" + }, + { + "slug": "sachet", + "name": "Sachet", + "url": "/v1/software/sachet" + }, + { + "slug": "sachiko", + "name": "Sachiko", + "url": "/v1/software/sachiko" + }, + { + "slug": "sadovnick-projekce", + "name": "Sadovnická projekce", + "url": "/v1/software/sadovnick-projekce" + }, + { + "slug": "safe-smart-account", + "name": "Safe (smart account)", + "url": "/v1/software/safe-smart-account" + }, + { + "slug": "safemoon", + "name": "SafeMoon", + "url": "/v1/software/safemoon" + }, + { + "slug": "safetrek", + "name": "SafeTrek", + "url": "/v1/software/safetrek" + }, + { + "slug": "safeq", + "name": "Safeq", + "url": "/v1/software/safeq" + }, + { + "slug": "safersurf", + "name": "SaferSurf", + "url": "/v1/software/safersurf" + }, + { + "slug": "safervpn", + "name": "SaferVPN", + "url": "/v1/software/safervpn" + }, + { + "slug": "sagan", + "name": "Sagan", + "url": "/v1/software/sagan" + }, + { + "slug": "sage-200cloud", + "name": "Sage 200cloud", + "url": "/v1/software/sage-200cloud" + }, + { + "slug": "sage-business-cloud", + "name": "Sage Business Cloud", + "url": "/v1/software/sage-business-cloud" + }, + { + "slug": "sage-x3", + "name": "Sage X3", + "url": "/v1/software/sage-x3" + }, + { + "slug": "sahi-pro", + "name": "Sahi Pro", + "url": "/v1/software/sahi-pro" + }, + { + "slug": "sahysmod", + "name": "SahysMod", + "url": "/v1/software/sahysmod" + }, + { + "slug": "saigon-software-park", + "name": "Saigon Software Park", + "url": "/v1/software/saigon-software-park" + }, + { + "slug": "salamweb", + "name": "SalamWeb", + "url": "/v1/software/salamweb" + }, + { + "slug": "salamanca", + "name": "Salamanca", + "url": "/v1/software/salamanca" + }, + { + "slug": "saler", + "name": "Saler", + "url": "/v1/software/saler" + }, + { + "slug": "salesforce-lightning", + "name": "Salesforce Lightning", + "url": "/v1/software/salesforce-lightning" + }, + { + "slug": "salling-clicker", + "name": "Salling Clicker", + "url": "/v1/software/salling-clicker" + }, + { + "slug": "salmon", + "name": "Salmon", + "url": "/v1/software/salmon" + }, + { + "slug": "salonized", + "name": "Salonized", + "url": "/v1/software/salonized" + }, + { + "slug": "saltmod", + "name": "SaltMod", + "url": "/v1/software/saltmod" + }, + { + "slug": "salttesting", + "name": "SaltTesting", + "url": "/v1/software/salttesting" + }, + { + "slug": "sam-spade", + "name": "Sam Spade", + "url": "/v1/software/sam-spade" + }, + { + "slug": "sambar-server", + "name": "Sambar Server", + "url": "/v1/software/sambar-server" + }, + { + "slug": "samna", + "name": "Samna", + "url": "/v1/software/samna" + }, + { + "slug": "samplecell-editor", + "name": "Samplecell Editor", + "url": "/v1/software/samplecell-editor" + }, + { + "slug": "sampo-ui", + "name": "Sampo-UI", + "url": "/v1/software/sampo-ui" + }, + { + "slug": "samsung-email", + "name": "Samsung Email", + "url": "/v1/software/samsung-email" + }, + { + "slug": "samsung-galaxy-player-50", + "name": "Samsung Galaxy Player 50", + "url": "/v1/software/samsung-galaxy-player-50" + }, + { + "slug": "samsung-knox", + "name": "Samsung Knox", + "url": "/v1/software/samsung-knox" + }, + { + "slug": "samsung-link", + "name": "Samsung Link", + "url": "/v1/software/samsung-link" + }, + { + "slug": "samsung-wallet", + "name": "Samsung Wallet", + "url": "/v1/software/samsung-wallet" + }, + { + "slug": "samsung-watchon", + "name": "Samsung WatchON", + "url": "/v1/software/samsung-watchon" + }, + { + "slug": "samurize", + "name": "Samurize", + "url": "/v1/software/samurize" + }, + { + "slug": "sanad", + "name": "Sanad", + "url": "/v1/software/sanad" + }, + { + "slug": "sandboxedapps", + "name": "SandboxedApps", + "url": "/v1/software/sandboxedapps" + }, + { + "slug": "sandvox", + "name": "Sandvox", + "url": "/v1/software/sandvox" + }, + { + "slug": "saner-vulnerability-management", + "name": "Saner Vulnerability Management", + "url": "/v1/software/saner-vulnerability-management" + }, + { + "slug": "sango-2", + "name": "Sango 2", + "url": "/v1/software/sango-2" + }, + { + "slug": "sapper", + "name": "Sapper", + "url": "/v1/software/sapper" + }, + { + "slug": "saracen-paint", + "name": "Saracen Paint", + "url": "/v1/software/saracen-paint" + }, + { + "slug": "saturn", + "name": "Saturn", + "url": "/v1/software/saturn" + }, + { + "slug": "sautrela", + "name": "Sautrela", + "url": "/v1/software/sautrela" + }, + { + "slug": "save22", + "name": "Save22", + "url": "/v1/software/save22" + }, + { + "slug": "sawmill", + "name": "Sawmill", + "url": "/v1/software/sawmill" + }, + { + "slug": "saxotech-online", + "name": "Saxotech Online", + "url": "/v1/software/saxotech-online" + }, + { + "slug": "saycraft", + "name": "SayCraft", + "url": "/v1/software/saycraft" + }, + { + "slug": "scalapack", + "name": "ScaLAPACK", + "url": "/v1/software/scalapack" + }, + { + "slug": "scalable-inman-flash-replacement", + "name": "Scalable Inman Flash Replacement", + "url": "/v1/software/scalable-inman-flash-replacement" + }, + { + "slug": "scalos", + "name": "Scalos", + "url": "/v1/software/scalos" + }, + { + "slug": "scalpel", + "name": "Scalpel", + "url": "/v1/software/scalpel" + }, + { + "slug": "scan2cad", + "name": "Scan2CAD", + "url": "/v1/software/scan2cad" + }, + { + "slug": "scanip", + "name": "ScanIP", + "url": "/v1/software/scanip" + }, + { + "slug": "scanitto", + "name": "Scanitto", + "url": "/v1/software/scanitto" + }, + { + "slug": "scanner-for-zotero", + "name": "Scanner for Zotero", + "url": "/v1/software/scanner-for-zotero" + }, + { + "slug": "scanpy", + "name": "Scanpy", + "url": "/v1/software/scanpy" + }, + { + "slug": "scene-builder", + "name": "Scene Builder", + "url": "/v1/software/scene-builder" + }, + { + "slug": "scene-generator", + "name": "Scene Generator", + "url": "/v1/software/scene-generator" + }, + { + "slug": "scharfenberg-smith-concordance-program", + "name": "Scharfenberg-Smith Concordance Program", + "url": "/v1/software/scharfenberg-smith-concordance-program" + }, + { + "slug": "schedulereader", + "name": "ScheduleReader", + "url": "/v1/software/schedulereader" + }, + { + "slug": "scholarnet-ai", + "name": "ScholarNet AI", + "url": "/v1/software/scholarnet-ai" + }, + { + "slug": "scholarometer", + "name": "Scholarometer", + "url": "/v1/software/scholarometer" + }, + { + "slug": "school-information-management-system", + "name": "School Information Management System", + "url": "/v1/software/school-information-management-system" + }, + { + "slug": "school-management-software-in-india", + "name": "School management software in India", + "url": "/v1/software/school-management-software-in-india" + }, + { + "slug": "schoolmanage", + "name": "SchoolManage", + "url": "/v1/software/schoolmanage" + }, + { + "slug": "schoolverify", + "name": "SchoolVerify", + "url": "/v1/software/schoolverify" + }, + { + "slug": "sci2-tool", + "name": "Sci2 Tool", + "url": "/v1/software/sci2-tool" + }, + { + "slug": "scibox", + "name": "SciBox", + "url": "/v1/software/scibox" + }, + { + "slug": "scicast", + "name": "SciCast", + "url": "/v1/software/scicast" + }, + { + "slug": "science-stories", + "name": "Science Stories", + "url": "/v1/software/science-stories" + }, + { + "slug": "sciencesconf-org-a-ccsd-service", + "name": "SciencesConf.org, a CCSD service", + "url": "/v1/software/sciencesconf-org-a-ccsd-service" + }, + { + "slug": "scientific-notebook", + "name": "Scientific Notebook", + "url": "/v1/software/scientific-notebook" + }, + { + "slug": "sciforma-psnext", + "name": "Sciforma PSNext", + "url": "/v1/software/sciforma-psnext" + }, + { + "slug": "scimoredb", + "name": "ScimoreDB", + "url": "/v1/software/scimoredb" + }, + { + "slug": "scodoc", + "name": "ScoDoc", + "url": "/v1/software/scodoc" + }, + { + "slug": "scopearchiv", + "name": "ScopeArchiv", + "url": "/v1/software/scopearchiv" + }, + { + "slug": "scopifyrom", + "name": "ScopifyROM", + "url": "/v1/software/scopifyrom" + }, + { + "slug": "scorecloud", + "name": "Scorecloud", + "url": "/v1/software/scorecloud" + }, + { + "slug": "scoreloop", + "name": "Scoreloop", + "url": "/v1/software/scoreloop" + }, + { + "slug": "scour", + "name": "Scour", + "url": "/v1/software/scour" + }, + { + "slug": "scout", + "name": "Scout", + "url": "/v1/software/scout" + }, + { + "slug": "scout-by-agentco", + "name": "Scout by AgentCo", + "url": "/v1/software/scout-by-agentco" + }, + { + "slug": "scrapy", + "name": "Scrapy", + "url": "/v1/software/scrapy" + }, + { + "slug": "scratch-live", + "name": "Scratch Live", + "url": "/v1/software/scratch-live" + }, + { + "slug": "scratchpad", + "name": "Scratchpad", + "url": "/v1/software/scratchpad" + }, + { + "slug": "screamer-radio", + "name": "Screamer Radio", + "url": "/v1/software/screamer-radio" + }, + { + "slug": "screen-sharing", + "name": "Screen Sharing", + "url": "/v1/software/screen-sharing" + }, + { + "slug": "screen2exe", + "name": "Screen2EXE", + "url": "/v1/software/screen2exe" + }, + { + "slug": "screenconnect", + "name": "ScreenConnect", + "url": "/v1/software/screenconnect" + }, + { + "slug": "screenflick", + "name": "ScreenFlick", + "url": "/v1/software/screenflick" + }, + { + "slug": "screenflow", + "name": "ScreenFlow", + "url": "/v1/software/screenflow" + }, + { + "slug": "screenruler", + "name": "ScreenRuler", + "url": "/v1/software/screenruler" + }, + { + "slug": "screenweaver", + "name": "ScreenWeaver", + "url": "/v1/software/screenweaver" + }, + { + "slug": "screencast-o-matic", + "name": "Screencast-o-matic", + "url": "/v1/software/screencast-o-matic" + }, + { + "slug": "screenpal", + "name": "Screenpal", + "url": "/v1/software/screenpal" + }, + { + "slug": "scribe", + "name": "Scribe", + "url": "/v1/software/scribe" + }, + { + "slug": "scripped", + "name": "Scripped", + "url": "/v1/software/scripped" + }, + { + "slug": "scripsit", + "name": "Scripsit", + "url": "/v1/software/scripsit" + }, + { + "slug": "script-debugger", + "name": "Script Debugger", + "url": "/v1/software/script-debugger" + }, + { + "slug": "scriptcase", + "name": "Scriptcase", + "url": "/v1/software/scriptcase" + }, + { + "slug": "scripting-layer-for-android", + "name": "Scripting Layer for Android", + "url": "/v1/software/scripting-layer-for-android" + }, + { + "slug": "scripto", + "name": "Scripto", + "url": "/v1/software/scripto" + }, + { + "slug": "scriptware", + "name": "Scriptware", + "url": "/v1/software/scriptware" + }, + { + "slug": "scrivener", + "name": "Scrivener", + "url": "/v1/software/scrivener" + }, + { + "slug": "scrollkeeper", + "name": "ScrollKeeper", + "url": "/v1/software/scrollkeeper" + }, + { + "slug": "scrollback", + "name": "Scrollback", + "url": "/v1/software/scrollback" + }, + { + "slug": "scrolling-game-development-kit", + "name": "Scrolling Game Development Kit", + "url": "/v1/software/scrolling-game-development-kit" + }, + { + "slug": "scruff", + "name": "Scruff", + "url": "/v1/software/scruff" + }, + { + "slug": "scrumedge", + "name": "Scrumedge", + "url": "/v1/software/scrumedge" + }, + { + "slug": "scwm", + "name": "Scwm", + "url": "/v1/software/scwm" + }, + { + "slug": "sesam", + "name": "SeSam", + "url": "/v1/software/sesam" + }, + { + "slug": "seadas", + "name": "SeaDAS", + "url": "/v1/software/seadas" + }, + { + "slug": "seatable", + "name": "SeaTable", + "url": "/v1/software/seatable" + }, + { + "slug": "seatools", + "name": "SeaTools", + "url": "/v1/software/seatools" + }, + { + "slug": "seadragon-software", + "name": "Seadragon Software", + "url": "/v1/software/seadragon-software" + }, + { + "slug": "seamspace", + "name": "Seamspace", + "url": "/v1/software/seamspace" + }, + { + "slug": "searchscore", + "name": "SearchScore", + "url": "/v1/software/searchscore" + }, + { + "slug": "searchdaimon", + "name": "Searchdaimon", + "url": "/v1/software/searchdaimon" + }, + { + "slug": "searchlight-bbs", + "name": "Searchlight BBS", + "url": "/v1/software/searchlight-bbs" + }, + { + "slug": "searchmedica", + "name": "Searchmedica", + "url": "/v1/software/searchmedica" + }, + { + "slug": "seasonal-attribution-project", + "name": "Seasonal Attribution Project", + "url": "/v1/software/seasonal-attribution-project" + }, + { + "slug": "seavus-project-viewer", + "name": "Seavus Project Viewer", + "url": "/v1/software/seavus-project-viewer" + }, + { + "slug": "sebs", + "name": "Sebs", + "url": "/v1/software/sebs" + }, + { + "slug": "second-life", + "name": "Second Life", + "url": "/v1/software/second-life" + }, + { + "slug": "secretnote", + "name": "SecretNote", + "url": "/v1/software/secretnote" + }, + { + "slug": "secunia-personal-software-inspector", + "name": "Secunia Personal Software Inspector", + "url": "/v1/software/secunia-personal-software-inspector" + }, + { + "slug": "securssh", + "name": "SecurSSH", + "url": "/v1/software/securssh" + }, + { + "slug": "secure-dti", + "name": "Secure DTI", + "url": "/v1/software/secure-dti" + }, + { + "slug": "secure-eraser", + "name": "Secure Eraser", + "url": "/v1/software/secure-eraser" + }, + { + "slug": "secure-ftp", + "name": "Secure FTP", + "url": "/v1/software/secure-ftp" + }, + { + "slug": "securetribe", + "name": "SecureTribe", + "url": "/v1/software/securetribe" + }, + { + "slug": "security-key-enforcement", + "name": "Security Key Enforcement", + "url": "/v1/software/security-key-enforcement" + }, + { + "slug": "security-vision", + "name": "Security Vision", + "url": "/v1/software/security-vision" + }, + { + "slug": "security-enhanced-linux", + "name": "Security-Enhanced Linux", + "url": "/v1/software/security-enhanced-linux" + }, + { + "slug": "seeu", + "name": "SeeU", + "url": "/v1/software/seeu" + }, + { + "slug": "seealsology", + "name": "Seealsology", + "url": "/v1/software/seealsology" + }, + { + "slug": "seeing-ai", + "name": "Seeing AI", + "url": "/v1/software/seeing-ai" + }, + { + "slug": "sega-meganet", + "name": "Sega Meganet", + "url": "/v1/software/sega-meganet" + }, + { + "slug": "segrada", + "name": "Segrada", + "url": "/v1/software/segrada" + }, + { + "slug": "seismic-handler", + "name": "Seismic Handler", + "url": "/v1/software/seismic-handler" + }, + { + "slug": "sejda", + "name": "Sejda", + "url": "/v1/software/sejda" + }, + { + "slug": "sekchek-local", + "name": "SekChek Local", + "url": "/v1/software/sekchek-local" + }, + { + "slug": "sell-the-trend", + "name": "Sell The Trend", + "url": "/v1/software/sell-the-trend" + }, + { + "slug": "semlens", + "name": "SemLens", + "url": "/v1/software/semlens" + }, + { + "slug": "semtalk", + "name": "SemTalk", + "url": "/v1/software/semtalk" + }, + { + "slug": "semantic-mapping-reasoner-and-assembler", + "name": "Semantic Mapping Reasoner and Assembler", + "url": "/v1/software/semantic-mapping-reasoner-and-assembler" + }, + { + "slug": "semantria", + "name": "Semantria", + "url": "/v1/software/semantria" + }, + { + "slug": "semaphore", + "name": "Semaphore", + "url": "/v1/software/semaphore" + }, + { + "slug": "semato", + "name": "Semato", + "url": "/v1/software/semato" + }, + { + "slug": "semmle", + "name": "Semmle", + "url": "/v1/software/semmle" + }, + { + "slug": "sendform", + "name": "SendForm", + "url": "/v1/software/sendform" + }, + { + "slug": "sendplus", + "name": "SendPlus", + "url": "/v1/software/sendplus" + }, + { + "slug": "sendpulse", + "name": "SendPulse", + "url": "/v1/software/sendpulse" + }, + { + "slug": "sengi", + "name": "Sengi", + "url": "/v1/software/sengi" + }, + { + "slug": "sensme", + "name": "SensMe", + "url": "/v1/software/sensme" + }, + { + "slug": "sentenza", + "name": "Sentenza", + "url": "/v1/software/sentenza" + }, + { + "slug": "sentione", + "name": "SentiOne", + "url": "/v1/software/sentione" + }, + { + "slug": "sentistrength-q126084546", + "name": "SentiStrength", + "url": "/v1/software/sentistrength-q126084546" + }, + { + "slug": "sentistrength", + "name": "SentiStrength", + "url": "/v1/software/sentistrength" + }, + { + "slug": "sentimentarcs", + "name": "SentimentArcs", + "url": "/v1/software/sentimentarcs" + }, + { + "slug": "sentimentbuilder-com", + "name": "SentimentBuilder.com", + "url": "/v1/software/sentimentbuilder-com" + }, + { + "slug": "sentinel", + "name": "Sentinel", + "url": "/v1/software/sentinel" + }, + { + "slug": "sentry-parental-controls", + "name": "Sentry Parental Controls", + "url": "/v1/software/sentry-parental-controls" + }, + { + "slug": "senuti", + "name": "Senuti", + "url": "/v1/software/senuti" + }, + { + "slug": "seqkit", + "name": "SeqKit", + "url": "/v1/software/seqkit" + }, + { + "slug": "sequenceviewer", + "name": "Sequenceviewer", + "url": "/v1/software/sequenceviewer" + }, + { + "slug": "sequencher", + "name": "Sequencher", + "url": "/v1/software/sequencher" + }, + { + "slug": "sequerome", + "name": "Sequerome", + "url": "/v1/software/sequerome" + }, + { + "slug": "sequoyah", + "name": "Sequoyah", + "url": "/v1/software/sequoyah" + }, + { + "slug": "serendip", + "name": "Serendip", + "url": "/v1/software/serendip" + }, + { + "slug": "series-90", + "name": "Series 90", + "url": "/v1/software/series-90" + }, + { + "slug": "serpent", + "name": "Serpent", + "url": "/v1/software/serpent" + }, + { + "slug": "serratus", + "name": "Serratus", + "url": "/v1/software/serratus" + }, + { + "slug": "serv-u-ftp-server", + "name": "Serv-U FTP Server", + "url": "/v1/software/serv-u-ftp-server" + }, + { + "slug": "serval-project", + "name": "Serval project", + "url": "/v1/software/serval-project" + }, + { + "slug": "server-assistant", + "name": "Server Assistant", + "url": "/v1/software/server-assistant" + }, + { + "slug": "server-efficiency-rating-tool", + "name": "Server Efficiency Rating Tool", + "url": "/v1/software/server-efficiency-rating-tool" + }, + { + "slug": "server-monitor", + "name": "Server Monitor", + "url": "/v1/software/server-monitor" + }, + { + "slug": "server-tools", + "name": "Server Tools", + "url": "/v1/software/server-tools" + }, + { + "slug": "service-control-manager", + "name": "Service Control Manager", + "url": "/v1/software/service-control-manager" + }, + { + "slug": "service-oriented-localisation-architecture-solution", + "name": "Service Oriented Localisation Architecture Solution", + "url": "/v1/software/service-oriented-localisation-architecture-solution" + }, + { + "slug": "service-package-interpreter", + "name": "Service Package Interpreter", + "url": "/v1/software/service-package-interpreter" + }, + { + "slug": "serviio", + "name": "Serviio", + "url": "/v1/software/serviio" + }, + { + "slug": "servoy", + "name": "Servoy", + "url": "/v1/software/servoy" + }, + { + "slug": "sesame-time", + "name": "Sesame Time", + "url": "/v1/software/sesame-time" + }, + { + "slug": "session-manager-subsystem", + "name": "Session Manager Subsystem", + "url": "/v1/software/session-manager-subsystem" + }, + { + "slug": "set-a-time", + "name": "Set a Time", + "url": "/v1/software/set-a-time" + }, + { + "slug": "setacl", + "name": "SetACL", + "url": "/v1/software/setacl" + }, + { + "slug": "setapp", + "name": "Setapp", + "url": "/v1/software/setapp" + }, + { + "slug": "sfold", + "name": "Sfold", + "url": "/v1/software/sfold" + }, + { + "slug": "shex-s", + "name": "ShEx-s", + "url": "/v1/software/shex-s" + }, + { + "slug": "shex-ex", + "name": "ShEx.ex", + "url": "/v1/software/shex-ex" + }, + { + "slug": "shex2-online-validator", + "name": "ShEx2 Online Validator", + "url": "/v1/software/shex2-online-validator" + }, + { + "slug": "shaad", + "name": "Shaad", + "url": "/v1/software/shaad" + }, + { + "slug": "shaala-darpan", + "name": "Shaala Darpan", + "url": "/v1/software/shaala-darpan" + }, + { + "slug": "shabbos-app", + "name": "Shabbos App", + "url": "/v1/software/shabbos-app" + }, + { + "slug": "shade-3d", + "name": "Shade 3D", + "url": "/v1/software/shade-3d" + }, + { + "slug": "shadertoy", + "name": "Shadertoy", + "url": "/v1/software/shadertoy" + }, + { + "slug": "shadow-slice", + "name": "Shadow Slice", + "url": "/v1/software/shadow-slice" + }, + { + "slug": "shadowdragon", + "name": "ShadowDragon", + "url": "/v1/software/shadowdragon" + }, + { + "slug": "shadowtls", + "name": "ShadowTLS", + "url": "/v1/software/shadowtls" + }, + { + "slug": "shadows", + "name": "Shadows", + "url": "/v1/software/shadows" + }, + { + "slug": "shake", + "name": "Shake", + "url": "/v1/software/shake" + }, + { + "slug": "shakealert", + "name": "ShakeAlert", + "url": "/v1/software/shakealert" + }, + { + "slug": "shaman", + "name": "Shaman", + "url": "/v1/software/shaman" + }, + { + "slug": "shape-extension", + "name": "Shape extension", + "url": "/v1/software/shape-extension" + }, + { + "slug": "shapely", + "name": "Shapely", + "url": "/v1/software/shapely" + }, + { + "slug": "shapr", + "name": "Shapr", + "url": "/v1/software/shapr" + }, + { + "slug": "shapr3d", + "name": "Shapr3D", + "url": "/v1/software/shapr3d" + }, + { + "slug": "sharecad", + "name": "ShareCAD", + "url": "/v1/software/sharecad" + }, + { + "slug": "sharescope", + "name": "ShareScope", + "url": "/v1/software/sharescope" + }, + { + "slug": "sharutils", + "name": "Sharutils", + "url": "/v1/software/sharutils" + }, + { + "slug": "shashlik", + "name": "Shashlik", + "url": "/v1/software/shashlik" + }, + { + "slug": "sheepdog", + "name": "Sheepdog", + "url": "/v1/software/sheepdog" + }, + { + "slug": "sheetster", + "name": "Sheetster", + "url": "/v1/software/sheetster" + }, + { + "slug": "sheypoor-software", + "name": "Sheypoor (software)", + "url": "/v1/software/sheypoor-software" + }, + { + "slug": "shibboleth", + "name": "Shibboleth", + "url": "/v1/software/shibboleth" + }, + { + "slug": "shibboleth-identity-provider", + "name": "Shibboleth Identity Provider", + "url": "/v1/software/shibboleth-identity-provider" + }, + { + "slug": "shibboleth-service-provider", + "name": "Shibboleth Service Provider", + "url": "/v1/software/shibboleth-service-provider" + }, + { + "slug": "shikoku-methane", + "name": "Shikoku Methane", + "url": "/v1/software/shikoku-methane" + }, + { + "slug": "shimmercat", + "name": "ShimmerCat", + "url": "/v1/software/shimmercat" + }, + { + "slug": "shiny", + "name": "Shiny", + "url": "/v1/software/shiny" + }, + { + "slug": "shiny-dracor", + "name": "Shiny Dracor", + "url": "/v1/software/shiny-dracor" + }, + { + "slug": "shipserv", + "name": "Shipserv", + "url": "/v1/software/shipserv" + }, + { + "slug": "shixxnote", + "name": "ShixxNOTE", + "url": "/v1/software/shixxnote" + }, + { + "slug": "shmm", + "name": "Shmm", + "url": "/v1/software/shmm" + }, + { + "slug": "shop-diagnostic", + "name": "Shop Diagnostic", + "url": "/v1/software/shop-diagnostic" + }, + { + "slug": "shop-script", + "name": "Shop-Script", + "url": "/v1/software/shop-script" + }, + { + "slug": "shopsavvy", + "name": "ShopSavvy", + "url": "/v1/software/shopsavvy" + }, + { + "slug": "shopaccino", + "name": "Shopaccino", + "url": "/v1/software/shopaccino" + }, + { + "slug": "shoper-s-a", + "name": "Shoper S.A.", + "url": "/v1/software/shoper-s-a" + }, + { + "slug": "shopping-centre-tycoon", + "name": "Shopping Centre Tycoon", + "url": "/v1/software/shopping-centre-tycoon" + }, + { + "slug": "short-oligonucleotide-analysis-package", + "name": "Short Oligonucleotide Analysis Package", + "url": "/v1/software/short-oligonucleotide-analysis-package" + }, + { + "slug": "shortcuts", + "name": "Shortcuts", + "url": "/v1/software/shortcuts" + }, + { + "slug": "shotgrid", + "name": "ShotGrid", + "url": "/v1/software/shotgrid" + }, + { + "slug": "shotty", + "name": "Shotty", + "url": "/v1/software/shotty" + }, + { + "slug": "should-i-remove-it", + "name": "Should I Remove It?", + "url": "/v1/software/should-i-remove-it" + }, + { + "slug": "shoverand", + "name": "ShoveRand", + "url": "/v1/software/shoverand" + }, + { + "slug": "showdocument", + "name": "ShowDocument", + "url": "/v1/software/showdocument" + }, + { + "slug": "showeq", + "name": "ShowEQ", + "url": "/v1/software/showeq" + }, + { + "slug": "showplace", + "name": "Showplace", + "url": "/v1/software/showplace" + }, + { + "slug": "showtime-skill-pack", + "name": "Showtime (skill pack)", + "url": "/v1/software/showtime-skill-pack" + }, + { + "slug": "shre", + "name": "Shre", + "url": "/v1/software/shre" + }, + { + "slug": "shredder-1-0", + "name": "Shredder 1.0", + "url": "/v1/software/shredder-1-0" + }, + { + "slug": "shrutlekhan-rajbhasha", + "name": "Shrutlekhan-Rajbhasha", + "url": "/v1/software/shrutlekhan-rajbhasha" + }, + { + "slug": "shtool", + "name": "Shtool", + "url": "/v1/software/shtool" + }, + { + "slug": "shutterstock-for-ipad", + "name": "Shutterstock for iPad", + "url": "/v1/software/shutterstock-for-ipad" + }, + { + "slug": "sisu", + "name": "SiSU", + "url": "/v1/software/sisu" + }, + { + "slug": "siard-suite", + "name": "Siard Suite", + "url": "/v1/software/siard-suite" + }, + { + "slug": "siconfi", + "name": "Siconfi", + "url": "/v1/software/siconfi" + }, + { + "slug": "sidecar-proxy", + "name": "Sidecar proxy", + "url": "/v1/software/sidecar-proxy" + }, + { + "slug": "sidra-intersection", + "name": "Sidra Intersection", + "url": "/v1/software/sidra-intersection" + }, + { + "slug": "siegfried", + "name": "Siegfried", + "url": "/v1/software/siegfried" + }, + { + "slug": "sifter", + "name": "Sifter", + "url": "/v1/software/sifter" + }, + { + "slug": "sigscheme", + "name": "SigScheme", + "url": "/v1/software/sigscheme" + }, + { + "slug": "sightspeed", + "name": "SightSpeed", + "url": "/v1/software/sightspeed" + }, + { + "slug": "sigil", + "name": "Sigil", + "url": "/v1/software/sigil" + }, + { + "slug": "sigma-knowledge-engineering-environment", + "name": "Sigma knowledge engineering environment", + "url": "/v1/software/sigma-knowledge-engineering-environment" + }, + { + "slug": "sigmaplot", + "name": "SigmaPlot", + "url": "/v1/software/sigmaplot" + }, + { + "slug": "sigmascan", + "name": "SigmaScan", + "url": "/v1/software/sigmascan" + }, + { + "slug": "sigmastat", + "name": "SigmaStat", + "url": "/v1/software/sigmastat" + }, + { + "slug": "signnow", + "name": "SignNow", + "url": "/v1/software/signnow" + }, + { + "slug": "signplot", + "name": "SignPlot", + "url": "/v1/software/signplot" + }, + { + "slug": "signal-engine", + "name": "Signal Engine", + "url": "/v1/software/signal-engine" + }, + { + "slug": "signum-framework", + "name": "Signum Framework", + "url": "/v1/software/signum-framework" + }, + { + "slug": "sigrid", + "name": "Sigrid", + "url": "/v1/software/sigrid" + }, + { + "slug": "sikuli", + "name": "Sikuli", + "url": "/v1/software/sikuli" + }, + { + "slug": "sileo", + "name": "Sileo", + "url": "/v1/software/sileo" + }, + { + "slug": "silhouettefx", + "name": "SilhouetteFX", + "url": "/v1/software/silhouettefx" + }, + { + "slug": "silivaccine", + "name": "SiliVaccine", + "url": "/v1/software/silivaccine" + }, + { + "slug": "silicon", + "name": "Silicon", + "url": "/v1/software/silicon" + }, + { + "slug": "silk-performer", + "name": "Silk Performer", + "url": "/v1/software/silk-performer" + }, + { + "slug": "silk-test", + "name": "Silk Test", + "url": "/v1/software/silk-test" + }, + { + "slug": "silk-central", + "name": "Silk central", + "url": "/v1/software/silk-central" + }, + { + "slug": "silkypix", + "name": "Silkypix", + "url": "/v1/software/silkypix" + }, + { + "slug": "silobreaker", + "name": "Silobreaker", + "url": "/v1/software/silobreaker" + }, + { + "slug": "simca-2-0", + "name": "SimCA 2.0", + "url": "/v1/software/simca-2-0" + }, + { + "slug": "simevents", + "name": "SimEvents", + "url": "/v1/software/simevents" + }, + { + "slug": "simpeg", + "name": "SimPEG", + "url": "/v1/software/simpeg" + }, + { + "slug": "simspark", + "name": "SimSpark", + "url": "/v1/software/simspark" + }, + { + "slug": "simapro", + "name": "SimaPro", + "url": "/v1/software/simapro" + }, + { + "slug": "simatic-step-7", + "name": "Simatic Step 7", + "url": "/v1/software/simatic-step-7" + }, + { + "slug": "simba-voice-agents", + "name": "Simba Voice Agents", + "url": "/v1/software/simba-voice-agents" + }, + { + "slug": "simcad-pro", + "name": "Simcad Pro", + "url": "/v1/software/simcad-pro" + }, + { + "slug": "simcenter", + "name": "Simcenter", + "url": "/v1/software/simcenter" + }, + { + "slug": "simcenter-amesim", + "name": "Simcenter Amesim", + "url": "/v1/software/simcenter-amesim" + }, + { + "slug": "simcenter-star-ccm", + "name": "Simcenter STAR-CCM+", + "url": "/v1/software/simcenter-star-ccm" + }, + { + "slug": "simcyp-simulator", + "name": "Simcyp Simulator", + "url": "/v1/software/simcyp-simulator" + }, + { + "slug": "simmcast", + "name": "Simmcast", + "url": "/v1/software/simmcast" + }, + { + "slug": "simons-basic", + "name": "Simons' BASIC", + "url": "/v1/software/simons-basic" + }, + { + "slug": "simple-authorship-clustering", + "name": "Simple Authorship Clustering", + "url": "/v1/software/simple-authorship-clustering" + }, + { + "slug": "simple-dns-plus", + "name": "Simple DNS Plus", + "url": "/v1/software/simple-dns-plus" + }, + { + "slug": "simple-dynamic-modelling", + "name": "Simple Dynamic Modelling", + "url": "/v1/software/simple-dynamic-modelling" + }, + { + "slug": "simple-grid-protocol", + "name": "Simple Grid Protocol", + "url": "/v1/software/simple-grid-protocol" + }, + { + "slug": "simple-object-database-access", + "name": "Simple Object Database Access", + "url": "/v1/software/simple-object-database-access" + }, + { + "slug": "simple-sentiment-analysis", + "name": "Simple Sentiment Analysis", + "url": "/v1/software/simple-sentiment-analysis" + }, + { + "slug": "simpleitk", + "name": "SimpleITK", + "url": "/v1/software/simpleitk" + }, + { + "slug": "simplemind", + "name": "SimpleMind", + "url": "/v1/software/simplemind" + }, + { + "slug": "simplesize", + "name": "SimpleSize", + "url": "/v1/software/simplesize" + }, + { + "slug": "simpletct", + "name": "SimpleTCT", + "url": "/v1/software/simpletct" + }, + { + "slug": "simplexnumerica", + "name": "SimplexNumerica", + "url": "/v1/software/simplexnumerica" + }, + { + "slug": "simul8", + "name": "Simul8", + "url": "/v1/software/simul8" + }, + { + "slug": "simulide-circuit-simulator", + "name": "SimulIDE Circuit Simulator", + "url": "/v1/software/simulide-circuit-simulator" + }, + { + "slug": "simulationx", + "name": "SimulationX", + "url": "/v1/software/simulationx" + }, + { + "slug": "simulink", + "name": "Simulink", + "url": "/v1/software/simulink" + }, + { + "slug": "simvestrix", + "name": "Simvestrix", + "url": "/v1/software/simvestrix" + }, + { + "slug": "sinespace", + "name": "Sinespace", + "url": "/v1/software/sinespace" + }, + { + "slug": "singingcoach", + "name": "SingingCoach", + "url": "/v1/software/singingcoach" + }, + { + "slug": "single-table-inheritance", + "name": "Single Table Inheritance", + "url": "/v1/software/single-table-inheritance" + }, + { + "slug": "sinqlo", + "name": "Sinqlo", + "url": "/v1/software/sinqlo" + }, + { + "slug": "sinusbot", + "name": "SinusBot", + "url": "/v1/software/sinusbot" + }, + { + "slug": "sipnms", + "name": "Sipnms", + "url": "/v1/software/sipnms" + }, + { + "slug": "sirion", + "name": "Sirion", + "url": "/v1/software/sirion" + }, + { + "slug": "sirius-visualization-software", + "name": "Sirius visualization software", + "url": "/v1/software/sirius-visualization-software" + }, + { + "slug": "sitsense", + "name": "SitSense", + "url": "/v1/software/sitsense" + }, + { + "slug": "site-recorder", + "name": "Site Recorder", + "url": "/v1/software/site-recorder" + }, + { + "slug": "sitecrawler", + "name": "SiteCrawler", + "url": "/v1/software/sitecrawler" + }, + { + "slug": "sitekiosk", + "name": "SiteKiosk", + "url": "/v1/software/sitekiosk" + }, + { + "slug": "sitepal", + "name": "SitePal", + "url": "/v1/software/sitepal" + }, + { + "slug": "sitesucker", + "name": "SiteSucker", + "url": "/v1/software/sitesucker" + }, + { + "slug": "sitecore-commerce-server", + "name": "Sitecore Commerce Server", + "url": "/v1/software/sitecore-commerce-server" + }, + { + "slug": "sivi-ai", + "name": "Sivi AI", + "url": "/v1/software/sivi-ai" + }, + { + "slug": "sixpack", + "name": "Sixpack", + "url": "/v1/software/sixpack" + }, + { + "slug": "skalli", + "name": "Skalli", + "url": "/v1/software/skalli" + }, + { + "slug": "skeedcast", + "name": "SkeedCast", + "url": "/v1/software/skeedcast" + }, + { + "slug": "sketch-engine", + "name": "Sketch Engine", + "url": "/v1/software/sketch-engine" + }, + { + "slug": "sketch2code", + "name": "Sketch2Code", + "url": "/v1/software/sketch2code" + }, + { + "slug": "sketchbook-express", + "name": "SketchBook Express", + "url": "/v1/software/sketchbook-express" + }, + { + "slug": "sketchbook", + "name": "Sketchbook", + "url": "/v1/software/sketchbook" + }, + { + "slug": "sketchbook-pro", + "name": "Sketchbook Pro", + "url": "/v1/software/sketchbook-pro" + }, + { + "slug": "skiffos", + "name": "SkiffOS", + "url": "/v1/software/skiffos" + }, + { + "slug": "skifta", + "name": "Skifta", + "url": "/v1/software/skifta" + }, + { + "slug": "skillvee", + "name": "Skillvee", + "url": "/v1/software/skillvee" + }, + { + "slug": "skitch", + "name": "Skitch", + "url": "/v1/software/skitch" + }, + { + "slug": "skohub", + "name": "SkoHub", + "url": "/v1/software/skohub" + }, + { + "slug": "skoog", + "name": "Skoog", + "url": "/v1/software/skoog" + }, + { + "slug": "skoove", + "name": "Skoove", + "url": "/v1/software/skoove" + }, + { + "slug": "skosify", + "name": "Skosify", + "url": "/v1/software/skosify" + }, + { + "slug": "skrifa", + "name": "Skrifa", + "url": "/v1/software/skrifa" + }, + { + "slug": "sky-map", + "name": "Sky Map", + "url": "/v1/software/sky-map" + }, + { + "slug": "sky-hd", + "name": "Sky+ HD", + "url": "/v1/software/sky-hd" + }, + { + "slug": "skyciv", + "name": "SkyCiv", + "url": "/v1/software/skyciv" + }, + { + "slug": "skygrabber", + "name": "SkyGrabber", + "url": "/v1/software/skygrabber" + }, + { + "slug": "skybot-scheduler", + "name": "Skybot Scheduler", + "url": "/v1/software/skybot-scheduler" + }, + { + "slug": "skyfire", + "name": "Skyfire", + "url": "/v1/software/skyfire" + }, + { + "slug": "skyglobe", + "name": "Skyglobe", + "url": "/v1/software/skyglobe" + }, + { + "slug": "skyline", + "name": "Skyline", + "url": "/v1/software/skyline" + }, + { + "slug": "skymotion", + "name": "Skymotion", + "url": "/v1/software/skymotion" + }, + { + "slug": "skype", + "name": "Skype", + "url": "/v1/software/skype" + }, + { + "slug": "skype-for-business-online", + "name": "Skype for Business Online", + "url": "/v1/software/skype-for-business-online" + }, + { + "slug": "skyscraper-simulator", + "name": "Skyscraper Simulator", + "url": "/v1/software/skyscraper-simulator" + }, + { + "slug": "slackbridge", + "name": "SlackBridge", + "url": "/v1/software/slackbridge" + }, + { + "slug": "slapd", + "name": "Slapd", + "url": "/v1/software/slapd" + }, + { + "slug": "slide-effect", + "name": "Slide Effect", + "url": "/v1/software/slide-effect" + }, + { + "slug": "sliderocket", + "name": "SlideRocket", + "url": "/v1/software/sliderocket" + }, + { + "slug": "slidewiki", + "name": "SlideWiki", + "url": "/v1/software/slidewiki" + }, + { + "slug": "slidea", + "name": "Slidea", + "url": "/v1/software/slidea" + }, + { + "slug": "slirp", + "name": "Slirp", + "url": "/v1/software/slirp" + }, + { + "slug": "sloth-app", + "name": "Sloth (app)", + "url": "/v1/software/sloth-app" + }, + { + "slug": "slotomica", + "name": "Slotomica", + "url": "/v1/software/slotomica" + }, + { + "slug": "sloveni-ina-2-0-journal", + "name": "Sloveniščina 2.0 - Journal", + "url": "/v1/software/sloveni-ina-2-0-journal" + }, + { + "slug": "slowdroid", + "name": "Slowdroid", + "url": "/v1/software/slowdroid" + }, + { + "slug": "slowloris", + "name": "Slowloris", + "url": "/v1/software/slowloris" + }, + { + "slug": "slowly", + "name": "Slowly", + "url": "/v1/software/slowly" + }, + { + "slug": "slrn", + "name": "Slrn", + "url": "/v1/software/slrn" + }, + { + "slug": "slugs", + "name": "Slugs", + "url": "/v1/software/slugs" + }, + { + "slug": "smaart", + "name": "Smaart", + "url": "/v1/software/smaart" + }, + { + "slug": "smadav", + "name": "Smadav", + "url": "/v1/software/smadav" + }, + { + "slug": "small-http-server", + "name": "Small HTTP Server", + "url": "/v1/software/small-http-server" + }, + { + "slug": "small-world-2", + "name": "Small World 2", + "url": "/v1/software/small-world-2" + }, + { + "slug": "smallpdf-online-pdf-tools", + "name": "Smallpdf- Online PDF Tools", + "url": "/v1/software/smallpdf-online-pdf-tools" + }, + { + "slug": "smallworld", + "name": "Smallworld", + "url": "/v1/software/smallworld" + }, + { + "slug": "smart-admin", + "name": "Smart Admin", + "url": "/v1/software/smart-admin" + }, + { + "slug": "smart-check", + "name": "Smart Check", + "url": "/v1/software/smart-check" + }, + { + "slug": "smart-compare", + "name": "Smart Compare", + "url": "/v1/software/smart-compare" + }, + { + "slug": "smart-consult", + "name": "Smart Consult", + "url": "/v1/software/smart-consult" + }, + { + "slug": "smart-gevo", + "name": "Smart Gevo", + "url": "/v1/software/smart-gevo" + }, + { + "slug": "smart-idreader", + "name": "Smart IDReader", + "url": "/v1/software/smart-idreader" + }, + { + "slug": "smart-insur", + "name": "Smart Insur", + "url": "/v1/software/smart-insur" + }, + { + "slug": "smart-switch", + "name": "Smart Switch", + "url": "/v1/software/smart-switch" + }, + { + "slug": "smartcat", + "name": "SmartCAT", + "url": "/v1/software/smartcat" + }, + { + "slug": "smartclient", + "name": "SmartClient", + "url": "/v1/software/smartclient" + }, + { + "slug": "smartdraw", + "name": "SmartDraw", + "url": "/v1/software/smartdraw" + }, + { + "slug": "smartdrive", + "name": "SmartDrive", + "url": "/v1/software/smartdrive" + }, + { + "slug": "smartfrog", + "name": "SmartFrog", + "url": "/v1/software/smartfrog" + }, + { + "slug": "smartpar", + "name": "SmartPAR", + "url": "/v1/software/smartpar" + }, + { + "slug": "smartpls", + "name": "SmartPLS", + "url": "/v1/software/smartpls" + }, + { + "slug": "smartrename", + "name": "SmartRename", + "url": "/v1/software/smartrename" + }, + { + "slug": "smartrouter", + "name": "SmartRouter", + "url": "/v1/software/smartrouter" + }, + { + "slug": "smartvision", + "name": "SmartVision", + "url": "/v1/software/smartvision" + }, + { + "slug": "smartify", + "name": "Smartify", + "url": "/v1/software/smartify" + }, + { + "slug": "smartmovie", + "name": "Smartmovie", + "url": "/v1/software/smartmovie" + }, + { + "slug": "smartsheet", + "name": "Smartsheet", + "url": "/v1/software/smartsheet" + }, + { + "slug": "smithsonian-voyager", + "name": "Smithsonian Voyager", + "url": "/v1/software/smithsonian-voyager" + }, + { + "slug": "smokeping", + "name": "SmokePing", + "url": "/v1/software/smokeping" + }, + { + "slug": "smoldyn", + "name": "Smoldyn", + "url": "/v1/software/smoldyn" + }, + { + "slug": "smolt", + "name": "Smolt", + "url": "/v1/software/smolt" + }, + { + "slug": "smoothvideo-project", + "name": "SmoothVideo Project", + "url": "/v1/software/smoothvideo-project" + }, + { + "slug": "smugglers-v", + "name": "Smugglers V", + "url": "/v1/software/smugglers-v" + }, + { + "slug": "snack-sound-toolkit", + "name": "Snack Sound Toolkit", + "url": "/v1/software/snack-sound-toolkit" + }, + { + "slug": "snagger", + "name": "Snagger", + "url": "/v1/software/snagger" + }, + { + "slug": "snakemake", + "name": "Snakemake", + "url": "/v1/software/snakemake" + }, + { + "slug": "snapdragon-neural-processing-engine", + "name": "Snapdragon Neural Processing Engine", + "url": "/v1/software/snapdragon-neural-processing-engine" + }, + { + "slug": "snapforce-crm", + "name": "Snapforce CRM", + "url": "/v1/software/snapforce-crm" + }, + { + "slug": "snapp-ai", + "name": "Snapp AI", + "url": "/v1/software/snapp-ai" + }, + { + "slug": "snapster", + "name": "Snapster", + "url": "/v1/software/snapster" + }, + { + "slug": "snaptu", + "name": "Snaptu", + "url": "/v1/software/snaptu" + }, + { + "slug": "snapz-pro-x", + "name": "Snapz Pro X", + "url": "/v1/software/snapz-pro-x" + }, + { + "slug": "snapzen", + "name": "Snapzen", + "url": "/v1/software/snapzen" + }, + { + "slug": "snatchbot", + "name": "SnatchBot", + "url": "/v1/software/snatchbot" + }, + { + "slug": "snes9x", + "name": "Snes9x", + "url": "/v1/software/snes9x" + }, + { + "slug": "sniffer", + "name": "Sniffer", + "url": "/v1/software/sniffer" + }, + { + "slug": "snipshot", + "name": "Snipshot", + "url": "/v1/software/snipshot" + }, + { + "slug": "snit", + "name": "Snit", + "url": "/v1/software/snit" + }, + { + "slug": "snitz-forums-2000", + "name": "Snitz Forums 2000", + "url": "/v1/software/snitz-forums-2000" + }, + { + "slug": "snorna-prediction-software", + "name": "SnoRNA prediction software", + "url": "/v1/software/snorna-prediction-software" + }, + { + "slug": "snow", + "name": "Snow", + "url": "/v1/software/snow" + }, + { + "slug": "snowball-microcontroller-unit", + "name": "Snowball Microcontroller unit", + "url": "/v1/software/snowball-microcontroller-unit" + }, + { + "slug": "snowblind-studios-game-engine", + "name": "Snowblind Studios game engine", + "url": "/v1/software/snowblind-studios-game-engine" + }, + { + "slug": "snowflake", + "name": "Snowflake", + "url": "/v1/software/snowflake" + }, + { + "slug": "snowflake-inc", + "name": "Snowflake Inc.", + "url": "/v1/software/snowflake-inc" + }, + { + "slug": "soaplab", + "name": "Soaplab", + "url": "/v1/software/soaplab" + }, + { + "slug": "soar", + "name": "Soar", + "url": "/v1/software/soar" + }, + { + "slug": "sobekcm", + "name": "SobekCM", + "url": "/v1/software/sobekcm" + }, + { + "slug": "sobrr", + "name": "Sobrr", + "url": "/v1/software/sobrr" + }, + { + "slug": "sociahive", + "name": "SociaHive", + "url": "/v1/software/sociahive" + }, + { + "slug": "social-engineer-toolkit-set", + "name": "Social Engineer Toolkit (SET)", + "url": "/v1/software/social-engineer-toolkit-set" + }, + { + "slug": "social-feed-manager", + "name": "Social Feed Manager", + "url": "/v1/software/social-feed-manager" + }, + { + "slug": "socialcam", + "name": "Socialcam", + "url": "/v1/software/socialcam" + }, + { + "slug": "socrata-open-data-platform", + "name": "Socrata Open Data Platform", + "url": "/v1/software/socrata-open-data-platform" + }, + { + "slug": "socrates-ii", + "name": "Socrates II", + "url": "/v1/software/socrates-ii" + }, + { + "slug": "soda-pdf", + "name": "Soda PDF", + "url": "/v1/software/soda-pdf" + }, + { + "slug": "sofcheck-inspector", + "name": "SofCheck Inspector", + "url": "/v1/software/sofcheck-inspector" + }, + { + "slug": "soft-denchi", + "name": "Soft-Denchi", + "url": "/v1/software/soft-denchi" + }, + { + "slug": "softdent", + "name": "SoftDent", + "url": "/v1/software/softdent" + }, + { + "slug": "softmaker-office", + "name": "SoftMaker Office", + "url": "/v1/software/softmaker-office" + }, + { + "slug": "softpc", + "name": "SoftPC", + "url": "/v1/software/softpc" + }, + { + "slug": "softi", + "name": "Softi", + "url": "/v1/software/softi" + }, + { + "slug": "softline", + "name": "Softline", + "url": "/v1/software/softline" + }, + { + "slug": "software-automatic-mouth", + "name": "Software Automatic Mouth", + "url": "/v1/software/software-automatic-mouth" + }, + { + "slug": "software-defined-defence", + "name": "Software Defined Defence", + "url": "/v1/software/software-defined-defence" + }, + { + "slug": "software-testing-automation-framework", + "name": "Software Testing Automation Framework", + "url": "/v1/software/software-testing-automation-framework" + }, + { + "slug": "software-product-liability", + "name": "Software product liability", + "url": "/v1/software/software-product-liability" + }, + { + "slug": "softwarevalet", + "name": "SoftwareValet", + "url": "/v1/software/softwarevalet" + }, + { + "slug": "sogou-explorer", + "name": "Sogou Explorer", + "url": "/v1/software/sogou-explorer" + }, + { + "slug": "soikko", + "name": "Soikko", + "url": "/v1/software/soikko" + }, + { + "slug": "solbundler", + "name": "SolBundler", + "url": "/v1/software/solbundler" + }, + { + "slug": "solaris-porting-layer", + "name": "Solaris Porting Layer", + "url": "/v1/software/solaris-porting-layer" + }, + { + "slug": "solarsoft", + "name": "Solarsoft", + "url": "/v1/software/solarsoft" + }, + { + "slug": "solex", + "name": "Solex", + "url": "/v1/software/solex" + }, + { + "slug": "solid", + "name": "Solid", + "url": "/v1/software/solid" + }, + { + "slug": "solid-converter-pdf", + "name": "Solid Converter PDF", + "url": "/v1/software/solid-converter-pdf" + }, + { + "slug": "solid-pdf-creator", + "name": "Solid PDF Creator", + "url": "/v1/software/solid-pdf-creator" + }, + { + "slug": "solid-pdf-tools", + "name": "Solid PDF Tools", + "url": "/v1/software/solid-pdf-tools" + }, + { + "slug": "solsten-cre", + "name": "Solsten CRE", + "url": "/v1/software/solsten-cre" + }, + { + "slug": "solution-deployment-descriptor", + "name": "Solution Deployment Descriptor", + "url": "/v1/software/solution-deployment-descriptor" + }, + { + "slug": "solutionreach", + "name": "Solutionreach", + "url": "/v1/software/solutionreach" + }, + { + "slug": "solvi-barcode-labels", + "name": "Solvi Barcode Labels", + "url": "/v1/software/solvi-barcode-labels" + }, + { + "slug": "solvi-pick-lists", + "name": "Solvi Pick Lists", + "url": "/v1/software/solvi-pick-lists" + }, + { + "slug": "solvi-restock", + "name": "Solvi Restock", + "url": "/v1/software/solvi-restock" + }, + { + "slug": "sonal", + "name": "Sonal", + "url": "/v1/software/sonal" + }, + { + "slug": "sonata", + "name": "Sonata", + "url": "/v1/software/sonata" + }, + { + "slug": "sonatype-nexus-repository", + "name": "Sonatype Nexus Repository", + "url": "/v1/software/sonatype-nexus-repository" + }, + { + "slug": "songs2see", + "name": "Songs2See", + "url": "/v1/software/songs2see" + }, + { + "slug": "sonic-scenarist", + "name": "Sonic Scenarist", + "url": "/v1/software/sonic-scenarist" + }, + { + "slug": "sonicstage", + "name": "SonicStage", + "url": "/v1/software/sonicstage" + }, + { + "slug": "sonika", + "name": "Sonika", + "url": "/v1/software/sonika" + }, + { + "slug": "sonnetizer", + "name": "Sonnetizer", + "url": "/v1/software/sonnetizer" + }, + { + "slug": "sony-entertainment-network", + "name": "Sony Entertainment Network", + "url": "/v1/software/sony-entertainment-network" + }, + { + "slug": "sony-ericsson-pc-suite", + "name": "Sony Ericsson PC Suite", + "url": "/v1/software/sony-ericsson-pc-suite" + }, + { + "slug": "sony-pictures-core", + "name": "Sony Pictures Core", + "url": "/v1/software/sony-pictures-core" + }, + { + "slug": "sony-ziris", + "name": "Sony Ziris", + "url": "/v1/software/sony-ziris" + }, + { + "slug": "sopcast", + "name": "Sopcast", + "url": "/v1/software/sopcast" + }, + { + "slug": "soperion", + "name": "Soperion", + "url": "/v1/software/soperion" + }, + { + "slug": "sophie", + "name": "Sophie", + "url": "/v1/software/sophie" + }, + { + "slug": "sophocles", + "name": "Sophocles", + "url": "/v1/software/sophocles" + }, + { + "slug": "soroush-plus", + "name": "Soroush Plus", + "url": "/v1/software/soroush-plus" + }, + { + "slug": "sorso", + "name": "Sorso", + "url": "/v1/software/sorso" + }, + { + "slug": "sort-my-list", + "name": "Sort My List", + "url": "/v1/software/sort-my-list" + }, + { + "slug": "sortd", + "name": "Sortd", + "url": "/v1/software/sortd" + }, + { + "slug": "soulhacker", + "name": "Soulhacker", + "url": "/v1/software/soulhacker" + }, + { + "slug": "soulseek", + "name": "Soulseek", + "url": "/v1/software/soulseek" + }, + { + "slug": "sound-designer", + "name": "Sound Designer", + "url": "/v1/software/sound-designer" + }, + { + "slug": "sound-voltex-iii-gravity-wars-e-amusement-cloud", + "name": "Sound Voltex III: Gravity Wars e-Amusement Cloud", + "url": "/v1/software/sound-voltex-iii-gravity-wars-e-amusement-cloud" + }, + { + "slug": "soundapp", + "name": "SoundApp", + "url": "/v1/software/soundapp" + }, + { + "slug": "soundkonverter", + "name": "SoundKonverter", + "url": "/v1/software/soundkonverter" + }, + { + "slug": "soundscriber", + "name": "SoundScriber", + "url": "/v1/software/soundscriber" + }, + { + "slug": "soundbeam", + "name": "Soundbeam", + "url": "/v1/software/soundbeam" + }, + { + "slug": "soundcite", + "name": "Soundcite", + "url": "/v1/software/soundcite" + }, + { + "slug": "soundiiz", + "name": "Soundiiz", + "url": "/v1/software/soundiiz" + }, + { + "slug": "soundplant", + "name": "Soundplant", + "url": "/v1/software/soundplant" + }, + { + "slug": "soundslides", + "name": "Soundslides", + "url": "/v1/software/soundslides" + }, + { + "slug": "soundsphere", + "name": "Soundsphere", + "url": "/v1/software/soundsphere" + }, + { + "slug": "source-filmmaker", + "name": "Source Filmmaker", + "url": "/v1/software/source-filmmaker" + }, + { + "slug": "source-filmmaker-2", + "name": "Source Filmmaker 2", + "url": "/v1/software/source-filmmaker-2" + }, + { + "slug": "source-sdk", + "name": "Source SDK", + "url": "/v1/software/source-sdk" + }, + { + "slug": "source-connect", + "name": "Source-Connect", + "url": "/v1/software/source-connect" + }, + { + "slug": "sourceweb", + "name": "SourceWeb", + "url": "/v1/software/sourceweb" + }, + { + "slug": "sourcery", + "name": "Sourcery", + "url": "/v1/software/sourcery" + }, + { + "slug": "sourcetrail", + "name": "Sourcetrail", + "url": "/v1/software/sourcetrail" + }, + { + "slug": "spfft", + "name": "SpFFT", + "url": "/v1/software/spfft" + }, + { + "slug": "space-gremlin", + "name": "Space Gremlin", + "url": "/v1/software/space-gremlin" + }, + { + "slug": "space-telescope-science-data-analysis-system", + "name": "Space Telescope Science Data Analysis System", + "url": "/v1/software/space-telescope-science-data-analysis-system" + }, + { + "slug": "space-weather-modeling-framework", + "name": "Space Weather Modeling Framework", + "url": "/v1/software/space-weather-modeling-framework" + }, + { + "slug": "spacechart", + "name": "SpaceChart", + "url": "/v1/software/spacechart" + }, + { + "slug": "spacesniffer", + "name": "SpaceSniffer", + "url": "/v1/software/spacesniffer" + }, + { + "slug": "spacetime-q121095302", + "name": "SpaceTime", + "url": "/v1/software/spacetime-q121095302" + }, + { + "slug": "spacetime", + "name": "SpaceTime", + "url": "/v1/software/spacetime" + }, + { + "slug": "spacex-dragon-1", + "name": "SpaceX Dragon 1", + "url": "/v1/software/spacex-dragon-1" + }, + { + "slug": "spaces", + "name": "Spaces", + "url": "/v1/software/spaces" + }, + { + "slug": "spacetoon-go", + "name": "Spacetoon Go", + "url": "/v1/software/spacetoon-go" + }, + { + "slug": "spamfighter", + "name": "Spamfighter", + "url": "/v1/software/spamfighter" + }, + { + "slug": "spamihilator", + "name": "Spamihilator", + "url": "/v1/software/spamihilator" + }, + { + "slug": "spark-nlp", + "name": "Spark NLP", + "url": "/v1/software/spark-nlp" + }, + { + "slug": "spark-social", + "name": "Spark Social", + "url": "/v1/software/spark-social" + }, + { + "slug": "sparkle", + "name": "Sparkle", + "url": "/v1/software/sparkle" + }, + { + "slug": "sparksee", + "name": "Sparksee", + "url": "/v1/software/sparksee" + }, + { + "slug": "spatial-commander", + "name": "Spatial Commander", + "url": "/v1/software/spatial-commander" + }, + { + "slug": "spatial-modeling-environment", + "name": "Spatial Modeling Environment", + "url": "/v1/software/spatial-modeling-environment" + }, + { + "slug": "spatial-query-server", + "name": "Spatial Query Server", + "url": "/v1/software/spatial-query-server" + }, + { + "slug": "spatialnote", + "name": "SpatialNote", + "url": "/v1/software/spatialnote" + }, + { + "slug": "spec-explorer", + "name": "Spec Explorer", + "url": "/v1/software/spec-explorer" + }, + { + "slug": "specctra", + "name": "Specctra", + "url": "/v1/software/specctra" + }, + { + "slug": "specify", + "name": "Specify", + "url": "/v1/software/specify" + }, + { + "slug": "specify-collections-management-software", + "name": "Specify Collections Management Software", + "url": "/v1/software/specify-collections-management-software" + }, + { + "slug": "spectasia", + "name": "Spectasia", + "url": "/v1/software/spectasia" + }, + { + "slug": "specto", + "name": "Specto", + "url": "/v1/software/specto" + }, + { + "slug": "spectrum-512", + "name": "Spectrum 512", + "url": "/v1/software/spectrum-512" + }, + { + "slug": "speedfan", + "name": "SpeedFan", + "url": "/v1/software/speedfan" + }, + { + "slug": "speedify", + "name": "Speedify", + "url": "/v1/software/speedify" + }, + { + "slug": "speedlock", + "name": "Speedlock", + "url": "/v1/software/speedlock" + }, + { + "slug": "spejd", + "name": "Spejd", + "url": "/v1/software/spejd" + }, + { + "slug": "speko", + "name": "Speko", + "url": "/v1/software/speko" + }, + { + "slug": "spexo-addons", + "name": "Spexo Addons", + "url": "/v1/software/spexo-addons" + }, + { + "slug": "spider-project", + "name": "Spider Project", + "url": "/v1/software/spider-project" + }, + { + "slug": "spiking-mobile-app", + "name": "Spiking (mobile app)", + "url": "/v1/software/spiking-mobile-app" + }, + { + "slug": "spinrite", + "name": "SpinRite", + "url": "/v1/software/spinrite" + }, + { + "slug": "spinach", + "name": "Spinach", + "url": "/v1/software/spinach" + }, + { + "slug": "spinal-cord-toolbox", + "name": "Spinal Cord Toolbox", + "url": "/v1/software/spinal-cord-toolbox" + }, + { + "slug": "spinnaker", + "name": "Spinnaker", + "url": "/v1/software/spinnaker" + }, + { + "slug": "spire", + "name": "Spire", + "url": "/v1/software/spire" + }, + { + "slug": "splash", + "name": "Splash", + "url": "/v1/software/splash" + }, + { + "slug": "splashy", + "name": "Splashy", + "url": "/v1/software/splashy" + }, + { + "slug": "spleeter", + "name": "Spleeter", + "url": "/v1/software/spleeter" + }, + { + "slug": "splitstree", + "name": "SplitsTree", + "url": "/v1/software/splitstree" + }, + { + "slug": "spoiler-shield", + "name": "Spoiler Shield", + "url": "/v1/software/spoiler-shield" + }, + { + "slug": "spool", + "name": "Spool", + "url": "/v1/software/spool" + }, + { + "slug": "spoon", + "name": "Spoon", + "url": "/v1/software/spoon" + }, + { + "slug": "spoonwep-wpa", + "name": "SpoonWEP/WPA", + "url": "/v1/software/spoonwep-wpa" + }, + { + "slug": "sports-tracker", + "name": "Sports Tracker", + "url": "/v1/software/sports-tracker" + }, + { + "slug": "spotify-greenroom", + "name": "Spotify Greenroom", + "url": "/v1/software/spotify-greenroom" + }, + { + "slug": "spotnet", + "name": "Spotnet", + "url": "/v1/software/spotnet" + }, + { + "slug": "spotsetter", + "name": "Spotsetter", + "url": "/v1/software/spotsetter" + }, + { + "slug": "spread-q139254007", + "name": "Spread", + "url": "/v1/software/spread-q139254007" + }, + { + "slug": "spread-sheet-widget", + "name": "Spread Sheet Widget", + "url": "/v1/software/spread-sheet-widget" + }, + { + "slug": "spread-toolkit", + "name": "Spread Toolkit", + "url": "/v1/software/spread-toolkit" + }, + { + "slug": "spring-batch", + "name": "Spring Batch", + "url": "/v1/software/spring-batch" + }, + { + "slug": "spring-security", + "name": "Spring Security", + "url": "/v1/software/spring-security" + }, + { + "slug": "springboard", + "name": "SpringBoard", + "url": "/v1/software/springboard" + }, + { + "slug": "springpad", + "name": "Springpad", + "url": "/v1/software/springpad" + }, + { + "slug": "sprutcam", + "name": "SprutCAM", + "url": "/v1/software/sprutcam" + }, + { + "slug": "spry-framework", + "name": "Spry framework", + "url": "/v1/software/spry-framework" + }, + { + "slug": "sputnik", + "name": "Sputnik", + "url": "/v1/software/sputnik" + }, + { + "slug": "spy-sweeper", + "name": "Spy Sweeper", + "url": "/v1/software/spy-sweeper" + }, + { + "slug": "spybouncer", + "name": "SpyBouncer", + "url": "/v1/software/spybouncer" + }, + { + "slug": "spyhunter", + "name": "SpyHunter", + "url": "/v1/software/spyhunter" + }, + { + "slug": "spysubtract", + "name": "SpySubtract", + "url": "/v1/software/spysubtract" + }, + { + "slug": "spywareblaster", + "name": "SpywareBlaster", + "url": "/v1/software/spywareblaster" + }, + { + "slug": "spywareguard", + "name": "SpywareGuard", + "url": "/v1/software/spywareguard" + }, + { + "slug": "sqlstream", + "name": "Sqlstream", + "url": "/v1/software/sqlstream" + }, + { + "slug": "squash-autom", + "name": "Squash AUTOM", + "url": "/v1/software/squash-autom" + }, + { + "slug": "squash-devops", + "name": "Squash DEVOPS", + "url": "/v1/software/squash-devops" + }, + { + "slug": "squish-by-froglogic", + "name": "Squish by froglogic", + "url": "/v1/software/squish-by-froglogic" + }, + { + "slug": "ssdeep", + "name": "Ssdeep", + "url": "/v1/software/ssdeep" + }, + { + "slug": "sslsplit", + "name": "Sslsplit", + "url": "/v1/software/sslsplit" + }, + { + "slug": "stable-audio", + "name": "Stable Audio", + "url": "/v1/software/stable-audio" + }, + { + "slug": "stacheldraht-ddos", + "name": "Stacheldraht DDoS", + "url": "/v1/software/stacheldraht-ddos" + }, + { + "slug": "stacks", + "name": "Stacks", + "url": "/v1/software/stacks" + }, + { + "slug": "stakepoint", + "name": "StakePoint", + "url": "/v1/software/stakepoint" + }, + { + "slug": "stampit", + "name": "Stampit", + "url": "/v1/software/stampit" + }, + { + "slug": "standard-portable-intermediate-representation", + "name": "Standard Portable Intermediate Representation", + "url": "/v1/software/standard-portable-intermediate-representation" + }, + { + "slug": "stanford-hci-group-gigapixel", + "name": "Stanford HCI Group: Gigapixel", + "url": "/v1/software/stanford-hci-group-gigapixel" + }, + { + "slug": "stanford-hci-group-papertoolkit", + "name": "Stanford HCI Group: PaperToolkit", + "url": "/v1/software/stanford-hci-group-papertoolkit" + }, + { + "slug": "stanford-mobisocial-lab-muse", + "name": "Stanford Mobisocial Lab: Muse", + "url": "/v1/software/stanford-mobisocial-lab-muse" + }, + { + "slug": "stanford-nlp-group-classifier", + "name": "Stanford NLP Group: Classifier", + "url": "/v1/software/stanford-nlp-group-classifier" + }, + { + "slug": "stanford-nlp-group-corenlp", + "name": "Stanford NLP Group: CoreNLP", + "url": "/v1/software/stanford-nlp-group-corenlp" + }, + { + "slug": "stanford-nlp-group-stanford-parser", + "name": "Stanford NLP Group: Stanford Parser", + "url": "/v1/software/stanford-nlp-group-stanford-parser" + }, + { + "slug": "stanford-nlp-group-stanford-phrasal", + "name": "Stanford NLP Group: Stanford Phrasal", + "url": "/v1/software/stanford-nlp-group-stanford-phrasal" + }, + { + "slug": "stanford-nlp-group-stanford-tokenizer", + "name": "Stanford NLP Group: Stanford Tokenizer", + "url": "/v1/software/stanford-nlp-group-stanford-tokenizer" + }, + { + "slug": "stanford-sentiment-analysis", + "name": "Stanford Sentiment Analysis", + "url": "/v1/software/stanford-sentiment-analysis" + }, + { + "slug": "stanford-vis-group-data-wrangler", + "name": "Stanford Vis Group: Data Wrangler", + "url": "/v1/software/stanford-vis-group-data-wrangler" + }, + { + "slug": "stanford-vis-group-protovis", + "name": "Stanford Vis Group: Protovis", + "url": "/v1/software/stanford-vis-group-protovis" + }, + { + "slug": "star-ruby-software", + "name": "Star Ruby software", + "url": "/v1/software/star-ruby-software" + }, + { + "slug": "star-walk", + "name": "Star Walk", + "url": "/v1/software/star-walk" + }, + { + "slug": "star-wars-episode-i-insider-s-guide", + "name": "Star Wars Episode I: Insider's Guide", + "url": "/v1/software/star-wars-episode-i-insider-s-guide" + }, + { + "slug": "star-wars-screen-entertainment", + "name": "Star Wars Screen Entertainment", + "url": "/v1/software/star-wars-screen-entertainment" + }, + { + "slug": "starcraft-campaign-editor", + "name": "StarCraft campaign editor", + "url": "/v1/software/starcraft-campaign-editor" + }, + { + "slug": "stardraw", + "name": "StarDraw", + "url": "/v1/software/stardraw" + }, + { + "slug": "starcounter", + "name": "Starcounter", + "url": "/v1/software/starcounter" + }, + { + "slug": "stardock-central", + "name": "Stardock Central", + "url": "/v1/software/stardock-central" + }, + { + "slug": "stargaze", + "name": "Stargaze", + "url": "/v1/software/stargaze" + }, + { + "slug": "starlight-information-visualization-system", + "name": "Starlight Information Visualization System", + "url": "/v1/software/starlight-information-visualization-system" + }, + { + "slug": "starling", + "name": "Starling", + "url": "/v1/software/starling" + }, + { + "slug": "starlink-project", + "name": "Starlink Project", + "url": "/v1/software/starlink-project" + }, + { + "slug": "starry-night", + "name": "Starry Night", + "url": "/v1/software/starry-night" + }, + { + "slug": "starship-tycoon", + "name": "Starship Tycoon", + "url": "/v1/software/starship-tycoon" + }, + { + "slug": "stash", + "name": "Stash", + "url": "/v1/software/stash" + }, + { + "slug": "statcrunch", + "name": "StatCrunch", + "url": "/v1/software/statcrunch" + }, + { + "slug": "statpascal", + "name": "StatPascal", + "url": "/v1/software/statpascal" + }, + { + "slug": "statplus", + "name": "StatPlus", + "url": "/v1/software/statplus" + }, + { + "slug": "statview", + "name": "StatView", + "url": "/v1/software/statview" + }, + { + "slug": "statxact", + "name": "StatXact", + "url": "/v1/software/statxact" + }, + { + "slug": "statcheck", + "name": "Statcheck", + "url": "/v1/software/statcheck" + }, + { + "slug": "state", + "name": "State", + "url": "/v1/software/state" + }, + { + "slug": "statgraphics", + "name": "Statgraphics", + "url": "/v1/software/statgraphics" + }, + { + "slug": "statistical-lab", + "name": "Statistical Lab", + "url": "/v1/software/statistical-lab" + }, + { + "slug": "statmetrics", + "name": "Statmetrics", + "url": "/v1/software/statmetrics" + }, + { + "slug": "stats-app", + "name": "Stats (app)", + "url": "/v1/software/stats-app" + }, + { + "slug": "statsdirect", + "name": "StatsDirect", + "url": "/v1/software/statsdirect" + }, + { + "slug": "stattoo", + "name": "Stattoo", + "url": "/v1/software/stattoo" + }, + { + "slug": "statwing", + "name": "Statwing", + "url": "/v1/software/statwing" + }, + { + "slug": "steady", + "name": "Steady", + "url": "/v1/software/steady" + }, + { + "slug": "steadyprint", + "name": "SteadyPRINT", + "url": "/v1/software/steadyprint" + }, + { + "slug": "steam-chat", + "name": "Steam Chat", + "url": "/v1/software/steam-chat" + }, + { + "slug": "steam-explorers", + "name": "Steam Explorers", + "url": "/v1/software/steam-explorers" + }, + { + "slug": "steed", + "name": "Steed", + "url": "/v1/software/steed" + }, + { + "slug": "steel-bank-common-lisp", + "name": "Steel Bank Common Lisp", + "url": "/v1/software/steel-bank-common-lisp" + }, + { + "slug": "steeleye-lifekeeper", + "name": "SteelEye LifeKeeper", + "url": "/v1/software/steeleye-lifekeeper" + }, + { + "slug": "steelscript", + "name": "SteelScript", + "url": "/v1/software/steelscript" + }, + { + "slug": "steinberg-nuendo", + "name": "Steinberg Nuendo", + "url": "/v1/software/steinberg-nuendo" + }, + { + "slug": "stellar", + "name": "Stellar", + "url": "/v1/software/stellar" + }, + { + "slug": "stellar-phoenix-mac-data-recovery", + "name": "Stellar Phoenix Mac Data Recovery", + "url": "/v1/software/stellar-phoenix-mac-data-recovery" + }, + { + "slug": "stellar-phoenix-photo-recovery", + "name": "Stellar Phoenix Photo Recovery", + "url": "/v1/software/stellar-phoenix-photo-recovery" + }, + { + "slug": "stellar-phoenix-windows-data-recovery", + "name": "Stellar Phoenix Windows Data Recovery", + "url": "/v1/software/stellar-phoenix-windows-data-recovery" + }, + { + "slug": "stelrix", + "name": "Stelrix", + "url": "/v1/software/stelrix" + }, + { + "slug": "stemloc", + "name": "Stemloc", + "url": "/v1/software/stemloc" + }, + { + "slug": "stemming-and-lemmatization-using-nltk", + "name": "Stemming and Lemmatization using NLTK", + "url": "/v1/software/stemming-and-lemmatization-using-nltk" + }, + { + "slug": "stencil-code", + "name": "Stencil code", + "url": "/v1/software/stencil-code" + }, + { + "slug": "stencila", + "name": "Stencila", + "url": "/v1/software/stencila" + }, + { + "slug": "steptalk", + "name": "StepTalk", + "url": "/v1/software/steptalk" + }, + { + "slug": "stereofot", + "name": "StereoFot", + "url": "/v1/software/stereofot" + }, + { + "slug": "sterling", + "name": "Sterling", + "url": "/v1/software/sterling" + }, + { + "slug": "sticky-notes", + "name": "Sticky Notes", + "url": "/v1/software/sticky-notes" + }, + { + "slug": "stimulsoft", + "name": "Stimulsoft", + "url": "/v1/software/stimulsoft" + }, + { + "slug": "stoat", + "name": "Stoat", + "url": "/v1/software/stoat" + }, + { + "slug": "stochsd", + "name": "StochSD", + "url": "/v1/software/stochsd" + }, + { + "slug": "stocktake-online", + "name": "StockTake Online", + "url": "/v1/software/stocktake-online" + }, + { + "slug": "stone-giant", + "name": "Stone Giant", + "url": "/v1/software/stone-giant" + }, + { + "slug": "stop-motion-studio", + "name": "Stop Motion Studio", + "url": "/v1/software/stop-motion-studio" + }, + { + "slug": "stopping-and-range-of-ions-in-matter", + "name": "Stopping and Range of Ions in Matter", + "url": "/v1/software/stopping-and-range-of-ions-in-matter" + }, + { + "slug": "stoqui", + "name": "Stoqui", + "url": "/v1/software/stoqui" + }, + { + "slug": "storpool-storage", + "name": "StorPool Storage", + "url": "/v1/software/storpool-storage" + }, + { + "slug": "storage-home", + "name": "Storage@home", + "url": "/v1/software/storage-home" + }, + { + "slug": "storefront-audit", + "name": "Storefront Audit", + "url": "/v1/software/storefront-audit" + }, + { + "slug": "storm-codec", + "name": "Storm Codec", + "url": "/v1/software/storm-codec" + }, + { + "slug": "storm-player", + "name": "Storm Player", + "url": "/v1/software/storm-player" + }, + { + "slug": "storyboard-quick", + "name": "StoryBoard Quick", + "url": "/v1/software/storyboard-quick" + }, + { + "slug": "storybonsai", + "name": "StoryBonsai", + "url": "/v1/software/storybonsai" + }, + { + "slug": "storykit", + "name": "StoryKit", + "url": "/v1/software/storykit" + }, + { + "slug": "storymapjs", + "name": "StoryMapJS", + "url": "/v1/software/storymapjs" + }, + { + "slug": "strata-3d", + "name": "Strata 3D", + "url": "/v1/software/strata-3d" + }, + { + "slug": "stratavision-3d", + "name": "StrataVision 3D", + "url": "/v1/software/stratavision-3d" + }, + { + "slug": "stratify", + "name": "Stratify", + "url": "/v1/software/stratify" + }, + { + "slug": "stratos", + "name": "Stratos", + "url": "/v1/software/stratos" + }, + { + "slug": "stratum", + "name": "Stratum", + "url": "/v1/software/stratum" + }, + { + "slug": "strauss-sibelius-and-more-complete-parts-to-50-orchestral-masterworks-on-cd-rom", + "name": "Strauss, Sibelius, and More : Complete ... Parts to 50 Orchestral Masterworks on CD-ROM", + "url": "/v1/software/strauss-sibelius-and-more-complete-parts-to-50-orchestral-masterworks-on-cd-rom" + }, + { + "slug": "strawberry-q132717308", + "name": "Strawberry", + "url": "/v1/software/strawberry-q132717308" + }, + { + "slug": "strawberry", + "name": "Strawberry", + "url": "/v1/software/strawberry" + }, + { + "slug": "streamfab", + "name": "StreamFab", + "url": "/v1/software/streamfab" + }, + { + "slug": "streamer", + "name": "Streamer", + "url": "/v1/software/streamer" + }, + { + "slug": "streamlabs", + "name": "Streamlabs", + "url": "/v1/software/streamlabs" + }, + { + "slug": "streamtuner", + "name": "Streamtuner", + "url": "/v1/software/streamtuner" + }, + { + "slug": "street-finder", + "name": "Street Finder", + "url": "/v1/software/street-finder" + }, + { + "slug": "strelka", + "name": "Strelka", + "url": "/v1/software/strelka" + }, + { + "slug": "stress-reducers", + "name": "Stress Reducers", + "url": "/v1/software/stress-reducers" + }, + { + "slug": "stride", + "name": "Stride", + "url": "/v1/software/stride" + }, + { + "slug": "strikex", + "name": "StrikeX", + "url": "/v1/software/strikex" + }, + { + "slug": "strix", + "name": "Strix", + "url": "/v1/software/strix" + }, + { + "slug": "strixdb", + "name": "StrixDB", + "url": "/v1/software/strixdb" + }, + { + "slug": "structiq", + "name": "StructIQ", + "url": "/v1/software/structiq" + }, + { + "slug": "studentignite", + "name": "StudentIgnite", + "url": "/v1/software/studentignite" + }, + { + "slug": "studierfenster", + "name": "StudierFenster", + "url": "/v1/software/studierfenster" + }, + { + "slug": "studiomini", + "name": "StudioMini", + "url": "/v1/software/studiomini" + }, + { + "slug": "studiopartner", + "name": "StudioPartner", + "url": "/v1/software/studiopartner" + }, + { + "slug": "studybuddy", + "name": "StudyBuddy", + "url": "/v1/software/studybuddy" + }, + { + "slug": "studywiz", + "name": "Studywiz", + "url": "/v1/software/studywiz" + }, + { + "slug": "stuffit-expander", + "name": "StuffIt Expander", + "url": "/v1/software/stuffit-expander" + }, + { + "slug": "stump", + "name": "Stump", + "url": "/v1/software/stump" + }, + { + "slug": "stykz", + "name": "Stykz", + "url": "/v1/software/stykz" + }, + { + "slug": "stylecop", + "name": "StyleCop", + "url": "/v1/software/stylecop" + }, + { + "slug": "stylexp", + "name": "StyleXP", + "url": "/v1/software/stylexp" + }, + { + "slug": "stylingcv", + "name": "StylingCV", + "url": "/v1/software/stylingcv" + }, + { + "slug": "suanshu-numerical-library", + "name": "SuanShu numerical library", + "url": "/v1/software/suanshu-numerical-library" + }, + { + "slug": "sublime-merge", + "name": "Sublime Merge", + "url": "/v1/software/sublime-merge" + }, + { + "slug": "sublime-text", + "name": "Sublime Text", + "url": "/v1/software/sublime-text" + }, + { + "slug": "substance-designer", + "name": "Substance Designer", + "url": "/v1/software/substance-designer" + }, + { + "slug": "subtle", + "name": "Subtle", + "url": "/v1/software/subtle" + }, + { + "slug": "sucana", + "name": "Sucana", + "url": "/v1/software/sucana" + }, + { + "slug": "sugarsync", + "name": "SugarSync", + "url": "/v1/software/sugarsync" + }, + { + "slug": "sugarscape", + "name": "Sugarscape", + "url": "/v1/software/sugarscape" + }, + { + "slug": "suggested-upper-merged-ontology", + "name": "Suggested Upper Merged Ontology", + "url": "/v1/software/suggested-upper-merged-ontology" + }, + { + "slug": "suitesparse", + "name": "SuiteSparse", + "url": "/v1/software/suitesparse" + }, + { + "slug": "sumi", + "name": "Sumi", + "url": "/v1/software/sumi" + }, + { + "slug": "summon", + "name": "Summon", + "url": "/v1/software/summon" + }, + { + "slug": "sumo-paint", + "name": "Sumo Paint", + "url": "/v1/software/sumo-paint" + }, + { + "slug": "sun-diagram", + "name": "Sun Diagram", + "url": "/v1/software/sun-diagram" + }, + { + "slug": "sun-java-communications-suite", + "name": "Sun Java Communications Suite", + "url": "/v1/software/sun-java-communications-suite" + }, + { + "slug": "sun-java-studio-creator", + "name": "Sun Java Studio Creator", + "url": "/v1/software/sun-java-studio-creator" + }, + { + "slug": "sun-java-system-access-manager", + "name": "Sun Java System Access Manager", + "url": "/v1/software/sun-java-system-access-manager" + }, + { + "slug": "sun-java-system-web-proxy-server", + "name": "Sun Java System Web Proxy Server", + "url": "/v1/software/sun-java-system-web-proxy-server" + }, + { + "slug": "sun-java-wireless-toolkit", + "name": "Sun Java Wireless Toolkit", + "url": "/v1/software/sun-java-wireless-toolkit" + }, + { + "slug": "sunbelt-personal-firewall", + "name": "Sunbelt Personal Firewall", + "url": "/v1/software/sunbelt-personal-firewall" + }, + { + "slug": "sunflow", + "name": "Sunflow", + "url": "/v1/software/sunflow" + }, + { + "slug": "sunrise-calendar", + "name": "Sunrise Calendar", + "url": "/v1/software/sunrise-calendar" + }, + { + "slug": "super-cloudbuilt", + "name": "Super Cloudbuilt", + "url": "/v1/software/super-cloudbuilt" + }, + { + "slug": "super-flexible", + "name": "Super Flexible", + "url": "/v1/software/super-flexible" + }, + { + "slug": "super-pi", + "name": "Super PI", + "url": "/v1/software/super-pi" + }, + { + "slug": "super-productivity", + "name": "Super Productivity", + "url": "/v1/software/super-productivity" + }, + { + "slug": "superbbs", + "name": "SuperBBS", + "url": "/v1/software/superbbs" + }, + { + "slug": "superlu-dist", + "name": "SuperLU-DIST", + "url": "/v1/software/superlu-dist" + }, + { + "slug": "supermemo", + "name": "SuperMemo", + "url": "/v1/software/supermemo" + }, + { + "slug": "superbase-database", + "name": "Superbase database", + "url": "/v1/software/superbase-database" + }, + { + "slug": "supercell-wx", + "name": "Supercell Wx", + "url": "/v1/software/supercell-wx" + }, + { + "slug": "superfastmatch", + "name": "Superfastmatch", + "url": "/v1/software/superfastmatch" + }, + { + "slug": "superhighway84", + "name": "Superhighway84", + "url": "/v1/software/superhighway84" + }, + { + "slug": "superpowers", + "name": "Superpowers", + "url": "/v1/software/superpowers" + }, + { + "slug": "superscan", + "name": "Superscan", + "url": "/v1/software/superscan" + }, + { + "slug": "supportworks", + "name": "Supportworks", + "url": "/v1/software/supportworks" + }, + { + "slug": "supreme-beats-a-percussion-library-by-bashiri-johnson", + "name": "Supreme Beats : A Percussion Library by Bashiri Johnson", + "url": "/v1/software/supreme-beats-a-percussion-library-by-bashiri-johnson" + }, + { + "slug": "surface-evolver", + "name": "Surface Evolver", + "url": "/v1/software/surface-evolver" + }, + { + "slug": "surfshark", + "name": "Surfshark", + "url": "/v1/software/surfshark" + }, + { + "slug": "surgical-segment-navigator", + "name": "Surgical segment navigator", + "url": "/v1/software/surgical-segment-navigator" + }, + { + "slug": "surround-scm", + "name": "Surround SCM", + "url": "/v1/software/surround-scm" + }, + { + "slug": "survey-daddy", + "name": "Survey Daddy", + "url": "/v1/software/survey-daddy" + }, + { + "slug": "swapnote", + "name": "Swapnote", + "url": "/v1/software/swapnote" + }, + { + "slug": "swarachakra", + "name": "Swarachakra", + "url": "/v1/software/swarachakra" + }, + { + "slug": "sweet-ann", + "name": "Sweet Ann", + "url": "/v1/software/sweet-ann" + }, + { + "slug": "swell-radio", + "name": "Swell Radio", + "url": "/v1/software/swell-radio" + }, + { + "slug": "swellrt", + "name": "SwellRT", + "url": "/v1/software/swellrt" + }, + { + "slug": "swift-missive", + "name": "Swift Missive", + "url": "/v1/software/swift-missive" + }, + { + "slug": "swift-playgrounds", + "name": "Swift Playgrounds", + "url": "/v1/software/swift-playgrounds" + }, + { + "slug": "swiftcoin", + "name": "SwiftCoin", + "url": "/v1/software/swiftcoin" + }, + { + "slug": "swiftriver", + "name": "SwiftRiver", + "url": "/v1/software/swiftriver" + }, + { + "slug": "swiftweasel", + "name": "Swiftweasel", + "url": "/v1/software/swiftweasel" + }, + { + "slug": "swing-browser", + "name": "Swing Browser", + "url": "/v1/software/swing-browser" + }, + { + "slug": "swiss-model", + "name": "Swiss-model", + "url": "/v1/software/swiss-model" + }, + { + "slug": "swisstransfer", + "name": "SwissTransfer", + "url": "/v1/software/swisstransfer" + }, + { + "slug": "switch", + "name": "Switch", + "url": "/v1/software/switch" + }, + { + "slug": "swordfish-translation-editor", + "name": "Swordfish Translation Editor", + "url": "/v1/software/swordfish-translation-editor" + }, + { + "slug": "swvl", + "name": "Swvl", + "url": "/v1/software/swvl" + }, + { + "slug": "symenu", + "name": "SyMenu", + "url": "/v1/software/symenu" + }, + { + "slug": "symon-bootmanager", + "name": "SyMon Bootmanager", + "url": "/v1/software/symon-bootmanager" + }, + { + "slug": "sydium", + "name": "Sydium", + "url": "/v1/software/sydium" + }, + { + "slug": "sydle", + "name": "Sydle", + "url": "/v1/software/sydle" + }, + { + "slug": "sydney", + "name": "Sydney", + "url": "/v1/software/sydney" + }, + { + "slug": "sylenth1", + "name": "Sylenth1", + "url": "/v1/software/sylenth1" + }, + { + "slug": "sylvadb", + "name": "SylvaDB", + "url": "/v1/software/sylvadb" + }, + { + "slug": "syman", + "name": "Syman", + "url": "/v1/software/syman" + }, + { + "slug": "symantec-online-backup", + "name": "Symantec Online Backup", + "url": "/v1/software/symantec-online-backup" + }, + { + "slug": "symantec-operations-readiness-tools", + "name": "Symantec Operations Readiness Tools", + "url": "/v1/software/symantec-operations-readiness-tools" + }, + { + "slug": "symphonic-choirs", + "name": "Symphonic Choirs", + "url": "/v1/software/symphonic-choirs" + }, + { + "slug": "symphony-communication", + "name": "Symphony Communication", + "url": "/v1/software/symphony-communication" + }, + { + "slug": "synapsen", + "name": "Synapsen", + "url": "/v1/software/synapsen" + }, + { + "slug": "sync-in", + "name": "Sync.in", + "url": "/v1/software/sync-in" + }, + { + "slug": "syncback", + "name": "SyncBack", + "url": "/v1/software/syncback" + }, + { + "slug": "synctoy", + "name": "SyncToy", + "url": "/v1/software/synctoy" + }, + { + "slug": "syncdocs", + "name": "Syncdocs", + "url": "/v1/software/syncdocs" + }, + { + "slug": "synchronize-it", + "name": "Synchronize It", + "url": "/v1/software/synchronize-it" + }, + { + "slug": "synchronizer", + "name": "Synchronizer", + "url": "/v1/software/synchronizer" + }, + { + "slug": "syncios", + "name": "Syncios", + "url": "/v1/software/syncios" + }, + { + "slug": "syncplicity", + "name": "Syncplicity", + "url": "/v1/software/syncplicity" + }, + { + "slug": "synereo", + "name": "Synereo", + "url": "/v1/software/synereo" + }, + { + "slug": "synfiniway", + "name": "SynfiniWay", + "url": "/v1/software/synfiniway" + }, + { + "slug": "synteny-mapping-and-analysis-program", + "name": "Synteny Mapping and Analysis Program", + "url": "/v1/software/synteny-mapping-and-analysis-program" + }, + { + "slug": "synth1", + "name": "Synth1", + "url": "/v1/software/synth1" + }, + { + "slug": "synthmaster", + "name": "SynthMaster", + "url": "/v1/software/synthmaster" + }, + { + "slug": "synthesizer-v", + "name": "Synthesizer V", + "url": "/v1/software/synthesizer-v" + }, + { + "slug": "synthesizer-v-editor", + "name": "Synthesizer V Editor", + "url": "/v1/software/synthesizer-v-editor" + }, + { + "slug": "synthesys-ai-studio", + "name": "Synthesys AI Studio", + "url": "/v1/software/synthesys-ai-studio" + }, + { + "slug": "synthetic-organism-designer", + "name": "Synthetic Organism Designer", + "url": "/v1/software/synthetic-organism-designer" + }, + { + "slug": "syntropy", + "name": "Syntropy", + "url": "/v1/software/syntropy" + }, + { + "slug": "sys-com", + "name": "Sys.com", + "url": "/v1/software/sys-com" + }, + { + "slug": "syscp", + "name": "SysCP", + "url": "/v1/software/syscp" + }, + { + "slug": "sysmaster", + "name": "SysMaster", + "url": "/v1/software/sysmaster" + }, + { + "slug": "sysax-ftp-automation", + "name": "Sysax FTP Automation", + "url": "/v1/software/sysax-ftp-automation" + }, + { + "slug": "sysax-multi-server", + "name": "Sysax Multi Server", + "url": "/v1/software/sysax-multi-server" + }, + { + "slug": "sysinfo", + "name": "Sysinfo", + "url": "/v1/software/sysinfo" + }, + { + "slug": "sysquake", + "name": "Sysquake", + "url": "/v1/software/sysquake" + }, + { + "slug": "systancia", + "name": "Systancia", + "url": "/v1/software/systancia" + }, + { + "slug": "system-2000", + "name": "System 2000", + "url": "/v1/software/system-2000" + }, + { + "slug": "system-architect", + "name": "System Architect", + "url": "/v1/software/system-architect" + }, + { + "slug": "system-center-data-protection-manager", + "name": "System Center Data Protection Manager", + "url": "/v1/software/system-center-data-protection-manager" + }, + { + "slug": "system-center-essentials", + "name": "System Center Essentials", + "url": "/v1/software/system-center-essentials" + }, + { + "slug": "system-center-operations-manager", + "name": "System Center Operations Manager", + "url": "/v1/software/system-center-operations-manager" + }, + { + "slug": "system-center-service-manager", + "name": "System Center Service Manager", + "url": "/v1/software/system-center-service-manager" + }, + { + "slug": "system-center-virtual-machine-manager", + "name": "System Center Virtual Machine Manager", + "url": "/v1/software/system-center-virtual-machine-manager" + }, + { + "slug": "system-commander", + "name": "System Commander", + "url": "/v1/software/system-commander" + }, + { + "slug": "system-image-utility", + "name": "System Image Utility", + "url": "/v1/software/system-image-utility" + }, + { + "slug": "system-information", + "name": "System Information", + "url": "/v1/software/system-information" + }, + { + "slug": "system-integrity-protection", + "name": "System Integrity Protection", + "url": "/v1/software/system-integrity-protection" + }, + { + "slug": "system-manager", + "name": "System Manager", + "url": "/v1/software/system-manager" + }, + { + "slug": "system-picker", + "name": "System Picker", + "url": "/v1/software/system-picker" + }, + { + "slug": "system-policy-editor", + "name": "System Policy Editor", + "url": "/v1/software/system-policy-editor" + }, + { + "slug": "system-restore", + "name": "System Restore", + "url": "/v1/software/system-restore" + }, + { + "slug": "systemc", + "name": "SystemC", + "url": "/v1/software/systemc" + }, + { + "slug": "systems-tool-kit", + "name": "Systems Tool Kit", + "url": "/v1/software/systems-tool-kit" + }, + { + "slug": "systrace", + "name": "Systrace", + "url": "/v1/software/systrace" + }, + { + "slug": "t-app-folio", + "name": "T App Folio", + "url": "/v1/software/t-app-folio" + }, + { + "slug": "t-lab", + "name": "T-Lab", + "url": "/v1/software/t-lab" + }, + { + "slug": "t-mail", + "name": "T-Mail", + "url": "/v1/software/t-mail" + }, + { + "slug": "t-pen", + "name": "T-PEN", + "url": "/v1/software/t-pen" + }, + { + "slug": "t-rex", + "name": "T-REX", + "url": "/v1/software/t-rex" + }, + { + "slug": "t-square", + "name": "T-Square", + "url": "/v1/software/t-square" + }, + { + "slug": "t-a-p-text-analysis-program", + "name": "T.A.P (Text Analysis Program)", + "url": "/v1/software/t-a-p-text-analysis-program" + }, + { + "slug": "t-maker", + "name": "T/Maker", + "url": "/v1/software/t-maker" + }, + { + "slug": "tact-text-analysis-computing-tools", + "name": "TACT (Text Analysis Computing Tools)", + "url": "/v1/software/tact-text-analysis-computing-tools" + }, + { + "slug": "tactweb-1-0", + "name": "TACTweb 1.0", + "url": "/v1/software/tactweb-1-0" + }, + { + "slug": "tapaal-model-checker", + "name": "TAPAAL Model Checker", + "url": "/v1/software/tapaal-model-checker" + }, + { + "slug": "tardis", + "name": "TARDIS", + "url": "/v1/software/tardis" + }, + { + "slug": "tasma", + "name": "TASMA", + "url": "/v1/software/tasma" + }, + { + "slug": "tatoo-issco-tagger-tool", + "name": "TATOO (ISSCO Tagger Tool)", + "url": "/v1/software/tatoo-issco-tagger-tool" + }, + { + "slug": "tazman", + "name": "TAZMAN", + "url": "/v1/software/tazman" + }, + { + "slug": "tbil", + "name": "TBIL", + "url": "/v1/software/tbil" + }, + { + "slug": "tcpaccess", + "name": "TCPaccess", + "url": "/v1/software/tcpaccess" + }, + { + "slug": "tcs-bancs", + "name": "TCS BaNCS", + "url": "/v1/software/tcs-bancs" + }, + { + "slug": "tdb", + "name": "TDB", + "url": "/v1/software/tdb" + }, + { + "slug": "te-ordinative-lora", + "name": "TE Ordinative LoRA", + "url": "/v1/software/te-ordinative-lora" + }, + { + "slug": "tei-boilerplate", + "name": "TEI Boilerplate", + "url": "/v1/software/tei-boilerplate" + }, + { + "slug": "teicorpo", + "name": "TEICORPO", + "url": "/v1/software/teicorpo" + }, + { + "slug": "telemac", + "name": "TELEMAC", + "url": "/v1/software/telemac" + }, + { + "slug": "textan", + "name": "TEXTAN", + "url": "/v1/software/textan" + }, + { + "slug": "textcord", + "name": "TEXTCORD", + "url": "/v1/software/textcord" + }, + { + "slug": "textpack-v", + "name": "TEXTPACK V", + "url": "/v1/software/textpack-v" + }, + { + "slug": "the-nooj-kiswahili-module", + "name": "THE NooJ KISWAHILI MODULE", + "url": "/v1/software/the-nooj-kiswahili-module" + }, + { + "slug": "ti-interactive", + "name": "TI InterActive!", + "url": "/v1/software/ti-interactive" + }, + { + "slug": "ti-starterware", + "name": "TI StarterWare", + "url": "/v1/software/ti-starterware" + }, + { + "slug": "tibco-hawk", + "name": "TIBCO Hawk", + "url": "/v1/software/tibco-hawk" + }, + { + "slug": "tibco-spotfire-analytics", + "name": "TIBCO Spotfire Analytics", + "url": "/v1/software/tibco-spotfire-analytics" + }, + { + "slug": "tila-app", + "name": "TILA App", + "url": "/v1/software/tila-app" + }, + { + "slug": "tile-text-image-linking-environment", + "name": "TILE (Text Image Linking Environment)", + "url": "/v1/software/tile-text-image-linking-environment" + }, + { + "slug": "timenavigator", + "name": "TIMEnavigator", + "url": "/v1/software/timenavigator" + }, + { + "slug": "tina", + "name": "TINA", + "url": "/v1/software/tina" + }, + { + "slug": "titan2d", + "name": "TITAN2D", + "url": "/v1/software/titan2d" + }, + { + "slug": "tk-solver", + "name": "TK Solver", + "url": "/v1/software/tk-solver" + }, + { + "slug": "tltk", + "name": "TLTK", + "url": "/v1/software/tltk" + }, + { + "slug": "tm-align", + "name": "TM-align", + "url": "/v1/software/tm-align" + }, + { + "slug": "tmetric", + "name": "TMetric", + "url": "/v1/software/tmetric" + }, + { + "slug": "tn3270-plus", + "name": "TN3270 Plus", + "url": "/v1/software/tn3270-plus" + }, + { + "slug": "tntmips", + "name": "TNTmips", + "url": "/v1/software/tntmips" + }, + { + "slug": "topcat", + "name": "TOPCAT", + "url": "/v1/software/topcat" + }, + { + "slug": "topic", + "name": "TOPIC", + "url": "/v1/software/topic" + }, + { + "slug": "tosca", + "name": "TOSCA", + "url": "/v1/software/tosca" + }, + { + "slug": "tourcast", + "name": "TOURCast", + "url": "/v1/software/tourcast" + }, + { + "slug": "tpl-tables", + "name": "TPL Tables", + "url": "/v1/software/tpl-tables" + }, + { + "slug": "tpt", + "name": "TPT", + "url": "/v1/software/tpt" + }, + { + "slug": "trace", + "name": "TRACE", + "url": "/v1/software/trace" + }, + { + "slug": "tramo", + "name": "TRAMO", + "url": "/v1/software/tramo" + }, + { + "slug": "transyt-7f", + "name": "TRANSYT-7F", + "url": "/v1/software/transyt-7f" + }, + { + "slug": "trau", + "name": "TRAU", + "url": "/v1/software/trau" + }, + { + "slug": "traverse", + "name": "TRAVERSE", + "url": "/v1/software/traverse" + }, + { + "slug": "travesty", + "name": "TRAVESTY", + "url": "/v1/software/travesty" + }, + { + "slug": "traviz", + "name": "TRAViz", + "url": "/v1/software/traviz" + }, + { + "slug": "tricon", + "name": "TRICON", + "url": "/v1/software/tricon" + }, + { + "slug": "trip-database", + "name": "TRIP Database", + "url": "/v1/software/trip-database" + }, + { + "slug": "tsp", + "name": "TSP", + "url": "/v1/software/tsp" + }, + { + "slug": "tscript", + "name": "TScript", + "url": "/v1/software/tscript" + }, + { + "slug": "tsheets", + "name": "TSheets", + "url": "/v1/software/tsheets" + }, + { + "slug": "ttm-57-sl", + "name": "TTM 57 SL", + "url": "/v1/software/ttm-57-sl" + }, + { + "slug": "ttpod", + "name": "TTPOD", + "url": "/v1/software/ttpod" + }, + { + "slug": "tu-me", + "name": "TU Me", + "url": "/v1/software/tu-me" + }, + { + "slug": "tuio", + "name": "TUIO", + "url": "/v1/software/tuio" + }, + { + "slug": "tuio-online-administrators-support-system", + "name": "TUIO Online Administrators Support System", + "url": "/v1/software/tuio-online-administrators-support-system" + }, + { + "slug": "tuio-online-fundraising-platform-for-schools", + "name": "TUIO Online Fundraising Platform For Schools", + "url": "/v1/software/tuio-online-fundraising-platform-for-schools" + }, + { + "slug": "tuio-online-parent-support-system", + "name": "TUIO Online Parent Support System", + "url": "/v1/software/tuio-online-parent-support-system" + }, + { + "slug": "tuio-online-tuition-management", + "name": "TUIO Online Tuition Management", + "url": "/v1/software/tuio-online-tuition-management" + }, + { + "slug": "tuio-student-enrollment-management-system", + "name": "TUIO Student Enrollment Management System", + "url": "/v1/software/tuio-student-enrollment-management-system" + }, + { + "slug": "tuio-student-information-system", + "name": "TUIO Student Information System", + "url": "/v1/software/tuio-student-information-system" + }, + { + "slug": "tume", + "name": "TUME", + "url": "/v1/software/tume" + }, + { + "slug": "tunis", + "name": "TUNIS", + "url": "/v1/software/tunis" + }, + { + "slug": "tustep", + "name": "TUSTEP", + "url": "/v1/software/tustep" + }, + { + "slug": "tv-no-tomo-channel", + "name": "TV no Tomo Channel", + "url": "/v1/software/tv-no-tomo-channel" + }, + { + "slug": "tvants", + "name": "TVants", + "url": "/v1/software/tvants" + }, + { + "slug": "tver", + "name": "TVer", + "url": "/v1/software/tver" + }, + { + "slug": "tversity-media-server", + "name": "TVersity Media Server", + "url": "/v1/software/tversity-media-server" + }, + { + "slug": "txm", + "name": "TXM", + "url": "/v1/software/txm" + }, + { + "slug": "tabpfn", + "name": "TabPFN", + "url": "/v1/software/tabpfn" + }, + { + "slug": "tabworks", + "name": "TabWorks", + "url": "/v1/software/tabworks" + }, + { + "slug": "tabbles", + "name": "Tabbles", + "url": "/v1/software/tabbles" + }, + { + "slug": "tabello", + "name": "Tabello", + "url": "/v1/software/tabello" + }, + { + "slug": "table-2-net", + "name": "Table 2 Net", + "url": "/v1/software/table-2-net" + }, + { + "slug": "table-producing-language", + "name": "Table Producing Language", + "url": "/v1/software/table-producing-language" + }, + { + "slug": "tablecurve-2d", + "name": "TableCurve 2D", + "url": "/v1/software/tablecurve-2d" + }, + { + "slug": "tablecurve-3d", + "name": "TableCurve 3D", + "url": "/v1/software/tablecurve-3d" + }, + { + "slug": "tableport", + "name": "TablePort", + "url": "/v1/software/tableport" + }, + { + "slug": "tablee", + "name": "Tablee", + "url": "/v1/software/tablee" + }, + { + "slug": "tachiyomi", + "name": "Tachiyomi", + "url": "/v1/software/tachiyomi" + }, + { + "slug": "tachyon", + "name": "Tachyon", + "url": "/v1/software/tachyon" + }, + { + "slug": "tactical-nav", + "name": "Tactical NAV", + "url": "/v1/software/tactical-nav" + }, + { + "slug": "tacx-training-desktop-app", + "name": "Tacx Training Desktop App", + "url": "/v1/software/tacx-training-desktop-app" + }, + { + "slug": "tagclouder", + "name": "TagClouder", + "url": "/v1/software/tagclouder" + }, + { + "slug": "tagcrowd", + "name": "TagCrowd", + "url": "/v1/software/tagcrowd" + }, + { + "slug": "taglab", + "name": "TagLab", + "url": "/v1/software/taglab" + }, + { + "slug": "tagaini-jisho", + "name": "Tagaini Jisho", + "url": "/v1/software/tagaini-jisho" + }, + { + "slug": "tagnetiq", + "name": "TagnetIQ", + "url": "/v1/software/tagnetiq" + }, + { + "slug": "taguette", + "name": "Taguette", + "url": "/v1/software/taguette" + }, + { + "slug": "take-command", + "name": "Take Command", + "url": "/v1/software/take-command" + }, + { + "slug": "take-command-console", + "name": "Take Command Console", + "url": "/v1/software/take-command-console" + }, + { + "slug": "talehunt", + "name": "Talehunt", + "url": "/v1/software/talehunt" + }, + { + "slug": "talend-open-studio-for-data-integration", + "name": "Talend Open Studio for Data Integration", + "url": "/v1/software/talend-open-studio-for-data-integration" + }, + { + "slug": "talent-one-atlas", + "name": "Talent One Atlas", + "url": "/v1/software/talent-one-atlas" + }, + { + "slug": "tales-of-monkey-island-chapter-2-the-siege-of-spinner-cay", + "name": "Tales of Monkey Island: Chapter 2 - The Siege of Spinner Cay", + "url": "/v1/software/tales-of-monkey-island-chapter-2-the-siege-of-spinner-cay" + }, + { + "slug": "tales-of-monkey-island-the-trial-and-execution-of-guybrush-threepwood", + "name": "Tales of Monkey Island: The Trial and Execution of Guybrush Threepwood", + "url": "/v1/software/tales-of-monkey-island-the-trial-and-execution-of-guybrush-threepwood" + }, + { + "slug": "talk-it", + "name": "Talk It!", + "url": "/v1/software/talk-it" + }, + { + "slug": "talkbox-voice-messenger", + "name": "TalkBox Voice Messenger", + "url": "/v1/software/talkbox-voice-messenger" + }, + { + "slug": "talktalk-tv-store", + "name": "TalkTalk TV Store", + "url": "/v1/software/talktalk-tv-store" + }, + { + "slug": "talkbits", + "name": "Talkbits", + "url": "/v1/software/talkbits" + }, + { + "slug": "talking-moose", + "name": "Talking Moose", + "url": "/v1/software/talking-moose" + }, + { + "slug": "talkomatic", + "name": "Talkomatic", + "url": "/v1/software/talkomatic" + }, + { + "slug": "tally-up", + "name": "Tally Up", + "url": "/v1/software/tally-up" + }, + { + "slug": "tally-erp-9", + "name": "Tally.ERP 9", + "url": "/v1/software/tally-erp-9" + }, + { + "slug": "tallyprime", + "name": "TallyPrime", + "url": "/v1/software/tallyprime" + }, + { + "slug": "tamsys", + "name": "TamSys", + "url": "/v1/software/tamsys" + }, + { + "slug": "tamtam", + "name": "TamTam", + "url": "/v1/software/tamtam" + }, + { + "slug": "tamarin-prover", + "name": "Tamarin Prover", + "url": "/v1/software/tamarin-prover" + }, + { + "slug": "tame-it", + "name": "Tame.it", + "url": "/v1/software/tame-it" + }, + { + "slug": "tamea", + "name": "Tamea", + "url": "/v1/software/tamea" + }, + { + "slug": "tamograph-site-survey", + "name": "TamoGraph Site Survey", + "url": "/v1/software/tamograph-site-survey" + }, + { + "slug": "tanagra", + "name": "Tanagra", + "url": "/v1/software/tanagra" + }, + { + "slug": "tanaguru", + "name": "Tanaguru", + "url": "/v1/software/tanaguru" + }, + { + "slug": "tandberg-movi", + "name": "Tandberg Movi", + "url": "/v1/software/tandberg-movi" + }, + { + "slug": "tangle", + "name": "Tangle", + "url": "/v1/software/tangle" + }, + { + "slug": "tango", + "name": "Tango", + "url": "/v1/software/tango" + }, + { + "slug": "tango-desktop-project", + "name": "Tango Desktop Project", + "url": "/v1/software/tango-desktop-project" + }, + { + "slug": "tango-live", + "name": "Tango Live", + "url": "/v1/software/tango-live" + }, + { + "slug": "tao-framework", + "name": "Tao Framework", + "url": "/v1/software/tao-framework" + }, + { + "slug": "tapatalk", + "name": "Tapatalk", + "url": "/v1/software/tapatalk" + }, + { + "slug": "tapestry", + "name": "Tapestry", + "url": "/v1/software/tapestry" + }, + { + "slug": "targetlink", + "name": "TargetLink", + "url": "/v1/software/targetlink" + }, + { + "slug": "tariff-monitor", + "name": "Tariff Monitor", + "url": "/v1/software/tariff-monitor" + }, + { + "slug": "tartiflette", + "name": "Tartiflette", + "url": "/v1/software/tartiflette" + }, + { + "slug": "task-manager", + "name": "Task Manager", + "url": "/v1/software/task-manager" + }, + { + "slug": "taskcracker-for-outlook", + "name": "TaskCracker for Outlook", + "url": "/v1/software/taskcracker-for-outlook" + }, + { + "slug": "taskmax", + "name": "TaskMAX", + "url": "/v1/software/taskmax" + }, + { + "slug": "tasmota", + "name": "Tasmota", + "url": "/v1/software/tasmota" + }, + { + "slug": "taverna", + "name": "TaveRNA", + "url": "/v1/software/taverna" + }, + { + "slug": "tawkers", + "name": "Tawkers", + "url": "/v1/software/tawkers" + }, + { + "slug": "tawkon", + "name": "Tawkon", + "url": "/v1/software/tawkon" + }, + { + "slug": "tax-heaven-3000", + "name": "Tax Heaven 3000", + "url": "/v1/software/tax-heaven-3000" + }, + { + "slug": "tax-calculation-system", + "name": "Tax calculation system", + "url": "/v1/software/tax-calculation-system" + }, + { + "slug": "taxact", + "name": "TaxACT", + "url": "/v1/software/taxact" + }, + { + "slug": "taxcloud", + "name": "TaxCloud", + "url": "/v1/software/taxcloud" + }, + { + "slug": "taxottic", + "name": "Taxottic", + "url": "/v1/software/taxottic" + }, + { + "slug": "tcov", + "name": "Tcov", + "url": "/v1/software/tcov" + }, + { + "slug": "texml", + "name": "TeXML", + "url": "/v1/software/texml" + }, + { + "slug": "teach2000", + "name": "Teach2000", + "url": "/v1/software/teach2000" + }, + { + "slug": "teachaids", + "name": "TeachAIDS", + "url": "/v1/software/teachaids" + }, + { + "slug": "teachtech", + "name": "TeachTech", + "url": "/v1/software/teachtech" + }, + { + "slug": "team-foundation-server", + "name": "Team Foundation Server", + "url": "/v1/software/team-foundation-server" + }, + { + "slug": "teamhiiv", + "name": "TeamHiiv", + "url": "/v1/software/teamhiiv" + }, + { + "slug": "teamnote", + "name": "TeamNote", + "url": "/v1/software/teamnote" + }, + { + "slug": "teamsense-inc", + "name": "TeamSense Inc", + "url": "/v1/software/teamsense-inc" + }, + { + "slug": "teamtalk", + "name": "TeamTalk", + "url": "/v1/software/teamtalk" + }, + { + "slug": "teamwox", + "name": "TeamWox", + "url": "/v1/software/teamwox" + }, + { + "slug": "teamcenter", + "name": "Teamcenter", + "url": "/v1/software/teamcenter" + }, + { + "slug": "teashark", + "name": "Teashark", + "url": "/v1/software/teashark" + }, + { + "slug": "teaspiller", + "name": "Teaspiller", + "url": "/v1/software/teaspiller" + }, + { + "slug": "techexcel-servicewise", + "name": "TechExcel ServiceWise", + "url": "/v1/software/techexcel-servicewise" + }, + { + "slug": "techwriter", + "name": "TechWriter", + "url": "/v1/software/techwriter" + }, + { + "slug": "techila-grid", + "name": "Techila Grid", + "url": "/v1/software/techila-grid" + }, + { + "slug": "techinline", + "name": "Techinline", + "url": "/v1/software/techinline" + }, + { + "slug": "techlog", + "name": "Techlog", + "url": "/v1/software/techlog" + }, + { + "slug": "technical-information-project", + "name": "Technical Information Project", + "url": "/v1/software/technical-information-project" + }, + { + "slug": "tecplot", + "name": "Tecplot", + "url": "/v1/software/tecplot" + }, + { + "slug": "tectonic", + "name": "Tectonic", + "url": "/v1/software/tectonic" + }, + { + "slug": "teechart", + "name": "Teechart", + "url": "/v1/software/teechart" + }, + { + "slug": "teia-geo-igo", + "name": "Teia GEO IGO", + "url": "/v1/software/teia-geo-igo" + }, + { + "slug": "teknap", + "name": "TekNap", + "url": "/v1/software/teknap" + }, + { + "slug": "tektrak", + "name": "TekTrak", + "url": "/v1/software/tektrak" + }, + { + "slug": "tekla-structures", + "name": "Tekla Structures", + "url": "/v1/software/tekla-structures" + }, + { + "slug": "teko", + "name": "Teko", + "url": "/v1/software/teko" + }, + { + "slug": "teleform", + "name": "TeleForm", + "url": "/v1/software/teleform" + }, + { + "slug": "telegard", + "name": "Telegard", + "url": "/v1/software/telegard" + }, + { + "slug": "telegram-signal-copier", + "name": "Telegram Signal Copier", + "url": "/v1/software/telegram-signal-copier" + }, + { + "slug": "telehash", + "name": "Telehash", + "url": "/v1/software/telehash" + }, + { + "slug": "telex", + "name": "Telex", + "url": "/v1/software/telex" + }, + { + "slug": "tellstar", + "name": "TellStar", + "url": "/v1/software/tellstar" + }, + { + "slug": "tellent", + "name": "Tellent", + "url": "/v1/software/tellent" + }, + { + "slug": "temp-file-cleaner", + "name": "Temp File Cleaner", + "url": "/v1/software/temp-file-cleaner" + }, + { + "slug": "temp-mail", + "name": "Temp Mail", + "url": "/v1/software/temp-mail" + }, + { + "slug": "templated", + "name": "Templated", + "url": "/v1/software/templated" + }, + { + "slug": "tempo", + "name": "Tempo", + "url": "/v1/software/tempo" + }, + { + "slug": "tempus-editor", + "name": "Tempus-Editor", + "url": "/v1/software/tempus-editor" + }, + { + "slug": "tempus-word", + "name": "Tempus-Word", + "url": "/v1/software/tempus-word" + }, + { + "slug": "tenfourfox", + "name": "TenFourFox", + "url": "/v1/software/tenfourfox" + }, + { + "slug": "tencent-cloud-palmai", + "name": "Tencent Cloud PalmAI", + "url": "/v1/software/tencent-cloud-palmai" + }, + { + "slug": "tencent-computer-manager", + "name": "Tencent Computer Manager", + "url": "/v1/software/tencent-computer-manager" + }, + { + "slug": "tencent-messenger", + "name": "Tencent Messenger", + "url": "/v1/software/tencent-messenger" + }, + { + "slug": "tend", + "name": "Tend", + "url": "/v1/software/tend" + }, + { + "slug": "tenems", + "name": "Tenems", + "url": "/v1/software/tenems" + }, + { + "slug": "tenet-ai", + "name": "Tenet AI", + "url": "/v1/software/tenet-ai" + }, + { + "slug": "tensistrength", + "name": "TensiStrength", + "url": "/v1/software/tensistrength" + }, + { + "slug": "teopad", + "name": "Teopad", + "url": "/v1/software/teopad" + }, + { + "slug": "teracopy", + "name": "TeraCopy", + "url": "/v1/software/teracopy" + }, + { + "slug": "teratext", + "name": "TeraText", + "url": "/v1/software/teratext" + }, + { + "slug": "teradata-geospatial", + "name": "Teradata Geospatial", + "url": "/v1/software/teradata-geospatial" + }, + { + "slug": "teradata-warehouse-miner", + "name": "Teradata Warehouse Miner", + "url": "/v1/software/teradata-warehouse-miner" + }, + { + "slug": "termcap", + "name": "Termcap", + "url": "/v1/software/termcap" + }, + { + "slug": "terminal-productivity-executive", + "name": "Terminal Productivity Executive", + "url": "/v1/software/terminal-productivity-executive" + }, + { + "slug": "terminate", + "name": "Terminate", + "url": "/v1/software/terminate" + }, + { + "slug": "ternfs", + "name": "TernFS", + "url": "/v1/software/ternfs" + }, + { + "slug": "terrset", + "name": "TerrSet", + "url": "/v1/software/terrset" + }, + { + "slug": "terrame", + "name": "TerraME", + "url": "/v1/software/terrame" + }, + { + "slug": "terraview", + "name": "TerraView", + "url": "/v1/software/terraview" + }, + { + "slug": "terrafly", + "name": "Terrafly", + "url": "/v1/software/terrafly" + }, + { + "slug": "terrier-search-engine", + "name": "Terrier Search Engine", + "url": "/v1/software/terrier-search-engine" + }, + { + "slug": "tesseract", + "name": "Tesseract", + "url": "/v1/software/tesseract" + }, + { + "slug": "tesserae", + "name": "Tesserae", + "url": "/v1/software/tesserae" + }, + { + "slug": "tessitura", + "name": "Tessitura", + "url": "/v1/software/tessitura" + }, + { + "slug": "tessy", + "name": "Tessy", + "url": "/v1/software/tessy" + }, + { + "slug": "test-studio", + "name": "Test Studio", + "url": "/v1/software/test-studio" + }, + { + "slug": "test-and-training-enabling-architecture", + "name": "Test and Training Enabling Architecture", + "url": "/v1/software/test-and-training-enabling-architecture" + }, + { + "slug": "test-driver", + "name": "Test driver", + "url": "/v1/software/test-driver" + }, + { + "slug": "testflight", + "name": "TestFlight", + "url": "/v1/software/testflight" + }, + { + "slug": "testpartner", + "name": "TestPartner", + "url": "/v1/software/testpartner" + }, + { + "slug": "teststand", + "name": "TestStand", + "url": "/v1/software/teststand" + }, + { + "slug": "testyd", + "name": "Testyd", + "url": "/v1/software/testyd" + }, + { + "slug": "teuxdeux", + "name": "TeuxDeux", + "url": "/v1/software/teuxdeux" + }, + { + "slug": "text", + "name": "Text", + "url": "/v1/software/text" + }, + { + "slug": "text-2-mind-map", + "name": "Text 2 Mind Map", + "url": "/v1/software/text-2-mind-map" + }, + { + "slug": "text-analysis-online", + "name": "Text Analysis Online", + "url": "/v1/software/text-analysis-online" + }, + { + "slug": "text-analyzer", + "name": "Text Analyzer", + "url": "/v1/software/text-analyzer" + }, + { + "slug": "text-fixer", + "name": "Text Fixer", + "url": "/v1/software/text-fixer" + }, + { + "slug": "text-variation-explorer-tve", + "name": "Text Variation Explorer (TVE)", + "url": "/v1/software/text-variation-explorer-tve" + }, + { + "slug": "text-verification-tool", + "name": "Text Verification Tool", + "url": "/v1/software/text-verification-tool" + }, + { + "slug": "text-mining-minion", + "name": "Text mining minion", + "url": "/v1/software/text-mining-minion" + }, + { + "slug": "text2ddc", + "name": "Text2DDC", + "url": "/v1/software/text2ddc" + }, + { + "slug": "textaloud", + "name": "TextAloud", + "url": "/v1/software/textaloud" + }, + { + "slug": "textanalyst", + "name": "TextAnalyst", + "url": "/v1/software/textanalyst" + }, + { + "slug": "textannotator", + "name": "TextAnnotator", + "url": "/v1/software/textannotator" + }, + { + "slug": "textarc", + "name": "TextArc", + "url": "/v1/software/textarc" + }, + { + "slug": "textdna-q126084629", + "name": "TextDNA", + "url": "/v1/software/textdna-q126084629" + }, + { + "slug": "textexpander", + "name": "TextExpander", + "url": "/v1/software/textexpander" + }, + { + "slug": "textgrid-repository-laboratory", + "name": "TextGrid Repository & Laboratory", + "url": "/v1/software/textgrid-repository-laboratory" + }, + { + "slug": "textimager", + "name": "TextImager", + "url": "/v1/software/textimager" + }, + { + "slug": "textquest", + "name": "TextQuest", + "url": "/v1/software/textquest" + }, + { + "slug": "textstat-q126087743", + "name": "TextSTAT", + "url": "/v1/software/textstat-q126087743" + }, + { + "slug": "texttree", + "name": "TextTree", + "url": "/v1/software/texttree" + }, + { + "slug": "textable", + "name": "Textable", + "url": "/v1/software/textable" + }, + { + "slug": "textal", + "name": "Textal", + "url": "/v1/software/textal" + }, + { + "slug": "textalyser", + "name": "Textalyser", + "url": "/v1/software/textalyser" + }, + { + "slug": "textecution", + "name": "Textecution", + "url": "/v1/software/textecution" + }, + { + "slug": "textexture", + "name": "Textexture", + "url": "/v1/software/textexture" + }, + { + "slug": "textflo", + "name": "Textflo", + "url": "/v1/software/textflo" + }, + { + "slug": "textometrica", + "name": "Textometrica", + "url": "/v1/software/textometrica" + }, + { + "slug": "textpresso-q126084641", + "name": "Textpresso", + "url": "/v1/software/textpresso-q126084641" + }, + { + "slug": "textpresso", + "name": "Textpresso", + "url": "/v1/software/textpresso" + }, + { + "slug": "textual-communities", + "name": "Textual Communities", + "url": "/v1/software/textual-communities" + }, + { + "slug": "textual-geography-analyzer", + "name": "Textual Geography Analyzer", + "url": "/v1/software/textual-geography-analyzer" + }, + { + "slug": "texture-maker", + "name": "Texture Maker", + "url": "/v1/software/texture-maker" + }, + { + "slug": "thxchat", + "name": "ThXChat", + "url": "/v1/software/thxchat" + }, + { + "slug": "thaibulksms", + "name": "ThaiBulkSMS", + "url": "/v1/software/thaibulksms" + }, + { + "slug": "thales", + "name": "Thales", + "url": "/v1/software/thales" + }, + { + "slug": "the-1995-grolier-multimedia-encyclopedia", + "name": "The 1995 Grolier Multimedia Encyclopedia", + "url": "/v1/software/the-1995-grolier-multimedia-encyclopedia" + }, + { + "slug": "the-1995-guinness-multimedia-disc-of-records", + "name": "The 1995 Guinness Multimedia Disc of Records", + "url": "/v1/software/the-1995-guinness-multimedia-disc-of-records" + }, + { + "slug": "the-1995-1996-nfl-interactive-yearbook", + "name": "The 1995/1996 NFL Interactive Yearbook", + "url": "/v1/software/the-1995-1996-nfl-interactive-yearbook" + }, + { + "slug": "the-3d-gamemaker", + "name": "The 3D Gamemaker", + "url": "/v1/software/the-3d-gamemaker" + }, + { + "slug": "the-accelrys-enterprise-platform", + "name": "The Accelrys Enterprise Platform", + "url": "/v1/software/the-accelrys-enterprise-platform" + }, + { + "slug": "the-adventure-pals", + "name": "The Adventure Pals", + "url": "/v1/software/the-adventure-pals" + }, + { + "slug": "the-all-seeing-eye", + "name": "The All-Seeing Eye", + "url": "/v1/software/the-all-seeing-eye" + }, + { + "slug": "the-animation-studio", + "name": "The Animation Studio", + "url": "/v1/software/the-animation-studio" + }, + { + "slug": "the-change-lab", + "name": "The Change Lab", + "url": "/v1/software/the-change-lab" + }, + { + "slug": "the-chicago-homer", + "name": "The Chicago Homer", + "url": "/v1/software/the-chicago-homer" + }, + { + "slug": "the-drive-ai", + "name": "The Drive AI", + "url": "/v1/software/the-drive-ai" + }, + { + "slug": "the-dude", + "name": "The Dude", + "url": "/v1/software/the-dude" + }, + { + "slug": "the-eclipse-integrated-computational-environment", + "name": "The Eclipse Integrated Computational Environment", + "url": "/v1/software/the-eclipse-integrated-computational-environment" + }, + { + "slug": "the-elder-scrolls-construction-set", + "name": "The Elder Scrolls Construction Set", + "url": "/v1/software/the-elder-scrolls-construction-set" + }, + { + "slug": "the-ethnograph", + "name": "The Ethnograph", + "url": "/v1/software/the-ethnograph" + }, + { + "slug": "the-field-linguist-s-toolbox", + "name": "The Field Linguist’s Toolbox", + "url": "/v1/software/the-field-linguist-s-toolbox" + }, + { + "slug": "the-geochemist-s-workbench", + "name": "The Geochemist's Workbench", + "url": "/v1/software/the-geochemist-s-workbench" + }, + { + "slug": "the-great-reading-adventure", + "name": "The Great Reading Adventure", + "url": "/v1/software/the-great-reading-adventure" + }, + { + "slug": "the-hat-man-shadow-ward", + "name": "The Hat Man: Shadow Ward", + "url": "/v1/software/the-hat-man-shadow-ward" + }, + { + "slug": "the-last-one", + "name": "The Last One", + "url": "/v1/software/the-last-one" + }, + { + "slug": "the-librarian", + "name": "The Librarian", + "url": "/v1/software/the-librarian" + }, + { + "slug": "the-linkup", + "name": "The Linkup", + "url": "/v1/software/the-linkup" + }, + { + "slug": "the-macro-etymological-analyzer", + "name": "The Macro-Etymological Analyzer", + "url": "/v1/software/the-macro-etymological-analyzer" + }, + { + "slug": "the-major-bbs", + "name": "The Major BBS", + "url": "/v1/software/the-major-bbs" + }, + { + "slug": "the-marvellous-miss-take", + "name": "The Marvellous Miss Take", + "url": "/v1/software/the-marvellous-miss-take" + }, + { + "slug": "the-networked-corpus", + "name": "The Networked Corpus", + "url": "/v1/software/the-networked-corpus" + }, + { + "slug": "the-note-processor", + "name": "The Note Processor", + "url": "/v1/software/the-note-processor" + }, + { + "slug": "the-old-city-leviathan", + "name": "The Old City: Leviathan", + "url": "/v1/software/the-old-city-leviathan" + }, + { + "slug": "the-open-network", + "name": "The Open Network", + "url": "/v1/software/the-open-network" + }, + { + "slug": "the-orchestra", + "name": "The Orchestra", + "url": "/v1/software/the-orchestra" + }, + { + "slug": "the-outliner-of-giants", + "name": "The Outliner of Giants", + "url": "/v1/software/the-outliner-of-giants" + }, + { + "slug": "the-palace", + "name": "The Palace", + "url": "/v1/software/the-palace" + }, + { + "slug": "the-pope-app", + "name": "The Pope App", + "url": "/v1/software/the-pope-app" + }, + { + "slug": "the-print-shop", + "name": "The Print Shop", + "url": "/v1/software/the-print-shop" + }, + { + "slug": "the-print-shop-premier-edition", + "name": "The Print Shop Premier Edition", + "url": "/v1/software/the-print-shop-premier-edition" + }, + { + "slug": "the-proteolysis-map", + "name": "The Proteolysis Map", + "url": "/v1/software/the-proteolysis-map" + }, + { + "slug": "the-rossio-vocabularies", + "name": "The ROSSIO vocabularies", + "url": "/v1/software/the-rossio-vocabularies" + }, + { + "slug": "the-right-stuff", + "name": "The Right Stuff", + "url": "/v1/software/the-right-stuff" + }, + { + "slug": "the-scandroid-1-1", + "name": "The Scandroid 1.1", + "url": "/v1/software/the-scandroid-1-1" + }, + { + "slug": "the-summit-open-source-development-group", + "name": "The Summit Open Source Development Group", + "url": "/v1/software/the-summit-open-source-development-group" + }, + { + "slug": "the-uniform-server", + "name": "The Uniform Server", + "url": "/v1/software/the-uniform-server" + }, + { + "slug": "the-unscrambler", + "name": "The Unscrambler", + "url": "/v1/software/the-unscrambler" + }, + { + "slug": "the-world-browser", + "name": "The World Browser", + "url": "/v1/software/the-world-browser" + }, + { + "slug": "the-world-of-robert-burns", + "name": "The World of Robert Burns", + "url": "/v1/software/the-world-of-robert-burns" + }, + { + "slug": "thebrain", + "name": "TheBrain", + "url": "/v1/software/thebrain" + }, + { + "slug": "thesky", + "name": "TheSky", + "url": "/v1/software/thesky" + }, + { + "slug": "theunfollower", + "name": "TheUnfollower", + "url": "/v1/software/theunfollower" + }, + { + "slug": "theia", + "name": "Theia", + "url": "/v1/software/theia" + }, + { + "slug": "themas-thesaurus-management-system", + "name": "Themas - Thesaurus Management System", + "url": "/v1/software/themas-thesaurus-management-system" + }, + { + "slug": "themeswitcher-pro", + "name": "ThemeSwitcher Pro", + "url": "/v1/software/themeswitcher-pro" + }, + { + "slug": "thermorawfileparser", + "name": "ThermoRawFileParser", + "url": "/v1/software/thermorawfileparser" + }, + { + "slug": "thinlinc", + "name": "ThinLinc", + "url": "/v1/software/thinlinc" + }, + { + "slug": "things-3", + "name": "Things 3", + "url": "/v1/software/things-3" + }, + { + "slug": "things-3-macos", + "name": "Things 3 (macOS)", + "url": "/v1/software/things-3-macos" + }, + { + "slug": "thinkoffice", + "name": "ThinkOffice", + "url": "/v1/software/thinkoffice" + }, + { + "slug": "thinkvantage-technologies", + "name": "ThinkVantage Technologies", + "url": "/v1/software/thinkvantage-technologies" + }, + { + "slug": "thinkfree-office", + "name": "Thinkfree Office", + "url": "/v1/software/thinkfree-office" + }, + { + "slug": "thinkport-annotator", + "name": "Thinkport Annotator", + "url": "/v1/software/thinkport-annotator" + }, + { + "slug": "third-voice", + "name": "Third Voice", + "url": "/v1/software/third-voice" + }, + { + "slug": "thiruvananthapuram-city-police-mobile-app", + "name": "Thiruvananthapuram City Police Mobile App", + "url": "/v1/software/thiruvananthapuram-city-police-mobile-app" + }, + { + "slug": "thomson-reuters-messenger", + "name": "Thomson Reuters Messenger", + "url": "/v1/software/thomson-reuters-messenger" + }, + { + "slug": "thor", + "name": "Thor", + "url": "/v1/software/thor" + }, + { + "slug": "thorium-reader", + "name": "Thorium Reader", + "url": "/v1/software/thorium-reader" + }, + { + "slug": "thorsten", + "name": "Thorsten", + "url": "/v1/software/thorsten" + }, + { + "slug": "threadsafe", + "name": "ThreadSafe", + "url": "/v1/software/threadsafe" + }, + { + "slug": "threatmodeler", + "name": "ThreatModeler", + "url": "/v1/software/threatmodeler" + }, + { + "slug": "three20", + "name": "Three20", + "url": "/v1/software/three20" + }, + { + "slug": "thumbor", + "name": "Thumbor", + "url": "/v1/software/thumbor" + }, + { + "slug": "thumbsplus", + "name": "ThumbsPlus", + "url": "/v1/software/thumbsplus" + }, + { + "slug": "thunder", + "name": "Thunder", + "url": "/v1/software/thunder" + }, + { + "slug": "thunderhawk", + "name": "ThunderHawk", + "url": "/v1/software/thunderhawk" + }, + { + "slug": "tianamo", + "name": "Tianamo", + "url": "/v1/software/tianamo" + }, + { + "slug": "tick", + "name": "Tick", + "url": "/v1/software/tick" + }, + { + "slug": "tickit", + "name": "TickIT", + "url": "/v1/software/tickit" + }, + { + "slug": "tictok", + "name": "Tictok", + "url": "/v1/software/tictok" + }, + { + "slug": "tigase", + "name": "Tigase", + "url": "/v1/software/tigase" + }, + { + "slug": "tigertext", + "name": "TigerText", + "url": "/v1/software/tigertext" + }, + { + "slug": "tigerstripe", + "name": "Tigerstripe", + "url": "/v1/software/tigerstripe" + }, + { + "slug": "tiktapdown", + "name": "TikTapDown", + "url": "/v1/software/tiktapdown" + }, + { + "slug": "tiklist", + "name": "Tiklist", + "url": "/v1/software/tiklist" + }, + { + "slug": "tilemill", + "name": "TileMill", + "url": "/v1/software/tilemill" + }, + { + "slug": "tilt-brush", + "name": "Tilt Brush", + "url": "/v1/software/tilt-brush" + }, + { + "slug": "timberwolf", + "name": "Timberwolf", + "url": "/v1/software/timberwolf" + }, + { + "slug": "timbuktu", + "name": "Timbuktu", + "url": "/v1/software/timbuktu" + }, + { + "slug": "time-doctor", + "name": "Time Doctor", + "url": "/v1/software/time-doctor" + }, + { + "slug": "time-matters", + "name": "Time Matters", + "url": "/v1/software/time-matters" + }, + { + "slug": "time-bomb", + "name": "Time bomb", + "url": "/v1/software/time-bomb" + }, + { + "slug": "timebridge", + "name": "TimeBridge", + "url": "/v1/software/timebridge" + }, + { + "slug": "timeclock-plus", + "name": "TimeClock Plus", + "url": "/v1/software/timeclock-plus" + }, + { + "slug": "timeglider", + "name": "TimeGlider", + "url": "/v1/software/timeglider" + }, + { + "slug": "timelinecurator", + "name": "TimeLineCurator", + "url": "/v1/software/timelinecurator" + }, + { + "slug": "timemapper", + "name": "TimeMapper", + "url": "/v1/software/timemapper" + }, + { + "slug": "timerime", + "name": "TimeRime", + "url": "/v1/software/timerime" + }, + { + "slug": "timetiger", + "name": "TimeTiger", + "url": "/v1/software/timetiger" + }, + { + "slug": "timetracker-lx", + "name": "TimeTracker/LX", + "url": "/v1/software/timetracker-lx" + }, + { + "slug": "timetree", + "name": "TimeTree", + "url": "/v1/software/timetree" + }, + { + "slug": "timeflow", + "name": "Timeflow", + "url": "/v1/software/timeflow" + }, + { + "slug": "timefold", + "name": "Timefold", + "url": "/v1/software/timefold" + }, + { + "slug": "timeline-js", + "name": "Timeline JS", + "url": "/v1/software/timeline-js" + }, + { + "slug": "timeliner", + "name": "Timeliner", + "url": "/v1/software/timeliner" + }, + { + "slug": "timeworks-publisher", + "name": "Timeworks Publisher", + "url": "/v1/software/timeworks-publisher" + }, + { + "slug": "tinderbox", + "name": "Tinderbox", + "url": "/v1/software/tinderbox" + }, + { + "slug": "tinidrop", + "name": "TiniDrop", + "url": "/v1/software/tinidrop" + }, + { + "slug": "tinker", + "name": "Tinker", + "url": "/v1/software/tinker" + }, + { + "slug": "tinkertool", + "name": "TinkerTool", + "url": "/v1/software/tinkertool" + }, + { + "slug": "tinkertool-classic", + "name": "TinkerTool: Classic", + "url": "/v1/software/tinkertool-classic" + }, + { + "slug": "tinlib", + "name": "Tinlib", + "url": "/v1/software/tinlib" + }, + { + "slug": "tintin-in-tibet", + "name": "Tintin in Tibet", + "url": "/v1/software/tintin-in-tibet" + }, + { + "slug": "tiny11", + "name": "Tiny11", + "url": "/v1/software/tiny11" + }, + { + "slug": "tinyfugue", + "name": "TinyFugue", + "url": "/v1/software/tinyfugue" + }, + { + "slug": "tinyvpn", + "name": "TinyVPN", + "url": "/v1/software/tinyvpn" + }, + { + "slug": "tipcam", + "name": "TipCam", + "url": "/v1/software/tipcam" + }, + { + "slug": "titan", + "name": "Titan", + "url": "/v1/software/titan" + }, + { + "slug": "titan-ftp-server", + "name": "Titan FTP Server", + "url": "/v1/software/titan-ftp-server" + }, + { + "slug": "titan-security-key", + "name": "Titan Security Key", + "url": "/v1/software/titan-security-key" + }, + { + "slug": "tivoli-management-framework", + "name": "Tivoli Management Framework", + "url": "/v1/software/tivoli-management-framework" + }, + { + "slug": "tivoli-service-automation-manager", + "name": "Tivoli Service Automation Manager", + "url": "/v1/software/tivoli-service-automation-manager" + }, + { + "slug": "tivoli-software", + "name": "Tivoli Software", + "url": "/v1/software/tivoli-software" + }, + { + "slug": "tlen-pl", + "name": "Tlen.pl", + "url": "/v1/software/tlen-pl" + }, + { + "slug": "tlooto", + "name": "Tlooto", + "url": "/v1/software/tlooto" + }, + { + "slug": "tmax-wapl", + "name": "Tmax WAPL", + "url": "/v1/software/tmax-wapl" + }, + { + "slug": "tnt-trigrams-n-tags", + "name": "TnT (Trigrams'n'Tags)", + "url": "/v1/software/tnt-trigrams-n-tags" + }, + { + "slug": "tntdrive", + "name": "TntDrive", + "url": "/v1/software/tntdrive" + }, + { + "slug": "totok", + "name": "ToTok", + "url": "/v1/software/totok" + }, + { + "slug": "toad-data-modeler", + "name": "Toad Data Modeler", + "url": "/v1/software/toad-data-modeler" + }, + { + "slug": "toaster", + "name": "Toaster", + "url": "/v1/software/toaster" + }, + { + "slug": "tofu", + "name": "Tofu", + "url": "/v1/software/tofu" + }, + { + "slug": "toggl-track", + "name": "Toggl Track", + "url": "/v1/software/toggl-track" + }, + { + "slug": "tokenx", + "name": "TokenX", + "url": "/v1/software/tokenx" + }, + { + "slug": "tokenization-using-nltk", + "name": "Tokenization using NLTK", + "url": "/v1/software/tokenization-using-nltk" + }, + { + "slug": "toledo-nanochess", + "name": "Toledo Nanochess", + "url": "/v1/software/toledo-nanochess" + }, + { + "slug": "tom-sawyer-perspectives", + "name": "Tom Sawyer Perspectives", + "url": "/v1/software/tom-sawyer-perspectives" + }, + { + "slug": "tom-s-planner", + "name": "Tom's Planner", + "url": "/v1/software/tom-s-planner" + }, + { + "slug": "tomp2p", + "name": "TomP2P", + "url": "/v1/software/tomp2p" + }, + { + "slug": "tomtom-amigo", + "name": "TomTom AmiGO", + "url": "/v1/software/tomtom-amigo" + }, + { + "slug": "tomboy-latex", + "name": "Tomboy-LaTeX", + "url": "/v1/software/tomboy-latex" + }, + { + "slug": "tombstone-1882", + "name": "Tombstone 1882", + "url": "/v1/software/tombstone-1882" + }, + { + "slug": "tomoe", + "name": "Tomoe", + "url": "/v1/software/tomoe" + }, + { + "slug": "tone-rion", + "name": "Tone Rion", + "url": "/v1/software/tone-rion" + }, + { + "slug": "toneloc", + "name": "ToneLoc", + "url": "/v1/software/toneloc" + }, + { + "slug": "tonido", + "name": "Tonido", + "url": "/v1/software/tonido" + }, + { + "slug": "tonio", + "name": "Tonio", + "url": "/v1/software/tonio" + }, + { + "slug": "tonka-workshop-playset", + "name": "Tonka Workshop Playset", + "url": "/v1/software/tonka-workshop-playset" + }, + { + "slug": "toolbox", + "name": "Toolbox", + "url": "/v1/software/toolbox" + }, + { + "slug": "tools-project", + "name": "Tools Project", + "url": "/v1/software/tools-project" + }, + { + "slug": "topfind", + "name": "TopFIND", + "url": "/v1/software/topfind" + }, + { + "slug": "topstyle", + "name": "TopStyle", + "url": "/v1/software/topstyle" + }, + { + "slug": "topxnotes", + "name": "TopXNotes", + "url": "/v1/software/topxnotes" + }, + { + "slug": "topaz-denoise-ai", + "name": "Topaz DeNoise AI", + "url": "/v1/software/topaz-denoise-ai" + }, + { + "slug": "topic-modeling-tool", + "name": "Topic Modeling Tool", + "url": "/v1/software/topic-modeling-tool" + }, + { + "slug": "topic-modelling-tool", + "name": "Topic Modelling Tool", + "url": "/v1/software/topic-modelling-tool" + }, + { + "slug": "topofusion", + "name": "TopoFusion", + "url": "/v1/software/topofusion" + }, + { + "slug": "topomapper", + "name": "Topomapper", + "url": "/v1/software/topomapper" + }, + { + "slug": "torch", + "name": "Torch", + "url": "/v1/software/torch" + }, + { + "slug": "torrents-time", + "name": "Torrents-Time", + "url": "/v1/software/torrents-time" + }, + { + "slug": "tosmana", + "name": "Tosmana", + "url": "/v1/software/tosmana" + }, + { + "slug": "total-extreme-wrestling-2005", + "name": "Total Extreme Wrestling 2005", + "url": "/v1/software/total-extreme-wrestling-2005" + }, + { + "slug": "touchcopy", + "name": "TouchCopy", + "url": "/v1/software/touchcopy" + }, + { + "slug": "touchgraph-seo-browser", + "name": "TouchGraph SEO Browser", + "url": "/v1/software/touchgraph-seo-browser" + }, + { + "slug": "touchmail-q17048698", + "name": "TouchMail", + "url": "/v1/software/touchmail-q17048698" + }, + { + "slug": "touchosc", + "name": "TouchOSC", + "url": "/v1/software/touchosc" + }, + { + "slug": "touchwiz", + "name": "TouchWiz", + "url": "/v1/software/touchwiz" + }, + { + "slug": "touchmail", + "name": "Touchmail", + "url": "/v1/software/touchmail" + }, + { + "slug": "toutenclic", + "name": "ToutEnClic", + "url": "/v1/software/toutenclic" + }, + { + "slug": "towit", + "name": "TowIt", + "url": "/v1/software/towit" + }, + { + "slug": "tower-wars", + "name": "Tower Wars", + "url": "/v1/software/tower-wars" + }, + { + "slug": "toxicity-estimation-software-tool", + "name": "Toxicity Estimation Software Tool", + "url": "/v1/software/toxicity-estimation-software-tool" + }, + { + "slug": "trid", + "name": "TrID", + "url": "/v1/software/trid" + }, + { + "slug": "trabi-racer", + "name": "Trabi Racer", + "url": "/v1/software/trabi-racer" + }, + { + "slug": "trace-mode", + "name": "Trace mode", + "url": "/v1/software/trace-mode" + }, + { + "slug": "tracepro", + "name": "TracePro", + "url": "/v1/software/tracepro" + }, + { + "slug": "tracery", + "name": "Tracery", + "url": "/v1/software/tracery" + }, + { + "slug": "trackstudio", + "name": "TrackStudio", + "url": "/v1/software/trackstudio" + }, + { + "slug": "trackabi", + "name": "Trackabi", + "url": "/v1/software/trackabi" + }, + { + "slug": "trackbuster", + "name": "Trackbuster", + "url": "/v1/software/trackbuster" + }, + { + "slug": "tracker", + "name": "Tracker", + "url": "/v1/software/tracker" + }, + { + "slug": "tracktion-waveform", + "name": "Tracktion Waveform", + "url": "/v1/software/tracktion-waveform" + }, + { + "slug": "tradelect", + "name": "TradElect", + "url": "/v1/software/tradelect" + }, + { + "slug": "tradechecx", + "name": "TradeChecx", + "url": "/v1/software/tradechecx" + }, + { + "slug": "tradelogic", + "name": "TradeLogic", + "url": "/v1/software/tradelogic" + }, + { + "slug": "tradestation", + "name": "TradeStation", + "url": "/v1/software/tradestation" + }, + { + "slug": "trademetria", + "name": "Trademetria", + "url": "/v1/software/trademetria" + }, + { + "slug": "tradingview", + "name": "TradingView", + "url": "/v1/software/tradingview" + }, + { + "slug": "trados-studio", + "name": "Trados Studio", + "url": "/v1/software/trados-studio" + }, + { + "slug": "trae-ide", + "name": "Trae (IDE)", + "url": "/v1/software/trae-ide" + }, + { + "slug": "trafficure", + "name": "TraffiCure", + "url": "/v1/software/trafficure" + }, + { + "slug": "traffy-fondue", + "name": "Traffy Fondue", + "url": "/v1/software/traffy-fondue" + }, + { + "slug": "trailfire", + "name": "Trailfire", + "url": "/v1/software/trailfire" + }, + { + "slug": "trakgene", + "name": "TrakGene", + "url": "/v1/software/trakgene" + }, + { + "slug": "transadf", + "name": "TransADF", + "url": "/v1/software/transadf" + }, + { + "slug": "transmodeler", + "name": "TransModeler", + "url": "/v1/software/transmodeler" + }, + { + "slug": "transocean-the-shipping-company", + "name": "TransOcean: The Shipping Company", + "url": "/v1/software/transocean-the-shipping-company" + }, + { + "slug": "transaction-software-gmbh", + "name": "Transaction Software GmbH", + "url": "/v1/software/transaction-software-gmbh" + }, + { + "slug": "transana", + "name": "Transana", + "url": "/v1/software/transana" + }, + { + "slug": "transcribe", + "name": "Transcribe", + "url": "/v1/software/transcribe" + }, + { + "slug": "transcriberag", + "name": "TranscriberAG", + "url": "/v1/software/transcriberag" + }, + { + "slug": "transcriva", + "name": "Transcriva", + "url": "/v1/software/transcriva" + }, + { + "slug": "transept", + "name": "Transept", + "url": "/v1/software/transept" + }, + { + "slug": "transkribus", + "name": "Transkribus", + "url": "/v1/software/transkribus" + }, + { + "slug": "translatecad", + "name": "TranslateCAD", + "url": "/v1/software/translatecad" + }, + { + "slug": "transparent-language", + "name": "Transparent Language", + "url": "/v1/software/transparent-language" + }, + { + "slug": "transparent-language-online", + "name": "Transparent Language Online", + "url": "/v1/software/transparent-language-online" + }, + { + "slug": "transport-protocol-abstraction", + "name": "Transport/protocol abstraction", + "url": "/v1/software/transport-protocol-abstraction" + }, + { + "slug": "transportation-economic-development-impact-system", + "name": "Transportation Economic Development Impact System", + "url": "/v1/software/transportation-economic-development-impact-system" + }, + { + "slug": "transterpreter", + "name": "Transterpreter", + "url": "/v1/software/transterpreter" + }, + { + "slug": "trapeze", + "name": "Trapeze", + "url": "/v1/software/trapeze" + }, + { + "slug": "trashbox-ru", + "name": "Trashbox.ru", + "url": "/v1/software/trashbox-ru" + }, + { + "slug": "traveljournal-companion", + "name": "TravelJournal Companion", + "url": "/v1/software/traveljournal-companion" + }, + { + "slug": "traveltime-maps", + "name": "TravelTime Maps", + "url": "/v1/software/traveltime-maps" + }, + { + "slug": "travis-listener", + "name": "Travis-Listener", + "url": "/v1/software/travis-listener" + }, + { + "slug": "trax", + "name": "Trax", + "url": "/v1/software/trax" + }, + { + "slug": "treatwell-connect", + "name": "Treatwell Connect", + "url": "/v1/software/treatwell-connect" + }, + { + "slug": "tree-puzzle", + "name": "Tree puzzle", + "url": "/v1/software/tree-puzzle" + }, + { + "slug": "tree-sitter", + "name": "Tree-sitter", + "url": "/v1/software/tree-sitter" + }, + { + "slug": "treetagger", + "name": "TreeTagger", + "url": "/v1/software/treetagger" + }, + { + "slug": "treefinder", + "name": "Treefinder", + "url": "/v1/software/treefinder" + }, + { + "slug": "trell", + "name": "Trell", + "url": "/v1/software/trell" + }, + { + "slug": "trendminer", + "name": "TrendMiner", + "url": "/v1/software/trendminer" + }, + { + "slug": "trendalyzer", + "name": "Trendalyzer", + "url": "/v1/software/trendalyzer" + }, + { + "slug": "trendio-com", + "name": "Trendio.com", + "url": "/v1/software/trendio-com" + }, + { + "slug": "tribe-flood-network", + "name": "Tribe Flood Network", + "url": "/v1/software/tribe-flood-network" + }, + { + "slug": "tricentis-tosca", + "name": "Tricentis Tosca", + "url": "/v1/software/tricentis-tosca" + }, + { + "slug": "trigml", + "name": "TrigML", + "url": "/v1/software/trigml" + }, + { + "slug": "trimble-3d-warehouse", + "name": "Trimble 3D Warehouse", + "url": "/v1/software/trimble-3d-warehouse" + }, + { + "slug": "trimension", + "name": "Trimension", + "url": "/v1/software/trimension" + }, + { + "slug": "trimmomatic", + "name": "Trimmomatic", + "url": "/v1/software/trimmomatic" + }, + { + "slug": "tringme", + "name": "TringMe", + "url": "/v1/software/tringme" + }, + { + "slug": "trino", + "name": "Trino", + "url": "/v1/software/trino" + }, + { + "slug": "trip-a-tron", + "name": "Trip-a-Tron", + "url": "/v1/software/trip-a-tron" + }, + { + "slug": "trismegistos-data-services", + "name": "Trismegistos Data Services", + "url": "/v1/software/trismegistos-data-services" + }, + { + "slug": "tron", + "name": "Tron", + "url": "/v1/software/tron" + }, + { + "slug": "tropes", + "name": "Tropes", + "url": "/v1/software/tropes" + }, + { + "slug": "tropy", + "name": "Tropy", + "url": "/v1/software/tropy" + }, + { + "slug": "truck-factor", + "name": "Truck-Factor", + "url": "/v1/software/truck-factor" + }, + { + "slug": "true-north-budgeting", + "name": "True North Budgeting", + "url": "/v1/software/true-north-budgeting" + }, + { + "slug": "truecaller", + "name": "TrueCaller", + "url": "/v1/software/truecaller" + }, + { + "slug": "trueconf", + "name": "TrueConf", + "url": "/v1/software/trueconf" + }, + { + "slug": "truescreen", + "name": "TrueScreen", + "url": "/v1/software/truescreen" + }, + { + "slug": "truespace", + "name": "TrueSpace", + "url": "/v1/software/truespace" + }, + { + "slug": "truewiki", + "name": "TrueWiki", + "url": "/v1/software/truewiki" + }, + { + "slug": "trueprint", + "name": "Trueprint", + "url": "/v1/software/trueprint" + }, + { + "slug": "trumpet-winsock", + "name": "Trumpet Winsock", + "url": "/v1/software/trumpet-winsock" + }, + { + "slug": "trust-graph", + "name": "Trust Graph", + "url": "/v1/software/trust-graph" + }, + { + "slug": "trustgate-ai", + "name": "TrustGate AI", + "url": "/v1/software/trustgate-ai" + }, + { + "slug": "trustbox", + "name": "Trustbox", + "url": "/v1/software/trustbox" + }, + { + "slug": "trustedsource", + "name": "TrustedSource", + "url": "/v1/software/trustedsource" + }, + { + "slug": "tsuita", + "name": "Tsuita", + "url": "/v1/software/tsuita" + }, + { + "slug": "tucan-manager", + "name": "Tucan Manager", + "url": "/v1/software/tucan-manager" + }, + { + "slug": "tuiopay", + "name": "Tuiopay", + "url": "/v1/software/tuiopay" + }, + { + "slug": "tuneglue", + "name": "TuneGlue", + "url": "/v1/software/tuneglue" + }, + { + "slug": "tunesat", + "name": "TuneSat", + "url": "/v1/software/tunesat" + }, + { + "slug": "tunngle", + "name": "Tunngle", + "url": "/v1/software/tunngle" + }, + { + "slug": "tuotu", + "name": "Tuotu", + "url": "/v1/software/tuotu" + }, + { + "slug": "turbo", + "name": "Turbo", + "url": "/v1/software/turbo" + }, + { + "slug": "turbo-vision", + "name": "Turbo Vision", + "url": "/v1/software/turbo-vision" + }, + { + "slug": "turbopentest", + "name": "TurboPentest", + "url": "/v1/software/turbopentest" + }, + { + "slug": "turboprint", + "name": "TurboPrint", + "url": "/v1/software/turboprint" + }, + { + "slug": "turbotax", + "name": "TurboTax", + "url": "/v1/software/turbotax" + }, + { + "slug": "turbovnc", + "name": "TurboVNC", + "url": "/v1/software/turbovnc" + }, + { + "slug": "turbowarp", + "name": "TurboWarp", + "url": "/v1/software/turbowarp" + }, + { + "slug": "turntool", + "name": "TurnTool", + "url": "/v1/software/turntool" + }, + { + "slug": "turning-the-pages", + "name": "Turning the Pages", + "url": "/v1/software/turning-the-pages" + }, + { + "slug": "tuxedo-suite", + "name": "Tuxedo Suite", + "url": "/v1/software/tuxedo-suite" + }, + { + "slug": "twapper-keeper", + "name": "Twapper Keeper", + "url": "/v1/software/twapper-keeper" + }, + { + "slug": "tweak-ui", + "name": "Tweak UI", + "url": "/v1/software/tweak-ui" + }, + { + "slug": "tweak7", + "name": "Tweak7", + "url": "/v1/software/tweak7" + }, + { + "slug": "tween", + "name": "Tween", + "url": "/v1/software/tween" + }, + { + "slug": "tweet-archivist", + "name": "Tweet Archivist", + "url": "/v1/software/tweet-archivist" + }, + { + "slug": "tweetster", + "name": "Tweetster", + "url": "/v1/software/tweetster" + }, + { + "slug": "twilight", + "name": "Twilight", + "url": "/v1/software/twilight" + }, + { + "slug": "twin-ai", + "name": "Twin AI", + "url": "/v1/software/twin-ai" + }, + { + "slug": "twinby", + "name": "Twinby", + "url": "/v1/software/twinby" + }, + { + "slug": "twinkl-book-club", + "name": "Twinkl Book Club", + "url": "/v1/software/twinkl-book-club" + }, + { + "slug": "twinkl-boost", + "name": "Twinkl Boost", + "url": "/v1/software/twinkl-boost" + }, + { + "slug": "twinkl-classic", + "name": "Twinkl Classic", + "url": "/v1/software/twinkl-classic" + }, + { + "slug": "twinkl-create", + "name": "Twinkl Create", + "url": "/v1/software/twinkl-create" + }, + { + "slug": "twinkl-go", + "name": "Twinkl Go!", + "url": "/v1/software/twinkl-go" + }, + { + "slug": "twinkl-handwriting", + "name": "Twinkl Handwriting", + "url": "/v1/software/twinkl-handwriting" + }, + { + "slug": "twinkl-inclusion", + "name": "Twinkl Inclusion", + "url": "/v1/software/twinkl-inclusion" + }, + { + "slug": "twinkl-life", + "name": "Twinkl Life", + "url": "/v1/software/twinkl-life" + }, + { + "slug": "twinkl-move", + "name": "Twinkl Move", + "url": "/v1/software/twinkl-move" + }, + { + "slug": "twinkl-newsroom", + "name": "Twinkl Newsroom", + "url": "/v1/software/twinkl-newsroom" + }, + { + "slug": "twinkl-originals", + "name": "Twinkl Originals", + "url": "/v1/software/twinkl-originals" + }, + { + "slug": "twinkl-party", + "name": "Twinkl Party", + "url": "/v1/software/twinkl-party" + }, + { + "slug": "twinkl-phonics", + "name": "Twinkl Phonics", + "url": "/v1/software/twinkl-phonics" + }, + { + "slug": "twinkle-bulbs", + "name": "Twinkle Bulbs", + "url": "/v1/software/twinkle-bulbs" + }, + { + "slug": "twinmotion", + "name": "Twinmotion", + "url": "/v1/software/twinmotion" + }, + { + "slug": "twitter-archiver-google-sheets-add-on", + "name": "Twitter Archiver (Google Sheets Add-On)", + "url": "/v1/software/twitter-archiver-google-sheets-add-on" + }, + { + "slug": "twitterpad", + "name": "TwitterPad", + "url": "/v1/software/twitterpad" + }, + { + "slug": "twproject", + "name": "Twproject", + "url": "/v1/software/twproject" + }, + { + "slug": "txtweb", + "name": "TxtWeb", + "url": "/v1/software/txtweb" + }, + { + "slug": "type-generalization", + "name": "Type generalization", + "url": "/v1/software/type-generalization" + }, + { + "slug": "type4all", + "name": "Type4All", + "url": "/v1/software/type4all" + }, + { + "slug": "typelab-q138870803", + "name": "TypeLab", + "url": "/v1/software/typelab-q138870803" + }, + { + "slug": "typelab", + "name": "TypeLab", + "url": "/v1/software/typelab" + }, + { + "slug": "typecho", + "name": "Typecho", + "url": "/v1/software/typecho" + }, + { + "slug": "typeeto", + "name": "Typeeto", + "url": "/v1/software/typeeto" + }, + { + "slug": "typestry", + "name": "Typestry", + "url": "/v1/software/typestry" + }, + { + "slug": "typhoon-2000", + "name": "Typhoon 2000", + "url": "/v1/software/typhoon-2000" + }, + { + "slug": "typical", + "name": "Typical", + "url": "/v1/software/typical" + }, + { + "slug": "u", + "name": "U", + "url": "/v1/software/u" + }, + { + "slug": "uam-corpustool", + "name": "UAM CorpusTool", + "url": "/v1/software/uam-corpustool" + }, + { + "slug": "ubasic", + "name": "UBASIC", + "url": "/v1/software/ubasic" + }, + { + "slug": "ubb-classic", + "name": "UBB.classic", + "url": "/v1/software/ubb-classic" + }, + { + "slug": "ubb-threads", + "name": "UBB.threads", + "url": "/v1/software/ubb-threads" + }, + { + "slug": "ubjson", + "name": "UBJSON", + "url": "/v1/software/ubjson" + }, + { + "slug": "ubot-studio", + "name": "UBot Studio", + "url": "/v1/software/ubot-studio" + }, + { + "slug": "uc-browser", + "name": "UC Browser", + "url": "/v1/software/uc-browser" + }, + { + "slug": "ucinet", + "name": "UCINET", + "url": "/v1/software/ucinet" + }, + { + "slug": "ucsc-xena", + "name": "UCSC Xena", + "url": "/v1/software/ucsc-xena" + }, + { + "slug": "ucsf-chimera", + "name": "UCSF Chimera", + "url": "/v1/software/ucsf-chimera" + }, + { + "slug": "udpipe-q126084699", + "name": "UDPipe", + "url": "/v1/software/udpipe-q126084699" + }, + { + "slug": "udpipe", + "name": "UDPipe", + "url": "/v1/software/udpipe" + }, + { + "slug": "uefitool", + "name": "UEFITool", + "url": "/v1/software/uefitool" + }, + { + "slug": "uimx", + "name": "UIMX", + "url": "/v1/software/uimx" + }, + { + "slug": "umang", + "name": "UMANG", + "url": "/v1/software/umang" + }, + { + "slug": "umbel", + "name": "UMBEL", + "url": "/v1/software/umbel" + }, + { + "slug": "umdhmm-hidden-markov-model-toolkit", + "name": "UMDHMM: Hidden Markov Model Toolkit", + "url": "/v1/software/umdhmm-hidden-markov-model-toolkit" + }, + { + "slug": "umodel", + "name": "UModel", + "url": "/v1/software/umodel" + }, + { + "slug": "unicon", + "name": "UNICON", + "url": "/v1/software/unicon" + }, + { + "slug": "unicorn-q126087756", + "name": "UNICORN", + "url": "/v1/software/unicorn-q126087756" + }, + { + "slug": "unison-q25206935", + "name": "UNISoN", + "url": "/v1/software/unison-q25206935" + }, + { + "slug": "unomi", + "name": "UNOMI", + "url": "/v1/software/unomi" + }, + { + "slug": "urica-ii", + "name": "URICA! II", + "url": "/v1/software/urica-ii" + }, + { + "slug": "url-x", + "name": "URL X", + "url": "/v1/software/url-x" + }, + { + "slug": "utexas", + "name": "UTEXAS", + "url": "/v1/software/utexas" + }, + { + "slug": "utm", + "name": "UTM", + "url": "/v1/software/utm" + }, + { + "slug": "utopia", + "name": "UTOPIA", + "url": "/v1/software/utopia" + }, + { + "slug": "uvic-image-markup-tool", + "name": "UVic Image Markup Tool", + "url": "/v1/software/uvic-image-markup-tool" + }, + { + "slug": "uwin", + "name": "UWIN", + "url": "/v1/software/uwin" + }, + { + "slug": "uber", + "name": "Uber", + "url": "/v1/software/uber" + }, + { + "slug": "ubersocial", + "name": "UberSocial", + "url": "/v1/software/ubersocial" + }, + { + "slug": "ubuntu-tweak", + "name": "Ubuntu Tweak", + "url": "/v1/software/ubuntu-tweak" + }, + { + "slug": "udaanbill", + "name": "UdaanBill", + "url": "/v1/software/udaanbill" + }, + { + "slug": "ukraine-siren-alerts", + "name": "Ukraine Siren Alerts", + "url": "/v1/software/ukraine-siren-alerts" + }, + { + "slug": "ulead-photo-express", + "name": "Ulead Photo Express", + "url": "/v1/software/ulead-photo-express" + }, + { + "slug": "ultamatix", + "name": "Ultamatix", + "url": "/v1/software/ultamatix" + }, + { + "slug": "ultimate-boot-cd", + "name": "Ultimate Boot CD", + "url": "/v1/software/ultimate-boot-cd" + }, + { + "slug": "ultimate-othello", + "name": "Ultimate Othello", + "url": "/v1/software/ultimate-othello" + }, + { + "slug": "ultimatedefrag", + "name": "UltimateDefrag", + "url": "/v1/software/ultimatedefrag" + }, + { + "slug": "ultiplot", + "name": "Ultiplot", + "url": "/v1/software/ultiplot" + }, + { + "slug": "ultra-fractal", + "name": "Ultra Fractal", + "url": "/v1/software/ultra-fractal" + }, + { + "slug": "ultramon", + "name": "UltraMon", + "url": "/v1/software/ultramon" + }, + { + "slug": "ultralingua", + "name": "Ultralingua", + "url": "/v1/software/ultralingua" + }, + { + "slug": "ultrasurf", + "name": "Ultrasurf", + "url": "/v1/software/ultrasurf" + }, + { + "slug": "umigon", + "name": "Umigon", + "url": "/v1/software/umigon" + }, + { + "slug": "umlaut-resolver", + "name": "Umlaut resolver", + "url": "/v1/software/umlaut-resolver" + }, + { + "slug": "undetectable-ai", + "name": "Undetectable.ai", + "url": "/v1/software/undetectable-ai" + }, + { + "slug": "unfold", + "name": "Unfold", + "url": "/v1/software/unfold" + }, + { + "slug": "unfollow-everything", + "name": "Unfollow Everything", + "url": "/v1/software/unfollow-everything" + }, + { + "slug": "unicluster", + "name": "UniCluster", + "url": "/v1/software/unicluster" + }, + { + "slug": "unisight-cdp", + "name": "UniSight CDP", + "url": "/v1/software/unisight-cdp" + }, + { + "slug": "unicorn", + "name": "Unicorn", + "url": "/v1/software/unicorn" + }, + { + "slug": "unified-code-count", + "name": "Unified Code Count", + "url": "/v1/software/unified-code-count" + }, + { + "slug": "unified-inference-frontend", + "name": "Unified Inference Frontend", + "url": "/v1/software/unified-inference-frontend" + }, + { + "slug": "unified-remote", + "name": "Unified Remote", + "url": "/v1/software/unified-remote" + }, + { + "slug": "unified-victim-identification-system", + "name": "Unified Victim Identification System", + "url": "/v1/software/unified-victim-identification-system" + }, + { + "slug": "unigine-heaven", + "name": "Unigine Heaven", + "url": "/v1/software/unigine-heaven" + }, + { + "slug": "unipept", + "name": "Unipept", + "url": "/v1/software/unipept" + }, + { + "slug": "unison-q7887023", + "name": "Unison", + "url": "/v1/software/unison-q7887023" + }, + { + "slug": "unison", + "name": "Unison", + "url": "/v1/software/unison" + }, + { + "slug": "unispim-pinyin", + "name": "Unispim Pinyin", + "url": "/v1/software/unispim-pinyin" + }, + { + "slug": "unistat", + "name": "Unistat", + "url": "/v1/software/unistat" + }, + { + "slug": "unit-convert-now", + "name": "Unit Convert Now", + "url": "/v1/software/unit-convert-now" + }, + { + "slug": "univa-grid-engine", + "name": "Univa Grid Engine", + "url": "/v1/software/univa-grid-engine" + }, + { + "slug": "universal-document-converter", + "name": "Universal Document Converter", + "url": "/v1/software/universal-document-converter" + }, + { + "slug": "universal-usb-installer", + "name": "Universal USB Installer", + "url": "/v1/software/universal-usb-installer" + }, + { + "slug": "universalindentgui", + "name": "UniversalIndentGUI", + "url": "/v1/software/universalindentgui" + }, + { + "slug": "universitas-xxi", + "name": "Universitas XXI", + "url": "/v1/software/universitas-xxi" + }, + { + "slug": "unix-amiga-delitracker-emulator", + "name": "Unix Amiga Delitracker Emulator", + "url": "/v1/software/unix-amiga-delitracker-emulator" + }, + { + "slug": "unixtimestamp", + "name": "UnixTimestamp", + "url": "/v1/software/unixtimestamp" + }, + { + "slug": "unleash-the-power-of-metastock", + "name": "Unleash the Power of MetaStock", + "url": "/v1/software/unleash-the-power-of-metastock" + }, + { + "slug": "unlock-text", + "name": "Unlock Text", + "url": "/v1/software/unlock-text" + }, + { + "slug": "unmute", + "name": "Unmute", + "url": "/v1/software/unmute" + }, + { + "slug": "uno", + "name": "Uno", + "url": "/v1/software/uno" + }, + { + "slug": "unreal-editor-for-fortnite", + "name": "Unreal Editor for Fortnite", + "url": "/v1/software/unreal-editor-for-fortnite" + }, + { + "slug": "unreal-media-server", + "name": "Unreal Media Server", + "url": "/v1/software/unreal-media-server" + }, + { + "slug": "unreal-x-editor", + "name": "Unreal X-Editor", + "url": "/v1/software/unreal-x-editor" + }, + { + "slug": "unstoppable-copier", + "name": "Unstoppable Copier", + "url": "/v1/software/unstoppable-copier" + }, + { + "slug": "unsub", + "name": "Unsub", + "url": "/v1/software/unsub" + }, + { + "slug": "upsetr", + "name": "UpSetR", + "url": "/v1/software/upsetr" + }, + { + "slug": "upack", + "name": "Upack", + "url": "/v1/software/upack" + }, + { + "slug": "updatestar", + "name": "UpdateStar", + "url": "/v1/software/updatestar" + }, + { + "slug": "uplifty", + "name": "Uplifty", + "url": "/v1/software/uplifty" + }, + { + "slug": "uploadftp", + "name": "UploadFTP", + "url": "/v1/software/uploadftp" + }, + { + "slug": "uppaal-model-checker", + "name": "Uppaal Model Checker", + "url": "/v1/software/uppaal-model-checker" + }, + { + "slug": "upptalk", + "name": "Upptalk", + "url": "/v1/software/upptalk" + }, + { + "slug": "uptimed", + "name": "Uptimed", + "url": "/v1/software/uptimed" + }, + { + "slug": "uptodown", + "name": "Uptodown", + "url": "/v1/software/uptodown" + }, + { + "slug": "urqmd", + "name": "UrQMD", + "url": "/v1/software/urqmd" + }, + { + "slug": "urban-model-builder", + "name": "Urban Model Builder", + "url": "/v1/software/urban-model-builder" + }, + { + "slug": "urbansim", + "name": "UrbanSim", + "url": "/v1/software/urbansim" + }, + { + "slug": "urbit", + "name": "Urbit", + "url": "/v1/software/urbit" + }, + { + "slug": "urchin", + "name": "Urchin", + "url": "/v1/software/urchin" + }, + { + "slug": "urkund", + "name": "Urkund", + "url": "/v1/software/urkund" + }, + { + "slug": "uroburos", + "name": "Uroburos", + "url": "/v1/software/uroburos" + }, + { + "slug": "usb8x", + "name": "Usb8x", + "url": "/v1/software/usb8x" + }, + { + "slug": "useful-macros-uma", + "name": "Useful Macros (UMA)", + "url": "/v1/software/useful-macros-uma" + }, + { + "slug": "useful-notes-uno", + "name": "Useful Notes (UNO)", + "url": "/v1/software/useful-notes-uno" + }, + { + "slug": "usenet-explorer", + "name": "Usenet Explorer", + "url": "/v1/software/usenet-explorer" + }, + { + "slug": "user-account-control", + "name": "User Account Control", + "url": "/v1/software/user-account-control" + }, + { + "slug": "user-ii-software-bundle", + "name": "User II (software bundle)", + "url": "/v1/software/user-ii-software-bundle" + }, + { + "slug": "user-state-migration-tool", + "name": "User State Migration Tool", + "url": "/v1/software/user-state-migration-tool" + }, + { + "slug": "userbrain", + "name": "Userbrain", + "url": "/v1/software/userbrain" + }, + { + "slug": "usermin", + "name": "Usermin", + "url": "/v1/software/usermin" + }, + { + "slug": "utatane", + "name": "Utatane", + "url": "/v1/software/utatane" + }, + { + "slug": "utatane-piko", + "name": "Utatane Piko", + "url": "/v1/software/utatane-piko" + }, + { + "slug": "utgard", + "name": "Utgard", + "url": "/v1/software/utgard" + }, + { + "slug": "v-e-r-a", + "name": "V.E.R.A.", + "url": "/v1/software/v-e-r-a" + }, + { + "slug": "v3", + "name": "V3", + "url": "/v1/software/v3" + }, + { + "slug": "vader", + "name": "VADER", + "url": "/v1/software/vader" + }, + { + "slug": "vall-e", + "name": "VALL-E", + "url": "/v1/software/vall-e" + }, + { + "slug": "valo-cd", + "name": "VALO-CD", + "url": "/v1/software/valo-cd" + }, + { + "slug": "varco-3d", + "name": "VARCO 3D", + "url": "/v1/software/varco-3d" + }, + { + "slug": "varco-sound", + "name": "VARCO Sound", + "url": "/v1/software/varco-sound" + }, + { + "slug": "vard-2", + "name": "VARD 2", + "url": "/v1/software/vard-2" + }, + { + "slug": "vannotator", + "name": "VAnnotatoR", + "url": "/v1/software/vannotator" + }, + { + "slug": "vcn-execuvision", + "name": "VCN ExecuVision", + "url": "/v1/software/vcn-execuvision" + }, + { + "slug": "vdo-ninja", + "name": "VDO.Ninja", + "url": "/v1/software/vdo-ninja" + }, + { + "slug": "vdx", + "name": "VDX", + "url": "/v1/software/vdx" + }, + { + "slug": "vdownloader", + "name": "VDownloader", + "url": "/v1/software/vdownloader" + }, + { + "slug": "vela", + "name": "VELA", + "url": "/v1/software/vela" + }, + { + "slug": "vero", + "name": "VERO", + "url": "/v1/software/vero" + }, + { + "slug": "vgacad", + "name": "VGACAD", + "url": "/v1/software/vgacad" + }, + { + "slug": "vicar-image-processing-system", + "name": "VICAR Image Processing System", + "url": "/v1/software/vicar-image-processing-system" + }, + { + "slug": "vicidial", + "name": "VICIdial", + "url": "/v1/software/vicidial" + }, + { + "slug": "vinci", + "name": "VINCI", + "url": "/v1/software/vinci" + }, + { + "slug": "vipole", + "name": "VIPole", + "url": "/v1/software/vipole" + }, + { + "slug": "vira", + "name": "VIRA.", + "url": "/v1/software/vira" + }, + { + "slug": "visq-q17122933", + "name": "VISQ", + "url": "/v1/software/visq-q17122933" + }, + { + "slug": "vissim", + "name": "VISSIM", + "url": "/v1/software/vissim" + }, + { + "slug": "vital", + "name": "VITAL", + "url": "/v1/software/vital" + }, + { + "slug": "vitek", + "name": "VITEK", + "url": "/v1/software/vitek" + }, + { + "slug": "vk-gl-cts", + "name": "VK-GL-CTS", + "url": "/v1/software/vk-gl-cts" + }, + { + "slug": "vkd3d", + "name": "VKD3D", + "url": "/v1/software/vkd3d" + }, + { + "slug": "vm-software", + "name": "VM Software", + "url": "/v1/software/vm-software" + }, + { + "slug": "vmprotect", + "name": "VMProtect", + "url": "/v1/software/vmprotect" + }, + { + "slug": "vmmark", + "name": "VMmark", + "url": "/v1/software/vmmark" + }, + { + "slug": "vmware-infrastructure", + "name": "VMware Infrastructure", + "url": "/v1/software/vmware-infrastructure" + }, + { + "slug": "vmware-powercli", + "name": "VMware PowerCLI", + "url": "/v1/software/vmware-powercli" + }, + { + "slug": "vmware-service-manager", + "name": "VMware Service Manager", + "url": "/v1/software/vmware-service-manager" + }, + { + "slug": "vmware-thinapp", + "name": "VMware ThinApp", + "url": "/v1/software/vmware-thinapp" + }, + { + "slug": "vmware-vsphere", + "name": "VMware vSphere", + "url": "/v1/software/vmware-vsphere" + }, + { + "slug": "vns3", + "name": "VNS3", + "url": "/v1/software/vns3" + }, + { + "slug": "voacap", + "name": "VOACAP", + "url": "/v1/software/voacap" + }, + { + "slug": "vocab-u-lister", + "name": "VOCAB - U - LISTER", + "url": "/v1/software/vocab-u-lister" + }, + { + "slug": "voicevox", + "name": "VOICEVOX", + "url": "/v1/software/voicevox" + }, + { + "slug": "volt-lx", + "name": "VOLT/LX", + "url": "/v1/software/volt-lx" + }, + { + "slug": "vosviewer", + "name": "VOSviewer", + "url": "/v1/software/vosviewer" + }, + { + "slug": "vosviewer-online", + "name": "VOSviewer Online", + "url": "/v1/software/vosviewer-online" + }, + { + "slug": "vp-expert", + "name": "VP-Expert", + "url": "/v1/software/vp-expert" + }, + { + "slug": "vp-info", + "name": "VP-Info", + "url": "/v1/software/vp-info" + }, + { + "slug": "vp-ms", + "name": "VP/MS", + "url": "/v1/software/vp-ms" + }, + { + "slug": "vs-plus", + "name": "VS-PLUS", + "url": "/v1/software/vs-plus" + }, + { + "slug": "vsco", + "name": "VSCO", + "url": "/v1/software/vsco" + }, + { + "slug": "vscodevim", + "name": "VSCodeVim", + "url": "/v1/software/vscodevim" + }, + { + "slug": "vsim", + "name": "VSim", + "url": "/v1/software/vsim" + }, + { + "slug": "vtune", + "name": "VTune", + "url": "/v1/software/vtune" + }, + { + "slug": "vxl", + "name": "VXL", + "url": "/v1/software/vxl" + }, + { + "slug": "vy1", + "name": "VY1", + "url": "/v1/software/vy1" + }, + { + "slug": "vy2", + "name": "VY2", + "url": "/v1/software/vy2" + }, + { + "slug": "vzochat", + "name": "VZOchat", + "url": "/v1/software/vzochat" + }, + { + "slug": "vaa3d", + "name": "Vaa3D", + "url": "/v1/software/vaa3d" + }, + { + "slug": "vaccination-record-system", + "name": "Vaccination Record System", + "url": "/v1/software/vaccination-record-system" + }, + { + "slug": "vacuolar-phenotype-analyzer", + "name": "Vacuolar Phenotype Analyzer", + "url": "/v1/software/vacuolar-phenotype-analyzer" + }, + { + "slug": "vagaa", + "name": "Vagaa", + "url": "/v1/software/vagaa" + }, + { + "slug": "vaikora", + "name": "Vaikora", + "url": "/v1/software/vaikora" + }, + { + "slug": "valetudo", + "name": "Valetudo", + "url": "/v1/software/valetudo" + }, + { + "slug": "validis", + "name": "Validis", + "url": "/v1/software/validis" + }, + { + "slug": "vallen-jpegger", + "name": "Vallen JPegger", + "url": "/v1/software/vallen-jpegger" + }, + { + "slug": "valour", + "name": "Valour", + "url": "/v1/software/valour" + }, + { + "slug": "vampire-theorem-prover", + "name": "Vampire theorem prover", + "url": "/v1/software/vampire-theorem-prover" + }, + { + "slug": "vampr", + "name": "Vampr", + "url": "/v1/software/vampr" + }, + { + "slug": "vapor", + "name": "Vapor", + "url": "/v1/software/vapor" + }, + { + "slug": "varagesale", + "name": "VarageSale", + "url": "/v1/software/varagesale" + }, + { + "slug": "vassarstats", + "name": "VassarStats", + "url": "/v1/software/vassarstats" + }, + { + "slug": "vault-q88664426", + "name": "Vault", + "url": "/v1/software/vault-q88664426" + }, + { + "slug": "vault", + "name": "Vault", + "url": "/v1/software/vault" + }, + { + "slug": "vcxsrv", + "name": "VcXsrv", + "url": "/v1/software/vcxsrv" + }, + { + "slug": "veve", + "name": "VeVe", + "url": "/v1/software/veve" + }, + { + "slug": "vectorian-giotto", + "name": "Vectorian Giotto", + "url": "/v1/software/vectorian-giotto" + }, + { + "slug": "vedic-programming-language", + "name": "Vedic Programming Language", + "url": "/v1/software/vedic-programming-language" + }, + { + "slug": "veezow", + "name": "Veezow", + "url": "/v1/software/veezow" + }, + { + "slug": "vegeta", + "name": "Vegeta", + "url": "/v1/software/vegeta" + }, + { + "slug": "velox", + "name": "Velox", + "url": "/v1/software/velox" + }, + { + "slug": "velvet", + "name": "Velvet", + "url": "/v1/software/velvet" + }, + { + "slug": "velvet-ai", + "name": "Velvet AI", + "url": "/v1/software/velvet-ai" + }, + { + "slug": "venmo", + "name": "Venmo", + "url": "/v1/software/venmo" + }, + { + "slug": "vensim", + "name": "Vensim", + "url": "/v1/software/vensim" + }, + { + "slug": "venti", + "name": "Venti", + "url": "/v1/software/venti" + }, + { + "slug": "veo", + "name": "Veo", + "url": "/v1/software/veo" + }, + { + "slug": "veracity", + "name": "Veracity", + "url": "/v1/software/veracity" + }, + { + "slug": "verbal-robot", + "name": "Verbal-Robot", + "url": "/v1/software/verbal-robot" + }, + { + "slug": "veriface", + "name": "VeriFace", + "url": "/v1/software/veriface" + }, + { + "slug": "veriflux", + "name": "VeriFlux", + "url": "/v1/software/veriflux" + }, + { + "slug": "vericut", + "name": "Vericut", + "url": "/v1/software/vericut" + }, + { + "slug": "verifiedemail", + "name": "VerifiedEmail", + "url": "/v1/software/verifiedemail" + }, + { + "slug": "verilator", + "name": "Verilator", + "url": "/v1/software/verilator" + }, + { + "slug": "veritas-volume-manager", + "name": "Veritas Volume Manager", + "url": "/v1/software/veritas-volume-manager" + }, + { + "slug": "verleer", + "name": "Verleer", + "url": "/v1/software/verleer" + }, + { + "slug": "versant-object-database", + "name": "Versant Object Database", + "url": "/v1/software/versant-object-database" + }, + { + "slug": "verseify", + "name": "Verseify", + "url": "/v1/software/verseify" + }, + { + "slug": "versioned-hdf5", + "name": "Versioned HDF5", + "url": "/v1/software/versioned-hdf5" + }, + { + "slug": "versioning-machine", + "name": "Versioning Machine", + "url": "/v1/software/versioning-machine" + }, + { + "slug": "vertex-computer-program", + "name": "Vertex (computer program)", + "url": "/v1/software/vertex-computer-program" + }, + { + "slug": "vertica-analytics-platform", + "name": "Vertica Analytics Platform", + "url": "/v1/software/vertica-analytics-platform" + }, + { + "slug": "verticalrent", + "name": "VerticalRent", + "url": "/v1/software/verticalrent" + }, + { + "slug": "verto-studio-3d", + "name": "Verto Studio 3D", + "url": "/v1/software/verto-studio-3d" + }, + { + "slug": "veru-legal-ai-for-lawyers", + "name": "Veru Legal - AI for Lawyers", + "url": "/v1/software/veru-legal-ai-for-lawyers" + }, + { + "slug": "vestd", + "name": "Vestd", + "url": "/v1/software/vestd" + }, + { + "slug": "vicompte", + "name": "ViCompte", + "url": "/v1/software/vicompte" + }, + { + "slug": "viewer", + "name": "ViEWER", + "url": "/v1/software/viewer" + }, + { + "slug": "vios", + "name": "ViOS", + "url": "/v1/software/vios" + }, + { + "slug": "via-browser", + "name": "Via Browser", + "url": "/v1/software/via-browser" + }, + { + "slug": "vibe3d", + "name": "Vibe3D", + "url": "/v1/software/vibe3d" + }, + { + "slug": "victoria", + "name": "Victoria", + "url": "/v1/software/victoria" + }, + { + "slug": "victoria-program", + "name": "Victoria (program)", + "url": "/v1/software/victoria-program" + }, + { + "slug": "vidmate", + "name": "VidMate", + "url": "/v1/software/vidmate" + }, + { + "slug": "vidsentry", + "name": "VidSentry", + "url": "/v1/software/vidsentry" + }, + { + "slug": "video-data-editor", + "name": "Video Data Editor", + "url": "/v1/software/video-data-editor" + }, + { + "slug": "videopoet", + "name": "VideoPoet", + "url": "/v1/software/videopoet" + }, + { + "slug": "videoscribe", + "name": "VideoScribe", + "url": "/v1/software/videoscribe" + }, + { + "slug": "videostreetview", + "name": "VideoStreetView", + "url": "/v1/software/videostreetview" + }, + { + "slug": "vienna-rna-package", + "name": "Vienna RNA Package", + "url": "/v1/software/vienna-rna-package" + }, + { + "slug": "viewsheet", + "name": "ViewSheet", + "url": "/v1/software/viewsheet" + }, + { + "slug": "viewsonic-wizard-2000", + "name": "ViewSonic Wizard 2000", + "url": "/v1/software/viewsonic-wizard-2000" + }, + { + "slug": "viewshare", + "name": "Viewshare", + "url": "/v1/software/viewshare" + }, + { + "slug": "vilistextum", + "name": "Vilistextum", + "url": "/v1/software/vilistextum" + }, + { + "slug": "vimim", + "name": "VimIM", + "url": "/v1/software/vimim" + }, + { + "slug": "vimperator", + "name": "Vimperator", + "url": "/v1/software/vimperator" + }, + { + "slug": "violet", + "name": "Violet", + "url": "/v1/software/violet" + }, + { + "slug": "viralheat", + "name": "Viralheat", + "url": "/v1/software/viralheat" + }, + { + "slug": "vireo-sentinel", + "name": "Vireo Sentinel", + "url": "/v1/software/vireo-sentinel" + }, + { + "slug": "virtual-advanced", + "name": "Virtual Advanced", + "url": "/v1/software/virtual-advanced" + }, + { + "slug": "virtual-audio-cable", + "name": "Virtual Audio Cable", + "url": "/v1/software/virtual-audio-cable" + }, + { + "slug": "virtual-cd-rom-control-panel", + "name": "Virtual CD-ROM Control Panel", + "url": "/v1/software/virtual-cd-rom-control-panel" + }, + { + "slug": "virtual-cell", + "name": "Virtual Cell", + "url": "/v1/software/virtual-cell" + }, + { + "slug": "virtual-distributed-ethernet", + "name": "Virtual Distributed Ethernet", + "url": "/v1/software/virtual-distributed-ethernet" + }, + { + "slug": "virtual-file-system-for-git", + "name": "Virtual File System for Git", + "url": "/v1/software/virtual-file-system-for-git" + }, + { + "slug": "virtual-hosting-control-system", + "name": "Virtual Hosting Control System", + "url": "/v1/software/virtual-hosting-control-system" + }, + { + "slug": "virtual-lightbox", + "name": "Virtual Lightbox", + "url": "/v1/software/virtual-lightbox" + }, + { + "slug": "virtual-radar-client", + "name": "Virtual Radar Client", + "url": "/v1/software/virtual-radar-client" + }, + { + "slug": "virtual-steel", + "name": "Virtual Steel", + "url": "/v1/software/virtual-steel" + }, + { + "slug": "virtual-transcription-laboratory", + "name": "Virtual Transcription Laboratory", + "url": "/v1/software/virtual-transcription-laboratory" + }, + { + "slug": "virtualbus", + "name": "VirtualBus", + "url": "/v1/software/virtualbus" + }, + { + "slug": "virtue", + "name": "Virtue", + "url": "/v1/software/virtue" + }, + { + "slug": "virtuozzo", + "name": "Virtuozzo", + "url": "/v1/software/virtuozzo" + }, + { + "slug": "virus-chaser", + "name": "Virus Chaser", + "url": "/v1/software/virus-chaser" + }, + { + "slug": "virus-creation-laboratory", + "name": "Virus Creation Laboratory", + "url": "/v1/software/virus-creation-laboratory" + }, + { + "slug": "virusbuster", + "name": "VirusBuster", + "url": "/v1/software/virusbuster" + }, + { + "slug": "visflow", + "name": "VisFlow", + "url": "/v1/software/visflow" + }, + { + "slug": "vispy", + "name": "VisPy", + "url": "/v1/software/vispy" + }, + { + "slug": "visible", + "name": "Visible", + "url": "/v1/software/visible" + }, + { + "slug": "visible-human-project", + "name": "Visible Human Project", + "url": "/v1/software/visible-human-project" + }, + { + "slug": "visifire", + "name": "Visifire", + "url": "/v1/software/visifire" + }, + { + "slug": "vision-mobile-browser", + "name": "Vision Mobile Browser", + "url": "/v1/software/vision-mobile-browser" + }, + { + "slug": "visions-of-chaos", + "name": "Visions of Chaos", + "url": "/v1/software/visions-of-chaos" + }, + { + "slug": "vismon", + "name": "Vismon", + "url": "/v1/software/vismon" + }, + { + "slug": "visq", + "name": "Visq", + "url": "/v1/software/visq" + }, + { + "slug": "vista-transformation-pack", + "name": "Vista Transformation Pack", + "url": "/v1/software/vista-transformation-pack" + }, + { + "slug": "vistape", + "name": "VistaPE", + "url": "/v1/software/vistape" + }, + { + "slug": "visuwords", + "name": "VisuWords", + "url": "/v1/software/visuwords" + }, + { + "slug": "visual-bcd-editor", + "name": "Visual BCD Editor", + "url": "/v1/software/visual-bcd-editor" + }, + { + "slug": "visual-browser", + "name": "Visual Browser", + "url": "/v1/software/visual-browser" + }, + { + "slug": "visual-builder", + "name": "Visual Builder", + "url": "/v1/software/visual-builder" + }, + { + "slug": "visual-caf", + "name": "Visual Café", + "url": "/v1/software/visual-caf" + }, + { + "slug": "visual-compliance", + "name": "Visual Compliance", + "url": "/v1/software/visual-compliance" + }, + { + "slug": "visual-expert", + "name": "Visual Expert", + "url": "/v1/software/visual-expert" + }, + { + "slug": "visual-installer", + "name": "Visual Installer", + "url": "/v1/software/visual-installer" + }, + { + "slug": "visual-intercept", + "name": "Visual Intercept", + "url": "/v1/software/visual-intercept" + }, + { + "slug": "visual-mind", + "name": "Visual Mind", + "url": "/v1/software/visual-mind" + }, + { + "slug": "visual-nature-studio", + "name": "Visual Nature Studio", + "url": "/v1/software/visual-nature-studio" + }, + { + "slug": "visual-sentinel", + "name": "Visual Sentinel", + "url": "/v1/software/visual-sentinel" + }, + { + "slug": "visual-studio-2005", + "name": "Visual Studio 2005", + "url": "/v1/software/visual-studio-2005" + }, + { + "slug": "visual-studio-2022", + "name": "Visual Studio 2022", + "url": "/v1/software/visual-studio-2022" + }, + { + "slug": "visual-test", + "name": "Visual Test", + "url": "/v1/software/visual-test" + }, + { + "slug": "visual-studio-2012", + "name": "Visual studio 2012", + "url": "/v1/software/visual-studio-2012" + }, + { + "slug": "visualarq", + "name": "VisualARQ", + "url": "/v1/software/visualarq" + }, + { + "slug": "visualcron", + "name": "VisualCron", + "url": "/v1/software/visualcron" + }, + { + "slug": "visualeyes", + "name": "VisualEyes", + "url": "/v1/software/visualeyes" + }, + { + "slug": "visualfea", + "name": "VisualFEA", + "url": "/v1/software/visualfea" + }, + { + "slug": "visualsvn", + "name": "VisualSVN", + "url": "/v1/software/visualsvn" + }, + { + "slug": "visualsvn-server", + "name": "VisualSVN Server", + "url": "/v1/software/visualsvn-server" + }, + { + "slug": "visualsim-architect", + "name": "VisualSim Architect", + "url": "/v1/software/visualsim-architect" + }, + { + "slug": "visualize-free", + "name": "Visualize Free", + "url": "/v1/software/visualize-free" + }, + { + "slug": "visualizing-literature-sentiment", + "name": "Visualizing Literature: Sentiment", + "url": "/v1/software/visualizing-literature-sentiment" + }, + { + "slug": "visualizing-literature-virtue-and-vice", + "name": "Visualizing Literature: Virtue and Vice", + "url": "/v1/software/visualizing-literature-virtue-and-vice" + }, + { + "slug": "vitalibot", + "name": "VitaliBot", + "url": "/v1/software/vitalibot" + }, + { + "slug": "vitalize", + "name": "Vitalize!", + "url": "/v1/software/vitalize" + }, + { + "slug": "vive", + "name": "Vive", + "url": "/v1/software/vive" + }, + { + "slug": "vivibook", + "name": "ViviBook", + "url": "/v1/software/vivibook" + }, + { + "slug": "vivliostyle", + "name": "Vivliostyle", + "url": "/v1/software/vivliostyle" + }, + { + "slug": "vivo-software", + "name": "Vivo Software", + "url": "/v1/software/vivo-software" + }, + { + "slug": "vivoactive", + "name": "VivoActive", + "url": "/v1/software/vivoactive" + }, + { + "slug": "vizcon", + "name": "VizCon", + "url": "/v1/software/vizcon" + }, + { + "slug": "vizex-reader", + "name": "VizEx Reader", + "url": "/v1/software/vizex-reader" + }, + { + "slug": "vizastar", + "name": "Vizastar", + "url": "/v1/software/vizastar" + }, + { + "slug": "vizerra", + "name": "Vizerra", + "url": "/v1/software/vizerra" + }, + { + "slug": "viziapps", + "name": "ViziApps", + "url": "/v1/software/viziapps" + }, + { + "slug": "vizumed", + "name": "Vizumed", + "url": "/v1/software/vizumed" + }, + { + "slug": "vocalina", + "name": "Vocalina", + "url": "/v1/software/vocalina" + }, + { + "slug": "vocalowitter", + "name": "VocaloWitter", + "url": "/v1/software/vocalowitter" + }, + { + "slug": "vocaloid-6", + "name": "Vocaloid 6", + "url": "/v1/software/vocaloid-6" + }, + { + "slug": "vocaloid-editor-for-cubase", + "name": "Vocaloid Editor for Cubase", + "url": "/v1/software/vocaloid-editor-for-cubase" + }, + { + "slug": "vodburner", + "name": "VodBurner", + "url": "/v1/software/vodburner" + }, + { + "slug": "voicewalker", + "name": "VoiceWalker", + "url": "/v1/software/voicewalker" + }, + { + "slug": "voicecup-dictionary-of-pronunciation", + "name": "Voicecup dictionary of pronunciation", + "url": "/v1/software/voicecup-dictionary-of-pronunciation" + }, + { + "slug": "voiceflow", + "name": "Voiceflow", + "url": "/v1/software/voiceflow" + }, + { + "slug": "voicemeeter", + "name": "Voicemeeter", + "url": "/v1/software/voicemeeter" + }, + { + "slug": "voiceroid", + "name": "Voiceroid", + "url": "/v1/software/voiceroid" + }, + { + "slug": "voikko", + "name": "Voikko", + "url": "/v1/software/voikko" + }, + { + "slug": "voilabits-mediaconverterultimate", + "name": "Voilabits MediaConverterUltimate", + "url": "/v1/software/voilabits-mediaconverterultimate" + }, + { + "slug": "vokabel", + "name": "Vokabel", + "url": "/v1/software/vokabel" + }, + { + "slug": "volatility", + "name": "Volatility", + "url": "/v1/software/volatility" + }, + { + "slug": "volkswriter", + "name": "VolksWriter", + "url": "/v1/software/volkswriter" + }, + { + "slug": "volumill", + "name": "VoluMill", + "url": "/v1/software/volumill" + }, + { + "slug": "volume-logic", + "name": "Volume Logic", + "url": "/v1/software/volume-logic" + }, + { + "slug": "volunteer-smartphone-patrol", + "name": "Volunteer Smartphone Patrol", + "url": "/v1/software/volunteer-smartphone-patrol" + }, + { + "slug": "voodoopad", + "name": "VoodooPad", + "url": "/v1/software/voodoopad" + }, + { + "slug": "vopt", + "name": "Vopt", + "url": "/v1/software/vopt" + }, + { + "slug": "vorest", + "name": "Vorest", + "url": "/v1/software/vorest" + }, + { + "slug": "voronoi-diagram-with-word-embedding", + "name": "Voronoi Diagram with Word Embedding", + "url": "/v1/software/voronoi-diagram-with-word-embedding" + }, + { + "slug": "vowpal-wabbit", + "name": "Vowpal Wabbit", + "url": "/v1/software/vowpal-wabbit" + }, + { + "slug": "voxcribecc", + "name": "VoxcribeCC", + "url": "/v1/software/voxcribecc" + }, + { + "slug": "voxel-man", + "name": "Voxel-Man", + "url": "/v1/software/voxel-man" + }, + { + "slug": "voyager-2", + "name": "Voyager 2", + "url": "/v1/software/voyager-2" + }, + { + "slug": "voyant-2-0-bubblelines", + "name": "Voyant 2.0: Bubblelines", + "url": "/v1/software/voyant-2-0-bubblelines" + }, + { + "slug": "voyant-2-0-knots", + "name": "Voyant 2.0: Knots", + "url": "/v1/software/voyant-2-0-knots" + }, + { + "slug": "voyant-2-0-scatterplot", + "name": "Voyant 2.0: ScatterPlot", + "url": "/v1/software/voyant-2-0-scatterplot" + }, + { + "slug": "voyant-2-0-terms-radio", + "name": "Voyant 2.0: Terms Radio", + "url": "/v1/software/voyant-2-0-terms-radio" + }, + { + "slug": "voyant-corpus-grid", + "name": "Voyant Corpus Grid", + "url": "/v1/software/voyant-corpus-grid" + }, + { + "slug": "voyant-corpus-term-frequencies", + "name": "Voyant Corpus Term Frequencies", + "url": "/v1/software/voyant-corpus-term-frequencies" + }, + { + "slug": "voyant-document-kwics", + "name": "Voyant Document KWICs", + "url": "/v1/software/voyant-document-kwics" + }, + { + "slug": "voyant-document-term-frequencies", + "name": "Voyant Document Term Frequencies", + "url": "/v1/software/voyant-document-term-frequencies" + }, + { + "slug": "voyant-lava", + "name": "Voyant Lava", + "url": "/v1/software/voyant-lava" + }, + { + "slug": "voyant-links", + "name": "Voyant Links", + "url": "/v1/software/voyant-links" + }, + { + "slug": "voyant-reader", + "name": "Voyant Reader", + "url": "/v1/software/voyant-reader" + }, + { + "slug": "voyant-term-frequencies-chart", + "name": "Voyant Term Frequencies Chart", + "url": "/v1/software/voyant-term-frequencies-chart" + }, + { + "slug": "voyant-tools", + "name": "Voyant Tools", + "url": "/v1/software/voyant-tools" + }, + { + "slug": "vpmi", + "name": "Vpmi", + "url": "/v1/software/vpmi" + }, + { + "slug": "vsync-computing", + "name": "Vsync (computing)", + "url": "/v1/software/vsync-computing" + }, + { + "slug": "vuescan", + "name": "VueScan", + "url": "/v1/software/vuescan" + }, + { + "slug": "vugapay", + "name": "VugaPay", + "url": "/v1/software/vugapay" + }, + { + "slug": "vulcan", + "name": "Vulcan", + "url": "/v1/software/vulcan" + }, + { + "slug": "vulkan", + "name": "Vulkan", + "url": "/v1/software/vulkan" + }, + { + "slug": "vx32", + "name": "Vx32", + "url": "/v1/software/vx32" + }, + { + "slug": "vyomi", + "name": "Vyomi", + "url": "/v1/software/vyomi" + }, + { + "slug": "vzroom", + "name": "VzRoom", + "url": "/v1/software/vzroom" + }, + { + "slug": "v-ncolo-cms", + "name": "Víncolo CMS", + "url": "/v1/software/v-ncolo-cms" + }, + { + "slug": "w32tex", + "name": "W32TeX", + "url": "/v1/software/w32tex" + }, + { + "slug": "w3act", + "name": "W3Act", + "url": "/v1/software/w3act" + }, + { + "slug": "w3c-markup-validation-service", + "name": "W3C Markup Validation Service", + "url": "/v1/software/w3c-markup-validation-service" + }, + { + "slug": "w3c-rdf-validation-service", + "name": "W3C RDF Validation Service", + "url": "/v1/software/w3c-rdf-validation-service" + }, + { + "slug": "watcon", + "name": "WATCON", + "url": "/v1/software/watcon" + }, + { + "slug": "wave-web-accessibility-evaluation-tool", + "name": "WAVE web accessibility evaluation tool", + "url": "/v1/software/wave-web-accessibility-evaluation-tool" + }, + { + "slug": "wasp", + "name": "WAsP", + "url": "/v1/software/wasp" + }, + { + "slug": "wbstack", + "name": "WBStack", + "url": "/v1/software/wbstack" + }, + { + "slug": "wcf-data-services", + "name": "WCF Data Services", + "url": "/v1/software/wcf-data-services" + }, + { + "slug": "wdu", + "name": "WDU", + "url": "/v1/software/wdu" + }, + { + "slug": "weap", + "name": "WEAP", + "url": "/v1/software/weap" + }, + { + "slug": "what-if-software", + "name": "WHAT IF software", + "url": "/v1/software/what-if-software" + }, + { + "slug": "whdload", + "name": "WHDLoad", + "url": "/v1/software/whdload" + }, + { + "slug": "wid-tools-for-use-with-the-world-inequality-database", + "name": "WID: Tools for use with the World Inequality Database", + "url": "/v1/software/wid-tools-for-use-with-the-world-inequality-database" + }, + { + "slug": "wimats", + "name": "WIMATS", + "url": "/v1/software/wimats" + }, + { + "slug": "win-com", + "name": "WIN.COM", + "url": "/v1/software/win-com" + }, + { + "slug": "wine-etersoft", + "name": "WINE@Etersoft", + "url": "/v1/software/wine-etersoft" + }, + { + "slug": "wiscker", + "name": "WIScker", + "url": "/v1/software/wiscker" + }, + { + "slug": "wled", + "name": "WLED", + "url": "/v1/software/wled" + }, + { + "slug": "wma-convert", + "name": "WMA Convert", + "url": "/v1/software/wma-convert" + }, + { + "slug": "wms", + "name": "WMS", + "url": "/v1/software/wms" + }, + { + "slug": "words", + "name": "WORDS", + "url": "/v1/software/words" + }, + { + "slug": "wordij", + "name": "WORDij", + "url": "/v1/software/wordij" + }, + { + "slug": "worhp", + "name": "WORHP", + "url": "/v1/software/worhp" + }, + { + "slug": "wot-services", + "name": "WOT Services", + "url": "/v1/software/wot-services" + }, + { + "slug": "wp-engine", + "name": "WP Engine", + "url": "/v1/software/wp-engine" + }, + { + "slug": "wpforms", + "name": "WPForms", + "url": "/v1/software/wpforms" + }, + { + "slug": "wps-word-processor", + "name": "WPS Word Processor", + "url": "/v1/software/wps-word-processor" + }, + { + "slug": "wprime", + "name": "WPrime", + "url": "/v1/software/wprime" + }, + { + "slug": "wrpn-calculator", + "name": "WRPN Calculator", + "url": "/v1/software/wrpn-calculator" + }, + { + "slug": "wsus-offline-update", + "name": "WSUS Offline Update", + "url": "/v1/software/wsus-offline-update" + }, + { + "slug": "wtp-ejb-tools", + "name": "WTP EJB Tools", + "url": "/v1/software/wtp-ejb-tools" + }, + { + "slug": "wtp-incubator", + "name": "WTP Incubator", + "url": "/v1/software/wtp-incubator" + }, + { + "slug": "wtp-java-ee-tools", + "name": "WTP Java EE Tools", + "url": "/v1/software/wtp-java-ee-tools" + }, + { + "slug": "wtw", + "name": "WTW", + "url": "/v1/software/wtw" + }, + { + "slug": "wuhu", + "name": "WUHU", + "url": "/v1/software/wuhu" + }, + { + "slug": "wwiv", + "name": "WWIV", + "url": "/v1/software/wwiv" + }, + { + "slug": "wxp", + "name": "WXP", + "url": "/v1/software/wxp" + }, + { + "slug": "wysiwym", + "name": "WYSIWYM", + "url": "/v1/software/wysiwym" + }, + { + "slug": "wagtail", + "name": "Wagtail", + "url": "/v1/software/wagtail" + }, + { + "slug": "wajig", + "name": "Wajig", + "url": "/v1/software/wajig" + }, + { + "slug": "wakatoon", + "name": "Wakatoon", + "url": "/v1/software/wakatoon" + }, + { + "slug": "walkmygraph", + "name": "WalkMyGraph", + "url": "/v1/software/walkmygraph" + }, + { + "slug": "wall-street-option-bets", + "name": "Wall Street Option Bets", + "url": "/v1/software/wall-street-option-bets" + }, + { + "slug": "wallame", + "name": "WallaMe", + "url": "/v1/software/wallame" + }, + { + "slug": "wally", + "name": "Wally", + "url": "/v1/software/wally" + }, + { + "slug": "wandoujia", + "name": "Wandoujia", + "url": "/v1/software/wandoujia" + }, + { + "slug": "wang-sheeley-arge-model", + "name": "Wang–Sheeley–Arge model", + "url": "/v1/software/wang-sheeley-arge-model" + }, + { + "slug": "wardn-platform", + "name": "Wardn Platform", + "url": "/v1/software/wardn-platform" + }, + { + "slug": "warehouse", + "name": "Warehouse", + "url": "/v1/software/warehouse" + }, + { + "slug": "warp", + "name": "Warp", + "url": "/v1/software/warp" + }, + { + "slug": "warp3d", + "name": "Warp3D", + "url": "/v1/software/warp3d" + }, + { + "slug": "warppls", + "name": "WarpPLS", + "url": "/v1/software/warppls" + }, + { + "slug": "wartile", + "name": "Wartile", + "url": "/v1/software/wartile" + }, + { + "slug": "watchtower-library", + "name": "Watchtower Library", + "url": "/v1/software/watchtower-library" + }, + { + "slug": "watir", + "name": "Watir", + "url": "/v1/software/watir" + }, + { + "slug": "waveburner", + "name": "WaveBurner", + "url": "/v1/software/waveburner" + }, + { + "slug": "wavelab", + "name": "WaveLab", + "url": "/v1/software/wavelab" + }, + { + "slug": "wavepad-audio-editor-software", + "name": "WavePad Audio Editor Software", + "url": "/v1/software/wavepad-audio-editor-software" + }, + { + "slug": "wavebox", + "name": "Wavebox", + "url": "/v1/software/wavebox" + }, + { + "slug": "wavelet-turbulence", + "name": "Wavelet Turbulence", + "url": "/v1/software/wavelet-turbulence" + }, + { + "slug": "waves-platform", + "name": "Waves platform", + "url": "/v1/software/waves-platform" + }, + { + "slug": "way-of-the-red", + "name": "Way of the Red", + "url": "/v1/software/way-of-the-red" + }, + { + "slug": "waybar", + "name": "Waybar", + "url": "/v1/software/waybar" + }, + { + "slug": "we-create-problems", + "name": "We Create Problems", + "url": "/v1/software/we-create-problems" + }, + { + "slug": "we-the-people", + "name": "We the People", + "url": "/v1/software/we-the-people" + }, + { + "slug": "webwork", + "name": "WeBWorK", + "url": "/v1/software/webwork" + }, + { + "slug": "wemeet", + "name": "WeMeet", + "url": "/v1/software/wemeet" + }, + { + "slug": "weasis", + "name": "Weasis", + "url": "/v1/software/weasis" + }, + { + "slug": "weather-research-and-forecasting-model", + "name": "Weather Research and Forecasting model", + "url": "/v1/software/weather-research-and-forecasting-model" + }, + { + "slug": "weatherbug", + "name": "WeatherBug", + "url": "/v1/software/weatherbug" + }, + { + "slug": "web-dynpro", + "name": "Web Dynpro", + "url": "/v1/software/web-dynpro" + }, + { + "slug": "web-embedding-fonts-tool", + "name": "Web Embedding Fonts Tool", + "url": "/v1/software/web-embedding-fonts-tool" + }, + { + "slug": "web-platform-for-embedded", + "name": "Web Platform for Embedded", + "url": "/v1/software/web-platform-for-embedded" + }, + { + "slug": "web-services-invocation-framework", + "name": "Web Services Invocation Framework", + "url": "/v1/software/web-services-invocation-framework" + }, + { + "slug": "web-services-tools", + "name": "Web Services Tools", + "url": "/v1/software/web-services-tools" + }, + { + "slug": "web-tools-common", + "name": "Web Tools Common", + "url": "/v1/software/web-tools-common" + }, + { + "slug": "web-app-places-of-jewish-history", + "name": "Web-App »Places of Jewish history«", + "url": "/v1/software/web-app-places-of-jewish-history" + }, + { + "slug": "webanno", + "name": "WebAnno", + "url": "/v1/software/webanno" + }, + { + "slug": "webct", + "name": "WebCT", + "url": "/v1/software/webct" + }, + { + "slug": "webclust", + "name": "WebClust", + "url": "/v1/software/webclust" + }, + { + "slug": "webcore", + "name": "WebCore", + "url": "/v1/software/webcore" + }, + { + "slug": "webdev", + "name": "WebDev", + "url": "/v1/software/webdev" + }, + { + "slug": "webgl", + "name": "WebGL", + "url": "/v1/software/webgl" + }, + { + "slug": "webload", + "name": "WebLOAD", + "url": "/v1/software/webload" + }, + { + "slug": "weblicht", + "name": "WebLicht", + "url": "/v1/software/weblicht" + }, + { + "slug": "weblicht-namedentities-en", + "name": "WebLicht NamedEntities EN", + "url": "/v1/software/weblicht-namedentities-en" + }, + { + "slug": "webmathematics-interactive", + "name": "WebMathematics Interactive", + "url": "/v1/software/webmathematics-interactive" + }, + { + "slug": "webplotdigitizer", + "name": "WebPlotDigitizer", + "url": "/v1/software/webplotdigitizer" + }, + { + "slug": "webplus", + "name": "WebPlus", + "url": "/v1/software/webplus" + }, + { + "slug": "webrender", + "name": "WebRender", + "url": "/v1/software/webrender" + }, + { + "slug": "webstump", + "name": "WebSTUMP", + "url": "/v1/software/webstump" + }, + { + "slug": "webscarab", + "name": "WebScarab", + "url": "/v1/software/webscarab" + }, + { + "slug": "websharper", + "name": "WebSharper", + "url": "/v1/software/websharper" + }, + { + "slug": "website-php", + "name": "WebSite-PHP", + "url": "/v1/software/website-php" + }, + { + "slug": "webslides", + "name": "WebSlides", + "url": "/v1/software/webslides" + }, + { + "slug": "websphere-portal", + "name": "WebSphere Portal", + "url": "/v1/software/websphere-portal" + }, + { + "slug": "websty", + "name": "WebSty", + "url": "/v1/software/websty" + }, + { + "slug": "webweaver-suite", + "name": "WebWeaver Suite", + "url": "/v1/software/webweaver-suite" + }, + { + "slug": "webwhacker", + "name": "WebWhacker", + "url": "/v1/software/webwhacker" + }, + { + "slug": "webyetu", + "name": "WebYetu", + "url": "/v1/software/webyetu" + }, + { + "slug": "webbie", + "name": "WebbIE", + "url": "/v1/software/webbie" + }, + { + "slug": "webcam-social-shopper", + "name": "Webcam Social Shopper", + "url": "/v1/software/webcam-social-shopper" + }, + { + "slug": "weblocks", + "name": "Weblocks", + "url": "/v1/software/weblocks" + }, + { + "slug": "webroot-window-washer", + "name": "Webroot Window Washer", + "url": "/v1/software/webroot-window-washer" + }, + { + "slug": "webtag", + "name": "Webtag", + "url": "/v1/software/webtag" + }, + { + "slug": "webtools-releng", + "name": "Webtools Releng", + "url": "/v1/software/webtools-releng" + }, + { + "slug": "webtoon", + "name": "Webtoon", + "url": "/v1/software/webtoon" + }, + { + "slug": "webtrekk", + "name": "Webtrekk", + "url": "/v1/software/webtrekk" + }, + { + "slug": "wedoist", + "name": "Wedoist", + "url": "/v1/software/wedoist" + }, + { + "slug": "weektodo", + "name": "Weektodo", + "url": "/v1/software/weektodo" + }, + { + "slug": "weft-qda", + "name": "Weft QDA", + "url": "/v1/software/weft-qda" + }, + { + "slug": "weihenstephan-standards", + "name": "Weihenstephan Standards", + "url": "/v1/software/weihenstephan-standards" + }, + { + "slug": "weiyun", + "name": "Weiyun", + "url": "/v1/software/weiyun" + }, + { + "slug": "wenlin-software-for-learning-chinese", + "name": "Wenlin Software for learning Chinese", + "url": "/v1/software/wenlin-software-for-learning-chinese" + }, + { + "slug": "weverse", + "name": "Weverse", + "url": "/v1/software/weverse" + }, + { + "slug": "whatpulse", + "name": "WhatPulse", + "url": "/v1/software/whatpulse" + }, + { + "slug": "whatizit", + "name": "Whatizit", + "url": "/v1/software/whatizit" + }, + { + "slug": "whenu-savenow", + "name": "WhenU SaveNow", + "url": "/v1/software/whenu-savenow" + }, + { + "slug": "wherigo", + "name": "Wherigo", + "url": "/v1/software/wherigo" + }, + { + "slug": "whiskercontrol", + "name": "WhiskerControl", + "url": "/v1/software/whiskercontrol" + }, + { + "slug": "whisper", + "name": "Whisper", + "url": "/v1/software/whisper" + }, + { + "slug": "whistle-im", + "name": "Whistle.im", + "url": "/v1/software/whistle-im" + }, + { + "slug": "white-knight", + "name": "White Knight", + "url": "/v1/software/white-knight" + }, + { + "slug": "whitewater-resource-editor", + "name": "Whitewater Resource Editor", + "url": "/v1/software/whitewater-resource-editor" + }, + { + "slug": "whizfolders", + "name": "Whizfolders", + "url": "/v1/software/whizfolders" + }, + { + "slug": "whoscall", + "name": "Whoscall", + "url": "/v1/software/whoscall" + }, + { + "slug": "whyiq", + "name": "WhyIQ", + "url": "/v1/software/whyiq" + }, + { + "slug": "wifi-explorer", + "name": "WiFi Explorer", + "url": "/v1/software/wifi-explorer" + }, + { + "slug": "wifi-master-key", + "name": "WiFi Master Key", + "url": "/v1/software/wifi-master-key" + }, + { + "slug": "wifi-where", + "name": "WiFi-Where", + "url": "/v1/software/wifi-where" + }, + { + "slug": "wifidog-captive-portal", + "name": "WiFiDog Captive Portal", + "url": "/v1/software/wifidog-captive-portal" + }, + { + "slug": "wimp", + "name": "WiMP", + "url": "/v1/software/wimp" + }, + { + "slug": "wideangle", + "name": "WideAngle", + "url": "/v1/software/wideangle" + }, + { + "slug": "widers", + "name": "Widers", + "url": "/v1/software/widers" + }, + { + "slug": "wiggio", + "name": "Wiggio", + "url": "/v1/software/wiggio" + }, + { + "slug": "wii-message-board", + "name": "Wii Message Board", + "url": "/v1/software/wii-message-board" + }, + { + "slug": "wii-no-ma", + "name": "Wii no Ma", + "url": "/v1/software/wii-no-ma" + }, + { + "slug": "wiki-server", + "name": "Wiki Server", + "url": "/v1/software/wiki-server" + }, + { + "slug": "wiki-watch", + "name": "Wiki-Watch", + "url": "/v1/software/wiki-watch" + }, + { + "slug": "wikiblame", + "name": "WikiBlame", + "url": "/v1/software/wikiblame" + }, + { + "slug": "wikiloop-battlefield", + "name": "WikiLoop Battlefield", + "url": "/v1/software/wikiloop-battlefield" + }, + { + "slug": "wikinodes", + "name": "WikiNodes", + "url": "/v1/software/wikinodes" + }, + { + "slug": "wikipack", + "name": "WikiPack", + "url": "/v1/software/wikipack" + }, + { + "slug": "wikipock", + "name": "WikiPock", + "url": "/v1/software/wikipock" + }, + { + "slug": "wikireading", + "name": "WikiReading", + "url": "/v1/software/wikireading" + }, + { + "slug": "wikiserver", + "name": "WikiServer", + "url": "/v1/software/wikiserver" + }, + { + "slug": "wikitaxi", + "name": "WikiTaxi", + "url": "/v1/software/wikitaxi" + }, + { + "slug": "wikibasesync", + "name": "WikibaseSync", + "url": "/v1/software/wikibasesync" + }, + { + "slug": "wikidata-concepts-monitor", + "name": "Wikidata Concepts Monitor", + "url": "/v1/software/wikidata-concepts-monitor" + }, + { + "slug": "wikidata-missing-pictures", + "name": "Wikidata Missing Pictures", + "url": "/v1/software/wikidata-missing-pictures" + }, + { + "slug": "wikidatamap", + "name": "WikidataMap", + "url": "/v1/software/wikidatamap" + }, + { + "slug": "wikilingue", + "name": "Wikilingue", + "url": "/v1/software/wikilingue" + }, + { + "slug": "wikimedia-integration", + "name": "Wikimedia Integration", + "url": "/v1/software/wikimedia-integration" + }, + { + "slug": "wikimedia-meet", + "name": "Wikimedia Meet", + "url": "/v1/software/wikimedia-meet" + }, + { + "slug": "wikitude", + "name": "Wikitude", + "url": "/v1/software/wikitude" + }, + { + "slug": "wikiwand", + "name": "Wikiwand", + "url": "/v1/software/wikiwand" + }, + { + "slug": "wikyblog", + "name": "WikyBlog", + "url": "/v1/software/wikyblog" + }, + { + "slug": "wildfiresua", + "name": "WildFiresUA", + "url": "/v1/software/wildfiresua" + }, + { + "slug": "wildcat-bbs", + "name": "Wildcat! BBS", + "url": "/v1/software/wildcat-bbs" + }, + { + "slug": "wildfire-interactive", + "name": "Wildfire Interactive", + "url": "/v1/software/wildfire-interactive" + }, + { + "slug": "win4lin", + "name": "Win4Lin", + "url": "/v1/software/win4lin" + }, + { + "slug": "winape", + "name": "WinAPE", + "url": "/v1/software/winape" + }, + { + "slug": "winapioverride", + "name": "WinAPIOverride", + "url": "/v1/software/winapioverride" + }, + { + "slug": "winavr", + "name": "WinAVR", + "url": "/v1/software/winavr" + }, + { + "slug": "winbraille", + "name": "WinBraille", + "url": "/v1/software/winbraille" + }, + { + "slug": "winbtrfs", + "name": "WinBtrfs", + "url": "/v1/software/winbtrfs" + }, + { + "slug": "winbuilder", + "name": "WinBuilder", + "url": "/v1/software/winbuilder" + }, + { + "slug": "windev", + "name": "WinDev", + "url": "/v1/software/windev" + }, + { + "slug": "windev-mobile", + "name": "WinDev Mobile", + "url": "/v1/software/windev-mobile" + }, + { + "slug": "windiff", + "name": "WinDiff", + "url": "/v1/software/windiff" + }, + { + "slug": "wineds-election-database-system", + "name": "WinEDS Election Database System", + "url": "/v1/software/wineds-election-database-system" + }, + { + "slug": "winfax", + "name": "WinFax", + "url": "/v1/software/winfax" + }, + { + "slug": "winfuture-xp-iso-builder", + "name": "WinFuture xp-Iso-Builder", + "url": "/v1/software/winfuture-xp-iso-builder" + }, + { + "slug": "wingx", + "name": "WinGX", + "url": "/v1/software/wingx" + }, + { + "slug": "wingate", + "name": "WinGate", + "url": "/v1/software/wingate" + }, + { + "slug": "wingeno", + "name": "WinGeno", + "url": "/v1/software/wingeno" + }, + { + "slug": "winimage", + "name": "WinImage", + "url": "/v1/software/winimage" + }, + { + "slug": "winlibre", + "name": "WinLibre", + "url": "/v1/software/winlibre" + }, + { + "slug": "winmx", + "name": "WinMX", + "url": "/v1/software/winmx" + }, + { + "slug": "winnc", + "name": "WinNc", + "url": "/v1/software/winnc" + }, + { + "slug": "winpcap", + "name": "WinPcap", + "url": "/v1/software/winpcap" + }, + { + "slug": "winpolis", + "name": "WinPolis", + "url": "/v1/software/winpolis" + }, + { + "slug": "winrelan", + "name": "WinRelan", + "url": "/v1/software/winrelan" + }, + { + "slug": "winshell", + "name": "WinShell", + "url": "/v1/software/winshell" + }, + { + "slug": "winstars", + "name": "WinStars", + "url": "/v1/software/winstars" + }, + { + "slug": "winsysanalyzer", + "name": "WinSysAnalyzer", + "url": "/v1/software/winsysanalyzer" + }, + { + "slug": "winticket", + "name": "WinTicket", + "url": "/v1/software/winticket" + }, + { + "slug": "winusb", + "name": "WinUSB", + "url": "/v1/software/winusb" + }, + { + "slug": "winwap", + "name": "WinWAP", + "url": "/v1/software/winwap" + }, + { + "slug": "winx-mediatrans", + "name": "WinX MediaTrans", + "url": "/v1/software/winx-mediatrans" + }, + { + "slug": "winbatch", + "name": "Winbatch", + "url": "/v1/software/winbatch" + }, + { + "slug": "windsim", + "name": "WindSim", + "url": "/v1/software/windsim" + }, + { + "slug": "windstation", + "name": "WindStation", + "url": "/v1/software/windstation" + }, + { + "slug": "windchill", + "name": "Windchill", + "url": "/v1/software/windchill" + }, + { + "slug": "windowbase", + "name": "WindowBase", + "url": "/v1/software/windowbase" + }, + { + "slug": "windowblinds", + "name": "WindowBlinds", + "url": "/v1/software/windowblinds" + }, + { + "slug": "windowfx", + "name": "WindowFX", + "url": "/v1/software/windowfx" + }, + { + "slug": "windowlab", + "name": "WindowLab", + "url": "/v1/software/windowlab" + }, + { + "slug": "windowphone", + "name": "WindowPhone", + "url": "/v1/software/windowphone" + }, + { + "slug": "windows-activation-technology", + "name": "Windows Activation Technology", + "url": "/v1/software/windows-activation-technology" + }, + { + "slug": "windows-address-book", + "name": "Windows Address Book", + "url": "/v1/software/windows-address-book" + }, + { + "slug": "windows-admin-center", + "name": "Windows Admin Center", + "url": "/v1/software/windows-admin-center" + }, + { + "slug": "windows-anytime-upgrade", + "name": "Windows Anytime Upgrade", + "url": "/v1/software/windows-anytime-upgrade" + }, + { + "slug": "windows-automated-installation-kit", + "name": "Windows Automated Installation Kit", + "url": "/v1/software/windows-automated-installation-kit" + }, + { + "slug": "windows-azure-appfabric", + "name": "Windows Azure AppFabric", + "url": "/v1/software/windows-azure-appfabric" + }, + { + "slug": "windows-azure-websites", + "name": "Windows Azure Websites", + "url": "/v1/software/windows-azure-websites" + }, + { + "slug": "windows-backup", + "name": "Windows Backup", + "url": "/v1/software/windows-backup" + }, + { + "slug": "windows-cardspace", + "name": "Windows CardSpace", + "url": "/v1/software/windows-cardspace" + }, + { + "slug": "windows-chat", + "name": "Windows Chat", + "url": "/v1/software/windows-chat" + }, + { + "slug": "windows-dvd-maker", + "name": "Windows DVD Maker", + "url": "/v1/software/windows-dvd-maker" + }, + { + "slug": "windows-desktop-gadgets", + "name": "Windows Desktop Gadgets", + "url": "/v1/software/windows-desktop-gadgets" + }, + { + "slug": "windows-dreamscene", + "name": "Windows DreamScene", + "url": "/v1/software/windows-dreamscene" + }, + { + "slug": "windows-easy-transfer", + "name": "Windows Easy Transfer", + "url": "/v1/software/windows-easy-transfer" + }, + { + "slug": "windows-fax-and-scan", + "name": "Windows Fax and Scan", + "url": "/v1/software/windows-fax-and-scan" + }, + { + "slug": "windows-firewall", + "name": "Windows Firewall", + "url": "/v1/software/windows-firewall" + }, + { + "slug": "windows-genuine-advantage", + "name": "Windows Genuine Advantage", + "url": "/v1/software/windows-genuine-advantage" + }, + { + "slug": "windows-hpc-server-2008", + "name": "Windows HPC Server 2008", + "url": "/v1/software/windows-hpc-server-2008" + }, + { + "slug": "windows-hardware-lab-kit", + "name": "Windows Hardware Lab Kit", + "url": "/v1/software/windows-hardware-lab-kit" + }, + { + "slug": "windows-hello", + "name": "Windows Hello", + "url": "/v1/software/windows-hello" + }, + { + "slug": "windows-hello-for-business", + "name": "Windows Hello for Business", + "url": "/v1/software/windows-hello-for-business" + }, + { + "slug": "windows-help-viewer", + "name": "Windows Help Viewer", + "url": "/v1/software/windows-help-viewer" + }, + { + "slug": "windows-imaging-component", + "name": "Windows Imaging Component", + "url": "/v1/software/windows-imaging-component" + }, + { + "slug": "windows-ink", + "name": "Windows Ink", + "url": "/v1/software/windows-ink" + }, + { + "slug": "windows-insider", + "name": "Windows Insider", + "url": "/v1/software/windows-insider" + }, + { + "slug": "windows-installer", + "name": "Windows Installer", + "url": "/v1/software/windows-installer" + }, + { + "slug": "windows-journal", + "name": "Windows Journal", + "url": "/v1/software/windows-journal" + }, + { + "slug": "windows-libraries-for-os-2", + "name": "Windows Libraries for OS/2", + "url": "/v1/software/windows-libraries-for-os-2" + }, + { + "slug": "windows-live-admin-center", + "name": "Windows Live Admin Center", + "url": "/v1/software/windows-live-admin-center" + }, + { + "slug": "windows-live-agents", + "name": "Windows Live Agents", + "url": "/v1/software/windows-live-agents" + }, + { + "slug": "windows-live-alerts", + "name": "Windows Live Alerts", + "url": "/v1/software/windows-live-alerts" + }, + { + "slug": "windows-live-barcode", + "name": "Windows Live Barcode", + "url": "/v1/software/windows-live-barcode" + }, + { + "slug": "windows-live-call", + "name": "Windows Live Call", + "url": "/v1/software/windows-live-call" + }, + { + "slug": "windows-live-devices", + "name": "Windows Live Devices", + "url": "/v1/software/windows-live-devices" + }, + { + "slug": "windows-live-events", + "name": "Windows Live Events", + "url": "/v1/software/windows-live-events" + }, + { + "slug": "windows-live-expo", + "name": "Windows Live Expo", + "url": "/v1/software/windows-live-expo" + }, + { + "slug": "windows-live-favorites", + "name": "Windows Live Favorites", + "url": "/v1/software/windows-live-favorites" + }, + { + "slug": "windows-live-frameit", + "name": "Windows Live FrameIt", + "url": "/v1/software/windows-live-frameit" + }, + { + "slug": "windows-live-gallery", + "name": "Windows Live Gallery", + "url": "/v1/software/windows-live-gallery" + }, + { + "slug": "windows-live-groups", + "name": "Windows Live Groups", + "url": "/v1/software/windows-live-groups" + }, + { + "slug": "windows-live-onecare", + "name": "Windows Live OneCare", + "url": "/v1/software/windows-live-onecare" + }, + { + "slug": "windows-live-personalized-experience", + "name": "Windows Live Personalized Experience", + "url": "/v1/software/windows-live-personalized-experience" + }, + { + "slug": "windows-live-profile", + "name": "Windows Live Profile", + "url": "/v1/software/windows-live-profile" + }, + { + "slug": "windows-live-shopping", + "name": "Windows Live Shopping", + "url": "/v1/software/windows-live-shopping" + }, + { + "slug": "windows-live-spaces", + "name": "Windows Live Spaces", + "url": "/v1/software/windows-live-spaces" + }, + { + "slug": "windows-live-tv", + "name": "Windows Live TV", + "url": "/v1/software/windows-live-tv" + }, + { + "slug": "windows-live-video-messages", + "name": "Windows Live Video Messages", + "url": "/v1/software/windows-live-video-messages" + }, + { + "slug": "windows-management-framework", + "name": "Windows Management Framework", + "url": "/v1/software/windows-management-framework" + }, + { + "slug": "windows-marketplace-for-mobile", + "name": "Windows Marketplace for Mobile", + "url": "/v1/software/windows-marketplace-for-mobile" + }, + { + "slug": "windows-media-components-for-quicktime", + "name": "Windows Media Components for QuickTime", + "url": "/v1/software/windows-media-components-for-quicktime" + }, + { + "slug": "windows-media-feature-pack", + "name": "Windows Media Feature Pack", + "url": "/v1/software/windows-media-feature-pack" + }, + { + "slug": "windows-media-player-version-10", + "name": "Windows Media Player, version 10", + "url": "/v1/software/windows-media-player-version-10" + }, + { + "slug": "windows-media-player-version-11", + "name": "Windows Media Player, version 11", + "url": "/v1/software/windows-media-player-version-11" + }, + { + "slug": "windows-media-player-version-12", + "name": "Windows Media Player, version 12", + "url": "/v1/software/windows-media-player-version-12" + }, + { + "slug": "windows-media-player-version-6-4", + "name": "Windows Media Player, version 6.4", + "url": "/v1/software/windows-media-player-version-6-4" + }, + { + "slug": "windows-media-player-version-7", + "name": "Windows Media Player, version 7", + "url": "/v1/software/windows-media-player-version-7" + }, + { + "slug": "windows-media-player-version-8", + "name": "Windows Media Player, version 8", + "url": "/v1/software/windows-media-player-version-8" + }, + { + "slug": "windows-media-player-version-9", + "name": "Windows Media Player, version 9", + "url": "/v1/software/windows-media-player-version-9" + }, + { + "slug": "windows-messaging", + "name": "Windows Messaging", + "url": "/v1/software/windows-messaging" + }, + { + "slug": "windows-mixed-reality", + "name": "Windows Mixed Reality", + "url": "/v1/software/windows-mixed-reality" + }, + { + "slug": "windows-mobile-device-center", + "name": "Windows Mobile Device Center", + "url": "/v1/software/windows-mobile-device-center" + }, + { + "slug": "windows-mobility-center", + "name": "Windows Mobility Center", + "url": "/v1/software/windows-mobility-center" + }, + { + "slug": "windows-multimedia-extensions", + "name": "Windows Multimedia Extensions", + "url": "/v1/software/windows-multimedia-extensions" + }, + { + "slug": "windows-photo-gallery", + "name": "Windows Photo Gallery", + "url": "/v1/software/windows-photo-gallery" + }, + { + "slug": "windows-picture-and-fax-viewer", + "name": "Windows Picture and Fax Viewer", + "url": "/v1/software/windows-picture-and-fax-viewer" + }, + { + "slug": "windows-process-activation-services", + "name": "Windows Process Activation Services", + "url": "/v1/software/windows-process-activation-services" + }, + { + "slug": "windows-recovery-environment", + "name": "Windows Recovery Environment", + "url": "/v1/software/windows-recovery-environment" + }, + { + "slug": "windows-remote-assistance", + "name": "Windows Remote Assistance", + "url": "/v1/software/windows-remote-assistance" + }, + { + "slug": "windows-remote-management", + "name": "Windows Remote Management", + "url": "/v1/software/windows-remote-management" + }, + { + "slug": "windows-server-update-services", + "name": "Windows Server Update Services", + "url": "/v1/software/windows-server-update-services" + }, + { + "slug": "windows-setup", + "name": "Windows Setup", + "url": "/v1/software/windows-setup" + }, + { + "slug": "windows-sideshow", + "name": "Windows SideShow", + "url": "/v1/software/windows-sideshow" + }, + { + "slug": "windows-speech-recognition", + "name": "Windows Speech Recognition", + "url": "/v1/software/windows-speech-recognition" + }, + { + "slug": "windows-spotlight", + "name": "Windows Spotlight", + "url": "/v1/software/windows-spotlight" + }, + { + "slug": "windows-support-tools", + "name": "Windows Support Tools", + "url": "/v1/software/windows-support-tools" + }, + { + "slug": "windows-system-assessment-tool", + "name": "Windows System Assessment Tool", + "url": "/v1/software/windows-system-assessment-tool" + }, + { + "slug": "windows-system-resource-manager", + "name": "Windows System Resource Manager", + "url": "/v1/software/windows-system-resource-manager" + }, + { + "slug": "windows-task-scheduler", + "name": "Windows Task Scheduler", + "url": "/v1/software/windows-task-scheduler" + }, + { + "slug": "windows-to-go", + "name": "Windows To Go", + "url": "/v1/software/windows-to-go" + }, + { + "slug": "windows-ultimate-extras", + "name": "Windows Ultimate Extras", + "url": "/v1/software/windows-ultimate-extras" + }, + { + "slug": "windows-update-minitool", + "name": "Windows Update MiniTool", + "url": "/v1/software/windows-update-minitool" + }, + { + "slug": "windows-virtual-pc-q9375168", + "name": "Windows Virtual PC", + "url": "/v1/software/windows-virtual-pc-q9375168" + }, + { + "slug": "windows-virtual-pc", + "name": "Windows Virtual PC", + "url": "/v1/software/windows-virtual-pc" + }, + { + "slug": "windowsscope", + "name": "WindowsSCOPE", + "url": "/v1/software/windowsscope" + }, + { + "slug": "windump", + "name": "Windump", + "url": "/v1/software/windump" + }, + { + "slug": "wine-staging", + "name": "Wine-Staging", + "url": "/v1/software/wine-staging" + }, + { + "slug": "winegui", + "name": "WineGUI", + "url": "/v1/software/winegui" + }, + { + "slug": "winhound", + "name": "Winhound", + "url": "/v1/software/winhound" + }, + { + "slug": "wink-q21041373", + "name": "Wink", + "url": "/v1/software/wink-q21041373" + }, + { + "slug": "wink", + "name": "Wink", + "url": "/v1/software/wink" + }, + { + "slug": "winmostar", + "name": "Winmostar", + "url": "/v1/software/winmostar" + }, + { + "slug": "winplot", + "name": "Winplot", + "url": "/v1/software/winplot" + }, + { + "slug": "winyl", + "name": "Winyl", + "url": "/v1/software/winyl" + }, + { + "slug": "wipersoft", + "name": "WiperSoft", + "url": "/v1/software/wipersoft" + }, + { + "slug": "wirefusion", + "name": "WireFusion", + "url": "/v1/software/wirefusion" + }, + { + "slug": "wirecast", + "name": "Wirecast", + "url": "/v1/software/wirecast" + }, + { + "slug": "wireframesketcher", + "name": "WireframeSketcher", + "url": "/v1/software/wireframesketcher" + }, + { + "slug": "wireless-information-system-for-emergency-responders", + "name": "Wireless Information System for Emergency Responders", + "url": "/v1/software/wireless-information-system-for-emergency-responders" + }, + { + "slug": "wisdom", + "name": "Wisdom", + "url": "/v1/software/wisdom" + }, + { + "slug": "wisex", + "name": "WiseX", + "url": "/v1/software/wisex" + }, + { + "slug": "wiseyield", + "name": "WiseYield", + "url": "/v1/software/wiseyield" + }, + { + "slug": "wisej-net", + "name": "Wisej.NET", + "url": "/v1/software/wisej-net" + }, + { + "slug": "wisely", + "name": "Wisely", + "url": "/v1/software/wisely" + }, + { + "slug": "wisgoon", + "name": "Wisgoon", + "url": "/v1/software/wisgoon" + }, + { + "slug": "wish-generator", + "name": "Wish Generator", + "url": "/v1/software/wish-generator" + }, + { + "slug": "wisski", + "name": "WissKI", + "url": "/v1/software/wisski" + }, + { + "slug": "witscript", + "name": "Witscript", + "url": "/v1/software/witscript" + }, + { + "slug": "wizfolio", + "name": "WizFolio", + "url": "/v1/software/wizfolio" + }, + { + "slug": "wiztrust", + "name": "Wiztrust", + "url": "/v1/software/wiztrust" + }, + { + "slug": "wiztrust-protect", + "name": "Wiztrust Protect", + "url": "/v1/software/wiztrust-protect" + }, + { + "slug": "wmcalclock", + "name": "WmCalClock", + "url": "/v1/software/wmcalclock" + }, + { + "slug": "wmatrix", + "name": "Wmatrix", + "url": "/v1/software/wmatrix" + }, + { + "slug": "wow64", + "name": "WoW64", + "url": "/v1/software/wow64" + }, + { + "slug": "woflan", + "name": "Woflan", + "url": "/v1/software/woflan" + }, + { + "slug": "wolfram-demonstrations-project", + "name": "Wolfram Demonstrations Project", + "url": "/v1/software/wolfram-demonstrations-project" + }, + { + "slug": "wolfram-finance-platform", + "name": "Wolfram Finance Platform", + "url": "/v1/software/wolfram-finance-platform" + }, + { + "slug": "wolfram-language", + "name": "Wolfram Language", + "url": "/v1/software/wolfram-language" + }, + { + "slug": "wombo", + "name": "Wombo", + "url": "/v1/software/wombo" + }, + { + "slug": "wonderbuild", + "name": "WonderBuild", + "url": "/v1/software/wonderbuild" + }, + { + "slug": "wondercheck", + "name": "WonderCheck", + "url": "/v1/software/wondercheck" + }, + { + "slug": "wonderfence", + "name": "WonderFence", + "url": "/v1/software/wonderfence" + }, + { + "slug": "wondersuite", + "name": "WonderSuite", + "url": "/v1/software/wondersuite" + }, + { + "slug": "woningdossier", + "name": "Woningdossier", + "url": "/v1/software/woningdossier" + }, + { + "slug": "wooclap", + "name": "Wooclap", + "url": "/v1/software/wooclap" + }, + { + "slug": "woofz", + "name": "Woofz", + "url": "/v1/software/woofz" + }, + { + "slug": "woophy", + "name": "Woophy", + "url": "/v1/software/woophy" + }, + { + "slug": "wopee-io", + "name": "Wopee.io", + "url": "/v1/software/wopee-io" + }, + { + "slug": "word-art-makewordart", + "name": "Word Art (MakeWordArt)", + "url": "/v1/software/word-art-makewordart" + }, + { + "slug": "word-circuits-connection-muse", + "name": "Word Circuits Connection Muse", + "url": "/v1/software/word-circuits-connection-muse" + }, + { + "slug": "word-lens", + "name": "Word Lens", + "url": "/v1/software/word-lens" + }, + { + "slug": "word-and-phrase", + "name": "Word and Phrase", + "url": "/v1/software/word-and-phrase" + }, + { + "slug": "word-for-ios", + "name": "Word for iOS", + "url": "/v1/software/word-for-ios" + }, + { + "slug": "wordcruncher", + "name": "WordCruncher", + "url": "/v1/software/wordcruncher" + }, + { + "slug": "wordfreak", + "name": "WordFreak", + "url": "/v1/software/wordfreak" + }, + { + "slug": "wordhoard", + "name": "WordHoard", + "url": "/v1/software/wordhoard" + }, + { + "slug": "wordhub", + "name": "WordHub", + "url": "/v1/software/wordhub" + }, + { + "slug": "wordnetloom", + "name": "WordNetLoom", + "url": "/v1/software/wordnetloom" + }, + { + "slug": "wordq-speakq", + "name": "WordQ+SpeakQ", + "url": "/v1/software/wordq-speakq" + }, + { + "slug": "wordseer", + "name": "WordSeer", + "url": "/v1/software/wordseer" + }, + { + "slug": "wordstar-for-ms-dos", + "name": "WordStar for MS-DOS", + "url": "/v1/software/wordstar-for-ms-dos" + }, + { + "slug": "wordstat", + "name": "WordStat", + "url": "/v1/software/wordstat" + }, + { + "slug": "wordwanderer", + "name": "WordWanderer", + "url": "/v1/software/wordwanderer" + }, + { + "slug": "wordweb", + "name": "WordWeb", + "url": "/v1/software/wordweb" + }, + { + "slug": "wordwise", + "name": "WordWise", + "url": "/v1/software/wordwise" + }, + { + "slug": "wordfast", + "name": "Wordfast", + "url": "/v1/software/wordfast" + }, + { + "slug": "wordle", + "name": "Wordle", + "url": "/v1/software/wordle" + }, + { + "slug": "wordtrans", + "name": "Wordtrans", + "url": "/v1/software/wordtrans" + }, + { + "slug": "wordtune", + "name": "Wordtune", + "url": "/v1/software/wordtune" + }, + { + "slug": "workplan", + "name": "WorkPLAN", + "url": "/v1/software/workplan" + }, + { + "slug": "workflowgen", + "name": "WorkflowGen", + "url": "/v1/software/workflowgen" + }, + { + "slug": "workforce-kye", + "name": "Workforce (KYE)", + "url": "/v1/software/workforce-kye" + }, + { + "slug": "workgroup-manager", + "name": "Workgroup Manager", + "url": "/v1/software/workgroup-manager" + }, + { + "slug": "working-model", + "name": "Working Model", + "url": "/v1/software/working-model" + }, + { + "slug": "workouts", + "name": "Workouts", + "url": "/v1/software/workouts" + }, + { + "slug": "workplace-from-meta", + "name": "Workplace from Meta", + "url": "/v1/software/workplace-from-meta" + }, + { + "slug": "world-programming-system", + "name": "World Programming System", + "url": "/v1/software/world-programming-system" + }, + { + "slug": "worldmap", + "name": "WorldMap", + "url": "/v1/software/worldmap" + }, + { + "slug": "worldscript", + "name": "WorldScript", + "url": "/v1/software/worldscript" + }, + { + "slug": "worldwide-telescope", + "name": "WorldWide Telescope", + "url": "/v1/software/worldwide-telescope" + }, + { + "slug": "worlds-chat", + "name": "Worlds chat", + "url": "/v1/software/worlds-chat" + }, + { + "slug": "worldsaway", + "name": "WorldsAway", + "url": "/v1/software/worldsaway" + }, + { + "slug": "worldwide-boxing-manager", + "name": "Worldwide Boxing Manager", + "url": "/v1/software/worldwide-boxing-manager" + }, + { + "slug": "wound-care-simulation", + "name": "Wound Care Simulation", + "url": "/v1/software/wound-care-simulation" + }, + { + "slug": "wowza-streaming-engine", + "name": "Wowza Streaming Engine", + "url": "/v1/software/wowza-streaming-engine" + }, + { + "slug": "wrangler", + "name": "Wrangler", + "url": "/v1/software/wrangler" + }, + { + "slug": "write", + "name": "Write!", + "url": "/v1/software/write" + }, + { + "slug": "writeonline", + "name": "WriteOnline", + "url": "/v1/software/writeonline" + }, + { + "slug": "writeroom", + "name": "WriteRoom", + "url": "/v1/software/writeroom" + }, + { + "slug": "writeboard", + "name": "Writeboard", + "url": "/v1/software/writeboard" + }, + { + "slug": "writefull", + "name": "Writefull", + "url": "/v1/software/writefull" + }, + { + "slug": "wterm", + "name": "Wterm", + "url": "/v1/software/wterm" + }, + { + "slug": "wu-dao", + "name": "Wu Dao", + "url": "/v1/software/wu-dao" + }, + { + "slug": "wufoo", + "name": "Wufoo", + "url": "/v1/software/wufoo" + }, + { + "slug": "wyberai", + "name": "WyberAi", + "url": "/v1/software/wyberai" + }, + { + "slug": "wyldfire", + "name": "Wyldfire", + "url": "/v1/software/wyldfire" + }, + { + "slug": "wyzo", + "name": "Wyzo", + "url": "/v1/software/wyzo" + }, + { + "slug": "x-rendering-extension", + "name": "X Rendering Extension", + "url": "/v1/software/x-rendering-extension" + }, + { + "slug": "x-display-manager", + "name": "X display manager", + "url": "/v1/software/x-display-manager" + }, + { + "slug": "x-keyboard-extension", + "name": "X keyboard extension", + "url": "/v1/software/x-keyboard-extension" + }, + { + "slug": "x-session-manager", + "name": "X session manager", + "url": "/v1/software/x-session-manager" + }, + { + "slug": "x-video-extension", + "name": "X video extension", + "url": "/v1/software/x-video-extension" + }, + { + "slug": "x-12-arima", + "name": "X-12-ARIMA", + "url": "/v1/software/x-12-arima" + }, + { + "slug": "x-chat-aqua", + "name": "X-Chat Aqua", + "url": "/v1/software/x-chat-aqua" + }, + { + "slug": "x-lite", + "name": "X-Lite", + "url": "/v1/software/x-lite" + }, + { + "slug": "x-plor", + "name": "X-PLOR", + "url": "/v1/software/x-plor" + }, + { + "slug": "x-ray", + "name": "X-Ray", + "url": "/v1/software/x-ray" + }, + { + "slug": "x-road", + "name": "X-Road", + "url": "/v1/software/x-road" + }, + { + "slug": "x-notifier", + "name": "X-notifier", + "url": "/v1/software/x-notifier" + }, + { + "slug": "x64dbg", + "name": "X64dbg", + "url": "/v1/software/x64dbg" + }, + { + "slug": "xamlpad", + "name": "XAMLPad", + "url": "/v1/software/xamlpad" + }, + { + "slug": "xbrl-gl", + "name": "XBRL GL", + "url": "/v1/software/xbrl-gl" + }, + { + "slug": "xcarat", + "name": "XCARAT", + "url": "/v1/software/xcarat" + }, + { + "slug": "xcms-online", + "name": "XCMS Online", + "url": "/v1/software/xcms-online" + }, + { + "slug": "xcopy-deployment", + "name": "XCOPY deployment", + "url": "/v1/software/xcopy-deployment" + }, + { + "slug": "xep", + "name": "XEP", + "url": "/v1/software/xep" + }, + { + "slug": "xephem", + "name": "XEphem", + "url": "/v1/software/xephem" + }, + { + "slug": "xhronos", + "name": "XHRONOS", + "url": "/v1/software/xhronos" + }, + { + "slug": "xios", + "name": "XIOS", + "url": "/v1/software/xios" + }, + { + "slug": "xlfit", + "name": "XLfit", + "url": "/v1/software/xlfit" + }, + { + "slug": "xlink-kai", + "name": "XLink Kai", + "url": "/v1/software/xlink-kai" + }, + { + "slug": "xlispstat", + "name": "XLispStat", + "url": "/v1/software/xlispstat" + }, + { + "slug": "xml-professional-publisher", + "name": "XML Professional Publisher", + "url": "/v1/software/xml-professional-publisher" + }, + { + "slug": "xml-to-teilex0", + "name": "XML to TEILex0", + "url": "/v1/software/xml-to-teilex0" + }, + { + "slug": "xmlstarlet", + "name": "XMLStarlet", + "url": "/v1/software/xmlstarlet" + }, + { + "slug": "xorp", + "name": "XORP", + "url": "/v1/software/xorp" + }, + { + "slug": "xpconnect", + "name": "XPConnect", + "url": "/v1/software/xpconnect" + }, + { + "slug": "xpidl", + "name": "XPIDL", + "url": "/v1/software/xpidl" + }, + { + "slug": "xps-annotator", + "name": "XPS Annotator", + "url": "/v1/software/xps-annotator" + }, + { + "slug": "xpages", + "name": "XPages", + "url": "/v1/software/xpages" + }, + { + "slug": "xplay", + "name": "XPlay", + "url": "/v1/software/xplay" + }, + { + "slug": "xqf", + "name": "XQF", + "url": "/v1/software/xqf" + }, + { + "slug": "xsp", + "name": "XSP", + "url": "/v1/software/xsp" + }, + { + "slug": "xsight", + "name": "XSight", + "url": "/v1/software/xsight" + }, + { + "slug": "xsokoban", + "name": "XSokoban", + "url": "/v1/software/xsokoban" + }, + { + "slug": "xspider", + "name": "XSpider", + "url": "/v1/software/xspider" + }, + { + "slug": "xsplash", + "name": "XSplash", + "url": "/v1/software/xsplash" + }, + { + "slug": "xsugar", + "name": "XSugar", + "url": "/v1/software/xsugar" + }, + { + "slug": "xt9", + "name": "XT9", + "url": "/v1/software/xt9" + }, + { + "slug": "xtnd", + "name": "XTND", + "url": "/v1/software/xtnd" + }, + { + "slug": "xtrackcad", + "name": "XTrackCAD", + "url": "/v1/software/xtrackcad" + }, + { + "slug": "xtrans", + "name": "XTrans", + "url": "/v1/software/xtrans" + }, + { + "slug": "xananews", + "name": "XanaNews", + "url": "/v1/software/xananews" + }, + { + "slug": "xbox-app", + "name": "Xbox App", + "url": "/v1/software/xbox-app" + }, + { + "slug": "xbox-media-player", + "name": "Xbox Media Player", + "url": "/v1/software/xbox-media-player" + }, + { + "slug": "xcalibur", + "name": "Xcalibur", + "url": "/v1/software/xcalibur" + }, + { + "slug": "xdmx", + "name": "Xdmx", + "url": "/v1/software/xdmx" + }, + { + "slug": "xeditor", + "name": "Xeditor", + "url": "/v1/software/xeditor" + }, + { + "slug": "xemu", + "name": "Xemu", + "url": "/v1/software/xemu" + }, + { + "slug": "xen-cloud-platform", + "name": "Xen Cloud Platform", + "url": "/v1/software/xen-cloud-platform" + }, + { + "slug": "xenclient", + "name": "XenClient", + "url": "/v1/software/xenclient" + }, + { + "slug": "xendesktop", + "name": "XenDesktop", + "url": "/v1/software/xendesktop" + }, + { + "slug": "xender", + "name": "Xender", + "url": "/v1/software/xender" + }, + { + "slug": "xenomai", + "name": "Xenomai", + "url": "/v1/software/xenomai" + }, + { + "slug": "xenon", + "name": "Xenon", + "url": "/v1/software/xenon" + }, + { + "slug": "xeokit", + "name": "Xeokit", + "url": "/v1/software/xeokit" + }, + { + "slug": "xero", + "name": "Xero", + "url": "/v1/software/xero" + }, + { + "slug": "xerox-linguistic-environment", + "name": "Xerox Linguistic Environment", + "url": "/v1/software/xerox-linguistic-environment" + }, + { + "slug": "xerox-parc-map-viewer", + "name": "Xerox PARC Map Viewer", + "url": "/v1/software/xerox-parc-map-viewer" + }, + { + "slug": "xerver", + "name": "Xerver", + "url": "/v1/software/xerver" + }, + { + "slug": "xircon", + "name": "XiRCON", + "url": "/v1/software/xircon" + }, + { + "slug": "xilinx-ise", + "name": "Xilinx ISE", + "url": "/v1/software/xilinx-ise" + }, + { + "slug": "xilinx-vivado", + "name": "Xilinx Vivado", + "url": "/v1/software/xilinx-vivado" + }, + { + "slug": "xinhua-sogou-ai-news-anchor", + "name": "Xinhua–Sogou AI news anchor", + "url": "/v1/software/xinhua-sogou-ai-news-anchor" + }, + { + "slug": "xiph-quicktime-components", + "name": "Xiph QuickTime Components", + "url": "/v1/software/xiph-quicktime-components" + }, + { + "slug": "xlogmaster", + "name": "Xlogmaster", + "url": "/v1/software/xlogmaster" + }, + { + "slug": "xnews", + "name": "Xnews", + "url": "/v1/software/xnews" + }, + { + "slug": "xobotos", + "name": "XobotOS", + "url": "/v1/software/xobotos" + }, + { + "slug": "xor-ddos", + "name": "Xor DDoS", + "url": "/v1/software/xor-ddos" + }, + { + "slug": "xpadder", + "name": "Xpadder", + "url": "/v1/software/xpadder" + }, + { + "slug": "xprint", + "name": "Xprint", + "url": "/v1/software/xprint" + }, + { + "slug": "xprotect", + "name": "Xprotect", + "url": "/v1/software/xprotect" + }, + { + "slug": "xrate", + "name": "Xrate", + "url": "/v1/software/xrate" + }, + { + "slug": "xsan", + "name": "Xsan", + "url": "/v1/software/xsan" + }, + { + "slug": "xshell", + "name": "Xshell", + "url": "/v1/software/xshell" + }, + { + "slug": "xslimmer", + "name": "Xslimmer", + "url": "/v1/software/xslimmer" + }, + { + "slug": "xx-messenger", + "name": "Xx messenger", + "url": "/v1/software/xx-messenger" + }, + { + "slug": "yagf", + "name": "YAGF", + "url": "/v1/software/yagf" + }, + { + "slug": "yap", + "name": "YAP", + "url": "/v1/software/yap" + }, + { + "slug": "yolo", + "name": "YOLO", + "url": "/v1/software/yolo" + }, + { + "slug": "yono", + "name": "YONO", + "url": "/v1/software/yono" + }, + { + "slug": "ys-megabasic", + "name": "YS MegaBasic", + "url": "/v1/software/ys-megabasic" + }, + { + "slug": "ysflight", + "name": "YSFlight", + "url": "/v1/software/ysflight" + }, + { + "slug": "yu-ris", + "name": "YU-RIS", + "url": "/v1/software/yu-ris" + }, + { + "slug": "yy-english-tv-shows", + "name": "YY English TV Shows", + "url": "/v1/software/yy-english-tv-shows" + }, + { + "slug": "yabasic", + "name": "Yabasic", + "url": "/v1/software/yabasic" + }, + { + "slug": "yac", + "name": "Yac", + "url": "/v1/software/yac" + }, + { + "slug": "yadavar-check", + "name": "Yadavar check", + "url": "/v1/software/yadavar-check" + }, + { + "slug": "yahoo-sherpa", + "name": "Yahoo Sherpa", + "url": "/v1/software/yahoo-sherpa" + }, + { + "slug": "yahoo-assistant", + "name": "Yahoo! Assistant", + "url": "/v1/software/yahoo-assistant" + }, + { + "slug": "yahoo-calendar", + "name": "Yahoo! Calendar", + "url": "/v1/software/yahoo-calendar" + }, + { + "slug": "yahoo-go", + "name": "Yahoo! Go", + "url": "/v1/software/yahoo-go" + }, + { + "slug": "yahoo-messenger", + "name": "Yahoo! Messenger", + "url": "/v1/software/yahoo-messenger" + }, + { + "slug": "yahoo-music-jukebox", + "name": "Yahoo! Music Jukebox", + "url": "/v1/software/yahoo-music-jukebox" + }, + { + "slug": "yahoo-music-radio", + "name": "Yahoo! Music Radio", + "url": "/v1/software/yahoo-music-radio" + }, + { + "slug": "yahoo-voice", + "name": "Yahoo! Voice", + "url": "/v1/software/yahoo-voice" + }, + { + "slug": "yahoo-widgets", + "name": "Yahoo! Widgets", + "url": "/v1/software/yahoo-widgets" + }, + { + "slug": "yandex-direct", + "name": "Yandex Direct", + "url": "/v1/software/yandex-direct" + }, + { + "slug": "yandex-panoramas", + "name": "Yandex Panoramas", + "url": "/v1/software/yandex-panoramas" + }, + { + "slug": "yandex-metro", + "name": "Yandex.Metro", + "url": "/v1/software/yandex-metro" + }, + { + "slug": "yandex-navigator", + "name": "Yandex.Navigator", + "url": "/v1/software/yandex-navigator" + }, + { + "slug": "yandex-shell", + "name": "Yandex.Shell", + "url": "/v1/software/yandex-shell" + }, + { + "slug": "yandex-speechkit", + "name": "Yandex.SpeechKit", + "url": "/v1/software/yandex-speechkit" + }, + { + "slug": "yandex-traffic", + "name": "Yandex.Traffic", + "url": "/v1/software/yandex-traffic" + }, + { + "slug": "yanel", + "name": "Yanel", + "url": "/v1/software/yanel" + }, + { + "slug": "yanosik", + "name": "Yanosik", + "url": "/v1/software/yanosik" + }, + { + "slug": "yaourt", + "name": "Yaourt", + "url": "/v1/software/yaourt" + }, + { + "slug": "yenka", + "name": "Yenka", + "url": "/v1/software/yenka" + }, + { + "slug": "yep", + "name": "Yep", + "url": "/v1/software/yep" + }, + { + "slug": "yes-really", + "name": "Yes, Really", + "url": "/v1/software/yes-really" + }, + { + "slug": "yesmancoin", + "name": "YesManCoin", + "url": "/v1/software/yesmancoin" + }, + { + "slug": "yesim", + "name": "Yesim", + "url": "/v1/software/yesim" + }, + { + "slug": "yieldstar", + "name": "YieldStar", + "url": "/v1/software/yieldstar" + }, + { + "slug": "yieldigo", + "name": "Yieldigo", + "url": "/v1/software/yieldigo" + }, + { + "slug": "yinztagram", + "name": "Yinztagram", + "url": "/v1/software/yinztagram" + }, + { + "slug": "yixin", + "name": "Yixin", + "url": "/v1/software/yixin" + }, + { + "slug": "yo", + "name": "Yo", + "url": "/v1/software/yo" + }, + { + "slug": "yofacturo", + "name": "YoFacturo", + "url": "/v1/software/yofacturo" + }, + { + "slug": "yohioloid", + "name": "Yohioloid", + "url": "/v1/software/yohioloid" + }, + { + "slug": "yojimbo", + "name": "Yojimbo", + "url": "/v1/software/yojimbo" + }, + { + "slug": "yono-lite", + "name": "Yono Lite", + "url": "/v1/software/yono-lite" + }, + { + "slug": "yorba", + "name": "Yorba", + "url": "/v1/software/yorba" + }, + { + "slug": "yoshikoder", + "name": "Yoshikoder", + "url": "/v1/software/yoshikoder" + }, + { + "slug": "you-need-a-budget", + "name": "You Need a Budget", + "url": "/v1/software/you-need-a-budget" + }, + { + "slug": "youcam-makeup", + "name": "YouCam Makeup", + "url": "/v1/software/youcam-makeup" + }, + { + "slug": "youcam-perfect", + "name": "YouCam Perfect", + "url": "/v1/software/youcam-perfect" + }, + { + "slug": "youos", + "name": "YouOS", + "url": "/v1/software/youos" + }, + { + "slug": "youtrack", + "name": "YouTrack", + "url": "/v1/software/youtrack" + }, + { + "slug": "youtube-comment-scraper", + "name": "YouTube Comment Scraper", + "url": "/v1/software/youtube-comment-scraper" + }, + { + "slug": "youtube-data-api", + "name": "YouTube Data API", + "url": "/v1/software/youtube-data-api" + }, + { + "slug": "youtube-data-tools", + "name": "YouTube Data Tools", + "url": "/v1/software/youtube-data-tools" + }, + { + "slug": "youtube-instant", + "name": "YouTube Instant", + "url": "/v1/software/youtube-instant" + }, + { + "slug": "youtube-vr", + "name": "YouTube VR", + "url": "/v1/software/youtube-vr" + }, + { + "slug": "youdao-note", + "name": "Youdao Note", + "url": "/v1/software/youdao-note" + }, + { + "slug": "youminds-composer", + "name": "Youminds Composer", + "url": "/v1/software/youminds-composer" + }, + { + "slug": "your-favorite-gene", + "name": "Your Favorite Gene", + "url": "/v1/software/your-favorite-gene" + }, + { + "slug": "your-twapper-keeper", + "name": "Your Twapper Keeper", + "url": "/v1/software/your-twapper-keeper" + }, + { + "slug": "youtube-scraper-csv-cleaner", + "name": "Youtube Scraper CSV Cleaner", + "url": "/v1/software/youtube-scraper-csv-cleaner" + }, + { + "slug": "youyang-gu-covid-model", + "name": "Youyang Gu COVID model", + "url": "/v1/software/youyang-gu-covid-model" + }, + { + "slug": "yubo", + "name": "Yubo", + "url": "/v1/software/yubo" + }, + { + "slug": "yummy-ftp", + "name": "Yummy FTP", + "url": "/v1/software/yummy-ftp" + }, + { + "slug": "yutzu", + "name": "Yutzu", + "url": "/v1/software/yutzu" + }, + { + "slug": "yvoraio", + "name": "YvorAIO", + "url": "/v1/software/yvoraio" + }, + { + "slug": "y-na", + "name": "Yāna", + "url": "/v1/software/y-na" + }, + { + "slug": "z-maestro", + "name": "Z-Maestro", + "url": "/v1/software/z-maestro" + }, + { + "slug": "z-way", + "name": "Z-way", + "url": "/v1/software/z-way" + }, + { + "slug": "zaq-ai", + "name": "ZAQ AI", + "url": "/v1/software/zaq-ai" + }, + { + "slug": "zbrush", + "name": "ZBrush", + "url": "/v1/software/zbrush" + }, + { + "slug": "zedal", + "name": "ZEDAL", + "url": "/v1/software/zedal" + }, + { + "slug": "zfs-on-linux", + "name": "ZFS on Linux", + "url": "/v1/software/zfs-on-linux" + }, + { + "slug": "zmap", + "name": "ZMap", + "url": "/v1/software/zmap" + }, + { + "slug": "zola-project", + "name": "ZOLA Project", + "url": "/v1/software/zola-project" + }, + { + "slug": "zoomq3d", + "name": "ZOOMQ3D", + "url": "/v1/software/zoomq3d" + }, + { + "slug": "zsky-mcp-server", + "name": "ZSky MCP Server", + "url": "/v1/software/zsky-mcp-server" + }, + { + "slug": "zsky-prompt-library", + "name": "ZSky Prompt Library", + "url": "/v1/software/zsky-prompt-library" + }, + { + "slug": "zx-spectrum-software", + "name": "ZX Spectrum software", + "url": "/v1/software/zx-spectrum-software" + }, + { + "slug": "zx-7", + "name": "ZX-7", + "url": "/v1/software/zx-7" + }, + { + "slug": "zxid", + "name": "ZXID", + "url": "/v1/software/zxid" + }, + { + "slug": "zaki", + "name": "Zaki", + "url": "/v1/software/zaki" + }, + { + "slug": "zamba", + "name": "Zamba", + "url": "/v1/software/zamba" + }, + { + "slug": "zandy", + "name": "Zandy", + "url": "/v1/software/zandy" + }, + { + "slug": "zangi", + "name": "Zangi", + "url": "/v1/software/zangi" + }, + { + "slug": "zano", + "name": "Zano", + "url": "/v1/software/zano" + }, + { + "slug": "zapier", + "name": "Zapier", + "url": "/v1/software/zapier" + }, + { + "slug": "zaptel", + "name": "Zaptel", + "url": "/v1/software/zaptel" + }, + { + "slug": "zapya", + "name": "Zapya", + "url": "/v1/software/zapya" + }, + { + "slug": "zbus", + "name": "Zbus", + "url": "/v1/software/zbus" + }, + { + "slug": "zclassic", + "name": "Zclassic", + "url": "/v1/software/zclassic" + }, + { + "slug": "zea-configurator", + "name": "Zea Configurator", + "url": "/v1/software/zea-configurator" + }, + { + "slug": "zea-cortex", + "name": "Zea Cortex", + "url": "/v1/software/zea-cortex" + }, + { + "slug": "zea-illustrations", + "name": "Zea Illustrations", + "url": "/v1/software/zea-illustrations" + }, + { + "slug": "zea-parts", + "name": "Zea Parts", + "url": "/v1/software/zea-parts" + }, + { + "slug": "zebedee", + "name": "Zebedee", + "url": "/v1/software/zebedee" + }, + { + "slug": "zebtab", + "name": "Zebtab", + "url": "/v1/software/zebtab" + }, + { + "slug": "zed", + "name": "Zed", + "url": "/v1/software/zed" + }, + { + "slug": "zedge-inc", + "name": "Zedge, Inc", + "url": "/v1/software/zedge-inc" + }, + { + "slug": "zeemaps", + "name": "ZeeMaps", + "url": "/v1/software/zeemaps" + }, + { + "slug": "zemanta", + "name": "Zemanta", + "url": "/v1/software/zemanta" + }, + { + "slug": "zendnn", + "name": "ZenDNN", + "url": "/v1/software/zendnn" + }, + { + "slug": "zenkit", + "name": "Zenkit", + "url": "/v1/software/zenkit" + }, + { + "slug": "zenon-software", + "name": "Zenon Software", + "url": "/v1/software/zenon-software" + }, + { + "slug": "zenoo", + "name": "Zenoo", + "url": "/v1/software/zenoo" + }, + { + "slug": "zeobuilder", + "name": "Zeobuilder", + "url": "/v1/software/zeobuilder" + }, + { + "slug": "zer0email", + "name": "Zer0Email", + "url": "/v1/software/zer0email" + }, + { + "slug": "zeropc", + "name": "ZeroPC", + "url": "/v1/software/zeropc" + }, + { + "slug": "zeroday-emergency-response-team", + "name": "Zeroday Emergency Response Team", + "url": "/v1/software/zeroday-emergency-response-team" + }, + { + "slug": "zerospyware", + "name": "Zerospyware", + "url": "/v1/software/zerospyware" + }, + { + "slug": "zeroth", + "name": "Zeroth", + "url": "/v1/software/zeroth" + }, + { + "slug": "zerynth", + "name": "Zerynth", + "url": "/v1/software/zerynth" + }, + { + "slug": "zestmeup", + "name": "ZestMeUp", + "url": "/v1/software/zestmeup" + }, + { + "slug": "zettelkasten", + "name": "Zettelkasten", + "url": "/v1/software/zettelkasten" + }, + { + "slug": "zeus-assembler", + "name": "Zeus Assembler", + "url": "/v1/software/zeus-assembler" + }, + { + "slug": "zfone", + "name": "Zfone", + "url": "/v1/software/zfone" + }, + { + "slug": "zhihu", + "name": "Zhihu", + "url": "/v1/software/zhihu" + }, + { + "slug": "zhura", + "name": "Zhura", + "url": "/v1/software/zhura" + }, + { + "slug": "zinc", + "name": "ZiNc", + "url": "/v1/software/zinc" + }, + { + "slug": "zigzag", + "name": "ZigZag", + "url": "/v1/software/zigzag" + }, + { + "slug": "zight", + "name": "Zight", + "url": "/v1/software/zight" + }, + { + "slug": "zing-technologies", + "name": "Zing Technologies", + "url": "/v1/software/zing-technologies" + }, + { + "slug": "zingchart", + "name": "ZingChart", + "url": "/v1/software/zingchart" + }, + { + "slug": "zinnia", + "name": "Zinnia", + "url": "/v1/software/zinnia" + }, + { + "slug": "zinstall-easy-transfer", + "name": "Zinstall Easy Transfer", + "url": "/v1/software/zinstall-easy-transfer" + }, + { + "slug": "zinstall-migration-kit-pro", + "name": "Zinstall Migration Kit Pro", + "url": "/v1/software/zinstall-migration-kit-pro" + }, + { + "slug": "zinstall-winwin", + "name": "Zinstall WinWin", + "url": "/v1/software/zinstall-winwin" + }, + { + "slug": "zinstall-xp7", + "name": "Zinstall XP7", + "url": "/v1/software/zinstall-xp7" + }, + { + "slug": "zipbooks", + "name": "ZipBooks", + "url": "/v1/software/zipbooks" + }, + { + "slug": "zipit", + "name": "ZipIt", + "url": "/v1/software/zipit" + }, + { + "slug": "zitrr-camera", + "name": "Zitrr camera", + "url": "/v1/software/zitrr-camera" + }, + { + "slug": "zmanda-cloud-backup", + "name": "Zmanda Cloud Backup", + "url": "/v1/software/zmanda-cloud-backup" + }, + { + "slug": "zmodeler", + "name": "Zmodeler", + "url": "/v1/software/zmodeler" + }, + { + "slug": "znameniti", + "name": "Znameniti", + "url": "/v1/software/znameniti" + }, + { + "slug": "zoho", + "name": "Zoho", + "url": "/v1/software/zoho" + }, + { + "slug": "zoho-crm", + "name": "Zoho CRM", + "url": "/v1/software/zoho-crm" + }, + { + "slug": "zona", + "name": "Zona", + "url": "/v1/software/zona" + }, + { + "slug": "zonealarm-z100g", + "name": "ZoneAlarm Z100G", + "url": "/v1/software/zonealarm-z100g" + }, + { + "slug": "zoomerang", + "name": "Zoomerang", + "url": "/v1/software/zoomerang" + }, + { + "slug": "zoomify", + "name": "Zoomify", + "url": "/v1/software/zoomify" + }, + { + "slug": "zotfile", + "name": "ZotFile", + "url": "/v1/software/zotfile" + }, + { + "slug": "zotpress", + "name": "Zotpress", + "url": "/v1/software/zotpress" + }, + { + "slug": "zoviz", + "name": "Zoviz", + "url": "/v1/software/zoviz" + }, + { + "slug": "zserver-suite", + "name": "Zserver Suite", + "url": "/v1/software/zserver-suite" + }, + { + "slug": "zubrag-html-tags-stripper", + "name": "Zubrag HTML Tags Stripper", + "url": "/v1/software/zubrag-html-tags-stripper" + }, + { + "slug": "zula", + "name": "Zula", + "url": "/v1/software/zula" + }, + { + "slug": "zultrax", + "name": "Zultrax", + "url": "/v1/software/zultrax" + }, + { + "slug": "zumodrive", + "name": "ZumoDrive", + "url": "/v1/software/zumodrive" + }, + { + "slug": "zune", + "name": "Zune", + "url": "/v1/software/zune" + }, + { + "slug": "zune-social", + "name": "Zune Social", + "url": "/v1/software/zune-social" + }, + { + "slug": "zuora", + "name": "Zuora", + "url": "/v1/software/zuora" + }, + { + "slug": "zyweb", + "name": "ZyWeb", + "url": "/v1/software/zyweb" + }, + { + "slug": "zygisk", + "name": "Zygisk", + "url": "/v1/software/zygisk" + }, + { + "slug": "zync-render", + "name": "Zync Render", + "url": "/v1/software/zync-render" + }, + { + "slug": "zynewave-podium", + "name": "Zynewave Podium", + "url": "/v1/software/zynewave-podium" + }, + { + "slug": "zyslen", + "name": "Zyslen", + "url": "/v1/software/zyslen" + }, + { + "slug": "atrain", + "name": "aTrain", + "url": "/v1/software/atrain" + }, + { + "slug": "atube-catcher", + "name": "aTube Catcher", + "url": "/v1/software/atube-catcher" + }, + { + "slug": "axe-spectral-extraction", + "name": "aXe Spectral Extraction", + "url": "/v1/software/axe-spectral-extraction" + }, + { + "slug": "aacplusenc", + "name": "aacplusenc", + "url": "/v1/software/aacplusenc" + }, + { + "slug": "abcmidi", + "name": "abcmidi", + "url": "/v1/software/abcmidi" + }, + { + "slug": "abicheck", + "name": "abicheck", + "url": "/v1/software/abicheck" + }, + { + "slug": "abigail-tools", + "name": "abigail-tools", + "url": "/v1/software/abigail-tools" + }, + { + "slug": "ableton-link-utils", + "name": "ableton-link-utils", + "url": "/v1/software/ableton-link-utils" + }, + { + "slug": "about-distro", + "name": "about-distro", + "url": "/v1/software/about-distro" + }, + { + "slug": "accis-sm", + "name": "acCIS/SM", + "url": "/v1/software/accis-sm" + }, + { + "slug": "acados", + "name": "acados", + "url": "/v1/software/acados" + }, + { + "slug": "accel-ppp", + "name": "accel-ppp", + "url": "/v1/software/accel-ppp" + }, + { + "slug": "access-software", + "name": "access software", + "url": "/v1/software/access-software" + }, + { + "slug": "accessibility-software", + "name": "accessibility software", + "url": "/v1/software/accessibility-software" + }, + { + "slug": "acme", + "name": "acme", + "url": "/v1/software/acme" + }, + { + "slug": "aeqi-software", + "name": "aeqi (software)", + "url": "/v1/software/aeqi-software" + }, + { + "slug": "aeskulap", + "name": "aeskulap", + "url": "/v1/software/aeskulap" + }, + { + "slug": "aewm", + "name": "aewm++", + "url": "/v1/software/aewm" + }, + { + "slug": "age", + "name": "age", + "url": "/v1/software/age" + }, + { + "slug": "agency-os", + "name": "agency-os", + "url": "/v1/software/agency-os" + }, + { + "slug": "agrep", + "name": "agrep", + "url": "/v1/software/agrep" + }, + { + "slug": "ahk2exe", + "name": "ahk2exe", + "url": "/v1/software/ahk2exe" + }, + { + "slug": "ai-cofounder", + "name": "ai cofounder", + "url": "/v1/software/ai-cofounder" + }, + { + "slug": "aisee", + "name": "aiSee", + "url": "/v1/software/aisee" + }, + { + "slug": "aiohttp", + "name": "aiohttp", + "url": "/v1/software/aiohttp" + }, + { + "slug": "aiohttp-cors", + "name": "aiohttp-cors", + "url": "/v1/software/aiohttp-cors" + }, + { + "slug": "airgram", + "name": "airgram", + "url": "/v1/software/airgram" + }, + { + "slug": "airline", + "name": "airline", + "url": "/v1/software/airline" + }, + { + "slug": "airline-themes", + "name": "airline-themes", + "url": "/v1/software/airline-themes" + }, + { + "slug": "akonadi-ews", + "name": "akonadi-ews", + "url": "/v1/software/akonadi-ews" + }, + { + "slug": "aleatory-engine", + "name": "aleatory-engine", + "url": "/v1/software/aleatory-engine" + }, + { + "slug": "altermime", + "name": "alterMIME", + "url": "/v1/software/altermime" + }, + { + "slug": "alternative-software-build-for-compatibility-with-an-older-platform", + "name": "alternative software build for compatibility with an older platform", + "url": "/v1/software/alternative-software-build-for-compatibility-with-an-older-platform" + }, + { + "slug": "alternative-software-build-for-performance", + "name": "alternative software build for performance", + "url": "/v1/software/alternative-software-build-for-performance" + }, + { + "slug": "amap", + "name": "amap", + "url": "/v1/software/amap" + }, + { + "slug": "amavisd-milter", + "name": "amavisd-milter", + "url": "/v1/software/amavisd-milter" + }, + { + "slug": "amavisd-new", + "name": "amavisd-new", + "url": "/v1/software/amavisd-new" + }, + { + "slug": "andcards", + "name": "andcards", + "url": "/v1/software/andcards" + }, + { + "slug": "anonet", + "name": "anoNet", + "url": "/v1/software/anonet" + }, + { + "slug": "anqer-ai", + "name": "anqer.ai", + "url": "/v1/software/anqer-ai" + }, + { + "slug": "anyremote", + "name": "anyremote", + "url": "/v1/software/anyremote" + }, + { + "slug": "ao", + "name": "ao", + "url": "/v1/software/ao" + }, + { + "slug": "apktool", + "name": "apktool", + "url": "/v1/software/apktool" + }, + { + "slug": "appjar", + "name": "appJar", + "url": "/v1/software/appjar" + }, + { + "slug": "apparix", + "name": "apparix", + "url": "/v1/software/apparix" + }, + { + "slug": "apple-zhushou", + "name": "apple zhushou", + "url": "/v1/software/apple-zhushou" + }, + { + "slug": "application-release-automation", + "name": "application release automation", + "url": "/v1/software/application-release-automation" + }, + { + "slug": "apsfilter", + "name": "apsfilter", + "url": "/v1/software/apsfilter" + }, + { + "slug": "archivemail", + "name": "archivemail", + "url": "/v1/software/archivemail" + }, + { + "slug": "arm", + "name": "arm", + "url": "/v1/software/arm" + }, + { + "slug": "arp-scan", + "name": "arp-scan", + "url": "/v1/software/arp-scan" + }, + { + "slug": "artificial-intuition", + "name": "artificial intuition", + "url": "/v1/software/artificial-intuition" + }, + { + "slug": "asciinema", + "name": "asciinema", + "url": "/v1/software/asciinema" + }, + { + "slug": "asmail", + "name": "asmail", + "url": "/v1/software/asmail" + }, + { + "slug": "asmon", + "name": "asmon", + "url": "/v1/software/asmon" + }, + { + "slug": "aspell-da", + "name": "aspell-da", + "url": "/v1/software/aspell-da" + }, + { + "slug": "aspell-la", + "name": "aspell-la", + "url": "/v1/software/aspell-la" + }, + { + "slug": "astroml", + "name": "astroml", + "url": "/v1/software/astroml" + }, + { + "slug": "atheme-services", + "name": "atheme-services", + "url": "/v1/software/atheme-services" + }, + { + "slug": "attr", + "name": "attr", + "url": "/v1/software/attr" + }, + { + "slug": "auction-sniping", + "name": "auction sniping", + "url": "/v1/software/auction-sniping" + }, + { + "slug": "aufs-util", + "name": "aufs-util", + "url": "/v1/software/aufs-util" + }, + { + "slug": "aumix", + "name": "aumix", + "url": "/v1/software/aumix" + }, + { + "slug": "auth-sister", + "name": "auth sister", + "url": "/v1/software/auth-sister" + }, + { + "slug": "autocorrection", + "name": "autocorrection", + "url": "/v1/software/autocorrection" + }, + { + "slug": "automatedoctor", + "name": "automatedoctor", + "url": "/v1/software/automatedoctor" + }, + { + "slug": "autoupnp", + "name": "autoupnp", + "url": "/v1/software/autoupnp" + }, + { + "slug": "avidemux-core", + "name": "avidemux-core", + "url": "/v1/software/avidemux-core" + }, + { + "slug": "avidemux-plugins", + "name": "avidemux-plugins", + "url": "/v1/software/avidemux-plugins" + }, + { + "slug": "aview", + "name": "aview", + "url": "/v1/software/aview" + }, + { + "slug": "ax25-apps", + "name": "ax25-apps", + "url": "/v1/software/ax25-apps" + }, + { + "slug": "ax25-tools", + "name": "ax25-tools", + "url": "/v1/software/ax25-tools" + }, + { + "slug": "axosyslog", + "name": "axosyslog", + "url": "/v1/software/axosyslog" + }, + { + "slug": "b3bib", + "name": "b3bib", + "url": "/v1/software/b3bib" + }, + { + "slug": "backpack", + "name": "backpack", + "url": "/v1/software/backpack" + }, + { + "slug": "backpack-for-parents", + "name": "backpack for parents", + "url": "/v1/software/backpack-for-parents" + }, + { + "slug": "backupninja", + "name": "backupninja", + "url": "/v1/software/backupninja" + }, + { + "slug": "baloo-kcmadv", + "name": "baloo-kcmadv", + "url": "/v1/software/baloo-kcmadv" + }, + { + "slug": "basercms", + "name": "baserCMS", + "url": "/v1/software/basercms" + }, + { + "slug": "basset", + "name": "basset", + "url": "/v1/software/basset" + }, + { + "slug": "bastille", + "name": "bastille", + "url": "/v1/software/bastille" + }, + { + "slug": "bbc-fdc", + "name": "bbc-fdc", + "url": "/v1/software/bbc-fdc" + }, + { + "slug": "bbtime", + "name": "bbtime", + "url": "/v1/software/bbtime" + }, + { + "slug": "bcbio-nextgen", + "name": "bcbio-nextgen", + "url": "/v1/software/bcbio-nextgen" + }, + { + "slug": "bdelta", + "name": "bdelta", + "url": "/v1/software/bdelta" + }, + { + "slug": "berta-rudi", + "name": "berta & rudi", + "url": "/v1/software/berta-rudi" + }, + { + "slug": "bibtex2html", + "name": "bibtex2html", + "url": "/v1/software/bibtex2html" + }, + { + "slug": "bin2svg", + "name": "bin2svg", + "url": "/v1/software/bin2svg" + }, + { + "slug": "bin86", + "name": "bin86", + "url": "/v1/software/bin86" + }, + { + "slug": "bionerds", + "name": "bioNerDS", + "url": "/v1/software/bionerds" + }, + { + "slug": "biocypher", + "name": "biocypher", + "url": "/v1/software/biocypher" + }, + { + "slug": "bionty", + "name": "bionty", + "url": "/v1/software/bionty" + }, + { + "slug": "bioperl-db", + "name": "bioperl-db", + "url": "/v1/software/bioperl-db" + }, + { + "slug": "bioperl-network", + "name": "bioperl-network", + "url": "/v1/software/bioperl-network" + }, + { + "slug": "bioperl-run", + "name": "bioperl-run", + "url": "/v1/software/bioperl-run" + }, + { + "slug": "bitlbee-steam", + "name": "bitlbee-steam", + "url": "/v1/software/bitlbee-steam" + }, + { + "slug": "bl-ock", + "name": "bl.ock", + "url": "/v1/software/bl-ock" + }, + { + "slug": "blackra1n", + "name": "blackra1n", + "url": "/v1/software/blackra1n" + }, + { + "slug": "bladerf", + "name": "bladerf", + "url": "/v1/software/bladerf" + }, + { + "slug": "blender-osm", + "name": "blender-osm", + "url": "/v1/software/blender-osm" + }, + { + "slug": "blinkentools", + "name": "blinkentools", + "url": "/v1/software/blinkentools" + }, + { + "slug": "blktrace", + "name": "blktrace", + "url": "/v1/software/blktrace" + }, + { + "slug": "blocks", + "name": "blocks", + "url": "/v1/software/blocks" + }, + { + "slug": "blohg", + "name": "blohg", + "url": "/v1/software/blohg" + }, + { + "slug": "blohg-tumblelog", + "name": "blohg-tumblelog", + "url": "/v1/software/blohg-tumblelog" + }, + { + "slug": "blosc-2", + "name": "blosc-2", + "url": "/v1/software/blosc-2" + }, + { + "slug": "bluedevil", + "name": "bluedevil", + "url": "/v1/software/bluedevil" + }, + { + "slug": "bluez-alsa", + "name": "bluez-alsa", + "url": "/v1/software/bluez-alsa" + }, + { + "slug": "bmake", + "name": "bmake", + "url": "/v1/software/bmake" + }, + { + "slug": "bonobo-software", + "name": "bonobo (software)", + "url": "/v1/software/bonobo-software" + }, + { + "slug": "booky", + "name": "booky", + "url": "/v1/software/booky" + }, + { + "slug": "borgmatic", + "name": "borgmatic", + "url": "/v1/software/borgmatic" + }, + { + "slug": "borgweb", + "name": "borgweb", + "url": "/v1/software/borgweb" + }, + { + "slug": "brainflow", + "name": "brainflow", + "url": "/v1/software/brainflow" + }, + { + "slug": "brat-rapid-annotation-tool", + "name": "brat rapid annotation tool", + "url": "/v1/software/brat-rapid-annotation-tool" + }, + { + "slug": "bsdutils", + "name": "bsdutils", + "url": "/v1/software/bsdutils" + }, + { + "slug": "btcrack", + "name": "btcrack", + "url": "/v1/software/btcrack" + }, + { + "slug": "btfs", + "name": "btfs", + "url": "/v1/software/btfs" + }, + { + "slug": "build", + "name": "build", + "url": "/v1/software/build" + }, + { + "slug": "buka", + "name": "buka", + "url": "/v1/software/buka" + }, + { + "slug": "bundled-software", + "name": "bundled software", + "url": "/v1/software/bundled-software" + }, + { + "slug": "bunqdesktop", + "name": "bunqdesktop", + "url": "/v1/software/bunqdesktop" + }, + { + "slug": "business-intelligence-software", + "name": "business intelligence software", + "url": "/v1/software/business-intelligence-software" + }, + { + "slug": "bwfla-emulation-as-a-service", + "name": "bwFLA Emulation as a Service", + "url": "/v1/software/bwfla-emulation-as-a-service" + }, + { + "slug": "byfl", + "name": "byfl", + "url": "/v1/software/byfl" + }, + { + "slug": "c-client", + "name": "c-client", + "url": "/v1/software/c-client" + }, + { + "slug": "c2talk", + "name": "c2talk", + "url": "/v1/software/c2talk" + }, + { + "slug": "ctrader-codepilot", + "name": "cTrader CodePilot", + "url": "/v1/software/ctrader-codepilot" + }, + { + "slug": "career-ops", + "name": "career-ops", + "url": "/v1/software/career-ops" + }, + { + "slug": "casualtranscriber", + "name": "casualtranscriber", + "url": "/v1/software/casualtranscriber" + }, + { + "slug": "catalyst", + "name": "catalyst", + "url": "/v1/software/catalyst" + }, + { + "slug": "catdoc", + "name": "catdoc", + "url": "/v1/software/catdoc" + }, + { + "slug": "catkin-pkg", + "name": "catkin_pkg", + "url": "/v1/software/catkin-pkg" + }, + { + "slug": "catnip", + "name": "catnip", + "url": "/v1/software/catnip" + }, + { + "slug": "cbsd", + "name": "cbsd", + "url": "/v1/software/cbsd" + }, + { + "slug": "cc-mail", + "name": "cc:Mail", + "url": "/v1/software/cc-mail" + }, + { + "slug": "ccextractor", + "name": "ccextractor", + "url": "/v1/software/ccextractor" + }, + { + "slug": "cdbackup", + "name": "cdbackup", + "url": "/v1/software/cdbackup" + }, + { + "slug": "cdcat", + "name": "cdcat", + "url": "/v1/software/cdcat" + }, + { + "slug": "cdcd", + "name": "cdcd", + "url": "/v1/software/cdcd" + }, + { + "slug": "cdck", + "name": "cdck", + "url": "/v1/software/cdck" + }, + { + "slug": "cdiff", + "name": "cdiff", + "url": "/v1/software/cdiff" + }, + { + "slug": "certbot", + "name": "certbot", + "url": "/v1/software/certbot" + }, + { + "slug": "cfssl", + "name": "cfssl", + "url": "/v1/software/cfssl" + }, + { + "slug": "cgilib", + "name": "cgilib", + "url": "/v1/software/cgilib" + }, + { + "slug": "cgvg", + "name": "cgvg", + "url": "/v1/software/cgvg" + }, + { + "slug": "character-generator", + "name": "character generator", + "url": "/v1/software/character-generator" + }, + { + "slug": "cheat", + "name": "cheat", + "url": "/v1/software/cheat" + }, + { + "slug": "checkpolicy", + "name": "checkpolicy", + "url": "/v1/software/checkpolicy" + }, + { + "slug": "chemical-mime-data", + "name": "chemical-mime-data", + "url": "/v1/software/chemical-mime-data" + }, + { + "slug": "chunked-data", + "name": "chunked-data", + "url": "/v1/software/chunked-data" + }, + { + "slug": "cifs-utils", + "name": "cifs-utils", + "url": "/v1/software/cifs-utils" + }, + { + "slug": "cinder", + "name": "cinder", + "url": "/v1/software/cinder" + }, + { + "slug": "cinesync", + "name": "cineSync", + "url": "/v1/software/cinesync" + }, + { + "slug": "cinnamon-control-center", + "name": "cinnamon-control-center", + "url": "/v1/software/cinnamon-control-center" + }, + { + "slug": "circos", + "name": "circos", + "url": "/v1/software/circos" + }, + { + "slug": "citation-intelligence", + "name": "citation-intelligence", + "url": "/v1/software/citation-intelligence" + }, + { + "slug": "citeproc-js", + "name": "citeproc-js", + "url": "/v1/software/citeproc-js" + }, + { + "slug": "civil-engineering-software", + "name": "civil engineering software", + "url": "/v1/software/civil-engineering-software" + }, + { + "slug": "ckbcomp", + "name": "ckbcomp", + "url": "/v1/software/ckbcomp" + }, + { + "slug": "cl", + "name": "cl", + "url": "/v1/software/cl" + }, + { + "slug": "clang-python", + "name": "clang-python", + "url": "/v1/software/clang-python" + }, + { + "slug": "clarabel", + "name": "clarabel", + "url": "/v1/software/clarabel" + }, + { + "slug": "clasp", + "name": "clasp", + "url": "/v1/software/clasp" + }, + { + "slug": "cloog", + "name": "cloog", + "url": "/v1/software/cloog" + }, + { + "slug": "cloud-init", + "name": "cloud-init", + "url": "/v1/software/cloud-init" + }, + { + "slug": "cluttermm", + "name": "cluttermm", + "url": "/v1/software/cluttermm" + }, + { + "slug": "cmix", + "name": "cmix", + "url": "/v1/software/cmix" + }, + { + "slug": "cmospwd", + "name": "cmospwd", + "url": "/v1/software/cmospwd" + }, + { + "slug": "cockatrice", + "name": "cockatrice", + "url": "/v1/software/cockatrice" + }, + { + "slug": "code2html", + "name": "code2html", + "url": "/v1/software/code2html" + }, + { + "slug": "collada-dom", + "name": "collada-dom", + "url": "/v1/software/collada-dom" + }, + { + "slug": "collector-sahab", + "name": "collector-sahab", + "url": "/v1/software/collector-sahab" + }, + { + "slug": "commonmeta-py-q130394645", + "name": "commonmeta-py", + "url": "/v1/software/commonmeta-py-q130394645" + }, + { + "slug": "commonmeta-py", + "name": "commonmeta-py", + "url": "/v1/software/commonmeta-py" + }, + { + "slug": "commonmeta-ruby-q130394648", + "name": "commonmeta-ruby", + "url": "/v1/software/commonmeta-ruby-q130394648" + }, + { + "slug": "commonmeta-ruby", + "name": "commonmeta-ruby", + "url": "/v1/software/commonmeta-ruby" + }, + { + "slug": "compiler-rt", + "name": "compiler-rt", + "url": "/v1/software/compiler-rt" + }, + { + "slug": "compiler-rt-sanitizers", + "name": "compiler-rt-sanitizers", + "url": "/v1/software/compiler-rt-sanitizers" + }, + { + "slug": "compressed-file-library", + "name": "compressed file library", + "url": "/v1/software/compressed-file-library" + }, + { + "slug": "compressor-q11872312", + "name": "compressor", + "url": "/v1/software/compressor-q11872312" + }, + { + "slug": "computer-accessibility", + "name": "computer accessibility", + "url": "/v1/software/computer-accessibility" + }, + { + "slug": "configshell", + "name": "configshell", + "url": "/v1/software/configshell" + }, + { + "slug": "congree", + "name": "congree", + "url": "/v1/software/congree" + }, + { + "slug": "connman-gtk", + "name": "connman-gtk", + "url": "/v1/software/connman-gtk" + }, + { + "slug": "connman-ui", + "name": "connman-ui", + "url": "/v1/software/connman-ui" + }, + { + "slug": "console-bridge", + "name": "console_bridge", + "url": "/v1/software/console-bridge" + }, + { + "slug": "conspy", + "name": "conspy", + "url": "/v1/software/conspy" + }, + { + "slug": "constraint-report", + "name": "constraint report", + "url": "/v1/software/constraint-report" + }, + { + "slug": "content-distribution-mcp", + "name": "content-distribution-mcp", + "url": "/v1/software/content-distribution-mcp" + }, + { + "slug": "convverse-ai", + "name": "convverse.ai", + "url": "/v1/software/convverse-ai" + }, + { + "slug": "cpdf", + "name": "cpdf", + "url": "/v1/software/cpdf" + }, + { + "slug": "cpulimit", + "name": "cpulimit", + "url": "/v1/software/cpulimit" + }, + { + "slug": "cpuminer-opt", + "name": "cpuminer-opt", + "url": "/v1/software/cpuminer-opt" + }, + { + "slug": "crashme", + "name": "crashme", + "url": "/v1/software/crashme" + }, + { + "slug": "critical-care-nursing-simulation", + "name": "critical care nursing simulation", + "url": "/v1/software/critical-care-nursing-simulation" + }, + { + "slug": "cropgui", + "name": "cropgui", + "url": "/v1/software/cropgui" + }, + { + "slug": "crossdev", + "name": "crossdev", + "url": "/v1/software/crossdev" + }, + { + "slug": "crossguid", + "name": "crossguid", + "url": "/v1/software/crossguid" + }, + { + "slug": "crowd-kit", + "name": "crowd-kit", + "url": "/v1/software/crowd-kit" + }, + { + "slug": "cryptowatch", + "name": "cryptowatch", + "url": "/v1/software/cryptowatch" + }, + { + "slug": "cstream", + "name": "cstream", + "url": "/v1/software/cstream" + }, + { + "slug": "csv-reconcile", + "name": "csv-reconcile", + "url": "/v1/software/csv-reconcile" + }, + { + "slug": "csvlint", + "name": "csvlint", + "url": "/v1/software/csvlint" + }, + { + "slug": "cthumb", + "name": "cthumb", + "url": "/v1/software/cthumb" + }, + { + "slug": "cue-language", + "name": "cue.language", + "url": "/v1/software/cue-language" + }, + { + "slug": "cummerbund", + "name": "cummeRbund", + "url": "/v1/software/cummerbund" + }, + { + "slug": "curies", + "name": "curies", + "url": "/v1/software/curies" + }, + { + "slug": "currency-converter", + "name": "currency converter", + "url": "/v1/software/currency-converter" + }, + { + "slug": "cvm", + "name": "cvm", + "url": "/v1/software/cvm" + }, + { + "slug": "cvs-fast-export", + "name": "cvs-fast-export", + "url": "/v1/software/cvs-fast-export" + }, + { + "slug": "cvs2svn", + "name": "cvs2svn", + "url": "/v1/software/cvs2svn" + }, + { + "slug": "cvsd", + "name": "cvsd", + "url": "/v1/software/cvsd" + }, + { + "slug": "cvsync", + "name": "cvsync", + "url": "/v1/software/cvsync" + }, + { + "slug": "cwrsync", + "name": "cwRsync", + "url": "/v1/software/cwrsync" + }, + { + "slug": "cwdiff", + "name": "cwdiff", + "url": "/v1/software/cwdiff" + }, + { + "slug": "cyclo", + "name": "cyclo", + "url": "/v1/software/cyclo" + }, + { + "slug": "cypherpunk-anonymous-remailer", + "name": "cypherpunk anonymous remailer", + "url": "/v1/software/cypherpunk-anonymous-remailer" + }, + { + "slug": "dbase-mac", + "name": "dBASE Mac", + "url": "/v1/software/dbase-mac" + }, + { + "slug": "dbpoweramp", + "name": "dBpoweramp", + "url": "/v1/software/dbpoweramp" + }, + { + "slug": "dlibra", + "name": "dLibra", + "url": "/v1/software/dlibra" + }, + { + "slug": "dsniff", + "name": "dSniff", + "url": "/v1/software/dsniff" + }, + { + "slug": "daemonize", + "name": "daemonize", + "url": "/v1/software/daemonize" + }, + { + "slug": "daemontools-encore", + "name": "daemontools-encore", + "url": "/v1/software/daemontools-encore" + }, + { + "slug": "das-programm", + "name": "das Programm", + "url": "/v1/software/das-programm" + }, + { + "slug": "data-build-tool", + "name": "data build tool", + "url": "/v1/software/data-build-tool" + }, + { + "slug": "data-manipulation", + "name": "data manipulation", + "url": "/v1/software/data-manipulation" + }, + { + "slug": "data-storage-tape-management-system", + "name": "data storage tape management system", + "url": "/v1/software/data-storage-tape-management-system" + }, + { + "slug": "databank", + "name": "databank", + "url": "/v1/software/databank" + }, + { + "slug": "datacoin-hp", + "name": "datacoin-hp", + "url": "/v1/software/datacoin-hp" + }, + { + "slug": "dataverse-r-study", + "name": "dataverse-r-study", + "url": "/v1/software/dataverse-r-study" + }, + { + "slug": "dateutils", + "name": "dateutils", + "url": "/v1/software/dateutils" + }, + { + "slug": "dbacl", + "name": "dbacl", + "url": "/v1/software/dbacl" + }, + { + "slug": "dbndns", + "name": "dbndns", + "url": "/v1/software/dbndns" + }, + { + "slug": "dcadec", + "name": "dcadec", + "url": "/v1/software/dcadec" + }, + { + "slug": "dcaenc", + "name": "dcaenc", + "url": "/v1/software/dcaenc" + }, + { + "slug": "dclock", + "name": "dclock", + "url": "/v1/software/dclock" + }, + { + "slug": "dealership-management-system", + "name": "dealership management system", + "url": "/v1/software/dealership-management-system" + }, + { + "slug": "deb2targz", + "name": "deb2targz", + "url": "/v1/software/deb2targz" + }, + { + "slug": "defeat-device", + "name": "defeat device", + "url": "/v1/software/defeat-device" + }, + { + "slug": "dendronetwork-a-r-package-to-create-dendrochronological-provenance-networks", + "name": "dendroNetwork: a R-package to create dendrochronological provenance networks", + "url": "/v1/software/dendronetwork-a-r-package-to-create-dendrochronological-provenance-networks" + }, + { + "slug": "depclean", + "name": "depclean", + "url": "/v1/software/depclean" + }, + { + "slug": "depot-tools", + "name": "depot-tools", + "url": "/v1/software/depot-tools" + }, + { + "slug": "detex", + "name": "detex", + "url": "/v1/software/detex" + }, + { + "slug": "devmanual", + "name": "devmanual", + "url": "/v1/software/devmanual" + }, + { + "slug": "dibbler", + "name": "dibbler", + "url": "/v1/software/dibbler" + }, + { + "slug": "dibbler-client", + "name": "dibbler-client", + "url": "/v1/software/dibbler-client" + }, + { + "slug": "didiwiki", + "name": "didiwiki", + "url": "/v1/software/didiwiki" + }, + { + "slug": "diff3", + "name": "diff3", + "url": "/v1/software/diff3" + }, + { + "slug": "diffmask", + "name": "diffmask", + "url": "/v1/software/diffmask" + }, + { + "slug": "diffstat", + "name": "diffstat", + "url": "/v1/software/diffstat" + }, + { + "slug": "digilib", + "name": "digilib", + "url": "/v1/software/digilib" + }, + { + "slug": "digital-humanities-austria-dha", + "name": "digital humanities austria (DHA)", + "url": "/v1/software/digital-humanities-austria-dha" + }, + { + "slug": "digital-replay-system", + "name": "digital replay system", + "url": "/v1/software/digital-replay-system" + }, + { + "slug": "digitales-schaudepot", + "name": "digitales schaudepot", + "url": "/v1/software/digitales-schaudepot" + }, + { + "slug": "digitalyser-io", + "name": "digitalyser.io", + "url": "/v1/software/digitalyser-io" + }, + { + "slug": "dimreduction", + "name": "dimreduction", + "url": "/v1/software/dimreduction" + }, + { + "slug": "disa-windows-server-2016", + "name": "disa-windows-server-2016", + "url": "/v1/software/disa-windows-server-2016" + }, + { + "slug": "disa-windows-server-2019", + "name": "disa-windows-server-2019", + "url": "/v1/software/disa-windows-server-2019" + }, + { + "slug": "disc-cover", + "name": "disc-cover", + "url": "/v1/software/disc-cover" + }, + { + "slug": "disktype", + "name": "disktype", + "url": "/v1/software/disktype" + }, + { + "slug": "dislocker", + "name": "dislocker", + "url": "/v1/software/dislocker" + }, + { + "slug": "distro-info", + "name": "distro-info", + "url": "/v1/software/distro-info" + }, + { + "slug": "distrobuilder", + "name": "distrobuilder", + "url": "/v1/software/distrobuilder" + }, + { + "slug": "disy-cadenza", + "name": "disy Cadenza", + "url": "/v1/software/disy-cadenza" + }, + { + "slug": "dm-verity", + "name": "dm-verity", + "url": "/v1/software/dm-verity" + }, + { + "slug": "dmde", + "name": "dmde", + "url": "/v1/software/dmde" + }, + { + "slug": "dmraid", + "name": "dmraid", + "url": "/v1/software/dmraid" + }, + { + "slug": "dnnv", + "name": "dnnv", + "url": "/v1/software/dnnv" + }, + { + "slug": "dnstop", + "name": "dnstop", + "url": "/v1/software/dnstop" + }, + { + "slug": "dnstracer", + "name": "dnstracer", + "url": "/v1/software/dnstracer" + }, + { + "slug": "dopdf", + "name": "doPDF", + "url": "/v1/software/dopdf" + }, + { + "slug": "docbook2x", + "name": "docbook2X", + "url": "/v1/software/docbook2x" + }, + { + "slug": "docker-gc", + "name": "docker-gc", + "url": "/v1/software/docker-gc" + }, + { + "slug": "doctl", + "name": "doctl", + "url": "/v1/software/doctl" + }, + { + "slug": "dolfin-adjoint", + "name": "dolfin-adjoint", + "url": "/v1/software/dolfin-adjoint" + }, + { + "slug": "dplyr", + "name": "dplyr", + "url": "/v1/software/dplyr" + }, + { + "slug": "drawtiming", + "name": "drawtiming", + "url": "/v1/software/drawtiming" + }, + { + "slug": "dsh", + "name": "dsh", + "url": "/v1/software/dsh" + }, + { + "slug": "dtc", + "name": "dtc", + "url": "/v1/software/dtc" + }, + { + "slug": "dtrx", + "name": "dtrx", + "url": "/v1/software/dtrx" + }, + { + "slug": "duktus", + "name": "duktus", + "url": "/v1/software/duktus" + }, + { + "slug": "dump1090", + "name": "dump1090", + "url": "/v1/software/dump1090" + }, + { + "slug": "dvbackup", + "name": "dvbackup", + "url": "/v1/software/dvbackup" + }, + { + "slug": "dvbsnoop", + "name": "dvbsnoop", + "url": "/v1/software/dvbsnoop" + }, + { + "slug": "dwarves", + "name": "dwarves", + "url": "/v1/software/dwarves" + }, + { + "slug": "dynarmic", + "name": "dynarmic", + "url": "/v1/software/dynarmic" + }, + { + "slug": "dynverse", + "name": "dynverse", + "url": "/v1/software/dynverse" + }, + { + "slug": "dzaima-apl", + "name": "dzaima APL", + "url": "/v1/software/dzaima-apl" + }, + { + "slug": "e-tools", + "name": "e-Tools", + "url": "/v1/software/e-tools" + }, + { + "slug": "e3", + "name": "e3", + "url": "/v1/software/e3" + }, + { + "slug": "ecadstar", + "name": "eCADSTAR", + "url": "/v1/software/ecadstar" + }, + { + "slug": "ecommfy", + "name": "eCommfy", + "url": "/v1/software/ecommfy" + }, + { + "slug": "edoklady", + "name": "eDoklady", + "url": "/v1/software/edoklady" + }, + { + "slug": "elml", + "name": "eLML", + "url": "/v1/software/elml" + }, + { + "slug": "elaborate", + "name": "eLaborate", + "url": "/v1/software/elaborate" + }, + { + "slug": "em-client", + "name": "eM Client", + "url": "/v1/software/em-client" + }, + { + "slug": "emule-xtreme-mod", + "name": "eMule Xtreme Mod", + "url": "/v1/software/emule-xtreme-mod" + }, + { + "slug": "epages", + "name": "ePages", + "url": "/v1/software/epages" + }, + { + "slug": "eparaksts", + "name": "eParaksts", + "url": "/v1/software/eparaksts" + }, + { + "slug": "eprompter", + "name": "ePrompter", + "url": "/v1/software/eprompter" + }, + { + "slug": "escriptorium", + "name": "eScriptorium", + "url": "/v1/software/escriptorium" + }, + { + "slug": "esewa", + "name": "eSewa", + "url": "/v1/software/esewa" + }, + { + "slug": "esignal", + "name": "eSignal", + "url": "/v1/software/esignal" + }, + { + "slug": "esobi", + "name": "eSobi", + "url": "/v1/software/esobi" + }, + { + "slug": "etblast", + "name": "eTBLAST", + "url": "/v1/software/etblast" + }, + { + "slug": "etecsim", + "name": "eTecSim", + "url": "/v1/software/etecsim" + }, + { + "slug": "exeem", + "name": "eXeem", + "url": "/v1/software/exeem" + }, + { + "slug": "extensible-server-pages", + "name": "eXtensible Server Pages", + "url": "/v1/software/extensible-server-pages" + }, + { + "slug": "extensible-text-framework", + "name": "eXtensible Text Framework", + "url": "/v1/software/extensible-text-framework" + }, + { + "slug": "extremedb", + "name": "eXtremeDB", + "url": "/v1/software/extremedb" + }, + { + "slug": "easy-rsa", + "name": "easy-rsa", + "url": "/v1/software/easy-rsa" + }, + { + "slug": "easydb", + "name": "easydb", + "url": "/v1/software/easydb" + }, + { + "slug": "easytranscript", + "name": "easytranscript", + "url": "/v1/software/easytranscript" + }, + { + "slug": "eboard", + "name": "eboard", + "url": "/v1/software/eboard" + }, + { + "slug": "echoping", + "name": "echoping", + "url": "/v1/software/echoping" + }, + { + "slug": "eddycab", + "name": "eddycab", + "url": "/v1/software/eddycab" + }, + { + "slug": "edgecam", + "name": "edgeCam", + "url": "/v1/software/edgecam" + }, + { + "slug": "edger-package", + "name": "edgeR package", + "url": "/v1/software/edger-package" + }, + { + "slug": "edmax", + "name": "edmax", + "url": "/v1/software/edmax" + }, + { + "slug": "electron-builder", + "name": "electron-builder", + "url": "/v1/software/electron-builder" + }, + { + "slug": "elfix", + "name": "elfix", + "url": "/v1/software/elfix" + }, + { + "slug": "elogind", + "name": "elogind", + "url": "/v1/software/elogind" + }, + { + "slug": "emfatic", + "name": "emfatic", + "url": "/v1/software/emfatic" + }, + { + "slug": "emilpro", + "name": "emilpro", + "url": "/v1/software/emilpro" + }, + { + "slug": "enchant-js", + "name": "enchant.js", + "url": "/v1/software/enchant-js" + }, + { + "slug": "ensemblebma", + "name": "ensembleBMA", + "url": "/v1/software/ensemblebma" + }, + { + "slug": "ensmallen", + "name": "ensmallen", + "url": "/v1/software/ensmallen" + }, + { + "slug": "enzyme", + "name": "enzyme", + "url": "/v1/software/enzyme" + }, + { + "slug": "epcedit", + "name": "epcEdit", + "url": "/v1/software/epcedit" + }, + { + "slug": "epstool", + "name": "epstool", + "url": "/v1/software/epstool" + }, + { + "slug": "esearch", + "name": "esearch", + "url": "/v1/software/esearch" + }, + { + "slug": "eselect", + "name": "eselect", + "url": "/v1/software/eselect" + }, + { + "slug": "eselect-lib-bin-symlink", + "name": "eselect-lib-bin-symlink", + "url": "/v1/software/eselect-lib-bin-symlink" + }, + { + "slug": "eselect-mode", + "name": "eselect-mode", + "url": "/v1/software/eselect-mode" + }, + { + "slug": "eselect-python", + "name": "eselect-python", + "url": "/v1/software/eselect-python" + }, + { + "slug": "esomidas", + "name": "esomidas", + "url": "/v1/software/esomidas" + }, + { + "slug": "espresso", + "name": "espresso", + "url": "/v1/software/espresso" + }, + { + "slug": "espresso-q28974831", + "name": "espresso++", + "url": "/v1/software/espresso-q28974831" + }, + { + "slug": "eudev", + "name": "eudev", + "url": "/v1/software/eudev" + }, + { + "slug": "euscan", + "name": "euscan", + "url": "/v1/software/euscan" + }, + { + "slug": "evalplus", + "name": "evalplus", + "url": "/v1/software/evalplus" + }, + { + "slug": "evcc", + "name": "evcc", + "url": "/v1/software/evcc" + }, + { + "slug": "exheres-syntax", + "name": "exheres-syntax", + "url": "/v1/software/exheres-syntax" + }, + { + "slug": "exiftags", + "name": "exiftags", + "url": "/v1/software/exiftags" + }, + { + "slug": "existence-proof-an-empowerment-doctrine-for-credential-less-ai-enabled-creators-existence", + "name": "existence-proof: An Empowerment Doctrine for Credential-less AI-enabled Creators — Existence Proof Format, Feasibility-Question Corpus, and Gatekeeping Eval", + "url": "/v1/software/existence-proof-an-empowerment-doctrine-for-credential-less-ai-enabled-creators-existence" + }, + { + "slug": "ezlinavis", + "name": "ezlinavis", + "url": "/v1/software/ezlinavis" + }, + { + "slug": "f-lux", + "name": "f.lux", + "url": "/v1/software/f-lux" + }, + { + "slug": "f4analyse", + "name": "f4analyse", + "url": "/v1/software/f4analyse" + }, + { + "slug": "f4transkript", + "name": "f4transkript", + "url": "/v1/software/f4transkript" + }, + { + "slug": "facter", + "name": "facter", + "url": "/v1/software/facter" + }, + { + "slug": "factotum", + "name": "factotum", + "url": "/v1/software/factotum" + }, + { + "slug": "faerun", + "name": "faerun", + "url": "/v1/software/faerun" + }, + { + "slug": "fakechroot", + "name": "fakechroot", + "url": "/v1/software/fakechroot" + }, + { + "slug": "fakeroot", + "name": "fakeroot", + "url": "/v1/software/fakeroot" + }, + { + "slug": "faktur-lu", + "name": "faktur.lu", + "url": "/v1/software/faktur-lu" + }, + { + "slug": "fantoir-datasource", + "name": "fantoir-datasource", + "url": "/v1/software/fantoir-datasource" + }, + { + "slug": "fastboot", + "name": "fastboot", + "url": "/v1/software/fastboot" + }, + { + "slug": "fastjar", + "name": "fastjar", + "url": "/v1/software/fastjar" + }, + { + "slug": "fbg", + "name": "fbg", + "url": "/v1/software/fbg" + }, + { + "slug": "fbgemm", + "name": "fbgemm", + "url": "/v1/software/fbgemm" + }, + { + "slug": "fbida", + "name": "fbida", + "url": "/v1/software/fbida" + }, + { + "slug": "fbless", + "name": "fbless", + "url": "/v1/software/fbless" + }, + { + "slug": "fcitx-sayura", + "name": "fcitx-sayura", + "url": "/v1/software/fcitx-sayura" + }, + { + "slug": "fcl", + "name": "fcl", + "url": "/v1/software/fcl" + }, + { + "slug": "fcrackzip", + "name": "fcrackzip", + "url": "/v1/software/fcrackzip" + }, + { + "slug": "fflogs", + "name": "fflogs", + "url": "/v1/software/fflogs" + }, + { + "slug": "ffmpegsource", + "name": "ffmpegsource", + "url": "/v1/software/ffmpegsource" + }, + { + "slug": "fglrx", + "name": "fglrx", + "url": "/v1/software/fglrx" + }, + { + "slug": "figleaf", + "name": "figleaf", + "url": "/v1/software/figleaf" + }, + { + "slug": "finalrender", + "name": "finalRender", + "url": "/v1/software/finalrender" + }, + { + "slug": "fio", + "name": "fio", + "url": "/v1/software/fio" + }, + { + "slug": "fishsupper", + "name": "fishsupper", + "url": "/v1/software/fishsupper" + }, + { + "slug": "fitspng", + "name": "fitspng", + "url": "/v1/software/fitspng" + }, + { + "slug": "fitsverify", + "name": "fitsverify", + "url": "/v1/software/fitsverify" + }, + { + "slug": "fixed", + "name": "fixed", + "url": "/v1/software/fixed" + }, + { + "slug": "flac123", + "name": "flac123", + "url": "/v1/software/flac123" + }, + { + "slug": "flask-cors", + "name": "flask-cors", + "url": "/v1/software/flask-cors" + }, + { + "slug": "fleet", + "name": "fleet", + "url": "/v1/software/fleet" + }, + { + "slug": "flexbackup", + "name": "flexbackup", + "url": "/v1/software/flexbackup" + }, + { + "slug": "flexget", + "name": "flexget", + "url": "/v1/software/flexget" + }, + { + "slug": "flickr-downloadr", + "name": "flickr downloadr", + "url": "/v1/software/flickr-downloadr" + }, + { + "slug": "flightgear-data", + "name": "flightgear-data", + "url": "/v1/software/flightgear-data" + }, + { + "slug": "flokoon", + "name": "flokoon", + "url": "/v1/software/flokoon" + }, + { + "slug": "flow-q111269149", + "name": "flow", + "url": "/v1/software/flow-q111269149" + }, + { + "slug": "flow-tools", + "name": "flow-tools", + "url": "/v1/software/flow-tools" + }, + { + "slug": "fluster", + "name": "fluster", + "url": "/v1/software/fluster" + }, + { + "slug": "fmptools", + "name": "fmptools", + "url": "/v1/software/fmptools" + }, + { + "slug": "fnord", + "name": "fnord", + "url": "/v1/software/fnord" + }, + { + "slug": "foldseek", + "name": "foldseek", + "url": "/v1/software/foldseek" + }, + { + "slug": "font-util", + "name": "font-util", + "url": "/v1/software/font-util" + }, + { + "slug": "footbayes-r-package", + "name": "footBayes (R package)", + "url": "/v1/software/footbayes-r-package" + }, + { + "slug": "fortext", + "name": "forTEXT", + "url": "/v1/software/fortext" + }, + { + "slug": "form-builder", + "name": "form builder", + "url": "/v1/software/form-builder" + }, + { + "slug": "format-udf", + "name": "format-udf", + "url": "/v1/software/format-udf" + }, + { + "slug": "formatdb", + "name": "formatdb", + "url": "/v1/software/formatdb" + }, + { + "slug": "formerly-open-source-or-free-software", + "name": "formerly open-source or free software", + "url": "/v1/software/formerly-open-source-or-free-software" + }, + { + "slug": "fortify-headers", + "name": "fortify-headers", + "url": "/v1/software/fortify-headers" + }, + { + "slug": "fortune", + "name": "fortune", + "url": "/v1/software/fortune" + }, + { + "slug": "fping", + "name": "fping", + "url": "/v1/software/fping" + }, + { + "slug": "fragmotion", + "name": "fragMOTION", + "url": "/v1/software/fragmotion" + }, + { + "slug": "free", + "name": "free", + "url": "/v1/software/free" + }, + { + "slug": "fruux", + "name": "fruux", + "url": "/v1/software/fruux" + }, + { + "slug": "fsqca", + "name": "fsQCA", + "url": "/v1/software/fsqca" + }, + { + "slug": "fsn", + "name": "fsn", + "url": "/v1/software/fsn" + }, + { + "slug": "ftjam", + "name": "ftjam", + "url": "/v1/software/ftjam" + }, + { + "slug": "fugitive", + "name": "fugitive", + "url": "/v1/software/fugitive" + }, + { + "slug": "fundamental-risk", + "name": "fundamental risk", + "url": "/v1/software/fundamental-risk" + }, + { + "slug": "fundraising-platform", + "name": "fundraising platform", + "url": "/v1/software/fundraising-platform" + }, + { + "slug": "fuse-zip", + "name": "fuse-zip", + "url": "/v1/software/fuse-zip" + }, + { + "slug": "g-cpan", + "name": "g-cpan", + "url": "/v1/software/g-cpan" + }, + { + "slug": "g-sorcery", + "name": "g-sorcery", + "url": "/v1/software/g-sorcery" + }, + { + "slug": "gfacet", + "name": "gFacet", + "url": "/v1/software/gfacet" + }, + { + "slug": "glite", + "name": "gLite", + "url": "/v1/software/glite" + }, + { + "slug": "gmtp", + "name": "gMTP", + "url": "/v1/software/gmtp" + }, + { + "slug": "gpxe", + "name": "gPXE", + "url": "/v1/software/gpxe" + }, + { + "slug": "gvisor", + "name": "gVisor", + "url": "/v1/software/gvisor" + }, + { + "slug": "galculator", + "name": "galculator", + "url": "/v1/software/galculator" + }, + { + "slug": "galleta", + "name": "galleta", + "url": "/v1/software/galleta" + }, + { + "slug": "game-server-browser", + "name": "game server browser", + "url": "/v1/software/game-server-browser" + }, + { + "slug": "ganeti-instance-image", + "name": "ganeti-instance-image", + "url": "/v1/software/ganeti-instance-image" + }, + { + "slug": "gatk", + "name": "gatk", + "url": "/v1/software/gatk" + }, + { + "slug": "gbtoolsid", + "name": "gbtoolsid", + "url": "/v1/software/gbtoolsid" + }, + { + "slug": "gcalcli", + "name": "gcalcli", + "url": "/v1/software/gcalcli" + }, + { + "slug": "gcin", + "name": "gcin", + "url": "/v1/software/gcin" + }, + { + "slug": "gcolor2", + "name": "gcolor2", + "url": "/v1/software/gcolor2" + }, + { + "slug": "gdk-pixbuf-loader-webp", + "name": "gdk-pixbuf-loader-webp", + "url": "/v1/software/gdk-pixbuf-loader-webp" + }, + { + "slug": "gemato", + "name": "gemato", + "url": "/v1/software/gemato" + }, + { + "slug": "generic-linked-database", + "name": "generic-linked-database", + "url": "/v1/software/generic-linked-database" + }, + { + "slug": "genext2fs", + "name": "genext2fs", + "url": "/v1/software/genext2fs" + }, + { + "slug": "genlop", + "name": "genlop", + "url": "/v1/software/genlop" + }, + { + "slug": "gentoo-functions", + "name": "gentoo-functions", + "url": "/v1/software/gentoo-functions" + }, + { + "slug": "gentoo-syntax", + "name": "gentoo-syntax", + "url": "/v1/software/gentoo-syntax" + }, + { + "slug": "gentoo-systemd-integration", + "name": "gentoo-systemd-integration", + "url": "/v1/software/gentoo-systemd-integration" + }, + { + "slug": "gentoo-zsh-completions", + "name": "gentoo-zsh-completions", + "url": "/v1/software/gentoo-zsh-completions" + }, + { + "slug": "gentoolkit-dev", + "name": "gentoolkit-dev", + "url": "/v1/software/gentoolkit-dev" + }, + { + "slug": "geom-raid5", + "name": "geom raid5", + "url": "/v1/software/geom-raid5" + }, + { + "slug": "geometric-modeling-kernel", + "name": "geometric modeling kernel", + "url": "/v1/software/geometric-modeling-kernel" + }, + { + "slug": "gerbera", + "name": "gerbera", + "url": "/v1/software/gerbera" + }, + { + "slug": "get-iplayer", + "name": "get-iplayer", + "url": "/v1/software/get-iplayer" + }, + { + "slug": "getty", + "name": "getty", + "url": "/v1/software/getty" + }, + { + "slug": "gflags", + "name": "gflags", + "url": "/v1/software/gflags" + }, + { + "slug": "ggalluvial", + "name": "ggalluvial", + "url": "/v1/software/ggalluvial" + }, + { + "slug": "ggtree", + "name": "ggtree", + "url": "/v1/software/ggtree" + }, + { + "slug": "ggtreeextra", + "name": "ggtreeExtra", + "url": "/v1/software/ggtreeextra" + }, + { + "slug": "gif2png", + "name": "gif2png", + "url": "/v1/software/gif2png" + }, + { + "slug": "girara", + "name": "girara", + "url": "/v1/software/girara" + }, + { + "slug": "giscus", + "name": "giscus", + "url": "/v1/software/giscus" + }, + { + "slug": "git-bz", + "name": "git-bz", + "url": "/v1/software/git-bz" + }, + { + "slug": "git-deps", + "name": "git-deps", + "url": "/v1/software/git-deps" + }, + { + "slug": "gitgutter", + "name": "gitgutter", + "url": "/v1/software/gitgutter" + }, + { + "slug": "gitolite-gentoo", + "name": "gitolite-gentoo", + "url": "/v1/software/gitolite-gentoo" + }, + { + "slug": "gitstats", + "name": "gitstats", + "url": "/v1/software/gitstats" + }, + { + "slug": "gitv", + "name": "gitv", + "url": "/v1/software/gitv" + }, + { + "slug": "gkeys", + "name": "gkeys", + "url": "/v1/software/gkeys" + }, + { + "slug": "gkeys-gen", + "name": "gkeys-gen", + "url": "/v1/software/gkeys-gen" + }, + { + "slug": "gkrellaclock", + "name": "gkrellaclock", + "url": "/v1/software/gkrellaclock" + }, + { + "slug": "gkrellmwireless", + "name": "gkrellmwireless", + "url": "/v1/software/gkrellmwireless" + }, + { + "slug": "glance", + "name": "glance", + "url": "/v1/software/glance" + }, + { + "slug": "global-distribution-system", + "name": "global distribution system", + "url": "/v1/software/global-distribution-system" + }, + { + "slug": "global-resource-leaks-codeql", + "name": "global-resource-leaks-codeql", + "url": "/v1/software/global-resource-leaks-codeql" + }, + { + "slug": "glogg", + "name": "glogg", + "url": "/v1/software/glogg" + }, + { + "slug": "glu", + "name": "glu", + "url": "/v1/software/glu" + }, + { + "slug": "gmap", + "name": "gmap", + "url": "/v1/software/gmap" + }, + { + "slug": "gnome-desktop", + "name": "gnome-desktop", + "url": "/v1/software/gnome-desktop" + }, + { + "slug": "gnome-devel-docs", + "name": "gnome-devel-docs", + "url": "/v1/software/gnome-devel-docs" + }, + { + "slug": "gnome-hearts", + "name": "gnome-hearts", + "url": "/v1/software/gnome-hearts" + }, + { + "slug": "gnushogi", + "name": "gnushogi", + "url": "/v1/software/gnushogi" + }, + { + "slug": "go-fuse", + "name": "go-fuse", + "url": "/v1/software/go-fuse" + }, + { + "slug": "go-usb", + "name": "go-usb", + "url": "/v1/software/go-usb" + }, + { + "slug": "go1984", + "name": "go1984", + "url": "/v1/software/go1984" + }, + { + "slug": "gogglesmm", + "name": "gogglesmm", + "url": "/v1/software/gogglesmm" + }, + { + "slug": "goland", + "name": "goland", + "url": "/v1/software/goland" + }, + { + "slug": "gpyutils", + "name": "gpyutils", + "url": "/v1/software/gpyutils" + }, + { + "slug": "gqrx", + "name": "gqrx", + "url": "/v1/software/gqrx" + }, + { + "slug": "gr-air-modes", + "name": "gr-air-modes", + "url": "/v1/software/gr-air-modes" + }, + { + "slug": "gr-baz", + "name": "gr-baz", + "url": "/v1/software/gr-baz" + }, + { + "slug": "gr-foo", + "name": "gr-foo", + "url": "/v1/software/gr-foo" + }, + { + "slug": "gr-fosphor", + "name": "gr-fosphor", + "url": "/v1/software/gr-fosphor" + }, + { + "slug": "gr-ieee802154", + "name": "gr-ieee802154", + "url": "/v1/software/gr-ieee802154" + }, + { + "slug": "gr-iqbal", + "name": "gr-iqbal", + "url": "/v1/software/gr-iqbal" + }, + { + "slug": "gr-osmosdr", + "name": "gr-osmosdr", + "url": "/v1/software/gr-osmosdr" + }, + { + "slug": "gr-rds", + "name": "gr-rds", + "url": "/v1/software/gr-rds" + }, + { + "slug": "gr-rftap", + "name": "gr-rftap", + "url": "/v1/software/gr-rftap" + }, + { + "slug": "grabcartoons", + "name": "grabcartoons", + "url": "/v1/software/grabcartoons" + }, + { + "slug": "gradio", + "name": "gradio", + "url": "/v1/software/gradio" + }, + { + "slug": "grc", + "name": "grc", + "url": "/v1/software/grc" + }, + { + "slug": "grepcidr", + "name": "grepcidr", + "url": "/v1/software/grepcidr" + }, + { + "slug": "greybird", + "name": "greybird", + "url": "/v1/software/greybird" + }, + { + "slug": "gridmathematica", + "name": "gridMathematica", + "url": "/v1/software/gridmathematica" + }, + { + "slug": "grling-sdm", + "name": "grling-sdm", + "url": "/v1/software/grling-sdm" + }, + { + "slug": "grs", + "name": "grs", + "url": "/v1/software/grs" + }, + { + "slug": "gs-elpa", + "name": "gs-elpa", + "url": "/v1/software/gs-elpa" + }, + { + "slug": "gs-pypi", + "name": "gs-pypi", + "url": "/v1/software/gs-pypi" + }, + { + "slug": "gsm-receiver", + "name": "gsm-receiver", + "url": "/v1/software/gsm-receiver" + }, + { + "slug": "gst-plugins-amr", + "name": "gst-plugins-amr", + "url": "/v1/software/gst-plugins-amr" + }, + { + "slug": "gst-plugins-pulse", + "name": "gst-plugins-pulse", + "url": "/v1/software/gst-plugins-pulse" + }, + { + "slug": "gti", + "name": "gti", + "url": "/v1/software/gti" + }, + { + "slug": "gtk-layer-shell", + "name": "gtk-layer-shell", + "url": "/v1/software/gtk-layer-shell" + }, + { + "slug": "gtkboard", + "name": "gtkboard", + "url": "/v1/software/gtkboard" + }, + { + "slug": "gtkevemon", + "name": "gtkevemon", + "url": "/v1/software/gtkevemon" + }, + { + "slug": "gvrpcd", + "name": "gvrpcd", + "url": "/v1/software/gvrpcd" + }, + { + "slug": "gwhois", + "name": "gwhois", + "url": "/v1/software/gwhois" + }, + { + "slug": "h-a-graham-budleigh-brook-beaver-hydro-submission-release", + "name": "h-a-graham/Budleigh_Brook_Beaver_Hydro: Submission Release", + "url": "/v1/software/h-a-graham-budleigh-brook-beaver-hydro-submission-release" + }, + { + "slug": "h2o-gtk", + "name": "h2o-gtk", + "url": "/v1/software/h2o-gtk" + }, + { + "slug": "h3", + "name": "h3", + "url": "/v1/software/h3" + }, + { + "slug": "h5rdmtoolbox", + "name": "h5rdmtoolbox", + "url": "/v1/software/h5rdmtoolbox" + }, + { + "slug": "h5utils", + "name": "h5utils", + "url": "/v1/software/h5utils" + }, + { + "slug": "hmailserver", + "name": "hMailServer", + "url": "/v1/software/hmailserver" + }, + { + "slug": "hackport", + "name": "hackport", + "url": "/v1/software/hackport" + }, + { + "slug": "hackrf-tools", + "name": "hackrf-tools", + "url": "/v1/software/hackrf-tools" + }, + { + "slug": "haml-lint", + "name": "haml_lint", + "url": "/v1/software/haml-lint" + }, + { + "slug": "happyhopper", + "name": "happyhopper", + "url": "/v1/software/happyhopper" + }, + { + "slug": "harvester", + "name": "harvester", + "url": "/v1/software/harvester" + }, + { + "slug": "hatools", + "name": "hatools", + "url": "/v1/software/hatools" + }, + { + "slug": "hddtemp", + "name": "hddtemp", + "url": "/v1/software/hddtemp" + }, + { + "slug": "hdup", + "name": "hdup", + "url": "/v1/software/hdup" + }, + { + "slug": "heat-q28974922", + "name": "heat", + "url": "/v1/software/heat-q28974922" + }, + { + "slug": "help", + "name": "help", + "url": "/v1/software/help" + }, + { + "slug": "helpdeco", + "name": "helpdeco", + "url": "/v1/software/helpdeco" + }, + { + "slug": "hexxagon", + "name": "hexxagon", + "url": "/v1/software/hexxagon" + }, + { + "slug": "hicolor-icon-theme", + "name": "hicolor-icon-theme", + "url": "/v1/software/hicolor-icon-theme" + }, + { + "slug": "hidapi", + "name": "hidapi", + "url": "/v1/software/hidapi" + }, + { + "slug": "hifiasm", + "name": "hifiasm", + "url": "/v1/software/hifiasm" + }, + { + "slug": "hololive", + "name": "hololive", + "url": "/v1/software/hololive" + }, + { + "slug": "hoomd-blue", + "name": "hoomd-blue", + "url": "/v1/software/hoomd-blue" + }, + { + "slug": "horned-owl", + "name": "horned-owl", + "url": "/v1/software/horned-owl" + }, + { + "slug": "horst", + "name": "horst", + "url": "/v1/software/horst" + }, + { + "slug": "hound", + "name": "hound", + "url": "/v1/software/hound" + }, + { + "slug": "hourglass", + "name": "hourglass", + "url": "/v1/software/hourglass" + }, + { + "slug": "hourzero-dev", + "name": "hourzero.dev", + "url": "/v1/software/hourzero-dev" + }, + { + "slug": "htag", + "name": "htag", + "url": "/v1/software/htag" + }, + { + "slug": "httping", + "name": "httping", + "url": "/v1/software/httping" + }, + { + "slug": "httpry", + "name": "httpry", + "url": "/v1/software/httpry" + }, + { + "slug": "hupnp-ng", + "name": "hupnp-ng", + "url": "/v1/software/hupnp-ng" + }, + { + "slug": "hurl-it", + "name": "hurl.it", + "url": "/v1/software/hurl-it" + }, + { + "slug": "hush", + "name": "hush", + "url": "/v1/software/hush" + }, + { + "slug": "hxd", + "name": "hxd", + "url": "/v1/software/hxd" + }, + { + "slug": "hyperd", + "name": "hyperd", + "url": "/v1/software/hyperd" + }, + { + "slug": "hyperimage", + "name": "hyperimage", + "url": "/v1/software/hyperimage" + }, + { + "slug": "i-reporter", + "name": "i-Reporter", + "url": "/v1/software/i-reporter" + }, + { + "slug": "iannotate", + "name": "iAnnotate", + "url": "/v1/software/iannotate" + }, + { + "slug": "iboogie", + "name": "iBoogie", + "url": "/v1/software/iboogie" + }, + { + "slug": "iboysoft", + "name": "iBoysoft", + "url": "/v1/software/iboysoft" + }, + { + "slug": "icab", + "name": "iCab", + "url": "/v1/software/icab" + }, + { + "slug": "iclone", + "name": "iClone", + "url": "/v1/software/iclone" + }, + { + "slug": "icore-virtual-accounts", + "name": "iCore Virtual Accounts", + "url": "/v1/software/icore-virtual-accounts" + }, + { + "slug": "ideas-emulator", + "name": "iDeaS Emulator", + "url": "/v1/software/ideas-emulator" + }, + { + "slug": "idempiere", + "name": "iDempiere", + "url": "/v1/software/idempiere" + }, + { + "slug": "igo", + "name": "iGO", + "url": "/v1/software/igo" + }, + { + "slug": "igoogle", + "name": "iGoogle", + "url": "/v1/software/igoogle" + }, + { + "slug": "igorilla", + "name": "iGorilla", + "url": "/v1/software/igorilla" + }, + { + "slug": "igrafx-flowcharter", + "name": "iGrafx FlowCharter", + "url": "/v1/software/igrafx-flowcharter" + }, + { + "slug": "igraph-m", + "name": "iGraph/M", + "url": "/v1/software/igraph-m" + }, + { + "slug": "ilane", + "name": "iLane", + "url": "/v1/software/ilane" + }, + { + "slug": "ilunascape", + "name": "iLunascape", + "url": "/v1/software/ilunascape" + }, + { + "slug": "imazing", + "name": "iMazing", + "url": "/v1/software/imazing" + }, + { + "slug": "imesh", + "name": "iMesh", + "url": "/v1/software/imesh" + }, + { + "slug": "imindq", + "name": "iMindQ", + "url": "/v1/software/imindq" + }, + { + "slug": "inoki", + "name": "iNoki", + "url": "/v1/software/inoki" + }, + { + "slug": "ios-app-approvals", + "name": "iOS app approvals", + "url": "/v1/software/ios-app-approvals" + }, + { + "slug": "ionroad", + "name": "iOnRoad", + "url": "/v1/software/ionroad" + }, + { + "slug": "ipulse", + "name": "iPulse", + "url": "/v1/software/ipulse" + }, + { + "slug": "irip", + "name": "iRip", + "url": "/v1/software/irip" + }, + { + "slug": "irows", + "name": "iRows", + "url": "/v1/software/irows" + }, + { + "slug": "iscience-maps", + "name": "iScience Maps", + "url": "/v1/software/iscience-maps" + }, + { + "slug": "ishowu", + "name": "iShowU", + "url": "/v1/software/ishowu" + }, + { + "slug": "isilo", + "name": "iSilo", + "url": "/v1/software/isilo" + }, + { + "slug": "ispy", + "name": "iSpy", + "url": "/v1/software/ispy" + }, + { + "slug": "istumbler", + "name": "iStumbler", + "url": "/v1/software/istumbler" + }, + { + "slug": "itunes-connect", + "name": "iTunes Connect", + "url": "/v1/software/itunes-connect" + }, + { + "slug": "itunes-lp", + "name": "iTunes LP", + "url": "/v1/software/itunes-lp" + }, + { + "slug": "itunescyrfix", + "name": "iTunesCyrFix", + "url": "/v1/software/itunescyrfix" + }, + { + "slug": "iusask", + "name": "iUsask", + "url": "/v1/software/iusask" + }, + { + "slug": "iwebdevelopment", + "name": "iWebDevelopment", + "url": "/v1/software/iwebdevelopment" + }, + { + "slug": "iwrite", + "name": "iWrite", + "url": "/v1/software/iwrite" + }, + { + "slug": "icc-examin", + "name": "icc_examin", + "url": "/v1/software/icc-examin" + }, + { + "slug": "icecream", + "name": "icecream", + "url": "/v1/software/icecream" + }, + { + "slug": "icingaweb2-module-director", + "name": "icingaweb2-module-director", + "url": "/v1/software/icingaweb2-module-director" + }, + { + "slug": "icingaweb2-module-graphite", + "name": "icingaweb2-module-graphite", + "url": "/v1/software/icingaweb2-module-graphite" + }, + { + "slug": "icingaweb2-module-pnp4nagios", + "name": "icingaweb2-module-pnp4nagios", + "url": "/v1/software/icingaweb2-module-pnp4nagios" + }, + { + "slug": "icoutils", + "name": "icoutils", + "url": "/v1/software/icoutils" + }, + { + "slug": "id3tool", + "name": "id3tool", + "url": "/v1/software/id3tool" + }, + { + "slug": "id3v2", + "name": "id3v2", + "url": "/v1/software/id3v2" + }, + { + "slug": "idlcoyote", + "name": "idlcoyote", + "url": "/v1/software/idlcoyote" + }, + { + "slug": "ifmetric", + "name": "ifmetric", + "url": "/v1/software/ifmetric" + }, + { + "slug": "ifplugd", + "name": "ifplugd", + "url": "/v1/software/ifplugd" + }, + { + "slug": "ifstat", + "name": "ifstat", + "url": "/v1/software/ifstat" + }, + { + "slug": "ifstatus", + "name": "ifstatus", + "url": "/v1/software/ifstatus" + }, + { + "slug": "igraph", + "name": "igraph", + "url": "/v1/software/igraph" + }, + { + "slug": "ike-scan", + "name": "ike-scan", + "url": "/v1/software/ike-scan" + }, + { + "slug": "ima-evm-utils", + "name": "ima-evm-utils", + "url": "/v1/software/ima-evm-utils" + }, + { + "slug": "imc-famos", + "name": "imc FAMOS", + "url": "/v1/software/imc-famos" + }, + { + "slug": "imediff2", + "name": "imediff2", + "url": "/v1/software/imediff2" + }, + { + "slug": "img2pdf", + "name": "img2pdf", + "url": "/v1/software/img2pdf" + }, + { + "slug": "imgs-ai", + "name": "imgs.ai", + "url": "/v1/software/imgs-ai" + }, + { + "slug": "impactnet", + "name": "impactnet", + "url": "/v1/software/impactnet" + }, + { + "slug": "inssider", + "name": "inSSIDer", + "url": "/v1/software/inssider" + }, + { + "slug": "indievelo", + "name": "indieVelo", + "url": "/v1/software/indievelo" + }, + { + "slug": "innoextract", + "name": "innoextract", + "url": "/v1/software/innoextract" + }, + { + "slug": "inotify-tools", + "name": "inotify-tools", + "url": "/v1/software/inotify-tools" + }, + { + "slug": "inqscribe", + "name": "inqscribe", + "url": "/v1/software/inqscribe" + }, + { + "slug": "inspectrum", + "name": "inspectrum", + "url": "/v1/software/inspectrum" + }, + { + "slug": "install-mask", + "name": "install-mask", + "url": "/v1/software/install-mask" + }, + { + "slug": "install-xattr", + "name": "install-xattr", + "url": "/v1/software/install-xattr" + }, + { + "slug": "intpakx", + "name": "intpakX", + "url": "/v1/software/intpakx" + }, + { + "slug": "invest-like", + "name": "invest-like", + "url": "/v1/software/invest-like" + }, + { + "slug": "ipcalc", + "name": "ipcalc", + "url": "/v1/software/ipcalc" + }, + { + "slug": "ipdbplugin", + "name": "ipdbplugin", + "url": "/v1/software/ipdbplugin" + }, + { + "slug": "ipgen", + "name": "ipgen", + "url": "/v1/software/ipgen" + }, + { + "slug": "ipkungfu", + "name": "ipkungfu", + "url": "/v1/software/ipkungfu" + }, + { + "slug": "iputils", + "name": "iputils", + "url": "/v1/software/iputils" + }, + { + "slug": "ipv6toolkit", + "name": "ipv6toolkit", + "url": "/v1/software/ipv6toolkit" + }, + { + "slug": "iriver-h100-series", + "name": "iriver H100 series", + "url": "/v1/software/iriver-h100-series" + }, + { + "slug": "iriver-plus", + "name": "iriver plus", + "url": "/v1/software/iriver-plus" + }, + { + "slug": "isimotor", + "name": "isiMotor", + "url": "/v1/software/isimotor" + }, + { + "slug": "ispc", + "name": "ispc", + "url": "/v1/software/ispc" + }, + { + "slug": "itex2mml", + "name": "itex2mml", + "url": "/v1/software/itex2mml" + }, + { + "slug": "jqwidgets", + "name": "jQWidgets", + "url": "/v1/software/jqwidgets" + }, + { + "slug": "java-ebuilder", + "name": "java-ebuilder", + "url": "/v1/software/java-ebuilder" + }, + { + "slug": "jetring", + "name": "jetring", + "url": "/v1/software/jetring" + }, + { + "slug": "jmupdf", + "name": "jmupdf", + "url": "/v1/software/jmupdf" + }, + { + "slug": "jobs", + "name": "jobs", + "url": "/v1/software/jobs" + }, + { + "slug": "jp2a", + "name": "jp2a", + "url": "/v1/software/jp2a" + }, + { + "slug": "jpegpixi", + "name": "jpegpixi", + "url": "/v1/software/jpegpixi" + }, + { + "slug": "jqplot", + "name": "jqplot", + "url": "/v1/software/jqplot" + }, + { + "slug": "jslda", + "name": "jsLDA", + "url": "/v1/software/jslda" + }, + { + "slug": "js-of-ocaml", + "name": "js_of_ocaml", + "url": "/v1/software/js-of-ocaml" + }, + { + "slug": "jupyter-ci", + "name": "jupyter-ci", + "url": "/v1/software/jupyter-ci" + }, + { + "slug": "just-gtfs", + "name": "just_gtfs", + "url": "/v1/software/just-gtfs" + }, + { + "slug": "jvenn", + "name": "jvenn", + "url": "/v1/software/jvenn" + }, + { + "slug": "kallisto", + "name": "kallisto", + "url": "/v1/software/kallisto" + }, + { + "slug": "kaqaz", + "name": "kaqaz", + "url": "/v1/software/kaqaz" + }, + { + "slug": "kbie", + "name": "kbie", + "url": "/v1/software/kbie" + }, + { + "slug": "kcm-fcitx", + "name": "kcm-fcitx", + "url": "/v1/software/kcm-fcitx" + }, + { + "slug": "keepsoft", + "name": "keepsoft", + "url": "/v1/software/keepsoft" + }, + { + "slug": "kerliix-oauth", + "name": "kerliix-oauth", + "url": "/v1/software/kerliix-oauth" + }, + { + "slug": "kexec", + "name": "kexec", + "url": "/v1/software/kexec" + }, + { + "slug": "keychain-q62863995", + "name": "keychain", + "url": "/v1/software/keychain-q62863995" + }, + { + "slug": "keystone", + "name": "keystone", + "url": "/v1/software/keystone" + }, + { + "slug": "kidentitymanagement", + "name": "kidentitymanagement", + "url": "/v1/software/kidentitymanagement" + }, + { + "slug": "kiekko-tk", + "name": "kiekko.tk", + "url": "/v1/software/kiekko-tk" + }, + { + "slug": "killer-soft", + "name": "killer soft", + "url": "/v1/software/killer-soft" + }, + { + "slug": "kismet-ubertooth", + "name": "kismet-ubertooth", + "url": "/v1/software/kismet-ubertooth" + }, + { + "slug": "klick", + "name": "klick", + "url": "/v1/software/klick" + }, + { + "slug": "kmenuedit", + "name": "kmenuedit", + "url": "/v1/software/kmenuedit" + }, + { + "slug": "kmod", + "name": "kmod", + "url": "/v1/software/kmod" + }, + { + "slug": "knock", + "name": "knock", + "url": "/v1/software/knock" + }, + { + "slug": "knocker", + "name": "knocker", + "url": "/v1/software/knocker" + }, + { + "slug": "kodi-audiodecoder-modplug", + "name": "kodi-audiodecoder-modplug", + "url": "/v1/software/kodi-audiodecoder-modplug" + }, + { + "slug": "kodi-audiodecoder-nosefart", + "name": "kodi-audiodecoder-nosefart", + "url": "/v1/software/kodi-audiodecoder-nosefart" + }, + { + "slug": "kodi-audiodecoder-sidplay", + "name": "kodi-audiodecoder-sidplay", + "url": "/v1/software/kodi-audiodecoder-sidplay" + }, + { + "slug": "kodi-audiodecoder-snesapu", + "name": "kodi-audiodecoder-snesapu", + "url": "/v1/software/kodi-audiodecoder-snesapu" + }, + { + "slug": "kodi-audiodecoder-stsound", + "name": "kodi-audiodecoder-stsound", + "url": "/v1/software/kodi-audiodecoder-stsound" + }, + { + "slug": "kodi-audiodecoder-timidity", + "name": "kodi-audiodecoder-timidity", + "url": "/v1/software/kodi-audiodecoder-timidity" + }, + { + "slug": "kodi-audiodecoder-vgmstream", + "name": "kodi-audiodecoder-vgmstream", + "url": "/v1/software/kodi-audiodecoder-vgmstream" + }, + { + "slug": "kodi-audioencoder-flac", + "name": "kodi-audioencoder-flac", + "url": "/v1/software/kodi-audioencoder-flac" + }, + { + "slug": "kodi-audioencoder-lame", + "name": "kodi-audioencoder-lame", + "url": "/v1/software/kodi-audioencoder-lame" + }, + { + "slug": "kodi-audioencoder-vorbis", + "name": "kodi-audioencoder-vorbis", + "url": "/v1/software/kodi-audioencoder-vorbis" + }, + { + "slug": "kodi-audioencoder-wav", + "name": "kodi-audioencoder-wav", + "url": "/v1/software/kodi-audioencoder-wav" + }, + { + "slug": "kodi-game-libretro", + "name": "kodi-game-libretro", + "url": "/v1/software/kodi-game-libretro" + }, + { + "slug": "kodi-inputstream-adaptive", + "name": "kodi-inputstream-adaptive", + "url": "/v1/software/kodi-inputstream-adaptive" + }, + { + "slug": "kodi-inputstream-rtmp", + "name": "kodi-inputstream-rtmp", + "url": "/v1/software/kodi-inputstream-rtmp" + }, + { + "slug": "kodi-peripheral-joystick", + "name": "kodi-peripheral-joystick", + "url": "/v1/software/kodi-peripheral-joystick" + }, + { + "slug": "kodi-platform", + "name": "kodi-platform", + "url": "/v1/software/kodi-platform" + }, + { + "slug": "kodi-pvr-demo", + "name": "kodi-pvr-demo", + "url": "/v1/software/kodi-pvr-demo" + }, + { + "slug": "kodi-pvr-dvblink", + "name": "kodi-pvr-dvblink", + "url": "/v1/software/kodi-pvr-dvblink" + }, + { + "slug": "kodi-pvr-filmon", + "name": "kodi-pvr-filmon", + "url": "/v1/software/kodi-pvr-filmon" + }, + { + "slug": "kodi-pvr-pctv", + "name": "kodi-pvr-pctv", + "url": "/v1/software/kodi-pvr-pctv" + }, + { + "slug": "kodi-pvr-stalker", + "name": "kodi-pvr-stalker", + "url": "/v1/software/kodi-pvr-stalker" + }, + { + "slug": "kodi-pvr-vbox", + "name": "kodi-pvr-vbox", + "url": "/v1/software/kodi-pvr-vbox" + }, + { + "slug": "kodi-screensaver-asteroids", + "name": "kodi-screensaver-asteroids", + "url": "/v1/software/kodi-screensaver-asteroids" + }, + { + "slug": "kodi-screensaver-biogenesis", + "name": "kodi-screensaver-biogenesis", + "url": "/v1/software/kodi-screensaver-biogenesis" + }, + { + "slug": "kodi-screensaver-crystalmorph", + "name": "kodi-screensaver-crystalmorph", + "url": "/v1/software/kodi-screensaver-crystalmorph" + }, + { + "slug": "kodi-screensaver-greynetic", + "name": "kodi-screensaver-greynetic", + "url": "/v1/software/kodi-screensaver-greynetic" + }, + { + "slug": "kodi-screensaver-pingpong", + "name": "kodi-screensaver-pingpong", + "url": "/v1/software/kodi-screensaver-pingpong" + }, + { + "slug": "kodi-screensaver-pyro", + "name": "kodi-screensaver-pyro", + "url": "/v1/software/kodi-screensaver-pyro" + }, + { + "slug": "kodi-screensaver-rsxs", + "name": "kodi-screensaver-rsxs", + "url": "/v1/software/kodi-screensaver-rsxs" + }, + { + "slug": "kodi-visualization-fishbmc", + "name": "kodi-visualization-fishbmc", + "url": "/v1/software/kodi-visualization-fishbmc" + }, + { + "slug": "kodi-visualization-goom", + "name": "kodi-visualization-goom", + "url": "/v1/software/kodi-visualization-goom" + }, + { + "slug": "kodi-visualization-nastyfft", + "name": "kodi-visualization-nastyfft", + "url": "/v1/software/kodi-visualization-nastyfft" + }, + { + "slug": "kodi-visualization-projectm", + "name": "kodi-visualization-projectm", + "url": "/v1/software/kodi-visualization-projectm" + }, + { + "slug": "kodi-visualization-shadertoy", + "name": "kodi-visualization-shadertoy", + "url": "/v1/software/kodi-visualization-shadertoy" + }, + { + "slug": "kodi-visualization-starburst", + "name": "kodi-visualization-starburst", + "url": "/v1/software/kodi-visualization-starburst" + }, + { + "slug": "kodi-visualization-waveform", + "name": "kodi-visualization-waveform", + "url": "/v1/software/kodi-visualization-waveform" + }, + { + "slug": "kompakkt", + "name": "kompakkt", + "url": "/v1/software/kompakkt" + }, + { + "slug": "kpcli", + "name": "kpcli", + "url": "/v1/software/kpcli" + }, + { + "slug": "kpkpass", + "name": "kpkpass", + "url": "/v1/software/kpkpass" + }, + { + "slug": "kqtquickcharts", + "name": "kqtquickcharts", + "url": "/v1/software/kqtquickcharts" + }, + { + "slug": "kuvert", + "name": "kuvert", + "url": "/v1/software/kuvert" + }, + { + "slug": "kvpm", + "name": "kvpm", + "url": "/v1/software/kvpm" + }, + { + "slug": "l3afpad", + "name": "l3afpad", + "url": "/v1/software/l3afpad" + }, + { + "slug": "l7-filter", + "name": "l7-filter", + "url": "/v1/software/l7-filter" + }, + { + "slug": "labarchives", + "name": "labArchives", + "url": "/v1/software/labarchives" + }, + { + "slug": "laretz", + "name": "laretz", + "url": "/v1/software/laretz" + }, + { + "slug": "law-practice-management-software", + "name": "law practice management software", + "url": "/v1/software/law-practice-management-software" + }, + { + "slug": "layman", + "name": "layman", + "url": "/v1/software/layman" + }, + { + "slug": "lbdb", + "name": "lbdb", + "url": "/v1/software/lbdb" + }, + { + "slug": "lcab", + "name": "lcab", + "url": "/v1/software/lcab" + }, + { + "slug": "lcd4linux", + "name": "lcd4linux", + "url": "/v1/software/lcd4linux" + }, + { + "slug": "lcr", + "name": "lcr", + "url": "/v1/software/lcr" + }, + { + "slug": "ldapvi", + "name": "ldapvi", + "url": "/v1/software/ldapvi" + }, + { + "slug": "leapcast", + "name": "leapcast", + "url": "/v1/software/leapcast" + }, + { + "slug": "led", + "name": "led", + "url": "/v1/software/led" + }, + { + "slug": "lesspipe", + "name": "lesspipe", + "url": "/v1/software/lesspipe" + }, + { + "slug": "letterize", + "name": "letterize", + "url": "/v1/software/letterize" + }, + { + "slug": "lettrs", + "name": "lettrs", + "url": "/v1/software/lettrs" + }, + { + "slug": "lhs2tex", + "name": "lhs2tex", + "url": "/v1/software/lhs2tex" + }, + { + "slug": "libxcm", + "name": "libXcm", + "url": "/v1/software/libxcm" + }, + { + "slug": "liba53", + "name": "liba53", + "url": "/v1/software/liba53" + }, + { + "slug": "libabigail", + "name": "libabigail", + "url": "/v1/software/libabigail" + }, + { + "slug": "libabw", + "name": "libabw", + "url": "/v1/software/libabw" + }, + { + "slug": "libalkimia", + "name": "libalkimia", + "url": "/v1/software/libalkimia" + }, + { + "slug": "libamc", + "name": "libamc", + "url": "/v1/software/libamc" + }, + { + "slug": "libattica", + "name": "libattica", + "url": "/v1/software/libattica" + }, + { + "slug": "libax25", + "name": "libax25", + "url": "/v1/software/libax25" + }, + { + "slug": "libayatana", + "name": "libayatana", + "url": "/v1/software/libayatana" + }, + { + "slug": "libbdplus", + "name": "libbdplus", + "url": "/v1/software/libbdplus" + }, + { + "slug": "libbonobo", + "name": "libbonobo", + "url": "/v1/software/libbonobo" + }, + { + "slug": "libbtbb", + "name": "libbtbb", + "url": "/v1/software/libbtbb" + }, + { + "slug": "libccd", + "name": "libccd", + "url": "/v1/software/libccd" + }, + { + "slug": "libcdr", + "name": "libcdr", + "url": "/v1/software/libcdr" + }, + { + "slug": "libcircle", + "name": "libcircle", + "url": "/v1/software/libcircle" + }, + { + "slug": "libclc", + "name": "libclc", + "url": "/v1/software/libclc" + }, + { + "slug": "libclsync", + "name": "libclsync", + "url": "/v1/software/libclsync" + }, + { + "slug": "libcmis", + "name": "libcmis", + "url": "/v1/software/libcmis" + }, + { + "slug": "libcrafter", + "name": "libcrafter", + "url": "/v1/software/libcrafter" + }, + { + "slug": "libcxxabi", + "name": "libcxxabi", + "url": "/v1/software/libcxxabi" + }, + { + "slug": "libcxxrt", + "name": "libcxxrt", + "url": "/v1/software/libcxxrt" + }, + { + "slug": "libdivecomputer", + "name": "libdivecomputer", + "url": "/v1/software/libdivecomputer" + }, + { + "slug": "libdivsufsort", + "name": "libdivsufsort", + "url": "/v1/software/libdivsufsort" + }, + { + "slug": "libdnet-q62860492", + "name": "libdnet", + "url": "/v1/software/libdnet-q62860492" + }, + { + "slug": "libdnet", + "name": "libdnet", + "url": "/v1/software/libdnet" + }, + { + "slug": "libechonest", + "name": "libechonest", + "url": "/v1/software/libechonest" + }, + { + "slug": "libeot", + "name": "libeot", + "url": "/v1/software/libeot" + }, + { + "slug": "libepoxy", + "name": "libepoxy", + "url": "/v1/software/libepoxy" + }, + { + "slug": "libev", + "name": "libev", + "url": "/v1/software/libev" + }, + { + "slug": "libfame", + "name": "libfame", + "url": "/v1/software/libfame" + }, + { + "slug": "libfuse", + "name": "libfuse", + "url": "/v1/software/libfuse" + }, + { + "slug": "libgltf", + "name": "libgltf", + "url": "/v1/software/libgltf" + }, + { + "slug": "libgnomecanvasmm", + "name": "libgnomecanvasmm", + "url": "/v1/software/libgnomecanvasmm" + }, + { + "slug": "libh2o", + "name": "libh2o", + "url": "/v1/software/libh2o" + }, + { + "slug": "libh2oxx", + "name": "libh2oxx", + "url": "/v1/software/libh2oxx" + }, + { + "slug": "libhackrf", + "name": "libhackrf", + "url": "/v1/software/libhackrf" + }, + { + "slug": "libhoudini", + "name": "libhoudini", + "url": "/v1/software/libhoudini" + }, + { + "slug": "libibverbs", + "name": "libibverbs", + "url": "/v1/software/libibverbs" + }, + { + "slug": "libinput-gestures", + "name": "libinput-gestures", + "url": "/v1/software/libinput-gestures" + }, + { + "slug": "libipod", + "name": "libipod", + "url": "/v1/software/libipod" + }, + { + "slug": "libiscsi", + "name": "libiscsi", + "url": "/v1/software/libiscsi" + }, + { + "slug": "libisds", + "name": "libisds", + "url": "/v1/software/libisds" + }, + { + "slug": "libixion", + "name": "libixion", + "url": "/v1/software/libixion" + }, + { + "slug": "libixp", + "name": "libixp", + "url": "/v1/software/libixp" + }, + { + "slug": "libjaylink", + "name": "libjaylink", + "url": "/v1/software/libjaylink" + }, + { + "slug": "libjson-rpc-cpp", + "name": "libjson-rpc-cpp", + "url": "/v1/software/libjson-rpc-cpp" + }, + { + "slug": "libksysguard", + "name": "libksysguard", + "url": "/v1/software/libksysguard" + }, + { + "slug": "liblaretz", + "name": "liblaretz", + "url": "/v1/software/liblaretz" + }, + { + "slug": "liblognorm", + "name": "liblognorm", + "url": "/v1/software/liblognorm" + }, + { + "slug": "libmbim", + "name": "libmbim", + "url": "/v1/software/libmbim" + }, + { + "slug": "libmirisdr", + "name": "libmirisdr", + "url": "/v1/software/libmirisdr" + }, + { + "slug": "libmowgli", + "name": "libmowgli", + "url": "/v1/software/libmowgli" + }, + { + "slug": "libomp", + "name": "libomp", + "url": "/v1/software/libomp" + }, + { + "slug": "liborcus", + "name": "liborcus", + "url": "/v1/software/liborcus" + }, + { + "slug": "libosmo-abis", + "name": "libosmo-abis", + "url": "/v1/software/libosmo-abis" + }, + { + "slug": "libosmo-dsp", + "name": "libosmo-dsp", + "url": "/v1/software/libosmo-dsp" + }, + { + "slug": "libosmo-netif", + "name": "libosmo-netif", + "url": "/v1/software/libosmo-netif" + }, + { + "slug": "libosmocore", + "name": "libosmocore", + "url": "/v1/software/libosmocore" + }, + { + "slug": "libpostproc", + "name": "libpostproc", + "url": "/v1/software/libpostproc" + }, + { + "slug": "libqmi", + "name": "libqmi", + "url": "/v1/software/libqmi" + }, + { + "slug": "libqtxdg", + "name": "libqtxdg", + "url": "/v1/software/libqtxdg" + }, + { + "slug": "libquo", + "name": "libquo", + "url": "/v1/software/libquo" + }, + { + "slug": "libqxp", + "name": "libqxp", + "url": "/v1/software/libqxp" + }, + { + "slug": "librdkafka", + "name": "librdkafka", + "url": "/v1/software/librdkafka" + }, + { + "slug": "libreqda", + "name": "libreQDA", + "url": "/v1/software/libreqda" + }, + { + "slug": "librest", + "name": "librest", + "url": "/v1/software/librest" + }, + { + "slug": "libretro-dosbox", + "name": "libretro-dosbox", + "url": "/v1/software/libretro-dosbox" + }, + { + "slug": "libselinux", + "name": "libselinux", + "url": "/v1/software/libselinux" + }, + { + "slug": "libsemanage", + "name": "libsemanage", + "url": "/v1/software/libsemanage" + }, + { + "slug": "libsepol", + "name": "libsepol", + "url": "/v1/software/libsepol" + }, + { + "slug": "libserialport", + "name": "libserialport", + "url": "/v1/software/libserialport" + }, + { + "slug": "libshumate", + "name": "libshumate", + "url": "/v1/software/libshumate" + }, + { + "slug": "libsigrok", + "name": "libsigrok", + "url": "/v1/software/libsigrok" + }, + { + "slug": "libsigrokdecode", + "name": "libsigrokdecode", + "url": "/v1/software/libsigrokdecode" + }, + { + "slug": "libspatialindex", + "name": "libspatialindex", + "url": "/v1/software/libspatialindex" + }, + { + "slug": "libspe2", + "name": "libspe2", + "url": "/v1/software/libspe2" + }, + { + "slug": "libtar", + "name": "libtar", + "url": "/v1/software/libtar" + }, + { + "slug": "libtinynotify", + "name": "libtinynotify", + "url": "/v1/software/libtinynotify" + }, + { + "slug": "libtinynotify-cli", + "name": "libtinynotify-cli", + "url": "/v1/software/libtinynotify-cli" + }, + { + "slug": "libtinynotify-systemwide", + "name": "libtinynotify-systemwide", + "url": "/v1/software/libtinynotify-systemwide" + }, + { + "slug": "libtxc-dxtn", + "name": "libtxc_dxtn", + "url": "/v1/software/libtxc-dxtn" + }, + { + "slug": "libu2f-server", + "name": "libu2f-server", + "url": "/v1/software/libu2f-server" + }, + { + "slug": "libva-intel-driver", + "name": "libva-intel-driver", + "url": "/v1/software/libva-intel-driver" + }, + { + "slug": "libvirt-php", + "name": "libvirt-php", + "url": "/v1/software/libvirt-php" + }, + { + "slug": "libwbxml", + "name": "libwbxml", + "url": "/v1/software/libwbxml" + }, + { + "slug": "libxklavier", + "name": "libxklavier", + "url": "/v1/software/libxklavier" + }, + { + "slug": "libxls", + "name": "libxls", + "url": "/v1/software/libxls" + }, + { + "slug": "libxml-perl", + "name": "libxml-perl", + "url": "/v1/software/libxml-perl" + }, + { + "slug": "libyami", + "name": "libyami", + "url": "/v1/software/libyami" + }, + { + "slug": "licma", + "name": "licma", + "url": "/v1/software/licma" + }, + { + "slug": "lightbox-com", + "name": "lightbox.com", + "url": "/v1/software/lightbox-com" + }, + { + "slug": "lightline", + "name": "lightline", + "url": "/v1/software/lightline" + }, + { + "slug": "limma", + "name": "limma", + "url": "/v1/software/limma" + }, + { + "slug": "linsmith", + "name": "linSmith", + "url": "/v1/software/linsmith" + }, + { + "slug": "line-profiler", + "name": "line_profiler", + "url": "/v1/software/line-profiler" + }, + { + "slug": "lingotek", + "name": "lingotek", + "url": "/v1/software/lingotek" + }, + { + "slug": "linkchecker", + "name": "linkchecker", + "url": "/v1/software/linkchecker" + }, + { + "slug": "linuxptp", + "name": "linuxptp", + "url": "/v1/software/linuxptp" + }, + { + "slug": "lio-utils", + "name": "lio-utils", + "url": "/v1/software/lio-utils" + }, + { + "slug": "liveusbcreator", + "name": "liveUSBcreator", + "url": "/v1/software/liveusbcreator" + }, + { + "slug": "livecd-tools", + "name": "livecd-tools", + "url": "/v1/software/livecd-tools" + }, + { + "slug": "lldpd", + "name": "lldpd", + "url": "/v1/software/lldpd" + }, + { + "slug": "llvm-libunwind", + "name": "llvm-libunwind", + "url": "/v1/software/llvm-libunwind" + }, + { + "slug": "llvm-ocaml", + "name": "llvm-ocaml", + "url": "/v1/software/llvm-ocaml" + }, + { + "slug": "llvm-vim", + "name": "llvm-vim", + "url": "/v1/software/llvm-vim" + }, + { + "slug": "lmdb", + "name": "lmdb++", + "url": "/v1/software/lmdb" + }, + { + "slug": "lmfit", + "name": "lmfit", + "url": "/v1/software/lmfit" + }, + { + "slug": "local-shared-object", + "name": "local shared object", + "url": "/v1/software/local-shared-object" + }, + { + "slug": "log-shipping", + "name": "log shipping", + "url": "/v1/software/log-shipping" + }, + { + "slug": "log4sh", + "name": "log4sh", + "url": "/v1/software/log4sh" + }, + { + "slug": "logparser", + "name": "logparser", + "url": "/v1/software/logparser" + }, + { + "slug": "lohit-nepali", + "name": "lohit-nepali", + "url": "/v1/software/lohit-nepali" + }, + { + "slug": "lomoco", + "name": "lomoco", + "url": "/v1/software/lomoco" + }, + { + "slug": "looloo", + "name": "looloo", + "url": "/v1/software/looloo" + }, + { + "slug": "lsuio", + "name": "lsuio", + "url": "/v1/software/lsuio" + }, + { + "slug": "lucidlife", + "name": "lucidlife", + "url": "/v1/software/lucidlife" + }, + { + "slug": "luit", + "name": "luit", + "url": "/v1/software/luit" + }, + { + "slug": "luvit", + "name": "luvit", + "url": "/v1/software/luvit" + }, + { + "slug": "lwm", + "name": "lwm", + "url": "/v1/software/lwm" + }, + { + "slug": "lxcfs", + "name": "lxcfs", + "url": "/v1/software/lxcfs" + }, + { + "slug": "lxqt-common", + "name": "lxqt-common", + "url": "/v1/software/lxqt-common" + }, + { + "slug": "lxqt-l10n", + "name": "lxqt-l10n", + "url": "/v1/software/lxqt-l10n" + }, + { + "slug": "lxrun", + "name": "lxrun", + "url": "/v1/software/lxrun" + }, + { + "slug": "msql", + "name": "mSQL", + "url": "/v1/software/msql" + }, + { + "slug": "macfuse", + "name": "macFUSE", + "url": "/v1/software/macfuse" + }, + { + "slug": "mahotas", + "name": "mahotas", + "url": "/v1/software/mahotas" + }, + { + "slug": "mailfront", + "name": "mailfront", + "url": "/v1/software/mailfront" + }, + { + "slug": "mailgraph", + "name": "mailgraph", + "url": "/v1/software/mailgraph" + }, + { + "slug": "mailsync", + "name": "mailsync", + "url": "/v1/software/mailsync" + }, + { + "slug": "mainframe-sort-merge", + "name": "mainframe sort merge", + "url": "/v1/software/mainframe-sort-merge" + }, + { + "slug": "makebootfat", + "name": "makebootfat", + "url": "/v1/software/makebootfat" + }, + { + "slug": "makeheaders", + "name": "makeheaders", + "url": "/v1/software/makeheaders" + }, + { + "slug": "mamba", + "name": "mamba", + "url": "/v1/software/mamba" + }, + { + "slug": "man2html", + "name": "man2html", + "url": "/v1/software/man2html" + }, + { + "slug": "manaba", + "name": "manaba", + "url": "/v1/software/manaba" + }, + { + "slug": "manticore", + "name": "manticore", + "url": "/v1/software/manticore" + }, + { + "slug": "mapkurator", + "name": "mapKurator", + "url": "/v1/software/mapkurator" + }, + { + "slug": "mapline", + "name": "mapline", + "url": "/v1/software/mapline" + }, + { + "slug": "mapscii", + "name": "mapscii", + "url": "/v1/software/mapscii" + }, + { + "slug": "martux", + "name": "marTux", + "url": "/v1/software/martux" + }, + { + "slug": "markaby", + "name": "markaby", + "url": "/v1/software/markaby" + }, + { + "slug": "mash-q62859498", + "name": "mash", + "url": "/v1/software/mash-q62859498" + }, + { + "slug": "mate-calc", + "name": "mate-calc", + "url": "/v1/software/mate-calc" + }, + { + "slug": "mautic", + "name": "mautic", + "url": "/v1/software/mautic" + }, + { + "slug": "mboxgrep", + "name": "mboxgrep", + "url": "/v1/software/mboxgrep" + }, + { + "slug": "mbpfan", + "name": "mbpfan", + "url": "/v1/software/mbpfan" + }, + { + "slug": "mcelog", + "name": "mcelog", + "url": "/v1/software/mcelog" + }, + { + "slug": "md6sum", + "name": "md6sum", + "url": "/v1/software/md6sum" + }, + { + "slug": "mdds", + "name": "mdds", + "url": "/v1/software/mdds" + }, + { + "slug": "mdiapp", + "name": "mdiapp", + "url": "/v1/software/mdiapp" + }, + { + "slug": "meandmyshadow", + "name": "meandmyshadow", + "url": "/v1/software/meandmyshadow" + }, + { + "slug": "mediacrush-cli", + "name": "mediacrush-cli", + "url": "/v1/software/mediacrush-cli" + }, + { + "slug": "medusa-q62859271", + "name": "medusa", + "url": "/v1/software/medusa-q62859271" + }, + { + "slug": "medusa", + "name": "medusa", + "url": "/v1/software/medusa" + }, + { + "slug": "meed", + "name": "meed", + "url": "/v1/software/meed" + }, + { + "slug": "megatools", + "name": "megatools", + "url": "/v1/software/megatools" + }, + { + "slug": "memoq", + "name": "memoQ", + "url": "/v1/software/memoq" + }, + { + "slug": "memtester", + "name": "memtester", + "url": "/v1/software/memtester" + }, + { + "slug": "merge-window", + "name": "merge window", + "url": "/v1/software/merge-window" + }, + { + "slug": "mergelog", + "name": "mergelog", + "url": "/v1/software/mergelog" + }, + { + "slug": "mesa-progs", + "name": "mesa-progs", + "url": "/v1/software/mesa-progs" + }, + { + "slug": "mesoscale-hydrological-model", + "name": "mesoscale Hydrological Model", + "url": "/v1/software/mesoscale-hydrological-model" + }, + { + "slug": "metadata-removal-tool", + "name": "metadata removal tool", + "url": "/v1/software/metadata-removal-tool" + }, + { + "slug": "metagen", + "name": "metagen", + "url": "/v1/software/metagen" + }, + { + "slug": "metapixel", + "name": "metapixel", + "url": "/v1/software/metapixel" + }, + { + "slug": "mflow", + "name": "mflow", + "url": "/v1/software/mflow" + }, + { + "slug": "mhwaveedit", + "name": "mhWaveEdit", + "url": "/v1/software/mhwaveedit" + }, + { + "slug": "mico", + "name": "mico", + "url": "/v1/software/mico" + }, + { + "slug": "micro-prolog", + "name": "micro-PROLOG", + "url": "/v1/software/micro-prolog" + }, + { + "slug": "mimalloc-bench", + "name": "mimalloc-bench", + "url": "/v1/software/mimalloc-bench" + }, + { + "slug": "minezy", + "name": "minezy", + "url": "/v1/software/minezy" + }, + { + "slug": "minimap2", + "name": "minimap2", + "url": "/v1/software/minimap2" + }, + { + "slug": "miracl", + "name": "miracl", + "url": "/v1/software/miracl" + }, + { + "slug": "mirage2iso", + "name": "mirage2iso", + "url": "/v1/software/mirage2iso" + }, + { + "slug": "mirmon", + "name": "mirmon", + "url": "/v1/software/mirmon" + }, + { + "slug": "mirrorselect", + "name": "mirrorselect", + "url": "/v1/software/mirrorselect" + }, + { + "slug": "mlmmj", + "name": "mlmmj", + "url": "/v1/software/mlmmj" + }, + { + "slug": "mlocate", + "name": "mlocate", + "url": "/v1/software/mlocate" + }, + { + "slug": "mobile-phonetools", + "name": "mobile PhoneTools", + "url": "/v1/software/mobile-phonetools" + }, + { + "slug": "mobile-device-management", + "name": "mobile device management", + "url": "/v1/software/mobile-device-management" + }, + { + "slug": "modd", + "name": "modd", + "url": "/v1/software/modd" + }, + { + "slug": "mojapteczka", + "name": "mojApteczka", + "url": "/v1/software/mojapteczka" + }, + { + "slug": "monkeyd", + "name": "monkeyd", + "url": "/v1/software/monkeyd" + }, + { + "slug": "monkeysphere", + "name": "monkeysphere", + "url": "/v1/software/monkeysphere" + }, + { + "slug": "moreutils", + "name": "moreutils", + "url": "/v1/software/moreutils" + }, + { + "slug": "moserial", + "name": "moserial", + "url": "/v1/software/moserial" + }, + { + "slug": "moz-git-tools", + "name": "moz-git-tools", + "url": "/v1/software/moz-git-tools" + }, + { + "slug": "mp3check", + "name": "mp3check", + "url": "/v1/software/mp3check" + }, + { + "slug": "mpdscribble", + "name": "mpdscribble", + "url": "/v1/software/mpdscribble" + }, + { + "slug": "mpgtx", + "name": "mpgtx", + "url": "/v1/software/mpgtx" + }, + { + "slug": "mpibash", + "name": "mpibash", + "url": "/v1/software/mpibash" + }, + { + "slug": "mpress", + "name": "mpress", + "url": "/v1/software/mpress" + }, + { + "slug": "mpt-status", + "name": "mpt-status", + "url": "/v1/software/mpt-status" + }, + { + "slug": "msconvert", + "name": "msConvert", + "url": "/v1/software/msconvert" + }, + { + "slug": "mscompress", + "name": "mscompress", + "url": "/v1/software/mscompress" + }, + { + "slug": "msort", + "name": "msort", + "url": "/v1/software/msort" + }, + { + "slug": "mswatch", + "name": "mswatch", + "url": "/v1/software/mswatch" + }, + { + "slug": "mtail", + "name": "mtail", + "url": "/v1/software/mtail" + }, + { + "slug": "mtd-utils", + "name": "mtd-utils", + "url": "/v1/software/mtd-utils" + }, + { + "slug": "muparser", + "name": "muParser", + "url": "/v1/software/muparser" + }, + { + "slug": "muffin", + "name": "muffin", + "url": "/v1/software/muffin" + }, + { + "slug": "multilingual-software", + "name": "multilingual software", + "url": "/v1/software/multilingual-software" + }, + { + "slug": "multimon-ng", + "name": "multimon-ng", + "url": "/v1/software/multimon-ng" + }, + { + "slug": "multitail", + "name": "multitail", + "url": "/v1/software/multitail" + }, + { + "slug": "multivalue", + "name": "multivalue", + "url": "/v1/software/multivalue" + }, + { + "slug": "multivocal-mapping-database", + "name": "multivocal-mapping-database", + "url": "/v1/software/multivocal-mapping-database" + }, + { + "slug": "musl-nscd", + "name": "musl-nscd", + "url": "/v1/software/musl-nscd" + }, + { + "slug": "myhistro", + "name": "myHistro", + "url": "/v1/software/myhistro" + }, + { + "slug": "mymbpg", + "name": "myMBPG", + "url": "/v1/software/mymbpg" + }, + { + "slug": "mypeers", + "name": "myPeers", + "url": "/v1/software/mypeers" + }, + { + "slug": "myquiz", + "name": "myQuiz", + "url": "/v1/software/myquiz" + }, + { + "slug": "mycli", + "name": "mycli", + "url": "/v1/software/mycli" + }, + { + "slug": "mylvmbackup", + "name": "mylvmbackup", + "url": "/v1/software/mylvmbackup" + }, + { + "slug": "myspell-pt", + "name": "myspell-pt", + "url": "/v1/software/myspell-pt" + }, + { + "slug": "mysqltcl", + "name": "mysqltcl", + "url": "/v1/software/mysqltcl" + }, + { + "slug": "mystride", + "name": "mystride", + "url": "/v1/software/mystride" + }, + { + "slug": "mythweb", + "name": "mythweb", + "url": "/v1/software/mythweb" + }, + { + "slug": "mytop", + "name": "mytop", + "url": "/v1/software/mytop" + }, + { + "slug": "n8n", + "name": "n8n", + "url": "/v1/software/n8n" + }, + { + "slug": "n8n-mcp", + "name": "n8n-mcp", + "url": "/v1/software/n8n-mcp" + }, + { + "slug": "ninvaders", + "name": "nInvaders", + "url": "/v1/software/ninvaders" + }, + { + "slug": "nlite", + "name": "nLite", + "url": "/v1/software/nlite" + }, + { + "slug": "nquery-sample-size-software", + "name": "nQuery Sample Size Software", + "url": "/v1/software/nquery-sample-size-software" + }, + { + "slug": "nagios-snmp-plugins", + "name": "nagios-snmp-plugins", + "url": "/v1/software/nagios-snmp-plugins" + }, + { + "slug": "nagircbot", + "name": "nagircbot", + "url": "/v1/software/nagircbot" + }, + { + "slug": "nagstamon", + "name": "nagstamon", + "url": "/v1/software/nagstamon" + }, + { + "slug": "namcap", + "name": "namcap", + "url": "/v1/software/namcap" + }, + { + "slug": "nanoflann", + "name": "nanoflann", + "url": "/v1/software/nanoflann" + }, + { + "slug": "nanovg", + "name": "nanovg", + "url": "/v1/software/nanovg" + }, + { + "slug": "nat-traverse", + "name": "nat-traverse", + "url": "/v1/software/nat-traverse" + }, + { + "slug": "native", + "name": "native", + "url": "/v1/software/native" + }, + { + "slug": "ncdc", + "name": "ncdc", + "url": "/v1/software/ncdc" + }, + { + "slug": "needrestart", + "name": "needrestart", + "url": "/v1/software/needrestart" + }, + { + "slug": "nemesis", + "name": "nemesis", + "url": "/v1/software/nemesis" + }, + { + "slug": "neofuuka-scraper", + "name": "neofuuka-scraper", + "url": "/v1/software/neofuuka-scraper" + }, + { + "slug": "neonion", + "name": "neonion", + "url": "/v1/software/neonion" + }, + { + "slug": "net-tools", + "name": "net-tools", + "url": "/v1/software/net-tools" + }, + { + "slug": "netcdf-conv", + "name": "netcdf-conv", + "url": "/v1/software/netcdf-conv" + }, + { + "slug": "netdiscover", + "name": "netdiscover", + "url": "/v1/software/netdiscover" + }, + { + "slug": "netpgp", + "name": "netpgp", + "url": "/v1/software/netpgp" + }, + { + "slug": "netrik", + "name": "netrik", + "url": "/v1/software/netrik" + }, + { + "slug": "netstat-nat", + "name": "netstat-nat", + "url": "/v1/software/netstat-nat" + }, + { + "slug": "netwag", + "name": "netwag", + "url": "/v1/software/netwag" + }, + { + "slug": "network-block-device", + "name": "network block device", + "url": "/v1/software/network-block-device" + }, + { + "slug": "netwox", + "name": "netwox", + "url": "/v1/software/netwox" + }, + { + "slug": "neurips21-self-supervised-bug-detection-and-repair", + "name": "neurips21-self-supervised-bug-detection-and-repair", + "url": "/v1/software/neurips21-self-supervised-bug-detection-and-repair" + }, + { + "slug": "neutron", + "name": "neutron", + "url": "/v1/software/neutron" + }, + { + "slug": "nfacct", + "name": "nfacct", + "url": "/v1/software/nfacct" + }, + { + "slug": "nfbtrans", + "name": "nfbtrans", + "url": "/v1/software/nfbtrans" + }, + { + "slug": "nfoview", + "name": "nfoview", + "url": "/v1/software/nfoview" + }, + { + "slug": "ng-utils", + "name": "ng-utils", + "url": "/v1/software/ng-utils" + }, + { + "slug": "ngircd", + "name": "ngIRCd", + "url": "/v1/software/ngircd" + }, + { + "slug": "niftools", + "name": "niftools", + "url": "/v1/software/niftools" + }, + { + "slug": "nikola", + "name": "nikola", + "url": "/v1/software/nikola" + }, + { + "slug": "nipper", + "name": "nipper", + "url": "/v1/software/nipper" + }, + { + "slug": "nlbse2022-replication-kit", + "name": "nlbse2022_replication_kit", + "url": "/v1/software/nlbse2022-replication-kit" + }, + { + "slug": "nload", + "name": "nload", + "url": "/v1/software/nload" + }, + { + "slug": "nlopt", + "name": "nlopt", + "url": "/v1/software/nlopt" + }, + { + "slug": "nmf-app", + "name": "nmf-app", + "url": "/v1/software/nmf-app" + }, + { + "slug": "nmzmail", + "name": "nmzmail", + "url": "/v1/software/nmzmail" + }, + { + "slug": "noscribe", + "name": "noScribe", + "url": "/v1/software/noscribe" + }, + { + "slug": "nosketch-engine", + "name": "noSketch Engine", + "url": "/v1/software/nosketch-engine" + }, + { + "slug": "node-stream", + "name": "node stream", + "url": "/v1/software/node-stream" + }, + { + "slug": "node-libravatar", + "name": "node-libravatar", + "url": "/v1/software/node-libravatar" + }, + { + "slug": "nodegoat", + "name": "nodegoat", + "url": "/v1/software/nodegoat" + }, + { + "slug": "noki", + "name": "noki", + "url": "/v1/software/noki" + }, + { + "slug": "nose", + "name": "nose", + "url": "/v1/software/nose" + }, + { + "slug": "nova", + "name": "nova", + "url": "/v1/software/nova" + }, + { + "slug": "novapdf", + "name": "novaPDF", + "url": "/v1/software/novapdf" + }, + { + "slug": "npapi-sdk", + "name": "npapi-sdk", + "url": "/v1/software/npapi-sdk" + }, + { + "slug": "npapi-vlc", + "name": "npapi-vlc", + "url": "/v1/software/npapi-vlc" + }, + { + "slug": "npefix", + "name": "npefix", + "url": "/v1/software/npefix" + }, + { + "slug": "nqp", + "name": "nqp", + "url": "/v1/software/nqp" + }, + { + "slug": "nsupdate", + "name": "nsupdate", + "url": "/v1/software/nsupdate" + }, + { + "slug": "ntfsresize", + "name": "ntfsresize", + "url": "/v1/software/ntfsresize" + }, + { + "slug": "ntfy", + "name": "ntfy", + "url": "/v1/software/ntfy" + }, + { + "slug": "nullmailer", + "name": "nullmailer", + "url": "/v1/software/nullmailer" + }, + { + "slug": "num-utils", + "name": "num-utils", + "url": "/v1/software/num-utils" + }, + { + "slug": "numad", + "name": "numad", + "url": "/v1/software/numad" + }, + { + "slug": "nvd", + "name": "nvd", + "url": "/v1/software/nvd" + }, + { + "slug": "oskope", + "name": "oSkope", + "url": "/v1/software/oskope" + }, + { + "slug": "ostorybook", + "name": "oStorybook", + "url": "/v1/software/ostorybook" + }, + { + "slug": "otranscribe", + "name": "oTranscribe", + "url": "/v1/software/otranscribe" + }, + { + "slug": "oandbackup", + "name": "oandbackup", + "url": "/v1/software/oandbackup" + }, + { + "slug": "obconf", + "name": "obconf", + "url": "/v1/software/obconf" + }, + { + "slug": "ocsigen-start", + "name": "ocsigen-start", + "url": "/v1/software/ocsigen-start" + }, + { + "slug": "ocsigen-toolkit", + "name": "ocsigen-toolkit", + "url": "/v1/software/ocsigen-toolkit" + }, + { + "slug": "ocsigenserver", + "name": "ocsigenserver", + "url": "/v1/software/ocsigenserver" + }, + { + "slug": "octomap", + "name": "octomap", + "url": "/v1/software/octomap" + }, + { + "slug": "odt2txt", + "name": "odt2txt", + "url": "/v1/software/odt2txt" + }, + { + "slug": "ogmtools", + "name": "ogmtools", + "url": "/v1/software/ogmtools" + }, + { + "slug": "oinkmaster", + "name": "oinkmaster", + "url": "/v1/software/oinkmaster" + }, + { + "slug": "olwm", + "name": "olwm", + "url": "/v1/software/olwm" + }, + { + "slug": "omniorb", + "name": "omniORB", + "url": "/v1/software/omniorb" + }, + { + "slug": "onesis", + "name": "oneSIS", + "url": "/v1/software/onesis" + }, + { + "slug": "onion", + "name": "onion", + "url": "/v1/software/onion" + }, + { + "slug": "online-complex-processing", + "name": "online complex processing", + "url": "/v1/software/online-complex-processing" + }, + { + "slug": "ontolutils", + "name": "ontolutils", + "url": "/v1/software/ontolutils" + }, + { + "slug": "ontop", + "name": "ontop", + "url": "/v1/software/ontop" + }, + { + "slug": "open-source-economics", + "name": "open-source economics", + "url": "/v1/software/open-source-economics" + }, + { + "slug": "opencefadb", + "name": "openCeFaDB", + "url": "/v1/software/opencefadb" + }, + { + "slug": "opencc", + "name": "opencc", + "url": "/v1/software/opencc" + }, + { + "slug": "opencpn-plugin-br24radar", + "name": "opencpn-plugin-br24radar", + "url": "/v1/software/opencpn-plugin-br24radar" + }, + { + "slug": "opencpn-plugin-climatology", + "name": "opencpn-plugin-climatology", + "url": "/v1/software/opencpn-plugin-climatology" + }, + { + "slug": "opencpn-plugin-dr", + "name": "opencpn-plugin-dr", + "url": "/v1/software/opencpn-plugin-dr" + }, + { + "slug": "opencpn-plugin-findit", + "name": "opencpn-plugin-findit", + "url": "/v1/software/opencpn-plugin-findit" + }, + { + "slug": "opencpn-plugin-gxradar", + "name": "opencpn-plugin-gxradar", + "url": "/v1/software/opencpn-plugin-gxradar" + }, + { + "slug": "opencpn-plugin-iacfleet", + "name": "opencpn-plugin-iacfleet", + "url": "/v1/software/opencpn-plugin-iacfleet" + }, + { + "slug": "opencpn-plugin-launcher", + "name": "opencpn-plugin-launcher", + "url": "/v1/software/opencpn-plugin-launcher" + }, + { + "slug": "opencpn-plugin-logbookkonni", + "name": "opencpn-plugin-logbookkonni", + "url": "/v1/software/opencpn-plugin-logbookkonni" + }, + { + "slug": "opencpn-plugin-objsearch", + "name": "opencpn-plugin-objsearch", + "url": "/v1/software/opencpn-plugin-objsearch" + }, + { + "slug": "opencpn-plugin-ocpn-draw", + "name": "opencpn-plugin-ocpn_draw", + "url": "/v1/software/opencpn-plugin-ocpn-draw" + }, + { + "slug": "opencpn-plugin-ocpndebugger", + "name": "opencpn-plugin-ocpndebugger", + "url": "/v1/software/opencpn-plugin-ocpndebugger" + }, + { + "slug": "opencpn-plugin-otcurrent", + "name": "opencpn-plugin-otcurrent", + "url": "/v1/software/opencpn-plugin-otcurrent" + }, + { + "slug": "opencpn-plugin-polar", + "name": "opencpn-plugin-polar", + "url": "/v1/software/opencpn-plugin-polar" + }, + { + "slug": "opencpn-plugin-radar", + "name": "opencpn-plugin-radar", + "url": "/v1/software/opencpn-plugin-radar" + }, + { + "slug": "opencpn-plugin-route", + "name": "opencpn-plugin-route", + "url": "/v1/software/opencpn-plugin-route" + }, + { + "slug": "opencpn-plugin-squiddio", + "name": "opencpn-plugin-squiddio", + "url": "/v1/software/opencpn-plugin-squiddio" + }, + { + "slug": "opencpn-plugin-statusbar", + "name": "opencpn-plugin-statusbar", + "url": "/v1/software/opencpn-plugin-statusbar" + }, + { + "slug": "opencpn-plugin-watchdog", + "name": "opencpn-plugin-watchdog", + "url": "/v1/software/opencpn-plugin-watchdog" + }, + { + "slug": "opencpn-plugin-weather-routing", + "name": "opencpn-plugin-weather_routing", + "url": "/v1/software/opencpn-plugin-weather-routing" + }, + { + "slug": "opencpn-plugin-weatherfax", + "name": "opencpn-plugin-weatherfax", + "url": "/v1/software/opencpn-plugin-weatherfax" + }, + { + "slug": "openfisca-france-data", + "name": "openfisca-france-data", + "url": "/v1/software/openfisca-france-data" + }, + { + "slug": "openggsn", + "name": "openggsn", + "url": "/v1/software/openggsn" + }, + { + "slug": "openmittsu", + "name": "openmittsu", + "url": "/v1/software/openmittsu" + }, + { + "slug": "openscap", + "name": "openscap", + "url": "/v1/software/openscap" + }, + { + "slug": "orbit-home", + "name": "orbit@home", + "url": "/v1/software/orbit-home" + }, + { + "slug": "orocos-kdl", + "name": "orocos_kdl", + "url": "/v1/software/orocos-kdl" + }, + { + "slug": "os-autoinst", + "name": "os-autoinst", + "url": "/v1/software/os-autoinst" + }, + { + "slug": "os-diskconfig-python-novaclient-ext", + "name": "os-diskconfig-python-novaclient-ext", + "url": "/v1/software/os-diskconfig-python-novaclient-ext" + }, + { + "slug": "osc", + "name": "osc", + "url": "/v1/software/osc" + }, + { + "slug": "osl", + "name": "osl", + "url": "/v1/software/osl" + }, + { + "slug": "osm2pgsql", + "name": "osm2pgsql", + "url": "/v1/software/osm2pgsql" + }, + { + "slug": "osqp", + "name": "osqp", + "url": "/v1/software/osqp" + }, + { + "slug": "ourtunes", + "name": "ourTunes", + "url": "/v1/software/ourtunes" + }, + { + "slug": "oyranos", + "name": "oyranos", + "url": "/v1/software/oyranos" + }, + { + "slug": "p0f", + "name": "p0f", + "url": "/v1/software/p0f" + }, + { + "slug": "p3d", + "name": "p3d", + "url": "/v1/software/p3d" + }, + { + "slug": "psx", + "name": "pSX", + "url": "/v1/software/psx" + }, + { + "slug": "pseven", + "name": "pSeven", + "url": "/v1/software/pseven" + }, + { + "slug": "pachyderm", + "name": "pachyderm", + "url": "/v1/software/pachyderm" + }, + { + "slug": "pack", + "name": "pack", + "url": "/v1/software/pack" + }, + { + "slug": "packeth", + "name": "packETH", + "url": "/v1/software/packeth" + }, + { + "slug": "palo", + "name": "palo", + "url": "/v1/software/palo" + }, + { + "slug": "pamix", + "name": "pamix", + "url": "/v1/software/pamix" + }, + { + "slug": "paps", + "name": "paps", + "url": "/v1/software/paps" + }, + { + "slug": "papyri", + "name": "papyri", + "url": "/v1/software/papyri" + }, + { + "slug": "passwdqc", + "name": "passwdqc", + "url": "/v1/software/passwdqc" + }, + { + "slug": "patchutils", + "name": "patchutils", + "url": "/v1/software/patchutils" + }, + { + "slug": "pavucontrol", + "name": "pavucontrol", + "url": "/v1/software/pavucontrol" + }, + { + "slug": "pcanywhere", + "name": "pcAnywhere", + "url": "/v1/software/pcanywhere" + }, + { + "slug": "pcapfix", + "name": "pcapfix", + "url": "/v1/software/pcapfix" + }, + { + "slug": "pcmciautils", + "name": "pcmciautils", + "url": "/v1/software/pcmciautils" + }, + { + "slug": "pconsole", + "name": "pconsole", + "url": "/v1/software/pconsole" + }, + { + "slug": "pcsc-tools", + "name": "pcsc-tools", + "url": "/v1/software/pcsc-tools" + }, + { + "slug": "pdb-tools-q114840802", + "name": "pdb-tools", + "url": "/v1/software/pdb-tools-q114840802" + }, + { + "slug": "pdb-tools", + "name": "pdb-tools", + "url": "/v1/software/pdb-tools" + }, + { + "slug": "pdf2djvu", + "name": "pdf2djvu", + "url": "/v1/software/pdf2djvu" + }, + { + "slug": "pdffiller", + "name": "pdfFiller", + "url": "/v1/software/pdffiller" + }, + { + "slug": "pe-format", + "name": "pe-format", + "url": "/v1/software/pe-format" + }, + { + "slug": "pecl-ssh2", + "name": "pecl-ssh2", + "url": "/v1/software/pecl-ssh2" + }, + { + "slug": "pep8", + "name": "pep8", + "url": "/v1/software/pep8" + }, + { + "slug": "perl-cleaner", + "name": "perl-cleaner", + "url": "/v1/software/perl-cleaner" + }, + { + "slug": "permission-driven-user-interface", + "name": "permission-driven user interface", + "url": "/v1/software/permission-driven-user-interface" + }, + { + "slug": "petrify", + "name": "petrify", + "url": "/v1/software/petrify" + }, + { + "slug": "pflogsumm", + "name": "pflogsumm", + "url": "/v1/software/pflogsumm" + }, + { + "slug": "pfqueue", + "name": "pfqueue", + "url": "/v1/software/pfqueue" + }, + { + "slug": "pgbadger", + "name": "pgBadger", + "url": "/v1/software/pgbadger" + }, + { + "slug": "pgmodeler", + "name": "pgmodeler", + "url": "/v1/software/pgmodeler" + }, + { + "slug": "pgxnclient", + "name": "pgxnclient", + "url": "/v1/software/pgxnclient" + }, + { + "slug": "phoneme", + "name": "phoneME", + "url": "/v1/software/phoneme" + }, + { + "slug": "phototonic", + "name": "phototonic", + "url": "/v1/software/phototonic" + }, + { + "slug": "phpdesigner", + "name": "phpDesigner", + "url": "/v1/software/phpdesigner" + }, + { + "slug": "phpesb", + "name": "phpESB", + "url": "/v1/software/phpesb" + }, + { + "slug": "phpsurvey", + "name": "phpSurvey", + "url": "/v1/software/phpsurvey" + }, + { + "slug": "phpwebsite", + "name": "phpwebsite", + "url": "/v1/software/phpwebsite" + }, + { + "slug": "pianobar", + "name": "pianobar", + "url": "/v1/software/pianobar" + }, + { + "slug": "picocom", + "name": "picocom", + "url": "/v1/software/picocom" + }, + { + "slug": "pictureframe", + "name": "pictureframe", + "url": "/v1/software/pictureframe" + }, + { + "slug": "pidgin-festival", + "name": "pidgin-festival", + "url": "/v1/software/pidgin-festival" + }, + { + "slug": "pidgin-funyahoo-plusplus", + "name": "pidgin-funyahoo-plusplus", + "url": "/v1/software/pidgin-funyahoo-plusplus" + }, + { + "slug": "pidgin-hotkeys", + "name": "pidgin-hotkeys", + "url": "/v1/software/pidgin-hotkeys" + }, + { + "slug": "pidgin-privacy-please", + "name": "pidgin-privacy-please", + "url": "/v1/software/pidgin-privacy-please" + }, + { + "slug": "pika", + "name": "pika", + "url": "/v1/software/pika" + }, + { + "slug": "piler", + "name": "piler", + "url": "/v1/software/piler" + }, + { + "slug": "pinepgp", + "name": "pinepgp", + "url": "/v1/software/pinepgp" + }, + { + "slug": "pinfo", + "name": "pinfo", + "url": "/v1/software/pinfo" + }, + { + "slug": "ping-sweep", + "name": "ping sweep", + "url": "/v1/software/ping-sweep" + }, + { + "slug": "pinyin-input-method", + "name": "pinyin input method", + "url": "/v1/software/pinyin-input-method" + }, + { + "slug": "pipebench", + "name": "pipebench", + "url": "/v1/software/pipebench" + }, + { + "slug": "piv2hdf", + "name": "piv2hdf", + "url": "/v1/software/piv2hdf" + }, + { + "slug": "pivmetalib", + "name": "pivmetalib", + "url": "/v1/software/pivmetalib" + }, + { + "slug": "pixels2pgf", + "name": "pixels2pgf", + "url": "/v1/software/pixels2pgf" + }, + { + "slug": "pkpgcounter", + "name": "pkpgcounter", + "url": "/v1/software/pkpgcounter" + }, + { + "slug": "pktstat", + "name": "pktstat", + "url": "/v1/software/pktstat" + }, + { + "slug": "plane-notify", + "name": "plane-notify", + "url": "/v1/software/plane-notify" + }, + { + "slug": "plasma-applet-network-monitor", + "name": "plasma-applet-network-monitor", + "url": "/v1/software/plasma-applet-network-monitor" + }, + { + "slug": "plasma-applet-weather-widget", + "name": "plasma-applet-weather-widget", + "url": "/v1/software/plasma-applet-weather-widget" + }, + { + "slug": "plotly-py", + "name": "plotly.py", + "url": "/v1/software/plotly-py" + }, + { + "slug": "plowshare", + "name": "plowshare", + "url": "/v1/software/plowshare" + }, + { + "slug": "plumber", + "name": "plumber", + "url": "/v1/software/plumber" + }, + { + "slug": "pmtrans", + "name": "pmTrans", + "url": "/v1/software/pmtrans" + }, + { + "slug": "pmacct", + "name": "pmacct", + "url": "/v1/software/pmacct" + }, + { + "slug": "pmaw", + "name": "pmaw", + "url": "/v1/software/pmaw" + }, + { + "slug": "pmount-gui", + "name": "pmount-gui", + "url": "/v1/software/pmount-gui" + }, + { + "slug": "pms", + "name": "pms", + "url": "/v1/software/pms" + }, + { + "slug": "pngcheck", + "name": "pngcheck", + "url": "/v1/software/pngcheck" + }, + { + "slug": "pnmixer", + "name": "pnmixer", + "url": "/v1/software/pnmixer" + }, + { + "slug": "pnpm", + "name": "pnpm", + "url": "/v1/software/pnpm" + }, + { + "slug": "poetry", + "name": "poetry", + "url": "/v1/software/poetry" + }, + { + "slug": "policycoreutils", + "name": "policycoreutils", + "url": "/v1/software/policycoreutils" + }, + { + "slug": "polybar", + "name": "polybar", + "url": "/v1/software/polybar" + }, + { + "slug": "polylib", + "name": "polylib", + "url": "/v1/software/polylib" + }, + { + "slug": "popa3d", + "name": "popa3d", + "url": "/v1/software/popa3d" + }, + { + "slug": "popt", + "name": "popt", + "url": "/v1/software/popt" + }, + { + "slug": "portable-shortcut-to-a-system-utility", + "name": "portable shortcut to a system utility", + "url": "/v1/software/portable-shortcut-to-a-system-utility" + }, + { + "slug": "portmap", + "name": "portmap", + "url": "/v1/software/portmap" + }, + { + "slug": "portspoof", + "name": "portspoof", + "url": "/v1/software/portspoof" + }, + { + "slug": "posh", + "name": "posh", + "url": "/v1/software/posh" + }, + { + "slug": "powerstat", + "name": "powerstat", + "url": "/v1/software/powerstat" + }, + { + "slug": "pppconfig", + "name": "pppconfig", + "url": "/v1/software/pppconfig" + }, + { + "slug": "precisionfda", + "name": "precisionFDA", + "url": "/v1/software/precisionfda" + }, + { + "slug": "pretix", + "name": "pretix", + "url": "/v1/software/pretix" + }, + { + "slug": "pretty-show", + "name": "pretty-show", + "url": "/v1/software/pretty-show" + }, + { + "slug": "private-collective-model-of-innovation", + "name": "private-collective model of innovation", + "url": "/v1/software/private-collective-model-of-innovation" + }, + { + "slug": "protext", + "name": "proTeXt", + "url": "/v1/software/protext" + }, + { + "slug": "procenv", + "name": "procenv", + "url": "/v1/software/procenv" + }, + { + "slug": "procps", + "name": "procps", + "url": "/v1/software/procps" + }, + { + "slug": "procurement-software", + "name": "procurement software", + "url": "/v1/software/procurement-software" + }, + { + "slug": "profile-sync-daemon", + "name": "profile-sync-daemon", + "url": "/v1/software/profile-sync-daemon" + }, + { + "slug": "profileaar", + "name": "profileAAR", + "url": "/v1/software/profileaar" + }, + { + "slug": "progecad", + "name": "progeCAD", + "url": "/v1/software/progecad" + }, + { + "slug": "project-workforce-management", + "name": "project workforce management", + "url": "/v1/software/project-workforce-management" + }, + { + "slug": "protobuffs", + "name": "protobuffs", + "url": "/v1/software/protobuffs" + }, + { + "slug": "pseudoconversational-transaction", + "name": "pseudoconversational transaction", + "url": "/v1/software/pseudoconversational-transaction" + }, + { + "slug": "pshs", + "name": "pshs", + "url": "/v1/software/pshs" + }, + { + "slug": "psmisc", + "name": "psmisc", + "url": "/v1/software/psmisc" + }, + { + "slug": "pssh", + "name": "pssh", + "url": "/v1/software/pssh" + }, + { + "slug": "pstotext", + "name": "pstotext", + "url": "/v1/software/pstotext" + }, + { + "slug": "psyc", + "name": "psyc", + "url": "/v1/software/psyc" + }, + { + "slug": "public-inbox", + "name": "public-inbox", + "url": "/v1/software/public-inbox" + }, + { + "slug": "publishing-skills", + "name": "publishing-skills", + "url": "/v1/software/publishing-skills" + }, + { + "slug": "purplera1n", + "name": "purplera1n", + "url": "/v1/software/purplera1n" + }, + { + "slug": "pwclient", + "name": "pwclient", + "url": "/v1/software/pwclient" + }, + { + "slug": "pwdump", + "name": "pwdump", + "url": "/v1/software/pwdump" + }, + { + "slug": "pxz", + "name": "pxz", + "url": "/v1/software/pxz" + }, + { + "slug": "pydarts", + "name": "pyDarts", + "url": "/v1/software/pydarts" + }, + { + "slug": "pygpg", + "name": "pyGPG", + "url": "/v1/software/pygpg" + }, + { + "slug": "pybugz", + "name": "pybugz", + "url": "/v1/software/pybugz" + }, + { + "slug": "pychart", + "name": "pychart", + "url": "/v1/software/pychart" + }, + { + "slug": "pychroot", + "name": "pychroot", + "url": "/v1/software/pychroot" + }, + { + "slug": "pycollada", + "name": "pycollada", + "url": "/v1/software/pycollada" + }, + { + "slug": "pycuda", + "name": "pycuda", + "url": "/v1/software/pycuda" + }, + { + "slug": "pydecomp", + "name": "pydecomp", + "url": "/v1/software/pydecomp" + }, + { + "slug": "pydf", + "name": "pydf", + "url": "/v1/software/pydf" + }, + { + "slug": "pyfa", + "name": "pyfa", + "url": "/v1/software/pyfa" + }, + { + "slug": "pyh2o", + "name": "pyh2o", + "url": "/v1/software/pyh2o" + }, + { + "slug": "pyktok", + "name": "pyktok", + "url": "/v1/software/pyktok" + }, + { + "slug": "pykwalify", + "name": "pykwalify", + "url": "/v1/software/pykwalify" + }, + { + "slug": "pymetamap", + "name": "pymetamap", + "url": "/v1/software/pymetamap" + }, + { + "slug": "pymountboot", + "name": "pymountboot", + "url": "/v1/software/pymountboot" + }, + { + "slug": "pynag", + "name": "pynag", + "url": "/v1/software/pynag" + }, + { + "slug": "pynguin", + "name": "pynguin", + "url": "/v1/software/pynguin" + }, + { + "slug": "pyopencl", + "name": "pyopencl", + "url": "/v1/software/pyopencl" + }, + { + "slug": "pyorcidator", + "name": "pyorcidator", + "url": "/v1/software/pyorcidator" + }, + { + "slug": "pypax", + "name": "pypax", + "url": "/v1/software/pypax" + }, + { + "slug": "pyrqlite", + "name": "pyrqlite", + "url": "/v1/software/pyrqlite" + }, + { + "slug": "pysmssend", + "name": "pysmssend", + "url": "/v1/software/pysmssend" + }, + { + "slug": "pysrt", + "name": "pysrt", + "url": "/v1/software/pysrt" + }, + { + "slug": "pyswisseph", + "name": "pyswisseph", + "url": "/v1/software/pyswisseph" + }, + { + "slug": "python-gammu", + "name": "python-gammu", + "url": "/v1/software/python-gammu" + }, + { + "slug": "python-igraph", + "name": "python-igraph", + "url": "/v1/software/python-igraph" + }, + { + "slug": "python-iptables", + "name": "python-iptables", + "url": "/v1/software/python-iptables" + }, + { + "slug": "python-ldap", + "name": "python-ldap", + "url": "/v1/software/python-ldap" + }, + { + "slug": "python-mhash", + "name": "python-mhash", + "url": "/v1/software/python-mhash" + }, + { + "slug": "python-ptrace", + "name": "python-ptrace", + "url": "/v1/software/python-ptrace" + }, + { + "slug": "python-stdnum", + "name": "python-stdnum", + "url": "/v1/software/python-stdnum" + }, + { + "slug": "python-updater", + "name": "python-updater", + "url": "/v1/software/python-updater" + }, + { + "slug": "python3-termcolor", + "name": "python3-termcolor", + "url": "/v1/software/python3-termcolor" + }, + { + "slug": "python-orocos-kdl", + "name": "python_orocos_kdl", + "url": "/v1/software/python-orocos-kdl" + }, + { + "slug": "pytools", + "name": "pytools", + "url": "/v1/software/pytools" + }, + { + "slug": "pyutil", + "name": "pyutil", + "url": "/v1/software/pyutil" + }, + { + "slug": "qgo", + "name": "qGo", + "url": "/v1/software/qgo" + }, + { + "slug": "qdevicemonitor", + "name": "qdevicemonitor", + "url": "/v1/software/qdevicemonitor" + }, + { + "slug": "qemu-guest-agent", + "name": "qemu-guest-agent", + "url": "/v1/software/qemu-guest-agent" + }, + { + "slug": "qgit", + "name": "qgit", + "url": "/v1/software/qgit" + }, + { + "slug": "qmhandle", + "name": "qmHandle", + "url": "/v1/software/qmhandle" + }, + { + "slug": "qmail-qsanity", + "name": "qmail-qsanity", + "url": "/v1/software/qmail-qsanity" + }, + { + "slug": "qmapshack", + "name": "qmapshack", + "url": "/v1/software/qmapshack" + }, + { + "slug": "qmf", + "name": "qmf", + "url": "/v1/software/qmf" + }, + { + "slug": "qmswrapper", + "name": "qmsWrapper", + "url": "/v1/software/qmswrapper" + }, + { + "slug": "qpoases", + "name": "qpOASES", + "url": "/v1/software/qpoases" + }, + { + "slug": "qrosscore", + "name": "qrosscore", + "url": "/v1/software/qrosscore" + }, + { + "slug": "qrosspython", + "name": "qrosspython", + "url": "/v1/software/qrosspython" + }, + { + "slug": "qt-gstreamer", + "name": "qt-gstreamer", + "url": "/v1/software/qt-gstreamer" + }, + { + "slug": "qtcurve", + "name": "qtcurve", + "url": "/v1/software/qtcurve" + }, + { + "slug": "qtgui", + "name": "qtgui", + "url": "/v1/software/qtgui" + }, + { + "slug": "qtopengl", + "name": "qtopengl", + "url": "/v1/software/qtopengl" + }, + { + "slug": "qtserialbus", + "name": "qtserialbus", + "url": "/v1/software/qtserialbus" + }, + { + "slug": "quality-management-software", + "name": "quality management software", + "url": "/v1/software/quality-management-software" + }, + { + "slug": "quickfuzz", + "name": "quickfuzz", + "url": "/v1/software/quickfuzz" + }, + { + "slug": "quintexa", + "name": "quintexA", + "url": "/v1/software/quintexa" + }, + { + "slug": "quotatool", + "name": "quotatool", + "url": "/v1/software/quotatool" + }, + { + "slug": "qxkb", + "name": "qxkb", + "url": "/v1/software/qxkb" + }, + { + "slug": "rcuda", + "name": "rCUDA", + "url": "/v1/software/rcuda" + }, + { + "slug": "rabbitmq-c", + "name": "rabbitmq-c", + "url": "/v1/software/rabbitmq-c" + }, + { + "slug": "rackspace-auth-openstack", + "name": "rackspace-auth-openstack", + "url": "/v1/software/rackspace-auth-openstack" + }, + { + "slug": "ranpwd", + "name": "ranpwd", + "url": "/v1/software/ranpwd" + }, + { + "slug": "raspberrypi-firmware", + "name": "raspberrypi-firmware", + "url": "/v1/software/raspberrypi-firmware" + }, + { + "slug": "raspberrypi-sources", + "name": "raspberrypi-sources", + "url": "/v1/software/raspberrypi-sources" + }, + { + "slug": "rawdog", + "name": "rawdog", + "url": "/v1/software/rawdog" + }, + { + "slug": "razor", + "name": "razor", + "url": "/v1/software/razor" + }, + { + "slug": "razzshell", + "name": "razzshell", + "url": "/v1/software/razzshell" + }, + { + "slug": "rblcheck", + "name": "rblcheck", + "url": "/v1/software/rblcheck" + }, + { + "slug": "rbldnsd", + "name": "rbldnsd", + "url": "/v1/software/rbldnsd" + }, + { + "slug": "rdup", + "name": "rdup", + "url": "/v1/software/rdup" + }, + { + "slug": "recaptcha", + "name": "reCAPTCHA", + "url": "/v1/software/recaptcha" + }, + { + "slug": "resid", + "name": "reSID", + "url": "/v1/software/resid" + }, + { + "slug": "reactivedata", + "name": "reactiveData", + "url": "/v1/software/reactivedata" + }, + { + "slug": "read-edid", + "name": "read-edid", + "url": "/v1/software/read-edid" + }, + { + "slug": "read-only-domain-controller", + "name": "read-only domain controller", + "url": "/v1/software/read-only-domain-controller" + }, + { + "slug": "rebulk", + "name": "rebulk", + "url": "/v1/software/rebulk" + }, + { + "slug": "recommender-system", + "name": "recommender system", + "url": "/v1/software/recommender-system" + }, + { + "slug": "recoverjpeg", + "name": "recoverjpeg", + "url": "/v1/software/recoverjpeg" + }, + { + "slug": "redpim", + "name": "redPIM", + "url": "/v1/software/redpim" + }, + { + "slug": "redirect", + "name": "redirect", + "url": "/v1/software/redirect" + }, + { + "slug": "redoflacs", + "name": "redoflacs", + "url": "/v1/software/redoflacs" + }, + { + "slug": "redsn0w", + "name": "redsn0w", + "url": "/v1/software/redsn0w" + }, + { + "slug": "redsocks", + "name": "redsocks", + "url": "/v1/software/redsocks" + }, + { + "slug": "refinegems", + "name": "refineGEMs", + "url": "/v1/software/refinegems" + }, + { + "slug": "regexxer", + "name": "regexxer", + "url": "/v1/software/regexxer" + }, + { + "slug": "release-monitoring", + "name": "release-monitoring", + "url": "/v1/software/release-monitoring" + }, + { + "slug": "renameutils", + "name": "renameutils", + "url": "/v1/software/renameutils" + }, + { + "slug": "renattach", + "name": "renattach", + "url": "/v1/software/renattach" + }, + { + "slug": "rentrez", + "name": "rentrez", + "url": "/v1/software/rentrez" + }, + { + "slug": "rep-gtk", + "name": "rep-gtk", + "url": "/v1/software/rep-gtk" + }, + { + "slug": "repairnator", + "name": "repairnator", + "url": "/v1/software/repairnator" + }, + { + "slug": "repo", + "name": "repo", + "url": "/v1/software/repo" + }, + { + "slug": "repo-commit", + "name": "repo-commit", + "url": "/v1/software/repo-commit" + }, + { + "slug": "repoman", + "name": "repoman", + "url": "/v1/software/repoman" + }, + { + "slug": "reproducibility-assessment", + "name": "reproducibility_assessment", + "url": "/v1/software/reproducibility-assessment" + }, + { + "slug": "repsnapper", + "name": "repsnapper", + "url": "/v1/software/repsnapper" + }, + { + "slug": "reptyr", + "name": "reptyr", + "url": "/v1/software/reptyr" + }, + { + "slug": "retrovol", + "name": "retrovol", + "url": "/v1/software/retrovol" + }, + { + "slug": "rex-client", + "name": "rex-client", + "url": "/v1/software/rex-client" + }, + { + "slug": "rexima", + "name": "rexima", + "url": "/v1/software/rexima" + }, + { + "slug": "rinetd", + "name": "rinetd", + "url": "/v1/software/rinetd" + }, + { + "slug": "ripmime", + "name": "ripMIME", + "url": "/v1/software/ripmime" + }, + { + "slug": "ripole", + "name": "ripOLE", + "url": "/v1/software/ripole" + }, + { + "slug": "ripit", + "name": "ripit", + "url": "/v1/software/ripit" + }, + { + "slug": "rmilter", + "name": "rmilter", + "url": "/v1/software/rmilter" + }, + { + "slug": "robotkube", + "name": "robotkube", + "url": "/v1/software/robotkube" + }, + { + "slug": "root-docs", + "name": "root-docs", + "url": "/v1/software/root-docs" + }, + { + "slug": "root-tail", + "name": "root-tail", + "url": "/v1/software/root-tail" + }, + { + "slug": "rosdep", + "name": "rosdep", + "url": "/v1/software/rosdep" + }, + { + "slug": "rosdistro", + "name": "rosdistro", + "url": "/v1/software/rosdistro" + }, + { + "slug": "rosinstall", + "name": "rosinstall", + "url": "/v1/software/rosinstall" + }, + { + "slug": "rosinstall-generator", + "name": "rosinstall_generator", + "url": "/v1/software/rosinstall-generator" + }, + { + "slug": "rospkg", + "name": "rospkg", + "url": "/v1/software/rospkg" + }, + { + "slug": "rotl", + "name": "rotl", + "url": "/v1/software/rotl" + }, + { + "slug": "rpcbind", + "name": "rpcbind", + "url": "/v1/software/rpcbind" + }, + { + "slug": "rpl", + "name": "rpl", + "url": "/v1/software/rpl" + }, + { + "slug": "rqlite", + "name": "rqlite", + "url": "/v1/software/rqlite" + }, + { + "slug": "rr", + "name": "rr", + "url": "/v1/software/rr" + }, + { + "slug": "rritbed", + "name": "rritbed", + "url": "/v1/software/rritbed" + }, + { + "slug": "rsstail", + "name": "rsstail", + "url": "/v1/software/rsstail" + }, + { + "slug": "rtaudio", + "name": "rtaudio", + "url": "/v1/software/rtaudio" + }, + { + "slug": "rtl-sdr", + "name": "rtl-sdr", + "url": "/v1/software/rtl-sdr" + }, + { + "slug": "rtnf", + "name": "rtnf", + "url": "/v1/software/rtnf" + }, + { + "slug": "rtsadmin", + "name": "rtsadmin", + "url": "/v1/software/rtsadmin" + }, + { + "slug": "rtslib", + "name": "rtslib", + "url": "/v1/software/rtslib" + }, + { + "slug": "ruby-tokyocabinet", + "name": "ruby-tokyocabinet", + "url": "/v1/software/ruby-tokyocabinet" + }, + { + "slug": "runv", + "name": "runv", + "url": "/v1/software/runv" + }, + { + "slug": "rustrace", + "name": "rustrace", + "url": "/v1/software/rustrace" + }, + { + "slug": "ryu", + "name": "ryu", + "url": "/v1/software/ryu" + }, + { + "slug": "s-boot-4-0-for-the-gt-i9300", + "name": "s-boot 4.0 for the GT-I9300", + "url": "/v1/software/s-boot-4-0-for-the-gt-i9300" + }, + { + "slug": "s6-overlay", + "name": "s6-overlay", + "url": "/v1/software/s6-overlay" + }, + { + "slug": "safecat", + "name": "safecat", + "url": "/v1/software/safecat" + }, + { + "slug": "safecopy", + "name": "safecopy", + "url": "/v1/software/safecopy" + }, + { + "slug": "sagan-rules", + "name": "sagan-rules", + "url": "/v1/software/sagan-rules" + }, + { + "slug": "sandbox-q4049043", + "name": "sandbox", + "url": "/v1/software/sandbox-q4049043" + }, + { + "slug": "sandbox", + "name": "sandbox", + "url": "/v1/software/sandbox" + }, + { + "slug": "sbase", + "name": "sbase", + "url": "/v1/software/sbase" + }, + { + "slug": "sbrk", + "name": "sbrk", + "url": "/v1/software/sbrk" + }, + { + "slug": "sc", + "name": "sc", + "url": "/v1/software/sc" + }, + { + "slug": "scalability-testing", + "name": "scalability testing", + "url": "/v1/software/scalability-testing" + }, + { + "slug": "scamp", + "name": "scamp", + "url": "/v1/software/scamp" + }, + { + "slug": "scanlogd", + "name": "scanlogd", + "url": "/v1/software/scanlogd" + }, + { + "slug": "scanmem", + "name": "scanmem", + "url": "/v1/software/scanmem" + }, + { + "slug": "schedtool", + "name": "schedtool", + "url": "/v1/software/schedtool" + }, + { + "slug": "scholar", + "name": "scholar", + "url": "/v1/software/scholar" + }, + { + "slug": "scim-uim", + "name": "scim-uim", + "url": "/v1/software/scim-uim" + }, + { + "slug": "scratch-blocks", + "name": "scratch-blocks", + "url": "/v1/software/scratch-blocks" + }, + { + "slug": "scrcpy", + "name": "scrcpy", + "url": "/v1/software/scrcpy" + }, + { + "slug": "screenkey", + "name": "screenkey", + "url": "/v1/software/screenkey" + }, + { + "slug": "sdc-scissor", + "name": "sdc-scissor", + "url": "/v1/software/sdc-scissor" + }, + { + "slug": "sdlpop", + "name": "sdlpop", + "url": "/v1/software/sdlpop" + }, + { + "slug": "sdparm", + "name": "sdparm", + "url": "/v1/software/sdparm" + }, + { + "slug": "seatd", + "name": "seatd", + "url": "/v1/software/seatd" + }, + { + "slug": "secilc", + "name": "secilc", + "url": "/v1/software/secilc" + }, + { + "slug": "secure-coding", + "name": "secure coding", + "url": "/v1/software/secure-coding" + }, + { + "slug": "seetxt", + "name": "seetxt", + "url": "/v1/software/seetxt" + }, + { + "slug": "selinux-base", + "name": "selinux-base", + "url": "/v1/software/selinux-base" + }, + { + "slug": "selinux-base-policy", + "name": "selinux-base-policy", + "url": "/v1/software/selinux-base-policy" + }, + { + "slug": "selinux-python", + "name": "selinux-python", + "url": "/v1/software/selinux-python" + }, + { + "slug": "semodule-utils", + "name": "semodule-utils", + "url": "/v1/software/semodule-utils" + }, + { + "slug": "sent", + "name": "sent", + "url": "/v1/software/sent" + }, + { + "slug": "sepolgen", + "name": "sepolgen", + "url": "/v1/software/sepolgen" + }, + { + "slug": "serialtalk", + "name": "serialtalk", + "url": "/v1/software/serialtalk" + }, + { + "slug": "service-wrapper", + "name": "service wrapper", + "url": "/v1/software/service-wrapper" + }, + { + "slug": "servicelog", + "name": "servicelog", + "url": "/v1/software/servicelog" + }, + { + "slug": "set-opacity", + "name": "set_opacity", + "url": "/v1/software/set-opacity" + }, + { + "slug": "setools", + "name": "setools", + "url": "/v1/software/setools" + }, + { + "slug": "setserial", + "name": "setserial", + "url": "/v1/software/setserial" + }, + { + "slug": "sgmltools-lite", + "name": "sgmltools-lite", + "url": "/v1/software/sgmltools-lite" + }, + { + "slug": "shairplay", + "name": "shairplay", + "url": "/v1/software/shairplay" + }, + { + "slug": "shapley", + "name": "shapley", + "url": "/v1/software/shapley" + }, + { + "slug": "shash", + "name": "shash", + "url": "/v1/software/shash" + }, + { + "slug": "sheerdns", + "name": "sheerdns", + "url": "/v1/software/sheerdns" + }, + { + "slug": "sherpa", + "name": "sherpa", + "url": "/v1/software/sherpa" + }, + { + "slug": "shex-js", + "name": "shex.js", + "url": "/v1/software/shex-js" + }, + { + "slug": "shigofumi", + "name": "shigofumi", + "url": "/v1/software/shigofumi" + }, + { + "slug": "shntool", + "name": "shntool", + "url": "/v1/software/shntool" + }, + { + "slug": "shout", + "name": "shout", + "url": "/v1/software/shout" + }, + { + "slug": "signify", + "name": "signify", + "url": "/v1/software/signify" + }, + { + "slug": "sigrok-cli", + "name": "sigrok-cli", + "url": "/v1/software/sigrok-cli" + }, + { + "slug": "sigrok-firmware-fx2lafw", + "name": "sigrok-firmware-fx2lafw", + "url": "/v1/software/sigrok-firmware-fx2lafw" + }, + { + "slug": "simde", + "name": "simde", + "url": "/v1/software/simde" + }, + { + "slug": "simp-le", + "name": "simp_le", + "url": "/v1/software/simp-le" + }, + { + "slug": "simple-tpm-pk11", + "name": "simple-tpm-pk11", + "url": "/v1/software/simple-tpm-pk11" + }, + { + "slug": "simpleswitcher", + "name": "simpleswitcher", + "url": "/v1/software/simpleswitcher" + }, + { + "slug": "sinfo", + "name": "sinfo", + "url": "/v1/software/sinfo" + }, + { + "slug": "sinit", + "name": "sinit", + "url": "/v1/software/sinit" + }, + { + "slug": "sipsak", + "name": "sipsak", + "url": "/v1/software/sipsak" + }, + { + "slug": "sisnet", + "name": "sisNET", + "url": "/v1/software/sisnet" + }, + { + "slug": "sitecopy", + "name": "sitecopy", + "url": "/v1/software/sitecopy" + }, + { + "slug": "skanpage", + "name": "skanpage", + "url": "/v1/software/skanpage" + }, + { + "slug": "skill-health", + "name": "skill-health", + "url": "/v1/software/skill-health" + }, + { + "slug": "skoosh", + "name": "skoosh", + "url": "/v1/software/skoosh" + }, + { + "slug": "skopeo", + "name": "skopeo", + "url": "/v1/software/skopeo" + }, + { + "slug": "skyline-q127485529", + "name": "skyline", + "url": "/v1/software/skyline-q127485529" + }, + { + "slug": "sleepyhead", + "name": "sleepyhead", + "url": "/v1/software/sleepyhead" + }, + { + "slug": "sleuth", + "name": "sleuth", + "url": "/v1/software/sleuth" + }, + { + "slug": "slowdown-utility", + "name": "slowdown utility", + "url": "/v1/software/slowdown-utility" + }, + { + "slug": "smart-live-rebuild", + "name": "smart-live-rebuild", + "url": "/v1/software/smart-live-rebuild" + }, + { + "slug": "smbldap-tools", + "name": "smbldap-tools", + "url": "/v1/software/smbldap-tools" + }, + { + "slug": "smirk", + "name": "smirk", + "url": "/v1/software/smirk" + }, + { + "slug": "smsmode", + "name": "smsmode", + "url": "/v1/software/smsmode" + }, + { + "slug": "smtm", + "name": "smtm", + "url": "/v1/software/smtm" + }, + { + "slug": "snapraid", + "name": "snapraid", + "url": "/v1/software/snapraid" + }, + { + "slug": "snarf", + "name": "snarf", + "url": "/v1/software/snarf" + }, + { + "slug": "sndpeek", + "name": "sndpeek", + "url": "/v1/software/sndpeek" + }, + { + "slug": "soapbox", + "name": "soapbox", + "url": "/v1/software/soapbox" + }, + { + "slug": "socat", + "name": "socat", + "url": "/v1/software/socat" + }, + { + "slug": "softflowd", + "name": "softflowd", + "url": "/v1/software/softflowd" + }, + { + "slug": "software-bus", + "name": "software bus", + "url": "/v1/software/software-bus" + }, + { + "slug": "software-design-document", + "name": "software design document", + "url": "/v1/software/software-design-document" + }, + { + "slug": "software-for-library-statistics", + "name": "software for library statistics", + "url": "/v1/software/software-for-library-statistics" + }, + { + "slug": "software-package", + "name": "software package", + "url": "/v1/software/software-package" + }, + { + "slug": "software-propagation", + "name": "software propagation", + "url": "/v1/software/software-propagation" + }, + { + "slug": "software-token", + "name": "software token", + "url": "/v1/software/software-token" + }, + { + "slug": "software-vision-mixer", + "name": "software vision mixer", + "url": "/v1/software/software-vision-mixer" + }, + { + "slug": "solidthinking", + "name": "solidThinking", + "url": "/v1/software/solidthinking" + }, + { + "slug": "sorald", + "name": "sorald", + "url": "/v1/software/sorald" + }, + { + "slug": "source-port", + "name": "source port", + "url": "/v1/software/source-port" + }, + { + "slug": "sparkwdsub", + "name": "sparkwdsub", + "url": "/v1/software/sparkwdsub" + }, + { + "slug": "spatstat", + "name": "spatstat", + "url": "/v1/software/spatstat" + }, + { + "slug": "spawn-fcgi", + "name": "spawn-fcgi", + "url": "/v1/software/spawn-fcgi" + }, + { + "slug": "spec-cleaner", + "name": "spec-cleaner", + "url": "/v1/software/spec-cleaner" + }, + { + "slug": "spectools", + "name": "spectools", + "url": "/v1/software/spectools" + }, + { + "slug": "speechd-el", + "name": "speechd-el", + "url": "/v1/software/speechd-el" + }, + { + "slug": "spice-gtk", + "name": "spice-gtk", + "url": "/v1/software/spice-gtk" + }, + { + "slug": "spice-protocol", + "name": "spice-protocol", + "url": "/v1/software/spice-protocol" + }, + { + "slug": "splat", + "name": "splat", + "url": "/v1/software/splat" + }, + { + "slug": "split2flac", + "name": "split2flac", + "url": "/v1/software/split2flac" + }, + { + "slug": "splitvt", + "name": "splitvt", + "url": "/v1/software/splitvt" + }, + { + "slug": "spork", + "name": "spork", + "url": "/v1/software/spork" + }, + { + "slug": "spread", + "name": "spread", + "url": "/v1/software/spread" + }, + { + "slug": "sqlalchemy-rqlite", + "name": "sqlalchemy-rqlite", + "url": "/v1/software/sqlalchemy-rqlite" + }, + { + "slug": "squashdelta", + "name": "squashdelta", + "url": "/v1/software/squashdelta" + }, + { + "slug": "squashmerge", + "name": "squashmerge", + "url": "/v1/software/squashmerge" + }, + { + "slug": "squidview", + "name": "squidview", + "url": "/v1/software/squidview" + }, + { + "slug": "srecord", + "name": "srecord", + "url": "/v1/software/srecord" + }, + { + "slug": "sselp", + "name": "sselp", + "url": "/v1/software/sselp" + }, + { + "slug": "sshguard", + "name": "sshguard", + "url": "/v1/software/sshguard" + }, + { + "slug": "sshpass", + "name": "sshpass", + "url": "/v1/software/sshpass" + }, + { + "slug": "ssl-fetch", + "name": "ssl-fetch", + "url": "/v1/software/ssl-fetch" + }, + { + "slug": "ssldump", + "name": "ssldump", + "url": "/v1/software/ssldump" + }, + { + "slug": "sslh", + "name": "sslh", + "url": "/v1/software/sslh" + }, + { + "slug": "ssnolib", + "name": "ssnolib", + "url": "/v1/software/ssnolib" + }, + { + "slug": "sticq", + "name": "stICQ", + "url": "/v1/software/sticq" + }, + { + "slug": "stalonetray", + "name": "stalonetray", + "url": "/v1/software/stalonetray" + }, + { + "slug": "start-stop-daemon", + "name": "start-stop-daemon", + "url": "/v1/software/start-stop-daemon" + }, + { + "slug": "stl-parts", + "name": "stl.parts", + "url": "/v1/software/stl-parts" + }, + { + "slug": "stratis-cli", + "name": "stratis-cli", + "url": "/v1/software/stratis-cli" + }, + { + "slug": "structure-sequence-and-organization", + "name": "structure, sequence and organization", + "url": "/v1/software/structure-sequence-and-organization" + }, + { + "slug": "stuartyeates-oai-pmh-list-initial-release", + "name": "stuartyeates/oai-pmh-list: initial release", + "url": "/v1/software/stuartyeates-oai-pmh-list-initial-release" + }, + { + "slug": "stumpwm-contrib", + "name": "stumpwm-contrib", + "url": "/v1/software/stumpwm-contrib" + }, + { + "slug": "stxxl", + "name": "stxxl", + "url": "/v1/software/stxxl" + }, + { + "slug": "stylo", + "name": "stylo()", + "url": "/v1/software/stylo" + }, + { + "slug": "suacomp", + "name": "suacomp", + "url": "/v1/software/suacomp" + }, + { + "slug": "subliminal", + "name": "subliminal", + "url": "/v1/software/subliminal" + }, + { + "slug": "superlu", + "name": "superlu", + "url": "/v1/software/superlu" + }, + { + "slug": "superswitcher", + "name": "superswitcher", + "url": "/v1/software/superswitcher" + }, + { + "slug": "sustainable-communities-tracker", + "name": "sustainable-communities-tracker", + "url": "/v1/software/sustainable-communities-tracker" + }, + { + "slug": "svchost-exe", + "name": "svchost.exe", + "url": "/v1/software/svchost-exe" + }, + { + "slug": "svn2git", + "name": "svn2git", + "url": "/v1/software/svn2git" + }, + { + "slug": "sw-notify-send", + "name": "sw-notify-send", + "url": "/v1/software/sw-notify-send" + }, + { + "slug": "sync-fetch", + "name": "sync-fetch", + "url": "/v1/software/sync-fetch" + }, + { + "slug": "sysbench", + "name": "sysbench", + "url": "/v1/software/sysbench" + }, + { + "slug": "systemd-m4", + "name": "systemd-m4", + "url": "/v1/software/systemd-m4" + }, + { + "slug": "tfacet", + "name": "tFacet", + "url": "/v1/software/tfacet" + }, + { + "slug": "tapestrea", + "name": "tapestrea", + "url": "/v1/software/tapestrea" + }, + { + "slug": "targetcli", + "name": "targetcli", + "url": "/v1/software/targetcli" + }, + { + "slug": "taskkill", + "name": "taskkill", + "url": "/v1/software/taskkill" + }, + { + "slug": "tatt", + "name": "tatt", + "url": "/v1/software/tatt" + }, + { + "slug": "tcpreplay", + "name": "tcpreplay", + "url": "/v1/software/tcpreplay" + }, + { + "slug": "tetex", + "name": "teTeX", + "url": "/v1/software/tetex" + }, + { + "slug": "telepathy-mission-control", + "name": "telepathy-mission-control", + "url": "/v1/software/telepathy-mission-control" + }, + { + "slug": "term-in", + "name": "term-in", + "url": "/v1/software/term-in" + }, + { + "slug": "terminatorx", + "name": "terminatorx", + "url": "/v1/software/terminatorx" + }, + { + "slug": "teseq", + "name": "teseq", + "url": "/v1/software/teseq" + }, + { + "slug": "text2term", + "name": "text2term", + "url": "/v1/software/text2term" + }, + { + "slug": "textdna", + "name": "textDNA", + "url": "/v1/software/textdna" + }, + { + "slug": "textboard-browser", + "name": "textboard browser", + "url": "/v1/software/textboard-browser" + }, + { + "slug": "textstat", + "name": "textstat", + "url": "/v1/software/textstat" + }, + { + "slug": "thc-ipv6", + "name": "thc-ipv6", + "url": "/v1/software/thc-ipv6" + }, + { + "slug": "theodolite", + "name": "theodolite", + "url": "/v1/software/theodolite" + }, + { + "slug": "thermald", + "name": "thermald", + "url": "/v1/software/thermald" + }, + { + "slug": "thinkfinger", + "name": "thinkfinger", + "url": "/v1/software/thinkfinger" + }, + { + "slug": "thrust", + "name": "thrust", + "url": "/v1/software/thrust" + }, + { + "slug": "tidyverse", + "name": "tidyverse", + "url": "/v1/software/tidyverse" + }, + { + "slug": "tidywikidatar", + "name": "tidywikidatar", + "url": "/v1/software/tidywikidatar" + }, + { + "slug": "timesheet-js", + "name": "timesheet.js", + "url": "/v1/software/timesheet-js" + }, + { + "slug": "tintwizard", + "name": "tintwizard", + "url": "/v1/software/tintwizard" + }, + { + "slug": "tinygrad", + "name": "tinygrad", + "url": "/v1/software/tinygrad" + }, + { + "slug": "tinymount", + "name": "tinymount", + "url": "/v1/software/tinymount" + }, + { + "slug": "tinynotify-send", + "name": "tinynotify-send", + "url": "/v1/software/tinynotify-send" + }, + { + "slug": "tip", + "name": "tip", + "url": "/v1/software/tip" + }, + { + "slug": "tippecanoe", + "name": "tippecanoe", + "url": "/v1/software/tippecanoe" + }, + { + "slug": "tl-dv", + "name": "tl;dv", + "url": "/v1/software/tl-dv" + }, + { + "slug": "tldr-pages", + "name": "tldr-pages", + "url": "/v1/software/tldr-pages" + }, + { + "slug": "tmux-mem-cpu-load", + "name": "tmux-mem-cpu-load", + "url": "/v1/software/tmux-mem-cpu-load" + }, + { + "slug": "tnftp", + "name": "tnftp", + "url": "/v1/software/tnftp" + }, + { + "slug": "tocosk", + "name": "tocosk", + "url": "/v1/software/tocosk" + }, + { + "slug": "tomoe-q63065160", + "name": "tomoe", + "url": "/v1/software/tomoe-q63065160" + }, + { + "slug": "topola", + "name": "topola", + "url": "/v1/software/topola" + }, + { + "slug": "tpacpi-bat", + "name": "tpacpi-bat", + "url": "/v1/software/tpacpi-bat" + }, + { + "slug": "tqdm", + "name": "tqdm", + "url": "/v1/software/tqdm" + }, + { + "slug": "travis", + "name": "trAVis", + "url": "/v1/software/travis" + }, + { + "slug": "tracenet", + "name": "traceNET", + "url": "/v1/software/tracenet" + }, + { + "slug": "trajpar", + "name": "trajpar", + "url": "/v1/software/trajpar" + }, + { + "slug": "transmart", + "name": "tranSMART", + "url": "/v1/software/transmart" + }, + { + "slug": "translate-docformat", + "name": "translate-docformat", + "url": "/v1/software/translate-docformat" + }, + { + "slug": "trash-q103410350", + "name": "trash", + "url": "/v1/software/trash-q103410350" + }, + { + "slug": "trash", + "name": "trash", + "url": "/v1/software/trash" + }, + { + "slug": "treecc", + "name": "treecc", + "url": "/v1/software/treecc" + }, + { + "slug": "treeio", + "name": "treeio", + "url": "/v1/software/treeio" + }, + { + "slug": "trevismd-statannotations-v0-5", + "name": "trevismd/statannotations: v0.5", + "url": "/v1/software/trevismd-statannotations-v0-5" + }, + { + "slug": "trivial-gray-streams", + "name": "trivial-gray-streams", + "url": "/v1/software/trivial-gray-streams" + }, + { + "slug": "troff", + "name": "troff", + "url": "/v1/software/troff" + }, + { + "slug": "tsmuxer", + "name": "tsMuxer", + "url": "/v1/software/tsmuxer" + }, + { + "slug": "tucnak", + "name": "tucnak", + "url": "/v1/software/tucnak" + }, + { + "slug": "tuition-management-software", + "name": "tuition management software", + "url": "/v1/software/tuition-management-software" + }, + { + "slug": "turnstile", + "name": "turnstile", + "url": "/v1/software/turnstile" + }, + { + "slug": "tusk", + "name": "tusk", + "url": "/v1/software/tusk" + }, + { + "slug": "tuxanci", + "name": "tuxanci", + "url": "/v1/software/tuxanci" + }, + { + "slug": "twxplorer", + "name": "twXplorer", + "url": "/v1/software/twxplorer" + }, + { + "slug": "twelf", + "name": "twelf", + "url": "/v1/software/twelf" + }, + { + "slug": "twittering-mode", + "name": "twittering-mode", + "url": "/v1/software/twittering-mode" + }, + { + "slug": "type-in-program", + "name": "type-in program", + "url": "/v1/software/type-in-program" + }, + { + "slug": "typespeed", + "name": "typespeed", + "url": "/v1/software/typespeed" + }, + { + "slug": "uam", + "name": "uam", + "url": "/v1/software/uam" + }, + { + "slug": "ubergraph", + "name": "ubergraph", + "url": "/v1/software/ubergraph" + }, + { + "slug": "ubertooth", + "name": "ubertooth", + "url": "/v1/software/ubertooth" + }, + { + "slug": "ubuntu-restricted-extras", + "name": "ubuntu-restricted-extras", + "url": "/v1/software/ubuntu-restricted-extras" + }, + { + "slug": "uchardet", + "name": "uchardet", + "url": "/v1/software/uchardet" + }, + { + "slug": "ucpp", + "name": "ucpp", + "url": "/v1/software/ucpp" + }, + { + "slug": "udev-init-scripts", + "name": "udev-init-scripts", + "url": "/v1/software/udev-init-scripts" + }, + { + "slug": "ufed", + "name": "ufed", + "url": "/v1/software/ufed" + }, + { + "slug": "uncertainty-wizard", + "name": "uncertainty-wizard", + "url": "/v1/software/uncertainty-wizard" + }, + { + "slug": "uncrustify", + "name": "uncrustify", + "url": "/v1/software/uncrustify" + }, + { + "slug": "underpriced-app", + "name": "underpriced.app", + "url": "/v1/software/underpriced-app" + }, + { + "slug": "uni2ascii", + "name": "uni2ascii", + "url": "/v1/software/uni2ascii" + }, + { + "slug": "unifdef", + "name": "unifdef", + "url": "/v1/software/unifdef" + }, + { + "slug": "unionfs-fuse", + "name": "unionfs-fuse", + "url": "/v1/software/unionfs-fuse" + }, + { + "slug": "universoft", + "name": "universoft", + "url": "/v1/software/universoft" + }, + { + "slug": "unlocalized-software", + "name": "unlocalized software", + "url": "/v1/software/unlocalized-software" + }, + { + "slug": "unoconv", + "name": "unoconv", + "url": "/v1/software/unoconv" + }, + { + "slug": "unrpa", + "name": "unrpa", + "url": "/v1/software/unrpa" + }, + { + "slug": "updatedd", + "name": "updatedd", + "url": "/v1/software/updatedd" + }, + { + "slug": "upper-atmospheric-models", + "name": "upper-atmospheric models", + "url": "/v1/software/upper-atmospheric-models" + }, + { + "slug": "upwork", + "name": "upwork", + "url": "/v1/software/upwork" + }, + { + "slug": "urdfdom", + "name": "urdfdom", + "url": "/v1/software/urdfdom" + }, + { + "slug": "urdfdom-headers", + "name": "urdfdom_headers", + "url": "/v1/software/urdfdom-headers" + }, + { + "slug": "urjtag", + "name": "urjtag", + "url": "/v1/software/urjtag" + }, + { + "slug": "urxvt-font-size", + "name": "urxvt-font-size", + "url": "/v1/software/urxvt-font-size" + }, + { + "slug": "usbredir", + "name": "usbredir", + "url": "/v1/software/usbredir" + }, + { + "slug": "usbview", + "name": "usbview", + "url": "/v1/software/usbview" + }, + { + "slug": "user-onboarding", + "name": "user onboarding", + "url": "/v1/software/user-onboarding" + }, + { + "slug": "utalk", + "name": "utalk", + "url": "/v1/software/utalk" + }, + { + "slug": "uuu", + "name": "uuu", + "url": "/v1/software/uuu" + }, + { + "slug": "vbulletin", + "name": "vBulletin", + "url": "/v1/software/vbulletin" + }, + { + "slug": "vsyslab", + "name": "vSysLab", + "url": "/v1/software/vsyslab" + }, + { + "slug": "vacuum", + "name": "vacuum", + "url": "/v1/software/vacuum" + }, + { + "slug": "vapoursynth", + "name": "vapoursynth", + "url": "/v1/software/vapoursynth" + }, + { + "slug": "vbcc", + "name": "vbcc", + "url": "/v1/software/vbcc" + }, + { + "slug": "vcpkg", + "name": "vcpkg", + "url": "/v1/software/vcpkg" + }, + { + "slug": "vcstools", + "name": "vcstools", + "url": "/v1/software/vcstools" + }, + { + "slug": "vdpauinfo", + "name": "vdpauinfo", + "url": "/v1/software/vdpauinfo" + }, + { + "slug": "vdr-xvdr", + "name": "vdr-xvdr", + "url": "/v1/software/vdr-xvdr" + }, + { + "slug": "vertex-icon-theme", + "name": "vertex-icon-theme", + "url": "/v1/software/vertex-icon-theme" + }, + { + "slug": "veterinary-practice-management-software", + "name": "veterinary practice management software", + "url": "/v1/software/veterinary-practice-management-software" + }, + { + "slug": "veux", + "name": "veux", + "url": "/v1/software/veux" + }, + { + "slug": "viaideinfo", + "name": "viaideinfo", + "url": "/v1/software/viaideinfo" + }, + { + "slug": "vicar2png", + "name": "vicar2png", + "url": "/v1/software/vicar2png" + }, + { + "slug": "videorbits", + "name": "videorbits", + "url": "/v1/software/videorbits" + }, + { + "slug": "view3dscene", + "name": "view3dscene", + "url": "/v1/software/view3dscene" + }, + { + "slug": "viking", + "name": "viking", + "url": "/v1/software/viking" + }, + { + "slug": "vim-qt", + "name": "vim-qt", + "url": "/v1/software/vim-qt" + }, + { + "slug": "vimball", + "name": "vimball", + "url": "/v1/software/vimball" + }, + { + "slug": "virglrenderer", + "name": "virglrenderer", + "url": "/v1/software/virglrenderer" + }, + { + "slug": "virsh", + "name": "virsh", + "url": "/v1/software/virsh" + }, + { + "slug": "virtual-tabletop-game", + "name": "virtual tabletop game", + "url": "/v1/software/virtual-tabletop-game" + }, + { + "slug": "virusis", + "name": "virusis", + "url": "/v1/software/virusis" + }, + { + "slug": "visone", + "name": "visone", + "url": "/v1/software/visone" + }, + { + "slug": "vit", + "name": "vit", + "url": "/v1/software/vit" + }, + { + "slug": "vo-aacenc", + "name": "vo-aacenc", + "url": "/v1/software/vo-aacenc" + }, + { + "slug": "vo-amrwbenc", + "name": "vo-amrwbenc", + "url": "/v1/software/vo-amrwbenc" + }, + { + "slug": "votca-csg", + "name": "votca-csg", + "url": "/v1/software/votca-csg" + }, + { + "slug": "votca-csgapps", + "name": "votca-csgapps", + "url": "/v1/software/votca-csgapps" + }, + { + "slug": "votca-ctp", + "name": "votca-ctp", + "url": "/v1/software/votca-ctp" + }, + { + "slug": "votca-tools", + "name": "votca-tools", + "url": "/v1/software/votca-tools" + }, + { + "slug": "votca-xtp", + "name": "votca-xtp", + "url": "/v1/software/votca-xtp" + }, + { + "slug": "vov", + "name": "vov", + "url": "/v1/software/vov" + }, + { + "slug": "vpncwatch", + "name": "vpncwatch", + "url": "/v1/software/vpncwatch" + }, + { + "slug": "vw-os", + "name": "vw.os", + "url": "/v1/software/vw-os" + }, + { + "slug": "vyto-ai", + "name": "vyto.ai", + "url": "/v1/software/vyto-ai" + }, + { + "slug": "wanderer", + "name": "wanderer", + "url": "/v1/software/wanderer" + }, + { + "slug": "wastewatcher", + "name": "wastewatcher", + "url": "/v1/software/wastewatcher" + }, + { + "slug": "wayfinding-software", + "name": "wayfinding software", + "url": "/v1/software/wayfinding-software" + }, + { + "slug": "wayland-ivi-extension", + "name": "wayland-ivi-extension", + "url": "/v1/software/wayland-ivi-extension" + }, + { + "slug": "wayland-protocols", + "name": "wayland-protocols", + "url": "/v1/software/wayland-protocols" + }, + { + "slug": "wdiff", + "name": "wdiff", + "url": "/v1/software/wdiff" + }, + { + "slug": "wdsub", + "name": "wdsub", + "url": "/v1/software/wdsub" + }, + { + "slug": "web-api-fuzzing-project", + "name": "web-api-fuzzing-project", + "url": "/v1/software/web-api-fuzzing-project" + }, + { + "slug": "webmethods-integration-server", + "name": "webMethods Integration Server", + "url": "/v1/software/webmethods-integration-server" + }, + { + "slug": "webapp-config", + "name": "webapp-config", + "url": "/v1/software/webapp-config" + }, + { + "slug": "webchem", + "name": "webchem", + "url": "/v1/software/webchem" + }, + { + "slug": "webfs", + "name": "webfs", + "url": "/v1/software/webfs" + }, + { + "slug": "webgen", + "name": "webgen", + "url": "/v1/software/webgen" + }, + { + "slug": "whdd", + "name": "whdd", + "url": "/v1/software/whdd" + }, + { + "slug": "whohas", + "name": "whohas", + "url": "/v1/software/whohas" + }, + { + "slug": "wifibroadcast", + "name": "wifibroadcast", + "url": "/v1/software/wifibroadcast" + }, + { + "slug": "wildmat", + "name": "wildmat", + "url": "/v1/software/wildmat" + }, + { + "slug": "wininfo", + "name": "wininfo", + "url": "/v1/software/wininfo" + }, + { + "slug": "wipe-out", + "name": "wipe-out", + "url": "/v1/software/wipe-out" + }, + { + "slug": "wlc", + "name": "wlc", + "url": "/v1/software/wlc" + }, + { + "slug": "woke", + "name": "woke", + "url": "/v1/software/woke" + }, + { + "slug": "word-processor-program", + "name": "word processor program", + "url": "/v1/software/word-processor-program" + }, + { + "slug": "word-tree", + "name": "word tree", + "url": "/v1/software/word-tree" + }, + { + "slug": "wordsimilarity-word-2-word", + "name": "wordsimilarity (Word 2 Word)", + "url": "/v1/software/wordsimilarity-word-2-word" + }, + { + "slug": "wput", + "name": "wput", + "url": "/v1/software/wput" + }, + { + "slug": "wry", + "name": "wry", + "url": "/v1/software/wry" + }, + { + "slug": "ws4py", + "name": "ws4py", + "url": "/v1/software/ws4py" + }, + { + "slug": "wstool", + "name": "wstool", + "url": "/v1/software/wstool" + }, + { + "slug": "x11-calc", + "name": "x11-calc", + "url": "/v1/software/x11-calc" + }, + { + "slug": "x86inc-asm", + "name": "x86inc.asm", + "url": "/v1/software/x86inc-asm" + }, + { + "slug": "xapps", + "name": "xApps", + "url": "/v1/software/xapps" + }, + { + "slug": "xcbl", + "name": "xCBL", + "url": "/v1/software/xcbl" + }, + { + "slug": "xmod", + "name": "xMod", + "url": "/v1/software/xmod" + }, + { + "slug": "xscope", + "name": "xScope", + "url": "/v1/software/xscope" + }, + { + "slug": "xaitment", + "name": "xaitment", + "url": "/v1/software/xaitment" + }, + { + "slug": "xbmc-addon-xvdr", + "name": "xbmc-addon-xvdr", + "url": "/v1/software/xbmc-addon-xvdr" + }, + { + "slug": "xcb-util", + "name": "xcb-util", + "url": "/v1/software/xcb-util" + }, + { + "slug": "xcb-util-image", + "name": "xcb-util-image", + "url": "/v1/software/xcb-util-image" + }, + { + "slug": "xcb-util-keysyms", + "name": "xcb-util-keysyms", + "url": "/v1/software/xcb-util-keysyms" + }, + { + "slug": "xcb-util-renderutil", + "name": "xcb-util-renderutil", + "url": "/v1/software/xcb-util-renderutil" + }, + { + "slug": "xcb-util-wm", + "name": "xcb-util-wm", + "url": "/v1/software/xcb-util-wm" + }, + { + "slug": "xdbedizzy", + "name": "xdbedizzy", + "url": "/v1/software/xdbedizzy" + }, + { + "slug": "xdvik", + "name": "xdvik", + "url": "/v1/software/xdvik" + }, + { + "slug": "xen-tools", + "name": "xen-tools", + "url": "/v1/software/xen-tools" + }, + { + "slug": "xf86-input-wacom", + "name": "xf86-input-wacom", + "url": "/v1/software/xf86-input-wacom" + }, + { + "slug": "xf86-video-xgi", + "name": "xf86-video-xgi", + "url": "/v1/software/xf86-video-xgi" + }, + { + "slug": "xfce4-radio-plugin", + "name": "xfce4-radio-plugin", + "url": "/v1/software/xfce4-radio-plugin" + }, + { + "slug": "xlsfonts", + "name": "xlsfonts", + "url": "/v1/software/xlsfonts" + }, + { + "slug": "xmedcon", + "name": "xmedcon", + "url": "/v1/software/xmedcon" + }, + { + "slug": "xml2doc", + "name": "xml2doc", + "url": "/v1/software/xml2doc" + }, + { + "slug": "xnec2c", + "name": "xnec2c", + "url": "/v1/software/xnec2c" + }, + { + "slug": "xnnpack", + "name": "xnnpack", + "url": "/v1/software/xnnpack" + }, + { + "slug": "xnoise", + "name": "xnoise", + "url": "/v1/software/xnoise" + }, + { + "slug": "xnots", + "name": "xnots", + "url": "/v1/software/xnots" + }, + { + "slug": "xpenguins", + "name": "xpenguins", + "url": "/v1/software/xpenguins" + }, + { + "slug": "xrdb", + "name": "xrdb", + "url": "/v1/software/xrdb" + }, + { + "slug": "xrootconsole", + "name": "xrootconsole", + "url": "/v1/software/xrootconsole" + }, + { + "slug": "xsel", + "name": "xsel", + "url": "/v1/software/xsel" + }, + { + "slug": "xvid4conf", + "name": "xvid4conf", + "url": "/v1/software/xvid4conf" + }, + { + "slug": "xwallpaper", + "name": "xwallpaper", + "url": "/v1/software/xwallpaper" + }, + { + "slug": "xxdi", + "name": "xxdi", + "url": "/v1/software/xxdi" + }, + { + "slug": "xxdiff", + "name": "xxdiff", + "url": "/v1/software/xxdiff" + }, + { + "slug": "xyzzy", + "name": "xyzzy", + "url": "/v1/software/xyzzy" + }, + { + "slug": "y-cruncher", + "name": "y-cruncher", + "url": "/v1/software/y-cruncher" + }, + { + "slug": "ycomp", + "name": "yComp", + "url": "/v1/software/ycomp" + }, + { + "slug": "yed-files", + "name": "yED Files", + "url": "/v1/software/yed-files" + }, + { + "slug": "yaffs-utils", + "name": "yaffs-utils", + "url": "/v1/software/yaffs-utils" + }, + { + "slug": "yaffs2-utils", + "name": "yaffs2-utils", + "url": "/v1/software/yaffs2-utils" + }, + { + "slug": "yakyak", + "name": "yakyak", + "url": "/v1/software/yakyak" + }, + { + "slug": "yarnnn", + "name": "yarnnn", + "url": "/v1/software/yarnnn" + }, + { + "slug": "yaserde", + "name": "yaserde", + "url": "/v1/software/yaserde" + }, + { + "slug": "yencode", + "name": "yencode", + "url": "/v1/software/yencode" + }, + { + "slug": "ykclient", + "name": "ykclient", + "url": "/v1/software/ykclient" + }, + { + "slug": "yodl", + "name": "yodl", + "url": "/v1/software/yodl" + }, + { + "slug": "youtube-viewer", + "name": "youtube-viewer", + "url": "/v1/software/youtube-viewer" + }, + { + "slug": "yubikey-manager", + "name": "yubikey-manager", + "url": "/v1/software/yubikey-manager" + }, + { + "slug": "zconvert", + "name": "zConvert", + "url": "/v1/software/zconvert" + }, + { + "slug": "zathura-cb", + "name": "zathura-cb", + "url": "/v1/software/zathura-cb" + }, + { + "slug": "zathura-djvu", + "name": "zathura-djvu", + "url": "/v1/software/zathura-djvu" + }, + { + "slug": "zathura-pdf-mupdf", + "name": "zathura-pdf-mupdf", + "url": "/v1/software/zathura-pdf-mupdf" + }, + { + "slug": "zathura-pdf-poppler", + "name": "zathura-pdf-poppler", + "url": "/v1/software/zathura-pdf-poppler" + }, + { + "slug": "zathura-ps", + "name": "zathura-ps", + "url": "/v1/software/zathura-ps" + }, + { + "slug": "zelph", + "name": "zelph", + "url": "/v1/software/zelph" + }, + { + "slug": "zen-sources", + "name": "zen-sources", + "url": "/v1/software/zen-sources" + }, + { + "slug": "zzuf", + "name": "zzuf", + "url": "/v1/software/zzuf" + }, + { + "slug": "icon", + "name": "α-ICON", + "url": "/v1/software/icon" + } + ] +} diff --git a/site/public/v1/software/indexhibit/index.json b/site/public/v1/software/indexhibit/index.json new file mode 100644 index 000000000000..a2275d38bb91 --- /dev/null +++ b/site/public/v1/software/indexhibit/index.json @@ -0,0 +1,21 @@ +{ + "id": 4627, + "slug": "indexhibit", + "name": "Indexhibit", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "PHP" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3150060" + ], + "created_at": "2026-07-10T10:12:41.337257", + "updated_at": "2026-07-10T10:12:41.337257", + "url": "/v1/software/indexhibit" +} diff --git a/site/public/v1/software/indievelo/index.json b/site/public/v1/software/indievelo/index.json new file mode 100644 index 000000000000..33d3dc409ca6 --- /dev/null +++ b/site/public/v1/software/indievelo/index.json @@ -0,0 +1,19 @@ +{ + "id": 4628, + "slug": "indievelo", + "name": "indieVelo", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130730707" + ], + "created_at": "2026-07-10T10:12:41.337257", + "updated_at": "2026-07-10T10:12:41.337257", + "url": "/v1/software/indievelo" +} diff --git a/site/public/v1/software/indigobench/index.json b/site/public/v1/software/indigobench/index.json new file mode 100644 index 000000000000..2e06f58cba39 --- /dev/null +++ b/site/public/v1/software/indigobench/index.json @@ -0,0 +1,22 @@ +{ + "id": 4629, + "slug": "indigobench", + "name": "IndigoBench", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Mac operating system", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q38267143" + ], + "created_at": "2026-07-10T10:12:41.338254", + "updated_at": "2026-07-10T10:12:41.338254", + "url": "/v1/software/indigobench" +} diff --git a/site/public/v1/software/indrastra-global-open-repository/index.json b/site/public/v1/software/indrastra-global-open-repository/index.json new file mode 100644 index 000000000000..0a053706fcbb --- /dev/null +++ b/site/public/v1/software/indrastra-global-open-repository/index.json @@ -0,0 +1,19 @@ +{ + "id": 4630, + "slug": "indrastra-global-open-repository", + "name": "IndraStra Global Open Repository", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q47476514" + ], + "created_at": "2026-07-10T10:12:41.338254", + "updated_at": "2026-07-10T10:12:41.338254", + "url": "/v1/software/indrastra-global-open-repository" +} diff --git a/site/public/v1/software/infegy/index.json b/site/public/v1/software/infegy/index.json new file mode 100644 index 000000000000..fb547cf8b6c6 --- /dev/null +++ b/site/public/v1/software/infegy/index.json @@ -0,0 +1,19 @@ +{ + "id": 4631, + "slug": "infegy", + "name": "Infegy", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085028" + ], + "created_at": "2026-07-10T10:12:41.338254", + "updated_at": "2026-07-10T10:12:41.338254", + "url": "/v1/software/infegy" +} diff --git a/site/public/v1/software/infinidb/index.json b/site/public/v1/software/infinidb/index.json new file mode 100644 index 000000000000..8ff4c3cea39c --- /dev/null +++ b/site/public/v1/software/infinidb/index.json @@ -0,0 +1,19 @@ +{ + "id": 4632, + "slug": "infinidb", + "name": "InfiniDB", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5023936" + ], + "created_at": "2026-07-10T10:12:41.339238", + "updated_at": "2026-07-10T10:12:41.339238", + "url": "/v1/software/infinidb" +} diff --git a/site/public/v1/software/infinit/index.json b/site/public/v1/software/infinit/index.json new file mode 100644 index 000000000000..850e6504cca3 --- /dev/null +++ b/site/public/v1/software/infinit/index.json @@ -0,0 +1,23 @@ +{ + "id": 4633, + "slug": "infinit", + "name": "Infinit", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Java", + "Python", + "Objective-C" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6029699" + ], + "created_at": "2026-07-10T10:12:41.339238", + "updated_at": "2026-07-10T10:12:41.339238", + "url": "/v1/software/infinit" +} diff --git a/site/public/v1/software/infinite-pixel-battles-playtest/index.json b/site/public/v1/software/infinite-pixel-battles-playtest/index.json new file mode 100644 index 000000000000..252a637cce19 --- /dev/null +++ b/site/public/v1/software/infinite-pixel-battles-playtest/index.json @@ -0,0 +1,19 @@ +{ + "id": 4634, + "slug": "infinite-pixel-battles-playtest", + "name": "Infinite Pixel Battles Playtest", + "release_date": "2021-09-17", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134964770" + ], + "created_at": "2026-07-10T10:12:41.339238", + "updated_at": "2026-07-10T10:12:41.339238", + "url": "/v1/software/infinite-pixel-battles-playtest" +} diff --git a/site/public/v1/software/infinitegraph/index.json b/site/public/v1/software/infinitegraph/index.json new file mode 100644 index 000000000000..aee87b306268 --- /dev/null +++ b/site/public/v1/software/infinitegraph/index.json @@ -0,0 +1,23 @@ +{ + "id": 4635, + "slug": "infinitegraph", + "name": "InfiniteGraph", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [ + "Java" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6029732" + ], + "created_at": "2026-07-10T10:12:41.339238", + "updated_at": "2026-07-10T10:12:41.339238", + "url": "/v1/software/infinitegraph" +} diff --git a/site/public/v1/software/infltr/index.json b/site/public/v1/software/infltr/index.json new file mode 100644 index 000000000000..c542623ba246 --- /dev/null +++ b/site/public/v1/software/infltr/index.json @@ -0,0 +1,19 @@ +{ + "id": 4636, + "slug": "infltr", + "name": "Infltr", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28448854" + ], + "created_at": "2026-07-10T10:12:41.340265", + "updated_at": "2026-07-10T10:12:41.340265", + "url": "/v1/software/infltr" +} diff --git a/site/public/v1/software/infoextractor/index.json b/site/public/v1/software/infoextractor/index.json new file mode 100644 index 000000000000..4f612e50b207 --- /dev/null +++ b/site/public/v1/software/infoextractor/index.json @@ -0,0 +1,19 @@ +{ + "id": 4637, + "slug": "infoextractor", + "name": "InfoExtractor", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085029" + ], + "created_at": "2026-07-10T10:12:41.340265", + "updated_at": "2026-07-10T10:12:41.340265", + "url": "/v1/software/infoextractor" +} diff --git a/site/public/v1/software/informix-wingz/index.json b/site/public/v1/software/informix-wingz/index.json new file mode 100644 index 000000000000..11e1a01c1892 --- /dev/null +++ b/site/public/v1/software/informix-wingz/index.json @@ -0,0 +1,19 @@ +{ + "id": 4638, + "slug": "informix-wingz", + "name": "Informix Wingz", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q428832" + ], + "created_at": "2026-07-10T10:12:41.340265", + "updated_at": "2026-07-10T10:12:41.340265", + "url": "/v1/software/informix-wingz" +} diff --git a/site/public/v1/software/infozoom/index.json b/site/public/v1/software/infozoom/index.json new file mode 100644 index 000000000000..5d85c96165bf --- /dev/null +++ b/site/public/v1/software/infozoom/index.json @@ -0,0 +1,19 @@ +{ + "id": 4639, + "slug": "infozoom", + "name": "InfoZoom", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1662436" + ], + "created_at": "2026-07-10T10:12:41.341302", + "updated_at": "2026-07-10T10:12:41.341302", + "url": "/v1/software/infozoom" +} diff --git a/site/public/v1/software/inke-dynamic-table-of-contexts/index.json b/site/public/v1/software/inke-dynamic-table-of-contexts/index.json new file mode 100644 index 000000000000..d5f940e23dad --- /dev/null +++ b/site/public/v1/software/inke-dynamic-table-of-contexts/index.json @@ -0,0 +1,19 @@ +{ + "id": 4640, + "slug": "inke-dynamic-table-of-contexts", + "name": "INKE: Dynamic Table of Contexts", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085030" + ], + "created_at": "2026-07-10T10:12:41.341302", + "updated_at": "2026-07-10T10:12:41.341302", + "url": "/v1/software/inke-dynamic-table-of-contexts" +} diff --git a/site/public/v1/software/inklingreader/index.json b/site/public/v1/software/inklingreader/index.json new file mode 100644 index 000000000000..5f14d276307c --- /dev/null +++ b/site/public/v1/software/inklingreader/index.json @@ -0,0 +1,19 @@ +{ + "id": 4641, + "slug": "inklingreader", + "name": "Inklingreader", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76185084" + ], + "created_at": "2026-07-10T10:12:41.342242", + "updated_at": "2026-07-10T10:12:41.342242", + "url": "/v1/software/inklingreader" +} diff --git a/site/public/v1/software/inkwell/index.json b/site/public/v1/software/inkwell/index.json new file mode 100644 index 000000000000..ac8658aacdb4 --- /dev/null +++ b/site/public/v1/software/inkwell/index.json @@ -0,0 +1,19 @@ +{ + "id": 4642, + "slug": "inkwell", + "name": "Inkwell", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1496072" + ], + "created_at": "2026-07-10T10:12:41.342242", + "updated_at": "2026-07-10T10:12:41.342242", + "url": "/v1/software/inkwell" +} diff --git a/site/public/v1/software/inl-blacklab/index.json b/site/public/v1/software/inl-blacklab/index.json new file mode 100644 index 000000000000..07fb8852578c --- /dev/null +++ b/site/public/v1/software/inl-blacklab/index.json @@ -0,0 +1,19 @@ +{ + "id": 4643, + "slug": "inl-blacklab", + "name": "INL BlackLab", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085031" + ], + "created_at": "2026-07-10T10:12:41.342242", + "updated_at": "2026-07-10T10:12:41.342242", + "url": "/v1/software/inl-blacklab" +} diff --git a/site/public/v1/software/inmage-dr-scout/index.json b/site/public/v1/software/inmage-dr-scout/index.json new file mode 100644 index 000000000000..ad3b52e4fad4 --- /dev/null +++ b/site/public/v1/software/inmage-dr-scout/index.json @@ -0,0 +1,21 @@ +{ + "id": 4644, + "slug": "inmage-dr-scout", + "name": "InMage DR-Scout", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6008777" + ], + "created_at": "2026-07-10T10:12:41.342242", + "updated_at": "2026-07-10T10:12:41.342242", + "url": "/v1/software/inmage-dr-scout" +} diff --git a/site/public/v1/software/innoextract/index.json b/site/public/v1/software/innoextract/index.json new file mode 100644 index 000000000000..782fdb0d5821 --- /dev/null +++ b/site/public/v1/software/innoextract/index.json @@ -0,0 +1,19 @@ +{ + "id": 4645, + "slug": "innoextract", + "name": "innoextract", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62864127" + ], + "created_at": "2026-07-10T10:12:41.343272", + "updated_at": "2026-07-10T10:12:41.343272", + "url": "/v1/software/innoextract" +} diff --git a/site/public/v1/software/inoerp/index.json b/site/public/v1/software/inoerp/index.json new file mode 100644 index 000000000000..7a2c8673be11 --- /dev/null +++ b/site/public/v1/software/inoerp/index.json @@ -0,0 +1,21 @@ +{ + "id": 4646, + "slug": "inoerp", + "name": "InoERP", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "PHP" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q48850675" + ], + "created_at": "2026-07-10T10:12:41.343272", + "updated_at": "2026-07-10T10:12:41.343272", + "url": "/v1/software/inoerp" +} diff --git a/site/public/v1/software/inoki/index.json b/site/public/v1/software/inoki/index.json new file mode 100644 index 000000000000..fae9787debc2 --- /dev/null +++ b/site/public/v1/software/inoki/index.json @@ -0,0 +1,21 @@ +{ + "id": 4647, + "slug": "inoki", + "name": "iNoki", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Objective-C" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6036535" + ], + "created_at": "2026-07-10T10:12:41.344278", + "updated_at": "2026-07-10T10:12:41.344278", + "url": "/v1/software/inoki" +} diff --git a/site/public/v1/software/inotify-tools/index.json b/site/public/v1/software/inotify-tools/index.json new file mode 100644 index 000000000000..a67351f310c9 --- /dev/null +++ b/site/public/v1/software/inotify-tools/index.json @@ -0,0 +1,19 @@ +{ + "id": 4648, + "slug": "inotify-tools", + "name": "inotify-tools", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62864118" + ], + "created_at": "2026-07-10T10:12:41.344278", + "updated_at": "2026-07-10T10:12:41.344278", + "url": "/v1/software/inotify-tools" +} diff --git a/site/public/v1/software/inpage/index.json b/site/public/v1/software/inpage/index.json new file mode 100644 index 000000000000..1b178c76027f --- /dev/null +++ b/site/public/v1/software/inpage/index.json @@ -0,0 +1,19 @@ +{ + "id": 4649, + "slug": "inpage", + "name": "InPage", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6008799" + ], + "created_at": "2026-07-10T10:12:41.344278", + "updated_at": "2026-07-10T10:12:41.344278", + "url": "/v1/software/inpage" +} diff --git a/site/public/v1/software/inph0-topic-explorer/index.json b/site/public/v1/software/inph0-topic-explorer/index.json new file mode 100644 index 000000000000..f1072f71c2c2 --- /dev/null +++ b/site/public/v1/software/inph0-topic-explorer/index.json @@ -0,0 +1,19 @@ +{ + "id": 4650, + "slug": "inph0-topic-explorer", + "name": "InPh0 Topic Explorer", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085033" + ], + "created_at": "2026-07-10T10:12:41.344278", + "updated_at": "2026-07-10T10:12:41.344278", + "url": "/v1/software/inph0-topic-explorer" +} diff --git a/site/public/v1/software/input-director/index.json b/site/public/v1/software/input-director/index.json new file mode 100644 index 000000000000..25301e16cd01 --- /dev/null +++ b/site/public/v1/software/input-director/index.json @@ -0,0 +1,19 @@ +{ + "id": 4651, + "slug": "input-director", + "name": "Input Director", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1664328" + ], + "created_at": "2026-07-10T10:12:41.345293", + "updated_at": "2026-07-10T10:12:41.345293", + "url": "/v1/software/input-director" +} diff --git a/site/public/v1/software/input-output-configuration-program/index.json b/site/public/v1/software/input-output-configuration-program/index.json new file mode 100644 index 000000000000..47474af75302 --- /dev/null +++ b/site/public/v1/software/input-output-configuration-program/index.json @@ -0,0 +1,19 @@ +{ + "id": 4652, + "slug": "input-output-configuration-program", + "name": "Input/Output Configuration Program", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6036761" + ], + "created_at": "2026-07-10T10:12:41.345293", + "updated_at": "2026-07-10T10:12:41.345293", + "url": "/v1/software/input-output-configuration-program" +} diff --git a/site/public/v1/software/inqscribe/index.json b/site/public/v1/software/inqscribe/index.json new file mode 100644 index 000000000000..d2a3a5e0e72c --- /dev/null +++ b/site/public/v1/software/inqscribe/index.json @@ -0,0 +1,23 @@ +{ + "id": 4653, + "slug": "inqscribe", + "name": "inqscribe", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "macOS" + ], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105076388" + ], + "created_at": "2026-07-10T10:12:41.346259", + "updated_at": "2026-07-10T10:12:41.346259", + "url": "/v1/software/inqscribe" +} diff --git a/site/public/v1/software/inquisitor/index.json b/site/public/v1/software/inquisitor/index.json new file mode 100644 index 000000000000..b940cdf2c313 --- /dev/null +++ b/site/public/v1/software/inquisitor/index.json @@ -0,0 +1,19 @@ +{ + "id": 4654, + "slug": "inquisitor", + "name": "Inquisitor", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6036909" + ], + "created_at": "2026-07-10T10:12:41.346259", + "updated_at": "2026-07-10T10:12:41.346259", + "url": "/v1/software/inquisitor" +} diff --git a/site/public/v1/software/inrac-language-compiler/index.json b/site/public/v1/software/inrac-language-compiler/index.json new file mode 100644 index 000000000000..813183c78b98 --- /dev/null +++ b/site/public/v1/software/inrac-language-compiler/index.json @@ -0,0 +1,19 @@ +{ + "id": 4655, + "slug": "inrac-language-compiler", + "name": "INRAC Language Compiler", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085034" + ], + "created_at": "2026-07-10T10:12:41.346259", + "updated_at": "2026-07-10T10:12:41.346259", + "url": "/v1/software/inrac-language-compiler" +} diff --git a/site/public/v1/software/inselect/index.json b/site/public/v1/software/inselect/index.json new file mode 100644 index 000000000000..2344339fb217 --- /dev/null +++ b/site/public/v1/software/inselect/index.json @@ -0,0 +1,21 @@ +{ + "id": 4656, + "slug": "inselect", + "name": "INSELECT", + "release_date": null, + "developers": [ + "Dmitri Nersesyan" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138763393" + ], + "created_at": "2026-07-10T10:12:41.347295", + "updated_at": "2026-07-10T10:12:41.347295", + "url": "/v1/software/inselect" +} diff --git a/site/public/v1/software/insight/index.json b/site/public/v1/software/insight/index.json new file mode 100644 index 000000000000..03bac61ebfca --- /dev/null +++ b/site/public/v1/software/insight/index.json @@ -0,0 +1,19 @@ +{ + "id": 4657, + "slug": "insight", + "name": "Insight", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6038070" + ], + "created_at": "2026-07-10T10:12:41.347295", + "updated_at": "2026-07-10T10:12:41.347295", + "url": "/v1/software/insight" +} diff --git a/site/public/v1/software/insightlearn/index.json b/site/public/v1/software/insightlearn/index.json new file mode 100644 index 000000000000..5cb66c2322a2 --- /dev/null +++ b/site/public/v1/software/insightlearn/index.json @@ -0,0 +1,19 @@ +{ + "id": 4658, + "slug": "insightlearn", + "name": "InsightLearn", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139785705" + ], + "created_at": "2026-07-10T10:12:41.347295", + "updated_at": "2026-07-10T10:12:41.347295", + "url": "/v1/software/insightlearn" +} diff --git a/site/public/v1/software/inspectit/index.json b/site/public/v1/software/inspectit/index.json new file mode 100644 index 000000000000..a61f7dc36d9c --- /dev/null +++ b/site/public/v1/software/inspectit/index.json @@ -0,0 +1,23 @@ +{ + "id": 4659, + "slug": "inspectit", + "name": "InspectIT", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Java" + ], + "licenses": [ + "Apache License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1664609" + ], + "created_at": "2026-07-10T10:12:41.348248", + "updated_at": "2026-07-10T10:12:41.348248", + "url": "/v1/software/inspectit" +} diff --git a/site/public/v1/software/inspectrum/index.json b/site/public/v1/software/inspectrum/index.json new file mode 100644 index 000000000000..8909ae20f108 --- /dev/null +++ b/site/public/v1/software/inspectrum/index.json @@ -0,0 +1,19 @@ +{ + "id": 4660, + "slug": "inspectrum", + "name": "inspectrum", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974945" + ], + "created_at": "2026-07-10T10:12:41.348248", + "updated_at": "2026-07-10T10:12:41.348248", + "url": "/v1/software/inspectrum" +} diff --git a/site/public/v1/software/inssider/index.json b/site/public/v1/software/inssider/index.json new file mode 100644 index 000000000000..d432c04f380c --- /dev/null +++ b/site/public/v1/software/inssider/index.json @@ -0,0 +1,22 @@ +{ + "id": 4661, + "slug": "inssider", + "name": "inSSIDer", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3559954" + ], + "created_at": "2026-07-10T10:12:41.348248", + "updated_at": "2026-07-10T10:12:41.348248", + "url": "/v1/software/inssider" +} diff --git a/site/public/v1/software/install-mask/index.json b/site/public/v1/software/install-mask/index.json new file mode 100644 index 000000000000..7e4aca49c3c6 --- /dev/null +++ b/site/public/v1/software/install-mask/index.json @@ -0,0 +1,19 @@ +{ + "id": 4662, + "slug": "install-mask", + "name": "install-mask", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974946" + ], + "created_at": "2026-07-10T10:12:41.349251", + "updated_at": "2026-07-10T10:12:41.349251", + "url": "/v1/software/install-mask" +} diff --git a/site/public/v1/software/install-xattr/index.json b/site/public/v1/software/install-xattr/index.json new file mode 100644 index 000000000000..8b57c32faa52 --- /dev/null +++ b/site/public/v1/software/install-xattr/index.json @@ -0,0 +1,19 @@ +{ + "id": 4663, + "slug": "install-xattr", + "name": "install-xattr", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974947" + ], + "created_at": "2026-07-10T10:12:41.349251", + "updated_at": "2026-07-10T10:12:41.349251", + "url": "/v1/software/install-xattr" +} diff --git a/site/public/v1/software/installanywhere/index.json b/site/public/v1/software/installanywhere/index.json new file mode 100644 index 000000000000..704b308da7d8 --- /dev/null +++ b/site/public/v1/software/installanywhere/index.json @@ -0,0 +1,19 @@ +{ + "id": 4664, + "slug": "installanywhere", + "name": "InstallAnywhere", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6038636" + ], + "created_at": "2026-07-10T10:12:41.349251", + "updated_at": "2026-07-10T10:12:41.349251", + "url": "/v1/software/installanywhere" +} diff --git a/site/public/v1/software/installaware/index.json b/site/public/v1/software/installaware/index.json new file mode 100644 index 000000000000..8ce38052dd4b --- /dev/null +++ b/site/public/v1/software/installaware/index.json @@ -0,0 +1,19 @@ +{ + "id": 4665, + "slug": "installaware", + "name": "InstallAware", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11712822" + ], + "created_at": "2026-07-10T10:12:41.350259", + "updated_at": "2026-07-10T10:12:41.350259", + "url": "/v1/software/installaware" +} diff --git a/site/public/v1/software/installer-app/index.json b/site/public/v1/software/installer-app/index.json new file mode 100644 index 000000000000..c5951ecf7f28 --- /dev/null +++ b/site/public/v1/software/installer-app/index.json @@ -0,0 +1,21 @@ +{ + "id": 4666, + "slug": "installer-app", + "name": "Installer.app", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Objective-C" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6038666" + ], + "created_at": "2026-07-10T10:12:41.350259", + "updated_at": "2026-07-10T10:12:41.350259", + "url": "/v1/software/installer-app" +} diff --git a/site/public/v1/software/installer-vise/index.json b/site/public/v1/software/installer-vise/index.json new file mode 100644 index 000000000000..9ef7aebcd598 --- /dev/null +++ b/site/public/v1/software/installer-vise/index.json @@ -0,0 +1,19 @@ +{ + "id": 4667, + "slug": "installer-vise", + "name": "Installer VISE", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6038659" + ], + "created_at": "2026-07-10T10:12:41.350259", + "updated_at": "2026-07-10T10:12:41.350259", + "url": "/v1/software/installer-vise" +} diff --git a/site/public/v1/software/instant-rails/index.json b/site/public/v1/software/instant-rails/index.json new file mode 100644 index 000000000000..f27356ef45e9 --- /dev/null +++ b/site/public/v1/software/instant-rails/index.json @@ -0,0 +1,19 @@ +{ + "id": 4668, + "slug": "instant-rails", + "name": "Instant Rails", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4041426" + ], + "created_at": "2026-07-10T10:12:41.351251", + "updated_at": "2026-07-10T10:12:41.351251", + "url": "/v1/software/instant-rails" +} diff --git a/site/public/v1/software/instant-recall-2-0/index.json b/site/public/v1/software/instant-recall-2-0/index.json new file mode 100644 index 000000000000..becea42dbb18 --- /dev/null +++ b/site/public/v1/software/instant-recall-2-0/index.json @@ -0,0 +1,19 @@ +{ + "id": 4669, + "slug": "instant-recall-2-0", + "name": "Instant Recall 2.0", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121631715" + ], + "created_at": "2026-07-10T10:12:41.351251", + "updated_at": "2026-07-10T10:12:41.351251", + "url": "/v1/software/instant-recall-2-0" +} diff --git a/site/public/v1/software/instantatlas/index.json b/site/public/v1/software/instantatlas/index.json new file mode 100644 index 000000000000..8fe06da2201e --- /dev/null +++ b/site/public/v1/software/instantatlas/index.json @@ -0,0 +1,19 @@ +{ + "id": 4670, + "slug": "instantatlas", + "name": "InstantAtlas", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085035" + ], + "created_at": "2026-07-10T10:12:41.351251", + "updated_at": "2026-07-10T10:12:41.351251", + "url": "/v1/software/instantatlas" +} diff --git a/site/public/v1/software/instanttv/index.json b/site/public/v1/software/instanttv/index.json new file mode 100644 index 000000000000..3d5f9ba2130c --- /dev/null +++ b/site/public/v1/software/instanttv/index.json @@ -0,0 +1,19 @@ +{ + "id": 4671, + "slug": "instanttv", + "name": "InstantTV", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q55614491" + ], + "created_at": "2026-07-10T10:12:41.352249", + "updated_at": "2026-07-10T10:12:41.352249", + "url": "/v1/software/instanttv" +} diff --git a/site/public/v1/software/instaresume-pro/index.json b/site/public/v1/software/instaresume-pro/index.json new file mode 100644 index 000000000000..5bf0e5ab0d83 --- /dev/null +++ b/site/public/v1/software/instaresume-pro/index.json @@ -0,0 +1,19 @@ +{ + "id": 4672, + "slug": "instaresume-pro", + "name": "InstaResume.Pro", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139995614" + ], + "created_at": "2026-07-10T10:12:41.352249", + "updated_at": "2026-07-10T10:12:41.352249", + "url": "/v1/software/instaresume-pro" +} diff --git a/site/public/v1/software/instaviz/index.json b/site/public/v1/software/instaviz/index.json new file mode 100644 index 000000000000..3cc6b1d992e0 --- /dev/null +++ b/site/public/v1/software/instaviz/index.json @@ -0,0 +1,19 @@ +{ + "id": 4673, + "slug": "instaviz", + "name": "Instaviz", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085036" + ], + "created_at": "2026-07-10T10:12:41.352249", + "updated_at": "2026-07-10T10:12:41.352249", + "url": "/v1/software/instaviz" +} diff --git a/site/public/v1/software/instruments/index.json b/site/public/v1/software/instruments/index.json new file mode 100644 index 000000000000..b7664b4f557a --- /dev/null +++ b/site/public/v1/software/instruments/index.json @@ -0,0 +1,23 @@ +{ + "id": 4674, + "slug": "instruments", + "name": "Instruments", + "release_date": null, + "developers": [ + "Apple Inc." + ], + "publishers": [], + "operating_systems": [ + "macOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1665302" + ], + "created_at": "2026-07-10T10:12:41.353272", + "updated_at": "2026-07-10T10:12:41.353272", + "url": "/v1/software/instruments" +} diff --git a/site/public/v1/software/insure/index.json b/site/public/v1/software/insure/index.json new file mode 100644 index 000000000000..39b12f473906 --- /dev/null +++ b/site/public/v1/software/insure/index.json @@ -0,0 +1,21 @@ +{ + "id": 4675, + "slug": "insure", + "name": "Insure++", + "release_date": null, + "developers": [ + "Parasoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6042396" + ], + "created_at": "2026-07-10T10:12:41.353272", + "updated_at": "2026-07-10T10:12:41.353272", + "url": "/v1/software/insure" +} diff --git a/site/public/v1/software/insync/index.json b/site/public/v1/software/insync/index.json new file mode 100644 index 000000000000..d6cc8f2875e0 --- /dev/null +++ b/site/public/v1/software/insync/index.json @@ -0,0 +1,19 @@ +{ + "id": 4676, + "slug": "insync", + "name": "Insync", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085037" + ], + "created_at": "2026-07-10T10:12:41.353272", + "updated_at": "2026-07-10T10:12:41.353272", + "url": "/v1/software/insync" +} diff --git a/site/public/v1/software/integrated-ballistics-identification-system/index.json b/site/public/v1/software/integrated-ballistics-identification-system/index.json new file mode 100644 index 000000000000..5359adf89def --- /dev/null +++ b/site/public/v1/software/integrated-ballistics-identification-system/index.json @@ -0,0 +1,19 @@ +{ + "id": 4677, + "slug": "integrated-ballistics-identification-system", + "name": "Integrated Ballistics Identification System", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17081125" + ], + "created_at": "2026-07-10T10:12:41.354249", + "updated_at": "2026-07-10T10:12:41.354249", + "url": "/v1/software/integrated-ballistics-identification-system" +} diff --git a/site/public/v1/software/integrated-software-for-imagers-and-spectrometers/index.json b/site/public/v1/software/integrated-software-for-imagers-and-spectrometers/index.json new file mode 100644 index 000000000000..521374674f5a --- /dev/null +++ b/site/public/v1/software/integrated-software-for-imagers-and-spectrometers/index.json @@ -0,0 +1,24 @@ +{ + "id": 4678, + "slug": "integrated-software-for-imagers-and-spectrometers", + "name": "Integrated Software for Imagers and Spectrometers", + "release_date": "1971-01-01", + "developers": [ + "United States Geological Survey" + ], + "publishers": [], + "operating_systems": [ + "Fedora Linux", + "macOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6042979" + ], + "created_at": "2026-07-10T10:12:41.354249", + "updated_at": "2026-07-10T10:12:41.354249", + "url": "/v1/software/integrated-software-for-imagers-and-spectrometers" +} diff --git a/site/public/v1/software/integraxor-scada/index.json b/site/public/v1/software/integraxor-scada/index.json new file mode 100644 index 000000000000..e24edcc39844 --- /dev/null +++ b/site/public/v1/software/integraxor-scada/index.json @@ -0,0 +1,19 @@ +{ + "id": 4679, + "slug": "integraxor-scada", + "name": "IntegraXor SCADA", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q65072324" + ], + "created_at": "2026-07-10T10:12:41.354249", + "updated_at": "2026-07-10T10:12:41.354249", + "url": "/v1/software/integraxor-scada" +} diff --git a/site/public/v1/software/intel-appup/index.json b/site/public/v1/software/intel-appup/index.json new file mode 100644 index 000000000000..c68c7fe08cf3 --- /dev/null +++ b/site/public/v1/software/intel-appup/index.json @@ -0,0 +1,23 @@ +{ + "id": 4680, + "slug": "intel-appup", + "name": "Intel AppUp", + "release_date": "2010-01-01", + "developers": [ + "Intel" + ], + "publishers": [], + "operating_systems": [ + "Windows 7" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6043442" + ], + "created_at": "2026-07-10T10:12:41.354249", + "updated_at": "2026-07-10T10:12:41.354249", + "url": "/v1/software/intel-appup" +} diff --git a/site/public/v1/software/intel-array-visualizer/index.json b/site/public/v1/software/intel-array-visualizer/index.json new file mode 100644 index 000000000000..a738f5cff22c --- /dev/null +++ b/site/public/v1/software/intel-array-visualizer/index.json @@ -0,0 +1,19 @@ +{ + "id": 4681, + "slug": "intel-array-visualizer", + "name": "Intel Array Visualizer", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16895425" + ], + "created_at": "2026-07-10T10:12:41.355239", + "updated_at": "2026-07-10T10:12:41.355239", + "url": "/v1/software/intel-array-visualizer" +} diff --git a/site/public/v1/software/intel-big-data-analytic-toolkit/index.json b/site/public/v1/software/intel-big-data-analytic-toolkit/index.json new file mode 100644 index 000000000000..acb4a3c68e30 --- /dev/null +++ b/site/public/v1/software/intel-big-data-analytic-toolkit/index.json @@ -0,0 +1,19 @@ +{ + "id": 4682, + "slug": "intel-big-data-analytic-toolkit", + "name": "Intel Big Data Analytic Toolkit", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115728575" + ], + "created_at": "2026-07-10T10:12:41.355239", + "updated_at": "2026-07-10T10:12:41.355239", + "url": "/v1/software/intel-big-data-analytic-toolkit" +} diff --git a/site/public/v1/software/intel-bridge-technology/index.json b/site/public/v1/software/intel-bridge-technology/index.json new file mode 100644 index 000000000000..db819b1c3766 --- /dev/null +++ b/site/public/v1/software/intel-bridge-technology/index.json @@ -0,0 +1,21 @@ +{ + "id": 4683, + "slug": "intel-bridge-technology", + "name": "Intel Bridge Technology", + "release_date": null, + "developers": [ + "Intel" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107338239" + ], + "created_at": "2026-07-10T10:12:41.356252", + "updated_at": "2026-07-10T10:12:41.356252", + "url": "/v1/software/intel-bridge-technology" +} diff --git a/site/public/v1/software/intel-lanspool/index.json b/site/public/v1/software/intel-lanspool/index.json new file mode 100644 index 000000000000..f704ad928d52 --- /dev/null +++ b/site/public/v1/software/intel-lanspool/index.json @@ -0,0 +1,21 @@ +{ + "id": 4684, + "slug": "intel-lanspool", + "name": "Intel LANSpool", + "release_date": null, + "developers": [ + "Intel" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6043487" + ], + "created_at": "2026-07-10T10:12:41.357195", + "updated_at": "2026-07-10T10:12:41.357195", + "url": "/v1/software/intel-lanspool" +} diff --git a/site/public/v1/software/intel-parallel-advisor/index.json b/site/public/v1/software/intel-parallel-advisor/index.json new file mode 100644 index 000000000000..5e4a3ab7ac41 --- /dev/null +++ b/site/public/v1/software/intel-parallel-advisor/index.json @@ -0,0 +1,21 @@ +{ + "id": 4685, + "slug": "intel-parallel-advisor", + "name": "Intel Parallel Advisor", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6043518" + ], + "created_at": "2026-07-10T10:12:41.358322", + "updated_at": "2026-07-10T10:12:41.358322", + "url": "/v1/software/intel-parallel-advisor" +} diff --git a/site/public/v1/software/intel-parallel-composer/index.json b/site/public/v1/software/intel-parallel-composer/index.json new file mode 100644 index 000000000000..d03f3875f187 --- /dev/null +++ b/site/public/v1/software/intel-parallel-composer/index.json @@ -0,0 +1,19 @@ +{ + "id": 4686, + "slug": "intel-parallel-composer", + "name": "Intel Parallel Composer", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16528437" + ], + "created_at": "2026-07-10T10:12:41.360246", + "updated_at": "2026-07-10T10:12:41.360246", + "url": "/v1/software/intel-parallel-composer" +} diff --git a/site/public/v1/software/intel-parallel-inspector/index.json b/site/public/v1/software/intel-parallel-inspector/index.json new file mode 100644 index 000000000000..5f42da7a884e --- /dev/null +++ b/site/public/v1/software/intel-parallel-inspector/index.json @@ -0,0 +1,21 @@ +{ + "id": 4687, + "slug": "intel-parallel-inspector", + "name": "Intel Parallel Inspector", + "release_date": null, + "developers": [ + "Intel" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4041459" + ], + "created_at": "2026-07-10T10:12:41.360246", + "updated_at": "2026-07-10T10:12:41.360246", + "url": "/v1/software/intel-parallel-inspector" +} diff --git a/site/public/v1/software/intel-parallel-studio/index.json b/site/public/v1/software/intel-parallel-studio/index.json new file mode 100644 index 000000000000..02d76b60aa52 --- /dev/null +++ b/site/public/v1/software/intel-parallel-studio/index.json @@ -0,0 +1,24 @@ +{ + "id": 4688, + "slug": "intel-parallel-studio", + "name": "Intel Parallel Studio", + "release_date": null, + "developers": [ + "Intel" + ], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4041460" + ], + "created_at": "2026-07-10T10:12:41.361260", + "updated_at": "2026-07-10T10:12:41.361260", + "url": "/v1/software/intel-parallel-studio" +} diff --git a/site/public/v1/software/intel-xdk/index.json b/site/public/v1/software/intel-xdk/index.json new file mode 100644 index 000000000000..7dd126aaeb78 --- /dev/null +++ b/site/public/v1/software/intel-xdk/index.json @@ -0,0 +1,19 @@ +{ + "id": 4689, + "slug": "intel-xdk", + "name": "Intel XDK", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25345910" + ], + "created_at": "2026-07-10T10:12:41.362314", + "updated_at": "2026-07-10T10:12:41.362314", + "url": "/v1/software/intel-xdk" +} diff --git a/site/public/v1/software/intelib/index.json b/site/public/v1/software/intelib/index.json new file mode 100644 index 000000000000..1d42e62c8981 --- /dev/null +++ b/site/public/v1/software/intelib/index.json @@ -0,0 +1,19 @@ +{ + "id": 4690, + "slug": "intelib", + "name": "InteLib", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4041436" + ], + "created_at": "2026-07-10T10:12:41.362314", + "updated_at": "2026-07-10T10:12:41.362314", + "url": "/v1/software/intelib" +} diff --git a/site/public/v1/software/intellext-watson/index.json b/site/public/v1/software/intellext-watson/index.json new file mode 100644 index 000000000000..2d8421fb1f77 --- /dev/null +++ b/site/public/v1/software/intellext-watson/index.json @@ -0,0 +1,19 @@ +{ + "id": 4691, + "slug": "intellext-watson", + "name": "Intellext Watson", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6043765" + ], + "created_at": "2026-07-10T10:12:41.363259", + "updated_at": "2026-07-10T10:12:41.363259", + "url": "/v1/software/intellext-watson" +} diff --git a/site/public/v1/software/intelligent-archive/index.json b/site/public/v1/software/intelligent-archive/index.json new file mode 100644 index 000000000000..babac8f698e0 --- /dev/null +++ b/site/public/v1/software/intelligent-archive/index.json @@ -0,0 +1,19 @@ +{ + "id": 4692, + "slug": "intelligent-archive", + "name": "Intelligent Archive", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085039" + ], + "created_at": "2026-07-10T10:12:41.363259", + "updated_at": "2026-07-10T10:12:41.363259", + "url": "/v1/software/intelligent-archive" +} diff --git a/site/public/v1/software/intelligent-speech-analyser/index.json b/site/public/v1/software/intelligent-speech-analyser/index.json new file mode 100644 index 000000000000..61e9561e3f65 --- /dev/null +++ b/site/public/v1/software/intelligent-speech-analyser/index.json @@ -0,0 +1,21 @@ +{ + "id": 4693, + "slug": "intelligent-speech-analyser", + "name": "Intelligent Speech Analyser", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Mac operating system" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q31086132" + ], + "created_at": "2026-07-10T10:12:41.363259", + "updated_at": "2026-07-10T10:12:41.363259", + "url": "/v1/software/intelligent-speech-analyser" +} diff --git a/site/public/v1/software/intellipoint/index.json b/site/public/v1/software/intellipoint/index.json new file mode 100644 index 000000000000..f1598eac8b68 --- /dev/null +++ b/site/public/v1/software/intellipoint/index.json @@ -0,0 +1,21 @@ +{ + "id": 4694, + "slug": "intellipoint", + "name": "IntelliPoint", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6043802" + ], + "created_at": "2026-07-10T10:12:41.364236", + "updated_at": "2026-07-10T10:12:41.364236", + "url": "/v1/software/intellipoint" +} diff --git a/site/public/v1/software/intellistudio/index.json b/site/public/v1/software/intellistudio/index.json new file mode 100644 index 000000000000..b22fd328078d --- /dev/null +++ b/site/public/v1/software/intellistudio/index.json @@ -0,0 +1,21 @@ +{ + "id": 4695, + "slug": "intellistudio", + "name": "IntelliStudio", + "release_date": null, + "developers": [ + "Nexus Intelligence Advisory" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139959944" + ], + "created_at": "2026-07-10T10:12:41.364236", + "updated_at": "2026-07-10T10:12:41.364236", + "url": "/v1/software/intellistudio" +} diff --git a/site/public/v1/software/intellitar/index.json b/site/public/v1/software/intellitar/index.json new file mode 100644 index 000000000000..ff0ac9e8f04d --- /dev/null +++ b/site/public/v1/software/intellitar/index.json @@ -0,0 +1,19 @@ +{ + "id": 4696, + "slug": "intellitar", + "name": "Intellitar", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6044197" + ], + "created_at": "2026-07-10T10:12:41.364236", + "updated_at": "2026-07-10T10:12:41.364236", + "url": "/v1/software/intellitar" +} diff --git a/site/public/v1/software/intellitype/index.json b/site/public/v1/software/intellitype/index.json new file mode 100644 index 000000000000..eafbb34d4da8 --- /dev/null +++ b/site/public/v1/software/intellitype/index.json @@ -0,0 +1,21 @@ +{ + "id": 4697, + "slug": "intellitype", + "name": "IntelliType", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6043820" + ], + "created_at": "2026-07-10T10:12:41.365313", + "updated_at": "2026-07-10T10:12:41.365313", + "url": "/v1/software/intellitype" +} diff --git a/site/public/v1/software/intent/index.json b/site/public/v1/software/intent/index.json new file mode 100644 index 000000000000..0bf816b5c7f8 --- /dev/null +++ b/site/public/v1/software/intent/index.json @@ -0,0 +1,19 @@ +{ + "id": 4698, + "slug": "intent", + "name": "Intent", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q90819960" + ], + "created_at": "2026-07-10T10:12:41.365313", + "updated_at": "2026-07-10T10:12:41.365313", + "url": "/v1/software/intent" +} diff --git a/site/public/v1/software/interactive-scenario-builder/index.json b/site/public/v1/software/interactive-scenario-builder/index.json new file mode 100644 index 000000000000..60b931efadff --- /dev/null +++ b/site/public/v1/software/interactive-scenario-builder/index.json @@ -0,0 +1,26 @@ +{ + "id": 4699, + "slug": "interactive-scenario-builder", + "name": "Interactive Scenario Builder", + "release_date": null, + "developers": [ + "Naval Research Laboratory Tactical Electronic Warfare Division", + "United States Naval Research Laboratory" + ], + "publishers": [], + "operating_systems": [ + "cross-platform" + ], + "programming_languages": [ + "Java" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6045321" + ], + "created_at": "2026-07-10T10:12:41.365313", + "updated_at": "2026-07-10T10:12:41.365313", + "url": "/v1/software/interactive-scenario-builder" +} diff --git a/site/public/v1/software/interactive-tree-of-life/index.json b/site/public/v1/software/interactive-tree-of-life/index.json new file mode 100644 index 000000000000..9ce7c5573e4b --- /dev/null +++ b/site/public/v1/software/interactive-tree-of-life/index.json @@ -0,0 +1,19 @@ +{ + "id": 4700, + "slug": "interactive-tree-of-life", + "name": "Interactive Tree of Life", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112123664" + ], + "created_at": "2026-07-10T10:12:41.365313", + "updated_at": "2026-07-10T10:12:41.365313", + "url": "/v1/software/interactive-tree-of-life" +} diff --git a/site/public/v1/software/interactual-player/index.json b/site/public/v1/software/interactual-player/index.json new file mode 100644 index 000000000000..5e14488d8df8 --- /dev/null +++ b/site/public/v1/software/interactual-player/index.json @@ -0,0 +1,19 @@ +{ + "id": 4701, + "slug": "interactual-player", + "name": "InterActual Player", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6044813" + ], + "created_at": "2026-07-10T10:12:41.366248", + "updated_at": "2026-07-10T10:12:41.366248", + "url": "/v1/software/interactual-player" +} diff --git a/site/public/v1/software/interarchy/index.json b/site/public/v1/software/interarchy/index.json new file mode 100644 index 000000000000..99885f54a7f0 --- /dev/null +++ b/site/public/v1/software/interarchy/index.json @@ -0,0 +1,19 @@ +{ + "id": 4702, + "slug": "interarchy", + "name": "Interarchy", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6045496" + ], + "created_at": "2026-07-10T10:12:41.366248", + "updated_at": "2026-07-10T10:12:41.366248", + "url": "/v1/software/interarchy" +} diff --git a/site/public/v1/software/interbase/index.json b/site/public/v1/software/interbase/index.json new file mode 100644 index 000000000000..7230d4042e0d --- /dev/null +++ b/site/public/v1/software/interbase/index.json @@ -0,0 +1,23 @@ +{ + "id": 4703, + "slug": "interbase", + "name": "InterBase", + "release_date": null, + "developers": [ + "Embarcadero Technologies" + ], + "publishers": [], + "operating_systems": [ + "Mac operating system" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q166751" + ], + "created_at": "2026-07-10T10:12:41.367263", + "updated_at": "2026-07-10T10:12:41.367263", + "url": "/v1/software/interbase" +} diff --git a/site/public/v1/software/interior-designer/index.json b/site/public/v1/software/interior-designer/index.json new file mode 100644 index 000000000000..c0530d3c440e --- /dev/null +++ b/site/public/v1/software/interior-designer/index.json @@ -0,0 +1,21 @@ +{ + "id": 4704, + "slug": "interior-designer", + "name": "Interior Designer", + "release_date": "2024-10-25", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [ + "simulation video game" + ], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130711306" + ], + "created_at": "2026-07-10T10:12:41.367263", + "updated_at": "2026-07-10T10:12:41.367263", + "url": "/v1/software/interior-designer" +} diff --git a/site/public/v1/software/interlnk/index.json b/site/public/v1/software/interlnk/index.json new file mode 100644 index 000000000000..4d9e27edb574 --- /dev/null +++ b/site/public/v1/software/interlnk/index.json @@ -0,0 +1,19 @@ +{ + "id": 4705, + "slug": "interlnk", + "name": "Interlnk", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131465743" + ], + "created_at": "2026-07-10T10:12:41.367263", + "updated_at": "2026-07-10T10:12:41.367263", + "url": "/v1/software/interlnk" +} diff --git a/site/public/v1/software/internet-connect/index.json b/site/public/v1/software/internet-connect/index.json new file mode 100644 index 000000000000..b74dfb39b2d7 --- /dev/null +++ b/site/public/v1/software/internet-connect/index.json @@ -0,0 +1,21 @@ +{ + "id": 4706, + "slug": "internet-connect", + "name": "Internet Connect", + "release_date": null, + "developers": [ + "Apple Inc." + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3687050" + ], + "created_at": "2026-07-10T10:12:41.367263", + "updated_at": "2026-07-10T10:12:41.367263", + "url": "/v1/software/internet-connect" +} diff --git a/site/public/v1/software/internet-explorer-12/index.json b/site/public/v1/software/internet-explorer-12/index.json new file mode 100644 index 000000000000..d7573c209d8c --- /dev/null +++ b/site/public/v1/software/internet-explorer-12/index.json @@ -0,0 +1,19 @@ +{ + "id": 4707, + "slug": "internet-explorer-12", + "name": "Internet Explorer 12", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17300267" + ], + "created_at": "2026-07-10T10:12:41.368312", + "updated_at": "2026-07-10T10:12:41.368312", + "url": "/v1/software/internet-explorer-12" +} diff --git a/site/public/v1/software/internet-explorer-platform-preview/index.json b/site/public/v1/software/internet-explorer-platform-preview/index.json new file mode 100644 index 000000000000..76233c2bc119 --- /dev/null +++ b/site/public/v1/software/internet-explorer-platform-preview/index.json @@ -0,0 +1,19 @@ +{ + "id": 4708, + "slug": "internet-explorer-platform-preview", + "name": "Internet Explorer Platform Preview", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4020352" + ], + "created_at": "2026-07-10T10:12:41.368312", + "updated_at": "2026-07-10T10:12:41.368312", + "url": "/v1/software/internet-explorer-platform-preview" +} diff --git a/site/public/v1/software/internet-intranet-input-method-framework/index.json b/site/public/v1/software/internet-intranet-input-method-framework/index.json new file mode 100644 index 000000000000..fae7231b0be9 --- /dev/null +++ b/site/public/v1/software/internet-intranet-input-method-framework/index.json @@ -0,0 +1,21 @@ +{ + "id": 4709, + "slug": "internet-intranet-input-method-framework", + "name": "Internet/Intranet Input Method Framework", + "release_date": null, + "developers": [ + "Hideki Hiura" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6055429" + ], + "created_at": "2026-07-10T10:12:41.369263", + "updated_at": "2026-07-10T10:12:41.369263", + "url": "/v1/software/internet-intranet-input-method-framework" +} diff --git a/site/public/v1/software/internet-web-browser/index.json b/site/public/v1/software/internet-web-browser/index.json new file mode 100644 index 000000000000..552103724371 --- /dev/null +++ b/site/public/v1/software/internet-web-browser/index.json @@ -0,0 +1,19 @@ +{ + "id": 4710, + "slug": "internet-web-browser", + "name": "Internet (web browser)", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q55640051" + ], + "created_at": "2026-07-10T10:12:41.369263", + "updated_at": "2026-07-10T10:12:41.369263", + "url": "/v1/software/internet-web-browser" +} diff --git a/site/public/v1/software/interplanetary-wayback/index.json b/site/public/v1/software/interplanetary-wayback/index.json new file mode 100644 index 000000000000..9a50cfcdd32d --- /dev/null +++ b/site/public/v1/software/interplanetary-wayback/index.json @@ -0,0 +1,23 @@ +{ + "id": 4711, + "slug": "interplanetary-wayback", + "name": "InterPlanetary Wayback", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Python" + ], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136028260" + ], + "created_at": "2026-07-10T10:12:41.369263", + "updated_at": "2026-07-10T10:12:41.369263", + "url": "/v1/software/interplanetary-wayback" +} diff --git a/site/public/v1/software/intervideo-windvr/index.json b/site/public/v1/software/intervideo-windvr/index.json new file mode 100644 index 000000000000..3e78c7ce34f7 --- /dev/null +++ b/site/public/v1/software/intervideo-windvr/index.json @@ -0,0 +1,21 @@ +{ + "id": 4712, + "slug": "intervideo-windvr", + "name": "InterVideo WinDVR", + "release_date": null, + "developers": [ + "InterVideo" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6045016" + ], + "created_at": "2026-07-10T10:12:41.369263", + "updated_at": "2026-07-10T10:12:41.369263", + "url": "/v1/software/intervideo-windvr" +} diff --git a/site/public/v1/software/intex/index.json b/site/public/v1/software/intex/index.json new file mode 100644 index 000000000000..7d2ed662019e --- /dev/null +++ b/site/public/v1/software/intex/index.json @@ -0,0 +1,19 @@ +{ + "id": 4713, + "slug": "intex", + "name": "INTEX", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085040" + ], + "created_at": "2026-07-10T10:12:41.370288", + "updated_at": "2026-07-10T10:12:41.370288", + "url": "/v1/software/intex" +} diff --git a/site/public/v1/software/intext/index.json b/site/public/v1/software/intext/index.json new file mode 100644 index 000000000000..640056c05555 --- /dev/null +++ b/site/public/v1/software/intext/index.json @@ -0,0 +1,19 @@ +{ + "id": 4714, + "slug": "intext", + "name": "InTEXT", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085041" + ], + "created_at": "2026-07-10T10:12:41.370288", + "updated_at": "2026-07-10T10:12:41.370288", + "url": "/v1/software/intext" +} diff --git a/site/public/v1/software/inthe-am/index.json b/site/public/v1/software/inthe-am/index.json new file mode 100644 index 000000000000..658f7eed9fe0 --- /dev/null +++ b/site/public/v1/software/inthe-am/index.json @@ -0,0 +1,19 @@ +{ + "id": 4715, + "slug": "inthe-am", + "name": "Inthe.AM", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117429520" + ], + "created_at": "2026-07-10T10:12:41.370288", + "updated_at": "2026-07-10T10:12:41.371243", + "url": "/v1/software/inthe-am" +} diff --git a/site/public/v1/software/intorel/index.json b/site/public/v1/software/intorel/index.json new file mode 100644 index 000000000000..76e4f404f470 --- /dev/null +++ b/site/public/v1/software/intorel/index.json @@ -0,0 +1,21 @@ +{ + "id": 4716, + "slug": "intorel", + "name": "Intorel", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6058249" + ], + "created_at": "2026-07-10T10:12:41.371243", + "updated_at": "2026-07-10T10:12:41.371243", + "url": "/v1/software/intorel" +} diff --git a/site/public/v1/software/intpakx/index.json b/site/public/v1/software/intpakx/index.json new file mode 100644 index 000000000000..7d9e2a346ad8 --- /dev/null +++ b/site/public/v1/software/intpakx/index.json @@ -0,0 +1,19 @@ +{ + "id": 4717, + "slug": "intpakx", + "name": "intpakX", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123190884" + ], + "created_at": "2026-07-10T10:12:41.371243", + "updated_at": "2026-07-10T10:12:41.371243", + "url": "/v1/software/intpakx" +} diff --git a/site/public/v1/software/intrakey-access-time/index.json b/site/public/v1/software/intrakey-access-time/index.json new file mode 100644 index 000000000000..8561cc7a29a3 --- /dev/null +++ b/site/public/v1/software/intrakey-access-time/index.json @@ -0,0 +1,21 @@ +{ + "id": 4718, + "slug": "intrakey-access-time", + "name": "IntraKey ACCESS & TIME", + "release_date": null, + "developers": [ + "SECANDA Systems AG" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137324336" + ], + "created_at": "2026-07-10T10:12:41.371243", + "updated_at": "2026-07-10T10:12:41.371243", + "url": "/v1/software/intrakey-access-time" +} diff --git a/site/public/v1/software/inventor-labs/index.json b/site/public/v1/software/inventor-labs/index.json new file mode 100644 index 000000000000..15b341732239 --- /dev/null +++ b/site/public/v1/software/inventor-labs/index.json @@ -0,0 +1,19 @@ +{ + "id": 4719, + "slug": "inventor-labs", + "name": "Inventor Labs", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134303388" + ], + "created_at": "2026-07-10T10:12:41.372241", + "updated_at": "2026-07-10T10:12:41.372241", + "url": "/v1/software/inventor-labs" +} diff --git a/site/public/v1/software/inventory-planner-by-sage/index.json b/site/public/v1/software/inventory-planner-by-sage/index.json new file mode 100644 index 000000000000..46a816b40fef --- /dev/null +++ b/site/public/v1/software/inventory-planner-by-sage/index.json @@ -0,0 +1,19 @@ +{ + "id": 4720, + "slug": "inventory-planner-by-sage", + "name": "Inventory Planner by Sage", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120645575" + ], + "created_at": "2026-07-10T10:12:41.372241", + "updated_at": "2026-07-10T10:12:41.372241", + "url": "/v1/software/inventory-planner-by-sage" +} diff --git a/site/public/v1/software/inverse/index.json b/site/public/v1/software/inverse/index.json new file mode 100644 index 000000000000..de732375166a --- /dev/null +++ b/site/public/v1/software/inverse/index.json @@ -0,0 +1,19 @@ +{ + "id": 4721, + "slug": "inverse", + "name": "Inverse", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6060335" + ], + "created_at": "2026-07-10T10:12:41.373252", + "updated_at": "2026-07-10T10:12:41.373252", + "url": "/v1/software/inverse" +} diff --git a/site/public/v1/software/invest-like/index.json b/site/public/v1/software/invest-like/index.json new file mode 100644 index 000000000000..b0f5e2b2eb53 --- /dev/null +++ b/site/public/v1/software/invest-like/index.json @@ -0,0 +1,25 @@ +{ + "id": 4722, + "slug": "invest-like", + "name": "invest-like", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "web browser" + ], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [ + "financial software" + ], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139901465" + ], + "created_at": "2026-07-10T10:12:41.373252", + "updated_at": "2026-07-10T10:12:41.373252", + "url": "/v1/software/invest-like" +} diff --git a/site/public/v1/software/invision-community/index.json b/site/public/v1/software/invision-community/index.json new file mode 100644 index 000000000000..26cdcdec86ef --- /dev/null +++ b/site/public/v1/software/invision-community/index.json @@ -0,0 +1,21 @@ +{ + "id": 4723, + "slug": "invision-community", + "name": "Invision Community", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "PHP" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1422888" + ], + "created_at": "2026-07-10T10:12:41.373252", + "updated_at": "2026-07-10T10:12:41.373252", + "url": "/v1/software/invision-community" +} diff --git a/site/public/v1/software/invoice-ninja/index.json b/site/public/v1/software/invoice-ninja/index.json new file mode 100644 index 000000000000..0a400affee75 --- /dev/null +++ b/site/public/v1/software/invoice-ninja/index.json @@ -0,0 +1,19 @@ +{ + "id": 4724, + "slug": "invoice-ninja", + "name": "Invoice Ninja", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115940042" + ], + "created_at": "2026-07-10T10:12:41.373252", + "updated_at": "2026-07-10T10:12:41.373252", + "url": "/v1/software/invoice-ninja" +} diff --git a/site/public/v1/software/invoiceai/index.json b/site/public/v1/software/invoiceai/index.json new file mode 100644 index 000000000000..312408c87fec --- /dev/null +++ b/site/public/v1/software/invoiceai/index.json @@ -0,0 +1,19 @@ +{ + "id": 4725, + "slug": "invoiceai", + "name": "InvoiceAI", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139511999" + ], + "created_at": "2026-07-10T10:12:41.374278", + "updated_at": "2026-07-10T10:12:41.374278", + "url": "/v1/software/invoiceai" +} diff --git a/site/public/v1/software/iobber/index.json b/site/public/v1/software/iobber/index.json new file mode 100644 index 000000000000..0480d0d938ed --- /dev/null +++ b/site/public/v1/software/iobber/index.json @@ -0,0 +1,19 @@ +{ + "id": 4726, + "slug": "iobber", + "name": "Iobber", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085042" + ], + "created_at": "2026-07-10T10:12:41.374278", + "updated_at": "2026-07-10T10:12:41.374278", + "url": "/v1/software/iobber" +} diff --git a/site/public/v1/software/iobit-protected-folder/index.json b/site/public/v1/software/iobit-protected-folder/index.json new file mode 100644 index 000000000000..b741959a0f23 --- /dev/null +++ b/site/public/v1/software/iobit-protected-folder/index.json @@ -0,0 +1,21 @@ +{ + "id": 4727, + "slug": "iobit-protected-folder", + "name": "IObit Protected Folder", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16528060" + ], + "created_at": "2026-07-10T10:12:41.375272", + "updated_at": "2026-07-10T10:12:41.375272", + "url": "/v1/software/iobit-protected-folder" +} diff --git a/site/public/v1/software/iobit-start-menu/index.json b/site/public/v1/software/iobit-start-menu/index.json new file mode 100644 index 000000000000..95dc12d35525 --- /dev/null +++ b/site/public/v1/software/iobit-start-menu/index.json @@ -0,0 +1,21 @@ +{ + "id": 4728, + "slug": "iobit-start-menu", + "name": "IObit Start Menu", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16528065" + ], + "created_at": "2026-07-10T10:12:41.375272", + "updated_at": "2026-07-10T10:12:41.375272", + "url": "/v1/software/iobit-start-menu" +} diff --git a/site/public/v1/software/iobit-winmetro/index.json b/site/public/v1/software/iobit-winmetro/index.json new file mode 100644 index 000000000000..6bfebb6f546f --- /dev/null +++ b/site/public/v1/software/iobit-winmetro/index.json @@ -0,0 +1,21 @@ +{ + "id": 4729, + "slug": "iobit-winmetro", + "name": "IObit WinMetro", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16528080" + ], + "created_at": "2026-07-10T10:12:41.375272", + "updated_at": "2026-07-10T10:12:41.375272", + "url": "/v1/software/iobit-winmetro" +} diff --git a/site/public/v1/software/iometer/index.json b/site/public/v1/software/iometer/index.json new file mode 100644 index 000000000000..b400f2159467 --- /dev/null +++ b/site/public/v1/software/iometer/index.json @@ -0,0 +1,23 @@ +{ + "id": 4730, + "slug": "iometer", + "name": "Iometer", + "release_date": null, + "developers": [ + "Intel" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Intel Open Source License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4041560" + ], + "created_at": "2026-07-10T10:12:41.375272", + "updated_at": "2026-07-10T10:12:41.375272", + "url": "/v1/software/iometer" +} diff --git a/site/public/v1/software/ion/index.json b/site/public/v1/software/ion/index.json new file mode 100644 index 000000000000..1b4c5890c39d --- /dev/null +++ b/site/public/v1/software/ion/index.json @@ -0,0 +1,23 @@ +{ + "id": 4731, + "slug": "ion", + "name": "ION", + "release_date": null, + "developers": [ + "Decentralized Identity Foundation" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Apache Software License 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108755079" + ], + "created_at": "2026-07-10T10:12:41.376287", + "updated_at": "2026-07-10T10:12:41.376287", + "url": "/v1/software/ion" +} diff --git a/site/public/v1/software/ionix/index.json b/site/public/v1/software/ionix/index.json new file mode 100644 index 000000000000..f305d389faa5 --- /dev/null +++ b/site/public/v1/software/ionix/index.json @@ -0,0 +1,19 @@ +{ + "id": 4732, + "slug": "ionix", + "name": "IONIX", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138795918" + ], + "created_at": "2026-07-10T10:12:41.376287", + "updated_at": "2026-07-10T10:12:41.376287", + "url": "/v1/software/ionix" +} diff --git a/site/public/v1/software/ionroad/index.json b/site/public/v1/software/ionroad/index.json new file mode 100644 index 000000000000..53274c2d20fc --- /dev/null +++ b/site/public/v1/software/ionroad/index.json @@ -0,0 +1,19 @@ +{ + "id": 4733, + "slug": "ionroad", + "name": "iOnRoad", + "release_date": "2011-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5972941" + ], + "created_at": "2026-07-10T10:12:41.376287", + "updated_at": "2026-07-10T10:12:41.376287", + "url": "/v1/software/ionroad" +} diff --git a/site/public/v1/software/ios-app-approvals/index.json b/site/public/v1/software/ios-app-approvals/index.json new file mode 100644 index 000000000000..5ca29a6b3016 --- /dev/null +++ b/site/public/v1/software/ios-app-approvals/index.json @@ -0,0 +1,21 @@ +{ + "id": 4734, + "slug": "ios-app-approvals", + "name": "iOS app approvals", + "release_date": null, + "developers": [ + "Apple Inc." + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4781745" + ], + "created_at": "2026-07-10T10:12:41.377262", + "updated_at": "2026-07-10T10:12:41.377262", + "url": "/v1/software/ios-app-approvals" +} diff --git a/site/public/v1/software/iotivity/index.json b/site/public/v1/software/iotivity/index.json new file mode 100644 index 000000000000..ab9d7e493d1e --- /dev/null +++ b/site/public/v1/software/iotivity/index.json @@ -0,0 +1,21 @@ +{ + "id": 4735, + "slug": "iotivity", + "name": "IoTivity", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Apache License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22669989" + ], + "created_at": "2026-07-10T10:12:41.377262", + "updated_at": "2026-07-10T10:12:41.377262", + "url": "/v1/software/iotivity" +} diff --git a/site/public/v1/software/iotop/index.json b/site/public/v1/software/iotop/index.json new file mode 100644 index 000000000000..5f55dbe8ff78 --- /dev/null +++ b/site/public/v1/software/iotop/index.json @@ -0,0 +1,19 @@ +{ + "id": 4736, + "slug": "iotop", + "name": "Iotop", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62864097" + ], + "created_at": "2026-07-10T10:12:41.377262", + "updated_at": "2026-07-10T10:12:41.377262", + "url": "/v1/software/iotop" +} diff --git a/site/public/v1/software/iozone/index.json b/site/public/v1/software/iozone/index.json new file mode 100644 index 000000000000..c510389ab09f --- /dev/null +++ b/site/public/v1/software/iozone/index.json @@ -0,0 +1,19 @@ +{ + "id": 4737, + "slug": "iozone", + "name": "IOzone", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16997281" + ], + "created_at": "2026-07-10T10:12:41.378267", + "updated_at": "2026-07-10T10:12:41.378267", + "url": "/v1/software/iozone" +} diff --git a/site/public/v1/software/ipcalc/index.json b/site/public/v1/software/ipcalc/index.json new file mode 100644 index 000000000000..61b374d4d1be --- /dev/null +++ b/site/public/v1/software/ipcalc/index.json @@ -0,0 +1,19 @@ +{ + "id": 4738, + "slug": "ipcalc", + "name": "ipcalc", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62864091" + ], + "created_at": "2026-07-10T10:12:41.378267", + "updated_at": "2026-07-10T10:12:41.378267", + "url": "/v1/software/ipcalc" +} diff --git a/site/public/v1/software/ipdbplugin/index.json b/site/public/v1/software/ipdbplugin/index.json new file mode 100644 index 000000000000..03cf531801cf --- /dev/null +++ b/site/public/v1/software/ipdbplugin/index.json @@ -0,0 +1,19 @@ +{ + "id": 4739, + "slug": "ipdbplugin", + "name": "ipdbplugin", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974948" + ], + "created_at": "2026-07-10T10:12:41.378267", + "updated_at": "2026-07-10T10:12:41.378267", + "url": "/v1/software/ipdbplugin" +} diff --git a/site/public/v1/software/ipdirector/index.json b/site/public/v1/software/ipdirector/index.json new file mode 100644 index 000000000000..40fc4bf8e395 --- /dev/null +++ b/site/public/v1/software/ipdirector/index.json @@ -0,0 +1,21 @@ +{ + "id": 4740, + "slug": "ipdirector", + "name": "IPDirector", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3146795" + ], + "created_at": "2026-07-10T10:12:41.379259", + "updated_at": "2026-07-10T10:12:41.379259", + "url": "/v1/software/ipdirector" +} diff --git a/site/public/v1/software/iped-digital-forensic-tool/index.json b/site/public/v1/software/iped-digital-forensic-tool/index.json new file mode 100644 index 000000000000..084d0235749a --- /dev/null +++ b/site/public/v1/software/iped-digital-forensic-tool/index.json @@ -0,0 +1,21 @@ +{ + "id": 4741, + "slug": "iped-digital-forensic-tool", + "name": "IPED Digital Forensic Tool", + "release_date": "2015-06-12", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "GNU General Public License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137682753" + ], + "created_at": "2026-07-10T10:12:41.379259", + "updated_at": "2026-07-10T10:12:41.379259", + "url": "/v1/software/iped-digital-forensic-tool" +} diff --git a/site/public/v1/software/ipgen/index.json b/site/public/v1/software/ipgen/index.json new file mode 100644 index 000000000000..03af2df322ce --- /dev/null +++ b/site/public/v1/software/ipgen/index.json @@ -0,0 +1,19 @@ +{ + "id": 4742, + "slug": "ipgen", + "name": "ipgen", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974949" + ], + "created_at": "2026-07-10T10:12:41.379259", + "updated_at": "2026-07-10T10:12:41.379259", + "url": "/v1/software/ipgen" +} diff --git a/site/public/v1/software/ipkungfu/index.json b/site/public/v1/software/ipkungfu/index.json new file mode 100644 index 000000000000..0babfa77051e --- /dev/null +++ b/site/public/v1/software/ipkungfu/index.json @@ -0,0 +1,19 @@ +{ + "id": 4743, + "slug": "ipkungfu", + "name": "ipkungfu", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62864072" + ], + "created_at": "2026-07-10T10:12:41.379259", + "updated_at": "2026-07-10T10:12:41.379259", + "url": "/v1/software/ipkungfu" +} diff --git a/site/public/v1/software/ipm/index.json b/site/public/v1/software/ipm/index.json new file mode 100644 index 000000000000..61dc4505f8eb --- /dev/null +++ b/site/public/v1/software/ipm/index.json @@ -0,0 +1,19 @@ +{ + "id": 4744, + "slug": "ipm", + "name": "IPM", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5973050" + ], + "created_at": "2026-07-10T10:12:41.380272", + "updated_at": "2026-07-10T10:12:41.380272", + "url": "/v1/software/ipm" +} diff --git a/site/public/v1/software/ipop/index.json b/site/public/v1/software/ipop/index.json new file mode 100644 index 000000000000..495985ad2c86 --- /dev/null +++ b/site/public/v1/software/ipop/index.json @@ -0,0 +1,21 @@ +{ + "id": 4745, + "slug": "ipop", + "name": "IPOP", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28957020" + ], + "created_at": "2026-07-10T10:12:41.380272", + "updated_at": "2026-07-10T10:12:41.380272", + "url": "/v1/software/ipop" +} diff --git a/site/public/v1/software/ippolit/index.json b/site/public/v1/software/ippolit/index.json new file mode 100644 index 000000000000..34a851ed3162 --- /dev/null +++ b/site/public/v1/software/ippolit/index.json @@ -0,0 +1,23 @@ +{ + "id": 4746, + "slug": "ippolit", + "name": "IPPOLIT", + "release_date": "2009-01-01", + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "public-domain software" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1654332" + ], + "created_at": "2026-07-10T10:12:41.381266", + "updated_at": "2026-07-10T10:12:41.381266", + "url": "/v1/software/ippolit" +} diff --git a/site/public/v1/software/ipsoft-amelia/index.json b/site/public/v1/software/ipsoft-amelia/index.json new file mode 100644 index 000000000000..ec7a9c345122 --- /dev/null +++ b/site/public/v1/software/ipsoft-amelia/index.json @@ -0,0 +1,21 @@ +{ + "id": 4747, + "slug": "ipsoft-amelia", + "name": "IPsoft Amelia", + "release_date": null, + "developers": [ + "IPsoft Inc." + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q23924613" + ], + "created_at": "2026-07-10T10:12:41.381266", + "updated_at": "2026-07-10T10:12:41.381266", + "url": "/v1/software/ipsoft-amelia" +} diff --git a/site/public/v1/software/iptraf/index.json b/site/public/v1/software/iptraf/index.json new file mode 100644 index 000000000000..eb71e7443ddb --- /dev/null +++ b/site/public/v1/software/iptraf/index.json @@ -0,0 +1,23 @@ +{ + "id": 4748, + "slug": "iptraf", + "name": "IPTraf", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "GNU Lesser General Public License", + "BSD licenses", + "GNU General Public License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1654347" + ], + "created_at": "2026-07-10T10:12:41.381266", + "updated_at": "2026-07-10T10:12:41.381266", + "url": "/v1/software/iptraf" +} diff --git a/site/public/v1/software/ipulse/index.json b/site/public/v1/software/ipulse/index.json new file mode 100644 index 000000000000..cc7298952ca6 --- /dev/null +++ b/site/public/v1/software/ipulse/index.json @@ -0,0 +1,23 @@ +{ + "id": 4749, + "slug": "ipulse", + "name": "iPulse", + "release_date": null, + "developers": [ + "The Iconfactory" + ], + "publishers": [], + "operating_systems": [ + "macOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5973280" + ], + "created_at": "2026-07-10T10:12:41.381266", + "updated_at": "2026-07-10T10:12:41.381266", + "url": "/v1/software/ipulse" +} diff --git a/site/public/v1/software/iputils/index.json b/site/public/v1/software/iputils/index.json new file mode 100644 index 000000000000..7c0c20f96619 --- /dev/null +++ b/site/public/v1/software/iputils/index.json @@ -0,0 +1,19 @@ +{ + "id": 4750, + "slug": "iputils", + "name": "iputils", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974952" + ], + "created_at": "2026-07-10T10:12:41.382270", + "updated_at": "2026-07-10T10:12:41.382270", + "url": "/v1/software/iputils" +} diff --git a/site/public/v1/software/ipv6toolkit/index.json b/site/public/v1/software/ipv6toolkit/index.json new file mode 100644 index 000000000000..3640b17db7cd --- /dev/null +++ b/site/public/v1/software/ipv6toolkit/index.json @@ -0,0 +1,19 @@ +{ + "id": 4751, + "slug": "ipv6toolkit", + "name": "ipv6toolkit", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974953" + ], + "created_at": "2026-07-10T10:12:41.382270", + "updated_at": "2026-07-10T10:12:41.382270", + "url": "/v1/software/ipv6toolkit" +} diff --git a/site/public/v1/software/iq-tree/index.json b/site/public/v1/software/iq-tree/index.json new file mode 100644 index 000000000000..c908820ef507 --- /dev/null +++ b/site/public/v1/software/iq-tree/index.json @@ -0,0 +1,19 @@ +{ + "id": 4752, + "slug": "iq-tree", + "name": "IQ-TREE", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113018370" + ], + "created_at": "2026-07-10T10:12:41.382270", + "updated_at": "2026-07-10T10:12:41.382270", + "url": "/v1/software/iq-tree" +} diff --git a/site/public/v1/software/iqtell/index.json b/site/public/v1/software/iqtell/index.json new file mode 100644 index 000000000000..f7b55298ce33 --- /dev/null +++ b/site/public/v1/software/iqtell/index.json @@ -0,0 +1,19 @@ +{ + "id": 4753, + "slug": "iqtell", + "name": "IQTELL", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22905897" + ], + "created_at": "2026-07-10T10:12:41.383260", + "updated_at": "2026-07-10T10:12:41.383260", + "url": "/v1/software/iqtell" +} diff --git a/site/public/v1/software/iraf/index.json b/site/public/v1/software/iraf/index.json new file mode 100644 index 000000000000..43270fd7e650 --- /dev/null +++ b/site/public/v1/software/iraf/index.json @@ -0,0 +1,33 @@ +{ + "id": 4754, + "slug": "iraf", + "name": "IRAF", + "release_date": "1986-02-01", + "developers": [ + "NOIRLab", + "Ole Streicher", + "National Optical Astronomy Observatory" + ], + "publishers": [], + "operating_systems": [ + "Hurd", + "FreeBSD", + "macOS" + ], + "programming_languages": [ + "Fortran", + "Ratfor", + "SPP" + ], + "licenses": [ + "open-source license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3051072" + ], + "created_at": "2026-07-10T10:12:41.383260", + "updated_at": "2026-07-10T10:12:41.383260", + "url": "/v1/software/iraf" +} diff --git a/site/public/v1/software/irc-cloud/index.json b/site/public/v1/software/irc-cloud/index.json new file mode 100644 index 000000000000..608a2cce89da --- /dev/null +++ b/site/public/v1/software/irc-cloud/index.json @@ -0,0 +1,19 @@ +{ + "id": 4755, + "slug": "irc-cloud", + "name": "IRC Cloud", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q129820441" + ], + "created_at": "2026-07-10T10:12:41.383260", + "updated_at": "2026-07-10T10:12:41.383260", + "url": "/v1/software/irc-cloud" +} diff --git a/site/public/v1/software/irccloud/index.json b/site/public/v1/software/irccloud/index.json new file mode 100644 index 000000000000..e79cc1fb8c79 --- /dev/null +++ b/site/public/v1/software/irccloud/index.json @@ -0,0 +1,19 @@ +{ + "id": 4756, + "slug": "irccloud", + "name": "IRCCloud", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q59771337" + ], + "created_at": "2026-07-10T10:12:41.383260", + "updated_at": "2026-07-10T10:12:41.383260", + "url": "/v1/software/irccloud" +} diff --git a/site/public/v1/software/irip/index.json b/site/public/v1/software/irip/index.json new file mode 100644 index 000000000000..4ecf609d9fda --- /dev/null +++ b/site/public/v1/software/irip/index.json @@ -0,0 +1,21 @@ +{ + "id": 4757, + "slug": "irip", + "name": "iRip", + "release_date": null, + "developers": [ + "The Little App Factory" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5973664" + ], + "created_at": "2026-07-10T10:12:41.384294", + "updated_at": "2026-07-10T10:12:41.384294", + "url": "/v1/software/irip" +} diff --git a/site/public/v1/software/iris-browser/index.json b/site/public/v1/software/iris-browser/index.json new file mode 100644 index 000000000000..52e2d99fd751 --- /dev/null +++ b/site/public/v1/software/iris-browser/index.json @@ -0,0 +1,21 @@ +{ + "id": 4758, + "slug": "iris-browser", + "name": "Iris Browser", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3511904" + ], + "created_at": "2026-07-10T10:12:41.384294", + "updated_at": "2026-07-10T10:12:41.384294", + "url": "/v1/software/iris-browser" +} diff --git a/site/public/v1/software/iriver-h100-series/index.json b/site/public/v1/software/iriver-h100-series/index.json new file mode 100644 index 000000000000..5e674cf82a52 --- /dev/null +++ b/site/public/v1/software/iriver-h100-series/index.json @@ -0,0 +1,19 @@ +{ + "id": 4759, + "slug": "iriver-h100-series", + "name": "iriver H100 series", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6071883" + ], + "created_at": "2026-07-10T10:12:41.384294", + "updated_at": "2026-07-10T10:12:41.384294", + "url": "/v1/software/iriver-h100-series" +} diff --git a/site/public/v1/software/iriver-plus/index.json b/site/public/v1/software/iriver-plus/index.json new file mode 100644 index 000000000000..ff9c8d3d6b67 --- /dev/null +++ b/site/public/v1/software/iriver-plus/index.json @@ -0,0 +1,21 @@ +{ + "id": 4760, + "slug": "iriver-plus", + "name": "iriver plus", + "release_date": null, + "developers": [ + "IRIVER" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11224888" + ], + "created_at": "2026-07-10T10:12:41.385281", + "updated_at": "2026-07-10T10:12:41.385281", + "url": "/v1/software/iriver-plus" +} diff --git a/site/public/v1/software/ironcad-q21043323/index.json b/site/public/v1/software/ironcad-q21043323/index.json new file mode 100644 index 000000000000..4635a8754d17 --- /dev/null +++ b/site/public/v1/software/ironcad-q21043323/index.json @@ -0,0 +1,19 @@ +{ + "id": 4761, + "slug": "ironcad-q21043323", + "name": "IRONCAD", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q21043323" + ], + "created_at": "2026-07-10T10:12:41.385281", + "updated_at": "2026-07-10T10:12:41.385281", + "url": "/v1/software/ironcad-q21043323" +} diff --git a/site/public/v1/software/ironcad/index.json b/site/public/v1/software/ironcad/index.json new file mode 100644 index 000000000000..aacbf43295a6 --- /dev/null +++ b/site/public/v1/software/ironcad/index.json @@ -0,0 +1,25 @@ +{ + "id": 4762, + "slug": "ironcad", + "name": "IronCAD", + "release_date": null, + "developers": [ + "IronCAD" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4041614" + ], + "created_at": "2026-07-10T10:12:41.385281", + "updated_at": "2026-07-10T10:12:41.385281", + "url": "/v1/software/ironcad" +} diff --git a/site/public/v1/software/irows/index.json b/site/public/v1/software/irows/index.json new file mode 100644 index 000000000000..6a1e1a09e0f5 --- /dev/null +++ b/site/public/v1/software/irows/index.json @@ -0,0 +1,19 @@ +{ + "id": 4763, + "slug": "irows", + "name": "iRows", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5973678" + ], + "created_at": "2026-07-10T10:12:41.386255", + "updated_at": "2026-07-10T10:12:41.386255", + "url": "/v1/software/irows" +} diff --git a/site/public/v1/software/irredit/index.json b/site/public/v1/software/irredit/index.json new file mode 100644 index 000000000000..847f586e3bc8 --- /dev/null +++ b/site/public/v1/software/irredit/index.json @@ -0,0 +1,19 @@ +{ + "id": 4764, + "slug": "irredit", + "name": "IrrEdit", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16252928" + ], + "created_at": "2026-07-10T10:12:41.386255", + "updated_at": "2026-07-10T10:12:41.386255", + "url": "/v1/software/irredit" +} diff --git a/site/public/v1/software/irusoft/index.json b/site/public/v1/software/irusoft/index.json new file mode 100644 index 000000000000..c8ed787d2cff --- /dev/null +++ b/site/public/v1/software/irusoft/index.json @@ -0,0 +1,19 @@ +{ + "id": 4765, + "slug": "irusoft", + "name": "IruSoft", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112673171" + ], + "created_at": "2026-07-10T10:12:41.386255", + "updated_at": "2026-07-10T10:12:41.386255", + "url": "/v1/software/irusoft" +} diff --git a/site/public/v1/software/isaac-dynamics/index.json b/site/public/v1/software/isaac-dynamics/index.json new file mode 100644 index 000000000000..3b299c752265 --- /dev/null +++ b/site/public/v1/software/isaac-dynamics/index.json @@ -0,0 +1,21 @@ +{ + "id": 4766, + "slug": "isaac-dynamics", + "name": "Isaac dynamics", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Java" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25041988" + ], + "created_at": "2026-07-10T10:12:41.387248", + "updated_at": "2026-07-10T10:12:41.387248", + "url": "/v1/software/isaac-dynamics" +} diff --git a/site/public/v1/software/isaviz/index.json b/site/public/v1/software/isaviz/index.json new file mode 100644 index 000000000000..d40aaec0c81e --- /dev/null +++ b/site/public/v1/software/isaviz/index.json @@ -0,0 +1,19 @@ +{ + "id": 4767, + "slug": "isaviz", + "name": "IsaViz", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085043" + ], + "created_at": "2026-07-10T10:12:41.387248", + "updated_at": "2026-07-10T10:12:41.387248", + "url": "/v1/software/isaviz" +} diff --git a/site/public/v1/software/isbem/index.json b/site/public/v1/software/isbem/index.json new file mode 100644 index 000000000000..f4701b54ce98 --- /dev/null +++ b/site/public/v1/software/isbem/index.json @@ -0,0 +1,19 @@ +{ + "id": 4768, + "slug": "isbem", + "name": "ISBEM", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5973767" + ], + "created_at": "2026-07-10T10:12:41.387248", + "updated_at": "2026-07-10T10:12:41.387248", + "url": "/v1/software/isbem" +} diff --git a/site/public/v1/software/iscience-maps/index.json b/site/public/v1/software/iscience-maps/index.json new file mode 100644 index 000000000000..b1b640be6d92 --- /dev/null +++ b/site/public/v1/software/iscience-maps/index.json @@ -0,0 +1,19 @@ +{ + "id": 4769, + "slug": "iscience-maps", + "name": "iScience Maps", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087819" + ], + "created_at": "2026-07-10T10:12:41.388317", + "updated_at": "2026-07-10T10:12:41.388317", + "url": "/v1/software/iscience-maps" +} diff --git a/site/public/v1/software/isconf/index.json b/site/public/v1/software/isconf/index.json new file mode 100644 index 000000000000..01c425fcfe70 --- /dev/null +++ b/site/public/v1/software/isconf/index.json @@ -0,0 +1,19 @@ +{ + "id": 4770, + "slug": "isconf", + "name": "ISconf", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5974627" + ], + "created_at": "2026-07-10T10:12:41.388317", + "updated_at": "2026-07-10T10:12:41.388317", + "url": "/v1/software/isconf" +} diff --git a/site/public/v1/software/isdoc/index.json b/site/public/v1/software/isdoc/index.json new file mode 100644 index 000000000000..aae75683704b --- /dev/null +++ b/site/public/v1/software/isdoc/index.json @@ -0,0 +1,19 @@ +{ + "id": 4771, + "slug": "isdoc", + "name": "ISDOC", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8451768" + ], + "created_at": "2026-07-10T10:12:41.388317", + "updated_at": "2026-07-10T10:12:41.388317", + "url": "/v1/software/isdoc" +} diff --git a/site/public/v1/software/ishowu/index.json b/site/public/v1/software/ishowu/index.json new file mode 100644 index 000000000000..56a12a997e4b --- /dev/null +++ b/site/public/v1/software/ishowu/index.json @@ -0,0 +1,19 @@ +{ + "id": 4772, + "slug": "ishowu", + "name": "iShowU", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085044" + ], + "created_at": "2026-07-10T10:12:41.389191", + "updated_at": "2026-07-10T10:12:41.389191", + "url": "/v1/software/ishowu" +} diff --git a/site/public/v1/software/isilo/index.json b/site/public/v1/software/isilo/index.json new file mode 100644 index 000000000000..b0758aeddb6a --- /dev/null +++ b/site/public/v1/software/isilo/index.json @@ -0,0 +1,19 @@ +{ + "id": 4773, + "slug": "isilo", + "name": "iSilo", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16254837" + ], + "created_at": "2026-07-10T10:12:41.389191", + "updated_at": "2026-07-10T10:12:41.389191", + "url": "/v1/software/isilo" +} diff --git a/site/public/v1/software/isimotor/index.json b/site/public/v1/software/isimotor/index.json new file mode 100644 index 000000000000..64da67a55ed0 --- /dev/null +++ b/site/public/v1/software/isimotor/index.json @@ -0,0 +1,19 @@ +{ + "id": 4774, + "slug": "isimotor", + "name": "isiMotor", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5974002" + ], + "created_at": "2026-07-10T10:12:41.389191", + "updated_at": "2026-07-10T10:12:41.389191", + "url": "/v1/software/isimotor" +} diff --git a/site/public/v1/software/isis-draw/index.json b/site/public/v1/software/isis-draw/index.json new file mode 100644 index 000000000000..460a562257f0 --- /dev/null +++ b/site/public/v1/software/isis-draw/index.json @@ -0,0 +1,21 @@ +{ + "id": 4775, + "slug": "isis-draw", + "name": "ISIS/Draw", + "release_date": null, + "developers": [ + "MDL Information Systems" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3146897" + ], + "created_at": "2026-07-10T10:12:41.390259", + "updated_at": "2026-07-10T10:12:41.390259", + "url": "/v1/software/isis-draw" +} diff --git a/site/public/v1/software/islam-360/index.json b/site/public/v1/software/islam-360/index.json new file mode 100644 index 000000000000..af2fb0f2afa0 --- /dev/null +++ b/site/public/v1/software/islam-360/index.json @@ -0,0 +1,28 @@ +{ + "id": 4776, + "slug": "islam-360", + "name": "Islam 360", + "release_date": "2015-06-29", + "developers": [ + "Zahid Hussain Chihpa" + ], + "publishers": [ + "Zahid Hussain Chihpa" + ], + "operating_systems": [ + "iOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q92914468" + ], + "created_at": "2026-07-10T10:12:41.390259", + "updated_at": "2026-07-10T10:12:41.390259", + "url": "/v1/software/islam-360" +} diff --git a/site/public/v1/software/isobuster/index.json b/site/public/v1/software/isobuster/index.json new file mode 100644 index 000000000000..a2cfafdd1045 --- /dev/null +++ b/site/public/v1/software/isobuster/index.json @@ -0,0 +1,23 @@ +{ + "id": 4777, + "slug": "isobuster", + "name": "IsoBuster", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Windows 11", + "Windows Server 2003", + "Windows 7" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q304733" + ], + "created_at": "2026-07-10T10:12:41.390259", + "updated_at": "2026-07-10T10:12:41.390259", + "url": "/v1/software/isobuster" +} diff --git a/site/public/v1/software/isodraft/index.json b/site/public/v1/software/isodraft/index.json new file mode 100644 index 000000000000..e08a5a558ce9 --- /dev/null +++ b/site/public/v1/software/isodraft/index.json @@ -0,0 +1,19 @@ +{ + "id": 4778, + "slug": "isodraft", + "name": "ISODraft", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139849278" + ], + "created_at": "2026-07-10T10:12:41.390259", + "updated_at": "2026-07-10T10:12:41.390259", + "url": "/v1/software/isodraft" +} diff --git a/site/public/v1/software/ispc/index.json b/site/public/v1/software/ispc/index.json new file mode 100644 index 000000000000..38e961085f45 --- /dev/null +++ b/site/public/v1/software/ispc/index.json @@ -0,0 +1,23 @@ +{ + "id": 4779, + "slug": "ispc", + "name": "ispc", + "release_date": null, + "developers": [ + "Intel" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "3-clause BSD License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974954" + ], + "created_at": "2026-07-10T10:12:41.391259", + "updated_at": "2026-07-10T10:12:41.391259", + "url": "/v1/software/ispc" +} diff --git a/site/public/v1/software/ispcp/index.json b/site/public/v1/software/ispcp/index.json new file mode 100644 index 000000000000..e9754d4b1535 --- /dev/null +++ b/site/public/v1/software/ispcp/index.json @@ -0,0 +1,22 @@ +{ + "id": 4780, + "slug": "ispcp", + "name": "IspCP", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Mozilla Public License", + "GNU General Public License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q310711" + ], + "created_at": "2026-07-10T10:12:41.391259", + "updated_at": "2026-07-10T10:12:41.391259", + "url": "/v1/software/ispcp" +} diff --git a/site/public/v1/software/ispy/index.json b/site/public/v1/software/ispy/index.json new file mode 100644 index 000000000000..6e3c0d28682f --- /dev/null +++ b/site/public/v1/software/ispy/index.json @@ -0,0 +1,19 @@ +{ + "id": 4781, + "slug": "ispy", + "name": "iSpy", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q56314831" + ], + "created_at": "2026-07-10T10:12:41.391259", + "updated_at": "2026-07-10T10:12:41.391259", + "url": "/v1/software/ispy" +} diff --git a/site/public/v1/software/issp-galaxy-classifier/index.json b/site/public/v1/software/issp-galaxy-classifier/index.json new file mode 100644 index 000000000000..3a35ea874b70 --- /dev/null +++ b/site/public/v1/software/issp-galaxy-classifier/index.json @@ -0,0 +1,23 @@ +{ + "id": 4782, + "slug": "issp-galaxy-classifier", + "name": "ISSP Galaxy Classifier", + "release_date": null, + "developers": [ + "Andrey Sergeevich Murdasov" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Python" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138037922" + ], + "created_at": "2026-07-10T10:12:41.392257", + "updated_at": "2026-07-10T10:12:41.392257", + "url": "/v1/software/issp-galaxy-classifier" +} diff --git a/site/public/v1/software/issue-discovery/index.json b/site/public/v1/software/issue-discovery/index.json new file mode 100644 index 000000000000..d04479818dbb --- /dev/null +++ b/site/public/v1/software/issue-discovery/index.json @@ -0,0 +1,19 @@ +{ + "id": 4783, + "slug": "issue-discovery", + "name": "Issue Discovery", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085046" + ], + "created_at": "2026-07-10T10:12:41.392257", + "updated_at": "2026-07-10T10:12:41.392257", + "url": "/v1/software/issue-discovery" +} diff --git a/site/public/v1/software/issuecrawler/index.json b/site/public/v1/software/issuecrawler/index.json new file mode 100644 index 000000000000..69424fbbe2f0 --- /dev/null +++ b/site/public/v1/software/issuecrawler/index.json @@ -0,0 +1,19 @@ +{ + "id": 4784, + "slug": "issuecrawler", + "name": "Issuecrawler", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085045" + ], + "created_at": "2026-07-10T10:12:41.392257", + "updated_at": "2026-07-10T10:12:41.392257", + "url": "/v1/software/issuecrawler" +} diff --git a/site/public/v1/software/issuelab/index.json b/site/public/v1/software/issuelab/index.json new file mode 100644 index 000000000000..984712974375 --- /dev/null +++ b/site/public/v1/software/issuelab/index.json @@ -0,0 +1,19 @@ +{ + "id": 4785, + "slug": "issuelab", + "name": "IssueLab", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085048" + ], + "created_at": "2026-07-10T10:12:41.393258", + "updated_at": "2026-07-10T10:12:41.393258", + "url": "/v1/software/issuelab" +} diff --git a/site/public/v1/software/istudio-publisher/index.json b/site/public/v1/software/istudio-publisher/index.json new file mode 100644 index 000000000000..3ecf18e8602d --- /dev/null +++ b/site/public/v1/software/istudio-publisher/index.json @@ -0,0 +1,19 @@ +{ + "id": 4786, + "slug": "istudio-publisher", + "name": "IStudio Publisher", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5974678" + ], + "created_at": "2026-07-10T10:12:41.393258", + "updated_at": "2026-07-10T10:12:41.393258", + "url": "/v1/software/istudio-publisher" +} diff --git a/site/public/v1/software/istumbler/index.json b/site/public/v1/software/istumbler/index.json new file mode 100644 index 000000000000..f8c5221e6417 --- /dev/null +++ b/site/public/v1/software/istumbler/index.json @@ -0,0 +1,19 @@ +{ + "id": 4787, + "slug": "istumbler", + "name": "iStumbler", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q291017" + ], + "created_at": "2026-07-10T10:12:41.393258", + "updated_at": "2026-07-10T10:12:41.393258", + "url": "/v1/software/istumbler" +} diff --git a/site/public/v1/software/isyvmon/index.json b/site/public/v1/software/isyvmon/index.json new file mode 100644 index 000000000000..b1cbf92535a6 --- /dev/null +++ b/site/public/v1/software/isyvmon/index.json @@ -0,0 +1,19 @@ +{ + "id": 4788, + "slug": "isyvmon", + "name": "Isyvmon", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6089581" + ], + "created_at": "2026-07-10T10:12:41.394275", + "updated_at": "2026-07-10T10:12:41.394275", + "url": "/v1/software/isyvmon" +} diff --git a/site/public/v1/software/itecad/index.json b/site/public/v1/software/itecad/index.json new file mode 100644 index 000000000000..bade898675f1 --- /dev/null +++ b/site/public/v1/software/itecad/index.json @@ -0,0 +1,19 @@ +{ + "id": 4789, + "slug": "itecad", + "name": "Itecad", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3612053" + ], + "created_at": "2026-07-10T10:12:41.394275", + "updated_at": "2026-07-10T10:12:41.394275", + "url": "/v1/software/itecad" +} diff --git a/site/public/v1/software/itemis-analyze/index.json b/site/public/v1/software/itemis-analyze/index.json new file mode 100644 index 000000000000..99694eea9309 --- /dev/null +++ b/site/public/v1/software/itemis-analyze/index.json @@ -0,0 +1,24 @@ +{ + "id": 4790, + "slug": "itemis-analyze", + "name": "Itemis Analyze", + "release_date": "2012-01-01", + "developers": [ + "itemis" + ], + "publishers": [], + "operating_systems": [ + "Mac operating system", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136471477" + ], + "created_at": "2026-07-10T10:12:41.394275", + "updated_at": "2026-07-10T10:12:41.394275", + "url": "/v1/software/itemis-analyze" +} diff --git a/site/public/v1/software/iterative-template-library/index.json b/site/public/v1/software/iterative-template-library/index.json new file mode 100644 index 000000000000..52ebb67c7046 --- /dev/null +++ b/site/public/v1/software/iterative-template-library/index.json @@ -0,0 +1,19 @@ +{ + "id": 4791, + "slug": "iterative-template-library", + "name": "Iterative Template Library", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6094408" + ], + "created_at": "2026-07-10T10:12:41.395255", + "updated_at": "2026-07-10T10:12:41.395255", + "url": "/v1/software/iterative-template-library" +} diff --git a/site/public/v1/software/itex2mml/index.json b/site/public/v1/software/itex2mml/index.json new file mode 100644 index 000000000000..ac4c84be4a81 --- /dev/null +++ b/site/public/v1/software/itex2mml/index.json @@ -0,0 +1,19 @@ +{ + "id": 4792, + "slug": "itex2mml", + "name": "itex2mml", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065044" + ], + "created_at": "2026-07-10T10:12:41.395255", + "updated_at": "2026-07-10T10:12:41.395255", + "url": "/v1/software/itex2mml" +} diff --git a/site/public/v1/software/itunes-connect/index.json b/site/public/v1/software/itunes-connect/index.json new file mode 100644 index 000000000000..35eb8f73d528 --- /dev/null +++ b/site/public/v1/software/itunes-connect/index.json @@ -0,0 +1,19 @@ +{ + "id": 4793, + "slug": "itunes-connect", + "name": "iTunes Connect", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16973301" + ], + "created_at": "2026-07-10T10:12:41.395255", + "updated_at": "2026-07-10T10:12:41.395255", + "url": "/v1/software/itunes-connect" +} diff --git a/site/public/v1/software/itunes-lp/index.json b/site/public/v1/software/itunes-lp/index.json new file mode 100644 index 000000000000..a33b99221d33 --- /dev/null +++ b/site/public/v1/software/itunes-lp/index.json @@ -0,0 +1,21 @@ +{ + "id": 4794, + "slug": "itunes-lp", + "name": "iTunes LP", + "release_date": "2009-01-01", + "developers": [ + "Apple Inc." + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1946001" + ], + "created_at": "2026-07-10T10:12:41.396190", + "updated_at": "2026-07-10T10:12:41.396190", + "url": "/v1/software/itunes-lp" +} diff --git a/site/public/v1/software/itunescyrfix/index.json b/site/public/v1/software/itunescyrfix/index.json new file mode 100644 index 000000000000..bf87ae9b671b --- /dev/null +++ b/site/public/v1/software/itunescyrfix/index.json @@ -0,0 +1,19 @@ +{ + "id": 4795, + "slug": "itunescyrfix", + "name": "iTunesCyrFix", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085049" + ], + "created_at": "2026-07-10T10:12:41.396190", + "updated_at": "2026-07-10T10:12:41.396190", + "url": "/v1/software/itunescyrfix" +} diff --git a/site/public/v1/software/itvx/index.json b/site/public/v1/software/itvx/index.json new file mode 100644 index 000000000000..c915525f6d7a --- /dev/null +++ b/site/public/v1/software/itvx/index.json @@ -0,0 +1,23 @@ +{ + "id": 4796, + "slug": "itvx", + "name": "ITVX", + "release_date": "2008-12-05", + "developers": [ + "ITV plc" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5975124" + ], + "created_at": "2026-07-10T10:12:41.396190", + "updated_at": "2026-07-10T10:12:41.396190", + "url": "/v1/software/itvx" +} diff --git a/site/public/v1/software/iuclid/index.json b/site/public/v1/software/iuclid/index.json new file mode 100644 index 000000000000..87b6518155f6 --- /dev/null +++ b/site/public/v1/software/iuclid/index.json @@ -0,0 +1,21 @@ +{ + "id": 4797, + "slug": "iuclid", + "name": "IUCLID", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q726956" + ], + "created_at": "2026-07-10T10:12:41.396190", + "updated_at": "2026-07-10T10:12:41.396190", + "url": "/v1/software/iuclid" +} diff --git a/site/public/v1/software/iusask/index.json b/site/public/v1/software/iusask/index.json new file mode 100644 index 000000000000..a3f6e040be49 --- /dev/null +++ b/site/public/v1/software/iusask/index.json @@ -0,0 +1,19 @@ +{ + "id": 4798, + "slug": "iusask", + "name": "iUsask", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22097441" + ], + "created_at": "2026-07-10T10:12:41.397266", + "updated_at": "2026-07-10T10:12:41.397266", + "url": "/v1/software/iusask" +} diff --git a/site/public/v1/software/ivocaloid/index.json b/site/public/v1/software/ivocaloid/index.json new file mode 100644 index 000000000000..ed3e9b223c6d --- /dev/null +++ b/site/public/v1/software/ivocaloid/index.json @@ -0,0 +1,19 @@ +{ + "id": 4799, + "slug": "ivocaloid", + "name": "IVocaloid", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22905937" + ], + "created_at": "2026-07-10T10:12:41.397266", + "updated_at": "2026-07-10T10:12:41.397266", + "url": "/v1/software/ivocaloid" +} diff --git a/site/public/v1/software/ivona/index.json b/site/public/v1/software/ivona/index.json new file mode 100644 index 000000000000..19ef006a0f02 --- /dev/null +++ b/site/public/v1/software/ivona/index.json @@ -0,0 +1,19 @@ +{ + "id": 4800, + "slug": "ivona", + "name": "IVONA", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5975496" + ], + "created_at": "2026-07-10T10:12:41.398320", + "updated_at": "2026-07-10T10:12:41.398320", + "url": "/v1/software/ivona" +} diff --git a/site/public/v1/software/ivpn/index.json b/site/public/v1/software/ivpn/index.json new file mode 100644 index 000000000000..6f1ab2582404 --- /dev/null +++ b/site/public/v1/software/ivpn/index.json @@ -0,0 +1,19 @@ +{ + "id": 4801, + "slug": "ivpn", + "name": "IVPN", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q55614199" + ], + "created_at": "2026-07-10T10:12:41.398320", + "updated_at": "2026-07-10T10:12:41.398320", + "url": "/v1/software/ivpn" +} diff --git a/site/public/v1/software/iwebdevelopment/index.json b/site/public/v1/software/iwebdevelopment/index.json new file mode 100644 index 000000000000..d0763b4adc3a --- /dev/null +++ b/site/public/v1/software/iwebdevelopment/index.json @@ -0,0 +1,19 @@ +{ + "id": 4802, + "slug": "iwebdevelopment", + "name": "iWebDevelopment", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140169682" + ], + "created_at": "2026-07-10T10:12:41.398320", + "updated_at": "2026-07-10T10:12:41.398320", + "url": "/v1/software/iwebdevelopment" +} diff --git a/site/public/v1/software/iwrite/index.json b/site/public/v1/software/iwrite/index.json new file mode 100644 index 000000000000..c32bf4fbaad1 --- /dev/null +++ b/site/public/v1/software/iwrite/index.json @@ -0,0 +1,19 @@ +{ + "id": 4803, + "slug": "iwrite", + "name": "iWrite", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085050" + ], + "created_at": "2026-07-10T10:12:41.399275", + "updated_at": "2026-07-10T10:12:41.399275", + "url": "/v1/software/iwrite" +} diff --git a/site/public/v1/software/ixi-software/index.json b/site/public/v1/software/ixi-software/index.json new file mode 100644 index 000000000000..cf7403457f4c --- /dev/null +++ b/site/public/v1/software/ixi-software/index.json @@ -0,0 +1,21 @@ +{ + "id": 4804, + "slug": "ixi-software", + "name": "Ixi software", + "release_date": null, + "developers": [ + "Ixi software" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6101075" + ], + "created_at": "2026-07-10T10:12:41.399275", + "updated_at": "2026-07-10T10:12:41.399275", + "url": "/v1/software/ixi-software" +} diff --git a/site/public/v1/software/ixiquarks/index.json b/site/public/v1/software/ixiquarks/index.json new file mode 100644 index 000000000000..c607ae83234b --- /dev/null +++ b/site/public/v1/software/ixiquarks/index.json @@ -0,0 +1,21 @@ +{ + "id": 4805, + "slug": "ixiquarks", + "name": "IxiQuarks", + "release_date": null, + "developers": [ + "Ixi software" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6101078" + ], + "created_at": "2026-07-10T10:12:41.399275", + "updated_at": "2026-07-10T10:12:41.399275", + "url": "/v1/software/ixiquarks" +} diff --git a/site/public/v1/software/iyouit/index.json b/site/public/v1/software/iyouit/index.json new file mode 100644 index 000000000000..0ae0215e253d --- /dev/null +++ b/site/public/v1/software/iyouit/index.json @@ -0,0 +1,21 @@ +{ + "id": 4806, + "slug": "iyouit", + "name": "IYOUIT", + "release_date": "2008-06-26", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Python" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5975748" + ], + "created_at": "2026-07-10T10:12:41.400274", + "updated_at": "2026-07-10T10:12:41.400274", + "url": "/v1/software/iyouit" +} diff --git a/site/public/v1/software/izpack/index.json b/site/public/v1/software/izpack/index.json new file mode 100644 index 000000000000..c2579cad779c --- /dev/null +++ b/site/public/v1/software/izpack/index.json @@ -0,0 +1,21 @@ +{ + "id": 4807, + "slug": "izpack", + "name": "IZPack", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Java" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3156444" + ], + "created_at": "2026-07-10T10:12:41.400274", + "updated_at": "2026-07-10T10:12:41.400274", + "url": "/v1/software/izpack" +} diff --git a/site/public/v1/software/j-pilot/index.json b/site/public/v1/software/j-pilot/index.json new file mode 100644 index 000000000000..a4023f4b7a36 --- /dev/null +++ b/site/public/v1/software/j-pilot/index.json @@ -0,0 +1,23 @@ +{ + "id": 4808, + "slug": "j-pilot", + "name": "J-Pilot", + "release_date": "1999-06-23", + "developers": [], + "publishers": [], + "operating_systems": [ + "Unix-like operating system" + ], + "programming_languages": [ + "GTK" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6103769" + ], + "created_at": "2026-07-10T10:12:41.400274", + "updated_at": "2026-07-10T10:12:41.400274", + "url": "/v1/software/j-pilot" +} diff --git a/site/public/v1/software/j-xfs/index.json b/site/public/v1/software/j-xfs/index.json new file mode 100644 index 000000000000..44baf05e1f6b --- /dev/null +++ b/site/public/v1/software/j-xfs/index.json @@ -0,0 +1,19 @@ +{ + "id": 4809, + "slug": "j-xfs", + "name": "J/XFS", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6107530" + ], + "created_at": "2026-07-10T10:12:41.401270", + "updated_at": "2026-07-10T10:12:41.401270", + "url": "/v1/software/j-xfs" +} diff --git a/site/public/v1/software/jaamsim/index.json b/site/public/v1/software/jaamsim/index.json new file mode 100644 index 000000000000..5ebc7f4c235c --- /dev/null +++ b/site/public/v1/software/jaamsim/index.json @@ -0,0 +1,19 @@ +{ + "id": 4810, + "slug": "jaamsim", + "name": "JaamSim", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131345358" + ], + "created_at": "2026-07-10T10:12:41.401270", + "updated_at": "2026-07-10T10:12:41.401270", + "url": "/v1/software/jaamsim" +} diff --git a/site/public/v1/software/jabra-direct/index.json b/site/public/v1/software/jabra-direct/index.json new file mode 100644 index 000000000000..aa24379927cf --- /dev/null +++ b/site/public/v1/software/jabra-direct/index.json @@ -0,0 +1,19 @@ +{ + "id": 4811, + "slug": "jabra-direct", + "name": "Jabra Direct", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111758779" + ], + "created_at": "2026-07-10T10:12:41.401270", + "updated_at": "2026-07-10T10:12:41.401270", + "url": "/v1/software/jabra-direct" +} diff --git a/site/public/v1/software/jack-intelligent-agents/index.json b/site/public/v1/software/jack-intelligent-agents/index.json new file mode 100644 index 000000000000..4ad767caf105 --- /dev/null +++ b/site/public/v1/software/jack-intelligent-agents/index.json @@ -0,0 +1,21 @@ +{ + "id": 4812, + "slug": "jack-intelligent-agents", + "name": "JACK Intelligent Agents", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Java" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17092798" + ], + "created_at": "2026-07-10T10:12:41.402264", + "updated_at": "2026-07-10T10:12:41.402264", + "url": "/v1/software/jack-intelligent-agents" +} diff --git a/site/public/v1/software/jack-q6110904/index.json b/site/public/v1/software/jack-q6110904/index.json new file mode 100644 index 000000000000..0cc6921b6a61 --- /dev/null +++ b/site/public/v1/software/jack-q6110904/index.json @@ -0,0 +1,19 @@ +{ + "id": 4813, + "slug": "jack-q6110904", + "name": "Jack", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6110904" + ], + "created_at": "2026-07-10T10:12:41.402264", + "updated_at": "2026-07-10T10:12:41.402264", + "url": "/v1/software/jack-q6110904" +} diff --git a/site/public/v1/software/jack/index.json b/site/public/v1/software/jack/index.json new file mode 100644 index 000000000000..ae799aef1d88 --- /dev/null +++ b/site/public/v1/software/jack/index.json @@ -0,0 +1,21 @@ +{ + "id": 4814, + "slug": "jack", + "name": "Jack", + "release_date": null, + "developers": [ + "UGS Corp." + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4041759" + ], + "created_at": "2026-07-10T10:12:41.402264", + "updated_at": "2026-07-10T10:12:41.402264", + "url": "/v1/software/jack" +} diff --git a/site/public/v1/software/jacket/index.json b/site/public/v1/software/jacket/index.json new file mode 100644 index 000000000000..e525adc31fb4 --- /dev/null +++ b/site/public/v1/software/jacket/index.json @@ -0,0 +1,19 @@ +{ + "id": 4815, + "slug": "jacket", + "name": "Jacket", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6116131" + ], + "created_at": "2026-07-10T10:12:41.402264", + "updated_at": "2026-07-10T10:12:41.402264", + "url": "/v1/software/jacket" +} diff --git a/site/public/v1/software/jacorb/index.json b/site/public/v1/software/jacorb/index.json new file mode 100644 index 000000000000..01f83b16bde2 --- /dev/null +++ b/site/public/v1/software/jacorb/index.json @@ -0,0 +1,19 @@ +{ + "id": 4816, + "slug": "jacorb", + "name": "JacORB", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6004242" + ], + "created_at": "2026-07-10T10:12:41.403319", + "updated_at": "2026-07-10T10:12:41.403319", + "url": "/v1/software/jacorb" +} diff --git a/site/public/v1/software/jad/index.json b/site/public/v1/software/jad/index.json new file mode 100644 index 000000000000..e725020ef2f7 --- /dev/null +++ b/site/public/v1/software/jad/index.json @@ -0,0 +1,19 @@ +{ + "id": 4817, + "slug": "jad", + "name": "JAD", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1678165" + ], + "created_at": "2026-07-10T10:12:41.403319", + "updated_at": "2026-07-10T10:12:41.403319", + "url": "/v1/software/jad" +} diff --git a/site/public/v1/software/jaeger/index.json b/site/public/v1/software/jaeger/index.json new file mode 100644 index 000000000000..efbdca2f22a4 --- /dev/null +++ b/site/public/v1/software/jaeger/index.json @@ -0,0 +1,21 @@ +{ + "id": 4818, + "slug": "jaeger", + "name": "Jaeger", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Apache Software License 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q98799449" + ], + "created_at": "2026-07-10T10:12:41.404286", + "updated_at": "2026-07-10T10:12:41.404286", + "url": "/v1/software/jaeger" +} diff --git a/site/public/v1/software/jailbreakme/index.json b/site/public/v1/software/jailbreakme/index.json new file mode 100644 index 000000000000..02c695469adc --- /dev/null +++ b/site/public/v1/software/jailbreakme/index.json @@ -0,0 +1,21 @@ +{ + "id": 4819, + "slug": "jailbreakme", + "name": "JailbreakMe", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3160556" + ], + "created_at": "2026-07-10T10:12:41.404286", + "updated_at": "2026-07-10T10:12:41.404286", + "url": "/v1/software/jailbreakme" +} diff --git a/site/public/v1/software/jajah/index.json b/site/public/v1/software/jajah/index.json new file mode 100644 index 000000000000..ae6bc11d17b8 --- /dev/null +++ b/site/public/v1/software/jajah/index.json @@ -0,0 +1,19 @@ +{ + "id": 4820, + "slug": "jajah", + "name": "Jajah", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1678793" + ], + "created_at": "2026-07-10T10:12:41.404286", + "updated_at": "2026-07-10T10:12:41.404286", + "url": "/v1/software/jajah" +} diff --git a/site/public/v1/software/jakarta-batch/index.json b/site/public/v1/software/jakarta-batch/index.json new file mode 100644 index 000000000000..47df82845c13 --- /dev/null +++ b/site/public/v1/software/jakarta-batch/index.json @@ -0,0 +1,19 @@ +{ + "id": 4821, + "slug": "jakarta-batch", + "name": "Jakarta Batch", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76174522" + ], + "created_at": "2026-07-10T10:12:41.405263", + "updated_at": "2026-07-10T10:12:41.405263", + "url": "/v1/software/jakarta-batch" +} diff --git a/site/public/v1/software/jakarta-bean-validation/index.json b/site/public/v1/software/jakarta-bean-validation/index.json new file mode 100644 index 000000000000..a60321651693 --- /dev/null +++ b/site/public/v1/software/jakarta-bean-validation/index.json @@ -0,0 +1,19 @@ +{ + "id": 4822, + "slug": "jakarta-bean-validation", + "name": "Jakarta Bean Validation", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76168793" + ], + "created_at": "2026-07-10T10:12:41.405263", + "updated_at": "2026-07-10T10:12:41.405263", + "url": "/v1/software/jakarta-bean-validation" +} diff --git a/site/public/v1/software/jakarta-connectors/index.json b/site/public/v1/software/jakarta-connectors/index.json new file mode 100644 index 000000000000..1f245d3f932a --- /dev/null +++ b/site/public/v1/software/jakarta-connectors/index.json @@ -0,0 +1,24 @@ +{ + "id": 4823, + "slug": "jakarta-connectors", + "name": "Jakarta Connectors", + "release_date": null, + "developers": [ + "Eclipse Foundation" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Eclipse Public License 2.0", + "GPL linking exception" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q429157" + ], + "created_at": "2026-07-10T10:12:41.405263", + "updated_at": "2026-07-10T10:12:41.405263", + "url": "/v1/software/jakarta-connectors" +} diff --git a/site/public/v1/software/jalview/index.json b/site/public/v1/software/jalview/index.json new file mode 100644 index 000000000000..f3ca3f7fe9ee --- /dev/null +++ b/site/public/v1/software/jalview/index.json @@ -0,0 +1,22 @@ +{ + "id": 4824, + "slug": "jalview", + "name": "Jalview", + "release_date": null, + "developers": [ + "James Cuff", + "Andrew Waterhouse" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6127008" + ], + "created_at": "2026-07-10T10:12:41.406197", + "updated_at": "2026-07-10T10:12:41.406197", + "url": "/v1/software/jalview" +} diff --git a/site/public/v1/software/jam-py/index.json b/site/public/v1/software/jam-py/index.json new file mode 100644 index 000000000000..1560bb0b6d63 --- /dev/null +++ b/site/public/v1/software/jam-py/index.json @@ -0,0 +1,23 @@ +{ + "id": 4825, + "slug": "jam-py", + "name": "Jam.py", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Python" + ], + "licenses": [ + "3-clause BSD License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q97359958" + ], + "created_at": "2026-07-10T10:12:41.406197", + "updated_at": "2026-07-10T10:12:41.406197", + "url": "/v1/software/jam-py" +} diff --git a/site/public/v1/software/jam2jam/index.json b/site/public/v1/software/jam2jam/index.json new file mode 100644 index 000000000000..63b8eae7aaad --- /dev/null +++ b/site/public/v1/software/jam2jam/index.json @@ -0,0 +1,19 @@ +{ + "id": 4826, + "slug": "jam2jam", + "name": "Jam2jam", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6127028" + ], + "created_at": "2026-07-10T10:12:41.406197", + "updated_at": "2026-07-10T10:12:41.406197", + "url": "/v1/software/jam2jam" +} diff --git a/site/public/v1/software/jama/index.json b/site/public/v1/software/jama/index.json new file mode 100644 index 000000000000..61ec5aef956f --- /dev/null +++ b/site/public/v1/software/jama/index.json @@ -0,0 +1,21 @@ +{ + "id": 4827, + "slug": "jama", + "name": "JAMA", + "release_date": "1998-01-01", + "developers": [ + "National Institute of Standards and Technology" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4041712" + ], + "created_at": "2026-07-10T10:12:41.406197", + "updated_at": "2026-07-10T10:12:41.406197", + "url": "/v1/software/jama" +} diff --git a/site/public/v1/software/jamaicavm/index.json b/site/public/v1/software/jamaicavm/index.json new file mode 100644 index 000000000000..9a194271ec85 --- /dev/null +++ b/site/public/v1/software/jamaicavm/index.json @@ -0,0 +1,19 @@ +{ + "id": 4828, + "slug": "jamaicavm", + "name": "JamaicaVM", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4041778" + ], + "created_at": "2026-07-10T10:12:41.407196", + "updated_at": "2026-07-10T10:12:41.407196", + "url": "/v1/software/jamaicavm" +} diff --git a/site/public/v1/software/jamin/index.json b/site/public/v1/software/jamin/index.json new file mode 100644 index 000000000000..2bdcd32815cc --- /dev/null +++ b/site/public/v1/software/jamin/index.json @@ -0,0 +1,19 @@ +{ + "id": 4829, + "slug": "jamin", + "name": "JAMin", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16580384" + ], + "created_at": "2026-07-10T10:12:41.407196", + "updated_at": "2026-07-10T10:12:41.407196", + "url": "/v1/software/jamin" +} diff --git a/site/public/v1/software/jamkazam/index.json b/site/public/v1/software/jamkazam/index.json new file mode 100644 index 000000000000..029521f60620 --- /dev/null +++ b/site/public/v1/software/jamkazam/index.json @@ -0,0 +1,19 @@ +{ + "id": 4830, + "slug": "jamkazam", + "name": "JamKazam", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105043799" + ], + "created_at": "2026-07-10T10:12:41.408200", + "updated_at": "2026-07-10T10:12:41.408200", + "url": "/v1/software/jamkazam" +} diff --git a/site/public/v1/software/jamovi/index.json b/site/public/v1/software/jamovi/index.json new file mode 100644 index 000000000000..9958e82f5ba4 --- /dev/null +++ b/site/public/v1/software/jamovi/index.json @@ -0,0 +1,25 @@ +{ + "id": 4831, + "slug": "jamovi", + "name": "Jamovi", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "ChromeOS", + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "GNU General Public License, version 2.0 or later" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q29364618" + ], + "created_at": "2026-07-10T10:12:41.408200", + "updated_at": "2026-07-10T10:12:41.408200", + "url": "/v1/software/jamovi" +} diff --git a/site/public/v1/software/jamp/index.json b/site/public/v1/software/jamp/index.json new file mode 100644 index 000000000000..bb6c1b6adf51 --- /dev/null +++ b/site/public/v1/software/jamp/index.json @@ -0,0 +1,21 @@ +{ + "id": 4832, + "slug": "jamp", + "name": "JAMP", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "PHP" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3805166" + ], + "created_at": "2026-07-10T10:12:41.408200", + "updated_at": "2026-07-10T10:12:41.408200", + "url": "/v1/software/jamp" +} diff --git a/site/public/v1/software/jamstix/index.json b/site/public/v1/software/jamstix/index.json new file mode 100644 index 000000000000..94b809960ac4 --- /dev/null +++ b/site/public/v1/software/jamstix/index.json @@ -0,0 +1,19 @@ +{ + "id": 4833, + "slug": "jamstix", + "name": "Jamstix", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6148272" + ], + "created_at": "2026-07-10T10:12:41.408200", + "updated_at": "2026-07-10T10:12:41.408200", + "url": "/v1/software/jamstix" +} diff --git a/site/public/v1/software/jamulus/index.json b/site/public/v1/software/jamulus/index.json new file mode 100644 index 000000000000..137ee5c223ce --- /dev/null +++ b/site/public/v1/software/jamulus/index.json @@ -0,0 +1,21 @@ +{ + "id": 4834, + "slug": "jamulus", + "name": "Jamulus", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "GNU General Public License, version 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q104864926" + ], + "created_at": "2026-07-10T10:12:41.409295", + "updated_at": "2026-07-10T10:12:41.409295", + "url": "/v1/software/jamulus" +} diff --git a/site/public/v1/software/jane/index.json b/site/public/v1/software/jane/index.json new file mode 100644 index 000000000000..91ff13173d2e --- /dev/null +++ b/site/public/v1/software/jane/index.json @@ -0,0 +1,19 @@ +{ + "id": 4835, + "slug": "jane", + "name": "Jane", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6151062" + ], + "created_at": "2026-07-10T10:12:41.409295", + "updated_at": "2026-07-10T10:12:41.409295", + "url": "/v1/software/jane" +} diff --git a/site/public/v1/software/janggi-dosa/index.json b/site/public/v1/software/janggi-dosa/index.json new file mode 100644 index 000000000000..cb121a6c783b --- /dev/null +++ b/site/public/v1/software/janggi-dosa/index.json @@ -0,0 +1,19 @@ +{ + "id": 4836, + "slug": "janggi-dosa", + "name": "Janggi Dosa", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q12614360" + ], + "created_at": "2026-07-10T10:12:41.409295", + "updated_at": "2026-07-10T10:12:41.409295", + "url": "/v1/software/janggi-dosa" +} diff --git a/site/public/v1/software/janitor/index.json b/site/public/v1/software/janitor/index.json new file mode 100644 index 000000000000..33f2ac38cec0 --- /dev/null +++ b/site/public/v1/software/janitor/index.json @@ -0,0 +1,21 @@ +{ + "id": 4837, + "slug": "janitor", + "name": "Janitor", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q12023490" + ], + "created_at": "2026-07-10T10:12:41.410270", + "updated_at": "2026-07-10T10:12:41.410270", + "url": "/v1/software/janitor" +} diff --git a/site/public/v1/software/janium/index.json b/site/public/v1/software/janium/index.json new file mode 100644 index 000000000000..ee412602328b --- /dev/null +++ b/site/public/v1/software/janium/index.json @@ -0,0 +1,22 @@ +{ + "id": 4838, + "slug": "janium", + "name": "Janium", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q104761753" + ], + "created_at": "2026-07-10T10:12:41.410270", + "updated_at": "2026-07-10T10:12:41.410270", + "url": "/v1/software/janium" +} diff --git a/site/public/v1/software/janus-recognition-toolkit-jrtk/index.json b/site/public/v1/software/janus-recognition-toolkit-jrtk/index.json new file mode 100644 index 000000000000..8617d51a5f54 --- /dev/null +++ b/site/public/v1/software/janus-recognition-toolkit-jrtk/index.json @@ -0,0 +1,19 @@ +{ + "id": 4839, + "slug": "janus-recognition-toolkit-jrtk", + "name": "Janus Recognition Toolkit (JRTk)", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q15093247" + ], + "created_at": "2026-07-10T10:12:41.410270", + "updated_at": "2026-07-10T10:12:41.410270", + "url": "/v1/software/janus-recognition-toolkit-jrtk" +} diff --git a/site/public/v1/software/jaos/index.json b/site/public/v1/software/jaos/index.json new file mode 100644 index 000000000000..fe7e81532761 --- /dev/null +++ b/site/public/v1/software/jaos/index.json @@ -0,0 +1,19 @@ +{ + "id": 4840, + "slug": "jaos", + "name": "Jaos", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4041792" + ], + "created_at": "2026-07-10T10:12:41.410270", + "updated_at": "2026-07-10T10:12:41.410270", + "url": "/v1/software/jaos" +} diff --git a/site/public/v1/software/jar/index.json b/site/public/v1/software/jar/index.json new file mode 100644 index 000000000000..8a2476901bc2 --- /dev/null +++ b/site/public/v1/software/jar/index.json @@ -0,0 +1,23 @@ +{ + "id": 4841, + "slug": "jar", + "name": "JAR", + "release_date": null, + "developers": [ + "Robert K. Jung" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4041710" + ], + "created_at": "2026-07-10T10:12:41.411292", + "updated_at": "2026-07-10T10:12:41.411292", + "url": "/v1/software/jar" +} diff --git a/site/public/v1/software/jarchitect/index.json b/site/public/v1/software/jarchitect/index.json new file mode 100644 index 000000000000..3b036c9735b1 --- /dev/null +++ b/site/public/v1/software/jarchitect/index.json @@ -0,0 +1,19 @@ +{ + "id": 4842, + "slug": "jarchitect", + "name": "JArchitect", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16255103" + ], + "created_at": "2026-07-10T10:12:41.411871", + "updated_at": "2026-07-10T10:12:41.411871", + "url": "/v1/software/jarchitect" +} diff --git a/site/public/v1/software/jarnal/index.json b/site/public/v1/software/jarnal/index.json new file mode 100644 index 000000000000..e0905e036b91 --- /dev/null +++ b/site/public/v1/software/jarnal/index.json @@ -0,0 +1,19 @@ +{ + "id": 4843, + "slug": "jarnal", + "name": "Jarnal", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085051" + ], + "created_at": "2026-07-10T10:12:41.411871", + "updated_at": "2026-07-10T10:12:41.411871", + "url": "/v1/software/jarnal" +} diff --git a/site/public/v1/software/jart/index.json b/site/public/v1/software/jart/index.json new file mode 100644 index 000000000000..c865f8c235d4 --- /dev/null +++ b/site/public/v1/software/jart/index.json @@ -0,0 +1,19 @@ +{ + "id": 4844, + "slug": "jart", + "name": "Jart", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138652426" + ], + "created_at": "2026-07-10T10:12:41.411871", + "updated_at": "2026-07-10T10:12:41.411871", + "url": "/v1/software/jart" +} diff --git a/site/public/v1/software/jarvis/index.json b/site/public/v1/software/jarvis/index.json new file mode 100644 index 000000000000..7d71a7ff36b9 --- /dev/null +++ b/site/public/v1/software/jarvis/index.json @@ -0,0 +1,21 @@ +{ + "id": 4845, + "slug": "jarvis", + "name": "JARVIS", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117449829" + ], + "created_at": "2026-07-10T10:12:41.411871", + "updated_at": "2026-07-10T10:12:41.411871", + "url": "/v1/software/jarvis" +} diff --git a/site/public/v1/software/jasper/index.json b/site/public/v1/software/jasper/index.json new file mode 100644 index 000000000000..aeea2ba6fc9f --- /dev/null +++ b/site/public/v1/software/jasper/index.json @@ -0,0 +1,21 @@ +{ + "id": 4846, + "slug": "jasper", + "name": "JasPer", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "JasPer License Version 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11723229" + ], + "created_at": "2026-07-10T10:12:41.412941", + "updated_at": "2026-07-10T10:12:41.412941", + "url": "/v1/software/jasper" +} diff --git a/site/public/v1/software/java-3d/index.json b/site/public/v1/software/java-3d/index.json new file mode 100644 index 000000000000..5f919eef3aed --- /dev/null +++ b/site/public/v1/software/java-3d/index.json @@ -0,0 +1,21 @@ +{ + "id": 4847, + "slug": "java-3d", + "name": "Java 3D", + "release_date": null, + "developers": [ + "Sun Microsystems" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q432365" + ], + "created_at": "2026-07-10T10:12:41.412941", + "updated_at": "2026-07-10T10:12:41.412941", + "url": "/v1/software/java-3d" +} diff --git a/site/public/v1/software/java-access-bridge/index.json b/site/public/v1/software/java-access-bridge/index.json new file mode 100644 index 000000000000..186f515e97ba --- /dev/null +++ b/site/public/v1/software/java-access-bridge/index.json @@ -0,0 +1,19 @@ +{ + "id": 4848, + "slug": "java-access-bridge", + "name": "Java Access Bridge", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16927977" + ], + "created_at": "2026-07-10T10:12:41.412941", + "updated_at": "2026-07-10T10:12:41.412941", + "url": "/v1/software/java-access-bridge" +} diff --git a/site/public/v1/software/java-advanced-imaging/index.json b/site/public/v1/software/java-advanced-imaging/index.json new file mode 100644 index 000000000000..36ea81576547 --- /dev/null +++ b/site/public/v1/software/java-advanced-imaging/index.json @@ -0,0 +1,25 @@ +{ + "id": 4849, + "slug": "java-advanced-imaging", + "name": "Java Advanced Imaging", + "release_date": null, + "developers": [ + "Oracle Corporation" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Java" + ], + "licenses": [ + "Java Research License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1129895" + ], + "created_at": "2026-07-10T10:12:41.413946", + "updated_at": "2026-07-10T10:12:41.413946", + "url": "/v1/software/java-advanced-imaging" +} diff --git a/site/public/v1/software/java-agent-template/index.json b/site/public/v1/software/java-agent-template/index.json new file mode 100644 index 000000000000..6afc3c553321 --- /dev/null +++ b/site/public/v1/software/java-agent-template/index.json @@ -0,0 +1,19 @@ +{ + "id": 4850, + "slug": "java-agent-template", + "name": "Java Agent Template", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6164956" + ], + "created_at": "2026-07-10T10:12:41.413946", + "updated_at": "2026-07-10T10:12:41.413946", + "url": "/v1/software/java-agent-template" +} diff --git a/site/public/v1/software/java-applet/index.json b/site/public/v1/software/java-applet/index.json new file mode 100644 index 000000000000..5086b781722e --- /dev/null +++ b/site/public/v1/software/java-applet/index.json @@ -0,0 +1,19 @@ +{ + "id": 4851, + "slug": "java-applet", + "name": "Java applet", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q865817" + ], + "created_at": "2026-07-10T10:12:41.413946", + "updated_at": "2026-07-10T10:12:41.413946", + "url": "/v1/software/java-applet" +} diff --git a/site/public/v1/software/java-ascii-versatile-editor/index.json b/site/public/v1/software/java-ascii-versatile-editor/index.json new file mode 100644 index 000000000000..d5aac2792453 --- /dev/null +++ b/site/public/v1/software/java-ascii-versatile-editor/index.json @@ -0,0 +1,25 @@ +{ + "id": 4852, + "slug": "java-ascii-versatile-editor", + "name": "Java Ascii Versatile Editor", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Windows 95" + ], + "programming_languages": [ + "Java" + ], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1684146" + ], + "created_at": "2026-07-10T10:12:41.413946", + "updated_at": "2026-07-10T10:12:41.413946", + "url": "/v1/software/java-ascii-versatile-editor" +} diff --git a/site/public/v1/software/java-astrodynamics-toolkit/index.json b/site/public/v1/software/java-astrodynamics-toolkit/index.json new file mode 100644 index 000000000000..ba5aa047f4c4 --- /dev/null +++ b/site/public/v1/software/java-astrodynamics-toolkit/index.json @@ -0,0 +1,19 @@ +{ + "id": 4853, + "slug": "java-astrodynamics-toolkit", + "name": "Java Astrodynamics Toolkit", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6164958" + ], + "created_at": "2026-07-10T10:12:41.414959", + "updated_at": "2026-07-10T10:12:41.414959", + "url": "/v1/software/java-astrodynamics-toolkit" +} diff --git a/site/public/v1/software/java-database-connectivity/index.json b/site/public/v1/software/java-database-connectivity/index.json new file mode 100644 index 000000000000..4f37d13c0dcf --- /dev/null +++ b/site/public/v1/software/java-database-connectivity/index.json @@ -0,0 +1,21 @@ +{ + "id": 4854, + "slug": "java-database-connectivity", + "name": "Java Database Connectivity", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Java" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q722772" + ], + "created_at": "2026-07-10T10:12:41.414959", + "updated_at": "2026-07-10T10:12:41.414959", + "url": "/v1/software/java-database-connectivity" +} diff --git a/site/public/v1/software/java-dynamic-management-kit/index.json b/site/public/v1/software/java-dynamic-management-kit/index.json new file mode 100644 index 000000000000..9c8577416432 --- /dev/null +++ b/site/public/v1/software/java-dynamic-management-kit/index.json @@ -0,0 +1,21 @@ +{ + "id": 4855, + "slug": "java-dynamic-management-kit", + "name": "Java Dynamic Management Kit", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "cross-platform" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6164977" + ], + "created_at": "2026-07-10T10:12:41.414959", + "updated_at": "2026-07-10T10:12:41.414959", + "url": "/v1/software/java-dynamic-management-kit" +} diff --git a/site/public/v1/software/java-ebuilder/index.json b/site/public/v1/software/java-ebuilder/index.json new file mode 100644 index 000000000000..2ce4cf2dd363 --- /dev/null +++ b/site/public/v1/software/java-ebuilder/index.json @@ -0,0 +1,21 @@ +{ + "id": 4856, + "slug": "java-ebuilder", + "name": "java-ebuilder", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974955" + ], + "created_at": "2026-07-10T10:12:41.415972", + "updated_at": "2026-07-10T10:12:41.415972", + "url": "/v1/software/java-ebuilder" +} diff --git a/site/public/v1/software/java-ee-module-configuration-editors/index.json b/site/public/v1/software/java-ee-module-configuration-editors/index.json new file mode 100644 index 000000000000..e5f9c388761e --- /dev/null +++ b/site/public/v1/software/java-ee-module-configuration-editors/index.json @@ -0,0 +1,19 @@ +{ + "id": 4857, + "slug": "java-ee-module-configuration-editors", + "name": "Java EE Module Configuration Editors", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76167852" + ], + "created_at": "2026-07-10T10:12:41.415972", + "updated_at": "2026-07-10T10:12:41.415972", + "url": "/v1/software/java-ee-module-configuration-editors" +} diff --git a/site/public/v1/software/java-emitter-templates-jet2/index.json b/site/public/v1/software/java-emitter-templates-jet2/index.json new file mode 100644 index 000000000000..10061270d404 --- /dev/null +++ b/site/public/v1/software/java-emitter-templates-jet2/index.json @@ -0,0 +1,19 @@ +{ + "id": 4858, + "slug": "java-emitter-templates-jet2", + "name": "Java Emitter Templates (JET2)", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76167821" + ], + "created_at": "2026-07-10T10:12:41.415972", + "updated_at": "2026-07-10T10:12:41.415972", + "url": "/v1/software/java-emitter-templates-jet2" +} diff --git a/site/public/v1/software/java-getopt/index.json b/site/public/v1/software/java-getopt/index.json new file mode 100644 index 000000000000..bf398e547a6b --- /dev/null +++ b/site/public/v1/software/java-getopt/index.json @@ -0,0 +1,19 @@ +{ + "id": 4859, + "slug": "java-getopt", + "name": "Java-getopt", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76185152" + ], + "created_at": "2026-07-10T10:12:41.416962", + "updated_at": "2026-07-10T10:12:41.416962", + "url": "/v1/software/java-getopt" +} diff --git a/site/public/v1/software/java-jwt/index.json b/site/public/v1/software/java-jwt/index.json new file mode 100644 index 000000000000..139a4c4d9161 --- /dev/null +++ b/site/public/v1/software/java-jwt/index.json @@ -0,0 +1,21 @@ +{ + "id": 4860, + "slug": "java-jwt", + "name": "Java JWT", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Apache Software License 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117780019" + ], + "created_at": "2026-07-10T10:12:41.416962", + "updated_at": "2026-07-10T10:12:41.416962", + "url": "/v1/software/java-jwt" +} diff --git a/site/public/v1/software/java-model-railroad-interface/index.json b/site/public/v1/software/java-model-railroad-interface/index.json new file mode 100644 index 000000000000..e4667936c9d0 --- /dev/null +++ b/site/public/v1/software/java-model-railroad-interface/index.json @@ -0,0 +1,19 @@ +{ + "id": 4861, + "slug": "java-model-railroad-interface", + "name": "Java Model Railroad Interface", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11226880" + ], + "created_at": "2026-07-10T10:12:41.416962", + "updated_at": "2026-07-10T10:12:41.416962", + "url": "/v1/software/java-model-railroad-interface" +} diff --git a/site/public/v1/software/java-optimized-processor/index.json b/site/public/v1/software/java-optimized-processor/index.json new file mode 100644 index 000000000000..b4496f9a258c --- /dev/null +++ b/site/public/v1/software/java-optimized-processor/index.json @@ -0,0 +1,19 @@ +{ + "id": 4862, + "slug": "java-optimized-processor", + "name": "Java optimized processor", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6165044" + ], + "created_at": "2026-07-10T10:12:41.417961", + "updated_at": "2026-07-10T10:12:41.417961", + "url": "/v1/software/java-optimized-processor" +} diff --git a/site/public/v1/software/java-pathfinder/index.json b/site/public/v1/software/java-pathfinder/index.json new file mode 100644 index 000000000000..0dabc3fc15da --- /dev/null +++ b/site/public/v1/software/java-pathfinder/index.json @@ -0,0 +1,27 @@ +{ + "id": 4863, + "slug": "java-pathfinder", + "name": "Java Pathfinder", + "release_date": null, + "developers": [ + "National Aeronautics and Space Administration" + ], + "publishers": [], + "operating_systems": [ + "cross-platform" + ], + "programming_languages": [ + "Java" + ], + "licenses": [ + "Apache License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4041803" + ], + "created_at": "2026-07-10T10:12:41.417961", + "updated_at": "2026-07-10T10:12:41.417961", + "url": "/v1/software/java-pathfinder" +} diff --git a/site/public/v1/software/java-persistent-objects/index.json b/site/public/v1/software/java-persistent-objects/index.json new file mode 100644 index 000000000000..277bcfaed4bd --- /dev/null +++ b/site/public/v1/software/java-persistent-objects/index.json @@ -0,0 +1,21 @@ +{ + "id": 4864, + "slug": "java-persistent-objects", + "name": "Java Persistent Objects", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Apache Software License 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11226062" + ], + "created_at": "2026-07-10T10:12:41.417961", + "updated_at": "2026-07-10T10:12:41.417961", + "url": "/v1/software/java-persistent-objects" +} diff --git a/site/public/v1/software/java-virtual-machine-tools-interface/index.json b/site/public/v1/software/java-virtual-machine-tools-interface/index.json new file mode 100644 index 000000000000..a61c49d3ffac --- /dev/null +++ b/site/public/v1/software/java-virtual-machine-tools-interface/index.json @@ -0,0 +1,19 @@ +{ + "id": 4865, + "slug": "java-virtual-machine-tools-interface", + "name": "Java Virtual Machine Tools Interface", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1100089" + ], + "created_at": "2026-07-10T10:12:41.418971", + "updated_at": "2026-07-10T10:12:41.418971", + "url": "/v1/software/java-virtual-machine-tools-interface" +} diff --git a/site/public/v1/software/java/index.json b/site/public/v1/software/java/index.json new file mode 100644 index 000000000000..32db4bcc35f8 --- /dev/null +++ b/site/public/v1/software/java/index.json @@ -0,0 +1,25 @@ +{ + "id": 4866, + "slug": "java", + "name": "Java", + "release_date": "1995-05-23", + "developers": [ + "James Gosling", + "Oracle Corporation", + "Sun Microsystems" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "GNU General Public License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q251" + ], + "created_at": "2026-07-10T10:12:41.418971", + "updated_at": "2026-07-10T10:12:41.418971", + "url": "/v1/software/java" +} diff --git a/site/public/v1/software/javabeans/index.json b/site/public/v1/software/javabeans/index.json new file mode 100644 index 000000000000..c97567c95698 --- /dev/null +++ b/site/public/v1/software/javabeans/index.json @@ -0,0 +1,19 @@ +{ + "id": 4867, + "slug": "javabeans", + "name": "JavaBeans", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q259322" + ], + "created_at": "2026-07-10T10:12:41.418971", + "updated_at": "2026-07-10T10:12:41.418971", + "url": "/v1/software/javabeans" +} diff --git a/site/public/v1/software/javahelp/index.json b/site/public/v1/software/javahelp/index.json new file mode 100644 index 000000000000..bbf51069f3e7 --- /dev/null +++ b/site/public/v1/software/javahelp/index.json @@ -0,0 +1,23 @@ +{ + "id": 4868, + "slug": "javahelp", + "name": "JavaHelp", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Java" + ], + "licenses": [ + "GNU General Public License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065386" + ], + "created_at": "2026-07-10T10:12:41.418971", + "updated_at": "2026-07-10T10:12:41.418971", + "url": "/v1/software/javahelp" +} diff --git a/site/public/v1/software/javascriptmvc/index.json b/site/public/v1/software/javascriptmvc/index.json new file mode 100644 index 000000000000..738fb692f82a --- /dev/null +++ b/site/public/v1/software/javascriptmvc/index.json @@ -0,0 +1,19 @@ +{ + "id": 4869, + "slug": "javascriptmvc", + "name": "JavaScriptMVC", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6164930" + ], + "created_at": "2026-07-10T10:12:41.419937", + "updated_at": "2026-07-10T10:12:41.419937", + "url": "/v1/software/javascriptmvc" +} diff --git a/site/public/v1/software/javelin-pdf-reader/index.json b/site/public/v1/software/javelin-pdf-reader/index.json new file mode 100644 index 000000000000..9f8d44da4674 --- /dev/null +++ b/site/public/v1/software/javelin-pdf-reader/index.json @@ -0,0 +1,21 @@ +{ + "id": 4870, + "slug": "javelin-pdf-reader", + "name": "Javelin PDF Reader", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16927856" + ], + "created_at": "2026-07-10T10:12:41.419937", + "updated_at": "2026-07-10T10:12:41.419937", + "url": "/v1/software/javelin-pdf-reader" +} diff --git a/site/public/v1/software/jazn/index.json b/site/public/v1/software/jazn/index.json new file mode 100644 index 000000000000..da7ea6ff90d1 --- /dev/null +++ b/site/public/v1/software/jazn/index.json @@ -0,0 +1,21 @@ +{ + "id": 4871, + "slug": "jazn", + "name": "JAZN", + "release_date": null, + "developers": [ + "Oracle Corporation" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6107746" + ], + "created_at": "2026-07-10T10:12:41.419937", + "updated_at": "2026-07-10T10:12:41.419937", + "url": "/v1/software/jazn" +} diff --git a/site/public/v1/software/jbidwatcher/index.json b/site/public/v1/software/jbidwatcher/index.json new file mode 100644 index 000000000000..0e8779ae0166 --- /dev/null +++ b/site/public/v1/software/jbidwatcher/index.json @@ -0,0 +1,21 @@ +{ + "id": 4872, + "slug": "jbidwatcher", + "name": "JBidwatcher", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Java" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120690941" + ], + "created_at": "2026-07-10T10:12:41.420966", + "updated_at": "2026-07-10T10:12:41.420966", + "url": "/v1/software/jbidwatcher" +} diff --git a/site/public/v1/software/jboss-developer-studio/index.json b/site/public/v1/software/jboss-developer-studio/index.json new file mode 100644 index 000000000000..a38df9d4c7d7 --- /dev/null +++ b/site/public/v1/software/jboss-developer-studio/index.json @@ -0,0 +1,19 @@ +{ + "id": 4873, + "slug": "jboss-developer-studio", + "name": "JBoss Developer Studio", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1099065" + ], + "created_at": "2026-07-10T10:12:41.420966", + "updated_at": "2026-07-10T10:12:41.420966", + "url": "/v1/software/jboss-developer-studio" +} diff --git a/site/public/v1/software/jboss-tools/index.json b/site/public/v1/software/jboss-tools/index.json new file mode 100644 index 000000000000..a5df67e2058c --- /dev/null +++ b/site/public/v1/software/jboss-tools/index.json @@ -0,0 +1,23 @@ +{ + "id": 4874, + "slug": "jboss-tools", + "name": "JBoss Tools", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "cross-platform" + ], + "programming_languages": [ + "Java" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6107825" + ], + "created_at": "2026-07-10T10:12:41.420966", + "updated_at": "2026-07-10T10:12:41.420966", + "url": "/v1/software/jboss-tools" +} diff --git a/site/public/v1/software/jconcorder/index.json b/site/public/v1/software/jconcorder/index.json new file mode 100644 index 000000000000..9d861a656768 --- /dev/null +++ b/site/public/v1/software/jconcorder/index.json @@ -0,0 +1,19 @@ +{ + "id": 4875, + "slug": "jconcorder", + "name": "JConcorder", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087820" + ], + "created_at": "2026-07-10T10:12:41.420966", + "updated_at": "2026-07-10T10:12:41.420966", + "url": "/v1/software/jconcorder" +} diff --git a/site/public/v1/software/jcrom/index.json b/site/public/v1/software/jcrom/index.json new file mode 100644 index 000000000000..fad96e4adab9 --- /dev/null +++ b/site/public/v1/software/jcrom/index.json @@ -0,0 +1,23 @@ +{ + "id": 4876, + "slug": "jcrom", + "name": "Jcrom", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Java" + ], + "licenses": [ + "Apache License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17059462" + ], + "created_at": "2026-07-10T10:12:41.421956", + "updated_at": "2026-07-10T10:12:41.421956", + "url": "/v1/software/jcrom" +} diff --git a/site/public/v1/software/jcsp/index.json b/site/public/v1/software/jcsp/index.json new file mode 100644 index 000000000000..f1ec7d3e2cbe --- /dev/null +++ b/site/public/v1/software/jcsp/index.json @@ -0,0 +1,19 @@ +{ + "id": 4877, + "slug": "jcsp", + "name": "JCSP", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6107883" + ], + "created_at": "2026-07-10T10:12:41.421956", + "updated_at": "2026-07-10T10:12:41.421956", + "url": "/v1/software/jcsp" +} diff --git a/site/public/v1/software/jdbc-driver/index.json b/site/public/v1/software/jdbc-driver/index.json new file mode 100644 index 000000000000..8ab685ce9ed8 --- /dev/null +++ b/site/public/v1/software/jdbc-driver/index.json @@ -0,0 +1,19 @@ +{ + "id": 4878, + "slug": "jdbc-driver", + "name": "JDBC driver", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3315268" + ], + "created_at": "2026-07-10T10:12:41.422943", + "updated_at": "2026-07-10T10:12:41.422943", + "url": "/v1/software/jdbc-driver" +} diff --git a/site/public/v1/software/jdbc-type-2-driver/index.json b/site/public/v1/software/jdbc-type-2-driver/index.json new file mode 100644 index 000000000000..98f0655d454c --- /dev/null +++ b/site/public/v1/software/jdbc-type-2-driver/index.json @@ -0,0 +1,19 @@ +{ + "id": 4879, + "slug": "jdbc-type-2-driver", + "name": "JDBC Type 2 Driver", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3805197" + ], + "created_at": "2026-07-10T10:12:41.422943", + "updated_at": "2026-07-10T10:12:41.422943", + "url": "/v1/software/jdbc-type-2-driver" +} diff --git a/site/public/v1/software/jdiff/index.json b/site/public/v1/software/jdiff/index.json new file mode 100644 index 000000000000..471ad77c1dd5 --- /dev/null +++ b/site/public/v1/software/jdiff/index.json @@ -0,0 +1,19 @@ +{ + "id": 4880, + "slug": "jdiff", + "name": "JDiff", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6108031" + ], + "created_at": "2026-07-10T10:12:41.422943", + "updated_at": "2026-07-10T10:12:41.422943", + "url": "/v1/software/jdiff" +} diff --git a/site/public/v1/software/jdiskreport/index.json b/site/public/v1/software/jdiskreport/index.json new file mode 100644 index 000000000000..af2383646846 --- /dev/null +++ b/site/public/v1/software/jdiskreport/index.json @@ -0,0 +1,21 @@ +{ + "id": 4881, + "slug": "jdiskreport", + "name": "JDiskReport", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q12022167" + ], + "created_at": "2026-07-10T10:12:41.422943", + "updated_at": "2026-07-10T10:12:41.422943", + "url": "/v1/software/jdiskreport" +} diff --git a/site/public/v1/software/jdk-enhancement-proposal/index.json b/site/public/v1/software/jdk-enhancement-proposal/index.json new file mode 100644 index 000000000000..53b1a5524840 --- /dev/null +++ b/site/public/v1/software/jdk-enhancement-proposal/index.json @@ -0,0 +1,19 @@ +{ + "id": 4882, + "slug": "jdk-enhancement-proposal", + "name": "JDK Enhancement Proposal", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6107947" + ], + "created_at": "2026-07-10T10:12:41.423940", + "updated_at": "2026-07-10T10:12:41.423940", + "url": "/v1/software/jdk-enhancement-proposal" +} diff --git a/site/public/v1/software/jdk-mission-control/index.json b/site/public/v1/software/jdk-mission-control/index.json new file mode 100644 index 000000000000..4e9c95f2f915 --- /dev/null +++ b/site/public/v1/software/jdk-mission-control/index.json @@ -0,0 +1,21 @@ +{ + "id": 4883, + "slug": "jdk-mission-control", + "name": "JDK Mission Control", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Java" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60774852" + ], + "created_at": "2026-07-10T10:12:41.423940", + "updated_at": "2026-07-10T10:12:41.423940", + "url": "/v1/software/jdk-mission-control" +} diff --git a/site/public/v1/software/jdoodle/index.json b/site/public/v1/software/jdoodle/index.json new file mode 100644 index 000000000000..560cd34d5d70 --- /dev/null +++ b/site/public/v1/software/jdoodle/index.json @@ -0,0 +1,19 @@ +{ + "id": 4884, + "slug": "jdoodle", + "name": "JDoodle", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135916067" + ], + "created_at": "2026-07-10T10:12:41.424949", + "updated_at": "2026-07-10T10:12:41.424949", + "url": "/v1/software/jdoodle" +} diff --git a/site/public/v1/software/jeroo/index.json b/site/public/v1/software/jeroo/index.json new file mode 100644 index 000000000000..e5de581b0821 --- /dev/null +++ b/site/public/v1/software/jeroo/index.json @@ -0,0 +1,21 @@ +{ + "id": 4885, + "slug": "jeroo", + "name": "Jeroo", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Java" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17092863" + ], + "created_at": "2026-07-10T10:12:41.424949", + "updated_at": "2026-07-10T10:12:41.424949", + "url": "/v1/software/jeroo" +} diff --git a/site/public/v1/software/jeskola-buzz/index.json b/site/public/v1/software/jeskola-buzz/index.json new file mode 100644 index 000000000000..9aa6873c185b --- /dev/null +++ b/site/public/v1/software/jeskola-buzz/index.json @@ -0,0 +1,21 @@ +{ + "id": 4886, + "slug": "jeskola-buzz", + "name": "Jeskola Buzz", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q164265" + ], + "created_at": "2026-07-10T10:12:41.424949", + "updated_at": "2026-07-10T10:12:41.424949", + "url": "/v1/software/jeskola-buzz" +} diff --git a/site/public/v1/software/jesperai/index.json b/site/public/v1/software/jesperai/index.json new file mode 100644 index 000000000000..29e312d774e0 --- /dev/null +++ b/site/public/v1/software/jesperai/index.json @@ -0,0 +1,21 @@ +{ + "id": 4887, + "slug": "jesperai", + "name": "JesperAI", + "release_date": null, + "developers": [ + "Agent360" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138581538" + ], + "created_at": "2026-07-10T10:12:41.424949", + "updated_at": "2026-07-10T10:12:41.424949", + "url": "/v1/software/jesperai" +} diff --git a/site/public/v1/software/jet-data-access-objects/index.json b/site/public/v1/software/jet-data-access-objects/index.json new file mode 100644 index 000000000000..98c1fce9f8b6 --- /dev/null +++ b/site/public/v1/software/jet-data-access-objects/index.json @@ -0,0 +1,21 @@ +{ + "id": 4888, + "slug": "jet-data-access-objects", + "name": "Jet Data Access Objects", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1172192" + ], + "created_at": "2026-07-10T10:12:41.425951", + "updated_at": "2026-07-10T10:12:41.425951", + "url": "/v1/software/jet-data-access-objects" +} diff --git a/site/public/v1/software/jetforge/index.json b/site/public/v1/software/jetforge/index.json new file mode 100644 index 000000000000..1caa8812859a --- /dev/null +++ b/site/public/v1/software/jetforge/index.json @@ -0,0 +1,21 @@ +{ + "id": 4889, + "slug": "jetforge", + "name": "JetForge", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "web browser" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139801889" + ], + "created_at": "2026-07-10T10:12:41.425951", + "updated_at": "2026-07-10T10:12:41.425951", + "url": "/v1/software/jetforge" +} diff --git a/site/public/v1/software/jetico-personal-firewall/index.json b/site/public/v1/software/jetico-personal-firewall/index.json new file mode 100644 index 000000000000..5d8c1c2fe266 --- /dev/null +++ b/site/public/v1/software/jetico-personal-firewall/index.json @@ -0,0 +1,19 @@ +{ + "id": 4890, + "slug": "jetico-personal-firewall", + "name": "Jetico Personal Firewall", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q926588" + ], + "created_at": "2026-07-10T10:12:41.425951", + "updated_at": "2026-07-10T10:12:41.426946", + "url": "/v1/software/jetico-personal-firewall" +} diff --git a/site/public/v1/software/jetring/index.json b/site/public/v1/software/jetring/index.json new file mode 100644 index 000000000000..a5e1e4db748e --- /dev/null +++ b/site/public/v1/software/jetring/index.json @@ -0,0 +1,19 @@ +{ + "id": 4891, + "slug": "jetring", + "name": "jetring", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63064803" + ], + "created_at": "2026-07-10T10:12:41.426946", + "updated_at": "2026-07-10T10:12:41.426946", + "url": "/v1/software/jetring" +} diff --git a/site/public/v1/software/jetty-servlet-engine-and-http-server/index.json b/site/public/v1/software/jetty-servlet-engine-and-http-server/index.json new file mode 100644 index 000000000000..8516594ec7e2 --- /dev/null +++ b/site/public/v1/software/jetty-servlet-engine-and-http-server/index.json @@ -0,0 +1,19 @@ +{ + "id": 4892, + "slug": "jetty-servlet-engine-and-http-server", + "name": "Jetty - Servlet Engine and Http Server", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76167747" + ], + "created_at": "2026-07-10T10:12:41.426946", + "updated_at": "2026-07-10T10:12:41.426946", + "url": "/v1/software/jetty-servlet-engine-and-http-server" +} diff --git a/site/public/v1/software/jeudemo/index.json b/site/public/v1/software/jeudemo/index.json new file mode 100644 index 000000000000..454b1bebe090 --- /dev/null +++ b/site/public/v1/software/jeudemo/index.json @@ -0,0 +1,19 @@ +{ + "id": 4893, + "slug": "jeudemo", + "name": "JEUDEMO", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085052" + ], + "created_at": "2026-07-10T10:12:41.426946", + "updated_at": "2026-07-10T10:12:41.426946", + "url": "/v1/software/jeudemo" +} diff --git a/site/public/v1/software/jeus/index.json b/site/public/v1/software/jeus/index.json new file mode 100644 index 000000000000..00bb79a972d8 --- /dev/null +++ b/site/public/v1/software/jeus/index.json @@ -0,0 +1,21 @@ +{ + "id": 4894, + "slug": "jeus", + "name": "JEUS", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Java" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3805228" + ], + "created_at": "2026-07-10T10:12:41.427948", + "updated_at": "2026-07-10T10:12:41.427948", + "url": "/v1/software/jeus" +} diff --git a/site/public/v1/software/jexcel/index.json b/site/public/v1/software/jexcel/index.json new file mode 100644 index 000000000000..531c0f35c53f --- /dev/null +++ b/site/public/v1/software/jexcel/index.json @@ -0,0 +1,21 @@ +{ + "id": 4895, + "slug": "jexcel", + "name": "JExcel", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Java" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22669079" + ], + "created_at": "2026-07-10T10:12:41.427948", + "updated_at": "2026-07-10T10:12:41.427948", + "url": "/v1/software/jexcel" +} diff --git a/site/public/v1/software/jformdesigner/index.json b/site/public/v1/software/jformdesigner/index.json new file mode 100644 index 000000000000..4c594db1b81a --- /dev/null +++ b/site/public/v1/software/jformdesigner/index.json @@ -0,0 +1,23 @@ +{ + "id": 4896, + "slug": "jformdesigner", + "name": "JFormDesigner", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Java" + ], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1484158" + ], + "created_at": "2026-07-10T10:12:41.427948", + "updated_at": "2026-07-10T10:12:41.427948", + "url": "/v1/software/jformdesigner" +} diff --git a/site/public/v1/software/jgir/index.json b/site/public/v1/software/jgir/index.json new file mode 100644 index 000000000000..46ea6e68cf5d --- /dev/null +++ b/site/public/v1/software/jgir/index.json @@ -0,0 +1,19 @@ +{ + "id": 4897, + "slug": "jgir", + "name": "JGIR", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76181312" + ], + "created_at": "2026-07-10T10:12:41.428953", + "updated_at": "2026-07-10T10:12:41.428953", + "url": "/v1/software/jgir" +} diff --git a/site/public/v1/software/jgroups/index.json b/site/public/v1/software/jgroups/index.json new file mode 100644 index 000000000000..95aa99aa049c --- /dev/null +++ b/site/public/v1/software/jgroups/index.json @@ -0,0 +1,21 @@ +{ + "id": 4898, + "slug": "jgroups", + "name": "JGroups", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Apache License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q753874" + ], + "created_at": "2026-07-10T10:12:41.428953", + "updated_at": "2026-07-10T10:12:41.428953", + "url": "/v1/software/jgroups" +} diff --git a/site/public/v1/software/jhbuild/index.json b/site/public/v1/software/jhbuild/index.json new file mode 100644 index 000000000000..487e5412b5e1 --- /dev/null +++ b/site/public/v1/software/jhbuild/index.json @@ -0,0 +1,19 @@ +{ + "id": 4899, + "slug": "jhbuild", + "name": "JHBuild", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76181330" + ], + "created_at": "2026-07-10T10:12:41.428953", + "updated_at": "2026-07-10T10:12:41.428953", + "url": "/v1/software/jhbuild" +} diff --git a/site/public/v1/software/jhove/index.json b/site/public/v1/software/jhove/index.json new file mode 100644 index 000000000000..f9f45085ba68 --- /dev/null +++ b/site/public/v1/software/jhove/index.json @@ -0,0 +1,30 @@ +{ + "id": 4900, + "slug": "jhove", + "name": "JHOVE", + "release_date": null, + "developers": [ + "JSTOR", + "Open Preservation Foundation", + "Harvard Library" + ], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [ + "Java" + ], + "licenses": [ + "GNU Lesser General Public License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16927990" + ], + "created_at": "2026-07-10T10:12:41.428953", + "updated_at": "2026-07-10T10:12:41.428953", + "url": "/v1/software/jhove" +} diff --git a/site/public/v1/software/jhymn/index.json b/site/public/v1/software/jhymn/index.json new file mode 100644 index 000000000000..25b81712ffee --- /dev/null +++ b/site/public/v1/software/jhymn/index.json @@ -0,0 +1,21 @@ +{ + "id": 4901, + "slug": "jhymn", + "name": "JHymn", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Java" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6108227" + ], + "created_at": "2026-07-10T10:12:41.429945", + "updated_at": "2026-07-10T10:12:41.429945", + "url": "/v1/software/jhymn" +} diff --git a/site/public/v1/software/jibx/index.json b/site/public/v1/software/jibx/index.json new file mode 100644 index 000000000000..7dd8b1653862 --- /dev/null +++ b/site/public/v1/software/jibx/index.json @@ -0,0 +1,21 @@ +{ + "id": 4902, + "slug": "jibx", + "name": "JiBX", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Java" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1688838" + ], + "created_at": "2026-07-10T10:12:41.429945", + "updated_at": "2026-07-10T10:12:41.429945", + "url": "/v1/software/jibx" +} diff --git a/site/public/v1/software/jiffydos/index.json b/site/public/v1/software/jiffydos/index.json new file mode 100644 index 000000000000..5c8ffcaa31d6 --- /dev/null +++ b/site/public/v1/software/jiffydos/index.json @@ -0,0 +1,23 @@ +{ + "id": 4903, + "slug": "jiffydos", + "name": "JiffyDOS", + "release_date": "1985-01-01", + "developers": [ + "Creative Micro Designs" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q31841721" + ], + "created_at": "2026-07-10T10:12:41.429945", + "updated_at": "2026-07-10T10:12:41.429945", + "url": "/v1/software/jiffydos" +} diff --git a/site/public/v1/software/jigdo/index.json b/site/public/v1/software/jigdo/index.json new file mode 100644 index 000000000000..f77a15fd558e --- /dev/null +++ b/site/public/v1/software/jigdo/index.json @@ -0,0 +1,21 @@ +{ + "id": 4904, + "slug": "jigdo", + "name": "Jigdo", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "GNU General Public License, version 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1950744" + ], + "created_at": "2026-07-10T10:12:41.430969", + "updated_at": "2026-07-10T10:12:41.430969", + "url": "/v1/software/jigdo" +} diff --git a/site/public/v1/software/jigsaw-q126085053/index.json b/site/public/v1/software/jigsaw-q126085053/index.json new file mode 100644 index 000000000000..a76881abc921 --- /dev/null +++ b/site/public/v1/software/jigsaw-q126085053/index.json @@ -0,0 +1,19 @@ +{ + "id": 4905, + "slug": "jigsaw-q126085053", + "name": "Jigsaw", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085053" + ], + "created_at": "2026-07-10T10:12:41.430969", + "updated_at": "2026-07-10T10:12:41.430969", + "url": "/v1/software/jigsaw-q126085053" +} diff --git a/site/public/v1/software/jigsaw/index.json b/site/public/v1/software/jigsaw/index.json new file mode 100644 index 000000000000..67e84d669d57 --- /dev/null +++ b/site/public/v1/software/jigsaw/index.json @@ -0,0 +1,19 @@ +{ + "id": 4906, + "slug": "jigsaw", + "name": "Jigsaw", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115517870" + ], + "created_at": "2026-07-10T10:12:41.430969", + "updated_at": "2026-07-10T10:12:41.430969", + "url": "/v1/software/jigsaw" +} diff --git a/site/public/v1/software/jing/index.json b/site/public/v1/software/jing/index.json new file mode 100644 index 000000000000..f9b7685c82c4 --- /dev/null +++ b/site/public/v1/software/jing/index.json @@ -0,0 +1,23 @@ +{ + "id": 4907, + "slug": "jing", + "name": "Jing", + "release_date": null, + "developers": [ + "TechSmith" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [ + "screencasting software" + ], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6202204" + ], + "created_at": "2026-07-10T10:12:41.430969", + "updated_at": "2026-07-10T10:12:41.430969", + "url": "/v1/software/jing" +} diff --git a/site/public/v1/software/jini/index.json b/site/public/v1/software/jini/index.json new file mode 100644 index 000000000000..08f29f1126a5 --- /dev/null +++ b/site/public/v1/software/jini/index.json @@ -0,0 +1,21 @@ +{ + "id": 4908, + "slug": "jini", + "name": "Jini", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Apache License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1282140" + ], + "created_at": "2026-07-10T10:12:41.431944", + "updated_at": "2026-07-10T10:12:41.431944", + "url": "/v1/software/jini" +} diff --git a/site/public/v1/software/jinitiator/index.json b/site/public/v1/software/jinitiator/index.json new file mode 100644 index 000000000000..4f6e160f061f --- /dev/null +++ b/site/public/v1/software/jinitiator/index.json @@ -0,0 +1,21 @@ +{ + "id": 4909, + "slug": "jinitiator", + "name": "Jinitiator", + "release_date": null, + "developers": [ + "Oracle Corporation" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4041849" + ], + "created_at": "2026-07-10T10:12:41.431944", + "updated_at": "2026-07-10T10:12:41.431944", + "url": "/v1/software/jinitiator" +} diff --git a/site/public/v1/software/jmag/index.json b/site/public/v1/software/jmag/index.json new file mode 100644 index 000000000000..37780673f75a --- /dev/null +++ b/site/public/v1/software/jmag/index.json @@ -0,0 +1,21 @@ +{ + "id": 4910, + "slug": "jmag", + "name": "JMAG", + "release_date": null, + "developers": [ + "Template:Vba" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6108488" + ], + "created_at": "2026-07-10T10:12:41.431944", + "updated_at": "2026-07-10T10:12:41.431944", + "url": "/v1/software/jmag" +} diff --git a/site/public/v1/software/jme-molecule-editor/index.json b/site/public/v1/software/jme-molecule-editor/index.json new file mode 100644 index 000000000000..94e59bc20b63 --- /dev/null +++ b/site/public/v1/software/jme-molecule-editor/index.json @@ -0,0 +1,23 @@ +{ + "id": 4911, + "slug": "jme-molecule-editor", + "name": "JME Molecule Editor", + "release_date": null, + "developers": [ + "Comenius University" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Java" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6108502" + ], + "created_at": "2026-07-10T10:12:41.432962", + "updated_at": "2026-07-10T10:12:41.432962", + "url": "/v1/software/jme-molecule-editor" +} diff --git a/site/public/v1/software/jmp/index.json b/site/public/v1/software/jmp/index.json new file mode 100644 index 000000000000..e29b4bbfc7c4 --- /dev/null +++ b/site/public/v1/software/jmp/index.json @@ -0,0 +1,21 @@ +{ + "id": 4912, + "slug": "jmp", + "name": "JMP", + "release_date": null, + "developers": [ + "SAS Institute" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1161680" + ], + "created_at": "2026-07-10T10:12:41.432962", + "updated_at": "2026-07-10T10:12:41.432962", + "url": "/v1/software/jmp" +} diff --git a/site/public/v1/software/jmupdf/index.json b/site/public/v1/software/jmupdf/index.json new file mode 100644 index 000000000000..44a1bbc6a9f6 --- /dev/null +++ b/site/public/v1/software/jmupdf/index.json @@ -0,0 +1,19 @@ +{ + "id": 4913, + "slug": "jmupdf", + "name": "jmupdf", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974957" + ], + "created_at": "2026-07-10T10:12:41.432962", + "updated_at": "2026-07-10T10:12:41.432962", + "url": "/v1/software/jmupdf" +} diff --git a/site/public/v1/software/jnaerator/index.json b/site/public/v1/software/jnaerator/index.json new file mode 100644 index 000000000000..71f7744b290c --- /dev/null +++ b/site/public/v1/software/jnaerator/index.json @@ -0,0 +1,21 @@ +{ + "id": 4914, + "slug": "jnaerator", + "name": "JNAerator", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Java" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6108564" + ], + "created_at": "2026-07-10T10:12:41.433949", + "updated_at": "2026-07-10T10:12:41.433949", + "url": "/v1/software/jnaerator" +} diff --git a/site/public/v1/software/job-entry-subsystem-1/index.json b/site/public/v1/software/job-entry-subsystem-1/index.json new file mode 100644 index 000000000000..926231b58480 --- /dev/null +++ b/site/public/v1/software/job-entry-subsystem-1/index.json @@ -0,0 +1,21 @@ +{ + "id": 4915, + "slug": "job-entry-subsystem-1", + "name": "Job Entry Subsystem 1", + "release_date": null, + "developers": [ + "IBM" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28457532" + ], + "created_at": "2026-07-10T10:12:41.433949", + "updated_at": "2026-07-10T10:12:41.433949", + "url": "/v1/software/job-entry-subsystem-1" +} diff --git a/site/public/v1/software/jobrunr/index.json b/site/public/v1/software/jobrunr/index.json new file mode 100644 index 000000000000..68b85d94e96a --- /dev/null +++ b/site/public/v1/software/jobrunr/index.json @@ -0,0 +1,19 @@ +{ + "id": 4916, + "slug": "jobrunr", + "name": "JobRunr", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134543526" + ], + "created_at": "2026-07-10T10:12:41.433949", + "updated_at": "2026-07-10T10:12:41.433949", + "url": "/v1/software/jobrunr" +} diff --git a/site/public/v1/software/jobs/index.json b/site/public/v1/software/jobs/index.json new file mode 100644 index 000000000000..a8e195cc9ad9 --- /dev/null +++ b/site/public/v1/software/jobs/index.json @@ -0,0 +1,19 @@ +{ + "id": 4917, + "slug": "jobs", + "name": "jobs", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11928169" + ], + "created_at": "2026-07-10T10:12:41.434883", + "updated_at": "2026-07-10T10:12:41.434883", + "url": "/v1/software/jobs" +} diff --git a/site/public/v1/software/jogre/index.json b/site/public/v1/software/jogre/index.json new file mode 100644 index 000000000000..b21bea1573fe --- /dev/null +++ b/site/public/v1/software/jogre/index.json @@ -0,0 +1,19 @@ +{ + "id": 4918, + "slug": "jogre", + "name": "Jogre", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6214826" + ], + "created_at": "2026-07-10T10:12:41.434883", + "updated_at": "2026-07-10T10:12:41.434883", + "url": "/v1/software/jogre" +} diff --git a/site/public/v1/software/johnny-castaway/index.json b/site/public/v1/software/johnny-castaway/index.json new file mode 100644 index 000000000000..d5c894bf733d --- /dev/null +++ b/site/public/v1/software/johnny-castaway/index.json @@ -0,0 +1,21 @@ +{ + "id": 4919, + "slug": "johnny-castaway", + "name": "Johnny Castaway", + "release_date": null, + "developers": [ + "Sierra Entertainment" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6266471" + ], + "created_at": "2026-07-10T10:12:41.434883", + "updated_at": "2026-07-10T10:12:41.434883", + "url": "/v1/software/johnny-castaway" +} diff --git a/site/public/v1/software/joint-automated-deep-operations-coordination-system/index.json b/site/public/v1/software/joint-automated-deep-operations-coordination-system/index.json new file mode 100644 index 000000000000..8f8ffb2ccdc0 --- /dev/null +++ b/site/public/v1/software/joint-automated-deep-operations-coordination-system/index.json @@ -0,0 +1,21 @@ +{ + "id": 4920, + "slug": "joint-automated-deep-operations-coordination-system", + "name": "Joint Automated Deep Operations Coordination System", + "release_date": null, + "developers": [ + "Raytheon" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q43515727" + ], + "created_at": "2026-07-10T10:12:41.435880", + "updated_at": "2026-07-10T10:12:41.435880", + "url": "/v1/software/joint-automated-deep-operations-coordination-system" +} diff --git a/site/public/v1/software/joint-chiefs/index.json b/site/public/v1/software/joint-chiefs/index.json new file mode 100644 index 000000000000..075c6f3e21e1 --- /dev/null +++ b/site/public/v1/software/joint-chiefs/index.json @@ -0,0 +1,27 @@ +{ + "id": 4921, + "slug": "joint-chiefs", + "name": "Joint Chiefs", + "release_date": null, + "developers": [ + "Outergy Group" + ], + "publishers": [], + "operating_systems": [ + "macOS" + ], + "programming_languages": [ + "Swift" + ], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140199231" + ], + "created_at": "2026-07-10T10:12:41.435880", + "updated_at": "2026-07-10T10:12:41.435880", + "url": "/v1/software/joint-chiefs" +} diff --git a/site/public/v1/software/joint-theater-level-simulation/index.json b/site/public/v1/software/joint-theater-level-simulation/index.json new file mode 100644 index 000000000000..a9afe9a97d00 --- /dev/null +++ b/site/public/v1/software/joint-theater-level-simulation/index.json @@ -0,0 +1,19 @@ +{ + "id": 4922, + "slug": "joint-theater-level-simulation", + "name": "Joint Theater Level Simulation", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6269464" + ], + "created_at": "2026-07-10T10:12:41.435880", + "updated_at": "2026-07-10T10:12:41.435880", + "url": "/v1/software/joint-theater-level-simulation" +} diff --git a/site/public/v1/software/jointly-administered-knowledge-environment/index.json b/site/public/v1/software/jointly-administered-knowledge-environment/index.json new file mode 100644 index 000000000000..d038cf8f54f5 --- /dev/null +++ b/site/public/v1/software/jointly-administered-knowledge-environment/index.json @@ -0,0 +1,19 @@ +{ + "id": 4923, + "slug": "jointly-administered-knowledge-environment", + "name": "Jointly Administered Knowledge Environment", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6269575" + ], + "created_at": "2026-07-10T10:12:41.436883", + "updated_at": "2026-07-10T10:12:41.436883", + "url": "/v1/software/jointly-administered-knowledge-environment" +} diff --git a/site/public/v1/software/joost/index.json b/site/public/v1/software/joost/index.json new file mode 100644 index 000000000000..21645599af92 --- /dev/null +++ b/site/public/v1/software/joost/index.json @@ -0,0 +1,23 @@ +{ + "id": 4924, + "slug": "joost", + "name": "Joost", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "macOS" + ], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q658666" + ], + "created_at": "2026-07-10T10:12:41.436883", + "updated_at": "2026-07-10T10:12:41.436883", + "url": "/v1/software/joost" +} diff --git a/site/public/v1/software/josh/index.json b/site/public/v1/software/josh/index.json new file mode 100644 index 000000000000..b04e816102aa --- /dev/null +++ b/site/public/v1/software/josh/index.json @@ -0,0 +1,21 @@ +{ + "id": 4925, + "slug": "josh", + "name": "Josh", + "release_date": "2020-09-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113134406" + ], + "created_at": "2026-07-10T10:12:41.436883", + "updated_at": "2026-07-10T10:12:41.436883", + "url": "/v1/software/josh" +} diff --git a/site/public/v1/software/jotterpad/index.json b/site/public/v1/software/jotterpad/index.json new file mode 100644 index 000000000000..d4d64a9a3264 --- /dev/null +++ b/site/public/v1/software/jotterpad/index.json @@ -0,0 +1,21 @@ +{ + "id": 4926, + "slug": "jotterpad", + "name": "JotterPad", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Java" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q30589420" + ], + "created_at": "2026-07-10T10:12:41.436883", + "updated_at": "2026-07-10T10:12:41.436883", + "url": "/v1/software/jotterpad" +} diff --git a/site/public/v1/software/jox/index.json b/site/public/v1/software/jox/index.json new file mode 100644 index 000000000000..eafb420eef13 --- /dev/null +++ b/site/public/v1/software/jox/index.json @@ -0,0 +1,33 @@ +{ + "id": 4927, + "slug": "jox", + "name": "JOX", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "SINIX", + "IRIX", + "IBM AIX", + "FreeBSD", + "Unix-like operating system", + "cross-platform", + "Solaris", + "macOS", + "Microsoft Windows" + ], + "programming_languages": [ + "Java" + ], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140219964" + ], + "created_at": "2026-07-10T10:12:41.437883", + "updated_at": "2026-07-10T10:12:41.437883", + "url": "/v1/software/jox" +} diff --git a/site/public/v1/software/joy2key/index.json b/site/public/v1/software/joy2key/index.json new file mode 100644 index 000000000000..b71769d30c05 --- /dev/null +++ b/site/public/v1/software/joy2key/index.json @@ -0,0 +1,19 @@ +{ + "id": 4928, + "slug": "joy2key", + "name": "Joy2Key", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62853150" + ], + "created_at": "2026-07-10T10:12:41.437883", + "updated_at": "2026-07-10T10:12:41.437883", + "url": "/v1/software/joy2key" +} diff --git a/site/public/v1/software/jp1/index.json b/site/public/v1/software/jp1/index.json new file mode 100644 index 000000000000..653cb2c3d650 --- /dev/null +++ b/site/public/v1/software/jp1/index.json @@ -0,0 +1,19 @@ +{ + "id": 4929, + "slug": "jp1", + "name": "JP1", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11226042" + ], + "created_at": "2026-07-10T10:12:41.437883", + "updated_at": "2026-07-10T10:12:41.437883", + "url": "/v1/software/jp1" +} diff --git a/site/public/v1/software/jp2a/index.json b/site/public/v1/software/jp2a/index.json new file mode 100644 index 000000000000..d8d8558931ad --- /dev/null +++ b/site/public/v1/software/jp2a/index.json @@ -0,0 +1,19 @@ +{ + "id": 4930, + "slug": "jp2a", + "name": "jp2a", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62853122" + ], + "created_at": "2026-07-10T10:12:41.438883", + "updated_at": "2026-07-10T10:12:41.438883", + "url": "/v1/software/jp2a" +} diff --git a/site/public/v1/software/jpegpixi/index.json b/site/public/v1/software/jpegpixi/index.json new file mode 100644 index 000000000000..f6dce0ecedc3 --- /dev/null +++ b/site/public/v1/software/jpegpixi/index.json @@ -0,0 +1,19 @@ +{ + "id": 4931, + "slug": "jpegpixi", + "name": "jpegpixi", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62853109" + ], + "created_at": "2026-07-10T10:12:41.438883", + "updated_at": "2026-07-10T10:12:41.438883", + "url": "/v1/software/jpegpixi" +} diff --git a/site/public/v1/software/jpgraph/index.json b/site/public/v1/software/jpgraph/index.json new file mode 100644 index 000000000000..633340b0b030 --- /dev/null +++ b/site/public/v1/software/jpgraph/index.json @@ -0,0 +1,19 @@ +{ + "id": 4932, + "slug": "jpgraph", + "name": "JpGraph", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085055" + ], + "created_at": "2026-07-10T10:12:41.438883", + "updated_at": "2026-07-10T10:12:41.438883", + "url": "/v1/software/jpgraph" +} diff --git a/site/public/v1/software/jpred/index.json b/site/public/v1/software/jpred/index.json new file mode 100644 index 000000000000..28e28564aa2a --- /dev/null +++ b/site/public/v1/software/jpred/index.json @@ -0,0 +1,19 @@ +{ + "id": 4933, + "slug": "jpred", + "name": "Jpred", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18386017" + ], + "created_at": "2026-07-10T10:12:41.438883", + "updated_at": "2026-07-10T10:12:41.438883", + "url": "/v1/software/jpred" +} diff --git a/site/public/v1/software/jqplot/index.json b/site/public/v1/software/jqplot/index.json new file mode 100644 index 000000000000..e4212c66fc3f --- /dev/null +++ b/site/public/v1/software/jqplot/index.json @@ -0,0 +1,19 @@ +{ + "id": 4934, + "slug": "jqplot", + "name": "jqplot", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085056" + ], + "created_at": "2026-07-10T10:12:41.439964", + "updated_at": "2026-07-10T10:12:41.439964", + "url": "/v1/software/jqplot" +} diff --git a/site/public/v1/software/jqtouch/index.json b/site/public/v1/software/jqtouch/index.json new file mode 100644 index 000000000000..6659be7da982 --- /dev/null +++ b/site/public/v1/software/jqtouch/index.json @@ -0,0 +1,19 @@ +{ + "id": 4935, + "slug": "jqtouch", + "name": "JQTouch", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6108799" + ], + "created_at": "2026-07-10T10:12:41.439964", + "updated_at": "2026-07-10T10:12:41.439964", + "url": "/v1/software/jqtouch" +} diff --git a/site/public/v1/software/jqwidgets/index.json b/site/public/v1/software/jqwidgets/index.json new file mode 100644 index 000000000000..9ccbba8d755f --- /dev/null +++ b/site/public/v1/software/jqwidgets/index.json @@ -0,0 +1,21 @@ +{ + "id": 4936, + "slug": "jqwidgets", + "name": "jQWidgets", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Creative Commons Attribution-NonCommercial 3.0 Unported" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22681953" + ], + "created_at": "2026-07-10T10:12:41.440943", + "updated_at": "2026-07-10T10:12:41.440943", + "url": "/v1/software/jqwidgets" +} diff --git a/site/public/v1/software/jrebel/index.json b/site/public/v1/software/jrebel/index.json new file mode 100644 index 000000000000..376664527aa0 --- /dev/null +++ b/site/public/v1/software/jrebel/index.json @@ -0,0 +1,21 @@ +{ + "id": 4937, + "slug": "jrebel", + "name": "JRebel", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Java" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4041800" + ], + "created_at": "2026-07-10T10:12:41.440943", + "updated_at": "2026-07-10T10:12:41.440943", + "url": "/v1/software/jrebel" +} diff --git a/site/public/v1/software/jriver-media-center/index.json b/site/public/v1/software/jriver-media-center/index.json new file mode 100644 index 000000000000..8c9ba21e12e9 --- /dev/null +++ b/site/public/v1/software/jriver-media-center/index.json @@ -0,0 +1,21 @@ +{ + "id": 4938, + "slug": "jriver-media-center", + "name": "JRiver Media Center", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q15995229" + ], + "created_at": "2026-07-10T10:12:41.440943", + "updated_at": "2026-07-10T10:12:41.440943", + "url": "/v1/software/jriver-media-center" +} diff --git a/site/public/v1/software/jrockit/index.json b/site/public/v1/software/jrockit/index.json new file mode 100644 index 000000000000..8c22e7f16880 --- /dev/null +++ b/site/public/v1/software/jrockit/index.json @@ -0,0 +1,21 @@ +{ + "id": 4939, + "slug": "jrockit", + "name": "JRockit", + "release_date": null, + "developers": [ + "Oracle Corporation" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q822638" + ], + "created_at": "2026-07-10T10:12:41.440943", + "updated_at": "2026-07-10T10:12:41.440943", + "url": "/v1/software/jrockit" +} diff --git a/site/public/v1/software/js-of-ocaml/index.json b/site/public/v1/software/js-of-ocaml/index.json new file mode 100644 index 000000000000..a5e167365afc --- /dev/null +++ b/site/public/v1/software/js-of-ocaml/index.json @@ -0,0 +1,19 @@ +{ + "id": 4940, + "slug": "js-of-ocaml", + "name": "js_of_ocaml", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974959" + ], + "created_at": "2026-07-10T10:12:41.441975", + "updated_at": "2026-07-10T10:12:41.441975", + "url": "/v1/software/js-of-ocaml" +} diff --git a/site/public/v1/software/jsan/index.json b/site/public/v1/software/jsan/index.json new file mode 100644 index 000000000000..672477f3c25c --- /dev/null +++ b/site/public/v1/software/jsan/index.json @@ -0,0 +1,19 @@ +{ + "id": 4941, + "slug": "jsan", + "name": "JSAN", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085057" + ], + "created_at": "2026-07-10T10:12:41.441975", + "updated_at": "2026-07-10T10:12:41.441975", + "url": "/v1/software/jsan" +} diff --git a/site/public/v1/software/jscrambler/index.json b/site/public/v1/software/jscrambler/index.json new file mode 100644 index 000000000000..5a33e3300d08 --- /dev/null +++ b/site/public/v1/software/jscrambler/index.json @@ -0,0 +1,19 @@ +{ + "id": 4942, + "slug": "jscrambler", + "name": "Jscrambler", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6298655" + ], + "created_at": "2026-07-10T10:12:41.441975", + "updated_at": "2026-07-10T10:12:41.441975", + "url": "/v1/software/jscrambler" +} diff --git a/site/public/v1/software/jsesh/index.json b/site/public/v1/software/jsesh/index.json new file mode 100644 index 000000000000..23eb0d14c9d5 --- /dev/null +++ b/site/public/v1/software/jsesh/index.json @@ -0,0 +1,22 @@ +{ + "id": 4943, + "slug": "jsesh", + "name": "JSesh", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116177108" + ], + "created_at": "2026-07-10T10:12:41.442950", + "updated_at": "2026-07-10T10:12:41.442950", + "url": "/v1/software/jsesh" +} diff --git a/site/public/v1/software/jsfiddle/index.json b/site/public/v1/software/jsfiddle/index.json new file mode 100644 index 000000000000..862c1cd93f20 --- /dev/null +++ b/site/public/v1/software/jsfiddle/index.json @@ -0,0 +1,19 @@ +{ + "id": 4944, + "slug": "jsfiddle", + "name": "JSFiddle", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q29364743" + ], + "created_at": "2026-07-10T10:12:41.442950", + "updated_at": "2026-07-10T10:12:41.442950", + "url": "/v1/software/jsfiddle" +} diff --git a/site/public/v1/software/jslda/index.json b/site/public/v1/software/jslda/index.json new file mode 100644 index 000000000000..6a2723c67fc2 --- /dev/null +++ b/site/public/v1/software/jslda/index.json @@ -0,0 +1,19 @@ +{ + "id": 4945, + "slug": "jslda", + "name": "jsLDA", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085058" + ], + "created_at": "2026-07-10T10:12:41.442950", + "updated_at": "2026-07-10T10:12:41.442950", + "url": "/v1/software/jslda" +} diff --git a/site/public/v1/software/json-resume/index.json b/site/public/v1/software/json-resume/index.json new file mode 100644 index 000000000000..bae23f565ae3 --- /dev/null +++ b/site/public/v1/software/json-resume/index.json @@ -0,0 +1,19 @@ +{ + "id": 4946, + "slug": "json-resume", + "name": "JSON Resume", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q132746254" + ], + "created_at": "2026-07-10T10:12:41.443948", + "updated_at": "2026-07-10T10:12:41.443948", + "url": "/v1/software/json-resume" +} diff --git a/site/public/v1/software/jspecview/index.json b/site/public/v1/software/jspecview/index.json new file mode 100644 index 000000000000..567fb2617646 --- /dev/null +++ b/site/public/v1/software/jspecview/index.json @@ -0,0 +1,21 @@ +{ + "id": 4947, + "slug": "jspecview", + "name": "JSpecView", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "GNU Library General Public License, version 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124662930" + ], + "created_at": "2026-07-10T10:12:41.443948", + "updated_at": "2026-07-10T10:12:41.443948", + "url": "/v1/software/jspecview" +} diff --git a/site/public/v1/software/jsphp/index.json b/site/public/v1/software/jsphp/index.json new file mode 100644 index 000000000000..9b2f5effc258 --- /dev/null +++ b/site/public/v1/software/jsphp/index.json @@ -0,0 +1,21 @@ +{ + "id": 4948, + "slug": "jsphp", + "name": "JsPHP", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6298651" + ], + "created_at": "2026-07-10T10:12:41.443948", + "updated_at": "2026-07-10T10:12:41.443948", + "url": "/v1/software/jsphp" +} diff --git a/site/public/v1/software/jsr-94/index.json b/site/public/v1/software/jsr-94/index.json new file mode 100644 index 000000000000..24a3b2c9b897 --- /dev/null +++ b/site/public/v1/software/jsr-94/index.json @@ -0,0 +1,19 @@ +{ + "id": 4949, + "slug": "jsr-94", + "name": "JSR 94", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6108955" + ], + "created_at": "2026-07-10T10:12:41.444934", + "updated_at": "2026-07-10T10:12:41.444934", + "url": "/v1/software/jsr-94" +} diff --git a/site/public/v1/software/jstor-text-analyzer/index.json b/site/public/v1/software/jstor-text-analyzer/index.json new file mode 100644 index 000000000000..447c599539b4 --- /dev/null +++ b/site/public/v1/software/jstor-text-analyzer/index.json @@ -0,0 +1,19 @@ +{ + "id": 4950, + "slug": "jstor-text-analyzer", + "name": "JSTOR Text Analyzer", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085059" + ], + "created_at": "2026-07-10T10:12:41.444934", + "updated_at": "2026-07-10T10:12:41.444934", + "url": "/v1/software/jstor-text-analyzer" +} diff --git a/site/public/v1/software/jswipe/index.json b/site/public/v1/software/jswipe/index.json new file mode 100644 index 000000000000..45085c1f6eb6 --- /dev/null +++ b/site/public/v1/software/jswipe/index.json @@ -0,0 +1,19 @@ +{ + "id": 4951, + "slug": "jswipe", + "name": "JSwipe", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q65119861" + ], + "created_at": "2026-07-10T10:12:41.444934", + "updated_at": "2026-07-10T10:12:41.444934", + "url": "/v1/software/jswipe" +} diff --git a/site/public/v1/software/jubster/index.json b/site/public/v1/software/jubster/index.json new file mode 100644 index 000000000000..73bd34507603 --- /dev/null +++ b/site/public/v1/software/jubster/index.json @@ -0,0 +1,21 @@ +{ + "id": 4952, + "slug": "jubster", + "name": "Jubster", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6301963" + ], + "created_at": "2026-07-10T10:12:41.445929", + "updated_at": "2026-07-10T10:12:41.445929", + "url": "/v1/software/jubster" +} diff --git a/site/public/v1/software/judo-erp/index.json b/site/public/v1/software/judo-erp/index.json new file mode 100644 index 000000000000..0c92d8a05bdf --- /dev/null +++ b/site/public/v1/software/judo-erp/index.json @@ -0,0 +1,21 @@ +{ + "id": 4953, + "slug": "judo-erp", + "name": "JUDO ERP", + "release_date": "2016-01-01", + "developers": [ + "Cyber King Co., Ltd." + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q75145878" + ], + "created_at": "2026-07-10T10:12:41.445929", + "updated_at": "2026-07-10T10:12:41.445929", + "url": "/v1/software/judo-erp" +} diff --git a/site/public/v1/software/jughead/index.json b/site/public/v1/software/jughead/index.json new file mode 100644 index 000000000000..572152302fe4 --- /dev/null +++ b/site/public/v1/software/jughead/index.json @@ -0,0 +1,21 @@ +{ + "id": 4954, + "slug": "jughead", + "name": "Jughead", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "GNU General Public License, version 2.0 or later" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11133401" + ], + "created_at": "2026-07-10T10:12:41.445929", + "updated_at": "2026-07-10T10:12:41.445929", + "url": "/v1/software/jughead" +} diff --git a/site/public/v1/software/juglow/index.json b/site/public/v1/software/juglow/index.json new file mode 100644 index 000000000000..e1725bb47623 --- /dev/null +++ b/site/public/v1/software/juglow/index.json @@ -0,0 +1,26 @@ +{ + "id": 4955, + "slug": "juglow", + "name": "JuGloW", + "release_date": null, + "developers": [ + "JuGloW", + "Junaidi" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Python" + ], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137773281" + ], + "created_at": "2026-07-10T10:12:41.445929", + "updated_at": "2026-07-10T10:12:41.445929", + "url": "/v1/software/juglow" +} diff --git a/site/public/v1/software/juice/index.json b/site/public/v1/software/juice/index.json new file mode 100644 index 000000000000..486b035c964a --- /dev/null +++ b/site/public/v1/software/juice/index.json @@ -0,0 +1,21 @@ +{ + "id": 4956, + "slug": "juice", + "name": "Juice", + "release_date": null, + "developers": [ + "Masaryk University" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6109126" + ], + "created_at": "2026-07-10T10:12:41.446970", + "updated_at": "2026-07-10T10:12:41.446970", + "url": "/v1/software/juice" +} diff --git a/site/public/v1/software/jumpchart/index.json b/site/public/v1/software/jumpchart/index.json new file mode 100644 index 000000000000..8dcc41bfe4f3 --- /dev/null +++ b/site/public/v1/software/jumpchart/index.json @@ -0,0 +1,19 @@ +{ + "id": 4957, + "slug": "jumpchart", + "name": "Jumpchart", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085060" + ], + "created_at": "2026-07-10T10:12:41.446970", + "updated_at": "2026-07-10T10:12:41.446970", + "url": "/v1/software/jumpchart" +} diff --git a/site/public/v1/software/jumpshare/index.json b/site/public/v1/software/jumpshare/index.json new file mode 100644 index 000000000000..47e38d47238b --- /dev/null +++ b/site/public/v1/software/jumpshare/index.json @@ -0,0 +1,21 @@ +{ + "id": 4958, + "slug": "jumpshare", + "name": "Jumpshare", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22095636" + ], + "created_at": "2026-07-10T10:12:41.446970", + "updated_at": "2026-07-10T10:12:41.446970", + "url": "/v1/software/jumpshare" +} diff --git a/site/public/v1/software/junaio/index.json b/site/public/v1/software/junaio/index.json new file mode 100644 index 000000000000..3a653aed0074 --- /dev/null +++ b/site/public/v1/software/junaio/index.json @@ -0,0 +1,21 @@ +{ + "id": 4959, + "slug": "junaio", + "name": "Junaio", + "release_date": null, + "developers": [ + "Metaio GmbH" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6311619" + ], + "created_at": "2026-07-10T10:12:41.447976", + "updated_at": "2026-07-10T10:12:41.447976", + "url": "/v1/software/junaio" +} diff --git a/site/public/v1/software/jungle-disk/index.json b/site/public/v1/software/jungle-disk/index.json new file mode 100644 index 000000000000..6320f5144390 --- /dev/null +++ b/site/public/v1/software/jungle-disk/index.json @@ -0,0 +1,23 @@ +{ + "id": 4960, + "slug": "jungle-disk", + "name": "Jungle Disk", + "release_date": "2007-01-01", + "developers": [ + "Jungle Disk" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1713466" + ], + "created_at": "2026-07-10T10:12:41.447976", + "updated_at": "2026-07-10T10:12:41.447976", + "url": "/v1/software/jungle-disk" +} diff --git a/site/public/v1/software/juno/index.json b/site/public/v1/software/juno/index.json new file mode 100644 index 000000000000..cc382d199f9d --- /dev/null +++ b/site/public/v1/software/juno/index.json @@ -0,0 +1,19 @@ +{ + "id": 4961, + "slug": "juno", + "name": "Juno", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25205224" + ], + "created_at": "2026-07-10T10:12:41.447976", + "updated_at": "2026-07-10T10:12:41.447976", + "url": "/v1/software/juno" +} diff --git a/site/public/v1/software/jupyter-ci/index.json b/site/public/v1/software/jupyter-ci/index.json new file mode 100644 index 000000000000..449b722b0475 --- /dev/null +++ b/site/public/v1/software/jupyter-ci/index.json @@ -0,0 +1,23 @@ +{ + "id": 4962, + "slug": "jupyter-ci", + "name": "jupyter-ci", + "release_date": "2017-03-07", + "developers": [ + "Mark Woodbridge" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "all rights reserved" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112816828" + ], + "created_at": "2026-07-10T10:12:41.448968", + "updated_at": "2026-07-10T10:12:41.448968", + "url": "/v1/software/jupyter-ci" +} diff --git a/site/public/v1/software/jupyter-notebooks-at-national-library-of-estonia/index.json b/site/public/v1/software/jupyter-notebooks-at-national-library-of-estonia/index.json new file mode 100644 index 000000000000..3e7ddaaebab7 --- /dev/null +++ b/site/public/v1/software/jupyter-notebooks-at-national-library-of-estonia/index.json @@ -0,0 +1,19 @@ +{ + "id": 4963, + "slug": "jupyter-notebooks-at-national-library-of-estonia", + "name": "Jupyter Notebooks at National Library of Estonia", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111421153" + ], + "created_at": "2026-07-10T10:12:41.448968", + "updated_at": "2026-07-10T10:12:41.448968", + "url": "/v1/software/jupyter-notebooks-at-national-library-of-estonia" +} diff --git a/site/public/v1/software/jupyter-notebooks-lc-for-robots-data-exploration/index.json b/site/public/v1/software/jupyter-notebooks-lc-for-robots-data-exploration/index.json new file mode 100644 index 000000000000..860b189a1299 --- /dev/null +++ b/site/public/v1/software/jupyter-notebooks-lc-for-robots-data-exploration/index.json @@ -0,0 +1,21 @@ +{ + "id": 4964, + "slug": "jupyter-notebooks-lc-for-robots-data-exploration", + "name": "Jupyter Notebooks LC for robots data exploration", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Creative Commons Attribution" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111450546" + ], + "created_at": "2026-07-10T10:12:41.448968", + "updated_at": "2026-07-10T10:12:41.448968", + "url": "/v1/software/jupyter-notebooks-lc-for-robots-data-exploration" +} diff --git a/site/public/v1/software/jupyter-notebooks-to-access-e-periodica/index.json b/site/public/v1/software/jupyter-notebooks-to-access-e-periodica/index.json new file mode 100644 index 000000000000..1e4a5a361aad --- /dev/null +++ b/site/public/v1/software/jupyter-notebooks-to-access-e-periodica/index.json @@ -0,0 +1,19 @@ +{ + "id": 4965, + "slug": "jupyter-notebooks-to-access-e-periodica", + "name": "Jupyter notebooks to access e-periodica", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085061" + ], + "created_at": "2026-07-10T10:12:41.449881", + "updated_at": "2026-07-10T10:12:41.449881", + "url": "/v1/software/jupyter-notebooks-to-access-e-periodica" +} diff --git a/site/public/v1/software/jupyter-notebooks-to-access-e-rara/index.json b/site/public/v1/software/jupyter-notebooks-to-access-e-rara/index.json new file mode 100644 index 000000000000..df92459e5e08 --- /dev/null +++ b/site/public/v1/software/jupyter-notebooks-to-access-e-rara/index.json @@ -0,0 +1,19 @@ +{ + "id": 4966, + "slug": "jupyter-notebooks-to-access-e-rara", + "name": "Jupyter notebooks to access e-rara", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085062" + ], + "created_at": "2026-07-10T10:12:41.449881", + "updated_at": "2026-07-10T10:12:41.449881", + "url": "/v1/software/jupyter-notebooks-to-access-e-rara" +} diff --git a/site/public/v1/software/jupyter-notebooks-using-the-british-library-s-digital-collections-and-data/index.json b/site/public/v1/software/jupyter-notebooks-using-the-british-library-s-digital-collections-and-data/index.json new file mode 100644 index 000000000000..553eda636581 --- /dev/null +++ b/site/public/v1/software/jupyter-notebooks-using-the-british-library-s-digital-collections-and-data/index.json @@ -0,0 +1,19 @@ +{ + "id": 4967, + "slug": "jupyter-notebooks-using-the-british-library-s-digital-collections-and-data", + "name": "Jupyter Notebooks using the British Library’s Digital Collections and Data", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111421205" + ], + "created_at": "2026-07-10T10:12:41.449881", + "updated_at": "2026-07-10T10:12:41.449881", + "url": "/v1/software/jupyter-notebooks-using-the-british-library-s-digital-collections-and-data" +} diff --git a/site/public/v1/software/jupyterhub/index.json b/site/public/v1/software/jupyterhub/index.json new file mode 100644 index 000000000000..5c8f162ba32e --- /dev/null +++ b/site/public/v1/software/jupyterhub/index.json @@ -0,0 +1,21 @@ +{ + "id": 4968, + "slug": "jupyterhub", + "name": "JupyterHub", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "3-clause BSD License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q99439688" + ], + "created_at": "2026-07-10T10:12:41.450881", + "updated_at": "2026-07-10T10:12:41.450881", + "url": "/v1/software/jupyterhub" +} diff --git a/site/public/v1/software/just-gtfs/index.json b/site/public/v1/software/just-gtfs/index.json new file mode 100644 index 000000000000..117dab0bff96 --- /dev/null +++ b/site/public/v1/software/just-gtfs/index.json @@ -0,0 +1,21 @@ +{ + "id": 4969, + "slug": "just-gtfs", + "name": "just_gtfs", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117034667" + ], + "created_at": "2026-07-10T10:12:41.450881", + "updated_at": "2026-07-10T10:12:41.450881", + "url": "/v1/software/just-gtfs" +} diff --git a/site/public/v1/software/just-pdf/index.json b/site/public/v1/software/just-pdf/index.json new file mode 100644 index 000000000000..34e7b92daf1a --- /dev/null +++ b/site/public/v1/software/just-pdf/index.json @@ -0,0 +1,21 @@ +{ + "id": 4970, + "slug": "just-pdf", + "name": "JUST PDF", + "release_date": null, + "developers": [ + "JustSystems" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11226698" + ], + "created_at": "2026-07-10T10:12:41.450881", + "updated_at": "2026-07-10T10:12:41.450881", + "url": "/v1/software/just-pdf" +} diff --git a/site/public/v1/software/justcrm/index.json b/site/public/v1/software/justcrm/index.json new file mode 100644 index 000000000000..50d58a955424 --- /dev/null +++ b/site/public/v1/software/justcrm/index.json @@ -0,0 +1,19 @@ +{ + "id": 4971, + "slug": "justcrm", + "name": "JustCRM", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140099967" + ], + "created_at": "2026-07-10T10:12:41.451879", + "updated_at": "2026-07-10T10:12:41.451879", + "url": "/v1/software/justcrm" +} diff --git a/site/public/v1/software/justinmind/index.json b/site/public/v1/software/justinmind/index.json new file mode 100644 index 000000000000..89c9c0372309 --- /dev/null +++ b/site/public/v1/software/justinmind/index.json @@ -0,0 +1,19 @@ +{ + "id": 4972, + "slug": "justinmind", + "name": "Justinmind", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16255420" + ], + "created_at": "2026-07-10T10:12:41.451879", + "updated_at": "2026-07-10T10:12:41.451879", + "url": "/v1/software/justinmind" +} diff --git a/site/public/v1/software/juxta-commons/index.json b/site/public/v1/software/juxta-commons/index.json new file mode 100644 index 000000000000..d76c863426a6 --- /dev/null +++ b/site/public/v1/software/juxta-commons/index.json @@ -0,0 +1,19 @@ +{ + "id": 4973, + "slug": "juxta-commons", + "name": "Juxta Commons", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085065" + ], + "created_at": "2026-07-10T10:12:41.451879", + "updated_at": "2026-07-10T10:12:41.451879", + "url": "/v1/software/juxta-commons" +} diff --git a/site/public/v1/software/juxta/index.json b/site/public/v1/software/juxta/index.json new file mode 100644 index 000000000000..527b1e9ec6ab --- /dev/null +++ b/site/public/v1/software/juxta/index.json @@ -0,0 +1,19 @@ +{ + "id": 4974, + "slug": "juxta", + "name": "Juxta", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085063" + ], + "created_at": "2026-07-10T10:12:41.452880", + "updated_at": "2026-07-10T10:12:41.452880", + "url": "/v1/software/juxta" +} diff --git a/site/public/v1/software/juxtaeditions-humedit/index.json b/site/public/v1/software/juxtaeditions-humedit/index.json new file mode 100644 index 000000000000..ce7e0e79e7ea --- /dev/null +++ b/site/public/v1/software/juxtaeditions-humedit/index.json @@ -0,0 +1,19 @@ +{ + "id": 4975, + "slug": "juxtaeditions-humedit", + "name": "JuxtaEditions (HumEdit)", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085066" + ], + "created_at": "2026-07-10T10:12:41.452880", + "updated_at": "2026-07-10T10:12:41.452880", + "url": "/v1/software/juxtaeditions-humedit" +} diff --git a/site/public/v1/software/juxtaposejs/index.json b/site/public/v1/software/juxtaposejs/index.json new file mode 100644 index 000000000000..5319834c6efc --- /dev/null +++ b/site/public/v1/software/juxtaposejs/index.json @@ -0,0 +1,19 @@ +{ + "id": 4976, + "slug": "juxtaposejs", + "name": "JuxtaposeJS", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085067" + ], + "created_at": "2026-07-10T10:12:41.452880", + "updated_at": "2026-07-10T10:12:41.452880", + "url": "/v1/software/juxtaposejs" +} diff --git a/site/public/v1/software/jvenn/index.json b/site/public/v1/software/jvenn/index.json new file mode 100644 index 000000000000..71b089a90191 --- /dev/null +++ b/site/public/v1/software/jvenn/index.json @@ -0,0 +1,22 @@ +{ + "id": 4977, + "slug": "jvenn", + "name": "jvenn", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106465406" + ], + "created_at": "2026-07-10T10:12:41.453877", + "updated_at": "2026-07-10T10:12:41.453877", + "url": "/v1/software/jvenn" +} diff --git a/site/public/v1/software/jw-cad/index.json b/site/public/v1/software/jw-cad/index.json new file mode 100644 index 000000000000..8029ce598d1b --- /dev/null +++ b/site/public/v1/software/jw-cad/index.json @@ -0,0 +1,19 @@ +{ + "id": 4978, + "slug": "jw-cad", + "name": "Jw_cad", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11227049" + ], + "created_at": "2026-07-10T10:12:41.453877", + "updated_at": "2026-07-10T10:12:41.453877", + "url": "/v1/software/jw-cad" +} diff --git a/site/public/v1/software/jwalk/index.json b/site/public/v1/software/jwalk/index.json new file mode 100644 index 000000000000..dede77681da0 --- /dev/null +++ b/site/public/v1/software/jwalk/index.json @@ -0,0 +1,19 @@ +{ + "id": 4979, + "slug": "jwalk", + "name": "JWalk", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6109266" + ], + "created_at": "2026-07-10T10:12:41.453877", + "updated_at": "2026-07-10T10:12:41.453877", + "url": "/v1/software/jwalk" +} diff --git a/site/public/v1/software/k-box/index.json b/site/public/v1/software/k-box/index.json new file mode 100644 index 000000000000..9928d8e4588c --- /dev/null +++ b/site/public/v1/software/k-box/index.json @@ -0,0 +1,21 @@ +{ + "id": 4980, + "slug": "k-box", + "name": "K-box", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "PHP" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6322809" + ], + "created_at": "2026-07-10T10:12:41.454878", + "updated_at": "2026-07-10T10:12:41.454878", + "url": "/v1/software/k-box" +} diff --git a/site/public/v1/software/k-virtual-machine/index.json b/site/public/v1/software/k-virtual-machine/index.json new file mode 100644 index 000000000000..eb6fd870180f --- /dev/null +++ b/site/public/v1/software/k-virtual-machine/index.json @@ -0,0 +1,21 @@ +{ + "id": 4981, + "slug": "k-virtual-machine", + "name": "K virtual machine", + "release_date": null, + "developers": [ + "Oracle Corporation" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q823827" + ], + "created_at": "2026-07-10T10:12:41.454878", + "updated_at": "2026-07-10T10:12:41.454878", + "url": "/v1/software/k-virtual-machine" +} diff --git a/site/public/v1/software/k6/index.json b/site/public/v1/software/k6/index.json new file mode 100644 index 000000000000..0063459f5bab --- /dev/null +++ b/site/public/v1/software/k6/index.json @@ -0,0 +1,19 @@ +{ + "id": 4982, + "slug": "k6", + "name": "K6", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130611329" + ], + "created_at": "2026-07-10T10:12:41.454878", + "updated_at": "2026-07-10T10:12:41.454878", + "url": "/v1/software/k6" +} diff --git a/site/public/v1/software/k7-total-security/index.json b/site/public/v1/software/k7-total-security/index.json new file mode 100644 index 000000000000..63616f91f22f --- /dev/null +++ b/site/public/v1/software/k7-total-security/index.json @@ -0,0 +1,19 @@ +{ + "id": 4983, + "slug": "k7-total-security", + "name": "K7 Total Security", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6324658" + ], + "created_at": "2026-07-10T10:12:41.455878", + "updated_at": "2026-07-10T10:12:41.455878", + "url": "/v1/software/k7-total-security" +} diff --git a/site/public/v1/software/kaal/index.json b/site/public/v1/software/kaal/index.json new file mode 100644 index 000000000000..2ee4b4a4af8b --- /dev/null +++ b/site/public/v1/software/kaal/index.json @@ -0,0 +1,25 @@ +{ + "id": 4984, + "slug": "kaal", + "name": "Kaal", + "release_date": "2026-01-01", + "developers": [ + "Tempora Research" + ], + "publishers": [ + "Tempora Research" + ], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [ + "astrology" + ], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140263776" + ], + "created_at": "2026-07-10T10:12:41.455878", + "updated_at": "2026-07-10T10:12:41.455878", + "url": "/v1/software/kaal" +} diff --git a/site/public/v1/software/kahootz/index.json b/site/public/v1/software/kahootz/index.json new file mode 100644 index 000000000000..10b9bb40be84 --- /dev/null +++ b/site/public/v1/software/kahootz/index.json @@ -0,0 +1,19 @@ +{ + "id": 4985, + "slug": "kahootz", + "name": "Kahootz", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6347127" + ], + "created_at": "2026-07-10T10:12:41.455878", + "updated_at": "2026-07-10T10:12:41.455878", + "url": "/v1/software/kahootz" +} diff --git a/site/public/v1/software/kakao-t/index.json b/site/public/v1/software/kakao-t/index.json new file mode 100644 index 000000000000..762e88a0ad0b --- /dev/null +++ b/site/public/v1/software/kakao-t/index.json @@ -0,0 +1,19 @@ +{ + "id": 4986, + "slug": "kakao-t", + "name": "Kakao T", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q21825230" + ], + "created_at": "2026-07-10T10:12:41.456877", + "updated_at": "2026-07-10T10:12:41.456877", + "url": "/v1/software/kakao-t" +} diff --git a/site/public/v1/software/kakao-tv/index.json b/site/public/v1/software/kakao-tv/index.json new file mode 100644 index 000000000000..4fa661e733d4 --- /dev/null +++ b/site/public/v1/software/kakao-tv/index.json @@ -0,0 +1,19 @@ +{ + "id": 4987, + "slug": "kakao-tv", + "name": "Kakao TV", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q21825231" + ], + "created_at": "2026-07-10T10:12:41.456877", + "updated_at": "2026-07-10T10:12:41.456877", + "url": "/v1/software/kakao-tv" +} diff --git a/site/public/v1/software/kakaogroup/index.json b/site/public/v1/software/kakaogroup/index.json new file mode 100644 index 000000000000..4c0a4e2601ff --- /dev/null +++ b/site/public/v1/software/kakaogroup/index.json @@ -0,0 +1,19 @@ +{ + "id": 4988, + "slug": "kakaogroup", + "name": "KakaoGroup", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q21463253" + ], + "created_at": "2026-07-10T10:12:41.456877", + "updated_at": "2026-07-10T10:12:41.456877", + "url": "/v1/software/kakaogroup" +} diff --git a/site/public/v1/software/kakaopay/index.json b/site/public/v1/software/kakaopay/index.json new file mode 100644 index 000000000000..e4b55eca8ab7 --- /dev/null +++ b/site/public/v1/software/kakaopay/index.json @@ -0,0 +1,19 @@ +{ + "id": 4989, + "slug": "kakaopay", + "name": "KakaoPay", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q47490015" + ], + "created_at": "2026-07-10T10:12:41.457877", + "updated_at": "2026-07-10T10:12:41.457877", + "url": "/v1/software/kakaopay" +} diff --git a/site/public/v1/software/kakaostyle/index.json b/site/public/v1/software/kakaostyle/index.json new file mode 100644 index 000000000000..44e7c3422a10 --- /dev/null +++ b/site/public/v1/software/kakaostyle/index.json @@ -0,0 +1,19 @@ +{ + "id": 4990, + "slug": "kakaostyle", + "name": "KakaoStyle", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q21825228" + ], + "created_at": "2026-07-10T10:12:41.457877", + "updated_at": "2026-07-10T10:12:41.457877", + "url": "/v1/software/kakaostyle" +} diff --git a/site/public/v1/software/kalaban/index.json b/site/public/v1/software/kalaban/index.json new file mode 100644 index 000000000000..8a04a8a35b75 --- /dev/null +++ b/site/public/v1/software/kalaban/index.json @@ -0,0 +1,21 @@ +{ + "id": 4991, + "slug": "kalaban", + "name": "Kalaban", + "release_date": null, + "developers": [ + "TaxiApps" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138387513" + ], + "created_at": "2026-07-10T10:12:41.457877", + "updated_at": "2026-07-10T10:12:41.457877", + "url": "/v1/software/kalaban" +} diff --git a/site/public/v1/software/kaleidica/index.json b/site/public/v1/software/kaleidica/index.json new file mode 100644 index 000000000000..882c28b59fe8 --- /dev/null +++ b/site/public/v1/software/kaleidica/index.json @@ -0,0 +1,19 @@ +{ + "id": 4992, + "slug": "kaleidica", + "name": "Kaleidica", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25052062" + ], + "created_at": "2026-07-10T10:12:41.457877", + "updated_at": "2026-07-10T10:12:41.457877", + "url": "/v1/software/kaleidica" +} diff --git a/site/public/v1/software/kaleidoscope/index.json b/site/public/v1/software/kaleidoscope/index.json new file mode 100644 index 000000000000..a6b79ffbf878 --- /dev/null +++ b/site/public/v1/software/kaleidoscope/index.json @@ -0,0 +1,19 @@ +{ + "id": 4993, + "slug": "kaleidoscope", + "name": "Kaleidoscope", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085068" + ], + "created_at": "2026-07-10T10:12:41.458958", + "updated_at": "2026-07-10T10:12:41.458958", + "url": "/v1/software/kaleidoscope" +} diff --git a/site/public/v1/software/kali/index.json b/site/public/v1/software/kali/index.json new file mode 100644 index 000000000000..358943f9f3bb --- /dev/null +++ b/site/public/v1/software/kali/index.json @@ -0,0 +1,24 @@ +{ + "id": 4994, + "slug": "kali", + "name": "Kali", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "DOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "shareware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q338118" + ], + "created_at": "2026-07-10T10:12:41.458958", + "updated_at": "2026-07-10T10:12:41.458958", + "url": "/v1/software/kali" +} diff --git a/site/public/v1/software/kallisto/index.json b/site/public/v1/software/kallisto/index.json new file mode 100644 index 000000000000..a86b5a189d8b --- /dev/null +++ b/site/public/v1/software/kallisto/index.json @@ -0,0 +1,21 @@ +{ + "id": 4995, + "slug": "kallisto", + "name": "kallisto", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "2-clause BSD License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113047600" + ], + "created_at": "2026-07-10T10:12:41.458958", + "updated_at": "2026-07-10T10:12:41.458958", + "url": "/v1/software/kallisto" +} diff --git a/site/public/v1/software/kamas/index.json b/site/public/v1/software/kamas/index.json new file mode 100644 index 000000000000..81564e6efee8 --- /dev/null +++ b/site/public/v1/software/kamas/index.json @@ -0,0 +1,19 @@ +{ + "id": 4996, + "slug": "kamas", + "name": "Kamas", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18153808" + ], + "created_at": "2026-07-10T10:12:41.459966", + "updated_at": "2026-07-10T10:12:41.459966", + "url": "/v1/software/kamas" +} diff --git a/site/public/v1/software/kameleon-fireex-kfx/index.json b/site/public/v1/software/kameleon-fireex-kfx/index.json new file mode 100644 index 000000000000..7349ec0e65c6 --- /dev/null +++ b/site/public/v1/software/kameleon-fireex-kfx/index.json @@ -0,0 +1,19 @@ +{ + "id": 4997, + "slug": "kameleon-fireex-kfx", + "name": "Kameleon FireEx KFX", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17044465" + ], + "created_at": "2026-07-10T10:12:41.459966", + "updated_at": "2026-07-10T10:12:41.459966", + "url": "/v1/software/kameleon-fireex-kfx" +} diff --git a/site/public/v1/software/kamergotchi/index.json b/site/public/v1/software/kamergotchi/index.json new file mode 100644 index 000000000000..87d2dcceab2c --- /dev/null +++ b/site/public/v1/software/kamergotchi/index.json @@ -0,0 +1,24 @@ +{ + "id": 4998, + "slug": "kamergotchi", + "name": "KamerGotchi", + "release_date": "2017-02-19", + "developers": [ + "Human Factor TV" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [ + "serious game", + "advergame" + ], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28837867" + ], + "created_at": "2026-07-10T10:12:41.459966", + "updated_at": "2026-07-10T10:12:41.459966", + "url": "/v1/software/kamergotchi" +} diff --git a/site/public/v1/software/kamus/index.json b/site/public/v1/software/kamus/index.json new file mode 100644 index 000000000000..8b96288f2e5e --- /dev/null +++ b/site/public/v1/software/kamus/index.json @@ -0,0 +1,19 @@ +{ + "id": 4999, + "slug": "kamus", + "name": "Kamus", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25470986" + ], + "created_at": "2026-07-10T10:12:41.460936", + "updated_at": "2026-07-10T10:12:41.460936", + "url": "/v1/software/kamus" +} diff --git a/site/public/v1/software/kanban-tool/index.json b/site/public/v1/software/kanban-tool/index.json new file mode 100644 index 000000000000..ecd9b38124d6 --- /dev/null +++ b/site/public/v1/software/kanban-tool/index.json @@ -0,0 +1,19 @@ +{ + "id": 5000, + "slug": "kanban-tool", + "name": "Kanban Tool", + "release_date": "2009-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16586280" + ], + "created_at": "2026-07-10T10:12:41.460936", + "updated_at": "2026-07-10T10:12:41.460936", + "url": "/v1/software/kanban-tool" +} diff --git a/site/public/v1/software/kanboard/index.json b/site/public/v1/software/kanboard/index.json new file mode 100644 index 000000000000..2e00f7ccc93a --- /dev/null +++ b/site/public/v1/software/kanboard/index.json @@ -0,0 +1,21 @@ +{ + "id": 5001, + "slug": "kanboard", + "name": "Kanboard", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106199750" + ], + "created_at": "2026-07-10T10:12:41.460936", + "updated_at": "2026-07-10T10:12:41.460936", + "url": "/v1/software/kanboard" +} diff --git a/site/public/v1/software/kandinsky-music-painter/index.json b/site/public/v1/software/kandinsky-music-painter/index.json new file mode 100644 index 000000000000..1823c09d6738 --- /dev/null +++ b/site/public/v1/software/kandinsky-music-painter/index.json @@ -0,0 +1,19 @@ +{ + "id": 5002, + "slug": "kandinsky-music-painter", + "name": "Kandinsky Music Painter", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1723673" + ], + "created_at": "2026-07-10T10:12:41.461951", + "updated_at": "2026-07-10T10:12:41.461951", + "url": "/v1/software/kandinsky-music-painter" +} diff --git a/site/public/v1/software/kanji-data-box/index.json b/site/public/v1/software/kanji-data-box/index.json new file mode 100644 index 000000000000..97b8bad3d8e1 --- /dev/null +++ b/site/public/v1/software/kanji-data-box/index.json @@ -0,0 +1,21 @@ +{ + "id": 5003, + "slug": "kanji-data-box", + "name": "Kanji Data Box", + "release_date": null, + "developers": [ + "IBM Japan" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11565504" + ], + "created_at": "2026-07-10T10:12:41.461951", + "updated_at": "2026-07-10T10:12:41.461951", + "url": "/v1/software/kanji-data-box" +} diff --git a/site/public/v1/software/kant/index.json b/site/public/v1/software/kant/index.json new file mode 100644 index 000000000000..feb2d6dbb5d5 --- /dev/null +++ b/site/public/v1/software/kant/index.json @@ -0,0 +1,24 @@ +{ + "id": 5004, + "slug": "kant", + "name": "KANT", + "release_date": null, + "developers": [ + "Technische Universität Berlin" + ], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6325167" + ], + "created_at": "2026-07-10T10:12:41.461951", + "updated_at": "2026-07-10T10:12:41.461951", + "url": "/v1/software/kant" +} diff --git a/site/public/v1/software/kantei-san/index.json b/site/public/v1/software/kantei-san/index.json new file mode 100644 index 000000000000..607afc36e061 --- /dev/null +++ b/site/public/v1/software/kantei-san/index.json @@ -0,0 +1,21 @@ +{ + "id": 5005, + "slug": "kantei-san", + "name": "Kantei-san", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138794445" + ], + "created_at": "2026-07-10T10:12:41.461951", + "updated_at": "2026-07-10T10:12:41.462967", + "url": "/v1/software/kantei-san" +} diff --git a/site/public/v1/software/kaqaz/index.json b/site/public/v1/software/kaqaz/index.json new file mode 100644 index 000000000000..170ddf534ea5 --- /dev/null +++ b/site/public/v1/software/kaqaz/index.json @@ -0,0 +1,19 @@ +{ + "id": 5006, + "slug": "kaqaz", + "name": "kaqaz", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974963" + ], + "created_at": "2026-07-10T10:12:41.462967", + "updated_at": "2026-07-10T10:12:41.462967", + "url": "/v1/software/kaqaz" +} diff --git a/site/public/v1/software/kar2ouche/index.json b/site/public/v1/software/kar2ouche/index.json new file mode 100644 index 000000000000..3df68600abc2 --- /dev/null +++ b/site/public/v1/software/kar2ouche/index.json @@ -0,0 +1,21 @@ +{ + "id": 5007, + "slug": "kar2ouche", + "name": "Kar2ouche", + "release_date": null, + "developers": [ + "Immersive Education" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16852280" + ], + "created_at": "2026-07-10T10:12:41.462967", + "updated_at": "2026-07-10T10:12:41.462967", + "url": "/v1/software/kar2ouche" +} diff --git a/site/public/v1/software/karabo/index.json b/site/public/v1/software/karabo/index.json new file mode 100644 index 000000000000..7559843f1c49 --- /dev/null +++ b/site/public/v1/software/karabo/index.json @@ -0,0 +1,29 @@ +{ + "id": 5008, + "slug": "karabo", + "name": "Karabo", + "release_date": "2010-01-01", + "developers": [ + "European XFEL" + ], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [ + "Python" + ], + "licenses": [ + "Mozilla Public License, version 2.0", + "GNU General Public License, version 3.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124353158" + ], + "created_at": "2026-07-10T10:12:41.462967", + "updated_at": "2026-07-10T10:12:41.462967", + "url": "/v1/software/karabo" +} diff --git a/site/public/v1/software/karafun/index.json b/site/public/v1/software/karafun/index.json new file mode 100644 index 000000000000..c37ba707fc45 --- /dev/null +++ b/site/public/v1/software/karafun/index.json @@ -0,0 +1,19 @@ +{ + "id": 5009, + "slug": "karafun", + "name": "KaraFun", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q796768" + ], + "created_at": "2026-07-10T10:12:41.463964", + "updated_at": "2026-07-10T10:12:41.463964", + "url": "/v1/software/karafun" +} diff --git a/site/public/v1/software/karelia-watson/index.json b/site/public/v1/software/karelia-watson/index.json new file mode 100644 index 000000000000..0c656b7aabaa --- /dev/null +++ b/site/public/v1/software/karelia-watson/index.json @@ -0,0 +1,23 @@ +{ + "id": 5010, + "slug": "karelia-watson", + "name": "Karelia Watson", + "release_date": "2001-11-27", + "developers": [ + "Karelia Software" + ], + "publishers": [], + "operating_systems": [ + "macOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6369425" + ], + "created_at": "2026-07-10T10:12:41.463964", + "updated_at": "2026-07-10T10:12:41.463964", + "url": "/v1/software/karelia-watson" +} diff --git a/site/public/v1/software/karesansui/index.json b/site/public/v1/software/karesansui/index.json new file mode 100644 index 000000000000..267d6ab8577d --- /dev/null +++ b/site/public/v1/software/karesansui/index.json @@ -0,0 +1,23 @@ +{ + "id": 5011, + "slug": "karesansui", + "name": "Karesansui", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Python" + ], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11228397" + ], + "created_at": "2026-07-10T10:12:41.463964", + "updated_at": "2026-07-10T10:12:41.463964", + "url": "/v1/software/karesansui" +} diff --git a/site/public/v1/software/karta-gps/index.json b/site/public/v1/software/karta-gps/index.json new file mode 100644 index 000000000000..8327ab29f058 --- /dev/null +++ b/site/public/v1/software/karta-gps/index.json @@ -0,0 +1,19 @@ +{ + "id": 5012, + "slug": "karta-gps", + "name": "Karta GPS", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q39053173" + ], + "created_at": "2026-07-10T10:12:41.463964", + "updated_at": "2026-07-10T10:12:41.463964", + "url": "/v1/software/karta-gps" +} diff --git a/site/public/v1/software/kartograph/index.json b/site/public/v1/software/kartograph/index.json new file mode 100644 index 000000000000..14c49793092d --- /dev/null +++ b/site/public/v1/software/kartograph/index.json @@ -0,0 +1,19 @@ +{ + "id": 5013, + "slug": "kartograph", + "name": "Kartograph", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085069" + ], + "created_at": "2026-07-10T10:12:41.464968", + "updated_at": "2026-07-10T10:12:41.464968", + "url": "/v1/software/kartograph" +} diff --git a/site/public/v1/software/kasane-teto/index.json b/site/public/v1/software/kasane-teto/index.json new file mode 100644 index 000000000000..826b8bb0ad83 --- /dev/null +++ b/site/public/v1/software/kasane-teto/index.json @@ -0,0 +1,19 @@ +{ + "id": 5014, + "slug": "kasane-teto", + "name": "Kasane Teto", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5147714" + ], + "created_at": "2026-07-10T10:12:41.464968", + "updated_at": "2026-07-10T10:12:41.464968", + "url": "/v1/software/kasane-teto" +} diff --git a/site/public/v1/software/kaspersky-mobile-security/index.json b/site/public/v1/software/kaspersky-mobile-security/index.json new file mode 100644 index 000000000000..a85611c680c6 --- /dev/null +++ b/site/public/v1/software/kaspersky-mobile-security/index.json @@ -0,0 +1,21 @@ +{ + "id": 5015, + "slug": "kaspersky-mobile-security", + "name": "Kaspersky Mobile Security", + "release_date": null, + "developers": [ + "Kaspersky Lab" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1322259" + ], + "created_at": "2026-07-10T10:12:41.465952", + "updated_at": "2026-07-10T10:12:41.465952", + "url": "/v1/software/kaspersky-mobile-security" +} diff --git a/site/public/v1/software/katalon-studio/index.json b/site/public/v1/software/katalon-studio/index.json new file mode 100644 index 000000000000..b68d33c878bb --- /dev/null +++ b/site/public/v1/software/katalon-studio/index.json @@ -0,0 +1,27 @@ +{ + "id": 5016, + "slug": "katalon-studio", + "name": "Katalon Studio", + "release_date": "2015-01-01", + "developers": [], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [ + "Java", + "Apache Groovy" + ], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q53815842" + ], + "created_at": "2026-07-10T10:12:41.465952", + "updated_at": "2026-07-10T10:12:41.465952", + "url": "/v1/software/katalon-studio" +} diff --git a/site/public/v1/software/kazaa-lite/index.json b/site/public/v1/software/kazaa-lite/index.json new file mode 100644 index 000000000000..5deac11b6b12 --- /dev/null +++ b/site/public/v1/software/kazaa-lite/index.json @@ -0,0 +1,21 @@ +{ + "id": 5017, + "slug": "kazaa-lite", + "name": "Kazaa Lite", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1285474" + ], + "created_at": "2026-07-10T10:12:41.465952", + "updated_at": "2026-07-10T10:12:41.465952", + "url": "/v1/software/kazaa-lite" +} diff --git a/site/public/v1/software/kbie/index.json b/site/public/v1/software/kbie/index.json new file mode 100644 index 000000000000..655fd74be426 --- /dev/null +++ b/site/public/v1/software/kbie/index.json @@ -0,0 +1,19 @@ +{ + "id": 5018, + "slug": "kbie", + "name": "kbie", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140230573" + ], + "created_at": "2026-07-10T10:12:41.465952", + "updated_at": "2026-07-10T10:12:41.465952", + "url": "/v1/software/kbie" +} diff --git a/site/public/v1/software/kcm-fcitx/index.json b/site/public/v1/software/kcm-fcitx/index.json new file mode 100644 index 000000000000..f99902f7dcf5 --- /dev/null +++ b/site/public/v1/software/kcm-fcitx/index.json @@ -0,0 +1,19 @@ +{ + "id": 5019, + "slug": "kcm-fcitx", + "name": "kcm-fcitx", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974964" + ], + "created_at": "2026-07-10T10:12:41.466877", + "updated_at": "2026-07-10T10:12:41.466877", + "url": "/v1/software/kcm-fcitx" +} diff --git a/site/public/v1/software/kdewebdev/index.json b/site/public/v1/software/kdewebdev/index.json new file mode 100644 index 000000000000..fa218eb6befa --- /dev/null +++ b/site/public/v1/software/kdewebdev/index.json @@ -0,0 +1,19 @@ +{ + "id": 5020, + "slug": "kdewebdev", + "name": "Kdewebdev", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1054528" + ], + "created_at": "2026-07-10T10:12:41.466877", + "updated_at": "2026-07-10T10:12:41.466877", + "url": "/v1/software/kdewebdev" +} diff --git a/site/public/v1/software/kdiskfree/index.json b/site/public/v1/software/kdiskfree/index.json new file mode 100644 index 000000000000..0cdac8d7231b --- /dev/null +++ b/site/public/v1/software/kdiskfree/index.json @@ -0,0 +1,23 @@ +{ + "id": 5021, + "slug": "kdiskfree", + "name": "KDiskFree", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Unix-like operating system" + ], + "programming_languages": [], + "licenses": [ + "GNU General Public License, version 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4042119" + ], + "created_at": "2026-07-10T10:12:41.466877", + "updated_at": "2026-07-10T10:12:41.466877", + "url": "/v1/software/kdiskfree" +} diff --git a/site/public/v1/software/kdocker/index.json b/site/public/v1/software/kdocker/index.json new file mode 100644 index 000000000000..479324528a2c --- /dev/null +++ b/site/public/v1/software/kdocker/index.json @@ -0,0 +1,19 @@ +{ + "id": 5022, + "slug": "kdocker", + "name": "KDocker", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62853014" + ], + "created_at": "2026-07-10T10:12:41.467973", + "updated_at": "2026-07-10T10:12:41.467973", + "url": "/v1/software/kdocker" +} diff --git a/site/public/v1/software/keel/index.json b/site/public/v1/software/keel/index.json new file mode 100644 index 000000000000..bcf26c7e4ab5 --- /dev/null +++ b/site/public/v1/software/keel/index.json @@ -0,0 +1,21 @@ +{ + "id": 5023, + "slug": "keel", + "name": "Keel", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Java" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5668776" + ], + "created_at": "2026-07-10T10:12:41.467973", + "updated_at": "2026-07-10T10:12:41.467973", + "url": "/v1/software/keel" +} diff --git a/site/public/v1/software/keepsoft/index.json b/site/public/v1/software/keepsoft/index.json new file mode 100644 index 000000000000..f158c2e3a459 --- /dev/null +++ b/site/public/v1/software/keepsoft/index.json @@ -0,0 +1,27 @@ +{ + "id": 5024, + "slug": "keepsoft", + "name": "keepsoft", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "iOS", + "Windows Mobile", + "Microsoft Windows" + ], + "programming_languages": [ + "Delphi" + ], + "licenses": [ + "shareware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4165764" + ], + "created_at": "2026-07-10T10:12:41.467973", + "updated_at": "2026-07-10T10:12:41.467973", + "url": "/v1/software/keepsoft" +} diff --git a/site/public/v1/software/keepsolid-vpn-unlimited/index.json b/site/public/v1/software/keepsolid-vpn-unlimited/index.json new file mode 100644 index 000000000000..5919e6791a6d --- /dev/null +++ b/site/public/v1/software/keepsolid-vpn-unlimited/index.json @@ -0,0 +1,25 @@ +{ + "id": 5025, + "slug": "keepsolid-vpn-unlimited", + "name": "KeepSolid VPN Unlimited", + "release_date": null, + "developers": [ + "KeepSolid" + ], + "publishers": [], + "operating_systems": [ + "iOS", + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60762288" + ], + "created_at": "2026-07-10T10:12:41.467973", + "updated_at": "2026-07-10T10:12:41.467973", + "url": "/v1/software/keepsolid-vpn-unlimited" +} diff --git a/site/public/v1/software/keepvault/index.json b/site/public/v1/software/keepvault/index.json new file mode 100644 index 000000000000..7abfa004a0a0 --- /dev/null +++ b/site/public/v1/software/keepvault/index.json @@ -0,0 +1,19 @@ +{ + "id": 5026, + "slug": "keepvault", + "name": "KeepVault", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16255667" + ], + "created_at": "2026-07-10T10:12:41.468971", + "updated_at": "2026-07-10T10:12:41.468971", + "url": "/v1/software/keepvault" +} diff --git a/site/public/v1/software/keka/index.json b/site/public/v1/software/keka/index.json new file mode 100644 index 000000000000..83600891af99 --- /dev/null +++ b/site/public/v1/software/keka/index.json @@ -0,0 +1,21 @@ +{ + "id": 5027, + "slug": "keka", + "name": "Keka", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "macOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105950097" + ], + "created_at": "2026-07-10T10:12:41.468971", + "updated_at": "2026-07-10T10:12:41.468971", + "url": "/v1/software/keka" +} diff --git a/site/public/v1/software/kekul-program/index.json b/site/public/v1/software/kekul-program/index.json new file mode 100644 index 000000000000..d556b689dba3 --- /dev/null +++ b/site/public/v1/software/kekul-program/index.json @@ -0,0 +1,19 @@ +{ + "id": 5028, + "slug": "kekul-program", + "name": "Kekulé Program", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6385393" + ], + "created_at": "2026-07-10T10:12:41.469979", + "updated_at": "2026-07-10T10:12:41.469979", + "url": "/v1/software/kekul-program" +} diff --git a/site/public/v1/software/kelkoo/index.json b/site/public/v1/software/kelkoo/index.json new file mode 100644 index 000000000000..e78b65c83c0e --- /dev/null +++ b/site/public/v1/software/kelkoo/index.json @@ -0,0 +1,19 @@ +{ + "id": 5029, + "slug": "kelkoo", + "name": "Kelkoo", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1639237" + ], + "created_at": "2026-07-10T10:12:41.469979", + "updated_at": "2026-07-10T10:12:41.469979", + "url": "/v1/software/kelkoo" +} diff --git a/site/public/v1/software/keobat/index.json b/site/public/v1/software/keobat/index.json new file mode 100644 index 000000000000..63204049c79e --- /dev/null +++ b/site/public/v1/software/keobat/index.json @@ -0,0 +1,19 @@ +{ + "id": 5030, + "slug": "keobat", + "name": "KeoBat", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139827047" + ], + "created_at": "2026-07-10T10:12:41.469979", + "updated_at": "2026-07-10T10:12:41.469979", + "url": "/v1/software/keobat" +} diff --git a/site/public/v1/software/kepler-scientific-workflow-system/index.json b/site/public/v1/software/kepler-scientific-workflow-system/index.json new file mode 100644 index 000000000000..4d86f1aa2253 --- /dev/null +++ b/site/public/v1/software/kepler-scientific-workflow-system/index.json @@ -0,0 +1,30 @@ +{ + "id": 5031, + "slug": "kepler-scientific-workflow-system", + "name": "Kepler scientific workflow system", + "release_date": null, + "developers": [ + "University of California, San Diego", + "University of California, Santa Barbara", + "University of California, Davis" + ], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [ + "Java" + ], + "licenses": [ + "Berkeley Software Distribution" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6393209" + ], + "created_at": "2026-07-10T10:12:41.469979", + "updated_at": "2026-07-10T10:12:41.469979", + "url": "/v1/software/kepler-scientific-workflow-system" +} diff --git a/site/public/v1/software/keploy/index.json b/site/public/v1/software/keploy/index.json new file mode 100644 index 000000000000..a9e948d09f3b --- /dev/null +++ b/site/public/v1/software/keploy/index.json @@ -0,0 +1,21 @@ +{ + "id": 5032, + "slug": "keploy", + "name": "Keploy", + "release_date": "2022-01-28", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Apache Software License 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137395272" + ], + "created_at": "2026-07-10T10:12:41.470935", + "updated_at": "2026-07-10T10:12:41.470935", + "url": "/v1/software/keploy" +} diff --git a/site/public/v1/software/keras/index.json b/site/public/v1/software/keras/index.json new file mode 100644 index 000000000000..d7aa4491f3ad --- /dev/null +++ b/site/public/v1/software/keras/index.json @@ -0,0 +1,26 @@ +{ + "id": 5033, + "slug": "keras", + "name": "Keras", + "release_date": null, + "developers": [ + "François Chollet" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Python" + ], + "licenses": [ + "Apache Software License 2.0", + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28470421" + ], + "created_at": "2026-07-10T10:12:41.470935", + "updated_at": "2026-07-10T10:12:41.470935", + "url": "/v1/software/keras" +} diff --git a/site/public/v1/software/kerio-connect/index.json b/site/public/v1/software/kerio-connect/index.json new file mode 100644 index 000000000000..d983395b550f --- /dev/null +++ b/site/public/v1/software/kerio-connect/index.json @@ -0,0 +1,21 @@ +{ + "id": 5034, + "slug": "kerio-connect", + "name": "Kerio Connect", + "release_date": null, + "developers": [ + "Kerio Technologies" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3195443" + ], + "created_at": "2026-07-10T10:12:41.470935", + "updated_at": "2026-07-10T10:12:41.470935", + "url": "/v1/software/kerio-connect" +} diff --git a/site/public/v1/software/kerliix-oauth/index.json b/site/public/v1/software/kerliix-oauth/index.json new file mode 100644 index 000000000000..ca2d39ffef0e --- /dev/null +++ b/site/public/v1/software/kerliix-oauth/index.json @@ -0,0 +1,28 @@ +{ + "id": 5035, + "slug": "kerliix-oauth", + "name": "kerliix-oauth", + "release_date": "2025-10-28", + "developers": [ + "Kerliix Corporation Limited" + ], + "publishers": [ + "Kerliix Corporation Limited" + ], + "operating_systems": [], + "programming_languages": [ + "Python", + "TypeScript" + ], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136657237" + ], + "created_at": "2026-07-10T10:12:41.470935", + "updated_at": "2026-07-10T10:12:41.470935", + "url": "/v1/software/kerliix-oauth" +} diff --git a/site/public/v1/software/kernel-marker/index.json b/site/public/v1/software/kernel-marker/index.json new file mode 100644 index 000000000000..ac215e9e9e3c --- /dev/null +++ b/site/public/v1/software/kernel-marker/index.json @@ -0,0 +1,19 @@ +{ + "id": 5036, + "slug": "kernel-marker", + "name": "Kernel marker", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6394195" + ], + "created_at": "2026-07-10T10:12:41.471936", + "updated_at": "2026-07-10T10:12:41.471936", + "url": "/v1/software/kernel-marker" +} diff --git a/site/public/v1/software/kernel-relocation/index.json b/site/public/v1/software/kernel-relocation/index.json new file mode 100644 index 000000000000..622222f33eb7 --- /dev/null +++ b/site/public/v1/software/kernel-relocation/index.json @@ -0,0 +1,19 @@ +{ + "id": 5037, + "slug": "kernel-relocation", + "name": "Kernel relocation", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6394204" + ], + "created_at": "2026-07-10T10:12:41.471936", + "updated_at": "2026-07-10T10:12:41.471936", + "url": "/v1/software/kernel-relocation" +} diff --git a/site/public/v1/software/kernelcad/index.json b/site/public/v1/software/kernelcad/index.json new file mode 100644 index 000000000000..9f4f1c0b715a --- /dev/null +++ b/site/public/v1/software/kernelcad/index.json @@ -0,0 +1,19 @@ +{ + "id": 5038, + "slug": "kernelcad", + "name": "KernelCAD", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17093023" + ], + "created_at": "2026-07-10T10:12:41.471936", + "updated_at": "2026-07-10T10:12:41.471936", + "url": "/v1/software/kernelcad" +} diff --git a/site/public/v1/software/kernelex/index.json b/site/public/v1/software/kernelex/index.json new file mode 100644 index 000000000000..ab6629a90e0d --- /dev/null +++ b/site/public/v1/software/kernelex/index.json @@ -0,0 +1,19 @@ +{ + "id": 5039, + "slug": "kernelex", + "name": "KernelEx", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q12029175" + ], + "created_at": "2026-07-10T10:12:41.472953", + "updated_at": "2026-07-10T10:12:41.472953", + "url": "/v1/software/kernelex" +} diff --git a/site/public/v1/software/kestra/index.json b/site/public/v1/software/kestra/index.json new file mode 100644 index 000000000000..ede099be23b7 --- /dev/null +++ b/site/public/v1/software/kestra/index.json @@ -0,0 +1,25 @@ +{ + "id": 5040, + "slug": "kestra", + "name": "Kestra", + "release_date": null, + "developers": [ + "Kestra Technologies" + ], + "publishers": [ + "Kestra Technologies" + ], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Apache Software License 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139806487" + ], + "created_at": "2026-07-10T10:12:41.472953", + "updated_at": "2026-07-10T10:12:41.472953", + "url": "/v1/software/kestra" +} diff --git a/site/public/v1/software/kevoree/index.json b/site/public/v1/software/kevoree/index.json new file mode 100644 index 000000000000..147eb7794d67 --- /dev/null +++ b/site/public/v1/software/kevoree/index.json @@ -0,0 +1,19 @@ +{ + "id": 5041, + "slug": "kevoree", + "name": "Kevoree", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q14655123" + ], + "created_at": "2026-07-10T10:12:41.472953", + "updated_at": "2026-07-10T10:12:41.472953", + "url": "/v1/software/kevoree" +} diff --git a/site/public/v1/software/kexec/index.json b/site/public/v1/software/kexec/index.json new file mode 100644 index 000000000000..ee21e7ea4527 --- /dev/null +++ b/site/public/v1/software/kexec/index.json @@ -0,0 +1,19 @@ +{ + "id": 5042, + "slug": "kexec", + "name": "kexec", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6397983" + ], + "created_at": "2026-07-10T10:12:41.473951", + "updated_at": "2026-07-10T10:12:41.473951", + "url": "/v1/software/kexec" +} diff --git a/site/public/v1/software/keyboard-maestro/index.json b/site/public/v1/software/keyboard-maestro/index.json new file mode 100644 index 000000000000..5432f7f547b0 --- /dev/null +++ b/site/public/v1/software/keyboard-maestro/index.json @@ -0,0 +1,19 @@ +{ + "id": 5043, + "slug": "keyboard-maestro", + "name": "Keyboard Maestro", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18153129" + ], + "created_at": "2026-07-10T10:12:41.473951", + "updated_at": "2026-07-10T10:12:41.473951", + "url": "/v1/software/keyboard-maestro" +} diff --git a/site/public/v1/software/keyboard-ninja/index.json b/site/public/v1/software/keyboard-ninja/index.json new file mode 100644 index 000000000000..8235ac6ba3db --- /dev/null +++ b/site/public/v1/software/keyboard-ninja/index.json @@ -0,0 +1,19 @@ +{ + "id": 5044, + "slug": "keyboard-ninja", + "name": "Keyboard Ninja", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4042173" + ], + "created_at": "2026-07-10T10:12:41.473951", + "updated_at": "2026-07-10T10:12:41.473951", + "url": "/v1/software/keyboard-ninja" +} diff --git a/site/public/v1/software/keychain-q62863995/index.json b/site/public/v1/software/keychain-q62863995/index.json new file mode 100644 index 000000000000..9308b5db8ce2 --- /dev/null +++ b/site/public/v1/software/keychain-q62863995/index.json @@ -0,0 +1,19 @@ +{ + "id": 5045, + "slug": "keychain-q62863995", + "name": "keychain", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62863995" + ], + "created_at": "2026-07-10T10:12:41.474957", + "updated_at": "2026-07-10T10:12:41.474957", + "url": "/v1/software/keychain-q62863995" +} diff --git a/site/public/v1/software/keychain/index.json b/site/public/v1/software/keychain/index.json new file mode 100644 index 000000000000..7d1231913e7e --- /dev/null +++ b/site/public/v1/software/keychain/index.json @@ -0,0 +1,23 @@ +{ + "id": 5046, + "slug": "keychain", + "name": "Keychain", + "release_date": null, + "developers": [ + "Apple Inc." + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Apple Public Source License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q250173" + ], + "created_at": "2026-07-10T10:12:41.474957", + "updated_at": "2026-07-10T10:12:41.474957", + "url": "/v1/software/keychain" +} diff --git a/site/public/v1/software/keycreator/index.json b/site/public/v1/software/keycreator/index.json new file mode 100644 index 000000000000..89d0a9de6bb7 --- /dev/null +++ b/site/public/v1/software/keycreator/index.json @@ -0,0 +1,21 @@ +{ + "id": 5047, + "slug": "keycreator", + "name": "KeyCreator", + "release_date": "2004-01-01", + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q20874827" + ], + "created_at": "2026-07-10T10:12:41.474957", + "updated_at": "2026-07-10T10:12:41.474957", + "url": "/v1/software/keycreator" +} diff --git a/site/public/v1/software/keyhole/index.json b/site/public/v1/software/keyhole/index.json new file mode 100644 index 000000000000..074ed37f93bd --- /dev/null +++ b/site/public/v1/software/keyhole/index.json @@ -0,0 +1,19 @@ +{ + "id": 5048, + "slug": "keyhole", + "name": "Keyhole", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085070" + ], + "created_at": "2026-07-10T10:12:41.475877", + "updated_at": "2026-07-10T10:12:41.475877", + "url": "/v1/software/keyhole" +} diff --git a/site/public/v1/software/keyholetv/index.json b/site/public/v1/software/keyholetv/index.json new file mode 100644 index 000000000000..d8ede45e9db3 --- /dev/null +++ b/site/public/v1/software/keyholetv/index.json @@ -0,0 +1,24 @@ +{ + "id": 5049, + "slug": "keyholetv", + "name": "KeyHoleTV", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Mac operating system", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2625095" + ], + "created_at": "2026-07-10T10:12:41.475877", + "updated_at": "2026-07-10T10:12:41.475877", + "url": "/v1/software/keyholetv" +} diff --git a/site/public/v1/software/keylight/index.json b/site/public/v1/software/keylight/index.json new file mode 100644 index 000000000000..fcf07e178f0b --- /dev/null +++ b/site/public/v1/software/keylight/index.json @@ -0,0 +1,19 @@ +{ + "id": 5050, + "slug": "keylight", + "name": "Keylight", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3195866" + ], + "created_at": "2026-07-10T10:12:41.475877", + "updated_at": "2026-07-10T10:12:41.475877", + "url": "/v1/software/keylight" +} diff --git a/site/public/v1/software/keymagic/index.json b/site/public/v1/software/keymagic/index.json new file mode 100644 index 000000000000..b4d6c035c399 --- /dev/null +++ b/site/public/v1/software/keymagic/index.json @@ -0,0 +1,22 @@ +{ + "id": 5051, + "slug": "keymagic", + "name": "Keymagic", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q19695058" + ], + "created_at": "2026-07-10T10:12:41.475877", + "updated_at": "2026-07-10T10:12:41.475877", + "url": "/v1/software/keymagic" +} diff --git a/site/public/v1/software/keyman/index.json b/site/public/v1/software/keyman/index.json new file mode 100644 index 000000000000..013fd3eb37fc --- /dev/null +++ b/site/public/v1/software/keyman/index.json @@ -0,0 +1,24 @@ +{ + "id": 5052, + "slug": "keyman", + "name": "Keyman", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139832007" + ], + "created_at": "2026-07-10T10:12:41.476977", + "updated_at": "2026-07-10T10:12:41.476977", + "url": "/v1/software/keyman" +} diff --git a/site/public/v1/software/keyrocket/index.json b/site/public/v1/software/keyrocket/index.json new file mode 100644 index 000000000000..84611fc882d6 --- /dev/null +++ b/site/public/v1/software/keyrocket/index.json @@ -0,0 +1,19 @@ +{ + "id": 5053, + "slug": "keyrocket", + "name": "KeyRocket", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6398002" + ], + "created_at": "2026-07-10T10:12:41.476977", + "updated_at": "2026-07-10T10:12:41.476977", + "url": "/v1/software/keyrocket" +} diff --git a/site/public/v1/software/keystone/index.json b/site/public/v1/software/keystone/index.json new file mode 100644 index 000000000000..08b28a763c9d --- /dev/null +++ b/site/public/v1/software/keystone/index.json @@ -0,0 +1,21 @@ +{ + "id": 5054, + "slug": "keystone", + "name": "keystone", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Apache License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974970" + ], + "created_at": "2026-07-10T10:12:41.477946", + "updated_at": "2026-07-10T10:12:41.477946", + "url": "/v1/software/keystone" +} diff --git a/site/public/v1/software/kflow/index.json b/site/public/v1/software/kflow/index.json new file mode 100644 index 000000000000..5d44ebe6b470 --- /dev/null +++ b/site/public/v1/software/kflow/index.json @@ -0,0 +1,21 @@ +{ + "id": 5055, + "slug": "kflow", + "name": "KFlow", + "release_date": null, + "developers": [ + "Kentech" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139119515" + ], + "created_at": "2026-07-10T10:12:41.477946", + "updated_at": "2026-07-10T10:12:41.477946", + "url": "/v1/software/kflow" +} diff --git a/site/public/v1/software/kh-coder/index.json b/site/public/v1/software/kh-coder/index.json new file mode 100644 index 000000000000..7dfb683aa700 --- /dev/null +++ b/site/public/v1/software/kh-coder/index.json @@ -0,0 +1,19 @@ +{ + "id": 5056, + "slug": "kh-coder", + "name": "KH Coder", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085071" + ], + "created_at": "2026-07-10T10:12:41.477946", + "updated_at": "2026-07-10T10:12:41.477946", + "url": "/v1/software/kh-coder" +} diff --git a/site/public/v1/software/khimera/index.json b/site/public/v1/software/khimera/index.json new file mode 100644 index 000000000000..696837e39334 --- /dev/null +++ b/site/public/v1/software/khimera/index.json @@ -0,0 +1,19 @@ +{ + "id": 5057, + "slug": "khimera", + "name": "Khimera", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6401644" + ], + "created_at": "2026-07-10T10:12:41.477946", + "updated_at": "2026-07-10T10:12:41.477946", + "url": "/v1/software/khimera" +} diff --git a/site/public/v1/software/kia-uvo/index.json b/site/public/v1/software/kia-uvo/index.json new file mode 100644 index 000000000000..a5d503cfd0ab --- /dev/null +++ b/site/public/v1/software/kia-uvo/index.json @@ -0,0 +1,21 @@ +{ + "id": 5058, + "slug": "kia-uvo", + "name": "Kia Uvo", + "release_date": null, + "developers": [ + "Kia" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3815033" + ], + "created_at": "2026-07-10T10:12:41.478985", + "updated_at": "2026-07-10T10:12:41.478985", + "url": "/v1/software/kia-uvo" +} diff --git a/site/public/v1/software/kickidler/index.json b/site/public/v1/software/kickidler/index.json new file mode 100644 index 000000000000..4964c2c9d793 --- /dev/null +++ b/site/public/v1/software/kickidler/index.json @@ -0,0 +1,19 @@ +{ + "id": 5059, + "slug": "kickidler", + "name": "Kickidler", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q104975578" + ], + "created_at": "2026-07-10T10:12:41.478985", + "updated_at": "2026-07-10T10:12:41.478985", + "url": "/v1/software/kickidler" +} diff --git a/site/public/v1/software/kiddesk/index.json b/site/public/v1/software/kiddesk/index.json new file mode 100644 index 000000000000..bcd5ef65f7ac --- /dev/null +++ b/site/public/v1/software/kiddesk/index.json @@ -0,0 +1,19 @@ +{ + "id": 5060, + "slug": "kiddesk", + "name": "KidDesk", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6404408" + ], + "created_at": "2026-07-10T10:12:41.479950", + "updated_at": "2026-07-10T10:12:41.479950", + "url": "/v1/software/kiddesk" +} diff --git a/site/public/v1/software/kidentitymanagement/index.json b/site/public/v1/software/kidentitymanagement/index.json new file mode 100644 index 000000000000..7f84c082d2dc --- /dev/null +++ b/site/public/v1/software/kidentitymanagement/index.json @@ -0,0 +1,19 @@ +{ + "id": 5061, + "slug": "kidentitymanagement", + "name": "kidentitymanagement", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065610" + ], + "created_at": "2026-07-10T10:12:41.479950", + "updated_at": "2026-07-10T10:12:41.479950", + "url": "/v1/software/kidentitymanagement" +} diff --git a/site/public/v1/software/kidguard/index.json b/site/public/v1/software/kidguard/index.json new file mode 100644 index 000000000000..da534d438546 --- /dev/null +++ b/site/public/v1/software/kidguard/index.json @@ -0,0 +1,19 @@ +{ + "id": 5062, + "slug": "kidguard", + "name": "KidGuard", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q55640256" + ], + "created_at": "2026-07-10T10:12:41.479950", + "updated_at": "2026-07-10T10:12:41.479950", + "url": "/v1/software/kidguard" +} diff --git a/site/public/v1/software/kiekko-tk/index.json b/site/public/v1/software/kiekko-tk/index.json new file mode 100644 index 000000000000..f8a9c4023a81 --- /dev/null +++ b/site/public/v1/software/kiekko-tk/index.json @@ -0,0 +1,19 @@ +{ + "id": 5063, + "slug": "kiekko-tk", + "name": "kiekko.tk", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6405207" + ], + "created_at": "2026-07-10T10:12:41.479950", + "updated_at": "2026-07-10T10:12:41.479950", + "url": "/v1/software/kiekko-tk" +} diff --git a/site/public/v1/software/killer-soft/index.json b/site/public/v1/software/killer-soft/index.json new file mode 100644 index 000000000000..639e0784a2bb --- /dev/null +++ b/site/public/v1/software/killer-soft/index.json @@ -0,0 +1,19 @@ +{ + "id": 5064, + "slug": "killer-soft", + "name": "killer soft", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131863491" + ], + "created_at": "2026-07-10T10:12:41.480974", + "updated_at": "2026-07-10T10:12:41.480974", + "url": "/v1/software/killer-soft" +} diff --git a/site/public/v1/software/kimble/index.json b/site/public/v1/software/kimble/index.json new file mode 100644 index 000000000000..ab6cbb1b2f0c --- /dev/null +++ b/site/public/v1/software/kimble/index.json @@ -0,0 +1,19 @@ +{ + "id": 5065, + "slug": "kimble", + "name": "Kimble", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60775051" + ], + "created_at": "2026-07-10T10:12:41.480974", + "updated_at": "2026-07-10T10:12:41.480974", + "url": "/v1/software/kimble" +} diff --git a/site/public/v1/software/kindhoa/index.json b/site/public/v1/software/kindhoa/index.json new file mode 100644 index 000000000000..fbc772cfcb6e --- /dev/null +++ b/site/public/v1/software/kindhoa/index.json @@ -0,0 +1,21 @@ +{ + "id": 5066, + "slug": "kindhoa", + "name": "KindHOA", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "web browser" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140375014" + ], + "created_at": "2026-07-10T10:12:41.481949", + "updated_at": "2026-07-10T10:12:41.481949", + "url": "/v1/software/kindhoa" +} diff --git a/site/public/v1/software/kindwords/index.json b/site/public/v1/software/kindwords/index.json new file mode 100644 index 000000000000..71866836ff95 --- /dev/null +++ b/site/public/v1/software/kindwords/index.json @@ -0,0 +1,19 @@ +{ + "id": 5067, + "slug": "kindwords", + "name": "KindWords", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6410493" + ], + "created_at": "2026-07-10T10:12:41.481949", + "updated_at": "2026-07-10T10:12:41.481949", + "url": "/v1/software/kindwords" +} diff --git a/site/public/v1/software/kinect/index.json b/site/public/v1/software/kinect/index.json new file mode 100644 index 000000000000..f0961529b71f --- /dev/null +++ b/site/public/v1/software/kinect/index.json @@ -0,0 +1,21 @@ +{ + "id": 5068, + "slug": "kinect", + "name": "Kinect", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q474334" + ], + "created_at": "2026-07-10T10:12:41.481949", + "updated_at": "2026-07-10T10:12:41.481949", + "url": "/v1/software/kinect" +} diff --git a/site/public/v1/software/kinemage/index.json b/site/public/v1/software/kinemage/index.json new file mode 100644 index 000000000000..63ee4a1fb7c8 --- /dev/null +++ b/site/public/v1/software/kinemage/index.json @@ -0,0 +1,19 @@ +{ + "id": 5069, + "slug": "kinemage", + "name": "Kinemage", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6410688" + ], + "created_at": "2026-07-10T10:12:41.481949", + "updated_at": "2026-07-10T10:12:41.481949", + "url": "/v1/software/kinemage" +} diff --git a/site/public/v1/software/kingsoft-cloud/index.json b/site/public/v1/software/kingsoft-cloud/index.json new file mode 100644 index 000000000000..65c47a16e8a0 --- /dev/null +++ b/site/public/v1/software/kingsoft-cloud/index.json @@ -0,0 +1,21 @@ +{ + "id": 5070, + "slug": "kingsoft-cloud", + "name": "Kingsoft Cloud", + "release_date": null, + "developers": [ + "Kingsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q15924602" + ], + "created_at": "2026-07-10T10:12:41.482967", + "updated_at": "2026-07-10T10:12:41.482967", + "url": "/v1/software/kingsoft-cloud" +} diff --git a/site/public/v1/software/kintone/index.json b/site/public/v1/software/kintone/index.json new file mode 100644 index 000000000000..edba4c0ace8c --- /dev/null +++ b/site/public/v1/software/kintone/index.json @@ -0,0 +1,21 @@ +{ + "id": 5071, + "slug": "kintone", + "name": "Kintone", + "release_date": null, + "developers": [ + "Cybozu" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28687881" + ], + "created_at": "2026-07-10T10:12:41.482967", + "updated_at": "2026-07-10T10:12:41.482967", + "url": "/v1/software/kintone" +} diff --git a/site/public/v1/software/kisao/index.json b/site/public/v1/software/kisao/index.json new file mode 100644 index 000000000000..ddcbcea780c4 --- /dev/null +++ b/site/public/v1/software/kisao/index.json @@ -0,0 +1,19 @@ +{ + "id": 5072, + "slug": "kisao", + "name": "KiSAO", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17062520" + ], + "created_at": "2026-07-10T10:12:41.482967", + "updated_at": "2026-07-10T10:12:41.482967", + "url": "/v1/software/kisao" +} diff --git a/site/public/v1/software/kisekae-set-system/index.json b/site/public/v1/software/kisekae-set-system/index.json new file mode 100644 index 000000000000..345b9b6d4a14 --- /dev/null +++ b/site/public/v1/software/kisekae-set-system/index.json @@ -0,0 +1,19 @@ +{ + "id": 5073, + "slug": "kisekae-set-system", + "name": "Kisekae Set System", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q761424" + ], + "created_at": "2026-07-10T10:12:41.484001", + "updated_at": "2026-07-10T10:12:41.484001", + "url": "/v1/software/kisekae-set-system" +} diff --git a/site/public/v1/software/kismac/index.json b/site/public/v1/software/kismac/index.json new file mode 100644 index 000000000000..64075e8c3517 --- /dev/null +++ b/site/public/v1/software/kismac/index.json @@ -0,0 +1,25 @@ +{ + "id": 5074, + "slug": "kismac", + "name": "KisMAC", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "macOS" + ], + "programming_languages": [ + "Objective-C" + ], + "licenses": [ + "GNU General Public License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2036340" + ], + "created_at": "2026-07-10T10:12:41.484001", + "updated_at": "2026-07-10T10:12:41.484001", + "url": "/v1/software/kismac" +} diff --git a/site/public/v1/software/kismet-ubertooth/index.json b/site/public/v1/software/kismet-ubertooth/index.json new file mode 100644 index 000000000000..f5def3b3f65e --- /dev/null +++ b/site/public/v1/software/kismet-ubertooth/index.json @@ -0,0 +1,19 @@ +{ + "id": 5075, + "slug": "kismet-ubertooth", + "name": "kismet-ubertooth", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974971" + ], + "created_at": "2026-07-10T10:12:41.484001", + "updated_at": "2026-07-10T10:12:41.484001", + "url": "/v1/software/kismet-ubertooth" +} diff --git a/site/public/v1/software/kissable/index.json b/site/public/v1/software/kissable/index.json new file mode 100644 index 000000000000..2b887b36a3dc --- /dev/null +++ b/site/public/v1/software/kissable/index.json @@ -0,0 +1,25 @@ +{ + "id": 5076, + "slug": "kissable", + "name": "Kissable", + "release_date": "2026-01-01", + "developers": [], + "publishers": [], + "operating_systems": [ + "iOS" + ], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [ + "conversational AI" + ], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140357318" + ], + "created_at": "2026-07-10T10:12:41.484947", + "updated_at": "2026-07-10T10:12:41.484947", + "url": "/v1/software/kissable" +} diff --git a/site/public/v1/software/kissmetrics/index.json b/site/public/v1/software/kissmetrics/index.json new file mode 100644 index 000000000000..4557ed070293 --- /dev/null +++ b/site/public/v1/software/kissmetrics/index.json @@ -0,0 +1,19 @@ +{ + "id": 5077, + "slug": "kissmetrics", + "name": "Kissmetrics", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22906166" + ], + "created_at": "2026-07-10T10:12:41.484947", + "updated_at": "2026-07-10T10:12:41.484947", + "url": "/v1/software/kissmetrics" +} diff --git a/site/public/v1/software/kitap-radiosi/index.json b/site/public/v1/software/kitap-radiosi/index.json new file mode 100644 index 000000000000..ffe3547a75a9 --- /dev/null +++ b/site/public/v1/software/kitap-radiosi/index.json @@ -0,0 +1,21 @@ +{ + "id": 5078, + "slug": "kitap-radiosi", + "name": "Kitap radiosi", + "release_date": null, + "developers": [], + "publishers": [ + "Tatmedia" + ], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q95388989" + ], + "created_at": "2026-07-10T10:12:41.484947", + "updated_at": "2026-07-10T10:12:41.484947", + "url": "/v1/software/kitap-radiosi" +} diff --git a/site/public/v1/software/kith-and-kin-pro/index.json b/site/public/v1/software/kith-and-kin-pro/index.json new file mode 100644 index 000000000000..268ad4ab2788 --- /dev/null +++ b/site/public/v1/software/kith-and-kin-pro/index.json @@ -0,0 +1,21 @@ +{ + "id": 5079, + "slug": "kith-and-kin-pro", + "name": "Kith and Kin Pro", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6418193" + ], + "created_at": "2026-07-10T10:12:41.485980", + "updated_at": "2026-07-10T10:12:41.485980", + "url": "/v1/software/kith-and-kin-pro" +} diff --git a/site/public/v1/software/kittl/index.json b/site/public/v1/software/kittl/index.json new file mode 100644 index 000000000000..126bd09fabcc --- /dev/null +++ b/site/public/v1/software/kittl/index.json @@ -0,0 +1,19 @@ +{ + "id": 5080, + "slug": "kittl", + "name": "Kittl", + "release_date": "2020-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135206129" + ], + "created_at": "2026-07-10T10:12:41.485980", + "updated_at": "2026-07-10T10:12:41.485980", + "url": "/v1/software/kittl" +} diff --git a/site/public/v1/software/kitura/index.json b/site/public/v1/software/kitura/index.json new file mode 100644 index 000000000000..e9331df7ca6a --- /dev/null +++ b/site/public/v1/software/kitura/index.json @@ -0,0 +1,25 @@ +{ + "id": 5081, + "slug": "kitura", + "name": "Kitura", + "release_date": null, + "developers": [ + "IBM" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Swift" + ], + "licenses": [ + "Apache License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28130427" + ], + "created_at": "2026-07-10T10:12:41.485980", + "updated_at": "2026-07-10T10:12:41.485980", + "url": "/v1/software/kitura" +} diff --git a/site/public/v1/software/kiva/index.json b/site/public/v1/software/kiva/index.json new file mode 100644 index 000000000000..d38d269a8990 --- /dev/null +++ b/site/public/v1/software/kiva/index.json @@ -0,0 +1,24 @@ +{ + "id": 5082, + "slug": "kiva", + "name": "KIVA", + "release_date": null, + "developers": [ + "Los Alamos National Laboratory" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Fortran 95", + "Fortran" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6331201" + ], + "created_at": "2026-07-10T10:12:41.485980", + "updated_at": "2026-07-10T10:12:41.485980", + "url": "/v1/software/kiva" +} diff --git a/site/public/v1/software/kiwi/index.json b/site/public/v1/software/kiwi/index.json new file mode 100644 index 000000000000..8226439f2b28 --- /dev/null +++ b/site/public/v1/software/kiwi/index.json @@ -0,0 +1,23 @@ +{ + "id": 5083, + "slug": "kiwi", + "name": "KIWI", + "release_date": null, + "developers": [ + "Marcus Schäfer" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Python" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6331221" + ], + "created_at": "2026-07-10T10:12:41.486878", + "updated_at": "2026-07-10T10:12:41.486878", + "url": "/v1/software/kiwi" +} diff --git a/site/public/v1/software/klatin/index.json b/site/public/v1/software/klatin/index.json new file mode 100644 index 000000000000..e442613a818d --- /dev/null +++ b/site/public/v1/software/klatin/index.json @@ -0,0 +1,19 @@ +{ + "id": 5084, + "slug": "klatin", + "name": "KLatin", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3812095" + ], + "created_at": "2026-07-10T10:12:41.486878", + "updated_at": "2026-07-10T10:12:41.486878", + "url": "/v1/software/klatin" +} diff --git a/site/public/v1/software/kleo-bare-metal-backup/index.json b/site/public/v1/software/kleo-bare-metal-backup/index.json new file mode 100644 index 000000000000..de60779c34c6 --- /dev/null +++ b/site/public/v1/software/kleo-bare-metal-backup/index.json @@ -0,0 +1,21 @@ +{ + "id": 5085, + "slug": "kleo-bare-metal-backup", + "name": "Kleo Bare Metal Backup", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6420567" + ], + "created_at": "2026-07-10T10:12:41.486878", + "updated_at": "2026-07-10T10:12:41.486878", + "url": "/v1/software/kleo-bare-metal-backup" +} diff --git a/site/public/v1/software/klic-key-letter-in-context/index.json b/site/public/v1/software/klic-key-letter-in-context/index.json new file mode 100644 index 000000000000..923ac5982d2c --- /dev/null +++ b/site/public/v1/software/klic-key-letter-in-context/index.json @@ -0,0 +1,19 @@ +{ + "id": 5086, + "slug": "klic-key-letter-in-context", + "name": "KLIC (Key Letter in Context)", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087821" + ], + "created_at": "2026-07-10T10:12:41.487940", + "updated_at": "2026-07-10T10:12:41.487940", + "url": "/v1/software/klic-key-letter-in-context" +} diff --git a/site/public/v1/software/klick/index.json b/site/public/v1/software/klick/index.json new file mode 100644 index 000000000000..0e632f6b952d --- /dev/null +++ b/site/public/v1/software/klick/index.json @@ -0,0 +1,19 @@ +{ + "id": 5087, + "slug": "klick", + "name": "klick", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62852998" + ], + "created_at": "2026-07-10T10:12:41.487940", + "updated_at": "2026-07-10T10:12:41.487940", + "url": "/v1/software/klick" +} diff --git a/site/public/v1/software/klik/index.json b/site/public/v1/software/klik/index.json new file mode 100644 index 000000000000..366d8edab35b --- /dev/null +++ b/site/public/v1/software/klik/index.json @@ -0,0 +1,19 @@ +{ + "id": 5088, + "slug": "klik", + "name": "Klik", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1253866" + ], + "created_at": "2026-07-10T10:12:41.487940", + "updated_at": "2026-07-10T10:12:41.487940", + "url": "/v1/software/klik" +} diff --git a/site/public/v1/software/kling-ai/index.json b/site/public/v1/software/kling-ai/index.json new file mode 100644 index 000000000000..3234565f243c --- /dev/null +++ b/site/public/v1/software/kling-ai/index.json @@ -0,0 +1,21 @@ +{ + "id": 5089, + "slug": "kling-ai", + "name": "Kling AI", + "release_date": null, + "developers": [ + "Kuaishou" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q133141218" + ], + "created_at": "2026-07-10T10:12:41.487940", + "updated_at": "2026-07-10T10:12:41.487940", + "url": "/v1/software/kling-ai" +} diff --git a/site/public/v1/software/klipper/index.json b/site/public/v1/software/klipper/index.json new file mode 100644 index 000000000000..1dc9d657f806 --- /dev/null +++ b/site/public/v1/software/klipper/index.json @@ -0,0 +1,19 @@ +{ + "id": 5090, + "slug": "klipper", + "name": "Klipper", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131821856" + ], + "created_at": "2026-07-10T10:12:41.488954", + "updated_at": "2026-07-10T10:12:41.488954", + "url": "/v1/software/klipper" +} diff --git a/site/public/v1/software/kloxo-mr/index.json b/site/public/v1/software/kloxo-mr/index.json new file mode 100644 index 000000000000..992cf96c581a --- /dev/null +++ b/site/public/v1/software/kloxo-mr/index.json @@ -0,0 +1,19 @@ +{ + "id": 5091, + "slug": "kloxo-mr", + "name": "Kloxo-MR", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25345988" + ], + "created_at": "2026-07-10T10:12:41.488954", + "updated_at": "2026-07-10T10:12:41.488954", + "url": "/v1/software/kloxo-mr" +} diff --git a/site/public/v1/software/klx-esm/index.json b/site/public/v1/software/klx-esm/index.json new file mode 100644 index 000000000000..ef50108a8865 --- /dev/null +++ b/site/public/v1/software/klx-esm/index.json @@ -0,0 +1,21 @@ +{ + "id": 5092, + "slug": "klx-esm", + "name": "KLX ESM", + "release_date": null, + "developers": [ + "Keolux" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140215781" + ], + "created_at": "2026-07-10T10:12:41.488954", + "updated_at": "2026-07-10T10:12:41.488954", + "url": "/v1/software/klx-esm" +} diff --git a/site/public/v1/software/kmenuedit/index.json b/site/public/v1/software/kmenuedit/index.json new file mode 100644 index 000000000000..6057ea01ec52 --- /dev/null +++ b/site/public/v1/software/kmenuedit/index.json @@ -0,0 +1,19 @@ +{ + "id": 5093, + "slug": "kmenuedit", + "name": "kmenuedit", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065497" + ], + "created_at": "2026-07-10T10:12:41.489953", + "updated_at": "2026-07-10T10:12:41.489953", + "url": "/v1/software/kmenuedit" +} diff --git a/site/public/v1/software/kmod/index.json b/site/public/v1/software/kmod/index.json new file mode 100644 index 000000000000..ee3ab8909dae --- /dev/null +++ b/site/public/v1/software/kmod/index.json @@ -0,0 +1,21 @@ +{ + "id": 5094, + "slug": "kmod", + "name": "kmod", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "GNU Lesser General Public License, version 2.1 or later" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974972" + ], + "created_at": "2026-07-10T10:12:41.489953", + "updated_at": "2026-07-10T10:12:41.489953", + "url": "/v1/software/kmod" +} diff --git a/site/public/v1/software/knock/index.json b/site/public/v1/software/knock/index.json new file mode 100644 index 000000000000..512d24705b5c --- /dev/null +++ b/site/public/v1/software/knock/index.json @@ -0,0 +1,19 @@ +{ + "id": 5095, + "slug": "knock", + "name": "knock", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3198029" + ], + "created_at": "2026-07-10T10:12:41.489953", + "updated_at": "2026-07-10T10:12:41.489953", + "url": "/v1/software/knock" +} diff --git a/site/public/v1/software/knocker/index.json b/site/public/v1/software/knocker/index.json new file mode 100644 index 000000000000..284fd741da2b --- /dev/null +++ b/site/public/v1/software/knocker/index.json @@ -0,0 +1,19 @@ +{ + "id": 5096, + "slug": "knocker", + "name": "knocker", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62852950" + ], + "created_at": "2026-07-10T10:12:41.490967", + "updated_at": "2026-07-10T10:12:41.490967", + "url": "/v1/software/knocker" +} diff --git a/site/public/v1/software/knockin/index.json b/site/public/v1/software/knockin/index.json new file mode 100644 index 000000000000..2ecfb673b724 --- /dev/null +++ b/site/public/v1/software/knockin/index.json @@ -0,0 +1,19 @@ +{ + "id": 5097, + "slug": "knockin", + "name": "Knockin", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q29364633" + ], + "created_at": "2026-07-10T10:12:41.490967", + "updated_at": "2026-07-10T10:12:41.490967", + "url": "/v1/software/knockin" +} diff --git a/site/public/v1/software/knopflerfish/index.json b/site/public/v1/software/knopflerfish/index.json new file mode 100644 index 000000000000..3fe14e6a028f --- /dev/null +++ b/site/public/v1/software/knopflerfish/index.json @@ -0,0 +1,19 @@ +{ + "id": 5098, + "slug": "knopflerfish", + "name": "Knopflerfish", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4042269" + ], + "created_at": "2026-07-10T10:12:41.490967", + "updated_at": "2026-07-10T10:12:41.490967", + "url": "/v1/software/knopflerfish" +} diff --git a/site/public/v1/software/knotplot/index.json b/site/public/v1/software/knotplot/index.json new file mode 100644 index 000000000000..c14894eb6184 --- /dev/null +++ b/site/public/v1/software/knotplot/index.json @@ -0,0 +1,19 @@ +{ + "id": 5099, + "slug": "knotplot", + "name": "KnotPlot", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123177663" + ], + "created_at": "2026-07-10T10:12:41.491951", + "updated_at": "2026-07-10T10:12:41.491951", + "url": "/v1/software/knotplot" +} diff --git a/site/public/v1/software/knowledge-engineering-environment/index.json b/site/public/v1/software/knowledge-engineering-environment/index.json new file mode 100644 index 000000000000..1bd7e7a582bb --- /dev/null +++ b/site/public/v1/software/knowledge-engineering-environment/index.json @@ -0,0 +1,21 @@ +{ + "id": 5100, + "slug": "knowledge-engineering-environment", + "name": "Knowledge Engineering Environment", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Common Lisp" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6423293" + ], + "created_at": "2026-07-10T10:12:41.491951", + "updated_at": "2026-07-10T10:12:41.491951", + "url": "/v1/software/knowledge-engineering-environment" +} diff --git a/site/public/v1/software/knowledge-forum/index.json b/site/public/v1/software/knowledge-forum/index.json new file mode 100644 index 000000000000..46c4d9664a2b --- /dev/null +++ b/site/public/v1/software/knowledge-forum/index.json @@ -0,0 +1,19 @@ +{ + "id": 5101, + "slug": "knowledge-forum", + "name": "Knowledge Forum", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6053044" + ], + "created_at": "2026-07-10T10:12:41.491951", + "updated_at": "2026-07-10T10:12:41.491951", + "url": "/v1/software/knowledge-forum" +} diff --git a/site/public/v1/software/knowledgebase/index.json b/site/public/v1/software/knowledgebase/index.json new file mode 100644 index 000000000000..259b9f2fb12f --- /dev/null +++ b/site/public/v1/software/knowledgebase/index.json @@ -0,0 +1,29 @@ +{ + "id": 5102, + "slug": "knowledgebase", + "name": "KnowledgeBase", + "release_date": null, + "developers": [ + "Text, Inc.", + "Text" + ], + "publishers": [ + "Text", + "Text, Inc." + ], + "operating_systems": [ + "web browser" + ], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139742112" + ], + "created_at": "2026-07-10T10:12:41.492962", + "updated_at": "2026-07-10T10:12:41.492962", + "url": "/v1/software/knowledgebase" +} diff --git a/site/public/v1/software/knowledgeman/index.json b/site/public/v1/software/knowledgeman/index.json new file mode 100644 index 000000000000..95707801888e --- /dev/null +++ b/site/public/v1/software/knowledgeman/index.json @@ -0,0 +1,19 @@ +{ + "id": 5103, + "slug": "knowledgeman", + "name": "KnowledgeMan", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6423267" + ], + "created_at": "2026-07-10T10:12:41.492962", + "updated_at": "2026-07-10T10:12:41.492962", + "url": "/v1/software/knowledgeman" +} diff --git a/site/public/v1/software/knowmax/index.json b/site/public/v1/software/knowmax/index.json new file mode 100644 index 000000000000..f4e4e649dbe2 --- /dev/null +++ b/site/public/v1/software/knowmax/index.json @@ -0,0 +1,19 @@ +{ + "id": 5104, + "slug": "knowmax", + "name": "Knowmax", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q73908613" + ], + "created_at": "2026-07-10T10:12:41.492962", + "updated_at": "2026-07-10T10:12:41.492962", + "url": "/v1/software/knowmax" +} diff --git a/site/public/v1/software/knowmint/index.json b/site/public/v1/software/knowmint/index.json new file mode 100644 index 000000000000..938a4bac3734 --- /dev/null +++ b/site/public/v1/software/knowmint/index.json @@ -0,0 +1,23 @@ +{ + "id": 5105, + "slug": "knowmint", + "name": "KnowMint", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "TypeScript" + ], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138664028" + ], + "created_at": "2026-07-10T10:12:41.493953", + "updated_at": "2026-07-10T10:12:41.493953", + "url": "/v1/software/knowmint" +} diff --git a/site/public/v1/software/kobable/index.json b/site/public/v1/software/kobable/index.json new file mode 100644 index 000000000000..1e54534aa7a3 --- /dev/null +++ b/site/public/v1/software/kobable/index.json @@ -0,0 +1,22 @@ +{ + "id": 5106, + "slug": "kobable", + "name": "Kobable", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [ + "qualitative coding", + "education" + ], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135412162" + ], + "created_at": "2026-07-10T10:12:41.493953", + "updated_at": "2026-07-10T10:12:41.493953", + "url": "/v1/software/kobable" +} diff --git a/site/public/v1/software/kodak-picture-kiosk/index.json b/site/public/v1/software/kodak-picture-kiosk/index.json new file mode 100644 index 000000000000..c01c2bf8a886 --- /dev/null +++ b/site/public/v1/software/kodak-picture-kiosk/index.json @@ -0,0 +1,19 @@ +{ + "id": 5107, + "slug": "kodak-picture-kiosk", + "name": "Kodak Picture Kiosk", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6425132" + ], + "created_at": "2026-07-10T10:12:41.493953", + "updated_at": "2026-07-10T10:12:41.493953", + "url": "/v1/software/kodak-picture-kiosk" +} diff --git a/site/public/v1/software/kodeks/index.json b/site/public/v1/software/kodeks/index.json new file mode 100644 index 000000000000..64255c896e8f --- /dev/null +++ b/site/public/v1/software/kodeks/index.json @@ -0,0 +1,19 @@ +{ + "id": 5108, + "slug": "kodeks", + "name": "Kodeks", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16664414" + ], + "created_at": "2026-07-10T10:12:41.493953", + "updated_at": "2026-07-10T10:12:41.493953", + "url": "/v1/software/kodeks" +} diff --git a/site/public/v1/software/kodi-audiodecoder-modplug/index.json b/site/public/v1/software/kodi-audiodecoder-modplug/index.json new file mode 100644 index 000000000000..bdcb93c97338 --- /dev/null +++ b/site/public/v1/software/kodi-audiodecoder-modplug/index.json @@ -0,0 +1,19 @@ +{ + "id": 5109, + "slug": "kodi-audiodecoder-modplug", + "name": "kodi-audiodecoder-modplug", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974973" + ], + "created_at": "2026-07-10T10:12:41.494933", + "updated_at": "2026-07-10T10:12:41.494933", + "url": "/v1/software/kodi-audiodecoder-modplug" +} diff --git a/site/public/v1/software/kodi-audiodecoder-nosefart/index.json b/site/public/v1/software/kodi-audiodecoder-nosefart/index.json new file mode 100644 index 000000000000..a98e2e8248ad --- /dev/null +++ b/site/public/v1/software/kodi-audiodecoder-nosefart/index.json @@ -0,0 +1,19 @@ +{ + "id": 5110, + "slug": "kodi-audiodecoder-nosefart", + "name": "kodi-audiodecoder-nosefart", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974974" + ], + "created_at": "2026-07-10T10:12:41.494933", + "updated_at": "2026-07-10T10:12:41.494933", + "url": "/v1/software/kodi-audiodecoder-nosefart" +} diff --git a/site/public/v1/software/kodi-audiodecoder-sidplay/index.json b/site/public/v1/software/kodi-audiodecoder-sidplay/index.json new file mode 100644 index 000000000000..5cfb9d54c03f --- /dev/null +++ b/site/public/v1/software/kodi-audiodecoder-sidplay/index.json @@ -0,0 +1,19 @@ +{ + "id": 5111, + "slug": "kodi-audiodecoder-sidplay", + "name": "kodi-audiodecoder-sidplay", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974975" + ], + "created_at": "2026-07-10T10:12:41.495955", + "updated_at": "2026-07-10T10:12:41.495955", + "url": "/v1/software/kodi-audiodecoder-sidplay" +} diff --git a/site/public/v1/software/kodi-audiodecoder-snesapu/index.json b/site/public/v1/software/kodi-audiodecoder-snesapu/index.json new file mode 100644 index 000000000000..d3223883ac4f --- /dev/null +++ b/site/public/v1/software/kodi-audiodecoder-snesapu/index.json @@ -0,0 +1,19 @@ +{ + "id": 5112, + "slug": "kodi-audiodecoder-snesapu", + "name": "kodi-audiodecoder-snesapu", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974976" + ], + "created_at": "2026-07-10T10:12:41.495955", + "updated_at": "2026-07-10T10:12:41.495955", + "url": "/v1/software/kodi-audiodecoder-snesapu" +} diff --git a/site/public/v1/software/kodi-audiodecoder-stsound/index.json b/site/public/v1/software/kodi-audiodecoder-stsound/index.json new file mode 100644 index 000000000000..38b150501348 --- /dev/null +++ b/site/public/v1/software/kodi-audiodecoder-stsound/index.json @@ -0,0 +1,19 @@ +{ + "id": 5113, + "slug": "kodi-audiodecoder-stsound", + "name": "kodi-audiodecoder-stsound", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974977" + ], + "created_at": "2026-07-10T10:12:41.495955", + "updated_at": "2026-07-10T10:12:41.495955", + "url": "/v1/software/kodi-audiodecoder-stsound" +} diff --git a/site/public/v1/software/kodi-audiodecoder-timidity/index.json b/site/public/v1/software/kodi-audiodecoder-timidity/index.json new file mode 100644 index 000000000000..7149dd52d2c9 --- /dev/null +++ b/site/public/v1/software/kodi-audiodecoder-timidity/index.json @@ -0,0 +1,19 @@ +{ + "id": 5114, + "slug": "kodi-audiodecoder-timidity", + "name": "kodi-audiodecoder-timidity", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974978" + ], + "created_at": "2026-07-10T10:12:41.495955", + "updated_at": "2026-07-10T10:12:41.495955", + "url": "/v1/software/kodi-audiodecoder-timidity" +} diff --git a/site/public/v1/software/kodi-audiodecoder-vgmstream/index.json b/site/public/v1/software/kodi-audiodecoder-vgmstream/index.json new file mode 100644 index 000000000000..1f1fa0015bf1 --- /dev/null +++ b/site/public/v1/software/kodi-audiodecoder-vgmstream/index.json @@ -0,0 +1,19 @@ +{ + "id": 5115, + "slug": "kodi-audiodecoder-vgmstream", + "name": "kodi-audiodecoder-vgmstream", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974979" + ], + "created_at": "2026-07-10T10:12:41.497076", + "updated_at": "2026-07-10T10:12:41.497076", + "url": "/v1/software/kodi-audiodecoder-vgmstream" +} diff --git a/site/public/v1/software/kodi-audioencoder-flac/index.json b/site/public/v1/software/kodi-audioencoder-flac/index.json new file mode 100644 index 000000000000..08669e3cbd57 --- /dev/null +++ b/site/public/v1/software/kodi-audioencoder-flac/index.json @@ -0,0 +1,19 @@ +{ + "id": 5116, + "slug": "kodi-audioencoder-flac", + "name": "kodi-audioencoder-flac", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974980" + ], + "created_at": "2026-07-10T10:12:41.497076", + "updated_at": "2026-07-10T10:12:41.497076", + "url": "/v1/software/kodi-audioencoder-flac" +} diff --git a/site/public/v1/software/kodi-audioencoder-lame/index.json b/site/public/v1/software/kodi-audioencoder-lame/index.json new file mode 100644 index 000000000000..fdf4be87b100 --- /dev/null +++ b/site/public/v1/software/kodi-audioencoder-lame/index.json @@ -0,0 +1,19 @@ +{ + "id": 5117, + "slug": "kodi-audioencoder-lame", + "name": "kodi-audioencoder-lame", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974981" + ], + "created_at": "2026-07-10T10:12:41.498028", + "updated_at": "2026-07-10T10:12:41.498028", + "url": "/v1/software/kodi-audioencoder-lame" +} diff --git a/site/public/v1/software/kodi-audioencoder-vorbis/index.json b/site/public/v1/software/kodi-audioencoder-vorbis/index.json new file mode 100644 index 000000000000..a285873461f9 --- /dev/null +++ b/site/public/v1/software/kodi-audioencoder-vorbis/index.json @@ -0,0 +1,19 @@ +{ + "id": 5118, + "slug": "kodi-audioencoder-vorbis", + "name": "kodi-audioencoder-vorbis", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974982" + ], + "created_at": "2026-07-10T10:12:41.498028", + "updated_at": "2026-07-10T10:12:41.498028", + "url": "/v1/software/kodi-audioencoder-vorbis" +} diff --git a/site/public/v1/software/kodi-audioencoder-wav/index.json b/site/public/v1/software/kodi-audioencoder-wav/index.json new file mode 100644 index 000000000000..4f74784be88a --- /dev/null +++ b/site/public/v1/software/kodi-audioencoder-wav/index.json @@ -0,0 +1,19 @@ +{ + "id": 5119, + "slug": "kodi-audioencoder-wav", + "name": "kodi-audioencoder-wav", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974983" + ], + "created_at": "2026-07-10T10:12:41.498028", + "updated_at": "2026-07-10T10:12:41.498028", + "url": "/v1/software/kodi-audioencoder-wav" +} diff --git a/site/public/v1/software/kodi-game-libretro/index.json b/site/public/v1/software/kodi-game-libretro/index.json new file mode 100644 index 000000000000..fedbf2691ca4 --- /dev/null +++ b/site/public/v1/software/kodi-game-libretro/index.json @@ -0,0 +1,19 @@ +{ + "id": 5120, + "slug": "kodi-game-libretro", + "name": "kodi-game-libretro", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974984" + ], + "created_at": "2026-07-10T10:12:41.499057", + "updated_at": "2026-07-10T10:12:41.499057", + "url": "/v1/software/kodi-game-libretro" +} diff --git a/site/public/v1/software/kodi-inputstream-adaptive/index.json b/site/public/v1/software/kodi-inputstream-adaptive/index.json new file mode 100644 index 000000000000..924c47321d60 --- /dev/null +++ b/site/public/v1/software/kodi-inputstream-adaptive/index.json @@ -0,0 +1,19 @@ +{ + "id": 5121, + "slug": "kodi-inputstream-adaptive", + "name": "kodi-inputstream-adaptive", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974985" + ], + "created_at": "2026-07-10T10:12:41.499057", + "updated_at": "2026-07-10T10:12:41.499057", + "url": "/v1/software/kodi-inputstream-adaptive" +} diff --git a/site/public/v1/software/kodi-inputstream-rtmp/index.json b/site/public/v1/software/kodi-inputstream-rtmp/index.json new file mode 100644 index 000000000000..25b82ebee35c --- /dev/null +++ b/site/public/v1/software/kodi-inputstream-rtmp/index.json @@ -0,0 +1,19 @@ +{ + "id": 5122, + "slug": "kodi-inputstream-rtmp", + "name": "kodi-inputstream-rtmp", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974986" + ], + "created_at": "2026-07-10T10:12:41.499057", + "updated_at": "2026-07-10T10:12:41.499057", + "url": "/v1/software/kodi-inputstream-rtmp" +} diff --git a/site/public/v1/software/kodi-peripheral-joystick/index.json b/site/public/v1/software/kodi-peripheral-joystick/index.json new file mode 100644 index 000000000000..35b5d174943e --- /dev/null +++ b/site/public/v1/software/kodi-peripheral-joystick/index.json @@ -0,0 +1,19 @@ +{ + "id": 5123, + "slug": "kodi-peripheral-joystick", + "name": "kodi-peripheral-joystick", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974987" + ], + "created_at": "2026-07-10T10:12:41.500027", + "updated_at": "2026-07-10T10:12:41.500027", + "url": "/v1/software/kodi-peripheral-joystick" +} diff --git a/site/public/v1/software/kodi-platform/index.json b/site/public/v1/software/kodi-platform/index.json new file mode 100644 index 000000000000..8eeb530375db --- /dev/null +++ b/site/public/v1/software/kodi-platform/index.json @@ -0,0 +1,19 @@ +{ + "id": 5124, + "slug": "kodi-platform", + "name": "kodi-platform", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974988" + ], + "created_at": "2026-07-10T10:12:41.500027", + "updated_at": "2026-07-10T10:12:41.500027", + "url": "/v1/software/kodi-platform" +} diff --git a/site/public/v1/software/kodi-pvr-demo/index.json b/site/public/v1/software/kodi-pvr-demo/index.json new file mode 100644 index 000000000000..8df16191890a --- /dev/null +++ b/site/public/v1/software/kodi-pvr-demo/index.json @@ -0,0 +1,19 @@ +{ + "id": 5125, + "slug": "kodi-pvr-demo", + "name": "kodi-pvr-demo", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974990" + ], + "created_at": "2026-07-10T10:12:41.500027", + "updated_at": "2026-07-10T10:12:41.500027", + "url": "/v1/software/kodi-pvr-demo" +} diff --git a/site/public/v1/software/kodi-pvr-dvblink/index.json b/site/public/v1/software/kodi-pvr-dvblink/index.json new file mode 100644 index 000000000000..be4892af744a --- /dev/null +++ b/site/public/v1/software/kodi-pvr-dvblink/index.json @@ -0,0 +1,19 @@ +{ + "id": 5126, + "slug": "kodi-pvr-dvblink", + "name": "kodi-pvr-dvblink", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974991" + ], + "created_at": "2026-07-10T10:12:41.501020", + "updated_at": "2026-07-10T10:12:41.501020", + "url": "/v1/software/kodi-pvr-dvblink" +} diff --git a/site/public/v1/software/kodi-pvr-filmon/index.json b/site/public/v1/software/kodi-pvr-filmon/index.json new file mode 100644 index 000000000000..e77ecea177d2 --- /dev/null +++ b/site/public/v1/software/kodi-pvr-filmon/index.json @@ -0,0 +1,19 @@ +{ + "id": 5127, + "slug": "kodi-pvr-filmon", + "name": "kodi-pvr-filmon", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28974993" + ], + "created_at": "2026-07-10T10:12:41.501020", + "updated_at": "2026-07-10T10:12:41.501020", + "url": "/v1/software/kodi-pvr-filmon" +} diff --git a/site/public/v1/software/kodi-pvr-pctv/index.json b/site/public/v1/software/kodi-pvr-pctv/index.json new file mode 100644 index 000000000000..ccefe2979253 --- /dev/null +++ b/site/public/v1/software/kodi-pvr-pctv/index.json @@ -0,0 +1,19 @@ +{ + "id": 5128, + "slug": "kodi-pvr-pctv", + "name": "kodi-pvr-pctv", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975000" + ], + "created_at": "2026-07-10T10:12:41.501020", + "updated_at": "2026-07-10T10:12:41.501020", + "url": "/v1/software/kodi-pvr-pctv" +} diff --git a/site/public/v1/software/kodi-pvr-stalker/index.json b/site/public/v1/software/kodi-pvr-stalker/index.json new file mode 100644 index 000000000000..bebc45d939d3 --- /dev/null +++ b/site/public/v1/software/kodi-pvr-stalker/index.json @@ -0,0 +1,19 @@ +{ + "id": 5129, + "slug": "kodi-pvr-stalker", + "name": "kodi-pvr-stalker", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975001" + ], + "created_at": "2026-07-10T10:12:41.502024", + "updated_at": "2026-07-10T10:12:41.502024", + "url": "/v1/software/kodi-pvr-stalker" +} diff --git a/site/public/v1/software/kodi-pvr-vbox/index.json b/site/public/v1/software/kodi-pvr-vbox/index.json new file mode 100644 index 000000000000..681b959a01f0 --- /dev/null +++ b/site/public/v1/software/kodi-pvr-vbox/index.json @@ -0,0 +1,19 @@ +{ + "id": 5130, + "slug": "kodi-pvr-vbox", + "name": "kodi-pvr-vbox", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975002" + ], + "created_at": "2026-07-10T10:12:41.502024", + "updated_at": "2026-07-10T10:12:41.502024", + "url": "/v1/software/kodi-pvr-vbox" +} diff --git a/site/public/v1/software/kodi-screensaver-asteroids/index.json b/site/public/v1/software/kodi-screensaver-asteroids/index.json new file mode 100644 index 000000000000..a25a10c55820 --- /dev/null +++ b/site/public/v1/software/kodi-screensaver-asteroids/index.json @@ -0,0 +1,19 @@ +{ + "id": 5131, + "slug": "kodi-screensaver-asteroids", + "name": "kodi-screensaver-asteroids", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975006" + ], + "created_at": "2026-07-10T10:12:41.502024", + "updated_at": "2026-07-10T10:12:41.502024", + "url": "/v1/software/kodi-screensaver-asteroids" +} diff --git a/site/public/v1/software/kodi-screensaver-biogenesis/index.json b/site/public/v1/software/kodi-screensaver-biogenesis/index.json new file mode 100644 index 000000000000..d04faa227e50 --- /dev/null +++ b/site/public/v1/software/kodi-screensaver-biogenesis/index.json @@ -0,0 +1,19 @@ +{ + "id": 5132, + "slug": "kodi-screensaver-biogenesis", + "name": "kodi-screensaver-biogenesis", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975007" + ], + "created_at": "2026-07-10T10:12:41.503044", + "updated_at": "2026-07-10T10:12:41.503044", + "url": "/v1/software/kodi-screensaver-biogenesis" +} diff --git a/site/public/v1/software/kodi-screensaver-crystalmorph/index.json b/site/public/v1/software/kodi-screensaver-crystalmorph/index.json new file mode 100644 index 000000000000..3817516cb630 --- /dev/null +++ b/site/public/v1/software/kodi-screensaver-crystalmorph/index.json @@ -0,0 +1,19 @@ +{ + "id": 5133, + "slug": "kodi-screensaver-crystalmorph", + "name": "kodi-screensaver-crystalmorph", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975008" + ], + "created_at": "2026-07-10T10:12:41.503044", + "updated_at": "2026-07-10T10:12:41.503044", + "url": "/v1/software/kodi-screensaver-crystalmorph" +} diff --git a/site/public/v1/software/kodi-screensaver-greynetic/index.json b/site/public/v1/software/kodi-screensaver-greynetic/index.json new file mode 100644 index 000000000000..f2d6a8a47787 --- /dev/null +++ b/site/public/v1/software/kodi-screensaver-greynetic/index.json @@ -0,0 +1,19 @@ +{ + "id": 5134, + "slug": "kodi-screensaver-greynetic", + "name": "kodi-screensaver-greynetic", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975009" + ], + "created_at": "2026-07-10T10:12:41.503044", + "updated_at": "2026-07-10T10:12:41.503044", + "url": "/v1/software/kodi-screensaver-greynetic" +} diff --git a/site/public/v1/software/kodi-screensaver-pingpong/index.json b/site/public/v1/software/kodi-screensaver-pingpong/index.json new file mode 100644 index 000000000000..e6dc7ea7d886 --- /dev/null +++ b/site/public/v1/software/kodi-screensaver-pingpong/index.json @@ -0,0 +1,19 @@ +{ + "id": 5135, + "slug": "kodi-screensaver-pingpong", + "name": "kodi-screensaver-pingpong", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975010" + ], + "created_at": "2026-07-10T10:12:41.504021", + "updated_at": "2026-07-10T10:12:41.504021", + "url": "/v1/software/kodi-screensaver-pingpong" +} diff --git a/site/public/v1/software/kodi-screensaver-pyro/index.json b/site/public/v1/software/kodi-screensaver-pyro/index.json new file mode 100644 index 000000000000..c46cb228f423 --- /dev/null +++ b/site/public/v1/software/kodi-screensaver-pyro/index.json @@ -0,0 +1,19 @@ +{ + "id": 5136, + "slug": "kodi-screensaver-pyro", + "name": "kodi-screensaver-pyro", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975011" + ], + "created_at": "2026-07-10T10:12:41.504021", + "updated_at": "2026-07-10T10:12:41.504021", + "url": "/v1/software/kodi-screensaver-pyro" +} diff --git a/site/public/v1/software/kodi-screensaver-rsxs/index.json b/site/public/v1/software/kodi-screensaver-rsxs/index.json new file mode 100644 index 000000000000..879df12c4535 --- /dev/null +++ b/site/public/v1/software/kodi-screensaver-rsxs/index.json @@ -0,0 +1,19 @@ +{ + "id": 5137, + "slug": "kodi-screensaver-rsxs", + "name": "kodi-screensaver-rsxs", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975012" + ], + "created_at": "2026-07-10T10:12:41.504021", + "updated_at": "2026-07-10T10:12:41.504021", + "url": "/v1/software/kodi-screensaver-rsxs" +} diff --git a/site/public/v1/software/kodi-visualization-fishbmc/index.json b/site/public/v1/software/kodi-visualization-fishbmc/index.json new file mode 100644 index 000000000000..f722eeab918e --- /dev/null +++ b/site/public/v1/software/kodi-visualization-fishbmc/index.json @@ -0,0 +1,19 @@ +{ + "id": 5138, + "slug": "kodi-visualization-fishbmc", + "name": "kodi-visualization-fishbmc", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975013" + ], + "created_at": "2026-07-10T10:12:41.505023", + "updated_at": "2026-07-10T10:12:41.505023", + "url": "/v1/software/kodi-visualization-fishbmc" +} diff --git a/site/public/v1/software/kodi-visualization-goom/index.json b/site/public/v1/software/kodi-visualization-goom/index.json new file mode 100644 index 000000000000..9bfd40d1f8cf --- /dev/null +++ b/site/public/v1/software/kodi-visualization-goom/index.json @@ -0,0 +1,19 @@ +{ + "id": 5139, + "slug": "kodi-visualization-goom", + "name": "kodi-visualization-goom", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975014" + ], + "created_at": "2026-07-10T10:12:41.505023", + "updated_at": "2026-07-10T10:12:41.505023", + "url": "/v1/software/kodi-visualization-goom" +} diff --git a/site/public/v1/software/kodi-visualization-nastyfft/index.json b/site/public/v1/software/kodi-visualization-nastyfft/index.json new file mode 100644 index 000000000000..25933d19dcd7 --- /dev/null +++ b/site/public/v1/software/kodi-visualization-nastyfft/index.json @@ -0,0 +1,19 @@ +{ + "id": 5140, + "slug": "kodi-visualization-nastyfft", + "name": "kodi-visualization-nastyfft", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975015" + ], + "created_at": "2026-07-10T10:12:41.505023", + "updated_at": "2026-07-10T10:12:41.505023", + "url": "/v1/software/kodi-visualization-nastyfft" +} diff --git a/site/public/v1/software/kodi-visualization-projectm/index.json b/site/public/v1/software/kodi-visualization-projectm/index.json new file mode 100644 index 000000000000..7c01401c52e9 --- /dev/null +++ b/site/public/v1/software/kodi-visualization-projectm/index.json @@ -0,0 +1,19 @@ +{ + "id": 5141, + "slug": "kodi-visualization-projectm", + "name": "kodi-visualization-projectm", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975016" + ], + "created_at": "2026-07-10T10:12:41.506026", + "updated_at": "2026-07-10T10:12:41.506026", + "url": "/v1/software/kodi-visualization-projectm" +} diff --git a/site/public/v1/software/kodi-visualization-shadertoy/index.json b/site/public/v1/software/kodi-visualization-shadertoy/index.json new file mode 100644 index 000000000000..0f7c461d4135 --- /dev/null +++ b/site/public/v1/software/kodi-visualization-shadertoy/index.json @@ -0,0 +1,19 @@ +{ + "id": 5142, + "slug": "kodi-visualization-shadertoy", + "name": "kodi-visualization-shadertoy", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975017" + ], + "created_at": "2026-07-10T10:12:41.506026", + "updated_at": "2026-07-10T10:12:41.506026", + "url": "/v1/software/kodi-visualization-shadertoy" +} diff --git a/site/public/v1/software/kodi-visualization-starburst/index.json b/site/public/v1/software/kodi-visualization-starburst/index.json new file mode 100644 index 000000000000..839e51a0c017 --- /dev/null +++ b/site/public/v1/software/kodi-visualization-starburst/index.json @@ -0,0 +1,19 @@ +{ + "id": 5143, + "slug": "kodi-visualization-starburst", + "name": "kodi-visualization-starburst", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975019" + ], + "created_at": "2026-07-10T10:12:41.506026", + "updated_at": "2026-07-10T10:12:41.506026", + "url": "/v1/software/kodi-visualization-starburst" +} diff --git a/site/public/v1/software/kodi-visualization-waveform/index.json b/site/public/v1/software/kodi-visualization-waveform/index.json new file mode 100644 index 000000000000..97ff794af364 --- /dev/null +++ b/site/public/v1/software/kodi-visualization-waveform/index.json @@ -0,0 +1,19 @@ +{ + "id": 5144, + "slug": "kodi-visualization-waveform", + "name": "kodi-visualization-waveform", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975020" + ], + "created_at": "2026-07-10T10:12:41.507039", + "updated_at": "2026-07-10T10:12:41.507039", + "url": "/v1/software/kodi-visualization-waveform" +} diff --git a/site/public/v1/software/koka/index.json b/site/public/v1/software/koka/index.json new file mode 100644 index 000000000000..db20560205b0 --- /dev/null +++ b/site/public/v1/software/koka/index.json @@ -0,0 +1,19 @@ +{ + "id": 5145, + "slug": "koka", + "name": "Koka", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124666603" + ], + "created_at": "2026-07-10T10:12:41.507039", + "updated_at": "2026-07-10T10:12:41.507039", + "url": "/v1/software/koka" +} diff --git a/site/public/v1/software/kokkoskernels/index.json b/site/public/v1/software/kokkoskernels/index.json new file mode 100644 index 000000000000..5d972b9592d6 --- /dev/null +++ b/site/public/v1/software/kokkoskernels/index.json @@ -0,0 +1,19 @@ +{ + "id": 5146, + "slug": "kokkoskernels", + "name": "KokkosKernels", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117457186" + ], + "created_at": "2026-07-10T10:12:41.508031", + "updated_at": "2026-07-10T10:12:41.508031", + "url": "/v1/software/kokkoskernels" +} diff --git a/site/public/v1/software/kokone/index.json b/site/public/v1/software/kokone/index.json new file mode 100644 index 000000000000..5cdf0ea3b863 --- /dev/null +++ b/site/public/v1/software/kokone/index.json @@ -0,0 +1,23 @@ +{ + "id": 5147, + "slug": "kokone", + "name": "Kokone", + "release_date": "2014-02-14", + "developers": [ + "Internet Co." + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q20062554" + ], + "created_at": "2026-07-10T10:12:41.508031", + "updated_at": "2026-07-10T10:12:41.508031", + "url": "/v1/software/kokone" +} diff --git a/site/public/v1/software/kommandcore/index.json b/site/public/v1/software/kommandcore/index.json new file mode 100644 index 000000000000..42ac5ef51b75 --- /dev/null +++ b/site/public/v1/software/kommandcore/index.json @@ -0,0 +1,19 @@ +{ + "id": 5148, + "slug": "kommandcore", + "name": "Kommandcore", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4042294" + ], + "created_at": "2026-07-10T10:12:41.508031", + "updated_at": "2026-07-10T10:12:41.508031", + "url": "/v1/software/kommandcore" +} diff --git a/site/public/v1/software/kompakkt/index.json b/site/public/v1/software/kompakkt/index.json new file mode 100644 index 000000000000..7dc562070aaf --- /dev/null +++ b/site/public/v1/software/kompakkt/index.json @@ -0,0 +1,19 @@ +{ + "id": 5149, + "slug": "kompakkt", + "name": "kompakkt", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107696972" + ], + "created_at": "2026-07-10T10:12:41.509029", + "updated_at": "2026-07-10T10:12:41.509029", + "url": "/v1/software/kompakkt" +} diff --git a/site/public/v1/software/kompozy/index.json b/site/public/v1/software/kompozy/index.json new file mode 100644 index 000000000000..29d0884ca343 --- /dev/null +++ b/site/public/v1/software/kompozy/index.json @@ -0,0 +1,19 @@ +{ + "id": 5150, + "slug": "kompozy", + "name": "Kompozy", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140180039" + ], + "created_at": "2026-07-10T10:12:41.509029", + "updated_at": "2026-07-10T10:12:41.509029", + "url": "/v1/software/kompozy" +} diff --git a/site/public/v1/software/konnekt/index.json b/site/public/v1/software/konnekt/index.json new file mode 100644 index 000000000000..dfdf4097c9aa --- /dev/null +++ b/site/public/v1/software/konnekt/index.json @@ -0,0 +1,21 @@ +{ + "id": 5151, + "slug": "konnekt", + "name": "Konnekt", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Mozilla Public License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11742628" + ], + "created_at": "2026-07-10T10:12:41.509029", + "updated_at": "2026-07-10T10:12:41.509029", + "url": "/v1/software/konnekt" +} diff --git a/site/public/v1/software/kontakt/index.json b/site/public/v1/software/kontakt/index.json new file mode 100644 index 000000000000..7b0823830fff --- /dev/null +++ b/site/public/v1/software/kontakt/index.json @@ -0,0 +1,19 @@ +{ + "id": 5152, + "slug": "kontakt", + "name": "Kontakt", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6428592" + ], + "created_at": "2026-07-10T10:12:41.509029", + "updated_at": "2026-07-10T10:12:41.509029", + "url": "/v1/software/kontakt" +} diff --git a/site/public/v1/software/kontext/index.json b/site/public/v1/software/kontext/index.json new file mode 100644 index 000000000000..8d9c18d149f8 --- /dev/null +++ b/site/public/v1/software/kontext/index.json @@ -0,0 +1,19 @@ +{ + "id": 5153, + "slug": "kontext", + "name": "KonText", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085072" + ], + "created_at": "2026-07-10T10:12:41.510064", + "updated_at": "2026-07-10T10:12:41.510064", + "url": "/v1/software/kontext" +} diff --git a/site/public/v1/software/konvertor/index.json b/site/public/v1/software/konvertor/index.json new file mode 100644 index 000000000000..2f0e319f6461 --- /dev/null +++ b/site/public/v1/software/konvertor/index.json @@ -0,0 +1,21 @@ +{ + "id": 5154, + "slug": "konvertor", + "name": "Konvertor", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3198802" + ], + "created_at": "2026-07-10T10:12:41.510064", + "updated_at": "2026-07-10T10:12:41.510064", + "url": "/v1/software/konvertor" +} diff --git a/site/public/v1/software/kopern/index.json b/site/public/v1/software/kopern/index.json new file mode 100644 index 000000000000..5e694eb16654 --- /dev/null +++ b/site/public/v1/software/kopern/index.json @@ -0,0 +1,23 @@ +{ + "id": 5155, + "slug": "kopern", + "name": "Kopern", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "TypeScript" + ], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138958921" + ], + "created_at": "2026-07-10T10:12:41.510064", + "updated_at": "2026-07-10T10:12:41.510064", + "url": "/v1/software/kopern" +} diff --git a/site/public/v1/software/kora/index.json b/site/public/v1/software/kora/index.json new file mode 100644 index 000000000000..6f93b103c74d --- /dev/null +++ b/site/public/v1/software/kora/index.json @@ -0,0 +1,19 @@ +{ + "id": 5156, + "slug": "kora", + "name": "KORA", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085073" + ], + "created_at": "2026-07-10T10:12:41.510064", + "updated_at": "2026-07-10T10:12:41.510064", + "url": "/v1/software/kora" +} diff --git a/site/public/v1/software/korg-gadget/index.json b/site/public/v1/software/korg-gadget/index.json new file mode 100644 index 000000000000..b6455d2617cc --- /dev/null +++ b/site/public/v1/software/korg-gadget/index.json @@ -0,0 +1,21 @@ +{ + "id": 5157, + "slug": "korg-gadget", + "name": "Korg Gadget", + "release_date": null, + "developers": [ + "Korg" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q55524853" + ], + "created_at": "2026-07-10T10:12:41.510064", + "updated_at": "2026-07-10T10:12:41.510064", + "url": "/v1/software/korg-gadget" +} diff --git a/site/public/v1/software/korsakow/index.json b/site/public/v1/software/korsakow/index.json new file mode 100644 index 000000000000..217db6d91428 --- /dev/null +++ b/site/public/v1/software/korsakow/index.json @@ -0,0 +1,19 @@ +{ + "id": 5158, + "slug": "korsakow", + "name": "Korsakow", + "release_date": "2000-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6432659" + ], + "created_at": "2026-07-10T10:12:41.511645", + "updated_at": "2026-07-10T10:12:41.511645", + "url": "/v1/software/korsakow" +} diff --git a/site/public/v1/software/koubei/index.json b/site/public/v1/software/koubei/index.json new file mode 100644 index 000000000000..e5492764217c --- /dev/null +++ b/site/public/v1/software/koubei/index.json @@ -0,0 +1,19 @@ +{ + "id": 5159, + "slug": "koubei", + "name": "Koubei", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17023100" + ], + "created_at": "2026-07-10T10:12:41.511645", + "updated_at": "2026-07-10T10:12:41.511645", + "url": "/v1/software/koubei" +} diff --git a/site/public/v1/software/kpcli/index.json b/site/public/v1/software/kpcli/index.json new file mode 100644 index 000000000000..03c3e853b77b --- /dev/null +++ b/site/public/v1/software/kpcli/index.json @@ -0,0 +1,19 @@ +{ + "id": 5160, + "slug": "kpcli", + "name": "kpcli", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62863705" + ], + "created_at": "2026-07-10T10:12:41.511645", + "updated_at": "2026-07-10T10:12:41.511645", + "url": "/v1/software/kpcli" +} diff --git a/site/public/v1/software/kpkpass/index.json b/site/public/v1/software/kpkpass/index.json new file mode 100644 index 000000000000..7b144368f024 --- /dev/null +++ b/site/public/v1/software/kpkpass/index.json @@ -0,0 +1,19 @@ +{ + "id": 5161, + "slug": "kpkpass", + "name": "kpkpass", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065337" + ], + "created_at": "2026-07-10T10:12:41.512894", + "updated_at": "2026-07-10T10:12:41.512894", + "url": "/v1/software/kpkpass" +} diff --git a/site/public/v1/software/kplayer/index.json b/site/public/v1/software/kplayer/index.json new file mode 100644 index 000000000000..b5ba40037234 --- /dev/null +++ b/site/public/v1/software/kplayer/index.json @@ -0,0 +1,19 @@ +{ + "id": 5162, + "slug": "kplayer", + "name": "KPlayer", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3511084" + ], + "created_at": "2026-07-10T10:12:41.512894", + "updated_at": "2026-07-10T10:12:41.512894", + "url": "/v1/software/kplayer" +} diff --git a/site/public/v1/software/kqtquickcharts/index.json b/site/public/v1/software/kqtquickcharts/index.json new file mode 100644 index 000000000000..698646ec1c04 --- /dev/null +++ b/site/public/v1/software/kqtquickcharts/index.json @@ -0,0 +1,19 @@ +{ + "id": 5163, + "slug": "kqtquickcharts", + "name": "kqtquickcharts", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065124" + ], + "created_at": "2026-07-10T10:12:41.512894", + "updated_at": "2026-07-10T10:12:41.512894", + "url": "/v1/software/kqtquickcharts" +} diff --git a/site/public/v1/software/krakend/index.json b/site/public/v1/software/krakend/index.json new file mode 100644 index 000000000000..0841647189b5 --- /dev/null +++ b/site/public/v1/software/krakend/index.json @@ -0,0 +1,19 @@ +{ + "id": 5164, + "slug": "krakend", + "name": "KrakenD", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140408033" + ], + "created_at": "2026-07-10T10:12:41.513972", + "updated_at": "2026-07-10T10:12:41.513972", + "url": "/v1/software/krakend" +} diff --git a/site/public/v1/software/kramerius/index.json b/site/public/v1/software/kramerius/index.json new file mode 100644 index 000000000000..f60c3d72e575 --- /dev/null +++ b/site/public/v1/software/kramerius/index.json @@ -0,0 +1,21 @@ +{ + "id": 5165, + "slug": "kramerius", + "name": "Kramerius", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "GNU General Public License, version 3.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109254004" + ], + "created_at": "2026-07-10T10:12:41.513972", + "updated_at": "2026-07-10T10:12:41.513972", + "url": "/v1/software/kramerius" +} diff --git a/site/public/v1/software/kreol/index.json b/site/public/v1/software/kreol/index.json new file mode 100644 index 000000000000..e2a31ec36438 --- /dev/null +++ b/site/public/v1/software/kreol/index.json @@ -0,0 +1,21 @@ +{ + "id": 5166, + "slug": "kreol", + "name": "Kreol", + "release_date": null, + "developers": [ + "Mike Block" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6436767" + ], + "created_at": "2026-07-10T10:12:41.513972", + "updated_at": "2026-07-10T10:12:41.513972", + "url": "/v1/software/kreol" +} diff --git a/site/public/v1/software/krisp/index.json b/site/public/v1/software/krisp/index.json new file mode 100644 index 000000000000..4546b4b6918d --- /dev/null +++ b/site/public/v1/software/krisp/index.json @@ -0,0 +1,22 @@ +{ + "id": 5167, + "slug": "krisp", + "name": "Krisp", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111443563" + ], + "created_at": "2026-07-10T10:12:41.513972", + "updated_at": "2026-07-10T10:12:41.513972", + "url": "/v1/software/krisp" +} diff --git a/site/public/v1/software/kryoflux/index.json b/site/public/v1/software/kryoflux/index.json new file mode 100644 index 000000000000..d1979f908447 --- /dev/null +++ b/site/public/v1/software/kryoflux/index.json @@ -0,0 +1,26 @@ +{ + "id": 5168, + "slug": "kryoflux", + "name": "KryoFlux", + "release_date": null, + "developers": [ + "KryoFlux", + "Software Preservation Society" + ], + "publishers": [], + "operating_systems": [ + "AmigaOS", + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17042396" + ], + "created_at": "2026-07-10T10:12:41.515023", + "updated_at": "2026-07-10T10:12:41.515023", + "url": "/v1/software/kryoflux" +} diff --git a/site/public/v1/software/ksef-guard/index.json b/site/public/v1/software/ksef-guard/index.json new file mode 100644 index 000000000000..3301cfa17440 --- /dev/null +++ b/site/public/v1/software/ksef-guard/index.json @@ -0,0 +1,23 @@ +{ + "id": 5169, + "slug": "ksef-guard", + "name": "KSeF Guard", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [ + "Go" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140258210" + ], + "created_at": "2026-07-10T10:12:41.515023", + "updated_at": "2026-07-10T10:12:41.515023", + "url": "/v1/software/ksef-guard" +} diff --git a/site/public/v1/software/ktts/index.json b/site/public/v1/software/ktts/index.json new file mode 100644 index 000000000000..6494f1ea9bea --- /dev/null +++ b/site/public/v1/software/ktts/index.json @@ -0,0 +1,19 @@ +{ + "id": 5170, + "slug": "ktts", + "name": "KTTS", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3191537" + ], + "created_at": "2026-07-10T10:12:41.515023", + "updated_at": "2026-07-10T10:12:41.515023", + "url": "/v1/software/ktts" +} diff --git a/site/public/v1/software/kuaidi-dache/index.json b/site/public/v1/software/kuaidi-dache/index.json new file mode 100644 index 000000000000..7b1337c019d0 --- /dev/null +++ b/site/public/v1/software/kuaidi-dache/index.json @@ -0,0 +1,19 @@ +{ + "id": 5171, + "slug": "kuaidi-dache", + "name": "Kuaidi Dache", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18653357" + ], + "created_at": "2026-07-10T10:12:41.515905", + "updated_at": "2026-07-10T10:12:41.515905", + "url": "/v1/software/kuaidi-dache" +} diff --git a/site/public/v1/software/kuake/index.json b/site/public/v1/software/kuake/index.json new file mode 100644 index 000000000000..8394c0223e66 --- /dev/null +++ b/site/public/v1/software/kuake/index.json @@ -0,0 +1,19 @@ +{ + "id": 5172, + "slug": "kuake", + "name": "Kuake", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6440966" + ], + "created_at": "2026-07-10T10:12:41.515905", + "updated_at": "2026-07-10T10:12:41.515905", + "url": "/v1/software/kuake" +} diff --git a/site/public/v1/software/kualitee/index.json b/site/public/v1/software/kualitee/index.json new file mode 100644 index 000000000000..c9d92952bc0a --- /dev/null +++ b/site/public/v1/software/kualitee/index.json @@ -0,0 +1,25 @@ +{ + "id": 5173, + "slug": "kualitee", + "name": "Kualitee", + "release_date": null, + "developers": [ + "Kualitatem" + ], + "publishers": [], + "operating_systems": [ + "web application" + ], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140138442" + ], + "created_at": "2026-07-10T10:12:41.515905", + "updated_at": "2026-07-10T10:12:41.515905", + "url": "/v1/software/kualitee" +} diff --git a/site/public/v1/software/kudzu/index.json b/site/public/v1/software/kudzu/index.json new file mode 100644 index 000000000000..843343c8a987 --- /dev/null +++ b/site/public/v1/software/kudzu/index.json @@ -0,0 +1,21 @@ +{ + "id": 5174, + "slug": "kudzu", + "name": "Kudzu", + "release_date": null, + "developers": [ + "Red Hat" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1791041" + ], + "created_at": "2026-07-10T10:12:41.516959", + "updated_at": "2026-07-10T10:12:41.516959", + "url": "/v1/software/kudzu" +} diff --git a/site/public/v1/software/kugou/index.json b/site/public/v1/software/kugou/index.json new file mode 100644 index 000000000000..175d056e929b --- /dev/null +++ b/site/public/v1/software/kugou/index.json @@ -0,0 +1,31 @@ +{ + "id": 5175, + "slug": "kugou", + "name": "KuGou", + "release_date": "2006-01-01", + "developers": [ + "Tencent Music" + ], + "publishers": [ + "Tencent Music" + ], + "operating_systems": [ + "iOS", + "Mac operating system", + "Microsoft Windows" + ], + "programming_languages": [ + "Skia Graphics Engine" + ], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q15896237" + ], + "created_at": "2026-07-10T10:12:41.516959", + "updated_at": "2026-07-10T10:12:41.516959", + "url": "/v1/software/kugou" +} diff --git a/site/public/v1/software/kumir/index.json b/site/public/v1/software/kumir/index.json new file mode 100644 index 000000000000..e514241f3f5c --- /dev/null +++ b/site/public/v1/software/kumir/index.json @@ -0,0 +1,28 @@ +{ + "id": 5176, + "slug": "kumir", + "name": "KuMir", + "release_date": null, + "developers": [ + "Scientific Research Institute of System Development" + ], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [ + "Python" + ], + "licenses": [ + "GNU General Public License, version 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4243417" + ], + "created_at": "2026-07-10T10:12:41.516959", + "updated_at": "2026-07-10T10:12:41.516959", + "url": "/v1/software/kumir" +} diff --git a/site/public/v1/software/kuniao-browser/index.json b/site/public/v1/software/kuniao-browser/index.json new file mode 100644 index 000000000000..de92851468ec --- /dev/null +++ b/site/public/v1/software/kuniao-browser/index.json @@ -0,0 +1,19 @@ +{ + "id": 5177, + "slug": "kuniao-browser", + "name": "Kuniao Browser", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123291501" + ], + "created_at": "2026-07-10T10:12:41.516959", + "updated_at": "2026-07-10T10:12:41.516959", + "url": "/v1/software/kuniao-browser" +} diff --git a/site/public/v1/software/kunnus/index.json b/site/public/v1/software/kunnus/index.json new file mode 100644 index 000000000000..3bd30b0d9b0c --- /dev/null +++ b/site/public/v1/software/kunnus/index.json @@ -0,0 +1,21 @@ +{ + "id": 5178, + "slug": "kunnus", + "name": "Kunnus", + "release_date": null, + "developers": [ + "Think Ahead Technologies GmbH" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138745782" + ], + "created_at": "2026-07-10T10:12:41.516959", + "updated_at": "2026-07-10T10:12:41.516959", + "url": "/v1/software/kunnus" +} diff --git a/site/public/v1/software/kurnik/index.json b/site/public/v1/software/kurnik/index.json new file mode 100644 index 000000000000..03689b7718e5 --- /dev/null +++ b/site/public/v1/software/kurnik/index.json @@ -0,0 +1,19 @@ +{ + "id": 5179, + "slug": "kurnik", + "name": "Kurnik", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q972637" + ], + "created_at": "2026-07-10T10:12:41.517983", + "updated_at": "2026-07-10T10:12:41.517983", + "url": "/v1/software/kurnik" +} diff --git a/site/public/v1/software/kurt/index.json b/site/public/v1/software/kurt/index.json new file mode 100644 index 000000000000..171e90c21d7f --- /dev/null +++ b/site/public/v1/software/kurt/index.json @@ -0,0 +1,19 @@ +{ + "id": 5180, + "slug": "kurt", + "name": "KURT", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4042024" + ], + "created_at": "2026-07-10T10:12:41.517983", + "updated_at": "2026-07-10T10:12:41.517983", + "url": "/v1/software/kurt" +} diff --git a/site/public/v1/software/kustomer/index.json b/site/public/v1/software/kustomer/index.json new file mode 100644 index 000000000000..4dcf9010b036 --- /dev/null +++ b/site/public/v1/software/kustomer/index.json @@ -0,0 +1,19 @@ +{ + "id": 5181, + "slug": "kustomer", + "name": "Kustomer", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105713843" + ], + "created_at": "2026-07-10T10:12:41.518963", + "updated_at": "2026-07-10T10:12:41.518963", + "url": "/v1/software/kustomer" +} diff --git a/site/public/v1/software/kustomize/index.json b/site/public/v1/software/kustomize/index.json new file mode 100644 index 000000000000..dba043960b26 --- /dev/null +++ b/site/public/v1/software/kustomize/index.json @@ -0,0 +1,27 @@ +{ + "id": 5182, + "slug": "kustomize", + "name": "Kustomize", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "cross-platform", + "macOS", + "Microsoft Windows" + ], + "programming_languages": [ + "Go" + ], + "licenses": [ + "Apache Software License 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136456654" + ], + "created_at": "2026-07-10T10:12:41.518963", + "updated_at": "2026-07-10T10:12:41.518963", + "url": "/v1/software/kustomize" +} diff --git a/site/public/v1/software/kuvert/index.json b/site/public/v1/software/kuvert/index.json new file mode 100644 index 000000000000..754b26d70382 --- /dev/null +++ b/site/public/v1/software/kuvert/index.json @@ -0,0 +1,19 @@ +{ + "id": 5183, + "slug": "kuvert", + "name": "kuvert", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62852723" + ], + "created_at": "2026-07-10T10:12:41.518963", + "updated_at": "2026-07-10T10:12:41.518963", + "url": "/v1/software/kuvert" +} diff --git a/site/public/v1/software/kviskr/index.json b/site/public/v1/software/kviskr/index.json new file mode 100644 index 000000000000..e7c90b17b729 --- /dev/null +++ b/site/public/v1/software/kviskr/index.json @@ -0,0 +1,23 @@ +{ + "id": 5184, + "slug": "kviskr", + "name": "Kviskr", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "macOS" + ], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139758769" + ], + "created_at": "2026-07-10T10:12:41.518963", + "updated_at": "2026-07-10T10:12:41.518963", + "url": "/v1/software/kviskr" +} diff --git a/site/public/v1/software/kvpm/index.json b/site/public/v1/software/kvpm/index.json new file mode 100644 index 000000000000..cf93e1a2592c --- /dev/null +++ b/site/public/v1/software/kvpm/index.json @@ -0,0 +1,19 @@ +{ + "id": 5185, + "slug": "kvpm", + "name": "kvpm", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62852678" + ], + "created_at": "2026-07-10T10:12:41.519987", + "updated_at": "2026-07-10T10:12:41.519987", + "url": "/v1/software/kvpm" +} diff --git a/site/public/v1/software/kwalitan/index.json b/site/public/v1/software/kwalitan/index.json new file mode 100644 index 000000000000..d368d6644cec --- /dev/null +++ b/site/public/v1/software/kwalitan/index.json @@ -0,0 +1,23 @@ +{ + "id": 5186, + "slug": "kwalitan", + "name": "Kwalitan", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105229750" + ], + "created_at": "2026-07-10T10:12:41.519987", + "updated_at": "2026-07-10T10:12:41.519987", + "url": "/v1/software/kwalitan" +} diff --git a/site/public/v1/software/kwic/index.json b/site/public/v1/software/kwic/index.json new file mode 100644 index 000000000000..029ea4280ab1 --- /dev/null +++ b/site/public/v1/software/kwic/index.json @@ -0,0 +1,19 @@ +{ + "id": 5187, + "slug": "kwic", + "name": "KWIC", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087822" + ], + "created_at": "2026-07-10T10:12:41.519987", + "updated_at": "2026-07-10T10:12:41.519987", + "url": "/v1/software/kwic" +} diff --git a/site/public/v1/software/kwmap/index.json b/site/public/v1/software/kwmap/index.json new file mode 100644 index 000000000000..2d9d965b8520 --- /dev/null +++ b/site/public/v1/software/kwmap/index.json @@ -0,0 +1,19 @@ +{ + "id": 5188, + "slug": "kwmap", + "name": "KwMap", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085075" + ], + "created_at": "2026-07-10T10:12:41.520983", + "updated_at": "2026-07-10T10:12:41.520983", + "url": "/v1/software/kwmap" +} diff --git a/site/public/v1/software/kxen-inc/index.json b/site/public/v1/software/kxen-inc/index.json new file mode 100644 index 000000000000..96dfa0e0e435 --- /dev/null +++ b/site/public/v1/software/kxen-inc/index.json @@ -0,0 +1,19 @@ +{ + "id": 5189, + "slug": "kxen-inc", + "name": "KXEN Inc.", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6341142" + ], + "created_at": "2026-07-10T10:12:41.520983", + "updated_at": "2026-07-10T10:12:41.520983", + "url": "/v1/software/kxen-inc" +} diff --git a/site/public/v1/software/kyoto-common-lisp/index.json b/site/public/v1/software/kyoto-common-lisp/index.json new file mode 100644 index 000000000000..93a1740f29c0 --- /dev/null +++ b/site/public/v1/software/kyoto-common-lisp/index.json @@ -0,0 +1,19 @@ +{ + "id": 5190, + "slug": "kyoto-common-lisp", + "name": "Kyoto Common Lisp", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4042392" + ], + "created_at": "2026-07-10T10:12:41.520983", + "updated_at": "2026-07-10T10:12:41.520983", + "url": "/v1/software/kyoto-common-lisp" +} diff --git a/site/public/v1/software/kyvos/index.json b/site/public/v1/software/kyvos/index.json new file mode 100644 index 000000000000..e16d3c08500c --- /dev/null +++ b/site/public/v1/software/kyvos/index.json @@ -0,0 +1,19 @@ +{ + "id": 5191, + "slug": "kyvos", + "name": "Kyvos", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60742772" + ], + "created_at": "2026-07-10T10:12:41.521960", + "updated_at": "2026-07-10T10:12:41.521960", + "url": "/v1/software/kyvos" +} diff --git a/site/public/v1/software/l2j/index.json b/site/public/v1/software/l2j/index.json new file mode 100644 index 000000000000..df07b9bdd8b2 --- /dev/null +++ b/site/public/v1/software/l2j/index.json @@ -0,0 +1,21 @@ +{ + "id": 5192, + "slug": "l2j", + "name": "L2J", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Java" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2367791" + ], + "created_at": "2026-07-10T10:12:41.521960", + "updated_at": "2026-07-10T10:12:41.521960", + "url": "/v1/software/l2j" +} diff --git a/site/public/v1/software/l3afpad/index.json b/site/public/v1/software/l3afpad/index.json new file mode 100644 index 000000000000..35c37c69493c --- /dev/null +++ b/site/public/v1/software/l3afpad/index.json @@ -0,0 +1,21 @@ +{ + "id": 5193, + "slug": "l3afpad", + "name": "l3afpad", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "GNU General Public License, version 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126270004" + ], + "created_at": "2026-07-10T10:12:41.521960", + "updated_at": "2026-07-10T10:12:41.521960", + "url": "/v1/software/l3afpad" +} diff --git a/site/public/v1/software/l3enc/index.json b/site/public/v1/software/l3enc/index.json new file mode 100644 index 000000000000..1a3efd9013ec --- /dev/null +++ b/site/public/v1/software/l3enc/index.json @@ -0,0 +1,21 @@ +{ + "id": 5194, + "slug": "l3enc", + "name": "L3enc", + "release_date": "1994-07-13", + "developers": [ + "Fraunhofer institute" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1797811" + ], + "created_at": "2026-07-10T10:12:41.522974", + "updated_at": "2026-07-10T10:12:41.522974", + "url": "/v1/software/l3enc" +} diff --git a/site/public/v1/software/l4-microkernel-family/index.json b/site/public/v1/software/l4-microkernel-family/index.json new file mode 100644 index 000000000000..f05543cd8b37 --- /dev/null +++ b/site/public/v1/software/l4-microkernel-family/index.json @@ -0,0 +1,21 @@ +{ + "id": 5195, + "slug": "l4-microkernel-family", + "name": "L4 microkernel family", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "assembly language" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1797819" + ], + "created_at": "2026-07-10T10:12:41.522974", + "updated_at": "2026-07-10T10:12:41.522974", + "url": "/v1/software/l4-microkernel-family" +} diff --git a/site/public/v1/software/l7-filter/index.json b/site/public/v1/software/l7-filter/index.json new file mode 100644 index 000000000000..73e8685f18ea --- /dev/null +++ b/site/public/v1/software/l7-filter/index.json @@ -0,0 +1,19 @@ +{ + "id": 5196, + "slug": "l7-filter", + "name": "l7-filter", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4042408" + ], + "created_at": "2026-07-10T10:12:41.522974", + "updated_at": "2026-07-10T10:12:41.522974", + "url": "/v1/software/l7-filter" +} diff --git a/site/public/v1/software/la-vortaro/index.json b/site/public/v1/software/la-vortaro/index.json new file mode 100644 index 000000000000..98229bf400da --- /dev/null +++ b/site/public/v1/software/la-vortaro/index.json @@ -0,0 +1,19 @@ +{ + "id": 5197, + "slug": "la-vortaro", + "name": "La Vortaro", + "release_date": "2001-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2735298" + ], + "created_at": "2026-07-10T10:12:41.523960", + "updated_at": "2026-07-10T10:12:41.523960", + "url": "/v1/software/la-vortaro" +} diff --git a/site/public/v1/software/lab-measurement/index.json b/site/public/v1/software/lab-measurement/index.json new file mode 100644 index 000000000000..8333e0c8b2b2 --- /dev/null +++ b/site/public/v1/software/lab-measurement/index.json @@ -0,0 +1,19 @@ +{ + "id": 5198, + "slug": "lab-measurement", + "name": "Lab-Measurement", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975022" + ], + "created_at": "2026-07-10T10:12:41.523960", + "updated_at": "2026-07-10T10:12:41.523960", + "url": "/v1/software/lab-measurement" +} diff --git a/site/public/v1/software/labarchives/index.json b/site/public/v1/software/labarchives/index.json new file mode 100644 index 000000000000..b1316da21adb --- /dev/null +++ b/site/public/v1/software/labarchives/index.json @@ -0,0 +1,19 @@ +{ + "id": 5199, + "slug": "labarchives", + "name": "labArchives", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28455194" + ], + "created_at": "2026-07-10T10:12:41.523960", + "updated_at": "2026-07-10T10:12:41.523960", + "url": "/v1/software/labarchives" +} diff --git a/site/public/v1/software/labelflash/index.json b/site/public/v1/software/labelflash/index.json new file mode 100644 index 000000000000..06b6cc268008 --- /dev/null +++ b/site/public/v1/software/labelflash/index.json @@ -0,0 +1,19 @@ +{ + "id": 5200, + "slug": "labelflash", + "name": "Labelflash", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1425174" + ], + "created_at": "2026-07-10T10:12:41.524903", + "updated_at": "2026-07-10T10:12:41.524903", + "url": "/v1/software/labelflash" +} diff --git a/site/public/v1/software/laboratory-unit-for-computer-assisted-surgery/index.json b/site/public/v1/software/laboratory-unit-for-computer-assisted-surgery/index.json new file mode 100644 index 000000000000..21cd21a71660 --- /dev/null +++ b/site/public/v1/software/laboratory-unit-for-computer-assisted-surgery/index.json @@ -0,0 +1,19 @@ +{ + "id": 5201, + "slug": "laboratory-unit-for-computer-assisted-surgery", + "name": "Laboratory Unit for Computer Assisted Surgery", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1799485" + ], + "created_at": "2026-07-10T10:12:41.524903", + "updated_at": "2026-07-10T10:12:41.524903", + "url": "/v1/software/laboratory-unit-for-computer-assisted-surgery" +} diff --git a/site/public/v1/software/labse/index.json b/site/public/v1/software/labse/index.json new file mode 100644 index 000000000000..5807c1cd74a4 --- /dev/null +++ b/site/public/v1/software/labse/index.json @@ -0,0 +1,21 @@ +{ + "id": 5202, + "slug": "labse", + "name": "LaBSE", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "cross-platform" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136519078" + ], + "created_at": "2026-07-10T10:12:41.524903", + "updated_at": "2026-07-10T10:12:41.524903", + "url": "/v1/software/labse" +} diff --git a/site/public/v1/software/labwindows-cvi/index.json b/site/public/v1/software/labwindows-cvi/index.json new file mode 100644 index 000000000000..c6e3f660da81 --- /dev/null +++ b/site/public/v1/software/labwindows-cvi/index.json @@ -0,0 +1,21 @@ +{ + "id": 5203, + "slug": "labwindows-cvi", + "name": "LabWindows/CVI", + "release_date": null, + "developers": [ + "National Instruments" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1799362" + ], + "created_at": "2026-07-10T10:12:41.525902", + "updated_at": "2026-07-10T10:12:41.525902", + "url": "/v1/software/labwindows-cvi" +} diff --git a/site/public/v1/software/labyrinth/index.json b/site/public/v1/software/labyrinth/index.json new file mode 100644 index 000000000000..2559e48dced8 --- /dev/null +++ b/site/public/v1/software/labyrinth/index.json @@ -0,0 +1,23 @@ +{ + "id": 5204, + "slug": "labyrinth", + "name": "Labyrinth", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Python" + ], + "licenses": [ + "GNU General Public License, version 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106143060" + ], + "created_at": "2026-07-10T10:12:41.525902", + "updated_at": "2026-07-10T10:12:41.525902", + "url": "/v1/software/labyrinth" +} diff --git a/site/public/v1/software/lackeyccg/index.json b/site/public/v1/software/lackeyccg/index.json new file mode 100644 index 000000000000..a806e65eb209 --- /dev/null +++ b/site/public/v1/software/lackeyccg/index.json @@ -0,0 +1,19 @@ +{ + "id": 5205, + "slug": "lackeyccg", + "name": "LackeyCCG", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17042399" + ], + "created_at": "2026-07-10T10:12:41.525902", + "updated_at": "2026-07-10T10:12:41.525902", + "url": "/v1/software/lackeyccg" +} diff --git a/site/public/v1/software/lacros/index.json b/site/public/v1/software/lacros/index.json new file mode 100644 index 000000000000..e09d9b4588a1 --- /dev/null +++ b/site/public/v1/software/lacros/index.json @@ -0,0 +1,22 @@ +{ + "id": 5206, + "slug": "lacros", + "name": "LaCrOs", + "release_date": null, + "developers": [ + "Igalia", + "Google" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113956194" + ], + "created_at": "2026-07-10T10:12:41.526905", + "updated_at": "2026-07-10T10:12:41.526905", + "url": "/v1/software/lacros" +} diff --git a/site/public/v1/software/lakefs/index.json b/site/public/v1/software/lakefs/index.json new file mode 100644 index 000000000000..76bd06b6d1cc --- /dev/null +++ b/site/public/v1/software/lakefs/index.json @@ -0,0 +1,19 @@ +{ + "id": 5207, + "slug": "lakefs", + "name": "LakeFS", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120569436" + ], + "created_at": "2026-07-10T10:12:41.526905", + "updated_at": "2026-07-10T10:12:41.526905", + "url": "/v1/software/lakefs" +} diff --git a/site/public/v1/software/lalavoice/index.json b/site/public/v1/software/lalavoice/index.json new file mode 100644 index 000000000000..ae5649e377b4 --- /dev/null +++ b/site/public/v1/software/lalavoice/index.json @@ -0,0 +1,19 @@ +{ + "id": 5208, + "slug": "lalavoice", + "name": "LaLaVoice", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22906250" + ], + "created_at": "2026-07-10T10:12:41.526905", + "updated_at": "2026-07-10T10:12:41.526905", + "url": "/v1/software/lalavoice" +} diff --git a/site/public/v1/software/landr/index.json b/site/public/v1/software/landr/index.json new file mode 100644 index 000000000000..41a6272bac54 --- /dev/null +++ b/site/public/v1/software/landr/index.json @@ -0,0 +1,19 @@ +{ + "id": 5209, + "slug": "landr", + "name": "LANDR", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18344388" + ], + "created_at": "2026-07-10T10:12:41.527903", + "updated_at": "2026-07-10T10:12:41.527903", + "url": "/v1/software/landr" +} diff --git a/site/public/v1/software/landscape/index.json b/site/public/v1/software/landscape/index.json new file mode 100644 index 000000000000..b87e6cbfb961 --- /dev/null +++ b/site/public/v1/software/landscape/index.json @@ -0,0 +1,19 @@ +{ + "id": 5210, + "slug": "landscape", + "name": "Landscape", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60751916" + ], + "created_at": "2026-07-10T10:12:41.527903", + "updated_at": "2026-07-10T10:12:41.527903", + "url": "/v1/software/landscape" +} diff --git a/site/public/v1/software/landview/index.json b/site/public/v1/software/landview/index.json new file mode 100644 index 000000000000..801304dc11f9 --- /dev/null +++ b/site/public/v1/software/landview/index.json @@ -0,0 +1,21 @@ +{ + "id": 5211, + "slug": "landview", + "name": "LandView", + "release_date": null, + "developers": [ + "United States Census Bureau" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6483841" + ], + "created_at": "2026-07-10T10:12:41.527903", + "updated_at": "2026-07-10T10:12:41.527903", + "url": "/v1/software/landview" +} diff --git a/site/public/v1/software/langchain/index.json b/site/public/v1/software/langchain/index.json new file mode 100644 index 000000000000..be85dc1ec6d6 --- /dev/null +++ b/site/public/v1/software/langchain/index.json @@ -0,0 +1,21 @@ +{ + "id": 5212, + "slug": "langchain", + "name": "LangChain", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117340550" + ], + "created_at": "2026-07-10T10:12:41.528901", + "updated_at": "2026-07-10T10:12:41.528901", + "url": "/v1/software/langchain" +} diff --git a/site/public/v1/software/language-acquisition-device/index.json b/site/public/v1/software/language-acquisition-device/index.json new file mode 100644 index 000000000000..d28effa4e27e --- /dev/null +++ b/site/public/v1/software/language-acquisition-device/index.json @@ -0,0 +1,21 @@ +{ + "id": 5213, + "slug": "language-acquisition-device", + "name": "Language Acquisition Device", + "release_date": null, + "developers": [ + "King's College London" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6486632" + ], + "created_at": "2026-07-10T10:12:41.528901", + "updated_at": "2026-07-10T10:12:41.528901", + "url": "/v1/software/language-acquisition-device" +} diff --git a/site/public/v1/software/language-reactor/index.json b/site/public/v1/software/language-reactor/index.json new file mode 100644 index 000000000000..345bc53e2721 --- /dev/null +++ b/site/public/v1/software/language-reactor/index.json @@ -0,0 +1,19 @@ +{ + "id": 5214, + "slug": "language-reactor", + "name": "Language Reactor", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135427791" + ], + "created_at": "2026-07-10T10:12:41.528901", + "updated_at": "2026-07-10T10:12:41.528901", + "url": "/v1/software/language-reactor" +} diff --git a/site/public/v1/software/languageapp/index.json b/site/public/v1/software/languageapp/index.json new file mode 100644 index 000000000000..a9fcce2cfd2c --- /dev/null +++ b/site/public/v1/software/languageapp/index.json @@ -0,0 +1,19 @@ +{ + "id": 5215, + "slug": "languageapp", + "name": "LanguageApp", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108514127" + ], + "created_at": "2026-07-10T10:12:41.528901", + "updated_at": "2026-07-10T10:12:41.528901", + "url": "/v1/software/languageapp" +} diff --git a/site/public/v1/software/lanschool/index.json b/site/public/v1/software/lanschool/index.json new file mode 100644 index 000000000000..4211d5acab90 --- /dev/null +++ b/site/public/v1/software/lanschool/index.json @@ -0,0 +1,19 @@ +{ + "id": 5216, + "slug": "lanschool", + "name": "LanSchool", + "release_date": "1986-02-09", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6482783" + ], + "created_at": "2026-07-10T10:12:41.529904", + "updated_at": "2026-07-10T10:12:41.529904", + "url": "/v1/software/lanschool" +} diff --git a/site/public/v1/software/lansweeper/index.json b/site/public/v1/software/lansweeper/index.json new file mode 100644 index 000000000000..31eddcf09d2b --- /dev/null +++ b/site/public/v1/software/lansweeper/index.json @@ -0,0 +1,19 @@ +{ + "id": 5217, + "slug": "lansweeper", + "name": "Lansweeper", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25110856" + ], + "created_at": "2026-07-10T10:12:41.529904", + "updated_at": "2026-07-10T10:12:41.529904", + "url": "/v1/software/lansweeper" +} diff --git a/site/public/v1/software/laplacesdemon/index.json b/site/public/v1/software/laplacesdemon/index.json new file mode 100644 index 000000000000..34e198a2301e --- /dev/null +++ b/site/public/v1/software/laplacesdemon/index.json @@ -0,0 +1,25 @@ +{ + "id": 5218, + "slug": "laplacesdemon", + "name": "LaplacesDemon", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Unix-like operating system" + ], + "programming_languages": [ + "R" + ], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17064019" + ], + "created_at": "2026-07-10T10:12:41.529904", + "updated_at": "2026-07-10T10:12:41.529904", + "url": "/v1/software/laplacesdemon" +} diff --git a/site/public/v1/software/laplink-pcmover/index.json b/site/public/v1/software/laplink-pcmover/index.json new file mode 100644 index 000000000000..06c165eedd5d --- /dev/null +++ b/site/public/v1/software/laplink-pcmover/index.json @@ -0,0 +1,21 @@ +{ + "id": 5219, + "slug": "laplink-pcmover", + "name": "Laplink PCmover", + "release_date": "2005-01-01", + "developers": [ + "LapLink Inc." + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6488291" + ], + "created_at": "2026-07-10T10:12:41.530971", + "updated_at": "2026-07-10T10:12:41.530971", + "url": "/v1/software/laplink-pcmover" +} diff --git a/site/public/v1/software/laplink/index.json b/site/public/v1/software/laplink/index.json new file mode 100644 index 000000000000..3b6dcda0e852 --- /dev/null +++ b/site/public/v1/software/laplink/index.json @@ -0,0 +1,21 @@ +{ + "id": 5220, + "slug": "laplink", + "name": "Laplink", + "release_date": "1983-01-01", + "developers": [ + "LapLink Inc." + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1805785" + ], + "created_at": "2026-07-10T10:12:41.530971", + "updated_at": "2026-07-10T10:12:41.530971", + "url": "/v1/software/laplink" +} diff --git a/site/public/v1/software/lapu-ai/index.json b/site/public/v1/software/lapu-ai/index.json new file mode 100644 index 000000000000..2dc22a568df2 --- /dev/null +++ b/site/public/v1/software/lapu-ai/index.json @@ -0,0 +1,23 @@ +{ + "id": 5221, + "slug": "lapu-ai", + "name": "Lapu.AI", + "release_date": null, + "developers": [ + "enterprise" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "TypeScript" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138840543" + ], + "created_at": "2026-07-10T10:12:41.530971", + "updated_at": "2026-07-10T10:12:41.530971", + "url": "/v1/software/lapu-ai" +} diff --git a/site/public/v1/software/laretz/index.json b/site/public/v1/software/laretz/index.json new file mode 100644 index 000000000000..59c2273779c6 --- /dev/null +++ b/site/public/v1/software/laretz/index.json @@ -0,0 +1,19 @@ +{ + "id": 5222, + "slug": "laretz", + "name": "laretz", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975023" + ], + "created_at": "2026-07-10T10:12:41.531961", + "updated_at": "2026-07-10T10:12:41.531961", + "url": "/v1/software/laretz" +} diff --git a/site/public/v1/software/larex/index.json b/site/public/v1/software/larex/index.json new file mode 100644 index 000000000000..3c74ed2f67a7 --- /dev/null +++ b/site/public/v1/software/larex/index.json @@ -0,0 +1,21 @@ +{ + "id": 5223, + "slug": "larex", + "name": "LAREX", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124348103" + ], + "created_at": "2026-07-10T10:12:41.531961", + "updated_at": "2026-07-10T10:12:41.531961", + "url": "/v1/software/larex" +} diff --git a/site/public/v1/software/lark/index.json b/site/public/v1/software/lark/index.json new file mode 100644 index 000000000000..056d2da69508 --- /dev/null +++ b/site/public/v1/software/lark/index.json @@ -0,0 +1,21 @@ +{ + "id": 5224, + "slug": "lark", + "name": "Lark", + "release_date": null, + "developers": [ + "ByteDance" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q104845845" + ], + "created_at": "2026-07-10T10:12:41.531961", + "updated_at": "2026-07-10T10:12:41.531961", + "url": "/v1/software/lark" +} diff --git a/site/public/v1/software/latent-diffusion-model/index.json b/site/public/v1/software/latent-diffusion-model/index.json new file mode 100644 index 000000000000..1e9e3c7ece07 --- /dev/null +++ b/site/public/v1/software/latent-diffusion-model/index.json @@ -0,0 +1,19 @@ +{ + "id": 5225, + "slug": "latent-diffusion-model", + "name": "Latent diffusion model", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130641540" + ], + "created_at": "2026-07-10T10:12:41.532982", + "updated_at": "2026-07-10T10:12:41.532982", + "url": "/v1/software/latent-diffusion-model" +} diff --git a/site/public/v1/software/latex2rtf/index.json b/site/public/v1/software/latex2rtf/index.json new file mode 100644 index 000000000000..8dd6517a292c --- /dev/null +++ b/site/public/v1/software/latex2rtf/index.json @@ -0,0 +1,19 @@ +{ + "id": 5226, + "slug": "latex2rtf", + "name": "LaTeX2RTF", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4042508" + ], + "created_at": "2026-07-10T10:12:41.532982", + "updated_at": "2026-07-10T10:12:41.532982", + "url": "/v1/software/latex2rtf" +} diff --git a/site/public/v1/software/lattice/index.json b/site/public/v1/software/lattice/index.json new file mode 100644 index 000000000000..17f35507b16c --- /dev/null +++ b/site/public/v1/software/lattice/index.json @@ -0,0 +1,19 @@ +{ + "id": 5227, + "slug": "lattice", + "name": "LATtice", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085076" + ], + "created_at": "2026-07-10T10:12:41.532982", + "updated_at": "2026-07-10T10:12:41.532982", + "url": "/v1/software/lattice" +} diff --git a/site/public/v1/software/launch-pad/index.json b/site/public/v1/software/launch-pad/index.json new file mode 100644 index 000000000000..33660864ab23 --- /dev/null +++ b/site/public/v1/software/launch-pad/index.json @@ -0,0 +1,21 @@ +{ + "id": 5228, + "slug": "launch-pad", + "name": "Launch Pad", + "release_date": null, + "developers": [ + "Berkeley Systems" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16256304" + ], + "created_at": "2026-07-10T10:12:41.532982", + "updated_at": "2026-07-10T10:12:41.532982", + "url": "/v1/software/launch-pad" +} diff --git a/site/public/v1/software/laurence-anthony-antwordprofiler/index.json b/site/public/v1/software/laurence-anthony-antwordprofiler/index.json new file mode 100644 index 000000000000..fe54a9b585d5 --- /dev/null +++ b/site/public/v1/software/laurence-anthony-antwordprofiler/index.json @@ -0,0 +1,19 @@ +{ + "id": 5229, + "slug": "laurence-anthony-antwordprofiler", + "name": "Laurence Anthony: AntWordProfiler", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085078" + ], + "created_at": "2026-07-10T10:12:41.533963", + "updated_at": "2026-07-10T10:12:41.533963", + "url": "/v1/software/laurence-anthony-antwordprofiler" +} diff --git a/site/public/v1/software/lavarand/index.json b/site/public/v1/software/lavarand/index.json new file mode 100644 index 000000000000..344101228f5c --- /dev/null +++ b/site/public/v1/software/lavarand/index.json @@ -0,0 +1,19 @@ +{ + "id": 5230, + "slug": "lavarand", + "name": "Lavarand", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6502402" + ], + "created_at": "2026-07-10T10:12:41.533963", + "updated_at": "2026-07-10T10:12:41.533963", + "url": "/v1/software/lavarand" +} diff --git a/site/public/v1/software/law-practice-management-software/index.json b/site/public/v1/software/law-practice-management-software/index.json new file mode 100644 index 000000000000..5db19c1d1d25 --- /dev/null +++ b/site/public/v1/software/law-practice-management-software/index.json @@ -0,0 +1,19 @@ +{ + "id": 5231, + "slug": "law-practice-management-software", + "name": "law practice management software", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6503526" + ], + "created_at": "2026-07-10T10:12:41.534963", + "updated_at": "2026-07-10T10:12:41.534963", + "url": "/v1/software/law-practice-management-software" +} diff --git a/site/public/v1/software/lawkit/index.json b/site/public/v1/software/lawkit/index.json new file mode 100644 index 000000000000..e8cd5e936ced --- /dev/null +++ b/site/public/v1/software/lawkit/index.json @@ -0,0 +1,19 @@ +{ + "id": 5232, + "slug": "lawkit", + "name": "LawKit", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124937567" + ], + "created_at": "2026-07-10T10:12:41.534963", + "updated_at": "2026-07-10T10:12:41.534963", + "url": "/v1/software/lawkit" +} diff --git a/site/public/v1/software/layla/index.json b/site/public/v1/software/layla/index.json new file mode 100644 index 000000000000..b19186497583 --- /dev/null +++ b/site/public/v1/software/layla/index.json @@ -0,0 +1,19 @@ +{ + "id": 5233, + "slug": "layla", + "name": "Layla", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140372830" + ], + "created_at": "2026-07-10T10:12:41.534963", + "updated_at": "2026-07-10T10:12:41.534963", + "url": "/v1/software/layla" +} diff --git a/site/public/v1/software/layman/index.json b/site/public/v1/software/layman/index.json new file mode 100644 index 000000000000..05ebacd3b37b --- /dev/null +++ b/site/public/v1/software/layman/index.json @@ -0,0 +1,19 @@ +{ + "id": 5234, + "slug": "layman", + "name": "layman", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975024" + ], + "created_at": "2026-07-10T10:12:41.534963", + "updated_at": "2026-07-10T10:12:41.534963", + "url": "/v1/software/layman" +} diff --git a/site/public/v1/software/lbdb/index.json b/site/public/v1/software/lbdb/index.json new file mode 100644 index 000000000000..012d0e9d1c2e --- /dev/null +++ b/site/public/v1/software/lbdb/index.json @@ -0,0 +1,19 @@ +{ + "id": 5235, + "slug": "lbdb", + "name": "lbdb", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62854821" + ], + "created_at": "2026-07-10T10:12:41.535997", + "updated_at": "2026-07-10T10:12:41.535997", + "url": "/v1/software/lbdb" +} diff --git a/site/public/v1/software/lbry/index.json b/site/public/v1/software/lbry/index.json new file mode 100644 index 000000000000..dd612e031b33 --- /dev/null +++ b/site/public/v1/software/lbry/index.json @@ -0,0 +1,25 @@ +{ + "id": 5236, + "slug": "lbry", + "name": "LBRY", + "release_date": null, + "developers": [ + "LBRY, Inc." + ], + "publishers": [], + "operating_systems": [ + "iOS" + ], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105104818" + ], + "created_at": "2026-07-10T10:12:41.535997", + "updated_at": "2026-07-10T10:12:41.535997", + "url": "/v1/software/lbry" +} diff --git a/site/public/v1/software/lc-newspaper-viewer/index.json b/site/public/v1/software/lc-newspaper-viewer/index.json new file mode 100644 index 000000000000..07232fdb1fb7 --- /dev/null +++ b/site/public/v1/software/lc-newspaper-viewer/index.json @@ -0,0 +1,19 @@ +{ + "id": 5237, + "slug": "lc-newspaper-viewer", + "name": "LC Newspaper Viewer", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085079" + ], + "created_at": "2026-07-10T10:12:41.535997", + "updated_at": "2026-07-10T10:12:41.535997", + "url": "/v1/software/lc-newspaper-viewer" +} diff --git a/site/public/v1/software/lcab/index.json b/site/public/v1/software/lcab/index.json new file mode 100644 index 000000000000..59f03aae57f0 --- /dev/null +++ b/site/public/v1/software/lcab/index.json @@ -0,0 +1,19 @@ +{ + "id": 5238, + "slug": "lcab", + "name": "lcab", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62854795" + ], + "created_at": "2026-07-10T10:12:41.536981", + "updated_at": "2026-07-10T10:12:41.536981", + "url": "/v1/software/lcab" +} diff --git a/site/public/v1/software/lcd4linux/index.json b/site/public/v1/software/lcd4linux/index.json new file mode 100644 index 000000000000..42a03ad2f43c --- /dev/null +++ b/site/public/v1/software/lcd4linux/index.json @@ -0,0 +1,19 @@ +{ + "id": 5239, + "slug": "lcd4linux", + "name": "lcd4linux", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62852410" + ], + "created_at": "2026-07-10T10:12:41.536981", + "updated_at": "2026-07-10T10:12:41.536981", + "url": "/v1/software/lcd4linux" +} diff --git a/site/public/v1/software/lcdproc/index.json b/site/public/v1/software/lcdproc/index.json new file mode 100644 index 000000000000..036a51d05fef --- /dev/null +++ b/site/public/v1/software/lcdproc/index.json @@ -0,0 +1,19 @@ +{ + "id": 5240, + "slug": "lcdproc", + "name": "LCDproc", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62852404" + ], + "created_at": "2026-07-10T10:12:41.536981", + "updated_at": "2026-07-10T10:12:41.536981", + "url": "/v1/software/lcdproc" +} diff --git a/site/public/v1/software/lcr/index.json b/site/public/v1/software/lcr/index.json new file mode 100644 index 000000000000..68e594bd45d5 --- /dev/null +++ b/site/public/v1/software/lcr/index.json @@ -0,0 +1,19 @@ +{ + "id": 5241, + "slug": "lcr", + "name": "lcr", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975026" + ], + "created_at": "2026-07-10T10:12:41.537998", + "updated_at": "2026-07-10T10:12:41.537998", + "url": "/v1/software/lcr" +} diff --git a/site/public/v1/software/ldapsaisie/index.json b/site/public/v1/software/ldapsaisie/index.json new file mode 100644 index 000000000000..268d7b8ab7de --- /dev/null +++ b/site/public/v1/software/ldapsaisie/index.json @@ -0,0 +1,21 @@ +{ + "id": 5242, + "slug": "ldapsaisie", + "name": "LdapSaisie", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "PHP" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3220124" + ], + "created_at": "2026-07-10T10:12:41.537998", + "updated_at": "2026-07-10T10:12:41.537998", + "url": "/v1/software/ldapsaisie" +} diff --git a/site/public/v1/software/ldapvi/index.json b/site/public/v1/software/ldapvi/index.json new file mode 100644 index 000000000000..b62aea2c221b --- /dev/null +++ b/site/public/v1/software/ldapvi/index.json @@ -0,0 +1,19 @@ +{ + "id": 5243, + "slug": "ldapvi", + "name": "ldapvi", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62863689" + ], + "created_at": "2026-07-10T10:12:41.538972", + "updated_at": "2026-07-10T10:12:41.538972", + "url": "/v1/software/ldapvi" +} diff --git a/site/public/v1/software/ldconfig/index.json b/site/public/v1/software/ldconfig/index.json new file mode 100644 index 000000000000..f3888b8c9494 --- /dev/null +++ b/site/public/v1/software/ldconfig/index.json @@ -0,0 +1,19 @@ +{ + "id": 5244, + "slug": "ldconfig", + "name": "Ldconfig", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137027651" + ], + "created_at": "2026-07-10T10:12:41.538972", + "updated_at": "2026-07-10T10:12:41.538972", + "url": "/v1/software/ldconfig" +} diff --git a/site/public/v1/software/ldraw/index.json b/site/public/v1/software/ldraw/index.json new file mode 100644 index 000000000000..b51a1792932e --- /dev/null +++ b/site/public/v1/software/ldraw/index.json @@ -0,0 +1,21 @@ +{ + "id": 5245, + "slug": "ldraw", + "name": "LDraw", + "release_date": null, + "developers": [ + "James Jessiman" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1760409" + ], + "created_at": "2026-07-10T10:12:41.538972", + "updated_at": "2026-07-10T10:12:41.538972", + "url": "/v1/software/ldraw" +} diff --git a/site/public/v1/software/lea-crm/index.json b/site/public/v1/software/lea-crm/index.json new file mode 100644 index 000000000000..70d02ee8006d --- /dev/null +++ b/site/public/v1/software/lea-crm/index.json @@ -0,0 +1,19 @@ +{ + "id": 5246, + "slug": "lea-crm", + "name": "Lea CRM", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140288269" + ], + "created_at": "2026-07-10T10:12:41.538972", + "updated_at": "2026-07-10T10:12:41.538972", + "url": "/v1/software/lea-crm" +} diff --git a/site/public/v1/software/lead-dbs/index.json b/site/public/v1/software/lead-dbs/index.json new file mode 100644 index 000000000000..741ca245dd32 --- /dev/null +++ b/site/public/v1/software/lead-dbs/index.json @@ -0,0 +1,19 @@ +{ + "id": 5247, + "slug": "lead-dbs", + "name": "Lead-DBS", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131160634" + ], + "created_at": "2026-07-10T10:12:41.540000", + "updated_at": "2026-07-10T10:12:41.540000", + "url": "/v1/software/lead-dbs" +} diff --git a/site/public/v1/software/lead-finder/index.json b/site/public/v1/software/lead-finder/index.json new file mode 100644 index 000000000000..86454f4dd621 --- /dev/null +++ b/site/public/v1/software/lead-finder/index.json @@ -0,0 +1,19 @@ +{ + "id": 5248, + "slug": "lead-finder", + "name": "Lead Finder", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6508356" + ], + "created_at": "2026-07-10T10:12:41.540000", + "updated_at": "2026-07-10T10:12:41.540000", + "url": "/v1/software/lead-finder" +} diff --git a/site/public/v1/software/leadclaw/index.json b/site/public/v1/software/leadclaw/index.json new file mode 100644 index 000000000000..712e9acfa482 --- /dev/null +++ b/site/public/v1/software/leadclaw/index.json @@ -0,0 +1,19 @@ +{ + "id": 5249, + "slug": "leadclaw", + "name": "LeadClaw", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139919475" + ], + "created_at": "2026-07-10T10:12:41.540970", + "updated_at": "2026-07-10T10:12:41.540970", + "url": "/v1/software/leadclaw" +} diff --git a/site/public/v1/software/leakly/index.json b/site/public/v1/software/leakly/index.json new file mode 100644 index 000000000000..9bc8a8ecf93a --- /dev/null +++ b/site/public/v1/software/leakly/index.json @@ -0,0 +1,21 @@ +{ + "id": 5250, + "slug": "leakly", + "name": "Leakly", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "website" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140047242" + ], + "created_at": "2026-07-10T10:12:41.540970", + "updated_at": "2026-07-10T10:12:41.540970", + "url": "/v1/software/leakly" +} diff --git a/site/public/v1/software/leaktracer/index.json b/site/public/v1/software/leaktracer/index.json new file mode 100644 index 000000000000..6dd725a12420 --- /dev/null +++ b/site/public/v1/software/leaktracer/index.json @@ -0,0 +1,19 @@ +{ + "id": 5251, + "slug": "leaktracer", + "name": "LeakTracer", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62863698" + ], + "created_at": "2026-07-10T10:12:41.540970", + "updated_at": "2026-07-10T10:12:41.540970", + "url": "/v1/software/leaktracer" +} diff --git a/site/public/v1/software/leapcast/index.json b/site/public/v1/software/leapcast/index.json new file mode 100644 index 000000000000..f1899c50e94e --- /dev/null +++ b/site/public/v1/software/leapcast/index.json @@ -0,0 +1,21 @@ +{ + "id": 5252, + "slug": "leapcast", + "name": "leapcast", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975027" + ], + "created_at": "2026-07-10T10:12:41.540970", + "updated_at": "2026-07-10T10:12:41.540970", + "url": "/v1/software/leapcast" +} diff --git a/site/public/v1/software/learn-2017/index.json b/site/public/v1/software/learn-2017/index.json new file mode 100644 index 000000000000..44bb256986ce --- /dev/null +++ b/site/public/v1/software/learn-2017/index.json @@ -0,0 +1,19 @@ +{ + "id": 5253, + "slug": "learn-2017", + "name": "Learn 2017", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q56410709" + ], + "created_at": "2026-07-10T10:12:41.541905", + "updated_at": "2026-07-10T10:12:41.541905", + "url": "/v1/software/learn-2017" +} diff --git a/site/public/v1/software/learn-to-program-basic/index.json b/site/public/v1/software/learn-to-program-basic/index.json new file mode 100644 index 000000000000..3234bbdbc934 --- /dev/null +++ b/site/public/v1/software/learn-to-program-basic/index.json @@ -0,0 +1,19 @@ +{ + "id": 5254, + "slug": "learn-to-program-basic", + "name": "Learn to Program BASIC", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139972693" + ], + "created_at": "2026-07-10T10:12:41.541905", + "updated_at": "2026-07-10T10:12:41.541905", + "url": "/v1/software/learn-to-program-basic" +} diff --git a/site/public/v1/software/learnhub/index.json b/site/public/v1/software/learnhub/index.json new file mode 100644 index 000000000000..ff7d30855766 --- /dev/null +++ b/site/public/v1/software/learnhub/index.json @@ -0,0 +1,19 @@ +{ + "id": 5255, + "slug": "learnhub", + "name": "Learnhub", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6510087" + ], + "created_at": "2026-07-10T10:12:41.542901", + "updated_at": "2026-07-10T10:12:41.542901", + "url": "/v1/software/learnhub" +} diff --git a/site/public/v1/software/lectora/index.json b/site/public/v1/software/lectora/index.json new file mode 100644 index 000000000000..83d5e722eb8b --- /dev/null +++ b/site/public/v1/software/lectora/index.json @@ -0,0 +1,19 @@ +{ + "id": 5256, + "slug": "lectora", + "name": "Lectora", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6512410" + ], + "created_at": "2026-07-10T10:12:41.542901", + "updated_at": "2026-07-10T10:12:41.542901", + "url": "/v1/software/lectora" +} diff --git a/site/public/v1/software/led/index.json b/site/public/v1/software/led/index.json new file mode 100644 index 000000000000..c42c643b1c20 --- /dev/null +++ b/site/public/v1/software/led/index.json @@ -0,0 +1,19 @@ +{ + "id": 5257, + "slug": "led", + "name": "led", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065530" + ], + "created_at": "2026-07-10T10:12:41.542901", + "updated_at": "2026-07-10T10:12:41.542901", + "url": "/v1/software/led" +} diff --git a/site/public/v1/software/ledgester/index.json b/site/public/v1/software/ledgester/index.json new file mode 100644 index 000000000000..1b5d2dd84bf7 --- /dev/null +++ b/site/public/v1/software/ledgester/index.json @@ -0,0 +1,21 @@ +{ + "id": 5258, + "slug": "ledgester", + "name": "Ledgester", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Dart" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139985579" + ], + "created_at": "2026-07-10T10:12:41.542901", + "updated_at": "2026-07-10T10:12:41.542901", + "url": "/v1/software/ledgester" +} diff --git a/site/public/v1/software/ledock/index.json b/site/public/v1/software/ledock/index.json new file mode 100644 index 000000000000..c54addbcdbe8 --- /dev/null +++ b/site/public/v1/software/ledock/index.json @@ -0,0 +1,19 @@ +{ + "id": 5259, + "slug": "ledock", + "name": "LeDock", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q30675402" + ], + "created_at": "2026-07-10T10:12:41.543902", + "updated_at": "2026-07-10T10:12:41.543902", + "url": "/v1/software/ledock" +} diff --git a/site/public/v1/software/leetify/index.json b/site/public/v1/software/leetify/index.json new file mode 100644 index 000000000000..33ccf534a88b --- /dev/null +++ b/site/public/v1/software/leetify/index.json @@ -0,0 +1,19 @@ +{ + "id": 5260, + "slug": "leetify", + "name": "Leetify", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140018889" + ], + "created_at": "2026-07-10T10:12:41.543902", + "updated_at": "2026-07-10T10:12:41.543902", + "url": "/v1/software/leetify" +} diff --git a/site/public/v1/software/lego-mindstorms-ev3/index.json b/site/public/v1/software/lego-mindstorms-ev3/index.json new file mode 100644 index 000000000000..0c3e9d0e924d --- /dev/null +++ b/site/public/v1/software/lego-mindstorms-ev3/index.json @@ -0,0 +1,21 @@ +{ + "id": 5261, + "slug": "lego-mindstorms-ev3", + "name": "LEGO Mindstorms EV3", + "release_date": null, + "developers": [ + "The Lego Group" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q132527506" + ], + "created_at": "2026-07-10T10:12:41.543902", + "updated_at": "2026-07-10T10:12:41.543902", + "url": "/v1/software/lego-mindstorms-ev3" +} diff --git a/site/public/v1/software/lego-movie-maker/index.json b/site/public/v1/software/lego-movie-maker/index.json new file mode 100644 index 000000000000..a9638fa8cf3d --- /dev/null +++ b/site/public/v1/software/lego-movie-maker/index.json @@ -0,0 +1,19 @@ +{ + "id": 5262, + "slug": "lego-movie-maker", + "name": "Lego Movie Maker", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138545499" + ], + "created_at": "2026-07-10T10:12:41.544905", + "updated_at": "2026-07-10T10:12:41.544905", + "url": "/v1/software/lego-movie-maker" +} diff --git a/site/public/v1/software/leher-app/index.json b/site/public/v1/software/leher-app/index.json new file mode 100644 index 000000000000..dc730ea51f28 --- /dev/null +++ b/site/public/v1/software/leher-app/index.json @@ -0,0 +1,19 @@ +{ + "id": 5263, + "slug": "leher-app", + "name": "Leher App", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106292537" + ], + "created_at": "2026-07-10T10:12:41.544905", + "updated_at": "2026-07-10T10:12:41.544905", + "url": "/v1/software/leher-app" +} diff --git a/site/public/v1/software/leica-application-suite/index.json b/site/public/v1/software/leica-application-suite/index.json new file mode 100644 index 000000000000..61d865f38016 --- /dev/null +++ b/site/public/v1/software/leica-application-suite/index.json @@ -0,0 +1,19 @@ +{ + "id": 5264, + "slug": "leica-application-suite", + "name": "Leica Application Suite", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113206716" + ], + "created_at": "2026-07-10T10:12:41.544905", + "updated_at": "2026-07-10T10:12:41.544905", + "url": "/v1/software/leica-application-suite" +} diff --git a/site/public/v1/software/lektz/index.json b/site/public/v1/software/lektz/index.json new file mode 100644 index 000000000000..c933856addc3 --- /dev/null +++ b/site/public/v1/software/lektz/index.json @@ -0,0 +1,19 @@ +{ + "id": 5265, + "slug": "lektz", + "name": "Lektz", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6520669" + ], + "created_at": "2026-07-10T10:12:41.545904", + "updated_at": "2026-07-10T10:12:41.545904", + "url": "/v1/software/lektz" +} diff --git a/site/public/v1/software/lemma/index.json b/site/public/v1/software/lemma/index.json new file mode 100644 index 000000000000..9233cac2225b --- /dev/null +++ b/site/public/v1/software/lemma/index.json @@ -0,0 +1,19 @@ +{ + "id": 5266, + "slug": "lemma", + "name": "LEMMA", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085080" + ], + "created_at": "2026-07-10T10:12:41.545904", + "updated_at": "2026-07-10T10:12:41.545904", + "url": "/v1/software/lemma" +} diff --git a/site/public/v1/software/lemonstand/index.json b/site/public/v1/software/lemonstand/index.json new file mode 100644 index 000000000000..0c829ae31811 --- /dev/null +++ b/site/public/v1/software/lemonstand/index.json @@ -0,0 +1,19 @@ +{ + "id": 5267, + "slug": "lemonstand", + "name": "LemonStand", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6521281" + ], + "created_at": "2026-07-10T10:12:41.546954", + "updated_at": "2026-07-10T10:12:41.546954", + "url": "/v1/software/lemonstand" +} diff --git a/site/public/v1/software/lens-studio/index.json b/site/public/v1/software/lens-studio/index.json new file mode 100644 index 000000000000..bf4970cef734 --- /dev/null +++ b/site/public/v1/software/lens-studio/index.json @@ -0,0 +1,24 @@ +{ + "id": 5268, + "slug": "lens-studio", + "name": "Lens Studio", + "release_date": null, + "developers": [ + "Snap Inc." + ], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131376717" + ], + "created_at": "2026-07-10T10:12:41.546954", + "updated_at": "2026-07-10T10:12:41.546954", + "url": "/v1/software/lens-studio" +} diff --git a/site/public/v1/software/lensfun/index.json b/site/public/v1/software/lensfun/index.json new file mode 100644 index 000000000000..cfa3b5259f53 --- /dev/null +++ b/site/public/v1/software/lensfun/index.json @@ -0,0 +1,24 @@ +{ + "id": 5269, + "slug": "lensfun", + "name": "Lensfun", + "release_date": null, + "developers": [ + "Torsten Bronger" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "GNU Lesser General Public License, version 3.0", + "Creative Commons Attribution-ShareAlike 3.0 Unported" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16528772" + ], + "created_at": "2026-07-10T10:12:41.546954", + "updated_at": "2026-07-10T10:12:41.546954", + "url": "/v1/software/lensfun" +} diff --git a/site/public/v1/software/leon-q28453245/index.json b/site/public/v1/software/leon-q28453245/index.json new file mode 100644 index 000000000000..63f8f8e4f9e1 --- /dev/null +++ b/site/public/v1/software/leon-q28453245/index.json @@ -0,0 +1,23 @@ +{ + "id": 5270, + "slug": "leon-q28453245", + "name": "Leon", + "release_date": "2004-01-01", + "developers": [ + "Zero-G Ltd" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28453245" + ], + "created_at": "2026-07-10T10:12:41.546954", + "updated_at": "2026-07-10T10:12:41.546954", + "url": "/v1/software/leon-q28453245" +} diff --git a/site/public/v1/software/leon/index.json b/site/public/v1/software/leon/index.json new file mode 100644 index 000000000000..65364186fc99 --- /dev/null +++ b/site/public/v1/software/leon/index.json @@ -0,0 +1,19 @@ +{ + "id": 5271, + "slug": "leon", + "name": "LEON", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q618889" + ], + "created_at": "2026-07-10T10:12:41.547975", + "updated_at": "2026-07-10T10:12:41.547975", + "url": "/v1/software/leon" +} diff --git a/site/public/v1/software/leonardo/index.json b/site/public/v1/software/leonardo/index.json new file mode 100644 index 000000000000..dbd79b60a420 --- /dev/null +++ b/site/public/v1/software/leonardo/index.json @@ -0,0 +1,19 @@ +{ + "id": 5272, + "slug": "leonardo", + "name": "Leonardo", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135615819" + ], + "created_at": "2026-07-10T10:12:41.547975", + "updated_at": "2026-07-10T10:12:41.547975", + "url": "/v1/software/leonardo" +} diff --git a/site/public/v1/software/lepion/index.json b/site/public/v1/software/lepion/index.json new file mode 100644 index 000000000000..56e5aaac60bf --- /dev/null +++ b/site/public/v1/software/lepion/index.json @@ -0,0 +1,19 @@ +{ + "id": 5273, + "slug": "lepion", + "name": "Lepion", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1755681" + ], + "created_at": "2026-07-10T10:12:41.547975", + "updated_at": "2026-07-10T10:12:41.547975", + "url": "/v1/software/lepion" +} diff --git a/site/public/v1/software/lerobot/index.json b/site/public/v1/software/lerobot/index.json new file mode 100644 index 000000000000..a676e2a3932c --- /dev/null +++ b/site/public/v1/software/lerobot/index.json @@ -0,0 +1,21 @@ +{ + "id": 5274, + "slug": "lerobot", + "name": "LeRobot", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Apache Software License 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138813487" + ], + "created_at": "2026-07-10T10:12:41.548960", + "updated_at": "2026-07-10T10:12:41.548960", + "url": "/v1/software/lerobot" +} diff --git a/site/public/v1/software/lesspipe/index.json b/site/public/v1/software/lesspipe/index.json new file mode 100644 index 000000000000..1b705d317549 --- /dev/null +++ b/site/public/v1/software/lesspipe/index.json @@ -0,0 +1,19 @@ +{ + "id": 5275, + "slug": "lesspipe", + "name": "lesspipe", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63064918" + ], + "created_at": "2026-07-10T10:12:41.548960", + "updated_at": "2026-07-10T10:12:41.548960", + "url": "/v1/software/lesspipe" +} diff --git a/site/public/v1/software/letsview/index.json b/site/public/v1/software/letsview/index.json new file mode 100644 index 000000000000..83a25db4ab80 --- /dev/null +++ b/site/public/v1/software/letsview/index.json @@ -0,0 +1,19 @@ +{ + "id": 5276, + "slug": "letsview", + "name": "LetsView", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q90991967" + ], + "created_at": "2026-07-10T10:12:41.548960", + "updated_at": "2026-07-10T10:12:41.548960", + "url": "/v1/software/letsview" +} diff --git a/site/public/v1/software/letter-zyu/index.json b/site/public/v1/software/letter-zyu/index.json new file mode 100644 index 000000000000..ca4bd83f2825 --- /dev/null +++ b/site/public/v1/software/letter-zyu/index.json @@ -0,0 +1,19 @@ +{ + "id": 5277, + "slug": "letter-zyu", + "name": "Letter Zyu", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4035492" + ], + "created_at": "2026-07-10T10:12:41.549947", + "updated_at": "2026-07-10T10:12:41.549947", + "url": "/v1/software/letter-zyu" +} diff --git a/site/public/v1/software/letterize/index.json b/site/public/v1/software/letterize/index.json new file mode 100644 index 000000000000..3e4109ce7330 --- /dev/null +++ b/site/public/v1/software/letterize/index.json @@ -0,0 +1,19 @@ +{ + "id": 5278, + "slug": "letterize", + "name": "letterize", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62860556" + ], + "created_at": "2026-07-10T10:12:41.549947", + "updated_at": "2026-07-10T10:12:41.549947", + "url": "/v1/software/letterize" +} diff --git a/site/public/v1/software/letterwise/index.json b/site/public/v1/software/letterwise/index.json new file mode 100644 index 000000000000..a840647e8812 --- /dev/null +++ b/site/public/v1/software/letterwise/index.json @@ -0,0 +1,19 @@ +{ + "id": 5279, + "slug": "letterwise", + "name": "LetterWise", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6533528" + ], + "created_at": "2026-07-10T10:12:41.549947", + "updated_at": "2026-07-10T10:12:41.549947", + "url": "/v1/software/letterwise" +} diff --git a/site/public/v1/software/lettrs/index.json b/site/public/v1/software/lettrs/index.json new file mode 100644 index 000000000000..133e0a440f3c --- /dev/null +++ b/site/public/v1/software/lettrs/index.json @@ -0,0 +1,23 @@ +{ + "id": 5280, + "slug": "lettrs", + "name": "lettrs", + "release_date": null, + "developers": [ + "Drew Bartkiewicz" + ], + "publishers": [], + "operating_systems": [ + "iOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17067413" + ], + "created_at": "2026-07-10T10:12:41.550947", + "updated_at": "2026-07-10T10:12:41.550947", + "url": "/v1/software/lettrs" +} diff --git a/site/public/v1/software/levelator/index.json b/site/public/v1/software/levelator/index.json new file mode 100644 index 000000000000..ed4e6a9aa8df --- /dev/null +++ b/site/public/v1/software/levelator/index.json @@ -0,0 +1,21 @@ +{ + "id": 5281, + "slug": "levelator", + "name": "Levelator", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6535098" + ], + "created_at": "2026-07-10T10:12:41.550947", + "updated_at": "2026-07-10T10:12:41.550947", + "url": "/v1/software/levelator" +} diff --git a/site/public/v1/software/levitate/index.json b/site/public/v1/software/levitate/index.json new file mode 100644 index 000000000000..ffd26b2af1d0 --- /dev/null +++ b/site/public/v1/software/levitate/index.json @@ -0,0 +1,23 @@ +{ + "id": 5282, + "slug": "levitate", + "name": "Levitate", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "iOS", + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135263638" + ], + "created_at": "2026-07-10T10:12:41.550947", + "updated_at": "2026-07-10T10:12:41.550947", + "url": "/v1/software/levitate" +} diff --git a/site/public/v1/software/lex/index.json b/site/public/v1/software/lex/index.json new file mode 100644 index 000000000000..18c77cefc83e --- /dev/null +++ b/site/public/v1/software/lex/index.json @@ -0,0 +1,19 @@ +{ + "id": 5283, + "slug": "lex", + "name": "Lex", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134108833" + ], + "created_at": "2026-07-10T10:12:41.550947", + "updated_at": "2026-07-10T10:12:41.551946", + "url": "/v1/software/lex" +} diff --git a/site/public/v1/software/lexa-q139915394/index.json b/site/public/v1/software/lexa-q139915394/index.json new file mode 100644 index 000000000000..bc9614f4abab --- /dev/null +++ b/site/public/v1/software/lexa-q139915394/index.json @@ -0,0 +1,29 @@ +{ + "id": 5284, + "slug": "lexa-q139915394", + "name": "LexA", + "release_date": null, + "developers": [ + "SDN IT-Services GmbH" + ], + "publishers": [ + "SDN IT-Services GmbH" + ], + "operating_systems": [], + "programming_languages": [ + "Python", + "Java", + "TypeScript" + ], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139915394" + ], + "created_at": "2026-07-10T10:12:41.551946", + "updated_at": "2026-07-10T10:12:41.551946", + "url": "/v1/software/lexa-q139915394" +} diff --git a/site/public/v1/software/lexa/index.json b/site/public/v1/software/lexa/index.json new file mode 100644 index 000000000000..301655fd508e --- /dev/null +++ b/site/public/v1/software/lexa/index.json @@ -0,0 +1,19 @@ +{ + "id": 5285, + "slug": "lexa", + "name": "Lexa", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085081" + ], + "created_at": "2026-07-10T10:12:41.551946", + "updated_at": "2026-07-10T10:12:41.551946", + "url": "/v1/software/lexa" +} diff --git a/site/public/v1/software/lexcycle-stanza/index.json b/site/public/v1/software/lexcycle-stanza/index.json new file mode 100644 index 000000000000..84f03d2e050c --- /dev/null +++ b/site/public/v1/software/lexcycle-stanza/index.json @@ -0,0 +1,21 @@ +{ + "id": 5286, + "slug": "lexcycle-stanza", + "name": "Lexcycle Stanza", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3237339" + ], + "created_at": "2026-07-10T10:12:41.551946", + "updated_at": "2026-07-10T10:12:41.551946", + "url": "/v1/software/lexcycle-stanza" +} diff --git a/site/public/v1/software/lexical-variant-generation/index.json b/site/public/v1/software/lexical-variant-generation/index.json new file mode 100644 index 000000000000..29202deade9b --- /dev/null +++ b/site/public/v1/software/lexical-variant-generation/index.json @@ -0,0 +1,21 @@ +{ + "id": 5287, + "slug": "lexical-variant-generation", + "name": "Lexical Variant Generation", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Java" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q48968894" + ], + "created_at": "2026-07-10T10:12:41.552969", + "updated_at": "2026-07-10T10:12:41.552969", + "url": "/v1/software/lexical-variant-generation" +} diff --git a/site/public/v1/software/lexico/index.json b/site/public/v1/software/lexico/index.json new file mode 100644 index 000000000000..f04b9a5c28c0 --- /dev/null +++ b/site/public/v1/software/lexico/index.json @@ -0,0 +1,19 @@ +{ + "id": 5288, + "slug": "lexico", + "name": "Lexico", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3237343" + ], + "created_at": "2026-07-10T10:12:41.552969", + "updated_at": "2026-07-10T10:12:41.552969", + "url": "/v1/software/lexico" +} diff --git a/site/public/v1/software/leximancer/index.json b/site/public/v1/software/leximancer/index.json new file mode 100644 index 000000000000..083c2bfe6607 --- /dev/null +++ b/site/public/v1/software/leximancer/index.json @@ -0,0 +1,24 @@ +{ + "id": 5289, + "slug": "leximancer", + "name": "Leximancer", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105840133" + ], + "created_at": "2026-07-10T10:12:41.552969", + "updated_at": "2026-07-10T10:12:41.552969", + "url": "/v1/software/leximancer" +} diff --git a/site/public/v1/software/lexnet/index.json b/site/public/v1/software/lexnet/index.json new file mode 100644 index 000000000000..bf6c19b45015 --- /dev/null +++ b/site/public/v1/software/lexnet/index.json @@ -0,0 +1,27 @@ +{ + "id": 5290, + "slug": "lexnet", + "name": "Lexnet", + "release_date": null, + "developers": [ + "Ministry of Justice of Spain" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [ + "Java" + ], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5961554" + ], + "created_at": "2026-07-10T10:12:41.552969", + "updated_at": "2026-07-10T10:12:41.552969", + "url": "/v1/software/lexnet" +} diff --git a/site/public/v1/software/lexomics/index.json b/site/public/v1/software/lexomics/index.json new file mode 100644 index 000000000000..258503fe87b1 --- /dev/null +++ b/site/public/v1/software/lexomics/index.json @@ -0,0 +1,19 @@ +{ + "id": 5291, + "slug": "lexomics", + "name": "Lexomics", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087823" + ], + "created_at": "2026-07-10T10:12:41.553947", + "updated_at": "2026-07-10T10:12:41.553947", + "url": "/v1/software/lexomics" +} diff --git a/site/public/v1/software/lexos/index.json b/site/public/v1/software/lexos/index.json new file mode 100644 index 000000000000..d90dd27bacc2 --- /dev/null +++ b/site/public/v1/software/lexos/index.json @@ -0,0 +1,19 @@ +{ + "id": 5292, + "slug": "lexos", + "name": "Lexos", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085082" + ], + "created_at": "2026-07-10T10:12:41.553947", + "updated_at": "2026-07-10T10:12:41.553947", + "url": "/v1/software/lexos" +} diff --git a/site/public/v1/software/lextek/index.json b/site/public/v1/software/lextek/index.json new file mode 100644 index 000000000000..9bb91e23ae2a --- /dev/null +++ b/site/public/v1/software/lextek/index.json @@ -0,0 +1,19 @@ +{ + "id": 5293, + "slug": "lextek", + "name": "Lextek", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085083" + ], + "created_at": "2026-07-10T10:12:41.553947", + "updated_at": "2026-07-10T10:12:41.553947", + "url": "/v1/software/lextek" +} diff --git a/site/public/v1/software/lft/index.json b/site/public/v1/software/lft/index.json new file mode 100644 index 000000000000..f80b3202d42c --- /dev/null +++ b/site/public/v1/software/lft/index.json @@ -0,0 +1,19 @@ +{ + "id": 5294, + "slug": "lft", + "name": "LFT", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62860525" + ], + "created_at": "2026-07-10T10:12:41.554991", + "updated_at": "2026-07-10T10:12:41.554991", + "url": "/v1/software/lft" +} diff --git a/site/public/v1/software/lgte/index.json b/site/public/v1/software/lgte/index.json new file mode 100644 index 000000000000..83c90519c6f0 --- /dev/null +++ b/site/public/v1/software/lgte/index.json @@ -0,0 +1,23 @@ +{ + "id": 5295, + "slug": "lgte", + "name": "LGTE", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "cross-platform" + ], + "programming_languages": [ + "Java" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6458350" + ], + "created_at": "2026-07-10T10:12:41.554991", + "updated_at": "2026-07-10T10:12:41.554991", + "url": "/v1/software/lgte" +} diff --git a/site/public/v1/software/lhasa-q125523061/index.json b/site/public/v1/software/lhasa-q125523061/index.json new file mode 100644 index 000000000000..8a77f07c19eb --- /dev/null +++ b/site/public/v1/software/lhasa-q125523061/index.json @@ -0,0 +1,19 @@ +{ + "id": 5296, + "slug": "lhasa-q125523061", + "name": "LHASA", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125523061" + ], + "created_at": "2026-07-10T10:12:41.554991", + "updated_at": "2026-07-10T10:12:41.554991", + "url": "/v1/software/lhasa-q125523061" +} diff --git a/site/public/v1/software/lhasa/index.json b/site/public/v1/software/lhasa/index.json new file mode 100644 index 000000000000..e4b985bba2c8 --- /dev/null +++ b/site/public/v1/software/lhasa/index.json @@ -0,0 +1,19 @@ +{ + "id": 5297, + "slug": "lhasa", + "name": "Lhasa", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6538508" + ], + "created_at": "2026-07-10T10:12:41.555950", + "updated_at": "2026-07-10T10:12:41.555950", + "url": "/v1/software/lhasa" +} diff --git a/site/public/v1/software/lhc-home/index.json b/site/public/v1/software/lhc-home/index.json new file mode 100644 index 000000000000..1ac1fa376a68 --- /dev/null +++ b/site/public/v1/software/lhc-home/index.json @@ -0,0 +1,21 @@ +{ + "id": 5298, + "slug": "lhc-home", + "name": "LHC@home", + "release_date": null, + "developers": [ + "CERN" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q688523" + ], + "created_at": "2026-07-10T10:12:41.555950", + "updated_at": "2026-07-10T10:12:41.555950", + "url": "/v1/software/lhc-home" +} diff --git a/site/public/v1/software/lhs2tex/index.json b/site/public/v1/software/lhs2tex/index.json new file mode 100644 index 000000000000..038c5d3c7897 --- /dev/null +++ b/site/public/v1/software/lhs2tex/index.json @@ -0,0 +1,19 @@ +{ + "id": 5299, + "slug": "lhs2tex", + "name": "lhs2tex", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62860437" + ], + "created_at": "2026-07-10T10:12:41.555950", + "updated_at": "2026-07-10T10:12:41.555950", + "url": "/v1/software/lhs2tex" +} diff --git a/site/public/v1/software/liaotianbao/index.json b/site/public/v1/software/liaotianbao/index.json new file mode 100644 index 000000000000..3c18d7dc8051 --- /dev/null +++ b/site/public/v1/software/liaotianbao/index.json @@ -0,0 +1,19 @@ +{ + "id": 5300, + "slug": "liaotianbao", + "name": "Liaotianbao", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q65042473" + ], + "created_at": "2026-07-10T10:12:41.556951", + "updated_at": "2026-07-10T10:12:41.556951", + "url": "/v1/software/liaotianbao" +} diff --git a/site/public/v1/software/liba53/index.json b/site/public/v1/software/liba53/index.json new file mode 100644 index 000000000000..a886d150a4f7 --- /dev/null +++ b/site/public/v1/software/liba53/index.json @@ -0,0 +1,19 @@ +{ + "id": 5301, + "slug": "liba53", + "name": "liba53", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975028" + ], + "created_at": "2026-07-10T10:12:41.556951", + "updated_at": "2026-07-10T10:12:41.556951", + "url": "/v1/software/liba53" +} diff --git a/site/public/v1/software/libabigail/index.json b/site/public/v1/software/libabigail/index.json new file mode 100644 index 000000000000..94344ed07419 --- /dev/null +++ b/site/public/v1/software/libabigail/index.json @@ -0,0 +1,21 @@ +{ + "id": 5302, + "slug": "libabigail", + "name": "libabigail", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Apache Software License 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122782798" + ], + "created_at": "2026-07-10T10:12:41.556951", + "updated_at": "2026-07-10T10:12:41.556951", + "url": "/v1/software/libabigail" +} diff --git a/site/public/v1/software/libabw/index.json b/site/public/v1/software/libabw/index.json new file mode 100644 index 000000000000..47654c070d89 --- /dev/null +++ b/site/public/v1/software/libabw/index.json @@ -0,0 +1,21 @@ +{ + "id": 5303, + "slug": "libabw", + "name": "libabw", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Mozilla Public License, version 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135935931" + ], + "created_at": "2026-07-10T10:12:41.556951", + "updated_at": "2026-07-10T10:12:41.556951", + "url": "/v1/software/libabw" +} diff --git a/site/public/v1/software/libaccroc/index.json b/site/public/v1/software/libaccroc/index.json new file mode 100644 index 000000000000..8b994f3ba9a7 --- /dev/null +++ b/site/public/v1/software/libaccroc/index.json @@ -0,0 +1,19 @@ +{ + "id": 5304, + "slug": "libaccroc", + "name": "LibAccroc", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76181370" + ], + "created_at": "2026-07-10T10:12:41.557970", + "updated_at": "2026-07-10T10:12:41.557970", + "url": "/v1/software/libaccroc" +} diff --git a/site/public/v1/software/libalkimia/index.json b/site/public/v1/software/libalkimia/index.json new file mode 100644 index 000000000000..7f84fe46189e --- /dev/null +++ b/site/public/v1/software/libalkimia/index.json @@ -0,0 +1,19 @@ +{ + "id": 5305, + "slug": "libalkimia", + "name": "libalkimia", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065417" + ], + "created_at": "2026-07-10T10:12:41.558821", + "updated_at": "2026-07-10T10:12:41.558821", + "url": "/v1/software/libalkimia" +} diff --git a/site/public/v1/software/libamc/index.json b/site/public/v1/software/libamc/index.json new file mode 100644 index 000000000000..0d757c086e11 --- /dev/null +++ b/site/public/v1/software/libamc/index.json @@ -0,0 +1,19 @@ +{ + "id": 5306, + "slug": "libamc", + "name": "libamc", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16528799" + ], + "created_at": "2026-07-10T10:12:41.559903", + "updated_at": "2026-07-10T10:12:41.559903", + "url": "/v1/software/libamc" +} diff --git a/site/public/v1/software/libattica/index.json b/site/public/v1/software/libattica/index.json new file mode 100644 index 000000000000..cf70ed4b6494 --- /dev/null +++ b/site/public/v1/software/libattica/index.json @@ -0,0 +1,19 @@ +{ + "id": 5307, + "slug": "libattica", + "name": "libattica", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975030" + ], + "created_at": "2026-07-10T10:12:41.560413", + "updated_at": "2026-07-10T10:12:41.560413", + "url": "/v1/software/libattica" +} diff --git a/site/public/v1/software/libax25/index.json b/site/public/v1/software/libax25/index.json new file mode 100644 index 000000000000..baa78b8d7ca3 --- /dev/null +++ b/site/public/v1/software/libax25/index.json @@ -0,0 +1,19 @@ +{ + "id": 5308, + "slug": "libax25", + "name": "libax25", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62852311" + ], + "created_at": "2026-07-10T10:12:41.563056", + "updated_at": "2026-07-10T10:12:41.564686", + "url": "/v1/software/libax25" +} diff --git a/site/public/v1/software/libayatana/index.json b/site/public/v1/software/libayatana/index.json new file mode 100644 index 000000000000..8e6dbd664ba4 --- /dev/null +++ b/site/public/v1/software/libayatana/index.json @@ -0,0 +1,19 @@ +{ + "id": 5309, + "slug": "libayatana", + "name": "libayatana", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120311989" + ], + "created_at": "2026-07-10T10:12:41.566332", + "updated_at": "2026-07-10T10:12:41.566332", + "url": "/v1/software/libayatana" +} diff --git a/site/public/v1/software/libbdplus/index.json b/site/public/v1/software/libbdplus/index.json new file mode 100644 index 000000000000..c76465adb213 --- /dev/null +++ b/site/public/v1/software/libbdplus/index.json @@ -0,0 +1,19 @@ +{ + "id": 5310, + "slug": "libbdplus", + "name": "libbdplus", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975032" + ], + "created_at": "2026-07-10T10:12:41.569959", + "updated_at": "2026-07-10T10:12:41.569959", + "url": "/v1/software/libbdplus" +} diff --git a/site/public/v1/software/libbonobo/index.json b/site/public/v1/software/libbonobo/index.json new file mode 100644 index 000000000000..cd751fb3a319 --- /dev/null +++ b/site/public/v1/software/libbonobo/index.json @@ -0,0 +1,19 @@ +{ + "id": 5311, + "slug": "libbonobo", + "name": "libbonobo", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63064754" + ], + "created_at": "2026-07-10T10:12:41.571961", + "updated_at": "2026-07-10T10:12:41.571961", + "url": "/v1/software/libbonobo" +} diff --git a/site/public/v1/software/libbtbb/index.json b/site/public/v1/software/libbtbb/index.json new file mode 100644 index 000000000000..b1aecc658ad2 --- /dev/null +++ b/site/public/v1/software/libbtbb/index.json @@ -0,0 +1,19 @@ +{ + "id": 5312, + "slug": "libbtbb", + "name": "libbtbb", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975034" + ], + "created_at": "2026-07-10T10:12:41.574045", + "updated_at": "2026-07-10T10:12:41.574045", + "url": "/v1/software/libbtbb" +} diff --git a/site/public/v1/software/libccd/index.json b/site/public/v1/software/libccd/index.json new file mode 100644 index 000000000000..7f8383818683 --- /dev/null +++ b/site/public/v1/software/libccd/index.json @@ -0,0 +1,19 @@ +{ + "id": 5313, + "slug": "libccd", + "name": "libccd", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975035" + ], + "created_at": "2026-07-10T10:12:41.574964", + "updated_at": "2026-07-10T10:12:41.574964", + "url": "/v1/software/libccd" +} diff --git a/site/public/v1/software/libcdr/index.json b/site/public/v1/software/libcdr/index.json new file mode 100644 index 000000000000..8855d7ba9c83 --- /dev/null +++ b/site/public/v1/software/libcdr/index.json @@ -0,0 +1,23 @@ +{ + "id": 5314, + "slug": "libcdr", + "name": "libcdr", + "release_date": null, + "developers": [ + "Document Liberation Project" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Mozilla Public License, version 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975036" + ], + "created_at": "2026-07-10T10:12:41.574964", + "updated_at": "2026-07-10T10:12:41.574964", + "url": "/v1/software/libcdr" +} diff --git a/site/public/v1/software/libcircle/index.json b/site/public/v1/software/libcircle/index.json new file mode 100644 index 000000000000..a97fecc32c68 --- /dev/null +++ b/site/public/v1/software/libcircle/index.json @@ -0,0 +1,19 @@ +{ + "id": 5315, + "slug": "libcircle", + "name": "libcircle", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975038" + ], + "created_at": "2026-07-10T10:12:41.574964", + "updated_at": "2026-07-10T10:12:41.574964", + "url": "/v1/software/libcircle" +} diff --git a/site/public/v1/software/libclc/index.json b/site/public/v1/software/libclc/index.json new file mode 100644 index 000000000000..9110fafa8782 --- /dev/null +++ b/site/public/v1/software/libclc/index.json @@ -0,0 +1,19 @@ +{ + "id": 5316, + "slug": "libclc", + "name": "libclc", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975040" + ], + "created_at": "2026-07-10T10:12:41.575961", + "updated_at": "2026-07-10T10:12:41.575961", + "url": "/v1/software/libclc" +} diff --git a/site/public/v1/software/libclsync/index.json b/site/public/v1/software/libclsync/index.json new file mode 100644 index 000000000000..5f7469af40b2 --- /dev/null +++ b/site/public/v1/software/libclsync/index.json @@ -0,0 +1,19 @@ +{ + "id": 5317, + "slug": "libclsync", + "name": "libclsync", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975042" + ], + "created_at": "2026-07-10T10:12:41.575961", + "updated_at": "2026-07-10T10:12:41.575961", + "url": "/v1/software/libclsync" +} diff --git a/site/public/v1/software/libcmis/index.json b/site/public/v1/software/libcmis/index.json new file mode 100644 index 000000000000..09764521ab12 --- /dev/null +++ b/site/public/v1/software/libcmis/index.json @@ -0,0 +1,19 @@ +{ + "id": 5318, + "slug": "libcmis", + "name": "libcmis", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975043" + ], + "created_at": "2026-07-10T10:12:41.575961", + "updated_at": "2026-07-10T10:12:41.575961", + "url": "/v1/software/libcmis" +} diff --git a/site/public/v1/software/libcrafter/index.json b/site/public/v1/software/libcrafter/index.json new file mode 100644 index 000000000000..36e598aa34c0 --- /dev/null +++ b/site/public/v1/software/libcrafter/index.json @@ -0,0 +1,21 @@ +{ + "id": 5319, + "slug": "libcrafter", + "name": "libcrafter", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975044" + ], + "created_at": "2026-07-10T10:12:41.576960", + "updated_at": "2026-07-10T10:12:41.576960", + "url": "/v1/software/libcrafter" +} diff --git a/site/public/v1/software/libcxxabi/index.json b/site/public/v1/software/libcxxabi/index.json new file mode 100644 index 000000000000..a1222d586db7 --- /dev/null +++ b/site/public/v1/software/libcxxabi/index.json @@ -0,0 +1,21 @@ +{ + "id": 5320, + "slug": "libcxxabi", + "name": "libcxxabi", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Apache License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975046" + ], + "created_at": "2026-07-10T10:12:41.576960", + "updated_at": "2026-07-10T10:12:41.576960", + "url": "/v1/software/libcxxabi" +} diff --git a/site/public/v1/software/libcxxrt/index.json b/site/public/v1/software/libcxxrt/index.json new file mode 100644 index 000000000000..77137f1b183c --- /dev/null +++ b/site/public/v1/software/libcxxrt/index.json @@ -0,0 +1,19 @@ +{ + "id": 5321, + "slug": "libcxxrt", + "name": "libcxxrt", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975047" + ], + "created_at": "2026-07-10T10:12:41.576960", + "updated_at": "2026-07-10T10:12:41.576960", + "url": "/v1/software/libcxxrt" +} diff --git a/site/public/v1/software/libdivecomputer/index.json b/site/public/v1/software/libdivecomputer/index.json new file mode 100644 index 000000000000..4c81865e38f5 --- /dev/null +++ b/site/public/v1/software/libdivecomputer/index.json @@ -0,0 +1,19 @@ +{ + "id": 5322, + "slug": "libdivecomputer", + "name": "libdivecomputer", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975049" + ], + "created_at": "2026-07-10T10:12:41.577956", + "updated_at": "2026-07-10T10:12:41.577956", + "url": "/v1/software/libdivecomputer" +} diff --git a/site/public/v1/software/libdivsufsort/index.json b/site/public/v1/software/libdivsufsort/index.json new file mode 100644 index 000000000000..7856a9c23902 --- /dev/null +++ b/site/public/v1/software/libdivsufsort/index.json @@ -0,0 +1,21 @@ +{ + "id": 5323, + "slug": "libdivsufsort", + "name": "libdivsufsort", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975050" + ], + "created_at": "2026-07-10T10:12:41.577956", + "updated_at": "2026-07-10T10:12:41.577956", + "url": "/v1/software/libdivsufsort" +} diff --git a/site/public/v1/software/libdmc/index.json b/site/public/v1/software/libdmc/index.json new file mode 100644 index 000000000000..def5a69591c0 --- /dev/null +++ b/site/public/v1/software/libdmc/index.json @@ -0,0 +1,19 @@ +{ + "id": 5324, + "slug": "libdmc", + "name": "Libdmc", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6540472" + ], + "created_at": "2026-07-10T10:12:41.577956", + "updated_at": "2026-07-10T10:12:41.577956", + "url": "/v1/software/libdmc" +} diff --git a/site/public/v1/software/libdnet-q62860492/index.json b/site/public/v1/software/libdnet-q62860492/index.json new file mode 100644 index 000000000000..ece2f3fc52a2 --- /dev/null +++ b/site/public/v1/software/libdnet-q62860492/index.json @@ -0,0 +1,19 @@ +{ + "id": 5325, + "slug": "libdnet-q62860492", + "name": "libdnet", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62860492" + ], + "created_at": "2026-07-10T10:12:41.578956", + "updated_at": "2026-07-10T10:12:41.578956", + "url": "/v1/software/libdnet-q62860492" +} diff --git a/site/public/v1/software/libdnet/index.json b/site/public/v1/software/libdnet/index.json new file mode 100644 index 000000000000..07fcb1533a04 --- /dev/null +++ b/site/public/v1/software/libdnet/index.json @@ -0,0 +1,19 @@ +{ + "id": 5326, + "slug": "libdnet", + "name": "libdnet", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62860490" + ], + "created_at": "2026-07-10T10:12:41.578956", + "updated_at": "2026-07-10T10:12:41.578956", + "url": "/v1/software/libdnet" +} diff --git a/site/public/v1/software/libechonest/index.json b/site/public/v1/software/libechonest/index.json new file mode 100644 index 000000000000..ec27bd27e559 --- /dev/null +++ b/site/public/v1/software/libechonest/index.json @@ -0,0 +1,19 @@ +{ + "id": 5327, + "slug": "libechonest", + "name": "libechonest", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975054" + ], + "created_at": "2026-07-10T10:12:41.579956", + "updated_at": "2026-07-10T10:12:41.579956", + "url": "/v1/software/libechonest" +} diff --git a/site/public/v1/software/libeot/index.json b/site/public/v1/software/libeot/index.json new file mode 100644 index 000000000000..98df88c37847 --- /dev/null +++ b/site/public/v1/software/libeot/index.json @@ -0,0 +1,19 @@ +{ + "id": 5328, + "slug": "libeot", + "name": "libeot", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975055" + ], + "created_at": "2026-07-10T10:12:41.579956", + "updated_at": "2026-07-10T10:12:41.579956", + "url": "/v1/software/libeot" +} diff --git a/site/public/v1/software/libepoxy/index.json b/site/public/v1/software/libepoxy/index.json new file mode 100644 index 000000000000..d04adc6ec77d --- /dev/null +++ b/site/public/v1/software/libepoxy/index.json @@ -0,0 +1,19 @@ +{ + "id": 5329, + "slug": "libepoxy", + "name": "libepoxy", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975056" + ], + "created_at": "2026-07-10T10:12:41.579956", + "updated_at": "2026-07-10T10:12:41.579956", + "url": "/v1/software/libepoxy" +} diff --git a/site/public/v1/software/libev/index.json b/site/public/v1/software/libev/index.json new file mode 100644 index 000000000000..b4ca9c8732a4 --- /dev/null +++ b/site/public/v1/software/libev/index.json @@ -0,0 +1,21 @@ +{ + "id": 5330, + "slug": "libev", + "name": "libev", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "2-clause BSD License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63064998" + ], + "created_at": "2026-07-10T10:12:41.579956", + "updated_at": "2026-07-10T10:12:41.579956", + "url": "/v1/software/libev" +} diff --git a/site/public/v1/software/libfaketime/index.json b/site/public/v1/software/libfaketime/index.json new file mode 100644 index 000000000000..3c1062d1e388 --- /dev/null +++ b/site/public/v1/software/libfaketime/index.json @@ -0,0 +1,19 @@ +{ + "id": 5331, + "slug": "libfaketime", + "name": "LibFakeTime", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62852307" + ], + "created_at": "2026-07-10T10:12:41.580954", + "updated_at": "2026-07-10T10:12:41.580954", + "url": "/v1/software/libfaketime" +} diff --git a/site/public/v1/software/libfame/index.json b/site/public/v1/software/libfame/index.json new file mode 100644 index 000000000000..910887e3aa9a --- /dev/null +++ b/site/public/v1/software/libfame/index.json @@ -0,0 +1,19 @@ +{ + "id": 5332, + "slug": "libfame", + "name": "libfame", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065484" + ], + "created_at": "2026-07-10T10:12:41.580954", + "updated_at": "2026-07-10T10:12:41.580954", + "url": "/v1/software/libfame" +} diff --git a/site/public/v1/software/libfuse/index.json b/site/public/v1/software/libfuse/index.json new file mode 100644 index 000000000000..e8d305465127 --- /dev/null +++ b/site/public/v1/software/libfuse/index.json @@ -0,0 +1,22 @@ +{ + "id": 5333, + "slug": "libfuse", + "name": "libfuse", + "release_date": null, + "developers": [ + "Nikolaus Rath", + "Miklos Szeredi" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q132853259" + ], + "created_at": "2026-07-10T10:12:41.581960", + "updated_at": "2026-07-10T10:12:41.581960", + "url": "/v1/software/libfuse" +} diff --git a/site/public/v1/software/libgit2-glib/index.json b/site/public/v1/software/libgit2-glib/index.json new file mode 100644 index 000000000000..cba5a8d51fc6 --- /dev/null +++ b/site/public/v1/software/libgit2-glib/index.json @@ -0,0 +1,19 @@ +{ + "id": 5334, + "slug": "libgit2-glib", + "name": "Libgit2-glib", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76181402" + ], + "created_at": "2026-07-10T10:12:41.581960", + "updated_at": "2026-07-10T10:12:41.581960", + "url": "/v1/software/libgit2-glib" +} diff --git a/site/public/v1/software/libgltf/index.json b/site/public/v1/software/libgltf/index.json new file mode 100644 index 000000000000..8c2dc0f53d7e --- /dev/null +++ b/site/public/v1/software/libgltf/index.json @@ -0,0 +1,19 @@ +{ + "id": 5335, + "slug": "libgltf", + "name": "libgltf", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975063" + ], + "created_at": "2026-07-10T10:12:41.581960", + "updated_at": "2026-07-10T10:12:41.581960", + "url": "/v1/software/libgltf" +} diff --git a/site/public/v1/software/libgnomecanvasmm/index.json b/site/public/v1/software/libgnomecanvasmm/index.json new file mode 100644 index 000000000000..1bf840bf101e --- /dev/null +++ b/site/public/v1/software/libgnomecanvasmm/index.json @@ -0,0 +1,19 @@ +{ + "id": 5336, + "slug": "libgnomecanvasmm", + "name": "libgnomecanvasmm", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60864647" + ], + "created_at": "2026-07-10T10:12:41.582961", + "updated_at": "2026-07-10T10:12:41.582961", + "url": "/v1/software/libgnomecanvasmm" +} diff --git a/site/public/v1/software/libgssh/index.json b/site/public/v1/software/libgssh/index.json new file mode 100644 index 000000000000..4003445b593f --- /dev/null +++ b/site/public/v1/software/libgssh/index.json @@ -0,0 +1,19 @@ +{ + "id": 5337, + "slug": "libgssh", + "name": "LibGSSH", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q68089921" + ], + "created_at": "2026-07-10T10:12:41.582961", + "updated_at": "2026-07-10T10:12:41.582961", + "url": "/v1/software/libgssh" +} diff --git a/site/public/v1/software/libgsystem/index.json b/site/public/v1/software/libgsystem/index.json new file mode 100644 index 000000000000..6b1f7e3e3d87 --- /dev/null +++ b/site/public/v1/software/libgsystem/index.json @@ -0,0 +1,19 @@ +{ + "id": 5338, + "slug": "libgsystem", + "name": "LibGSystem", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q68089926" + ], + "created_at": "2026-07-10T10:12:41.582961", + "updated_at": "2026-07-10T10:12:41.582961", + "url": "/v1/software/libgsystem" +} diff --git a/site/public/v1/software/libh2o/index.json b/site/public/v1/software/libh2o/index.json new file mode 100644 index 000000000000..79f2fefdf67f --- /dev/null +++ b/site/public/v1/software/libh2o/index.json @@ -0,0 +1,19 @@ +{ + "id": 5339, + "slug": "libh2o", + "name": "libh2o", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975064" + ], + "created_at": "2026-07-10T10:12:41.583960", + "updated_at": "2026-07-10T10:12:41.583960", + "url": "/v1/software/libh2o" +} diff --git a/site/public/v1/software/libh2oxx/index.json b/site/public/v1/software/libh2oxx/index.json new file mode 100644 index 000000000000..f3bdd2d840fc --- /dev/null +++ b/site/public/v1/software/libh2oxx/index.json @@ -0,0 +1,19 @@ +{ + "id": 5340, + "slug": "libh2oxx", + "name": "libh2oxx", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975065" + ], + "created_at": "2026-07-10T10:12:41.583960", + "updated_at": "2026-07-10T10:12:41.583960", + "url": "/v1/software/libh2oxx" +} diff --git a/site/public/v1/software/libhackrf/index.json b/site/public/v1/software/libhackrf/index.json new file mode 100644 index 000000000000..e68783c8b775 --- /dev/null +++ b/site/public/v1/software/libhackrf/index.json @@ -0,0 +1,19 @@ +{ + "id": 5341, + "slug": "libhackrf", + "name": "libhackrf", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975066" + ], + "created_at": "2026-07-10T10:12:41.583960", + "updated_at": "2026-07-10T10:12:41.583960", + "url": "/v1/software/libhackrf" +} diff --git a/site/public/v1/software/libhoudini/index.json b/site/public/v1/software/libhoudini/index.json new file mode 100644 index 000000000000..9eab1b6bada8 --- /dev/null +++ b/site/public/v1/software/libhoudini/index.json @@ -0,0 +1,23 @@ +{ + "id": 5342, + "slug": "libhoudini", + "name": "libhoudini", + "release_date": null, + "developers": [ + "Intel" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q104681947" + ], + "created_at": "2026-07-10T10:12:41.584961", + "updated_at": "2026-07-10T10:12:41.584961", + "url": "/v1/software/libhoudini" +} diff --git a/site/public/v1/software/libibverbs/index.json b/site/public/v1/software/libibverbs/index.json new file mode 100644 index 000000000000..af7785e62d20 --- /dev/null +++ b/site/public/v1/software/libibverbs/index.json @@ -0,0 +1,19 @@ +{ + "id": 5343, + "slug": "libibverbs", + "name": "libibverbs", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63064980" + ], + "created_at": "2026-07-10T10:12:41.584961", + "updated_at": "2026-07-10T10:12:41.584961", + "url": "/v1/software/libibverbs" +} diff --git a/site/public/v1/software/libinput-gestures/index.json b/site/public/v1/software/libinput-gestures/index.json new file mode 100644 index 000000000000..32927abb4241 --- /dev/null +++ b/site/public/v1/software/libinput-gestures/index.json @@ -0,0 +1,19 @@ +{ + "id": 5344, + "slug": "libinput-gestures", + "name": "libinput-gestures", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975068" + ], + "created_at": "2026-07-10T10:12:41.585960", + "updated_at": "2026-07-10T10:12:41.585960", + "url": "/v1/software/libinput-gestures" +} diff --git a/site/public/v1/software/libipod/index.json b/site/public/v1/software/libipod/index.json new file mode 100644 index 000000000000..ebf56d69cc01 --- /dev/null +++ b/site/public/v1/software/libipod/index.json @@ -0,0 +1,19 @@ +{ + "id": 5345, + "slug": "libipod", + "name": "libipod", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065620" + ], + "created_at": "2026-07-10T10:12:41.585960", + "updated_at": "2026-07-10T10:12:41.585960", + "url": "/v1/software/libipod" +} diff --git a/site/public/v1/software/libiscsi/index.json b/site/public/v1/software/libiscsi/index.json new file mode 100644 index 000000000000..6722bbc695ee --- /dev/null +++ b/site/public/v1/software/libiscsi/index.json @@ -0,0 +1,19 @@ +{ + "id": 5346, + "slug": "libiscsi", + "name": "libiscsi", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975069" + ], + "created_at": "2026-07-10T10:12:41.585960", + "updated_at": "2026-07-10T10:12:41.585960", + "url": "/v1/software/libiscsi" +} diff --git a/site/public/v1/software/libisds/index.json b/site/public/v1/software/libisds/index.json new file mode 100644 index 000000000000..ce4e21b24ca7 --- /dev/null +++ b/site/public/v1/software/libisds/index.json @@ -0,0 +1,19 @@ +{ + "id": 5347, + "slug": "libisds", + "name": "libisds", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975071" + ], + "created_at": "2026-07-10T10:12:41.585960", + "updated_at": "2026-07-10T10:12:41.585960", + "url": "/v1/software/libisds" +} diff --git a/site/public/v1/software/libixion/index.json b/site/public/v1/software/libixion/index.json new file mode 100644 index 000000000000..a0599cd673e5 --- /dev/null +++ b/site/public/v1/software/libixion/index.json @@ -0,0 +1,19 @@ +{ + "id": 5348, + "slug": "libixion", + "name": "libixion", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975072" + ], + "created_at": "2026-07-10T10:12:41.587022", + "updated_at": "2026-07-10T10:12:41.587022", + "url": "/v1/software/libixion" +} diff --git a/site/public/v1/software/libixp/index.json b/site/public/v1/software/libixp/index.json new file mode 100644 index 000000000000..1df4045e0c02 --- /dev/null +++ b/site/public/v1/software/libixp/index.json @@ -0,0 +1,21 @@ +{ + "id": 5349, + "slug": "libixp", + "name": "libixp", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62860390" + ], + "created_at": "2026-07-10T10:12:41.587022", + "updated_at": "2026-07-10T10:12:41.587022", + "url": "/v1/software/libixp" +} diff --git a/site/public/v1/software/libjaylink/index.json b/site/public/v1/software/libjaylink/index.json new file mode 100644 index 000000000000..b132bd99b691 --- /dev/null +++ b/site/public/v1/software/libjaylink/index.json @@ -0,0 +1,21 @@ +{ + "id": 5350, + "slug": "libjaylink", + "name": "libjaylink", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "GNU General Public License, version 2.0 or later" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975073" + ], + "created_at": "2026-07-10T10:12:41.587022", + "updated_at": "2026-07-10T10:12:41.587022", + "url": "/v1/software/libjaylink" +} diff --git a/site/public/v1/software/libjson-rpc-cpp/index.json b/site/public/v1/software/libjson-rpc-cpp/index.json new file mode 100644 index 000000000000..f4da743bcfad --- /dev/null +++ b/site/public/v1/software/libjson-rpc-cpp/index.json @@ -0,0 +1,21 @@ +{ + "id": 5351, + "slug": "libjson-rpc-cpp", + "name": "libjson-rpc-cpp", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975074" + ], + "created_at": "2026-07-10T10:12:41.588021", + "updated_at": "2026-07-10T10:12:41.588021", + "url": "/v1/software/libjson-rpc-cpp" +} diff --git a/site/public/v1/software/libksysguard/index.json b/site/public/v1/software/libksysguard/index.json new file mode 100644 index 000000000000..7d204e0f581f --- /dev/null +++ b/site/public/v1/software/libksysguard/index.json @@ -0,0 +1,19 @@ +{ + "id": 5352, + "slug": "libksysguard", + "name": "libksysguard", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065511" + ], + "created_at": "2026-07-10T10:12:41.588021", + "updated_at": "2026-07-10T10:12:41.588021", + "url": "/v1/software/libksysguard" +} diff --git a/site/public/v1/software/liblaretz/index.json b/site/public/v1/software/liblaretz/index.json new file mode 100644 index 000000000000..09139996b15c --- /dev/null +++ b/site/public/v1/software/liblaretz/index.json @@ -0,0 +1,19 @@ +{ + "id": 5353, + "slug": "liblaretz", + "name": "liblaretz", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975075" + ], + "created_at": "2026-07-10T10:12:41.588021", + "updated_at": "2026-07-10T10:12:41.588021", + "url": "/v1/software/liblaretz" +} diff --git a/site/public/v1/software/liblognorm/index.json b/site/public/v1/software/liblognorm/index.json new file mode 100644 index 000000000000..155771c28374 --- /dev/null +++ b/site/public/v1/software/liblognorm/index.json @@ -0,0 +1,22 @@ +{ + "id": 5354, + "slug": "liblognorm", + "name": "liblognorm", + "release_date": null, + "developers": [ + "Adiscon GmbH", + "Rainer Gerhards" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975076" + ], + "created_at": "2026-07-10T10:12:41.589005", + "updated_at": "2026-07-10T10:12:41.589005", + "url": "/v1/software/liblognorm" +} diff --git a/site/public/v1/software/libmbim/index.json b/site/public/v1/software/libmbim/index.json new file mode 100644 index 000000000000..25867bdb9502 --- /dev/null +++ b/site/public/v1/software/libmbim/index.json @@ -0,0 +1,22 @@ +{ + "id": 5355, + "slug": "libmbim", + "name": "libmbim", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "GNU Lesser General Public License, version 2.1 or later", + "GNU General Public License, version 2.0 or later" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975078" + ], + "created_at": "2026-07-10T10:12:41.589005", + "updated_at": "2026-07-10T10:12:41.589005", + "url": "/v1/software/libmbim" +} diff --git a/site/public/v1/software/libmirisdr/index.json b/site/public/v1/software/libmirisdr/index.json new file mode 100644 index 000000000000..292db187d05c --- /dev/null +++ b/site/public/v1/software/libmirisdr/index.json @@ -0,0 +1,19 @@ +{ + "id": 5356, + "slug": "libmirisdr", + "name": "libmirisdr", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975079" + ], + "created_at": "2026-07-10T10:12:41.589005", + "updated_at": "2026-07-10T10:12:41.589005", + "url": "/v1/software/libmirisdr" +} diff --git a/site/public/v1/software/libmowgli/index.json b/site/public/v1/software/libmowgli/index.json new file mode 100644 index 000000000000..b9e2cf1b49f9 --- /dev/null +++ b/site/public/v1/software/libmowgli/index.json @@ -0,0 +1,19 @@ +{ + "id": 5357, + "slug": "libmowgli", + "name": "libmowgli", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975080" + ], + "created_at": "2026-07-10T10:12:41.590045", + "updated_at": "2026-07-10T10:12:41.590045", + "url": "/v1/software/libmowgli" +} diff --git a/site/public/v1/software/libomp/index.json b/site/public/v1/software/libomp/index.json new file mode 100644 index 000000000000..9d8f2dc73cc3 --- /dev/null +++ b/site/public/v1/software/libomp/index.json @@ -0,0 +1,21 @@ +{ + "id": 5358, + "slug": "libomp", + "name": "libomp", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Apache License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975088" + ], + "created_at": "2026-07-10T10:12:41.590045", + "updated_at": "2026-07-10T10:12:41.590045", + "url": "/v1/software/libomp" +} diff --git a/site/public/v1/software/libon/index.json b/site/public/v1/software/libon/index.json new file mode 100644 index 000000000000..d5b383c67ffb --- /dev/null +++ b/site/public/v1/software/libon/index.json @@ -0,0 +1,21 @@ +{ + "id": 5359, + "slug": "libon", + "name": "Libon", + "release_date": null, + "developers": [ + "Orange" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3237883" + ], + "created_at": "2026-07-10T10:12:41.590045", + "updated_at": "2026-07-10T10:12:41.590045", + "url": "/v1/software/libon" +} diff --git a/site/public/v1/software/liborcus/index.json b/site/public/v1/software/liborcus/index.json new file mode 100644 index 000000000000..65632a51d794 --- /dev/null +++ b/site/public/v1/software/liborcus/index.json @@ -0,0 +1,19 @@ +{ + "id": 5360, + "slug": "liborcus", + "name": "liborcus", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975089" + ], + "created_at": "2026-07-10T10:12:41.591026", + "updated_at": "2026-07-10T10:12:41.591026", + "url": "/v1/software/liborcus" +} diff --git a/site/public/v1/software/libosmo-abis/index.json b/site/public/v1/software/libosmo-abis/index.json new file mode 100644 index 000000000000..c2b5bb5e80b7 --- /dev/null +++ b/site/public/v1/software/libosmo-abis/index.json @@ -0,0 +1,19 @@ +{ + "id": 5361, + "slug": "libosmo-abis", + "name": "libosmo-abis", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975090" + ], + "created_at": "2026-07-10T10:12:41.591026", + "updated_at": "2026-07-10T10:12:41.591026", + "url": "/v1/software/libosmo-abis" +} diff --git a/site/public/v1/software/libosmo-dsp/index.json b/site/public/v1/software/libosmo-dsp/index.json new file mode 100644 index 000000000000..bb7d135ddb4f --- /dev/null +++ b/site/public/v1/software/libosmo-dsp/index.json @@ -0,0 +1,19 @@ +{ + "id": 5362, + "slug": "libosmo-dsp", + "name": "libosmo-dsp", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975092" + ], + "created_at": "2026-07-10T10:12:41.591026", + "updated_at": "2026-07-10T10:12:41.591026", + "url": "/v1/software/libosmo-dsp" +} diff --git a/site/public/v1/software/libosmo-netif/index.json b/site/public/v1/software/libosmo-netif/index.json new file mode 100644 index 000000000000..f0ef01aef546 --- /dev/null +++ b/site/public/v1/software/libosmo-netif/index.json @@ -0,0 +1,19 @@ +{ + "id": 5363, + "slug": "libosmo-netif", + "name": "libosmo-netif", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975093" + ], + "created_at": "2026-07-10T10:12:41.592018", + "updated_at": "2026-07-10T10:12:41.592018", + "url": "/v1/software/libosmo-netif" +} diff --git a/site/public/v1/software/libosmocore/index.json b/site/public/v1/software/libosmocore/index.json new file mode 100644 index 000000000000..5087edd7f698 --- /dev/null +++ b/site/public/v1/software/libosmocore/index.json @@ -0,0 +1,19 @@ +{ + "id": 5364, + "slug": "libosmocore", + "name": "libosmocore", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975091" + ], + "created_at": "2026-07-10T10:12:41.592018", + "updated_at": "2026-07-10T10:12:41.592018", + "url": "/v1/software/libosmocore" +} diff --git a/site/public/v1/software/libox/index.json b/site/public/v1/software/libox/index.json new file mode 100644 index 000000000000..eb303524f60e --- /dev/null +++ b/site/public/v1/software/libox/index.json @@ -0,0 +1,19 @@ +{ + "id": 5365, + "slug": "libox", + "name": "LIBOX", + "release_date": "2010-06-22", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6458602" + ], + "created_at": "2026-07-10T10:12:41.592018", + "updated_at": "2026-07-10T10:12:41.592018", + "url": "/v1/software/libox" +} diff --git a/site/public/v1/software/libp2p/index.json b/site/public/v1/software/libp2p/index.json new file mode 100644 index 000000000000..6328fa18b228 --- /dev/null +++ b/site/public/v1/software/libp2p/index.json @@ -0,0 +1,19 @@ +{ + "id": 5366, + "slug": "libp2p", + "name": "Libp2p", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136311893" + ], + "created_at": "2026-07-10T10:12:41.593028", + "updated_at": "2026-07-10T10:12:41.593028", + "url": "/v1/software/libp2p" +} diff --git a/site/public/v1/software/libpolo/index.json b/site/public/v1/software/libpolo/index.json new file mode 100644 index 000000000000..e90c26ab3abb --- /dev/null +++ b/site/public/v1/software/libpolo/index.json @@ -0,0 +1,19 @@ +{ + "id": 5367, + "slug": "libpolo", + "name": "Libpolo", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6542419" + ], + "created_at": "2026-07-10T10:12:41.593028", + "updated_at": "2026-07-10T10:12:41.593028", + "url": "/v1/software/libpolo" +} diff --git a/site/public/v1/software/libpostproc/index.json b/site/public/v1/software/libpostproc/index.json new file mode 100644 index 000000000000..7a0cf60a571c --- /dev/null +++ b/site/public/v1/software/libpostproc/index.json @@ -0,0 +1,19 @@ +{ + "id": 5368, + "slug": "libpostproc", + "name": "libpostproc", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975096" + ], + "created_at": "2026-07-10T10:12:41.593028", + "updated_at": "2026-07-10T10:12:41.593028", + "url": "/v1/software/libpostproc" +} diff --git a/site/public/v1/software/libqmi/index.json b/site/public/v1/software/libqmi/index.json new file mode 100644 index 000000000000..6321ee17338a --- /dev/null +++ b/site/public/v1/software/libqmi/index.json @@ -0,0 +1,19 @@ +{ + "id": 5369, + "slug": "libqmi", + "name": "libqmi", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975097" + ], + "created_at": "2026-07-10T10:12:41.594021", + "updated_at": "2026-07-10T10:12:41.594021", + "url": "/v1/software/libqmi" +} diff --git a/site/public/v1/software/libqtxdg/index.json b/site/public/v1/software/libqtxdg/index.json new file mode 100644 index 000000000000..a9f75b9e4fa2 --- /dev/null +++ b/site/public/v1/software/libqtxdg/index.json @@ -0,0 +1,19 @@ +{ + "id": 5370, + "slug": "libqtxdg", + "name": "libqtxdg", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975098" + ], + "created_at": "2026-07-10T10:12:41.594021", + "updated_at": "2026-07-10T10:12:41.594021", + "url": "/v1/software/libqtxdg" +} diff --git a/site/public/v1/software/libquo/index.json b/site/public/v1/software/libquo/index.json new file mode 100644 index 000000000000..cc38475d28d7 --- /dev/null +++ b/site/public/v1/software/libquo/index.json @@ -0,0 +1,21 @@ +{ + "id": 5371, + "slug": "libquo", + "name": "libquo", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "3-clause BSD License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975099" + ], + "created_at": "2026-07-10T10:12:41.594021", + "updated_at": "2026-07-10T10:12:41.594021", + "url": "/v1/software/libquo" +} diff --git a/site/public/v1/software/libqxp/index.json b/site/public/v1/software/libqxp/index.json new file mode 100644 index 000000000000..f445060f8d26 --- /dev/null +++ b/site/public/v1/software/libqxp/index.json @@ -0,0 +1,19 @@ +{ + "id": 5372, + "slug": "libqxp", + "name": "libqxp", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065410" + ], + "created_at": "2026-07-10T10:12:41.595050", + "updated_at": "2026-07-10T10:12:41.595050", + "url": "/v1/software/libqxp" +} diff --git a/site/public/v1/software/libramatic/index.json b/site/public/v1/software/libramatic/index.json new file mode 100644 index 000000000000..e5b1a0a31450 --- /dev/null +++ b/site/public/v1/software/libramatic/index.json @@ -0,0 +1,19 @@ +{ + "id": 5373, + "slug": "libramatic", + "name": "Libramatic", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17088906" + ], + "created_at": "2026-07-10T10:12:41.595050", + "updated_at": "2026-07-10T10:12:41.595050", + "url": "/v1/software/libramatic" +} diff --git a/site/public/v1/software/librdkafka/index.json b/site/public/v1/software/librdkafka/index.json new file mode 100644 index 000000000000..bacd9d7e8bc8 --- /dev/null +++ b/site/public/v1/software/librdkafka/index.json @@ -0,0 +1,21 @@ +{ + "id": 5374, + "slug": "librdkafka", + "name": "librdkafka", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Unix-like operating system" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975100" + ], + "created_at": "2026-07-10T10:12:41.595050", + "updated_at": "2026-07-10T10:12:41.595050", + "url": "/v1/software/librdkafka" +} diff --git a/site/public/v1/software/libreja-gmbh/index.json b/site/public/v1/software/libreja-gmbh/index.json new file mode 100644 index 000000000000..c4a8b7d2272a --- /dev/null +++ b/site/public/v1/software/libreja-gmbh/index.json @@ -0,0 +1,19 @@ +{ + "id": 5375, + "slug": "libreja-gmbh", + "name": "Libreja GmbH", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63799728" + ], + "created_at": "2026-07-10T10:12:41.596021", + "updated_at": "2026-07-10T10:12:41.596021", + "url": "/v1/software/libreja-gmbh" +} diff --git a/site/public/v1/software/libreoffice-impress/index.json b/site/public/v1/software/libreoffice-impress/index.json new file mode 100644 index 000000000000..d1189fbc297d --- /dev/null +++ b/site/public/v1/software/libreoffice-impress/index.json @@ -0,0 +1,31 @@ +{ + "id": 5376, + "slug": "libreoffice-impress", + "name": "LibreOffice Impress", + "release_date": null, + "developers": [ + "The Document Foundation" + ], + "publishers": [], + "operating_systems": [ + "Haiku", + "FreeBSD", + "OpenBSD", + "macOS", + "Microsoft Windows" + ], + "programming_languages": [ + "Java" + ], + "licenses": [ + "Mozilla Public License, version 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11931856" + ], + "created_at": "2026-07-10T10:12:41.596021", + "updated_at": "2026-07-10T10:12:41.596021", + "url": "/v1/software/libreoffice-impress" +} diff --git a/site/public/v1/software/libreqda/index.json b/site/public/v1/software/libreqda/index.json new file mode 100644 index 000000000000..2073a32035a7 --- /dev/null +++ b/site/public/v1/software/libreqda/index.json @@ -0,0 +1,19 @@ +{ + "id": 5377, + "slug": "libreqda", + "name": "libreQDA", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q21573285" + ], + "created_at": "2026-07-10T10:12:41.596021", + "updated_at": "2026-07-10T10:12:41.596021", + "url": "/v1/software/libreqda" +} diff --git a/site/public/v1/software/libresource/index.json b/site/public/v1/software/libresource/index.json new file mode 100644 index 000000000000..882e0137b71e --- /dev/null +++ b/site/public/v1/software/libresource/index.json @@ -0,0 +1,19 @@ +{ + "id": 5378, + "slug": "libresource", + "name": "LibreSource", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3237925" + ], + "created_at": "2026-07-10T10:12:41.596021", + "updated_at": "2026-07-10T10:12:41.596021", + "url": "/v1/software/libresource" +} diff --git a/site/public/v1/software/librest/index.json b/site/public/v1/software/librest/index.json new file mode 100644 index 000000000000..7dc009c0fbc0 --- /dev/null +++ b/site/public/v1/software/librest/index.json @@ -0,0 +1,23 @@ +{ + "id": 5379, + "slug": "librest", + "name": "librest", + "release_date": null, + "developers": [ + "GNOME Foundation" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "GNU Lesser General Public License, version 2.1 or later" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q68089892" + ], + "created_at": "2026-07-10T10:12:41.597019", + "updated_at": "2026-07-10T10:12:41.597019", + "url": "/v1/software/librest" +} diff --git a/site/public/v1/software/libretro-dosbox/index.json b/site/public/v1/software/libretro-dosbox/index.json new file mode 100644 index 000000000000..443087b6139c --- /dev/null +++ b/site/public/v1/software/libretro-dosbox/index.json @@ -0,0 +1,19 @@ +{ + "id": 5380, + "slug": "libretro-dosbox", + "name": "libretro-dosbox", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60918696" + ], + "created_at": "2026-07-10T10:12:41.597019", + "updated_at": "2026-07-10T10:12:41.597019", + "url": "/v1/software/libretro-dosbox" +} diff --git a/site/public/v1/software/libroadrunner/index.json b/site/public/v1/software/libroadrunner/index.json new file mode 100644 index 000000000000..3e028595a553 --- /dev/null +++ b/site/public/v1/software/libroadrunner/index.json @@ -0,0 +1,19 @@ +{ + "id": 5381, + "slug": "libroadrunner", + "name": "Libroadrunner", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118945300" + ], + "created_at": "2026-07-10T10:12:41.598115", + "updated_at": "2026-07-10T10:12:41.598115", + "url": "/v1/software/libroadrunner" +} diff --git a/site/public/v1/software/libsafe-linux-security-defunct/index.json b/site/public/v1/software/libsafe-linux-security-defunct/index.json new file mode 100644 index 000000000000..57402c145174 --- /dev/null +++ b/site/public/v1/software/libsafe-linux-security-defunct/index.json @@ -0,0 +1,19 @@ +{ + "id": 5382, + "slug": "libsafe-linux-security-defunct", + "name": "Libsafe linux security (defunct)", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11755696" + ], + "created_at": "2026-07-10T10:12:41.598115", + "updated_at": "2026-07-10T10:12:41.598115", + "url": "/v1/software/libsafe-linux-security-defunct" +} diff --git a/site/public/v1/software/libsafe/index.json b/site/public/v1/software/libsafe/index.json new file mode 100644 index 000000000000..e0d07414a67e --- /dev/null +++ b/site/public/v1/software/libsafe/index.json @@ -0,0 +1,19 @@ +{ + "id": 5383, + "slug": "libsafe", + "name": "Libsafe", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110762371" + ], + "created_at": "2026-07-10T10:12:41.598115", + "updated_at": "2026-07-10T10:12:41.598115", + "url": "/v1/software/libsafe" +} diff --git a/site/public/v1/software/libselinux/index.json b/site/public/v1/software/libselinux/index.json new file mode 100644 index 000000000000..6f24515b44d7 --- /dev/null +++ b/site/public/v1/software/libselinux/index.json @@ -0,0 +1,19 @@ +{ + "id": 5384, + "slug": "libselinux", + "name": "libselinux", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975104" + ], + "created_at": "2026-07-10T10:12:41.598115", + "updated_at": "2026-07-10T10:12:41.598115", + "url": "/v1/software/libselinux" +} diff --git a/site/public/v1/software/libsemanage/index.json b/site/public/v1/software/libsemanage/index.json new file mode 100644 index 000000000000..d6951fa13a95 --- /dev/null +++ b/site/public/v1/software/libsemanage/index.json @@ -0,0 +1,19 @@ +{ + "id": 5385, + "slug": "libsemanage", + "name": "libsemanage", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975105" + ], + "created_at": "2026-07-10T10:12:41.599119", + "updated_at": "2026-07-10T10:12:41.599119", + "url": "/v1/software/libsemanage" +} diff --git a/site/public/v1/software/libsepol/index.json b/site/public/v1/software/libsepol/index.json new file mode 100644 index 000000000000..32538914549a --- /dev/null +++ b/site/public/v1/software/libsepol/index.json @@ -0,0 +1,19 @@ +{ + "id": 5386, + "slug": "libsepol", + "name": "libsepol", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975106" + ], + "created_at": "2026-07-10T10:12:41.599119", + "updated_at": "2026-07-10T10:12:41.599119", + "url": "/v1/software/libsepol" +} diff --git a/site/public/v1/software/libserialport/index.json b/site/public/v1/software/libserialport/index.json new file mode 100644 index 000000000000..b647291148b4 --- /dev/null +++ b/site/public/v1/software/libserialport/index.json @@ -0,0 +1,19 @@ +{ + "id": 5387, + "slug": "libserialport", + "name": "libserialport", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975107" + ], + "created_at": "2026-07-10T10:12:41.600100", + "updated_at": "2026-07-10T10:12:41.600100", + "url": "/v1/software/libserialport" +} diff --git a/site/public/v1/software/libshumate/index.json b/site/public/v1/software/libshumate/index.json new file mode 100644 index 000000000000..276489c9ed8b --- /dev/null +++ b/site/public/v1/software/libshumate/index.json @@ -0,0 +1,19 @@ +{ + "id": 5388, + "slug": "libshumate", + "name": "libshumate", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q100195605" + ], + "created_at": "2026-07-10T10:12:41.600100", + "updated_at": "2026-07-10T10:12:41.600100", + "url": "/v1/software/libshumate" +} diff --git a/site/public/v1/software/libsigrok/index.json b/site/public/v1/software/libsigrok/index.json new file mode 100644 index 000000000000..6a8bf1c151fa --- /dev/null +++ b/site/public/v1/software/libsigrok/index.json @@ -0,0 +1,19 @@ +{ + "id": 5389, + "slug": "libsigrok", + "name": "libsigrok", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975108" + ], + "created_at": "2026-07-10T10:12:41.600100", + "updated_at": "2026-07-10T10:12:41.600100", + "url": "/v1/software/libsigrok" +} diff --git a/site/public/v1/software/libsigrokdecode/index.json b/site/public/v1/software/libsigrokdecode/index.json new file mode 100644 index 000000000000..6852930889ac --- /dev/null +++ b/site/public/v1/software/libsigrokdecode/index.json @@ -0,0 +1,19 @@ +{ + "id": 5390, + "slug": "libsigrokdecode", + "name": "libsigrokdecode", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975109" + ], + "created_at": "2026-07-10T10:12:41.600100", + "updated_at": "2026-07-10T10:12:41.600100", + "url": "/v1/software/libsigrokdecode" +} diff --git a/site/public/v1/software/libspatialindex/index.json b/site/public/v1/software/libspatialindex/index.json new file mode 100644 index 000000000000..dcb69d420f75 --- /dev/null +++ b/site/public/v1/software/libspatialindex/index.json @@ -0,0 +1,19 @@ +{ + "id": 5391, + "slug": "libspatialindex", + "name": "libspatialindex", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065181" + ], + "created_at": "2026-07-10T10:12:41.601096", + "updated_at": "2026-07-10T10:12:41.601096", + "url": "/v1/software/libspatialindex" +} diff --git a/site/public/v1/software/libspe2/index.json b/site/public/v1/software/libspe2/index.json new file mode 100644 index 000000000000..ade7fd060f5e --- /dev/null +++ b/site/public/v1/software/libspe2/index.json @@ -0,0 +1,19 @@ +{ + "id": 5392, + "slug": "libspe2", + "name": "libspe2", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065342" + ], + "created_at": "2026-07-10T10:12:41.601096", + "updated_at": "2026-07-10T10:12:41.601096", + "url": "/v1/software/libspe2" +} diff --git a/site/public/v1/software/libtar/index.json b/site/public/v1/software/libtar/index.json new file mode 100644 index 000000000000..b7bf64bc2298 --- /dev/null +++ b/site/public/v1/software/libtar/index.json @@ -0,0 +1,19 @@ +{ + "id": 5393, + "slug": "libtar", + "name": "libtar", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065365" + ], + "created_at": "2026-07-10T10:12:41.602098", + "updated_at": "2026-07-10T10:12:41.602098", + "url": "/v1/software/libtar" +} diff --git a/site/public/v1/software/libtinynotify-cli/index.json b/site/public/v1/software/libtinynotify-cli/index.json new file mode 100644 index 000000000000..cb4468a54ef0 --- /dev/null +++ b/site/public/v1/software/libtinynotify-cli/index.json @@ -0,0 +1,19 @@ +{ + "id": 5394, + "slug": "libtinynotify-cli", + "name": "libtinynotify-cli", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975116" + ], + "created_at": "2026-07-10T10:12:41.602098", + "updated_at": "2026-07-10T10:12:41.602098", + "url": "/v1/software/libtinynotify-cli" +} diff --git a/site/public/v1/software/libtinynotify-systemwide/index.json b/site/public/v1/software/libtinynotify-systemwide/index.json new file mode 100644 index 000000000000..9f72e70eebeb --- /dev/null +++ b/site/public/v1/software/libtinynotify-systemwide/index.json @@ -0,0 +1,19 @@ +{ + "id": 5395, + "slug": "libtinynotify-systemwide", + "name": "libtinynotify-systemwide", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975118" + ], + "created_at": "2026-07-10T10:12:41.602098", + "updated_at": "2026-07-10T10:12:41.602098", + "url": "/v1/software/libtinynotify-systemwide" +} diff --git a/site/public/v1/software/libtinynotify/index.json b/site/public/v1/software/libtinynotify/index.json new file mode 100644 index 000000000000..f4bf8a845b72 --- /dev/null +++ b/site/public/v1/software/libtinynotify/index.json @@ -0,0 +1,19 @@ +{ + "id": 5396, + "slug": "libtinynotify", + "name": "libtinynotify", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975115" + ], + "created_at": "2026-07-10T10:12:41.603098", + "updated_at": "2026-07-10T10:12:41.603098", + "url": "/v1/software/libtinynotify" +} diff --git a/site/public/v1/software/libtxc-dxtn/index.json b/site/public/v1/software/libtxc-dxtn/index.json new file mode 100644 index 000000000000..f95921c26020 --- /dev/null +++ b/site/public/v1/software/libtxc-dxtn/index.json @@ -0,0 +1,19 @@ +{ + "id": 5397, + "slug": "libtxc-dxtn", + "name": "libtxc_dxtn", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63064782" + ], + "created_at": "2026-07-10T10:12:41.603098", + "updated_at": "2026-07-10T10:12:41.603098", + "url": "/v1/software/libtxc-dxtn" +} diff --git a/site/public/v1/software/libu2f-server/index.json b/site/public/v1/software/libu2f-server/index.json new file mode 100644 index 000000000000..5475924cc6d8 --- /dev/null +++ b/site/public/v1/software/libu2f-server/index.json @@ -0,0 +1,19 @@ +{ + "id": 5398, + "slug": "libu2f-server", + "name": "libu2f-server", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q88506240" + ], + "created_at": "2026-07-10T10:12:41.603098", + "updated_at": "2026-07-10T10:12:41.603098", + "url": "/v1/software/libu2f-server" +} diff --git a/site/public/v1/software/libva-intel-driver/index.json b/site/public/v1/software/libva-intel-driver/index.json new file mode 100644 index 000000000000..f2aa4f60e394 --- /dev/null +++ b/site/public/v1/software/libva-intel-driver/index.json @@ -0,0 +1,19 @@ +{ + "id": 5399, + "slug": "libva-intel-driver", + "name": "libva-intel-driver", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975119" + ], + "created_at": "2026-07-10T10:12:41.604109", + "updated_at": "2026-07-10T10:12:41.604109", + "url": "/v1/software/libva-intel-driver" +} diff --git a/site/public/v1/software/libvirt-php/index.json b/site/public/v1/software/libvirt-php/index.json new file mode 100644 index 000000000000..9870bd032b54 --- /dev/null +++ b/site/public/v1/software/libvirt-php/index.json @@ -0,0 +1,19 @@ +{ + "id": 5400, + "slug": "libvirt-php", + "name": "libvirt-php", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975120" + ], + "created_at": "2026-07-10T10:12:41.604109", + "updated_at": "2026-07-10T10:12:41.604109", + "url": "/v1/software/libvirt-php" +} diff --git a/site/public/v1/software/libwbxml/index.json b/site/public/v1/software/libwbxml/index.json new file mode 100644 index 000000000000..6d6c4ab23a81 --- /dev/null +++ b/site/public/v1/software/libwbxml/index.json @@ -0,0 +1,19 @@ +{ + "id": 5401, + "slug": "libwbxml", + "name": "libwbxml", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065419" + ], + "created_at": "2026-07-10T10:12:41.604109", + "updated_at": "2026-07-10T10:12:41.604109", + "url": "/v1/software/libwbxml" +} diff --git a/site/public/v1/software/libx/index.json b/site/public/v1/software/libx/index.json new file mode 100644 index 000000000000..a7484c3b4a2d --- /dev/null +++ b/site/public/v1/software/libx/index.json @@ -0,0 +1,23 @@ +{ + "id": 5402, + "slug": "libx", + "name": "LibX", + "release_date": null, + "developers": [ + "Virginia Tech" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Mozilla Public License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q9368107" + ], + "created_at": "2026-07-10T10:12:41.604109", + "updated_at": "2026-07-10T10:12:41.604109", + "url": "/v1/software/libx" +} diff --git a/site/public/v1/software/libxcm/index.json b/site/public/v1/software/libxcm/index.json new file mode 100644 index 000000000000..eb4ffb8bd06a --- /dev/null +++ b/site/public/v1/software/libxcm/index.json @@ -0,0 +1,19 @@ +{ + "id": 5403, + "slug": "libxcm", + "name": "libXcm", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975124" + ], + "created_at": "2026-07-10T10:12:41.605101", + "updated_at": "2026-07-10T10:12:41.605101", + "url": "/v1/software/libxcm" +} diff --git a/site/public/v1/software/libxklavier/index.json b/site/public/v1/software/libxklavier/index.json new file mode 100644 index 000000000000..e7cb58cdc355 --- /dev/null +++ b/site/public/v1/software/libxklavier/index.json @@ -0,0 +1,19 @@ +{ + "id": 5404, + "slug": "libxklavier", + "name": "libxklavier", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065436" + ], + "created_at": "2026-07-10T10:12:41.605101", + "updated_at": "2026-07-10T10:12:41.605101", + "url": "/v1/software/libxklavier" +} diff --git a/site/public/v1/software/libxls/index.json b/site/public/v1/software/libxls/index.json new file mode 100644 index 000000000000..10223b5ce934 --- /dev/null +++ b/site/public/v1/software/libxls/index.json @@ -0,0 +1,19 @@ +{ + "id": 5405, + "slug": "libxls", + "name": "libxls", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065280" + ], + "created_at": "2026-07-10T10:12:41.606031", + "updated_at": "2026-07-10T10:12:41.606031", + "url": "/v1/software/libxls" +} diff --git a/site/public/v1/software/libxml-perl/index.json b/site/public/v1/software/libxml-perl/index.json new file mode 100644 index 000000000000..4f9e50a87a19 --- /dev/null +++ b/site/public/v1/software/libxml-perl/index.json @@ -0,0 +1,19 @@ +{ + "id": 5406, + "slug": "libxml-perl", + "name": "libxml-perl", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62852270" + ], + "created_at": "2026-07-10T10:12:41.606031", + "updated_at": "2026-07-10T10:12:41.606031", + "url": "/v1/software/libxml-perl" +} diff --git a/site/public/v1/software/libyami/index.json b/site/public/v1/software/libyami/index.json new file mode 100644 index 000000000000..687a596bcb64 --- /dev/null +++ b/site/public/v1/software/libyami/index.json @@ -0,0 +1,21 @@ +{ + "id": 5407, + "slug": "libyami", + "name": "libyami", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Apache License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975128" + ], + "created_at": "2026-07-10T10:12:41.606031", + "updated_at": "2026-07-10T10:12:41.606031", + "url": "/v1/software/libyami" +} diff --git a/site/public/v1/software/licma/index.json b/site/public/v1/software/licma/index.json new file mode 100644 index 000000000000..41cc750792d9 --- /dev/null +++ b/site/public/v1/software/licma/index.json @@ -0,0 +1,21 @@ +{ + "id": 5408, + "slug": "licma", + "name": "licma", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127485434" + ], + "created_at": "2026-07-10T10:12:41.606031", + "updated_at": "2026-07-10T10:12:41.606031", + "url": "/v1/software/licma" +} diff --git a/site/public/v1/software/lideraai/index.json b/site/public/v1/software/lideraai/index.json new file mode 100644 index 000000000000..e042c6139858 --- /dev/null +++ b/site/public/v1/software/lideraai/index.json @@ -0,0 +1,19 @@ +{ + "id": 5409, + "slug": "lideraai", + "name": "LideraAI", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140287074" + ], + "created_at": "2026-07-10T10:12:41.607077", + "updated_at": "2026-07-10T10:12:41.607077", + "url": "/v1/software/lideraai" +} diff --git a/site/public/v1/software/lidort/index.json b/site/public/v1/software/lidort/index.json new file mode 100644 index 000000000000..837e66dc5301 --- /dev/null +++ b/site/public/v1/software/lidort/index.json @@ -0,0 +1,19 @@ +{ + "id": 5410, + "slug": "lidort", + "name": "LIDORT", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123470838" + ], + "created_at": "2026-07-10T10:12:41.607077", + "updated_at": "2026-07-10T10:12:41.607077", + "url": "/v1/software/lidort" +} diff --git a/site/public/v1/software/life-with-playstation/index.json b/site/public/v1/software/life-with-playstation/index.json new file mode 100644 index 000000000000..0a96f3af5aee --- /dev/null +++ b/site/public/v1/software/life-with-playstation/index.json @@ -0,0 +1,19 @@ +{ + "id": 5411, + "slug": "life-with-playstation", + "name": "Life with PlayStation", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6545324" + ], + "created_at": "2026-07-10T10:12:41.608027", + "updated_at": "2026-07-10T10:12:41.608027", + "url": "/v1/software/life-with-playstation" +} diff --git a/site/public/v1/software/life360/index.json b/site/public/v1/software/life360/index.json new file mode 100644 index 000000000000..7abbb86b3bc9 --- /dev/null +++ b/site/public/v1/software/life360/index.json @@ -0,0 +1,19 @@ +{ + "id": 5412, + "slug": "life360", + "name": "Life360", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17152633" + ], + "created_at": "2026-07-10T10:12:41.608027", + "updated_at": "2026-07-10T10:12:41.608027", + "url": "/v1/software/life360" +} diff --git a/site/public/v1/software/lifer-ladder/index.json b/site/public/v1/software/lifer-ladder/index.json new file mode 100644 index 000000000000..20b1eeeef917 --- /dev/null +++ b/site/public/v1/software/lifer-ladder/index.json @@ -0,0 +1,19 @@ +{ + "id": 5413, + "slug": "lifer-ladder", + "name": "LIFER/LADDER", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6458629" + ], + "created_at": "2026-07-10T10:12:41.608027", + "updated_at": "2026-07-10T10:12:41.608027", + "url": "/v1/software/lifer-ladder" +} diff --git a/site/public/v1/software/lifeyo/index.json b/site/public/v1/software/lifeyo/index.json new file mode 100644 index 000000000000..2777d528753b --- /dev/null +++ b/site/public/v1/software/lifeyo/index.json @@ -0,0 +1,19 @@ +{ + "id": 5414, + "slug": "lifeyo", + "name": "Lifeyo", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6545553" + ], + "created_at": "2026-07-10T10:12:41.609026", + "updated_at": "2026-07-10T10:12:41.609026", + "url": "/v1/software/lifeyo" +} diff --git a/site/public/v1/software/ligandscout/index.json b/site/public/v1/software/ligandscout/index.json new file mode 100644 index 000000000000..9854f0f69664 --- /dev/null +++ b/site/public/v1/software/ligandscout/index.json @@ -0,0 +1,19 @@ +{ + "id": 5415, + "slug": "ligandscout", + "name": "LigandScout", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6545852" + ], + "created_at": "2026-07-10T10:12:41.609026", + "updated_at": "2026-07-10T10:12:41.609026", + "url": "/v1/software/ligandscout" +} diff --git a/site/public/v1/software/light-alloy/index.json b/site/public/v1/software/light-alloy/index.json new file mode 100644 index 000000000000..34344451390a --- /dev/null +++ b/site/public/v1/software/light-alloy/index.json @@ -0,0 +1,25 @@ +{ + "id": 5416, + "slug": "light-alloy", + "name": "Light Alloy", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [ + "Delphi" + ], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4042885" + ], + "created_at": "2026-07-10T10:12:41.609026", + "updated_at": "2026-07-10T10:12:41.609026", + "url": "/v1/software/light-alloy" +} diff --git a/site/public/v1/software/lightbox-com/index.json b/site/public/v1/software/lightbox-com/index.json new file mode 100644 index 000000000000..f3acd6ef08b6 --- /dev/null +++ b/site/public/v1/software/lightbox-com/index.json @@ -0,0 +1,21 @@ +{ + "id": 5417, + "slug": "lightbox-com", + "name": "lightbox.com", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10318291" + ], + "created_at": "2026-07-10T10:12:41.610099", + "updated_at": "2026-07-10T10:12:41.610099", + "url": "/v1/software/lightbox-com" +} diff --git a/site/public/v1/software/lightbox/index.json b/site/public/v1/software/lightbox/index.json new file mode 100644 index 000000000000..418bb3342270 --- /dev/null +++ b/site/public/v1/software/lightbox/index.json @@ -0,0 +1,23 @@ +{ + "id": 5418, + "slug": "lightbox", + "name": "Lightbox", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "cross-platform" + ], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3486953" + ], + "created_at": "2026-07-10T10:12:41.610099", + "updated_at": "2026-07-10T10:12:41.610099", + "url": "/v1/software/lightbox" +} diff --git a/site/public/v1/software/lightgbm/index.json b/site/public/v1/software/lightgbm/index.json new file mode 100644 index 000000000000..1a2547b88fb0 --- /dev/null +++ b/site/public/v1/software/lightgbm/index.json @@ -0,0 +1,21 @@ +{ + "id": 5419, + "slug": "lightgbm", + "name": "LightGBM", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q57267665" + ], + "created_at": "2026-07-10T10:12:41.610099", + "updated_at": "2026-07-10T10:12:41.610099", + "url": "/v1/software/lightgbm" +} diff --git a/site/public/v1/software/lighthouse/index.json b/site/public/v1/software/lighthouse/index.json new file mode 100644 index 000000000000..e17980c33236 --- /dev/null +++ b/site/public/v1/software/lighthouse/index.json @@ -0,0 +1,21 @@ +{ + "id": 5420, + "slug": "lighthouse", + "name": "Lighthouse", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Apache Software License 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q104217227" + ], + "created_at": "2026-07-10T10:12:41.610099", + "updated_at": "2026-07-10T10:12:41.610099", + "url": "/v1/software/lighthouse" +} diff --git a/site/public/v1/software/lightline/index.json b/site/public/v1/software/lightline/index.json new file mode 100644 index 000000000000..2da37705d94b --- /dev/null +++ b/site/public/v1/software/lightline/index.json @@ -0,0 +1,21 @@ +{ + "id": 5421, + "slug": "lightline", + "name": "lightline", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975130" + ], + "created_at": "2026-07-10T10:12:41.611076", + "updated_at": "2026-07-10T10:12:41.611076", + "url": "/v1/software/lightline" +} diff --git a/site/public/v1/software/lightscribe/index.json b/site/public/v1/software/lightscribe/index.json new file mode 100644 index 000000000000..d2744f451ba3 --- /dev/null +++ b/site/public/v1/software/lightscribe/index.json @@ -0,0 +1,23 @@ +{ + "id": 5422, + "slug": "lightscribe", + "name": "LightScribe", + "release_date": null, + "developers": [ + "Hewlett-Packard" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q679874" + ], + "created_at": "2026-07-10T10:12:41.611076", + "updated_at": "2026-07-10T10:12:41.611076", + "url": "/v1/software/lightscribe" +} diff --git a/site/public/v1/software/ligplot/index.json b/site/public/v1/software/ligplot/index.json new file mode 100644 index 000000000000..31014353c773 --- /dev/null +++ b/site/public/v1/software/ligplot/index.json @@ -0,0 +1,19 @@ +{ + "id": 5423, + "slug": "ligplot", + "name": "LIGPLOT", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6458666" + ], + "created_at": "2026-07-10T10:12:41.611076", + "updated_at": "2026-07-10T10:12:41.611076", + "url": "/v1/software/ligplot" +} diff --git a/site/public/v1/software/lily/index.json b/site/public/v1/software/lily/index.json new file mode 100644 index 000000000000..25bb65a4efcc --- /dev/null +++ b/site/public/v1/software/lily/index.json @@ -0,0 +1,23 @@ +{ + "id": 5424, + "slug": "lily", + "name": "Lily", + "release_date": "2010-08-25", + "developers": [ + "Internet Co." + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10851429" + ], + "created_at": "2026-07-10T10:12:41.612077", + "updated_at": "2026-07-10T10:12:41.612077", + "url": "/v1/software/lily" +} diff --git a/site/public/v1/software/limdep/index.json b/site/public/v1/software/limdep/index.json new file mode 100644 index 000000000000..baac616ec36b --- /dev/null +++ b/site/public/v1/software/limdep/index.json @@ -0,0 +1,21 @@ +{ + "id": 5425, + "slug": "limdep", + "name": "LIMDEP", + "release_date": null, + "developers": [ + "William Greene" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q971216" + ], + "created_at": "2026-07-10T10:12:41.612077", + "updated_at": "2026-07-10T10:12:41.612077", + "url": "/v1/software/limdep" +} diff --git a/site/public/v1/software/limechat/index.json b/site/public/v1/software/limechat/index.json new file mode 100644 index 000000000000..eb3716cdae36 --- /dev/null +++ b/site/public/v1/software/limechat/index.json @@ -0,0 +1,25 @@ +{ + "id": 5426, + "slug": "limechat", + "name": "LimeChat", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "macOS" + ], + "programming_languages": [ + "Objective-C" + ], + "licenses": [ + "GNU General Public License, version 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3832482" + ], + "created_at": "2026-07-10T10:12:41.612668", + "updated_at": "2026-07-10T10:12:41.612668", + "url": "/v1/software/limechat" +} diff --git a/site/public/v1/software/limesurvey/index.json b/site/public/v1/software/limesurvey/index.json new file mode 100644 index 000000000000..cf017ba947ae --- /dev/null +++ b/site/public/v1/software/limesurvey/index.json @@ -0,0 +1,23 @@ +{ + "id": 5427, + "slug": "limesurvey", + "name": "LimeSurvey", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "PHP" + ], + "licenses": [ + "GNU General Public License, version 2.0 or later" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1514978" + ], + "created_at": "2026-07-10T10:12:41.612668", + "updated_at": "2026-07-10T10:12:41.612668", + "url": "/v1/software/limesurvey" +} diff --git a/site/public/v1/software/limine/index.json b/site/public/v1/software/limine/index.json new file mode 100644 index 000000000000..a50d6dc4ef4e --- /dev/null +++ b/site/public/v1/software/limine/index.json @@ -0,0 +1,21 @@ +{ + "id": 5428, + "slug": "limine", + "name": "Limine", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "2-clause BSD License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106536220" + ], + "created_at": "2026-07-10T10:12:41.612668", + "updated_at": "2026-07-10T10:12:41.612668", + "url": "/v1/software/limine" +} diff --git a/site/public/v1/software/limma/index.json b/site/public/v1/software/limma/index.json new file mode 100644 index 000000000000..1ebdc01ee095 --- /dev/null +++ b/site/public/v1/software/limma/index.json @@ -0,0 +1,21 @@ +{ + "id": 5429, + "slug": "limma", + "name": "limma", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "R" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112236343" + ], + "created_at": "2026-07-10T10:12:41.612668", + "updated_at": "2026-07-10T10:12:41.612668", + "url": "/v1/software/limma" +} diff --git a/site/public/v1/software/limnoria/index.json b/site/public/v1/software/limnoria/index.json new file mode 100644 index 000000000000..a2bb2ecf751c --- /dev/null +++ b/site/public/v1/software/limnoria/index.json @@ -0,0 +1,19 @@ +{ + "id": 5430, + "slug": "limnoria", + "name": "Limnoria", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975131" + ], + "created_at": "2026-07-10T10:12:41.613739", + "updated_at": "2026-07-10T10:12:41.613739", + "url": "/v1/software/limnoria" +} diff --git a/site/public/v1/software/limnu/index.json b/site/public/v1/software/limnu/index.json new file mode 100644 index 000000000000..6f1e9dac4d2d --- /dev/null +++ b/site/public/v1/software/limnu/index.json @@ -0,0 +1,19 @@ +{ + "id": 5431, + "slug": "limnu", + "name": "Limnu", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q23680055" + ], + "created_at": "2026-07-10T10:12:41.613739", + "updated_at": "2026-07-10T10:12:41.613739", + "url": "/v1/software/limnu" +} diff --git a/site/public/v1/software/lindo/index.json b/site/public/v1/software/lindo/index.json new file mode 100644 index 000000000000..11f9b6d31182 --- /dev/null +++ b/site/public/v1/software/lindo/index.json @@ -0,0 +1,19 @@ +{ + "id": 5432, + "slug": "lindo", + "name": "LINDO", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18344427" + ], + "created_at": "2026-07-10T10:12:41.613739", + "updated_at": "2026-07-10T10:12:41.613739", + "url": "/v1/software/lindo" +} diff --git a/site/public/v1/software/lindvd/index.json b/site/public/v1/software/lindvd/index.json new file mode 100644 index 000000000000..4f18a125c32c --- /dev/null +++ b/site/public/v1/software/lindvd/index.json @@ -0,0 +1,21 @@ +{ + "id": 5433, + "slug": "lindvd", + "name": "LinDVD", + "release_date": null, + "developers": [ + "Corel" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4042936" + ], + "created_at": "2026-07-10T10:12:41.614751", + "updated_at": "2026-07-10T10:12:41.614751", + "url": "/v1/software/lindvd" +} diff --git a/site/public/v1/software/line-live/index.json b/site/public/v1/software/line-live/index.json new file mode 100644 index 000000000000..9cfe829c2546 --- /dev/null +++ b/site/public/v1/software/line-live/index.json @@ -0,0 +1,21 @@ +{ + "id": 5434, + "slug": "line-live", + "name": "LINE LIVE", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "iOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q24865768" + ], + "created_at": "2026-07-10T10:12:41.614751", + "updated_at": "2026-07-10T10:12:41.614751", + "url": "/v1/software/line-live" +} diff --git a/site/public/v1/software/line-messaging-api/index.json b/site/public/v1/software/line-messaging-api/index.json new file mode 100644 index 000000000000..a12c8dad51a4 --- /dev/null +++ b/site/public/v1/software/line-messaging-api/index.json @@ -0,0 +1,21 @@ +{ + "id": 5435, + "slug": "line-messaging-api", + "name": "LINE Messaging API", + "release_date": "2016-01-01", + "developers": [ + "Z Intermediate Global Corporation" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q56089345" + ], + "created_at": "2026-07-10T10:12:41.614751", + "updated_at": "2026-07-10T10:12:41.614751", + "url": "/v1/software/line-messaging-api" +} diff --git a/site/public/v1/software/line-profiler/index.json b/site/public/v1/software/line-profiler/index.json new file mode 100644 index 000000000000..d44711d59115 --- /dev/null +++ b/site/public/v1/software/line-profiler/index.json @@ -0,0 +1,19 @@ +{ + "id": 5436, + "slug": "line-profiler", + "name": "line_profiler", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975133" + ], + "created_at": "2026-07-10T10:12:41.614751", + "updated_at": "2026-07-10T10:12:41.614751", + "url": "/v1/software/line-profiler" +} diff --git a/site/public/v1/software/liner/index.json b/site/public/v1/software/liner/index.json new file mode 100644 index 000000000000..6f523d267b57 --- /dev/null +++ b/site/public/v1/software/liner/index.json @@ -0,0 +1,19 @@ +{ + "id": 5437, + "slug": "liner", + "name": "Liner", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q27951941" + ], + "created_at": "2026-07-10T10:12:41.615759", + "updated_at": "2026-07-10T10:12:41.615759", + "url": "/v1/software/liner" +} diff --git a/site/public/v1/software/liner2/index.json b/site/public/v1/software/liner2/index.json new file mode 100644 index 000000000000..6f3de4aa7d50 --- /dev/null +++ b/site/public/v1/software/liner2/index.json @@ -0,0 +1,19 @@ +{ + "id": 5438, + "slug": "liner2", + "name": "Liner2", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087824" + ], + "created_at": "2026-07-10T10:12:41.615759", + "updated_at": "2026-07-10T10:12:41.615759", + "url": "/v1/software/liner2" +} diff --git a/site/public/v1/software/lineup-ai/index.json b/site/public/v1/software/lineup-ai/index.json new file mode 100644 index 000000000000..b457a305fce5 --- /dev/null +++ b/site/public/v1/software/lineup-ai/index.json @@ -0,0 +1,19 @@ +{ + "id": 5439, + "slug": "lineup-ai", + "name": "Lineup.ai", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117463037" + ], + "created_at": "2026-07-10T10:12:41.616772", + "updated_at": "2026-07-10T10:12:41.616772", + "url": "/v1/software/lineup-ai" +} diff --git a/site/public/v1/software/lingea-lexicon/index.json b/site/public/v1/software/lingea-lexicon/index.json new file mode 100644 index 000000000000..e70788190f08 --- /dev/null +++ b/site/public/v1/software/lingea-lexicon/index.json @@ -0,0 +1,19 @@ +{ + "id": 5440, + "slug": "lingea-lexicon", + "name": "Lingea Lexicon", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18113905" + ], + "created_at": "2026-07-10T10:12:41.616772", + "updated_at": "2026-07-10T10:12:41.616772", + "url": "/v1/software/lingea-lexicon" +} diff --git a/site/public/v1/software/lingocloud/index.json b/site/public/v1/software/lingocloud/index.json new file mode 100644 index 000000000000..1be2824abd52 --- /dev/null +++ b/site/public/v1/software/lingocloud/index.json @@ -0,0 +1,21 @@ +{ + "id": 5441, + "slug": "lingocloud", + "name": "LingoCloud", + "release_date": "2017-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q65953937" + ], + "created_at": "2026-07-10T10:12:41.616772", + "updated_at": "2026-07-10T10:12:41.616772", + "url": "/v1/software/lingocloud" +} diff --git a/site/public/v1/software/lingotek/index.json b/site/public/v1/software/lingotek/index.json new file mode 100644 index 000000000000..fb713bddb9f2 --- /dev/null +++ b/site/public/v1/software/lingotek/index.json @@ -0,0 +1,19 @@ +{ + "id": 5442, + "slug": "lingotek", + "name": "lingotek", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q20030689" + ], + "created_at": "2026-07-10T10:12:41.616772", + "updated_at": "2026-07-10T10:12:41.616772", + "url": "/v1/software/lingotek" +} diff --git a/site/public/v1/software/linguee/index.json b/site/public/v1/software/linguee/index.json new file mode 100644 index 000000000000..c633629f215e --- /dev/null +++ b/site/public/v1/software/linguee/index.json @@ -0,0 +1,19 @@ +{ + "id": 5443, + "slug": "linguee", + "name": "Linguee", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q952579" + ], + "created_at": "2026-07-10T10:12:41.617748", + "updated_at": "2026-07-10T10:12:41.617748", + "url": "/v1/software/linguee" +} diff --git a/site/public/v1/software/linguistic-inquiry-and-word-count/index.json b/site/public/v1/software/linguistic-inquiry-and-word-count/index.json new file mode 100644 index 000000000000..1d6f65bf6d67 --- /dev/null +++ b/site/public/v1/software/linguistic-inquiry-and-word-count/index.json @@ -0,0 +1,19 @@ +{ + "id": 5444, + "slug": "linguistic-inquiry-and-word-count", + "name": "Linguistic Inquiry and Word Count", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087825" + ], + "created_at": "2026-07-10T10:12:41.617748", + "updated_at": "2026-07-10T10:12:41.617748", + "url": "/v1/software/linguistic-inquiry-and-word-count" +} diff --git a/site/public/v1/software/linguix/index.json b/site/public/v1/software/linguix/index.json new file mode 100644 index 000000000000..ed71527426d9 --- /dev/null +++ b/site/public/v1/software/linguix/index.json @@ -0,0 +1,19 @@ +{ + "id": 5445, + "slug": "linguix", + "name": "Linguix", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q83011711" + ], + "created_at": "2026-07-10T10:12:41.618743", + "updated_at": "2026-07-10T10:12:41.618743", + "url": "/v1/software/linguix" +} diff --git a/site/public/v1/software/linkchecker/index.json b/site/public/v1/software/linkchecker/index.json new file mode 100644 index 000000000000..16ec1dc99fba --- /dev/null +++ b/site/public/v1/software/linkchecker/index.json @@ -0,0 +1,19 @@ +{ + "id": 5446, + "slug": "linkchecker", + "name": "linkchecker", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975134" + ], + "created_at": "2026-07-10T10:12:41.618743", + "updated_at": "2026-07-10T10:12:41.618743", + "url": "/v1/software/linkchecker" +} diff --git a/site/public/v1/software/linked-pipe-tool/index.json b/site/public/v1/software/linked-pipe-tool/index.json new file mode 100644 index 000000000000..9c15a4cd0713 --- /dev/null +++ b/site/public/v1/software/linked-pipe-tool/index.json @@ -0,0 +1,19 @@ +{ + "id": 5447, + "slug": "linked-pipe-tool", + "name": "Linked Pipe Tool", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q73897825" + ], + "created_at": "2026-07-10T10:12:41.618743", + "updated_at": "2026-07-10T10:12:41.618743", + "url": "/v1/software/linked-pipe-tool" +} diff --git a/site/public/v1/software/linkerd/index.json b/site/public/v1/software/linkerd/index.json new file mode 100644 index 000000000000..1f139aab77b7 --- /dev/null +++ b/site/public/v1/software/linkerd/index.json @@ -0,0 +1,21 @@ +{ + "id": 5448, + "slug": "linkerd", + "name": "Linkerd", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Apache Software License 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q88465954" + ], + "created_at": "2026-07-10T10:12:41.618743", + "updated_at": "2026-07-10T10:12:41.618743", + "url": "/v1/software/linkerd" +} diff --git a/site/public/v1/software/linkml/index.json b/site/public/v1/software/linkml/index.json new file mode 100644 index 000000000000..18b9fdedc0ff --- /dev/null +++ b/site/public/v1/software/linkml/index.json @@ -0,0 +1,23 @@ +{ + "id": 5449, + "slug": "linkml", + "name": "LinkML", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Python" + ], + "licenses": [ + "Apache Software License 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108911530" + ], + "created_at": "2026-07-10T10:12:41.619761", + "updated_at": "2026-07-10T10:12:41.619761", + "url": "/v1/software/linkml" +} diff --git a/site/public/v1/software/linknot/index.json b/site/public/v1/software/linknot/index.json new file mode 100644 index 000000000000..111331c9b6e3 --- /dev/null +++ b/site/public/v1/software/linknot/index.json @@ -0,0 +1,19 @@ +{ + "id": 5450, + "slug": "linknot", + "name": "LinKnot", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123177535" + ], + "created_at": "2026-07-10T10:12:41.619761", + "updated_at": "2026-07-10T10:12:41.619761", + "url": "/v1/software/linknot" +} diff --git a/site/public/v1/software/linkplease/index.json b/site/public/v1/software/linkplease/index.json new file mode 100644 index 000000000000..611bac127337 --- /dev/null +++ b/site/public/v1/software/linkplease/index.json @@ -0,0 +1,19 @@ +{ + "id": 5451, + "slug": "linkplease", + "name": "LinkPlease", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139618888" + ], + "created_at": "2026-07-10T10:12:41.619761", + "updated_at": "2026-07-10T10:12:41.619761", + "url": "/v1/software/linkplease" +} diff --git a/site/public/v1/software/linpack-benchmarks/index.json b/site/public/v1/software/linpack-benchmarks/index.json new file mode 100644 index 000000000000..c62adbe7a06d --- /dev/null +++ b/site/public/v1/software/linpack-benchmarks/index.json @@ -0,0 +1,19 @@ +{ + "id": 5452, + "slug": "linpack-benchmarks", + "name": "LINPACK benchmarks", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6458761" + ], + "created_at": "2026-07-10T10:12:41.620740", + "updated_at": "2026-07-10T10:12:41.620740", + "url": "/v1/software/linpack-benchmarks" +} diff --git a/site/public/v1/software/linqpad/index.json b/site/public/v1/software/linqpad/index.json new file mode 100644 index 000000000000..863d8851bec6 --- /dev/null +++ b/site/public/v1/software/linqpad/index.json @@ -0,0 +1,21 @@ +{ + "id": 5453, + "slug": "linqpad", + "name": "LINQPad", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6458764" + ], + "created_at": "2026-07-10T10:12:41.620740", + "updated_at": "2026-07-10T10:12:41.620740", + "url": "/v1/software/linqpad" +} diff --git a/site/public/v1/software/linsig/index.json b/site/public/v1/software/linsig/index.json new file mode 100644 index 000000000000..30df707652eb --- /dev/null +++ b/site/public/v1/software/linsig/index.json @@ -0,0 +1,21 @@ +{ + "id": 5454, + "slug": "linsig", + "name": "LINSIG", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "end-user license agreement" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6458765" + ], + "created_at": "2026-07-10T10:12:41.620740", + "updated_at": "2026-07-10T10:12:41.620740", + "url": "/v1/software/linsig" +} diff --git a/site/public/v1/software/linsmith/index.json b/site/public/v1/software/linsmith/index.json new file mode 100644 index 000000000000..ebafc0234ec4 --- /dev/null +++ b/site/public/v1/software/linsmith/index.json @@ -0,0 +1,19 @@ +{ + "id": 5455, + "slug": "linsmith", + "name": "linSmith", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62860379" + ], + "created_at": "2026-07-10T10:12:41.621746", + "updated_at": "2026-07-10T10:12:41.621746", + "url": "/v1/software/linsmith" +} diff --git a/site/public/v1/software/linter-sql-rdbms/index.json b/site/public/v1/software/linter-sql-rdbms/index.json new file mode 100644 index 000000000000..2339161d673b --- /dev/null +++ b/site/public/v1/software/linter-sql-rdbms/index.json @@ -0,0 +1,19 @@ +{ + "id": 5456, + "slug": "linter-sql-rdbms", + "name": "Linter SQL RDBMS", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4251598" + ], + "created_at": "2026-07-10T10:12:41.621746", + "updated_at": "2026-07-10T10:12:41.621746", + "url": "/v1/software/linter-sql-rdbms" +} diff --git a/site/public/v1/software/linux-color-management/index.json b/site/public/v1/software/linux-color-management/index.json new file mode 100644 index 000000000000..12968ca27c64 --- /dev/null +++ b/site/public/v1/software/linux-color-management/index.json @@ -0,0 +1,19 @@ +{ + "id": 5457, + "slug": "linux-color-management", + "name": "Linux color management", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16253407" + ], + "created_at": "2026-07-10T10:12:41.621746", + "updated_at": "2026-07-10T10:12:41.621746", + "url": "/v1/software/linux-color-management" +} diff --git a/site/public/v1/software/linux-rt/index.json b/site/public/v1/software/linux-rt/index.json new file mode 100644 index 000000000000..98c68ad307f1 --- /dev/null +++ b/site/public/v1/software/linux-rt/index.json @@ -0,0 +1,21 @@ +{ + "id": 5458, + "slug": "linux-rt", + "name": "Linux-RT", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "GNU General Public License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3241705" + ], + "created_at": "2026-07-10T10:12:41.622759", + "updated_at": "2026-07-10T10:12:41.622759", + "url": "/v1/software/linux-rt" +} diff --git a/site/public/v1/software/linuxpmi/index.json b/site/public/v1/software/linuxpmi/index.json new file mode 100644 index 000000000000..f0290544fada --- /dev/null +++ b/site/public/v1/software/linuxpmi/index.json @@ -0,0 +1,19 @@ +{ + "id": 5459, + "slug": "linuxpmi", + "name": "LinuxPMI", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6555037" + ], + "created_at": "2026-07-10T10:12:41.622759", + "updated_at": "2026-07-10T10:12:41.622759", + "url": "/v1/software/linuxpmi" +} diff --git a/site/public/v1/software/linuxptp/index.json b/site/public/v1/software/linuxptp/index.json new file mode 100644 index 000000000000..6391aa425c6d --- /dev/null +++ b/site/public/v1/software/linuxptp/index.json @@ -0,0 +1,19 @@ +{ + "id": 5460, + "slug": "linuxptp", + "name": "linuxptp", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62852194" + ], + "created_at": "2026-07-10T10:12:41.622759", + "updated_at": "2026-07-10T10:12:41.622759", + "url": "/v1/software/linuxptp" +} diff --git a/site/public/v1/software/linuxshield/index.json b/site/public/v1/software/linuxshield/index.json new file mode 100644 index 000000000000..bb90b0de764d --- /dev/null +++ b/site/public/v1/software/linuxshield/index.json @@ -0,0 +1,19 @@ +{ + "id": 5461, + "slug": "linuxshield", + "name": "LinuxShield", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6555042" + ], + "created_at": "2026-07-10T10:12:41.623744", + "updated_at": "2026-07-10T10:12:41.623744", + "url": "/v1/software/linuxshield" +} diff --git a/site/public/v1/software/lio-utils/index.json b/site/public/v1/software/lio-utils/index.json new file mode 100644 index 000000000000..aaee62e62fa6 --- /dev/null +++ b/site/public/v1/software/lio-utils/index.json @@ -0,0 +1,19 @@ +{ + "id": 5462, + "slug": "lio-utils", + "name": "lio-utils", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975136" + ], + "created_at": "2026-07-10T10:12:41.623744", + "updated_at": "2026-07-10T10:12:41.623744", + "url": "/v1/software/lio-utils" +} diff --git a/site/public/v1/software/lionsolver/index.json b/site/public/v1/software/lionsolver/index.json new file mode 100644 index 000000000000..be7f0be5f284 --- /dev/null +++ b/site/public/v1/software/lionsolver/index.json @@ -0,0 +1,22 @@ +{ + "id": 5463, + "slug": "lionsolver", + "name": "LIONsolver", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6458769" + ], + "created_at": "2026-07-10T10:12:41.623744", + "updated_at": "2026-07-10T10:12:41.623744", + "url": "/v1/software/lionsolver" +} diff --git a/site/public/v1/software/lippmannian-device-to-gephi/index.json b/site/public/v1/software/lippmannian-device-to-gephi/index.json new file mode 100644 index 000000000000..fb618654ace4 --- /dev/null +++ b/site/public/v1/software/lippmannian-device-to-gephi/index.json @@ -0,0 +1,19 @@ +{ + "id": 5464, + "slug": "lippmannian-device-to-gephi", + "name": "Lippmannian Device to Gephi", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085084" + ], + "created_at": "2026-07-10T10:12:41.624741", + "updated_at": "2026-07-10T10:12:41.624741", + "url": "/v1/software/lippmannian-device-to-gephi" +} diff --git a/site/public/v1/software/lipsia/index.json b/site/public/v1/software/lipsia/index.json new file mode 100644 index 000000000000..4e0d57df0739 --- /dev/null +++ b/site/public/v1/software/lipsia/index.json @@ -0,0 +1,19 @@ +{ + "id": 5465, + "slug": "lipsia", + "name": "Lipsia", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q41566819" + ], + "created_at": "2026-07-10T10:12:41.624741", + "updated_at": "2026-07-10T10:12:41.624741", + "url": "/v1/software/lipsia" +} diff --git a/site/public/v1/software/liquid-rhythm/index.json b/site/public/v1/software/liquid-rhythm/index.json new file mode 100644 index 000000000000..54b48b84c8f0 --- /dev/null +++ b/site/public/v1/software/liquid-rhythm/index.json @@ -0,0 +1,21 @@ +{ + "id": 5466, + "slug": "liquid-rhythm", + "name": "Liquid Rhythm", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Java" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22906398" + ], + "created_at": "2026-07-10T10:12:41.624741", + "updated_at": "2026-07-10T10:12:41.624741", + "url": "/v1/software/liquid-rhythm" +} diff --git a/site/public/v1/software/liquid-spins/index.json b/site/public/v1/software/liquid-spins/index.json new file mode 100644 index 000000000000..14b048cc4cb1 --- /dev/null +++ b/site/public/v1/software/liquid-spins/index.json @@ -0,0 +1,19 @@ +{ + "id": 5467, + "slug": "liquid-spins", + "name": "Liquid Spins", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q15094137" + ], + "created_at": "2026-07-10T10:12:41.625676", + "updated_at": "2026-07-10T10:12:41.625676", + "url": "/v1/software/liquid-spins" +} diff --git a/site/public/v1/software/liquidplanner/index.json b/site/public/v1/software/liquidplanner/index.json new file mode 100644 index 000000000000..0e883122e3f1 --- /dev/null +++ b/site/public/v1/software/liquidplanner/index.json @@ -0,0 +1,19 @@ +{ + "id": 5468, + "slug": "liquidplanner", + "name": "LiquidPlanner", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6557329" + ], + "created_at": "2026-07-10T10:12:41.625676", + "updated_at": "2026-07-10T10:12:41.625676", + "url": "/v1/software/liquidplanner" +} diff --git a/site/public/v1/software/lira/index.json b/site/public/v1/software/lira/index.json new file mode 100644 index 000000000000..9a1a4b91be2d --- /dev/null +++ b/site/public/v1/software/lira/index.json @@ -0,0 +1,21 @@ +{ + "id": 5469, + "slug": "lira", + "name": "Lira", + "release_date": "1963-01-01", + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4341029" + ], + "created_at": "2026-07-10T10:12:41.625676", + "updated_at": "2026-07-10T10:12:41.625676", + "url": "/v1/software/lira" +} diff --git a/site/public/v1/software/lisa/index.json b/site/public/v1/software/lisa/index.json new file mode 100644 index 000000000000..5cd07828b961 --- /dev/null +++ b/site/public/v1/software/lisa/index.json @@ -0,0 +1,19 @@ +{ + "id": 5470, + "slug": "lisa", + "name": "LISA+", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1798158" + ], + "created_at": "2026-07-10T10:12:41.626679", + "updated_at": "2026-07-10T10:12:41.626679", + "url": "/v1/software/lisa" +} diff --git a/site/public/v1/software/lise/index.json b/site/public/v1/software/lise/index.json new file mode 100644 index 000000000000..3e3f57dace15 --- /dev/null +++ b/site/public/v1/software/lise/index.json @@ -0,0 +1,21 @@ +{ + "id": 5471, + "slug": "lise", + "name": "LISE++", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17148607" + ], + "created_at": "2026-07-10T10:12:41.626679", + "updated_at": "2026-07-10T10:12:41.626679", + "url": "/v1/software/lise" +} diff --git a/site/public/v1/software/lisica/index.json b/site/public/v1/software/lisica/index.json new file mode 100644 index 000000000000..4a01de2d1755 --- /dev/null +++ b/site/public/v1/software/lisica/index.json @@ -0,0 +1,21 @@ +{ + "id": 5472, + "slug": "lisica", + "name": "LiSiCA", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Python" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28447538" + ], + "created_at": "2026-07-10T10:12:41.626679", + "updated_at": "2026-07-10T10:12:41.626679", + "url": "/v1/software/lisica" +} diff --git a/site/public/v1/software/lisk/index.json b/site/public/v1/software/lisk/index.json new file mode 100644 index 000000000000..b0f4893c53d2 --- /dev/null +++ b/site/public/v1/software/lisk/index.json @@ -0,0 +1,23 @@ +{ + "id": 5473, + "slug": "lisk", + "name": "Lisk", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Node.js" + ], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q24526428" + ], + "created_at": "2026-07-10T10:12:41.627738", + "updated_at": "2026-07-10T10:12:41.627738", + "url": "/v1/software/lisk" +} diff --git a/site/public/v1/software/lispintro/index.json b/site/public/v1/software/lispintro/index.json new file mode 100644 index 000000000000..f8c503c7e473 --- /dev/null +++ b/site/public/v1/software/lispintro/index.json @@ -0,0 +1,19 @@ +{ + "id": 5474, + "slug": "lispintro", + "name": "Lispintro", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76185416" + ], + "created_at": "2026-07-10T10:12:41.627738", + "updated_at": "2026-07-10T10:12:41.627738", + "url": "/v1/software/lispintro" +} diff --git a/site/public/v1/software/lispworks/index.json b/site/public/v1/software/lispworks/index.json new file mode 100644 index 000000000000..e24d69687c22 --- /dev/null +++ b/site/public/v1/software/lispworks/index.json @@ -0,0 +1,19 @@ +{ + "id": 5475, + "slug": "lispworks", + "name": "LispWorks", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6559085" + ], + "created_at": "2026-07-10T10:12:41.627738", + "updated_at": "2026-07-10T10:12:41.627738", + "url": "/v1/software/lispworks" +} diff --git a/site/public/v1/software/lisrel/index.json b/site/public/v1/software/lisrel/index.json new file mode 100644 index 000000000000..50e3ff863965 --- /dev/null +++ b/site/public/v1/software/lisrel/index.json @@ -0,0 +1,21 @@ +{ + "id": 5476, + "slug": "lisrel", + "name": "LISREL", + "release_date": null, + "developers": [ + "Karl Gustav Jöreskog" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3376999" + ], + "created_at": "2026-07-10T10:12:41.628758", + "updated_at": "2026-07-10T10:12:41.628758", + "url": "/v1/software/lisrel" +} diff --git a/site/public/v1/software/list-label/index.json b/site/public/v1/software/list-label/index.json new file mode 100644 index 000000000000..8706c793e9d2 --- /dev/null +++ b/site/public/v1/software/list-label/index.json @@ -0,0 +1,19 @@ +{ + "id": 5477, + "slug": "list-label", + "name": "List & Label", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1828074" + ], + "created_at": "2026-07-10T10:12:41.628758", + "updated_at": "2026-07-10T10:12:41.628758", + "url": "/v1/software/list-label" +} diff --git a/site/public/v1/software/listango/index.json b/site/public/v1/software/listango/index.json new file mode 100644 index 000000000000..9f0dc962d9c5 --- /dev/null +++ b/site/public/v1/software/listango/index.json @@ -0,0 +1,19 @@ +{ + "id": 5478, + "slug": "listango", + "name": "Listango", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085085" + ], + "created_at": "2026-07-10T10:12:41.628758", + "updated_at": "2026-07-10T10:12:41.628758", + "url": "/v1/software/listango" +} diff --git a/site/public/v1/software/listing-flow/index.json b/site/public/v1/software/listing-flow/index.json new file mode 100644 index 000000000000..7f4160612939 --- /dev/null +++ b/site/public/v1/software/listing-flow/index.json @@ -0,0 +1,19 @@ +{ + "id": 5479, + "slug": "listing-flow", + "name": "Listing Flow", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139856689" + ], + "created_at": "2026-07-10T10:12:41.629755", + "updated_at": "2026-07-10T10:12:41.629755", + "url": "/v1/software/listing-flow" +} diff --git a/site/public/v1/software/listserv/index.json b/site/public/v1/software/listserv/index.json new file mode 100644 index 000000000000..44302f3c5c8e --- /dev/null +++ b/site/public/v1/software/listserv/index.json @@ -0,0 +1,28 @@ +{ + "id": 5480, + "slug": "listserv", + "name": "LISTSERV", + "release_date": "1986-01-01", + "developers": [ + "LSoft Technologies Inc" + ], + "publishers": [], + "operating_systems": [ + "Windows Server 2016", + "Red Hat Linux", + "cross-platform", + "Solaris" + ], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1864976" + ], + "created_at": "2026-07-10T10:12:41.629755", + "updated_at": "2026-07-10T10:12:41.629755", + "url": "/v1/software/listserv" +} diff --git a/site/public/v1/software/litassist/index.json b/site/public/v1/software/litassist/index.json new file mode 100644 index 000000000000..5e3018792a76 --- /dev/null +++ b/site/public/v1/software/litassist/index.json @@ -0,0 +1,19 @@ +{ + "id": 5481, + "slug": "litassist", + "name": "LitAssist", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105889878" + ], + "created_at": "2026-07-10T10:12:41.629755", + "updated_at": "2026-07-10T10:12:41.629755", + "url": "/v1/software/litassist" +} diff --git a/site/public/v1/software/litblitz-literature-notes-manager/index.json b/site/public/v1/software/litblitz-literature-notes-manager/index.json new file mode 100644 index 000000000000..a8e44fee1b5a --- /dev/null +++ b/site/public/v1/software/litblitz-literature-notes-manager/index.json @@ -0,0 +1,19 @@ +{ + "id": 5482, + "slug": "litblitz-literature-notes-manager", + "name": "LitBlitz Literature Notes Manager", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085086" + ], + "created_at": "2026-07-10T10:12:41.630763", + "updated_at": "2026-07-10T10:12:41.630763", + "url": "/v1/software/litblitz-literature-notes-manager" +} diff --git a/site/public/v1/software/liteclm/index.json b/site/public/v1/software/liteclm/index.json new file mode 100644 index 000000000000..d95161aca033 --- /dev/null +++ b/site/public/v1/software/liteclm/index.json @@ -0,0 +1,21 @@ +{ + "id": 5483, + "slug": "liteclm", + "name": "LiteCLM", + "release_date": null, + "developers": [ + "Mystique AI" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140185420" + ], + "created_at": "2026-07-10T10:12:41.630763", + "updated_at": "2026-07-10T10:12:41.630763", + "url": "/v1/software/liteclm" +} diff --git a/site/public/v1/software/litemanager/index.json b/site/public/v1/software/litemanager/index.json new file mode 100644 index 000000000000..2d8573d4c8ea --- /dev/null +++ b/site/public/v1/software/litemanager/index.json @@ -0,0 +1,19 @@ +{ + "id": 5484, + "slug": "litemanager", + "name": "LiteManager", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4043029" + ], + "created_at": "2026-07-10T10:12:41.630763", + "updated_at": "2026-07-10T10:12:41.630763", + "url": "/v1/software/litemanager" +} diff --git a/site/public/v1/software/literat/index.json b/site/public/v1/software/literat/index.json new file mode 100644 index 000000000000..94cd95790d4b --- /dev/null +++ b/site/public/v1/software/literat/index.json @@ -0,0 +1,23 @@ +{ + "id": 5485, + "slug": "literat", + "name": "LiteRat", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105748770" + ], + "created_at": "2026-07-10T10:12:41.630763", + "updated_at": "2026-07-10T10:12:41.630763", + "url": "/v1/software/literat" +} diff --git a/site/public/v1/software/litlink/index.json b/site/public/v1/software/litlink/index.json new file mode 100644 index 000000000000..d2110a2ce21b --- /dev/null +++ b/site/public/v1/software/litlink/index.json @@ -0,0 +1,19 @@ +{ + "id": 5486, + "slug": "litlink", + "name": "Litlink", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1334728" + ], + "created_at": "2026-07-10T10:12:41.631753", + "updated_at": "2026-07-10T10:12:41.631753", + "url": "/v1/software/litlink" +} diff --git a/site/public/v1/software/litmedia/index.json b/site/public/v1/software/litmedia/index.json new file mode 100644 index 000000000000..9a0580fa806f --- /dev/null +++ b/site/public/v1/software/litmedia/index.json @@ -0,0 +1,21 @@ +{ + "id": 5487, + "slug": "litmedia", + "name": "LitMedia", + "release_date": "2025-03-01", + "developers": [ + "LitMedia" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140329693" + ], + "created_at": "2026-07-10T10:12:41.631753", + "updated_at": "2026-07-10T10:12:41.631753", + "url": "/v1/software/litmedia" +} diff --git a/site/public/v1/software/litmos/index.json b/site/public/v1/software/litmos/index.json new file mode 100644 index 000000000000..be004fe46ca7 --- /dev/null +++ b/site/public/v1/software/litmos/index.json @@ -0,0 +1,19 @@ +{ + "id": 5488, + "slug": "litmos", + "name": "Litmos", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22906536" + ], + "created_at": "2026-07-10T10:12:41.631753", + "updated_at": "2026-07-10T10:12:41.631753", + "url": "/v1/software/litmos" +} diff --git a/site/public/v1/software/litmus/index.json b/site/public/v1/software/litmus/index.json new file mode 100644 index 000000000000..4129756c3e0d --- /dev/null +++ b/site/public/v1/software/litmus/index.json @@ -0,0 +1,23 @@ +{ + "id": 5489, + "slug": "litmus", + "name": "Litmus", + "release_date": null, + "developers": [ + "Chris Cooper" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Mozilla Public License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6648610" + ], + "created_at": "2026-07-10T10:12:41.632789", + "updated_at": "2026-07-10T10:12:41.632789", + "url": "/v1/software/litmus" +} diff --git a/site/public/v1/software/litstats/index.json b/site/public/v1/software/litstats/index.json new file mode 100644 index 000000000000..ea81f3100f12 --- /dev/null +++ b/site/public/v1/software/litstats/index.json @@ -0,0 +1,19 @@ +{ + "id": 5490, + "slug": "litstats", + "name": "LitStats", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087826" + ], + "created_at": "2026-07-10T10:12:41.632789", + "updated_at": "2026-07-10T10:12:41.632789", + "url": "/v1/software/litstats" +} diff --git a/site/public/v1/software/little-minion/index.json b/site/public/v1/software/little-minion/index.json new file mode 100644 index 000000000000..d172e809442e --- /dev/null +++ b/site/public/v1/software/little-minion/index.json @@ -0,0 +1,19 @@ +{ + "id": 5491, + "slug": "little-minion", + "name": "Little Minion", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q73899440" + ], + "created_at": "2026-07-10T10:12:41.632789", + "updated_at": "2026-07-10T10:12:41.632789", + "url": "/v1/software/little-minion" +} diff --git a/site/public/v1/software/litviz/index.json b/site/public/v1/software/litviz/index.json new file mode 100644 index 000000000000..afdd4860f971 --- /dev/null +++ b/site/public/v1/software/litviz/index.json @@ -0,0 +1,19 @@ +{ + "id": 5492, + "slug": "litviz", + "name": "LitViz", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085087" + ], + "created_at": "2026-07-10T10:12:41.633738", + "updated_at": "2026-07-10T10:12:41.633738", + "url": "/v1/software/litviz" +} diff --git a/site/public/v1/software/livac-synchronous-corpus/index.json b/site/public/v1/software/livac-synchronous-corpus/index.json new file mode 100644 index 000000000000..d682f0d38b44 --- /dev/null +++ b/site/public/v1/software/livac-synchronous-corpus/index.json @@ -0,0 +1,21 @@ +{ + "id": 5493, + "slug": "livac-synchronous-corpus", + "name": "LIVAC Synchronous Corpus", + "release_date": "1995-07-01", + "developers": [], + "publishers": [], + "operating_systems": [ + "cross-platform" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18344437" + ], + "created_at": "2026-07-10T10:12:41.633738", + "updated_at": "2026-07-10T10:12:41.633738", + "url": "/v1/software/livac-synchronous-corpus" +} diff --git a/site/public/v1/software/live-clipboard/index.json b/site/public/v1/software/live-clipboard/index.json new file mode 100644 index 000000000000..36c9faf95fda --- /dev/null +++ b/site/public/v1/software/live-clipboard/index.json @@ -0,0 +1,23 @@ +{ + "id": 5494, + "slug": "live-clipboard", + "name": "Live Clipboard", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6655042" + ], + "created_at": "2026-07-10T10:12:41.633738", + "updated_at": "2026-07-10T10:12:41.633738", + "url": "/v1/software/live-clipboard" +} diff --git a/site/public/v1/software/live-commerce/index.json b/site/public/v1/software/live-commerce/index.json new file mode 100644 index 000000000000..7073b4062252 --- /dev/null +++ b/site/public/v1/software/live-commerce/index.json @@ -0,0 +1,21 @@ +{ + "id": 5495, + "slug": "live-commerce", + "name": "Live Commerce", + "release_date": null, + "developers": [ + "Digital Studio Co., Ltd" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11230261" + ], + "created_at": "2026-07-10T10:12:41.634730", + "updated_at": "2026-07-10T10:12:41.634730", + "url": "/v1/software/live-commerce" +} diff --git a/site/public/v1/software/live-connect/index.json b/site/public/v1/software/live-connect/index.json new file mode 100644 index 000000000000..301e6d4cfd76 --- /dev/null +++ b/site/public/v1/software/live-connect/index.json @@ -0,0 +1,19 @@ +{ + "id": 5496, + "slug": "live-connect", + "name": "Live Connect", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10751467" + ], + "created_at": "2026-07-10T10:12:41.634730", + "updated_at": "2026-07-10T10:12:41.634730", + "url": "/v1/software/live-connect" +} diff --git a/site/public/v1/software/live-home-3d/index.json b/site/public/v1/software/live-home-3d/index.json new file mode 100644 index 000000000000..85efc0c49ba8 --- /dev/null +++ b/site/public/v1/software/live-home-3d/index.json @@ -0,0 +1,19 @@ +{ + "id": 5497, + "slug": "live-home-3d", + "name": "Live Home 3D", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q55080213" + ], + "created_at": "2026-07-10T10:12:41.634730", + "updated_at": "2026-07-10T10:12:41.634730", + "url": "/v1/software/live-home-3d" +} diff --git a/site/public/v1/software/live-ink-character-recognition-solution/index.json b/site/public/v1/software/live-ink-character-recognition-solution/index.json new file mode 100644 index 000000000000..c514320b158f --- /dev/null +++ b/site/public/v1/software/live-ink-character-recognition-solution/index.json @@ -0,0 +1,19 @@ +{ + "id": 5498, + "slug": "live-ink-character-recognition-solution", + "name": "Live ink character recognition solution", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25053381" + ], + "created_at": "2026-07-10T10:12:41.635755", + "updated_at": "2026-07-10T10:12:41.635755", + "url": "/v1/software/live-ink-character-recognition-solution" +} diff --git a/site/public/v1/software/live-ly/index.json b/site/public/v1/software/live-ly/index.json new file mode 100644 index 000000000000..e76d9d7b7cea --- /dev/null +++ b/site/public/v1/software/live-ly/index.json @@ -0,0 +1,19 @@ +{ + "id": 5499, + "slug": "live-ly", + "name": "Live.ly", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125802948" + ], + "created_at": "2026-07-10T10:12:41.635755", + "updated_at": "2026-07-10T10:12:41.635755", + "url": "/v1/software/live-ly" +} diff --git a/site/public/v1/software/live-mesh/index.json b/site/public/v1/software/live-mesh/index.json new file mode 100644 index 000000000000..cc0590701c35 --- /dev/null +++ b/site/public/v1/software/live-mesh/index.json @@ -0,0 +1,23 @@ +{ + "id": 5500, + "slug": "live-mesh", + "name": "Live Mesh", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4053176" + ], + "created_at": "2026-07-10T10:12:41.635755", + "updated_at": "2026-07-10T10:12:41.635755", + "url": "/v1/software/live-mesh" +} diff --git a/site/public/v1/software/live-search-academic/index.json b/site/public/v1/software/live-search-academic/index.json new file mode 100644 index 000000000000..9c797aa67818 --- /dev/null +++ b/site/public/v1/software/live-search-academic/index.json @@ -0,0 +1,21 @@ +{ + "id": 5501, + "slug": "live-search-academic", + "name": "Live Search Academic", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3835206" + ], + "created_at": "2026-07-10T10:12:41.636810", + "updated_at": "2026-07-10T10:12:41.636810", + "url": "/v1/software/live-search-academic" +} diff --git a/site/public/v1/software/live-search-books/index.json b/site/public/v1/software/live-search-books/index.json new file mode 100644 index 000000000000..a6bbb80f87c4 --- /dev/null +++ b/site/public/v1/software/live-search-books/index.json @@ -0,0 +1,21 @@ +{ + "id": 5502, + "slug": "live-search-books", + "name": "Live Search Books", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3835210" + ], + "created_at": "2026-07-10T10:12:41.636810", + "updated_at": "2026-07-10T10:12:41.636810", + "url": "/v1/software/live-search-books" +} diff --git a/site/public/v1/software/live-transcribe/index.json b/site/public/v1/software/live-transcribe/index.json new file mode 100644 index 000000000000..9860d424e8c8 --- /dev/null +++ b/site/public/v1/software/live-transcribe/index.json @@ -0,0 +1,19 @@ +{ + "id": 5503, + "slug": "live-transcribe", + "name": "Live Transcribe", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105721262" + ], + "created_at": "2026-07-10T10:12:41.636810", + "updated_at": "2026-07-10T10:12:41.636810", + "url": "/v1/software/live-transcribe" +} diff --git a/site/public/v1/software/livearea/index.json b/site/public/v1/software/livearea/index.json new file mode 100644 index 000000000000..d4d37f575ad4 --- /dev/null +++ b/site/public/v1/software/livearea/index.json @@ -0,0 +1,19 @@ +{ + "id": 5504, + "slug": "livearea", + "name": "LiveArea", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3256897" + ], + "created_at": "2026-07-10T10:12:41.637749", + "updated_at": "2026-07-10T10:12:41.637749", + "url": "/v1/software/livearea" +} diff --git a/site/public/v1/software/livecd-tools/index.json b/site/public/v1/software/livecd-tools/index.json new file mode 100644 index 000000000000..3454610db2a0 --- /dev/null +++ b/site/public/v1/software/livecd-tools/index.json @@ -0,0 +1,19 @@ +{ + "id": 5505, + "slug": "livecd-tools", + "name": "livecd-tools", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975138" + ], + "created_at": "2026-07-10T10:12:41.637749", + "updated_at": "2026-07-10T10:12:41.637749", + "url": "/v1/software/livecd-tools" +} diff --git a/site/public/v1/software/livechat/index.json b/site/public/v1/software/livechat/index.json new file mode 100644 index 000000000000..6d0c5cb47a66 --- /dev/null +++ b/site/public/v1/software/livechat/index.json @@ -0,0 +1,27 @@ +{ + "id": 5506, + "slug": "livechat", + "name": "LiveChat", + "release_date": null, + "developers": [ + "Text, Inc.", + "Text" + ], + "publishers": [ + "Text", + "Text, Inc." + ], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1763653" + ], + "created_at": "2026-07-10T10:12:41.637749", + "updated_at": "2026-07-10T10:12:41.637749", + "url": "/v1/software/livechat" +} diff --git a/site/public/v1/software/livedrive/index.json b/site/public/v1/software/livedrive/index.json new file mode 100644 index 000000000000..a51731952dc3 --- /dev/null +++ b/site/public/v1/software/livedrive/index.json @@ -0,0 +1,21 @@ +{ + "id": 5507, + "slug": "livedrive", + "name": "Livedrive", + "release_date": "2008-12-01", + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6658160" + ], + "created_at": "2026-07-10T10:12:41.638769", + "updated_at": "2026-07-10T10:12:41.638769", + "url": "/v1/software/livedrive" +} diff --git a/site/public/v1/software/livejournal/index.json b/site/public/v1/software/livejournal/index.json new file mode 100644 index 000000000000..47f2beb5c248 --- /dev/null +++ b/site/public/v1/software/livejournal/index.json @@ -0,0 +1,19 @@ +{ + "id": 5508, + "slug": "livejournal", + "name": "LiveJournal", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085088" + ], + "created_at": "2026-07-10T10:12:41.638769", + "updated_at": "2026-07-10T10:12:41.638769", + "url": "/v1/software/livejournal" +} diff --git a/site/public/v1/software/liveme/index.json b/site/public/v1/software/liveme/index.json new file mode 100644 index 000000000000..5349908b23eb --- /dev/null +++ b/site/public/v1/software/liveme/index.json @@ -0,0 +1,21 @@ +{ + "id": 5509, + "slug": "liveme", + "name": "LiveMe", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "iOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q30925952" + ], + "created_at": "2026-07-10T10:12:41.638769", + "updated_at": "2026-07-10T10:12:41.638769", + "url": "/v1/software/liveme" +} diff --git a/site/public/v1/software/livestation/index.json b/site/public/v1/software/livestation/index.json new file mode 100644 index 000000000000..13c3c2e4ddcf --- /dev/null +++ b/site/public/v1/software/livestation/index.json @@ -0,0 +1,19 @@ +{ + "id": 5510, + "slug": "livestation", + "name": "LiveStation", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q739853" + ], + "created_at": "2026-07-10T10:12:41.638769", + "updated_at": "2026-07-10T10:12:41.638769", + "url": "/v1/software/livestation" +} diff --git a/site/public/v1/software/livestorm/index.json b/site/public/v1/software/livestorm/index.json new file mode 100644 index 000000000000..37483be245be --- /dev/null +++ b/site/public/v1/software/livestorm/index.json @@ -0,0 +1,19 @@ +{ + "id": 5511, + "slug": "livestorm", + "name": "Livestorm", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q50809205" + ], + "created_at": "2026-07-10T10:12:41.639746", + "updated_at": "2026-07-10T10:12:41.639746", + "url": "/v1/software/livestorm" +} diff --git a/site/public/v1/software/liveusbcreator/index.json b/site/public/v1/software/liveusbcreator/index.json new file mode 100644 index 000000000000..6ded22fed652 --- /dev/null +++ b/site/public/v1/software/liveusbcreator/index.json @@ -0,0 +1,19 @@ +{ + "id": 5512, + "slug": "liveusbcreator", + "name": "liveUSBcreator", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q98732075" + ], + "created_at": "2026-07-10T10:12:41.639746", + "updated_at": "2026-07-10T10:12:41.639746", + "url": "/v1/software/liveusbcreator" +} diff --git a/site/public/v1/software/livewire-professional/index.json b/site/public/v1/software/livewire-professional/index.json new file mode 100644 index 000000000000..28c4d1f2fc12 --- /dev/null +++ b/site/public/v1/software/livewire-professional/index.json @@ -0,0 +1,19 @@ +{ + "id": 5513, + "slug": "livewire-professional", + "name": "LiveWire Professional", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6654592" + ], + "created_at": "2026-07-10T10:12:41.640739", + "updated_at": "2026-07-10T10:12:41.640739", + "url": "/v1/software/livewire-professional" +} diff --git a/site/public/v1/software/llama-q118120085/index.json b/site/public/v1/software/llama-q118120085/index.json new file mode 100644 index 000000000000..864c448b1f57 --- /dev/null +++ b/site/public/v1/software/llama-q118120085/index.json @@ -0,0 +1,21 @@ +{ + "id": 5514, + "slug": "llama-q118120085", + "name": "LLAMA", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Mozilla Public License, version 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118120085" + ], + "created_at": "2026-07-10T10:12:41.640739", + "updated_at": "2026-07-10T10:12:41.640739", + "url": "/v1/software/llama-q118120085" +} diff --git a/site/public/v1/software/llama/index.json b/site/public/v1/software/llama/index.json new file mode 100644 index 000000000000..810026698106 --- /dev/null +++ b/site/public/v1/software/llama/index.json @@ -0,0 +1,23 @@ +{ + "id": 5515, + "slug": "llama", + "name": "LLaMA", + "release_date": "2023-02-01", + "developers": [ + "Meta" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Python" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116894231" + ], + "created_at": "2026-07-10T10:12:41.640739", + "updated_at": "2026-07-10T10:12:41.640739", + "url": "/v1/software/llama" +} diff --git a/site/public/v1/software/lldpd/index.json b/site/public/v1/software/lldpd/index.json new file mode 100644 index 000000000000..8ea95777a546 --- /dev/null +++ b/site/public/v1/software/lldpd/index.json @@ -0,0 +1,19 @@ +{ + "id": 5516, + "slug": "lldpd", + "name": "lldpd", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62854749" + ], + "created_at": "2026-07-10T10:12:41.640739", + "updated_at": "2026-07-10T10:12:41.640739", + "url": "/v1/software/lldpd" +} diff --git a/site/public/v1/software/llvm-libunwind/index.json b/site/public/v1/software/llvm-libunwind/index.json new file mode 100644 index 000000000000..99e31ab1cc53 --- /dev/null +++ b/site/public/v1/software/llvm-libunwind/index.json @@ -0,0 +1,19 @@ +{ + "id": 5517, + "slug": "llvm-libunwind", + "name": "llvm-libunwind", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975140" + ], + "created_at": "2026-07-10T10:12:41.641676", + "updated_at": "2026-07-10T10:12:41.641676", + "url": "/v1/software/llvm-libunwind" +} diff --git a/site/public/v1/software/llvm-ocaml/index.json b/site/public/v1/software/llvm-ocaml/index.json new file mode 100644 index 000000000000..61cb1ce3aad0 --- /dev/null +++ b/site/public/v1/software/llvm-ocaml/index.json @@ -0,0 +1,19 @@ +{ + "id": 5518, + "slug": "llvm-ocaml", + "name": "llvm-ocaml", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975141" + ], + "created_at": "2026-07-10T10:12:41.641676", + "updated_at": "2026-07-10T10:12:41.641676", + "url": "/v1/software/llvm-ocaml" +} diff --git a/site/public/v1/software/llvm-vim/index.json b/site/public/v1/software/llvm-vim/index.json new file mode 100644 index 000000000000..a467e26755a4 --- /dev/null +++ b/site/public/v1/software/llvm-vim/index.json @@ -0,0 +1,19 @@ +{ + "id": 5519, + "slug": "llvm-vim", + "name": "llvm-vim", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975142" + ], + "created_at": "2026-07-10T10:12:41.641676", + "updated_at": "2026-07-10T10:12:41.641676", + "url": "/v1/software/llvm-vim" +} diff --git a/site/public/v1/software/lm-x-license-manager/index.json b/site/public/v1/software/lm-x-license-manager/index.json new file mode 100644 index 000000000000..da2d21df95e0 --- /dev/null +++ b/site/public/v1/software/lm-x-license-manager/index.json @@ -0,0 +1,19 @@ +{ + "id": 5520, + "slug": "lm-x-license-manager", + "name": "LM-X License Manager", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q39055002" + ], + "created_at": "2026-07-10T10:12:41.642788", + "updated_at": "2026-07-10T10:12:41.642788", + "url": "/v1/software/lm-x-license-manager" +} diff --git a/site/public/v1/software/lmdb/index.json b/site/public/v1/software/lmdb/index.json new file mode 100644 index 000000000000..3ec03de95094 --- /dev/null +++ b/site/public/v1/software/lmdb/index.json @@ -0,0 +1,19 @@ +{ + "id": 5521, + "slug": "lmdb", + "name": "lmdb++", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065354" + ], + "created_at": "2026-07-10T10:12:41.642788", + "updated_at": "2026-07-10T10:12:41.642788", + "url": "/v1/software/lmdb" +} diff --git a/site/public/v1/software/lmfit/index.json b/site/public/v1/software/lmfit/index.json new file mode 100644 index 000000000000..ebbbefe71518 --- /dev/null +++ b/site/public/v1/software/lmfit/index.json @@ -0,0 +1,19 @@ +{ + "id": 5522, + "slug": "lmfit", + "name": "lmfit", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065516" + ], + "created_at": "2026-07-10T10:12:41.642788", + "updated_at": "2026-07-10T10:12:41.642788", + "url": "/v1/software/lmfit" +} diff --git a/site/public/v1/software/lo-na/index.json b/site/public/v1/software/lo-na/index.json new file mode 100644 index 000000000000..ac6b5afa430b --- /dev/null +++ b/site/public/v1/software/lo-na/index.json @@ -0,0 +1,19 @@ +{ + "id": 5523, + "slug": "lo-na", + "name": "Loóna", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112516362" + ], + "created_at": "2026-07-10T10:12:41.643768", + "updated_at": "2026-07-10T10:12:41.643768", + "url": "/v1/software/lo-na" +} diff --git a/site/public/v1/software/local-economic-assessment-package/index.json b/site/public/v1/software/local-economic-assessment-package/index.json new file mode 100644 index 000000000000..28bfdc354fb7 --- /dev/null +++ b/site/public/v1/software/local-economic-assessment-package/index.json @@ -0,0 +1,21 @@ +{ + "id": 5524, + "slug": "local-economic-assessment-package", + "name": "Local Economic Assessment Package", + "release_date": null, + "developers": [ + "EBP US" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6663991" + ], + "created_at": "2026-07-10T10:12:41.643768", + "updated_at": "2026-07-10T10:12:41.643768", + "url": "/v1/software/local-economic-assessment-package" +} diff --git a/site/public/v1/software/local-shared-object/index.json b/site/public/v1/software/local-shared-object/index.json new file mode 100644 index 000000000000..94a73cd5d495 --- /dev/null +++ b/site/public/v1/software/local-shared-object/index.json @@ -0,0 +1,19 @@ +{ + "id": 5525, + "slug": "local-shared-object", + "name": "local shared object", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1312725" + ], + "created_at": "2026-07-10T10:12:41.643768", + "updated_at": "2026-07-10T10:12:41.643768", + "url": "/v1/software/local-shared-object" +} diff --git a/site/public/v1/software/localwiki/index.json b/site/public/v1/software/localwiki/index.json new file mode 100644 index 000000000000..1dfbdf989065 --- /dev/null +++ b/site/public/v1/software/localwiki/index.json @@ -0,0 +1,21 @@ +{ + "id": 5526, + "slug": "localwiki", + "name": "LocalWiki", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Python" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17034877" + ], + "created_at": "2026-07-10T10:12:41.644757", + "updated_at": "2026-07-10T10:12:41.644757", + "url": "/v1/software/localwiki" +} diff --git a/site/public/v1/software/location-view/index.json b/site/public/v1/software/location-view/index.json new file mode 100644 index 000000000000..58ab741c5e81 --- /dev/null +++ b/site/public/v1/software/location-view/index.json @@ -0,0 +1,19 @@ +{ + "id": 5527, + "slug": "location-view", + "name": "Location View", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5849726" + ], + "created_at": "2026-07-10T10:12:41.644757", + "updated_at": "2026-07-10T10:12:41.644757", + "url": "/v1/software/location-view" +} diff --git a/site/public/v1/software/locationtech-geogig/index.json b/site/public/v1/software/locationtech-geogig/index.json new file mode 100644 index 000000000000..27f79533e956 --- /dev/null +++ b/site/public/v1/software/locationtech-geogig/index.json @@ -0,0 +1,19 @@ +{ + "id": 5528, + "slug": "locationtech-geogig", + "name": "LocationTech GeoGig", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76176712" + ], + "created_at": "2026-07-10T10:12:41.644757", + "updated_at": "2026-07-10T10:12:41.644757", + "url": "/v1/software/locationtech-geogig" +} diff --git a/site/public/v1/software/locationtech-geomesa/index.json b/site/public/v1/software/locationtech-geomesa/index.json new file mode 100644 index 000000000000..0248a9b7d09c --- /dev/null +++ b/site/public/v1/software/locationtech-geomesa/index.json @@ -0,0 +1,19 @@ +{ + "id": 5529, + "slug": "locationtech-geomesa", + "name": "LocationTech GeoMesa", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76174589" + ], + "created_at": "2026-07-10T10:12:41.645750", + "updated_at": "2026-07-10T10:12:41.645750", + "url": "/v1/software/locationtech-geomesa" +} diff --git a/site/public/v1/software/locationtech-geotrellis/index.json b/site/public/v1/software/locationtech-geotrellis/index.json new file mode 100644 index 000000000000..7a66ff48987a --- /dev/null +++ b/site/public/v1/software/locationtech-geotrellis/index.json @@ -0,0 +1,19 @@ +{ + "id": 5530, + "slug": "locationtech-geotrellis", + "name": "LocationTech GeoTrellis", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76176725" + ], + "created_at": "2026-07-10T10:12:41.645750", + "updated_at": "2026-07-10T10:12:41.645750", + "url": "/v1/software/locationtech-geotrellis" +} diff --git a/site/public/v1/software/locationtech-geowave/index.json b/site/public/v1/software/locationtech-geowave/index.json new file mode 100644 index 000000000000..c5b6952b35bd --- /dev/null +++ b/site/public/v1/software/locationtech-geowave/index.json @@ -0,0 +1,19 @@ +{ + "id": 5531, + "slug": "locationtech-geowave", + "name": "LocationTech GeoWave", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76169470" + ], + "created_at": "2026-07-10T10:12:41.645750", + "updated_at": "2026-07-10T10:12:41.645750", + "url": "/v1/software/locationtech-geowave" +} diff --git a/site/public/v1/software/locationtech-spatial4j/index.json b/site/public/v1/software/locationtech-spatial4j/index.json new file mode 100644 index 000000000000..347ae5b38713 --- /dev/null +++ b/site/public/v1/software/locationtech-spatial4j/index.json @@ -0,0 +1,19 @@ +{ + "id": 5532, + "slug": "locationtech-spatial4j", + "name": "LocationTech Spatial4j", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76176589" + ], + "created_at": "2026-07-10T10:12:41.646754", + "updated_at": "2026-07-10T10:12:41.646754", + "url": "/v1/software/locationtech-spatial4j" +} diff --git a/site/public/v1/software/locloud-collections/index.json b/site/public/v1/software/locloud-collections/index.json new file mode 100644 index 000000000000..9cad8643979d --- /dev/null +++ b/site/public/v1/software/locloud-collections/index.json @@ -0,0 +1,19 @@ +{ + "id": 5533, + "slug": "locloud-collections", + "name": "LoCloud Collections", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085089" + ], + "created_at": "2026-07-10T10:12:41.646754", + "updated_at": "2026-07-10T10:12:41.646754", + "url": "/v1/software/locloud-collections" +} diff --git a/site/public/v1/software/locus-map/index.json b/site/public/v1/software/locus-map/index.json new file mode 100644 index 000000000000..2dd4ffcf474f --- /dev/null +++ b/site/public/v1/software/locus-map/index.json @@ -0,0 +1,21 @@ +{ + "id": 5534, + "slug": "locus-map", + "name": "Locus Map", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Java" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25344644" + ], + "created_at": "2026-07-10T10:12:41.646754", + "updated_at": "2026-07-10T10:12:41.646754", + "url": "/v1/software/locus-map" +} diff --git a/site/public/v1/software/lodlive/index.json b/site/public/v1/software/lodlive/index.json new file mode 100644 index 000000000000..a71758f8a093 --- /dev/null +++ b/site/public/v1/software/lodlive/index.json @@ -0,0 +1,19 @@ +{ + "id": 5535, + "slug": "lodlive", + "name": "LodLive", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085090" + ], + "created_at": "2026-07-10T10:12:41.647744", + "updated_at": "2026-07-10T10:12:41.647744", + "url": "/v1/software/lodlive" +} diff --git a/site/public/v1/software/log-shipping/index.json b/site/public/v1/software/log-shipping/index.json new file mode 100644 index 000000000000..1586cf0b136a --- /dev/null +++ b/site/public/v1/software/log-shipping/index.json @@ -0,0 +1,19 @@ +{ + "id": 5536, + "slug": "log-shipping", + "name": "log shipping", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6666854" + ], + "created_at": "2026-07-10T10:12:41.647744", + "updated_at": "2026-07-10T10:12:41.647744", + "url": "/v1/software/log-shipping" +} diff --git a/site/public/v1/software/log4sh/index.json b/site/public/v1/software/log4sh/index.json new file mode 100644 index 000000000000..2841b9fb6c1c --- /dev/null +++ b/site/public/v1/software/log4sh/index.json @@ -0,0 +1,19 @@ +{ + "id": 5537, + "slug": "log4sh", + "name": "log4sh", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065166" + ], + "created_at": "2026-07-10T10:12:41.647744", + "updated_at": "2026-07-10T10:12:41.647744", + "url": "/v1/software/log4sh" +} diff --git a/site/public/v1/software/logcheck/index.json b/site/public/v1/software/logcheck/index.json new file mode 100644 index 000000000000..f4e237badacd --- /dev/null +++ b/site/public/v1/software/logcheck/index.json @@ -0,0 +1,19 @@ +{ + "id": 5538, + "slug": "logcheck", + "name": "LogCheck", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62852130" + ], + "created_at": "2026-07-10T10:12:41.648750", + "updated_at": "2026-07-10T10:12:41.648750", + "url": "/v1/software/logcheck" +} diff --git a/site/public/v1/software/loggerhead/index.json b/site/public/v1/software/loggerhead/index.json new file mode 100644 index 000000000000..9b804edb88e5 --- /dev/null +++ b/site/public/v1/software/loggerhead/index.json @@ -0,0 +1,19 @@ +{ + "id": 5539, + "slug": "loggerhead", + "name": "Loggerhead", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q133729030" + ], + "created_at": "2026-07-10T10:12:41.648750", + "updated_at": "2026-07-10T10:12:41.648750", + "url": "/v1/software/loggerhead" +} diff --git a/site/public/v1/software/logib/index.json b/site/public/v1/software/logib/index.json new file mode 100644 index 000000000000..137475784f94 --- /dev/null +++ b/site/public/v1/software/logib/index.json @@ -0,0 +1,19 @@ +{ + "id": 5540, + "slug": "logib", + "name": "Logib", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1868009" + ], + "created_at": "2026-07-10T10:12:41.648750", + "updated_at": "2026-07-10T10:12:41.648750", + "url": "/v1/software/logib" +} diff --git a/site/public/v1/software/logic-express/index.json b/site/public/v1/software/logic-express/index.json new file mode 100644 index 000000000000..b5aff08fc37b --- /dev/null +++ b/site/public/v1/software/logic-express/index.json @@ -0,0 +1,21 @@ +{ + "id": 5541, + "slug": "logic-express", + "name": "Logic Express", + "release_date": null, + "developers": [ + "Apple Inc." + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2246250" + ], + "created_at": "2026-07-10T10:12:41.649757", + "updated_at": "2026-07-10T10:12:41.649757", + "url": "/v1/software/logic-express" +} diff --git a/site/public/v1/software/logic-for-structure-determination/index.json b/site/public/v1/software/logic-for-structure-determination/index.json new file mode 100644 index 000000000000..263fef9becb0 --- /dev/null +++ b/site/public/v1/software/logic-for-structure-determination/index.json @@ -0,0 +1,21 @@ +{ + "id": 5542, + "slug": "logic-for-structure-determination", + "name": "Logic for Structure Determination", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "GNU General Public License, version 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111549556" + ], + "created_at": "2026-07-10T10:12:41.649757", + "updated_at": "2026-07-10T10:12:41.649757", + "url": "/v1/software/logic-for-structure-determination" +} diff --git a/site/public/v1/software/logic-studio/index.json b/site/public/v1/software/logic-studio/index.json new file mode 100644 index 000000000000..1f7f93f23cfb --- /dev/null +++ b/site/public/v1/software/logic-studio/index.json @@ -0,0 +1,21 @@ +{ + "id": 5543, + "slug": "logic-studio", + "name": "Logic Studio", + "release_date": null, + "developers": [ + "Apple Inc." + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1142467" + ], + "created_at": "2026-07-10T10:12:41.649757", + "updated_at": "2026-07-10T10:12:41.649757", + "url": "/v1/software/logic-studio" +} diff --git a/site/public/v1/software/logic/index.json b/site/public/v1/software/logic/index.json new file mode 100644 index 000000000000..ebcdaf876a71 --- /dev/null +++ b/site/public/v1/software/logic/index.json @@ -0,0 +1,21 @@ +{ + "id": 5544, + "slug": "logic", + "name": "Logic", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Mozilla Public License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5978363" + ], + "created_at": "2026-07-10T10:12:41.650745", + "updated_at": "2026-07-10T10:12:41.650745", + "url": "/v1/software/logic" +} diff --git a/site/public/v1/software/logical-decisions/index.json b/site/public/v1/software/logical-decisions/index.json new file mode 100644 index 000000000000..9918e8f4769e --- /dev/null +++ b/site/public/v1/software/logical-decisions/index.json @@ -0,0 +1,19 @@ +{ + "id": 5545, + "slug": "logical-decisions", + "name": "Logical Decisions", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6667476" + ], + "created_at": "2026-07-10T10:12:41.650745", + "updated_at": "2026-07-10T10:12:41.650745", + "url": "/v1/software/logical-decisions" +} diff --git a/site/public/v1/software/login-vsi/index.json b/site/public/v1/software/login-vsi/index.json new file mode 100644 index 000000000000..8dc933dfda66 --- /dev/null +++ b/site/public/v1/software/login-vsi/index.json @@ -0,0 +1,21 @@ +{ + "id": 5546, + "slug": "login-vsi", + "name": "Login VSI", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6667627" + ], + "created_at": "2026-07-10T10:12:41.650745", + "updated_at": "2026-07-10T10:12:41.650745", + "url": "/v1/software/login-vsi" +} diff --git a/site/public/v1/software/loginventory/index.json b/site/public/v1/software/loginventory/index.json new file mode 100644 index 000000000000..39fc9dc19ad2 --- /dev/null +++ b/site/public/v1/software/loginventory/index.json @@ -0,0 +1,21 @@ +{ + "id": 5547, + "slug": "loginventory", + "name": "Loginventory", + "release_date": null, + "developers": [ + "Schmidt's LOGIN GmbH" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6667635" + ], + "created_at": "2026-07-10T10:12:41.650745", + "updated_at": "2026-07-10T10:12:41.650745", + "url": "/v1/software/loginventory" +} diff --git a/site/public/v1/software/logistics-functional-area-services/index.json b/site/public/v1/software/logistics-functional-area-services/index.json new file mode 100644 index 000000000000..f9d3064ab886 --- /dev/null +++ b/site/public/v1/software/logistics-functional-area-services/index.json @@ -0,0 +1,19 @@ +{ + "id": 5548, + "slug": "logistics-functional-area-services", + "name": "Logistics Functional Area Services", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140312385" + ], + "created_at": "2026-07-10T10:12:41.651734", + "updated_at": "2026-07-10T10:12:41.651734", + "url": "/v1/software/logistics-functional-area-services" +} diff --git a/site/public/v1/software/logo-extraction-puzzle/index.json b/site/public/v1/software/logo-extraction-puzzle/index.json new file mode 100644 index 000000000000..fa0c1c21e500 --- /dev/null +++ b/site/public/v1/software/logo-extraction-puzzle/index.json @@ -0,0 +1,19 @@ +{ + "id": 5549, + "slug": "logo-extraction-puzzle", + "name": "Logo extraction puzzle", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6667728" + ], + "created_at": "2026-07-10T10:12:41.651734", + "updated_at": "2026-07-10T10:12:41.651734", + "url": "/v1/software/logo-extraction-puzzle" +} diff --git a/site/public/v1/software/logoport/index.json b/site/public/v1/software/logoport/index.json new file mode 100644 index 000000000000..08b91738992e --- /dev/null +++ b/site/public/v1/software/logoport/index.json @@ -0,0 +1,21 @@ +{ + "id": 5550, + "slug": "logoport", + "name": "Logoport", + "release_date": "2005-01-01", + "developers": [ + "Lionbridge" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3520102" + ], + "created_at": "2026-07-10T10:12:41.652768", + "updated_at": "2026-07-10T10:12:41.652768", + "url": "/v1/software/logoport" +} diff --git a/site/public/v1/software/logos-the-logos-model-and-openlogos/index.json b/site/public/v1/software/logos-the-logos-model-and-openlogos/index.json new file mode 100644 index 000000000000..fe98d6c7a731 --- /dev/null +++ b/site/public/v1/software/logos-the-logos-model-and-openlogos/index.json @@ -0,0 +1,26 @@ +{ + "id": 5551, + "slug": "logos-the-logos-model-and-openlogos", + "name": "Logos, the Logos Model and OpenLogos", + "release_date": null, + "developers": [ + "Bud Scott", + "Kenneth R. de Camargo, Jr." + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "GNU General Public License, version 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1398766" + ], + "created_at": "2026-07-10T10:12:41.652768", + "updated_at": "2026-07-10T10:12:41.652768", + "url": "/v1/software/logos-the-logos-model-and-openlogos" +} diff --git a/site/public/v1/software/logparser/index.json b/site/public/v1/software/logparser/index.json new file mode 100644 index 000000000000..6749cc0b345c --- /dev/null +++ b/site/public/v1/software/logparser/index.json @@ -0,0 +1,19 @@ +{ + "id": 5552, + "slug": "logparser", + "name": "logparser", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6667869" + ], + "created_at": "2026-07-10T10:12:41.652768", + "updated_at": "2026-07-10T10:12:41.652768", + "url": "/v1/software/logparser" +} diff --git a/site/public/v1/software/logseq/index.json b/site/public/v1/software/logseq/index.json new file mode 100644 index 000000000000..ebc511a5e66d --- /dev/null +++ b/site/public/v1/software/logseq/index.json @@ -0,0 +1,30 @@ +{ + "id": 5553, + "slug": "logseq", + "name": "Logseq", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "iOS", + "macOS", + "Microsoft Windows" + ], + "programming_languages": [ + "Clojure", + "ClojureScript", + "TypeScript" + ], + "licenses": [], + "genres": [ + "note", + "knowledge base" + ], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116748304" + ], + "created_at": "2026-07-10T10:12:41.652768", + "updated_at": "2026-07-10T10:12:41.652768", + "url": "/v1/software/logseq" +} diff --git a/site/public/v1/software/logwatch/index.json b/site/public/v1/software/logwatch/index.json new file mode 100644 index 000000000000..32befdb72b69 --- /dev/null +++ b/site/public/v1/software/logwatch/index.json @@ -0,0 +1,19 @@ +{ + "id": 5554, + "slug": "logwatch", + "name": "Logwatch", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62852122" + ], + "created_at": "2026-07-10T10:12:41.653678", + "updated_at": "2026-07-10T10:12:41.653678", + "url": "/v1/software/logwatch" +} diff --git a/site/public/v1/software/lohit-nepali/index.json b/site/public/v1/software/lohit-nepali/index.json new file mode 100644 index 000000000000..69f94d609e8b --- /dev/null +++ b/site/public/v1/software/lohit-nepali/index.json @@ -0,0 +1,19 @@ +{ + "id": 5555, + "slug": "lohit-nepali", + "name": "lohit-nepali", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106102047" + ], + "created_at": "2026-07-10T10:12:41.653678", + "updated_at": "2026-07-10T10:12:41.653678", + "url": "/v1/software/lohit-nepali" +} diff --git a/site/public/v1/software/lojain/index.json b/site/public/v1/software/lojain/index.json new file mode 100644 index 000000000000..0340f9a2fb00 --- /dev/null +++ b/site/public/v1/software/lojain/index.json @@ -0,0 +1,21 @@ +{ + "id": 5556, + "slug": "lojain", + "name": "Lojain", + "release_date": null, + "developers": [ + "KIRA" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140354606" + ], + "created_at": "2026-07-10T10:12:41.653678", + "updated_at": "2026-07-10T10:12:41.653678", + "url": "/v1/software/lojain" +} diff --git a/site/public/v1/software/loki-network/index.json b/site/public/v1/software/loki-network/index.json new file mode 100644 index 000000000000..fe5aeb70b7b6 --- /dev/null +++ b/site/public/v1/software/loki-network/index.json @@ -0,0 +1,19 @@ +{ + "id": 5557, + "slug": "loki-network", + "name": "Loki Network", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q75663336" + ], + "created_at": "2026-07-10T10:12:41.654678", + "updated_at": "2026-07-10T10:12:41.654678", + "url": "/v1/software/loki-network" +} diff --git a/site/public/v1/software/lola-q105044096/index.json b/site/public/v1/software/lola-q105044096/index.json new file mode 100644 index 000000000000..dda52c584c0d --- /dev/null +++ b/site/public/v1/software/lola-q105044096/index.json @@ -0,0 +1,19 @@ +{ + "id": 5558, + "slug": "lola-q105044096", + "name": "LoLa", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105044096" + ], + "created_at": "2026-07-10T10:12:41.654678", + "updated_at": "2026-07-10T10:12:41.654678", + "url": "/v1/software/lola-q105044096" +} diff --git a/site/public/v1/software/lola-q30608689/index.json b/site/public/v1/software/lola-q30608689/index.json new file mode 100644 index 000000000000..801e68f1f6fc --- /dev/null +++ b/site/public/v1/software/lola-q30608689/index.json @@ -0,0 +1,23 @@ +{ + "id": 5559, + "slug": "lola-q30608689", + "name": "Lola", + "release_date": "2004-01-01", + "developers": [ + "Zero-G Ltd" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q30608689" + ], + "created_at": "2026-07-10T10:12:41.654678", + "updated_at": "2026-07-10T10:12:41.654678", + "url": "/v1/software/lola-q30608689" +} diff --git a/site/public/v1/software/lola/index.json b/site/public/v1/software/lola/index.json new file mode 100644 index 000000000000..595f4d60babe --- /dev/null +++ b/site/public/v1/software/lola/index.json @@ -0,0 +1,19 @@ +{ + "id": 5560, + "slug": "lola", + "name": "LOLA", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17162069" + ], + "created_at": "2026-07-10T10:12:41.655680", + "updated_at": "2026-07-10T10:12:41.655680", + "url": "/v1/software/lola" +} diff --git a/site/public/v1/software/loliwin/index.json b/site/public/v1/software/loliwin/index.json new file mode 100644 index 000000000000..e6482cd108d1 --- /dev/null +++ b/site/public/v1/software/loliwin/index.json @@ -0,0 +1,21 @@ +{ + "id": 5561, + "slug": "loliwin", + "name": "LoLiWin", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3257562" + ], + "created_at": "2026-07-10T10:12:41.655680", + "updated_at": "2026-07-10T10:12:41.655680", + "url": "/v1/software/loliwin" +} diff --git a/site/public/v1/software/lomoco/index.json b/site/public/v1/software/lomoco/index.json new file mode 100644 index 000000000000..370dc39ceb7e --- /dev/null +++ b/site/public/v1/software/lomoco/index.json @@ -0,0 +1,19 @@ +{ + "id": 5562, + "slug": "lomoco", + "name": "lomoco", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62859677" + ], + "created_at": "2026-07-10T10:12:41.655680", + "updated_at": "2026-07-10T10:12:41.655680", + "url": "/v1/software/lomoco" +} diff --git a/site/public/v1/software/loni-pipeline/index.json b/site/public/v1/software/loni-pipeline/index.json new file mode 100644 index 000000000000..d3cffc86872d --- /dev/null +++ b/site/public/v1/software/loni-pipeline/index.json @@ -0,0 +1,26 @@ +{ + "id": 5563, + "slug": "loni-pipeline", + "name": "LONI Pipeline", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [ + "Java" + ], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6459537" + ], + "created_at": "2026-07-10T10:12:41.655680", + "updated_at": "2026-07-10T10:12:41.655680", + "url": "/v1/software/loni-pipeline" +} diff --git a/site/public/v1/software/lookeen/index.json b/site/public/v1/software/lookeen/index.json new file mode 100644 index 000000000000..e8bc2cd9c9a8 --- /dev/null +++ b/site/public/v1/software/lookeen/index.json @@ -0,0 +1,21 @@ +{ + "id": 5564, + "slug": "lookeen", + "name": "Lookeen", + "release_date": null, + "developers": [ + "Axonic Informationssysteme GmbH" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1143608" + ], + "created_at": "2026-07-10T10:12:41.656679", + "updated_at": "2026-07-10T10:12:41.656679", + "url": "/v1/software/lookeen" +} diff --git a/site/public/v1/software/lookout-mobile-security/index.json b/site/public/v1/software/lookout-mobile-security/index.json new file mode 100644 index 000000000000..d3640464d634 --- /dev/null +++ b/site/public/v1/software/lookout-mobile-security/index.json @@ -0,0 +1,19 @@ +{ + "id": 5565, + "slug": "lookout-mobile-security", + "name": "Lookout Mobile Security", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1869704" + ], + "created_at": "2026-07-10T10:12:41.656679", + "updated_at": "2026-07-10T10:12:41.656679", + "url": "/v1/software/lookout-mobile-security" +} diff --git a/site/public/v1/software/looloo/index.json b/site/public/v1/software/looloo/index.json new file mode 100644 index 000000000000..62a938e72e70 --- /dev/null +++ b/site/public/v1/software/looloo/index.json @@ -0,0 +1,19 @@ +{ + "id": 5566, + "slug": "looloo", + "name": "looloo", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16927886" + ], + "created_at": "2026-07-10T10:12:41.656679", + "updated_at": "2026-07-10T10:12:41.656679", + "url": "/v1/software/looloo" +} diff --git a/site/public/v1/software/loops/index.json b/site/public/v1/software/loops/index.json new file mode 100644 index 000000000000..ad4173b98f6f --- /dev/null +++ b/site/public/v1/software/loops/index.json @@ -0,0 +1,19 @@ +{ + "id": 5567, + "slug": "loops", + "name": "Loops", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139570758" + ], + "created_at": "2026-07-10T10:12:41.657680", + "updated_at": "2026-07-10T10:12:41.657680", + "url": "/v1/software/loops" +} diff --git a/site/public/v1/software/loqu8/index.json b/site/public/v1/software/loqu8/index.json new file mode 100644 index 000000000000..e4bce197d544 --- /dev/null +++ b/site/public/v1/software/loqu8/index.json @@ -0,0 +1,21 @@ +{ + "id": 5568, + "slug": "loqu8", + "name": "Loqu8", + "release_date": "2008-01-01", + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6678677" + ], + "created_at": "2026-07-10T10:12:41.657680", + "updated_at": "2026-07-10T10:12:41.657680", + "url": "/v1/software/loqu8" +} diff --git a/site/public/v1/software/los-angeles-strategic-extraction-and-restoration-zones/index.json b/site/public/v1/software/los-angeles-strategic-extraction-and-restoration-zones/index.json new file mode 100644 index 000000000000..9b1496799e06 --- /dev/null +++ b/site/public/v1/software/los-angeles-strategic-extraction-and-restoration-zones/index.json @@ -0,0 +1,22 @@ +{ + "id": 5569, + "slug": "los-angeles-strategic-extraction-and-restoration-zones", + "name": "Los Angeles’ Strategic Extraction and Restoration zones", + "release_date": null, + "developers": [ + "Los Angeles Police Department", + "Central Intelligence Agency" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q73045496" + ], + "created_at": "2026-07-10T10:12:41.657680", + "updated_at": "2026-07-10T10:12:41.657680", + "url": "/v1/software/los-angeles-strategic-extraction-and-restoration-zones" +} diff --git a/site/public/v1/software/lotus-1-2-3-for-unix/index.json b/site/public/v1/software/lotus-1-2-3-for-unix/index.json new file mode 100644 index 000000000000..ab9b60237b03 --- /dev/null +++ b/site/public/v1/software/lotus-1-2-3-for-unix/index.json @@ -0,0 +1,23 @@ +{ + "id": 5570, + "slug": "lotus-1-2-3-for-unix", + "name": "Lotus 1-2-3 for UNIX", + "release_date": null, + "developers": [ + "Lotus Software" + ], + "publishers": [], + "operating_systems": [ + "Solaris" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q56557815" + ], + "created_at": "2026-07-10T10:12:41.658679", + "updated_at": "2026-07-10T10:12:41.658679", + "url": "/v1/software/lotus-1-2-3-for-unix" +} diff --git a/site/public/v1/software/lotus-agenda/index.json b/site/public/v1/software/lotus-agenda/index.json new file mode 100644 index 000000000000..2f6ec9a7ef02 --- /dev/null +++ b/site/public/v1/software/lotus-agenda/index.json @@ -0,0 +1,23 @@ +{ + "id": 5571, + "slug": "lotus-agenda", + "name": "Lotus Agenda", + "release_date": null, + "developers": [ + "Lotus Software" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6685131" + ], + "created_at": "2026-07-10T10:12:41.658679", + "updated_at": "2026-07-10T10:12:41.658679", + "url": "/v1/software/lotus-agenda" +} diff --git a/site/public/v1/software/lotus-impress/index.json b/site/public/v1/software/lotus-impress/index.json new file mode 100644 index 000000000000..3662869e78da --- /dev/null +++ b/site/public/v1/software/lotus-impress/index.json @@ -0,0 +1,19 @@ +{ + "id": 5572, + "slug": "lotus-impress", + "name": "Lotus Impress", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6685173" + ], + "created_at": "2026-07-10T10:12:41.658679", + "updated_at": "2026-07-10T10:12:41.658679", + "url": "/v1/software/lotus-impress" +} diff --git a/site/public/v1/software/lotus-jazz/index.json b/site/public/v1/software/lotus-jazz/index.json new file mode 100644 index 000000000000..b53916c2944e --- /dev/null +++ b/site/public/v1/software/lotus-jazz/index.json @@ -0,0 +1,19 @@ +{ + "id": 5573, + "slug": "lotus-jazz", + "name": "Lotus Jazz", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3260080" + ], + "created_at": "2026-07-10T10:12:41.659679", + "updated_at": "2026-07-10T10:12:41.659679", + "url": "/v1/software/lotus-jazz" +} diff --git a/site/public/v1/software/lotus-magellan/index.json b/site/public/v1/software/lotus-magellan/index.json new file mode 100644 index 000000000000..21a4ce69c5ac --- /dev/null +++ b/site/public/v1/software/lotus-magellan/index.json @@ -0,0 +1,21 @@ +{ + "id": 5574, + "slug": "lotus-magellan", + "name": "Lotus Magellan", + "release_date": null, + "developers": [ + "Lotus Software" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1871255" + ], + "created_at": "2026-07-10T10:12:41.659679", + "updated_at": "2026-07-10T10:12:41.659679", + "url": "/v1/software/lotus-magellan" +} diff --git a/site/public/v1/software/lotus-manuscript/index.json b/site/public/v1/software/lotus-manuscript/index.json new file mode 100644 index 000000000000..c853d7d117a4 --- /dev/null +++ b/site/public/v1/software/lotus-manuscript/index.json @@ -0,0 +1,23 @@ +{ + "id": 5575, + "slug": "lotus-manuscript", + "name": "Lotus Manuscript", + "release_date": "1986-01-01", + "developers": [ + "Lotus Software" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3287097" + ], + "created_at": "2026-07-10T10:12:41.659679", + "updated_at": "2026-07-10T10:12:41.659679", + "url": "/v1/software/lotus-manuscript" +} diff --git a/site/public/v1/software/lotus-notes-vip/index.json b/site/public/v1/software/lotus-notes-vip/index.json new file mode 100644 index 000000000000..8749a33dde8b --- /dev/null +++ b/site/public/v1/software/lotus-notes-vip/index.json @@ -0,0 +1,21 @@ +{ + "id": 5576, + "slug": "lotus-notes-vip", + "name": "Lotus Notes VIP", + "release_date": null, + "developers": [ + "Lotus Software" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q56557816" + ], + "created_at": "2026-07-10T10:12:41.659679", + "updated_at": "2026-07-10T10:12:41.659679", + "url": "/v1/software/lotus-notes-vip" +} diff --git a/site/public/v1/software/lotus-symphony/index.json b/site/public/v1/software/lotus-symphony/index.json new file mode 100644 index 000000000000..bdc62ede5122 --- /dev/null +++ b/site/public/v1/software/lotus-symphony/index.json @@ -0,0 +1,21 @@ +{ + "id": 5577, + "slug": "lotus-symphony", + "name": "Lotus Symphony", + "release_date": "1986-01-01", + "developers": [ + "Lotus Software" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q13360160" + ], + "created_at": "2026-07-10T10:12:41.660679", + "updated_at": "2026-07-10T10:12:41.660679", + "url": "/v1/software/lotus-symphony" +} diff --git a/site/public/v1/software/lp-solve/index.json b/site/public/v1/software/lp-solve/index.json new file mode 100644 index 000000000000..b1aca9f67a72 --- /dev/null +++ b/site/public/v1/software/lp-solve/index.json @@ -0,0 +1,19 @@ +{ + "id": 5578, + "slug": "lp-solve", + "name": "Lp solve", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127102999" + ], + "created_at": "2026-07-10T10:12:41.660679", + "updated_at": "2026-07-10T10:12:41.660679", + "url": "/v1/software/lp-solve" +} diff --git a/site/public/v1/software/lstu/index.json b/site/public/v1/software/lstu/index.json new file mode 100644 index 000000000000..ad96c4857fe1 --- /dev/null +++ b/site/public/v1/software/lstu/index.json @@ -0,0 +1,19 @@ +{ + "id": 5579, + "slug": "lstu", + "name": "LSTU", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q98732134" + ], + "created_at": "2026-07-10T10:12:41.661763", + "updated_at": "2026-07-10T10:12:41.661763", + "url": "/v1/software/lstu" +} diff --git a/site/public/v1/software/lsuio/index.json b/site/public/v1/software/lsuio/index.json new file mode 100644 index 000000000000..a439ad999e93 --- /dev/null +++ b/site/public/v1/software/lsuio/index.json @@ -0,0 +1,19 @@ +{ + "id": 5580, + "slug": "lsuio", + "name": "lsuio", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065592" + ], + "created_at": "2026-07-10T10:12:41.661763", + "updated_at": "2026-07-10T10:12:41.661763", + "url": "/v1/software/lsuio" +} diff --git a/site/public/v1/software/lsyncd/index.json b/site/public/v1/software/lsyncd/index.json new file mode 100644 index 000000000000..919010e2e3b7 --- /dev/null +++ b/site/public/v1/software/lsyncd/index.json @@ -0,0 +1,19 @@ +{ + "id": 5581, + "slug": "lsyncd", + "name": "Lsyncd", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62851974" + ], + "created_at": "2026-07-10T10:12:41.661763", + "updated_at": "2026-07-10T10:12:41.661763", + "url": "/v1/software/lsyncd" +} diff --git a/site/public/v1/software/lte440/index.json b/site/public/v1/software/lte440/index.json new file mode 100644 index 000000000000..a5e90e733102 --- /dev/null +++ b/site/public/v1/software/lte440/index.json @@ -0,0 +1,19 @@ +{ + "id": 5582, + "slug": "lte440", + "name": "LTE440", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138508748" + ], + "created_at": "2026-07-10T10:12:41.661763", + "updated_at": "2026-07-10T10:12:41.661763", + "url": "/v1/software/lte440" +} diff --git a/site/public/v1/software/ltools/index.json b/site/public/v1/software/ltools/index.json new file mode 100644 index 000000000000..8577e7b517fb --- /dev/null +++ b/site/public/v1/software/ltools/index.json @@ -0,0 +1,19 @@ +{ + "id": 5583, + "slug": "ltools", + "name": "LTOOLS", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6460188" + ], + "created_at": "2026-07-10T10:12:41.662743", + "updated_at": "2026-07-10T10:12:41.662743", + "url": "/v1/software/ltools" +} diff --git a/site/public/v1/software/ltx-2/index.json b/site/public/v1/software/ltx-2/index.json new file mode 100644 index 000000000000..e70bc51cdf17 --- /dev/null +++ b/site/public/v1/software/ltx-2/index.json @@ -0,0 +1,19 @@ +{ + "id": 5584, + "slug": "ltx-2", + "name": "LTX-2", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137360122" + ], + "created_at": "2026-07-10T10:12:41.662743", + "updated_at": "2026-07-10T10:12:41.662743", + "url": "/v1/software/ltx-2" +} diff --git a/site/public/v1/software/ltx-studio/index.json b/site/public/v1/software/ltx-studio/index.json new file mode 100644 index 000000000000..7a92092da758 --- /dev/null +++ b/site/public/v1/software/ltx-studio/index.json @@ -0,0 +1,19 @@ +{ + "id": 5585, + "slug": "ltx-studio", + "name": "LTX Studio", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136564421" + ], + "created_at": "2026-07-10T10:12:41.663759", + "updated_at": "2026-07-10T10:12:41.663759", + "url": "/v1/software/ltx-studio" +} diff --git a/site/public/v1/software/lucidlife/index.json b/site/public/v1/software/lucidlife/index.json new file mode 100644 index 000000000000..186263487e8c --- /dev/null +++ b/site/public/v1/software/lucidlife/index.json @@ -0,0 +1,19 @@ +{ + "id": 5586, + "slug": "lucidlife", + "name": "lucidlife", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q88501690" + ], + "created_at": "2026-07-10T10:12:41.663759", + "updated_at": "2026-07-10T10:12:41.663759", + "url": "/v1/software/lucidlife" +} diff --git a/site/public/v1/software/lucidworks/index.json b/site/public/v1/software/lucidworks/index.json new file mode 100644 index 000000000000..236ebd0422ae --- /dev/null +++ b/site/public/v1/software/lucidworks/index.json @@ -0,0 +1,21 @@ +{ + "id": 5587, + "slug": "lucidworks", + "name": "LucidWorks", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Java" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6696906" + ], + "created_at": "2026-07-10T10:12:41.663759", + "updated_at": "2026-07-10T10:12:41.663759", + "url": "/v1/software/lucidworks" +} diff --git a/site/public/v1/software/luit/index.json b/site/public/v1/software/luit/index.json new file mode 100644 index 000000000000..a58f6e9cfaf2 --- /dev/null +++ b/site/public/v1/software/luit/index.json @@ -0,0 +1,23 @@ +{ + "id": 5588, + "slug": "luit", + "name": "luit", + "release_date": null, + "developers": [ + "Thomas E. Dickey" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6701368" + ], + "created_at": "2026-07-10T10:12:41.663759", + "updated_at": "2026-07-10T10:12:41.663759", + "url": "/v1/software/luit" +} diff --git a/site/public/v1/software/lulu-app/index.json b/site/public/v1/software/lulu-app/index.json new file mode 100644 index 000000000000..80258c3633c7 --- /dev/null +++ b/site/public/v1/software/lulu-app/index.json @@ -0,0 +1,19 @@ +{ + "id": 5589, + "slug": "lulu-app", + "name": "Lulu (app)", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q15242322" + ], + "created_at": "2026-07-10T10:12:41.664739", + "updated_at": "2026-07-10T10:12:41.664739", + "url": "/v1/software/lulu-app" +} diff --git a/site/public/v1/software/luma-ai-dream-machine/index.json b/site/public/v1/software/luma-ai-dream-machine/index.json new file mode 100644 index 000000000000..d95ffa378227 --- /dev/null +++ b/site/public/v1/software/luma-ai-dream-machine/index.json @@ -0,0 +1,19 @@ +{ + "id": 5590, + "slug": "luma-ai-dream-machine", + "name": "Luma AI (Dream Machine)", + "release_date": "2024-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q133140937" + ], + "created_at": "2026-07-10T10:12:41.664739", + "updated_at": "2026-07-10T10:12:41.664739", + "url": "/v1/software/luma-ai-dream-machine" +} diff --git a/site/public/v1/software/luma/index.json b/site/public/v1/software/luma/index.json new file mode 100644 index 000000000000..263e88ee3a21 --- /dev/null +++ b/site/public/v1/software/luma/index.json @@ -0,0 +1,23 @@ +{ + "id": 5591, + "slug": "luma", + "name": "LUMA", + "release_date": "2022-11-10", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [ + "puzzle video game" + ], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126188166" + ], + "created_at": "2026-07-10T10:12:41.664739", + "updated_at": "2026-07-10T10:12:41.664739", + "url": "/v1/software/luma" +} diff --git a/site/public/v1/software/lumina-desktop/index.json b/site/public/v1/software/lumina-desktop/index.json new file mode 100644 index 000000000000..696861074767 --- /dev/null +++ b/site/public/v1/software/lumina-desktop/index.json @@ -0,0 +1,21 @@ +{ + "id": 5592, + "slug": "lumina-desktop", + "name": "Lumina Desktop", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "3-clause BSD License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q19599479" + ], + "created_at": "2026-07-10T10:12:41.665790", + "updated_at": "2026-07-10T10:12:41.665790", + "url": "/v1/software/lumina-desktop" +} diff --git a/site/public/v1/software/luminar-neo/index.json b/site/public/v1/software/luminar-neo/index.json new file mode 100644 index 000000000000..96f898e81813 --- /dev/null +++ b/site/public/v1/software/luminar-neo/index.json @@ -0,0 +1,19 @@ +{ + "id": 5593, + "slug": "luminar-neo", + "name": "Luminar Neo", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q48610530" + ], + "created_at": "2026-07-10T10:12:41.665790", + "updated_at": "2026-07-10T10:12:41.665790", + "url": "/v1/software/luminar-neo" +} diff --git a/site/public/v1/software/luminy/index.json b/site/public/v1/software/luminy/index.json new file mode 100644 index 000000000000..f3da683bc527 --- /dev/null +++ b/site/public/v1/software/luminy/index.json @@ -0,0 +1,23 @@ +{ + "id": 5594, + "slug": "luminy", + "name": "Luminy", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "TypeScript" + ], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139902812" + ], + "created_at": "2026-07-10T10:12:41.665790", + "updated_at": "2026-07-10T10:12:41.665790", + "url": "/v1/software/luminy" +} diff --git a/site/public/v1/software/lumion/index.json b/site/public/v1/software/lumion/index.json new file mode 100644 index 000000000000..5408e65bbdbd --- /dev/null +++ b/site/public/v1/software/lumion/index.json @@ -0,0 +1,21 @@ +{ + "id": 5595, + "slug": "lumion", + "name": "Lumion", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q55729443" + ], + "created_at": "2026-07-10T10:12:41.666674", + "updated_at": "2026-07-10T10:12:41.666674", + "url": "/v1/software/lumion" +} diff --git a/site/public/v1/software/lumo/index.json b/site/public/v1/software/lumo/index.json new file mode 100644 index 000000000000..73636870a7bf --- /dev/null +++ b/site/public/v1/software/lumo/index.json @@ -0,0 +1,21 @@ +{ + "id": 5596, + "slug": "lumo", + "name": "Lumo", + "release_date": null, + "developers": [ + "Proton" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136825372" + ], + "created_at": "2026-07-10T10:12:41.666674", + "updated_at": "2026-07-10T10:12:41.666674", + "url": "/v1/software/lumo" +} diff --git a/site/public/v1/software/luna-modeler/index.json b/site/public/v1/software/luna-modeler/index.json new file mode 100644 index 000000000000..a4806e61b30b --- /dev/null +++ b/site/public/v1/software/luna-modeler/index.json @@ -0,0 +1,24 @@ +{ + "id": 5597, + "slug": "luna-modeler", + "name": "Luna Modeler", + "release_date": null, + "developers": [ + "Ideamerit" + ], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134959133" + ], + "created_at": "2026-07-10T10:12:41.666674", + "updated_at": "2026-07-10T10:12:41.666674", + "url": "/v1/software/luna-modeler" +} diff --git a/site/public/v1/software/luola/index.json b/site/public/v1/software/luola/index.json new file mode 100644 index 000000000000..29c41465f915 --- /dev/null +++ b/site/public/v1/software/luola/index.json @@ -0,0 +1,19 @@ +{ + "id": 5598, + "slug": "luola", + "name": "Luola", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62863682" + ], + "created_at": "2026-07-10T10:12:41.667682", + "updated_at": "2026-07-10T10:12:41.667682", + "url": "/v1/software/luola" +} diff --git a/site/public/v1/software/lura/index.json b/site/public/v1/software/lura/index.json new file mode 100644 index 000000000000..400946dbf89f --- /dev/null +++ b/site/public/v1/software/lura/index.json @@ -0,0 +1,28 @@ +{ + "id": 5599, + "slug": "lura", + "name": "Lura", + "release_date": null, + "developers": [ + "Linux Foundation" + ], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [ + "Go" + ], + "licenses": [ + "Apache Software License 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137591006" + ], + "created_at": "2026-07-10T10:12:41.667682", + "updated_at": "2026-07-10T10:12:41.667682", + "url": "/v1/software/lura" +} diff --git a/site/public/v1/software/lusas/index.json b/site/public/v1/software/lusas/index.json new file mode 100644 index 000000000000..06f8bfe77fee --- /dev/null +++ b/site/public/v1/software/lusas/index.json @@ -0,0 +1,21 @@ +{ + "id": 5600, + "slug": "lusas", + "name": "LUSAS", + "release_date": null, + "developers": [ + "LUSAS" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6460271" + ], + "created_at": "2026-07-10T10:12:41.667682", + "updated_at": "2026-07-10T10:12:41.667682", + "url": "/v1/software/lusas" +} diff --git a/site/public/v1/software/lush/index.json b/site/public/v1/software/lush/index.json new file mode 100644 index 000000000000..71fc1a1401e6 --- /dev/null +++ b/site/public/v1/software/lush/index.json @@ -0,0 +1,19 @@ +{ + "id": 5601, + "slug": "lush", + "name": "Lush", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10321016" + ], + "created_at": "2026-07-10T10:12:41.667682", + "updated_at": "2026-07-10T10:12:41.667682", + "url": "/v1/software/lush" +} diff --git a/site/public/v1/software/lutris-technologies/index.json b/site/public/v1/software/lutris-technologies/index.json new file mode 100644 index 000000000000..9d64516f01b8 --- /dev/null +++ b/site/public/v1/software/lutris-technologies/index.json @@ -0,0 +1,19 @@ +{ + "id": 5602, + "slug": "lutris-technologies", + "name": "Lutris Technologies", + "release_date": "1999-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6705924" + ], + "created_at": "2026-07-10T10:12:41.668679", + "updated_at": "2026-07-10T10:12:41.668679", + "url": "/v1/software/lutris-technologies" +} diff --git a/site/public/v1/software/luvit/index.json b/site/public/v1/software/luvit/index.json new file mode 100644 index 000000000000..d54ea85fa38d --- /dev/null +++ b/site/public/v1/software/luvit/index.json @@ -0,0 +1,21 @@ +{ + "id": 5603, + "slug": "luvit", + "name": "luvit", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Apache License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975143" + ], + "created_at": "2026-07-10T10:12:41.668679", + "updated_at": "2026-07-10T10:12:41.668679", + "url": "/v1/software/luvit" +} diff --git a/site/public/v1/software/luxalgo/index.json b/site/public/v1/software/luxalgo/index.json new file mode 100644 index 000000000000..58df13321304 --- /dev/null +++ b/site/public/v1/software/luxalgo/index.json @@ -0,0 +1,19 @@ +{ + "id": 5604, + "slug": "luxalgo", + "name": "LuxAlgo", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116298540" + ], + "created_at": "2026-07-10T10:12:41.668679", + "updated_at": "2026-07-10T10:12:41.668679", + "url": "/v1/software/luxalgo" +} diff --git a/site/public/v1/software/luxo-ai/index.json b/site/public/v1/software/luxo-ai/index.json new file mode 100644 index 000000000000..63675164ec75 --- /dev/null +++ b/site/public/v1/software/luxo-ai/index.json @@ -0,0 +1,19 @@ +{ + "id": 5605, + "slug": "luxo-ai", + "name": "Luxo AI", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140356526" + ], + "created_at": "2026-07-10T10:12:41.669679", + "updated_at": "2026-07-10T10:12:41.669679", + "url": "/v1/software/luxo-ai" +} diff --git a/site/public/v1/software/lwm/index.json b/site/public/v1/software/lwm/index.json new file mode 100644 index 000000000000..da74156d5ea3 --- /dev/null +++ b/site/public/v1/software/lwm/index.json @@ -0,0 +1,19 @@ +{ + "id": 5606, + "slug": "lwm", + "name": "lwm", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62851766" + ], + "created_at": "2026-07-10T10:12:41.669679", + "updated_at": "2026-07-10T10:12:41.669679", + "url": "/v1/software/lwm" +} diff --git a/site/public/v1/software/lxbeams/index.json b/site/public/v1/software/lxbeams/index.json new file mode 100644 index 000000000000..d66e8806bab7 --- /dev/null +++ b/site/public/v1/software/lxbeams/index.json @@ -0,0 +1,21 @@ +{ + "id": 5607, + "slug": "lxbeams", + "name": "LXBeams", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "macOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q66023295" + ], + "created_at": "2026-07-10T10:12:41.669679", + "updated_at": "2026-07-10T10:12:41.669679", + "url": "/v1/software/lxbeams" +} diff --git a/site/public/v1/software/lxcfs/index.json b/site/public/v1/software/lxcfs/index.json new file mode 100644 index 000000000000..525242de8545 --- /dev/null +++ b/site/public/v1/software/lxcfs/index.json @@ -0,0 +1,21 @@ +{ + "id": 5608, + "slug": "lxcfs", + "name": "lxcfs", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Apache License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975144" + ], + "created_at": "2026-07-10T10:12:41.669679", + "updated_at": "2026-07-10T10:12:41.669679", + "url": "/v1/software/lxcfs" +} diff --git a/site/public/v1/software/lxmf/index.json b/site/public/v1/software/lxmf/index.json new file mode 100644 index 000000000000..1762c2e5e168 --- /dev/null +++ b/site/public/v1/software/lxmf/index.json @@ -0,0 +1,23 @@ +{ + "id": 5609, + "slug": "lxmf", + "name": "LXMF", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Python" + ], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q114595827" + ], + "created_at": "2026-07-10T10:12:41.670679", + "updated_at": "2026-07-10T10:12:41.670679", + "url": "/v1/software/lxmf" +} diff --git a/site/public/v1/software/lxqt-common/index.json b/site/public/v1/software/lxqt-common/index.json new file mode 100644 index 000000000000..05df84af3fe5 --- /dev/null +++ b/site/public/v1/software/lxqt-common/index.json @@ -0,0 +1,19 @@ +{ + "id": 5610, + "slug": "lxqt-common", + "name": "lxqt-common", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975148" + ], + "created_at": "2026-07-10T10:12:41.670679", + "updated_at": "2026-07-10T10:12:41.670679", + "url": "/v1/software/lxqt-common" +} diff --git a/site/public/v1/software/lxqt-l10n/index.json b/site/public/v1/software/lxqt-l10n/index.json new file mode 100644 index 000000000000..22689cdaf36a --- /dev/null +++ b/site/public/v1/software/lxqt-l10n/index.json @@ -0,0 +1,19 @@ +{ + "id": 5611, + "slug": "lxqt-l10n", + "name": "lxqt-l10n", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975151" + ], + "created_at": "2026-07-10T10:12:41.670679", + "updated_at": "2026-07-10T10:12:41.670679", + "url": "/v1/software/lxqt-l10n" +} diff --git a/site/public/v1/software/lxrun/index.json b/site/public/v1/software/lxrun/index.json new file mode 100644 index 000000000000..7b30aac14572 --- /dev/null +++ b/site/public/v1/software/lxrun/index.json @@ -0,0 +1,25 @@ +{ + "id": 5612, + "slug": "lxrun", + "name": "lxrun", + "release_date": "1997-01-01", + "developers": [ + "Sun Microsystems" + ], + "publishers": [], + "operating_systems": [ + "UnixWare" + ], + "programming_languages": [], + "licenses": [ + "Mozilla Public License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4043281" + ], + "created_at": "2026-07-10T10:12:41.671740", + "updated_at": "2026-07-10T10:12:41.671740", + "url": "/v1/software/lxrun" +} diff --git a/site/public/v1/software/lynks-create-explore-share/index.json b/site/public/v1/software/lynks-create-explore-share/index.json new file mode 100644 index 000000000000..6fb0bda5a0cf --- /dev/null +++ b/site/public/v1/software/lynks-create-explore-share/index.json @@ -0,0 +1,19 @@ +{ + "id": 5613, + "slug": "lynks-create-explore-share", + "name": "Lynks - Create Explore Share", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085092" + ], + "created_at": "2026-07-10T10:12:41.671740", + "updated_at": "2026-07-10T10:12:41.671740", + "url": "/v1/software/lynks-create-explore-share" +} diff --git a/site/public/v1/software/lynks/index.json b/site/public/v1/software/lynks/index.json new file mode 100644 index 000000000000..b82415d6459a --- /dev/null +++ b/site/public/v1/software/lynks/index.json @@ -0,0 +1,19 @@ +{ + "id": 5614, + "slug": "lynks", + "name": "Lynks", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085091" + ], + "created_at": "2026-07-10T10:12:41.671740", + "updated_at": "2026-07-10T10:12:41.671740", + "url": "/v1/software/lynks" +} diff --git a/site/public/v1/software/lynx-mosa-ic/index.json b/site/public/v1/software/lynx-mosa-ic/index.json new file mode 100644 index 000000000000..3d8aa2fc6f07 --- /dev/null +++ b/site/public/v1/software/lynx-mosa-ic/index.json @@ -0,0 +1,19 @@ +{ + "id": 5615, + "slug": "lynx-mosa-ic", + "name": "LYNX MOSA.ic", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109547083" + ], + "created_at": "2026-07-10T10:12:41.672779", + "updated_at": "2026-07-10T10:12:41.672779", + "url": "/v1/software/lynx-mosa-ic" +} diff --git a/site/public/v1/software/lyra/index.json b/site/public/v1/software/lyra/index.json new file mode 100644 index 000000000000..facc85ee3785 --- /dev/null +++ b/site/public/v1/software/lyra/index.json @@ -0,0 +1,19 @@ +{ + "id": 5616, + "slug": "lyra", + "name": "Lyra", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085093" + ], + "created_at": "2026-07-10T10:12:41.672779", + "updated_at": "2026-07-10T10:12:41.672779", + "url": "/v1/software/lyra" +} diff --git a/site/public/v1/software/lyteshot/index.json b/site/public/v1/software/lyteshot/index.json new file mode 100644 index 000000000000..42a97e6ecfb8 --- /dev/null +++ b/site/public/v1/software/lyteshot/index.json @@ -0,0 +1,21 @@ +{ + "id": 5617, + "slug": "lyteshot", + "name": "LyteShot", + "release_date": "2015-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [ + "first-person shooter" + ], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18811573" + ], + "created_at": "2026-07-10T10:12:41.672779", + "updated_at": "2026-07-10T10:12:41.672779", + "url": "/v1/software/lyteshot" +} diff --git a/site/public/v1/software/lzf/index.json b/site/public/v1/software/lzf/index.json new file mode 100644 index 000000000000..0614fab8821b --- /dev/null +++ b/site/public/v1/software/lzf/index.json @@ -0,0 +1,19 @@ +{ + "id": 5618, + "slug": "lzf", + "name": "LZF", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11752392" + ], + "created_at": "2026-07-10T10:12:41.673682", + "updated_at": "2026-07-10T10:12:41.673682", + "url": "/v1/software/lzf" +} diff --git a/site/public/v1/software/m-cas/index.json b/site/public/v1/software/m-cas/index.json new file mode 100644 index 000000000000..7d274d804ea2 --- /dev/null +++ b/site/public/v1/software/m-cas/index.json @@ -0,0 +1,22 @@ +{ + "id": 5619, + "slug": "m-cas", + "name": "M-CAS", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "iOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22123598" + ], + "created_at": "2026-07-10T10:12:41.673682", + "updated_at": "2026-07-10T10:12:41.673682", + "url": "/v1/software/m-cas" +} diff --git a/site/public/v1/software/m-e-doc/index.json b/site/public/v1/software/m-e-doc/index.json new file mode 100644 index 000000000000..4bea5af11f14 --- /dev/null +++ b/site/public/v1/software/m-e-doc/index.json @@ -0,0 +1,21 @@ +{ + "id": 5620, + "slug": "m-e-doc", + "name": "M.E.Doc", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q34202855" + ], + "created_at": "2026-07-10T10:12:41.673682", + "updated_at": "2026-07-10T10:12:41.673682", + "url": "/v1/software/m-e-doc" +} diff --git a/site/public/v1/software/m-indicator/index.json b/site/public/v1/software/m-indicator/index.json new file mode 100644 index 000000000000..f622be79bc46 --- /dev/null +++ b/site/public/v1/software/m-indicator/index.json @@ -0,0 +1,19 @@ +{ + "id": 5621, + "slug": "m-indicator", + "name": "M-Indicator", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28957087" + ], + "created_at": "2026-07-10T10:12:41.674682", + "updated_at": "2026-07-10T10:12:41.674682", + "url": "/v1/software/m-indicator" +} diff --git a/site/public/v1/software/m-messenger/index.json b/site/public/v1/software/m-messenger/index.json new file mode 100644 index 000000000000..dc85ad631bef --- /dev/null +++ b/site/public/v1/software/m-messenger/index.json @@ -0,0 +1,19 @@ +{ + "id": 5622, + "slug": "m-messenger", + "name": "M+ Messenger", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q96376915" + ], + "created_at": "2026-07-10T10:12:41.674682", + "updated_at": "2026-07-10T10:12:41.674682", + "url": "/v1/software/m-messenger" +} diff --git a/site/public/v1/software/m-netmail/index.json b/site/public/v1/software/m-netmail/index.json new file mode 100644 index 000000000000..339dffb13361 --- /dev/null +++ b/site/public/v1/software/m-netmail/index.json @@ -0,0 +1,22 @@ +{ + "id": 5623, + "slug": "m-netmail", + "name": "M+NetMail", + "release_date": null, + "developers": [ + "Messaging Architects", + "Novell" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6711924" + ], + "created_at": "2026-07-10T10:12:41.674682", + "updated_at": "2026-07-10T10:12:41.674682", + "url": "/v1/software/m-netmail" +} diff --git a/site/public/v1/software/m2m/index.json b/site/public/v1/software/m2m/index.json new file mode 100644 index 000000000000..7fa0267be25a --- /dev/null +++ b/site/public/v1/software/m2m/index.json @@ -0,0 +1,19 @@ +{ + "id": 5624, + "slug": "m2m", + "name": "M2M", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6713727" + ], + "created_at": "2026-07-10T10:12:41.675681", + "updated_at": "2026-07-10T10:12:41.675681", + "url": "/v1/software/m2m" +} diff --git a/site/public/v1/software/maas/index.json b/site/public/v1/software/maas/index.json new file mode 100644 index 000000000000..b0a15a045679 --- /dev/null +++ b/site/public/v1/software/maas/index.json @@ -0,0 +1,19 @@ +{ + "id": 5625, + "slug": "maas", + "name": "MAAS", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q29051922" + ], + "created_at": "2026-07-10T10:12:41.675681", + "updated_at": "2026-07-10T10:12:41.675681", + "url": "/v1/software/maas" +} diff --git a/site/public/v1/software/mac-65/index.json b/site/public/v1/software/mac-65/index.json new file mode 100644 index 000000000000..47036083fcb0 --- /dev/null +++ b/site/public/v1/software/mac-65/index.json @@ -0,0 +1,21 @@ +{ + "id": 5626, + "slug": "mac-65", + "name": "MAC/65", + "release_date": null, + "developers": [ + "Optimized Systems Software" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6714040" + ], + "created_at": "2026-07-10T10:12:41.675681", + "updated_at": "2026-07-10T10:12:41.675681", + "url": "/v1/software/mac-65" +} diff --git a/site/public/v1/software/mac-box-set/index.json b/site/public/v1/software/mac-box-set/index.json new file mode 100644 index 000000000000..9066d3693f8a --- /dev/null +++ b/site/public/v1/software/mac-box-set/index.json @@ -0,0 +1,21 @@ +{ + "id": 5627, + "slug": "mac-box-set", + "name": "Mac Box Set", + "release_date": null, + "developers": [ + "Apple Inc." + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q23679949" + ], + "created_at": "2026-07-10T10:12:41.675681", + "updated_at": "2026-07-10T10:12:41.675681", + "url": "/v1/software/mac-box-set" +} diff --git a/site/public/v1/software/mac-data-recovery-guru/index.json b/site/public/v1/software/mac-data-recovery-guru/index.json new file mode 100644 index 000000000000..382cdabed476 --- /dev/null +++ b/site/public/v1/software/mac-data-recovery-guru/index.json @@ -0,0 +1,19 @@ +{ + "id": 5628, + "slug": "mac-data-recovery-guru", + "name": "Mac Data Recovery Guru", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18705943" + ], + "created_at": "2026-07-10T10:12:41.676745", + "updated_at": "2026-07-10T10:12:41.676745", + "url": "/v1/software/mac-data-recovery-guru" +} diff --git a/site/public/v1/software/mac-on-mac/index.json b/site/public/v1/software/mac-on-mac/index.json new file mode 100644 index 000000000000..76ca01cf4298 --- /dev/null +++ b/site/public/v1/software/mac-on-mac/index.json @@ -0,0 +1,19 @@ +{ + "id": 5629, + "slug": "mac-on-mac", + "name": "Mac-on-Mac", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6721691" + ], + "created_at": "2026-07-10T10:12:41.676745", + "updated_at": "2026-07-10T10:12:41.676745", + "url": "/v1/software/mac-on-mac" +} diff --git a/site/public/v1/software/mac-os-runtime-for-java/index.json b/site/public/v1/software/mac-os-runtime-for-java/index.json new file mode 100644 index 000000000000..3a5eb5d8863b --- /dev/null +++ b/site/public/v1/software/mac-os-runtime-for-java/index.json @@ -0,0 +1,21 @@ +{ + "id": 5630, + "slug": "mac-os-runtime-for-java", + "name": "Mac OS Runtime for Java", + "release_date": null, + "developers": [ + "Apple Inc." + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6722341" + ], + "created_at": "2026-07-10T10:12:41.676745", + "updated_at": "2026-07-10T10:12:41.676745", + "url": "/v1/software/mac-os-runtime-for-java" +} diff --git a/site/public/v1/software/mac-os-x-server-10-4/index.json b/site/public/v1/software/mac-os-x-server-10-4/index.json new file mode 100644 index 000000000000..00693d1b6062 --- /dev/null +++ b/site/public/v1/software/mac-os-x-server-10-4/index.json @@ -0,0 +1,19 @@ +{ + "id": 5631, + "slug": "mac-os-x-server-10-4", + "name": "Mac OS X Server 10.4", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q21666925" + ], + "created_at": "2026-07-10T10:12:41.677755", + "updated_at": "2026-07-10T10:12:41.677755", + "url": "/v1/software/mac-os-x-server-10-4" +} diff --git a/site/public/v1/software/macaw/index.json b/site/public/v1/software/macaw/index.json new file mode 100644 index 000000000000..ebd906316629 --- /dev/null +++ b/site/public/v1/software/macaw/index.json @@ -0,0 +1,19 @@ +{ + "id": 5632, + "slug": "macaw", + "name": "Macaw", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11232624" + ], + "created_at": "2026-07-10T10:12:41.677755", + "updated_at": "2026-07-10T10:12:41.677755", + "url": "/v1/software/macaw" +} diff --git a/site/public/v1/software/macdroid/index.json b/site/public/v1/software/macdroid/index.json new file mode 100644 index 000000000000..dd0abb54262d --- /dev/null +++ b/site/public/v1/software/macdroid/index.json @@ -0,0 +1,21 @@ +{ + "id": 5633, + "slug": "macdroid", + "name": "MacDroid", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "macOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124354376" + ], + "created_at": "2026-07-10T10:12:41.677755", + "updated_at": "2026-07-10T10:12:41.677755", + "url": "/v1/software/macdroid" +} diff --git a/site/public/v1/software/macfamilytree/index.json b/site/public/v1/software/macfamilytree/index.json new file mode 100644 index 000000000000..fa86d45dc532 --- /dev/null +++ b/site/public/v1/software/macfamilytree/index.json @@ -0,0 +1,19 @@ +{ + "id": 5634, + "slug": "macfamilytree", + "name": "MacFamilyTree", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4043529" + ], + "created_at": "2026-07-10T10:12:41.678779", + "updated_at": "2026-07-10T10:12:41.678779", + "url": "/v1/software/macfamilytree" +} diff --git a/site/public/v1/software/macfuse/index.json b/site/public/v1/software/macfuse/index.json new file mode 100644 index 000000000000..1be43f0ecf67 --- /dev/null +++ b/site/public/v1/software/macfuse/index.json @@ -0,0 +1,23 @@ +{ + "id": 5635, + "slug": "macfuse", + "name": "macFUSE", + "release_date": null, + "developers": [ + "Benjamin Fleischer" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "BSD licenses" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130273344" + ], + "created_at": "2026-07-10T10:12:41.678779", + "updated_at": "2026-07-10T10:12:41.678779", + "url": "/v1/software/macfuse" +} diff --git a/site/public/v1/software/macfusion/index.json b/site/public/v1/software/macfusion/index.json new file mode 100644 index 000000000000..fc529626913e --- /dev/null +++ b/site/public/v1/software/macfusion/index.json @@ -0,0 +1,19 @@ +{ + "id": 5636, + "slug": "macfusion", + "name": "Macfusion", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6723289" + ], + "created_at": "2026-07-10T10:12:41.678779", + "updated_at": "2026-07-10T10:12:41.678779", + "url": "/v1/software/macfusion" +} diff --git a/site/public/v1/software/mach/index.json b/site/public/v1/software/mach/index.json new file mode 100644 index 000000000000..9fee9131c3db --- /dev/null +++ b/site/public/v1/software/mach/index.json @@ -0,0 +1,21 @@ +{ + "id": 5637, + "slug": "mach", + "name": "Mach", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "assembly language" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q14643" + ], + "created_at": "2026-07-10T10:12:41.679771", + "updated_at": "2026-07-10T10:12:41.679771", + "url": "/v1/software/mach" +} diff --git a/site/public/v1/software/machine-translation/index.json b/site/public/v1/software/machine-translation/index.json new file mode 100644 index 000000000000..ec2108e16621 --- /dev/null +++ b/site/public/v1/software/machine-translation/index.json @@ -0,0 +1,19 @@ +{ + "id": 5638, + "slug": "machine-translation", + "name": "Machine Translation", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085094" + ], + "created_at": "2026-07-10T10:12:41.679771", + "updated_at": "2026-07-10T10:12:41.679771", + "url": "/v1/software/machine-translation" +} diff --git a/site/public/v1/software/machinery/index.json b/site/public/v1/software/machinery/index.json new file mode 100644 index 000000000000..06ccc46a5d93 --- /dev/null +++ b/site/public/v1/software/machinery/index.json @@ -0,0 +1,23 @@ +{ + "id": 5639, + "slug": "machinery", + "name": "Machinery", + "release_date": null, + "developers": [ + "SUSE" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "GNU General Public License, version 3.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126013185" + ], + "created_at": "2026-07-10T10:12:41.679771", + "updated_at": "2026-07-10T10:12:41.679771", + "url": "/v1/software/machinery" +} diff --git a/site/public/v1/software/macintosh-application-environment/index.json b/site/public/v1/software/macintosh-application-environment/index.json new file mode 100644 index 000000000000..75a8ae0b6698 --- /dev/null +++ b/site/public/v1/software/macintosh-application-environment/index.json @@ -0,0 +1,21 @@ +{ + "id": 5640, + "slug": "macintosh-application-environment", + "name": "Macintosh Application Environment", + "release_date": null, + "developers": [ + "Apple Inc." + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1882803" + ], + "created_at": "2026-07-10T10:12:41.679771", + "updated_at": "2026-07-10T10:12:41.679771", + "url": "/v1/software/macintosh-application-environment" +} diff --git a/site/public/v1/software/macintosh-toolbox/index.json b/site/public/v1/software/macintosh-toolbox/index.json new file mode 100644 index 000000000000..39c5b3e8c4a7 --- /dev/null +++ b/site/public/v1/software/macintosh-toolbox/index.json @@ -0,0 +1,19 @@ +{ + "id": 5641, + "slug": "macintosh-toolbox", + "name": "Macintosh Toolbox", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1423935" + ], + "created_at": "2026-07-10T10:12:41.680790", + "updated_at": "2026-07-10T10:12:41.680790", + "url": "/v1/software/macintosh-toolbox" +} diff --git a/site/public/v1/software/mackie-tracktion/index.json b/site/public/v1/software/mackie-tracktion/index.json new file mode 100644 index 000000000000..e0b7a532a99b --- /dev/null +++ b/site/public/v1/software/mackie-tracktion/index.json @@ -0,0 +1,21 @@ +{ + "id": 5642, + "slug": "mackie-tracktion", + "name": "Mackie Tracktion", + "release_date": null, + "developers": [ + "Mackie" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121010036" + ], + "created_at": "2026-07-10T10:12:41.680790", + "updated_at": "2026-07-10T10:12:41.680790", + "url": "/v1/software/mackie-tracktion" +} diff --git a/site/public/v1/software/macne-nana/index.json b/site/public/v1/software/macne-nana/index.json new file mode 100644 index 000000000000..d0f279a497a9 --- /dev/null +++ b/site/public/v1/software/macne-nana/index.json @@ -0,0 +1,19 @@ +{ + "id": 5643, + "slug": "macne-nana", + "name": "Macne Nana", + "release_date": "2009-03-28", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q24914410" + ], + "created_at": "2026-07-10T10:12:41.681781", + "updated_at": "2026-07-10T10:12:41.681781", + "url": "/v1/software/macne-nana" +} diff --git a/site/public/v1/software/macproject/index.json b/site/public/v1/software/macproject/index.json new file mode 100644 index 000000000000..bc9c9618c45d --- /dev/null +++ b/site/public/v1/software/macproject/index.json @@ -0,0 +1,21 @@ +{ + "id": 5644, + "slug": "macproject", + "name": "MacProject", + "release_date": "1984-01-01", + "developers": [], + "publishers": [], + "operating_systems": [ + "System 6" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6722080" + ], + "created_at": "2026-07-10T10:12:41.681781", + "updated_at": "2026-07-10T10:12:41.681781", + "url": "/v1/software/macproject" +} diff --git a/site/public/v1/software/macro-express/index.json b/site/public/v1/software/macro-express/index.json new file mode 100644 index 000000000000..20d6b5806410 --- /dev/null +++ b/site/public/v1/software/macro-express/index.json @@ -0,0 +1,19 @@ +{ + "id": 5645, + "slug": "macro-express", + "name": "Macro Express", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6725137" + ], + "created_at": "2026-07-10T10:12:41.681781", + "updated_at": "2026-07-10T10:12:41.681781", + "url": "/v1/software/macro-express" +} diff --git a/site/public/v1/software/macrodroid/index.json b/site/public/v1/software/macrodroid/index.json new file mode 100644 index 000000000000..541812ca8306 --- /dev/null +++ b/site/public/v1/software/macrodroid/index.json @@ -0,0 +1,19 @@ +{ + "id": 5646, + "slug": "macrodroid", + "name": "MacroDroid", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109409641" + ], + "created_at": "2026-07-10T10:12:41.681781", + "updated_at": "2026-07-10T10:12:41.681781", + "url": "/v1/software/macrodroid" +} diff --git a/site/public/v1/software/macromedia-central/index.json b/site/public/v1/software/macromedia-central/index.json new file mode 100644 index 000000000000..e6c4acc39029 --- /dev/null +++ b/site/public/v1/software/macromedia-central/index.json @@ -0,0 +1,19 @@ +{ + "id": 5647, + "slug": "macromedia-central", + "name": "Macromedia Central", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6725407" + ], + "created_at": "2026-07-10T10:12:41.682737", + "updated_at": "2026-07-10T10:12:41.682737", + "url": "/v1/software/macromedia-central" +} diff --git a/site/public/v1/software/macromedia-flash-8/index.json b/site/public/v1/software/macromedia-flash-8/index.json new file mode 100644 index 000000000000..c6fb8d358794 --- /dev/null +++ b/site/public/v1/software/macromedia-flash-8/index.json @@ -0,0 +1,19 @@ +{ + "id": 5648, + "slug": "macromedia-flash-8", + "name": "Macromedia Flash 8", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135404143" + ], + "created_at": "2026-07-10T10:12:41.682737", + "updated_at": "2026-07-10T10:12:41.682737", + "url": "/v1/software/macromedia-flash-8" +} diff --git a/site/public/v1/software/macromedia-studio/index.json b/site/public/v1/software/macromedia-studio/index.json new file mode 100644 index 000000000000..d019e79e8f26 --- /dev/null +++ b/site/public/v1/software/macromedia-studio/index.json @@ -0,0 +1,21 @@ +{ + "id": 5649, + "slug": "macromedia-studio", + "name": "Macromedia Studio", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3491212" + ], + "created_at": "2026-07-10T10:12:41.683737", + "updated_at": "2026-07-10T10:12:41.683737", + "url": "/v1/software/macromedia-studio" +} diff --git a/site/public/v1/software/macromodel/index.json b/site/public/v1/software/macromodel/index.json new file mode 100644 index 000000000000..fdeb2c109d90 --- /dev/null +++ b/site/public/v1/software/macromodel/index.json @@ -0,0 +1,21 @@ +{ + "id": 5650, + "slug": "macromodel", + "name": "MacroModel", + "release_date": null, + "developers": [ + "Schrödinger" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6725133" + ], + "created_at": "2026-07-10T10:12:41.683737", + "updated_at": "2026-07-10T10:12:41.683737", + "url": "/v1/software/macromodel" +} diff --git a/site/public/v1/software/macroscope/index.json b/site/public/v1/software/macroscope/index.json new file mode 100644 index 000000000000..350d1e349b53 --- /dev/null +++ b/site/public/v1/software/macroscope/index.json @@ -0,0 +1,21 @@ +{ + "id": 5651, + "slug": "macroscope", + "name": "Macroscope", + "release_date": null, + "developers": [ + "Fujitsu" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16973857" + ], + "created_at": "2026-07-10T10:12:41.683737", + "updated_at": "2026-07-10T10:12:41.683737", + "url": "/v1/software/macroscope" +} diff --git a/site/public/v1/software/macrospace/index.json b/site/public/v1/software/macrospace/index.json new file mode 100644 index 000000000000..f3d089172c23 --- /dev/null +++ b/site/public/v1/software/macrospace/index.json @@ -0,0 +1,19 @@ +{ + "id": 5652, + "slug": "macrospace", + "name": "Macrospace", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4043566" + ], + "created_at": "2026-07-10T10:12:41.684739", + "updated_at": "2026-07-10T10:12:41.684739", + "url": "/v1/software/macrospace" +} diff --git a/site/public/v1/software/macs/index.json b/site/public/v1/software/macs/index.json new file mode 100644 index 000000000000..f5e4ba023de6 --- /dev/null +++ b/site/public/v1/software/macs/index.json @@ -0,0 +1,19 @@ +{ + "id": 5653, + "slug": "macs", + "name": "MACS", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134531639" + ], + "created_at": "2026-07-10T10:12:41.684739", + "updated_at": "2026-07-10T10:12:41.684739", + "url": "/v1/software/macs" +} diff --git a/site/public/v1/software/macs3/index.json b/site/public/v1/software/macs3/index.json new file mode 100644 index 000000000000..9b9de882b8c8 --- /dev/null +++ b/site/public/v1/software/macs3/index.json @@ -0,0 +1,19 @@ +{ + "id": 5654, + "slug": "macs3", + "name": "MACS3", + "release_date": "1984-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6714065" + ], + "created_at": "2026-07-10T10:12:41.684739", + "updated_at": "2026-07-10T10:12:41.684739", + "url": "/v1/software/macs3" +} diff --git a/site/public/v1/software/macterminal/index.json b/site/public/v1/software/macterminal/index.json new file mode 100644 index 000000000000..77904db92234 --- /dev/null +++ b/site/public/v1/software/macterminal/index.json @@ -0,0 +1,21 @@ +{ + "id": 5655, + "slug": "macterminal", + "name": "MacTerminal", + "release_date": null, + "developers": [ + "Apple Inc." + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6722138" + ], + "created_at": "2026-07-10T10:12:41.685764", + "updated_at": "2026-07-10T10:12:41.685764", + "url": "/v1/software/macterminal" +} diff --git a/site/public/v1/software/mactracker/index.json b/site/public/v1/software/mactracker/index.json new file mode 100644 index 000000000000..717b48c09c87 --- /dev/null +++ b/site/public/v1/software/mactracker/index.json @@ -0,0 +1,21 @@ +{ + "id": 5656, + "slug": "mactracker", + "name": "Mactracker", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1406091" + ], + "created_at": "2026-07-10T10:12:41.685764", + "updated_at": "2026-07-10T10:12:41.685764", + "url": "/v1/software/mactracker" +} diff --git a/site/public/v1/software/mactype/index.json b/site/public/v1/software/mactype/index.json new file mode 100644 index 000000000000..0ed2fb99787f --- /dev/null +++ b/site/public/v1/software/mactype/index.json @@ -0,0 +1,19 @@ +{ + "id": 5657, + "slug": "mactype", + "name": "MacType", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10851601" + ], + "created_at": "2026-07-10T10:12:41.685764", + "updated_at": "2026-07-10T10:12:41.685764", + "url": "/v1/software/mactype" +} diff --git a/site/public/v1/software/macvector/index.json b/site/public/v1/software/macvector/index.json new file mode 100644 index 000000000000..d6182dbf737e --- /dev/null +++ b/site/public/v1/software/macvector/index.json @@ -0,0 +1,25 @@ +{ + "id": 5658, + "slug": "macvector", + "name": "MacVector", + "release_date": null, + "developers": [ + "MacVector" + ], + "publishers": [], + "operating_systems": [ + "macOS" + ], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16335143" + ], + "created_at": "2026-07-10T10:12:41.685764", + "updated_at": "2026-07-10T10:12:41.685764", + "url": "/v1/software/macvector" +} diff --git a/site/public/v1/software/macventure/index.json b/site/public/v1/software/macventure/index.json new file mode 100644 index 000000000000..bbd37fa25668 --- /dev/null +++ b/site/public/v1/software/macventure/index.json @@ -0,0 +1,19 @@ +{ + "id": 5659, + "slug": "macventure", + "name": "MacVenture", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6722149" + ], + "created_at": "2026-07-10T10:12:41.686758", + "updated_at": "2026-07-10T10:12:41.686758", + "url": "/v1/software/macventure" +} diff --git a/site/public/v1/software/macweb/index.json b/site/public/v1/software/macweb/index.json new file mode 100644 index 000000000000..5548bf8f0586 --- /dev/null +++ b/site/public/v1/software/macweb/index.json @@ -0,0 +1,21 @@ +{ + "id": 5660, + "slug": "macweb", + "name": "MacWeb", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17042513" + ], + "created_at": "2026-07-10T10:12:41.686758", + "updated_at": "2026-07-10T10:12:41.686758", + "url": "/v1/software/macweb" +} diff --git a/site/public/v1/software/macworks-xl/index.json b/site/public/v1/software/macworks-xl/index.json new file mode 100644 index 000000000000..55dd31ab32e9 --- /dev/null +++ b/site/public/v1/software/macworks-xl/index.json @@ -0,0 +1,23 @@ +{ + "id": 5661, + "slug": "macworks-xl", + "name": "MacWorks XL", + "release_date": null, + "developers": [ + "Apple Inc." + ], + "publishers": [], + "operating_systems": [ + "Classic Mac OS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6722157" + ], + "created_at": "2026-07-10T10:12:41.686758", + "updated_at": "2026-07-10T10:12:41.687748", + "url": "/v1/software/macworks-xl" +} diff --git a/site/public/v1/software/mad-commander/index.json b/site/public/v1/software/mad-commander/index.json new file mode 100644 index 000000000000..23c93f12f103 --- /dev/null +++ b/site/public/v1/software/mad-commander/index.json @@ -0,0 +1,21 @@ +{ + "id": 5662, + "slug": "mad-commander", + "name": "Mad Commander", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Java" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5989233" + ], + "created_at": "2026-07-10T10:12:41.687748", + "updated_at": "2026-07-10T10:12:41.687748", + "url": "/v1/software/mad-commander" +} diff --git a/site/public/v1/software/madgraph/index.json b/site/public/v1/software/madgraph/index.json new file mode 100644 index 000000000000..e8420c35e606 --- /dev/null +++ b/site/public/v1/software/madgraph/index.json @@ -0,0 +1,19 @@ +{ + "id": 5663, + "slug": "madgraph", + "name": "MadGraph", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q102280779" + ], + "created_at": "2026-07-10T10:12:41.687748", + "updated_at": "2026-07-10T10:12:41.687748", + "url": "/v1/software/madgraph" +} diff --git a/site/public/v1/software/madison-digital-image-database-mdid/index.json b/site/public/v1/software/madison-digital-image-database-mdid/index.json new file mode 100644 index 000000000000..0f5459257d78 --- /dev/null +++ b/site/public/v1/software/madison-digital-image-database-mdid/index.json @@ -0,0 +1,19 @@ +{ + "id": 5664, + "slug": "madison-digital-image-database-mdid", + "name": "Madison Digital Image Database (MDID)", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085095" + ], + "created_at": "2026-07-10T10:12:41.687748", + "updated_at": "2026-07-10T10:12:41.687748", + "url": "/v1/software/madison-digital-image-database-mdid" +} diff --git a/site/public/v1/software/madmuscles/index.json b/site/public/v1/software/madmuscles/index.json new file mode 100644 index 000000000000..e375d8b02083 --- /dev/null +++ b/site/public/v1/software/madmuscles/index.json @@ -0,0 +1,19 @@ +{ + "id": 5665, + "slug": "madmuscles", + "name": "MadMuscles", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136090331" + ], + "created_at": "2026-07-10T10:12:41.688775", + "updated_at": "2026-07-10T10:12:41.688775", + "url": "/v1/software/madmuscles" +} diff --git a/site/public/v1/software/madoc/index.json b/site/public/v1/software/madoc/index.json new file mode 100644 index 000000000000..275571697bfc --- /dev/null +++ b/site/public/v1/software/madoc/index.json @@ -0,0 +1,19 @@ +{ + "id": 5666, + "slug": "madoc", + "name": "Madoc", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085096" + ], + "created_at": "2026-07-10T10:12:41.688775", + "updated_at": "2026-07-10T10:12:41.688775", + "url": "/v1/software/madoc" +} diff --git a/site/public/v1/software/madura-english-sinhala-dictionary/index.json b/site/public/v1/software/madura-english-sinhala-dictionary/index.json new file mode 100644 index 000000000000..a3242c807c65 --- /dev/null +++ b/site/public/v1/software/madura-english-sinhala-dictionary/index.json @@ -0,0 +1,21 @@ +{ + "id": 5667, + "slug": "madura-english-sinhala-dictionary", + "name": "Madura English–Sinhala Dictionary", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q19893458" + ], + "created_at": "2026-07-10T10:12:41.688775", + "updated_at": "2026-07-10T10:12:41.688775", + "url": "/v1/software/madura-english-sinhala-dictionary" +} diff --git a/site/public/v1/software/madymo/index.json b/site/public/v1/software/madymo/index.json new file mode 100644 index 000000000000..01d5625ba112 --- /dev/null +++ b/site/public/v1/software/madymo/index.json @@ -0,0 +1,19 @@ +{ + "id": 5668, + "slug": "madymo", + "name": "MADYMO", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17068056" + ], + "created_at": "2026-07-10T10:12:41.689757", + "updated_at": "2026-07-10T10:12:41.689757", + "url": "/v1/software/madymo" +} diff --git a/site/public/v1/software/maestro-mastersoftware/index.json b/site/public/v1/software/maestro-mastersoftware/index.json new file mode 100644 index 000000000000..3e8b91098cb7 --- /dev/null +++ b/site/public/v1/software/maestro-mastersoftware/index.json @@ -0,0 +1,21 @@ +{ + "id": 5669, + "slug": "maestro-mastersoftware", + "name": "Maestro MasterSoftware", + "release_date": null, + "developers": [ + "DiaMed" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137853175" + ], + "created_at": "2026-07-10T10:12:41.689757", + "updated_at": "2026-07-10T10:12:41.689757", + "url": "/v1/software/maestro-mastersoftware" +} diff --git a/site/public/v1/software/maestro-q72275279/index.json b/site/public/v1/software/maestro-q72275279/index.json new file mode 100644 index 000000000000..201ac91b93b1 --- /dev/null +++ b/site/public/v1/software/maestro-q72275279/index.json @@ -0,0 +1,19 @@ +{ + "id": 5670, + "slug": "maestro-q72275279", + "name": "Maestro", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72275279" + ], + "created_at": "2026-07-10T10:12:41.689757", + "updated_at": "2026-07-10T10:12:41.689757", + "url": "/v1/software/maestro-q72275279" +} diff --git a/site/public/v1/software/maestro/index.json b/site/public/v1/software/maestro/index.json new file mode 100644 index 000000000000..95627bc59f81 --- /dev/null +++ b/site/public/v1/software/maestro/index.json @@ -0,0 +1,25 @@ +{ + "id": 5671, + "slug": "maestro", + "name": "Maestro", + "release_date": null, + "developers": [ + "Jet Propulsion Laboratory" + ], + "publishers": [], + "operating_systems": [ + "Mac OS X Panther" + ], + "programming_languages": [ + "Java" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6729339" + ], + "created_at": "2026-07-10T10:12:41.690764", + "updated_at": "2026-07-10T10:12:41.690764", + "url": "/v1/software/maestro" +} diff --git a/site/public/v1/software/mafft/index.json b/site/public/v1/software/mafft/index.json new file mode 100644 index 000000000000..4ef85966bda3 --- /dev/null +++ b/site/public/v1/software/mafft/index.json @@ -0,0 +1,24 @@ +{ + "id": 5672, + "slug": "mafft", + "name": "MAFFT", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows", + "macOS" + ], + "programming_languages": [], + "licenses": [ + "Berkeley Software Distribution" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6714151" + ], + "created_at": "2026-07-10T10:12:41.690764", + "updated_at": "2026-07-10T10:12:41.690764", + "url": "/v1/software/mafft" +} diff --git a/site/public/v1/software/magic-camera/index.json b/site/public/v1/software/magic-camera/index.json new file mode 100644 index 000000000000..2e0cc9394c91 --- /dev/null +++ b/site/public/v1/software/magic-camera/index.json @@ -0,0 +1,19 @@ +{ + "id": 5673, + "slug": "magic-camera", + "name": "Magic Camera", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6730649" + ], + "created_at": "2026-07-10T10:12:41.690764", + "updated_at": "2026-07-10T10:12:41.690764", + "url": "/v1/software/magic-camera" +} diff --git a/site/public/v1/software/magic-cat/index.json b/site/public/v1/software/magic-cat/index.json new file mode 100644 index 000000000000..af24e3d0ace4 --- /dev/null +++ b/site/public/v1/software/magic-cat/index.json @@ -0,0 +1,21 @@ +{ + "id": 5674, + "slug": "magic-cat", + "name": "Magic Cat", + "release_date": null, + "developers": [ + "Yucheng C." + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131412103" + ], + "created_at": "2026-07-10T10:12:41.691753", + "updated_at": "2026-07-10T10:12:41.691753", + "url": "/v1/software/magic-cat" +} diff --git a/site/public/v1/software/magic-desk/index.json b/site/public/v1/software/magic-desk/index.json new file mode 100644 index 000000000000..b5da9362be9f --- /dev/null +++ b/site/public/v1/software/magic-desk/index.json @@ -0,0 +1,19 @@ +{ + "id": 5675, + "slug": "magic-desk", + "name": "Magic Desk", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11880501" + ], + "created_at": "2026-07-10T10:12:41.691753", + "updated_at": "2026-07-10T10:12:41.691753", + "url": "/v1/software/magic-desk" +} diff --git a/site/public/v1/software/magic-lantern/index.json b/site/public/v1/software/magic-lantern/index.json new file mode 100644 index 000000000000..eedba7e460e2 --- /dev/null +++ b/site/public/v1/software/magic-lantern/index.json @@ -0,0 +1,23 @@ +{ + "id": 5676, + "slug": "magic-lantern", + "name": "Magic Lantern", + "release_date": null, + "developers": [ + "Federal Bureau of Investigation" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q163751" + ], + "created_at": "2026-07-10T10:12:41.691753", + "updated_at": "2026-07-10T10:12:41.691753", + "url": "/v1/software/magic-lantern" +} diff --git a/site/public/v1/software/magic-music-visuals/index.json b/site/public/v1/software/magic-music-visuals/index.json new file mode 100644 index 000000000000..47a5d05ea5ce --- /dev/null +++ b/site/public/v1/software/magic-music-visuals/index.json @@ -0,0 +1,19 @@ +{ + "id": 5677, + "slug": "magic-music-visuals", + "name": "Magic Music Visuals", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q20707118" + ], + "created_at": "2026-07-10T10:12:41.691753", + "updated_at": "2026-07-10T10:12:41.691753", + "url": "/v1/software/magic-music-visuals" +} diff --git a/site/public/v1/software/magic-shadow-archiver/index.json b/site/public/v1/software/magic-shadow-archiver/index.json new file mode 100644 index 000000000000..632623a4449d --- /dev/null +++ b/site/public/v1/software/magic-shadow-archiver/index.json @@ -0,0 +1,19 @@ +{ + "id": 5678, + "slug": "magic-shadow-archiver", + "name": "Magic Shadow Archiver", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q66023558" + ], + "created_at": "2026-07-10T10:12:41.692733", + "updated_at": "2026-07-10T10:12:41.692733", + "url": "/v1/software/magic-shadow-archiver" +} diff --git a/site/public/v1/software/magic-workstation/index.json b/site/public/v1/software/magic-workstation/index.json new file mode 100644 index 000000000000..e73995fc0d6c --- /dev/null +++ b/site/public/v1/software/magic-workstation/index.json @@ -0,0 +1,19 @@ +{ + "id": 5679, + "slug": "magic-workstation", + "name": "Magic Workstation", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17036442" + ], + "created_at": "2026-07-10T10:12:41.692733", + "updated_at": "2026-07-10T10:12:41.692733", + "url": "/v1/software/magic-workstation" +} diff --git a/site/public/v1/software/magic/index.json b/site/public/v1/software/magic/index.json new file mode 100644 index 000000000000..1f5ba7052efc --- /dev/null +++ b/site/public/v1/software/magic/index.json @@ -0,0 +1,21 @@ +{ + "id": 5680, + "slug": "magic", + "name": "Magic", + "release_date": null, + "developers": [ + "Magic Software Enterprises Ltd." + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q959489" + ], + "created_at": "2026-07-10T10:12:41.692733", + "updated_at": "2026-07-10T10:12:41.692733", + "url": "/v1/software/magic" +} diff --git a/site/public/v1/software/magicdraw/index.json b/site/public/v1/software/magicdraw/index.json new file mode 100644 index 000000000000..8beae7623e2f --- /dev/null +++ b/site/public/v1/software/magicdraw/index.json @@ -0,0 +1,23 @@ +{ + "id": 5681, + "slug": "magicdraw", + "name": "MagicDraw", + "release_date": null, + "developers": [ + "No Magic" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Java" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11690245" + ], + "created_at": "2026-07-10T10:12:41.693767", + "updated_at": "2026-07-10T10:12:41.693767", + "url": "/v1/software/magicdraw" +} diff --git a/site/public/v1/software/magicfilter/index.json b/site/public/v1/software/magicfilter/index.json new file mode 100644 index 000000000000..bfe8caf3f0aa --- /dev/null +++ b/site/public/v1/software/magicfilter/index.json @@ -0,0 +1,19 @@ +{ + "id": 5682, + "slug": "magicfilter", + "name": "Magicfilter", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62851661" + ], + "created_at": "2026-07-10T10:12:41.693767", + "updated_at": "2026-07-10T10:12:41.693767", + "url": "/v1/software/magicfilter" +} diff --git a/site/public/v1/software/magiciso/index.json b/site/public/v1/software/magiciso/index.json new file mode 100644 index 000000000000..b2e0f8447826 --- /dev/null +++ b/site/public/v1/software/magiciso/index.json @@ -0,0 +1,21 @@ +{ + "id": 5683, + "slug": "magiciso", + "name": "MagicISO", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4043595" + ], + "created_at": "2026-07-10T10:12:41.693767", + "updated_at": "2026-07-10T10:12:41.693767", + "url": "/v1/software/magiciso" +} diff --git a/site/public/v1/software/magicwb/index.json b/site/public/v1/software/magicwb/index.json new file mode 100644 index 000000000000..776fd436c0ef --- /dev/null +++ b/site/public/v1/software/magicwb/index.json @@ -0,0 +1,19 @@ +{ + "id": 5684, + "slug": "magicwb", + "name": "MagicWB", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6730551" + ], + "created_at": "2026-07-10T10:12:41.694749", + "updated_at": "2026-07-10T10:12:41.694749", + "url": "/v1/software/magicwb" +} diff --git a/site/public/v1/software/magine/index.json b/site/public/v1/software/magine/index.json new file mode 100644 index 000000000000..4ddb16f8e118 --- /dev/null +++ b/site/public/v1/software/magine/index.json @@ -0,0 +1,19 @@ +{ + "id": 5685, + "slug": "magine", + "name": "Magine", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18024539" + ], + "created_at": "2026-07-10T10:12:41.694749", + "updated_at": "2026-07-10T10:12:41.694749", + "url": "/v1/software/magine" +} diff --git a/site/public/v1/software/magister/index.json b/site/public/v1/software/magister/index.json new file mode 100644 index 000000000000..5409b754e0a7 --- /dev/null +++ b/site/public/v1/software/magister/index.json @@ -0,0 +1,19 @@ +{ + "id": 5686, + "slug": "magister", + "name": "Magister", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q15879002" + ], + "created_at": "2026-07-10T10:12:41.694749", + "updated_at": "2026-07-10T10:12:41.694749", + "url": "/v1/software/magister" +} diff --git a/site/public/v1/software/magisto/index.json b/site/public/v1/software/magisto/index.json new file mode 100644 index 000000000000..3e92d98085a3 --- /dev/null +++ b/site/public/v1/software/magisto/index.json @@ -0,0 +1,19 @@ +{ + "id": 5687, + "slug": "magisto", + "name": "Magisto", + "release_date": "2002-12-02", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6731136" + ], + "created_at": "2026-07-10T10:12:41.695753", + "updated_at": "2026-07-10T10:12:41.695753", + "url": "/v1/software/magisto" +} diff --git a/site/public/v1/software/magix-sequoia/index.json b/site/public/v1/software/magix-sequoia/index.json new file mode 100644 index 000000000000..663cc7d6c92f --- /dev/null +++ b/site/public/v1/software/magix-sequoia/index.json @@ -0,0 +1,21 @@ +{ + "id": 5688, + "slug": "magix-sequoia", + "name": "MAGIX Sequoia", + "release_date": null, + "developers": [ + "MAGIX Software GmbH" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6714202" + ], + "created_at": "2026-07-10T10:12:41.695753", + "updated_at": "2026-07-10T10:12:41.695753", + "url": "/v1/software/magix-sequoia" +} diff --git a/site/public/v1/software/magma-lisp/index.json b/site/public/v1/software/magma-lisp/index.json new file mode 100644 index 000000000000..7a99a650b4bc --- /dev/null +++ b/site/public/v1/software/magma-lisp/index.json @@ -0,0 +1,26 @@ +{ + "id": 5689, + "slug": "magma-lisp", + "name": "MAGMA-Lisp", + "release_date": "1981-10-15", + "developers": [ + "Giuliano Pacini", + "Franco Turini", + "Maria Simi", + "Carlo Montangero" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Fortran" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q114137083" + ], + "created_at": "2026-07-10T10:12:41.695753", + "updated_at": "2026-07-10T10:12:41.695753", + "url": "/v1/software/magma-lisp" +} diff --git a/site/public/v1/software/magneto-go/index.json b/site/public/v1/software/magneto-go/index.json new file mode 100644 index 000000000000..b6648c570404 --- /dev/null +++ b/site/public/v1/software/magneto-go/index.json @@ -0,0 +1,19 @@ +{ + "id": 5690, + "slug": "magneto-go", + "name": "Magneto Go", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25447709" + ], + "created_at": "2026-07-10T10:12:41.696778", + "updated_at": "2026-07-10T10:12:41.696778", + "url": "/v1/software/magneto-go" +} diff --git a/site/public/v1/software/magnifier/index.json b/site/public/v1/software/magnifier/index.json new file mode 100644 index 000000000000..9f03f8dcc8b0 --- /dev/null +++ b/site/public/v1/software/magnifier/index.json @@ -0,0 +1,19 @@ +{ + "id": 5691, + "slug": "magnifier", + "name": "Magnifier", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1144777" + ], + "created_at": "2026-07-10T10:12:41.696778", + "updated_at": "2026-07-10T10:12:41.696778", + "url": "/v1/software/magnifier" +} diff --git a/site/public/v1/software/magnus-choir/index.json b/site/public/v1/software/magnus-choir/index.json new file mode 100644 index 000000000000..b70ffa8760d7 --- /dev/null +++ b/site/public/v1/software/magnus-choir/index.json @@ -0,0 +1,19 @@ +{ + "id": 5692, + "slug": "magnus-choir", + "name": "Magnus Choir", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q14452506" + ], + "created_at": "2026-07-10T10:12:41.696778", + "updated_at": "2026-07-10T10:12:41.696778", + "url": "/v1/software/magnus-choir" +} diff --git a/site/public/v1/software/mahotas/index.json b/site/public/v1/software/mahotas/index.json new file mode 100644 index 000000000000..3af857d427f2 --- /dev/null +++ b/site/public/v1/software/mahotas/index.json @@ -0,0 +1,19 @@ +{ + "id": 5693, + "slug": "mahotas", + "name": "mahotas", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60964416" + ], + "created_at": "2026-07-10T10:12:41.697881", + "updated_at": "2026-07-10T10:12:41.697881", + "url": "/v1/software/mahotas" +} diff --git a/site/public/v1/software/maidcentral/index.json b/site/public/v1/software/maidcentral/index.json new file mode 100644 index 000000000000..9f4d70721523 --- /dev/null +++ b/site/public/v1/software/maidcentral/index.json @@ -0,0 +1,19 @@ +{ + "id": 5694, + "slug": "maidcentral", + "name": "MaidCentral", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135231836" + ], + "created_at": "2026-07-10T10:12:41.697881", + "updated_at": "2026-07-10T10:12:41.697881", + "url": "/v1/software/maidcentral" +} diff --git a/site/public/v1/software/mail/index.json b/site/public/v1/software/mail/index.json new file mode 100644 index 000000000000..8b2bbcd06f02 --- /dev/null +++ b/site/public/v1/software/mail/index.json @@ -0,0 +1,19 @@ +{ + "id": 5695, + "slug": "mail", + "name": "@Mail", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4646751" + ], + "created_at": "2026-07-10T10:12:41.697881", + "updated_at": "2026-07-10T10:12:41.697881", + "url": "/v1/software/mail" +} diff --git a/site/public/v1/software/mailbigfile/index.json b/site/public/v1/software/mailbigfile/index.json new file mode 100644 index 000000000000..ded37818f6c8 --- /dev/null +++ b/site/public/v1/software/mailbigfile/index.json @@ -0,0 +1,19 @@ +{ + "id": 5696, + "slug": "mailbigfile", + "name": "Mailbigfile", + "release_date": "2005-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6735769" + ], + "created_at": "2026-07-10T10:12:41.698919", + "updated_at": "2026-07-10T10:12:41.698919", + "url": "/v1/software/mailbigfile" +} diff --git a/site/public/v1/software/mailbird/index.json b/site/public/v1/software/mailbird/index.json new file mode 100644 index 000000000000..bb21d891e6f4 --- /dev/null +++ b/site/public/v1/software/mailbird/index.json @@ -0,0 +1,19 @@ +{ + "id": 5697, + "slug": "mailbird", + "name": "Mailbird", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17042522" + ], + "created_at": "2026-07-10T10:12:41.698919", + "updated_at": "2026-07-10T10:12:41.698919", + "url": "/v1/software/mailbird" +} diff --git a/site/public/v1/software/mailchimp/index.json b/site/public/v1/software/mailchimp/index.json new file mode 100644 index 000000000000..78cdb9362789 --- /dev/null +++ b/site/public/v1/software/mailchimp/index.json @@ -0,0 +1,19 @@ +{ + "id": 5698, + "slug": "mailchimp", + "name": "Mailchimp", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6735673" + ], + "created_at": "2026-07-10T10:12:41.698919", + "updated_at": "2026-07-10T10:12:41.698919", + "url": "/v1/software/mailchimp" +} diff --git a/site/public/v1/software/maildir/index.json b/site/public/v1/software/maildir/index.json new file mode 100644 index 000000000000..9453f7141db3 --- /dev/null +++ b/site/public/v1/software/maildir/index.json @@ -0,0 +1,21 @@ +{ + "id": 5699, + "slug": "maildir", + "name": "Maildir", + "release_date": null, + "developers": [ + "Daniel J. Bernstein" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1246497" + ], + "created_at": "2026-07-10T10:12:41.699908", + "updated_at": "2026-07-10T10:12:41.699908", + "url": "/v1/software/maildir" +} diff --git a/site/public/v1/software/mailerlite/index.json b/site/public/v1/software/mailerlite/index.json new file mode 100644 index 000000000000..8a9a9cf6e32e --- /dev/null +++ b/site/public/v1/software/mailerlite/index.json @@ -0,0 +1,19 @@ +{ + "id": 5700, + "slug": "mailerlite", + "name": "MailerLite", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q54860002" + ], + "created_at": "2026-07-10T10:12:41.699908", + "updated_at": "2026-07-10T10:12:41.699908", + "url": "/v1/software/mailerlite" +} diff --git a/site/public/v1/software/mailfilter/index.json b/site/public/v1/software/mailfilter/index.json new file mode 100644 index 000000000000..9b0fb92a9375 --- /dev/null +++ b/site/public/v1/software/mailfilter/index.json @@ -0,0 +1,19 @@ +{ + "id": 5701, + "slug": "mailfilter", + "name": "Mailfilter", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62854701" + ], + "created_at": "2026-07-10T10:12:41.699908", + "updated_at": "2026-07-10T10:12:41.699908", + "url": "/v1/software/mailfilter" +} diff --git a/site/public/v1/software/mailfront/index.json b/site/public/v1/software/mailfront/index.json new file mode 100644 index 000000000000..bdc6fd8bf3b0 --- /dev/null +++ b/site/public/v1/software/mailfront/index.json @@ -0,0 +1,19 @@ +{ + "id": 5702, + "slug": "mailfront", + "name": "mailfront", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62854655" + ], + "created_at": "2026-07-10T10:12:41.700783", + "updated_at": "2026-07-10T10:12:41.700783", + "url": "/v1/software/mailfront" +} diff --git a/site/public/v1/software/mailgraph/index.json b/site/public/v1/software/mailgraph/index.json new file mode 100644 index 000000000000..991cc5876c82 --- /dev/null +++ b/site/public/v1/software/mailgraph/index.json @@ -0,0 +1,19 @@ +{ + "id": 5703, + "slug": "mailgraph", + "name": "mailgraph", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62851649" + ], + "created_at": "2026-07-10T10:12:41.700783", + "updated_at": "2026-07-10T10:12:41.700783", + "url": "/v1/software/mailgraph" +} diff --git a/site/public/v1/software/mailinblack/index.json b/site/public/v1/software/mailinblack/index.json new file mode 100644 index 000000000000..aee0fd58b32b --- /dev/null +++ b/site/public/v1/software/mailinblack/index.json @@ -0,0 +1,19 @@ +{ + "id": 5704, + "slug": "mailinblack", + "name": "Mailinblack", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139585738" + ], + "created_at": "2026-07-10T10:12:41.700783", + "updated_at": "2026-07-10T10:12:41.700783", + "url": "/v1/software/mailinblack" +} diff --git a/site/public/v1/software/mailplane/index.json b/site/public/v1/software/mailplane/index.json new file mode 100644 index 000000000000..80145b24caa2 --- /dev/null +++ b/site/public/v1/software/mailplane/index.json @@ -0,0 +1,21 @@ +{ + "id": 5705, + "slug": "mailplane", + "name": "Mailplane", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Objective-C" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6735828" + ], + "created_at": "2026-07-10T10:12:41.701860", + "updated_at": "2026-07-10T10:12:41.701860", + "url": "/v1/software/mailplane" +} diff --git a/site/public/v1/software/mailrelay/index.json b/site/public/v1/software/mailrelay/index.json new file mode 100644 index 000000000000..80b7eb7a7baf --- /dev/null +++ b/site/public/v1/software/mailrelay/index.json @@ -0,0 +1,19 @@ +{ + "id": 5706, + "slug": "mailrelay", + "name": "Mailrelay", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q30905078" + ], + "created_at": "2026-07-10T10:12:41.701860", + "updated_at": "2026-07-10T10:12:41.701860", + "url": "/v1/software/mailrelay" +} diff --git a/site/public/v1/software/mailstore/index.json b/site/public/v1/software/mailstore/index.json new file mode 100644 index 000000000000..a99da2f1c16e --- /dev/null +++ b/site/public/v1/software/mailstore/index.json @@ -0,0 +1,19 @@ +{ + "id": 5707, + "slug": "mailstore", + "name": "MailStore", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3278245" + ], + "created_at": "2026-07-10T10:12:41.701860", + "updated_at": "2026-07-10T10:12:41.701860", + "url": "/v1/software/mailstore" +} diff --git a/site/public/v1/software/mailsync/index.json b/site/public/v1/software/mailsync/index.json new file mode 100644 index 000000000000..0b64f1ec53e5 --- /dev/null +++ b/site/public/v1/software/mailsync/index.json @@ -0,0 +1,19 @@ +{ + "id": 5708, + "slug": "mailsync", + "name": "mailsync", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62851644" + ], + "created_at": "2026-07-10T10:12:41.702852", + "updated_at": "2026-07-10T10:12:41.702852", + "url": "/v1/software/mailsync" +} diff --git a/site/public/v1/software/mailtime/index.json b/site/public/v1/software/mailtime/index.json new file mode 100644 index 000000000000..7dfafd1da343 --- /dev/null +++ b/site/public/v1/software/mailtime/index.json @@ -0,0 +1,19 @@ +{ + "id": 5709, + "slug": "mailtime", + "name": "MailTime", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22095813" + ], + "created_at": "2026-07-10T10:12:41.702852", + "updated_at": "2026-07-10T10:12:41.702852", + "url": "/v1/software/mailtime" +} diff --git a/site/public/v1/software/mailwasher/index.json b/site/public/v1/software/mailwasher/index.json new file mode 100644 index 000000000000..f5a8bf06c887 --- /dev/null +++ b/site/public/v1/software/mailwasher/index.json @@ -0,0 +1,21 @@ +{ + "id": 5710, + "slug": "mailwasher", + "name": "Mailwasher", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6735842" + ], + "created_at": "2026-07-10T10:12:41.702852", + "updated_at": "2026-07-10T10:12:41.702852", + "url": "/v1/software/mailwasher" +} diff --git a/site/public/v1/software/mainframe-sort-merge/index.json b/site/public/v1/software/mainframe-sort-merge/index.json new file mode 100644 index 000000000000..a43f138febe8 --- /dev/null +++ b/site/public/v1/software/mainframe-sort-merge/index.json @@ -0,0 +1,19 @@ +{ + "id": 5711, + "slug": "mainframe-sort-merge", + "name": "mainframe sort merge", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6736621" + ], + "created_at": "2026-07-10T10:12:41.703858", + "updated_at": "2026-07-10T10:12:41.703858", + "url": "/v1/software/mainframe-sort-merge" +} diff --git a/site/public/v1/software/mainstage/index.json b/site/public/v1/software/mainstage/index.json new file mode 100644 index 000000000000..7dcf22cf0b28 --- /dev/null +++ b/site/public/v1/software/mainstage/index.json @@ -0,0 +1,21 @@ +{ + "id": 5712, + "slug": "mainstage", + "name": "Mainstage", + "release_date": null, + "developers": [ + "Apple Inc." + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6736739" + ], + "created_at": "2026-07-10T10:12:41.703858", + "updated_at": "2026-07-10T10:12:41.703858", + "url": "/v1/software/mainstage" +} diff --git a/site/public/v1/software/maintenup/index.json b/site/public/v1/software/maintenup/index.json new file mode 100644 index 000000000000..bc4088a0fcf3 --- /dev/null +++ b/site/public/v1/software/maintenup/index.json @@ -0,0 +1,22 @@ +{ + "id": 5713, + "slug": "maintenup", + "name": "MaintenUP", + "release_date": null, + "developers": [ + "Infor srl", + "B Corp" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140472696" + ], + "created_at": "2026-07-10T10:12:41.703858", + "updated_at": "2026-07-10T10:12:41.703858", + "url": "/v1/software/maintenup" +} diff --git a/site/public/v1/software/majestic-search-engine/index.json b/site/public/v1/software/majestic-search-engine/index.json new file mode 100644 index 000000000000..05644934d028 --- /dev/null +++ b/site/public/v1/software/majestic-search-engine/index.json @@ -0,0 +1,19 @@ +{ + "id": 5714, + "slug": "majestic-search-engine", + "name": "Majestic Search Engine", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22906674" + ], + "created_at": "2026-07-10T10:12:41.704852", + "updated_at": "2026-07-10T10:12:41.704852", + "url": "/v1/software/majestic-search-engine" +} diff --git a/site/public/v1/software/make-the-dot/index.json b/site/public/v1/software/make-the-dot/index.json new file mode 100644 index 000000000000..bb0ca2d68837 --- /dev/null +++ b/site/public/v1/software/make-the-dot/index.json @@ -0,0 +1,19 @@ +{ + "id": 5715, + "slug": "make-the-dot", + "name": "Make the Dot", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140347913" + ], + "created_at": "2026-07-10T10:12:41.704852", + "updated_at": "2026-07-10T10:12:41.704852", + "url": "/v1/software/make-the-dot" +} diff --git a/site/public/v1/software/make/index.json b/site/public/v1/software/make/index.json new file mode 100644 index 000000000000..0abf39ebc7c1 --- /dev/null +++ b/site/public/v1/software/make/index.json @@ -0,0 +1,19 @@ +{ + "id": 5716, + "slug": "make", + "name": "Make", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134866480" + ], + "created_at": "2026-07-10T10:12:41.704852", + "updated_at": "2026-07-10T10:12:41.704852", + "url": "/v1/software/make" +} diff --git a/site/public/v1/software/makebootfat/index.json b/site/public/v1/software/makebootfat/index.json new file mode 100644 index 000000000000..a8e164a4ebad --- /dev/null +++ b/site/public/v1/software/makebootfat/index.json @@ -0,0 +1,19 @@ +{ + "id": 5717, + "slug": "makebootfat", + "name": "makebootfat", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62851637" + ], + "created_at": "2026-07-10T10:12:41.705843", + "updated_at": "2026-07-10T10:12:41.705843", + "url": "/v1/software/makebootfat" +} diff --git a/site/public/v1/software/makecd/index.json b/site/public/v1/software/makecd/index.json new file mode 100644 index 000000000000..89ce5720bbe4 --- /dev/null +++ b/site/public/v1/software/makecd/index.json @@ -0,0 +1,21 @@ +{ + "id": 5718, + "slug": "makecd", + "name": "MakeCD", + "release_date": "1996-01-01", + "developers": [], + "publishers": [], + "operating_systems": [ + "AmigaOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q29364586" + ], + "created_at": "2026-07-10T10:12:41.705843", + "updated_at": "2026-07-10T10:12:41.705843", + "url": "/v1/software/makecd" +} diff --git a/site/public/v1/software/makeheaders/index.json b/site/public/v1/software/makeheaders/index.json new file mode 100644 index 000000000000..eafc3e2a1fd1 --- /dev/null +++ b/site/public/v1/software/makeheaders/index.json @@ -0,0 +1,19 @@ +{ + "id": 5719, + "slug": "makeheaders", + "name": "makeheaders", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63064788" + ], + "created_at": "2026-07-10T10:12:41.705843", + "updated_at": "2026-07-10T10:12:41.705843", + "url": "/v1/software/makeheaders" +} diff --git a/site/public/v1/software/makemkv/index.json b/site/public/v1/software/makemkv/index.json new file mode 100644 index 000000000000..0f9c477b4495 --- /dev/null +++ b/site/public/v1/software/makemkv/index.json @@ -0,0 +1,23 @@ +{ + "id": 5720, + "slug": "makemkv", + "name": "MakeMKV", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Unix-like operating system", + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11232702" + ], + "created_at": "2026-07-10T10:12:41.706850", + "updated_at": "2026-07-10T10:12:41.706850", + "url": "/v1/software/makemkv" +} diff --git a/site/public/v1/software/makemodes/index.json b/site/public/v1/software/makemodes/index.json new file mode 100644 index 000000000000..61997cf53be3 --- /dev/null +++ b/site/public/v1/software/makemodes/index.json @@ -0,0 +1,23 @@ +{ + "id": 5721, + "slug": "makemodes", + "name": "MakeModes", + "release_date": null, + "developers": [ + "Acorn Computers" + ], + "publishers": [], + "operating_systems": [ + "RISC OS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6738879" + ], + "created_at": "2026-07-10T10:12:41.706850", + "updated_at": "2026-07-10T10:12:41.706850", + "url": "/v1/software/makemodes" +} diff --git a/site/public/v1/software/makepasswd/index.json b/site/public/v1/software/makepasswd/index.json new file mode 100644 index 000000000000..fe92d9edde8d --- /dev/null +++ b/site/public/v1/software/makepasswd/index.json @@ -0,0 +1,19 @@ +{ + "id": 5722, + "slug": "makepasswd", + "name": "Makepasswd", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62854630" + ], + "created_at": "2026-07-10T10:12:41.706850", + "updated_at": "2026-07-10T10:12:41.706850", + "url": "/v1/software/makepasswd" +} diff --git a/site/public/v1/software/makers-empire-3d/index.json b/site/public/v1/software/makers-empire-3d/index.json new file mode 100644 index 000000000000..97d720dbad96 --- /dev/null +++ b/site/public/v1/software/makers-empire-3d/index.json @@ -0,0 +1,19 @@ +{ + "id": 5723, + "slug": "makers-empire-3d", + "name": "Makers Empire 3D", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q30644295" + ], + "created_at": "2026-07-10T10:12:41.706850", + "updated_at": "2026-07-10T10:12:41.706850", + "url": "/v1/software/makers-empire-3d" +} diff --git a/site/public/v1/software/making-waves/index.json b/site/public/v1/software/making-waves/index.json new file mode 100644 index 000000000000..c5e8c9a11ec8 --- /dev/null +++ b/site/public/v1/software/making-waves/index.json @@ -0,0 +1,19 @@ +{ + "id": 5724, + "slug": "making-waves", + "name": "Making Waves", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q20712356" + ], + "created_at": "2026-07-10T10:12:41.707891", + "updated_at": "2026-07-10T10:12:41.707891", + "url": "/v1/software/making-waves" +} diff --git a/site/public/v1/software/mallet-package-for-r/index.json b/site/public/v1/software/mallet-package-for-r/index.json new file mode 100644 index 000000000000..73843a45a578 --- /dev/null +++ b/site/public/v1/software/mallet-package-for-r/index.json @@ -0,0 +1,19 @@ +{ + "id": 5725, + "slug": "mallet-package-for-r", + "name": "MALLET package for R", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087827" + ], + "created_at": "2026-07-10T10:12:41.707891", + "updated_at": "2026-07-10T10:12:41.707891", + "url": "/v1/software/mallet-package-for-r" +} diff --git a/site/public/v1/software/mallzee/index.json b/site/public/v1/software/mallzee/index.json new file mode 100644 index 000000000000..ac19d624dc35 --- /dev/null +++ b/site/public/v1/software/mallzee/index.json @@ -0,0 +1,21 @@ +{ + "id": 5726, + "slug": "mallzee", + "name": "Mallzee", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "iOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22095855" + ], + "created_at": "2026-07-10T10:12:41.708886", + "updated_at": "2026-07-10T10:12:41.708886", + "url": "/v1/software/mallzee" +} diff --git a/site/public/v1/software/malpas-software-static-analysis-toolset/index.json b/site/public/v1/software/malpas-software-static-analysis-toolset/index.json new file mode 100644 index 000000000000..9bdac1c2edae --- /dev/null +++ b/site/public/v1/software/malpas-software-static-analysis-toolset/index.json @@ -0,0 +1,23 @@ +{ + "id": 5727, + "slug": "malpas-software-static-analysis-toolset", + "name": "MALPAS Software Static Analysis Toolset", + "release_date": null, + "developers": [ + "Atkins" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6714257" + ], + "created_at": "2026-07-10T10:12:41.708886", + "updated_at": "2026-07-10T10:12:41.708886", + "url": "/v1/software/malpas-software-static-analysis-toolset" +} diff --git a/site/public/v1/software/maltego/index.json b/site/public/v1/software/maltego/index.json new file mode 100644 index 000000000000..43f50f4f476c --- /dev/null +++ b/site/public/v1/software/maltego/index.json @@ -0,0 +1,26 @@ +{ + "id": 5728, + "slug": "maltego", + "name": "Maltego", + "release_date": "2007-01-01", + "developers": [], + "publishers": [], + "operating_systems": [ + "Mac operating system", + "Microsoft Windows" + ], + "programming_languages": [ + "Java" + ], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6744768" + ], + "created_at": "2026-07-10T10:12:41.708886", + "updated_at": "2026-07-10T10:12:41.708886", + "url": "/v1/software/maltego" +} diff --git a/site/public/v1/software/maltparser/index.json b/site/public/v1/software/maltparser/index.json new file mode 100644 index 000000000000..d4bbcb9c84e3 --- /dev/null +++ b/site/public/v1/software/maltparser/index.json @@ -0,0 +1,19 @@ +{ + "id": 5729, + "slug": "maltparser", + "name": "MaltParser", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085097" + ], + "created_at": "2026-07-10T10:12:41.708886", + "updated_at": "2026-07-10T10:12:41.708886", + "url": "/v1/software/maltparser" +} diff --git a/site/public/v1/software/mamba/index.json b/site/public/v1/software/mamba/index.json new file mode 100644 index 000000000000..9032c76ddcf5 --- /dev/null +++ b/site/public/v1/software/mamba/index.json @@ -0,0 +1,21 @@ +{ + "id": 5730, + "slug": "mamba", + "name": "mamba", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "3-clause BSD License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113018338" + ], + "created_at": "2026-07-10T10:12:41.709856", + "updated_at": "2026-07-10T10:12:41.709856", + "url": "/v1/software/mamba" +} diff --git a/site/public/v1/software/mammoinsight/index.json b/site/public/v1/software/mammoinsight/index.json new file mode 100644 index 000000000000..9c478c0585ac --- /dev/null +++ b/site/public/v1/software/mammoinsight/index.json @@ -0,0 +1,23 @@ +{ + "id": 5731, + "slug": "mammoinsight", + "name": "MammoInsight", + "release_date": "2022-01-01", + "developers": [ + "National Scientific and Technical Research Council" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Python" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138751939" + ], + "created_at": "2026-07-10T10:12:41.709856", + "updated_at": "2026-07-10T10:12:41.709856", + "url": "/v1/software/mammoinsight" +} diff --git a/site/public/v1/software/man2html/index.json b/site/public/v1/software/man2html/index.json new file mode 100644 index 000000000000..852ab7736f71 --- /dev/null +++ b/site/public/v1/software/man2html/index.json @@ -0,0 +1,19 @@ +{ + "id": 5732, + "slug": "man2html", + "name": "man2html", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62854603" + ], + "created_at": "2026-07-10T10:12:41.709856", + "updated_at": "2026-07-10T10:12:41.709856", + "url": "/v1/software/man2html" +} diff --git a/site/public/v1/software/manaba/index.json b/site/public/v1/software/manaba/index.json new file mode 100644 index 000000000000..b86581abb5f5 --- /dev/null +++ b/site/public/v1/software/manaba/index.json @@ -0,0 +1,21 @@ +{ + "id": 5733, + "slug": "manaba", + "name": "manaba", + "release_date": "2007-01-01", + "developers": [ + "ASAHI Net" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6746557" + ], + "created_at": "2026-07-10T10:12:41.710854", + "updated_at": "2026-07-10T10:12:41.710854", + "url": "/v1/software/manaba" +} diff --git a/site/public/v1/software/managed-directx/index.json b/site/public/v1/software/managed-directx/index.json new file mode 100644 index 000000000000..de31a06d4012 --- /dev/null +++ b/site/public/v1/software/managed-directx/index.json @@ -0,0 +1,21 @@ +{ + "id": 5734, + "slug": "managed-directx", + "name": "Managed DirectX", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6746632" + ], + "created_at": "2026-07-10T10:12:41.710854", + "updated_at": "2026-07-10T10:12:41.710854", + "url": "/v1/software/managed-directx" +} diff --git a/site/public/v1/software/managed-extensibility-framework-q112629111/index.json b/site/public/v1/software/managed-extensibility-framework-q112629111/index.json new file mode 100644 index 000000000000..b260eaf0f390 --- /dev/null +++ b/site/public/v1/software/managed-extensibility-framework-q112629111/index.json @@ -0,0 +1,19 @@ +{ + "id": 5735, + "slug": "managed-extensibility-framework-q112629111", + "name": "Managed Extensibility Framework", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112629111" + ], + "created_at": "2026-07-10T10:12:41.710854", + "updated_at": "2026-07-10T10:12:41.710854", + "url": "/v1/software/managed-extensibility-framework-q112629111" +} diff --git a/site/public/v1/software/managed-extensibility-framework/index.json b/site/public/v1/software/managed-extensibility-framework/index.json new file mode 100644 index 000000000000..d6f77d0de0bb --- /dev/null +++ b/site/public/v1/software/managed-extensibility-framework/index.json @@ -0,0 +1,21 @@ +{ + "id": 5736, + "slug": "managed-extensibility-framework", + "name": "Managed Extensibility Framework", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6746631" + ], + "created_at": "2026-07-10T10:12:41.710854", + "updated_at": "2026-07-10T10:12:41.710854", + "url": "/v1/software/managed-extensibility-framework" +} diff --git a/site/public/v1/software/managedq/index.json b/site/public/v1/software/managedq/index.json new file mode 100644 index 000000000000..6d50fce8aa02 --- /dev/null +++ b/site/public/v1/software/managedq/index.json @@ -0,0 +1,19 @@ +{ + "id": 5737, + "slug": "managedq", + "name": "ManagedQ", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085098" + ], + "created_at": "2026-07-10T10:12:41.710854", + "updated_at": "2026-07-10T10:12:41.710854", + "url": "/v1/software/managedq" +} diff --git a/site/public/v1/software/manageengine-servicedesk-plus/index.json b/site/public/v1/software/manageengine-servicedesk-plus/index.json new file mode 100644 index 000000000000..4f91b2c0ff05 --- /dev/null +++ b/site/public/v1/software/manageengine-servicedesk-plus/index.json @@ -0,0 +1,19 @@ +{ + "id": 5738, + "slug": "manageengine-servicedesk-plus", + "name": "ManageEngine ServiceDesk Plus", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q20110239" + ], + "created_at": "2026-07-10T10:12:41.712436", + "updated_at": "2026-07-10T10:12:41.712436", + "url": "/v1/software/manageengine-servicedesk-plus" +} diff --git a/site/public/v1/software/manageengine/index.json b/site/public/v1/software/manageengine/index.json new file mode 100644 index 000000000000..2cf18ea93acb --- /dev/null +++ b/site/public/v1/software/manageengine/index.json @@ -0,0 +1,19 @@ +{ + "id": 5739, + "slug": "manageengine", + "name": "ManageEngine", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1888559" + ], + "created_at": "2026-07-10T10:12:41.712436", + "updated_at": "2026-07-10T10:12:41.712436", + "url": "/v1/software/manageengine" +} diff --git a/site/public/v1/software/management-agent/index.json b/site/public/v1/software/management-agent/index.json new file mode 100644 index 000000000000..108e971b6164 --- /dev/null +++ b/site/public/v1/software/management-agent/index.json @@ -0,0 +1,19 @@ +{ + "id": 5740, + "slug": "management-agent", + "name": "Management agent", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6746680" + ], + "created_at": "2026-07-10T10:12:41.712436", + "updated_at": "2026-07-10T10:12:41.712436", + "url": "/v1/software/management-agent" +} diff --git a/site/public/v1/software/managepro/index.json b/site/public/v1/software/managepro/index.json new file mode 100644 index 000000000000..65d572704396 --- /dev/null +++ b/site/public/v1/software/managepro/index.json @@ -0,0 +1,19 @@ +{ + "id": 5741, + "slug": "managepro", + "name": "ManagePro", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6746630" + ], + "created_at": "2026-07-10T10:12:41.713511", + "updated_at": "2026-07-10T10:12:41.713511", + "url": "/v1/software/managepro" +} diff --git a/site/public/v1/software/managewp/index.json b/site/public/v1/software/managewp/index.json new file mode 100644 index 000000000000..83c9e3f0ef77 --- /dev/null +++ b/site/public/v1/software/managewp/index.json @@ -0,0 +1,19 @@ +{ + "id": 5742, + "slug": "managewp", + "name": "ManageWP", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085099" + ], + "created_at": "2026-07-10T10:12:41.713511", + "updated_at": "2026-07-10T10:12:41.713511", + "url": "/v1/software/managewp" +} diff --git a/site/public/v1/software/managing-your-money/index.json b/site/public/v1/software/managing-your-money/index.json new file mode 100644 index 000000000000..d062cab59216 --- /dev/null +++ b/site/public/v1/software/managing-your-money/index.json @@ -0,0 +1,21 @@ +{ + "id": 5743, + "slug": "managing-your-money", + "name": "Managing Your Money", + "release_date": null, + "developers": [ + "MECA Software" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121614167" + ], + "created_at": "2026-07-10T10:12:41.713511", + "updated_at": "2026-07-10T10:12:41.713511", + "url": "/v1/software/managing-your-money" +} diff --git a/site/public/v1/software/manatee-open/index.json b/site/public/v1/software/manatee-open/index.json new file mode 100644 index 000000000000..fdcc343694b1 --- /dev/null +++ b/site/public/v1/software/manatee-open/index.json @@ -0,0 +1,21 @@ +{ + "id": 5744, + "slug": "manatee-open", + "name": "Manatee-open", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "GNU General Public License, version 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134734477" + ], + "created_at": "2026-07-10T10:12:41.714494", + "updated_at": "2026-07-10T10:12:41.714494", + "url": "/v1/software/manatee-open" +} diff --git a/site/public/v1/software/mango-tv/index.json b/site/public/v1/software/mango-tv/index.json new file mode 100644 index 000000000000..4ff6058b7ddc --- /dev/null +++ b/site/public/v1/software/mango-tv/index.json @@ -0,0 +1,19 @@ +{ + "id": 5745, + "slug": "mango-tv", + "name": "Mango TV", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q24833016" + ], + "created_at": "2026-07-10T10:12:41.714494", + "updated_at": "2026-07-10T10:12:41.714494", + "url": "/v1/software/mango-tv" +} diff --git a/site/public/v1/software/mango/index.json b/site/public/v1/software/mango/index.json new file mode 100644 index 000000000000..2dd775ab3384 --- /dev/null +++ b/site/public/v1/software/mango/index.json @@ -0,0 +1,25 @@ +{ + "id": 5746, + "slug": "mango", + "name": "Mango", + "release_date": null, + "developers": [ + "University of Texas Health Science Center at San Antonio" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Java" + ], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2426245" + ], + "created_at": "2026-07-10T10:12:41.714494", + "updated_at": "2026-07-10T10:12:41.714494", + "url": "/v1/software/mango" +} diff --git a/site/public/v1/software/manifest/index.json b/site/public/v1/software/manifest/index.json new file mode 100644 index 000000000000..506eafb2645d --- /dev/null +++ b/site/public/v1/software/manifest/index.json @@ -0,0 +1,27 @@ +{ + "id": 5747, + "slug": "manifest", + "name": "Manifest", + "release_date": null, + "developers": [ + "Bruno Pérez", + "Sébastien Conejo" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "TypeScript", + "YAML" + ], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q133252448" + ], + "created_at": "2026-07-10T10:12:41.714494", + "updated_at": "2026-07-10T10:12:41.714494", + "url": "/v1/software/manifest" +} diff --git a/site/public/v1/software/manifold-scholarship/index.json b/site/public/v1/software/manifold-scholarship/index.json new file mode 100644 index 000000000000..e4be230f9656 --- /dev/null +++ b/site/public/v1/software/manifold-scholarship/index.json @@ -0,0 +1,22 @@ +{ + "id": 5748, + "slug": "manifold-scholarship", + "name": "Manifold Scholarship", + "release_date": null, + "developers": [ + "University of Minnesota Press", + "CUNY Graduate School and University Center" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q96473453" + ], + "created_at": "2026-07-10T10:12:41.715510", + "updated_at": "2026-07-10T10:12:41.715510", + "url": "/v1/software/manifold-scholarship" +} diff --git a/site/public/v1/software/manjam-com/index.json b/site/public/v1/software/manjam-com/index.json new file mode 100644 index 000000000000..5ecbdcaca205 --- /dev/null +++ b/site/public/v1/software/manjam-com/index.json @@ -0,0 +1,19 @@ +{ + "id": 5749, + "slug": "manjam-com", + "name": "Manjam.com", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17510927" + ], + "created_at": "2026-07-10T10:12:41.715510", + "updated_at": "2026-07-10T10:12:41.715510", + "url": "/v1/software/manjam-com" +} diff --git a/site/public/v1/software/manman/index.json b/site/public/v1/software/manman/index.json new file mode 100644 index 000000000000..b6f9fe2f1950 --- /dev/null +++ b/site/public/v1/software/manman/index.json @@ -0,0 +1,19 @@ +{ + "id": 5750, + "slug": "manman", + "name": "Manman", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107388957" + ], + "created_at": "2026-07-10T10:12:41.715510", + "updated_at": "2026-07-10T10:12:41.715510", + "url": "/v1/software/manman" +} diff --git a/site/public/v1/software/manta/index.json b/site/public/v1/software/manta/index.json new file mode 100644 index 000000000000..ddde9f483b5b --- /dev/null +++ b/site/public/v1/software/manta/index.json @@ -0,0 +1,19 @@ +{ + "id": 5751, + "slug": "manta", + "name": "MANTA", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17210902" + ], + "created_at": "2026-07-10T10:12:41.716573", + "updated_at": "2026-07-10T10:12:41.716573", + "url": "/v1/software/manta" +} diff --git a/site/public/v1/software/manticore/index.json b/site/public/v1/software/manticore/index.json new file mode 100644 index 000000000000..f57a4a60fb47 --- /dev/null +++ b/site/public/v1/software/manticore/index.json @@ -0,0 +1,19 @@ +{ + "id": 5752, + "slug": "manticore", + "name": "manticore", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127485783" + ], + "created_at": "2026-07-10T10:12:41.716573", + "updated_at": "2026-07-10T10:12:41.716573", + "url": "/v1/software/manticore" +} diff --git a/site/public/v1/software/mantis-bug-tracker/index.json b/site/public/v1/software/mantis-bug-tracker/index.json new file mode 100644 index 000000000000..0609b9819a0f --- /dev/null +++ b/site/public/v1/software/mantis-bug-tracker/index.json @@ -0,0 +1,31 @@ +{ + "id": 5753, + "slug": "mantis-bug-tracker", + "name": "Mantis Bug Tracker", + "release_date": "2000-11-01", + "developers": [], + "publishers": [], + "operating_systems": [ + "Berkeley Software Distribution", + "Unix-like operating system", + "Solaris", + "macOS", + "Microsoft Windows" + ], + "programming_languages": [ + "PHP", + "HTML", + "Cascading Style Sheets" + ], + "licenses": [ + "GNU General Public License, version 2.0 or later" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1421571" + ], + "created_at": "2026-07-10T10:12:41.716573", + "updated_at": "2026-07-10T10:12:41.716573", + "url": "/v1/software/mantis-bug-tracker" +} diff --git a/site/public/v1/software/mantle/index.json b/site/public/v1/software/mantle/index.json new file mode 100644 index 000000000000..46983aa17518 --- /dev/null +++ b/site/public/v1/software/mantle/index.json @@ -0,0 +1,21 @@ +{ + "id": 5754, + "slug": "mantle", + "name": "Mantle", + "release_date": null, + "developers": [ + "AMD" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q15039395" + ], + "created_at": "2026-07-10T10:12:41.717505", + "updated_at": "2026-07-10T10:12:41.717505", + "url": "/v1/software/mantle" +} diff --git a/site/public/v1/software/manuelbastionilab/index.json b/site/public/v1/software/manuelbastionilab/index.json new file mode 100644 index 000000000000..e517298d8e33 --- /dev/null +++ b/site/public/v1/software/manuelbastionilab/index.json @@ -0,0 +1,21 @@ +{ + "id": 5755, + "slug": "manuelbastionilab", + "name": "ManuelbastioniLAB", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Python" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q30638559" + ], + "created_at": "2026-07-10T10:12:41.717505", + "updated_at": "2026-07-10T10:12:41.717505", + "url": "/v1/software/manuelbastionilab" +} diff --git a/site/public/v1/software/manupl-n/index.json b/site/public/v1/software/manupl-n/index.json new file mode 100644 index 000000000000..daffe0134150 --- /dev/null +++ b/site/public/v1/software/manupl-n/index.json @@ -0,0 +1,19 @@ +{ + "id": 5756, + "slug": "manupl-n", + "name": "Manupl@n", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10324753" + ], + "created_at": "2026-07-10T10:12:41.717505", + "updated_at": "2026-07-10T10:12:41.717505", + "url": "/v1/software/manupl-n" +} diff --git a/site/public/v1/software/manus/index.json b/site/public/v1/software/manus/index.json new file mode 100644 index 000000000000..cb5a1856cfef --- /dev/null +++ b/site/public/v1/software/manus/index.json @@ -0,0 +1,19 @@ +{ + "id": 5757, + "slug": "manus", + "name": "Manus", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q133102805" + ], + "created_at": "2026-07-10T10:12:41.718559", + "updated_at": "2026-07-10T10:12:41.718559", + "url": "/v1/software/manus" +} diff --git a/site/public/v1/software/manuscript-desk/index.json b/site/public/v1/software/manuscript-desk/index.json new file mode 100644 index 000000000000..ac3f676e73ea --- /dev/null +++ b/site/public/v1/software/manuscript-desk/index.json @@ -0,0 +1,19 @@ +{ + "id": 5758, + "slug": "manuscript-desk", + "name": "Manuscript Desk", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085102" + ], + "created_at": "2026-07-10T10:12:41.718559", + "updated_at": "2026-07-10T10:12:41.718559", + "url": "/v1/software/manuscript-desk" +} diff --git a/site/public/v1/software/manycam/index.json b/site/public/v1/software/manycam/index.json new file mode 100644 index 000000000000..5bf58dfee994 --- /dev/null +++ b/site/public/v1/software/manycam/index.json @@ -0,0 +1,21 @@ +{ + "id": 5759, + "slug": "manycam", + "name": "ManyCam", + "release_date": null, + "developers": [ + "Visicom Media" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6753328" + ], + "created_at": "2026-07-10T10:12:41.718559", + "updated_at": "2026-07-10T10:12:41.718559", + "url": "/v1/software/manycam" +} diff --git a/site/public/v1/software/manydesigns-portofino/index.json b/site/public/v1/software/manydesigns-portofino/index.json new file mode 100644 index 000000000000..775075e26e87 --- /dev/null +++ b/site/public/v1/software/manydesigns-portofino/index.json @@ -0,0 +1,21 @@ +{ + "id": 5760, + "slug": "manydesigns-portofino", + "name": "ManyDesigns Portofino", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Java" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3845151" + ], + "created_at": "2026-07-10T10:12:41.718559", + "updated_at": "2026-07-10T10:12:41.718559", + "url": "/v1/software/manydesigns-portofino" +} diff --git a/site/public/v1/software/manzi-os/index.json b/site/public/v1/software/manzi-os/index.json new file mode 100644 index 000000000000..11e78c8a0b3f --- /dev/null +++ b/site/public/v1/software/manzi-os/index.json @@ -0,0 +1,19 @@ +{ + "id": 5761, + "slug": "manzi-os", + "name": "Manzi OS", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138757892" + ], + "created_at": "2026-07-10T10:12:41.719530", + "updated_at": "2026-07-10T10:12:41.719530", + "url": "/v1/software/manzi-os" +} diff --git a/site/public/v1/software/map-overlay-and-statistical-system/index.json b/site/public/v1/software/map-overlay-and-statistical-system/index.json new file mode 100644 index 000000000000..5721b3972065 --- /dev/null +++ b/site/public/v1/software/map-overlay-and-statistical-system/index.json @@ -0,0 +1,23 @@ +{ + "id": 5762, + "slug": "map-overlay-and-statistical-system", + "name": "Map Overlay and Statistical System", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Fortran" + ], + "licenses": [ + "Unlicense" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17148726" + ], + "created_at": "2026-07-10T10:12:41.719530", + "updated_at": "2026-07-10T10:12:41.719530", + "url": "/v1/software/map-overlay-and-statistical-system" +} diff --git a/site/public/v1/software/map-warper/index.json b/site/public/v1/software/map-warper/index.json new file mode 100644 index 000000000000..3d8fcf67e546 --- /dev/null +++ b/site/public/v1/software/map-warper/index.json @@ -0,0 +1,21 @@ +{ + "id": 5763, + "slug": "map-warper", + "name": "Map Warper", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085109" + ], + "created_at": "2026-07-10T10:12:41.719530", + "updated_at": "2026-07-10T10:12:41.719530", + "url": "/v1/software/map-warper" +} diff --git a/site/public/v1/software/mapalist/index.json b/site/public/v1/software/mapalist/index.json new file mode 100644 index 000000000000..6dc3df884352 --- /dev/null +++ b/site/public/v1/software/mapalist/index.json @@ -0,0 +1,19 @@ +{ + "id": 5764, + "slug": "mapalist", + "name": "MapAList", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085103" + ], + "created_at": "2026-07-10T10:12:41.720563", + "updated_at": "2026-07-10T10:12:41.720563", + "url": "/v1/software/mapalist" +} diff --git a/site/public/v1/software/mapamap/index.json b/site/public/v1/software/mapamap/index.json new file mode 100644 index 000000000000..cf9a92b850bb --- /dev/null +++ b/site/public/v1/software/mapamap/index.json @@ -0,0 +1,19 @@ +{ + "id": 5765, + "slug": "mapamap", + "name": "MapaMap", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11767238" + ], + "created_at": "2026-07-10T10:12:41.720563", + "updated_at": "2026-07-10T10:12:41.720563", + "url": "/v1/software/mapamap" +} diff --git a/site/public/v1/software/mapbasic/index.json b/site/public/v1/software/mapbasic/index.json new file mode 100644 index 000000000000..d3bcbd2b28b7 --- /dev/null +++ b/site/public/v1/software/mapbasic/index.json @@ -0,0 +1,21 @@ +{ + "id": 5766, + "slug": "mapbasic", + "name": "MapBasic", + "release_date": null, + "developers": [ + "Pitney Bowes" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6753717" + ], + "created_at": "2026-07-10T10:12:41.720563", + "updated_at": "2026-07-10T10:12:41.720563", + "url": "/v1/software/mapbasic" +} diff --git a/site/public/v1/software/mapcraft/index.json b/site/public/v1/software/mapcraft/index.json new file mode 100644 index 000000000000..dcbbe6b70aa8 --- /dev/null +++ b/site/public/v1/software/mapcraft/index.json @@ -0,0 +1,19 @@ +{ + "id": 5767, + "slug": "mapcraft", + "name": "MapCraft", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085104" + ], + "created_at": "2026-07-10T10:12:41.721537", + "updated_at": "2026-07-10T10:12:41.721537", + "url": "/v1/software/mapcraft" +} diff --git a/site/public/v1/software/mapdotnet/index.json b/site/public/v1/software/mapdotnet/index.json new file mode 100644 index 000000000000..5140ffb07498 --- /dev/null +++ b/site/public/v1/software/mapdotnet/index.json @@ -0,0 +1,21 @@ +{ + "id": 5768, + "slug": "mapdotnet", + "name": "MapDotNet", + "release_date": null, + "developers": [ + "ISC" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6753720" + ], + "created_at": "2026-07-10T10:12:41.721537", + "updated_at": "2026-07-10T10:12:41.721537", + "url": "/v1/software/mapdotnet" +} diff --git a/site/public/v1/software/maphub/index.json b/site/public/v1/software/maphub/index.json new file mode 100644 index 000000000000..0977fdef8376 --- /dev/null +++ b/site/public/v1/software/maphub/index.json @@ -0,0 +1,19 @@ +{ + "id": 5769, + "slug": "maphub", + "name": "MapHub", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085105" + ], + "created_at": "2026-07-10T10:12:41.721537", + "updated_at": "2026-07-10T10:12:41.721537", + "url": "/v1/software/maphub" +} diff --git a/site/public/v1/software/mapics/index.json b/site/public/v1/software/mapics/index.json new file mode 100644 index 000000000000..0d462f9cf977 --- /dev/null +++ b/site/public/v1/software/mapics/index.json @@ -0,0 +1,19 @@ +{ + "id": 5770, + "slug": "mapics", + "name": "MAPICS", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6714393" + ], + "created_at": "2026-07-10T10:12:41.722510", + "updated_at": "2026-07-10T10:12:41.722510", + "url": "/v1/software/mapics" +} diff --git a/site/public/v1/software/mapillary-uploader-for-desktop/index.json b/site/public/v1/software/mapillary-uploader-for-desktop/index.json new file mode 100644 index 000000000000..8107e524dccb --- /dev/null +++ b/site/public/v1/software/mapillary-uploader-for-desktop/index.json @@ -0,0 +1,22 @@ +{ + "id": 5771, + "slug": "mapillary-uploader-for-desktop", + "name": "Mapillary Uploader for Desktop", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107355953" + ], + "created_at": "2026-07-10T10:12:41.722510", + "updated_at": "2026-07-10T10:12:41.722510", + "url": "/v1/software/mapillary-uploader-for-desktop" +} diff --git a/site/public/v1/software/mapjack/index.json b/site/public/v1/software/mapjack/index.json new file mode 100644 index 000000000000..b141b6d0c194 --- /dev/null +++ b/site/public/v1/software/mapjack/index.json @@ -0,0 +1,19 @@ +{ + "id": 5772, + "slug": "mapjack", + "name": "MapJack", + "release_date": "2007-06-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3845184" + ], + "created_at": "2026-07-10T10:12:41.722510", + "updated_at": "2026-07-10T10:12:41.722510", + "url": "/v1/software/mapjack" +} diff --git a/site/public/v1/software/mapkurator/index.json b/site/public/v1/software/mapkurator/index.json new file mode 100644 index 000000000000..4cb9b46daa70 --- /dev/null +++ b/site/public/v1/software/mapkurator/index.json @@ -0,0 +1,21 @@ +{ + "id": 5773, + "slug": "mapkurator", + "name": "mapKurator", + "release_date": null, + "developers": [], + "publishers": [ + "Knowledge Computing Lab" + ], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124558370" + ], + "created_at": "2026-07-10T10:12:41.723507", + "updated_at": "2026-07-10T10:12:41.723507", + "url": "/v1/software/mapkurator" +} diff --git a/site/public/v1/software/maple-t-a/index.json b/site/public/v1/software/maple-t-a/index.json new file mode 100644 index 000000000000..2f8cac5bd7e6 --- /dev/null +++ b/site/public/v1/software/maple-t-a/index.json @@ -0,0 +1,21 @@ +{ + "id": 5774, + "slug": "maple-t-a", + "name": "Maple T.A.", + "release_date": null, + "developers": [ + "Waterloo Maple" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28163246" + ], + "created_at": "2026-07-10T10:12:41.723507", + "updated_at": "2026-07-10T10:12:41.723507", + "url": "/v1/software/maple-t-a" +} diff --git a/site/public/v1/software/maplesim/index.json b/site/public/v1/software/maplesim/index.json new file mode 100644 index 000000000000..7a4cc197e9d3 --- /dev/null +++ b/site/public/v1/software/maplesim/index.json @@ -0,0 +1,23 @@ +{ + "id": 5775, + "slug": "maplesim", + "name": "MapleSim", + "release_date": null, + "developers": [ + "Waterloo Maple" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6753830" + ], + "created_at": "2026-07-10T10:12:41.723507", + "updated_at": "2026-07-10T10:12:41.723507", + "url": "/v1/software/maplesim" +} diff --git a/site/public/v1/software/mapline/index.json b/site/public/v1/software/mapline/index.json new file mode 100644 index 000000000000..3fa5ffe89555 --- /dev/null +++ b/site/public/v1/software/mapline/index.json @@ -0,0 +1,19 @@ +{ + "id": 5776, + "slug": "mapline", + "name": "mapline", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087828" + ], + "created_at": "2026-07-10T10:12:41.724519", + "updated_at": "2026-07-10T10:12:41.724519", + "url": "/v1/software/mapline" +} diff --git a/site/public/v1/software/mapopolis/index.json b/site/public/v1/software/mapopolis/index.json new file mode 100644 index 000000000000..8e54b8513a24 --- /dev/null +++ b/site/public/v1/software/mapopolis/index.json @@ -0,0 +1,19 @@ +{ + "id": 5777, + "slug": "mapopolis", + "name": "Mapopolis", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6754143" + ], + "created_at": "2026-07-10T10:12:41.724519", + "updated_at": "2026-07-10T10:12:41.724519", + "url": "/v1/software/mapopolis" +} diff --git a/site/public/v1/software/maposmatic/index.json b/site/public/v1/software/maposmatic/index.json new file mode 100644 index 000000000000..64de60f1790c --- /dev/null +++ b/site/public/v1/software/maposmatic/index.json @@ -0,0 +1,19 @@ +{ + "id": 5778, + "slug": "maposmatic", + "name": "MapOSMatic", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115985473" + ], + "created_at": "2026-07-10T10:12:41.724519", + "updated_at": "2026-07-10T10:12:41.724519", + "url": "/v1/software/maposmatic" +} diff --git a/site/public/v1/software/mapping-memory-manager/index.json b/site/public/v1/software/mapping-memory-manager/index.json new file mode 100644 index 000000000000..42c2a900a48c --- /dev/null +++ b/site/public/v1/software/mapping-memory-manager/index.json @@ -0,0 +1,19 @@ +{ + "id": 5779, + "slug": "mapping-memory-manager", + "name": "Mapping Memory Manager", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085106" + ], + "created_at": "2026-07-10T10:12:41.724519", + "updated_at": "2026-07-10T10:12:41.724519", + "url": "/v1/software/mapping-memory-manager" +} diff --git a/site/public/v1/software/mapscii/index.json b/site/public/v1/software/mapscii/index.json new file mode 100644 index 000000000000..1cd2c86e2405 --- /dev/null +++ b/site/public/v1/software/mapscii/index.json @@ -0,0 +1,21 @@ +{ + "id": 5780, + "slug": "mapscii", + "name": "mapscii", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q56878906" + ], + "created_at": "2026-07-10T10:12:41.725568", + "updated_at": "2026-07-10T10:12:41.725568", + "url": "/v1/software/mapscii" +} diff --git a/site/public/v1/software/mapstory/index.json b/site/public/v1/software/mapstory/index.json new file mode 100644 index 000000000000..2ea5e8f89ff0 --- /dev/null +++ b/site/public/v1/software/mapstory/index.json @@ -0,0 +1,19 @@ +{ + "id": 5781, + "slug": "mapstory", + "name": "MapStory", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085107" + ], + "created_at": "2026-07-10T10:12:41.725568", + "updated_at": "2026-07-10T10:12:41.725568", + "url": "/v1/software/mapstory" +} diff --git a/site/public/v1/software/mapstraction/index.json b/site/public/v1/software/mapstraction/index.json new file mode 100644 index 000000000000..e7532eca7c29 --- /dev/null +++ b/site/public/v1/software/mapstraction/index.json @@ -0,0 +1,21 @@ +{ + "id": 5782, + "slug": "mapstraction", + "name": "Mapstraction", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "BSD licenses" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085108" + ], + "created_at": "2026-07-10T10:12:41.726521", + "updated_at": "2026-07-10T10:12:41.726521", + "url": "/v1/software/mapstraction" +} diff --git a/site/public/v1/software/maptitude/index.json b/site/public/v1/software/maptitude/index.json new file mode 100644 index 000000000000..9f590176adf1 --- /dev/null +++ b/site/public/v1/software/maptitude/index.json @@ -0,0 +1,21 @@ +{ + "id": 5783, + "slug": "maptitude", + "name": "Maptitude", + "release_date": null, + "developers": [ + "Caliper Corporation" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6754220" + ], + "created_at": "2026-07-10T10:12:41.726521", + "updated_at": "2026-07-10T10:12:41.726521", + "url": "/v1/software/maptitude" +} diff --git a/site/public/v1/software/mapumental/index.json b/site/public/v1/software/mapumental/index.json new file mode 100644 index 000000000000..f3670729f265 --- /dev/null +++ b/site/public/v1/software/mapumental/index.json @@ -0,0 +1,21 @@ +{ + "id": 5784, + "slug": "mapumental", + "name": "Mapumental", + "release_date": null, + "developers": [ + "Chris Lightfoot" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28130109" + ], + "created_at": "2026-07-10T10:12:41.726521", + "updated_at": "2026-07-10T10:12:41.726521", + "url": "/v1/software/mapumental" +} diff --git a/site/public/v1/software/mapx/index.json b/site/public/v1/software/mapx/index.json new file mode 100644 index 000000000000..f2c8e826e23c --- /dev/null +++ b/site/public/v1/software/mapx/index.json @@ -0,0 +1,21 @@ +{ + "id": 5785, + "slug": "mapx", + "name": "MapX", + "release_date": null, + "developers": [ + "GRID-Geneva" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124102336" + ], + "created_at": "2026-07-10T10:12:41.726521", + "updated_at": "2026-07-10T10:12:41.726521", + "url": "/v1/software/mapx" +} diff --git a/site/public/v1/software/marcedit/index.json b/site/public/v1/software/marcedit/index.json new file mode 100644 index 000000000000..58ce5d4aba53 --- /dev/null +++ b/site/public/v1/software/marcedit/index.json @@ -0,0 +1,23 @@ +{ + "id": 5786, + "slug": "marcedit", + "name": "MarcEdit", + "release_date": "2006-09-01", + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28444652" + ], + "created_at": "2026-07-10T10:12:41.727523", + "updated_at": "2026-07-10T10:12:41.727523", + "url": "/v1/software/marcedit" +} diff --git a/site/public/v1/software/maren/index.json b/site/public/v1/software/maren/index.json new file mode 100644 index 000000000000..a76c8711dadd --- /dev/null +++ b/site/public/v1/software/maren/index.json @@ -0,0 +1,21 @@ +{ + "id": 5787, + "slug": "maren", + "name": "Maren", + "release_date": null, + "developers": [ + "Marorka" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6758950" + ], + "created_at": "2026-07-10T10:12:41.727523", + "updated_at": "2026-07-10T10:12:41.727523", + "url": "/v1/software/maren" +} diff --git a/site/public/v1/software/margbooks/index.json b/site/public/v1/software/margbooks/index.json new file mode 100644 index 000000000000..b7d12dd7fbae --- /dev/null +++ b/site/public/v1/software/margbooks/index.json @@ -0,0 +1,19 @@ +{ + "id": 5788, + "slug": "margbooks", + "name": "MargBooks", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123668024" + ], + "created_at": "2026-07-10T10:12:41.727523", + "updated_at": "2026-07-10T10:12:41.727523", + "url": "/v1/software/margbooks" +} diff --git a/site/public/v1/software/marionette/index.json b/site/public/v1/software/marionette/index.json new file mode 100644 index 000000000000..7b1861f827c1 --- /dev/null +++ b/site/public/v1/software/marionette/index.json @@ -0,0 +1,21 @@ +{ + "id": 5789, + "slug": "marionette", + "name": "Marionette", + "release_date": null, + "developers": [ + "Pixar" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q388105" + ], + "created_at": "2026-07-10T10:12:41.728511", + "updated_at": "2026-07-10T10:12:41.728511", + "url": "/v1/software/marionette" +} diff --git a/site/public/v1/software/markaby/index.json b/site/public/v1/software/markaby/index.json new file mode 100644 index 000000000000..88b8068c1dba --- /dev/null +++ b/site/public/v1/software/markaby/index.json @@ -0,0 +1,21 @@ +{ + "id": 5790, + "slug": "markaby", + "name": "markaby", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1699632" + ], + "created_at": "2026-07-10T10:12:41.728511", + "updated_at": "2026-07-10T10:12:41.728511", + "url": "/v1/software/markaby" +} diff --git a/site/public/v1/software/marketview/index.json b/site/public/v1/software/marketview/index.json new file mode 100644 index 000000000000..f24424314610 --- /dev/null +++ b/site/public/v1/software/marketview/index.json @@ -0,0 +1,21 @@ +{ + "id": 5791, + "slug": "marketview", + "name": "MarketView", + "release_date": null, + "developers": [ + "Enverus" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135263916" + ], + "created_at": "2026-07-10T10:12:41.728511", + "updated_at": "2026-07-10T10:12:41.728511", + "url": "/v1/software/marketview" +} diff --git a/site/public/v1/software/marklogic/index.json b/site/public/v1/software/marklogic/index.json new file mode 100644 index 000000000000..bc26248d84ef --- /dev/null +++ b/site/public/v1/software/marklogic/index.json @@ -0,0 +1,23 @@ +{ + "id": 5792, + "slug": "marklogic", + "name": "MarkLogic", + "release_date": null, + "developers": [ + "MarkLogic" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q29364583" + ], + "created_at": "2026-07-10T10:12:41.729448", + "updated_at": "2026-07-10T10:12:41.729448", + "url": "/v1/software/marklogic" +} diff --git a/site/public/v1/software/marlin/index.json b/site/public/v1/software/marlin/index.json new file mode 100644 index 000000000000..adc6d3df14da --- /dev/null +++ b/site/public/v1/software/marlin/index.json @@ -0,0 +1,21 @@ +{ + "id": 5793, + "slug": "marlin", + "name": "Marlin", + "release_date": "2011-08-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "GNU General Public License, version 3.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q56290151" + ], + "created_at": "2026-07-10T10:12:41.729448", + "updated_at": "2026-07-10T10:12:41.729448", + "url": "/v1/software/marlin" +} diff --git a/site/public/v1/software/marq/index.json b/site/public/v1/software/marq/index.json new file mode 100644 index 000000000000..d6fba7e621ea --- /dev/null +++ b/site/public/v1/software/marq/index.json @@ -0,0 +1,19 @@ +{ + "id": 5794, + "slug": "marq", + "name": "Marq", + "release_date": "2013-10-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17067898" + ], + "created_at": "2026-07-10T10:12:41.729448", + "updated_at": "2026-07-10T10:12:41.729448", + "url": "/v1/software/marq" +} diff --git a/site/public/v1/software/marrest/index.json b/site/public/v1/software/marrest/index.json new file mode 100644 index 000000000000..8d7d3fa68341 --- /dev/null +++ b/site/public/v1/software/marrest/index.json @@ -0,0 +1,21 @@ +{ + "id": 5795, + "slug": "marrest", + "name": "MarRest", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "web browser" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138585893" + ], + "created_at": "2026-07-10T10:12:41.729448", + "updated_at": "2026-07-10T10:12:41.729448", + "url": "/v1/software/marrest" +} diff --git a/site/public/v1/software/mars-plm/index.json b/site/public/v1/software/mars-plm/index.json new file mode 100644 index 000000000000..a0a7b8a8b64e --- /dev/null +++ b/site/public/v1/software/mars-plm/index.json @@ -0,0 +1,19 @@ +{ + "id": 5796, + "slug": "mars-plm", + "name": "Mars PLM", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105947097" + ], + "created_at": "2026-07-10T10:12:41.730446", + "updated_at": "2026-07-10T10:12:41.730446", + "url": "/v1/software/mars-plm" +} diff --git a/site/public/v1/software/mars-regional-atmospheric-modeling-system/index.json b/site/public/v1/software/mars-regional-atmospheric-modeling-system/index.json new file mode 100644 index 000000000000..d662db895eba --- /dev/null +++ b/site/public/v1/software/mars-regional-atmospheric-modeling-system/index.json @@ -0,0 +1,19 @@ +{ + "id": 5797, + "slug": "mars-regional-atmospheric-modeling-system", + "name": "Mars regional atmospheric modeling system", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6773190" + ], + "created_at": "2026-07-10T10:12:41.730446", + "updated_at": "2026-07-10T10:12:41.730446", + "url": "/v1/software/mars-regional-atmospheric-modeling-system" +} diff --git a/site/public/v1/software/mars24/index.json b/site/public/v1/software/mars24/index.json new file mode 100644 index 000000000000..7ce7a70799be --- /dev/null +++ b/site/public/v1/software/mars24/index.json @@ -0,0 +1,21 @@ +{ + "id": 5798, + "slug": "mars24", + "name": "Mars24", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Java" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136268926" + ], + "created_at": "2026-07-10T10:12:41.730446", + "updated_at": "2026-07-10T10:12:41.731446", + "url": "/v1/software/mars24" +} diff --git a/site/public/v1/software/marshall-plan/index.json b/site/public/v1/software/marshall-plan/index.json new file mode 100644 index 000000000000..ea0cd96798fe --- /dev/null +++ b/site/public/v1/software/marshall-plan/index.json @@ -0,0 +1,19 @@ +{ + "id": 5799, + "slug": "marshall-plan", + "name": "Marshall Plan", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q30668407" + ], + "created_at": "2026-07-10T10:12:41.731446", + "updated_at": "2026-07-10T10:12:41.731446", + "url": "/v1/software/marshall-plan" +} diff --git a/site/public/v1/software/martux/index.json b/site/public/v1/software/martux/index.json new file mode 100644 index 000000000000..8c9cabf73cb6 --- /dev/null +++ b/site/public/v1/software/martux/index.json @@ -0,0 +1,19 @@ +{ + "id": 5800, + "slug": "martux", + "name": "marTux", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4043710" + ], + "created_at": "2026-07-10T10:12:41.731446", + "updated_at": "2026-07-10T10:12:41.731446", + "url": "/v1/software/martux" +} diff --git a/site/public/v1/software/marxan/index.json b/site/public/v1/software/marxan/index.json new file mode 100644 index 000000000000..6a46a1d753cb --- /dev/null +++ b/site/public/v1/software/marxan/index.json @@ -0,0 +1,19 @@ +{ + "id": 5801, + "slug": "marxan", + "name": "Marxan", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6778606" + ], + "created_at": "2026-07-10T10:12:41.731446", + "updated_at": "2026-07-10T10:12:41.731446", + "url": "/v1/software/marxan" +} diff --git a/site/public/v1/software/mash-q112583738/index.json b/site/public/v1/software/mash-q112583738/index.json new file mode 100644 index 000000000000..1b001ad775d5 --- /dev/null +++ b/site/public/v1/software/mash-q112583738/index.json @@ -0,0 +1,21 @@ +{ + "id": 5802, + "slug": "mash-q112583738", + "name": "MASH", + "release_date": "2010-01-01", + "developers": [ + "Autodesk" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112583738" + ], + "created_at": "2026-07-10T10:12:41.732448", + "updated_at": "2026-07-10T10:12:41.732448", + "url": "/v1/software/mash-q112583738" +} diff --git a/site/public/v1/software/mash-q62859498/index.json b/site/public/v1/software/mash-q62859498/index.json new file mode 100644 index 000000000000..76804cb8951f --- /dev/null +++ b/site/public/v1/software/mash-q62859498/index.json @@ -0,0 +1,19 @@ +{ + "id": 5803, + "slug": "mash-q62859498", + "name": "mash", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62859498" + ], + "created_at": "2026-07-10T10:12:41.732448", + "updated_at": "2026-07-10T10:12:41.732448", + "url": "/v1/software/mash-q62859498" +} diff --git a/site/public/v1/software/mash/index.json b/site/public/v1/software/mash/index.json new file mode 100644 index 000000000000..e3891e758788 --- /dev/null +++ b/site/public/v1/software/mash/index.json @@ -0,0 +1,19 @@ +{ + "id": 5804, + "slug": "mash", + "name": "MASH", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62859401" + ], + "created_at": "2026-07-10T10:12:41.733449", + "updated_at": "2026-07-10T10:12:41.733449", + "url": "/v1/software/mash" +} diff --git a/site/public/v1/software/masheev/index.json b/site/public/v1/software/masheev/index.json new file mode 100644 index 000000000000..fbd884396461 --- /dev/null +++ b/site/public/v1/software/masheev/index.json @@ -0,0 +1,19 @@ +{ + "id": 5805, + "slug": "masheev", + "name": "Masheev", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140007941" + ], + "created_at": "2026-07-10T10:12:41.733449", + "updated_at": "2026-07-10T10:12:41.733449", + "url": "/v1/software/masheev" +} diff --git a/site/public/v1/software/massive-pixel-environment/index.json b/site/public/v1/software/massive-pixel-environment/index.json new file mode 100644 index 000000000000..06b0b1690255 --- /dev/null +++ b/site/public/v1/software/massive-pixel-environment/index.json @@ -0,0 +1,19 @@ +{ + "id": 5806, + "slug": "massive-pixel-environment", + "name": "Massive Pixel Environment", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085111" + ], + "created_at": "2026-07-10T10:12:41.733449", + "updated_at": "2026-07-10T10:12:41.733449", + "url": "/v1/software/massive-pixel-environment" +} diff --git a/site/public/v1/software/massive/index.json b/site/public/v1/software/massive/index.json new file mode 100644 index 000000000000..b8e5e894d47a --- /dev/null +++ b/site/public/v1/software/massive/index.json @@ -0,0 +1,21 @@ +{ + "id": 5807, + "slug": "massive", + "name": "MASSIVE", + "release_date": null, + "developers": [ + "Stephen Regelous" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q568723" + ], + "created_at": "2026-07-10T10:12:41.733449", + "updated_at": "2026-07-10T10:12:41.733449", + "url": "/v1/software/massive" +} diff --git a/site/public/v1/software/massmatrix/index.json b/site/public/v1/software/massmatrix/index.json new file mode 100644 index 000000000000..19912126cacc --- /dev/null +++ b/site/public/v1/software/massmatrix/index.json @@ -0,0 +1,21 @@ +{ + "id": 5808, + "slug": "massmatrix", + "name": "MassMatrix", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18356863" + ], + "created_at": "2026-07-10T10:12:41.734539", + "updated_at": "2026-07-10T10:12:41.734539", + "url": "/v1/software/massmatrix" +} diff --git a/site/public/v1/software/massmine/index.json b/site/public/v1/software/massmine/index.json new file mode 100644 index 000000000000..e13d04d345b6 --- /dev/null +++ b/site/public/v1/software/massmine/index.json @@ -0,0 +1,19 @@ +{ + "id": 5809, + "slug": "massmine", + "name": "MassMine", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085112" + ], + "created_at": "2026-07-10T10:12:41.734539", + "updated_at": "2026-07-10T10:12:41.734539", + "url": "/v1/software/massmine" +} diff --git a/site/public/v1/software/masstransit-project/index.json b/site/public/v1/software/masstransit-project/index.json new file mode 100644 index 000000000000..2e292246cf35 --- /dev/null +++ b/site/public/v1/software/masstransit-project/index.json @@ -0,0 +1,21 @@ +{ + "id": 5810, + "slug": "masstransit-project", + "name": "MassTransit-Project", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Apache License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17042529" + ], + "created_at": "2026-07-10T10:12:41.735514", + "updated_at": "2026-07-10T10:12:41.735514", + "url": "/v1/software/masstransit-project" +} diff --git a/site/public/v1/software/master-pdf-editor/index.json b/site/public/v1/software/master-pdf-editor/index.json new file mode 100644 index 000000000000..9e2f404c333e --- /dev/null +++ b/site/public/v1/software/master-pdf-editor/index.json @@ -0,0 +1,19 @@ +{ + "id": 5811, + "slug": "master-pdf-editor", + "name": "Master PDF Editor", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q20850861" + ], + "created_at": "2026-07-10T10:12:41.735514", + "updated_at": "2026-07-10T10:12:41.735514", + "url": "/v1/software/master-pdf-editor" +} diff --git a/site/public/v1/software/master-tracks-pro/index.json b/site/public/v1/software/master-tracks-pro/index.json new file mode 100644 index 000000000000..01b32daf3c10 --- /dev/null +++ b/site/public/v1/software/master-tracks-pro/index.json @@ -0,0 +1,19 @@ +{ + "id": 5812, + "slug": "master-tracks-pro", + "name": "Master Tracks Pro", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6785105" + ], + "created_at": "2026-07-10T10:12:41.735514", + "updated_at": "2026-07-10T10:12:41.735514", + "url": "/v1/software/master-tracks-pro" +} diff --git a/site/public/v1/software/mastercoin/index.json b/site/public/v1/software/mastercoin/index.json new file mode 100644 index 000000000000..aef7bb32284a --- /dev/null +++ b/site/public/v1/software/mastercoin/index.json @@ -0,0 +1,23 @@ +{ + "id": 5813, + "slug": "mastercoin", + "name": "Mastercoin", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Python" + ], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q15494057" + ], + "created_at": "2026-07-10T10:12:41.735514", + "updated_at": "2026-07-10T10:12:41.735514", + "url": "/v1/software/mastercoin" +} diff --git a/site/public/v1/software/mastercook/index.json b/site/public/v1/software/mastercook/index.json new file mode 100644 index 000000000000..965484382359 --- /dev/null +++ b/site/public/v1/software/mastercook/index.json @@ -0,0 +1,19 @@ +{ + "id": 5814, + "slug": "mastercook", + "name": "MasterCook", + "release_date": "1992-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q65532911" + ], + "created_at": "2026-07-10T10:12:41.736507", + "updated_at": "2026-07-10T10:12:41.736507", + "url": "/v1/software/mastercook" +} diff --git a/site/public/v1/software/mastergear/index.json b/site/public/v1/software/mastergear/index.json new file mode 100644 index 000000000000..c0ae4b333473 --- /dev/null +++ b/site/public/v1/software/mastergear/index.json @@ -0,0 +1,26 @@ +{ + "id": 5815, + "slug": "mastergear", + "name": "MasterGear", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "SunOS", + "Maemo", + "OSF/1", + "FreeBSD", + "Solaris", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6005552" + ], + "created_at": "2026-07-10T10:12:41.736507", + "updated_at": "2026-07-10T10:12:41.736507", + "url": "/v1/software/mastergear" +} diff --git a/site/public/v1/software/masterpass/index.json b/site/public/v1/software/masterpass/index.json new file mode 100644 index 000000000000..ab1fe3d637c5 --- /dev/null +++ b/site/public/v1/software/masterpass/index.json @@ -0,0 +1,19 @@ +{ + "id": 5816, + "slug": "masterpass", + "name": "Masterpass", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q114231673" + ], + "created_at": "2026-07-10T10:12:41.736507", + "updated_at": "2026-07-10T10:12:41.736507", + "url": "/v1/software/masterpass" +} diff --git a/site/public/v1/software/masterplex-qt/index.json b/site/public/v1/software/masterplex-qt/index.json new file mode 100644 index 000000000000..7dd730194739 --- /dev/null +++ b/site/public/v1/software/masterplex-qt/index.json @@ -0,0 +1,23 @@ +{ + "id": 5817, + "slug": "masterplex-qt", + "name": "MasterPlex QT", + "release_date": null, + "developers": [ + "Hitachi Software Engineering" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6784971" + ], + "created_at": "2026-07-10T10:12:41.737533", + "updated_at": "2026-07-10T10:12:41.737533", + "url": "/v1/software/masterplex-qt" +} diff --git a/site/public/v1/software/masterplex-readerfit/index.json b/site/public/v1/software/masterplex-readerfit/index.json new file mode 100644 index 000000000000..c9fa699696a1 --- /dev/null +++ b/site/public/v1/software/masterplex-readerfit/index.json @@ -0,0 +1,23 @@ +{ + "id": 5818, + "slug": "masterplex-readerfit", + "name": "MasterPlex ReaderFit", + "release_date": null, + "developers": [ + "Hitachi Software Engineering" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11232830" + ], + "created_at": "2026-07-10T10:12:41.737533", + "updated_at": "2026-07-10T10:12:41.737533", + "url": "/v1/software/masterplex-readerfit" +} diff --git a/site/public/v1/software/masterportal/index.json b/site/public/v1/software/masterportal/index.json new file mode 100644 index 000000000000..b62995273067 --- /dev/null +++ b/site/public/v1/software/masterportal/index.json @@ -0,0 +1,19 @@ +{ + "id": 5819, + "slug": "masterportal", + "name": "Masterportal", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121501211" + ], + "created_at": "2026-07-10T10:12:41.737533", + "updated_at": "2026-07-10T10:12:41.737533", + "url": "/v1/software/masterportal" +} diff --git a/site/public/v1/software/matchlenz/index.json b/site/public/v1/software/matchlenz/index.json new file mode 100644 index 000000000000..0bf0a3ffeaa2 --- /dev/null +++ b/site/public/v1/software/matchlenz/index.json @@ -0,0 +1,19 @@ +{ + "id": 5820, + "slug": "matchlenz", + "name": "MatchLenz", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140167693" + ], + "created_at": "2026-07-10T10:12:41.738509", + "updated_at": "2026-07-10T10:12:41.738509", + "url": "/v1/software/matchlenz" +} diff --git a/site/public/v1/software/matchware-mediator/index.json b/site/public/v1/software/matchware-mediator/index.json new file mode 100644 index 000000000000..e02aa2393194 --- /dev/null +++ b/site/public/v1/software/matchware-mediator/index.json @@ -0,0 +1,19 @@ +{ + "id": 5821, + "slug": "matchware-mediator", + "name": "MatchWare Mediator", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130302781" + ], + "created_at": "2026-07-10T10:12:41.738509", + "updated_at": "2026-07-10T10:12:41.738509", + "url": "/v1/software/matchware-mediator" +} diff --git a/site/public/v1/software/mate-calc/index.json b/site/public/v1/software/mate-calc/index.json new file mode 100644 index 000000000000..d85d7524bac6 --- /dev/null +++ b/site/public/v1/software/mate-calc/index.json @@ -0,0 +1,19 @@ +{ + "id": 5822, + "slug": "mate-calc", + "name": "mate-calc", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065325" + ], + "created_at": "2026-07-10T10:12:41.738509", + "updated_at": "2026-07-10T10:12:41.738509", + "url": "/v1/software/mate-calc" +} diff --git a/site/public/v1/software/material-design/index.json b/site/public/v1/software/material-design/index.json new file mode 100644 index 000000000000..b530f03dfd39 --- /dev/null +++ b/site/public/v1/software/material-design/index.json @@ -0,0 +1,33 @@ +{ + "id": 5823, + "slug": "material-design", + "name": "Material Design", + "release_date": null, + "developers": [ + "Google" + ], + "publishers": [], + "operating_systems": [ + "cross-platform" + ], + "programming_languages": [ + "Java", + "Swift", + "Objective-C", + "Dart", + "TypeScript" + ], + "licenses": [ + "3-clause BSD License", + "Apache Software License 2.0", + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17590603" + ], + "created_at": "2026-07-10T10:12:41.738509", + "updated_at": "2026-07-10T10:12:41.739522", + "url": "/v1/software/material-design" +} diff --git a/site/public/v1/software/materialcenter/index.json b/site/public/v1/software/materialcenter/index.json new file mode 100644 index 000000000000..f6fefb17a9ac --- /dev/null +++ b/site/public/v1/software/materialcenter/index.json @@ -0,0 +1,21 @@ +{ + "id": 5824, + "slug": "materialcenter", + "name": "MaterialCenter", + "release_date": null, + "developers": [ + "MSC Software" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q21072547" + ], + "created_at": "2026-07-10T10:12:41.739522", + "updated_at": "2026-07-10T10:12:41.739522", + "url": "/v1/software/materialcenter" +} diff --git a/site/public/v1/software/math-blaster-master-the-basics/index.json b/site/public/v1/software/math-blaster-master-the-basics/index.json new file mode 100644 index 000000000000..4b00a1f85299 --- /dev/null +++ b/site/public/v1/software/math-blaster-master-the-basics/index.json @@ -0,0 +1,19 @@ +{ + "id": 5825, + "slug": "math-blaster-master-the-basics", + "name": "Math Blaster Master the Basics", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q57980227" + ], + "created_at": "2026-07-10T10:12:41.739522", + "updated_at": "2026-07-10T10:12:41.739522", + "url": "/v1/software/math-blaster-master-the-basics" +} diff --git a/site/public/v1/software/math-o-mir/index.json b/site/public/v1/software/math-o-mir/index.json new file mode 100644 index 000000000000..9383b73d15ba --- /dev/null +++ b/site/public/v1/software/math-o-mir/index.json @@ -0,0 +1,23 @@ +{ + "id": 5826, + "slug": "math-o-mir", + "name": "Math-o-mir", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Windows 7" + ], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6786738" + ], + "created_at": "2026-07-10T10:12:41.739522", + "updated_at": "2026-07-10T10:12:41.739522", + "url": "/v1/software/math-o-mir" +} diff --git a/site/public/v1/software/mathcad/index.json b/site/public/v1/software/mathcad/index.json new file mode 100644 index 000000000000..23da07d50ad1 --- /dev/null +++ b/site/public/v1/software/mathcad/index.json @@ -0,0 +1,25 @@ +{ + "id": 5827, + "slug": "mathcad", + "name": "Mathcad", + "release_date": "1986-01-01", + "developers": [ + "Mathsoft" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1133580" + ], + "created_at": "2026-07-10T10:12:41.739522", + "updated_at": "2026-07-10T10:12:41.739522", + "url": "/v1/software/mathcad" +} diff --git a/site/public/v1/software/matheos/index.json b/site/public/v1/software/matheos/index.json new file mode 100644 index 000000000000..f16dab88d792 --- /dev/null +++ b/site/public/v1/software/matheos/index.json @@ -0,0 +1,19 @@ +{ + "id": 5828, + "slug": "matheos", + "name": "MathEOS", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25377995" + ], + "created_at": "2026-07-10T10:12:41.740524", + "updated_at": "2026-07-10T10:12:41.740524", + "url": "/v1/software/matheos" +} diff --git a/site/public/v1/software/mathgl/index.json b/site/public/v1/software/mathgl/index.json new file mode 100644 index 000000000000..6f891b4a935e --- /dev/null +++ b/site/public/v1/software/mathgl/index.json @@ -0,0 +1,19 @@ +{ + "id": 5829, + "slug": "mathgl", + "name": "MathGL", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62860347" + ], + "created_at": "2026-07-10T10:12:41.740524", + "updated_at": "2026-07-10T10:12:41.740524", + "url": "/v1/software/mathgl" +} diff --git a/site/public/v1/software/mathletics/index.json b/site/public/v1/software/mathletics/index.json new file mode 100644 index 000000000000..6c0bcf15c697 --- /dev/null +++ b/site/public/v1/software/mathletics/index.json @@ -0,0 +1,19 @@ +{ + "id": 5830, + "slug": "mathletics", + "name": "Mathletics", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q56292736" + ], + "created_at": "2026-07-10T10:12:41.741533", + "updated_at": "2026-07-10T10:12:41.741533", + "url": "/v1/software/mathletics" +} diff --git a/site/public/v1/software/mathmagic/index.json b/site/public/v1/software/mathmagic/index.json new file mode 100644 index 000000000000..6a168b2de7ca --- /dev/null +++ b/site/public/v1/software/mathmagic/index.json @@ -0,0 +1,23 @@ +{ + "id": 5831, + "slug": "mathmagic", + "name": "MathMagic", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "iOS", + "Microsoft Windows", + "macOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6786754" + ], + "created_at": "2026-07-10T10:12:41.741533", + "updated_at": "2026-07-10T10:12:41.741533", + "url": "/v1/software/mathmagic" +} diff --git a/site/public/v1/software/mathplayer/index.json b/site/public/v1/software/mathplayer/index.json new file mode 100644 index 000000000000..4c76204d00e9 --- /dev/null +++ b/site/public/v1/software/mathplayer/index.json @@ -0,0 +1,19 @@ +{ + "id": 5832, + "slug": "mathplayer", + "name": "MathPlayer", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3298497" + ], + "created_at": "2026-07-10T10:12:41.741533", + "updated_at": "2026-07-10T10:12:41.741533", + "url": "/v1/software/mathplayer" +} diff --git a/site/public/v1/software/matific/index.json b/site/public/v1/software/matific/index.json new file mode 100644 index 000000000000..38738bf8d76b --- /dev/null +++ b/site/public/v1/software/matific/index.json @@ -0,0 +1,21 @@ +{ + "id": 5833, + "slug": "matific", + "name": "Matific", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [ + "mathematics" + ], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136919832" + ], + "created_at": "2026-07-10T10:12:41.741533", + "updated_at": "2026-07-10T10:12:41.741533", + "url": "/v1/software/matific" +} diff --git a/site/public/v1/software/matinno/index.json b/site/public/v1/software/matinno/index.json new file mode 100644 index 000000000000..c8d2e29975c1 --- /dev/null +++ b/site/public/v1/software/matinno/index.json @@ -0,0 +1,19 @@ +{ + "id": 5834, + "slug": "matinno", + "name": "Matinno", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q97202497" + ], + "created_at": "2026-07-10T10:12:41.742537", + "updated_at": "2026-07-10T10:12:41.742537", + "url": "/v1/software/matinno" +} diff --git a/site/public/v1/software/matisse-light/index.json b/site/public/v1/software/matisse-light/index.json new file mode 100644 index 000000000000..80aac999d48d --- /dev/null +++ b/site/public/v1/software/matisse-light/index.json @@ -0,0 +1,23 @@ +{ + "id": 5835, + "slug": "matisse-light", + "name": "Matisse Light", + "release_date": "1994-01-01", + "developers": [], + "publishers": [ + "Fauve Software" + ], + "operating_systems": [ + "Windows for Workgroups 3.11" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q114102751" + ], + "created_at": "2026-07-10T10:12:41.742537", + "updated_at": "2026-07-10T10:12:41.742537", + "url": "/v1/software/matisse-light" +} diff --git a/site/public/v1/software/matrix-prompt-injection-tool/index.json b/site/public/v1/software/matrix-prompt-injection-tool/index.json new file mode 100644 index 000000000000..41bd60f8fd92 --- /dev/null +++ b/site/public/v1/software/matrix-prompt-injection-tool/index.json @@ -0,0 +1,24 @@ +{ + "id": 5836, + "slug": "matrix-prompt-injection-tool", + "name": "Matrix Prompt Injection Tool", + "release_date": null, + "developers": [ + "Sasuke Kondo", + "Shōta Shinogi" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Python" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140249113" + ], + "created_at": "2026-07-10T10:12:41.742537", + "updated_at": "2026-07-10T10:12:41.742537", + "url": "/v1/software/matrix-prompt-injection-tool" +} diff --git a/site/public/v1/software/matrix-template-library/index.json b/site/public/v1/software/matrix-template-library/index.json new file mode 100644 index 000000000000..1f0f7d4f9f2b --- /dev/null +++ b/site/public/v1/software/matrix-template-library/index.json @@ -0,0 +1,19 @@ +{ + "id": 5837, + "slug": "matrix-template-library", + "name": "Matrix Template Library", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1814281" + ], + "created_at": "2026-07-10T10:12:41.743506", + "updated_at": "2026-07-10T10:12:41.743506", + "url": "/v1/software/matrix-template-library" +} diff --git a/site/public/v1/software/matrox-simple-interface/index.json b/site/public/v1/software/matrox-simple-interface/index.json new file mode 100644 index 000000000000..bd96655e1059 --- /dev/null +++ b/site/public/v1/software/matrox-simple-interface/index.json @@ -0,0 +1,19 @@ +{ + "id": 5838, + "slug": "matrox-simple-interface", + "name": "Matrox Simple Interface", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6787930" + ], + "created_at": "2026-07-10T10:12:41.743506", + "updated_at": "2026-07-10T10:12:41.743506", + "url": "/v1/software/matrox-simple-interface" +} diff --git a/site/public/v1/software/matsim/index.json b/site/public/v1/software/matsim/index.json new file mode 100644 index 000000000000..bbc4ae0f8494 --- /dev/null +++ b/site/public/v1/software/matsim/index.json @@ -0,0 +1,22 @@ +{ + "id": 5839, + "slug": "matsim", + "name": "MATSim", + "release_date": null, + "developers": [ + "Kay Axhausen", + "Kai Nagel" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6714570" + ], + "created_at": "2026-07-10T10:12:41.743506", + "updated_at": "2026-07-10T10:12:41.743506", + "url": "/v1/software/matsim" +} diff --git a/site/public/v1/software/maude-system/index.json b/site/public/v1/software/maude-system/index.json new file mode 100644 index 000000000000..d41faa7deff1 --- /dev/null +++ b/site/public/v1/software/maude-system/index.json @@ -0,0 +1,19 @@ +{ + "id": 5840, + "slug": "maude-system", + "name": "Maude system", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3558930" + ], + "created_at": "2026-07-10T10:12:41.744544", + "updated_at": "2026-07-10T10:12:41.744544", + "url": "/v1/software/maude-system" +} diff --git a/site/public/v1/software/maui-cluster-scheduler/index.json b/site/public/v1/software/maui-cluster-scheduler/index.json new file mode 100644 index 000000000000..96b1056460e0 --- /dev/null +++ b/site/public/v1/software/maui-cluster-scheduler/index.json @@ -0,0 +1,19 @@ +{ + "id": 5841, + "slug": "maui-cluster-scheduler", + "name": "Maui Cluster Scheduler", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4043817" + ], + "created_at": "2026-07-10T10:12:41.744544", + "updated_at": "2026-07-10T10:12:41.744544", + "url": "/v1/software/maui-cluster-scheduler" +} diff --git a/site/public/v1/software/mausezahn/index.json b/site/public/v1/software/mausezahn/index.json new file mode 100644 index 000000000000..055fab62bd18 --- /dev/null +++ b/site/public/v1/software/mausezahn/index.json @@ -0,0 +1,19 @@ +{ + "id": 5842, + "slug": "mausezahn", + "name": "Mausezahn", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q618952" + ], + "created_at": "2026-07-10T10:12:41.745445", + "updated_at": "2026-07-10T10:12:41.745445", + "url": "/v1/software/mausezahn" +} diff --git a/site/public/v1/software/mautic/index.json b/site/public/v1/software/mautic/index.json new file mode 100644 index 000000000000..0fb28ea310a9 --- /dev/null +++ b/site/public/v1/software/mautic/index.json @@ -0,0 +1,25 @@ +{ + "id": 5843, + "slug": "mautic", + "name": "mautic", + "release_date": "2015-03-10", + "developers": [ + "Acquia" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "GNU General Public License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q99374512" + ], + "created_at": "2026-07-10T10:12:41.745445", + "updated_at": "2026-07-10T10:12:41.745445", + "url": "/v1/software/mautic" +} diff --git a/site/public/v1/software/maven-app-engine-plugin/index.json b/site/public/v1/software/maven-app-engine-plugin/index.json new file mode 100644 index 000000000000..7bb150a5dcd8 --- /dev/null +++ b/site/public/v1/software/maven-app-engine-plugin/index.json @@ -0,0 +1,21 @@ +{ + "id": 5844, + "slug": "maven-app-engine-plugin", + "name": "Maven App Engine Plugin", + "release_date": null, + "developers": [ + "Google" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60062042" + ], + "created_at": "2026-07-10T10:12:41.745445", + "updated_at": "2026-07-10T10:12:41.745445", + "url": "/v1/software/maven-app-engine-plugin" +} diff --git a/site/public/v1/software/mavid/index.json b/site/public/v1/software/mavid/index.json new file mode 100644 index 000000000000..9f96d463a813 --- /dev/null +++ b/site/public/v1/software/mavid/index.json @@ -0,0 +1,19 @@ +{ + "id": 5845, + "slug": "mavid", + "name": "MAVID", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6714589" + ], + "created_at": "2026-07-10T10:12:41.745445", + "updated_at": "2026-07-10T10:12:41.745445", + "url": "/v1/software/mavid" +} diff --git a/site/public/v1/software/maxcluster/index.json b/site/public/v1/software/maxcluster/index.json new file mode 100644 index 000000000000..6dcbda13ac1a --- /dev/null +++ b/site/public/v1/software/maxcluster/index.json @@ -0,0 +1,19 @@ +{ + "id": 5846, + "slug": "maxcluster", + "name": "MaxCluster", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q114840623" + ], + "created_at": "2026-07-10T10:12:41.746444", + "updated_at": "2026-07-10T10:12:41.746444", + "url": "/v1/software/maxcluster" +} diff --git a/site/public/v1/software/maxent/index.json b/site/public/v1/software/maxent/index.json new file mode 100644 index 000000000000..13dac2edeb5a --- /dev/null +++ b/site/public/v1/software/maxent/index.json @@ -0,0 +1,21 @@ +{ + "id": 5847, + "slug": "maxent", + "name": "Maxent", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1913760" + ], + "created_at": "2026-07-10T10:12:41.746444", + "updated_at": "2026-07-10T10:12:41.746444", + "url": "/v1/software/maxent" +} diff --git a/site/public/v1/software/maxim-dl/index.json b/site/public/v1/software/maxim-dl/index.json new file mode 100644 index 000000000000..394b53de4882 --- /dev/null +++ b/site/public/v1/software/maxim-dl/index.json @@ -0,0 +1,19 @@ +{ + "id": 5848, + "slug": "maxim-dl", + "name": "Maxim DL", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q24889971" + ], + "created_at": "2026-07-10T10:12:41.746444", + "updated_at": "2026-07-10T10:12:41.746444", + "url": "/v1/software/maxim-dl" +} diff --git a/site/public/v1/software/maximo/index.json b/site/public/v1/software/maximo/index.json new file mode 100644 index 000000000000..6a0647eb10c2 --- /dev/null +++ b/site/public/v1/software/maximo/index.json @@ -0,0 +1,21 @@ +{ + "id": 5849, + "slug": "maximo", + "name": "Maximo", + "release_date": null, + "developers": [ + "IBM" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q55622518" + ], + "created_at": "2026-07-10T10:12:41.747447", + "updated_at": "2026-07-10T10:12:41.747447", + "url": "/v1/software/maximo" +} diff --git a/site/public/v1/software/maxqda/index.json b/site/public/v1/software/maxqda/index.json new file mode 100644 index 000000000000..a3b869e1ff48 --- /dev/null +++ b/site/public/v1/software/maxqda/index.json @@ -0,0 +1,24 @@ +{ + "id": 5850, + "slug": "maxqda", + "name": "MAXQDA", + "release_date": "1995-01-01", + "developers": [], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1258962" + ], + "created_at": "2026-07-10T10:12:41.747447", + "updated_at": "2026-07-10T10:12:41.747447", + "url": "/v1/software/maxqda" +} diff --git a/site/public/v1/software/maxwell-render/index.json b/site/public/v1/software/maxwell-render/index.json new file mode 100644 index 000000000000..85cc81b210d3 --- /dev/null +++ b/site/public/v1/software/maxwell-render/index.json @@ -0,0 +1,23 @@ +{ + "id": 5851, + "slug": "maxwell-render", + "name": "Maxwell Render", + "release_date": null, + "developers": [ + "Next Limit Technologies" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2636431" + ], + "created_at": "2026-07-10T10:12:41.747447", + "updated_at": "2026-07-10T10:12:41.747447", + "url": "/v1/software/maxwell-render" +} diff --git a/site/public/v1/software/mayan/index.json b/site/public/v1/software/mayan/index.json new file mode 100644 index 000000000000..77477e81eb92 --- /dev/null +++ b/site/public/v1/software/mayan/index.json @@ -0,0 +1,23 @@ +{ + "id": 5852, + "slug": "mayan", + "name": "Mayan", + "release_date": null, + "developers": [ + "Roberto Rosario" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Python" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6796823" + ], + "created_at": "2026-07-10T10:12:41.747447", + "updated_at": "2026-07-10T10:12:41.747447", + "url": "/v1/software/mayan" +} diff --git a/site/public/v1/software/mblock/index.json b/site/public/v1/software/mblock/index.json new file mode 100644 index 000000000000..beff22cbcfe7 --- /dev/null +++ b/site/public/v1/software/mblock/index.json @@ -0,0 +1,19 @@ +{ + "id": 5853, + "slug": "mblock", + "name": "MBlock", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q61076699" + ], + "created_at": "2026-07-10T10:12:41.748448", + "updated_at": "2026-07-10T10:12:41.748448", + "url": "/v1/software/mblock" +} diff --git a/site/public/v1/software/mbn-explorer/index.json b/site/public/v1/software/mbn-explorer/index.json new file mode 100644 index 000000000000..e179bc248590 --- /dev/null +++ b/site/public/v1/software/mbn-explorer/index.json @@ -0,0 +1,19 @@ +{ + "id": 5854, + "slug": "mbn-explorer", + "name": "MBN Explorer", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q39059945" + ], + "created_at": "2026-07-10T10:12:41.748448", + "updated_at": "2026-07-10T10:12:41.748448", + "url": "/v1/software/mbn-explorer" +} diff --git a/site/public/v1/software/mbox-to-csv/index.json b/site/public/v1/software/mbox-to-csv/index.json new file mode 100644 index 000000000000..f3c570e7d689 --- /dev/null +++ b/site/public/v1/software/mbox-to-csv/index.json @@ -0,0 +1,23 @@ +{ + "id": 5855, + "slug": "mbox-to-csv", + "name": "MBOX to CSV", + "release_date": null, + "developers": [ + "C. M. Leal Ltda" + ], + "publishers": [], + "operating_systems": [ + "macOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138472216" + ], + "created_at": "2026-07-10T10:12:41.749447", + "updated_at": "2026-07-10T10:12:41.749447", + "url": "/v1/software/mbox-to-csv" +} diff --git a/site/public/v1/software/mbox-to-pdf/index.json b/site/public/v1/software/mbox-to-pdf/index.json new file mode 100644 index 000000000000..b87f0f5d2a04 --- /dev/null +++ b/site/public/v1/software/mbox-to-pdf/index.json @@ -0,0 +1,23 @@ +{ + "id": 5856, + "slug": "mbox-to-pdf", + "name": "MBOX to PDF", + "release_date": null, + "developers": [ + "C. M. Leal Ltda" + ], + "publishers": [], + "operating_systems": [ + "macOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138472297" + ], + "created_at": "2026-07-10T10:12:41.749447", + "updated_at": "2026-07-10T10:12:41.749447", + "url": "/v1/software/mbox-to-pdf" +} diff --git a/site/public/v1/software/mboxgrep/index.json b/site/public/v1/software/mboxgrep/index.json new file mode 100644 index 000000000000..5beaa97a739a --- /dev/null +++ b/site/public/v1/software/mboxgrep/index.json @@ -0,0 +1,19 @@ +{ + "id": 5857, + "slug": "mboxgrep", + "name": "mboxgrep", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62854594" + ], + "created_at": "2026-07-10T10:12:41.749447", + "updated_at": "2026-07-10T10:12:41.749447", + "url": "/v1/software/mboxgrep" +} diff --git a/site/public/v1/software/mbpfan/index.json b/site/public/v1/software/mbpfan/index.json new file mode 100644 index 000000000000..fe1fe545fe3e --- /dev/null +++ b/site/public/v1/software/mbpfan/index.json @@ -0,0 +1,19 @@ +{ + "id": 5858, + "slug": "mbpfan", + "name": "mbpfan", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975221" + ], + "created_at": "2026-07-10T10:12:41.749447", + "updated_at": "2026-07-10T10:12:41.749447", + "url": "/v1/software/mbpfan" +} diff --git a/site/public/v1/software/mbrace/index.json b/site/public/v1/software/mbrace/index.json new file mode 100644 index 000000000000..9c760c6ff6b3 --- /dev/null +++ b/site/public/v1/software/mbrace/index.json @@ -0,0 +1,23 @@ +{ + "id": 5859, + "slug": "mbrace", + "name": "MBrace", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "F#" + ], + "licenses": [ + "Apache License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22906806" + ], + "created_at": "2026-07-10T10:12:41.750516", + "updated_at": "2026-07-10T10:12:41.750516", + "url": "/v1/software/mbrace" +} diff --git a/site/public/v1/software/mc-musiceditor/index.json b/site/public/v1/software/mc-musiceditor/index.json new file mode 100644 index 000000000000..727cb5680d1a --- /dev/null +++ b/site/public/v1/software/mc-musiceditor/index.json @@ -0,0 +1,23 @@ +{ + "id": 5860, + "slug": "mc-musiceditor", + "name": "MC Musiceditor", + "release_date": "2010-01-01", + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "GNU General Public License, version 2.0 or later" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115624043" + ], + "created_at": "2026-07-10T10:12:41.750516", + "updated_at": "2026-07-10T10:12:41.750516", + "url": "/v1/software/mc-musiceditor" +} diff --git a/site/public/v1/software/mc-wol/index.json b/site/public/v1/software/mc-wol/index.json new file mode 100644 index 000000000000..390a3e04224f --- /dev/null +++ b/site/public/v1/software/mc-wol/index.json @@ -0,0 +1,19 @@ +{ + "id": 5861, + "slug": "mc-wol", + "name": "MC-WOL", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q39193446" + ], + "created_at": "2026-07-10T10:12:41.750516", + "updated_at": "2026-07-10T10:12:41.750516", + "url": "/v1/software/mc-wol" +} diff --git a/site/public/v1/software/mc4j/index.json b/site/public/v1/software/mc4j/index.json new file mode 100644 index 000000000000..267f9697b3f0 --- /dev/null +++ b/site/public/v1/software/mc4j/index.json @@ -0,0 +1,25 @@ +{ + "id": 5862, + "slug": "mc4j", + "name": "MC4J", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "cross-platform" + ], + "programming_languages": [ + "Java" + ], + "licenses": [ + "Apache License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6714810" + ], + "created_at": "2026-07-10T10:12:41.750516", + "updated_at": "2026-07-10T10:12:41.750516", + "url": "/v1/software/mc4j" +} diff --git a/site/public/v1/software/mcafee-anti-virus/index.json b/site/public/v1/software/mcafee-anti-virus/index.json new file mode 100644 index 000000000000..8ac65fc5cfa3 --- /dev/null +++ b/site/public/v1/software/mcafee-anti-virus/index.json @@ -0,0 +1,19 @@ +{ + "id": 5863, + "slug": "mcafee-anti-virus", + "name": "McAfee Anti Virus", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q15834632" + ], + "created_at": "2026-07-10T10:12:41.751503", + "updated_at": "2026-07-10T10:12:41.751503", + "url": "/v1/software/mcafee-anti-virus" +} diff --git a/site/public/v1/software/mcafee-siteadvisor/index.json b/site/public/v1/software/mcafee-siteadvisor/index.json new file mode 100644 index 000000000000..335ddfca2730 --- /dev/null +++ b/site/public/v1/software/mcafee-siteadvisor/index.json @@ -0,0 +1,21 @@ +{ + "id": 5864, + "slug": "mcafee-siteadvisor", + "name": "McAfee SiteAdvisor", + "release_date": null, + "developers": [ + "McAfee, LLC" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1225395" + ], + "created_at": "2026-07-10T10:12:41.751503", + "updated_at": "2026-07-10T10:12:41.751503", + "url": "/v1/software/mcafee-siteadvisor" +} diff --git a/site/public/v1/software/mcafee-stinger/index.json b/site/public/v1/software/mcafee-stinger/index.json new file mode 100644 index 000000000000..32034147282c --- /dev/null +++ b/site/public/v1/software/mcafee-stinger/index.json @@ -0,0 +1,19 @@ +{ + "id": 5865, + "slug": "mcafee-stinger", + "name": "McAfee Stinger", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q794551" + ], + "created_at": "2026-07-10T10:12:41.751503", + "updated_at": "2026-07-10T10:12:41.751503", + "url": "/v1/software/mcafee-stinger" +} diff --git a/site/public/v1/software/mcbbs/index.json b/site/public/v1/software/mcbbs/index.json new file mode 100644 index 000000000000..aa873a8b2dd5 --- /dev/null +++ b/site/public/v1/software/mcbbs/index.json @@ -0,0 +1,19 @@ +{ + "id": 5866, + "slug": "mcbbs", + "name": "McBBS", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6800019" + ], + "created_at": "2026-07-10T10:12:41.752492", + "updated_at": "2026-07-10T10:12:41.752492", + "url": "/v1/software/mcbbs" +} diff --git a/site/public/v1/software/mcelog/index.json b/site/public/v1/software/mcelog/index.json new file mode 100644 index 000000000000..2e5c87ce5519 --- /dev/null +++ b/site/public/v1/software/mcelog/index.json @@ -0,0 +1,19 @@ +{ + "id": 5867, + "slug": "mcelog", + "name": "mcelog", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62859126" + ], + "created_at": "2026-07-10T10:12:41.752492", + "updated_at": "2026-07-10T10:12:41.752492", + "url": "/v1/software/mcelog" +} diff --git a/site/public/v1/software/mchess-pro/index.json b/site/public/v1/software/mchess-pro/index.json new file mode 100644 index 000000000000..7169123627a9 --- /dev/null +++ b/site/public/v1/software/mchess-pro/index.json @@ -0,0 +1,19 @@ +{ + "id": 5868, + "slug": "mchess-pro", + "name": "MChess Pro", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3272825" + ], + "created_at": "2026-07-10T10:12:41.752492", + "updated_at": "2026-07-10T10:12:41.752492", + "url": "/v1/software/mchess-pro" +} diff --git a/site/public/v1/software/mcool/index.json b/site/public/v1/software/mcool/index.json new file mode 100644 index 000000000000..5943545a0793 --- /dev/null +++ b/site/public/v1/software/mcool/index.json @@ -0,0 +1,19 @@ +{ + "id": 5869, + "slug": "mcool", + "name": "Mcool", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q24836814" + ], + "created_at": "2026-07-10T10:12:41.753528", + "updated_at": "2026-07-10T10:12:41.753528", + "url": "/v1/software/mcool" +} diff --git a/site/public/v1/software/mcp-analytics/index.json b/site/public/v1/software/mcp-analytics/index.json new file mode 100644 index 000000000000..84fe7e049be1 --- /dev/null +++ b/site/public/v1/software/mcp-analytics/index.json @@ -0,0 +1,19 @@ +{ + "id": 5870, + "slug": "mcp-analytics", + "name": "MCP Analytics", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138720069" + ], + "created_at": "2026-07-10T10:12:41.753528", + "updated_at": "2026-07-10T10:12:41.753528", + "url": "/v1/software/mcp-analytics" +} diff --git a/site/public/v1/software/mcpsafe/index.json b/site/public/v1/software/mcpsafe/index.json new file mode 100644 index 000000000000..9f25900febb4 --- /dev/null +++ b/site/public/v1/software/mcpsafe/index.json @@ -0,0 +1,19 @@ +{ + "id": 5871, + "slug": "mcpsafe", + "name": "MCPSafe", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139785152" + ], + "created_at": "2026-07-10T10:12:41.753528", + "updated_at": "2026-07-10T10:12:41.753528", + "url": "/v1/software/mcpsafe" +} diff --git a/site/public/v1/software/mcreator/index.json b/site/public/v1/software/mcreator/index.json new file mode 100644 index 000000000000..58a48ad7e3fb --- /dev/null +++ b/site/public/v1/software/mcreator/index.json @@ -0,0 +1,19 @@ +{ + "id": 5872, + "slug": "mcreator", + "name": "MCreator", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111145400" + ], + "created_at": "2026-07-10T10:12:41.754492", + "updated_at": "2026-07-10T10:12:41.754492", + "url": "/v1/software/mcreator" +} diff --git a/site/public/v1/software/mcve/index.json b/site/public/v1/software/mcve/index.json new file mode 100644 index 000000000000..f3bb46bc9ba9 --- /dev/null +++ b/site/public/v1/software/mcve/index.json @@ -0,0 +1,19 @@ +{ + "id": 5873, + "slug": "mcve", + "name": "MCVE", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6715013" + ], + "created_at": "2026-07-10T10:12:41.754492", + "updated_at": "2026-07-10T10:12:41.754492", + "url": "/v1/software/mcve" +} diff --git a/site/public/v1/software/md6sum/index.json b/site/public/v1/software/md6sum/index.json new file mode 100644 index 000000000000..2fcda3f19320 --- /dev/null +++ b/site/public/v1/software/md6sum/index.json @@ -0,0 +1,19 @@ +{ + "id": 5874, + "slug": "md6sum", + "name": "md6sum", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63064897" + ], + "created_at": "2026-07-10T10:12:41.755519", + "updated_at": "2026-07-10T10:12:41.755519", + "url": "/v1/software/md6sum" +} diff --git a/site/public/v1/software/mdds/index.json b/site/public/v1/software/mdds/index.json new file mode 100644 index 000000000000..c61ca0287197 --- /dev/null +++ b/site/public/v1/software/mdds/index.json @@ -0,0 +1,19 @@ +{ + "id": 5875, + "slug": "mdds", + "name": "mdds", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975222" + ], + "created_at": "2026-07-10T10:12:41.755519", + "updated_at": "2026-07-10T10:12:41.755519", + "url": "/v1/software/mdds" +} diff --git a/site/public/v1/software/mdiapp/index.json b/site/public/v1/software/mdiapp/index.json new file mode 100644 index 000000000000..328f9859dd4d --- /dev/null +++ b/site/public/v1/software/mdiapp/index.json @@ -0,0 +1,19 @@ +{ + "id": 5876, + "slug": "mdiapp", + "name": "mdiapp", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11232883" + ], + "created_at": "2026-07-10T10:12:41.755519", + "updated_at": "2026-07-10T10:12:41.755519", + "url": "/v1/software/mdiapp" +} diff --git a/site/public/v1/software/mdl-chime/index.json b/site/public/v1/software/mdl-chime/index.json new file mode 100644 index 000000000000..7b5d36af808e --- /dev/null +++ b/site/public/v1/software/mdl-chime/index.json @@ -0,0 +1,23 @@ +{ + "id": 5877, + "slug": "mdl-chime", + "name": "MDL Chime", + "release_date": null, + "developers": [ + "Symyx Technologies" + ], + "publishers": [], + "operating_systems": [ + "Classic Mac OS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3841255" + ], + "created_at": "2026-07-10T10:12:41.755519", + "updated_at": "2026-07-10T10:12:41.755519", + "url": "/v1/software/mdl-chime" +} diff --git a/site/public/v1/software/meandmyshadow/index.json b/site/public/v1/software/meandmyshadow/index.json new file mode 100644 index 000000000000..4e4d283c1981 --- /dev/null +++ b/site/public/v1/software/meandmyshadow/index.json @@ -0,0 +1,19 @@ +{ + "id": 5878, + "slug": "meandmyshadow", + "name": "meandmyshadow", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106101986" + ], + "created_at": "2026-07-10T10:12:41.756505", + "updated_at": "2026-07-10T10:12:41.756505", + "url": "/v1/software/meandmyshadow" +} diff --git a/site/public/v1/software/measure/index.json b/site/public/v1/software/measure/index.json new file mode 100644 index 000000000000..6910ad43d588 --- /dev/null +++ b/site/public/v1/software/measure/index.json @@ -0,0 +1,23 @@ +{ + "id": 5879, + "slug": "measure", + "name": "Measure", + "release_date": "2018-01-01", + "developers": [ + "Apple Inc." + ], + "publishers": [], + "operating_systems": [ + "iOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q54889403" + ], + "created_at": "2026-07-10T10:12:41.756505", + "updated_at": "2026-07-10T10:12:41.756505", + "url": "/v1/software/measure" +} diff --git a/site/public/v1/software/measurement-studio/index.json b/site/public/v1/software/measurement-studio/index.json new file mode 100644 index 000000000000..97fe36f62c8b --- /dev/null +++ b/site/public/v1/software/measurement-studio/index.json @@ -0,0 +1,21 @@ +{ + "id": 5880, + "slug": "measurement-studio", + "name": "Measurement Studio", + "release_date": null, + "developers": [ + "National Instruments" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3303809" + ], + "created_at": "2026-07-10T10:12:41.757493", + "updated_at": "2026-07-10T10:12:41.757493", + "url": "/v1/software/measurement-studio" +} diff --git a/site/public/v1/software/meatspace-chat/index.json b/site/public/v1/software/meatspace-chat/index.json new file mode 100644 index 000000000000..25f71176f375 --- /dev/null +++ b/site/public/v1/software/meatspace-chat/index.json @@ -0,0 +1,23 @@ +{ + "id": 5881, + "slug": "meatspace-chat", + "name": "Meatspace Chat", + "release_date": "2013-05-12", + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [ + "Node.js" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16927727" + ], + "created_at": "2026-07-10T10:12:41.757493", + "updated_at": "2026-07-10T10:12:41.757493", + "url": "/v1/software/meatspace-chat" +} diff --git a/site/public/v1/software/mechanical-desktop/index.json b/site/public/v1/software/mechanical-desktop/index.json new file mode 100644 index 000000000000..b034d817cac9 --- /dev/null +++ b/site/public/v1/software/mechanical-desktop/index.json @@ -0,0 +1,21 @@ +{ + "id": 5882, + "slug": "mechanical-desktop", + "name": "Mechanical Desktop", + "release_date": null, + "developers": [ + "Autodesk" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3303835" + ], + "created_at": "2026-07-10T10:12:41.757493", + "updated_at": "2026-07-10T10:12:41.757493", + "url": "/v1/software/mechanical-desktop" +} diff --git a/site/public/v1/software/mechanicalsoup/index.json b/site/public/v1/software/mechanicalsoup/index.json new file mode 100644 index 000000000000..97648226a879 --- /dev/null +++ b/site/public/v1/software/mechanicalsoup/index.json @@ -0,0 +1,21 @@ +{ + "id": 5883, + "slug": "mechanicalsoup", + "name": "MechanicalSoup", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975223" + ], + "created_at": "2026-07-10T10:12:41.757493", + "updated_at": "2026-07-10T10:12:41.757493", + "url": "/v1/software/mechanicalsoup" +} diff --git a/site/public/v1/software/medcalc/index.json b/site/public/v1/software/medcalc/index.json new file mode 100644 index 000000000000..295206befe4c --- /dev/null +++ b/site/public/v1/software/medcalc/index.json @@ -0,0 +1,21 @@ +{ + "id": 5884, + "slug": "medcalc", + "name": "MedCalc", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4272521" + ], + "created_at": "2026-07-10T10:12:41.758497", + "updated_at": "2026-07-10T10:12:41.758497", + "url": "/v1/software/medcalc" +} diff --git a/site/public/v1/software/meddies/index.json b/site/public/v1/software/meddies/index.json new file mode 100644 index 000000000000..5ba765807076 --- /dev/null +++ b/site/public/v1/software/meddies/index.json @@ -0,0 +1,19 @@ +{ + "id": 5885, + "slug": "meddies", + "name": "Meddies", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140047174" + ], + "created_at": "2026-07-10T10:12:41.758497", + "updated_at": "2026-07-10T10:12:41.758497", + "url": "/v1/software/meddies" +} diff --git a/site/public/v1/software/media-coach/index.json b/site/public/v1/software/media-coach/index.json new file mode 100644 index 000000000000..f5ee65c9580f --- /dev/null +++ b/site/public/v1/software/media-coach/index.json @@ -0,0 +1,19 @@ +{ + "id": 5886, + "slug": "media-coach", + "name": "Media Coach", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6805473" + ], + "created_at": "2026-07-10T10:12:41.758497", + "updated_at": "2026-07-10T10:12:41.758497", + "url": "/v1/software/media-coach" +} diff --git a/site/public/v1/software/media-creation-tool/index.json b/site/public/v1/software/media-creation-tool/index.json new file mode 100644 index 000000000000..acf3c9646157 --- /dev/null +++ b/site/public/v1/software/media-creation-tool/index.json @@ -0,0 +1,21 @@ +{ + "id": 5887, + "slug": "media-creation-tool", + "name": "Media Creation Tool", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q133842609" + ], + "created_at": "2026-07-10T10:12:41.759448", + "updated_at": "2026-07-10T10:12:41.759448", + "url": "/v1/software/media-creation-tool" +} diff --git a/site/public/v1/software/media-share/index.json b/site/public/v1/software/media-share/index.json new file mode 100644 index 000000000000..8097d4d76223 --- /dev/null +++ b/site/public/v1/software/media-share/index.json @@ -0,0 +1,19 @@ +{ + "id": 5888, + "slug": "media-share", + "name": "Media Share", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085113" + ], + "created_at": "2026-07-10T10:12:41.759448", + "updated_at": "2026-07-10T10:12:41.759448", + "url": "/v1/software/media-share" +} diff --git a/site/public/v1/software/mediabot/index.json b/site/public/v1/software/mediabot/index.json new file mode 100644 index 000000000000..44d878940f22 --- /dev/null +++ b/site/public/v1/software/mediabot/index.json @@ -0,0 +1,19 @@ +{ + "id": 5889, + "slug": "mediabot", + "name": "Mediabot", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3303966" + ], + "created_at": "2026-07-10T10:12:41.759448", + "updated_at": "2026-07-10T10:12:41.759448", + "url": "/v1/software/mediabot" +} diff --git a/site/public/v1/software/mediacrush-cli/index.json b/site/public/v1/software/mediacrush-cli/index.json new file mode 100644 index 000000000000..c0a0bd8f24d6 --- /dev/null +++ b/site/public/v1/software/mediacrush-cli/index.json @@ -0,0 +1,21 @@ +{ + "id": 5890, + "slug": "mediacrush-cli", + "name": "mediacrush-cli", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975224" + ], + "created_at": "2026-07-10T10:12:41.760519", + "updated_at": "2026-07-10T10:12:41.760519", + "url": "/v1/software/mediacrush-cli" +} diff --git a/site/public/v1/software/mediahuman-audio-converter/index.json b/site/public/v1/software/mediahuman-audio-converter/index.json new file mode 100644 index 000000000000..d6836d8b1f04 --- /dev/null +++ b/site/public/v1/software/mediahuman-audio-converter/index.json @@ -0,0 +1,23 @@ +{ + "id": 5891, + "slug": "mediahuman-audio-converter", + "name": "MediaHuman Audio Converter", + "release_date": null, + "developers": [ + "MediaHuman" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q55263594" + ], + "created_at": "2026-07-10T10:12:41.760519", + "updated_at": "2026-07-10T10:12:41.760519", + "url": "/v1/software/mediahuman-audio-converter" +} diff --git a/site/public/v1/software/mediaman/index.json b/site/public/v1/software/mediaman/index.json new file mode 100644 index 000000000000..f20339d90f25 --- /dev/null +++ b/site/public/v1/software/mediaman/index.json @@ -0,0 +1,21 @@ +{ + "id": 5892, + "slug": "mediaman", + "name": "MediaMan", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6805401" + ], + "created_at": "2026-07-10T10:12:41.760519", + "updated_at": "2026-07-10T10:12:41.760519", + "url": "/v1/software/mediaman" +} diff --git a/site/public/v1/software/medianalyst/index.json b/site/public/v1/software/medianalyst/index.json new file mode 100644 index 000000000000..e4e251c2e62b --- /dev/null +++ b/site/public/v1/software/medianalyst/index.json @@ -0,0 +1,21 @@ +{ + "id": 5893, + "slug": "medianalyst", + "name": "Medianalyst", + "release_date": null, + "developers": [ + "Mediatech" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138800711" + ], + "created_at": "2026-07-10T10:12:41.761444", + "updated_at": "2026-07-10T10:12:41.761444", + "url": "/v1/software/medianalyst" +} diff --git a/site/public/v1/software/mediathread/index.json b/site/public/v1/software/mediathread/index.json new file mode 100644 index 000000000000..9e366360f415 --- /dev/null +++ b/site/public/v1/software/mediathread/index.json @@ -0,0 +1,19 @@ +{ + "id": 5894, + "slug": "mediathread", + "name": "Mediathread", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085114" + ], + "created_at": "2026-07-10T10:12:41.761444", + "updated_at": "2026-07-10T10:12:41.761444", + "url": "/v1/software/mediathread" +} diff --git a/site/public/v1/software/mediawiki-vagrant/index.json b/site/public/v1/software/mediawiki-vagrant/index.json new file mode 100644 index 000000000000..52733bca238a --- /dev/null +++ b/site/public/v1/software/mediawiki-vagrant/index.json @@ -0,0 +1,19 @@ +{ + "id": 5895, + "slug": "mediawiki-vagrant", + "name": "MediaWiki-Vagrant", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q21839573" + ], + "created_at": "2026-07-10T10:12:41.761444", + "updated_at": "2026-07-10T10:12:41.761444", + "url": "/v1/software/mediawiki-vagrant" +} diff --git a/site/public/v1/software/medibang-paint/index.json b/site/public/v1/software/medibang-paint/index.json new file mode 100644 index 000000000000..4adfa1983196 --- /dev/null +++ b/site/public/v1/software/medibang-paint/index.json @@ -0,0 +1,19 @@ +{ + "id": 5896, + "slug": "medibang-paint", + "name": "MediBang Paint", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22127417" + ], + "created_at": "2026-07-10T10:12:41.762529", + "updated_at": "2026-07-10T10:12:41.762529", + "url": "/v1/software/medibang-paint" +} diff --git a/site/public/v1/software/medibuntu/index.json b/site/public/v1/software/medibuntu/index.json new file mode 100644 index 000000000000..8269e139e66d --- /dev/null +++ b/site/public/v1/software/medibuntu/index.json @@ -0,0 +1,19 @@ +{ + "id": 5897, + "slug": "medibuntu", + "name": "Medibuntu", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2457729" + ], + "created_at": "2026-07-10T10:12:41.762529", + "updated_at": "2026-07-10T10:12:41.762529", + "url": "/v1/software/medibuntu" +} diff --git a/site/public/v1/software/medical-reality-markup-language/index.json b/site/public/v1/software/medical-reality-markup-language/index.json new file mode 100644 index 000000000000..946c46b146bd --- /dev/null +++ b/site/public/v1/software/medical-reality-markup-language/index.json @@ -0,0 +1,19 @@ +{ + "id": 5898, + "slug": "medical-reality-markup-language", + "name": "Medical Reality Markup Language", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6806407" + ], + "created_at": "2026-07-10T10:12:41.762529", + "updated_at": "2026-07-10T10:12:41.762529", + "url": "/v1/software/medical-reality-markup-language" +} diff --git a/site/public/v1/software/medtalk/index.json b/site/public/v1/software/medtalk/index.json new file mode 100644 index 000000000000..6cd3f22b88ce --- /dev/null +++ b/site/public/v1/software/medtalk/index.json @@ -0,0 +1,21 @@ +{ + "id": 5899, + "slug": "medtalk", + "name": "MedTalk", + "release_date": null, + "developers": [ + "FAZ Australia" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139846893" + ], + "created_at": "2026-07-10T10:12:41.762529", + "updated_at": "2026-07-10T10:12:41.762529", + "url": "/v1/software/medtalk" +} diff --git a/site/public/v1/software/medusa-q62859271/index.json b/site/public/v1/software/medusa-q62859271/index.json new file mode 100644 index 000000000000..4316b2022f3c --- /dev/null +++ b/site/public/v1/software/medusa-q62859271/index.json @@ -0,0 +1,19 @@ +{ + "id": 5900, + "slug": "medusa-q62859271", + "name": "medusa", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62859271" + ], + "created_at": "2026-07-10T10:12:41.763551", + "updated_at": "2026-07-10T10:12:41.763551", + "url": "/v1/software/medusa-q62859271" +} diff --git a/site/public/v1/software/medusa/index.json b/site/public/v1/software/medusa/index.json new file mode 100644 index 000000000000..8c9de4470be9 --- /dev/null +++ b/site/public/v1/software/medusa/index.json @@ -0,0 +1,19 @@ +{ + "id": 5901, + "slug": "medusa", + "name": "medusa", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62859256" + ], + "created_at": "2026-07-10T10:12:41.763551", + "updated_at": "2026-07-10T10:12:41.763551", + "url": "/v1/software/medusa" +} diff --git a/site/public/v1/software/meed/index.json b/site/public/v1/software/meed/index.json new file mode 100644 index 000000000000..7d422f6f4b24 --- /dev/null +++ b/site/public/v1/software/meed/index.json @@ -0,0 +1,19 @@ +{ + "id": 5902, + "slug": "meed", + "name": "meed", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139505369" + ], + "created_at": "2026-07-10T10:12:41.764531", + "updated_at": "2026-07-10T10:12:41.764531", + "url": "/v1/software/meed" +} diff --git a/site/public/v1/software/meep/index.json b/site/public/v1/software/meep/index.json new file mode 100644 index 000000000000..b4c0b4a66d89 --- /dev/null +++ b/site/public/v1/software/meep/index.json @@ -0,0 +1,19 @@ +{ + "id": 5903, + "slug": "meep", + "name": "Meep", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125935733" + ], + "created_at": "2026-07-10T10:12:41.764531", + "updated_at": "2026-07-10T10:12:41.764531", + "url": "/v1/software/meep" +} diff --git a/site/public/v1/software/meerkat-app/index.json b/site/public/v1/software/meerkat-app/index.json new file mode 100644 index 000000000000..75aa7d109e32 --- /dev/null +++ b/site/public/v1/software/meerkat-app/index.json @@ -0,0 +1,21 @@ +{ + "id": 5904, + "slug": "meerkat-app", + "name": "Meerkat App", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "iOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q19599483" + ], + "created_at": "2026-07-10T10:12:41.764531", + "updated_at": "2026-07-10T10:12:41.764531", + "url": "/v1/software/meerkat-app" +} diff --git a/site/public/v1/software/meeting-maker/index.json b/site/public/v1/software/meeting-maker/index.json new file mode 100644 index 000000000000..a8dd7c9d66f1 --- /dev/null +++ b/site/public/v1/software/meeting-maker/index.json @@ -0,0 +1,19 @@ +{ + "id": 5905, + "slug": "meeting-maker", + "name": "Meeting Maker", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17120794" + ], + "created_at": "2026-07-10T10:12:41.764531", + "updated_at": "2026-07-10T10:12:41.764531", + "url": "/v1/software/meeting-maker" +} diff --git a/site/public/v1/software/meetro/index.json b/site/public/v1/software/meetro/index.json new file mode 100644 index 000000000000..39b2716e5dba --- /dev/null +++ b/site/public/v1/software/meetro/index.json @@ -0,0 +1,24 @@ +{ + "id": 5906, + "slug": "meetro", + "name": "Meetro", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q58518" + ], + "created_at": "2026-07-10T10:12:41.765503", + "updated_at": "2026-07-10T10:12:41.765503", + "url": "/v1/software/meetro" +} diff --git a/site/public/v1/software/megan/index.json b/site/public/v1/software/megan/index.json new file mode 100644 index 000000000000..ed5bbf13d6d8 --- /dev/null +++ b/site/public/v1/software/megan/index.json @@ -0,0 +1,21 @@ +{ + "id": 5907, + "slug": "megan", + "name": "MEGAN", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Java" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6715329" + ], + "created_at": "2026-07-10T10:12:41.765503", + "updated_at": "2026-07-10T10:12:41.765503", + "url": "/v1/software/megan" +} diff --git a/site/public/v1/software/megatools/index.json b/site/public/v1/software/megatools/index.json new file mode 100644 index 000000000000..fdae33448cea --- /dev/null +++ b/site/public/v1/software/megatools/index.json @@ -0,0 +1,19 @@ +{ + "id": 5908, + "slug": "megatools", + "name": "megatools", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62854564" + ], + "created_at": "2026-07-10T10:12:41.765503", + "updated_at": "2026-07-10T10:12:41.765503", + "url": "/v1/software/megatools" +} diff --git a/site/public/v1/software/megui/index.json b/site/public/v1/software/megui/index.json new file mode 100644 index 000000000000..d854aa6f9ba8 --- /dev/null +++ b/site/public/v1/software/megui/index.json @@ -0,0 +1,21 @@ +{ + "id": 5909, + "slug": "megui", + "name": "MeGUI", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "GNU General Public License, version 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16529046" + ], + "created_at": "2026-07-10T10:12:41.766535", + "updated_at": "2026-07-10T10:12:41.766535", + "url": "/v1/software/megui" +} diff --git a/site/public/v1/software/megurine-luka/index.json b/site/public/v1/software/megurine-luka/index.json new file mode 100644 index 000000000000..ae7e08333581 --- /dev/null +++ b/site/public/v1/software/megurine-luka/index.json @@ -0,0 +1,23 @@ +{ + "id": 5910, + "slug": "megurine-luka", + "name": "Megurine Luka", + "release_date": "2009-01-30", + "developers": [ + "Crypton Future Media" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1037133" + ], + "created_at": "2026-07-10T10:12:41.766535", + "updated_at": "2026-07-10T10:12:41.766535", + "url": "/v1/software/megurine-luka" +} diff --git a/site/public/v1/software/mehari/index.json b/site/public/v1/software/mehari/index.json new file mode 100644 index 000000000000..cb35d7afff55 --- /dev/null +++ b/site/public/v1/software/mehari/index.json @@ -0,0 +1,19 @@ +{ + "id": 5911, + "slug": "mehari", + "name": "Mehari", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3333666" + ], + "created_at": "2026-07-10T10:12:41.766535", + "updated_at": "2026-07-10T10:12:41.766535", + "url": "/v1/software/mehari" +} diff --git a/site/public/v1/software/mei-friend-package-for-atom/index.json b/site/public/v1/software/mei-friend-package-for-atom/index.json new file mode 100644 index 000000000000..1693d13a4c19 --- /dev/null +++ b/site/public/v1/software/mei-friend-package-for-atom/index.json @@ -0,0 +1,19 @@ +{ + "id": 5912, + "slug": "mei-friend-package-for-atom", + "name": "MEI-Friend Package for Atom", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085116" + ], + "created_at": "2026-07-10T10:12:41.767528", + "updated_at": "2026-07-10T10:12:41.767528", + "url": "/v1/software/mei-friend-package-for-atom" +} diff --git a/site/public/v1/software/mei-friend/index.json b/site/public/v1/software/mei-friend/index.json new file mode 100644 index 000000000000..6279c49750e5 --- /dev/null +++ b/site/public/v1/software/mei-friend/index.json @@ -0,0 +1,19 @@ +{ + "id": 5913, + "slug": "mei-friend", + "name": "MEI Friend", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085115" + ], + "created_at": "2026-07-10T10:12:41.767528", + "updated_at": "2026-07-10T10:12:41.767528", + "url": "/v1/software/mei-friend" +} diff --git a/site/public/v1/software/mei-garage/index.json b/site/public/v1/software/mei-garage/index.json new file mode 100644 index 000000000000..d0baa6631854 --- /dev/null +++ b/site/public/v1/software/mei-garage/index.json @@ -0,0 +1,19 @@ +{ + "id": 5914, + "slug": "mei-garage", + "name": "MEI Garage", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085117" + ], + "created_at": "2026-07-10T10:12:41.767528", + "updated_at": "2026-07-10T10:12:41.767528", + "url": "/v1/software/mei-garage" +} diff --git a/site/public/v1/software/meiko/index.json b/site/public/v1/software/meiko/index.json new file mode 100644 index 000000000000..de2e7878d566 --- /dev/null +++ b/site/public/v1/software/meiko/index.json @@ -0,0 +1,23 @@ +{ + "id": 5915, + "slug": "meiko", + "name": "MEIKO", + "release_date": "2004-11-05", + "developers": [ + "Crypton Future Media" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q618888" + ], + "created_at": "2026-07-10T10:12:41.768549", + "updated_at": "2026-07-10T10:12:41.768549", + "url": "/v1/software/meiko" +} diff --git a/site/public/v1/software/meitei-input-methods/index.json b/site/public/v1/software/meitei-input-methods/index.json new file mode 100644 index 000000000000..7e5388d481cb --- /dev/null +++ b/site/public/v1/software/meitei-input-methods/index.json @@ -0,0 +1,19 @@ +{ + "id": 5916, + "slug": "meitei-input-methods", + "name": "Meitei input methods", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113517720" + ], + "created_at": "2026-07-10T10:12:41.768549", + "updated_at": "2026-07-10T10:12:41.768549", + "url": "/v1/software/meitei-input-methods" +} diff --git a/site/public/v1/software/meitu-pic/index.json b/site/public/v1/software/meitu-pic/index.json new file mode 100644 index 000000000000..678d6231862c --- /dev/null +++ b/site/public/v1/software/meitu-pic/index.json @@ -0,0 +1,21 @@ +{ + "id": 5917, + "slug": "meitu-pic", + "name": "Meitu Pic", + "release_date": null, + "developers": [ + "Meitu" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q15941362" + ], + "created_at": "2026-07-10T10:12:41.768549", + "updated_at": "2026-07-10T10:12:41.768549", + "url": "/v1/software/meitu-pic" +} diff --git a/site/public/v1/software/melcor/index.json b/site/public/v1/software/melcor/index.json new file mode 100644 index 000000000000..8a411bf736de --- /dev/null +++ b/site/public/v1/software/melcor/index.json @@ -0,0 +1,21 @@ +{ + "id": 5918, + "slug": "melcor", + "name": "MELCOR", + "release_date": null, + "developers": [ + "Sandia National Laboratories" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6715353" + ], + "created_at": "2026-07-10T10:12:41.768549", + "updated_at": "2026-07-10T10:12:41.768549", + "url": "/v1/software/melcor" +} diff --git a/site/public/v1/software/melodyne/index.json b/site/public/v1/software/melodyne/index.json new file mode 100644 index 000000000000..09e8b8e87784 --- /dev/null +++ b/site/public/v1/software/melodyne/index.json @@ -0,0 +1,19 @@ +{ + "id": 5919, + "slug": "melodyne", + "name": "Melodyne", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1919645" + ], + "created_at": "2026-07-10T10:12:41.769556", + "updated_at": "2026-07-10T10:12:41.769556", + "url": "/v1/software/melodyne" +} diff --git a/site/public/v1/software/melting/index.json b/site/public/v1/software/melting/index.json new file mode 100644 index 000000000000..9589af990388 --- /dev/null +++ b/site/public/v1/software/melting/index.json @@ -0,0 +1,19 @@ +{ + "id": 5920, + "slug": "melting", + "name": "Melting", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76185708" + ], + "created_at": "2026-07-10T10:12:41.769556", + "updated_at": "2026-07-10T10:12:41.769556", + "url": "/v1/software/melting" +} diff --git a/site/public/v1/software/membershipworks/index.json b/site/public/v1/software/membershipworks/index.json new file mode 100644 index 000000000000..ecd04832a0b7 --- /dev/null +++ b/site/public/v1/software/membershipworks/index.json @@ -0,0 +1,19 @@ +{ + "id": 5921, + "slug": "membershipworks", + "name": "MembershipWorks", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107548741" + ], + "created_at": "2026-07-10T10:12:41.770536", + "updated_at": "2026-07-10T10:12:41.770536", + "url": "/v1/software/membershipworks" +} diff --git a/site/public/v1/software/meme-suite/index.json b/site/public/v1/software/meme-suite/index.json new file mode 100644 index 000000000000..d71b3e423fd2 --- /dev/null +++ b/site/public/v1/software/meme-suite/index.json @@ -0,0 +1,21 @@ +{ + "id": 5922, + "slug": "meme-suite", + "name": "MEME suite", + "release_date": null, + "developers": [ + "United States National Institutes of Health" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6715360" + ], + "created_at": "2026-07-10T10:12:41.770536", + "updated_at": "2026-07-10T10:12:41.770536", + "url": "/v1/software/meme-suite" +} diff --git a/site/public/v1/software/memnar/index.json b/site/public/v1/software/memnar/index.json new file mode 100644 index 000000000000..a1b14699b8b2 --- /dev/null +++ b/site/public/v1/software/memnar/index.json @@ -0,0 +1,21 @@ +{ + "id": 5923, + "slug": "memnar", + "name": "Memnar", + "release_date": null, + "developers": [ + "Mission Relearn" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140322271" + ], + "created_at": "2026-07-10T10:12:41.770536", + "updated_at": "2026-07-10T10:12:41.770536", + "url": "/v1/software/memnar" +} diff --git a/site/public/v1/software/memopal/index.json b/site/public/v1/software/memopal/index.json new file mode 100644 index 000000000000..e2e3b093143f --- /dev/null +++ b/site/public/v1/software/memopal/index.json @@ -0,0 +1,21 @@ +{ + "id": 5924, + "slug": "memopal", + "name": "Memopal", + "release_date": "2008-04-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3854370" + ], + "created_at": "2026-07-10T10:12:41.770536", + "updated_at": "2026-07-10T10:12:41.770536", + "url": "/v1/software/memopal" +} diff --git a/site/public/v1/software/memoq/index.json b/site/public/v1/software/memoq/index.json new file mode 100644 index 000000000000..6f091db6a080 --- /dev/null +++ b/site/public/v1/software/memoq/index.json @@ -0,0 +1,21 @@ +{ + "id": 5925, + "slug": "memoq", + "name": "memoQ", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1920031" + ], + "created_at": "2026-07-10T10:12:41.771553", + "updated_at": "2026-07-10T10:12:41.771553", + "url": "/v1/software/memoq" +} diff --git a/site/public/v1/software/mempool/index.json b/site/public/v1/software/mempool/index.json new file mode 100644 index 000000000000..0835e111ba30 --- /dev/null +++ b/site/public/v1/software/mempool/index.json @@ -0,0 +1,19 @@ +{ + "id": 5926, + "slug": "mempool", + "name": "MemPool", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76184516" + ], + "created_at": "2026-07-10T10:12:41.771553", + "updated_at": "2026-07-10T10:12:41.771553", + "url": "/v1/software/mempool" +} diff --git a/site/public/v1/software/memsource/index.json b/site/public/v1/software/memsource/index.json new file mode 100644 index 000000000000..6b563f032457 --- /dev/null +++ b/site/public/v1/software/memsource/index.json @@ -0,0 +1,21 @@ +{ + "id": 5927, + "slug": "memsource", + "name": "Memsource", + "release_date": null, + "developers": [ + "Memsource" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6814172" + ], + "created_at": "2026-07-10T10:12:41.771553", + "updated_at": "2026-07-10T10:12:41.771553", + "url": "/v1/software/memsource" +} diff --git a/site/public/v1/software/memtester/index.json b/site/public/v1/software/memtester/index.json new file mode 100644 index 000000000000..0463819f902b --- /dev/null +++ b/site/public/v1/software/memtester/index.json @@ -0,0 +1,19 @@ +{ + "id": 5928, + "slug": "memtester", + "name": "memtester", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62854324" + ], + "created_at": "2026-07-10T10:12:41.772515", + "updated_at": "2026-07-10T10:12:41.772515", + "url": "/v1/software/memtester" +} diff --git a/site/public/v1/software/mend-renovate-cli/index.json b/site/public/v1/software/mend-renovate-cli/index.json new file mode 100644 index 000000000000..d01dfe2e1d14 --- /dev/null +++ b/site/public/v1/software/mend-renovate-cli/index.json @@ -0,0 +1,19 @@ +{ + "id": 5929, + "slug": "mend-renovate-cli", + "name": "Mend Renovate CLI", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137371768" + ], + "created_at": "2026-07-10T10:12:41.772515", + "updated_at": "2026-07-10T10:12:41.772515", + "url": "/v1/software/mend-renovate-cli" +} diff --git a/site/public/v1/software/mend-renovate/index.json b/site/public/v1/software/mend-renovate/index.json new file mode 100644 index 000000000000..36ee238b8a0c --- /dev/null +++ b/site/public/v1/software/mend-renovate/index.json @@ -0,0 +1,19 @@ +{ + "id": 5930, + "slug": "mend-renovate", + "name": "Mend Renovate", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137371700" + ], + "created_at": "2026-07-10T10:12:41.772515", + "updated_at": "2026-07-10T10:12:41.772515", + "url": "/v1/software/mend-renovate" +} diff --git a/site/public/v1/software/mental-ray/index.json b/site/public/v1/software/mental-ray/index.json new file mode 100644 index 000000000000..30dafc1246c3 --- /dev/null +++ b/site/public/v1/software/mental-ray/index.json @@ -0,0 +1,21 @@ +{ + "id": 5931, + "slug": "mental-ray", + "name": "Mental Ray", + "release_date": null, + "developers": [ + "Nvidia" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q720287" + ], + "created_at": "2026-07-10T10:12:41.773511", + "updated_at": "2026-07-10T10:12:41.773511", + "url": "/v1/software/mental-ray" +} diff --git a/site/public/v1/software/menu-blinking/index.json b/site/public/v1/software/menu-blinking/index.json new file mode 100644 index 000000000000..c41d92d592bf --- /dev/null +++ b/site/public/v1/software/menu-blinking/index.json @@ -0,0 +1,19 @@ +{ + "id": 5932, + "slug": "menu-blinking", + "name": "Menu blinking", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16257835" + ], + "created_at": "2026-07-10T10:12:41.773511", + "updated_at": "2026-07-10T10:12:41.773511", + "url": "/v1/software/menu-blinking" +} diff --git a/site/public/v1/software/mepa/index.json b/site/public/v1/software/mepa/index.json new file mode 100644 index 000000000000..8cc465a09e60 --- /dev/null +++ b/site/public/v1/software/mepa/index.json @@ -0,0 +1,23 @@ +{ + "id": 5933, + "slug": "mepa", + "name": "MEPA", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105229751" + ], + "created_at": "2026-07-10T10:12:41.774573", + "updated_at": "2026-07-10T10:12:41.774573", + "url": "/v1/software/mepa" +} diff --git a/site/public/v1/software/merc/index.json b/site/public/v1/software/merc/index.json new file mode 100644 index 000000000000..89f9073794f8 --- /dev/null +++ b/site/public/v1/software/merc/index.json @@ -0,0 +1,19 @@ +{ + "id": 5934, + "slug": "merc", + "name": "Merc", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4043994" + ], + "created_at": "2026-07-10T10:12:41.774573", + "updated_at": "2026-07-10T10:12:41.774573", + "url": "/v1/software/merc" +} diff --git a/site/public/v1/software/mercury-browser/index.json b/site/public/v1/software/mercury-browser/index.json new file mode 100644 index 000000000000..55dc371ac15d --- /dev/null +++ b/site/public/v1/software/mercury-browser/index.json @@ -0,0 +1,19 @@ +{ + "id": 5935, + "slug": "mercury-browser", + "name": "Mercury Browser", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q20714547" + ], + "created_at": "2026-07-10T10:12:41.774573", + "updated_at": "2026-07-10T10:12:41.774573", + "url": "/v1/software/mercury-browser" +} diff --git a/site/public/v1/software/merge-window/index.json b/site/public/v1/software/merge-window/index.json new file mode 100644 index 000000000000..22b69982f7aa --- /dev/null +++ b/site/public/v1/software/merge-window/index.json @@ -0,0 +1,19 @@ +{ + "id": 5936, + "slug": "merge-window", + "name": "merge window", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6819098" + ], + "created_at": "2026-07-10T10:12:41.775457", + "updated_at": "2026-07-10T10:12:41.775457", + "url": "/v1/software/merge-window" +} diff --git a/site/public/v1/software/mergelog/index.json b/site/public/v1/software/mergelog/index.json new file mode 100644 index 000000000000..d5dee0a6924a --- /dev/null +++ b/site/public/v1/software/mergelog/index.json @@ -0,0 +1,19 @@ +{ + "id": 5937, + "slug": "mergelog", + "name": "mergelog", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62854316" + ], + "created_at": "2026-07-10T10:12:41.775457", + "updated_at": "2026-07-10T10:12:41.775457", + "url": "/v1/software/mergelog" +} diff --git a/site/public/v1/software/merli/index.json b/site/public/v1/software/merli/index.json new file mode 100644 index 000000000000..f490533f8d23 --- /dev/null +++ b/site/public/v1/software/merli/index.json @@ -0,0 +1,21 @@ +{ + "id": 5938, + "slug": "merli", + "name": "Merli", + "release_date": "2013-12-24", + "developers": [ + "Yamaha" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25222602" + ], + "created_at": "2026-07-10T10:12:41.776445", + "updated_at": "2026-07-10T10:12:41.776445", + "url": "/v1/software/merli" +} diff --git a/site/public/v1/software/merlin/index.json b/site/public/v1/software/merlin/index.json new file mode 100644 index 000000000000..4f575510476d --- /dev/null +++ b/site/public/v1/software/merlin/index.json @@ -0,0 +1,19 @@ +{ + "id": 5939, + "slug": "merlin", + "name": "Merlin", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q173979" + ], + "created_at": "2026-07-10T10:12:41.776445", + "updated_at": "2026-07-10T10:12:41.776445", + "url": "/v1/software/merlin" +} diff --git a/site/public/v1/software/mesa-progs/index.json b/site/public/v1/software/mesa-progs/index.json new file mode 100644 index 000000000000..86ce34f26672 --- /dev/null +++ b/site/public/v1/software/mesa-progs/index.json @@ -0,0 +1,19 @@ +{ + "id": 5940, + "slug": "mesa-progs", + "name": "mesa-progs", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975225" + ], + "created_at": "2026-07-10T10:12:41.776445", + "updated_at": "2026-07-10T10:12:41.776445", + "url": "/v1/software/mesa-progs" +} diff --git a/site/public/v1/software/mesa/index.json b/site/public/v1/software/mesa/index.json new file mode 100644 index 000000000000..533437825c5a --- /dev/null +++ b/site/public/v1/software/mesa/index.json @@ -0,0 +1,19 @@ +{ + "id": 5941, + "slug": "mesa", + "name": "MESA", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q101942191" + ], + "created_at": "2026-07-10T10:12:41.776445", + "updated_at": "2026-07-10T10:12:41.776445", + "url": "/v1/software/mesa" +} diff --git a/site/public/v1/software/mesamatrix/index.json b/site/public/v1/software/mesamatrix/index.json new file mode 100644 index 000000000000..7d3f6cf7bacb --- /dev/null +++ b/site/public/v1/software/mesamatrix/index.json @@ -0,0 +1,19 @@ +{ + "id": 5942, + "slug": "mesamatrix", + "name": "Mesamatrix", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q119443346" + ], + "created_at": "2026-07-10T10:12:41.777444", + "updated_at": "2026-07-10T10:12:41.777444", + "url": "/v1/software/mesamatrix" +} diff --git a/site/public/v1/software/meshcore/index.json b/site/public/v1/software/meshcore/index.json new file mode 100644 index 000000000000..fddd1107429d --- /dev/null +++ b/site/public/v1/software/meshcore/index.json @@ -0,0 +1,21 @@ +{ + "id": 5943, + "slug": "meshcore", + "name": "MeshCore", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134394530" + ], + "created_at": "2026-07-10T10:12:41.777444", + "updated_at": "2026-07-10T10:12:41.777444", + "url": "/v1/software/meshcore" +} diff --git a/site/public/v1/software/meshdash/index.json b/site/public/v1/software/meshdash/index.json new file mode 100644 index 000000000000..f241cd4f11bd --- /dev/null +++ b/site/public/v1/software/meshdash/index.json @@ -0,0 +1,25 @@ +{ + "id": 5944, + "slug": "meshdash", + "name": "MeshDash", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "gravitational acceleration" + ], + "programming_languages": [ + "Python" + ], + "licenses": [ + "GNU Lesser General Public License, version 2.1" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139844395" + ], + "created_at": "2026-07-10T10:12:41.777444", + "updated_at": "2026-07-10T10:12:41.777444", + "url": "/v1/software/meshdash" +} diff --git a/site/public/v1/software/meshinspector/index.json b/site/public/v1/software/meshinspector/index.json new file mode 100644 index 000000000000..6a407f791049 --- /dev/null +++ b/site/public/v1/software/meshinspector/index.json @@ -0,0 +1,19 @@ +{ + "id": 5945, + "slug": "meshinspector", + "name": "MeshInspector", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138990072" + ], + "created_at": "2026-07-10T10:12:41.778541", + "updated_at": "2026-07-10T10:12:41.778541", + "url": "/v1/software/meshinspector" +} diff --git a/site/public/v1/software/meshlib/index.json b/site/public/v1/software/meshlib/index.json new file mode 100644 index 000000000000..37abecb91cfc --- /dev/null +++ b/site/public/v1/software/meshlib/index.json @@ -0,0 +1,19 @@ +{ + "id": 5946, + "slug": "meshlib", + "name": "MeshLib", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136450663" + ], + "created_at": "2026-07-10T10:12:41.778541", + "updated_at": "2026-07-10T10:12:41.778541", + "url": "/v1/software/meshlib" +} diff --git a/site/public/v1/software/mesoscale-hydrological-model/index.json b/site/public/v1/software/mesoscale-hydrological-model/index.json new file mode 100644 index 000000000000..bfefd83defa7 --- /dev/null +++ b/site/public/v1/software/mesoscale-hydrological-model/index.json @@ -0,0 +1,19 @@ +{ + "id": 5947, + "slug": "mesoscale-hydrological-model", + "name": "mesoscale Hydrological Model", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120596576" + ], + "created_at": "2026-07-10T10:12:41.778541", + "updated_at": "2026-07-10T10:12:41.778541", + "url": "/v1/software/mesoscale-hydrological-model" +} diff --git a/site/public/v1/software/mesosphere-inc/index.json b/site/public/v1/software/mesosphere-inc/index.json new file mode 100644 index 000000000000..f31f0851a8e5 --- /dev/null +++ b/site/public/v1/software/mesosphere-inc/index.json @@ -0,0 +1,21 @@ +{ + "id": 5948, + "slug": "mesosphere-inc", + "name": "Mesosphere Inc", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Apache License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28957027" + ], + "created_at": "2026-07-10T10:12:41.779514", + "updated_at": "2026-07-10T10:12:41.779514", + "url": "/v1/software/mesosphere-inc" +} diff --git a/site/public/v1/software/message-exchange-bus-mxb/index.json b/site/public/v1/software/message-exchange-bus-mxb/index.json new file mode 100644 index 000000000000..78542a81ec65 --- /dev/null +++ b/site/public/v1/software/message-exchange-bus-mxb/index.json @@ -0,0 +1,19 @@ +{ + "id": 5949, + "slug": "message-exchange-bus-mxb", + "name": "Message Exchange Bus (MXB)", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131978406" + ], + "created_at": "2026-07-10T10:12:41.779514", + "updated_at": "2026-07-10T10:12:41.779514", + "url": "/v1/software/message-exchange-bus-mxb" +} diff --git a/site/public/v1/software/messenger-kids/index.json b/site/public/v1/software/messenger-kids/index.json new file mode 100644 index 000000000000..8426d1742ac6 --- /dev/null +++ b/site/public/v1/software/messenger-kids/index.json @@ -0,0 +1,26 @@ +{ + "id": 5950, + "slug": "messenger-kids", + "name": "Messenger Kids", + "release_date": null, + "developers": [ + "Meta" + ], + "publishers": [], + "operating_systems": [ + "Amazon Appstore", + "iOS" + ], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q54621410" + ], + "created_at": "2026-07-10T10:12:41.779514", + "updated_at": "2026-07-10T10:12:41.779514", + "url": "/v1/software/messenger-kids" +} diff --git a/site/public/v1/software/messenger-mobile/index.json b/site/public/v1/software/messenger-mobile/index.json new file mode 100644 index 000000000000..fd2341abc0a0 --- /dev/null +++ b/site/public/v1/software/messenger-mobile/index.json @@ -0,0 +1,19 @@ +{ + "id": 5951, + "slug": "messenger-mobile", + "name": "Messenger Mobile", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3111254" + ], + "created_at": "2026-07-10T10:12:41.780526", + "updated_at": "2026-07-10T10:12:41.780526", + "url": "/v1/software/messenger-mobile" +} diff --git a/site/public/v1/software/meta-spark-studio/index.json b/site/public/v1/software/meta-spark-studio/index.json new file mode 100644 index 000000000000..d0b99e86b497 --- /dev/null +++ b/site/public/v1/software/meta-spark-studio/index.json @@ -0,0 +1,24 @@ +{ + "id": 5952, + "slug": "meta-spark-studio", + "name": "Meta Spark Studio", + "release_date": null, + "developers": [ + "Meta" + ], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107361304" + ], + "created_at": "2026-07-10T10:12:41.780526", + "updated_at": "2026-07-10T10:12:41.780526", + "url": "/v1/software/meta-spark-studio" +} diff --git a/site/public/v1/software/metadata-facility-for-java/index.json b/site/public/v1/software/metadata-facility-for-java/index.json new file mode 100644 index 000000000000..7a02c4f019fa --- /dev/null +++ b/site/public/v1/software/metadata-facility-for-java/index.json @@ -0,0 +1,19 @@ +{ + "id": 5953, + "slug": "metadata-facility-for-java", + "name": "Metadata Facility for Java", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6822478" + ], + "created_at": "2026-07-10T10:12:41.780526", + "updated_at": "2026-07-10T10:12:41.780526", + "url": "/v1/software/metadata-facility-for-java" +} diff --git a/site/public/v1/software/metadata-removal-tool/index.json b/site/public/v1/software/metadata-removal-tool/index.json new file mode 100644 index 000000000000..763df7b70b3d --- /dev/null +++ b/site/public/v1/software/metadata-removal-tool/index.json @@ -0,0 +1,19 @@ +{ + "id": 5954, + "slug": "metadata-removal-tool", + "name": "metadata removal tool", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6822481" + ], + "created_at": "2026-07-10T10:12:41.780526", + "updated_at": "2026-07-10T10:12:41.780526", + "url": "/v1/software/metadata-removal-tool" +} diff --git a/site/public/v1/software/metaedit/index.json b/site/public/v1/software/metaedit/index.json new file mode 100644 index 000000000000..bbcc395a7df4 --- /dev/null +++ b/site/public/v1/software/metaedit/index.json @@ -0,0 +1,19 @@ +{ + "id": 5955, + "slug": "metaedit", + "name": "MetaEdit+", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q9369219" + ], + "created_at": "2026-07-10T10:12:41.781513", + "updated_at": "2026-07-10T10:12:41.781513", + "url": "/v1/software/metaedit" +} diff --git a/site/public/v1/software/metafacture/index.json b/site/public/v1/software/metafacture/index.json new file mode 100644 index 000000000000..d6e578a123a1 --- /dev/null +++ b/site/public/v1/software/metafacture/index.json @@ -0,0 +1,19 @@ +{ + "id": 5956, + "slug": "metafacture", + "name": "Metafacture", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q31158294" + ], + "created_at": "2026-07-10T10:12:41.781513", + "updated_at": "2026-07-10T10:12:41.781513", + "url": "/v1/software/metafacture" +} diff --git a/site/public/v1/software/metagen/index.json b/site/public/v1/software/metagen/index.json new file mode 100644 index 000000000000..a3043d0f209f --- /dev/null +++ b/site/public/v1/software/metagen/index.json @@ -0,0 +1,19 @@ +{ + "id": 5957, + "slug": "metagen", + "name": "metagen", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975228" + ], + "created_at": "2026-07-10T10:12:41.782544", + "updated_at": "2026-07-10T10:12:41.782544", + "url": "/v1/software/metagen" +} diff --git a/site/public/v1/software/metahtml/index.json b/site/public/v1/software/metahtml/index.json new file mode 100644 index 000000000000..9a736aaff23d --- /dev/null +++ b/site/public/v1/software/metahtml/index.json @@ -0,0 +1,19 @@ +{ + "id": 5958, + "slug": "metahtml", + "name": "Metahtml", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76185720" + ], + "created_at": "2026-07-10T10:12:41.782544", + "updated_at": "2026-07-10T10:12:41.782544", + "url": "/v1/software/metahtml" +} diff --git a/site/public/v1/software/metalith/index.json b/site/public/v1/software/metalith/index.json new file mode 100644 index 000000000000..b9aa15500a47 --- /dev/null +++ b/site/public/v1/software/metalith/index.json @@ -0,0 +1,23 @@ +{ + "id": 5959, + "slug": "metalith", + "name": "MetaLith", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4291522" + ], + "created_at": "2026-07-10T10:12:41.782544", + "updated_at": "2026-07-10T10:12:41.782544", + "url": "/v1/software/metalith" +} diff --git a/site/public/v1/software/metalmetric/index.json b/site/public/v1/software/metalmetric/index.json new file mode 100644 index 000000000000..464efe05630b --- /dev/null +++ b/site/public/v1/software/metalmetric/index.json @@ -0,0 +1,19 @@ +{ + "id": 5960, + "slug": "metalmetric", + "name": "MetalMetric", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138634114" + ], + "created_at": "2026-07-10T10:12:41.783540", + "updated_at": "2026-07-10T10:12:41.783540", + "url": "/v1/software/metalmetric" +} diff --git a/site/public/v1/software/metapixel/index.json b/site/public/v1/software/metapixel/index.json new file mode 100644 index 000000000000..b4a7975fc6d3 --- /dev/null +++ b/site/public/v1/software/metapixel/index.json @@ -0,0 +1,19 @@ +{ + "id": 5961, + "slug": "metapixel", + "name": "metapixel", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065025" + ], + "created_at": "2026-07-10T10:12:41.783540", + "updated_at": "2026-07-10T10:12:41.783540", + "url": "/v1/software/metapixel" +} diff --git a/site/public/v1/software/metascape/index.json b/site/public/v1/software/metascape/index.json new file mode 100644 index 000000000000..73001a04be83 --- /dev/null +++ b/site/public/v1/software/metascape/index.json @@ -0,0 +1,23 @@ +{ + "id": 5962, + "slug": "metascape", + "name": "Metascape", + "release_date": null, + "developers": [ + "GNF" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25304760" + ], + "created_at": "2026-07-10T10:12:41.783540", + "updated_at": "2026-07-10T10:12:41.783540", + "url": "/v1/software/metascape" +} diff --git a/site/public/v1/software/metashape/index.json b/site/public/v1/software/metashape/index.json new file mode 100644 index 000000000000..b32f2b979d5c --- /dev/null +++ b/site/public/v1/software/metashape/index.json @@ -0,0 +1,21 @@ +{ + "id": 5963, + "slug": "metashape", + "name": "Metashape", + "release_date": null, + "developers": [ + "Agisoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25052018" + ], + "created_at": "2026-07-10T10:12:41.784518", + "updated_at": "2026-07-10T10:12:41.784518", + "url": "/v1/software/metashape" +} diff --git a/site/public/v1/software/metasploit/index.json b/site/public/v1/software/metasploit/index.json new file mode 100644 index 000000000000..5a217827bde8 --- /dev/null +++ b/site/public/v1/software/metasploit/index.json @@ -0,0 +1,27 @@ +{ + "id": 5964, + "slug": "metasploit", + "name": "Metasploit", + "release_date": "2011-08-01", + "developers": [ + "Rapid7" + ], + "publishers": [], + "operating_systems": [ + "macOS", + "Unix-like operating system", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "3-clause BSD License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1147445" + ], + "created_at": "2026-07-10T10:12:41.784518", + "updated_at": "2026-07-10T10:12:41.784518", + "url": "/v1/software/metasploit" +} diff --git a/site/public/v1/software/metastock-d-c/index.json b/site/public/v1/software/metastock-d-c/index.json new file mode 100644 index 000000000000..4eb9e2977063 --- /dev/null +++ b/site/public/v1/software/metastock-d-c/index.json @@ -0,0 +1,21 @@ +{ + "id": 5965, + "slug": "metastock-d-c", + "name": "MetaStock D/C", + "release_date": null, + "developers": [ + "MetaStock" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28316531" + ], + "created_at": "2026-07-10T10:12:41.784518", + "updated_at": "2026-07-10T10:12:41.784518", + "url": "/v1/software/metastock-d-c" +} diff --git a/site/public/v1/software/metastock-r-t/index.json b/site/public/v1/software/metastock-r-t/index.json new file mode 100644 index 000000000000..f71ea45605f1 --- /dev/null +++ b/site/public/v1/software/metastock-r-t/index.json @@ -0,0 +1,21 @@ +{ + "id": 5966, + "slug": "metastock-r-t", + "name": "MetaStock R/T", + "release_date": null, + "developers": [ + "MetaStock" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28316498" + ], + "created_at": "2026-07-10T10:12:41.784518", + "updated_at": "2026-07-10T10:12:41.784518", + "url": "/v1/software/metastock-r-t" +} diff --git a/site/public/v1/software/metastock-xenith/index.json b/site/public/v1/software/metastock-xenith/index.json new file mode 100644 index 000000000000..e0de1724b63a --- /dev/null +++ b/site/public/v1/software/metastock-xenith/index.json @@ -0,0 +1,21 @@ +{ + "id": 5967, + "slug": "metastock-xenith", + "name": "MetaStock XENITH", + "release_date": null, + "developers": [ + "MetaStock" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28316517" + ], + "created_at": "2026-07-10T10:12:41.785547", + "updated_at": "2026-07-10T10:12:41.785547", + "url": "/v1/software/metastock-xenith" +} diff --git a/site/public/v1/software/metastock/index.json b/site/public/v1/software/metastock/index.json new file mode 100644 index 000000000000..88bfd59f2988 --- /dev/null +++ b/site/public/v1/software/metastock/index.json @@ -0,0 +1,19 @@ +{ + "id": 5968, + "slug": "metastock", + "name": "MetaStock", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1268489" + ], + "created_at": "2026-07-10T10:12:41.785547", + "updated_at": "2026-07-10T10:12:41.785547", + "url": "/v1/software/metastock" +} diff --git a/site/public/v1/software/metateam/index.json b/site/public/v1/software/metateam/index.json new file mode 100644 index 000000000000..69cc18763275 --- /dev/null +++ b/site/public/v1/software/metateam/index.json @@ -0,0 +1,19 @@ +{ + "id": 5969, + "slug": "metateam", + "name": "MetaTeam", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6822291" + ], + "created_at": "2026-07-10T10:12:41.785547", + "updated_at": "2026-07-10T10:12:41.785547", + "url": "/v1/software/metateam" +} diff --git a/site/public/v1/software/metatexis/index.json b/site/public/v1/software/metatexis/index.json new file mode 100644 index 000000000000..8b9b9598f411 --- /dev/null +++ b/site/public/v1/software/metatexis/index.json @@ -0,0 +1,19 @@ +{ + "id": 5970, + "slug": "metatexis", + "name": "MetaTexis", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1924651" + ], + "created_at": "2026-07-10T10:12:41.786506", + "updated_at": "2026-07-10T10:12:41.786506", + "url": "/v1/software/metatexis" +} diff --git a/site/public/v1/software/metatron-discovery/index.json b/site/public/v1/software/metatron-discovery/index.json new file mode 100644 index 000000000000..06ac21fd0177 --- /dev/null +++ b/site/public/v1/software/metatron-discovery/index.json @@ -0,0 +1,21 @@ +{ + "id": 5971, + "slug": "metatron-discovery", + "name": "Metatron discovery", + "release_date": null, + "developers": [ + "SK Telecom" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q65533608" + ], + "created_at": "2026-07-10T10:12:41.786506", + "updated_at": "2026-07-10T10:12:41.786506", + "url": "/v1/software/metatron-discovery" +} diff --git a/site/public/v1/software/metatype1/index.json b/site/public/v1/software/metatype1/index.json new file mode 100644 index 000000000000..27357b6fe7a7 --- /dev/null +++ b/site/public/v1/software/metatype1/index.json @@ -0,0 +1,21 @@ +{ + "id": 5972, + "slug": "metatype1", + "name": "MetaType1", + "release_date": null, + "developers": [ + "GUST" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6715474" + ], + "created_at": "2026-07-10T10:12:41.786506", + "updated_at": "2026-07-10T10:12:41.786506", + "url": "/v1/software/metatype1" +} diff --git a/site/public/v1/software/meteodyn-wt/index.json b/site/public/v1/software/meteodyn-wt/index.json new file mode 100644 index 000000000000..859631602411 --- /dev/null +++ b/site/public/v1/software/meteodyn-wt/index.json @@ -0,0 +1,19 @@ +{ + "id": 5973, + "slug": "meteodyn-wt", + "name": "Meteodyn WT", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q55641057" + ], + "created_at": "2026-07-10T10:12:41.787504", + "updated_at": "2026-07-10T10:12:41.787504", + "url": "/v1/software/meteodyn-wt" +} diff --git a/site/public/v1/software/metigo/index.json b/site/public/v1/software/metigo/index.json new file mode 100644 index 000000000000..3cca6a3d9b28 --- /dev/null +++ b/site/public/v1/software/metigo/index.json @@ -0,0 +1,19 @@ +{ + "id": 5974, + "slug": "metigo", + "name": "Metigo", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25304422" + ], + "created_at": "2026-07-10T10:12:41.787504", + "updated_at": "2026-07-10T10:12:41.787504", + "url": "/v1/software/metigo" +} diff --git a/site/public/v1/software/metro/index.json b/site/public/v1/software/metro/index.json new file mode 100644 index 000000000000..dcc26751a5a4 --- /dev/null +++ b/site/public/v1/software/metro/index.json @@ -0,0 +1,23 @@ +{ + "id": 5975, + "slug": "metro", + "name": "Metro", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [ + "Microsoft" + ], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1148750" + ], + "created_at": "2026-07-10T10:12:41.787504", + "updated_at": "2026-07-10T10:12:41.787504", + "url": "/v1/software/metro" +} diff --git a/site/public/v1/software/mets-page-turner/index.json b/site/public/v1/software/mets-page-turner/index.json new file mode 100644 index 000000000000..0758f5b24cd5 --- /dev/null +++ b/site/public/v1/software/mets-page-turner/index.json @@ -0,0 +1,19 @@ +{ + "id": 5976, + "slug": "mets-page-turner", + "name": "METS Page Turner", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085118" + ], + "created_at": "2026-07-10T10:12:41.787504", + "updated_at": "2026-07-10T10:12:41.787504", + "url": "/v1/software/mets-page-turner" +} diff --git a/site/public/v1/software/metview/index.json b/site/public/v1/software/metview/index.json new file mode 100644 index 000000000000..1ad3122cd96f --- /dev/null +++ b/site/public/v1/software/metview/index.json @@ -0,0 +1,19 @@ +{ + "id": 5977, + "slug": "metview", + "name": "Metview", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q48989159" + ], + "created_at": "2026-07-10T10:12:41.789562", + "updated_at": "2026-07-10T10:12:41.789562", + "url": "/v1/software/metview" +} diff --git a/site/public/v1/software/mevislab/index.json b/site/public/v1/software/mevislab/index.json new file mode 100644 index 000000000000..c283a2aaf7d4 --- /dev/null +++ b/site/public/v1/software/mevislab/index.json @@ -0,0 +1,23 @@ +{ + "id": 5978, + "slug": "mevislab", + "name": "MeVisLab", + "release_date": null, + "developers": [ + "MeVis Medical Solutions" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6802909" + ], + "created_at": "2026-07-10T10:12:41.792448", + "updated_at": "2026-07-10T10:12:41.792448", + "url": "/v1/software/mevislab" +} diff --git a/site/public/v1/software/mew/index.json b/site/public/v1/software/mew/index.json new file mode 100644 index 000000000000..aefd8663db0f --- /dev/null +++ b/site/public/v1/software/mew/index.json @@ -0,0 +1,19 @@ +{ + "id": 5979, + "slug": "mew", + "name": "Mew", + "release_date": "2011-09-30", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25205722" + ], + "created_at": "2026-07-10T10:12:41.792448", + "updated_at": "2026-07-10T10:12:41.792448", + "url": "/v1/software/mew" +} diff --git a/site/public/v1/software/mfem/index.json b/site/public/v1/software/mfem/index.json new file mode 100644 index 000000000000..473555819976 --- /dev/null +++ b/site/public/v1/software/mfem/index.json @@ -0,0 +1,24 @@ +{ + "id": 5980, + "slug": "mfem", + "name": "MFEM", + "release_date": null, + "developers": [ + "Will E. Pazner", + "Veselin Asenov Dobrev", + "Tzanio V. Kolev", + "Mark L. Stowell" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60741067" + ], + "created_at": "2026-07-10T10:12:41.792448", + "updated_at": "2026-07-10T10:12:41.792448", + "url": "/v1/software/mfem" +} diff --git a/site/public/v1/software/mflow/index.json b/site/public/v1/software/mflow/index.json new file mode 100644 index 000000000000..f809b36156b7 --- /dev/null +++ b/site/public/v1/software/mflow/index.json @@ -0,0 +1,19 @@ +{ + "id": 5981, + "slug": "mflow", + "name": "mflow", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6826791" + ], + "created_at": "2026-07-10T10:12:41.793553", + "updated_at": "2026-07-10T10:12:41.793553", + "url": "/v1/software/mflow" +} diff --git a/site/public/v1/software/mg-rast/index.json b/site/public/v1/software/mg-rast/index.json new file mode 100644 index 000000000000..f5ae45150d73 --- /dev/null +++ b/site/public/v1/software/mg-rast/index.json @@ -0,0 +1,19 @@ +{ + "id": 5982, + "slug": "mg-rast", + "name": "MG-RAST", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17120727" + ], + "created_at": "2026-07-10T10:12:41.793553", + "updated_at": "2026-07-10T10:12:41.793553", + "url": "/v1/software/mg-rast" +} diff --git a/site/public/v1/software/mhonarc/index.json b/site/public/v1/software/mhonarc/index.json new file mode 100644 index 000000000000..c965cf930c51 --- /dev/null +++ b/site/public/v1/software/mhonarc/index.json @@ -0,0 +1,19 @@ +{ + "id": 5983, + "slug": "mhonarc", + "name": "MHonArc", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62854244" + ], + "created_at": "2026-07-10T10:12:41.794552", + "updated_at": "2026-07-10T10:12:41.794552", + "url": "/v1/software/mhonarc" +} diff --git a/site/public/v1/software/mhwaveedit/index.json b/site/public/v1/software/mhwaveedit/index.json new file mode 100644 index 000000000000..6b43840a721e --- /dev/null +++ b/site/public/v1/software/mhwaveedit/index.json @@ -0,0 +1,19 @@ +{ + "id": 5984, + "slug": "mhwaveedit", + "name": "mhWaveEdit", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62854236" + ], + "created_at": "2026-07-10T10:12:41.794552", + "updated_at": "2026-07-10T10:12:41.794552", + "url": "/v1/software/mhwaveedit" +} diff --git a/site/public/v1/software/miaopai/index.json b/site/public/v1/software/miaopai/index.json new file mode 100644 index 000000000000..21aa81ee519e --- /dev/null +++ b/site/public/v1/software/miaopai/index.json @@ -0,0 +1,19 @@ +{ + "id": 5985, + "slug": "miaopai", + "name": "Miaopai", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28136228" + ], + "created_at": "2026-07-10T10:12:41.795561", + "updated_at": "2026-07-10T10:12:41.795561", + "url": "/v1/software/miaopai" +} diff --git a/site/public/v1/software/miarmy/index.json b/site/public/v1/software/miarmy/index.json new file mode 100644 index 000000000000..4b84a80f99b0 --- /dev/null +++ b/site/public/v1/software/miarmy/index.json @@ -0,0 +1,23 @@ +{ + "id": 5986, + "slug": "miarmy", + "name": "Miarmy", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [ + "Python" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q15956013" + ], + "created_at": "2026-07-10T10:12:41.795561", + "updated_at": "2026-07-10T10:12:41.795561", + "url": "/v1/software/miarmy" +} diff --git a/site/public/v1/software/mic-in-track/index.json b/site/public/v1/software/mic-in-track/index.json new file mode 100644 index 000000000000..307d8334d5b2 --- /dev/null +++ b/site/public/v1/software/mic-in-track/index.json @@ -0,0 +1,19 @@ +{ + "id": 5987, + "slug": "mic-in-track", + "name": "Mic in track", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6827816" + ], + "created_at": "2026-07-10T10:12:41.795561", + "updated_at": "2026-07-10T10:12:41.795561", + "url": "/v1/software/mic-in-track" +} diff --git a/site/public/v1/software/micahub/index.json b/site/public/v1/software/micahub/index.json new file mode 100644 index 000000000000..f33c700888d9 --- /dev/null +++ b/site/public/v1/software/micahub/index.json @@ -0,0 +1,21 @@ +{ + "id": 5988, + "slug": "micahub", + "name": "Micahub", + "release_date": null, + "developers": [ + "Cointegrity" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139583730" + ], + "created_at": "2026-07-10T10:12:41.795561", + "updated_at": "2026-07-10T10:12:41.795561", + "url": "/v1/software/micahub" +} diff --git a/site/public/v1/software/mickey-s-stickers-stuff-printing-fun-kit/index.json b/site/public/v1/software/mickey-s-stickers-stuff-printing-fun-kit/index.json new file mode 100644 index 000000000000..1160d3cc2ba1 --- /dev/null +++ b/site/public/v1/software/mickey-s-stickers-stuff-printing-fun-kit/index.json @@ -0,0 +1,19 @@ +{ + "id": 5989, + "slug": "mickey-s-stickers-stuff-printing-fun-kit", + "name": "Mickey's Stickers & Stuff Printing Fun Kit", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138544578" + ], + "created_at": "2026-07-10T10:12:41.796508", + "updated_at": "2026-07-10T10:12:41.796508", + "url": "/v1/software/mickey-s-stickers-stuff-printing-fun-kit" +} diff --git a/site/public/v1/software/mico/index.json b/site/public/v1/software/mico/index.json new file mode 100644 index 000000000000..bb2efebf07ef --- /dev/null +++ b/site/public/v1/software/mico/index.json @@ -0,0 +1,19 @@ +{ + "id": 5990, + "slug": "mico", + "name": "mico", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60864756" + ], + "created_at": "2026-07-10T10:12:41.796508", + "updated_at": "2026-07-10T10:12:41.796508", + "url": "/v1/software/mico" +} diff --git a/site/public/v1/software/micro-cap/index.json b/site/public/v1/software/micro-cap/index.json new file mode 100644 index 000000000000..7858ca659b61 --- /dev/null +++ b/site/public/v1/software/micro-cap/index.json @@ -0,0 +1,21 @@ +{ + "id": 5991, + "slug": "micro-cap", + "name": "Micro-Cap", + "release_date": null, + "developers": [ + "Spectrum Software" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3856940" + ], + "created_at": "2026-07-10T10:12:41.797514", + "updated_at": "2026-07-10T10:12:41.797514", + "url": "/v1/software/micro-cap" +} diff --git a/site/public/v1/software/micro-eyeball/index.json b/site/public/v1/software/micro-eyeball/index.json new file mode 100644 index 000000000000..fcf8c2756d09 --- /dev/null +++ b/site/public/v1/software/micro-eyeball/index.json @@ -0,0 +1,19 @@ +{ + "id": 5992, + "slug": "micro-eyeball", + "name": "Micro-EYEBALL", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087829" + ], + "created_at": "2026-07-10T10:12:41.797514", + "updated_at": "2026-07-10T10:12:41.797514", + "url": "/v1/software/micro-eyeball" +} diff --git a/site/public/v1/software/micro-frontend/index.json b/site/public/v1/software/micro-frontend/index.json new file mode 100644 index 000000000000..f2a736e0a8d2 --- /dev/null +++ b/site/public/v1/software/micro-frontend/index.json @@ -0,0 +1,19 @@ +{ + "id": 5993, + "slug": "micro-frontend", + "name": "Micro frontend", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115088990" + ], + "created_at": "2026-07-10T10:12:41.797514", + "updated_at": "2026-07-10T10:12:41.797514", + "url": "/v1/software/micro-frontend" +} diff --git a/site/public/v1/software/micro-ocp/index.json b/site/public/v1/software/micro-ocp/index.json new file mode 100644 index 000000000000..0f9be34b3709 --- /dev/null +++ b/site/public/v1/software/micro-ocp/index.json @@ -0,0 +1,19 @@ +{ + "id": 5994, + "slug": "micro-ocp", + "name": "Micro-OCP", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087830" + ], + "created_at": "2026-07-10T10:12:41.797514", + "updated_at": "2026-07-10T10:12:41.797514", + "url": "/v1/software/micro-ocp" +} diff --git a/site/public/v1/software/micro-prolog/index.json b/site/public/v1/software/micro-prolog/index.json new file mode 100644 index 000000000000..ed615f2ce1ee --- /dev/null +++ b/site/public/v1/software/micro-prolog/index.json @@ -0,0 +1,19 @@ +{ + "id": 5995, + "slug": "micro-prolog", + "name": "micro-PROLOG", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6013125" + ], + "created_at": "2026-07-10T10:12:41.798608", + "updated_at": "2026-07-10T10:12:41.798608", + "url": "/v1/software/micro-prolog" +} diff --git a/site/public/v1/software/micro-saint-sharp/index.json b/site/public/v1/software/micro-saint-sharp/index.json new file mode 100644 index 000000000000..1b21d15a3702 --- /dev/null +++ b/site/public/v1/software/micro-saint-sharp/index.json @@ -0,0 +1,19 @@ +{ + "id": 5996, + "slug": "micro-saint-sharp", + "name": "Micro Saint Sharp", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q65120274" + ], + "created_at": "2026-07-10T10:12:41.798608", + "updated_at": "2026-07-10T10:12:41.798608", + "url": "/v1/software/micro-saint-sharp" +} diff --git a/site/public/v1/software/microalg/index.json b/site/public/v1/software/microalg/index.json new file mode 100644 index 000000000000..f5b0b1af6d82 --- /dev/null +++ b/site/public/v1/software/microalg/index.json @@ -0,0 +1,23 @@ +{ + "id": 5997, + "slug": "microalg", + "name": "Microalg", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "PicoLisp" + ], + "licenses": [ + "GNU General Public License, version 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105029395" + ], + "created_at": "2026-07-10T10:12:41.798608", + "updated_at": "2026-07-10T10:12:41.798608", + "url": "/v1/software/microalg" +} diff --git a/site/public/v1/software/microb/index.json b/site/public/v1/software/microb/index.json new file mode 100644 index 000000000000..e34c171f0b0e --- /dev/null +++ b/site/public/v1/software/microb/index.json @@ -0,0 +1,21 @@ +{ + "id": 5998, + "slug": "microb", + "name": "MicroB", + "release_date": null, + "developers": [ + "Nokia" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6839093" + ], + "created_at": "2026-07-10T10:12:41.799604", + "updated_at": "2026-07-10T10:12:41.799604", + "url": "/v1/software/microb" +} diff --git a/site/public/v1/software/microc-os-ii/index.json b/site/public/v1/software/microc-os-ii/index.json new file mode 100644 index 000000000000..14c9432cd641 --- /dev/null +++ b/site/public/v1/software/microc-os-ii/index.json @@ -0,0 +1,19 @@ +{ + "id": 5999, + "slug": "microc-os-ii", + "name": "MicroC/OS-II", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1140614" + ], + "created_at": "2026-07-10T10:12:41.799604", + "updated_at": "2026-07-10T10:12:41.799604", + "url": "/v1/software/microc-os-ii" +} diff --git a/site/public/v1/software/microchess/index.json b/site/public/v1/software/microchess/index.json new file mode 100644 index 000000000000..e97ba2b7d634 --- /dev/null +++ b/site/public/v1/software/microchess/index.json @@ -0,0 +1,21 @@ +{ + "id": 6000, + "slug": "microchess", + "name": "Microchess", + "release_date": "1976-01-01", + "developers": [ + "Peter R Jennings" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3312128" + ], + "created_at": "2026-07-10T10:12:41.799604", + "updated_at": "2026-07-10T10:12:41.799604", + "url": "/v1/software/microchess" +} diff --git a/site/public/v1/software/microemulator/index.json b/site/public/v1/software/microemulator/index.json new file mode 100644 index 000000000000..d35ef24732d0 --- /dev/null +++ b/site/public/v1/software/microemulator/index.json @@ -0,0 +1,19 @@ +{ + "id": 6001, + "slug": "microemulator", + "name": "MicroEmulator", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130050338" + ], + "created_at": "2026-07-10T10:12:41.800596", + "updated_at": "2026-07-10T10:12:41.800596", + "url": "/v1/software/microemulator" +} diff --git a/site/public/v1/software/micromanager/index.json b/site/public/v1/software/micromanager/index.json new file mode 100644 index 000000000000..80be72f0d86c --- /dev/null +++ b/site/public/v1/software/micromanager/index.json @@ -0,0 +1,19 @@ +{ + "id": 6002, + "slug": "micromanager", + "name": "MicroManager", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113046834" + ], + "created_at": "2026-07-10T10:12:41.800596", + "updated_at": "2026-07-10T10:12:41.800596", + "url": "/v1/software/micromanager" +} diff --git a/site/public/v1/software/microplanet-gravity/index.json b/site/public/v1/software/microplanet-gravity/index.json new file mode 100644 index 000000000000..97038448e2b4 --- /dev/null +++ b/site/public/v1/software/microplanet-gravity/index.json @@ -0,0 +1,21 @@ +{ + "id": 6003, + "slug": "microplanet-gravity", + "name": "MicroPlanet Gravity", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3312005" + ], + "created_at": "2026-07-10T10:12:41.800596", + "updated_at": "2026-07-10T10:12:41.800596", + "url": "/v1/software/microplanet-gravity" +} diff --git a/site/public/v1/software/microplanner-x-pert/index.json b/site/public/v1/software/microplanner-x-pert/index.json new file mode 100644 index 000000000000..8a7768de87eb --- /dev/null +++ b/site/public/v1/software/microplanner-x-pert/index.json @@ -0,0 +1,21 @@ +{ + "id": 6004, + "slug": "microplanner-x-pert", + "name": "MicroPlanner X-Pert", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "end-user license agreement" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6839124" + ], + "created_at": "2026-07-10T10:12:41.801590", + "updated_at": "2026-07-10T10:12:41.801590", + "url": "/v1/software/microplanner-x-pert" +} diff --git a/site/public/v1/software/microsiris/index.json b/site/public/v1/software/microsiris/index.json new file mode 100644 index 000000000000..26a0298ee58e --- /dev/null +++ b/site/public/v1/software/microsiris/index.json @@ -0,0 +1,19 @@ +{ + "id": 6005, + "slug": "microsiris", + "name": "MicrOsiris", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087831" + ], + "created_at": "2026-07-10T10:12:41.801590", + "updated_at": "2026-07-10T10:12:41.801590", + "url": "/v1/software/microsiris" +} diff --git a/site/public/v1/software/microsoft-access-2007/index.json b/site/public/v1/software/microsoft-access-2007/index.json new file mode 100644 index 000000000000..d1bc0bf1bdc7 --- /dev/null +++ b/site/public/v1/software/microsoft-access-2007/index.json @@ -0,0 +1,21 @@ +{ + "id": 6006, + "slug": "microsoft-access-2007", + "name": "Microsoft Access 2007", + "release_date": "2007-01-30", + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q46049725" + ], + "created_at": "2026-07-10T10:12:41.801590", + "updated_at": "2026-07-10T10:12:41.801590", + "url": "/v1/software/microsoft-access-2007" +} diff --git a/site/public/v1/software/microsoft-adcenter-analytics/index.json b/site/public/v1/software/microsoft-adcenter-analytics/index.json new file mode 100644 index 000000000000..68dd6ce85d0a --- /dev/null +++ b/site/public/v1/software/microsoft-adcenter-analytics/index.json @@ -0,0 +1,19 @@ +{ + "id": 6007, + "slug": "microsoft-adcenter-analytics", + "name": "Microsoft adCenter Analytics", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6840265" + ], + "created_at": "2026-07-10T10:12:41.802615", + "updated_at": "2026-07-10T10:12:41.802615", + "url": "/v1/software/microsoft-adcenter-analytics" +} diff --git a/site/public/v1/software/microsoft-agent/index.json b/site/public/v1/software/microsoft-agent/index.json new file mode 100644 index 000000000000..6f1cf449458d --- /dev/null +++ b/site/public/v1/software/microsoft-agent/index.json @@ -0,0 +1,21 @@ +{ + "id": 6008, + "slug": "microsoft-agent", + "name": "Microsoft Agent", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2456893" + ], + "created_at": "2026-07-10T10:12:41.802615", + "updated_at": "2026-07-10T10:12:41.802615", + "url": "/v1/software/microsoft-agent" +} diff --git a/site/public/v1/software/microsoft-amalga/index.json b/site/public/v1/software/microsoft-amalga/index.json new file mode 100644 index 000000000000..77bb0b249bcd --- /dev/null +++ b/site/public/v1/software/microsoft-amalga/index.json @@ -0,0 +1,21 @@ +{ + "id": 6009, + "slug": "microsoft-amalga", + "name": "Microsoft Amalga", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6840084" + ], + "created_at": "2026-07-10T10:12:41.802615", + "updated_at": "2026-07-10T10:12:41.802615", + "url": "/v1/software/microsoft-amalga" +} diff --git a/site/public/v1/software/microsoft-analysis-services/index.json b/site/public/v1/software/microsoft-analysis-services/index.json new file mode 100644 index 000000000000..f7d1c697581c --- /dev/null +++ b/site/public/v1/software/microsoft-analysis-services/index.json @@ -0,0 +1,23 @@ +{ + "id": 6010, + "slug": "microsoft-analysis-services", + "name": "Microsoft Analysis Services", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "end-user license agreement" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2067216" + ], + "created_at": "2026-07-10T10:12:41.803614", + "updated_at": "2026-07-10T10:12:41.803614", + "url": "/v1/software/microsoft-analysis-services" +} diff --git a/site/public/v1/software/microsoft-app-v/index.json b/site/public/v1/software/microsoft-app-v/index.json new file mode 100644 index 000000000000..82a2c7ad61f9 --- /dev/null +++ b/site/public/v1/software/microsoft-app-v/index.json @@ -0,0 +1,19 @@ +{ + "id": 6011, + "slug": "microsoft-app-v", + "name": "Microsoft App-V", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1665339" + ], + "created_at": "2026-07-10T10:12:41.803614", + "updated_at": "2026-07-10T10:12:41.803614", + "url": "/v1/software/microsoft-app-v" +} diff --git a/site/public/v1/software/microsoft-authenticator/index.json b/site/public/v1/software/microsoft-authenticator/index.json new file mode 100644 index 000000000000..2d99384b566f --- /dev/null +++ b/site/public/v1/software/microsoft-authenticator/index.json @@ -0,0 +1,23 @@ +{ + "id": 6012, + "slug": "microsoft-authenticator", + "name": "Microsoft Authenticator", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q83424743" + ], + "created_at": "2026-07-10T10:12:41.803614", + "updated_at": "2026-07-10T10:12:41.803614", + "url": "/v1/software/microsoft-authenticator" +} diff --git a/site/public/v1/software/microsoft-autoroute/index.json b/site/public/v1/software/microsoft-autoroute/index.json new file mode 100644 index 000000000000..2a702f28af96 --- /dev/null +++ b/site/public/v1/software/microsoft-autoroute/index.json @@ -0,0 +1,21 @@ +{ + "id": 6013, + "slug": "microsoft-autoroute", + "name": "Microsoft AutoRoute", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q905675" + ], + "created_at": "2026-07-10T10:12:41.803614", + "updated_at": "2026-07-10T10:12:41.803614", + "url": "/v1/software/microsoft-autoroute" +} diff --git a/site/public/v1/software/microsoft-azure-quantum/index.json b/site/public/v1/software/microsoft-azure-quantum/index.json new file mode 100644 index 000000000000..21426b79ea4f --- /dev/null +++ b/site/public/v1/software/microsoft-azure-quantum/index.json @@ -0,0 +1,19 @@ +{ + "id": 6014, + "slug": "microsoft-azure-quantum", + "name": "Microsoft Azure Quantum", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130617659" + ], + "created_at": "2026-07-10T10:12:41.804525", + "updated_at": "2026-07-10T10:12:41.804525", + "url": "/v1/software/microsoft-azure-quantum" +} diff --git a/site/public/v1/software/microsoft-azure-sql-database/index.json b/site/public/v1/software/microsoft-azure-sql-database/index.json new file mode 100644 index 000000000000..530b4b38d0b1 --- /dev/null +++ b/site/public/v1/software/microsoft-azure-sql-database/index.json @@ -0,0 +1,21 @@ +{ + "id": 6015, + "slug": "microsoft-azure-sql-database", + "name": "Microsoft Azure SQL Database", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1187310" + ], + "created_at": "2026-07-10T10:12:41.804525", + "updated_at": "2026-07-10T10:12:41.804525", + "url": "/v1/software/microsoft-azure-sql-database" +} diff --git a/site/public/v1/software/microsoft-backoffice-server/index.json b/site/public/v1/software/microsoft-backoffice-server/index.json new file mode 100644 index 000000000000..5fdc6aad106b --- /dev/null +++ b/site/public/v1/software/microsoft-backoffice-server/index.json @@ -0,0 +1,21 @@ +{ + "id": 6016, + "slug": "microsoft-backoffice-server", + "name": "Microsoft BackOffice Server", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q239547" + ], + "created_at": "2026-07-10T10:12:41.804525", + "updated_at": "2026-07-10T10:12:41.804525", + "url": "/v1/software/microsoft-backoffice-server" +} diff --git a/site/public/v1/software/microsoft-baseline-security-analyzer/index.json b/site/public/v1/software/microsoft-baseline-security-analyzer/index.json new file mode 100644 index 000000000000..30a643ba7a12 --- /dev/null +++ b/site/public/v1/software/microsoft-baseline-security-analyzer/index.json @@ -0,0 +1,25 @@ +{ + "id": 6017, + "slug": "microsoft-baseline-security-analyzer", + "name": "Microsoft Baseline Security Analyzer", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [ + "Windows 7" + ], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1424053" + ], + "created_at": "2026-07-10T10:12:41.805586", + "updated_at": "2026-07-10T10:12:41.805586", + "url": "/v1/software/microsoft-baseline-security-analyzer" +} diff --git a/site/public/v1/software/microsoft-basic-1-0/index.json b/site/public/v1/software/microsoft-basic-1-0/index.json new file mode 100644 index 000000000000..c30d372b2b61 --- /dev/null +++ b/site/public/v1/software/microsoft-basic-1-0/index.json @@ -0,0 +1,19 @@ +{ + "id": 6018, + "slug": "microsoft-basic-1-0", + "name": "Microsoft Basic 1.0", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2876700" + ], + "created_at": "2026-07-10T10:12:41.805586", + "updated_at": "2026-07-10T10:12:41.805586", + "url": "/v1/software/microsoft-basic-1-0" +} diff --git a/site/public/v1/software/microsoft-biztalk-server/index.json b/site/public/v1/software/microsoft-biztalk-server/index.json new file mode 100644 index 000000000000..2d57a7c31c8c --- /dev/null +++ b/site/public/v1/software/microsoft-biztalk-server/index.json @@ -0,0 +1,23 @@ +{ + "id": 6019, + "slug": "microsoft-biztalk-server", + "name": "Microsoft BizTalk Server", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [ + "Windows Server 2016" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q904150" + ], + "created_at": "2026-07-10T10:12:41.805586", + "updated_at": "2026-07-10T10:12:41.805586", + "url": "/v1/software/microsoft-biztalk-server" +} diff --git a/site/public/v1/software/microsoft-bookshelf/index.json b/site/public/v1/software/microsoft-bookshelf/index.json new file mode 100644 index 000000000000..057c13d05386 --- /dev/null +++ b/site/public/v1/software/microsoft-bookshelf/index.json @@ -0,0 +1,21 @@ +{ + "id": 6020, + "slug": "microsoft-bookshelf", + "name": "Microsoft Bookshelf", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1635949" + ], + "created_at": "2026-07-10T10:12:41.805586", + "updated_at": "2026-07-10T10:12:41.805586", + "url": "/v1/software/microsoft-bookshelf" +} diff --git a/site/public/v1/software/microsoft-bopomofo-ime/index.json b/site/public/v1/software/microsoft-bopomofo-ime/index.json new file mode 100644 index 000000000000..be9e65b794bc --- /dev/null +++ b/site/public/v1/software/microsoft-bopomofo-ime/index.json @@ -0,0 +1,21 @@ +{ + "id": 6021, + "slug": "microsoft-bopomofo-ime", + "name": "Microsoft BoPoMoFo IME", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q86956832" + ], + "created_at": "2026-07-10T10:12:41.806604", + "updated_at": "2026-07-10T10:12:41.806604", + "url": "/v1/software/microsoft-bopomofo-ime" +} diff --git a/site/public/v1/software/microsoft-clarity/index.json b/site/public/v1/software/microsoft-clarity/index.json new file mode 100644 index 000000000000..f831c32c32c2 --- /dev/null +++ b/site/public/v1/software/microsoft-clarity/index.json @@ -0,0 +1,21 @@ +{ + "id": 6022, + "slug": "microsoft-clarity", + "name": "Microsoft Clarity", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107673229" + ], + "created_at": "2026-07-10T10:12:41.806604", + "updated_at": "2026-07-10T10:12:41.806604", + "url": "/v1/software/microsoft-clarity" +} diff --git a/site/public/v1/software/microsoft-commerce-server/index.json b/site/public/v1/software/microsoft-commerce-server/index.json new file mode 100644 index 000000000000..2b55c51f5853 --- /dev/null +++ b/site/public/v1/software/microsoft-commerce-server/index.json @@ -0,0 +1,21 @@ +{ + "id": 6023, + "slug": "microsoft-commerce-server", + "name": "Microsoft Commerce Server", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3312374" + ], + "created_at": "2026-07-10T10:12:41.807525", + "updated_at": "2026-07-10T10:12:41.807525", + "url": "/v1/software/microsoft-commerce-server" +} diff --git a/site/public/v1/software/microsoft-cryptoapi/index.json b/site/public/v1/software/microsoft-cryptoapi/index.json new file mode 100644 index 000000000000..d871bdda6631 --- /dev/null +++ b/site/public/v1/software/microsoft-cryptoapi/index.json @@ -0,0 +1,19 @@ +{ + "id": 6024, + "slug": "microsoft-cryptoapi", + "name": "Microsoft CryptoAPI", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1142291" + ], + "created_at": "2026-07-10T10:12:41.807525", + "updated_at": "2026-07-10T10:12:41.807525", + "url": "/v1/software/microsoft-cryptoapi" +} diff --git a/site/public/v1/software/microsoft-customer-care-framework/index.json b/site/public/v1/software/microsoft-customer-care-framework/index.json new file mode 100644 index 000000000000..5832e5dc3047 --- /dev/null +++ b/site/public/v1/software/microsoft-customer-care-framework/index.json @@ -0,0 +1,21 @@ +{ + "id": 6025, + "slug": "microsoft-customer-care-framework", + "name": "Microsoft Customer Care Framework", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3699758" + ], + "created_at": "2026-07-10T10:12:41.807525", + "updated_at": "2026-07-10T10:12:41.807525", + "url": "/v1/software/microsoft-customer-care-framework" +} diff --git a/site/public/v1/software/microsoft-data-access-components/index.json b/site/public/v1/software/microsoft-data-access-components/index.json new file mode 100644 index 000000000000..0109f26ababd --- /dev/null +++ b/site/public/v1/software/microsoft-data-access-components/index.json @@ -0,0 +1,21 @@ +{ + "id": 6026, + "slug": "microsoft-data-access-components", + "name": "Microsoft Data Access Components", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2361252" + ], + "created_at": "2026-07-10T10:12:41.807525", + "updated_at": "2026-07-10T10:12:41.807525", + "url": "/v1/software/microsoft-data-access-components" +} diff --git a/site/public/v1/software/microsoft-delve/index.json b/site/public/v1/software/microsoft-delve/index.json new file mode 100644 index 000000000000..4e86bfff2772 --- /dev/null +++ b/site/public/v1/software/microsoft-delve/index.json @@ -0,0 +1,21 @@ +{ + "id": 6027, + "slug": "microsoft-delve", + "name": "Microsoft Delve", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18154811" + ], + "created_at": "2026-07-10T10:12:41.808625", + "updated_at": "2026-07-10T10:12:41.808625", + "url": "/v1/software/microsoft-delve" +} diff --git a/site/public/v1/software/microsoft-diagnostics/index.json b/site/public/v1/software/microsoft-diagnostics/index.json new file mode 100644 index 000000000000..c1a101a49e9e --- /dev/null +++ b/site/public/v1/software/microsoft-diagnostics/index.json @@ -0,0 +1,19 @@ +{ + "id": 6028, + "slug": "microsoft-diagnostics", + "name": "Microsoft Diagnostics", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6840113" + ], + "created_at": "2026-07-10T10:12:41.808625", + "updated_at": "2026-07-10T10:12:41.808625", + "url": "/v1/software/microsoft-diagnostics" +} diff --git a/site/public/v1/software/microsoft-digital-image/index.json b/site/public/v1/software/microsoft-digital-image/index.json new file mode 100644 index 000000000000..461125308be3 --- /dev/null +++ b/site/public/v1/software/microsoft-digital-image/index.json @@ -0,0 +1,23 @@ +{ + "id": 6029, + "slug": "microsoft-digital-image", + "name": "Microsoft Digital Image", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q455296" + ], + "created_at": "2026-07-10T10:12:41.808625", + "updated_at": "2026-07-10T10:12:41.808625", + "url": "/v1/software/microsoft-digital-image" +} diff --git a/site/public/v1/software/microsoft-download-manager/index.json b/site/public/v1/software/microsoft-download-manager/index.json new file mode 100644 index 000000000000..f2a1cb17b15c --- /dev/null +++ b/site/public/v1/software/microsoft-download-manager/index.json @@ -0,0 +1,22 @@ +{ + "id": 6030, + "slug": "microsoft-download-manager", + "name": "Microsoft Download Manager", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Windows Server 2008", + "Windows 7" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q19599488" + ], + "created_at": "2026-07-10T10:12:41.809609", + "updated_at": "2026-07-10T10:12:41.809609", + "url": "/v1/software/microsoft-download-manager" +} diff --git a/site/public/v1/software/microsoft-dynamics-365-business-central/index.json b/site/public/v1/software/microsoft-dynamics-365-business-central/index.json new file mode 100644 index 000000000000..69f5e3153c17 --- /dev/null +++ b/site/public/v1/software/microsoft-dynamics-365-business-central/index.json @@ -0,0 +1,21 @@ +{ + "id": 6031, + "slug": "microsoft-dynamics-365-business-central", + "name": "Microsoft Dynamics 365 Business Central", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q58883729" + ], + "created_at": "2026-07-10T10:12:41.809609", + "updated_at": "2026-07-10T10:12:41.809609", + "url": "/v1/software/microsoft-dynamics-365-business-central" +} diff --git a/site/public/v1/software/microsoft-dynamics-365-finance/index.json b/site/public/v1/software/microsoft-dynamics-365-finance/index.json new file mode 100644 index 000000000000..31f5c6e19cdf --- /dev/null +++ b/site/public/v1/software/microsoft-dynamics-365-finance/index.json @@ -0,0 +1,21 @@ +{ + "id": 6032, + "slug": "microsoft-dynamics-365-finance", + "name": "Microsoft Dynamics 365 Finance", + "release_date": "2016-11-01", + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135228282" + ], + "created_at": "2026-07-10T10:12:41.809609", + "updated_at": "2026-07-10T10:12:41.809609", + "url": "/v1/software/microsoft-dynamics-365-finance" +} diff --git a/site/public/v1/software/microsoft-dynamics-365-for-finance-and-operations/index.json b/site/public/v1/software/microsoft-dynamics-365-for-finance-and-operations/index.json new file mode 100644 index 000000000000..48737ca7f323 --- /dev/null +++ b/site/public/v1/software/microsoft-dynamics-365-for-finance-and-operations/index.json @@ -0,0 +1,21 @@ +{ + "id": 6033, + "slug": "microsoft-dynamics-365-for-finance-and-operations", + "name": "Microsoft Dynamics 365 for Finance and Operations", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q30058780" + ], + "created_at": "2026-07-10T10:12:41.809609", + "updated_at": "2026-07-10T10:12:41.809609", + "url": "/v1/software/microsoft-dynamics-365-for-finance-and-operations" +} diff --git a/site/public/v1/software/microsoft-dynamics-365-sales/index.json b/site/public/v1/software/microsoft-dynamics-365-sales/index.json new file mode 100644 index 000000000000..ac5722a59be0 --- /dev/null +++ b/site/public/v1/software/microsoft-dynamics-365-sales/index.json @@ -0,0 +1,21 @@ +{ + "id": 6034, + "slug": "microsoft-dynamics-365-sales", + "name": "Microsoft Dynamics 365 Sales", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1568337" + ], + "created_at": "2026-07-10T10:12:41.810599", + "updated_at": "2026-07-10T10:12:41.810599", + "url": "/v1/software/microsoft-dynamics-365-sales" +} diff --git a/site/public/v1/software/microsoft-dynamics-365/index.json b/site/public/v1/software/microsoft-dynamics-365/index.json new file mode 100644 index 000000000000..d032c4e71def --- /dev/null +++ b/site/public/v1/software/microsoft-dynamics-365/index.json @@ -0,0 +1,21 @@ +{ + "id": 6035, + "slug": "microsoft-dynamics-365", + "name": "Microsoft Dynamics 365", + "release_date": "2016-11-01", + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q27556059" + ], + "created_at": "2026-07-10T10:12:41.810599", + "updated_at": "2026-07-10T10:12:41.810599", + "url": "/v1/software/microsoft-dynamics-365" +} diff --git a/site/public/v1/software/microsoft-dynamics-ax/index.json b/site/public/v1/software/microsoft-dynamics-ax/index.json new file mode 100644 index 000000000000..ba9c2afd9d6b --- /dev/null +++ b/site/public/v1/software/microsoft-dynamics-ax/index.json @@ -0,0 +1,21 @@ +{ + "id": 6036, + "slug": "microsoft-dynamics-ax", + "name": "Microsoft Dynamics AX", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q675860" + ], + "created_at": "2026-07-10T10:12:41.811615", + "updated_at": "2026-07-10T10:12:41.811615", + "url": "/v1/software/microsoft-dynamics-ax" +} diff --git a/site/public/v1/software/microsoft-dynamics-c5/index.json b/site/public/v1/software/microsoft-dynamics-c5/index.json new file mode 100644 index 000000000000..7473cfd90982 --- /dev/null +++ b/site/public/v1/software/microsoft-dynamics-c5/index.json @@ -0,0 +1,23 @@ +{ + "id": 6037, + "slug": "microsoft-dynamics-c5", + "name": "Microsoft Dynamics C5", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6840121" + ], + "created_at": "2026-07-10T10:12:41.811615", + "updated_at": "2026-07-10T10:12:41.811615", + "url": "/v1/software/microsoft-dynamics-c5" +} diff --git a/site/public/v1/software/microsoft-dynamics-gp/index.json b/site/public/v1/software/microsoft-dynamics-gp/index.json new file mode 100644 index 000000000000..85d7d4b982af --- /dev/null +++ b/site/public/v1/software/microsoft-dynamics-gp/index.json @@ -0,0 +1,21 @@ +{ + "id": 6038, + "slug": "microsoft-dynamics-gp", + "name": "Microsoft Dynamics GP", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1170618" + ], + "created_at": "2026-07-10T10:12:41.811615", + "updated_at": "2026-07-10T10:12:41.811615", + "url": "/v1/software/microsoft-dynamics-gp" +} diff --git a/site/public/v1/software/microsoft-dynamics-nav/index.json b/site/public/v1/software/microsoft-dynamics-nav/index.json new file mode 100644 index 000000000000..6f539a91dfd7 --- /dev/null +++ b/site/public/v1/software/microsoft-dynamics-nav/index.json @@ -0,0 +1,23 @@ +{ + "id": 6039, + "slug": "microsoft-dynamics-nav", + "name": "Microsoft Dynamics NAV", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [ + "Windows Server 2008" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q904533" + ], + "created_at": "2026-07-10T10:12:41.811615", + "updated_at": "2026-07-10T10:12:41.811615", + "url": "/v1/software/microsoft-dynamics-nav" +} diff --git a/site/public/v1/software/microsoft-dynamics-sl/index.json b/site/public/v1/software/microsoft-dynamics-sl/index.json new file mode 100644 index 000000000000..937cea4c71f9 --- /dev/null +++ b/site/public/v1/software/microsoft-dynamics-sl/index.json @@ -0,0 +1,21 @@ +{ + "id": 6040, + "slug": "microsoft-dynamics-sl", + "name": "Microsoft Dynamics SL", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17048674" + ], + "created_at": "2026-07-10T10:12:41.812602", + "updated_at": "2026-07-10T10:12:41.812602", + "url": "/v1/software/microsoft-dynamics-sl" +} diff --git a/site/public/v1/software/microsoft-encarta-98-research-organizer/index.json b/site/public/v1/software/microsoft-encarta-98-research-organizer/index.json new file mode 100644 index 000000000000..4efbbd22d65f --- /dev/null +++ b/site/public/v1/software/microsoft-encarta-98-research-organizer/index.json @@ -0,0 +1,19 @@ +{ + "id": 6041, + "slug": "microsoft-encarta-98-research-organizer", + "name": "Microsoft Encarta 98 Research Organizer", + "release_date": "1997-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122149090" + ], + "created_at": "2026-07-10T10:12:41.812602", + "updated_at": "2026-07-10T10:12:41.812602", + "url": "/v1/software/microsoft-encarta-98-research-organizer" +} diff --git a/site/public/v1/software/microsoft-endpoint-manager/index.json b/site/public/v1/software/microsoft-endpoint-manager/index.json new file mode 100644 index 000000000000..cf179f67c62e --- /dev/null +++ b/site/public/v1/software/microsoft-endpoint-manager/index.json @@ -0,0 +1,19 @@ +{ + "id": 6042, + "slug": "microsoft-endpoint-manager", + "name": "Microsoft Endpoint Manager", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109107698" + ], + "created_at": "2026-07-10T10:12:41.813191", + "updated_at": "2026-07-10T10:12:41.813191", + "url": "/v1/software/microsoft-endpoint-manager" +} diff --git a/site/public/v1/software/microsoft-entourage/index.json b/site/public/v1/software/microsoft-entourage/index.json new file mode 100644 index 000000000000..3b1a8e041f33 --- /dev/null +++ b/site/public/v1/software/microsoft-entourage/index.json @@ -0,0 +1,23 @@ +{ + "id": 6043, + "slug": "microsoft-entourage", + "name": "Microsoft Entourage", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [ + "Mac OS 8" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2104904" + ], + "created_at": "2026-07-10T10:12:41.813191", + "updated_at": "2026-07-10T10:12:41.813191", + "url": "/v1/software/microsoft-entourage" +} diff --git a/site/public/v1/software/microsoft-excel-for-macintosh-and-power-macintosh-5-0/index.json b/site/public/v1/software/microsoft-excel-for-macintosh-and-power-macintosh-5-0/index.json new file mode 100644 index 000000000000..25a51c057cdc --- /dev/null +++ b/site/public/v1/software/microsoft-excel-for-macintosh-and-power-macintosh-5-0/index.json @@ -0,0 +1,21 @@ +{ + "id": 6044, + "slug": "microsoft-excel-for-macintosh-and-power-macintosh-5-0", + "name": "Microsoft Excel for Macintosh and Power Macintosh 5.0", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28861746" + ], + "created_at": "2026-07-10T10:12:41.813191", + "updated_at": "2026-07-10T10:12:41.813191", + "url": "/v1/software/microsoft-excel-for-macintosh-and-power-macintosh-5-0" +} diff --git a/site/public/v1/software/microsoft-excel-viewer/index.json b/site/public/v1/software/microsoft-excel-viewer/index.json new file mode 100644 index 000000000000..f7f0524f6412 --- /dev/null +++ b/site/public/v1/software/microsoft-excel-viewer/index.json @@ -0,0 +1,21 @@ +{ + "id": 6045, + "slug": "microsoft-excel-viewer", + "name": "Microsoft Excel Viewer", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1651968" + ], + "created_at": "2026-07-10T10:12:41.813191", + "updated_at": "2026-07-10T10:12:41.813191", + "url": "/v1/software/microsoft-excel-viewer" +} diff --git a/site/public/v1/software/microsoft-exchange-server-2000/index.json b/site/public/v1/software/microsoft-exchange-server-2000/index.json new file mode 100644 index 000000000000..53468cea42fe --- /dev/null +++ b/site/public/v1/software/microsoft-exchange-server-2000/index.json @@ -0,0 +1,21 @@ +{ + "id": 6046, + "slug": "microsoft-exchange-server-2000", + "name": "Microsoft Exchange Server 2000", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115117144" + ], + "created_at": "2026-07-10T10:12:41.814332", + "updated_at": "2026-07-10T10:12:41.814332", + "url": "/v1/software/microsoft-exchange-server-2000" +} diff --git a/site/public/v1/software/microsoft-exchange-server-2003/index.json b/site/public/v1/software/microsoft-exchange-server-2003/index.json new file mode 100644 index 000000000000..d0115b74cc60 --- /dev/null +++ b/site/public/v1/software/microsoft-exchange-server-2003/index.json @@ -0,0 +1,21 @@ +{ + "id": 6047, + "slug": "microsoft-exchange-server-2003", + "name": "Microsoft Exchange Server 2003", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115117155" + ], + "created_at": "2026-07-10T10:12:41.814332", + "updated_at": "2026-07-10T10:12:41.814332", + "url": "/v1/software/microsoft-exchange-server-2003" +} diff --git a/site/public/v1/software/microsoft-exchange-server-2007/index.json b/site/public/v1/software/microsoft-exchange-server-2007/index.json new file mode 100644 index 000000000000..0fde531130d4 --- /dev/null +++ b/site/public/v1/software/microsoft-exchange-server-2007/index.json @@ -0,0 +1,21 @@ +{ + "id": 6048, + "slug": "microsoft-exchange-server-2007", + "name": "Microsoft Exchange Server 2007", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115117173" + ], + "created_at": "2026-07-10T10:12:41.814332", + "updated_at": "2026-07-10T10:12:41.814332", + "url": "/v1/software/microsoft-exchange-server-2007" +} diff --git a/site/public/v1/software/microsoft-exchange-server-2010/index.json b/site/public/v1/software/microsoft-exchange-server-2010/index.json new file mode 100644 index 000000000000..6f8faa4e1f57 --- /dev/null +++ b/site/public/v1/software/microsoft-exchange-server-2010/index.json @@ -0,0 +1,21 @@ +{ + "id": 6049, + "slug": "microsoft-exchange-server-2010", + "name": "Microsoft Exchange Server 2010", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115117186" + ], + "created_at": "2026-07-10T10:12:41.815265", + "updated_at": "2026-07-10T10:12:41.815265", + "url": "/v1/software/microsoft-exchange-server-2010" +} diff --git a/site/public/v1/software/microsoft-exchange-server-4-0/index.json b/site/public/v1/software/microsoft-exchange-server-4-0/index.json new file mode 100644 index 000000000000..762a681b09bc --- /dev/null +++ b/site/public/v1/software/microsoft-exchange-server-4-0/index.json @@ -0,0 +1,21 @@ +{ + "id": 6050, + "slug": "microsoft-exchange-server-4-0", + "name": "Microsoft Exchange Server 4.0", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115117160" + ], + "created_at": "2026-07-10T10:12:41.815265", + "updated_at": "2026-07-10T10:12:41.815265", + "url": "/v1/software/microsoft-exchange-server-4-0" +} diff --git a/site/public/v1/software/microsoft-exchange-server-5-5/index.json b/site/public/v1/software/microsoft-exchange-server-5-5/index.json new file mode 100644 index 000000000000..8fe0fb5fd65b --- /dev/null +++ b/site/public/v1/software/microsoft-exchange-server-5-5/index.json @@ -0,0 +1,21 @@ +{ + "id": 6051, + "slug": "microsoft-exchange-server-5-5", + "name": "Microsoft Exchange Server 5.5", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115117123" + ], + "created_at": "2026-07-10T10:12:41.815265", + "updated_at": "2026-07-10T10:12:41.815265", + "url": "/v1/software/microsoft-exchange-server-5-5" +} diff --git a/site/public/v1/software/microsoft-expression-blend/index.json b/site/public/v1/software/microsoft-expression-blend/index.json new file mode 100644 index 000000000000..d9971e2966a3 --- /dev/null +++ b/site/public/v1/software/microsoft-expression-blend/index.json @@ -0,0 +1,23 @@ +{ + "id": 6052, + "slug": "microsoft-expression-blend", + "name": "Microsoft Expression Blend", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q594763" + ], + "created_at": "2026-07-10T10:12:41.816268", + "updated_at": "2026-07-10T10:12:41.816268", + "url": "/v1/software/microsoft-expression-blend" +} diff --git a/site/public/v1/software/microsoft-expression-encoder/index.json b/site/public/v1/software/microsoft-expression-encoder/index.json new file mode 100644 index 000000000000..58697f3f2ea7 --- /dev/null +++ b/site/public/v1/software/microsoft-expression-encoder/index.json @@ -0,0 +1,21 @@ +{ + "id": 6053, + "slug": "microsoft-expression-encoder", + "name": "Microsoft Expression Encoder", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q930907" + ], + "created_at": "2026-07-10T10:12:41.816268", + "updated_at": "2026-07-10T10:12:41.816268", + "url": "/v1/software/microsoft-expression-encoder" +} diff --git a/site/public/v1/software/microsoft-expression-web/index.json b/site/public/v1/software/microsoft-expression-web/index.json new file mode 100644 index 000000000000..b1223a7e40c4 --- /dev/null +++ b/site/public/v1/software/microsoft-expression-web/index.json @@ -0,0 +1,23 @@ +{ + "id": 6054, + "slug": "microsoft-expression-web", + "name": "Microsoft Expression Web", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1417729" + ], + "created_at": "2026-07-10T10:12:41.816268", + "updated_at": "2026-07-10T10:12:41.816268", + "url": "/v1/software/microsoft-expression-web" +} diff --git a/site/public/v1/software/microsoft-family-safety/index.json b/site/public/v1/software/microsoft-family-safety/index.json new file mode 100644 index 000000000000..fc9c3c03f267 --- /dev/null +++ b/site/public/v1/software/microsoft-family-safety/index.json @@ -0,0 +1,21 @@ +{ + "id": 6055, + "slug": "microsoft-family-safety", + "name": "Microsoft Family Safety", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2018814" + ], + "created_at": "2026-07-10T10:12:41.816268", + "updated_at": "2026-07-10T10:12:41.816268", + "url": "/v1/software/microsoft-family-safety" +} diff --git a/site/public/v1/software/microsoft-forefront-unified-access-gateway/index.json b/site/public/v1/software/microsoft-forefront-unified-access-gateway/index.json new file mode 100644 index 000000000000..d847e79de4a3 --- /dev/null +++ b/site/public/v1/software/microsoft-forefront-unified-access-gateway/index.json @@ -0,0 +1,21 @@ +{ + "id": 6056, + "slug": "microsoft-forefront-unified-access-gateway", + "name": "Microsoft Forefront Unified Access Gateway", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3312380" + ], + "created_at": "2026-07-10T10:12:41.817195", + "updated_at": "2026-07-10T10:12:41.817195", + "url": "/v1/software/microsoft-forefront-unified-access-gateway" +} diff --git a/site/public/v1/software/microsoft-fresh-paint/index.json b/site/public/v1/software/microsoft-fresh-paint/index.json new file mode 100644 index 000000000000..31d246959c11 --- /dev/null +++ b/site/public/v1/software/microsoft-fresh-paint/index.json @@ -0,0 +1,21 @@ +{ + "id": 6057, + "slug": "microsoft-fresh-paint", + "name": "Microsoft Fresh Paint", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6840135" + ], + "created_at": "2026-07-10T10:12:41.817195", + "updated_at": "2026-07-10T10:12:41.817195", + "url": "/v1/software/microsoft-fresh-paint" +} diff --git a/site/public/v1/software/microsoft-frontpage-2000/index.json b/site/public/v1/software/microsoft-frontpage-2000/index.json new file mode 100644 index 000000000000..64756e636386 --- /dev/null +++ b/site/public/v1/software/microsoft-frontpage-2000/index.json @@ -0,0 +1,21 @@ +{ + "id": 6058, + "slug": "microsoft-frontpage-2000", + "name": "Microsoft FrontPage 2000", + "release_date": "1999-01-01", + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115117124" + ], + "created_at": "2026-07-10T10:12:41.817195", + "updated_at": "2026-07-10T10:12:41.817195", + "url": "/v1/software/microsoft-frontpage-2000" +} diff --git a/site/public/v1/software/microsoft-frontpage-98/index.json b/site/public/v1/software/microsoft-frontpage-98/index.json new file mode 100644 index 000000000000..6858c09b33fa --- /dev/null +++ b/site/public/v1/software/microsoft-frontpage-98/index.json @@ -0,0 +1,21 @@ +{ + "id": 6059, + "slug": "microsoft-frontpage-98", + "name": "Microsoft FrontPage 98", + "release_date": "1997-01-01", + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115117113" + ], + "created_at": "2026-07-10T10:12:41.818274", + "updated_at": "2026-07-10T10:12:41.818274", + "url": "/v1/software/microsoft-frontpage-98" +} diff --git a/site/public/v1/software/microsoft-healthvault/index.json b/site/public/v1/software/microsoft-healthvault/index.json new file mode 100644 index 000000000000..ff5070f0ce2f --- /dev/null +++ b/site/public/v1/software/microsoft-healthvault/index.json @@ -0,0 +1,23 @@ +{ + "id": 6060, + "slug": "microsoft-healthvault", + "name": "Microsoft HealthVault", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [ + "personal health record" + ], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2006475" + ], + "created_at": "2026-07-10T10:12:41.818274", + "updated_at": "2026-07-10T10:12:41.818274", + "url": "/v1/software/microsoft-healthvault" +} diff --git a/site/public/v1/software/microsoft-help-viewer/index.json b/site/public/v1/software/microsoft-help-viewer/index.json new file mode 100644 index 000000000000..fe4977546d42 --- /dev/null +++ b/site/public/v1/software/microsoft-help-viewer/index.json @@ -0,0 +1,21 @@ +{ + "id": 6061, + "slug": "microsoft-help-viewer", + "name": "Microsoft Help Viewer", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6840139" + ], + "created_at": "2026-07-10T10:12:41.818274", + "updated_at": "2026-07-10T10:12:41.818274", + "url": "/v1/software/microsoft-help-viewer" +} diff --git a/site/public/v1/software/microsoft-home/index.json b/site/public/v1/software/microsoft-home/index.json new file mode 100644 index 000000000000..3fdc96387530 --- /dev/null +++ b/site/public/v1/software/microsoft-home/index.json @@ -0,0 +1,19 @@ +{ + "id": 6062, + "slug": "microsoft-home", + "name": "Microsoft Home", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q641579" + ], + "created_at": "2026-07-10T10:12:41.818274", + "updated_at": "2026-07-10T10:12:41.818274", + "url": "/v1/software/microsoft-home" +} diff --git a/site/public/v1/software/microsoft-identity-integration-server/index.json b/site/public/v1/software/microsoft-identity-integration-server/index.json new file mode 100644 index 000000000000..bfeed6bf0e2e --- /dev/null +++ b/site/public/v1/software/microsoft-identity-integration-server/index.json @@ -0,0 +1,19 @@ +{ + "id": 6063, + "slug": "microsoft-identity-integration-server", + "name": "Microsoft Identity Integration Server", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q519915" + ], + "created_at": "2026-07-10T10:12:41.819283", + "updated_at": "2026-07-10T10:12:41.819283", + "url": "/v1/software/microsoft-identity-integration-server" +} diff --git a/site/public/v1/software/microsoft-ime/index.json b/site/public/v1/software/microsoft-ime/index.json new file mode 100644 index 000000000000..9b0dc2d75e9f --- /dev/null +++ b/site/public/v1/software/microsoft-ime/index.json @@ -0,0 +1,23 @@ +{ + "id": 6064, + "slug": "microsoft-ime", + "name": "Microsoft IME", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4476193" + ], + "created_at": "2026-07-10T10:12:41.819283", + "updated_at": "2026-07-10T10:12:41.819283", + "url": "/v1/software/microsoft-ime" +} diff --git a/site/public/v1/software/microsoft-indic-language-input-tool/index.json b/site/public/v1/software/microsoft-indic-language-input-tool/index.json new file mode 100644 index 000000000000..52dc15b495ba --- /dev/null +++ b/site/public/v1/software/microsoft-indic-language-input-tool/index.json @@ -0,0 +1,21 @@ +{ + "id": 6065, + "slug": "microsoft-indic-language-input-tool", + "name": "Microsoft Indic Language Input Tool", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6840146" + ], + "created_at": "2026-07-10T10:12:41.819283", + "updated_at": "2026-07-10T10:12:41.819283", + "url": "/v1/software/microsoft-indic-language-input-tool" +} diff --git a/site/public/v1/software/microsoft-interconnect/index.json b/site/public/v1/software/microsoft-interconnect/index.json new file mode 100644 index 000000000000..f4debb251298 --- /dev/null +++ b/site/public/v1/software/microsoft-interconnect/index.json @@ -0,0 +1,21 @@ +{ + "id": 6066, + "slug": "microsoft-interconnect", + "name": "Microsoft InterConnect", + "release_date": null, + "developers": [ + "Microsoft Japan" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1041170" + ], + "created_at": "2026-07-10T10:12:41.820288", + "updated_at": "2026-07-10T10:12:41.820288", + "url": "/v1/software/microsoft-interconnect" +} diff --git a/site/public/v1/software/microsoft-internet-security-and-acceleration-server/index.json b/site/public/v1/software/microsoft-internet-security-and-acceleration-server/index.json new file mode 100644 index 000000000000..dcdd092fc18f --- /dev/null +++ b/site/public/v1/software/microsoft-internet-security-and-acceleration-server/index.json @@ -0,0 +1,21 @@ +{ + "id": 6067, + "slug": "microsoft-internet-security-and-acceleration-server", + "name": "Microsoft Internet Security and Acceleration Server", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106307477" + ], + "created_at": "2026-07-10T10:12:41.820288", + "updated_at": "2026-07-10T10:12:41.820288", + "url": "/v1/software/microsoft-internet-security-and-acceleration-server" +} diff --git a/site/public/v1/software/microsoft-intune/index.json b/site/public/v1/software/microsoft-intune/index.json new file mode 100644 index 000000000000..d72351175c7a --- /dev/null +++ b/site/public/v1/software/microsoft-intune/index.json @@ -0,0 +1,21 @@ +{ + "id": 6068, + "slug": "microsoft-intune", + "name": "Microsoft Intune", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1931640" + ], + "created_at": "2026-07-10T10:12:41.820288", + "updated_at": "2026-07-10T10:12:41.820288", + "url": "/v1/software/microsoft-intune" +} diff --git a/site/public/v1/software/microsoft-kaizala/index.json b/site/public/v1/software/microsoft-kaizala/index.json new file mode 100644 index 000000000000..e2c0aad01731 --- /dev/null +++ b/site/public/v1/software/microsoft-kaizala/index.json @@ -0,0 +1,19 @@ +{ + "id": 6069, + "slug": "microsoft-kaizala", + "name": "Microsoft Kaizala", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q65241190" + ], + "created_at": "2026-07-10T10:12:41.821194", + "updated_at": "2026-07-10T10:12:41.821194", + "url": "/v1/software/microsoft-kaizala" +} diff --git a/site/public/v1/software/microsoft-keyboard-layout-creator/index.json b/site/public/v1/software/microsoft-keyboard-layout-creator/index.json new file mode 100644 index 000000000000..416000faf358 --- /dev/null +++ b/site/public/v1/software/microsoft-keyboard-layout-creator/index.json @@ -0,0 +1,21 @@ +{ + "id": 6070, + "slug": "microsoft-keyboard-layout-creator", + "name": "Microsoft Keyboard Layout Creator", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4044227" + ], + "created_at": "2026-07-10T10:12:41.821194", + "updated_at": "2026-07-10T10:12:41.821194", + "url": "/v1/software/microsoft-keyboard-layout-creator" +} diff --git a/site/public/v1/software/microsoft-layer-for-unicode/index.json b/site/public/v1/software/microsoft-layer-for-unicode/index.json new file mode 100644 index 000000000000..2f127453cb85 --- /dev/null +++ b/site/public/v1/software/microsoft-layer-for-unicode/index.json @@ -0,0 +1,21 @@ +{ + "id": 6071, + "slug": "microsoft-layer-for-unicode", + "name": "Microsoft Layer for Unicode", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Windows 9x" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3312382" + ], + "created_at": "2026-07-10T10:12:41.821194", + "updated_at": "2026-07-10T10:12:41.821194", + "url": "/v1/software/microsoft-layer-for-unicode" +} diff --git a/site/public/v1/software/microsoft-live-labs-deepfish/index.json b/site/public/v1/software/microsoft-live-labs-deepfish/index.json new file mode 100644 index 000000000000..75241c4aaef8 --- /dev/null +++ b/site/public/v1/software/microsoft-live-labs-deepfish/index.json @@ -0,0 +1,21 @@ +{ + "id": 6072, + "slug": "microsoft-live-labs-deepfish", + "name": "Microsoft Live Labs Deepfish", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6840159" + ], + "created_at": "2026-07-10T10:12:41.821194", + "updated_at": "2026-07-10T10:12:41.821194", + "url": "/v1/software/microsoft-live-labs-deepfish" +} diff --git a/site/public/v1/software/microsoft-live-labs-listas/index.json b/site/public/v1/software/microsoft-live-labs-listas/index.json new file mode 100644 index 000000000000..67e589d9b599 --- /dev/null +++ b/site/public/v1/software/microsoft-live-labs-listas/index.json @@ -0,0 +1,21 @@ +{ + "id": 6073, + "slug": "microsoft-live-labs-listas", + "name": "Microsoft Live Labs Listas", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6840160" + ], + "created_at": "2026-07-10T10:12:41.822276", + "updated_at": "2026-07-10T10:12:41.822276", + "url": "/v1/software/microsoft-live-labs-listas" +} diff --git a/site/public/v1/software/microsoft-live-labs-pivot/index.json b/site/public/v1/software/microsoft-live-labs-pivot/index.json new file mode 100644 index 000000000000..799f7f4444cb --- /dev/null +++ b/site/public/v1/software/microsoft-live-labs-pivot/index.json @@ -0,0 +1,19 @@ +{ + "id": 6074, + "slug": "microsoft-live-labs-pivot", + "name": "Microsoft Live Labs Pivot", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3312392" + ], + "created_at": "2026-07-10T10:12:41.822276", + "updated_at": "2026-07-10T10:12:41.822276", + "url": "/v1/software/microsoft-live-labs-pivot" +} diff --git a/site/public/v1/software/microsoft-loop/index.json b/site/public/v1/software/microsoft-loop/index.json new file mode 100644 index 000000000000..daf400ae8164 --- /dev/null +++ b/site/public/v1/software/microsoft-loop/index.json @@ -0,0 +1,21 @@ +{ + "id": 6075, + "slug": "microsoft-loop", + "name": "Microsoft Loop", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109620998" + ], + "created_at": "2026-07-10T10:12:41.822276", + "updated_at": "2026-07-10T10:12:41.822276", + "url": "/v1/software/microsoft-loop" +} diff --git a/site/public/v1/software/microsoft-mail/index.json b/site/public/v1/software/microsoft-mail/index.json new file mode 100644 index 000000000000..f12a157743ea --- /dev/null +++ b/site/public/v1/software/microsoft-mail/index.json @@ -0,0 +1,23 @@ +{ + "id": 6076, + "slug": "microsoft-mail", + "name": "Microsoft Mail", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6840172" + ], + "created_at": "2026-07-10T10:12:41.823279", + "updated_at": "2026-07-10T10:12:41.823279", + "url": "/v1/software/microsoft-mail" +} diff --git a/site/public/v1/software/microsoft-mappoint-2000/index.json b/site/public/v1/software/microsoft-mappoint-2000/index.json new file mode 100644 index 000000000000..20dce3f2af28 --- /dev/null +++ b/site/public/v1/software/microsoft-mappoint-2000/index.json @@ -0,0 +1,21 @@ +{ + "id": 6077, + "slug": "microsoft-mappoint-2000", + "name": "Microsoft MapPoint 2000", + "release_date": "1999-06-10", + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q64763208" + ], + "created_at": "2026-07-10T10:12:41.823279", + "updated_at": "2026-07-10T10:12:41.823279", + "url": "/v1/software/microsoft-mappoint-2000" +} diff --git a/site/public/v1/software/microsoft-mappoint/index.json b/site/public/v1/software/microsoft-mappoint/index.json new file mode 100644 index 000000000000..5d3a9c105fdb --- /dev/null +++ b/site/public/v1/software/microsoft-mappoint/index.json @@ -0,0 +1,21 @@ +{ + "id": 6078, + "slug": "microsoft-mappoint", + "name": "Microsoft MapPoint", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1853389" + ], + "created_at": "2026-07-10T10:12:41.823279", + "updated_at": "2026-07-10T10:12:41.823279", + "url": "/v1/software/microsoft-mappoint" +} diff --git a/site/public/v1/software/microsoft-math-solver/index.json b/site/public/v1/software/microsoft-math-solver/index.json new file mode 100644 index 000000000000..613448001828 --- /dev/null +++ b/site/public/v1/software/microsoft-math-solver/index.json @@ -0,0 +1,23 @@ +{ + "id": 6079, + "slug": "microsoft-math-solver", + "name": "Microsoft Math Solver", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1995050" + ], + "created_at": "2026-07-10T10:12:41.823279", + "updated_at": "2026-07-10T10:12:41.823279", + "url": "/v1/software/microsoft-math-solver" +} diff --git a/site/public/v1/software/microsoft-max/index.json b/site/public/v1/software/microsoft-max/index.json new file mode 100644 index 000000000000..a61481076c10 --- /dev/null +++ b/site/public/v1/software/microsoft-max/index.json @@ -0,0 +1,21 @@ +{ + "id": 6080, + "slug": "microsoft-max", + "name": "Microsoft Max", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6840174" + ], + "created_at": "2026-07-10T10:12:41.824308", + "updated_at": "2026-07-10T10:12:41.824308", + "url": "/v1/software/microsoft-max" +} diff --git a/site/public/v1/software/microsoft-mediaroom/index.json b/site/public/v1/software/microsoft-mediaroom/index.json new file mode 100644 index 000000000000..2ecbb94bdcdf --- /dev/null +++ b/site/public/v1/software/microsoft-mediaroom/index.json @@ -0,0 +1,21 @@ +{ + "id": 6081, + "slug": "microsoft-mediaroom", + "name": "Microsoft Mediaroom", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6840165" + ], + "created_at": "2026-07-10T10:12:41.824308", + "updated_at": "2026-07-10T10:12:41.824308", + "url": "/v1/software/microsoft-mediaroom" +} diff --git a/site/public/v1/software/microsoft-messaging/index.json b/site/public/v1/software/microsoft-messaging/index.json new file mode 100644 index 000000000000..90d05233c669 --- /dev/null +++ b/site/public/v1/software/microsoft-messaging/index.json @@ -0,0 +1,19 @@ +{ + "id": 6082, + "slug": "microsoft-messaging", + "name": "Microsoft Messaging", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q48742670" + ], + "created_at": "2026-07-10T10:12:41.824308", + "updated_at": "2026-07-10T10:12:41.824308", + "url": "/v1/software/microsoft-messaging" +} diff --git a/site/public/v1/software/microsoft-mobile-services/index.json b/site/public/v1/software/microsoft-mobile-services/index.json new file mode 100644 index 000000000000..4c3573aed3f5 --- /dev/null +++ b/site/public/v1/software/microsoft-mobile-services/index.json @@ -0,0 +1,19 @@ +{ + "id": 6083, + "slug": "microsoft-mobile-services", + "name": "Microsoft mobile services", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q303993" + ], + "created_at": "2026-07-10T10:12:41.825259", + "updated_at": "2026-07-10T10:12:41.825259", + "url": "/v1/software/microsoft-mobile-services" +} diff --git a/site/public/v1/software/microsoft-money/index.json b/site/public/v1/software/microsoft-money/index.json new file mode 100644 index 000000000000..27916fb8f62f --- /dev/null +++ b/site/public/v1/software/microsoft-money/index.json @@ -0,0 +1,21 @@ +{ + "id": 6084, + "slug": "microsoft-money", + "name": "Microsoft Money", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117428" + ], + "created_at": "2026-07-10T10:12:41.825259", + "updated_at": "2026-07-10T10:12:41.825259", + "url": "/v1/software/microsoft-money" +} diff --git a/site/public/v1/software/microsoft-multimedia-viewer/index.json b/site/public/v1/software/microsoft-multimedia-viewer/index.json new file mode 100644 index 000000000000..fa01c2e3f657 --- /dev/null +++ b/site/public/v1/software/microsoft-multimedia-viewer/index.json @@ -0,0 +1,21 @@ +{ + "id": 6085, + "slug": "microsoft-multimedia-viewer", + "name": "Microsoft Multimedia Viewer", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112762591" + ], + "created_at": "2026-07-10T10:12:41.825259", + "updated_at": "2026-07-10T10:12:41.825259", + "url": "/v1/software/microsoft-multimedia-viewer" +} diff --git a/site/public/v1/software/microsoft-music-central/index.json b/site/public/v1/software/microsoft-music-central/index.json new file mode 100644 index 000000000000..31d88cd50c13 --- /dev/null +++ b/site/public/v1/software/microsoft-music-central/index.json @@ -0,0 +1,21 @@ +{ + "id": 6086, + "slug": "microsoft-music-central", + "name": "Microsoft Music Central", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6840171" + ], + "created_at": "2026-07-10T10:12:41.826252", + "updated_at": "2026-07-10T10:12:41.826252", + "url": "/v1/software/microsoft-music-central" +} diff --git a/site/public/v1/software/microsoft-musical-instruments/index.json b/site/public/v1/software/microsoft-musical-instruments/index.json new file mode 100644 index 000000000000..749462482ff6 --- /dev/null +++ b/site/public/v1/software/microsoft-musical-instruments/index.json @@ -0,0 +1,19 @@ +{ + "id": 6087, + "slug": "microsoft-musical-instruments", + "name": "Microsoft Musical Instruments", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112124567" + ], + "created_at": "2026-07-10T10:12:41.826252", + "updated_at": "2026-07-10T10:12:41.826252", + "url": "/v1/software/microsoft-musical-instruments" +} diff --git a/site/public/v1/software/microsoft-network-monitor/index.json b/site/public/v1/software/microsoft-network-monitor/index.json new file mode 100644 index 000000000000..4562ddd0ee9c --- /dev/null +++ b/site/public/v1/software/microsoft-network-monitor/index.json @@ -0,0 +1,21 @@ +{ + "id": 6088, + "slug": "microsoft-network-monitor", + "name": "Microsoft Network Monitor", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6840173" + ], + "created_at": "2026-07-10T10:12:41.826252", + "updated_at": "2026-07-10T10:12:41.826252", + "url": "/v1/software/microsoft-network-monitor" +} diff --git a/site/public/v1/software/microsoft-office-1-0/index.json b/site/public/v1/software/microsoft-office-1-0/index.json new file mode 100644 index 000000000000..abc5b1bfbfb9 --- /dev/null +++ b/site/public/v1/software/microsoft-office-1-0/index.json @@ -0,0 +1,19 @@ +{ + "id": 6089, + "slug": "microsoft-office-1-0", + "name": "Microsoft Office 1.0", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q29364652" + ], + "created_at": "2026-07-10T10:12:41.827286", + "updated_at": "2026-07-10T10:12:41.827286", + "url": "/v1/software/microsoft-office-1-0" +} diff --git a/site/public/v1/software/microsoft-office-1-5/index.json b/site/public/v1/software/microsoft-office-1-5/index.json new file mode 100644 index 000000000000..a0147ca5f2ca --- /dev/null +++ b/site/public/v1/software/microsoft-office-1-5/index.json @@ -0,0 +1,19 @@ +{ + "id": 6090, + "slug": "microsoft-office-1-5", + "name": "Microsoft Office 1.5", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q29364654" + ], + "created_at": "2026-07-10T10:12:41.827286", + "updated_at": "2026-07-10T10:12:41.827286", + "url": "/v1/software/microsoft-office-1-5" +} diff --git a/site/public/v1/software/microsoft-office-1-6/index.json b/site/public/v1/software/microsoft-office-1-6/index.json new file mode 100644 index 000000000000..a31e68fa44b0 --- /dev/null +++ b/site/public/v1/software/microsoft-office-1-6/index.json @@ -0,0 +1,19 @@ +{ + "id": 6091, + "slug": "microsoft-office-1-6", + "name": "Microsoft Office 1.6", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q29364655" + ], + "created_at": "2026-07-10T10:12:41.827286", + "updated_at": "2026-07-10T10:12:41.827286", + "url": "/v1/software/microsoft-office-1-6" +} diff --git a/site/public/v1/software/microsoft-office-2010/index.json b/site/public/v1/software/microsoft-office-2010/index.json new file mode 100644 index 000000000000..42b5da9ddfc1 --- /dev/null +++ b/site/public/v1/software/microsoft-office-2010/index.json @@ -0,0 +1,27 @@ +{ + "id": 6092, + "slug": "microsoft-office-2010", + "name": "Microsoft Office 2010", + "release_date": "2010-06-15", + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [ + "Windows Server 2003", + "Windows Server 2008", + "Windows 7" + ], + "programming_languages": [], + "licenses": [ + "end-user license agreement" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q689579" + ], + "created_at": "2026-07-10T10:12:41.827286", + "updated_at": "2026-07-10T10:12:41.827286", + "url": "/v1/software/microsoft-office-2010" +} diff --git a/site/public/v1/software/microsoft-office-2013/index.json b/site/public/v1/software/microsoft-office-2013/index.json new file mode 100644 index 000000000000..47a3ae449e98 --- /dev/null +++ b/site/public/v1/software/microsoft-office-2013/index.json @@ -0,0 +1,27 @@ +{ + "id": 6093, + "slug": "microsoft-office-2013", + "name": "Microsoft Office 2013", + "release_date": "2013-01-29", + "developers": [ + "Microsoft Query" + ], + "publishers": [], + "operating_systems": [ + "Windows Phone 8", + "Windows RT", + "Windows 7" + ], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q724878" + ], + "created_at": "2026-07-10T10:12:41.828303", + "updated_at": "2026-07-10T10:12:41.828303", + "url": "/v1/software/microsoft-office-2013" +} diff --git a/site/public/v1/software/microsoft-office-2016-for-mac/index.json b/site/public/v1/software/microsoft-office-2016-for-mac/index.json new file mode 100644 index 000000000000..916b3f28c35d --- /dev/null +++ b/site/public/v1/software/microsoft-office-2016-for-mac/index.json @@ -0,0 +1,21 @@ +{ + "id": 6094, + "slug": "microsoft-office-2016-for-mac", + "name": "Microsoft Office 2016 for Mac", + "release_date": null, + "developers": [], + "publishers": [ + "Microsoft" + ], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25378791" + ], + "created_at": "2026-07-10T10:12:41.828303", + "updated_at": "2026-07-10T10:12:41.828303", + "url": "/v1/software/microsoft-office-2016-for-mac" +} diff --git a/site/public/v1/software/microsoft-office-4-3/index.json b/site/public/v1/software/microsoft-office-4-3/index.json new file mode 100644 index 000000000000..a0a8f47e485b --- /dev/null +++ b/site/public/v1/software/microsoft-office-4-3/index.json @@ -0,0 +1,27 @@ +{ + "id": 6095, + "slug": "microsoft-office-4-3", + "name": "Microsoft Office 4.3", + "release_date": "1994-06-02", + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [ + "Windows 3.x", + "Windows 95" + ], + "programming_languages": [], + "licenses": [ + "proprietary license", + "commercial software" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3857018" + ], + "created_at": "2026-07-10T10:12:41.828303", + "updated_at": "2026-07-10T10:12:41.828303", + "url": "/v1/software/microsoft-office-4-3" +} diff --git a/site/public/v1/software/microsoft-office-4-x/index.json b/site/public/v1/software/microsoft-office-4-x/index.json new file mode 100644 index 000000000000..3463ac7fa403 --- /dev/null +++ b/site/public/v1/software/microsoft-office-4-x/index.json @@ -0,0 +1,19 @@ +{ + "id": 6096, + "slug": "microsoft-office-4-x", + "name": "Microsoft Office 4.x", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131471003" + ], + "created_at": "2026-07-10T10:12:41.828303", + "updated_at": "2026-07-10T10:12:41.828303", + "url": "/v1/software/microsoft-office-4-x" +} diff --git a/site/public/v1/software/microsoft-office-98-macintosh-edition/index.json b/site/public/v1/software/microsoft-office-98-macintosh-edition/index.json new file mode 100644 index 000000000000..c2ce4bfe8ef1 --- /dev/null +++ b/site/public/v1/software/microsoft-office-98-macintosh-edition/index.json @@ -0,0 +1,23 @@ +{ + "id": 6097, + "slug": "microsoft-office-98-macintosh-edition", + "name": "Microsoft Office 98 Macintosh Edition", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [ + "macOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3498928" + ], + "created_at": "2026-07-10T10:12:41.829279", + "updated_at": "2026-07-10T10:12:41.829279", + "url": "/v1/software/microsoft-office-98-macintosh-edition" +} diff --git a/site/public/v1/software/microsoft-office-accounting/index.json b/site/public/v1/software/microsoft-office-accounting/index.json new file mode 100644 index 000000000000..8e0e6f401eef --- /dev/null +++ b/site/public/v1/software/microsoft-office-accounting/index.json @@ -0,0 +1,21 @@ +{ + "id": 6098, + "slug": "microsoft-office-accounting", + "name": "Microsoft Office Accounting", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1041347" + ], + "created_at": "2026-07-10T10:12:41.829279", + "updated_at": "2026-07-10T10:12:41.829279", + "url": "/v1/software/microsoft-office-accounting" +} diff --git a/site/public/v1/software/microsoft-office-communications-online/index.json b/site/public/v1/software/microsoft-office-communications-online/index.json new file mode 100644 index 000000000000..df38212ce3a4 --- /dev/null +++ b/site/public/v1/software/microsoft-office-communications-online/index.json @@ -0,0 +1,19 @@ +{ + "id": 6099, + "slug": "microsoft-office-communications-online", + "name": "Microsoft Office Communications Online", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11233184" + ], + "created_at": "2026-07-10T10:12:41.829279", + "updated_at": "2026-07-10T10:12:41.829279", + "url": "/v1/software/microsoft-office-communications-online" +} diff --git a/site/public/v1/software/microsoft-office-communications-server/index.json b/site/public/v1/software/microsoft-office-communications-server/index.json new file mode 100644 index 000000000000..9f65c706958b --- /dev/null +++ b/site/public/v1/software/microsoft-office-communications-server/index.json @@ -0,0 +1,21 @@ +{ + "id": 6100, + "slug": "microsoft-office-communications-server", + "name": "Microsoft Office Communications Server", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106006061" + ], + "created_at": "2026-07-10T10:12:41.830291", + "updated_at": "2026-07-10T10:12:41.830291", + "url": "/v1/software/microsoft-office-communications-server" +} diff --git a/site/public/v1/software/microsoft-office-communicator/index.json b/site/public/v1/software/microsoft-office-communicator/index.json new file mode 100644 index 000000000000..71133a4d8038 --- /dev/null +++ b/site/public/v1/software/microsoft-office-communicator/index.json @@ -0,0 +1,19 @@ +{ + "id": 6101, + "slug": "microsoft-office-communicator", + "name": "Microsoft Office Communicator", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q13794956" + ], + "created_at": "2026-07-10T10:12:41.830291", + "updated_at": "2026-07-10T10:12:41.830291", + "url": "/v1/software/microsoft-office-communicator" +} diff --git a/site/public/v1/software/microsoft-office-excel-2000/index.json b/site/public/v1/software/microsoft-office-excel-2000/index.json new file mode 100644 index 000000000000..3c657522f0fb --- /dev/null +++ b/site/public/v1/software/microsoft-office-excel-2000/index.json @@ -0,0 +1,21 @@ +{ + "id": 6102, + "slug": "microsoft-office-excel-2000", + "name": "Microsoft Office Excel 2000", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115117121" + ], + "created_at": "2026-07-10T10:12:41.830291", + "updated_at": "2026-07-10T10:12:41.830291", + "url": "/v1/software/microsoft-office-excel-2000" +} diff --git a/site/public/v1/software/microsoft-office-excel-365/index.json b/site/public/v1/software/microsoft-office-excel-365/index.json new file mode 100644 index 000000000000..c288fc6b1023 --- /dev/null +++ b/site/public/v1/software/microsoft-office-excel-365/index.json @@ -0,0 +1,21 @@ +{ + "id": 6103, + "slug": "microsoft-office-excel-365", + "name": "Microsoft Office Excel 365", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115117208" + ], + "created_at": "2026-07-10T10:12:41.831292", + "updated_at": "2026-07-10T10:12:41.831292", + "url": "/v1/software/microsoft-office-excel-365" +} diff --git a/site/public/v1/software/microsoft-office-for-ipad/index.json b/site/public/v1/software/microsoft-office-for-ipad/index.json new file mode 100644 index 000000000000..0e3ab0af5898 --- /dev/null +++ b/site/public/v1/software/microsoft-office-for-ipad/index.json @@ -0,0 +1,23 @@ +{ + "id": 6104, + "slug": "microsoft-office-for-ipad", + "name": "Microsoft Office for iPad", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [ + "iOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16529467" + ], + "created_at": "2026-07-10T10:12:41.831292", + "updated_at": "2026-07-10T10:12:41.831292", + "url": "/v1/software/microsoft-office-for-ipad" +} diff --git a/site/public/v1/software/microsoft-office-forms-server/index.json b/site/public/v1/software/microsoft-office-forms-server/index.json new file mode 100644 index 000000000000..78b4dae2cf91 --- /dev/null +++ b/site/public/v1/software/microsoft-office-forms-server/index.json @@ -0,0 +1,21 @@ +{ + "id": 6105, + "slug": "microsoft-office-forms-server", + "name": "Microsoft Office Forms Server", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1041639" + ], + "created_at": "2026-07-10T10:12:41.831292", + "updated_at": "2026-07-10T10:12:41.831292", + "url": "/v1/software/microsoft-office-forms-server" +} diff --git a/site/public/v1/software/microsoft-office-frontpage-2002/index.json b/site/public/v1/software/microsoft-office-frontpage-2002/index.json new file mode 100644 index 000000000000..006ab930803c --- /dev/null +++ b/site/public/v1/software/microsoft-office-frontpage-2002/index.json @@ -0,0 +1,21 @@ +{ + "id": 6106, + "slug": "microsoft-office-frontpage-2002", + "name": "Microsoft Office FrontPage 2002", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115117134" + ], + "created_at": "2026-07-10T10:12:41.832288", + "updated_at": "2026-07-10T10:12:41.832288", + "url": "/v1/software/microsoft-office-frontpage-2002" +} diff --git a/site/public/v1/software/microsoft-office-frontpage-2003/index.json b/site/public/v1/software/microsoft-office-frontpage-2003/index.json new file mode 100644 index 000000000000..dad196be410d --- /dev/null +++ b/site/public/v1/software/microsoft-office-frontpage-2003/index.json @@ -0,0 +1,21 @@ +{ + "id": 6107, + "slug": "microsoft-office-frontpage-2003", + "name": "Microsoft Office FrontPage 2003", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115117156" + ], + "created_at": "2026-07-10T10:12:41.832288", + "updated_at": "2026-07-10T10:12:41.832288", + "url": "/v1/software/microsoft-office-frontpage-2003" +} diff --git a/site/public/v1/software/microsoft-office-frontpage-97/index.json b/site/public/v1/software/microsoft-office-frontpage-97/index.json new file mode 100644 index 000000000000..090dc75292c4 --- /dev/null +++ b/site/public/v1/software/microsoft-office-frontpage-97/index.json @@ -0,0 +1,21 @@ +{ + "id": 6108, + "slug": "microsoft-office-frontpage-97", + "name": "Microsoft Office FrontPage 97", + "release_date": "1996-01-01", + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115117112" + ], + "created_at": "2026-07-10T10:12:41.832288", + "updated_at": "2026-07-10T10:12:41.832288", + "url": "/v1/software/microsoft-office-frontpage-97" +} diff --git a/site/public/v1/software/microsoft-office-groove-server/index.json b/site/public/v1/software/microsoft-office-groove-server/index.json new file mode 100644 index 000000000000..b8af37ff3e4e --- /dev/null +++ b/site/public/v1/software/microsoft-office-groove-server/index.json @@ -0,0 +1,19 @@ +{ + "id": 6109, + "slug": "microsoft-office-groove-server", + "name": "Microsoft Office Groove Server", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q851887" + ], + "created_at": "2026-07-10T10:12:41.832288", + "updated_at": "2026-07-10T10:12:41.832288", + "url": "/v1/software/microsoft-office-groove-server" +} diff --git a/site/public/v1/software/microsoft-office-infopath-2007/index.json b/site/public/v1/software/microsoft-office-infopath-2007/index.json new file mode 100644 index 000000000000..2e88df5c4136 --- /dev/null +++ b/site/public/v1/software/microsoft-office-infopath-2007/index.json @@ -0,0 +1,21 @@ +{ + "id": 6110, + "slug": "microsoft-office-infopath-2007", + "name": "Microsoft Office InfoPath 2007", + "release_date": "2007-01-30", + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q46050455" + ], + "created_at": "2026-07-10T10:12:41.833256", + "updated_at": "2026-07-10T10:12:41.833256", + "url": "/v1/software/microsoft-office-infopath-2007" +} diff --git a/site/public/v1/software/microsoft-office-infopath-2013/index.json b/site/public/v1/software/microsoft-office-infopath-2013/index.json new file mode 100644 index 000000000000..da4132dbe1b3 --- /dev/null +++ b/site/public/v1/software/microsoft-office-infopath-2013/index.json @@ -0,0 +1,21 @@ +{ + "id": 6111, + "slug": "microsoft-office-infopath-2013", + "name": "Microsoft Office InfoPath 2013", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q92604659" + ], + "created_at": "2026-07-10T10:12:41.833256", + "updated_at": "2026-07-10T10:12:41.833256", + "url": "/v1/software/microsoft-office-infopath-2013" +} diff --git a/site/public/v1/software/microsoft-office-live-meeting/index.json b/site/public/v1/software/microsoft-office-live-meeting/index.json new file mode 100644 index 000000000000..381e76734abd --- /dev/null +++ b/site/public/v1/software/microsoft-office-live-meeting/index.json @@ -0,0 +1,25 @@ +{ + "id": 6112, + "slug": "microsoft-office-live-meeting", + "name": "Microsoft Office Live Meeting", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "Microsoft end-user license agreement" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2415664" + ], + "created_at": "2026-07-10T10:12:41.833256", + "updated_at": "2026-07-10T10:12:41.833256", + "url": "/v1/software/microsoft-office-live-meeting" +} diff --git a/site/public/v1/software/microsoft-office-live/index.json b/site/public/v1/software/microsoft-office-live/index.json new file mode 100644 index 000000000000..3c106cc90d75 --- /dev/null +++ b/site/public/v1/software/microsoft-office-live/index.json @@ -0,0 +1,24 @@ +{ + "id": 6113, + "slug": "microsoft-office-live", + "name": "Microsoft Office Live", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q281431" + ], + "created_at": "2026-07-10T10:12:41.834255", + "updated_at": "2026-07-10T10:12:41.834255", + "url": "/v1/software/microsoft-office-live" +} diff --git a/site/public/v1/software/microsoft-office-onenote-2010/index.json b/site/public/v1/software/microsoft-office-onenote-2010/index.json new file mode 100644 index 000000000000..caeadbd885fc --- /dev/null +++ b/site/public/v1/software/microsoft-office-onenote-2010/index.json @@ -0,0 +1,21 @@ +{ + "id": 6114, + "slug": "microsoft-office-onenote-2010", + "name": "Microsoft Office OneNote 2010", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115117192" + ], + "created_at": "2026-07-10T10:12:41.834255", + "updated_at": "2026-07-10T10:12:41.834255", + "url": "/v1/software/microsoft-office-onenote-2010" +} diff --git a/site/public/v1/software/microsoft-office-onenote-2013/index.json b/site/public/v1/software/microsoft-office-onenote-2013/index.json new file mode 100644 index 000000000000..65b858e0905f --- /dev/null +++ b/site/public/v1/software/microsoft-office-onenote-2013/index.json @@ -0,0 +1,21 @@ +{ + "id": 6115, + "slug": "microsoft-office-onenote-2013", + "name": "Microsoft Office OneNote 2013", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115117197" + ], + "created_at": "2026-07-10T10:12:41.834255", + "updated_at": "2026-07-10T10:12:41.834255", + "url": "/v1/software/microsoft-office-onenote-2013" +} diff --git a/site/public/v1/software/microsoft-office-outlook-2000/index.json b/site/public/v1/software/microsoft-office-outlook-2000/index.json new file mode 100644 index 000000000000..02ac1e48c3b9 --- /dev/null +++ b/site/public/v1/software/microsoft-office-outlook-2000/index.json @@ -0,0 +1,21 @@ +{ + "id": 6116, + "slug": "microsoft-office-outlook-2000", + "name": "Microsoft Office Outlook 2000", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115117125" + ], + "created_at": "2026-07-10T10:12:41.834255", + "updated_at": "2026-07-10T10:12:41.834255", + "url": "/v1/software/microsoft-office-outlook-2000" +} diff --git a/site/public/v1/software/microsoft-office-outlook-2002/index.json b/site/public/v1/software/microsoft-office-outlook-2002/index.json new file mode 100644 index 000000000000..13df415f38eb --- /dev/null +++ b/site/public/v1/software/microsoft-office-outlook-2002/index.json @@ -0,0 +1,21 @@ +{ + "id": 6117, + "slug": "microsoft-office-outlook-2002", + "name": "Microsoft Office Outlook 2002", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115117136" + ], + "created_at": "2026-07-10T10:12:41.835318", + "updated_at": "2026-07-10T10:12:41.835318", + "url": "/v1/software/microsoft-office-outlook-2002" +} diff --git a/site/public/v1/software/microsoft-office-outlook-2003/index.json b/site/public/v1/software/microsoft-office-outlook-2003/index.json new file mode 100644 index 000000000000..81a30132f03a --- /dev/null +++ b/site/public/v1/software/microsoft-office-outlook-2003/index.json @@ -0,0 +1,21 @@ +{ + "id": 6118, + "slug": "microsoft-office-outlook-2003", + "name": "Microsoft Office Outlook 2003", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115117153" + ], + "created_at": "2026-07-10T10:12:41.835318", + "updated_at": "2026-07-10T10:12:41.835318", + "url": "/v1/software/microsoft-office-outlook-2003" +} diff --git a/site/public/v1/software/microsoft-office-outlook-2010/index.json b/site/public/v1/software/microsoft-office-outlook-2010/index.json new file mode 100644 index 000000000000..bf47fe84ec77 --- /dev/null +++ b/site/public/v1/software/microsoft-office-outlook-2010/index.json @@ -0,0 +1,21 @@ +{ + "id": 6119, + "slug": "microsoft-office-outlook-2010", + "name": "Microsoft Office Outlook 2010", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115117182" + ], + "created_at": "2026-07-10T10:12:41.836347", + "updated_at": "2026-07-10T10:12:41.836347", + "url": "/v1/software/microsoft-office-outlook-2010" +} diff --git a/site/public/v1/software/microsoft-office-outlook-2013/index.json b/site/public/v1/software/microsoft-office-outlook-2013/index.json new file mode 100644 index 000000000000..7be016a74b66 --- /dev/null +++ b/site/public/v1/software/microsoft-office-outlook-2013/index.json @@ -0,0 +1,21 @@ +{ + "id": 6120, + "slug": "microsoft-office-outlook-2013", + "name": "Microsoft Office Outlook 2013", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115117196" + ], + "created_at": "2026-07-10T10:12:41.836347", + "updated_at": "2026-07-10T10:12:41.836347", + "url": "/v1/software/microsoft-office-outlook-2013" +} diff --git a/site/public/v1/software/microsoft-office-outlook-97/index.json b/site/public/v1/software/microsoft-office-outlook-97/index.json new file mode 100644 index 000000000000..898c13d51ff6 --- /dev/null +++ b/site/public/v1/software/microsoft-office-outlook-97/index.json @@ -0,0 +1,21 @@ +{ + "id": 6121, + "slug": "microsoft-office-outlook-97", + "name": "Microsoft Office Outlook 97", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115117114" + ], + "created_at": "2026-07-10T10:12:41.836347", + "updated_at": "2026-07-10T10:12:41.836347", + "url": "/v1/software/microsoft-office-outlook-97" +} diff --git a/site/public/v1/software/microsoft-office-outlook-98/index.json b/site/public/v1/software/microsoft-office-outlook-98/index.json new file mode 100644 index 000000000000..f347ca249323 --- /dev/null +++ b/site/public/v1/software/microsoft-office-outlook-98/index.json @@ -0,0 +1,21 @@ +{ + "id": 6122, + "slug": "microsoft-office-outlook-98", + "name": "Microsoft Office Outlook 98", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115117126" + ], + "created_at": "2026-07-10T10:12:41.836347", + "updated_at": "2026-07-10T10:12:41.836347", + "url": "/v1/software/microsoft-office-outlook-98" +} diff --git a/site/public/v1/software/microsoft-office-outlook-web-access-2003/index.json b/site/public/v1/software/microsoft-office-outlook-web-access-2003/index.json new file mode 100644 index 000000000000..6ebf5105e181 --- /dev/null +++ b/site/public/v1/software/microsoft-office-outlook-web-access-2003/index.json @@ -0,0 +1,21 @@ +{ + "id": 6123, + "slug": "microsoft-office-outlook-web-access-2003", + "name": "Microsoft Office Outlook Web Access 2003", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115117170" + ], + "created_at": "2026-07-10T10:12:41.836347", + "updated_at": "2026-07-10T10:12:41.836347", + "url": "/v1/software/microsoft-office-outlook-web-access-2003" +} diff --git a/site/public/v1/software/microsoft-office-outlook-web-access/index.json b/site/public/v1/software/microsoft-office-outlook-web-access/index.json new file mode 100644 index 000000000000..bc026ad3ae02 --- /dev/null +++ b/site/public/v1/software/microsoft-office-outlook-web-access/index.json @@ -0,0 +1,21 @@ +{ + "id": 6124, + "slug": "microsoft-office-outlook-web-access", + "name": "Microsoft Office Outlook Web Access", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115117169" + ], + "created_at": "2026-07-10T10:12:41.837642", + "updated_at": "2026-07-10T10:12:41.837642", + "url": "/v1/software/microsoft-office-outlook-web-access" +} diff --git a/site/public/v1/software/microsoft-office-performancepoint-server/index.json b/site/public/v1/software/microsoft-office-performancepoint-server/index.json new file mode 100644 index 000000000000..e4c09abf0ef2 --- /dev/null +++ b/site/public/v1/software/microsoft-office-performancepoint-server/index.json @@ -0,0 +1,21 @@ +{ + "id": 6125, + "slug": "microsoft-office-performancepoint-server", + "name": "Microsoft Office PerformancePoint Server", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3312389" + ], + "created_at": "2026-07-10T10:12:41.837642", + "updated_at": "2026-07-10T10:12:41.837642", + "url": "/v1/software/microsoft-office-performancepoint-server" +} diff --git a/site/public/v1/software/microsoft-office-project-portfolio-server/index.json b/site/public/v1/software/microsoft-office-project-portfolio-server/index.json new file mode 100644 index 000000000000..edaa3eddcdd9 --- /dev/null +++ b/site/public/v1/software/microsoft-office-project-portfolio-server/index.json @@ -0,0 +1,19 @@ +{ + "id": 6126, + "slug": "microsoft-office-project-portfolio-server", + "name": "Microsoft Office Project Portfolio Server", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q851397" + ], + "created_at": "2026-07-10T10:12:41.838646", + "updated_at": "2026-07-10T10:12:41.838646", + "url": "/v1/software/microsoft-office-project-portfolio-server" +} diff --git a/site/public/v1/software/microsoft-office-project-server/index.json b/site/public/v1/software/microsoft-office-project-server/index.json new file mode 100644 index 000000000000..88cc44e0bae2 --- /dev/null +++ b/site/public/v1/software/microsoft-office-project-server/index.json @@ -0,0 +1,19 @@ +{ + "id": 6127, + "slug": "microsoft-office-project-server", + "name": "Microsoft Office Project Server", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6013478" + ], + "created_at": "2026-07-10T10:12:41.838646", + "updated_at": "2026-07-10T10:12:41.838646", + "url": "/v1/software/microsoft-office-project-server" +} diff --git a/site/public/v1/software/microsoft-office-publisher-2003/index.json b/site/public/v1/software/microsoft-office-publisher-2003/index.json new file mode 100644 index 000000000000..c649bb32b536 --- /dev/null +++ b/site/public/v1/software/microsoft-office-publisher-2003/index.json @@ -0,0 +1,19 @@ +{ + "id": 6128, + "slug": "microsoft-office-publisher-2003", + "name": "Microsoft Office Publisher 2003", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63385386" + ], + "created_at": "2026-07-10T10:12:41.838646", + "updated_at": "2026-07-10T10:12:41.838646", + "url": "/v1/software/microsoft-office-publisher-2003" +} diff --git a/site/public/v1/software/microsoft-office-shared-tools/index.json b/site/public/v1/software/microsoft-office-shared-tools/index.json new file mode 100644 index 000000000000..295a7ee3593f --- /dev/null +++ b/site/public/v1/software/microsoft-office-shared-tools/index.json @@ -0,0 +1,19 @@ +{ + "id": 6129, + "slug": "microsoft-office-shared-tools", + "name": "Microsoft Office shared tools", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1414515" + ], + "created_at": "2026-07-10T10:12:41.839653", + "updated_at": "2026-07-10T10:12:41.839653", + "url": "/v1/software/microsoft-office-shared-tools" +} diff --git a/site/public/v1/software/microsoft-office-sharepoint-server/index.json b/site/public/v1/software/microsoft-office-sharepoint-server/index.json new file mode 100644 index 000000000000..1faf017553ec --- /dev/null +++ b/site/public/v1/software/microsoft-office-sharepoint-server/index.json @@ -0,0 +1,19 @@ +{ + "id": 6130, + "slug": "microsoft-office-sharepoint-server", + "name": "Microsoft Office SharePoint Server", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1081057" + ], + "created_at": "2026-07-10T10:12:41.839653", + "updated_at": "2026-07-10T10:12:41.839653", + "url": "/v1/software/microsoft-office-sharepoint-server" +} diff --git a/site/public/v1/software/microsoft-office-word-2-0/index.json b/site/public/v1/software/microsoft-office-word-2-0/index.json new file mode 100644 index 000000000000..a07cdd8a8c76 --- /dev/null +++ b/site/public/v1/software/microsoft-office-word-2-0/index.json @@ -0,0 +1,21 @@ +{ + "id": 6131, + "slug": "microsoft-office-word-2-0", + "name": "Microsoft Office Word 2.0", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115117167" + ], + "created_at": "2026-07-10T10:12:41.839653", + "updated_at": "2026-07-10T10:12:41.839653", + "url": "/v1/software/microsoft-office-word-2-0" +} diff --git a/site/public/v1/software/microsoft-office-word-2000/index.json b/site/public/v1/software/microsoft-office-word-2000/index.json new file mode 100644 index 000000000000..3f19e4bdc691 --- /dev/null +++ b/site/public/v1/software/microsoft-office-word-2000/index.json @@ -0,0 +1,21 @@ +{ + "id": 6132, + "slug": "microsoft-office-word-2000", + "name": "Microsoft Office Word 2000", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115117129" + ], + "created_at": "2026-07-10T10:12:41.839653", + "updated_at": "2026-07-10T10:12:41.839653", + "url": "/v1/software/microsoft-office-word-2000" +} diff --git a/site/public/v1/software/microsoft-office-word-2002/index.json b/site/public/v1/software/microsoft-office-word-2002/index.json new file mode 100644 index 000000000000..24f6adfebaba --- /dev/null +++ b/site/public/v1/software/microsoft-office-word-2002/index.json @@ -0,0 +1,21 @@ +{ + "id": 6133, + "slug": "microsoft-office-word-2002", + "name": "Microsoft Office Word 2002", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115117135" + ], + "created_at": "2026-07-10T10:12:41.840776", + "updated_at": "2026-07-10T10:12:41.840776", + "url": "/v1/software/microsoft-office-word-2002" +} diff --git a/site/public/v1/software/microsoft-office-word-5-0/index.json b/site/public/v1/software/microsoft-office-word-5-0/index.json new file mode 100644 index 000000000000..0ca49425ab26 --- /dev/null +++ b/site/public/v1/software/microsoft-office-word-5-0/index.json @@ -0,0 +1,21 @@ +{ + "id": 6134, + "slug": "microsoft-office-word-5-0", + "name": "Microsoft Office Word 5.0", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115117168" + ], + "created_at": "2026-07-10T10:12:41.840776", + "updated_at": "2026-07-10T10:12:41.840776", + "url": "/v1/software/microsoft-office-word-5-0" +} diff --git a/site/public/v1/software/microsoft-office-word-6-0/index.json b/site/public/v1/software/microsoft-office-word-6-0/index.json new file mode 100644 index 000000000000..87f701be84da --- /dev/null +++ b/site/public/v1/software/microsoft-office-word-6-0/index.json @@ -0,0 +1,21 @@ +{ + "id": 6135, + "slug": "microsoft-office-word-6-0", + "name": "Microsoft Office Word 6.0", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115117118" + ], + "created_at": "2026-07-10T10:12:41.840776", + "updated_at": "2026-07-10T10:12:41.840776", + "url": "/v1/software/microsoft-office-word-6-0" +} diff --git a/site/public/v1/software/microsoft-online-services/index.json b/site/public/v1/software/microsoft-online-services/index.json new file mode 100644 index 000000000000..2dda5c47a94a --- /dev/null +++ b/site/public/v1/software/microsoft-online-services/index.json @@ -0,0 +1,19 @@ +{ + "id": 6136, + "slug": "microsoft-online-services", + "name": "Microsoft Online Services", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3124991" + ], + "created_at": "2026-07-10T10:12:41.841707", + "updated_at": "2026-07-10T10:12:41.841707", + "url": "/v1/software/microsoft-online-services" +} diff --git a/site/public/v1/software/microsoft-outlook-hotmail-connector/index.json b/site/public/v1/software/microsoft-outlook-hotmail-connector/index.json new file mode 100644 index 000000000000..290acfe58fad --- /dev/null +++ b/site/public/v1/software/microsoft-outlook-hotmail-connector/index.json @@ -0,0 +1,19 @@ +{ + "id": 6137, + "slug": "microsoft-outlook-hotmail-connector", + "name": "Microsoft Outlook Hotmail Connector", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q766643" + ], + "created_at": "2026-07-10T10:12:41.841707", + "updated_at": "2026-07-10T10:12:41.841707", + "url": "/v1/software/microsoft-outlook-hotmail-connector" +} diff --git a/site/public/v1/software/microsoft-pc-manager/index.json b/site/public/v1/software/microsoft-pc-manager/index.json new file mode 100644 index 000000000000..f9dc1581e8df --- /dev/null +++ b/site/public/v1/software/microsoft-pc-manager/index.json @@ -0,0 +1,21 @@ +{ + "id": 6138, + "slug": "microsoft-pc-manager", + "name": "Microsoft PC Manager", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126279527" + ], + "created_at": "2026-07-10T10:12:41.842652", + "updated_at": "2026-07-10T10:12:41.842652", + "url": "/v1/software/microsoft-pc-manager" +} diff --git a/site/public/v1/software/microsoft-pinyin-ime/index.json b/site/public/v1/software/microsoft-pinyin-ime/index.json new file mode 100644 index 000000000000..d10c43291271 --- /dev/null +++ b/site/public/v1/software/microsoft-pinyin-ime/index.json @@ -0,0 +1,23 @@ +{ + "id": 6139, + "slug": "microsoft-pinyin-ime", + "name": "Microsoft Pinyin IME", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11071469" + ], + "created_at": "2026-07-10T10:12:41.842652", + "updated_at": "2026-07-10T10:12:41.842652", + "url": "/v1/software/microsoft-pinyin-ime" +} diff --git a/site/public/v1/software/microsoft-planner/index.json b/site/public/v1/software/microsoft-planner/index.json new file mode 100644 index 000000000000..0d348766420c --- /dev/null +++ b/site/public/v1/software/microsoft-planner/index.json @@ -0,0 +1,21 @@ +{ + "id": 6140, + "slug": "microsoft-planner", + "name": "Microsoft Planner", + "release_date": "2016-06-06", + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q24895410" + ], + "created_at": "2026-07-10T10:12:41.842652", + "updated_at": "2026-07-10T10:12:41.842652", + "url": "/v1/software/microsoft-planner" +} diff --git a/site/public/v1/software/microsoft-plus/index.json b/site/public/v1/software/microsoft-plus/index.json new file mode 100644 index 000000000000..6513d6938d34 --- /dev/null +++ b/site/public/v1/software/microsoft-plus/index.json @@ -0,0 +1,23 @@ +{ + "id": 6141, + "slug": "microsoft-plus", + "name": "Microsoft Plus!", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q686425" + ], + "created_at": "2026-07-10T10:12:41.842652", + "updated_at": "2026-07-10T10:12:41.842652", + "url": "/v1/software/microsoft-plus" +} diff --git a/site/public/v1/software/microsoft-power-apps/index.json b/site/public/v1/software/microsoft-power-apps/index.json new file mode 100644 index 000000000000..3a9ce172d4c1 --- /dev/null +++ b/site/public/v1/software/microsoft-power-apps/index.json @@ -0,0 +1,21 @@ +{ + "id": 6142, + "slug": "microsoft-power-apps", + "name": "Microsoft Power Apps", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q97333182" + ], + "created_at": "2026-07-10T10:12:41.842652", + "updated_at": "2026-07-10T10:12:41.842652", + "url": "/v1/software/microsoft-power-apps" +} diff --git a/site/public/v1/software/microsoft-power-automate/index.json b/site/public/v1/software/microsoft-power-automate/index.json new file mode 100644 index 000000000000..71383b2599a9 --- /dev/null +++ b/site/public/v1/software/microsoft-power-automate/index.json @@ -0,0 +1,21 @@ +{ + "id": 6143, + "slug": "microsoft-power-automate", + "name": "Microsoft Power Automate", + "release_date": "2016-10-01", + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28502244" + ], + "created_at": "2026-07-10T10:12:41.843667", + "updated_at": "2026-07-10T10:12:41.843667", + "url": "/v1/software/microsoft-power-automate" +} diff --git a/site/public/v1/software/microsoft-power-bi/index.json b/site/public/v1/software/microsoft-power-bi/index.json new file mode 100644 index 000000000000..07c21180e7e2 --- /dev/null +++ b/site/public/v1/software/microsoft-power-bi/index.json @@ -0,0 +1,23 @@ +{ + "id": 6144, + "slug": "microsoft-power-bi", + "name": "Microsoft Power BI", + "release_date": "2011-07-11", + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q23542287" + ], + "created_at": "2026-07-10T10:12:41.843667", + "updated_at": "2026-07-10T10:12:41.843667", + "url": "/v1/software/microsoft-power-bi" +} diff --git a/site/public/v1/software/microsoft-power-platform/index.json b/site/public/v1/software/microsoft-power-platform/index.json new file mode 100644 index 000000000000..46ecabc71f71 --- /dev/null +++ b/site/public/v1/software/microsoft-power-platform/index.json @@ -0,0 +1,21 @@ +{ + "id": 6145, + "slug": "microsoft-power-platform", + "name": "Microsoft Power Platform", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106253893" + ], + "created_at": "2026-07-10T10:12:41.843667", + "updated_at": "2026-07-10T10:12:41.843667", + "url": "/v1/software/microsoft-power-platform" +} diff --git a/site/public/v1/software/microsoft-powerpoint-2010/index.json b/site/public/v1/software/microsoft-powerpoint-2010/index.json new file mode 100644 index 000000000000..7c38bdca5d46 --- /dev/null +++ b/site/public/v1/software/microsoft-powerpoint-2010/index.json @@ -0,0 +1,21 @@ +{ + "id": 6146, + "slug": "microsoft-powerpoint-2010", + "name": "Microsoft PowerPoint 2010", + "release_date": "2010-06-01", + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115117181" + ], + "created_at": "2026-07-10T10:12:41.844752", + "updated_at": "2026-07-10T10:12:41.844752", + "url": "/v1/software/microsoft-powerpoint-2010" +} diff --git a/site/public/v1/software/microsoft-powerpoint-2013/index.json b/site/public/v1/software/microsoft-powerpoint-2013/index.json new file mode 100644 index 000000000000..60b2734ba78f --- /dev/null +++ b/site/public/v1/software/microsoft-powerpoint-2013/index.json @@ -0,0 +1,19 @@ +{ + "id": 6147, + "slug": "microsoft-powerpoint-2013", + "name": "Microsoft PowerPoint 2013", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28018622" + ], + "created_at": "2026-07-10T10:12:41.844752", + "updated_at": "2026-07-10T10:12:41.844752", + "url": "/v1/software/microsoft-powerpoint-2013" +} diff --git a/site/public/v1/software/microsoft-powerpoint-2016/index.json b/site/public/v1/software/microsoft-powerpoint-2016/index.json new file mode 100644 index 000000000000..8aa64915227a --- /dev/null +++ b/site/public/v1/software/microsoft-powerpoint-2016/index.json @@ -0,0 +1,19 @@ +{ + "id": 6148, + "slug": "microsoft-powerpoint-2016", + "name": "Microsoft PowerPoint 2016", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28018608" + ], + "created_at": "2026-07-10T10:12:41.844752", + "updated_at": "2026-07-10T10:12:41.844752", + "url": "/v1/software/microsoft-powerpoint-2016" +} diff --git a/site/public/v1/software/microsoft-powerpoint-2019/index.json b/site/public/v1/software/microsoft-powerpoint-2019/index.json new file mode 100644 index 000000000000..fd72d03f0449 --- /dev/null +++ b/site/public/v1/software/microsoft-powerpoint-2019/index.json @@ -0,0 +1,21 @@ +{ + "id": 6149, + "slug": "microsoft-powerpoint-2019", + "name": "Microsoft PowerPoint 2019", + "release_date": "2018-01-01", + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115117209" + ], + "created_at": "2026-07-10T10:12:41.845735", + "updated_at": "2026-07-10T10:12:41.845735", + "url": "/v1/software/microsoft-powerpoint-2019" +} diff --git a/site/public/v1/software/microsoft-powerpoint-2021/index.json b/site/public/v1/software/microsoft-powerpoint-2021/index.json new file mode 100644 index 000000000000..7e6aec048c83 --- /dev/null +++ b/site/public/v1/software/microsoft-powerpoint-2021/index.json @@ -0,0 +1,21 @@ +{ + "id": 6150, + "slug": "microsoft-powerpoint-2021", + "name": "Microsoft PowerPoint 2021", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122583376" + ], + "created_at": "2026-07-10T10:12:41.845735", + "updated_at": "2026-07-10T10:12:41.845735", + "url": "/v1/software/microsoft-powerpoint-2021" +} diff --git a/site/public/v1/software/microsoft-powerpoint-3-0-for-mac/index.json b/site/public/v1/software/microsoft-powerpoint-3-0-for-mac/index.json new file mode 100644 index 000000000000..e4f193a4c18a --- /dev/null +++ b/site/public/v1/software/microsoft-powerpoint-3-0-for-mac/index.json @@ -0,0 +1,23 @@ +{ + "id": 6151, + "slug": "microsoft-powerpoint-3-0-for-mac", + "name": "Microsoft Powerpoint 3.0 for Mac", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [ + "macOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28861749" + ], + "created_at": "2026-07-10T10:12:41.845735", + "updated_at": "2026-07-10T10:12:41.845735", + "url": "/v1/software/microsoft-powerpoint-3-0-for-mac" +} diff --git a/site/public/v1/software/microsoft-powerpoint-4-0/index.json b/site/public/v1/software/microsoft-powerpoint-4-0/index.json new file mode 100644 index 000000000000..a5f8ef52b8b2 --- /dev/null +++ b/site/public/v1/software/microsoft-powerpoint-4-0/index.json @@ -0,0 +1,21 @@ +{ + "id": 6152, + "slug": "microsoft-powerpoint-4-0", + "name": "Microsoft PowerPoint 4.0", + "release_date": "1994-02-01", + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115117161" + ], + "created_at": "2026-07-10T10:12:41.846750", + "updated_at": "2026-07-10T10:12:41.846750", + "url": "/v1/software/microsoft-powerpoint-4-0" +} diff --git a/site/public/v1/software/microsoft-powerpoint-7-0/index.json b/site/public/v1/software/microsoft-powerpoint-7-0/index.json new file mode 100644 index 000000000000..cdad47bb279b --- /dev/null +++ b/site/public/v1/software/microsoft-powerpoint-7-0/index.json @@ -0,0 +1,21 @@ +{ + "id": 6153, + "slug": "microsoft-powerpoint-7-0", + "name": "Microsoft PowerPoint 7.0", + "release_date": "1995-07-01", + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115117162" + ], + "created_at": "2026-07-10T10:12:41.846750", + "updated_at": "2026-07-10T10:12:41.846750", + "url": "/v1/software/microsoft-powerpoint-7-0" +} diff --git a/site/public/v1/software/microsoft-powerpoint-97/index.json b/site/public/v1/software/microsoft-powerpoint-97/index.json new file mode 100644 index 000000000000..6d31e098d8fe --- /dev/null +++ b/site/public/v1/software/microsoft-powerpoint-97/index.json @@ -0,0 +1,21 @@ +{ + "id": 6154, + "slug": "microsoft-powerpoint-97", + "name": "Microsoft PowerPoint 97", + "release_date": "1997-01-01", + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115117128" + ], + "created_at": "2026-07-10T10:12:41.846750", + "updated_at": "2026-07-10T10:12:41.846750", + "url": "/v1/software/microsoft-powerpoint-97" +} diff --git a/site/public/v1/software/microsoft-private-folder/index.json b/site/public/v1/software/microsoft-private-folder/index.json new file mode 100644 index 000000000000..dbb048d3c897 --- /dev/null +++ b/site/public/v1/software/microsoft-private-folder/index.json @@ -0,0 +1,21 @@ +{ + "id": 6155, + "slug": "microsoft-private-folder", + "name": "Microsoft Private Folder", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6840191" + ], + "created_at": "2026-07-10T10:12:41.846750", + "updated_at": "2026-07-10T10:12:41.846750", + "url": "/v1/software/microsoft-private-folder" +} diff --git a/site/public/v1/software/microsoft-producer-for-powerpoint/index.json b/site/public/v1/software/microsoft-producer-for-powerpoint/index.json new file mode 100644 index 000000000000..bb4a60171dff --- /dev/null +++ b/site/public/v1/software/microsoft-producer-for-powerpoint/index.json @@ -0,0 +1,19 @@ +{ + "id": 6156, + "slug": "microsoft-producer-for-powerpoint", + "name": "Microsoft Producer for PowerPoint", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11233186" + ], + "created_at": "2026-07-10T10:12:41.847748", + "updated_at": "2026-07-10T10:12:41.847748", + "url": "/v1/software/microsoft-producer-for-powerpoint" +} diff --git a/site/public/v1/software/microsoft-project-2000/index.json b/site/public/v1/software/microsoft-project-2000/index.json new file mode 100644 index 000000000000..3c5340088a0b --- /dev/null +++ b/site/public/v1/software/microsoft-project-2000/index.json @@ -0,0 +1,21 @@ +{ + "id": 6157, + "slug": "microsoft-project-2000", + "name": "Microsoft Project 2000", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115117142" + ], + "created_at": "2026-07-10T10:12:41.847748", + "updated_at": "2026-07-10T10:12:41.847748", + "url": "/v1/software/microsoft-project-2000" +} diff --git a/site/public/v1/software/microsoft-project-2003/index.json b/site/public/v1/software/microsoft-project-2003/index.json new file mode 100644 index 000000000000..e4c7d3b47191 --- /dev/null +++ b/site/public/v1/software/microsoft-project-2003/index.json @@ -0,0 +1,21 @@ +{ + "id": 6158, + "slug": "microsoft-project-2003", + "name": "Microsoft Project 2003", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115117150" + ], + "created_at": "2026-07-10T10:12:41.847748", + "updated_at": "2026-07-10T10:12:41.847748", + "url": "/v1/software/microsoft-project-2003" +} diff --git a/site/public/v1/software/microsoft-project-2007/index.json b/site/public/v1/software/microsoft-project-2007/index.json new file mode 100644 index 000000000000..b7352bd96922 --- /dev/null +++ b/site/public/v1/software/microsoft-project-2007/index.json @@ -0,0 +1,21 @@ +{ + "id": 6159, + "slug": "microsoft-project-2007", + "name": "Microsoft Project 2007", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115117176" + ], + "created_at": "2026-07-10T10:12:41.848716", + "updated_at": "2026-07-10T10:12:41.848716", + "url": "/v1/software/microsoft-project-2007" +} diff --git a/site/public/v1/software/microsoft-project-2010-server/index.json b/site/public/v1/software/microsoft-project-2010-server/index.json new file mode 100644 index 000000000000..72c32b2a4875 --- /dev/null +++ b/site/public/v1/software/microsoft-project-2010-server/index.json @@ -0,0 +1,21 @@ +{ + "id": 6160, + "slug": "microsoft-project-2010-server", + "name": "Microsoft Project 2010 Server", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115117188" + ], + "created_at": "2026-07-10T10:12:41.848716", + "updated_at": "2026-07-10T10:12:41.848716", + "url": "/v1/software/microsoft-project-2010-server" +} diff --git a/site/public/v1/software/microsoft-project-2010/index.json b/site/public/v1/software/microsoft-project-2010/index.json new file mode 100644 index 000000000000..dccf95c75a51 --- /dev/null +++ b/site/public/v1/software/microsoft-project-2010/index.json @@ -0,0 +1,21 @@ +{ + "id": 6161, + "slug": "microsoft-project-2010", + "name": "Microsoft Project 2010", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115117183" + ], + "created_at": "2026-07-10T10:12:41.848716", + "updated_at": "2026-07-10T10:12:41.848716", + "url": "/v1/software/microsoft-project-2010" +} diff --git a/site/public/v1/software/microsoft-project-2013/index.json b/site/public/v1/software/microsoft-project-2013/index.json new file mode 100644 index 000000000000..d0cbe1b0b2b2 --- /dev/null +++ b/site/public/v1/software/microsoft-project-2013/index.json @@ -0,0 +1,21 @@ +{ + "id": 6162, + "slug": "microsoft-project-2013", + "name": "Microsoft Project 2013", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115117195" + ], + "created_at": "2026-07-10T10:12:41.849647", + "updated_at": "2026-07-10T10:12:41.849647", + "url": "/v1/software/microsoft-project-2013" +} diff --git a/site/public/v1/software/microsoft-project-4/index.json b/site/public/v1/software/microsoft-project-4/index.json new file mode 100644 index 000000000000..24108b461521 --- /dev/null +++ b/site/public/v1/software/microsoft-project-4/index.json @@ -0,0 +1,21 @@ +{ + "id": 6163, + "slug": "microsoft-project-4", + "name": "Microsoft Project 4", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115117164" + ], + "created_at": "2026-07-10T10:12:41.849647", + "updated_at": "2026-07-10T10:12:41.849647", + "url": "/v1/software/microsoft-project-4" +} diff --git a/site/public/v1/software/microsoft-project-98/index.json b/site/public/v1/software/microsoft-project-98/index.json new file mode 100644 index 000000000000..e93284b7e097 --- /dev/null +++ b/site/public/v1/software/microsoft-project-98/index.json @@ -0,0 +1,21 @@ +{ + "id": 6164, + "slug": "microsoft-project-98", + "name": "Microsoft Project 98", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115117141" + ], + "created_at": "2026-07-10T10:12:41.849647", + "updated_at": "2026-07-10T10:12:41.849647", + "url": "/v1/software/microsoft-project-98" +} diff --git a/site/public/v1/software/microsoft-pubcenter/index.json b/site/public/v1/software/microsoft-pubcenter/index.json new file mode 100644 index 000000000000..22c1067a4582 --- /dev/null +++ b/site/public/v1/software/microsoft-pubcenter/index.json @@ -0,0 +1,21 @@ +{ + "id": 6165, + "slug": "microsoft-pubcenter", + "name": "Microsoft pubCenter", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6840275" + ], + "created_at": "2026-07-10T10:12:41.849647", + "updated_at": "2026-07-10T10:12:41.849647", + "url": "/v1/software/microsoft-pubcenter" +} diff --git a/site/public/v1/software/microsoft-publisher-98/index.json b/site/public/v1/software/microsoft-publisher-98/index.json new file mode 100644 index 000000000000..874f3fc10af4 --- /dev/null +++ b/site/public/v1/software/microsoft-publisher-98/index.json @@ -0,0 +1,21 @@ +{ + "id": 6166, + "slug": "microsoft-publisher-98", + "name": "Microsoft Publisher 98", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115117165" + ], + "created_at": "2026-07-10T10:12:41.850750", + "updated_at": "2026-07-10T10:12:41.850750", + "url": "/v1/software/microsoft-publisher-98" +} diff --git a/site/public/v1/software/microsoft-push-notification-service/index.json b/site/public/v1/software/microsoft-push-notification-service/index.json new file mode 100644 index 000000000000..2fdcd7390380 --- /dev/null +++ b/site/public/v1/software/microsoft-push-notification-service/index.json @@ -0,0 +1,19 @@ +{ + "id": 6167, + "slug": "microsoft-push-notification-service", + "name": "Microsoft Push Notification Service", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22906903" + ], + "created_at": "2026-07-10T10:12:41.850750", + "updated_at": "2026-07-10T10:12:41.850750", + "url": "/v1/software/microsoft-push-notification-service" +} diff --git a/site/public/v1/software/microsoft-reader/index.json b/site/public/v1/software/microsoft-reader/index.json new file mode 100644 index 000000000000..0471b8aab235 --- /dev/null +++ b/site/public/v1/software/microsoft-reader/index.json @@ -0,0 +1,25 @@ +{ + "id": 6168, + "slug": "microsoft-reader", + "name": "Microsoft Reader", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "Microsoft end-user license agreement" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1584816" + ], + "created_at": "2026-07-10T10:12:41.850750", + "updated_at": "2026-07-10T10:12:41.850750", + "url": "/v1/software/microsoft-reader" +} diff --git a/site/public/v1/software/microsoft-robotics-developer-studio/index.json b/site/public/v1/software/microsoft-robotics-developer-studio/index.json new file mode 100644 index 000000000000..7e47d9b3b53d --- /dev/null +++ b/site/public/v1/software/microsoft-robotics-developer-studio/index.json @@ -0,0 +1,21 @@ +{ + "id": 6169, + "slug": "microsoft-robotics-developer-studio", + "name": "Microsoft Robotics Developer Studio", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1931636" + ], + "created_at": "2026-07-10T10:12:41.850750", + "updated_at": "2026-07-10T10:12:41.850750", + "url": "/v1/software/microsoft-robotics-developer-studio" +} diff --git a/site/public/v1/software/microsoft-seal/index.json b/site/public/v1/software/microsoft-seal/index.json new file mode 100644 index 000000000000..c5301d97ef76 --- /dev/null +++ b/site/public/v1/software/microsoft-seal/index.json @@ -0,0 +1,21 @@ +{ + "id": 6170, + "slug": "microsoft-seal", + "name": "Microsoft SEAL", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q85785305" + ], + "created_at": "2026-07-10T10:12:41.851889", + "updated_at": "2026-07-10T10:12:41.851889", + "url": "/v1/software/microsoft-seal" +} diff --git a/site/public/v1/software/microsoft-security-copilot/index.json b/site/public/v1/software/microsoft-security-copilot/index.json new file mode 100644 index 000000000000..2ef4f7c31078 --- /dev/null +++ b/site/public/v1/software/microsoft-security-copilot/index.json @@ -0,0 +1,21 @@ +{ + "id": 6171, + "slug": "microsoft-security-copilot", + "name": "Microsoft Security Copilot", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135235332" + ], + "created_at": "2026-07-10T10:12:41.851889", + "updated_at": "2026-07-10T10:12:41.851889", + "url": "/v1/software/microsoft-security-copilot" +} diff --git a/site/public/v1/software/microsoft-sharepoint-2010/index.json b/site/public/v1/software/microsoft-sharepoint-2010/index.json new file mode 100644 index 000000000000..f4ec6c3bdf1b --- /dev/null +++ b/site/public/v1/software/microsoft-sharepoint-2010/index.json @@ -0,0 +1,21 @@ +{ + "id": 6172, + "slug": "microsoft-sharepoint-2010", + "name": "Microsoft SharePoint 2010", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115117191" + ], + "created_at": "2026-07-10T10:12:41.851889", + "updated_at": "2026-07-10T10:12:41.851889", + "url": "/v1/software/microsoft-sharepoint-2010" +} diff --git a/site/public/v1/software/microsoft-sharepoint-foundation-2010/index.json b/site/public/v1/software/microsoft-sharepoint-foundation-2010/index.json new file mode 100644 index 000000000000..380499a6f95b --- /dev/null +++ b/site/public/v1/software/microsoft-sharepoint-foundation-2010/index.json @@ -0,0 +1,21 @@ +{ + "id": 6173, + "slug": "microsoft-sharepoint-foundation-2010", + "name": "Microsoft SharePoint Foundation 2010", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115117189" + ], + "created_at": "2026-07-10T10:12:41.852942", + "updated_at": "2026-07-10T10:12:41.852942", + "url": "/v1/software/microsoft-sharepoint-foundation-2010" +} diff --git a/site/public/v1/software/microsoft-sharepoint-foundation/index.json b/site/public/v1/software/microsoft-sharepoint-foundation/index.json new file mode 100644 index 000000000000..a02f7b077c75 --- /dev/null +++ b/site/public/v1/software/microsoft-sharepoint-foundation/index.json @@ -0,0 +1,19 @@ +{ + "id": 6174, + "slug": "microsoft-sharepoint-foundation", + "name": "Microsoft SharePoint Foundation", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1587784" + ], + "created_at": "2026-07-10T10:12:41.852942", + "updated_at": "2026-07-10T10:12:41.852942", + "url": "/v1/software/microsoft-sharepoint-foundation" +} diff --git a/site/public/v1/software/microsoft-site-server/index.json b/site/public/v1/software/microsoft-site-server/index.json new file mode 100644 index 000000000000..d969713c3e87 --- /dev/null +++ b/site/public/v1/software/microsoft-site-server/index.json @@ -0,0 +1,21 @@ +{ + "id": 6175, + "slug": "microsoft-site-server", + "name": "Microsoft Site Server", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6840221" + ], + "created_at": "2026-07-10T10:12:41.852942", + "updated_at": "2026-07-10T10:12:41.852942", + "url": "/v1/software/microsoft-site-server" +} diff --git a/site/public/v1/software/microsoft-sort/index.json b/site/public/v1/software/microsoft-sort/index.json new file mode 100644 index 000000000000..96ad3f6c81d7 --- /dev/null +++ b/site/public/v1/software/microsoft-sort/index.json @@ -0,0 +1,21 @@ +{ + "id": 6176, + "slug": "microsoft-sort", + "name": "Microsoft Sort", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6840225" + ], + "created_at": "2026-07-10T10:12:41.852942", + "updated_at": "2026-07-10T10:12:41.852942", + "url": "/v1/software/microsoft-sort" +} diff --git a/site/public/v1/software/microsoft-staffhub/index.json b/site/public/v1/software/microsoft-staffhub/index.json new file mode 100644 index 000000000000..fe1279f888d3 --- /dev/null +++ b/site/public/v1/software/microsoft-staffhub/index.json @@ -0,0 +1,19 @@ +{ + "id": 6177, + "slug": "microsoft-staffhub", + "name": "Microsoft StaffHub", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q39075737" + ], + "created_at": "2026-07-10T10:12:41.853953", + "updated_at": "2026-07-10T10:12:41.853953", + "url": "/v1/software/microsoft-staffhub" +} diff --git a/site/public/v1/software/microsoft-stream/index.json b/site/public/v1/software/microsoft-stream/index.json new file mode 100644 index 000000000000..c121e42a0e98 --- /dev/null +++ b/site/public/v1/software/microsoft-stream/index.json @@ -0,0 +1,21 @@ +{ + "id": 6178, + "slug": "microsoft-stream", + "name": "Microsoft Stream", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q30694375" + ], + "created_at": "2026-07-10T10:12:41.853953", + "updated_at": "2026-07-10T10:12:41.853953", + "url": "/v1/software/microsoft-stream" +} diff --git a/site/public/v1/software/microsoft-streets-trips/index.json b/site/public/v1/software/microsoft-streets-trips/index.json new file mode 100644 index 000000000000..092586f8c816 --- /dev/null +++ b/site/public/v1/software/microsoft-streets-trips/index.json @@ -0,0 +1,21 @@ +{ + "id": 6179, + "slug": "microsoft-streets-trips", + "name": "Microsoft Streets & Trips", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3857024" + ], + "created_at": "2026-07-10T10:12:41.854952", + "updated_at": "2026-07-10T10:12:41.854952", + "url": "/v1/software/microsoft-streets-trips" +} diff --git a/site/public/v1/software/microsoft-student/index.json b/site/public/v1/software/microsoft-student/index.json new file mode 100644 index 000000000000..814c8a8380d8 --- /dev/null +++ b/site/public/v1/software/microsoft-student/index.json @@ -0,0 +1,23 @@ +{ + "id": 6180, + "slug": "microsoft-student", + "name": "Microsoft Student", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2394058" + ], + "created_at": "2026-07-10T10:12:41.854952", + "updated_at": "2026-07-10T10:12:41.854952", + "url": "/v1/software/microsoft-student" +} diff --git a/site/public/v1/software/microsoft-surface/index.json b/site/public/v1/software/microsoft-surface/index.json new file mode 100644 index 000000000000..c226508e67b9 --- /dev/null +++ b/site/public/v1/software/microsoft-surface/index.json @@ -0,0 +1,21 @@ +{ + "id": 6181, + "slug": "microsoft-surface", + "name": "Microsoft Surface", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q947428" + ], + "created_at": "2026-07-10T10:12:41.854952", + "updated_at": "2026-07-10T10:12:41.854952", + "url": "/v1/software/microsoft-surface" +} diff --git a/site/public/v1/software/microsoft-theme-packager/index.json b/site/public/v1/software/microsoft-theme-packager/index.json new file mode 100644 index 000000000000..156ad7d8e450 --- /dev/null +++ b/site/public/v1/software/microsoft-theme-packager/index.json @@ -0,0 +1,21 @@ +{ + "id": 6182, + "slug": "microsoft-theme-packager", + "name": "Microsoft Theme Packager", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123296099" + ], + "created_at": "2026-07-10T10:12:41.854952", + "updated_at": "2026-07-10T10:12:41.854952", + "url": "/v1/software/microsoft-theme-packager" +} diff --git a/site/public/v1/software/microsoft-tv/index.json b/site/public/v1/software/microsoft-tv/index.json new file mode 100644 index 000000000000..d347435aa645 --- /dev/null +++ b/site/public/v1/software/microsoft-tv/index.json @@ -0,0 +1,19 @@ +{ + "id": 6183, + "slug": "microsoft-tv", + "name": "Microsoft TV", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q15995305" + ], + "created_at": "2026-07-10T10:12:41.855995", + "updated_at": "2026-07-10T10:12:41.855995", + "url": "/v1/software/microsoft-tv" +} diff --git a/site/public/v1/software/microsoft-undelete-for-windows/index.json b/site/public/v1/software/microsoft-undelete-for-windows/index.json new file mode 100644 index 000000000000..4debe0e06931 --- /dev/null +++ b/site/public/v1/software/microsoft-undelete-for-windows/index.json @@ -0,0 +1,19 @@ +{ + "id": 6184, + "slug": "microsoft-undelete-for-windows", + "name": "Microsoft Undelete for Windows", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123048143" + ], + "created_at": "2026-07-10T10:12:41.855995", + "updated_at": "2026-07-10T10:12:41.855995", + "url": "/v1/software/microsoft-undelete-for-windows" +} diff --git a/site/public/v1/software/microsoft-v-chat/index.json b/site/public/v1/software/microsoft-v-chat/index.json new file mode 100644 index 000000000000..b888c9e55281 --- /dev/null +++ b/site/public/v1/software/microsoft-v-chat/index.json @@ -0,0 +1,19 @@ +{ + "id": 6185, + "slug": "microsoft-v-chat", + "name": "Microsoft V-Chat", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6840241" + ], + "created_at": "2026-07-10T10:12:41.855995", + "updated_at": "2026-07-10T10:12:41.855995", + "url": "/v1/software/microsoft-v-chat" +} diff --git a/site/public/v1/software/microsoft-vine/index.json b/site/public/v1/software/microsoft-vine/index.json new file mode 100644 index 000000000000..31da4983706a --- /dev/null +++ b/site/public/v1/software/microsoft-vine/index.json @@ -0,0 +1,19 @@ +{ + "id": 6186, + "slug": "microsoft-vine", + "name": "Microsoft Vine", + "release_date": "2009-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q9303048" + ], + "created_at": "2026-07-10T10:12:41.856990", + "updated_at": "2026-07-10T10:12:41.856990", + "url": "/v1/software/microsoft-vine" +} diff --git a/site/public/v1/software/microsoft-virtual-pc/index.json b/site/public/v1/software/microsoft-virtual-pc/index.json new file mode 100644 index 000000000000..82a1668a9a1c --- /dev/null +++ b/site/public/v1/software/microsoft-virtual-pc/index.json @@ -0,0 +1,19 @@ +{ + "id": 6187, + "slug": "microsoft-virtual-pc", + "name": "Microsoft Virtual PC", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q15908125" + ], + "created_at": "2026-07-10T10:12:41.856990", + "updated_at": "2026-07-10T10:12:41.856990", + "url": "/v1/software/microsoft-virtual-pc" +} diff --git a/site/public/v1/software/microsoft-visio-2003/index.json b/site/public/v1/software/microsoft-visio-2003/index.json new file mode 100644 index 000000000000..b272f11d1780 --- /dev/null +++ b/site/public/v1/software/microsoft-visio-2003/index.json @@ -0,0 +1,21 @@ +{ + "id": 6188, + "slug": "microsoft-visio-2003", + "name": "Microsoft Visio 2003", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115117158" + ], + "created_at": "2026-07-10T10:12:41.856990", + "updated_at": "2026-07-10T10:12:41.856990", + "url": "/v1/software/microsoft-visio-2003" +} diff --git a/site/public/v1/software/microsoft-visio-2007/index.json b/site/public/v1/software/microsoft-visio-2007/index.json new file mode 100644 index 000000000000..c7f06c51dce0 --- /dev/null +++ b/site/public/v1/software/microsoft-visio-2007/index.json @@ -0,0 +1,21 @@ +{ + "id": 6189, + "slug": "microsoft-visio-2007", + "name": "Microsoft Visio 2007", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115117172" + ], + "created_at": "2026-07-10T10:12:41.856990", + "updated_at": "2026-07-10T10:12:41.856990", + "url": "/v1/software/microsoft-visio-2007" +} diff --git a/site/public/v1/software/microsoft-visio-2010/index.json b/site/public/v1/software/microsoft-visio-2010/index.json new file mode 100644 index 000000000000..a93109f5d861 --- /dev/null +++ b/site/public/v1/software/microsoft-visio-2010/index.json @@ -0,0 +1,21 @@ +{ + "id": 6190, + "slug": "microsoft-visio-2010", + "name": "Microsoft Visio 2010", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115117184" + ], + "created_at": "2026-07-10T10:12:41.858007", + "updated_at": "2026-07-10T10:12:41.858007", + "url": "/v1/software/microsoft-visio-2010" +} diff --git a/site/public/v1/software/microsoft-visio-2013/index.json b/site/public/v1/software/microsoft-visio-2013/index.json new file mode 100644 index 000000000000..60b8f5784fa4 --- /dev/null +++ b/site/public/v1/software/microsoft-visio-2013/index.json @@ -0,0 +1,21 @@ +{ + "id": 6191, + "slug": "microsoft-visio-2013", + "name": "Microsoft Visio 2013", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115117202" + ], + "created_at": "2026-07-10T10:12:41.858007", + "updated_at": "2026-07-10T10:12:41.858007", + "url": "/v1/software/microsoft-visio-2013" +} diff --git a/site/public/v1/software/microsoft-visio-5-0/index.json b/site/public/v1/software/microsoft-visio-5-0/index.json new file mode 100644 index 000000000000..a3ff3f564c08 --- /dev/null +++ b/site/public/v1/software/microsoft-visio-5-0/index.json @@ -0,0 +1,21 @@ +{ + "id": 6192, + "slug": "microsoft-visio-5-0", + "name": "Microsoft Visio 5.0", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115117132" + ], + "created_at": "2026-07-10T10:12:41.858990", + "updated_at": "2026-07-10T10:12:41.858990", + "url": "/v1/software/microsoft-visio-5-0" +} diff --git a/site/public/v1/software/microsoft-visual-c-1-0/index.json b/site/public/v1/software/microsoft-visual-c-1-0/index.json new file mode 100644 index 000000000000..8c6b5c8357d4 --- /dev/null +++ b/site/public/v1/software/microsoft-visual-c-1-0/index.json @@ -0,0 +1,21 @@ +{ + "id": 6193, + "slug": "microsoft-visual-c-1-0", + "name": "Microsoft Visual C++ 1.0", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115117145" + ], + "created_at": "2026-07-10T10:12:41.858990", + "updated_at": "2026-07-10T10:12:41.858990", + "url": "/v1/software/microsoft-visual-c-1-0" +} diff --git a/site/public/v1/software/microsoft-visual-c-5-0/index.json b/site/public/v1/software/microsoft-visual-c-5-0/index.json new file mode 100644 index 000000000000..ea841fed0829 --- /dev/null +++ b/site/public/v1/software/microsoft-visual-c-5-0/index.json @@ -0,0 +1,21 @@ +{ + "id": 6194, + "slug": "microsoft-visual-c-5-0", + "name": "Microsoft Visual C++ 5.0", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115117147" + ], + "created_at": "2026-07-10T10:12:41.858990", + "updated_at": "2026-07-10T10:12:41.858990", + "url": "/v1/software/microsoft-visual-c-5-0" +} diff --git a/site/public/v1/software/microsoft-visual-c-6-0/index.json b/site/public/v1/software/microsoft-visual-c-6-0/index.json new file mode 100644 index 000000000000..e02225093cc6 --- /dev/null +++ b/site/public/v1/software/microsoft-visual-c-6-0/index.json @@ -0,0 +1,21 @@ +{ + "id": 6195, + "slug": "microsoft-visual-c-6-0", + "name": "Microsoft Visual C++ 6.0", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115117148" + ], + "created_at": "2026-07-10T10:12:41.858990", + "updated_at": "2026-07-10T10:12:41.858990", + "url": "/v1/software/microsoft-visual-c-6-0" +} diff --git a/site/public/v1/software/microsoft-visual-c-net/index.json b/site/public/v1/software/microsoft-visual-c-net/index.json new file mode 100644 index 000000000000..4d5b67b72296 --- /dev/null +++ b/site/public/v1/software/microsoft-visual-c-net/index.json @@ -0,0 +1,21 @@ +{ + "id": 6196, + "slug": "microsoft-visual-c-net", + "name": "Microsoft Visual C++.NET", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115117149" + ], + "created_at": "2026-07-10T10:12:41.859973", + "updated_at": "2026-07-10T10:12:41.859973", + "url": "/v1/software/microsoft-visual-c-net" +} diff --git a/site/public/v1/software/microsoft-visual-foxpro-3-0/index.json b/site/public/v1/software/microsoft-visual-foxpro-3-0/index.json new file mode 100644 index 000000000000..ad679a8ead8c --- /dev/null +++ b/site/public/v1/software/microsoft-visual-foxpro-3-0/index.json @@ -0,0 +1,21 @@ +{ + "id": 6197, + "slug": "microsoft-visual-foxpro-3-0", + "name": "Microsoft Visual FoxPro 3.0", + "release_date": "1995-06-01", + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115117115" + ], + "created_at": "2026-07-10T10:12:41.859973", + "updated_at": "2026-07-10T10:12:41.859973", + "url": "/v1/software/microsoft-visual-foxpro-3-0" +} diff --git a/site/public/v1/software/microsoft-visual-foxpro-5-0/index.json b/site/public/v1/software/microsoft-visual-foxpro-5-0/index.json new file mode 100644 index 000000000000..f9fbe701d99d --- /dev/null +++ b/site/public/v1/software/microsoft-visual-foxpro-5-0/index.json @@ -0,0 +1,21 @@ +{ + "id": 6198, + "slug": "microsoft-visual-foxpro-5-0", + "name": "Microsoft Visual FoxPro 5.0", + "release_date": "1996-10-01", + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115117116" + ], + "created_at": "2026-07-10T10:12:41.859973", + "updated_at": "2026-07-10T10:12:41.859973", + "url": "/v1/software/microsoft-visual-foxpro-5-0" +} diff --git a/site/public/v1/software/microsoft-visual-foxpro-6-0/index.json b/site/public/v1/software/microsoft-visual-foxpro-6-0/index.json new file mode 100644 index 000000000000..cccecaa59df5 --- /dev/null +++ b/site/public/v1/software/microsoft-visual-foxpro-6-0/index.json @@ -0,0 +1,21 @@ +{ + "id": 6199, + "slug": "microsoft-visual-foxpro-6-0", + "name": "Microsoft Visual FoxPro 6.0", + "release_date": "1998-05-18", + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115117117" + ], + "created_at": "2026-07-10T10:12:41.860993", + "updated_at": "2026-07-10T10:12:41.860993", + "url": "/v1/software/microsoft-visual-foxpro-6-0" +} diff --git a/site/public/v1/software/microsoft-visual-foxpro-7-0/index.json b/site/public/v1/software/microsoft-visual-foxpro-7-0/index.json new file mode 100644 index 000000000000..ee361703fff0 --- /dev/null +++ b/site/public/v1/software/microsoft-visual-foxpro-7-0/index.json @@ -0,0 +1,21 @@ +{ + "id": 6200, + "slug": "microsoft-visual-foxpro-7-0", + "name": "Microsoft Visual FoxPro 7.0", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115117140" + ], + "created_at": "2026-07-10T10:12:41.860993", + "updated_at": "2026-07-10T10:12:41.860993", + "url": "/v1/software/microsoft-visual-foxpro-7-0" +} diff --git a/site/public/v1/software/microsoft-visual-foxpro/index.json b/site/public/v1/software/microsoft-visual-foxpro/index.json new file mode 100644 index 000000000000..56ca809d95f5 --- /dev/null +++ b/site/public/v1/software/microsoft-visual-foxpro/index.json @@ -0,0 +1,21 @@ +{ + "id": 6201, + "slug": "microsoft-visual-foxpro", + "name": "Microsoft Visual FoxPro", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115117138" + ], + "created_at": "2026-07-10T10:12:41.860993", + "updated_at": "2026-07-10T10:12:41.860993", + "url": "/v1/software/microsoft-visual-foxpro" +} diff --git a/site/public/v1/software/microsoft-visual-modeler/index.json b/site/public/v1/software/microsoft-visual-modeler/index.json new file mode 100644 index 000000000000..45f341d840f0 --- /dev/null +++ b/site/public/v1/software/microsoft-visual-modeler/index.json @@ -0,0 +1,23 @@ +{ + "id": 6202, + "slug": "microsoft-visual-modeler", + "name": "Microsoft Visual Modeler", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122779187" + ], + "created_at": "2026-07-10T10:12:41.861972", + "updated_at": "2026-07-10T10:12:41.861972", + "url": "/v1/software/microsoft-visual-modeler" +} diff --git a/site/public/v1/software/microsoft-visual-sourcesafe/index.json b/site/public/v1/software/microsoft-visual-sourcesafe/index.json new file mode 100644 index 000000000000..b4ee5c5de4e4 --- /dev/null +++ b/site/public/v1/software/microsoft-visual-sourcesafe/index.json @@ -0,0 +1,23 @@ +{ + "id": 6203, + "slug": "microsoft-visual-sourcesafe", + "name": "Microsoft Visual SourceSafe", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1542670" + ], + "created_at": "2026-07-10T10:12:41.861972", + "updated_at": "2026-07-10T10:12:41.861972", + "url": "/v1/software/microsoft-visual-sourcesafe" +} diff --git a/site/public/v1/software/microsoft-visual-studio-2008/index.json b/site/public/v1/software/microsoft-visual-studio-2008/index.json new file mode 100644 index 000000000000..5a5b3b84b7b4 --- /dev/null +++ b/site/public/v1/software/microsoft-visual-studio-2008/index.json @@ -0,0 +1,21 @@ +{ + "id": 6204, + "slug": "microsoft-visual-studio-2008", + "name": "Microsoft Visual Studio 2008", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115117177" + ], + "created_at": "2026-07-10T10:12:41.861972", + "updated_at": "2026-07-10T10:12:41.861972", + "url": "/v1/software/microsoft-visual-studio-2008" +} diff --git a/site/public/v1/software/microsoft-visual-studio-2010/index.json b/site/public/v1/software/microsoft-visual-studio-2010/index.json new file mode 100644 index 000000000000..0761e8188871 --- /dev/null +++ b/site/public/v1/software/microsoft-visual-studio-2010/index.json @@ -0,0 +1,21 @@ +{ + "id": 6205, + "slug": "microsoft-visual-studio-2010", + "name": "Microsoft Visual Studio 2010", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115117178" + ], + "created_at": "2026-07-10T10:12:41.861972", + "updated_at": "2026-07-10T10:12:41.861972", + "url": "/v1/software/microsoft-visual-studio-2010" +} diff --git a/site/public/v1/software/microsoft-visual-studio-2017/index.json b/site/public/v1/software/microsoft-visual-studio-2017/index.json new file mode 100644 index 000000000000..94ae10a42d74 --- /dev/null +++ b/site/public/v1/software/microsoft-visual-studio-2017/index.json @@ -0,0 +1,21 @@ +{ + "id": 6206, + "slug": "microsoft-visual-studio-2017", + "name": "Microsoft Visual Studio 2017", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115117206" + ], + "created_at": "2026-07-10T10:12:41.862991", + "updated_at": "2026-07-10T10:12:41.862991", + "url": "/v1/software/microsoft-visual-studio-2017" +} diff --git a/site/public/v1/software/microsoft-visual-studio-lightswitch/index.json b/site/public/v1/software/microsoft-visual-studio-lightswitch/index.json new file mode 100644 index 000000000000..932248e5ac1e --- /dev/null +++ b/site/public/v1/software/microsoft-visual-studio-lightswitch/index.json @@ -0,0 +1,21 @@ +{ + "id": 6207, + "slug": "microsoft-visual-studio-lightswitch", + "name": "Microsoft Visual Studio LightSwitch", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4052747" + ], + "created_at": "2026-07-10T10:12:41.862991", + "updated_at": "2026-07-10T10:12:41.862991", + "url": "/v1/software/microsoft-visual-studio-lightswitch" +} diff --git a/site/public/v1/software/microsoft-visual-studio-net/index.json b/site/public/v1/software/microsoft-visual-studio-net/index.json new file mode 100644 index 000000000000..a1e96fc7eca7 --- /dev/null +++ b/site/public/v1/software/microsoft-visual-studio-net/index.json @@ -0,0 +1,21 @@ +{ + "id": 6208, + "slug": "microsoft-visual-studio-net", + "name": "Microsoft Visual Studio .NET", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115117154" + ], + "created_at": "2026-07-10T10:12:41.862991", + "updated_at": "2026-07-10T10:12:41.862991", + "url": "/v1/software/microsoft-visual-studio-net" +} diff --git a/site/public/v1/software/microsoft-vizact/index.json b/site/public/v1/software/microsoft-vizact/index.json new file mode 100644 index 000000000000..604eb2a8918d --- /dev/null +++ b/site/public/v1/software/microsoft-vizact/index.json @@ -0,0 +1,21 @@ +{ + "id": 6209, + "slug": "microsoft-vizact", + "name": "Microsoft Vizact", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6840250" + ], + "created_at": "2026-07-10T10:12:41.863986", + "updated_at": "2026-07-10T10:12:41.863986", + "url": "/v1/software/microsoft-vizact" +} diff --git a/site/public/v1/software/microsoft-voice-command/index.json b/site/public/v1/software/microsoft-voice-command/index.json new file mode 100644 index 000000000000..adb4e17804bf --- /dev/null +++ b/site/public/v1/software/microsoft-voice-command/index.json @@ -0,0 +1,21 @@ +{ + "id": 6210, + "slug": "microsoft-voice-command", + "name": "Microsoft Voice Command", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3857028" + ], + "created_at": "2026-07-10T10:12:41.863986", + "updated_at": "2026-07-10T10:12:41.863986", + "url": "/v1/software/microsoft-voice-command" +} diff --git a/site/public/v1/software/microsoft-wallet/index.json b/site/public/v1/software/microsoft-wallet/index.json new file mode 100644 index 000000000000..0c6f7341d6d5 --- /dev/null +++ b/site/public/v1/software/microsoft-wallet/index.json @@ -0,0 +1,23 @@ +{ + "id": 6211, + "slug": "microsoft-wallet", + "name": "Microsoft Wallet", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [ + "Windows 10 Mobile" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q24807477" + ], + "created_at": "2026-07-10T10:12:41.863986", + "updated_at": "2026-07-10T10:12:41.863986", + "url": "/v1/software/microsoft-wallet" +} diff --git a/site/public/v1/software/microsoft-web-platform-installer/index.json b/site/public/v1/software/microsoft-web-platform-installer/index.json new file mode 100644 index 000000000000..a0200625603b --- /dev/null +++ b/site/public/v1/software/microsoft-web-platform-installer/index.json @@ -0,0 +1,23 @@ +{ + "id": 6212, + "slug": "microsoft-web-platform-installer", + "name": "Microsoft Web Platform Installer", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q976637" + ], + "created_at": "2026-07-10T10:12:41.863986", + "updated_at": "2026-07-10T10:12:41.863986", + "url": "/v1/software/microsoft-web-platform-installer" +} diff --git a/site/public/v1/software/microsoft-whiteboard/index.json b/site/public/v1/software/microsoft-whiteboard/index.json new file mode 100644 index 000000000000..2ab449a43528 --- /dev/null +++ b/site/public/v1/software/microsoft-whiteboard/index.json @@ -0,0 +1,21 @@ +{ + "id": 6213, + "slug": "microsoft-whiteboard", + "name": "Microsoft Whiteboard", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110549385" + ], + "created_at": "2026-07-10T10:12:41.864970", + "updated_at": "2026-07-10T10:12:41.864970", + "url": "/v1/software/microsoft-whiteboard" +} diff --git a/site/public/v1/software/microsoft-word-97/index.json b/site/public/v1/software/microsoft-word-97/index.json new file mode 100644 index 000000000000..79191e53ab53 --- /dev/null +++ b/site/public/v1/software/microsoft-word-97/index.json @@ -0,0 +1,19 @@ +{ + "id": 6214, + "slug": "microsoft-word-97", + "name": "Microsoft Word 97", + "release_date": "1996-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q97782987" + ], + "created_at": "2026-07-10T10:12:41.864970", + "updated_at": "2026-07-10T10:12:41.864970", + "url": "/v1/software/microsoft-word-97" +} diff --git a/site/public/v1/software/microsoft-word-viewer/index.json b/site/public/v1/software/microsoft-word-viewer/index.json new file mode 100644 index 000000000000..7b11be366a20 --- /dev/null +++ b/site/public/v1/software/microsoft-word-viewer/index.json @@ -0,0 +1,23 @@ +{ + "id": 6215, + "slug": "microsoft-word-viewer", + "name": "Microsoft Word Viewer", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6840267" + ], + "created_at": "2026-07-10T10:12:41.864970", + "updated_at": "2026-07-10T10:12:41.864970", + "url": "/v1/software/microsoft-word-viewer" +} diff --git a/site/public/v1/software/microsoft-works-4-0/index.json b/site/public/v1/software/microsoft-works-4-0/index.json new file mode 100644 index 000000000000..5574a4bea1fd --- /dev/null +++ b/site/public/v1/software/microsoft-works-4-0/index.json @@ -0,0 +1,21 @@ +{ + "id": 6216, + "slug": "microsoft-works-4-0", + "name": "Microsoft Works 4.0", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115117120" + ], + "created_at": "2026-07-10T10:12:41.865966", + "updated_at": "2026-07-10T10:12:41.865966", + "url": "/v1/software/microsoft-works-4-0" +} diff --git a/site/public/v1/software/microstation/index.json b/site/public/v1/software/microstation/index.json new file mode 100644 index 000000000000..f7f270910569 --- /dev/null +++ b/site/public/v1/software/microstation/index.json @@ -0,0 +1,25 @@ +{ + "id": 6217, + "slug": "microstation", + "name": "MicroStation", + "release_date": null, + "developers": [ + "Bentley Systems" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [ + "computer-aided design" + ], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1348042" + ], + "created_at": "2026-07-10T10:12:41.865966", + "updated_at": "2026-07-10T10:12:41.865966", + "url": "/v1/software/microstation" +} diff --git a/site/public/v1/software/microstrategy-analytics/index.json b/site/public/v1/software/microstrategy-analytics/index.json new file mode 100644 index 000000000000..b0ecb7d34514 --- /dev/null +++ b/site/public/v1/software/microstrategy-analytics/index.json @@ -0,0 +1,21 @@ +{ + "id": 6218, + "slug": "microstrategy-analytics", + "name": "MicroStrategy Analytics", + "release_date": null, + "developers": [ + "Strategy" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18344572" + ], + "created_at": "2026-07-10T10:12:41.865966", + "updated_at": "2026-07-10T10:12:41.865966", + "url": "/v1/software/microstrategy-analytics" +} diff --git a/site/public/v1/software/microxwin/index.json b/site/public/v1/software/microxwin/index.json new file mode 100644 index 000000000000..17ae9560c7ec --- /dev/null +++ b/site/public/v1/software/microxwin/index.json @@ -0,0 +1,19 @@ +{ + "id": 6219, + "slug": "microxwin", + "name": "MicroXwin", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4044193" + ], + "created_at": "2026-07-10T10:12:41.865966", + "updated_at": "2026-07-10T10:12:41.865966", + "url": "/v1/software/microxwin" +} diff --git a/site/public/v1/software/midaco/index.json b/site/public/v1/software/midaco/index.json new file mode 100644 index 000000000000..474af8698f4f --- /dev/null +++ b/site/public/v1/software/midaco/index.json @@ -0,0 +1,19 @@ +{ + "id": 6220, + "slug": "midaco", + "name": "MIDACO", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28402293" + ], + "created_at": "2026-07-10T10:12:41.866997", + "updated_at": "2026-07-10T10:12:41.866997", + "url": "/v1/software/midaco" +} diff --git a/site/public/v1/software/midas-technical-analysis/index.json b/site/public/v1/software/midas-technical-analysis/index.json new file mode 100644 index 000000000000..916cfd81f837 --- /dev/null +++ b/site/public/v1/software/midas-technical-analysis/index.json @@ -0,0 +1,19 @@ +{ + "id": 6221, + "slug": "midas-technical-analysis", + "name": "MIDAS technical analysis", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q30590341" + ], + "created_at": "2026-07-10T10:12:41.866997", + "updated_at": "2026-07-10T10:12:41.866997", + "url": "/v1/software/midas-technical-analysis" +} diff --git a/site/public/v1/software/midasai/index.json b/site/public/v1/software/midasai/index.json new file mode 100644 index 000000000000..42374c74f576 --- /dev/null +++ b/site/public/v1/software/midasai/index.json @@ -0,0 +1,19 @@ +{ + "id": 6222, + "slug": "midasai", + "name": "MidasAI", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138945830" + ], + "created_at": "2026-07-10T10:12:41.866997", + "updated_at": "2026-07-10T10:12:41.866997", + "url": "/v1/software/midasai" +} diff --git a/site/public/v1/software/midaswww/index.json b/site/public/v1/software/midaswww/index.json new file mode 100644 index 000000000000..e6c640776e3e --- /dev/null +++ b/site/public/v1/software/midaswww/index.json @@ -0,0 +1,19 @@ +{ + "id": 6223, + "slug": "midaswww", + "name": "MidasWWW", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3312610" + ], + "created_at": "2026-07-10T10:12:41.867977", + "updated_at": "2026-07-10T10:12:41.867977", + "url": "/v1/software/midaswww" +} diff --git a/site/public/v1/software/middleware-for-robotic-applications/index.json b/site/public/v1/software/middleware-for-robotic-applications/index.json new file mode 100644 index 000000000000..273023ba83dd --- /dev/null +++ b/site/public/v1/software/middleware-for-robotic-applications/index.json @@ -0,0 +1,21 @@ +{ + "id": 6224, + "slug": "middleware-for-robotic-applications", + "name": "Middleware for Robotic Applications", + "release_date": null, + "developers": [ + "MetraLabs GmbH" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6842137" + ], + "created_at": "2026-07-10T10:12:41.867977", + "updated_at": "2026-07-10T10:12:41.867977", + "url": "/v1/software/middleware-for-robotic-applications" +} diff --git a/site/public/v1/software/midijam/index.json b/site/public/v1/software/midijam/index.json new file mode 100644 index 000000000000..d3cf0bb9b981 --- /dev/null +++ b/site/public/v1/software/midijam/index.json @@ -0,0 +1,19 @@ +{ + "id": 6225, + "slug": "midijam", + "name": "MIDIJam", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6716003" + ], + "created_at": "2026-07-10T10:12:41.867977", + "updated_at": "2026-07-10T10:12:41.867977", + "url": "/v1/software/midijam" +} diff --git a/site/public/v1/software/midipoet/index.json b/site/public/v1/software/midipoet/index.json new file mode 100644 index 000000000000..afa4b61e7964 --- /dev/null +++ b/site/public/v1/software/midipoet/index.json @@ -0,0 +1,21 @@ +{ + "id": 6226, + "slug": "midipoet", + "name": "MIDIpoet", + "release_date": "2002-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Visual Basic" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125535673" + ], + "created_at": "2026-07-10T10:12:41.868974", + "updated_at": "2026-07-10T10:12:41.868974", + "url": "/v1/software/midipoet" +} diff --git a/site/public/v1/software/miga-data-viewer/index.json b/site/public/v1/software/miga-data-viewer/index.json new file mode 100644 index 000000000000..7cb0e3c6137f --- /dev/null +++ b/site/public/v1/software/miga-data-viewer/index.json @@ -0,0 +1,23 @@ +{ + "id": 6227, + "slug": "miga-data-viewer", + "name": "Miga Data Viewer", + "release_date": "2013-07-19", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "PHP" + ], + "licenses": [ + "GNU General Public License, version 3.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105838459" + ], + "created_at": "2026-07-10T10:12:41.868974", + "updated_at": "2026-07-10T10:12:41.868974", + "url": "/v1/software/miga-data-viewer" +} diff --git a/site/public/v1/software/migration-assistant/index.json b/site/public/v1/software/migration-assistant/index.json new file mode 100644 index 000000000000..3559220574dd --- /dev/null +++ b/site/public/v1/software/migration-assistant/index.json @@ -0,0 +1,23 @@ +{ + "id": 6228, + "slug": "migration-assistant", + "name": "Migration Assistant", + "release_date": null, + "developers": [ + "Apple Inc." + ], + "publishers": [], + "operating_systems": [ + "macOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3625656" + ], + "created_at": "2026-07-10T10:12:41.868974", + "updated_at": "2026-07-10T10:12:41.868974", + "url": "/v1/software/migration-assistant" +} diff --git a/site/public/v1/software/miiget/index.json b/site/public/v1/software/miiget/index.json new file mode 100644 index 000000000000..553657ec41a3 --- /dev/null +++ b/site/public/v1/software/miiget/index.json @@ -0,0 +1,19 @@ +{ + "id": 6229, + "slug": "miiget", + "name": "Miiget", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085119" + ], + "created_at": "2026-07-10T10:12:41.869966", + "updated_at": "2026-07-10T10:12:41.869966", + "url": "/v1/software/miiget" +} diff --git a/site/public/v1/software/mika-vm/index.json b/site/public/v1/software/mika-vm/index.json new file mode 100644 index 000000000000..044758dce11b --- /dev/null +++ b/site/public/v1/software/mika-vm/index.json @@ -0,0 +1,23 @@ +{ + "id": 6230, + "slug": "mika-vm", + "name": "Mika VM", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "cross-platform" + ], + "programming_languages": [], + "licenses": [ + "permissive free software license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17143372" + ], + "created_at": "2026-07-10T10:12:41.869966", + "updated_at": "2026-07-10T10:12:41.869966", + "url": "/v1/software/mika-vm" +} diff --git a/site/public/v1/software/mikandi/index.json b/site/public/v1/software/mikandi/index.json new file mode 100644 index 000000000000..7d8b4624a12b --- /dev/null +++ b/site/public/v1/software/mikandi/index.json @@ -0,0 +1,19 @@ +{ + "id": 6231, + "slug": "mikandi", + "name": "MiKandi", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16927732" + ], + "created_at": "2026-07-10T10:12:41.869966", + "updated_at": "2026-07-10T10:12:41.869966", + "url": "/v1/software/mikandi" +} diff --git a/site/public/v1/software/mikbug/index.json b/site/public/v1/software/mikbug/index.json new file mode 100644 index 000000000000..d63880f3f5d8 --- /dev/null +++ b/site/public/v1/software/mikbug/index.json @@ -0,0 +1,19 @@ +{ + "id": 6232, + "slug": "mikbug", + "name": "MIKBUG", + "release_date": "1974-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113288821" + ], + "created_at": "2026-07-10T10:12:41.869966", + "updated_at": "2026-07-10T10:12:41.869966", + "url": "/v1/software/mikbug" +} diff --git a/site/public/v1/software/mike-21/index.json b/site/public/v1/software/mike-21/index.json new file mode 100644 index 000000000000..3526e8501284 --- /dev/null +++ b/site/public/v1/software/mike-21/index.json @@ -0,0 +1,19 @@ +{ + "id": 6233, + "slug": "mike-21", + "name": "MIKE 21", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6716058" + ], + "created_at": "2026-07-10T10:12:41.870981", + "updated_at": "2026-07-10T10:12:41.870981", + "url": "/v1/software/mike-21" +} diff --git a/site/public/v1/software/miki/index.json b/site/public/v1/software/miki/index.json new file mode 100644 index 000000000000..0a76877841a3 --- /dev/null +++ b/site/public/v1/software/miki/index.json @@ -0,0 +1,19 @@ +{ + "id": 6234, + "slug": "miki", + "name": "Miki", + "release_date": "2009-12-04", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11242971" + ], + "created_at": "2026-07-10T10:12:41.870981", + "updated_at": "2026-07-10T10:12:41.870981", + "url": "/v1/software/miki" +} diff --git a/site/public/v1/software/mikrosim/index.json b/site/public/v1/software/mikrosim/index.json new file mode 100644 index 000000000000..6b125af60981 --- /dev/null +++ b/site/public/v1/software/mikrosim/index.json @@ -0,0 +1,23 @@ +{ + "id": 6235, + "slug": "mikrosim", + "name": "MikroSim", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [ + "Visual Basic" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1933827" + ], + "created_at": "2026-07-10T10:12:41.871967", + "updated_at": "2026-07-10T10:12:41.871967", + "url": "/v1/software/mikrosim" +} diff --git a/site/public/v1/software/mildom/index.json b/site/public/v1/software/mildom/index.json new file mode 100644 index 000000000000..1fe95a4ceab5 --- /dev/null +++ b/site/public/v1/software/mildom/index.json @@ -0,0 +1,19 @@ +{ + "id": 6236, + "slug": "mildom", + "name": "Mildom", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q98101125" + ], + "created_at": "2026-07-10T10:12:41.871967", + "updated_at": "2026-07-10T10:12:41.871967", + "url": "/v1/software/mildom" +} diff --git a/site/public/v1/software/miles-sound-system/index.json b/site/public/v1/software/miles-sound-system/index.json new file mode 100644 index 000000000000..2227b161b0d1 --- /dev/null +++ b/site/public/v1/software/miles-sound-system/index.json @@ -0,0 +1,23 @@ +{ + "id": 6237, + "slug": "miles-sound-system", + "name": "Miles Sound System", + "release_date": null, + "developers": [ + "Epic Games Tools" + ], + "publishers": [], + "operating_systems": [ + "cross-platform" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1934665" + ], + "created_at": "2026-07-10T10:12:41.871967", + "updated_at": "2026-07-10T10:12:41.871967", + "url": "/v1/software/miles-sound-system" +} diff --git a/site/public/v1/software/milestones-professional/index.json b/site/public/v1/software/milestones-professional/index.json new file mode 100644 index 000000000000..883e146439a3 --- /dev/null +++ b/site/public/v1/software/milestones-professional/index.json @@ -0,0 +1,19 @@ +{ + "id": 6238, + "slug": "milestones-professional", + "name": "Milestones Professional", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6851624" + ], + "created_at": "2026-07-10T10:12:41.871967", + "updated_at": "2026-07-10T10:12:41.871967", + "url": "/v1/software/milestones-professional" +} diff --git a/site/public/v1/software/milkshape-3d/index.json b/site/public/v1/software/milkshape-3d/index.json new file mode 100644 index 000000000000..038b9c074610 --- /dev/null +++ b/site/public/v1/software/milkshape-3d/index.json @@ -0,0 +1,19 @@ +{ + "id": 6239, + "slug": "milkshape-3d", + "name": "MilkShape 3D", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q862029" + ], + "created_at": "2026-07-10T10:12:41.872958", + "updated_at": "2026-07-10T10:12:41.872958", + "url": "/v1/software/milkshape-3d" +} diff --git a/site/public/v1/software/millennium-exchange/index.json b/site/public/v1/software/millennium-exchange/index.json new file mode 100644 index 000000000000..d7f1b9d07aab --- /dev/null +++ b/site/public/v1/software/millennium-exchange/index.json @@ -0,0 +1,21 @@ +{ + "id": 6240, + "slug": "millennium-exchange", + "name": "Millennium Exchange", + "release_date": null, + "developers": [ + "London Stock Exchange Group" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16253927" + ], + "created_at": "2026-07-10T10:12:41.872958", + "updated_at": "2026-07-10T10:12:41.872958", + "url": "/v1/software/millennium-exchange" +} diff --git a/site/public/v1/software/milvus/index.json b/site/public/v1/software/milvus/index.json new file mode 100644 index 000000000000..34dc91db2484 --- /dev/null +++ b/site/public/v1/software/milvus/index.json @@ -0,0 +1,19 @@ +{ + "id": 6241, + "slug": "milvus", + "name": "Milvus", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131309655" + ], + "created_at": "2026-07-10T10:12:41.872958", + "updated_at": "2026-07-10T10:12:41.872958", + "url": "/v1/software/milvus" +} diff --git a/site/public/v1/software/mimalloc-bench/index.json b/site/public/v1/software/mimalloc-bench/index.json new file mode 100644 index 000000000000..97be5b7b0df3 --- /dev/null +++ b/site/public/v1/software/mimalloc-bench/index.json @@ -0,0 +1,25 @@ +{ + "id": 6242, + "slug": "mimalloc-bench", + "name": "mimalloc-bench", + "release_date": null, + "developers": [ + "Daan Leijen" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "shell script" + ], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124078061" + ], + "created_at": "2026-07-10T10:12:41.873974", + "updated_at": "2026-07-10T10:12:41.873974", + "url": "/v1/software/mimalloc-bench" +} diff --git a/site/public/v1/software/mimedia/index.json b/site/public/v1/software/mimedia/index.json new file mode 100644 index 000000000000..4ad0910b0b5b --- /dev/null +++ b/site/public/v1/software/mimedia/index.json @@ -0,0 +1,21 @@ +{ + "id": 6243, + "slug": "mimedia", + "name": "MiMedia", + "release_date": null, + "developers": [ + "MiMedia" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6826921" + ], + "created_at": "2026-07-10T10:12:41.873974", + "updated_at": "2026-07-10T10:12:41.873974", + "url": "/v1/software/mimedia" +} diff --git a/site/public/v1/software/mimeg/index.json b/site/public/v1/software/mimeg/index.json new file mode 100644 index 000000000000..2e5ac6923b74 --- /dev/null +++ b/site/public/v1/software/mimeg/index.json @@ -0,0 +1,26 @@ +{ + "id": 6244, + "slug": "mimeg", + "name": "MiMeG", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [ + "Java" + ], + "licenses": [ + "GNU General Public License, version 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105229752" + ], + "created_at": "2026-07-10T10:12:41.873974", + "updated_at": "2026-07-10T10:12:41.873974", + "url": "/v1/software/mimeg" +} diff --git a/site/public/v1/software/mimic-simulation-software/index.json b/site/public/v1/software/mimic-simulation-software/index.json new file mode 100644 index 000000000000..e6add30ca0aa --- /dev/null +++ b/site/public/v1/software/mimic-simulation-software/index.json @@ -0,0 +1,19 @@ +{ + "id": 6245, + "slug": "mimic-simulation-software", + "name": "MiMiC Simulation Software", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6826923" + ], + "created_at": "2026-07-10T10:12:41.873974", + "updated_at": "2026-07-10T10:12:41.873974", + "url": "/v1/software/mimic-simulation-software" +} diff --git a/site/public/v1/software/mimorian/index.json b/site/public/v1/software/mimorian/index.json new file mode 100644 index 000000000000..9ce530c95950 --- /dev/null +++ b/site/public/v1/software/mimorian/index.json @@ -0,0 +1,19 @@ +{ + "id": 6246, + "slug": "mimorian", + "name": "Mimorian", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139864656" + ], + "created_at": "2026-07-10T10:12:41.874901", + "updated_at": "2026-07-10T10:12:41.874901", + "url": "/v1/software/mimorian" +} diff --git a/site/public/v1/software/min-per-smies/index.json b/site/public/v1/software/min-per-smies/index.json new file mode 100644 index 000000000000..d4d2ae22b5bd --- /dev/null +++ b/site/public/v1/software/min-per-smies/index.json @@ -0,0 +1,19 @@ +{ + "id": 6247, + "slug": "min-per-smies", + "name": "Minä Peräsmies", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18345471" + ], + "created_at": "2026-07-10T10:12:41.874901", + "updated_at": "2026-07-10T10:12:41.874901", + "url": "/v1/software/min-per-smies" +} diff --git a/site/public/v1/software/minbar/index.json b/site/public/v1/software/minbar/index.json new file mode 100644 index 000000000000..76a1a213b951 --- /dev/null +++ b/site/public/v1/software/minbar/index.json @@ -0,0 +1,19 @@ +{ + "id": 6248, + "slug": "minbar", + "name": "Minbar", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4204736" + ], + "created_at": "2026-07-10T10:12:41.875896", + "updated_at": "2026-07-10T10:12:41.875896", + "url": "/v1/software/minbar" +} diff --git a/site/public/v1/software/minbif/index.json b/site/public/v1/software/minbif/index.json new file mode 100644 index 000000000000..62516195f605 --- /dev/null +++ b/site/public/v1/software/minbif/index.json @@ -0,0 +1,19 @@ +{ + "id": 6249, + "slug": "minbif", + "name": "Minbif", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62854227" + ], + "created_at": "2026-07-10T10:12:41.875896", + "updated_at": "2026-07-10T10:12:41.875896", + "url": "/v1/software/minbif" +} diff --git a/site/public/v1/software/mind-s-eye/index.json b/site/public/v1/software/mind-s-eye/index.json new file mode 100644 index 000000000000..659b4ce0956b --- /dev/null +++ b/site/public/v1/software/mind-s-eye/index.json @@ -0,0 +1,19 @@ +{ + "id": 6250, + "slug": "mind-s-eye", + "name": "Mind's Eye", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6863376" + ], + "created_at": "2026-07-10T10:12:41.875896", + "updated_at": "2026-07-10T10:12:41.875896", + "url": "/v1/software/mind-s-eye" +} diff --git a/site/public/v1/software/mind-vector/index.json b/site/public/v1/software/mind-vector/index.json new file mode 100644 index 000000000000..6294e5e1bea2 --- /dev/null +++ b/site/public/v1/software/mind-vector/index.json @@ -0,0 +1,19 @@ +{ + "id": 6251, + "slug": "mind-vector", + "name": "Mind Vector", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q65034554" + ], + "created_at": "2026-07-10T10:12:41.876896", + "updated_at": "2026-07-10T10:12:41.876896", + "url": "/v1/software/mind-vector" +} diff --git a/site/public/v1/software/minddecider/index.json b/site/public/v1/software/minddecider/index.json new file mode 100644 index 000000000000..1bd0012891e9 --- /dev/null +++ b/site/public/v1/software/minddecider/index.json @@ -0,0 +1,19 @@ +{ + "id": 6252, + "slug": "minddecider", + "name": "MindDecider", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q47494301" + ], + "created_at": "2026-07-10T10:12:41.876896", + "updated_at": "2026-07-10T10:12:41.876896", + "url": "/v1/software/minddecider" +} diff --git a/site/public/v1/software/mindgenius/index.json b/site/public/v1/software/mindgenius/index.json new file mode 100644 index 000000000000..123fbb8a329c --- /dev/null +++ b/site/public/v1/software/mindgenius/index.json @@ -0,0 +1,19 @@ +{ + "id": 6253, + "slug": "mindgenius", + "name": "MindGenius", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16933913" + ], + "created_at": "2026-07-10T10:12:41.876896", + "updated_at": "2026-07-10T10:12:41.876896", + "url": "/v1/software/mindgenius" +} diff --git a/site/public/v1/software/mindmanager/index.json b/site/public/v1/software/mindmanager/index.json new file mode 100644 index 000000000000..41029fb59bed --- /dev/null +++ b/site/public/v1/software/mindmanager/index.json @@ -0,0 +1,23 @@ +{ + "id": 6254, + "slug": "mindmanager", + "name": "MindManager", + "release_date": null, + "developers": [ + "Mindjet" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1397499" + ], + "created_at": "2026-07-10T10:12:41.877901", + "updated_at": "2026-07-10T10:12:41.877901", + "url": "/v1/software/mindmanager" +} diff --git a/site/public/v1/software/mindmap-lx/index.json b/site/public/v1/software/mindmap-lx/index.json new file mode 100644 index 000000000000..720da5a10dc5 --- /dev/null +++ b/site/public/v1/software/mindmap-lx/index.json @@ -0,0 +1,23 @@ +{ + "id": 6255, + "slug": "mindmap-lx", + "name": "MindMap/LX", + "release_date": null, + "developers": [ + "D&A Software" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121672430" + ], + "created_at": "2026-07-10T10:12:41.877901", + "updated_at": "2026-07-10T10:12:41.877901", + "url": "/v1/software/mindmap-lx" +} diff --git a/site/public/v1/software/mindmaple/index.json b/site/public/v1/software/mindmaple/index.json new file mode 100644 index 000000000000..2ce93b4ed7fc --- /dev/null +++ b/site/public/v1/software/mindmaple/index.json @@ -0,0 +1,19 @@ +{ + "id": 6256, + "slug": "mindmaple", + "name": "MindMaple", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q65034523" + ], + "created_at": "2026-07-10T10:12:41.877901", + "updated_at": "2026-07-10T10:12:41.877901", + "url": "/v1/software/mindmaple" +} diff --git a/site/public/v1/software/mindmapper/index.json b/site/public/v1/software/mindmapper/index.json new file mode 100644 index 000000000000..741c9ba82e5d --- /dev/null +++ b/site/public/v1/software/mindmapper/index.json @@ -0,0 +1,19 @@ +{ + "id": 6257, + "slug": "mindmapper", + "name": "MindMapper", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6863416" + ], + "created_at": "2026-07-10T10:12:41.877901", + "updated_at": "2026-07-10T10:12:41.877901", + "url": "/v1/software/mindmapper" +} diff --git a/site/public/v1/software/mindmaster/index.json b/site/public/v1/software/mindmaster/index.json new file mode 100644 index 000000000000..a0f474b9a5c6 --- /dev/null +++ b/site/public/v1/software/mindmaster/index.json @@ -0,0 +1,25 @@ +{ + "id": 6258, + "slug": "mindmaster", + "name": "MindMaster", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "iOS", + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106141910" + ], + "created_at": "2026-07-10T10:12:41.878965", + "updated_at": "2026-07-10T10:12:41.878965", + "url": "/v1/software/mindmaster" +} diff --git a/site/public/v1/software/mindmeister/index.json b/site/public/v1/software/mindmeister/index.json new file mode 100644 index 000000000000..5de35738bd37 --- /dev/null +++ b/site/public/v1/software/mindmeister/index.json @@ -0,0 +1,19 @@ +{ + "id": 6259, + "slug": "mindmeister", + "name": "MindMeister", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6863418" + ], + "created_at": "2026-07-10T10:12:41.878965", + "updated_at": "2026-07-10T10:12:41.878965", + "url": "/v1/software/mindmeister" +} diff --git a/site/public/v1/software/mindomo/index.json b/site/public/v1/software/mindomo/index.json new file mode 100644 index 000000000000..5e20732505f4 --- /dev/null +++ b/site/public/v1/software/mindomo/index.json @@ -0,0 +1,19 @@ +{ + "id": 6260, + "slug": "mindomo", + "name": "Mindomo", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6863871" + ], + "created_at": "2026-07-10T10:12:41.878965", + "updated_at": "2026-07-10T10:12:41.878965", + "url": "/v1/software/mindomo" +} diff --git a/site/public/v1/software/mindsdb/index.json b/site/public/v1/software/mindsdb/index.json new file mode 100644 index 000000000000..4f6f4cef3333 --- /dev/null +++ b/site/public/v1/software/mindsdb/index.json @@ -0,0 +1,19 @@ +{ + "id": 6261, + "slug": "mindsdb", + "name": "MindsDB", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123058723" + ], + "created_at": "2026-07-10T10:12:41.879962", + "updated_at": "2026-07-10T10:12:41.879962", + "url": "/v1/software/mindsdb" +} diff --git a/site/public/v1/software/mindview/index.json b/site/public/v1/software/mindview/index.json new file mode 100644 index 000000000000..79fa79595231 --- /dev/null +++ b/site/public/v1/software/mindview/index.json @@ -0,0 +1,19 @@ +{ + "id": 6262, + "slug": "mindview", + "name": "MindView", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1356308" + ], + "created_at": "2026-07-10T10:12:41.879962", + "updated_at": "2026-07-10T10:12:41.879962", + "url": "/v1/software/mindview" +} diff --git a/site/public/v1/software/mindwrite/index.json b/site/public/v1/software/mindwrite/index.json new file mode 100644 index 000000000000..7d9924833dde --- /dev/null +++ b/site/public/v1/software/mindwrite/index.json @@ -0,0 +1,19 @@ +{ + "id": 6263, + "slug": "mindwrite", + "name": "MindWrite", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6863427" + ], + "created_at": "2026-07-10T10:12:41.879962", + "updated_at": "2026-07-10T10:12:41.879962", + "url": "/v1/software/mindwrite" +} diff --git a/site/public/v1/software/mineral-waste-manager/index.json b/site/public/v1/software/mineral-waste-manager/index.json new file mode 100644 index 000000000000..aa391e4aa80e --- /dev/null +++ b/site/public/v1/software/mineral-waste-manager/index.json @@ -0,0 +1,19 @@ +{ + "id": 6264, + "slug": "mineral-waste-manager", + "name": "Mineral Waste Manager", + "release_date": "2021-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137584481" + ], + "created_at": "2026-07-10T10:12:41.880970", + "updated_at": "2026-07-10T10:12:41.880970", + "url": "/v1/software/mineral-waste-manager" +} diff --git a/site/public/v1/software/mineralsoft/index.json b/site/public/v1/software/mineralsoft/index.json new file mode 100644 index 000000000000..99c70072ba99 --- /dev/null +++ b/site/public/v1/software/mineralsoft/index.json @@ -0,0 +1,21 @@ +{ + "id": 6265, + "slug": "mineralsoft", + "name": "MineralSoft", + "release_date": null, + "developers": [ + "Enverus" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135263928" + ], + "created_at": "2026-07-10T10:12:41.880970", + "updated_at": "2026-07-10T10:12:41.880970", + "url": "/v1/software/mineralsoft" +} diff --git a/site/public/v1/software/minerva/index.json b/site/public/v1/software/minerva/index.json new file mode 100644 index 000000000000..3de2f7358e30 --- /dev/null +++ b/site/public/v1/software/minerva/index.json @@ -0,0 +1,19 @@ +{ + "id": 6266, + "slug": "minerva", + "name": "Minerva", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q132249204" + ], + "created_at": "2026-07-10T10:12:41.880970", + "updated_at": "2026-07-10T10:12:41.880970", + "url": "/v1/software/minerva" +} diff --git a/site/public/v1/software/minezy/index.json b/site/public/v1/software/minezy/index.json new file mode 100644 index 000000000000..41e16b327848 --- /dev/null +++ b/site/public/v1/software/minezy/index.json @@ -0,0 +1,19 @@ +{ + "id": 6267, + "slug": "minezy", + "name": "minezy", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085120" + ], + "created_at": "2026-07-10T10:12:41.881970", + "updated_at": "2026-07-10T10:12:41.881970", + "url": "/v1/software/minezy" +} diff --git a/site/public/v1/software/mingle/index.json b/site/public/v1/software/mingle/index.json new file mode 100644 index 000000000000..676dedc7621d --- /dev/null +++ b/site/public/v1/software/mingle/index.json @@ -0,0 +1,19 @@ +{ + "id": 6268, + "slug": "mingle", + "name": "Mingle", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q866035" + ], + "created_at": "2026-07-10T10:12:41.881970", + "updated_at": "2026-07-10T10:12:41.881970", + "url": "/v1/software/mingle" +} diff --git a/site/public/v1/software/mingw-w64/index.json b/site/public/v1/software/mingw-w64/index.json new file mode 100644 index 000000000000..8f31999e301f --- /dev/null +++ b/site/public/v1/software/mingw-w64/index.json @@ -0,0 +1,29 @@ +{ + "id": 6269, + "slug": "mingw-w64", + "name": "Mingw-w64", + "release_date": null, + "developers": [ + "Jonathan Yong", + "Kai Tietz", + "Jacek Caban" + ], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "GNU Library General Public License, version 2.0", + "Zope Public License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q83868416" + ], + "created_at": "2026-07-10T10:12:41.881970", + "updated_at": "2026-07-10T10:12:41.881970", + "url": "/v1/software/mingw-w64" +} diff --git a/site/public/v1/software/mini-office-ii/index.json b/site/public/v1/software/mini-office-ii/index.json new file mode 100644 index 000000000000..6bdd6121bdd8 --- /dev/null +++ b/site/public/v1/software/mini-office-ii/index.json @@ -0,0 +1,21 @@ +{ + "id": 6270, + "slug": "mini-office-ii", + "name": "Mini Office II", + "release_date": null, + "developers": [ + "Europress" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6865066" + ], + "created_at": "2026-07-10T10:12:41.882987", + "updated_at": "2026-07-10T10:12:41.882987", + "url": "/v1/software/mini-office-ii" +} diff --git a/site/public/v1/software/minicare/index.json b/site/public/v1/software/minicare/index.json new file mode 100644 index 000000000000..c6509eab65de --- /dev/null +++ b/site/public/v1/software/minicare/index.json @@ -0,0 +1,23 @@ +{ + "id": 6271, + "slug": "minicare", + "name": "Minicare", + "release_date": "1993-01-01", + "developers": [ + "Epsitec SA" + ], + "publishers": [ + "Epsitec SA" + ], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124300361" + ], + "created_at": "2026-07-10T10:12:41.882987", + "updated_at": "2026-07-10T10:12:41.882987", + "url": "/v1/software/minicare" +} diff --git a/site/public/v1/software/minidlna/index.json b/site/public/v1/software/minidlna/index.json new file mode 100644 index 000000000000..72c61e65e56a --- /dev/null +++ b/site/public/v1/software/minidlna/index.json @@ -0,0 +1,19 @@ +{ + "id": 6272, + "slug": "minidlna", + "name": "MiniDLNA", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62854216" + ], + "created_at": "2026-07-10T10:12:41.882987", + "updated_at": "2026-07-10T10:12:41.882987", + "url": "/v1/software/minidlna" +} diff --git a/site/public/v1/software/minigui/index.json b/site/public/v1/software/minigui/index.json new file mode 100644 index 000000000000..bfefc7ef3fd3 --- /dev/null +++ b/site/public/v1/software/minigui/index.json @@ -0,0 +1,19 @@ +{ + "id": 6273, + "slug": "minigui", + "name": "MiniGUI", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6864992" + ], + "created_at": "2026-07-10T10:12:41.883898", + "updated_at": "2026-07-10T10:12:41.883898", + "url": "/v1/software/minigui" +} diff --git a/site/public/v1/software/minimap2/index.json b/site/public/v1/software/minimap2/index.json new file mode 100644 index 000000000000..8f98b8087a81 --- /dev/null +++ b/site/public/v1/software/minimap2/index.json @@ -0,0 +1,19 @@ +{ + "id": 6274, + "slug": "minimap2", + "name": "minimap2", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113018356" + ], + "created_at": "2026-07-10T10:12:41.883898", + "updated_at": "2026-07-10T10:12:41.883898", + "url": "/v1/software/minimap2" +} diff --git a/site/public/v1/software/minipanzer-and-megapanzer/index.json b/site/public/v1/software/minipanzer-and-megapanzer/index.json new file mode 100644 index 000000000000..b3afb6114e0e --- /dev/null +++ b/site/public/v1/software/minipanzer-and-megapanzer/index.json @@ -0,0 +1,21 @@ +{ + "id": 6275, + "slug": "minipanzer-and-megapanzer", + "name": "MiniPanzer and MegaPanzer", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17101002" + ], + "created_at": "2026-07-10T10:12:41.883898", + "updated_at": "2026-07-10T10:12:41.883898", + "url": "/v1/software/minipanzer-and-megapanzer" +} diff --git a/site/public/v1/software/minitool-partition-wizard/index.json b/site/public/v1/software/minitool-partition-wizard/index.json new file mode 100644 index 000000000000..8df32a46937c --- /dev/null +++ b/site/public/v1/software/minitool-partition-wizard/index.json @@ -0,0 +1,21 @@ +{ + "id": 6276, + "slug": "minitool-partition-wizard", + "name": "MiniTool Partition Wizard", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q19757819" + ], + "created_at": "2026-07-10T10:12:41.883898", + "updated_at": "2026-07-10T10:12:41.883898", + "url": "/v1/software/minitool-partition-wizard" +} diff --git a/site/public/v1/software/minitsfo/index.json b/site/public/v1/software/minitsfo/index.json new file mode 100644 index 000000000000..790eb767a31f --- /dev/null +++ b/site/public/v1/software/minitsfo/index.json @@ -0,0 +1,19 @@ +{ + "id": 6277, + "slug": "minitsfo", + "name": "MiniTSFO", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6864996" + ], + "created_at": "2026-07-10T10:12:41.884963", + "updated_at": "2026-07-10T10:12:41.884963", + "url": "/v1/software/minitsfo" +} diff --git a/site/public/v1/software/minitube/index.json b/site/public/v1/software/minitube/index.json new file mode 100644 index 000000000000..f69ac1909a83 --- /dev/null +++ b/site/public/v1/software/minitube/index.json @@ -0,0 +1,21 @@ +{ + "id": 6278, + "slug": "minitube", + "name": "Minitube", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "GNU General Public License, version 3.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62854210" + ], + "created_at": "2026-07-10T10:12:41.884963", + "updated_at": "2026-07-10T10:12:41.884963", + "url": "/v1/software/minitube" +} diff --git a/site/public/v1/software/minix-vmd/index.json b/site/public/v1/software/minix-vmd/index.json new file mode 100644 index 000000000000..dcd2669e3483 --- /dev/null +++ b/site/public/v1/software/minix-vmd/index.json @@ -0,0 +1,19 @@ +{ + "id": 6279, + "slug": "minix-vmd", + "name": "Minix-vmd", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17045595" + ], + "created_at": "2026-07-10T10:12:41.885897", + "updated_at": "2026-07-10T10:12:41.885897", + "url": "/v1/software/minix-vmd" +} diff --git a/site/public/v1/software/minos/index.json b/site/public/v1/software/minos/index.json new file mode 100644 index 000000000000..6eadd26ce025 --- /dev/null +++ b/site/public/v1/software/minos/index.json @@ -0,0 +1,19 @@ +{ + "id": 6280, + "slug": "minos", + "name": "MINOS", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18351079" + ], + "created_at": "2026-07-10T10:12:41.885897", + "updated_at": "2026-07-10T10:12:41.885897", + "url": "/v1/software/minos" +} diff --git a/site/public/v1/software/minto/index.json b/site/public/v1/software/minto/index.json new file mode 100644 index 000000000000..03bfa3da033c --- /dev/null +++ b/site/public/v1/software/minto/index.json @@ -0,0 +1,21 @@ +{ + "id": 6281, + "slug": "minto", + "name": "MINTO", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6716180" + ], + "created_at": "2026-07-10T10:12:41.885897", + "updated_at": "2026-07-10T10:12:41.885897", + "url": "/v1/software/minto" +} diff --git a/site/public/v1/software/minuit/index.json b/site/public/v1/software/minuit/index.json new file mode 100644 index 000000000000..d1c10cb58488 --- /dev/null +++ b/site/public/v1/software/minuit/index.json @@ -0,0 +1,21 @@ +{ + "id": 6282, + "slug": "minuit", + "name": "MINUIT", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Fortran" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q981072" + ], + "created_at": "2026-07-10T10:12:41.886901", + "updated_at": "2026-07-10T10:12:41.886901", + "url": "/v1/software/minuit" +} diff --git a/site/public/v1/software/mioffice/index.json b/site/public/v1/software/mioffice/index.json new file mode 100644 index 000000000000..66ad8acf6700 --- /dev/null +++ b/site/public/v1/software/mioffice/index.json @@ -0,0 +1,25 @@ +{ + "id": 6283, + "slug": "mioffice", + "name": "MiOffice", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [ + "TypeScript" + ], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138635625" + ], + "created_at": "2026-07-10T10:12:41.886901", + "updated_at": "2026-07-10T10:12:41.886901", + "url": "/v1/software/mioffice" +} diff --git a/site/public/v1/software/miracl/index.json b/site/public/v1/software/miracl/index.json new file mode 100644 index 000000000000..a1e44da95b04 --- /dev/null +++ b/site/public/v1/software/miracl/index.json @@ -0,0 +1,19 @@ +{ + "id": 6284, + "slug": "miracl", + "name": "miracl", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2879233" + ], + "created_at": "2026-07-10T10:12:41.886901", + "updated_at": "2026-07-10T10:12:41.886901", + "url": "/v1/software/miracl" +} diff --git a/site/public/v1/software/mirage-world/index.json b/site/public/v1/software/mirage-world/index.json new file mode 100644 index 000000000000..6105d896c01b --- /dev/null +++ b/site/public/v1/software/mirage-world/index.json @@ -0,0 +1,19 @@ +{ + "id": 6285, + "slug": "mirage-world", + "name": "Mirage World", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q48772155" + ], + "created_at": "2026-07-10T10:12:41.886901", + "updated_at": "2026-07-10T10:12:41.887965", + "url": "/v1/software/mirage-world" +} diff --git a/site/public/v1/software/mirage2iso/index.json b/site/public/v1/software/mirage2iso/index.json new file mode 100644 index 000000000000..e3cdfe9b1926 --- /dev/null +++ b/site/public/v1/software/mirage2iso/index.json @@ -0,0 +1,19 @@ +{ + "id": 6286, + "slug": "mirage2iso", + "name": "mirage2iso", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975229" + ], + "created_at": "2026-07-10T10:12:41.887965", + "updated_at": "2026-07-10T10:12:41.887965", + "url": "/v1/software/mirage2iso" +} diff --git a/site/public/v1/software/mirageos/index.json b/site/public/v1/software/mirageos/index.json new file mode 100644 index 000000000000..9765ed993045 --- /dev/null +++ b/site/public/v1/software/mirageos/index.json @@ -0,0 +1,19 @@ +{ + "id": 6287, + "slug": "mirageos", + "name": "MirageOS", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3315841" + ], + "created_at": "2026-07-10T10:12:41.887965", + "updated_at": "2026-07-10T10:12:41.887965", + "url": "/v1/software/mirageos" +} diff --git a/site/public/v1/software/mirek-s-cellebration/index.json b/site/public/v1/software/mirek-s-cellebration/index.json new file mode 100644 index 000000000000..82cab2dcbcf4 --- /dev/null +++ b/site/public/v1/software/mirek-s-cellebration/index.json @@ -0,0 +1,24 @@ +{ + "id": 6288, + "slug": "mirek-s-cellebration", + "name": "Mirek's Cellebration", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [ + "Java", + "Delphi" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6873124" + ], + "created_at": "2026-07-10T10:12:41.887965", + "updated_at": "2026-07-10T10:12:41.887965", + "url": "/v1/software/mirek-s-cellebration" +} diff --git a/site/public/v1/software/mirmon/index.json b/site/public/v1/software/mirmon/index.json new file mode 100644 index 000000000000..48d058cff1a9 --- /dev/null +++ b/site/public/v1/software/mirmon/index.json @@ -0,0 +1,19 @@ +{ + "id": 6289, + "slug": "mirmon", + "name": "mirmon", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62854197" + ], + "created_at": "2026-07-10T10:12:41.888965", + "updated_at": "2026-07-10T10:12:41.888965", + "url": "/v1/software/mirmon" +} diff --git a/site/public/v1/software/mirrativ/index.json b/site/public/v1/software/mirrativ/index.json new file mode 100644 index 000000000000..7b2b8ddb98ab --- /dev/null +++ b/site/public/v1/software/mirrativ/index.json @@ -0,0 +1,21 @@ +{ + "id": 6290, + "slug": "mirrativ", + "name": "Mirrativ", + "release_date": null, + "developers": [ + "Mirrativ" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28684197" + ], + "created_at": "2026-07-10T10:12:41.888965", + "updated_at": "2026-07-10T10:12:41.888965", + "url": "/v1/software/mirrativ" +} diff --git a/site/public/v1/software/mirror/index.json b/site/public/v1/software/mirror/index.json new file mode 100644 index 000000000000..9ba8e47d6c75 --- /dev/null +++ b/site/public/v1/software/mirror/index.json @@ -0,0 +1,21 @@ +{ + "id": 6291, + "slug": "mirror", + "name": "Mirror", + "release_date": null, + "developers": [ + "Daniels AI Design Studio" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140374737" + ], + "created_at": "2026-07-10T10:12:41.888965", + "updated_at": "2026-07-10T10:12:41.888965", + "url": "/v1/software/mirror" +} diff --git a/site/public/v1/software/mirrorselect/index.json b/site/public/v1/software/mirrorselect/index.json new file mode 100644 index 000000000000..f37a8fb45f0c --- /dev/null +++ b/site/public/v1/software/mirrorselect/index.json @@ -0,0 +1,19 @@ +{ + "id": 6292, + "slug": "mirrorselect", + "name": "mirrorselect", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975230" + ], + "created_at": "2026-07-10T10:12:41.889971", + "updated_at": "2026-07-10T10:12:41.889971", + "url": "/v1/software/mirrorselect" +} diff --git a/site/public/v1/software/mirth-connect/index.json b/site/public/v1/software/mirth-connect/index.json new file mode 100644 index 000000000000..04c18e6dc218 --- /dev/null +++ b/site/public/v1/software/mirth-connect/index.json @@ -0,0 +1,19 @@ +{ + "id": 6293, + "slug": "mirth-connect", + "name": "Mirth Connect", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109581195" + ], + "created_at": "2026-07-10T10:12:41.889971", + "updated_at": "2026-07-10T10:12:41.889971", + "url": "/v1/software/mirth-connect" +} diff --git a/site/public/v1/software/misata/index.json b/site/public/v1/software/misata/index.json new file mode 100644 index 000000000000..beceeac2a23b --- /dev/null +++ b/site/public/v1/software/misata/index.json @@ -0,0 +1,25 @@ +{ + "id": 6294, + "slug": "misata", + "name": "Misata", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Python" + ], + "licenses": [ + "MIT License" + ], + "genres": [ + "synthetic data" + ], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140440958" + ], + "created_at": "2026-07-10T10:12:41.889971", + "updated_at": "2026-07-10T10:12:41.889971", + "url": "/v1/software/misata" +} diff --git a/site/public/v1/software/misp-threat-sharing/index.json b/site/public/v1/software/misp-threat-sharing/index.json new file mode 100644 index 000000000000..13d3180998b8 --- /dev/null +++ b/site/public/v1/software/misp-threat-sharing/index.json @@ -0,0 +1,21 @@ +{ + "id": 6295, + "slug": "misp-threat-sharing", + "name": "MISP Threat Sharing", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "PHP" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63017823" + ], + "created_at": "2026-07-10T10:12:41.889971", + "updated_at": "2026-07-10T10:12:41.889971", + "url": "/v1/software/misp-threat-sharing" +} diff --git a/site/public/v1/software/mission-control/index.json b/site/public/v1/software/mission-control/index.json new file mode 100644 index 000000000000..8f402edb1a91 --- /dev/null +++ b/site/public/v1/software/mission-control/index.json @@ -0,0 +1,21 @@ +{ + "id": 6296, + "slug": "mission-control", + "name": "Mission Control", + "release_date": null, + "developers": [ + "Apple Inc." + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4044360" + ], + "created_at": "2026-07-10T10:12:41.890975", + "updated_at": "2026-07-10T10:12:41.890975", + "url": "/v1/software/mission-control" +} diff --git a/site/public/v1/software/mistral/index.json b/site/public/v1/software/mistral/index.json new file mode 100644 index 000000000000..a0651c6a48d0 --- /dev/null +++ b/site/public/v1/software/mistral/index.json @@ -0,0 +1,19 @@ +{ + "id": 6297, + "slug": "mistral", + "name": "Mistral", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3316995" + ], + "created_at": "2026-07-10T10:12:41.890975", + "updated_at": "2026-07-10T10:12:41.890975", + "url": "/v1/software/mistral" +} diff --git a/site/public/v1/software/mit-shm/index.json b/site/public/v1/software/mit-shm/index.json new file mode 100644 index 000000000000..1a9d221ba025 --- /dev/null +++ b/site/public/v1/software/mit-shm/index.json @@ -0,0 +1,21 @@ +{ + "id": 6298, + "slug": "mit-shm", + "name": "MIT-SHM", + "release_date": null, + "developers": [ + "X.Org Foundation" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4043434" + ], + "created_at": "2026-07-10T10:12:41.890975", + "updated_at": "2026-07-10T10:12:41.890975", + "url": "/v1/software/mit-shm" +} diff --git a/site/public/v1/software/mitaka/index.json b/site/public/v1/software/mitaka/index.json new file mode 100644 index 000000000000..3f9df2c623ea --- /dev/null +++ b/site/public/v1/software/mitaka/index.json @@ -0,0 +1,21 @@ +{ + "id": 6299, + "slug": "mitaka", + "name": "Mitaka", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11233469" + ], + "created_at": "2026-07-10T10:12:41.891972", + "updated_at": "2026-07-10T10:12:41.891972", + "url": "/v1/software/mitaka" +} diff --git a/site/public/v1/software/mitap/index.json b/site/public/v1/software/mitap/index.json new file mode 100644 index 000000000000..1d384d7a4218 --- /dev/null +++ b/site/public/v1/software/mitap/index.json @@ -0,0 +1,19 @@ +{ + "id": 6300, + "slug": "mitap", + "name": "MiTAP", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6826954" + ], + "created_at": "2026-07-10T10:12:41.891972", + "updated_at": "2026-07-10T10:12:41.891972", + "url": "/v1/software/mitap" +} diff --git a/site/public/v1/software/mitid/index.json b/site/public/v1/software/mitid/index.json new file mode 100644 index 000000000000..436775940169 --- /dev/null +++ b/site/public/v1/software/mitid/index.json @@ -0,0 +1,19 @@ +{ + "id": 6301, + "slug": "mitid", + "name": "MitID", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109729154" + ], + "created_at": "2026-07-10T10:12:41.891972", + "updated_at": "2026-07-10T10:12:41.891972", + "url": "/v1/software/mitid" +} diff --git a/site/public/v1/software/mitre-syntactic-analysis-procedure/index.json b/site/public/v1/software/mitre-syntactic-analysis-procedure/index.json new file mode 100644 index 000000000000..02231fe05c93 --- /dev/null +++ b/site/public/v1/software/mitre-syntactic-analysis-procedure/index.json @@ -0,0 +1,19 @@ +{ + "id": 6302, + "slug": "mitre-syntactic-analysis-procedure", + "name": "MITRE Syntactic Analysis Procedure", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087832" + ], + "created_at": "2026-07-10T10:12:41.892976", + "updated_at": "2026-07-10T10:12:41.892976", + "url": "/v1/software/mitre-syntactic-analysis-procedure" +} diff --git a/site/public/v1/software/mitsumori-lab/index.json b/site/public/v1/software/mitsumori-lab/index.json new file mode 100644 index 000000000000..9f0b4eee1285 --- /dev/null +++ b/site/public/v1/software/mitsumori-lab/index.json @@ -0,0 +1,21 @@ +{ + "id": 6303, + "slug": "mitsumori-lab", + "name": "Mitsumori Lab", + "release_date": null, + "developers": [ + "Fu Ang" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139603414" + ], + "created_at": "2026-07-10T10:12:41.892976", + "updated_at": "2026-07-10T10:12:41.892976", + "url": "/v1/software/mitsumori-lab" +} diff --git a/site/public/v1/software/mitsurugi-kamui-hikae/index.json b/site/public/v1/software/mitsurugi-kamui-hikae/index.json new file mode 100644 index 000000000000..31b4e8fc1660 --- /dev/null +++ b/site/public/v1/software/mitsurugi-kamui-hikae/index.json @@ -0,0 +1,23 @@ +{ + "id": 6304, + "slug": "mitsurugi-kamui-hikae", + "name": "Mitsurugi Kamui Hikae", + "release_date": "2014-03-10", + "developers": [], + "publishers": [ + "Playism" + ], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [ + "hack and slash" + ], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q65088478" + ], + "created_at": "2026-07-10T10:12:41.892976", + "updated_at": "2026-07-10T10:12:41.892976", + "url": "/v1/software/mitsurugi-kamui-hikae" +} diff --git a/site/public/v1/software/mix-2-0/index.json b/site/public/v1/software/mix-2-0/index.json new file mode 100644 index 000000000000..035fcc4fbfa8 --- /dev/null +++ b/site/public/v1/software/mix-2-0/index.json @@ -0,0 +1,19 @@ +{ + "id": 6305, + "slug": "mix-2-0", + "name": "MIX 2.0", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087834" + ], + "created_at": "2026-07-10T10:12:41.893973", + "updated_at": "2026-07-10T10:12:41.893973", + "url": "/v1/software/mix-2-0" +} diff --git a/site/public/v1/software/mixbit/index.json b/site/public/v1/software/mixbit/index.json new file mode 100644 index 000000000000..7a898a55b42c --- /dev/null +++ b/site/public/v1/software/mixbit/index.json @@ -0,0 +1,25 @@ +{ + "id": 6306, + "slug": "mixbit", + "name": "MixBit", + "release_date": null, + "developers": [ + "Steve Chen" + ], + "publishers": [], + "operating_systems": [ + "iOS" + ], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q14545241" + ], + "created_at": "2026-07-10T10:12:41.893973", + "updated_at": "2026-07-10T10:12:41.893973", + "url": "/v1/software/mixbit" +} diff --git a/site/public/v1/software/mixcr/index.json b/site/public/v1/software/mixcr/index.json new file mode 100644 index 000000000000..bf4746bcc2f8 --- /dev/null +++ b/site/public/v1/software/mixcr/index.json @@ -0,0 +1,19 @@ +{ + "id": 6307, + "slug": "mixcr", + "name": "MiXCR", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113546710" + ], + "created_at": "2026-07-10T10:12:41.893973", + "updated_at": "2026-07-10T10:12:41.893973", + "url": "/v1/software/mixcr" +} diff --git a/site/public/v1/software/mixcraft/index.json b/site/public/v1/software/mixcraft/index.json new file mode 100644 index 000000000000..cff13829d07b --- /dev/null +++ b/site/public/v1/software/mixcraft/index.json @@ -0,0 +1,19 @@ +{ + "id": 6308, + "slug": "mixcraft", + "name": "Mixcraft", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6883835" + ], + "created_at": "2026-07-10T10:12:41.894967", + "updated_at": "2026-07-10T10:12:41.894967", + "url": "/v1/software/mixcraft" +} diff --git a/site/public/v1/software/mixed-reality-toolkit/index.json b/site/public/v1/software/mixed-reality-toolkit/index.json new file mode 100644 index 000000000000..d967ec8f75a4 --- /dev/null +++ b/site/public/v1/software/mixed-reality-toolkit/index.json @@ -0,0 +1,19 @@ +{ + "id": 6309, + "slug": "mixed-reality-toolkit", + "name": "Mixed Reality Toolkit", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120467737" + ], + "created_at": "2026-07-10T10:12:41.894967", + "updated_at": "2026-07-10T10:12:41.894967", + "url": "/v1/software/mixed-reality-toolkit" +} diff --git a/site/public/v1/software/mixer-app/index.json b/site/public/v1/software/mixer-app/index.json new file mode 100644 index 000000000000..a4aa4031a3ad --- /dev/null +++ b/site/public/v1/software/mixer-app/index.json @@ -0,0 +1,19 @@ +{ + "id": 6310, + "slug": "mixer-app", + "name": "Mixer (app)", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28957030" + ], + "created_at": "2026-07-10T10:12:41.894967", + "updated_at": "2026-07-10T10:12:41.894967", + "url": "/v1/software/mixer-app" +} diff --git a/site/public/v1/software/mixmaster-anonymous-remailer/index.json b/site/public/v1/software/mixmaster-anonymous-remailer/index.json new file mode 100644 index 000000000000..91706150524f --- /dev/null +++ b/site/public/v1/software/mixmaster-anonymous-remailer/index.json @@ -0,0 +1,21 @@ +{ + "id": 6311, + "slug": "mixmaster-anonymous-remailer", + "name": "Mixmaster anonymous remailer", + "release_date": null, + "developers": [ + "Len Sassaman" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q177722" + ], + "created_at": "2026-07-10T10:12:41.894967", + "updated_at": "2026-07-10T10:12:41.894967", + "url": "/v1/software/mixmaster-anonymous-remailer" +} diff --git a/site/public/v1/software/mixmax-generator/index.json b/site/public/v1/software/mixmax-generator/index.json new file mode 100644 index 000000000000..ac9207b01021 --- /dev/null +++ b/site/public/v1/software/mixmax-generator/index.json @@ -0,0 +1,19 @@ +{ + "id": 6312, + "slug": "mixmax-generator", + "name": "MIXMAX generator", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25305197" + ], + "created_at": "2026-07-10T10:12:41.895991", + "updated_at": "2026-07-10T10:12:41.895991", + "url": "/v1/software/mixmax-generator" +} diff --git a/site/public/v1/software/mixmeister/index.json b/site/public/v1/software/mixmeister/index.json new file mode 100644 index 000000000000..c97b776e1b59 --- /dev/null +++ b/site/public/v1/software/mixmeister/index.json @@ -0,0 +1,19 @@ +{ + "id": 6313, + "slug": "mixmeister", + "name": "MixMeister", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1940836" + ], + "created_at": "2026-07-10T10:12:41.895991", + "updated_at": "2026-07-10T10:12:41.895991", + "url": "/v1/software/mixmeister" +} diff --git a/site/public/v1/software/mixradio/index.json b/site/public/v1/software/mixradio/index.json new file mode 100644 index 000000000000..9114fb5a979d --- /dev/null +++ b/site/public/v1/software/mixradio/index.json @@ -0,0 +1,33 @@ +{ + "id": 6314, + "slug": "mixradio", + "name": "MixRadio", + "release_date": null, + "developers": [ + "Z Intermediate Global Corporation" + ], + "publishers": [], + "operating_systems": [ + "macOS", + "Tizen", + "Amazon Appstore", + "iOS", + "BlackBerry", + "Microsoft Windows", + "Windows 10 Mobile", + "Sonos", + "Harman Kardon", + "watchOS", + "Windows Phone" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1164682" + ], + "created_at": "2026-07-10T10:12:41.895991", + "updated_at": "2026-07-10T10:12:41.895991", + "url": "/v1/software/mixradio" +} diff --git a/site/public/v1/software/mizar/index.json b/site/public/v1/software/mizar/index.json new file mode 100644 index 000000000000..a49429edc2b1 --- /dev/null +++ b/site/public/v1/software/mizar/index.json @@ -0,0 +1,21 @@ +{ + "id": 6315, + "slug": "mizar", + "name": "Mizar", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "GNU General Public License, version 3.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1609529" + ], + "created_at": "2026-07-10T10:12:41.896973", + "updated_at": "2026-07-10T10:12:41.896973", + "url": "/v1/software/mizar" +} diff --git a/site/public/v1/software/mks-toolkit/index.json b/site/public/v1/software/mks-toolkit/index.json new file mode 100644 index 000000000000..994f6cece2ca --- /dev/null +++ b/site/public/v1/software/mks-toolkit/index.json @@ -0,0 +1,22 @@ +{ + "id": 6316, + "slug": "mks-toolkit", + "name": "MKS Toolkit", + "release_date": null, + "developers": [ + "MKS Inc.", + "Parametric Technology Corporation" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4272073" + ], + "created_at": "2026-07-10T10:12:41.896973", + "updated_at": "2026-07-10T10:12:41.896973", + "url": "/v1/software/mks-toolkit" +} diff --git a/site/public/v1/software/mlcad/index.json b/site/public/v1/software/mlcad/index.json new file mode 100644 index 000000000000..074cd8297794 --- /dev/null +++ b/site/public/v1/software/mlcad/index.json @@ -0,0 +1,19 @@ +{ + "id": 6317, + "slug": "mlcad", + "name": "MLCad", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2160848" + ], + "created_at": "2026-07-10T10:12:41.896973", + "updated_at": "2026-07-10T10:12:41.896973", + "url": "/v1/software/mlcad" +} diff --git a/site/public/v1/software/mldesigner/index.json b/site/public/v1/software/mldesigner/index.json new file mode 100644 index 000000000000..90efd7f86851 --- /dev/null +++ b/site/public/v1/software/mldesigner/index.json @@ -0,0 +1,19 @@ +{ + "id": 6318, + "slug": "mldesigner", + "name": "MLDesigner", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1881609" + ], + "created_at": "2026-07-10T10:12:41.898072", + "updated_at": "2026-07-10T10:12:41.898072", + "url": "/v1/software/mldesigner" +} diff --git a/site/public/v1/software/mlir/index.json b/site/public/v1/software/mlir/index.json new file mode 100644 index 000000000000..f59edb1182b2 --- /dev/null +++ b/site/public/v1/software/mlir/index.json @@ -0,0 +1,19 @@ +{ + "id": 6319, + "slug": "mlir", + "name": "MLIR", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120535821" + ], + "created_at": "2026-07-10T10:12:41.898072", + "updated_at": "2026-07-10T10:12:41.898072", + "url": "/v1/software/mlir" +} diff --git a/site/public/v1/software/mlmmj/index.json b/site/public/v1/software/mlmmj/index.json new file mode 100644 index 000000000000..33d490df1a44 --- /dev/null +++ b/site/public/v1/software/mlmmj/index.json @@ -0,0 +1,19 @@ +{ + "id": 6320, + "slug": "mlmmj", + "name": "mlmmj", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62854183" + ], + "created_at": "2026-07-10T10:12:41.898072", + "updated_at": "2026-07-10T10:12:41.899071", + "url": "/v1/software/mlmmj" +} diff --git a/site/public/v1/software/mlocate/index.json b/site/public/v1/software/mlocate/index.json new file mode 100644 index 000000000000..2337ab3e28fb --- /dev/null +++ b/site/public/v1/software/mlocate/index.json @@ -0,0 +1,19 @@ +{ + "id": 6321, + "slug": "mlocate", + "name": "mlocate", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62854174" + ], + "created_at": "2026-07-10T10:12:41.899071", + "updated_at": "2026-07-10T10:12:41.899071", + "url": "/v1/software/mlocate" +} diff --git a/site/public/v1/software/mlton/index.json b/site/public/v1/software/mlton/index.json new file mode 100644 index 000000000000..f886e15f7258 --- /dev/null +++ b/site/public/v1/software/mlton/index.json @@ -0,0 +1,19 @@ +{ + "id": 6322, + "slug": "mlton", + "name": "MLton", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17125754" + ], + "created_at": "2026-07-10T10:12:41.899071", + "updated_at": "2026-07-10T10:12:41.899071", + "url": "/v1/software/mlton" +} diff --git a/site/public/v1/software/mlwin/index.json b/site/public/v1/software/mlwin/index.json new file mode 100644 index 000000000000..612845b6dad8 --- /dev/null +++ b/site/public/v1/software/mlwin/index.json @@ -0,0 +1,21 @@ +{ + "id": 6323, + "slug": "mlwin", + "name": "MLwiN", + "release_date": null, + "developers": [ + "University of Bristol" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6716702" + ], + "created_at": "2026-07-10T10:12:41.899071", + "updated_at": "2026-07-10T10:12:41.899071", + "url": "/v1/software/mlwin" +} diff --git a/site/public/v1/software/mmana/index.json b/site/public/v1/software/mmana/index.json new file mode 100644 index 000000000000..63776fe44c97 --- /dev/null +++ b/site/public/v1/software/mmana/index.json @@ -0,0 +1,21 @@ +{ + "id": 6324, + "slug": "mmana", + "name": "MMANA", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5988297" + ], + "created_at": "2026-07-10T10:12:41.900081", + "updated_at": "2026-07-10T10:12:41.900081", + "url": "/v1/software/mmana" +} diff --git a/site/public/v1/software/mmax2/index.json b/site/public/v1/software/mmax2/index.json new file mode 100644 index 000000000000..3ec335c29015 --- /dev/null +++ b/site/public/v1/software/mmax2/index.json @@ -0,0 +1,19 @@ +{ + "id": 6325, + "slug": "mmax2", + "name": "MMax2", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085121" + ], + "created_at": "2026-07-10T10:12:41.900081", + "updated_at": "2026-07-10T10:12:41.900081", + "url": "/v1/software/mmax2" +} diff --git a/site/public/v1/software/mmdf/index.json b/site/public/v1/software/mmdf/index.json new file mode 100644 index 000000000000..ca8ebe530e18 --- /dev/null +++ b/site/public/v1/software/mmdf/index.json @@ -0,0 +1,19 @@ +{ + "id": 6326, + "slug": "mmdf", + "name": "MMDF", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1495193" + ], + "created_at": "2026-07-10T10:12:41.900081", + "updated_at": "2026-07-10T10:12:41.900081", + "url": "/v1/software/mmdf" +} diff --git a/site/public/v1/software/mmseqs2/index.json b/site/public/v1/software/mmseqs2/index.json new file mode 100644 index 000000000000..98623046a627 --- /dev/null +++ b/site/public/v1/software/mmseqs2/index.json @@ -0,0 +1,21 @@ +{ + "id": 6327, + "slug": "mmseqs2", + "name": "MMSeqs2", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q114840759" + ], + "created_at": "2026-07-10T10:12:41.901060", + "updated_at": "2026-07-10T10:12:41.901060", + "url": "/v1/software/mmseqs2" +} diff --git a/site/public/v1/software/mmt/index.json b/site/public/v1/software/mmt/index.json new file mode 100644 index 000000000000..1bfe7c76d6a9 --- /dev/null +++ b/site/public/v1/software/mmt/index.json @@ -0,0 +1,19 @@ +{ + "id": 6328, + "slug": "mmt", + "name": "MMT", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6716860" + ], + "created_at": "2026-07-10T10:12:41.901060", + "updated_at": "2026-07-10T10:12:41.901060", + "url": "/v1/software/mmt" +} diff --git a/site/public/v1/software/mne-python/index.json b/site/public/v1/software/mne-python/index.json new file mode 100644 index 000000000000..84a98fd2b4e0 --- /dev/null +++ b/site/public/v1/software/mne-python/index.json @@ -0,0 +1,19 @@ +{ + "id": 6329, + "slug": "mne-python", + "name": "MNE-Python", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112204836" + ], + "created_at": "2026-07-10T10:12:41.901060", + "updated_at": "2026-07-10T10:12:41.901060", + "url": "/v1/software/mne-python" +} diff --git a/site/public/v1/software/mnemomap/index.json b/site/public/v1/software/mnemomap/index.json new file mode 100644 index 000000000000..462d6192d072 --- /dev/null +++ b/site/public/v1/software/mnemomap/index.json @@ -0,0 +1,19 @@ +{ + "id": 6330, + "slug": "mnemomap", + "name": "Mnemomap", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085122" + ], + "created_at": "2026-07-10T10:12:41.902051", + "updated_at": "2026-07-10T10:12:41.902051", + "url": "/v1/software/mnemomap" +} diff --git a/site/public/v1/software/mnet/index.json b/site/public/v1/software/mnet/index.json new file mode 100644 index 000000000000..a07c125132e7 --- /dev/null +++ b/site/public/v1/software/mnet/index.json @@ -0,0 +1,19 @@ +{ + "id": 6331, + "slug": "mnet", + "name": "Mnet", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3317502" + ], + "created_at": "2026-07-10T10:12:41.902051", + "updated_at": "2026-07-10T10:12:41.902051", + "url": "/v1/software/mnet" +} diff --git a/site/public/v1/software/moab-cluster-suite/index.json b/site/public/v1/software/moab-cluster-suite/index.json new file mode 100644 index 000000000000..1cef5c4aa4ed --- /dev/null +++ b/site/public/v1/software/moab-cluster-suite/index.json @@ -0,0 +1,19 @@ +{ + "id": 6332, + "slug": "moab-cluster-suite", + "name": "Moab Cluster Suite", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6886316" + ], + "created_at": "2026-07-10T10:12:41.902051", + "updated_at": "2026-07-10T10:12:41.902051", + "url": "/v1/software/moab-cluster-suite" +} diff --git a/site/public/v1/software/mobaxterm/index.json b/site/public/v1/software/mobaxterm/index.json new file mode 100644 index 000000000000..6b7313175a32 --- /dev/null +++ b/site/public/v1/software/mobaxterm/index.json @@ -0,0 +1,21 @@ +{ + "id": 6333, + "slug": "mobaxterm", + "name": "MobaXterm", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q96632015" + ], + "created_at": "2026-07-10T10:12:41.903052", + "updated_at": "2026-07-10T10:12:41.903052", + "url": "/v1/software/mobaxterm" +} diff --git a/site/public/v1/software/mobile-code/index.json b/site/public/v1/software/mobile-code/index.json new file mode 100644 index 000000000000..bab08fa71f4d --- /dev/null +++ b/site/public/v1/software/mobile-code/index.json @@ -0,0 +1,19 @@ +{ + "id": 6334, + "slug": "mobile-code", + "name": "Mobile code", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1178131" + ], + "created_at": "2026-07-10T10:12:41.903052", + "updated_at": "2026-07-10T10:12:41.903052", + "url": "/v1/software/mobile-code" +} diff --git a/site/public/v1/software/mobile-device-management/index.json b/site/public/v1/software/mobile-device-management/index.json new file mode 100644 index 000000000000..1738d9d28d2c --- /dev/null +++ b/site/public/v1/software/mobile-device-management/index.json @@ -0,0 +1,19 @@ +{ + "id": 6335, + "slug": "mobile-device-management", + "name": "mobile device management", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q973269" + ], + "created_at": "2026-07-10T10:12:41.903052", + "updated_at": "2026-07-10T10:12:41.903052", + "url": "/v1/software/mobile-device-management" +} diff --git a/site/public/v1/software/mobile-dialer/index.json b/site/public/v1/software/mobile-dialer/index.json new file mode 100644 index 000000000000..aa571f608bd1 --- /dev/null +++ b/site/public/v1/software/mobile-dialer/index.json @@ -0,0 +1,19 @@ +{ + "id": 6336, + "slug": "mobile-dialer", + "name": "Mobile dialer", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6887104" + ], + "created_at": "2026-07-10T10:12:41.904051", + "updated_at": "2026-07-10T10:12:41.904051", + "url": "/v1/software/mobile-dialer" +} diff --git a/site/public/v1/software/mobile-market/index.json b/site/public/v1/software/mobile-market/index.json new file mode 100644 index 000000000000..4dc2e01bc918 --- /dev/null +++ b/site/public/v1/software/mobile-market/index.json @@ -0,0 +1,19 @@ +{ + "id": 6337, + "slug": "mobile-market", + "name": "Mobile Market", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q15934875" + ], + "created_at": "2026-07-10T10:12:41.904051", + "updated_at": "2026-07-10T10:12:41.904051", + "url": "/v1/software/mobile-market" +} diff --git a/site/public/v1/software/mobile-phonetools/index.json b/site/public/v1/software/mobile-phonetools/index.json new file mode 100644 index 000000000000..0c7796793124 --- /dev/null +++ b/site/public/v1/software/mobile-phonetools/index.json @@ -0,0 +1,21 @@ +{ + "id": 6338, + "slug": "mobile-phonetools", + "name": "mobile PhoneTools", + "release_date": null, + "developers": [ + "Claranova" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q9033846" + ], + "created_at": "2026-07-10T10:12:41.904051", + "updated_at": "2026-07-10T10:12:41.904051", + "url": "/v1/software/mobile-phonetools" +} diff --git a/site/public/v1/software/mobile-vocaloid-editor/index.json b/site/public/v1/software/mobile-vocaloid-editor/index.json new file mode 100644 index 000000000000..ce096cf43653 --- /dev/null +++ b/site/public/v1/software/mobile-vocaloid-editor/index.json @@ -0,0 +1,19 @@ +{ + "id": 6339, + "slug": "mobile-vocaloid-editor", + "name": "Mobile Vocaloid Editor", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22907000" + ], + "created_at": "2026-07-10T10:12:41.905057", + "updated_at": "2026-07-10T10:12:41.905057", + "url": "/v1/software/mobile-vocaloid-editor" +} diff --git a/site/public/v1/software/mobilecoin/index.json b/site/public/v1/software/mobilecoin/index.json new file mode 100644 index 000000000000..9a9da7702e82 --- /dev/null +++ b/site/public/v1/software/mobilecoin/index.json @@ -0,0 +1,24 @@ +{ + "id": 6340, + "slug": "mobilecoin", + "name": "MobileCoin", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "iOS", + "macOS" + ], + "programming_languages": [], + "licenses": [ + "GNU General Public License, version 3.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106609131" + ], + "created_at": "2026-07-10T10:12:41.905057", + "updated_at": "2026-07-10T10:12:41.905057", + "url": "/v1/software/mobilecoin" +} diff --git a/site/public/v1/software/mobiledit/index.json b/site/public/v1/software/mobiledit/index.json new file mode 100644 index 000000000000..5adc37473d1f --- /dev/null +++ b/site/public/v1/software/mobiledit/index.json @@ -0,0 +1,19 @@ +{ + "id": 6341, + "slug": "mobiledit", + "name": "MOBILedit", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6716953" + ], + "created_at": "2026-07-10T10:12:41.905057", + "updated_at": "2026-07-10T10:12:41.905057", + "url": "/v1/software/mobiledit" +} diff --git a/site/public/v1/software/mobilepay/index.json b/site/public/v1/software/mobilepay/index.json new file mode 100644 index 000000000000..3eb9460e0ab5 --- /dev/null +++ b/site/public/v1/software/mobilepay/index.json @@ -0,0 +1,21 @@ +{ + "id": 6342, + "slug": "mobilepay", + "name": "MobilePay", + "release_date": null, + "developers": [ + "Danske Bank" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16324144" + ], + "created_at": "2026-07-10T10:12:41.906050", + "updated_at": "2026-07-10T10:12:41.906050", + "url": "/v1/software/mobilepay" +} diff --git a/site/public/v1/software/mobileum/index.json b/site/public/v1/software/mobileum/index.json new file mode 100644 index 000000000000..0ab9512bd0c0 --- /dev/null +++ b/site/public/v1/software/mobileum/index.json @@ -0,0 +1,19 @@ +{ + "id": 6343, + "slug": "mobileum", + "name": "Mobileum", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107538017" + ], + "created_at": "2026-07-10T10:12:41.906050", + "updated_at": "2026-07-10T10:12:41.906050", + "url": "/v1/software/mobileum" +} diff --git a/site/public/v1/software/mobiola/index.json b/site/public/v1/software/mobiola/index.json new file mode 100644 index 000000000000..d551723b62e7 --- /dev/null +++ b/site/public/v1/software/mobiola/index.json @@ -0,0 +1,21 @@ +{ + "id": 6344, + "slug": "mobiola", + "name": "Mobiola", + "release_date": null, + "developers": [ + "SHAPE Services" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6887343" + ], + "created_at": "2026-07-10T10:12:41.906050", + "updated_at": "2026-07-10T10:12:41.906050", + "url": "/v1/software/mobiola" +} diff --git a/site/public/v1/software/mobirise/index.json b/site/public/v1/software/mobirise/index.json new file mode 100644 index 000000000000..2559e1ce3327 --- /dev/null +++ b/site/public/v1/software/mobirise/index.json @@ -0,0 +1,24 @@ +{ + "id": 6345, + "slug": "mobirise", + "name": "Mobirise", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Mac operating system", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q42266788" + ], + "created_at": "2026-07-10T10:12:41.907027", + "updated_at": "2026-07-10T10:12:41.907027", + "url": "/v1/software/mobirise" +} diff --git a/site/public/v1/software/mobis/index.json b/site/public/v1/software/mobis/index.json new file mode 100644 index 000000000000..1c805e107ce7 --- /dev/null +++ b/site/public/v1/software/mobis/index.json @@ -0,0 +1,19 @@ +{ + "id": 6346, + "slug": "mobis", + "name": "Mobis", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140202977" + ], + "created_at": "2026-07-10T10:12:41.907027", + "updated_at": "2026-07-10T10:12:41.907027", + "url": "/v1/software/mobis" +} diff --git a/site/public/v1/software/mobizen/index.json b/site/public/v1/software/mobizen/index.json new file mode 100644 index 000000000000..82e2ccd38f3f --- /dev/null +++ b/site/public/v1/software/mobizen/index.json @@ -0,0 +1,19 @@ +{ + "id": 6347, + "slug": "mobizen", + "name": "Mobizen", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q12595283" + ], + "created_at": "2026-07-10T10:12:41.907027", + "updated_at": "2026-07-10T10:12:41.907027", + "url": "/v1/software/mobizen" +} diff --git a/site/public/v1/software/mochiview/index.json b/site/public/v1/software/mochiview/index.json new file mode 100644 index 000000000000..331b186da893 --- /dev/null +++ b/site/public/v1/software/mochiview/index.json @@ -0,0 +1,23 @@ +{ + "id": 6348, + "slug": "mochiview", + "name": "MochiView", + "release_date": null, + "developers": [ + "University of California, San Francisco" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Java" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6887552" + ], + "created_at": "2026-07-10T10:12:41.907027", + "updated_at": "2026-07-10T10:12:41.907027", + "url": "/v1/software/mochiview" +} diff --git a/site/public/v1/software/mockiato/index.json b/site/public/v1/software/mockiato/index.json new file mode 100644 index 000000000000..8f125eeb5cb8 --- /dev/null +++ b/site/public/v1/software/mockiato/index.json @@ -0,0 +1,21 @@ +{ + "id": 6349, + "slug": "mockiato", + "name": "Mockiato", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q64153900" + ], + "created_at": "2026-07-10T10:12:41.908042", + "updated_at": "2026-07-10T10:12:41.908042", + "url": "/v1/software/mockiato" +} diff --git a/site/public/v1/software/mocl/index.json b/site/public/v1/software/mocl/index.json new file mode 100644 index 000000000000..44a987c7c2e6 --- /dev/null +++ b/site/public/v1/software/mocl/index.json @@ -0,0 +1,19 @@ +{ + "id": 6350, + "slug": "mocl", + "name": "Mocl", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18346317" + ], + "created_at": "2026-07-10T10:12:41.908042", + "updated_at": "2026-07-10T10:12:41.908042", + "url": "/v1/software/mocl" +} diff --git a/site/public/v1/software/mocolo/index.json b/site/public/v1/software/mocolo/index.json new file mode 100644 index 000000000000..9a679ebf8dcf --- /dev/null +++ b/site/public/v1/software/mocolo/index.json @@ -0,0 +1,19 @@ +{ + "id": 6351, + "slug": "mocolo", + "name": "Mocolo", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6887853" + ], + "created_at": "2026-07-10T10:12:41.909046", + "updated_at": "2026-07-10T10:12:41.909046", + "url": "/v1/software/mocolo" +} diff --git a/site/public/v1/software/mod4win/index.json b/site/public/v1/software/mod4win/index.json new file mode 100644 index 000000000000..7c7eb8198d42 --- /dev/null +++ b/site/public/v1/software/mod4win/index.json @@ -0,0 +1,23 @@ +{ + "id": 6352, + "slug": "mod4win", + "name": "Mod4Win", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6887939" + ], + "created_at": "2026-07-10T10:12:41.909046", + "updated_at": "2026-07-10T10:12:41.909046", + "url": "/v1/software/mod4win" +} diff --git a/site/public/v1/software/modd/index.json b/site/public/v1/software/modd/index.json new file mode 100644 index 000000000000..9b203978f38f --- /dev/null +++ b/site/public/v1/software/modd/index.json @@ -0,0 +1,21 @@ +{ + "id": 6353, + "slug": "modd", + "name": "modd", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q119520793" + ], + "created_at": "2026-07-10T10:12:41.909046", + "updated_at": "2026-07-10T10:12:41.909046", + "url": "/v1/software/modd" +} diff --git a/site/public/v1/software/mode32/index.json b/site/public/v1/software/mode32/index.json new file mode 100644 index 000000000000..80b31d772f92 --- /dev/null +++ b/site/public/v1/software/mode32/index.json @@ -0,0 +1,21 @@ +{ + "id": 6354, + "slug": "mode32", + "name": "MODE32", + "release_date": null, + "developers": [ + "Connectix" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1881665" + ], + "created_at": "2026-07-10T10:12:41.909046", + "updated_at": "2026-07-10T10:12:41.909046", + "url": "/v1/software/mode32" +} diff --git a/site/public/v1/software/modefrontier/index.json b/site/public/v1/software/modefrontier/index.json new file mode 100644 index 000000000000..d4164101e663 --- /dev/null +++ b/site/public/v1/software/modefrontier/index.json @@ -0,0 +1,19 @@ +{ + "id": 6355, + "slug": "modefrontier", + "name": "ModeFRONTIER", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113669132" + ], + "created_at": "2026-07-10T10:12:41.910056", + "updated_at": "2026-07-10T10:12:41.910056", + "url": "/v1/software/modefrontier" +} diff --git a/site/public/v1/software/model-based-analysis-for-chip-seq/index.json b/site/public/v1/software/model-based-analysis-for-chip-seq/index.json new file mode 100644 index 000000000000..939809bcd363 --- /dev/null +++ b/site/public/v1/software/model-based-analysis-for-chip-seq/index.json @@ -0,0 +1,19 @@ +{ + "id": 6356, + "slug": "model-based-analysis-for-chip-seq", + "name": "Model-based Analysis for ChIP-Seq", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113046652" + ], + "created_at": "2026-07-10T10:12:41.910056", + "updated_at": "2026-07-10T10:12:41.910056", + "url": "/v1/software/model-based-analysis-for-chip-seq" +} diff --git a/site/public/v1/software/model-development-tools-mdt/index.json b/site/public/v1/software/model-development-tools-mdt/index.json new file mode 100644 index 000000000000..a61bb1e7ee9d --- /dev/null +++ b/site/public/v1/software/model-development-tools-mdt/index.json @@ -0,0 +1,19 @@ +{ + "id": 6357, + "slug": "model-development-tools-mdt", + "name": "Model Development Tools (MDT)", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76168235" + ], + "created_at": "2026-07-10T10:12:41.911041", + "updated_at": "2026-07-10T10:12:41.911041", + "url": "/v1/software/model-development-tools-mdt" +} diff --git a/site/public/v1/software/model-for-prediction-across-scales/index.json b/site/public/v1/software/model-for-prediction-across-scales/index.json new file mode 100644 index 000000000000..5236b452cdab --- /dev/null +++ b/site/public/v1/software/model-for-prediction-across-scales/index.json @@ -0,0 +1,21 @@ +{ + "id": 6358, + "slug": "model-for-prediction-across-scales", + "name": "Model for Prediction Across Scales", + "release_date": null, + "developers": [ + "National Center for Atmospheric Research" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q23581982" + ], + "created_at": "2026-07-10T10:12:41.911041", + "updated_at": "2026-07-10T10:12:41.911041", + "url": "/v1/software/model-for-prediction-across-scales" +} diff --git a/site/public/v1/software/model-synthesis/index.json b/site/public/v1/software/model-synthesis/index.json new file mode 100644 index 000000000000..c8988f36ab1b --- /dev/null +++ b/site/public/v1/software/model-synthesis/index.json @@ -0,0 +1,19 @@ +{ + "id": 6359, + "slug": "model-synthesis", + "name": "Model synthesis", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126178117" + ], + "created_at": "2026-07-10T10:12:41.911041", + "updated_at": "2026-07-10T10:12:41.911041", + "url": "/v1/software/model-synthesis" +} diff --git a/site/public/v1/software/model-to-model-transformation-mmt/index.json b/site/public/v1/software/model-to-model-transformation-mmt/index.json new file mode 100644 index 000000000000..3b5fccb2c52e --- /dev/null +++ b/site/public/v1/software/model-to-model-transformation-mmt/index.json @@ -0,0 +1,19 @@ +{ + "id": 6360, + "slug": "model-to-model-transformation-mmt", + "name": "Model-to-Model Transformation (MMT)", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76168271" + ], + "created_at": "2026-07-10T10:12:41.911041", + "updated_at": "2026-07-10T10:12:41.911041", + "url": "/v1/software/model-to-model-transformation-mmt" +} diff --git a/site/public/v1/software/model-to-text-m2t/index.json b/site/public/v1/software/model-to-text-m2t/index.json new file mode 100644 index 000000000000..b5c0f2554d57 --- /dev/null +++ b/site/public/v1/software/model-to-text-m2t/index.json @@ -0,0 +1,19 @@ +{ + "id": 6361, + "slug": "model-to-text-m2t", + "name": "Model To Text (M2T)", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76168258" + ], + "created_at": "2026-07-10T10:12:41.911041", + "updated_at": "2026-07-10T10:12:41.911041", + "url": "/v1/software/model-to-text-m2t" +} diff --git a/site/public/v1/software/modeller/index.json b/site/public/v1/software/modeller/index.json new file mode 100644 index 000000000000..bdcb68ba922e --- /dev/null +++ b/site/public/v1/software/modeller/index.json @@ -0,0 +1,24 @@ +{ + "id": 6362, + "slug": "modeller", + "name": "MODELLER", + "release_date": null, + "developers": [ + "University of California, San Francisco" + ], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3859815" + ], + "created_at": "2026-07-10T10:12:41.912617", + "updated_at": "2026-07-10T10:12:41.912617", + "url": "/v1/software/modeller" +} diff --git a/site/public/v1/software/models-and-counter-examples/index.json b/site/public/v1/software/models-and-counter-examples/index.json new file mode 100644 index 000000000000..249fd5304804 --- /dev/null +++ b/site/public/v1/software/models-and-counter-examples/index.json @@ -0,0 +1,19 @@ +{ + "id": 6363, + "slug": "models-and-counter-examples", + "name": "Models And Counter-Examples", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16905864" + ], + "created_at": "2026-07-10T10:12:41.912617", + "updated_at": "2026-07-10T10:12:41.912617", + "url": "/v1/software/models-and-counter-examples" +} diff --git a/site/public/v1/software/modelsim/index.json b/site/public/v1/software/modelsim/index.json new file mode 100644 index 000000000000..44457be99252 --- /dev/null +++ b/site/public/v1/software/modelsim/index.json @@ -0,0 +1,19 @@ +{ + "id": 6364, + "slug": "modelsim", + "name": "ModelSim", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3317826" + ], + "created_at": "2026-07-10T10:12:41.912617", + "updated_at": "2026-07-10T10:12:41.912617", + "url": "/v1/software/modelsim" +} diff --git a/site/public/v1/software/modeltest/index.json b/site/public/v1/software/modeltest/index.json new file mode 100644 index 000000000000..5ee456eeb31f --- /dev/null +++ b/site/public/v1/software/modeltest/index.json @@ -0,0 +1,19 @@ +{ + "id": 6365, + "slug": "modeltest", + "name": "Modeltest", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112181036" + ], + "created_at": "2026-07-10T10:12:41.913717", + "updated_at": "2026-07-10T10:12:41.913717", + "url": "/v1/software/modeltest" +} diff --git a/site/public/v1/software/modelur/index.json b/site/public/v1/software/modelur/index.json new file mode 100644 index 000000000000..2c0814b73440 --- /dev/null +++ b/site/public/v1/software/modelur/index.json @@ -0,0 +1,21 @@ +{ + "id": 6366, + "slug": "modelur", + "name": "Modelur", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6888433" + ], + "created_at": "2026-07-10T10:12:41.913717", + "updated_at": "2026-07-10T10:12:41.913717", + "url": "/v1/software/modelur" +} diff --git a/site/public/v1/software/modest-maps/index.json b/site/public/v1/software/modest-maps/index.json new file mode 100644 index 000000000000..0847c14e64d9 --- /dev/null +++ b/site/public/v1/software/modest-maps/index.json @@ -0,0 +1,19 @@ +{ + "id": 6367, + "slug": "modest-maps", + "name": "Modest Maps", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085123" + ], + "created_at": "2026-07-10T10:12:41.913717", + "updated_at": "2026-07-10T10:12:41.913717", + "url": "/v1/software/modest-maps" +} diff --git a/site/public/v1/software/modflow-one-water-hydrologic-flow-model/index.json b/site/public/v1/software/modflow-one-water-hydrologic-flow-model/index.json new file mode 100644 index 000000000000..ebf10e16b9d6 --- /dev/null +++ b/site/public/v1/software/modflow-one-water-hydrologic-flow-model/index.json @@ -0,0 +1,27 @@ +{ + "id": 6368, + "slug": "modflow-one-water-hydrologic-flow-model", + "name": "MODFLOW One-Water Hydrologic Flow Model", + "release_date": null, + "developers": [ + "Scott E. Boyce" + ], + "publishers": [ + "United States Geological Survey" + ], + "operating_systems": [], + "programming_languages": [ + "Fortran" + ], + "licenses": [ + "Apache Software License 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139862877" + ], + "created_at": "2026-07-10T10:12:41.913717", + "updated_at": "2026-07-10T10:12:41.913717", + "url": "/v1/software/modflow-one-water-hydrologic-flow-model" +} diff --git a/site/public/v1/software/modul8/index.json b/site/public/v1/software/modul8/index.json new file mode 100644 index 000000000000..727fb3a3045e --- /dev/null +++ b/site/public/v1/software/modul8/index.json @@ -0,0 +1,19 @@ +{ + "id": 6369, + "slug": "modul8", + "name": "Modul8", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6889679" + ], + "created_at": "2026-07-10T10:12:41.914714", + "updated_at": "2026-07-10T10:12:41.914714", + "url": "/v1/software/modul8" +} diff --git a/site/public/v1/software/mofa-mitra/index.json b/site/public/v1/software/mofa-mitra/index.json new file mode 100644 index 000000000000..a8390914e4fd --- /dev/null +++ b/site/public/v1/software/mofa-mitra/index.json @@ -0,0 +1,19 @@ +{ + "id": 6370, + "slug": "mofa-mitra", + "name": "MoFA Mitra", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140157714" + ], + "created_at": "2026-07-10T10:12:41.914714", + "updated_at": "2026-07-10T10:12:41.914714", + "url": "/v1/software/mofa-mitra" +} diff --git a/site/public/v1/software/mogo/index.json b/site/public/v1/software/mogo/index.json new file mode 100644 index 000000000000..6429447152cd --- /dev/null +++ b/site/public/v1/software/mogo/index.json @@ -0,0 +1,21 @@ +{ + "id": 6371, + "slug": "mogo", + "name": "MoGo", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Go" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1178114" + ], + "created_at": "2026-07-10T10:12:41.915628", + "updated_at": "2026-07-10T10:12:41.915628", + "url": "/v1/software/mogo" +} diff --git a/site/public/v1/software/moj/index.json b/site/public/v1/software/moj/index.json new file mode 100644 index 000000000000..ab1450a75e7f --- /dev/null +++ b/site/public/v1/software/moj/index.json @@ -0,0 +1,21 @@ +{ + "id": 6372, + "slug": "moj", + "name": "Moj", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105713509" + ], + "created_at": "2026-07-10T10:12:41.915628", + "updated_at": "2026-07-10T10:12:41.915628", + "url": "/v1/software/moj" +} diff --git a/site/public/v1/software/mojapteczka/index.json b/site/public/v1/software/mojapteczka/index.json new file mode 100644 index 000000000000..c67b626fde30 --- /dev/null +++ b/site/public/v1/software/mojapteczka/index.json @@ -0,0 +1,26 @@ +{ + "id": 6373, + "slug": "mojapteczka", + "name": "mojApteczka", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "iOS" + ], + "programming_languages": [ + "Python", + "TypeScript", + "Kotlin", + "Swift" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139590795" + ], + "created_at": "2026-07-10T10:12:41.915628", + "updated_at": "2026-07-10T10:12:41.915628", + "url": "/v1/software/mojapteczka" +} diff --git a/site/public/v1/software/mojopac/index.json b/site/public/v1/software/mojopac/index.json new file mode 100644 index 000000000000..40144764118c --- /dev/null +++ b/site/public/v1/software/mojopac/index.json @@ -0,0 +1,19 @@ +{ + "id": 6374, + "slug": "mojopac", + "name": "MojoPac", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4382548" + ], + "created_at": "2026-07-10T10:12:41.915628", + "updated_at": "2026-07-10T10:12:41.915628", + "url": "/v1/software/mojopac" +} diff --git a/site/public/v1/software/moksha/index.json b/site/public/v1/software/moksha/index.json new file mode 100644 index 000000000000..8448f8229b08 --- /dev/null +++ b/site/public/v1/software/moksha/index.json @@ -0,0 +1,19 @@ +{ + "id": 6375, + "slug": "moksha", + "name": "Moksha", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126910575" + ], + "created_at": "2026-07-10T10:12:41.916625", + "updated_at": "2026-07-10T10:12:41.916625", + "url": "/v1/software/moksha" +} diff --git a/site/public/v1/software/molden/index.json b/site/public/v1/software/molden/index.json new file mode 100644 index 000000000000..e942105928a7 --- /dev/null +++ b/site/public/v1/software/molden/index.json @@ -0,0 +1,27 @@ +{ + "id": 6376, + "slug": "molden", + "name": "Molden", + "release_date": null, + "developers": [ + "Center for Molecular and Biomolecular Informatics" + ], + "publishers": [], + "operating_systems": [ + "IRIX", + "Solaris", + "macOS", + "Microsoft Windows", + "SunOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6895772" + ], + "created_at": "2026-07-10T10:12:41.916625", + "updated_at": "2026-07-10T10:12:41.916625", + "url": "/v1/software/molden" +} diff --git a/site/public/v1/software/molecular-evolutionary-genetics-analysis/index.json b/site/public/v1/software/molecular-evolutionary-genetics-analysis/index.json new file mode 100644 index 000000000000..7d71b48d9a8c --- /dev/null +++ b/site/public/v1/software/molecular-evolutionary-genetics-analysis/index.json @@ -0,0 +1,21 @@ +{ + "id": 6377, + "slug": "molecular-evolutionary-genetics-analysis", + "name": "Molecular Evolutionary Genetics Analysis", + "release_date": null, + "developers": [ + "Pennsylvania State University" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6715328" + ], + "created_at": "2026-07-10T10:12:41.916625", + "updated_at": "2026-07-10T10:12:41.916625", + "url": "/v1/software/molecular-evolutionary-genetics-analysis" +} diff --git a/site/public/v1/software/molecular-modelling-toolkit/index.json b/site/public/v1/software/molecular-modelling-toolkit/index.json new file mode 100644 index 000000000000..91b8ba2e7040 --- /dev/null +++ b/site/public/v1/software/molecular-modelling-toolkit/index.json @@ -0,0 +1,21 @@ +{ + "id": 6378, + "slug": "molecular-modelling-toolkit", + "name": "Molecular Modelling Toolkit", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Python" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6895969" + ], + "created_at": "2026-07-10T10:12:41.917731", + "updated_at": "2026-07-10T10:12:41.917731", + "url": "/v1/software/molecular-modelling-toolkit" +} diff --git a/site/public/v1/software/molecular-simulation-2/index.json b/site/public/v1/software/molecular-simulation-2/index.json new file mode 100644 index 000000000000..e6f46ba518a6 --- /dev/null +++ b/site/public/v1/software/molecular-simulation-2/index.json @@ -0,0 +1,19 @@ +{ + "id": 6379, + "slug": "molecular-simulation-2", + "name": "Molecular simulation 2", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108673157" + ], + "created_at": "2026-07-10T10:12:41.917731", + "updated_at": "2026-07-10T10:12:41.917731", + "url": "/v1/software/molecular-simulation-2" +} diff --git a/site/public/v1/software/molide/index.json b/site/public/v1/software/molide/index.json new file mode 100644 index 000000000000..631c196e6636 --- /dev/null +++ b/site/public/v1/software/molide/index.json @@ -0,0 +1,21 @@ +{ + "id": 6380, + "slug": "molide", + "name": "MolIDE", + "release_date": null, + "developers": [ + "Fox Chase Cancer Center" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6895623" + ], + "created_at": "2026-07-10T10:12:41.917731", + "updated_at": "2026-07-10T10:12:41.917731", + "url": "/v1/software/molide" +} diff --git a/site/public/v1/software/moltenvk/index.json b/site/public/v1/software/moltenvk/index.json new file mode 100644 index 000000000000..ab8f61305ed9 --- /dev/null +++ b/site/public/v1/software/moltenvk/index.json @@ -0,0 +1,28 @@ +{ + "id": 6381, + "slug": "moltenvk", + "name": "MoltenVK", + "release_date": null, + "developers": [ + "Bill Hollings" + ], + "publishers": [], + "operating_systems": [ + "visionOS", + "tvOS", + "iOS", + "macOS" + ], + "programming_languages": [], + "licenses": [ + "Apache Software License 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q55264041" + ], + "created_at": "2026-07-10T10:12:41.917731", + "updated_at": "2026-07-10T10:12:41.917731", + "url": "/v1/software/moltenvk" +} diff --git a/site/public/v1/software/moltos/index.json b/site/public/v1/software/moltos/index.json new file mode 100644 index 000000000000..3536acde4f3b --- /dev/null +++ b/site/public/v1/software/moltos/index.json @@ -0,0 +1,23 @@ +{ + "id": 6382, + "slug": "moltos", + "name": "MoltOS", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "TypeScript" + ], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139324203" + ], + "created_at": "2026-07-10T10:12:41.918686", + "updated_at": "2026-07-10T10:12:41.918686", + "url": "/v1/software/moltos" +} diff --git a/site/public/v1/software/moltpe/index.json b/site/public/v1/software/moltpe/index.json new file mode 100644 index 000000000000..427a07760773 --- /dev/null +++ b/site/public/v1/software/moltpe/index.json @@ -0,0 +1,19 @@ +{ + "id": 6383, + "slug": "moltpe", + "name": "MoltPe", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139667830" + ], + "created_at": "2026-07-10T10:12:41.918686", + "updated_at": "2026-07-10T10:12:41.918686", + "url": "/v1/software/moltpe" +} diff --git a/site/public/v1/software/moments/index.json b/site/public/v1/software/moments/index.json new file mode 100644 index 000000000000..857c7f7bb7c7 --- /dev/null +++ b/site/public/v1/software/moments/index.json @@ -0,0 +1,25 @@ +{ + "id": 6384, + "slug": "moments", + "name": "Moments", + "release_date": "2012-04-19", + "developers": [ + "Tencent" + ], + "publishers": [], + "operating_systems": [ + "HarmonyOS NEXT", + "iOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q21041339" + ], + "created_at": "2026-07-10T10:12:41.918686", + "updated_at": "2026-07-10T10:12:41.918686", + "url": "/v1/software/moments" +} diff --git a/site/public/v1/software/momentum/index.json b/site/public/v1/software/momentum/index.json new file mode 100644 index 000000000000..bbc6588198bf --- /dev/null +++ b/site/public/v1/software/momentum/index.json @@ -0,0 +1,19 @@ +{ + "id": 6385, + "slug": "momentum", + "name": "Momentum", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6897237" + ], + "created_at": "2026-07-10T10:12:41.919696", + "updated_at": "2026-07-10T10:12:41.919696", + "url": "/v1/software/momentum" +} diff --git a/site/public/v1/software/momo/index.json b/site/public/v1/software/momo/index.json new file mode 100644 index 000000000000..6dc244b3ab88 --- /dev/null +++ b/site/public/v1/software/momo/index.json @@ -0,0 +1,19 @@ +{ + "id": 6386, + "slug": "momo", + "name": "Momo", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6897378" + ], + "created_at": "2026-07-10T10:12:41.919696", + "updated_at": "2026-07-10T10:12:41.919696", + "url": "/v1/software/momo" +} diff --git a/site/public/v1/software/mon-80/index.json b/site/public/v1/software/mon-80/index.json new file mode 100644 index 000000000000..c96ffa6fa7bd --- /dev/null +++ b/site/public/v1/software/mon-80/index.json @@ -0,0 +1,21 @@ +{ + "id": 6387, + "slug": "mon-80", + "name": "MON-80", + "release_date": "1970-01-01", + "developers": [ + "Intel" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125882521" + ], + "created_at": "2026-07-10T10:12:41.919696", + "updated_at": "2026-07-10T10:12:41.919696", + "url": "/v1/software/mon-80" +} diff --git a/site/public/v1/software/monesa/index.json b/site/public/v1/software/monesa/index.json new file mode 100644 index 000000000000..cfc27b5c9b34 --- /dev/null +++ b/site/public/v1/software/monesa/index.json @@ -0,0 +1,19 @@ +{ + "id": 6388, + "slug": "monesa", + "name": "Monesa", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6898973" + ], + "created_at": "2026-07-10T10:12:41.920701", + "updated_at": "2026-07-10T10:12:41.920701", + "url": "/v1/software/monesa" +} diff --git a/site/public/v1/software/money/index.json b/site/public/v1/software/money/index.json new file mode 100644 index 000000000000..d486cc5edc9d --- /dev/null +++ b/site/public/v1/software/money/index.json @@ -0,0 +1,19 @@ +{ + "id": 6389, + "slug": "money", + "name": "Money", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6899099" + ], + "created_at": "2026-07-10T10:12:41.920701", + "updated_at": "2026-07-10T10:12:41.920701", + "url": "/v1/software/money" +} diff --git a/site/public/v1/software/moneydance/index.json b/site/public/v1/software/moneydance/index.json new file mode 100644 index 000000000000..b60896f3e9b8 --- /dev/null +++ b/site/public/v1/software/moneydance/index.json @@ -0,0 +1,24 @@ +{ + "id": 6390, + "slug": "moneydance", + "name": "Moneydance", + "release_date": "1997-01-01", + "developers": [], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [ + "Java" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6899316" + ], + "created_at": "2026-07-10T10:12:41.920701", + "updated_at": "2026-07-10T10:12:41.920701", + "url": "/v1/software/moneydance" +} diff --git a/site/public/v1/software/moneywiz/index.json b/site/public/v1/software/moneywiz/index.json new file mode 100644 index 000000000000..dad62d019c43 --- /dev/null +++ b/site/public/v1/software/moneywiz/index.json @@ -0,0 +1,19 @@ +{ + "id": 6391, + "slug": "moneywiz", + "name": "MoneyWiz", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16974290" + ], + "created_at": "2026-07-10T10:12:41.921707", + "updated_at": "2026-07-10T10:12:41.921707", + "url": "/v1/software/moneywiz" +} diff --git a/site/public/v1/software/mongoose-os/index.json b/site/public/v1/software/mongoose-os/index.json new file mode 100644 index 000000000000..3c303cbb61bf --- /dev/null +++ b/site/public/v1/software/mongoose-os/index.json @@ -0,0 +1,19 @@ +{ + "id": 6392, + "slug": "mongoose-os", + "name": "Mongoose OS", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q30672533" + ], + "created_at": "2026-07-10T10:12:41.921707", + "updated_at": "2026-07-10T10:12:41.921707", + "url": "/v1/software/mongoose-os" +} diff --git a/site/public/v1/software/mongoose/index.json b/site/public/v1/software/mongoose/index.json new file mode 100644 index 000000000000..7e9d341c961e --- /dev/null +++ b/site/public/v1/software/mongoose/index.json @@ -0,0 +1,21 @@ +{ + "id": 6393, + "slug": "mongoose", + "name": "Mongoose", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107481233" + ], + "created_at": "2026-07-10T10:12:41.921707", + "updated_at": "2026-07-10T10:12:41.921707", + "url": "/v1/software/mongoose" +} diff --git a/site/public/v1/software/moniwiki/index.json b/site/public/v1/software/moniwiki/index.json new file mode 100644 index 000000000000..9bc7bf5cdc03 --- /dev/null +++ b/site/public/v1/software/moniwiki/index.json @@ -0,0 +1,19 @@ +{ + "id": 6394, + "slug": "moniwiki", + "name": "MoniWiki", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q12595249" + ], + "created_at": "2026-07-10T10:12:41.922723", + "updated_at": "2026-07-10T10:12:41.922723", + "url": "/v1/software/moniwiki" +} diff --git a/site/public/v1/software/monk-project/index.json b/site/public/v1/software/monk-project/index.json new file mode 100644 index 000000000000..544ec2aa3a22 --- /dev/null +++ b/site/public/v1/software/monk-project/index.json @@ -0,0 +1,19 @@ +{ + "id": 6395, + "slug": "monk-project", + "name": "MONK Project", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087835" + ], + "created_at": "2026-07-10T10:12:41.922723", + "updated_at": "2026-07-10T10:12:41.922723", + "url": "/v1/software/monk-project" +} diff --git a/site/public/v1/software/monkeyd/index.json b/site/public/v1/software/monkeyd/index.json new file mode 100644 index 000000000000..ee7b4587e563 --- /dev/null +++ b/site/public/v1/software/monkeyd/index.json @@ -0,0 +1,21 @@ +{ + "id": 6396, + "slug": "monkeyd", + "name": "monkeyd", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Apache License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975233" + ], + "created_at": "2026-07-10T10:12:41.922723", + "updated_at": "2026-07-10T10:12:41.922723", + "url": "/v1/software/monkeyd" +} diff --git a/site/public/v1/software/monkeyjam/index.json b/site/public/v1/software/monkeyjam/index.json new file mode 100644 index 000000000000..31fe2f437e2c --- /dev/null +++ b/site/public/v1/software/monkeyjam/index.json @@ -0,0 +1,19 @@ +{ + "id": 6397, + "slug": "monkeyjam", + "name": "MonkeyJam", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139256822" + ], + "created_at": "2026-07-10T10:12:41.923695", + "updated_at": "2026-07-10T10:12:41.923695", + "url": "/v1/software/monkeyjam" +} diff --git a/site/public/v1/software/monkeysphere/index.json b/site/public/v1/software/monkeysphere/index.json new file mode 100644 index 000000000000..e7cb6447fcf6 --- /dev/null +++ b/site/public/v1/software/monkeysphere/index.json @@ -0,0 +1,19 @@ +{ + "id": 6398, + "slug": "monkeysphere", + "name": "monkeysphere", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60917168" + ], + "created_at": "2026-07-10T10:12:41.923695", + "updated_at": "2026-07-10T10:12:41.923695", + "url": "/v1/software/monkeysphere" +} diff --git a/site/public/v1/software/monobjc/index.json b/site/public/v1/software/monobjc/index.json new file mode 100644 index 000000000000..6cd8e7b2ceff --- /dev/null +++ b/site/public/v1/software/monobjc/index.json @@ -0,0 +1,19 @@ +{ + "id": 6399, + "slug": "monobjc", + "name": "Monobjc", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16974309" + ], + "created_at": "2026-07-10T10:12:41.923695", + "updated_at": "2026-07-10T10:12:41.923695", + "url": "/v1/software/monobjc" +} diff --git a/site/public/v1/software/monorail/index.json b/site/public/v1/software/monorail/index.json new file mode 100644 index 000000000000..646060f4b396 --- /dev/null +++ b/site/public/v1/software/monorail/index.json @@ -0,0 +1,21 @@ +{ + "id": 6400, + "slug": "monorail", + "name": "MonoRail", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Apache License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6901249" + ], + "created_at": "2026-07-10T10:12:41.924679", + "updated_at": "2026-07-10T10:12:41.924679", + "url": "/v1/software/monorail" +} diff --git a/site/public/v1/software/monosnap/index.json b/site/public/v1/software/monosnap/index.json new file mode 100644 index 000000000000..f2bf0a4b9bab --- /dev/null +++ b/site/public/v1/software/monosnap/index.json @@ -0,0 +1,21 @@ +{ + "id": 6401, + "slug": "monosnap", + "name": "Monosnap", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4044483" + ], + "created_at": "2026-07-10T10:12:41.924679", + "updated_at": "2026-07-10T10:12:41.924679", + "url": "/v1/software/monosnap" +} diff --git a/site/public/v1/software/montaic/index.json b/site/public/v1/software/montaic/index.json new file mode 100644 index 000000000000..5145c45b526d --- /dev/null +++ b/site/public/v1/software/montaic/index.json @@ -0,0 +1,19 @@ +{ + "id": 6402, + "slug": "montaic", + "name": "Montaic", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139260764" + ], + "created_at": "2026-07-10T10:12:41.924679", + "updated_at": "2026-07-10T10:12:41.924679", + "url": "/v1/software/montaic" +} diff --git a/site/public/v1/software/monte-carlo-n-particle-transport-code/index.json b/site/public/v1/software/monte-carlo-n-particle-transport-code/index.json new file mode 100644 index 000000000000..38a10fb18885 --- /dev/null +++ b/site/public/v1/software/monte-carlo-n-particle-transport-code/index.json @@ -0,0 +1,23 @@ +{ + "id": 6403, + "slug": "monte-carlo-n-particle-transport-code", + "name": "Monte Carlo N-Particle Transport Code", + "release_date": null, + "developers": [ + "Los Alamos National Laboratory" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Fortran" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q624414" + ], + "created_at": "2026-07-10T10:12:41.925634", + "updated_at": "2026-07-10T10:12:41.925634", + "url": "/v1/software/monte-carlo-n-particle-transport-code" +} diff --git a/site/public/v1/software/mooc-arab-world/index.json b/site/public/v1/software/mooc-arab-world/index.json new file mode 100644 index 000000000000..3c7f050e429b --- /dev/null +++ b/site/public/v1/software/mooc-arab-world/index.json @@ -0,0 +1,19 @@ +{ + "id": 6404, + "slug": "mooc-arab-world", + "name": "MOOC Arab World", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q19599715" + ], + "created_at": "2026-07-10T10:12:41.925634", + "updated_at": "2026-07-10T10:12:41.925634", + "url": "/v1/software/mooc-arab-world" +} diff --git a/site/public/v1/software/moog-model-15/index.json b/site/public/v1/software/moog-model-15/index.json new file mode 100644 index 000000000000..885cec6141df --- /dev/null +++ b/site/public/v1/software/moog-model-15/index.json @@ -0,0 +1,19 @@ +{ + "id": 6405, + "slug": "moog-model-15", + "name": "Moog Model 15", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q55641137" + ], + "created_at": "2026-07-10T10:12:41.925634", + "updated_at": "2026-07-10T10:12:41.925634", + "url": "/v1/software/moog-model-15" +} diff --git a/site/public/v1/software/moog/index.json b/site/public/v1/software/moog/index.json new file mode 100644 index 000000000000..c28d18aac368 --- /dev/null +++ b/site/public/v1/software/moog/index.json @@ -0,0 +1,21 @@ +{ + "id": 6406, + "slug": "moog", + "name": "Moog", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Fortran" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6907259" + ], + "created_at": "2026-07-10T10:12:41.925634", + "updated_at": "2026-07-10T10:12:41.925634", + "url": "/v1/software/moog" +} diff --git a/site/public/v1/software/moon-buggy/index.json b/site/public/v1/software/moon-buggy/index.json new file mode 100644 index 000000000000..28a539f2f66b --- /dev/null +++ b/site/public/v1/software/moon-buggy/index.json @@ -0,0 +1,19 @@ +{ + "id": 6407, + "slug": "moon-buggy", + "name": "Moon-Buggy", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62854100" + ], + "created_at": "2026-07-10T10:12:41.926693", + "updated_at": "2026-07-10T10:12:41.926693", + "url": "/v1/software/moon-buggy" +} diff --git a/site/public/v1/software/moon-modeler/index.json b/site/public/v1/software/moon-modeler/index.json new file mode 100644 index 000000000000..e57c276b7a8d --- /dev/null +++ b/site/public/v1/software/moon-modeler/index.json @@ -0,0 +1,21 @@ +{ + "id": 6408, + "slug": "moon-modeler", + "name": "Moon Modeler", + "release_date": null, + "developers": [ + "Ideamerit" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134961029" + ], + "created_at": "2026-07-10T10:12:41.926693", + "updated_at": "2026-07-10T10:12:41.926693", + "url": "/v1/software/moon-modeler" +} diff --git a/site/public/v1/software/moonbounce/index.json b/site/public/v1/software/moonbounce/index.json new file mode 100644 index 000000000000..12c675f6f007 --- /dev/null +++ b/site/public/v1/software/moonbounce/index.json @@ -0,0 +1,19 @@ +{ + "id": 6409, + "slug": "moonbounce", + "name": "MoonBounce", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125343301" + ], + "created_at": "2026-07-10T10:12:41.927700", + "updated_at": "2026-07-10T10:12:41.927700", + "url": "/v1/software/moonbounce" +} diff --git a/site/public/v1/software/moonshell/index.json b/site/public/v1/software/moonshell/index.json new file mode 100644 index 000000000000..6df6b56e4caf --- /dev/null +++ b/site/public/v1/software/moonshell/index.json @@ -0,0 +1,19 @@ +{ + "id": 6410, + "slug": "moonshell", + "name": "MoonShell", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1808526" + ], + "created_at": "2026-07-10T10:12:41.927700", + "updated_at": "2026-07-10T10:12:41.927700", + "url": "/v1/software/moonshell" +} diff --git a/site/public/v1/software/moosic/index.json b/site/public/v1/software/moosic/index.json new file mode 100644 index 000000000000..97b41e05e5a2 --- /dev/null +++ b/site/public/v1/software/moosic/index.json @@ -0,0 +1,19 @@ +{ + "id": 6411, + "slug": "moosic", + "name": "Moosic", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62863521" + ], + "created_at": "2026-07-10T10:12:41.927700", + "updated_at": "2026-07-10T10:12:41.927700", + "url": "/v1/software/moosic" +} diff --git a/site/public/v1/software/moovit/index.json b/site/public/v1/software/moovit/index.json new file mode 100644 index 000000000000..0f6a98ad3ec0 --- /dev/null +++ b/site/public/v1/software/moovit/index.json @@ -0,0 +1,19 @@ +{ + "id": 6412, + "slug": "moovit", + "name": "Moovit", + "release_date": "2011-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16336073" + ], + "created_at": "2026-07-10T10:12:41.927700", + "updated_at": "2026-07-10T10:12:41.927700", + "url": "/v1/software/moovit" +} diff --git a/site/public/v1/software/moovnt/index.json b/site/public/v1/software/moovnt/index.json new file mode 100644 index 000000000000..179f907cef5d --- /dev/null +++ b/site/public/v1/software/moovnt/index.json @@ -0,0 +1,19 @@ +{ + "id": 6413, + "slug": "moovnt", + "name": "Moovnt", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139963554" + ], + "created_at": "2026-07-10T10:12:41.928696", + "updated_at": "2026-07-10T10:12:41.928696", + "url": "/v1/software/moovnt" +} diff --git a/site/public/v1/software/mop-com/index.json b/site/public/v1/software/mop-com/index.json new file mode 100644 index 000000000000..a3e451317de8 --- /dev/null +++ b/site/public/v1/software/mop-com/index.json @@ -0,0 +1,19 @@ +{ + "id": 6414, + "slug": "mop-com", + "name": "Mop.com", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6908766" + ], + "created_at": "2026-07-10T10:12:41.928696", + "updated_at": "2026-07-10T10:12:41.928696", + "url": "/v1/software/mop-com" +} diff --git a/site/public/v1/software/mopo/index.json b/site/public/v1/software/mopo/index.json new file mode 100644 index 000000000000..b58fb9becfee --- /dev/null +++ b/site/public/v1/software/mopo/index.json @@ -0,0 +1,19 @@ +{ + "id": 6415, + "slug": "mopo", + "name": "Mopo", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q12716948" + ], + "created_at": "2026-07-10T10:12:41.929626", + "updated_at": "2026-07-10T10:12:41.929626", + "url": "/v1/software/mopo" +} diff --git a/site/public/v1/software/moqui/index.json b/site/public/v1/software/moqui/index.json new file mode 100644 index 000000000000..51b06f940723 --- /dev/null +++ b/site/public/v1/software/moqui/index.json @@ -0,0 +1,23 @@ +{ + "id": 6416, + "slug": "moqui", + "name": "Moqui", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Java" + ], + "licenses": [ + "Creative Commons CC0 License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22907047" + ], + "created_at": "2026-07-10T10:12:41.929626", + "updated_at": "2026-07-10T10:12:41.929626", + "url": "/v1/software/moqui" +} diff --git a/site/public/v1/software/more/index.json b/site/public/v1/software/more/index.json new file mode 100644 index 000000000000..3ee19df83b22 --- /dev/null +++ b/site/public/v1/software/more/index.json @@ -0,0 +1,23 @@ +{ + "id": 6417, + "slug": "more", + "name": "MORE", + "release_date": "1986-01-01", + "developers": [ + "Dave Winer" + ], + "publishers": [], + "operating_systems": [ + "Classic Mac OS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6717104" + ], + "created_at": "2026-07-10T10:12:41.929626", + "updated_at": "2026-07-10T10:12:41.929626", + "url": "/v1/software/more" +} diff --git a/site/public/v1/software/moreutils/index.json b/site/public/v1/software/moreutils/index.json new file mode 100644 index 000000000000..4c3ef9f3459a --- /dev/null +++ b/site/public/v1/software/moreutils/index.json @@ -0,0 +1,19 @@ +{ + "id": 6418, + "slug": "moreutils", + "name": "moreutils", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62853994" + ], + "created_at": "2026-07-10T10:12:41.929626", + "updated_at": "2026-07-10T10:12:41.929626", + "url": "/v1/software/moreutils" +} diff --git a/site/public/v1/software/morfeusz-2/index.json b/site/public/v1/software/morfeusz-2/index.json new file mode 100644 index 000000000000..73133ca6f26f --- /dev/null +++ b/site/public/v1/software/morfeusz-2/index.json @@ -0,0 +1,19 @@ +{ + "id": 6419, + "slug": "morfeusz-2", + "name": "Morfeusz 2", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087836" + ], + "created_at": "2026-07-10T10:12:41.930630", + "updated_at": "2026-07-10T10:12:41.930630", + "url": "/v1/software/morfeusz-2" +} diff --git a/site/public/v1/software/morla/index.json b/site/public/v1/software/morla/index.json new file mode 100644 index 000000000000..8d2fe91fb049 --- /dev/null +++ b/site/public/v1/software/morla/index.json @@ -0,0 +1,19 @@ +{ + "id": 6420, + "slug": "morla", + "name": "Morla", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105745582" + ], + "created_at": "2026-07-10T10:12:41.930630", + "updated_at": "2026-07-10T10:12:41.930630", + "url": "/v1/software/morla" +} diff --git a/site/public/v1/software/morning-coffee/index.json b/site/public/v1/software/morning-coffee/index.json new file mode 100644 index 000000000000..ea997f75d088 --- /dev/null +++ b/site/public/v1/software/morning-coffee/index.json @@ -0,0 +1,21 @@ +{ + "id": 6421, + "slug": "morning-coffee", + "name": "Morning Coffee", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Mozilla Public License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6912796" + ], + "created_at": "2026-07-10T10:12:41.931629", + "updated_at": "2026-07-10T10:12:41.931629", + "url": "/v1/software/morning-coffee" +} diff --git a/site/public/v1/software/morphadorner/index.json b/site/public/v1/software/morphadorner/index.json new file mode 100644 index 000000000000..e3943638d9ac --- /dev/null +++ b/site/public/v1/software/morphadorner/index.json @@ -0,0 +1,19 @@ +{ + "id": 6422, + "slug": "morphadorner", + "name": "MorphAdorner", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085124" + ], + "created_at": "2026-07-10T10:12:41.934624", + "updated_at": "2026-07-10T10:12:41.934624", + "url": "/v1/software/morphadorner" +} diff --git a/site/public/v1/software/morpheus/index.json b/site/public/v1/software/morpheus/index.json new file mode 100644 index 000000000000..2db220962e0e --- /dev/null +++ b/site/public/v1/software/morpheus/index.json @@ -0,0 +1,19 @@ +{ + "id": 6423, + "slug": "morpheus", + "name": "Morpheus", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6913396" + ], + "created_at": "2026-07-10T10:12:41.937627", + "updated_at": "2026-07-10T10:12:41.937627", + "url": "/v1/software/morpheus" +} diff --git a/site/public/v1/software/morphgear/index.json b/site/public/v1/software/morphgear/index.json new file mode 100644 index 000000000000..d80ebd3f704b --- /dev/null +++ b/site/public/v1/software/morphgear/index.json @@ -0,0 +1,19 @@ +{ + "id": 6424, + "slug": "morphgear", + "name": "MorphGear", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6913349" + ], + "created_at": "2026-07-10T10:12:41.937627", + "updated_at": "2026-07-10T10:12:41.937627", + "url": "/v1/software/morphgear" +} diff --git a/site/public/v1/software/morphobank/index.json b/site/public/v1/software/morphobank/index.json new file mode 100644 index 000000000000..7a623dc62745 --- /dev/null +++ b/site/public/v1/software/morphobank/index.json @@ -0,0 +1,19 @@ +{ + "id": 6425, + "slug": "morphobank", + "name": "Morphobank", + "release_date": "2001-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6913429" + ], + "created_at": "2026-07-10T10:12:41.937627", + "updated_at": "2026-07-10T10:12:41.937627", + "url": "/v1/software/morphobank" +} diff --git a/site/public/v1/software/mosdac/index.json b/site/public/v1/software/mosdac/index.json new file mode 100644 index 000000000000..cfbac5d4f32d --- /dev/null +++ b/site/public/v1/software/mosdac/index.json @@ -0,0 +1,21 @@ +{ + "id": 6426, + "slug": "mosdac", + "name": "MOSDAC", + "release_date": "2006-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q23777540" + ], + "created_at": "2026-07-10T10:12:41.938631", + "updated_at": "2026-07-10T10:12:41.938631", + "url": "/v1/software/mosdac" +} diff --git a/site/public/v1/software/mosek/index.json b/site/public/v1/software/mosek/index.json new file mode 100644 index 000000000000..5febda9e4bc7 --- /dev/null +++ b/site/public/v1/software/mosek/index.json @@ -0,0 +1,19 @@ +{ + "id": 6427, + "slug": "mosek", + "name": "MOSEK", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6717127" + ], + "created_at": "2026-07-10T10:12:41.938631", + "updated_at": "2026-07-10T10:12:41.938631", + "url": "/v1/software/mosek" +} diff --git a/site/public/v1/software/moserial/index.json b/site/public/v1/software/moserial/index.json new file mode 100644 index 000000000000..e2633f4c07ff --- /dev/null +++ b/site/public/v1/software/moserial/index.json @@ -0,0 +1,19 @@ +{ + "id": 6428, + "slug": "moserial", + "name": "moserial", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63064984" + ], + "created_at": "2026-07-10T10:12:41.939628", + "updated_at": "2026-07-10T10:12:41.939628", + "url": "/v1/software/moserial" +} diff --git a/site/public/v1/software/mosix/index.json b/site/public/v1/software/mosix/index.json new file mode 100644 index 000000000000..c13228ebef7d --- /dev/null +++ b/site/public/v1/software/mosix/index.json @@ -0,0 +1,19 @@ +{ + "id": 6429, + "slug": "mosix", + "name": "MOSIX", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q658388" + ], + "created_at": "2026-07-10T10:12:41.939628", + "updated_at": "2026-07-10T10:12:41.939628", + "url": "/v1/software/mosix" +} diff --git a/site/public/v1/software/motherboard-monitor/index.json b/site/public/v1/software/motherboard-monitor/index.json new file mode 100644 index 000000000000..3244cc7e3240 --- /dev/null +++ b/site/public/v1/software/motherboard-monitor/index.json @@ -0,0 +1,23 @@ +{ + "id": 6430, + "slug": "motherboard-monitor", + "name": "Motherboard Monitor", + "release_date": "1998-01-21", + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q967858" + ], + "created_at": "2026-07-10T10:12:41.939628", + "updated_at": "2026-07-10T10:12:41.939628", + "url": "/v1/software/motherboard-monitor" +} diff --git a/site/public/v1/software/motherduck/index.json b/site/public/v1/software/motherduck/index.json new file mode 100644 index 000000000000..acb11cf302c7 --- /dev/null +++ b/site/public/v1/software/motherduck/index.json @@ -0,0 +1,19 @@ +{ + "id": 6431, + "slug": "motherduck", + "name": "MotherDuck", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138190192" + ], + "created_at": "2026-07-10T10:12:41.939628", + "updated_at": "2026-07-10T10:12:41.939628", + "url": "/v1/software/motherduck" +} diff --git a/site/public/v1/software/motor-cad/index.json b/site/public/v1/software/motor-cad/index.json new file mode 100644 index 000000000000..367e03ce328c --- /dev/null +++ b/site/public/v1/software/motor-cad/index.json @@ -0,0 +1,19 @@ +{ + "id": 6432, + "slug": "motor-cad", + "name": "Motor-CAD", + "release_date": "1999-11-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6918078" + ], + "created_at": "2026-07-10T10:12:41.940628", + "updated_at": "2026-07-10T10:12:41.940628", + "url": "/v1/software/motor-cad" +} diff --git a/site/public/v1/software/motordesk/index.json b/site/public/v1/software/motordesk/index.json new file mode 100644 index 000000000000..f122389c87f3 --- /dev/null +++ b/site/public/v1/software/motordesk/index.json @@ -0,0 +1,24 @@ +{ + "id": 6433, + "slug": "motordesk", + "name": "MotorDesk", + "release_date": null, + "developers": [ + "Chief Mechanic Limited" + ], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140073132" + ], + "created_at": "2026-07-10T10:12:41.940628", + "updated_at": "2026-07-10T10:12:41.940628", + "url": "/v1/software/motordesk" +} diff --git a/site/public/v1/software/mountain-duck-app/index.json b/site/public/v1/software/mountain-duck-app/index.json new file mode 100644 index 000000000000..64c0fbabd344 --- /dev/null +++ b/site/public/v1/software/mountain-duck-app/index.json @@ -0,0 +1,19 @@ +{ + "id": 6434, + "slug": "mountain-duck-app", + "name": "Mountain-duck (app)", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136531115" + ], + "created_at": "2026-07-10T10:12:41.941662", + "updated_at": "2026-07-10T10:12:41.941662", + "url": "/v1/software/mountain-duck-app" +} diff --git a/site/public/v1/software/mountainsmap/index.json b/site/public/v1/software/mountainsmap/index.json new file mode 100644 index 000000000000..c4ce9dce577e --- /dev/null +++ b/site/public/v1/software/mountainsmap/index.json @@ -0,0 +1,23 @@ +{ + "id": 6435, + "slug": "mountainsmap", + "name": "MountainsMap", + "release_date": "1996-09-01", + "developers": [ + "Digital Surf" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3326070" + ], + "created_at": "2026-07-10T10:12:41.941662", + "updated_at": "2026-07-10T10:12:41.941662", + "url": "/v1/software/mountainsmap" +} diff --git a/site/public/v1/software/movalyzer/index.json b/site/public/v1/software/movalyzer/index.json new file mode 100644 index 000000000000..1f20a0af3252 --- /dev/null +++ b/site/public/v1/software/movalyzer/index.json @@ -0,0 +1,19 @@ +{ + "id": 6436, + "slug": "movalyzer", + "name": "MovAlyzeR", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6926448" + ], + "created_at": "2026-07-10T10:12:41.941662", + "updated_at": "2026-07-10T10:12:41.941662", + "url": "/v1/software/movalyzer" +} diff --git a/site/public/v1/software/movavi-screen-capture-studio/index.json b/site/public/v1/software/movavi-screen-capture-studio/index.json new file mode 100644 index 000000000000..1416a3358184 --- /dev/null +++ b/site/public/v1/software/movavi-screen-capture-studio/index.json @@ -0,0 +1,19 @@ +{ + "id": 6437, + "slug": "movavi-screen-capture-studio", + "name": "Movavi Screen Capture Studio", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q21659291" + ], + "created_at": "2026-07-10T10:12:41.942683", + "updated_at": "2026-07-10T10:12:41.942683", + "url": "/v1/software/movavi-screen-capture-studio" +} diff --git a/site/public/v1/software/move/index.json b/site/public/v1/software/move/index.json new file mode 100644 index 000000000000..b916ddfc43d4 --- /dev/null +++ b/site/public/v1/software/move/index.json @@ -0,0 +1,21 @@ +{ + "id": 6438, + "slug": "move", + "name": "Move", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25205950" + ], + "created_at": "2026-07-10T10:12:41.942683", + "updated_at": "2026-07-10T10:12:41.942683", + "url": "/v1/software/move" +} diff --git a/site/public/v1/software/moveit/index.json b/site/public/v1/software/moveit/index.json new file mode 100644 index 000000000000..45d2c45919cd --- /dev/null +++ b/site/public/v1/software/moveit/index.json @@ -0,0 +1,19 @@ +{ + "id": 6439, + "slug": "moveit", + "name": "MOVEit", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28445936" + ], + "created_at": "2026-07-10T10:12:41.943623", + "updated_at": "2026-07-10T10:12:41.943623", + "url": "/v1/software/moveit" +} diff --git a/site/public/v1/software/movider/index.json b/site/public/v1/software/movider/index.json new file mode 100644 index 000000000000..fa0ac0984379 --- /dev/null +++ b/site/public/v1/software/movider/index.json @@ -0,0 +1,19 @@ +{ + "id": 6440, + "slug": "movider", + "name": "Movider", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139322826" + ], + "created_at": "2026-07-10T10:12:41.943623", + "updated_at": "2026-07-10T10:12:41.943623", + "url": "/v1/software/movider" +} diff --git a/site/public/v1/software/movieride-fx/index.json b/site/public/v1/software/movieride-fx/index.json new file mode 100644 index 000000000000..de00c519a0cd --- /dev/null +++ b/site/public/v1/software/movieride-fx/index.json @@ -0,0 +1,19 @@ +{ + "id": 6441, + "slug": "movieride-fx", + "name": "MovieRide FX", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q30589172" + ], + "created_at": "2026-07-10T10:12:41.943623", + "updated_at": "2026-07-10T10:12:41.943623", + "url": "/v1/software/movieride-fx" +} diff --git a/site/public/v1/software/moviestorm/index.json b/site/public/v1/software/moviestorm/index.json new file mode 100644 index 000000000000..63d437bdb6ff --- /dev/null +++ b/site/public/v1/software/moviestorm/index.json @@ -0,0 +1,19 @@ +{ + "id": 6442, + "slug": "moviestorm", + "name": "Moviestorm", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3326931" + ], + "created_at": "2026-07-10T10:12:41.943623", + "updated_at": "2026-07-10T10:12:41.943623", + "url": "/v1/software/moviestorm" +} diff --git a/site/public/v1/software/moxa-mxsecurity/index.json b/site/public/v1/software/moxa-mxsecurity/index.json new file mode 100644 index 000000000000..8bf48839a0b1 --- /dev/null +++ b/site/public/v1/software/moxa-mxsecurity/index.json @@ -0,0 +1,19 @@ +{ + "id": 6443, + "slug": "moxa-mxsecurity", + "name": "Moxa MXsecurity", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118834953" + ], + "created_at": "2026-07-10T10:12:41.944719", + "updated_at": "2026-07-10T10:12:41.944719", + "url": "/v1/software/moxa-mxsecurity" +} diff --git a/site/public/v1/software/moz-git-tools/index.json b/site/public/v1/software/moz-git-tools/index.json new file mode 100644 index 000000000000..640622352a9d --- /dev/null +++ b/site/public/v1/software/moz-git-tools/index.json @@ -0,0 +1,19 @@ +{ + "id": 6444, + "slug": "moz-git-tools", + "name": "moz-git-tools", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123510940" + ], + "created_at": "2026-07-10T10:12:41.944719", + "updated_at": "2026-07-10T10:12:41.944719", + "url": "/v1/software/moz-git-tools" +} diff --git a/site/public/v1/software/mozbackup/index.json b/site/public/v1/software/mozbackup/index.json new file mode 100644 index 000000000000..305e9f692024 --- /dev/null +++ b/site/public/v1/software/mozbackup/index.json @@ -0,0 +1,23 @@ +{ + "id": 6445, + "slug": "mozbackup", + "name": "MozBackup", + "release_date": null, + "developers": [ + "Pavel Cvrček" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q23929392" + ], + "created_at": "2026-07-10T10:12:41.945623", + "updated_at": "2026-07-10T10:12:41.945623", + "url": "/v1/software/mozbackup" +} diff --git a/site/public/v1/software/mozdeh/index.json b/site/public/v1/software/mozdeh/index.json new file mode 100644 index 000000000000..1e7af918bd8c --- /dev/null +++ b/site/public/v1/software/mozdeh/index.json @@ -0,0 +1,19 @@ +{ + "id": 6446, + "slug": "mozdeh", + "name": "Mozdeh", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085125" + ], + "created_at": "2026-07-10T10:12:41.945623", + "updated_at": "2026-07-10T10:12:41.945623", + "url": "/v1/software/mozdeh" +} diff --git a/site/public/v1/software/mozenda/index.json b/site/public/v1/software/mozenda/index.json new file mode 100644 index 000000000000..b9daa74b4beb --- /dev/null +++ b/site/public/v1/software/mozenda/index.json @@ -0,0 +1,19 @@ +{ + "id": 6447, + "slug": "mozenda", + "name": "Mozenda", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085126" + ], + "created_at": "2026-07-10T10:12:41.945623", + "updated_at": "2026-07-10T10:12:41.945623", + "url": "/v1/software/mozenda" +} diff --git a/site/public/v1/software/mozilla-firefox-6/index.json b/site/public/v1/software/mozilla-firefox-6/index.json new file mode 100644 index 000000000000..4b15589f6286 --- /dev/null +++ b/site/public/v1/software/mozilla-firefox-6/index.json @@ -0,0 +1,19 @@ +{ + "id": 6448, + "slug": "mozilla-firefox-6", + "name": "Mozilla Firefox 6", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5948339" + ], + "created_at": "2026-07-10T10:12:41.945623", + "updated_at": "2026-07-10T10:12:41.945623", + "url": "/v1/software/mozilla-firefox-6" +} diff --git a/site/public/v1/software/mozilla-persona/index.json b/site/public/v1/software/mozilla-persona/index.json new file mode 100644 index 000000000000..2c484cfe6876 --- /dev/null +++ b/site/public/v1/software/mozilla-persona/index.json @@ -0,0 +1,21 @@ +{ + "id": 6449, + "slug": "mozilla-persona", + "name": "Mozilla Persona", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Mozilla Public License, version 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1637279" + ], + "created_at": "2026-07-10T10:12:41.946631", + "updated_at": "2026-07-10T10:12:41.946631", + "url": "/v1/software/mozilla-persona" +} diff --git a/site/public/v1/software/mozilla-prism/index.json b/site/public/v1/software/mozilla-prism/index.json new file mode 100644 index 000000000000..67b4959b7fc0 --- /dev/null +++ b/site/public/v1/software/mozilla-prism/index.json @@ -0,0 +1,23 @@ +{ + "id": 6450, + "slug": "mozilla-prism", + "name": "Mozilla Prism", + "release_date": null, + "developers": [ + "Mozilla Corporation" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Mozilla Public License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q568991" + ], + "created_at": "2026-07-10T10:12:41.946631", + "updated_at": "2026-07-10T10:12:41.946631", + "url": "/v1/software/mozilla-prism" +} diff --git a/site/public/v1/software/mozilla-thimble/index.json b/site/public/v1/software/mozilla-thimble/index.json new file mode 100644 index 000000000000..17cd9960c576 --- /dev/null +++ b/site/public/v1/software/mozilla-thimble/index.json @@ -0,0 +1,19 @@ +{ + "id": 6451, + "slug": "mozilla-thimble", + "name": "Mozilla Thimble", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085128" + ], + "created_at": "2026-07-10T10:12:41.946631", + "updated_at": "2026-07-10T10:12:41.946631", + "url": "/v1/software/mozilla-thimble" +} diff --git a/site/public/v1/software/mozilla-webthings/index.json b/site/public/v1/software/mozilla-webthings/index.json new file mode 100644 index 000000000000..018a5a8ae134 --- /dev/null +++ b/site/public/v1/software/mozilla-webthings/index.json @@ -0,0 +1,21 @@ +{ + "id": 6452, + "slug": "mozilla-webthings", + "name": "Mozilla WebThings", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Python" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63676622" + ], + "created_at": "2026-07-10T10:12:41.947746", + "updated_at": "2026-07-10T10:12:41.947746", + "url": "/v1/software/mozilla-webthings" +} diff --git a/site/public/v1/software/mozplugger/index.json b/site/public/v1/software/mozplugger/index.json new file mode 100644 index 000000000000..349c6683f15e --- /dev/null +++ b/site/public/v1/software/mozplugger/index.json @@ -0,0 +1,19 @@ +{ + "id": 6453, + "slug": "mozplugger", + "name": "MozPlugger", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62853986" + ], + "created_at": "2026-07-10T10:12:41.947746", + "updated_at": "2026-07-10T10:12:41.947746", + "url": "/v1/software/mozplugger" +} diff --git a/site/public/v1/software/mp3check/index.json b/site/public/v1/software/mp3check/index.json new file mode 100644 index 000000000000..eb5a3b4ff765 --- /dev/null +++ b/site/public/v1/software/mp3check/index.json @@ -0,0 +1,19 @@ +{ + "id": 6454, + "slug": "mp3check", + "name": "mp3check", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62853942" + ], + "created_at": "2026-07-10T10:12:41.947746", + "updated_at": "2026-07-10T10:12:41.947746", + "url": "/v1/software/mp3check" +} diff --git a/site/public/v1/software/mp3info/index.json b/site/public/v1/software/mp3info/index.json new file mode 100644 index 000000000000..fc3f0c107349 --- /dev/null +++ b/site/public/v1/software/mp3info/index.json @@ -0,0 +1,19 @@ +{ + "id": 6455, + "slug": "mp3info", + "name": "MP3info", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62853932" + ], + "created_at": "2026-07-10T10:12:41.948716", + "updated_at": "2026-07-10T10:12:41.948716", + "url": "/v1/software/mp3info" +} diff --git a/site/public/v1/software/mp3val/index.json b/site/public/v1/software/mp3val/index.json new file mode 100644 index 000000000000..101d45af4868 --- /dev/null +++ b/site/public/v1/software/mp3val/index.json @@ -0,0 +1,19 @@ +{ + "id": 6456, + "slug": "mp3val", + "name": "MP3val", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62853923" + ], + "created_at": "2026-07-10T10:12:41.948716", + "updated_at": "2026-07-10T10:12:41.948716", + "url": "/v1/software/mp3val" +} diff --git a/site/public/v1/software/mpack/index.json b/site/public/v1/software/mpack/index.json new file mode 100644 index 000000000000..af89b3d3f0ef --- /dev/null +++ b/site/public/v1/software/mpack/index.json @@ -0,0 +1,21 @@ +{ + "id": 6457, + "slug": "mpack", + "name": "MPack", + "release_date": "2006-12-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "PHP" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3273155" + ], + "created_at": "2026-07-10T10:12:41.948716", + "updated_at": "2026-07-10T10:12:41.948716", + "url": "/v1/software/mpack" +} diff --git a/site/public/v1/software/mpb/index.json b/site/public/v1/software/mpb/index.json new file mode 100644 index 000000000000..6fe6b0719619 --- /dev/null +++ b/site/public/v1/software/mpb/index.json @@ -0,0 +1,19 @@ +{ + "id": 6458, + "slug": "mpb", + "name": "MPB", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137673278" + ], + "created_at": "2026-07-10T10:12:41.949781", + "updated_at": "2026-07-10T10:12:41.949781", + "url": "/v1/software/mpb" +} diff --git a/site/public/v1/software/mpc-mlq/index.json b/site/public/v1/software/mpc-mlq/index.json new file mode 100644 index 000000000000..dadf76877723 --- /dev/null +++ b/site/public/v1/software/mpc-mlq/index.json @@ -0,0 +1,19 @@ +{ + "id": 6459, + "slug": "mpc-mlq", + "name": "MPC-MLQ", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6717230" + ], + "created_at": "2026-07-10T10:12:41.949781", + "updated_at": "2026-07-10T10:12:41.949781", + "url": "/v1/software/mpc-mlq" +} diff --git a/site/public/v1/software/mpcontribs/index.json b/site/public/v1/software/mpcontribs/index.json new file mode 100644 index 000000000000..3e656071a6c4 --- /dev/null +++ b/site/public/v1/software/mpcontribs/index.json @@ -0,0 +1,21 @@ +{ + "id": 6460, + "slug": "mpcontribs", + "name": "MPContribs", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127485415" + ], + "created_at": "2026-07-10T10:12:41.949781", + "updated_at": "2026-07-10T10:12:41.949781", + "url": "/v1/software/mpcontribs" +} diff --git a/site/public/v1/software/mpdcon/index.json b/site/public/v1/software/mpdcon/index.json new file mode 100644 index 000000000000..7e2d6d15747c --- /dev/null +++ b/site/public/v1/software/mpdcon/index.json @@ -0,0 +1,19 @@ +{ + "id": 6461, + "slug": "mpdcon", + "name": "MPDCon", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065502" + ], + "created_at": "2026-07-10T10:12:41.949781", + "updated_at": "2026-07-10T10:12:41.950715", + "url": "/v1/software/mpdcon" +} diff --git a/site/public/v1/software/mpdscribble/index.json b/site/public/v1/software/mpdscribble/index.json new file mode 100644 index 000000000000..a47d287369d4 --- /dev/null +++ b/site/public/v1/software/mpdscribble/index.json @@ -0,0 +1,19 @@ +{ + "id": 6462, + "slug": "mpdscribble", + "name": "mpdscribble", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975234" + ], + "created_at": "2026-07-10T10:12:41.950715", + "updated_at": "2026-07-10T10:12:41.950715", + "url": "/v1/software/mpdscribble" +} diff --git a/site/public/v1/software/mpgtx/index.json b/site/public/v1/software/mpgtx/index.json new file mode 100644 index 000000000000..0914d25748bc --- /dev/null +++ b/site/public/v1/software/mpgtx/index.json @@ -0,0 +1,19 @@ +{ + "id": 6463, + "slug": "mpgtx", + "name": "mpgtx", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62853836" + ], + "created_at": "2026-07-10T10:12:41.950715", + "updated_at": "2026-07-10T10:12:41.950715", + "url": "/v1/software/mpgtx" +} diff --git a/site/public/v1/software/mpibash/index.json b/site/public/v1/software/mpibash/index.json new file mode 100644 index 000000000000..59f2b798d6ba --- /dev/null +++ b/site/public/v1/software/mpibash/index.json @@ -0,0 +1,19 @@ +{ + "id": 6464, + "slug": "mpibash", + "name": "mpibash", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975235" + ], + "created_at": "2026-07-10T10:12:41.951631", + "updated_at": "2026-07-10T10:12:41.951631", + "url": "/v1/software/mpibash" +} diff --git a/site/public/v1/software/mpich2/index.json b/site/public/v1/software/mpich2/index.json new file mode 100644 index 000000000000..dd304ae866a7 --- /dev/null +++ b/site/public/v1/software/mpich2/index.json @@ -0,0 +1,21 @@ +{ + "id": 6465, + "slug": "mpich2", + "name": "MPICH2", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MPICH2 license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11765024" + ], + "created_at": "2026-07-10T10:12:41.951631", + "updated_at": "2026-07-10T10:12:41.951631", + "url": "/v1/software/mpich2" +} diff --git a/site/public/v1/software/mpress/index.json b/site/public/v1/software/mpress/index.json new file mode 100644 index 000000000000..f46b777cc40f --- /dev/null +++ b/site/public/v1/software/mpress/index.json @@ -0,0 +1,19 @@ +{ + "id": 6466, + "slug": "mpress", + "name": "mpress", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q39190015" + ], + "created_at": "2026-07-10T10:12:41.951631", + "updated_at": "2026-07-10T10:12:41.951631", + "url": "/v1/software/mpress" +} diff --git a/site/public/v1/software/mpressgui/index.json b/site/public/v1/software/mpressgui/index.json new file mode 100644 index 000000000000..60884f3ea2e7 --- /dev/null +++ b/site/public/v1/software/mpressgui/index.json @@ -0,0 +1,25 @@ +{ + "id": 6467, + "slug": "mpressgui", + "name": "MpressGUI", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [ + "Visual Basic" + ], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q39190303" + ], + "created_at": "2026-07-10T10:12:41.951631", + "updated_at": "2026-07-10T10:12:41.951631", + "url": "/v1/software/mpressgui" +} diff --git a/site/public/v1/software/mpria/index.json b/site/public/v1/software/mpria/index.json new file mode 100644 index 000000000000..176743cab2ba --- /dev/null +++ b/site/public/v1/software/mpria/index.json @@ -0,0 +1,19 @@ +{ + "id": 6468, + "slug": "mpria", + "name": "Mpria", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76185786" + ], + "created_at": "2026-07-10T10:12:41.952679", + "updated_at": "2026-07-10T10:12:41.952679", + "url": "/v1/software/mpria" +} diff --git a/site/public/v1/software/mpt-status/index.json b/site/public/v1/software/mpt-status/index.json new file mode 100644 index 000000000000..633d15a19dd5 --- /dev/null +++ b/site/public/v1/software/mpt-status/index.json @@ -0,0 +1,19 @@ +{ + "id": 6469, + "slug": "mpt-status", + "name": "mpt-status", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62853791" + ], + "created_at": "2026-07-10T10:12:41.952679", + "updated_at": "2026-07-10T10:12:41.952679", + "url": "/v1/software/mpt-status" +} diff --git a/site/public/v1/software/mr-data-converter/index.json b/site/public/v1/software/mr-data-converter/index.json new file mode 100644 index 000000000000..da631f50b084 --- /dev/null +++ b/site/public/v1/software/mr-data-converter/index.json @@ -0,0 +1,19 @@ +{ + "id": 6470, + "slug": "mr-data-converter", + "name": "Mr. Data Converter", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085129" + ], + "created_at": "2026-07-10T10:12:41.952679", + "updated_at": "2026-07-10T10:12:41.952679", + "url": "/v1/software/mr-data-converter" +} diff --git a/site/public/v1/software/mrbayes/index.json b/site/public/v1/software/mrbayes/index.json new file mode 100644 index 000000000000..cb3d87eb92a8 --- /dev/null +++ b/site/public/v1/software/mrbayes/index.json @@ -0,0 +1,25 @@ +{ + "id": 6471, + "slug": "mrbayes", + "name": "MrBayes", + "release_date": null, + "developers": [ + "Maxim Teslenko", + "Paul J. van der Mark", + "Chi Zhang", + "John Huelsenbeck", + "Fredrik Ronquist" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10920783" + ], + "created_at": "2026-07-10T10:12:41.953734", + "updated_at": "2026-07-10T10:12:41.953734", + "url": "/v1/software/mrbayes" +} diff --git a/site/public/v1/software/mricro/index.json b/site/public/v1/software/mricro/index.json new file mode 100644 index 000000000000..5bf1bec77a68 --- /dev/null +++ b/site/public/v1/software/mricro/index.json @@ -0,0 +1,21 @@ +{ + "id": 6472, + "slug": "mricro", + "name": "MRIcro", + "release_date": "1999-01-01", + "developers": [ + "Chris Rorden" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q41793750" + ], + "created_at": "2026-07-10T10:12:41.953734", + "updated_at": "2026-07-10T10:12:41.953734", + "url": "/v1/software/mricro" +} diff --git a/site/public/v1/software/ms-antivirus/index.json b/site/public/v1/software/ms-antivirus/index.json new file mode 100644 index 000000000000..820700d48f3f --- /dev/null +++ b/site/public/v1/software/ms-antivirus/index.json @@ -0,0 +1,21 @@ +{ + "id": 6473, + "slug": "ms-antivirus", + "name": "MS Antivirus", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3137501" + ], + "created_at": "2026-07-10T10:12:41.953734", + "updated_at": "2026-07-10T10:12:41.953734", + "url": "/v1/software/ms-antivirus" +} diff --git a/site/public/v1/software/ms-dial/index.json b/site/public/v1/software/ms-dial/index.json new file mode 100644 index 000000000000..226d5aaf5878 --- /dev/null +++ b/site/public/v1/software/ms-dial/index.json @@ -0,0 +1,19 @@ +{ + "id": 6474, + "slug": "ms-dial", + "name": "MS-DIAL", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115662328" + ], + "created_at": "2026-07-10T10:12:41.954711", + "updated_at": "2026-07-10T10:12:41.954711", + "url": "/v1/software/ms-dial" +} diff --git a/site/public/v1/software/ms4-modeling-environment/index.json b/site/public/v1/software/ms4-modeling-environment/index.json new file mode 100644 index 000000000000..e1cfd3ab9173 --- /dev/null +++ b/site/public/v1/software/ms4-modeling-environment/index.json @@ -0,0 +1,21 @@ +{ + "id": 6475, + "slug": "ms4-modeling-environment", + "name": "MS4 Modeling Environment", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Java" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17141547" + ], + "created_at": "2026-07-10T10:12:41.954711", + "updated_at": "2026-07-10T10:12:41.954711", + "url": "/v1/software/ms4-modeling-environment" +} diff --git a/site/public/v1/software/msc-adams-q96391244/index.json b/site/public/v1/software/msc-adams-q96391244/index.json new file mode 100644 index 000000000000..1f6612b9ccd5 --- /dev/null +++ b/site/public/v1/software/msc-adams-q96391244/index.json @@ -0,0 +1,21 @@ +{ + "id": 6476, + "slug": "msc-adams-q96391244", + "name": "MSC Adams", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Fortran" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q96391244" + ], + "created_at": "2026-07-10T10:12:41.954711", + "updated_at": "2026-07-10T10:12:41.954711", + "url": "/v1/software/msc-adams-q96391244" +} diff --git a/site/public/v1/software/msc-adams/index.json b/site/public/v1/software/msc-adams/index.json new file mode 100644 index 000000000000..d8f6eedc2857 --- /dev/null +++ b/site/public/v1/software/msc-adams/index.json @@ -0,0 +1,21 @@ +{ + "id": 6477, + "slug": "msc-adams", + "name": "MSC ADAMS", + "release_date": null, + "developers": [ + "MSC Software" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6717712" + ], + "created_at": "2026-07-10T10:12:41.955706", + "updated_at": "2026-07-10T10:12:41.955706", + "url": "/v1/software/msc-adams" +} diff --git a/site/public/v1/software/mscdex/index.json b/site/public/v1/software/mscdex/index.json new file mode 100644 index 000000000000..ef9ad35a19c1 --- /dev/null +++ b/site/public/v1/software/mscdex/index.json @@ -0,0 +1,21 @@ +{ + "id": 6478, + "slug": "mscdex", + "name": "MSCDEX", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Windows 9x" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10854663" + ], + "created_at": "2026-07-10T10:12:41.955706", + "updated_at": "2026-07-10T10:12:41.955706", + "url": "/v1/software/mscdex" +} diff --git a/site/public/v1/software/mscompress/index.json b/site/public/v1/software/mscompress/index.json new file mode 100644 index 000000000000..98511b048cd0 --- /dev/null +++ b/site/public/v1/software/mscompress/index.json @@ -0,0 +1,19 @@ +{ + "id": 6479, + "slug": "mscompress", + "name": "mscompress", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62853740" + ], + "created_at": "2026-07-10T10:12:41.955706", + "updated_at": "2026-07-10T10:12:41.955706", + "url": "/v1/software/mscompress" +} diff --git a/site/public/v1/software/msconvert/index.json b/site/public/v1/software/msconvert/index.json new file mode 100644 index 000000000000..87405683302d --- /dev/null +++ b/site/public/v1/software/msconvert/index.json @@ -0,0 +1,19 @@ +{ + "id": 6480, + "slug": "msconvert", + "name": "msConvert", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112506514" + ], + "created_at": "2026-07-10T10:12:41.955706", + "updated_at": "2026-07-10T10:12:41.955706", + "url": "/v1/software/msconvert" +} diff --git a/site/public/v1/software/msecure/index.json b/site/public/v1/software/msecure/index.json new file mode 100644 index 000000000000..602aa2081f2d --- /dev/null +++ b/site/public/v1/software/msecure/index.json @@ -0,0 +1,23 @@ +{ + "id": 6481, + "slug": "msecure", + "name": "MSecure", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "iOS", + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22907087" + ], + "created_at": "2026-07-10T10:12:41.956698", + "updated_at": "2026-07-10T10:12:41.956698", + "url": "/v1/software/msecure" +} diff --git a/site/public/v1/software/msi-afterburner/index.json b/site/public/v1/software/msi-afterburner/index.json new file mode 100644 index 000000000000..2532b17b2bf3 --- /dev/null +++ b/site/public/v1/software/msi-afterburner/index.json @@ -0,0 +1,19 @@ +{ + "id": 6482, + "slug": "msi-afterburner", + "name": "MSI Afterburner", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131405113" + ], + "created_at": "2026-07-10T10:12:41.956698", + "updated_at": "2026-07-10T10:12:41.956698", + "url": "/v1/software/msi-afterburner" +} diff --git a/site/public/v1/software/msn-apps/index.json b/site/public/v1/software/msn-apps/index.json new file mode 100644 index 000000000000..a3b69c672b9d --- /dev/null +++ b/site/public/v1/software/msn-apps/index.json @@ -0,0 +1,19 @@ +{ + "id": 6483, + "slug": "msn-apps", + "name": "MSN apps", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28450568" + ], + "created_at": "2026-07-10T10:12:41.957693", + "updated_at": "2026-07-10T10:12:41.957693", + "url": "/v1/software/msn-apps" +} diff --git a/site/public/v1/software/msn-chat/index.json b/site/public/v1/software/msn-chat/index.json new file mode 100644 index 000000000000..64cc85b27edc --- /dev/null +++ b/site/public/v1/software/msn-chat/index.json @@ -0,0 +1,19 @@ +{ + "id": 6484, + "slug": "msn-chat", + "name": "MSN Chat", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6717830" + ], + "created_at": "2026-07-10T10:12:41.957693", + "updated_at": "2026-07-10T10:12:41.957693", + "url": "/v1/software/msn-chat" +} diff --git a/site/public/v1/software/msn-direct/index.json b/site/public/v1/software/msn-direct/index.json new file mode 100644 index 000000000000..4a58193af5b7 --- /dev/null +++ b/site/public/v1/software/msn-direct/index.json @@ -0,0 +1,19 @@ +{ + "id": 6485, + "slug": "msn-direct", + "name": "MSN Direct", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6717832" + ], + "created_at": "2026-07-10T10:12:41.957693", + "updated_at": "2026-07-10T10:12:41.957693", + "url": "/v1/software/msn-direct" +} diff --git a/site/public/v1/software/msn-qna/index.json b/site/public/v1/software/msn-qna/index.json new file mode 100644 index 000000000000..9698a3b29525 --- /dev/null +++ b/site/public/v1/software/msn-qna/index.json @@ -0,0 +1,21 @@ +{ + "id": 6486, + "slug": "msn-qna", + "name": "MSN QnA", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6717853" + ], + "created_at": "2026-07-10T10:12:41.957693", + "updated_at": "2026-07-10T10:12:41.957693", + "url": "/v1/software/msn-qna" +} diff --git a/site/public/v1/software/msn-tv/index.json b/site/public/v1/software/msn-tv/index.json new file mode 100644 index 000000000000..0d78b8f085c2 --- /dev/null +++ b/site/public/v1/software/msn-tv/index.json @@ -0,0 +1,19 @@ +{ + "id": 6487, + "slug": "msn-tv", + "name": "MSN TV", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1891637" + ], + "created_at": "2026-07-10T10:12:41.963625", + "updated_at": "2026-07-10T10:12:41.963625", + "url": "/v1/software/msn-tv" +} diff --git a/site/public/v1/software/msn-wifi-hotspots/index.json b/site/public/v1/software/msn-wifi-hotspots/index.json new file mode 100644 index 000000000000..8c672f4a1f7d --- /dev/null +++ b/site/public/v1/software/msn-wifi-hotspots/index.json @@ -0,0 +1,21 @@ +{ + "id": 6488, + "slug": "msn-wifi-hotspots", + "name": "MSN WiFi Hotspots", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6717855" + ], + "created_at": "2026-07-10T10:12:41.966622", + "updated_at": "2026-07-10T10:12:41.966622", + "url": "/v1/software/msn-wifi-hotspots" +} diff --git a/site/public/v1/software/msort/index.json b/site/public/v1/software/msort/index.json new file mode 100644 index 000000000000..be076d7b9635 --- /dev/null +++ b/site/public/v1/software/msort/index.json @@ -0,0 +1,19 @@ +{ + "id": 6489, + "slug": "msort", + "name": "msort", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62853700" + ], + "created_at": "2026-07-10T10:12:41.969622", + "updated_at": "2026-07-10T10:12:41.969622", + "url": "/v1/software/msort" +} diff --git a/site/public/v1/software/msql/index.json b/site/public/v1/software/msql/index.json new file mode 100644 index 000000000000..8aa9e11761a8 --- /dev/null +++ b/site/public/v1/software/msql/index.json @@ -0,0 +1,21 @@ +{ + "id": 6490, + "slug": "msql", + "name": "mSQL", + "release_date": null, + "developers": [ + "Hughes Technologies" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q603867" + ], + "created_at": "2026-07-10T10:12:41.969622", + "updated_at": "2026-07-10T10:12:41.969622", + "url": "/v1/software/msql" +} diff --git a/site/public/v1/software/msqrd/index.json b/site/public/v1/software/msqrd/index.json new file mode 100644 index 000000000000..e1099bd5ca7a --- /dev/null +++ b/site/public/v1/software/msqrd/index.json @@ -0,0 +1,19 @@ +{ + "id": 6491, + "slug": "msqrd", + "name": "MSQRD", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q23035039" + ], + "created_at": "2026-07-10T10:12:41.970801", + "updated_at": "2026-07-10T10:12:41.970801", + "url": "/v1/software/msqrd" +} diff --git a/site/public/v1/software/msr-tools/index.json b/site/public/v1/software/msr-tools/index.json new file mode 100644 index 000000000000..7ec91f64a157 --- /dev/null +++ b/site/public/v1/software/msr-tools/index.json @@ -0,0 +1,21 @@ +{ + "id": 6492, + "slug": "msr-tools", + "name": "MSR Tools", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "3-clause BSD License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4043479" + ], + "created_at": "2026-07-10T10:12:41.970801", + "updated_at": "2026-07-10T10:12:41.970801", + "url": "/v1/software/msr-tools" +} diff --git a/site/public/v1/software/mswatch/index.json b/site/public/v1/software/mswatch/index.json new file mode 100644 index 000000000000..6dc474be45a6 --- /dev/null +++ b/site/public/v1/software/mswatch/index.json @@ -0,0 +1,19 @@ +{ + "id": 6493, + "slug": "mswatch", + "name": "mswatch", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62853690" + ], + "created_at": "2026-07-10T10:12:41.971699", + "updated_at": "2026-07-10T10:12:41.971699", + "url": "/v1/software/mswatch" +} diff --git a/site/public/v1/software/msx-trains/index.json b/site/public/v1/software/msx-trains/index.json new file mode 100644 index 000000000000..b526d22065ca --- /dev/null +++ b/site/public/v1/software/msx-trains/index.json @@ -0,0 +1,21 @@ +{ + "id": 6494, + "slug": "msx-trains", + "name": "MSX Trains", + "release_date": "1994-01-01", + "developers": [], + "publishers": [ + "Pablosoft" + ], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124300362" + ], + "created_at": "2026-07-10T10:12:41.972680", + "updated_at": "2026-07-10T10:12:41.972680", + "url": "/v1/software/msx-trains" +} diff --git a/site/public/v1/software/mtail/index.json b/site/public/v1/software/mtail/index.json new file mode 100644 index 000000000000..2b90be14e5de --- /dev/null +++ b/site/public/v1/software/mtail/index.json @@ -0,0 +1,19 @@ +{ + "id": 6495, + "slug": "mtail", + "name": "mtail", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62853684" + ], + "created_at": "2026-07-10T10:12:41.972680", + "updated_at": "2026-07-10T10:12:41.972680", + "url": "/v1/software/mtail" +} diff --git a/site/public/v1/software/mtd-utils/index.json b/site/public/v1/software/mtd-utils/index.json new file mode 100644 index 000000000000..0393e8428939 --- /dev/null +++ b/site/public/v1/software/mtd-utils/index.json @@ -0,0 +1,19 @@ +{ + "id": 6496, + "slug": "mtd-utils", + "name": "mtd-utils", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975237" + ], + "created_at": "2026-07-10T10:12:41.973769", + "updated_at": "2026-07-10T10:12:41.973769", + "url": "/v1/software/mtd-utils" +} diff --git a/site/public/v1/software/mtex/index.json b/site/public/v1/software/mtex/index.json new file mode 100644 index 000000000000..70dbd93c16be --- /dev/null +++ b/site/public/v1/software/mtex/index.json @@ -0,0 +1,21 @@ +{ + "id": 6497, + "slug": "mtex", + "name": "MTEX", + "release_date": null, + "developers": [ + "Ralf Hielscher" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130549618" + ], + "created_at": "2026-07-10T10:12:41.973769", + "updated_at": "2026-07-10T10:12:41.973769", + "url": "/v1/software/mtex" +} diff --git a/site/public/v1/software/mtx/index.json b/site/public/v1/software/mtx/index.json new file mode 100644 index 000000000000..65c16e58d85a --- /dev/null +++ b/site/public/v1/software/mtx/index.json @@ -0,0 +1,19 @@ +{ + "id": 6498, + "slug": "mtx", + "name": "MTX", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62853668" + ], + "created_at": "2026-07-10T10:12:41.974710", + "updated_at": "2026-07-10T10:12:41.974710", + "url": "/v1/software/mtx" +} diff --git a/site/public/v1/software/mu-lab/index.json b/site/public/v1/software/mu-lab/index.json new file mode 100644 index 000000000000..231bf7559087 --- /dev/null +++ b/site/public/v1/software/mu-lab/index.json @@ -0,0 +1,19 @@ +{ + "id": 6499, + "slug": "mu-lab", + "name": "MU.LAB", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1580929" + ], + "created_at": "2026-07-10T10:12:41.974710", + "updated_at": "2026-07-10T10:12:41.974710", + "url": "/v1/software/mu-lab" +} diff --git a/site/public/v1/software/mudbox/index.json b/site/public/v1/software/mudbox/index.json new file mode 100644 index 000000000000..e434bdd28b5f --- /dev/null +++ b/site/public/v1/software/mudbox/index.json @@ -0,0 +1,23 @@ +{ + "id": 6500, + "slug": "mudbox", + "name": "Mudbox", + "release_date": null, + "developers": [ + "Autodesk" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1783444" + ], + "created_at": "2026-07-10T10:12:41.975709", + "updated_at": "2026-07-10T10:12:41.975709", + "url": "/v1/software/mudbox" +} diff --git a/site/public/v1/software/mudos/index.json b/site/public/v1/software/mudos/index.json new file mode 100644 index 000000000000..83412d6074d3 --- /dev/null +++ b/site/public/v1/software/mudos/index.json @@ -0,0 +1,19 @@ +{ + "id": 6501, + "slug": "mudos", + "name": "MudOS", + "release_date": "1992-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6931322" + ], + "created_at": "2026-07-10T10:12:41.975709", + "updated_at": "2026-07-10T10:12:41.975709", + "url": "/v1/software/mudos" +} diff --git a/site/public/v1/software/muffin/index.json b/site/public/v1/software/muffin/index.json new file mode 100644 index 000000000000..2560eef9f28e --- /dev/null +++ b/site/public/v1/software/muffin/index.json @@ -0,0 +1,23 @@ +{ + "id": 6502, + "slug": "muffin", + "name": "muffin", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Unix-like operating system" + ], + "programming_languages": [], + "licenses": [ + "GNU General Public License, version 2.0 or later" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62853598" + ], + "created_at": "2026-07-10T10:12:41.976623", + "updated_at": "2026-07-10T10:12:41.976623", + "url": "/v1/software/muffin" +} diff --git a/site/public/v1/software/mugu-marauder/index.json b/site/public/v1/software/mugu-marauder/index.json new file mode 100644 index 000000000000..e80aed296ad2 --- /dev/null +++ b/site/public/v1/software/mugu-marauder/index.json @@ -0,0 +1,19 @@ +{ + "id": 6503, + "slug": "mugu-marauder", + "name": "Mugu Marauder", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6932229" + ], + "created_at": "2026-07-10T10:12:41.976623", + "updated_at": "2026-07-10T10:12:41.976623", + "url": "/v1/software/mugu-marauder" +} diff --git a/site/public/v1/software/muguito/index.json b/site/public/v1/software/muguito/index.json new file mode 100644 index 000000000000..18a1c1f662a4 --- /dev/null +++ b/site/public/v1/software/muguito/index.json @@ -0,0 +1,19 @@ +{ + "id": 6504, + "slug": "muguito", + "name": "Muguito", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6932236" + ], + "created_at": "2026-07-10T10:12:41.977631", + "updated_at": "2026-07-10T10:12:41.977631", + "url": "/v1/software/muguito" +} diff --git a/site/public/v1/software/mujoco/index.json b/site/public/v1/software/mujoco/index.json new file mode 100644 index 000000000000..498d1c040440 --- /dev/null +++ b/site/public/v1/software/mujoco/index.json @@ -0,0 +1,24 @@ +{ + "id": 6505, + "slug": "mujoco", + "name": "MuJoCo", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "Apache Software License 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q31109350" + ], + "created_at": "2026-07-10T10:12:41.977631", + "updated_at": "2026-07-10T10:12:41.977631", + "url": "/v1/software/mujoco" +} diff --git a/site/public/v1/software/mukurtu-cms/index.json b/site/public/v1/software/mukurtu-cms/index.json new file mode 100644 index 000000000000..6f4a392858f1 --- /dev/null +++ b/site/public/v1/software/mukurtu-cms/index.json @@ -0,0 +1,19 @@ +{ + "id": 6506, + "slug": "mukurtu-cms", + "name": "Mukurtu CMS", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085130" + ], + "created_at": "2026-07-10T10:12:41.977631", + "updated_at": "2026-07-10T10:12:41.977631", + "url": "/v1/software/mukurtu-cms" +} diff --git a/site/public/v1/software/mule/index.json b/site/public/v1/software/mule/index.json new file mode 100644 index 000000000000..984e366bda07 --- /dev/null +++ b/site/public/v1/software/mule/index.json @@ -0,0 +1,23 @@ +{ + "id": 6507, + "slug": "mule", + "name": "Mule", + "release_date": null, + "developers": [ + "MuleSoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Java" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q935976" + ], + "created_at": "2026-07-10T10:12:41.978628", + "updated_at": "2026-07-10T10:12:41.978628", + "url": "/v1/software/mule" +} diff --git a/site/public/v1/software/multcloud/index.json b/site/public/v1/software/multcloud/index.json new file mode 100644 index 000000000000..dfa37724ae28 --- /dev/null +++ b/site/public/v1/software/multcloud/index.json @@ -0,0 +1,19 @@ +{ + "id": 6508, + "slug": "multcloud", + "name": "Multcloud", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28134670" + ], + "created_at": "2026-07-10T10:12:41.978628", + "updated_at": "2026-07-10T10:12:41.978628", + "url": "/v1/software/multcloud" +} diff --git a/site/public/v1/software/multiagent-systems-product-lines/index.json b/site/public/v1/software/multiagent-systems-product-lines/index.json new file mode 100644 index 000000000000..f7e1c8dd593c --- /dev/null +++ b/site/public/v1/software/multiagent-systems-product-lines/index.json @@ -0,0 +1,19 @@ +{ + "id": 6509, + "slug": "multiagent-systems-product-lines", + "name": "Multiagent systems product lines", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q392813" + ], + "created_at": "2026-07-10T10:12:41.979629", + "updated_at": "2026-07-10T10:12:41.979629", + "url": "/v1/software/multiagent-systems-product-lines" +} diff --git a/site/public/v1/software/multicharts/index.json b/site/public/v1/software/multicharts/index.json new file mode 100644 index 000000000000..ef6d20725f77 --- /dev/null +++ b/site/public/v1/software/multicharts/index.json @@ -0,0 +1,19 @@ +{ + "id": 6510, + "slug": "multicharts", + "name": "MultiCharts", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28401125" + ], + "created_at": "2026-07-10T10:12:41.979629", + "updated_at": "2026-07-10T10:12:41.979629", + "url": "/v1/software/multicharts" +} diff --git a/site/public/v1/software/multilingual-software/index.json b/site/public/v1/software/multilingual-software/index.json new file mode 100644 index 000000000000..50f7823b60c9 --- /dev/null +++ b/site/public/v1/software/multilingual-software/index.json @@ -0,0 +1,19 @@ +{ + "id": 6511, + "slug": "multilingual-software", + "name": "multilingual software", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136499252" + ], + "created_at": "2026-07-10T10:12:41.979629", + "updated_at": "2026-07-10T10:12:41.979629", + "url": "/v1/software/multilingual-software" +} diff --git a/site/public/v1/software/multimedia-atlas-of-veneto-dialects/index.json b/site/public/v1/software/multimedia-atlas-of-veneto-dialects/index.json new file mode 100644 index 000000000000..710500425082 --- /dev/null +++ b/site/public/v1/software/multimedia-atlas-of-veneto-dialects/index.json @@ -0,0 +1,19 @@ +{ + "id": 6512, + "slug": "multimedia-atlas-of-veneto-dialects", + "name": "Multimedia Atlas of Veneto Dialects", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121301099" + ], + "created_at": "2026-07-10T10:12:41.980623", + "updated_at": "2026-07-10T10:12:41.980623", + "url": "/v1/software/multimedia-atlas-of-veneto-dialects" +} diff --git a/site/public/v1/software/multimedia-center/index.json b/site/public/v1/software/multimedia-center/index.json new file mode 100644 index 000000000000..427c47a8e1ec --- /dev/null +++ b/site/public/v1/software/multimedia-center/index.json @@ -0,0 +1,19 @@ +{ + "id": 6513, + "slug": "multimedia-center", + "name": "Multimedia Center", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1952401" + ], + "created_at": "2026-07-10T10:12:41.980623", + "updated_at": "2026-07-10T10:12:41.980623", + "url": "/v1/software/multimedia-center" +} diff --git a/site/public/v1/software/multimedia-fusion-2/index.json b/site/public/v1/software/multimedia-fusion-2/index.json new file mode 100644 index 000000000000..1580d0b38089 --- /dev/null +++ b/site/public/v1/software/multimedia-fusion-2/index.json @@ -0,0 +1,19 @@ +{ + "id": 6514, + "slug": "multimedia-fusion-2", + "name": "Multimedia Fusion 2", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6304123" + ], + "created_at": "2026-07-10T10:12:41.980623", + "updated_at": "2026-07-10T10:12:41.980623", + "url": "/v1/software/multimedia-fusion-2" +} diff --git a/site/public/v1/software/multimon-ng/index.json b/site/public/v1/software/multimon-ng/index.json new file mode 100644 index 000000000000..2e06f168e0c8 --- /dev/null +++ b/site/public/v1/software/multimon-ng/index.json @@ -0,0 +1,19 @@ +{ + "id": 6515, + "slug": "multimon-ng", + "name": "multimon-ng", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975238" + ], + "created_at": "2026-07-10T10:12:41.981630", + "updated_at": "2026-07-10T10:12:41.981630", + "url": "/v1/software/multimon-ng" +} diff --git a/site/public/v1/software/multinet/index.json b/site/public/v1/software/multinet/index.json new file mode 100644 index 000000000000..ab8db6321f43 --- /dev/null +++ b/site/public/v1/software/multinet/index.json @@ -0,0 +1,19 @@ +{ + "id": 6516, + "slug": "multinet", + "name": "MultiNet", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1787603" + ], + "created_at": "2026-07-10T10:12:41.981630", + "updated_at": "2026-07-10T10:12:41.981630", + "url": "/v1/software/multinet" +} diff --git a/site/public/v1/software/multiple-boot-manager/index.json b/site/public/v1/software/multiple-boot-manager/index.json new file mode 100644 index 000000000000..db1b68ea2eae --- /dev/null +++ b/site/public/v1/software/multiple-boot-manager/index.json @@ -0,0 +1,19 @@ +{ + "id": 6517, + "slug": "multiple-boot-manager", + "name": "Multiple Boot Manager", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11341374" + ], + "created_at": "2026-07-10T10:12:41.981630", + "updated_at": "2026-07-10T10:12:41.981630", + "url": "/v1/software/multiple-boot-manager" +} diff --git a/site/public/v1/software/multiplicity/index.json b/site/public/v1/software/multiplicity/index.json new file mode 100644 index 000000000000..bde0fbc3841a --- /dev/null +++ b/site/public/v1/software/multiplicity/index.json @@ -0,0 +1,19 @@ +{ + "id": 6518, + "slug": "multiplicity", + "name": "Multiplicity", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1952461" + ], + "created_at": "2026-07-10T10:12:41.982628", + "updated_at": "2026-07-10T10:12:41.982628", + "url": "/v1/software/multiplicity" +} diff --git a/site/public/v1/software/multitail/index.json b/site/public/v1/software/multitail/index.json new file mode 100644 index 000000000000..98604888d8f4 --- /dev/null +++ b/site/public/v1/software/multitail/index.json @@ -0,0 +1,21 @@ +{ + "id": 6519, + "slug": "multitail", + "name": "multitail", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62853546" + ], + "created_at": "2026-07-10T10:12:41.982628", + "updated_at": "2026-07-10T10:12:41.982628", + "url": "/v1/software/multitail" +} diff --git a/site/public/v1/software/multitool/index.json b/site/public/v1/software/multitool/index.json new file mode 100644 index 000000000000..9970f667079b --- /dev/null +++ b/site/public/v1/software/multitool/index.json @@ -0,0 +1,24 @@ +{ + "id": 6520, + "slug": "multitool", + "name": "Multitool", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "open source" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105099454" + ], + "created_at": "2026-07-10T10:12:41.982628", + "updated_at": "2026-07-10T10:12:41.982628", + "url": "/v1/software/multitool" +} diff --git a/site/public/v1/software/multitrackstudio/index.json b/site/public/v1/software/multitrackstudio/index.json new file mode 100644 index 000000000000..4fb183d78757 --- /dev/null +++ b/site/public/v1/software/multitrackstudio/index.json @@ -0,0 +1,19 @@ +{ + "id": 6521, + "slug": "multitrackstudio", + "name": "MultitrackStudio", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28403658" + ], + "created_at": "2026-07-10T10:12:41.983628", + "updated_at": "2026-07-10T10:12:41.983628", + "url": "/v1/software/multitrackstudio" +} diff --git a/site/public/v1/software/multitran/index.json b/site/public/v1/software/multitran/index.json new file mode 100644 index 000000000000..87b665e94a83 --- /dev/null +++ b/site/public/v1/software/multitran/index.json @@ -0,0 +1,21 @@ +{ + "id": 6522, + "slug": "multitran", + "name": "Multitran", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "cross-platform" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4307006" + ], + "created_at": "2026-07-10T10:12:41.983628", + "updated_at": "2026-07-10T10:12:41.983628", + "url": "/v1/software/multitran" +} diff --git a/site/public/v1/software/multivalue/index.json b/site/public/v1/software/multivalue/index.json new file mode 100644 index 000000000000..fbf8eadb3971 --- /dev/null +++ b/site/public/v1/software/multivalue/index.json @@ -0,0 +1,19 @@ +{ + "id": 6523, + "slug": "multivalue", + "name": "multivalue", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q114840933" + ], + "created_at": "2026-07-10T10:12:41.983628", + "updated_at": "2026-07-10T10:12:41.983628", + "url": "/v1/software/multivalue" +} diff --git a/site/public/v1/software/multivocal-mapping-database/index.json b/site/public/v1/software/multivocal-mapping-database/index.json new file mode 100644 index 000000000000..97f81437ad39 --- /dev/null +++ b/site/public/v1/software/multivocal-mapping-database/index.json @@ -0,0 +1,19 @@ +{ + "id": 6524, + "slug": "multivocal-mapping-database", + "name": "multivocal-mapping-database", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127474959" + ], + "created_at": "2026-07-10T10:12:41.984628", + "updated_at": "2026-07-10T10:12:41.984628", + "url": "/v1/software/multivocal-mapping-database" +} diff --git a/site/public/v1/software/mummer/index.json b/site/public/v1/software/mummer/index.json new file mode 100644 index 000000000000..654a97231c33 --- /dev/null +++ b/site/public/v1/software/mummer/index.json @@ -0,0 +1,21 @@ +{ + "id": 6525, + "slug": "mummer", + "name": "MUMmer", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Artistic License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6719063" + ], + "created_at": "2026-07-10T10:12:41.984628", + "updated_at": "2026-07-10T10:12:41.984628", + "url": "/v1/software/mummer" +} diff --git a/site/public/v1/software/mumuplayer/index.json b/site/public/v1/software/mumuplayer/index.json new file mode 100644 index 000000000000..39d0fed12b15 --- /dev/null +++ b/site/public/v1/software/mumuplayer/index.json @@ -0,0 +1,19 @@ +{ + "id": 6526, + "slug": "mumuplayer", + "name": "MuMuPlayer", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137571922" + ], + "created_at": "2026-07-10T10:12:41.984628", + "updated_at": "2026-07-10T10:12:41.984628", + "url": "/v1/software/mumuplayer" +} diff --git a/site/public/v1/software/munching-square/index.json b/site/public/v1/software/munching-square/index.json new file mode 100644 index 000000000000..b48fb9fa7c67 --- /dev/null +++ b/site/public/v1/software/munching-square/index.json @@ -0,0 +1,19 @@ +{ + "id": 6527, + "slug": "munching-square", + "name": "Munching square", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6935671" + ], + "created_at": "2026-07-10T10:12:41.985628", + "updated_at": "2026-07-10T10:12:41.985628", + "url": "/v1/software/munching-square" +} diff --git a/site/public/v1/software/muparser/index.json b/site/public/v1/software/muparser/index.json new file mode 100644 index 000000000000..15a4b711e1e5 --- /dev/null +++ b/site/public/v1/software/muparser/index.json @@ -0,0 +1,21 @@ +{ + "id": 6528, + "slug": "muparser", + "name": "muParser", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131316544" + ], + "created_at": "2026-07-10T10:12:41.985628", + "updated_at": "2026-07-10T10:12:41.985628", + "url": "/v1/software/muparser" +} diff --git a/site/public/v1/software/mur/index.json b/site/public/v1/software/mur/index.json new file mode 100644 index 000000000000..943f773e3d45 --- /dev/null +++ b/site/public/v1/software/mur/index.json @@ -0,0 +1,19 @@ +{ + "id": 6529, + "slug": "mur", + "name": "Murφ", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110130974" + ], + "created_at": "2026-07-10T10:12:41.985628", + "updated_at": "2026-07-10T10:12:41.985628", + "url": "/v1/software/mur" +} diff --git a/site/public/v1/software/mural/index.json b/site/public/v1/software/mural/index.json new file mode 100644 index 000000000000..dc76ef334503 --- /dev/null +++ b/site/public/v1/software/mural/index.json @@ -0,0 +1,19 @@ +{ + "id": 6530, + "slug": "mural", + "name": "Mural", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085131" + ], + "created_at": "2026-07-10T10:12:41.986628", + "updated_at": "2026-07-10T10:12:41.986628", + "url": "/v1/software/mural" +} diff --git a/site/public/v1/software/murmel-meetings/index.json b/site/public/v1/software/murmel-meetings/index.json new file mode 100644 index 000000000000..aaece17e9f6c --- /dev/null +++ b/site/public/v1/software/murmel-meetings/index.json @@ -0,0 +1,21 @@ +{ + "id": 6531, + "slug": "murmel-meetings", + "name": "Murmel Meetings", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "web platform" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140314476" + ], + "created_at": "2026-07-10T10:12:41.986628", + "updated_at": "2026-07-10T10:12:41.986628", + "url": "/v1/software/murmel-meetings" +} diff --git a/site/public/v1/software/muro/index.json b/site/public/v1/software/muro/index.json new file mode 100644 index 000000000000..615d8b1696b6 --- /dev/null +++ b/site/public/v1/software/muro/index.json @@ -0,0 +1,19 @@ +{ + "id": 6532, + "slug": "muro", + "name": "Muro", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137506816" + ], + "created_at": "2026-07-10T10:12:41.986628", + "updated_at": "2026-07-10T10:12:41.986628", + "url": "/v1/software/muro" +} diff --git a/site/public/v1/software/mus2/index.json b/site/public/v1/software/mus2/index.json new file mode 100644 index 000000000000..4ea64d73129e --- /dev/null +++ b/site/public/v1/software/mus2/index.json @@ -0,0 +1,21 @@ +{ + "id": 6533, + "slug": "mus2", + "name": "Mus2", + "release_date": "2010-01-01", + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10985986" + ], + "created_at": "2026-07-10T10:12:41.987628", + "updated_at": "2026-07-10T10:12:41.987628", + "url": "/v1/software/mus2" +} diff --git a/site/public/v1/software/musca/index.json b/site/public/v1/software/musca/index.json new file mode 100644 index 000000000000..40b85b478661 --- /dev/null +++ b/site/public/v1/software/musca/index.json @@ -0,0 +1,19 @@ +{ + "id": 6534, + "slug": "musca", + "name": "Musca", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3328278" + ], + "created_at": "2026-07-10T10:12:41.987628", + "updated_at": "2026-07-10T10:12:41.987628", + "url": "/v1/software/musca" +} diff --git a/site/public/v1/software/muscle/index.json b/site/public/v1/software/muscle/index.json new file mode 100644 index 000000000000..3fb4e22ca269 --- /dev/null +++ b/site/public/v1/software/muscle/index.json @@ -0,0 +1,21 @@ +{ + "id": 6535, + "slug": "muscle", + "name": "MUSCLE", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "public-domain software" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6719088" + ], + "created_at": "2026-07-10T10:12:41.987628", + "updated_at": "2026-07-10T10:12:41.987628", + "url": "/v1/software/muscle" +} diff --git a/site/public/v1/software/music-box/index.json b/site/public/v1/software/music-box/index.json new file mode 100644 index 000000000000..64bab692383b --- /dev/null +++ b/site/public/v1/software/music-box/index.json @@ -0,0 +1,21 @@ +{ + "id": 6536, + "slug": "music-box", + "name": "Music Box", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "RISC OS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6941450" + ], + "created_at": "2026-07-10T10:12:41.988700", + "updated_at": "2026-07-10T10:12:41.988700", + "url": "/v1/software/music-box" +} diff --git a/site/public/v1/software/music-kit/index.json b/site/public/v1/software/music-kit/index.json new file mode 100644 index 000000000000..9f060f534dac --- /dev/null +++ b/site/public/v1/software/music-kit/index.json @@ -0,0 +1,23 @@ +{ + "id": 6537, + "slug": "music-kit", + "name": "Music Kit", + "release_date": null, + "developers": [ + "NeXT" + ], + "publishers": [], + "operating_systems": [ + "NeXTSTEP" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6941581" + ], + "created_at": "2026-07-10T10:12:41.988700", + "updated_at": "2026-07-10T10:12:41.988700", + "url": "/v1/software/music-kit" +} diff --git a/site/public/v1/software/music-q123125463/index.json b/site/public/v1/software/music-q123125463/index.json new file mode 100644 index 000000000000..f655803eeec1 --- /dev/null +++ b/site/public/v1/software/music-q123125463/index.json @@ -0,0 +1,19 @@ +{ + "id": 6538, + "slug": "music-q123125463", + "name": "Music", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123125463" + ], + "created_at": "2026-07-10T10:12:41.988700", + "updated_at": "2026-07-10T10:12:41.988700", + "url": "/v1/software/music-q123125463" +} diff --git a/site/public/v1/software/music-shop/index.json b/site/public/v1/software/music-shop/index.json new file mode 100644 index 000000000000..d0cd2d6a2773 --- /dev/null +++ b/site/public/v1/software/music-shop/index.json @@ -0,0 +1,22 @@ +{ + "id": 6539, + "slug": "music-shop", + "name": "Music Shop", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "proprietary license", + "commercial software" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3868546" + ], + "created_at": "2026-07-10T10:12:41.989689", + "updated_at": "2026-07-10T10:12:41.989689", + "url": "/v1/software/music-shop" +} diff --git a/site/public/v1/software/music-unlimited/index.json b/site/public/v1/software/music-unlimited/index.json new file mode 100644 index 000000000000..d48a7d2e5eb8 --- /dev/null +++ b/site/public/v1/software/music-unlimited/index.json @@ -0,0 +1,19 @@ +{ + "id": 6540, + "slug": "music-unlimited", + "name": "Music Unlimited", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q611472" + ], + "created_at": "2026-07-10T10:12:41.989689", + "updated_at": "2026-07-10T10:12:41.989689", + "url": "/v1/software/music-unlimited" +} diff --git a/site/public/v1/software/music/index.json b/site/public/v1/software/music/index.json new file mode 100644 index 000000000000..c1bce8cc2bf2 --- /dev/null +++ b/site/public/v1/software/music/index.json @@ -0,0 +1,21 @@ +{ + "id": 6541, + "slug": "music", + "name": "Music", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [ + "music video game" + ], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3328461" + ], + "created_at": "2026-07-10T10:12:41.989689", + "updated_at": "2026-07-10T10:12:41.989689", + "url": "/v1/software/music" +} diff --git a/site/public/v1/software/musicedit/index.json b/site/public/v1/software/musicedit/index.json new file mode 100644 index 000000000000..b88a18137ae7 --- /dev/null +++ b/site/public/v1/software/musicedit/index.json @@ -0,0 +1,21 @@ +{ + "id": 6542, + "slug": "musicedit", + "name": "Musicedit", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122729420" + ], + "created_at": "2026-07-10T10:12:41.990694", + "updated_at": "2026-07-10T10:12:41.990694", + "url": "/v1/software/musicedit" +} diff --git a/site/public/v1/software/musicmaster/index.json b/site/public/v1/software/musicmaster/index.json new file mode 100644 index 000000000000..d433c90df1e0 --- /dev/null +++ b/site/public/v1/software/musicmaster/index.json @@ -0,0 +1,21 @@ +{ + "id": 6543, + "slug": "musicmaster", + "name": "Musicmaster", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q15995332" + ], + "created_at": "2026-07-10T10:12:41.990694", + "updated_at": "2026-07-10T10:12:41.990694", + "url": "/v1/software/musicmaster" +} diff --git a/site/public/v1/software/musixmatch/index.json b/site/public/v1/software/musixmatch/index.json new file mode 100644 index 000000000000..c02b3f22406d --- /dev/null +++ b/site/public/v1/software/musixmatch/index.json @@ -0,0 +1,19 @@ +{ + "id": 6544, + "slug": "musixmatch", + "name": "Musixmatch", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6942717" + ], + "created_at": "2026-07-10T10:12:41.990694", + "updated_at": "2026-07-10T10:12:41.990694", + "url": "/v1/software/musixmatch" +} diff --git a/site/public/v1/software/musl-nscd/index.json b/site/public/v1/software/musl-nscd/index.json new file mode 100644 index 000000000000..e0f81db5cde0 --- /dev/null +++ b/site/public/v1/software/musl-nscd/index.json @@ -0,0 +1,19 @@ +{ + "id": 6545, + "slug": "musl-nscd", + "name": "musl-nscd", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975239" + ], + "created_at": "2026-07-10T10:12:41.991703", + "updated_at": "2026-07-10T10:12:41.991703", + "url": "/v1/software/musl-nscd" +} diff --git a/site/public/v1/software/muttprint/index.json b/site/public/v1/software/muttprint/index.json new file mode 100644 index 000000000000..9784a78878c6 --- /dev/null +++ b/site/public/v1/software/muttprint/index.json @@ -0,0 +1,19 @@ +{ + "id": 6546, + "slug": "muttprint", + "name": "Muttprint", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62856416" + ], + "created_at": "2026-07-10T10:12:41.991703", + "updated_at": "2026-07-10T10:12:41.991703", + "url": "/v1/software/muttprint" +} diff --git a/site/public/v1/software/muxi/index.json b/site/public/v1/software/muxi/index.json new file mode 100644 index 000000000000..c13cf0a487d5 --- /dev/null +++ b/site/public/v1/software/muxi/index.json @@ -0,0 +1,19 @@ +{ + "id": 6547, + "slug": "muxi", + "name": "MUXI", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140196048" + ], + "created_at": "2026-07-10T10:12:41.991703", + "updated_at": "2026-07-10T10:12:41.991703", + "url": "/v1/software/muxi" +} diff --git a/site/public/v1/software/muzmatch/index.json b/site/public/v1/software/muzmatch/index.json new file mode 100644 index 000000000000..f382e85812b9 --- /dev/null +++ b/site/public/v1/software/muzmatch/index.json @@ -0,0 +1,19 @@ +{ + "id": 6548, + "slug": "muzmatch", + "name": "Muzmatch", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106610741" + ], + "created_at": "2026-07-10T10:12:41.992631", + "updated_at": "2026-07-10T10:12:41.992631", + "url": "/v1/software/muzmatch" +} diff --git a/site/public/v1/software/mx-player/index.json b/site/public/v1/software/mx-player/index.json new file mode 100644 index 000000000000..216a32d61146 --- /dev/null +++ b/site/public/v1/software/mx-player/index.json @@ -0,0 +1,19 @@ +{ + "id": 6549, + "slug": "mx-player", + "name": "MX Player", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25389797" + ], + "created_at": "2026-07-10T10:12:41.992631", + "updated_at": "2026-07-10T10:12:41.992631", + "url": "/v1/software/mx-player" +} diff --git a/site/public/v1/software/mx-takatak-q120882295/index.json b/site/public/v1/software/mx-takatak-q120882295/index.json new file mode 100644 index 000000000000..cf09d15b2a12 --- /dev/null +++ b/site/public/v1/software/mx-takatak-q120882295/index.json @@ -0,0 +1,19 @@ +{ + "id": 6550, + "slug": "mx-takatak-q120882295", + "name": "MX TakaTak", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120882295" + ], + "created_at": "2026-07-10T10:12:41.992631", + "updated_at": "2026-07-10T10:12:41.992631", + "url": "/v1/software/mx-takatak-q120882295" +} diff --git a/site/public/v1/software/mx-takatak/index.json b/site/public/v1/software/mx-takatak/index.json new file mode 100644 index 000000000000..cb96996cfcbc --- /dev/null +++ b/site/public/v1/software/mx-takatak/index.json @@ -0,0 +1,19 @@ +{ + "id": 6551, + "slug": "mx-takatak", + "name": "Mx Takatak", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105702061" + ], + "created_at": "2026-07-10T10:12:41.993629", + "updated_at": "2026-07-10T10:12:41.993629", + "url": "/v1/software/mx-takatak" +} diff --git a/site/public/v1/software/mxe/index.json b/site/public/v1/software/mxe/index.json new file mode 100644 index 000000000000..8ea9ca4211ee --- /dev/null +++ b/site/public/v1/software/mxe/index.json @@ -0,0 +1,26 @@ +{ + "id": 6552, + "slug": "mxe", + "name": "MXE", + "release_date": "2007-06-13", + "developers": [], + "publishers": [], + "operating_systems": [ + "Berkeley Software Distribution", + "macOS" + ], + "programming_languages": [ + "make" + ], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28671337" + ], + "created_at": "2026-07-10T10:12:41.993629", + "updated_at": "2026-07-10T10:12:41.993629", + "url": "/v1/software/mxe" +} diff --git a/site/public/v1/software/mxit/index.json b/site/public/v1/software/mxit/index.json new file mode 100644 index 000000000000..f9e40bcdcb54 --- /dev/null +++ b/site/public/v1/software/mxit/index.json @@ -0,0 +1,21 @@ +{ + "id": 6553, + "slug": "mxit", + "name": "Mxit", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3133024" + ], + "created_at": "2026-07-10T10:12:41.993629", + "updated_at": "2026-07-10T10:12:41.993629", + "url": "/v1/software/mxit" +} diff --git a/site/public/v1/software/my-location/index.json b/site/public/v1/software/my-location/index.json new file mode 100644 index 000000000000..045364c5d06f --- /dev/null +++ b/site/public/v1/software/my-location/index.json @@ -0,0 +1,21 @@ +{ + "id": 6554, + "slug": "my-location", + "name": "My Location", + "release_date": null, + "developers": [ + "Google" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11787451" + ], + "created_at": "2026-07-10T10:12:41.994631", + "updated_at": "2026-07-10T10:12:41.994631", + "url": "/v1/software/my-location" +} diff --git a/site/public/v1/software/my-phone/index.json b/site/public/v1/software/my-phone/index.json new file mode 100644 index 000000000000..d94d9d0ad30e --- /dev/null +++ b/site/public/v1/software/my-phone/index.json @@ -0,0 +1,23 @@ +{ + "id": 6555, + "slug": "my-phone", + "name": "My Phone", + "release_date": "2009-10-06", + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [ + "Windows Mobile 6.0" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4044707" + ], + "created_at": "2026-07-10T10:12:41.994631", + "updated_at": "2026-07-10T10:12:41.994631", + "url": "/v1/software/my-phone" +} diff --git a/site/public/v1/software/my-tracks/index.json b/site/public/v1/software/my-tracks/index.json new file mode 100644 index 000000000000..b4ec82aa5be8 --- /dev/null +++ b/site/public/v1/software/my-tracks/index.json @@ -0,0 +1,25 @@ +{ + "id": 6556, + "slug": "my-tracks", + "name": "My Tracks", + "release_date": null, + "developers": [ + "Google" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Java" + ], + "licenses": [ + "Apache License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6944894" + ], + "created_at": "2026-07-10T10:12:41.994631", + "updated_at": "2026-07-10T10:12:41.994631", + "url": "/v1/software/my-tracks" +} diff --git a/site/public/v1/software/my-windows-phone/index.json b/site/public/v1/software/my-windows-phone/index.json new file mode 100644 index 000000000000..16eccae77a0c --- /dev/null +++ b/site/public/v1/software/my-windows-phone/index.json @@ -0,0 +1,21 @@ +{ + "id": 6557, + "slug": "my-windows-phone", + "name": "My Windows Phone", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3331289" + ], + "created_at": "2026-07-10T10:12:41.994631", + "updated_at": "2026-07-10T10:12:41.994631", + "url": "/v1/software/my-windows-phone" +} diff --git a/site/public/v1/software/my-yahoo/index.json b/site/public/v1/software/my-yahoo/index.json new file mode 100644 index 000000000000..784929362ea3 --- /dev/null +++ b/site/public/v1/software/my-yahoo/index.json @@ -0,0 +1,21 @@ +{ + "id": 6558, + "slug": "my-yahoo", + "name": "My Yahoo!", + "release_date": null, + "developers": [ + "Yahoo" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6946657" + ], + "created_at": "2026-07-10T10:12:41.995629", + "updated_at": "2026-07-10T10:12:41.995629", + "url": "/v1/software/my-yahoo" +} diff --git a/site/public/v1/software/my5/index.json b/site/public/v1/software/my5/index.json new file mode 100644 index 000000000000..76577d2dd55f --- /dev/null +++ b/site/public/v1/software/my5/index.json @@ -0,0 +1,23 @@ +{ + "id": 6559, + "slug": "my5", + "name": "My5", + "release_date": null, + "developers": [ + "Channel 5" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5255023" + ], + "created_at": "2026-07-10T10:12:41.995629", + "updated_at": "2026-07-10T10:12:41.995629", + "url": "/v1/software/my5" +} diff --git a/site/public/v1/software/mycin/index.json b/site/public/v1/software/mycin/index.json new file mode 100644 index 000000000000..df411a513eb7 --- /dev/null +++ b/site/public/v1/software/mycin/index.json @@ -0,0 +1,19 @@ +{ + "id": 6560, + "slug": "mycin", + "name": "Mycin", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q644624" + ], + "created_at": "2026-07-10T10:12:41.995629", + "updated_at": "2026-07-10T10:12:41.995629", + "url": "/v1/software/mycin" +} diff --git a/site/public/v1/software/mycli/index.json b/site/public/v1/software/mycli/index.json new file mode 100644 index 000000000000..550a8cb5324c --- /dev/null +++ b/site/public/v1/software/mycli/index.json @@ -0,0 +1,21 @@ +{ + "id": 6561, + "slug": "mycli", + "name": "mycli", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "3-clause BSD License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975240" + ], + "created_at": "2026-07-10T10:12:41.996641", + "updated_at": "2026-07-10T10:12:41.996641", + "url": "/v1/software/mycli" +} diff --git a/site/public/v1/software/mycolors/index.json b/site/public/v1/software/mycolors/index.json new file mode 100644 index 000000000000..1b8ae5270519 --- /dev/null +++ b/site/public/v1/software/mycolors/index.json @@ -0,0 +1,21 @@ +{ + "id": 6562, + "slug": "mycolors", + "name": "MyColors", + "release_date": null, + "developers": [ + "Stardock" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6944798" + ], + "created_at": "2026-07-10T10:12:41.996641", + "updated_at": "2026-07-10T10:12:41.996641", + "url": "/v1/software/mycolors" +} diff --git a/site/public/v1/software/mydirectives/index.json b/site/public/v1/software/mydirectives/index.json new file mode 100644 index 000000000000..0a1af17eb1ae --- /dev/null +++ b/site/public/v1/software/mydirectives/index.json @@ -0,0 +1,19 @@ +{ + "id": 6563, + "slug": "mydirectives", + "name": "MyDirectives", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17070374" + ], + "created_at": "2026-07-10T10:12:41.996641", + "updated_at": "2026-07-10T10:12:41.996641", + "url": "/v1/software/mydirectives" +} diff --git a/site/public/v1/software/mydrivers/index.json b/site/public/v1/software/mydrivers/index.json new file mode 100644 index 000000000000..ae0769429a77 --- /dev/null +++ b/site/public/v1/software/mydrivers/index.json @@ -0,0 +1,21 @@ +{ + "id": 6564, + "slug": "mydrivers", + "name": "Mydrivers", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q101622000" + ], + "created_at": "2026-07-10T10:12:41.997628", + "updated_at": "2026-07-10T10:12:41.997628", + "url": "/v1/software/mydrivers" +} diff --git a/site/public/v1/software/myfitnesspal/index.json b/site/public/v1/software/myfitnesspal/index.json new file mode 100644 index 000000000000..6a580b4c136b --- /dev/null +++ b/site/public/v1/software/myfitnesspal/index.json @@ -0,0 +1,23 @@ +{ + "id": 6565, + "slug": "myfitnesspal", + "name": "MyFitnessPal", + "release_date": "2005-01-01", + "developers": [], + "publishers": [], + "operating_systems": [ + "iOS" + ], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6944817" + ], + "created_at": "2026-07-10T10:12:41.997628", + "updated_at": "2026-07-10T10:12:41.997628", + "url": "/v1/software/myfitnesspal" +} diff --git a/site/public/v1/software/myhistro/index.json b/site/public/v1/software/myhistro/index.json new file mode 100644 index 000000000000..2c425dfc5319 --- /dev/null +++ b/site/public/v1/software/myhistro/index.json @@ -0,0 +1,19 @@ +{ + "id": 6566, + "slug": "myhistro", + "name": "myHistro", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085132" + ], + "created_at": "2026-07-10T10:12:41.997628", + "updated_at": "2026-07-10T10:12:41.997628", + "url": "/v1/software/myhistro" +} diff --git a/site/public/v1/software/myhomelib/index.json b/site/public/v1/software/myhomelib/index.json new file mode 100644 index 000000000000..0fde2f85c4e6 --- /dev/null +++ b/site/public/v1/software/myhomelib/index.json @@ -0,0 +1,22 @@ +{ + "id": 6567, + "slug": "myhomelib", + "name": "MyHomeLib", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "GNU General Public License, version 3.0", + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4044683" + ], + "created_at": "2026-07-10T10:12:41.998638", + "updated_at": "2026-07-10T10:12:41.998638", + "url": "/v1/software/myhomelib" +} diff --git a/site/public/v1/software/myindicators/index.json b/site/public/v1/software/myindicators/index.json new file mode 100644 index 000000000000..061a6f3a5ea3 --- /dev/null +++ b/site/public/v1/software/myindicators/index.json @@ -0,0 +1,19 @@ +{ + "id": 6568, + "slug": "myindicators", + "name": "MyIndicators", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085133" + ], + "created_at": "2026-07-10T10:12:41.998638", + "updated_at": "2026-07-10T10:12:41.998638", + "url": "/v1/software/myindicators" +} diff --git a/site/public/v1/software/myinfo/index.json b/site/public/v1/software/myinfo/index.json new file mode 100644 index 000000000000..7c88afd8849f --- /dev/null +++ b/site/public/v1/software/myinfo/index.json @@ -0,0 +1,19 @@ +{ + "id": 6569, + "slug": "myinfo", + "name": "MyInfo", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6944829" + ], + "created_at": "2026-07-10T10:12:41.998638", + "updated_at": "2026-07-10T10:12:41.998638", + "url": "/v1/software/myinfo" +} diff --git a/site/public/v1/software/mylvmbackup/index.json b/site/public/v1/software/mylvmbackup/index.json new file mode 100644 index 000000000000..33fdff0f47f7 --- /dev/null +++ b/site/public/v1/software/mylvmbackup/index.json @@ -0,0 +1,19 @@ +{ + "id": 6570, + "slug": "mylvmbackup", + "name": "mylvmbackup", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62856408" + ], + "created_at": "2026-07-10T10:12:41.999638", + "updated_at": "2026-07-10T10:12:41.999638", + "url": "/v1/software/mylvmbackup" +} diff --git a/site/public/v1/software/mylyn-builds/index.json b/site/public/v1/software/mylyn-builds/index.json new file mode 100644 index 000000000000..8c52639836da --- /dev/null +++ b/site/public/v1/software/mylyn-builds/index.json @@ -0,0 +1,19 @@ +{ + "id": 6571, + "slug": "mylyn-builds", + "name": "Mylyn Builds", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76168287" + ], + "created_at": "2026-07-10T10:12:41.999638", + "updated_at": "2026-07-10T10:12:41.999638", + "url": "/v1/software/mylyn-builds" +} diff --git a/site/public/v1/software/mylyn-commons/index.json b/site/public/v1/software/mylyn-commons/index.json new file mode 100644 index 000000000000..7b9d56f0072b --- /dev/null +++ b/site/public/v1/software/mylyn-commons/index.json @@ -0,0 +1,19 @@ +{ + "id": 6572, + "slug": "mylyn-commons", + "name": "Mylyn Commons", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76168305" + ], + "created_at": "2026-07-10T10:12:41.999638", + "updated_at": "2026-07-10T10:12:41.999638", + "url": "/v1/software/mylyn-commons" +} diff --git a/site/public/v1/software/mylyn-context/index.json b/site/public/v1/software/mylyn-context/index.json new file mode 100644 index 000000000000..e232500269fc --- /dev/null +++ b/site/public/v1/software/mylyn-context/index.json @@ -0,0 +1,19 @@ +{ + "id": 6573, + "slug": "mylyn-context", + "name": "Mylyn Context", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76168323" + ], + "created_at": "2026-07-10T10:12:42.000638", + "updated_at": "2026-07-10T10:12:42.000638", + "url": "/v1/software/mylyn-context" +} diff --git a/site/public/v1/software/mylyn-docs/index.json b/site/public/v1/software/mylyn-docs/index.json new file mode 100644 index 000000000000..64f6ce7b8393 --- /dev/null +++ b/site/public/v1/software/mylyn-docs/index.json @@ -0,0 +1,19 @@ +{ + "id": 6574, + "slug": "mylyn-docs", + "name": "Mylyn Docs", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76168338" + ], + "created_at": "2026-07-10T10:12:42.000638", + "updated_at": "2026-07-10T10:12:42.000638", + "url": "/v1/software/mylyn-docs" +} diff --git a/site/public/v1/software/mylyn-incubator/index.json b/site/public/v1/software/mylyn-incubator/index.json new file mode 100644 index 000000000000..a5cec7e36601 --- /dev/null +++ b/site/public/v1/software/mylyn-incubator/index.json @@ -0,0 +1,19 @@ +{ + "id": 6575, + "slug": "mylyn-incubator", + "name": "Mylyn Incubator", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76168352" + ], + "created_at": "2026-07-10T10:12:42.000638", + "updated_at": "2026-07-10T10:12:42.000638", + "url": "/v1/software/mylyn-incubator" +} diff --git a/site/public/v1/software/mylyn-reviews/index.json b/site/public/v1/software/mylyn-reviews/index.json new file mode 100644 index 000000000000..f1ffa1f569dd --- /dev/null +++ b/site/public/v1/software/mylyn-reviews/index.json @@ -0,0 +1,19 @@ +{ + "id": 6576, + "slug": "mylyn-reviews", + "name": "Mylyn Reviews", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76168641" + ], + "created_at": "2026-07-10T10:12:42.001637", + "updated_at": "2026-07-10T10:12:42.001637", + "url": "/v1/software/mylyn-reviews" +} diff --git a/site/public/v1/software/mylyn-tasks/index.json b/site/public/v1/software/mylyn-tasks/index.json new file mode 100644 index 000000000000..da5df88bd9ed --- /dev/null +++ b/site/public/v1/software/mylyn-tasks/index.json @@ -0,0 +1,19 @@ +{ + "id": 6577, + "slug": "mylyn-tasks", + "name": "Mylyn Tasks", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76168626" + ], + "created_at": "2026-07-10T10:12:42.001637", + "updated_at": "2026-07-10T10:12:42.001637", + "url": "/v1/software/mylyn-tasks" +} diff --git a/site/public/v1/software/mylyn-versions/index.json b/site/public/v1/software/mylyn-versions/index.json new file mode 100644 index 000000000000..52916115b8b2 --- /dev/null +++ b/site/public/v1/software/mylyn-versions/index.json @@ -0,0 +1,19 @@ +{ + "id": 6578, + "slug": "mylyn-versions", + "name": "Mylyn Versions", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76168609" + ], + "created_at": "2026-07-10T10:12:42.001637", + "updated_at": "2026-07-10T10:12:42.001637", + "url": "/v1/software/mylyn-versions" +} diff --git a/site/public/v1/software/mymail/index.json b/site/public/v1/software/mymail/index.json new file mode 100644 index 000000000000..d4f3dcd6440e --- /dev/null +++ b/site/public/v1/software/mymail/index.json @@ -0,0 +1,21 @@ +{ + "id": 6579, + "slug": "mymail", + "name": "MyMail", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "iOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q15526815" + ], + "created_at": "2026-07-10T10:12:42.002638", + "updated_at": "2026-07-10T10:12:42.002638", + "url": "/v1/software/mymail" +} diff --git a/site/public/v1/software/mymbpg/index.json b/site/public/v1/software/mymbpg/index.json new file mode 100644 index 000000000000..850937a0e6c4 --- /dev/null +++ b/site/public/v1/software/mymbpg/index.json @@ -0,0 +1,23 @@ +{ + "id": 6580, + "slug": "mymbpg", + "name": "myMBPG", + "release_date": null, + "developers": [ + "Ravi Verma" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Kotlin" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140396615" + ], + "created_at": "2026-07-10T10:12:42.002638", + "updated_at": "2026-07-10T10:12:42.002638", + "url": "/v1/software/mymbpg" +} diff --git a/site/public/v1/software/mymobileweb/index.json b/site/public/v1/software/mymobileweb/index.json new file mode 100644 index 000000000000..693bfa44cfdf --- /dev/null +++ b/site/public/v1/software/mymobileweb/index.json @@ -0,0 +1,19 @@ +{ + "id": 6581, + "slug": "mymobileweb", + "name": "MyMobileWeb", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6944843" + ], + "created_at": "2026-07-10T10:12:42.002638", + "updated_at": "2026-07-10T10:12:42.002638", + "url": "/v1/software/mymobileweb" +} diff --git a/site/public/v1/software/mymta/index.json b/site/public/v1/software/mymta/index.json new file mode 100644 index 000000000000..ed09ea590c99 --- /dev/null +++ b/site/public/v1/software/mymta/index.json @@ -0,0 +1,19 @@ +{ + "id": 6582, + "slug": "mymta", + "name": "MYmta", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q65047473" + ], + "created_at": "2026-07-10T10:12:42.003637", + "updated_at": "2026-07-10T10:12:42.003637", + "url": "/v1/software/mymta" +} diff --git a/site/public/v1/software/mynetworkmap/index.json b/site/public/v1/software/mynetworkmap/index.json new file mode 100644 index 000000000000..d8e7c572015f --- /dev/null +++ b/site/public/v1/software/mynetworkmap/index.json @@ -0,0 +1,19 @@ +{ + "id": 6583, + "slug": "mynetworkmap", + "name": "MyNetworkmap", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106092112" + ], + "created_at": "2026-07-10T10:12:42.003637", + "updated_at": "2026-07-10T10:12:42.003637", + "url": "/v1/software/mynetworkmap" +} diff --git a/site/public/v1/software/myoffice/index.json b/site/public/v1/software/myoffice/index.json new file mode 100644 index 000000000000..ece0a3bdf806 --- /dev/null +++ b/site/public/v1/software/myoffice/index.json @@ -0,0 +1,34 @@ +{ + "id": 6584, + "slug": "myoffice", + "name": "MyOffice", + "release_date": "2015-10-20", + "developers": [], + "publishers": [], + "operating_systems": [ + "iPadOS", + "Aurora OS", + "iOS", + "macOS", + "Microsoft Windows" + ], + "programming_languages": [ + "Java", + "HTML5", + "Python", + "Go", + "Kotlin", + "Objective-C" + ], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q21662027" + ], + "created_at": "2026-07-10T10:12:42.003637", + "updated_at": "2026-07-10T10:12:42.003637", + "url": "/v1/software/myoffice" +} diff --git a/site/public/v1/software/mypcqq/index.json b/site/public/v1/software/mypcqq/index.json new file mode 100644 index 000000000000..a18969174b41 --- /dev/null +++ b/site/public/v1/software/mypcqq/index.json @@ -0,0 +1,25 @@ +{ + "id": 6585, + "slug": "mypcqq", + "name": "MyPCQQ", + "release_date": "2015-01-26", + "developers": [ + "MyPCQQ" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q52737146" + ], + "created_at": "2026-07-10T10:12:42.003637", + "updated_at": "2026-07-10T10:12:42.003637", + "url": "/v1/software/mypcqq" +} diff --git a/site/public/v1/software/mypeers/index.json b/site/public/v1/software/mypeers/index.json new file mode 100644 index 000000000000..cb99822d3415 --- /dev/null +++ b/site/public/v1/software/mypeers/index.json @@ -0,0 +1,19 @@ +{ + "id": 6586, + "slug": "mypeers", + "name": "myPeers", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085134" + ], + "created_at": "2026-07-10T10:12:42.004638", + "updated_at": "2026-07-10T10:12:42.004638", + "url": "/v1/software/mypeers" +} diff --git a/site/public/v1/software/myquake/index.json b/site/public/v1/software/myquake/index.json new file mode 100644 index 000000000000..ea740f1b812f --- /dev/null +++ b/site/public/v1/software/myquake/index.json @@ -0,0 +1,23 @@ +{ + "id": 6587, + "slug": "myquake", + "name": "MyQuake", + "release_date": null, + "developers": [ + "Berkeley Seismological Laboratory" + ], + "publishers": [], + "operating_systems": [ + "iOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60522680" + ], + "created_at": "2026-07-10T10:12:42.004638", + "updated_at": "2026-07-10T10:12:42.004638", + "url": "/v1/software/myquake" +} diff --git a/site/public/v1/software/myquiz/index.json b/site/public/v1/software/myquiz/index.json new file mode 100644 index 000000000000..d99ccd955a76 --- /dev/null +++ b/site/public/v1/software/myquiz/index.json @@ -0,0 +1,19 @@ +{ + "id": 6588, + "slug": "myquiz", + "name": "myQuiz", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138722002" + ], + "created_at": "2026-07-10T10:12:42.005638", + "updated_at": "2026-07-10T10:12:42.005638", + "url": "/v1/software/myquiz" +} diff --git a/site/public/v1/software/myrulib/index.json b/site/public/v1/software/myrulib/index.json new file mode 100644 index 000000000000..0b2b36c5c430 --- /dev/null +++ b/site/public/v1/software/myrulib/index.json @@ -0,0 +1,19 @@ +{ + "id": 6589, + "slug": "myrulib", + "name": "MyRuLib", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4044684" + ], + "created_at": "2026-07-10T10:12:42.005638", + "updated_at": "2026-07-10T10:12:42.005638", + "url": "/v1/software/myrulib" +} diff --git a/site/public/v1/software/mysecurefolder/index.json b/site/public/v1/software/mysecurefolder/index.json new file mode 100644 index 000000000000..e7fd39d41dba --- /dev/null +++ b/site/public/v1/software/mysecurefolder/index.json @@ -0,0 +1,25 @@ +{ + "id": 6590, + "slug": "mysecurefolder", + "name": "MySecureFolder", + "release_date": null, + "developers": [ + "Magnyte Software" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138842555" + ], + "created_at": "2026-07-10T10:12:42.005638", + "updated_at": "2026-07-10T10:12:42.005638", + "url": "/v1/software/mysecurefolder" +} diff --git a/site/public/v1/software/myshake/index.json b/site/public/v1/software/myshake/index.json new file mode 100644 index 000000000000..150ef3c6b640 --- /dev/null +++ b/site/public/v1/software/myshake/index.json @@ -0,0 +1,21 @@ +{ + "id": 6591, + "slug": "myshake", + "name": "MyShake", + "release_date": null, + "developers": [ + "Berkeley Seismological Laboratory" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60522582" + ], + "created_at": "2026-07-10T10:12:42.005638", + "updated_at": "2026-07-10T10:12:42.005638", + "url": "/v1/software/myshake" +} diff --git a/site/public/v1/software/mysms/index.json b/site/public/v1/software/mysms/index.json new file mode 100644 index 000000000000..60f7be6902b6 --- /dev/null +++ b/site/public/v1/software/mysms/index.json @@ -0,0 +1,21 @@ +{ + "id": 6592, + "slug": "mysms", + "name": "Mysms", + "release_date": "2011-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Java" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q20712517" + ], + "created_at": "2026-07-10T10:12:42.006634", + "updated_at": "2026-07-10T10:12:42.006634", + "url": "/v1/software/mysms" +} diff --git a/site/public/v1/software/myspell-pt/index.json b/site/public/v1/software/myspell-pt/index.json new file mode 100644 index 000000000000..1ed3c83dd653 --- /dev/null +++ b/site/public/v1/software/myspell-pt/index.json @@ -0,0 +1,19 @@ +{ + "id": 6593, + "slug": "myspell-pt", + "name": "myspell-pt", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106101994" + ], + "created_at": "2026-07-10T10:12:42.006634", + "updated_at": "2026-07-10T10:12:42.006634", + "url": "/v1/software/myspell-pt" +} diff --git a/site/public/v1/software/mysql-administrator/index.json b/site/public/v1/software/mysql-administrator/index.json new file mode 100644 index 000000000000..bf96842c949f --- /dev/null +++ b/site/public/v1/software/mysql-administrator/index.json @@ -0,0 +1,19 @@ +{ + "id": 6594, + "slug": "mysql-administrator", + "name": "MySQL Administrator", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110788415" + ], + "created_at": "2026-07-10T10:12:42.006634", + "updated_at": "2026-07-10T10:12:42.006634", + "url": "/v1/software/mysql-administrator" +} diff --git a/site/public/v1/software/mysql-manager/index.json b/site/public/v1/software/mysql-manager/index.json new file mode 100644 index 000000000000..70e92b4c616b --- /dev/null +++ b/site/public/v1/software/mysql-manager/index.json @@ -0,0 +1,21 @@ +{ + "id": 6595, + "slug": "mysql-manager", + "name": "MySQL Manager", + "release_date": null, + "developers": [ + "Apple Inc." + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3868817" + ], + "created_at": "2026-07-10T10:12:42.007639", + "updated_at": "2026-07-10T10:12:42.007639", + "url": "/v1/software/mysql-manager" +} diff --git a/site/public/v1/software/mysql-query-browser/index.json b/site/public/v1/software/mysql-query-browser/index.json new file mode 100644 index 000000000000..e2c2fbddf997 --- /dev/null +++ b/site/public/v1/software/mysql-query-browser/index.json @@ -0,0 +1,19 @@ +{ + "id": 6596, + "slug": "mysql-query-browser", + "name": "MySQL Query Browser", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110788418" + ], + "created_at": "2026-07-10T10:12:42.007639", + "updated_at": "2026-07-10T10:12:42.007639", + "url": "/v1/software/mysql-query-browser" +} diff --git a/site/public/v1/software/mysqltcl/index.json b/site/public/v1/software/mysqltcl/index.json new file mode 100644 index 000000000000..7a08c389d4d1 --- /dev/null +++ b/site/public/v1/software/mysqltcl/index.json @@ -0,0 +1,19 @@ +{ + "id": 6597, + "slug": "mysqltcl", + "name": "mysqltcl", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62853533" + ], + "created_at": "2026-07-10T10:12:42.007639", + "updated_at": "2026-07-10T10:12:42.007639", + "url": "/v1/software/mysqltcl" +} diff --git a/site/public/v1/software/mystic-bbs/index.json b/site/public/v1/software/mystic-bbs/index.json new file mode 100644 index 000000000000..811ac4ac063a --- /dev/null +++ b/site/public/v1/software/mystic-bbs/index.json @@ -0,0 +1,23 @@ +{ + "id": 6598, + "slug": "mystic-bbs", + "name": "Mystic BBS", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows", + "DOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6948922" + ], + "created_at": "2026-07-10T10:12:42.008638", + "updated_at": "2026-07-10T10:12:42.008638", + "url": "/v1/software/mystic-bbs" +} diff --git a/site/public/v1/software/mystickies/index.json b/site/public/v1/software/mystickies/index.json new file mode 100644 index 000000000000..cc3f83c30d44 --- /dev/null +++ b/site/public/v1/software/mystickies/index.json @@ -0,0 +1,19 @@ +{ + "id": 6599, + "slug": "mystickies", + "name": "MyStickies", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085135" + ], + "created_at": "2026-07-10T10:12:42.008638", + "updated_at": "2026-07-10T10:12:42.008638", + "url": "/v1/software/mystickies" +} diff --git a/site/public/v1/software/mystride/index.json b/site/public/v1/software/mystride/index.json new file mode 100644 index 000000000000..07266fb684f4 --- /dev/null +++ b/site/public/v1/software/mystride/index.json @@ -0,0 +1,19 @@ +{ + "id": 6600, + "slug": "mystride", + "name": "mystride", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q55722863" + ], + "created_at": "2026-07-10T10:12:42.008638", + "updated_at": "2026-07-10T10:12:42.008638", + "url": "/v1/software/mystride" +} diff --git a/site/public/v1/software/mythweb/index.json b/site/public/v1/software/mythweb/index.json new file mode 100644 index 000000000000..13acdd82aaba --- /dev/null +++ b/site/public/v1/software/mythweb/index.json @@ -0,0 +1,19 @@ +{ + "id": 6601, + "slug": "mythweb", + "name": "mythweb", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127414877" + ], + "created_at": "2026-07-10T10:12:42.009650", + "updated_at": "2026-07-10T10:12:42.009650", + "url": "/v1/software/mythweb" +} diff --git a/site/public/v1/software/mytop/index.json b/site/public/v1/software/mytop/index.json new file mode 100644 index 000000000000..8ffd3af7acdc --- /dev/null +++ b/site/public/v1/software/mytop/index.json @@ -0,0 +1,19 @@ +{ + "id": 6602, + "slug": "mytop", + "name": "mytop", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60916524" + ], + "created_at": "2026-07-10T10:12:42.009650", + "updated_at": "2026-07-10T10:12:42.009650", + "url": "/v1/software/mytop" +} diff --git a/site/public/v1/software/mytraffic-saas/index.json b/site/public/v1/software/mytraffic-saas/index.json new file mode 100644 index 000000000000..ec9a71ef28af --- /dev/null +++ b/site/public/v1/software/mytraffic-saas/index.json @@ -0,0 +1,21 @@ +{ + "id": 6603, + "slug": "mytraffic-saas", + "name": "MyTraffic SaaS", + "release_date": null, + "developers": [ + "MyTraffic" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138855881" + ], + "created_at": "2026-07-10T10:12:42.009650", + "updated_at": "2026-07-10T10:12:42.009650", + "url": "/v1/software/mytraffic-saas" +} diff --git a/site/public/v1/software/mytuner-radio/index.json b/site/public/v1/software/mytuner-radio/index.json new file mode 100644 index 000000000000..35279d20235c --- /dev/null +++ b/site/public/v1/software/mytuner-radio/index.json @@ -0,0 +1,19 @@ +{ + "id": 6604, + "slug": "mytuner-radio", + "name": "MyTuner Radio", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25245665" + ], + "created_at": "2026-07-10T10:12:42.010638", + "updated_at": "2026-07-10T10:12:42.010638", + "url": "/v1/software/mytuner-radio" +} diff --git a/site/public/v1/software/n0va-desktop/index.json b/site/public/v1/software/n0va-desktop/index.json new file mode 100644 index 000000000000..6563cd669d23 --- /dev/null +++ b/site/public/v1/software/n0va-desktop/index.json @@ -0,0 +1,28 @@ +{ + "id": 6605, + "slug": "n0va-desktop", + "name": "N0va Desktop", + "release_date": "2020-08-04", + "developers": [ + "miHoYo" + ], + "publishers": [ + "miHoYo", + "COGNOSPHERE" + ], + "operating_systems": [], + "programming_languages": [ + "Kotlin" + ], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124317159" + ], + "created_at": "2026-07-10T10:12:42.010638", + "updated_at": "2026-07-10T10:12:42.010638", + "url": "/v1/software/n0va-desktop" +} diff --git a/site/public/v1/software/n8n-in-university-of-cadiz/index.json b/site/public/v1/software/n8n-in-university-of-cadiz/index.json new file mode 100644 index 000000000000..6dbba8232bcc --- /dev/null +++ b/site/public/v1/software/n8n-in-university-of-cadiz/index.json @@ -0,0 +1,19 @@ +{ + "id": 6606, + "slug": "n8n-in-university-of-cadiz", + "name": "N8N in University of Cadiz", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137886285" + ], + "created_at": "2026-07-10T10:12:42.010638", + "updated_at": "2026-07-10T10:12:42.010638", + "url": "/v1/software/n8n-in-university-of-cadiz" +} diff --git a/site/public/v1/software/n8n-mcp/index.json b/site/public/v1/software/n8n-mcp/index.json new file mode 100644 index 000000000000..5fed4bebae77 --- /dev/null +++ b/site/public/v1/software/n8n-mcp/index.json @@ -0,0 +1,25 @@ +{ + "id": 6607, + "slug": "n8n-mcp", + "name": "n8n-mcp", + "release_date": null, + "developers": [ + "AutomateLab" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "TypeScript" + ], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139962032" + ], + "created_at": "2026-07-10T10:12:42.011638", + "updated_at": "2026-07-10T10:12:42.011638", + "url": "/v1/software/n8n-mcp" +} diff --git a/site/public/v1/software/n8n/index.json b/site/public/v1/software/n8n/index.json new file mode 100644 index 000000000000..cc51061e48fc --- /dev/null +++ b/site/public/v1/software/n8n/index.json @@ -0,0 +1,22 @@ +{ + "id": 6608, + "slug": "n8n", + "name": "n8n", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Node.js", + "TypeScript" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130305687" + ], + "created_at": "2026-07-10T10:12:42.011638", + "updated_at": "2026-07-10T10:12:42.011638", + "url": "/v1/software/n8n" +} diff --git a/site/public/v1/software/naavi/index.json b/site/public/v1/software/naavi/index.json new file mode 100644 index 000000000000..0ca2a88748d4 --- /dev/null +++ b/site/public/v1/software/naavi/index.json @@ -0,0 +1,19 @@ +{ + "id": 6609, + "slug": "naavi", + "name": "Naavi", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q23955039" + ], + "created_at": "2026-07-10T10:12:42.011638", + "updated_at": "2026-07-10T10:12:42.011638", + "url": "/v1/software/naavi" +} diff --git a/site/public/v1/software/nacsport-video-analysis-software/index.json b/site/public/v1/software/nacsport-video-analysis-software/index.json new file mode 100644 index 000000000000..d29472318b39 --- /dev/null +++ b/site/public/v1/software/nacsport-video-analysis-software/index.json @@ -0,0 +1,19 @@ +{ + "id": 6610, + "slug": "nacsport-video-analysis-software", + "name": "Nacsport Video Analysis Software", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109535031" + ], + "created_at": "2026-07-10T10:12:42.011638", + "updated_at": "2026-07-10T10:12:42.011638", + "url": "/v1/software/nacsport-video-analysis-software" +} diff --git a/site/public/v1/software/naemon/index.json b/site/public/v1/software/naemon/index.json new file mode 100644 index 000000000000..7db043a15e24 --- /dev/null +++ b/site/public/v1/software/naemon/index.json @@ -0,0 +1,19 @@ +{ + "id": 6611, + "slug": "naemon", + "name": "Naemon", + "release_date": "2015-03-29", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q20707799" + ], + "created_at": "2026-07-10T10:12:42.011638", + "updated_at": "2026-07-10T10:12:42.011638", + "url": "/v1/software/naemon" +} diff --git a/site/public/v1/software/naeon/index.json b/site/public/v1/software/naeon/index.json new file mode 100644 index 000000000000..97b83a287700 --- /dev/null +++ b/site/public/v1/software/naeon/index.json @@ -0,0 +1,25 @@ +{ + "id": 6612, + "slug": "naeon", + "name": "Naeon", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Unix-like operating system" + ], + "programming_languages": [ + "GNU Bash" + ], + "licenses": [ + "Affero General Public License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111386239" + ], + "created_at": "2026-07-10T10:12:42.013147", + "updated_at": "2026-07-10T10:12:42.013147", + "url": "/v1/software/naeon" +} diff --git a/site/public/v1/software/nag-fortran-compiler/index.json b/site/public/v1/software/nag-fortran-compiler/index.json new file mode 100644 index 000000000000..67a8f4a3d551 --- /dev/null +++ b/site/public/v1/software/nag-fortran-compiler/index.json @@ -0,0 +1,19 @@ +{ + "id": 6613, + "slug": "nag-fortran-compiler", + "name": "NAG Fortran Compiler", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22692870" + ], + "created_at": "2026-07-10T10:12:42.013147", + "updated_at": "2026-07-10T10:12:42.013147", + "url": "/v1/software/nag-fortran-compiler" +} diff --git a/site/public/v1/software/nagarik-app/index.json b/site/public/v1/software/nagarik-app/index.json new file mode 100644 index 000000000000..f6a43e64a3e2 --- /dev/null +++ b/site/public/v1/software/nagarik-app/index.json @@ -0,0 +1,19 @@ +{ + "id": 6614, + "slug": "nagarik-app", + "name": "Nagarik App", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105162424" + ], + "created_at": "2026-07-10T10:12:42.013147", + "updated_at": "2026-07-10T10:12:42.013147", + "url": "/v1/software/nagarik-app" +} diff --git a/site/public/v1/software/nagios-snmp-plugins/index.json b/site/public/v1/software/nagios-snmp-plugins/index.json new file mode 100644 index 000000000000..1d6b057fb8ec --- /dev/null +++ b/site/public/v1/software/nagios-snmp-plugins/index.json @@ -0,0 +1,19 @@ +{ + "id": 6615, + "slug": "nagios-snmp-plugins", + "name": "nagios-snmp-plugins", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110788338" + ], + "created_at": "2026-07-10T10:12:42.014157", + "updated_at": "2026-07-10T10:12:42.014157", + "url": "/v1/software/nagios-snmp-plugins" +} diff --git a/site/public/v1/software/nagircbot/index.json b/site/public/v1/software/nagircbot/index.json new file mode 100644 index 000000000000..ab4001a56c25 --- /dev/null +++ b/site/public/v1/software/nagircbot/index.json @@ -0,0 +1,19 @@ +{ + "id": 6616, + "slug": "nagircbot", + "name": "nagircbot", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065572" + ], + "created_at": "2026-07-10T10:12:42.014157", + "updated_at": "2026-07-10T10:12:42.014157", + "url": "/v1/software/nagircbot" +} diff --git a/site/public/v1/software/nagstamon/index.json b/site/public/v1/software/nagstamon/index.json new file mode 100644 index 000000000000..3eaa6c34204d --- /dev/null +++ b/site/public/v1/software/nagstamon/index.json @@ -0,0 +1,19 @@ +{ + "id": 6617, + "slug": "nagstamon", + "name": "nagstamon", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62853528" + ], + "created_at": "2026-07-10T10:12:42.014157", + "updated_at": "2026-07-10T10:12:42.014157", + "url": "/v1/software/nagstamon" +} diff --git a/site/public/v1/software/nakala/index.json b/site/public/v1/software/nakala/index.json new file mode 100644 index 000000000000..89291688460d --- /dev/null +++ b/site/public/v1/software/nakala/index.json @@ -0,0 +1,19 @@ +{ + "id": 6618, + "slug": "nakala", + "name": "NAKALA", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085136" + ], + "created_at": "2026-07-10T10:12:42.015158", + "updated_at": "2026-07-10T10:12:42.015158", + "url": "/v1/software/nakala" +} diff --git a/site/public/v1/software/namcap/index.json b/site/public/v1/software/namcap/index.json new file mode 100644 index 000000000000..0f24d46bd428 --- /dev/null +++ b/site/public/v1/software/namcap/index.json @@ -0,0 +1,21 @@ +{ + "id": 6619, + "slug": "namcap", + "name": "namcap", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "GNU General Public License, version 2.0 or later" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117069907" + ], + "created_at": "2026-07-10T10:12:42.015158", + "updated_at": "2026-07-10T10:12:42.015158", + "url": "/v1/software/namcap" +} diff --git a/site/public/v1/software/namd/index.json b/site/public/v1/software/namd/index.json new file mode 100644 index 000000000000..b81896740ba8 --- /dev/null +++ b/site/public/v1/software/namd/index.json @@ -0,0 +1,21 @@ +{ + "id": 6620, + "slug": "namd", + "name": "NAMD", + "release_date": null, + "developers": [ + "University of Illinois Urbana-Champaign" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2078655" + ], + "created_at": "2026-07-10T10:12:42.015158", + "updated_at": "2026-07-10T10:12:42.015158", + "url": "/v1/software/namd" +} diff --git a/site/public/v1/software/namebench/index.json b/site/public/v1/software/namebench/index.json new file mode 100644 index 000000000000..2675b9378f40 --- /dev/null +++ b/site/public/v1/software/namebench/index.json @@ -0,0 +1,19 @@ +{ + "id": 6621, + "slug": "namebench", + "name": "Namebench", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q23017276" + ], + "created_at": "2026-07-10T10:12:42.016157", + "updated_at": "2026-07-10T10:12:42.016157", + "url": "/v1/software/namebench" +} diff --git a/site/public/v1/software/nana-c/index.json b/site/public/v1/software/nana-c/index.json new file mode 100644 index 000000000000..e45ff130edaa --- /dev/null +++ b/site/public/v1/software/nana-c/index.json @@ -0,0 +1,21 @@ +{ + "id": 6622, + "slug": "nana-c", + "name": "Nana C++", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22093484" + ], + "created_at": "2026-07-10T10:12:42.016157", + "updated_at": "2026-07-10T10:12:42.016157", + "url": "/v1/software/nana-c" +} diff --git a/site/public/v1/software/nana-music/index.json b/site/public/v1/software/nana-music/index.json new file mode 100644 index 000000000000..328fbebe5887 --- /dev/null +++ b/site/public/v1/software/nana-music/index.json @@ -0,0 +1,21 @@ +{ + "id": 6623, + "slug": "nana-music", + "name": "Nana Music", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "iOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60990348" + ], + "created_at": "2026-07-10T10:12:42.016157", + "updated_at": "2026-07-10T10:12:42.016157", + "url": "/v1/software/nana-music" +} diff --git a/site/public/v1/software/nana/index.json b/site/public/v1/software/nana/index.json new file mode 100644 index 000000000000..cb27504d52e8 --- /dev/null +++ b/site/public/v1/software/nana/index.json @@ -0,0 +1,19 @@ +{ + "id": 6624, + "slug": "nana", + "name": "Nana", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76185808" + ], + "created_at": "2026-07-10T10:12:42.016157", + "updated_at": "2026-07-10T10:12:42.016157", + "url": "/v1/software/nana" +} diff --git a/site/public/v1/software/nanitor/index.json b/site/public/v1/software/nanitor/index.json new file mode 100644 index 000000000000..84d1aed53e11 --- /dev/null +++ b/site/public/v1/software/nanitor/index.json @@ -0,0 +1,28 @@ +{ + "id": 6625, + "slug": "nanitor", + "name": "Nanitor", + "release_date": null, + "developers": [ + "Nanitor" + ], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [ + "computer security software" + ], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134963806" + ], + "created_at": "2026-07-10T10:12:42.017156", + "updated_at": "2026-07-10T10:12:42.017156", + "url": "/v1/software/nanitor" +} diff --git a/site/public/v1/software/nano-simbox-imd/index.json b/site/public/v1/software/nano-simbox-imd/index.json new file mode 100644 index 000000000000..0e0df6a9ea25 --- /dev/null +++ b/site/public/v1/software/nano-simbox-imd/index.json @@ -0,0 +1,28 @@ +{ + "id": 6626, + "slug": "nano-simbox-imd", + "name": "Nano Simbox iMD", + "release_date": "2017-10-30", + "developers": [ + "Interactive Scientific (United Kingdom)" + ], + "publishers": [ + "Interactive Scientific (United Kingdom)" + ], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [ + "science software" + ], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q55376746" + ], + "created_at": "2026-07-10T10:12:42.017156", + "updated_at": "2026-07-10T10:12:42.017156", + "url": "/v1/software/nano-simbox-imd" +} diff --git a/site/public/v1/software/nano-threads/index.json b/site/public/v1/software/nano-threads/index.json new file mode 100644 index 000000000000..f490d8d1d688 --- /dev/null +++ b/site/public/v1/software/nano-threads/index.json @@ -0,0 +1,19 @@ +{ + "id": 6627, + "slug": "nano-threads", + "name": "Nano-threads", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6963948" + ], + "created_at": "2026-07-10T10:12:42.017156", + "updated_at": "2026-07-10T10:12:42.017156", + "url": "/v1/software/nano-threads" +} diff --git a/site/public/v1/software/nanocad/index.json b/site/public/v1/software/nanocad/index.json new file mode 100644 index 000000000000..1648ae159519 --- /dev/null +++ b/site/public/v1/software/nanocad/index.json @@ -0,0 +1,21 @@ +{ + "id": 6628, + "slug": "nanocad", + "name": "NanoCAD", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3870145" + ], + "created_at": "2026-07-10T10:12:42.018157", + "updated_at": "2026-07-10T10:12:42.018157", + "url": "/v1/software/nanocad" +} diff --git a/site/public/v1/software/nanodash/index.json b/site/public/v1/software/nanodash/index.json new file mode 100644 index 000000000000..b9c9bb0fc4ce --- /dev/null +++ b/site/public/v1/software/nanodash/index.json @@ -0,0 +1,22 @@ +{ + "id": 6629, + "slug": "nanodash", + "name": "Nanodash", + "release_date": null, + "developers": [ + "Tobias Kuhn", + "Knowledge Pixels" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122911362" + ], + "created_at": "2026-07-10T10:12:42.018157", + "updated_at": "2026-07-10T10:12:42.018157", + "url": "/v1/software/nanodash" +} diff --git a/site/public/v1/software/nanoflann/index.json b/site/public/v1/software/nanoflann/index.json new file mode 100644 index 000000000000..3de1b055afeb --- /dev/null +++ b/site/public/v1/software/nanoflann/index.json @@ -0,0 +1,19 @@ +{ + "id": 6630, + "slug": "nanoflann", + "name": "nanoflann", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124844885" + ], + "created_at": "2026-07-10T10:12:42.018157", + "updated_at": "2026-07-10T10:12:42.018157", + "url": "/v1/software/nanoflann" +} diff --git a/site/public/v1/software/nanohttpd/index.json b/site/public/v1/software/nanohttpd/index.json new file mode 100644 index 000000000000..bc1f2036407c --- /dev/null +++ b/site/public/v1/software/nanohttpd/index.json @@ -0,0 +1,23 @@ +{ + "id": 6631, + "slug": "nanohttpd", + "name": "NanoHTTPD", + "release_date": "2003-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Java" + ], + "licenses": [ + "3-clause BSD License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6963953" + ], + "created_at": "2026-07-10T10:12:42.018157", + "updated_at": "2026-07-10T10:12:42.019157", + "url": "/v1/software/nanohttpd" +} diff --git a/site/public/v1/software/nanolanguage/index.json b/site/public/v1/software/nanolanguage/index.json new file mode 100644 index 000000000000..02a66d929873 --- /dev/null +++ b/site/public/v1/software/nanolanguage/index.json @@ -0,0 +1,19 @@ +{ + "id": 6632, + "slug": "nanolanguage", + "name": "NanoLanguage", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6963961" + ], + "created_at": "2026-07-10T10:12:42.019157", + "updated_at": "2026-07-10T10:12:42.019157", + "url": "/v1/software/nanolanguage" +} diff --git a/site/public/v1/software/nanovg/index.json b/site/public/v1/software/nanovg/index.json new file mode 100644 index 000000000000..b01a33c2d55f --- /dev/null +++ b/site/public/v1/software/nanovg/index.json @@ -0,0 +1,21 @@ +{ + "id": 6633, + "slug": "nanovg", + "name": "nanovg", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "zlib License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117803990" + ], + "created_at": "2026-07-10T10:12:42.019157", + "updated_at": "2026-07-10T10:12:42.019157", + "url": "/v1/software/nanovg" +} diff --git a/site/public/v1/software/naoyun/index.json b/site/public/v1/software/naoyun/index.json new file mode 100644 index 000000000000..45fba39ea4ea --- /dev/null +++ b/site/public/v1/software/naoyun/index.json @@ -0,0 +1,19 @@ +{ + "id": 6634, + "slug": "naoyun", + "name": "Naoyun", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087837" + ], + "created_at": "2026-07-10T10:12:42.020156", + "updated_at": "2026-07-10T10:12:42.020156", + "url": "/v1/software/naoyun" +} diff --git a/site/public/v1/software/napster-q1965067/index.json b/site/public/v1/software/napster-q1965067/index.json new file mode 100644 index 000000000000..cc003166dcef --- /dev/null +++ b/site/public/v1/software/napster-q1965067/index.json @@ -0,0 +1,19 @@ +{ + "id": 6635, + "slug": "napster-q1965067", + "name": "Napster", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1965067" + ], + "created_at": "2026-07-10T10:12:42.020156", + "updated_at": "2026-07-10T10:12:42.020156", + "url": "/v1/software/napster-q1965067" +} diff --git a/site/public/v1/software/napster/index.json b/site/public/v1/software/napster/index.json new file mode 100644 index 000000000000..750a0eb5c8f8 --- /dev/null +++ b/site/public/v1/software/napster/index.json @@ -0,0 +1,24 @@ +{ + "id": 6636, + "slug": "napster", + "name": "Napster", + "release_date": null, + "developers": [ + "Sean Parker", + "Shawn Fanning" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "shareware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q275141" + ], + "created_at": "2026-07-10T10:12:42.020156", + "updated_at": "2026-07-10T10:12:42.020156", + "url": "/v1/software/napster" +} diff --git a/site/public/v1/software/nars2000/index.json b/site/public/v1/software/nars2000/index.json new file mode 100644 index 000000000000..b57a246c60fe --- /dev/null +++ b/site/public/v1/software/nars2000/index.json @@ -0,0 +1,19 @@ +{ + "id": 6637, + "slug": "nars2000", + "name": "NARS2000", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130374558" + ], + "created_at": "2026-07-10T10:12:42.020156", + "updated_at": "2026-07-10T10:12:42.020156", + "url": "/v1/software/nars2000" +} diff --git a/site/public/v1/software/narus/index.json b/site/public/v1/software/narus/index.json new file mode 100644 index 000000000000..bac47bcddd31 --- /dev/null +++ b/site/public/v1/software/narus/index.json @@ -0,0 +1,19 @@ +{ + "id": 6638, + "slug": "narus", + "name": "Narus", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q647506" + ], + "created_at": "2026-07-10T10:12:42.021157", + "updated_at": "2026-07-10T10:12:42.021157", + "url": "/v1/software/narus" +} diff --git a/site/public/v1/software/nas-parallel-benchmarks/index.json b/site/public/v1/software/nas-parallel-benchmarks/index.json new file mode 100644 index 000000000000..88cab6c8ad95 --- /dev/null +++ b/site/public/v1/software/nas-parallel-benchmarks/index.json @@ -0,0 +1,21 @@ +{ + "id": 6639, + "slug": "nas-parallel-benchmarks", + "name": "NAS Parallel Benchmarks", + "release_date": null, + "developers": [ + "NASA Advanced Supercomputing Division" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4044819" + ], + "created_at": "2026-07-10T10:12:42.021157", + "updated_at": "2026-07-10T10:12:42.021157", + "url": "/v1/software/nas-parallel-benchmarks" +} diff --git a/site/public/v1/software/nat-braille/index.json b/site/public/v1/software/nat-braille/index.json new file mode 100644 index 000000000000..147c1d73d9a6 --- /dev/null +++ b/site/public/v1/software/nat-braille/index.json @@ -0,0 +1,19 @@ +{ + "id": 6640, + "slug": "nat-braille", + "name": "NAT Braille", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3336282" + ], + "created_at": "2026-07-10T10:12:42.022161", + "updated_at": "2026-07-10T10:12:42.022161", + "url": "/v1/software/nat-braille" +} diff --git a/site/public/v1/software/nat-traverse/index.json b/site/public/v1/software/nat-traverse/index.json new file mode 100644 index 000000000000..32e280de46ba --- /dev/null +++ b/site/public/v1/software/nat-traverse/index.json @@ -0,0 +1,19 @@ +{ + "id": 6641, + "slug": "nat-traverse", + "name": "nat-traverse", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62857691" + ], + "created_at": "2026-07-10T10:12:42.022161", + "updated_at": "2026-07-10T10:12:42.022161", + "url": "/v1/software/nat-traverse" +} diff --git a/site/public/v1/software/natachata/index.json b/site/public/v1/software/natachata/index.json new file mode 100644 index 000000000000..cb4a26e9a65c --- /dev/null +++ b/site/public/v1/software/natachata/index.json @@ -0,0 +1,19 @@ +{ + "id": 6642, + "slug": "natachata", + "name": "Natachata", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16977319" + ], + "created_at": "2026-07-10T10:12:42.022161", + "updated_at": "2026-07-10T10:12:42.022161", + "url": "/v1/software/natachata" +} diff --git a/site/public/v1/software/national-integrated-ballistic-information-network/index.json b/site/public/v1/software/national-integrated-ballistic-information-network/index.json new file mode 100644 index 000000000000..03991e95180b --- /dev/null +++ b/site/public/v1/software/national-integrated-ballistic-information-network/index.json @@ -0,0 +1,19 @@ +{ + "id": 6643, + "slug": "national-integrated-ballistic-information-network", + "name": "National Integrated Ballistic Information Network", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16955194" + ], + "created_at": "2026-07-10T10:12:42.023157", + "updated_at": "2026-07-10T10:12:42.023157", + "url": "/v1/software/national-integrated-ballistic-information-network" +} diff --git a/site/public/v1/software/national-integrated-immigration-system/index.json b/site/public/v1/software/national-integrated-immigration-system/index.json new file mode 100644 index 000000000000..69f38d91bf03 --- /dev/null +++ b/site/public/v1/software/national-integrated-immigration-system/index.json @@ -0,0 +1,19 @@ +{ + "id": 6644, + "slug": "national-integrated-immigration-system", + "name": "National Integrated Immigration System", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138544181" + ], + "created_at": "2026-07-10T10:12:42.023157", + "updated_at": "2026-07-10T10:12:42.023157", + "url": "/v1/software/national-integrated-immigration-system" +} diff --git a/site/public/v1/software/national-parking-platform/index.json b/site/public/v1/software/national-parking-platform/index.json new file mode 100644 index 000000000000..50b6560f9e47 --- /dev/null +++ b/site/public/v1/software/national-parking-platform/index.json @@ -0,0 +1,19 @@ +{ + "id": 6645, + "slug": "national-parking-platform", + "name": "National Parking Platform", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134716929" + ], + "created_at": "2026-07-10T10:12:42.023157", + "updated_at": "2026-07-10T10:12:42.023157", + "url": "/v1/software/national-parking-platform" +} diff --git a/site/public/v1/software/native-and-foreign-format/index.json b/site/public/v1/software/native-and-foreign-format/index.json new file mode 100644 index 000000000000..3c710a05dba4 --- /dev/null +++ b/site/public/v1/software/native-and-foreign-format/index.json @@ -0,0 +1,19 @@ +{ + "id": 6646, + "slug": "native-and-foreign-format", + "name": "Native and foreign format", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6980089" + ], + "created_at": "2026-07-10T10:12:42.024157", + "updated_at": "2026-07-10T10:12:42.024157", + "url": "/v1/software/native-and-foreign-format" +} diff --git a/site/public/v1/software/native/index.json b/site/public/v1/software/native/index.json new file mode 100644 index 000000000000..90178c27fa36 --- /dev/null +++ b/site/public/v1/software/native/index.json @@ -0,0 +1,19 @@ +{ + "id": 6647, + "slug": "native", + "name": "native", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2187908" + ], + "created_at": "2026-07-10T10:12:42.024157", + "updated_at": "2026-07-10T10:12:42.024157", + "url": "/v1/software/native" +} diff --git a/site/public/v1/software/natpass/index.json b/site/public/v1/software/natpass/index.json new file mode 100644 index 000000000000..befd5acad51b --- /dev/null +++ b/site/public/v1/software/natpass/index.json @@ -0,0 +1,19 @@ +{ + "id": 6648, + "slug": "natpass", + "name": "Natpass", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6980215" + ], + "created_at": "2026-07-10T10:12:42.024157", + "updated_at": "2026-07-10T10:12:42.024157", + "url": "/v1/software/natpass" +} diff --git a/site/public/v1/software/natural-cycles/index.json b/site/public/v1/software/natural-cycles/index.json new file mode 100644 index 000000000000..b7540909ce3b --- /dev/null +++ b/site/public/v1/software/natural-cycles/index.json @@ -0,0 +1,19 @@ +{ + "id": 6649, + "slug": "natural-cycles", + "name": "Natural Cycles", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28136570" + ], + "created_at": "2026-07-10T10:12:42.025158", + "updated_at": "2026-07-10T10:12:42.025158", + "url": "/v1/software/natural-cycles" +} diff --git a/site/public/v1/software/nature-mobile/index.json b/site/public/v1/software/nature-mobile/index.json new file mode 100644 index 000000000000..83ef6e7210de --- /dev/null +++ b/site/public/v1/software/nature-mobile/index.json @@ -0,0 +1,19 @@ +{ + "id": 6650, + "slug": "nature-mobile", + "name": "Nature mobile", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087838" + ], + "created_at": "2026-07-10T10:12:42.025158", + "updated_at": "2026-07-10T10:12:42.025158", + "url": "/v1/software/nature-mobile" +} diff --git a/site/public/v1/software/naval-observatory-vector-astrometry-subroutines/index.json b/site/public/v1/software/naval-observatory-vector-astrometry-subroutines/index.json new file mode 100644 index 000000000000..08dcaa01f0d0 --- /dev/null +++ b/site/public/v1/software/naval-observatory-vector-astrometry-subroutines/index.json @@ -0,0 +1,21 @@ +{ + "id": 6651, + "slug": "naval-observatory-vector-astrometry-subroutines", + "name": "Naval Observatory Vector Astrometry Subroutines", + "release_date": null, + "developers": [ + "United States Naval Observatory" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17042610" + ], + "created_at": "2026-07-10T10:12:42.025158", + "updated_at": "2026-07-10T10:12:42.025158", + "url": "/v1/software/naval-observatory-vector-astrometry-subroutines" +} diff --git a/site/public/v1/software/navcis/index.json b/site/public/v1/software/navcis/index.json new file mode 100644 index 000000000000..0b2f3d3df1dc --- /dev/null +++ b/site/public/v1/software/navcis/index.json @@ -0,0 +1,19 @@ +{ + "id": 6652, + "slug": "navcis", + "name": "NavCIS", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6981562" + ], + "created_at": "2026-07-10T10:12:42.026157", + "updated_at": "2026-07-10T10:12:42.026157", + "url": "/v1/software/navcis" +} diff --git a/site/public/v1/software/naver-pay/index.json b/site/public/v1/software/naver-pay/index.json new file mode 100644 index 000000000000..d5b3e43e59c4 --- /dev/null +++ b/site/public/v1/software/naver-pay/index.json @@ -0,0 +1,21 @@ +{ + "id": 6653, + "slug": "naver-pay", + "name": "Naver Pay", + "release_date": null, + "developers": [ + "Naver Corporation" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q24861593" + ], + "created_at": "2026-07-10T10:12:42.026157", + "updated_at": "2026-07-10T10:12:42.026157", + "url": "/v1/software/naver-pay" +} diff --git a/site/public/v1/software/naver-series/index.json b/site/public/v1/software/naver-series/index.json new file mode 100644 index 000000000000..2f363a806dda --- /dev/null +++ b/site/public/v1/software/naver-series/index.json @@ -0,0 +1,19 @@ +{ + "id": 6654, + "slug": "naver-series", + "name": "NAVER Series", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137597841" + ], + "created_at": "2026-07-10T10:12:42.026157", + "updated_at": "2026-07-10T10:12:42.026157", + "url": "/v1/software/naver-series" +} diff --git a/site/public/v1/software/naver-vaccine/index.json b/site/public/v1/software/naver-vaccine/index.json new file mode 100644 index 000000000000..87b630ba98de --- /dev/null +++ b/site/public/v1/software/naver-vaccine/index.json @@ -0,0 +1,21 @@ +{ + "id": 6655, + "slug": "naver-vaccine", + "name": "Naver Vaccine", + "release_date": null, + "developers": [ + "Naver Corporation" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q12590259" + ], + "created_at": "2026-07-10T10:12:42.027157", + "updated_at": "2026-07-10T10:12:42.027157", + "url": "/v1/software/naver-vaccine" +} diff --git a/site/public/v1/software/navgem/index.json b/site/public/v1/software/navgem/index.json new file mode 100644 index 000000000000..a96347638da1 --- /dev/null +++ b/site/public/v1/software/navgem/index.json @@ -0,0 +1,19 @@ +{ + "id": 6656, + "slug": "navgem", + "name": "NAVGEM", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6952622" + ], + "created_at": "2026-07-10T10:12:42.027157", + "updated_at": "2026-07-10T10:12:42.027157", + "url": "/v1/software/navgem" +} diff --git a/site/public/v1/software/navicat-for-mysql/index.json b/site/public/v1/software/navicat-for-mysql/index.json new file mode 100644 index 000000000000..13da1dd81d73 --- /dev/null +++ b/site/public/v1/software/navicat-for-mysql/index.json @@ -0,0 +1,19 @@ +{ + "id": 6657, + "slug": "navicat-for-mysql", + "name": "Navicat for MySQL", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085137" + ], + "created_at": "2026-07-10T10:12:42.027157", + "updated_at": "2026-07-10T10:12:42.027157", + "url": "/v1/software/navicat-for-mysql" +} diff --git a/site/public/v1/software/navifon/index.json b/site/public/v1/software/navifon/index.json new file mode 100644 index 000000000000..9c8766d61551 --- /dev/null +++ b/site/public/v1/software/navifon/index.json @@ -0,0 +1,21 @@ +{ + "id": 6658, + "slug": "navifon", + "name": "Navifon", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Windows Mobile" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4045088" + ], + "created_at": "2026-07-10T10:12:42.028157", + "updated_at": "2026-07-10T10:12:42.028157", + "url": "/v1/software/navifon" +} diff --git a/site/public/v1/software/navigraph/index.json b/site/public/v1/software/navigraph/index.json new file mode 100644 index 000000000000..26fda0ae77a0 --- /dev/null +++ b/site/public/v1/software/navigraph/index.json @@ -0,0 +1,19 @@ +{ + "id": 6659, + "slug": "navigraph", + "name": "Navigraph", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138748632" + ], + "created_at": "2026-07-10T10:12:42.028157", + "updated_at": "2026-07-10T10:12:42.028157", + "url": "/v1/software/navigraph" +} diff --git a/site/public/v1/software/navisworks/index.json b/site/public/v1/software/navisworks/index.json new file mode 100644 index 000000000000..d1010f2afc00 --- /dev/null +++ b/site/public/v1/software/navisworks/index.json @@ -0,0 +1,23 @@ +{ + "id": 6660, + "slug": "navisworks", + "name": "Navisworks", + "release_date": null, + "developers": [ + "Autodesk" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6188767" + ], + "created_at": "2026-07-10T10:12:42.028157", + "updated_at": "2026-07-10T10:12:42.028157", + "url": "/v1/software/navisworks" +} diff --git a/site/public/v1/software/navmap/index.json b/site/public/v1/software/navmap/index.json new file mode 100644 index 000000000000..5bacc5a3d0ba --- /dev/null +++ b/site/public/v1/software/navmap/index.json @@ -0,0 +1,19 @@ +{ + "id": 6661, + "slug": "navmap", + "name": "NAVMAP", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121631709" + ], + "created_at": "2026-07-10T10:12:42.029159", + "updated_at": "2026-07-10T10:12:42.029159", + "url": "/v1/software/navmap" +} diff --git a/site/public/v1/software/nbench/index.json b/site/public/v1/software/nbench/index.json new file mode 100644 index 000000000000..faee81d42bb8 --- /dev/null +++ b/site/public/v1/software/nbench/index.json @@ -0,0 +1,21 @@ +{ + "id": 6662, + "slug": "nbench", + "name": "NBench", + "release_date": null, + "developers": [ + "Byte" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6952883" + ], + "created_at": "2026-07-10T10:12:42.029159", + "updated_at": "2026-07-10T10:12:42.029159", + "url": "/v1/software/nbench" +} diff --git a/site/public/v1/software/nbtstat/index.json b/site/public/v1/software/nbtstat/index.json new file mode 100644 index 000000000000..9e5f2f336aef --- /dev/null +++ b/site/public/v1/software/nbtstat/index.json @@ -0,0 +1,19 @@ +{ + "id": 6663, + "slug": "nbtstat", + "name": "Nbtstat", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6983630" + ], + "created_at": "2026-07-10T10:12:42.029159", + "updated_at": "2026-07-10T10:12:42.029159", + "url": "/v1/software/nbtstat" +} diff --git a/site/public/v1/software/ncdc/index.json b/site/public/v1/software/ncdc/index.json new file mode 100644 index 000000000000..8dd2ea45517d --- /dev/null +++ b/site/public/v1/software/ncdc/index.json @@ -0,0 +1,19 @@ +{ + "id": 6664, + "slug": "ncdc", + "name": "ncdc", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975242" + ], + "created_at": "2026-07-10T10:12:42.030157", + "updated_at": "2026-07-10T10:12:42.030157", + "url": "/v1/software/ncdc" +} diff --git a/site/public/v1/software/ncftpd/index.json b/site/public/v1/software/ncftpd/index.json new file mode 100644 index 000000000000..7139e3638878 --- /dev/null +++ b/site/public/v1/software/ncftpd/index.json @@ -0,0 +1,19 @@ +{ + "id": 6665, + "slug": "ncftpd", + "name": "NcFTPd", + "release_date": "1991-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6983631" + ], + "created_at": "2026-07-10T10:12:42.030157", + "updated_at": "2026-07-10T10:12:42.030157", + "url": "/v1/software/ncftpd" +} diff --git a/site/public/v1/software/ncomm/index.json b/site/public/v1/software/ncomm/index.json new file mode 100644 index 000000000000..b2ef418f3ff8 --- /dev/null +++ b/site/public/v1/software/ncomm/index.json @@ -0,0 +1,21 @@ +{ + "id": 6666, + "slug": "ncomm", + "name": "NComm", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "AmigaOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6953261" + ], + "created_at": "2026-07-10T10:12:42.030157", + "updated_at": "2026-07-10T10:12:42.030157", + "url": "/v1/software/ncomm" +} diff --git a/site/public/v1/software/ncored/index.json b/site/public/v1/software/ncored/index.json new file mode 100644 index 000000000000..8f049940a88c --- /dev/null +++ b/site/public/v1/software/ncored/index.json @@ -0,0 +1,24 @@ +{ + "id": 6667, + "slug": "ncored", + "name": "Ncored", + "release_date": null, + "developers": [ + "Noir architects" + ], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140007578" + ], + "created_at": "2026-07-10T10:12:42.031243", + "updated_at": "2026-07-10T10:12:42.031243", + "url": "/v1/software/ncored" +} diff --git a/site/public/v1/software/ncsim/index.json b/site/public/v1/software/ncsim/index.json new file mode 100644 index 000000000000..a893f2c88280 --- /dev/null +++ b/site/public/v1/software/ncsim/index.json @@ -0,0 +1,21 @@ +{ + "id": 6668, + "slug": "ncsim", + "name": "NCSim", + "release_date": null, + "developers": [ + "Cadence Design Systems" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6953219" + ], + "created_at": "2026-07-10T10:12:42.031243", + "updated_at": "2026-07-10T10:12:42.031243", + "url": "/v1/software/ncsim" +} diff --git a/site/public/v1/software/ncss/index.json b/site/public/v1/software/ncss/index.json new file mode 100644 index 000000000000..9df197bd6243 --- /dev/null +++ b/site/public/v1/software/ncss/index.json @@ -0,0 +1,19 @@ +{ + "id": 6669, + "slug": "ncss", + "name": "NCSS", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17042611" + ], + "created_at": "2026-07-10T10:12:42.031243", + "updated_at": "2026-07-10T10:12:42.031243", + "url": "/v1/software/ncss" +} diff --git a/site/public/v1/software/nd-cosmos/index.json b/site/public/v1/software/nd-cosmos/index.json new file mode 100644 index 000000000000..185570211853 --- /dev/null +++ b/site/public/v1/software/nd-cosmos/index.json @@ -0,0 +1,19 @@ +{ + "id": 6670, + "slug": "nd-cosmos", + "name": "ND-COSMOS", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16979550" + ], + "created_at": "2026-07-10T10:12:42.032223", + "updated_at": "2026-07-10T10:12:42.032223", + "url": "/v1/software/nd-cosmos" +} diff --git a/site/public/v1/software/ndepend/index.json b/site/public/v1/software/ndepend/index.json new file mode 100644 index 000000000000..e75c977d1c25 --- /dev/null +++ b/site/public/v1/software/ndepend/index.json @@ -0,0 +1,19 @@ +{ + "id": 6671, + "slug": "ndepend", + "name": "NDepend", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3334327" + ], + "created_at": "2026-07-10T10:12:42.032223", + "updated_at": "2026-07-10T10:12:42.032223", + "url": "/v1/software/ndepend" +} diff --git a/site/public/v1/software/ndisc6/index.json b/site/public/v1/software/ndisc6/index.json new file mode 100644 index 000000000000..8f1feb541377 --- /dev/null +++ b/site/public/v1/software/ndisc6/index.json @@ -0,0 +1,19 @@ +{ + "id": 6672, + "slug": "ndisc6", + "name": "NDisc6", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62856387" + ], + "created_at": "2026-07-10T10:12:42.032223", + "updated_at": "2026-07-10T10:12:42.032223", + "url": "/v1/software/ndisc6" +} diff --git a/site/public/v1/software/ndoutils/index.json b/site/public/v1/software/ndoutils/index.json new file mode 100644 index 000000000000..2071bdf61001 --- /dev/null +++ b/site/public/v1/software/ndoutils/index.json @@ -0,0 +1,19 @@ +{ + "id": 6673, + "slug": "ndoutils", + "name": "NDOUtils", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3334325" + ], + "created_at": "2026-07-10T10:12:42.033166", + "updated_at": "2026-07-10T10:12:42.033166", + "url": "/v1/software/ndoutils" +} diff --git a/site/public/v1/software/nearby-share/index.json b/site/public/v1/software/nearby-share/index.json new file mode 100644 index 000000000000..931a47dcf215 --- /dev/null +++ b/site/public/v1/software/nearby-share/index.json @@ -0,0 +1,21 @@ +{ + "id": 6674, + "slug": "nearby-share", + "name": "Nearby Share", + "release_date": null, + "developers": [ + "Google" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q98098840" + ], + "created_at": "2026-07-10T10:12:42.033166", + "updated_at": "2026-07-10T10:12:42.033166", + "url": "/v1/software/nearby-share" +} diff --git a/site/public/v1/software/nearpod/index.json b/site/public/v1/software/nearpod/index.json new file mode 100644 index 000000000000..200a140c0df3 --- /dev/null +++ b/site/public/v1/software/nearpod/index.json @@ -0,0 +1,19 @@ +{ + "id": 6675, + "slug": "nearpod", + "name": "Nearpod", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25021614" + ], + "created_at": "2026-07-10T10:12:42.033166", + "updated_at": "2026-07-10T10:12:42.033166", + "url": "/v1/software/nearpod" +} diff --git a/site/public/v1/software/neatline/index.json b/site/public/v1/software/neatline/index.json new file mode 100644 index 000000000000..036675f7e443 --- /dev/null +++ b/site/public/v1/software/neatline/index.json @@ -0,0 +1,19 @@ +{ + "id": 6676, + "slug": "neatline", + "name": "Neatline", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085138" + ], + "created_at": "2026-07-10T10:12:42.034156", + "updated_at": "2026-07-10T10:12:42.034156", + "url": "/v1/software/neatline" +} diff --git a/site/public/v1/software/nebulagraph/index.json b/site/public/v1/software/nebulagraph/index.json new file mode 100644 index 000000000000..14848ed6bfdb --- /dev/null +++ b/site/public/v1/software/nebulagraph/index.json @@ -0,0 +1,23 @@ +{ + "id": 6677, + "slug": "nebulagraph", + "name": "NebulaGraph", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Java" + ], + "licenses": [ + "Apache Software License 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115925815" + ], + "created_at": "2026-07-10T10:12:42.034156", + "updated_at": "2026-07-10T10:12:42.034156", + "url": "/v1/software/nebulagraph" +} diff --git a/site/public/v1/software/nec-hydrastor/index.json b/site/public/v1/software/nec-hydrastor/index.json new file mode 100644 index 000000000000..a3993e42fa2e --- /dev/null +++ b/site/public/v1/software/nec-hydrastor/index.json @@ -0,0 +1,19 @@ +{ + "id": 6678, + "slug": "nec-hydrastor", + "name": "NEC HYDRAstor", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q19885359" + ], + "created_at": "2026-07-10T10:12:42.034156", + "updated_at": "2026-07-10T10:12:42.034156", + "url": "/v1/software/nec-hydrastor" +} diff --git a/site/public/v1/software/needrestart/index.json b/site/public/v1/software/needrestart/index.json new file mode 100644 index 000000000000..f83250ae1135 --- /dev/null +++ b/site/public/v1/software/needrestart/index.json @@ -0,0 +1,19 @@ +{ + "id": 6679, + "slug": "needrestart", + "name": "needrestart", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975244" + ], + "created_at": "2026-07-10T10:12:42.035156", + "updated_at": "2026-07-10T10:12:42.035156", + "url": "/v1/software/needrestart" +} diff --git a/site/public/v1/software/neighbornode/index.json b/site/public/v1/software/neighbornode/index.json new file mode 100644 index 000000000000..110621c6f822 --- /dev/null +++ b/site/public/v1/software/neighbornode/index.json @@ -0,0 +1,19 @@ +{ + "id": 6680, + "slug": "neighbornode", + "name": "Neighbornode", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6988123" + ], + "created_at": "2026-07-10T10:12:42.035156", + "updated_at": "2026-07-10T10:12:42.035156", + "url": "/v1/software/neighbornode" +} diff --git a/site/public/v1/software/nek5000/index.json b/site/public/v1/software/nek5000/index.json new file mode 100644 index 000000000000..39b3b4842691 --- /dev/null +++ b/site/public/v1/software/nek5000/index.json @@ -0,0 +1,19 @@ +{ + "id": 6681, + "slug": "nek5000", + "name": "Nek5000", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118175564" + ], + "created_at": "2026-07-10T10:12:42.035156", + "updated_at": "2026-07-10T10:12:42.035156", + "url": "/v1/software/nek5000" +} diff --git a/site/public/v1/software/nekoai/index.json b/site/public/v1/software/nekoai/index.json new file mode 100644 index 000000000000..b6da69ebcc84 --- /dev/null +++ b/site/public/v1/software/nekoai/index.json @@ -0,0 +1,26 @@ +{ + "id": 6682, + "slug": "nekoai", + "name": "NekoAI", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Fedora Linux", + "Microsoft Windows" + ], + "programming_languages": [ + "TypeScript" + ], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140106440" + ], + "created_at": "2026-07-10T10:12:42.036158", + "updated_at": "2026-07-10T10:12:42.036158", + "url": "/v1/software/nekoai" +} diff --git a/site/public/v1/software/nemesis/index.json b/site/public/v1/software/nemesis/index.json new file mode 100644 index 000000000000..4d45fd6528bf --- /dev/null +++ b/site/public/v1/software/nemesis/index.json @@ -0,0 +1,19 @@ +{ + "id": 6683, + "slug": "nemesis", + "name": "nemesis", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60917674" + ], + "created_at": "2026-07-10T10:12:42.036158", + "updated_at": "2026-07-10T10:12:42.036158", + "url": "/v1/software/nemesis" +} diff --git a/site/public/v1/software/nemexia/index.json b/site/public/v1/software/nemexia/index.json new file mode 100644 index 000000000000..d567fc6f326a --- /dev/null +++ b/site/public/v1/software/nemexia/index.json @@ -0,0 +1,23 @@ +{ + "id": 6684, + "slug": "nemexia", + "name": "Nemexia", + "release_date": "2009-01-01", + "developers": [ + "XS Software" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [ + "real-time strategy" + ], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18756602" + ], + "created_at": "2026-07-10T10:12:42.036158", + "updated_at": "2026-07-10T10:12:42.036158", + "url": "/v1/software/nemexia" +} diff --git a/site/public/v1/software/nemid/index.json b/site/public/v1/software/nemid/index.json new file mode 100644 index 000000000000..a3eec3b68dec --- /dev/null +++ b/site/public/v1/software/nemid/index.json @@ -0,0 +1,19 @@ +{ + "id": 6685, + "slug": "nemid", + "name": "NemID", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4993263" + ], + "created_at": "2026-07-10T10:12:42.036158", + "updated_at": "2026-07-10T10:12:42.036158", + "url": "/v1/software/nemid" +} diff --git a/site/public/v1/software/nemo-nedimah-methods-ontology/index.json b/site/public/v1/software/nemo-nedimah-methods-ontology/index.json new file mode 100644 index 000000000000..b1f41a627c0b --- /dev/null +++ b/site/public/v1/software/nemo-nedimah-methods-ontology/index.json @@ -0,0 +1,19 @@ +{ + "id": 6686, + "slug": "nemo-nedimah-methods-ontology", + "name": "NeMO NeDiMAH Methods Ontology", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085139" + ], + "created_at": "2026-07-10T10:12:42.037156", + "updated_at": "2026-07-10T10:12:42.037156", + "url": "/v1/software/nemo-nedimah-methods-ontology" +} diff --git a/site/public/v1/software/nemo/index.json b/site/public/v1/software/nemo/index.json new file mode 100644 index 000000000000..3fc5e979881a --- /dev/null +++ b/site/public/v1/software/nemo/index.json @@ -0,0 +1,21 @@ +{ + "id": 6687, + "slug": "nemo", + "name": "NEMO", + "release_date": "2014-03-14", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Fortran" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17042613" + ], + "created_at": "2026-07-10T10:12:42.037156", + "updated_at": "2026-07-10T10:12:42.037156", + "url": "/v1/software/nemo" +} diff --git a/site/public/v1/software/neo-french-law-enforcement-agencies-mobile-terminals/index.json b/site/public/v1/software/neo-french-law-enforcement-agencies-mobile-terminals/index.json new file mode 100644 index 000000000000..909832c0f043 --- /dev/null +++ b/site/public/v1/software/neo-french-law-enforcement-agencies-mobile-terminals/index.json @@ -0,0 +1,21 @@ +{ + "id": 6688, + "slug": "neo-french-law-enforcement-agencies-mobile-terminals", + "name": "Neo (french law enforcement agencies mobile terminals)", + "release_date": null, + "developers": [ + "Agence nationale de la sécurité des systèmes d'information" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q38005350" + ], + "created_at": "2026-07-10T10:12:42.037156", + "updated_at": "2026-07-10T10:12:42.037156", + "url": "/v1/software/neo-french-law-enforcement-agencies-mobile-terminals" +} diff --git a/site/public/v1/software/neo-imaging/index.json b/site/public/v1/software/neo-imaging/index.json new file mode 100644 index 000000000000..c003d6c57df4 --- /dev/null +++ b/site/public/v1/software/neo-imaging/index.json @@ -0,0 +1,19 @@ +{ + "id": 6689, + "slug": "neo-imaging", + "name": "NEO iMAGING", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10890330" + ], + "created_at": "2026-07-10T10:12:42.038156", + "updated_at": "2026-07-10T10:12:42.038156", + "url": "/v1/software/neo-imaging" +} diff --git a/site/public/v1/software/neo4j-console/index.json b/site/public/v1/software/neo4j-console/index.json new file mode 100644 index 000000000000..f371636dab70 --- /dev/null +++ b/site/public/v1/software/neo4j-console/index.json @@ -0,0 +1,19 @@ +{ + "id": 6690, + "slug": "neo4j-console", + "name": "Neo4j Console", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085140" + ], + "created_at": "2026-07-10T10:12:42.038156", + "updated_at": "2026-07-10T10:12:42.038156", + "url": "/v1/software/neo4j-console" +} diff --git a/site/public/v1/software/neofuuka-scraper/index.json b/site/public/v1/software/neofuuka-scraper/index.json new file mode 100644 index 000000000000..d7a8a46694e9 --- /dev/null +++ b/site/public/v1/software/neofuuka-scraper/index.json @@ -0,0 +1,25 @@ +{ + "id": 6691, + "slug": "neofuuka-scraper", + "name": "neofuuka-scraper", + "release_date": null, + "developers": [ + "Bibliotheca Anonoma" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Python" + ], + "licenses": [ + "GNU General Public License, version 3.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106514402" + ], + "created_at": "2026-07-10T10:12:42.038156", + "updated_at": "2026-07-10T10:12:42.038156", + "url": "/v1/software/neofuuka-scraper" +} diff --git a/site/public/v1/software/neoload/index.json b/site/public/v1/software/neoload/index.json new file mode 100644 index 000000000000..4fb1f268a14d --- /dev/null +++ b/site/public/v1/software/neoload/index.json @@ -0,0 +1,21 @@ +{ + "id": 6692, + "slug": "neoload", + "name": "NeoLoad", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Java" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6991827" + ], + "created_at": "2026-07-10T10:12:42.039156", + "updated_at": "2026-07-10T10:12:42.039156", + "url": "/v1/software/neoload" +} diff --git a/site/public/v1/software/neon/index.json b/site/public/v1/software/neon/index.json new file mode 100644 index 000000000000..772308f309c8 --- /dev/null +++ b/site/public/v1/software/neon/index.json @@ -0,0 +1,21 @@ +{ + "id": 6693, + "slug": "neon", + "name": "Neon", + "release_date": null, + "developers": [ + "Jeff Minter" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6993388" + ], + "created_at": "2026-07-10T10:12:42.039156", + "updated_at": "2026-07-10T10:12:42.039156", + "url": "/v1/software/neon" +} diff --git a/site/public/v1/software/neonion/index.json b/site/public/v1/software/neonion/index.json new file mode 100644 index 000000000000..6a84cbc27d52 --- /dev/null +++ b/site/public/v1/software/neonion/index.json @@ -0,0 +1,19 @@ +{ + "id": 6694, + "slug": "neonion", + "name": "neonion", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108730830" + ], + "created_at": "2026-07-10T10:12:42.039156", + "updated_at": "2026-07-10T10:12:42.039156", + "url": "/v1/software/neonion" +} diff --git a/site/public/v1/software/neoplanet/index.json b/site/public/v1/software/neoplanet/index.json new file mode 100644 index 000000000000..adc6e00de3e8 --- /dev/null +++ b/site/public/v1/software/neoplanet/index.json @@ -0,0 +1,21 @@ +{ + "id": 6695, + "slug": "neoplanet", + "name": "NeoPlanet", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6991832" + ], + "created_at": "2026-07-10T10:12:42.040155", + "updated_at": "2026-07-10T10:12:42.040155", + "url": "/v1/software/neoplanet" +} diff --git a/site/public/v1/software/neoragex/index.json b/site/public/v1/software/neoragex/index.json new file mode 100644 index 000000000000..31078de56af0 --- /dev/null +++ b/site/public/v1/software/neoragex/index.json @@ -0,0 +1,19 @@ +{ + "id": 6696, + "slug": "neoragex", + "name": "NeoRAGEx", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1073844" + ], + "created_at": "2026-07-10T10:12:42.040155", + "updated_at": "2026-07-10T10:12:42.040155", + "url": "/v1/software/neoragex" +} diff --git a/site/public/v1/software/nequi/index.json b/site/public/v1/software/nequi/index.json new file mode 100644 index 000000000000..90a6269f7843 --- /dev/null +++ b/site/public/v1/software/nequi/index.json @@ -0,0 +1,19 @@ +{ + "id": 6697, + "slug": "nequi", + "name": "Nequi", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q128916812" + ], + "created_at": "2026-07-10T10:12:42.040155", + "updated_at": "2026-07-10T10:12:42.040155", + "url": "/v1/software/nequi" +} diff --git a/site/public/v1/software/ner-nltk/index.json b/site/public/v1/software/ner-nltk/index.json new file mode 100644 index 000000000000..6a5ac97eb667 --- /dev/null +++ b/site/public/v1/software/ner-nltk/index.json @@ -0,0 +1,19 @@ +{ + "id": 6698, + "slug": "ner-nltk", + "name": "NER NLTK", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087839" + ], + "created_at": "2026-07-10T10:12:42.041158", + "updated_at": "2026-07-10T10:12:42.041158", + "url": "/v1/software/ner-nltk" +} diff --git a/site/public/v1/software/nerf/index.json b/site/public/v1/software/nerf/index.json new file mode 100644 index 000000000000..174b0625b38a --- /dev/null +++ b/site/public/v1/software/nerf/index.json @@ -0,0 +1,19 @@ +{ + "id": 6699, + "slug": "nerf", + "name": "Nerf", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085141" + ], + "created_at": "2026-07-10T10:12:42.041158", + "updated_at": "2026-07-10T10:12:42.041158", + "url": "/v1/software/nerf" +} diff --git a/site/public/v1/software/nero-digital/index.json b/site/public/v1/software/nero-digital/index.json new file mode 100644 index 000000000000..f3daf84c54e0 --- /dev/null +++ b/site/public/v1/software/nero-digital/index.json @@ -0,0 +1,19 @@ +{ + "id": 6700, + "slug": "nero-digital", + "name": "Nero Digital", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q460210" + ], + "created_at": "2026-07-10T10:12:42.041158", + "updated_at": "2026-07-10T10:12:42.041158", + "url": "/v1/software/nero-digital" +} diff --git a/site/public/v1/software/nero-linux/index.json b/site/public/v1/software/nero-linux/index.json new file mode 100644 index 000000000000..002b0ce0707f --- /dev/null +++ b/site/public/v1/software/nero-linux/index.json @@ -0,0 +1,23 @@ +{ + "id": 6701, + "slug": "nero-linux", + "name": "Nero Linux", + "release_date": null, + "developers": [ + "Nero Inc" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6041028" + ], + "created_at": "2026-07-10T10:12:42.042156", + "updated_at": "2026-07-10T10:12:42.042156", + "url": "/v1/software/nero-linux" +} diff --git a/site/public/v1/software/nero-multimedia-suite-10-platinum-hd/index.json b/site/public/v1/software/nero-multimedia-suite-10-platinum-hd/index.json new file mode 100644 index 000000000000..56676f63f9c1 --- /dev/null +++ b/site/public/v1/software/nero-multimedia-suite-10-platinum-hd/index.json @@ -0,0 +1,21 @@ +{ + "id": 6702, + "slug": "nero-multimedia-suite-10-platinum-hd", + "name": "Nero Multimedia Suite 10 Platinum HD", + "release_date": null, + "developers": [ + "Nero Inc" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q12500365" + ], + "created_at": "2026-07-10T10:12:42.042156", + "updated_at": "2026-07-10T10:12:42.042156", + "url": "/v1/software/nero-multimedia-suite-10-platinum-hd" +} diff --git a/site/public/v1/software/nero-wave-editor/index.json b/site/public/v1/software/nero-wave-editor/index.json new file mode 100644 index 000000000000..7c921cef4753 --- /dev/null +++ b/site/public/v1/software/nero-wave-editor/index.json @@ -0,0 +1,21 @@ +{ + "id": 6703, + "slug": "nero-wave-editor", + "name": "Nero Wave Editor", + "release_date": null, + "developers": [ + "Nero Inc" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4045230" + ], + "created_at": "2026-07-10T10:12:42.042156", + "updated_at": "2026-07-10T10:12:42.042156", + "url": "/v1/software/nero-wave-editor" +} diff --git a/site/public/v1/software/nesstar/index.json b/site/public/v1/software/nesstar/index.json new file mode 100644 index 000000000000..cd5faf61b8a1 --- /dev/null +++ b/site/public/v1/software/nesstar/index.json @@ -0,0 +1,21 @@ +{ + "id": 6704, + "slug": "nesstar", + "name": "Nesstar", + "release_date": null, + "developers": [ + "Norwegian Centre for Research Data" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3338423" + ], + "created_at": "2026-07-10T10:12:42.042156", + "updated_at": "2026-07-10T10:12:42.042156", + "url": "/v1/software/nesstar" +} diff --git a/site/public/v1/software/nessy-tales/index.json b/site/public/v1/software/nessy-tales/index.json new file mode 100644 index 000000000000..69e4f3cdb9e4 --- /dev/null +++ b/site/public/v1/software/nessy-tales/index.json @@ -0,0 +1,19 @@ +{ + "id": 6705, + "slug": "nessy-tales", + "name": "Nessy Tales", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6997739" + ], + "created_at": "2026-07-10T10:12:42.043158", + "updated_at": "2026-07-10T10:12:42.043158", + "url": "/v1/software/nessy-tales" +} diff --git a/site/public/v1/software/nestimulator/index.json b/site/public/v1/software/nestimulator/index.json new file mode 100644 index 000000000000..b9b5f7782c80 --- /dev/null +++ b/site/public/v1/software/nestimulator/index.json @@ -0,0 +1,19 @@ +{ + "id": 6706, + "slug": "nestimulator", + "name": "NEStimulator", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6953600" + ], + "created_at": "2026-07-10T10:12:42.043158", + "updated_at": "2026-07-10T10:12:42.043158", + "url": "/v1/software/nestimulator" +} diff --git a/site/public/v1/software/net-bio/index.json b/site/public/v1/software/net-bio/index.json new file mode 100644 index 000000000000..3caede1f3aad --- /dev/null +++ b/site/public/v1/software/net-bio/index.json @@ -0,0 +1,19 @@ +{ + "id": 6707, + "slug": "net-bio", + "name": ".NET Bio", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16155694" + ], + "created_at": "2026-07-10T10:12:42.043158", + "updated_at": "2026-07-10T10:12:42.043158", + "url": "/v1/software/net-bio" +} diff --git a/site/public/v1/software/net-compact-framework-controls/index.json b/site/public/v1/software/net-compact-framework-controls/index.json new file mode 100644 index 000000000000..18970d9e21cf --- /dev/null +++ b/site/public/v1/software/net-compact-framework-controls/index.json @@ -0,0 +1,19 @@ +{ + "id": 6708, + "slug": "net-compact-framework-controls", + "name": ".NET Compact Framework controls", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4545413" + ], + "created_at": "2026-07-10T10:12:42.044156", + "updated_at": "2026-07-10T10:12:42.044156", + "url": "/v1/software/net-compact-framework-controls" +} diff --git a/site/public/v1/software/net-gadgeteer/index.json b/site/public/v1/software/net-gadgeteer/index.json new file mode 100644 index 000000000000..8deb2a55de9d --- /dev/null +++ b/site/public/v1/software/net-gadgeteer/index.json @@ -0,0 +1,23 @@ +{ + "id": 6709, + "slug": "net-gadgeteer", + "name": ".Net Gadgeteer", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Apache License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4545416" + ], + "created_at": "2026-07-10T10:12:42.044156", + "updated_at": "2026-07-10T10:12:42.044156", + "url": "/v1/software/net-gadgeteer" +} diff --git a/site/public/v1/software/net-party/index.json b/site/public/v1/software/net-party/index.json new file mode 100644 index 000000000000..ef21fb55cc4c --- /dev/null +++ b/site/public/v1/software/net-party/index.json @@ -0,0 +1,19 @@ +{ + "id": 6710, + "slug": "net-party", + "name": "Net Party", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17071167" + ], + "created_at": "2026-07-10T10:12:42.044156", + "updated_at": "2026-07-10T10:12:42.044156", + "url": "/v1/software/net-party" +} diff --git a/site/public/v1/software/net-reflector/index.json b/site/public/v1/software/net-reflector/index.json new file mode 100644 index 000000000000..64a4bcda1621 --- /dev/null +++ b/site/public/v1/software/net-reflector/index.json @@ -0,0 +1,23 @@ +{ + "id": 6711, + "slug": "net-reflector", + "name": ".NET Reflector", + "release_date": null, + "developers": [ + "Red Gate Software" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q158836" + ], + "created_at": "2026-07-10T10:12:42.045159", + "updated_at": "2026-07-10T10:12:42.045159", + "url": "/v1/software/net-reflector" +} diff --git a/site/public/v1/software/net-speakerphone/index.json b/site/public/v1/software/net-speakerphone/index.json new file mode 100644 index 000000000000..4f0e6cce259c --- /dev/null +++ b/site/public/v1/software/net-speakerphone/index.json @@ -0,0 +1,19 @@ +{ + "id": 6712, + "slug": "net-speakerphone", + "name": "Net Speakerphone", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q12071907" + ], + "created_at": "2026-07-10T10:12:42.045159", + "updated_at": "2026-07-10T10:12:42.045159", + "url": "/v1/software/net-speakerphone" +} diff --git a/site/public/v1/software/net-tools/index.json b/site/public/v1/software/net-tools/index.json new file mode 100644 index 000000000000..3c9882c91bbf --- /dev/null +++ b/site/public/v1/software/net-tools/index.json @@ -0,0 +1,21 @@ +{ + "id": 6713, + "slug": "net-tools", + "name": "net-tools", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "GNU General Public License, version 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975250" + ], + "created_at": "2026-07-10T10:12:42.045159", + "updated_at": "2026-07-10T10:12:42.045159", + "url": "/v1/software/net-tools" +} diff --git a/site/public/v1/software/netbackup/index.json b/site/public/v1/software/netbackup/index.json new file mode 100644 index 000000000000..c9dbd097dfed --- /dev/null +++ b/site/public/v1/software/netbackup/index.json @@ -0,0 +1,21 @@ +{ + "id": 6714, + "slug": "netbackup", + "name": "NetBackup", + "release_date": null, + "developers": [ + "Gen Digital" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2063698" + ], + "created_at": "2026-07-10T10:12:42.046159", + "updated_at": "2026-07-10T10:12:42.046159", + "url": "/v1/software/netbackup" +} diff --git a/site/public/v1/software/netbird/index.json b/site/public/v1/software/netbird/index.json new file mode 100644 index 000000000000..a664c7c43f91 --- /dev/null +++ b/site/public/v1/software/netbird/index.json @@ -0,0 +1,23 @@ +{ + "id": 6715, + "slug": "netbird", + "name": "NetBird", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Go" + ], + "licenses": [ + "3-clause BSD License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131584057" + ], + "created_at": "2026-07-10T10:12:42.046159", + "updated_at": "2026-07-10T10:12:42.046159", + "url": "/v1/software/netbird" +} diff --git a/site/public/v1/software/netboot/index.json b/site/public/v1/software/netboot/index.json new file mode 100644 index 000000000000..898abcf2270e --- /dev/null +++ b/site/public/v1/software/netboot/index.json @@ -0,0 +1,21 @@ +{ + "id": 6716, + "slug": "netboot", + "name": "NetBoot", + "release_date": null, + "developers": [ + "Apple Inc." + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6998194" + ], + "created_at": "2026-07-10T10:12:42.046159", + "updated_at": "2026-07-10T10:12:42.046159", + "url": "/v1/software/netboot" +} diff --git a/site/public/v1/software/netcabo-messenger/index.json b/site/public/v1/software/netcabo-messenger/index.json new file mode 100644 index 000000000000..30ce1903be48 --- /dev/null +++ b/site/public/v1/software/netcabo-messenger/index.json @@ -0,0 +1,19 @@ +{ + "id": 6717, + "slug": "netcabo-messenger", + "name": "Netcabo Messenger", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10336425" + ], + "created_at": "2026-07-10T10:12:42.046159", + "updated_at": "2026-07-10T10:12:42.046159", + "url": "/v1/software/netcabo-messenger" +} diff --git a/site/public/v1/software/netcache/index.json b/site/public/v1/software/netcache/index.json new file mode 100644 index 000000000000..f786d341a0de --- /dev/null +++ b/site/public/v1/software/netcache/index.json @@ -0,0 +1,21 @@ +{ + "id": 6718, + "slug": "netcache", + "name": "NetCache", + "release_date": null, + "developers": [ + "NetApp" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6998199" + ], + "created_at": "2026-07-10T10:12:42.051157", + "updated_at": "2026-07-10T10:12:42.051157", + "url": "/v1/software/netcache" +} diff --git a/site/public/v1/software/netcad/index.json b/site/public/v1/software/netcad/index.json new file mode 100644 index 000000000000..ac39278702d9 --- /dev/null +++ b/site/public/v1/software/netcad/index.json @@ -0,0 +1,19 @@ +{ + "id": 6719, + "slug": "netcad", + "name": "Netcad", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q12843271" + ], + "created_at": "2026-07-10T10:12:42.055160", + "updated_at": "2026-07-10T10:12:42.056157", + "url": "/v1/software/netcad" +} diff --git a/site/public/v1/software/netcaptor/index.json b/site/public/v1/software/netcaptor/index.json new file mode 100644 index 000000000000..01e682864776 --- /dev/null +++ b/site/public/v1/software/netcaptor/index.json @@ -0,0 +1,19 @@ +{ + "id": 6720, + "slug": "netcaptor", + "name": "NetCaptor", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3874949" + ], + "created_at": "2026-07-10T10:12:42.059264", + "updated_at": "2026-07-10T10:12:42.059264", + "url": "/v1/software/netcaptor" +} diff --git a/site/public/v1/software/netcat/index.json b/site/public/v1/software/netcat/index.json new file mode 100644 index 000000000000..c60b29a3f4ec --- /dev/null +++ b/site/public/v1/software/netcat/index.json @@ -0,0 +1,21 @@ +{ + "id": 6721, + "slug": "netcat", + "name": "Netcat", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Unix-like operating system" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q306070" + ], + "created_at": "2026-07-10T10:12:42.065261", + "updated_at": "2026-07-10T10:12:42.065261", + "url": "/v1/software/netcat" +} diff --git a/site/public/v1/software/netcdf-conv/index.json b/site/public/v1/software/netcdf-conv/index.json new file mode 100644 index 000000000000..e2ab13aef791 --- /dev/null +++ b/site/public/v1/software/netcdf-conv/index.json @@ -0,0 +1,21 @@ +{ + "id": 6722, + "slug": "netcdf-conv", + "name": "netcdf-conv", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "GNU General Public License, version 3.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118146843" + ], + "created_at": "2026-07-10T10:12:42.067155", + "updated_at": "2026-07-10T10:12:42.067155", + "url": "/v1/software/netcdf-conv" +} diff --git a/site/public/v1/software/netcommons/index.json b/site/public/v1/software/netcommons/index.json new file mode 100644 index 000000000000..9ab01699db2e --- /dev/null +++ b/site/public/v1/software/netcommons/index.json @@ -0,0 +1,23 @@ +{ + "id": 6723, + "slug": "netcommons", + "name": "NetCommons", + "release_date": null, + "developers": [ + "National Institute of Informatics" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "FreeBSD license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11236486" + ], + "created_at": "2026-07-10T10:12:42.069157", + "updated_at": "2026-07-10T10:12:42.069157", + "url": "/v1/software/netcommons" +} diff --git a/site/public/v1/software/netcrunch/index.json b/site/public/v1/software/netcrunch/index.json new file mode 100644 index 000000000000..7d53af6bd372 --- /dev/null +++ b/site/public/v1/software/netcrunch/index.json @@ -0,0 +1,19 @@ +{ + "id": 6724, + "slug": "netcrunch", + "name": "NetCrunch", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1576151" + ], + "created_at": "2026-07-10T10:12:42.072157", + "updated_at": "2026-07-10T10:12:42.072157", + "url": "/v1/software/netcrunch" +} diff --git a/site/public/v1/software/netdata/index.json b/site/public/v1/software/netdata/index.json new file mode 100644 index 000000000000..fe32c1e319ba --- /dev/null +++ b/site/public/v1/software/netdata/index.json @@ -0,0 +1,19 @@ +{ + "id": 6725, + "slug": "netdata", + "name": "Netdata", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q24961917" + ], + "created_at": "2026-07-10T10:12:42.074157", + "updated_at": "2026-07-10T10:12:42.074157", + "url": "/v1/software/netdata" +} diff --git a/site/public/v1/software/netdiscover/index.json b/site/public/v1/software/netdiscover/index.json new file mode 100644 index 000000000000..4d6e3fbdac4b --- /dev/null +++ b/site/public/v1/software/netdiscover/index.json @@ -0,0 +1,19 @@ +{ + "id": 6726, + "slug": "netdiscover", + "name": "netdiscover", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62856089" + ], + "created_at": "2026-07-10T10:12:42.075158", + "updated_at": "2026-07-10T10:12:42.075158", + "url": "/v1/software/netdiscover" +} diff --git a/site/public/v1/software/netdraw/index.json b/site/public/v1/software/netdraw/index.json new file mode 100644 index 000000000000..714bb3be0ea4 --- /dev/null +++ b/site/public/v1/software/netdraw/index.json @@ -0,0 +1,19 @@ +{ + "id": 6727, + "slug": "netdraw", + "name": "NetDraw", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085142" + ], + "created_at": "2026-07-10T10:12:42.077157", + "updated_at": "2026-07-10T10:12:42.077157", + "url": "/v1/software/netdraw" +} diff --git a/site/public/v1/software/netdrive/index.json b/site/public/v1/software/netdrive/index.json new file mode 100644 index 000000000000..3afdbe763166 --- /dev/null +++ b/site/public/v1/software/netdrive/index.json @@ -0,0 +1,19 @@ +{ + "id": 6728, + "slug": "netdrive", + "name": "NetDrive", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17122920" + ], + "created_at": "2026-07-10T10:12:42.078157", + "updated_at": "2026-07-10T10:12:42.079155", + "url": "/v1/software/netdrive" +} diff --git a/site/public/v1/software/netdynamics-application-server/index.json b/site/public/v1/software/netdynamics-application-server/index.json new file mode 100644 index 000000000000..775fe68f2d54 --- /dev/null +++ b/site/public/v1/software/netdynamics-application-server/index.json @@ -0,0 +1,21 @@ +{ + "id": 6729, + "slug": "netdynamics-application-server", + "name": "NetDynamics Application Server", + "release_date": null, + "developers": [ + "Sun Microsystems" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6998216" + ], + "created_at": "2026-07-10T10:12:42.079155", + "updated_at": "2026-07-10T10:12:42.079155", + "url": "/v1/software/netdynamics-application-server" +} diff --git a/site/public/v1/software/netease-cloud-music/index.json b/site/public/v1/software/netease-cloud-music/index.json new file mode 100644 index 000000000000..1df748f697a3 --- /dev/null +++ b/site/public/v1/software/netease-cloud-music/index.json @@ -0,0 +1,24 @@ +{ + "id": 6730, + "slug": "netease-cloud-music", + "name": "NetEase Cloud Music", + "release_date": null, + "developers": [ + "NetEase" + ], + "publishers": [], + "operating_systems": [ + "iOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q20063955" + ], + "created_at": "2026-07-10T10:12:42.080155", + "updated_at": "2026-07-10T10:12:42.080155", + "url": "/v1/software/netease-cloud-music" +} diff --git a/site/public/v1/software/netease-instant-messaging/index.json b/site/public/v1/software/netease-instant-messaging/index.json new file mode 100644 index 000000000000..135ca354a039 --- /dev/null +++ b/site/public/v1/software/netease-instant-messaging/index.json @@ -0,0 +1,27 @@ +{ + "id": 6731, + "slug": "netease-instant-messaging", + "name": "NetEase Instant Messaging", + "release_date": "2015-10-13", + "developers": [ + "NetEase" + ], + "publishers": [ + "NetEase" + ], + "operating_systems": [ + "iOS" + ], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62019997" + ], + "created_at": "2026-07-10T10:12:42.080155", + "updated_at": "2026-07-10T10:12:42.080155", + "url": "/v1/software/netease-instant-messaging" +} diff --git a/site/public/v1/software/netexpert/index.json b/site/public/v1/software/netexpert/index.json new file mode 100644 index 000000000000..0cff36f7325a --- /dev/null +++ b/site/public/v1/software/netexpert/index.json @@ -0,0 +1,21 @@ +{ + "id": 6732, + "slug": "netexpert", + "name": "NetExpert", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Java" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6998230" + ], + "created_at": "2026-07-10T10:12:42.081155", + "updated_at": "2026-07-10T10:12:42.081155", + "url": "/v1/software/netexpert" +} diff --git a/site/public/v1/software/netfrastructure/index.json b/site/public/v1/software/netfrastructure/index.json new file mode 100644 index 000000000000..6b284c0f2f05 --- /dev/null +++ b/site/public/v1/software/netfrastructure/index.json @@ -0,0 +1,19 @@ +{ + "id": 6733, + "slug": "netfrastructure", + "name": "Netfrastructure", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16918205" + ], + "created_at": "2026-07-10T10:12:42.082154", + "updated_at": "2026-07-10T10:12:42.082154", + "url": "/v1/software/netfrastructure" +} diff --git a/site/public/v1/software/nethermind-ethereum-client/index.json b/site/public/v1/software/nethermind-ethereum-client/index.json new file mode 100644 index 000000000000..061854076995 --- /dev/null +++ b/site/public/v1/software/nethermind-ethereum-client/index.json @@ -0,0 +1,29 @@ +{ + "id": 6734, + "slug": "nethermind-ethereum-client", + "name": "Nethermind Ethereum Client", + "release_date": null, + "developers": [ + "Nethermind" + ], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "GNU Lesser General Public License, version 3.0", + "GNU General Public License, version 3.0" + ], + "genres": [ + "client" + ], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137116700" + ], + "created_at": "2026-07-10T10:12:42.082154", + "updated_at": "2026-07-10T10:12:42.082154", + "url": "/v1/software/nethermind-ethereum-client" +} diff --git a/site/public/v1/software/nethogs/index.json b/site/public/v1/software/nethogs/index.json new file mode 100644 index 000000000000..af272cbc0487 --- /dev/null +++ b/site/public/v1/software/nethogs/index.json @@ -0,0 +1,19 @@ +{ + "id": 6735, + "slug": "nethogs", + "name": "NetHogs", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62856072" + ], + "created_at": "2026-07-10T10:12:42.083154", + "updated_at": "2026-07-10T10:12:42.083154", + "url": "/v1/software/nethogs" +} diff --git a/site/public/v1/software/netinfo/index.json b/site/public/v1/software/netinfo/index.json new file mode 100644 index 000000000000..588488eea5d4 --- /dev/null +++ b/site/public/v1/software/netinfo/index.json @@ -0,0 +1,24 @@ +{ + "id": 6736, + "slug": "netinfo", + "name": "NetInfo", + "release_date": null, + "developers": [ + "Apple Inc." + ], + "publishers": [], + "operating_systems": [ + "NeXTSTEP", + "macOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1217178" + ], + "created_at": "2026-07-10T10:12:42.083154", + "updated_at": "2026-07-10T10:12:42.083154", + "url": "/v1/software/netinfo" +} diff --git a/site/public/v1/software/netlimiter/index.json b/site/public/v1/software/netlimiter/index.json new file mode 100644 index 000000000000..db83411bcea4 --- /dev/null +++ b/site/public/v1/software/netlimiter/index.json @@ -0,0 +1,21 @@ +{ + "id": 6737, + "slug": "netlimiter", + "name": "NetLimiter", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4349029" + ], + "created_at": "2026-07-10T10:12:42.084180", + "updated_at": "2026-07-10T10:12:42.084180", + "url": "/v1/software/netlimiter" +} diff --git a/site/public/v1/software/netlytic/index.json b/site/public/v1/software/netlytic/index.json new file mode 100644 index 000000000000..13693682a27a --- /dev/null +++ b/site/public/v1/software/netlytic/index.json @@ -0,0 +1,19 @@ +{ + "id": 6738, + "slug": "netlytic", + "name": "Netlytic", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085143" + ], + "created_at": "2026-07-10T10:12:42.084180", + "updated_at": "2026-07-10T10:12:42.084180", + "url": "/v1/software/netlytic" +} diff --git a/site/public/v1/software/netmet/index.json b/site/public/v1/software/netmet/index.json new file mode 100644 index 000000000000..b52b3516f4fc --- /dev/null +++ b/site/public/v1/software/netmet/index.json @@ -0,0 +1,19 @@ +{ + "id": 6739, + "slug": "netmet", + "name": "NETMET", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087841" + ], + "created_at": "2026-07-10T10:12:42.085191", + "updated_at": "2026-07-10T10:12:42.085191", + "url": "/v1/software/netmet" +} diff --git a/site/public/v1/software/netnewswire/index.json b/site/public/v1/software/netnewswire/index.json new file mode 100644 index 000000000000..54eea84e72c0 --- /dev/null +++ b/site/public/v1/software/netnewswire/index.json @@ -0,0 +1,28 @@ +{ + "id": 6740, + "slug": "netnewswire", + "name": "NetNewsWire", + "release_date": null, + "developers": [ + "Brent Simmons" + ], + "publishers": [], + "operating_systems": [ + "iOS", + "macOS" + ], + "programming_languages": [ + "Swift" + ], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1382254" + ], + "created_at": "2026-07-10T10:12:42.085191", + "updated_at": "2026-07-10T10:12:42.085191", + "url": "/v1/software/netnewswire" +} diff --git a/site/public/v1/software/netobjects-fusion/index.json b/site/public/v1/software/netobjects-fusion/index.json new file mode 100644 index 000000000000..ad874c4e4d1b --- /dev/null +++ b/site/public/v1/software/netobjects-fusion/index.json @@ -0,0 +1,21 @@ +{ + "id": 6741, + "slug": "netobjects-fusion", + "name": "NetObjects Fusion", + "release_date": null, + "developers": [ + "NetObjects" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1978558" + ], + "created_at": "2026-07-10T10:12:42.086190", + "updated_at": "2026-07-10T10:12:42.086190", + "url": "/v1/software/netobjects-fusion" +} diff --git a/site/public/v1/software/netperf/index.json b/site/public/v1/software/netperf/index.json new file mode 100644 index 000000000000..475ddac384cd --- /dev/null +++ b/site/public/v1/software/netperf/index.json @@ -0,0 +1,19 @@ +{ + "id": 6742, + "slug": "netperf", + "name": "Netperf", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6999846" + ], + "created_at": "2026-07-10T10:12:42.087190", + "updated_at": "2026-07-10T10:12:42.087190", + "url": "/v1/software/netperf" +} diff --git a/site/public/v1/software/netpgp/index.json b/site/public/v1/software/netpgp/index.json new file mode 100644 index 000000000000..e63caa8f4996 --- /dev/null +++ b/site/public/v1/software/netpgp/index.json @@ -0,0 +1,19 @@ +{ + "id": 6743, + "slug": "netpgp", + "name": "netpgp", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q12861041" + ], + "created_at": "2026-07-10T10:12:42.087190", + "updated_at": "2026-07-10T10:12:42.087190", + "url": "/v1/software/netpgp" +} diff --git a/site/public/v1/software/netpipes/index.json b/site/public/v1/software/netpipes/index.json new file mode 100644 index 000000000000..d7d82eee5889 --- /dev/null +++ b/site/public/v1/software/netpipes/index.json @@ -0,0 +1,19 @@ +{ + "id": 6744, + "slug": "netpipes", + "name": "NetPipes", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62857405" + ], + "created_at": "2026-07-10T10:12:42.087190", + "updated_at": "2026-07-10T10:12:42.087190", + "url": "/v1/software/netpipes" +} diff --git a/site/public/v1/software/netpoint/index.json b/site/public/v1/software/netpoint/index.json new file mode 100644 index 000000000000..265cd72af954 --- /dev/null +++ b/site/public/v1/software/netpoint/index.json @@ -0,0 +1,19 @@ +{ + "id": 6745, + "slug": "netpoint", + "name": "NetPoint", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6998293" + ], + "created_at": "2026-07-10T10:12:42.088192", + "updated_at": "2026-07-10T10:12:42.088192", + "url": "/v1/software/netpoint" +} diff --git a/site/public/v1/software/netpresenz/index.json b/site/public/v1/software/netpresenz/index.json new file mode 100644 index 000000000000..00fa6610c2a1 --- /dev/null +++ b/site/public/v1/software/netpresenz/index.json @@ -0,0 +1,21 @@ +{ + "id": 6746, + "slug": "netpresenz", + "name": "NetPresenz", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6998295" + ], + "created_at": "2026-07-10T10:12:42.088192", + "updated_at": "2026-07-10T10:12:42.088192", + "url": "/v1/software/netpresenz" +} diff --git a/site/public/v1/software/netprimer/index.json b/site/public/v1/software/netprimer/index.json new file mode 100644 index 000000000000..34f5c14bcd16 --- /dev/null +++ b/site/public/v1/software/netprimer/index.json @@ -0,0 +1,21 @@ +{ + "id": 6747, + "slug": "netprimer", + "name": "Netprimer", + "release_date": null, + "developers": [ + "Premier Biosoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17071270" + ], + "created_at": "2026-07-10T10:12:42.088192", + "updated_at": "2026-07-10T10:12:42.088192", + "url": "/v1/software/netprimer" +} diff --git a/site/public/v1/software/netrik/index.json b/site/public/v1/software/netrik/index.json new file mode 100644 index 000000000000..32823fd39fa2 --- /dev/null +++ b/site/public/v1/software/netrik/index.json @@ -0,0 +1,19 @@ +{ + "id": 6748, + "slug": "netrik", + "name": "netrik", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62857381" + ], + "created_at": "2026-07-10T10:12:42.089192", + "updated_at": "2026-07-10T10:12:42.089192", + "url": "/v1/software/netrik" +} diff --git a/site/public/v1/software/netscape-5/index.json b/site/public/v1/software/netscape-5/index.json new file mode 100644 index 000000000000..a684915f33c5 --- /dev/null +++ b/site/public/v1/software/netscape-5/index.json @@ -0,0 +1,21 @@ +{ + "id": 6749, + "slug": "netscape-5", + "name": "Netscape 5", + "release_date": null, + "developers": [ + "Netscape" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3509054" + ], + "created_at": "2026-07-10T10:12:42.089192", + "updated_at": "2026-07-10T10:12:42.089192", + "url": "/v1/software/netscape-5" +} diff --git a/site/public/v1/software/netscape-6/index.json b/site/public/v1/software/netscape-6/index.json new file mode 100644 index 000000000000..1275a5c0b0bd --- /dev/null +++ b/site/public/v1/software/netscape-6/index.json @@ -0,0 +1,24 @@ +{ + "id": 6750, + "slug": "netscape-6", + "name": "Netscape 6", + "release_date": "2000-11-01", + "developers": [ + "Netscape" + ], + "publishers": [], + "operating_systems": [ + "Windows NT 4.0", + "Windows 95" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q986963" + ], + "created_at": "2026-07-10T10:12:42.089192", + "updated_at": "2026-07-10T10:12:42.089192", + "url": "/v1/software/netscape-6" +} diff --git a/site/public/v1/software/netscape-7/index.json b/site/public/v1/software/netscape-7/index.json new file mode 100644 index 000000000000..5ce5f15db88c --- /dev/null +++ b/site/public/v1/software/netscape-7/index.json @@ -0,0 +1,25 @@ +{ + "id": 6751, + "slug": "netscape-7", + "name": "Netscape 7", + "release_date": "2002-08-01", + "developers": [ + "AOL" + ], + "publishers": [], + "operating_systems": [ + "Windows NT 4.0", + "Mac OS 9", + "macOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3297609" + ], + "created_at": "2026-07-10T10:12:42.090193", + "updated_at": "2026-07-10T10:12:42.090193", + "url": "/v1/software/netscape-7" +} diff --git a/site/public/v1/software/netscape-browser/index.json b/site/public/v1/software/netscape-browser/index.json new file mode 100644 index 000000000000..7ed43d855a0f --- /dev/null +++ b/site/public/v1/software/netscape-browser/index.json @@ -0,0 +1,23 @@ +{ + "id": 6752, + "slug": "netscape-browser", + "name": "Netscape Browser", + "release_date": null, + "developers": [ + "Mercurial Communications" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q904815" + ], + "created_at": "2026-07-10T10:12:42.090193", + "updated_at": "2026-07-10T10:12:42.090193", + "url": "/v1/software/netscape-browser" +} diff --git a/site/public/v1/software/netscape-communicator/index.json b/site/public/v1/software/netscape-communicator/index.json new file mode 100644 index 000000000000..7b224c2dec63 --- /dev/null +++ b/site/public/v1/software/netscape-communicator/index.json @@ -0,0 +1,21 @@ +{ + "id": 6753, + "slug": "netscape-communicator", + "name": "Netscape Communicator", + "release_date": null, + "developers": [ + "Netscape" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1410913" + ], + "created_at": "2026-07-10T10:12:42.090193", + "updated_at": "2026-07-10T10:12:42.090193", + "url": "/v1/software/netscape-communicator" +} diff --git a/site/public/v1/software/netscape-mail-newsgroups/index.json b/site/public/v1/software/netscape-mail-newsgroups/index.json new file mode 100644 index 000000000000..53ccf8ab1b0e --- /dev/null +++ b/site/public/v1/software/netscape-mail-newsgroups/index.json @@ -0,0 +1,21 @@ +{ + "id": 6754, + "slug": "netscape-mail-newsgroups", + "name": "Netscape Mail & Newsgroups", + "release_date": "1998-10-01", + "developers": [ + "Netscape" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7000318" + ], + "created_at": "2026-07-10T10:12:42.090193", + "updated_at": "2026-07-10T10:12:42.090193", + "url": "/v1/software/netscape-mail-newsgroups" +} diff --git a/site/public/v1/software/netscape-navigator-2/index.json b/site/public/v1/software/netscape-navigator-2/index.json new file mode 100644 index 000000000000..b0b219dc3e54 --- /dev/null +++ b/site/public/v1/software/netscape-navigator-2/index.json @@ -0,0 +1,21 @@ +{ + "id": 6755, + "slug": "netscape-navigator-2", + "name": "Netscape Navigator 2", + "release_date": "1996-03-01", + "developers": [ + "Netscape" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7000317" + ], + "created_at": "2026-07-10T10:12:42.091191", + "updated_at": "2026-07-10T10:12:42.091191", + "url": "/v1/software/netscape-navigator-2" +} diff --git a/site/public/v1/software/netscape/index.json b/site/public/v1/software/netscape/index.json new file mode 100644 index 000000000000..564b40a16e8a --- /dev/null +++ b/site/public/v1/software/netscape/index.json @@ -0,0 +1,21 @@ +{ + "id": 6756, + "slug": "netscape", + "name": "Netscape", + "release_date": null, + "developers": [ + "Netscape" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q266990" + ], + "created_at": "2026-07-10T10:12:42.091191", + "updated_at": "2026-07-10T10:12:42.091191", + "url": "/v1/software/netscape" +} diff --git a/site/public/v1/software/netshade/index.json b/site/public/v1/software/netshade/index.json new file mode 100644 index 000000000000..f6920b98fcf5 --- /dev/null +++ b/site/public/v1/software/netshade/index.json @@ -0,0 +1,19 @@ +{ + "id": 6757, + "slug": "netshade", + "name": "NetShade", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6998318" + ], + "created_at": "2026-07-10T10:12:42.091191", + "updated_at": "2026-07-10T10:12:42.091191", + "url": "/v1/software/netshade" +} diff --git a/site/public/v1/software/netsim/index.json b/site/public/v1/software/netsim/index.json new file mode 100644 index 000000000000..d21a6458650b --- /dev/null +++ b/site/public/v1/software/netsim/index.json @@ -0,0 +1,19 @@ +{ + "id": 6758, + "slug": "netsim", + "name": "NetSim", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q605932" + ], + "created_at": "2026-07-10T10:12:42.092192", + "updated_at": "2026-07-10T10:12:42.092192", + "url": "/v1/software/netsim" +} diff --git a/site/public/v1/software/netspot/index.json b/site/public/v1/software/netspot/index.json new file mode 100644 index 000000000000..3bb71b42fa13 --- /dev/null +++ b/site/public/v1/software/netspot/index.json @@ -0,0 +1,23 @@ +{ + "id": 6759, + "slug": "netspot", + "name": "NetSpot", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Objective-C" + ], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17147049" + ], + "created_at": "2026-07-10T10:12:42.092192", + "updated_at": "2026-07-10T10:12:42.092192", + "url": "/v1/software/netspot" +} diff --git a/site/public/v1/software/netstat-nat/index.json b/site/public/v1/software/netstat-nat/index.json new file mode 100644 index 000000000000..f93fc358da1b --- /dev/null +++ b/site/public/v1/software/netstat-nat/index.json @@ -0,0 +1,19 @@ +{ + "id": 6760, + "slug": "netstat-nat", + "name": "netstat-nat", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62856044" + ], + "created_at": "2026-07-10T10:12:42.092192", + "updated_at": "2026-07-10T10:12:42.092192", + "url": "/v1/software/netstat-nat" +} diff --git a/site/public/v1/software/netsupport-manager/index.json b/site/public/v1/software/netsupport-manager/index.json new file mode 100644 index 000000000000..acfcfd5df7ed --- /dev/null +++ b/site/public/v1/software/netsupport-manager/index.json @@ -0,0 +1,19 @@ +{ + "id": 6761, + "slug": "netsupport-manager", + "name": "NetSupport Manager", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q281486" + ], + "created_at": "2026-07-10T10:12:42.093192", + "updated_at": "2026-07-10T10:12:42.093192", + "url": "/v1/software/netsupport-manager" +} diff --git a/site/public/v1/software/netvault-backup/index.json b/site/public/v1/software/netvault-backup/index.json new file mode 100644 index 000000000000..49f6532df544 --- /dev/null +++ b/site/public/v1/software/netvault-backup/index.json @@ -0,0 +1,19 @@ +{ + "id": 6762, + "slug": "netvault-backup", + "name": "NetVault Backup", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2880130" + ], + "created_at": "2026-07-10T10:12:42.093192", + "updated_at": "2026-07-10T10:12:42.093192", + "url": "/v1/software/netvault-backup" +} diff --git a/site/public/v1/software/netvizz/index.json b/site/public/v1/software/netvizz/index.json new file mode 100644 index 000000000000..2afd6e92b0b6 --- /dev/null +++ b/site/public/v1/software/netvizz/index.json @@ -0,0 +1,19 @@ +{ + "id": 6763, + "slug": "netvizz", + "name": "Netvizz", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126085144" + ], + "created_at": "2026-07-10T10:12:42.093192", + "updated_at": "2026-07-10T10:12:42.093192", + "url": "/v1/software/netvizz" +} diff --git a/site/public/v1/software/netwag/index.json b/site/public/v1/software/netwag/index.json new file mode 100644 index 000000000000..ec54a8ef5283 --- /dev/null +++ b/site/public/v1/software/netwag/index.json @@ -0,0 +1,19 @@ +{ + "id": 6764, + "slug": "netwag", + "name": "netwag", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62856006" + ], + "created_at": "2026-07-10T10:12:42.094192", + "updated_at": "2026-07-10T10:12:42.094192", + "url": "/v1/software/netwag" +} diff --git a/site/public/v1/software/netwips/index.json b/site/public/v1/software/netwips/index.json new file mode 100644 index 000000000000..e623879a8fb1 --- /dev/null +++ b/site/public/v1/software/netwips/index.json @@ -0,0 +1,19 @@ +{ + "id": 6765, + "slug": "netwips", + "name": "NetWips", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q19363890" + ], + "created_at": "2026-07-10T10:12:42.094192", + "updated_at": "2026-07-10T10:12:42.094192", + "url": "/v1/software/netwips" +} diff --git a/site/public/v1/software/network-access-protection/index.json b/site/public/v1/software/network-access-protection/index.json new file mode 100644 index 000000000000..d6b02679c7bb --- /dev/null +++ b/site/public/v1/software/network-access-protection/index.json @@ -0,0 +1,19 @@ +{ + "id": 6766, + "slug": "network-access-protection", + "name": "Network Access Protection", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1186962" + ], + "created_at": "2026-07-10T10:12:42.094192", + "updated_at": "2026-07-10T10:12:42.094192", + "url": "/v1/software/network-access-protection" +} diff --git a/site/public/v1/software/network-block-device/index.json b/site/public/v1/software/network-block-device/index.json new file mode 100644 index 000000000000..2593d456cc5f --- /dev/null +++ b/site/public/v1/software/network-block-device/index.json @@ -0,0 +1,21 @@ +{ + "id": 6767, + "slug": "network-block-device", + "name": "network block device", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "GNU General Public License, version 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1684595" + ], + "created_at": "2026-07-10T10:12:42.095192", + "updated_at": "2026-07-10T10:12:42.095192", + "url": "/v1/software/network-block-device" +} diff --git a/site/public/v1/software/network-control-program/index.json b/site/public/v1/software/network-control-program/index.json new file mode 100644 index 000000000000..2851412546a9 --- /dev/null +++ b/site/public/v1/software/network-control-program/index.json @@ -0,0 +1,19 @@ +{ + "id": 6768, + "slug": "network-control-program", + "name": "Network Control Program", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2582530" + ], + "created_at": "2026-07-10T10:12:42.095192", + "updated_at": "2026-07-10T10:12:42.095192", + "url": "/v1/software/network-control-program" +} diff --git a/site/public/v1/software/network-inventory-advisor/index.json b/site/public/v1/software/network-inventory-advisor/index.json new file mode 100644 index 000000000000..217c8f6d2fb5 --- /dev/null +++ b/site/public/v1/software/network-inventory-advisor/index.json @@ -0,0 +1,19 @@ +{ + "id": 6769, + "slug": "network-inventory-advisor", + "name": "Network Inventory Advisor", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17042623" + ], + "created_at": "2026-07-10T10:12:42.095192", + "updated_at": "2026-07-10T10:12:42.095192", + "url": "/v1/software/network-inventory-advisor" +} diff --git a/site/public/v1/software/network-notepad/index.json b/site/public/v1/software/network-notepad/index.json new file mode 100644 index 000000000000..c55546747087 --- /dev/null +++ b/site/public/v1/software/network-notepad/index.json @@ -0,0 +1,19 @@ +{ + "id": 6770, + "slug": "network-notepad", + "name": "Network Notepad", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11790743" + ], + "created_at": "2026-07-10T10:12:42.096192", + "updated_at": "2026-07-10T10:12:42.096192", + "url": "/v1/software/network-notepad" +} diff --git a/site/public/v1/software/network-telemetry/index.json b/site/public/v1/software/network-telemetry/index.json new file mode 100644 index 000000000000..b0f20be53d30 --- /dev/null +++ b/site/public/v1/software/network-telemetry/index.json @@ -0,0 +1,21 @@ +{ + "id": 6771, + "slug": "network-telemetry", + "name": "Network Telemetry", + "release_date": null, + "developers": [ + "Google" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60023619" + ], + "created_at": "2026-07-10T10:12:42.096192", + "updated_at": "2026-07-10T10:12:42.096192", + "url": "/v1/software/network-telemetry" +} diff --git a/site/public/v1/software/network-utility/index.json b/site/public/v1/software/network-utility/index.json new file mode 100644 index 000000000000..df5892913100 --- /dev/null +++ b/site/public/v1/software/network-utility/index.json @@ -0,0 +1,21 @@ +{ + "id": 6772, + "slug": "network-utility", + "name": "Network Utility", + "release_date": null, + "developers": [ + "Apple Inc." + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1071106" + ], + "created_at": "2026-07-10T10:12:42.096192", + "updated_at": "2026-07-10T10:12:42.096192", + "url": "/v1/software/network-utility" +} diff --git a/site/public/v1/software/network-view-notebook-tool/index.json b/site/public/v1/software/network-view-notebook-tool/index.json new file mode 100644 index 000000000000..2e1e02fd370c --- /dev/null +++ b/site/public/v1/software/network-view-notebook-tool/index.json @@ -0,0 +1,19 @@ +{ + "id": 6773, + "slug": "network-view-notebook-tool", + "name": "Network view notebook tool", + "release_date": "2023-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124219423" + ], + "created_at": "2026-07-10T10:12:42.097192", + "updated_at": "2026-07-10T10:12:42.097192", + "url": "/v1/software/network-view-notebook-tool" +} diff --git a/site/public/v1/software/networkcomputer/index.json b/site/public/v1/software/networkcomputer/index.json new file mode 100644 index 000000000000..66bd33eea688 --- /dev/null +++ b/site/public/v1/software/networkcomputer/index.json @@ -0,0 +1,19 @@ +{ + "id": 6774, + "slug": "networkcomputer", + "name": "NetworkComputer", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17120602" + ], + "created_at": "2026-07-10T10:12:42.097192", + "updated_at": "2026-07-10T10:12:42.097192", + "url": "/v1/software/networkcomputer" +} diff --git a/site/public/v1/software/networker/index.json b/site/public/v1/software/networker/index.json new file mode 100644 index 000000000000..884e059cc2a0 --- /dev/null +++ b/site/public/v1/software/networker/index.json @@ -0,0 +1,19 @@ +{ + "id": 6775, + "slug": "networker", + "name": "NetWorker", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5576771" + ], + "created_at": "2026-07-10T10:12:42.097192", + "updated_at": "2026-07-10T10:12:42.097192", + "url": "/v1/software/networker" +} diff --git a/site/public/v1/software/netwox/index.json b/site/public/v1/software/netwox/index.json new file mode 100644 index 000000000000..652422b60fc5 --- /dev/null +++ b/site/public/v1/software/netwox/index.json @@ -0,0 +1,19 @@ +{ + "id": 6776, + "slug": "netwox", + "name": "netwox", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62855997" + ], + "created_at": "2026-07-10T10:12:42.098192", + "updated_at": "2026-07-10T10:12:42.098192", + "url": "/v1/software/netwox" +} diff --git a/site/public/v1/software/neural-document-modeling/index.json b/site/public/v1/software/neural-document-modeling/index.json new file mode 100644 index 000000000000..611a13f56a2e --- /dev/null +++ b/site/public/v1/software/neural-document-modeling/index.json @@ -0,0 +1,19 @@ +{ + "id": 6777, + "slug": "neural-document-modeling", + "name": "Neural-Document-Modeling", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110514818" + ], + "created_at": "2026-07-10T10:12:42.098192", + "updated_at": "2026-07-10T10:12:42.098192", + "url": "/v1/software/neural-document-modeling" +} diff --git a/site/public/v1/software/neural-network-exchange-format/index.json b/site/public/v1/software/neural-network-exchange-format/index.json new file mode 100644 index 000000000000..dd39c7798ec7 --- /dev/null +++ b/site/public/v1/software/neural-network-exchange-format/index.json @@ -0,0 +1,19 @@ +{ + "id": 6778, + "slug": "neural-network-exchange-format", + "name": "Neural Network Exchange Format", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q65120163" + ], + "created_at": "2026-07-10T10:12:42.098192", + "updated_at": "2026-07-10T10:12:42.098192", + "url": "/v1/software/neural-network-exchange-format" +} diff --git a/site/public/v1/software/neural-network-intelligence/index.json b/site/public/v1/software/neural-network-intelligence/index.json new file mode 100644 index 000000000000..c1a8bc0f3cde --- /dev/null +++ b/site/public/v1/software/neural-network-intelligence/index.json @@ -0,0 +1,26 @@ +{ + "id": 6779, + "slug": "neural-network-intelligence", + "name": "Neural Network Intelligence", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [ + "Python" + ], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q98138083" + ], + "created_at": "2026-07-10T10:12:42.098192", + "updated_at": "2026-07-10T10:12:42.098192", + "url": "/v1/software/neural-network-intelligence" +} diff --git a/site/public/v1/software/neurips21-self-supervised-bug-detection-and-repair/index.json b/site/public/v1/software/neurips21-self-supervised-bug-detection-and-repair/index.json new file mode 100644 index 000000000000..e76a4ea79d7d --- /dev/null +++ b/site/public/v1/software/neurips21-self-supervised-bug-detection-and-repair/index.json @@ -0,0 +1,21 @@ +{ + "id": 6780, + "slug": "neurips21-self-supervised-bug-detection-and-repair", + "name": "neurips21-self-supervised-bug-detection-and-repair", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127474924" + ], + "created_at": "2026-07-10T10:12:42.099203", + "updated_at": "2026-07-10T10:12:42.099203", + "url": "/v1/software/neurips21-self-supervised-bug-detection-and-repair" +} diff --git a/site/public/v1/software/neutrino/index.json b/site/public/v1/software/neutrino/index.json new file mode 100644 index 000000000000..ee5bcd0f9f10 --- /dev/null +++ b/site/public/v1/software/neutrino/index.json @@ -0,0 +1,19 @@ +{ + "id": 6781, + "slug": "neutrino", + "name": "NEUTRINO", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q97311150" + ], + "created_at": "2026-07-10T10:12:42.099203", + "updated_at": "2026-07-10T10:12:42.099203", + "url": "/v1/software/neutrino" +} diff --git a/site/public/v1/software/neutron-acceptance-diagram-shading/index.json b/site/public/v1/software/neutron-acceptance-diagram-shading/index.json new file mode 100644 index 000000000000..c19de369eb6a --- /dev/null +++ b/site/public/v1/software/neutron-acceptance-diagram-shading/index.json @@ -0,0 +1,19 @@ +{ + "id": 6782, + "slug": "neutron-acceptance-diagram-shading", + "name": "Neutron Acceptance Diagram Shading", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7003073" + ], + "created_at": "2026-07-10T10:12:42.100201", + "updated_at": "2026-07-10T10:12:42.100201", + "url": "/v1/software/neutron-acceptance-diagram-shading" +} diff --git a/site/public/v1/software/neutron/index.json b/site/public/v1/software/neutron/index.json new file mode 100644 index 000000000000..dbc3c15176eb --- /dev/null +++ b/site/public/v1/software/neutron/index.json @@ -0,0 +1,21 @@ +{ + "id": 6783, + "slug": "neutron", + "name": "neutron", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Apache License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975252" + ], + "created_at": "2026-07-10T10:12:42.100201", + "updated_at": "2026-07-10T10:12:42.100201", + "url": "/v1/software/neutron" +} diff --git a/site/public/v1/software/new-grolier-multimedia-encyclopedia/index.json b/site/public/v1/software/new-grolier-multimedia-encyclopedia/index.json new file mode 100644 index 000000000000..8bcd69f60b5d --- /dev/null +++ b/site/public/v1/software/new-grolier-multimedia-encyclopedia/index.json @@ -0,0 +1,21 @@ +{ + "id": 6784, + "slug": "new-grolier-multimedia-encyclopedia", + "name": "New Grolier Multimedia Encyclopedia", + "release_date": null, + "developers": [ + "Creative Technologies Ltd." + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60813836" + ], + "created_at": "2026-07-10T10:12:42.100201", + "updated_at": "2026-07-10T10:12:42.100201", + "url": "/v1/software/new-grolier-multimedia-encyclopedia" +} diff --git a/site/public/v1/software/new-york-nights-2-friends-for-life/index.json b/site/public/v1/software/new-york-nights-2-friends-for-life/index.json new file mode 100644 index 000000000000..5d09833bb60a --- /dev/null +++ b/site/public/v1/software/new-york-nights-2-friends-for-life/index.json @@ -0,0 +1,25 @@ +{ + "id": 6785, + "slug": "new-york-nights-2-friends-for-life", + "name": "New York Nights 2: Friends For Life", + "release_date": "2008-01-01", + "developers": [ + "Gameloft" + ], + "publishers": [ + "Gameloft" + ], + "operating_systems": [ + "iOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q19865489" + ], + "created_at": "2026-07-10T10:12:42.100201", + "updated_at": "2026-07-10T10:12:42.100201", + "url": "/v1/software/new-york-nights-2-friends-for-life" +} diff --git a/site/public/v1/software/new-zealand-open-source-awards/index.json b/site/public/v1/software/new-zealand-open-source-awards/index.json new file mode 100644 index 000000000000..67cce7cfdf6c --- /dev/null +++ b/site/public/v1/software/new-zealand-open-source-awards/index.json @@ -0,0 +1,19 @@ +{ + "id": 6786, + "slug": "new-zealand-open-source-awards", + "name": "New Zealand Open Source Awards", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q19876056" + ], + "created_at": "2026-07-10T10:12:42.101201", + "updated_at": "2026-07-10T10:12:42.101201", + "url": "/v1/software/new-zealand-open-source-awards" +} diff --git a/site/public/v1/software/newbler/index.json b/site/public/v1/software/newbler/index.json new file mode 100644 index 000000000000..cfe1db925862 --- /dev/null +++ b/site/public/v1/software/newbler/index.json @@ -0,0 +1,21 @@ +{ + "id": 6787, + "slug": "newbler", + "name": "Newbler", + "release_date": null, + "developers": [ + "454 Life Sciences" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7016954" + ], + "created_at": "2026-07-10T10:12:42.101201", + "updated_at": "2026-07-10T10:12:42.101201", + "url": "/v1/software/newbler" +} diff --git a/site/public/v1/software/newicons/index.json b/site/public/v1/software/newicons/index.json new file mode 100644 index 000000000000..e43ecb01bd60 --- /dev/null +++ b/site/public/v1/software/newicons/index.json @@ -0,0 +1,19 @@ +{ + "id": 6788, + "slug": "newicons", + "name": "NewIcons", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7005118" + ], + "created_at": "2026-07-10T10:12:42.101201", + "updated_at": "2026-07-10T10:12:42.101201", + "url": "/v1/software/newicons" +} diff --git a/site/public/v1/software/newradial-inke/index.json b/site/public/v1/software/newradial-inke/index.json new file mode 100644 index 000000000000..5d066685b580 --- /dev/null +++ b/site/public/v1/software/newradial-inke/index.json @@ -0,0 +1,19 @@ +{ + "id": 6789, + "slug": "newradial-inke", + "name": "NewRadial (INKE)", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084413" + ], + "created_at": "2026-07-10T10:12:42.102201", + "updated_at": "2026-07-10T10:12:42.102201", + "url": "/v1/software/newradial-inke" +} diff --git a/site/public/v1/software/news-gg-discord-bot/index.json b/site/public/v1/software/news-gg-discord-bot/index.json new file mode 100644 index 000000000000..7ee0f3d748d5 --- /dev/null +++ b/site/public/v1/software/news-gg-discord-bot/index.json @@ -0,0 +1,21 @@ +{ + "id": 6790, + "slug": "news-gg-discord-bot", + "name": "News.gg Discord Bot", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Python" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q133281938" + ], + "created_at": "2026-07-10T10:12:42.102201", + "updated_at": "2026-07-10T10:12:42.102201", + "url": "/v1/software/news-gg-discord-bot" +} diff --git a/site/public/v1/software/news360/index.json b/site/public/v1/software/news360/index.json new file mode 100644 index 000000000000..bf7c930ce197 --- /dev/null +++ b/site/public/v1/software/news360/index.json @@ -0,0 +1,21 @@ +{ + "id": 6791, + "slug": "news360", + "name": "News360", + "release_date": "2010-01-01", + "developers": [], + "publishers": [], + "operating_systems": [ + "iOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16927735" + ], + "created_at": "2026-07-10T10:12:42.102201", + "updated_at": "2026-07-10T10:12:42.102201", + "url": "/v1/software/news360" +} diff --git a/site/public/v1/software/newsbin-pro/index.json b/site/public/v1/software/newsbin-pro/index.json new file mode 100644 index 000000000000..c9c6537853cc --- /dev/null +++ b/site/public/v1/software/newsbin-pro/index.json @@ -0,0 +1,21 @@ +{ + "id": 6792, + "slug": "newsbin-pro", + "name": "NewsBin Pro", + "release_date": "1995-01-01", + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7019204" + ], + "created_at": "2026-07-10T10:12:42.103201", + "updated_at": "2026-07-10T10:12:42.103201", + "url": "/v1/software/newsbin-pro" +} diff --git a/site/public/v1/software/newsfire/index.json b/site/public/v1/software/newsfire/index.json new file mode 100644 index 000000000000..a985fb27d8dd --- /dev/null +++ b/site/public/v1/software/newsfire/index.json @@ -0,0 +1,19 @@ +{ + "id": 6793, + "slug": "newsfire", + "name": "NewsFire", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7019218" + ], + "created_at": "2026-07-10T10:12:42.103201", + "updated_at": "2026-07-10T10:12:42.103201", + "url": "/v1/software/newsfire" +} diff --git a/site/public/v1/software/newsml-g2/index.json b/site/public/v1/software/newsml-g2/index.json new file mode 100644 index 000000000000..710c79f95dba --- /dev/null +++ b/site/public/v1/software/newsml-g2/index.json @@ -0,0 +1,19 @@ +{ + "id": 6794, + "slug": "newsml-g2", + "name": "NewsML-G2", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7019232" + ], + "created_at": "2026-07-10T10:12:42.103201", + "updated_at": "2026-07-10T10:12:42.103201", + "url": "/v1/software/newsml-g2" +} diff --git a/site/public/v1/software/newsstand/index.json b/site/public/v1/software/newsstand/index.json new file mode 100644 index 000000000000..ff098533a341 --- /dev/null +++ b/site/public/v1/software/newsstand/index.json @@ -0,0 +1,21 @@ +{ + "id": 6795, + "slug": "newsstand", + "name": "Newsstand", + "release_date": null, + "developers": [ + "Apple Inc." + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2686971" + ], + "created_at": "2026-07-10T10:12:42.104201", + "updated_at": "2026-07-10T10:12:42.104201", + "url": "/v1/software/newsstand" +} diff --git a/site/public/v1/software/newton-x/index.json b/site/public/v1/software/newton-x/index.json new file mode 100644 index 000000000000..aa7f82cb0add --- /dev/null +++ b/site/public/v1/software/newton-x/index.json @@ -0,0 +1,19 @@ +{ + "id": 6796, + "slug": "newton-x", + "name": "Newton-X", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25303712" + ], + "created_at": "2026-07-10T10:12:42.104201", + "updated_at": "2026-07-10T10:12:42.104201", + "url": "/v1/software/newton-x" +} diff --git a/site/public/v1/software/newviews/index.json b/site/public/v1/software/newviews/index.json new file mode 100644 index 000000000000..a61bd53a9133 --- /dev/null +++ b/site/public/v1/software/newviews/index.json @@ -0,0 +1,19 @@ +{ + "id": 6797, + "slug": "newviews", + "name": "NewViews", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7005152" + ], + "created_at": "2026-07-10T10:12:42.104201", + "updated_at": "2026-07-10T10:12:42.104201", + "url": "/v1/software/newviews" +} diff --git a/site/public/v1/software/newwayservice/index.json b/site/public/v1/software/newwayservice/index.json new file mode 100644 index 000000000000..ab65940c40b7 --- /dev/null +++ b/site/public/v1/software/newwayservice/index.json @@ -0,0 +1,21 @@ +{ + "id": 6798, + "slug": "newwayservice", + "name": "NewWaySERVICE", + "release_date": null, + "developers": [ + "OroLogic" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138013865" + ], + "created_at": "2026-07-10T10:12:42.104201", + "updated_at": "2026-07-10T10:12:42.104201", + "url": "/v1/software/newwayservice" +} diff --git a/site/public/v1/software/nexusdb/index.json b/site/public/v1/software/nexusdb/index.json new file mode 100644 index 000000000000..143f90c9820d --- /dev/null +++ b/site/public/v1/software/nexusdb/index.json @@ -0,0 +1,23 @@ +{ + "id": 6799, + "slug": "nexusdb", + "name": "NexusDB", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [ + "Delphi" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q12040856" + ], + "created_at": "2026-07-10T10:12:42.105203", + "updated_at": "2026-07-10T10:12:42.105203", + "url": "/v1/software/nexusdb" +} diff --git a/site/public/v1/software/nexusm/index.json b/site/public/v1/software/nexusm/index.json new file mode 100644 index 000000000000..12e9faed2c69 --- /dev/null +++ b/site/public/v1/software/nexusm/index.json @@ -0,0 +1,22 @@ +{ + "id": 6800, + "slug": "nexusm", + "name": "NexusM", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Unix-like operating system", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137965017" + ], + "created_at": "2026-07-10T10:12:42.105203", + "updated_at": "2026-07-10T10:12:42.105203", + "url": "/v1/software/nexusm" +} diff --git a/site/public/v1/software/neztio/index.json b/site/public/v1/software/neztio/index.json new file mode 100644 index 000000000000..4076d7f79639 --- /dev/null +++ b/site/public/v1/software/neztio/index.json @@ -0,0 +1,19 @@ +{ + "id": 6801, + "slug": "neztio", + "name": "Neztio", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139385387" + ], + "created_at": "2026-07-10T10:12:42.105203", + "updated_at": "2026-07-10T10:12:42.105203", + "url": "/v1/software/neztio" +} diff --git a/site/public/v1/software/nfacct/index.json b/site/public/v1/software/nfacct/index.json new file mode 100644 index 000000000000..4ffed96dabf0 --- /dev/null +++ b/site/public/v1/software/nfacct/index.json @@ -0,0 +1,19 @@ +{ + "id": 6802, + "slug": "nfacct", + "name": "nfacct", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60864677" + ], + "created_at": "2026-07-10T10:12:42.106201", + "updated_at": "2026-07-10T10:12:42.106201", + "url": "/v1/software/nfacct" +} diff --git a/site/public/v1/software/nfbtrans/index.json b/site/public/v1/software/nfbtrans/index.json new file mode 100644 index 000000000000..f08adc788e77 --- /dev/null +++ b/site/public/v1/software/nfbtrans/index.json @@ -0,0 +1,19 @@ +{ + "id": 6803, + "slug": "nfbtrans", + "name": "nfbtrans", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q61412195" + ], + "created_at": "2026-07-10T10:12:42.106201", + "updated_at": "2026-07-10T10:12:42.106201", + "url": "/v1/software/nfbtrans" +} diff --git a/site/public/v1/software/nflib/index.json b/site/public/v1/software/nflib/index.json new file mode 100644 index 000000000000..3fcf0cdfb1d6 --- /dev/null +++ b/site/public/v1/software/nflib/index.json @@ -0,0 +1,21 @@ +{ + "id": 6804, + "slug": "nflib", + "name": "NFlib", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Creative Commons Attribution-NonCommercial" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6953822" + ], + "created_at": "2026-07-10T10:12:42.106201", + "updated_at": "2026-07-10T10:12:42.106201", + "url": "/v1/software/nflib" +} diff --git a/site/public/v1/software/nfoview/index.json b/site/public/v1/software/nfoview/index.json new file mode 100644 index 000000000000..d80bde474434 --- /dev/null +++ b/site/public/v1/software/nfoview/index.json @@ -0,0 +1,19 @@ +{ + "id": 6805, + "slug": "nfoview", + "name": "nfoview", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975253" + ], + "created_at": "2026-07-10T10:12:42.107201", + "updated_at": "2026-07-10T10:12:42.107201", + "url": "/v1/software/nfoview" +} diff --git a/site/public/v1/software/ng-utils/index.json b/site/public/v1/software/ng-utils/index.json new file mode 100644 index 000000000000..2508946102b8 --- /dev/null +++ b/site/public/v1/software/ng-utils/index.json @@ -0,0 +1,19 @@ +{ + "id": 6806, + "slug": "ng-utils", + "name": "ng-utils", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62857339" + ], + "created_at": "2026-07-10T10:12:42.107201", + "updated_at": "2026-07-10T10:12:42.107201", + "url": "/v1/software/ng-utils" +} diff --git a/site/public/v1/software/ngircd/index.json b/site/public/v1/software/ngircd/index.json new file mode 100644 index 000000000000..3abfe86a8c5d --- /dev/null +++ b/site/public/v1/software/ngircd/index.json @@ -0,0 +1,19 @@ +{ + "id": 6807, + "slug": "ngircd", + "name": "ngIRCd", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62857346" + ], + "created_at": "2026-07-10T10:12:42.108201", + "updated_at": "2026-07-10T10:12:42.108201", + "url": "/v1/software/ngircd" +} diff --git a/site/public/v1/software/ngl/index.json b/site/public/v1/software/ngl/index.json new file mode 100644 index 000000000000..41d502a0ec3c --- /dev/null +++ b/site/public/v1/software/ngl/index.json @@ -0,0 +1,19 @@ +{ + "id": 6808, + "slug": "ngl", + "name": "NGL", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137804924" + ], + "created_at": "2026-07-10T10:12:42.108201", + "updated_at": "2026-07-10T10:12:42.108201", + "url": "/v1/software/ngl" +} diff --git a/site/public/v1/software/ngn-apl/index.json b/site/public/v1/software/ngn-apl/index.json new file mode 100644 index 000000000000..ca451a03372a --- /dev/null +++ b/site/public/v1/software/ngn-apl/index.json @@ -0,0 +1,21 @@ +{ + "id": 6809, + "slug": "ngn-apl", + "name": "NGN APL", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106542057" + ], + "created_at": "2026-07-10T10:12:42.108201", + "updated_at": "2026-07-10T10:12:42.108201", + "url": "/v1/software/ngn-apl" +} diff --git a/site/public/v1/software/ngram-statistics-package-nsp/index.json b/site/public/v1/software/ngram-statistics-package-nsp/index.json new file mode 100644 index 000000000000..c9fa89e12424 --- /dev/null +++ b/site/public/v1/software/ngram-statistics-package-nsp/index.json @@ -0,0 +1,19 @@ +{ + "id": 6810, + "slug": "ngram-statistics-package-nsp", + "name": "Ngram Statistics Package (NSP)", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087689" + ], + "created_at": "2026-07-10T10:12:42.108201", + "updated_at": "2026-07-10T10:12:42.108201", + "url": "/v1/software/ngram-statistics-package-nsp" +} diff --git a/site/public/v1/software/ngrok/index.json b/site/public/v1/software/ngrok/index.json new file mode 100644 index 000000000000..a032bbd23bd5 --- /dev/null +++ b/site/public/v1/software/ngrok/index.json @@ -0,0 +1,19 @@ +{ + "id": 6811, + "slug": "ngrok", + "name": "Ngrok", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137777892" + ], + "created_at": "2026-07-10T10:12:42.109201", + "updated_at": "2026-07-10T10:12:42.109201", + "url": "/v1/software/ngrok" +} diff --git a/site/public/v1/software/nhs-pathways/index.json b/site/public/v1/software/nhs-pathways/index.json new file mode 100644 index 000000000000..61384609a4d4 --- /dev/null +++ b/site/public/v1/software/nhs-pathways/index.json @@ -0,0 +1,21 @@ +{ + "id": 6812, + "slug": "nhs-pathways", + "name": "NHS Pathways", + "release_date": null, + "developers": [ + "National Health Service" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16998978" + ], + "created_at": "2026-07-10T10:12:42.109201", + "updated_at": "2026-07-10T10:12:42.109201", + "url": "/v1/software/nhs-pathways" +} diff --git a/site/public/v1/software/ni-massive/index.json b/site/public/v1/software/ni-massive/index.json new file mode 100644 index 000000000000..89c565c4dd76 --- /dev/null +++ b/site/public/v1/software/ni-massive/index.json @@ -0,0 +1,21 @@ +{ + "id": 6813, + "slug": "ni-massive", + "name": "NI Massive", + "release_date": "2007-01-01", + "developers": [ + "Native Instruments" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q20712560" + ], + "created_at": "2026-07-10T10:12:42.109201", + "updated_at": "2026-07-10T10:12:42.109201", + "url": "/v1/software/ni-massive" +} diff --git a/site/public/v1/software/ni-multisim/index.json b/site/public/v1/software/ni-multisim/index.json new file mode 100644 index 000000000000..a502ceab9325 --- /dev/null +++ b/site/public/v1/software/ni-multisim/index.json @@ -0,0 +1,27 @@ +{ + "id": 6814, + "slug": "ni-multisim", + "name": "NI Multisim", + "release_date": null, + "developers": [ + "National Instruments" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "shareware" + ], + "genres": [ + "electronic design automation" + ], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6954417" + ], + "created_at": "2026-07-10T10:12:42.110201", + "updated_at": "2026-07-10T10:12:42.110201", + "url": "/v1/software/ni-multisim" +} diff --git a/site/public/v1/software/ni-ultiboard/index.json b/site/public/v1/software/ni-ultiboard/index.json new file mode 100644 index 000000000000..b3b58d59fa84 --- /dev/null +++ b/site/public/v1/software/ni-ultiboard/index.json @@ -0,0 +1,21 @@ +{ + "id": 6815, + "slug": "ni-ultiboard", + "name": "NI Ultiboard", + "release_date": null, + "developers": [ + "National Instruments" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6954414" + ], + "created_at": "2026-07-10T10:12:42.110201", + "updated_at": "2026-07-10T10:12:42.110201", + "url": "/v1/software/ni-ultiboard" +} diff --git a/site/public/v1/software/niaflow/index.json b/site/public/v1/software/niaflow/index.json new file mode 100644 index 000000000000..5808352a514f --- /dev/null +++ b/site/public/v1/software/niaflow/index.json @@ -0,0 +1,19 @@ +{ + "id": 6816, + "slug": "niaflow", + "name": "NIAflow", + "release_date": "2016-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q29167897" + ], + "created_at": "2026-07-10T10:12:42.110201", + "updated_at": "2026-07-10T10:12:42.110201", + "url": "/v1/software/niaflow" +} diff --git a/site/public/v1/software/niaoniao-virtual-singer/index.json b/site/public/v1/software/niaoniao-virtual-singer/index.json new file mode 100644 index 000000000000..8838fe9d820d --- /dev/null +++ b/site/public/v1/software/niaoniao-virtual-singer/index.json @@ -0,0 +1,21 @@ +{ + "id": 6817, + "slug": "niaoniao-virtual-singer", + "name": "NIAONiao Virtual Singer", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q19773017" + ], + "created_at": "2026-07-10T10:12:42.110201", + "updated_at": "2026-07-10T10:12:42.110201", + "url": "/v1/software/niaoniao-virtual-singer" +} diff --git a/site/public/v1/software/nichimen-n-world/index.json b/site/public/v1/software/nichimen-n-world/index.json new file mode 100644 index 000000000000..341bed683ddf --- /dev/null +++ b/site/public/v1/software/nichimen-n-world/index.json @@ -0,0 +1,19 @@ +{ + "id": 6818, + "slug": "nichimen-n-world", + "name": "Nichimen N-World", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28957036" + ], + "created_at": "2026-07-10T10:12:42.111201", + "updated_at": "2026-07-10T10:12:42.111201", + "url": "/v1/software/nichimen-n-world" +} diff --git a/site/public/v1/software/nicmoslook/index.json b/site/public/v1/software/nicmoslook/index.json new file mode 100644 index 000000000000..49822f9272b1 --- /dev/null +++ b/site/public/v1/software/nicmoslook/index.json @@ -0,0 +1,23 @@ +{ + "id": 6819, + "slug": "nicmoslook", + "name": "NICMOSlook", + "release_date": null, + "developers": [ + "Space Telescope European Coordinating Facility" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Interactive Data Language" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6954279" + ], + "created_at": "2026-07-10T10:12:42.111201", + "updated_at": "2026-07-10T10:12:42.111201", + "url": "/v1/software/nicmoslook" +} diff --git a/site/public/v1/software/niconico/index.json b/site/public/v1/software/niconico/index.json new file mode 100644 index 000000000000..a35dd62f60a1 --- /dev/null +++ b/site/public/v1/software/niconico/index.json @@ -0,0 +1,19 @@ +{ + "id": 6820, + "slug": "niconico", + "name": "Niconico", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q697233" + ], + "created_at": "2026-07-10T10:12:42.112247", + "updated_at": "2026-07-10T10:12:42.112247", + "url": "/v1/software/niconico" +} diff --git a/site/public/v1/software/niftools/index.json b/site/public/v1/software/niftools/index.json new file mode 100644 index 000000000000..cdf10c2a412c --- /dev/null +++ b/site/public/v1/software/niftools/index.json @@ -0,0 +1,19 @@ +{ + "id": 6821, + "slug": "niftools", + "name": "niftools", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q66777628" + ], + "created_at": "2026-07-10T10:12:42.112247", + "updated_at": "2026-07-10T10:12:42.112247", + "url": "/v1/software/niftools" +} diff --git a/site/public/v1/software/nigerian-webradio/index.json b/site/public/v1/software/nigerian-webradio/index.json new file mode 100644 index 000000000000..c1004b7c1710 --- /dev/null +++ b/site/public/v1/software/nigerian-webradio/index.json @@ -0,0 +1,19 @@ +{ + "id": 6822, + "slug": "nigerian-webradio", + "name": "Nigerian WebRadio", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7033031" + ], + "created_at": "2026-07-10T10:12:42.112247", + "updated_at": "2026-07-10T10:12:42.112247", + "url": "/v1/software/nigerian-webradio" +} diff --git a/site/public/v1/software/night-sky/index.json b/site/public/v1/software/night-sky/index.json new file mode 100644 index 000000000000..faea2b54b74a --- /dev/null +++ b/site/public/v1/software/night-sky/index.json @@ -0,0 +1,19 @@ +{ + "id": 6823, + "slug": "night-sky", + "name": "Night Sky", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q30603991" + ], + "created_at": "2026-07-10T10:12:42.112247", + "updated_at": "2026-07-10T10:12:42.112247", + "url": "/v1/software/night-sky" +} diff --git a/site/public/v1/software/nightset/index.json b/site/public/v1/software/nightset/index.json new file mode 100644 index 000000000000..664293778d8d --- /dev/null +++ b/site/public/v1/software/nightset/index.json @@ -0,0 +1,19 @@ +{ + "id": 6824, + "slug": "nightset", + "name": "Nightset", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q29364590" + ], + "created_at": "2026-07-10T10:12:42.113331", + "updated_at": "2026-07-10T10:12:42.113331", + "url": "/v1/software/nightset" +} diff --git a/site/public/v1/software/nightshade/index.json b/site/public/v1/software/nightshade/index.json new file mode 100644 index 000000000000..8839aec1ca1c --- /dev/null +++ b/site/public/v1/software/nightshade/index.json @@ -0,0 +1,21 @@ +{ + "id": 6825, + "slug": "nightshade", + "name": "Nightshade", + "release_date": null, + "developers": [ + "University of Chicago" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124336925" + ], + "created_at": "2026-07-10T10:12:42.113331", + "updated_at": "2026-07-10T10:12:42.113331", + "url": "/v1/software/nightshade" +} diff --git a/site/public/v1/software/nik-collection/index.json b/site/public/v1/software/nik-collection/index.json new file mode 100644 index 000000000000..a3dfee544bed --- /dev/null +++ b/site/public/v1/software/nik-collection/index.json @@ -0,0 +1,21 @@ +{ + "id": 6826, + "slug": "nik-collection", + "name": "Nik Collection", + "release_date": null, + "developers": [ + "Nik Software" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117462120" + ], + "created_at": "2026-07-10T10:12:42.113331", + "updated_at": "2026-07-10T10:12:42.113331", + "url": "/v1/software/nik-collection" +} diff --git a/site/public/v1/software/niko-through-the-dream/index.json b/site/public/v1/software/niko-through-the-dream/index.json new file mode 100644 index 000000000000..8924d5f03499 --- /dev/null +++ b/site/public/v1/software/niko-through-the-dream/index.json @@ -0,0 +1,19 @@ +{ + "id": 6827, + "slug": "niko-through-the-dream", + "name": "NIKO: Through The Dream", + "release_date": "2015-07-10", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106803044" + ], + "created_at": "2026-07-10T10:12:42.114615", + "updated_at": "2026-07-10T10:12:42.114615", + "url": "/v1/software/niko-through-the-dream" +} diff --git a/site/public/v1/software/nikola/index.json b/site/public/v1/software/nikola/index.json new file mode 100644 index 000000000000..b256aeef2a29 --- /dev/null +++ b/site/public/v1/software/nikola/index.json @@ -0,0 +1,21 @@ +{ + "id": 6828, + "slug": "nikola", + "name": "nikola", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975255" + ], + "created_at": "2026-07-10T10:12:42.114615", + "updated_at": "2026-07-10T10:12:42.114615", + "url": "/v1/software/nikola" +} diff --git a/site/public/v1/software/nikto/index.json b/site/public/v1/software/nikto/index.json new file mode 100644 index 000000000000..2f5225b0b357 --- /dev/null +++ b/site/public/v1/software/nikto/index.json @@ -0,0 +1,21 @@ +{ + "id": 6829, + "slug": "nikto", + "name": "Nikto", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "GNU General Public License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q986549" + ], + "created_at": "2026-07-10T10:12:42.114615", + "updated_at": "2026-07-10T10:12:42.114615", + "url": "/v1/software/nikto" +} diff --git a/site/public/v1/software/nilon/index.json b/site/public/v1/software/nilon/index.json new file mode 100644 index 000000000000..b1d4a735588f --- /dev/null +++ b/site/public/v1/software/nilon/index.json @@ -0,0 +1,21 @@ +{ + "id": 6830, + "slug": "nilon", + "name": "Nilon", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Google Chrome" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139619316" + ], + "created_at": "2026-07-10T10:12:42.114615", + "updated_at": "2026-07-10T10:12:42.114615", + "url": "/v1/software/nilon" +} diff --git a/site/public/v1/software/nimble-streamer/index.json b/site/public/v1/software/nimble-streamer/index.json new file mode 100644 index 000000000000..edaf13a367b3 --- /dev/null +++ b/site/public/v1/software/nimble-streamer/index.json @@ -0,0 +1,19 @@ +{ + "id": 6831, + "slug": "nimble-streamer", + "name": "Nimble Streamer", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q23521039" + ], + "created_at": "2026-07-10T10:12:42.115566", + "updated_at": "2026-07-10T10:12:42.115566", + "url": "/v1/software/nimble-streamer" +} diff --git a/site/public/v1/software/nimbuzz/index.json b/site/public/v1/software/nimbuzz/index.json new file mode 100644 index 000000000000..cddfc57de9c9 --- /dev/null +++ b/site/public/v1/software/nimbuzz/index.json @@ -0,0 +1,19 @@ +{ + "id": 6832, + "slug": "nimbuzz", + "name": "Nimbuzz", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1992595" + ], + "created_at": "2026-07-10T10:12:42.115566", + "updated_at": "2026-07-10T10:12:42.115566", + "url": "/v1/software/nimbuzz" +} diff --git a/site/public/v1/software/nimitai/index.json b/site/public/v1/software/nimitai/index.json new file mode 100644 index 000000000000..9ed1abd7c0e8 --- /dev/null +++ b/site/public/v1/software/nimitai/index.json @@ -0,0 +1,19 @@ +{ + "id": 6833, + "slug": "nimitai", + "name": "Nimitai", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138702444" + ], + "created_at": "2026-07-10T10:12:42.116565", + "updated_at": "2026-07-10T10:12:42.116565", + "url": "/v1/software/nimitai" +} diff --git a/site/public/v1/software/ning/index.json b/site/public/v1/software/ning/index.json new file mode 100644 index 000000000000..517c4dedbe38 --- /dev/null +++ b/site/public/v1/software/ning/index.json @@ -0,0 +1,19 @@ +{ + "id": 6834, + "slug": "ning", + "name": "Ning", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084414" + ], + "created_at": "2026-07-10T10:12:42.116565", + "updated_at": "2026-07-10T10:12:42.116565", + "url": "/v1/software/ning" +} diff --git a/site/public/v1/software/ninite/index.json b/site/public/v1/software/ninite/index.json new file mode 100644 index 000000000000..d2159d80ab47 --- /dev/null +++ b/site/public/v1/software/ninite/index.json @@ -0,0 +1,21 @@ +{ + "id": 6835, + "slug": "ninite", + "name": "Ninite", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4045355" + ], + "created_at": "2026-07-10T10:12:42.116565", + "updated_at": "2026-07-10T10:12:42.116565", + "url": "/v1/software/ninite" +} diff --git a/site/public/v1/software/ninjo/index.json b/site/public/v1/software/ninjo/index.json new file mode 100644 index 000000000000..c8f6e687bf69 --- /dev/null +++ b/site/public/v1/software/ninjo/index.json @@ -0,0 +1,29 @@ +{ + "id": 6836, + "slug": "ninjo", + "name": "NinJo", + "release_date": null, + "developers": [ + "Danish Meteorological Institute", + "Federal Office of Meteorology and Climatology MeteoSwiss", + "Meteorological Service of Canada", + "Deutscher Wetterdienst", + "Bundeswehr" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [ + "Java" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1992700" + ], + "created_at": "2026-07-10T10:12:42.116565", + "updated_at": "2026-07-10T10:12:42.116565", + "url": "/v1/software/ninjo" +} diff --git a/site/public/v1/software/nintendo-dsi-camera/index.json b/site/public/v1/software/nintendo-dsi-camera/index.json new file mode 100644 index 000000000000..4afd4b679375 --- /dev/null +++ b/site/public/v1/software/nintendo-dsi-camera/index.json @@ -0,0 +1,19 @@ +{ + "id": 6837, + "slug": "nintendo-dsi-camera", + "name": "Nintendo DSi Camera", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11325079" + ], + "created_at": "2026-07-10T10:12:42.117565", + "updated_at": "2026-07-10T10:12:42.117565", + "url": "/v1/software/nintendo-dsi-camera" +} diff --git a/site/public/v1/software/nintendo-fan-network/index.json b/site/public/v1/software/nintendo-fan-network/index.json new file mode 100644 index 000000000000..f3083680f65c --- /dev/null +++ b/site/public/v1/software/nintendo-fan-network/index.json @@ -0,0 +1,19 @@ +{ + "id": 6838, + "slug": "nintendo-fan-network", + "name": "Nintendo Fan Network", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q39056333" + ], + "created_at": "2026-07-10T10:12:42.117565", + "updated_at": "2026-07-10T10:12:42.117565", + "url": "/v1/software/nintendo-fan-network" +} diff --git a/site/public/v1/software/nintendo-switch-online/index.json b/site/public/v1/software/nintendo-switch-online/index.json new file mode 100644 index 000000000000..acb31c62ed7c --- /dev/null +++ b/site/public/v1/software/nintendo-switch-online/index.json @@ -0,0 +1,23 @@ +{ + "id": 6839, + "slug": "nintendo-switch-online", + "name": "Nintendo Switch Online", + "release_date": "2018-09-18", + "developers": [ + "Nintendo" + ], + "publishers": [ + "Nintendo" + ], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q30943865" + ], + "created_at": "2026-07-10T10:12:42.117565", + "updated_at": "2026-07-10T10:12:42.117565", + "url": "/v1/software/nintendo-switch-online" +} diff --git a/site/public/v1/software/nintendo-web-framework/index.json b/site/public/v1/software/nintendo-web-framework/index.json new file mode 100644 index 000000000000..8452d53da503 --- /dev/null +++ b/site/public/v1/software/nintendo-web-framework/index.json @@ -0,0 +1,19 @@ +{ + "id": 6840, + "slug": "nintendo-web-framework", + "name": "Nintendo Web Framework", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17042651" + ], + "created_at": "2026-07-10T10:12:42.118565", + "updated_at": "2026-07-10T10:12:42.118565", + "url": "/v1/software/nintendo-web-framework" +} diff --git a/site/public/v1/software/ninvaders/index.json b/site/public/v1/software/ninvaders/index.json new file mode 100644 index 000000000000..814918a849d1 --- /dev/null +++ b/site/public/v1/software/ninvaders/index.json @@ -0,0 +1,19 @@ +{ + "id": 6841, + "slug": "ninvaders", + "name": "nInvaders", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62855990" + ], + "created_at": "2026-07-10T10:12:42.118565", + "updated_at": "2026-07-10T10:12:42.118565", + "url": "/v1/software/ninvaders" +} diff --git a/site/public/v1/software/nipper/index.json b/site/public/v1/software/nipper/index.json new file mode 100644 index 000000000000..5765f3a5dc15 --- /dev/null +++ b/site/public/v1/software/nipper/index.json @@ -0,0 +1,19 @@ +{ + "id": 6842, + "slug": "nipper", + "name": "nipper", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60918286" + ], + "created_at": "2026-07-10T10:12:42.118565", + "updated_at": "2026-07-10T10:12:42.118565", + "url": "/v1/software/nipper" +} diff --git a/site/public/v1/software/nirvana/index.json b/site/public/v1/software/nirvana/index.json new file mode 100644 index 000000000000..dd176f2dcf7d --- /dev/null +++ b/site/public/v1/software/nirvana/index.json @@ -0,0 +1,21 @@ +{ + "id": 6843, + "slug": "nirvana", + "name": "Nirvana", + "release_date": null, + "developers": [ + "General Atomics" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25339709" + ], + "created_at": "2026-07-10T10:12:42.119565", + "updated_at": "2026-07-10T10:12:42.119565", + "url": "/v1/software/nirvana" +} diff --git a/site/public/v1/software/nis2compass/index.json b/site/public/v1/software/nis2compass/index.json new file mode 100644 index 000000000000..bd2eb81558b1 --- /dev/null +++ b/site/public/v1/software/nis2compass/index.json @@ -0,0 +1,19 @@ +{ + "id": 6844, + "slug": "nis2compass", + "name": "NIS2Compass", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139502446" + ], + "created_at": "2026-07-10T10:12:42.119565", + "updated_at": "2026-07-10T10:12:42.119565", + "url": "/v1/software/nis2compass" +} diff --git a/site/public/v1/software/nite-xml-toolkit/index.json b/site/public/v1/software/nite-xml-toolkit/index.json new file mode 100644 index 000000000000..ad20e7393d8e --- /dev/null +++ b/site/public/v1/software/nite-xml-toolkit/index.json @@ -0,0 +1,19 @@ +{ + "id": 6845, + "slug": "nite-xml-toolkit", + "name": "NITE XML Toolkit", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084415" + ], + "created_at": "2026-07-10T10:12:42.119565", + "updated_at": "2026-07-10T10:12:42.119565", + "url": "/v1/software/nite-xml-toolkit" +} diff --git a/site/public/v1/software/nitf-file-parser/index.json b/site/public/v1/software/nitf-file-parser/index.json new file mode 100644 index 000000000000..961df4f874a1 --- /dev/null +++ b/site/public/v1/software/nitf-file-parser/index.json @@ -0,0 +1,21 @@ +{ + "id": 6846, + "slug": "nitf-file-parser", + "name": "NITF File Parser", + "release_date": null, + "developers": [ + "United States Air Force" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28516718" + ], + "created_at": "2026-07-10T10:12:42.120565", + "updated_at": "2026-07-10T10:12:42.120565", + "url": "/v1/software/nitf-file-parser" +} diff --git a/site/public/v1/software/nitro-pro/index.json b/site/public/v1/software/nitro-pro/index.json new file mode 100644 index 000000000000..74a228a07c8c --- /dev/null +++ b/site/public/v1/software/nitro-pro/index.json @@ -0,0 +1,19 @@ +{ + "id": 6847, + "slug": "nitro-pro", + "name": "Nitro Pro", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11695781" + ], + "created_at": "2026-07-10T10:12:42.120565", + "updated_at": "2026-07-10T10:12:42.120565", + "url": "/v1/software/nitro-pro" +} diff --git a/site/public/v1/software/njam/index.json b/site/public/v1/software/njam/index.json new file mode 100644 index 000000000000..6e034c796951 --- /dev/null +++ b/site/public/v1/software/njam/index.json @@ -0,0 +1,19 @@ +{ + "id": 6848, + "slug": "njam", + "name": "Njam", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62855978" + ], + "created_at": "2026-07-10T10:12:42.120565", + "updated_at": "2026-07-10T10:12:42.120565", + "url": "/v1/software/njam" +} diff --git a/site/public/v1/software/njstar-communicator/index.json b/site/public/v1/software/njstar-communicator/index.json new file mode 100644 index 000000000000..98b4d92d9f5e --- /dev/null +++ b/site/public/v1/software/njstar-communicator/index.json @@ -0,0 +1,21 @@ +{ + "id": 6849, + "slug": "njstar-communicator", + "name": "NJStar Communicator", + "release_date": null, + "developers": [ + "NJStar Software Corp" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q835643" + ], + "created_at": "2026-07-10T10:12:42.121565", + "updated_at": "2026-07-10T10:12:42.121565", + "url": "/v1/software/njstar-communicator" +} diff --git a/site/public/v1/software/nk-audit/index.json b/site/public/v1/software/nk-audit/index.json new file mode 100644 index 000000000000..b594738a798f --- /dev/null +++ b/site/public/v1/software/nk-audit/index.json @@ -0,0 +1,25 @@ +{ + "id": 6850, + "slug": "nk-audit", + "name": "NK-Audit", + "release_date": null, + "developers": [ + "Röckl Consulting GmbH" + ], + "publishers": [ + "Röckl Consulting GmbH" + ], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139986054" + ], + "created_at": "2026-07-10T10:12:42.121565", + "updated_at": "2026-07-10T10:12:42.121565", + "url": "/v1/software/nk-audit" +} diff --git a/site/public/v1/software/nl5-circuit-simulator/index.json b/site/public/v1/software/nl5-circuit-simulator/index.json new file mode 100644 index 000000000000..62e29fcff4e5 --- /dev/null +++ b/site/public/v1/software/nl5-circuit-simulator/index.json @@ -0,0 +1,19 @@ +{ + "id": 6851, + "slug": "nl5-circuit-simulator", + "name": "NL5 Circuit Simulator", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q65091590" + ], + "created_at": "2026-07-10T10:12:42.121565", + "updated_at": "2026-07-10T10:12:42.121565", + "url": "/v1/software/nl5-circuit-simulator" +} diff --git a/site/public/v1/software/nlbse2022-replication-kit/index.json b/site/public/v1/software/nlbse2022-replication-kit/index.json new file mode 100644 index 000000000000..f097625583e9 --- /dev/null +++ b/site/public/v1/software/nlbse2022-replication-kit/index.json @@ -0,0 +1,19 @@ +{ + "id": 6852, + "slug": "nlbse2022-replication-kit", + "name": "nlbse2022_replication_kit", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127485293" + ], + "created_at": "2026-07-10T10:12:42.121565", + "updated_at": "2026-07-10T10:12:42.121565", + "url": "/v1/software/nlbse2022-replication-kit" +} diff --git a/site/public/v1/software/nlite/index.json b/site/public/v1/software/nlite/index.json new file mode 100644 index 000000000000..4f6254c8db14 --- /dev/null +++ b/site/public/v1/software/nlite/index.json @@ -0,0 +1,23 @@ +{ + "id": 6853, + "slug": "nlite", + "name": "nLite", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Windows Server 2003" + ], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q285350" + ], + "created_at": "2026-07-10T10:12:42.122640", + "updated_at": "2026-07-10T10:12:42.122640", + "url": "/v1/software/nlite" +} diff --git a/site/public/v1/software/nload/index.json b/site/public/v1/software/nload/index.json new file mode 100644 index 000000000000..fba8535ff95f --- /dev/null +++ b/site/public/v1/software/nload/index.json @@ -0,0 +1,19 @@ +{ + "id": 6854, + "slug": "nload", + "name": "nload", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62857096" + ], + "created_at": "2026-07-10T10:12:42.122640", + "updated_at": "2026-07-10T10:12:42.122640", + "url": "/v1/software/nload" +} diff --git a/site/public/v1/software/nlog/index.json b/site/public/v1/software/nlog/index.json new file mode 100644 index 000000000000..786b6cac3db0 --- /dev/null +++ b/site/public/v1/software/nlog/index.json @@ -0,0 +1,23 @@ +{ + "id": 6855, + "slug": "nlog", + "name": "NLog", + "release_date": null, + "developers": [ + "Jarek Kowalski" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "3-clause BSD License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10601478" + ], + "created_at": "2026-07-10T10:12:42.122640", + "updated_at": "2026-07-10T10:12:42.122640", + "url": "/v1/software/nlog" +} diff --git a/site/public/v1/software/nlogit/index.json b/site/public/v1/software/nlogit/index.json new file mode 100644 index 000000000000..5066376dfffb --- /dev/null +++ b/site/public/v1/software/nlogit/index.json @@ -0,0 +1,19 @@ +{ + "id": 6856, + "slug": "nlogit", + "name": "NLOGIT", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17145975" + ], + "created_at": "2026-07-10T10:12:42.123635", + "updated_at": "2026-07-10T10:12:42.123635", + "url": "/v1/software/nlogit" +} diff --git a/site/public/v1/software/nlopt/index.json b/site/public/v1/software/nlopt/index.json new file mode 100644 index 000000000000..7cb74ee0e43d --- /dev/null +++ b/site/public/v1/software/nlopt/index.json @@ -0,0 +1,19 @@ +{ + "id": 6857, + "slug": "nlopt", + "name": "nlopt", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117025920" + ], + "created_at": "2026-07-10T10:12:42.123635", + "updated_at": "2026-07-10T10:12:42.123635", + "url": "/v1/software/nlopt" +} diff --git a/site/public/v1/software/nlp-hub-multiple-ner-tools/index.json b/site/public/v1/software/nlp-hub-multiple-ner-tools/index.json new file mode 100644 index 000000000000..a5fd55faeef6 --- /dev/null +++ b/site/public/v1/software/nlp-hub-multiple-ner-tools/index.json @@ -0,0 +1,19 @@ +{ + "id": 6858, + "slug": "nlp-hub-multiple-ner-tools", + "name": "NLP-HUB (multiple NER tools)", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087690" + ], + "created_at": "2026-07-10T10:12:42.123635", + "updated_at": "2026-07-10T10:12:42.123635", + "url": "/v1/software/nlp-hub-multiple-ner-tools" +} diff --git a/site/public/v1/software/nlpqlp/index.json b/site/public/v1/software/nlpqlp/index.json new file mode 100644 index 000000000000..c44c3723eddb --- /dev/null +++ b/site/public/v1/software/nlpqlp/index.json @@ -0,0 +1,19 @@ +{ + "id": 6859, + "slug": "nlpqlp", + "name": "NLPQLP", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q19605669" + ], + "created_at": "2026-07-10T10:12:42.124638", + "updated_at": "2026-07-10T10:12:42.124638", + "url": "/v1/software/nlpqlp" +} diff --git a/site/public/v1/software/nltk-3-3-natural-language-toolkit/index.json b/site/public/v1/software/nltk-3-3-natural-language-toolkit/index.json new file mode 100644 index 000000000000..58c2a9e5716a --- /dev/null +++ b/site/public/v1/software/nltk-3-3-natural-language-toolkit/index.json @@ -0,0 +1,19 @@ +{ + "id": 6860, + "slug": "nltk-3-3-natural-language-toolkit", + "name": "NLTK 3.3 (Natural Language Toolkit)", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087691" + ], + "created_at": "2026-07-10T10:12:42.124638", + "updated_at": "2026-07-10T10:12:42.124638", + "url": "/v1/software/nltk-3-3-natural-language-toolkit" +} diff --git a/site/public/v1/software/nmf-app/index.json b/site/public/v1/software/nmf-app/index.json new file mode 100644 index 000000000000..734ff77c9a3c --- /dev/null +++ b/site/public/v1/software/nmf-app/index.json @@ -0,0 +1,21 @@ +{ + "id": 6861, + "slug": "nmf-app", + "name": "nmf-app", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "GNU General Public License, version 3.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115688413" + ], + "created_at": "2026-07-10T10:12:42.124638", + "updated_at": "2026-07-10T10:12:42.124638", + "url": "/v1/software/nmf-app" +} diff --git a/site/public/v1/software/nmrpipe/index.json b/site/public/v1/software/nmrpipe/index.json new file mode 100644 index 000000000000..a099aa7490b3 --- /dev/null +++ b/site/public/v1/software/nmrpipe/index.json @@ -0,0 +1,19 @@ +{ + "id": 6862, + "slug": "nmrpipe", + "name": "Nmrpipe", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7042688" + ], + "created_at": "2026-07-10T10:12:42.125565", + "updated_at": "2026-07-10T10:12:42.125565", + "url": "/v1/software/nmrpipe" +} diff --git a/site/public/v1/software/nmzmail/index.json b/site/public/v1/software/nmzmail/index.json new file mode 100644 index 000000000000..102b99662ec3 --- /dev/null +++ b/site/public/v1/software/nmzmail/index.json @@ -0,0 +1,19 @@ +{ + "id": 6863, + "slug": "nmzmail", + "name": "nmzmail", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62855962" + ], + "created_at": "2026-07-10T10:12:42.125565", + "updated_at": "2026-07-10T10:12:42.125565", + "url": "/v1/software/nmzmail" +} diff --git a/site/public/v1/software/nnpdf/index.json b/site/public/v1/software/nnpdf/index.json new file mode 100644 index 000000000000..33659293ae74 --- /dev/null +++ b/site/public/v1/software/nnpdf/index.json @@ -0,0 +1,19 @@ +{ + "id": 6864, + "slug": "nnpdf", + "name": "NNPDF", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6954789" + ], + "created_at": "2026-07-10T10:12:42.125565", + "updated_at": "2026-07-10T10:12:42.125565", + "url": "/v1/software/nnpdf" +} diff --git a/site/public/v1/software/nntpgrab/index.json b/site/public/v1/software/nntpgrab/index.json new file mode 100644 index 000000000000..9576af7de9ac --- /dev/null +++ b/site/public/v1/software/nntpgrab/index.json @@ -0,0 +1,19 @@ +{ + "id": 6865, + "slug": "nntpgrab", + "name": "NNTPGrab", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1969245" + ], + "created_at": "2026-07-10T10:12:42.126565", + "updated_at": "2026-07-10T10:12:42.126565", + "url": "/v1/software/nntpgrab" +} diff --git a/site/public/v1/software/nobjective/index.json b/site/public/v1/software/nobjective/index.json new file mode 100644 index 000000000000..7dcc27ed3ede --- /dev/null +++ b/site/public/v1/software/nobjective/index.json @@ -0,0 +1,19 @@ +{ + "id": 6866, + "slug": "nobjective", + "name": "NObjective", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4044990" + ], + "created_at": "2026-07-10T10:12:42.126565", + "updated_at": "2026-07-10T10:12:42.126565", + "url": "/v1/software/nobjective" +} diff --git a/site/public/v1/software/noc/index.json b/site/public/v1/software/noc/index.json new file mode 100644 index 000000000000..ac640fa1514f --- /dev/null +++ b/site/public/v1/software/noc/index.json @@ -0,0 +1,21 @@ +{ + "id": 6867, + "slug": "noc", + "name": "NOC", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Python" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q30668338" + ], + "created_at": "2026-07-10T10:12:42.126565", + "updated_at": "2026-07-10T10:12:42.126565", + "url": "/v1/software/noc" +} diff --git a/site/public/v1/software/noddy-and-the-toyland-fair/index.json b/site/public/v1/software/noddy-and-the-toyland-fair/index.json new file mode 100644 index 000000000000..68c3c4ed2e5d --- /dev/null +++ b/site/public/v1/software/noddy-and-the-toyland-fair/index.json @@ -0,0 +1,19 @@ +{ + "id": 6868, + "slug": "noddy-and-the-toyland-fair", + "name": "Noddy and the Toyland Fair", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140358631" + ], + "created_at": "2026-07-10T10:12:42.127566", + "updated_at": "2026-07-10T10:12:42.127566", + "url": "/v1/software/noddy-and-the-toyland-fair" +} diff --git a/site/public/v1/software/node-libravatar/index.json b/site/public/v1/software/node-libravatar/index.json new file mode 100644 index 000000000000..2257a3f829bc --- /dev/null +++ b/site/public/v1/software/node-libravatar/index.json @@ -0,0 +1,19 @@ +{ + "id": 6869, + "slug": "node-libravatar", + "name": "node-libravatar", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131574555" + ], + "created_at": "2026-07-10T10:12:42.127566", + "updated_at": "2026-07-10T10:12:42.127566", + "url": "/v1/software/node-libravatar" +} diff --git a/site/public/v1/software/node-stream/index.json b/site/public/v1/software/node-stream/index.json new file mode 100644 index 000000000000..290721824585 --- /dev/null +++ b/site/public/v1/software/node-stream/index.json @@ -0,0 +1,19 @@ +{ + "id": 6870, + "slug": "node-stream", + "name": "node stream", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16938412" + ], + "created_at": "2026-07-10T10:12:42.127566", + "updated_at": "2026-07-10T10:12:42.127566", + "url": "/v1/software/node-stream" +} diff --git a/site/public/v1/software/nodegoat/index.json b/site/public/v1/software/nodegoat/index.json new file mode 100644 index 000000000000..29424443e74e --- /dev/null +++ b/site/public/v1/software/nodegoat/index.json @@ -0,0 +1,23 @@ +{ + "id": 6871, + "slug": "nodegoat", + "name": "nodegoat", + "release_date": null, + "developers": [ + "LAB1100" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "PHP" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106079697" + ], + "created_at": "2026-07-10T10:12:42.128565", + "updated_at": "2026-07-10T10:12:42.128565", + "url": "/v1/software/nodegoat" +} diff --git a/site/public/v1/software/nodexl/index.json b/site/public/v1/software/nodexl/index.json new file mode 100644 index 000000000000..340961d50310 --- /dev/null +++ b/site/public/v1/software/nodexl/index.json @@ -0,0 +1,21 @@ +{ + "id": 6872, + "slug": "nodexl", + "name": "NodeXL", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16958587" + ], + "created_at": "2026-07-10T10:12:42.128565", + "updated_at": "2026-07-10T10:12:42.128565", + "url": "/v1/software/nodexl" +} diff --git a/site/public/v1/software/noeclone/index.json b/site/public/v1/software/noeclone/index.json new file mode 100644 index 000000000000..1bcdfe35ad9a --- /dev/null +++ b/site/public/v1/software/noeclone/index.json @@ -0,0 +1,19 @@ +{ + "id": 6873, + "slug": "noeclone", + "name": "NoeClone", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7046782" + ], + "created_at": "2026-07-10T10:12:42.128565", + "updated_at": "2026-07-10T10:12:42.128565", + "url": "/v1/software/noeclone" +} diff --git a/site/public/v1/software/noeprimer/index.json b/site/public/v1/software/noeprimer/index.json new file mode 100644 index 000000000000..8ae24a7a105c --- /dev/null +++ b/site/public/v1/software/noeprimer/index.json @@ -0,0 +1,19 @@ +{ + "id": 6874, + "slug": "noeprimer", + "name": "NoePrimer", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7046784" + ], + "created_at": "2026-07-10T10:12:42.129567", + "updated_at": "2026-07-10T10:12:42.129567", + "url": "/v1/software/noeprimer" +} diff --git a/site/public/v1/software/noesis/index.json b/site/public/v1/software/noesis/index.json new file mode 100644 index 000000000000..1118a74060d7 --- /dev/null +++ b/site/public/v1/software/noesis/index.json @@ -0,0 +1,19 @@ +{ + "id": 6875, + "slug": "noesis", + "name": "Noesis", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q65120432" + ], + "created_at": "2026-07-10T10:12:42.129567", + "updated_at": "2026-07-10T10:12:42.129567", + "url": "/v1/software/noesis" +} diff --git a/site/public/v1/software/nogrid-points/index.json b/site/public/v1/software/nogrid-points/index.json new file mode 100644 index 000000000000..d7fe5efc81eb --- /dev/null +++ b/site/public/v1/software/nogrid-points/index.json @@ -0,0 +1,19 @@ +{ + "id": 6876, + "slug": "nogrid-points", + "name": "Nogrid points", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28408317" + ], + "created_at": "2026-07-10T10:12:42.130565", + "updated_at": "2026-07-10T10:12:42.130565", + "url": "/v1/software/nogrid-points" +} diff --git a/site/public/v1/software/noise-ninja/index.json b/site/public/v1/software/noise-ninja/index.json new file mode 100644 index 000000000000..c0086311ff86 --- /dev/null +++ b/site/public/v1/software/noise-ninja/index.json @@ -0,0 +1,19 @@ +{ + "id": 6877, + "slug": "noise-ninja", + "name": "Noise Ninja", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16974772" + ], + "created_at": "2026-07-10T10:12:42.130565", + "updated_at": "2026-07-10T10:12:42.130565", + "url": "/v1/software/noise-ninja" +} diff --git a/site/public/v1/software/noiseless/index.json b/site/public/v1/software/noiseless/index.json new file mode 100644 index 000000000000..b703ef76d919 --- /dev/null +++ b/site/public/v1/software/noiseless/index.json @@ -0,0 +1,19 @@ +{ + "id": 6878, + "slug": "noiseless", + "name": "Noiseless", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q20714295" + ], + "created_at": "2026-07-10T10:12:42.130565", + "updated_at": "2026-07-10T10:12:42.130565", + "url": "/v1/software/noiseless" +} diff --git a/site/public/v1/software/noiseware/index.json b/site/public/v1/software/noiseware/index.json new file mode 100644 index 000000000000..2743b2d40629 --- /dev/null +++ b/site/public/v1/software/noiseware/index.json @@ -0,0 +1,19 @@ +{ + "id": 6879, + "slug": "noiseware", + "name": "Noiseware", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q15639483" + ], + "created_at": "2026-07-10T10:12:42.130565", + "updated_at": "2026-07-10T10:12:42.130565", + "url": "/v1/software/noiseware" +} diff --git a/site/public/v1/software/noki/index.json b/site/public/v1/software/noki/index.json new file mode 100644 index 000000000000..3d5e9f5ee2a5 --- /dev/null +++ b/site/public/v1/software/noki/index.json @@ -0,0 +1,19 @@ +{ + "id": 6880, + "slug": "noki", + "name": "noki", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7047862" + ], + "created_at": "2026-07-10T10:12:42.131565", + "updated_at": "2026-07-10T10:12:42.131565", + "url": "/v1/software/noki" +} diff --git a/site/public/v1/software/nokia-lifeblog/index.json b/site/public/v1/software/nokia-lifeblog/index.json new file mode 100644 index 000000000000..66fbee3e70fe --- /dev/null +++ b/site/public/v1/software/nokia-lifeblog/index.json @@ -0,0 +1,21 @@ +{ + "id": 6881, + "slug": "nokia-lifeblog", + "name": "Nokia Lifeblog", + "release_date": "2009-01-01", + "developers": [ + "Nokia" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7047991" + ], + "created_at": "2026-07-10T10:12:42.131565", + "updated_at": "2026-07-10T10:12:42.131565", + "url": "/v1/software/nokia-lifeblog" +} diff --git a/site/public/v1/software/nokia-music-store-india/index.json b/site/public/v1/software/nokia-music-store-india/index.json new file mode 100644 index 000000000000..489a3faf5a8e --- /dev/null +++ b/site/public/v1/software/nokia-music-store-india/index.json @@ -0,0 +1,21 @@ +{ + "id": 6882, + "slug": "nokia-music-store-india", + "name": "Nokia Music Store India", + "release_date": null, + "developers": [ + "Nokia" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q14623434" + ], + "created_at": "2026-07-10T10:12:42.132565", + "updated_at": "2026-07-10T10:12:42.132565", + "url": "/v1/software/nokia-music-store-india" +} diff --git a/site/public/v1/software/nokia-pc-suite/index.json b/site/public/v1/software/nokia-pc-suite/index.json new file mode 100644 index 000000000000..681007b4d74e --- /dev/null +++ b/site/public/v1/software/nokia-pc-suite/index.json @@ -0,0 +1,23 @@ +{ + "id": 6883, + "slug": "nokia-pc-suite", + "name": "Nokia PC Suite", + "release_date": null, + "developers": [ + "Microsoft Mobile" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1456530" + ], + "created_at": "2026-07-10T10:12:42.132565", + "updated_at": "2026-07-10T10:12:42.132565", + "url": "/v1/software/nokia-pc-suite" +} diff --git a/site/public/v1/software/nokia-store/index.json b/site/public/v1/software/nokia-store/index.json new file mode 100644 index 000000000000..46abc3870fce --- /dev/null +++ b/site/public/v1/software/nokia-store/index.json @@ -0,0 +1,21 @@ +{ + "id": 6884, + "slug": "nokia-store", + "name": "Nokia Store", + "release_date": "2009-01-01", + "developers": [ + "Microsoft Mobile" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18759169" + ], + "created_at": "2026-07-10T10:12:42.132565", + "updated_at": "2026-07-10T10:12:42.132565", + "url": "/v1/software/nokia-store" +} diff --git a/site/public/v1/software/nolapro/index.json b/site/public/v1/software/nolapro/index.json new file mode 100644 index 000000000000..dfc31712ab98 --- /dev/null +++ b/site/public/v1/software/nolapro/index.json @@ -0,0 +1,21 @@ +{ + "id": 6885, + "slug": "nolapro", + "name": "NolaPro", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7048126" + ], + "created_at": "2026-07-10T10:12:42.132565", + "updated_at": "2026-07-10T10:12:42.132565", + "url": "/v1/software/nolapro" +} diff --git a/site/public/v1/software/nomenklatura-q126084418/index.json b/site/public/v1/software/nomenklatura-q126084418/index.json new file mode 100644 index 000000000000..50e337d75e1a --- /dev/null +++ b/site/public/v1/software/nomenklatura-q126084418/index.json @@ -0,0 +1,19 @@ +{ + "id": 6886, + "slug": "nomenklatura-q126084418", + "name": "Nomenklatura", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084418" + ], + "created_at": "2026-07-10T10:12:42.133565", + "updated_at": "2026-07-10T10:12:42.133565", + "url": "/v1/software/nomenklatura-q126084418" +} diff --git a/site/public/v1/software/nomenklatura/index.json b/site/public/v1/software/nomenklatura/index.json new file mode 100644 index 000000000000..6c6dc1792a45 --- /dev/null +++ b/site/public/v1/software/nomenklatura/index.json @@ -0,0 +1,19 @@ +{ + "id": 6887, + "slug": "nomenklatura", + "name": "Nomenklatura", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113375577" + ], + "created_at": "2026-07-10T10:12:42.133565", + "updated_at": "2026-07-10T10:12:42.133565", + "url": "/v1/software/nomenklatura" +} diff --git a/site/public/v1/software/nomeroff-net/index.json b/site/public/v1/software/nomeroff-net/index.json new file mode 100644 index 000000000000..c356767bd6d8 --- /dev/null +++ b/site/public/v1/software/nomeroff-net/index.json @@ -0,0 +1,19 @@ +{ + "id": 6888, + "slug": "nomeroff-net", + "name": "Nomeroff Net", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62070575" + ], + "created_at": "2026-07-10T10:12:42.133565", + "updated_at": "2026-07-10T10:12:42.133565", + "url": "/v1/software/nomeroff-net" +} diff --git a/site/public/v1/software/nomulus/index.json b/site/public/v1/software/nomulus/index.json new file mode 100644 index 000000000000..0f8719de86a7 --- /dev/null +++ b/site/public/v1/software/nomulus/index.json @@ -0,0 +1,23 @@ +{ + "id": 6889, + "slug": "nomulus", + "name": "Nomulus", + "release_date": null, + "developers": [ + "Google" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Apache License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q29364592" + ], + "created_at": "2026-07-10T10:12:42.134566", + "updated_at": "2026-07-10T10:12:42.134566", + "url": "/v1/software/nomulus" +} diff --git a/site/public/v1/software/nonmem/index.json b/site/public/v1/software/nonmem/index.json new file mode 100644 index 000000000000..99660669ef65 --- /dev/null +++ b/site/public/v1/software/nonmem/index.json @@ -0,0 +1,21 @@ +{ + "id": 6890, + "slug": "nonmem", + "name": "NONMEM", + "release_date": null, + "developers": [ + "University of California, San Francisco" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6954915" + ], + "created_at": "2026-07-10T10:12:42.134566", + "updated_at": "2026-07-10T10:12:42.134566", + "url": "/v1/software/nonmem" +} diff --git a/site/public/v1/software/nonstop-sql/index.json b/site/public/v1/software/nonstop-sql/index.json new file mode 100644 index 000000000000..f07a464e60c1 --- /dev/null +++ b/site/public/v1/software/nonstop-sql/index.json @@ -0,0 +1,21 @@ +{ + "id": 6891, + "slug": "nonstop-sql", + "name": "NonStop SQL", + "release_date": null, + "developers": [ + "Tandem Computers" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1218487" + ], + "created_at": "2026-07-10T10:12:42.134566", + "updated_at": "2026-07-10T10:12:42.134566", + "url": "/v1/software/nonstop-sql" +} diff --git a/site/public/v1/software/noodletools/index.json b/site/public/v1/software/noodletools/index.json new file mode 100644 index 000000000000..4b3e5ab49c43 --- /dev/null +++ b/site/public/v1/software/noodletools/index.json @@ -0,0 +1,19 @@ +{ + "id": 6892, + "slug": "noodletools", + "name": "NoodleTools", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084419" + ], + "created_at": "2026-07-10T10:12:42.134566", + "updated_at": "2026-07-10T10:12:42.134566", + "url": "/v1/software/noodletools" +} diff --git a/site/public/v1/software/nooj/index.json b/site/public/v1/software/nooj/index.json new file mode 100644 index 000000000000..7ae0700a4349 --- /dev/null +++ b/site/public/v1/software/nooj/index.json @@ -0,0 +1,19 @@ +{ + "id": 6893, + "slug": "nooj", + "name": "NooJ", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25049177" + ], + "created_at": "2026-07-10T10:12:42.135565", + "updated_at": "2026-07-10T10:12:42.135565", + "url": "/v1/software/nooj" +} diff --git a/site/public/v1/software/norc/index.json b/site/public/v1/software/norc/index.json new file mode 100644 index 000000000000..4000e4fdea1a --- /dev/null +++ b/site/public/v1/software/norc/index.json @@ -0,0 +1,19 @@ +{ + "id": 6894, + "slug": "norc", + "name": "NORC", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q755099" + ], + "created_at": "2026-07-10T10:12:42.135565", + "updated_at": "2026-07-10T10:12:42.135565", + "url": "/v1/software/norc" +} diff --git a/site/public/v1/software/norconex-web-crawler/index.json b/site/public/v1/software/norconex-web-crawler/index.json new file mode 100644 index 000000000000..f1b0d677e64b --- /dev/null +++ b/site/public/v1/software/norconex-web-crawler/index.json @@ -0,0 +1,19 @@ +{ + "id": 6895, + "slug": "norconex-web-crawler", + "name": "Norconex Web Crawler", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123000007" + ], + "created_at": "2026-07-10T10:12:42.136565", + "updated_at": "2026-07-10T10:12:42.136565", + "url": "/v1/software/norconex-web-crawler" +} diff --git a/site/public/v1/software/norcroft-c-compiler/index.json b/site/public/v1/software/norcroft-c-compiler/index.json new file mode 100644 index 000000000000..4d32c211c5ea --- /dev/null +++ b/site/public/v1/software/norcroft-c-compiler/index.json @@ -0,0 +1,19 @@ +{ + "id": 6896, + "slug": "norcroft-c-compiler", + "name": "Norcroft C compiler", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4045464" + ], + "created_at": "2026-07-10T10:12:42.136565", + "updated_at": "2026-07-10T10:12:42.136565", + "url": "/v1/software/norcroft-c-compiler" +} diff --git a/site/public/v1/software/nordfx/index.json b/site/public/v1/software/nordfx/index.json new file mode 100644 index 000000000000..6a36bff0a258 --- /dev/null +++ b/site/public/v1/software/nordfx/index.json @@ -0,0 +1,19 @@ +{ + "id": 6897, + "slug": "nordfx", + "name": "NordFX", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140320741" + ], + "created_at": "2026-07-10T10:12:42.136565", + "updated_at": "2026-07-10T10:12:42.136565", + "url": "/v1/software/nordfx" +} diff --git a/site/public/v1/software/nordlayer/index.json b/site/public/v1/software/nordlayer/index.json new file mode 100644 index 000000000000..2de2f2e505bd --- /dev/null +++ b/site/public/v1/software/nordlayer/index.json @@ -0,0 +1,19 @@ +{ + "id": 6898, + "slug": "nordlayer", + "name": "NordLayer", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111941520" + ], + "created_at": "2026-07-10T10:12:42.137565", + "updated_at": "2026-07-10T10:12:42.137565", + "url": "/v1/software/nordlayer" +} diff --git a/site/public/v1/software/nordlocker/index.json b/site/public/v1/software/nordlocker/index.json new file mode 100644 index 000000000000..ce5aa4c2c97f --- /dev/null +++ b/site/public/v1/software/nordlocker/index.json @@ -0,0 +1,21 @@ +{ + "id": 6899, + "slug": "nordlocker", + "name": "NordLocker", + "release_date": null, + "developers": [ + "Groupe Nord" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q104881294" + ], + "created_at": "2026-07-10T10:12:42.137565", + "updated_at": "2026-07-10T10:12:42.137565", + "url": "/v1/software/nordlocker" +} diff --git a/site/public/v1/software/nordvpn/index.json b/site/public/v1/software/nordvpn/index.json new file mode 100644 index 000000000000..83f1ba4ea7d0 --- /dev/null +++ b/site/public/v1/software/nordvpn/index.json @@ -0,0 +1,27 @@ +{ + "id": 6900, + "slug": "nordvpn", + "name": "NordVPN", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Android TV", + "ChromeOS", + "iOS", + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "GNU General Public License, version 3.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q48816099" + ], + "created_at": "2026-07-10T10:12:42.137565", + "updated_at": "2026-07-10T10:12:42.137565", + "url": "/v1/software/nordvpn" +} diff --git a/site/public/v1/software/noredink/index.json b/site/public/v1/software/noredink/index.json new file mode 100644 index 000000000000..b6cbbbc5338f --- /dev/null +++ b/site/public/v1/software/noredink/index.json @@ -0,0 +1,21 @@ +{ + "id": 6901, + "slug": "noredink", + "name": "NoRedInk", + "release_date": null, + "developers": [ + "NoRedInk Corporation" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25038475" + ], + "created_at": "2026-07-10T10:12:42.138565", + "updated_at": "2026-07-10T10:12:42.138565", + "url": "/v1/software/noredink" +} diff --git a/site/public/v1/software/north-carolina-learning-object-repository/index.json b/site/public/v1/software/north-carolina-learning-object-repository/index.json new file mode 100644 index 000000000000..bd0f5b7dfb36 --- /dev/null +++ b/site/public/v1/software/north-carolina-learning-object-repository/index.json @@ -0,0 +1,19 @@ +{ + "id": 6902, + "slug": "north-carolina-learning-object-repository", + "name": "North Carolina Learning Object Repository", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7054551" + ], + "created_at": "2026-07-10T10:12:42.138565", + "updated_at": "2026-07-10T10:12:42.138565", + "url": "/v1/software/north-carolina-learning-object-repository" +} diff --git a/site/public/v1/software/norton-360/index.json b/site/public/v1/software/norton-360/index.json new file mode 100644 index 000000000000..d5b59e2be314 --- /dev/null +++ b/site/public/v1/software/norton-360/index.json @@ -0,0 +1,19 @@ +{ + "id": 6903, + "slug": "norton-360", + "name": "Norton 360", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122577347" + ], + "created_at": "2026-07-10T10:12:42.138565", + "updated_at": "2026-07-10T10:12:42.138565", + "url": "/v1/software/norton-360" +} diff --git a/site/public/v1/software/norton-confidential/index.json b/site/public/v1/software/norton-confidential/index.json new file mode 100644 index 000000000000..22c976875468 --- /dev/null +++ b/site/public/v1/software/norton-confidential/index.json @@ -0,0 +1,19 @@ +{ + "id": 6904, + "slug": "norton-confidential", + "name": "Norton Confidential", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16878308" + ], + "created_at": "2026-07-10T10:12:42.139565", + "updated_at": "2026-07-10T10:12:42.139565", + "url": "/v1/software/norton-confidential" +} diff --git a/site/public/v1/software/norton-connectsafe/index.json b/site/public/v1/software/norton-connectsafe/index.json new file mode 100644 index 000000000000..6d7660b7ca3e --- /dev/null +++ b/site/public/v1/software/norton-connectsafe/index.json @@ -0,0 +1,21 @@ +{ + "id": 6905, + "slug": "norton-connectsafe", + "name": "Norton ConnectSafe", + "release_date": null, + "developers": [ + "Gen Digital" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3543859" + ], + "created_at": "2026-07-10T10:12:42.139565", + "updated_at": "2026-07-10T10:12:42.139565", + "url": "/v1/software/norton-connectsafe" +} diff --git a/site/public/v1/software/norton-file-insight/index.json b/site/public/v1/software/norton-file-insight/index.json new file mode 100644 index 000000000000..7f45bbdecebf --- /dev/null +++ b/site/public/v1/software/norton-file-insight/index.json @@ -0,0 +1,21 @@ +{ + "id": 6906, + "slug": "norton-file-insight", + "name": "Norton File Insight", + "release_date": null, + "developers": [ + "Gen Digital" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7060621" + ], + "created_at": "2026-07-10T10:12:42.139565", + "updated_at": "2026-07-10T10:12:42.139565", + "url": "/v1/software/norton-file-insight" +} diff --git a/site/public/v1/software/norton-insight/index.json b/site/public/v1/software/norton-insight/index.json new file mode 100644 index 000000000000..d4344a759994 --- /dev/null +++ b/site/public/v1/software/norton-insight/index.json @@ -0,0 +1,21 @@ +{ + "id": 6907, + "slug": "norton-insight", + "name": "Norton Insight", + "release_date": null, + "developers": [ + "Gen Digital" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7060644" + ], + "created_at": "2026-07-10T10:12:42.139565", + "updated_at": "2026-07-10T10:12:42.139565", + "url": "/v1/software/norton-insight" +} diff --git a/site/public/v1/software/norton-liveupdate/index.json b/site/public/v1/software/norton-liveupdate/index.json new file mode 100644 index 000000000000..3cac606683e8 --- /dev/null +++ b/site/public/v1/software/norton-liveupdate/index.json @@ -0,0 +1,21 @@ +{ + "id": 6908, + "slug": "norton-liveupdate", + "name": "Norton LiveUpdate", + "release_date": null, + "developers": [ + "Gen Digital" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1866249" + ], + "created_at": "2026-07-10T10:12:42.140565", + "updated_at": "2026-07-10T10:12:42.140565", + "url": "/v1/software/norton-liveupdate" +} diff --git a/site/public/v1/software/norton-personal-firewall/index.json b/site/public/v1/software/norton-personal-firewall/index.json new file mode 100644 index 000000000000..fdc305bff4df --- /dev/null +++ b/site/public/v1/software/norton-personal-firewall/index.json @@ -0,0 +1,21 @@ +{ + "id": 6909, + "slug": "norton-personal-firewall", + "name": "Norton Personal Firewall", + "release_date": null, + "developers": [ + "Gen Digital" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q593674" + ], + "created_at": "2026-07-10T10:12:42.140565", + "updated_at": "2026-07-10T10:12:42.140565", + "url": "/v1/software/norton-personal-firewall" +} diff --git a/site/public/v1/software/norton-power-eraser/index.json b/site/public/v1/software/norton-power-eraser/index.json new file mode 100644 index 000000000000..777895ebe3b3 --- /dev/null +++ b/site/public/v1/software/norton-power-eraser/index.json @@ -0,0 +1,21 @@ +{ + "id": 6910, + "slug": "norton-power-eraser", + "name": "Norton Power Eraser", + "release_date": null, + "developers": [ + "Gen Digital" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7060674" + ], + "created_at": "2026-07-10T10:12:42.140565", + "updated_at": "2026-07-10T10:12:42.140565", + "url": "/v1/software/norton-power-eraser" +} diff --git a/site/public/v1/software/norton-safe-web/index.json b/site/public/v1/software/norton-safe-web/index.json new file mode 100644 index 000000000000..164edf8759da --- /dev/null +++ b/site/public/v1/software/norton-safe-web/index.json @@ -0,0 +1,21 @@ +{ + "id": 6911, + "slug": "norton-safe-web", + "name": "Norton Safe Web", + "release_date": null, + "developers": [ + "Gen Digital" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7060684" + ], + "created_at": "2026-07-10T10:12:42.141565", + "updated_at": "2026-07-10T10:12:42.141565", + "url": "/v1/software/norton-safe-web" +} diff --git a/site/public/v1/software/norton-security/index.json b/site/public/v1/software/norton-security/index.json new file mode 100644 index 000000000000..7c1b195f6111 --- /dev/null +++ b/site/public/v1/software/norton-security/index.json @@ -0,0 +1,23 @@ +{ + "id": 6912, + "slug": "norton-security", + "name": "Norton Security", + "release_date": null, + "developers": [ + "Gen Digital" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18015510" + ], + "created_at": "2026-07-10T10:12:42.141565", + "updated_at": "2026-07-10T10:12:42.141565", + "url": "/v1/software/norton-security" +} diff --git a/site/public/v1/software/norton-system-insight/index.json b/site/public/v1/software/norton-system-insight/index.json new file mode 100644 index 000000000000..7011d37de254 --- /dev/null +++ b/site/public/v1/software/norton-system-insight/index.json @@ -0,0 +1,21 @@ +{ + "id": 6913, + "slug": "norton-system-insight", + "name": "Norton System Insight", + "release_date": null, + "developers": [ + "Gen Digital" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7060691" + ], + "created_at": "2026-07-10T10:12:42.141565", + "updated_at": "2026-07-10T10:12:42.141565", + "url": "/v1/software/norton-system-insight" +} diff --git a/site/public/v1/software/norton-systemworks/index.json b/site/public/v1/software/norton-systemworks/index.json new file mode 100644 index 000000000000..da4d10ddd018 --- /dev/null +++ b/site/public/v1/software/norton-systemworks/index.json @@ -0,0 +1,21 @@ +{ + "id": 6914, + "slug": "norton-systemworks", + "name": "Norton SystemWorks", + "release_date": null, + "developers": [ + "Gen Digital" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7060689" + ], + "created_at": "2026-07-10T10:12:42.141565", + "updated_at": "2026-07-10T10:12:42.141565", + "url": "/v1/software/norton-systemworks" +} diff --git a/site/public/v1/software/norton-utilities/index.json b/site/public/v1/software/norton-utilities/index.json new file mode 100644 index 000000000000..b211a887f181 --- /dev/null +++ b/site/public/v1/software/norton-utilities/index.json @@ -0,0 +1,25 @@ +{ + "id": 6915, + "slug": "norton-utilities", + "name": "Norton Utilities", + "release_date": null, + "developers": [ + "Gen Digital" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1370549" + ], + "created_at": "2026-07-10T10:12:42.142565", + "updated_at": "2026-07-10T10:12:42.142565", + "url": "/v1/software/norton-utilities" +} diff --git a/site/public/v1/software/norton-zone/index.json b/site/public/v1/software/norton-zone/index.json new file mode 100644 index 000000000000..156900a7f648 --- /dev/null +++ b/site/public/v1/software/norton-zone/index.json @@ -0,0 +1,23 @@ +{ + "id": 6916, + "slug": "norton-zone", + "name": "Norton Zone", + "release_date": "2012-11-29", + "developers": [ + "Gen Digital" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16975019" + ], + "created_at": "2026-07-10T10:12:42.142565", + "updated_at": "2026-07-10T10:12:42.142565", + "url": "/v1/software/norton-zone" +} diff --git a/site/public/v1/software/nosa-itaca/index.json b/site/public/v1/software/nosa-itaca/index.json new file mode 100644 index 000000000000..e48a50030a15 --- /dev/null +++ b/site/public/v1/software/nosa-itaca/index.json @@ -0,0 +1,19 @@ +{ + "id": 6917, + "slug": "nosa-itaca", + "name": "NOSA-ITACA", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137555737" + ], + "created_at": "2026-07-10T10:12:42.142565", + "updated_at": "2026-07-10T10:12:42.142565", + "url": "/v1/software/nosa-itaca" +} diff --git a/site/public/v1/software/noscribe/index.json b/site/public/v1/software/noscribe/index.json new file mode 100644 index 000000000000..c5be40e6158c --- /dev/null +++ b/site/public/v1/software/noscribe/index.json @@ -0,0 +1,26 @@ +{ + "id": 6918, + "slug": "noscribe", + "name": "noScribe", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [ + "Python" + ], + "licenses": [ + "GNU General Public License, version 3.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123186046" + ], + "created_at": "2026-07-10T10:12:42.142565", + "updated_at": "2026-07-10T10:12:42.143636", + "url": "/v1/software/noscribe" +} diff --git a/site/public/v1/software/nose/index.json b/site/public/v1/software/nose/index.json new file mode 100644 index 000000000000..22c64b866622 --- /dev/null +++ b/site/public/v1/software/nose/index.json @@ -0,0 +1,19 @@ +{ + "id": 6919, + "slug": "nose", + "name": "nose", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975259" + ], + "created_at": "2026-07-10T10:12:42.143636", + "updated_at": "2026-07-10T10:12:42.143636", + "url": "/v1/software/nose" +} diff --git a/site/public/v1/software/nosketch-engine/index.json b/site/public/v1/software/nosketch-engine/index.json new file mode 100644 index 000000000000..17abaed23d77 --- /dev/null +++ b/site/public/v1/software/nosketch-engine/index.json @@ -0,0 +1,19 @@ +{ + "id": 6920, + "slug": "nosketch-engine", + "name": "noSketch Engine", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134726934" + ], + "created_at": "2026-07-10T10:12:42.143636", + "updated_at": "2026-07-10T10:12:42.143636", + "url": "/v1/software/nosketch-engine" +} diff --git a/site/public/v1/software/nosqlz/index.json b/site/public/v1/software/nosqlz/index.json new file mode 100644 index 000000000000..34f633a7008a --- /dev/null +++ b/site/public/v1/software/nosqlz/index.json @@ -0,0 +1,21 @@ +{ + "id": 6921, + "slug": "nosqlz", + "name": "NoSQLz", + "release_date": "2014-01-01", + "developers": [], + "publishers": [], + "operating_systems": [ + "z/OS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22661327" + ], + "created_at": "2026-07-10T10:12:42.143636", + "updated_at": "2026-07-10T10:12:42.143636", + "url": "/v1/software/nosqlz" +} diff --git a/site/public/v1/software/nostrobeai/index.json b/site/public/v1/software/nostrobeai/index.json new file mode 100644 index 000000000000..4ce41ec8103f --- /dev/null +++ b/site/public/v1/software/nostrobeai/index.json @@ -0,0 +1,22 @@ +{ + "id": 6922, + "slug": "nostrobeai", + "name": "NostrobeAI", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139952400" + ], + "created_at": "2026-07-10T10:12:42.144622", + "updated_at": "2026-07-10T10:12:42.144622", + "url": "/v1/software/nostrobeai" +} diff --git a/site/public/v1/software/nota-bene-nb/index.json b/site/public/v1/software/nota-bene-nb/index.json new file mode 100644 index 000000000000..7352122f3646 --- /dev/null +++ b/site/public/v1/software/nota-bene-nb/index.json @@ -0,0 +1,19 @@ +{ + "id": 6923, + "slug": "nota-bene-nb", + "name": "Nota Bene (NB)", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084420" + ], + "created_at": "2026-07-10T10:12:42.144622", + "updated_at": "2026-07-10T10:12:42.144622", + "url": "/v1/software/nota-bene-nb" +} diff --git a/site/public/v1/software/notabene/index.json b/site/public/v1/software/notabene/index.json new file mode 100644 index 000000000000..26508004a9ee --- /dev/null +++ b/site/public/v1/software/notabene/index.json @@ -0,0 +1,23 @@ +{ + "id": 6924, + "slug": "notabene", + "name": "Notabene", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105748772" + ], + "created_at": "2026-07-10T10:12:42.144622", + "updated_at": "2026-07-10T10:12:42.144622", + "url": "/v1/software/notabene" +} diff --git a/site/public/v1/software/notational-velocity/index.json b/site/public/v1/software/notational-velocity/index.json new file mode 100644 index 000000000000..1a28140b4782 --- /dev/null +++ b/site/public/v1/software/notational-velocity/index.json @@ -0,0 +1,19 @@ +{ + "id": 6925, + "slug": "notational-velocity", + "name": "Notational Velocity", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084421" + ], + "created_at": "2026-07-10T10:12:42.145648", + "updated_at": "2026-07-10T10:12:42.145648", + "url": "/v1/software/notational-velocity" +} diff --git a/site/public/v1/software/note-block-studio/index.json b/site/public/v1/software/note-block-studio/index.json new file mode 100644 index 000000000000..9bc7e1228b9f --- /dev/null +++ b/site/public/v1/software/note-block-studio/index.json @@ -0,0 +1,19 @@ +{ + "id": 6926, + "slug": "note-block-studio", + "name": "Note Block Studio", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135668362" + ], + "created_at": "2026-07-10T10:12:42.145648", + "updated_at": "2026-07-10T10:12:42.145648", + "url": "/v1/software/note-block-studio" +} diff --git a/site/public/v1/software/notebook/index.json b/site/public/v1/software/notebook/index.json new file mode 100644 index 000000000000..37c1b3c8ac26 --- /dev/null +++ b/site/public/v1/software/notebook/index.json @@ -0,0 +1,19 @@ +{ + "id": 6927, + "slug": "notebook", + "name": "NoteBook", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084423" + ], + "created_at": "2026-07-10T10:12:42.145648", + "updated_at": "2026-07-10T10:12:42.145648", + "url": "/v1/software/notebook" +} diff --git a/site/public/v1/software/notecontrol/index.json b/site/public/v1/software/notecontrol/index.json new file mode 100644 index 000000000000..e68bcca034bd --- /dev/null +++ b/site/public/v1/software/notecontrol/index.json @@ -0,0 +1,23 @@ +{ + "id": 6928, + "slug": "notecontrol", + "name": "NoteControl", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105748773" + ], + "created_at": "2026-07-10T10:12:42.146567", + "updated_at": "2026-07-10T10:12:42.146567", + "url": "/v1/software/notecontrol" +} diff --git a/site/public/v1/software/noteperformer/index.json b/site/public/v1/software/noteperformer/index.json new file mode 100644 index 000000000000..d2305a0d6409 --- /dev/null +++ b/site/public/v1/software/noteperformer/index.json @@ -0,0 +1,19 @@ +{ + "id": 6929, + "slug": "noteperformer", + "name": "NotePerformer", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136171175" + ], + "created_at": "2026-07-10T10:12:42.146567", + "updated_at": "2026-07-10T10:12:42.146567", + "url": "/v1/software/noteperformer" +} diff --git a/site/public/v1/software/noter/index.json b/site/public/v1/software/noter/index.json new file mode 100644 index 000000000000..09950aa144b5 --- /dev/null +++ b/site/public/v1/software/noter/index.json @@ -0,0 +1,19 @@ +{ + "id": 6930, + "slug": "noter", + "name": "Noter", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084424" + ], + "created_at": "2026-07-10T10:12:42.146567", + "updated_at": "2026-07-10T10:12:42.146567", + "url": "/v1/software/noter" +} diff --git a/site/public/v1/software/notification-center/index.json b/site/public/v1/software/notification-center/index.json new file mode 100644 index 000000000000..c623a36225d1 --- /dev/null +++ b/site/public/v1/software/notification-center/index.json @@ -0,0 +1,24 @@ +{ + "id": 6931, + "slug": "notification-center", + "name": "Notification Center", + "release_date": null, + "developers": [ + "Apple Inc." + ], + "publishers": [], + "operating_systems": [ + "iOS", + "Mac operating system" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2917187" + ], + "created_at": "2026-07-10T10:12:42.147566", + "updated_at": "2026-07-10T10:12:42.147566", + "url": "/v1/software/notification-center" +} diff --git a/site/public/v1/software/notificationdaemon/index.json b/site/public/v1/software/notificationdaemon/index.json new file mode 100644 index 000000000000..3e95d18fe2d1 --- /dev/null +++ b/site/public/v1/software/notificationdaemon/index.json @@ -0,0 +1,19 @@ +{ + "id": 6932, + "slug": "notificationdaemon", + "name": "NotificationDaemon", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76181553" + ], + "created_at": "2026-07-10T10:12:42.147566", + "updated_at": "2026-07-10T10:12:42.147566", + "url": "/v1/software/notificationdaemon" +} diff --git a/site/public/v1/software/nottingham-arabidopsis-stock-centre/index.json b/site/public/v1/software/nottingham-arabidopsis-stock-centre/index.json new file mode 100644 index 000000000000..8fca9f7d748e --- /dev/null +++ b/site/public/v1/software/nottingham-arabidopsis-stock-centre/index.json @@ -0,0 +1,19 @@ +{ + "id": 6933, + "slug": "nottingham-arabidopsis-stock-centre", + "name": "Nottingham Arabidopsis Stock Centre", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7063591" + ], + "created_at": "2026-07-10T10:12:42.147566", + "updated_at": "2026-07-10T10:12:42.147566", + "url": "/v1/software/nottingham-arabidopsis-stock-centre" +} diff --git a/site/public/v1/software/nova-q112514943/index.json b/site/public/v1/software/nova-q112514943/index.json new file mode 100644 index 000000000000..f996cf3460bd --- /dev/null +++ b/site/public/v1/software/nova-q112514943/index.json @@ -0,0 +1,21 @@ +{ + "id": 6934, + "slug": "nova-q112514943", + "name": "Nova", + "release_date": null, + "developers": [ + "Panic" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112514943" + ], + "created_at": "2026-07-10T10:12:42.148566", + "updated_at": "2026-07-10T10:12:42.148566", + "url": "/v1/software/nova-q112514943" +} diff --git a/site/public/v1/software/nova/index.json b/site/public/v1/software/nova/index.json new file mode 100644 index 000000000000..0a114cf68e00 --- /dev/null +++ b/site/public/v1/software/nova/index.json @@ -0,0 +1,21 @@ +{ + "id": 6935, + "slug": "nova", + "name": "nova", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Apache License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975261" + ], + "created_at": "2026-07-10T10:12:42.148566", + "updated_at": "2026-07-10T10:12:42.148566", + "url": "/v1/software/nova" +} diff --git a/site/public/v1/software/novabench/index.json b/site/public/v1/software/novabench/index.json new file mode 100644 index 000000000000..f8b2efbb2509 --- /dev/null +++ b/site/public/v1/software/novabench/index.json @@ -0,0 +1,21 @@ +{ + "id": 6936, + "slug": "novabench", + "name": "Novabench", + "release_date": "2007-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17082811" + ], + "created_at": "2026-07-10T10:12:42.148566", + "updated_at": "2026-07-10T10:12:42.148566", + "url": "/v1/software/novabench" +} diff --git a/site/public/v1/software/novakid/index.json b/site/public/v1/software/novakid/index.json new file mode 100644 index 000000000000..6f153f54bc6f --- /dev/null +++ b/site/public/v1/software/novakid/index.json @@ -0,0 +1,19 @@ +{ + "id": 6937, + "slug": "novakid", + "name": "NovaKid", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135111421" + ], + "created_at": "2026-07-10T10:12:42.149565", + "updated_at": "2026-07-10T10:12:42.149565", + "url": "/v1/software/novakid" +} diff --git a/site/public/v1/software/novapdf/index.json b/site/public/v1/software/novapdf/index.json new file mode 100644 index 000000000000..8afb0b893225 --- /dev/null +++ b/site/public/v1/software/novapdf/index.json @@ -0,0 +1,25 @@ +{ + "id": 6938, + "slug": "novapdf", + "name": "novaPDF", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Windows Server 2016", + "Windows 8.1", + "Windows Server 2008", + "Windows 7", + "Windows Server 2003" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7063987" + ], + "created_at": "2026-07-10T10:12:42.149565", + "updated_at": "2026-07-10T10:12:42.149565", + "url": "/v1/software/novapdf" +} diff --git a/site/public/v1/software/novelai/index.json b/site/public/v1/software/novelai/index.json new file mode 100644 index 000000000000..ef2ef1e2ae6c --- /dev/null +++ b/site/public/v1/software/novelai/index.json @@ -0,0 +1,19 @@ +{ + "id": 6939, + "slug": "novelai", + "name": "NovelAI", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q114450428" + ], + "created_at": "2026-07-10T10:12:42.149565", + "updated_at": "2026-07-10T10:12:42.149565", + "url": "/v1/software/novelai" +} diff --git a/site/public/v1/software/novell-access-manager/index.json b/site/public/v1/software/novell-access-manager/index.json new file mode 100644 index 000000000000..e81b07e6d9b8 --- /dev/null +++ b/site/public/v1/software/novell-access-manager/index.json @@ -0,0 +1,21 @@ +{ + "id": 6940, + "slug": "novell-access-manager", + "name": "Novell Access Manager", + "release_date": null, + "developers": [ + "NetIQ" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7064557" + ], + "created_at": "2026-07-10T10:12:42.150565", + "updated_at": "2026-07-10T10:12:42.150565", + "url": "/v1/software/novell-access-manager" +} diff --git a/site/public/v1/software/novell-bordermanager/index.json b/site/public/v1/software/novell-bordermanager/index.json new file mode 100644 index 000000000000..8005c6ad25ec --- /dev/null +++ b/site/public/v1/software/novell-bordermanager/index.json @@ -0,0 +1,21 @@ +{ + "id": 6941, + "slug": "novell-bordermanager", + "name": "Novell BorderManager", + "release_date": "1997-08-25", + "developers": [ + "Novell" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7064558" + ], + "created_at": "2026-07-10T10:12:42.150565", + "updated_at": "2026-07-10T10:12:42.150565", + "url": "/v1/software/novell-bordermanager" +} diff --git a/site/public/v1/software/novell-edirectory/index.json b/site/public/v1/software/novell-edirectory/index.json new file mode 100644 index 000000000000..b257837e331f --- /dev/null +++ b/site/public/v1/software/novell-edirectory/index.json @@ -0,0 +1,25 @@ +{ + "id": 6942, + "slug": "novell-edirectory", + "name": "Novell eDirectory", + "release_date": null, + "developers": [ + "Open Text Corporation" + ], + "publishers": [], + "operating_systems": [ + "cross-platform" + ], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1093748" + ], + "created_at": "2026-07-10T10:12:42.150565", + "updated_at": "2026-07-10T10:12:42.150565", + "url": "/v1/software/novell-edirectory" +} diff --git a/site/public/v1/software/novell-file-management-suite/index.json b/site/public/v1/software/novell-file-management-suite/index.json new file mode 100644 index 000000000000..c0348de1ed34 --- /dev/null +++ b/site/public/v1/software/novell-file-management-suite/index.json @@ -0,0 +1,19 @@ +{ + "id": 6943, + "slug": "novell-file-management-suite", + "name": "Novell File Management Suite", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17092088" + ], + "created_at": "2026-07-10T10:12:42.150565", + "updated_at": "2026-07-10T10:12:42.150565", + "url": "/v1/software/novell-file-management-suite" +} diff --git a/site/public/v1/software/novell-file-reporter/index.json b/site/public/v1/software/novell-file-reporter/index.json new file mode 100644 index 000000000000..3dc0ca7f7f0d --- /dev/null +++ b/site/public/v1/software/novell-file-reporter/index.json @@ -0,0 +1,19 @@ +{ + "id": 6944, + "slug": "novell-file-reporter", + "name": "Novell File Reporter", + "release_date": "2010-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7064565" + ], + "created_at": "2026-07-10T10:12:42.151651", + "updated_at": "2026-07-10T10:12:42.151651", + "url": "/v1/software/novell-file-reporter" +} diff --git a/site/public/v1/software/novell-identity-manager/index.json b/site/public/v1/software/novell-identity-manager/index.json new file mode 100644 index 000000000000..605f61bcf60c --- /dev/null +++ b/site/public/v1/software/novell-identity-manager/index.json @@ -0,0 +1,22 @@ +{ + "id": 6945, + "slug": "novell-identity-manager", + "name": "Novell Identity Manager", + "release_date": null, + "developers": [ + "NetIQ", + "Novell" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1965263" + ], + "created_at": "2026-07-10T10:12:42.151651", + "updated_at": "2026-07-10T10:12:42.151651", + "url": "/v1/software/novell-identity-manager" +} diff --git a/site/public/v1/software/novell-storage-manager/index.json b/site/public/v1/software/novell-storage-manager/index.json new file mode 100644 index 000000000000..bf27a43c877d --- /dev/null +++ b/site/public/v1/software/novell-storage-manager/index.json @@ -0,0 +1,21 @@ +{ + "id": 6946, + "slug": "novell-storage-manager", + "name": "Novell Storage Manager", + "release_date": "2004-01-01", + "developers": [ + "Novell" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7064568" + ], + "created_at": "2026-07-10T10:12:42.151651", + "updated_at": "2026-07-10T10:12:42.151651", + "url": "/v1/software/novell-storage-manager" +} diff --git a/site/public/v1/software/novell-zenworks/index.json b/site/public/v1/software/novell-zenworks/index.json new file mode 100644 index 000000000000..da9d65c2bd35 --- /dev/null +++ b/site/public/v1/software/novell-zenworks/index.json @@ -0,0 +1,23 @@ +{ + "id": 6947, + "slug": "novell-zenworks", + "name": "Novell ZENworks", + "release_date": null, + "developers": [ + "Micro Focus International", + "Open Text Corporation", + "Novell" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2002922" + ], + "created_at": "2026-07-10T10:12:42.152679", + "updated_at": "2026-07-10T10:12:42.152679", + "url": "/v1/software/novell-zenworks" +} diff --git a/site/public/v1/software/noverfly/index.json b/site/public/v1/software/noverfly/index.json new file mode 100644 index 000000000000..5e712c45068f --- /dev/null +++ b/site/public/v1/software/noverfly/index.json @@ -0,0 +1,25 @@ +{ + "id": 6948, + "slug": "noverfly", + "name": "NoverFly", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "cross-platform" + ], + "programming_languages": [ + "TypeScript" + ], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138784116" + ], + "created_at": "2026-07-10T10:12:42.152679", + "updated_at": "2026-07-10T10:12:42.152679", + "url": "/v1/software/noverfly" +} diff --git a/site/public/v1/software/novopay/index.json b/site/public/v1/software/novopay/index.json new file mode 100644 index 000000000000..6f122243f2e5 --- /dev/null +++ b/site/public/v1/software/novopay/index.json @@ -0,0 +1,19 @@ +{ + "id": 6949, + "slug": "novopay", + "name": "Novopay", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7065033" + ], + "created_at": "2026-07-10T10:12:42.152679", + "updated_at": "2026-07-10T10:12:42.152679", + "url": "/v1/software/novopay" +} diff --git a/site/public/v1/software/nowcomment/index.json b/site/public/v1/software/nowcomment/index.json new file mode 100644 index 000000000000..c62aa3df2db9 --- /dev/null +++ b/site/public/v1/software/nowcomment/index.json @@ -0,0 +1,19 @@ +{ + "id": 6950, + "slug": "nowcomment", + "name": "NowComment", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084425" + ], + "created_at": "2026-07-10T10:12:42.153666", + "updated_at": "2026-07-10T10:12:42.153666", + "url": "/v1/software/nowcomment" +} diff --git a/site/public/v1/software/nowserving/index.json b/site/public/v1/software/nowserving/index.json new file mode 100644 index 000000000000..33f9d3cc275f --- /dev/null +++ b/site/public/v1/software/nowserving/index.json @@ -0,0 +1,19 @@ +{ + "id": 6951, + "slug": "nowserving", + "name": "NowServing", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135507597" + ], + "created_at": "2026-07-10T10:12:42.153666", + "updated_at": "2026-07-10T10:12:42.153666", + "url": "/v1/software/nowserving" +} diff --git a/site/public/v1/software/noxplayer/index.json b/site/public/v1/software/noxplayer/index.json new file mode 100644 index 000000000000..d801922bd9e3 --- /dev/null +++ b/site/public/v1/software/noxplayer/index.json @@ -0,0 +1,29 @@ +{ + "id": 6952, + "slug": "noxplayer", + "name": "NoxPlayer", + "release_date": "2015-06-06", + "developers": [ + "Nox Limited" + ], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [ + "Python" + ], + "licenses": [ + "proprietary license", + "adware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q30945932" + ], + "created_at": "2026-07-10T10:12:42.153666", + "updated_at": "2026-07-10T10:12:42.153666", + "url": "/v1/software/noxplayer" +} diff --git a/site/public/v1/software/noza-inc/index.json b/site/public/v1/software/noza-inc/index.json new file mode 100644 index 000000000000..1ea066368ccf --- /dev/null +++ b/site/public/v1/software/noza-inc/index.json @@ -0,0 +1,19 @@ +{ + "id": 6953, + "slug": "noza-inc", + "name": "NOZA, Inc.", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6954997" + ], + "created_at": "2026-07-10T10:12:42.153666", + "updated_at": "2026-07-10T10:12:42.153666", + "url": "/v1/software/noza-inc" +} diff --git a/site/public/v1/software/npapi-sdk/index.json b/site/public/v1/software/npapi-sdk/index.json new file mode 100644 index 000000000000..1063cd2dd469 --- /dev/null +++ b/site/public/v1/software/npapi-sdk/index.json @@ -0,0 +1,19 @@ +{ + "id": 6954, + "slug": "npapi-sdk", + "name": "npapi-sdk", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975263" + ], + "created_at": "2026-07-10T10:12:42.154569", + "updated_at": "2026-07-10T10:12:42.154569", + "url": "/v1/software/npapi-sdk" +} diff --git a/site/public/v1/software/npapi-vlc/index.json b/site/public/v1/software/npapi-vlc/index.json new file mode 100644 index 000000000000..d0fb38b9281b --- /dev/null +++ b/site/public/v1/software/npapi-vlc/index.json @@ -0,0 +1,19 @@ +{ + "id": 6955, + "slug": "npapi-vlc", + "name": "npapi-vlc", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975264" + ], + "created_at": "2026-07-10T10:12:42.154569", + "updated_at": "2026-07-10T10:12:42.154569", + "url": "/v1/software/npapi-vlc" +} diff --git a/site/public/v1/software/nparadox/index.json b/site/public/v1/software/nparadox/index.json new file mode 100644 index 000000000000..04d7fd7d51ac --- /dev/null +++ b/site/public/v1/software/nparadox/index.json @@ -0,0 +1,19 @@ +{ + "id": 6956, + "slug": "nparadox", + "name": "NParadox", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140187923" + ], + "created_at": "2026-07-10T10:12:42.155627", + "updated_at": "2026-07-10T10:12:42.155627", + "url": "/v1/software/nparadox" +} diff --git a/site/public/v1/software/npclassifier/index.json b/site/public/v1/software/npclassifier/index.json new file mode 100644 index 000000000000..646b099298e1 --- /dev/null +++ b/site/public/v1/software/npclassifier/index.json @@ -0,0 +1,19 @@ +{ + "id": 6957, + "slug": "npclassifier", + "name": "NPClassifier", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112144253" + ], + "created_at": "2026-07-10T10:12:42.155627", + "updated_at": "2026-07-10T10:12:42.155627", + "url": "/v1/software/npclassifier" +} diff --git a/site/public/v1/software/npefix/index.json b/site/public/v1/software/npefix/index.json new file mode 100644 index 000000000000..9cfa0286dd54 --- /dev/null +++ b/site/public/v1/software/npefix/index.json @@ -0,0 +1,19 @@ +{ + "id": 6958, + "slug": "npefix", + "name": "npefix", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127485404" + ], + "created_at": "2026-07-10T10:12:42.155627", + "updated_at": "2026-07-10T10:12:42.155627", + "url": "/v1/software/npefix" +} diff --git a/site/public/v1/software/npgsql/index.json b/site/public/v1/software/npgsql/index.json new file mode 100644 index 000000000000..19e97e46fe62 --- /dev/null +++ b/site/public/v1/software/npgsql/index.json @@ -0,0 +1,19 @@ +{ + "id": 6959, + "slug": "npgsql", + "name": "Npgsql", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10851951" + ], + "created_at": "2026-07-10T10:12:42.155627", + "updated_at": "2026-07-10T10:12:42.155627", + "url": "/v1/software/npgsql" +} diff --git a/site/public/v1/software/npsol/index.json b/site/public/v1/software/npsol/index.json new file mode 100644 index 000000000000..7218d8534658 --- /dev/null +++ b/site/public/v1/software/npsol/index.json @@ -0,0 +1,23 @@ +{ + "id": 6960, + "slug": "npsol", + "name": "NPSOL", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Fortran" + ], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6955065" + ], + "created_at": "2026-07-10T10:12:42.156565", + "updated_at": "2026-07-10T10:12:42.156565", + "url": "/v1/software/npsol" +} diff --git a/site/public/v1/software/nqp/index.json b/site/public/v1/software/nqp/index.json new file mode 100644 index 000000000000..de3ffebe3c47 --- /dev/null +++ b/site/public/v1/software/nqp/index.json @@ -0,0 +1,19 @@ +{ + "id": 6961, + "slug": "nqp", + "name": "nqp", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975265" + ], + "created_at": "2026-07-10T10:12:42.156565", + "updated_at": "2026-07-10T10:12:42.156565", + "url": "/v1/software/nqp" +} diff --git a/site/public/v1/software/nquery-sample-size-software/index.json b/site/public/v1/software/nquery-sample-size-software/index.json new file mode 100644 index 000000000000..b7fd3a0bc205 --- /dev/null +++ b/site/public/v1/software/nquery-sample-size-software/index.json @@ -0,0 +1,19 @@ +{ + "id": 6962, + "slug": "nquery-sample-size-software", + "name": "nQuery Sample Size Software", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q55641191" + ], + "created_at": "2026-07-10T10:12:42.157562", + "updated_at": "2026-07-10T10:12:42.157562", + "url": "/v1/software/nquery-sample-size-software" +} diff --git a/site/public/v1/software/nsupdate/index.json b/site/public/v1/software/nsupdate/index.json new file mode 100644 index 000000000000..5f69bc589732 --- /dev/null +++ b/site/public/v1/software/nsupdate/index.json @@ -0,0 +1,19 @@ +{ + "id": 6963, + "slug": "nsupdate", + "name": "nsupdate", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7067586" + ], + "created_at": "2026-07-10T10:12:42.157562", + "updated_at": "2026-07-10T10:12:42.157562", + "url": "/v1/software/nsupdate" +} diff --git a/site/public/v1/software/nsynth/index.json b/site/public/v1/software/nsynth/index.json new file mode 100644 index 000000000000..73397971c0f5 --- /dev/null +++ b/site/public/v1/software/nsynth/index.json @@ -0,0 +1,19 @@ +{ + "id": 6964, + "slug": "nsynth", + "name": "NSynth", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116788731" + ], + "created_at": "2026-07-10T10:12:42.157562", + "updated_at": "2026-07-10T10:12:42.157562", + "url": "/v1/software/nsynth" +} diff --git a/site/public/v1/software/ntchem/index.json b/site/public/v1/software/ntchem/index.json new file mode 100644 index 000000000000..df2ac070bcc9 --- /dev/null +++ b/site/public/v1/software/ntchem/index.json @@ -0,0 +1,21 @@ +{ + "id": 6965, + "slug": "ntchem", + "name": "NTChem", + "release_date": null, + "developers": [ + "RIKEN" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110286863" + ], + "created_at": "2026-07-10T10:12:42.157562", + "updated_at": "2026-07-10T10:12:42.157562", + "url": "/v1/software/ntchem" +} diff --git a/site/public/v1/software/ntfsresize/index.json b/site/public/v1/software/ntfsresize/index.json new file mode 100644 index 000000000000..8ce8396f7dba --- /dev/null +++ b/site/public/v1/software/ntfsresize/index.json @@ -0,0 +1,19 @@ +{ + "id": 6966, + "slug": "ntfsresize", + "name": "ntfsresize", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7067620" + ], + "created_at": "2026-07-10T10:12:42.158642", + "updated_at": "2026-07-10T10:12:42.158642", + "url": "/v1/software/ntfsresize" +} diff --git a/site/public/v1/software/ntfy/index.json b/site/public/v1/software/ntfy/index.json new file mode 100644 index 000000000000..10ad23a7fe00 --- /dev/null +++ b/site/public/v1/software/ntfy/index.json @@ -0,0 +1,24 @@ +{ + "id": 6967, + "slug": "ntfy", + "name": "ntfy", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "iOS" + ], + "programming_languages": [], + "licenses": [ + "Apache Software License 2.0", + "GNU General Public License, version 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115156417" + ], + "created_at": "2026-07-10T10:12:42.158642", + "updated_at": "2026-07-10T10:12:42.158642", + "url": "/v1/software/ntfy" +} diff --git a/site/public/v1/software/ntlite/index.json b/site/public/v1/software/ntlite/index.json new file mode 100644 index 000000000000..6b336f33441d --- /dev/null +++ b/site/public/v1/software/ntlite/index.json @@ -0,0 +1,22 @@ +{ + "id": 6968, + "slug": "ntlite", + "name": "NTLite", + "release_date": "2014-09-18", + "developers": [], + "publishers": [], + "operating_systems": [ + "Windows 8.1", + "Windows 7" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18629334" + ], + "created_at": "2026-07-10T10:12:42.158642", + "updated_at": "2026-07-10T10:12:42.158642", + "url": "/v1/software/ntlite" +} diff --git a/site/public/v1/software/ntpsec/index.json b/site/public/v1/software/ntpsec/index.json new file mode 100644 index 000000000000..1f09cd0f7b5c --- /dev/null +++ b/site/public/v1/software/ntpsec/index.json @@ -0,0 +1,29 @@ +{ + "id": 6969, + "slug": "ntpsec", + "name": "NTPsec", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "NTP License", + "4-clause BSD License", + "Creative Commons Attribution 4.0 International", + "2-clause BSD License", + "3-clause BSD License", + "Apache Software License 2.0", + "ISC license", + "Beerware", + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125526030" + ], + "created_at": "2026-07-10T10:12:42.159705", + "updated_at": "2026-07-10T10:12:42.159705", + "url": "/v1/software/ntpsec" +} diff --git a/site/public/v1/software/ntsyspc/index.json b/site/public/v1/software/ntsyspc/index.json new file mode 100644 index 000000000000..087933dafca8 --- /dev/null +++ b/site/public/v1/software/ntsyspc/index.json @@ -0,0 +1,19 @@ +{ + "id": 6970, + "slug": "ntsyspc", + "name": "NTSYSpc", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112123696" + ], + "created_at": "2026-07-10T10:12:42.159705", + "updated_at": "2026-07-10T10:12:42.159705", + "url": "/v1/software/ntsyspc" +} diff --git a/site/public/v1/software/nu-tech/index.json b/site/public/v1/software/nu-tech/index.json new file mode 100644 index 000000000000..7c19c44c880c --- /dev/null +++ b/site/public/v1/software/nu-tech/index.json @@ -0,0 +1,21 @@ +{ + "id": 6971, + "slug": "nu-tech", + "name": "NU-Tech", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6955554" + ], + "created_at": "2026-07-10T10:12:42.159705", + "updated_at": "2026-07-10T10:12:42.159705", + "url": "/v1/software/nu-tech" +} diff --git a/site/public/v1/software/nuance-pdf-reader/index.json b/site/public/v1/software/nuance-pdf-reader/index.json new file mode 100644 index 000000000000..665c9391e018 --- /dev/null +++ b/site/public/v1/software/nuance-pdf-reader/index.json @@ -0,0 +1,19 @@ +{ + "id": 6972, + "slug": "nuance-pdf-reader", + "name": "Nuance PDF Reader", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7067802" + ], + "created_at": "2026-07-10T10:12:42.160564", + "updated_at": "2026-07-10T10:12:42.160564", + "url": "/v1/software/nuance-pdf-reader" +} diff --git a/site/public/v1/software/nubimed/index.json b/site/public/v1/software/nubimed/index.json new file mode 100644 index 000000000000..ea740510e526 --- /dev/null +++ b/site/public/v1/software/nubimed/index.json @@ -0,0 +1,24 @@ +{ + "id": 6973, + "slug": "nubimed", + "name": "Nubimed", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "CentOS", + "cross-platform", + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q99525685" + ], + "created_at": "2026-07-10T10:12:42.160564", + "updated_at": "2026-07-10T10:12:42.160564", + "url": "/v1/software/nubimed" +} diff --git a/site/public/v1/software/nucalc/index.json b/site/public/v1/software/nucalc/index.json new file mode 100644 index 000000000000..de86e58c0116 --- /dev/null +++ b/site/public/v1/software/nucalc/index.json @@ -0,0 +1,23 @@ +{ + "id": 6974, + "slug": "nucalc", + "name": "NuCalc", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "iOS", + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3775806" + ], + "created_at": "2026-07-10T10:12:42.161563", + "updated_at": "2026-07-10T10:12:42.161563", + "url": "/v1/software/nucalc" +} diff --git a/site/public/v1/software/nuclear-rat/index.json b/site/public/v1/software/nuclear-rat/index.json new file mode 100644 index 000000000000..c8d7fcb0ce6e --- /dev/null +++ b/site/public/v1/software/nuclear-rat/index.json @@ -0,0 +1,19 @@ +{ + "id": 6975, + "slug": "nuclear-rat", + "name": "Nuclear RAT", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7067992" + ], + "created_at": "2026-07-10T10:12:42.161563", + "updated_at": "2026-07-10T10:12:42.161563", + "url": "/v1/software/nuclear-rat" +} diff --git a/site/public/v1/software/nucleus-for-government/index.json b/site/public/v1/software/nucleus-for-government/index.json new file mode 100644 index 000000000000..6b96a8a53845 --- /dev/null +++ b/site/public/v1/software/nucleus-for-government/index.json @@ -0,0 +1,21 @@ +{ + "id": 6976, + "slug": "nucleus-for-government", + "name": "Nucleus for Government", + "release_date": null, + "developers": [ + "Nucleus Security" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138988654" + ], + "created_at": "2026-07-10T10:12:42.161563", + "updated_at": "2026-07-10T10:12:42.161563", + "url": "/v1/software/nucleus-for-government" +} diff --git a/site/public/v1/software/nudat/index.json b/site/public/v1/software/nudat/index.json new file mode 100644 index 000000000000..333f52a1a4d9 --- /dev/null +++ b/site/public/v1/software/nudat/index.json @@ -0,0 +1,19 @@ +{ + "id": 6977, + "slug": "nudat", + "name": "NuDat", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q21234191" + ], + "created_at": "2026-07-10T10:12:42.162566", + "updated_at": "2026-07-10T10:12:42.162566", + "url": "/v1/software/nudat" +} diff --git a/site/public/v1/software/nudi/index.json b/site/public/v1/software/nudi/index.json new file mode 100644 index 000000000000..228186c03942 --- /dev/null +++ b/site/public/v1/software/nudi/index.json @@ -0,0 +1,19 @@ +{ + "id": 6978, + "slug": "nudi", + "name": "Nudi", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7068374" + ], + "created_at": "2026-07-10T10:12:42.162566", + "updated_at": "2026-07-10T10:12:42.162566", + "url": "/v1/software/nudi" +} diff --git a/site/public/v1/software/nuitka/index.json b/site/public/v1/software/nuitka/index.json new file mode 100644 index 000000000000..20690e3e23e6 --- /dev/null +++ b/site/public/v1/software/nuitka/index.json @@ -0,0 +1,27 @@ +{ + "id": 6979, + "slug": "nuitka", + "name": "Nuitka", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "FreeBSD", + "macOS", + "Microsoft Windows" + ], + "programming_languages": [ + "Python" + ], + "licenses": [ + "Apache Software License 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q48989469" + ], + "created_at": "2026-07-10T10:12:42.162566", + "updated_at": "2026-07-10T10:12:42.162566", + "url": "/v1/software/nuitka" +} diff --git a/site/public/v1/software/nukemap/index.json b/site/public/v1/software/nukemap/index.json new file mode 100644 index 000000000000..884c3ad5e2e3 --- /dev/null +++ b/site/public/v1/software/nukemap/index.json @@ -0,0 +1,21 @@ +{ + "id": 6980, + "slug": "nukemap", + "name": "Nukemap", + "release_date": null, + "developers": [ + "Alex Wellerstein" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16821376" + ], + "created_at": "2026-07-10T10:12:42.162566", + "updated_at": "2026-07-10T10:12:42.162566", + "url": "/v1/software/nukemap" +} diff --git a/site/public/v1/software/nukeviet/index.json b/site/public/v1/software/nukeviet/index.json new file mode 100644 index 000000000000..1a96d9e35b76 --- /dev/null +++ b/site/public/v1/software/nukeviet/index.json @@ -0,0 +1,19 @@ +{ + "id": 6981, + "slug": "nukeviet", + "name": "NukeViet", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10801831" + ], + "created_at": "2026-07-10T10:12:42.163648", + "updated_at": "2026-07-10T10:12:42.163648", + "url": "/v1/software/nukeviet" +} diff --git a/site/public/v1/software/nullmailer/index.json b/site/public/v1/software/nullmailer/index.json new file mode 100644 index 000000000000..0f1b83e4332b --- /dev/null +++ b/site/public/v1/software/nullmailer/index.json @@ -0,0 +1,19 @@ +{ + "id": 6982, + "slug": "nullmailer", + "name": "nullmailer", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62855778" + ], + "created_at": "2026-07-10T10:12:42.163648", + "updated_at": "2026-07-10T10:12:42.163648", + "url": "/v1/software/nullmailer" +} diff --git a/site/public/v1/software/num-utils/index.json b/site/public/v1/software/num-utils/index.json new file mode 100644 index 000000000000..a047ba9be0a0 --- /dev/null +++ b/site/public/v1/software/num-utils/index.json @@ -0,0 +1,19 @@ +{ + "id": 6983, + "slug": "num-utils", + "name": "num-utils", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62855770" + ], + "created_at": "2026-07-10T10:12:42.163648", + "updated_at": "2026-07-10T10:12:42.163648", + "url": "/v1/software/num-utils" +} diff --git a/site/public/v1/software/numad/index.json b/site/public/v1/software/numad/index.json new file mode 100644 index 000000000000..fadf487043b7 --- /dev/null +++ b/site/public/v1/software/numad/index.json @@ -0,0 +1,19 @@ +{ + "id": 6984, + "slug": "numad", + "name": "numad", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975267" + ], + "created_at": "2026-07-10T10:12:42.164644", + "updated_at": "2026-07-10T10:12:42.164644", + "url": "/v1/software/numad" +} diff --git a/site/public/v1/software/numberguru/index.json b/site/public/v1/software/numberguru/index.json new file mode 100644 index 000000000000..f2b65872724d --- /dev/null +++ b/site/public/v1/software/numberguru/index.json @@ -0,0 +1,21 @@ +{ + "id": 6985, + "slug": "numberguru", + "name": "NumberGuru", + "release_date": "2011-01-01", + "developers": [ + "BeenVerified" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16927747" + ], + "created_at": "2026-07-10T10:12:42.164644", + "updated_at": "2026-07-10T10:12:42.164644", + "url": "/v1/software/numberguru" +} diff --git a/site/public/v1/software/numbuster/index.json b/site/public/v1/software/numbuster/index.json new file mode 100644 index 000000000000..67c5e69b5fe0 --- /dev/null +++ b/site/public/v1/software/numbuster/index.json @@ -0,0 +1,19 @@ +{ + "id": 6986, + "slug": "numbuster", + "name": "NumBuster!", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18152949" + ], + "created_at": "2026-07-10T10:12:42.164644", + "updated_at": "2026-07-10T10:12:42.164644", + "url": "/v1/software/numbuster" +} diff --git a/site/public/v1/software/numeo/index.json b/site/public/v1/software/numeo/index.json new file mode 100644 index 000000000000..c52a3ba46046 --- /dev/null +++ b/site/public/v1/software/numeo/index.json @@ -0,0 +1,19 @@ +{ + "id": 6987, + "slug": "numeo", + "name": "Numeo", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140138311" + ], + "created_at": "2026-07-10T10:12:42.165637", + "updated_at": "2026-07-10T10:12:42.165637", + "url": "/v1/software/numeo" +} diff --git a/site/public/v1/software/numerical-electromagnetics-code/index.json b/site/public/v1/software/numerical-electromagnetics-code/index.json new file mode 100644 index 000000000000..a7999b9fa5e1 --- /dev/null +++ b/site/public/v1/software/numerical-electromagnetics-code/index.json @@ -0,0 +1,19 @@ +{ + "id": 6988, + "slug": "numerical-electromagnetics-code", + "name": "Numerical Electromagnetics Code", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q630242" + ], + "created_at": "2026-07-10T10:12:42.165637", + "updated_at": "2026-07-10T10:12:42.165637", + "url": "/v1/software/numerical-electromagnetics-code" +} diff --git a/site/public/v1/software/numerical-propulsion-system-simulation/index.json b/site/public/v1/software/numerical-propulsion-system-simulation/index.json new file mode 100644 index 000000000000..5befca42453f --- /dev/null +++ b/site/public/v1/software/numerical-propulsion-system-simulation/index.json @@ -0,0 +1,19 @@ +{ + "id": 6989, + "slug": "numerical-propulsion-system-simulation", + "name": "Numerical Propulsion System Simulation", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139855587" + ], + "created_at": "2026-07-10T10:12:42.165637", + "updated_at": "2026-07-10T10:12:42.165637", + "url": "/v1/software/numerical-propulsion-system-simulation" +} diff --git a/site/public/v1/software/numlockx/index.json b/site/public/v1/software/numlockx/index.json new file mode 100644 index 000000000000..59cad352ccbb --- /dev/null +++ b/site/public/v1/software/numlockx/index.json @@ -0,0 +1,19 @@ +{ + "id": 6990, + "slug": "numlockx", + "name": "NumLockX", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62855750" + ], + "created_at": "2026-07-10T10:12:42.166620", + "updated_at": "2026-07-10T10:12:42.166620", + "url": "/v1/software/numlockx" +} diff --git a/site/public/v1/software/numxl/index.json b/site/public/v1/software/numxl/index.json new file mode 100644 index 000000000000..405ffe8645f3 --- /dev/null +++ b/site/public/v1/software/numxl/index.json @@ -0,0 +1,19 @@ +{ + "id": 6991, + "slug": "numxl", + "name": "NumXL", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7069022" + ], + "created_at": "2026-07-10T10:12:42.166620", + "updated_at": "2026-07-10T10:12:42.166620", + "url": "/v1/software/numxl" +} diff --git a/site/public/v1/software/nuprl/index.json b/site/public/v1/software/nuprl/index.json new file mode 100644 index 000000000000..1773840ff508 --- /dev/null +++ b/site/public/v1/software/nuprl/index.json @@ -0,0 +1,19 @@ +{ + "id": 6992, + "slug": "nuprl", + "name": "NuPRL", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22907407" + ], + "created_at": "2026-07-10T10:12:42.166620", + "updated_at": "2026-07-10T10:12:42.166620", + "url": "/v1/software/nuprl" +} diff --git a/site/public/v1/software/nurbak/index.json b/site/public/v1/software/nurbak/index.json new file mode 100644 index 000000000000..f3af03d90c75 --- /dev/null +++ b/site/public/v1/software/nurbak/index.json @@ -0,0 +1,19 @@ +{ + "id": 6993, + "slug": "nurbak", + "name": "Nurbak", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139606946" + ], + "created_at": "2026-07-10T10:12:42.167633", + "updated_at": "2026-07-10T10:12:42.167633", + "url": "/v1/software/nurbak" +} diff --git a/site/public/v1/software/nursa/index.json b/site/public/v1/software/nursa/index.json new file mode 100644 index 000000000000..12afa0396858 --- /dev/null +++ b/site/public/v1/software/nursa/index.json @@ -0,0 +1,19 @@ +{ + "id": 6994, + "slug": "nursa", + "name": "NURSA", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111437119" + ], + "created_at": "2026-07-10T10:12:42.167633", + "updated_at": "2026-07-10T10:12:42.167633", + "url": "/v1/software/nursa" +} diff --git a/site/public/v1/software/nusphere/index.json b/site/public/v1/software/nusphere/index.json new file mode 100644 index 000000000000..1513b8099ee0 --- /dev/null +++ b/site/public/v1/software/nusphere/index.json @@ -0,0 +1,19 @@ +{ + "id": 6995, + "slug": "nusphere", + "name": "NuSphere", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4045535" + ], + "created_at": "2026-07-10T10:12:42.167633", + "updated_at": "2026-07-10T10:12:42.167633", + "url": "/v1/software/nusphere" +} diff --git a/site/public/v1/software/nusuk/index.json b/site/public/v1/software/nusuk/index.json new file mode 100644 index 000000000000..94e46cbcff48 --- /dev/null +++ b/site/public/v1/software/nusuk/index.json @@ -0,0 +1,19 @@ +{ + "id": 6996, + "slug": "nusuk", + "name": "Nusuk", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139822647" + ], + "created_at": "2026-07-10T10:12:42.168665", + "updated_at": "2026-07-10T10:12:42.168665", + "url": "/v1/software/nusuk" +} diff --git a/site/public/v1/software/nutrilow/index.json b/site/public/v1/software/nutrilow/index.json new file mode 100644 index 000000000000..da2432868625 --- /dev/null +++ b/site/public/v1/software/nutrilow/index.json @@ -0,0 +1,19 @@ +{ + "id": 6997, + "slug": "nutrilow", + "name": "Nutrilow", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136531966" + ], + "created_at": "2026-07-10T10:12:42.168665", + "updated_at": "2026-07-10T10:12:42.168665", + "url": "/v1/software/nutrilow" +} diff --git a/site/public/v1/software/nutritious-rice-for-the-world/index.json b/site/public/v1/software/nutritious-rice-for-the-world/index.json new file mode 100644 index 000000000000..afb2a035ed93 --- /dev/null +++ b/site/public/v1/software/nutritious-rice-for-the-world/index.json @@ -0,0 +1,19 @@ +{ + "id": 6998, + "slug": "nutritious-rice-for-the-world", + "name": "Nutritious Rice for the World", + "release_date": "2008-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2005610" + ], + "created_at": "2026-07-10T10:12:42.169631", + "updated_at": "2026-07-10T10:12:42.169631", + "url": "/v1/software/nutritious-rice-for-the-world" +} diff --git a/site/public/v1/software/nuts/index.json b/site/public/v1/software/nuts/index.json new file mode 100644 index 000000000000..589f0bf60866 --- /dev/null +++ b/site/public/v1/software/nuts/index.json @@ -0,0 +1,21 @@ +{ + "id": 6999, + "slug": "nuts", + "name": "NUTS", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "GNU General Public License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6955654" + ], + "created_at": "2026-07-10T10:12:42.169631", + "updated_at": "2026-07-10T10:12:42.169631", + "url": "/v1/software/nuts" +} diff --git a/site/public/v1/software/nuvem-marketing/index.json b/site/public/v1/software/nuvem-marketing/index.json new file mode 100644 index 000000000000..b89e9883a773 --- /dev/null +++ b/site/public/v1/software/nuvem-marketing/index.json @@ -0,0 +1,21 @@ +{ + "id": 7000, + "slug": "nuvem-marketing", + "name": "Nuvem Marketing", + "release_date": null, + "developers": [ + "Nuvemshop" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138094618" + ], + "created_at": "2026-07-10T10:12:42.169631", + "updated_at": "2026-07-10T10:12:42.169631", + "url": "/v1/software/nuvem-marketing" +} diff --git a/site/public/v1/software/nvd/index.json b/site/public/v1/software/nvd/index.json new file mode 100644 index 000000000000..1304f6c792f4 --- /dev/null +++ b/site/public/v1/software/nvd/index.json @@ -0,0 +1,21 @@ +{ + "id": 7001, + "slug": "nvd", + "name": "nvd", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Apache Software License 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136562922" + ], + "created_at": "2026-07-10T10:12:42.169631", + "updated_at": "2026-07-10T10:12:42.169631", + "url": "/v1/software/nvd" +} diff --git a/site/public/v1/software/nvflare/index.json b/site/public/v1/software/nvflare/index.json new file mode 100644 index 000000000000..b72e31b3ad6e --- /dev/null +++ b/site/public/v1/software/nvflare/index.json @@ -0,0 +1,21 @@ +{ + "id": 7002, + "slug": "nvflare", + "name": "NVFlare", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Apache Software License 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127474913" + ], + "created_at": "2026-07-10T10:12:42.170643", + "updated_at": "2026-07-10T10:12:42.170643", + "url": "/v1/software/nvflare" +} diff --git a/site/public/v1/software/nvidia-hairworks/index.json b/site/public/v1/software/nvidia-hairworks/index.json new file mode 100644 index 000000000000..36b0e560cacd --- /dev/null +++ b/site/public/v1/software/nvidia-hairworks/index.json @@ -0,0 +1,19 @@ +{ + "id": 7003, + "slug": "nvidia-hairworks", + "name": "Nvidia HairWorks", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q20828879" + ], + "created_at": "2026-07-10T10:12:42.170643", + "updated_at": "2026-07-10T10:12:42.170643", + "url": "/v1/software/nvidia-hairworks" +} diff --git a/site/public/v1/software/nvidia-iray/index.json b/site/public/v1/software/nvidia-iray/index.json new file mode 100644 index 000000000000..de7e84ea1957 --- /dev/null +++ b/site/public/v1/software/nvidia-iray/index.json @@ -0,0 +1,19 @@ +{ + "id": 7004, + "slug": "nvidia-iray", + "name": "NVIDIA Iray", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18417115" + ], + "created_at": "2026-07-10T10:12:42.170643", + "updated_at": "2026-07-10T10:12:42.170643", + "url": "/v1/software/nvidia-iray" +} diff --git a/site/public/v1/software/nvidia-shadowplay/index.json b/site/public/v1/software/nvidia-shadowplay/index.json new file mode 100644 index 000000000000..a5a6252003fd --- /dev/null +++ b/site/public/v1/software/nvidia-shadowplay/index.json @@ -0,0 +1,19 @@ +{ + "id": 7005, + "slug": "nvidia-shadowplay", + "name": "Nvidia Shadowplay", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16927926" + ], + "created_at": "2026-07-10T10:12:42.171624", + "updated_at": "2026-07-10T10:12:42.171624", + "url": "/v1/software/nvidia-shadowplay" +} diff --git a/site/public/v1/software/nvidia-system-tools/index.json b/site/public/v1/software/nvidia-system-tools/index.json new file mode 100644 index 000000000000..ea89f82df2e7 --- /dev/null +++ b/site/public/v1/software/nvidia-system-tools/index.json @@ -0,0 +1,25 @@ +{ + "id": 7006, + "slug": "nvidia-system-tools", + "name": "Nvidia System Tools", + "release_date": null, + "developers": [ + "Nvidia" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4045557" + ], + "created_at": "2026-07-10T10:12:42.171624", + "updated_at": "2026-07-10T10:12:42.171624", + "url": "/v1/software/nvidia-system-tools" +} diff --git a/site/public/v1/software/nvivotools/index.json b/site/public/v1/software/nvivotools/index.json new file mode 100644 index 000000000000..6595064b6d57 --- /dev/null +++ b/site/public/v1/software/nvivotools/index.json @@ -0,0 +1,26 @@ +{ + "id": 7007, + "slug": "nvivotools", + "name": "NVivotools", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [ + "Python" + ], + "licenses": [ + "GNU General Public License, version 3.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105229785" + ], + "created_at": "2026-07-10T10:12:42.171624", + "updated_at": "2026-07-10T10:12:42.171624", + "url": "/v1/software/nvivotools" +} diff --git a/site/public/v1/software/nvizn/index.json b/site/public/v1/software/nvizn/index.json new file mode 100644 index 000000000000..f3b332dd4391 --- /dev/null +++ b/site/public/v1/software/nvizn/index.json @@ -0,0 +1,21 @@ +{ + "id": 7008, + "slug": "nvizn", + "name": "NViZn", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Java" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11236253" + ], + "created_at": "2026-07-10T10:12:42.171624", + "updated_at": "2026-07-10T10:12:42.171624", + "url": "/v1/software/nvizn" +} diff --git a/site/public/v1/software/nx-technology/index.json b/site/public/v1/software/nx-technology/index.json new file mode 100644 index 000000000000..974baa92f19f --- /dev/null +++ b/site/public/v1/software/nx-technology/index.json @@ -0,0 +1,21 @@ +{ + "id": 7009, + "slug": "nx-technology", + "name": "NX technology", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1781023" + ], + "created_at": "2026-07-10T10:12:42.172650", + "updated_at": "2026-07-10T10:12:42.172650", + "url": "/v1/software/nx-technology" +} diff --git a/site/public/v1/software/nxivo/index.json b/site/public/v1/software/nxivo/index.json new file mode 100644 index 000000000000..ae5f3dc17595 --- /dev/null +++ b/site/public/v1/software/nxivo/index.json @@ -0,0 +1,21 @@ +{ + "id": 7010, + "slug": "nxivo", + "name": "Nxivo", + "release_date": null, + "developers": [ + "Yermek Ibrayev" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139815125" + ], + "created_at": "2026-07-10T10:12:42.172650", + "updated_at": "2026-07-10T10:12:42.172650", + "url": "/v1/software/nxivo" +} diff --git a/site/public/v1/software/nxlog/index.json b/site/public/v1/software/nxlog/index.json new file mode 100644 index 000000000000..366afc686708 --- /dev/null +++ b/site/public/v1/software/nxlog/index.json @@ -0,0 +1,19 @@ +{ + "id": 7011, + "slug": "nxlog", + "name": "NXLog", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q55624520" + ], + "created_at": "2026-07-10T10:12:42.172650", + "updated_at": "2026-07-10T10:12:42.172650", + "url": "/v1/software/nxlog" +} diff --git a/site/public/v1/software/nxnote/index.json b/site/public/v1/software/nxnote/index.json new file mode 100644 index 000000000000..999ff0c7eadc --- /dev/null +++ b/site/public/v1/software/nxnote/index.json @@ -0,0 +1,21 @@ +{ + "id": 7012, + "slug": "nxnote", + "name": "NXNote", + "release_date": null, + "developers": [ + "Shanghai Niaoxun Information Technology Co., Ltd." + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136653267" + ], + "created_at": "2026-07-10T10:12:42.173638", + "updated_at": "2026-07-10T10:12:42.173638", + "url": "/v1/software/nxnote" +} diff --git a/site/public/v1/software/nym-mixnet/index.json b/site/public/v1/software/nym-mixnet/index.json new file mode 100644 index 000000000000..6d889c0732bd --- /dev/null +++ b/site/public/v1/software/nym-mixnet/index.json @@ -0,0 +1,19 @@ +{ + "id": 7013, + "slug": "nym-mixnet", + "name": "Nym Mixnet", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q119983864" + ], + "created_at": "2026-07-10T10:12:42.173638", + "updated_at": "2026-07-10T10:12:42.173638", + "url": "/v1/software/nym-mixnet" +} diff --git a/site/public/v1/software/nymgo/index.json b/site/public/v1/software/nymgo/index.json new file mode 100644 index 000000000000..b7775e722736 --- /dev/null +++ b/site/public/v1/software/nymgo/index.json @@ -0,0 +1,19 @@ +{ + "id": 7014, + "slug": "nymgo", + "name": "Nymgo", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7071178" + ], + "created_at": "2026-07-10T10:12:42.173638", + "updated_at": "2026-07-10T10:12:42.173638", + "url": "/v1/software/nymgo" +} diff --git a/site/public/v1/software/o2-system/index.json b/site/public/v1/software/o2-system/index.json new file mode 100644 index 000000000000..2195fc5707a1 --- /dev/null +++ b/site/public/v1/software/o2-system/index.json @@ -0,0 +1,19 @@ +{ + "id": 7015, + "slug": "o2-system", + "name": "O2 System", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130541825" + ], + "created_at": "2026-07-10T10:12:42.174566", + "updated_at": "2026-07-10T10:12:42.174566", + "url": "/v1/software/o2-system" +} diff --git a/site/public/v1/software/o3spaces/index.json b/site/public/v1/software/o3spaces/index.json new file mode 100644 index 000000000000..40ab87173ff1 --- /dev/null +++ b/site/public/v1/software/o3spaces/index.json @@ -0,0 +1,21 @@ +{ + "id": 7016, + "slug": "o3spaces", + "name": "O3spaces", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Java" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1901208" + ], + "created_at": "2026-07-10T10:12:42.174566", + "updated_at": "2026-07-10T10:12:42.174566", + "url": "/v1/software/o3spaces" +} diff --git a/site/public/v1/software/oak-engage/index.json b/site/public/v1/software/oak-engage/index.json new file mode 100644 index 000000000000..ee73ce2db216 --- /dev/null +++ b/site/public/v1/software/oak-engage/index.json @@ -0,0 +1,21 @@ +{ + "id": 7017, + "slug": "oak-engage", + "name": "Oak Engage", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "cross-platform" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136790232" + ], + "created_at": "2026-07-10T10:12:42.174566", + "updated_at": "2026-07-10T10:12:42.174566", + "url": "/v1/software/oak-engage" +} diff --git a/site/public/v1/software/oandbackup/index.json b/site/public/v1/software/oandbackup/index.json new file mode 100644 index 000000000000..5fbb53734f73 --- /dev/null +++ b/site/public/v1/software/oandbackup/index.json @@ -0,0 +1,19 @@ +{ + "id": 7018, + "slug": "oandbackup", + "name": "oandbackup", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q98732109" + ], + "created_at": "2026-07-10T10:12:42.175563", + "updated_at": "2026-07-10T10:12:42.175563", + "url": "/v1/software/oandbackup" +} diff --git a/site/public/v1/software/oasis-montaj/index.json b/site/public/v1/software/oasis-montaj/index.json new file mode 100644 index 000000000000..c58e2ea40995 --- /dev/null +++ b/site/public/v1/software/oasis-montaj/index.json @@ -0,0 +1,21 @@ +{ + "id": 7019, + "slug": "oasis-montaj", + "name": "Oasis montaj", + "release_date": null, + "developers": [ + "Geosoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10851994" + ], + "created_at": "2026-07-10T10:12:42.175563", + "updated_at": "2026-07-10T10:12:42.175563", + "url": "/v1/software/oasis-montaj" +} diff --git a/site/public/v1/software/obconf/index.json b/site/public/v1/software/obconf/index.json new file mode 100644 index 000000000000..4519534e060e --- /dev/null +++ b/site/public/v1/software/obconf/index.json @@ -0,0 +1,19 @@ +{ + "id": 7020, + "slug": "obconf", + "name": "obconf", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975269" + ], + "created_at": "2026-07-10T10:12:42.175563", + "updated_at": "2026-07-10T10:12:42.175563", + "url": "/v1/software/obconf" +} diff --git a/site/public/v1/software/obdtester/index.json b/site/public/v1/software/obdtester/index.json new file mode 100644 index 000000000000..ee0329f96b2d --- /dev/null +++ b/site/public/v1/software/obdtester/index.json @@ -0,0 +1,19 @@ +{ + "id": 7021, + "slug": "obdtester", + "name": "OBDTester", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q92600596" + ], + "created_at": "2026-07-10T10:12:42.176561", + "updated_at": "2026-07-10T10:12:42.176561", + "url": "/v1/software/obdtester" +} diff --git a/site/public/v1/software/obexftp/index.json b/site/public/v1/software/obexftp/index.json new file mode 100644 index 000000000000..fa76db1aa6c1 --- /dev/null +++ b/site/public/v1/software/obexftp/index.json @@ -0,0 +1,19 @@ +{ + "id": 7022, + "slug": "obexftp", + "name": "ObexFTP", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62855563" + ], + "created_at": "2026-07-10T10:12:42.176561", + "updated_at": "2026-07-10T10:12:42.176561", + "url": "/v1/software/obexftp" +} diff --git a/site/public/v1/software/object-description-language/index.json b/site/public/v1/software/object-description-language/index.json new file mode 100644 index 000000000000..de9fd5c3c69e --- /dev/null +++ b/site/public/v1/software/object-description-language/index.json @@ -0,0 +1,19 @@ +{ + "id": 7023, + "slug": "object-description-language", + "name": "Object Description Language", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7075034" + ], + "created_at": "2026-07-10T10:12:42.176561", + "updated_at": "2026-07-10T10:12:42.176561", + "url": "/v1/software/object-description-language" +} diff --git a/site/public/v1/software/object-desktop/index.json b/site/public/v1/software/object-desktop/index.json new file mode 100644 index 000000000000..d7f6d718cfef --- /dev/null +++ b/site/public/v1/software/object-desktop/index.json @@ -0,0 +1,23 @@ +{ + "id": 7024, + "slug": "object-desktop", + "name": "Object Desktop", + "release_date": null, + "developers": [ + "Stardock" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7075037" + ], + "created_at": "2026-07-10T10:12:42.176561", + "updated_at": "2026-07-10T10:12:42.176561", + "url": "/v1/software/object-desktop" +} diff --git a/site/public/v1/software/object-oriented-abstract-type-hierarchy/index.json b/site/public/v1/software/object-oriented-abstract-type-hierarchy/index.json new file mode 100644 index 000000000000..bad5b6168626 --- /dev/null +++ b/site/public/v1/software/object-oriented-abstract-type-hierarchy/index.json @@ -0,0 +1,19 @@ +{ + "id": 7025, + "slug": "object-oriented-abstract-type-hierarchy", + "name": "Object-oriented Abstract Type Hierarchy", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7075012" + ], + "created_at": "2026-07-10T10:12:42.177565", + "updated_at": "2026-07-10T10:12:42.177565", + "url": "/v1/software/object-oriented-abstract-type-hierarchy" +} diff --git a/site/public/v1/software/object-oriented-data-technology/index.json b/site/public/v1/software/object-oriented-data-technology/index.json new file mode 100644 index 000000000000..a2846b8431e4 --- /dev/null +++ b/site/public/v1/software/object-oriented-data-technology/index.json @@ -0,0 +1,25 @@ +{ + "id": 7026, + "slug": "object-oriented-data-technology", + "name": "Object Oriented Data Technology", + "release_date": null, + "developers": [ + "Apache Software Foundation" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Java" + ], + "licenses": [ + "Apache License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7075041" + ], + "created_at": "2026-07-10T10:12:42.177565", + "updated_at": "2026-07-10T10:12:42.177565", + "url": "/v1/software/object-oriented-data-technology" +} diff --git a/site/public/v1/software/objectdatabase/index.json b/site/public/v1/software/objectdatabase/index.json new file mode 100644 index 000000000000..ddbd0a459c64 --- /dev/null +++ b/site/public/v1/software/objectdatabase/index.json @@ -0,0 +1,19 @@ +{ + "id": 7027, + "slug": "objectdatabase", + "name": "ObjectDatabase++", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7075025" + ], + "created_at": "2026-07-10T10:12:42.177565", + "updated_at": "2026-07-10T10:12:42.177565", + "url": "/v1/software/objectdatabase" +} diff --git a/site/public/v1/software/objectdb/index.json b/site/public/v1/software/objectdb/index.json new file mode 100644 index 000000000000..b76a5c9c8dc4 --- /dev/null +++ b/site/public/v1/software/objectdb/index.json @@ -0,0 +1,23 @@ +{ + "id": 7028, + "slug": "objectdb", + "name": "ObjectDB", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "cross-platform" + ], + "programming_languages": [ + "Java" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7075024" + ], + "created_at": "2026-07-10T10:12:42.178627", + "updated_at": "2026-07-10T10:12:42.178627", + "url": "/v1/software/objectdb" +} diff --git a/site/public/v1/software/objective-vision/index.json b/site/public/v1/software/objective-vision/index.json new file mode 100644 index 000000000000..ff88896fda78 --- /dev/null +++ b/site/public/v1/software/objective-vision/index.json @@ -0,0 +1,19 @@ +{ + "id": 7029, + "slug": "objective-vision", + "name": "Objective vision", + "release_date": "2016-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28324885" + ], + "created_at": "2026-07-10T10:12:42.178627", + "updated_at": "2026-07-10T10:12:42.178627", + "url": "/v1/software/objective-vision" +} diff --git a/site/public/v1/software/objectivefs/index.json b/site/public/v1/software/objectivefs/index.json new file mode 100644 index 000000000000..345f0497975b --- /dev/null +++ b/site/public/v1/software/objectivefs/index.json @@ -0,0 +1,19 @@ +{ + "id": 7030, + "slug": "objectivefs", + "name": "ObjectiveFS", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22907428" + ], + "created_at": "2026-07-10T10:12:42.178627", + "updated_at": "2026-07-10T10:12:42.178627", + "url": "/v1/software/objectivefs" +} diff --git a/site/public/v1/software/objectstore/index.json b/site/public/v1/software/objectstore/index.json new file mode 100644 index 000000000000..fa3ecfdd5771 --- /dev/null +++ b/site/public/v1/software/objectstore/index.json @@ -0,0 +1,21 @@ +{ + "id": 7031, + "slug": "objectstore", + "name": "ObjectStore", + "release_date": "1988-01-01", + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7075028" + ], + "created_at": "2026-07-10T10:12:42.179624", + "updated_at": "2026-07-10T10:12:42.179624", + "url": "/v1/software/objectstore" +} diff --git a/site/public/v1/software/objectvision/index.json b/site/public/v1/software/objectvision/index.json new file mode 100644 index 000000000000..8ac880799ae0 --- /dev/null +++ b/site/public/v1/software/objectvision/index.json @@ -0,0 +1,21 @@ +{ + "id": 7032, + "slug": "objectvision", + "name": "ObjectVision", + "release_date": null, + "developers": [ + "Borland" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4045626" + ], + "created_at": "2026-07-10T10:12:42.179624", + "updated_at": "2026-07-10T10:12:42.179624", + "url": "/v1/software/objectvision" +} diff --git a/site/public/v1/software/oblix/index.json b/site/public/v1/software/oblix/index.json new file mode 100644 index 000000000000..956fba45b65f --- /dev/null +++ b/site/public/v1/software/oblix/index.json @@ -0,0 +1,19 @@ +{ + "id": 7033, + "slug": "oblix", + "name": "Oblix", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7075216" + ], + "created_at": "2026-07-10T10:12:42.179624", + "updated_at": "2026-07-10T10:12:42.179624", + "url": "/v1/software/oblix" +} diff --git a/site/public/v1/software/obscuracam/index.json b/site/public/v1/software/obscuracam/index.json new file mode 100644 index 000000000000..0148d85f259c --- /dev/null +++ b/site/public/v1/software/obscuracam/index.json @@ -0,0 +1,19 @@ +{ + "id": 7034, + "slug": "obscuracam", + "name": "ObscuraCam", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139760004" + ], + "created_at": "2026-07-10T10:12:42.180627", + "updated_at": "2026-07-10T10:12:42.180627", + "url": "/v1/software/obscuracam" +} diff --git a/site/public/v1/software/observer-xt/index.json b/site/public/v1/software/observer-xt/index.json new file mode 100644 index 000000000000..bdfd31dff895 --- /dev/null +++ b/site/public/v1/software/observer-xt/index.json @@ -0,0 +1,23 @@ +{ + "id": 7035, + "slug": "observer-xt", + "name": "Observer XT", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105229754" + ], + "created_at": "2026-07-10T10:12:42.180627", + "updated_at": "2026-07-10T10:12:42.180627", + "url": "/v1/software/observer-xt" +} diff --git a/site/public/v1/software/ocad/index.json b/site/public/v1/software/ocad/index.json new file mode 100644 index 000000000000..45309dcaf9cc --- /dev/null +++ b/site/public/v1/software/ocad/index.json @@ -0,0 +1,23 @@ +{ + "id": 7036, + "slug": "ocad", + "name": "OCAD", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q491488" + ], + "created_at": "2026-07-10T10:12:42.180627", + "updated_at": "2026-07-10T10:12:42.180627", + "url": "/v1/software/ocad" +} diff --git a/site/public/v1/software/ocarina/index.json b/site/public/v1/software/ocarina/index.json new file mode 100644 index 000000000000..e4215cf02ace --- /dev/null +++ b/site/public/v1/software/ocarina/index.json @@ -0,0 +1,19 @@ +{ + "id": 7037, + "slug": "ocarina", + "name": "Ocarina", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18355900" + ], + "created_at": "2026-07-10T10:12:42.180627", + "updated_at": "2026-07-10T10:12:42.180627", + "url": "/v1/software/ocarina" +} diff --git a/site/public/v1/software/occa/index.json b/site/public/v1/software/occa/index.json new file mode 100644 index 000000000000..f0376a4bea81 --- /dev/null +++ b/site/public/v1/software/occa/index.json @@ -0,0 +1,23 @@ +{ + "id": 7038, + "slug": "occa", + "name": "OCCA", + "release_date": null, + "developers": [ + "David Medina" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124831839" + ], + "created_at": "2026-07-10T10:12:42.181644", + "updated_at": "2026-07-10T10:12:42.181644", + "url": "/v1/software/occa" +} diff --git a/site/public/v1/software/ocean-data-view/index.json b/site/public/v1/software/ocean-data-view/index.json new file mode 100644 index 000000000000..52e9c79d7b08 --- /dev/null +++ b/site/public/v1/software/ocean-data-view/index.json @@ -0,0 +1,19 @@ +{ + "id": 7039, + "slug": "ocean-data-view", + "name": "Ocean Data View", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7075979" + ], + "created_at": "2026-07-10T10:12:42.181644", + "updated_at": "2026-07-10T10:12:42.181644", + "url": "/v1/software/ocean-data-view" +} diff --git a/site/public/v1/software/ocml/index.json b/site/public/v1/software/ocml/index.json new file mode 100644 index 000000000000..95ea17d00544 --- /dev/null +++ b/site/public/v1/software/ocml/index.json @@ -0,0 +1,19 @@ +{ + "id": 7040, + "slug": "ocml", + "name": "OCML", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7072369" + ], + "created_at": "2026-07-10T10:12:42.181644", + "updated_at": "2026-07-10T10:12:42.181644", + "url": "/v1/software/ocml" +} diff --git a/site/public/v1/software/ocr-in-indian-languages/index.json b/site/public/v1/software/ocr-in-indian-languages/index.json new file mode 100644 index 000000000000..52d28dbc6ac4 --- /dev/null +++ b/site/public/v1/software/ocr-in-indian-languages/index.json @@ -0,0 +1,19 @@ +{ + "id": 7041, + "slug": "ocr-in-indian-languages", + "name": "OCR in Indian languages", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q29025550" + ], + "created_at": "2026-07-10T10:12:42.182627", + "updated_at": "2026-07-10T10:12:42.182627", + "url": "/v1/software/ocr-in-indian-languages" +} diff --git a/site/public/v1/software/ocr4all/index.json b/site/public/v1/software/ocr4all/index.json new file mode 100644 index 000000000000..faf48a45a9ce --- /dev/null +++ b/site/public/v1/software/ocr4all/index.json @@ -0,0 +1,21 @@ +{ + "id": 7042, + "slug": "ocr4all", + "name": "OCR4all", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124347709" + ], + "created_at": "2026-07-10T10:12:42.182627", + "updated_at": "2026-07-10T10:12:42.182627", + "url": "/v1/software/ocr4all" +} diff --git a/site/public/v1/software/ocsigen-start/index.json b/site/public/v1/software/ocsigen-start/index.json new file mode 100644 index 000000000000..3071f4d16cac --- /dev/null +++ b/site/public/v1/software/ocsigen-start/index.json @@ -0,0 +1,19 @@ +{ + "id": 7043, + "slug": "ocsigen-start", + "name": "ocsigen-start", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975272" + ], + "created_at": "2026-07-10T10:12:42.182627", + "updated_at": "2026-07-10T10:12:42.182627", + "url": "/v1/software/ocsigen-start" +} diff --git a/site/public/v1/software/ocsigen-toolkit/index.json b/site/public/v1/software/ocsigen-toolkit/index.json new file mode 100644 index 000000000000..1273001ff9c5 --- /dev/null +++ b/site/public/v1/software/ocsigen-toolkit/index.json @@ -0,0 +1,19 @@ +{ + "id": 7044, + "slug": "ocsigen-toolkit", + "name": "ocsigen-toolkit", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975273" + ], + "created_at": "2026-07-10T10:12:42.183628", + "updated_at": "2026-07-10T10:12:42.183628", + "url": "/v1/software/ocsigen-toolkit" +} diff --git a/site/public/v1/software/ocsigenserver/index.json b/site/public/v1/software/ocsigenserver/index.json new file mode 100644 index 000000000000..b80b9a0b1262 --- /dev/null +++ b/site/public/v1/software/ocsigenserver/index.json @@ -0,0 +1,19 @@ +{ + "id": 7045, + "slug": "ocsigenserver", + "name": "ocsigenserver", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975271" + ], + "created_at": "2026-07-10T10:12:42.183628", + "updated_at": "2026-07-10T10:12:42.183628", + "url": "/v1/software/ocsigenserver" +} diff --git a/site/public/v1/software/octamed/index.json b/site/public/v1/software/octamed/index.json new file mode 100644 index 000000000000..9eb65d55169c --- /dev/null +++ b/site/public/v1/software/octamed/index.json @@ -0,0 +1,21 @@ +{ + "id": 7046, + "slug": "octamed", + "name": "OctaMED", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "AmigaOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1292903" + ], + "created_at": "2026-07-10T10:12:42.183628", + "updated_at": "2026-07-10T10:12:42.183628", + "url": "/v1/software/octamed" +} diff --git a/site/public/v1/software/octane-render/index.json b/site/public/v1/software/octane-render/index.json new file mode 100644 index 000000000000..62fd38aae3b6 --- /dev/null +++ b/site/public/v1/software/octane-render/index.json @@ -0,0 +1,28 @@ +{ + "id": 7047, + "slug": "octane-render", + "name": "Octane Render", + "release_date": "2009-01-01", + "developers": [ + "OTOY" + ], + "publishers": [], + "operating_systems": [ + "iOS", + "macOS", + "Microsoft Windows" + ], + "programming_languages": [ + "Metal", + "CUDA" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7076747" + ], + "created_at": "2026-07-10T10:12:42.184564", + "updated_at": "2026-07-10T10:12:42.184564", + "url": "/v1/software/octane-render" +} diff --git a/site/public/v1/software/octomap/index.json b/site/public/v1/software/octomap/index.json new file mode 100644 index 000000000000..26a5fe4ba006 --- /dev/null +++ b/site/public/v1/software/octomap/index.json @@ -0,0 +1,19 @@ +{ + "id": 7048, + "slug": "octomap", + "name": "octomap", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975275" + ], + "created_at": "2026-07-10T10:12:42.184564", + "updated_at": "2026-07-10T10:12:42.184564", + "url": "/v1/software/octomap" +} diff --git a/site/public/v1/software/octopi/index.json b/site/public/v1/software/octopi/index.json new file mode 100644 index 000000000000..c4fe7c912166 --- /dev/null +++ b/site/public/v1/software/octopi/index.json @@ -0,0 +1,21 @@ +{ + "id": 7049, + "slug": "octopi", + "name": "Octopi", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "GNU General Public License, version 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122900277" + ], + "created_at": "2026-07-10T10:12:42.184564", + "updated_at": "2026-07-10T10:12:42.184564", + "url": "/v1/software/octopi" +} diff --git a/site/public/v1/software/octoprint/index.json b/site/public/v1/software/octoprint/index.json new file mode 100644 index 000000000000..158f24631495 --- /dev/null +++ b/site/public/v1/software/octoprint/index.json @@ -0,0 +1,21 @@ +{ + "id": 7050, + "slug": "octoprint", + "name": "OctoPrint", + "release_date": "2011-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Python" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63285356" + ], + "created_at": "2026-07-10T10:12:42.185561", + "updated_at": "2026-07-10T10:12:42.185561", + "url": "/v1/software/octoprint" +} diff --git a/site/public/v1/software/oculus-quill/index.json b/site/public/v1/software/oculus-quill/index.json new file mode 100644 index 000000000000..fe0f4eded086 --- /dev/null +++ b/site/public/v1/software/oculus-quill/index.json @@ -0,0 +1,19 @@ +{ + "id": 7051, + "slug": "oculus-quill", + "name": "Oculus Quill", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60751718" + ], + "created_at": "2026-07-10T10:12:42.185561", + "updated_at": "2026-07-10T10:12:42.185561", + "url": "/v1/software/oculus-quill" +} diff --git a/site/public/v1/software/odbc-administrator/index.json b/site/public/v1/software/odbc-administrator/index.json new file mode 100644 index 000000000000..c5b132841195 --- /dev/null +++ b/site/public/v1/software/odbc-administrator/index.json @@ -0,0 +1,21 @@ +{ + "id": 7052, + "slug": "odbc-administrator", + "name": "ODBC Administrator", + "release_date": null, + "developers": [ + "Apple Inc." + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7072415" + ], + "created_at": "2026-07-10T10:12:42.185561", + "updated_at": "2026-07-10T10:12:42.185561", + "url": "/v1/software/odbc-administrator" +} diff --git a/site/public/v1/software/odigo-messenger/index.json b/site/public/v1/software/odigo-messenger/index.json new file mode 100644 index 000000000000..a332c51729e3 --- /dev/null +++ b/site/public/v1/software/odigo-messenger/index.json @@ -0,0 +1,21 @@ +{ + "id": 7053, + "slug": "odigo-messenger", + "name": "Odigo Messenger", + "release_date": null, + "developers": [ + "Comverse" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1984171" + ], + "created_at": "2026-07-10T10:12:42.186565", + "updated_at": "2026-07-10T10:12:42.186565", + "url": "/v1/software/odigo-messenger" +} diff --git a/site/public/v1/software/odin/index.json b/site/public/v1/software/odin/index.json new file mode 100644 index 000000000000..2403ec99747a --- /dev/null +++ b/site/public/v1/software/odin/index.json @@ -0,0 +1,23 @@ +{ + "id": 7054, + "slug": "odin", + "name": "Odin", + "release_date": null, + "developers": [ + "Samsung Electronics" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q19599499" + ], + "created_at": "2026-07-10T10:12:42.186565", + "updated_at": "2026-07-10T10:12:42.186565", + "url": "/v1/software/odin" +} diff --git a/site/public/v1/software/odk/index.json b/site/public/v1/software/odk/index.json new file mode 100644 index 000000000000..012571675a7e --- /dev/null +++ b/site/public/v1/software/odk/index.json @@ -0,0 +1,21 @@ +{ + "id": 7055, + "slug": "odk", + "name": "ODK", + "release_date": null, + "developers": [ + "Gaetano Borriello" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q56291130" + ], + "created_at": "2026-07-10T10:12:42.186565", + "updated_at": "2026-07-10T10:12:42.186565", + "url": "/v1/software/odk" +} diff --git a/site/public/v1/software/odma/index.json b/site/public/v1/software/odma/index.json new file mode 100644 index 000000000000..b7d3ccaad74e --- /dev/null +++ b/site/public/v1/software/odma/index.json @@ -0,0 +1,21 @@ +{ + "id": 7056, + "slug": "odma", + "name": "ODMA", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Open Document Management API License 1.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2025649" + ], + "created_at": "2026-07-10T10:12:42.186565", + "updated_at": "2026-07-10T10:12:42.186565", + "url": "/v1/software/odma" +} diff --git a/site/public/v1/software/odoshield/index.json b/site/public/v1/software/odoshield/index.json new file mode 100644 index 000000000000..043fbc1a9179 --- /dev/null +++ b/site/public/v1/software/odoshield/index.json @@ -0,0 +1,21 @@ +{ + "id": 7057, + "slug": "odoshield", + "name": "OdoShield", + "release_date": null, + "developers": [ + "CarArth" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138834316" + ], + "created_at": "2026-07-10T10:12:42.187627", + "updated_at": "2026-07-10T10:12:42.187627", + "url": "/v1/software/odoshield" +} diff --git a/site/public/v1/software/odt2txt/index.json b/site/public/v1/software/odt2txt/index.json new file mode 100644 index 000000000000..5cf9530c8e87 --- /dev/null +++ b/site/public/v1/software/odt2txt/index.json @@ -0,0 +1,23 @@ +{ + "id": 7058, + "slug": "odt2txt", + "name": "odt2txt", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "cross-platform" + ], + "programming_languages": [], + "licenses": [ + "GNU General Public License, version 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62855556" + ], + "created_at": "2026-07-10T10:12:42.187627", + "updated_at": "2026-07-10T10:12:42.187627", + "url": "/v1/software/odt2txt" +} diff --git a/site/public/v1/software/oe-cake/index.json b/site/public/v1/software/oe-cake/index.json new file mode 100644 index 000000000000..fd8e81608140 --- /dev/null +++ b/site/public/v1/software/oe-cake/index.json @@ -0,0 +1,21 @@ +{ + "id": 7059, + "slug": "oe-cake", + "name": "OE-Cake!", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7072440" + ], + "created_at": "2026-07-10T10:12:42.187627", + "updated_at": "2026-07-10T10:12:42.187627", + "url": "/v1/software/oe-cake" +} diff --git a/site/public/v1/software/oelib/index.json b/site/public/v1/software/oelib/index.json new file mode 100644 index 000000000000..0d01aa116805 --- /dev/null +++ b/site/public/v1/software/oelib/index.json @@ -0,0 +1,19 @@ +{ + "id": 7060, + "slug": "oelib", + "name": "OELib", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7072452" + ], + "created_at": "2026-07-10T10:12:42.188611", + "updated_at": "2026-07-10T10:12:42.188611", + "url": "/v1/software/oelib" +} diff --git a/site/public/v1/software/off-by-one/index.json b/site/public/v1/software/off-by-one/index.json new file mode 100644 index 000000000000..67c5ba1d4a59 --- /dev/null +++ b/site/public/v1/software/off-by-one/index.json @@ -0,0 +1,19 @@ +{ + "id": 7061, + "slug": "off-by-one", + "name": "Off By One", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6049197" + ], + "created_at": "2026-07-10T10:12:42.188611", + "updated_at": "2026-07-10T10:12:42.188611", + "url": "/v1/software/off-by-one" +} diff --git a/site/public/v1/software/office-2004-for-mac/index.json b/site/public/v1/software/office-2004-for-mac/index.json new file mode 100644 index 000000000000..3d58ad77d43b --- /dev/null +++ b/site/public/v1/software/office-2004-for-mac/index.json @@ -0,0 +1,21 @@ +{ + "id": 7062, + "slug": "office-2004-for-mac", + "name": "Office 2004 for Mac", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q391444" + ], + "created_at": "2026-07-10T10:12:42.188611", + "updated_at": "2026-07-10T10:12:42.188611", + "url": "/v1/software/office-2004-for-mac" +} diff --git a/site/public/v1/software/office-forms/index.json b/site/public/v1/software/office-forms/index.json new file mode 100644 index 000000000000..1e07d34f2f7b --- /dev/null +++ b/site/public/v1/software/office-forms/index.json @@ -0,0 +1,19 @@ +{ + "id": 7063, + "slug": "office-forms", + "name": "Office Forms", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q27536891" + ], + "created_at": "2026-07-10T10:12:42.189644", + "updated_at": "2026-07-10T10:12:42.189644", + "url": "/v1/software/office-forms" +} diff --git a/site/public/v1/software/office-genuine-advantage/index.json b/site/public/v1/software/office-genuine-advantage/index.json new file mode 100644 index 000000000000..019fd66709e7 --- /dev/null +++ b/site/public/v1/software/office-genuine-advantage/index.json @@ -0,0 +1,21 @@ +{ + "id": 7064, + "slug": "office-genuine-advantage", + "name": "Office Genuine Advantage", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3026201" + ], + "created_at": "2026-07-10T10:12:42.189644", + "updated_at": "2026-07-10T10:12:42.189644", + "url": "/v1/software/office-genuine-advantage" +} diff --git a/site/public/v1/software/officeweb/index.json b/site/public/v1/software/officeweb/index.json new file mode 100644 index 000000000000..558030c0749f --- /dev/null +++ b/site/public/v1/software/officeweb/index.json @@ -0,0 +1,24 @@ +{ + "id": 7065, + "slug": "officeweb", + "name": "Officeweb", + "release_date": null, + "developers": [ + "Alexander Dennhoven" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "HTML", + "Cascading Style Sheets" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138410405" + ], + "created_at": "2026-07-10T10:12:42.189644", + "updated_at": "2026-07-10T10:12:42.189644", + "url": "/v1/software/officeweb" +} diff --git a/site/public/v1/software/ofork/index.json b/site/public/v1/software/ofork/index.json new file mode 100644 index 000000000000..356d6e2fe23a --- /dev/null +++ b/site/public/v1/software/ofork/index.json @@ -0,0 +1,19 @@ +{ + "id": 7066, + "slug": "ofork", + "name": "OFORK", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139597225" + ], + "created_at": "2026-07-10T10:12:42.190667", + "updated_at": "2026-07-10T10:12:42.190667", + "url": "/v1/software/ofork" +} diff --git a/site/public/v1/software/ogmrip/index.json b/site/public/v1/software/ogmrip/index.json new file mode 100644 index 000000000000..4d0054aab751 --- /dev/null +++ b/site/public/v1/software/ogmrip/index.json @@ -0,0 +1,19 @@ +{ + "id": 7067, + "slug": "ogmrip", + "name": "OGMRip", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62855549" + ], + "created_at": "2026-07-10T10:12:42.190667", + "updated_at": "2026-07-10T10:12:42.190667", + "url": "/v1/software/ogmrip" +} diff --git a/site/public/v1/software/ogmtools/index.json b/site/public/v1/software/ogmtools/index.json new file mode 100644 index 000000000000..d0851fb8b32b --- /dev/null +++ b/site/public/v1/software/ogmtools/index.json @@ -0,0 +1,19 @@ +{ + "id": 7068, + "slug": "ogmtools", + "name": "ogmtools", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62855536" + ], + "created_at": "2026-07-10T10:12:42.190667", + "updated_at": "2026-07-10T10:12:42.190667", + "url": "/v1/software/ogmtools" +} diff --git a/site/public/v1/software/oh-my-zsh/index.json b/site/public/v1/software/oh-my-zsh/index.json new file mode 100644 index 000000000000..f81b3ebfdc52 --- /dev/null +++ b/site/public/v1/software/oh-my-zsh/index.json @@ -0,0 +1,25 @@ +{ + "id": 7069, + "slug": "oh-my-zsh", + "name": "Oh My Zsh", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Unix-like operating system" + ], + "programming_languages": [ + "shell script" + ], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115958819" + ], + "created_at": "2026-07-10T10:12:42.190667", + "updated_at": "2026-07-10T10:12:42.190667", + "url": "/v1/software/oh-my-zsh" +} diff --git a/site/public/v1/software/oiled/index.json b/site/public/v1/software/oiled/index.json new file mode 100644 index 000000000000..00ef68cfa20d --- /dev/null +++ b/site/public/v1/software/oiled/index.json @@ -0,0 +1,19 @@ +{ + "id": 7070, + "slug": "oiled", + "name": "OilEd", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q9371084" + ], + "created_at": "2026-07-10T10:12:42.191644", + "updated_at": "2026-07-10T10:12:42.191644", + "url": "/v1/software/oiled" +} diff --git a/site/public/v1/software/oinkmaster/index.json b/site/public/v1/software/oinkmaster/index.json new file mode 100644 index 000000000000..8eb68b48a5ae --- /dev/null +++ b/site/public/v1/software/oinkmaster/index.json @@ -0,0 +1,19 @@ +{ + "id": 7071, + "slug": "oinkmaster", + "name": "oinkmaster", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62855505" + ], + "created_at": "2026-07-10T10:12:42.191644", + "updated_at": "2026-07-10T10:12:42.191644", + "url": "/v1/software/oinkmaster" +} diff --git a/site/public/v1/software/okapi-framework/index.json b/site/public/v1/software/okapi-framework/index.json new file mode 100644 index 000000000000..9939b8c59dfe --- /dev/null +++ b/site/public/v1/software/okapi-framework/index.json @@ -0,0 +1,25 @@ +{ + "id": 7072, + "slug": "okapi-framework", + "name": "Okapi Framework", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "cross-platform" + ], + "programming_languages": [ + "Java" + ], + "licenses": [ + "Apache License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5970194" + ], + "created_at": "2026-07-10T10:12:42.191644", + "updated_at": "2026-07-10T10:12:42.191644", + "url": "/v1/software/okapi-framework" +} diff --git a/site/public/v1/software/oki-common-lisp/index.json b/site/public/v1/software/oki-common-lisp/index.json new file mode 100644 index 000000000000..fb8021c5ef5e --- /dev/null +++ b/site/public/v1/software/oki-common-lisp/index.json @@ -0,0 +1,23 @@ +{ + "id": 7073, + "slug": "oki-common-lisp", + "name": "OKI Common Lisp", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "OKI UX", + "SunOS", + "HP-UX" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106334825" + ], + "created_at": "2026-07-10T10:12:42.192632", + "updated_at": "2026-07-10T10:12:42.192632", + "url": "/v1/software/oki-common-lisp" +} diff --git a/site/public/v1/software/okopipi/index.json b/site/public/v1/software/okopipi/index.json new file mode 100644 index 000000000000..bc431083c9cd --- /dev/null +++ b/site/public/v1/software/okopipi/index.json @@ -0,0 +1,19 @@ +{ + "id": 7074, + "slug": "okopipi", + "name": "Okopipi", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7082513" + ], + "created_at": "2026-07-10T10:12:42.192632", + "updated_at": "2026-07-10T10:12:42.192632", + "url": "/v1/software/okopipi" +} diff --git a/site/public/v1/software/old-bailey-data-warehousing-interface/index.json b/site/public/v1/software/old-bailey-data-warehousing-interface/index.json new file mode 100644 index 000000000000..0318d1dd4abb --- /dev/null +++ b/site/public/v1/software/old-bailey-data-warehousing-interface/index.json @@ -0,0 +1,19 @@ +{ + "id": 7075, + "slug": "old-bailey-data-warehousing-interface", + "name": "Old Bailey Data Warehousing Interface", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084426" + ], + "created_at": "2026-07-10T10:12:42.192632", + "updated_at": "2026-07-10T10:12:42.192632", + "url": "/v1/software/old-bailey-data-warehousing-interface" +} diff --git a/site/public/v1/software/ole-db-provider/index.json b/site/public/v1/software/ole-db-provider/index.json new file mode 100644 index 000000000000..3b13e37ee01c --- /dev/null +++ b/site/public/v1/software/ole-db-provider/index.json @@ -0,0 +1,19 @@ +{ + "id": 7076, + "slug": "ole-db-provider", + "name": "OLE DB provider", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7072646" + ], + "created_at": "2026-07-10T10:12:42.193636", + "updated_at": "2026-07-10T10:12:42.193636", + "url": "/v1/software/ole-db-provider" +} diff --git a/site/public/v1/software/olefa/index.json b/site/public/v1/software/olefa/index.json new file mode 100644 index 000000000000..8bacc8e03a59 --- /dev/null +++ b/site/public/v1/software/olefa/index.json @@ -0,0 +1,21 @@ +{ + "id": 7077, + "slug": "olefa", + "name": "OLEFA", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q13104404" + ], + "created_at": "2026-07-10T10:12:42.193636", + "updated_at": "2026-07-10T10:12:42.193636", + "url": "/v1/software/olefa" +} diff --git a/site/public/v1/software/olga/index.json b/site/public/v1/software/olga/index.json new file mode 100644 index 000000000000..33f98de3d945 --- /dev/null +++ b/site/public/v1/software/olga/index.json @@ -0,0 +1,24 @@ +{ + "id": 7078, + "slug": "olga", + "name": "OLGA", + "release_date": null, + "developers": [ + "SINTEF", + "Equinor ASA" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7072656" + ], + "created_at": "2026-07-10T10:12:42.193636", + "updated_at": "2026-07-10T10:12:42.193636", + "url": "/v1/software/olga" +} diff --git a/site/public/v1/software/oli-analyzer/index.json b/site/public/v1/software/oli-analyzer/index.json new file mode 100644 index 000000000000..457c08335098 --- /dev/null +++ b/site/public/v1/software/oli-analyzer/index.json @@ -0,0 +1,21 @@ +{ + "id": 7079, + "slug": "oli-analyzer", + "name": "OLI Analyzer", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7072667" + ], + "created_at": "2026-07-10T10:12:42.194565", + "updated_at": "2026-07-10T10:12:42.194565", + "url": "/v1/software/oli-analyzer" +} diff --git a/site/public/v1/software/oligo-primer-analysis-software/index.json b/site/public/v1/software/oligo-primer-analysis-software/index.json new file mode 100644 index 000000000000..5b016db305b8 --- /dev/null +++ b/site/public/v1/software/oligo-primer-analysis-software/index.json @@ -0,0 +1,22 @@ +{ + "id": 7080, + "slug": "oligo-primer-analysis-software", + "name": "OLIGO Primer Analysis Software", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7072663" + ], + "created_at": "2026-07-10T10:12:42.194565", + "updated_at": "2026-07-10T10:12:42.194565", + "url": "/v1/software/oligo-primer-analysis-software" +} diff --git a/site/public/v1/software/olimexino-2560/index.json b/site/public/v1/software/olimexino-2560/index.json new file mode 100644 index 000000000000..f7a215501dfd --- /dev/null +++ b/site/public/v1/software/olimexino-2560/index.json @@ -0,0 +1,23 @@ +{ + "id": 7081, + "slug": "olimexino-2560", + "name": "OLIMEXINO-2560", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "GNU General Public License, version 3.0", + "Creative Commons Attribution-ShareAlike 3.0 Unported", + "CERN Open Hardware Licence" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139503371" + ], + "created_at": "2026-07-10T10:12:42.194565", + "updated_at": "2026-07-10T10:12:42.194565", + "url": "/v1/software/olimexino-2560" +} diff --git a/site/public/v1/software/olive-browser/index.json b/site/public/v1/software/olive-browser/index.json new file mode 100644 index 000000000000..43f712e24150 --- /dev/null +++ b/site/public/v1/software/olive-browser/index.json @@ -0,0 +1,19 @@ +{ + "id": 7082, + "slug": "olive-browser", + "name": "Olive Browser", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16613486" + ], + "created_at": "2026-07-10T10:12:42.194565", + "updated_at": "2026-07-10T10:12:42.194565", + "url": "/v1/software/olive-browser" +} diff --git a/site/public/v1/software/oliver/index.json b/site/public/v1/software/oliver/index.json new file mode 100644 index 000000000000..b95c13fcccdd --- /dev/null +++ b/site/public/v1/software/oliver/index.json @@ -0,0 +1,19 @@ +{ + "id": 7083, + "slug": "oliver", + "name": "Oliver", + "release_date": "2011-12-21", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25339808" + ], + "created_at": "2026-07-10T10:12:42.195659", + "updated_at": "2026-07-10T10:12:42.195659", + "url": "/v1/software/oliver" +} diff --git a/site/public/v1/software/oloneo-photoengine/index.json b/site/public/v1/software/oloneo-photoengine/index.json new file mode 100644 index 000000000000..4abbdd99bb65 --- /dev/null +++ b/site/public/v1/software/oloneo-photoengine/index.json @@ -0,0 +1,21 @@ +{ + "id": 7084, + "slug": "oloneo-photoengine", + "name": "Oloneo PhotoEngine", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17143270" + ], + "created_at": "2026-07-10T10:12:42.195659", + "updated_at": "2026-07-10T10:12:42.195659", + "url": "/v1/software/oloneo-photoengine" +} diff --git a/site/public/v1/software/olvid/index.json b/site/public/v1/software/olvid/index.json new file mode 100644 index 000000000000..1b06bf452e58 --- /dev/null +++ b/site/public/v1/software/olvid/index.json @@ -0,0 +1,23 @@ +{ + "id": 7085, + "slug": "olvid", + "name": "Olvid", + "release_date": null, + "developers": [ + "Olvid" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q96210429" + ], + "created_at": "2026-07-10T10:12:42.195659", + "updated_at": "2026-07-10T10:12:42.195659", + "url": "/v1/software/olvid" +} diff --git a/site/public/v1/software/olwm/index.json b/site/public/v1/software/olwm/index.json new file mode 100644 index 000000000000..14aa290a0f2e --- /dev/null +++ b/site/public/v1/software/olwm/index.json @@ -0,0 +1,23 @@ +{ + "id": 7086, + "slug": "olwm", + "name": "olwm", + "release_date": null, + "developers": [ + "Sun Microsystems" + ], + "publishers": [], + "operating_systems": [ + "Solaris" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7088898" + ], + "created_at": "2026-07-10T10:12:42.196637", + "updated_at": "2026-07-10T10:12:42.196637", + "url": "/v1/software/olwm" +} diff --git a/site/public/v1/software/olympus-master/index.json b/site/public/v1/software/olympus-master/index.json new file mode 100644 index 000000000000..ba124ca2f7e8 --- /dev/null +++ b/site/public/v1/software/olympus-master/index.json @@ -0,0 +1,19 @@ +{ + "id": 7087, + "slug": "olympus-master", + "name": "Olympus Master", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7089241" + ], + "created_at": "2026-07-10T10:12:42.196637", + "updated_at": "2026-07-10T10:12:42.196637", + "url": "/v1/software/olympus-master" +} diff --git a/site/public/v1/software/om1/index.json b/site/public/v1/software/om1/index.json new file mode 100644 index 000000000000..27c24444f5a2 --- /dev/null +++ b/site/public/v1/software/om1/index.json @@ -0,0 +1,23 @@ +{ + "id": 7088, + "slug": "om1", + "name": "OM1", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Python" + ], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135725692" + ], + "created_at": "2026-07-10T10:12:42.196637", + "updated_at": "2026-07-10T10:12:42.196637", + "url": "/v1/software/om1" +} diff --git a/site/public/v1/software/omake/index.json b/site/public/v1/software/omake/index.json new file mode 100644 index 000000000000..3424d673f7c8 --- /dev/null +++ b/site/public/v1/software/omake/index.json @@ -0,0 +1,19 @@ +{ + "id": 7089, + "slug": "omake", + "name": "OMake", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62855497" + ], + "created_at": "2026-07-10T10:12:42.197643", + "updated_at": "2026-07-10T10:12:42.197643", + "url": "/v1/software/omake" +} diff --git a/site/public/v1/software/omega/index.json b/site/public/v1/software/omega/index.json new file mode 100644 index 000000000000..a594a93cf4ae --- /dev/null +++ b/site/public/v1/software/omega/index.json @@ -0,0 +1,19 @@ +{ + "id": 7090, + "slug": "omega", + "name": "Omega", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2732484" + ], + "created_at": "2026-07-10T10:12:42.197643", + "updated_at": "2026-07-10T10:12:42.197643", + "url": "/v1/software/omega" +} diff --git a/site/public/v1/software/omeka-s/index.json b/site/public/v1/software/omeka-s/index.json new file mode 100644 index 000000000000..f54750ba02bc --- /dev/null +++ b/site/public/v1/software/omeka-s/index.json @@ -0,0 +1,23 @@ +{ + "id": 7091, + "slug": "omeka-s", + "name": "Omeka S", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "PHP" + ], + "licenses": [ + "GNU General Public License, version 3.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q98732070" + ], + "created_at": "2026-07-10T10:12:42.197643", + "updated_at": "2026-07-10T10:12:42.197643", + "url": "/v1/software/omeka-s" +} diff --git a/site/public/v1/software/omeka/index.json b/site/public/v1/software/omeka/index.json new file mode 100644 index 000000000000..7be21e56d682 --- /dev/null +++ b/site/public/v1/software/omeka/index.json @@ -0,0 +1,23 @@ +{ + "id": 7092, + "slug": "omeka", + "name": "Omeka", + "release_date": null, + "developers": [ + "Corporation for Digital Scholarship" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "PHP" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3524651" + ], + "created_at": "2026-07-10T10:12:42.198657", + "updated_at": "2026-07-10T10:12:42.198657", + "url": "/v1/software/omeka" +} diff --git a/site/public/v1/software/omero/index.json b/site/public/v1/software/omero/index.json new file mode 100644 index 000000000000..a7403c2d55c5 --- /dev/null +++ b/site/public/v1/software/omero/index.json @@ -0,0 +1,19 @@ +{ + "id": 7093, + "slug": "omero", + "name": "OMERO", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126595695" + ], + "created_at": "2026-07-10T10:12:42.198657", + "updated_at": "2026-07-10T10:12:42.198657", + "url": "/v1/software/omero" +} diff --git a/site/public/v1/software/omgfixmd/index.json b/site/public/v1/software/omgfixmd/index.json new file mode 100644 index 000000000000..7f6c1a6c9c34 --- /dev/null +++ b/site/public/v1/software/omgfixmd/index.json @@ -0,0 +1,19 @@ +{ + "id": 7094, + "slug": "omgfixmd", + "name": "OMGfixMD", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139619034" + ], + "created_at": "2026-07-10T10:12:42.198657", + "updated_at": "2026-07-10T10:12:42.198657", + "url": "/v1/software/omgfixmd" +} diff --git a/site/public/v1/software/omii-uk/index.json b/site/public/v1/software/omii-uk/index.json new file mode 100644 index 000000000000..54f1f7dee7c6 --- /dev/null +++ b/site/public/v1/software/omii-uk/index.json @@ -0,0 +1,19 @@ +{ + "id": 7095, + "slug": "omii-uk", + "name": "OMII-UK", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7072723" + ], + "created_at": "2026-07-10T10:12:42.198657", + "updated_at": "2026-07-10T10:12:42.198657", + "url": "/v1/software/omii-uk" +} diff --git a/site/public/v1/software/omisego/index.json b/site/public/v1/software/omisego/index.json new file mode 100644 index 000000000000..4ed596c5afd2 --- /dev/null +++ b/site/public/v1/software/omisego/index.json @@ -0,0 +1,19 @@ +{ + "id": 7096, + "slug": "omisego", + "name": "OmiseGO", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q45231354" + ], + "created_at": "2026-07-10T10:12:42.199737", + "updated_at": "2026-07-10T10:12:42.199737", + "url": "/v1/software/omisego" +} diff --git a/site/public/v1/software/omnidictionary/index.json b/site/public/v1/software/omnidictionary/index.json new file mode 100644 index 000000000000..4308d91417b0 --- /dev/null +++ b/site/public/v1/software/omnidictionary/index.json @@ -0,0 +1,23 @@ +{ + "id": 7097, + "slug": "omnidictionary", + "name": "OmniDictionary", + "release_date": null, + "developers": [ + "The Omni Group" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7090307" + ], + "created_at": "2026-07-10T10:12:42.199737", + "updated_at": "2026-07-10T10:12:42.199737", + "url": "/v1/software/omnidictionary" +} diff --git a/site/public/v1/software/omnidisksweeper/index.json b/site/public/v1/software/omnidisksweeper/index.json new file mode 100644 index 000000000000..b8e429bf2f5a --- /dev/null +++ b/site/public/v1/software/omnidisksweeper/index.json @@ -0,0 +1,23 @@ +{ + "id": 7098, + "slug": "omnidisksweeper", + "name": "OmniDiskSweeper", + "release_date": null, + "developers": [ + "The Omni Group" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7090309" + ], + "created_at": "2026-07-10T10:12:42.199737", + "updated_at": "2026-07-10T10:12:42.199737", + "url": "/v1/software/omnidisksweeper" +} diff --git a/site/public/v1/software/omnifocus/index.json b/site/public/v1/software/omnifocus/index.json new file mode 100644 index 000000000000..e1ce09db9608 --- /dev/null +++ b/site/public/v1/software/omnifocus/index.json @@ -0,0 +1,19 @@ +{ + "id": 7099, + "slug": "omnifocus", + "name": "OmniFocus", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1480798" + ], + "created_at": "2026-07-10T10:12:42.200740", + "updated_at": "2026-07-10T10:12:42.200740", + "url": "/v1/software/omnifocus" +} diff --git a/site/public/v1/software/omnigraphsketcher/index.json b/site/public/v1/software/omnigraphsketcher/index.json new file mode 100644 index 000000000000..a9543c2585a0 --- /dev/null +++ b/site/public/v1/software/omnigraphsketcher/index.json @@ -0,0 +1,19 @@ +{ + "id": 7100, + "slug": "omnigraphsketcher", + "name": "OmniGraphSketcher", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131904814" + ], + "created_at": "2026-07-10T10:12:42.200740", + "updated_at": "2026-07-10T10:12:42.200740", + "url": "/v1/software/omnigraphsketcher" +} diff --git a/site/public/v1/software/omniorb/index.json b/site/public/v1/software/omniorb/index.json new file mode 100644 index 000000000000..67580a65d431 --- /dev/null +++ b/site/public/v1/software/omniorb/index.json @@ -0,0 +1,19 @@ +{ + "id": 7101, + "slug": "omniorb", + "name": "omniORB", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62855480" + ], + "created_at": "2026-07-10T10:12:42.200740", + "updated_at": "2026-07-10T10:12:42.200740", + "url": "/v1/software/omniorb" +} diff --git a/site/public/v1/software/omnioutliner/index.json b/site/public/v1/software/omnioutliner/index.json new file mode 100644 index 000000000000..6d5062fabaf5 --- /dev/null +++ b/site/public/v1/software/omnioutliner/index.json @@ -0,0 +1,23 @@ +{ + "id": 7102, + "slug": "omnioutliner", + "name": "OmniOutliner", + "release_date": null, + "developers": [ + "The Omni Group" + ], + "publishers": [], + "operating_systems": [ + "macOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2023426" + ], + "created_at": "2026-07-10T10:12:42.201735", + "updated_at": "2026-07-10T10:12:42.201735", + "url": "/v1/software/omnioutliner" +} diff --git a/site/public/v1/software/omnipage-pro-12/index.json b/site/public/v1/software/omnipage-pro-12/index.json new file mode 100644 index 000000000000..c97592dd8ea6 --- /dev/null +++ b/site/public/v1/software/omnipage-pro-12/index.json @@ -0,0 +1,23 @@ +{ + "id": 7103, + "slug": "omnipage-pro-12", + "name": "OmniPage Pro 12", + "release_date": "2002-01-01", + "developers": [ + "ScanSoft, Inc." + ], + "publishers": [], + "operating_systems": [ + "Windows NT 4.0" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108837791" + ], + "created_at": "2026-07-10T10:12:42.201735", + "updated_at": "2026-07-10T10:12:42.201735", + "url": "/v1/software/omnipage-pro-12" +} diff --git a/site/public/v1/software/omnipage/index.json b/site/public/v1/software/omnipage/index.json new file mode 100644 index 000000000000..ad5037dc39ea --- /dev/null +++ b/site/public/v1/software/omnipage/index.json @@ -0,0 +1,22 @@ +{ + "id": 7104, + "slug": "omnipage", + "name": "OmniPage", + "release_date": null, + "developers": [ + "Caere Corporation", + "Nuance Communications" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3227436" + ], + "created_at": "2026-07-10T10:12:42.201735", + "updated_at": "2026-07-10T10:12:42.201735", + "url": "/v1/software/omnipage" +} diff --git a/site/public/v1/software/omniplan/index.json b/site/public/v1/software/omniplan/index.json new file mode 100644 index 000000000000..5ddd154a2c29 --- /dev/null +++ b/site/public/v1/software/omniplan/index.json @@ -0,0 +1,24 @@ +{ + "id": 7105, + "slug": "omniplan", + "name": "OmniPlan", + "release_date": null, + "developers": [ + "The Omni Group" + ], + "publishers": [], + "operating_systems": [ + "iOS", + "macOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7090314" + ], + "created_at": "2026-07-10T10:12:42.201735", + "updated_at": "2026-07-10T10:12:42.201735", + "url": "/v1/software/omniplan" +} diff --git a/site/public/v1/software/omnissa-horizon/index.json b/site/public/v1/software/omnissa-horizon/index.json new file mode 100644 index 000000000000..e84e4a126b08 --- /dev/null +++ b/site/public/v1/software/omnissa-horizon/index.json @@ -0,0 +1,24 @@ +{ + "id": 7106, + "slug": "omnissa-horizon", + "name": "Omnissa Horizon", + "release_date": null, + "developers": [ + "VMware" + ], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4052548" + ], + "created_at": "2026-07-10T10:12:42.202744", + "updated_at": "2026-07-10T10:12:42.202744", + "url": "/v1/software/omnissa-horizon" +} diff --git a/site/public/v1/software/omnitracker/index.json b/site/public/v1/software/omnitracker/index.json new file mode 100644 index 000000000000..2125e0fc9f6b --- /dev/null +++ b/site/public/v1/software/omnitracker/index.json @@ -0,0 +1,21 @@ +{ + "id": 7107, + "slug": "omnitracker", + "name": "Omnitracker", + "release_date": null, + "developers": [ + "Omninet" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17325534" + ], + "created_at": "2026-07-10T10:12:42.202744", + "updated_at": "2026-07-10T10:12:42.202744", + "url": "/v1/software/omnitracker" +} diff --git a/site/public/v1/software/ompl/index.json b/site/public/v1/software/ompl/index.json new file mode 100644 index 000000000000..2f6b8c14fe8b --- /dev/null +++ b/site/public/v1/software/ompl/index.json @@ -0,0 +1,19 @@ +{ + "id": 7108, + "slug": "ompl", + "name": "OMPL", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17105089" + ], + "created_at": "2026-07-10T10:12:42.202744", + "updated_at": "2026-07-10T10:12:42.202744", + "url": "/v1/software/ompl" +} diff --git a/site/public/v1/software/on-demand/index.json b/site/public/v1/software/on-demand/index.json new file mode 100644 index 000000000000..0c8cba8096fe --- /dev/null +++ b/site/public/v1/software/on-demand/index.json @@ -0,0 +1,21 @@ +{ + "id": 7109, + "slug": "on-demand", + "name": "On Demand", + "release_date": "2007-03-27", + "developers": [ + "Sky UK" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7090948" + ], + "created_at": "2026-07-10T10:12:42.203741", + "updated_at": "2026-07-10T10:12:42.203741", + "url": "/v1/software/on-demand" +} diff --git a/site/public/v1/software/onapp/index.json b/site/public/v1/software/onapp/index.json new file mode 100644 index 000000000000..82fe3172b5b4 --- /dev/null +++ b/site/public/v1/software/onapp/index.json @@ -0,0 +1,21 @@ +{ + "id": 7110, + "slug": "onapp", + "name": "OnApp", + "release_date": "2010-01-01", + "developers": [ + "OnApp Limited" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7090851" + ], + "created_at": "2026-07-10T10:12:42.203741", + "updated_at": "2026-07-10T10:12:42.203741", + "url": "/v1/software/onapp" +} diff --git a/site/public/v1/software/onb-jupyter-notebooks/index.json b/site/public/v1/software/onb-jupyter-notebooks/index.json new file mode 100644 index 000000000000..0abcd117fc52 --- /dev/null +++ b/site/public/v1/software/onb-jupyter-notebooks/index.json @@ -0,0 +1,21 @@ +{ + "id": 7111, + "slug": "onb-jupyter-notebooks", + "name": "ONB Jupyter Notebooks", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "GNU General Public License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123852539" + ], + "created_at": "2026-07-10T10:12:42.203741", + "updated_at": "2026-07-10T10:12:42.203741", + "url": "/v1/software/onb-jupyter-notebooks" +} diff --git a/site/public/v1/software/one-os/index.json b/site/public/v1/software/one-os/index.json new file mode 100644 index 000000000000..c3bff8c96b77 --- /dev/null +++ b/site/public/v1/software/one-os/index.json @@ -0,0 +1,25 @@ +{ + "id": 7112, + "slug": "one-os", + "name": "One-OS", + "release_date": null, + "developers": [ + "KMS Mobility Solutions GmbH" + ], + "publishers": [], + "operating_systems": [ + "web browser" + ], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140332039" + ], + "created_at": "2026-07-10T10:12:42.204669", + "updated_at": "2026-07-10T10:12:42.204669", + "url": "/v1/software/one-os" +} diff --git a/site/public/v1/software/one-ui/index.json b/site/public/v1/software/one-ui/index.json new file mode 100644 index 000000000000..41c15db36608 --- /dev/null +++ b/site/public/v1/software/one-ui/index.json @@ -0,0 +1,21 @@ +{ + "id": 7113, + "slug": "one-ui", + "name": "One UI", + "release_date": null, + "developers": [ + "Samsung Electronics" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60220726" + ], + "created_at": "2026-07-10T10:12:42.204669", + "updated_at": "2026-07-10T10:12:42.204669", + "url": "/v1/software/one-ui" +} diff --git a/site/public/v1/software/onepager-pro/index.json b/site/public/v1/software/onepager-pro/index.json new file mode 100644 index 000000000000..0a151f27c978 --- /dev/null +++ b/site/public/v1/software/onepager-pro/index.json @@ -0,0 +1,19 @@ +{ + "id": 7114, + "slug": "onepager-pro", + "name": "Onepager Pro", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7093729" + ], + "created_at": "2026-07-10T10:12:42.204669", + "updated_at": "2026-07-10T10:12:42.204669", + "url": "/v1/software/onepager-pro" +} diff --git a/site/public/v1/software/onesis/index.json b/site/public/v1/software/onesis/index.json new file mode 100644 index 000000000000..a4bfb8814667 --- /dev/null +++ b/site/public/v1/software/onesis/index.json @@ -0,0 +1,21 @@ +{ + "id": 7115, + "slug": "onesis", + "name": "oneSIS", + "release_date": null, + "developers": [ + "Sandia National Laboratories" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7092389" + ], + "created_at": "2026-07-10T10:12:42.204669", + "updated_at": "2026-07-10T10:12:42.204669", + "url": "/v1/software/onesis" +} diff --git a/site/public/v1/software/onion/index.json b/site/public/v1/software/onion/index.json new file mode 100644 index 000000000000..8cc45426f793 --- /dev/null +++ b/site/public/v1/software/onion/index.json @@ -0,0 +1,19 @@ +{ + "id": 7116, + "slug": "onion", + "name": "onion", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975277" + ], + "created_at": "2026-07-10T10:12:42.205667", + "updated_at": "2026-07-10T10:12:42.205667", + "url": "/v1/software/onion" +} diff --git a/site/public/v1/software/online-complex-processing/index.json b/site/public/v1/software/online-complex-processing/index.json new file mode 100644 index 000000000000..45de154d98be --- /dev/null +++ b/site/public/v1/software/online-complex-processing/index.json @@ -0,0 +1,19 @@ +{ + "id": 7117, + "slug": "online-complex-processing", + "name": "online complex processing", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4335184" + ], + "created_at": "2026-07-10T10:12:42.205667", + "updated_at": "2026-07-10T10:12:42.205667", + "url": "/v1/software/online-complex-processing" +} diff --git a/site/public/v1/software/online-quran-project/index.json b/site/public/v1/software/online-quran-project/index.json new file mode 100644 index 000000000000..4ad4e63c47ce --- /dev/null +++ b/site/public/v1/software/online-quran-project/index.json @@ -0,0 +1,19 @@ +{ + "id": 7118, + "slug": "online-quran-project", + "name": "Online Quran Project", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4119863" + ], + "created_at": "2026-07-10T10:12:42.206668", + "updated_at": "2026-07-10T10:12:42.206668", + "url": "/v1/software/online-quran-project" +} diff --git a/site/public/v1/software/onlinefamily-norton/index.json b/site/public/v1/software/onlinefamily-norton/index.json new file mode 100644 index 000000000000..c766731276ac --- /dev/null +++ b/site/public/v1/software/onlinefamily-norton/index.json @@ -0,0 +1,21 @@ +{ + "id": 7119, + "slug": "onlinefamily-norton", + "name": "OnlineFamily.Norton", + "release_date": null, + "developers": [ + "Gen Digital" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7093991" + ], + "created_at": "2026-07-10T10:12:42.206668", + "updated_at": "2026-07-10T10:12:42.206668", + "url": "/v1/software/onlinefamily-norton" +} diff --git a/site/public/v1/software/onlinehpc/index.json b/site/public/v1/software/onlinehpc/index.json new file mode 100644 index 000000000000..ae619ec9a1ed --- /dev/null +++ b/site/public/v1/software/onlinehpc/index.json @@ -0,0 +1,26 @@ +{ + "id": 7120, + "slug": "onlinehpc", + "name": "OnlineHPC", + "release_date": null, + "developers": [ + "OnlineHPC" + ], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [ + "Java" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16975197" + ], + "created_at": "2026-07-10T10:12:42.206668", + "updated_at": "2026-07-10T10:12:42.206668", + "url": "/v1/software/onlinehpc" +} diff --git a/site/public/v1/software/onodo/index.json b/site/public/v1/software/onodo/index.json new file mode 100644 index 000000000000..08301a5d5466 --- /dev/null +++ b/site/public/v1/software/onodo/index.json @@ -0,0 +1,19 @@ +{ + "id": 7121, + "slug": "onodo", + "name": "Onodo", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084428" + ], + "created_at": "2026-07-10T10:12:42.206668", + "updated_at": "2026-07-10T10:12:42.206668", + "url": "/v1/software/onodo" +} diff --git a/site/public/v1/software/onsen-ui/index.json b/site/public/v1/software/onsen-ui/index.json new file mode 100644 index 000000000000..4ffc7481ef9c --- /dev/null +++ b/site/public/v1/software/onsen-ui/index.json @@ -0,0 +1,21 @@ +{ + "id": 7122, + "slug": "onsen-ui", + "name": "Onsen UI", + "release_date": "2013-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Apache License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28448043" + ], + "created_at": "2026-07-10T10:12:42.207668", + "updated_at": "2026-07-10T10:12:42.207668", + "url": "/v1/software/onsen-ui" +} diff --git a/site/public/v1/software/ontario-prevention-clinic/index.json b/site/public/v1/software/ontario-prevention-clinic/index.json new file mode 100644 index 000000000000..aebeccecce27 --- /dev/null +++ b/site/public/v1/software/ontario-prevention-clinic/index.json @@ -0,0 +1,21 @@ +{ + "id": 7123, + "slug": "ontario-prevention-clinic", + "name": "Ontario Prevention Clinic", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "iOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106414761" + ], + "created_at": "2026-07-10T10:12:42.207668", + "updated_at": "2026-07-10T10:12:42.207668", + "url": "/v1/software/ontario-prevention-clinic" +} diff --git a/site/public/v1/software/ontime/index.json b/site/public/v1/software/ontime/index.json new file mode 100644 index 000000000000..11d561eacccc --- /dev/null +++ b/site/public/v1/software/ontime/index.json @@ -0,0 +1,19 @@ +{ + "id": 7124, + "slug": "ontime", + "name": "OnTime", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7090870" + ], + "created_at": "2026-07-10T10:12:42.207668", + "updated_at": "2026-07-10T10:12:42.207668", + "url": "/v1/software/ontime" +} diff --git a/site/public/v1/software/ontology-quality-assessment/index.json b/site/public/v1/software/ontology-quality-assessment/index.json new file mode 100644 index 000000000000..6090a5ac8d56 --- /dev/null +++ b/site/public/v1/software/ontology-quality-assessment/index.json @@ -0,0 +1,23 @@ +{ + "id": 7125, + "slug": "ontology-quality-assessment", + "name": "Ontology Quality Assessment", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Python" + ], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135641357" + ], + "created_at": "2026-07-10T10:12:42.208667", + "updated_at": "2026-07-10T10:12:42.208667", + "url": "/v1/software/ontology-quality-assessment" +} diff --git a/site/public/v1/software/ontolutils/index.json b/site/public/v1/software/ontolutils/index.json new file mode 100644 index 000000000000..863caf49976e --- /dev/null +++ b/site/public/v1/software/ontolutils/index.json @@ -0,0 +1,23 @@ +{ + "id": 7126, + "slug": "ontolutils", + "name": "ontolutils", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Python" + ], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131448345" + ], + "created_at": "2026-07-10T10:12:42.208667", + "updated_at": "2026-07-10T10:12:42.208667", + "url": "/v1/software/ontolutils" +} diff --git a/site/public/v1/software/ontop/index.json b/site/public/v1/software/ontop/index.json new file mode 100644 index 000000000000..7e687e7a5775 --- /dev/null +++ b/site/public/v1/software/ontop/index.json @@ -0,0 +1,28 @@ +{ + "id": 7127, + "slug": "ontop", + "name": "ontop", + "release_date": null, + "developers": [ + "Ontopic", + "Free University of Bozen-Bolzano" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Java" + ], + "licenses": [ + "Apache Software License 2.0" + ], + "genres": [ + "graphical user interface" + ], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q56861590" + ], + "created_at": "2026-07-10T10:12:42.208667", + "updated_at": "2026-07-10T10:12:42.208667", + "url": "/v1/software/ontop" +} diff --git a/site/public/v1/software/ontoviz/index.json b/site/public/v1/software/ontoviz/index.json new file mode 100644 index 000000000000..04597c7238f8 --- /dev/null +++ b/site/public/v1/software/ontoviz/index.json @@ -0,0 +1,19 @@ +{ + "id": 7128, + "slug": "ontoviz", + "name": "OntoViz", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084430" + ], + "created_at": "2026-07-10T10:12:42.208667", + "updated_at": "2026-07-10T10:12:42.208667", + "url": "/v1/software/ontoviz" +} diff --git a/site/public/v1/software/onyx/index.json b/site/public/v1/software/onyx/index.json new file mode 100644 index 000000000000..81da673213fa --- /dev/null +++ b/site/public/v1/software/onyx/index.json @@ -0,0 +1,23 @@ +{ + "id": 7129, + "slug": "onyx", + "name": "OnyX", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "macOS" + ], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q955843" + ], + "created_at": "2026-07-10T10:12:42.209668", + "updated_at": "2026-07-10T10:12:42.209668", + "url": "/v1/software/onyx" +} diff --git a/site/public/v1/software/oodle-sdk/index.json b/site/public/v1/software/oodle-sdk/index.json new file mode 100644 index 000000000000..577b3f37a70e --- /dev/null +++ b/site/public/v1/software/oodle-sdk/index.json @@ -0,0 +1,21 @@ +{ + "id": 7130, + "slug": "oodle-sdk", + "name": "Oodle SDK", + "release_date": null, + "developers": [ + "Epic Games Tools" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117326991" + ], + "created_at": "2026-07-10T10:12:42.209668", + "updated_at": "2026-07-10T10:12:42.209668", + "url": "/v1/software/oodle-sdk" +} diff --git a/site/public/v1/software/opal/index.json b/site/public/v1/software/opal/index.json new file mode 100644 index 000000000000..1d0bba79fa11 --- /dev/null +++ b/site/public/v1/software/opal/index.json @@ -0,0 +1,19 @@ +{ + "id": 7131, + "slug": "opal", + "name": "OPAL", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7072802" + ], + "created_at": "2026-07-10T10:12:42.209668", + "updated_at": "2026-07-10T10:12:42.209668", + "url": "/v1/software/opal" +} diff --git a/site/public/v1/software/opals/index.json b/site/public/v1/software/opals/index.json new file mode 100644 index 000000000000..8269ef7d4cc7 --- /dev/null +++ b/site/public/v1/software/opals/index.json @@ -0,0 +1,28 @@ +{ + "id": 7132, + "slug": "opals", + "name": "OPALS", + "release_date": null, + "developers": [ + "TU Wien" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [ + "Python", + "MATLAB" + ], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q29364570" + ], + "created_at": "2026-07-10T10:12:42.209668", + "updated_at": "2026-07-10T10:12:42.209668", + "url": "/v1/software/opals" +} diff --git a/site/public/v1/software/opaque-binary-blob/index.json b/site/public/v1/software/opaque-binary-blob/index.json new file mode 100644 index 000000000000..cc1eec237873 --- /dev/null +++ b/site/public/v1/software/opaque-binary-blob/index.json @@ -0,0 +1,19 @@ +{ + "id": 7133, + "slug": "opaque-binary-blob", + "name": "Opaque binary blob", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7095587" + ], + "created_at": "2026-07-10T10:12:42.210667", + "updated_at": "2026-07-10T10:12:42.210667", + "url": "/v1/software/opaque-binary-blob" +} diff --git a/site/public/v1/software/opaws/index.json b/site/public/v1/software/opaws/index.json new file mode 100644 index 000000000000..ce4567cdfbbb --- /dev/null +++ b/site/public/v1/software/opaws/index.json @@ -0,0 +1,22 @@ +{ + "id": 7134, + "slug": "opaws", + "name": "OPAWS", + "release_date": null, + "developers": [ + "Louis Wicker", + "David Dowell" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117319524" + ], + "created_at": "2026-07-10T10:12:42.210667", + "updated_at": "2026-07-10T10:12:42.210667", + "url": "/v1/software/opaws" +} diff --git a/site/public/v1/software/opcol/index.json b/site/public/v1/software/opcol/index.json new file mode 100644 index 000000000000..0f4a5421b652 --- /dev/null +++ b/site/public/v1/software/opcol/index.json @@ -0,0 +1,19 @@ +{ + "id": 7135, + "slug": "opcol", + "name": "OPCOL", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084431" + ], + "created_at": "2026-07-10T10:12:42.210667", + "updated_at": "2026-07-10T10:12:42.210667", + "url": "/v1/software/opcol" +} diff --git a/site/public/v1/software/open-3d-engine/index.json b/site/public/v1/software/open-3d-engine/index.json new file mode 100644 index 000000000000..58b64657b188 --- /dev/null +++ b/site/public/v1/software/open-3d-engine/index.json @@ -0,0 +1,28 @@ +{ + "id": 7136, + "slug": "open-3d-engine", + "name": "Open 3D Engine", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [ + "Python", + "Lua" + ], + "licenses": [ + "Apache Software License 2.0", + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107610458" + ], + "created_at": "2026-07-10T10:12:42.211729", + "updated_at": "2026-07-10T10:12:42.211729", + "url": "/v1/software/open-3d-engine" +} diff --git a/site/public/v1/software/open-assistant/index.json b/site/public/v1/software/open-assistant/index.json new file mode 100644 index 000000000000..8cb9771b10ff --- /dev/null +++ b/site/public/v1/software/open-assistant/index.json @@ -0,0 +1,19 @@ +{ + "id": 7137, + "slug": "open-assistant", + "name": "Open Assistant", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121590491" + ], + "created_at": "2026-07-10T10:12:42.211729", + "updated_at": "2026-07-10T10:12:42.211729", + "url": "/v1/software/open-assistant" +} diff --git a/site/public/v1/software/open-attribute/index.json b/site/public/v1/software/open-attribute/index.json new file mode 100644 index 000000000000..e33403695a25 --- /dev/null +++ b/site/public/v1/software/open-attribute/index.json @@ -0,0 +1,19 @@ +{ + "id": 7138, + "slug": "open-attribute", + "name": "Open Attribute", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084433" + ], + "created_at": "2026-07-10T10:12:42.211729", + "updated_at": "2026-07-10T10:12:42.211729", + "url": "/v1/software/open-attribute" +} diff --git a/site/public/v1/software/open-brush/index.json b/site/public/v1/software/open-brush/index.json new file mode 100644 index 000000000000..652a7c1772fd --- /dev/null +++ b/site/public/v1/software/open-brush/index.json @@ -0,0 +1,23 @@ +{ + "id": 7139, + "slug": "open-brush", + "name": "Open Brush", + "release_date": "2021-06-08", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Apache Software License 2.0" + ], + "genres": [ + "casual game" + ], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107158460" + ], + "created_at": "2026-07-10T10:12:42.211729", + "updated_at": "2026-07-10T10:12:42.211729", + "url": "/v1/software/open-brush" +} diff --git a/site/public/v1/software/open-cobalt/index.json b/site/public/v1/software/open-cobalt/index.json new file mode 100644 index 000000000000..2f3044351242 --- /dev/null +++ b/site/public/v1/software/open-cobalt/index.json @@ -0,0 +1,25 @@ +{ + "id": 7140, + "slug": "open-cobalt", + "name": "Open Cobalt", + "release_date": "2009-01-01", + "developers": [], + "publishers": [], + "operating_systems": [ + "macOS" + ], + "programming_languages": [ + "Squeak" + ], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4045889" + ], + "created_at": "2026-07-10T10:12:42.212777", + "updated_at": "2026-07-10T10:12:42.212777", + "url": "/v1/software/open-cobalt" +} diff --git a/site/public/v1/software/open-code/index.json b/site/public/v1/software/open-code/index.json new file mode 100644 index 000000000000..1fea6044a415 --- /dev/null +++ b/site/public/v1/software/open-code/index.json @@ -0,0 +1,23 @@ +{ + "id": 7141, + "slug": "open-code", + "name": "Open Code", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105229756" + ], + "created_at": "2026-07-10T10:12:42.212777", + "updated_at": "2026-07-10T10:12:42.212777", + "url": "/v1/software/open-code" +} diff --git a/site/public/v1/software/open-collaboration-services/index.json b/site/public/v1/software/open-collaboration-services/index.json new file mode 100644 index 000000000000..51d141b97386 --- /dev/null +++ b/site/public/v1/software/open-collaboration-services/index.json @@ -0,0 +1,19 @@ +{ + "id": 7142, + "slug": "open-collaboration-services", + "name": "Open Collaboration Services", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2025628" + ], + "created_at": "2026-07-10T10:12:42.212777", + "updated_at": "2026-07-10T10:12:42.212777", + "url": "/v1/software/open-collaboration-services" +} diff --git a/site/public/v1/software/open-computer-forensics-architecture/index.json b/site/public/v1/software/open-computer-forensics-architecture/index.json new file mode 100644 index 000000000000..a28e03af09fc --- /dev/null +++ b/site/public/v1/software/open-computer-forensics-architecture/index.json @@ -0,0 +1,21 @@ +{ + "id": 7143, + "slug": "open-computer-forensics-architecture", + "name": "Open Computer Forensics Architecture", + "release_date": null, + "developers": [ + "Korps landelijke politiediensten" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7095983" + ], + "created_at": "2026-07-10T10:12:42.213758", + "updated_at": "2026-07-10T10:12:42.213758", + "url": "/v1/software/open-computer-forensics-architecture" +} diff --git a/site/public/v1/software/open-conference-systems/index.json b/site/public/v1/software/open-conference-systems/index.json new file mode 100644 index 000000000000..2c0a503fb45e --- /dev/null +++ b/site/public/v1/software/open-conference-systems/index.json @@ -0,0 +1,19 @@ +{ + "id": 7144, + "slug": "open-conference-systems", + "name": "Open Conference Systems", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6051240" + ], + "created_at": "2026-07-10T10:12:42.213758", + "updated_at": "2026-07-10T10:12:42.213758", + "url": "/v1/software/open-conference-systems" +} diff --git a/site/public/v1/software/open-digitalbiomarkerdiscoverypipeline/index.json b/site/public/v1/software/open-digitalbiomarkerdiscoverypipeline/index.json new file mode 100644 index 000000000000..bb4cb96f692e --- /dev/null +++ b/site/public/v1/software/open-digitalbiomarkerdiscoverypipeline/index.json @@ -0,0 +1,19 @@ +{ + "id": 7145, + "slug": "open-digitalbiomarkerdiscoverypipeline", + "name": "Open DigitalBiomarkerDiscoveryPipeline", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113018309" + ], + "created_at": "2026-07-10T10:12:42.214330", + "updated_at": "2026-07-10T10:12:42.214330", + "url": "/v1/software/open-digitalbiomarkerdiscoverypipeline" +} diff --git a/site/public/v1/software/open-dylan/index.json b/site/public/v1/software/open-dylan/index.json new file mode 100644 index 000000000000..dc6b2c040acb --- /dev/null +++ b/site/public/v1/software/open-dylan/index.json @@ -0,0 +1,19 @@ +{ + "id": 7146, + "slug": "open-dylan", + "name": "Open Dylan", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975300" + ], + "created_at": "2026-07-10T10:12:42.214330", + "updated_at": "2026-07-10T10:12:42.214330", + "url": "/v1/software/open-dylan" +} diff --git a/site/public/v1/software/open-e-dss-v6/index.json b/site/public/v1/software/open-e-dss-v6/index.json new file mode 100644 index 000000000000..cd0143f92a6c --- /dev/null +++ b/site/public/v1/software/open-e-dss-v6/index.json @@ -0,0 +1,19 @@ +{ + "id": 7147, + "slug": "open-e-dss-v6", + "name": "Open-E DSS V6", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7095686" + ], + "created_at": "2026-07-10T10:12:42.214330", + "updated_at": "2026-07-10T10:12:42.214330", + "url": "/v1/software/open-e-dss-v6" +} diff --git a/site/public/v1/software/open-harvester-systems/index.json b/site/public/v1/software/open-harvester-systems/index.json new file mode 100644 index 000000000000..b8ae60ff208a --- /dev/null +++ b/site/public/v1/software/open-harvester-systems/index.json @@ -0,0 +1,19 @@ +{ + "id": 7148, + "slug": "open-harvester-systems", + "name": "Open Harvester Systems", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084435" + ], + "created_at": "2026-07-10T10:12:42.215436", + "updated_at": "2026-07-10T10:12:42.215436", + "url": "/v1/software/open-harvester-systems" +} diff --git a/site/public/v1/software/open-health-imaging-foundation-viewer/index.json b/site/public/v1/software/open-health-imaging-foundation-viewer/index.json new file mode 100644 index 000000000000..6b7ac068f5f2 --- /dev/null +++ b/site/public/v1/software/open-health-imaging-foundation-viewer/index.json @@ -0,0 +1,23 @@ +{ + "id": 7149, + "slug": "open-health-imaging-foundation-viewer", + "name": "Open Health Imaging Foundation Viewer", + "release_date": null, + "developers": [ + "Massachusetts General Hospital" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113017667" + ], + "created_at": "2026-07-10T10:12:42.215436", + "updated_at": "2026-07-10T10:12:42.215436", + "url": "/v1/software/open-health-imaging-foundation-viewer" +} diff --git a/site/public/v1/software/open-jtag/index.json b/site/public/v1/software/open-jtag/index.json new file mode 100644 index 000000000000..8d7b5ea3f20f --- /dev/null +++ b/site/public/v1/software/open-jtag/index.json @@ -0,0 +1,21 @@ +{ + "id": 7150, + "slug": "open-jtag", + "name": "Open JTAG", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "VHDL" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7096104" + ], + "created_at": "2026-07-10T10:12:42.215436", + "updated_at": "2026-07-10T10:12:42.215436", + "url": "/v1/software/open-jtag" +} diff --git a/site/public/v1/software/open-management-infrastructure/index.json b/site/public/v1/software/open-management-infrastructure/index.json new file mode 100644 index 000000000000..8b9dbe011f03 --- /dev/null +++ b/site/public/v1/software/open-management-infrastructure/index.json @@ -0,0 +1,23 @@ +{ + "id": 7151, + "slug": "open-management-infrastructure", + "name": "Open Management Infrastructure", + "release_date": null, + "developers": [ + "The Open Group" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Apache License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16965944" + ], + "created_at": "2026-07-10T10:12:42.215436", + "updated_at": "2026-07-10T10:12:42.216414", + "url": "/v1/software/open-management-infrastructure" +} diff --git a/site/public/v1/software/open-meteo/index.json b/site/public/v1/software/open-meteo/index.json new file mode 100644 index 000000000000..d1166e9d9318 --- /dev/null +++ b/site/public/v1/software/open-meteo/index.json @@ -0,0 +1,21 @@ +{ + "id": 7152, + "slug": "open-meteo", + "name": "Open-Meteo", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Creative Commons Attribution 4.0 International" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131573004" + ], + "created_at": "2026-07-10T10:12:42.216414", + "updated_at": "2026-07-10T10:12:42.216414", + "url": "/v1/software/open-meteo" +} diff --git a/site/public/v1/software/open-network-install-environment/index.json b/site/public/v1/software/open-network-install-environment/index.json new file mode 100644 index 000000000000..65eba24320da --- /dev/null +++ b/site/public/v1/software/open-network-install-environment/index.json @@ -0,0 +1,19 @@ +{ + "id": 7153, + "slug": "open-network-install-environment", + "name": "Open Network Install Environment", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25021537" + ], + "created_at": "2026-07-10T10:12:42.216414", + "updated_at": "2026-07-10T10:12:42.216414", + "url": "/v1/software/open-network-install-environment" +} diff --git a/site/public/v1/software/open-platform-architecture/index.json b/site/public/v1/software/open-platform-architecture/index.json new file mode 100644 index 000000000000..04c0d63e49a7 --- /dev/null +++ b/site/public/v1/software/open-platform-architecture/index.json @@ -0,0 +1,19 @@ +{ + "id": 7154, + "slug": "open-platform-architecture", + "name": "Open Platform Architecture", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7096161" + ], + "created_at": "2026-07-10T10:12:42.217440", + "updated_at": "2026-07-10T10:12:42.217440", + "url": "/v1/software/open-platform-architecture" +} diff --git a/site/public/v1/software/open-quantitative-structure-activity-property-relationship-app/index.json b/site/public/v1/software/open-quantitative-structure-activity-property-relationship-app/index.json new file mode 100644 index 000000000000..44b00b1488e6 --- /dev/null +++ b/site/public/v1/software/open-quantitative-structure-activity-property-relationship-app/index.json @@ -0,0 +1,19 @@ +{ + "id": 7155, + "slug": "open-quantitative-structure-activity-property-relationship-app", + "name": "Open (Quantitative) Structure-activity/property Relationship App", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136437713" + ], + "created_at": "2026-07-10T10:12:42.217440", + "updated_at": "2026-07-10T10:12:42.217440", + "url": "/v1/software/open-quantitative-structure-activity-property-relationship-app" +} diff --git a/site/public/v1/software/open-rails/index.json b/site/public/v1/software/open-rails/index.json new file mode 100644 index 000000000000..318c259e1137 --- /dev/null +++ b/site/public/v1/software/open-rails/index.json @@ -0,0 +1,23 @@ +{ + "id": 7156, + "slug": "open-rails", + "name": "Open Rails", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "GNU General Public License, version 3.0" + ], + "genres": [ + "train simulator" + ], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q56414866" + ], + "created_at": "2026-07-10T10:12:42.217440", + "updated_at": "2026-07-10T10:12:42.217440", + "url": "/v1/software/open-rails" +} diff --git a/site/public/v1/software/open-science-community-starter-kit/index.json b/site/public/v1/software/open-science-community-starter-kit/index.json new file mode 100644 index 000000000000..cc390fa43517 --- /dev/null +++ b/site/public/v1/software/open-science-community-starter-kit/index.json @@ -0,0 +1,21 @@ +{ + "id": 7157, + "slug": "open-science-community-starter-kit", + "name": "Open Science Community Starter Kit", + "release_date": null, + "developers": [ + "International Network of Open Science & Scholarship Communities" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107143457" + ], + "created_at": "2026-07-10T10:12:42.217440", + "updated_at": "2026-07-10T10:12:42.217440", + "url": "/v1/software/open-science-community-starter-kit" +} diff --git a/site/public/v1/software/open-source-brand/index.json b/site/public/v1/software/open-source-brand/index.json new file mode 100644 index 000000000000..e728e6cc07d1 --- /dev/null +++ b/site/public/v1/software/open-source-brand/index.json @@ -0,0 +1,19 @@ +{ + "id": 7158, + "slug": "open-source-brand", + "name": "Open source brand", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7096415" + ], + "created_at": "2026-07-10T10:12:42.218419", + "updated_at": "2026-07-10T10:12:42.218419", + "url": "/v1/software/open-source-brand" +} diff --git a/site/public/v1/software/open-source-chemistry-analysis-routines/index.json b/site/public/v1/software/open-source-chemistry-analysis-routines/index.json new file mode 100644 index 000000000000..41f95c5cb7e1 --- /dev/null +++ b/site/public/v1/software/open-source-chemistry-analysis-routines/index.json @@ -0,0 +1,23 @@ +{ + "id": 7159, + "slug": "open-source-chemistry-analysis-routines", + "name": "Open-Source Chemistry Analysis Routines", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Java" + ], + "licenses": [ + "Artistic License 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q133037490" + ], + "created_at": "2026-07-10T10:12:42.218419", + "updated_at": "2026-07-10T10:12:42.218419", + "url": "/v1/software/open-source-chemistry-analysis-routines" +} diff --git a/site/public/v1/software/open-source-cluster-application-resources/index.json b/site/public/v1/software/open-source-cluster-application-resources/index.json new file mode 100644 index 000000000000..d5be7c0fcbc2 --- /dev/null +++ b/site/public/v1/software/open-source-cluster-application-resources/index.json @@ -0,0 +1,19 @@ +{ + "id": 7160, + "slug": "open-source-cluster-application-resources", + "name": "Open Source Cluster Application Resources", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7096214" + ], + "created_at": "2026-07-10T10:12:42.218419", + "updated_at": "2026-07-10T10:12:42.218419", + "url": "/v1/software/open-source-cluster-application-resources" +} diff --git a/site/public/v1/software/open-source-console-for-real-time-acquisition/index.json b/site/public/v1/software/open-source-console-for-real-time-acquisition/index.json new file mode 100644 index 000000000000..39d7368048ce --- /dev/null +++ b/site/public/v1/software/open-source-console-for-real-time-acquisition/index.json @@ -0,0 +1,19 @@ +{ + "id": 7161, + "slug": "open-source-console-for-real-time-acquisition", + "name": "Open Source Console for Real-Time Acquisition", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q97170704" + ], + "created_at": "2026-07-10T10:12:42.219401", + "updated_at": "2026-07-10T10:12:42.219401", + "url": "/v1/software/open-source-console-for-real-time-acquisition" +} diff --git a/site/public/v1/software/open-source-economics/index.json b/site/public/v1/software/open-source-economics/index.json new file mode 100644 index 000000000000..2130bbdfebbe --- /dev/null +++ b/site/public/v1/software/open-source-economics/index.json @@ -0,0 +1,19 @@ +{ + "id": 7162, + "slug": "open-source-economics", + "name": "open-source economics", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7095716" + ], + "created_at": "2026-07-10T10:12:42.219401", + "updated_at": "2026-07-10T10:12:42.219401", + "url": "/v1/software/open-source-economics" +} diff --git a/site/public/v1/software/open-source-in-kosovo/index.json b/site/public/v1/software/open-source-in-kosovo/index.json new file mode 100644 index 000000000000..16964183a69a --- /dev/null +++ b/site/public/v1/software/open-source-in-kosovo/index.json @@ -0,0 +1,19 @@ +{ + "id": 7163, + "slug": "open-source-in-kosovo", + "name": "Open source in Kosovo", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16962072" + ], + "created_at": "2026-07-10T10:12:42.219401", + "updated_at": "2026-07-10T10:12:42.219401", + "url": "/v1/software/open-source-in-kosovo" +} diff --git a/site/public/v1/software/open-source-software-cd/index.json b/site/public/v1/software/open-source-software-cd/index.json new file mode 100644 index 000000000000..f4416d778d2d --- /dev/null +++ b/site/public/v1/software/open-source-software-cd/index.json @@ -0,0 +1,21 @@ +{ + "id": 7164, + "slug": "open-source-software-cd", + "name": "Open Source Software CD", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3883432" + ], + "created_at": "2026-07-10T10:12:42.220470", + "updated_at": "2026-07-10T10:12:42.220470", + "url": "/v1/software/open-source-software-cd" +} diff --git a/site/public/v1/software/open-source-software-image-map/index.json b/site/public/v1/software/open-source-software-image-map/index.json new file mode 100644 index 000000000000..095908db489d --- /dev/null +++ b/site/public/v1/software/open-source-software-image-map/index.json @@ -0,0 +1,21 @@ +{ + "id": 7165, + "slug": "open-source-software-image-map", + "name": "Open Source Software Image Map", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108044530" + ], + "created_at": "2026-07-10T10:12:42.220470", + "updated_at": "2026-07-10T10:12:42.220470", + "url": "/v1/software/open-source-software-image-map" +} diff --git a/site/public/v1/software/open-specy/index.json b/site/public/v1/software/open-specy/index.json new file mode 100644 index 000000000000..e03a4eb1f9f8 --- /dev/null +++ b/site/public/v1/software/open-specy/index.json @@ -0,0 +1,24 @@ +{ + "id": 7166, + "slug": "open-specy", + "name": "Open Specy", + "release_date": null, + "developers": [ + "Win Cowger", + "Zacharias Steinmetz" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Creative Commons Attribution 4.0 International" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113343294" + ], + "created_at": "2026-07-10T10:12:42.220470", + "updated_at": "2026-07-10T10:12:42.220470", + "url": "/v1/software/open-specy" +} diff --git a/site/public/v1/software/open-system-engineering-environment/index.json b/site/public/v1/software/open-system-engineering-environment/index.json new file mode 100644 index 000000000000..975f8db28539 --- /dev/null +++ b/site/public/v1/software/open-system-engineering-environment/index.json @@ -0,0 +1,19 @@ +{ + "id": 7167, + "slug": "open-system-engineering-environment", + "name": "Open System Engineering Environment", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76168473" + ], + "created_at": "2026-07-10T10:12:42.221340", + "updated_at": "2026-07-10T10:12:42.221340", + "url": "/v1/software/open-system-engineering-environment" +} diff --git a/site/public/v1/software/open-systems-accounting-software/index.json b/site/public/v1/software/open-systems-accounting-software/index.json new file mode 100644 index 000000000000..d2befd74d139 --- /dev/null +++ b/site/public/v1/software/open-systems-accounting-software/index.json @@ -0,0 +1,19 @@ +{ + "id": 7168, + "slug": "open-systems-accounting-software", + "name": "Open Systems Accounting Software", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7096248" + ], + "created_at": "2026-07-10T10:12:42.221340", + "updated_at": "2026-07-10T10:12:42.221340", + "url": "/v1/software/open-systems-accounting-software" +} diff --git a/site/public/v1/software/open-threat-exchange/index.json b/site/public/v1/software/open-threat-exchange/index.json new file mode 100644 index 000000000000..5ef15b6e4f65 --- /dev/null +++ b/site/public/v1/software/open-threat-exchange/index.json @@ -0,0 +1,21 @@ +{ + "id": 7169, + "slug": "open-threat-exchange", + "name": "Open Threat Exchange", + "release_date": null, + "developers": [ + "AT&T Cybersecurity" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25245470" + ], + "created_at": "2026-07-10T10:12:42.221340", + "updated_at": "2026-07-10T10:12:42.221340", + "url": "/v1/software/open-threat-exchange" +} diff --git a/site/public/v1/software/open3dgc/index.json b/site/public/v1/software/open3dgc/index.json new file mode 100644 index 000000000000..232d6763cf74 --- /dev/null +++ b/site/public/v1/software/open3dgc/index.json @@ -0,0 +1,21 @@ +{ + "id": 7170, + "slug": "open3dgc", + "name": "Open3DGC", + "release_date": null, + "developers": [ + "AMD" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116474863" + ], + "created_at": "2026-07-10T10:12:42.222340", + "updated_at": "2026-07-10T10:12:42.222340", + "url": "/v1/software/open3dgc" +} diff --git a/site/public/v1/software/openai-codex/index.json b/site/public/v1/software/openai-codex/index.json new file mode 100644 index 000000000000..b6da9139b1b2 --- /dev/null +++ b/site/public/v1/software/openai-codex/index.json @@ -0,0 +1,21 @@ +{ + "id": 7171, + "slug": "openai-codex", + "name": "OpenAI Codex", + "release_date": null, + "developers": [ + "OpenAI" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108582200" + ], + "created_at": "2026-07-10T10:12:42.222340", + "updated_at": "2026-07-10T10:12:42.222340", + "url": "/v1/software/openai-codex" +} diff --git a/site/public/v1/software/openai-five/index.json b/site/public/v1/software/openai-five/index.json new file mode 100644 index 000000000000..feaaea42c434 --- /dev/null +++ b/site/public/v1/software/openai-five/index.json @@ -0,0 +1,21 @@ +{ + "id": 7172, + "slug": "openai-five", + "name": "OpenAI Five", + "release_date": null, + "developers": [ + "OpenAI" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60748043" + ], + "created_at": "2026-07-10T10:12:42.222340", + "updated_at": "2026-07-10T10:12:42.222340", + "url": "/v1/software/openai-five" +} diff --git a/site/public/v1/software/openai-operator/index.json b/site/public/v1/software/openai-operator/index.json new file mode 100644 index 000000000000..653886ec0822 --- /dev/null +++ b/site/public/v1/software/openai-operator/index.json @@ -0,0 +1,19 @@ +{ + "id": 7173, + "slug": "openai-operator", + "name": "OpenAI Operator", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q133504045" + ], + "created_at": "2026-07-10T10:12:42.223422", + "updated_at": "2026-07-10T10:12:42.223422", + "url": "/v1/software/openai-operator" +} diff --git a/site/public/v1/software/openalpr/index.json b/site/public/v1/software/openalpr/index.json new file mode 100644 index 000000000000..0597584a1724 --- /dev/null +++ b/site/public/v1/software/openalpr/index.json @@ -0,0 +1,19 @@ +{ + "id": 7174, + "slug": "openalpr", + "name": "OpenALPR", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q55080324" + ], + "created_at": "2026-07-10T10:12:42.223422", + "updated_at": "2026-07-10T10:12:42.223422", + "url": "/v1/software/openalpr" +} diff --git a/site/public/v1/software/openam/index.json b/site/public/v1/software/openam/index.json new file mode 100644 index 000000000000..fc18fe0c77b8 --- /dev/null +++ b/site/public/v1/software/openam/index.json @@ -0,0 +1,25 @@ +{ + "id": 7175, + "slug": "openam", + "name": "OpenAM", + "release_date": "2008-11-11", + "developers": [ + "Sun Microsystems" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Java" + ], + "licenses": [ + "Common Development and Distribution License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q822258" + ], + "created_at": "2026-07-10T10:12:42.223422", + "updated_at": "2026-07-10T10:12:42.223422", + "url": "/v1/software/openam" +} diff --git a/site/public/v1/software/openatlas/index.json b/site/public/v1/software/openatlas/index.json new file mode 100644 index 000000000000..862f7aa1865e --- /dev/null +++ b/site/public/v1/software/openatlas/index.json @@ -0,0 +1,19 @@ +{ + "id": 7176, + "slug": "openatlas", + "name": "OpenAtlas", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084432" + ], + "created_at": "2026-07-10T10:12:42.223422", + "updated_at": "2026-07-10T10:12:42.223422", + "url": "/v1/software/openatlas" +} diff --git a/site/public/v1/software/openautonomy/index.json b/site/public/v1/software/openautonomy/index.json new file mode 100644 index 000000000000..84e0207ca68d --- /dev/null +++ b/site/public/v1/software/openautonomy/index.json @@ -0,0 +1,23 @@ +{ + "id": 7177, + "slug": "openautonomy", + "name": "OpenAutonomy", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "PHP" + ], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17073059" + ], + "created_at": "2026-07-10T10:12:42.224419", + "updated_at": "2026-07-10T10:12:42.224419", + "url": "/v1/software/openautonomy" +} diff --git a/site/public/v1/software/openbinder/index.json b/site/public/v1/software/openbinder/index.json new file mode 100644 index 000000000000..9797cbdce10a --- /dev/null +++ b/site/public/v1/software/openbinder/index.json @@ -0,0 +1,19 @@ +{ + "id": 7178, + "slug": "openbinder", + "name": "OpenBinder", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17121613" + ], + "created_at": "2026-07-10T10:12:42.224419", + "updated_at": "2026-07-10T10:12:42.224419", + "url": "/v1/software/openbinder" +} diff --git a/site/public/v1/software/openbis/index.json b/site/public/v1/software/openbis/index.json new file mode 100644 index 000000000000..e0c560b2f55f --- /dev/null +++ b/site/public/v1/software/openbis/index.json @@ -0,0 +1,19 @@ +{ + "id": 7179, + "slug": "openbis", + "name": "OpenBIS", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106929673" + ], + "created_at": "2026-07-10T10:12:42.224419", + "updated_at": "2026-07-10T10:12:42.224419", + "url": "/v1/software/openbis" +} diff --git a/site/public/v1/software/openbmc/index.json b/site/public/v1/software/openbmc/index.json new file mode 100644 index 000000000000..16af91e0774d --- /dev/null +++ b/site/public/v1/software/openbmc/index.json @@ -0,0 +1,21 @@ +{ + "id": 7180, + "slug": "openbmc", + "name": "OpenBMC", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Apache License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q55098958" + ], + "created_at": "2026-07-10T10:12:42.225412", + "updated_at": "2026-07-10T10:12:42.225412", + "url": "/v1/software/openbmc" +} diff --git a/site/public/v1/software/openbravo-pos/index.json b/site/public/v1/software/openbravo-pos/index.json new file mode 100644 index 000000000000..0f2a7226b26b --- /dev/null +++ b/site/public/v1/software/openbravo-pos/index.json @@ -0,0 +1,21 @@ +{ + "id": 7181, + "slug": "openbravo-pos", + "name": "Openbravo POS", + "release_date": null, + "developers": [ + "Openbravo" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4045913" + ], + "created_at": "2026-07-10T10:12:42.225412", + "updated_at": "2026-07-10T10:12:42.225412", + "url": "/v1/software/openbravo-pos" +} diff --git a/site/public/v1/software/openbravo/index.json b/site/public/v1/software/openbravo/index.json new file mode 100644 index 000000000000..aa10e316abc1 --- /dev/null +++ b/site/public/v1/software/openbravo/index.json @@ -0,0 +1,23 @@ +{ + "id": 7182, + "slug": "openbravo", + "name": "Openbravo", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Java" + ], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1418609" + ], + "created_at": "2026-07-10T10:12:42.225412", + "updated_at": "2026-07-10T10:12:42.225412", + "url": "/v1/software/openbravo" +} diff --git a/site/public/v1/software/opencard-framework/index.json b/site/public/v1/software/opencard-framework/index.json new file mode 100644 index 000000000000..4bffb6c5ce05 --- /dev/null +++ b/site/public/v1/software/opencard-framework/index.json @@ -0,0 +1,19 @@ +{ + "id": 7183, + "slug": "opencard-framework", + "name": "OpenCard Framework", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1138014" + ], + "created_at": "2026-07-10T10:12:42.226341", + "updated_at": "2026-07-10T10:12:42.226341", + "url": "/v1/software/opencard-framework" +} diff --git a/site/public/v1/software/opencc/index.json b/site/public/v1/software/opencc/index.json new file mode 100644 index 000000000000..09094f1166e7 --- /dev/null +++ b/site/public/v1/software/opencc/index.json @@ -0,0 +1,19 @@ +{ + "id": 7184, + "slug": "opencc", + "name": "opencc", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127418907" + ], + "created_at": "2026-07-10T10:12:42.226341", + "updated_at": "2026-07-10T10:12:42.226341", + "url": "/v1/software/opencc" +} diff --git a/site/public/v1/software/opencd/index.json b/site/public/v1/software/opencd/index.json new file mode 100644 index 000000000000..efd2196e2de7 --- /dev/null +++ b/site/public/v1/software/opencd/index.json @@ -0,0 +1,21 @@ +{ + "id": 7185, + "slug": "opencd", + "name": "OpenCD", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2714283" + ], + "created_at": "2026-07-10T10:12:42.226341", + "updated_at": "2026-07-10T10:12:42.226341", + "url": "/v1/software/opencd" +} diff --git a/site/public/v1/software/opencefadb/index.json b/site/public/v1/software/opencefadb/index.json new file mode 100644 index 000000000000..67630c5dbde9 --- /dev/null +++ b/site/public/v1/software/opencefadb/index.json @@ -0,0 +1,21 @@ +{ + "id": 7186, + "slug": "opencefadb", + "name": "openCeFaDB", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "GNU General Public License, version 3.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137885626" + ], + "created_at": "2026-07-10T10:12:42.227340", + "updated_at": "2026-07-10T10:12:42.227340", + "url": "/v1/software/opencefadb" +} diff --git a/site/public/v1/software/openchange/index.json b/site/public/v1/software/openchange/index.json new file mode 100644 index 000000000000..7fc0f80bc173 --- /dev/null +++ b/site/public/v1/software/openchange/index.json @@ -0,0 +1,19 @@ +{ + "id": 7187, + "slug": "openchange", + "name": "Openchange", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6051288" + ], + "created_at": "2026-07-10T10:12:42.227340", + "updated_at": "2026-07-10T10:12:42.227340", + "url": "/v1/software/openchange" +} diff --git a/site/public/v1/software/openclinica/index.json b/site/public/v1/software/openclinica/index.json new file mode 100644 index 000000000000..e42aeaeea262 --- /dev/null +++ b/site/public/v1/software/openclinica/index.json @@ -0,0 +1,19 @@ +{ + "id": 7188, + "slug": "openclinica", + "name": "Openclinica", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106919623" + ], + "created_at": "2026-07-10T10:12:42.227340", + "updated_at": "2026-07-10T10:12:42.227340", + "url": "/v1/software/openclinica" +} diff --git a/site/public/v1/software/opencloud/index.json b/site/public/v1/software/opencloud/index.json new file mode 100644 index 000000000000..4657b30e8134 --- /dev/null +++ b/site/public/v1/software/opencloud/index.json @@ -0,0 +1,25 @@ +{ + "id": 7189, + "slug": "opencloud", + "name": "OpenCloud", + "release_date": "2025-01-01", + "developers": [], + "publishers": [], + "operating_systems": [ + "iOS", + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "Apache License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139850776" + ], + "created_at": "2026-07-10T10:12:42.228420", + "updated_at": "2026-07-10T10:12:42.228420", + "url": "/v1/software/opencloud" +} diff --git a/site/public/v1/software/opencmis/index.json b/site/public/v1/software/opencmis/index.json new file mode 100644 index 000000000000..32c0655984d2 --- /dev/null +++ b/site/public/v1/software/opencmis/index.json @@ -0,0 +1,19 @@ +{ + "id": 7190, + "slug": "opencmis", + "name": "OpenCMIS", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7095746" + ], + "created_at": "2026-07-10T10:12:42.228420", + "updated_at": "2026-07-10T10:12:42.228420", + "url": "/v1/software/opencmis" +} diff --git a/site/public/v1/software/openconf/index.json b/site/public/v1/software/openconf/index.json new file mode 100644 index 000000000000..051e33466298 --- /dev/null +++ b/site/public/v1/software/openconf/index.json @@ -0,0 +1,21 @@ +{ + "id": 7191, + "slug": "openconf", + "name": "OpenConf", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "PHP" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7095759" + ], + "created_at": "2026-07-10T10:12:42.228420", + "updated_at": "2026-07-10T10:12:42.228420", + "url": "/v1/software/openconf" +} diff --git a/site/public/v1/software/opencore-auxiliary-tools/index.json b/site/public/v1/software/opencore-auxiliary-tools/index.json new file mode 100644 index 000000000000..cfa7cacedd17 --- /dev/null +++ b/site/public/v1/software/opencore-auxiliary-tools/index.json @@ -0,0 +1,21 @@ +{ + "id": 7192, + "slug": "opencore-auxiliary-tools", + "name": "OpenCore Auxiliary Tools", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q133294383" + ], + "created_at": "2026-07-10T10:12:42.228420", + "updated_at": "2026-07-10T10:12:42.228420", + "url": "/v1/software/opencore-auxiliary-tools" +} diff --git a/site/public/v1/software/opencpn-plugin-br24radar/index.json b/site/public/v1/software/opencpn-plugin-br24radar/index.json new file mode 100644 index 000000000000..2c3547342f3e --- /dev/null +++ b/site/public/v1/software/opencpn-plugin-br24radar/index.json @@ -0,0 +1,19 @@ +{ + "id": 7193, + "slug": "opencpn-plugin-br24radar", + "name": "opencpn-plugin-br24radar", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975279" + ], + "created_at": "2026-07-10T10:12:42.229408", + "updated_at": "2026-07-10T10:12:42.229408", + "url": "/v1/software/opencpn-plugin-br24radar" +} diff --git a/site/public/v1/software/opencpn-plugin-climatology/index.json b/site/public/v1/software/opencpn-plugin-climatology/index.json new file mode 100644 index 000000000000..bd47673b479c --- /dev/null +++ b/site/public/v1/software/opencpn-plugin-climatology/index.json @@ -0,0 +1,19 @@ +{ + "id": 7194, + "slug": "opencpn-plugin-climatology", + "name": "opencpn-plugin-climatology", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975280" + ], + "created_at": "2026-07-10T10:12:42.229408", + "updated_at": "2026-07-10T10:12:42.229408", + "url": "/v1/software/opencpn-plugin-climatology" +} diff --git a/site/public/v1/software/opencpn-plugin-dr/index.json b/site/public/v1/software/opencpn-plugin-dr/index.json new file mode 100644 index 000000000000..674b6f7a63d2 --- /dev/null +++ b/site/public/v1/software/opencpn-plugin-dr/index.json @@ -0,0 +1,19 @@ +{ + "id": 7195, + "slug": "opencpn-plugin-dr", + "name": "opencpn-plugin-dr", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975281" + ], + "created_at": "2026-07-10T10:12:42.230398", + "updated_at": "2026-07-10T10:12:42.230398", + "url": "/v1/software/opencpn-plugin-dr" +} diff --git a/site/public/v1/software/opencpn-plugin-findit/index.json b/site/public/v1/software/opencpn-plugin-findit/index.json new file mode 100644 index 000000000000..60cc7e7f4633 --- /dev/null +++ b/site/public/v1/software/opencpn-plugin-findit/index.json @@ -0,0 +1,19 @@ +{ + "id": 7196, + "slug": "opencpn-plugin-findit", + "name": "opencpn-plugin-findit", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975282" + ], + "created_at": "2026-07-10T10:12:42.230398", + "updated_at": "2026-07-10T10:12:42.230398", + "url": "/v1/software/opencpn-plugin-findit" +} diff --git a/site/public/v1/software/opencpn-plugin-gxradar/index.json b/site/public/v1/software/opencpn-plugin-gxradar/index.json new file mode 100644 index 000000000000..3645901ee0c5 --- /dev/null +++ b/site/public/v1/software/opencpn-plugin-gxradar/index.json @@ -0,0 +1,19 @@ +{ + "id": 7197, + "slug": "opencpn-plugin-gxradar", + "name": "opencpn-plugin-gxradar", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975283" + ], + "created_at": "2026-07-10T10:12:42.230398", + "updated_at": "2026-07-10T10:12:42.230398", + "url": "/v1/software/opencpn-plugin-gxradar" +} diff --git a/site/public/v1/software/opencpn-plugin-iacfleet/index.json b/site/public/v1/software/opencpn-plugin-iacfleet/index.json new file mode 100644 index 000000000000..246dd3c8f9f1 --- /dev/null +++ b/site/public/v1/software/opencpn-plugin-iacfleet/index.json @@ -0,0 +1,19 @@ +{ + "id": 7198, + "slug": "opencpn-plugin-iacfleet", + "name": "opencpn-plugin-iacfleet", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975284" + ], + "created_at": "2026-07-10T10:12:42.231397", + "updated_at": "2026-07-10T10:12:42.231397", + "url": "/v1/software/opencpn-plugin-iacfleet" +} diff --git a/site/public/v1/software/opencpn-plugin-launcher/index.json b/site/public/v1/software/opencpn-plugin-launcher/index.json new file mode 100644 index 000000000000..9903cb70102a --- /dev/null +++ b/site/public/v1/software/opencpn-plugin-launcher/index.json @@ -0,0 +1,19 @@ +{ + "id": 7199, + "slug": "opencpn-plugin-launcher", + "name": "opencpn-plugin-launcher", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975285" + ], + "created_at": "2026-07-10T10:12:42.231397", + "updated_at": "2026-07-10T10:12:42.231397", + "url": "/v1/software/opencpn-plugin-launcher" +} diff --git a/site/public/v1/software/opencpn-plugin-logbookkonni/index.json b/site/public/v1/software/opencpn-plugin-logbookkonni/index.json new file mode 100644 index 000000000000..a6f31335ffa5 --- /dev/null +++ b/site/public/v1/software/opencpn-plugin-logbookkonni/index.json @@ -0,0 +1,19 @@ +{ + "id": 7200, + "slug": "opencpn-plugin-logbookkonni", + "name": "opencpn-plugin-logbookkonni", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975286" + ], + "created_at": "2026-07-10T10:12:42.231397", + "updated_at": "2026-07-10T10:12:42.231397", + "url": "/v1/software/opencpn-plugin-logbookkonni" +} diff --git a/site/public/v1/software/opencpn-plugin-objsearch/index.json b/site/public/v1/software/opencpn-plugin-objsearch/index.json new file mode 100644 index 000000000000..1df7045d8774 --- /dev/null +++ b/site/public/v1/software/opencpn-plugin-objsearch/index.json @@ -0,0 +1,19 @@ +{ + "id": 7201, + "slug": "opencpn-plugin-objsearch", + "name": "opencpn-plugin-objsearch", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975287" + ], + "created_at": "2026-07-10T10:12:42.232412", + "updated_at": "2026-07-10T10:12:42.232412", + "url": "/v1/software/opencpn-plugin-objsearch" +} diff --git a/site/public/v1/software/opencpn-plugin-ocpn-draw/index.json b/site/public/v1/software/opencpn-plugin-ocpn-draw/index.json new file mode 100644 index 000000000000..32e89418f221 --- /dev/null +++ b/site/public/v1/software/opencpn-plugin-ocpn-draw/index.json @@ -0,0 +1,19 @@ +{ + "id": 7202, + "slug": "opencpn-plugin-ocpn-draw", + "name": "opencpn-plugin-ocpn_draw", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975288" + ], + "created_at": "2026-07-10T10:12:42.232412", + "updated_at": "2026-07-10T10:12:42.232412", + "url": "/v1/software/opencpn-plugin-ocpn-draw" +} diff --git a/site/public/v1/software/opencpn-plugin-ocpndebugger/index.json b/site/public/v1/software/opencpn-plugin-ocpndebugger/index.json new file mode 100644 index 000000000000..8b0a11908059 --- /dev/null +++ b/site/public/v1/software/opencpn-plugin-ocpndebugger/index.json @@ -0,0 +1,19 @@ +{ + "id": 7203, + "slug": "opencpn-plugin-ocpndebugger", + "name": "opencpn-plugin-ocpndebugger", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975289" + ], + "created_at": "2026-07-10T10:12:42.232412", + "updated_at": "2026-07-10T10:12:42.232412", + "url": "/v1/software/opencpn-plugin-ocpndebugger" +} diff --git a/site/public/v1/software/opencpn-plugin-otcurrent/index.json b/site/public/v1/software/opencpn-plugin-otcurrent/index.json new file mode 100644 index 000000000000..07e5e79d63de --- /dev/null +++ b/site/public/v1/software/opencpn-plugin-otcurrent/index.json @@ -0,0 +1,19 @@ +{ + "id": 7204, + "slug": "opencpn-plugin-otcurrent", + "name": "opencpn-plugin-otcurrent", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975290" + ], + "created_at": "2026-07-10T10:12:42.233408", + "updated_at": "2026-07-10T10:12:42.233408", + "url": "/v1/software/opencpn-plugin-otcurrent" +} diff --git a/site/public/v1/software/opencpn-plugin-polar/index.json b/site/public/v1/software/opencpn-plugin-polar/index.json new file mode 100644 index 000000000000..5c464b65caf1 --- /dev/null +++ b/site/public/v1/software/opencpn-plugin-polar/index.json @@ -0,0 +1,19 @@ +{ + "id": 7205, + "slug": "opencpn-plugin-polar", + "name": "opencpn-plugin-polar", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975291" + ], + "created_at": "2026-07-10T10:12:42.233408", + "updated_at": "2026-07-10T10:12:42.233408", + "url": "/v1/software/opencpn-plugin-polar" +} diff --git a/site/public/v1/software/opencpn-plugin-radar/index.json b/site/public/v1/software/opencpn-plugin-radar/index.json new file mode 100644 index 000000000000..a5138b20cff0 --- /dev/null +++ b/site/public/v1/software/opencpn-plugin-radar/index.json @@ -0,0 +1,19 @@ +{ + "id": 7206, + "slug": "opencpn-plugin-radar", + "name": "opencpn-plugin-radar", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975292" + ], + "created_at": "2026-07-10T10:12:42.233408", + "updated_at": "2026-07-10T10:12:42.233408", + "url": "/v1/software/opencpn-plugin-radar" +} diff --git a/site/public/v1/software/opencpn-plugin-route/index.json b/site/public/v1/software/opencpn-plugin-route/index.json new file mode 100644 index 000000000000..74b8a4ac331b --- /dev/null +++ b/site/public/v1/software/opencpn-plugin-route/index.json @@ -0,0 +1,19 @@ +{ + "id": 7207, + "slug": "opencpn-plugin-route", + "name": "opencpn-plugin-route", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975293" + ], + "created_at": "2026-07-10T10:12:42.234448", + "updated_at": "2026-07-10T10:12:42.234448", + "url": "/v1/software/opencpn-plugin-route" +} diff --git a/site/public/v1/software/opencpn-plugin-squiddio/index.json b/site/public/v1/software/opencpn-plugin-squiddio/index.json new file mode 100644 index 000000000000..e43d6bb7b218 --- /dev/null +++ b/site/public/v1/software/opencpn-plugin-squiddio/index.json @@ -0,0 +1,19 @@ +{ + "id": 7208, + "slug": "opencpn-plugin-squiddio", + "name": "opencpn-plugin-squiddio", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975295" + ], + "created_at": "2026-07-10T10:12:42.234448", + "updated_at": "2026-07-10T10:12:42.234448", + "url": "/v1/software/opencpn-plugin-squiddio" +} diff --git a/site/public/v1/software/opencpn-plugin-statusbar/index.json b/site/public/v1/software/opencpn-plugin-statusbar/index.json new file mode 100644 index 000000000000..97dbd92e9582 --- /dev/null +++ b/site/public/v1/software/opencpn-plugin-statusbar/index.json @@ -0,0 +1,19 @@ +{ + "id": 7209, + "slug": "opencpn-plugin-statusbar", + "name": "opencpn-plugin-statusbar", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975296" + ], + "created_at": "2026-07-10T10:12:42.234448", + "updated_at": "2026-07-10T10:12:42.234448", + "url": "/v1/software/opencpn-plugin-statusbar" +} diff --git a/site/public/v1/software/opencpn-plugin-watchdog/index.json b/site/public/v1/software/opencpn-plugin-watchdog/index.json new file mode 100644 index 000000000000..0714536b31e3 --- /dev/null +++ b/site/public/v1/software/opencpn-plugin-watchdog/index.json @@ -0,0 +1,19 @@ +{ + "id": 7210, + "slug": "opencpn-plugin-watchdog", + "name": "opencpn-plugin-watchdog", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975297" + ], + "created_at": "2026-07-10T10:12:42.235344", + "updated_at": "2026-07-10T10:12:42.235344", + "url": "/v1/software/opencpn-plugin-watchdog" +} diff --git a/site/public/v1/software/opencpn-plugin-weather-routing/index.json b/site/public/v1/software/opencpn-plugin-weather-routing/index.json new file mode 100644 index 000000000000..ee3cd8cb5489 --- /dev/null +++ b/site/public/v1/software/opencpn-plugin-weather-routing/index.json @@ -0,0 +1,19 @@ +{ + "id": 7211, + "slug": "opencpn-plugin-weather-routing", + "name": "opencpn-plugin-weather_routing", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975298" + ], + "created_at": "2026-07-10T10:12:42.235344", + "updated_at": "2026-07-10T10:12:42.235344", + "url": "/v1/software/opencpn-plugin-weather-routing" +} diff --git a/site/public/v1/software/opencpn-plugin-weatherfax/index.json b/site/public/v1/software/opencpn-plugin-weatherfax/index.json new file mode 100644 index 000000000000..ffea152464d0 --- /dev/null +++ b/site/public/v1/software/opencpn-plugin-weatherfax/index.json @@ -0,0 +1,19 @@ +{ + "id": 7212, + "slug": "opencpn-plugin-weatherfax", + "name": "opencpn-plugin-weatherfax", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975299" + ], + "created_at": "2026-07-10T10:12:42.236435", + "updated_at": "2026-07-10T10:12:42.236435", + "url": "/v1/software/opencpn-plugin-weatherfax" +} diff --git a/site/public/v1/software/opencrg/index.json b/site/public/v1/software/opencrg/index.json new file mode 100644 index 000000000000..f3593972237b --- /dev/null +++ b/site/public/v1/software/opencrg/index.json @@ -0,0 +1,23 @@ +{ + "id": 7213, + "slug": "opencrg", + "name": "OpenCRG", + "release_date": null, + "developers": [ + "Mercedes-Benz Group" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Apache License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7095748" + ], + "created_at": "2026-07-10T10:12:42.236435", + "updated_at": "2026-07-10T10:12:42.236435", + "url": "/v1/software/opencrg" +} diff --git a/site/public/v1/software/openct/index.json b/site/public/v1/software/openct/index.json new file mode 100644 index 000000000000..633068ef7cb9 --- /dev/null +++ b/site/public/v1/software/openct/index.json @@ -0,0 +1,19 @@ +{ + "id": 7214, + "slug": "openct", + "name": "OpenCT", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127165312" + ], + "created_at": "2026-07-10T10:12:42.236435", + "updated_at": "2026-07-10T10:12:42.236435", + "url": "/v1/software/openct" +} diff --git a/site/public/v1/software/opendbx/index.json b/site/public/v1/software/opendbx/index.json new file mode 100644 index 000000000000..3866d02616d4 --- /dev/null +++ b/site/public/v1/software/opendbx/index.json @@ -0,0 +1,19 @@ +{ + "id": 7215, + "slug": "opendbx", + "name": "OpenDBX", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2025404" + ], + "created_at": "2026-07-10T10:12:42.236435", + "updated_at": "2026-07-10T10:12:42.236435", + "url": "/v1/software/opendbx" +} diff --git a/site/public/v1/software/opendisc/index.json b/site/public/v1/software/opendisc/index.json new file mode 100644 index 000000000000..8f10e66db9d8 --- /dev/null +++ b/site/public/v1/software/opendisc/index.json @@ -0,0 +1,19 @@ +{ + "id": 7216, + "slug": "opendisc", + "name": "Opendisc", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7096490" + ], + "created_at": "2026-07-10T10:12:42.237420", + "updated_at": "2026-07-10T10:12:42.237420", + "url": "/v1/software/opendisc" +} diff --git a/site/public/v1/software/opendkim/index.json b/site/public/v1/software/opendkim/index.json new file mode 100644 index 000000000000..56f1f86dc5ce --- /dev/null +++ b/site/public/v1/software/opendkim/index.json @@ -0,0 +1,19 @@ +{ + "id": 7217, + "slug": "opendkim", + "name": "OpenDKIM", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62855466" + ], + "created_at": "2026-07-10T10:12:42.237420", + "updated_at": "2026-07-10T10:12:42.237420", + "url": "/v1/software/opendkim" +} diff --git a/site/public/v1/software/opendmtp/index.json b/site/public/v1/software/opendmtp/index.json new file mode 100644 index 000000000000..df71d4918fa4 --- /dev/null +++ b/site/public/v1/software/opendmtp/index.json @@ -0,0 +1,19 @@ +{ + "id": 7218, + "slug": "opendmtp", + "name": "OpenDMTP", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2402977" + ], + "created_at": "2026-07-10T10:12:42.238414", + "updated_at": "2026-07-10T10:12:42.238414", + "url": "/v1/software/opendmtp" +} diff --git a/site/public/v1/software/opendoc/index.json b/site/public/v1/software/opendoc/index.json new file mode 100644 index 000000000000..5a50b9a3ef41 --- /dev/null +++ b/site/public/v1/software/opendoc/index.json @@ -0,0 +1,22 @@ +{ + "id": 7219, + "slug": "opendoc", + "name": "OpenDoc", + "release_date": null, + "developers": [ + "IBM", + "Apple Inc." + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1500846" + ], + "created_at": "2026-07-10T10:12:42.238414", + "updated_at": "2026-07-10T10:12:42.238414", + "url": "/v1/software/opendoc" +} diff --git a/site/public/v1/software/opendronemap/index.json b/site/public/v1/software/opendronemap/index.json new file mode 100644 index 000000000000..e1844c048d28 --- /dev/null +++ b/site/public/v1/software/opendronemap/index.json @@ -0,0 +1,23 @@ +{ + "id": 7220, + "slug": "opendronemap", + "name": "OpenDroneMap", + "release_date": null, + "developers": [ + "Piero Toffanin" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Python" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q65077013" + ], + "created_at": "2026-07-10T10:12:42.238414", + "updated_at": "2026-07-10T10:12:42.238414", + "url": "/v1/software/opendronemap" +} diff --git a/site/public/v1/software/openelect/index.json b/site/public/v1/software/openelect/index.json new file mode 100644 index 000000000000..f4a3553e1dcf --- /dev/null +++ b/site/public/v1/software/openelect/index.json @@ -0,0 +1,21 @@ +{ + "id": 7221, + "slug": "openelect", + "name": "OpenElect", + "release_date": null, + "developers": [ + "Unisyn Voting Solutions" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q56668836" + ], + "created_at": "2026-07-10T10:12:42.238414", + "updated_at": "2026-07-10T10:12:42.238414", + "url": "/v1/software/openelect" +} diff --git a/site/public/v1/software/openemulator/index.json b/site/public/v1/software/openemulator/index.json new file mode 100644 index 000000000000..35e8b39f67fa --- /dev/null +++ b/site/public/v1/software/openemulator/index.json @@ -0,0 +1,19 @@ +{ + "id": 7222, + "slug": "openemulator", + "name": "OpenEmulator", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2160247" + ], + "created_at": "2026-07-10T10:12:42.239414", + "updated_at": "2026-07-10T10:12:42.239414", + "url": "/v1/software/openemulator" +} diff --git a/site/public/v1/software/openepi/index.json b/site/public/v1/software/openepi/index.json new file mode 100644 index 000000000000..d783541a0835 --- /dev/null +++ b/site/public/v1/software/openepi/index.json @@ -0,0 +1,21 @@ +{ + "id": 7223, + "slug": "openepi", + "name": "OpenEpi", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7095785" + ], + "created_at": "2026-07-10T10:12:42.239414", + "updated_at": "2026-07-10T10:12:42.239414", + "url": "/v1/software/openepi" +} diff --git a/site/public/v1/software/openetd/index.json b/site/public/v1/software/openetd/index.json new file mode 100644 index 000000000000..30e272f1bcd0 --- /dev/null +++ b/site/public/v1/software/openetd/index.json @@ -0,0 +1,19 @@ +{ + "id": 7224, + "slug": "openetd", + "name": "OpenETD", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084434" + ], + "created_at": "2026-07-10T10:12:42.239414", + "updated_at": "2026-07-10T10:12:42.239414", + "url": "/v1/software/openetd" +} diff --git a/site/public/v1/software/openfeint/index.json b/site/public/v1/software/openfeint/index.json new file mode 100644 index 000000000000..d09733defe36 --- /dev/null +++ b/site/public/v1/software/openfeint/index.json @@ -0,0 +1,19 @@ +{ + "id": 7225, + "slug": "openfeint", + "name": "OpenFeint", + "release_date": "2009-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1049664" + ], + "created_at": "2026-07-10T10:12:42.240444", + "updated_at": "2026-07-10T10:12:42.240444", + "url": "/v1/software/openfeint" +} diff --git a/site/public/v1/software/openfisca-france-data/index.json b/site/public/v1/software/openfisca-france-data/index.json new file mode 100644 index 000000000000..ca4efde9cfbc --- /dev/null +++ b/site/public/v1/software/openfisca-france-data/index.json @@ -0,0 +1,19 @@ +{ + "id": 7226, + "slug": "openfisca-france-data", + "name": "openfisca-france-data", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117107654" + ], + "created_at": "2026-07-10T10:12:42.240444", + "updated_at": "2026-07-10T10:12:42.240444", + "url": "/v1/software/openfisca-france-data" +} diff --git a/site/public/v1/software/openframe/index.json b/site/public/v1/software/openframe/index.json new file mode 100644 index 000000000000..fd95ab3f051d --- /dev/null +++ b/site/public/v1/software/openframe/index.json @@ -0,0 +1,19 @@ +{ + "id": 7227, + "slug": "openframe", + "name": "OpenFrame", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q48796056" + ], + "created_at": "2026-07-10T10:12:42.240444", + "updated_at": "2026-07-10T10:12:42.240444", + "url": "/v1/software/openframe" +} diff --git a/site/public/v1/software/opengeosys/index.json b/site/public/v1/software/opengeosys/index.json new file mode 100644 index 000000000000..ab4b1f4846a1 --- /dev/null +++ b/site/public/v1/software/opengeosys/index.json @@ -0,0 +1,23 @@ +{ + "id": 7228, + "slug": "opengeosys", + "name": "OpenGeoSys", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Python" + ], + "licenses": [ + "3-clause BSD License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130553834" + ], + "created_at": "2026-07-10T10:12:42.241428", + "updated_at": "2026-07-10T10:12:42.241428", + "url": "/v1/software/opengeosys" +} diff --git a/site/public/v1/software/openggsn/index.json b/site/public/v1/software/openggsn/index.json new file mode 100644 index 000000000000..34f0241cf09a --- /dev/null +++ b/site/public/v1/software/openggsn/index.json @@ -0,0 +1,19 @@ +{ + "id": 7229, + "slug": "openggsn", + "name": "openggsn", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975301" + ], + "created_at": "2026-07-10T10:12:42.241428", + "updated_at": "2026-07-10T10:12:42.241428", + "url": "/v1/software/openggsn" +} diff --git a/site/public/v1/software/opengl-es/index.json b/site/public/v1/software/opengl-es/index.json new file mode 100644 index 000000000000..1b54ab08867c --- /dev/null +++ b/site/public/v1/software/opengl-es/index.json @@ -0,0 +1,23 @@ +{ + "id": 7230, + "slug": "opengl-es", + "name": "OpenGL ES", + "release_date": null, + "developers": [ + "Khronos Group" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "OpenGL ES Shading Language" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1137220" + ], + "created_at": "2026-07-10T10:12:42.241428", + "updated_at": "2026-07-10T10:12:42.241428", + "url": "/v1/software/opengl-es" +} diff --git a/site/public/v1/software/opengl-mathematics/index.json b/site/public/v1/software/opengl-mathematics/index.json new file mode 100644 index 000000000000..4c6e920e5394 --- /dev/null +++ b/site/public/v1/software/opengl-mathematics/index.json @@ -0,0 +1,21 @@ +{ + "id": 7231, + "slug": "opengl-mathematics", + "name": "OpenGL Mathematics", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3353113" + ], + "created_at": "2026-07-10T10:12:42.242345", + "updated_at": "2026-07-10T10:12:42.242345", + "url": "/v1/software/opengl-mathematics" +} diff --git a/site/public/v1/software/opengl-sc/index.json b/site/public/v1/software/opengl-sc/index.json new file mode 100644 index 000000000000..2693e093d8e3 --- /dev/null +++ b/site/public/v1/software/opengl-sc/index.json @@ -0,0 +1,21 @@ +{ + "id": 7232, + "slug": "opengl-sc", + "name": "OpenGL SC", + "release_date": null, + "developers": [ + "Khronos Group" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7095796" + ], + "created_at": "2026-07-10T10:12:42.242345", + "updated_at": "2026-07-10T10:12:42.242345", + "url": "/v1/software/opengl-sc" +} diff --git a/site/public/v1/software/openhpc/index.json b/site/public/v1/software/openhpc/index.json new file mode 100644 index 000000000000..8b595a1a8568 --- /dev/null +++ b/site/public/v1/software/openhpc/index.json @@ -0,0 +1,19 @@ +{ + "id": 7233, + "slug": "openhpc", + "name": "OpenHPC", + "release_date": "2015-11-12", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q23055562" + ], + "created_at": "2026-07-10T10:12:42.242345", + "updated_at": "2026-07-10T10:12:42.242345", + "url": "/v1/software/openhpc" +} diff --git a/site/public/v1/software/openhpi/index.json b/site/public/v1/software/openhpi/index.json new file mode 100644 index 000000000000..fbd7737ddfc1 --- /dev/null +++ b/site/public/v1/software/openhpi/index.json @@ -0,0 +1,19 @@ +{ + "id": 7234, + "slug": "openhpi", + "name": "OpenHPI", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q104902926" + ], + "created_at": "2026-07-10T10:12:42.242345", + "updated_at": "2026-07-10T10:12:42.243340", + "url": "/v1/software/openhpi" +} diff --git a/site/public/v1/software/openimis/index.json b/site/public/v1/software/openimis/index.json new file mode 100644 index 000000000000..3737761e4182 --- /dev/null +++ b/site/public/v1/software/openimis/index.json @@ -0,0 +1,19 @@ +{ + "id": 7235, + "slug": "openimis", + "name": "OpenIMIS", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60785832" + ], + "created_at": "2026-07-10T10:12:42.243340", + "updated_at": "2026-07-10T10:12:42.243340", + "url": "/v1/software/openimis" +} diff --git a/site/public/v1/software/openinkpot/index.json b/site/public/v1/software/openinkpot/index.json new file mode 100644 index 000000000000..7de7d9f594d5 --- /dev/null +++ b/site/public/v1/software/openinkpot/index.json @@ -0,0 +1,19 @@ +{ + "id": 7236, + "slug": "openinkpot", + "name": "OpenInkpot", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4045872" + ], + "created_at": "2026-07-10T10:12:42.243340", + "updated_at": "2026-07-10T10:12:42.243340", + "url": "/v1/software/openinkpot" +} diff --git a/site/public/v1/software/openinsight/index.json b/site/public/v1/software/openinsight/index.json new file mode 100644 index 000000000000..26dbee9c9599 --- /dev/null +++ b/site/public/v1/software/openinsight/index.json @@ -0,0 +1,19 @@ +{ + "id": 7237, + "slug": "openinsight", + "name": "OpenInsight", + "release_date": "1992-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7095805" + ], + "created_at": "2026-07-10T10:12:42.244343", + "updated_at": "2026-07-10T10:12:42.244343", + "url": "/v1/software/openinsight" +} diff --git a/site/public/v1/software/openintro-statistics/index.json b/site/public/v1/software/openintro-statistics/index.json new file mode 100644 index 000000000000..1550d546abea --- /dev/null +++ b/site/public/v1/software/openintro-statistics/index.json @@ -0,0 +1,19 @@ +{ + "id": 7238, + "slug": "openintro-statistics", + "name": "OpenIntro Statistics", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16977994" + ], + "created_at": "2026-07-10T10:12:42.244343", + "updated_at": "2026-07-10T10:12:42.244343", + "url": "/v1/software/openintro-statistics" +} diff --git a/site/public/v1/software/openipc/index.json b/site/public/v1/software/openipc/index.json new file mode 100644 index 000000000000..55ef5da67346 --- /dev/null +++ b/site/public/v1/software/openipc/index.json @@ -0,0 +1,23 @@ +{ + "id": 7239, + "slug": "openipc", + "name": "OpenIPC", + "release_date": null, + "developers": [ + "Igor Zalatov" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122978028" + ], + "created_at": "2026-07-10T10:12:42.244343", + "updated_at": "2026-07-10T10:12:42.244343", + "url": "/v1/software/openipc" +} diff --git a/site/public/v1/software/openipmi/index.json b/site/public/v1/software/openipmi/index.json new file mode 100644 index 000000000000..607a0bb8e0aa --- /dev/null +++ b/site/public/v1/software/openipmi/index.json @@ -0,0 +1,19 @@ +{ + "id": 7240, + "slug": "openipmi", + "name": "OpenIPMI", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62855168" + ], + "created_at": "2026-07-10T10:12:42.244343", + "updated_at": "2026-07-10T10:12:42.244343", + "url": "/v1/software/openipmi" +} diff --git a/site/public/v1/software/openkode/index.json b/site/public/v1/software/openkode/index.json new file mode 100644 index 000000000000..b4875538f1c8 --- /dev/null +++ b/site/public/v1/software/openkode/index.json @@ -0,0 +1,21 @@ +{ + "id": 7241, + "slug": "openkode", + "name": "OpenKODE", + "release_date": null, + "developers": [ + "Khronos Group" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1997191" + ], + "created_at": "2026-07-10T10:12:42.245342", + "updated_at": "2026-07-10T10:12:42.245342", + "url": "/v1/software/openkode" +} diff --git a/site/public/v1/software/openlab/index.json b/site/public/v1/software/openlab/index.json new file mode 100644 index 000000000000..271ecba7110c --- /dev/null +++ b/site/public/v1/software/openlab/index.json @@ -0,0 +1,21 @@ +{ + "id": 7242, + "slug": "openlab", + "name": "Openlab", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7096535" + ], + "created_at": "2026-07-10T10:12:42.245342", + "updated_at": "2026-07-10T10:12:42.245342", + "url": "/v1/software/openlab" +} diff --git a/site/public/v1/software/openlava/index.json b/site/public/v1/software/openlava/index.json new file mode 100644 index 000000000000..1663b9afbdf6 --- /dev/null +++ b/site/public/v1/software/openlava/index.json @@ -0,0 +1,19 @@ +{ + "id": 7243, + "slug": "openlava", + "name": "OpenLava", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22907489" + ], + "created_at": "2026-07-10T10:12:42.245342", + "updated_at": "2026-07-10T10:12:42.245342", + "url": "/v1/software/openlava" +} diff --git a/site/public/v1/software/openlink-structured-data-sniffer/index.json b/site/public/v1/software/openlink-structured-data-sniffer/index.json new file mode 100644 index 000000000000..7b4bad06e10c --- /dev/null +++ b/site/public/v1/software/openlink-structured-data-sniffer/index.json @@ -0,0 +1,21 @@ +{ + "id": 7244, + "slug": "openlink-structured-data-sniffer", + "name": "OpenLink Structured Data Sniffer", + "release_date": null, + "developers": [ + "OpenLink Software" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112434722" + ], + "created_at": "2026-07-10T10:12:42.246436", + "updated_at": "2026-07-10T10:12:42.246436", + "url": "/v1/software/openlink-structured-data-sniffer" +} diff --git a/site/public/v1/software/openlisp/index.json b/site/public/v1/software/openlisp/index.json new file mode 100644 index 000000000000..fb3ab878e2a8 --- /dev/null +++ b/site/public/v1/software/openlisp/index.json @@ -0,0 +1,19 @@ +{ + "id": 7245, + "slug": "openlisp", + "name": "OpenLisp", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7095821" + ], + "created_at": "2026-07-10T10:12:42.246436", + "updated_at": "2026-07-10T10:12:42.246436", + "url": "/v1/software/openlisp" +} diff --git a/site/public/v1/software/openlitespeed/index.json b/site/public/v1/software/openlitespeed/index.json new file mode 100644 index 000000000000..4d62ddbcc0bf --- /dev/null +++ b/site/public/v1/software/openlitespeed/index.json @@ -0,0 +1,21 @@ +{ + "id": 7246, + "slug": "openlitespeed", + "name": "OpenLiteSpeed", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "GNU General Public License, version 3.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16688690" + ], + "created_at": "2026-07-10T10:12:42.246436", + "updated_at": "2026-07-10T10:12:42.246436", + "url": "/v1/software/openlitespeed" +} diff --git a/site/public/v1/software/openmanage/index.json b/site/public/v1/software/openmanage/index.json new file mode 100644 index 000000000000..c0d3f054c8c7 --- /dev/null +++ b/site/public/v1/software/openmanage/index.json @@ -0,0 +1,21 @@ +{ + "id": 7247, + "slug": "openmanage", + "name": "OpenManage", + "release_date": null, + "developers": [ + "Dell" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7095829" + ], + "created_at": "2026-07-10T10:12:42.247428", + "updated_at": "2026-07-10T10:12:42.247428", + "url": "/v1/software/openmanage" +} diff --git a/site/public/v1/software/openmc/index.json b/site/public/v1/software/openmc/index.json new file mode 100644 index 000000000000..a766fb28248b --- /dev/null +++ b/site/public/v1/software/openmc/index.json @@ -0,0 +1,19 @@ +{ + "id": 7248, + "slug": "openmc", + "name": "OpenMC", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136168014" + ], + "created_at": "2026-07-10T10:12:42.247428", + "updated_at": "2026-07-10T10:12:42.247428", + "url": "/v1/software/openmc" +} diff --git a/site/public/v1/software/openmfg/index.json b/site/public/v1/software/openmfg/index.json new file mode 100644 index 000000000000..a742ab7b06b1 --- /dev/null +++ b/site/public/v1/software/openmfg/index.json @@ -0,0 +1,21 @@ +{ + "id": 7249, + "slug": "openmfg", + "name": "OpenMFG", + "release_date": null, + "developers": [ + "xTuple" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7095824" + ], + "created_at": "2026-07-10T10:12:42.247428", + "updated_at": "2026-07-10T10:12:42.247428", + "url": "/v1/software/openmfg" +} diff --git a/site/public/v1/software/openmi-standard/index.json b/site/public/v1/software/openmi-standard/index.json new file mode 100644 index 000000000000..9ebe0613b197 --- /dev/null +++ b/site/public/v1/software/openmi-standard/index.json @@ -0,0 +1,19 @@ +{ + "id": 7250, + "slug": "openmi-standard", + "name": "OpenMI Standard", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7095825" + ], + "created_at": "2026-07-10T10:12:42.248415", + "updated_at": "2026-07-10T10:12:42.248415", + "url": "/v1/software/openmi-standard" +} diff --git a/site/public/v1/software/openmittsu/index.json b/site/public/v1/software/openmittsu/index.json new file mode 100644 index 000000000000..702d04af7706 --- /dev/null +++ b/site/public/v1/software/openmittsu/index.json @@ -0,0 +1,19 @@ +{ + "id": 7251, + "slug": "openmittsu", + "name": "openmittsu", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065010" + ], + "created_at": "2026-07-10T10:12:42.248415", + "updated_at": "2026-07-10T10:12:42.248415", + "url": "/v1/software/openmittsu" +} diff --git a/site/public/v1/software/openml/index.json b/site/public/v1/software/openml/index.json new file mode 100644 index 000000000000..d18b3da03e24 --- /dev/null +++ b/site/public/v1/software/openml/index.json @@ -0,0 +1,21 @@ +{ + "id": 7252, + "slug": "openml", + "name": "OpenML", + "release_date": null, + "developers": [ + "Khronos Group" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q681472" + ], + "created_at": "2026-07-10T10:12:42.248415", + "updated_at": "2026-07-10T10:12:42.248415", + "url": "/v1/software/openml" +} diff --git a/site/public/v1/software/openmm/index.json b/site/public/v1/software/openmm/index.json new file mode 100644 index 000000000000..391d51a01978 --- /dev/null +++ b/site/public/v1/software/openmm/index.json @@ -0,0 +1,22 @@ +{ + "id": 7253, + "slug": "openmm", + "name": "OpenMM", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License", + "GNU Lesser General Public License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q56324517" + ], + "created_at": "2026-07-10T10:12:42.248415", + "updated_at": "2026-07-10T10:12:42.248415", + "url": "/v1/software/openmm" +} diff --git a/site/public/v1/software/openmp/index.json b/site/public/v1/software/openmp/index.json new file mode 100644 index 000000000000..49999545124f --- /dev/null +++ b/site/public/v1/software/openmp/index.json @@ -0,0 +1,21 @@ +{ + "id": 7254, + "slug": "openmp", + "name": "OpenMP", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "cross-platform" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q496579" + ], + "created_at": "2026-07-10T10:12:42.249398", + "updated_at": "2026-07-10T10:12:42.249398", + "url": "/v1/software/openmp" +} diff --git a/site/public/v1/software/openni/index.json b/site/public/v1/software/openni/index.json new file mode 100644 index 000000000000..760c2a3a37a0 --- /dev/null +++ b/site/public/v1/software/openni/index.json @@ -0,0 +1,23 @@ +{ + "id": 7255, + "slug": "openni", + "name": "OpenNI", + "release_date": null, + "developers": [ + "OpenNI" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Apache License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975302" + ], + "created_at": "2026-07-10T10:12:42.249398", + "updated_at": "2026-07-10T10:12:42.249398", + "url": "/v1/software/openni" +} diff --git a/site/public/v1/software/openni2/index.json b/site/public/v1/software/openni2/index.json new file mode 100644 index 000000000000..710ac1eb73de --- /dev/null +++ b/site/public/v1/software/openni2/index.json @@ -0,0 +1,21 @@ +{ + "id": 7256, + "slug": "openni2", + "name": "OpenNI2", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Apache License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975303" + ], + "created_at": "2026-07-10T10:12:42.249398", + "updated_at": "2026-07-10T10:12:42.249398", + "url": "/v1/software/openni2" +} diff --git a/site/public/v1/software/openorienteering-mapper/index.json b/site/public/v1/software/openorienteering-mapper/index.json new file mode 100644 index 000000000000..0b85e1971173 --- /dev/null +++ b/site/public/v1/software/openorienteering-mapper/index.json @@ -0,0 +1,21 @@ +{ + "id": 7257, + "slug": "openorienteering-mapper", + "name": "OpenOrienteering Mapper", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "GNU General Public License, version 3.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q23722830" + ], + "created_at": "2026-07-10T10:12:42.250431", + "updated_at": "2026-07-10T10:12:42.250431", + "url": "/v1/software/openorienteering-mapper" +} diff --git a/site/public/v1/software/openpass/index.json b/site/public/v1/software/openpass/index.json new file mode 100644 index 000000000000..3a995ba7267e --- /dev/null +++ b/site/public/v1/software/openpass/index.json @@ -0,0 +1,19 @@ +{ + "id": 7258, + "slug": "openpass", + "name": "Openpass", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17637605" + ], + "created_at": "2026-07-10T10:12:42.250431", + "updated_at": "2026-07-10T10:12:42.250431", + "url": "/v1/software/openpass" +} diff --git a/site/public/v1/software/openpec/index.json b/site/public/v1/software/openpec/index.json new file mode 100644 index 000000000000..e4d62d3c24e1 --- /dev/null +++ b/site/public/v1/software/openpec/index.json @@ -0,0 +1,19 @@ +{ + "id": 7259, + "slug": "openpec", + "name": "OpenPEC", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3882877" + ], + "created_at": "2026-07-10T10:12:42.250431", + "updated_at": "2026-07-10T10:12:42.250431", + "url": "/v1/software/openpec" +} diff --git a/site/public/v1/software/openpose/index.json b/site/public/v1/software/openpose/index.json new file mode 100644 index 000000000000..56140a41a970 --- /dev/null +++ b/site/public/v1/software/openpose/index.json @@ -0,0 +1,19 @@ +{ + "id": 7260, + "slug": "openpose", + "name": "OpenPose", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109595481" + ], + "created_at": "2026-07-10T10:12:42.251431", + "updated_at": "2026-07-10T10:12:42.251431", + "url": "/v1/software/openpose" +} diff --git a/site/public/v1/software/openprocurement/index.json b/site/public/v1/software/openprocurement/index.json new file mode 100644 index 000000000000..b615c9872f13 --- /dev/null +++ b/site/public/v1/software/openprocurement/index.json @@ -0,0 +1,23 @@ +{ + "id": 7261, + "slug": "openprocurement", + "name": "OpenProcurement", + "release_date": "2014-10-27", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Python" + ], + "licenses": [ + "Apache License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q27680220" + ], + "created_at": "2026-07-10T10:12:42.251431", + "updated_at": "2026-07-10T10:12:42.251431", + "url": "/v1/software/openprocurement" +} diff --git a/site/public/v1/software/openprofile/index.json b/site/public/v1/software/openprofile/index.json new file mode 100644 index 000000000000..61ec15c5ad4d --- /dev/null +++ b/site/public/v1/software/openprofile/index.json @@ -0,0 +1,21 @@ +{ + "id": 7262, + "slug": "openprofile", + "name": "OpenProfile", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "GNU General Public License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125929167" + ], + "created_at": "2026-07-10T10:12:42.251431", + "updated_at": "2026-07-10T10:12:42.251431", + "url": "/v1/software/openprofile" +} diff --git a/site/public/v1/software/openptk/index.json b/site/public/v1/software/openptk/index.json new file mode 100644 index 000000000000..21f4e84057c1 --- /dev/null +++ b/site/public/v1/software/openptk/index.json @@ -0,0 +1,19 @@ +{ + "id": 7263, + "slug": "openptk", + "name": "OpenPTK", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1224846" + ], + "created_at": "2026-07-10T10:12:42.252341", + "updated_at": "2026-07-10T10:12:42.252341", + "url": "/v1/software/openptk" +} diff --git a/site/public/v1/software/openqwaq/index.json b/site/public/v1/software/openqwaq/index.json new file mode 100644 index 000000000000..cc87f1192b76 --- /dev/null +++ b/site/public/v1/software/openqwaq/index.json @@ -0,0 +1,25 @@ +{ + "id": 7264, + "slug": "openqwaq", + "name": "OpenQwaq", + "release_date": "2011-01-01", + "developers": [ + "Alan Kay" + ], + "publishers": [], + "operating_systems": [ + "macOS" + ], + "programming_languages": [ + "Squeak" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7095860" + ], + "created_at": "2026-07-10T10:12:42.252341", + "updated_at": "2026-07-10T10:12:42.252341", + "url": "/v1/software/openqwaq" +} diff --git a/site/public/v1/software/openradioss/index.json b/site/public/v1/software/openradioss/index.json new file mode 100644 index 000000000000..27594f96fbf1 --- /dev/null +++ b/site/public/v1/software/openradioss/index.json @@ -0,0 +1,19 @@ +{ + "id": 7265, + "slug": "openradioss", + "name": "OpenRadioss", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137188712" + ], + "created_at": "2026-07-10T10:12:42.252341", + "updated_at": "2026-07-10T10:12:42.252341", + "url": "/v1/software/openradioss" +} diff --git a/site/public/v1/software/openscap/index.json b/site/public/v1/software/openscap/index.json new file mode 100644 index 000000000000..c84fb77c10c8 --- /dev/null +++ b/site/public/v1/software/openscap/index.json @@ -0,0 +1,19 @@ +{ + "id": 7266, + "slug": "openscap", + "name": "openscap", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975305" + ], + "created_at": "2026-07-10T10:12:42.253343", + "updated_at": "2026-07-10T10:12:42.253343", + "url": "/v1/software/openscap" +} diff --git a/site/public/v1/software/opensearch/index.json b/site/public/v1/software/opensearch/index.json new file mode 100644 index 000000000000..c94aa486d523 --- /dev/null +++ b/site/public/v1/software/opensearch/index.json @@ -0,0 +1,23 @@ +{ + "id": 7267, + "slug": "opensearch", + "name": "OpenSearch", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Java" + ], + "licenses": [ + "Apache Software License 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106497646" + ], + "created_at": "2026-07-10T10:12:42.253343", + "updated_at": "2026-07-10T10:12:42.253343", + "url": "/v1/software/opensearch" +} diff --git a/site/public/v1/software/opensees/index.json b/site/public/v1/software/opensees/index.json new file mode 100644 index 000000000000..6eea7e0300ec --- /dev/null +++ b/site/public/v1/software/opensees/index.json @@ -0,0 +1,21 @@ +{ + "id": 7268, + "slug": "opensees", + "name": "OpenSees", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "macOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7095877" + ], + "created_at": "2026-07-10T10:12:42.253343", + "updated_at": "2026-07-10T10:12:42.253343", + "url": "/v1/software/opensees" +} diff --git a/site/public/v1/software/opensl-es/index.json b/site/public/v1/software/opensl-es/index.json new file mode 100644 index 000000000000..aae3a302c5e6 --- /dev/null +++ b/site/public/v1/software/opensl-es/index.json @@ -0,0 +1,21 @@ +{ + "id": 7269, + "slug": "opensl-es", + "name": "OpenSL ES", + "release_date": null, + "developers": [ + "Khronos Group" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7095883" + ], + "created_at": "2026-07-10T10:12:42.254344", + "updated_at": "2026-07-10T10:12:42.254344", + "url": "/v1/software/opensl-es" +} diff --git a/site/public/v1/software/opensmile/index.json b/site/public/v1/software/opensmile/index.json new file mode 100644 index 000000000000..c1744f4fba3f --- /dev/null +++ b/site/public/v1/software/opensmile/index.json @@ -0,0 +1,19 @@ +{ + "id": 7270, + "slug": "opensmile", + "name": "OpenSMILE", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q31839990" + ], + "created_at": "2026-07-10T10:12:42.254344", + "updated_at": "2026-07-10T10:12:42.254344", + "url": "/v1/software/opensmile" +} diff --git a/site/public/v1/software/opensocial/index.json b/site/public/v1/software/opensocial/index.json new file mode 100644 index 000000000000..a2ce2224a044 --- /dev/null +++ b/site/public/v1/software/opensocial/index.json @@ -0,0 +1,23 @@ +{ + "id": 7271, + "slug": "opensocial", + "name": "OpenSocial", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Java" + ], + "licenses": [ + "Apache License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1423669" + ], + "created_at": "2026-07-10T10:12:42.254344", + "updated_at": "2026-07-10T10:12:42.254344", + "url": "/v1/software/opensocial" +} diff --git a/site/public/v1/software/opensso/index.json b/site/public/v1/software/opensso/index.json new file mode 100644 index 000000000000..173bcac0da6c --- /dev/null +++ b/site/public/v1/software/opensso/index.json @@ -0,0 +1,19 @@ +{ + "id": 7272, + "slug": "opensso", + "name": "OpenSSO", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1224849" + ], + "created_at": "2026-07-10T10:12:42.254344", + "updated_at": "2026-07-10T10:12:42.254344", + "url": "/v1/software/opensso" +} diff --git a/site/public/v1/software/opensymphony/index.json b/site/public/v1/software/opensymphony/index.json new file mode 100644 index 000000000000..91ef18ce8176 --- /dev/null +++ b/site/public/v1/software/opensymphony/index.json @@ -0,0 +1,19 @@ +{ + "id": 7273, + "slug": "opensymphony", + "name": "OpenSymphony", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1224850" + ], + "created_at": "2026-07-10T10:12:42.255342", + "updated_at": "2026-07-10T10:12:42.255342", + "url": "/v1/software/opensymphony" +} diff --git a/site/public/v1/software/opentheso/index.json b/site/public/v1/software/opentheso/index.json new file mode 100644 index 000000000000..a10a69c0a445 --- /dev/null +++ b/site/public/v1/software/opentheso/index.json @@ -0,0 +1,19 @@ +{ + "id": 7274, + "slug": "opentheso", + "name": "Opentheso", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084436" + ], + "created_at": "2026-07-10T10:12:42.255342", + "updated_at": "2026-07-10T10:12:42.255342", + "url": "/v1/software/opentheso" +} diff --git a/site/public/v1/software/opentimestamps/index.json b/site/public/v1/software/opentimestamps/index.json new file mode 100644 index 000000000000..e4895adb5400 --- /dev/null +++ b/site/public/v1/software/opentimestamps/index.json @@ -0,0 +1,22 @@ +{ + "id": 7275, + "slug": "opentimestamps", + "name": "OpenTimestamps", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Java", + "Python" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q43069765" + ], + "created_at": "2026-07-10T10:12:42.255342", + "updated_at": "2026-07-10T10:12:42.255342", + "url": "/v1/software/opentimestamps" +} diff --git a/site/public/v1/software/openvg/index.json b/site/public/v1/software/openvg/index.json new file mode 100644 index 000000000000..e8146696a3bf --- /dev/null +++ b/site/public/v1/software/openvg/index.json @@ -0,0 +1,21 @@ +{ + "id": 7276, + "slug": "openvg", + "name": "OpenVG", + "release_date": null, + "developers": [ + "Khronos Group" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q930132" + ], + "created_at": "2026-07-10T10:12:42.256467", + "updated_at": "2026-07-10T10:12:42.256467", + "url": "/v1/software/openvg" +} diff --git a/site/public/v1/software/openwebglobe/index.json b/site/public/v1/software/openwebglobe/index.json new file mode 100644 index 000000000000..c775d54d87b6 --- /dev/null +++ b/site/public/v1/software/openwebglobe/index.json @@ -0,0 +1,21 @@ +{ + "id": 7277, + "slug": "openwebglobe", + "name": "OpenWebGlobe", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7095905" + ], + "created_at": "2026-07-10T10:12:42.256467", + "updated_at": "2026-07-10T10:12:42.256467", + "url": "/v1/software/openwebglobe" +} diff --git a/site/public/v1/software/openwf/index.json b/site/public/v1/software/openwf/index.json new file mode 100644 index 000000000000..09c5ca53e455 --- /dev/null +++ b/site/public/v1/software/openwf/index.json @@ -0,0 +1,19 @@ +{ + "id": 7278, + "slug": "openwf", + "name": "OpenWF", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7095904" + ], + "created_at": "2026-07-10T10:12:42.256467", + "updated_at": "2026-07-10T10:12:42.256467", + "url": "/v1/software/openwf" +} diff --git a/site/public/v1/software/openwidget/index.json b/site/public/v1/software/openwidget/index.json new file mode 100644 index 000000000000..587142675f1b --- /dev/null +++ b/site/public/v1/software/openwidget/index.json @@ -0,0 +1,29 @@ +{ + "id": 7279, + "slug": "openwidget", + "name": "OpenWidget", + "release_date": null, + "developers": [ + "Text, Inc.", + "Text" + ], + "publishers": [ + "Text", + "Text, Inc." + ], + "operating_systems": [ + "web browser" + ], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139710697" + ], + "created_at": "2026-07-10T10:12:42.256467", + "updated_at": "2026-07-10T10:12:42.256467", + "url": "/v1/software/openwidget" +} diff --git a/site/public/v1/software/openworm/index.json b/site/public/v1/software/openworm/index.json new file mode 100644 index 000000000000..610b27e80fa7 --- /dev/null +++ b/site/public/v1/software/openworm/index.json @@ -0,0 +1,23 @@ +{ + "id": 7280, + "slug": "openworm", + "name": "OpenWorm", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Python" + ], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16000499" + ], + "created_at": "2026-07-10T10:12:42.257434", + "updated_at": "2026-07-10T10:12:42.257434", + "url": "/v1/software/openworm" +} diff --git a/site/public/v1/software/openxla/index.json b/site/public/v1/software/openxla/index.json new file mode 100644 index 000000000000..c8bb016de9bf --- /dev/null +++ b/site/public/v1/software/openxla/index.json @@ -0,0 +1,23 @@ +{ + "id": 7281, + "slug": "openxla", + "name": "OpenXLA", + "release_date": null, + "developers": [ + "Peter Hawkins" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Apache Software License 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117034645" + ], + "created_at": "2026-07-10T10:12:42.257434", + "updated_at": "2026-07-10T10:12:42.257434", + "url": "/v1/software/openxla" +} diff --git a/site/public/v1/software/openxlive/index.json b/site/public/v1/software/openxlive/index.json new file mode 100644 index 000000000000..b8716db49b11 --- /dev/null +++ b/site/public/v1/software/openxlive/index.json @@ -0,0 +1,19 @@ +{ + "id": 7282, + "slug": "openxlive", + "name": "OpenXLive", + "release_date": "2011-02-15", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7095916" + ], + "created_at": "2026-07-10T10:12:42.257434", + "updated_at": "2026-07-10T10:12:42.257434", + "url": "/v1/software/openxlive" +} diff --git a/site/public/v1/software/openxpki/index.json b/site/public/v1/software/openxpki/index.json new file mode 100644 index 000000000000..824b105fe5ef --- /dev/null +++ b/site/public/v1/software/openxpki/index.json @@ -0,0 +1,21 @@ +{ + "id": 7283, + "slug": "openxpki", + "name": "OpenXPKI", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Apache License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7095917" + ], + "created_at": "2026-07-10T10:12:42.258418", + "updated_at": "2026-07-10T10:12:42.258418", + "url": "/v1/software/openxpki" +} diff --git a/site/public/v1/software/openxr/index.json b/site/public/v1/software/openxr/index.json new file mode 100644 index 000000000000..0a51debcb43c --- /dev/null +++ b/site/public/v1/software/openxr/index.json @@ -0,0 +1,21 @@ +{ + "id": 7284, + "slug": "openxr", + "name": "OpenXR", + "release_date": null, + "developers": [ + "Khronos Group" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28957041" + ], + "created_at": "2026-07-10T10:12:42.258418", + "updated_at": "2026-07-10T10:12:42.258418", + "url": "/v1/software/openxr" +} diff --git a/site/public/v1/software/opera-dragonfly/index.json b/site/public/v1/software/opera-dragonfly/index.json new file mode 100644 index 000000000000..235f2fce1316 --- /dev/null +++ b/site/public/v1/software/opera-dragonfly/index.json @@ -0,0 +1,23 @@ +{ + "id": 7285, + "slug": "opera-dragonfly", + "name": "Opera Dragonfly", + "release_date": null, + "developers": [ + "Opera" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Apache License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7096589" + ], + "created_at": "2026-07-10T10:12:42.258418", + "updated_at": "2026-07-10T10:12:42.258418", + "url": "/v1/software/opera-dragonfly" +} diff --git a/site/public/v1/software/operation-time-research-software/index.json b/site/public/v1/software/operation-time-research-software/index.json new file mode 100644 index 000000000000..90f5b2c762e0 --- /dev/null +++ b/site/public/v1/software/operation-time-research-software/index.json @@ -0,0 +1,19 @@ +{ + "id": 7286, + "slug": "operation-time-research-software", + "name": "Operation Time Research Software", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17190201" + ], + "created_at": "2026-07-10T10:12:42.258418", + "updated_at": "2026-07-10T10:12:42.258418", + "url": "/v1/software/operation-time-research-software" +} diff --git a/site/public/v1/software/operator-s-cockpit/index.json b/site/public/v1/software/operator-s-cockpit/index.json new file mode 100644 index 000000000000..097ee85f040a --- /dev/null +++ b/site/public/v1/software/operator-s-cockpit/index.json @@ -0,0 +1,19 @@ +{ + "id": 7287, + "slug": "operator-s-cockpit", + "name": "Operator's Cockpit", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139856687" + ], + "created_at": "2026-07-10T10:12:42.259419", + "updated_at": "2026-07-10T10:12:42.259419", + "url": "/v1/software/operator-s-cockpit" +} diff --git a/site/public/v1/software/operator/index.json b/site/public/v1/software/operator/index.json new file mode 100644 index 000000000000..cf8ad2e5b70a --- /dev/null +++ b/site/public/v1/software/operator/index.json @@ -0,0 +1,19 @@ +{ + "id": 7288, + "slug": "operator", + "name": "Operator", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3354090" + ], + "created_at": "2026-07-10T10:12:42.259419", + "updated_at": "2026-07-10T10:12:42.259419", + "url": "/v1/software/operator" +} diff --git a/site/public/v1/software/opero/index.json b/site/public/v1/software/opero/index.json new file mode 100644 index 000000000000..1d002206c5f9 --- /dev/null +++ b/site/public/v1/software/opero/index.json @@ -0,0 +1,23 @@ +{ + "id": 7289, + "slug": "opero", + "name": "Opero", + "release_date": null, + "developers": [ + "Opero" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "TypeScript" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138767941" + ], + "created_at": "2026-07-10T10:12:42.260415", + "updated_at": "2026-07-10T10:12:42.260415", + "url": "/v1/software/opero" +} diff --git a/site/public/v1/software/opertoon/index.json b/site/public/v1/software/opertoon/index.json new file mode 100644 index 000000000000..3aa518910bb7 --- /dev/null +++ b/site/public/v1/software/opertoon/index.json @@ -0,0 +1,19 @@ +{ + "id": 7290, + "slug": "opertoon", + "name": "Opertoon", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125523495" + ], + "created_at": "2026-07-10T10:12:42.260415", + "updated_at": "2026-07-10T10:12:42.260415", + "url": "/v1/software/opertoon" +} diff --git a/site/public/v1/software/opik/index.json b/site/public/v1/software/opik/index.json new file mode 100644 index 000000000000..82e3f3bf16c5 --- /dev/null +++ b/site/public/v1/software/opik/index.json @@ -0,0 +1,23 @@ +{ + "id": 7291, + "slug": "opik", + "name": "Opik", + "release_date": null, + "developers": [ + "Comet" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Apache Software License 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138499256" + ], + "created_at": "2026-07-10T10:12:42.260415", + "updated_at": "2026-07-10T10:12:42.260415", + "url": "/v1/software/opik" +} diff --git a/site/public/v1/software/opsin/index.json b/site/public/v1/software/opsin/index.json new file mode 100644 index 000000000000..76b08099e9ab --- /dev/null +++ b/site/public/v1/software/opsin/index.json @@ -0,0 +1,19 @@ +{ + "id": 7292, + "slug": "opsin", + "name": "OPSIN", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q26481302" + ], + "created_at": "2026-07-10T10:12:42.260415", + "updated_at": "2026-07-10T10:12:42.260415", + "url": "/v1/software/opsin" +} diff --git a/site/public/v1/software/opspuls/index.json b/site/public/v1/software/opspuls/index.json new file mode 100644 index 000000000000..ca4c281fb88c --- /dev/null +++ b/site/public/v1/software/opspuls/index.json @@ -0,0 +1,19 @@ +{ + "id": 7293, + "slug": "opspuls", + "name": "OpsPuls", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140356809" + ], + "created_at": "2026-07-10T10:12:42.261453", + "updated_at": "2026-07-10T10:12:42.261453", + "url": "/v1/software/opspuls" +} diff --git a/site/public/v1/software/opteamus/index.json b/site/public/v1/software/opteamus/index.json new file mode 100644 index 000000000000..bbcabe336944 --- /dev/null +++ b/site/public/v1/software/opteamus/index.json @@ -0,0 +1,21 @@ +{ + "id": 7294, + "slug": "opteamus", + "name": "Opteamus", + "release_date": null, + "developers": [ + "Alpha Consulting 1996 Kft." + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137796133" + ], + "created_at": "2026-07-10T10:12:42.261453", + "updated_at": "2026-07-10T10:12:42.261453", + "url": "/v1/software/opteamus" +} diff --git a/site/public/v1/software/optex/index.json b/site/public/v1/software/optex/index.json new file mode 100644 index 000000000000..862659f11f2e --- /dev/null +++ b/site/public/v1/software/optex/index.json @@ -0,0 +1,19 @@ +{ + "id": 7295, + "slug": "optex", + "name": "OpTeX", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124577022" + ], + "created_at": "2026-07-10T10:12:42.262446", + "updated_at": "2026-07-10T10:12:42.262446", + "url": "/v1/software/optex" +} diff --git a/site/public/v1/software/opti-bet/index.json b/site/public/v1/software/opti-bet/index.json new file mode 100644 index 000000000000..b770ddfb302b --- /dev/null +++ b/site/public/v1/software/opti-bet/index.json @@ -0,0 +1,19 @@ +{ + "id": 7296, + "slug": "opti-bet", + "name": "Opti-Bet", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121631706" + ], + "created_at": "2026-07-10T10:12:42.262446", + "updated_at": "2026-07-10T10:12:42.262446", + "url": "/v1/software/opti-bet" +} diff --git a/site/public/v1/software/optica-optics-software/index.json b/site/public/v1/software/optica-optics-software/index.json new file mode 100644 index 000000000000..4d5fbe80cb85 --- /dev/null +++ b/site/public/v1/software/optica-optics-software/index.json @@ -0,0 +1,19 @@ +{ + "id": 7297, + "slug": "optica-optics-software", + "name": "Optica Optics Software", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25303687" + ], + "created_at": "2026-07-10T10:12:42.262446", + "updated_at": "2026-07-10T10:12:42.262446", + "url": "/v1/software/optica-optics-software" +} diff --git a/site/public/v1/software/optics-software-for-layout-and-optimization/index.json b/site/public/v1/software/optics-software-for-layout-and-optimization/index.json new file mode 100644 index 000000000000..792b6a4c3765 --- /dev/null +++ b/site/public/v1/software/optics-software-for-layout-and-optimization/index.json @@ -0,0 +1,19 @@ +{ + "id": 7298, + "slug": "optics-software-for-layout-and-optimization", + "name": "Optics Software for Layout and Optimization", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7098919" + ], + "created_at": "2026-07-10T10:12:42.263411", + "updated_at": "2026-07-10T10:12:42.263411", + "url": "/v1/software/optics-software-for-layout-and-optimization" +} diff --git a/site/public/v1/software/optimalj/index.json b/site/public/v1/software/optimalj/index.json new file mode 100644 index 000000000000..74427babdea1 --- /dev/null +++ b/site/public/v1/software/optimalj/index.json @@ -0,0 +1,19 @@ +{ + "id": 7299, + "slug": "optimalj", + "name": "OptimalJ", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7098934" + ], + "created_at": "2026-07-10T10:12:42.263411", + "updated_at": "2026-07-10T10:12:42.263411", + "url": "/v1/software/optimalj" +} diff --git a/site/public/v1/software/optimization-toolbox/index.json b/site/public/v1/software/optimization-toolbox/index.json new file mode 100644 index 000000000000..820773241f4a --- /dev/null +++ b/site/public/v1/software/optimization-toolbox/index.json @@ -0,0 +1,21 @@ +{ + "id": 7300, + "slug": "optimization-toolbox", + "name": "Optimization Toolbox", + "release_date": null, + "developers": [ + "MathWorks" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17086474" + ], + "created_at": "2026-07-10T10:12:42.263411", + "updated_at": "2026-07-10T10:12:42.263411", + "url": "/v1/software/optimization-toolbox" +} diff --git a/site/public/v1/software/optislang/index.json b/site/public/v1/software/optislang/index.json new file mode 100644 index 000000000000..2d234af5cb89 --- /dev/null +++ b/site/public/v1/software/optislang/index.json @@ -0,0 +1,19 @@ +{ + "id": 7301, + "slug": "optislang", + "name": "OptiSLang", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18412027" + ], + "created_at": "2026-07-10T10:12:42.264451", + "updated_at": "2026-07-10T10:12:42.264451", + "url": "/v1/software/optislang" +} diff --git a/site/public/v1/software/optix-pro/index.json b/site/public/v1/software/optix-pro/index.json new file mode 100644 index 000000000000..bc59c3f30e01 --- /dev/null +++ b/site/public/v1/software/optix-pro/index.json @@ -0,0 +1,19 @@ +{ + "id": 7302, + "slug": "optix-pro", + "name": "Optix Pro", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q545698" + ], + "created_at": "2026-07-10T10:12:42.264451", + "updated_at": "2026-07-10T10:12:42.264451", + "url": "/v1/software/optix-pro" +} diff --git a/site/public/v1/software/optix/index.json b/site/public/v1/software/optix/index.json new file mode 100644 index 000000000000..f6c29601e5fb --- /dev/null +++ b/site/public/v1/software/optix/index.json @@ -0,0 +1,24 @@ +{ + "id": 7303, + "slug": "optix", + "name": "OptiX", + "release_date": null, + "developers": [ + "Nvidia" + ], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4045938" + ], + "created_at": "2026-07-10T10:12:42.264451", + "updated_at": "2026-07-10T10:12:42.264451", + "url": "/v1/software/optix" +} diff --git a/site/public/v1/software/optquest/index.json b/site/public/v1/software/optquest/index.json new file mode 100644 index 000000000000..02b60ae297f4 --- /dev/null +++ b/site/public/v1/software/optquest/index.json @@ -0,0 +1,19 @@ +{ + "id": 7304, + "slug": "optquest", + "name": "OptQuest", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q128619958" + ], + "created_at": "2026-07-10T10:12:42.264451", + "updated_at": "2026-07-10T10:12:42.264451", + "url": "/v1/software/optquest" +} diff --git a/site/public/v1/software/opus-computer-based-conversation-system/index.json b/site/public/v1/software/opus-computer-based-conversation-system/index.json new file mode 100644 index 000000000000..a814826e8f45 --- /dev/null +++ b/site/public/v1/software/opus-computer-based-conversation-system/index.json @@ -0,0 +1,19 @@ +{ + "id": 7305, + "slug": "opus-computer-based-conversation-system", + "name": "Opus Computer Based Conversation System", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q29167825" + ], + "created_at": "2026-07-10T10:12:42.265509", + "updated_at": "2026-07-10T10:12:42.265509", + "url": "/v1/software/opus-computer-based-conversation-system" +} diff --git a/site/public/v1/software/opus-q29364572/index.json b/site/public/v1/software/opus-q29364572/index.json new file mode 100644 index 000000000000..c38ab2103cf1 --- /dev/null +++ b/site/public/v1/software/opus-q29364572/index.json @@ -0,0 +1,19 @@ +{ + "id": 7306, + "slug": "opus-q29364572", + "name": "OPUS", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q29364572" + ], + "created_at": "2026-07-10T10:12:42.265509", + "updated_at": "2026-07-10T10:12:42.265509", + "url": "/v1/software/opus-q29364572" +} diff --git a/site/public/v1/software/opus/index.json b/site/public/v1/software/opus/index.json new file mode 100644 index 000000000000..bae0e75e2d12 --- /dev/null +++ b/site/public/v1/software/opus/index.json @@ -0,0 +1,21 @@ +{ + "id": 7307, + "slug": "opus", + "name": "OPUS", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "free software" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q12041815" + ], + "created_at": "2026-07-10T10:12:42.265509", + "updated_at": "2026-07-10T10:12:42.265509", + "url": "/v1/software/opus" +} diff --git a/site/public/v1/software/opusmodus/index.json b/site/public/v1/software/opusmodus/index.json new file mode 100644 index 000000000000..fca50e601ade --- /dev/null +++ b/site/public/v1/software/opusmodus/index.json @@ -0,0 +1,19 @@ +{ + "id": 7308, + "slug": "opusmodus", + "name": "Opusmodus", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131742745" + ], + "created_at": "2026-07-10T10:12:42.266344", + "updated_at": "2026-07-10T10:12:42.266344", + "url": "/v1/software/opusmodus" +} diff --git a/site/public/v1/software/or-tools/index.json b/site/public/v1/software/or-tools/index.json new file mode 100644 index 000000000000..dee38064b1b8 --- /dev/null +++ b/site/public/v1/software/or-tools/index.json @@ -0,0 +1,22 @@ +{ + "id": 7309, + "slug": "or-tools", + "name": "OR-Tools", + "release_date": null, + "developers": [ + "Corentin Le Molgat", + "Laurent Perron" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108872465" + ], + "created_at": "2026-07-10T10:12:42.266344", + "updated_at": "2026-07-10T10:12:42.266344", + "url": "/v1/software/or-tools" +} diff --git a/site/public/v1/software/oracle-adaptive-access-manager/index.json b/site/public/v1/software/oracle-adaptive-access-manager/index.json new file mode 100644 index 000000000000..6bbebda04088 --- /dev/null +++ b/site/public/v1/software/oracle-adaptive-access-manager/index.json @@ -0,0 +1,23 @@ +{ + "id": 7310, + "slug": "oracle-adaptive-access-manager", + "name": "Oracle Adaptive Access Manager", + "release_date": null, + "developers": [ + "Oracle Corporation" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7099238" + ], + "created_at": "2026-07-10T10:12:42.267343", + "updated_at": "2026-07-10T10:12:42.267343", + "url": "/v1/software/oracle-adaptive-access-manager" +} diff --git a/site/public/v1/software/oracle-advanced-security/index.json b/site/public/v1/software/oracle-advanced-security/index.json new file mode 100644 index 000000000000..c61a63f88245 --- /dev/null +++ b/site/public/v1/software/oracle-advanced-security/index.json @@ -0,0 +1,23 @@ +{ + "id": 7311, + "slug": "oracle-advanced-security", + "name": "Oracle Advanced Security", + "release_date": null, + "developers": [ + "Oracle Corporation" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7099240" + ], + "created_at": "2026-07-10T10:12:42.267343", + "updated_at": "2026-07-10T10:12:42.267343", + "url": "/v1/software/oracle-advanced-security" +} diff --git a/site/public/v1/software/oracle-advertising-and-customer-experience/index.json b/site/public/v1/software/oracle-advertising-and-customer-experience/index.json new file mode 100644 index 000000000000..9652b53a68f0 --- /dev/null +++ b/site/public/v1/software/oracle-advertising-and-customer-experience/index.json @@ -0,0 +1,21 @@ +{ + "id": 7312, + "slug": "oracle-advertising-and-customer-experience", + "name": "Oracle Advertising and Customer Experience", + "release_date": null, + "developers": [ + "Oracle Corporation" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107313664" + ], + "created_at": "2026-07-10T10:12:42.267343", + "updated_at": "2026-07-10T10:12:42.267343", + "url": "/v1/software/oracle-advertising-and-customer-experience" +} diff --git a/site/public/v1/software/oracle-bi-publisher/index.json b/site/public/v1/software/oracle-bi-publisher/index.json new file mode 100644 index 000000000000..e0f669526482 --- /dev/null +++ b/site/public/v1/software/oracle-bi-publisher/index.json @@ -0,0 +1,21 @@ +{ + "id": 7313, + "slug": "oracle-bi-publisher", + "name": "Oracle BI Publisher", + "release_date": null, + "developers": [ + "Oracle Corporation" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7099244" + ], + "created_at": "2026-07-10T10:12:42.267343", + "updated_at": "2026-07-10T10:12:42.267343", + "url": "/v1/software/oracle-bi-publisher" +} diff --git a/site/public/v1/software/oracle-business-intelligence-suite-enterprise-edition/index.json b/site/public/v1/software/oracle-business-intelligence-suite-enterprise-edition/index.json new file mode 100644 index 000000000000..7e246b3ead66 --- /dev/null +++ b/site/public/v1/software/oracle-business-intelligence-suite-enterprise-edition/index.json @@ -0,0 +1,23 @@ +{ + "id": 7314, + "slug": "oracle-business-intelligence-suite-enterprise-edition", + "name": "Oracle Business Intelligence Suite Enterprise Edition", + "release_date": null, + "developers": [ + "Oracle Corporation" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7099251" + ], + "created_at": "2026-07-10T10:12:42.268342", + "updated_at": "2026-07-10T10:12:42.268342", + "url": "/v1/software/oracle-business-intelligence-suite-enterprise-edition" +} diff --git a/site/public/v1/software/oracle-content-management/index.json b/site/public/v1/software/oracle-content-management/index.json new file mode 100644 index 000000000000..d0790cdf66a4 --- /dev/null +++ b/site/public/v1/software/oracle-content-management/index.json @@ -0,0 +1,21 @@ +{ + "id": 7315, + "slug": "oracle-content-management", + "name": "Oracle Content Management", + "release_date": null, + "developers": [ + "Oracle Corporation" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112143215" + ], + "created_at": "2026-07-10T10:12:42.268342", + "updated_at": "2026-07-10T10:12:42.268342", + "url": "/v1/software/oracle-content-management" +} diff --git a/site/public/v1/software/oracle-data-guard/index.json b/site/public/v1/software/oracle-data-guard/index.json new file mode 100644 index 000000000000..a16e754962e3 --- /dev/null +++ b/site/public/v1/software/oracle-data-guard/index.json @@ -0,0 +1,21 @@ +{ + "id": 7316, + "slug": "oracle-data-guard", + "name": "Oracle Data Guard", + "release_date": null, + "developers": [ + "Oracle Corporation" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2027927" + ], + "created_at": "2026-07-10T10:12:42.268342", + "updated_at": "2026-07-10T10:12:42.268342", + "url": "/v1/software/oracle-data-guard" +} diff --git a/site/public/v1/software/oracle-data-integrator/index.json b/site/public/v1/software/oracle-data-integrator/index.json new file mode 100644 index 000000000000..433602a601bf --- /dev/null +++ b/site/public/v1/software/oracle-data-integrator/index.json @@ -0,0 +1,21 @@ +{ + "id": 7317, + "slug": "oracle-data-integrator", + "name": "Oracle Data Integrator", + "release_date": null, + "developers": [ + "Oracle Corporation" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18154822" + ], + "created_at": "2026-07-10T10:12:42.269339", + "updated_at": "2026-07-10T10:12:42.269339", + "url": "/v1/software/oracle-data-integrator" +} diff --git a/site/public/v1/software/oracle-data-mining/index.json b/site/public/v1/software/oracle-data-mining/index.json new file mode 100644 index 000000000000..1489b7cbd3a6 --- /dev/null +++ b/site/public/v1/software/oracle-data-mining/index.json @@ -0,0 +1,21 @@ +{ + "id": 7318, + "slug": "oracle-data-mining", + "name": "Oracle Data Mining", + "release_date": null, + "developers": [ + "Oracle Corporation" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7099259" + ], + "created_at": "2026-07-10T10:12:42.269339", + "updated_at": "2026-07-10T10:12:42.269339", + "url": "/v1/software/oracle-data-mining" +} diff --git a/site/public/v1/software/oracle-designer/index.json b/site/public/v1/software/oracle-designer/index.json new file mode 100644 index 000000000000..dc8349d48679 --- /dev/null +++ b/site/public/v1/software/oracle-designer/index.json @@ -0,0 +1,21 @@ +{ + "id": 7319, + "slug": "oracle-designer", + "name": "Oracle Designer", + "release_date": null, + "developers": [ + "Oracle Corporation" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7099261" + ], + "created_at": "2026-07-10T10:12:42.269339", + "updated_at": "2026-07-10T10:12:42.269339", + "url": "/v1/software/oracle-designer" +} diff --git a/site/public/v1/software/oracle-discoverer/index.json b/site/public/v1/software/oracle-discoverer/index.json new file mode 100644 index 000000000000..c83e561c149b --- /dev/null +++ b/site/public/v1/software/oracle-discoverer/index.json @@ -0,0 +1,23 @@ +{ + "id": 7320, + "slug": "oracle-discoverer", + "name": "Oracle Discoverer", + "release_date": null, + "developers": [ + "Oracle Corporation" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Java" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7099262" + ], + "created_at": "2026-07-10T10:12:42.269339", + "updated_at": "2026-07-10T10:12:42.269339", + "url": "/v1/software/oracle-discoverer" +} diff --git a/site/public/v1/software/oracle-enterprise-manager-ops-center/index.json b/site/public/v1/software/oracle-enterprise-manager-ops-center/index.json new file mode 100644 index 000000000000..d549984f553b --- /dev/null +++ b/site/public/v1/software/oracle-enterprise-manager-ops-center/index.json @@ -0,0 +1,23 @@ +{ + "id": 7321, + "slug": "oracle-enterprise-manager-ops-center", + "name": "Oracle Enterprise Manager Ops Center", + "release_date": null, + "developers": [ + "Sun Microsystems" + ], + "publishers": [], + "operating_systems": [ + "Solaris" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7099267" + ], + "created_at": "2026-07-10T10:12:42.270342", + "updated_at": "2026-07-10T10:12:42.270342", + "url": "/v1/software/oracle-enterprise-manager-ops-center" +} diff --git a/site/public/v1/software/oracle-enterprise-pack-for-eclipse/index.json b/site/public/v1/software/oracle-enterprise-pack-for-eclipse/index.json new file mode 100644 index 000000000000..15021edd78bc --- /dev/null +++ b/site/public/v1/software/oracle-enterprise-pack-for-eclipse/index.json @@ -0,0 +1,21 @@ +{ + "id": 7322, + "slug": "oracle-enterprise-pack-for-eclipse", + "name": "Oracle Enterprise Pack for Eclipse", + "release_date": null, + "developers": [ + "Oracle Corporation" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7099268" + ], + "created_at": "2026-07-10T10:12:42.270342", + "updated_at": "2026-07-10T10:12:42.270342", + "url": "/v1/software/oracle-enterprise-pack-for-eclipse" +} diff --git a/site/public/v1/software/oracle-financial-services-software/index.json b/site/public/v1/software/oracle-financial-services-software/index.json new file mode 100644 index 000000000000..2e74f35e94f6 --- /dev/null +++ b/site/public/v1/software/oracle-financial-services-software/index.json @@ -0,0 +1,19 @@ +{ + "id": 7323, + "slug": "oracle-financial-services-software", + "name": "Oracle Financial Services Software", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q285352" + ], + "created_at": "2026-07-10T10:12:42.270342", + "updated_at": "2026-07-10T10:12:42.270342", + "url": "/v1/software/oracle-financial-services-software" +} diff --git a/site/public/v1/software/oracle-fusion-architecture/index.json b/site/public/v1/software/oracle-fusion-architecture/index.json new file mode 100644 index 000000000000..de414e1125d6 --- /dev/null +++ b/site/public/v1/software/oracle-fusion-architecture/index.json @@ -0,0 +1,19 @@ +{ + "id": 7324, + "slug": "oracle-fusion-architecture", + "name": "Oracle Fusion Architecture", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7099272" + ], + "created_at": "2026-07-10T10:12:42.271342", + "updated_at": "2026-07-10T10:12:42.271342", + "url": "/v1/software/oracle-fusion-architecture" +} diff --git a/site/public/v1/software/oracle-hcm-cloud/index.json b/site/public/v1/software/oracle-hcm-cloud/index.json new file mode 100644 index 000000000000..27f3004cd2e9 --- /dev/null +++ b/site/public/v1/software/oracle-hcm-cloud/index.json @@ -0,0 +1,21 @@ +{ + "id": 7325, + "slug": "oracle-hcm-cloud", + "name": "Oracle HCM Cloud", + "release_date": null, + "developers": [ + "Oracle Corporation" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60771963" + ], + "created_at": "2026-07-10T10:12:42.271342", + "updated_at": "2026-07-10T10:12:42.271342", + "url": "/v1/software/oracle-hcm-cloud" +} diff --git a/site/public/v1/software/oracle-net-services/index.json b/site/public/v1/software/oracle-net-services/index.json new file mode 100644 index 000000000000..e115e0c68fae --- /dev/null +++ b/site/public/v1/software/oracle-net-services/index.json @@ -0,0 +1,23 @@ +{ + "id": 7326, + "slug": "oracle-net-services", + "name": "Oracle Net Services", + "release_date": null, + "developers": [ + "Oracle Corporation" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7099283" + ], + "created_at": "2026-07-10T10:12:42.271342", + "updated_at": "2026-07-10T10:12:42.271342", + "url": "/v1/software/oracle-net-services" +} diff --git a/site/public/v1/software/oracle-nosql-database/index.json b/site/public/v1/software/oracle-nosql-database/index.json new file mode 100644 index 000000000000..73f027dc9fd0 --- /dev/null +++ b/site/public/v1/software/oracle-nosql-database/index.json @@ -0,0 +1,25 @@ +{ + "id": 7327, + "slug": "oracle-nosql-database", + "name": "Oracle NoSQL Database", + "release_date": null, + "developers": [ + "Oracle Corporation" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Java" + ], + "licenses": [ + "Apache License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7099284" + ], + "created_at": "2026-07-10T10:12:42.271342", + "updated_at": "2026-07-10T10:12:42.271342", + "url": "/v1/software/oracle-nosql-database" +} diff --git a/site/public/v1/software/oracle-olap/index.json b/site/public/v1/software/oracle-olap/index.json new file mode 100644 index 000000000000..e079cdfeaad8 --- /dev/null +++ b/site/public/v1/software/oracle-olap/index.json @@ -0,0 +1,19 @@ +{ + "id": 7328, + "slug": "oracle-olap", + "name": "Oracle OLAP", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7099285" + ], + "created_at": "2026-07-10T10:12:42.272431", + "updated_at": "2026-07-10T10:12:42.272431", + "url": "/v1/software/oracle-olap" +} diff --git a/site/public/v1/software/oracle-spatial/index.json b/site/public/v1/software/oracle-spatial/index.json new file mode 100644 index 000000000000..50b5cfdcb0d1 --- /dev/null +++ b/site/public/v1/software/oracle-spatial/index.json @@ -0,0 +1,23 @@ +{ + "id": 7329, + "slug": "oracle-spatial", + "name": "Oracle Spatial", + "release_date": null, + "developers": [ + "Oracle Corporation" + ], + "publishers": [], + "operating_systems": [ + "cross-platform" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3508244" + ], + "created_at": "2026-07-10T10:12:42.272431", + "updated_at": "2026-07-10T10:12:42.272431", + "url": "/v1/software/oracle-spatial" +} diff --git a/site/public/v1/software/oracle-toplink/index.json b/site/public/v1/software/oracle-toplink/index.json new file mode 100644 index 000000000000..9a9c96312e63 --- /dev/null +++ b/site/public/v1/software/oracle-toplink/index.json @@ -0,0 +1,23 @@ +{ + "id": 7330, + "slug": "oracle-toplink", + "name": "Oracle TopLink", + "release_date": null, + "developers": [ + "Oracle Corporation" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Java" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28956371" + ], + "created_at": "2026-07-10T10:12:42.272431", + "updated_at": "2026-07-10T10:12:42.272431", + "url": "/v1/software/oracle-toplink" +} diff --git a/site/public/v1/software/oracle-vdi/index.json b/site/public/v1/software/oracle-vdi/index.json new file mode 100644 index 000000000000..80f3e497afb5 --- /dev/null +++ b/site/public/v1/software/oracle-vdi/index.json @@ -0,0 +1,21 @@ +{ + "id": 7331, + "slug": "oracle-vdi", + "name": "Oracle VDI", + "release_date": null, + "developers": [ + "Sun Microsystems" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7099303" + ], + "created_at": "2026-07-10T10:12:42.273412", + "updated_at": "2026-07-10T10:12:42.273412", + "url": "/v1/software/oracle-vdi" +} diff --git a/site/public/v1/software/oracle-vm/index.json b/site/public/v1/software/oracle-vm/index.json new file mode 100644 index 000000000000..8597ac3c87d4 --- /dev/null +++ b/site/public/v1/software/oracle-vm/index.json @@ -0,0 +1,21 @@ +{ + "id": 7332, + "slug": "oracle-vm", + "name": "Oracle VM", + "release_date": null, + "developers": [ + "Oracle Corporation" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10852040" + ], + "created_at": "2026-07-10T10:12:42.273412", + "updated_at": "2026-07-10T10:12:42.273412", + "url": "/v1/software/oracle-vm" +} diff --git a/site/public/v1/software/oracle-warehouse-builder/index.json b/site/public/v1/software/oracle-warehouse-builder/index.json new file mode 100644 index 000000000000..e7bb840e4b72 --- /dev/null +++ b/site/public/v1/software/oracle-warehouse-builder/index.json @@ -0,0 +1,21 @@ +{ + "id": 7333, + "slug": "oracle-warehouse-builder", + "name": "Oracle Warehouse Builder", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3354986" + ], + "created_at": "2026-07-10T10:12:42.273412", + "updated_at": "2026-07-10T10:12:42.273412", + "url": "/v1/software/oracle-warehouse-builder" +} diff --git a/site/public/v1/software/oracle-zero-data-loss-recovery-appliance/index.json b/site/public/v1/software/oracle-zero-data-loss-recovery-appliance/index.json new file mode 100644 index 000000000000..d1187d9a8a70 --- /dev/null +++ b/site/public/v1/software/oracle-zero-data-loss-recovery-appliance/index.json @@ -0,0 +1,19 @@ +{ + "id": 7334, + "slug": "oracle-zero-data-loss-recovery-appliance", + "name": "Oracle Zero Data Loss Recovery Appliance", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60741261" + ], + "created_at": "2026-07-10T10:12:42.273412", + "updated_at": "2026-07-10T10:12:42.273412", + "url": "/v1/software/oracle-zero-data-loss-recovery-appliance" +} diff --git a/site/public/v1/software/oracle-zfs/index.json b/site/public/v1/software/oracle-zfs/index.json new file mode 100644 index 000000000000..3dbdfee51154 --- /dev/null +++ b/site/public/v1/software/oracle-zfs/index.json @@ -0,0 +1,21 @@ +{ + "id": 7335, + "slug": "oracle-zfs", + "name": "Oracle ZFS", + "release_date": "2006-01-01", + "developers": [ + "Oracle Corporation" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q54958953" + ], + "created_at": "2026-07-10T10:12:42.274415", + "updated_at": "2026-07-10T10:12:42.274415", + "url": "/v1/software/oracle-zfs" +} diff --git a/site/public/v1/software/oragent/index.json b/site/public/v1/software/oragent/index.json new file mode 100644 index 000000000000..2f2830de8efc --- /dev/null +++ b/site/public/v1/software/oragent/index.json @@ -0,0 +1,23 @@ +{ + "id": 7336, + "slug": "oragent", + "name": "Oragent", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "macOS" + ], + "programming_languages": [ + "Python" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140135921" + ], + "created_at": "2026-07-10T10:12:42.274415", + "updated_at": "2026-07-10T10:12:42.274415", + "url": "/v1/software/oragent" +} diff --git a/site/public/v1/software/oral-history-metadata-synchronizer/index.json b/site/public/v1/software/oral-history-metadata-synchronizer/index.json new file mode 100644 index 000000000000..1a46f3d102d0 --- /dev/null +++ b/site/public/v1/software/oral-history-metadata-synchronizer/index.json @@ -0,0 +1,19 @@ +{ + "id": 7337, + "slug": "oral-history-metadata-synchronizer", + "name": "Oral History Metadata Synchronizer", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17073327" + ], + "created_at": "2026-07-10T10:12:42.274415", + "updated_at": "2026-07-10T10:12:42.274415", + "url": "/v1/software/oral-history-metadata-synchronizer" +} diff --git a/site/public/v1/software/orange/index.json b/site/public/v1/software/orange/index.json new file mode 100644 index 000000000000..32765ec81690 --- /dev/null +++ b/site/public/v1/software/orange/index.json @@ -0,0 +1,19 @@ +{ + "id": 7338, + "slug": "orange", + "name": "Orange", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084437" + ], + "created_at": "2026-07-10T10:12:42.275428", + "updated_at": "2026-07-10T10:12:42.275428", + "url": "/v1/software/orange" +} diff --git a/site/public/v1/software/orb/index.json b/site/public/v1/software/orb/index.json new file mode 100644 index 000000000000..be08b23d926a --- /dev/null +++ b/site/public/v1/software/orb/index.json @@ -0,0 +1,19 @@ +{ + "id": 7339, + "slug": "orb", + "name": "Orb", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3355177" + ], + "created_at": "2026-07-10T10:12:42.275428", + "updated_at": "2026-07-10T10:12:42.275428", + "url": "/v1/software/orb" +} diff --git a/site/public/v1/software/orbexpress/index.json b/site/public/v1/software/orbexpress/index.json new file mode 100644 index 000000000000..8224b13a20f9 --- /dev/null +++ b/site/public/v1/software/orbexpress/index.json @@ -0,0 +1,21 @@ +{ + "id": 7340, + "slug": "orbexpress", + "name": "ORBexpress", + "release_date": null, + "developers": [ + "Objective Interface Systems" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q20875780" + ], + "created_at": "2026-07-10T10:12:42.275428", + "updated_at": "2026-07-10T10:12:42.275428", + "url": "/v1/software/orbexpress" +} diff --git a/site/public/v1/software/orbit-home/index.json b/site/public/v1/software/orbit-home/index.json new file mode 100644 index 000000000000..12261b410f4d --- /dev/null +++ b/site/public/v1/software/orbit-home/index.json @@ -0,0 +1,21 @@ +{ + "id": 7341, + "slug": "orbit-home", + "name": "orbit@home", + "release_date": null, + "developers": [ + "National Aeronautics and Space Administration" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2005355" + ], + "created_at": "2026-07-10T10:12:42.276429", + "updated_at": "2026-07-10T10:12:42.276429", + "url": "/v1/software/orbit-home" +} diff --git a/site/public/v1/software/orbitron/index.json b/site/public/v1/software/orbitron/index.json new file mode 100644 index 000000000000..9b181fa6c718 --- /dev/null +++ b/site/public/v1/software/orbitron/index.json @@ -0,0 +1,19 @@ +{ + "id": 7342, + "slug": "orbitron", + "name": "Orbitron", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11798909" + ], + "created_at": "2026-07-10T10:12:42.276429", + "updated_at": "2026-07-10T10:12:42.276429", + "url": "/v1/software/orbitron" +} diff --git a/site/public/v1/software/orbix/index.json b/site/public/v1/software/orbix/index.json new file mode 100644 index 000000000000..30577a65abb3 --- /dev/null +++ b/site/public/v1/software/orbix/index.json @@ -0,0 +1,19 @@ +{ + "id": 7343, + "slug": "orbix", + "name": "Orbix", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4045955" + ], + "created_at": "2026-07-10T10:12:42.276429", + "updated_at": "2026-07-10T10:12:42.276429", + "url": "/v1/software/orbix" +} diff --git a/site/public/v1/software/orfo/index.json b/site/public/v1/software/orfo/index.json new file mode 100644 index 000000000000..daec5b43c373 --- /dev/null +++ b/site/public/v1/software/orfo/index.json @@ -0,0 +1,19 @@ +{ + "id": 7344, + "slug": "orfo", + "name": "ORFO", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4337236" + ], + "created_at": "2026-07-10T10:12:42.277398", + "updated_at": "2026-07-10T10:12:42.277398", + "url": "/v1/software/orfo" +} diff --git a/site/public/v1/software/orgavision/index.json b/site/public/v1/software/orgavision/index.json new file mode 100644 index 000000000000..5650dabd1141 --- /dev/null +++ b/site/public/v1/software/orgavision/index.json @@ -0,0 +1,21 @@ +{ + "id": 7345, + "slug": "orgavision", + "name": "Orgavision", + "release_date": "2009-01-01", + "developers": [], + "publishers": [], + "operating_systems": [ + "cross-platform" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138347999" + ], + "created_at": "2026-07-10T10:12:42.277398", + "updated_at": "2026-07-10T10:12:42.277398", + "url": "/v1/software/orgavision" +} diff --git a/site/public/v1/software/origami-studio/index.json b/site/public/v1/software/origami-studio/index.json new file mode 100644 index 000000000000..35a5cd97eaad --- /dev/null +++ b/site/public/v1/software/origami-studio/index.json @@ -0,0 +1,19 @@ +{ + "id": 7346, + "slug": "origami-studio", + "name": "Origami Studio", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140227903" + ], + "created_at": "2026-07-10T10:12:42.277398", + "updated_at": "2026-07-10T10:12:42.277398", + "url": "/v1/software/origami-studio" +} diff --git a/site/public/v1/software/origin/index.json b/site/public/v1/software/origin/index.json new file mode 100644 index 000000000000..b36230525904 --- /dev/null +++ b/site/public/v1/software/origin/index.json @@ -0,0 +1,23 @@ +{ + "id": 7347, + "slug": "origin", + "name": "Origin", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1307239" + ], + "created_at": "2026-07-10T10:12:42.277398", + "updated_at": "2026-07-10T10:12:42.277398", + "url": "/v1/software/origin" +} diff --git a/site/public/v1/software/origyn-web-browser/index.json b/site/public/v1/software/origyn-web-browser/index.json new file mode 100644 index 000000000000..c7063e0cec73 --- /dev/null +++ b/site/public/v1/software/origyn-web-browser/index.json @@ -0,0 +1,19 @@ +{ + "id": 7348, + "slug": "origyn-web-browser", + "name": "Origyn Web Browser", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2568489" + ], + "created_at": "2026-07-10T10:12:42.278426", + "updated_at": "2026-07-10T10:12:42.278426", + "url": "/v1/software/origyn-web-browser" +} diff --git a/site/public/v1/software/orion-application-server/index.json b/site/public/v1/software/orion-application-server/index.json new file mode 100644 index 000000000000..2dc37d931382 --- /dev/null +++ b/site/public/v1/software/orion-application-server/index.json @@ -0,0 +1,19 @@ +{ + "id": 7349, + "slug": "orion-application-server", + "name": "Orion Application Server", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2030901" + ], + "created_at": "2026-07-10T10:12:42.278426", + "updated_at": "2026-07-10T10:12:42.278426", + "url": "/v1/software/orion-application-server" +} diff --git a/site/public/v1/software/orion-engine/index.json b/site/public/v1/software/orion-engine/index.json new file mode 100644 index 000000000000..74875d3e19be --- /dev/null +++ b/site/public/v1/software/orion-engine/index.json @@ -0,0 +1,21 @@ +{ + "id": 7350, + "slug": "orion-engine", + "name": "Orion Engine", + "release_date": null, + "developers": [ + "Orion Quant Technologies" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139380978" + ], + "created_at": "2026-07-10T10:12:42.279399", + "updated_at": "2026-07-10T10:12:42.279399", + "url": "/v1/software/orion-engine" +} diff --git a/site/public/v1/software/orionvm/index.json b/site/public/v1/software/orionvm/index.json new file mode 100644 index 000000000000..d8ef326a39b9 --- /dev/null +++ b/site/public/v1/software/orionvm/index.json @@ -0,0 +1,19 @@ +{ + "id": 7351, + "slug": "orionvm", + "name": "OrionVM", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17019761" + ], + "created_at": "2026-07-10T10:12:42.279399", + "updated_at": "2026-07-10T10:12:42.279399", + "url": "/v1/software/orionvm" +} diff --git a/site/public/v1/software/orkas/index.json b/site/public/v1/software/orkas/index.json new file mode 100644 index 000000000000..9dc0ed4d876a --- /dev/null +++ b/site/public/v1/software/orkas/index.json @@ -0,0 +1,19 @@ +{ + "id": 7352, + "slug": "orkas", + "name": "Orkas", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140135410" + ], + "created_at": "2026-07-10T10:12:42.279399", + "updated_at": "2026-07-10T10:12:42.279399", + "url": "/v1/software/orkas" +} diff --git a/site/public/v1/software/orlando-breadboard/index.json b/site/public/v1/software/orlando-breadboard/index.json new file mode 100644 index 000000000000..c50aa93b064a --- /dev/null +++ b/site/public/v1/software/orlando-breadboard/index.json @@ -0,0 +1,19 @@ +{ + "id": 7353, + "slug": "orlando-breadboard", + "name": "Orlando Breadboard", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084438" + ], + "created_at": "2026-07-10T10:12:42.279399", + "updated_at": "2026-07-10T10:12:42.279399", + "url": "/v1/software/orlando-breadboard" +} diff --git a/site/public/v1/software/orlando-degrees-of-separation/index.json b/site/public/v1/software/orlando-degrees-of-separation/index.json new file mode 100644 index 000000000000..4d5d683f71e3 --- /dev/null +++ b/site/public/v1/software/orlando-degrees-of-separation/index.json @@ -0,0 +1,19 @@ +{ + "id": 7354, + "slug": "orlando-degrees-of-separation", + "name": "Orlando Degrees of Separation", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084439" + ], + "created_at": "2026-07-10T10:12:42.279399", + "updated_at": "2026-07-10T10:12:42.279399", + "url": "/v1/software/orlando-degrees-of-separation" +} diff --git a/site/public/v1/software/orlandovision-ovis/index.json b/site/public/v1/software/orlandovision-ovis/index.json new file mode 100644 index 000000000000..672de36e1ffc --- /dev/null +++ b/site/public/v1/software/orlandovision-ovis/index.json @@ -0,0 +1,19 @@ +{ + "id": 7355, + "slug": "orlandovision-ovis", + "name": "OrlandoVision (OVis)", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084440" + ], + "created_at": "2026-07-10T10:12:42.280804", + "updated_at": "2026-07-10T10:12:42.280804", + "url": "/v1/software/orlandovision-ovis" +} diff --git a/site/public/v1/software/orm-designer/index.json b/site/public/v1/software/orm-designer/index.json new file mode 100644 index 000000000000..d3053d585f0e --- /dev/null +++ b/site/public/v1/software/orm-designer/index.json @@ -0,0 +1,19 @@ +{ + "id": 7356, + "slug": "orm-designer", + "name": "ORM Designer", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17145882" + ], + "created_at": "2026-07-10T10:12:42.280804", + "updated_at": "2026-07-10T10:12:42.280804", + "url": "/v1/software/orm-designer" +} diff --git a/site/public/v1/software/oroborus/index.json b/site/public/v1/software/oroborus/index.json new file mode 100644 index 000000000000..7dceda6e065e --- /dev/null +++ b/site/public/v1/software/oroborus/index.json @@ -0,0 +1,19 @@ +{ + "id": 7357, + "slug": "oroborus", + "name": "Oroborus", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3356577" + ], + "created_at": "2026-07-10T10:12:42.281812", + "updated_at": "2026-07-10T10:12:42.281812", + "url": "/v1/software/oroborus" +} diff --git a/site/public/v1/software/orocos-kdl/index.json b/site/public/v1/software/orocos-kdl/index.json new file mode 100644 index 000000000000..93186695fe30 --- /dev/null +++ b/site/public/v1/software/orocos-kdl/index.json @@ -0,0 +1,19 @@ +{ + "id": 7358, + "slug": "orocos-kdl", + "name": "orocos_kdl", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975310" + ], + "created_at": "2026-07-10T10:12:42.281812", + "updated_at": "2026-07-10T10:12:42.281812", + "url": "/v1/software/orocos-kdl" +} diff --git a/site/public/v1/software/orphex/index.json b/site/public/v1/software/orphex/index.json new file mode 100644 index 000000000000..4cd672d19190 --- /dev/null +++ b/site/public/v1/software/orphex/index.json @@ -0,0 +1,19 @@ +{ + "id": 7359, + "slug": "orphex", + "name": "Orphex", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124545527" + ], + "created_at": "2026-07-10T10:12:42.281812", + "updated_at": "2026-07-10T10:12:42.281812", + "url": "/v1/software/orphex" +} diff --git a/site/public/v1/software/ortep/index.json b/site/public/v1/software/ortep/index.json new file mode 100644 index 000000000000..a45ad18f8e03 --- /dev/null +++ b/site/public/v1/software/ortep/index.json @@ -0,0 +1,21 @@ +{ + "id": 7360, + "slug": "ortep", + "name": "ORTEP", + "release_date": "1965-01-01", + "developers": [ + "Oak Ridge National Laboratory" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q15879965" + ], + "created_at": "2026-07-10T10:12:42.281812", + "updated_at": "2026-07-10T10:12:42.281812", + "url": "/v1/software/ortep" +} diff --git a/site/public/v1/software/orthofinder/index.json b/site/public/v1/software/orthofinder/index.json new file mode 100644 index 000000000000..015a1937a14d --- /dev/null +++ b/site/public/v1/software/orthofinder/index.json @@ -0,0 +1,19 @@ +{ + "id": 7361, + "slug": "orthofinder", + "name": "OrthoFinder", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108166782" + ], + "created_at": "2026-07-10T10:12:42.282815", + "updated_at": "2026-07-10T10:12:42.282815", + "url": "/v1/software/orthofinder" +} diff --git a/site/public/v1/software/orthograph/index.json b/site/public/v1/software/orthograph/index.json new file mode 100644 index 000000000000..12996a957b0c --- /dev/null +++ b/site/public/v1/software/orthograph/index.json @@ -0,0 +1,19 @@ +{ + "id": 7362, + "slug": "orthograph", + "name": "OrthoGraph", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q538060" + ], + "created_at": "2026-07-10T10:12:42.282815", + "updated_at": "2026-07-10T10:12:42.282815", + "url": "/v1/software/orthograph" +} diff --git a/site/public/v1/software/orthopaedic-studio/index.json b/site/public/v1/software/orthopaedic-studio/index.json new file mode 100644 index 000000000000..9e2b577b7533 --- /dev/null +++ b/site/public/v1/software/orthopaedic-studio/index.json @@ -0,0 +1,19 @@ +{ + "id": 7363, + "slug": "orthopaedic-studio", + "name": "Orthopaedic Studio", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17073453" + ], + "created_at": "2026-07-10T10:12:42.283815", + "updated_at": "2026-07-10T10:12:42.283815", + "url": "/v1/software/orthopaedic-studio" +} diff --git a/site/public/v1/software/orthopedic-surgery-simulation/index.json b/site/public/v1/software/orthopedic-surgery-simulation/index.json new file mode 100644 index 000000000000..5e0e9f3901c7 --- /dev/null +++ b/site/public/v1/software/orthopedic-surgery-simulation/index.json @@ -0,0 +1,19 @@ +{ + "id": 7364, + "slug": "orthopedic-surgery-simulation", + "name": "Orthopedic Surgery Simulation", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115332277" + ], + "created_at": "2026-07-10T10:12:42.283815", + "updated_at": "2026-07-10T10:12:42.283815", + "url": "/v1/software/orthopedic-surgery-simulation" +} diff --git a/site/public/v1/software/ortolang/index.json b/site/public/v1/software/ortolang/index.json new file mode 100644 index 000000000000..c3da3a0a3a80 --- /dev/null +++ b/site/public/v1/software/ortolang/index.json @@ -0,0 +1,19 @@ +{ + "id": 7365, + "slug": "ortolang", + "name": "ORTOLANG", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084441" + ], + "created_at": "2026-07-10T10:12:42.283815", + "updated_at": "2026-07-10T10:12:42.283815", + "url": "/v1/software/ortolang" +} diff --git a/site/public/v1/software/os-autoinst/index.json b/site/public/v1/software/os-autoinst/index.json new file mode 100644 index 000000000000..49ac4b9b9516 --- /dev/null +++ b/site/public/v1/software/os-autoinst/index.json @@ -0,0 +1,19 @@ +{ + "id": 7366, + "slug": "os-autoinst", + "name": "os-autoinst", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975311" + ], + "created_at": "2026-07-10T10:12:42.284876", + "updated_at": "2026-07-10T10:12:42.284876", + "url": "/v1/software/os-autoinst" +} diff --git a/site/public/v1/software/os-diskconfig-python-novaclient-ext/index.json b/site/public/v1/software/os-diskconfig-python-novaclient-ext/index.json new file mode 100644 index 000000000000..a6db68e3b1c2 --- /dev/null +++ b/site/public/v1/software/os-diskconfig-python-novaclient-ext/index.json @@ -0,0 +1,19 @@ +{ + "id": 7367, + "slug": "os-diskconfig-python-novaclient-ext", + "name": "os-diskconfig-python-novaclient-ext", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975313" + ], + "created_at": "2026-07-10T10:12:42.284876", + "updated_at": "2026-07-10T10:12:42.284876", + "url": "/v1/software/os-diskconfig-python-novaclient-ext" +} diff --git a/site/public/v1/software/osapher/index.json b/site/public/v1/software/osapher/index.json new file mode 100644 index 000000000000..417363f89169 --- /dev/null +++ b/site/public/v1/software/osapher/index.json @@ -0,0 +1,19 @@ +{ + "id": 7368, + "slug": "osapher", + "name": "Osapher", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139718760" + ], + "created_at": "2026-07-10T10:12:42.284876", + "updated_at": "2026-07-10T10:12:42.284876", + "url": "/v1/software/osapher" +} diff --git a/site/public/v1/software/osc/index.json b/site/public/v1/software/osc/index.json new file mode 100644 index 000000000000..71ca482501d8 --- /dev/null +++ b/site/public/v1/software/osc/index.json @@ -0,0 +1,23 @@ +{ + "id": 7369, + "slug": "osc", + "name": "osc", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Unix-like operating system" + ], + "programming_languages": [], + "licenses": [ + "GNU General Public License, version 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975312" + ], + "created_at": "2026-07-10T10:12:42.285881", + "updated_at": "2026-07-10T10:12:42.285881", + "url": "/v1/software/osc" +} diff --git a/site/public/v1/software/oscache/index.json b/site/public/v1/software/oscache/index.json new file mode 100644 index 000000000000..7fa3395c8490 --- /dev/null +++ b/site/public/v1/software/oscache/index.json @@ -0,0 +1,19 @@ +{ + "id": 7370, + "slug": "oscache", + "name": "OSCache", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q471022" + ], + "created_at": "2026-07-10T10:12:42.285881", + "updated_at": "2026-07-10T10:12:42.285881", + "url": "/v1/software/oscache" +} diff --git a/site/public/v1/software/oskope/index.json b/site/public/v1/software/oskope/index.json new file mode 100644 index 000000000000..ca7c0208b7e5 --- /dev/null +++ b/site/public/v1/software/oskope/index.json @@ -0,0 +1,19 @@ +{ + "id": 7371, + "slug": "oskope", + "name": "oSkope", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084443" + ], + "created_at": "2026-07-10T10:12:42.285881", + "updated_at": "2026-07-10T10:12:42.285881", + "url": "/v1/software/oskope" +} diff --git a/site/public/v1/software/osl/index.json b/site/public/v1/software/osl/index.json new file mode 100644 index 000000000000..b0bfa7a548fe --- /dev/null +++ b/site/public/v1/software/osl/index.json @@ -0,0 +1,19 @@ +{ + "id": 7372, + "slug": "osl", + "name": "osl", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60917453" + ], + "created_at": "2026-07-10T10:12:42.286893", + "updated_at": "2026-07-10T10:12:42.286893", + "url": "/v1/software/osl" +} diff --git a/site/public/v1/software/osm2pgsql/index.json b/site/public/v1/software/osm2pgsql/index.json new file mode 100644 index 000000000000..9cd543214207 --- /dev/null +++ b/site/public/v1/software/osm2pgsql/index.json @@ -0,0 +1,24 @@ +{ + "id": 7373, + "slug": "osm2pgsql", + "name": "osm2pgsql", + "release_date": null, + "developers": [ + "Sarah Hoffmann", + "Jochen Topf" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "GNU General Public License, version 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975314" + ], + "created_at": "2026-07-10T10:12:42.286893", + "updated_at": "2026-07-10T10:12:42.286893", + "url": "/v1/software/osm2pgsql" +} diff --git a/site/public/v1/software/osmp/index.json b/site/public/v1/software/osmp/index.json new file mode 100644 index 000000000000..edef1baa9baa --- /dev/null +++ b/site/public/v1/software/osmp/index.json @@ -0,0 +1,21 @@ +{ + "id": 7374, + "slug": "osmp", + "name": "OSMP", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "GNU General Public License, version 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7073034" + ], + "created_at": "2026-07-10T10:12:42.286893", + "updated_at": "2026-07-10T10:12:42.286893", + "url": "/v1/software/osmp" +} diff --git a/site/public/v1/software/osome/index.json b/site/public/v1/software/osome/index.json new file mode 100644 index 000000000000..69f4792fdb09 --- /dev/null +++ b/site/public/v1/software/osome/index.json @@ -0,0 +1,19 @@ +{ + "id": 7375, + "slug": "osome", + "name": "OSoMe", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084444" + ], + "created_at": "2026-07-10T10:12:42.287958", + "updated_at": "2026-07-10T10:12:42.287958", + "url": "/v1/software/osome" +} diff --git a/site/public/v1/software/osqp/index.json b/site/public/v1/software/osqp/index.json new file mode 100644 index 000000000000..21e6b2c60645 --- /dev/null +++ b/site/public/v1/software/osqp/index.json @@ -0,0 +1,26 @@ +{ + "id": 7376, + "slug": "osqp", + "name": "osqp", + "release_date": null, + "developers": [ + "Bartolomeo Stellato" + ], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "Apache Software License 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107384640" + ], + "created_at": "2026-07-10T10:12:42.287958", + "updated_at": "2026-07-10T10:12:42.287958", + "url": "/v1/software/osqp" +} diff --git a/site/public/v1/software/osteoware/index.json b/site/public/v1/software/osteoware/index.json new file mode 100644 index 000000000000..23ce72188803 --- /dev/null +++ b/site/public/v1/software/osteoware/index.json @@ -0,0 +1,19 @@ +{ + "id": 7377, + "slug": "osteoware", + "name": "Osteoware", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25313116" + ], + "created_at": "2026-07-10T10:12:42.287958", + "updated_at": "2026-07-10T10:12:42.287958", + "url": "/v1/software/osteoware" +} diff --git a/site/public/v1/software/ostorybook/index.json b/site/public/v1/software/ostorybook/index.json new file mode 100644 index 000000000000..98f159bf996b --- /dev/null +++ b/site/public/v1/software/ostorybook/index.json @@ -0,0 +1,25 @@ +{ + "id": 7378, + "slug": "ostorybook", + "name": "oStorybook", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Mac operating system", + "cross-platform", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "GNU General Public License, version 3.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120071694" + ], + "created_at": "2026-07-10T10:12:42.287958", + "updated_at": "2026-07-10T10:12:42.287958", + "url": "/v1/software/ostorybook" +} diff --git a/site/public/v1/software/otranscribe/index.json b/site/public/v1/software/otranscribe/index.json new file mode 100644 index 000000000000..da5b7fe933b7 --- /dev/null +++ b/site/public/v1/software/otranscribe/index.json @@ -0,0 +1,21 @@ +{ + "id": 7379, + "slug": "otranscribe", + "name": "oTranscribe", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107035658" + ], + "created_at": "2026-07-10T10:12:42.288885", + "updated_at": "2026-07-10T10:12:42.288885", + "url": "/v1/software/otranscribe" +} diff --git a/site/public/v1/software/ourtunes/index.json b/site/public/v1/software/ourtunes/index.json new file mode 100644 index 000000000000..8dff30338865 --- /dev/null +++ b/site/public/v1/software/ourtunes/index.json @@ -0,0 +1,21 @@ +{ + "id": 7380, + "slug": "ourtunes", + "name": "ourTunes", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Java" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7110547" + ], + "created_at": "2026-07-10T10:12:42.288885", + "updated_at": "2026-07-10T10:12:42.288885", + "url": "/v1/software/ourtunes" +} diff --git a/site/public/v1/software/out-of-the-park-baseball-10/index.json b/site/public/v1/software/out-of-the-park-baseball-10/index.json new file mode 100644 index 000000000000..27ea9a447248 --- /dev/null +++ b/site/public/v1/software/out-of-the-park-baseball-10/index.json @@ -0,0 +1,19 @@ +{ + "id": 7381, + "slug": "out-of-the-park-baseball-10", + "name": "Out of the Park Baseball 10", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140361299" + ], + "created_at": "2026-07-10T10:12:42.288885", + "updated_at": "2026-07-10T10:12:42.288885", + "url": "/v1/software/out-of-the-park-baseball-10" +} diff --git a/site/public/v1/software/outernet/index.json b/site/public/v1/software/outernet/index.json new file mode 100644 index 000000000000..ffe974cadb63 --- /dev/null +++ b/site/public/v1/software/outernet/index.json @@ -0,0 +1,23 @@ +{ + "id": 7382, + "slug": "outernet", + "name": "Outernet", + "release_date": null, + "developers": [ + "Vodafone" + ], + "publishers": [], + "operating_systems": [ + "cross-platform" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107711183" + ], + "created_at": "2026-07-10T10:12:42.289885", + "updated_at": "2026-07-10T10:12:42.289885", + "url": "/v1/software/outernet" +} diff --git a/site/public/v1/software/outline-of-free-software/index.json b/site/public/v1/software/outline-of-free-software/index.json new file mode 100644 index 000000000000..7cfa0c6b28ba --- /dev/null +++ b/site/public/v1/software/outline-of-free-software/index.json @@ -0,0 +1,19 @@ +{ + "id": 7383, + "slug": "outline-of-free-software", + "name": "Outline of free software", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7112641" + ], + "created_at": "2026-07-10T10:12:42.289885", + "updated_at": "2026-07-10T10:12:42.289885", + "url": "/v1/software/outline-of-free-software" +} diff --git a/site/public/v1/software/outlook-for-windows/index.json b/site/public/v1/software/outlook-for-windows/index.json new file mode 100644 index 000000000000..2aff7d287639 --- /dev/null +++ b/site/public/v1/software/outlook-for-windows/index.json @@ -0,0 +1,19 @@ +{ + "id": 7384, + "slug": "outlook-for-windows", + "name": "Outlook for Windows", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123125222" + ], + "created_at": "2026-07-10T10:12:42.289885", + "updated_at": "2026-07-10T10:12:42.289885", + "url": "/v1/software/outlook-for-windows" +} diff --git a/site/public/v1/software/outlook-groups/index.json b/site/public/v1/software/outlook-groups/index.json new file mode 100644 index 000000000000..07ec89fdeac7 --- /dev/null +++ b/site/public/v1/software/outlook-groups/index.json @@ -0,0 +1,21 @@ +{ + "id": 7385, + "slug": "outlook-groups", + "name": "Outlook Groups", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q21043339" + ], + "created_at": "2026-07-10T10:12:42.289885", + "updated_at": "2026-07-10T10:12:42.289885", + "url": "/v1/software/outlook-groups" +} diff --git a/site/public/v1/software/outlook-on-the-web/index.json b/site/public/v1/software/outlook-on-the-web/index.json new file mode 100644 index 000000000000..794136cef014 --- /dev/null +++ b/site/public/v1/software/outlook-on-the-web/index.json @@ -0,0 +1,21 @@ +{ + "id": 7386, + "slug": "outlook-on-the-web", + "name": "Outlook on the web", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1753743" + ], + "created_at": "2026-07-10T10:12:42.290909", + "updated_at": "2026-07-10T10:12:42.290909", + "url": "/v1/software/outlook-on-the-web" +} diff --git a/site/public/v1/software/outpost-firewall-pro/index.json b/site/public/v1/software/outpost-firewall-pro/index.json new file mode 100644 index 000000000000..5aa9568d0e2a --- /dev/null +++ b/site/public/v1/software/outpost-firewall-pro/index.json @@ -0,0 +1,23 @@ +{ + "id": 7387, + "slug": "outpost-firewall-pro", + "name": "Outpost Firewall Pro", + "release_date": null, + "developers": [ + "Agnitum" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2995594" + ], + "created_at": "2026-07-10T10:12:42.290909", + "updated_at": "2026-07-10T10:12:42.290909", + "url": "/v1/software/outpost-firewall-pro" +} diff --git a/site/public/v1/software/outpost-security-suite/index.json b/site/public/v1/software/outpost-security-suite/index.json new file mode 100644 index 000000000000..22c757216c58 --- /dev/null +++ b/site/public/v1/software/outpost-security-suite/index.json @@ -0,0 +1,21 @@ +{ + "id": 7388, + "slug": "outpost-security-suite", + "name": "Outpost Security Suite", + "release_date": null, + "developers": [ + "Agnitum" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17081129" + ], + "created_at": "2026-07-10T10:12:42.290909", + "updated_at": "2026-07-10T10:12:42.290909", + "url": "/v1/software/outpost-security-suite" +} diff --git a/site/public/v1/software/overbite/index.json b/site/public/v1/software/overbite/index.json new file mode 100644 index 000000000000..241fbb848ed6 --- /dev/null +++ b/site/public/v1/software/overbite/index.json @@ -0,0 +1,19 @@ +{ + "id": 7389, + "slug": "overbite", + "name": "Overbite", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11697062" + ], + "created_at": "2026-07-10T10:12:42.291895", + "updated_at": "2026-07-10T10:12:42.291895", + "url": "/v1/software/overbite" +} diff --git a/site/public/v1/software/overcast-media/index.json b/site/public/v1/software/overcast-media/index.json new file mode 100644 index 000000000000..64d29bb2a300 --- /dev/null +++ b/site/public/v1/software/overcast-media/index.json @@ -0,0 +1,21 @@ +{ + "id": 7390, + "slug": "overcast-media", + "name": "Overcast Media", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7113584" + ], + "created_at": "2026-07-10T10:12:42.291895", + "updated_at": "2026-07-10T10:12:42.291895", + "url": "/v1/software/overcast-media" +} diff --git a/site/public/v1/software/overdrive-media-console/index.json b/site/public/v1/software/overdrive-media-console/index.json new file mode 100644 index 000000000000..8f1f04a34fdb --- /dev/null +++ b/site/public/v1/software/overdrive-media-console/index.json @@ -0,0 +1,25 @@ +{ + "id": 7391, + "slug": "overdrive-media-console", + "name": "OverDrive Media Console", + "release_date": null, + "developers": [ + "OverDrive, Inc." + ], + "publishers": [], + "operating_systems": [ + "BlackBerry OS", + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7113376" + ], + "created_at": "2026-07-10T10:12:42.291895", + "updated_at": "2026-07-10T10:12:42.291895", + "url": "/v1/software/overdrive-media-console" +} diff --git a/site/public/v1/software/overflow/index.json b/site/public/v1/software/overflow/index.json new file mode 100644 index 000000000000..ab805e1ed1e8 --- /dev/null +++ b/site/public/v1/software/overflow/index.json @@ -0,0 +1,19 @@ +{ + "id": 7392, + "slug": "overflow", + "name": "Overflow", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7113650" + ], + "created_at": "2026-07-10T10:12:42.292905", + "updated_at": "2026-07-10T10:12:42.292905", + "url": "/v1/software/overflow" +} diff --git a/site/public/v1/software/oversim/index.json b/site/public/v1/software/oversim/index.json new file mode 100644 index 000000000000..7a3465f7b103 --- /dev/null +++ b/site/public/v1/software/oversim/index.json @@ -0,0 +1,21 @@ +{ + "id": 7393, + "slug": "oversim", + "name": "OverSim", + "release_date": "2006-01-01", + "developers": [], + "publishers": [], + "operating_systems": [ + "cross-platform" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7113378" + ], + "created_at": "2026-07-10T10:12:42.292905", + "updated_at": "2026-07-10T10:12:42.292905", + "url": "/v1/software/oversim" +} diff --git a/site/public/v1/software/overtone/index.json b/site/public/v1/software/overtone/index.json new file mode 100644 index 000000000000..14afbe81a742 --- /dev/null +++ b/site/public/v1/software/overtone/index.json @@ -0,0 +1,21 @@ +{ + "id": 7394, + "slug": "overtone", + "name": "Overtone", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Clojure" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q29364773" + ], + "created_at": "2026-07-10T10:12:42.292905", + "updated_at": "2026-07-10T10:12:42.292905", + "url": "/v1/software/overtone" +} diff --git a/site/public/v1/software/overview-of-restful-api-description-languages/index.json b/site/public/v1/software/overview-of-restful-api-description-languages/index.json new file mode 100644 index 000000000000..6fe9dc3a1a68 --- /dev/null +++ b/site/public/v1/software/overview-of-restful-api-description-languages/index.json @@ -0,0 +1,19 @@ +{ + "id": 7395, + "slug": "overview-of-restful-api-description-languages", + "name": "Overview of RESTful API Description Languages", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q19599507" + ], + "created_at": "2026-07-10T10:12:42.293885", + "updated_at": "2026-07-10T10:12:42.293885", + "url": "/v1/software/overview-of-restful-api-description-languages" +} diff --git a/site/public/v1/software/overview/index.json b/site/public/v1/software/overview/index.json new file mode 100644 index 000000000000..b28cade2f94b --- /dev/null +++ b/site/public/v1/software/overview/index.json @@ -0,0 +1,19 @@ +{ + "id": 7396, + "slug": "overview", + "name": "Overview", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084445" + ], + "created_at": "2026-07-10T10:12:42.293885", + "updated_at": "2026-07-10T10:12:42.293885", + "url": "/v1/software/overview" +} diff --git a/site/public/v1/software/overwolf/index.json b/site/public/v1/software/overwolf/index.json new file mode 100644 index 000000000000..97b922e84ad1 --- /dev/null +++ b/site/public/v1/software/overwolf/index.json @@ -0,0 +1,19 @@ +{ + "id": 7397, + "slug": "overwolf", + "name": "Overwolf", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16927950" + ], + "created_at": "2026-07-10T10:12:42.293885", + "updated_at": "2026-07-10T10:12:42.293885", + "url": "/v1/software/overwolf" +} diff --git a/site/public/v1/software/ovn/index.json b/site/public/v1/software/ovn/index.json new file mode 100644 index 000000000000..2c17d70da8fa --- /dev/null +++ b/site/public/v1/software/ovn/index.json @@ -0,0 +1,19 @@ +{ + "id": 7398, + "slug": "ovn", + "name": "OVN", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q55627199" + ], + "created_at": "2026-07-10T10:12:42.294889", + "updated_at": "2026-07-10T10:12:42.294889", + "url": "/v1/software/ovn" +} diff --git a/site/public/v1/software/owbasic/index.json b/site/public/v1/software/owbasic/index.json new file mode 100644 index 000000000000..efa430f799f4 --- /dev/null +++ b/site/public/v1/software/owbasic/index.json @@ -0,0 +1,19 @@ +{ + "id": 7399, + "slug": "owbasic", + "name": "OWBasic", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2008257" + ], + "created_at": "2026-07-10T10:12:42.294889", + "updated_at": "2026-07-10T10:12:42.294889", + "url": "/v1/software/owbasic" +} diff --git a/site/public/v1/software/owfs/index.json b/site/public/v1/software/owfs/index.json new file mode 100644 index 000000000000..ab4b15ab856e --- /dev/null +++ b/site/public/v1/software/owfs/index.json @@ -0,0 +1,19 @@ +{ + "id": 7400, + "slug": "owfs", + "name": "OWFS", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62856928" + ], + "created_at": "2026-07-10T10:12:42.294889", + "updated_at": "2026-07-10T10:12:42.294889", + "url": "/v1/software/owfs" +} diff --git a/site/public/v1/software/owj-crm/index.json b/site/public/v1/software/owj-crm/index.json new file mode 100644 index 000000000000..7cad81931d38 --- /dev/null +++ b/site/public/v1/software/owj-crm/index.json @@ -0,0 +1,21 @@ +{ + "id": 7401, + "slug": "owj-crm", + "name": "Owj CRM", + "release_date": null, + "developers": [ + "Owj CRM" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136766120" + ], + "created_at": "2026-07-10T10:12:42.295871", + "updated_at": "2026-07-10T10:12:42.295871", + "url": "/v1/software/owj-crm" +} diff --git a/site/public/v1/software/owl-lisp/index.json b/site/public/v1/software/owl-lisp/index.json new file mode 100644 index 000000000000..7059f2e59397 --- /dev/null +++ b/site/public/v1/software/owl-lisp/index.json @@ -0,0 +1,21 @@ +{ + "id": 7402, + "slug": "owl-lisp", + "name": "Owl Lisp", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7114855" + ], + "created_at": "2026-07-10T10:12:42.295871", + "updated_at": "2026-07-10T10:12:42.295871", + "url": "/v1/software/owl-lisp" +} diff --git a/site/public/v1/software/owlready2/index.json b/site/public/v1/software/owlready2/index.json new file mode 100644 index 000000000000..a4488ed6a714 --- /dev/null +++ b/site/public/v1/software/owlready2/index.json @@ -0,0 +1,25 @@ +{ + "id": 7403, + "slug": "owlready2", + "name": "Owlready2", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Python" + ], + "licenses": [ + "proprietary license" + ], + "genres": [ + "application programming interface" + ], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116924857" + ], + "created_at": "2026-07-10T10:12:42.295871", + "updated_at": "2026-07-10T10:12:42.295871", + "url": "/v1/software/owlready2" +} diff --git a/site/public/v1/software/owncast/index.json b/site/public/v1/software/owncast/index.json new file mode 100644 index 000000000000..1377bc9c348a --- /dev/null +++ b/site/public/v1/software/owncast/index.json @@ -0,0 +1,25 @@ +{ + "id": 7404, + "slug": "owncast", + "name": "Owncast", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "cross-platform" + ], + "programming_languages": [ + "Go" + ], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q104533790" + ], + "created_at": "2026-07-10T10:12:42.295871", + "updated_at": "2026-07-10T10:12:42.295871", + "url": "/v1/software/owncast" +} diff --git a/site/public/v1/software/oxford-concordance-program-ocp/index.json b/site/public/v1/software/oxford-concordance-program-ocp/index.json new file mode 100644 index 000000000000..5f766cb52a92 --- /dev/null +++ b/site/public/v1/software/oxford-concordance-program-ocp/index.json @@ -0,0 +1,19 @@ +{ + "id": 7405, + "slug": "oxford-concordance-program-ocp", + "name": "Oxford Concordance Program (OCP)", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087693" + ], + "created_at": "2026-07-10T10:12:42.296909", + "updated_at": "2026-07-10T10:12:42.296909", + "url": "/v1/software/oxford-concordance-program-ocp" +} diff --git a/site/public/v1/software/oyranos/index.json b/site/public/v1/software/oyranos/index.json new file mode 100644 index 000000000000..3eab86195606 --- /dev/null +++ b/site/public/v1/software/oyranos/index.json @@ -0,0 +1,19 @@ +{ + "id": 7406, + "slug": "oyranos", + "name": "oyranos", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975316" + ], + "created_at": "2026-07-10T10:12:42.296909", + "updated_at": "2026-07-10T10:12:42.296909", + "url": "/v1/software/oyranos" +} diff --git a/site/public/v1/software/oziexplorer/index.json b/site/public/v1/software/oziexplorer/index.json new file mode 100644 index 000000000000..b69e05937d10 --- /dev/null +++ b/site/public/v1/software/oziexplorer/index.json @@ -0,0 +1,19 @@ +{ + "id": 7407, + "slug": "oziexplorer", + "name": "OziExplorer", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2043099" + ], + "created_at": "2026-07-10T10:12:42.296909", + "updated_at": "2026-07-10T10:12:42.296909", + "url": "/v1/software/oziexplorer" +} diff --git a/site/public/v1/software/ozwin/index.json b/site/public/v1/software/ozwin/index.json new file mode 100644 index 000000000000..971f2dff7aed --- /dev/null +++ b/site/public/v1/software/ozwin/index.json @@ -0,0 +1,19 @@ +{ + "id": 7408, + "slug": "ozwin", + "name": "OzWin", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7116407" + ], + "created_at": "2026-07-10T10:12:42.297884", + "updated_at": "2026-07-10T10:12:42.297884", + "url": "/v1/software/ozwin" +} diff --git a/site/public/v1/software/p-atnik/index.json b/site/public/v1/software/p-atnik/index.json new file mode 100644 index 000000000000..a8b67e5dfffc --- /dev/null +++ b/site/public/v1/software/p-atnik/index.json @@ -0,0 +1,19 @@ +{ + "id": 7409, + "slug": "p-atnik", + "name": "Płatnik", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11832559" + ], + "created_at": "2026-07-10T10:12:42.297884", + "updated_at": "2026-07-10T10:12:42.297884", + "url": "/v1/software/p-atnik" +} diff --git a/site/public/v1/software/p-cad/index.json b/site/public/v1/software/p-cad/index.json new file mode 100644 index 000000000000..5b19e30ca1d0 --- /dev/null +++ b/site/public/v1/software/p-cad/index.json @@ -0,0 +1,19 @@ +{ + "id": 7410, + "slug": "p-cad", + "name": "P-CAD", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7116887" + ], + "created_at": "2026-07-10T10:12:42.297884", + "updated_at": "2026-07-10T10:12:42.297884", + "url": "/v1/software/p-cad" +} diff --git a/site/public/v1/software/p-i-p-s/index.json b/site/public/v1/software/p-i-p-s/index.json new file mode 100644 index 000000000000..085db6fa17a8 --- /dev/null +++ b/site/public/v1/software/p-i-p-s/index.json @@ -0,0 +1,21 @@ +{ + "id": 7411, + "slug": "p-i-p-s", + "name": "P.I.P.S.", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Symbian" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2044235" + ], + "created_at": "2026-07-10T10:12:42.298873", + "updated_at": "2026-07-10T10:12:42.298873", + "url": "/v1/software/p-i-p-s" +} diff --git a/site/public/v1/software/p0f/index.json b/site/public/v1/software/p0f/index.json new file mode 100644 index 000000000000..1e61fadf32a5 --- /dev/null +++ b/site/public/v1/software/p0f/index.json @@ -0,0 +1,21 @@ +{ + "id": 7412, + "slug": "p0f", + "name": "p0f", + "release_date": null, + "developers": [ + "Michał Zalewski" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3023881" + ], + "created_at": "2026-07-10T10:12:42.298873", + "updated_at": "2026-07-10T10:12:42.298873", + "url": "/v1/software/p0f" +} diff --git a/site/public/v1/software/p3d/index.json b/site/public/v1/software/p3d/index.json new file mode 100644 index 000000000000..50be2279cff5 --- /dev/null +++ b/site/public/v1/software/p3d/index.json @@ -0,0 +1,19 @@ +{ + "id": 7413, + "slug": "p3d", + "name": "p3d", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975317" + ], + "created_at": "2026-07-10T10:12:42.298873", + "updated_at": "2026-07-10T10:12:42.298873", + "url": "/v1/software/p3d" +} diff --git a/site/public/v1/software/pacbase/index.json b/site/public/v1/software/pacbase/index.json new file mode 100644 index 000000000000..65a2b1d17574 --- /dev/null +++ b/site/public/v1/software/pacbase/index.json @@ -0,0 +1,21 @@ +{ + "id": 7414, + "slug": "pacbase", + "name": "Pacbase", + "release_date": null, + "developers": [ + "IBM" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q458034" + ], + "created_at": "2026-07-10T10:12:42.299968", + "updated_at": "2026-07-10T10:12:42.299968", + "url": "/v1/software/pacbase" +} diff --git a/site/public/v1/software/pachyderm/index.json b/site/public/v1/software/pachyderm/index.json new file mode 100644 index 000000000000..f8e9f607d57e --- /dev/null +++ b/site/public/v1/software/pachyderm/index.json @@ -0,0 +1,19 @@ +{ + "id": 7415, + "slug": "pachyderm", + "name": "pachyderm", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084446" + ], + "created_at": "2026-07-10T10:12:42.299968", + "updated_at": "2026-07-10T10:12:42.299968", + "url": "/v1/software/pachyderm" +} diff --git a/site/public/v1/software/pack/index.json b/site/public/v1/software/pack/index.json new file mode 100644 index 000000000000..6b62722bbc58 --- /dev/null +++ b/site/public/v1/software/pack/index.json @@ -0,0 +1,19 @@ +{ + "id": 7416, + "slug": "pack", + "name": "pack", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11239298" + ], + "created_at": "2026-07-10T10:12:42.299968", + "updated_at": "2026-07-10T10:12:42.299968", + "url": "/v1/software/pack" +} diff --git a/site/public/v1/software/pack200/index.json b/site/public/v1/software/pack200/index.json new file mode 100644 index 000000000000..e2fde44c12d4 --- /dev/null +++ b/site/public/v1/software/pack200/index.json @@ -0,0 +1,19 @@ +{ + "id": 7417, + "slug": "pack200", + "name": "Pack200", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1227683" + ], + "created_at": "2026-07-10T10:12:42.300942", + "updated_at": "2026-07-10T10:12:42.300942", + "url": "/v1/software/pack200" +} diff --git a/site/public/v1/software/packageforge/index.json b/site/public/v1/software/packageforge/index.json new file mode 100644 index 000000000000..7f1c9b3d7119 --- /dev/null +++ b/site/public/v1/software/packageforge/index.json @@ -0,0 +1,21 @@ +{ + "id": 7418, + "slug": "packageforge", + "name": "PackageForge", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7122882" + ], + "created_at": "2026-07-10T10:12:42.300942", + "updated_at": "2026-07-10T10:12:42.300942", + "url": "/v1/software/packageforge" +} diff --git a/site/public/v1/software/packard-bell-navigator/index.json b/site/public/v1/software/packard-bell-navigator/index.json new file mode 100644 index 000000000000..2408c26221d3 --- /dev/null +++ b/site/public/v1/software/packard-bell-navigator/index.json @@ -0,0 +1,23 @@ +{ + "id": 7419, + "slug": "packard-bell-navigator", + "name": "Packard Bell Navigator", + "release_date": null, + "developers": [ + "Packard Bell" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7122914" + ], + "created_at": "2026-07-10T10:12:42.300942", + "updated_at": "2026-07-10T10:12:42.300942", + "url": "/v1/software/packard-bell-navigator" +} diff --git a/site/public/v1/software/packeth/index.json b/site/public/v1/software/packeth/index.json new file mode 100644 index 000000000000..9f271e67b887 --- /dev/null +++ b/site/public/v1/software/packeth/index.json @@ -0,0 +1,19 @@ +{ + "id": 7420, + "slug": "packeth", + "name": "packETH", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62856974" + ], + "created_at": "2026-07-10T10:12:42.301974", + "updated_at": "2026-07-10T10:12:42.301974", + "url": "/v1/software/packeth" +} diff --git a/site/public/v1/software/packit/index.json b/site/public/v1/software/packit/index.json new file mode 100644 index 000000000000..56d2ddf5f3ef --- /dev/null +++ b/site/public/v1/software/packit/index.json @@ -0,0 +1,21 @@ +{ + "id": 7421, + "slug": "packit", + "name": "PackIt", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Classic Mac OS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7122860" + ], + "created_at": "2026-07-10T10:12:42.301974", + "updated_at": "2026-07-10T10:12:42.301974", + "url": "/v1/software/packit" +} diff --git a/site/public/v1/software/pacte/index.json b/site/public/v1/software/pacte/index.json new file mode 100644 index 000000000000..6adb9c699370 --- /dev/null +++ b/site/public/v1/software/pacte/index.json @@ -0,0 +1,19 @@ +{ + "id": 7422, + "slug": "pacte", + "name": "PACTE", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084447" + ], + "created_at": "2026-07-10T10:12:42.301974", + "updated_at": "2026-07-10T10:12:42.301974", + "url": "/v1/software/pacte" +} diff --git a/site/public/v1/software/paedml/index.json b/site/public/v1/software/paedml/index.json new file mode 100644 index 000000000000..c01fd3b0c31c --- /dev/null +++ b/site/public/v1/software/paedml/index.json @@ -0,0 +1,19 @@ +{ + "id": 7423, + "slug": "paedml", + "name": "PaedML", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1145681" + ], + "created_at": "2026-07-10T10:12:42.301974", + "updated_at": "2026-07-10T10:12:42.301974", + "url": "/v1/software/paedml" +} diff --git a/site/public/v1/software/paessler-prtg/index.json b/site/public/v1/software/paessler-prtg/index.json new file mode 100644 index 000000000000..798984cd3e02 --- /dev/null +++ b/site/public/v1/software/paessler-prtg/index.json @@ -0,0 +1,19 @@ +{ + "id": 7424, + "slug": "paessler-prtg", + "name": "Paessler PRTG", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q545856" + ], + "created_at": "2026-07-10T10:12:42.302941", + "updated_at": "2026-07-10T10:12:42.302941", + "url": "/v1/software/paessler-prtg" +} diff --git a/site/public/v1/software/pagestream/index.json b/site/public/v1/software/pagestream/index.json new file mode 100644 index 000000000000..842e168cde6d --- /dev/null +++ b/site/public/v1/software/pagestream/index.json @@ -0,0 +1,19 @@ +{ + "id": 7425, + "slug": "pagestream", + "name": "PageStream", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2046147" + ], + "created_at": "2026-07-10T10:12:42.302941", + "updated_at": "2026-07-10T10:12:42.302941", + "url": "/v1/software/pagestream" +} diff --git a/site/public/v1/software/paint-the-town-red/index.json b/site/public/v1/software/paint-the-town-red/index.json new file mode 100644 index 000000000000..da3623269325 --- /dev/null +++ b/site/public/v1/software/paint-the-town-red/index.json @@ -0,0 +1,21 @@ +{ + "id": 7426, + "slug": "paint-the-town-red", + "name": "Paint the Town Red", + "release_date": "2015-10-13", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [ + "beat 'em up" + ], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q97362181" + ], + "created_at": "2026-07-10T10:12:42.303942", + "updated_at": "2026-07-10T10:12:42.303942", + "url": "/v1/software/paint-the-town-red" +} diff --git a/site/public/v1/software/painworth/index.json b/site/public/v1/software/painworth/index.json new file mode 100644 index 000000000000..541097b5d1db --- /dev/null +++ b/site/public/v1/software/painworth/index.json @@ -0,0 +1,19 @@ +{ + "id": 7427, + "slug": "painworth", + "name": "Painworth", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106609898" + ], + "created_at": "2026-07-10T10:12:42.303942", + "updated_at": "2026-07-10T10:12:42.303942", + "url": "/v1/software/painworth" +} diff --git a/site/public/v1/software/pakka-khata/index.json b/site/public/v1/software/pakka-khata/index.json new file mode 100644 index 000000000000..a29c810b80f5 --- /dev/null +++ b/site/public/v1/software/pakka-khata/index.json @@ -0,0 +1,21 @@ +{ + "id": 7428, + "slug": "pakka-khata", + "name": "Pakka Khata", + "release_date": null, + "developers": [ + "Techzoq (Private) Limited" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140021989" + ], + "created_at": "2026-07-10T10:12:42.303942", + "updated_at": "2026-07-10T10:12:42.303942", + "url": "/v1/software/pakka-khata" +} diff --git a/site/public/v1/software/paktor/index.json b/site/public/v1/software/paktor/index.json new file mode 100644 index 000000000000..300d13885c5b --- /dev/null +++ b/site/public/v1/software/paktor/index.json @@ -0,0 +1,21 @@ +{ + "id": 7429, + "slug": "paktor", + "name": "Paktor", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "iOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q23680026" + ], + "created_at": "2026-07-10T10:12:42.303942", + "updated_at": "2026-07-10T10:12:42.303942", + "url": "/v1/software/paktor" +} diff --git a/site/public/v1/software/palantir-gotham/index.json b/site/public/v1/software/palantir-gotham/index.json new file mode 100644 index 000000000000..c1c043a0509e --- /dev/null +++ b/site/public/v1/software/palantir-gotham/index.json @@ -0,0 +1,21 @@ +{ + "id": 7430, + "slug": "palantir-gotham", + "name": "Palantir Gotham", + "release_date": null, + "developers": [ + "Palantir Technologies" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q96212573" + ], + "created_at": "2026-07-10T10:12:42.304982", + "updated_at": "2026-07-10T10:12:42.304982", + "url": "/v1/software/palantir-gotham" +} diff --git a/site/public/v1/software/palco-mp3/index.json b/site/public/v1/software/palco-mp3/index.json new file mode 100644 index 000000000000..40f76f3a10e0 --- /dev/null +++ b/site/public/v1/software/palco-mp3/index.json @@ -0,0 +1,19 @@ +{ + "id": 7431, + "slug": "palco-mp3", + "name": "Palco MP3", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18279331" + ], + "created_at": "2026-07-10T10:12:42.304982", + "updated_at": "2026-07-10T10:12:42.304982", + "url": "/v1/software/palco-mp3" +} diff --git a/site/public/v1/software/paletton-color-scheme-designer-4/index.json b/site/public/v1/software/paletton-color-scheme-designer-4/index.json new file mode 100644 index 000000000000..e6f83077efbd --- /dev/null +++ b/site/public/v1/software/paletton-color-scheme-designer-4/index.json @@ -0,0 +1,19 @@ +{ + "id": 7432, + "slug": "paletton-color-scheme-designer-4", + "name": "Paletton (Color Scheme Designer 4)", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084448" + ], + "created_at": "2026-07-10T10:12:42.304982", + "updated_at": "2026-07-10T10:12:42.304982", + "url": "/v1/software/paletton-color-scheme-designer-4" +} diff --git a/site/public/v1/software/palisade/index.json b/site/public/v1/software/palisade/index.json new file mode 100644 index 000000000000..017d3a001808 --- /dev/null +++ b/site/public/v1/software/palisade/index.json @@ -0,0 +1,19 @@ +{ + "id": 7433, + "slug": "palisade", + "name": "PALISADE", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q114434667" + ], + "created_at": "2026-07-10T10:12:42.305937", + "updated_at": "2026-07-10T10:12:42.305937", + "url": "/v1/software/palisade" +} diff --git a/site/public/v1/software/palladio/index.json b/site/public/v1/software/palladio/index.json new file mode 100644 index 000000000000..beeaf2892592 --- /dev/null +++ b/site/public/v1/software/palladio/index.json @@ -0,0 +1,21 @@ +{ + "id": 7434, + "slug": "palladio", + "name": "Palladio", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "3-clause BSD License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084450" + ], + "created_at": "2026-07-10T10:12:42.305937", + "updated_at": "2026-07-10T10:12:42.305937", + "url": "/v1/software/palladio" +} diff --git a/site/public/v1/software/palm-desktop/index.json b/site/public/v1/software/palm-desktop/index.json new file mode 100644 index 000000000000..dbb3683128aa --- /dev/null +++ b/site/public/v1/software/palm-desktop/index.json @@ -0,0 +1,24 @@ +{ + "id": 7435, + "slug": "palm-desktop", + "name": "Palm Desktop", + "release_date": null, + "developers": [ + "Access Systems Americas" + ], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2048106" + ], + "created_at": "2026-07-10T10:12:42.305937", + "updated_at": "2026-07-10T10:12:42.305937", + "url": "/v1/software/palm-desktop" +} diff --git a/site/public/v1/software/palmyra/index.json b/site/public/v1/software/palmyra/index.json new file mode 100644 index 000000000000..d92178765cf9 --- /dev/null +++ b/site/public/v1/software/palmyra/index.json @@ -0,0 +1,26 @@ +{ + "id": 7436, + "slug": "palmyra", + "name": "Palmyra", + "release_date": null, + "developers": [ + "Computational Approaches to Modeling Language Lab" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "HTML", + "Cascading Style Sheets" + ], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134726843" + ], + "created_at": "2026-07-10T10:12:42.305937", + "updated_at": "2026-07-10T10:12:42.305937", + "url": "/v1/software/palmyra" +} diff --git a/site/public/v1/software/palo/index.json b/site/public/v1/software/palo/index.json new file mode 100644 index 000000000000..13d99dd5bd74 --- /dev/null +++ b/site/public/v1/software/palo/index.json @@ -0,0 +1,19 @@ +{ + "id": 7437, + "slug": "palo", + "name": "palo", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975318" + ], + "created_at": "2026-07-10T10:12:42.306973", + "updated_at": "2026-07-10T10:12:42.306973", + "url": "/v1/software/palo" +} diff --git a/site/public/v1/software/paludis/index.json b/site/public/v1/software/paludis/index.json new file mode 100644 index 000000000000..89609f1d7a4d --- /dev/null +++ b/site/public/v1/software/paludis/index.json @@ -0,0 +1,19 @@ +{ + "id": 7438, + "slug": "paludis", + "name": "Paludis", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4046355" + ], + "created_at": "2026-07-10T10:12:42.306973", + "updated_at": "2026-07-10T10:12:42.306973", + "url": "/v1/software/paludis" +} diff --git a/site/public/v1/software/pam-crash/index.json b/site/public/v1/software/pam-crash/index.json new file mode 100644 index 000000000000..1a2bd2dab514 --- /dev/null +++ b/site/public/v1/software/pam-crash/index.json @@ -0,0 +1,19 @@ +{ + "id": 7439, + "slug": "pam-crash", + "name": "Pam-Crash", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7128901" + ], + "created_at": "2026-07-10T10:12:42.307883", + "updated_at": "2026-07-10T10:12:42.307883", + "url": "/v1/software/pam-crash" +} diff --git a/site/public/v1/software/pamix/index.json b/site/public/v1/software/pamix/index.json new file mode 100644 index 000000000000..49f3852ba84c --- /dev/null +++ b/site/public/v1/software/pamix/index.json @@ -0,0 +1,21 @@ +{ + "id": 7440, + "slug": "pamix", + "name": "pamix", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975319" + ], + "created_at": "2026-07-10T10:12:42.307883", + "updated_at": "2026-07-10T10:12:42.307883", + "url": "/v1/software/pamix" +} diff --git a/site/public/v1/software/pan-os/index.json b/site/public/v1/software/pan-os/index.json new file mode 100644 index 000000000000..f59df096110c --- /dev/null +++ b/site/public/v1/software/pan-os/index.json @@ -0,0 +1,21 @@ +{ + "id": 7441, + "slug": "pan-os", + "name": "PAN-OS", + "release_date": null, + "developers": [ + "Palo Alto Networks" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q56728812" + ], + "created_at": "2026-07-10T10:12:42.307883", + "updated_at": "2026-07-10T10:12:42.307883", + "url": "/v1/software/pan-os" +} diff --git a/site/public/v1/software/panda-and-csv-of-tweets/index.json b/site/public/v1/software/panda-and-csv-of-tweets/index.json new file mode 100644 index 000000000000..7e312b9f3dad --- /dev/null +++ b/site/public/v1/software/panda-and-csv-of-tweets/index.json @@ -0,0 +1,19 @@ +{ + "id": 7442, + "slug": "panda-and-csv-of-tweets", + "name": "Panda and CSV of Tweets", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084451" + ], + "created_at": "2026-07-10T10:12:42.308880", + "updated_at": "2026-07-10T10:12:42.308880", + "url": "/v1/software/panda-and-csv-of-tweets" +} diff --git a/site/public/v1/software/panda-dataframe-manipulation/index.json b/site/public/v1/software/panda-dataframe-manipulation/index.json new file mode 100644 index 000000000000..9ce506175e17 --- /dev/null +++ b/site/public/v1/software/panda-dataframe-manipulation/index.json @@ -0,0 +1,19 @@ +{ + "id": 7443, + "slug": "panda-dataframe-manipulation", + "name": "Panda Dataframe Manipulation", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084452" + ], + "created_at": "2026-07-10T10:12:42.308880", + "updated_at": "2026-07-10T10:12:42.308880", + "url": "/v1/software/panda-dataframe-manipulation" +} diff --git a/site/public/v1/software/pandion/index.json b/site/public/v1/software/pandion/index.json new file mode 100644 index 000000000000..6cf9a1470e5c --- /dev/null +++ b/site/public/v1/software/pandion/index.json @@ -0,0 +1,19 @@ +{ + "id": 7444, + "slug": "pandion", + "name": "Pandion", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q58561" + ], + "created_at": "2026-07-10T10:12:42.308880", + "updated_at": "2026-07-10T10:12:42.308880", + "url": "/v1/software/pandion" +} diff --git a/site/public/v1/software/pandix/index.json b/site/public/v1/software/pandix/index.json new file mode 100644 index 000000000000..480818d17b2c --- /dev/null +++ b/site/public/v1/software/pandix/index.json @@ -0,0 +1,19 @@ +{ + "id": 7445, + "slug": "pandix", + "name": "Pandix", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q21421147" + ], + "created_at": "2026-07-10T10:12:42.309883", + "updated_at": "2026-07-10T10:12:42.309883", + "url": "/v1/software/pandix" +} diff --git a/site/public/v1/software/pandora-eclipse-of-nashira/index.json b/site/public/v1/software/pandora-eclipse-of-nashira/index.json new file mode 100644 index 000000000000..2dff2d049cd9 --- /dev/null +++ b/site/public/v1/software/pandora-eclipse-of-nashira/index.json @@ -0,0 +1,19 @@ +{ + "id": 7446, + "slug": "pandora-eclipse-of-nashira", + "name": "Pandora: Eclipse of Nashira", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140420121" + ], + "created_at": "2026-07-10T10:12:42.309883", + "updated_at": "2026-07-10T10:12:42.309883", + "url": "/v1/software/pandora-eclipse-of-nashira" +} diff --git a/site/public/v1/software/pango/index.json b/site/public/v1/software/pango/index.json new file mode 100644 index 000000000000..400903f7b77b --- /dev/null +++ b/site/public/v1/software/pango/index.json @@ -0,0 +1,19 @@ +{ + "id": 7447, + "slug": "pango", + "name": "Pango", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16130355" + ], + "created_at": "2026-07-10T10:12:42.309883", + "updated_at": "2026-07-10T10:12:42.309883", + "url": "/v1/software/pango" +} diff --git a/site/public/v1/software/pangolin/index.json b/site/public/v1/software/pangolin/index.json new file mode 100644 index 000000000000..3b6b3fa1c8f8 --- /dev/null +++ b/site/public/v1/software/pangolin/index.json @@ -0,0 +1,23 @@ +{ + "id": 7448, + "slug": "pangolin", + "name": "PANGOLIN", + "release_date": "2020-04-30", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Python" + ], + "licenses": [ + "GNU General Public License, version 3.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105185169" + ], + "created_at": "2026-07-10T10:12:42.310965", + "updated_at": "2026-07-10T10:12:42.310965", + "url": "/v1/software/pangolin" +} diff --git a/site/public/v1/software/pangu-team/index.json b/site/public/v1/software/pangu-team/index.json new file mode 100644 index 000000000000..2a57fba69bb7 --- /dev/null +++ b/site/public/v1/software/pangu-team/index.json @@ -0,0 +1,22 @@ +{ + "id": 7449, + "slug": "pangu-team", + "name": "Pangu Team", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17502457" + ], + "created_at": "2026-07-10T10:12:42.310965", + "updated_at": "2026-07-10T10:12:42.310965", + "url": "/v1/software/pangu-team" +} diff --git a/site/public/v1/software/pangu-utility/index.json b/site/public/v1/software/pangu-utility/index.json new file mode 100644 index 000000000000..6dd59d4ecc71 --- /dev/null +++ b/site/public/v1/software/pangu-utility/index.json @@ -0,0 +1,19 @@ +{ + "id": 7450, + "slug": "pangu-utility", + "name": "Pangu utility", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7131002" + ], + "created_at": "2026-07-10T10:12:42.310965", + "updated_at": "2026-07-10T10:12:42.310965", + "url": "/v1/software/pangu-utility" +} diff --git a/site/public/v1/software/panorama-q7131493/index.json b/site/public/v1/software/panorama-q7131493/index.json new file mode 100644 index 000000000000..09b7ca84aae1 --- /dev/null +++ b/site/public/v1/software/panorama-q7131493/index.json @@ -0,0 +1,19 @@ +{ + "id": 7451, + "slug": "panorama-q7131493", + "name": "Panorama", + "release_date": "2004-06-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7131493" + ], + "created_at": "2026-07-10T10:12:42.311956", + "updated_at": "2026-07-10T10:12:42.311956", + "url": "/v1/software/panorama-q7131493" +} diff --git a/site/public/v1/software/panorama-q76186079/index.json b/site/public/v1/software/panorama-q76186079/index.json new file mode 100644 index 000000000000..e4c2f4749e0f --- /dev/null +++ b/site/public/v1/software/panorama-q76186079/index.json @@ -0,0 +1,19 @@ +{ + "id": 7452, + "slug": "panorama-q76186079", + "name": "Panorama", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76186079" + ], + "created_at": "2026-07-10T10:12:42.311956", + "updated_at": "2026-07-10T10:12:42.311956", + "url": "/v1/software/panorama-q76186079" +} diff --git a/site/public/v1/software/panorama/index.json b/site/public/v1/software/panorama/index.json new file mode 100644 index 000000000000..b1abc14c2194 --- /dev/null +++ b/site/public/v1/software/panorama/index.json @@ -0,0 +1,19 @@ +{ + "id": 7453, + "slug": "panorama", + "name": "Panorama", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7131495" + ], + "created_at": "2026-07-10T10:12:42.311956", + "updated_at": "2026-07-10T10:12:42.311956", + "url": "/v1/software/panorama" +} diff --git a/site/public/v1/software/panta-rhei-game-engine/index.json b/site/public/v1/software/panta-rhei-game-engine/index.json new file mode 100644 index 000000000000..72f0e0857bd2 --- /dev/null +++ b/site/public/v1/software/panta-rhei-game-engine/index.json @@ -0,0 +1,21 @@ +{ + "id": 7454, + "slug": "panta-rhei-game-engine", + "name": "Panta Rhei (game engine)", + "release_date": null, + "developers": [ + "Capcom" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17042691" + ], + "created_at": "2026-07-10T10:12:42.312953", + "updated_at": "2026-07-10T10:12:42.312953", + "url": "/v1/software/panta-rhei-game-engine" +} diff --git a/site/public/v1/software/panvs/index.json b/site/public/v1/software/panvs/index.json new file mode 100644 index 000000000000..b46c0d5f8bd2 --- /dev/null +++ b/site/public/v1/software/panvs/index.json @@ -0,0 +1,19 @@ +{ + "id": 7455, + "slug": "panvs", + "name": "PANVS", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084453" + ], + "created_at": "2026-07-10T10:12:42.312953", + "updated_at": "2026-07-10T10:12:42.312953", + "url": "/v1/software/panvs" +} diff --git a/site/public/v1/software/paparazzi-project/index.json b/site/public/v1/software/paparazzi-project/index.json new file mode 100644 index 000000000000..510b949ef0eb --- /dev/null +++ b/site/public/v1/software/paparazzi-project/index.json @@ -0,0 +1,19 @@ +{ + "id": 7456, + "slug": "paparazzi-project", + "name": "Paparazzi Project", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q516976" + ], + "created_at": "2026-07-10T10:12:42.312953", + "updated_at": "2026-07-10T10:12:42.312953", + "url": "/v1/software/paparazzi-project" +} diff --git a/site/public/v1/software/paper-machines/index.json b/site/public/v1/software/paper-machines/index.json new file mode 100644 index 000000000000..740b0fa88e41 --- /dev/null +++ b/site/public/v1/software/paper-machines/index.json @@ -0,0 +1,19 @@ +{ + "id": 7457, + "slug": "paper-machines", + "name": "Paper Machines", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084456" + ], + "created_at": "2026-07-10T10:12:42.313959", + "updated_at": "2026-07-10T10:12:42.313959", + "url": "/v1/software/paper-machines" +} diff --git a/site/public/v1/software/paperkey/index.json b/site/public/v1/software/paperkey/index.json new file mode 100644 index 000000000000..be6c6dc86f7b --- /dev/null +++ b/site/public/v1/software/paperkey/index.json @@ -0,0 +1,21 @@ +{ + "id": 7458, + "slug": "paperkey", + "name": "Paperkey", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "GNU General Public License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62856911" + ], + "created_at": "2026-07-10T10:12:42.313959", + "updated_at": "2026-07-10T10:12:42.313959", + "url": "/v1/software/paperkey" +} diff --git a/site/public/v1/software/paperpile/index.json b/site/public/v1/software/paperpile/index.json new file mode 100644 index 000000000000..acb6f96dfa85 --- /dev/null +++ b/site/public/v1/software/paperpile/index.json @@ -0,0 +1,19 @@ +{ + "id": 7459, + "slug": "paperpile", + "name": "Paperpile", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18158204" + ], + "created_at": "2026-07-10T10:12:42.314540", + "updated_at": "2026-07-10T10:12:42.314540", + "url": "/v1/software/paperpile" +} diff --git a/site/public/v1/software/paperport/index.json b/site/public/v1/software/paperport/index.json new file mode 100644 index 000000000000..929de0b4691b --- /dev/null +++ b/site/public/v1/software/paperport/index.json @@ -0,0 +1,21 @@ +{ + "id": 7460, + "slug": "paperport", + "name": "PaperPort", + "release_date": null, + "developers": [ + "Nuance Communications" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7132578" + ], + "created_at": "2026-07-10T10:12:42.314540", + "updated_at": "2026-07-10T10:12:42.314540", + "url": "/v1/software/paperport" +} diff --git a/site/public/v1/software/papertracer/index.json b/site/public/v1/software/papertracer/index.json new file mode 100644 index 000000000000..41907e77c2b4 --- /dev/null +++ b/site/public/v1/software/papertracer/index.json @@ -0,0 +1,19 @@ +{ + "id": 7461, + "slug": "papertracer", + "name": "PaperTracer", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28568013" + ], + "created_at": "2026-07-10T10:12:42.314540", + "updated_at": "2026-07-10T10:12:42.314540", + "url": "/v1/software/papertracer" +} diff --git a/site/public/v1/software/paprika-app/index.json b/site/public/v1/software/paprika-app/index.json new file mode 100644 index 000000000000..2591823c41f2 --- /dev/null +++ b/site/public/v1/software/paprika-app/index.json @@ -0,0 +1,19 @@ +{ + "id": 7462, + "slug": "paprika-app", + "name": "Paprika (app)", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124462311" + ], + "created_at": "2026-07-10T10:12:42.315612", + "updated_at": "2026-07-10T10:12:42.315612", + "url": "/v1/software/paprika-app" +} diff --git a/site/public/v1/software/paps/index.json b/site/public/v1/software/paps/index.json new file mode 100644 index 000000000000..457c629143d4 --- /dev/null +++ b/site/public/v1/software/paps/index.json @@ -0,0 +1,19 @@ +{ + "id": 7463, + "slug": "paps", + "name": "paps", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60917923" + ], + "created_at": "2026-07-10T10:12:42.315612", + "updated_at": "2026-07-10T10:12:42.315612", + "url": "/v1/software/paps" +} diff --git a/site/public/v1/software/papyri/index.json b/site/public/v1/software/papyri/index.json new file mode 100644 index 000000000000..e3e14d062c2d --- /dev/null +++ b/site/public/v1/software/papyri/index.json @@ -0,0 +1,21 @@ +{ + "id": 7464, + "slug": "papyri", + "name": "papyri", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113050034" + ], + "created_at": "2026-07-10T10:12:42.315612", + "updated_at": "2026-07-10T10:12:42.315612", + "url": "/v1/software/papyri" +} diff --git a/site/public/v1/software/papyrus-autor-q106144081/index.json b/site/public/v1/software/papyrus-autor-q106144081/index.json new file mode 100644 index 000000000000..859c3db8b959 --- /dev/null +++ b/site/public/v1/software/papyrus-autor-q106144081/index.json @@ -0,0 +1,22 @@ +{ + "id": 7465, + "slug": "papyrus-autor-q106144081", + "name": "Papyrus Autor", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106144081" + ], + "created_at": "2026-07-10T10:12:42.316609", + "updated_at": "2026-07-10T10:12:42.316609", + "url": "/v1/software/papyrus-autor-q106144081" +} diff --git a/site/public/v1/software/papyrus-autor/index.json b/site/public/v1/software/papyrus-autor/index.json new file mode 100644 index 000000000000..0f13eaabe0bc --- /dev/null +++ b/site/public/v1/software/papyrus-autor/index.json @@ -0,0 +1,19 @@ +{ + "id": 7466, + "slug": "papyrus-autor", + "name": "Papyrus Autor", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1721110" + ], + "created_at": "2026-07-10T10:12:42.316609", + "updated_at": "2026-07-10T10:12:42.316609", + "url": "/v1/software/papyrus-autor" +} diff --git a/site/public/v1/software/para-mail/index.json b/site/public/v1/software/para-mail/index.json new file mode 100644 index 000000000000..d0e231732381 --- /dev/null +++ b/site/public/v1/software/para-mail/index.json @@ -0,0 +1,19 @@ +{ + "id": 7467, + "slug": "para-mail", + "name": "Para-Mail", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7133615" + ], + "created_at": "2026-07-10T10:12:42.316609", + "updated_at": "2026-07-10T10:12:42.316609", + "url": "/v1/software/para-mail" +} diff --git a/site/public/v1/software/paradox/index.json b/site/public/v1/software/paradox/index.json new file mode 100644 index 000000000000..01ae49fc89a4 --- /dev/null +++ b/site/public/v1/software/paradox/index.json @@ -0,0 +1,19 @@ +{ + "id": 7468, + "slug": "paradox", + "name": "Paradox", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7134438" + ], + "created_at": "2026-07-10T10:12:42.317623", + "updated_at": "2026-07-10T10:12:42.317623", + "url": "/v1/software/paradox" +} diff --git a/site/public/v1/software/paragon/index.json b/site/public/v1/software/paragon/index.json new file mode 100644 index 000000000000..7137cb5770fb --- /dev/null +++ b/site/public/v1/software/paragon/index.json @@ -0,0 +1,19 @@ +{ + "id": 7469, + "slug": "paragon", + "name": "Paragon", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3363445" + ], + "created_at": "2026-07-10T10:12:42.317623", + "updated_at": "2026-07-10T10:12:42.317623", + "url": "/v1/software/paragon" +} diff --git a/site/public/v1/software/parakey/index.json b/site/public/v1/software/parakey/index.json new file mode 100644 index 000000000000..e6e8d934f706 --- /dev/null +++ b/site/public/v1/software/parakey/index.json @@ -0,0 +1,22 @@ +{ + "id": 7470, + "slug": "parakey", + "name": "Parakey", + "release_date": null, + "developers": [ + "Joe Hewitt", + "Blake Ross" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7134830" + ], + "created_at": "2026-07-10T10:12:42.317623", + "updated_at": "2026-07-10T10:12:42.317623", + "url": "/v1/software/parakey" +} diff --git a/site/public/v1/software/parallels-ras/index.json b/site/public/v1/software/parallels-ras/index.json new file mode 100644 index 000000000000..f68a93d7b4a4 --- /dev/null +++ b/site/public/v1/software/parallels-ras/index.json @@ -0,0 +1,19 @@ +{ + "id": 7471, + "slug": "parallels-ras", + "name": "Parallels RAS", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60765799" + ], + "created_at": "2026-07-10T10:12:42.318618", + "updated_at": "2026-07-10T10:12:42.318618", + "url": "/v1/software/parallels-ras" +} diff --git a/site/public/v1/software/parallels-workstation-extreme/index.json b/site/public/v1/software/parallels-workstation-extreme/index.json new file mode 100644 index 000000000000..4eb54d926910 --- /dev/null +++ b/site/public/v1/software/parallels-workstation-extreme/index.json @@ -0,0 +1,21 @@ +{ + "id": 7472, + "slug": "parallels-workstation-extreme", + "name": "Parallels Workstation Extreme", + "release_date": null, + "developers": [ + "Parallels" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7135039" + ], + "created_at": "2026-07-10T10:12:42.318618", + "updated_at": "2026-07-10T10:12:42.318618", + "url": "/v1/software/parallels-workstation-extreme" +} diff --git a/site/public/v1/software/parameter-validation/index.json b/site/public/v1/software/parameter-validation/index.json new file mode 100644 index 000000000000..60a34ea05923 --- /dev/null +++ b/site/public/v1/software/parameter-validation/index.json @@ -0,0 +1,19 @@ +{ + "id": 7473, + "slug": "parameter-validation", + "name": "Parameter validation", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7135214" + ], + "created_at": "2026-07-10T10:12:42.318618", + "updated_at": "2026-07-10T10:12:42.318618", + "url": "/v1/software/parameter-validation" +} diff --git a/site/public/v1/software/parametric-memory/index.json b/site/public/v1/software/parametric-memory/index.json new file mode 100644 index 000000000000..aae4ced0dc41 --- /dev/null +++ b/site/public/v1/software/parametric-memory/index.json @@ -0,0 +1,19 @@ +{ + "id": 7474, + "slug": "parametric-memory", + "name": "Parametric Memory", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140446437" + ], + "created_at": "2026-07-10T10:12:42.318618", + "updated_at": "2026-07-10T10:12:42.318618", + "url": "/v1/software/parametric-memory" +} diff --git a/site/public/v1/software/paramind/index.json b/site/public/v1/software/paramind/index.json new file mode 100644 index 000000000000..5e4f7c377f83 --- /dev/null +++ b/site/public/v1/software/paramind/index.json @@ -0,0 +1,19 @@ +{ + "id": 7475, + "slug": "paramind", + "name": "Paramind", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7135250" + ], + "created_at": "2026-07-10T10:12:42.319646", + "updated_at": "2026-07-10T10:12:42.319646", + "url": "/v1/software/paramind" +} diff --git a/site/public/v1/software/parasoft-c-c-test/index.json b/site/public/v1/software/parasoft-c-c-test/index.json new file mode 100644 index 000000000000..a16187a56761 --- /dev/null +++ b/site/public/v1/software/parasoft-c-c-test/index.json @@ -0,0 +1,21 @@ +{ + "id": 7476, + "slug": "parasoft-c-c-test", + "name": "Parasoft C/C++test", + "release_date": null, + "developers": [ + "Parasoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7135974" + ], + "created_at": "2026-07-10T10:12:42.319646", + "updated_at": "2026-07-10T10:12:42.319646", + "url": "/v1/software/parasoft-c-c-test" +} diff --git a/site/public/v1/software/parasoft-concerto/index.json b/site/public/v1/software/parasoft-concerto/index.json new file mode 100644 index 000000000000..497a63848a7f --- /dev/null +++ b/site/public/v1/software/parasoft-concerto/index.json @@ -0,0 +1,21 @@ +{ + "id": 7477, + "slug": "parasoft-concerto", + "name": "Parasoft Concerto", + "release_date": null, + "developers": [ + "Parasoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7135973" + ], + "created_at": "2026-07-10T10:12:42.320628", + "updated_at": "2026-07-10T10:12:42.320628", + "url": "/v1/software/parasoft-concerto" +} diff --git a/site/public/v1/software/parasoft-virtualize/index.json b/site/public/v1/software/parasoft-virtualize/index.json new file mode 100644 index 000000000000..4e816825a899 --- /dev/null +++ b/site/public/v1/software/parasoft-virtualize/index.json @@ -0,0 +1,21 @@ +{ + "id": 7478, + "slug": "parasoft-virtualize", + "name": "Parasoft Virtualize", + "release_date": null, + "developers": [ + "Parasoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7135975" + ], + "created_at": "2026-07-10T10:12:42.320628", + "updated_at": "2026-07-10T10:12:42.320628", + "url": "/v1/software/parasoft-virtualize" +} diff --git a/site/public/v1/software/parasurf/index.json b/site/public/v1/software/parasurf/index.json new file mode 100644 index 000000000000..f23808294ab9 --- /dev/null +++ b/site/public/v1/software/parasurf/index.json @@ -0,0 +1,19 @@ +{ + "id": 7479, + "slug": "parasurf", + "name": "Parasurf", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16335195" + ], + "created_at": "2026-07-10T10:12:42.320628", + "updated_at": "2026-07-10T10:12:42.320628", + "url": "/v1/software/parasurf" +} diff --git a/site/public/v1/software/paratec/index.json b/site/public/v1/software/paratec/index.json new file mode 100644 index 000000000000..04ff3cc00751 --- /dev/null +++ b/site/public/v1/software/paratec/index.json @@ -0,0 +1,21 @@ +{ + "id": 7480, + "slug": "paratec", + "name": "PARATEC", + "release_date": null, + "developers": [ + "Lawrence Berkeley National Laboratory" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7118197" + ], + "created_at": "2026-07-10T10:12:42.320628", + "updated_at": "2026-07-10T10:12:42.320628", + "url": "/v1/software/paratec" +} diff --git a/site/public/v1/software/parboiled/index.json b/site/public/v1/software/parboiled/index.json new file mode 100644 index 000000000000..676bbde92bc2 --- /dev/null +++ b/site/public/v1/software/parboiled/index.json @@ -0,0 +1,23 @@ +{ + "id": 7481, + "slug": "parboiled", + "name": "Parboiled", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Java" + ], + "licenses": [ + "Apache License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7136354" + ], + "created_at": "2026-07-10T10:12:42.321645", + "updated_at": "2026-07-10T10:12:42.321645", + "url": "/v1/software/parboiled" +} diff --git a/site/public/v1/software/parent-support/index.json b/site/public/v1/software/parent-support/index.json new file mode 100644 index 000000000000..65f4e93ea581 --- /dev/null +++ b/site/public/v1/software/parent-support/index.json @@ -0,0 +1,19 @@ +{ + "id": 7482, + "slug": "parent-support", + "name": "Parent Support", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136731005" + ], + "created_at": "2026-07-10T10:12:42.321645", + "updated_at": "2026-07-10T10:12:42.321645", + "url": "/v1/software/parent-support" +} diff --git a/site/public/v1/software/parlatype/index.json b/site/public/v1/software/parlatype/index.json new file mode 100644 index 000000000000..123e5c2f1519 --- /dev/null +++ b/site/public/v1/software/parlatype/index.json @@ -0,0 +1,21 @@ +{ + "id": 7483, + "slug": "parlatype", + "name": "Parlatype", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "GNU General Public License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105076288" + ], + "created_at": "2026-07-10T10:12:42.321645", + "updated_at": "2026-07-10T10:12:42.321645", + "url": "/v1/software/parlatype" +} diff --git a/site/public/v1/software/parsec/index.json b/site/public/v1/software/parsec/index.json new file mode 100644 index 000000000000..6424c8cc7c0e --- /dev/null +++ b/site/public/v1/software/parsec/index.json @@ -0,0 +1,19 @@ +{ + "id": 7484, + "slug": "parsec", + "name": "Parsec", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q55629120" + ], + "created_at": "2026-07-10T10:12:42.322638", + "updated_at": "2026-07-10T10:12:42.322638", + "url": "/v1/software/parsec" +} diff --git a/site/public/v1/software/parselmouth/index.json b/site/public/v1/software/parselmouth/index.json new file mode 100644 index 000000000000..2bd7ffd5849b --- /dev/null +++ b/site/public/v1/software/parselmouth/index.json @@ -0,0 +1,19 @@ +{ + "id": 7485, + "slug": "parselmouth", + "name": "Parselmouth", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113680991" + ], + "created_at": "2026-07-10T10:12:42.322638", + "updated_at": "2026-07-10T10:12:42.322638", + "url": "/v1/software/parselmouth" +} diff --git a/site/public/v1/software/parser-1-0/index.json b/site/public/v1/software/parser-1-0/index.json new file mode 100644 index 000000000000..9ac78eff4199 --- /dev/null +++ b/site/public/v1/software/parser-1-0/index.json @@ -0,0 +1,19 @@ +{ + "id": 7486, + "slug": "parser-1-0", + "name": "Parser 1.0", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087695" + ], + "created_at": "2026-07-10T10:12:42.322638", + "updated_at": "2026-07-10T10:12:42.322638", + "url": "/v1/software/parser-1-0" +} diff --git a/site/public/v1/software/parser-tei-neo4j-import/index.json b/site/public/v1/software/parser-tei-neo4j-import/index.json new file mode 100644 index 000000000000..2944f9f83499 --- /dev/null +++ b/site/public/v1/software/parser-tei-neo4j-import/index.json @@ -0,0 +1,19 @@ +{ + "id": 7487, + "slug": "parser-tei-neo4j-import", + "name": "Parser TEI-Neo4j Import", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087696" + ], + "created_at": "2026-07-10T10:12:42.323618", + "updated_at": "2026-07-10T10:12:42.323618", + "url": "/v1/software/parser-tei-neo4j-import" +} diff --git a/site/public/v1/software/parsifal/index.json b/site/public/v1/software/parsifal/index.json new file mode 100644 index 000000000000..a40ba4a153c6 --- /dev/null +++ b/site/public/v1/software/parsifal/index.json @@ -0,0 +1,21 @@ +{ + "id": 7488, + "slug": "parsifal", + "name": "Parsifal", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110539692" + ], + "created_at": "2026-07-10T10:12:42.323618", + "updated_at": "2026-07-10T10:12:42.323618", + "url": "/v1/software/parsifal" +} diff --git a/site/public/v1/software/participad/index.json b/site/public/v1/software/participad/index.json new file mode 100644 index 000000000000..68dbbeb6950f --- /dev/null +++ b/site/public/v1/software/participad/index.json @@ -0,0 +1,19 @@ +{ + "id": 7489, + "slug": "participad", + "name": "Participad", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084458" + ], + "created_at": "2026-07-10T10:12:42.323618", + "updated_at": "2026-07-10T10:12:42.323618", + "url": "/v1/software/participad" +} diff --git a/site/public/v1/software/partition-saving/index.json b/site/public/v1/software/partition-saving/index.json new file mode 100644 index 000000000000..fd4899c4f7d3 --- /dev/null +++ b/site/public/v1/software/partition-saving/index.json @@ -0,0 +1,21 @@ +{ + "id": 7490, + "slug": "partition-saving", + "name": "Partition-Saving", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17146613" + ], + "created_at": "2026-07-10T10:12:42.324616", + "updated_at": "2026-07-10T10:12:42.324616", + "url": "/v1/software/partition-saving" +} diff --git a/site/public/v1/software/partitionmagic/index.json b/site/public/v1/software/partitionmagic/index.json new file mode 100644 index 000000000000..31f4368b7aa4 --- /dev/null +++ b/site/public/v1/software/partitionmagic/index.json @@ -0,0 +1,24 @@ +{ + "id": 7491, + "slug": "partitionmagic", + "name": "PartitionMagic", + "release_date": null, + "developers": [ + "PowerQuest", + "Gen Digital" + ], + "publishers": [], + "operating_systems": [ + "Windows 95" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1473586" + ], + "created_at": "2026-07-10T10:12:42.324616", + "updated_at": "2026-07-10T10:12:42.324616", + "url": "/v1/software/partitionmagic" +} diff --git a/site/public/v1/software/partitur-editor/index.json b/site/public/v1/software/partitur-editor/index.json new file mode 100644 index 000000000000..9cd091d73128 --- /dev/null +++ b/site/public/v1/software/partitur-editor/index.json @@ -0,0 +1,19 @@ +{ + "id": 7492, + "slug": "partitur-editor", + "name": "Partitur Editor", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134729832" + ], + "created_at": "2026-07-10T10:12:42.324616", + "updated_at": "2026-07-10T10:12:42.324616", + "url": "/v1/software/partitur-editor" +} diff --git a/site/public/v1/software/parzu/index.json b/site/public/v1/software/parzu/index.json new file mode 100644 index 000000000000..937dca081265 --- /dev/null +++ b/site/public/v1/software/parzu/index.json @@ -0,0 +1,19 @@ +{ + "id": 7493, + "slug": "parzu", + "name": "Parzu", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084459" + ], + "created_at": "2026-07-10T10:12:42.325549", + "updated_at": "2026-07-10T10:12:42.325549", + "url": "/v1/software/parzu" +} diff --git a/site/public/v1/software/pas754/index.json b/site/public/v1/software/pas754/index.json new file mode 100644 index 000000000000..2e517c4aeb5a --- /dev/null +++ b/site/public/v1/software/pas754/index.json @@ -0,0 +1,19 @@ +{ + "id": 7494, + "slug": "pas754", + "name": "PAS754", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16956770" + ], + "created_at": "2026-07-10T10:12:42.325549", + "updated_at": "2026-07-10T10:12:42.325549", + "url": "/v1/software/pas754" +} diff --git a/site/public/v1/software/pass-sample-size-software/index.json b/site/public/v1/software/pass-sample-size-software/index.json new file mode 100644 index 000000000000..347a65910f10 --- /dev/null +++ b/site/public/v1/software/pass-sample-size-software/index.json @@ -0,0 +1,25 @@ +{ + "id": 7495, + "slug": "pass-sample-size-software", + "name": "PASS Sample Size Software", + "release_date": null, + "developers": [ + "NCSS" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7118257" + ], + "created_at": "2026-07-10T10:12:42.325549", + "updated_at": "2026-07-10T10:12:42.325549", + "url": "/v1/software/pass-sample-size-software" +} diff --git a/site/public/v1/software/pass2rent/index.json b/site/public/v1/software/pass2rent/index.json new file mode 100644 index 000000000000..1ff105066340 --- /dev/null +++ b/site/public/v1/software/pass2rent/index.json @@ -0,0 +1,23 @@ +{ + "id": 7496, + "slug": "pass2rent", + "name": "PASS2RENT", + "release_date": null, + "developers": [ + "Odifis" + ], + "publishers": [ + "Odifis" + ], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139917383" + ], + "created_at": "2026-07-10T10:12:42.325549", + "updated_at": "2026-07-10T10:12:42.325549", + "url": "/v1/software/pass2rent" +} diff --git a/site/public/v1/software/passenger-service-system/index.json b/site/public/v1/software/passenger-service-system/index.json new file mode 100644 index 000000000000..e1d5aee47f04 --- /dev/null +++ b/site/public/v1/software/passenger-service-system/index.json @@ -0,0 +1,19 @@ +{ + "id": 7497, + "slug": "passenger-service-system", + "name": "Passenger service system", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3509322" + ], + "created_at": "2026-07-10T10:12:42.326635", + "updated_at": "2026-07-10T10:12:42.326635", + "url": "/v1/software/passenger-service-system" +} diff --git a/site/public/v1/software/passolo/index.json b/site/public/v1/software/passolo/index.json new file mode 100644 index 000000000000..0f7408ea8b0c --- /dev/null +++ b/site/public/v1/software/passolo/index.json @@ -0,0 +1,23 @@ +{ + "id": 7498, + "slug": "passolo", + "name": "Passolo", + "release_date": null, + "developers": [ + "PASS Engineering", + "RWS Group", + "SDL" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7389463" + ], + "created_at": "2026-07-10T10:12:42.326635", + "updated_at": "2026-07-10T10:12:42.326635", + "url": "/v1/software/passolo" +} diff --git a/site/public/v1/software/passsecurium/index.json b/site/public/v1/software/passsecurium/index.json new file mode 100644 index 000000000000..30c267db543d --- /dev/null +++ b/site/public/v1/software/passsecurium/index.json @@ -0,0 +1,21 @@ +{ + "id": 7499, + "slug": "passsecurium", + "name": "PassSecurium", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107477769" + ], + "created_at": "2026-07-10T10:12:42.326635", + "updated_at": "2026-07-10T10:12:42.326635", + "url": "/v1/software/passsecurium" +} diff --git a/site/public/v1/software/passwdqc/index.json b/site/public/v1/software/passwdqc/index.json new file mode 100644 index 000000000000..a99d280278fc --- /dev/null +++ b/site/public/v1/software/passwdqc/index.json @@ -0,0 +1,19 @@ +{ + "id": 7500, + "slug": "passwdqc", + "name": "passwdqc", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62858900" + ], + "created_at": "2026-07-10T10:12:42.327661", + "updated_at": "2026-07-10T10:12:42.327661", + "url": "/v1/software/passwdqc" +} diff --git a/site/public/v1/software/password-depot/index.json b/site/public/v1/software/password-depot/index.json new file mode 100644 index 000000000000..4d4e1a05ea74 --- /dev/null +++ b/site/public/v1/software/password-depot/index.json @@ -0,0 +1,19 @@ +{ + "id": 7501, + "slug": "password-depot", + "name": "Password Depot", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2056185" + ], + "created_at": "2026-07-10T10:12:42.327661", + "updated_at": "2026-07-10T10:12:42.327661", + "url": "/v1/software/password-depot" +} diff --git a/site/public/v1/software/passwork-q140414609/index.json b/site/public/v1/software/passwork-q140414609/index.json new file mode 100644 index 000000000000..d6a64cbbd6e3 --- /dev/null +++ b/site/public/v1/software/passwork-q140414609/index.json @@ -0,0 +1,25 @@ +{ + "id": 7502, + "slug": "passwork-q140414609", + "name": "Passwork", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "iOS" + ], + "programming_languages": [ + "PHP" + ], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140414609" + ], + "created_at": "2026-07-10T10:12:42.327661", + "updated_at": "2026-07-10T10:12:42.327661", + "url": "/v1/software/passwork-q140414609" +} diff --git a/site/public/v1/software/passwork/index.json b/site/public/v1/software/passwork/index.json new file mode 100644 index 000000000000..baacab80888a --- /dev/null +++ b/site/public/v1/software/passwork/index.json @@ -0,0 +1,19 @@ +{ + "id": 7503, + "slug": "passwork", + "name": "Passwork", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140390581" + ], + "created_at": "2026-07-10T10:12:42.328646", + "updated_at": "2026-07-10T10:12:42.328646", + "url": "/v1/software/passwork" +} diff --git a/site/public/v1/software/pastel-accounting/index.json b/site/public/v1/software/pastel-accounting/index.json new file mode 100644 index 000000000000..ab2fc0f23f41 --- /dev/null +++ b/site/public/v1/software/pastel-accounting/index.json @@ -0,0 +1,19 @@ +{ + "id": 7504, + "slug": "pastel-accounting", + "name": "Pastel Accounting", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7142965" + ], + "created_at": "2026-07-10T10:12:42.328646", + "updated_at": "2026-07-10T10:12:42.328646", + "url": "/v1/software/pastel-accounting" +} diff --git a/site/public/v1/software/pastperfect-museum-software/index.json b/site/public/v1/software/pastperfect-museum-software/index.json new file mode 100644 index 000000000000..1b8102912439 --- /dev/null +++ b/site/public/v1/software/pastperfect-museum-software/index.json @@ -0,0 +1,19 @@ +{ + "id": 7505, + "slug": "pastperfect-museum-software", + "name": "PastPerfect Museum Software", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25111354" + ], + "created_at": "2026-07-10T10:12:42.328646", + "updated_at": "2026-07-10T10:12:42.328646", + "url": "/v1/software/pastperfect-museum-software" +} diff --git a/site/public/v1/software/pastpin/index.json b/site/public/v1/software/pastpin/index.json new file mode 100644 index 000000000000..6edf00f5182c --- /dev/null +++ b/site/public/v1/software/pastpin/index.json @@ -0,0 +1,19 @@ +{ + "id": 7506, + "slug": "pastpin", + "name": "Pastpin", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084461" + ], + "created_at": "2026-07-10T10:12:42.329621", + "updated_at": "2026-07-10T10:12:42.329621", + "url": "/v1/software/pastpin" +} diff --git a/site/public/v1/software/patatap/index.json b/site/public/v1/software/patatap/index.json new file mode 100644 index 000000000000..ec39ef93858b --- /dev/null +++ b/site/public/v1/software/patatap/index.json @@ -0,0 +1,19 @@ +{ + "id": 7507, + "slug": "patatap", + "name": "Patatap", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q48806004" + ], + "created_at": "2026-07-10T10:12:42.329621", + "updated_at": "2026-07-10T10:12:42.329621", + "url": "/v1/software/patatap" +} diff --git a/site/public/v1/software/patchstack/index.json b/site/public/v1/software/patchstack/index.json new file mode 100644 index 000000000000..5078cfa6a060 --- /dev/null +++ b/site/public/v1/software/patchstack/index.json @@ -0,0 +1,22 @@ +{ + "id": 7508, + "slug": "patchstack", + "name": "PatchStack", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134607627" + ], + "created_at": "2026-07-10T10:12:42.329621", + "updated_at": "2026-07-10T10:12:42.329621", + "url": "/v1/software/patchstack" +} diff --git a/site/public/v1/software/patchutils/index.json b/site/public/v1/software/patchutils/index.json new file mode 100644 index 000000000000..511987946fa3 --- /dev/null +++ b/site/public/v1/software/patchutils/index.json @@ -0,0 +1,19 @@ +{ + "id": 7509, + "slug": "patchutils", + "name": "patchutils", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62863497" + ], + "created_at": "2026-07-10T10:12:42.330620", + "updated_at": "2026-07-10T10:12:42.330620", + "url": "/v1/software/patchutils" +} diff --git a/site/public/v1/software/patentem/index.json b/site/public/v1/software/patentem/index.json new file mode 100644 index 000000000000..961f142dc947 --- /dev/null +++ b/site/public/v1/software/patentem/index.json @@ -0,0 +1,19 @@ +{ + "id": 7510, + "slug": "patentem", + "name": "PATENTEM", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q27102687" + ], + "created_at": "2026-07-10T10:12:42.330620", + "updated_at": "2026-07-10T10:12:42.330620", + "url": "/v1/software/patentem" +} diff --git a/site/public/v1/software/patient-history-and-physical/index.json b/site/public/v1/software/patient-history-and-physical/index.json new file mode 100644 index 000000000000..6d0259bc4e5f --- /dev/null +++ b/site/public/v1/software/patient-history-and-physical/index.json @@ -0,0 +1,19 @@ +{ + "id": 7511, + "slug": "patient-history-and-physical", + "name": "Patient History and Physical", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121631714" + ], + "created_at": "2026-07-10T10:12:42.330620", + "updated_at": "2026-07-10T10:12:42.330620", + "url": "/v1/software/patient-history-and-physical" +} diff --git a/site/public/v1/software/patriot/index.json b/site/public/v1/software/patriot/index.json new file mode 100644 index 000000000000..1cafa1023f35 --- /dev/null +++ b/site/public/v1/software/patriot/index.json @@ -0,0 +1,28 @@ +{ + "id": 7512, + "slug": "patriot", + "name": "Patriot", + "release_date": null, + "developers": [ + "Aaroh" + ], + "publishers": [ + "Aaroh" + ], + "operating_systems": [ + "iOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111467112" + ], + "created_at": "2026-07-10T10:12:42.331645", + "updated_at": "2026-07-10T10:12:42.331645", + "url": "/v1/software/patriot" +} diff --git a/site/public/v1/software/patternhunter/index.json b/site/public/v1/software/patternhunter/index.json new file mode 100644 index 000000000000..ea7754b45903 --- /dev/null +++ b/site/public/v1/software/patternhunter/index.json @@ -0,0 +1,19 @@ +{ + "id": 7513, + "slug": "patternhunter", + "name": "PatternHunter", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17149134" + ], + "created_at": "2026-07-10T10:12:42.331645", + "updated_at": "2026-07-10T10:12:42.331645", + "url": "/v1/software/patternhunter" +} diff --git a/site/public/v1/software/patternrecognition/index.json b/site/public/v1/software/patternrecognition/index.json new file mode 100644 index 000000000000..c366b324b742 --- /dev/null +++ b/site/public/v1/software/patternrecognition/index.json @@ -0,0 +1,19 @@ +{ + "id": 7514, + "slug": "patternrecognition", + "name": "PatternRecognition", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q74527363" + ], + "created_at": "2026-07-10T10:12:42.331645", + "updated_at": "2026-07-10T10:12:42.331645", + "url": "/v1/software/patternrecognition" +} diff --git a/site/public/v1/software/pavucontrol/index.json b/site/public/v1/software/pavucontrol/index.json new file mode 100644 index 000000000000..81f89aec2605 --- /dev/null +++ b/site/public/v1/software/pavucontrol/index.json @@ -0,0 +1,21 @@ +{ + "id": 7515, + "slug": "pavucontrol", + "name": "pavucontrol", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "GNU General Public License, version 2.0 or later" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q104876454" + ], + "created_at": "2026-07-10T10:12:42.332643", + "updated_at": "2026-07-10T10:12:42.332643", + "url": "/v1/software/pavucontrol" +} diff --git a/site/public/v1/software/pay-stub-generator/index.json b/site/public/v1/software/pay-stub-generator/index.json new file mode 100644 index 000000000000..e001be248e43 --- /dev/null +++ b/site/public/v1/software/pay-stub-generator/index.json @@ -0,0 +1,19 @@ +{ + "id": 7516, + "slug": "pay-stub-generator", + "name": "Pay stub generator", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140051537" + ], + "created_at": "2026-07-10T10:12:42.332643", + "updated_at": "2026-07-10T10:12:42.332643", + "url": "/v1/software/pay-stub-generator" +} diff --git a/site/public/v1/software/paybox/index.json b/site/public/v1/software/paybox/index.json new file mode 100644 index 000000000000..2a728cc0338f --- /dev/null +++ b/site/public/v1/software/paybox/index.json @@ -0,0 +1,19 @@ +{ + "id": 7517, + "slug": "paybox", + "name": "PayBox", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q132855984" + ], + "created_at": "2026-07-10T10:12:42.332643", + "updated_at": "2026-07-10T10:12:42.332643", + "url": "/v1/software/paybox" +} diff --git a/site/public/v1/software/paykeeper/index.json b/site/public/v1/software/paykeeper/index.json new file mode 100644 index 000000000000..adddc53bcf4c --- /dev/null +++ b/site/public/v1/software/paykeeper/index.json @@ -0,0 +1,19 @@ +{ + "id": 7518, + "slug": "paykeeper", + "name": "Paykeeper", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q15714578" + ], + "created_at": "2026-07-10T10:12:42.333655", + "updated_at": "2026-07-10T10:12:42.333655", + "url": "/v1/software/paykeeper" +} diff --git a/site/public/v1/software/payme/index.json b/site/public/v1/software/payme/index.json new file mode 100644 index 000000000000..a8d1ff230333 --- /dev/null +++ b/site/public/v1/software/payme/index.json @@ -0,0 +1,21 @@ +{ + "id": 7519, + "slug": "payme", + "name": "PayMe", + "release_date": null, + "developers": [ + "The Hongkong and Shanghai Banking Corporation Limited" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q55629302" + ], + "created_at": "2026-07-10T10:12:42.333655", + "updated_at": "2026-07-10T10:12:42.333655", + "url": "/v1/software/payme" +} diff --git a/site/public/v1/software/payrails/index.json b/site/public/v1/software/payrails/index.json new file mode 100644 index 000000000000..8a1351904be9 --- /dev/null +++ b/site/public/v1/software/payrails/index.json @@ -0,0 +1,19 @@ +{ + "id": 7520, + "slug": "payrails", + "name": "Payrails", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137211152" + ], + "created_at": "2026-07-10T10:12:42.334603", + "updated_at": "2026-07-10T10:12:42.334603", + "url": "/v1/software/payrails" +} diff --git a/site/public/v1/software/paystubcreator-net/index.json b/site/public/v1/software/paystubcreator-net/index.json new file mode 100644 index 000000000000..42f59dcd7d52 --- /dev/null +++ b/site/public/v1/software/paystubcreator-net/index.json @@ -0,0 +1,19 @@ +{ + "id": 7521, + "slug": "paystubcreator-net", + "name": "PayStubCreator.net", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140246985" + ], + "created_at": "2026-07-10T10:12:42.334603", + "updated_at": "2026-07-10T10:12:42.334603", + "url": "/v1/software/paystubcreator-net" +} diff --git a/site/public/v1/software/paystubs-net/index.json b/site/public/v1/software/paystubs-net/index.json new file mode 100644 index 000000000000..d4a47014c8fc --- /dev/null +++ b/site/public/v1/software/paystubs-net/index.json @@ -0,0 +1,19 @@ +{ + "id": 7522, + "slug": "paystubs-net", + "name": "PayStubs.net", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140247563" + ], + "created_at": "2026-07-10T10:12:42.334603", + "updated_at": "2026-07-10T10:12:42.334603", + "url": "/v1/software/paystubs-net" +} diff --git a/site/public/v1/software/pbboard/index.json b/site/public/v1/software/pbboard/index.json new file mode 100644 index 000000000000..9bca7f5c7f88 --- /dev/null +++ b/site/public/v1/software/pbboard/index.json @@ -0,0 +1,19 @@ +{ + "id": 7523, + "slug": "pbboard", + "name": "PBBoard", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q21791425" + ], + "created_at": "2026-07-10T10:12:42.334603", + "updated_at": "2026-07-10T10:12:42.335610", + "url": "/v1/software/pbboard" +} diff --git a/site/public/v1/software/pbcore/index.json b/site/public/v1/software/pbcore/index.json new file mode 100644 index 000000000000..4e101c4070a3 --- /dev/null +++ b/site/public/v1/software/pbcore/index.json @@ -0,0 +1,22 @@ +{ + "id": 7524, + "slug": "pbcore", + "name": "PBCore", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Creative Commons Attribution-ShareAlike 4.0 International", + "Creative Commons CC0 License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7118406" + ], + "created_at": "2026-07-10T10:12:42.335610", + "updated_at": "2026-07-10T10:12:42.335610", + "url": "/v1/software/pbcore" +} diff --git a/site/public/v1/software/pbix-a11y/index.json b/site/public/v1/software/pbix-a11y/index.json new file mode 100644 index 000000000000..dd1ae0517880 --- /dev/null +++ b/site/public/v1/software/pbix-a11y/index.json @@ -0,0 +1,21 @@ +{ + "id": 7525, + "slug": "pbix-a11y", + "name": "PBIX A11y", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "cross-platform" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139799232" + ], + "created_at": "2026-07-10T10:12:42.335610", + "updated_at": "2026-07-10T10:12:42.335610", + "url": "/v1/software/pbix-a11y" +} diff --git a/site/public/v1/software/pc-dataexchange/index.json b/site/public/v1/software/pc-dataexchange/index.json new file mode 100644 index 000000000000..31d4dc32eba8 --- /dev/null +++ b/site/public/v1/software/pc-dataexchange/index.json @@ -0,0 +1,19 @@ +{ + "id": 7526, + "slug": "pc-dataexchange", + "name": "PC DataExchange", + "release_date": "1993-03-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121631734" + ], + "created_at": "2026-07-10T10:12:42.336619", + "updated_at": "2026-07-10T10:12:42.336619", + "url": "/v1/software/pc-dataexchange" +} diff --git a/site/public/v1/software/pc-file-transfer/index.json b/site/public/v1/software/pc-file-transfer/index.json new file mode 100644 index 000000000000..65e874a3a253 --- /dev/null +++ b/site/public/v1/software/pc-file-transfer/index.json @@ -0,0 +1,19 @@ +{ + "id": 7527, + "slug": "pc-file-transfer", + "name": "PC File Transfer", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4046159" + ], + "created_at": "2026-07-10T10:12:42.336619", + "updated_at": "2026-07-10T10:12:42.336619", + "url": "/v1/software/pc-file-transfer" +} diff --git a/site/public/v1/software/pc-file/index.json b/site/public/v1/software/pc-file/index.json new file mode 100644 index 000000000000..8e6eea437c28 --- /dev/null +++ b/site/public/v1/software/pc-file/index.json @@ -0,0 +1,19 @@ +{ + "id": 7528, + "slug": "pc-file", + "name": "PC-File", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7118469" + ], + "created_at": "2026-07-10T10:12:42.336619", + "updated_at": "2026-07-10T10:12:42.336619", + "url": "/v1/software/pc-file" +} diff --git a/site/public/v1/software/pc-gene/index.json b/site/public/v1/software/pc-gene/index.json new file mode 100644 index 000000000000..860fbb81818f --- /dev/null +++ b/site/public/v1/software/pc-gene/index.json @@ -0,0 +1,19 @@ +{ + "id": 7529, + "slug": "pc-gene", + "name": "PC/GENE", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q54669942" + ], + "created_at": "2026-07-10T10:12:42.336619", + "updated_at": "2026-07-10T10:12:42.336619", + "url": "/v1/software/pc-gene" +} diff --git a/site/public/v1/software/pc-globe/index.json b/site/public/v1/software/pc-globe/index.json new file mode 100644 index 000000000000..cee7f58685f2 --- /dev/null +++ b/site/public/v1/software/pc-globe/index.json @@ -0,0 +1,19 @@ +{ + "id": 7530, + "slug": "pc-globe", + "name": "PC Globe", + "release_date": "1989-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3887973" + ], + "created_at": "2026-07-10T10:12:42.337631", + "updated_at": "2026-07-10T10:12:42.337631", + "url": "/v1/software/pc-globe" +} diff --git a/site/public/v1/software/pc-kimmo/index.json b/site/public/v1/software/pc-kimmo/index.json new file mode 100644 index 000000000000..93efa82278f5 --- /dev/null +++ b/site/public/v1/software/pc-kimmo/index.json @@ -0,0 +1,19 @@ +{ + "id": 7531, + "slug": "pc-kimmo", + "name": "PC-KIMMO", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087697" + ], + "created_at": "2026-07-10T10:12:42.337631", + "updated_at": "2026-07-10T10:12:42.337631", + "url": "/v1/software/pc-kimmo" +} diff --git a/site/public/v1/software/pc-lint/index.json b/site/public/v1/software/pc-lint/index.json new file mode 100644 index 000000000000..207e0675fa56 --- /dev/null +++ b/site/public/v1/software/pc-lint/index.json @@ -0,0 +1,19 @@ +{ + "id": 7532, + "slug": "pc-lint", + "name": "PC-Lint", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7118471" + ], + "created_at": "2026-07-10T10:12:42.338614", + "updated_at": "2026-07-10T10:12:42.338614", + "url": "/v1/software/pc-lint" +} diff --git a/site/public/v1/software/pc-reservation/index.json b/site/public/v1/software/pc-reservation/index.json new file mode 100644 index 000000000000..4046372ce938 --- /dev/null +++ b/site/public/v1/software/pc-reservation/index.json @@ -0,0 +1,21 @@ +{ + "id": 7533, + "slug": "pc-reservation", + "name": "PC Reservation", + "release_date": null, + "developers": [ + "EnvisionWare" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125839369" + ], + "created_at": "2026-07-10T10:12:42.338614", + "updated_at": "2026-07-10T10:12:42.338614", + "url": "/v1/software/pc-reservation" +} diff --git a/site/public/v1/software/pc-talk/index.json b/site/public/v1/software/pc-talk/index.json new file mode 100644 index 000000000000..af1f4db41bda --- /dev/null +++ b/site/public/v1/software/pc-talk/index.json @@ -0,0 +1,19 @@ +{ + "id": 7534, + "slug": "pc-talk", + "name": "PC-Talk", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7118473" + ], + "created_at": "2026-07-10T10:12:42.338614", + "updated_at": "2026-07-10T10:12:42.338614", + "url": "/v1/software/pc-talk" +} diff --git a/site/public/v1/software/pc-write/index.json b/site/public/v1/software/pc-write/index.json new file mode 100644 index 000000000000..33711c6f4d86 --- /dev/null +++ b/site/public/v1/software/pc-write/index.json @@ -0,0 +1,21 @@ +{ + "id": 7535, + "slug": "pc-write", + "name": "PC-Write", + "release_date": "1983-01-01", + "developers": [ + "Bob Wallace" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1295055" + ], + "created_at": "2026-07-10T10:12:42.338614", + "updated_at": "2026-07-10T10:12:42.338614", + "url": "/v1/software/pc-write" +} diff --git a/site/public/v1/software/pc/index.json b/site/public/v1/software/pc/index.json new file mode 100644 index 000000000000..24387036efc6 --- /dev/null +++ b/site/public/v1/software/pc/index.json @@ -0,0 +1,19 @@ +{ + "id": 7536, + "slug": "pc", + "name": "PC²", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7118736" + ], + "created_at": "2026-07-10T10:12:42.339612", + "updated_at": "2026-07-10T10:12:42.339612", + "url": "/v1/software/pc" +} diff --git a/site/public/v1/software/pcanywhere/index.json b/site/public/v1/software/pcanywhere/index.json new file mode 100644 index 000000000000..2bdcfd76d83c --- /dev/null +++ b/site/public/v1/software/pcanywhere/index.json @@ -0,0 +1,22 @@ +{ + "id": 7537, + "slug": "pcanywhere", + "name": "pcAnywhere", + "release_date": "1986-01-01", + "developers": [ + "Dynamic Microprocessor Associates", + "Gen Digital" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17083321" + ], + "created_at": "2026-07-10T10:12:42.339612", + "updated_at": "2026-07-10T10:12:42.339612", + "url": "/v1/software/pcanywhere" +} diff --git a/site/public/v1/software/pcapfix/index.json b/site/public/v1/software/pcapfix/index.json new file mode 100644 index 000000000000..38a8bad62e20 --- /dev/null +++ b/site/public/v1/software/pcapfix/index.json @@ -0,0 +1,19 @@ +{ + "id": 7538, + "slug": "pcapfix", + "name": "pcapfix", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62856807" + ], + "created_at": "2026-07-10T10:12:42.339612", + "updated_at": "2026-07-10T10:12:42.339612", + "url": "/v1/software/pcapfix" +} diff --git a/site/public/v1/software/pcb-investigator/index.json b/site/public/v1/software/pcb-investigator/index.json new file mode 100644 index 000000000000..bbeb00451957 --- /dev/null +++ b/site/public/v1/software/pcb-investigator/index.json @@ -0,0 +1,19 @@ +{ + "id": 7539, + "slug": "pcb-investigator", + "name": "PCB-Investigator", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130457376" + ], + "created_at": "2026-07-10T10:12:42.340613", + "updated_at": "2026-07-10T10:12:42.340613", + "url": "/v1/software/pcb-investigator" +} diff --git a/site/public/v1/software/pcboard/index.json b/site/public/v1/software/pcboard/index.json new file mode 100644 index 000000000000..b831215178d2 --- /dev/null +++ b/site/public/v1/software/pcboard/index.json @@ -0,0 +1,21 @@ +{ + "id": 7540, + "slug": "pcboard", + "name": "PCBoard", + "release_date": "1983-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [ + "bulletin board system" + ], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2915753" + ], + "created_at": "2026-07-10T10:12:42.340613", + "updated_at": "2026-07-10T10:12:42.340613", + "url": "/v1/software/pcboard" +} diff --git a/site/public/v1/software/pchar/index.json b/site/public/v1/software/pchar/index.json new file mode 100644 index 000000000000..0dbd844784da --- /dev/null +++ b/site/public/v1/software/pchar/index.json @@ -0,0 +1,19 @@ +{ + "id": 7541, + "slug": "pchar", + "name": "PChar", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62856808" + ], + "created_at": "2026-07-10T10:12:42.340613", + "updated_at": "2026-07-10T10:12:42.340613", + "url": "/v1/software/pchar" +} diff --git a/site/public/v1/software/pci-geomatica/index.json b/site/public/v1/software/pci-geomatica/index.json new file mode 100644 index 000000000000..8a70fcff6e73 --- /dev/null +++ b/site/public/v1/software/pci-geomatica/index.json @@ -0,0 +1,19 @@ +{ + "id": 7542, + "slug": "pci-geomatica", + "name": "PCI Geomatica", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7118599" + ], + "created_at": "2026-07-10T10:12:42.341603", + "updated_at": "2026-07-10T10:12:42.341603", + "url": "/v1/software/pci-geomatica" +} diff --git a/site/public/v1/software/pcmark/index.json b/site/public/v1/software/pcmark/index.json new file mode 100644 index 000000000000..c40f7599a90d --- /dev/null +++ b/site/public/v1/software/pcmark/index.json @@ -0,0 +1,19 @@ +{ + "id": 7543, + "slug": "pcmark", + "name": "PCMark", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2471206" + ], + "created_at": "2026-07-10T10:12:42.341603", + "updated_at": "2026-07-10T10:12:42.341603", + "url": "/v1/software/pcmark" +} diff --git a/site/public/v1/software/pcmciautils/index.json b/site/public/v1/software/pcmciautils/index.json new file mode 100644 index 000000000000..f431cdb1a3cb --- /dev/null +++ b/site/public/v1/software/pcmciautils/index.json @@ -0,0 +1,19 @@ +{ + "id": 7544, + "slug": "pcmciautils", + "name": "pcmciautils", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62856804" + ], + "created_at": "2026-07-10T10:12:42.341603", + "updated_at": "2026-07-10T10:12:42.341603", + "url": "/v1/software/pcmciautils" +} diff --git a/site/public/v1/software/pconsole/index.json b/site/public/v1/software/pconsole/index.json new file mode 100644 index 000000000000..34398912e8b0 --- /dev/null +++ b/site/public/v1/software/pconsole/index.json @@ -0,0 +1,19 @@ +{ + "id": 7545, + "slug": "pconsole", + "name": "pconsole", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62856802" + ], + "created_at": "2026-07-10T10:12:42.342552", + "updated_at": "2026-07-10T10:12:42.342552", + "url": "/v1/software/pconsole" +} diff --git a/site/public/v1/software/pcs-transcriber/index.json b/site/public/v1/software/pcs-transcriber/index.json new file mode 100644 index 000000000000..731302327c28 --- /dev/null +++ b/site/public/v1/software/pcs-transcriber/index.json @@ -0,0 +1,23 @@ +{ + "id": 7546, + "slug": "pcs-transcriber", + "name": "PCS-Transcriber", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105890725" + ], + "created_at": "2026-07-10T10:12:42.342552", + "updated_at": "2026-07-10T10:12:42.342552", + "url": "/v1/software/pcs-transcriber" +} diff --git a/site/public/v1/software/pcsc-tools/index.json b/site/public/v1/software/pcsc-tools/index.json new file mode 100644 index 000000000000..06919edd9c25 --- /dev/null +++ b/site/public/v1/software/pcsc-tools/index.json @@ -0,0 +1,19 @@ +{ + "id": 7547, + "slug": "pcsc-tools", + "name": "pcsc-tools", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62858847" + ], + "created_at": "2026-07-10T10:12:42.343554", + "updated_at": "2026-07-10T10:12:42.343554", + "url": "/v1/software/pcsc-tools" +} diff --git a/site/public/v1/software/pdb-tools-q114840802/index.json b/site/public/v1/software/pdb-tools-q114840802/index.json new file mode 100644 index 000000000000..095573ff220a --- /dev/null +++ b/site/public/v1/software/pdb-tools-q114840802/index.json @@ -0,0 +1,19 @@ +{ + "id": 7548, + "slug": "pdb-tools-q114840802", + "name": "pdb-tools", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q114840802" + ], + "created_at": "2026-07-10T10:12:42.343554", + "updated_at": "2026-07-10T10:12:42.343554", + "url": "/v1/software/pdb-tools-q114840802" +} diff --git a/site/public/v1/software/pdb-tools/index.json b/site/public/v1/software/pdb-tools/index.json new file mode 100644 index 000000000000..2a2faa5c1736 --- /dev/null +++ b/site/public/v1/software/pdb-tools/index.json @@ -0,0 +1,19 @@ +{ + "id": 7549, + "slug": "pdb-tools", + "name": "pdb-tools", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065551" + ], + "created_at": "2026-07-10T10:12:42.343554", + "updated_at": "2026-07-10T10:12:42.343554", + "url": "/v1/software/pdb-tools" +} diff --git a/site/public/v1/software/pdb2pqr/index.json b/site/public/v1/software/pdb2pqr/index.json new file mode 100644 index 000000000000..0fd796ec2baa --- /dev/null +++ b/site/public/v1/software/pdb2pqr/index.json @@ -0,0 +1,19 @@ +{ + "id": 7550, + "slug": "pdb2pqr", + "name": "PDB2PQR", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62856803" + ], + "created_at": "2026-07-10T10:12:42.344551", + "updated_at": "2026-07-10T10:12:42.344551", + "url": "/v1/software/pdb2pqr" +} diff --git a/site/public/v1/software/pdbreport/index.json b/site/public/v1/software/pdbreport/index.json new file mode 100644 index 000000000000..0f209c1537c8 --- /dev/null +++ b/site/public/v1/software/pdbreport/index.json @@ -0,0 +1,19 @@ +{ + "id": 7551, + "slug": "pdbreport", + "name": "PDBREPORT", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7118751" + ], + "created_at": "2026-07-10T10:12:42.344551", + "updated_at": "2026-07-10T10:12:42.344551", + "url": "/v1/software/pdbreport" +} diff --git a/site/public/v1/software/pdcurses/index.json b/site/public/v1/software/pdcurses/index.json new file mode 100644 index 000000000000..a69b8a7b75c8 --- /dev/null +++ b/site/public/v1/software/pdcurses/index.json @@ -0,0 +1,21 @@ +{ + "id": 7552, + "slug": "pdcurses", + "name": "PDCurses", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7118778" + ], + "created_at": "2026-07-10T10:12:42.344551", + "updated_at": "2026-07-10T10:12:42.344551", + "url": "/v1/software/pdcurses" +} diff --git a/site/public/v1/software/pde-plugin-development-environment/index.json b/site/public/v1/software/pde-plugin-development-environment/index.json new file mode 100644 index 000000000000..35fe536f928e --- /dev/null +++ b/site/public/v1/software/pde-plugin-development-environment/index.json @@ -0,0 +1,19 @@ +{ + "id": 7553, + "slug": "pde-plugin-development-environment", + "name": "PDE - Plugin Development Environment", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76168452" + ], + "created_at": "2026-07-10T10:12:42.345552", + "updated_at": "2026-07-10T10:12:42.345552", + "url": "/v1/software/pde-plugin-development-environment" +} diff --git a/site/public/v1/software/pdf-compressor/index.json b/site/public/v1/software/pdf-compressor/index.json new file mode 100644 index 000000000000..85d5f60954b4 --- /dev/null +++ b/site/public/v1/software/pdf-compressor/index.json @@ -0,0 +1,23 @@ +{ + "id": 7554, + "slug": "pdf-compressor", + "name": "PDF Compressor", + "release_date": null, + "developers": [ + "C. M. Leal Ltda" + ], + "publishers": [], + "operating_systems": [ + "macOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138472059" + ], + "created_at": "2026-07-10T10:12:42.345552", + "updated_at": "2026-07-10T10:12:42.345552", + "url": "/v1/software/pdf-compressor" +} diff --git a/site/public/v1/software/pdf-expert/index.json b/site/public/v1/software/pdf-expert/index.json new file mode 100644 index 000000000000..0018898618d5 --- /dev/null +++ b/site/public/v1/software/pdf-expert/index.json @@ -0,0 +1,21 @@ +{ + "id": 7555, + "slug": "pdf-expert", + "name": "PDF Expert", + "release_date": null, + "developers": [ + "Readdle" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q29364603" + ], + "created_at": "2026-07-10T10:12:42.345552", + "updated_at": "2026-07-10T10:12:42.345552", + "url": "/v1/software/pdf-expert" +} diff --git a/site/public/v1/software/pdf-generator/index.json b/site/public/v1/software/pdf-generator/index.json new file mode 100644 index 000000000000..cf7088c41d65 --- /dev/null +++ b/site/public/v1/software/pdf-generator/index.json @@ -0,0 +1,19 @@ +{ + "id": 7556, + "slug": "pdf-generator", + "name": "PDF generator", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140247004" + ], + "created_at": "2026-07-10T10:12:42.345552", + "updated_at": "2026-07-10T10:12:42.345552", + "url": "/v1/software/pdf-generator" +} diff --git a/site/public/v1/software/pdf-guru/index.json b/site/public/v1/software/pdf-guru/index.json new file mode 100644 index 000000000000..ff0edb523d70 --- /dev/null +++ b/site/public/v1/software/pdf-guru/index.json @@ -0,0 +1,23 @@ +{ + "id": 7557, + "slug": "pdf-guru", + "name": "PDF Guru", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "iOS", + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q129169515" + ], + "created_at": "2026-07-10T10:12:42.346552", + "updated_at": "2026-07-10T10:12:42.346552", + "url": "/v1/software/pdf-guru" +} diff --git a/site/public/v1/software/pdf-parser/index.json b/site/public/v1/software/pdf-parser/index.json new file mode 100644 index 000000000000..6b0e1a88682a --- /dev/null +++ b/site/public/v1/software/pdf-parser/index.json @@ -0,0 +1,21 @@ +{ + "id": 7558, + "slug": "pdf-parser", + "name": "Pdf-parser", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Python" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16927870" + ], + "created_at": "2026-07-10T10:12:42.346552", + "updated_at": "2026-07-10T10:12:42.346552", + "url": "/v1/software/pdf-parser" +} diff --git a/site/public/v1/software/pdf-signer/index.json b/site/public/v1/software/pdf-signer/index.json new file mode 100644 index 000000000000..ef44e9c50f41 --- /dev/null +++ b/site/public/v1/software/pdf-signer/index.json @@ -0,0 +1,19 @@ +{ + "id": 7559, + "slug": "pdf-signer", + "name": "PDF Signer", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7118808" + ], + "created_at": "2026-07-10T10:12:42.347552", + "updated_at": "2026-07-10T10:12:42.347552", + "url": "/v1/software/pdf-signer" +} diff --git a/site/public/v1/software/pdf-studio/index.json b/site/public/v1/software/pdf-studio/index.json new file mode 100644 index 000000000000..142c1cab1f32 --- /dev/null +++ b/site/public/v1/software/pdf-studio/index.json @@ -0,0 +1,21 @@ +{ + "id": 7560, + "slug": "pdf-studio", + "name": "PDF Studio", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Java" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7118810" + ], + "created_at": "2026-07-10T10:12:42.347552", + "updated_at": "2026-07-10T10:12:42.347552", + "url": "/v1/software/pdf-studio" +} diff --git a/site/public/v1/software/pdf24-creator/index.json b/site/public/v1/software/pdf24-creator/index.json new file mode 100644 index 000000000000..c1f9f2dad364 --- /dev/null +++ b/site/public/v1/software/pdf24-creator/index.json @@ -0,0 +1,21 @@ +{ + "id": 7561, + "slug": "pdf24-creator", + "name": "PDF24 Creator", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16529629" + ], + "created_at": "2026-07-10T10:12:42.347552", + "updated_at": "2026-07-10T10:12:42.347552", + "url": "/v1/software/pdf24-creator" +} diff --git a/site/public/v1/software/pdf2djvu/index.json b/site/public/v1/software/pdf2djvu/index.json new file mode 100644 index 000000000000..24ea7965a6f2 --- /dev/null +++ b/site/public/v1/software/pdf2djvu/index.json @@ -0,0 +1,19 @@ +{ + "id": 7562, + "slug": "pdf2djvu", + "name": "pdf2djvu", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62856715" + ], + "created_at": "2026-07-10T10:12:42.347552", + "updated_at": "2026-07-10T10:12:42.347552", + "url": "/v1/software/pdf2djvu" +} diff --git a/site/public/v1/software/pdfdeal/index.json b/site/public/v1/software/pdfdeal/index.json new file mode 100644 index 000000000000..ea15dc09906f --- /dev/null +++ b/site/public/v1/software/pdfdeal/index.json @@ -0,0 +1,19 @@ +{ + "id": 7563, + "slug": "pdfdeal", + "name": "PDFdeal", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140045990" + ], + "created_at": "2026-07-10T10:12:42.348552", + "updated_at": "2026-07-10T10:12:42.348552", + "url": "/v1/software/pdfdeal" +} diff --git a/site/public/v1/software/pdfescape/index.json b/site/public/v1/software/pdfescape/index.json new file mode 100644 index 000000000000..00998399af60 --- /dev/null +++ b/site/public/v1/software/pdfescape/index.json @@ -0,0 +1,19 @@ +{ + "id": 7564, + "slug": "pdfescape", + "name": "PDFescape", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7118811" + ], + "created_at": "2026-07-10T10:12:42.348552", + "updated_at": "2026-07-10T10:12:42.348552", + "url": "/v1/software/pdfescape" +} diff --git a/site/public/v1/software/pdffigures-2-0/index.json b/site/public/v1/software/pdffigures-2-0/index.json new file mode 100644 index 000000000000..7cc1f13305f1 --- /dev/null +++ b/site/public/v1/software/pdffigures-2-0/index.json @@ -0,0 +1,23 @@ +{ + "id": 7565, + "slug": "pdffigures-2-0", + "name": "PDFFigures 2.0", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Scala" + ], + "licenses": [ + "Apache Software License 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108176591" + ], + "created_at": "2026-07-10T10:12:42.348552", + "updated_at": "2026-07-10T10:12:42.348552", + "url": "/v1/software/pdffigures-2-0" +} diff --git a/site/public/v1/software/pdffiller/index.json b/site/public/v1/software/pdffiller/index.json new file mode 100644 index 000000000000..65aa24b91179 --- /dev/null +++ b/site/public/v1/software/pdffiller/index.json @@ -0,0 +1,22 @@ +{ + "id": 7566, + "slug": "pdffiller", + "name": "pdfFiller", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Python", + "PHP" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136360997" + ], + "created_at": "2026-07-10T10:12:42.349630", + "updated_at": "2026-07-10T10:12:42.349630", + "url": "/v1/software/pdffiller" +} diff --git a/site/public/v1/software/pdfmyurl/index.json b/site/public/v1/software/pdfmyurl/index.json new file mode 100644 index 000000000000..d4cbfb9015d2 --- /dev/null +++ b/site/public/v1/software/pdfmyurl/index.json @@ -0,0 +1,19 @@ +{ + "id": 7567, + "slug": "pdfmyurl", + "name": "PDFmyURL", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084462" + ], + "created_at": "2026-07-10T10:12:42.349630", + "updated_at": "2026-07-10T10:12:42.349630", + "url": "/v1/software/pdfmyurl" +} diff --git a/site/public/v1/software/pdfo/index.json b/site/public/v1/software/pdfo/index.json new file mode 100644 index 000000000000..9262d5d31fe0 --- /dev/null +++ b/site/public/v1/software/pdfo/index.json @@ -0,0 +1,19 @@ +{ + "id": 7568, + "slug": "pdfo", + "name": "PDFO", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q95862375" + ], + "created_at": "2026-07-10T10:12:42.349630", + "updated_at": "2026-07-10T10:12:42.349630", + "url": "/v1/software/pdfo" +} diff --git a/site/public/v1/software/pdfsharp/index.json b/site/public/v1/software/pdfsharp/index.json new file mode 100644 index 000000000000..cb9bb33f7eb2 --- /dev/null +++ b/site/public/v1/software/pdfsharp/index.json @@ -0,0 +1,19 @@ +{ + "id": 7569, + "slug": "pdfsharp", + "name": "PDFsharp", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q65118869" + ], + "created_at": "2026-07-10T10:12:42.349630", + "updated_at": "2026-07-10T10:12:42.349630", + "url": "/v1/software/pdfsharp" +} diff --git a/site/public/v1/software/pdfvue/index.json b/site/public/v1/software/pdfvue/index.json new file mode 100644 index 000000000000..a9b6252d1965 --- /dev/null +++ b/site/public/v1/software/pdfvue/index.json @@ -0,0 +1,21 @@ +{ + "id": 7570, + "slug": "pdfvue", + "name": "Pdfvue", + "release_date": null, + "developers": [ + "unzip" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16927885" + ], + "created_at": "2026-07-10T10:12:42.350696", + "updated_at": "2026-07-10T10:12:42.350696", + "url": "/v1/software/pdfvue" +} diff --git a/site/public/v1/software/pdfwix/index.json b/site/public/v1/software/pdfwix/index.json new file mode 100644 index 000000000000..c71eabc9b0f1 --- /dev/null +++ b/site/public/v1/software/pdfwix/index.json @@ -0,0 +1,21 @@ +{ + "id": 7571, + "slug": "pdfwix", + "name": "PDFWix", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "web browser" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139898614" + ], + "created_at": "2026-07-10T10:12:42.350696", + "updated_at": "2026-07-10T10:12:42.350696", + "url": "/v1/software/pdfwix" +} diff --git a/site/public/v1/software/pe-format/index.json b/site/public/v1/software/pe-format/index.json new file mode 100644 index 000000000000..c0c4ed93a539 --- /dev/null +++ b/site/public/v1/software/pe-format/index.json @@ -0,0 +1,19 @@ +{ + "id": 7572, + "slug": "pe-format", + "name": "pe-format", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975325" + ], + "created_at": "2026-07-10T10:12:42.351611", + "updated_at": "2026-07-10T10:12:42.351611", + "url": "/v1/software/pe-format" +} diff --git a/site/public/v1/software/peacekeeper/index.json b/site/public/v1/software/peacekeeper/index.json new file mode 100644 index 000000000000..ba2518306bbf --- /dev/null +++ b/site/public/v1/software/peacekeeper/index.json @@ -0,0 +1,19 @@ +{ + "id": 7573, + "slug": "peacekeeper", + "name": "Peacekeeper", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4046552" + ], + "created_at": "2026-07-10T10:12:42.351611", + "updated_at": "2026-07-10T10:12:42.351611", + "url": "/v1/software/peacekeeper" +} diff --git a/site/public/v1/software/peach/index.json b/site/public/v1/software/peach/index.json new file mode 100644 index 000000000000..f2360e3b8c96 --- /dev/null +++ b/site/public/v1/software/peach/index.json @@ -0,0 +1,21 @@ +{ + "id": 7574, + "slug": "peach", + "name": "Peach", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "iOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22096342" + ], + "created_at": "2026-07-10T10:12:42.351611", + "updated_at": "2026-07-10T10:12:42.351611", + "url": "/v1/software/peach" +} diff --git a/site/public/v1/software/peachpie/index.json b/site/public/v1/software/peachpie/index.json new file mode 100644 index 000000000000..c9adf16b96da --- /dev/null +++ b/site/public/v1/software/peachpie/index.json @@ -0,0 +1,21 @@ +{ + "id": 7575, + "slug": "peachpie", + "name": "PeachPie", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Apache Software License 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q64137519" + ], + "created_at": "2026-07-10T10:12:42.351611", + "updated_at": "2026-07-10T10:12:42.351611", + "url": "/v1/software/peachpie" +} diff --git a/site/public/v1/software/peakfit/index.json b/site/public/v1/software/peakfit/index.json new file mode 100644 index 000000000000..1adf96aaf1b0 --- /dev/null +++ b/site/public/v1/software/peakfit/index.json @@ -0,0 +1,23 @@ +{ + "id": 7576, + "slug": "peakfit", + "name": "PeakFit", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7157795" + ], + "created_at": "2026-07-10T10:12:42.352613", + "updated_at": "2026-07-10T10:12:42.352613", + "url": "/v1/software/peakfit" +} diff --git a/site/public/v1/software/pearl-com/index.json b/site/public/v1/software/pearl-com/index.json new file mode 100644 index 000000000000..f7cedf51c252 --- /dev/null +++ b/site/public/v1/software/pearl-com/index.json @@ -0,0 +1,19 @@ +{ + "id": 7577, + "slug": "pearl-com", + "name": "Pearl.com", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107404536" + ], + "created_at": "2026-07-10T10:12:42.352613", + "updated_at": "2026-07-10T10:12:42.352613", + "url": "/v1/software/pearl-com" +} diff --git a/site/public/v1/software/pecl-ssh2/index.json b/site/public/v1/software/pecl-ssh2/index.json new file mode 100644 index 000000000000..715dfa0c91e2 --- /dev/null +++ b/site/public/v1/software/pecl-ssh2/index.json @@ -0,0 +1,19 @@ +{ + "id": 7578, + "slug": "pecl-ssh2", + "name": "pecl-ssh2", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975324" + ], + "created_at": "2026-07-10T10:12:42.352613", + "updated_at": "2026-07-10T10:12:42.352613", + "url": "/v1/software/pecl-ssh2" +} diff --git a/site/public/v1/software/pecs/index.json b/site/public/v1/software/pecs/index.json new file mode 100644 index 000000000000..8e375ceefb6b --- /dev/null +++ b/site/public/v1/software/pecs/index.json @@ -0,0 +1,21 @@ +{ + "id": 7579, + "slug": "pecs", + "name": "PECS", + "release_date": null, + "developers": [ + "activeIT Software & Consulting GmbH" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140312731" + ], + "created_at": "2026-07-10T10:12:42.353671", + "updated_at": "2026-07-10T10:12:42.353671", + "url": "/v1/software/pecs" +} diff --git a/site/public/v1/software/peekawoo/index.json b/site/public/v1/software/peekawoo/index.json new file mode 100644 index 000000000000..36363fecdeaf --- /dev/null +++ b/site/public/v1/software/peekawoo/index.json @@ -0,0 +1,19 @@ +{ + "id": 7580, + "slug": "peekawoo", + "name": "Peekawoo", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q55629375" + ], + "created_at": "2026-07-10T10:12:42.353671", + "updated_at": "2026-07-10T10:12:42.353671", + "url": "/v1/software/peekawoo" +} diff --git a/site/public/v1/software/peel/index.json b/site/public/v1/software/peel/index.json new file mode 100644 index 000000000000..1abab9f57ea0 --- /dev/null +++ b/site/public/v1/software/peel/index.json @@ -0,0 +1,23 @@ +{ + "id": 7581, + "slug": "peel", + "name": "Peel", + "release_date": "2007-01-01", + "developers": [], + "publishers": [], + "operating_systems": [ + "macOS" + ], + "programming_languages": [ + "Objective-C" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7160201" + ], + "created_at": "2026-07-10T10:12:42.353671", + "updated_at": "2026-07-10T10:12:42.353671", + "url": "/v1/software/peel" +} diff --git a/site/public/v1/software/peer2mail/index.json b/site/public/v1/software/peer2mail/index.json new file mode 100644 index 000000000000..86384eb3080f --- /dev/null +++ b/site/public/v1/software/peer2mail/index.json @@ -0,0 +1,19 @@ +{ + "id": 7582, + "slug": "peer2mail", + "name": "Peer2Mail", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3282368" + ], + "created_at": "2026-07-10T10:12:42.354611", + "updated_at": "2026-07-10T10:12:42.354611", + "url": "/v1/software/peer2mail" +} diff --git a/site/public/v1/software/peerio/index.json b/site/public/v1/software/peerio/index.json new file mode 100644 index 000000000000..b49bafe4e418 --- /dev/null +++ b/site/public/v1/software/peerio/index.json @@ -0,0 +1,21 @@ +{ + "id": 7583, + "slug": "peerio", + "name": "Peerio", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22907688" + ], + "created_at": "2026-07-10T10:12:42.354611", + "updated_at": "2026-07-10T10:12:42.354611", + "url": "/v1/software/peerio" +} diff --git a/site/public/v1/software/pegasus-mail/index.json b/site/public/v1/software/pegasus-mail/index.json new file mode 100644 index 000000000000..7ca001e292bb --- /dev/null +++ b/site/public/v1/software/pegasus-mail/index.json @@ -0,0 +1,24 @@ +{ + "id": 7584, + "slug": "pegasus-mail", + "name": "Pegasus Mail", + "release_date": null, + "developers": [ + "David Harris" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "freeware", + "donationware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1639942" + ], + "created_at": "2026-07-10T10:12:42.354611", + "updated_at": "2026-07-10T10:12:42.354611", + "url": "/v1/software/pegasus-mail" +} diff --git a/site/public/v1/software/pegasus/index.json b/site/public/v1/software/pegasus/index.json new file mode 100644 index 000000000000..6b35649fd3a9 --- /dev/null +++ b/site/public/v1/software/pegasus/index.json @@ -0,0 +1,19 @@ +{ + "id": 7585, + "slug": "pegasus", + "name": "Pegasus", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q104844402" + ], + "created_at": "2026-07-10T10:12:42.355618", + "updated_at": "2026-07-10T10:12:42.355618", + "url": "/v1/software/pegasus" +} diff --git a/site/public/v1/software/pegs-n-co/index.json b/site/public/v1/software/pegs-n-co/index.json new file mode 100644 index 000000000000..39cce8e73702 --- /dev/null +++ b/site/public/v1/software/pegs-n-co/index.json @@ -0,0 +1,21 @@ +{ + "id": 7586, + "slug": "pegs-n-co", + "name": "Pegs'n Co", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28957045" + ], + "created_at": "2026-07-10T10:12:42.355618", + "updated_at": "2026-07-10T10:12:42.355618", + "url": "/v1/software/pegs-n-co" +} diff --git a/site/public/v1/software/peid/index.json b/site/public/v1/software/peid/index.json new file mode 100644 index 000000000000..b64df6dbe27c --- /dev/null +++ b/site/public/v1/software/peid/index.json @@ -0,0 +1,19 @@ +{ + "id": 7587, + "slug": "peid", + "name": "PEiD", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4046172" + ], + "created_at": "2026-07-10T10:12:42.355618", + "updated_at": "2026-07-10T10:12:42.355618", + "url": "/v1/software/peid" +} diff --git a/site/public/v1/software/peltarion-synapse/index.json b/site/public/v1/software/peltarion-synapse/index.json new file mode 100644 index 000000000000..c547803f1872 --- /dev/null +++ b/site/public/v1/software/peltarion-synapse/index.json @@ -0,0 +1,23 @@ +{ + "id": 7588, + "slug": "peltarion-synapse", + "name": "Peltarion Synapse", + "release_date": null, + "developers": [ + "Peltarion" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "end-user license agreement" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17147020" + ], + "created_at": "2026-07-10T10:12:42.355618", + "updated_at": "2026-07-10T10:12:42.355618", + "url": "/v1/software/peltarion-synapse" +} diff --git a/site/public/v1/software/pem/index.json b/site/public/v1/software/pem/index.json new file mode 100644 index 000000000000..3c00ce375381 --- /dev/null +++ b/site/public/v1/software/pem/index.json @@ -0,0 +1,19 @@ +{ + "id": 7589, + "slug": "pem", + "name": "Pem", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76186146" + ], + "created_at": "2026-07-10T10:12:42.356626", + "updated_at": "2026-07-10T10:12:42.356626", + "url": "/v1/software/pem" +} diff --git a/site/public/v1/software/pentaho/index.json b/site/public/v1/software/pentaho/index.json new file mode 100644 index 000000000000..e11fc6833fbf --- /dev/null +++ b/site/public/v1/software/pentaho/index.json @@ -0,0 +1,23 @@ +{ + "id": 7590, + "slug": "pentaho", + "name": "Pentaho", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [ + "Java" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q644841" + ], + "created_at": "2026-07-10T10:12:42.356626", + "updated_at": "2026-07-10T10:12:42.356626", + "url": "/v1/software/pentaho" +} diff --git a/site/public/v1/software/penup/index.json b/site/public/v1/software/penup/index.json new file mode 100644 index 000000000000..6c4b6ed6712f --- /dev/null +++ b/site/public/v1/software/penup/index.json @@ -0,0 +1,19 @@ +{ + "id": 7591, + "slug": "penup", + "name": "PENUP", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124022549" + ], + "created_at": "2026-07-10T10:12:42.357616", + "updated_at": "2026-07-10T10:12:42.357616", + "url": "/v1/software/penup" +} diff --git a/site/public/v1/software/people/index.json b/site/public/v1/software/people/index.json new file mode 100644 index 000000000000..483f3fb90adb --- /dev/null +++ b/site/public/v1/software/people/index.json @@ -0,0 +1,19 @@ +{ + "id": 7592, + "slug": "people", + "name": "People", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1398059" + ], + "created_at": "2026-07-10T10:12:42.357616", + "updated_at": "2026-07-10T10:12:42.357616", + "url": "/v1/software/people" +} diff --git a/site/public/v1/software/pep8/index.json b/site/public/v1/software/pep8/index.json new file mode 100644 index 000000000000..214085fcc4a2 --- /dev/null +++ b/site/public/v1/software/pep8/index.json @@ -0,0 +1,19 @@ +{ + "id": 7593, + "slug": "pep8", + "name": "pep8", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106101992" + ], + "created_at": "2026-07-10T10:12:42.357616", + "updated_at": "2026-07-10T10:12:42.357616", + "url": "/v1/software/pep8" +} diff --git a/site/public/v1/software/percolator/index.json b/site/public/v1/software/percolator/index.json new file mode 100644 index 000000000000..f6a23eb4cb7d --- /dev/null +++ b/site/public/v1/software/percolator/index.json @@ -0,0 +1,19 @@ +{ + "id": 7594, + "slug": "percolator", + "name": "Percolator", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113089939" + ], + "created_at": "2026-07-10T10:12:42.357616", + "updated_at": "2026-07-10T10:12:42.357616", + "url": "/v1/software/percolator" +} diff --git a/site/public/v1/software/percona-toolkit/index.json b/site/public/v1/software/percona-toolkit/index.json new file mode 100644 index 000000000000..5ca4276da145 --- /dev/null +++ b/site/public/v1/software/percona-toolkit/index.json @@ -0,0 +1,21 @@ +{ + "id": 7595, + "slug": "percona-toolkit", + "name": "Percona Toolkit", + "release_date": null, + "developers": [ + "Percona" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q64604857" + ], + "created_at": "2026-07-10T10:12:42.358655", + "updated_at": "2026-07-10T10:12:42.358655", + "url": "/v1/software/percona-toolkit" +} diff --git a/site/public/v1/software/perfect-photo-suite/index.json b/site/public/v1/software/perfect-photo-suite/index.json new file mode 100644 index 000000000000..b1efdbb12a47 --- /dev/null +++ b/site/public/v1/software/perfect-photo-suite/index.json @@ -0,0 +1,19 @@ +{ + "id": 7596, + "slug": "perfect-photo-suite", + "name": "Perfect Photo Suite", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18412173" + ], + "created_at": "2026-07-10T10:12:42.358655", + "updated_at": "2026-07-10T10:12:42.358655", + "url": "/v1/software/perfect-photo-suite" +} diff --git a/site/public/v1/software/perfect/index.json b/site/public/v1/software/perfect/index.json new file mode 100644 index 000000000000..cacdff4416b1 --- /dev/null +++ b/site/public/v1/software/perfect/index.json @@ -0,0 +1,23 @@ +{ + "id": 7597, + "slug": "perfect", + "name": "Perfect", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Swift" + ], + "licenses": [ + "Apache License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25345276" + ], + "created_at": "2026-07-10T10:12:42.359635", + "updated_at": "2026-07-10T10:12:42.359635", + "url": "/v1/software/perfect" +} diff --git a/site/public/v1/software/perfectdisk/index.json b/site/public/v1/software/perfectdisk/index.json new file mode 100644 index 000000000000..fb9cc572679b --- /dev/null +++ b/site/public/v1/software/perfectdisk/index.json @@ -0,0 +1,19 @@ +{ + "id": 7598, + "slug": "perfectdisk", + "name": "PerfectDisk", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11239455" + ], + "created_at": "2026-07-10T10:12:42.359635", + "updated_at": "2026-07-10T10:12:42.359635", + "url": "/v1/software/perfectdisk" +} diff --git a/site/public/v1/software/perfectit/index.json b/site/public/v1/software/perfectit/index.json new file mode 100644 index 000000000000..f7ae62b53b45 --- /dev/null +++ b/site/public/v1/software/perfectit/index.json @@ -0,0 +1,23 @@ +{ + "id": 7599, + "slug": "perfectit", + "name": "PerfectIt", + "release_date": null, + "developers": [ + "Intelligent Editing Ltd" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [ + "editor" + ], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139384365" + ], + "created_at": "2026-07-10T10:12:42.359635", + "updated_at": "2026-07-10T10:12:42.359635", + "url": "/v1/software/perfectit" +} diff --git a/site/public/v1/software/perfony/index.json b/site/public/v1/software/perfony/index.json new file mode 100644 index 000000000000..4cd472997e21 --- /dev/null +++ b/site/public/v1/software/perfony/index.json @@ -0,0 +1,19 @@ +{ + "id": 7600, + "slug": "perfony", + "name": "Perfony", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140068122" + ], + "created_at": "2026-07-10T10:12:42.359635", + "updated_at": "2026-07-10T10:12:42.359635", + "url": "/v1/software/perfony" +} diff --git a/site/public/v1/software/perforce-alm/index.json b/site/public/v1/software/perforce-alm/index.json new file mode 100644 index 000000000000..487d53f9868d --- /dev/null +++ b/site/public/v1/software/perforce-alm/index.json @@ -0,0 +1,23 @@ +{ + "id": 7601, + "slug": "perforce-alm", + "name": "Perforce ALM", + "release_date": null, + "developers": [ + "Seapine Software" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17085212" + ], + "created_at": "2026-07-10T10:12:42.360596", + "updated_at": "2026-07-10T10:12:42.360596", + "url": "/v1/software/perforce-alm" +} diff --git a/site/public/v1/software/perforce-iplm/index.json b/site/public/v1/software/perforce-iplm/index.json new file mode 100644 index 000000000000..851a74550383 --- /dev/null +++ b/site/public/v1/software/perforce-iplm/index.json @@ -0,0 +1,19 @@ +{ + "id": 7602, + "slug": "perforce-iplm", + "name": "Perforce IPLM", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136842128" + ], + "created_at": "2026-07-10T10:12:42.360596", + "updated_at": "2026-07-10T10:12:42.360596", + "url": "/v1/software/perforce-iplm" +} diff --git a/site/public/v1/software/perforce-p4/index.json b/site/public/v1/software/perforce-p4/index.json new file mode 100644 index 000000000000..04ca17e980f5 --- /dev/null +++ b/site/public/v1/software/perforce-p4/index.json @@ -0,0 +1,23 @@ +{ + "id": 7603, + "slug": "perforce-p4", + "name": "Perforce P4", + "release_date": "1995-01-01", + "developers": [ + "Perforce Software" + ], + "publishers": [], + "operating_systems": [ + "IBM AIX" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1681038" + ], + "created_at": "2026-07-10T10:12:42.360596", + "updated_at": "2026-07-10T10:12:42.360596", + "url": "/v1/software/perforce-p4" +} diff --git a/site/public/v1/software/perforce-qac/index.json b/site/public/v1/software/perforce-qac/index.json new file mode 100644 index 000000000000..3e9d86184129 --- /dev/null +++ b/site/public/v1/software/perforce-qac/index.json @@ -0,0 +1,19 @@ +{ + "id": 7604, + "slug": "perforce-qac", + "name": "Perforce QAC", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1645384" + ], + "created_at": "2026-07-10T10:12:42.361608", + "updated_at": "2026-07-10T10:12:42.361608", + "url": "/v1/software/perforce-qac" +} diff --git a/site/public/v1/software/performance-analyzer/index.json b/site/public/v1/software/performance-analyzer/index.json new file mode 100644 index 000000000000..07b642a013ec --- /dev/null +++ b/site/public/v1/software/performance-analyzer/index.json @@ -0,0 +1,21 @@ +{ + "id": 7605, + "slug": "performance-analyzer", + "name": "Performance Analyzer", + "release_date": null, + "developers": [ + "Sun Microsystems" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18387706" + ], + "created_at": "2026-07-10T10:12:42.361608", + "updated_at": "2026-07-10T10:12:42.361608", + "url": "/v1/software/performance-analyzer" +} diff --git a/site/public/v1/software/performance-counter-monitor/index.json b/site/public/v1/software/performance-counter-monitor/index.json new file mode 100644 index 000000000000..b0e6c4e605e5 --- /dev/null +++ b/site/public/v1/software/performance-counter-monitor/index.json @@ -0,0 +1,23 @@ +{ + "id": 7606, + "slug": "performance-counter-monitor", + "name": "Performance Counter Monitor", + "release_date": null, + "developers": [ + "Roman Dementiev" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "3-clause BSD License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117212013" + ], + "created_at": "2026-07-10T10:12:42.361608", + "updated_at": "2026-07-10T10:12:42.361608", + "url": "/v1/software/performance-counter-monitor" +} diff --git a/site/public/v1/software/performance-management-software/index.json b/site/public/v1/software/performance-management-software/index.json new file mode 100644 index 000000000000..603132dd9b14 --- /dev/null +++ b/site/public/v1/software/performance-management-software/index.json @@ -0,0 +1,19 @@ +{ + "id": 7607, + "slug": "performance-management-software", + "name": "Performance Management Software", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135527093" + ], + "created_at": "2026-07-10T10:12:42.362623", + "updated_at": "2026-07-10T10:12:42.362623", + "url": "/v1/software/performance-management-software" +} diff --git a/site/public/v1/software/perkeep/index.json b/site/public/v1/software/perkeep/index.json new file mode 100644 index 000000000000..144b66c05556 --- /dev/null +++ b/site/public/v1/software/perkeep/index.json @@ -0,0 +1,25 @@ +{ + "id": 7608, + "slug": "perkeep", + "name": "Perkeep", + "release_date": null, + "developers": [ + "Brad Fitzpatrick" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Go" + ], + "licenses": [ + "Apache License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18215949" + ], + "created_at": "2026-07-10T10:12:42.362623", + "updated_at": "2026-07-10T10:12:42.362623", + "url": "/v1/software/perkeep" +} diff --git a/site/public/v1/software/perl-cleaner/index.json b/site/public/v1/software/perl-cleaner/index.json new file mode 100644 index 000000000000..4b7659dbc8fa --- /dev/null +++ b/site/public/v1/software/perl-cleaner/index.json @@ -0,0 +1,19 @@ +{ + "id": 7609, + "slug": "perl-cleaner", + "name": "perl-cleaner", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975327" + ], + "created_at": "2026-07-10T10:12:42.362623", + "updated_at": "2026-07-10T10:12:42.362623", + "url": "/v1/software/perl-cleaner" +} diff --git a/site/public/v1/software/perl-programming-documentation/index.json b/site/public/v1/software/perl-programming-documentation/index.json new file mode 100644 index 000000000000..e8327ab6bd67 --- /dev/null +++ b/site/public/v1/software/perl-programming-documentation/index.json @@ -0,0 +1,19 @@ +{ + "id": 7610, + "slug": "perl-programming-documentation", + "name": "Perl Programming Documentation", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28458051" + ], + "created_at": "2026-07-10T10:12:42.363595", + "updated_at": "2026-07-10T10:12:42.363595", + "url": "/v1/software/perl-programming-documentation" +} diff --git a/site/public/v1/software/permanitai/index.json b/site/public/v1/software/permanitai/index.json new file mode 100644 index 000000000000..2484ba176be8 --- /dev/null +++ b/site/public/v1/software/permanitai/index.json @@ -0,0 +1,24 @@ +{ + "id": 7611, + "slug": "permanitai", + "name": "PERMANITAI", + "release_date": "2026-04-17", + "developers": [ + "Andreas Ehstand" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Creative Commons Attribution-ShareAlike", + "Creative Commons Attribution-NonCommercial-NoDerivatives 4.0 International" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139387178" + ], + "created_at": "2026-07-10T10:12:42.363595", + "updated_at": "2026-07-10T10:12:42.363595", + "url": "/v1/software/permanitai" +} diff --git a/site/public/v1/software/permission-driven-user-interface/index.json b/site/public/v1/software/permission-driven-user-interface/index.json new file mode 100644 index 000000000000..05acfe45c3a9 --- /dev/null +++ b/site/public/v1/software/permission-driven-user-interface/index.json @@ -0,0 +1,19 @@ +{ + "id": 7612, + "slug": "permission-driven-user-interface", + "name": "permission-driven user interface", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16919020" + ], + "created_at": "2026-07-10T10:12:42.363595", + "updated_at": "2026-07-10T10:12:42.363595", + "url": "/v1/software/permission-driven-user-interface" +} diff --git a/site/public/v1/software/personal-agent-world/index.json b/site/public/v1/software/personal-agent-world/index.json new file mode 100644 index 000000000000..2bfbd307a7f3 --- /dev/null +++ b/site/public/v1/software/personal-agent-world/index.json @@ -0,0 +1,19 @@ +{ + "id": 7613, + "slug": "personal-agent-world", + "name": "Personal Agent World", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11239491" + ], + "created_at": "2026-07-10T10:12:42.363595", + "updated_at": "2026-07-10T10:12:42.363595", + "url": "/v1/software/personal-agent-world" +} diff --git a/site/public/v1/software/personal-brain/index.json b/site/public/v1/software/personal-brain/index.json new file mode 100644 index 000000000000..19fdf00f6bba --- /dev/null +++ b/site/public/v1/software/personal-brain/index.json @@ -0,0 +1,19 @@ +{ + "id": 7614, + "slug": "personal-brain", + "name": "Personal Brain", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084464" + ], + "created_at": "2026-07-10T10:12:42.364617", + "updated_at": "2026-07-10T10:12:42.364617", + "url": "/v1/software/personal-brain" +} diff --git a/site/public/v1/software/personal-henshucho/index.json b/site/public/v1/software/personal-henshucho/index.json new file mode 100644 index 000000000000..057ec1738af4 --- /dev/null +++ b/site/public/v1/software/personal-henshucho/index.json @@ -0,0 +1,21 @@ +{ + "id": 7615, + "slug": "personal-henshucho", + "name": "Personal henshucho", + "release_date": null, + "developers": [ + "Sourcenext" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109370465" + ], + "created_at": "2026-07-10T10:12:42.364617", + "updated_at": "2026-07-10T10:12:42.364617", + "url": "/v1/software/personal-henshucho" +} diff --git a/site/public/v1/software/personal-knowbase/index.json b/site/public/v1/software/personal-knowbase/index.json new file mode 100644 index 000000000000..2c353bfb397e --- /dev/null +++ b/site/public/v1/software/personal-knowbase/index.json @@ -0,0 +1,19 @@ +{ + "id": 7616, + "slug": "personal-knowbase", + "name": "Personal Knowbase", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7170522" + ], + "created_at": "2026-07-10T10:12:42.365608", + "updated_at": "2026-07-10T10:12:42.365608", + "url": "/v1/software/personal-knowbase" +} diff --git a/site/public/v1/software/pervasive-psql/index.json b/site/public/v1/software/pervasive-psql/index.json new file mode 100644 index 000000000000..3c3e79a435cb --- /dev/null +++ b/site/public/v1/software/pervasive-psql/index.json @@ -0,0 +1,21 @@ +{ + "id": 7617, + "slug": "pervasive-psql", + "name": "Pervasive PSQL", + "release_date": null, + "developers": [ + "Actian" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7171236" + ], + "created_at": "2026-07-10T10:12:42.365608", + "updated_at": "2026-07-10T10:12:42.365608", + "url": "/v1/software/pervasive-psql" +} diff --git a/site/public/v1/software/pesim/index.json b/site/public/v1/software/pesim/index.json new file mode 100644 index 000000000000..ea087c424e9c --- /dev/null +++ b/site/public/v1/software/pesim/index.json @@ -0,0 +1,21 @@ +{ + "id": 7618, + "slug": "pesim", + "name": "PESim", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q119787319" + ], + "created_at": "2026-07-10T10:12:42.365608", + "updated_at": "2026-07-10T10:12:42.365608", + "url": "/v1/software/pesim" +} diff --git a/site/public/v1/software/petal-search/index.json b/site/public/v1/software/petal-search/index.json new file mode 100644 index 000000000000..8a6e0d31245c --- /dev/null +++ b/site/public/v1/software/petal-search/index.json @@ -0,0 +1,19 @@ +{ + "id": 7619, + "slug": "petal-search", + "name": "Petal Search", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q104399280" + ], + "created_at": "2026-07-10T10:12:42.365608", + "updated_at": "2026-07-10T10:12:42.365608", + "url": "/v1/software/petal-search" +} diff --git a/site/public/v1/software/petname/index.json b/site/public/v1/software/petname/index.json new file mode 100644 index 000000000000..7b74f2e79298 --- /dev/null +++ b/site/public/v1/software/petname/index.json @@ -0,0 +1,19 @@ +{ + "id": 7620, + "slug": "petname", + "name": "Petname", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7178469" + ], + "created_at": "2026-07-10T10:12:42.366610", + "updated_at": "2026-07-10T10:12:42.366610", + "url": "/v1/software/petname" +} diff --git a/site/public/v1/software/petrel/index.json b/site/public/v1/software/petrel/index.json new file mode 100644 index 000000000000..9ad7df0b876f --- /dev/null +++ b/site/public/v1/software/petrel/index.json @@ -0,0 +1,23 @@ +{ + "id": 7621, + "slug": "petrel", + "name": "Petrel", + "release_date": null, + "developers": [ + "SLB" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2153989" + ], + "created_at": "2026-07-10T10:12:42.366610", + "updated_at": "2026-07-10T10:12:42.366610", + "url": "/v1/software/petrel" +} diff --git a/site/public/v1/software/petrify/index.json b/site/public/v1/software/petrify/index.json new file mode 100644 index 000000000000..d69284cca96c --- /dev/null +++ b/site/public/v1/software/petrify/index.json @@ -0,0 +1,21 @@ +{ + "id": 7622, + "slug": "petrify", + "name": "petrify", + "release_date": null, + "developers": [ + "Jordi Cortadella" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q73094064" + ], + "created_at": "2026-07-10T10:12:42.366610", + "updated_at": "2026-07-10T10:12:42.366610", + "url": "/v1/software/petrify" +} diff --git a/site/public/v1/software/petsc/index.json b/site/public/v1/software/petsc/index.json new file mode 100644 index 000000000000..3a551918e56b --- /dev/null +++ b/site/public/v1/software/petsc/index.json @@ -0,0 +1,21 @@ +{ + "id": 7623, + "slug": "petsc", + "name": "PETSc", + "release_date": null, + "developers": [ + "Barry F. Smith" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116523275" + ], + "created_at": "2026-07-10T10:12:42.367619", + "updated_at": "2026-07-10T10:12:42.367619", + "url": "/v1/software/petsc" +} diff --git a/site/public/v1/software/petsynth/index.json b/site/public/v1/software/petsynth/index.json new file mode 100644 index 000000000000..60b1005a480f --- /dev/null +++ b/site/public/v1/software/petsynth/index.json @@ -0,0 +1,19 @@ +{ + "id": 7624, + "slug": "petsynth", + "name": "PetSynth", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17144240" + ], + "created_at": "2026-07-10T10:12:42.367619", + "updated_at": "2026-07-10T10:12:42.367619", + "url": "/v1/software/petsynth" +} diff --git a/site/public/v1/software/pflogsumm/index.json b/site/public/v1/software/pflogsumm/index.json new file mode 100644 index 000000000000..cf792e342856 --- /dev/null +++ b/site/public/v1/software/pflogsumm/index.json @@ -0,0 +1,19 @@ +{ + "id": 7625, + "slug": "pflogsumm", + "name": "pflogsumm", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62856703" + ], + "created_at": "2026-07-10T10:12:42.367619", + "updated_at": "2026-07-10T10:12:42.367619", + "url": "/v1/software/pflogsumm" +} diff --git a/site/public/v1/software/pfqueue/index.json b/site/public/v1/software/pfqueue/index.json new file mode 100644 index 000000000000..2acf7d2f5c37 --- /dev/null +++ b/site/public/v1/software/pfqueue/index.json @@ -0,0 +1,19 @@ +{ + "id": 7626, + "slug": "pfqueue", + "name": "pfqueue", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62856695" + ], + "created_at": "2026-07-10T10:12:42.368611", + "updated_at": "2026-07-10T10:12:42.368611", + "url": "/v1/software/pfqueue" +} diff --git a/site/public/v1/software/pgbadger/index.json b/site/public/v1/software/pgbadger/index.json new file mode 100644 index 000000000000..ee61c291f547 --- /dev/null +++ b/site/public/v1/software/pgbadger/index.json @@ -0,0 +1,19 @@ +{ + "id": 7627, + "slug": "pgbadger", + "name": "pgBadger", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62856690" + ], + "created_at": "2026-07-10T10:12:42.368611", + "updated_at": "2026-07-10T10:12:42.368611", + "url": "/v1/software/pgbadger" +} diff --git a/site/public/v1/software/pgmodeler/index.json b/site/public/v1/software/pgmodeler/index.json new file mode 100644 index 000000000000..3e52a824266d --- /dev/null +++ b/site/public/v1/software/pgmodeler/index.json @@ -0,0 +1,19 @@ +{ + "id": 7628, + "slug": "pgmodeler", + "name": "pgmodeler", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065367" + ], + "created_at": "2026-07-10T10:12:42.368611", + "updated_at": "2026-07-10T10:12:42.368611", + "url": "/v1/software/pgmodeler" +} diff --git a/site/public/v1/software/pgpfone/index.json b/site/public/v1/software/pgpfone/index.json new file mode 100644 index 000000000000..cb4b125ac217 --- /dev/null +++ b/site/public/v1/software/pgpfone/index.json @@ -0,0 +1,21 @@ +{ + "id": 7629, + "slug": "pgpfone", + "name": "PGPfone", + "release_date": null, + "developers": [ + "Phil Zimmermann" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2044098" + ], + "created_at": "2026-07-10T10:12:42.369631", + "updated_at": "2026-07-10T10:12:42.369631", + "url": "/v1/software/pgpfone" +} diff --git a/site/public/v1/software/pgxnclient/index.json b/site/public/v1/software/pgxnclient/index.json new file mode 100644 index 000000000000..d81c690afd14 --- /dev/null +++ b/site/public/v1/software/pgxnclient/index.json @@ -0,0 +1,19 @@ +{ + "id": 7630, + "slug": "pgxnclient", + "name": "pgxnclient", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60864670" + ], + "created_at": "2026-07-10T10:12:42.369631", + "updated_at": "2026-07-10T10:12:42.369631", + "url": "/v1/software/pgxnclient" +} diff --git a/site/public/v1/software/phalanger/index.json b/site/public/v1/software/phalanger/index.json new file mode 100644 index 000000000000..6118934a4935 --- /dev/null +++ b/site/public/v1/software/phalanger/index.json @@ -0,0 +1,21 @@ +{ + "id": 7631, + "slug": "phalanger", + "name": "Phalanger", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Apache License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1463808" + ], + "created_at": "2026-07-10T10:12:42.369631", + "updated_at": "2026-07-10T10:12:42.369631", + "url": "/v1/software/phalanger" +} diff --git a/site/public/v1/software/pharmaconsult/index.json b/site/public/v1/software/pharmaconsult/index.json new file mode 100644 index 000000000000..09e306b8518a --- /dev/null +++ b/site/public/v1/software/pharmaconsult/index.json @@ -0,0 +1,19 @@ +{ + "id": 7632, + "slug": "pharmaconsult", + "name": "PharmaConsult", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140442498" + ], + "created_at": "2026-07-10T10:12:42.370610", + "updated_at": "2026-07-10T10:12:42.370610", + "url": "/v1/software/pharmaconsult" +} diff --git a/site/public/v1/software/pharo/index.json b/site/public/v1/software/pharo/index.json new file mode 100644 index 000000000000..dd2849d63692 --- /dev/null +++ b/site/public/v1/software/pharo/index.json @@ -0,0 +1,26 @@ +{ + "id": 7633, + "slug": "pharo", + "name": "Pharo", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [ + "Smalltalk" + ], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q369096" + ], + "created_at": "2026-07-10T10:12:42.370610", + "updated_at": "2026-07-10T10:12:42.370610", + "url": "/v1/software/pharo" +} diff --git a/site/public/v1/software/phaser/index.json b/site/public/v1/software/phaser/index.json new file mode 100644 index 000000000000..102c07a6396f --- /dev/null +++ b/site/public/v1/software/phaser/index.json @@ -0,0 +1,21 @@ +{ + "id": 7634, + "slug": "phaser", + "name": "Phaser", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q48851432" + ], + "created_at": "2026-07-10T10:12:42.370610", + "updated_at": "2026-07-10T10:12:42.370610", + "url": "/v1/software/phaser" +} diff --git a/site/public/v1/software/phasor/index.json b/site/public/v1/software/phasor/index.json new file mode 100644 index 000000000000..0ac09f2da4ba --- /dev/null +++ b/site/public/v1/software/phasor/index.json @@ -0,0 +1,21 @@ +{ + "id": 7635, + "slug": "phasor", + "name": "Phasor", + "release_date": null, + "developers": [ + "Applied Engineering" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7181044" + ], + "created_at": "2026-07-10T10:12:42.370610", + "updated_at": "2026-07-10T10:12:42.370610", + "url": "/v1/software/phasor" +} diff --git a/site/public/v1/software/phi/index.json b/site/public/v1/software/phi/index.json new file mode 100644 index 000000000000..2e7858675fbb --- /dev/null +++ b/site/public/v1/software/phi/index.json @@ -0,0 +1,19 @@ +{ + "id": 7636, + "slug": "phi", + "name": "Phi", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138005851" + ], + "created_at": "2026-07-10T10:12:42.371611", + "updated_at": "2026-07-10T10:12:42.371611", + "url": "/v1/software/phi" +} diff --git a/site/public/v1/software/philogl/index.json b/site/public/v1/software/philogl/index.json new file mode 100644 index 000000000000..00fed34cf3e8 --- /dev/null +++ b/site/public/v1/software/philogl/index.json @@ -0,0 +1,19 @@ +{ + "id": 7637, + "slug": "philogl", + "name": "PhiloGL", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084465" + ], + "created_at": "2026-07-10T10:12:42.371611", + "updated_at": "2026-07-10T10:12:42.371611", + "url": "/v1/software/philogl" +} diff --git a/site/public/v1/software/philologic/index.json b/site/public/v1/software/philologic/index.json new file mode 100644 index 000000000000..11e884f0b451 --- /dev/null +++ b/site/public/v1/software/philologic/index.json @@ -0,0 +1,19 @@ +{ + "id": 7638, + "slug": "philologic", + "name": "PhiloLogic", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084469" + ], + "created_at": "2026-07-10T10:12:42.371611", + "updated_at": "2026-07-10T10:12:42.371611", + "url": "/v1/software/philologic" +} diff --git a/site/public/v1/software/phing/index.json b/site/public/v1/software/phing/index.json new file mode 100644 index 000000000000..1790aabc1b6c --- /dev/null +++ b/site/public/v1/software/phing/index.json @@ -0,0 +1,19 @@ +{ + "id": 7639, + "slug": "phing", + "name": "Phing", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62856678" + ], + "created_at": "2026-07-10T10:12:42.372673", + "updated_at": "2026-07-10T10:12:42.372673", + "url": "/v1/software/phing" +} diff --git a/site/public/v1/software/phoenix/index.json b/site/public/v1/software/phoenix/index.json new file mode 100644 index 000000000000..0e09b53d75bd --- /dev/null +++ b/site/public/v1/software/phoenix/index.json @@ -0,0 +1,21 @@ +{ + "id": 7640, + "slug": "phoenix", + "name": "PHOENIX", + "release_date": null, + "developers": [ + "Deutsche Flugsicherung" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7186750" + ], + "created_at": "2026-07-10T10:12:42.372673", + "updated_at": "2026-07-10T10:12:42.372673", + "url": "/v1/software/phoenix" +} diff --git a/site/public/v1/software/phone-link/index.json b/site/public/v1/software/phone-link/index.json new file mode 100644 index 000000000000..59a2921941b4 --- /dev/null +++ b/site/public/v1/software/phone-link/index.json @@ -0,0 +1,21 @@ +{ + "id": 7641, + "slug": "phone-link", + "name": "Phone Link", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60775665" + ], + "created_at": "2026-07-10T10:12:42.372673", + "updated_at": "2026-07-10T10:12:42.372673", + "url": "/v1/software/phone-link" +} diff --git a/site/public/v1/software/phonebook-file-repair/index.json b/site/public/v1/software/phonebook-file-repair/index.json new file mode 100644 index 000000000000..a9f6c0cd426e --- /dev/null +++ b/site/public/v1/software/phonebook-file-repair/index.json @@ -0,0 +1,19 @@ +{ + "id": 7642, + "slug": "phonebook-file-repair", + "name": "PhoneBook File Repair", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121631718" + ], + "created_at": "2026-07-10T10:12:42.373549", + "updated_at": "2026-07-10T10:12:42.373549", + "url": "/v1/software/phonebook-file-repair" +} diff --git a/site/public/v1/software/phonegaim/index.json b/site/public/v1/software/phonegaim/index.json new file mode 100644 index 000000000000..46a09fa5c586 --- /dev/null +++ b/site/public/v1/software/phonegaim/index.json @@ -0,0 +1,19 @@ +{ + "id": 7643, + "slug": "phonegaim", + "name": "PhoneGaim", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3509862" + ], + "created_at": "2026-07-10T10:12:42.373549", + "updated_at": "2026-07-10T10:12:42.373549", + "url": "/v1/software/phonegaim" +} diff --git a/site/public/v1/software/phoneme/index.json b/site/public/v1/software/phoneme/index.json new file mode 100644 index 000000000000..74253fed7d4c --- /dev/null +++ b/site/public/v1/software/phoneme/index.json @@ -0,0 +1,23 @@ +{ + "id": 7644, + "slug": "phoneme", + "name": "phoneME", + "release_date": null, + "developers": [ + "Sun Microsystems" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "GNU General Public License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17049269" + ], + "created_at": "2026-07-10T10:12:42.373549", + "updated_at": "2026-07-10T10:12:42.373549", + "url": "/v1/software/phoneme" +} diff --git a/site/public/v1/software/phoner/index.json b/site/public/v1/software/phoner/index.json new file mode 100644 index 000000000000..358458a9c500 --- /dev/null +++ b/site/public/v1/software/phoner/index.json @@ -0,0 +1,23 @@ +{ + "id": 7645, + "slug": "phoner", + "name": "Phoner", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2088644" + ], + "created_at": "2026-07-10T10:12:42.374548", + "updated_at": "2026-07-10T10:12:42.374548", + "url": "/v1/software/phoner" +} diff --git a/site/public/v1/software/phonevalet-message-center/index.json b/site/public/v1/software/phonevalet-message-center/index.json new file mode 100644 index 000000000000..04122cc6ae08 --- /dev/null +++ b/site/public/v1/software/phonevalet-message-center/index.json @@ -0,0 +1,19 @@ +{ + "id": 7646, + "slug": "phonevalet-message-center", + "name": "PhoneValet Message Center", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7187175" + ], + "created_at": "2026-07-10T10:12:42.374548", + "updated_at": "2026-07-10T10:12:42.374548", + "url": "/v1/software/phonevalet-message-center" +} diff --git a/site/public/v1/software/photo-mechanic/index.json b/site/public/v1/software/photo-mechanic/index.json new file mode 100644 index 000000000000..41403653fcc8 --- /dev/null +++ b/site/public/v1/software/photo-mechanic/index.json @@ -0,0 +1,19 @@ +{ + "id": 7647, + "slug": "photo-mechanic", + "name": "Photo Mechanic", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7187677" + ], + "created_at": "2026-07-10T10:12:42.374548", + "updated_at": "2026-07-10T10:12:42.374548", + "url": "/v1/software/photo-mechanic" +} diff --git a/site/public/v1/software/photo-story/index.json b/site/public/v1/software/photo-story/index.json new file mode 100644 index 000000000000..a569f50c5c0b --- /dev/null +++ b/site/public/v1/software/photo-story/index.json @@ -0,0 +1,19 @@ +{ + "id": 7648, + "slug": "photo-story", + "name": "Photo Story", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6888483" + ], + "created_at": "2026-07-10T10:12:42.375552", + "updated_at": "2026-07-10T10:12:42.375552", + "url": "/v1/software/photo-story" +} diff --git a/site/public/v1/software/photodna/index.json b/site/public/v1/software/photodna/index.json new file mode 100644 index 000000000000..e2be086c3772 --- /dev/null +++ b/site/public/v1/software/photodna/index.json @@ -0,0 +1,19 @@ +{ + "id": 7649, + "slug": "photodna", + "name": "PhotoDNA", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17042843" + ], + "created_at": "2026-07-10T10:12:42.375552", + "updated_at": "2026-07-10T10:12:42.375552", + "url": "/v1/software/photodna" +} diff --git a/site/public/v1/software/photogrammar/index.json b/site/public/v1/software/photogrammar/index.json new file mode 100644 index 000000000000..1612c481ff54 --- /dev/null +++ b/site/public/v1/software/photogrammar/index.json @@ -0,0 +1,19 @@ +{ + "id": 7650, + "slug": "photogrammar", + "name": "Photogrammar", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084472" + ], + "created_at": "2026-07-10T10:12:42.375552", + "updated_at": "2026-07-10T10:12:42.375552", + "url": "/v1/software/photogrammar" +} diff --git a/site/public/v1/software/photoimpression/index.json b/site/public/v1/software/photoimpression/index.json new file mode 100644 index 000000000000..13edd0204a3b --- /dev/null +++ b/site/public/v1/software/photoimpression/index.json @@ -0,0 +1,21 @@ +{ + "id": 7651, + "slug": "photoimpression", + "name": "PhotoImpression", + "release_date": null, + "developers": [ + "ArcSoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7187654" + ], + "created_at": "2026-07-10T10:12:42.376551", + "updated_at": "2026-07-10T10:12:42.376551", + "url": "/v1/software/photoimpression" +} diff --git a/site/public/v1/software/photomod/index.json b/site/public/v1/software/photomod/index.json new file mode 100644 index 000000000000..2116084617ba --- /dev/null +++ b/site/public/v1/software/photomod/index.json @@ -0,0 +1,21 @@ +{ + "id": 7652, + "slug": "photomod", + "name": "PHOTOMOD", + "release_date": "1994-01-01", + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q19612824" + ], + "created_at": "2026-07-10T10:12:42.376551", + "updated_at": "2026-07-10T10:12:42.376551", + "url": "/v1/software/photomod" +} diff --git a/site/public/v1/software/photomodeler/index.json b/site/public/v1/software/photomodeler/index.json new file mode 100644 index 000000000000..da40aecb96e7 --- /dev/null +++ b/site/public/v1/software/photomodeler/index.json @@ -0,0 +1,21 @@ +{ + "id": 7653, + "slug": "photomodeler", + "name": "PhotoModeler", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7187659" + ], + "created_at": "2026-07-10T10:12:42.376551", + "updated_at": "2026-07-10T10:12:42.376551", + "url": "/v1/software/photomodeler" +} diff --git a/site/public/v1/software/photopc/index.json b/site/public/v1/software/photopc/index.json new file mode 100644 index 000000000000..5e84615271c2 --- /dev/null +++ b/site/public/v1/software/photopc/index.json @@ -0,0 +1,19 @@ +{ + "id": 7654, + "slug": "photopc", + "name": "PhotoPC", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62856637" + ], + "created_at": "2026-07-10T10:12:42.376551", + "updated_at": "2026-07-10T10:12:42.376551", + "url": "/v1/software/photopc" +} diff --git a/site/public/v1/software/photopia-optical-design-software/index.json b/site/public/v1/software/photopia-optical-design-software/index.json new file mode 100644 index 000000000000..ab5192539bfc --- /dev/null +++ b/site/public/v1/software/photopia-optical-design-software/index.json @@ -0,0 +1,21 @@ +{ + "id": 7655, + "slug": "photopia-optical-design-software", + "name": "Photopia Optical Design Software", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q20712381" + ], + "created_at": "2026-07-10T10:12:42.377612", + "updated_at": "2026-07-10T10:12:42.377612", + "url": "/v1/software/photopia-optical-design-software" +} diff --git a/site/public/v1/software/photoscape/index.json b/site/public/v1/software/photoscape/index.json new file mode 100644 index 000000000000..589790284f81 --- /dev/null +++ b/site/public/v1/software/photoscape/index.json @@ -0,0 +1,21 @@ +{ + "id": 7656, + "slug": "photoscape", + "name": "PhotoScape", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3775026" + ], + "created_at": "2026-07-10T10:12:42.377612", + "updated_at": "2026-07-10T10:12:42.377612", + "url": "/v1/software/photoscape" +} diff --git a/site/public/v1/software/photoscore/index.json b/site/public/v1/software/photoscore/index.json new file mode 100644 index 000000000000..14dc3caa47be --- /dev/null +++ b/site/public/v1/software/photoscore/index.json @@ -0,0 +1,19 @@ +{ + "id": 7657, + "slug": "photoscore", + "name": "PhotoScore", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084474" + ], + "created_at": "2026-07-10T10:12:42.378659", + "updated_at": "2026-07-10T10:12:42.378659", + "url": "/v1/software/photoscore" +} diff --git a/site/public/v1/software/photoshop-photomerge/index.json b/site/public/v1/software/photoshop-photomerge/index.json new file mode 100644 index 000000000000..ab2ed56a59cf --- /dev/null +++ b/site/public/v1/software/photoshop-photomerge/index.json @@ -0,0 +1,19 @@ +{ + "id": 7658, + "slug": "photoshop-photomerge", + "name": "Photoshop Photomerge", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137589391" + ], + "created_at": "2026-07-10T10:12:42.378659", + "updated_at": "2026-07-10T10:12:42.378659", + "url": "/v1/software/photoshop-photomerge" +} diff --git a/site/public/v1/software/photostage/index.json b/site/public/v1/software/photostage/index.json new file mode 100644 index 000000000000..26ccb5a38ac4 --- /dev/null +++ b/site/public/v1/software/photostage/index.json @@ -0,0 +1,19 @@ +{ + "id": 7659, + "slug": "photostage", + "name": "PhotoStage", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109236506" + ], + "created_at": "2026-07-10T10:12:42.378659", + "updated_at": "2026-07-10T10:12:42.378659", + "url": "/v1/software/photostage" +} diff --git a/site/public/v1/software/photosynth/index.json b/site/public/v1/software/photosynth/index.json new file mode 100644 index 000000000000..aa68afda5b84 --- /dev/null +++ b/site/public/v1/software/photosynth/index.json @@ -0,0 +1,21 @@ +{ + "id": 7660, + "slug": "photosynth", + "name": "Photosynth", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1848975" + ], + "created_at": "2026-07-10T10:12:42.378659", + "updated_at": "2026-07-10T10:12:42.378659", + "url": "/v1/software/photosynth" +} diff --git a/site/public/v1/software/phototonic/index.json b/site/public/v1/software/phototonic/index.json new file mode 100644 index 000000000000..6917384a3ac5 --- /dev/null +++ b/site/public/v1/software/phototonic/index.json @@ -0,0 +1,19 @@ +{ + "id": 7661, + "slug": "phototonic", + "name": "phototonic", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975331" + ], + "created_at": "2026-07-10T10:12:42.379656", + "updated_at": "2026-07-10T10:12:42.379656", + "url": "/v1/software/phototonic" +} diff --git a/site/public/v1/software/photoworks/index.json b/site/public/v1/software/photoworks/index.json new file mode 100644 index 000000000000..690b0d25165b --- /dev/null +++ b/site/public/v1/software/photoworks/index.json @@ -0,0 +1,19 @@ +{ + "id": 7662, + "slug": "photoworks", + "name": "PhotoWorks", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7187944" + ], + "created_at": "2026-07-10T10:12:42.379656", + "updated_at": "2026-07-10T10:12:42.379656", + "url": "/v1/software/photoworks" +} diff --git a/site/public/v1/software/php-tools-for-visual-studio/index.json b/site/public/v1/software/php-tools-for-visual-studio/index.json new file mode 100644 index 000000000000..e05cdb41bb17 --- /dev/null +++ b/site/public/v1/software/php-tools-for-visual-studio/index.json @@ -0,0 +1,19 @@ +{ + "id": 7663, + "slug": "php-tools-for-visual-studio", + "name": "PHP Tools for Visual Studio", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q64138790" + ], + "created_at": "2026-07-10T10:12:42.380628", + "updated_at": "2026-07-10T10:12:42.380628", + "url": "/v1/software/php-tools-for-visual-studio" +} diff --git a/site/public/v1/software/phpboost/index.json b/site/public/v1/software/phpboost/index.json new file mode 100644 index 000000000000..3c5a63380d2e --- /dev/null +++ b/site/public/v1/software/phpboost/index.json @@ -0,0 +1,23 @@ +{ + "id": 7664, + "slug": "phpboost", + "name": "PHPBoost", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "PHP" + ], + "licenses": [ + "GNU General Public License, version 3.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q104417837" + ], + "created_at": "2026-07-10T10:12:42.380628", + "updated_at": "2026-07-10T10:12:42.380628", + "url": "/v1/software/phpboost" +} diff --git a/site/public/v1/software/phpdesigner/index.json b/site/public/v1/software/phpdesigner/index.json new file mode 100644 index 000000000000..0c0f15f5b896 --- /dev/null +++ b/site/public/v1/software/phpdesigner/index.json @@ -0,0 +1,19 @@ +{ + "id": 7665, + "slug": "phpdesigner", + "name": "phpDesigner", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3381641" + ], + "created_at": "2026-07-10T10:12:42.380628", + "updated_at": "2026-07-10T10:12:42.380628", + "url": "/v1/software/phpdesigner" +} diff --git a/site/public/v1/software/phpesb/index.json b/site/public/v1/software/phpesb/index.json new file mode 100644 index 000000000000..566b189e9c57 --- /dev/null +++ b/site/public/v1/software/phpesb/index.json @@ -0,0 +1,26 @@ +{ + "id": 7666, + "slug": "phpesb", + "name": "phpESB", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [ + "PHP" + ], + "licenses": [ + "BSD licenses" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106382287" + ], + "created_at": "2026-07-10T10:12:42.380628", + "updated_at": "2026-07-10T10:12:42.380628", + "url": "/v1/software/phpesb" +} diff --git a/site/public/v1/software/phpstan/index.json b/site/public/v1/software/phpstan/index.json new file mode 100644 index 000000000000..27988b04237b --- /dev/null +++ b/site/public/v1/software/phpstan/index.json @@ -0,0 +1,23 @@ +{ + "id": 7667, + "slug": "phpstan", + "name": "PHPStan", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "PHP" + ], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72164986" + ], + "created_at": "2026-07-10T10:12:42.381637", + "updated_at": "2026-07-10T10:12:42.381637", + "url": "/v1/software/phpstan" +} diff --git a/site/public/v1/software/phpsurvey/index.json b/site/public/v1/software/phpsurvey/index.json new file mode 100644 index 000000000000..d89032520356 --- /dev/null +++ b/site/public/v1/software/phpsurvey/index.json @@ -0,0 +1,26 @@ +{ + "id": 7668, + "slug": "phpsurvey", + "name": "phpSurvey", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [ + "PHP" + ], + "licenses": [ + "GNU General Public License, version 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106382288" + ], + "created_at": "2026-07-10T10:12:42.381637", + "updated_at": "2026-07-10T10:12:42.381637", + "url": "/v1/software/phpsurvey" +} diff --git a/site/public/v1/software/phpwebsite/index.json b/site/public/v1/software/phpwebsite/index.json new file mode 100644 index 000000000000..10e551b5dd11 --- /dev/null +++ b/site/public/v1/software/phpwebsite/index.json @@ -0,0 +1,19 @@ +{ + "id": 7669, + "slug": "phpwebsite", + "name": "phpwebsite", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q88501766" + ], + "created_at": "2026-07-10T10:12:42.381637", + "updated_at": "2026-07-10T10:12:42.381637", + "url": "/v1/software/phpwebsite" +} diff --git a/site/public/v1/software/phpwind/index.json b/site/public/v1/software/phpwind/index.json new file mode 100644 index 000000000000..40d3d8c021a4 --- /dev/null +++ b/site/public/v1/software/phpwind/index.json @@ -0,0 +1,19 @@ +{ + "id": 7670, + "slug": "phpwind", + "name": "PHPWind", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4922553" + ], + "created_at": "2026-07-10T10:12:42.382619", + "updated_at": "2026-07-10T10:12:42.382619", + "url": "/v1/software/phpwind" +} diff --git a/site/public/v1/software/phrap/index.json b/site/public/v1/software/phrap/index.json new file mode 100644 index 000000000000..ccdf2d800f72 --- /dev/null +++ b/site/public/v1/software/phrap/index.json @@ -0,0 +1,30 @@ +{ + "id": 7671, + "slug": "phrap", + "name": "Phrap", + "release_date": null, + "developers": [ + "Philip P. Green" + ], + "publishers": [], + "operating_systems": [ + "HP-UX", + "IRIX", + "IBM AIX", + "Berkeley Software Distribution", + "Tru64 UNIX", + "Solaris", + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4027040" + ], + "created_at": "2026-07-10T10:12:42.382619", + "updated_at": "2026-07-10T10:12:42.382619", + "url": "/v1/software/phrap" +} diff --git a/site/public/v1/software/phraseanet/index.json b/site/public/v1/software/phraseanet/index.json new file mode 100644 index 000000000000..3afc82411fa9 --- /dev/null +++ b/site/public/v1/software/phraseanet/index.json @@ -0,0 +1,19 @@ +{ + "id": 7672, + "slug": "phraseanet", + "name": "Phraseanet", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q24273068" + ], + "created_at": "2026-07-10T10:12:42.382619", + "updated_at": "2026-07-10T10:12:42.382619", + "url": "/v1/software/phraseanet" +} diff --git a/site/public/v1/software/phred-base-calling/index.json b/site/public/v1/software/phred-base-calling/index.json new file mode 100644 index 000000000000..b52fb1359708 --- /dev/null +++ b/site/public/v1/software/phred-base-calling/index.json @@ -0,0 +1,30 @@ +{ + "id": 7673, + "slug": "phred-base-calling", + "name": "Phred base calling", + "release_date": null, + "developers": [ + "Philip P. Green" + ], + "publishers": [], + "operating_systems": [ + "HP-UX", + "IRIX", + "IBM AIX", + "Tru64 UNIX", + "Berkeley Software Distribution", + "Solaris", + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6121978" + ], + "created_at": "2026-07-10T10:12:42.382619", + "updated_at": "2026-07-10T10:12:42.382619", + "url": "/v1/software/phred-base-calling" +} diff --git a/site/public/v1/software/phreedom/index.json b/site/public/v1/software/phreedom/index.json new file mode 100644 index 000000000000..08507ce814c2 --- /dev/null +++ b/site/public/v1/software/phreedom/index.json @@ -0,0 +1,19 @@ +{ + "id": 7674, + "slug": "phreedom", + "name": "Phreedom", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7188107" + ], + "created_at": "2026-07-10T10:12:42.383618", + "updated_at": "2026-07-10T10:12:42.383618", + "url": "/v1/software/phreedom" +} diff --git a/site/public/v1/software/phreeqc/index.json b/site/public/v1/software/phreeqc/index.json new file mode 100644 index 000000000000..265dc99958fe --- /dev/null +++ b/site/public/v1/software/phreeqc/index.json @@ -0,0 +1,19 @@ +{ + "id": 7675, + "slug": "phreeqc", + "name": "PHREEQC", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107274436" + ], + "created_at": "2026-07-10T10:12:42.383618", + "updated_at": "2026-07-10T10:12:42.383618", + "url": "/v1/software/phreeqc" +} diff --git a/site/public/v1/software/phtml-encoder/index.json b/site/public/v1/software/phtml-encoder/index.json new file mode 100644 index 000000000000..0f8fea6179df --- /dev/null +++ b/site/public/v1/software/phtml-encoder/index.json @@ -0,0 +1,19 @@ +{ + "id": 7676, + "slug": "phtml-encoder", + "name": "PHTML Encoder", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q13012387" + ], + "created_at": "2026-07-10T10:12:42.384620", + "updated_at": "2026-07-10T10:12:42.384620", + "url": "/v1/software/phtml-encoder" +} diff --git a/site/public/v1/software/phylogenetic-analysis-using-parsimony-and-other-methods/index.json b/site/public/v1/software/phylogenetic-analysis-using-parsimony-and-other-methods/index.json new file mode 100644 index 000000000000..c50da54c2be8 --- /dev/null +++ b/site/public/v1/software/phylogenetic-analysis-using-parsimony-and-other-methods/index.json @@ -0,0 +1,19 @@ +{ + "id": 7677, + "slug": "phylogenetic-analysis-using-parsimony-and-other-methods", + "name": "Phylogenetic Analysis Using Parsimony *and other methods", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7118292" + ], + "created_at": "2026-07-10T10:12:42.384620", + "updated_at": "2026-07-10T10:12:42.384620", + "url": "/v1/software/phylogenetic-analysis-using-parsimony-and-other-methods" +} diff --git a/site/public/v1/software/phyloscan/index.json b/site/public/v1/software/phyloscan/index.json new file mode 100644 index 000000000000..e9beddd38c27 --- /dev/null +++ b/site/public/v1/software/phyloscan/index.json @@ -0,0 +1,22 @@ +{ + "id": 7678, + "slug": "phyloscan", + "name": "Phyloscan", + "release_date": null, + "developers": [ + "New York State Department of Health", + "Wadsworth Center" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7189447" + ], + "created_at": "2026-07-10T10:12:42.384620", + "updated_at": "2026-07-10T10:12:42.384620", + "url": "/v1/software/phyloscan" +} diff --git a/site/public/v1/software/phyloxml/index.json b/site/public/v1/software/phyloxml/index.json new file mode 100644 index 000000000000..3fff08641ce5 --- /dev/null +++ b/site/public/v1/software/phyloxml/index.json @@ -0,0 +1,19 @@ +{ + "id": 7679, + "slug": "phyloxml", + "name": "PhyloXML", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7189430" + ], + "created_at": "2026-07-10T10:12:42.384620", + "updated_at": "2026-07-10T10:12:42.384620", + "url": "/v1/software/phyloxml" +} diff --git a/site/public/v1/software/phyre-phyre2/index.json b/site/public/v1/software/phyre-phyre2/index.json new file mode 100644 index 000000000000..9dcbe9a101fd --- /dev/null +++ b/site/public/v1/software/phyre-phyre2/index.json @@ -0,0 +1,19 @@ +{ + "id": 7680, + "slug": "phyre-phyre2", + "name": "Phyre / Phyre2", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7189477" + ], + "created_at": "2026-07-10T10:12:42.385642", + "updated_at": "2026-07-10T10:12:42.385642", + "url": "/v1/software/phyre-phyre2" +} diff --git a/site/public/v1/software/physicell/index.json b/site/public/v1/software/physicell/index.json new file mode 100644 index 000000000000..3ca7509bfaae --- /dev/null +++ b/site/public/v1/software/physicell/index.json @@ -0,0 +1,19 @@ +{ + "id": 7681, + "slug": "physicell", + "name": "PhysiCell", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111822321" + ], + "created_at": "2026-07-10T10:12:42.385642", + "updated_at": "2026-07-10T10:12:42.385642", + "url": "/v1/software/physicell" +} diff --git a/site/public/v1/software/physicians-information-and-education-resource/index.json b/site/public/v1/software/physicians-information-and-education-resource/index.json new file mode 100644 index 000000000000..339cdc047df2 --- /dev/null +++ b/site/public/v1/software/physicians-information-and-education-resource/index.json @@ -0,0 +1,19 @@ +{ + "id": 7682, + "slug": "physicians-information-and-education-resource", + "name": "Physicians' Information and Education Resource", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7189658" + ], + "created_at": "2026-07-10T10:12:42.386658", + "updated_at": "2026-07-10T10:12:42.386658", + "url": "/v1/software/physicians-information-and-education-resource" +} diff --git a/site/public/v1/software/pi-kvm/index.json b/site/public/v1/software/pi-kvm/index.json new file mode 100644 index 000000000000..5f2b8a58eca8 --- /dev/null +++ b/site/public/v1/software/pi-kvm/index.json @@ -0,0 +1,21 @@ +{ + "id": 7683, + "slug": "pi-kvm", + "name": "Pi-KVM", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "GNU General Public License, version 3.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q102254658" + ], + "created_at": "2026-07-10T10:12:42.386658", + "updated_at": "2026-07-10T10:12:42.386658", + "url": "/v1/software/pi-kvm" +} diff --git a/site/public/v1/software/piano-booster/index.json b/site/public/v1/software/piano-booster/index.json new file mode 100644 index 000000000000..5bb0f19a5d29 --- /dev/null +++ b/site/public/v1/software/piano-booster/index.json @@ -0,0 +1,19 @@ +{ + "id": 7684, + "slug": "piano-booster", + "name": "Piano Booster", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117527599" + ], + "created_at": "2026-07-10T10:12:42.386658", + "updated_at": "2026-07-10T10:12:42.386658", + "url": "/v1/software/piano-booster" +} diff --git a/site/public/v1/software/piano-from-above/index.json b/site/public/v1/software/piano-from-above/index.json new file mode 100644 index 000000000000..160fb1d70fa2 --- /dev/null +++ b/site/public/v1/software/piano-from-above/index.json @@ -0,0 +1,19 @@ +{ + "id": 7685, + "slug": "piano-from-above", + "name": "Piano From Above", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117756031" + ], + "created_at": "2026-07-10T10:12:42.387617", + "updated_at": "2026-07-10T10:12:42.387617", + "url": "/v1/software/piano-from-above" +} diff --git a/site/public/v1/software/pianobar/index.json b/site/public/v1/software/pianobar/index.json new file mode 100644 index 000000000000..5a7126f8636d --- /dev/null +++ b/site/public/v1/software/pianobar/index.json @@ -0,0 +1,21 @@ +{ + "id": 7686, + "slug": "pianobar", + "name": "pianobar", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Unix-like operating system" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975332" + ], + "created_at": "2026-07-10T10:12:42.387617", + "updated_at": "2026-07-10T10:12:42.387617", + "url": "/v1/software/pianobar" +} diff --git a/site/public/v1/software/pianoteq/index.json b/site/public/v1/software/pianoteq/index.json new file mode 100644 index 000000000000..1a153f60f00c --- /dev/null +++ b/site/public/v1/software/pianoteq/index.json @@ -0,0 +1,19 @@ +{ + "id": 7687, + "slug": "pianoteq", + "name": "Pianoteq", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7190220" + ], + "created_at": "2026-07-10T10:12:42.387617", + "updated_at": "2026-07-10T10:12:42.387617", + "url": "/v1/software/pianoteq" +} diff --git a/site/public/v1/software/piazza/index.json b/site/public/v1/software/piazza/index.json new file mode 100644 index 000000000000..9262011e470a --- /dev/null +++ b/site/public/v1/software/piazza/index.json @@ -0,0 +1,19 @@ +{ + "id": 7688, + "slug": "piazza", + "name": "Piazza", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084476" + ], + "created_at": "2026-07-10T10:12:42.388632", + "updated_at": "2026-07-10T10:12:42.388632", + "url": "/v1/software/piazza" +} diff --git a/site/public/v1/software/pic4carto/index.json b/site/public/v1/software/pic4carto/index.json new file mode 100644 index 000000000000..1528c24f6a61 --- /dev/null +++ b/site/public/v1/software/pic4carto/index.json @@ -0,0 +1,19 @@ +{ + "id": 7689, + "slug": "pic4carto", + "name": "Pic4Carto", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q98732064" + ], + "created_at": "2026-07-10T10:12:42.388632", + "updated_at": "2026-07-10T10:12:42.388632", + "url": "/v1/software/pic4carto" +} diff --git a/site/public/v1/software/picapport/index.json b/site/public/v1/software/picapport/index.json new file mode 100644 index 000000000000..c47b9d691fdd --- /dev/null +++ b/site/public/v1/software/picapport/index.json @@ -0,0 +1,19 @@ +{ + "id": 7690, + "slug": "picapport", + "name": "PicApport", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q20182443" + ], + "created_at": "2026-07-10T10:12:42.388632", + "updated_at": "2026-07-10T10:12:42.388632", + "url": "/v1/software/picapport" +} diff --git a/site/public/v1/software/pickawin/index.json b/site/public/v1/software/pickawin/index.json new file mode 100644 index 000000000000..8d794cab280b --- /dev/null +++ b/site/public/v1/software/pickawin/index.json @@ -0,0 +1,19 @@ +{ + "id": 7691, + "slug": "pickawin", + "name": "PickAWin", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140089698" + ], + "created_at": "2026-07-10T10:12:42.389616", + "updated_at": "2026-07-10T10:12:42.389616", + "url": "/v1/software/pickawin" +} diff --git a/site/public/v1/software/pickle/index.json b/site/public/v1/software/pickle/index.json new file mode 100644 index 000000000000..dd0eb2dcb523 --- /dev/null +++ b/site/public/v1/software/pickle/index.json @@ -0,0 +1,19 @@ +{ + "id": 7692, + "slug": "pickle", + "name": "Pickle", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q39073842" + ], + "created_at": "2026-07-10T10:12:42.389616", + "updated_at": "2026-07-10T10:12:42.389616", + "url": "/v1/software/pickle" +} diff --git a/site/public/v1/software/picocalc/index.json b/site/public/v1/software/picocalc/index.json new file mode 100644 index 000000000000..a31b00f01818 --- /dev/null +++ b/site/public/v1/software/picocalc/index.json @@ -0,0 +1,19 @@ +{ + "id": 7693, + "slug": "picocalc", + "name": "PicoCalc", + "release_date": "2021-02-24", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122920369" + ], + "created_at": "2026-07-10T10:12:42.389616", + "updated_at": "2026-07-10T10:12:42.389616", + "url": "/v1/software/picocalc" +} diff --git a/site/public/v1/software/picocom/index.json b/site/public/v1/software/picocom/index.json new file mode 100644 index 000000000000..d1c86a625c5b --- /dev/null +++ b/site/public/v1/software/picocom/index.json @@ -0,0 +1,19 @@ +{ + "id": 7694, + "slug": "picocom", + "name": "picocom", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62863357" + ], + "created_at": "2026-07-10T10:12:42.390642", + "updated_at": "2026-07-10T10:12:42.390642", + "url": "/v1/software/picocom" +} diff --git a/site/public/v1/software/picom/index.json b/site/public/v1/software/picom/index.json new file mode 100644 index 000000000000..974febe41c9d --- /dev/null +++ b/site/public/v1/software/picom/index.json @@ -0,0 +1,21 @@ +{ + "id": 7695, + "slug": "picom", + "name": "Picom", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Mozilla Public License, version 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q119084274" + ], + "created_at": "2026-07-10T10:12:42.390642", + "updated_at": "2026-07-10T10:12:42.390642", + "url": "/v1/software/picom" +} diff --git a/site/public/v1/software/picoscope/index.json b/site/public/v1/software/picoscope/index.json new file mode 100644 index 000000000000..ef45430ca045 --- /dev/null +++ b/site/public/v1/software/picoscope/index.json @@ -0,0 +1,28 @@ +{ + "id": 7696, + "slug": "picoscope", + "name": "PicoScope", + "release_date": null, + "developers": [ + "Pico Technology" + ], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [ + "Visual C++" + ], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q20065342" + ], + "created_at": "2026-07-10T10:12:42.390642", + "updated_at": "2026-07-10T10:12:42.390642", + "url": "/v1/software/picoscope" +} diff --git a/site/public/v1/software/picospan/index.json b/site/public/v1/software/picospan/index.json new file mode 100644 index 000000000000..f9c66bfdfaee --- /dev/null +++ b/site/public/v1/software/picospan/index.json @@ -0,0 +1,19 @@ +{ + "id": 7697, + "slug": "picospan", + "name": "PicoSpan", + "release_date": "1982-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7191002" + ], + "created_at": "2026-07-10T10:12:42.390642", + "updated_at": "2026-07-10T10:12:42.390642", + "url": "/v1/software/picospan" +} diff --git a/site/public/v1/software/picrust/index.json b/site/public/v1/software/picrust/index.json new file mode 100644 index 000000000000..5db005fed465 --- /dev/null +++ b/site/public/v1/software/picrust/index.json @@ -0,0 +1,19 @@ +{ + "id": 7698, + "slug": "picrust", + "name": "PICRUSt", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22681967" + ], + "created_at": "2026-07-10T10:12:42.391548", + "updated_at": "2026-07-10T10:12:42.391548", + "url": "/v1/software/picrust" +} diff --git a/site/public/v1/software/picture-motion-browser/index.json b/site/public/v1/software/picture-motion-browser/index.json new file mode 100644 index 000000000000..7368dffc40c4 --- /dev/null +++ b/site/public/v1/software/picture-motion-browser/index.json @@ -0,0 +1,21 @@ +{ + "id": 7699, + "slug": "picture-motion-browser", + "name": "Picture Motion Browser", + "release_date": null, + "developers": [ + "Sony Group" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7191159" + ], + "created_at": "2026-07-10T10:12:42.391548", + "updated_at": "2026-07-10T10:12:42.391548", + "url": "/v1/software/picture-motion-browser" +} diff --git a/site/public/v1/software/picture-prowler/index.json b/site/public/v1/software/picture-prowler/index.json new file mode 100644 index 000000000000..e5080c7ee6a0 --- /dev/null +++ b/site/public/v1/software/picture-prowler/index.json @@ -0,0 +1,19 @@ +{ + "id": 7700, + "slug": "picture-prowler", + "name": "Picture Prowler", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7191173" + ], + "created_at": "2026-07-10T10:12:42.391548", + "updated_at": "2026-07-10T10:12:42.391548", + "url": "/v1/software/picture-prowler" +} diff --git a/site/public/v1/software/picture-publisher/index.json b/site/public/v1/software/picture-publisher/index.json new file mode 100644 index 000000000000..15e265c657d7 --- /dev/null +++ b/site/public/v1/software/picture-publisher/index.json @@ -0,0 +1,19 @@ +{ + "id": 7701, + "slug": "picture-publisher", + "name": "Picture Publisher", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137761634" + ], + "created_at": "2026-07-10T10:12:42.392623", + "updated_at": "2026-07-10T10:12:42.392623", + "url": "/v1/software/picture-publisher" +} diff --git a/site/public/v1/software/pictureframe/index.json b/site/public/v1/software/pictureframe/index.json new file mode 100644 index 000000000000..fd13838586d3 --- /dev/null +++ b/site/public/v1/software/pictureframe/index.json @@ -0,0 +1,19 @@ +{ + "id": 7702, + "slug": "pictureframe", + "name": "pictureframe", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065156" + ], + "created_at": "2026-07-10T10:12:42.392623", + "updated_at": "2026-07-10T10:12:42.392623", + "url": "/v1/software/pictureframe" +} diff --git a/site/public/v1/software/picturestoexe/index.json b/site/public/v1/software/picturestoexe/index.json new file mode 100644 index 000000000000..925d57a196ff --- /dev/null +++ b/site/public/v1/software/picturestoexe/index.json @@ -0,0 +1,19 @@ +{ + "id": 7703, + "slug": "picturestoexe", + "name": "PicturesToExe", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7191220" + ], + "created_at": "2026-07-10T10:12:42.392623", + "updated_at": "2026-07-10T10:12:42.392623", + "url": "/v1/software/picturestoexe" +} diff --git a/site/public/v1/software/pidgin-festival/index.json b/site/public/v1/software/pidgin-festival/index.json new file mode 100644 index 000000000000..d30fed15fb27 --- /dev/null +++ b/site/public/v1/software/pidgin-festival/index.json @@ -0,0 +1,19 @@ +{ + "id": 7704, + "slug": "pidgin-festival", + "name": "pidgin-festival", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62858840" + ], + "created_at": "2026-07-10T10:12:42.393618", + "updated_at": "2026-07-10T10:12:42.393618", + "url": "/v1/software/pidgin-festival" +} diff --git a/site/public/v1/software/pidgin-funyahoo-plusplus/index.json b/site/public/v1/software/pidgin-funyahoo-plusplus/index.json new file mode 100644 index 000000000000..8d126d58ff49 --- /dev/null +++ b/site/public/v1/software/pidgin-funyahoo-plusplus/index.json @@ -0,0 +1,19 @@ +{ + "id": 7705, + "slug": "pidgin-funyahoo-plusplus", + "name": "pidgin-funyahoo-plusplus", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975333" + ], + "created_at": "2026-07-10T10:12:42.393618", + "updated_at": "2026-07-10T10:12:42.393618", + "url": "/v1/software/pidgin-funyahoo-plusplus" +} diff --git a/site/public/v1/software/pidgin-hotkeys/index.json b/site/public/v1/software/pidgin-hotkeys/index.json new file mode 100644 index 000000000000..96450bcdbf21 --- /dev/null +++ b/site/public/v1/software/pidgin-hotkeys/index.json @@ -0,0 +1,19 @@ +{ + "id": 7706, + "slug": "pidgin-hotkeys", + "name": "pidgin-hotkeys", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62858836" + ], + "created_at": "2026-07-10T10:12:42.394625", + "updated_at": "2026-07-10T10:12:42.394625", + "url": "/v1/software/pidgin-hotkeys" +} diff --git a/site/public/v1/software/pidgin-privacy-please/index.json b/site/public/v1/software/pidgin-privacy-please/index.json new file mode 100644 index 000000000000..cbc923a90fca --- /dev/null +++ b/site/public/v1/software/pidgin-privacy-please/index.json @@ -0,0 +1,19 @@ +{ + "id": 7707, + "slug": "pidgin-privacy-please", + "name": "pidgin-privacy-please", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62858829" + ], + "created_at": "2026-07-10T10:12:42.394625", + "updated_at": "2026-07-10T10:12:42.394625", + "url": "/v1/software/pidgin-privacy-please" +} diff --git a/site/public/v1/software/pidoco/index.json b/site/public/v1/software/pidoco/index.json new file mode 100644 index 000000000000..3b3bcceb5d6a --- /dev/null +++ b/site/public/v1/software/pidoco/index.json @@ -0,0 +1,19 @@ +{ + "id": 7708, + "slug": "pidoco", + "name": "Pidoco", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7191304" + ], + "created_at": "2026-07-10T10:12:42.394625", + "updated_at": "2026-07-10T10:12:42.394625", + "url": "/v1/software/pidoco" +} diff --git a/site/public/v1/software/pie-commander/index.json b/site/public/v1/software/pie-commander/index.json new file mode 100644 index 000000000000..2dd6e307ddb3 --- /dev/null +++ b/site/public/v1/software/pie-commander/index.json @@ -0,0 +1,19 @@ +{ + "id": 7709, + "slug": "pie-commander", + "name": "PIE Commander", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4046200" + ], + "created_at": "2026-07-10T10:12:42.394625", + "updated_at": "2026-07-10T10:12:42.394625", + "url": "/v1/software/pie-commander" +} diff --git a/site/public/v1/software/piep/index.json b/site/public/v1/software/piep/index.json new file mode 100644 index 000000000000..53464a71c773 --- /dev/null +++ b/site/public/v1/software/piep/index.json @@ -0,0 +1,19 @@ +{ + "id": 7710, + "slug": "piep", + "name": "PieP", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7191320" + ], + "created_at": "2026-07-10T10:12:42.395661", + "updated_at": "2026-07-10T10:12:42.395661", + "url": "/v1/software/piep" +} diff --git a/site/public/v1/software/pietty/index.json b/site/public/v1/software/pietty/index.json new file mode 100644 index 000000000000..2c28049dd355 --- /dev/null +++ b/site/public/v1/software/pietty/index.json @@ -0,0 +1,19 @@ +{ + "id": 7711, + "slug": "pietty", + "name": "PieTTY", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10852156" + ], + "created_at": "2026-07-10T10:12:42.395661", + "updated_at": "2026-07-10T10:12:42.395661", + "url": "/v1/software/pietty" +} diff --git a/site/public/v1/software/pifast/index.json b/site/public/v1/software/pifast/index.json new file mode 100644 index 000000000000..7712aa49e71c --- /dev/null +++ b/site/public/v1/software/pifast/index.json @@ -0,0 +1,19 @@ +{ + "id": 7712, + "slug": "pifast", + "name": "PiFast", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q12331827" + ], + "created_at": "2026-07-10T10:12:42.396610", + "updated_at": "2026-07-10T10:12:42.396610", + "url": "/v1/software/pifast" +} diff --git a/site/public/v1/software/pihex/index.json b/site/public/v1/software/pihex/index.json new file mode 100644 index 000000000000..648c71a86216 --- /dev/null +++ b/site/public/v1/software/pihex/index.json @@ -0,0 +1,19 @@ +{ + "id": 7713, + "slug": "pihex", + "name": "PiHex", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3382155" + ], + "created_at": "2026-07-10T10:12:42.396610", + "updated_at": "2026-07-10T10:12:42.396610", + "url": "/v1/software/pihex" +} diff --git a/site/public/v1/software/piictu/index.json b/site/public/v1/software/piictu/index.json new file mode 100644 index 000000000000..8f4c0f7329e4 --- /dev/null +++ b/site/public/v1/software/piictu/index.json @@ -0,0 +1,23 @@ +{ + "id": 7714, + "slug": "piictu", + "name": "Piictu", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "iOS" + ], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16975424" + ], + "created_at": "2026-07-10T10:12:42.396610", + "updated_at": "2026-07-10T10:12:42.396610", + "url": "/v1/software/piictu" +} diff --git a/site/public/v1/software/pika-labs/index.json b/site/public/v1/software/pika-labs/index.json new file mode 100644 index 000000000000..a6f9bc89011e --- /dev/null +++ b/site/public/v1/software/pika-labs/index.json @@ -0,0 +1,19 @@ +{ + "id": 7715, + "slug": "pika-labs", + "name": "Pika Labs", + "release_date": "2024-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q133141069" + ], + "created_at": "2026-07-10T10:12:42.396610", + "updated_at": "2026-07-10T10:12:42.396610", + "url": "/v1/software/pika-labs" +} diff --git a/site/public/v1/software/pika/index.json b/site/public/v1/software/pika/index.json new file mode 100644 index 000000000000..39ba54a211d9 --- /dev/null +++ b/site/public/v1/software/pika/index.json @@ -0,0 +1,21 @@ +{ + "id": 7716, + "slug": "pika", + "name": "pika", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Boost Software License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120333967" + ], + "created_at": "2026-07-10T10:12:42.397618", + "updated_at": "2026-07-10T10:12:42.397618", + "url": "/v1/software/pika" +} diff --git a/site/public/v1/software/pikdek/index.json b/site/public/v1/software/pikdek/index.json new file mode 100644 index 000000000000..21413758e006 --- /dev/null +++ b/site/public/v1/software/pikdek/index.json @@ -0,0 +1,19 @@ +{ + "id": 7717, + "slug": "pikdek", + "name": "PikDek", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140462237" + ], + "created_at": "2026-07-10T10:12:42.397618", + "updated_at": "2026-07-10T10:12:42.397618", + "url": "/v1/software/pikdek" +} diff --git a/site/public/v1/software/piktochart/index.json b/site/public/v1/software/piktochart/index.json new file mode 100644 index 000000000000..fbb46f0b01f0 --- /dev/null +++ b/site/public/v1/software/piktochart/index.json @@ -0,0 +1,19 @@ +{ + "id": 7718, + "slug": "piktochart", + "name": "Piktochart", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17074977" + ], + "created_at": "2026-07-10T10:12:42.397618", + "updated_at": "2026-07-10T10:12:42.397618", + "url": "/v1/software/piktochart" +} diff --git a/site/public/v1/software/piler/index.json b/site/public/v1/software/piler/index.json new file mode 100644 index 000000000000..3332fbfa77c0 --- /dev/null +++ b/site/public/v1/software/piler/index.json @@ -0,0 +1,19 @@ +{ + "id": 7719, + "slug": "piler", + "name": "piler", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62863407" + ], + "created_at": "2026-07-10T10:12:42.398621", + "updated_at": "2026-07-10T10:12:42.398621", + "url": "/v1/software/piler" +} diff --git a/site/public/v1/software/pilot-link/index.json b/site/public/v1/software/pilot-link/index.json new file mode 100644 index 000000000000..f228720a6dd9 --- /dev/null +++ b/site/public/v1/software/pilot-link/index.json @@ -0,0 +1,19 @@ +{ + "id": 7720, + "slug": "pilot-link", + "name": "Pilot-link", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7194324" + ], + "created_at": "2026-07-10T10:12:42.398621", + "updated_at": "2026-07-10T10:12:42.398621", + "url": "/v1/software/pilot-link" +} diff --git a/site/public/v1/software/pim-lx/index.json b/site/public/v1/software/pim-lx/index.json new file mode 100644 index 000000000000..fb6bae4edef8 --- /dev/null +++ b/site/public/v1/software/pim-lx/index.json @@ -0,0 +1,23 @@ +{ + "id": 7721, + "slug": "pim-lx", + "name": "PIM/LX", + "release_date": null, + "developers": [ + "D&A Software" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121672436" + ], + "created_at": "2026-07-10T10:12:42.398621", + "updated_at": "2026-07-10T10:12:42.398621", + "url": "/v1/software/pim-lx" +} diff --git a/site/public/v1/software/pin/index.json b/site/public/v1/software/pin/index.json new file mode 100644 index 000000000000..42dc8560299d --- /dev/null +++ b/site/public/v1/software/pin/index.json @@ -0,0 +1,21 @@ +{ + "id": 7722, + "slug": "pin", + "name": "Pin", + "release_date": null, + "developers": [ + "Intel" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7194748" + ], + "created_at": "2026-07-10T10:12:42.398621", + "updated_at": "2026-07-10T10:12:42.398621", + "url": "/v1/software/pin" +} diff --git a/site/public/v1/software/pinepgp/index.json b/site/public/v1/software/pinepgp/index.json new file mode 100644 index 000000000000..4435db0758f3 --- /dev/null +++ b/site/public/v1/software/pinepgp/index.json @@ -0,0 +1,19 @@ +{ + "id": 7723, + "slug": "pinepgp", + "name": "pinepgp", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60916658" + ], + "created_at": "2026-07-10T10:12:42.399731", + "updated_at": "2026-07-10T10:12:42.399731", + "url": "/v1/software/pinepgp" +} diff --git a/site/public/v1/software/pinfo/index.json b/site/public/v1/software/pinfo/index.json new file mode 100644 index 000000000000..d17188a33c09 --- /dev/null +++ b/site/public/v1/software/pinfo/index.json @@ -0,0 +1,19 @@ +{ + "id": 7724, + "slug": "pinfo", + "name": "pinfo", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62858801" + ], + "created_at": "2026-07-10T10:12:42.399731", + "updated_at": "2026-07-10T10:12:42.399731", + "url": "/v1/software/pinfo" +} diff --git a/site/public/v1/software/ping-sweep/index.json b/site/public/v1/software/ping-sweep/index.json new file mode 100644 index 000000000000..d09f746742ee --- /dev/null +++ b/site/public/v1/software/ping-sweep/index.json @@ -0,0 +1,19 @@ +{ + "id": 7725, + "slug": "ping-sweep", + "name": "ping sweep", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1943122" + ], + "created_at": "2026-07-10T10:12:42.400734", + "updated_at": "2026-07-10T10:12:42.400734", + "url": "/v1/software/ping-sweep" +} diff --git a/site/public/v1/software/pingie/index.json b/site/public/v1/software/pingie/index.json new file mode 100644 index 000000000000..928e8c159cc0 --- /dev/null +++ b/site/public/v1/software/pingie/index.json @@ -0,0 +1,19 @@ +{ + "id": 7726, + "slug": "pingie", + "name": "Pingie", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140051804" + ], + "created_at": "2026-07-10T10:12:42.400734", + "updated_at": "2026-07-10T10:12:42.400734", + "url": "/v1/software/pingie" +} diff --git a/site/public/v1/software/pinnacle-expression/index.json b/site/public/v1/software/pinnacle-expression/index.json new file mode 100644 index 000000000000..7ef206054e60 --- /dev/null +++ b/site/public/v1/software/pinnacle-expression/index.json @@ -0,0 +1,21 @@ +{ + "id": 7727, + "slug": "pinnacle-expression", + "name": "Pinnacle Expression", + "release_date": "2002-01-01", + "developers": [ + "Pinnacle Systems" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q57979738" + ], + "created_at": "2026-07-10T10:12:42.400734", + "updated_at": "2026-07-10T10:12:42.400734", + "url": "/v1/software/pinnacle-expression" +} diff --git a/site/public/v1/software/pinocchio/index.json b/site/public/v1/software/pinocchio/index.json new file mode 100644 index 000000000000..5e3ef44d7cb7 --- /dev/null +++ b/site/public/v1/software/pinocchio/index.json @@ -0,0 +1,21 @@ +{ + "id": 7728, + "slug": "pinocchio", + "name": "Pinocchio", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "2-clause BSD License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134831866" + ], + "created_at": "2026-07-10T10:12:42.400734", + "updated_at": "2026-07-10T10:12:42.400734", + "url": "/v1/software/pinocchio" +} diff --git a/site/public/v1/software/pinpointiq/index.json b/site/public/v1/software/pinpointiq/index.json new file mode 100644 index 000000000000..b545d9c04a80 --- /dev/null +++ b/site/public/v1/software/pinpointiq/index.json @@ -0,0 +1,23 @@ +{ + "id": 7729, + "slug": "pinpointiq", + "name": "PinpointIQ", + "release_date": null, + "developers": [ + "2nd St Strategy" + ], + "publishers": [ + "2nd St Strategy" + ], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140181144" + ], + "created_at": "2026-07-10T10:12:42.401723", + "updated_at": "2026-07-10T10:12:42.401723", + "url": "/v1/software/pinpointiq" +} diff --git a/site/public/v1/software/pinyin-input-method/index.json b/site/public/v1/software/pinyin-input-method/index.json new file mode 100644 index 000000000000..76c136d6f984 --- /dev/null +++ b/site/public/v1/software/pinyin-input-method/index.json @@ -0,0 +1,19 @@ +{ + "id": 7730, + "slug": "pinyin-input-method", + "name": "pinyin input method", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3333677" + ], + "created_at": "2026-07-10T10:12:42.401723", + "updated_at": "2026-07-10T10:12:42.401723", + "url": "/v1/software/pinyin-input-method" +} diff --git a/site/public/v1/software/pipebench/index.json b/site/public/v1/software/pipebench/index.json new file mode 100644 index 000000000000..00689a09b784 --- /dev/null +++ b/site/public/v1/software/pipebench/index.json @@ -0,0 +1,19 @@ +{ + "id": 7731, + "slug": "pipebench", + "name": "pipebench", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62860219" + ], + "created_at": "2026-07-10T10:12:42.401723", + "updated_at": "2026-07-10T10:12:42.401723", + "url": "/v1/software/pipebench" +} diff --git a/site/public/v1/software/pipelight/index.json b/site/public/v1/software/pipelight/index.json new file mode 100644 index 000000000000..1d38d283eaa5 --- /dev/null +++ b/site/public/v1/software/pipelight/index.json @@ -0,0 +1,19 @@ +{ + "id": 7732, + "slug": "pipelight", + "name": "Pipelight", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18154934" + ], + "created_at": "2026-07-10T10:12:42.402733", + "updated_at": "2026-07-10T10:12:42.402733", + "url": "/v1/software/pipelight" +} diff --git a/site/public/v1/software/piper/index.json b/site/public/v1/software/piper/index.json new file mode 100644 index 000000000000..4d83d2fdefe7 --- /dev/null +++ b/site/public/v1/software/piper/index.json @@ -0,0 +1,19 @@ +{ + "id": 7733, + "slug": "piper", + "name": "Piper", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131176969" + ], + "created_at": "2026-07-10T10:12:42.402733", + "updated_at": "2026-07-10T10:12:42.402733", + "url": "/v1/software/piper" +} diff --git a/site/public/v1/software/pipoca/index.json b/site/public/v1/software/pipoca/index.json new file mode 100644 index 000000000000..b982210919b8 --- /dev/null +++ b/site/public/v1/software/pipoca/index.json @@ -0,0 +1,26 @@ +{ + "id": 7734, + "slug": "pipoca", + "name": "Pipoca", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [ + "PHP" + ], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105864996" + ], + "created_at": "2026-07-10T10:12:42.402733", + "updated_at": "2026-07-10T10:12:42.402733", + "url": "/v1/software/pipoca" +} diff --git a/site/public/v1/software/piranesi/index.json b/site/public/v1/software/piranesi/index.json new file mode 100644 index 000000000000..c17b261414ba --- /dev/null +++ b/site/public/v1/software/piranesi/index.json @@ -0,0 +1,21 @@ +{ + "id": 7735, + "slug": "piranesi", + "name": "Piranesi", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4046991" + ], + "created_at": "2026-07-10T10:12:42.403736", + "updated_at": "2026-07-10T10:12:42.403736", + "url": "/v1/software/piranesi" +} diff --git a/site/public/v1/software/piranha/index.json b/site/public/v1/software/piranha/index.json new file mode 100644 index 000000000000..6f27c533a611 --- /dev/null +++ b/site/public/v1/software/piranha/index.json @@ -0,0 +1,19 @@ +{ + "id": 7736, + "slug": "piranha", + "name": "Piranha", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18388711" + ], + "created_at": "2026-07-10T10:12:42.403736", + "updated_at": "2026-07-10T10:12:42.403736", + "url": "/v1/software/piranha" +} diff --git a/site/public/v1/software/pirate-king-online/index.json b/site/public/v1/software/pirate-king-online/index.json new file mode 100644 index 000000000000..7719dddaff53 --- /dev/null +++ b/site/public/v1/software/pirate-king-online/index.json @@ -0,0 +1,19 @@ +{ + "id": 7737, + "slug": "pirate-king-online", + "name": "Pirate King Online", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140354976" + ], + "created_at": "2026-07-10T10:12:42.403736", + "updated_at": "2026-07-10T10:12:42.403736", + "url": "/v1/software/pirate-king-online" +} diff --git a/site/public/v1/software/pirate-pay/index.json b/site/public/v1/software/pirate-pay/index.json new file mode 100644 index 000000000000..42681a19581a --- /dev/null +++ b/site/public/v1/software/pirate-pay/index.json @@ -0,0 +1,21 @@ +{ + "id": 7738, + "slug": "pirate-pay", + "name": "Pirate Pay", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [ + "copy protection" + ], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7197819" + ], + "created_at": "2026-07-10T10:12:42.404719", + "updated_at": "2026-07-10T10:12:42.404719", + "url": "/v1/software/pirate-pay" +} diff --git a/site/public/v1/software/pirni/index.json b/site/public/v1/software/pirni/index.json new file mode 100644 index 000000000000..9def9259932f --- /dev/null +++ b/site/public/v1/software/pirni/index.json @@ -0,0 +1,23 @@ +{ + "id": 7739, + "slug": "pirni", + "name": "Pirni", + "release_date": "2010-05-29", + "developers": [], + "publishers": [], + "operating_systems": [ + "iOS" + ], + "programming_languages": [ + "Objective-C" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7198052" + ], + "created_at": "2026-07-10T10:12:42.404719", + "updated_at": "2026-07-10T10:12:42.404719", + "url": "/v1/software/pirni" +} diff --git a/site/public/v1/software/pisi/index.json b/site/public/v1/software/pisi/index.json new file mode 100644 index 000000000000..f9b42d075d85 --- /dev/null +++ b/site/public/v1/software/pisi/index.json @@ -0,0 +1,19 @@ +{ + "id": 7740, + "slug": "pisi", + "name": "PiSi", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6100943" + ], + "created_at": "2026-07-10T10:12:42.404719", + "updated_at": "2026-07-10T10:12:42.404719", + "url": "/v1/software/pisi" +} diff --git a/site/public/v1/software/pisignage/index.json b/site/public/v1/software/pisignage/index.json new file mode 100644 index 000000000000..84b6e1eb9b2e --- /dev/null +++ b/site/public/v1/software/pisignage/index.json @@ -0,0 +1,21 @@ +{ + "id": 7741, + "slug": "pisignage", + "name": "PiSignage", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "open-source software" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136645390" + ], + "created_at": "2026-07-10T10:12:42.404719", + "updated_at": "2026-07-10T10:12:42.404719", + "url": "/v1/software/pisignage" +} diff --git a/site/public/v1/software/pisonet/index.json b/site/public/v1/software/pisonet/index.json new file mode 100644 index 000000000000..5fac82bfea95 --- /dev/null +++ b/site/public/v1/software/pisonet/index.json @@ -0,0 +1,19 @@ +{ + "id": 7742, + "slug": "pisonet", + "name": "Pisonet", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6076859" + ], + "created_at": "2026-07-10T10:12:42.405711", + "updated_at": "2026-07-10T10:12:42.405711", + "url": "/v1/software/pisonet" +} diff --git a/site/public/v1/software/pitchy-software/index.json b/site/public/v1/software/pitchy-software/index.json new file mode 100644 index 000000000000..7d4237d7cf9a --- /dev/null +++ b/site/public/v1/software/pitchy-software/index.json @@ -0,0 +1,19 @@ +{ + "id": 7743, + "slug": "pitchy-software", + "name": "Pitchy software", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136979949" + ], + "created_at": "2026-07-10T10:12:42.405711", + "updated_at": "2026-07-10T10:12:42.405711", + "url": "/v1/software/pitchy-software" +} diff --git a/site/public/v1/software/piv2hdf/index.json b/site/public/v1/software/piv2hdf/index.json new file mode 100644 index 000000000000..8156e0a7dbe9 --- /dev/null +++ b/site/public/v1/software/piv2hdf/index.json @@ -0,0 +1,25 @@ +{ + "id": 7744, + "slug": "piv2hdf", + "name": "piv2hdf", + "release_date": null, + "developers": [ + "Matthias Probst" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Python" + ], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131448266" + ], + "created_at": "2026-07-10T10:12:42.405711", + "updated_at": "2026-07-10T10:12:42.405711", + "url": "/v1/software/piv2hdf" +} diff --git a/site/public/v1/software/pivmetalib/index.json b/site/public/v1/software/pivmetalib/index.json new file mode 100644 index 000000000000..b5e37ed0a7a7 --- /dev/null +++ b/site/public/v1/software/pivmetalib/index.json @@ -0,0 +1,21 @@ +{ + "id": 7745, + "slug": "pivmetalib", + "name": "pivmetalib", + "release_date": "2024-12-15", + "developers": [ + "Matthias Probst" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131449943" + ], + "created_at": "2026-07-10T10:12:42.406695", + "updated_at": "2026-07-10T10:12:42.406695", + "url": "/v1/software/pivmetalib" +} diff --git a/site/public/v1/software/pivot-animator/index.json b/site/public/v1/software/pivot-animator/index.json new file mode 100644 index 000000000000..c06d02825593 --- /dev/null +++ b/site/public/v1/software/pivot-animator/index.json @@ -0,0 +1,25 @@ +{ + "id": 7746, + "slug": "pivot-animator", + "name": "Pivot Animator", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [ + "Object Pascal" + ], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1474827" + ], + "created_at": "2026-07-10T10:12:42.406695", + "updated_at": "2026-07-10T10:12:42.406695", + "url": "/v1/software/pivot-animator" +} diff --git a/site/public/v1/software/pivotal-greenplum-database/index.json b/site/public/v1/software/pivotal-greenplum-database/index.json new file mode 100644 index 000000000000..4f294dd960b5 --- /dev/null +++ b/site/public/v1/software/pivotal-greenplum-database/index.json @@ -0,0 +1,19 @@ +{ + "id": 7747, + "slug": "pivotal-greenplum-database", + "name": "Pivotal Greenplum Database", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18388787" + ], + "created_at": "2026-07-10T10:12:42.406695", + "updated_at": "2026-07-10T10:12:42.406695", + "url": "/v1/software/pivotal-greenplum-database" +} diff --git a/site/public/v1/software/pivotal-labs/index.json b/site/public/v1/software/pivotal-labs/index.json new file mode 100644 index 000000000000..783cb77937db --- /dev/null +++ b/site/public/v1/software/pivotal-labs/index.json @@ -0,0 +1,19 @@ +{ + "id": 7748, + "slug": "pivotal-labs", + "name": "Pivotal Labs", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7199662" + ], + "created_at": "2026-07-10T10:12:42.407706", + "updated_at": "2026-07-10T10:12:42.407706", + "url": "/v1/software/pivotal-labs" +} diff --git a/site/public/v1/software/pivotal-tracker/index.json b/site/public/v1/software/pivotal-tracker/index.json new file mode 100644 index 000000000000..70f58516d1e9 --- /dev/null +++ b/site/public/v1/software/pivotal-tracker/index.json @@ -0,0 +1,19 @@ +{ + "id": 7749, + "slug": "pivotal-tracker", + "name": "Pivotal Tracker", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084478" + ], + "created_at": "2026-07-10T10:12:42.407706", + "updated_at": "2026-07-10T10:12:42.407706", + "url": "/v1/software/pivotal-tracker" +} diff --git a/site/public/v1/software/pix/index.json b/site/public/v1/software/pix/index.json new file mode 100644 index 000000000000..c318cbbc5c04 --- /dev/null +++ b/site/public/v1/software/pix/index.json @@ -0,0 +1,21 @@ +{ + "id": 7750, + "slug": "pix", + "name": "PIX", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7119453" + ], + "created_at": "2026-07-10T10:12:42.407706", + "updated_at": "2026-07-10T10:12:42.407706", + "url": "/v1/software/pix" +} diff --git a/site/public/v1/software/pix4dmapper/index.json b/site/public/v1/software/pix4dmapper/index.json new file mode 100644 index 000000000000..c6f202c9ee5e --- /dev/null +++ b/site/public/v1/software/pix4dmapper/index.json @@ -0,0 +1,19 @@ +{ + "id": 7751, + "slug": "pix4dmapper", + "name": "PIX4Dmapper", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130221244" + ], + "created_at": "2026-07-10T10:12:42.408699", + "updated_at": "2026-07-10T10:12:42.408699", + "url": "/v1/software/pix4dmapper" +} diff --git a/site/public/v1/software/pixel-game-maker-mv/index.json b/site/public/v1/software/pixel-game-maker-mv/index.json new file mode 100644 index 000000000000..cb8c8594e378 --- /dev/null +++ b/site/public/v1/software/pixel-game-maker-mv/index.json @@ -0,0 +1,23 @@ +{ + "id": 7752, + "slug": "pixel-game-maker-mv", + "name": "Pixel Game Maker MV", + "release_date": "2019-09-19", + "developers": [], + "publishers": [ + "Gotcha Gotcha Games" + ], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [ + "action game" + ], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10846413" + ], + "created_at": "2026-07-10T10:12:42.408699", + "updated_at": "2026-07-10T10:12:42.408699", + "url": "/v1/software/pixel-game-maker-mv" +} diff --git a/site/public/v1/software/pixel-studio-pro/index.json b/site/public/v1/software/pixel-studio-pro/index.json new file mode 100644 index 000000000000..50703019b1ab --- /dev/null +++ b/site/public/v1/software/pixel-studio-pro/index.json @@ -0,0 +1,19 @@ +{ + "id": 7753, + "slug": "pixel-studio-pro", + "name": "Pixel Studio Pro", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q601917" + ], + "created_at": "2026-07-10T10:12:42.408699", + "updated_at": "2026-07-10T10:12:42.408699", + "url": "/v1/software/pixel-studio-pro" +} diff --git a/site/public/v1/software/pixeljunk-monsters-ultimate-hd/index.json b/site/public/v1/software/pixeljunk-monsters-ultimate-hd/index.json new file mode 100644 index 000000000000..5212ac970d67 --- /dev/null +++ b/site/public/v1/software/pixeljunk-monsters-ultimate-hd/index.json @@ -0,0 +1,19 @@ +{ + "id": 7754, + "slug": "pixeljunk-monsters-ultimate-hd", + "name": "PixelJunk Monsters Ultimate HD", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140358628" + ], + "created_at": "2026-07-10T10:12:42.409713", + "updated_at": "2026-07-10T10:12:42.409713", + "url": "/v1/software/pixeljunk-monsters-ultimate-hd" +} diff --git a/site/public/v1/software/pixels2pgf/index.json b/site/public/v1/software/pixels2pgf/index.json new file mode 100644 index 000000000000..016e75c063a3 --- /dev/null +++ b/site/public/v1/software/pixels2pgf/index.json @@ -0,0 +1,19 @@ +{ + "id": 7755, + "slug": "pixels2pgf", + "name": "pixels2pgf", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975336" + ], + "created_at": "2026-07-10T10:12:42.409713", + "updated_at": "2026-07-10T10:12:42.409713", + "url": "/v1/software/pixels2pgf" +} diff --git a/site/public/v1/software/pixetell/index.json b/site/public/v1/software/pixetell/index.json new file mode 100644 index 000000000000..be11c1db410a --- /dev/null +++ b/site/public/v1/software/pixetell/index.json @@ -0,0 +1,24 @@ +{ + "id": 7756, + "slug": "pixetell", + "name": "Pixetell", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [ + "screencasting software" + ], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7199724" + ], + "created_at": "2026-07-10T10:12:42.409713", + "updated_at": "2026-07-10T10:12:42.409713", + "url": "/v1/software/pixetell" +} diff --git a/site/public/v1/software/pixie/index.json b/site/public/v1/software/pixie/index.json new file mode 100644 index 000000000000..562cfafe95d4 --- /dev/null +++ b/site/public/v1/software/pixie/index.json @@ -0,0 +1,19 @@ +{ + "id": 7757, + "slug": "pixie", + "name": "Pixie", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3905929" + ], + "created_at": "2026-07-10T10:12:42.410715", + "updated_at": "2026-07-10T10:12:42.410715", + "url": "/v1/software/pixie" +} diff --git a/site/public/v1/software/pixinsight/index.json b/site/public/v1/software/pixinsight/index.json new file mode 100644 index 000000000000..65044e7a8bf0 --- /dev/null +++ b/site/public/v1/software/pixinsight/index.json @@ -0,0 +1,26 @@ +{ + "id": 7758, + "slug": "pixinsight", + "name": "PixInsight", + "release_date": "2004-07-22", + "developers": [ + "Pleiades Astrophoto" + ], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17625195" + ], + "created_at": "2026-07-10T10:12:42.410715", + "updated_at": "2026-07-10T10:12:42.410715", + "url": "/v1/software/pixinsight" +} diff --git a/site/public/v1/software/pjblog/index.json b/site/public/v1/software/pjblog/index.json new file mode 100644 index 000000000000..05cab5258156 --- /dev/null +++ b/site/public/v1/software/pjblog/index.json @@ -0,0 +1,19 @@ +{ + "id": 7759, + "slug": "pjblog", + "name": "PJBlog", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q9371498" + ], + "created_at": "2026-07-10T10:12:42.410715", + "updated_at": "2026-07-10T10:12:42.410715", + "url": "/v1/software/pjblog" +} diff --git a/site/public/v1/software/pkp-open-archives-harvester/index.json b/site/public/v1/software/pkp-open-archives-harvester/index.json new file mode 100644 index 000000000000..1691941a3c6e --- /dev/null +++ b/site/public/v1/software/pkp-open-archives-harvester/index.json @@ -0,0 +1,19 @@ +{ + "id": 7760, + "slug": "pkp-open-archives-harvester", + "name": "PKP Open Archives Harvester", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7119529" + ], + "created_at": "2026-07-10T10:12:42.411718", + "updated_at": "2026-07-10T10:12:42.411718", + "url": "/v1/software/pkp-open-archives-harvester" +} diff --git a/site/public/v1/software/pkpgcounter/index.json b/site/public/v1/software/pkpgcounter/index.json new file mode 100644 index 000000000000..c6152fb5df46 --- /dev/null +++ b/site/public/v1/software/pkpgcounter/index.json @@ -0,0 +1,19 @@ +{ + "id": 7761, + "slug": "pkpgcounter", + "name": "pkpgcounter", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62860212" + ], + "created_at": "2026-07-10T10:12:42.411718", + "updated_at": "2026-07-10T10:12:42.411718", + "url": "/v1/software/pkpgcounter" +} diff --git a/site/public/v1/software/pkpm/index.json b/site/public/v1/software/pkpm/index.json new file mode 100644 index 000000000000..aa8c8468b6e1 --- /dev/null +++ b/site/public/v1/software/pkpm/index.json @@ -0,0 +1,19 @@ +{ + "id": 7762, + "slug": "pkpm", + "name": "PKPM", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10852089" + ], + "created_at": "2026-07-10T10:12:42.411718", + "updated_at": "2026-07-10T10:12:42.411718", + "url": "/v1/software/pkpm" +} diff --git a/site/public/v1/software/pktstat/index.json b/site/public/v1/software/pktstat/index.json new file mode 100644 index 000000000000..7b5ef607f39b --- /dev/null +++ b/site/public/v1/software/pktstat/index.json @@ -0,0 +1,19 @@ +{ + "id": 7763, + "slug": "pktstat", + "name": "pktstat", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62860137" + ], + "created_at": "2026-07-10T10:12:42.412703", + "updated_at": "2026-07-10T10:12:42.412703", + "url": "/v1/software/pktstat" +} diff --git a/site/public/v1/software/plagiarismcheck/index.json b/site/public/v1/software/plagiarismcheck/index.json new file mode 100644 index 000000000000..b3ff82a0165e --- /dev/null +++ b/site/public/v1/software/plagiarismcheck/index.json @@ -0,0 +1,19 @@ +{ + "id": 7764, + "slug": "plagiarismcheck", + "name": "PlagiarismCheck", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136333205" + ], + "created_at": "2026-07-10T10:12:42.412703", + "updated_at": "2026-07-10T10:12:42.412703", + "url": "/v1/software/plagiarismcheck" +} diff --git a/site/public/v1/software/plagscan/index.json b/site/public/v1/software/plagscan/index.json new file mode 100644 index 000000000000..a1fbdb158bfb --- /dev/null +++ b/site/public/v1/software/plagscan/index.json @@ -0,0 +1,19 @@ +{ + "id": 7765, + "slug": "plagscan", + "name": "PlagScan", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22907791" + ], + "created_at": "2026-07-10T10:12:42.412703", + "updated_at": "2026-07-10T10:12:42.412703", + "url": "/v1/software/plagscan" +} diff --git a/site/public/v1/software/plaidml/index.json b/site/public/v1/software/plaidml/index.json new file mode 100644 index 000000000000..eaa8ab4b3799 --- /dev/null +++ b/site/public/v1/software/plaidml/index.json @@ -0,0 +1,19 @@ +{ + "id": 7766, + "slug": "plaidml", + "name": "PlaidML", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60787541" + ], + "created_at": "2026-07-10T10:12:42.412703", + "updated_at": "2026-07-10T10:12:42.412703", + "url": "/v1/software/plaidml" +} diff --git a/site/public/v1/software/plain-ticket/index.json b/site/public/v1/software/plain-ticket/index.json new file mode 100644 index 000000000000..ab44b46de272 --- /dev/null +++ b/site/public/v1/software/plain-ticket/index.json @@ -0,0 +1,19 @@ +{ + "id": 7767, + "slug": "plain-ticket", + "name": "Plain Ticket", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7200629" + ], + "created_at": "2026-07-10T10:12:42.412703", + "updated_at": "2026-07-10T10:12:42.412703", + "url": "/v1/software/plain-ticket" +} diff --git a/site/public/v1/software/plan/index.json b/site/public/v1/software/plan/index.json new file mode 100644 index 000000000000..fa72d1e84b65 --- /dev/null +++ b/site/public/v1/software/plan/index.json @@ -0,0 +1,19 @@ +{ + "id": 7768, + "slug": "plan", + "name": "Plan", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7200862" + ], + "created_at": "2026-07-10T10:12:42.414281", + "updated_at": "2026-07-10T10:12:42.414281", + "url": "/v1/software/plan" +} diff --git a/site/public/v1/software/plane-notify/index.json b/site/public/v1/software/plane-notify/index.json new file mode 100644 index 000000000000..d4e21286740b --- /dev/null +++ b/site/public/v1/software/plane-notify/index.json @@ -0,0 +1,19 @@ +{ + "id": 7769, + "slug": "plane-notify", + "name": "plane-notify", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115733271" + ], + "created_at": "2026-07-10T10:12:42.414281", + "updated_at": "2026-07-10T10:12:42.414281", + "url": "/v1/software/plane-notify" +} diff --git a/site/public/v1/software/planet-soho/index.json b/site/public/v1/software/planet-soho/index.json new file mode 100644 index 000000000000..8c03c42e2a20 --- /dev/null +++ b/site/public/v1/software/planet-soho/index.json @@ -0,0 +1,19 @@ +{ + "id": 7770, + "slug": "planet-soho", + "name": "Planet Soho", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7201172" + ], + "created_at": "2026-07-10T10:12:42.414281", + "updated_at": "2026-07-10T10:12:42.414281", + "url": "/v1/software/planet-soho" +} diff --git a/site/public/v1/software/planify/index.json b/site/public/v1/software/planify/index.json new file mode 100644 index 000000000000..8c48ee4fcc21 --- /dev/null +++ b/site/public/v1/software/planify/index.json @@ -0,0 +1,19 @@ +{ + "id": 7771, + "slug": "planify", + "name": "Planify", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138862821" + ], + "created_at": "2026-07-10T10:12:42.415302", + "updated_at": "2026-07-10T10:12:42.415302", + "url": "/v1/software/planify" +} diff --git a/site/public/v1/software/planisware/index.json b/site/public/v1/software/planisware/index.json new file mode 100644 index 000000000000..c2774c012da5 --- /dev/null +++ b/site/public/v1/software/planisware/index.json @@ -0,0 +1,19 @@ +{ + "id": 7772, + "slug": "planisware", + "name": "Planisware", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q676735" + ], + "created_at": "2026-07-10T10:12:42.415302", + "updated_at": "2026-07-10T10:12:42.415302", + "url": "/v1/software/planisware" +} diff --git a/site/public/v1/software/planned-parenthood-direct/index.json b/site/public/v1/software/planned-parenthood-direct/index.json new file mode 100644 index 000000000000..ff007b4f1c11 --- /dev/null +++ b/site/public/v1/software/planned-parenthood-direct/index.json @@ -0,0 +1,19 @@ +{ + "id": 7773, + "slug": "planned-parenthood-direct", + "name": "Planned Parenthood Direct", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134608099" + ], + "created_at": "2026-07-10T10:12:42.415302", + "updated_at": "2026-07-10T10:12:42.415302", + "url": "/v1/software/planned-parenthood-direct" +} diff --git a/site/public/v1/software/plant-nanny/index.json b/site/public/v1/software/plant-nanny/index.json new file mode 100644 index 000000000000..90db57a106b9 --- /dev/null +++ b/site/public/v1/software/plant-nanny/index.json @@ -0,0 +1,19 @@ +{ + "id": 7774, + "slug": "plant-nanny", + "name": "Plant Nanny", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120142610" + ], + "created_at": "2026-07-10T10:12:42.416291", + "updated_at": "2026-07-10T10:12:42.416291", + "url": "/v1/software/plant-nanny" +} diff --git a/site/public/v1/software/plant-simulation/index.json b/site/public/v1/software/plant-simulation/index.json new file mode 100644 index 000000000000..b39763bba014 --- /dev/null +++ b/site/public/v1/software/plant-simulation/index.json @@ -0,0 +1,21 @@ +{ + "id": 7775, + "slug": "plant-simulation", + "name": "Plant Simulation", + "release_date": null, + "developers": [ + "UGS Corp." + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q822039" + ], + "created_at": "2026-07-10T10:12:42.416291", + "updated_at": "2026-07-10T10:12:42.416291", + "url": "/v1/software/plant-simulation" +} diff --git a/site/public/v1/software/planta-project/index.json b/site/public/v1/software/planta-project/index.json new file mode 100644 index 000000000000..6ccba527e6df --- /dev/null +++ b/site/public/v1/software/planta-project/index.json @@ -0,0 +1,19 @@ +{ + "id": 7776, + "slug": "planta-project", + "name": "PLANTA Project", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q952535" + ], + "created_at": "2026-07-10T10:12:42.416291", + "updated_at": "2026-07-10T10:12:42.416291", + "url": "/v1/software/planta-project" +} diff --git a/site/public/v1/software/plantix-mobile-app/index.json b/site/public/v1/software/plantix-mobile-app/index.json new file mode 100644 index 000000000000..61678d148f52 --- /dev/null +++ b/site/public/v1/software/plantix-mobile-app/index.json @@ -0,0 +1,19 @@ +{ + "id": 7777, + "slug": "plantix-mobile-app", + "name": "Plantix (mobile app)", + "release_date": "2015-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q55477108" + ], + "created_at": "2026-07-10T10:12:42.417290", + "updated_at": "2026-07-10T10:12:42.417290", + "url": "/v1/software/plantix-mobile-app" +} diff --git a/site/public/v1/software/plantum/index.json b/site/public/v1/software/plantum/index.json new file mode 100644 index 000000000000..fae5ae38a3e9 --- /dev/null +++ b/site/public/v1/software/plantum/index.json @@ -0,0 +1,19 @@ +{ + "id": 7778, + "slug": "plantum", + "name": "Plantum", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138542169" + ], + "created_at": "2026-07-10T10:12:42.417290", + "updated_at": "2026-07-10T10:12:42.417290", + "url": "/v1/software/plantum" +} diff --git a/site/public/v1/software/planz/index.json b/site/public/v1/software/planz/index.json new file mode 100644 index 000000000000..bbb1f0134261 --- /dev/null +++ b/site/public/v1/software/planz/index.json @@ -0,0 +1,19 @@ +{ + "id": 7779, + "slug": "planz", + "name": "Planz", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7201679" + ], + "created_at": "2026-07-10T10:12:42.417290", + "updated_at": "2026-07-10T10:12:42.417290", + "url": "/v1/software/planz" +} diff --git a/site/public/v1/software/plasim/index.json b/site/public/v1/software/plasim/index.json new file mode 100644 index 000000000000..0f1393fdbaec --- /dev/null +++ b/site/public/v1/software/plasim/index.json @@ -0,0 +1,21 @@ +{ + "id": 7780, + "slug": "plasim", + "name": "PlaSim", + "release_date": null, + "developers": [ + "Hartmut Borth" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127123691" + ], + "created_at": "2026-07-10T10:12:42.418294", + "updated_at": "2026-07-10T10:12:42.418294", + "url": "/v1/software/plasim" +} diff --git a/site/public/v1/software/plasma-applet-network-monitor/index.json b/site/public/v1/software/plasma-applet-network-monitor/index.json new file mode 100644 index 000000000000..832c28860fd8 --- /dev/null +++ b/site/public/v1/software/plasma-applet-network-monitor/index.json @@ -0,0 +1,19 @@ +{ + "id": 7781, + "slug": "plasma-applet-network-monitor", + "name": "plasma-applet-network-monitor", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975342" + ], + "created_at": "2026-07-10T10:12:42.418294", + "updated_at": "2026-07-10T10:12:42.418294", + "url": "/v1/software/plasma-applet-network-monitor" +} diff --git a/site/public/v1/software/plasma-applet-weather-widget/index.json b/site/public/v1/software/plasma-applet-weather-widget/index.json new file mode 100644 index 000000000000..79937aedd452 --- /dev/null +++ b/site/public/v1/software/plasma-applet-weather-widget/index.json @@ -0,0 +1,19 @@ +{ + "id": 7782, + "slug": "plasma-applet-weather-widget", + "name": "plasma-applet-weather-widget", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975343" + ], + "created_at": "2026-07-10T10:12:42.418294", + "updated_at": "2026-07-10T10:12:42.418294", + "url": "/v1/software/plasma-applet-weather-widget" +} diff --git a/site/public/v1/software/plasma-bigscreen/index.json b/site/public/v1/software/plasma-bigscreen/index.json new file mode 100644 index 000000000000..9a911a9a1323 --- /dev/null +++ b/site/public/v1/software/plasma-bigscreen/index.json @@ -0,0 +1,21 @@ +{ + "id": 7783, + "slug": "plasma-bigscreen", + "name": "Plasma Bigscreen", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "GNU General Public License, version 2.0 or later" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108130962" + ], + "created_at": "2026-07-10T10:12:42.419294", + "updated_at": "2026-07-10T10:12:42.419294", + "url": "/v1/software/plasma-bigscreen" +} diff --git a/site/public/v1/software/plasma-media-center/index.json b/site/public/v1/software/plasma-media-center/index.json new file mode 100644 index 000000000000..f14d42f31844 --- /dev/null +++ b/site/public/v1/software/plasma-media-center/index.json @@ -0,0 +1,19 @@ +{ + "id": 7784, + "slug": "plasma-media-center", + "name": "Plasma Media Center", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q20072376" + ], + "created_at": "2026-07-10T10:12:42.419294", + "updated_at": "2026-07-10T10:12:42.419294", + "url": "/v1/software/plasma-media-center" +} diff --git a/site/public/v1/software/plastic-scm/index.json b/site/public/v1/software/plastic-scm/index.json new file mode 100644 index 000000000000..99d730e57c51 --- /dev/null +++ b/site/public/v1/software/plastic-scm/index.json @@ -0,0 +1,21 @@ +{ + "id": 7785, + "slug": "plastic-scm", + "name": "Plastic SCM", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5403883" + ], + "created_at": "2026-07-10T10:12:42.419294", + "updated_at": "2026-07-10T10:12:42.419294", + "url": "/v1/software/plastic-scm" +} diff --git a/site/public/v1/software/plasticity/index.json b/site/public/v1/software/plasticity/index.json new file mode 100644 index 000000000000..b02f56f95409 --- /dev/null +++ b/site/public/v1/software/plasticity/index.json @@ -0,0 +1,19 @@ +{ + "id": 7786, + "slug": "plasticity", + "name": "Plasticity", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131425717" + ], + "created_at": "2026-07-10T10:12:42.420293", + "updated_at": "2026-07-10T10:12:42.420293", + "url": "/v1/software/plasticity" +} diff --git a/site/public/v1/software/plate-recognizer/index.json b/site/public/v1/software/plate-recognizer/index.json new file mode 100644 index 000000000000..1aa123942b1a --- /dev/null +++ b/site/public/v1/software/plate-recognizer/index.json @@ -0,0 +1,19 @@ +{ + "id": 7787, + "slug": "plate-recognizer", + "name": "Plate Recognizer", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q88930846" + ], + "created_at": "2026-07-10T10:12:42.420293", + "updated_at": "2026-07-10T10:12:42.420293", + "url": "/v1/software/plate-recognizer" +} diff --git a/site/public/v1/software/platform-for-real-time-impact-and-situation-monitoring/index.json b/site/public/v1/software/platform-for-real-time-impact-and-situation-monitoring/index.json new file mode 100644 index 000000000000..10549fd3c882 --- /dev/null +++ b/site/public/v1/software/platform-for-real-time-impact-and-situation-monitoring/index.json @@ -0,0 +1,19 @@ +{ + "id": 7788, + "slug": "platform-for-real-time-impact-and-situation-monitoring", + "name": "Platform for Real-time Impact and Situation Monitoring", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135185176" + ], + "created_at": "2026-07-10T10:12:42.420293", + "updated_at": "2026-07-10T10:12:42.420293", + "url": "/v1/software/platform-for-real-time-impact-and-situation-monitoring" +} diff --git a/site/public/v1/software/platform-lsf/index.json b/site/public/v1/software/platform-lsf/index.json new file mode 100644 index 000000000000..95356d96f95d --- /dev/null +++ b/site/public/v1/software/platform-lsf/index.json @@ -0,0 +1,21 @@ +{ + "id": 7789, + "slug": "platform-lsf", + "name": "Platform LSF", + "release_date": null, + "developers": [ + "Platform Computing" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7202274" + ], + "created_at": "2026-07-10T10:12:42.421293", + "updated_at": "2026-07-10T10:12:42.421293", + "url": "/v1/software/platform-lsf" +} diff --git a/site/public/v1/software/platforms-code/index.json b/site/public/v1/software/platforms-code/index.json new file mode 100644 index 000000000000..cece6a91f202 --- /dev/null +++ b/site/public/v1/software/platforms-code/index.json @@ -0,0 +1,24 @@ +{ + "id": 7790, + "slug": "platforms-code", + "name": "Platforms Code", + "release_date": null, + "developers": [ + "Digital Government Authority" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "HTML", + "Cascading Style Sheets" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127850597" + ], + "created_at": "2026-07-10T10:12:42.421293", + "updated_at": "2026-07-10T10:12:42.421293", + "url": "/v1/software/platforms-code" +} diff --git a/site/public/v1/software/platin/index.json b/site/public/v1/software/platin/index.json new file mode 100644 index 000000000000..55dbb7aeb7aa --- /dev/null +++ b/site/public/v1/software/platin/index.json @@ -0,0 +1,19 @@ +{ + "id": 7791, + "slug": "platin", + "name": "PLATIN", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084479" + ], + "created_at": "2026-07-10T10:12:42.421293", + "updated_at": "2026-07-10T10:12:42.421293", + "url": "/v1/software/platin" +} diff --git a/site/public/v1/software/plato/index.json b/site/public/v1/software/plato/index.json new file mode 100644 index 000000000000..0eb9783e5d3f --- /dev/null +++ b/site/public/v1/software/plato/index.json @@ -0,0 +1,19 @@ +{ + "id": 7792, + "slug": "plato", + "name": "PLATO", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7119589" + ], + "created_at": "2026-07-10T10:12:42.421293", + "updated_at": "2026-07-10T10:12:42.421293", + "url": "/v1/software/plato" +} diff --git a/site/public/v1/software/platon/index.json b/site/public/v1/software/platon/index.json new file mode 100644 index 000000000000..66684434411d --- /dev/null +++ b/site/public/v1/software/platon/index.json @@ -0,0 +1,21 @@ +{ + "id": 7793, + "slug": "platon", + "name": "PLATON", + "release_date": null, + "developers": [ + "Anthony L. Spek" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117476560" + ], + "created_at": "2026-07-10T10:12:42.422350", + "updated_at": "2026-07-10T10:12:42.422350", + "url": "/v1/software/platon" +} diff --git a/site/public/v1/software/plaxis/index.json b/site/public/v1/software/plaxis/index.json new file mode 100644 index 000000000000..2596c2dd63aa --- /dev/null +++ b/site/public/v1/software/plaxis/index.json @@ -0,0 +1,21 @@ +{ + "id": 7794, + "slug": "plaxis", + "name": "Plaxis", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18396068" + ], + "created_at": "2026-07-10T10:12:42.422350", + "updated_at": "2026-07-10T10:12:42.422350", + "url": "/v1/software/plaxis" +} diff --git a/site/public/v1/software/play-anywhere/index.json b/site/public/v1/software/play-anywhere/index.json new file mode 100644 index 000000000000..b8ba179bcc68 --- /dev/null +++ b/site/public/v1/software/play-anywhere/index.json @@ -0,0 +1,19 @@ +{ + "id": 7795, + "slug": "play-anywhere", + "name": "Play Anywhere", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q611695" + ], + "created_at": "2026-07-10T10:12:42.422350", + "updated_at": "2026-07-10T10:12:42.423353", + "url": "/v1/software/play-anywhere" +} diff --git a/site/public/v1/software/playmemories-studio/index.json b/site/public/v1/software/playmemories-studio/index.json new file mode 100644 index 000000000000..20de5fc551da --- /dev/null +++ b/site/public/v1/software/playmemories-studio/index.json @@ -0,0 +1,19 @@ +{ + "id": 7796, + "slug": "playmemories-studio", + "name": "PlayMemories Studio", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7202943" + ], + "created_at": "2026-07-10T10:12:42.423353", + "updated_at": "2026-07-10T10:12:42.423353", + "url": "/v1/software/playmemories-studio" +} diff --git a/site/public/v1/software/playmidi/index.json b/site/public/v1/software/playmidi/index.json new file mode 100644 index 000000000000..ea2ae864c05c --- /dev/null +++ b/site/public/v1/software/playmidi/index.json @@ -0,0 +1,19 @@ +{ + "id": 7797, + "slug": "playmidi", + "name": "PlayMIDI", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62858236" + ], + "created_at": "2026-07-10T10:12:42.423353", + "updated_at": "2026-07-10T10:12:42.423353", + "url": "/v1/software/playmidi" +} diff --git a/site/public/v1/software/playn/index.json b/site/public/v1/software/playn/index.json new file mode 100644 index 000000000000..a0be9f41cc14 --- /dev/null +++ b/site/public/v1/software/playn/index.json @@ -0,0 +1,25 @@ +{ + "id": 7798, + "slug": "playn", + "name": "PlayN", + "release_date": null, + "developers": [ + "Google" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Java" + ], + "licenses": [ + "Apache License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3392073" + ], + "created_at": "2026-07-10T10:12:42.423353", + "updated_at": "2026-07-10T10:12:42.423353", + "url": "/v1/software/playn" +} diff --git a/site/public/v1/software/playnow-arena/index.json b/site/public/v1/software/playnow-arena/index.json new file mode 100644 index 000000000000..3d37419d32f6 --- /dev/null +++ b/site/public/v1/software/playnow-arena/index.json @@ -0,0 +1,21 @@ +{ + "id": 7799, + "slug": "playnow-arena", + "name": "PlayNow Arena", + "release_date": "2004-01-01", + "developers": [ + "Sony Mobile Communications" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1237238" + ], + "created_at": "2026-07-10T10:12:42.424346", + "updated_at": "2026-07-10T10:12:42.424346", + "url": "/v1/software/playnow-arena" +} diff --git a/site/public/v1/software/playond/index.json b/site/public/v1/software/playond/index.json new file mode 100644 index 000000000000..4a162af00628 --- /dev/null +++ b/site/public/v1/software/playond/index.json @@ -0,0 +1,19 @@ +{ + "id": 7800, + "slug": "playond", + "name": "Playond", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140469426" + ], + "created_at": "2026-07-10T10:12:42.424346", + "updated_at": "2026-07-10T10:12:42.424346", + "url": "/v1/software/playond" +} diff --git a/site/public/v1/software/playstation-app/index.json b/site/public/v1/software/playstation-app/index.json new file mode 100644 index 000000000000..ff326000aa1a --- /dev/null +++ b/site/public/v1/software/playstation-app/index.json @@ -0,0 +1,25 @@ +{ + "id": 7801, + "slug": "playstation-app", + "name": "PlayStation App", + "release_date": "2011-01-11", + "developers": [ + "PlayStation Mobile, Inc." + ], + "publishers": [ + "Sony Interactive Entertainment" + ], + "operating_systems": [ + "iOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7202970" + ], + "created_at": "2026-07-10T10:12:42.424346", + "updated_at": "2026-07-10T10:12:42.424346", + "url": "/v1/software/playstation-app" +} diff --git a/site/public/v1/software/playstation-mobile/index.json b/site/public/v1/software/playstation-mobile/index.json new file mode 100644 index 000000000000..a45bc3c45f2e --- /dev/null +++ b/site/public/v1/software/playstation-mobile/index.json @@ -0,0 +1,21 @@ +{ + "id": 7802, + "slug": "playstation-mobile", + "name": "PlayStation Mobile", + "release_date": null, + "developers": [ + "Sony Interactive Entertainment" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1140931" + ], + "created_at": "2026-07-10T10:12:42.425353", + "updated_at": "2026-07-10T10:12:42.425353", + "url": "/v1/software/playstation-mobile" +} diff --git a/site/public/v1/software/playwright/index.json b/site/public/v1/software/playwright/index.json new file mode 100644 index 000000000000..7c08cd4a52a4 --- /dev/null +++ b/site/public/v1/software/playwright/index.json @@ -0,0 +1,21 @@ +{ + "id": 7803, + "slug": "playwright", + "name": "Playwright", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Apache Software License 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123150615" + ], + "created_at": "2026-07-10T10:12:42.425353", + "updated_at": "2026-07-10T10:12:42.425353", + "url": "/v1/software/playwright" +} diff --git a/site/public/v1/software/playxpert/index.json b/site/public/v1/software/playxpert/index.json new file mode 100644 index 000000000000..03c3cb194f5b --- /dev/null +++ b/site/public/v1/software/playxpert/index.json @@ -0,0 +1,19 @@ +{ + "id": 7804, + "slug": "playxpert", + "name": "PlayXpert", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2335477" + ], + "created_at": "2026-07-10T10:12:42.425353", + "updated_at": "2026-07-10T10:12:42.425353", + "url": "/v1/software/playxpert" +} diff --git a/site/public/v1/software/plecs/index.json b/site/public/v1/software/plecs/index.json new file mode 100644 index 000000000000..6e6a6d8f37bc --- /dev/null +++ b/site/public/v1/software/plecs/index.json @@ -0,0 +1,21 @@ +{ + "id": 7805, + "slug": "plecs", + "name": "PLECS", + "release_date": null, + "developers": [ + "Plexim" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7119618" + ], + "created_at": "2026-07-10T10:12:42.425353", + "updated_at": "2026-07-10T10:12:42.425353", + "url": "/v1/software/plecs" +} diff --git a/site/public/v1/software/plesk/index.json b/site/public/v1/software/plesk/index.json new file mode 100644 index 000000000000..5a5c48dac436 --- /dev/null +++ b/site/public/v1/software/plesk/index.json @@ -0,0 +1,21 @@ +{ + "id": 7806, + "slug": "plesk", + "name": "Plesk", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2099390" + ], + "created_at": "2026-07-10T10:12:42.426360", + "updated_at": "2026-07-10T10:12:42.426360", + "url": "/v1/software/plesk" +} diff --git a/site/public/v1/software/plink/index.json b/site/public/v1/software/plink/index.json new file mode 100644 index 000000000000..10c4e8ce522d --- /dev/null +++ b/site/public/v1/software/plink/index.json @@ -0,0 +1,19 @@ +{ + "id": 7807, + "slug": "plink", + "name": "PLINK", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18359288" + ], + "created_at": "2026-07-10T10:12:42.426360", + "updated_at": "2026-07-10T10:12:42.426360", + "url": "/v1/software/plink" +} diff --git a/site/public/v1/software/pliny/index.json b/site/public/v1/software/pliny/index.json new file mode 100644 index 000000000000..8a2bb76762ad --- /dev/null +++ b/site/public/v1/software/pliny/index.json @@ -0,0 +1,19 @@ +{ + "id": 7808, + "slug": "pliny", + "name": "Pliny", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084480" + ], + "created_at": "2026-07-10T10:12:42.426360", + "updated_at": "2026-07-10T10:12:42.426360", + "url": "/v1/software/pliny" +} diff --git a/site/public/v1/software/plot-digitizer/index.json b/site/public/v1/software/plot-digitizer/index.json new file mode 100644 index 000000000000..8db429cbebee --- /dev/null +++ b/site/public/v1/software/plot-digitizer/index.json @@ -0,0 +1,23 @@ +{ + "id": 7809, + "slug": "plot-digitizer", + "name": "Plot Digitizer", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Java" + ], + "licenses": [ + "GNU General Public License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q12127640" + ], + "created_at": "2026-07-10T10:12:42.427350", + "updated_at": "2026-07-10T10:12:42.427350", + "url": "/v1/software/plot-digitizer" +} diff --git a/site/public/v1/software/plotly-py/index.json b/site/public/v1/software/plotly-py/index.json new file mode 100644 index 000000000000..7cfbbd48b217 --- /dev/null +++ b/site/public/v1/software/plotly-py/index.json @@ -0,0 +1,23 @@ +{ + "id": 7810, + "slug": "plotly-py", + "name": "plotly.py", + "release_date": null, + "developers": [ + "Jon Mease" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120119127" + ], + "created_at": "2026-07-10T10:12:42.427350", + "updated_at": "2026-07-10T10:12:42.427350", + "url": "/v1/software/plotly-py" +} diff --git a/site/public/v1/software/plotly/index.json b/site/public/v1/software/plotly/index.json new file mode 100644 index 000000000000..f62aae440667 --- /dev/null +++ b/site/public/v1/software/plotly/index.json @@ -0,0 +1,27 @@ +{ + "id": 7811, + "slug": "plotly", + "name": "Plotly", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "cross-platform" + ], + "programming_languages": [ + "Python", + "R", + "Julia" + ], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17146476" + ], + "created_at": "2026-07-10T10:12:42.427350", + "updated_at": "2026-07-10T10:12:42.427350", + "url": "/v1/software/plotly" +} diff --git a/site/public/v1/software/plowshare/index.json b/site/public/v1/software/plowshare/index.json new file mode 100644 index 000000000000..b016bfcc0431 --- /dev/null +++ b/site/public/v1/software/plowshare/index.json @@ -0,0 +1,19 @@ +{ + "id": 7812, + "slug": "plowshare", + "name": "plowshare", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975344" + ], + "created_at": "2026-07-10T10:12:42.427350", + "updated_at": "2026-07-10T10:12:42.427350", + "url": "/v1/software/plowshare" +} diff --git a/site/public/v1/software/plugplayer/index.json b/site/public/v1/software/plugplayer/index.json new file mode 100644 index 000000000000..fcf352410e84 --- /dev/null +++ b/site/public/v1/software/plugplayer/index.json @@ -0,0 +1,24 @@ +{ + "id": 7813, + "slug": "plugplayer", + "name": "PlugPlayer", + "release_date": "2008-10-01", + "developers": [ + "PlugPlayer" + ], + "publishers": [], + "operating_systems": [ + "iOS", + "macOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7205239" + ], + "created_at": "2026-07-10T10:12:42.428396", + "updated_at": "2026-07-10T10:12:42.428396", + "url": "/v1/software/plugplayer" +} diff --git a/site/public/v1/software/plumber/index.json b/site/public/v1/software/plumber/index.json new file mode 100644 index 000000000000..af7cb587c6bd --- /dev/null +++ b/site/public/v1/software/plumber/index.json @@ -0,0 +1,22 @@ +{ + "id": 7814, + "slug": "plumber", + "name": "plumber", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Inferno", + "Plan 9" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3906772" + ], + "created_at": "2026-07-10T10:12:42.428396", + "updated_at": "2026-07-10T10:12:42.428396", + "url": "/v1/software/plumber" +} diff --git a/site/public/v1/software/plumbr/index.json b/site/public/v1/software/plumbr/index.json new file mode 100644 index 000000000000..33e5992ca249 --- /dev/null +++ b/site/public/v1/software/plumbr/index.json @@ -0,0 +1,19 @@ +{ + "id": 7815, + "slug": "plumbr", + "name": "Plumbr", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18636588" + ], + "created_at": "2026-07-10T10:12:42.428396", + "updated_at": "2026-07-10T10:12:42.428396", + "url": "/v1/software/plumbr" +} diff --git a/site/public/v1/software/plumed/index.json b/site/public/v1/software/plumed/index.json new file mode 100644 index 000000000000..45e8296b2b97 --- /dev/null +++ b/site/public/v1/software/plumed/index.json @@ -0,0 +1,19 @@ +{ + "id": 7816, + "slug": "plumed", + "name": "PLUMED", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q65073042" + ], + "created_at": "2026-07-10T10:12:42.429361", + "updated_at": "2026-07-10T10:12:42.429361", + "url": "/v1/software/plumed" +} diff --git a/site/public/v1/software/ply/index.json b/site/public/v1/software/ply/index.json new file mode 100644 index 000000000000..828d0588360f --- /dev/null +++ b/site/public/v1/software/ply/index.json @@ -0,0 +1,23 @@ +{ + "id": 7817, + "slug": "ply", + "name": "PLY", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Python" + ], + "licenses": [ + "BSD licenses" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17141283" + ], + "created_at": "2026-07-10T10:12:42.429361", + "updated_at": "2026-07-10T10:12:42.429361", + "url": "/v1/software/ply" +} diff --git a/site/public/v1/software/pm2/index.json b/site/public/v1/software/pm2/index.json new file mode 100644 index 000000000000..ce2e4b45da46 --- /dev/null +++ b/site/public/v1/software/pm2/index.json @@ -0,0 +1,19 @@ +{ + "id": 7818, + "slug": "pm2", + "name": "PM2", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7119711" + ], + "created_at": "2026-07-10T10:12:42.429361", + "updated_at": "2026-07-10T10:12:42.429361", + "url": "/v1/software/pm2" +} diff --git a/site/public/v1/software/pmacct/index.json b/site/public/v1/software/pmacct/index.json new file mode 100644 index 000000000000..95e1ac3a449b --- /dev/null +++ b/site/public/v1/software/pmacct/index.json @@ -0,0 +1,19 @@ +{ + "id": 7819, + "slug": "pmacct", + "name": "pmacct", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60864950" + ], + "created_at": "2026-07-10T10:12:42.430350", + "updated_at": "2026-07-10T10:12:42.430350", + "url": "/v1/software/pmacct" +} diff --git a/site/public/v1/software/pmaw/index.json b/site/public/v1/software/pmaw/index.json new file mode 100644 index 000000000000..34d453b27dc9 --- /dev/null +++ b/site/public/v1/software/pmaw/index.json @@ -0,0 +1,23 @@ +{ + "id": 7820, + "slug": "pmaw", + "name": "pmaw", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Python" + ], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116701969" + ], + "created_at": "2026-07-10T10:12:42.430350", + "updated_at": "2026-07-10T10:12:42.430350", + "url": "/v1/software/pmaw" +} diff --git a/site/public/v1/software/pmount-gui/index.json b/site/public/v1/software/pmount-gui/index.json new file mode 100644 index 000000000000..6102c65fd343 --- /dev/null +++ b/site/public/v1/software/pmount-gui/index.json @@ -0,0 +1,19 @@ +{ + "id": 7821, + "slug": "pmount-gui", + "name": "pmount-gui", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975345" + ], + "created_at": "2026-07-10T10:12:42.430350", + "updated_at": "2026-07-10T10:12:42.430350", + "url": "/v1/software/pmount-gui" +} diff --git a/site/public/v1/software/pms/index.json b/site/public/v1/software/pms/index.json new file mode 100644 index 000000000000..5e1e5f3854bf --- /dev/null +++ b/site/public/v1/software/pms/index.json @@ -0,0 +1,21 @@ +{ + "id": 7822, + "slug": "pms", + "name": "pms", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975346" + ], + "created_at": "2026-07-10T10:12:42.431354", + "updated_at": "2026-07-10T10:12:42.431354", + "url": "/v1/software/pms" +} diff --git a/site/public/v1/software/pmspace-ai/index.json b/site/public/v1/software/pmspace-ai/index.json new file mode 100644 index 000000000000..689dd7fa090a --- /dev/null +++ b/site/public/v1/software/pmspace-ai/index.json @@ -0,0 +1,19 @@ +{ + "id": 7823, + "slug": "pmspace-ai", + "name": "PMSPACE AI", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139586325" + ], + "created_at": "2026-07-10T10:12:42.431354", + "updated_at": "2026-07-10T10:12:42.431354", + "url": "/v1/software/pmspace-ai" +} diff --git a/site/public/v1/software/pmtrans/index.json b/site/public/v1/software/pmtrans/index.json new file mode 100644 index 000000000000..89af6fac6629 --- /dev/null +++ b/site/public/v1/software/pmtrans/index.json @@ -0,0 +1,26 @@ +{ + "id": 7824, + "slug": "pmtrans", + "name": "pmTrans", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [ + "Java" + ], + "licenses": [ + "GNU Lesser General Public License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105076389" + ], + "created_at": "2026-07-10T10:12:42.431354", + "updated_at": "2026-07-10T10:12:42.431354", + "url": "/v1/software/pmtrans" +} diff --git a/site/public/v1/software/pnetc/index.json b/site/public/v1/software/pnetc/index.json new file mode 100644 index 000000000000..f6ab35c9745f --- /dev/null +++ b/site/public/v1/software/pnetc/index.json @@ -0,0 +1,19 @@ +{ + "id": 7825, + "slug": "pnetc", + "name": "PnetC", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16978017" + ], + "created_at": "2026-07-10T10:12:42.431354", + "updated_at": "2026-07-10T10:12:42.431354", + "url": "/v1/software/pnetc" +} diff --git a/site/public/v1/software/pngcheck/index.json b/site/public/v1/software/pngcheck/index.json new file mode 100644 index 000000000000..ba6a3d66aae4 --- /dev/null +++ b/site/public/v1/software/pngcheck/index.json @@ -0,0 +1,19 @@ +{ + "id": 7826, + "slug": "pngcheck", + "name": "pngcheck", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62858002" + ], + "created_at": "2026-07-10T10:12:42.432350", + "updated_at": "2026-07-10T10:12:42.432350", + "url": "/v1/software/pngcheck" +} diff --git a/site/public/v1/software/pngtools/index.json b/site/public/v1/software/pngtools/index.json new file mode 100644 index 000000000000..0c10b2f190a8 --- /dev/null +++ b/site/public/v1/software/pngtools/index.json @@ -0,0 +1,19 @@ +{ + "id": 7827, + "slug": "pngtools", + "name": "PNGtools", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62857978" + ], + "created_at": "2026-07-10T10:12:42.432350", + "updated_at": "2026-07-10T10:12:42.432350", + "url": "/v1/software/pngtools" +} diff --git a/site/public/v1/software/pnmixer/index.json b/site/public/v1/software/pnmixer/index.json new file mode 100644 index 000000000000..7d840e63e49a --- /dev/null +++ b/site/public/v1/software/pnmixer/index.json @@ -0,0 +1,19 @@ +{ + "id": 7828, + "slug": "pnmixer", + "name": "pnmixer", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975347" + ], + "created_at": "2026-07-10T10:12:42.433372", + "updated_at": "2026-07-10T10:12:42.433372", + "url": "/v1/software/pnmixer" +} diff --git a/site/public/v1/software/pnpm/index.json b/site/public/v1/software/pnpm/index.json new file mode 100644 index 000000000000..c6c2697b8f29 --- /dev/null +++ b/site/public/v1/software/pnpm/index.json @@ -0,0 +1,23 @@ +{ + "id": 7829, + "slug": "pnpm", + "name": "pnpm", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "cross-platform" + ], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118939881" + ], + "created_at": "2026-07-10T10:12:42.433372", + "updated_at": "2026-07-10T10:12:42.433372", + "url": "/v1/software/pnpm" +} diff --git a/site/public/v1/software/pocket-sales-force/index.json b/site/public/v1/software/pocket-sales-force/index.json new file mode 100644 index 000000000000..3d4a55545c4a --- /dev/null +++ b/site/public/v1/software/pocket-sales-force/index.json @@ -0,0 +1,19 @@ +{ + "id": 7830, + "slug": "pocket-sales-force", + "name": "Pocket Sales Force", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121631694" + ], + "created_at": "2026-07-10T10:12:42.433372", + "updated_at": "2026-07-10T10:12:42.433372", + "url": "/v1/software/pocket-sales-force" +} diff --git a/site/public/v1/software/pocket-word/index.json b/site/public/v1/software/pocket-word/index.json new file mode 100644 index 000000000000..2f5c198e86e0 --- /dev/null +++ b/site/public/v1/software/pocket-word/index.json @@ -0,0 +1,19 @@ +{ + "id": 7831, + "slug": "pocket-word", + "name": "Pocket Word", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q51370425" + ], + "created_at": "2026-07-10T10:12:42.433372", + "updated_at": "2026-07-10T10:12:42.433372", + "url": "/v1/software/pocket-word" +} diff --git a/site/public/v1/software/podcast-capture/index.json b/site/public/v1/software/podcast-capture/index.json new file mode 100644 index 000000000000..f36054dbc888 --- /dev/null +++ b/site/public/v1/software/podcast-capture/index.json @@ -0,0 +1,23 @@ +{ + "id": 7832, + "slug": "podcast-capture", + "name": "Podcast Capture", + "release_date": null, + "developers": [ + "Apple Inc." + ], + "publishers": [], + "operating_systems": [ + "macOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4047124" + ], + "created_at": "2026-07-10T10:12:42.434412", + "updated_at": "2026-07-10T10:12:42.434412", + "url": "/v1/software/podcast-capture" +} diff --git a/site/public/v1/software/podcastify/index.json b/site/public/v1/software/podcastify/index.json new file mode 100644 index 000000000000..afc5425343e2 --- /dev/null +++ b/site/public/v1/software/podcastify/index.json @@ -0,0 +1,21 @@ +{ + "id": 7833, + "slug": "podcastify", + "name": "Podcastify", + "release_date": "2026-01-03", + "developers": [ + "Kasparian" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140315540" + ], + "created_at": "2026-07-10T10:12:42.434412", + "updated_at": "2026-07-10T10:12:42.434412", + "url": "/v1/software/podcastify" +} diff --git a/site/public/v1/software/podio/index.json b/site/public/v1/software/podio/index.json new file mode 100644 index 000000000000..7ba291d7f2f2 --- /dev/null +++ b/site/public/v1/software/podio/index.json @@ -0,0 +1,21 @@ +{ + "id": 7834, + "slug": "podio", + "name": "Podio", + "release_date": null, + "developers": [ + "Citrix Systems" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7206810" + ], + "created_at": "2026-07-10T10:12:42.434412", + "updated_at": "2026-07-10T10:12:42.435376", + "url": "/v1/software/podio" +} diff --git a/site/public/v1/software/podman-desktop/index.json b/site/public/v1/software/podman-desktop/index.json new file mode 100644 index 000000000000..9e205d532f0f --- /dev/null +++ b/site/public/v1/software/podman-desktop/index.json @@ -0,0 +1,21 @@ +{ + "id": 7835, + "slug": "podman-desktop", + "name": "Podman Desktop", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Apache Software License 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135957733" + ], + "created_at": "2026-07-10T10:12:42.435376", + "updated_at": "2026-07-10T10:12:42.435376", + "url": "/v1/software/podman-desktop" +} diff --git a/site/public/v1/software/podracer/index.json b/site/public/v1/software/podracer/index.json new file mode 100644 index 000000000000..9941eac48760 --- /dev/null +++ b/site/public/v1/software/podracer/index.json @@ -0,0 +1,19 @@ +{ + "id": 7836, + "slug": "podracer", + "name": "Podracer", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62860319" + ], + "created_at": "2026-07-10T10:12:42.435376", + "updated_at": "2026-07-10T10:12:42.435376", + "url": "/v1/software/podracer" +} diff --git a/site/public/v1/software/poem-viewer/index.json b/site/public/v1/software/poem-viewer/index.json new file mode 100644 index 000000000000..20b070d74d79 --- /dev/null +++ b/site/public/v1/software/poem-viewer/index.json @@ -0,0 +1,19 @@ +{ + "id": 7837, + "slug": "poem-viewer", + "name": "Poem Viewer", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084483" + ], + "created_at": "2026-07-10T10:12:42.435376", + "updated_at": "2026-07-10T10:12:42.435376", + "url": "/v1/software/poem-viewer" +} diff --git a/site/public/v1/software/poetry/index.json b/site/public/v1/software/poetry/index.json new file mode 100644 index 000000000000..db126971eff2 --- /dev/null +++ b/site/public/v1/software/poetry/index.json @@ -0,0 +1,23 @@ +{ + "id": 7838, + "slug": "poetry", + "name": "poetry", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Python" + ], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q70481196" + ], + "created_at": "2026-07-10T10:12:42.436351", + "updated_at": "2026-07-10T10:12:42.436351", + "url": "/v1/software/poetry" +} diff --git a/site/public/v1/software/pogoseat/index.json b/site/public/v1/software/pogoseat/index.json new file mode 100644 index 000000000000..5d6392bbafa1 --- /dev/null +++ b/site/public/v1/software/pogoseat/index.json @@ -0,0 +1,21 @@ +{ + "id": 7839, + "slug": "pogoseat", + "name": "Pogoseat", + "release_date": "2012-01-01", + "developers": [], + "publishers": [], + "operating_systems": [ + "iOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17130752" + ], + "created_at": "2026-07-10T10:12:42.436351", + "updated_at": "2026-07-10T10:12:42.436351", + "url": "/v1/software/pogoseat" +} diff --git a/site/public/v1/software/point-to-point-protocol-daemon/index.json b/site/public/v1/software/point-to-point-protocol-daemon/index.json new file mode 100644 index 000000000000..d130906defb8 --- /dev/null +++ b/site/public/v1/software/point-to-point-protocol-daemon/index.json @@ -0,0 +1,24 @@ +{ + "id": 7840, + "slug": "point-to-point-protocol-daemon", + "name": "Point-to-Point Protocol daemon", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Solaris" + ], + "programming_languages": [], + "licenses": [ + "3-clause BSD License", + "GNU General Public License, version 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1050348" + ], + "created_at": "2026-07-10T10:12:42.436351", + "updated_at": "2026-07-10T10:12:42.436351", + "url": "/v1/software/point-to-point-protocol-daemon" +} diff --git a/site/public/v1/software/pointman/index.json b/site/public/v1/software/pointman/index.json new file mode 100644 index 000000000000..4c5a4f87fac1 --- /dev/null +++ b/site/public/v1/software/pointman/index.json @@ -0,0 +1,19 @@ +{ + "id": 7841, + "slug": "pointman", + "name": "Pointman", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18389127" + ], + "created_at": "2026-07-10T10:12:42.437396", + "updated_at": "2026-07-10T10:12:42.437396", + "url": "/v1/software/pointman" +} diff --git a/site/public/v1/software/points-of-interest-loader/index.json b/site/public/v1/software/points-of-interest-loader/index.json new file mode 100644 index 000000000000..a98facd7d70b --- /dev/null +++ b/site/public/v1/software/points-of-interest-loader/index.json @@ -0,0 +1,22 @@ +{ + "id": 7842, + "slug": "points-of-interest-loader", + "name": "Points of Interest Loader", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106764319" + ], + "created_at": "2026-07-10T10:12:42.437396", + "updated_at": "2026-07-10T10:12:42.437396", + "url": "/v1/software/points-of-interest-loader" +} diff --git a/site/public/v1/software/poji/index.json b/site/public/v1/software/poji/index.json new file mode 100644 index 000000000000..75ccc463d706 --- /dev/null +++ b/site/public/v1/software/poji/index.json @@ -0,0 +1,19 @@ +{ + "id": 7843, + "slug": "poji", + "name": "POJI", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7119929" + ], + "created_at": "2026-07-10T10:12:42.437396", + "updated_at": "2026-07-10T10:12:42.437396", + "url": "/v1/software/poji" +} diff --git a/site/public/v1/software/pok-mon-essentials/index.json b/site/public/v1/software/pok-mon-essentials/index.json new file mode 100644 index 000000000000..daa8ef1b075b --- /dev/null +++ b/site/public/v1/software/pok-mon-essentials/index.json @@ -0,0 +1,19 @@ +{ + "id": 7844, + "slug": "pok-mon-essentials", + "name": "Pokémon Essentials", + "release_date": "2007-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121356826" + ], + "created_at": "2026-07-10T10:12:42.438359", + "updated_at": "2026-07-10T10:12:42.438359", + "url": "/v1/software/pok-mon-essentials" +} diff --git a/site/public/v1/software/pok-mon-online/index.json b/site/public/v1/software/pok-mon-online/index.json new file mode 100644 index 000000000000..54b3dc26f36d --- /dev/null +++ b/site/public/v1/software/pok-mon-online/index.json @@ -0,0 +1,19 @@ +{ + "id": 7845, + "slug": "pok-mon-online", + "name": "Pokémon Online", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3907171" + ], + "created_at": "2026-07-10T10:12:42.438359", + "updated_at": "2026-07-10T10:12:42.438359", + "url": "/v1/software/pok-mon-online" +} diff --git a/site/public/v1/software/pok-mon-showdown/index.json b/site/public/v1/software/pok-mon-showdown/index.json new file mode 100644 index 000000000000..1843859e8ee8 --- /dev/null +++ b/site/public/v1/software/pok-mon-showdown/index.json @@ -0,0 +1,19 @@ +{ + "id": 7846, + "slug": "pok-mon-showdown", + "name": "Pokémon Showdown", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136785981" + ], + "created_at": "2026-07-10T10:12:42.438359", + "updated_at": "2026-07-10T10:12:42.438359", + "url": "/v1/software/pok-mon-showdown" +} diff --git a/site/public/v1/software/pokee-ai/index.json b/site/public/v1/software/pokee-ai/index.json new file mode 100644 index 000000000000..71c09a0f9140 --- /dev/null +++ b/site/public/v1/software/pokee-ai/index.json @@ -0,0 +1,19 @@ +{ + "id": 7847, + "slug": "pokee-ai", + "name": "Pokee AI", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139315065" + ], + "created_at": "2026-07-10T10:12:42.439364", + "updated_at": "2026-07-10T10:12:42.439364", + "url": "/v1/software/pokee-ai" +} diff --git a/site/public/v1/software/pokertracker/index.json b/site/public/v1/software/pokertracker/index.json new file mode 100644 index 000000000000..58a26255be85 --- /dev/null +++ b/site/public/v1/software/pokertracker/index.json @@ -0,0 +1,19 @@ +{ + "id": 7848, + "slug": "pokertracker", + "name": "PokerTracker", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7208591" + ], + "created_at": "2026-07-10T10:12:42.439364", + "updated_at": "2026-07-10T10:12:42.439364", + "url": "/v1/software/pokertracker" +} diff --git a/site/public/v1/software/pokeware/index.json b/site/public/v1/software/pokeware/index.json new file mode 100644 index 000000000000..1e7727ff9348 --- /dev/null +++ b/site/public/v1/software/pokeware/index.json @@ -0,0 +1,19 @@ +{ + "id": 7849, + "slug": "pokeware", + "name": "Pokeware", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q82215" + ], + "created_at": "2026-07-10T10:12:42.439364", + "updated_at": "2026-07-10T10:12:42.439364", + "url": "/v1/software/pokeware" +} diff --git a/site/public/v1/software/pokki/index.json b/site/public/v1/software/pokki/index.json new file mode 100644 index 000000000000..da26d59b4e51 --- /dev/null +++ b/site/public/v1/software/pokki/index.json @@ -0,0 +1,21 @@ +{ + "id": 7850, + "slug": "pokki", + "name": "Pokki", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7208667" + ], + "created_at": "2026-07-10T10:12:42.440393", + "updated_at": "2026-07-10T10:12:42.440393", + "url": "/v1/software/pokki" +} diff --git a/site/public/v1/software/pol-is/index.json b/site/public/v1/software/pol-is/index.json new file mode 100644 index 000000000000..8c33297e1d5e --- /dev/null +++ b/site/public/v1/software/pol-is/index.json @@ -0,0 +1,19 @@ +{ + "id": 7851, + "slug": "pol-is", + "name": "Pol.is", + "release_date": "2012-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125803048" + ], + "created_at": "2026-07-10T10:12:42.440393", + "updated_at": "2026-07-10T10:12:42.440393", + "url": "/v1/software/pol-is" +} diff --git a/site/public/v1/software/pola/index.json b/site/public/v1/software/pola/index.json new file mode 100644 index 000000000000..c8b76f9858f8 --- /dev/null +++ b/site/public/v1/software/pola/index.json @@ -0,0 +1,23 @@ +{ + "id": 7852, + "slug": "pola", + "name": "Pola", + "release_date": null, + "developers": [ + "Klub Jagielloński" + ], + "publishers": [ + "Klub Jagielloński" + ], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25415720" + ], + "created_at": "2026-07-10T10:12:42.440393", + "updated_at": "2026-07-10T10:12:42.440393", + "url": "/v1/software/pola" +} diff --git a/site/public/v1/software/polarization-in-congress/index.json b/site/public/v1/software/polarization-in-congress/index.json new file mode 100644 index 000000000000..96d3c15b06d7 --- /dev/null +++ b/site/public/v1/software/polarization-in-congress/index.json @@ -0,0 +1,19 @@ +{ + "id": 7853, + "slug": "polarization-in-congress", + "name": "Polarization in Congress", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130384358" + ], + "created_at": "2026-07-10T10:12:42.441355", + "updated_at": "2026-07-10T10:12:42.441355", + "url": "/v1/software/polarization-in-congress" +} diff --git a/site/public/v1/software/polestar-xeus/index.json b/site/public/v1/software/polestar-xeus/index.json new file mode 100644 index 000000000000..72195a8d1e0d --- /dev/null +++ b/site/public/v1/software/polestar-xeus/index.json @@ -0,0 +1,19 @@ +{ + "id": 7854, + "slug": "polestar-xeus", + "name": "POLESTAR XEUS", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7119945" + ], + "created_at": "2026-07-10T10:12:42.441355", + "updated_at": "2026-07-10T10:12:42.441355", + "url": "/v1/software/polestar-xeus" +} diff --git a/site/public/v1/software/policycoreutils/index.json b/site/public/v1/software/policycoreutils/index.json new file mode 100644 index 000000000000..645d8040ef06 --- /dev/null +++ b/site/public/v1/software/policycoreutils/index.json @@ -0,0 +1,19 @@ +{ + "id": 7855, + "slug": "policycoreutils", + "name": "policycoreutils", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975348" + ], + "created_at": "2026-07-10T10:12:42.441355", + "updated_at": "2026-07-10T10:12:42.441355", + "url": "/v1/software/policycoreutils" +} diff --git a/site/public/v1/software/policymodels/index.json b/site/public/v1/software/policymodels/index.json new file mode 100644 index 000000000000..364fc4eaf577 --- /dev/null +++ b/site/public/v1/software/policymodels/index.json @@ -0,0 +1,19 @@ +{ + "id": 7856, + "slug": "policymodels", + "name": "PolicyModels", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113995784" + ], + "created_at": "2026-07-10T10:12:42.442349", + "updated_at": "2026-07-10T10:12:42.442349", + "url": "/v1/software/policymodels" +} diff --git a/site/public/v1/software/polish-literary-bibliography-pbl/index.json b/site/public/v1/software/polish-literary-bibliography-pbl/index.json new file mode 100644 index 000000000000..0447bd4777df --- /dev/null +++ b/site/public/v1/software/polish-literary-bibliography-pbl/index.json @@ -0,0 +1,19 @@ +{ + "id": 7857, + "slug": "polish-literary-bibliography-pbl", + "name": "Polish Literary Bibliography (PBL)", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084484" + ], + "created_at": "2026-07-10T10:12:42.442349", + "updated_at": "2026-07-10T10:12:42.442349", + "url": "/v1/software/polish-literary-bibliography-pbl" +} diff --git a/site/public/v1/software/polit-operating-system/index.json b/site/public/v1/software/polit-operating-system/index.json new file mode 100644 index 000000000000..70d4e8865d8e --- /dev/null +++ b/site/public/v1/software/polit-operating-system/index.json @@ -0,0 +1,19 @@ +{ + "id": 7858, + "slug": "polit-operating-system", + "name": "Polit (operating system)", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q129264265" + ], + "created_at": "2026-07-10T10:12:42.442349", + "updated_at": "2026-07-10T10:12:42.442349", + "url": "/v1/software/polit-operating-system" +} diff --git a/site/public/v1/software/polkadot/index.json b/site/public/v1/software/polkadot/index.json new file mode 100644 index 000000000000..57346b5df303 --- /dev/null +++ b/site/public/v1/software/polkadot/index.json @@ -0,0 +1,19 @@ +{ + "id": 7859, + "slug": "polkadot", + "name": "Polkadot", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q46166265" + ], + "created_at": "2026-07-10T10:12:42.443350", + "updated_at": "2026-07-10T10:12:42.443350", + "url": "/v1/software/polkadot" +} diff --git a/site/public/v1/software/polkeyb/index.json b/site/public/v1/software/polkeyb/index.json new file mode 100644 index 000000000000..b64c957ebac7 --- /dev/null +++ b/site/public/v1/software/polkeyb/index.json @@ -0,0 +1,21 @@ +{ + "id": 7860, + "slug": "polkeyb", + "name": "Polkeyb", + "release_date": null, + "developers": [ + "Andrzej Górbiel" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11821890" + ], + "created_at": "2026-07-10T10:12:42.443350", + "updated_at": "2026-07-10T10:12:42.443350", + "url": "/v1/software/polkeyb" +} diff --git a/site/public/v1/software/polldaddy/index.json b/site/public/v1/software/polldaddy/index.json new file mode 100644 index 000000000000..ee65fba5020e --- /dev/null +++ b/site/public/v1/software/polldaddy/index.json @@ -0,0 +1,19 @@ +{ + "id": 7861, + "slug": "polldaddy", + "name": "Polldaddy", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084486" + ], + "created_at": "2026-07-10T10:12:42.443350", + "updated_at": "2026-07-10T10:12:42.443350", + "url": "/v1/software/polldaddy" +} diff --git a/site/public/v1/software/polonius/index.json b/site/public/v1/software/polonius/index.json new file mode 100644 index 000000000000..6b233b4dbc56 --- /dev/null +++ b/site/public/v1/software/polonius/index.json @@ -0,0 +1,21 @@ +{ + "id": 7862, + "slug": "polonius", + "name": "Polonius", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Apache Software License 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121288353" + ], + "created_at": "2026-07-10T10:12:42.444362", + "updated_at": "2026-07-10T10:12:42.444362", + "url": "/v1/software/polonius" +} diff --git a/site/public/v1/software/polyas/index.json b/site/public/v1/software/polyas/index.json new file mode 100644 index 000000000000..082c5f1e22bb --- /dev/null +++ b/site/public/v1/software/polyas/index.json @@ -0,0 +1,19 @@ +{ + "id": 7863, + "slug": "polyas", + "name": "Polyas", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137162822" + ], + "created_at": "2026-07-10T10:12:42.444362", + "updated_at": "2026-07-10T10:12:42.444362", + "url": "/v1/software/polyas" +} diff --git a/site/public/v1/software/polybar/index.json b/site/public/v1/software/polybar/index.json new file mode 100644 index 000000000000..da8651eae4de --- /dev/null +++ b/site/public/v1/software/polybar/index.json @@ -0,0 +1,19 @@ +{ + "id": 7864, + "slug": "polybar", + "name": "polybar", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127418059" + ], + "created_at": "2026-07-10T10:12:42.444362", + "updated_at": "2026-07-10T10:12:42.444362", + "url": "/v1/software/polybar" +} diff --git a/site/public/v1/software/polygon-cruncher/index.json b/site/public/v1/software/polygon-cruncher/index.json new file mode 100644 index 000000000000..fc31d6e0c9ae --- /dev/null +++ b/site/public/v1/software/polygon-cruncher/index.json @@ -0,0 +1,19 @@ +{ + "id": 7865, + "slug": "polygon-cruncher", + "name": "Polygon Cruncher", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7226424" + ], + "created_at": "2026-07-10T10:12:42.445376", + "updated_at": "2026-07-10T10:12:42.445376", + "url": "/v1/software/polygon-cruncher" +} diff --git a/site/public/v1/software/polyhedra-dbms/index.json b/site/public/v1/software/polyhedra-dbms/index.json new file mode 100644 index 000000000000..863e41638155 --- /dev/null +++ b/site/public/v1/software/polyhedra-dbms/index.json @@ -0,0 +1,21 @@ +{ + "id": 7866, + "slug": "polyhedra-dbms", + "name": "Polyhedra DBMS", + "release_date": null, + "developers": [ + "ENEA AB" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7226492" + ], + "created_at": "2026-07-10T10:12:42.445376", + "updated_at": "2026-07-10T10:12:42.445376", + "url": "/v1/software/polyhedra-dbms" +} diff --git a/site/public/v1/software/polylib/index.json b/site/public/v1/software/polylib/index.json new file mode 100644 index 000000000000..7a994b1284e5 --- /dev/null +++ b/site/public/v1/software/polylib/index.json @@ -0,0 +1,19 @@ +{ + "id": 7867, + "slug": "polylib", + "name": "polylib", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975349" + ], + "created_at": "2026-07-10T10:12:42.445376", + "updated_at": "2026-07-10T10:12:42.445376", + "url": "/v1/software/polylib" +} diff --git a/site/public/v1/software/polymail/index.json b/site/public/v1/software/polymail/index.json new file mode 100644 index 000000000000..0825b998d566 --- /dev/null +++ b/site/public/v1/software/polymail/index.json @@ -0,0 +1,19 @@ +{ + "id": 7868, + "slug": "polymail", + "name": "Polymail", + "release_date": "2016-07-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28401433" + ], + "created_at": "2026-07-10T10:12:42.446343", + "updated_at": "2026-07-10T10:12:42.446343", + "url": "/v1/software/polymail" +} diff --git a/site/public/v1/software/polymny/index.json b/site/public/v1/software/polymny/index.json new file mode 100644 index 000000000000..1bdb3f11920d --- /dev/null +++ b/site/public/v1/software/polymny/index.json @@ -0,0 +1,19 @@ +{ + "id": 7869, + "slug": "polymny", + "name": "Polymny", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124259243" + ], + "created_at": "2026-07-10T10:12:42.446343", + "updated_at": "2026-07-10T10:12:42.446343", + "url": "/v1/software/polymny" +} diff --git a/site/public/v1/software/polypad/index.json b/site/public/v1/software/polypad/index.json new file mode 100644 index 000000000000..b0581924f18b --- /dev/null +++ b/site/public/v1/software/polypad/index.json @@ -0,0 +1,26 @@ +{ + "id": 7870, + "slug": "polypad", + "name": "Polypad", + "release_date": "2021-08-19", + "developers": [ + "Marcell Purham" + ], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111668613" + ], + "created_at": "2026-07-10T10:12:42.446343", + "updated_at": "2026-07-10T10:12:42.446343", + "url": "/v1/software/polypad" +} diff --git a/site/public/v1/software/polyspace/index.json b/site/public/v1/software/polyspace/index.json new file mode 100644 index 000000000000..6c29be350934 --- /dev/null +++ b/site/public/v1/software/polyspace/index.json @@ -0,0 +1,21 @@ +{ + "id": 7871, + "slug": "polyspace", + "name": "Polyspace", + "release_date": null, + "developers": [ + "MathWorks" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7226954" + ], + "created_at": "2026-07-10T10:12:42.446343", + "updated_at": "2026-07-10T10:12:42.446343", + "url": "/v1/software/polyspace" +} diff --git a/site/public/v1/software/polyworks/index.json b/site/public/v1/software/polyworks/index.json new file mode 100644 index 000000000000..38305f0d43d9 --- /dev/null +++ b/site/public/v1/software/polyworks/index.json @@ -0,0 +1,19 @@ +{ + "id": 7872, + "slug": "polyworks", + "name": "PolyWorks", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1733462" + ], + "created_at": "2026-07-10T10:12:42.447389", + "updated_at": "2026-07-10T10:12:42.447389", + "url": "/v1/software/polyworks" +} diff --git a/site/public/v1/software/pompamo/index.json b/site/public/v1/software/pompamo/index.json new file mode 100644 index 000000000000..5e3fcea79e32 --- /dev/null +++ b/site/public/v1/software/pompamo/index.json @@ -0,0 +1,19 @@ +{ + "id": 7873, + "slug": "pompamo", + "name": "Pompamo", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084487" + ], + "created_at": "2026-07-10T10:12:42.447389", + "updated_at": "2026-07-10T10:12:42.447389", + "url": "/v1/software/pompamo" +} diff --git a/site/public/v1/software/ponta-pass/index.json b/site/public/v1/software/ponta-pass/index.json new file mode 100644 index 000000000000..47179da0f5f6 --- /dev/null +++ b/site/public/v1/software/ponta-pass/index.json @@ -0,0 +1,19 @@ +{ + "id": 7874, + "slug": "ponta-pass", + "name": "Ponta PASS", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11190569" + ], + "created_at": "2026-07-10T10:12:42.447389", + "updated_at": "2026-07-10T10:12:42.447389", + "url": "/v1/software/ponta-pass" +} diff --git a/site/public/v1/software/pontis/index.json b/site/public/v1/software/pontis/index.json new file mode 100644 index 000000000000..05f8f8cc8835 --- /dev/null +++ b/site/public/v1/software/pontis/index.json @@ -0,0 +1,19 @@ +{ + "id": 7875, + "slug": "pontis", + "name": "Pontis", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7228303" + ], + "created_at": "2026-07-10T10:12:42.448355", + "updated_at": "2026-07-10T10:12:42.448355", + "url": "/v1/software/pontis" +} diff --git a/site/public/v1/software/poolparty-semantic-suite/index.json b/site/public/v1/software/poolparty-semantic-suite/index.json new file mode 100644 index 000000000000..21c3cc3e2e65 --- /dev/null +++ b/site/public/v1/software/poolparty-semantic-suite/index.json @@ -0,0 +1,19 @@ +{ + "id": 7876, + "slug": "poolparty-semantic-suite", + "name": "PoolParty Semantic Suite", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28136436" + ], + "created_at": "2026-07-10T10:12:42.448355", + "updated_at": "2026-07-10T10:12:42.448355", + "url": "/v1/software/poolparty-semantic-suite" +} diff --git a/site/public/v1/software/poop-map/index.json b/site/public/v1/software/poop-map/index.json new file mode 100644 index 000000000000..c6291570e113 --- /dev/null +++ b/site/public/v1/software/poop-map/index.json @@ -0,0 +1,19 @@ +{ + "id": 7877, + "slug": "poop-map", + "name": "Poop Map", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130467137" + ], + "created_at": "2026-07-10T10:12:42.449363", + "updated_at": "2026-07-10T10:12:42.449363", + "url": "/v1/software/poop-map" +} diff --git a/site/public/v1/software/poorman/index.json b/site/public/v1/software/poorman/index.json new file mode 100644 index 000000000000..ce4ce9a934bb --- /dev/null +++ b/site/public/v1/software/poorman/index.json @@ -0,0 +1,19 @@ +{ + "id": 7878, + "slug": "poorman", + "name": "PoorMan", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7228754" + ], + "created_at": "2026-07-10T10:12:42.449363", + "updated_at": "2026-07-10T10:12:42.449363", + "url": "/v1/software/poorman" +} diff --git a/site/public/v1/software/popa3d/index.json b/site/public/v1/software/popa3d/index.json new file mode 100644 index 000000000000..045c300f34be --- /dev/null +++ b/site/public/v1/software/popa3d/index.json @@ -0,0 +1,19 @@ +{ + "id": 7879, + "slug": "popa3d", + "name": "popa3d", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62857972" + ], + "created_at": "2026-07-10T10:12:42.449363", + "updated_at": "2026-07-10T10:12:42.449363", + "url": "/v1/software/popa3d" +} diff --git a/site/public/v1/software/popcorn-js/index.json b/site/public/v1/software/popcorn-js/index.json new file mode 100644 index 000000000000..7280d09fe0a3 --- /dev/null +++ b/site/public/v1/software/popcorn-js/index.json @@ -0,0 +1,19 @@ +{ + "id": 7880, + "slug": "popcorn-js", + "name": "Popcorn.js", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7229122" + ], + "created_at": "2026-07-10T10:12:42.449363", + "updated_at": "2026-07-10T10:12:42.449363", + "url": "/v1/software/popcorn-js" +} diff --git a/site/public/v1/software/popgene/index.json b/site/public/v1/software/popgene/index.json new file mode 100644 index 000000000000..a36cd0fc2363 --- /dev/null +++ b/site/public/v1/software/popgene/index.json @@ -0,0 +1,19 @@ +{ + "id": 7881, + "slug": "popgene", + "name": "POPGENE", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112123672" + ], + "created_at": "2026-07-10T10:12:42.450457", + "updated_at": "2026-07-10T10:12:42.450457", + "url": "/v1/software/popgene" +} diff --git a/site/public/v1/software/popoto-js/index.json b/site/public/v1/software/popoto-js/index.json new file mode 100644 index 000000000000..76e30843b9a2 --- /dev/null +++ b/site/public/v1/software/popoto-js/index.json @@ -0,0 +1,19 @@ +{ + "id": 7882, + "slug": "popoto-js", + "name": "Popoto.js", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084489" + ], + "created_at": "2026-07-10T10:12:42.450457", + "updated_at": "2026-07-10T10:12:42.450457", + "url": "/v1/software/popoto-js" +} diff --git a/site/public/v1/software/popt/index.json b/site/public/v1/software/popt/index.json new file mode 100644 index 000000000000..78f403b88bb7 --- /dev/null +++ b/site/public/v1/software/popt/index.json @@ -0,0 +1,24 @@ +{ + "id": 7883, + "slug": "popt", + "name": "popt", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "OpenBSD", + "FreeBSD" + ], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q64383263" + ], + "created_at": "2026-07-10T10:12:42.450457", + "updated_at": "2026-07-10T10:12:42.450457", + "url": "/v1/software/popt" +} diff --git a/site/public/v1/software/portable-batch-system/index.json b/site/public/v1/software/portable-batch-system/index.json new file mode 100644 index 000000000000..0ace08991c48 --- /dev/null +++ b/site/public/v1/software/portable-batch-system/index.json @@ -0,0 +1,21 @@ +{ + "id": 7884, + "slug": "portable-batch-system", + "name": "Portable Batch System", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Python" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3883859" + ], + "created_at": "2026-07-10T10:12:42.451442", + "updated_at": "2026-07-10T10:12:42.451442", + "url": "/v1/software/portable-batch-system" +} diff --git a/site/public/v1/software/portable-shortcut-to-a-system-utility/index.json b/site/public/v1/software/portable-shortcut-to-a-system-utility/index.json new file mode 100644 index 000000000000..9857e328811e --- /dev/null +++ b/site/public/v1/software/portable-shortcut-to-a-system-utility/index.json @@ -0,0 +1,19 @@ +{ + "id": 7885, + "slug": "portable-shortcut-to-a-system-utility", + "name": "portable shortcut to a system utility", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138339496" + ], + "created_at": "2026-07-10T10:12:42.451442", + "updated_at": "2026-07-10T10:12:42.451442", + "url": "/v1/software/portable-shortcut-to-a-system-utility" +} diff --git a/site/public/v1/software/portals-network-programming-api/index.json b/site/public/v1/software/portals-network-programming-api/index.json new file mode 100644 index 000000000000..a9e312004024 --- /dev/null +++ b/site/public/v1/software/portals-network-programming-api/index.json @@ -0,0 +1,21 @@ +{ + "id": 7886, + "slug": "portals-network-programming-api", + "name": "Portals network programming api", + "release_date": null, + "developers": [ + "Sandia National Laboratories" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7231513" + ], + "created_at": "2026-07-10T10:12:42.451442", + "updated_at": "2026-07-10T10:12:42.451442", + "url": "/v1/software/portals-network-programming-api" +} diff --git a/site/public/v1/software/portmap/index.json b/site/public/v1/software/portmap/index.json new file mode 100644 index 000000000000..268bf5511030 --- /dev/null +++ b/site/public/v1/software/portmap/index.json @@ -0,0 +1,19 @@ +{ + "id": 7887, + "slug": "portmap", + "name": "portmap", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975350" + ], + "created_at": "2026-07-10T10:12:42.452460", + "updated_at": "2026-07-10T10:12:42.452460", + "url": "/v1/software/portmap" +} diff --git a/site/public/v1/software/portspoof/index.json b/site/public/v1/software/portspoof/index.json new file mode 100644 index 000000000000..0ca441f4cef5 --- /dev/null +++ b/site/public/v1/software/portspoof/index.json @@ -0,0 +1,19 @@ +{ + "id": 7888, + "slug": "portspoof", + "name": "portspoof", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975351" + ], + "created_at": "2026-07-10T10:12:42.452460", + "updated_at": "2026-07-10T10:12:42.452460", + "url": "/v1/software/portspoof" +} diff --git a/site/public/v1/software/poseidon-for-uml/index.json b/site/public/v1/software/poseidon-for-uml/index.json new file mode 100644 index 000000000000..7145e58e00c5 --- /dev/null +++ b/site/public/v1/software/poseidon-for-uml/index.json @@ -0,0 +1,19 @@ +{ + "id": 7889, + "slug": "poseidon-for-uml", + "name": "Poseidon for UML", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2105623" + ], + "created_at": "2026-07-10T10:12:42.452460", + "updated_at": "2026-07-10T10:12:42.452460", + "url": "/v1/software/poseidon-for-uml" +} diff --git a/site/public/v1/software/posh/index.json b/site/public/v1/software/posh/index.json new file mode 100644 index 000000000000..7ff048bc24cd --- /dev/null +++ b/site/public/v1/software/posh/index.json @@ -0,0 +1,19 @@ +{ + "id": 7890, + "slug": "posh", + "name": "posh", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62863286" + ], + "created_at": "2026-07-10T10:12:42.453440", + "updated_at": "2026-07-10T10:12:42.453440", + "url": "/v1/software/posh" +} diff --git a/site/public/v1/software/postback/index.json b/site/public/v1/software/postback/index.json new file mode 100644 index 000000000000..8c314e63ef76 --- /dev/null +++ b/site/public/v1/software/postback/index.json @@ -0,0 +1,19 @@ +{ + "id": 7891, + "slug": "postback", + "name": "Postback", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4822388" + ], + "created_at": "2026-07-10T10:12:42.453440", + "updated_at": "2026-07-10T10:12:42.453440", + "url": "/v1/software/postback" +} diff --git a/site/public/v1/software/postbox/index.json b/site/public/v1/software/postbox/index.json new file mode 100644 index 000000000000..f8ece4030867 --- /dev/null +++ b/site/public/v1/software/postbox/index.json @@ -0,0 +1,21 @@ +{ + "id": 7892, + "slug": "postbox", + "name": "Postbox", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25203737" + ], + "created_at": "2026-07-10T10:12:42.453440", + "updated_at": "2026-07-10T10:12:42.453440", + "url": "/v1/software/postbox" +} diff --git a/site/public/v1/software/postchain/index.json b/site/public/v1/software/postchain/index.json new file mode 100644 index 000000000000..1b6582254ff6 --- /dev/null +++ b/site/public/v1/software/postchain/index.json @@ -0,0 +1,21 @@ +{ + "id": 7893, + "slug": "postchain", + "name": "Postchain", + "release_date": null, + "developers": [ + "ChromaWay" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137460231" + ], + "created_at": "2026-07-10T10:12:42.454447", + "updated_at": "2026-07-10T10:12:42.454447", + "url": "/v1/software/postchain" +} diff --git a/site/public/v1/software/posterous-spaces/index.json b/site/public/v1/software/posterous-spaces/index.json new file mode 100644 index 000000000000..f451b933a9c4 --- /dev/null +++ b/site/public/v1/software/posterous-spaces/index.json @@ -0,0 +1,19 @@ +{ + "id": 7894, + "slug": "posterous-spaces", + "name": "Posterous Spaces", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084491" + ], + "created_at": "2026-07-10T10:12:42.454447", + "updated_at": "2026-07-10T10:12:42.454447", + "url": "/v1/software/posterous-spaces" +} diff --git a/site/public/v1/software/postgresql-studio/index.json b/site/public/v1/software/postgresql-studio/index.json new file mode 100644 index 000000000000..caee70130944 --- /dev/null +++ b/site/public/v1/software/postgresql-studio/index.json @@ -0,0 +1,19 @@ +{ + "id": 7895, + "slug": "postgresql-studio", + "name": "PostgreSQL Studio", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16688794" + ], + "created_at": "2026-07-10T10:12:42.454447", + "updated_at": "2026-07-10T10:12:42.454447", + "url": "/v1/software/postgresql-studio" +} diff --git a/site/public/v1/software/postgrey/index.json b/site/public/v1/software/postgrey/index.json new file mode 100644 index 000000000000..c19244b2c717 --- /dev/null +++ b/site/public/v1/software/postgrey/index.json @@ -0,0 +1,19 @@ +{ + "id": 7896, + "slug": "postgrey", + "name": "Postgrey", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62857966" + ], + "created_at": "2026-07-10T10:12:42.455436", + "updated_at": "2026-07-10T10:12:42.455436", + "url": "/v1/software/postgrey" +} diff --git a/site/public/v1/software/postini/index.json b/site/public/v1/software/postini/index.json new file mode 100644 index 000000000000..af9297990dca --- /dev/null +++ b/site/public/v1/software/postini/index.json @@ -0,0 +1,21 @@ +{ + "id": 7897, + "slug": "postini", + "name": "Postini", + "release_date": null, + "developers": [ + "Google" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q772783" + ], + "created_at": "2026-07-10T10:12:42.455436", + "updated_at": "2026-07-10T10:12:42.455436", + "url": "/v1/software/postini" +} diff --git a/site/public/v1/software/postpass/index.json b/site/public/v1/software/postpass/index.json new file mode 100644 index 000000000000..54e0c72af498 --- /dev/null +++ b/site/public/v1/software/postpass/index.json @@ -0,0 +1,25 @@ +{ + "id": 7898, + "slug": "postpass", + "name": "PostPass", + "release_date": null, + "developers": [ + "Frederik Ramm" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Go" + ], + "licenses": [ + "GNU General Public License, version 3.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q133568747" + ], + "created_at": "2026-07-10T10:12:42.455436", + "updated_at": "2026-07-10T10:12:42.455436", + "url": "/v1/software/postpass" +} diff --git a/site/public/v1/software/postpet/index.json b/site/public/v1/software/postpet/index.json new file mode 100644 index 000000000000..31111846fdad --- /dev/null +++ b/site/public/v1/software/postpet/index.json @@ -0,0 +1,21 @@ +{ + "id": 7899, + "slug": "postpet", + "name": "PostPet", + "release_date": null, + "developers": [ + "Sony Network Communications Inc." + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11239812" + ], + "created_at": "2026-07-10T10:12:42.455436", + "updated_at": "2026-07-10T10:12:42.455436", + "url": "/v1/software/postpet" +} diff --git a/site/public/v1/software/postybirb/index.json b/site/public/v1/software/postybirb/index.json new file mode 100644 index 000000000000..be40dab15fb2 --- /dev/null +++ b/site/public/v1/software/postybirb/index.json @@ -0,0 +1,25 @@ +{ + "id": 7900, + "slug": "postybirb", + "name": "PostyBirb", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "cross-platform", + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "3-clause BSD License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139677497" + ], + "created_at": "2026-07-10T10:12:42.456433", + "updated_at": "2026-07-10T10:12:42.456433", + "url": "/v1/software/postybirb" +} diff --git a/site/public/v1/software/powatag/index.json b/site/public/v1/software/powatag/index.json new file mode 100644 index 000000000000..4df236548569 --- /dev/null +++ b/site/public/v1/software/powatag/index.json @@ -0,0 +1,21 @@ +{ + "id": 7901, + "slug": "powatag", + "name": "PowaTag", + "release_date": null, + "developers": [ + "Powa Technologies" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18389404" + ], + "created_at": "2026-07-10T10:12:42.456433", + "updated_at": "2026-07-10T10:12:42.456433", + "url": "/v1/software/powatag" +} diff --git a/site/public/v1/software/power-dolls-detachment-of-limited-line-service/index.json b/site/public/v1/software/power-dolls-detachment-of-limited-line-service/index.json new file mode 100644 index 000000000000..c054d67c8aff --- /dev/null +++ b/site/public/v1/software/power-dolls-detachment-of-limited-line-service/index.json @@ -0,0 +1,25 @@ +{ + "id": 7902, + "slug": "power-dolls-detachment-of-limited-line-service", + "name": "Power DoLLS: Detachment of Limited Line Service", + "release_date": "1994-01-14", + "developers": [ + "Kogado Studio" + ], + "publishers": [ + "Kogado Studio" + ], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [ + "turn-based tactics" + ], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2579033" + ], + "created_at": "2026-07-10T10:12:42.456433", + "updated_at": "2026-07-10T10:12:42.456433", + "url": "/v1/software/power-dolls-detachment-of-limited-line-service" +} diff --git a/site/public/v1/software/power-query/index.json b/site/public/v1/software/power-query/index.json new file mode 100644 index 000000000000..0a7ae8f98067 --- /dev/null +++ b/site/public/v1/software/power-query/index.json @@ -0,0 +1,25 @@ +{ + "id": 7903, + "slug": "power-query", + "name": "Power Query", + "release_date": "2008-01-01", + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q114876985" + ], + "created_at": "2026-07-10T10:12:42.456433", + "updated_at": "2026-07-10T10:12:42.456433", + "url": "/v1/software/power-query" +} diff --git a/site/public/v1/software/power-tab-editor/index.json b/site/public/v1/software/power-tab-editor/index.json new file mode 100644 index 000000000000..c3fd89f74c1b --- /dev/null +++ b/site/public/v1/software/power-tab-editor/index.json @@ -0,0 +1,21 @@ +{ + "id": 7904, + "slug": "power-tab-editor", + "name": "Power Tab Editor", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1056667" + ], + "created_at": "2026-07-10T10:12:42.457429", + "updated_at": "2026-07-10T10:12:42.457429", + "url": "/v1/software/power-tab-editor" +} diff --git a/site/public/v1/software/power2go/index.json b/site/public/v1/software/power2go/index.json new file mode 100644 index 000000000000..29a005fab122 --- /dev/null +++ b/site/public/v1/software/power2go/index.json @@ -0,0 +1,19 @@ +{ + "id": 7905, + "slug": "power2go", + "name": "Power2Go", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11239817" + ], + "created_at": "2026-07-10T10:12:42.457429", + "updated_at": "2026-07-10T10:12:42.457429", + "url": "/v1/software/power2go" +} diff --git a/site/public/v1/software/powerbuilder-foundation-classes/index.json b/site/public/v1/software/powerbuilder-foundation-classes/index.json new file mode 100644 index 000000000000..920539f38815 --- /dev/null +++ b/site/public/v1/software/powerbuilder-foundation-classes/index.json @@ -0,0 +1,19 @@ +{ + "id": 7906, + "slug": "powerbuilder-foundation-classes", + "name": "PowerBuilder Foundation Classes", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7236182" + ], + "created_at": "2026-07-10T10:12:42.458442", + "updated_at": "2026-07-10T10:12:42.458442", + "url": "/v1/software/powerbuilder-foundation-classes" +} diff --git a/site/public/v1/software/powerdesigner/index.json b/site/public/v1/software/powerdesigner/index.json new file mode 100644 index 000000000000..716c4d0bdcf6 --- /dev/null +++ b/site/public/v1/software/powerdesigner/index.json @@ -0,0 +1,21 @@ +{ + "id": 7907, + "slug": "powerdesigner", + "name": "PowerDesigner", + "release_date": null, + "developers": [ + "SAP" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q599975" + ], + "created_at": "2026-07-10T10:12:42.458442", + "updated_at": "2026-07-10T10:12:42.458442", + "url": "/v1/software/powerdesigner" +} diff --git a/site/public/v1/software/powerdevs/index.json b/site/public/v1/software/powerdevs/index.json new file mode 100644 index 000000000000..39d5c39f4859 --- /dev/null +++ b/site/public/v1/software/powerdevs/index.json @@ -0,0 +1,23 @@ +{ + "id": 7908, + "slug": "powerdevs", + "name": "PowerDEVS", + "release_date": null, + "developers": [ + "Facultad de Ciencias Exactas, Ingeniería y Agrimensura" + ], + "publishers": [], + "operating_systems": [ + "cross-platform" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7236190" + ], + "created_at": "2026-07-10T10:12:42.458442", + "updated_at": "2026-07-10T10:12:42.458442", + "url": "/v1/software/powerdevs" +} diff --git a/site/public/v1/software/powerflasher-fdt/index.json b/site/public/v1/software/powerflasher-fdt/index.json new file mode 100644 index 000000000000..d7480f8d4f7f --- /dev/null +++ b/site/public/v1/software/powerflasher-fdt/index.json @@ -0,0 +1,24 @@ +{ + "id": 7909, + "slug": "powerflasher-fdt", + "name": "Powerflasher FDT", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [ + "Java" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q24035825" + ], + "created_at": "2026-07-10T10:12:42.458442", + "updated_at": "2026-07-10T10:12:42.458442", + "url": "/v1/software/powerflasher-fdt" +} diff --git a/site/public/v1/software/poweriso/index.json b/site/public/v1/software/poweriso/index.json new file mode 100644 index 000000000000..2335c4ebad6f --- /dev/null +++ b/site/public/v1/software/poweriso/index.json @@ -0,0 +1,23 @@ +{ + "id": 7910, + "slug": "poweriso", + "name": "PowerISO", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2555144" + ], + "created_at": "2026-07-10T10:12:42.459429", + "updated_at": "2026-07-10T10:12:42.459429", + "url": "/v1/software/poweriso" +} diff --git a/site/public/v1/software/powerlab/index.json b/site/public/v1/software/powerlab/index.json new file mode 100644 index 000000000000..8d65ac2ee23c --- /dev/null +++ b/site/public/v1/software/powerlab/index.json @@ -0,0 +1,21 @@ +{ + "id": 7911, + "slug": "powerlab", + "name": "PowerLab", + "release_date": null, + "developers": [ + "ADInstruments" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16975491" + ], + "created_at": "2026-07-10T10:12:42.459429", + "updated_at": "2026-07-10T10:12:42.459429", + "url": "/v1/software/powerlab" +} diff --git a/site/public/v1/software/powerman/index.json b/site/public/v1/software/powerman/index.json new file mode 100644 index 000000000000..1562f007a326 --- /dev/null +++ b/site/public/v1/software/powerman/index.json @@ -0,0 +1,19 @@ +{ + "id": 7912, + "slug": "powerman", + "name": "PowerMAN", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7236205" + ], + "created_at": "2026-07-10T10:12:42.459429", + "updated_at": "2026-07-10T10:12:42.459429", + "url": "/v1/software/powerman" +} diff --git a/site/public/v1/software/powermill/index.json b/site/public/v1/software/powermill/index.json new file mode 100644 index 000000000000..56fff7982e99 --- /dev/null +++ b/site/public/v1/software/powermill/index.json @@ -0,0 +1,21 @@ +{ + "id": 7913, + "slug": "powermill", + "name": "PowerMILL", + "release_date": "1995-01-01", + "developers": [ + "Delcam" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7236206" + ], + "created_at": "2026-07-10T10:12:42.460478", + "updated_at": "2026-07-10T10:12:42.460478", + "url": "/v1/software/powermill" +} diff --git a/site/public/v1/software/powerpoint-viewer-3-0-for-mac/index.json b/site/public/v1/software/powerpoint-viewer-3-0-for-mac/index.json new file mode 100644 index 000000000000..d371d76fb6d3 --- /dev/null +++ b/site/public/v1/software/powerpoint-viewer-3-0-for-mac/index.json @@ -0,0 +1,23 @@ +{ + "id": 7914, + "slug": "powerpoint-viewer-3-0-for-mac", + "name": "PowerPoint Viewer 3.0 for Mac", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [ + "macOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28861315" + ], + "created_at": "2026-07-10T10:12:42.460478", + "updated_at": "2026-07-10T10:12:42.460478", + "url": "/v1/software/powerpoint-viewer-3-0-for-mac" +} diff --git a/site/public/v1/software/powerpoint-viewer/index.json b/site/public/v1/software/powerpoint-viewer/index.json new file mode 100644 index 000000000000..f03f93bd2306 --- /dev/null +++ b/site/public/v1/software/powerpoint-viewer/index.json @@ -0,0 +1,21 @@ +{ + "id": 7915, + "slug": "powerpoint-viewer", + "name": "PowerPoint Viewer", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q9283552" + ], + "created_at": "2026-07-10T10:12:42.460478", + "updated_at": "2026-07-10T10:12:42.460478", + "url": "/v1/software/powerpoint-viewer" +} diff --git a/site/public/v1/software/powerprm/index.json b/site/public/v1/software/powerprm/index.json new file mode 100644 index 000000000000..6b54cba445bd --- /dev/null +++ b/site/public/v1/software/powerprm/index.json @@ -0,0 +1,26 @@ +{ + "id": 7916, + "slug": "powerprm", + "name": "PowerPRM", + "release_date": null, + "developers": [ + "Power PRM" + ], + "publishers": [ + "Netwise" + ], + "operating_systems": [ + "Azure", + "cloud computing" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140010133" + ], + "created_at": "2026-07-10T10:12:42.460478", + "updated_at": "2026-07-10T10:12:42.460478", + "url": "/v1/software/powerprm" +} diff --git a/site/public/v1/software/powerpro/index.json b/site/public/v1/software/powerpro/index.json new file mode 100644 index 000000000000..2f544c8347f8 --- /dev/null +++ b/site/public/v1/software/powerpro/index.json @@ -0,0 +1,23 @@ +{ + "id": 7917, + "slug": "powerpro", + "name": "PowerPro", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4047292" + ], + "created_at": "2026-07-10T10:12:42.460478", + "updated_at": "2026-07-10T10:12:42.460478", + "url": "/v1/software/powerpro" +} diff --git a/site/public/v1/software/powershadow/index.json b/site/public/v1/software/powershadow/index.json new file mode 100644 index 000000000000..6985115df5c4 --- /dev/null +++ b/site/public/v1/software/powershadow/index.json @@ -0,0 +1,19 @@ +{ + "id": 7918, + "slug": "powershadow", + "name": "PowerShadow", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11070114" + ], + "created_at": "2026-07-10T10:12:42.461433", + "updated_at": "2026-07-10T10:12:42.461433", + "url": "/v1/software/powershadow" +} diff --git a/site/public/v1/software/powerstat/index.json b/site/public/v1/software/powerstat/index.json new file mode 100644 index 000000000000..91a30e6cdd15 --- /dev/null +++ b/site/public/v1/software/powerstat/index.json @@ -0,0 +1,19 @@ +{ + "id": 7919, + "slug": "powerstat", + "name": "powerstat", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975352" + ], + "created_at": "2026-07-10T10:12:42.461433", + "updated_at": "2026-07-10T10:12:42.461433", + "url": "/v1/software/powerstat" +} diff --git a/site/public/v1/software/powervm-lx86/index.json b/site/public/v1/software/powervm-lx86/index.json new file mode 100644 index 000000000000..4db51ca8b905 --- /dev/null +++ b/site/public/v1/software/powervm-lx86/index.json @@ -0,0 +1,21 @@ +{ + "id": 7920, + "slug": "powervm-lx86", + "name": "PowerVM Lx86", + "release_date": "2008-01-01", + "developers": [ + "IBM" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7236238" + ], + "created_at": "2026-07-10T10:12:42.462430", + "updated_at": "2026-07-10T10:12:42.462430", + "url": "/v1/software/powervm-lx86" +} diff --git a/site/public/v1/software/powervm/index.json b/site/public/v1/software/powervm/index.json new file mode 100644 index 000000000000..cf1222c23c0b --- /dev/null +++ b/site/public/v1/software/powervm/index.json @@ -0,0 +1,23 @@ +{ + "id": 7921, + "slug": "powervm", + "name": "PowerVM", + "release_date": null, + "developers": [ + "IBM" + ], + "publishers": [], + "operating_systems": [ + "IBM i" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3400898" + ], + "created_at": "2026-07-10T10:12:42.462430", + "updated_at": "2026-07-10T10:12:42.462430", + "url": "/v1/software/powervm" +} diff --git a/site/public/v1/software/powerword/index.json b/site/public/v1/software/powerword/index.json new file mode 100644 index 000000000000..64f055124418 --- /dev/null +++ b/site/public/v1/software/powerword/index.json @@ -0,0 +1,19 @@ +{ + "id": 7922, + "slug": "powerword", + "name": "PowerWord", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q14473766" + ], + "created_at": "2026-07-10T10:12:42.462430", + "updated_at": "2026-07-10T10:12:42.462430", + "url": "/v1/software/powerword" +} diff --git a/site/public/v1/software/pp-jailbreak/index.json b/site/public/v1/software/pp-jailbreak/index.json new file mode 100644 index 000000000000..050ea6fe5e25 --- /dev/null +++ b/site/public/v1/software/pp-jailbreak/index.json @@ -0,0 +1,19 @@ +{ + "id": 7923, + "slug": "pp-jailbreak", + "name": "PP Jailbreak", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22096867" + ], + "created_at": "2026-07-10T10:12:42.462430", + "updated_at": "2026-07-10T10:12:42.462430", + "url": "/v1/software/pp-jailbreak" +} diff --git a/site/public/v1/software/ppg-phonem/index.json b/site/public/v1/software/ppg-phonem/index.json new file mode 100644 index 000000000000..a47e1850cedc --- /dev/null +++ b/site/public/v1/software/ppg-phonem/index.json @@ -0,0 +1,19 @@ +{ + "id": 7924, + "slug": "ppg-phonem", + "name": "PPG Phonem", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22907885" + ], + "created_at": "2026-07-10T10:12:42.463440", + "updated_at": "2026-07-10T10:12:42.463440", + "url": "/v1/software/ppg-phonem" +} diff --git a/site/public/v1/software/pppconfig/index.json b/site/public/v1/software/pppconfig/index.json new file mode 100644 index 000000000000..09c4d754b02e --- /dev/null +++ b/site/public/v1/software/pppconfig/index.json @@ -0,0 +1,19 @@ +{ + "id": 7925, + "slug": "pppconfig", + "name": "pppconfig", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065458" + ], + "created_at": "2026-07-10T10:12:42.463440", + "updated_at": "2026-07-10T10:12:42.463440", + "url": "/v1/software/pppconfig" +} diff --git a/site/public/v1/software/pps-tv/index.json b/site/public/v1/software/pps-tv/index.json new file mode 100644 index 000000000000..c14d0f33270a --- /dev/null +++ b/site/public/v1/software/pps-tv/index.json @@ -0,0 +1,27 @@ +{ + "id": 7926, + "slug": "pps-tv", + "name": "PPS.tv", + "release_date": null, + "developers": [ + "iQIYI" + ], + "publishers": [ + "iQIYI" + ], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4300422" + ], + "created_at": "2026-07-10T10:12:42.463440", + "updated_at": "2026-07-10T10:12:42.463440", + "url": "/v1/software/pps-tv" +} diff --git a/site/public/v1/software/praat/index.json b/site/public/v1/software/praat/index.json new file mode 100644 index 000000000000..e267c7524148 --- /dev/null +++ b/site/public/v1/software/praat/index.json @@ -0,0 +1,26 @@ +{ + "id": 7927, + "slug": "praat", + "name": "Praat", + "release_date": null, + "developers": [ + "Paul Boersma" + ], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [ + "Objective-C" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q378530" + ], + "created_at": "2026-07-10T10:12:42.463440", + "updated_at": "2026-07-10T10:12:42.463440", + "url": "/v1/software/praat" +} diff --git a/site/public/v1/software/practicelink/index.json b/site/public/v1/software/practicelink/index.json new file mode 100644 index 000000000000..1a22338adfb3 --- /dev/null +++ b/site/public/v1/software/practicelink/index.json @@ -0,0 +1,21 @@ +{ + "id": 7928, + "slug": "practicelink", + "name": "PracticeLink", + "release_date": null, + "developers": [ + "Quartz IP" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140456795" + ], + "created_at": "2026-07-10T10:12:42.463440", + "updated_at": "2026-07-10T10:12:42.463440", + "url": "/v1/software/practicelink" +} diff --git a/site/public/v1/software/precice/index.json b/site/public/v1/software/precice/index.json new file mode 100644 index 000000000000..1a7d0cbaf294 --- /dev/null +++ b/site/public/v1/software/precice/index.json @@ -0,0 +1,19 @@ +{ + "id": 7929, + "slug": "precice", + "name": "PreCICE", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136504894" + ], + "created_at": "2026-07-10T10:12:42.464952", + "updated_at": "2026-07-10T10:12:42.464952", + "url": "/v1/software/precice" +} diff --git a/site/public/v1/software/precisionfda/index.json b/site/public/v1/software/precisionfda/index.json new file mode 100644 index 000000000000..36f87e46536a --- /dev/null +++ b/site/public/v1/software/precisionfda/index.json @@ -0,0 +1,19 @@ +{ + "id": 7930, + "slug": "precisionfda", + "name": "precisionFDA", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25325411" + ], + "created_at": "2026-07-10T10:12:42.464952", + "updated_at": "2026-07-10T10:12:42.464952", + "url": "/v1/software/precisionfda" +} diff --git a/site/public/v1/software/prediction-by-partial-matching-by-dmitry/index.json b/site/public/v1/software/prediction-by-partial-matching-by-dmitry/index.json new file mode 100644 index 000000000000..4bd77de1577f --- /dev/null +++ b/site/public/v1/software/prediction-by-partial-matching-by-dmitry/index.json @@ -0,0 +1,19 @@ +{ + "id": 7931, + "slug": "prediction-by-partial-matching-by-dmitry", + "name": "Prediction by Partial Matching by Dmitry", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3359811" + ], + "created_at": "2026-07-10T10:12:42.465748", + "updated_at": "2026-07-10T10:12:42.465748", + "url": "/v1/software/prediction-by-partial-matching-by-dmitry" +} diff --git a/site/public/v1/software/predictor-home/index.json b/site/public/v1/software/predictor-home/index.json new file mode 100644 index 000000000000..9175eeee8e10 --- /dev/null +++ b/site/public/v1/software/predictor-home/index.json @@ -0,0 +1,19 @@ +{ + "id": 7932, + "slug": "predictor-home", + "name": "Predictor@home", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q902260" + ], + "created_at": "2026-07-10T10:12:42.465748", + "updated_at": "2026-07-10T10:12:42.465748", + "url": "/v1/software/predictor-home" +} diff --git a/site/public/v1/software/predix/index.json b/site/public/v1/software/predix/index.json new file mode 100644 index 000000000000..58baa2a20e0e --- /dev/null +++ b/site/public/v1/software/predix/index.json @@ -0,0 +1,21 @@ +{ + "id": 7933, + "slug": "predix", + "name": "Predix", + "release_date": null, + "developers": [ + "General Electric" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25345904" + ], + "created_at": "2026-07-10T10:12:42.465748", + "updated_at": "2026-07-10T10:12:42.465748", + "url": "/v1/software/predix" +} diff --git a/site/public/v1/software/prelink/index.json b/site/public/v1/software/prelink/index.json new file mode 100644 index 000000000000..e82e1ac2b3f2 --- /dev/null +++ b/site/public/v1/software/prelink/index.json @@ -0,0 +1,19 @@ +{ + "id": 7934, + "slug": "prelink", + "name": "Prelink", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62857848" + ], + "created_at": "2026-07-10T10:12:42.466760", + "updated_at": "2026-07-10T10:12:42.466760", + "url": "/v1/software/prelink" +} diff --git a/site/public/v1/software/prelude-hybrid-ids/index.json b/site/public/v1/software/prelude-hybrid-ids/index.json new file mode 100644 index 000000000000..b7a920b4a8e1 --- /dev/null +++ b/site/public/v1/software/prelude-hybrid-ids/index.json @@ -0,0 +1,19 @@ +{ + "id": 7935, + "slug": "prelude-hybrid-ids", + "name": "Prelude Hybrid IDS", + "release_date": "1998-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3401583" + ], + "created_at": "2026-07-10T10:12:42.466760", + "updated_at": "2026-07-10T10:12:42.466760", + "url": "/v1/software/prelude-hybrid-ids" +} diff --git a/site/public/v1/software/premier-sound-factory/index.json b/site/public/v1/software/premier-sound-factory/index.json new file mode 100644 index 000000000000..3cd6a6c28863 --- /dev/null +++ b/site/public/v1/software/premier-sound-factory/index.json @@ -0,0 +1,21 @@ +{ + "id": 7936, + "slug": "premier-sound-factory", + "name": "Premier Sound Factory", + "release_date": null, + "developers": [ + "Premier Engineering Inc." + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108029490" + ], + "created_at": "2026-07-10T10:12:42.466760", + "updated_at": "2026-07-10T10:12:42.466760", + "url": "/v1/software/premier-sound-factory" +} diff --git a/site/public/v1/software/prepare-and-visualize-mallet-topics/index.json b/site/public/v1/software/prepare-and-visualize-mallet-topics/index.json new file mode 100644 index 000000000000..55d2d9e7175e --- /dev/null +++ b/site/public/v1/software/prepare-and-visualize-mallet-topics/index.json @@ -0,0 +1,19 @@ +{ + "id": 7937, + "slug": "prepare-and-visualize-mallet-topics", + "name": "Prepare and Visualize Mallet Topics", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084492" + ], + "created_at": "2026-07-10T10:12:42.466760", + "updated_at": "2026-07-10T10:12:42.467759", + "url": "/v1/software/prepare-and-visualize-mallet-topics" +} diff --git a/site/public/v1/software/prepomax/index.json b/site/public/v1/software/prepomax/index.json new file mode 100644 index 000000000000..8701a35bb248 --- /dev/null +++ b/site/public/v1/software/prepomax/index.json @@ -0,0 +1,19 @@ +{ + "id": 7938, + "slug": "prepomax", + "name": "PrePoMax", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137188709" + ], + "created_at": "2026-07-10T10:12:42.467759", + "updated_at": "2026-07-10T10:12:42.467759", + "url": "/v1/software/prepomax" +} diff --git a/site/public/v1/software/preservica/index.json b/site/public/v1/software/preservica/index.json new file mode 100644 index 000000000000..c4e1b3f10df5 --- /dev/null +++ b/site/public/v1/software/preservica/index.json @@ -0,0 +1,23 @@ +{ + "id": 7939, + "slug": "preservica", + "name": "Preservica", + "release_date": null, + "developers": [ + "Preservica" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q37621103" + ], + "created_at": "2026-07-10T10:12:42.467759", + "updated_at": "2026-07-10T10:12:42.467759", + "url": "/v1/software/preservica" +} diff --git a/site/public/v1/software/pretendo-network/index.json b/site/public/v1/software/pretendo-network/index.json new file mode 100644 index 000000000000..76196a46bf0d --- /dev/null +++ b/site/public/v1/software/pretendo-network/index.json @@ -0,0 +1,19 @@ +{ + "id": 7940, + "slug": "pretendo-network", + "name": "Pretendo Network", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125396532" + ], + "created_at": "2026-07-10T10:12:42.468758", + "updated_at": "2026-07-10T10:12:42.468758", + "url": "/v1/software/pretendo-network" +} diff --git a/site/public/v1/software/pretix/index.json b/site/public/v1/software/pretix/index.json new file mode 100644 index 000000000000..640d03094d5b --- /dev/null +++ b/site/public/v1/software/pretix/index.json @@ -0,0 +1,19 @@ +{ + "id": 7941, + "slug": "pretix", + "name": "pretix", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134588245" + ], + "created_at": "2026-07-10T10:12:42.468758", + "updated_at": "2026-07-10T10:12:42.468758", + "url": "/v1/software/pretix" +} diff --git a/site/public/v1/software/pretty-show/index.json b/site/public/v1/software/pretty-show/index.json new file mode 100644 index 000000000000..45378dfe6158 --- /dev/null +++ b/site/public/v1/software/pretty-show/index.json @@ -0,0 +1,19 @@ +{ + "id": 7942, + "slug": "pretty-show", + "name": "pretty-show", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q88506372" + ], + "created_at": "2026-07-10T10:12:42.468758", + "updated_at": "2026-07-10T10:12:42.468758", + "url": "/v1/software/pretty-show" +} diff --git a/site/public/v1/software/prewikka/index.json b/site/public/v1/software/prewikka/index.json new file mode 100644 index 000000000000..b9a4cda638df --- /dev/null +++ b/site/public/v1/software/prewikka/index.json @@ -0,0 +1,19 @@ +{ + "id": 7943, + "slug": "prewikka", + "name": "Prewikka", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62860935" + ], + "created_at": "2026-07-10T10:12:42.468758", + "updated_at": "2026-07-10T10:12:42.468758", + "url": "/v1/software/prewikka" +} diff --git a/site/public/v1/software/prey-vs-predator-sy-01/index.json b/site/public/v1/software/prey-vs-predator-sy-01/index.json new file mode 100644 index 000000000000..31479fb3d086 --- /dev/null +++ b/site/public/v1/software/prey-vs-predator-sy-01/index.json @@ -0,0 +1,21 @@ +{ + "id": 7944, + "slug": "prey-vs-predator-sy-01", + "name": "Prey vs Predator | SY-01", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Apache Software License 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137503644" + ], + "created_at": "2026-07-10T10:12:42.469756", + "updated_at": "2026-07-10T10:12:42.469756", + "url": "/v1/software/prey-vs-predator-sy-01" +} diff --git a/site/public/v1/software/prezi/index.json b/site/public/v1/software/prezi/index.json new file mode 100644 index 000000000000..089ca3de2467 --- /dev/null +++ b/site/public/v1/software/prezi/index.json @@ -0,0 +1,19 @@ +{ + "id": 7945, + "slug": "prezi", + "name": "Prezi", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084493" + ], + "created_at": "2026-07-10T10:12:42.469756", + "updated_at": "2026-07-10T10:12:42.469756", + "url": "/v1/software/prezi" +} diff --git a/site/public/v1/software/prim8-mobile/index.json b/site/public/v1/software/prim8-mobile/index.json new file mode 100644 index 000000000000..5b31cc88521b --- /dev/null +++ b/site/public/v1/software/prim8-mobile/index.json @@ -0,0 +1,21 @@ +{ + "id": 7946, + "slug": "prim8-mobile", + "name": "Prim8 Mobile", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "iOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106998743" + ], + "created_at": "2026-07-10T10:12:42.469756", + "updated_at": "2026-07-10T10:12:42.469756", + "url": "/v1/software/prim8-mobile" +} diff --git a/site/public/v1/software/prima/index.json b/site/public/v1/software/prima/index.json new file mode 100644 index 000000000000..00274fa2fdd6 --- /dev/null +++ b/site/public/v1/software/prima/index.json @@ -0,0 +1,19 @@ +{ + "id": 7947, + "slug": "prima", + "name": "Prima", + "release_date": "2011-09-07", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10852105" + ], + "created_at": "2026-07-10T10:12:42.470847", + "updated_at": "2026-07-10T10:12:42.470847", + "url": "/v1/software/prima" +} diff --git a/site/public/v1/software/primavera/index.json b/site/public/v1/software/primavera/index.json new file mode 100644 index 000000000000..ea1e58a70720 --- /dev/null +++ b/site/public/v1/software/primavera/index.json @@ -0,0 +1,22 @@ +{ + "id": 7948, + "slug": "primavera", + "name": "Primavera", + "release_date": null, + "developers": [ + "Primavera Systems", + "Oracle Corporation" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2111327" + ], + "created_at": "2026-07-10T10:12:42.470847", + "updated_at": "2026-07-10T10:12:42.470847", + "url": "/v1/software/primavera" +} diff --git a/site/public/v1/software/prime95/index.json b/site/public/v1/software/prime95/index.json new file mode 100644 index 000000000000..fc761ccbd6d1 --- /dev/null +++ b/site/public/v1/software/prime95/index.json @@ -0,0 +1,25 @@ +{ + "id": 7949, + "slug": "prime95", + "name": "Prime95", + "release_date": null, + "developers": [ + "George Woltman" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "x86 assembly language" + ], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1313004" + ], + "created_at": "2026-07-10T10:12:42.470847", + "updated_at": "2026-07-10T10:12:42.470847", + "url": "/v1/software/prime95" +} diff --git a/site/public/v1/software/primeocr/index.json b/site/public/v1/software/primeocr/index.json new file mode 100644 index 000000000000..0c727a84f627 --- /dev/null +++ b/site/public/v1/software/primeocr/index.json @@ -0,0 +1,21 @@ +{ + "id": 7950, + "slug": "primeocr", + "name": "PrimeOCR", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q61727092" + ], + "created_at": "2026-07-10T10:12:42.470847", + "updated_at": "2026-07-10T10:12:42.470847", + "url": "/v1/software/primeocr" +} diff --git a/site/public/v1/software/primer-blast/index.json b/site/public/v1/software/primer-blast/index.json new file mode 100644 index 000000000000..2a41df209cc6 --- /dev/null +++ b/site/public/v1/software/primer-blast/index.json @@ -0,0 +1,19 @@ +{ + "id": 7951, + "slug": "primer-blast", + "name": "Primer-BLAST", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112143945" + ], + "created_at": "2026-07-10T10:12:42.471865", + "updated_at": "2026-07-10T10:12:42.471865", + "url": "/v1/software/primer-blast" +} diff --git a/site/public/v1/software/primer-e-primer/index.json b/site/public/v1/software/primer-e-primer/index.json new file mode 100644 index 000000000000..c3de73807d4f --- /dev/null +++ b/site/public/v1/software/primer-e-primer/index.json @@ -0,0 +1,21 @@ +{ + "id": 7952, + "slug": "primer-e-primer", + "name": "Primer-E Primer", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7243393" + ], + "created_at": "2026-07-10T10:12:42.471865", + "updated_at": "2026-07-10T10:12:42.471865", + "url": "/v1/software/primer-e-primer" +} diff --git a/site/public/v1/software/primer-premier/index.json b/site/public/v1/software/primer-premier/index.json new file mode 100644 index 000000000000..30cc228fa713 --- /dev/null +++ b/site/public/v1/software/primer-premier/index.json @@ -0,0 +1,21 @@ +{ + "id": 7953, + "slug": "primer-premier", + "name": "Primer Premier", + "release_date": null, + "developers": [ + "Premier Biosoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7243405" + ], + "created_at": "2026-07-10T10:12:42.472816", + "updated_at": "2026-07-10T10:12:42.472816", + "url": "/v1/software/primer-premier" +} diff --git a/site/public/v1/software/primer3/index.json b/site/public/v1/software/primer3/index.json new file mode 100644 index 000000000000..1c27e76f4642 --- /dev/null +++ b/site/public/v1/software/primer3/index.json @@ -0,0 +1,21 @@ +{ + "id": 7954, + "slug": "primer3", + "name": "Primer3", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "GNU General Public License, version 2.0 or later" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11239942" + ], + "created_at": "2026-07-10T10:12:42.472816", + "updated_at": "2026-07-10T10:12:42.472816", + "url": "/v1/software/primer3" +} diff --git a/site/public/v1/software/primereviewspro/index.json b/site/public/v1/software/primereviewspro/index.json new file mode 100644 index 000000000000..203edeae4f49 --- /dev/null +++ b/site/public/v1/software/primereviewspro/index.json @@ -0,0 +1,19 @@ +{ + "id": 7955, + "slug": "primereviewspro", + "name": "PrimeReviewsPro", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139856685" + ], + "created_at": "2026-07-10T10:12:42.472816", + "updated_at": "2026-07-10T10:12:42.472816", + "url": "/v1/software/primereviewspro" +} diff --git a/site/public/v1/software/primopdf/index.json b/site/public/v1/software/primopdf/index.json new file mode 100644 index 000000000000..7b2daad61648 --- /dev/null +++ b/site/public/v1/software/primopdf/index.json @@ -0,0 +1,21 @@ +{ + "id": 7956, + "slug": "primopdf", + "name": "PrimoPDF", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1986546" + ], + "created_at": "2026-07-10T10:12:42.472816", + "updated_at": "2026-07-10T10:12:42.472816", + "url": "/v1/software/primopdf" +} diff --git a/site/public/v1/software/prince-xml/index.json b/site/public/v1/software/prince-xml/index.json new file mode 100644 index 000000000000..0a2f03432b03 --- /dev/null +++ b/site/public/v1/software/prince-xml/index.json @@ -0,0 +1,25 @@ +{ + "id": 7957, + "slug": "prince-xml", + "name": "Prince XML", + "release_date": "2003-04-01", + "developers": [], + "publishers": [], + "operating_systems": [ + "FreeBSD", + "macOS", + "Microsoft Windows" + ], + "programming_languages": [ + "Mercury" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7244299" + ], + "created_at": "2026-07-10T10:12:42.473815", + "updated_at": "2026-07-10T10:12:42.473815", + "url": "/v1/software/prince-xml" +} diff --git a/site/public/v1/software/print-magic/index.json b/site/public/v1/software/print-magic/index.json new file mode 100644 index 000000000000..5c5d4dc63a89 --- /dev/null +++ b/site/public/v1/software/print-magic/index.json @@ -0,0 +1,21 @@ +{ + "id": 7958, + "slug": "print-magic", + "name": "Print Magic", + "release_date": null, + "developers": [ + "Epyx" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18155006" + ], + "created_at": "2026-07-10T10:12:42.473815", + "updated_at": "2026-07-10T10:12:42.473815", + "url": "/v1/software/print-magic" +} diff --git a/site/public/v1/software/print-share/index.json b/site/public/v1/software/print-share/index.json new file mode 100644 index 000000000000..b201c7c80144 --- /dev/null +++ b/site/public/v1/software/print-share/index.json @@ -0,0 +1,21 @@ +{ + "id": 7959, + "slug": "print-share", + "name": "Print&Share", + "release_date": null, + "developers": [ + "Winking" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7245246" + ], + "created_at": "2026-07-10T10:12:42.473815", + "updated_at": "2026-07-10T10:12:42.473815", + "url": "/v1/software/print-share" +} diff --git a/site/public/v1/software/printer-setup-utility/index.json b/site/public/v1/software/printer-setup-utility/index.json new file mode 100644 index 000000000000..920a15843e6e --- /dev/null +++ b/site/public/v1/software/printer-setup-utility/index.json @@ -0,0 +1,21 @@ +{ + "id": 7960, + "slug": "printer-setup-utility", + "name": "Printer Setup Utility", + "release_date": null, + "developers": [ + "Apple Inc." + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4006769" + ], + "created_at": "2026-07-10T10:12:42.474821", + "updated_at": "2026-07-10T10:12:42.474821", + "url": "/v1/software/printer-setup-utility" +} diff --git a/site/public/v1/software/printfriendly/index.json b/site/public/v1/software/printfriendly/index.json new file mode 100644 index 000000000000..fb77020df7d5 --- /dev/null +++ b/site/public/v1/software/printfriendly/index.json @@ -0,0 +1,19 @@ +{ + "id": 7961, + "slug": "printfriendly", + "name": "PrintFriendly", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131783081" + ], + "created_at": "2026-07-10T10:12:42.474821", + "updated_at": "2026-07-10T10:12:42.474821", + "url": "/v1/software/printfriendly" +} diff --git a/site/public/v1/software/printkey-2000/index.json b/site/public/v1/software/printkey-2000/index.json new file mode 100644 index 000000000000..14d5e5db5726 --- /dev/null +++ b/site/public/v1/software/printkey-2000/index.json @@ -0,0 +1,21 @@ +{ + "id": 7962, + "slug": "printkey-2000", + "name": "PrintKey 2000", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7245248" + ], + "created_at": "2026-07-10T10:12:42.474821", + "updated_at": "2026-07-10T10:12:42.474821", + "url": "/v1/software/printkey-2000" +} diff --git a/site/public/v1/software/printmaster-gold-classic/index.json b/site/public/v1/software/printmaster-gold-classic/index.json new file mode 100644 index 000000000000..3df2eaf5d019 --- /dev/null +++ b/site/public/v1/software/printmaster-gold-classic/index.json @@ -0,0 +1,24 @@ +{ + "id": 7963, + "slug": "printmaster-gold-classic", + "name": "PrintMaster Gold Classic", + "release_date": "1998-01-01", + "developers": [ + "Mindscape" + ], + "publishers": [], + "operating_systems": [ + "Windows 95", + "Windows for Workgroups 3.11" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113172793" + ], + "created_at": "2026-07-10T10:12:42.474821", + "updated_at": "2026-07-10T10:12:42.474821", + "url": "/v1/software/printmaster-gold-classic" +} diff --git a/site/public/v1/software/printmaster/index.json b/site/public/v1/software/printmaster/index.json new file mode 100644 index 000000000000..6c9db1e9ff88 --- /dev/null +++ b/site/public/v1/software/printmaster/index.json @@ -0,0 +1,21 @@ +{ + "id": 7964, + "slug": "printmaster", + "name": "PrintMaster", + "release_date": "1991-01-01", + "developers": [ + "Encore, Inc." + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17081700" + ], + "created_at": "2026-07-10T10:12:42.475845", + "updated_at": "2026-07-10T10:12:42.475845", + "url": "/v1/software/printmaster" +} diff --git a/site/public/v1/software/priority-matrix/index.json b/site/public/v1/software/priority-matrix/index.json new file mode 100644 index 000000000000..d6056e7cc3b8 --- /dev/null +++ b/site/public/v1/software/priority-matrix/index.json @@ -0,0 +1,21 @@ +{ + "id": 7965, + "slug": "priority-matrix", + "name": "Priority Matrix", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22096906" + ], + "created_at": "2026-07-10T10:12:42.475845", + "updated_at": "2026-07-10T10:12:42.475845", + "url": "/v1/software/priority-matrix" +} diff --git a/site/public/v1/software/prism-q135263888/index.json b/site/public/v1/software/prism-q135263888/index.json new file mode 100644 index 000000000000..66d727925ccf --- /dev/null +++ b/site/public/v1/software/prism-q135263888/index.json @@ -0,0 +1,21 @@ +{ + "id": 7966, + "slug": "prism-q135263888", + "name": "PRISM", + "release_date": null, + "developers": [ + "Enverus" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135263888" + ], + "created_at": "2026-07-10T10:12:42.475845", + "updated_at": "2026-07-10T10:12:42.475845", + "url": "/v1/software/prism-q135263888" +} diff --git a/site/public/v1/software/prism-q140026666/index.json b/site/public/v1/software/prism-q140026666/index.json new file mode 100644 index 000000000000..23e88dbab540 --- /dev/null +++ b/site/public/v1/software/prism-q140026666/index.json @@ -0,0 +1,23 @@ +{ + "id": 7967, + "slug": "prism-q140026666", + "name": "Prism", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [ + "Windows 11" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140026666" + ], + "created_at": "2026-07-10T10:12:42.476849", + "updated_at": "2026-07-10T10:12:42.476849", + "url": "/v1/software/prism-q140026666" +} diff --git a/site/public/v1/software/prism-video-converter/index.json b/site/public/v1/software/prism-video-converter/index.json new file mode 100644 index 000000000000..cc6dc1b8d1eb --- /dev/null +++ b/site/public/v1/software/prism-video-converter/index.json @@ -0,0 +1,19 @@ +{ + "id": 7968, + "slug": "prism-video-converter", + "name": "Prism Video Converter", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120534316" + ], + "created_at": "2026-07-10T10:12:42.476849", + "updated_at": "2026-07-10T10:12:42.476849", + "url": "/v1/software/prism-video-converter" +} diff --git a/site/public/v1/software/prism/index.json b/site/public/v1/software/prism/index.json new file mode 100644 index 000000000000..aacb0bb0f58f --- /dev/null +++ b/site/public/v1/software/prism/index.json @@ -0,0 +1,19 @@ +{ + "id": 7969, + "slug": "prism", + "name": "Prism", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084494" + ], + "created_at": "2026-07-10T10:12:42.476849", + "updated_at": "2026-07-10T10:12:42.476849", + "url": "/v1/software/prism" +} diff --git a/site/public/v1/software/prismatic/index.json b/site/public/v1/software/prismatic/index.json new file mode 100644 index 000000000000..e67523bee08e --- /dev/null +++ b/site/public/v1/software/prismatic/index.json @@ -0,0 +1,19 @@ +{ + "id": 7970, + "slug": "prismatic", + "name": "Prismatic", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7245690" + ], + "created_at": "2026-07-10T10:12:42.477827", + "updated_at": "2026-07-10T10:12:42.477827", + "url": "/v1/software/prismatic" +} diff --git a/site/public/v1/software/privadovpn/index.json b/site/public/v1/software/privadovpn/index.json new file mode 100644 index 000000000000..cb609cc5510a --- /dev/null +++ b/site/public/v1/software/privadovpn/index.json @@ -0,0 +1,19 @@ +{ + "id": 7971, + "slug": "privadovpn", + "name": "PrivadoVPN", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113669345" + ], + "created_at": "2026-07-10T10:12:42.477827", + "updated_at": "2026-07-10T10:12:42.477827", + "url": "/v1/software/privadovpn" +} diff --git a/site/public/v1/software/private-character-editor/index.json b/site/public/v1/software/private-character-editor/index.json new file mode 100644 index 000000000000..2aa10a94aa7b --- /dev/null +++ b/site/public/v1/software/private-character-editor/index.json @@ -0,0 +1,19 @@ +{ + "id": 7972, + "slug": "private-character-editor", + "name": "Private Character Editor", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q909075" + ], + "created_at": "2026-07-10T10:12:42.477827", + "updated_at": "2026-07-10T10:12:42.477827", + "url": "/v1/software/private-character-editor" +} diff --git a/site/public/v1/software/private-collective-model-of-innovation/index.json b/site/public/v1/software/private-collective-model-of-innovation/index.json new file mode 100644 index 000000000000..7144be347b32 --- /dev/null +++ b/site/public/v1/software/private-collective-model-of-innovation/index.json @@ -0,0 +1,19 @@ +{ + "id": 7973, + "slug": "private-collective-model-of-innovation", + "name": "private-collective model of innovation", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7246037" + ], + "created_at": "2026-07-10T10:12:42.478816", + "updated_at": "2026-07-10T10:12:42.478816", + "url": "/v1/software/private-collective-model-of-innovation" +} diff --git a/site/public/v1/software/pro-cycling-manager/index.json b/site/public/v1/software/pro-cycling-manager/index.json new file mode 100644 index 000000000000..5e4e4062d256 --- /dev/null +++ b/site/public/v1/software/pro-cycling-manager/index.json @@ -0,0 +1,19 @@ +{ + "id": 7974, + "slug": "pro-cycling-manager", + "name": "Pro Cycling Manager", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107301172" + ], + "created_at": "2026-07-10T10:12:42.478816", + "updated_at": "2026-07-10T10:12:42.478816", + "url": "/v1/software/pro-cycling-manager" +} diff --git a/site/public/v1/software/pro-ii/index.json b/site/public/v1/software/pro-ii/index.json new file mode 100644 index 000000000000..bcab42cabf05 --- /dev/null +++ b/site/public/v1/software/pro-ii/index.json @@ -0,0 +1,21 @@ +{ + "id": 7975, + "slug": "pro-ii", + "name": "PRO/II", + "release_date": null, + "developers": [ + "Schneider Electric" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7120372" + ], + "created_at": "2026-07-10T10:12:42.478816", + "updated_at": "2026-07-10T10:12:42.478816", + "url": "/v1/software/pro-ii" +} diff --git a/site/public/v1/software/pro-lx/index.json b/site/public/v1/software/pro-lx/index.json new file mode 100644 index 000000000000..d60dea439ce8 --- /dev/null +++ b/site/public/v1/software/pro-lx/index.json @@ -0,0 +1,23 @@ +{ + "id": 7976, + "slug": "pro-lx", + "name": "PRO/LX", + "release_date": null, + "developers": [ + "D&A Software" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121672433" + ], + "created_at": "2026-07-10T10:12:42.478816", + "updated_at": "2026-07-10T10:12:42.478816", + "url": "/v1/software/pro-lx" +} diff --git a/site/public/v1/software/proactive-discovery-of-insider-threats-using-graph-analysis-and-learning/index.json b/site/public/v1/software/proactive-discovery-of-insider-threats-using-graph-analysis-and-learning/index.json new file mode 100644 index 000000000000..a043c5625367 --- /dev/null +++ b/site/public/v1/software/proactive-discovery-of-insider-threats-using-graph-analysis-and-learning/index.json @@ -0,0 +1,19 @@ +{ + "id": 7977, + "slug": "proactive-discovery-of-insider-threats-using-graph-analysis-and-learning", + "name": "Proactive Discovery of Insider Threats Using Graph Analysis and Learning", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7246810" + ], + "created_at": "2026-07-10T10:12:42.479864", + "updated_at": "2026-07-10T10:12:42.479864", + "url": "/v1/software/proactive-discovery-of-insider-threats-using-graph-analysis-and-learning" +} diff --git a/site/public/v1/software/proarc/index.json b/site/public/v1/software/proarc/index.json new file mode 100644 index 000000000000..5c41c988a474 --- /dev/null +++ b/site/public/v1/software/proarc/index.json @@ -0,0 +1,21 @@ +{ + "id": 7978, + "slug": "proarc", + "name": "ProArc", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7246636" + ], + "created_at": "2026-07-10T10:12:42.479864", + "updated_at": "2026-07-10T10:12:42.479864", + "url": "/v1/software/proarc" +} diff --git a/site/public/v1/software/probis/index.json b/site/public/v1/software/probis/index.json new file mode 100644 index 000000000000..35797f70150d --- /dev/null +++ b/site/public/v1/software/probis/index.json @@ -0,0 +1,21 @@ +{ + "id": 7979, + "slug": "probis", + "name": "ProBiS", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Unix-like operating system" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28403202" + ], + "created_at": "2026-07-10T10:12:42.480854", + "updated_at": "2026-07-10T10:12:42.480854", + "url": "/v1/software/probis" +} diff --git a/site/public/v1/software/problem-solving-environment/index.json b/site/public/v1/software/problem-solving-environment/index.json new file mode 100644 index 000000000000..9c16ead5f5f1 --- /dev/null +++ b/site/public/v1/software/problem-solving-environment/index.json @@ -0,0 +1,19 @@ +{ + "id": 7980, + "slug": "problem-solving-environment", + "name": "Problem Solving Environment", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7246952" + ], + "created_at": "2026-07-10T10:12:42.480854", + "updated_at": "2026-07-10T10:12:42.480854", + "url": "/v1/software/problem-solving-environment" +} diff --git a/site/public/v1/software/problog/index.json b/site/public/v1/software/problog/index.json new file mode 100644 index 000000000000..6417918d7b8f --- /dev/null +++ b/site/public/v1/software/problog/index.json @@ -0,0 +1,19 @@ +{ + "id": 7981, + "slug": "problog", + "name": "ProbLog", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113697218" + ], + "created_at": "2026-07-10T10:12:42.480854", + "updated_at": "2026-07-10T10:12:42.480854", + "url": "/v1/software/problog" +} diff --git a/site/public/v1/software/procenv/index.json b/site/public/v1/software/procenv/index.json new file mode 100644 index 000000000000..db72defae20a --- /dev/null +++ b/site/public/v1/software/procenv/index.json @@ -0,0 +1,19 @@ +{ + "id": 7982, + "slug": "procenv", + "name": "procenv", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62863183" + ], + "created_at": "2026-07-10T10:12:42.481753", + "updated_at": "2026-07-10T10:12:42.481753", + "url": "/v1/software/procenv" +} diff --git a/site/public/v1/software/process-analysis-toolkit/index.json b/site/public/v1/software/process-analysis-toolkit/index.json new file mode 100644 index 000000000000..35a35ac027db --- /dev/null +++ b/site/public/v1/software/process-analysis-toolkit/index.json @@ -0,0 +1,23 @@ +{ + "id": 7983, + "slug": "process-analysis-toolkit", + "name": "Process Analysis Toolkit", + "release_date": null, + "developers": [ + "National University of Singapore" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7118286" + ], + "created_at": "2026-07-10T10:12:42.481753", + "updated_at": "2026-07-10T10:12:42.481753", + "url": "/v1/software/process-analysis-toolkit" +} diff --git a/site/public/v1/software/processing/index.json b/site/public/v1/software/processing/index.json new file mode 100644 index 000000000000..4321e5aa18ba --- /dev/null +++ b/site/public/v1/software/processing/index.json @@ -0,0 +1,19 @@ +{ + "id": 7984, + "slug": "processing", + "name": "Processing", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084495" + ], + "created_at": "2026-07-10T10:12:42.481753", + "updated_at": "2026-07-10T10:12:42.481753", + "url": "/v1/software/processing" +} diff --git a/site/public/v1/software/processingjs/index.json b/site/public/v1/software/processingjs/index.json new file mode 100644 index 000000000000..009761fae258 --- /dev/null +++ b/site/public/v1/software/processingjs/index.json @@ -0,0 +1,19 @@ +{ + "id": 7985, + "slug": "processingjs", + "name": "ProcessingJS", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084496" + ], + "created_at": "2026-07-10T10:12:42.482752", + "updated_at": "2026-07-10T10:12:42.482752", + "url": "/v1/software/processingjs" +} diff --git a/site/public/v1/software/procoder/index.json b/site/public/v1/software/procoder/index.json new file mode 100644 index 000000000000..a2498a5490bd --- /dev/null +++ b/site/public/v1/software/procoder/index.json @@ -0,0 +1,22 @@ +{ + "id": 7986, + "slug": "procoder", + "name": "ProCoder", + "release_date": null, + "developers": [ + "Grass Valley K.K.", + "Vantiva" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7246652" + ], + "created_at": "2026-07-10T10:12:42.482752", + "updated_at": "2026-07-10T10:12:42.482752", + "url": "/v1/software/procoder" +} diff --git a/site/public/v1/software/procps/index.json b/site/public/v1/software/procps/index.json new file mode 100644 index 000000000000..b1e335ecde8e --- /dev/null +++ b/site/public/v1/software/procps/index.json @@ -0,0 +1,23 @@ +{ + "id": 7987, + "slug": "procps", + "name": "procps", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Unix-like operating system" + ], + "programming_languages": [], + "licenses": [ + "GNU General Public License, version 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62860941" + ], + "created_at": "2026-07-10T10:12:42.482752", + "updated_at": "2026-07-10T10:12:42.482752", + "url": "/v1/software/procps" +} diff --git a/site/public/v1/software/procurement-software/index.json b/site/public/v1/software/procurement-software/index.json new file mode 100644 index 000000000000..574943de9255 --- /dev/null +++ b/site/public/v1/software/procurement-software/index.json @@ -0,0 +1,19 @@ +{ + "id": 7988, + "slug": "procurement-software", + "name": "procurement software", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7247547" + ], + "created_at": "2026-07-10T10:12:42.482752", + "updated_at": "2026-07-10T10:12:42.482752", + "url": "/v1/software/procurement-software" +} diff --git a/site/public/v1/software/prodigy/index.json b/site/public/v1/software/prodigy/index.json new file mode 100644 index 000000000000..5d41f0fc9a4b --- /dev/null +++ b/site/public/v1/software/prodigy/index.json @@ -0,0 +1,19 @@ +{ + "id": 7989, + "slug": "prodigy", + "name": "PRODIGY", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q114840854" + ], + "created_at": "2026-07-10T10:12:42.483830", + "updated_at": "2026-07-10T10:12:42.483830", + "url": "/v1/software/prodigy" +} diff --git a/site/public/v1/software/product-management-dashboard-for-jira/index.json b/site/public/v1/software/product-management-dashboard-for-jira/index.json new file mode 100644 index 000000000000..cfb083af9794 --- /dev/null +++ b/site/public/v1/software/product-management-dashboard-for-jira/index.json @@ -0,0 +1,21 @@ +{ + "id": 7990, + "slug": "product-management-dashboard-for-jira", + "name": "Product Management Dashboard for Jira", + "release_date": null, + "developers": [ + "proProduktmanagement GmbH" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131869608" + ], + "created_at": "2026-07-10T10:12:42.483830", + "updated_at": "2026-07-10T10:12:42.483830", + "url": "/v1/software/product-management-dashboard-for-jira" +} diff --git a/site/public/v1/software/productcenter/index.json b/site/public/v1/software/productcenter/index.json new file mode 100644 index 000000000000..e568e933216c --- /dev/null +++ b/site/public/v1/software/productcenter/index.json @@ -0,0 +1,23 @@ +{ + "id": 7991, + "slug": "productcenter", + "name": "ProductCenter", + "release_date": "1994-12-01", + "developers": [ + "SofTech, Inc." + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7247731" + ], + "created_at": "2026-07-10T10:12:42.483830", + "updated_at": "2026-07-10T10:12:42.483830", + "url": "/v1/software/productcenter" +} diff --git a/site/public/v1/software/prody-parrot/index.json b/site/public/v1/software/prody-parrot/index.json new file mode 100644 index 000000000000..43946ec97411 --- /dev/null +++ b/site/public/v1/software/prody-parrot/index.json @@ -0,0 +1,21 @@ +{ + "id": 7992, + "slug": "prody-parrot", + "name": "Prody Parrot", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Windows 95" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18344788" + ], + "created_at": "2026-07-10T10:12:42.484840", + "updated_at": "2026-07-10T10:12:42.484840", + "url": "/v1/software/prody-parrot" +} diff --git a/site/public/v1/software/professional-music-driver/index.json b/site/public/v1/software/professional-music-driver/index.json new file mode 100644 index 000000000000..49468f93d567 --- /dev/null +++ b/site/public/v1/software/professional-music-driver/index.json @@ -0,0 +1,19 @@ +{ + "id": 7993, + "slug": "professional-music-driver", + "name": "Professional Music Driver", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140133670" + ], + "created_at": "2026-07-10T10:12:42.484840", + "updated_at": "2026-07-10T10:12:42.484840", + "url": "/v1/software/professional-music-driver" +} diff --git a/site/public/v1/software/professional-open-source/index.json b/site/public/v1/software/professional-open-source/index.json new file mode 100644 index 000000000000..6d769bba2809 --- /dev/null +++ b/site/public/v1/software/professional-open-source/index.json @@ -0,0 +1,19 @@ +{ + "id": 7994, + "slug": "professional-open-source", + "name": "Professional open-source", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7248087" + ], + "created_at": "2026-07-10T10:12:42.484840", + "updated_at": "2026-07-10T10:12:42.484840", + "url": "/v1/software/professional-open-source" +} diff --git a/site/public/v1/software/profile-sync-daemon/index.json b/site/public/v1/software/profile-sync-daemon/index.json new file mode 100644 index 000000000000..9ff8a99e9087 --- /dev/null +++ b/site/public/v1/software/profile-sync-daemon/index.json @@ -0,0 +1,19 @@ +{ + "id": 7995, + "slug": "profile-sync-daemon", + "name": "profile-sync-daemon", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975355" + ], + "created_at": "2026-07-10T10:12:42.485814", + "updated_at": "2026-07-10T10:12:42.485814", + "url": "/v1/software/profile-sync-daemon" +} diff --git a/site/public/v1/software/profileaar/index.json b/site/public/v1/software/profileaar/index.json new file mode 100644 index 000000000000..40357f6f8d3e --- /dev/null +++ b/site/public/v1/software/profileaar/index.json @@ -0,0 +1,19 @@ +{ + "id": 7996, + "slug": "profileaar", + "name": "profileAAR", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q74823867" + ], + "created_at": "2026-07-10T10:12:42.485814", + "updated_at": "2026-07-10T10:12:42.485814", + "url": "/v1/software/profileaar" +} diff --git a/site/public/v1/software/profiler-plus/index.json b/site/public/v1/software/profiler-plus/index.json new file mode 100644 index 000000000000..2aaf1e29a2fe --- /dev/null +++ b/site/public/v1/software/profiler-plus/index.json @@ -0,0 +1,19 @@ +{ + "id": 7997, + "slug": "profiler-plus", + "name": "Profiler Plus", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087698" + ], + "created_at": "2026-07-10T10:12:42.485814", + "updated_at": "2026-07-10T10:12:42.485814", + "url": "/v1/software/profiler-plus" +} diff --git a/site/public/v1/software/progdvb/index.json b/site/public/v1/software/progdvb/index.json new file mode 100644 index 000000000000..86c2bb9a5aa7 --- /dev/null +++ b/site/public/v1/software/progdvb/index.json @@ -0,0 +1,21 @@ +{ + "id": 7998, + "slug": "progdvb", + "name": "ProgDVB", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4118715" + ], + "created_at": "2026-07-10T10:12:42.486828", + "updated_at": "2026-07-10T10:12:42.486828", + "url": "/v1/software/progdvb" +} diff --git a/site/public/v1/software/progecad/index.json b/site/public/v1/software/progecad/index.json new file mode 100644 index 000000000000..0be0049f5616 --- /dev/null +++ b/site/public/v1/software/progecad/index.json @@ -0,0 +1,21 @@ +{ + "id": 7999, + "slug": "progecad", + "name": "progeCAD", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q252581" + ], + "created_at": "2026-07-10T10:12:42.486828", + "updated_at": "2026-07-10T10:12:42.486828", + "url": "/v1/software/progecad" +} diff --git a/site/public/v1/software/programmed-airline-reservations-system/index.json b/site/public/v1/software/programmed-airline-reservations-system/index.json new file mode 100644 index 000000000000..c5231046e647 --- /dev/null +++ b/site/public/v1/software/programmed-airline-reservations-system/index.json @@ -0,0 +1,21 @@ +{ + "id": 8000, + "slug": "programmed-airline-reservations-system", + "name": "Programmed Airline Reservations System", + "release_date": null, + "developers": [ + "IBM" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7248471" + ], + "created_at": "2026-07-10T10:12:42.486828", + "updated_at": "2026-07-10T10:12:42.486828", + "url": "/v1/software/programmed-airline-reservations-system" +} diff --git a/site/public/v1/software/programmer-and-operator-productivity-aid/index.json b/site/public/v1/software/programmer-and-operator-productivity-aid/index.json new file mode 100644 index 000000000000..332e58934db3 --- /dev/null +++ b/site/public/v1/software/programmer-and-operator-productivity-aid/index.json @@ -0,0 +1,21 @@ +{ + "id": 8001, + "slug": "programmer-and-operator-productivity-aid", + "name": "Programmer and Operator Productivity Aid", + "release_date": null, + "developers": [ + "IBM" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7248478" + ], + "created_at": "2026-07-10T10:12:42.487859", + "updated_at": "2026-07-10T10:12:42.487859", + "url": "/v1/software/programmer-and-operator-productivity-aid" +} diff --git a/site/public/v1/software/programming-experience-toolkit/index.json b/site/public/v1/software/programming-experience-toolkit/index.json new file mode 100644 index 000000000000..14ff7bd02f28 --- /dev/null +++ b/site/public/v1/software/programming-experience-toolkit/index.json @@ -0,0 +1,23 @@ +{ + "id": 8002, + "slug": "programming-experience-toolkit", + "name": "Programming Experience Toolkit", + "release_date": null, + "developers": [ + "Peli de Halleux" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123125234" + ], + "created_at": "2026-07-10T10:12:42.487859", + "updated_at": "2026-07-10T10:12:42.487859", + "url": "/v1/software/programming-experience-toolkit" +} diff --git a/site/public/v1/software/programming-metadata-communications-protocol/index.json b/site/public/v1/software/programming-metadata-communications-protocol/index.json new file mode 100644 index 000000000000..19e045a8bf27 --- /dev/null +++ b/site/public/v1/software/programming-metadata-communications-protocol/index.json @@ -0,0 +1,19 @@ +{ + "id": 8003, + "slug": "programming-metadata-communications-protocol", + "name": "Programming Metadata Communications Protocol", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7248491" + ], + "created_at": "2026-07-10T10:12:42.487859", + "updated_at": "2026-07-10T10:12:42.487859", + "url": "/v1/software/programming-metadata-communications-protocol" +} diff --git a/site/public/v1/software/proicon/index.json b/site/public/v1/software/proicon/index.json new file mode 100644 index 000000000000..c5e61584db62 --- /dev/null +++ b/site/public/v1/software/proicon/index.json @@ -0,0 +1,19 @@ +{ + "id": 8004, + "slug": "proicon", + "name": "ProIcon", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084497" + ], + "created_at": "2026-07-10T10:12:42.488840", + "updated_at": "2026-07-10T10:12:42.488840", + "url": "/v1/software/proicon" +} diff --git a/site/public/v1/software/project-bergamot/index.json b/site/public/v1/software/project-bergamot/index.json new file mode 100644 index 000000000000..555b461eac11 --- /dev/null +++ b/site/public/v1/software/project-bergamot/index.json @@ -0,0 +1,19 @@ +{ + "id": 8005, + "slug": "project-bergamot", + "name": "Project Bergamot", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130902406" + ], + "created_at": "2026-07-10T10:12:42.488840", + "updated_at": "2026-07-10T10:12:42.488840", + "url": "/v1/software/project-bergamot" +} diff --git a/site/public/v1/software/project-dakota/index.json b/site/public/v1/software/project-dakota/index.json new file mode 100644 index 000000000000..3b77ef382cf8 --- /dev/null +++ b/site/public/v1/software/project-dakota/index.json @@ -0,0 +1,21 @@ +{ + "id": 8006, + "slug": "project-dakota", + "name": "Project Dakota", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7249053" + ], + "created_at": "2026-07-10T10:12:42.488840", + "updated_at": "2026-07-10T10:12:42.488840", + "url": "/v1/software/project-dakota" +} diff --git a/site/public/v1/software/project-dream/index.json b/site/public/v1/software/project-dream/index.json new file mode 100644 index 000000000000..8be5ead2a985 --- /dev/null +++ b/site/public/v1/software/project-dream/index.json @@ -0,0 +1,19 @@ +{ + "id": 8007, + "slug": "project-dream", + "name": "Project DReaM", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7249048" + ], + "created_at": "2026-07-10T10:12:42.488840", + "updated_at": "2026-07-10T10:12:42.488840", + "url": "/v1/software/project-dream" +} diff --git a/site/public/v1/software/project-genoa/index.json b/site/public/v1/software/project-genoa/index.json new file mode 100644 index 000000000000..06bef0ca7eb9 --- /dev/null +++ b/site/public/v1/software/project-genoa/index.json @@ -0,0 +1,19 @@ +{ + "id": 8008, + "slug": "project-genoa", + "name": "Project Genoa", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7249107" + ], + "created_at": "2026-07-10T10:12:42.489830", + "updated_at": "2026-07-10T10:12:42.489830", + "url": "/v1/software/project-genoa" +} diff --git a/site/public/v1/software/project-harmony/index.json b/site/public/v1/software/project-harmony/index.json new file mode 100644 index 000000000000..5379132ab7f3 --- /dev/null +++ b/site/public/v1/software/project-harmony/index.json @@ -0,0 +1,19 @@ +{ + "id": 8009, + "slug": "project-harmony", + "name": "Project Harmony", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7249135" + ], + "created_at": "2026-07-10T10:12:42.489830", + "updated_at": "2026-07-10T10:12:42.489830", + "url": "/v1/software/project-harmony" +} diff --git a/site/public/v1/software/project-je/index.json b/site/public/v1/software/project-je/index.json new file mode 100644 index 000000000000..b4dcdab4f0f6 --- /dev/null +++ b/site/public/v1/software/project-je/index.json @@ -0,0 +1,19 @@ +{ + "id": 8010, + "slug": "project-je", + "name": "Project-JE", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11240024" + ], + "created_at": "2026-07-10T10:12:42.490846", + "updated_at": "2026-07-10T10:12:42.490846", + "url": "/v1/software/project-je" +} diff --git a/site/public/v1/software/project-kickstart/index.json b/site/public/v1/software/project-kickstart/index.json new file mode 100644 index 000000000000..e032eb223c7c --- /dev/null +++ b/site/public/v1/software/project-kickstart/index.json @@ -0,0 +1,21 @@ +{ + "id": 8011, + "slug": "project-kickstart", + "name": "Project KickStart", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7249176" + ], + "created_at": "2026-07-10T10:12:42.490846", + "updated_at": "2026-07-10T10:12:42.490846", + "url": "/v1/software/project-kickstart" +} diff --git a/site/public/v1/software/project-loom/index.json b/site/public/v1/software/project-loom/index.json new file mode 100644 index 000000000000..4fdad44ccfa7 --- /dev/null +++ b/site/public/v1/software/project-loom/index.json @@ -0,0 +1,21 @@ +{ + "id": 8012, + "slug": "project-loom", + "name": "Project Loom", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "GNU General Public License, version 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q67470896" + ], + "created_at": "2026-07-10T10:12:42.490846", + "updated_at": "2026-07-10T10:12:42.490846", + "url": "/v1/software/project-loom" +} diff --git a/site/public/v1/software/project-noah-q22080512/index.json b/site/public/v1/software/project-noah-q22080512/index.json new file mode 100644 index 000000000000..5c1a5b44d8f3 --- /dev/null +++ b/site/public/v1/software/project-noah-q22080512/index.json @@ -0,0 +1,22 @@ +{ + "id": 8013, + "slug": "project-noah-q22080512", + "name": "Project NOAH", + "release_date": null, + "developers": [ + "Department of Science and Technology", + "University of the Philippines Diliman" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22080512" + ], + "created_at": "2026-07-10T10:12:42.490846", + "updated_at": "2026-07-10T10:12:42.490846", + "url": "/v1/software/project-noah-q22080512" +} diff --git a/site/public/v1/software/project-noah/index.json b/site/public/v1/software/project-noah/index.json new file mode 100644 index 000000000000..e757fc32b7b0 --- /dev/null +++ b/site/public/v1/software/project-noah/index.json @@ -0,0 +1,19 @@ +{ + "id": 8014, + "slug": "project-noah", + "name": "Project Noah", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7249226" + ], + "created_at": "2026-07-10T10:12:42.491826", + "updated_at": "2026-07-10T10:12:42.491826", + "url": "/v1/software/project-noah" +} diff --git a/site/public/v1/software/project-outdoor-gyms/index.json b/site/public/v1/software/project-outdoor-gyms/index.json new file mode 100644 index 000000000000..62fcae0ac29f --- /dev/null +++ b/site/public/v1/software/project-outdoor-gyms/index.json @@ -0,0 +1,19 @@ +{ + "id": 8015, + "slug": "project-outdoor-gyms", + "name": "Project Outdoor Gyms", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107186275" + ], + "created_at": "2026-07-10T10:12:42.491826", + "updated_at": "2026-07-10T10:12:42.491826", + "url": "/v1/software/project-outdoor-gyms" +} diff --git a/site/public/v1/software/project-pad/index.json b/site/public/v1/software/project-pad/index.json new file mode 100644 index 000000000000..4bb77d19c819 --- /dev/null +++ b/site/public/v1/software/project-pad/index.json @@ -0,0 +1,19 @@ +{ + "id": 8016, + "slug": "project-pad", + "name": "Project Pad", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084498" + ], + "created_at": "2026-07-10T10:12:42.491826", + "updated_at": "2026-07-10T10:12:42.491826", + "url": "/v1/software/project-pad" +} diff --git a/site/public/v1/software/project-phobos/index.json b/site/public/v1/software/project-phobos/index.json new file mode 100644 index 000000000000..2524d43b5ff6 --- /dev/null +++ b/site/public/v1/software/project-phobos/index.json @@ -0,0 +1,26 @@ +{ + "id": 8017, + "slug": "project-phobos", + "name": "Project Phobos", + "release_date": null, + "developers": [ + "Oracle Corporation" + ], + "publishers": [], + "operating_systems": [ + "cross-platform" + ], + "programming_languages": [], + "licenses": [ + "Common Development and Distribution License version 1.0", + "GPL linking exception" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7249246" + ], + "created_at": "2026-07-10T10:12:42.492853", + "updated_at": "2026-07-10T10:12:42.492853", + "url": "/v1/software/project-phobos" +} diff --git a/site/public/v1/software/project-quincy/index.json b/site/public/v1/software/project-quincy/index.json new file mode 100644 index 000000000000..5ee8496f7e83 --- /dev/null +++ b/site/public/v1/software/project-quincy/index.json @@ -0,0 +1,19 @@ +{ + "id": 8018, + "slug": "project-quincy", + "name": "Project Quincy", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084499" + ], + "created_at": "2026-07-10T10:12:42.492853", + "updated_at": "2026-07-10T10:12:42.492853", + "url": "/v1/software/project-quincy" +} diff --git a/site/public/v1/software/project-workforce-management/index.json b/site/public/v1/software/project-workforce-management/index.json new file mode 100644 index 000000000000..a1acd176eaca --- /dev/null +++ b/site/public/v1/software/project-workforce-management/index.json @@ -0,0 +1,19 @@ +{ + "id": 8019, + "slug": "project-workforce-management", + "name": "project workforce management", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1240635" + ], + "created_at": "2026-07-10T10:12:42.492853", + "updated_at": "2026-07-10T10:12:42.492853", + "url": "/v1/software/project-workforce-management" +} diff --git a/site/public/v1/software/projection-wizard/index.json b/site/public/v1/software/projection-wizard/index.json new file mode 100644 index 000000000000..f41af60f6e17 --- /dev/null +++ b/site/public/v1/software/projection-wizard/index.json @@ -0,0 +1,21 @@ +{ + "id": 8020, + "slug": "projection-wizard", + "name": "Projection Wizard", + "release_date": null, + "developers": [ + "Bojan Šavrič" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121343513" + ], + "created_at": "2026-07-10T10:12:42.493831", + "updated_at": "2026-07-10T10:12:42.493831", + "url": "/v1/software/projection-wizard" +} diff --git a/site/public/v1/software/projectplace/index.json b/site/public/v1/software/projectplace/index.json new file mode 100644 index 000000000000..0a5cf719698f --- /dev/null +++ b/site/public/v1/software/projectplace/index.json @@ -0,0 +1,21 @@ +{ + "id": 8021, + "slug": "projectplace", + "name": "Projectplace", + "release_date": null, + "developers": [ + "Planview" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1166048" + ], + "created_at": "2026-07-10T10:12:42.493831", + "updated_at": "2026-07-10T10:12:42.493831", + "url": "/v1/software/projectplace" +} diff --git a/site/public/v1/software/projects/index.json b/site/public/v1/software/projects/index.json new file mode 100644 index 000000000000..be86de84526f --- /dev/null +++ b/site/public/v1/software/projects/index.json @@ -0,0 +1,19 @@ +{ + "id": 8022, + "slug": "projects", + "name": "Projects", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084500" + ], + "created_at": "2026-07-10T10:12:42.493831", + "updated_at": "2026-07-10T10:12:42.493831", + "url": "/v1/software/projects" +} diff --git a/site/public/v1/software/projektron-bcs/index.json b/site/public/v1/software/projektron-bcs/index.json new file mode 100644 index 000000000000..4b9457a847fc --- /dev/null +++ b/site/public/v1/software/projektron-bcs/index.json @@ -0,0 +1,25 @@ +{ + "id": 8023, + "slug": "projektron-bcs", + "name": "Projektron BCS", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "cross-platform" + ], + "programming_languages": [ + "Java" + ], + "licenses": [ + "end-user license agreement" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2112526" + ], + "created_at": "2026-07-10T10:12:42.494818", + "updated_at": "2026-07-10T10:12:42.494818", + "url": "/v1/software/projektron-bcs" +} diff --git a/site/public/v1/software/prokon/index.json b/site/public/v1/software/prokon/index.json new file mode 100644 index 000000000000..a352b721e177 --- /dev/null +++ b/site/public/v1/software/prokon/index.json @@ -0,0 +1,21 @@ +{ + "id": 8024, + "slug": "prokon", + "name": "Prokon", + "release_date": "1982-12-01", + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28956351" + ], + "created_at": "2026-07-10T10:12:42.494818", + "updated_at": "2026-07-10T10:12:42.494818", + "url": "/v1/software/prokon" +} diff --git a/site/public/v1/software/prolib/index.json b/site/public/v1/software/prolib/index.json new file mode 100644 index 000000000000..7e013e4c6cde --- /dev/null +++ b/site/public/v1/software/prolib/index.json @@ -0,0 +1,19 @@ +{ + "id": 8025, + "slug": "prolib", + "name": "Prolib", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11827703" + ], + "created_at": "2026-07-10T10:12:42.494818", + "updated_at": "2026-07-10T10:12:42.494818", + "url": "/v1/software/prolib" +} diff --git a/site/public/v1/software/prolith/index.json b/site/public/v1/software/prolith/index.json new file mode 100644 index 000000000000..8c178d1c7d6a --- /dev/null +++ b/site/public/v1/software/prolith/index.json @@ -0,0 +1,21 @@ +{ + "id": 8026, + "slug": "prolith", + "name": "PROLITH", + "release_date": null, + "developers": [ + "Chris Mack" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7120398" + ], + "created_at": "2026-07-10T10:12:42.494818", + "updated_at": "2026-07-10T10:12:42.494818", + "url": "/v1/software/prolith" +} diff --git a/site/public/v1/software/prolog/index.json b/site/public/v1/software/prolog/index.json new file mode 100644 index 000000000000..95174462b76e --- /dev/null +++ b/site/public/v1/software/prolog/index.json @@ -0,0 +1,19 @@ +{ + "id": 8027, + "slug": "prolog", + "name": "Prolog", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084501" + ], + "created_at": "2026-07-10T10:12:42.495836", + "updated_at": "2026-07-10T10:12:42.495836", + "url": "/v1/software/prolog" +} diff --git a/site/public/v1/software/promax/index.json b/site/public/v1/software/promax/index.json new file mode 100644 index 000000000000..e88b4945143c --- /dev/null +++ b/site/public/v1/software/promax/index.json @@ -0,0 +1,19 @@ +{ + "id": 8028, + "slug": "promax", + "name": "ProMax", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7246671" + ], + "created_at": "2026-07-10T10:12:42.495836", + "updated_at": "2026-07-10T10:12:42.495836", + "url": "/v1/software/promax" +} diff --git a/site/public/v1/software/prometea/index.json b/site/public/v1/software/prometea/index.json new file mode 100644 index 000000000000..335d97a093e4 --- /dev/null +++ b/site/public/v1/software/prometea/index.json @@ -0,0 +1,19 @@ +{ + "id": 8029, + "slug": "prometea", + "name": "Prometea", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q97703850" + ], + "created_at": "2026-07-10T10:12:42.496854", + "updated_at": "2026-07-10T10:12:42.496854", + "url": "/v1/software/prometea" +} diff --git a/site/public/v1/software/promoiq/index.json b/site/public/v1/software/promoiq/index.json new file mode 100644 index 000000000000..88d4b0ab5fa5 --- /dev/null +++ b/site/public/v1/software/promoiq/index.json @@ -0,0 +1,21 @@ +{ + "id": 8030, + "slug": "promoiq", + "name": "PromoIQ", + "release_date": null, + "developers": [ + "ExpandIQ" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138998780" + ], + "created_at": "2026-07-10T10:12:42.496854", + "updated_at": "2026-07-10T10:12:42.496854", + "url": "/v1/software/promoiq" +} diff --git a/site/public/v1/software/promotic-scada-system/index.json b/site/public/v1/software/promotic-scada-system/index.json new file mode 100644 index 000000000000..89f832aa3eb1 --- /dev/null +++ b/site/public/v1/software/promotic-scada-system/index.json @@ -0,0 +1,21 @@ +{ + "id": 8031, + "slug": "promotic-scada-system", + "name": "PROMOTIC SCADA system", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2819644" + ], + "created_at": "2026-07-10T10:12:42.496854", + "updated_at": "2026-07-10T10:12:42.496854", + "url": "/v1/software/promotic-scada-system" +} diff --git a/site/public/v1/software/pronote/index.json b/site/public/v1/software/pronote/index.json new file mode 100644 index 000000000000..93999da35b35 --- /dev/null +++ b/site/public/v1/software/pronote/index.json @@ -0,0 +1,19 @@ +{ + "id": 8032, + "slug": "pronote", + "name": "Pronote", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3407485" + ], + "created_at": "2026-07-10T10:12:42.496854", + "updated_at": "2026-07-10T10:12:42.496854", + "url": "/v1/software/pronote" +} diff --git a/site/public/v1/software/proot/index.json b/site/public/v1/software/proot/index.json new file mode 100644 index 000000000000..fe599af20433 --- /dev/null +++ b/site/public/v1/software/proot/index.json @@ -0,0 +1,19 @@ +{ + "id": 8033, + "slug": "proot", + "name": "PRoot", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62861000" + ], + "created_at": "2026-07-10T10:12:42.497851", + "updated_at": "2026-07-10T10:12:42.497851", + "url": "/v1/software/proot" +} diff --git a/site/public/v1/software/property-technologies/index.json b/site/public/v1/software/property-technologies/index.json new file mode 100644 index 000000000000..b67f7ab1415a --- /dev/null +++ b/site/public/v1/software/property-technologies/index.json @@ -0,0 +1,23 @@ +{ + "id": 8034, + "slug": "property-technologies", + "name": "Property Technologies", + "release_date": null, + "developers": [ + "The Pavement Group" + ], + "publishers": [], + "operating_systems": [ + "iOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139865674" + ], + "created_at": "2026-07-10T10:12:42.497851", + "updated_at": "2026-07-10T10:12:42.497851", + "url": "/v1/software/property-technologies" +} diff --git a/site/public/v1/software/propman-property-management-and-accounting-software/index.json b/site/public/v1/software/propman-property-management-and-accounting-software/index.json new file mode 100644 index 000000000000..000475c6dc19 --- /dev/null +++ b/site/public/v1/software/propman-property-management-and-accounting-software/index.json @@ -0,0 +1,21 @@ +{ + "id": 8035, + "slug": "propman-property-management-and-accounting-software", + "name": "Propman (property management and accounting software)", + "release_date": null, + "developers": [ + "Grosvenor Systems" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135033968" + ], + "created_at": "2026-07-10T10:12:42.497851", + "updated_at": "2026-07-10T10:12:42.497851", + "url": "/v1/software/propman-property-management-and-accounting-software" +} diff --git a/site/public/v1/software/proprofs-elearning-software/index.json b/site/public/v1/software/proprofs-elearning-software/index.json new file mode 100644 index 000000000000..59e766eb12f6 --- /dev/null +++ b/site/public/v1/software/proprofs-elearning-software/index.json @@ -0,0 +1,19 @@ +{ + "id": 8036, + "slug": "proprofs-elearning-software", + "name": "ProProfs eLearning Software", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084503" + ], + "created_at": "2026-07-10T10:12:42.498856", + "updated_at": "2026-07-10T10:12:42.498856", + "url": "/v1/software/proprofs-elearning-software" +} diff --git a/site/public/v1/software/prora/index.json b/site/public/v1/software/prora/index.json new file mode 100644 index 000000000000..7feeedaa4301 --- /dev/null +++ b/site/public/v1/software/prora/index.json @@ -0,0 +1,19 @@ +{ + "id": 8037, + "slug": "prora", + "name": "PRORA", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087699" + ], + "created_at": "2026-07-10T10:12:42.498856", + "updated_at": "2026-07-10T10:12:42.498856", + "url": "/v1/software/prora" +} diff --git a/site/public/v1/software/prorealtime/index.json b/site/public/v1/software/prorealtime/index.json new file mode 100644 index 000000000000..b3785a02746a --- /dev/null +++ b/site/public/v1/software/prorealtime/index.json @@ -0,0 +1,21 @@ +{ + "id": 8038, + "slug": "prorealtime", + "name": "ProRealTime", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Java" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16671188" + ], + "created_at": "2026-07-10T10:12:42.498856", + "updated_at": "2026-07-10T10:12:42.498856", + "url": "/v1/software/prorealtime" +} diff --git a/site/public/v1/software/proschool360/index.json b/site/public/v1/software/proschool360/index.json new file mode 100644 index 000000000000..6537b71fbde7 --- /dev/null +++ b/site/public/v1/software/proschool360/index.json @@ -0,0 +1,27 @@ +{ + "id": 8039, + "slug": "proschool360", + "name": "ProSchool360", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "web application" + ], + "programming_languages": [ + "PHP" + ], + "licenses": [ + "proprietary license" + ], + "genres": [ + "enterprise resource planning" + ], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140217409" + ], + "created_at": "2026-07-10T10:12:42.498856", + "updated_at": "2026-07-10T10:12:42.498856", + "url": "/v1/software/proschool360" +} diff --git a/site/public/v1/software/prose-virtual-muse/index.json b/site/public/v1/software/prose-virtual-muse/index.json new file mode 100644 index 000000000000..cc9e73bf695a --- /dev/null +++ b/site/public/v1/software/prose-virtual-muse/index.json @@ -0,0 +1,19 @@ +{ + "id": 8040, + "slug": "prose-virtual-muse", + "name": "Prose (Virtual Muse)", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087700" + ], + "created_at": "2026-07-10T10:12:42.499967", + "updated_at": "2026-07-10T10:12:42.499967", + "url": "/v1/software/prose-virtual-muse" +} diff --git a/site/public/v1/software/prosecutor-s-management-information-system/index.json b/site/public/v1/software/prosecutor-s-management-information-system/index.json new file mode 100644 index 000000000000..2a7ad7a4d354 --- /dev/null +++ b/site/public/v1/software/prosecutor-s-management-information-system/index.json @@ -0,0 +1,21 @@ +{ + "id": 8041, + "slug": "prosecutor-s-management-information-system", + "name": "Prosecutor's Management Information System", + "release_date": null, + "developers": [ + "Inslaw" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7250570" + ], + "created_at": "2026-07-10T10:12:42.499967", + "updated_at": "2026-07-10T10:12:42.499967", + "url": "/v1/software/prosecutor-s-management-information-system" +} diff --git a/site/public/v1/software/prospect/index.json b/site/public/v1/software/prospect/index.json new file mode 100644 index 000000000000..4922ff9e8e30 --- /dev/null +++ b/site/public/v1/software/prospect/index.json @@ -0,0 +1,19 @@ +{ + "id": 8042, + "slug": "prospect", + "name": "Prospect", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084504" + ], + "created_at": "2026-07-10T10:12:42.499967", + "updated_at": "2026-07-10T10:12:42.499967", + "url": "/v1/software/prospect" +} diff --git a/site/public/v1/software/prospects-course-exchange/index.json b/site/public/v1/software/prospects-course-exchange/index.json new file mode 100644 index 000000000000..3bb7184e27ee --- /dev/null +++ b/site/public/v1/software/prospects-course-exchange/index.json @@ -0,0 +1,19 @@ +{ + "id": 8043, + "slug": "prospects-course-exchange", + "name": "Prospects Course Exchange", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q55630609" + ], + "created_at": "2026-07-10T10:12:42.500940", + "updated_at": "2026-07-10T10:12:42.500940", + "url": "/v1/software/prospects-course-exchange" +} diff --git a/site/public/v1/software/prostat/index.json b/site/public/v1/software/prostat/index.json new file mode 100644 index 000000000000..70117617cdef --- /dev/null +++ b/site/public/v1/software/prostat/index.json @@ -0,0 +1,21 @@ +{ + "id": 8044, + "slug": "prostat", + "name": "ProStat", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Windows 7" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7246695" + ], + "created_at": "2026-07-10T10:12:42.500940", + "updated_at": "2026-07-10T10:12:42.500940", + "url": "/v1/software/prostat" +} diff --git a/site/public/v1/software/prosyst/index.json b/site/public/v1/software/prosyst/index.json new file mode 100644 index 000000000000..2a8942f15403 --- /dev/null +++ b/site/public/v1/software/prosyst/index.json @@ -0,0 +1,19 @@ +{ + "id": 8045, + "slug": "prosyst", + "name": "ProSyst", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7246698" + ], + "created_at": "2026-07-10T10:12:42.500940", + "updated_at": "2026-07-10T10:12:42.500940", + "url": "/v1/software/prosyst" +} diff --git a/site/public/v1/software/protege-gx/index.json b/site/public/v1/software/protege-gx/index.json new file mode 100644 index 000000000000..5089672505d7 --- /dev/null +++ b/site/public/v1/software/protege-gx/index.json @@ -0,0 +1,21 @@ +{ + "id": 8046, + "slug": "protege-gx", + "name": "Protege GX", + "release_date": null, + "developers": [ + "Integrated Control Technology" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134971364" + ], + "created_at": "2026-07-10T10:12:42.501945", + "updated_at": "2026-07-10T10:12:42.501945", + "url": "/v1/software/protege-gx" +} diff --git a/site/public/v1/software/protege-wx/index.json b/site/public/v1/software/protege-wx/index.json new file mode 100644 index 000000000000..2b06d189e583 --- /dev/null +++ b/site/public/v1/software/protege-wx/index.json @@ -0,0 +1,21 @@ +{ + "id": 8047, + "slug": "protege-wx", + "name": "Protege WX", + "release_date": null, + "developers": [ + "Integrated Control Technology" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134971365" + ], + "created_at": "2026-07-10T10:12:42.501945", + "updated_at": "2026-07-10T10:12:42.501945", + "url": "/v1/software/protege-wx" +} diff --git a/site/public/v1/software/protege-x/index.json b/site/public/v1/software/protege-x/index.json new file mode 100644 index 000000000000..a6725490d406 --- /dev/null +++ b/site/public/v1/software/protege-x/index.json @@ -0,0 +1,21 @@ +{ + "id": 8048, + "slug": "protege-x", + "name": "Protege X", + "release_date": null, + "developers": [ + "Integrated Control Technology" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134971366" + ], + "created_at": "2026-07-10T10:12:42.501945", + "updated_at": "2026-07-10T10:12:42.501945", + "url": "/v1/software/protege-x" +} diff --git a/site/public/v1/software/protein-local-optimization-program/index.json b/site/public/v1/software/protein-local-optimization-program/index.json new file mode 100644 index 000000000000..f495301fa2fd --- /dev/null +++ b/site/public/v1/software/protein-local-optimization-program/index.json @@ -0,0 +1,23 @@ +{ + "id": 8049, + "slug": "protein-local-optimization-program", + "name": "Protein Local Optimization Program", + "release_date": null, + "developers": [ + "University of California, San Francisco" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Fortran" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7251441" + ], + "created_at": "2026-07-10T10:12:42.502935", + "updated_at": "2026-07-10T10:12:42.502935", + "url": "/v1/software/protein-local-optimization-program" +} diff --git a/site/public/v1/software/protext/index.json b/site/public/v1/software/protext/index.json new file mode 100644 index 000000000000..93c0de232e91 --- /dev/null +++ b/site/public/v1/software/protext/index.json @@ -0,0 +1,21 @@ +{ + "id": 8050, + "slug": "protext", + "name": "proTeXt", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7246701" + ], + "created_at": "2026-07-10T10:12:42.502935", + "updated_at": "2026-07-10T10:12:42.502935", + "url": "/v1/software/protext" +} diff --git a/site/public/v1/software/protime-ai/index.json b/site/public/v1/software/protime-ai/index.json new file mode 100644 index 000000000000..43d505d84052 --- /dev/null +++ b/site/public/v1/software/protime-ai/index.json @@ -0,0 +1,23 @@ +{ + "id": 8051, + "slug": "protime-ai", + "name": "Protime AI", + "release_date": null, + "developers": [ + "blueSky Information GmbH" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "TypeScript" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138356829" + ], + "created_at": "2026-07-10T10:12:42.502935", + "updated_at": "2026-07-10T10:12:42.502935", + "url": "/v1/software/protime-ai" +} diff --git a/site/public/v1/software/proto-io/index.json b/site/public/v1/software/proto-io/index.json new file mode 100644 index 000000000000..d8d5211ee168 --- /dev/null +++ b/site/public/v1/software/proto-io/index.json @@ -0,0 +1,19 @@ +{ + "id": 8052, + "slug": "proto-io", + "name": "Proto.io", + "release_date": "2011-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7251877" + ], + "created_at": "2026-07-10T10:12:42.502935", + "updated_at": "2026-07-10T10:12:42.502935", + "url": "/v1/software/proto-io" +} diff --git a/site/public/v1/software/protobuffs/index.json b/site/public/v1/software/protobuffs/index.json new file mode 100644 index 000000000000..474fd60a4e10 --- /dev/null +++ b/site/public/v1/software/protobuffs/index.json @@ -0,0 +1,19 @@ +{ + "id": 8053, + "slug": "protobuffs", + "name": "protobuffs", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q88506208" + ], + "created_at": "2026-07-10T10:12:42.503934", + "updated_at": "2026-07-10T10:12:42.503934", + "url": "/v1/software/protobuffs" +} diff --git a/site/public/v1/software/protomap/index.json b/site/public/v1/software/protomap/index.json new file mode 100644 index 000000000000..41b470234acf --- /dev/null +++ b/site/public/v1/software/protomap/index.json @@ -0,0 +1,21 @@ +{ + "id": 8054, + "slug": "protomap", + "name": "Protomap", + "release_date": null, + "developers": [ + "Benjamin Cravatt" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7252036" + ], + "created_at": "2026-07-10T10:12:42.503934", + "updated_at": "2026-07-10T10:12:42.503934", + "url": "/v1/software/protomap" +} diff --git a/site/public/v1/software/proton-mail/index.json b/site/public/v1/software/proton-mail/index.json new file mode 100644 index 000000000000..7ea16a3b784c --- /dev/null +++ b/site/public/v1/software/proton-mail/index.json @@ -0,0 +1,30 @@ +{ + "id": 8055, + "slug": "proton-mail", + "name": "Proton Mail", + "release_date": null, + "developers": [ + "Proton" + ], + "publishers": [], + "operating_systems": [ + "iOS", + "macOS", + "Microsoft Windows" + ], + "programming_languages": [ + "PHP" + ], + "licenses": [ + "GNU General Public License, version 3.0", + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17355735" + ], + "created_at": "2026-07-10T10:12:42.503934", + "updated_at": "2026-07-10T10:12:42.503934", + "url": "/v1/software/proton-mail" +} diff --git a/site/public/v1/software/protopie/index.json b/site/public/v1/software/protopie/index.json new file mode 100644 index 000000000000..c707e9b569c3 --- /dev/null +++ b/site/public/v1/software/protopie/index.json @@ -0,0 +1,19 @@ +{ + "id": 8056, + "slug": "protopie", + "name": "ProtoPie", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q96400334" + ], + "created_at": "2026-07-10T10:12:42.504930", + "updated_at": "2026-07-10T10:12:42.504930", + "url": "/v1/software/protopie" +} diff --git a/site/public/v1/software/protos-ai/index.json b/site/public/v1/software/protos-ai/index.json new file mode 100644 index 000000000000..b4968027611d --- /dev/null +++ b/site/public/v1/software/protos-ai/index.json @@ -0,0 +1,21 @@ +{ + "id": 8057, + "slug": "protos-ai", + "name": "Protos AI", + "release_date": null, + "developers": [ + "Protos Labs" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139690506" + ], + "created_at": "2026-07-10T10:12:42.504930", + "updated_at": "2026-07-10T10:12:42.504930", + "url": "/v1/software/protos-ai" +} diff --git a/site/public/v1/software/protoshare/index.json b/site/public/v1/software/protoshare/index.json new file mode 100644 index 000000000000..77e4e37289e7 --- /dev/null +++ b/site/public/v1/software/protoshare/index.json @@ -0,0 +1,19 @@ +{ + "id": 8058, + "slug": "protoshare", + "name": "ProtoShare", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7251880" + ], + "created_at": "2026-07-10T10:12:42.504930", + "updated_at": "2026-07-10T10:12:42.504930", + "url": "/v1/software/protoshare" +} diff --git a/site/public/v1/software/protovis/index.json b/site/public/v1/software/protovis/index.json new file mode 100644 index 000000000000..c5f9074d33d5 --- /dev/null +++ b/site/public/v1/software/protovis/index.json @@ -0,0 +1,19 @@ +{ + "id": 8059, + "slug": "protovis", + "name": "Protovis", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16634747" + ], + "created_at": "2026-07-10T10:12:42.504930", + "updated_at": "2026-07-10T10:12:42.504930", + "url": "/v1/software/protovis" +} diff --git a/site/public/v1/software/protowall/index.json b/site/public/v1/software/protowall/index.json new file mode 100644 index 000000000000..e04885c1637a --- /dev/null +++ b/site/public/v1/software/protowall/index.json @@ -0,0 +1,19 @@ +{ + "id": 8060, + "slug": "protowall", + "name": "ProtoWall", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q497640" + ], + "created_at": "2026-07-10T10:12:42.505926", + "updated_at": "2026-07-10T10:12:42.505926", + "url": "/v1/software/protowall" +} diff --git a/site/public/v1/software/proudnet/index.json b/site/public/v1/software/proudnet/index.json new file mode 100644 index 000000000000..ed547ed9729e --- /dev/null +++ b/site/public/v1/software/proudnet/index.json @@ -0,0 +1,19 @@ +{ + "id": 8061, + "slug": "proudnet", + "name": "ProudNet", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q12622126" + ], + "created_at": "2026-07-10T10:12:42.505926", + "updated_at": "2026-07-10T10:12:42.505926", + "url": "/v1/software/proudnet" +} diff --git a/site/public/v1/software/prove-ai/index.json b/site/public/v1/software/prove-ai/index.json new file mode 100644 index 000000000000..2addbfef5edd --- /dev/null +++ b/site/public/v1/software/prove-ai/index.json @@ -0,0 +1,21 @@ +{ + "id": 8062, + "slug": "prove-ai", + "name": "Prove AI", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Apache Software License 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139069612" + ], + "created_at": "2026-07-10T10:12:42.506945", + "updated_at": "2026-07-10T10:12:42.506945", + "url": "/v1/software/prove-ai" +} diff --git a/site/public/v1/software/proverif/index.json b/site/public/v1/software/proverif/index.json new file mode 100644 index 000000000000..beeac08910ff --- /dev/null +++ b/site/public/v1/software/proverif/index.json @@ -0,0 +1,21 @@ +{ + "id": 8063, + "slug": "proverif", + "name": "ProVerif", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "OCaml" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7246703" + ], + "created_at": "2026-07-10T10:12:42.506945", + "updated_at": "2026-07-10T10:12:42.506945", + "url": "/v1/software/proverif" +} diff --git a/site/public/v1/software/proworkflow/index.json b/site/public/v1/software/proworkflow/index.json new file mode 100644 index 000000000000..f1af0f6a910a --- /dev/null +++ b/site/public/v1/software/proworkflow/index.json @@ -0,0 +1,19 @@ +{ + "id": 8064, + "slug": "proworkflow", + "name": "ProWorkflow", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22035462" + ], + "created_at": "2026-07-10T10:12:42.506945", + "updated_at": "2026-07-10T10:12:42.506945", + "url": "/v1/software/proworkflow" +} diff --git a/site/public/v1/software/proxsuite/index.json b/site/public/v1/software/proxsuite/index.json new file mode 100644 index 000000000000..4f8725d9a387 --- /dev/null +++ b/site/public/v1/software/proxsuite/index.json @@ -0,0 +1,23 @@ +{ + "id": 8065, + "slug": "proxsuite", + "name": "ProxSuite", + "release_date": null, + "developers": [ + "Justin Carpentier" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "2-clause BSD License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122829659" + ], + "created_at": "2026-07-10T10:12:42.507941", + "updated_at": "2026-07-10T10:12:42.507941", + "url": "/v1/software/proxsuite" +} diff --git a/site/public/v1/software/proxy-based-estimating/index.json b/site/public/v1/software/proxy-based-estimating/index.json new file mode 100644 index 000000000000..9ef284772a11 --- /dev/null +++ b/site/public/v1/software/proxy-based-estimating/index.json @@ -0,0 +1,19 @@ +{ + "id": 8066, + "slug": "proxy-based-estimating", + "name": "Proxy-based estimating", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7252884" + ], + "created_at": "2026-07-10T10:12:42.507941", + "updated_at": "2026-07-10T10:12:42.507941", + "url": "/v1/software/proxy-based-estimating" +} diff --git a/site/public/v1/software/proxychains-ng/index.json b/site/public/v1/software/proxychains-ng/index.json new file mode 100644 index 000000000000..39a774a6067c --- /dev/null +++ b/site/public/v1/software/proxychains-ng/index.json @@ -0,0 +1,21 @@ +{ + "id": 8067, + "slug": "proxychains-ng", + "name": "Proxychains-ng", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "GNU General Public License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q20012802" + ], + "created_at": "2026-07-10T10:12:42.507941", + "updated_at": "2026-07-10T10:12:42.507941", + "url": "/v1/software/proxychains-ng" +} diff --git a/site/public/v1/software/proxyknife/index.json b/site/public/v1/software/proxyknife/index.json new file mode 100644 index 000000000000..1f3876618c2f --- /dev/null +++ b/site/public/v1/software/proxyknife/index.json @@ -0,0 +1,19 @@ +{ + "id": 8068, + "slug": "proxyknife", + "name": "Proxyknife", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76186200" + ], + "created_at": "2026-07-10T10:12:42.508922", + "updated_at": "2026-07-10T10:12:42.508922", + "url": "/v1/software/proxyknife" +} diff --git a/site/public/v1/software/proxytunnel/index.json b/site/public/v1/software/proxytunnel/index.json new file mode 100644 index 000000000000..612621da7c1b --- /dev/null +++ b/site/public/v1/software/proxytunnel/index.json @@ -0,0 +1,19 @@ +{ + "id": 8069, + "slug": "proxytunnel", + "name": "Proxytunnel", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62859893" + ], + "created_at": "2026-07-10T10:12:42.508922", + "updated_at": "2026-07-10T10:12:42.508922", + "url": "/v1/software/proxytunnel" +} diff --git a/site/public/v1/software/pry/index.json b/site/public/v1/software/pry/index.json new file mode 100644 index 000000000000..83930c6eb542 --- /dev/null +++ b/site/public/v1/software/pry/index.json @@ -0,0 +1,23 @@ +{ + "id": 8070, + "slug": "pry", + "name": "Pry", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "cross-platform" + ], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7253227" + ], + "created_at": "2026-07-10T10:12:42.508922", + "updated_at": "2026-07-10T10:12:42.508922", + "url": "/v1/software/pry" +} diff --git a/site/public/v1/software/ps-power-and-sample-size/index.json b/site/public/v1/software/ps-power-and-sample-size/index.json new file mode 100644 index 000000000000..7eb5a0b5a117 --- /dev/null +++ b/site/public/v1/software/ps-power-and-sample-size/index.json @@ -0,0 +1,22 @@ +{ + "id": 8071, + "slug": "ps-power-and-sample-size", + "name": "PS Power and Sample Size", + "release_date": null, + "developers": [ + "Walton D. Plummer, Jr.", + "William D. Dupont" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17145523" + ], + "created_at": "2026-07-10T10:12:42.508922", + "updated_at": "2026-07-10T10:12:42.508922", + "url": "/v1/software/ps-power-and-sample-size" +} diff --git a/site/public/v1/software/pscad/index.json b/site/public/v1/software/pscad/index.json new file mode 100644 index 000000000000..d0247b47257e --- /dev/null +++ b/site/public/v1/software/pscad/index.json @@ -0,0 +1,19 @@ +{ + "id": 8072, + "slug": "pscad", + "name": "PSCAD", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11801967" + ], + "created_at": "2026-07-10T10:12:42.509927", + "updated_at": "2026-07-10T10:12:42.509927", + "url": "/v1/software/pscad" +} diff --git a/site/public/v1/software/pseudoconversational-transaction/index.json b/site/public/v1/software/pseudoconversational-transaction/index.json new file mode 100644 index 000000000000..fd84e43ccef8 --- /dev/null +++ b/site/public/v1/software/pseudoconversational-transaction/index.json @@ -0,0 +1,19 @@ +{ + "id": 8073, + "slug": "pseudoconversational-transaction", + "name": "pseudoconversational transaction", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7254691" + ], + "created_at": "2026-07-10T10:12:42.509927", + "updated_at": "2026-07-10T10:12:42.509927", + "url": "/v1/software/pseudoconversational-transaction" +} diff --git a/site/public/v1/software/pseven/index.json b/site/public/v1/software/pseven/index.json new file mode 100644 index 000000000000..93b05cc07fa0 --- /dev/null +++ b/site/public/v1/software/pseven/index.json @@ -0,0 +1,19 @@ +{ + "id": 8074, + "slug": "pseven", + "name": "pSeven", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22907986" + ], + "created_at": "2026-07-10T10:12:42.509927", + "updated_at": "2026-07-10T10:12:42.509927", + "url": "/v1/software/pseven" +} diff --git a/site/public/v1/software/psf-lab/index.json b/site/public/v1/software/psf-lab/index.json new file mode 100644 index 000000000000..b333203fa2fa --- /dev/null +++ b/site/public/v1/software/psf-lab/index.json @@ -0,0 +1,21 @@ +{ + "id": 8075, + "slug": "psf-lab", + "name": "PSF Lab", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7120632" + ], + "created_at": "2026-07-10T10:12:42.510991", + "updated_at": "2026-07-10T10:12:42.510991", + "url": "/v1/software/psf-lab" +} diff --git a/site/public/v1/software/pshs/index.json b/site/public/v1/software/pshs/index.json new file mode 100644 index 000000000000..e307f5544744 --- /dev/null +++ b/site/public/v1/software/pshs/index.json @@ -0,0 +1,19 @@ +{ + "id": 8076, + "slug": "pshs", + "name": "pshs", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975356" + ], + "created_at": "2026-07-10T10:12:42.510991", + "updated_at": "2026-07-10T10:12:42.510991", + "url": "/v1/software/pshs" +} diff --git a/site/public/v1/software/psi-plot/index.json b/site/public/v1/software/psi-plot/index.json new file mode 100644 index 000000000000..d08b65aae40f --- /dev/null +++ b/site/public/v1/software/psi-plot/index.json @@ -0,0 +1,19 @@ +{ + "id": 8077, + "slug": "psi-plot", + "name": "PSI-Plot", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7120655" + ], + "created_at": "2026-07-10T10:12:42.511932", + "updated_at": "2026-07-10T10:12:42.511932", + "url": "/v1/software/psi-plot" +} diff --git a/site/public/v1/software/psi-protein-classifier/index.json b/site/public/v1/software/psi-protein-classifier/index.json new file mode 100644 index 000000000000..0f1830aefe75 --- /dev/null +++ b/site/public/v1/software/psi-protein-classifier/index.json @@ -0,0 +1,19 @@ +{ + "id": 8078, + "slug": "psi-protein-classifier", + "name": "PSI Protein Classifier", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4046256" + ], + "created_at": "2026-07-10T10:12:42.511932", + "updated_at": "2026-07-10T10:12:42.511932", + "url": "/v1/software/psi-protein-classifier" +} diff --git a/site/public/v1/software/psi/index.json b/site/public/v1/software/psi/index.json new file mode 100644 index 000000000000..e92cdbaafa27 --- /dev/null +++ b/site/public/v1/software/psi/index.json @@ -0,0 +1,21 @@ +{ + "id": 8079, + "slug": "psi", + "name": "PSI", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "GNU Lesser General Public License, version 3.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7120661" + ], + "created_at": "2026-07-10T10:12:42.511932", + "updated_at": "2026-07-10T10:12:42.511932", + "url": "/v1/software/psi" +} diff --git a/site/public/v1/software/psim/index.json b/site/public/v1/software/psim/index.json new file mode 100644 index 000000000000..1032be1e993d --- /dev/null +++ b/site/public/v1/software/psim/index.json @@ -0,0 +1,19 @@ +{ + "id": 8080, + "slug": "psim", + "name": "PSIM", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11239152" + ], + "created_at": "2026-07-10T10:12:42.511932", + "updated_at": "2026-07-10T10:12:42.511932", + "url": "/v1/software/psim" +} diff --git a/site/public/v1/software/psipred/index.json b/site/public/v1/software/psipred/index.json new file mode 100644 index 000000000000..94c0e7aceac4 --- /dev/null +++ b/site/public/v1/software/psipred/index.json @@ -0,0 +1,21 @@ +{ + "id": 8081, + "slug": "psipred", + "name": "PSIPRED", + "release_date": null, + "developers": [ + "University College London" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18385802" + ], + "created_at": "2026-07-10T10:12:42.512936", + "updated_at": "2026-07-10T10:12:42.512936", + "url": "/v1/software/psipred" +} diff --git a/site/public/v1/software/psmisc/index.json b/site/public/v1/software/psmisc/index.json new file mode 100644 index 000000000000..6251efe3de35 --- /dev/null +++ b/site/public/v1/software/psmisc/index.json @@ -0,0 +1,23 @@ +{ + "id": 8082, + "slug": "psmisc", + "name": "psmisc", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Unix-like operating system" + ], + "programming_languages": [], + "licenses": [ + "GNU General Public License, version 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62859906" + ], + "created_at": "2026-07-10T10:12:42.512936", + "updated_at": "2026-07-10T10:12:42.512936", + "url": "/v1/software/psmisc" +} diff --git a/site/public/v1/software/psort/index.json b/site/public/v1/software/psort/index.json new file mode 100644 index 000000000000..b1779cae2aaf --- /dev/null +++ b/site/public/v1/software/psort/index.json @@ -0,0 +1,19 @@ +{ + "id": 8083, + "slug": "psort", + "name": "PSORT", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2044701" + ], + "created_at": "2026-07-10T10:12:42.512936", + "updated_at": "2026-07-10T10:12:42.512936", + "url": "/v1/software/psort" +} diff --git a/site/public/v1/software/psp-media-manager/index.json b/site/public/v1/software/psp-media-manager/index.json new file mode 100644 index 000000000000..bff585564cf9 --- /dev/null +++ b/site/public/v1/software/psp-media-manager/index.json @@ -0,0 +1,19 @@ +{ + "id": 8084, + "slug": "psp-media-manager", + "name": "PSP Media Manager", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1876040" + ], + "created_at": "2026-07-10T10:12:42.512936", + "updated_at": "2026-07-10T10:12:42.512936", + "url": "/v1/software/psp-media-manager" +} diff --git a/site/public/v1/software/pspice/index.json b/site/public/v1/software/pspice/index.json new file mode 100644 index 000000000000..3d8cd4d61efb --- /dev/null +++ b/site/public/v1/software/pspice/index.json @@ -0,0 +1,25 @@ +{ + "id": 8085, + "slug": "pspice", + "name": "PSpice", + "release_date": null, + "developers": [ + "Cadence Design Systems" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2665168" + ], + "created_at": "2026-07-10T10:12:42.512936", + "updated_at": "2026-07-10T10:12:42.512936", + "url": "/v1/software/pspice" +} diff --git a/site/public/v1/software/pssh/index.json b/site/public/v1/software/pssh/index.json new file mode 100644 index 000000000000..42a223b46803 --- /dev/null +++ b/site/public/v1/software/pssh/index.json @@ -0,0 +1,19 @@ +{ + "id": 8086, + "slug": "pssh", + "name": "pssh", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62859951" + ], + "created_at": "2026-07-10T10:12:42.514515", + "updated_at": "2026-07-10T10:12:42.514515", + "url": "/v1/software/pssh" +} diff --git a/site/public/v1/software/pstotext/index.json b/site/public/v1/software/pstotext/index.json new file mode 100644 index 000000000000..2e9b33f1e07f --- /dev/null +++ b/site/public/v1/software/pstotext/index.json @@ -0,0 +1,19 @@ +{ + "id": 8087, + "slug": "pstotext", + "name": "pstotext", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62859973" + ], + "created_at": "2026-07-10T10:12:42.514515", + "updated_at": "2026-07-10T10:12:42.514515", + "url": "/v1/software/pstotext" +} diff --git a/site/public/v1/software/psx/index.json b/site/public/v1/software/psx/index.json new file mode 100644 index 000000000000..ad7eb541a8e8 --- /dev/null +++ b/site/public/v1/software/psx/index.json @@ -0,0 +1,19 @@ +{ + "id": 8088, + "slug": "psx", + "name": "pSX", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2006540" + ], + "created_at": "2026-07-10T10:12:42.514515", + "updated_at": "2026-07-10T10:12:42.514515", + "url": "/v1/software/psx" +} diff --git a/site/public/v1/software/psyc/index.json b/site/public/v1/software/psyc/index.json new file mode 100644 index 000000000000..fa9f6f2b2701 --- /dev/null +++ b/site/public/v1/software/psyc/index.json @@ -0,0 +1,21 @@ +{ + "id": 8089, + "slug": "psyc", + "name": "psyc", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q96376124" + ], + "created_at": "2026-07-10T10:12:42.515597", + "updated_at": "2026-07-10T10:12:42.515597", + "url": "/v1/software/psyc" +} diff --git a/site/public/v1/software/psychedelia/index.json b/site/public/v1/software/psychedelia/index.json new file mode 100644 index 000000000000..0e7e892b8fb7 --- /dev/null +++ b/site/public/v1/software/psychedelia/index.json @@ -0,0 +1,23 @@ +{ + "id": 8090, + "slug": "psychedelia", + "name": "Psychedelia", + "release_date": null, + "developers": [ + "Jeff Minter" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "assembly language" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7256201" + ], + "created_at": "2026-07-10T10:12:42.515597", + "updated_at": "2026-07-10T10:12:42.515597", + "url": "/v1/software/psychedelia" +} diff --git a/site/public/v1/software/psychojs/index.json b/site/public/v1/software/psychojs/index.json new file mode 100644 index 000000000000..fc804bc3f466 --- /dev/null +++ b/site/public/v1/software/psychojs/index.json @@ -0,0 +1,21 @@ +{ + "id": 8091, + "slug": "psychojs", + "name": "PsychoJS", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113050341" + ], + "created_at": "2026-07-10T10:12:42.515597", + "updated_at": "2026-07-10T10:12:42.515597", + "url": "/v1/software/psychojs" +} diff --git a/site/public/v1/software/psychosynth/index.json b/site/public/v1/software/psychosynth/index.json new file mode 100644 index 000000000000..96a4e698fbdf --- /dev/null +++ b/site/public/v1/software/psychosynth/index.json @@ -0,0 +1,19 @@ +{ + "id": 8092, + "slug": "psychosynth", + "name": "Psychosynth", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76186222" + ], + "created_at": "2026-07-10T10:12:42.515597", + "updated_at": "2026-07-10T10:12:42.515597", + "url": "/v1/software/psychosynth" +} diff --git a/site/public/v1/software/psychtoolbox-for-matlab/index.json b/site/public/v1/software/psychtoolbox-for-matlab/index.json new file mode 100644 index 000000000000..d7edd8100ce1 --- /dev/null +++ b/site/public/v1/software/psychtoolbox-for-matlab/index.json @@ -0,0 +1,19 @@ +{ + "id": 8093, + "slug": "psychtoolbox-for-matlab", + "name": "Psychtoolbox for MATLAB", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18215965" + ], + "created_at": "2026-07-10T10:12:42.516642", + "updated_at": "2026-07-10T10:12:42.516642", + "url": "/v1/software/psychtoolbox-for-matlab" +} diff --git a/site/public/v1/software/psynth/index.json b/site/public/v1/software/psynth/index.json new file mode 100644 index 000000000000..8c4bf6697331 --- /dev/null +++ b/site/public/v1/software/psynth/index.json @@ -0,0 +1,19 @@ +{ + "id": 8094, + "slug": "psynth", + "name": "Psynth", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138492912" + ], + "created_at": "2026-07-10T10:12:42.516642", + "updated_at": "2026-07-10T10:12:42.516642", + "url": "/v1/software/psynth" +} diff --git a/site/public/v1/software/psytoolkit/index.json b/site/public/v1/software/psytoolkit/index.json new file mode 100644 index 000000000000..b0f4bdd948f8 --- /dev/null +++ b/site/public/v1/software/psytoolkit/index.json @@ -0,0 +1,19 @@ +{ + "id": 8095, + "slug": "psytoolkit", + "name": "PsyToolkit", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7256173" + ], + "created_at": "2026-07-10T10:12:42.517618", + "updated_at": "2026-07-10T10:12:42.517618", + "url": "/v1/software/psytoolkit" +} diff --git a/site/public/v1/software/ptk-forensics/index.json b/site/public/v1/software/ptk-forensics/index.json new file mode 100644 index 000000000000..ab8d28a97a80 --- /dev/null +++ b/site/public/v1/software/ptk-forensics/index.json @@ -0,0 +1,19 @@ +{ + "id": 8096, + "slug": "ptk-forensics", + "name": "PTK Forensics", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7120979" + ], + "created_at": "2026-07-10T10:12:42.517618", + "updated_at": "2026-07-10T10:12:42.517618", + "url": "/v1/software/ptk-forensics" +} diff --git a/site/public/v1/software/ptolemaic/index.json b/site/public/v1/software/ptolemaic/index.json new file mode 100644 index 000000000000..259036e850c4 --- /dev/null +++ b/site/public/v1/software/ptolemaic/index.json @@ -0,0 +1,19 @@ +{ + "id": 8097, + "slug": "ptolemaic", + "name": "Ptolemaic", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084505" + ], + "created_at": "2026-07-10T10:12:42.517618", + "updated_at": "2026-07-10T10:12:42.517618", + "url": "/v1/software/ptolemaic" +} diff --git a/site/public/v1/software/public-inbox/index.json b/site/public/v1/software/public-inbox/index.json new file mode 100644 index 000000000000..fe5f19bb469d --- /dev/null +++ b/site/public/v1/software/public-inbox/index.json @@ -0,0 +1,19 @@ +{ + "id": 8098, + "slug": "public-inbox", + "name": "public-inbox", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124309035" + ], + "created_at": "2026-07-10T10:12:42.518601", + "updated_at": "2026-07-10T10:12:42.518601", + "url": "/v1/software/public-inbox" +} diff --git a/site/public/v1/software/public-sector-credit-framework/index.json b/site/public/v1/software/public-sector-credit-framework/index.json new file mode 100644 index 000000000000..b3b86399c617 --- /dev/null +++ b/site/public/v1/software/public-sector-credit-framework/index.json @@ -0,0 +1,19 @@ +{ + "id": 8099, + "slug": "public-sector-credit-framework", + "name": "Public Sector Credit Framework", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7257586" + ], + "created_at": "2026-07-10T10:12:42.518601", + "updated_at": "2026-07-10T10:12:42.518601", + "url": "/v1/software/public-sector-credit-framework" +} diff --git a/site/public/v1/software/publii/index.json b/site/public/v1/software/publii/index.json new file mode 100644 index 000000000000..9e8186f7615f --- /dev/null +++ b/site/public/v1/software/publii/index.json @@ -0,0 +1,24 @@ +{ + "id": 8100, + "slug": "publii", + "name": "Publii", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "open-source software" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138816777" + ], + "created_at": "2026-07-10T10:12:42.518601", + "updated_at": "2026-07-10T10:12:42.518601", + "url": "/v1/software/publii" +} diff --git a/site/public/v1/software/publishing-skills/index.json b/site/public/v1/software/publishing-skills/index.json new file mode 100644 index 000000000000..981a9f62a745 --- /dev/null +++ b/site/public/v1/software/publishing-skills/index.json @@ -0,0 +1,23 @@ +{ + "id": 8101, + "slug": "publishing-skills", + "name": "publishing-skills", + "release_date": null, + "developers": [ + "AutomateLab" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139962066" + ], + "created_at": "2026-07-10T10:12:42.519587", + "updated_at": "2026-07-10T10:12:42.519587", + "url": "/v1/software/publishing-skills" +} diff --git a/site/public/v1/software/pubsoft/index.json b/site/public/v1/software/pubsoft/index.json new file mode 100644 index 000000000000..2846b51e9bab --- /dev/null +++ b/site/public/v1/software/pubsoft/index.json @@ -0,0 +1,19 @@ +{ + "id": 8102, + "slug": "pubsoft", + "name": "Pubsoft", + "release_date": "2012-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17146209" + ], + "created_at": "2026-07-10T10:12:42.519587", + "updated_at": "2026-07-10T10:12:42.519587", + "url": "/v1/software/pubsoft" +} diff --git a/site/public/v1/software/puff/index.json b/site/public/v1/software/puff/index.json new file mode 100644 index 000000000000..f5c06c9534b3 --- /dev/null +++ b/site/public/v1/software/puff/index.json @@ -0,0 +1,23 @@ +{ + "id": 8103, + "slug": "puff", + "name": "Puff", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q12844034" + ], + "created_at": "2026-07-10T10:12:42.519587", + "updated_at": "2026-07-10T10:12:42.519587", + "url": "/v1/software/puff" +} diff --git a/site/public/v1/software/pulpmotion/index.json b/site/public/v1/software/pulpmotion/index.json new file mode 100644 index 000000000000..5ef8dc610ea2 --- /dev/null +++ b/site/public/v1/software/pulpmotion/index.json @@ -0,0 +1,19 @@ +{ + "id": 8104, + "slug": "pulpmotion", + "name": "Pulpmotion", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1524465" + ], + "created_at": "2026-07-10T10:12:42.519587", + "updated_at": "2026-07-10T10:12:42.519587", + "url": "/v1/software/pulpmotion" +} diff --git a/site/public/v1/software/pulse-q140247536/index.json b/site/public/v1/software/pulse-q140247536/index.json new file mode 100644 index 000000000000..445433dafffb --- /dev/null +++ b/site/public/v1/software/pulse-q140247536/index.json @@ -0,0 +1,21 @@ +{ + "id": 8105, + "slug": "pulse-q140247536", + "name": "PULSE", + "release_date": null, + "developers": [ + "synetra GmbH" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140247536" + ], + "created_at": "2026-07-10T10:12:42.520604", + "updated_at": "2026-07-10T10:12:42.520604", + "url": "/v1/software/pulse-q140247536" +} diff --git a/site/public/v1/software/pulse/index.json b/site/public/v1/software/pulse/index.json new file mode 100644 index 000000000000..0ff7d703aefc --- /dev/null +++ b/site/public/v1/software/pulse/index.json @@ -0,0 +1,19 @@ +{ + "id": 8106, + "slug": "pulse", + "name": "PULSE", + "release_date": "2007-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7121086" + ], + "created_at": "2026-07-10T10:12:42.520604", + "updated_at": "2026-07-10T10:12:42.520604", + "url": "/v1/software/pulse" +} diff --git a/site/public/v1/software/pulseeffects/index.json b/site/public/v1/software/pulseeffects/index.json new file mode 100644 index 000000000000..79306f7ee5a2 --- /dev/null +++ b/site/public/v1/software/pulseeffects/index.json @@ -0,0 +1,21 @@ +{ + "id": 8107, + "slug": "pulseeffects", + "name": "PulseEffects", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "GNU General Public License, version 3.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q65081323" + ], + "created_at": "2026-07-10T10:12:42.520604", + "updated_at": "2026-07-10T10:12:42.520604", + "url": "/v1/software/pulseeffects" +} diff --git a/site/public/v1/software/pulsepoint/index.json b/site/public/v1/software/pulsepoint/index.json new file mode 100644 index 000000000000..2c2f27956ddf --- /dev/null +++ b/site/public/v1/software/pulsepoint/index.json @@ -0,0 +1,21 @@ +{ + "id": 8108, + "slug": "pulsepoint", + "name": "PulsePoint", + "release_date": "2011-01-01", + "developers": [ + "Workday, Inc." + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q19866527" + ], + "created_at": "2026-07-10T10:12:42.521621", + "updated_at": "2026-07-10T10:12:42.521621", + "url": "/v1/software/pulsepoint" +} diff --git a/site/public/v1/software/pulsonix/index.json b/site/public/v1/software/pulsonix/index.json new file mode 100644 index 000000000000..d5122a549362 --- /dev/null +++ b/site/public/v1/software/pulsonix/index.json @@ -0,0 +1,19 @@ +{ + "id": 8109, + "slug": "pulsonix", + "name": "Pulsonix", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17143949" + ], + "created_at": "2026-07-10T10:12:42.521621", + "updated_at": "2026-07-10T10:12:42.521621", + "url": "/v1/software/pulsonix" +} diff --git a/site/public/v1/software/puma-scan/index.json b/site/public/v1/software/puma-scan/index.json new file mode 100644 index 000000000000..ab5b1f44c337 --- /dev/null +++ b/site/public/v1/software/puma-scan/index.json @@ -0,0 +1,26 @@ +{ + "id": 8110, + "slug": "puma-scan", + "name": "Puma Scan", + "release_date": null, + "developers": [ + "Puma Security" + ], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "Mozilla Public License, version 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138795565" + ], + "created_at": "2026-07-10T10:12:42.521621", + "updated_at": "2026-07-10T10:12:42.521621", + "url": "/v1/software/puma-scan" +} diff --git a/site/public/v1/software/pumpic/index.json b/site/public/v1/software/pumpic/index.json new file mode 100644 index 000000000000..c80979d9bd9a --- /dev/null +++ b/site/public/v1/software/pumpic/index.json @@ -0,0 +1,23 @@ +{ + "id": 8111, + "slug": "pumpic", + "name": "Pumpic", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "iOS" + ], + "programming_languages": [], + "licenses": [ + "end-user license agreement" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q24966527" + ], + "created_at": "2026-07-10T10:12:42.521621", + "updated_at": "2026-07-10T10:12:42.521621", + "url": "/v1/software/pumpic" +} diff --git a/site/public/v1/software/pumplinx/index.json b/site/public/v1/software/pumplinx/index.json new file mode 100644 index 000000000000..f2ea870987aa --- /dev/null +++ b/site/public/v1/software/pumplinx/index.json @@ -0,0 +1,21 @@ +{ + "id": 8112, + "slug": "pumplinx", + "name": "Pumplinx", + "release_date": null, + "developers": [], + "publishers": [ + "Simerics" + ], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7259860" + ], + "created_at": "2026-07-10T10:12:42.522595", + "updated_at": "2026-07-10T10:12:42.522595", + "url": "/v1/software/pumplinx" +} diff --git a/site/public/v1/software/punchcad/index.json b/site/public/v1/software/punchcad/index.json new file mode 100644 index 000000000000..0f4d2f2c93db --- /dev/null +++ b/site/public/v1/software/punchcad/index.json @@ -0,0 +1,19 @@ +{ + "id": 8113, + "slug": "punchcad", + "name": "PunchCAD", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28450898" + ], + "created_at": "2026-07-10T10:12:42.522595", + "updated_at": "2026-07-10T10:12:42.522595", + "url": "/v1/software/punchcad" +} diff --git a/site/public/v1/software/punchscan/index.json b/site/public/v1/software/punchscan/index.json new file mode 100644 index 000000000000..9fb6c816aa94 --- /dev/null +++ b/site/public/v1/software/punchscan/index.json @@ -0,0 +1,21 @@ +{ + "id": 8114, + "slug": "punchscan", + "name": "Punchscan", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Java" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2118343" + ], + "created_at": "2026-07-10T10:12:42.523584", + "updated_at": "2026-07-10T10:12:42.523584", + "url": "/v1/software/punchscan" +} diff --git a/site/public/v1/software/pundit/index.json b/site/public/v1/software/pundit/index.json new file mode 100644 index 000000000000..5077df2e5231 --- /dev/null +++ b/site/public/v1/software/pundit/index.json @@ -0,0 +1,19 @@ +{ + "id": 8115, + "slug": "pundit", + "name": "Pundit", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084506" + ], + "created_at": "2026-07-10T10:12:42.523584", + "updated_at": "2026-07-10T10:12:42.523584", + "url": "/v1/software/pundit" +} diff --git a/site/public/v1/software/pungi/index.json b/site/public/v1/software/pungi/index.json new file mode 100644 index 000000000000..c70040e558bc --- /dev/null +++ b/site/public/v1/software/pungi/index.json @@ -0,0 +1,19 @@ +{ + "id": 8116, + "slug": "pungi", + "name": "Pungi", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7260167" + ], + "created_at": "2026-07-10T10:12:42.523584", + "updated_at": "2026-07-10T10:12:42.523584", + "url": "/v1/software/pungi" +} diff --git a/site/public/v1/software/punie/index.json b/site/public/v1/software/punie/index.json new file mode 100644 index 000000000000..670b64db8132 --- /dev/null +++ b/site/public/v1/software/punie/index.json @@ -0,0 +1,21 @@ +{ + "id": 8117, + "slug": "punie", + "name": "Punie", + "release_date": null, + "developers": [ + "Allison Randal" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7260203" + ], + "created_at": "2026-07-10T10:12:42.523584", + "updated_at": "2026-07-10T10:12:42.523584", + "url": "/v1/software/punie" +} diff --git a/site/public/v1/software/punjabi-morphological-analyzer/index.json b/site/public/v1/software/punjabi-morphological-analyzer/index.json new file mode 100644 index 000000000000..eb6a2c943a8c --- /dev/null +++ b/site/public/v1/software/punjabi-morphological-analyzer/index.json @@ -0,0 +1,19 @@ +{ + "id": 8118, + "slug": "punjabi-morphological-analyzer", + "name": "Punjabi Morphological Analyzer", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113557034" + ], + "created_at": "2026-07-10T10:12:42.524528", + "updated_at": "2026-07-10T10:12:42.524528", + "url": "/v1/software/punjabi-morphological-analyzer" +} diff --git a/site/public/v1/software/pupasuite/index.json b/site/public/v1/software/pupasuite/index.json new file mode 100644 index 000000000000..d7a091267fef --- /dev/null +++ b/site/public/v1/software/pupasuite/index.json @@ -0,0 +1,19 @@ +{ + "id": 8119, + "slug": "pupasuite", + "name": "PupaSuite", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7260650" + ], + "created_at": "2026-07-10T10:12:42.524528", + "updated_at": "2026-07-10T10:12:42.524528", + "url": "/v1/software/pupasuite" +} diff --git a/site/public/v1/software/purevpn/index.json b/site/public/v1/software/purevpn/index.json new file mode 100644 index 000000000000..3faaee737fe6 --- /dev/null +++ b/site/public/v1/software/purevpn/index.json @@ -0,0 +1,21 @@ +{ + "id": 8120, + "slug": "purevpn", + "name": "PureVPN", + "release_date": "2006-01-01", + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28957046" + ], + "created_at": "2026-07-10T10:12:42.525524", + "updated_at": "2026-07-10T10:12:42.525524", + "url": "/v1/software/purevpn" +} diff --git a/site/public/v1/software/purplera1n/index.json b/site/public/v1/software/purplera1n/index.json new file mode 100644 index 000000000000..4ddc92b3b666 --- /dev/null +++ b/site/public/v1/software/purplera1n/index.json @@ -0,0 +1,25 @@ +{ + "id": 8121, + "slug": "purplera1n", + "name": "purplera1n", + "release_date": null, + "developers": [ + "George Hotz" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7261492" + ], + "created_at": "2026-07-10T10:12:42.525524", + "updated_at": "2026-07-10T10:12:42.525524", + "url": "/v1/software/purplera1n" +} diff --git a/site/public/v1/software/puter/index.json b/site/public/v1/software/puter/index.json new file mode 100644 index 000000000000..c74571fb5f62 --- /dev/null +++ b/site/public/v1/software/puter/index.json @@ -0,0 +1,19 @@ +{ + "id": 8122, + "slug": "puter", + "name": "Puter", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126350902" + ], + "created_at": "2026-07-10T10:12:42.525524", + "updated_at": "2026-07-10T10:12:42.525524", + "url": "/v1/software/puter" +} diff --git a/site/public/v1/software/puttygen/index.json b/site/public/v1/software/puttygen/index.json new file mode 100644 index 000000000000..f5bc5025475b --- /dev/null +++ b/site/public/v1/software/puttygen/index.json @@ -0,0 +1,21 @@ +{ + "id": 8123, + "slug": "puttygen", + "name": "Puttygen", + "release_date": "2000-12-14", + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q91558838" + ], + "created_at": "2026-07-10T10:12:42.525524", + "updated_at": "2026-07-10T10:12:42.525524", + "url": "/v1/software/puttygen" +} diff --git a/site/public/v1/software/pvserver/index.json b/site/public/v1/software/pvserver/index.json new file mode 100644 index 000000000000..dbc2838bac5d --- /dev/null +++ b/site/public/v1/software/pvserver/index.json @@ -0,0 +1,19 @@ +{ + "id": 8124, + "slug": "pvserver", + "name": "Pvserver", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7262746" + ], + "created_at": "2026-07-10T10:12:42.526526", + "updated_at": "2026-07-10T10:12:42.526526", + "url": "/v1/software/pvserver" +} diff --git a/site/public/v1/software/pwclient/index.json b/site/public/v1/software/pwclient/index.json new file mode 100644 index 000000000000..fffc4ff8ac51 --- /dev/null +++ b/site/public/v1/software/pwclient/index.json @@ -0,0 +1,19 @@ +{ + "id": 8125, + "slug": "pwclient", + "name": "pwclient", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975358" + ], + "created_at": "2026-07-10T10:12:42.526526", + "updated_at": "2026-07-10T10:12:42.526526", + "url": "/v1/software/pwclient" +} diff --git a/site/public/v1/software/pwdump/index.json b/site/public/v1/software/pwdump/index.json new file mode 100644 index 000000000000..5a86df48d1f6 --- /dev/null +++ b/site/public/v1/software/pwdump/index.json @@ -0,0 +1,19 @@ +{ + "id": 8126, + "slug": "pwdump", + "name": "pwdump", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1951725" + ], + "created_at": "2026-07-10T10:12:42.527527", + "updated_at": "2026-07-10T10:12:42.527527", + "url": "/v1/software/pwdump" +} diff --git a/site/public/v1/software/pwman3/index.json b/site/public/v1/software/pwman3/index.json new file mode 100644 index 000000000000..dc1c966275d7 --- /dev/null +++ b/site/public/v1/software/pwman3/index.json @@ -0,0 +1,19 @@ +{ + "id": 8127, + "slug": "pwman3", + "name": "Pwman3", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62859979" + ], + "created_at": "2026-07-10T10:12:42.527527", + "updated_at": "2026-07-10T10:12:42.527527", + "url": "/v1/software/pwman3" +} diff --git a/site/public/v1/software/pwnagetool/index.json b/site/public/v1/software/pwnagetool/index.json new file mode 100644 index 000000000000..8a6cee3071f9 --- /dev/null +++ b/site/public/v1/software/pwnagetool/index.json @@ -0,0 +1,25 @@ +{ + "id": 8128, + "slug": "pwnagetool", + "name": "PwnageTool", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "macOS" + ], + "programming_languages": [ + "Objective-C" + ], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7262786" + ], + "created_at": "2026-07-10T10:12:42.527527", + "updated_at": "2026-07-10T10:12:42.527527", + "url": "/v1/software/pwnagetool" +} diff --git a/site/public/v1/software/pwnagotchi/index.json b/site/public/v1/software/pwnagotchi/index.json new file mode 100644 index 000000000000..df5c56950628 --- /dev/null +++ b/site/public/v1/software/pwnagotchi/index.json @@ -0,0 +1,19 @@ +{ + "id": 8129, + "slug": "pwnagotchi", + "name": "Pwnagotchi", + "release_date": "2019-09-19", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115063020" + ], + "created_at": "2026-07-10T10:12:42.527527", + "updated_at": "2026-07-10T10:12:42.527527", + "url": "/v1/software/pwnagotchi" +} diff --git a/site/public/v1/software/pwpaw/index.json b/site/public/v1/software/pwpaw/index.json new file mode 100644 index 000000000000..6b677bfe44b0 --- /dev/null +++ b/site/public/v1/software/pwpaw/index.json @@ -0,0 +1,19 @@ +{ + "id": 8130, + "slug": "pwpaw", + "name": "Pwpaw", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7262785" + ], + "created_at": "2026-07-10T10:12:42.528523", + "updated_at": "2026-07-10T10:12:42.528523", + "url": "/v1/software/pwpaw" +} diff --git a/site/public/v1/software/pxtone/index.json b/site/public/v1/software/pxtone/index.json new file mode 100644 index 000000000000..140be977b5df --- /dev/null +++ b/site/public/v1/software/pxtone/index.json @@ -0,0 +1,23 @@ +{ + "id": 8131, + "slug": "pxtone", + "name": "PxTone", + "release_date": null, + "developers": [ + "Daisuke Amaya" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7262790" + ], + "created_at": "2026-07-10T10:12:42.528523", + "updated_at": "2026-07-10T10:12:42.528523", + "url": "/v1/software/pxtone" +} diff --git a/site/public/v1/software/pxz/index.json b/site/public/v1/software/pxz/index.json new file mode 100644 index 000000000000..d9ba40c61491 --- /dev/null +++ b/site/public/v1/software/pxz/index.json @@ -0,0 +1,19 @@ +{ + "id": 8132, + "slug": "pxz", + "name": "pxz", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975359" + ], + "created_at": "2026-07-10T10:12:42.528523", + "updated_at": "2026-07-10T10:12:42.528523", + "url": "/v1/software/pxz" +} diff --git a/site/public/v1/software/pybugz/index.json b/site/public/v1/software/pybugz/index.json new file mode 100644 index 000000000000..98a16e3ceca3 --- /dev/null +++ b/site/public/v1/software/pybugz/index.json @@ -0,0 +1,19 @@ +{ + "id": 8133, + "slug": "pybugz", + "name": "pybugz", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975360" + ], + "created_at": "2026-07-10T10:12:42.529596", + "updated_at": "2026-07-10T10:12:42.529596", + "url": "/v1/software/pybugz" +} diff --git a/site/public/v1/software/pychart/index.json b/site/public/v1/software/pychart/index.json new file mode 100644 index 000000000000..883dc7072deb --- /dev/null +++ b/site/public/v1/software/pychart/index.json @@ -0,0 +1,19 @@ +{ + "id": 8134, + "slug": "pychart", + "name": "pychart", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065319" + ], + "created_at": "2026-07-10T10:12:42.529596", + "updated_at": "2026-07-10T10:12:42.529596", + "url": "/v1/software/pychart" +} diff --git a/site/public/v1/software/pychecker/index.json b/site/public/v1/software/pychecker/index.json new file mode 100644 index 000000000000..0b60c3c88963 --- /dev/null +++ b/site/public/v1/software/pychecker/index.json @@ -0,0 +1,19 @@ +{ + "id": 8135, + "slug": "pychecker", + "name": "PyChecker", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62860000" + ], + "created_at": "2026-07-10T10:12:42.529596", + "updated_at": "2026-07-10T10:12:42.529596", + "url": "/v1/software/pychecker" +} diff --git a/site/public/v1/software/pychroot/index.json b/site/public/v1/software/pychroot/index.json new file mode 100644 index 000000000000..ea7a2b08b26e --- /dev/null +++ b/site/public/v1/software/pychroot/index.json @@ -0,0 +1,21 @@ +{ + "id": 8136, + "slug": "pychroot", + "name": "pychroot", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "3-clause BSD License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975361" + ], + "created_at": "2026-07-10T10:12:42.530620", + "updated_at": "2026-07-10T10:12:42.530620", + "url": "/v1/software/pychroot" +} diff --git a/site/public/v1/software/pycollada/index.json b/site/public/v1/software/pycollada/index.json new file mode 100644 index 000000000000..1d5fbd98cb11 --- /dev/null +++ b/site/public/v1/software/pycollada/index.json @@ -0,0 +1,19 @@ +{ + "id": 8137, + "slug": "pycollada", + "name": "pycollada", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975362" + ], + "created_at": "2026-07-10T10:12:42.530620", + "updated_at": "2026-07-10T10:12:42.530620", + "url": "/v1/software/pycollada" +} diff --git a/site/public/v1/software/pyconfigure/index.json b/site/public/v1/software/pyconfigure/index.json new file mode 100644 index 000000000000..66827b888be9 --- /dev/null +++ b/site/public/v1/software/pyconfigure/index.json @@ -0,0 +1,19 @@ +{ + "id": 8138, + "slug": "pyconfigure", + "name": "Pyconfigure", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76186243" + ], + "created_at": "2026-07-10T10:12:42.530620", + "updated_at": "2026-07-10T10:12:42.530620", + "url": "/v1/software/pyconfigure" +} diff --git a/site/public/v1/software/pycoon/index.json b/site/public/v1/software/pycoon/index.json new file mode 100644 index 000000000000..d1666a6ffebf --- /dev/null +++ b/site/public/v1/software/pycoon/index.json @@ -0,0 +1,19 @@ +{ + "id": 8139, + "slug": "pycoon", + "name": "Pycoon", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084507" + ], + "created_at": "2026-07-10T10:12:42.531620", + "updated_at": "2026-07-10T10:12:42.531620", + "url": "/v1/software/pycoon" +} diff --git a/site/public/v1/software/pycuda/index.json b/site/public/v1/software/pycuda/index.json new file mode 100644 index 000000000000..680d97ace9e3 --- /dev/null +++ b/site/public/v1/software/pycuda/index.json @@ -0,0 +1,19 @@ +{ + "id": 8140, + "slug": "pycuda", + "name": "pycuda", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975363" + ], + "created_at": "2026-07-10T10:12:42.531620", + "updated_at": "2026-07-10T10:12:42.531620", + "url": "/v1/software/pycuda" +} diff --git a/site/public/v1/software/pydarts/index.json b/site/public/v1/software/pydarts/index.json new file mode 100644 index 000000000000..59ad5a05ba95 --- /dev/null +++ b/site/public/v1/software/pydarts/index.json @@ -0,0 +1,21 @@ +{ + "id": 8141, + "slug": "pydarts", + "name": "pyDarts", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "GNU General Public License, version 3.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q104245076" + ], + "created_at": "2026-07-10T10:12:42.531620", + "updated_at": "2026-07-10T10:12:42.531620", + "url": "/v1/software/pydarts" +} diff --git a/site/public/v1/software/pydecomp/index.json b/site/public/v1/software/pydecomp/index.json new file mode 100644 index 000000000000..e36506ee5a15 --- /dev/null +++ b/site/public/v1/software/pydecomp/index.json @@ -0,0 +1,19 @@ +{ + "id": 8142, + "slug": "pydecomp", + "name": "pydecomp", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975364" + ], + "created_at": "2026-07-10T10:12:42.532586", + "updated_at": "2026-07-10T10:12:42.532586", + "url": "/v1/software/pydecomp" +} diff --git a/site/public/v1/software/pydelta/index.json b/site/public/v1/software/pydelta/index.json new file mode 100644 index 000000000000..5c668ebb118d --- /dev/null +++ b/site/public/v1/software/pydelta/index.json @@ -0,0 +1,19 @@ +{ + "id": 8143, + "slug": "pydelta", + "name": "PyDelta", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087701" + ], + "created_at": "2026-07-10T10:12:42.532586", + "updated_at": "2026-07-10T10:12:42.532586", + "url": "/v1/software/pydelta" +} diff --git a/site/public/v1/software/pydf/index.json b/site/public/v1/software/pydf/index.json new file mode 100644 index 000000000000..cd351e0ecf68 --- /dev/null +++ b/site/public/v1/software/pydf/index.json @@ -0,0 +1,19 @@ +{ + "id": 8144, + "slug": "pydf", + "name": "pydf", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62860009" + ], + "created_at": "2026-07-10T10:12:42.532586", + "updated_at": "2026-07-10T10:12:42.532586", + "url": "/v1/software/pydf" +} diff --git a/site/public/v1/software/pyfa/index.json b/site/public/v1/software/pyfa/index.json new file mode 100644 index 000000000000..f82e6ac3aed5 --- /dev/null +++ b/site/public/v1/software/pyfa/index.json @@ -0,0 +1,19 @@ +{ + "id": 8145, + "slug": "pyfa", + "name": "pyfa", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975365" + ], + "created_at": "2026-07-10T10:12:42.533582", + "updated_at": "2026-07-10T10:12:42.533582", + "url": "/v1/software/pyfa" +} diff --git a/site/public/v1/software/pygmalion-s-code/index.json b/site/public/v1/software/pygmalion-s-code/index.json new file mode 100644 index 000000000000..01e945edd93b --- /dev/null +++ b/site/public/v1/software/pygmalion-s-code/index.json @@ -0,0 +1,19 @@ +{ + "id": 8146, + "slug": "pygmalion-s-code", + "name": "Pygmalion’s code", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087702" + ], + "created_at": "2026-07-10T10:12:42.533582", + "updated_at": "2026-07-10T10:12:42.533582", + "url": "/v1/software/pygmalion-s-code" +} diff --git a/site/public/v1/software/pygmt-a-python-interface-for-the-generic-mapping-tools/index.json b/site/public/v1/software/pygmt-a-python-interface-for-the-generic-mapping-tools/index.json new file mode 100644 index 000000000000..e0f9feac02fa --- /dev/null +++ b/site/public/v1/software/pygmt-a-python-interface-for-the-generic-mapping-tools/index.json @@ -0,0 +1,19 @@ +{ + "id": 8147, + "slug": "pygmt-a-python-interface-for-the-generic-mapping-tools", + "name": "PyGMT: A Python interface for the Generic Mapping Tools", + "release_date": "2025-03-31", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q133887972" + ], + "created_at": "2026-07-10T10:12:42.533582", + "updated_at": "2026-07-10T10:12:42.533582", + "url": "/v1/software/pygmt-a-python-interface-for-the-generic-mapping-tools" +} diff --git a/site/public/v1/software/pygpg/index.json b/site/public/v1/software/pygpg/index.json new file mode 100644 index 000000000000..69b0de5f5876 --- /dev/null +++ b/site/public/v1/software/pygpg/index.json @@ -0,0 +1,19 @@ +{ + "id": 8148, + "slug": "pygpg", + "name": "pyGPG", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975366" + ], + "created_at": "2026-07-10T10:12:42.534618", + "updated_at": "2026-07-10T10:12:42.534618", + "url": "/v1/software/pygpg" +} diff --git a/site/public/v1/software/pyh2o/index.json b/site/public/v1/software/pyh2o/index.json new file mode 100644 index 000000000000..6e5fe36138a3 --- /dev/null +++ b/site/public/v1/software/pyh2o/index.json @@ -0,0 +1,19 @@ +{ + "id": 8149, + "slug": "pyh2o", + "name": "pyh2o", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975367" + ], + "created_at": "2026-07-10T10:12:42.534618", + "updated_at": "2026-07-10T10:12:42.534618", + "url": "/v1/software/pyh2o" +} diff --git a/site/public/v1/software/pyktok/index.json b/site/public/v1/software/pyktok/index.json new file mode 100644 index 000000000000..cac9514aea6c --- /dev/null +++ b/site/public/v1/software/pyktok/index.json @@ -0,0 +1,23 @@ +{ + "id": 8150, + "slug": "pyktok", + "name": "pyktok", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Python" + ], + "licenses": [ + "3-clause BSD License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116702030" + ], + "created_at": "2026-07-10T10:12:42.534618", + "updated_at": "2026-07-10T10:12:42.534618", + "url": "/v1/software/pyktok" +} diff --git a/site/public/v1/software/pykwalify/index.json b/site/public/v1/software/pykwalify/index.json new file mode 100644 index 000000000000..c74305b9a694 --- /dev/null +++ b/site/public/v1/software/pykwalify/index.json @@ -0,0 +1,21 @@ +{ + "id": 8151, + "slug": "pykwalify", + "name": "pykwalify", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975368" + ], + "created_at": "2026-07-10T10:12:42.535595", + "updated_at": "2026-07-10T10:12:42.535595", + "url": "/v1/software/pykwalify" +} diff --git a/site/public/v1/software/pymacs/index.json b/site/public/v1/software/pymacs/index.json new file mode 100644 index 000000000000..29b694549f63 --- /dev/null +++ b/site/public/v1/software/pymacs/index.json @@ -0,0 +1,19 @@ +{ + "id": 8152, + "slug": "pymacs", + "name": "Pymacs", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62860033" + ], + "created_at": "2026-07-10T10:12:42.535595", + "updated_at": "2026-07-10T10:12:42.535595", + "url": "/v1/software/pymacs" +} diff --git a/site/public/v1/software/pymetamap/index.json b/site/public/v1/software/pymetamap/index.json new file mode 100644 index 000000000000..4c0debdc8bf9 --- /dev/null +++ b/site/public/v1/software/pymetamap/index.json @@ -0,0 +1,23 @@ +{ + "id": 8153, + "slug": "pymetamap", + "name": "pymetamap", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Python" + ], + "licenses": [ + "Apache Software License 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135641314" + ], + "created_at": "2026-07-10T10:12:42.535595", + "updated_at": "2026-07-10T10:12:42.535595", + "url": "/v1/software/pymetamap" +} diff --git a/site/public/v1/software/pymountboot/index.json b/site/public/v1/software/pymountboot/index.json new file mode 100644 index 000000000000..2fb8f5600aff --- /dev/null +++ b/site/public/v1/software/pymountboot/index.json @@ -0,0 +1,19 @@ +{ + "id": 8154, + "slug": "pymountboot", + "name": "pymountboot", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975369" + ], + "created_at": "2026-07-10T10:12:42.536613", + "updated_at": "2026-07-10T10:12:42.536613", + "url": "/v1/software/pymountboot" +} diff --git a/site/public/v1/software/pynag/index.json b/site/public/v1/software/pynag/index.json new file mode 100644 index 000000000000..9f07f570ff5b --- /dev/null +++ b/site/public/v1/software/pynag/index.json @@ -0,0 +1,19 @@ +{ + "id": 8155, + "slug": "pynag", + "name": "pynag", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62860041" + ], + "created_at": "2026-07-10T10:12:42.536613", + "updated_at": "2026-07-10T10:12:42.536613", + "url": "/v1/software/pynag" +} diff --git a/site/public/v1/software/pynguin/index.json b/site/public/v1/software/pynguin/index.json new file mode 100644 index 000000000000..aa8b1f36f1a1 --- /dev/null +++ b/site/public/v1/software/pynguin/index.json @@ -0,0 +1,21 @@ +{ + "id": 8156, + "slug": "pynguin", + "name": "pynguin", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127485546" + ], + "created_at": "2026-07-10T10:12:42.536613", + "updated_at": "2026-07-10T10:12:42.536613", + "url": "/v1/software/pynguin" +} diff --git a/site/public/v1/software/pyopencl/index.json b/site/public/v1/software/pyopencl/index.json new file mode 100644 index 000000000000..a3eb38fdc894 --- /dev/null +++ b/site/public/v1/software/pyopencl/index.json @@ -0,0 +1,19 @@ +{ + "id": 8157, + "slug": "pyopencl", + "name": "pyopencl", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975371" + ], + "created_at": "2026-07-10T10:12:42.537589", + "updated_at": "2026-07-10T10:12:42.537589", + "url": "/v1/software/pyopencl" +} diff --git a/site/public/v1/software/pyorcidator/index.json b/site/public/v1/software/pyorcidator/index.json new file mode 100644 index 000000000000..2e0006069159 --- /dev/null +++ b/site/public/v1/software/pyorcidator/index.json @@ -0,0 +1,19 @@ +{ + "id": 8158, + "slug": "pyorcidator", + "name": "pyorcidator", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113327576" + ], + "created_at": "2026-07-10T10:12:42.537589", + "updated_at": "2026-07-10T10:12:42.537589", + "url": "/v1/software/pyorcidator" +} diff --git a/site/public/v1/software/pypax/index.json b/site/public/v1/software/pypax/index.json new file mode 100644 index 000000000000..32cb8f9f451c --- /dev/null +++ b/site/public/v1/software/pypax/index.json @@ -0,0 +1,19 @@ +{ + "id": 8159, + "slug": "pypax", + "name": "pypax", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975372" + ], + "created_at": "2026-07-10T10:12:42.537589", + "updated_at": "2026-07-10T10:12:42.537589", + "url": "/v1/software/pypax" +} diff --git a/site/public/v1/software/pyrqlite/index.json b/site/public/v1/software/pyrqlite/index.json new file mode 100644 index 000000000000..4af7735f0961 --- /dev/null +++ b/site/public/v1/software/pyrqlite/index.json @@ -0,0 +1,21 @@ +{ + "id": 8160, + "slug": "pyrqlite", + "name": "pyrqlite", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975373" + ], + "created_at": "2026-07-10T10:12:42.538587", + "updated_at": "2026-07-10T10:12:42.538587", + "url": "/v1/software/pyrqlite" +} diff --git a/site/public/v1/software/pyrus/index.json b/site/public/v1/software/pyrus/index.json new file mode 100644 index 000000000000..c65e851aa4c9 --- /dev/null +++ b/site/public/v1/software/pyrus/index.json @@ -0,0 +1,19 @@ +{ + "id": 8161, + "slug": "pyrus", + "name": "Pyrus", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25203231" + ], + "created_at": "2026-07-10T10:12:42.538587", + "updated_at": "2026-07-10T10:12:42.538587", + "url": "/v1/software/pyrus" +} diff --git a/site/public/v1/software/pyscan/index.json b/site/public/v1/software/pyscan/index.json new file mode 100644 index 000000000000..a649f587dad2 --- /dev/null +++ b/site/public/v1/software/pyscan/index.json @@ -0,0 +1,23 @@ +{ + "id": 8162, + "slug": "pyscan", + "name": "Pyscan", + "release_date": null, + "developers": [ + "Aswin S" + ], + "publishers": [], + "operating_systems": [ + "cross-platform" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139649616" + ], + "created_at": "2026-07-10T10:12:42.538587", + "updated_at": "2026-07-10T10:12:42.538587", + "url": "/v1/software/pyscan" +} diff --git a/site/public/v1/software/pysmssend/index.json b/site/public/v1/software/pysmssend/index.json new file mode 100644 index 000000000000..c83755052256 --- /dev/null +++ b/site/public/v1/software/pysmssend/index.json @@ -0,0 +1,19 @@ +{ + "id": 8163, + "slug": "pysmssend", + "name": "pysmssend", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975374" + ], + "created_at": "2026-07-10T10:12:42.538587", + "updated_at": "2026-07-10T10:12:42.538587", + "url": "/v1/software/pysmssend" +} diff --git a/site/public/v1/software/pysolfc/index.json b/site/public/v1/software/pysolfc/index.json new file mode 100644 index 000000000000..81746100c061 --- /dev/null +++ b/site/public/v1/software/pysolfc/index.json @@ -0,0 +1,19 @@ +{ + "id": 8164, + "slug": "pysolfc", + "name": "PySolFC", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62860052" + ], + "created_at": "2026-07-10T10:12:42.539624", + "updated_at": "2026-07-10T10:12:42.539624", + "url": "/v1/software/pysolfc" +} diff --git a/site/public/v1/software/pysrt/index.json b/site/public/v1/software/pysrt/index.json new file mode 100644 index 000000000000..a74bb545f26e --- /dev/null +++ b/site/public/v1/software/pysrt/index.json @@ -0,0 +1,19 @@ +{ + "id": 8165, + "slug": "pysrt", + "name": "pysrt", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975375" + ], + "created_at": "2026-07-10T10:12:42.539624", + "updated_at": "2026-07-10T10:12:42.539624", + "url": "/v1/software/pysrt" +} diff --git a/site/public/v1/software/pyswisseph/index.json b/site/public/v1/software/pyswisseph/index.json new file mode 100644 index 000000000000..e37019ea9ce2 --- /dev/null +++ b/site/public/v1/software/pyswisseph/index.json @@ -0,0 +1,19 @@ +{ + "id": 8166, + "slug": "pyswisseph", + "name": "pyswisseph", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975376" + ], + "created_at": "2026-07-10T10:12:42.540586", + "updated_at": "2026-07-10T10:12:42.540586", + "url": "/v1/software/pyswisseph" +} diff --git a/site/public/v1/software/pythagoras-abm/index.json b/site/public/v1/software/pythagoras-abm/index.json new file mode 100644 index 000000000000..b6124f570a09 --- /dev/null +++ b/site/public/v1/software/pythagoras-abm/index.json @@ -0,0 +1,19 @@ +{ + "id": 8167, + "slug": "pythagoras-abm", + "name": "Pythagoras ABM", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7263839" + ], + "created_at": "2026-07-10T10:12:42.541530", + "updated_at": "2026-07-10T10:12:42.541530", + "url": "/v1/software/pythagoras-abm" +} diff --git a/site/public/v1/software/python-gammu/index.json b/site/public/v1/software/python-gammu/index.json new file mode 100644 index 000000000000..e200493127bd --- /dev/null +++ b/site/public/v1/software/python-gammu/index.json @@ -0,0 +1,19 @@ +{ + "id": 8168, + "slug": "python-gammu", + "name": "python-gammu", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62860059" + ], + "created_at": "2026-07-10T10:12:42.545522", + "updated_at": "2026-07-10T10:12:42.545522", + "url": "/v1/software/python-gammu" +} diff --git a/site/public/v1/software/python-igraph/index.json b/site/public/v1/software/python-igraph/index.json new file mode 100644 index 000000000000..fdddf8c28625 --- /dev/null +++ b/site/public/v1/software/python-igraph/index.json @@ -0,0 +1,21 @@ +{ + "id": 8169, + "slug": "python-igraph", + "name": "python-igraph", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "GNU General Public License, version 2.0 or later" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107386129" + ], + "created_at": "2026-07-10T10:12:42.549594", + "updated_at": "2026-07-10T10:12:42.549594", + "url": "/v1/software/python-igraph" +} diff --git a/site/public/v1/software/python-iptables/index.json b/site/public/v1/software/python-iptables/index.json new file mode 100644 index 000000000000..1c88ffcf86a6 --- /dev/null +++ b/site/public/v1/software/python-iptables/index.json @@ -0,0 +1,19 @@ +{ + "id": 8170, + "slug": "python-iptables", + "name": "python-iptables", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62860067" + ], + "created_at": "2026-07-10T10:12:42.555528", + "updated_at": "2026-07-10T10:12:42.555528", + "url": "/v1/software/python-iptables" +} diff --git a/site/public/v1/software/python-ldap/index.json b/site/public/v1/software/python-ldap/index.json new file mode 100644 index 000000000000..7ad4cb096bc1 --- /dev/null +++ b/site/public/v1/software/python-ldap/index.json @@ -0,0 +1,19 @@ +{ + "id": 8171, + "slug": "python-ldap", + "name": "python-ldap", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975381" + ], + "created_at": "2026-07-10T10:12:42.555528", + "updated_at": "2026-07-10T10:12:42.555528", + "url": "/v1/software/python-ldap" +} diff --git a/site/public/v1/software/python-lzo/index.json b/site/public/v1/software/python-lzo/index.json new file mode 100644 index 000000000000..c42cb95e8a9c --- /dev/null +++ b/site/public/v1/software/python-lzo/index.json @@ -0,0 +1,21 @@ +{ + "id": 8172, + "slug": "python-lzo", + "name": "Python-LZO", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "GNU General Public License, version 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62860073" + ], + "created_at": "2026-07-10T10:12:42.559631", + "updated_at": "2026-07-10T10:12:42.559631", + "url": "/v1/software/python-lzo" +} diff --git a/site/public/v1/software/python-mhash/index.json b/site/public/v1/software/python-mhash/index.json new file mode 100644 index 000000000000..b95717759ab7 --- /dev/null +++ b/site/public/v1/software/python-mhash/index.json @@ -0,0 +1,19 @@ +{ + "id": 8173, + "slug": "python-mhash", + "name": "python-mhash", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62861009" + ], + "created_at": "2026-07-10T10:12:42.561628", + "updated_at": "2026-07-10T10:12:42.561628", + "url": "/v1/software/python-mhash" +} diff --git a/site/public/v1/software/python-orocos-kdl/index.json b/site/public/v1/software/python-orocos-kdl/index.json new file mode 100644 index 000000000000..3de95b4656b3 --- /dev/null +++ b/site/public/v1/software/python-orocos-kdl/index.json @@ -0,0 +1,19 @@ +{ + "id": 8174, + "slug": "python-orocos-kdl", + "name": "python_orocos_kdl", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975378" + ], + "created_at": "2026-07-10T10:12:42.563643", + "updated_at": "2026-07-10T10:12:42.563643", + "url": "/v1/software/python-orocos-kdl" +} diff --git a/site/public/v1/software/python-ptrace/index.json b/site/public/v1/software/python-ptrace/index.json new file mode 100644 index 000000000000..2c60b20e7145 --- /dev/null +++ b/site/public/v1/software/python-ptrace/index.json @@ -0,0 +1,19 @@ +{ + "id": 8175, + "slug": "python-ptrace", + "name": "python-ptrace", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62860086" + ], + "created_at": "2026-07-10T10:12:42.565616", + "updated_at": "2026-07-10T10:12:42.565616", + "url": "/v1/software/python-ptrace" +} diff --git a/site/public/v1/software/python-stdnum/index.json b/site/public/v1/software/python-stdnum/index.json new file mode 100644 index 000000000000..a54847ba2d69 --- /dev/null +++ b/site/public/v1/software/python-stdnum/index.json @@ -0,0 +1,19 @@ +{ + "id": 8176, + "slug": "python-stdnum", + "name": "python-stdnum", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62860098" + ], + "created_at": "2026-07-10T10:12:42.567595", + "updated_at": "2026-07-10T10:12:42.567595", + "url": "/v1/software/python-stdnum" +} diff --git a/site/public/v1/software/python-tools-for-text-analysis/index.json b/site/public/v1/software/python-tools-for-text-analysis/index.json new file mode 100644 index 000000000000..70b25b7b83b9 --- /dev/null +++ b/site/public/v1/software/python-tools-for-text-analysis/index.json @@ -0,0 +1,19 @@ +{ + "id": 8177, + "slug": "python-tools-for-text-analysis", + "name": "Python Tools for Text-Analysis", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087703" + ], + "created_at": "2026-07-10T10:12:42.569604", + "updated_at": "2026-07-10T10:12:42.569604", + "url": "/v1/software/python-tools-for-text-analysis" +} diff --git a/site/public/v1/software/python-updater/index.json b/site/public/v1/software/python-updater/index.json new file mode 100644 index 000000000000..4e81047edbec --- /dev/null +++ b/site/public/v1/software/python-updater/index.json @@ -0,0 +1,19 @@ +{ + "id": 8178, + "slug": "python-updater", + "name": "python-updater", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975386" + ], + "created_at": "2026-07-10T10:12:42.570573", + "updated_at": "2026-07-10T10:12:42.570573", + "url": "/v1/software/python-updater" +} diff --git a/site/public/v1/software/python3-termcolor/index.json b/site/public/v1/software/python3-termcolor/index.json new file mode 100644 index 000000000000..8b38f6df6492 --- /dev/null +++ b/site/public/v1/software/python3-termcolor/index.json @@ -0,0 +1,19 @@ +{ + "id": 8179, + "slug": "python3-termcolor", + "name": "python3-termcolor", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106102073" + ], + "created_at": "2026-07-10T10:12:42.571610", + "updated_at": "2026-07-10T10:12:42.571610", + "url": "/v1/software/python3-termcolor" +} diff --git a/site/public/v1/software/pytools/index.json b/site/public/v1/software/pytools/index.json new file mode 100644 index 000000000000..dfc00bc29f50 --- /dev/null +++ b/site/public/v1/software/pytools/index.json @@ -0,0 +1,19 @@ +{ + "id": 8180, + "slug": "pytools", + "name": "pytools", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975387" + ], + "created_at": "2026-07-10T10:12:42.572598", + "updated_at": "2026-07-10T10:12:42.572598", + "url": "/v1/software/pytools" +} diff --git a/site/public/v1/software/pyutil/index.json b/site/public/v1/software/pyutil/index.json new file mode 100644 index 000000000000..98cdad1d2d53 --- /dev/null +++ b/site/public/v1/software/pyutil/index.json @@ -0,0 +1,19 @@ +{ + "id": 8181, + "slug": "pyutil", + "name": "pyutil", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63064981" + ], + "created_at": "2026-07-10T10:12:42.572598", + "updated_at": "2026-07-10T10:12:42.572598", + "url": "/v1/software/pyutil" +} diff --git a/site/public/v1/software/pyx/index.json b/site/public/v1/software/pyx/index.json new file mode 100644 index 000000000000..8a2ce23e0d01 --- /dev/null +++ b/site/public/v1/software/pyx/index.json @@ -0,0 +1,21 @@ +{ + "id": 8182, + "slug": "pyx", + "name": "PyX", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Python" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28457485" + ], + "created_at": "2026-07-10T10:12:42.574610", + "updated_at": "2026-07-10T10:12:42.574610", + "url": "/v1/software/pyx" +} diff --git a/site/public/v1/software/pyxab/index.json b/site/public/v1/software/pyxab/index.json new file mode 100644 index 000000000000..b18439c777c3 --- /dev/null +++ b/site/public/v1/software/pyxab/index.json @@ -0,0 +1,21 @@ +{ + "id": 8183, + "slug": "pyxab", + "name": "PyXAB", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127485805" + ], + "created_at": "2026-07-10T10:12:42.574610", + "updated_at": "2026-07-10T10:12:42.574610", + "url": "/v1/software/pyxab" +} diff --git a/site/public/v1/software/pyzor/index.json b/site/public/v1/software/pyzor/index.json new file mode 100644 index 000000000000..eaa249556366 --- /dev/null +++ b/site/public/v1/software/pyzor/index.json @@ -0,0 +1,19 @@ +{ + "id": 8184, + "slug": "pyzor", + "name": "Pyzor", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62860096" + ], + "created_at": "2026-07-10T10:12:42.575634", + "updated_at": "2026-07-10T10:12:42.575634", + "url": "/v1/software/pyzor" +} diff --git a/site/public/v1/software/pzflex/index.json b/site/public/v1/software/pzflex/index.json new file mode 100644 index 000000000000..d59d32434dab --- /dev/null +++ b/site/public/v1/software/pzflex/index.json @@ -0,0 +1,21 @@ +{ + "id": 8185, + "slug": "pzflex", + "name": "PZFlex", + "release_date": null, + "developers": [ + "Weidlinger Associates" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7121223" + ], + "created_at": "2026-07-10T10:12:42.575634", + "updated_at": "2026-07-10T10:12:42.575634", + "url": "/v1/software/pzflex" +} diff --git a/site/public/v1/software/q-systems/index.json b/site/public/v1/software/q-systems/index.json new file mode 100644 index 000000000000..d73e48a82cee --- /dev/null +++ b/site/public/v1/software/q-systems/index.json @@ -0,0 +1,19 @@ +{ + "id": 8187, + "slug": "q-systems", + "name": "Q-systems", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7265313" + ], + "created_at": "2026-07-10T10:12:42.576578", + "updated_at": "2026-07-10T10:12:42.576578", + "url": "/v1/software/q-systems" +} diff --git a/site/public/v1/software/q/index.json b/site/public/v1/software/q/index.json new file mode 100644 index 000000000000..d86aa481b38f --- /dev/null +++ b/site/public/v1/software/q/index.json @@ -0,0 +1,23 @@ +{ + "id": 8186, + "slug": "q", + "name": "Q", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Fortran" + ], + "licenses": [ + "GNU General Public License, version 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25345889" + ], + "created_at": "2026-07-10T10:12:42.576578", + "updated_at": "2026-07-10T10:12:42.576578", + "url": "/v1/software/q" +} diff --git a/site/public/v1/software/q4wine/index.json b/site/public/v1/software/q4wine/index.json new file mode 100644 index 000000000000..5fe06f343380 --- /dev/null +++ b/site/public/v1/software/q4wine/index.json @@ -0,0 +1,19 @@ +{ + "id": 8188, + "slug": "q4wine", + "name": "Q4Wine", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62860102" + ], + "created_at": "2026-07-10T10:12:42.577602", + "updated_at": "2026-07-10T10:12:42.577602", + "url": "/v1/software/q4wine" +} diff --git a/site/public/v1/software/qanda/index.json b/site/public/v1/software/qanda/index.json new file mode 100644 index 000000000000..21e3195bcbb7 --- /dev/null +++ b/site/public/v1/software/qanda/index.json @@ -0,0 +1,19 @@ +{ + "id": 8189, + "slug": "qanda", + "name": "QANDA", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q104908192" + ], + "created_at": "2026-07-10T10:12:42.578599", + "updated_at": "2026-07-10T10:12:42.578599", + "url": "/v1/software/qanda" +} diff --git a/site/public/v1/software/qda-miner/index.json b/site/public/v1/software/qda-miner/index.json new file mode 100644 index 000000000000..461feaabdadc --- /dev/null +++ b/site/public/v1/software/qda-miner/index.json @@ -0,0 +1,25 @@ +{ + "id": 8190, + "slug": "qda-miner", + "name": "QDA Miner", + "release_date": "2004-01-01", + "developers": [ + "Provalis Research" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3412300" + ], + "created_at": "2026-07-10T10:12:42.578599", + "updated_at": "2026-07-10T10:12:42.578599", + "url": "/v1/software/qda-miner" +} diff --git a/site/public/v1/software/qdacity/index.json b/site/public/v1/software/qdacity/index.json new file mode 100644 index 000000000000..7b326b22f0bd --- /dev/null +++ b/site/public/v1/software/qdacity/index.json @@ -0,0 +1,19 @@ +{ + "id": 8191, + "slug": "qdacity", + "name": "QDAcity", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136564652" + ], + "created_at": "2026-07-10T10:12:42.578599", + "updated_at": "2026-07-10T10:12:42.578599", + "url": "/v1/software/qdacity" +} diff --git a/site/public/v1/software/qdaminer/index.json b/site/public/v1/software/qdaminer/index.json new file mode 100644 index 000000000000..b8b54a9bcb27 --- /dev/null +++ b/site/public/v1/software/qdaminer/index.json @@ -0,0 +1,23 @@ +{ + "id": 8192, + "slug": "qdaminer", + "name": "QDAminer", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105229758" + ], + "created_at": "2026-07-10T10:12:42.579579", + "updated_at": "2026-07-10T10:12:42.579579", + "url": "/v1/software/qdaminer" +} diff --git a/site/public/v1/software/qdevicemonitor/index.json b/site/public/v1/software/qdevicemonitor/index.json new file mode 100644 index 000000000000..3f57526e61aa --- /dev/null +++ b/site/public/v1/software/qdevicemonitor/index.json @@ -0,0 +1,19 @@ +{ + "id": 8193, + "slug": "qdevicemonitor", + "name": "qdevicemonitor", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975389" + ], + "created_at": "2026-07-10T10:12:42.579579", + "updated_at": "2026-07-10T10:12:42.579579", + "url": "/v1/software/qdevicemonitor" +} diff --git a/site/public/v1/software/qdriverstation/index.json b/site/public/v1/software/qdriverstation/index.json new file mode 100644 index 000000000000..abb61a77bb57 --- /dev/null +++ b/site/public/v1/software/qdriverstation/index.json @@ -0,0 +1,21 @@ +{ + "id": 8194, + "slug": "qdriverstation", + "name": "QDriverStation", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25304935" + ], + "created_at": "2026-07-10T10:12:42.579579", + "updated_at": "2026-07-10T10:12:42.579579", + "url": "/v1/software/qdriverstation" +} diff --git a/site/public/v1/software/qeep/index.json b/site/public/v1/software/qeep/index.json new file mode 100644 index 000000000000..bdf0e72f3399 --- /dev/null +++ b/site/public/v1/software/qeep/index.json @@ -0,0 +1,21 @@ +{ + "id": 8195, + "slug": "qeep", + "name": "Qeep", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Java" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q930064" + ], + "created_at": "2026-07-10T10:12:42.580595", + "updated_at": "2026-07-10T10:12:42.580595", + "url": "/v1/software/qeep" +} diff --git a/site/public/v1/software/qemu-guest-agent/index.json b/site/public/v1/software/qemu-guest-agent/index.json new file mode 100644 index 000000000000..10d663fb8df1 --- /dev/null +++ b/site/public/v1/software/qemu-guest-agent/index.json @@ -0,0 +1,19 @@ +{ + "id": 8196, + "slug": "qemu-guest-agent", + "name": "qemu-guest-agent", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975391" + ], + "created_at": "2026-07-10T10:12:42.580595", + "updated_at": "2026-07-10T10:12:42.580595", + "url": "/v1/software/qemu-guest-agent" +} diff --git a/site/public/v1/software/qemu-launcher/index.json b/site/public/v1/software/qemu-launcher/index.json new file mode 100644 index 000000000000..e20f5e841907 --- /dev/null +++ b/site/public/v1/software/qemu-launcher/index.json @@ -0,0 +1,21 @@ +{ + "id": 8197, + "slug": "qemu-launcher", + "name": "Qemu Launcher", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "GNU General Public License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11832821" + ], + "created_at": "2026-07-10T10:12:42.580595", + "updated_at": "2026-07-10T10:12:42.580595", + "url": "/v1/software/qemu-launcher" +} diff --git a/site/public/v1/software/qgit/index.json b/site/public/v1/software/qgit/index.json new file mode 100644 index 000000000000..b0e226860a04 --- /dev/null +++ b/site/public/v1/software/qgit/index.json @@ -0,0 +1,19 @@ +{ + "id": 8198, + "slug": "qgit", + "name": "qgit", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60917764" + ], + "created_at": "2026-07-10T10:12:42.581579", + "updated_at": "2026-07-10T10:12:42.581579", + "url": "/v1/software/qgit" +} diff --git a/site/public/v1/software/qgo/index.json b/site/public/v1/software/qgo/index.json new file mode 100644 index 000000000000..20175e76c889 --- /dev/null +++ b/site/public/v1/software/qgo/index.json @@ -0,0 +1,19 @@ +{ + "id": 8199, + "slug": "qgo", + "name": "qGo", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10852213" + ], + "created_at": "2026-07-10T10:12:42.581579", + "updated_at": "2026-07-10T10:12:42.581579", + "url": "/v1/software/qgo" +} diff --git a/site/public/v1/software/qigga/index.json b/site/public/v1/software/qigga/index.json new file mode 100644 index 000000000000..ec04f0fbce11 --- /dev/null +++ b/site/public/v1/software/qigga/index.json @@ -0,0 +1,19 @@ +{ + "id": 8200, + "slug": "qigga", + "name": "Qigga", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084508" + ], + "created_at": "2026-07-10T10:12:42.581579", + "updated_at": "2026-07-10T10:12:42.581579", + "url": "/v1/software/qigga" +} diff --git a/site/public/v1/software/qiime-2/index.json b/site/public/v1/software/qiime-2/index.json new file mode 100644 index 000000000000..6fd4a532b3d5 --- /dev/null +++ b/site/public/v1/software/qiime-2/index.json @@ -0,0 +1,19 @@ +{ + "id": 8201, + "slug": "qiime-2", + "name": "QIIME 2", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113788774" + ], + "created_at": "2026-07-10T10:12:42.582638", + "updated_at": "2026-07-10T10:12:42.582638", + "url": "/v1/software/qiime-2" +} diff --git a/site/public/v1/software/qik/index.json b/site/public/v1/software/qik/index.json new file mode 100644 index 000000000000..5678dd7c9900 --- /dev/null +++ b/site/public/v1/software/qik/index.json @@ -0,0 +1,21 @@ +{ + "id": 8202, + "slug": "qik", + "name": "QIK", + "release_date": null, + "developers": [ + "Qantas Airways" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7265460" + ], + "created_at": "2026-07-10T10:12:42.582638", + "updated_at": "2026-07-10T10:12:42.582638", + "url": "/v1/software/qik" +} diff --git a/site/public/v1/software/qinsy/index.json b/site/public/v1/software/qinsy/index.json new file mode 100644 index 000000000000..f3823a94e01f --- /dev/null +++ b/site/public/v1/software/qinsy/index.json @@ -0,0 +1,19 @@ +{ + "id": 8203, + "slug": "qinsy", + "name": "QINSy", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115570805" + ], + "created_at": "2026-07-10T10:12:42.582638", + "updated_at": "2026-07-10T10:12:42.582638", + "url": "/v1/software/qinsy" +} diff --git a/site/public/v1/software/qippa/index.json b/site/public/v1/software/qippa/index.json new file mode 100644 index 000000000000..bdb52ede95da --- /dev/null +++ b/site/public/v1/software/qippa/index.json @@ -0,0 +1,23 @@ +{ + "id": 8204, + "slug": "qippa", + "name": "Qippa", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105748774" + ], + "created_at": "2026-07-10T10:12:42.583605", + "updated_at": "2026-07-10T10:12:42.583605", + "url": "/v1/software/qippa" +} diff --git a/site/public/v1/software/qizx/index.json b/site/public/v1/software/qizx/index.json new file mode 100644 index 000000000000..a28fe1a8d029 --- /dev/null +++ b/site/public/v1/software/qizx/index.json @@ -0,0 +1,21 @@ +{ + "id": 8205, + "slug": "qizx", + "name": "Qizx", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Java" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q21015576" + ], + "created_at": "2026-07-10T10:12:42.583605", + "updated_at": "2026-07-10T10:12:42.583605", + "url": "/v1/software/qizx" +} diff --git a/site/public/v1/software/qjot/index.json b/site/public/v1/software/qjot/index.json new file mode 100644 index 000000000000..b0319a6efe8f --- /dev/null +++ b/site/public/v1/software/qjot/index.json @@ -0,0 +1,21 @@ +{ + "id": 8206, + "slug": "qjot", + "name": "QJot", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2279176" + ], + "created_at": "2026-07-10T10:12:42.583605", + "updated_at": "2026-07-10T10:12:42.583605", + "url": "/v1/software/qjot" +} diff --git a/site/public/v1/software/qjoypad/index.json b/site/public/v1/software/qjoypad/index.json new file mode 100644 index 000000000000..6b9b9ce83196 --- /dev/null +++ b/site/public/v1/software/qjoypad/index.json @@ -0,0 +1,19 @@ +{ + "id": 8207, + "slug": "qjoypad", + "name": "QJoyPad", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62861021" + ], + "created_at": "2026-07-10T10:12:42.584586", + "updated_at": "2026-07-10T10:12:42.584586", + "url": "/v1/software/qjoypad" +} diff --git a/site/public/v1/software/qlab/index.json b/site/public/v1/software/qlab/index.json new file mode 100644 index 000000000000..0247d85b6a45 --- /dev/null +++ b/site/public/v1/software/qlab/index.json @@ -0,0 +1,21 @@ +{ + "id": 8208, + "slug": "qlab", + "name": "QLab", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [ + "multimedia" + ], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7265483" + ], + "created_at": "2026-07-10T10:12:42.584586", + "updated_at": "2026-07-10T10:12:42.584586", + "url": "/v1/software/qlab" +} diff --git a/site/public/v1/software/qlattice/index.json b/site/public/v1/software/qlattice/index.json new file mode 100644 index 000000000000..1fc4ef99ae6f --- /dev/null +++ b/site/public/v1/software/qlattice/index.json @@ -0,0 +1,19 @@ +{ + "id": 8209, + "slug": "qlattice", + "name": "QLattice", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113461614" + ], + "created_at": "2026-07-10T10:12:42.584586", + "updated_at": "2026-07-10T10:12:42.584586", + "url": "/v1/software/qlattice" +} diff --git a/site/public/v1/software/qlik-sense/index.json b/site/public/v1/software/qlik-sense/index.json new file mode 100644 index 000000000000..0a2b502de4c2 --- /dev/null +++ b/site/public/v1/software/qlik-sense/index.json @@ -0,0 +1,21 @@ +{ + "id": 8210, + "slug": "qlik-sense", + "name": "Qlik Sense", + "release_date": null, + "developers": [ + "Qlik" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q58194319" + ], + "created_at": "2026-07-10T10:12:42.585620", + "updated_at": "2026-07-10T10:12:42.585620", + "url": "/v1/software/qlik-sense" +} diff --git a/site/public/v1/software/qlipper/index.json b/site/public/v1/software/qlipper/index.json new file mode 100644 index 000000000000..1aece86f4ca7 --- /dev/null +++ b/site/public/v1/software/qlipper/index.json @@ -0,0 +1,21 @@ +{ + "id": 8211, + "slug": "qlipper", + "name": "Qlipper", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "GNU General Public License, version 2.0 or later" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62861030" + ], + "created_at": "2026-07-10T10:12:42.585620", + "updated_at": "2026-07-10T10:12:42.585620", + "url": "/v1/software/qlipper" +} diff --git a/site/public/v1/software/qlower/index.json b/site/public/v1/software/qlower/index.json new file mode 100644 index 000000000000..0557378a6a91 --- /dev/null +++ b/site/public/v1/software/qlower/index.json @@ -0,0 +1,19 @@ +{ + "id": 8212, + "slug": "qlower", + "name": "Qlower", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140230245" + ], + "created_at": "2026-07-10T10:12:42.585620", + "updated_at": "2026-07-10T10:12:42.585620", + "url": "/v1/software/qlower" +} diff --git a/site/public/v1/software/qmail-qsanity/index.json b/site/public/v1/software/qmail-qsanity/index.json new file mode 100644 index 000000000000..038f5b1d0170 --- /dev/null +++ b/site/public/v1/software/qmail-qsanity/index.json @@ -0,0 +1,19 @@ +{ + "id": 8213, + "slug": "qmail-qsanity", + "name": "qmail-qsanity", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60917042" + ], + "created_at": "2026-07-10T10:12:42.586525", + "updated_at": "2026-07-10T10:12:42.586525", + "url": "/v1/software/qmail-qsanity" +} diff --git a/site/public/v1/software/qmapshack/index.json b/site/public/v1/software/qmapshack/index.json new file mode 100644 index 000000000000..f452cece4188 --- /dev/null +++ b/site/public/v1/software/qmapshack/index.json @@ -0,0 +1,19 @@ +{ + "id": 8214, + "slug": "qmapshack", + "name": "qmapshack", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131574549" + ], + "created_at": "2026-07-10T10:12:42.586525", + "updated_at": "2026-07-10T10:12:42.586525", + "url": "/v1/software/qmapshack" +} diff --git a/site/public/v1/software/qmc-home/index.json b/site/public/v1/software/qmc-home/index.json new file mode 100644 index 000000000000..88a1e3688af6 --- /dev/null +++ b/site/public/v1/software/qmc-home/index.json @@ -0,0 +1,21 @@ +{ + "id": 8215, + "slug": "qmc-home", + "name": "QMC@Home", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "cross-platform" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q570192" + ], + "created_at": "2026-07-10T10:12:42.587525", + "updated_at": "2026-07-10T10:12:42.587525", + "url": "/v1/software/qmc-home" +} diff --git a/site/public/v1/software/qmcpack/index.json b/site/public/v1/software/qmcpack/index.json new file mode 100644 index 000000000000..fdd15e12a753 --- /dev/null +++ b/site/public/v1/software/qmcpack/index.json @@ -0,0 +1,19 @@ +{ + "id": 8216, + "slug": "qmcpack", + "name": "QMCPACK", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138542683" + ], + "created_at": "2026-07-10T10:12:42.587525", + "updated_at": "2026-07-10T10:12:42.587525", + "url": "/v1/software/qmcpack" +} diff --git a/site/public/v1/software/qmf/index.json b/site/public/v1/software/qmf/index.json new file mode 100644 index 000000000000..13c9d4c4c024 --- /dev/null +++ b/site/public/v1/software/qmf/index.json @@ -0,0 +1,19 @@ +{ + "id": 8217, + "slug": "qmf", + "name": "qmf", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975392" + ], + "created_at": "2026-07-10T10:12:42.587525", + "updated_at": "2026-07-10T10:12:42.587525", + "url": "/v1/software/qmf" +} diff --git a/site/public/v1/software/qmhandle/index.json b/site/public/v1/software/qmhandle/index.json new file mode 100644 index 000000000000..ae7a1cd6ca4d --- /dev/null +++ b/site/public/v1/software/qmhandle/index.json @@ -0,0 +1,19 @@ +{ + "id": 8218, + "slug": "qmhandle", + "name": "qmHandle", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62861035" + ], + "created_at": "2026-07-10T10:12:42.588528", + "updated_at": "2026-07-10T10:12:42.588528", + "url": "/v1/software/qmhandle" +} diff --git a/site/public/v1/software/qmodem/index.json b/site/public/v1/software/qmodem/index.json new file mode 100644 index 000000000000..8d4cbcdb8ee6 --- /dev/null +++ b/site/public/v1/software/qmodem/index.json @@ -0,0 +1,19 @@ +{ + "id": 8219, + "slug": "qmodem", + "name": "Qmodem", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7268006" + ], + "created_at": "2026-07-10T10:12:42.588528", + "updated_at": "2026-07-10T10:12:42.588528", + "url": "/v1/software/qmodem" +} diff --git a/site/public/v1/software/qmswrapper/index.json b/site/public/v1/software/qmswrapper/index.json new file mode 100644 index 000000000000..1eee655154ff --- /dev/null +++ b/site/public/v1/software/qmswrapper/index.json @@ -0,0 +1,19 @@ +{ + "id": 8220, + "slug": "qmswrapper", + "name": "qmsWrapper", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140355049" + ], + "created_at": "2026-07-10T10:12:42.588528", + "updated_at": "2026-07-10T10:12:42.588528", + "url": "/v1/software/qmswrapper" +} diff --git a/site/public/v1/software/qnotero/index.json b/site/public/v1/software/qnotero/index.json new file mode 100644 index 000000000000..03002986c45f --- /dev/null +++ b/site/public/v1/software/qnotero/index.json @@ -0,0 +1,19 @@ +{ + "id": 8221, + "slug": "qnotero", + "name": "Qnotero", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084509" + ], + "created_at": "2026-07-10T10:12:42.589527", + "updated_at": "2026-07-10T10:12:42.589527", + "url": "/v1/software/qnotero" +} diff --git a/site/public/v1/software/qodana/index.json b/site/public/v1/software/qodana/index.json new file mode 100644 index 000000000000..619bf3e7f26a --- /dev/null +++ b/site/public/v1/software/qodana/index.json @@ -0,0 +1,19 @@ +{ + "id": 8222, + "slug": "qodana", + "name": "Qodana", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123944190" + ], + "created_at": "2026-07-10T10:12:42.589527", + "updated_at": "2026-07-10T10:12:42.589527", + "url": "/v1/software/qodana" +} diff --git a/site/public/v1/software/qoezion/index.json b/site/public/v1/software/qoezion/index.json new file mode 100644 index 000000000000..468f3b3497d3 --- /dev/null +++ b/site/public/v1/software/qoezion/index.json @@ -0,0 +1,21 @@ +{ + "id": 8223, + "slug": "qoezion", + "name": "Qoezion", + "release_date": null, + "developers": [ + "Quick-Off" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140265547" + ], + "created_at": "2026-07-10T10:12:42.589527", + "updated_at": "2026-07-10T10:12:42.589527", + "url": "/v1/software/qoezion" +} diff --git a/site/public/v1/software/qomeet/index.json b/site/public/v1/software/qomeet/index.json new file mode 100644 index 000000000000..b00dbf904410 --- /dev/null +++ b/site/public/v1/software/qomeet/index.json @@ -0,0 +1,21 @@ +{ + "id": 8224, + "slug": "qomeet", + "name": "Qomeet", + "release_date": null, + "developers": [ + "Quick-Off" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140265558" + ], + "created_at": "2026-07-10T10:12:42.590527", + "updated_at": "2026-07-10T10:12:42.590527", + "url": "/v1/software/qomeet" +} diff --git a/site/public/v1/software/qpoases/index.json b/site/public/v1/software/qpoases/index.json new file mode 100644 index 000000000000..3d8686d0cb18 --- /dev/null +++ b/site/public/v1/software/qpoases/index.json @@ -0,0 +1,21 @@ +{ + "id": 8225, + "slug": "qpoases", + "name": "qpOASES", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "GNU Lesser General Public License, version 2.1" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134395611" + ], + "created_at": "2026-07-10T10:12:42.590527", + "updated_at": "2026-07-10T10:12:42.590527", + "url": "/v1/software/qpoases" +} diff --git a/site/public/v1/software/qpopper/index.json b/site/public/v1/software/qpopper/index.json new file mode 100644 index 000000000000..b02c150bce46 --- /dev/null +++ b/site/public/v1/software/qpopper/index.json @@ -0,0 +1,21 @@ +{ + "id": 8226, + "slug": "qpopper", + "name": "Qpopper", + "release_date": null, + "developers": [ + "Qualcomm" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1350082" + ], + "created_at": "2026-07-10T10:12:42.590527", + "updated_at": "2026-07-10T10:12:42.590527", + "url": "/v1/software/qpopper" +} diff --git a/site/public/v1/software/qq-com/index.json b/site/public/v1/software/qq-com/index.json new file mode 100644 index 000000000000..ff1852c034f4 --- /dev/null +++ b/site/public/v1/software/qq-com/index.json @@ -0,0 +1,23 @@ +{ + "id": 8227, + "slug": "qq-com", + "name": "QQ.com", + "release_date": null, + "developers": [ + "Tencent" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q15912288" + ], + "created_at": "2026-07-10T10:12:42.591527", + "updated_at": "2026-07-10T10:12:42.591527", + "url": "/v1/software/qq-com" +} diff --git a/site/public/v1/software/qq-music/index.json b/site/public/v1/software/qq-music/index.json new file mode 100644 index 000000000000..a994e273f6ce --- /dev/null +++ b/site/public/v1/software/qq-music/index.json @@ -0,0 +1,26 @@ +{ + "id": 8228, + "slug": "qq-music", + "name": "QQ Music", + "release_date": null, + "developers": [ + "Tencent" + ], + "publishers": [], + "operating_systems": [ + "iOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10852229" + ], + "created_at": "2026-07-10T10:12:42.591527", + "updated_at": "2026-07-10T10:12:42.591527", + "url": "/v1/software/qq-music" +} diff --git a/site/public/v1/software/qrisp/index.json b/site/public/v1/software/qrisp/index.json new file mode 100644 index 000000000000..7de9a13b10fb --- /dev/null +++ b/site/public/v1/software/qrisp/index.json @@ -0,0 +1,19 @@ +{ + "id": 8229, + "slug": "qrisp", + "name": "Qrisp", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137673291" + ], + "created_at": "2026-07-10T10:12:42.591527", + "updated_at": "2026-07-10T10:12:42.591527", + "url": "/v1/software/qrisp" +} diff --git a/site/public/v1/software/qrlynx/index.json b/site/public/v1/software/qrlynx/index.json new file mode 100644 index 000000000000..01f59b38168f --- /dev/null +++ b/site/public/v1/software/qrlynx/index.json @@ -0,0 +1,23 @@ +{ + "id": 8230, + "slug": "qrlynx", + "name": "QRLynx", + "release_date": null, + "developers": [ + "Jorbox LLC" + ], + "publishers": [], + "operating_systems": [ + "cross-platform" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138655399" + ], + "created_at": "2026-07-10T10:12:42.591527", + "updated_at": "2026-07-10T10:12:42.591527", + "url": "/v1/software/qrlynx" +} diff --git a/site/public/v1/software/qrosscore/index.json b/site/public/v1/software/qrosscore/index.json new file mode 100644 index 000000000000..e5e5e92e391a --- /dev/null +++ b/site/public/v1/software/qrosscore/index.json @@ -0,0 +1,19 @@ +{ + "id": 8231, + "slug": "qrosscore", + "name": "qrosscore", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975393" + ], + "created_at": "2026-07-10T10:12:42.592627", + "updated_at": "2026-07-10T10:12:42.592627", + "url": "/v1/software/qrosscore" +} diff --git a/site/public/v1/software/qrosspython/index.json b/site/public/v1/software/qrosspython/index.json new file mode 100644 index 000000000000..7b9812028047 --- /dev/null +++ b/site/public/v1/software/qrosspython/index.json @@ -0,0 +1,19 @@ +{ + "id": 8232, + "slug": "qrosspython", + "name": "qrosspython", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975394" + ], + "created_at": "2026-07-10T10:12:42.592627", + "updated_at": "2026-07-10T10:12:42.592627", + "url": "/v1/software/qrosspython" +} diff --git a/site/public/v1/software/qsplat/index.json b/site/public/v1/software/qsplat/index.json new file mode 100644 index 000000000000..825ff672a487 --- /dev/null +++ b/site/public/v1/software/qsplat/index.json @@ -0,0 +1,21 @@ +{ + "id": 8233, + "slug": "qsplat", + "name": "QSplat", + "release_date": null, + "developers": [ + "Stanford University" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60478971" + ], + "created_at": "2026-07-10T10:12:42.592627", + "updated_at": "2026-07-10T10:12:42.592627", + "url": "/v1/software/qsplat" +} diff --git a/site/public/v1/software/qstack/index.json b/site/public/v1/software/qstack/index.json new file mode 100644 index 000000000000..b8f3cf834bec --- /dev/null +++ b/site/public/v1/software/qstack/index.json @@ -0,0 +1,19 @@ +{ + "id": 8234, + "slug": "qstack", + "name": "Qstack", + "release_date": "2015-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28451118" + ], + "created_at": "2026-07-10T10:12:42.593604", + "updated_at": "2026-07-10T10:12:42.593604", + "url": "/v1/software/qstack" +} diff --git a/site/public/v1/software/qt-gstreamer/index.json b/site/public/v1/software/qt-gstreamer/index.json new file mode 100644 index 000000000000..0a9284b8ce44 --- /dev/null +++ b/site/public/v1/software/qt-gstreamer/index.json @@ -0,0 +1,19 @@ +{ + "id": 8235, + "slug": "qt-gstreamer", + "name": "qt-gstreamer", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975399" + ], + "created_at": "2026-07-10T10:12:42.593604", + "updated_at": "2026-07-10T10:12:42.593604", + "url": "/v1/software/qt-gstreamer" +} diff --git a/site/public/v1/software/qtads/index.json b/site/public/v1/software/qtads/index.json new file mode 100644 index 000000000000..bf22b6c153c9 --- /dev/null +++ b/site/public/v1/software/qtads/index.json @@ -0,0 +1,19 @@ +{ + "id": 8236, + "slug": "qtads", + "name": "QTads", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62861200" + ], + "created_at": "2026-07-10T10:12:42.593604", + "updated_at": "2026-07-10T10:12:42.593604", + "url": "/v1/software/qtads" +} diff --git a/site/public/v1/software/qtbitcointrader/index.json b/site/public/v1/software/qtbitcointrader/index.json new file mode 100644 index 000000000000..0bb3cd4e11b9 --- /dev/null +++ b/site/public/v1/software/qtbitcointrader/index.json @@ -0,0 +1,19 @@ +{ + "id": 8237, + "slug": "qtbitcointrader", + "name": "QtBitcoinTrader", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975395" + ], + "created_at": "2026-07-10T10:12:42.594601", + "updated_at": "2026-07-10T10:12:42.594601", + "url": "/v1/software/qtbitcointrader" +} diff --git a/site/public/v1/software/qtcurve/index.json b/site/public/v1/software/qtcurve/index.json new file mode 100644 index 000000000000..d46f7c4aac4a --- /dev/null +++ b/site/public/v1/software/qtcurve/index.json @@ -0,0 +1,19 @@ +{ + "id": 8238, + "slug": "qtcurve", + "name": "qtcurve", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975396" + ], + "created_at": "2026-07-10T10:12:42.594601", + "updated_at": "2026-07-10T10:12:42.594601", + "url": "/v1/software/qtcurve" +} diff --git a/site/public/v1/software/qtgui/index.json b/site/public/v1/software/qtgui/index.json new file mode 100644 index 000000000000..74b365519c2f --- /dev/null +++ b/site/public/v1/software/qtgui/index.json @@ -0,0 +1,19 @@ +{ + "id": 8239, + "slug": "qtgui", + "name": "qtgui", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065085" + ], + "created_at": "2026-07-10T10:12:42.595618", + "updated_at": "2026-07-10T10:12:42.595618", + "url": "/v1/software/qtgui" +} diff --git a/site/public/v1/software/qtopengl/index.json b/site/public/v1/software/qtopengl/index.json new file mode 100644 index 000000000000..8050974e5004 --- /dev/null +++ b/site/public/v1/software/qtopengl/index.json @@ -0,0 +1,19 @@ +{ + "id": 8240, + "slug": "qtopengl", + "name": "qtopengl", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60864656" + ], + "created_at": "2026-07-10T10:12:42.595618", + "updated_at": "2026-07-10T10:12:42.595618", + "url": "/v1/software/qtopengl" +} diff --git a/site/public/v1/software/qtrax/index.json b/site/public/v1/software/qtrax/index.json new file mode 100644 index 000000000000..c3608f6a6914 --- /dev/null +++ b/site/public/v1/software/qtrax/index.json @@ -0,0 +1,19 @@ +{ + "id": 8241, + "slug": "qtrax", + "name": "Qtrax", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2542757" + ], + "created_at": "2026-07-10T10:12:42.595618", + "updated_at": "2026-07-10T10:12:42.595618", + "url": "/v1/software/qtrax" +} diff --git a/site/public/v1/software/qtserialbus/index.json b/site/public/v1/software/qtserialbus/index.json new file mode 100644 index 000000000000..689e8847edd6 --- /dev/null +++ b/site/public/v1/software/qtserialbus/index.json @@ -0,0 +1,19 @@ +{ + "id": 8242, + "slug": "qtserialbus", + "name": "qtserialbus", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63064779" + ], + "created_at": "2026-07-10T10:12:42.595618", + "updated_at": "2026-07-10T10:12:42.595618", + "url": "/v1/software/qtserialbus" +} diff --git a/site/public/v1/software/qtss-publisher/index.json b/site/public/v1/software/qtss-publisher/index.json new file mode 100644 index 000000000000..0b30ba2fc321 --- /dev/null +++ b/site/public/v1/software/qtss-publisher/index.json @@ -0,0 +1,23 @@ +{ + "id": 8243, + "slug": "qtss-publisher", + "name": "QTSS Publisher", + "release_date": null, + "developers": [ + "Apple Inc." + ], + "publishers": [], + "operating_systems": [ + "macOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7265588" + ], + "created_at": "2026-07-10T10:12:42.596595", + "updated_at": "2026-07-10T10:12:42.596595", + "url": "/v1/software/qtss-publisher" +} diff --git a/site/public/v1/software/quad-chat/index.json b/site/public/v1/software/quad-chat/index.json new file mode 100644 index 000000000000..c69f4fed1a08 --- /dev/null +++ b/site/public/v1/software/quad-chat/index.json @@ -0,0 +1,19 @@ +{ + "id": 8244, + "slug": "quad-chat", + "name": "Quad Chat", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140428506" + ], + "created_at": "2026-07-10T10:12:42.596595", + "updated_at": "2026-07-10T10:12:42.596595", + "url": "/v1/software/quad-chat" +} diff --git a/site/public/v1/software/quadriga-audio-archiving-solution/index.json b/site/public/v1/software/quadriga-audio-archiving-solution/index.json new file mode 100644 index 000000000000..4a400b7d2b61 --- /dev/null +++ b/site/public/v1/software/quadriga-audio-archiving-solution/index.json @@ -0,0 +1,19 @@ +{ + "id": 8245, + "slug": "quadriga-audio-archiving-solution", + "name": "Quadriga Audio-Archiving Solution", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2121904" + ], + "created_at": "2026-07-10T10:12:42.596595", + "updated_at": "2026-07-10T10:12:42.596595", + "url": "/v1/software/quadriga-audio-archiving-solution" +} diff --git a/site/public/v1/software/quadrigram/index.json b/site/public/v1/software/quadrigram/index.json new file mode 100644 index 000000000000..414d08bd1993 --- /dev/null +++ b/site/public/v1/software/quadrigram/index.json @@ -0,0 +1,19 @@ +{ + "id": 8246, + "slug": "quadrigram", + "name": "Quadrigram", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084510" + ], + "created_at": "2026-07-10T10:12:42.597628", + "updated_at": "2026-07-10T10:12:42.597628", + "url": "/v1/software/quadrigram" +} diff --git a/site/public/v1/software/qualifiers/index.json b/site/public/v1/software/qualifiers/index.json new file mode 100644 index 000000000000..cd1685d7c8d9 --- /dev/null +++ b/site/public/v1/software/qualifiers/index.json @@ -0,0 +1,19 @@ +{ + "id": 8247, + "slug": "qualifiers", + "name": "Qualifiers", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105229759" + ], + "created_at": "2026-07-10T10:12:42.597628", + "updated_at": "2026-07-10T10:12:42.597628", + "url": "/v1/software/qualifiers" +} diff --git a/site/public/v1/software/qualintel-os/index.json b/site/public/v1/software/qualintel-os/index.json new file mode 100644 index 000000000000..5df0c9fc74aa --- /dev/null +++ b/site/public/v1/software/qualintel-os/index.json @@ -0,0 +1,19 @@ +{ + "id": 8248, + "slug": "qualintel-os", + "name": "QualIntel OS", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140050626" + ], + "created_at": "2026-07-10T10:12:42.597628", + "updated_at": "2026-07-10T10:12:42.598595", + "url": "/v1/software/qualintel-os" +} diff --git a/site/public/v1/software/quality-assurance-software/index.json b/site/public/v1/software/quality-assurance-software/index.json new file mode 100644 index 000000000000..bb862de344bd --- /dev/null +++ b/site/public/v1/software/quality-assurance-software/index.json @@ -0,0 +1,19 @@ +{ + "id": 8249, + "slug": "quality-assurance-software", + "name": "Quality Assurance Software", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135526947" + ], + "created_at": "2026-07-10T10:12:42.598595", + "updated_at": "2026-07-10T10:12:42.598595", + "url": "/v1/software/quality-assurance-software" +} diff --git a/site/public/v1/software/quality-management-software/index.json b/site/public/v1/software/quality-management-software/index.json new file mode 100644 index 000000000000..156e42c733b7 --- /dev/null +++ b/site/public/v1/software/quality-management-software/index.json @@ -0,0 +1,19 @@ +{ + "id": 8250, + "slug": "quality-management-software", + "name": "quality management software", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130643790" + ], + "created_at": "2026-07-10T10:12:42.598595", + "updated_at": "2026-07-10T10:12:42.598595", + "url": "/v1/software/quality-management-software" +} diff --git a/site/public/v1/software/qualrus/index.json b/site/public/v1/software/qualrus/index.json new file mode 100644 index 000000000000..f206608e95ff --- /dev/null +++ b/site/public/v1/software/qualrus/index.json @@ -0,0 +1,23 @@ +{ + "id": 8251, + "slug": "qualrus", + "name": "Qualrus", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105229761" + ], + "created_at": "2026-07-10T10:12:42.598595", + "updated_at": "2026-07-10T10:12:42.598595", + "url": "/v1/software/qualrus" +} diff --git a/site/public/v1/software/quantum-moves/index.json b/site/public/v1/software/quantum-moves/index.json new file mode 100644 index 000000000000..d4246b389939 --- /dev/null +++ b/site/public/v1/software/quantum-moves/index.json @@ -0,0 +1,19 @@ +{ + "id": 8252, + "slug": "quantum-moves", + "name": "Quantum Moves", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16254894" + ], + "created_at": "2026-07-10T10:12:42.599602", + "updated_at": "2026-07-10T10:12:42.599602", + "url": "/v1/software/quantum-moves" +} diff --git a/site/public/v1/software/quark-publishing-platform-nextgen/index.json b/site/public/v1/software/quark-publishing-platform-nextgen/index.json new file mode 100644 index 000000000000..6ca316de5acf --- /dev/null +++ b/site/public/v1/software/quark-publishing-platform-nextgen/index.json @@ -0,0 +1,19 @@ +{ + "id": 8253, + "slug": "quark-publishing-platform-nextgen", + "name": "Quark Publishing Platform NextGen", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130535755" + ], + "created_at": "2026-07-10T10:12:42.599602", + "updated_at": "2026-07-10T10:12:42.599602", + "url": "/v1/software/quark-publishing-platform-nextgen" +} diff --git a/site/public/v1/software/quark-publishing-system/index.json b/site/public/v1/software/quark-publishing-system/index.json new file mode 100644 index 000000000000..adc6dcd7d880 --- /dev/null +++ b/site/public/v1/software/quark-publishing-system/index.json @@ -0,0 +1,19 @@ +{ + "id": 8254, + "slug": "quark-publishing-system", + "name": "Quark Publishing System", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2122317" + ], + "created_at": "2026-07-10T10:12:42.599602", + "updated_at": "2026-07-10T10:12:42.599602", + "url": "/v1/software/quark-publishing-system" +} diff --git a/site/public/v1/software/quarkimmedia/index.json b/site/public/v1/software/quarkimmedia/index.json new file mode 100644 index 000000000000..32c927d4f27c --- /dev/null +++ b/site/public/v1/software/quarkimmedia/index.json @@ -0,0 +1,21 @@ +{ + "id": 8255, + "slug": "quarkimmedia", + "name": "QuarkImmedia", + "release_date": null, + "developers": [ + "Quark, Inc." + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2122305" + ], + "created_at": "2026-07-10T10:12:42.600670", + "updated_at": "2026-07-10T10:12:42.600670", + "url": "/v1/software/quarkimmedia" +} diff --git a/site/public/v1/software/quarkus/index.json b/site/public/v1/software/quarkus/index.json new file mode 100644 index 000000000000..7212c97d8fbb --- /dev/null +++ b/site/public/v1/software/quarkus/index.json @@ -0,0 +1,25 @@ +{ + "id": 8256, + "slug": "quarkus", + "name": "Quarkus", + "release_date": null, + "developers": [ + "Red Hat" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Java" + ], + "licenses": [ + "Apache Software License 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q98139844" + ], + "created_at": "2026-07-10T10:12:42.600670", + "updated_at": "2026-07-10T10:12:42.600670", + "url": "/v1/software/quarkus" +} diff --git a/site/public/v1/software/quarkxpress/index.json b/site/public/v1/software/quarkxpress/index.json new file mode 100644 index 000000000000..520f963fa10b --- /dev/null +++ b/site/public/v1/software/quarkxpress/index.json @@ -0,0 +1,26 @@ +{ + "id": 8257, + "slug": "quarkxpress", + "name": "QuarkXPress", + "release_date": null, + "developers": [ + "Quark, Inc." + ], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q678036" + ], + "created_at": "2026-07-10T10:12:42.600670", + "updated_at": "2026-07-10T10:12:42.600670", + "url": "/v1/software/quarkxpress" +} diff --git a/site/public/v1/software/quarto/index.json b/site/public/v1/software/quarto/index.json new file mode 100644 index 000000000000..e1d5e8d9f6e8 --- /dev/null +++ b/site/public/v1/software/quarto/index.json @@ -0,0 +1,29 @@ +{ + "id": 8258, + "slug": "quarto", + "name": "Quarto", + "release_date": null, + "developers": [ + "Posit PBC", + "Joseph J. Allaire", + "Christophe Dervieux" + ], + "publishers": [], + "operating_systems": [ + "cross-platform" + ], + "programming_languages": [ + "TypeScript" + ], + "licenses": [ + "GNU General Public License, version 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117559664" + ], + "created_at": "2026-07-10T10:12:42.600670", + "updated_at": "2026-07-10T10:12:42.600670", + "url": "/v1/software/quarto" +} diff --git a/site/public/v1/software/quartz-compositor/index.json b/site/public/v1/software/quartz-compositor/index.json new file mode 100644 index 000000000000..b40dacbc956b --- /dev/null +++ b/site/public/v1/software/quartz-compositor/index.json @@ -0,0 +1,19 @@ +{ + "id": 8259, + "slug": "quartz-compositor", + "name": "Quartz Compositor", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1591372" + ], + "created_at": "2026-07-10T10:12:42.601614", + "updated_at": "2026-07-10T10:12:42.601614", + "url": "/v1/software/quartz-compositor" +} diff --git a/site/public/v1/software/quartz/index.json b/site/public/v1/software/quartz/index.json new file mode 100644 index 000000000000..e8a594748b1a --- /dev/null +++ b/site/public/v1/software/quartz/index.json @@ -0,0 +1,23 @@ +{ + "id": 8260, + "slug": "quartz", + "name": "Quartz", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Java" + ], + "licenses": [ + "Apache Software License 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2122405" + ], + "created_at": "2026-07-10T10:12:42.601614", + "updated_at": "2026-07-10T10:12:42.601614", + "url": "/v1/software/quartz" +} diff --git a/site/public/v1/software/quast/index.json b/site/public/v1/software/quast/index.json new file mode 100644 index 000000000000..139636b24898 --- /dev/null +++ b/site/public/v1/software/quast/index.json @@ -0,0 +1,21 @@ +{ + "id": 8261, + "slug": "quast", + "name": "QUAST", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "GNU General Public License, version 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113089905" + ], + "created_at": "2026-07-10T10:12:42.601614", + "updated_at": "2026-07-10T10:12:42.601614", + "url": "/v1/software/quast" +} diff --git a/site/public/v1/software/quattro-pro-11/index.json b/site/public/v1/software/quattro-pro-11/index.json new file mode 100644 index 000000000000..a9e085111982 --- /dev/null +++ b/site/public/v1/software/quattro-pro-11/index.json @@ -0,0 +1,19 @@ +{ + "id": 8262, + "slug": "quattro-pro-11", + "name": "Quattro Pro 11", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q64835061" + ], + "created_at": "2026-07-10T10:12:42.602691", + "updated_at": "2026-07-10T10:12:42.602691", + "url": "/v1/software/quattro-pro-11" +} diff --git a/site/public/v1/software/quenc/index.json b/site/public/v1/software/quenc/index.json new file mode 100644 index 000000000000..dada7f0811a3 --- /dev/null +++ b/site/public/v1/software/quenc/index.json @@ -0,0 +1,19 @@ +{ + "id": 8263, + "slug": "quenc", + "name": "QuEnc", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6094051" + ], + "created_at": "2026-07-10T10:12:42.602691", + "updated_at": "2026-07-10T10:12:42.602691", + "url": "/v1/software/quenc" +} diff --git a/site/public/v1/software/query-36/index.json b/site/public/v1/software/query-36/index.json new file mode 100644 index 000000000000..385b65045f3e --- /dev/null +++ b/site/public/v1/software/query-36/index.json @@ -0,0 +1,21 @@ +{ + "id": 8264, + "slug": "query-36", + "name": "Query/36", + "release_date": null, + "developers": [ + "IBM" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28869427" + ], + "created_at": "2026-07-10T10:12:42.602691", + "updated_at": "2026-07-10T10:12:42.602691", + "url": "/v1/software/query-36" +} diff --git a/site/public/v1/software/query-processing-library/index.json b/site/public/v1/software/query-processing-library/index.json new file mode 100644 index 000000000000..360585633628 --- /dev/null +++ b/site/public/v1/software/query-processing-library/index.json @@ -0,0 +1,21 @@ +{ + "id": 8265, + "slug": "query-processing-library", + "name": "Query Processing Library", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116216849" + ], + "created_at": "2026-07-10T10:12:42.603610", + "updated_at": "2026-07-10T10:12:42.603610", + "url": "/v1/software/query-processing-library" +} diff --git a/site/public/v1/software/questagame/index.json b/site/public/v1/software/questagame/index.json new file mode 100644 index 000000000000..0625ebb0633e --- /dev/null +++ b/site/public/v1/software/questagame/index.json @@ -0,0 +1,19 @@ +{ + "id": 8266, + "slug": "questagame", + "name": "Questagame", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q56277601" + ], + "created_at": "2026-07-10T10:12:42.603610", + "updated_at": "2026-07-10T10:12:42.603610", + "url": "/v1/software/questagame" +} diff --git a/site/public/v1/software/question-writer/index.json b/site/public/v1/software/question-writer/index.json new file mode 100644 index 000000000000..77c594c78417 --- /dev/null +++ b/site/public/v1/software/question-writer/index.json @@ -0,0 +1,19 @@ +{ + "id": 8267, + "slug": "question-writer", + "name": "Question Writer", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7271529" + ], + "created_at": "2026-07-10T10:12:42.603610", + "updated_at": "2026-07-10T10:12:42.603610", + "url": "/v1/software/question-writer" +} diff --git a/site/public/v1/software/questworks/index.json b/site/public/v1/software/questworks/index.json new file mode 100644 index 000000000000..b97e3b7e35dd --- /dev/null +++ b/site/public/v1/software/questworks/index.json @@ -0,0 +1,19 @@ +{ + "id": 8268, + "slug": "questworks", + "name": "QuestWorks", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139695437" + ], + "created_at": "2026-07-10T10:12:42.604610", + "updated_at": "2026-07-10T10:12:42.604610", + "url": "/v1/software/questworks" +} diff --git a/site/public/v1/software/quex/index.json b/site/public/v1/software/quex/index.json new file mode 100644 index 000000000000..a73554699b6d --- /dev/null +++ b/site/public/v1/software/quex/index.json @@ -0,0 +1,19 @@ +{ + "id": 8269, + "slug": "quex", + "name": "Quex", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7271594" + ], + "created_at": "2026-07-10T10:12:42.604610", + "updated_at": "2026-07-10T10:12:42.604610", + "url": "/v1/software/quex" +} diff --git a/site/public/v1/software/quick-devis/index.json b/site/public/v1/software/quick-devis/index.json new file mode 100644 index 000000000000..86e6aa0c1ce9 --- /dev/null +++ b/site/public/v1/software/quick-devis/index.json @@ -0,0 +1,19 @@ +{ + "id": 8270, + "slug": "quick-devis", + "name": "Quick Devis", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3414444" + ], + "created_at": "2026-07-10T10:12:42.604610", + "updated_at": "2026-07-10T10:12:42.604610", + "url": "/v1/software/quick-devis" +} diff --git a/site/public/v1/software/quick-look/index.json b/site/public/v1/software/quick-look/index.json new file mode 100644 index 000000000000..00394d2b2c97 --- /dev/null +++ b/site/public/v1/software/quick-look/index.json @@ -0,0 +1,23 @@ +{ + "id": 8271, + "slug": "quick-look", + "name": "Quick Look", + "release_date": null, + "developers": [ + "Apple Inc." + ], + "publishers": [], + "operating_systems": [ + "macOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1326420" + ], + "created_at": "2026-07-10T10:12:42.605612", + "updated_at": "2026-07-10T10:12:42.605612", + "url": "/v1/software/quick-look" +} diff --git a/site/public/v1/software/quick-lx/index.json b/site/public/v1/software/quick-lx/index.json new file mode 100644 index 000000000000..be6862212b2f --- /dev/null +++ b/site/public/v1/software/quick-lx/index.json @@ -0,0 +1,23 @@ +{ + "id": 8272, + "slug": "quick-lx", + "name": "Quick/LX", + "release_date": null, + "developers": [ + "D&A Software" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121672432" + ], + "created_at": "2026-07-10T10:12:42.605612", + "updated_at": "2026-07-10T10:12:42.605612", + "url": "/v1/software/quick-lx" +} diff --git a/site/public/v1/software/quick-menu/index.json b/site/public/v1/software/quick-menu/index.json new file mode 100644 index 000000000000..a958199443e1 --- /dev/null +++ b/site/public/v1/software/quick-menu/index.json @@ -0,0 +1,19 @@ +{ + "id": 8273, + "slug": "quick-menu", + "name": "Quick Menu", + "release_date": "1990-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q23823965" + ], + "created_at": "2026-07-10T10:12:42.605612", + "updated_at": "2026-07-10T10:12:42.605612", + "url": "/v1/software/quick-menu" +} diff --git a/site/public/v1/software/quick-share/index.json b/site/public/v1/software/quick-share/index.json new file mode 100644 index 000000000000..d1d8ff5eb890 --- /dev/null +++ b/site/public/v1/software/quick-share/index.json @@ -0,0 +1,27 @@ +{ + "id": 8274, + "slug": "quick-share", + "name": "Quick Share", + "release_date": null, + "developers": [ + "Google", + "Samsung Electronics" + ], + "publishers": [], + "operating_systems": [ + "ChromeOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124153669" + ], + "created_at": "2026-07-10T10:12:42.606612", + "updated_at": "2026-07-10T10:12:42.606612", + "url": "/v1/software/quick-share" +} diff --git a/site/public/v1/software/quick-view-plus/index.json b/site/public/v1/software/quick-view-plus/index.json new file mode 100644 index 000000000000..43e0b6baa247 --- /dev/null +++ b/site/public/v1/software/quick-view-plus/index.json @@ -0,0 +1,24 @@ +{ + "id": 8275, + "slug": "quick-view-plus", + "name": "Quick View Plus", + "release_date": null, + "developers": [ + "Inso corporation" + ], + "publishers": [], + "operating_systems": [ + "Windows NT 4.0", + "Windows 95" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q58642355" + ], + "created_at": "2026-07-10T10:12:42.606612", + "updated_at": "2026-07-10T10:12:42.606612", + "url": "/v1/software/quick-view-plus" +} diff --git a/site/public/v1/software/quickbbs/index.json b/site/public/v1/software/quickbbs/index.json new file mode 100644 index 000000000000..199c1c3a7de9 --- /dev/null +++ b/site/public/v1/software/quickbbs/index.json @@ -0,0 +1,19 @@ +{ + "id": 8276, + "slug": "quickbbs", + "name": "QuickBBS", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7271659" + ], + "created_at": "2026-07-10T10:12:42.606612", + "updated_at": "2026-07-10T10:12:42.606612", + "url": "/v1/software/quickbbs" +} diff --git a/site/public/v1/software/quicken-family-lawyer/index.json b/site/public/v1/software/quicken-family-lawyer/index.json new file mode 100644 index 000000000000..6593cd5efb2c --- /dev/null +++ b/site/public/v1/software/quicken-family-lawyer/index.json @@ -0,0 +1,19 @@ +{ + "id": 8277, + "slug": "quicken-family-lawyer", + "name": "Quicken Family Lawyer", + "release_date": "1999-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60814755" + ], + "created_at": "2026-07-10T10:12:42.606612", + "updated_at": "2026-07-10T10:12:42.606612", + "url": "/v1/software/quicken-family-lawyer" +} diff --git a/site/public/v1/software/quicken/index.json b/site/public/v1/software/quicken/index.json new file mode 100644 index 000000000000..349c19fe9ea6 --- /dev/null +++ b/site/public/v1/software/quicken/index.json @@ -0,0 +1,19 @@ +{ + "id": 8278, + "slug": "quicken", + "name": "Quicken", + "release_date": "1983-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2123105" + ], + "created_at": "2026-07-10T10:12:42.607682", + "updated_at": "2026-07-10T10:12:42.607682", + "url": "/v1/software/quicken" +} diff --git a/site/public/v1/software/quickfield/index.json b/site/public/v1/software/quickfield/index.json new file mode 100644 index 000000000000..11891035c6a8 --- /dev/null +++ b/site/public/v1/software/quickfield/index.json @@ -0,0 +1,21 @@ +{ + "id": 8279, + "slug": "quickfield", + "name": "Quickfield", + "release_date": "1991-01-01", + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7271731" + ], + "created_at": "2026-07-10T10:12:42.607682", + "updated_at": "2026-07-10T10:12:42.607682", + "url": "/v1/software/quickfield" +} diff --git a/site/public/v1/software/quickfuzz/index.json b/site/public/v1/software/quickfuzz/index.json new file mode 100644 index 000000000000..7ee355e6cb7e --- /dev/null +++ b/site/public/v1/software/quickfuzz/index.json @@ -0,0 +1,19 @@ +{ + "id": 8280, + "slug": "quickfuzz", + "name": "quickfuzz", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975402" + ], + "created_at": "2026-07-10T10:12:42.607682", + "updated_at": "2026-07-10T10:12:42.607682", + "url": "/v1/software/quickfuzz" +} diff --git a/site/public/v1/software/quickload/index.json b/site/public/v1/software/quickload/index.json new file mode 100644 index 000000000000..7e057a6fe617 --- /dev/null +++ b/site/public/v1/software/quickload/index.json @@ -0,0 +1,19 @@ +{ + "id": 8281, + "slug": "quickload", + "name": "QuickLOAD", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7271667" + ], + "created_at": "2026-07-10T10:12:42.608685", + "updated_at": "2026-07-10T10:12:42.608685", + "url": "/v1/software/quickload" +} diff --git a/site/public/v1/software/quickmap/index.json b/site/public/v1/software/quickmap/index.json new file mode 100644 index 000000000000..0142da4097c8 --- /dev/null +++ b/site/public/v1/software/quickmap/index.json @@ -0,0 +1,23 @@ +{ + "id": 8282, + "slug": "quickmap", + "name": "Quickmap", + "release_date": null, + "developers": [ + "School of Earth and Space Exploration", + "Intuitive Machines", + "Applied Coherent Technology" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136439315" + ], + "created_at": "2026-07-10T10:12:42.608685", + "updated_at": "2026-07-10T10:12:42.608685", + "url": "/v1/software/quickmap" +} diff --git a/site/public/v1/software/quicknet/index.json b/site/public/v1/software/quicknet/index.json new file mode 100644 index 000000000000..4fa61a356966 --- /dev/null +++ b/site/public/v1/software/quicknet/index.json @@ -0,0 +1,19 @@ +{ + "id": 8283, + "slug": "quicknet", + "name": "Quicknet", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7271754" + ], + "created_at": "2026-07-10T10:12:42.608685", + "updated_at": "2026-07-10T10:12:42.608685", + "url": "/v1/software/quicknet" +} diff --git a/site/public/v1/software/quickoffice/index.json b/site/public/v1/software/quickoffice/index.json new file mode 100644 index 000000000000..61ec71da6f1b --- /dev/null +++ b/site/public/v1/software/quickoffice/index.json @@ -0,0 +1,27 @@ +{ + "id": 8284, + "slug": "quickoffice", + "name": "Quickoffice", + "release_date": null, + "developers": [ + "Google" + ], + "publishers": [], + "operating_systems": [ + "iOS", + "BlackBerry OS", + "Symbian", + "webOS", + "Palm OS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1394019" + ], + "created_at": "2026-07-10T10:12:42.609696", + "updated_at": "2026-07-10T10:12:42.609696", + "url": "/v1/software/quickoffice" +} diff --git a/site/public/v1/software/quickpar/index.json b/site/public/v1/software/quickpar/index.json new file mode 100644 index 000000000000..9c933521aaf0 --- /dev/null +++ b/site/public/v1/software/quickpar/index.json @@ -0,0 +1,19 @@ +{ + "id": 8285, + "slug": "quickpar", + "name": "QuickPar", + "release_date": "2003-02-05", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7271668" + ], + "created_at": "2026-07-10T10:12:42.609696", + "updated_at": "2026-07-10T10:12:42.609696", + "url": "/v1/software/quickpar" +} diff --git a/site/public/v1/software/quickplot/index.json b/site/public/v1/software/quickplot/index.json new file mode 100644 index 000000000000..97f1b4ac5dca --- /dev/null +++ b/site/public/v1/software/quickplot/index.json @@ -0,0 +1,19 @@ +{ + "id": 8286, + "slug": "quickplot", + "name": "Quickplot", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62863085" + ], + "created_at": "2026-07-10T10:12:42.609696", + "updated_at": "2026-07-10T10:12:42.609696", + "url": "/v1/software/quickplot" +} diff --git a/site/public/v1/software/quickstatements-client/index.json b/site/public/v1/software/quickstatements-client/index.json new file mode 100644 index 000000000000..70944f349865 --- /dev/null +++ b/site/public/v1/software/quickstatements-client/index.json @@ -0,0 +1,23 @@ +{ + "id": 8287, + "slug": "quickstatements-client", + "name": "QuickStatements Client", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Python" + ], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116914095" + ], + "created_at": "2026-07-10T10:12:42.610736", + "updated_at": "2026-07-10T10:12:42.610736", + "url": "/v1/software/quickstatements-client" +} diff --git a/site/public/v1/software/quickterm/index.json b/site/public/v1/software/quickterm/index.json new file mode 100644 index 000000000000..c8adc4f3ac0a --- /dev/null +++ b/site/public/v1/software/quickterm/index.json @@ -0,0 +1,21 @@ +{ + "id": 8288, + "slug": "quickterm", + "name": "Quickterm", + "release_date": null, + "developers": [ + "Kaleidoscope GmbH" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118906953" + ], + "created_at": "2026-07-10T10:12:42.610736", + "updated_at": "2026-07-10T10:12:42.610736", + "url": "/v1/software/quickterm" +} diff --git a/site/public/v1/software/quicktime-broadcaster/index.json b/site/public/v1/software/quicktime-broadcaster/index.json new file mode 100644 index 000000000000..416217e4d67f --- /dev/null +++ b/site/public/v1/software/quicktime-broadcaster/index.json @@ -0,0 +1,23 @@ +{ + "id": 8289, + "slug": "quicktime-broadcaster", + "name": "QuickTime Broadcaster", + "release_date": null, + "developers": [ + "Apple Inc." + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1469258" + ], + "created_at": "2026-07-10T10:12:42.610736", + "updated_at": "2026-07-10T10:12:42.610736", + "url": "/v1/software/quicktime-broadcaster" +} diff --git a/site/public/v1/software/quicktime-player/index.json b/site/public/v1/software/quicktime-player/index.json new file mode 100644 index 000000000000..d441685d1661 --- /dev/null +++ b/site/public/v1/software/quicktime-player/index.json @@ -0,0 +1,21 @@ +{ + "id": 8290, + "slug": "quicktime-player", + "name": "QuickTime Player", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [ + "media player software" + ], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1522857" + ], + "created_at": "2026-07-10T10:12:42.610736", + "updated_at": "2026-07-10T10:12:42.610736", + "url": "/v1/software/quicktime-player" +} diff --git a/site/public/v1/software/quicktime-streaming-server/index.json b/site/public/v1/software/quicktime-streaming-server/index.json new file mode 100644 index 000000000000..927d5e17aca4 --- /dev/null +++ b/site/public/v1/software/quicktime-streaming-server/index.json @@ -0,0 +1,21 @@ +{ + "id": 8291, + "slug": "quicktime-streaming-server", + "name": "QuickTime Streaming Server", + "release_date": null, + "developers": [ + "Apple Inc." + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q358919" + ], + "created_at": "2026-07-10T10:12:42.611671", + "updated_at": "2026-07-10T10:12:42.611671", + "url": "/v1/software/quicktime-streaming-server" +} diff --git a/site/public/v1/software/quicktransit/index.json b/site/public/v1/software/quicktransit/index.json new file mode 100644 index 000000000000..57b679e07622 --- /dev/null +++ b/site/public/v1/software/quicktransit/index.json @@ -0,0 +1,19 @@ +{ + "id": 8292, + "slug": "quicktransit", + "name": "QuickTransit", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3927834" + ], + "created_at": "2026-07-10T10:12:42.611671", + "updated_at": "2026-07-10T10:12:42.611671", + "url": "/v1/software/quicktransit" +} diff --git a/site/public/v1/software/quickview-2-0/index.json b/site/public/v1/software/quickview-2-0/index.json new file mode 100644 index 000000000000..ed464f104121 --- /dev/null +++ b/site/public/v1/software/quickview-2-0/index.json @@ -0,0 +1,19 @@ +{ + "id": 8293, + "slug": "quickview-2-0", + "name": "QuickView 2.0", + "release_date": "1993-03-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121631739" + ], + "created_at": "2026-07-10T10:12:42.612677", + "updated_at": "2026-07-10T10:12:42.612677", + "url": "/v1/software/quickview-2-0" +} diff --git a/site/public/v1/software/quickview/index.json b/site/public/v1/software/quickview/index.json new file mode 100644 index 000000000000..d6feef5efee2 --- /dev/null +++ b/site/public/v1/software/quickview/index.json @@ -0,0 +1,21 @@ +{ + "id": 8294, + "slug": "quickview", + "name": "QuickView", + "release_date": null, + "developers": [ + "Stellent" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3927833" + ], + "created_at": "2026-07-10T10:12:42.612677", + "updated_at": "2026-07-10T10:12:42.612677", + "url": "/v1/software/quickview" +} diff --git a/site/public/v1/software/quickvoice-ip/index.json b/site/public/v1/software/quickvoice-ip/index.json new file mode 100644 index 000000000000..329ab41404b9 --- /dev/null +++ b/site/public/v1/software/quickvoice-ip/index.json @@ -0,0 +1,19 @@ +{ + "id": 8295, + "slug": "quickvoice-ip", + "name": "QuickVoice iP", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084511" + ], + "created_at": "2026-07-10T10:12:42.612677", + "updated_at": "2026-07-10T10:12:42.612677", + "url": "/v1/software/quickvoice-ip" +} diff --git a/site/public/v1/software/quill-q105972409/index.json b/site/public/v1/software/quill-q105972409/index.json new file mode 100644 index 000000000000..172bbc80b977 --- /dev/null +++ b/site/public/v1/software/quill-q105972409/index.json @@ -0,0 +1,19 @@ +{ + "id": 8296, + "slug": "quill-q105972409", + "name": "Quill", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105972409" + ], + "created_at": "2026-07-10T10:12:42.613697", + "updated_at": "2026-07-10T10:12:42.613697", + "url": "/v1/software/quill-q105972409" +} diff --git a/site/public/v1/software/quill/index.json b/site/public/v1/software/quill/index.json new file mode 100644 index 000000000000..756e44f94b51 --- /dev/null +++ b/site/public/v1/software/quill/index.json @@ -0,0 +1,19 @@ +{ + "id": 8297, + "slug": "quill", + "name": "Quill", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q30325191" + ], + "created_at": "2026-07-10T10:12:42.613697", + "updated_at": "2026-07-10T10:12:42.613697", + "url": "/v1/software/quill" +} diff --git a/site/public/v1/software/quintecia/index.json b/site/public/v1/software/quintecia/index.json new file mode 100644 index 000000000000..bf6202b31fba --- /dev/null +++ b/site/public/v1/software/quintecia/index.json @@ -0,0 +1,23 @@ +{ + "id": 8298, + "slug": "quintecia", + "name": "Quintecia", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "cross-platform" + ], + "programming_languages": [ + "Python" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138865107" + ], + "created_at": "2026-07-10T10:12:42.613697", + "updated_at": "2026-07-10T10:12:42.613697", + "url": "/v1/software/quintecia" +} diff --git a/site/public/v1/software/quintessential-player/index.json b/site/public/v1/software/quintessential-player/index.json new file mode 100644 index 000000000000..c8a398bfe9f1 --- /dev/null +++ b/site/public/v1/software/quintessential-player/index.json @@ -0,0 +1,21 @@ +{ + "id": 8299, + "slug": "quintessential-player", + "name": "Quintessential Player", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2272440" + ], + "created_at": "2026-07-10T10:12:42.614676", + "updated_at": "2026-07-10T10:12:42.614676", + "url": "/v1/software/quintessential-player" +} diff --git a/site/public/v1/software/quintexa/index.json b/site/public/v1/software/quintexa/index.json new file mode 100644 index 000000000000..5cf511e6c9b9 --- /dev/null +++ b/site/public/v1/software/quintexa/index.json @@ -0,0 +1,24 @@ +{ + "id": 8300, + "slug": "quintexa", + "name": "quintexA", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105229762" + ], + "created_at": "2026-07-10T10:12:42.614676", + "updated_at": "2026-07-10T10:12:42.614676", + "url": "/v1/software/quintexa" +} diff --git a/site/public/v1/software/quintus-prolog/index.json b/site/public/v1/software/quintus-prolog/index.json new file mode 100644 index 000000000000..4be98471143a --- /dev/null +++ b/site/public/v1/software/quintus-prolog/index.json @@ -0,0 +1,19 @@ +{ + "id": 8301, + "slug": "quintus-prolog", + "name": "Quintus Prolog", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123577704" + ], + "created_at": "2026-07-10T10:12:42.615272", + "updated_at": "2026-07-10T10:12:42.615272", + "url": "/v1/software/quintus-prolog" +} diff --git a/site/public/v1/software/quire-io/index.json b/site/public/v1/software/quire-io/index.json new file mode 100644 index 000000000000..09fccc206bfa --- /dev/null +++ b/site/public/v1/software/quire-io/index.json @@ -0,0 +1,19 @@ +{ + "id": 8302, + "slug": "quire-io", + "name": "Quire.io", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q20644946" + ], + "created_at": "2026-07-10T10:12:42.615272", + "updated_at": "2026-07-10T10:12:42.615272", + "url": "/v1/software/quire-io" +} diff --git a/site/public/v1/software/quirkos/index.json b/site/public/v1/software/quirkos/index.json new file mode 100644 index 000000000000..017ffc11a2a5 --- /dev/null +++ b/site/public/v1/software/quirkos/index.json @@ -0,0 +1,24 @@ +{ + "id": 8303, + "slug": "quirkos", + "name": "Quirkos", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q30633354" + ], + "created_at": "2026-07-10T10:12:42.615272", + "updated_at": "2026-07-10T10:12:42.615272", + "url": "/v1/software/quirkos" +} diff --git a/site/public/v1/software/quitcount/index.json b/site/public/v1/software/quitcount/index.json new file mode 100644 index 000000000000..d626daf3e408 --- /dev/null +++ b/site/public/v1/software/quitcount/index.json @@ -0,0 +1,19 @@ +{ + "id": 8304, + "slug": "quitcount", + "name": "QuitCount", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62863076" + ], + "created_at": "2026-07-10T10:12:42.615272", + "updated_at": "2026-07-10T10:12:42.615272", + "url": "/v1/software/quitcount" +} diff --git a/site/public/v1/software/qulto/index.json b/site/public/v1/software/qulto/index.json new file mode 100644 index 000000000000..5f667dd5b545 --- /dev/null +++ b/site/public/v1/software/qulto/index.json @@ -0,0 +1,19 @@ +{ + "id": 8305, + "slug": "qulto", + "name": "Qulto", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q12815750" + ], + "created_at": "2026-07-10T10:12:42.616372", + "updated_at": "2026-07-10T10:12:42.616372", + "url": "/v1/software/qulto" +} diff --git a/site/public/v1/software/quosal/index.json b/site/public/v1/software/quosal/index.json new file mode 100644 index 000000000000..9f8d17d0f30a --- /dev/null +++ b/site/public/v1/software/quosal/index.json @@ -0,0 +1,19 @@ +{ + "id": 8306, + "slug": "quosal", + "name": "Quosal", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7272870" + ], + "created_at": "2026-07-10T10:12:42.616372", + "updated_at": "2026-07-10T10:12:42.616372", + "url": "/v1/software/quosal" +} diff --git a/site/public/v1/software/quotatool/index.json b/site/public/v1/software/quotatool/index.json new file mode 100644 index 000000000000..39a8a03b20c1 --- /dev/null +++ b/site/public/v1/software/quotatool/index.json @@ -0,0 +1,19 @@ +{ + "id": 8307, + "slug": "quotatool", + "name": "quotatool", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62863066" + ], + "created_at": "2026-07-10T10:12:42.617399", + "updated_at": "2026-07-10T10:12:42.617399", + "url": "/v1/software/quotatool" +} diff --git a/site/public/v1/software/qupath/index.json b/site/public/v1/software/qupath/index.json new file mode 100644 index 000000000000..39a20da3eb3b --- /dev/null +++ b/site/public/v1/software/qupath/index.json @@ -0,0 +1,19 @@ +{ + "id": 8308, + "slug": "qupath", + "name": "QuPath", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113050384" + ], + "created_at": "2026-07-10T10:12:42.617399", + "updated_at": "2026-07-10T10:12:42.617399", + "url": "/v1/software/qupath" +} diff --git a/site/public/v1/software/qutoutiao/index.json b/site/public/v1/software/qutoutiao/index.json new file mode 100644 index 000000000000..e811d813989b --- /dev/null +++ b/site/public/v1/software/qutoutiao/index.json @@ -0,0 +1,21 @@ +{ + "id": 8309, + "slug": "qutoutiao", + "name": "Qutoutiao", + "release_date": null, + "developers": [ + "Eric Tan" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q59318110" + ], + "created_at": "2026-07-10T10:12:42.617399", + "updated_at": "2026-07-10T10:12:42.617399", + "url": "/v1/software/qutoutiao" +} diff --git a/site/public/v1/software/qvcs/index.json b/site/public/v1/software/qvcs/index.json new file mode 100644 index 000000000000..adbc65856088 --- /dev/null +++ b/site/public/v1/software/qvcs/index.json @@ -0,0 +1,19 @@ +{ + "id": 8310, + "slug": "qvcs", + "name": "QVCS", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4047730" + ], + "created_at": "2026-07-10T10:12:42.617399", + "updated_at": "2026-07-10T10:12:42.617399", + "url": "/v1/software/qvcs" +} diff --git a/site/public/v1/software/qvod/index.json b/site/public/v1/software/qvod/index.json new file mode 100644 index 000000000000..300e1a3b44e8 --- /dev/null +++ b/site/public/v1/software/qvod/index.json @@ -0,0 +1,19 @@ +{ + "id": 8311, + "slug": "qvod", + "name": "Qvod", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11072368" + ], + "created_at": "2026-07-10T10:12:42.618378", + "updated_at": "2026-07-10T10:12:42.618378", + "url": "/v1/software/qvod" +} diff --git a/site/public/v1/software/qxkb/index.json b/site/public/v1/software/qxkb/index.json new file mode 100644 index 000000000000..3beb5cf7678a --- /dev/null +++ b/site/public/v1/software/qxkb/index.json @@ -0,0 +1,19 @@ +{ + "id": 8312, + "slug": "qxkb", + "name": "qxkb", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63064758" + ], + "created_at": "2026-07-10T10:12:42.618378", + "updated_at": "2026-07-10T10:12:42.618378", + "url": "/v1/software/qxkb" +} diff --git a/site/public/v1/software/qxorm/index.json b/site/public/v1/software/qxorm/index.json new file mode 100644 index 000000000000..d87805a72e59 --- /dev/null +++ b/site/public/v1/software/qxorm/index.json @@ -0,0 +1,21 @@ +{ + "id": 8313, + "slug": "qxorm", + "name": "QxOrm", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3414896" + ], + "created_at": "2026-07-10T10:12:42.619368", + "updated_at": "2026-07-10T10:12:42.619368", + "url": "/v1/software/qxorm" +} diff --git a/site/public/v1/software/r-drive-image/index.json b/site/public/v1/software/r-drive-image/index.json new file mode 100644 index 000000000000..9c4443b34805 --- /dev/null +++ b/site/public/v1/software/r-drive-image/index.json @@ -0,0 +1,19 @@ +{ + "id": 8314, + "slug": "r-drive-image", + "name": "R-Drive Image", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3304600" + ], + "created_at": "2026-07-10T10:12:42.619368", + "updated_at": "2026-07-10T10:12:42.619368", + "url": "/v1/software/r-drive-image" +} diff --git a/site/public/v1/software/r-studio/index.json b/site/public/v1/software/r-studio/index.json new file mode 100644 index 000000000000..6ea3710b9e2d --- /dev/null +++ b/site/public/v1/software/r-studio/index.json @@ -0,0 +1,19 @@ +{ + "id": 8315, + "slug": "r-studio", + "name": "R-Studio", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q24451405" + ], + "created_at": "2026-07-10T10:12:42.619368", + "updated_at": "2026-07-10T10:12:42.619368", + "url": "/v1/software/r-studio" +} diff --git a/site/public/v1/software/r-sun/index.json b/site/public/v1/software/r-sun/index.json new file mode 100644 index 000000000000..049eb28ab092 --- /dev/null +++ b/site/public/v1/software/r-sun/index.json @@ -0,0 +1,19 @@ +{ + "id": 8316, + "slug": "r-sun", + "name": "R.sun", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7274340" + ], + "created_at": "2026-07-10T10:12:42.620345", + "updated_at": "2026-07-10T10:12:42.620345", + "url": "/v1/software/r-sun" +} diff --git a/site/public/v1/software/r4e-review-for-eclipse/index.json b/site/public/v1/software/r4e-review-for-eclipse/index.json new file mode 100644 index 000000000000..e62c7a67cfe5 --- /dev/null +++ b/site/public/v1/software/r4e-review-for-eclipse/index.json @@ -0,0 +1,19 @@ +{ + "id": 8317, + "slug": "r4e-review-for-eclipse", + "name": "R4E (Review for Eclipse)", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76177629" + ], + "created_at": "2026-07-10T10:12:42.620345", + "updated_at": "2026-07-10T10:12:42.620345", + "url": "/v1/software/r4e-review-for-eclipse" +} diff --git a/site/public/v1/software/rabbitmq-c/index.json b/site/public/v1/software/rabbitmq-c/index.json new file mode 100644 index 000000000000..e2e38720b64c --- /dev/null +++ b/site/public/v1/software/rabbitmq-c/index.json @@ -0,0 +1,21 @@ +{ + "id": 8318, + "slug": "rabbitmq-c", + "name": "rabbitmq-c", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975405" + ], + "created_at": "2026-07-10T10:12:42.620345", + "updated_at": "2026-07-10T10:12:42.620345", + "url": "/v1/software/rabbitmq-c" +} diff --git a/site/public/v1/software/racemetrics/index.json b/site/public/v1/software/racemetrics/index.json new file mode 100644 index 000000000000..17f189fe9bbc --- /dev/null +++ b/site/public/v1/software/racemetrics/index.json @@ -0,0 +1,19 @@ +{ + "id": 8319, + "slug": "racemetrics", + "name": "RaceMetrics", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139942640" + ], + "created_at": "2026-07-10T10:12:42.621282", + "updated_at": "2026-07-10T10:12:42.621282", + "url": "/v1/software/racemetrics" +} diff --git a/site/public/v1/software/rackspace-auth-openstack/index.json b/site/public/v1/software/rackspace-auth-openstack/index.json new file mode 100644 index 000000000000..ffd9a991d2f2 --- /dev/null +++ b/site/public/v1/software/rackspace-auth-openstack/index.json @@ -0,0 +1,19 @@ +{ + "id": 8320, + "slug": "rackspace-auth-openstack", + "name": "rackspace-auth-openstack", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975407" + ], + "created_at": "2026-07-10T10:12:42.621282", + "updated_at": "2026-07-10T10:12:42.621282", + "url": "/v1/software/rackspace-auth-openstack" +} diff --git a/site/public/v1/software/radeontool/index.json b/site/public/v1/software/radeontool/index.json new file mode 100644 index 000000000000..9454573f1f16 --- /dev/null +++ b/site/public/v1/software/radeontool/index.json @@ -0,0 +1,19 @@ +{ + "id": 8321, + "slug": "radeontool", + "name": "RadeonTool", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62863056" + ], + "created_at": "2026-07-10T10:12:42.621282", + "updated_at": "2026-07-10T10:12:42.621282", + "url": "/v1/software/radeontool" +} diff --git a/site/public/v1/software/radexpro-seismic-software/index.json b/site/public/v1/software/radexpro-seismic-software/index.json new file mode 100644 index 000000000000..253fcc53659b --- /dev/null +++ b/site/public/v1/software/radexpro-seismic-software/index.json @@ -0,0 +1,21 @@ +{ + "id": 8322, + "slug": "radexpro-seismic-software", + "name": "RadExPro seismic software", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7279903" + ], + "created_at": "2026-07-10T10:12:42.622398", + "updated_at": "2026-07-10T10:12:42.622398", + "url": "/v1/software/radexpro-seismic-software" +} diff --git a/site/public/v1/software/radiance/index.json b/site/public/v1/software/radiance/index.json new file mode 100644 index 000000000000..3e4c918ad8c0 --- /dev/null +++ b/site/public/v1/software/radiance/index.json @@ -0,0 +1,24 @@ +{ + "id": 8323, + "slug": "radiance", + "name": "Radiance", + "release_date": null, + "developers": [ + "Gregory J. Ward" + ], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4047947" + ], + "created_at": "2026-07-10T10:12:42.622398", + "updated_at": "2026-07-10T10:12:42.622398", + "url": "/v1/software/radiance" +} diff --git a/site/public/v1/software/radiant-photo/index.json b/site/public/v1/software/radiant-photo/index.json new file mode 100644 index 000000000000..bc8509982301 --- /dev/null +++ b/site/public/v1/software/radiant-photo/index.json @@ -0,0 +1,19 @@ +{ + "id": 8324, + "slug": "radiant-photo", + "name": "Radiant Photo", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136106259" + ], + "created_at": "2026-07-10T10:12:42.622398", + "updated_at": "2026-07-10T10:12:42.622398", + "url": "/v1/software/radiant-photo" +} diff --git a/site/public/v1/software/radiate/index.json b/site/public/v1/software/radiate/index.json new file mode 100644 index 000000000000..ff69d3bb979c --- /dev/null +++ b/site/public/v1/software/radiate/index.json @@ -0,0 +1,21 @@ +{ + "id": 8325, + "slug": "radiate", + "name": "Radiate", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "iOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q21041348" + ], + "created_at": "2026-07-10T10:12:42.623383", + "updated_at": "2026-07-10T10:12:42.623383", + "url": "/v1/software/radiate" +} diff --git a/site/public/v1/software/radio-interface-layer/index.json b/site/public/v1/software/radio-interface-layer/index.json new file mode 100644 index 000000000000..ea05c5c1f05e --- /dev/null +++ b/site/public/v1/software/radio-interface-layer/index.json @@ -0,0 +1,19 @@ +{ + "id": 8326, + "slug": "radio-interface-layer", + "name": "Radio Interface Layer", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7280856" + ], + "created_at": "2026-07-10T10:12:42.623383", + "updated_at": "2026-07-10T10:12:42.623383", + "url": "/v1/software/radio-interface-layer" +} diff --git a/site/public/v1/software/radioss/index.json b/site/public/v1/software/radioss/index.json new file mode 100644 index 000000000000..a53a16fd34ad --- /dev/null +++ b/site/public/v1/software/radioss/index.json @@ -0,0 +1,26 @@ +{ + "id": 8327, + "slug": "radioss", + "name": "Radioss", + "release_date": null, + "developers": [ + "Altair Engineering" + ], + "publishers": [], + "operating_systems": [ + "SUSE", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3415032" + ], + "created_at": "2026-07-10T10:12:42.623383", + "updated_at": "2026-07-10T10:12:42.623383", + "url": "/v1/software/radioss" +} diff --git a/site/public/v1/software/radium-smartchain/index.json b/site/public/v1/software/radium-smartchain/index.json new file mode 100644 index 000000000000..c1c4ffa70999 --- /dev/null +++ b/site/public/v1/software/radium-smartchain/index.json @@ -0,0 +1,19 @@ +{ + "id": 8328, + "slug": "radium-smartchain", + "name": "Radium SmartChain", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108747960" + ], + "created_at": "2026-07-10T10:12:42.623383", + "updated_at": "2026-07-10T10:12:42.623383", + "url": "/v1/software/radium-smartchain" +} diff --git a/site/public/v1/software/radmin/index.json b/site/public/v1/software/radmin/index.json new file mode 100644 index 000000000000..17536ff6cbce --- /dev/null +++ b/site/public/v1/software/radmin/index.json @@ -0,0 +1,23 @@ +{ + "id": 8329, + "slug": "radmin", + "name": "Radmin", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Windows Server 2003" + ], + "programming_languages": [], + "licenses": [ + "shareware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1976090" + ], + "created_at": "2026-07-10T10:12:42.624358", + "updated_at": "2026-07-10T10:12:42.624358", + "url": "/v1/software/radmin" +} diff --git a/site/public/v1/software/radmind/index.json b/site/public/v1/software/radmind/index.json new file mode 100644 index 000000000000..c910624b63f9 --- /dev/null +++ b/site/public/v1/software/radmind/index.json @@ -0,0 +1,19 @@ +{ + "id": 8330, + "slug": "radmind", + "name": "Radmind", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7281457" + ], + "created_at": "2026-07-10T10:12:42.624358", + "updated_at": "2026-07-10T10:12:42.624358", + "url": "/v1/software/radmind" +} diff --git a/site/public/v1/software/rae-assist/index.json b/site/public/v1/software/rae-assist/index.json new file mode 100644 index 000000000000..2b6c49edf09d --- /dev/null +++ b/site/public/v1/software/rae-assist/index.json @@ -0,0 +1,19 @@ +{ + "id": 8331, + "slug": "rae-assist", + "name": "Rae Assist", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7281904" + ], + "created_at": "2026-07-10T10:12:42.624358", + "updated_at": "2026-07-10T10:12:42.624358", + "url": "/v1/software/rae-assist" +} diff --git a/site/public/v1/software/rafflecopter/index.json b/site/public/v1/software/rafflecopter/index.json new file mode 100644 index 000000000000..7db3c93c129b --- /dev/null +++ b/site/public/v1/software/rafflecopter/index.json @@ -0,0 +1,19 @@ +{ + "id": 8332, + "slug": "rafflecopter", + "name": "Rafflecopter", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140089725" + ], + "created_at": "2026-07-10T10:12:42.625353", + "updated_at": "2026-07-10T10:12:42.625353", + "url": "/v1/software/rafflecopter" +} diff --git a/site/public/v1/software/raftlib/index.json b/site/public/v1/software/raftlib/index.json new file mode 100644 index 000000000000..ccd54097c3db --- /dev/null +++ b/site/public/v1/software/raftlib/index.json @@ -0,0 +1,24 @@ +{ + "id": 8333, + "slug": "raftlib", + "name": "RaftLib", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "Apache License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28446438" + ], + "created_at": "2026-07-10T10:12:42.625353", + "updated_at": "2026-07-10T10:12:42.625353", + "url": "/v1/software/raftlib" +} diff --git a/site/public/v1/software/rag-weaver/index.json b/site/public/v1/software/rag-weaver/index.json new file mode 100644 index 000000000000..d9958595b0e1 --- /dev/null +++ b/site/public/v1/software/rag-weaver/index.json @@ -0,0 +1,19 @@ +{ + "id": 8334, + "slug": "rag-weaver", + "name": "RAG Weaver", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140197648" + ], + "created_at": "2026-07-10T10:12:42.625353", + "updated_at": "2026-07-10T10:12:42.625353", + "url": "/v1/software/rag-weaver" +} diff --git a/site/public/v1/software/ragel/index.json b/site/public/v1/software/ragel/index.json new file mode 100644 index 000000000000..112fe2ed42b6 --- /dev/null +++ b/site/public/v1/software/ragel/index.json @@ -0,0 +1,21 @@ +{ + "id": 8335, + "slug": "ragel", + "name": "Ragel", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3417478" + ], + "created_at": "2026-07-10T10:12:42.626359", + "updated_at": "2026-07-10T10:12:42.626359", + "url": "/v1/software/ragel" +} diff --git a/site/public/v1/software/ragtime/index.json b/site/public/v1/software/ragtime/index.json new file mode 100644 index 000000000000..430e01a4f3f6 --- /dev/null +++ b/site/public/v1/software/ragtime/index.json @@ -0,0 +1,22 @@ +{ + "id": 8336, + "slug": "ragtime", + "name": "RagTime", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123714" + ], + "created_at": "2026-07-10T10:12:42.626359", + "updated_at": "2026-07-10T10:12:42.626359", + "url": "/v1/software/ragtime" +} diff --git a/site/public/v1/software/raid-admin/index.json b/site/public/v1/software/raid-admin/index.json new file mode 100644 index 000000000000..72abfea1711c --- /dev/null +++ b/site/public/v1/software/raid-admin/index.json @@ -0,0 +1,23 @@ +{ + "id": 8337, + "slug": "raid-admin", + "name": "RAID Admin", + "release_date": null, + "developers": [ + "Apple Inc." + ], + "publishers": [], + "operating_systems": [ + "macOS Server" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3928147" + ], + "created_at": "2026-07-10T10:12:42.626359", + "updated_at": "2026-07-10T10:12:42.626359", + "url": "/v1/software/raid-admin" +} diff --git a/site/public/v1/software/raidcall/index.json b/site/public/v1/software/raidcall/index.json new file mode 100644 index 000000000000..7e457facc832 --- /dev/null +++ b/site/public/v1/software/raidcall/index.json @@ -0,0 +1,19 @@ +{ + "id": 8338, + "slug": "raidcall", + "name": "RaidCall", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q24836390" + ], + "created_at": "2026-07-10T10:12:42.627394", + "updated_at": "2026-07-10T10:12:42.627394", + "url": "/v1/software/raidcall" +} diff --git a/site/public/v1/software/raids-online/index.json b/site/public/v1/software/raids-online/index.json new file mode 100644 index 000000000000..85991bc22f83 --- /dev/null +++ b/site/public/v1/software/raids-online/index.json @@ -0,0 +1,19 @@ +{ + "id": 8339, + "slug": "raids-online", + "name": "RAIDS Online", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7275721" + ], + "created_at": "2026-07-10T10:12:42.627394", + "updated_at": "2026-07-10T10:12:42.627394", + "url": "/v1/software/raids-online" +} diff --git a/site/public/v1/software/rain-framework/index.json b/site/public/v1/software/rain-framework/index.json new file mode 100644 index 000000000000..929c59b3022b --- /dev/null +++ b/site/public/v1/software/rain-framework/index.json @@ -0,0 +1,23 @@ +{ + "id": 8340, + "slug": "rain-framework", + "name": "Rain Framework", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "PHP" + ], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2463477" + ], + "created_at": "2026-07-10T10:12:42.627394", + "updated_at": "2026-07-10T10:12:42.627394", + "url": "/v1/software/rain-framework" +} diff --git a/site/public/v1/software/raise-data-recovery/index.json b/site/public/v1/software/raise-data-recovery/index.json new file mode 100644 index 000000000000..68b6700d6c7d --- /dev/null +++ b/site/public/v1/software/raise-data-recovery/index.json @@ -0,0 +1,19 @@ +{ + "id": 8341, + "slug": "raise-data-recovery", + "name": "Raise Data Recovery", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28950276" + ], + "created_at": "2026-07-10T10:12:42.627394", + "updated_at": "2026-07-10T10:12:42.627394", + "url": "/v1/software/raise-data-recovery" +} diff --git a/site/public/v1/software/raise-restore-data-integration-suite/index.json b/site/public/v1/software/raise-restore-data-integration-suite/index.json new file mode 100644 index 000000000000..2076788f254c --- /dev/null +++ b/site/public/v1/software/raise-restore-data-integration-suite/index.json @@ -0,0 +1,19 @@ +{ + "id": 8342, + "slug": "raise-restore-data-integration-suite", + "name": "RAISE - Restore dAta Integration SuitE", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084512" + ], + "created_at": "2026-07-10T10:12:42.628362", + "updated_at": "2026-07-10T10:12:42.628362", + "url": "/v1/software/raise-restore-data-integration-suite" +} diff --git a/site/public/v1/software/raman-tool-set/index.json b/site/public/v1/software/raman-tool-set/index.json new file mode 100644 index 000000000000..c21256fac592 --- /dev/null +++ b/site/public/v1/software/raman-tool-set/index.json @@ -0,0 +1,21 @@ +{ + "id": 8343, + "slug": "raman-tool-set", + "name": "Raman Tool Set", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28957056" + ], + "created_at": "2026-07-10T10:12:42.628362", + "updated_at": "2026-07-10T10:12:42.628362", + "url": "/v1/software/raman-tool-set" +} diff --git a/site/public/v1/software/ramanujan-machine-q108444510/index.json b/site/public/v1/software/ramanujan-machine-q108444510/index.json new file mode 100644 index 000000000000..15784bc437d0 --- /dev/null +++ b/site/public/v1/software/ramanujan-machine-q108444510/index.json @@ -0,0 +1,19 @@ +{ + "id": 8344, + "slug": "ramanujan-machine-q108444510", + "name": "Ramanujan machine", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108444510" + ], + "created_at": "2026-07-10T10:12:42.629377", + "updated_at": "2026-07-10T10:12:42.629377", + "url": "/v1/software/ramanujan-machine-q108444510" +} diff --git a/site/public/v1/software/ramanujan-machine/index.json b/site/public/v1/software/ramanujan-machine/index.json new file mode 100644 index 000000000000..2ce9d984611d --- /dev/null +++ b/site/public/v1/software/ramanujan-machine/index.json @@ -0,0 +1,19 @@ +{ + "id": 8345, + "slug": "ramanujan-machine", + "name": "Ramanujan Machine", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105334300" + ], + "created_at": "2026-07-10T10:12:42.629377", + "updated_at": "2026-07-10T10:12:42.629377", + "url": "/v1/software/ramanujan-machine" +} diff --git a/site/public/v1/software/ramaze/index.json b/site/public/v1/software/ramaze/index.json new file mode 100644 index 000000000000..fc0144c1e357 --- /dev/null +++ b/site/public/v1/software/ramaze/index.json @@ -0,0 +1,19 @@ +{ + "id": 8346, + "slug": "ramaze", + "name": "Ramaze", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7289159" + ], + "created_at": "2026-07-10T10:12:42.629377", + "updated_at": "2026-07-10T10:12:42.629377", + "url": "/v1/software/ramaze" +} diff --git a/site/public/v1/software/ramis-software/index.json b/site/public/v1/software/ramis-software/index.json new file mode 100644 index 000000000000..6e9502309b2b --- /dev/null +++ b/site/public/v1/software/ramis-software/index.json @@ -0,0 +1,19 @@ +{ + "id": 8347, + "slug": "ramis-software", + "name": "Ramis Software", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7289634" + ], + "created_at": "2026-07-10T10:12:42.630362", + "updated_at": "2026-07-10T10:12:42.630362", + "url": "/v1/software/ramis-software" +} diff --git a/site/public/v1/software/ramonia/index.json b/site/public/v1/software/ramonia/index.json new file mode 100644 index 000000000000..a2882014b12a --- /dev/null +++ b/site/public/v1/software/ramonia/index.json @@ -0,0 +1,19 @@ +{ + "id": 8348, + "slug": "ramonia", + "name": "Ramonia", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140301215" + ], + "created_at": "2026-07-10T10:12:42.630362", + "updated_at": "2026-07-10T10:12:42.630362", + "url": "/v1/software/ramonia" +} diff --git a/site/public/v1/software/ramp-simulation-software-for-modelling-reliability-availability-and-maintainability/index.json b/site/public/v1/software/ramp-simulation-software-for-modelling-reliability-availability-and-maintainability/index.json new file mode 100644 index 000000000000..42fdbc284e01 --- /dev/null +++ b/site/public/v1/software/ramp-simulation-software-for-modelling-reliability-availability-and-maintainability/index.json @@ -0,0 +1,19 @@ +{ + "id": 8349, + "slug": "ramp-simulation-software-for-modelling-reliability-availability-and-maintainability", + "name": "RAMP Simulation Software for Modelling Reliability, Availability and Maintainability", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7275755" + ], + "created_at": "2026-07-10T10:12:42.630362", + "updated_at": "2026-07-10T10:12:42.630362", + "url": "/v1/software/ramp-simulation-software-for-modelling-reliability-availability-and-maintainability" +} diff --git a/site/public/v1/software/rampnerd/index.json b/site/public/v1/software/rampnerd/index.json new file mode 100644 index 000000000000..27fc71e85881 --- /dev/null +++ b/site/public/v1/software/rampnerd/index.json @@ -0,0 +1,21 @@ +{ + "id": 8350, + "slug": "rampnerd", + "name": "Rampnerd", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [ + "computer-aided design" + ], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135224227" + ], + "created_at": "2026-07-10T10:12:42.631353", + "updated_at": "2026-07-10T10:12:42.631353", + "url": "/v1/software/rampnerd" +} diff --git a/site/public/v1/software/rana/index.json b/site/public/v1/software/rana/index.json new file mode 100644 index 000000000000..259d4f8c9d12 --- /dev/null +++ b/site/public/v1/software/rana/index.json @@ -0,0 +1,19 @@ +{ + "id": 8351, + "slug": "rana", + "name": "Rana", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25222632" + ], + "created_at": "2026-07-10T10:12:42.631353", + "updated_at": "2026-07-10T10:12:42.631353", + "url": "/v1/software/rana" +} diff --git a/site/public/v1/software/ranavision/index.json b/site/public/v1/software/ranavision/index.json new file mode 100644 index 000000000000..de9c1e475dda --- /dev/null +++ b/site/public/v1/software/ranavision/index.json @@ -0,0 +1,21 @@ +{ + "id": 8352, + "slug": "ranavision", + "name": "RanaVision", + "release_date": null, + "developers": [ + "Mark A. O'Neill" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7290611" + ], + "created_at": "2026-07-10T10:12:42.631353", + "updated_at": "2026-07-10T10:12:42.631353", + "url": "/v1/software/ranavision" +} diff --git a/site/public/v1/software/random/index.json b/site/public/v1/software/random/index.json new file mode 100644 index 000000000000..39b440934884 --- /dev/null +++ b/site/public/v1/software/random/index.json @@ -0,0 +1,21 @@ +{ + "id": 8353, + "slug": "random", + "name": "Random", + "release_date": "2014-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q21041349" + ], + "created_at": "2026-07-10T10:12:42.632334", + "updated_at": "2026-07-10T10:12:42.632334", + "url": "/v1/software/random" +} diff --git a/site/public/v1/software/randr/index.json b/site/public/v1/software/randr/index.json new file mode 100644 index 000000000000..8cb49ac4f570 --- /dev/null +++ b/site/public/v1/software/randr/index.json @@ -0,0 +1,21 @@ +{ + "id": 8354, + "slug": "randr", + "name": "RandR", + "release_date": null, + "developers": [ + "X.Org Foundation" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1002643" + ], + "created_at": "2026-07-10T10:12:42.632334", + "updated_at": "2026-07-10T10:12:42.632334", + "url": "/v1/software/randr" +} diff --git a/site/public/v1/software/ranke-2/index.json b/site/public/v1/software/ranke-2/index.json new file mode 100644 index 000000000000..97b9d7435351 --- /dev/null +++ b/site/public/v1/software/ranke-2/index.json @@ -0,0 +1,19 @@ +{ + "id": 8355, + "slug": "ranke-2", + "name": "Ranke.2", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084513" + ], + "created_at": "2026-07-10T10:12:42.632334", + "updated_at": "2026-07-10T10:12:42.632334", + "url": "/v1/software/ranke-2" +} diff --git a/site/public/v1/software/ranklabs/index.json b/site/public/v1/software/ranklabs/index.json new file mode 100644 index 000000000000..4404945d5f83 --- /dev/null +++ b/site/public/v1/software/ranklabs/index.json @@ -0,0 +1,23 @@ +{ + "id": 8356, + "slug": "ranklabs", + "name": "RankLabs", + "release_date": null, + "developers": [ + "Sangmin Lee" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "TypeScript" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139627896" + ], + "created_at": "2026-07-10T10:12:42.633390", + "updated_at": "2026-07-10T10:12:42.633390", + "url": "/v1/software/ranklabs" +} diff --git a/site/public/v1/software/ranorex/index.json b/site/public/v1/software/ranorex/index.json new file mode 100644 index 000000000000..4ca6d38e1e9b --- /dev/null +++ b/site/public/v1/software/ranorex/index.json @@ -0,0 +1,21 @@ +{ + "id": 8357, + "slug": "ranorex", + "name": "Ranorex", + "release_date": null, + "developers": [ + "Ranorex GmbH" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7293425" + ], + "created_at": "2026-07-10T10:12:42.633390", + "updated_at": "2026-07-10T10:12:42.633390", + "url": "/v1/software/ranorex" +} diff --git a/site/public/v1/software/ranpwd/index.json b/site/public/v1/software/ranpwd/index.json new file mode 100644 index 000000000000..d5fd030a00e4 --- /dev/null +++ b/site/public/v1/software/ranpwd/index.json @@ -0,0 +1,19 @@ +{ + "id": 8358, + "slug": "ranpwd", + "name": "ranpwd", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065230" + ], + "created_at": "2026-07-10T10:12:42.633390", + "updated_at": "2026-07-10T10:12:42.633390", + "url": "/v1/software/ranpwd" +} diff --git a/site/public/v1/software/rapid-evolution/index.json b/site/public/v1/software/rapid-evolution/index.json new file mode 100644 index 000000000000..c1eaffc068ef --- /dev/null +++ b/site/public/v1/software/rapid-evolution/index.json @@ -0,0 +1,19 @@ +{ + "id": 8359, + "slug": "rapid-evolution", + "name": "Rapid Evolution", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7294161" + ], + "created_at": "2026-07-10T10:12:42.634279", + "updated_at": "2026-07-10T10:12:42.634279", + "url": "/v1/software/rapid-evolution" +} diff --git a/site/public/v1/software/rapid-penang/index.json b/site/public/v1/software/rapid-penang/index.json new file mode 100644 index 000000000000..7780a557db60 --- /dev/null +++ b/site/public/v1/software/rapid-penang/index.json @@ -0,0 +1,19 @@ +{ + "id": 8360, + "slug": "rapid-penang", + "name": "Rapid Penang", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4259055" + ], + "created_at": "2026-07-10T10:12:42.634279", + "updated_at": "2026-07-10T10:12:42.634279", + "url": "/v1/software/rapid-penang" +} diff --git a/site/public/v1/software/rapid-update-cycle/index.json b/site/public/v1/software/rapid-update-cycle/index.json new file mode 100644 index 000000000000..8fa01d7a0cfc --- /dev/null +++ b/site/public/v1/software/rapid-update-cycle/index.json @@ -0,0 +1,19 @@ +{ + "id": 8361, + "slug": "rapid-update-cycle", + "name": "Rapid update cycle", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7294238" + ], + "created_at": "2026-07-10T10:12:42.634279", + "updated_at": "2026-07-10T10:12:42.634279", + "url": "/v1/software/rapid-update-cycle" +} diff --git a/site/public/v1/software/rapido-q123159344/index.json b/site/public/v1/software/rapido-q123159344/index.json new file mode 100644 index 000000000000..144336210985 --- /dev/null +++ b/site/public/v1/software/rapido-q123159344/index.json @@ -0,0 +1,21 @@ +{ + "id": 8362, + "slug": "rapido-q123159344", + "name": "Rapido", + "release_date": null, + "developers": [ + "Ex Libris Group" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123159344" + ], + "created_at": "2026-07-10T10:12:42.635278", + "updated_at": "2026-07-10T10:12:42.635278", + "url": "/v1/software/rapido-q123159344" +} diff --git a/site/public/v1/software/rapido/index.json b/site/public/v1/software/rapido/index.json new file mode 100644 index 000000000000..a57db6dbbc26 --- /dev/null +++ b/site/public/v1/software/rapido/index.json @@ -0,0 +1,19 @@ +{ + "id": 8363, + "slug": "rapido", + "name": "Rapido", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q83827956" + ], + "created_at": "2026-07-10T10:12:42.635278", + "updated_at": "2026-07-10T10:12:42.635278", + "url": "/v1/software/rapido" +} diff --git a/site/public/v1/software/rapidq/index.json b/site/public/v1/software/rapidq/index.json new file mode 100644 index 000000000000..e8469d343d60 --- /dev/null +++ b/site/public/v1/software/rapidq/index.json @@ -0,0 +1,19 @@ +{ + "id": 8364, + "slug": "rapidq", + "name": "RapidQ", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3419577" + ], + "created_at": "2026-07-10T10:12:42.635278", + "updated_at": "2026-07-10T10:12:42.635278", + "url": "/v1/software/rapidq" +} diff --git a/site/public/v1/software/rapidweaver/index.json b/site/public/v1/software/rapidweaver/index.json new file mode 100644 index 000000000000..b6d4f0405f5a --- /dev/null +++ b/site/public/v1/software/rapidweaver/index.json @@ -0,0 +1,19 @@ +{ + "id": 8365, + "slug": "rapidweaver", + "name": "RapidWeaver", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q751370" + ], + "created_at": "2026-07-10T10:12:42.636286", + "updated_at": "2026-07-10T10:12:42.636286", + "url": "/v1/software/rapidweaver" +} diff --git a/site/public/v1/software/raptor/index.json b/site/public/v1/software/raptor/index.json new file mode 100644 index 000000000000..51d8dda85f8d --- /dev/null +++ b/site/public/v1/software/raptor/index.json @@ -0,0 +1,21 @@ +{ + "id": 8366, + "slug": "raptor", + "name": "RAPTOR", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7275801" + ], + "created_at": "2026-07-10T10:12:42.636286", + "updated_at": "2026-07-10T10:12:42.636286", + "url": "/v1/software/raptor" +} diff --git a/site/public/v1/software/raptorx/index.json b/site/public/v1/software/raptorx/index.json new file mode 100644 index 000000000000..89b46c8c2ba8 --- /dev/null +++ b/site/public/v1/software/raptorx/index.json @@ -0,0 +1,19 @@ +{ + "id": 8367, + "slug": "raptorx", + "name": "RaptorX", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7294366" + ], + "created_at": "2026-07-10T10:12:42.636286", + "updated_at": "2026-07-10T10:12:42.636286", + "url": "/v1/software/raptorx" +} diff --git a/site/public/v1/software/rar/index.json b/site/public/v1/software/rar/index.json new file mode 100644 index 000000000000..9dcab1b30937 --- /dev/null +++ b/site/public/v1/software/rar/index.json @@ -0,0 +1,19 @@ +{ + "id": 8368, + "slug": "rar", + "name": "RAR", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62860863" + ], + "created_at": "2026-07-10T10:12:42.637285", + "updated_at": "2026-07-10T10:12:42.637285", + "url": "/v1/software/rar" +} diff --git a/site/public/v1/software/ras-daemon/index.json b/site/public/v1/software/ras-daemon/index.json new file mode 100644 index 000000000000..8055e94860b8 --- /dev/null +++ b/site/public/v1/software/ras-daemon/index.json @@ -0,0 +1,23 @@ +{ + "id": 8369, + "slug": "ras-daemon", + "name": "RAS Daemon", + "release_date": null, + "developers": [ + "Mauro Carvalho Chehab" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "GNU General Public License, version 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120441330" + ], + "created_at": "2026-07-10T10:12:42.637285", + "updated_at": "2026-07-10T10:12:42.637285", + "url": "/v1/software/ras-daemon" +} diff --git a/site/public/v1/software/rasgir-check/index.json b/site/public/v1/software/rasgir-check/index.json new file mode 100644 index 000000000000..80cf1c95edc6 --- /dev/null +++ b/site/public/v1/software/rasgir-check/index.json @@ -0,0 +1,21 @@ +{ + "id": 8370, + "slug": "rasgir-check", + "name": "Rasgir check", + "release_date": null, + "developers": [ + "TaxiApps" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138388826" + ], + "created_at": "2026-07-10T10:12:42.637285", + "updated_at": "2026-07-10T10:12:42.637285", + "url": "/v1/software/rasgir-check" +} diff --git a/site/public/v1/software/rask-ai/index.json b/site/public/v1/software/rask-ai/index.json new file mode 100644 index 000000000000..ed0b5fd1a8d9 --- /dev/null +++ b/site/public/v1/software/rask-ai/index.json @@ -0,0 +1,19 @@ +{ + "id": 8371, + "slug": "rask-ai", + "name": "Rask AI", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121547904" + ], + "created_at": "2026-07-10T10:12:42.638284", + "updated_at": "2026-07-10T10:12:42.638284", + "url": "/v1/software/rask-ai" +} diff --git a/site/public/v1/software/raspberrypi-firmware/index.json b/site/public/v1/software/raspberrypi-firmware/index.json new file mode 100644 index 000000000000..2280085a43ed --- /dev/null +++ b/site/public/v1/software/raspberrypi-firmware/index.json @@ -0,0 +1,19 @@ +{ + "id": 8372, + "slug": "raspberrypi-firmware", + "name": "raspberrypi-firmware", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975409" + ], + "created_at": "2026-07-10T10:12:42.638284", + "updated_at": "2026-07-10T10:12:42.638284", + "url": "/v1/software/raspberrypi-firmware" +} diff --git a/site/public/v1/software/raspberrypi-sources/index.json b/site/public/v1/software/raspberrypi-sources/index.json new file mode 100644 index 000000000000..615c76c90969 --- /dev/null +++ b/site/public/v1/software/raspberrypi-sources/index.json @@ -0,0 +1,19 @@ +{ + "id": 8373, + "slug": "raspberrypi-sources", + "name": "raspberrypi-sources", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975412" + ], + "created_at": "2026-07-10T10:12:42.638284", + "updated_at": "2026-07-10T10:12:42.638284", + "url": "/v1/software/raspberrypi-sources" +} diff --git a/site/public/v1/software/raster3d/index.json b/site/public/v1/software/raster3d/index.json new file mode 100644 index 000000000000..d07e16fb5eef --- /dev/null +++ b/site/public/v1/software/raster3d/index.json @@ -0,0 +1,19 @@ +{ + "id": 8374, + "slug": "raster3d", + "name": "Raster3D", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62860706" + ], + "created_at": "2026-07-10T10:12:42.639380", + "updated_at": "2026-07-10T10:12:42.639380", + "url": "/v1/software/raster3d" +} diff --git a/site/public/v1/software/ratfiv/index.json b/site/public/v1/software/ratfiv/index.json new file mode 100644 index 000000000000..ccc17b984255 --- /dev/null +++ b/site/public/v1/software/ratfiv/index.json @@ -0,0 +1,19 @@ +{ + "id": 8375, + "slug": "ratfiv", + "name": "Ratfiv", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7295568" + ], + "created_at": "2026-07-10T10:12:42.639380", + "updated_at": "2026-07-10T10:12:42.639380", + "url": "/v1/software/ratfiv" +} diff --git a/site/public/v1/software/rational-publishing-engine/index.json b/site/public/v1/software/rational-publishing-engine/index.json new file mode 100644 index 000000000000..b8ad9f05b396 --- /dev/null +++ b/site/public/v1/software/rational-publishing-engine/index.json @@ -0,0 +1,23 @@ +{ + "id": 8376, + "slug": "rational-publishing-engine", + "name": "Rational Publishing Engine", + "release_date": "2008-01-01", + "developers": [ + "IBM" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Java" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16928054" + ], + "created_at": "2026-07-10T10:12:42.639380", + "updated_at": "2026-07-10T10:12:42.639380", + "url": "/v1/software/rational-publishing-engine" +} diff --git a/site/public/v1/software/rational-rhapsody/index.json b/site/public/v1/software/rational-rhapsody/index.json new file mode 100644 index 000000000000..423422352e9b --- /dev/null +++ b/site/public/v1/software/rational-rhapsody/index.json @@ -0,0 +1,21 @@ +{ + "id": 8377, + "slug": "rational-rhapsody", + "name": "Rational Rhapsody", + "release_date": null, + "developers": [ + "IBM" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1977027" + ], + "created_at": "2026-07-10T10:12:42.640336", + "updated_at": "2026-07-10T10:12:42.640336", + "url": "/v1/software/rational-rhapsody" +} diff --git a/site/public/v1/software/rats-random-accessible-text-systems/index.json b/site/public/v1/software/rats-random-accessible-text-systems/index.json new file mode 100644 index 000000000000..144f63ed94cb --- /dev/null +++ b/site/public/v1/software/rats-random-accessible-text-systems/index.json @@ -0,0 +1,19 @@ +{ + "id": 8378, + "slug": "rats-random-accessible-text-systems", + "name": "RATS (Random-Accessible Text Systems)", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084514" + ], + "created_at": "2026-07-10T10:12:42.640336", + "updated_at": "2026-07-10T10:12:42.640336", + "url": "/v1/software/rats-random-accessible-text-systems" +} diff --git a/site/public/v1/software/raven-lite/index.json b/site/public/v1/software/raven-lite/index.json new file mode 100644 index 000000000000..61319744ec70 --- /dev/null +++ b/site/public/v1/software/raven-lite/index.json @@ -0,0 +1,19 @@ +{ + "id": 8379, + "slug": "raven-lite", + "name": "Raven Lite", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127421219" + ], + "created_at": "2026-07-10T10:12:42.640336", + "updated_at": "2026-07-10T10:12:42.640336", + "url": "/v1/software/raven-lite" +} diff --git a/site/public/v1/software/raw/index.json b/site/public/v1/software/raw/index.json new file mode 100644 index 000000000000..aa0f02af6c4e --- /dev/null +++ b/site/public/v1/software/raw/index.json @@ -0,0 +1,19 @@ +{ + "id": 8380, + "slug": "raw", + "name": "RAW", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084515" + ], + "created_at": "2026-07-10T10:12:42.640336", + "updated_at": "2026-07-10T10:12:42.641378", + "url": "/v1/software/raw" +} diff --git a/site/public/v1/software/rawdog/index.json b/site/public/v1/software/rawdog/index.json new file mode 100644 index 000000000000..7f7c9d4f76ed --- /dev/null +++ b/site/public/v1/software/rawdog/index.json @@ -0,0 +1,19 @@ +{ + "id": 8381, + "slug": "rawdog", + "name": "rawdog", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62863023" + ], + "created_at": "2026-07-10T10:12:42.641378", + "updated_at": "2026-07-10T10:12:42.641378", + "url": "/v1/software/rawdog" +} diff --git a/site/public/v1/software/rawzor/index.json b/site/public/v1/software/rawzor/index.json new file mode 100644 index 000000000000..7537b31467a8 --- /dev/null +++ b/site/public/v1/software/rawzor/index.json @@ -0,0 +1,19 @@ +{ + "id": 8382, + "slug": "rawzor", + "name": "Rawzor", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7297087" + ], + "created_at": "2026-07-10T10:12:42.641378", + "updated_at": "2026-07-10T10:12:42.641378", + "url": "/v1/software/rawzor" +} diff --git a/site/public/v1/software/ray-dream-studio/index.json b/site/public/v1/software/ray-dream-studio/index.json new file mode 100644 index 000000000000..781de3aa5413 --- /dev/null +++ b/site/public/v1/software/ray-dream-studio/index.json @@ -0,0 +1,21 @@ +{ + "id": 8383, + "slug": "ray-dream-studio", + "name": "Ray Dream Studio", + "release_date": null, + "developers": [ + "MetaCreations" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7297416" + ], + "created_at": "2026-07-10T10:12:42.642356", + "updated_at": "2026-07-10T10:12:42.642356", + "url": "/v1/software/ray-dream-studio" +} diff --git a/site/public/v1/software/raycast/index.json b/site/public/v1/software/raycast/index.json new file mode 100644 index 000000000000..ed8cb92a6ab9 --- /dev/null +++ b/site/public/v1/software/raycast/index.json @@ -0,0 +1,19 @@ +{ + "id": 8384, + "slug": "raycast", + "name": "Raycast", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124372806" + ], + "created_at": "2026-07-10T10:12:42.642356", + "updated_at": "2026-07-10T10:12:42.642356", + "url": "/v1/software/raycast" +} diff --git a/site/public/v1/software/razor/index.json b/site/public/v1/software/razor/index.json new file mode 100644 index 000000000000..ad5922fb0f36 --- /dev/null +++ b/site/public/v1/software/razor/index.json @@ -0,0 +1,19 @@ +{ + "id": 8385, + "slug": "razor", + "name": "razor", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63064868" + ], + "created_at": "2026-07-10T10:12:42.642356", + "updated_at": "2026-07-10T10:12:42.642356", + "url": "/v1/software/razor" +} diff --git a/site/public/v1/software/razzshell/index.json b/site/public/v1/software/razzshell/index.json new file mode 100644 index 000000000000..25e152401a0c --- /dev/null +++ b/site/public/v1/software/razzshell/index.json @@ -0,0 +1,21 @@ +{ + "id": 8386, + "slug": "razzshell", + "name": "razzshell", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130902468" + ], + "created_at": "2026-07-10T10:12:42.642356", + "updated_at": "2026-07-10T10:12:42.642356", + "url": "/v1/software/razzshell" +} diff --git a/site/public/v1/software/rbbs-pc/index.json b/site/public/v1/software/rbbs-pc/index.json new file mode 100644 index 000000000000..d18d224fa09c --- /dev/null +++ b/site/public/v1/software/rbbs-pc/index.json @@ -0,0 +1,19 @@ +{ + "id": 8387, + "slug": "rbbs-pc", + "name": "RBBS-PC", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7275913" + ], + "created_at": "2026-07-10T10:12:42.643378", + "updated_at": "2026-07-10T10:12:42.643378", + "url": "/v1/software/rbbs-pc" +} diff --git a/site/public/v1/software/rblcheck/index.json b/site/public/v1/software/rblcheck/index.json new file mode 100644 index 000000000000..f049b270f363 --- /dev/null +++ b/site/public/v1/software/rblcheck/index.json @@ -0,0 +1,19 @@ +{ + "id": 8388, + "slug": "rblcheck", + "name": "rblcheck", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62860694" + ], + "created_at": "2026-07-10T10:12:42.643378", + "updated_at": "2026-07-10T10:12:42.643378", + "url": "/v1/software/rblcheck" +} diff --git a/site/public/v1/software/rbldnsd/index.json b/site/public/v1/software/rbldnsd/index.json new file mode 100644 index 000000000000..6f29b99d5145 --- /dev/null +++ b/site/public/v1/software/rbldnsd/index.json @@ -0,0 +1,19 @@ +{ + "id": 8389, + "slug": "rbldnsd", + "name": "rbldnsd", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62860688" + ], + "created_at": "2026-07-10T10:12:42.644386", + "updated_at": "2026-07-10T10:12:42.644386", + "url": "/v1/software/rbldnsd" +} diff --git a/site/public/v1/software/rcuda/index.json b/site/public/v1/software/rcuda/index.json new file mode 100644 index 000000000000..1506d8ed42fe --- /dev/null +++ b/site/public/v1/software/rcuda/index.json @@ -0,0 +1,21 @@ +{ + "id": 8390, + "slug": "rcuda", + "name": "rCUDA", + "release_date": null, + "developers": [ + "Technical University of Valencia" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17042806" + ], + "created_at": "2026-07-10T10:12:42.644386", + "updated_at": "2026-07-10T10:12:42.644386", + "url": "/v1/software/rcuda" +} diff --git a/site/public/v1/software/rcx-command-center/index.json b/site/public/v1/software/rcx-command-center/index.json new file mode 100644 index 000000000000..6086150de1c7 --- /dev/null +++ b/site/public/v1/software/rcx-command-center/index.json @@ -0,0 +1,19 @@ +{ + "id": 8391, + "slug": "rcx-command-center", + "name": "RCX Command Center", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3415106" + ], + "created_at": "2026-07-10T10:12:42.644386", + "updated_at": "2026-07-10T10:12:42.644386", + "url": "/v1/software/rcx-command-center" +} diff --git a/site/public/v1/software/rdf-gravity/index.json b/site/public/v1/software/rdf-gravity/index.json new file mode 100644 index 000000000000..cf6c51b6ac8f --- /dev/null +++ b/site/public/v1/software/rdf-gravity/index.json @@ -0,0 +1,19 @@ +{ + "id": 8392, + "slug": "rdf-gravity", + "name": "RDF Gravity", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084518" + ], + "created_at": "2026-07-10T10:12:42.645339", + "updated_at": "2026-07-10T10:12:42.645339", + "url": "/v1/software/rdf-gravity" +} diff --git a/site/public/v1/software/rdf2graph/index.json b/site/public/v1/software/rdf2graph/index.json new file mode 100644 index 000000000000..2b4c7b22c1c2 --- /dev/null +++ b/site/public/v1/software/rdf2graph/index.json @@ -0,0 +1,21 @@ +{ + "id": 8393, + "slug": "rdf2graph", + "name": "RDF2Graph", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q56649340" + ], + "created_at": "2026-07-10T10:12:42.645339", + "updated_at": "2026-07-10T10:12:42.645339", + "url": "/v1/software/rdf2graph" +} diff --git a/site/public/v1/software/rdf2svg-rhizomik/index.json b/site/public/v1/software/rdf2svg-rhizomik/index.json new file mode 100644 index 000000000000..8117b4abc1f7 --- /dev/null +++ b/site/public/v1/software/rdf2svg-rhizomik/index.json @@ -0,0 +1,19 @@ +{ + "id": 8394, + "slug": "rdf2svg-rhizomik", + "name": "RDF2SVG (Rhizomik)", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084517" + ], + "created_at": "2026-07-10T10:12:42.645339", + "updated_at": "2026-07-10T10:12:42.645339", + "url": "/v1/software/rdf2svg-rhizomik" +} diff --git a/site/public/v1/software/rdfox/index.json b/site/public/v1/software/rdfox/index.json new file mode 100644 index 000000000000..5c534beb9b77 --- /dev/null +++ b/site/public/v1/software/rdfox/index.json @@ -0,0 +1,23 @@ +{ + "id": 8395, + "slug": "rdfox", + "name": "RDFox", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [ + "graphical user interface" + ], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105745603" + ], + "created_at": "2026-07-10T10:12:42.646336", + "updated_at": "2026-07-10T10:12:42.646336", + "url": "/v1/software/rdfox" +} diff --git a/site/public/v1/software/rdio/index.json b/site/public/v1/software/rdio/index.json new file mode 100644 index 000000000000..fe88d58b4d8e --- /dev/null +++ b/site/public/v1/software/rdio/index.json @@ -0,0 +1,19 @@ +{ + "id": 8396, + "slug": "rdio", + "name": "Rdio", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2134497" + ], + "created_at": "2026-07-10T10:12:42.646336", + "updated_at": "2026-07-10T10:12:42.646336", + "url": "/v1/software/rdio" +} diff --git a/site/public/v1/software/rdm-server/index.json b/site/public/v1/software/rdm-server/index.json new file mode 100644 index 000000000000..460ba5241ade --- /dev/null +++ b/site/public/v1/software/rdm-server/index.json @@ -0,0 +1,19 @@ +{ + "id": 8397, + "slug": "rdm-server", + "name": "RDM Server", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7276242" + ], + "created_at": "2026-07-10T10:12:42.646336", + "updated_at": "2026-07-10T10:12:42.646336", + "url": "/v1/software/rdm-server" +} diff --git a/site/public/v1/software/rdup/index.json b/site/public/v1/software/rdup/index.json new file mode 100644 index 000000000000..fcdda61a6ff4 --- /dev/null +++ b/site/public/v1/software/rdup/index.json @@ -0,0 +1,19 @@ +{ + "id": 8398, + "slug": "rdup", + "name": "rdup", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62862790" + ], + "created_at": "2026-07-10T10:12:42.647281", + "updated_at": "2026-07-10T10:12:42.647281", + "url": "/v1/software/rdup" +} diff --git a/site/public/v1/software/re-flex/index.json b/site/public/v1/software/re-flex/index.json new file mode 100644 index 000000000000..2bb009d1f67c --- /dev/null +++ b/site/public/v1/software/re-flex/index.json @@ -0,0 +1,19 @@ +{ + "id": 8399, + "slug": "re-flex", + "name": "RE/flex", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140133467" + ], + "created_at": "2026-07-10T10:12:42.647281", + "updated_at": "2026-07-10T10:12:42.647281", + "url": "/v1/software/re-flex" +} diff --git a/site/public/v1/software/react-checkout-pro/index.json b/site/public/v1/software/react-checkout-pro/index.json new file mode 100644 index 000000000000..2af4c94fbabd --- /dev/null +++ b/site/public/v1/software/react-checkout-pro/index.json @@ -0,0 +1,23 @@ +{ + "id": 8400, + "slug": "react-checkout-pro", + "name": "React Checkout Pro", + "release_date": null, + "developers": [ + "Towering Media" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "PHP" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140279057" + ], + "created_at": "2026-07-10T10:12:42.647281", + "updated_at": "2026-07-10T10:12:42.647281", + "url": "/v1/software/react-checkout-pro" +} diff --git a/site/public/v1/software/react-native/index.json b/site/public/v1/software/react-native/index.json new file mode 100644 index 000000000000..fc951e68977b --- /dev/null +++ b/site/public/v1/software/react-native/index.json @@ -0,0 +1,29 @@ +{ + "id": 8401, + "slug": "react-native", + "name": "React Native", + "release_date": null, + "developers": [ + "Meta" + ], + "publishers": [], + "operating_systems": [ + "cross-platform" + ], + "programming_languages": [ + "Java", + "Python", + "Objective-C" + ], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q55774523" + ], + "created_at": "2026-07-10T10:12:42.647281", + "updated_at": "2026-07-10T10:12:42.647281", + "url": "/v1/software/react-native" +} diff --git a/site/public/v1/software/reactive-blocks/index.json b/site/public/v1/software/reactive-blocks/index.json new file mode 100644 index 000000000000..17c640817fc0 --- /dev/null +++ b/site/public/v1/software/reactive-blocks/index.json @@ -0,0 +1,19 @@ +{ + "id": 8402, + "slug": "reactive-blocks", + "name": "Reactive Blocks", + "release_date": "2011-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28403573" + ], + "created_at": "2026-07-10T10:12:42.648281", + "updated_at": "2026-07-10T10:12:42.648281", + "url": "/v1/software/reactive-blocks" +} diff --git a/site/public/v1/software/reactive-streams/index.json b/site/public/v1/software/reactive-streams/index.json new file mode 100644 index 000000000000..ede5ae8b783f --- /dev/null +++ b/site/public/v1/software/reactive-streams/index.json @@ -0,0 +1,19 @@ +{ + "id": 8403, + "slug": "reactive-streams", + "name": "Reactive Streams", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22342969" + ], + "created_at": "2026-07-10T10:12:42.648281", + "updated_at": "2026-07-10T10:12:42.648281", + "url": "/v1/software/reactive-streams" +} diff --git a/site/public/v1/software/reactivedata/index.json b/site/public/v1/software/reactivedata/index.json new file mode 100644 index 000000000000..9ec9a91185c6 --- /dev/null +++ b/site/public/v1/software/reactivedata/index.json @@ -0,0 +1,19 @@ +{ + "id": 8404, + "slug": "reactivedata", + "name": "reactiveData", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975414" + ], + "created_at": "2026-07-10T10:12:42.648281", + "updated_at": "2026-07-10T10:12:42.648281", + "url": "/v1/software/reactivedata" +} diff --git a/site/public/v1/software/reactor/index.json b/site/public/v1/software/reactor/index.json new file mode 100644 index 000000000000..a023b1d597de --- /dev/null +++ b/site/public/v1/software/reactor/index.json @@ -0,0 +1,19 @@ +{ + "id": 8405, + "slug": "reactor", + "name": "Reactor", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4048052" + ], + "created_at": "2026-07-10T10:12:42.649286", + "updated_at": "2026-07-10T10:12:42.649286", + "url": "/v1/software/reactor" +} diff --git a/site/public/v1/software/read-edid/index.json b/site/public/v1/software/read-edid/index.json new file mode 100644 index 000000000000..1b5ba3750f10 --- /dev/null +++ b/site/public/v1/software/read-edid/index.json @@ -0,0 +1,19 @@ +{ + "id": 8406, + "slug": "read-edid", + "name": "read-edid", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62862731" + ], + "created_at": "2026-07-10T10:12:42.649286", + "updated_at": "2026-07-10T10:12:42.649286", + "url": "/v1/software/read-edid" +} diff --git a/site/public/v1/software/read-only-domain-controller/index.json b/site/public/v1/software/read-only-domain-controller/index.json new file mode 100644 index 000000000000..b93293495174 --- /dev/null +++ b/site/public/v1/software/read-only-domain-controller/index.json @@ -0,0 +1,19 @@ +{ + "id": 8407, + "slug": "read-only-domain-controller", + "name": "read-only domain controller", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1314677" + ], + "created_at": "2026-07-10T10:12:42.650286", + "updated_at": "2026-07-10T10:12:42.650286", + "url": "/v1/software/read-only-domain-controller" +} diff --git a/site/public/v1/software/readability-js/index.json b/site/public/v1/software/readability-js/index.json new file mode 100644 index 000000000000..06e32b9a7569 --- /dev/null +++ b/site/public/v1/software/readability-js/index.json @@ -0,0 +1,19 @@ +{ + "id": 8408, + "slug": "readability-js", + "name": "Readability.js", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q103478597" + ], + "created_at": "2026-07-10T10:12:42.650286", + "updated_at": "2026-07-10T10:12:42.650286", + "url": "/v1/software/readability-js" +} diff --git a/site/public/v1/software/readium-lcp/index.json b/site/public/v1/software/readium-lcp/index.json new file mode 100644 index 000000000000..5af14f009557 --- /dev/null +++ b/site/public/v1/software/readium-lcp/index.json @@ -0,0 +1,19 @@ +{ + "id": 8409, + "slug": "readium-lcp", + "name": "Readium LCP", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130395447" + ], + "created_at": "2026-07-10T10:12:42.650286", + "updated_at": "2026-07-10T10:12:42.650286", + "url": "/v1/software/readium-lcp" +} diff --git a/site/public/v1/software/readless/index.json b/site/public/v1/software/readless/index.json new file mode 100644 index 000000000000..64a2417ea77f --- /dev/null +++ b/site/public/v1/software/readless/index.json @@ -0,0 +1,19 @@ +{ + "id": 8410, + "slug": "readless", + "name": "Readless", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139629641" + ], + "created_at": "2026-07-10T10:12:42.650286", + "updated_at": "2026-07-10T10:12:42.650286", + "url": "/v1/software/readless" +} diff --git a/site/public/v1/software/readmaniac/index.json b/site/public/v1/software/readmaniac/index.json new file mode 100644 index 000000000000..85584207532d --- /dev/null +++ b/site/public/v1/software/readmaniac/index.json @@ -0,0 +1,21 @@ +{ + "id": 8411, + "slug": "readmaniac", + "name": "ReadManiac", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Java" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4048051" + ], + "created_at": "2026-07-10T10:12:42.651284", + "updated_at": "2026-07-10T10:12:42.651284", + "url": "/v1/software/readmaniac" +} diff --git a/site/public/v1/software/readplease/index.json b/site/public/v1/software/readplease/index.json new file mode 100644 index 000000000000..adf9c56fd80d --- /dev/null +++ b/site/public/v1/software/readplease/index.json @@ -0,0 +1,19 @@ +{ + "id": 8412, + "slug": "readplease", + "name": "ReadPlease", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7300350" + ], + "created_at": "2026-07-10T10:12:42.651284", + "updated_at": "2026-07-10T10:12:42.651284", + "url": "/v1/software/readplease" +} diff --git a/site/public/v1/software/readware-information-processor/index.json b/site/public/v1/software/readware-information-processor/index.json new file mode 100644 index 000000000000..12153b85d081 --- /dev/null +++ b/site/public/v1/software/readware-information-processor/index.json @@ -0,0 +1,19 @@ +{ + "id": 8413, + "slug": "readware-information-processor", + "name": "Readware Information Processor", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087704" + ], + "created_at": "2026-07-10T10:12:42.652284", + "updated_at": "2026-07-10T10:12:42.652284", + "url": "/v1/software/readware-information-processor" +} diff --git a/site/public/v1/software/ready-set-go/index.json b/site/public/v1/software/ready-set-go/index.json new file mode 100644 index 000000000000..ff134e444a80 --- /dev/null +++ b/site/public/v1/software/ready-set-go/index.json @@ -0,0 +1,19 @@ +{ + "id": 8414, + "slug": "ready-set-go", + "name": "Ready, Set, Go!", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3930961" + ], + "created_at": "2026-07-10T10:12:42.652284", + "updated_at": "2026-07-10T10:12:42.652284", + "url": "/v1/software/ready-set-go" +} diff --git a/site/public/v1/software/readyboost/index.json b/site/public/v1/software/readyboost/index.json new file mode 100644 index 000000000000..560007cd123b --- /dev/null +++ b/site/public/v1/software/readyboost/index.json @@ -0,0 +1,19 @@ +{ + "id": 8415, + "slug": "readyboost", + "name": "ReadyBoost", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q426740" + ], + "created_at": "2026-07-10T10:12:42.652284", + "updated_at": "2026-07-10T10:12:42.652284", + "url": "/v1/software/readyboost" +} diff --git a/site/public/v1/software/real-time-audiosuite/index.json b/site/public/v1/software/real-time-audiosuite/index.json new file mode 100644 index 000000000000..ce360c5f19e7 --- /dev/null +++ b/site/public/v1/software/real-time-audiosuite/index.json @@ -0,0 +1,21 @@ +{ + "id": 8416, + "slug": "real-time-audiosuite", + "name": "Real Time AudioSuite", + "release_date": null, + "developers": [ + "Avid Technology" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2071453" + ], + "created_at": "2026-07-10T10:12:42.652284", + "updated_at": "2026-07-10T10:12:42.652284", + "url": "/v1/software/real-time-audiosuite" +} diff --git a/site/public/v1/software/real-time-developer-studio/index.json b/site/public/v1/software/real-time-developer-studio/index.json new file mode 100644 index 000000000000..b332b1a4cfcf --- /dev/null +++ b/site/public/v1/software/real-time-developer-studio/index.json @@ -0,0 +1,19 @@ +{ + "id": 8417, + "slug": "real-time-developer-studio", + "name": "Real Time Developer Studio", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17148438" + ], + "created_at": "2026-07-10T10:12:42.653284", + "updated_at": "2026-07-10T10:12:42.653284", + "url": "/v1/software/real-time-developer-studio" +} diff --git a/site/public/v1/software/real-time-dispatching/index.json b/site/public/v1/software/real-time-dispatching/index.json new file mode 100644 index 000000000000..06bdf2a101a4 --- /dev/null +++ b/site/public/v1/software/real-time-dispatching/index.json @@ -0,0 +1,19 @@ +{ + "id": 8418, + "slug": "real-time-dispatching", + "name": "Real-Time Dispatching", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7300767" + ], + "created_at": "2026-07-10T10:12:42.653284", + "updated_at": "2026-07-10T10:12:42.653284", + "url": "/v1/software/real-time-dispatching" +} diff --git a/site/public/v1/software/real-time-java/index.json b/site/public/v1/software/real-time-java/index.json new file mode 100644 index 000000000000..4099ede850d6 --- /dev/null +++ b/site/public/v1/software/real-time-java/index.json @@ -0,0 +1,19 @@ +{ + "id": 8419, + "slug": "real-time-java", + "name": "Real time Java", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1373903" + ], + "created_at": "2026-07-10T10:12:42.653284", + "updated_at": "2026-07-10T10:12:42.653284", + "url": "/v1/software/real-time-java" +} diff --git a/site/public/v1/software/real-world-racing/index.json b/site/public/v1/software/real-world-racing/index.json new file mode 100644 index 000000000000..ae887a40c590 --- /dev/null +++ b/site/public/v1/software/real-world-racing/index.json @@ -0,0 +1,19 @@ +{ + "id": 8420, + "slug": "real-world-racing", + "name": "Real World Racing", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q98971801" + ], + "created_at": "2026-07-10T10:12:42.654340", + "updated_at": "2026-07-10T10:12:42.654340", + "url": "/v1/software/real-world-racing" +} diff --git a/site/public/v1/software/realdownloader/index.json b/site/public/v1/software/realdownloader/index.json new file mode 100644 index 000000000000..3fb83aa7eee7 --- /dev/null +++ b/site/public/v1/software/realdownloader/index.json @@ -0,0 +1,21 @@ +{ + "id": 8421, + "slug": "realdownloader", + "name": "RealDownloader", + "release_date": null, + "developers": [ + "RealNetworks" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q21161093" + ], + "created_at": "2026-07-10T10:12:42.654340", + "updated_at": "2026-07-10T10:12:42.654340", + "url": "/v1/software/realdownloader" +} diff --git a/site/public/v1/software/realflow/index.json b/site/public/v1/software/realflow/index.json new file mode 100644 index 000000000000..1ac8ff6f3d2f --- /dev/null +++ b/site/public/v1/software/realflow/index.json @@ -0,0 +1,24 @@ +{ + "id": 8422, + "slug": "realflow", + "name": "RealFlow", + "release_date": null, + "developers": [ + "Next Limit Technologies" + ], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1331305" + ], + "created_at": "2026-07-10T10:12:42.654340", + "updated_at": "2026-07-10T10:12:42.654340", + "url": "/v1/software/realflow" +} diff --git a/site/public/v1/software/reality-lab/index.json b/site/public/v1/software/reality-lab/index.json new file mode 100644 index 000000000000..ad30eec39569 --- /dev/null +++ b/site/public/v1/software/reality-lab/index.json @@ -0,0 +1,19 @@ +{ + "id": 8423, + "slug": "reality-lab", + "name": "Reality Lab", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7301255" + ], + "created_at": "2026-07-10T10:12:42.655335", + "updated_at": "2026-07-10T10:12:42.655335", + "url": "/v1/software/reality-lab" +} diff --git a/site/public/v1/software/realitycapture/index.json b/site/public/v1/software/realitycapture/index.json new file mode 100644 index 000000000000..6c0b821526c1 --- /dev/null +++ b/site/public/v1/software/realitycapture/index.json @@ -0,0 +1,21 @@ +{ + "id": 8424, + "slug": "realitycapture", + "name": "RealityCapture", + "release_date": null, + "developers": [ + "Capturing Reality" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28324868" + ], + "created_at": "2026-07-10T10:12:42.655335", + "updated_at": "2026-07-10T10:12:42.655335", + "url": "/v1/software/realitycapture" +} diff --git a/site/public/v1/software/realone-player/index.json b/site/public/v1/software/realone-player/index.json new file mode 100644 index 000000000000..f868e0ff729d --- /dev/null +++ b/site/public/v1/software/realone-player/index.json @@ -0,0 +1,19 @@ +{ + "id": 8425, + "slug": "realone-player", + "name": "RealOne Player", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121095694" + ], + "created_at": "2026-07-10T10:12:42.655335", + "updated_at": "2026-07-10T10:12:42.655335", + "url": "/v1/software/realone-player" +} diff --git a/site/public/v1/software/realpc/index.json b/site/public/v1/software/realpc/index.json new file mode 100644 index 000000000000..85abd7970e55 --- /dev/null +++ b/site/public/v1/software/realpc/index.json @@ -0,0 +1,19 @@ +{ + "id": 8426, + "slug": "realpc", + "name": "RealPC", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7300816" + ], + "created_at": "2026-07-10T10:12:42.656370", + "updated_at": "2026-07-10T10:12:42.656370", + "url": "/v1/software/realpc" +} diff --git a/site/public/v1/software/realsky/index.json b/site/public/v1/software/realsky/index.json new file mode 100644 index 000000000000..b011c7ea2277 --- /dev/null +++ b/site/public/v1/software/realsky/index.json @@ -0,0 +1,21 @@ +{ + "id": 8427, + "slug": "realsky", + "name": "RealSky", + "release_date": null, + "developers": [], + "publishers": [ + "Astronomical Society of the Pacific" + ], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7300818" + ], + "created_at": "2026-07-10T10:12:42.656370", + "updated_at": "2026-07-10T10:12:42.656370", + "url": "/v1/software/realsky" +} diff --git a/site/public/v1/software/realsoft-3d/index.json b/site/public/v1/software/realsoft-3d/index.json new file mode 100644 index 000000000000..56c78b149475 --- /dev/null +++ b/site/public/v1/software/realsoft-3d/index.json @@ -0,0 +1,24 @@ +{ + "id": 8428, + "slug": "realsoft-3d", + "name": "Realsoft 3D", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "IRIX", + "AmigaOS", + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2134861" + ], + "created_at": "2026-07-10T10:12:42.656370", + "updated_at": "2026-07-10T10:12:42.656370", + "url": "/v1/software/realsoft-3d" +} diff --git a/site/public/v1/software/realtek-media-player/index.json b/site/public/v1/software/realtek-media-player/index.json new file mode 100644 index 000000000000..c2fdac797c81 --- /dev/null +++ b/site/public/v1/software/realtek-media-player/index.json @@ -0,0 +1,21 @@ +{ + "id": 8429, + "slug": "realtek-media-player", + "name": "Realtek Media Player", + "release_date": null, + "developers": [ + "Realtek" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6102255" + ], + "created_at": "2026-07-10T10:12:42.656370", + "updated_at": "2026-07-10T10:12:42.656370", + "url": "/v1/software/realtek-media-player" +} diff --git a/site/public/v1/software/realthings/index.json b/site/public/v1/software/realthings/index.json new file mode 100644 index 000000000000..a5c900187157 --- /dev/null +++ b/site/public/v1/software/realthings/index.json @@ -0,0 +1,21 @@ +{ + "id": 8430, + "slug": "realthings", + "name": "RealThings", + "release_date": null, + "developers": [ + "IBM" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7300824" + ], + "created_at": "2026-07-10T10:12:42.657358", + "updated_at": "2026-07-10T10:12:42.657358", + "url": "/v1/software/realthings" +} diff --git a/site/public/v1/software/reaper/index.json b/site/public/v1/software/reaper/index.json new file mode 100644 index 000000000000..8ba60facb108 --- /dev/null +++ b/site/public/v1/software/reaper/index.json @@ -0,0 +1,21 @@ +{ + "id": 8431, + "slug": "reaper", + "name": "Reaper", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "TENEX" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6102262" + ], + "created_at": "2026-07-10T10:12:42.657358", + "updated_at": "2026-07-10T10:12:42.657358", + "url": "/v1/software/reaper" +} diff --git a/site/public/v1/software/reason/index.json b/site/public/v1/software/reason/index.json new file mode 100644 index 000000000000..09657454be66 --- /dev/null +++ b/site/public/v1/software/reason/index.json @@ -0,0 +1,19 @@ +{ + "id": 8432, + "slug": "reason", + "name": "Reason", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11890335" + ], + "created_at": "2026-07-10T10:12:42.657358", + "updated_at": "2026-07-10T10:12:42.657358", + "url": "/v1/software/reason" +} diff --git a/site/public/v1/software/rebelle/index.json b/site/public/v1/software/rebelle/index.json new file mode 100644 index 000000000000..549faa2c2002 --- /dev/null +++ b/site/public/v1/software/rebelle/index.json @@ -0,0 +1,19 @@ +{ + "id": 8433, + "slug": "rebelle", + "name": "Rebelle", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126391615" + ], + "created_at": "2026-07-10T10:12:42.658339", + "updated_at": "2026-07-10T10:12:42.658339", + "url": "/v1/software/rebelle" +} diff --git a/site/public/v1/software/rebol/index.json b/site/public/v1/software/rebol/index.json new file mode 100644 index 000000000000..d79c483b93be --- /dev/null +++ b/site/public/v1/software/rebol/index.json @@ -0,0 +1,22 @@ +{ + "id": 8434, + "slug": "rebol", + "name": "REBOL", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Apache Software License 2.0", + "Apache License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1359171" + ], + "created_at": "2026-07-10T10:12:42.658339", + "updated_at": "2026-07-10T10:12:42.658339", + "url": "/v1/software/rebol" +} diff --git a/site/public/v1/software/rebtel/index.json b/site/public/v1/software/rebtel/index.json new file mode 100644 index 000000000000..1844f7b252be --- /dev/null +++ b/site/public/v1/software/rebtel/index.json @@ -0,0 +1,19 @@ +{ + "id": 8435, + "slug": "rebtel", + "name": "Rebtel", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7302216" + ], + "created_at": "2026-07-10T10:12:42.658339", + "updated_at": "2026-07-10T10:12:42.658339", + "url": "/v1/software/rebtel" +} diff --git a/site/public/v1/software/rebulk/index.json b/site/public/v1/software/rebulk/index.json new file mode 100644 index 000000000000..ff596c481696 --- /dev/null +++ b/site/public/v1/software/rebulk/index.json @@ -0,0 +1,21 @@ +{ + "id": 8436, + "slug": "rebulk", + "name": "rebulk", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975416" + ], + "created_at": "2026-07-10T10:12:42.659350", + "updated_at": "2026-07-10T10:12:42.659350", + "url": "/v1/software/rebulk" +} diff --git a/site/public/v1/software/recaptcha/index.json b/site/public/v1/software/recaptcha/index.json new file mode 100644 index 000000000000..a68c4badffc8 --- /dev/null +++ b/site/public/v1/software/recaptcha/index.json @@ -0,0 +1,21 @@ +{ + "id": 8437, + "slug": "recaptcha", + "name": "reCAPTCHA", + "release_date": null, + "developers": [ + "Luis von Ahn" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q188054" + ], + "created_at": "2026-07-10T10:12:42.659350", + "updated_at": "2026-07-10T10:12:42.659350", + "url": "/v1/software/recaptcha" +} diff --git a/site/public/v1/software/reception-genie/index.json b/site/public/v1/software/reception-genie/index.json new file mode 100644 index 000000000000..098f1e9c7ced --- /dev/null +++ b/site/public/v1/software/reception-genie/index.json @@ -0,0 +1,21 @@ +{ + "id": 8438, + "slug": "reception-genie", + "name": "Reception Genie", + "release_date": null, + "developers": [ + "Otterco Ltd" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139718019" + ], + "created_at": "2026-07-10T10:12:42.659350", + "updated_at": "2026-07-10T10:12:42.659350", + "url": "/v1/software/reception-genie" +} diff --git a/site/public/v1/software/reception-reader/index.json b/site/public/v1/software/reception-reader/index.json new file mode 100644 index 000000000000..9cbb6cdf711d --- /dev/null +++ b/site/public/v1/software/reception-reader/index.json @@ -0,0 +1,19 @@ +{ + "id": 8439, + "slug": "reception-reader", + "name": "Reception Reader", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084520" + ], + "created_at": "2026-07-10T10:12:42.660365", + "updated_at": "2026-07-10T10:12:42.660365", + "url": "/v1/software/reception-reader" +} diff --git a/site/public/v1/software/recogito/index.json b/site/public/v1/software/recogito/index.json new file mode 100644 index 000000000000..a7e13bb140a9 --- /dev/null +++ b/site/public/v1/software/recogito/index.json @@ -0,0 +1,23 @@ +{ + "id": 8440, + "slug": "recogito", + "name": "Recogito", + "release_date": null, + "developers": [ + "Rainer Simon" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Apache Software License 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q74692524" + ], + "created_at": "2026-07-10T10:12:42.660365", + "updated_at": "2026-07-10T10:12:42.660365", + "url": "/v1/software/recogito" +} diff --git a/site/public/v1/software/recollection/index.json b/site/public/v1/software/recollection/index.json new file mode 100644 index 000000000000..82f44ad73151 --- /dev/null +++ b/site/public/v1/software/recollection/index.json @@ -0,0 +1,19 @@ +{ + "id": 8441, + "slug": "recollection", + "name": "Recollection", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084521" + ], + "created_at": "2026-07-10T10:12:42.660365", + "updated_at": "2026-07-10T10:12:42.660365", + "url": "/v1/software/recollection" +} diff --git a/site/public/v1/software/recombination-detection-program/index.json b/site/public/v1/software/recombination-detection-program/index.json new file mode 100644 index 000000000000..684cdb1738c2 --- /dev/null +++ b/site/public/v1/software/recombination-detection-program/index.json @@ -0,0 +1,19 @@ +{ + "id": 8442, + "slug": "recombination-detection-program", + "name": "Recombination detection program", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7302709" + ], + "created_at": "2026-07-10T10:12:42.660365", + "updated_at": "2026-07-10T10:12:42.660365", + "url": "/v1/software/recombination-detection-program" +} diff --git a/site/public/v1/software/recommender-system/index.json b/site/public/v1/software/recommender-system/index.json new file mode 100644 index 000000000000..fbe42ef74d58 --- /dev/null +++ b/site/public/v1/software/recommender-system/index.json @@ -0,0 +1,19 @@ +{ + "id": 8443, + "slug": "recommender-system", + "name": "recommender system", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q554950" + ], + "created_at": "2026-07-10T10:12:42.661350", + "updated_at": "2026-07-10T10:12:42.661350", + "url": "/v1/software/recommender-system" +} diff --git a/site/public/v1/software/recommerceiq/index.json b/site/public/v1/software/recommerceiq/index.json new file mode 100644 index 000000000000..cbbf73bc1145 --- /dev/null +++ b/site/public/v1/software/recommerceiq/index.json @@ -0,0 +1,19 @@ +{ + "id": 8444, + "slug": "recommerceiq", + "name": "RecommerceIQ", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138648213" + ], + "created_at": "2026-07-10T10:12:42.661350", + "updated_at": "2026-07-10T10:12:42.662369", + "url": "/v1/software/recommerceiq" +} diff --git a/site/public/v1/software/reconcile-csv/index.json b/site/public/v1/software/reconcile-csv/index.json new file mode 100644 index 000000000000..e178138a7e1e --- /dev/null +++ b/site/public/v1/software/reconcile-csv/index.json @@ -0,0 +1,21 @@ +{ + "id": 8445, + "slug": "reconcile-csv", + "name": "Reconcile CSV", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Clojure" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113375760" + ], + "created_at": "2026-07-10T10:12:42.662369", + "updated_at": "2026-07-10T10:12:42.662369", + "url": "/v1/software/reconcile-csv" +} diff --git a/site/public/v1/software/record/index.json b/site/public/v1/software/record/index.json new file mode 100644 index 000000000000..f708ca05b8f1 --- /dev/null +++ b/site/public/v1/software/record/index.json @@ -0,0 +1,26 @@ +{ + "id": 8446, + "slug": "record", + "name": "Record", + "release_date": null, + "developers": [ + "Reason Studios" + ], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1130683" + ], + "created_at": "2026-07-10T10:12:42.662369", + "updated_at": "2026-07-10T10:12:42.662369", + "url": "/v1/software/record" +} diff --git a/site/public/v1/software/recover-my-files/index.json b/site/public/v1/software/recover-my-files/index.json new file mode 100644 index 000000000000..5144188db304 --- /dev/null +++ b/site/public/v1/software/recover-my-files/index.json @@ -0,0 +1,19 @@ +{ + "id": 8447, + "slug": "recover-my-files", + "name": "Recover My Files", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17143039" + ], + "created_at": "2026-07-10T10:12:42.662369", + "updated_at": "2026-07-10T10:12:42.662369", + "url": "/v1/software/recover-my-files" +} diff --git a/site/public/v1/software/recoverjpeg/index.json b/site/public/v1/software/recoverjpeg/index.json new file mode 100644 index 000000000000..155f2b194a4a --- /dev/null +++ b/site/public/v1/software/recoverjpeg/index.json @@ -0,0 +1,19 @@ +{ + "id": 8448, + "slug": "recoverjpeg", + "name": "recoverjpeg", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62862617" + ], + "created_at": "2026-07-10T10:12:42.663360", + "updated_at": "2026-07-10T10:12:42.663360", + "url": "/v1/software/recoverjpeg" +} diff --git a/site/public/v1/software/recovery-toolbox/index.json b/site/public/v1/software/recovery-toolbox/index.json new file mode 100644 index 000000000000..eeeaa06ee00d --- /dev/null +++ b/site/public/v1/software/recovery-toolbox/index.json @@ -0,0 +1,19 @@ +{ + "id": 8449, + "slug": "recovery-toolbox", + "name": "Recovery Toolbox", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q90818592" + ], + "created_at": "2026-07-10T10:12:42.663360", + "updated_at": "2026-07-10T10:12:42.663360", + "url": "/v1/software/recovery-toolbox" +} diff --git a/site/public/v1/software/recruit-crm/index.json b/site/public/v1/software/recruit-crm/index.json new file mode 100644 index 000000000000..1e26ab18877d --- /dev/null +++ b/site/public/v1/software/recruit-crm/index.json @@ -0,0 +1,19 @@ +{ + "id": 8450, + "slug": "recruit-crm", + "name": "Recruit CRM", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q133257276" + ], + "created_at": "2026-07-10T10:12:42.664280", + "updated_at": "2026-07-10T10:12:42.664280", + "url": "/v1/software/recruit-crm" +} diff --git a/site/public/v1/software/recruitee/index.json b/site/public/v1/software/recruitee/index.json new file mode 100644 index 000000000000..6b01efff8aa9 --- /dev/null +++ b/site/public/v1/software/recruitee/index.json @@ -0,0 +1,19 @@ +{ + "id": 8451, + "slug": "recruitee", + "name": "Recruitee", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28135088" + ], + "created_at": "2026-07-10T10:12:42.664280", + "updated_at": "2026-07-10T10:12:42.664280", + "url": "/v1/software/recruitee" +} diff --git a/site/public/v1/software/recsql/index.json b/site/public/v1/software/recsql/index.json new file mode 100644 index 000000000000..24c0668df5ea --- /dev/null +++ b/site/public/v1/software/recsql/index.json @@ -0,0 +1,19 @@ +{ + "id": 8452, + "slug": "recsql", + "name": "RecSQL", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975417" + ], + "created_at": "2026-07-10T10:12:42.664280", + "updated_at": "2026-07-10T10:12:42.664280", + "url": "/v1/software/recsql" +} diff --git a/site/public/v1/software/recycle/index.json b/site/public/v1/software/recycle/index.json new file mode 100644 index 000000000000..8208250d8410 --- /dev/null +++ b/site/public/v1/software/recycle/index.json @@ -0,0 +1,21 @@ +{ + "id": 8453, + "slug": "recycle", + "name": "ReCycle", + "release_date": null, + "developers": [ + "Reason Studios" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2068845" + ], + "created_at": "2026-07-10T10:12:42.664280", + "updated_at": "2026-07-10T10:12:42.664280", + "url": "/v1/software/recycle" +} diff --git a/site/public/v1/software/red-carpet/index.json b/site/public/v1/software/red-carpet/index.json new file mode 100644 index 000000000000..e95d9abb5ca7 --- /dev/null +++ b/site/public/v1/software/red-carpet/index.json @@ -0,0 +1,21 @@ +{ + "id": 8454, + "slug": "red-carpet", + "name": "Red Carpet", + "release_date": null, + "developers": [ + "Novell" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17077808" + ], + "created_at": "2026-07-10T10:12:42.665279", + "updated_at": "2026-07-10T10:12:42.665279", + "url": "/v1/software/red-carpet" +} diff --git a/site/public/v1/software/red-hat-test-suite/index.json b/site/public/v1/software/red-hat-test-suite/index.json new file mode 100644 index 000000000000..3a031b712b67 --- /dev/null +++ b/site/public/v1/software/red-hat-test-suite/index.json @@ -0,0 +1,19 @@ +{ + "id": 8455, + "slug": "red-hat-test-suite", + "name": "Red Hat Test Suite", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7304228" + ], + "created_at": "2026-07-10T10:12:42.665279", + "updated_at": "2026-07-10T10:12:42.665279", + "url": "/v1/software/red-hat-test-suite" +} diff --git a/site/public/v1/software/red-hat-virtualization/index.json b/site/public/v1/software/red-hat-virtualization/index.json new file mode 100644 index 000000000000..fa97c7217827 --- /dev/null +++ b/site/public/v1/software/red-hat-virtualization/index.json @@ -0,0 +1,23 @@ +{ + "id": 8456, + "slug": "red-hat-virtualization", + "name": "Red Hat Virtualization", + "release_date": null, + "developers": [ + "Red Hat" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Java" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7304225" + ], + "created_at": "2026-07-10T10:12:42.665279", + "updated_at": "2026-07-10T10:12:42.665279", + "url": "/v1/software/red-hat-virtualization" +} diff --git a/site/public/v1/software/red-moon/index.json b/site/public/v1/software/red-moon/index.json new file mode 100644 index 000000000000..d0b9f29d915b --- /dev/null +++ b/site/public/v1/software/red-moon/index.json @@ -0,0 +1,23 @@ +{ + "id": 8457, + "slug": "red-moon", + "name": "Red Moon", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Kotlin" + ], + "licenses": [ + "GNU General Public License, version 3.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q48782900" + ], + "created_at": "2026-07-10T10:12:42.666355", + "updated_at": "2026-07-10T10:12:42.666355", + "url": "/v1/software/red-moon" +} diff --git a/site/public/v1/software/red-ryder/index.json b/site/public/v1/software/red-ryder/index.json new file mode 100644 index 000000000000..54aa4c8866c4 --- /dev/null +++ b/site/public/v1/software/red-ryder/index.json @@ -0,0 +1,21 @@ +{ + "id": 8458, + "slug": "red-ryder", + "name": "Red Ryder", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Classic Mac OS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110154768" + ], + "created_at": "2026-07-10T10:12:42.666355", + "updated_at": "2026-07-10T10:12:42.666355", + "url": "/v1/software/red-ryder" +} diff --git a/site/public/v1/software/redcap/index.json b/site/public/v1/software/redcap/index.json new file mode 100644 index 000000000000..8c09bdfa0f62 --- /dev/null +++ b/site/public/v1/software/redcap/index.json @@ -0,0 +1,23 @@ +{ + "id": 8459, + "slug": "redcap", + "name": "REDCap", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "PHP" + ], + "licenses": [ + "end-user license agreement" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7305527" + ], + "created_at": "2026-07-10T10:12:42.666355", + "updated_at": "2026-07-10T10:12:42.666355", + "url": "/v1/software/redcap" +} diff --git a/site/public/v1/software/reddwarf-server/index.json b/site/public/v1/software/reddwarf-server/index.json new file mode 100644 index 000000000000..eca682722339 --- /dev/null +++ b/site/public/v1/software/reddwarf-server/index.json @@ -0,0 +1,19 @@ +{ + "id": 8460, + "slug": "reddwarf-server", + "name": "RedDwarf Server", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7303550" + ], + "created_at": "2026-07-10T10:12:42.666355", + "updated_at": "2026-07-10T10:12:42.666355", + "url": "/v1/software/reddwarf-server" +} diff --git a/site/public/v1/software/redhawk/index.json b/site/public/v1/software/redhawk/index.json new file mode 100644 index 000000000000..67aa8bb00595 --- /dev/null +++ b/site/public/v1/software/redhawk/index.json @@ -0,0 +1,19 @@ +{ + "id": 8461, + "slug": "redhawk", + "name": "REDHAWK", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115729493" + ], + "created_at": "2026-07-10T10:12:42.667411", + "updated_at": "2026-07-10T10:12:42.667411", + "url": "/v1/software/redhawk" +} diff --git a/site/public/v1/software/redirect/index.json b/site/public/v1/software/redirect/index.json new file mode 100644 index 000000000000..3bcc5ac4ca33 --- /dev/null +++ b/site/public/v1/software/redirect/index.json @@ -0,0 +1,19 @@ +{ + "id": 8462, + "slug": "redirect", + "name": "redirect", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q43534506" + ], + "created_at": "2026-07-10T10:12:42.667411", + "updated_at": "2026-07-10T10:12:42.667411", + "url": "/v1/software/redirect" +} diff --git a/site/public/v1/software/redoflacs/index.json b/site/public/v1/software/redoflacs/index.json new file mode 100644 index 000000000000..239b210f127f --- /dev/null +++ b/site/public/v1/software/redoflacs/index.json @@ -0,0 +1,19 @@ +{ + "id": 8463, + "slug": "redoflacs", + "name": "redoflacs", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065329" + ], + "created_at": "2026-07-10T10:12:42.668360", + "updated_at": "2026-07-10T10:12:42.668360", + "url": "/v1/software/redoflacs" +} diff --git a/site/public/v1/software/redpim/index.json b/site/public/v1/software/redpim/index.json new file mode 100644 index 000000000000..72aa66ee78d1 --- /dev/null +++ b/site/public/v1/software/redpim/index.json @@ -0,0 +1,19 @@ +{ + "id": 8464, + "slug": "redpim", + "name": "redPIM", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140003313" + ], + "created_at": "2026-07-10T10:12:42.668360", + "updated_at": "2026-07-10T10:12:42.668360", + "url": "/v1/software/redpim" +} diff --git a/site/public/v1/software/redshift-q108084006/index.json b/site/public/v1/software/redshift-q108084006/index.json new file mode 100644 index 000000000000..06bfbcc4bed6 --- /dev/null +++ b/site/public/v1/software/redshift-q108084006/index.json @@ -0,0 +1,19 @@ +{ + "id": 8465, + "slug": "redshift-q108084006", + "name": "Redshift", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108084006" + ], + "created_at": "2026-07-10T10:12:42.668360", + "updated_at": "2026-07-10T10:12:42.668360", + "url": "/v1/software/redshift-q108084006" +} diff --git a/site/public/v1/software/redshift/index.json b/site/public/v1/software/redshift/index.json new file mode 100644 index 000000000000..7f5eb2bc77be --- /dev/null +++ b/site/public/v1/software/redshift/index.json @@ -0,0 +1,21 @@ +{ + "id": 8466, + "slug": "redshift", + "name": "RedShift", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "iOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3918336" + ], + "created_at": "2026-07-10T10:12:42.668360", + "updated_at": "2026-07-10T10:12:42.668360", + "url": "/v1/software/redshift" +} diff --git a/site/public/v1/software/redsn0w/index.json b/site/public/v1/software/redsn0w/index.json new file mode 100644 index 000000000000..190ea00c9d1b --- /dev/null +++ b/site/public/v1/software/redsn0w/index.json @@ -0,0 +1,21 @@ +{ + "id": 8467, + "slug": "redsn0w", + "name": "redsn0w", + "release_date": "2009-02-03", + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q307257" + ], + "created_at": "2026-07-10T10:12:42.669389", + "updated_at": "2026-07-10T10:12:42.669389", + "url": "/v1/software/redsn0w" +} diff --git a/site/public/v1/software/redsocks/index.json b/site/public/v1/software/redsocks/index.json new file mode 100644 index 000000000000..a05eb5b76a4f --- /dev/null +++ b/site/public/v1/software/redsocks/index.json @@ -0,0 +1,19 @@ +{ + "id": 8468, + "slug": "redsocks", + "name": "redsocks", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q128800524" + ], + "created_at": "2026-07-10T10:12:42.669389", + "updated_at": "2026-07-10T10:12:42.669389", + "url": "/v1/software/redsocks" +} diff --git a/site/public/v1/software/reduce/index.json b/site/public/v1/software/reduce/index.json new file mode 100644 index 000000000000..9752c096bb3d --- /dev/null +++ b/site/public/v1/software/reduce/index.json @@ -0,0 +1,19 @@ +{ + "id": 8469, + "slug": "reduce", + "name": "REDUCE", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q114840896" + ], + "created_at": "2026-07-10T10:12:42.670365", + "updated_at": "2026-07-10T10:12:42.670365", + "url": "/v1/software/reduce" +} diff --git a/site/public/v1/software/reduck-ai/index.json b/site/public/v1/software/reduck-ai/index.json new file mode 100644 index 000000000000..f663262a9acb --- /dev/null +++ b/site/public/v1/software/reduck-ai/index.json @@ -0,0 +1,19 @@ +{ + "id": 8470, + "slug": "reduck-ai", + "name": "Reduck AI", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139503306" + ], + "created_at": "2026-07-10T10:12:42.670365", + "updated_at": "2026-07-10T10:12:42.670365", + "url": "/v1/software/reduck-ai" +} diff --git a/site/public/v1/software/redux/index.json b/site/public/v1/software/redux/index.json new file mode 100644 index 000000000000..605a1b54422e --- /dev/null +++ b/site/public/v1/software/redux/index.json @@ -0,0 +1,19 @@ +{ + "id": 8471, + "slug": "redux", + "name": "REDUX", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087705" + ], + "created_at": "2026-07-10T10:12:42.670365", + "updated_at": "2026-07-10T10:12:42.670365", + "url": "/v1/software/redux" +} diff --git a/site/public/v1/software/reeco/index.json b/site/public/v1/software/reeco/index.json new file mode 100644 index 000000000000..c6c9eb637a5c --- /dev/null +++ b/site/public/v1/software/reeco/index.json @@ -0,0 +1,21 @@ +{ + "id": 8472, + "slug": "reeco", + "name": "Reeco", + "release_date": null, + "developers": [ + "Stefano Cipriani Studio" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138773743" + ], + "created_at": "2026-07-10T10:12:42.671280", + "updated_at": "2026-07-10T10:12:42.671280", + "url": "/v1/software/reeco" +} diff --git a/site/public/v1/software/reeder/index.json b/site/public/v1/software/reeder/index.json new file mode 100644 index 000000000000..e8aef2b673ea --- /dev/null +++ b/site/public/v1/software/reeder/index.json @@ -0,0 +1,25 @@ +{ + "id": 8473, + "slug": "reeder", + "name": "Reeder", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "iPadOS", + "iOS", + "macOS" + ], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2136493" + ], + "created_at": "2026-07-10T10:12:42.671280", + "updated_at": "2026-07-10T10:12:42.671280", + "url": "/v1/software/reeder" +} diff --git a/site/public/v1/software/reface/index.json b/site/public/v1/software/reface/index.json new file mode 100644 index 000000000000..212df2afe3fa --- /dev/null +++ b/site/public/v1/software/reface/index.json @@ -0,0 +1,19 @@ +{ + "id": 8474, + "slug": "reface", + "name": "Reface", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q100374537" + ], + "created_at": "2026-07-10T10:12:42.671280", + "updated_at": "2026-07-10T10:12:42.671280", + "url": "/v1/software/reface" +} diff --git a/site/public/v1/software/refdb/index.json b/site/public/v1/software/refdb/index.json new file mode 100644 index 000000000000..d1cee230d4dc --- /dev/null +++ b/site/public/v1/software/refdb/index.json @@ -0,0 +1,19 @@ +{ + "id": 8475, + "slug": "refdb", + "name": "RefDB", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17077868" + ], + "created_at": "2026-07-10T10:12:42.671280", + "updated_at": "2026-07-10T10:12:42.671280", + "url": "/v1/software/refdb" +} diff --git a/site/public/v1/software/refeus/index.json b/site/public/v1/software/refeus/index.json new file mode 100644 index 000000000000..4e7bc7bde843 --- /dev/null +++ b/site/public/v1/software/refeus/index.json @@ -0,0 +1,22 @@ +{ + "id": 8476, + "slug": "refeus", + "name": "Refeus", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105748779" + ], + "created_at": "2026-07-10T10:12:42.672280", + "updated_at": "2026-07-10T10:12:42.672280", + "url": "/v1/software/refeus" +} diff --git a/site/public/v1/software/refinegems/index.json b/site/public/v1/software/refinegems/index.json new file mode 100644 index 000000000000..9b6dea8bdba8 --- /dev/null +++ b/site/public/v1/software/refinegems/index.json @@ -0,0 +1,23 @@ +{ + "id": 8477, + "slug": "refinegems", + "name": "refineGEMs", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Python" + ], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123561349" + ], + "created_at": "2026-07-10T10:12:42.672280", + "updated_at": "2026-07-10T10:12:42.672280", + "url": "/v1/software/refinegems" +} diff --git a/site/public/v1/software/refiner/index.json b/site/public/v1/software/refiner/index.json new file mode 100644 index 000000000000..d621aa485175 --- /dev/null +++ b/site/public/v1/software/refiner/index.json @@ -0,0 +1,19 @@ +{ + "id": 8478, + "slug": "refiner", + "name": "Refiner", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140033544" + ], + "created_at": "2026-07-10T10:12:42.672280", + "updated_at": "2026-07-10T10:12:42.672280", + "url": "/v1/software/refiner" +} diff --git a/site/public/v1/software/refprop/index.json b/site/public/v1/software/refprop/index.json new file mode 100644 index 000000000000..d3ff9cad0ba6 --- /dev/null +++ b/site/public/v1/software/refprop/index.json @@ -0,0 +1,19 @@ +{ + "id": 8479, + "slug": "refprop", + "name": "REFPROP", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131742770" + ], + "created_at": "2026-07-10T10:12:42.673361", + "updated_at": "2026-07-10T10:12:42.673361", + "url": "/v1/software/refprop" +} diff --git a/site/public/v1/software/reframe-it/index.json b/site/public/v1/software/reframe-it/index.json new file mode 100644 index 000000000000..966e75656df7 --- /dev/null +++ b/site/public/v1/software/reframe-it/index.json @@ -0,0 +1,19 @@ +{ + "id": 8480, + "slug": "reframe-it", + "name": "Reframe It", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084522" + ], + "created_at": "2026-07-10T10:12:42.673361", + "updated_at": "2026-07-10T10:12:42.673361", + "url": "/v1/software/reframe-it" +} diff --git a/site/public/v1/software/refseek/index.json b/site/public/v1/software/refseek/index.json new file mode 100644 index 000000000000..3f71a2512d6d --- /dev/null +++ b/site/public/v1/software/refseek/index.json @@ -0,0 +1,19 @@ +{ + "id": 8481, + "slug": "refseek", + "name": "RefSeek", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110787633" + ], + "created_at": "2026-07-10T10:12:42.673361", + "updated_at": "2026-07-10T10:12:42.673361", + "url": "/v1/software/refseek" +} diff --git a/site/public/v1/software/regent/index.json b/site/public/v1/software/regent/index.json new file mode 100644 index 000000000000..f067bc381ab3 --- /dev/null +++ b/site/public/v1/software/regent/index.json @@ -0,0 +1,19 @@ +{ + "id": 8482, + "slug": "regent", + "name": "Regent", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140167607" + ], + "created_at": "2026-07-10T10:12:42.674348", + "updated_at": "2026-07-10T10:12:42.674348", + "url": "/v1/software/regent" +} diff --git a/site/public/v1/software/regexxer/index.json b/site/public/v1/software/regexxer/index.json new file mode 100644 index 000000000000..5d1a8bc87176 --- /dev/null +++ b/site/public/v1/software/regexxer/index.json @@ -0,0 +1,19 @@ +{ + "id": 8483, + "slug": "regexxer", + "name": "regexxer", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62862608" + ], + "created_at": "2026-07-10T10:12:42.674348", + "updated_at": "2026-07-10T10:12:42.674348", + "url": "/v1/software/regexxer" +} diff --git a/site/public/v1/software/regiograph/index.json b/site/public/v1/software/regiograph/index.json new file mode 100644 index 000000000000..33203eefe97e --- /dev/null +++ b/site/public/v1/software/regiograph/index.json @@ -0,0 +1,19 @@ +{ + "id": 8484, + "slug": "regiograph", + "name": "RegioGraph", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2138115" + ], + "created_at": "2026-07-10T10:12:42.674348", + "updated_at": "2026-07-10T10:12:42.674348", + "url": "/v1/software/regiograph" +} diff --git a/site/public/v1/software/regional-atmospheric-modeling-system/index.json b/site/public/v1/software/regional-atmospheric-modeling-system/index.json new file mode 100644 index 000000000000..47b9f5e16abb --- /dev/null +++ b/site/public/v1/software/regional-atmospheric-modeling-system/index.json @@ -0,0 +1,22 @@ +{ + "id": 8485, + "slug": "regional-atmospheric-modeling-system", + "name": "Regional Atmospheric Modeling System", + "release_date": null, + "developers": [ + "William R. Cotton", + "Roger A. Pielke" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18393898" + ], + "created_at": "2026-07-10T10:12:42.675369", + "updated_at": "2026-07-10T10:12:42.675369", + "url": "/v1/software/regional-atmospheric-modeling-system" +} diff --git a/site/public/v1/software/registax/index.json b/site/public/v1/software/registax/index.json new file mode 100644 index 000000000000..2eae47c03007 --- /dev/null +++ b/site/public/v1/software/registax/index.json @@ -0,0 +1,23 @@ +{ + "id": 8486, + "slug": "registax", + "name": "Registax", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3423447" + ], + "created_at": "2026-07-10T10:12:42.675369", + "updated_at": "2026-07-10T10:12:42.675369", + "url": "/v1/software/registax" +} diff --git a/site/public/v1/software/reiboot/index.json b/site/public/v1/software/reiboot/index.json new file mode 100644 index 000000000000..520eea71b473 --- /dev/null +++ b/site/public/v1/software/reiboot/index.json @@ -0,0 +1,25 @@ +{ + "id": 8487, + "slug": "reiboot", + "name": "ReiBoot", + "release_date": null, + "developers": [ + "Tenorshare" + ], + "publishers": [], + "operating_systems": [ + "iOS", + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q56137565" + ], + "created_at": "2026-07-10T10:12:42.675369", + "updated_at": "2026-07-10T10:12:42.675369", + "url": "/v1/software/reiboot" +} diff --git a/site/public/v1/software/reign/index.json b/site/public/v1/software/reign/index.json new file mode 100644 index 000000000000..d2ecc02a29c5 --- /dev/null +++ b/site/public/v1/software/reign/index.json @@ -0,0 +1,21 @@ +{ + "id": 8488, + "slug": "reign", + "name": "Reign", + "release_date": null, + "developers": [ + "iTmethods Inc." + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139255633" + ], + "created_at": "2026-07-10T10:12:42.675369", + "updated_at": "2026-07-10T10:12:42.675369", + "url": "/v1/software/reign" +} diff --git a/site/public/v1/software/relap5-3d/index.json b/site/public/v1/software/relap5-3d/index.json new file mode 100644 index 000000000000..aa5ffc0fddf1 --- /dev/null +++ b/site/public/v1/software/relap5-3d/index.json @@ -0,0 +1,23 @@ +{ + "id": 8489, + "slug": "relap5-3d", + "name": "RELAP5-3D", + "release_date": "1997-07-06", + "developers": [ + "Idaho National Laboratory" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Fortran" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7276340" + ], + "created_at": "2026-07-10T10:12:42.676337", + "updated_at": "2026-07-10T10:12:42.676337", + "url": "/v1/software/relap5-3d" +} diff --git a/site/public/v1/software/relate/index.json b/site/public/v1/software/relate/index.json new file mode 100644 index 000000000000..c748cf4712d5 --- /dev/null +++ b/site/public/v1/software/relate/index.json @@ -0,0 +1,21 @@ +{ + "id": 8490, + "slug": "relate", + "name": "Relate", + "release_date": "2023-11-16", + "developers": [ + "Pixelic" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139253995" + ], + "created_at": "2026-07-10T10:12:42.676337", + "updated_at": "2026-07-10T10:12:42.676337", + "url": "/v1/software/relate" +} diff --git a/site/public/v1/software/release-monitoring/index.json b/site/public/v1/software/release-monitoring/index.json new file mode 100644 index 000000000000..2a73fc2891b6 --- /dev/null +++ b/site/public/v1/software/release-monitoring/index.json @@ -0,0 +1,23 @@ +{ + "id": 8491, + "slug": "release-monitoring", + "name": "release-monitoring", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Python" + ], + "licenses": [ + "GNU General Public License, version 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q119854770" + ], + "created_at": "2026-07-10T10:12:42.676337", + "updated_at": "2026-07-10T10:12:42.676337", + "url": "/v1/software/release-monitoring" +} diff --git a/site/public/v1/software/relfinder/index.json b/site/public/v1/software/relfinder/index.json new file mode 100644 index 000000000000..7e7c61cebc0a --- /dev/null +++ b/site/public/v1/software/relfinder/index.json @@ -0,0 +1,19 @@ +{ + "id": 8492, + "slug": "relfinder", + "name": "RelFinder", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084523" + ], + "created_at": "2026-07-10T10:12:42.677284", + "updated_at": "2026-07-10T10:12:42.677284", + "url": "/v1/software/relfinder" +} diff --git a/site/public/v1/software/relic-hunters-zero/index.json b/site/public/v1/software/relic-hunters-zero/index.json new file mode 100644 index 000000000000..2bbf8bf04f7f --- /dev/null +++ b/site/public/v1/software/relic-hunters-zero/index.json @@ -0,0 +1,23 @@ +{ + "id": 8493, + "slug": "relic-hunters-zero", + "name": "Relic Hunters Zero", + "release_date": "2015-08-18", + "developers": [], + "publishers": [ + "Akupara Games" + ], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [ + "action game" + ], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q97287596" + ], + "created_at": "2026-07-10T10:12:42.677284", + "updated_at": "2026-07-10T10:12:42.677284", + "url": "/v1/software/relic-hunters-zero" +} diff --git a/site/public/v1/software/relux/index.json b/site/public/v1/software/relux/index.json new file mode 100644 index 000000000000..41ee65f359d8 --- /dev/null +++ b/site/public/v1/software/relux/index.json @@ -0,0 +1,19 @@ +{ + "id": 8494, + "slug": "relux", + "name": "Relux", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q15867643" + ], + "created_at": "2026-07-10T10:12:42.677284", + "updated_at": "2026-07-10T10:12:42.677284", + "url": "/v1/software/relux" +} diff --git a/site/public/v1/software/remember-me/index.json b/site/public/v1/software/remember-me/index.json new file mode 100644 index 000000000000..a03e2066c43a --- /dev/null +++ b/site/public/v1/software/remember-me/index.json @@ -0,0 +1,19 @@ +{ + "id": 8495, + "slug": "remember-me", + "name": "Remember Me", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126950965" + ], + "created_at": "2026-07-10T10:12:42.678284", + "updated_at": "2026-07-10T10:12:42.678284", + "url": "/v1/software/remember-me" +} diff --git a/site/public/v1/software/remember-the-milk/index.json b/site/public/v1/software/remember-the-milk/index.json new file mode 100644 index 000000000000..97c478175448 --- /dev/null +++ b/site/public/v1/software/remember-the-milk/index.json @@ -0,0 +1,19 @@ +{ + "id": 8496, + "slug": "remember-the-milk", + "name": "Remember the Milk", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q905544" + ], + "created_at": "2026-07-10T10:12:42.678284", + "updated_at": "2026-07-10T10:12:42.678284", + "url": "/v1/software/remember-the-milk" +} diff --git a/site/public/v1/software/remento/index.json b/site/public/v1/software/remento/index.json new file mode 100644 index 000000000000..73e51c413e81 --- /dev/null +++ b/site/public/v1/software/remento/index.json @@ -0,0 +1,19 @@ +{ + "id": 8497, + "slug": "remento", + "name": "Remento", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136540458" + ], + "created_at": "2026-07-10T10:12:42.678284", + "updated_at": "2026-07-10T10:12:42.678284", + "url": "/v1/software/remento" +} diff --git a/site/public/v1/software/remo-3d/index.json b/site/public/v1/software/remo-3d/index.json new file mode 100644 index 000000000000..3300e670ac2f --- /dev/null +++ b/site/public/v1/software/remo-3d/index.json @@ -0,0 +1,21 @@ +{ + "id": 8498, + "slug": "remo-3d", + "name": "Remo 3D", + "release_date": null, + "developers": [ + "Remograph" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7312027" + ], + "created_at": "2026-07-10T10:12:42.679283", + "updated_at": "2026-07-10T10:12:42.679283", + "url": "/v1/software/remo-3d" +} diff --git a/site/public/v1/software/remote-commander/index.json b/site/public/v1/software/remote-commander/index.json new file mode 100644 index 000000000000..2303a1faf0db --- /dev/null +++ b/site/public/v1/software/remote-commander/index.json @@ -0,0 +1,19 @@ +{ + "id": 8499, + "slug": "remote-commander", + "name": "Remote Commander", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121631721" + ], + "created_at": "2026-07-10T10:12:42.679283", + "updated_at": "2026-07-10T10:12:42.679283", + "url": "/v1/software/remote-commander" +} diff --git a/site/public/v1/software/remote-graphics-software/index.json b/site/public/v1/software/remote-graphics-software/index.json new file mode 100644 index 000000000000..8d054d84a160 --- /dev/null +++ b/site/public/v1/software/remote-graphics-software/index.json @@ -0,0 +1,21 @@ +{ + "id": 8500, + "slug": "remote-graphics-software", + "name": "Remote Graphics Software", + "release_date": null, + "developers": [ + "HP Inc." + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7312107" + ], + "created_at": "2026-07-10T10:12:42.679283", + "updated_at": "2026-07-10T10:12:42.679283", + "url": "/v1/software/remote-graphics-software" +} diff --git a/site/public/v1/software/remote-install-mac-os-x/index.json b/site/public/v1/software/remote-install-mac-os-x/index.json new file mode 100644 index 000000000000..aa577aa45970 --- /dev/null +++ b/site/public/v1/software/remote-install-mac-os-x/index.json @@ -0,0 +1,23 @@ +{ + "id": 8501, + "slug": "remote-install-mac-os-x", + "name": "Remote Install Mac OS X", + "release_date": null, + "developers": [ + "Apple Inc." + ], + "publishers": [], + "operating_systems": [ + "macOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7312110" + ], + "created_at": "2026-07-10T10:12:42.679283", + "updated_at": "2026-07-10T10:12:42.679283", + "url": "/v1/software/remote-install-mac-os-x" +} diff --git a/site/public/v1/software/remote-play/index.json b/site/public/v1/software/remote-play/index.json new file mode 100644 index 000000000000..58c5a6773bae --- /dev/null +++ b/site/public/v1/software/remote-play/index.json @@ -0,0 +1,23 @@ +{ + "id": 8502, + "slug": "remote-play", + "name": "Remote Play", + "release_date": null, + "developers": [ + "Sony Interactive Entertainment" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4048176" + ], + "created_at": "2026-07-10T10:12:42.680283", + "updated_at": "2026-07-10T10:12:42.680283", + "url": "/v1/software/remote-play" +} diff --git a/site/public/v1/software/remote-spooling-communications-subsystem/index.json b/site/public/v1/software/remote-spooling-communications-subsystem/index.json new file mode 100644 index 000000000000..e1735fdc4dd6 --- /dev/null +++ b/site/public/v1/software/remote-spooling-communications-subsystem/index.json @@ -0,0 +1,24 @@ +{ + "id": 8503, + "slug": "remote-spooling-communications-subsystem", + "name": "Remote Spooling Communications Subsystem", + "release_date": null, + "developers": [ + "IBM" + ], + "publishers": [], + "operating_systems": [ + "VM", + "z/VM" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7277706" + ], + "created_at": "2026-07-10T10:12:42.680283", + "updated_at": "2026-07-10T10:12:42.680283", + "url": "/v1/software/remote-spooling-communications-subsystem" +} diff --git a/site/public/v1/software/remoteaccess/index.json b/site/public/v1/software/remoteaccess/index.json new file mode 100644 index 000000000000..83761f1e0ae7 --- /dev/null +++ b/site/public/v1/software/remoteaccess/index.json @@ -0,0 +1,21 @@ +{ + "id": 8504, + "slug": "remoteaccess", + "name": "RemoteAccess", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Turbo Pascal" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2893536" + ], + "created_at": "2026-07-10T10:12:42.680283", + "updated_at": "2026-07-10T10:12:42.680283", + "url": "/v1/software/remoteaccess" +} diff --git a/site/public/v1/software/remotepc/index.json b/site/public/v1/software/remotepc/index.json new file mode 100644 index 000000000000..62b521f2710f --- /dev/null +++ b/site/public/v1/software/remotepc/index.json @@ -0,0 +1,19 @@ +{ + "id": 8505, + "slug": "remotepc", + "name": "RemotePC", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107639510" + ], + "created_at": "2026-07-10T10:12:42.681280", + "updated_at": "2026-07-10T10:12:42.681280", + "url": "/v1/software/remotepc" +} diff --git a/site/public/v1/software/remoteview-q17145825/index.json b/site/public/v1/software/remoteview-q17145825/index.json new file mode 100644 index 000000000000..311970657c82 --- /dev/null +++ b/site/public/v1/software/remoteview-q17145825/index.json @@ -0,0 +1,19 @@ +{ + "id": 8506, + "slug": "remoteview-q17145825", + "name": "RemoteView", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17145825" + ], + "created_at": "2026-07-10T10:12:42.681280", + "updated_at": "2026-07-10T10:12:42.681280", + "url": "/v1/software/remoteview-q17145825" +} diff --git a/site/public/v1/software/remoteview/index.json b/site/public/v1/software/remoteview/index.json new file mode 100644 index 000000000000..77d2307ceab0 --- /dev/null +++ b/site/public/v1/software/remoteview/index.json @@ -0,0 +1,19 @@ +{ + "id": 8507, + "slug": "remoteview", + "name": "RemoteView", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q12594368" + ], + "created_at": "2026-07-10T10:12:42.681280", + "updated_at": "2026-07-10T10:12:42.681280", + "url": "/v1/software/remoteview" +} diff --git a/site/public/v1/software/renameutils/index.json b/site/public/v1/software/renameutils/index.json new file mode 100644 index 000000000000..a6b16b63159f --- /dev/null +++ b/site/public/v1/software/renameutils/index.json @@ -0,0 +1,21 @@ +{ + "id": 8508, + "slug": "renameutils", + "name": "renameutils", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "GNU General Public License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62862594" + ], + "created_at": "2026-07-10T10:12:42.682281", + "updated_at": "2026-07-10T10:12:42.682281", + "url": "/v1/software/renameutils" +} diff --git a/site/public/v1/software/renattach/index.json b/site/public/v1/software/renattach/index.json new file mode 100644 index 000000000000..88270429da43 --- /dev/null +++ b/site/public/v1/software/renattach/index.json @@ -0,0 +1,19 @@ +{ + "id": 8509, + "slug": "renattach", + "name": "renattach", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62862589" + ], + "created_at": "2026-07-10T10:12:42.682281", + "updated_at": "2026-07-10T10:12:42.682281", + "url": "/v1/software/renattach" +} diff --git a/site/public/v1/software/renderforest/index.json b/site/public/v1/software/renderforest/index.json new file mode 100644 index 000000000000..542fb02bbe96 --- /dev/null +++ b/site/public/v1/software/renderforest/index.json @@ -0,0 +1,19 @@ +{ + "id": 8510, + "slug": "renderforest", + "name": "Renderforest", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136750761" + ], + "created_at": "2026-07-10T10:12:42.682281", + "updated_at": "2026-07-10T10:12:42.682281", + "url": "/v1/software/renderforest" +} diff --git a/site/public/v1/software/renderscript/index.json b/site/public/v1/software/renderscript/index.json new file mode 100644 index 000000000000..2287135d1e8e --- /dev/null +++ b/site/public/v1/software/renderscript/index.json @@ -0,0 +1,19 @@ +{ + "id": 8511, + "slug": "renderscript", + "name": "Renderscript", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3425228" + ], + "created_at": "2026-07-10T10:12:42.683281", + "updated_at": "2026-07-10T10:12:42.683281", + "url": "/v1/software/renderscript" +} diff --git a/site/public/v1/software/rendezvous/index.json b/site/public/v1/software/rendezvous/index.json new file mode 100644 index 000000000000..f033760ed53f --- /dev/null +++ b/site/public/v1/software/rendezvous/index.json @@ -0,0 +1,21 @@ +{ + "id": 8512, + "slug": "rendezvous", + "name": "RENDEZVOUS", + "release_date": null, + "developers": [ + "Edgar F. Codd" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q32230647" + ], + "created_at": "2026-07-10T10:12:42.683281", + "updated_at": "2026-07-10T10:12:42.683281", + "url": "/v1/software/rendezvous" +} diff --git a/site/public/v1/software/renee-audio-tools/index.json b/site/public/v1/software/renee-audio-tools/index.json new file mode 100644 index 000000000000..c174c4eef5a7 --- /dev/null +++ b/site/public/v1/software/renee-audio-tools/index.json @@ -0,0 +1,23 @@ +{ + "id": 8513, + "slug": "renee-audio-tools", + "name": "Renee Audio Tools", + "release_date": null, + "developers": [ + "Rene.E Laboratory" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124811766" + ], + "created_at": "2026-07-10T10:12:42.683281", + "updated_at": "2026-07-10T10:12:42.683281", + "url": "/v1/software/renee-audio-tools" +} diff --git a/site/public/v1/software/renee-becca/index.json b/site/public/v1/software/renee-becca/index.json new file mode 100644 index 000000000000..b39c952fbd6d --- /dev/null +++ b/site/public/v1/software/renee-becca/index.json @@ -0,0 +1,23 @@ +{ + "id": 8514, + "slug": "renee-becca", + "name": "Renee Becca", + "release_date": null, + "developers": [ + "Rene.E Laboratory" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124785227" + ], + "created_at": "2026-07-10T10:12:42.683281", + "updated_at": "2026-07-10T10:12:42.683281", + "url": "/v1/software/renee-becca" +} diff --git a/site/public/v1/software/renee-file-protector/index.json b/site/public/v1/software/renee-file-protector/index.json new file mode 100644 index 000000000000..b5df60f18e2f --- /dev/null +++ b/site/public/v1/software/renee-file-protector/index.json @@ -0,0 +1,23 @@ +{ + "id": 8515, + "slug": "renee-file-protector", + "name": "Renee File Protector", + "release_date": null, + "developers": [ + "Rene.E Laboratory" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124811828" + ], + "created_at": "2026-07-10T10:12:42.684280", + "updated_at": "2026-07-10T10:12:42.684280", + "url": "/v1/software/renee-file-protector" +} diff --git a/site/public/v1/software/renee-passnow/index.json b/site/public/v1/software/renee-passnow/index.json new file mode 100644 index 000000000000..55db90d3b48d --- /dev/null +++ b/site/public/v1/software/renee-passnow/index.json @@ -0,0 +1,23 @@ +{ + "id": 8516, + "slug": "renee-passnow", + "name": "Renee PassNow", + "release_date": null, + "developers": [ + "Rene.E Laboratory" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124785565" + ], + "created_at": "2026-07-10T10:12:42.684280", + "updated_at": "2026-07-10T10:12:42.684280", + "url": "/v1/software/renee-passnow" +} diff --git a/site/public/v1/software/renee-pdf-aide/index.json b/site/public/v1/software/renee-pdf-aide/index.json new file mode 100644 index 000000000000..e67cbf587725 --- /dev/null +++ b/site/public/v1/software/renee-pdf-aide/index.json @@ -0,0 +1,25 @@ +{ + "id": 8517, + "slug": "renee-pdf-aide", + "name": "Renee PDF Aide", + "release_date": null, + "developers": [ + "Rene.E Laboratory" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "copyrighted" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124811371" + ], + "created_at": "2026-07-10T10:12:42.684280", + "updated_at": "2026-07-10T10:12:42.684280", + "url": "/v1/software/renee-pdf-aide" +} diff --git a/site/public/v1/software/renee-undeleter/index.json b/site/public/v1/software/renee-undeleter/index.json new file mode 100644 index 000000000000..82c50f0deb92 --- /dev/null +++ b/site/public/v1/software/renee-undeleter/index.json @@ -0,0 +1,23 @@ +{ + "id": 8518, + "slug": "renee-undeleter", + "name": "Renee Undeleter", + "release_date": null, + "developers": [ + "Rene.E Laboratory" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124786527" + ], + "created_at": "2026-07-10T10:12:42.685280", + "updated_at": "2026-07-10T10:12:42.685280", + "url": "/v1/software/renee-undeleter" +} diff --git a/site/public/v1/software/renee-video-editor-pro/index.json b/site/public/v1/software/renee-video-editor-pro/index.json new file mode 100644 index 000000000000..a197d0c05f30 --- /dev/null +++ b/site/public/v1/software/renee-video-editor-pro/index.json @@ -0,0 +1,23 @@ +{ + "id": 8519, + "slug": "renee-video-editor-pro", + "name": "Renee Video Editor Pro", + "release_date": null, + "developers": [ + "Rene.E Laboratory" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124818203" + ], + "created_at": "2026-07-10T10:12:42.685280", + "updated_at": "2026-07-10T10:12:42.685280", + "url": "/v1/software/renee-video-editor-pro" +} diff --git a/site/public/v1/software/renegade/index.json b/site/public/v1/software/renegade/index.json new file mode 100644 index 000000000000..77a45a325b65 --- /dev/null +++ b/site/public/v1/software/renegade/index.json @@ -0,0 +1,21 @@ +{ + "id": 8520, + "slug": "renegade", + "name": "Renegade", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Turbo Pascal" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7313025" + ], + "created_at": "2026-07-10T10:12:42.685280", + "updated_at": "2026-07-10T10:12:42.685280", + "url": "/v1/software/renegade" +} diff --git a/site/public/v1/software/renesis-player/index.json b/site/public/v1/software/renesis-player/index.json new file mode 100644 index 000000000000..8b010a18134d --- /dev/null +++ b/site/public/v1/software/renesis-player/index.json @@ -0,0 +1,21 @@ +{ + "id": 8521, + "slug": "renesis-player", + "name": "Renesis Player", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7313063" + ], + "created_at": "2026-07-10T10:12:42.685280", + "updated_at": "2026-07-10T10:12:42.685280", + "url": "/v1/software/renesis-player" +} diff --git a/site/public/v1/software/renovatiocms/index.json b/site/public/v1/software/renovatiocms/index.json new file mode 100644 index 000000000000..d03828022f5b --- /dev/null +++ b/site/public/v1/software/renovatiocms/index.json @@ -0,0 +1,21 @@ +{ + "id": 8522, + "slug": "renovatiocms", + "name": "RenovatioCMS", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "PHP" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2309535" + ], + "created_at": "2026-07-10T10:12:42.686280", + "updated_at": "2026-07-10T10:12:42.686280", + "url": "/v1/software/renovatiocms" +} diff --git a/site/public/v1/software/rentmanager-nz-limited/index.json b/site/public/v1/software/rentmanager-nz-limited/index.json new file mode 100644 index 000000000000..bcdfcf8d44cc --- /dev/null +++ b/site/public/v1/software/rentmanager-nz-limited/index.json @@ -0,0 +1,19 @@ +{ + "id": 8523, + "slug": "rentmanager-nz-limited", + "name": "RentManager NZ Limited", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140312539" + ], + "created_at": "2026-07-10T10:12:42.686280", + "updated_at": "2026-07-10T10:12:42.686280", + "url": "/v1/software/rentmanager-nz-limited" +} diff --git a/site/public/v1/software/rentrez/index.json b/site/public/v1/software/rentrez/index.json new file mode 100644 index 000000000000..d15ef8b127f0 --- /dev/null +++ b/site/public/v1/software/rentrez/index.json @@ -0,0 +1,19 @@ +{ + "id": 8524, + "slug": "rentrez", + "name": "rentrez", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112338817" + ], + "created_at": "2026-07-10T10:12:42.686280", + "updated_at": "2026-07-10T10:12:42.686280", + "url": "/v1/software/rentrez" +} diff --git a/site/public/v1/software/rep-gtk/index.json b/site/public/v1/software/rep-gtk/index.json new file mode 100644 index 000000000000..5a3d1a442b5d --- /dev/null +++ b/site/public/v1/software/rep-gtk/index.json @@ -0,0 +1,19 @@ +{ + "id": 8525, + "slug": "rep-gtk", + "name": "rep-gtk", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62862582" + ], + "created_at": "2026-07-10T10:12:42.687280", + "updated_at": "2026-07-10T10:12:42.687280", + "url": "/v1/software/rep-gtk" +} diff --git a/site/public/v1/software/repairnator/index.json b/site/public/v1/software/repairnator/index.json new file mode 100644 index 000000000000..586d63b5ec8d --- /dev/null +++ b/site/public/v1/software/repairnator/index.json @@ -0,0 +1,21 @@ +{ + "id": 8526, + "slug": "repairnator", + "name": "repairnator", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127485303" + ], + "created_at": "2026-07-10T10:12:42.687280", + "updated_at": "2026-07-10T10:12:42.687280", + "url": "/v1/software/repairnator" +} diff --git a/site/public/v1/software/reperfection/index.json b/site/public/v1/software/reperfection/index.json new file mode 100644 index 000000000000..063eb62a9904 --- /dev/null +++ b/site/public/v1/software/reperfection/index.json @@ -0,0 +1,19 @@ +{ + "id": 8527, + "slug": "reperfection", + "name": "Reperfection", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140461524" + ], + "created_at": "2026-07-10T10:12:42.687280", + "updated_at": "2026-07-10T10:12:42.687280", + "url": "/v1/software/reperfection" +} diff --git a/site/public/v1/software/repetier-host/index.json b/site/public/v1/software/repetier-host/index.json new file mode 100644 index 000000000000..39490214022d --- /dev/null +++ b/site/public/v1/software/repetier-host/index.json @@ -0,0 +1,22 @@ +{ + "id": 8528, + "slug": "repetier-host", + "name": "Repetier-Host", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q55080188" + ], + "created_at": "2026-07-10T10:12:42.688283", + "updated_at": "2026-07-10T10:12:42.688283", + "url": "/v1/software/repetier-host" +} diff --git a/site/public/v1/software/replica/index.json b/site/public/v1/software/replica/index.json new file mode 100644 index 000000000000..29338e717868 --- /dev/null +++ b/site/public/v1/software/replica/index.json @@ -0,0 +1,19 @@ +{ + "id": 8529, + "slug": "replica", + "name": "Replica", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7314053" + ], + "created_at": "2026-07-10T10:12:42.688283", + "updated_at": "2026-07-10T10:12:42.688283", + "url": "/v1/software/replica" +} diff --git a/site/public/v1/software/replication-computing/index.json b/site/public/v1/software/replication-computing/index.json new file mode 100644 index 000000000000..ee91b680bd4b --- /dev/null +++ b/site/public/v1/software/replication-computing/index.json @@ -0,0 +1,19 @@ +{ + "id": 8530, + "slug": "replication-computing", + "name": "Replication (computing)", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7443829" + ], + "created_at": "2026-07-10T10:12:42.688283", + "updated_at": "2026-07-10T10:12:42.688283", + "url": "/v1/software/replication-computing" +} diff --git a/site/public/v1/software/repo-commit/index.json b/site/public/v1/software/repo-commit/index.json new file mode 100644 index 000000000000..9edbfa24dd01 --- /dev/null +++ b/site/public/v1/software/repo-commit/index.json @@ -0,0 +1,19 @@ +{ + "id": 8531, + "slug": "repo-commit", + "name": "repo-commit", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975419" + ], + "created_at": "2026-07-10T10:12:42.689283", + "updated_at": "2026-07-10T10:12:42.689283", + "url": "/v1/software/repo-commit" +} diff --git a/site/public/v1/software/repo/index.json b/site/public/v1/software/repo/index.json new file mode 100644 index 000000000000..34ed7ebffa6b --- /dev/null +++ b/site/public/v1/software/repo/index.json @@ -0,0 +1,19 @@ +{ + "id": 8532, + "slug": "repo", + "name": "repo", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62862574" + ], + "created_at": "2026-07-10T10:12:42.689283", + "updated_at": "2026-07-10T10:12:42.689283", + "url": "/v1/software/repo" +} diff --git a/site/public/v1/software/repoman/index.json b/site/public/v1/software/repoman/index.json new file mode 100644 index 000000000000..2018212b0af2 --- /dev/null +++ b/site/public/v1/software/repoman/index.json @@ -0,0 +1,19 @@ +{ + "id": 8533, + "slug": "repoman", + "name": "repoman", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975420" + ], + "created_at": "2026-07-10T10:12:42.689283", + "updated_at": "2026-07-10T10:12:42.689283", + "url": "/v1/software/repoman" +} diff --git a/site/public/v1/software/reprise-license-manager/index.json b/site/public/v1/software/reprise-license-manager/index.json new file mode 100644 index 000000000000..e56d1d600ffb --- /dev/null +++ b/site/public/v1/software/reprise-license-manager/index.json @@ -0,0 +1,22 @@ +{ + "id": 8534, + "slug": "reprise-license-manager", + "name": "Reprise License Manager", + "release_date": "2006-01-01", + "developers": [], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25196727" + ], + "created_at": "2026-07-10T10:12:42.690282", + "updated_at": "2026-07-10T10:12:42.690282", + "url": "/v1/software/reprise-license-manager" +} diff --git a/site/public/v1/software/reproducibility-assessment/index.json b/site/public/v1/software/reproducibility-assessment/index.json new file mode 100644 index 000000000000..d4df25b47e0d --- /dev/null +++ b/site/public/v1/software/reproducibility-assessment/index.json @@ -0,0 +1,21 @@ +{ + "id": 8535, + "slug": "reproducibility-assessment", + "name": "reproducibility_assessment", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Apache Software License 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127485632" + ], + "created_at": "2026-07-10T10:12:42.690282", + "updated_at": "2026-07-10T10:12:42.690282", + "url": "/v1/software/reproducibility-assessment" +} diff --git a/site/public/v1/software/repsnapper/index.json b/site/public/v1/software/repsnapper/index.json new file mode 100644 index 000000000000..7548b9d12825 --- /dev/null +++ b/site/public/v1/software/repsnapper/index.json @@ -0,0 +1,19 @@ +{ + "id": 8536, + "slug": "repsnapper", + "name": "repsnapper", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975421" + ], + "created_at": "2026-07-10T10:12:42.690282", + "updated_at": "2026-07-10T10:12:42.690282", + "url": "/v1/software/repsnapper" +} diff --git a/site/public/v1/software/reptyr/index.json b/site/public/v1/software/reptyr/index.json new file mode 100644 index 000000000000..2ac844d32130 --- /dev/null +++ b/site/public/v1/software/reptyr/index.json @@ -0,0 +1,21 @@ +{ + "id": 8537, + "slug": "reptyr", + "name": "reptyr", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62862476" + ], + "created_at": "2026-07-10T10:12:42.691282", + "updated_at": "2026-07-10T10:12:42.691282", + "url": "/v1/software/reptyr" +} diff --git a/site/public/v1/software/repuclinic/index.json b/site/public/v1/software/repuclinic/index.json new file mode 100644 index 000000000000..55d2bc5df4b6 --- /dev/null +++ b/site/public/v1/software/repuclinic/index.json @@ -0,0 +1,21 @@ +{ + "id": 8538, + "slug": "repuclinic", + "name": "RepuClinic", + "release_date": null, + "developers": [ + "Donskee Technology Solutions" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139548112" + ], + "created_at": "2026-07-10T10:12:42.691282", + "updated_at": "2026-07-10T10:12:42.691282", + "url": "/v1/software/repuclinic" +} diff --git a/site/public/v1/software/reqall/index.json b/site/public/v1/software/reqall/index.json new file mode 100644 index 000000000000..b4a5a4c5daa0 --- /dev/null +++ b/site/public/v1/software/reqall/index.json @@ -0,0 +1,23 @@ +{ + "id": 8539, + "slug": "reqall", + "name": "ReQall", + "release_date": "2007-01-01", + "developers": [], + "publishers": [], + "operating_systems": [ + "cross-platform" + ], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7300021" + ], + "created_at": "2026-07-10T10:12:42.691282", + "updated_at": "2026-07-10T10:12:42.691282", + "url": "/v1/software/reqall" +} diff --git a/site/public/v1/software/reqtify/index.json b/site/public/v1/software/reqtify/index.json new file mode 100644 index 000000000000..7b3a1c2cb2e7 --- /dev/null +++ b/site/public/v1/software/reqtify/index.json @@ -0,0 +1,21 @@ +{ + "id": 8540, + "slug": "reqtify", + "name": "Reqtify", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3427555" + ], + "created_at": "2026-07-10T10:12:42.691282", + "updated_at": "2026-07-10T10:12:42.691282", + "url": "/v1/software/reqtify" +} diff --git a/site/public/v1/software/requirejs/index.json b/site/public/v1/software/requirejs/index.json new file mode 100644 index 000000000000..78aa73cb6eeb --- /dev/null +++ b/site/public/v1/software/requirejs/index.json @@ -0,0 +1,21 @@ +{ + "id": 8541, + "slug": "requirejs", + "name": "RequireJS", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q15842219" + ], + "created_at": "2026-07-10T10:12:42.692410", + "updated_at": "2026-07-10T10:12:42.692410", + "url": "/v1/software/requirejs" +} diff --git a/site/public/v1/software/rescarta-toolkit/index.json b/site/public/v1/software/rescarta-toolkit/index.json new file mode 100644 index 000000000000..dd2795267add --- /dev/null +++ b/site/public/v1/software/rescarta-toolkit/index.json @@ -0,0 +1,23 @@ +{ + "id": 8542, + "slug": "rescarta-toolkit", + "name": "ResCarta Toolkit", + "release_date": "2004-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Java" + ], + "licenses": [ + "Apache License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17078111" + ], + "created_at": "2026-07-10T10:12:42.692410", + "updated_at": "2026-07-10T10:12:42.692410", + "url": "/v1/software/rescarta-toolkit" +} diff --git a/site/public/v1/software/research-data-management-organiser/index.json b/site/public/v1/software/research-data-management-organiser/index.json new file mode 100644 index 000000000000..beec3ca0efcb --- /dev/null +++ b/site/public/v1/software/research-data-management-organiser/index.json @@ -0,0 +1,21 @@ +{ + "id": 8543, + "slug": "research-data-management-organiser", + "name": "Research Data Management Organiser", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Apache Software License 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134007740" + ], + "created_at": "2026-07-10T10:12:42.692410", + "updated_at": "2026-07-10T10:12:42.692410", + "url": "/v1/software/research-data-management-organiser" +} diff --git a/site/public/v1/software/researchspace/index.json b/site/public/v1/software/researchspace/index.json new file mode 100644 index 000000000000..bd73dcb886e2 --- /dev/null +++ b/site/public/v1/software/researchspace/index.json @@ -0,0 +1,21 @@ +{ + "id": 8544, + "slug": "researchspace", + "name": "ResearchSpace", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "GNU Affero General Public License, version 3.0 or later" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122946371" + ], + "created_at": "2026-07-10T10:12:42.693281", + "updated_at": "2026-07-10T10:12:42.693281", + "url": "/v1/software/researchspace" +} diff --git a/site/public/v1/software/resid/index.json b/site/public/v1/software/resid/index.json new file mode 100644 index 000000000000..9b95c163eddc --- /dev/null +++ b/site/public/v1/software/resid/index.json @@ -0,0 +1,19 @@ +{ + "id": 8545, + "slug": "resid", + "name": "reSID", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7300024" + ], + "created_at": "2026-07-10T10:12:42.693281", + "updated_at": "2026-07-10T10:12:42.693281", + "url": "/v1/software/resid" +} diff --git a/site/public/v1/software/resorcerer/index.json b/site/public/v1/software/resorcerer/index.json new file mode 100644 index 000000000000..5997292da9fb --- /dev/null +++ b/site/public/v1/software/resorcerer/index.json @@ -0,0 +1,19 @@ +{ + "id": 8546, + "slug": "resorcerer", + "name": "Resorcerer", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7315759" + ], + "created_at": "2026-07-10T10:12:42.693281", + "updated_at": "2026-07-10T10:12:42.693281", + "url": "/v1/software/resorcerer" +} diff --git a/site/public/v1/software/resource-construction-set/index.json b/site/public/v1/software/resource-construction-set/index.json new file mode 100644 index 000000000000..dcbb03617a34 --- /dev/null +++ b/site/public/v1/software/resource-construction-set/index.json @@ -0,0 +1,19 @@ +{ + "id": 8547, + "slug": "resource-construction-set", + "name": "Resource construction set", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1384741" + ], + "created_at": "2026-07-10T10:12:42.694285", + "updated_at": "2026-07-10T10:12:42.694285", + "url": "/v1/software/resource-construction-set" +} diff --git a/site/public/v1/software/resource-tuner/index.json b/site/public/v1/software/resource-tuner/index.json new file mode 100644 index 000000000000..df6e21a1bcdb --- /dev/null +++ b/site/public/v1/software/resource-tuner/index.json @@ -0,0 +1,19 @@ +{ + "id": 8548, + "slug": "resource-tuner", + "name": "Resource Tuner", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134417612" + ], + "created_at": "2026-07-10T10:12:42.694285", + "updated_at": "2026-07-10T10:12:42.694285", + "url": "/v1/software/resource-tuner" +} diff --git a/site/public/v1/software/respark/index.json b/site/public/v1/software/respark/index.json new file mode 100644 index 000000000000..f1c5e0d71e41 --- /dev/null +++ b/site/public/v1/software/respark/index.json @@ -0,0 +1,19 @@ +{ + "id": 8549, + "slug": "respark", + "name": "ReSpark", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140264461" + ], + "created_at": "2026-07-10T10:12:42.694285", + "updated_at": "2026-07-10T10:12:42.694285", + "url": "/v1/software/respark" +} diff --git a/site/public/v1/software/responsly/index.json b/site/public/v1/software/responsly/index.json new file mode 100644 index 000000000000..3db422f0e2cb --- /dev/null +++ b/site/public/v1/software/responsly/index.json @@ -0,0 +1,19 @@ +{ + "id": 8550, + "slug": "responsly", + "name": "Responsly", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139547067" + ], + "created_at": "2026-07-10T10:12:42.695285", + "updated_at": "2026-07-10T10:12:42.695285", + "url": "/v1/software/responsly" +} diff --git a/site/public/v1/software/restlet/index.json b/site/public/v1/software/restlet/index.json new file mode 100644 index 000000000000..947006484c0b --- /dev/null +++ b/site/public/v1/software/restlet/index.json @@ -0,0 +1,21 @@ +{ + "id": 8551, + "slug": "restlet", + "name": "Restlet", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "cross-platform" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7316175" + ], + "created_at": "2026-07-10T10:12:42.695285", + "updated_at": "2026-07-10T10:12:42.695285", + "url": "/v1/software/restlet" +} diff --git a/site/public/v1/software/result-assessment-tool-rat/index.json b/site/public/v1/software/result-assessment-tool-rat/index.json new file mode 100644 index 000000000000..a52747a96b40 --- /dev/null +++ b/site/public/v1/software/result-assessment-tool-rat/index.json @@ -0,0 +1,25 @@ +{ + "id": 8552, + "slug": "result-assessment-tool-rat", + "name": "Result Assessment Tool (RAT)", + "release_date": null, + "developers": [ + "Hamburg University of Applied Sciences" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Python" + ], + "licenses": [ + "GNU General Public License, version 3.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135275290" + ], + "created_at": "2026-07-10T10:12:42.695285", + "updated_at": "2026-07-10T10:12:42.695285", + "url": "/v1/software/result-assessment-tool-rat" +} diff --git a/site/public/v1/software/resumeai/index.json b/site/public/v1/software/resumeai/index.json new file mode 100644 index 000000000000..25b5992bb413 --- /dev/null +++ b/site/public/v1/software/resumeai/index.json @@ -0,0 +1,19 @@ +{ + "id": 8553, + "slug": "resumeai", + "name": "ResumeAI", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139913967" + ], + "created_at": "2026-07-10T10:12:42.695285", + "updated_at": "2026-07-10T10:12:42.695285", + "url": "/v1/software/resumeai" +} diff --git a/site/public/v1/software/retm/index.json b/site/public/v1/software/retm/index.json new file mode 100644 index 000000000000..2f4bc772844c --- /dev/null +++ b/site/public/v1/software/retm/index.json @@ -0,0 +1,25 @@ +{ + "id": 8554, + "slug": "retm", + "name": "Retm", + "release_date": null, + "developers": [ + "MNM Company" + ], + "publishers": [], + "operating_systems": [ + "cross-platform" + ], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136756137" + ], + "created_at": "2026-07-10T10:12:42.696284", + "updated_at": "2026-07-10T10:12:42.696284", + "url": "/v1/software/retm" +} diff --git a/site/public/v1/software/retouch4me/index.json b/site/public/v1/software/retouch4me/index.json new file mode 100644 index 000000000000..4e94cbe0b38d --- /dev/null +++ b/site/public/v1/software/retouch4me/index.json @@ -0,0 +1,19 @@ +{ + "id": 8555, + "slug": "retouch4me", + "name": "Retouch4me", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115519094" + ], + "created_at": "2026-07-10T10:12:42.696284", + "updated_at": "2026-07-10T10:12:42.696284", + "url": "/v1/software/retouch4me" +} diff --git a/site/public/v1/software/retrieval-based-voice-conversion/index.json b/site/public/v1/software/retrieval-based-voice-conversion/index.json new file mode 100644 index 000000000000..a62381baaf1e --- /dev/null +++ b/site/public/v1/software/retrieval-based-voice-conversion/index.json @@ -0,0 +1,19 @@ +{ + "id": 8556, + "slug": "retrieval-based-voice-conversion", + "name": "Retrieval-based Voice Conversion", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126332073" + ], + "created_at": "2026-07-10T10:12:42.696284", + "updated_at": "2026-07-10T10:12:42.696284", + "url": "/v1/software/retrieval-based-voice-conversion" +} diff --git a/site/public/v1/software/retrievalware/index.json b/site/public/v1/software/retrievalware/index.json new file mode 100644 index 000000000000..2de1fd5b929f --- /dev/null +++ b/site/public/v1/software/retrievalware/index.json @@ -0,0 +1,21 @@ +{ + "id": 8557, + "slug": "retrievalware", + "name": "RetrievalWare", + "release_date": null, + "developers": [ + "Fast Search & Transfer" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7316947" + ], + "created_at": "2026-07-10T10:12:42.697284", + "updated_at": "2026-07-10T10:12:42.697284", + "url": "/v1/software/retrievalware" +} diff --git a/site/public/v1/software/retrovol/index.json b/site/public/v1/software/retrovol/index.json new file mode 100644 index 000000000000..35b8ad6de805 --- /dev/null +++ b/site/public/v1/software/retrovol/index.json @@ -0,0 +1,19 @@ +{ + "id": 8558, + "slug": "retrovol", + "name": "retrovol", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63064993" + ], + "created_at": "2026-07-10T10:12:42.697284", + "updated_at": "2026-07-10T10:12:42.697284", + "url": "/v1/software/retrovol" +} diff --git a/site/public/v1/software/retscreen/index.json b/site/public/v1/software/retscreen/index.json new file mode 100644 index 000000000000..1219ee239664 --- /dev/null +++ b/site/public/v1/software/retscreen/index.json @@ -0,0 +1,23 @@ +{ + "id": 8559, + "slug": "retscreen", + "name": "RETScreen", + "release_date": null, + "developers": [ + "Government of Canada" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7276397" + ], + "created_at": "2026-07-10T10:12:42.697284", + "updated_at": "2026-07-10T10:12:42.697284", + "url": "/v1/software/retscreen" +} diff --git a/site/public/v1/software/returnmail-ai/index.json b/site/public/v1/software/returnmail-ai/index.json new file mode 100644 index 000000000000..bd2c72971cf7 --- /dev/null +++ b/site/public/v1/software/returnmail-ai/index.json @@ -0,0 +1,21 @@ +{ + "id": 8560, + "slug": "returnmail-ai", + "name": "ReturnMail.ai", + "release_date": null, + "developers": [ + "Sapphire LLC" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134513663" + ], + "created_at": "2026-07-10T10:12:42.698332", + "updated_at": "2026-07-10T10:12:42.698332", + "url": "/v1/software/returnmail-ai" +} diff --git a/site/public/v1/software/reuters-3000-xtra/index.json b/site/public/v1/software/reuters-3000-xtra/index.json new file mode 100644 index 000000000000..7e79060712c2 --- /dev/null +++ b/site/public/v1/software/reuters-3000-xtra/index.json @@ -0,0 +1,19 @@ +{ + "id": 8561, + "slug": "reuters-3000-xtra", + "name": "Reuters 3000 Xtra", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17078254" + ], + "created_at": "2026-07-10T10:12:42.698332", + "updated_at": "2026-07-10T10:12:42.698332", + "url": "/v1/software/reuters-3000-xtra" +} diff --git a/site/public/v1/software/revelion/index.json b/site/public/v1/software/revelion/index.json new file mode 100644 index 000000000000..e1163f2c3e96 --- /dev/null +++ b/site/public/v1/software/revelion/index.json @@ -0,0 +1,21 @@ +{ + "id": 8562, + "slug": "revelion", + "name": "Revelion", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138779522" + ], + "created_at": "2026-07-10T10:12:42.698332", + "updated_at": "2026-07-10T10:12:42.698332", + "url": "/v1/software/revelion" +} diff --git a/site/public/v1/software/reviewer/index.json b/site/public/v1/software/reviewer/index.json new file mode 100644 index 000000000000..29749e05873e --- /dev/null +++ b/site/public/v1/software/reviewer/index.json @@ -0,0 +1,24 @@ +{ + "id": 8563, + "slug": "reviewer", + "name": "REviewER", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "Eclipse Public License 1.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106381182" + ], + "created_at": "2026-07-10T10:12:42.698332", + "updated_at": "2026-07-10T10:12:42.698332", + "url": "/v1/software/reviewer" +} diff --git a/site/public/v1/software/reviewpilot/index.json b/site/public/v1/software/reviewpilot/index.json new file mode 100644 index 000000000000..eeb086a396c3 --- /dev/null +++ b/site/public/v1/software/reviewpilot/index.json @@ -0,0 +1,21 @@ +{ + "id": 8564, + "slug": "reviewpilot", + "name": "ReviewPilot", + "release_date": null, + "developers": [ + "IRON IT" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139737367" + ], + "created_at": "2026-07-10T10:12:42.699376", + "updated_at": "2026-07-10T10:12:42.699376", + "url": "/v1/software/reviewpilot" +} diff --git a/site/public/v1/software/reviewping/index.json b/site/public/v1/software/reviewping/index.json new file mode 100644 index 000000000000..7928b70b89a8 --- /dev/null +++ b/site/public/v1/software/reviewping/index.json @@ -0,0 +1,19 @@ +{ + "id": 8565, + "slug": "reviewping", + "name": "ReviewPing", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140299148" + ], + "created_at": "2026-07-10T10:12:42.699376", + "updated_at": "2026-07-10T10:12:42.699376", + "url": "/v1/software/reviewping" +} diff --git a/site/public/v1/software/revizto/index.json b/site/public/v1/software/revizto/index.json new file mode 100644 index 000000000000..e9912b29b089 --- /dev/null +++ b/site/public/v1/software/revizto/index.json @@ -0,0 +1,19 @@ +{ + "id": 8566, + "slug": "revizto", + "name": "Revizto", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17138560" + ], + "created_at": "2026-07-10T10:12:42.699376", + "updated_at": "2026-07-10T10:12:42.699376", + "url": "/v1/software/revizto" +} diff --git a/site/public/v1/software/revman/index.json b/site/public/v1/software/revman/index.json new file mode 100644 index 000000000000..e651c1d3f7e7 --- /dev/null +++ b/site/public/v1/software/revman/index.json @@ -0,0 +1,22 @@ +{ + "id": 8567, + "slug": "revman", + "name": "RevMan", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106381184" + ], + "created_at": "2026-07-10T10:12:42.699376", + "updated_at": "2026-07-10T10:12:42.699376", + "url": "/v1/software/revman" +} diff --git a/site/public/v1/software/revolution3d/index.json b/site/public/v1/software/revolution3d/index.json new file mode 100644 index 000000000000..1ddff808ccb7 --- /dev/null +++ b/site/public/v1/software/revolution3d/index.json @@ -0,0 +1,19 @@ +{ + "id": 8568, + "slug": "revolution3d", + "name": "Revolution3D", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3428545" + ], + "created_at": "2026-07-10T10:12:42.700478", + "updated_at": "2026-07-10T10:12:42.700478", + "url": "/v1/software/revolution3d" +} diff --git a/site/public/v1/software/revoscalepy/index.json b/site/public/v1/software/revoscalepy/index.json new file mode 100644 index 000000000000..f09c839e080b --- /dev/null +++ b/site/public/v1/software/revoscalepy/index.json @@ -0,0 +1,21 @@ +{ + "id": 8569, + "slug": "revoscalepy", + "name": "Revoscalepy", + "release_date": "2017-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Python" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q55080215" + ], + "created_at": "2026-07-10T10:12:42.700478", + "updated_at": "2026-07-10T10:12:42.700478", + "url": "/v1/software/revoscalepy" +} diff --git a/site/public/v1/software/revoscaler/index.json b/site/public/v1/software/revoscaler/index.json new file mode 100644 index 000000000000..b35568cf2f42 --- /dev/null +++ b/site/public/v1/software/revoscaler/index.json @@ -0,0 +1,21 @@ +{ + "id": 8570, + "slug": "revoscaler", + "name": "RevoScaleR", + "release_date": "2016-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Python" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q55080220" + ], + "created_at": "2026-07-10T10:12:42.701448", + "updated_at": "2026-07-10T10:12:42.701448", + "url": "/v1/software/revoscaler" +} diff --git a/site/public/v1/software/rex-client/index.json b/site/public/v1/software/rex-client/index.json new file mode 100644 index 000000000000..196bc78a95b4 --- /dev/null +++ b/site/public/v1/software/rex-client/index.json @@ -0,0 +1,21 @@ +{ + "id": 8571, + "slug": "rex-client", + "name": "rex-client", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975422" + ], + "created_at": "2026-07-10T10:12:42.701448", + "updated_at": "2026-07-10T10:12:42.701448", + "url": "/v1/software/rex-client" +} diff --git a/site/public/v1/software/rexcel/index.json b/site/public/v1/software/rexcel/index.json new file mode 100644 index 000000000000..d971f93f259b --- /dev/null +++ b/site/public/v1/software/rexcel/index.json @@ -0,0 +1,21 @@ +{ + "id": 8572, + "slug": "rexcel", + "name": "RExcel", + "release_date": null, + "developers": [ + "Erich Neuwirth" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10819919" + ], + "created_at": "2026-07-10T10:12:42.701448", + "updated_at": "2026-07-10T10:12:42.701448", + "url": "/v1/software/rexcel" +} diff --git a/site/public/v1/software/rexima/index.json b/site/public/v1/software/rexima/index.json new file mode 100644 index 000000000000..6fc16b3a213d --- /dev/null +++ b/site/public/v1/software/rexima/index.json @@ -0,0 +1,19 @@ +{ + "id": 8573, + "slug": "rexima", + "name": "rexima", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62862463" + ], + "created_at": "2026-07-10T10:12:42.701448", + "updated_at": "2026-07-10T10:12:42.701448", + "url": "/v1/software/rexima" +} diff --git a/site/public/v1/software/rexio/index.json b/site/public/v1/software/rexio/index.json new file mode 100644 index 000000000000..e1f3f71e7e4f --- /dev/null +++ b/site/public/v1/software/rexio/index.json @@ -0,0 +1,21 @@ +{ + "id": 8574, + "slug": "rexio", + "name": "RexiO", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "cross-platform" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139997351" + ], + "created_at": "2026-07-10T10:12:42.702482", + "updated_at": "2026-07-10T10:12:42.702482", + "url": "/v1/software/rexio" +} diff --git a/site/public/v1/software/rfdump/index.json b/site/public/v1/software/rfdump/index.json new file mode 100644 index 000000000000..1a986c56c9d5 --- /dev/null +++ b/site/public/v1/software/rfdump/index.json @@ -0,0 +1,19 @@ +{ + "id": 8575, + "slug": "rfdump", + "name": "RFdump", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7276623" + ], + "created_at": "2026-07-10T10:12:42.702482", + "updated_at": "2026-07-10T10:12:42.702482", + "url": "/v1/software/rfdump" +} diff --git a/site/public/v1/software/rfem/index.json b/site/public/v1/software/rfem/index.json new file mode 100644 index 000000000000..31481b2ea829 --- /dev/null +++ b/site/public/v1/software/rfem/index.json @@ -0,0 +1,21 @@ +{ + "id": 8576, + "slug": "rfem", + "name": "RFEM", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q15056418" + ], + "created_at": "2026-07-10T10:12:42.702482", + "updated_at": "2026-07-10T10:12:42.702482", + "url": "/v1/software/rfem" +} diff --git a/site/public/v1/software/rgl/index.json b/site/public/v1/software/rgl/index.json new file mode 100644 index 000000000000..548c0cc01e50 --- /dev/null +++ b/site/public/v1/software/rgl/index.json @@ -0,0 +1,19 @@ +{ + "id": 8577, + "slug": "rgl", + "name": "RGL", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3928276" + ], + "created_at": "2026-07-10T10:12:42.703483", + "updated_at": "2026-07-10T10:12:42.703483", + "url": "/v1/software/rgl" +} diff --git a/site/public/v1/software/rhea-pipeline/index.json b/site/public/v1/software/rhea-pipeline/index.json new file mode 100644 index 000000000000..13c610832851 --- /dev/null +++ b/site/public/v1/software/rhea-pipeline/index.json @@ -0,0 +1,25 @@ +{ + "id": 8578, + "slug": "rhea-pipeline", + "name": "Rhea (pipeline)", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [ + "R" + ], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28957060" + ], + "created_at": "2026-07-10T10:12:42.703483", + "updated_at": "2026-07-10T10:12:42.703483", + "url": "/v1/software/rhea-pipeline" +} diff --git a/site/public/v1/software/rhide/index.json b/site/public/v1/software/rhide/index.json new file mode 100644 index 000000000000..ad66f66d9857 --- /dev/null +++ b/site/public/v1/software/rhide/index.json @@ -0,0 +1,19 @@ +{ + "id": 8579, + "slug": "rhide", + "name": "RHIDE", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134590495" + ], + "created_at": "2026-07-10T10:12:42.703483", + "updated_at": "2026-07-10T10:12:42.703483", + "url": "/v1/software/rhide" +} diff --git a/site/public/v1/software/rhomobile-suite/index.json b/site/public/v1/software/rhomobile-suite/index.json new file mode 100644 index 000000000000..e8fc9d8a3381 --- /dev/null +++ b/site/public/v1/software/rhomobile-suite/index.json @@ -0,0 +1,19 @@ +{ + "id": 8580, + "slug": "rhomobile-suite", + "name": "RhoMobile Suite", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7320801" + ], + "created_at": "2026-07-10T10:12:42.704386", + "updated_at": "2026-07-10T10:12:42.704386", + "url": "/v1/software/rhomobile-suite" +} diff --git a/site/public/v1/software/rht-compass/index.json b/site/public/v1/software/rht-compass/index.json new file mode 100644 index 000000000000..ec58b0335175 --- /dev/null +++ b/site/public/v1/software/rht-compass/index.json @@ -0,0 +1,21 @@ +{ + "id": 8581, + "slug": "rht-compass", + "name": "RHT Compass", + "release_date": null, + "developers": [ + "VisionWrights" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138454540" + ], + "created_at": "2026-07-10T10:12:42.704386", + "updated_at": "2026-07-10T10:12:42.704386", + "url": "/v1/software/rht-compass" +} diff --git a/site/public/v1/software/rhyme-genie/index.json b/site/public/v1/software/rhyme-genie/index.json new file mode 100644 index 000000000000..301cb57c2590 --- /dev/null +++ b/site/public/v1/software/rhyme-genie/index.json @@ -0,0 +1,23 @@ +{ + "id": 8582, + "slug": "rhyme-genie", + "name": "Rhyme Genie", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "iOS", + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7321638" + ], + "created_at": "2026-07-10T10:12:42.704386", + "updated_at": "2026-07-10T10:12:42.704386", + "url": "/v1/software/rhyme-genie" +} diff --git a/site/public/v1/software/rhythm-core-alpha/index.json b/site/public/v1/software/rhythm-core-alpha/index.json new file mode 100644 index 000000000000..0c02229186ef --- /dev/null +++ b/site/public/v1/software/rhythm-core-alpha/index.json @@ -0,0 +1,19 @@ +{ + "id": 8583, + "slug": "rhythm-core-alpha", + "name": "Rhythm Core Alpha", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q58210658" + ], + "created_at": "2026-07-10T10:12:42.705480", + "updated_at": "2026-07-10T10:12:42.705480", + "url": "/v1/software/rhythm-core-alpha" +} diff --git a/site/public/v1/software/rialto-toolkit/index.json b/site/public/v1/software/rialto-toolkit/index.json new file mode 100644 index 000000000000..62cbe2353773 --- /dev/null +++ b/site/public/v1/software/rialto-toolkit/index.json @@ -0,0 +1,19 @@ +{ + "id": 8584, + "slug": "rialto-toolkit", + "name": "Rialto Toolkit", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3430417" + ], + "created_at": "2026-07-10T10:12:42.705480", + "updated_at": "2026-07-10T10:12:42.705480", + "url": "/v1/software/rialto-toolkit" +} diff --git a/site/public/v1/software/rich-communication-services/index.json b/site/public/v1/software/rich-communication-services/index.json new file mode 100644 index 000000000000..045d0e5e20c7 --- /dev/null +++ b/site/public/v1/software/rich-communication-services/index.json @@ -0,0 +1,23 @@ +{ + "id": 8585, + "slug": "rich-communication-services", + "name": "Rich Communication Services", + "release_date": null, + "developers": [ + "GSM Association" + ], + "publishers": [], + "operating_systems": [ + "iOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1710059" + ], + "created_at": "2026-07-10T10:12:42.705480", + "updated_at": "2026-07-10T10:12:42.705480", + "url": "/v1/software/rich-communication-services" +} diff --git a/site/public/v1/software/richcopy/index.json b/site/public/v1/software/richcopy/index.json new file mode 100644 index 000000000000..2bd4998758be --- /dev/null +++ b/site/public/v1/software/richcopy/index.json @@ -0,0 +1,21 @@ +{ + "id": 8586, + "slug": "richcopy", + "name": "RichCopy", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7323154" + ], + "created_at": "2026-07-10T10:12:42.705480", + "updated_at": "2026-07-10T10:12:42.705480", + "url": "/v1/software/richcopy" +} diff --git a/site/public/v1/software/rierino-core/index.json b/site/public/v1/software/rierino-core/index.json new file mode 100644 index 000000000000..3c819477eb90 --- /dev/null +++ b/site/public/v1/software/rierino-core/index.json @@ -0,0 +1,23 @@ +{ + "id": 8587, + "slug": "rierino-core", + "name": "Rierino Core", + "release_date": null, + "developers": [ + "Rierino" + ], + "publishers": [], + "operating_systems": [ + "cross-platform" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140185191" + ], + "created_at": "2026-07-10T10:12:42.706448", + "updated_at": "2026-07-10T10:12:42.706448", + "url": "/v1/software/rierino-core" +} diff --git a/site/public/v1/software/riffusion/index.json b/site/public/v1/software/riffusion/index.json new file mode 100644 index 000000000000..6419ea51e5ef --- /dev/null +++ b/site/public/v1/software/riffusion/index.json @@ -0,0 +1,19 @@ +{ + "id": 8588, + "slug": "riffusion", + "name": "Riffusion", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115939172" + ], + "created_at": "2026-07-10T10:12:42.706448", + "updated_at": "2026-07-10T10:12:42.706448", + "url": "/v1/software/riffusion" +} diff --git a/site/public/v1/software/rillsoft-project/index.json b/site/public/v1/software/rillsoft-project/index.json new file mode 100644 index 000000000000..068af1c0b3ab --- /dev/null +++ b/site/public/v1/software/rillsoft-project/index.json @@ -0,0 +1,21 @@ +{ + "id": 8589, + "slug": "rillsoft-project", + "name": "Rillsoft Project", + "release_date": null, + "developers": [ + "Rillsoft GmbH" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28136594" + ], + "created_at": "2026-07-10T10:12:42.706448", + "updated_at": "2026-07-10T10:12:42.706448", + "url": "/v1/software/rillsoft-project" +} diff --git a/site/public/v1/software/rinetd/index.json b/site/public/v1/software/rinetd/index.json new file mode 100644 index 000000000000..5cd714a220d3 --- /dev/null +++ b/site/public/v1/software/rinetd/index.json @@ -0,0 +1,21 @@ +{ + "id": 8590, + "slug": "rinetd", + "name": "rinetd", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "GNU General Public License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62862447" + ], + "created_at": "2026-07-10T10:12:42.707382", + "updated_at": "2026-07-10T10:12:42.707382", + "url": "/v1/software/rinetd" +} diff --git a/site/public/v1/software/ring-runner-flight-of-the-sages/index.json b/site/public/v1/software/ring-runner-flight-of-the-sages/index.json new file mode 100644 index 000000000000..20ac7f4daa88 --- /dev/null +++ b/site/public/v1/software/ring-runner-flight-of-the-sages/index.json @@ -0,0 +1,23 @@ +{ + "id": 8591, + "slug": "ring-runner-flight-of-the-sages", + "name": "Ring Runner: Flight of the Sages", + "release_date": "2013-07-09", + "developers": [ + "Triple.B.Titles" + ], + "publishers": [ + "Triple.B.Titles" + ], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q99646327" + ], + "created_at": "2026-07-10T10:12:42.707382", + "updated_at": "2026-07-10T10:12:42.707382", + "url": "/v1/software/ring-runner-flight-of-the-sages" +} diff --git a/site/public/v1/software/ringcube-vdesk/index.json b/site/public/v1/software/ringcube-vdesk/index.json new file mode 100644 index 000000000000..f1cf35a4a90e --- /dev/null +++ b/site/public/v1/software/ringcube-vdesk/index.json @@ -0,0 +1,21 @@ +{ + "id": 8592, + "slug": "ringcube-vdesk", + "name": "RingCube vDesk", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7334681" + ], + "created_at": "2026-07-10T10:12:42.707382", + "updated_at": "2026-07-10T10:12:42.707382", + "url": "/v1/software/ringcube-vdesk" +} diff --git a/site/public/v1/software/ringdroid/index.json b/site/public/v1/software/ringdroid/index.json new file mode 100644 index 000000000000..e532bc66760f --- /dev/null +++ b/site/public/v1/software/ringdroid/index.json @@ -0,0 +1,23 @@ +{ + "id": 8593, + "slug": "ringdroid", + "name": "Ringdroid", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Java" + ], + "licenses": [ + "Apache License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16927771" + ], + "created_at": "2026-07-10T10:12:42.707382", + "updated_at": "2026-07-10T10:12:42.707382", + "url": "/v1/software/ringdroid" +} diff --git a/site/public/v1/software/ringid/index.json b/site/public/v1/software/ringid/index.json new file mode 100644 index 000000000000..fef5f7fc404f --- /dev/null +++ b/site/public/v1/software/ringid/index.json @@ -0,0 +1,23 @@ +{ + "id": 8594, + "slug": "ringid", + "name": "RingID", + "release_date": "2015-07-01", + "developers": [], + "publishers": [], + "operating_systems": [ + "iOS" + ], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q19894436" + ], + "created_at": "2026-07-10T10:12:42.708381", + "updated_at": "2026-07-10T10:12:42.708381", + "url": "/v1/software/ringid" +} diff --git a/site/public/v1/software/ringo/index.json b/site/public/v1/software/ringo/index.json new file mode 100644 index 000000000000..644bf1978869 --- /dev/null +++ b/site/public/v1/software/ringo/index.json @@ -0,0 +1,19 @@ +{ + "id": 8595, + "slug": "ringo", + "name": "Ringo", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18390444" + ], + "created_at": "2026-07-10T10:12:42.708381", + "updated_at": "2026-07-10T10:12:42.708381", + "url": "/v1/software/ringo" +} diff --git a/site/public/v1/software/rinkt/index.json b/site/public/v1/software/rinkt/index.json new file mode 100644 index 000000000000..ac1c59f42cad --- /dev/null +++ b/site/public/v1/software/rinkt/index.json @@ -0,0 +1,19 @@ +{ + "id": 8596, + "slug": "rinkt", + "name": "RINKT", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139831627" + ], + "created_at": "2026-07-10T10:12:42.709381", + "updated_at": "2026-07-10T10:12:42.709381", + "url": "/v1/software/rinkt" +} diff --git a/site/public/v1/software/ripcord/index.json b/site/public/v1/software/ripcord/index.json new file mode 100644 index 000000000000..5379f19bd912 --- /dev/null +++ b/site/public/v1/software/ripcord/index.json @@ -0,0 +1,21 @@ +{ + "id": 8597, + "slug": "ripcord", + "name": "Ripcord", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "shareware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122992813" + ], + "created_at": "2026-07-10T10:12:42.709381", + "updated_at": "2026-07-10T10:12:42.709381", + "url": "/v1/software/ripcord" +} diff --git a/site/public/v1/software/ripit/index.json b/site/public/v1/software/ripit/index.json new file mode 100644 index 000000000000..27a6dd66d302 --- /dev/null +++ b/site/public/v1/software/ripit/index.json @@ -0,0 +1,19 @@ +{ + "id": 8598, + "slug": "ripit", + "name": "ripit", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7335600" + ], + "created_at": "2026-07-10T10:12:42.709381", + "updated_at": "2026-07-10T10:12:42.709381", + "url": "/v1/software/ripit" +} diff --git a/site/public/v1/software/ripmime/index.json b/site/public/v1/software/ripmime/index.json new file mode 100644 index 000000000000..6f367c74f3ae --- /dev/null +++ b/site/public/v1/software/ripmime/index.json @@ -0,0 +1,19 @@ +{ + "id": 8599, + "slug": "ripmime", + "name": "ripMIME", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62862094" + ], + "created_at": "2026-07-10T10:12:42.709381", + "updated_at": "2026-07-10T10:12:42.709381", + "url": "/v1/software/ripmime" +} diff --git a/site/public/v1/software/ripole/index.json b/site/public/v1/software/ripole/index.json new file mode 100644 index 000000000000..fefe8255065f --- /dev/null +++ b/site/public/v1/software/ripole/index.json @@ -0,0 +1,21 @@ +{ + "id": 8600, + "slug": "ripole", + "name": "ripOLE", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "2-clause BSD License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62862080" + ], + "created_at": "2026-07-10T10:12:42.710381", + "updated_at": "2026-07-10T10:12:42.710381", + "url": "/v1/software/ripole" +} diff --git a/site/public/v1/software/rippled/index.json b/site/public/v1/software/rippled/index.json new file mode 100644 index 000000000000..b71bad3baa21 --- /dev/null +++ b/site/public/v1/software/rippled/index.json @@ -0,0 +1,21 @@ +{ + "id": 8601, + "slug": "rippled", + "name": "Rippled", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "ISC license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q24869649" + ], + "created_at": "2026-07-10T10:12:42.710381", + "updated_at": "2026-07-10T10:12:42.710381", + "url": "/v1/software/rippled" +} diff --git a/site/public/v1/software/rips/index.json b/site/public/v1/software/rips/index.json new file mode 100644 index 000000000000..d60009754beb --- /dev/null +++ b/site/public/v1/software/rips/index.json @@ -0,0 +1,19 @@ +{ + "id": 8602, + "slug": "rips", + "name": "RIPS", + "release_date": "2010-05-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22682080" + ], + "created_at": "2026-07-10T10:12:42.711381", + "updated_at": "2026-07-10T10:12:42.711381", + "url": "/v1/software/rips" +} diff --git a/site/public/v1/software/rising-antivirus/index.json b/site/public/v1/software/rising-antivirus/index.json new file mode 100644 index 000000000000..97b52f6e944f --- /dev/null +++ b/site/public/v1/software/rising-antivirus/index.json @@ -0,0 +1,19 @@ +{ + "id": 8603, + "slug": "rising-antivirus", + "name": "Rising Antivirus", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1064981" + ], + "created_at": "2026-07-10T10:12:42.711381", + "updated_at": "2026-07-10T10:12:42.711381", + "url": "/v1/software/rising-antivirus" +} diff --git a/site/public/v1/software/risk-ai-agent/index.json b/site/public/v1/software/risk-ai-agent/index.json new file mode 100644 index 000000000000..2cc0f581ee65 --- /dev/null +++ b/site/public/v1/software/risk-ai-agent/index.json @@ -0,0 +1,21 @@ +{ + "id": 8604, + "slug": "risk-ai-agent", + "name": "Risk AI Agent", + "release_date": null, + "developers": [ + "Incode" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138859582" + ], + "created_at": "2026-07-10T10:12:42.711381", + "updated_at": "2026-07-10T10:12:42.711381", + "url": "/v1/software/risk-ai-agent" +} diff --git a/site/public/v1/software/rita-q126087706/index.json b/site/public/v1/software/rita-q126087706/index.json new file mode 100644 index 000000000000..574d30b3052a --- /dev/null +++ b/site/public/v1/software/rita-q126087706/index.json @@ -0,0 +1,19 @@ +{ + "id": 8605, + "slug": "rita-q126087706", + "name": "RiTa", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087706" + ], + "created_at": "2026-07-10T10:12:42.712381", + "updated_at": "2026-07-10T10:12:42.712381", + "url": "/v1/software/rita-q126087706" +} diff --git a/site/public/v1/software/rita/index.json b/site/public/v1/software/rita/index.json new file mode 100644 index 000000000000..52daf300b572 --- /dev/null +++ b/site/public/v1/software/rita/index.json @@ -0,0 +1,22 @@ +{ + "id": 8606, + "slug": "rita", + "name": "RiTa", + "release_date": "2009-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Java", + "Processing" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105643299" + ], + "created_at": "2026-07-10T10:12:42.712381", + "updated_at": "2026-07-10T10:12:42.712381", + "url": "/v1/software/rita" +} diff --git a/site/public/v1/software/river/index.json b/site/public/v1/software/river/index.json new file mode 100644 index 000000000000..f57f93b4e635 --- /dev/null +++ b/site/public/v1/software/river/index.json @@ -0,0 +1,19 @@ +{ + "id": 8607, + "slug": "river", + "name": "River", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138660346" + ], + "created_at": "2026-07-10T10:12:42.712381", + "updated_at": "2026-07-10T10:12:42.712381", + "url": "/v1/software/river" +} diff --git a/site/public/v1/software/riverside/index.json b/site/public/v1/software/riverside/index.json new file mode 100644 index 000000000000..c8b8b0c1778a --- /dev/null +++ b/site/public/v1/software/riverside/index.json @@ -0,0 +1,23 @@ +{ + "id": 8608, + "slug": "riverside", + "name": "Riverside", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "iOS", + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135234417" + ], + "created_at": "2026-07-10T10:12:42.713381", + "updated_at": "2026-07-10T10:12:42.713381", + "url": "/v1/software/riverside" +} diff --git a/site/public/v1/software/rivet/index.json b/site/public/v1/software/rivet/index.json new file mode 100644 index 000000000000..85aaf4f2ebaa --- /dev/null +++ b/site/public/v1/software/rivet/index.json @@ -0,0 +1,21 @@ +{ + "id": 8609, + "slug": "rivet", + "name": "Rivet", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "GNU General Public License, version 3.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118136306" + ], + "created_at": "2026-07-10T10:12:42.713381", + "updated_at": "2026-07-10T10:12:42.713381", + "url": "/v1/software/rivet" +} diff --git a/site/public/v1/software/rivex/index.json b/site/public/v1/software/rivex/index.json new file mode 100644 index 000000000000..63d0a72cbf2b --- /dev/null +++ b/site/public/v1/software/rivex/index.json @@ -0,0 +1,19 @@ +{ + "id": 8610, + "slug": "rivex", + "name": "RivEx", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087707" + ], + "created_at": "2026-07-10T10:12:42.713381", + "updated_at": "2026-07-10T10:12:42.713381", + "url": "/v1/software/rivex" +} diff --git a/site/public/v1/software/rkb-explorer/index.json b/site/public/v1/software/rkb-explorer/index.json new file mode 100644 index 000000000000..e3fc686ee6db --- /dev/null +++ b/site/public/v1/software/rkb-explorer/index.json @@ -0,0 +1,21 @@ +{ + "id": 8611, + "slug": "rkb-explorer", + "name": "RKB Explorer", + "release_date": null, + "developers": [ + "School of Electronics and Computer Science, University of Southampton" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q47112046" + ], + "created_at": "2026-07-10T10:12:42.713381", + "updated_at": "2026-07-10T10:12:42.713381", + "url": "/v1/software/rkb-explorer" +} diff --git a/site/public/v1/software/rmarkdown/index.json b/site/public/v1/software/rmarkdown/index.json new file mode 100644 index 000000000000..8a930cf69199 --- /dev/null +++ b/site/public/v1/software/rmarkdown/index.json @@ -0,0 +1,21 @@ +{ + "id": 8612, + "slug": "rmarkdown", + "name": "Rmarkdown", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "R" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q53086556" + ], + "created_at": "2026-07-10T10:12:42.713381", + "updated_at": "2026-07-10T10:12:42.713381", + "url": "/v1/software/rmarkdown" +} diff --git a/site/public/v1/software/rmcde/index.json b/site/public/v1/software/rmcde/index.json new file mode 100644 index 000000000000..3438a3688cf8 --- /dev/null +++ b/site/public/v1/software/rmcde/index.json @@ -0,0 +1,19 @@ +{ + "id": 8613, + "slug": "rmcde", + "name": "RMCDE", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7276987" + ], + "created_at": "2026-07-10T10:12:42.713381", + "updated_at": "2026-07-10T10:12:42.713381", + "url": "/v1/software/rmcde" +} diff --git a/site/public/v1/software/rmcprofile/index.json b/site/public/v1/software/rmcprofile/index.json new file mode 100644 index 000000000000..ffc73b72b881 --- /dev/null +++ b/site/public/v1/software/rmcprofile/index.json @@ -0,0 +1,24 @@ +{ + "id": 8614, + "slug": "rmcprofile", + "name": "RMCProfile", + "release_date": null, + "developers": [ + "Oak Ridge National Laboratory", + "National Institute of Standards and Technology", + "University of Cambridge", + "University of Oxford" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q51715917" + ], + "created_at": "2026-07-10T10:12:42.714885", + "updated_at": "2026-07-10T10:12:42.714885", + "url": "/v1/software/rmcprofile" +} diff --git a/site/public/v1/software/rmilter/index.json b/site/public/v1/software/rmilter/index.json new file mode 100644 index 000000000000..b34b5473324d --- /dev/null +++ b/site/public/v1/software/rmilter/index.json @@ -0,0 +1,19 @@ +{ + "id": 8615, + "slug": "rmilter", + "name": "rmilter", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975423" + ], + "created_at": "2026-07-10T10:12:42.714885", + "updated_at": "2026-07-10T10:12:42.714885", + "url": "/v1/software/rmilter" +} diff --git a/site/public/v1/software/roam/index.json b/site/public/v1/software/roam/index.json new file mode 100644 index 000000000000..465c44360af1 --- /dev/null +++ b/site/public/v1/software/roam/index.json @@ -0,0 +1,19 @@ +{ + "id": 8616, + "slug": "roam", + "name": "Roam", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118895954" + ], + "created_at": "2026-07-10T10:12:42.714885", + "updated_at": "2026-07-10T10:12:42.714885", + "url": "/v1/software/roam" +} diff --git a/site/public/v1/software/roambi-flow/index.json b/site/public/v1/software/roambi-flow/index.json new file mode 100644 index 000000000000..27810795bec1 --- /dev/null +++ b/site/public/v1/software/roambi-flow/index.json @@ -0,0 +1,19 @@ +{ + "id": 8617, + "slug": "roambi-flow", + "name": "Roambi Flow", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084524" + ], + "created_at": "2026-07-10T10:12:42.715979", + "updated_at": "2026-07-10T10:12:42.715979", + "url": "/v1/software/roambi-flow" +} diff --git a/site/public/v1/software/robert/index.json b/site/public/v1/software/robert/index.json new file mode 100644 index 000000000000..dd2ccbc06c93 --- /dev/null +++ b/site/public/v1/software/robert/index.json @@ -0,0 +1,23 @@ +{ + "id": 8618, + "slug": "robert", + "name": "Robert", + "release_date": "2009-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Python" + ], + "licenses": [ + "GNU General Public License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7341179" + ], + "created_at": "2026-07-10T10:12:42.715979", + "updated_at": "2026-07-10T10:12:42.715979", + "url": "/v1/software/robert" +} diff --git a/site/public/v1/software/roboboard-fx/index.json b/site/public/v1/software/roboboard-fx/index.json new file mode 100644 index 000000000000..704f93483a86 --- /dev/null +++ b/site/public/v1/software/roboboard-fx/index.json @@ -0,0 +1,19 @@ +{ + "id": 8619, + "slug": "roboboard-fx", + "name": "RoboBOARD/FX", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7353225" + ], + "created_at": "2026-07-10T10:12:42.715979", + "updated_at": "2026-07-10T10:12:42.715979", + "url": "/v1/software/roboboard-fx" +} diff --git a/site/public/v1/software/robodk/index.json b/site/public/v1/software/robodk/index.json new file mode 100644 index 000000000000..b96eee7f2951 --- /dev/null +++ b/site/public/v1/software/robodk/index.json @@ -0,0 +1,19 @@ +{ + "id": 8620, + "slug": "robodk", + "name": "RoboDK", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28957062" + ], + "created_at": "2026-07-10T10:12:42.716993", + "updated_at": "2026-07-10T10:12:42.716993", + "url": "/v1/software/robodk" +} diff --git a/site/public/v1/software/robogeo/index.json b/site/public/v1/software/robogeo/index.json new file mode 100644 index 000000000000..992b613bb116 --- /dev/null +++ b/site/public/v1/software/robogeo/index.json @@ -0,0 +1,19 @@ +{ + "id": 8621, + "slug": "robogeo", + "name": "RoboGEO", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16965549" + ], + "created_at": "2026-07-10T10:12:42.716993", + "updated_at": "2026-07-10T10:12:42.716993", + "url": "/v1/software/robogeo" +} diff --git a/site/public/v1/software/robologix/index.json b/site/public/v1/software/robologix/index.json new file mode 100644 index 000000000000..2ce773943a1e --- /dev/null +++ b/site/public/v1/software/robologix/index.json @@ -0,0 +1,19 @@ +{ + "id": 8622, + "slug": "robologix", + "name": "RoboLogix", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7353241" + ], + "created_at": "2026-07-10T10:12:42.716993", + "updated_at": "2026-07-10T10:12:42.716993", + "url": "/v1/software/robologix" +} diff --git a/site/public/v1/software/robomind/index.json b/site/public/v1/software/robomind/index.json new file mode 100644 index 000000000000..59c98a0c7b1a --- /dev/null +++ b/site/public/v1/software/robomind/index.json @@ -0,0 +1,21 @@ +{ + "id": 8623, + "slug": "robomind", + "name": "RoboMind", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Java" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7353252" + ], + "created_at": "2026-07-10T10:12:42.718003", + "updated_at": "2026-07-10T10:12:42.718003", + "url": "/v1/software/robomind" +} diff --git a/site/public/v1/software/robot-lawyer/index.json b/site/public/v1/software/robot-lawyer/index.json new file mode 100644 index 000000000000..3e0188d6cccd --- /dev/null +++ b/site/public/v1/software/robot-lawyer/index.json @@ -0,0 +1,19 @@ +{ + "id": 8624, + "slug": "robot-lawyer", + "name": "Robot Lawyer", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q24525699" + ], + "created_at": "2026-07-10T10:12:42.718003", + "updated_at": "2026-07-10T10:12:42.718003", + "url": "/v1/software/robot-lawyer" +} diff --git a/site/public/v1/software/robotkube/index.json b/site/public/v1/software/robotkube/index.json new file mode 100644 index 000000000000..b6cb306e404b --- /dev/null +++ b/site/public/v1/software/robotkube/index.json @@ -0,0 +1,21 @@ +{ + "id": 8625, + "slug": "robotkube", + "name": "robotkube", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127485659" + ], + "created_at": "2026-07-10T10:12:42.718003", + "updated_at": "2026-07-10T10:12:42.718003", + "url": "/v1/software/robotkube" +} diff --git a/site/public/v1/software/robotml/index.json b/site/public/v1/software/robotml/index.json new file mode 100644 index 000000000000..1acf6f0f34f4 --- /dev/null +++ b/site/public/v1/software/robotml/index.json @@ -0,0 +1,21 @@ +{ + "id": 8626, + "slug": "robotml", + "name": "RobotML", + "release_date": null, + "developers": [ + "Munich University of Applied Sciences" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4048357" + ], + "created_at": "2026-07-10T10:12:42.718971", + "updated_at": "2026-07-10T10:12:42.718971", + "url": "/v1/software/robotml" +} diff --git a/site/public/v1/software/rocketcake/index.json b/site/public/v1/software/rocketcake/index.json new file mode 100644 index 000000000000..07ff7e6e9058 --- /dev/null +++ b/site/public/v1/software/rocketcake/index.json @@ -0,0 +1,21 @@ +{ + "id": 8627, + "slug": "rocketcake", + "name": "RocketCake", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q29098080" + ], + "created_at": "2026-07-10T10:12:42.718971", + "updated_at": "2026-07-10T10:12:42.718971", + "url": "/v1/software/rocketcake" +} diff --git a/site/public/v1/software/rockmelt/index.json b/site/public/v1/software/rockmelt/index.json new file mode 100644 index 000000000000..1c70534920b0 --- /dev/null +++ b/site/public/v1/software/rockmelt/index.json @@ -0,0 +1,19 @@ +{ + "id": 8628, + "slug": "rockmelt", + "name": "RockMelt", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2002768" + ], + "created_at": "2026-07-10T10:12:42.718971", + "updated_at": "2026-07-10T10:12:42.718971", + "url": "/v1/software/rockmelt" +} diff --git a/site/public/v1/software/rocscience/index.json b/site/public/v1/software/rocscience/index.json new file mode 100644 index 000000000000..08f9befa2428 --- /dev/null +++ b/site/public/v1/software/rocscience/index.json @@ -0,0 +1,25 @@ +{ + "id": 8629, + "slug": "rocscience", + "name": "Rocscience", + "release_date": null, + "developers": [ + "Rocscience Inc." + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q29019484" + ], + "created_at": "2026-07-10T10:12:42.719889", + "updated_at": "2026-07-10T10:12:42.719889", + "url": "/v1/software/rocscience" +} diff --git a/site/public/v1/software/rodin-tool/index.json b/site/public/v1/software/rodin-tool/index.json new file mode 100644 index 000000000000..65c107521014 --- /dev/null +++ b/site/public/v1/software/rodin-tool/index.json @@ -0,0 +1,19 @@ +{ + "id": 8630, + "slug": "rodin-tool", + "name": "Rodin tool", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7356780" + ], + "created_at": "2026-07-10T10:12:42.719889", + "updated_at": "2026-07-10T10:12:42.719889", + "url": "/v1/software/rodin-tool" +} diff --git a/site/public/v1/software/roger-wilco/index.json b/site/public/v1/software/roger-wilco/index.json new file mode 100644 index 000000000000..29246ff5140a --- /dev/null +++ b/site/public/v1/software/roger-wilco/index.json @@ -0,0 +1,21 @@ +{ + "id": 8631, + "slug": "roger-wilco", + "name": "Roger Wilco", + "release_date": null, + "developers": [ + "GameSpy" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2161947" + ], + "created_at": "2026-07-10T10:12:42.719889", + "updated_at": "2026-07-10T10:12:42.719889", + "url": "/v1/software/roger-wilco" +} diff --git a/site/public/v1/software/rohr2/index.json b/site/public/v1/software/rohr2/index.json new file mode 100644 index 000000000000..d7c0055e7071 --- /dev/null +++ b/site/public/v1/software/rohr2/index.json @@ -0,0 +1,19 @@ +{ + "id": 8632, + "slug": "rohr2", + "name": "ROHR2", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7277374" + ], + "created_at": "2026-07-10T10:12:42.719889", + "updated_at": "2026-07-10T10:12:42.719889", + "url": "/v1/software/rohr2" +} diff --git a/site/public/v1/software/romcc/index.json b/site/public/v1/software/romcc/index.json new file mode 100644 index 000000000000..cd86d1db06ae --- /dev/null +++ b/site/public/v1/software/romcc/index.json @@ -0,0 +1,19 @@ +{ + "id": 8633, + "slug": "romcc", + "name": "Romcc", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7362942" + ], + "created_at": "2026-07-10T10:12:42.720888", + "updated_at": "2026-07-10T10:12:42.720888", + "url": "/v1/software/romcc" +} diff --git a/site/public/v1/software/romeo-model-checker/index.json b/site/public/v1/software/romeo-model-checker/index.json new file mode 100644 index 000000000000..d47d64685dbb --- /dev/null +++ b/site/public/v1/software/romeo-model-checker/index.json @@ -0,0 +1,26 @@ +{ + "id": 8634, + "slug": "romeo-model-checker", + "name": "Romeo Model Checker", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [ + "Tcl" + ], + "licenses": [ + "CeCILL" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3441191" + ], + "created_at": "2026-07-10T10:12:42.720888", + "updated_at": "2026-07-10T10:12:42.720888", + "url": "/v1/software/romeo-model-checker" +} diff --git a/site/public/v1/software/romeo/index.json b/site/public/v1/software/romeo/index.json new file mode 100644 index 000000000000..d2cfd754ec7b --- /dev/null +++ b/site/public/v1/software/romeo/index.json @@ -0,0 +1,21 @@ +{ + "id": 8635, + "slug": "romeo", + "name": "ROMeo", + "release_date": null, + "developers": [ + "Schneider Electric" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7277401" + ], + "created_at": "2026-07-10T10:12:42.720888", + "updated_at": "2026-07-10T10:12:42.720888", + "url": "/v1/software/romeo" +} diff --git a/site/public/v1/software/romulus/index.json b/site/public/v1/software/romulus/index.json new file mode 100644 index 000000000000..38f4711fe86a --- /dev/null +++ b/site/public/v1/software/romulus/index.json @@ -0,0 +1,19 @@ +{ + "id": 8636, + "slug": "romulus", + "name": "Romulus", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3940936" + ], + "created_at": "2026-07-10T10:12:42.721896", + "updated_at": "2026-07-10T10:12:42.721896", + "url": "/v1/software/romulus" +} diff --git a/site/public/v1/software/roon-bridge/index.json b/site/public/v1/software/roon-bridge/index.json new file mode 100644 index 000000000000..f0ad36dec510 --- /dev/null +++ b/site/public/v1/software/roon-bridge/index.json @@ -0,0 +1,22 @@ +{ + "id": 8637, + "slug": "roon-bridge", + "name": "Roon Bridge", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q80444914" + ], + "created_at": "2026-07-10T10:12:42.721896", + "updated_at": "2026-07-10T10:12:42.721896", + "url": "/v1/software/roon-bridge" +} diff --git a/site/public/v1/software/roon-optimized-core-kit/index.json b/site/public/v1/software/roon-optimized-core-kit/index.json new file mode 100644 index 000000000000..803934fa9549 --- /dev/null +++ b/site/public/v1/software/roon-optimized-core-kit/index.json @@ -0,0 +1,23 @@ +{ + "id": 8638, + "slug": "roon-optimized-core-kit", + "name": "Roon Optimized Core Kit", + "release_date": null, + "developers": [ + "Roon Labs LLC" + ], + "publishers": [], + "operating_systems": [ + "Next Unit of Computing" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q80444962" + ], + "created_at": "2026-07-10T10:12:42.721896", + "updated_at": "2026-07-10T10:12:42.721896", + "url": "/v1/software/roon-optimized-core-kit" +} diff --git a/site/public/v1/software/roon-server/index.json b/site/public/v1/software/roon-server/index.json new file mode 100644 index 000000000000..ccfb7055a8d5 --- /dev/null +++ b/site/public/v1/software/roon-server/index.json @@ -0,0 +1,26 @@ +{ + "id": 8639, + "slug": "roon-server", + "name": "Roon Server", + "release_date": null, + "developers": [ + "Roon Labs LLC" + ], + "publishers": [], + "operating_systems": [ + "Synology Inc.", + "QNAP Systems", + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q80444749" + ], + "created_at": "2026-07-10T10:12:42.721896", + "updated_at": "2026-07-10T10:12:42.721896", + "url": "/v1/software/roon-server" +} diff --git a/site/public/v1/software/root-docs/index.json b/site/public/v1/software/root-docs/index.json new file mode 100644 index 000000000000..2c3a2eb6a262 --- /dev/null +++ b/site/public/v1/software/root-docs/index.json @@ -0,0 +1,19 @@ +{ + "id": 8640, + "slug": "root-docs", + "name": "root-docs", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975424" + ], + "created_at": "2026-07-10T10:12:42.722973", + "updated_at": "2026-07-10T10:12:42.722973", + "url": "/v1/software/root-docs" +} diff --git a/site/public/v1/software/root-tail/index.json b/site/public/v1/software/root-tail/index.json new file mode 100644 index 000000000000..71189d39c2f4 --- /dev/null +++ b/site/public/v1/software/root-tail/index.json @@ -0,0 +1,19 @@ +{ + "id": 8641, + "slug": "root-tail", + "name": "root-tail", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62862005" + ], + "created_at": "2026-07-10T10:12:42.722973", + "updated_at": "2026-07-10T10:12:42.722973", + "url": "/v1/software/root-tail" +} diff --git a/site/public/v1/software/ropey/index.json b/site/public/v1/software/ropey/index.json new file mode 100644 index 000000000000..c8f2ec657df9 --- /dev/null +++ b/site/public/v1/software/ropey/index.json @@ -0,0 +1,21 @@ +{ + "id": 8642, + "slug": "ropey", + "name": "Ropey", + "release_date": "2019-01-03", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60868603" + ], + "created_at": "2026-07-10T10:12:42.722973", + "updated_at": "2026-07-10T10:12:42.723969", + "url": "/v1/software/ropey" +} diff --git a/site/public/v1/software/rosalind/index.json b/site/public/v1/software/rosalind/index.json new file mode 100644 index 000000000000..fa3305a17dae --- /dev/null +++ b/site/public/v1/software/rosalind/index.json @@ -0,0 +1,19 @@ +{ + "id": 8643, + "slug": "rosalind", + "name": "Rosalind", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2912168" + ], + "created_at": "2026-07-10T10:12:42.723969", + "updated_at": "2026-07-10T10:12:42.723969", + "url": "/v1/software/rosalind" +} diff --git a/site/public/v1/software/rosdep/index.json b/site/public/v1/software/rosdep/index.json new file mode 100644 index 000000000000..29143efa7279 --- /dev/null +++ b/site/public/v1/software/rosdep/index.json @@ -0,0 +1,21 @@ +{ + "id": 8644, + "slug": "rosdep", + "name": "rosdep", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "3-clause BSD License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975425" + ], + "created_at": "2026-07-10T10:12:42.723969", + "updated_at": "2026-07-10T10:12:42.723969", + "url": "/v1/software/rosdep" +} diff --git a/site/public/v1/software/rosdistro/index.json b/site/public/v1/software/rosdistro/index.json new file mode 100644 index 000000000000..b8632acfe44b --- /dev/null +++ b/site/public/v1/software/rosdistro/index.json @@ -0,0 +1,19 @@ +{ + "id": 8645, + "slug": "rosdistro", + "name": "rosdistro", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975426" + ], + "created_at": "2026-07-10T10:12:42.723969", + "updated_at": "2026-07-10T10:12:42.723969", + "url": "/v1/software/rosdistro" +} diff --git a/site/public/v1/software/rose/index.json b/site/public/v1/software/rose/index.json new file mode 100644 index 000000000000..7d9d5ba8838f --- /dev/null +++ b/site/public/v1/software/rose/index.json @@ -0,0 +1,19 @@ +{ + "id": 8646, + "slug": "rose", + "name": "RoSE", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084525" + ], + "created_at": "2026-07-10T10:12:42.724954", + "updated_at": "2026-07-10T10:12:42.724954", + "url": "/v1/software/rose" +} diff --git a/site/public/v1/software/rosetta-2/index.json b/site/public/v1/software/rosetta-2/index.json new file mode 100644 index 000000000000..f88fac387621 --- /dev/null +++ b/site/public/v1/software/rosetta-2/index.json @@ -0,0 +1,21 @@ +{ + "id": 8647, + "slug": "rosetta-2", + "name": "Rosetta 2", + "release_date": "2020-11-10", + "developers": [ + "Apple Inc." + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105480642" + ], + "created_at": "2026-07-10T10:12:42.724954", + "updated_at": "2026-07-10T10:12:42.724954", + "url": "/v1/software/rosetta-2" +} diff --git a/site/public/v1/software/rosetta-q37609971/index.json b/site/public/v1/software/rosetta-q37609971/index.json new file mode 100644 index 000000000000..edfdb28153ea --- /dev/null +++ b/site/public/v1/software/rosetta-q37609971/index.json @@ -0,0 +1,21 @@ +{ + "id": 8648, + "slug": "rosetta-q37609971", + "name": "Rosetta", + "release_date": null, + "developers": [ + "Ex Libris Group" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q37609971" + ], + "created_at": "2026-07-10T10:12:42.724954", + "updated_at": "2026-07-10T10:12:42.724954", + "url": "/v1/software/rosetta-q37609971" +} diff --git a/site/public/v1/software/rosetta/index.json b/site/public/v1/software/rosetta/index.json new file mode 100644 index 000000000000..d2e962dc6825 --- /dev/null +++ b/site/public/v1/software/rosetta/index.json @@ -0,0 +1,21 @@ +{ + "id": 8649, + "slug": "rosetta", + "name": "Rosetta", + "release_date": "2006-01-10", + "developers": [ + "Apple Inc." + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1196945" + ], + "created_at": "2026-07-10T10:12:42.725990", + "updated_at": "2026-07-10T10:12:42.725990", + "url": "/v1/software/rosetta" +} diff --git a/site/public/v1/software/rosinstall-generator/index.json b/site/public/v1/software/rosinstall-generator/index.json new file mode 100644 index 000000000000..676b5a361076 --- /dev/null +++ b/site/public/v1/software/rosinstall-generator/index.json @@ -0,0 +1,19 @@ +{ + "id": 8650, + "slug": "rosinstall-generator", + "name": "rosinstall_generator", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975428" + ], + "created_at": "2026-07-10T10:12:42.725990", + "updated_at": "2026-07-10T10:12:42.725990", + "url": "/v1/software/rosinstall-generator" +} diff --git a/site/public/v1/software/rosinstall/index.json b/site/public/v1/software/rosinstall/index.json new file mode 100644 index 000000000000..9fee44e706c7 --- /dev/null +++ b/site/public/v1/software/rosinstall/index.json @@ -0,0 +1,19 @@ +{ + "id": 8651, + "slug": "rosinstall", + "name": "rosinstall", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975427" + ], + "created_at": "2026-07-10T10:12:42.725990", + "updated_at": "2026-07-10T10:12:42.725990", + "url": "/v1/software/rosinstall" +} diff --git a/site/public/v1/software/rospkg/index.json b/site/public/v1/software/rospkg/index.json new file mode 100644 index 000000000000..d05b6381cd7d --- /dev/null +++ b/site/public/v1/software/rospkg/index.json @@ -0,0 +1,19 @@ +{ + "id": 8652, + "slug": "rospkg", + "name": "rospkg", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975429" + ], + "created_at": "2026-07-10T10:12:42.727001", + "updated_at": "2026-07-10T10:12:42.727001", + "url": "/v1/software/rospkg" +} diff --git a/site/public/v1/software/rossio-portal/index.json b/site/public/v1/software/rossio-portal/index.json new file mode 100644 index 000000000000..ff047ae49b21 --- /dev/null +++ b/site/public/v1/software/rossio-portal/index.json @@ -0,0 +1,19 @@ +{ + "id": 8653, + "slug": "rossio-portal", + "name": "ROSSIO Portal", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084526" + ], + "created_at": "2026-07-10T10:12:42.727001", + "updated_at": "2026-07-10T10:12:42.727001", + "url": "/v1/software/rossio-portal" +} diff --git a/site/public/v1/software/rotl/index.json b/site/public/v1/software/rotl/index.json new file mode 100644 index 000000000000..3dbb94e8e7c5 --- /dev/null +++ b/site/public/v1/software/rotl/index.json @@ -0,0 +1,19 @@ +{ + "id": 8654, + "slug": "rotl", + "name": "rotl", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112338595" + ], + "created_at": "2026-07-10T10:12:42.727001", + "updated_at": "2026-07-10T10:12:42.727001", + "url": "/v1/software/rotl" +} diff --git a/site/public/v1/software/rotoshop/index.json b/site/public/v1/software/rotoshop/index.json new file mode 100644 index 000000000000..7cdfa866c23c --- /dev/null +++ b/site/public/v1/software/rotoshop/index.json @@ -0,0 +1,19 @@ +{ + "id": 8655, + "slug": "rotoshop", + "name": "Rotoshop", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7370613" + ], + "created_at": "2026-07-10T10:12:42.727993", + "updated_at": "2026-07-10T10:12:42.727993", + "url": "/v1/software/rotoshop" +} diff --git a/site/public/v1/software/rottlog/index.json b/site/public/v1/software/rottlog/index.json new file mode 100644 index 000000000000..b10e14a7ec5a --- /dev/null +++ b/site/public/v1/software/rottlog/index.json @@ -0,0 +1,19 @@ +{ + "id": 8656, + "slug": "rottlog", + "name": "Rottlog", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76186282" + ], + "created_at": "2026-07-10T10:12:42.727993", + "updated_at": "2026-07-10T10:12:42.727993", + "url": "/v1/software/rottlog" +} diff --git a/site/public/v1/software/roundme/index.json b/site/public/v1/software/roundme/index.json new file mode 100644 index 000000000000..3b36c8ccf948 --- /dev/null +++ b/site/public/v1/software/roundme/index.json @@ -0,0 +1,21 @@ +{ + "id": 8657, + "slug": "roundme", + "name": "RoundMe", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28859381" + ], + "created_at": "2026-07-10T10:12:42.727993", + "updated_at": "2026-07-10T10:12:42.727993", + "url": "/v1/software/roundme" +} diff --git a/site/public/v1/software/routeconverter/index.json b/site/public/v1/software/routeconverter/index.json new file mode 100644 index 000000000000..153582a623f9 --- /dev/null +++ b/site/public/v1/software/routeconverter/index.json @@ -0,0 +1,19 @@ +{ + "id": 8658, + "slug": "routeconverter", + "name": "RouteConverter", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138463932" + ], + "created_at": "2026-07-10T10:12:42.728993", + "updated_at": "2026-07-10T10:12:42.728993", + "url": "/v1/software/routeconverter" +} diff --git a/site/public/v1/software/routerkeygen/index.json b/site/public/v1/software/routerkeygen/index.json new file mode 100644 index 000000000000..51acbf0a8a37 --- /dev/null +++ b/site/public/v1/software/routerkeygen/index.json @@ -0,0 +1,26 @@ +{ + "id": 8659, + "slug": "routerkeygen", + "name": "RouterKeygen", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [ + "Objective-C" + ], + "licenses": [ + "GNU General Public License, version 3.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q97277111" + ], + "created_at": "2026-07-10T10:12:42.728993", + "updated_at": "2026-07-10T10:12:42.728993", + "url": "/v1/software/routerkeygen" +} diff --git a/site/public/v1/software/rozetka-ai/index.json b/site/public/v1/software/rozetka-ai/index.json new file mode 100644 index 000000000000..05f3acc909af --- /dev/null +++ b/site/public/v1/software/rozetka-ai/index.json @@ -0,0 +1,21 @@ +{ + "id": 8660, + "slug": "rozetka-ai", + "name": "Rozetka AI", + "release_date": null, + "developers": [ + "Rozetka" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138795213" + ], + "created_at": "2026-07-10T10:12:42.728993", + "updated_at": "2026-07-10T10:12:42.728993", + "url": "/v1/software/rozetka-ai" +} diff --git a/site/public/v1/software/rp-pppoe/index.json b/site/public/v1/software/rp-pppoe/index.json new file mode 100644 index 000000000000..4af872cd54c4 --- /dev/null +++ b/site/public/v1/software/rp-pppoe/index.json @@ -0,0 +1,19 @@ +{ + "id": 8661, + "slug": "rp-pppoe", + "name": "RP-PPPoE", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4048572" + ], + "created_at": "2026-07-10T10:12:42.729953", + "updated_at": "2026-07-10T10:12:42.729953", + "url": "/v1/software/rp-pppoe" +} diff --git a/site/public/v1/software/rpcbind/index.json b/site/public/v1/software/rpcbind/index.json new file mode 100644 index 000000000000..0574c574e09e --- /dev/null +++ b/site/public/v1/software/rpcbind/index.json @@ -0,0 +1,19 @@ +{ + "id": 8662, + "slug": "rpcbind", + "name": "rpcbind", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975430" + ], + "created_at": "2026-07-10T10:12:42.729953", + "updated_at": "2026-07-10T10:12:42.729953", + "url": "/v1/software/rpcbind" +} diff --git a/site/public/v1/software/rpcgen/index.json b/site/public/v1/software/rpcgen/index.json new file mode 100644 index 000000000000..624f3ad7a3d6 --- /dev/null +++ b/site/public/v1/software/rpcgen/index.json @@ -0,0 +1,19 @@ +{ + "id": 8663, + "slug": "rpcgen", + "name": "RPCGEN", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4048576" + ], + "created_at": "2026-07-10T10:12:42.729953", + "updated_at": "2026-07-10T10:12:42.729953", + "url": "/v1/software/rpcgen" +} diff --git a/site/public/v1/software/rpl/index.json b/site/public/v1/software/rpl/index.json new file mode 100644 index 000000000000..b9e30242459e --- /dev/null +++ b/site/public/v1/software/rpl/index.json @@ -0,0 +1,19 @@ +{ + "id": 8664, + "slug": "rpl", + "name": "rpl", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62861873" + ], + "created_at": "2026-07-10T10:12:42.729953", + "updated_at": "2026-07-10T10:12:42.729953", + "url": "/v1/software/rpl" +} diff --git a/site/public/v1/software/rqlite/index.json b/site/public/v1/software/rqlite/index.json new file mode 100644 index 000000000000..6ea9a4d0728a --- /dev/null +++ b/site/public/v1/software/rqlite/index.json @@ -0,0 +1,21 @@ +{ + "id": 8665, + "slug": "rqlite", + "name": "rqlite", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975431" + ], + "created_at": "2026-07-10T10:12:42.730980", + "updated_at": "2026-07-10T10:12:42.730980", + "url": "/v1/software/rqlite" +} diff --git a/site/public/v1/software/rr/index.json b/site/public/v1/software/rr/index.json new file mode 100644 index 000000000000..50529834dad4 --- /dev/null +++ b/site/public/v1/software/rr/index.json @@ -0,0 +1,19 @@ +{ + "id": 8666, + "slug": "rr", + "name": "rr", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62861650" + ], + "created_at": "2026-07-10T10:12:42.730980", + "updated_at": "2026-07-10T10:12:42.730980", + "url": "/v1/software/rr" +} diff --git a/site/public/v1/software/rrdcollect/index.json b/site/public/v1/software/rrdcollect/index.json new file mode 100644 index 000000000000..cbd272bd0b47 --- /dev/null +++ b/site/public/v1/software/rrdcollect/index.json @@ -0,0 +1,19 @@ +{ + "id": 8667, + "slug": "rrdcollect", + "name": "RRDcollect", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62861501" + ], + "created_at": "2026-07-10T10:12:42.731995", + "updated_at": "2026-07-10T10:12:42.731995", + "url": "/v1/software/rrdcollect" +} diff --git a/site/public/v1/software/rritbed/index.json b/site/public/v1/software/rritbed/index.json new file mode 100644 index 000000000000..844932973172 --- /dev/null +++ b/site/public/v1/software/rritbed/index.json @@ -0,0 +1,19 @@ +{ + "id": 8668, + "slug": "rritbed", + "name": "rritbed", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127485648" + ], + "created_at": "2026-07-10T10:12:42.731995", + "updated_at": "2026-07-10T10:12:42.731995", + "url": "/v1/software/rritbed" +} diff --git a/site/public/v1/software/rsa-archer/index.json b/site/public/v1/software/rsa-archer/index.json new file mode 100644 index 000000000000..9bd1736458d5 --- /dev/null +++ b/site/public/v1/software/rsa-archer/index.json @@ -0,0 +1,19 @@ +{ + "id": 8669, + "slug": "rsa-archer", + "name": "RSA Archer", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q12048436" + ], + "created_at": "2026-07-10T10:12:42.731995", + "updated_at": "2026-07-10T10:12:42.731995", + "url": "/v1/software/rsa-archer" +} diff --git a/site/public/v1/software/rsiena/index.json b/site/public/v1/software/rsiena/index.json new file mode 100644 index 000000000000..dab8c2a273b9 --- /dev/null +++ b/site/public/v1/software/rsiena/index.json @@ -0,0 +1,19 @@ +{ + "id": 8670, + "slug": "rsiena", + "name": "RSiena", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087708" + ], + "created_at": "2026-07-10T10:12:42.731995", + "updated_at": "2026-07-10T10:12:42.731995", + "url": "/v1/software/rsiena" +} diff --git a/site/public/v1/software/rsocket/index.json b/site/public/v1/software/rsocket/index.json new file mode 100644 index 000000000000..85a00b1f3664 --- /dev/null +++ b/site/public/v1/software/rsocket/index.json @@ -0,0 +1,19 @@ +{ + "id": 8671, + "slug": "rsocket", + "name": "Rsocket", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q55632069" + ], + "created_at": "2026-07-10T10:12:42.732972", + "updated_at": "2026-07-10T10:12:42.732972", + "url": "/v1/software/rsocket" +} diff --git a/site/public/v1/software/rss-tracking/index.json b/site/public/v1/software/rss-tracking/index.json new file mode 100644 index 000000000000..1171731dda5e --- /dev/null +++ b/site/public/v1/software/rss-tracking/index.json @@ -0,0 +1,19 @@ +{ + "id": 8672, + "slug": "rss-tracking", + "name": "RSS tracking", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7277767" + ], + "created_at": "2026-07-10T10:12:42.732972", + "updated_at": "2026-07-10T10:12:42.732972", + "url": "/v1/software/rss-tracking" +} diff --git a/site/public/v1/software/rsstail/index.json b/site/public/v1/software/rsstail/index.json new file mode 100644 index 000000000000..cf77e16bc97d --- /dev/null +++ b/site/public/v1/software/rsstail/index.json @@ -0,0 +1,19 @@ +{ + "id": 8673, + "slug": "rsstail", + "name": "rsstail", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62861411" + ], + "created_at": "2026-07-10T10:12:42.734010", + "updated_at": "2026-07-10T10:12:42.734010", + "url": "/v1/software/rsstail" +} diff --git a/site/public/v1/software/rt-connect/index.json b/site/public/v1/software/rt-connect/index.json new file mode 100644 index 000000000000..5492e69fb50e --- /dev/null +++ b/site/public/v1/software/rt-connect/index.json @@ -0,0 +1,19 @@ +{ + "id": 8674, + "slug": "rt-connect", + "name": "RT Connect", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112773006" + ], + "created_at": "2026-07-10T10:12:42.734010", + "updated_at": "2026-07-10T10:12:42.734010", + "url": "/v1/software/rt-connect" +} diff --git a/site/public/v1/software/rt-player/index.json b/site/public/v1/software/rt-player/index.json new file mode 100644 index 000000000000..abf1c093bb94 --- /dev/null +++ b/site/public/v1/software/rt-player/index.json @@ -0,0 +1,24 @@ +{ + "id": 8675, + "slug": "rt-player", + "name": "RTÉ player", + "release_date": "2009-04-21", + "developers": [ + "Raidió Teilifís Éireann" + ], + "publishers": [], + "operating_systems": [ + "PlayStation 4", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7277955" + ], + "created_at": "2026-07-10T10:12:42.734010", + "updated_at": "2026-07-10T10:12:42.734010", + "url": "/v1/software/rt-player" +} diff --git a/site/public/v1/software/rtai/index.json b/site/public/v1/software/rtai/index.json new file mode 100644 index 000000000000..57043defe55e --- /dev/null +++ b/site/public/v1/software/rtai/index.json @@ -0,0 +1,21 @@ +{ + "id": 8676, + "slug": "rtai", + "name": "RTAI", + "release_date": null, + "developers": [ + "Paolo Mantegazza" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q730693" + ], + "created_at": "2026-07-10T10:12:42.734010", + "updated_at": "2026-07-10T10:12:42.734010", + "url": "/v1/software/rtai" +} diff --git a/site/public/v1/software/rtaudio/index.json b/site/public/v1/software/rtaudio/index.json new file mode 100644 index 000000000000..212ca42a0969 --- /dev/null +++ b/site/public/v1/software/rtaudio/index.json @@ -0,0 +1,21 @@ +{ + "id": 8677, + "slug": "rtaudio", + "name": "rtaudio", + "release_date": null, + "developers": [ + "Gary Scavone" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122446093" + ], + "created_at": "2026-07-10T10:12:42.734982", + "updated_at": "2026-07-10T10:12:42.734982", + "url": "/v1/software/rtaudio" +} diff --git a/site/public/v1/software/rtds-8/index.json b/site/public/v1/software/rtds-8/index.json new file mode 100644 index 000000000000..8dc97164384c --- /dev/null +++ b/site/public/v1/software/rtds-8/index.json @@ -0,0 +1,21 @@ +{ + "id": 8678, + "slug": "rtds-8", + "name": "RTDS-8", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "CP/M" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11833112" + ], + "created_at": "2026-07-10T10:12:42.734982", + "updated_at": "2026-07-10T10:12:42.734982", + "url": "/v1/software/rtds-8" +} diff --git a/site/public/v1/software/rtelnet/index.json b/site/public/v1/software/rtelnet/index.json new file mode 100644 index 000000000000..d164dfcbc357 --- /dev/null +++ b/site/public/v1/software/rtelnet/index.json @@ -0,0 +1,19 @@ +{ + "id": 8679, + "slug": "rtelnet", + "name": "RTelnet", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28818563" + ], + "created_at": "2026-07-10T10:12:42.735973", + "updated_at": "2026-07-10T10:12:42.735973", + "url": "/v1/software/rtelnet" +} diff --git a/site/public/v1/software/rtl-sdr/index.json b/site/public/v1/software/rtl-sdr/index.json new file mode 100644 index 000000000000..2deba1b28074 --- /dev/null +++ b/site/public/v1/software/rtl-sdr/index.json @@ -0,0 +1,21 @@ +{ + "id": 8680, + "slug": "rtl-sdr", + "name": "rtl-sdr", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975433" + ], + "created_at": "2026-07-10T10:12:42.735973", + "updated_at": "2026-07-10T10:12:42.735973", + "url": "/v1/software/rtl-sdr" +} diff --git a/site/public/v1/software/rtl-xl/index.json b/site/public/v1/software/rtl-xl/index.json new file mode 100644 index 000000000000..81b1c252b617 --- /dev/null +++ b/site/public/v1/software/rtl-xl/index.json @@ -0,0 +1,21 @@ +{ + "id": 8681, + "slug": "rtl-xl", + "name": "RTL XL", + "release_date": null, + "developers": [ + "RTL Nederland" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18089153" + ], + "created_at": "2026-07-10T10:12:42.735973", + "updated_at": "2026-07-10T10:12:42.735973", + "url": "/v1/software/rtl-xl" +} diff --git a/site/public/v1/software/rtlinux/index.json b/site/public/v1/software/rtlinux/index.json new file mode 100644 index 000000000000..7273e001fece --- /dev/null +++ b/site/public/v1/software/rtlinux/index.json @@ -0,0 +1,19 @@ +{ + "id": 8682, + "slug": "rtlinux", + "name": "RTLinux", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1928473" + ], + "created_at": "2026-07-10T10:12:42.736950", + "updated_at": "2026-07-10T10:12:42.736950", + "url": "/v1/software/rtlinux" +} diff --git a/site/public/v1/software/rtmidi/index.json b/site/public/v1/software/rtmidi/index.json new file mode 100644 index 000000000000..9d2f0444740b --- /dev/null +++ b/site/public/v1/software/rtmidi/index.json @@ -0,0 +1,19 @@ +{ + "id": 8683, + "slug": "rtmidi", + "name": "Rtmidi", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q66828044" + ], + "created_at": "2026-07-10T10:12:42.736950", + "updated_at": "2026-07-10T10:12:42.736950", + "url": "/v1/software/rtmidi" +} diff --git a/site/public/v1/software/rtnf/index.json b/site/public/v1/software/rtnf/index.json new file mode 100644 index 000000000000..d409058c6baa --- /dev/null +++ b/site/public/v1/software/rtnf/index.json @@ -0,0 +1,21 @@ +{ + "id": 8684, + "slug": "rtnf", + "name": "rtnf", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Go" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108004230" + ], + "created_at": "2026-07-10T10:12:42.736950", + "updated_at": "2026-07-10T10:12:42.736950", + "url": "/v1/software/rtnf" +} diff --git a/site/public/v1/software/rtsadmin/index.json b/site/public/v1/software/rtsadmin/index.json new file mode 100644 index 000000000000..f8fcde77846a --- /dev/null +++ b/site/public/v1/software/rtsadmin/index.json @@ -0,0 +1,19 @@ +{ + "id": 8685, + "slug": "rtsadmin", + "name": "rtsadmin", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975434" + ], + "created_at": "2026-07-10T10:12:42.738006", + "updated_at": "2026-07-10T10:12:42.738006", + "url": "/v1/software/rtsadmin" +} diff --git a/site/public/v1/software/rtslib/index.json b/site/public/v1/software/rtslib/index.json new file mode 100644 index 000000000000..fb2efb407e57 --- /dev/null +++ b/site/public/v1/software/rtslib/index.json @@ -0,0 +1,21 @@ +{ + "id": 8686, + "slug": "rtslib", + "name": "rtslib", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Apache Software License 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975435" + ], + "created_at": "2026-07-10T10:12:42.740487", + "updated_at": "2026-07-10T10:12:42.741336", + "url": "/v1/software/rtslib" +} diff --git a/site/public/v1/software/rtx-remix/index.json b/site/public/v1/software/rtx-remix/index.json new file mode 100644 index 000000000000..36004c79f46e --- /dev/null +++ b/site/public/v1/software/rtx-remix/index.json @@ -0,0 +1,21 @@ +{ + "id": 8687, + "slug": "rtx-remix", + "name": "RTX Remix", + "release_date": null, + "developers": [ + "Nvidia" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116002568" + ], + "created_at": "2026-07-10T10:12:42.744343", + "updated_at": "2026-07-10T10:12:42.744343", + "url": "/v1/software/rtx-remix" +} diff --git a/site/public/v1/software/ru-adlist/index.json b/site/public/v1/software/ru-adlist/index.json new file mode 100644 index 000000000000..c7a1468cb748 --- /dev/null +++ b/site/public/v1/software/ru-adlist/index.json @@ -0,0 +1,19 @@ +{ + "id": 8688, + "slug": "ru-adlist", + "name": "RU AdList", + "release_date": "2023-11-07", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127708651" + ], + "created_at": "2026-07-10T10:12:42.748424", + "updated_at": "2026-07-10T10:12:42.748424", + "url": "/v1/software/ru-adlist" +} diff --git a/site/public/v1/software/rubika/index.json b/site/public/v1/software/rubika/index.json new file mode 100644 index 000000000000..f9f3197b7db8 --- /dev/null +++ b/site/public/v1/software/rubika/index.json @@ -0,0 +1,23 @@ +{ + "id": 8689, + "slug": "rubika", + "name": "Rubika", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "iOS", + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109548753" + ], + "created_at": "2026-07-10T10:12:42.751421", + "updated_at": "2026-07-10T10:12:42.751421", + "url": "/v1/software/rubika" +} diff --git a/site/public/v1/software/rublon/index.json b/site/public/v1/software/rublon/index.json new file mode 100644 index 000000000000..4af6175cf0ac --- /dev/null +++ b/site/public/v1/software/rublon/index.json @@ -0,0 +1,19 @@ +{ + "id": 8690, + "slug": "rublon", + "name": "Rublon", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q15623199" + ], + "created_at": "2026-07-10T10:12:42.754338", + "updated_at": "2026-07-10T10:12:42.754338", + "url": "/v1/software/rublon" +} diff --git a/site/public/v1/software/ruby-geocoder/index.json b/site/public/v1/software/ruby-geocoder/index.json new file mode 100644 index 000000000000..d40826e9375a --- /dev/null +++ b/site/public/v1/software/ruby-geocoder/index.json @@ -0,0 +1,19 @@ +{ + "id": 8691, + "slug": "ruby-geocoder", + "name": "Ruby Geocoder", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25212821" + ], + "created_at": "2026-07-10T10:12:42.756497", + "updated_at": "2026-07-10T10:12:42.756497", + "url": "/v1/software/ruby-geocoder" +} diff --git a/site/public/v1/software/ruby-plsql-spec/index.json b/site/public/v1/software/ruby-plsql-spec/index.json new file mode 100644 index 000000000000..1986d2698d66 --- /dev/null +++ b/site/public/v1/software/ruby-plsql-spec/index.json @@ -0,0 +1,21 @@ +{ + "id": 8692, + "slug": "ruby-plsql-spec", + "name": "Ruby-plsql-spec", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25345945" + ], + "created_at": "2026-07-10T10:12:42.757494", + "updated_at": "2026-07-10T10:12:42.758509", + "url": "/v1/software/ruby-plsql-spec" +} diff --git a/site/public/v1/software/ruby-tokyocabinet/index.json b/site/public/v1/software/ruby-tokyocabinet/index.json new file mode 100644 index 000000000000..22df43b3689d --- /dev/null +++ b/site/public/v1/software/ruby-tokyocabinet/index.json @@ -0,0 +1,19 @@ +{ + "id": 8693, + "slug": "ruby-tokyocabinet", + "name": "ruby-tokyocabinet", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106102019" + ], + "created_at": "2026-07-10T10:12:42.758509", + "updated_at": "2026-07-10T10:12:42.758509", + "url": "/v1/software/ruby-tokyocabinet" +} diff --git a/site/public/v1/software/rubyjs/index.json b/site/public/v1/software/rubyjs/index.json new file mode 100644 index 000000000000..aeac7c3844fb --- /dev/null +++ b/site/public/v1/software/rubyjs/index.json @@ -0,0 +1,21 @@ +{ + "id": 8694, + "slug": "rubyjs", + "name": "RubyJS", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "cross-platform" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7376248" + ], + "created_at": "2026-07-10T10:12:42.758509", + "updated_at": "2026-07-10T10:12:42.758509", + "url": "/v1/software/rubyjs" +} diff --git a/site/public/v1/software/rubymine/index.json b/site/public/v1/software/rubymine/index.json new file mode 100644 index 000000000000..7e71cc5dc523 --- /dev/null +++ b/site/public/v1/software/rubymine/index.json @@ -0,0 +1,28 @@ +{ + "id": 8695, + "slug": "rubymine", + "name": "RubyMine", + "release_date": null, + "developers": [ + "JetBrains" + ], + "publishers": [], + "operating_systems": [ + "cross-platform" + ], + "programming_languages": [ + "Java", + "Kotlin" + ], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4048590" + ], + "created_at": "2026-07-10T10:12:42.758509", + "updated_at": "2026-07-10T10:12:42.758509", + "url": "/v1/software/rubymine" +} diff --git a/site/public/v1/software/ruley-the-e-referee/index.json b/site/public/v1/software/ruley-the-e-referee/index.json new file mode 100644 index 000000000000..22e32350c4cc --- /dev/null +++ b/site/public/v1/software/ruley-the-e-referee/index.json @@ -0,0 +1,21 @@ +{ + "id": 8696, + "slug": "ruley-the-e-referee", + "name": "Ruley the E-Referee", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "iOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140160700" + ], + "created_at": "2026-07-10T10:12:42.759491", + "updated_at": "2026-07-10T10:12:42.759491", + "url": "/v1/software/ruley-the-e-referee" +} diff --git a/site/public/v1/software/run-time-infrastructure/index.json b/site/public/v1/software/run-time-infrastructure/index.json new file mode 100644 index 000000000000..c5f69f9a27f7 --- /dev/null +++ b/site/public/v1/software/run-time-infrastructure/index.json @@ -0,0 +1,19 @@ +{ + "id": 8697, + "slug": "run-time-infrastructure", + "name": "Run-Time Infrastructure", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7379458" + ], + "created_at": "2026-07-10T10:12:42.759491", + "updated_at": "2026-07-10T10:12:42.759491", + "url": "/v1/software/run-time-infrastructure" +} diff --git a/site/public/v1/software/rundata/index.json b/site/public/v1/software/rundata/index.json new file mode 100644 index 000000000000..aeb356c73c29 --- /dev/null +++ b/site/public/v1/software/rundata/index.json @@ -0,0 +1,19 @@ +{ + "id": 8698, + "slug": "rundata", + "name": "Rundata", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134446066" + ], + "created_at": "2026-07-10T10:12:42.759491", + "updated_at": "2026-07-10T10:12:42.759491", + "url": "/v1/software/rundata" +} diff --git a/site/public/v1/software/rundll32-exe/index.json b/site/public/v1/software/rundll32-exe/index.json new file mode 100644 index 000000000000..35e938ba7390 --- /dev/null +++ b/site/public/v1/software/rundll32-exe/index.json @@ -0,0 +1,19 @@ +{ + "id": 8699, + "slug": "rundll32-exe", + "name": "Rundll32.exe", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2176282" + ], + "created_at": "2026-07-10T10:12:42.760424", + "updated_at": "2026-07-10T10:12:42.760424", + "url": "/v1/software/rundll32-exe" +} diff --git a/site/public/v1/software/rungem/index.json b/site/public/v1/software/rungem/index.json new file mode 100644 index 000000000000..376042524d3e --- /dev/null +++ b/site/public/v1/software/rungem/index.json @@ -0,0 +1,19 @@ +{ + "id": 8700, + "slug": "rungem", + "name": "RunGEM", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7379473" + ], + "created_at": "2026-07-10T10:12:42.760424", + "updated_at": "2026-07-10T10:12:42.760424", + "url": "/v1/software/rungem" +} diff --git a/site/public/v1/software/runoff/index.json b/site/public/v1/software/runoff/index.json new file mode 100644 index 000000000000..a901e8a0380d --- /dev/null +++ b/site/public/v1/software/runoff/index.json @@ -0,0 +1,19 @@ +{ + "id": 8701, + "slug": "runoff", + "name": "RUNOFF", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7380095" + ], + "created_at": "2026-07-10T10:12:42.760424", + "updated_at": "2026-07-10T10:12:42.760424", + "url": "/v1/software/runoff" +} diff --git a/site/public/v1/software/runv/index.json b/site/public/v1/software/runv/index.json new file mode 100644 index 000000000000..91e851f1c7fd --- /dev/null +++ b/site/public/v1/software/runv/index.json @@ -0,0 +1,19 @@ +{ + "id": 8702, + "slug": "runv", + "name": "runv", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065105" + ], + "created_at": "2026-07-10T10:12:42.761428", + "updated_at": "2026-07-10T10:12:42.761428", + "url": "/v1/software/runv" +} diff --git a/site/public/v1/software/rust-compiler/index.json b/site/public/v1/software/rust-compiler/index.json new file mode 100644 index 000000000000..fdde4e9e4647 --- /dev/null +++ b/site/public/v1/software/rust-compiler/index.json @@ -0,0 +1,19 @@ +{ + "id": 8703, + "slug": "rust-compiler", + "name": "Rust compiler", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140263371" + ], + "created_at": "2026-07-10T10:12:42.761428", + "updated_at": "2026-07-10T10:12:42.761428", + "url": "/v1/software/rust-compiler" +} diff --git a/site/public/v1/software/rust-for-linux/index.json b/site/public/v1/software/rust-for-linux/index.json new file mode 100644 index 000000000000..f5bb3b6d99b8 --- /dev/null +++ b/site/public/v1/software/rust-for-linux/index.json @@ -0,0 +1,21 @@ +{ + "id": 8704, + "slug": "rust-for-linux", + "name": "Rust for Linux", + "release_date": null, + "developers": [ + "Miguel Ojeda" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113493081" + ], + "created_at": "2026-07-10T10:12:42.762444", + "updated_at": "2026-07-10T10:12:42.762444", + "url": "/v1/software/rust-for-linux" +} diff --git a/site/public/v1/software/rustrace/index.json b/site/public/v1/software/rustrace/index.json new file mode 100644 index 000000000000..225e7e24898f --- /dev/null +++ b/site/public/v1/software/rustrace/index.json @@ -0,0 +1,21 @@ +{ + "id": 8705, + "slug": "rustrace", + "name": "rustrace", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62664387" + ], + "created_at": "2026-07-10T10:12:42.762444", + "updated_at": "2026-07-10T10:12:42.762444", + "url": "/v1/software/rustrace" +} diff --git a/site/public/v1/software/rx-savings-solutions/index.json b/site/public/v1/software/rx-savings-solutions/index.json new file mode 100644 index 000000000000..f728a1b8469e --- /dev/null +++ b/site/public/v1/software/rx-savings-solutions/index.json @@ -0,0 +1,19 @@ +{ + "id": 8706, + "slug": "rx-savings-solutions", + "name": "Rx Savings Solutions", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q132531137" + ], + "created_at": "2026-07-10T10:12:42.762444", + "updated_at": "2026-07-10T10:12:42.762444", + "url": "/v1/software/rx-savings-solutions" +} diff --git a/site/public/v1/software/rymdport/index.json b/site/public/v1/software/rymdport/index.json new file mode 100644 index 000000000000..719bb3d3db72 --- /dev/null +++ b/site/public/v1/software/rymdport/index.json @@ -0,0 +1,19 @@ +{ + "id": 8707, + "slug": "rymdport", + "name": "Rymdport", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131444227" + ], + "created_at": "2026-07-10T10:12:42.762444", + "updated_at": "2026-07-10T10:12:42.762444", + "url": "/v1/software/rymdport" +} diff --git a/site/public/v1/software/rythm/index.json b/site/public/v1/software/rythm/index.json new file mode 100644 index 000000000000..d9368c3f51d9 --- /dev/null +++ b/site/public/v1/software/rythm/index.json @@ -0,0 +1,19 @@ +{ + "id": 8708, + "slug": "rythm", + "name": "Rythm", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134739033" + ], + "created_at": "2026-07-10T10:12:42.763441", + "updated_at": "2026-07-10T10:12:42.763441", + "url": "/v1/software/rythm" +} diff --git a/site/public/v1/software/ryu/index.json b/site/public/v1/software/ryu/index.json new file mode 100644 index 000000000000..7d208551eb5d --- /dev/null +++ b/site/public/v1/software/ryu/index.json @@ -0,0 +1,21 @@ +{ + "id": 8709, + "slug": "ryu", + "name": "ryu", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Apache Software License 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117357437" + ], + "created_at": "2026-07-10T10:12:42.763441", + "updated_at": "2026-07-10T10:12:42.763441", + "url": "/v1/software/ryu" +} diff --git a/site/public/v1/software/ryugy-ng-changgi/index.json b/site/public/v1/software/ryugy-ng-changgi/index.json new file mode 100644 index 000000000000..faee32330ba6 --- /dev/null +++ b/site/public/v1/software/ryugy-ng-changgi/index.json @@ -0,0 +1,21 @@ +{ + "id": 8710, + "slug": "ryugy-ng-changgi", + "name": "Ryugyŏng Changgi", + "release_date": null, + "developers": [ + "Korea Computer Center" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q12594263" + ], + "created_at": "2026-07-10T10:12:42.763441", + "updated_at": "2026-07-10T10:12:42.764426", + "url": "/v1/software/ryugy-ng-changgi" +} diff --git a/site/public/v1/software/s-boot-4-0-for-the-gt-i9300/index.json b/site/public/v1/software/s-boot-4-0-for-the-gt-i9300/index.json new file mode 100644 index 000000000000..c083a4dbd1c4 --- /dev/null +++ b/site/public/v1/software/s-boot-4-0-for-the-gt-i9300/index.json @@ -0,0 +1,21 @@ +{ + "id": 8711, + "slug": "s-boot-4-0-for-the-gt-i9300", + "name": "s-boot 4.0 for the GT-I9300", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110800808" + ], + "created_at": "2026-07-10T10:12:42.764426", + "updated_at": "2026-07-10T10:12:42.764426", + "url": "/v1/software/s-boot-4-0-for-the-gt-i9300" +} diff --git a/site/public/v1/software/s2-spreadsheet/index.json b/site/public/v1/software/s2-spreadsheet/index.json new file mode 100644 index 000000000000..31337b9cee91 --- /dev/null +++ b/site/public/v1/software/s2-spreadsheet/index.json @@ -0,0 +1,21 @@ +{ + "id": 8712, + "slug": "s2-spreadsheet", + "name": "S2 Spreadsheet", + "release_date": null, + "developers": [ + "IBM" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7388257" + ], + "created_at": "2026-07-10T10:12:42.764426", + "updated_at": "2026-07-10T10:12:42.764426", + "url": "/v1/software/s2-spreadsheet" +} diff --git a/site/public/v1/software/s3ql/index.json b/site/public/v1/software/s3ql/index.json new file mode 100644 index 000000000000..a3cc7ed118ea --- /dev/null +++ b/site/public/v1/software/s3ql/index.json @@ -0,0 +1,19 @@ +{ + "id": 8713, + "slug": "s3ql", + "name": "S3QL", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62866052" + ], + "created_at": "2026-07-10T10:12:42.764426", + "updated_at": "2026-07-10T10:12:42.764426", + "url": "/v1/software/s3ql" +} diff --git a/site/public/v1/software/s4e-io/index.json b/site/public/v1/software/s4e-io/index.json new file mode 100644 index 000000000000..c246135b3326 --- /dev/null +++ b/site/public/v1/software/s4e-io/index.json @@ -0,0 +1,21 @@ +{ + "id": 8714, + "slug": "s4e-io", + "name": "S4E.io", + "release_date": null, + "developers": [ + "S4E.io" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136431840" + ], + "created_at": "2026-07-10T10:12:42.765438", + "updated_at": "2026-07-10T10:12:42.765438", + "url": "/v1/software/s4e-io" +} diff --git a/site/public/v1/software/s6-overlay/index.json b/site/public/v1/software/s6-overlay/index.json new file mode 100644 index 000000000000..f76350abd415 --- /dev/null +++ b/site/public/v1/software/s6-overlay/index.json @@ -0,0 +1,19 @@ +{ + "id": 8715, + "slug": "s6-overlay", + "name": "s6-overlay", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975439" + ], + "created_at": "2026-07-10T10:12:42.765438", + "updated_at": "2026-07-10T10:12:42.765438", + "url": "/v1/software/s6-overlay" +} diff --git a/site/public/v1/software/sachet/index.json b/site/public/v1/software/sachet/index.json new file mode 100644 index 000000000000..22d2a7ce1309 --- /dev/null +++ b/site/public/v1/software/sachet/index.json @@ -0,0 +1,19 @@ +{ + "id": 8716, + "slug": "sachet", + "name": "Sachet", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134470331" + ], + "created_at": "2026-07-10T10:12:42.765438", + "updated_at": "2026-07-10T10:12:42.765438", + "url": "/v1/software/sachet" +} diff --git a/site/public/v1/software/sachiko/index.json b/site/public/v1/software/sachiko/index.json new file mode 100644 index 000000000000..e627cc2f5680 --- /dev/null +++ b/site/public/v1/software/sachiko/index.json @@ -0,0 +1,23 @@ +{ + "id": 8717, + "slug": "sachiko", + "name": "Sachiko", + "release_date": "2015-07-27", + "developers": [], + "publishers": [], + "operating_systems": [ + "iOS", + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25205728" + ], + "created_at": "2026-07-10T10:12:42.766485", + "updated_at": "2026-07-10T10:12:42.766485", + "url": "/v1/software/sachiko" +} diff --git a/site/public/v1/software/sadovnick-projekce/index.json b/site/public/v1/software/sadovnick-projekce/index.json new file mode 100644 index 000000000000..cb177cb4bc43 --- /dev/null +++ b/site/public/v1/software/sadovnick-projekce/index.json @@ -0,0 +1,21 @@ +{ + "id": 8718, + "slug": "sadovnick-projekce", + "name": "Sadovnická projekce", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q20428218" + ], + "created_at": "2026-07-10T10:12:42.766485", + "updated_at": "2026-07-10T10:12:42.766485", + "url": "/v1/software/sadovnick-projekce" +} diff --git a/site/public/v1/software/safe-smart-account/index.json b/site/public/v1/software/safe-smart-account/index.json new file mode 100644 index 000000000000..267a7faf08c6 --- /dev/null +++ b/site/public/v1/software/safe-smart-account/index.json @@ -0,0 +1,23 @@ +{ + "id": 8719, + "slug": "safe-smart-account", + "name": "Safe (smart account)", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Solidity" + ], + "licenses": [ + "GNU Lesser General Public License, version 3.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139813977" + ], + "created_at": "2026-07-10T10:12:42.766485", + "updated_at": "2026-07-10T10:12:42.766485", + "url": "/v1/software/safe-smart-account" +} diff --git a/site/public/v1/software/safecat/index.json b/site/public/v1/software/safecat/index.json new file mode 100644 index 000000000000..d9c2828e0af3 --- /dev/null +++ b/site/public/v1/software/safecat/index.json @@ -0,0 +1,19 @@ +{ + "id": 8720, + "slug": "safecat", + "name": "safecat", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62865982" + ], + "created_at": "2026-07-10T10:12:42.767458", + "updated_at": "2026-07-10T10:12:42.767458", + "url": "/v1/software/safecat" +} diff --git a/site/public/v1/software/safecopy/index.json b/site/public/v1/software/safecopy/index.json new file mode 100644 index 000000000000..569747a29242 --- /dev/null +++ b/site/public/v1/software/safecopy/index.json @@ -0,0 +1,19 @@ +{ + "id": 8721, + "slug": "safecopy", + "name": "safecopy", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62865968" + ], + "created_at": "2026-07-10T10:12:42.767458", + "updated_at": "2026-07-10T10:12:42.767458", + "url": "/v1/software/safecopy" +} diff --git a/site/public/v1/software/safemoon/index.json b/site/public/v1/software/safemoon/index.json new file mode 100644 index 000000000000..cbd4c2abd5bb --- /dev/null +++ b/site/public/v1/software/safemoon/index.json @@ -0,0 +1,19 @@ +{ + "id": 8722, + "slug": "safemoon", + "name": "SafeMoon", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107272578" + ], + "created_at": "2026-07-10T10:12:42.767458", + "updated_at": "2026-07-10T10:12:42.767458", + "url": "/v1/software/safemoon" +} diff --git a/site/public/v1/software/safeq/index.json b/site/public/v1/software/safeq/index.json new file mode 100644 index 000000000000..cfebf7c0e76c --- /dev/null +++ b/site/public/v1/software/safeq/index.json @@ -0,0 +1,19 @@ +{ + "id": 8723, + "slug": "safeq", + "name": "Safeq", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7398577" + ], + "created_at": "2026-07-10T10:12:42.768430", + "updated_at": "2026-07-10T10:12:42.768430", + "url": "/v1/software/safeq" +} diff --git a/site/public/v1/software/safersurf/index.json b/site/public/v1/software/safersurf/index.json new file mode 100644 index 000000000000..7b3dae73b865 --- /dev/null +++ b/site/public/v1/software/safersurf/index.json @@ -0,0 +1,19 @@ +{ + "id": 8724, + "slug": "safersurf", + "name": "SaferSurf", + "release_date": "2003-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q20989114" + ], + "created_at": "2026-07-10T10:12:42.768430", + "updated_at": "2026-07-10T10:12:42.768430", + "url": "/v1/software/safersurf" +} diff --git a/site/public/v1/software/safervpn/index.json b/site/public/v1/software/safervpn/index.json new file mode 100644 index 000000000000..e9a182d24361 --- /dev/null +++ b/site/public/v1/software/safervpn/index.json @@ -0,0 +1,19 @@ +{ + "id": 8725, + "slug": "safervpn", + "name": "SaferVPN", + "release_date": "2013-03-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q47443781" + ], + "created_at": "2026-07-10T10:12:42.768430", + "updated_at": "2026-07-10T10:12:42.768430", + "url": "/v1/software/safervpn" +} diff --git a/site/public/v1/software/safetrek/index.json b/site/public/v1/software/safetrek/index.json new file mode 100644 index 000000000000..1967a9a24da7 --- /dev/null +++ b/site/public/v1/software/safetrek/index.json @@ -0,0 +1,19 @@ +{ + "id": 8726, + "slug": "safetrek", + "name": "SafeTrek", + "release_date": "2013-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28162688" + ], + "created_at": "2026-07-10T10:12:42.769366", + "updated_at": "2026-07-10T10:12:42.769366", + "url": "/v1/software/safetrek" +} diff --git a/site/public/v1/software/sagan-rules/index.json b/site/public/v1/software/sagan-rules/index.json new file mode 100644 index 000000000000..26f5b5c236db --- /dev/null +++ b/site/public/v1/software/sagan-rules/index.json @@ -0,0 +1,19 @@ +{ + "id": 8727, + "slug": "sagan-rules", + "name": "sagan-rules", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975440" + ], + "created_at": "2026-07-10T10:12:42.769366", + "updated_at": "2026-07-10T10:12:42.769366", + "url": "/v1/software/sagan-rules" +} diff --git a/site/public/v1/software/sagan/index.json b/site/public/v1/software/sagan/index.json new file mode 100644 index 000000000000..0288f452488a --- /dev/null +++ b/site/public/v1/software/sagan/index.json @@ -0,0 +1,19 @@ +{ + "id": 8728, + "slug": "sagan", + "name": "Sagan", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17126138" + ], + "created_at": "2026-07-10T10:12:42.769366", + "updated_at": "2026-07-10T10:12:42.769366", + "url": "/v1/software/sagan" +} diff --git a/site/public/v1/software/sage-200cloud/index.json b/site/public/v1/software/sage-200cloud/index.json new file mode 100644 index 000000000000..0af13b6eaf39 --- /dev/null +++ b/site/public/v1/software/sage-200cloud/index.json @@ -0,0 +1,19 @@ +{ + "id": 8729, + "slug": "sage-200cloud", + "name": "Sage 200cloud", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q65069208" + ], + "created_at": "2026-07-10T10:12:42.770430", + "updated_at": "2026-07-10T10:12:42.770430", + "url": "/v1/software/sage-200cloud" +} diff --git a/site/public/v1/software/sage-business-cloud/index.json b/site/public/v1/software/sage-business-cloud/index.json new file mode 100644 index 000000000000..e66f28bbd185 --- /dev/null +++ b/site/public/v1/software/sage-business-cloud/index.json @@ -0,0 +1,19 @@ +{ + "id": 8730, + "slug": "sage-business-cloud", + "name": "Sage Business Cloud", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q65067715" + ], + "created_at": "2026-07-10T10:12:42.770430", + "updated_at": "2026-07-10T10:12:42.770430", + "url": "/v1/software/sage-business-cloud" +} diff --git a/site/public/v1/software/sage-x3/index.json b/site/public/v1/software/sage-x3/index.json new file mode 100644 index 000000000000..8efc0f9fc7c5 --- /dev/null +++ b/site/public/v1/software/sage-x3/index.json @@ -0,0 +1,21 @@ +{ + "id": 8731, + "slug": "sage-x3", + "name": "Sage X3", + "release_date": null, + "developers": [ + "Sage Group" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3461374" + ], + "created_at": "2026-07-10T10:12:42.770430", + "updated_at": "2026-07-10T10:12:42.770430", + "url": "/v1/software/sage-x3" +} diff --git a/site/public/v1/software/sahi-pro/index.json b/site/public/v1/software/sahi-pro/index.json new file mode 100644 index 000000000000..77254ceb7606 --- /dev/null +++ b/site/public/v1/software/sahi-pro/index.json @@ -0,0 +1,19 @@ +{ + "id": 8732, + "slug": "sahi-pro", + "name": "Sahi Pro", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140336856" + ], + "created_at": "2026-07-10T10:12:42.771439", + "updated_at": "2026-07-10T10:12:42.771439", + "url": "/v1/software/sahi-pro" +} diff --git a/site/public/v1/software/sahysmod/index.json b/site/public/v1/software/sahysmod/index.json new file mode 100644 index 000000000000..ec6ee75d94c9 --- /dev/null +++ b/site/public/v1/software/sahysmod/index.json @@ -0,0 +1,23 @@ +{ + "id": 8733, + "slug": "sahysmod", + "name": "SahysMod", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [ + "Delphi" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7399772" + ], + "created_at": "2026-07-10T10:12:42.771439", + "updated_at": "2026-07-10T10:12:42.771439", + "url": "/v1/software/sahysmod" +} diff --git a/site/public/v1/software/saigon-software-park/index.json b/site/public/v1/software/saigon-software-park/index.json new file mode 100644 index 000000000000..c5087e55a421 --- /dev/null +++ b/site/public/v1/software/saigon-software-park/index.json @@ -0,0 +1,19 @@ +{ + "id": 8734, + "slug": "saigon-software-park", + "name": "Saigon Software Park", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q119505158" + ], + "created_at": "2026-07-10T10:12:42.771439", + "updated_at": "2026-07-10T10:12:42.771439", + "url": "/v1/software/saigon-software-park" +} diff --git a/site/public/v1/software/saint/index.json b/site/public/v1/software/saint/index.json new file mode 100644 index 000000000000..b1192b2f572d --- /dev/null +++ b/site/public/v1/software/saint/index.json @@ -0,0 +1,19 @@ +{ + "id": 8735, + "slug": "saint", + "name": "SAINT", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7388582" + ], + "created_at": "2026-07-10T10:12:42.772416", + "updated_at": "2026-07-10T10:12:42.772416", + "url": "/v1/software/saint" +} diff --git a/site/public/v1/software/salamanca/index.json b/site/public/v1/software/salamanca/index.json new file mode 100644 index 000000000000..b0e33650f106 --- /dev/null +++ b/site/public/v1/software/salamanca/index.json @@ -0,0 +1,19 @@ +{ + "id": 8736, + "slug": "salamanca", + "name": "Salamanca", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3469583" + ], + "created_at": "2026-07-10T10:12:42.772416", + "updated_at": "2026-07-10T10:12:42.772416", + "url": "/v1/software/salamanca" +} diff --git a/site/public/v1/software/salamweb/index.json b/site/public/v1/software/salamweb/index.json new file mode 100644 index 000000000000..a83b40175bb3 --- /dev/null +++ b/site/public/v1/software/salamweb/index.json @@ -0,0 +1,21 @@ +{ + "id": 8737, + "slug": "salamweb", + "name": "SalamWeb", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q61194756" + ], + "created_at": "2026-07-10T10:12:42.772416", + "updated_at": "2026-07-10T10:12:42.772416", + "url": "/v1/software/salamweb" +} diff --git a/site/public/v1/software/salem/index.json b/site/public/v1/software/salem/index.json new file mode 100644 index 000000000000..8e7838f69936 --- /dev/null +++ b/site/public/v1/software/salem/index.json @@ -0,0 +1,19 @@ +{ + "id": 8738, + "slug": "salem", + "name": "SALEM", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087709" + ], + "created_at": "2026-07-10T10:12:42.773437", + "updated_at": "2026-07-10T10:12:42.773437", + "url": "/v1/software/salem" +} diff --git a/site/public/v1/software/saler/index.json b/site/public/v1/software/saler/index.json new file mode 100644 index 000000000000..93be0a5b51d6 --- /dev/null +++ b/site/public/v1/software/saler/index.json @@ -0,0 +1,21 @@ +{ + "id": 8739, + "slug": "saler", + "name": "Saler", + "release_date": null, + "developers": [ + "Technical University of Valencia" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q65204053" + ], + "created_at": "2026-07-10T10:12:42.773437", + "updated_at": "2026-07-10T10:12:42.773437", + "url": "/v1/software/saler" +} diff --git a/site/public/v1/software/salesforce-lightning/index.json b/site/public/v1/software/salesforce-lightning/index.json new file mode 100644 index 000000000000..31033be12007 --- /dev/null +++ b/site/public/v1/software/salesforce-lightning/index.json @@ -0,0 +1,19 @@ +{ + "id": 8740, + "slug": "salesforce-lightning", + "name": "Salesforce Lightning", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105745510" + ], + "created_at": "2026-07-10T10:12:42.773437", + "updated_at": "2026-07-10T10:12:42.773437", + "url": "/v1/software/salesforce-lightning" +} diff --git a/site/public/v1/software/salling-clicker/index.json b/site/public/v1/software/salling-clicker/index.json new file mode 100644 index 000000000000..2c2eb9ac6971 --- /dev/null +++ b/site/public/v1/software/salling-clicker/index.json @@ -0,0 +1,19 @@ +{ + "id": 8741, + "slug": "salling-clicker", + "name": "Salling Clicker", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7405006" + ], + "created_at": "2026-07-10T10:12:42.774421", + "updated_at": "2026-07-10T10:12:42.774421", + "url": "/v1/software/salling-clicker" +} diff --git a/site/public/v1/software/salmon/index.json b/site/public/v1/software/salmon/index.json new file mode 100644 index 000000000000..ccef368727bd --- /dev/null +++ b/site/public/v1/software/salmon/index.json @@ -0,0 +1,25 @@ +{ + "id": 8742, + "slug": "salmon", + "name": "Salmon", + "release_date": null, + "developers": [ + "Rafael Irizarry", + "Carl Kingsford", + "Rob Patro" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "GNU General Public License, version 3.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112974082" + ], + "created_at": "2026-07-10T10:12:42.774421", + "updated_at": "2026-07-10T10:12:42.774421", + "url": "/v1/software/salmon" +} diff --git a/site/public/v1/software/salonized/index.json b/site/public/v1/software/salonized/index.json new file mode 100644 index 000000000000..8456bd82749c --- /dev/null +++ b/site/public/v1/software/salonized/index.json @@ -0,0 +1,21 @@ +{ + "id": 8743, + "slug": "salonized", + "name": "Salonized", + "release_date": null, + "developers": [], + "publishers": [ + "Treatwell" + ], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137900368" + ], + "created_at": "2026-07-10T10:12:42.774421", + "updated_at": "2026-07-10T10:12:42.774421", + "url": "/v1/software/salonized" +} diff --git a/site/public/v1/software/saltmod/index.json b/site/public/v1/software/saltmod/index.json new file mode 100644 index 000000000000..a341df8a06d7 --- /dev/null +++ b/site/public/v1/software/saltmod/index.json @@ -0,0 +1,23 @@ +{ + "id": 8744, + "slug": "saltmod", + "name": "SaltMod", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [ + "Delphi" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7405792" + ], + "created_at": "2026-07-10T10:12:42.775363", + "updated_at": "2026-07-10T10:12:42.775363", + "url": "/v1/software/saltmod" +} diff --git a/site/public/v1/software/salttesting/index.json b/site/public/v1/software/salttesting/index.json new file mode 100644 index 000000000000..502eecfd738f --- /dev/null +++ b/site/public/v1/software/salttesting/index.json @@ -0,0 +1,19 @@ +{ + "id": 8745, + "slug": "salttesting", + "name": "SaltTesting", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975441" + ], + "created_at": "2026-07-10T10:12:42.775363", + "updated_at": "2026-07-10T10:12:42.775363", + "url": "/v1/software/salttesting" +} diff --git a/site/public/v1/software/sam-basic/index.json b/site/public/v1/software/sam-basic/index.json new file mode 100644 index 000000000000..d79f4add5055 --- /dev/null +++ b/site/public/v1/software/sam-basic/index.json @@ -0,0 +1,19 @@ +{ + "id": 8746, + "slug": "sam-basic", + "name": "SAM BASIC", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3943413" + ], + "created_at": "2026-07-10T10:12:42.775363", + "updated_at": "2026-07-10T10:12:42.775363", + "url": "/v1/software/sam-basic" +} diff --git a/site/public/v1/software/sam-broadcaster/index.json b/site/public/v1/software/sam-broadcaster/index.json new file mode 100644 index 000000000000..6b32c90036ac --- /dev/null +++ b/site/public/v1/software/sam-broadcaster/index.json @@ -0,0 +1,23 @@ +{ + "id": 8747, + "slug": "sam-broadcaster", + "name": "SAM Broadcaster", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [ + "Delphi" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1163477" + ], + "created_at": "2026-07-10T10:12:42.775363", + "updated_at": "2026-07-10T10:12:42.775363", + "url": "/v1/software/sam-broadcaster" +} diff --git a/site/public/v1/software/sam-spade/index.json b/site/public/v1/software/sam-spade/index.json new file mode 100644 index 000000000000..d61ac73962f3 --- /dev/null +++ b/site/public/v1/software/sam-spade/index.json @@ -0,0 +1,19 @@ +{ + "id": 8748, + "slug": "sam-spade", + "name": "Sam Spade", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7408187" + ], + "created_at": "2026-07-10T10:12:42.776428", + "updated_at": "2026-07-10T10:12:42.776428", + "url": "/v1/software/sam-spade" +} diff --git a/site/public/v1/software/sambar-server/index.json b/site/public/v1/software/sambar-server/index.json new file mode 100644 index 000000000000..70cf221592c5 --- /dev/null +++ b/site/public/v1/software/sambar-server/index.json @@ -0,0 +1,19 @@ +{ + "id": 8749, + "slug": "sambar-server", + "name": "Sambar Server", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3470698" + ], + "created_at": "2026-07-10T10:12:42.776428", + "updated_at": "2026-07-10T10:12:42.776428", + "url": "/v1/software/sambar-server" +} diff --git a/site/public/v1/software/samcef/index.json b/site/public/v1/software/samcef/index.json new file mode 100644 index 000000000000..ea059008e0fd --- /dev/null +++ b/site/public/v1/software/samcef/index.json @@ -0,0 +1,19 @@ +{ + "id": 8750, + "slug": "samcef", + "name": "SAMCEF", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3459183" + ], + "created_at": "2026-07-10T10:12:42.777452", + "updated_at": "2026-07-10T10:12:42.777452", + "url": "/v1/software/samcef" +} diff --git a/site/public/v1/software/saminside/index.json b/site/public/v1/software/saminside/index.json new file mode 100644 index 000000000000..1c9eb363f7f5 --- /dev/null +++ b/site/public/v1/software/saminside/index.json @@ -0,0 +1,19 @@ +{ + "id": 8751, + "slug": "saminside", + "name": "SAMInside", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7388631" + ], + "created_at": "2026-07-10T10:12:42.777452", + "updated_at": "2026-07-10T10:12:42.777452", + "url": "/v1/software/saminside" +} diff --git a/site/public/v1/software/samna/index.json b/site/public/v1/software/samna/index.json new file mode 100644 index 000000000000..668a12f12da4 --- /dev/null +++ b/site/public/v1/software/samna/index.json @@ -0,0 +1,19 @@ +{ + "id": 8752, + "slug": "samna", + "name": "Samna", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7409872" + ], + "created_at": "2026-07-10T10:12:42.777452", + "updated_at": "2026-07-10T10:12:42.777452", + "url": "/v1/software/samna" +} diff --git a/site/public/v1/software/samplecell-editor/index.json b/site/public/v1/software/samplecell-editor/index.json new file mode 100644 index 000000000000..813e5fb87071 --- /dev/null +++ b/site/public/v1/software/samplecell-editor/index.json @@ -0,0 +1,21 @@ +{ + "id": 8753, + "slug": "samplecell-editor", + "name": "Samplecell Editor", + "release_date": null, + "developers": [], + "publishers": [ + "Avid Audio" + ], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135479718" + ], + "created_at": "2026-07-10T10:12:42.777452", + "updated_at": "2026-07-10T10:12:42.777452", + "url": "/v1/software/samplecell-editor" +} diff --git a/site/public/v1/software/sampo-ui/index.json b/site/public/v1/software/sampo-ui/index.json new file mode 100644 index 000000000000..c7aa795c86e3 --- /dev/null +++ b/site/public/v1/software/sampo-ui/index.json @@ -0,0 +1,23 @@ +{ + "id": 8754, + "slug": "sampo-ui", + "name": "Sampo-UI", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [ + "graphical user interface" + ], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122949732" + ], + "created_at": "2026-07-10T10:12:42.778436", + "updated_at": "2026-07-10T10:12:42.778436", + "url": "/v1/software/sampo-ui" +} diff --git a/site/public/v1/software/samsung-email/index.json b/site/public/v1/software/samsung-email/index.json new file mode 100644 index 000000000000..ce5db7b82827 --- /dev/null +++ b/site/public/v1/software/samsung-email/index.json @@ -0,0 +1,19 @@ +{ + "id": 8755, + "slug": "samsung-email", + "name": "Samsung Email", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123015558" + ], + "created_at": "2026-07-10T10:12:42.778436", + "updated_at": "2026-07-10T10:12:42.778436", + "url": "/v1/software/samsung-email" +} diff --git a/site/public/v1/software/samsung-galaxy-player-50/index.json b/site/public/v1/software/samsung-galaxy-player-50/index.json new file mode 100644 index 000000000000..fa433051779d --- /dev/null +++ b/site/public/v1/software/samsung-galaxy-player-50/index.json @@ -0,0 +1,24 @@ +{ + "id": 8756, + "slug": "samsung-galaxy-player-50", + "name": "Samsung Galaxy Player 50", + "release_date": null, + "developers": [ + "Samsung Electronics" + ], + "publishers": [], + "operating_systems": [ + "Android Gingerbread", + "Android Froyo" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q488559" + ], + "created_at": "2026-07-10T10:12:42.779420", + "updated_at": "2026-07-10T10:12:42.779420", + "url": "/v1/software/samsung-galaxy-player-50" +} diff --git a/site/public/v1/software/samsung-knox/index.json b/site/public/v1/software/samsung-knox/index.json new file mode 100644 index 000000000000..60277f33ed57 --- /dev/null +++ b/site/public/v1/software/samsung-knox/index.json @@ -0,0 +1,23 @@ +{ + "id": 8757, + "slug": "samsung-knox", + "name": "Samsung Knox", + "release_date": null, + "developers": [ + "Samsung Group" + ], + "publishers": [], + "operating_systems": [ + "Tizen" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q14628801" + ], + "created_at": "2026-07-10T10:12:42.779420", + "updated_at": "2026-07-10T10:12:42.779420", + "url": "/v1/software/samsung-knox" +} diff --git a/site/public/v1/software/samsung-link/index.json b/site/public/v1/software/samsung-link/index.json new file mode 100644 index 000000000000..ee023a77908a --- /dev/null +++ b/site/public/v1/software/samsung-link/index.json @@ -0,0 +1,21 @@ +{ + "id": 8758, + "slug": "samsung-link", + "name": "Samsung Link", + "release_date": "2009-01-01", + "developers": [ + "Samsung Electronics" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q14389650" + ], + "created_at": "2026-07-10T10:12:42.779420", + "updated_at": "2026-07-10T10:12:42.779420", + "url": "/v1/software/samsung-link" +} diff --git a/site/public/v1/software/samsung-wallet/index.json b/site/public/v1/software/samsung-wallet/index.json new file mode 100644 index 000000000000..92bebeb7eb1d --- /dev/null +++ b/site/public/v1/software/samsung-wallet/index.json @@ -0,0 +1,21 @@ +{ + "id": 8759, + "slug": "samsung-wallet", + "name": "Samsung Wallet", + "release_date": null, + "developers": [ + "Samsung Electronics" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112939330" + ], + "created_at": "2026-07-10T10:12:42.779420", + "updated_at": "2026-07-10T10:12:42.779420", + "url": "/v1/software/samsung-wallet" +} diff --git a/site/public/v1/software/samsung-watchon/index.json b/site/public/v1/software/samsung-watchon/index.json new file mode 100644 index 000000000000..5823c067e563 --- /dev/null +++ b/site/public/v1/software/samsung-watchon/index.json @@ -0,0 +1,21 @@ +{ + "id": 8760, + "slug": "samsung-watchon", + "name": "Samsung WatchON", + "release_date": null, + "developers": [ + "Samsung Electronics" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17063687" + ], + "created_at": "2026-07-10T10:12:42.780428", + "updated_at": "2026-07-10T10:12:42.780428", + "url": "/v1/software/samsung-watchon" +} diff --git a/site/public/v1/software/samurize/index.json b/site/public/v1/software/samurize/index.json new file mode 100644 index 000000000000..78fca7e22f13 --- /dev/null +++ b/site/public/v1/software/samurize/index.json @@ -0,0 +1,19 @@ +{ + "id": 8761, + "slug": "samurize", + "name": "Samurize", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q444255" + ], + "created_at": "2026-07-10T10:12:42.780428", + "updated_at": "2026-07-10T10:12:42.780428", + "url": "/v1/software/samurize" +} diff --git a/site/public/v1/software/sanad/index.json b/site/public/v1/software/sanad/index.json new file mode 100644 index 000000000000..dddcebeaac55 --- /dev/null +++ b/site/public/v1/software/sanad/index.json @@ -0,0 +1,19 @@ +{ + "id": 8762, + "slug": "sanad", + "name": "Sanad", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136297487" + ], + "created_at": "2026-07-10T10:12:42.781421", + "updated_at": "2026-07-10T10:12:42.781421", + "url": "/v1/software/sanad" +} diff --git a/site/public/v1/software/sandbox-q4049043/index.json b/site/public/v1/software/sandbox-q4049043/index.json new file mode 100644 index 000000000000..90c48639613e --- /dev/null +++ b/site/public/v1/software/sandbox-q4049043/index.json @@ -0,0 +1,19 @@ +{ + "id": 8763, + "slug": "sandbox-q4049043", + "name": "sandbox", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4049043" + ], + "created_at": "2026-07-10T10:12:42.781421", + "updated_at": "2026-07-10T10:12:42.781421", + "url": "/v1/software/sandbox-q4049043" +} diff --git a/site/public/v1/software/sandbox/index.json b/site/public/v1/software/sandbox/index.json new file mode 100644 index 000000000000..d0b3a87cc744 --- /dev/null +++ b/site/public/v1/software/sandbox/index.json @@ -0,0 +1,19 @@ +{ + "id": 8764, + "slug": "sandbox", + "name": "sandbox", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q842193" + ], + "created_at": "2026-07-10T10:12:42.781421", + "updated_at": "2026-07-10T10:12:42.781421", + "url": "/v1/software/sandbox" +} diff --git a/site/public/v1/software/sandboxedapps/index.json b/site/public/v1/software/sandboxedapps/index.json new file mode 100644 index 000000000000..41f69b51315c --- /dev/null +++ b/site/public/v1/software/sandboxedapps/index.json @@ -0,0 +1,19 @@ +{ + "id": 8765, + "slug": "sandboxedapps", + "name": "SandboxedApps", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76181576" + ], + "created_at": "2026-07-10T10:12:42.781421", + "updated_at": "2026-07-10T10:12:42.781421", + "url": "/v1/software/sandboxedapps" +} diff --git a/site/public/v1/software/sandvox/index.json b/site/public/v1/software/sandvox/index.json new file mode 100644 index 000000000000..b96e11cf39a8 --- /dev/null +++ b/site/public/v1/software/sandvox/index.json @@ -0,0 +1,21 @@ +{ + "id": 8766, + "slug": "sandvox", + "name": "Sandvox", + "release_date": null, + "developers": [ + "Karelia Software" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7417029" + ], + "created_at": "2026-07-10T10:12:42.782440", + "updated_at": "2026-07-10T10:12:42.782440", + "url": "/v1/software/sandvox" +} diff --git a/site/public/v1/software/saner-vulnerability-management/index.json b/site/public/v1/software/saner-vulnerability-management/index.json new file mode 100644 index 000000000000..5e4cf7750a8a --- /dev/null +++ b/site/public/v1/software/saner-vulnerability-management/index.json @@ -0,0 +1,23 @@ +{ + "id": 8767, + "slug": "saner-vulnerability-management", + "name": "Saner Vulnerability Management", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "IBM AIX", + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134587931" + ], + "created_at": "2026-07-10T10:12:42.782440", + "updated_at": "2026-07-10T10:12:42.782440", + "url": "/v1/software/saner-vulnerability-management" +} diff --git a/site/public/v1/software/sango-2/index.json b/site/public/v1/software/sango-2/index.json new file mode 100644 index 000000000000..5474dc82ff5f --- /dev/null +++ b/site/public/v1/software/sango-2/index.json @@ -0,0 +1,19 @@ +{ + "id": 8768, + "slug": "sango-2", + "name": "Sango 2", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140462804" + ], + "created_at": "2026-07-10T10:12:42.783430", + "updated_at": "2026-07-10T10:12:42.783430", + "url": "/v1/software/sango-2" +} diff --git a/site/public/v1/software/sap-analytics-cloud/index.json b/site/public/v1/software/sap-analytics-cloud/index.json new file mode 100644 index 000000000000..7b474de1d4a1 --- /dev/null +++ b/site/public/v1/software/sap-analytics-cloud/index.json @@ -0,0 +1,19 @@ +{ + "id": 8769, + "slug": "sap-analytics-cloud", + "name": "SAP Analytics Cloud", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120748987" + ], + "created_at": "2026-07-10T10:12:42.783430", + "updated_at": "2026-07-10T10:12:42.783430", + "url": "/v1/software/sap-analytics-cloud" +} diff --git a/site/public/v1/software/sap-anywhere/index.json b/site/public/v1/software/sap-anywhere/index.json new file mode 100644 index 000000000000..eae3c602af87 --- /dev/null +++ b/site/public/v1/software/sap-anywhere/index.json @@ -0,0 +1,23 @@ +{ + "id": 8770, + "slug": "sap-anywhere", + "name": "SAP Anywhere", + "release_date": null, + "developers": [ + "SAP" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Java" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q24806849" + ], + "created_at": "2026-07-10T10:12:42.783430", + "updated_at": "2026-07-10T10:12:42.783430", + "url": "/v1/software/sap-anywhere" +} diff --git a/site/public/v1/software/sap-business-bydesign/index.json b/site/public/v1/software/sap-business-bydesign/index.json new file mode 100644 index 000000000000..0b94b5058bff --- /dev/null +++ b/site/public/v1/software/sap-business-bydesign/index.json @@ -0,0 +1,21 @@ +{ + "id": 8771, + "slug": "sap-business-bydesign", + "name": "SAP Business ByDesign", + "release_date": null, + "developers": [ + "SAP" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7388714" + ], + "created_at": "2026-07-10T10:12:42.783430", + "updated_at": "2026-07-10T10:12:42.783430", + "url": "/v1/software/sap-business-bydesign" +} diff --git a/site/public/v1/software/sap-business-one/index.json b/site/public/v1/software/sap-business-one/index.json new file mode 100644 index 000000000000..64148530b40d --- /dev/null +++ b/site/public/v1/software/sap-business-one/index.json @@ -0,0 +1,21 @@ +{ + "id": 8772, + "slug": "sap-business-one", + "name": "SAP Business One", + "release_date": null, + "developers": [ + "SAP" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3267706" + ], + "created_at": "2026-07-10T10:12:42.784435", + "updated_at": "2026-07-10T10:12:42.784435", + "url": "/v1/software/sap-business-one" +} diff --git a/site/public/v1/software/sap-business-suite/index.json b/site/public/v1/software/sap-business-suite/index.json new file mode 100644 index 000000000000..cd7b1105fa5e --- /dev/null +++ b/site/public/v1/software/sap-business-suite/index.json @@ -0,0 +1,21 @@ +{ + "id": 8773, + "slug": "sap-business-suite", + "name": "SAP Business Suite", + "release_date": null, + "developers": [ + "SAP" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4178192" + ], + "created_at": "2026-07-10T10:12:42.784435", + "updated_at": "2026-07-10T10:12:42.784435", + "url": "/v1/software/sap-business-suite" +} diff --git a/site/public/v1/software/sap-converged-cloud/index.json b/site/public/v1/software/sap-converged-cloud/index.json new file mode 100644 index 000000000000..ac93ec4e020d --- /dev/null +++ b/site/public/v1/software/sap-converged-cloud/index.json @@ -0,0 +1,21 @@ +{ + "id": 8774, + "slug": "sap-converged-cloud", + "name": "SAP Converged Cloud", + "release_date": null, + "developers": [ + "SAP" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q42266705" + ], + "created_at": "2026-07-10T10:12:42.784435", + "updated_at": "2026-07-10T10:12:42.784435", + "url": "/v1/software/sap-converged-cloud" +} diff --git a/site/public/v1/software/sap-enterprise-architecture-framework/index.json b/site/public/v1/software/sap-enterprise-architecture-framework/index.json new file mode 100644 index 000000000000..64a6e7c9b464 --- /dev/null +++ b/site/public/v1/software/sap-enterprise-architecture-framework/index.json @@ -0,0 +1,19 @@ +{ + "id": 8775, + "slug": "sap-enterprise-architecture-framework", + "name": "SAP Enterprise Architecture Framework", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7388721" + ], + "created_at": "2026-07-10T10:12:42.785436", + "updated_at": "2026-07-10T10:12:42.785436", + "url": "/v1/software/sap-enterprise-architecture-framework" +} diff --git a/site/public/v1/software/sap-fiori/index.json b/site/public/v1/software/sap-fiori/index.json new file mode 100644 index 000000000000..4cdafc433e34 --- /dev/null +++ b/site/public/v1/software/sap-fiori/index.json @@ -0,0 +1,21 @@ +{ + "id": 8776, + "slug": "sap-fiori", + "name": "SAP Fiori", + "release_date": null, + "developers": [ + "SAP" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22101754" + ], + "created_at": "2026-07-10T10:12:42.785436", + "updated_at": "2026-07-10T10:12:42.785436", + "url": "/v1/software/sap-fiori" +} diff --git a/site/public/v1/software/sap-for-retail/index.json b/site/public/v1/software/sap-for-retail/index.json new file mode 100644 index 000000000000..a1581be36a5b --- /dev/null +++ b/site/public/v1/software/sap-for-retail/index.json @@ -0,0 +1,19 @@ +{ + "id": 8777, + "slug": "sap-for-retail", + "name": "SAP for Retail", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2204863" + ], + "created_at": "2026-07-10T10:12:42.785436", + "updated_at": "2026-07-10T10:12:42.785436", + "url": "/v1/software/sap-for-retail" +} diff --git a/site/public/v1/software/sap-gui/index.json b/site/public/v1/software/sap-gui/index.json new file mode 100644 index 000000000000..699627b534a5 --- /dev/null +++ b/site/public/v1/software/sap-gui/index.json @@ -0,0 +1,26 @@ +{ + "id": 8778, + "slug": "sap-gui", + "name": "SAP GUI", + "release_date": null, + "developers": [ + "SAP" + ], + "publishers": [], + "operating_systems": [ + "Java virtual machine", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q489479" + ], + "created_at": "2026-07-10T10:12:42.786362", + "updated_at": "2026-07-10T10:12:42.786362", + "url": "/v1/software/sap-gui" +} diff --git a/site/public/v1/software/sap-is-u/index.json b/site/public/v1/software/sap-is-u/index.json new file mode 100644 index 000000000000..dec06516d58b --- /dev/null +++ b/site/public/v1/software/sap-is-u/index.json @@ -0,0 +1,19 @@ +{ + "id": 8779, + "slug": "sap-is-u", + "name": "SAP IS-U", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1690762" + ], + "created_at": "2026-07-10T10:12:42.786362", + "updated_at": "2026-07-10T10:12:42.786362", + "url": "/v1/software/sap-is-u" +} diff --git a/site/public/v1/software/sap-netweaver-application-server/index.json b/site/public/v1/software/sap-netweaver-application-server/index.json new file mode 100644 index 000000000000..74fa71a63fa4 --- /dev/null +++ b/site/public/v1/software/sap-netweaver-application-server/index.json @@ -0,0 +1,31 @@ +{ + "id": 8780, + "slug": "sap-netweaver-application-server", + "name": "SAP NetWeaver Application Server", + "release_date": null, + "developers": [ + "SAP" + ], + "publishers": [], + "operating_systems": [ + "IBM AIX", + "HP-UX", + "Solaris", + "Microsoft Windows" + ], + "programming_languages": [ + "Java", + "ABAP" + ], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q388612" + ], + "created_at": "2026-07-10T10:12:42.786362", + "updated_at": "2026-07-10T10:12:42.786362", + "url": "/v1/software/sap-netweaver-application-server" +} diff --git a/site/public/v1/software/sap-netweaver-portal/index.json b/site/public/v1/software/sap-netweaver-portal/index.json new file mode 100644 index 000000000000..b3a81ece0e6c --- /dev/null +++ b/site/public/v1/software/sap-netweaver-portal/index.json @@ -0,0 +1,19 @@ +{ + "id": 8781, + "slug": "sap-netweaver-portal", + "name": "SAP NetWeaver Portal", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2204866" + ], + "created_at": "2026-07-10T10:12:42.786362", + "updated_at": "2026-07-10T10:12:42.786362", + "url": "/v1/software/sap-netweaver-portal" +} diff --git a/site/public/v1/software/sap-netweaver-process-integration/index.json b/site/public/v1/software/sap-netweaver-process-integration/index.json new file mode 100644 index 000000000000..38741c967a80 --- /dev/null +++ b/site/public/v1/software/sap-netweaver-process-integration/index.json @@ -0,0 +1,19 @@ +{ + "id": 8782, + "slug": "sap-netweaver-process-integration", + "name": "SAP NetWeaver Process Integration", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2204873" + ], + "created_at": "2026-07-10T10:12:42.787362", + "updated_at": "2026-07-10T10:12:42.787362", + "url": "/v1/software/sap-netweaver-process-integration" +} diff --git a/site/public/v1/software/sap-netweaver-visual-composer/index.json b/site/public/v1/software/sap-netweaver-visual-composer/index.json new file mode 100644 index 000000000000..58ed06087910 --- /dev/null +++ b/site/public/v1/software/sap-netweaver-visual-composer/index.json @@ -0,0 +1,19 @@ +{ + "id": 8783, + "slug": "sap-netweaver-visual-composer", + "name": "SAP NetWeaver Visual Composer", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7388729" + ], + "created_at": "2026-07-10T10:12:42.787362", + "updated_at": "2026-07-10T10:12:42.787362", + "url": "/v1/software/sap-netweaver-visual-composer" +} diff --git a/site/public/v1/software/sap-s-4hana/index.json b/site/public/v1/software/sap-s-4hana/index.json new file mode 100644 index 000000000000..53b355d71b3b --- /dev/null +++ b/site/public/v1/software/sap-s-4hana/index.json @@ -0,0 +1,25 @@ +{ + "id": 8784, + "slug": "sap-s-4hana", + "name": "SAP S/4HANA", + "release_date": "2015-02-03", + "developers": [ + "SAP" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "ABAP" + ], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q21480303" + ], + "created_at": "2026-07-10T10:12:42.787362", + "updated_at": "2026-07-10T10:12:42.787362", + "url": "/v1/software/sap-s-4hana" +} diff --git a/site/public/v1/software/sap-solution-manager/index.json b/site/public/v1/software/sap-solution-manager/index.json new file mode 100644 index 000000000000..4e56949cbe59 --- /dev/null +++ b/site/public/v1/software/sap-solution-manager/index.json @@ -0,0 +1,19 @@ +{ + "id": 8785, + "slug": "sap-solution-manager", + "name": "SAP Solution Manager", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2204860" + ], + "created_at": "2026-07-10T10:12:42.788424", + "updated_at": "2026-07-10T10:12:42.788424", + "url": "/v1/software/sap-solution-manager" +} diff --git a/site/public/v1/software/sap-streamwork/index.json b/site/public/v1/software/sap-streamwork/index.json new file mode 100644 index 000000000000..98c428b965c8 --- /dev/null +++ b/site/public/v1/software/sap-streamwork/index.json @@ -0,0 +1,21 @@ +{ + "id": 8786, + "slug": "sap-streamwork", + "name": "SAP StreamWork", + "release_date": null, + "developers": [ + "SAP" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7388732" + ], + "created_at": "2026-07-10T10:12:42.788424", + "updated_at": "2026-07-10T10:12:42.788424", + "url": "/v1/software/sap-streamwork" +} diff --git a/site/public/v1/software/sap2000/index.json b/site/public/v1/software/sap2000/index.json new file mode 100644 index 000000000000..10957eda8c06 --- /dev/null +++ b/site/public/v1/software/sap2000/index.json @@ -0,0 +1,19 @@ +{ + "id": 8787, + "slug": "sap2000", + "name": "SAP2000", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6727191" + ], + "created_at": "2026-07-10T10:12:42.788424", + "updated_at": "2026-07-10T10:12:42.788424", + "url": "/v1/software/sap2000" +} diff --git a/site/public/v1/software/sapper/index.json b/site/public/v1/software/sapper/index.json new file mode 100644 index 000000000000..480ea5ba74a4 --- /dev/null +++ b/site/public/v1/software/sapper/index.json @@ -0,0 +1,19 @@ +{ + "id": 8788, + "slug": "sapper", + "name": "Sapper", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108324807" + ], + "created_at": "2026-07-10T10:12:42.789443", + "updated_at": "2026-07-10T10:12:42.789443", + "url": "/v1/software/sapper" +} diff --git a/site/public/v1/software/saqc/index.json b/site/public/v1/software/saqc/index.json new file mode 100644 index 000000000000..2949da5417b7 --- /dev/null +++ b/site/public/v1/software/saqc/index.json @@ -0,0 +1,21 @@ +{ + "id": 8789, + "slug": "saqc", + "name": "SaQC", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Python" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q128228853" + ], + "created_at": "2026-07-10T10:12:42.789443", + "updated_at": "2026-07-10T10:12:42.789443", + "url": "/v1/software/saqc" +} diff --git a/site/public/v1/software/saracen-paint/index.json b/site/public/v1/software/saracen-paint/index.json new file mode 100644 index 000000000000..7fda4b72fae2 --- /dev/null +++ b/site/public/v1/software/saracen-paint/index.json @@ -0,0 +1,19 @@ +{ + "id": 8790, + "slug": "saracen-paint", + "name": "Saracen Paint", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q71544988" + ], + "created_at": "2026-07-10T10:12:42.789443", + "updated_at": "2026-07-10T10:12:42.789443", + "url": "/v1/software/saracen-paint" +} diff --git a/site/public/v1/software/sardu/index.json b/site/public/v1/software/sardu/index.json new file mode 100644 index 000000000000..b789c52a23e8 --- /dev/null +++ b/site/public/v1/software/sardu/index.json @@ -0,0 +1,19 @@ +{ + "id": 8791, + "slug": "sardu", + "name": "SARDU", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q15972486" + ], + "created_at": "2026-07-10T10:12:42.790422", + "updated_at": "2026-07-10T10:12:42.790422", + "url": "/v1/software/sardu" +} diff --git a/site/public/v1/software/sarit/index.json b/site/public/v1/software/sarit/index.json new file mode 100644 index 000000000000..da24f7229fc5 --- /dev/null +++ b/site/public/v1/software/sarit/index.json @@ -0,0 +1,19 @@ +{ + "id": 8792, + "slug": "sarit", + "name": "SARIT", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084527" + ], + "created_at": "2026-07-10T10:12:42.790422", + "updated_at": "2026-07-10T10:12:42.790422", + "url": "/v1/software/sarit" +} diff --git a/site/public/v1/software/sarloc/index.json b/site/public/v1/software/sarloc/index.json new file mode 100644 index 000000000000..6ff6b4c833d7 --- /dev/null +++ b/site/public/v1/software/sarloc/index.json @@ -0,0 +1,19 @@ +{ + "id": 8793, + "slug": "sarloc", + "name": "SARLOC", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q97230006" + ], + "created_at": "2026-07-10T10:12:42.790422", + "updated_at": "2026-07-10T10:12:42.790422", + "url": "/v1/software/sarloc" +} diff --git a/site/public/v1/software/sas-planet/index.json b/site/public/v1/software/sas-planet/index.json new file mode 100644 index 000000000000..8ef1b359a7e4 --- /dev/null +++ b/site/public/v1/software/sas-planet/index.json @@ -0,0 +1,21 @@ +{ + "id": 8794, + "slug": "sas-planet", + "name": "SAS.Planet", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Delphi" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4048689" + ], + "created_at": "2026-07-10T10:12:42.791441", + "updated_at": "2026-07-10T10:12:42.791441", + "url": "/v1/software/sas-planet" +} diff --git a/site/public/v1/software/sas-viya/index.json b/site/public/v1/software/sas-viya/index.json new file mode 100644 index 000000000000..1b1409b83945 --- /dev/null +++ b/site/public/v1/software/sas-viya/index.json @@ -0,0 +1,19 @@ +{ + "id": 8795, + "slug": "sas-viya", + "name": "SAS Viya", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131985789" + ], + "created_at": "2026-07-10T10:12:42.791441", + "updated_at": "2026-07-10T10:12:42.791441", + "url": "/v1/software/sas-viya" +} diff --git a/site/public/v1/software/sasdk/index.json b/site/public/v1/software/sasdk/index.json new file mode 100644 index 000000000000..81965b476e1e --- /dev/null +++ b/site/public/v1/software/sasdk/index.json @@ -0,0 +1,19 @@ +{ + "id": 8796, + "slug": "sasdk", + "name": "SASDK", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7388783" + ], + "created_at": "2026-07-10T10:12:42.791441", + "updated_at": "2026-07-10T10:12:42.791441", + "url": "/v1/software/sasdk" +} diff --git a/site/public/v1/software/sass-c/index.json b/site/public/v1/software/sass-c/index.json new file mode 100644 index 000000000000..3fc16b98eba5 --- /dev/null +++ b/site/public/v1/software/sass-c/index.json @@ -0,0 +1,19 @@ +{ + "id": 8797, + "slug": "sass-c", + "name": "SASS-C", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7388789" + ], + "created_at": "2026-07-10T10:12:42.792433", + "updated_at": "2026-07-10T10:12:42.792433", + "url": "/v1/software/sass-c" +} diff --git a/site/public/v1/software/satro-ecg/index.json b/site/public/v1/software/satro-ecg/index.json new file mode 100644 index 000000000000..04f1aa01e72c --- /dev/null +++ b/site/public/v1/software/satro-ecg/index.json @@ -0,0 +1,19 @@ +{ + "id": 8798, + "slug": "satro-ecg", + "name": "SATRO-ECG", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7388844" + ], + "created_at": "2026-07-10T10:12:42.792433", + "updated_at": "2026-07-10T10:12:42.792433", + "url": "/v1/software/satro-ecg" +} diff --git a/site/public/v1/software/saturn/index.json b/site/public/v1/software/saturn/index.json new file mode 100644 index 000000000000..c6203b012f9a --- /dev/null +++ b/site/public/v1/software/saturn/index.json @@ -0,0 +1,19 @@ +{ + "id": 8799, + "slug": "saturn", + "name": "Saturn", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28458157" + ], + "created_at": "2026-07-10T10:12:42.792433", + "updated_at": "2026-07-10T10:12:42.792433", + "url": "/v1/software/saturn" +} diff --git a/site/public/v1/software/sautrela/index.json b/site/public/v1/software/sautrela/index.json new file mode 100644 index 000000000000..94deaa433ef1 --- /dev/null +++ b/site/public/v1/software/sautrela/index.json @@ -0,0 +1,19 @@ +{ + "id": 8800, + "slug": "sautrela", + "name": "Sautrela", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7427628" + ], + "created_at": "2026-07-10T10:12:42.793455", + "updated_at": "2026-07-10T10:12:42.793455", + "url": "/v1/software/sautrela" +} diff --git a/site/public/v1/software/save22/index.json b/site/public/v1/software/save22/index.json new file mode 100644 index 000000000000..efb434beafd9 --- /dev/null +++ b/site/public/v1/software/save22/index.json @@ -0,0 +1,19 @@ +{ + "id": 8801, + "slug": "save22", + "name": "Save22", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7427976" + ], + "created_at": "2026-07-10T10:12:42.793455", + "updated_at": "2026-07-10T10:12:42.793455", + "url": "/v1/software/save22" +} diff --git a/site/public/v1/software/sawmill/index.json b/site/public/v1/software/sawmill/index.json new file mode 100644 index 000000000000..1bc6800744a5 --- /dev/null +++ b/site/public/v1/software/sawmill/index.json @@ -0,0 +1,19 @@ +{ + "id": 8802, + "slug": "sawmill", + "name": "Sawmill", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7428658" + ], + "created_at": "2026-07-10T10:12:42.793455", + "updated_at": "2026-07-10T10:12:42.793455", + "url": "/v1/software/sawmill" +} diff --git a/site/public/v1/software/sawstudio/index.json b/site/public/v1/software/sawstudio/index.json new file mode 100644 index 000000000000..8fffc3dfb44f --- /dev/null +++ b/site/public/v1/software/sawstudio/index.json @@ -0,0 +1,19 @@ +{ + "id": 8803, + "slug": "sawstudio", + "name": "SAWStudio", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7388877" + ], + "created_at": "2026-07-10T10:12:42.794429", + "updated_at": "2026-07-10T10:12:42.794429", + "url": "/v1/software/sawstudio" +} diff --git a/site/public/v1/software/saxotech-online/index.json b/site/public/v1/software/saxotech-online/index.json new file mode 100644 index 000000000000..77dc70a88c48 --- /dev/null +++ b/site/public/v1/software/saxotech-online/index.json @@ -0,0 +1,19 @@ +{ + "id": 8804, + "slug": "saxotech-online", + "name": "Saxotech Online", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11999644" + ], + "created_at": "2026-07-10T10:12:42.794429", + "updated_at": "2026-07-10T10:12:42.794429", + "url": "/v1/software/saxotech-online" +} diff --git a/site/public/v1/software/saycraft/index.json b/site/public/v1/software/saycraft/index.json new file mode 100644 index 000000000000..bec46a440c30 --- /dev/null +++ b/site/public/v1/software/saycraft/index.json @@ -0,0 +1,19 @@ +{ + "id": 8805, + "slug": "saycraft", + "name": "SayCraft", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140321842" + ], + "created_at": "2026-07-10T10:12:42.795433", + "updated_at": "2026-07-10T10:12:42.795433", + "url": "/v1/software/saycraft" +} diff --git a/site/public/v1/software/sbase/index.json b/site/public/v1/software/sbase/index.json new file mode 100644 index 000000000000..6e068496890f --- /dev/null +++ b/site/public/v1/software/sbase/index.json @@ -0,0 +1,23 @@ +{ + "id": 8806, + "slug": "sbase", + "name": "sbase", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Unix-like operating system" + ], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22661296" + ], + "created_at": "2026-07-10T10:12:42.795433", + "updated_at": "2026-07-10T10:12:42.795433", + "url": "/v1/software/sbase" +} diff --git a/site/public/v1/software/sbom-2023/index.json b/site/public/v1/software/sbom-2023/index.json new file mode 100644 index 000000000000..53e6a67b5cc9 --- /dev/null +++ b/site/public/v1/software/sbom-2023/index.json @@ -0,0 +1,21 @@ +{ + "id": 8807, + "slug": "sbom-2023", + "name": "SBOM-2023", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127474937" + ], + "created_at": "2026-07-10T10:12:42.795433", + "updated_at": "2026-07-10T10:12:42.795433", + "url": "/v1/software/sbom-2023" +} diff --git a/site/public/v1/software/sbrk/index.json b/site/public/v1/software/sbrk/index.json new file mode 100644 index 000000000000..fde3406dfbde --- /dev/null +++ b/site/public/v1/software/sbrk/index.json @@ -0,0 +1,19 @@ +{ + "id": 8808, + "slug": "sbrk", + "name": "sbrk", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7429549" + ], + "created_at": "2026-07-10T10:12:42.795433", + "updated_at": "2026-07-10T10:12:42.795433", + "url": "/v1/software/sbrk" +} diff --git a/site/public/v1/software/sbscl/index.json b/site/public/v1/software/sbscl/index.json new file mode 100644 index 000000000000..2899d0805fea --- /dev/null +++ b/site/public/v1/software/sbscl/index.json @@ -0,0 +1,19 @@ +{ + "id": 8809, + "slug": "sbscl", + "name": "SBSCL", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135920020" + ], + "created_at": "2026-07-10T10:12:42.796426", + "updated_at": "2026-07-10T10:12:42.796426", + "url": "/v1/software/sbscl" +} diff --git a/site/public/v1/software/sc/index.json b/site/public/v1/software/sc/index.json new file mode 100644 index 000000000000..50d3db71d867 --- /dev/null +++ b/site/public/v1/software/sc/index.json @@ -0,0 +1,21 @@ +{ + "id": 8810, + "slug": "sc", + "name": "sc", + "release_date": null, + "developers": [ + "James Gosling" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28453409" + ], + "created_at": "2026-07-10T10:12:42.796426", + "updated_at": "2026-07-10T10:12:42.796426", + "url": "/v1/software/sc" +} diff --git a/site/public/v1/software/scalability-testing/index.json b/site/public/v1/software/scalability-testing/index.json new file mode 100644 index 000000000000..d6c7b00075ec --- /dev/null +++ b/site/public/v1/software/scalability-testing/index.json @@ -0,0 +1,19 @@ +{ + "id": 8811, + "slug": "scalability-testing", + "name": "scalability testing", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10986558" + ], + "created_at": "2026-07-10T10:12:42.796426", + "updated_at": "2026-07-10T10:12:42.796426", + "url": "/v1/software/scalability-testing" +} diff --git a/site/public/v1/software/scalable-inman-flash-replacement/index.json b/site/public/v1/software/scalable-inman-flash-replacement/index.json new file mode 100644 index 000000000000..81c691f7629e --- /dev/null +++ b/site/public/v1/software/scalable-inman-flash-replacement/index.json @@ -0,0 +1,21 @@ +{ + "id": 8812, + "slug": "scalable-inman-flash-replacement", + "name": "Scalable Inman Flash Replacement", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Adobe Flash" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1815212" + ], + "created_at": "2026-07-10T10:12:42.797422", + "updated_at": "2026-07-10T10:12:42.797422", + "url": "/v1/software/scalable-inman-flash-replacement" +} diff --git a/site/public/v1/software/scalapack/index.json b/site/public/v1/software/scalapack/index.json new file mode 100644 index 000000000000..8d9e6cbe8081 --- /dev/null +++ b/site/public/v1/software/scalapack/index.json @@ -0,0 +1,19 @@ +{ + "id": 8813, + "slug": "scalapack", + "name": "ScaLAPACK", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4049099" + ], + "created_at": "2026-07-10T10:12:42.797422", + "updated_at": "2026-07-10T10:12:42.797422", + "url": "/v1/software/scalapack" +} diff --git a/site/public/v1/software/scald/index.json b/site/public/v1/software/scald/index.json new file mode 100644 index 000000000000..14e1bc2c9224 --- /dev/null +++ b/site/public/v1/software/scald/index.json @@ -0,0 +1,19 @@ +{ + "id": 8814, + "slug": "scald", + "name": "SCALD", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7389058" + ], + "created_at": "2026-07-10T10:12:42.797422", + "updated_at": "2026-07-10T10:12:42.797422", + "url": "/v1/software/scald" +} diff --git a/site/public/v1/software/scalos/index.json b/site/public/v1/software/scalos/index.json new file mode 100644 index 000000000000..e0eaa5c772c7 --- /dev/null +++ b/site/public/v1/software/scalos/index.json @@ -0,0 +1,19 @@ +{ + "id": 8815, + "slug": "scalos", + "name": "Scalos", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7429808" + ], + "created_at": "2026-07-10T10:12:42.798454", + "updated_at": "2026-07-10T10:12:42.798454", + "url": "/v1/software/scalos" +} diff --git a/site/public/v1/software/scalpel/index.json b/site/public/v1/software/scalpel/index.json new file mode 100644 index 000000000000..eb74841a7bfa --- /dev/null +++ b/site/public/v1/software/scalpel/index.json @@ -0,0 +1,21 @@ +{ + "id": 8816, + "slug": "scalpel", + "name": "Scalpel", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Apache Software License 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127474964" + ], + "created_at": "2026-07-10T10:12:42.798454", + "updated_at": "2026-07-10T10:12:42.798454", + "url": "/v1/software/scalpel" +} diff --git a/site/public/v1/software/scamp/index.json b/site/public/v1/software/scamp/index.json new file mode 100644 index 000000000000..576f820a7a9b --- /dev/null +++ b/site/public/v1/software/scamp/index.json @@ -0,0 +1,19 @@ +{ + "id": 8817, + "slug": "scamp", + "name": "scamp", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62865849" + ], + "created_at": "2026-07-10T10:12:42.798454", + "updated_at": "2026-07-10T10:12:42.798454", + "url": "/v1/software/scamp" +} diff --git a/site/public/v1/software/scan/index.json b/site/public/v1/software/scan/index.json new file mode 100644 index 000000000000..1b74357fb93a --- /dev/null +++ b/site/public/v1/software/scan/index.json @@ -0,0 +1,19 @@ +{ + "id": 8818, + "slug": "scan", + "name": "SCAN", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084528" + ], + "created_at": "2026-07-10T10:12:42.799365", + "updated_at": "2026-07-10T10:12:42.799365", + "url": "/v1/software/scan" +} diff --git a/site/public/v1/software/scan2cad/index.json b/site/public/v1/software/scan2cad/index.json new file mode 100644 index 000000000000..5d10b14b877d --- /dev/null +++ b/site/public/v1/software/scan2cad/index.json @@ -0,0 +1,19 @@ +{ + "id": 8819, + "slug": "scan2cad", + "name": "Scan2CAD", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17141152" + ], + "created_at": "2026-07-10T10:12:42.799365", + "updated_at": "2026-07-10T10:12:42.799365", + "url": "/v1/software/scan2cad" +} diff --git a/site/public/v1/software/scanip/index.json b/site/public/v1/software/scanip/index.json new file mode 100644 index 000000000000..5c192ba1fb69 --- /dev/null +++ b/site/public/v1/software/scanip/index.json @@ -0,0 +1,21 @@ +{ + "id": 8820, + "slug": "scanip", + "name": "ScanIP", + "release_date": null, + "developers": [ + "Synopsys" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7429882" + ], + "created_at": "2026-07-10T10:12:42.800426", + "updated_at": "2026-07-10T10:12:42.800426", + "url": "/v1/software/scanip" +} diff --git a/site/public/v1/software/scanitto/index.json b/site/public/v1/software/scanitto/index.json new file mode 100644 index 000000000000..e6151182aaa2 --- /dev/null +++ b/site/public/v1/software/scanitto/index.json @@ -0,0 +1,21 @@ +{ + "id": 8821, + "slug": "scanitto", + "name": "Scanitto", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "shareware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q30644169" + ], + "created_at": "2026-07-10T10:12:42.800426", + "updated_at": "2026-07-10T10:12:42.800426", + "url": "/v1/software/scanitto" +} diff --git a/site/public/v1/software/scanlogd/index.json b/site/public/v1/software/scanlogd/index.json new file mode 100644 index 000000000000..1c4809c1b4e8 --- /dev/null +++ b/site/public/v1/software/scanlogd/index.json @@ -0,0 +1,21 @@ +{ + "id": 8822, + "slug": "scanlogd", + "name": "scanlogd", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Unix-like operating system" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106102057" + ], + "created_at": "2026-07-10T10:12:42.800426", + "updated_at": "2026-07-10T10:12:42.800426", + "url": "/v1/software/scanlogd" +} diff --git a/site/public/v1/software/scanmem/index.json b/site/public/v1/software/scanmem/index.json new file mode 100644 index 000000000000..ccde8e4a5a6b --- /dev/null +++ b/site/public/v1/software/scanmem/index.json @@ -0,0 +1,19 @@ +{ + "id": 8823, + "slug": "scanmem", + "name": "scanmem", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62865739" + ], + "created_at": "2026-07-10T10:12:42.800426", + "updated_at": "2026-07-10T10:12:42.800426", + "url": "/v1/software/scanmem" +} diff --git a/site/public/v1/software/scanner-for-zotero/index.json b/site/public/v1/software/scanner-for-zotero/index.json new file mode 100644 index 000000000000..cd389928b44b --- /dev/null +++ b/site/public/v1/software/scanner-for-zotero/index.json @@ -0,0 +1,19 @@ +{ + "id": 8824, + "slug": "scanner-for-zotero", + "name": "Scanner for Zotero", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084529" + ], + "created_at": "2026-07-10T10:12:42.801369", + "updated_at": "2026-07-10T10:12:42.801369", + "url": "/v1/software/scanner-for-zotero" +} diff --git a/site/public/v1/software/scanpy/index.json b/site/public/v1/software/scanpy/index.json new file mode 100644 index 000000000000..fc33834e258e --- /dev/null +++ b/site/public/v1/software/scanpy/index.json @@ -0,0 +1,21 @@ +{ + "id": 8825, + "slug": "scanpy", + "name": "Scanpy", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "3-clause BSD License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113089866" + ], + "created_at": "2026-07-10T10:12:42.801369", + "updated_at": "2026-07-10T10:12:42.801369", + "url": "/v1/software/scanpy" +} diff --git a/site/public/v1/software/scene-builder/index.json b/site/public/v1/software/scene-builder/index.json new file mode 100644 index 000000000000..a87cdb17d525 --- /dev/null +++ b/site/public/v1/software/scene-builder/index.json @@ -0,0 +1,19 @@ +{ + "id": 8826, + "slug": "scene-builder", + "name": "Scene Builder", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18746027" + ], + "created_at": "2026-07-10T10:12:42.802370", + "updated_at": "2026-07-10T10:12:42.802370", + "url": "/v1/software/scene-builder" +} diff --git a/site/public/v1/software/scene-generator/index.json b/site/public/v1/software/scene-generator/index.json new file mode 100644 index 000000000000..657525833d63 --- /dev/null +++ b/site/public/v1/software/scene-generator/index.json @@ -0,0 +1,19 @@ +{ + "id": 8827, + "slug": "scene-generator", + "name": "Scene Generator", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7430739" + ], + "created_at": "2026-07-10T10:12:42.802370", + "updated_at": "2026-07-10T10:12:42.802370", + "url": "/v1/software/scene-generator" +} diff --git a/site/public/v1/software/scharfenberg-smith-concordance-program/index.json b/site/public/v1/software/scharfenberg-smith-concordance-program/index.json new file mode 100644 index 000000000000..8573ff9eece9 --- /dev/null +++ b/site/public/v1/software/scharfenberg-smith-concordance-program/index.json @@ -0,0 +1,19 @@ +{ + "id": 8828, + "slug": "scharfenberg-smith-concordance-program", + "name": "Scharfenberg-Smith Concordance Program", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087710" + ], + "created_at": "2026-07-10T10:12:42.802370", + "updated_at": "2026-07-10T10:12:42.802370", + "url": "/v1/software/scharfenberg-smith-concordance-program" +} diff --git a/site/public/v1/software/schedtool/index.json b/site/public/v1/software/schedtool/index.json new file mode 100644 index 000000000000..1c0f6f21bedb --- /dev/null +++ b/site/public/v1/software/schedtool/index.json @@ -0,0 +1,19 @@ +{ + "id": 8829, + "slug": "schedtool", + "name": "schedtool", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62865726" + ], + "created_at": "2026-07-10T10:12:42.802370", + "updated_at": "2026-07-10T10:12:42.802370", + "url": "/v1/software/schedtool" +} diff --git a/site/public/v1/software/schedulereader/index.json b/site/public/v1/software/schedulereader/index.json new file mode 100644 index 000000000000..c9c421ff8a1a --- /dev/null +++ b/site/public/v1/software/schedulereader/index.json @@ -0,0 +1,19 @@ +{ + "id": 8830, + "slug": "schedulereader", + "name": "ScheduleReader", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138748395" + ], + "created_at": "2026-07-10T10:12:42.803375", + "updated_at": "2026-07-10T10:12:42.803375", + "url": "/v1/software/schedulereader" +} diff --git a/site/public/v1/software/scholar/index.json b/site/public/v1/software/scholar/index.json new file mode 100644 index 000000000000..cc3beb22c735 --- /dev/null +++ b/site/public/v1/software/scholar/index.json @@ -0,0 +1,21 @@ +{ + "id": 8831, + "slug": "scholar", + "name": "scholar", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Apache Software License 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110514832" + ], + "created_at": "2026-07-10T10:12:42.803375", + "updated_at": "2026-07-10T10:12:42.803375", + "url": "/v1/software/scholar" +} diff --git a/site/public/v1/software/scholarnet-ai/index.json b/site/public/v1/software/scholarnet-ai/index.json new file mode 100644 index 000000000000..8e584c8f1452 --- /dev/null +++ b/site/public/v1/software/scholarnet-ai/index.json @@ -0,0 +1,19 @@ +{ + "id": 8832, + "slug": "scholarnet-ai", + "name": "ScholarNet AI", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139856683" + ], + "created_at": "2026-07-10T10:12:42.804464", + "updated_at": "2026-07-10T10:12:42.804464", + "url": "/v1/software/scholarnet-ai" +} diff --git a/site/public/v1/software/scholarometer/index.json b/site/public/v1/software/scholarometer/index.json new file mode 100644 index 000000000000..9480c4f40da3 --- /dev/null +++ b/site/public/v1/software/scholarometer/index.json @@ -0,0 +1,19 @@ +{ + "id": 8833, + "slug": "scholarometer", + "name": "Scholarometer", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084530" + ], + "created_at": "2026-07-10T10:12:42.804464", + "updated_at": "2026-07-10T10:12:42.804464", + "url": "/v1/software/scholarometer" +} diff --git a/site/public/v1/software/school-information-management-system/index.json b/site/public/v1/software/school-information-management-system/index.json new file mode 100644 index 000000000000..577f5db3d45b --- /dev/null +++ b/site/public/v1/software/school-information-management-system/index.json @@ -0,0 +1,23 @@ +{ + "id": 8834, + "slug": "school-information-management-system", + "name": "School Information Management System", + "release_date": null, + "developers": [ + "Capita" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7432273" + ], + "created_at": "2026-07-10T10:12:42.804464", + "updated_at": "2026-07-10T10:12:42.804464", + "url": "/v1/software/school-information-management-system" +} diff --git a/site/public/v1/software/school-management-software-in-india/index.json b/site/public/v1/software/school-management-software-in-india/index.json new file mode 100644 index 000000000000..485586ec2d72 --- /dev/null +++ b/site/public/v1/software/school-management-software-in-india/index.json @@ -0,0 +1,19 @@ +{ + "id": 8835, + "slug": "school-management-software-in-india", + "name": "School management software in India", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140068392" + ], + "created_at": "2026-07-10T10:12:42.804464", + "updated_at": "2026-07-10T10:12:42.804464", + "url": "/v1/software/school-management-software-in-india" +} diff --git a/site/public/v1/software/schoolmanage/index.json b/site/public/v1/software/schoolmanage/index.json new file mode 100644 index 000000000000..21e937427f85 --- /dev/null +++ b/site/public/v1/software/schoolmanage/index.json @@ -0,0 +1,19 @@ +{ + "id": 8836, + "slug": "schoolmanage", + "name": "SchoolManage", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139882157" + ], + "created_at": "2026-07-10T10:12:42.805498", + "updated_at": "2026-07-10T10:12:42.805498", + "url": "/v1/software/schoolmanage" +} diff --git a/site/public/v1/software/schoolverify/index.json b/site/public/v1/software/schoolverify/index.json new file mode 100644 index 000000000000..589221ef1361 --- /dev/null +++ b/site/public/v1/software/schoolverify/index.json @@ -0,0 +1,21 @@ +{ + "id": 8837, + "slug": "schoolverify", + "name": "SchoolVerify", + "release_date": null, + "developers": [ + "SchoolVerify" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138858608" + ], + "created_at": "2026-07-10T10:12:42.805498", + "updated_at": "2026-07-10T10:12:42.805498", + "url": "/v1/software/schoolverify" +} diff --git a/site/public/v1/software/sci2-tool/index.json b/site/public/v1/software/sci2-tool/index.json new file mode 100644 index 000000000000..a862a51abcef --- /dev/null +++ b/site/public/v1/software/sci2-tool/index.json @@ -0,0 +1,19 @@ +{ + "id": 8838, + "slug": "sci2-tool", + "name": "Sci2 Tool", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084531" + ], + "created_at": "2026-07-10T10:12:42.805498", + "updated_at": "2026-07-10T10:12:42.805498", + "url": "/v1/software/sci2-tool" +} diff --git a/site/public/v1/software/scia-engineer/index.json b/site/public/v1/software/scia-engineer/index.json new file mode 100644 index 000000000000..a6e1d189acab --- /dev/null +++ b/site/public/v1/software/scia-engineer/index.json @@ -0,0 +1,19 @@ +{ + "id": 8839, + "slug": "scia-engineer", + "name": "SCIA Engineer", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q15885694" + ], + "created_at": "2026-07-10T10:12:42.806477", + "updated_at": "2026-07-10T10:12:42.806477", + "url": "/v1/software/scia-engineer" +} diff --git a/site/public/v1/software/scibox/index.json b/site/public/v1/software/scibox/index.json new file mode 100644 index 000000000000..35a24ed7ede6 --- /dev/null +++ b/site/public/v1/software/scibox/index.json @@ -0,0 +1,19 @@ +{ + "id": 8840, + "slug": "scibox", + "name": "SciBox", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137612302" + ], + "created_at": "2026-07-10T10:12:42.806477", + "updated_at": "2026-07-10T10:12:42.806477", + "url": "/v1/software/scibox" +} diff --git a/site/public/v1/software/scicast/index.json b/site/public/v1/software/scicast/index.json new file mode 100644 index 000000000000..1420a7007cf8 --- /dev/null +++ b/site/public/v1/software/scicast/index.json @@ -0,0 +1,21 @@ +{ + "id": 8841, + "slug": "scicast", + "name": "SciCast", + "release_date": null, + "developers": [ + "George Mason University" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18157839" + ], + "created_at": "2026-07-10T10:12:42.806477", + "updated_at": "2026-07-10T10:12:42.806477", + "url": "/v1/software/scicast" +} diff --git a/site/public/v1/software/science-stories/index.json b/site/public/v1/software/science-stories/index.json new file mode 100644 index 000000000000..45dbec9c1cee --- /dev/null +++ b/site/public/v1/software/science-stories/index.json @@ -0,0 +1,21 @@ +{ + "id": 8842, + "slug": "science-stories", + "name": "Science Stories", + "release_date": null, + "developers": [ + "Kenneth Seals-Nutt" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q55090238" + ], + "created_at": "2026-07-10T10:12:42.807501", + "updated_at": "2026-07-10T10:12:42.807501", + "url": "/v1/software/science-stories" +} diff --git a/site/public/v1/software/sciencesconf-org-a-ccsd-service/index.json b/site/public/v1/software/sciencesconf-org-a-ccsd-service/index.json new file mode 100644 index 000000000000..d756a5e58e1f --- /dev/null +++ b/site/public/v1/software/sciencesconf-org-a-ccsd-service/index.json @@ -0,0 +1,19 @@ +{ + "id": 8843, + "slug": "sciencesconf-org-a-ccsd-service", + "name": "SciencesConf.org, a CCSD service", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087711" + ], + "created_at": "2026-07-10T10:12:42.807501", + "updated_at": "2026-07-10T10:12:42.807501", + "url": "/v1/software/sciencesconf-org-a-ccsd-service" +} diff --git a/site/public/v1/software/scientific-notebook/index.json b/site/public/v1/software/scientific-notebook/index.json new file mode 100644 index 000000000000..58b9c3cdbcab --- /dev/null +++ b/site/public/v1/software/scientific-notebook/index.json @@ -0,0 +1,21 @@ +{ + "id": 8844, + "slug": "scientific-notebook", + "name": "Scientific Notebook", + "release_date": null, + "developers": [ + "MacKichan Software" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107511931" + ], + "created_at": "2026-07-10T10:12:42.807501", + "updated_at": "2026-07-10T10:12:42.807501", + "url": "/v1/software/scientific-notebook" +} diff --git a/site/public/v1/software/sciforma-psnext/index.json b/site/public/v1/software/sciforma-psnext/index.json new file mode 100644 index 000000000000..8f6ea4e2f4ce --- /dev/null +++ b/site/public/v1/software/sciforma-psnext/index.json @@ -0,0 +1,19 @@ +{ + "id": 8845, + "slug": "sciforma-psnext", + "name": "Sciforma PSNext", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3359863" + ], + "created_at": "2026-07-10T10:12:42.808480", + "updated_at": "2026-07-10T10:12:42.808480", + "url": "/v1/software/sciforma-psnext" +} diff --git a/site/public/v1/software/scim-uim/index.json b/site/public/v1/software/scim-uim/index.json new file mode 100644 index 000000000000..df42bcc41d51 --- /dev/null +++ b/site/public/v1/software/scim-uim/index.json @@ -0,0 +1,21 @@ +{ + "id": 8846, + "slug": "scim-uim", + "name": "scim-uim", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "GNU General Public License, version 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28465735" + ], + "created_at": "2026-07-10T10:12:42.808480", + "updated_at": "2026-07-10T10:12:42.808480", + "url": "/v1/software/scim-uim" +} diff --git a/site/public/v1/software/scimoredb/index.json b/site/public/v1/software/scimoredb/index.json new file mode 100644 index 000000000000..e95b0054e3c7 --- /dev/null +++ b/site/public/v1/software/scimoredb/index.json @@ -0,0 +1,19 @@ +{ + "id": 8847, + "slug": "scimoredb", + "name": "ScimoreDB", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7433912" + ], + "created_at": "2026-07-10T10:12:42.808480", + "updated_at": "2026-07-10T10:12:42.808480", + "url": "/v1/software/scimoredb" +} diff --git a/site/public/v1/software/sco-skunkware/index.json b/site/public/v1/software/sco-skunkware/index.json new file mode 100644 index 000000000000..e08846d2f254 --- /dev/null +++ b/site/public/v1/software/sco-skunkware/index.json @@ -0,0 +1,21 @@ +{ + "id": 8848, + "slug": "sco-skunkware", + "name": "SCO Skunkware", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Xenix" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17079595" + ], + "created_at": "2026-07-10T10:12:42.809441", + "updated_at": "2026-07-10T10:12:42.809441", + "url": "/v1/software/sco-skunkware" +} diff --git a/site/public/v1/software/scodoc/index.json b/site/public/v1/software/scodoc/index.json new file mode 100644 index 000000000000..865e6cb54f54 --- /dev/null +++ b/site/public/v1/software/scodoc/index.json @@ -0,0 +1,23 @@ +{ + "id": 8849, + "slug": "scodoc", + "name": "ScoDoc", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Python" + ], + "licenses": [ + "GNU General Public License, version 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131462478" + ], + "created_at": "2026-07-10T10:12:42.809441", + "updated_at": "2026-07-10T10:12:42.809441", + "url": "/v1/software/scodoc" +} diff --git a/site/public/v1/software/scons/index.json b/site/public/v1/software/scons/index.json new file mode 100644 index 000000000000..e7ffad8e4900 --- /dev/null +++ b/site/public/v1/software/scons/index.json @@ -0,0 +1,19 @@ +{ + "id": 8850, + "slug": "scons", + "name": "SCons++", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116924219" + ], + "created_at": "2026-07-10T10:12:42.809441", + "updated_at": "2026-07-10T10:12:42.809441", + "url": "/v1/software/scons" +} diff --git a/site/public/v1/software/scopearchiv/index.json b/site/public/v1/software/scopearchiv/index.json new file mode 100644 index 000000000000..05e895d95b36 --- /dev/null +++ b/site/public/v1/software/scopearchiv/index.json @@ -0,0 +1,23 @@ +{ + "id": 8851, + "slug": "scopearchiv", + "name": "ScopeArchiv", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2260520" + ], + "created_at": "2026-07-10T10:12:42.810465", + "updated_at": "2026-07-10T10:12:42.810465", + "url": "/v1/software/scopearchiv" +} diff --git a/site/public/v1/software/scopifyrom/index.json b/site/public/v1/software/scopifyrom/index.json new file mode 100644 index 000000000000..5484bbd568da --- /dev/null +++ b/site/public/v1/software/scopifyrom/index.json @@ -0,0 +1,19 @@ +{ + "id": 8852, + "slug": "scopifyrom", + "name": "ScopifyROM", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18215984" + ], + "created_at": "2026-07-10T10:12:42.810465", + "updated_at": "2026-07-10T10:12:42.810465", + "url": "/v1/software/scopifyrom" +} diff --git a/site/public/v1/software/score/index.json b/site/public/v1/software/score/index.json new file mode 100644 index 000000000000..93d52f6d59fe --- /dev/null +++ b/site/public/v1/software/score/index.json @@ -0,0 +1,19 @@ +{ + "id": 8853, + "slug": "score", + "name": "SCORE", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2260571" + ], + "created_at": "2026-07-10T10:12:42.810465", + "updated_at": "2026-07-10T10:12:42.810465", + "url": "/v1/software/score" +} diff --git a/site/public/v1/software/scorecloud/index.json b/site/public/v1/software/scorecloud/index.json new file mode 100644 index 000000000000..217710d2f9a2 --- /dev/null +++ b/site/public/v1/software/scorecloud/index.json @@ -0,0 +1,23 @@ +{ + "id": 8854, + "slug": "scorecloud", + "name": "Scorecloud", + "release_date": null, + "developers": [ + "Doremir Music Research AB" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [ + "music information retrieval" + ], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16980712" + ], + "created_at": "2026-07-10T10:12:42.810465", + "updated_at": "2026-07-10T10:12:42.810465", + "url": "/v1/software/scorecloud" +} diff --git a/site/public/v1/software/scoreloop/index.json b/site/public/v1/software/scoreloop/index.json new file mode 100644 index 000000000000..abb70487ea04 --- /dev/null +++ b/site/public/v1/software/scoreloop/index.json @@ -0,0 +1,19 @@ +{ + "id": 8855, + "slug": "scoreloop", + "name": "Scoreloop", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7435327" + ], + "created_at": "2026-07-10T10:12:42.811471", + "updated_at": "2026-07-10T10:12:42.811471", + "url": "/v1/software/scoreloop" +} diff --git a/site/public/v1/software/scos-2000/index.json b/site/public/v1/software/scos-2000/index.json new file mode 100644 index 000000000000..37fdf40557e1 --- /dev/null +++ b/site/public/v1/software/scos-2000/index.json @@ -0,0 +1,19 @@ +{ + "id": 8856, + "slug": "scos-2000", + "name": "SCOS 2000", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3459301" + ], + "created_at": "2026-07-10T10:12:42.811471", + "updated_at": "2026-07-10T10:12:42.811471", + "url": "/v1/software/scos-2000" +} diff --git a/site/public/v1/software/scour/index.json b/site/public/v1/software/scour/index.json new file mode 100644 index 000000000000..229a7ab21678 --- /dev/null +++ b/site/public/v1/software/scour/index.json @@ -0,0 +1,23 @@ +{ + "id": 8857, + "slug": "scour", + "name": "Scour", + "release_date": "2010-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Python" + ], + "licenses": [ + "Apache Software License 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137513370" + ], + "created_at": "2026-07-10T10:12:42.811471", + "updated_at": "2026-07-10T10:12:42.811471", + "url": "/v1/software/scour" +} diff --git a/site/public/v1/software/scout-by-agentco/index.json b/site/public/v1/software/scout-by-agentco/index.json new file mode 100644 index 000000000000..c4f494e25224 --- /dev/null +++ b/site/public/v1/software/scout-by-agentco/index.json @@ -0,0 +1,21 @@ +{ + "id": 8858, + "slug": "scout-by-agentco", + "name": "Scout by AgentCo", + "release_date": null, + "developers": [ + "AgentCo" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140041602" + ], + "created_at": "2026-07-10T10:12:42.812487", + "updated_at": "2026-07-10T10:12:42.812487", + "url": "/v1/software/scout-by-agentco" +} diff --git a/site/public/v1/software/scout/index.json b/site/public/v1/software/scout/index.json new file mode 100644 index 000000000000..c041ee46a214 --- /dev/null +++ b/site/public/v1/software/scout/index.json @@ -0,0 +1,23 @@ +{ + "id": 8859, + "slug": "scout", + "name": "Scout", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "macOS" + ], + "programming_languages": [], + "licenses": [ + "Apache Software License 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q75024761" + ], + "created_at": "2026-07-10T10:12:42.812487", + "updated_at": "2026-07-10T10:12:42.812487", + "url": "/v1/software/scout" +} diff --git a/site/public/v1/software/scrapy/index.json b/site/public/v1/software/scrapy/index.json new file mode 100644 index 000000000000..0dba3b3837b1 --- /dev/null +++ b/site/public/v1/software/scrapy/index.json @@ -0,0 +1,29 @@ +{ + "id": 8860, + "slug": "scrapy", + "name": "Scrapy", + "release_date": null, + "developers": [ + "Pablo Hoffman" + ], + "publishers": [], + "operating_systems": [ + "Berkeley Software Distribution", + "macOS", + "Microsoft Windows" + ], + "programming_languages": [ + "Python" + ], + "licenses": [ + "3-clause BSD License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q368367" + ], + "created_at": "2026-07-10T10:12:42.812487", + "updated_at": "2026-07-10T10:12:42.812487", + "url": "/v1/software/scrapy" +} diff --git a/site/public/v1/software/scratch-blocks/index.json b/site/public/v1/software/scratch-blocks/index.json new file mode 100644 index 000000000000..2086f777e48d --- /dev/null +++ b/site/public/v1/software/scratch-blocks/index.json @@ -0,0 +1,21 @@ +{ + "id": 8861, + "slug": "scratch-blocks", + "name": "scratch-blocks", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Apache Software License 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131417178" + ], + "created_at": "2026-07-10T10:12:42.812487", + "updated_at": "2026-07-10T10:12:42.812487", + "url": "/v1/software/scratch-blocks" +} diff --git a/site/public/v1/software/scratch-live/index.json b/site/public/v1/software/scratch-live/index.json new file mode 100644 index 000000000000..5a4874a1ab77 --- /dev/null +++ b/site/public/v1/software/scratch-live/index.json @@ -0,0 +1,19 @@ +{ + "id": 8862, + "slug": "scratch-live", + "name": "Scratch Live", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1648296" + ], + "created_at": "2026-07-10T10:12:42.813453", + "updated_at": "2026-07-10T10:12:42.813453", + "url": "/v1/software/scratch-live" +} diff --git a/site/public/v1/software/scratchpad/index.json b/site/public/v1/software/scratchpad/index.json new file mode 100644 index 000000000000..48cdf54d7de7 --- /dev/null +++ b/site/public/v1/software/scratchpad/index.json @@ -0,0 +1,19 @@ +{ + "id": 8863, + "slug": "scratchpad", + "name": "Scratchpad", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q26897149" + ], + "created_at": "2026-07-10T10:12:42.813453", + "updated_at": "2026-07-10T10:12:42.813453", + "url": "/v1/software/scratchpad" +} diff --git a/site/public/v1/software/scrcpy/index.json b/site/public/v1/software/scrcpy/index.json new file mode 100644 index 000000000000..3d14c49b1dad --- /dev/null +++ b/site/public/v1/software/scrcpy/index.json @@ -0,0 +1,26 @@ +{ + "id": 8864, + "slug": "scrcpy", + "name": "scrcpy", + "release_date": null, + "developers": [ + "Genymobile SAS" + ], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "Apache Software License 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q92566165" + ], + "created_at": "2026-07-10T10:12:42.813453", + "updated_at": "2026-07-10T10:12:42.813453", + "url": "/v1/software/scrcpy" +} diff --git a/site/public/v1/software/screamer-radio/index.json b/site/public/v1/software/screamer-radio/index.json new file mode 100644 index 000000000000..b26ff005b5a7 --- /dev/null +++ b/site/public/v1/software/screamer-radio/index.json @@ -0,0 +1,21 @@ +{ + "id": 8865, + "slug": "screamer-radio", + "name": "Screamer Radio", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3440849" + ], + "created_at": "2026-07-10T10:12:42.813453", + "updated_at": "2026-07-10T10:12:42.813453", + "url": "/v1/software/screamer-radio" +} diff --git a/site/public/v1/software/screen-sharing/index.json b/site/public/v1/software/screen-sharing/index.json new file mode 100644 index 000000000000..8d7d7efaa46c --- /dev/null +++ b/site/public/v1/software/screen-sharing/index.json @@ -0,0 +1,23 @@ +{ + "id": 8866, + "slug": "screen-sharing", + "name": "Screen Sharing", + "release_date": "2007-01-01", + "developers": [ + "Apple Inc." + ], + "publishers": [], + "operating_systems": [ + "Mac OS X Leopard" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7439014" + ], + "created_at": "2026-07-10T10:12:42.813453", + "updated_at": "2026-07-10T10:12:42.813453", + "url": "/v1/software/screen-sharing" +} diff --git a/site/public/v1/software/screen2exe/index.json b/site/public/v1/software/screen2exe/index.json new file mode 100644 index 000000000000..4397af845a85 --- /dev/null +++ b/site/public/v1/software/screen2exe/index.json @@ -0,0 +1,19 @@ +{ + "id": 8867, + "slug": "screen2exe", + "name": "Screen2EXE", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10852513" + ], + "created_at": "2026-07-10T10:12:42.814963", + "updated_at": "2026-07-10T10:12:42.814963", + "url": "/v1/software/screen2exe" +} diff --git a/site/public/v1/software/screencast-o-matic/index.json b/site/public/v1/software/screencast-o-matic/index.json new file mode 100644 index 000000000000..6f45dd57ae6e --- /dev/null +++ b/site/public/v1/software/screencast-o-matic/index.json @@ -0,0 +1,19 @@ +{ + "id": 8868, + "slug": "screencast-o-matic", + "name": "Screencast-o-matic", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084532" + ], + "created_at": "2026-07-10T10:12:42.814963", + "updated_at": "2026-07-10T10:12:42.814963", + "url": "/v1/software/screencast-o-matic" +} diff --git a/site/public/v1/software/screenconnect/index.json b/site/public/v1/software/screenconnect/index.json new file mode 100644 index 000000000000..6946e53f3358 --- /dev/null +++ b/site/public/v1/software/screenconnect/index.json @@ -0,0 +1,19 @@ +{ + "id": 8869, + "slug": "screenconnect", + "name": "ScreenConnect", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7438975" + ], + "created_at": "2026-07-10T10:12:42.814963", + "updated_at": "2026-07-10T10:12:42.814963", + "url": "/v1/software/screenconnect" +} diff --git a/site/public/v1/software/screenflick/index.json b/site/public/v1/software/screenflick/index.json new file mode 100644 index 000000000000..84a2187dad6c --- /dev/null +++ b/site/public/v1/software/screenflick/index.json @@ -0,0 +1,19 @@ +{ + "id": 8870, + "slug": "screenflick", + "name": "ScreenFlick", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084533" + ], + "created_at": "2026-07-10T10:12:42.815972", + "updated_at": "2026-07-10T10:12:42.815972", + "url": "/v1/software/screenflick" +} diff --git a/site/public/v1/software/screenflow/index.json b/site/public/v1/software/screenflow/index.json new file mode 100644 index 000000000000..e94d945ddc90 --- /dev/null +++ b/site/public/v1/software/screenflow/index.json @@ -0,0 +1,23 @@ +{ + "id": 8871, + "slug": "screenflow", + "name": "ScreenFlow", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "OS X Yosemite" + ], + "programming_languages": [ + "Objective-C" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3953069" + ], + "created_at": "2026-07-10T10:12:42.815972", + "updated_at": "2026-07-10T10:12:42.815972", + "url": "/v1/software/screenflow" +} diff --git a/site/public/v1/software/screenkey/index.json b/site/public/v1/software/screenkey/index.json new file mode 100644 index 000000000000..c65d8712c54c --- /dev/null +++ b/site/public/v1/software/screenkey/index.json @@ -0,0 +1,21 @@ +{ + "id": 8872, + "slug": "screenkey", + "name": "screenkey", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "GNU General Public License, version 3.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126901758" + ], + "created_at": "2026-07-10T10:12:42.815972", + "updated_at": "2026-07-10T10:12:42.815972", + "url": "/v1/software/screenkey" +} diff --git a/site/public/v1/software/screenpal/index.json b/site/public/v1/software/screenpal/index.json new file mode 100644 index 000000000000..5dc064bebee1 --- /dev/null +++ b/site/public/v1/software/screenpal/index.json @@ -0,0 +1,24 @@ +{ + "id": 8873, + "slug": "screenpal", + "name": "Screenpal", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "ChromeOS", + "iOS", + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125447659" + ], + "created_at": "2026-07-10T10:12:42.816974", + "updated_at": "2026-07-10T10:12:42.816974", + "url": "/v1/software/screenpal" +} diff --git a/site/public/v1/software/screenruler/index.json b/site/public/v1/software/screenruler/index.json new file mode 100644 index 000000000000..f181210709fa --- /dev/null +++ b/site/public/v1/software/screenruler/index.json @@ -0,0 +1,21 @@ +{ + "id": 8874, + "slug": "screenruler", + "name": "ScreenRuler", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "GNU General Public License, version 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11245703" + ], + "created_at": "2026-07-10T10:12:42.816974", + "updated_at": "2026-07-10T10:12:42.816974", + "url": "/v1/software/screenruler" +} diff --git a/site/public/v1/software/screenweaver/index.json b/site/public/v1/software/screenweaver/index.json new file mode 100644 index 000000000000..888e0acd55e0 --- /dev/null +++ b/site/public/v1/software/screenweaver/index.json @@ -0,0 +1,21 @@ +{ + "id": 8875, + "slug": "screenweaver", + "name": "ScreenWeaver", + "release_date": null, + "developers": [ + "Outerframe Studio" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139282223" + ], + "created_at": "2026-07-10T10:12:42.816974", + "updated_at": "2026-07-10T10:12:42.816974", + "url": "/v1/software/screenweaver" +} diff --git a/site/public/v1/software/scribe/index.json b/site/public/v1/software/scribe/index.json new file mode 100644 index 000000000000..485f3af92090 --- /dev/null +++ b/site/public/v1/software/scribe/index.json @@ -0,0 +1,21 @@ +{ + "id": 8876, + "slug": "scribe", + "name": "Scribe", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Apache License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7439148" + ], + "created_at": "2026-07-10T10:12:42.816974", + "updated_at": "2026-07-10T10:12:42.816974", + "url": "/v1/software/scribe" +} diff --git a/site/public/v1/software/scripped/index.json b/site/public/v1/software/scripped/index.json new file mode 100644 index 000000000000..2751545edb19 --- /dev/null +++ b/site/public/v1/software/scripped/index.json @@ -0,0 +1,21 @@ +{ + "id": 8877, + "slug": "scripped", + "name": "Scripped", + "release_date": "2008-01-01", + "developers": [ + "Scripped" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7439185" + ], + "created_at": "2026-07-10T10:12:42.817974", + "updated_at": "2026-07-10T10:12:42.817974", + "url": "/v1/software/scripped" +} diff --git a/site/public/v1/software/scripsit/index.json b/site/public/v1/software/scripsit/index.json new file mode 100644 index 000000000000..53a13becf9e0 --- /dev/null +++ b/site/public/v1/software/scripsit/index.json @@ -0,0 +1,21 @@ +{ + "id": 8878, + "slug": "scripsit", + "name": "Scripsit", + "release_date": "1978-01-01", + "developers": [ + "Tandy Corporation" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7439202" + ], + "created_at": "2026-07-10T10:12:42.817974", + "updated_at": "2026-07-10T10:12:42.817974", + "url": "/v1/software/scripsit" +} diff --git a/site/public/v1/software/script-debugger/index.json b/site/public/v1/software/script-debugger/index.json new file mode 100644 index 000000000000..2cef9c0eb7b6 --- /dev/null +++ b/site/public/v1/software/script-debugger/index.json @@ -0,0 +1,23 @@ +{ + "id": 8879, + "slug": "script-debugger", + "name": "Script Debugger", + "release_date": null, + "developers": [ + "Late Night Software" + ], + "publishers": [], + "operating_systems": [ + "macOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7439211" + ], + "created_at": "2026-07-10T10:12:42.817974", + "updated_at": "2026-07-10T10:12:42.817974", + "url": "/v1/software/script-debugger" +} diff --git a/site/public/v1/software/scriptcase/index.json b/site/public/v1/software/scriptcase/index.json new file mode 100644 index 000000000000..3beaf16f2418 --- /dev/null +++ b/site/public/v1/software/scriptcase/index.json @@ -0,0 +1,19 @@ +{ + "id": 8880, + "slug": "scriptcase", + "name": "Scriptcase", + "release_date": "2000-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7439228" + ], + "created_at": "2026-07-10T10:12:42.818975", + "updated_at": "2026-07-10T10:12:42.818975", + "url": "/v1/software/scriptcase" +} diff --git a/site/public/v1/software/scripting-layer-for-android/index.json b/site/public/v1/software/scripting-layer-for-android/index.json new file mode 100644 index 000000000000..88293d203bac --- /dev/null +++ b/site/public/v1/software/scripting-layer-for-android/index.json @@ -0,0 +1,21 @@ +{ + "id": 8881, + "slug": "scripting-layer-for-android", + "name": "Scripting Layer for Android", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Apache License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4048791" + ], + "created_at": "2026-07-10T10:12:42.818975", + "updated_at": "2026-07-10T10:12:42.818975", + "url": "/v1/software/scripting-layer-for-android" +} diff --git a/site/public/v1/software/scripto/index.json b/site/public/v1/software/scripto/index.json new file mode 100644 index 000000000000..fd4087fb4094 --- /dev/null +++ b/site/public/v1/software/scripto/index.json @@ -0,0 +1,19 @@ +{ + "id": 8882, + "slug": "scripto", + "name": "Scripto", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084534" + ], + "created_at": "2026-07-10T10:12:42.818975", + "updated_at": "2026-07-10T10:12:42.818975", + "url": "/v1/software/scripto" +} diff --git a/site/public/v1/software/scriptware/index.json b/site/public/v1/software/scriptware/index.json new file mode 100644 index 000000000000..80b0e8d62059 --- /dev/null +++ b/site/public/v1/software/scriptware/index.json @@ -0,0 +1,19 @@ +{ + "id": 8883, + "slug": "scriptware", + "name": "Scriptware", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q59630807" + ], + "created_at": "2026-07-10T10:12:42.819975", + "updated_at": "2026-07-10T10:12:42.819975", + "url": "/v1/software/scriptware" +} diff --git a/site/public/v1/software/scrivener/index.json b/site/public/v1/software/scrivener/index.json new file mode 100644 index 000000000000..4c73be90ceea --- /dev/null +++ b/site/public/v1/software/scrivener/index.json @@ -0,0 +1,25 @@ +{ + "id": 8884, + "slug": "scrivener", + "name": "Scrivener", + "release_date": "2007-01-20", + "developers": [], + "publishers": [], + "operating_systems": [ + "macOS", + "iOS", + "Microsoft Windows" + ], + "programming_languages": [ + "Java" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3476481" + ], + "created_at": "2026-07-10T10:12:42.819975", + "updated_at": "2026-07-10T10:12:42.819975", + "url": "/v1/software/scrivener" +} diff --git a/site/public/v1/software/scrollback/index.json b/site/public/v1/software/scrollback/index.json new file mode 100644 index 000000000000..6d5f94e8d9eb --- /dev/null +++ b/site/public/v1/software/scrollback/index.json @@ -0,0 +1,19 @@ +{ + "id": 8885, + "slug": "scrollback", + "name": "Scrollback", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18015046" + ], + "created_at": "2026-07-10T10:12:42.819975", + "updated_at": "2026-07-10T10:12:42.819975", + "url": "/v1/software/scrollback" +} diff --git a/site/public/v1/software/scrolling-game-development-kit/index.json b/site/public/v1/software/scrolling-game-development-kit/index.json new file mode 100644 index 000000000000..2fc06220c88e --- /dev/null +++ b/site/public/v1/software/scrolling-game-development-kit/index.json @@ -0,0 +1,19 @@ +{ + "id": 8886, + "slug": "scrolling-game-development-kit", + "name": "Scrolling Game Development Kit", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7439283" + ], + "created_at": "2026-07-10T10:12:42.819975", + "updated_at": "2026-07-10T10:12:42.819975", + "url": "/v1/software/scrolling-game-development-kit" +} diff --git a/site/public/v1/software/scrollkeeper/index.json b/site/public/v1/software/scrollkeeper/index.json new file mode 100644 index 000000000000..bbed02224b68 --- /dev/null +++ b/site/public/v1/software/scrollkeeper/index.json @@ -0,0 +1,19 @@ +{ + "id": 8887, + "slug": "scrollkeeper", + "name": "ScrollKeeper", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4049191" + ], + "created_at": "2026-07-10T10:12:42.821048", + "updated_at": "2026-07-10T10:12:42.821048", + "url": "/v1/software/scrollkeeper" +} diff --git a/site/public/v1/software/scruff/index.json b/site/public/v1/software/scruff/index.json new file mode 100644 index 000000000000..27c5cdb902d9 --- /dev/null +++ b/site/public/v1/software/scruff/index.json @@ -0,0 +1,21 @@ +{ + "id": 8888, + "slug": "scruff", + "name": "Scruff", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "iOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q21041353" + ], + "created_at": "2026-07-10T10:12:42.821048", + "updated_at": "2026-07-10T10:12:42.821048", + "url": "/v1/software/scruff" +} diff --git a/site/public/v1/software/scrumedge/index.json b/site/public/v1/software/scrumedge/index.json new file mode 100644 index 000000000000..178843a95f88 --- /dev/null +++ b/site/public/v1/software/scrumedge/index.json @@ -0,0 +1,21 @@ +{ + "id": 8889, + "slug": "scrumedge", + "name": "Scrumedge", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "PHP" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7439345" + ], + "created_at": "2026-07-10T10:12:42.821048", + "updated_at": "2026-07-10T10:12:42.821048", + "url": "/v1/software/scrumedge" +} diff --git a/site/public/v1/software/scwm/index.json b/site/public/v1/software/scwm/index.json new file mode 100644 index 000000000000..d869ea9639b7 --- /dev/null +++ b/site/public/v1/software/scwm/index.json @@ -0,0 +1,19 @@ +{ + "id": 8890, + "slug": "scwm", + "name": "Scwm", + "release_date": "1997-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7439634" + ], + "created_at": "2026-07-10T10:12:42.822075", + "updated_at": "2026-07-10T10:12:42.822075", + "url": "/v1/software/scwm" +} diff --git a/site/public/v1/software/scwrl4/index.json b/site/public/v1/software/scwrl4/index.json new file mode 100644 index 000000000000..81ea554df00e --- /dev/null +++ b/site/public/v1/software/scwrl4/index.json @@ -0,0 +1,19 @@ +{ + "id": 8891, + "slug": "scwrl4", + "name": "SCWRL4", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q114840881" + ], + "created_at": "2026-07-10T10:12:42.822075", + "updated_at": "2026-07-10T10:12:42.822075", + "url": "/v1/software/scwrl4" +} diff --git a/site/public/v1/software/sdc-scissor/index.json b/site/public/v1/software/sdc-scissor/index.json new file mode 100644 index 000000000000..035a6f26aed5 --- /dev/null +++ b/site/public/v1/software/sdc-scissor/index.json @@ -0,0 +1,19 @@ +{ + "id": 8892, + "slug": "sdc-scissor", + "name": "sdc-scissor", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127474643" + ], + "created_at": "2026-07-10T10:12:42.822075", + "updated_at": "2026-07-10T10:12:42.822075", + "url": "/v1/software/sdc-scissor" +} diff --git a/site/public/v1/software/sdc/index.json b/site/public/v1/software/sdc/index.json new file mode 100644 index 000000000000..8ea6fa0fa8cc --- /dev/null +++ b/site/public/v1/software/sdc/index.json @@ -0,0 +1,21 @@ +{ + "id": 8893, + "slug": "sdc", + "name": "SDC", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "GNU General Public License, version 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10852697" + ], + "created_at": "2026-07-10T10:12:42.823063", + "updated_at": "2026-07-10T10:12:42.823063", + "url": "/v1/software/sdc" +} diff --git a/site/public/v1/software/sdet/index.json b/site/public/v1/software/sdet/index.json new file mode 100644 index 000000000000..551e53b2be9e --- /dev/null +++ b/site/public/v1/software/sdet/index.json @@ -0,0 +1,19 @@ +{ + "id": 8894, + "slug": "sdet", + "name": "SDET", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7389428" + ], + "created_at": "2026-07-10T10:12:42.823063", + "updated_at": "2026-07-10T10:12:42.823063", + "url": "/v1/software/sdet" +} diff --git a/site/public/v1/software/sdf-toolkit/index.json b/site/public/v1/software/sdf-toolkit/index.json new file mode 100644 index 000000000000..ef5d6cbbcb5c --- /dev/null +++ b/site/public/v1/software/sdf-toolkit/index.json @@ -0,0 +1,23 @@ +{ + "id": 8895, + "slug": "sdf-toolkit", + "name": "SDF Toolkit", + "release_date": null, + "developers": [], + "publishers": [ + "National Cancer Institute" + ], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "BSD licenses" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123359790" + ], + "created_at": "2026-07-10T10:12:42.823063", + "updated_at": "2026-07-10T10:12:42.823063", + "url": "/v1/software/sdf-toolkit" +} diff --git a/site/public/v1/software/sdi-tools/index.json b/site/public/v1/software/sdi-tools/index.json new file mode 100644 index 000000000000..6d2a431af052 --- /dev/null +++ b/site/public/v1/software/sdi-tools/index.json @@ -0,0 +1,19 @@ +{ + "id": 8896, + "slug": "sdi-tools", + "name": "SDI Tools", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7389455" + ], + "created_at": "2026-07-10T10:12:42.824048", + "updated_at": "2026-07-10T10:12:42.824048", + "url": "/v1/software/sdi-tools" +} diff --git a/site/public/v1/software/sdl-multiterm/index.json b/site/public/v1/software/sdl-multiterm/index.json new file mode 100644 index 000000000000..93cb8e75a51a --- /dev/null +++ b/site/public/v1/software/sdl-multiterm/index.json @@ -0,0 +1,21 @@ +{ + "id": 8897, + "slug": "sdl-multiterm", + "name": "SDL MultiTerm", + "release_date": null, + "developers": [ + "Trados Studio" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7389462" + ], + "created_at": "2026-07-10T10:12:42.824048", + "updated_at": "2026-07-10T10:12:42.824048", + "url": "/v1/software/sdl-multiterm" +} diff --git a/site/public/v1/software/sdlmame/index.json b/site/public/v1/software/sdlmame/index.json new file mode 100644 index 000000000000..1915c7e0d2de --- /dev/null +++ b/site/public/v1/software/sdlmame/index.json @@ -0,0 +1,19 @@ +{ + "id": 8898, + "slug": "sdlmame", + "name": "SDLMAME", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10865336" + ], + "created_at": "2026-07-10T10:12:42.824048", + "updated_at": "2026-07-10T10:12:42.824048", + "url": "/v1/software/sdlmame" +} diff --git a/site/public/v1/software/sdlpop/index.json b/site/public/v1/software/sdlpop/index.json new file mode 100644 index 000000000000..603ca68eeef4 --- /dev/null +++ b/site/public/v1/software/sdlpop/index.json @@ -0,0 +1,19 @@ +{ + "id": 8899, + "slug": "sdlpop", + "name": "sdlpop", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q59771322" + ], + "created_at": "2026-07-10T10:12:42.825043", + "updated_at": "2026-07-10T10:12:42.825043", + "url": "/v1/software/sdlpop" +} diff --git a/site/public/v1/software/sdparm/index.json b/site/public/v1/software/sdparm/index.json new file mode 100644 index 000000000000..5c190bedf891 --- /dev/null +++ b/site/public/v1/software/sdparm/index.json @@ -0,0 +1,19 @@ +{ + "id": 8900, + "slug": "sdparm", + "name": "sdparm", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62865637" + ], + "created_at": "2026-07-10T10:12:42.825043", + "updated_at": "2026-07-10T10:12:42.825043", + "url": "/v1/software/sdparm" +} diff --git a/site/public/v1/software/sdr/index.json b/site/public/v1/software/sdr/index.json new file mode 100644 index 000000000000..912f32b88288 --- /dev/null +++ b/site/public/v1/software/sdr/index.json @@ -0,0 +1,21 @@ +{ + "id": 8901, + "slug": "sdr", + "name": "SDR++", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "GNU General Public License, version 3.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125491154" + ], + "created_at": "2026-07-10T10:12:42.825043", + "updated_at": "2026-07-10T10:12:42.825043", + "url": "/v1/software/sdr" +} diff --git a/site/public/v1/software/sdrsharp/index.json b/site/public/v1/software/sdrsharp/index.json new file mode 100644 index 000000000000..b5c036e920a6 --- /dev/null +++ b/site/public/v1/software/sdrsharp/index.json @@ -0,0 +1,19 @@ +{ + "id": 8902, + "slug": "sdrsharp", + "name": "SDRSharp", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120493611" + ], + "created_at": "2026-07-10T10:12:42.826054", + "updated_at": "2026-07-10T10:12:42.826054", + "url": "/v1/software/sdrsharp" +} diff --git a/site/public/v1/software/sdsf/index.json b/site/public/v1/software/sdsf/index.json new file mode 100644 index 000000000000..b0182c9a094a --- /dev/null +++ b/site/public/v1/software/sdsf/index.json @@ -0,0 +1,19 @@ +{ + "id": 8903, + "slug": "sdsf", + "name": "SDSF", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3509102" + ], + "created_at": "2026-07-10T10:12:42.826054", + "updated_at": "2026-07-10T10:12:42.826054", + "url": "/v1/software/sdsf" +} diff --git a/site/public/v1/software/seadas/index.json b/site/public/v1/software/seadas/index.json new file mode 100644 index 000000000000..a2dc33765b65 --- /dev/null +++ b/site/public/v1/software/seadas/index.json @@ -0,0 +1,19 @@ +{ + "id": 8904, + "slug": "seadas", + "name": "SeaDAS", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117779298" + ], + "created_at": "2026-07-10T10:12:42.826054", + "updated_at": "2026-07-10T10:12:42.826054", + "url": "/v1/software/seadas" +} diff --git a/site/public/v1/software/seadragon-software/index.json b/site/public/v1/software/seadragon-software/index.json new file mode 100644 index 000000000000..eda7119b9551 --- /dev/null +++ b/site/public/v1/software/seadragon-software/index.json @@ -0,0 +1,19 @@ +{ + "id": 8905, + "slug": "seadragon-software", + "name": "Seadragon Software", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7440317" + ], + "created_at": "2026-07-10T10:12:42.827087", + "updated_at": "2026-07-10T10:12:42.827087", + "url": "/v1/software/seadragon-software" +} diff --git a/site/public/v1/software/seamspace/index.json b/site/public/v1/software/seamspace/index.json new file mode 100644 index 000000000000..874f6b1c0383 --- /dev/null +++ b/site/public/v1/software/seamspace/index.json @@ -0,0 +1,21 @@ +{ + "id": 8906, + "slug": "seamspace", + "name": "Seamspace", + "release_date": null, + "developers": [ + "Tebahsoft, Inc." + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139577507" + ], + "created_at": "2026-07-10T10:12:42.827087", + "updated_at": "2026-07-10T10:12:42.827087", + "url": "/v1/software/seamspace" +} diff --git a/site/public/v1/software/search-x/index.json b/site/public/v1/software/search-x/index.json new file mode 100644 index 000000000000..07f2253026e0 --- /dev/null +++ b/site/public/v1/software/search-x/index.json @@ -0,0 +1,19 @@ +{ + "id": 8907, + "slug": "search-x", + "name": "SEARCH X", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11306192" + ], + "created_at": "2026-07-10T10:12:42.827087", + "updated_at": "2026-07-10T10:12:42.827087", + "url": "/v1/software/search-x" +} diff --git a/site/public/v1/software/searchdaimon/index.json b/site/public/v1/software/searchdaimon/index.json new file mode 100644 index 000000000000..f95d7dc41cfa --- /dev/null +++ b/site/public/v1/software/searchdaimon/index.json @@ -0,0 +1,19 @@ +{ + "id": 8908, + "slug": "searchdaimon", + "name": "Searchdaimon", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7441692" + ], + "created_at": "2026-07-10T10:12:42.828066", + "updated_at": "2026-07-10T10:12:42.828066", + "url": "/v1/software/searchdaimon" +} diff --git a/site/public/v1/software/searchlight-bbs/index.json b/site/public/v1/software/searchlight-bbs/index.json new file mode 100644 index 000000000000..9e9437cfb8d8 --- /dev/null +++ b/site/public/v1/software/searchlight-bbs/index.json @@ -0,0 +1,19 @@ +{ + "id": 8909, + "slug": "searchlight-bbs", + "name": "Searchlight BBS", + "release_date": "1985-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7441733" + ], + "created_at": "2026-07-10T10:12:42.828066", + "updated_at": "2026-07-10T10:12:42.828066", + "url": "/v1/software/searchlight-bbs" +} diff --git a/site/public/v1/software/searchmedica/index.json b/site/public/v1/software/searchmedica/index.json new file mode 100644 index 000000000000..f6c1daa488be --- /dev/null +++ b/site/public/v1/software/searchmedica/index.json @@ -0,0 +1,21 @@ +{ + "id": 8910, + "slug": "searchmedica", + "name": "Searchmedica", + "release_date": "2006-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7441740" + ], + "created_at": "2026-07-10T10:12:42.829057", + "updated_at": "2026-07-10T10:12:42.829057", + "url": "/v1/software/searchmedica" +} diff --git a/site/public/v1/software/searchscore/index.json b/site/public/v1/software/searchscore/index.json new file mode 100644 index 000000000000..8343140b15aa --- /dev/null +++ b/site/public/v1/software/searchscore/index.json @@ -0,0 +1,19 @@ +{ + "id": 8911, + "slug": "searchscore", + "name": "SearchScore", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138646026" + ], + "created_at": "2026-07-10T10:12:42.829057", + "updated_at": "2026-07-10T10:12:42.829057", + "url": "/v1/software/searchscore" +} diff --git a/site/public/v1/software/seasonal-attribution-project/index.json b/site/public/v1/software/seasonal-attribution-project/index.json new file mode 100644 index 000000000000..134827b56521 --- /dev/null +++ b/site/public/v1/software/seasonal-attribution-project/index.json @@ -0,0 +1,19 @@ +{ + "id": 8912, + "slug": "seasonal-attribution-project", + "name": "Seasonal Attribution Project", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7441909" + ], + "created_at": "2026-07-10T10:12:42.829057", + "updated_at": "2026-07-10T10:12:42.829057", + "url": "/v1/software/seasonal-attribution-project" +} diff --git a/site/public/v1/software/seasr-date-entities-to-simile-timeline/index.json b/site/public/v1/software/seasr-date-entities-to-simile-timeline/index.json new file mode 100644 index 000000000000..5ed97fd9bc29 --- /dev/null +++ b/site/public/v1/software/seasr-date-entities-to-simile-timeline/index.json @@ -0,0 +1,19 @@ +{ + "id": 8913, + "slug": "seasr-date-entities-to-simile-timeline", + "name": "SEASR: Date Entities to Simile Timeline", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084538" + ], + "created_at": "2026-07-10T10:12:42.830021", + "updated_at": "2026-07-10T10:12:42.830021", + "url": "/v1/software/seasr-date-entities-to-simile-timeline" +} diff --git a/site/public/v1/software/seasr-flesch-kincaid-readability-test/index.json b/site/public/v1/software/seasr-flesch-kincaid-readability-test/index.json new file mode 100644 index 000000000000..645025c53e0f --- /dev/null +++ b/site/public/v1/software/seasr-flesch-kincaid-readability-test/index.json @@ -0,0 +1,19 @@ +{ + "id": 8914, + "slug": "seasr-flesch-kincaid-readability-test", + "name": "SEASR: Flesch-Kincaid Readability Test", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087713" + ], + "created_at": "2026-07-10T10:12:42.830021", + "updated_at": "2026-07-10T10:12:42.830021", + "url": "/v1/software/seasr-flesch-kincaid-readability-test" +} diff --git a/site/public/v1/software/seasr-location-entities-to-google-map/index.json b/site/public/v1/software/seasr-location-entities-to-google-map/index.json new file mode 100644 index 000000000000..ad8e447acdc5 --- /dev/null +++ b/site/public/v1/software/seasr-location-entities-to-google-map/index.json @@ -0,0 +1,19 @@ +{ + "id": 8915, + "slug": "seasr-location-entities-to-google-map", + "name": "SEASR: Location Entities To Google Map", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084539" + ], + "created_at": "2026-07-10T10:12:42.830021", + "updated_at": "2026-07-10T10:12:42.830021", + "url": "/v1/software/seasr-location-entities-to-google-map" +} diff --git a/site/public/v1/software/seasr-ngram-tag-cloud-viewer/index.json b/site/public/v1/software/seasr-ngram-tag-cloud-viewer/index.json new file mode 100644 index 000000000000..afb6ccfb94f7 --- /dev/null +++ b/site/public/v1/software/seasr-ngram-tag-cloud-viewer/index.json @@ -0,0 +1,19 @@ +{ + "id": 8916, + "slug": "seasr-ngram-tag-cloud-viewer", + "name": "SEASR: NGram Tag Cloud Viewer", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084540" + ], + "created_at": "2026-07-10T10:12:42.831082", + "updated_at": "2026-07-10T10:12:42.831082", + "url": "/v1/software/seasr-ngram-tag-cloud-viewer" +} diff --git a/site/public/v1/software/seasr-tag-cloud-viewer-with-stemming/index.json b/site/public/v1/software/seasr-tag-cloud-viewer-with-stemming/index.json new file mode 100644 index 000000000000..1b064331cc5b --- /dev/null +++ b/site/public/v1/software/seasr-tag-cloud-viewer-with-stemming/index.json @@ -0,0 +1,19 @@ +{ + "id": 8917, + "slug": "seasr-tag-cloud-viewer-with-stemming", + "name": "SEASR: Tag Cloud Viewer With Stemming", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084541" + ], + "created_at": "2026-07-10T10:12:42.831082", + "updated_at": "2026-07-10T10:12:42.831082", + "url": "/v1/software/seasr-tag-cloud-viewer-with-stemming" +} diff --git a/site/public/v1/software/seasr/index.json b/site/public/v1/software/seasr/index.json new file mode 100644 index 000000000000..180dc3ae440a --- /dev/null +++ b/site/public/v1/software/seasr/index.json @@ -0,0 +1,19 @@ +{ + "id": 8918, + "slug": "seasr", + "name": "SEASR", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084536" + ], + "created_at": "2026-07-10T10:12:42.831082", + "updated_at": "2026-07-10T10:12:42.831082", + "url": "/v1/software/seasr" +} diff --git a/site/public/v1/software/seatable/index.json b/site/public/v1/software/seatable/index.json new file mode 100644 index 000000000000..658427ca2a36 --- /dev/null +++ b/site/public/v1/software/seatable/index.json @@ -0,0 +1,19 @@ +{ + "id": 8919, + "slug": "seatable", + "name": "SeaTable", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113994630" + ], + "created_at": "2026-07-10T10:12:42.832066", + "updated_at": "2026-07-10T10:12:42.832066", + "url": "/v1/software/seatable" +} diff --git a/site/public/v1/software/seatd/index.json b/site/public/v1/software/seatd/index.json new file mode 100644 index 000000000000..f351c2989942 --- /dev/null +++ b/site/public/v1/software/seatd/index.json @@ -0,0 +1,21 @@ +{ + "id": 8920, + "slug": "seatd", + "name": "seatd", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121694194" + ], + "created_at": "2026-07-10T10:12:42.832066", + "updated_at": "2026-07-10T10:12:42.832066", + "url": "/v1/software/seatd" +} diff --git a/site/public/v1/software/seatools/index.json b/site/public/v1/software/seatools/index.json new file mode 100644 index 000000000000..e0dedd2477bf --- /dev/null +++ b/site/public/v1/software/seatools/index.json @@ -0,0 +1,21 @@ +{ + "id": 8921, + "slug": "seatools", + "name": "SeaTools", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7439824" + ], + "created_at": "2026-07-10T10:12:42.832066", + "updated_at": "2026-07-10T10:12:42.832066", + "url": "/v1/software/seatools" +} diff --git a/site/public/v1/software/seavus-project-viewer/index.json b/site/public/v1/software/seavus-project-viewer/index.json new file mode 100644 index 000000000000..64efffe87457 --- /dev/null +++ b/site/public/v1/software/seavus-project-viewer/index.json @@ -0,0 +1,19 @@ +{ + "id": 8922, + "slug": "seavus-project-viewer", + "name": "Seavus Project Viewer", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q20712153" + ], + "created_at": "2026-07-10T10:12:42.833051", + "updated_at": "2026-07-10T10:12:42.833051", + "url": "/v1/software/seavus-project-viewer" +} diff --git a/site/public/v1/software/sebs/index.json b/site/public/v1/software/sebs/index.json new file mode 100644 index 000000000000..531ac7a9bd11 --- /dev/null +++ b/site/public/v1/software/sebs/index.json @@ -0,0 +1,19 @@ +{ + "id": 8923, + "slug": "sebs", + "name": "Sebs", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10664976" + ], + "created_at": "2026-07-10T10:12:42.833051", + "updated_at": "2026-07-10T10:12:42.833051", + "url": "/v1/software/sebs" +} diff --git a/site/public/v1/software/secanda-digital-campus/index.json b/site/public/v1/software/secanda-digital-campus/index.json new file mode 100644 index 000000000000..a5492d4d60d1 --- /dev/null +++ b/site/public/v1/software/secanda-digital-campus/index.json @@ -0,0 +1,21 @@ +{ + "id": 8924, + "slug": "secanda-digital-campus", + "name": "SECANDA DIGITAL CAMPUS", + "release_date": null, + "developers": [ + "SECANDA Systems AG" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137322898" + ], + "created_at": "2026-07-10T10:12:42.833051", + "updated_at": "2026-07-10T10:12:42.833051", + "url": "/v1/software/secanda-digital-campus" +} diff --git a/site/public/v1/software/secilc/index.json b/site/public/v1/software/secilc/index.json new file mode 100644 index 000000000000..0bb1355883d5 --- /dev/null +++ b/site/public/v1/software/secilc/index.json @@ -0,0 +1,19 @@ +{ + "id": 8925, + "slug": "secilc", + "name": "secilc", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975443" + ], + "created_at": "2026-07-10T10:12:42.834057", + "updated_at": "2026-07-10T10:12:42.834057", + "url": "/v1/software/secilc" +} diff --git a/site/public/v1/software/second-life/index.json b/site/public/v1/software/second-life/index.json new file mode 100644 index 000000000000..8c311d94da12 --- /dev/null +++ b/site/public/v1/software/second-life/index.json @@ -0,0 +1,19 @@ +{ + "id": 8926, + "slug": "second-life", + "name": "Second Life", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087714" + ], + "created_at": "2026-07-10T10:12:42.834057", + "updated_at": "2026-07-10T10:12:42.834057", + "url": "/v1/software/second-life" +} diff --git a/site/public/v1/software/secretnote/index.json b/site/public/v1/software/secretnote/index.json new file mode 100644 index 000000000000..bedcfef2a9d9 --- /dev/null +++ b/site/public/v1/software/secretnote/index.json @@ -0,0 +1,19 @@ +{ + "id": 8927, + "slug": "secretnote", + "name": "SecretNote", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140051810" + ], + "created_at": "2026-07-10T10:12:42.834057", + "updated_at": "2026-07-10T10:12:42.834057", + "url": "/v1/software/secretnote" +} diff --git a/site/public/v1/software/secunia-personal-software-inspector/index.json b/site/public/v1/software/secunia-personal-software-inspector/index.json new file mode 100644 index 000000000000..445441994c8b --- /dev/null +++ b/site/public/v1/software/secunia-personal-software-inspector/index.json @@ -0,0 +1,19 @@ +{ + "id": 8928, + "slug": "secunia-personal-software-inspector", + "name": "Secunia Personal Software Inspector", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3477558" + ], + "created_at": "2026-07-10T10:12:42.835061", + "updated_at": "2026-07-10T10:12:42.835061", + "url": "/v1/software/secunia-personal-software-inspector" +} diff --git a/site/public/v1/software/secure-coding/index.json b/site/public/v1/software/secure-coding/index.json new file mode 100644 index 000000000000..8c046c50921a --- /dev/null +++ b/site/public/v1/software/secure-coding/index.json @@ -0,0 +1,19 @@ +{ + "id": 8929, + "slug": "secure-coding", + "name": "secure coding", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7444867" + ], + "created_at": "2026-07-10T10:12:42.835061", + "updated_at": "2026-07-10T10:12:42.835061", + "url": "/v1/software/secure-coding" +} diff --git a/site/public/v1/software/secure-dti/index.json b/site/public/v1/software/secure-dti/index.json new file mode 100644 index 000000000000..8ec551911db5 --- /dev/null +++ b/site/public/v1/software/secure-dti/index.json @@ -0,0 +1,23 @@ +{ + "id": 8930, + "slug": "secure-dti", + "name": "Secure DTI", + "release_date": null, + "developers": [ + "Bonnie Berger" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Creative Commons Attribution-NonCommercial 4.0 International" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q58171430" + ], + "created_at": "2026-07-10T10:12:42.835061", + "updated_at": "2026-07-10T10:12:42.835061", + "url": "/v1/software/secure-dti" +} diff --git a/site/public/v1/software/secure-eraser/index.json b/site/public/v1/software/secure-eraser/index.json new file mode 100644 index 000000000000..9e2dca1b714c --- /dev/null +++ b/site/public/v1/software/secure-eraser/index.json @@ -0,0 +1,21 @@ +{ + "id": 8931, + "slug": "secure-eraser", + "name": "Secure Eraser", + "release_date": "2002-01-01", + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130726076" + ], + "created_at": "2026-07-10T10:12:42.836062", + "updated_at": "2026-07-10T10:12:42.836062", + "url": "/v1/software/secure-eraser" +} diff --git a/site/public/v1/software/secure-ftp/index.json b/site/public/v1/software/secure-ftp/index.json new file mode 100644 index 000000000000..76b121fd2d06 --- /dev/null +++ b/site/public/v1/software/secure-ftp/index.json @@ -0,0 +1,21 @@ +{ + "id": 8932, + "slug": "secure-ftp", + "name": "Secure FTP", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Apache License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7444843" + ], + "created_at": "2026-07-10T10:12:42.836062", + "updated_at": "2026-07-10T10:12:42.836062", + "url": "/v1/software/secure-ftp" +} diff --git a/site/public/v1/software/securetribe/index.json b/site/public/v1/software/securetribe/index.json new file mode 100644 index 000000000000..5105a5be3097 --- /dev/null +++ b/site/public/v1/software/securetribe/index.json @@ -0,0 +1,19 @@ +{ + "id": 8933, + "slug": "securetribe", + "name": "SecureTribe", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q48814859" + ], + "created_at": "2026-07-10T10:12:42.836062", + "updated_at": "2026-07-10T10:12:42.836062", + "url": "/v1/software/securetribe" +} diff --git a/site/public/v1/software/security-enhanced-linux/index.json b/site/public/v1/software/security-enhanced-linux/index.json new file mode 100644 index 000000000000..fb0f8095c500 --- /dev/null +++ b/site/public/v1/software/security-enhanced-linux/index.json @@ -0,0 +1,23 @@ +{ + "id": 8934, + "slug": "security-enhanced-linux", + "name": "Security-Enhanced Linux", + "release_date": "2000-12-22", + "developers": [ + "Red Hat" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "GNU General Public License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116038" + ], + "created_at": "2026-07-10T10:12:42.837040", + "updated_at": "2026-07-10T10:12:42.837040", + "url": "/v1/software/security-enhanced-linux" +} diff --git a/site/public/v1/software/security-key-enforcement/index.json b/site/public/v1/software/security-key-enforcement/index.json new file mode 100644 index 000000000000..86c93806e3cb --- /dev/null +++ b/site/public/v1/software/security-key-enforcement/index.json @@ -0,0 +1,21 @@ +{ + "id": 8935, + "slug": "security-key-enforcement", + "name": "Security Key Enforcement", + "release_date": null, + "developers": [ + "Google" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60167832" + ], + "created_at": "2026-07-10T10:12:42.837040", + "updated_at": "2026-07-10T10:12:42.837040", + "url": "/v1/software/security-key-enforcement" +} diff --git a/site/public/v1/software/security-vision/index.json b/site/public/v1/software/security-vision/index.json new file mode 100644 index 000000000000..905704bd7d52 --- /dev/null +++ b/site/public/v1/software/security-vision/index.json @@ -0,0 +1,19 @@ +{ + "id": 8936, + "slug": "security-vision", + "name": "Security Vision", + "release_date": "2007-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q15714623" + ], + "created_at": "2026-07-10T10:12:42.837040", + "updated_at": "2026-07-10T10:12:42.837040", + "url": "/v1/software/security-vision" +} diff --git a/site/public/v1/software/securssh/index.json b/site/public/v1/software/securssh/index.json new file mode 100644 index 000000000000..b9282f727a53 --- /dev/null +++ b/site/public/v1/software/securssh/index.json @@ -0,0 +1,23 @@ +{ + "id": 8937, + "slug": "securssh", + "name": "SecurSSH", + "release_date": null, + "developers": [ + "Watizi" + ], + "publishers": [], + "operating_systems": [ + "cross-platform" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140064293" + ], + "created_at": "2026-07-10T10:12:42.837040", + "updated_at": "2026-07-10T10:12:42.838037", + "url": "/v1/software/securssh" +} diff --git a/site/public/v1/software/seealsology/index.json b/site/public/v1/software/seealsology/index.json new file mode 100644 index 000000000000..1d62f0907651 --- /dev/null +++ b/site/public/v1/software/seealsology/index.json @@ -0,0 +1,19 @@ +{ + "id": 8938, + "slug": "seealsology", + "name": "Seealsology", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087715" + ], + "created_at": "2026-07-10T10:12:42.838037", + "updated_at": "2026-07-10T10:12:42.838037", + "url": "/v1/software/seealsology" +} diff --git a/site/public/v1/software/seeing-ai/index.json b/site/public/v1/software/seeing-ai/index.json new file mode 100644 index 000000000000..062d1ad85f51 --- /dev/null +++ b/site/public/v1/software/seeing-ai/index.json @@ -0,0 +1,19 @@ +{ + "id": 8939, + "slug": "seeing-ai", + "name": "Seeing AI", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q55080293" + ], + "created_at": "2026-07-10T10:12:42.838037", + "updated_at": "2026-07-10T10:12:42.838037", + "url": "/v1/software/seeing-ai" +} diff --git a/site/public/v1/software/seep2d/index.json b/site/public/v1/software/seep2d/index.json new file mode 100644 index 000000000000..56e83d636a32 --- /dev/null +++ b/site/public/v1/software/seep2d/index.json @@ -0,0 +1,23 @@ +{ + "id": 8940, + "slug": "seep2d", + "name": "SEEP2D", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7389655" + ], + "created_at": "2026-07-10T10:12:42.839038", + "updated_at": "2026-07-10T10:12:42.839038", + "url": "/v1/software/seep2d" +} diff --git a/site/public/v1/software/seetxt/index.json b/site/public/v1/software/seetxt/index.json new file mode 100644 index 000000000000..a3af3413cb1f --- /dev/null +++ b/site/public/v1/software/seetxt/index.json @@ -0,0 +1,19 @@ +{ + "id": 8941, + "slug": "seetxt", + "name": "seetxt", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62865631" + ], + "created_at": "2026-07-10T10:12:42.839038", + "updated_at": "2026-07-10T10:12:42.839038", + "url": "/v1/software/seetxt" +} diff --git a/site/public/v1/software/seeu/index.json b/site/public/v1/software/seeu/index.json new file mode 100644 index 000000000000..84b3a3536fa3 --- /dev/null +++ b/site/public/v1/software/seeu/index.json @@ -0,0 +1,19 @@ +{ + "id": 8942, + "slug": "seeu", + "name": "SeeU", + "release_date": "2011-12-16", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q55530" + ], + "created_at": "2026-07-10T10:12:42.839038", + "updated_at": "2026-07-10T10:12:42.839038", + "url": "/v1/software/seeu" +} diff --git a/site/public/v1/software/sega-meganet/index.json b/site/public/v1/software/sega-meganet/index.json new file mode 100644 index 000000000000..3d645999b477 --- /dev/null +++ b/site/public/v1/software/sega-meganet/index.json @@ -0,0 +1,21 @@ +{ + "id": 8943, + "slug": "sega-meganet", + "name": "Sega Meganet", + "release_date": null, + "developers": [ + "Sega" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1851885" + ], + "created_at": "2026-07-10T10:12:42.839038", + "updated_at": "2026-07-10T10:12:42.839038", + "url": "/v1/software/sega-meganet" +} diff --git a/site/public/v1/software/segrada/index.json b/site/public/v1/software/segrada/index.json new file mode 100644 index 000000000000..8b4e762d2c27 --- /dev/null +++ b/site/public/v1/software/segrada/index.json @@ -0,0 +1,19 @@ +{ + "id": 8944, + "slug": "segrada", + "name": "Segrada", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084542" + ], + "created_at": "2026-07-10T10:12:42.840063", + "updated_at": "2026-07-10T10:12:42.840063", + "url": "/v1/software/segrada" +} diff --git a/site/public/v1/software/seismic-handler/index.json b/site/public/v1/software/seismic-handler/index.json new file mode 100644 index 000000000000..91df637acb24 --- /dev/null +++ b/site/public/v1/software/seismic-handler/index.json @@ -0,0 +1,21 @@ +{ + "id": 8945, + "slug": "seismic-handler", + "name": "Seismic Handler", + "release_date": null, + "developers": [ + "Seismological Observatory Gräfenberg" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17105700" + ], + "created_at": "2026-07-10T10:12:42.840063", + "updated_at": "2026-07-10T10:12:42.840063", + "url": "/v1/software/seismic-handler" +} diff --git a/site/public/v1/software/sejda/index.json b/site/public/v1/software/sejda/index.json new file mode 100644 index 000000000000..f2fe2d8b8ada --- /dev/null +++ b/site/public/v1/software/sejda/index.json @@ -0,0 +1,19 @@ +{ + "id": 8946, + "slug": "sejda", + "name": "Sejda", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q98536300" + ], + "created_at": "2026-07-10T10:12:42.841040", + "updated_at": "2026-07-10T10:12:42.841040", + "url": "/v1/software/sejda" +} diff --git a/site/public/v1/software/sekchek-local/index.json b/site/public/v1/software/sekchek-local/index.json new file mode 100644 index 000000000000..a6a5b6211751 --- /dev/null +++ b/site/public/v1/software/sekchek-local/index.json @@ -0,0 +1,19 @@ +{ + "id": 8947, + "slug": "sekchek-local", + "name": "SekChek Local", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7447105" + ], + "created_at": "2026-07-10T10:12:42.841040", + "updated_at": "2026-07-10T10:12:42.841040", + "url": "/v1/software/sekchek-local" +} diff --git a/site/public/v1/software/selinux-base-policy/index.json b/site/public/v1/software/selinux-base-policy/index.json new file mode 100644 index 000000000000..9a54451e49bb --- /dev/null +++ b/site/public/v1/software/selinux-base-policy/index.json @@ -0,0 +1,19 @@ +{ + "id": 8948, + "slug": "selinux-base-policy", + "name": "selinux-base-policy", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975446" + ], + "created_at": "2026-07-10T10:12:42.841040", + "updated_at": "2026-07-10T10:12:42.841040", + "url": "/v1/software/selinux-base-policy" +} diff --git a/site/public/v1/software/selinux-base/index.json b/site/public/v1/software/selinux-base/index.json new file mode 100644 index 000000000000..64a3bbe176bb --- /dev/null +++ b/site/public/v1/software/selinux-base/index.json @@ -0,0 +1,19 @@ +{ + "id": 8949, + "slug": "selinux-base", + "name": "selinux-base", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975445" + ], + "created_at": "2026-07-10T10:12:42.842036", + "updated_at": "2026-07-10T10:12:42.842036", + "url": "/v1/software/selinux-base" +} diff --git a/site/public/v1/software/selinux-python/index.json b/site/public/v1/software/selinux-python/index.json new file mode 100644 index 000000000000..c0ea967b4a47 --- /dev/null +++ b/site/public/v1/software/selinux-python/index.json @@ -0,0 +1,19 @@ +{ + "id": 8950, + "slug": "selinux-python", + "name": "selinux-python", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975448" + ], + "created_at": "2026-07-10T10:12:42.842036", + "updated_at": "2026-07-10T10:12:42.842036", + "url": "/v1/software/selinux-python" +} diff --git a/site/public/v1/software/sell-the-trend/index.json b/site/public/v1/software/sell-the-trend/index.json new file mode 100644 index 000000000000..6e528b20af9c --- /dev/null +++ b/site/public/v1/software/sell-the-trend/index.json @@ -0,0 +1,19 @@ +{ + "id": 8951, + "slug": "sell-the-trend", + "name": "Sell The Trend", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140401588" + ], + "created_at": "2026-07-10T10:12:42.842036", + "updated_at": "2026-07-10T10:12:42.842036", + "url": "/v1/software/sell-the-trend" +} diff --git a/site/public/v1/software/semantic-mapping-reasoner-and-assembler/index.json b/site/public/v1/software/semantic-mapping-reasoner-and-assembler/index.json new file mode 100644 index 000000000000..aa285cc17f16 --- /dev/null +++ b/site/public/v1/software/semantic-mapping-reasoner-and-assembler/index.json @@ -0,0 +1,23 @@ +{ + "id": 8952, + "slug": "semantic-mapping-reasoner-and-assembler", + "name": "Semantic Mapping Reasoner and Assembler", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Python" + ], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127259663" + ], + "created_at": "2026-07-10T10:12:42.842036", + "updated_at": "2026-07-10T10:12:42.842036", + "url": "/v1/software/semantic-mapping-reasoner-and-assembler" +} diff --git a/site/public/v1/software/semantria/index.json b/site/public/v1/software/semantria/index.json new file mode 100644 index 000000000000..a7be57a32841 --- /dev/null +++ b/site/public/v1/software/semantria/index.json @@ -0,0 +1,19 @@ +{ + "id": 8953, + "slug": "semantria", + "name": "Semantria", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087716" + ], + "created_at": "2026-07-10T10:12:42.843061", + "updated_at": "2026-07-10T10:12:42.843061", + "url": "/v1/software/semantria" +} diff --git a/site/public/v1/software/semaphore/index.json b/site/public/v1/software/semaphore/index.json new file mode 100644 index 000000000000..c8a0d239ecbc --- /dev/null +++ b/site/public/v1/software/semaphore/index.json @@ -0,0 +1,19 @@ +{ + "id": 8954, + "slug": "semaphore", + "name": "Semaphore", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q48988926" + ], + "created_at": "2026-07-10T10:12:42.843061", + "updated_at": "2026-07-10T10:12:42.843061", + "url": "/v1/software/semaphore" +} diff --git a/site/public/v1/software/semato/index.json b/site/public/v1/software/semato/index.json new file mode 100644 index 000000000000..a684785b347e --- /dev/null +++ b/site/public/v1/software/semato/index.json @@ -0,0 +1,19 @@ +{ + "id": 8955, + "slug": "semato", + "name": "Semato", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3510718" + ], + "created_at": "2026-07-10T10:12:42.843061", + "updated_at": "2026-07-10T10:12:42.843061", + "url": "/v1/software/semato" +} diff --git a/site/public/v1/software/semcad/index.json b/site/public/v1/software/semcad/index.json new file mode 100644 index 000000000000..6926649c24ea --- /dev/null +++ b/site/public/v1/software/semcad/index.json @@ -0,0 +1,19 @@ +{ + "id": 8956, + "slug": "semcad", + "name": "SEMCAD", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122396748" + ], + "created_at": "2026-07-10T10:12:42.844065", + "updated_at": "2026-07-10T10:12:42.844065", + "url": "/v1/software/semcad" +} diff --git a/site/public/v1/software/semlens/index.json b/site/public/v1/software/semlens/index.json new file mode 100644 index 000000000000..b0d5834bf2ff --- /dev/null +++ b/site/public/v1/software/semlens/index.json @@ -0,0 +1,19 @@ +{ + "id": 8957, + "slug": "semlens", + "name": "SemLens", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084543" + ], + "created_at": "2026-07-10T10:12:42.844065", + "updated_at": "2026-07-10T10:12:42.844065", + "url": "/v1/software/semlens" +} diff --git a/site/public/v1/software/semmle/index.json b/site/public/v1/software/semmle/index.json new file mode 100644 index 000000000000..693929431fa3 --- /dev/null +++ b/site/public/v1/software/semmle/index.json @@ -0,0 +1,19 @@ +{ + "id": 8958, + "slug": "semmle", + "name": "Semmle", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7449710" + ], + "created_at": "2026-07-10T10:12:42.844975", + "updated_at": "2026-07-10T10:12:42.844975", + "url": "/v1/software/semmle" +} diff --git a/site/public/v1/software/semodule-utils/index.json b/site/public/v1/software/semodule-utils/index.json new file mode 100644 index 000000000000..d641228fef92 --- /dev/null +++ b/site/public/v1/software/semodule-utils/index.json @@ -0,0 +1,19 @@ +{ + "id": 8959, + "slug": "semodule-utils", + "name": "semodule-utils", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975450" + ], + "created_at": "2026-07-10T10:12:42.844975", + "updated_at": "2026-07-10T10:12:42.844975", + "url": "/v1/software/semodule-utils" +} diff --git a/site/public/v1/software/semtalk/index.json b/site/public/v1/software/semtalk/index.json new file mode 100644 index 000000000000..557c478b64d1 --- /dev/null +++ b/site/public/v1/software/semtalk/index.json @@ -0,0 +1,21 @@ +{ + "id": 8960, + "slug": "semtalk", + "name": "SemTalk", + "release_date": null, + "developers": [ + "Semtation GmbH" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2269554" + ], + "created_at": "2026-07-10T10:12:42.844975", + "updated_at": "2026-07-10T10:12:42.844975", + "url": "/v1/software/semtalk" +} diff --git a/site/public/v1/software/sendform/index.json b/site/public/v1/software/sendform/index.json new file mode 100644 index 000000000000..379c695d0adb --- /dev/null +++ b/site/public/v1/software/sendform/index.json @@ -0,0 +1,19 @@ +{ + "id": 8961, + "slug": "sendform", + "name": "SendForm", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140051821" + ], + "created_at": "2026-07-10T10:12:42.844975", + "updated_at": "2026-07-10T10:12:42.844975", + "url": "/v1/software/sendform" +} diff --git a/site/public/v1/software/sendplus/index.json b/site/public/v1/software/sendplus/index.json new file mode 100644 index 000000000000..7eaf01d51895 --- /dev/null +++ b/site/public/v1/software/sendplus/index.json @@ -0,0 +1,19 @@ +{ + "id": 8962, + "slug": "sendplus", + "name": "SendPlus", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q55593560" + ], + "created_at": "2026-07-10T10:12:42.846067", + "updated_at": "2026-07-10T10:12:42.846067", + "url": "/v1/software/sendplus" +} diff --git a/site/public/v1/software/sendpulse/index.json b/site/public/v1/software/sendpulse/index.json new file mode 100644 index 000000000000..2ca0d5454f88 --- /dev/null +++ b/site/public/v1/software/sendpulse/index.json @@ -0,0 +1,19 @@ +{ + "id": 8963, + "slug": "sendpulse", + "name": "SendPulse", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60220061" + ], + "created_at": "2026-07-10T10:12:42.846067", + "updated_at": "2026-07-10T10:12:42.846067", + "url": "/v1/software/sendpulse" +} diff --git a/site/public/v1/software/sengi/index.json b/site/public/v1/software/sengi/index.json new file mode 100644 index 000000000000..a3c7c2b25d83 --- /dev/null +++ b/site/public/v1/software/sengi/index.json @@ -0,0 +1,19 @@ +{ + "id": 8964, + "slug": "sengi", + "name": "Sengi", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118740392" + ], + "created_at": "2026-07-10T10:12:42.846976", + "updated_at": "2026-07-10T10:12:42.846976", + "url": "/v1/software/sengi" +} diff --git a/site/public/v1/software/sensme/index.json b/site/public/v1/software/sensme/index.json new file mode 100644 index 000000000000..1d1a4bb45bb9 --- /dev/null +++ b/site/public/v1/software/sensme/index.json @@ -0,0 +1,21 @@ +{ + "id": 8965, + "slug": "sensme", + "name": "SensMe", + "release_date": null, + "developers": [ + "Sony Group" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4049291" + ], + "created_at": "2026-07-10T10:12:42.846976", + "updated_at": "2026-07-10T10:12:42.846976", + "url": "/v1/software/sensme" +} diff --git a/site/public/v1/software/sent/index.json b/site/public/v1/software/sent/index.json new file mode 100644 index 000000000000..85c581842a41 --- /dev/null +++ b/site/public/v1/software/sent/index.json @@ -0,0 +1,24 @@ +{ + "id": 8966, + "slug": "sent", + "name": "sent", + "release_date": null, + "developers": [ + "suckless.org", + "Markus Teich" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "ISC license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22338769" + ], + "created_at": "2026-07-10T10:12:42.846976", + "updated_at": "2026-07-10T10:12:42.846976", + "url": "/v1/software/sent" +} diff --git a/site/public/v1/software/sentenza/index.json b/site/public/v1/software/sentenza/index.json new file mode 100644 index 000000000000..2ccf8c7a54a2 --- /dev/null +++ b/site/public/v1/software/sentenza/index.json @@ -0,0 +1,19 @@ +{ + "id": 8967, + "slug": "sentenza", + "name": "Sentenza", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3478654" + ], + "created_at": "2026-07-10T10:12:42.846976", + "updated_at": "2026-07-10T10:12:42.846976", + "url": "/v1/software/sentenza" +} diff --git a/site/public/v1/software/sentimentarcs/index.json b/site/public/v1/software/sentimentarcs/index.json new file mode 100644 index 000000000000..506dfd58a266 --- /dev/null +++ b/site/public/v1/software/sentimentarcs/index.json @@ -0,0 +1,21 @@ +{ + "id": 8968, + "slug": "sentimentarcs", + "name": "SentimentArcs", + "release_date": null, + "developers": [ + "Katherine Elkins" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138605494" + ], + "created_at": "2026-07-10T10:12:42.848117", + "updated_at": "2026-07-10T10:12:42.848117", + "url": "/v1/software/sentimentarcs" +} diff --git a/site/public/v1/software/sentimentbuilder-com/index.json b/site/public/v1/software/sentimentbuilder-com/index.json new file mode 100644 index 000000000000..3edcfd0702aa --- /dev/null +++ b/site/public/v1/software/sentimentbuilder-com/index.json @@ -0,0 +1,19 @@ +{ + "id": 8969, + "slug": "sentimentbuilder-com", + "name": "SentimentBuilder.com", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084544" + ], + "created_at": "2026-07-10T10:12:42.848117", + "updated_at": "2026-07-10T10:12:42.848117", + "url": "/v1/software/sentimentbuilder-com" +} diff --git a/site/public/v1/software/sentinel-q139555827/index.json b/site/public/v1/software/sentinel-q139555827/index.json new file mode 100644 index 000000000000..0c2ef0453285 --- /dev/null +++ b/site/public/v1/software/sentinel-q139555827/index.json @@ -0,0 +1,21 @@ +{ + "id": 8970, + "slug": "sentinel-q139555827", + "name": "SENTINEL", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Python" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139555827" + ], + "created_at": "2026-07-10T10:12:42.848117", + "updated_at": "2026-07-10T10:12:42.848117", + "url": "/v1/software/sentinel-q139555827" +} diff --git a/site/public/v1/software/sentinel/index.json b/site/public/v1/software/sentinel/index.json new file mode 100644 index 000000000000..ccf05b7c0ba6 --- /dev/null +++ b/site/public/v1/software/sentinel/index.json @@ -0,0 +1,21 @@ +{ + "id": 8971, + "slug": "sentinel", + "name": "Sentinel", + "release_date": null, + "developers": [ + "ePaper Ltd" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16934520" + ], + "created_at": "2026-07-10T10:12:42.848974", + "updated_at": "2026-07-10T10:12:42.848974", + "url": "/v1/software/sentinel" +} diff --git a/site/public/v1/software/sentione/index.json b/site/public/v1/software/sentione/index.json new file mode 100644 index 000000000000..f872256c2def --- /dev/null +++ b/site/public/v1/software/sentione/index.json @@ -0,0 +1,19 @@ +{ + "id": 8972, + "slug": "sentione", + "name": "SentiOne", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18649951" + ], + "created_at": "2026-07-10T10:12:42.848974", + "updated_at": "2026-07-10T10:12:42.848974", + "url": "/v1/software/sentione" +} diff --git a/site/public/v1/software/sentistrength-q126084546/index.json b/site/public/v1/software/sentistrength-q126084546/index.json new file mode 100644 index 000000000000..c8399d16beb2 --- /dev/null +++ b/site/public/v1/software/sentistrength-q126084546/index.json @@ -0,0 +1,19 @@ +{ + "id": 8973, + "slug": "sentistrength-q126084546", + "name": "SentiStrength", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084546" + ], + "created_at": "2026-07-10T10:12:42.848974", + "updated_at": "2026-07-10T10:12:42.848974", + "url": "/v1/software/sentistrength-q126084546" +} diff --git a/site/public/v1/software/sentistrength/index.json b/site/public/v1/software/sentistrength/index.json new file mode 100644 index 000000000000..9dbadb857c0d --- /dev/null +++ b/site/public/v1/software/sentistrength/index.json @@ -0,0 +1,19 @@ +{ + "id": 8974, + "slug": "sentistrength", + "name": "SentiStrength", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q54819120" + ], + "created_at": "2026-07-10T10:12:42.850115", + "updated_at": "2026-07-10T10:12:42.850115", + "url": "/v1/software/sentistrength" +} diff --git a/site/public/v1/software/sentry-parental-controls/index.json b/site/public/v1/software/sentry-parental-controls/index.json new file mode 100644 index 000000000000..96ecac4ef419 --- /dev/null +++ b/site/public/v1/software/sentry-parental-controls/index.json @@ -0,0 +1,19 @@ +{ + "id": 8975, + "slug": "sentry-parental-controls", + "name": "Sentry Parental Controls", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7451403" + ], + "created_at": "2026-07-10T10:12:42.850115", + "updated_at": "2026-07-10T10:12:42.850115", + "url": "/v1/software/sentry-parental-controls" +} diff --git a/site/public/v1/software/senuti/index.json b/site/public/v1/software/senuti/index.json new file mode 100644 index 000000000000..3e21f75718c5 --- /dev/null +++ b/site/public/v1/software/senuti/index.json @@ -0,0 +1,21 @@ +{ + "id": 8976, + "slug": "senuti", + "name": "Senuti", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "macOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q9076049" + ], + "created_at": "2026-07-10T10:12:42.850115", + "updated_at": "2026-07-10T10:12:42.850115", + "url": "/v1/software/senuti" +} diff --git a/site/public/v1/software/seo-panel/index.json b/site/public/v1/software/seo-panel/index.json new file mode 100644 index 000000000000..f53fdd07108f --- /dev/null +++ b/site/public/v1/software/seo-panel/index.json @@ -0,0 +1,23 @@ +{ + "id": 8977, + "slug": "seo-panel", + "name": "SEO Panel", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "PHP" + ], + "licenses": [ + "GNU General Public License, version 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16599345" + ], + "created_at": "2026-07-10T10:12:42.851086", + "updated_at": "2026-07-10T10:12:42.851086", + "url": "/v1/software/seo-panel" +} diff --git a/site/public/v1/software/sepolgen/index.json b/site/public/v1/software/sepolgen/index.json new file mode 100644 index 000000000000..72d4a75b0c4e --- /dev/null +++ b/site/public/v1/software/sepolgen/index.json @@ -0,0 +1,19 @@ +{ + "id": 8978, + "slug": "sepolgen", + "name": "sepolgen", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975454" + ], + "created_at": "2026-07-10T10:12:42.851086", + "updated_at": "2026-07-10T10:12:42.851086", + "url": "/v1/software/sepolgen" +} diff --git a/site/public/v1/software/seqkit/index.json b/site/public/v1/software/seqkit/index.json new file mode 100644 index 000000000000..c32bdb6d3d4f --- /dev/null +++ b/site/public/v1/software/seqkit/index.json @@ -0,0 +1,26 @@ +{ + "id": 8979, + "slug": "seqkit", + "name": "SeqKit", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [ + "Go" + ], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115348765" + ], + "created_at": "2026-07-10T10:12:42.851086", + "updated_at": "2026-07-10T10:12:42.851086", + "url": "/v1/software/seqkit" +} diff --git a/site/public/v1/software/sequenceviewer/index.json b/site/public/v1/software/sequenceviewer/index.json new file mode 100644 index 000000000000..082304588f0e --- /dev/null +++ b/site/public/v1/software/sequenceviewer/index.json @@ -0,0 +1,21 @@ +{ + "id": 8980, + "slug": "sequenceviewer", + "name": "Sequenceviewer", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "macOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105229765" + ], + "created_at": "2026-07-10T10:12:42.851086", + "updated_at": "2026-07-10T10:12:42.851086", + "url": "/v1/software/sequenceviewer" +} diff --git a/site/public/v1/software/sequencher/index.json b/site/public/v1/software/sequencher/index.json new file mode 100644 index 000000000000..9cdd72aea6d4 --- /dev/null +++ b/site/public/v1/software/sequencher/index.json @@ -0,0 +1,19 @@ +{ + "id": 8981, + "slug": "sequencher", + "name": "Sequencher", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3479087" + ], + "created_at": "2026-07-10T10:12:42.851976", + "updated_at": "2026-07-10T10:12:42.851976", + "url": "/v1/software/sequencher" +} diff --git a/site/public/v1/software/sequerome/index.json b/site/public/v1/software/sequerome/index.json new file mode 100644 index 000000000000..7c866961befc --- /dev/null +++ b/site/public/v1/software/sequerome/index.json @@ -0,0 +1,19 @@ +{ + "id": 8982, + "slug": "sequerome", + "name": "Sequerome", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7452522" + ], + "created_at": "2026-07-10T10:12:42.851976", + "updated_at": "2026-07-10T10:12:42.851976", + "url": "/v1/software/sequerome" +} diff --git a/site/public/v1/software/sequest/index.json b/site/public/v1/software/sequest/index.json new file mode 100644 index 000000000000..1c9f21d4acec --- /dev/null +++ b/site/public/v1/software/sequest/index.json @@ -0,0 +1,21 @@ +{ + "id": 8983, + "slug": "sequest", + "name": "SEQUEST", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7389808" + ], + "created_at": "2026-07-10T10:12:42.851976", + "updated_at": "2026-07-10T10:12:42.851976", + "url": "/v1/software/sequest" +} diff --git a/site/public/v1/software/sequoyah/index.json b/site/public/v1/software/sequoyah/index.json new file mode 100644 index 000000000000..deb5e256f099 --- /dev/null +++ b/site/public/v1/software/sequoyah/index.json @@ -0,0 +1,19 @@ +{ + "id": 8984, + "slug": "sequoyah", + "name": "Sequoyah", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76177658" + ], + "created_at": "2026-07-10T10:12:42.852974", + "updated_at": "2026-07-10T10:12:42.852974", + "url": "/v1/software/sequoyah" +} diff --git a/site/public/v1/software/serendip/index.json b/site/public/v1/software/serendip/index.json new file mode 100644 index 000000000000..fa62378af3eb --- /dev/null +++ b/site/public/v1/software/serendip/index.json @@ -0,0 +1,19 @@ +{ + "id": 8985, + "slug": "serendip", + "name": "Serendip", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084547" + ], + "created_at": "2026-07-10T10:12:42.852974", + "updated_at": "2026-07-10T10:12:42.852974", + "url": "/v1/software/serendip" +} diff --git a/site/public/v1/software/serialtalk/index.json b/site/public/v1/software/serialtalk/index.json new file mode 100644 index 000000000000..849712f86f41 --- /dev/null +++ b/site/public/v1/software/serialtalk/index.json @@ -0,0 +1,19 @@ +{ + "id": 8986, + "slug": "serialtalk", + "name": "serialtalk", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975457" + ], + "created_at": "2026-07-10T10:12:42.852974", + "updated_at": "2026-07-10T10:12:42.852974", + "url": "/v1/software/serialtalk" +} diff --git a/site/public/v1/software/series-90/index.json b/site/public/v1/software/series-90/index.json new file mode 100644 index 000000000000..e262d49b298a --- /dev/null +++ b/site/public/v1/software/series-90/index.json @@ -0,0 +1,19 @@ +{ + "id": 8987, + "slug": "series-90", + "name": "Series 90", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1048936" + ], + "created_at": "2026-07-10T10:12:42.854134", + "updated_at": "2026-07-10T10:12:42.854134", + "url": "/v1/software/series-90" +} diff --git a/site/public/v1/software/serpent/index.json b/site/public/v1/software/serpent/index.json new file mode 100644 index 000000000000..0fcdcd6ca9c5 --- /dev/null +++ b/site/public/v1/software/serpent/index.json @@ -0,0 +1,21 @@ +{ + "id": 8988, + "slug": "serpent", + "name": "Serpent", + "release_date": null, + "developers": [ + "VTT Technical Research Centre of Finland" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17080126" + ], + "created_at": "2026-07-10T10:12:42.854134", + "updated_at": "2026-07-10T10:12:42.854134", + "url": "/v1/software/serpent" +} diff --git a/site/public/v1/software/serratus/index.json b/site/public/v1/software/serratus/index.json new file mode 100644 index 000000000000..4e1a95642be1 --- /dev/null +++ b/site/public/v1/software/serratus/index.json @@ -0,0 +1,19 @@ +{ + "id": 8989, + "slug": "serratus", + "name": "Serratus", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116457202" + ], + "created_at": "2026-07-10T10:12:42.854134", + "updated_at": "2026-07-10T10:12:42.854134", + "url": "/v1/software/serratus" +} diff --git a/site/public/v1/software/serv-u-ftp-server/index.json b/site/public/v1/software/serv-u-ftp-server/index.json new file mode 100644 index 000000000000..1df87201cd24 --- /dev/null +++ b/site/public/v1/software/serv-u-ftp-server/index.json @@ -0,0 +1,25 @@ +{ + "id": 8990, + "slug": "serv-u-ftp-server", + "name": "Serv-U FTP Server", + "release_date": null, + "developers": [ + "SolarWinds" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2274084" + ], + "created_at": "2026-07-10T10:12:42.855058", + "updated_at": "2026-07-10T10:12:42.855058", + "url": "/v1/software/serv-u-ftp-server" +} diff --git a/site/public/v1/software/serval-project/index.json b/site/public/v1/software/serval-project/index.json new file mode 100644 index 000000000000..f4a2b2d9b9b4 --- /dev/null +++ b/site/public/v1/software/serval-project/index.json @@ -0,0 +1,19 @@ +{ + "id": 8991, + "slug": "serval-project", + "name": "Serval project", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16137222" + ], + "created_at": "2026-07-10T10:12:42.855058", + "updated_at": "2026-07-10T10:12:42.855058", + "url": "/v1/software/serval-project" +} diff --git a/site/public/v1/software/server-assistant/index.json b/site/public/v1/software/server-assistant/index.json new file mode 100644 index 000000000000..edefeb3367bd --- /dev/null +++ b/site/public/v1/software/server-assistant/index.json @@ -0,0 +1,21 @@ +{ + "id": 8992, + "slug": "server-assistant", + "name": "Server Assistant", + "release_date": null, + "developers": [ + "Apple Inc." + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7455591" + ], + "created_at": "2026-07-10T10:12:42.855058", + "updated_at": "2026-07-10T10:12:42.855058", + "url": "/v1/software/server-assistant" +} diff --git a/site/public/v1/software/server-efficiency-rating-tool/index.json b/site/public/v1/software/server-efficiency-rating-tool/index.json new file mode 100644 index 000000000000..7b6c9363b907 --- /dev/null +++ b/site/public/v1/software/server-efficiency-rating-tool/index.json @@ -0,0 +1,19 @@ +{ + "id": 8993, + "slug": "server-efficiency-rating-tool", + "name": "Server Efficiency Rating Tool", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16944479" + ], + "created_at": "2026-07-10T10:12:42.855975", + "updated_at": "2026-07-10T10:12:42.855975", + "url": "/v1/software/server-efficiency-rating-tool" +} diff --git a/site/public/v1/software/server-monitor/index.json b/site/public/v1/software/server-monitor/index.json new file mode 100644 index 000000000000..fe342a8b3aea --- /dev/null +++ b/site/public/v1/software/server-monitor/index.json @@ -0,0 +1,23 @@ +{ + "id": 8994, + "slug": "server-monitor", + "name": "Server Monitor", + "release_date": null, + "developers": [ + "Apple Inc." + ], + "publishers": [], + "operating_systems": [ + "macOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4049317" + ], + "created_at": "2026-07-10T10:12:42.855975", + "updated_at": "2026-07-10T10:12:42.855975", + "url": "/v1/software/server-monitor" +} diff --git a/site/public/v1/software/server-tools/index.json b/site/public/v1/software/server-tools/index.json new file mode 100644 index 000000000000..ada630083fae --- /dev/null +++ b/site/public/v1/software/server-tools/index.json @@ -0,0 +1,19 @@ +{ + "id": 8995, + "slug": "server-tools", + "name": "Server Tools", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76177697" + ], + "created_at": "2026-07-10T10:12:42.855975", + "updated_at": "2026-07-10T10:12:42.855975", + "url": "/v1/software/server-tools" +} diff --git a/site/public/v1/software/service-control-manager/index.json b/site/public/v1/software/service-control-manager/index.json new file mode 100644 index 000000000000..620dd776a344 --- /dev/null +++ b/site/public/v1/software/service-control-manager/index.json @@ -0,0 +1,19 @@ +{ + "id": 8996, + "slug": "service-control-manager", + "name": "Service Control Manager", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3480061" + ], + "created_at": "2026-07-10T10:12:42.855975", + "updated_at": "2026-07-10T10:12:42.855975", + "url": "/v1/software/service-control-manager" +} diff --git a/site/public/v1/software/service-oriented-localisation-architecture-solution/index.json b/site/public/v1/software/service-oriented-localisation-architecture-solution/index.json new file mode 100644 index 000000000000..ffcdc37f8f4e --- /dev/null +++ b/site/public/v1/software/service-oriented-localisation-architecture-solution/index.json @@ -0,0 +1,19 @@ +{ + "id": 8997, + "slug": "service-oriented-localisation-architecture-solution", + "name": "Service Oriented Localisation Architecture Solution", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7455704" + ], + "created_at": "2026-07-10T10:12:42.857054", + "updated_at": "2026-07-10T10:12:42.857054", + "url": "/v1/software/service-oriented-localisation-architecture-solution" +} diff --git a/site/public/v1/software/service-package-interpreter/index.json b/site/public/v1/software/service-package-interpreter/index.json new file mode 100644 index 000000000000..8d8f521bcda4 --- /dev/null +++ b/site/public/v1/software/service-package-interpreter/index.json @@ -0,0 +1,19 @@ +{ + "id": 8998, + "slug": "service-package-interpreter", + "name": "Service Package Interpreter", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7455707" + ], + "created_at": "2026-07-10T10:12:42.857054", + "updated_at": "2026-07-10T10:12:42.857054", + "url": "/v1/software/service-package-interpreter" +} diff --git a/site/public/v1/software/service-wrapper/index.json b/site/public/v1/software/service-wrapper/index.json new file mode 100644 index 000000000000..f2a373b1cfd0 --- /dev/null +++ b/site/public/v1/software/service-wrapper/index.json @@ -0,0 +1,19 @@ +{ + "id": 8999, + "slug": "service-wrapper", + "name": "service wrapper", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7455821" + ], + "created_at": "2026-07-10T10:12:42.858050", + "updated_at": "2026-07-10T10:12:42.858050", + "url": "/v1/software/service-wrapper" +} diff --git a/site/public/v1/software/servicelog/index.json b/site/public/v1/software/servicelog/index.json new file mode 100644 index 000000000000..9994f5ba17c5 --- /dev/null +++ b/site/public/v1/software/servicelog/index.json @@ -0,0 +1,19 @@ +{ + "id": 9000, + "slug": "servicelog", + "name": "servicelog", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63064937" + ], + "created_at": "2026-07-10T10:12:42.858050", + "updated_at": "2026-07-10T10:12:42.858050", + "url": "/v1/software/servicelog" +} diff --git a/site/public/v1/software/serviio/index.json b/site/public/v1/software/serviio/index.json new file mode 100644 index 000000000000..6cacd6b3713a --- /dev/null +++ b/site/public/v1/software/serviio/index.json @@ -0,0 +1,19 @@ +{ + "id": 9001, + "slug": "serviio", + "name": "Serviio", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17143909" + ], + "created_at": "2026-07-10T10:12:42.858050", + "updated_at": "2026-07-10T10:12:42.858050", + "url": "/v1/software/serviio" +} diff --git a/site/public/v1/software/servoy/index.json b/site/public/v1/software/servoy/index.json new file mode 100644 index 000000000000..48511562a386 --- /dev/null +++ b/site/public/v1/software/servoy/index.json @@ -0,0 +1,19 @@ +{ + "id": 9002, + "slug": "servoy", + "name": "Servoy", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1688061" + ], + "created_at": "2026-07-10T10:12:42.859042", + "updated_at": "2026-07-10T10:12:42.859042", + "url": "/v1/software/servoy" +} diff --git a/site/public/v1/software/sesam/index.json b/site/public/v1/software/sesam/index.json new file mode 100644 index 000000000000..07367576a84d --- /dev/null +++ b/site/public/v1/software/sesam/index.json @@ -0,0 +1,19 @@ +{ + "id": 9003, + "slug": "sesam", + "name": "SeSam", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q9334673" + ], + "created_at": "2026-07-10T10:12:42.859042", + "updated_at": "2026-07-10T10:12:42.859042", + "url": "/v1/software/sesam" +} diff --git a/site/public/v1/software/sesame-time/index.json b/site/public/v1/software/sesame-time/index.json new file mode 100644 index 000000000000..06a8db3c00c2 --- /dev/null +++ b/site/public/v1/software/sesame-time/index.json @@ -0,0 +1,19 @@ +{ + "id": 9004, + "slug": "sesame-time", + "name": "Sesame Time", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q98214958" + ], + "created_at": "2026-07-10T10:12:42.859042", + "updated_at": "2026-07-10T10:12:42.859042", + "url": "/v1/software/sesame-time" +} diff --git a/site/public/v1/software/sesoil/index.json b/site/public/v1/software/sesoil/index.json new file mode 100644 index 000000000000..080e142da154 --- /dev/null +++ b/site/public/v1/software/sesoil/index.json @@ -0,0 +1,21 @@ +{ + "id": 9005, + "slug": "sesoil", + "name": "SESOIL", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Fortran" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7389868" + ], + "created_at": "2026-07-10T10:12:42.860085", + "updated_at": "2026-07-10T10:12:42.860085", + "url": "/v1/software/sesoil" +} diff --git a/site/public/v1/software/session-manager-subsystem/index.json b/site/public/v1/software/session-manager-subsystem/index.json new file mode 100644 index 000000000000..c4060f6c043b --- /dev/null +++ b/site/public/v1/software/session-manager-subsystem/index.json @@ -0,0 +1,19 @@ +{ + "id": 9006, + "slug": "session-manager-subsystem", + "name": "Session Manager Subsystem", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1337381" + ], + "created_at": "2026-07-10T10:12:42.860085", + "updated_at": "2026-07-10T10:12:42.860085", + "url": "/v1/software/session-manager-subsystem" +} diff --git a/site/public/v1/software/set-a-time/index.json b/site/public/v1/software/set-a-time/index.json new file mode 100644 index 000000000000..f6134b7ed526 --- /dev/null +++ b/site/public/v1/software/set-a-time/index.json @@ -0,0 +1,19 @@ +{ + "id": 9007, + "slug": "set-a-time", + "name": "Set a Time", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q91459260" + ], + "created_at": "2026-07-10T10:12:42.861069", + "updated_at": "2026-07-10T10:12:42.861069", + "url": "/v1/software/set-a-time" +} diff --git a/site/public/v1/software/set-opacity/index.json b/site/public/v1/software/set-opacity/index.json new file mode 100644 index 000000000000..c02d577cc560 --- /dev/null +++ b/site/public/v1/software/set-opacity/index.json @@ -0,0 +1,19 @@ +{ + "id": 9008, + "slug": "set-opacity", + "name": "set_opacity", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975460" + ], + "created_at": "2026-07-10T10:12:42.861069", + "updated_at": "2026-07-10T10:12:42.861069", + "url": "/v1/software/set-opacity" +} diff --git a/site/public/v1/software/setacl/index.json b/site/public/v1/software/setacl/index.json new file mode 100644 index 000000000000..e1d5644dea84 --- /dev/null +++ b/site/public/v1/software/setacl/index.json @@ -0,0 +1,21 @@ +{ + "id": 9009, + "slug": "setacl", + "name": "SetACL", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7456213" + ], + "created_at": "2026-07-10T10:12:42.861975", + "updated_at": "2026-07-10T10:12:42.861975", + "url": "/v1/software/setacl" +} diff --git a/site/public/v1/software/setapp/index.json b/site/public/v1/software/setapp/index.json new file mode 100644 index 000000000000..b2cac187ef82 --- /dev/null +++ b/site/public/v1/software/setapp/index.json @@ -0,0 +1,19 @@ +{ + "id": 9010, + "slug": "setapp", + "name": "Setapp", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q39057888" + ], + "created_at": "2026-07-10T10:12:42.861975", + "updated_at": "2026-07-10T10:12:42.861975", + "url": "/v1/software/setapp" +} diff --git a/site/public/v1/software/setools/index.json b/site/public/v1/software/setools/index.json new file mode 100644 index 000000000000..a911d12faa2d --- /dev/null +++ b/site/public/v1/software/setools/index.json @@ -0,0 +1,19 @@ +{ + "id": 9011, + "slug": "setools", + "name": "setools", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975461" + ], + "created_at": "2026-07-10T10:12:42.861975", + "updated_at": "2026-07-10T10:12:42.861975", + "url": "/v1/software/setools" +} diff --git a/site/public/v1/software/setserial/index.json b/site/public/v1/software/setserial/index.json new file mode 100644 index 000000000000..251eefc86d02 --- /dev/null +++ b/site/public/v1/software/setserial/index.json @@ -0,0 +1,19 @@ +{ + "id": 9012, + "slug": "setserial", + "name": "setserial", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63064946" + ], + "created_at": "2026-07-10T10:12:42.862971", + "updated_at": "2026-07-10T10:12:42.862971", + "url": "/v1/software/setserial" +} diff --git a/site/public/v1/software/sfold/index.json b/site/public/v1/software/sfold/index.json new file mode 100644 index 000000000000..69e5acc8f9b1 --- /dev/null +++ b/site/public/v1/software/sfold/index.json @@ -0,0 +1,19 @@ +{ + "id": 9013, + "slug": "sfold", + "name": "Sfold", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124260382" + ], + "created_at": "2026-07-10T10:12:42.862971", + "updated_at": "2026-07-10T10:12:42.862971", + "url": "/v1/software/sfold" +} diff --git a/site/public/v1/software/sftpplus/index.json b/site/public/v1/software/sftpplus/index.json new file mode 100644 index 000000000000..2424de05751e --- /dev/null +++ b/site/public/v1/software/sftpplus/index.json @@ -0,0 +1,32 @@ +{ + "id": 9014, + "slug": "sftpplus", + "name": "SFTPPlus", + "release_date": "2005-01-01", + "developers": [ + "\"Pro:Atria\"" + ], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [ + "Python" + ], + "licenses": [ + "proprietary license" + ], + "genres": [ + "managed file transfer", + "enterprise software", + "cloud computing" + ], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138496395" + ], + "created_at": "2026-07-10T10:12:42.862971", + "updated_at": "2026-07-10T10:12:42.862971", + "url": "/v1/software/sftpplus" +} diff --git a/site/public/v1/software/sfx/index.json b/site/public/v1/software/sfx/index.json new file mode 100644 index 000000000000..f1f7d6de7a83 --- /dev/null +++ b/site/public/v1/software/sfx/index.json @@ -0,0 +1,19 @@ +{ + "id": 9015, + "slug": "sfx", + "name": "SFX", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q457983" + ], + "created_at": "2026-07-10T10:12:42.863971", + "updated_at": "2026-07-10T10:12:42.863971", + "url": "/v1/software/sfx" +} diff --git a/site/public/v1/software/sg/index.json b/site/public/v1/software/sg/index.json new file mode 100644 index 000000000000..3479ef8d586a --- /dev/null +++ b/site/public/v1/software/sg/index.json @@ -0,0 +1,19 @@ +{ + "id": 9016, + "slug": "sg", + "name": "SG⁺⁺", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121602607" + ], + "created_at": "2026-07-10T10:12:42.863971", + "updated_at": "2026-07-10T10:12:42.863971", + "url": "/v1/software/sg" +} diff --git a/site/public/v1/software/sglang/index.json b/site/public/v1/software/sglang/index.json new file mode 100644 index 000000000000..b4cce307fe16 --- /dev/null +++ b/site/public/v1/software/sglang/index.json @@ -0,0 +1,19 @@ +{ + "id": 9017, + "slug": "sglang", + "name": "SGLang", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139761223" + ], + "created_at": "2026-07-10T10:12:42.863971", + "updated_at": "2026-07-10T10:12:42.863971", + "url": "/v1/software/sglang" +} diff --git a/site/public/v1/software/sgmltools-lite/index.json b/site/public/v1/software/sgmltools-lite/index.json new file mode 100644 index 000000000000..0eec6172ceb3 --- /dev/null +++ b/site/public/v1/software/sgmltools-lite/index.json @@ -0,0 +1,19 @@ +{ + "id": 9018, + "slug": "sgmltools-lite", + "name": "sgmltools-lite", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62865608" + ], + "created_at": "2026-07-10T10:12:42.865039", + "updated_at": "2026-07-10T10:12:42.865039", + "url": "/v1/software/sgmltools-lite" +} diff --git a/site/public/v1/software/sgs-genesis/index.json b/site/public/v1/software/sgs-genesis/index.json new file mode 100644 index 000000000000..8acbde01ea19 --- /dev/null +++ b/site/public/v1/software/sgs-genesis/index.json @@ -0,0 +1,21 @@ +{ + "id": 9019, + "slug": "sgs-genesis", + "name": "SGS Genesis", + "release_date": null, + "developers": [ + "SGS S.A." + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q23583026" + ], + "created_at": "2026-07-10T10:12:42.865039", + "updated_at": "2026-07-10T10:12:42.865039", + "url": "/v1/software/sgs-genesis" +} diff --git a/site/public/v1/software/shaad/index.json b/site/public/v1/software/shaad/index.json new file mode 100644 index 000000000000..20774d8b574c --- /dev/null +++ b/site/public/v1/software/shaad/index.json @@ -0,0 +1,19 @@ +{ + "id": 9020, + "slug": "shaad", + "name": "Shaad", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q96106305" + ], + "created_at": "2026-07-10T10:12:42.866050", + "updated_at": "2026-07-10T10:12:42.866050", + "url": "/v1/software/shaad" +} diff --git a/site/public/v1/software/shaala-darpan/index.json b/site/public/v1/software/shaala-darpan/index.json new file mode 100644 index 000000000000..a338f4fc6caa --- /dev/null +++ b/site/public/v1/software/shaala-darpan/index.json @@ -0,0 +1,19 @@ +{ + "id": 9021, + "slug": "shaala-darpan", + "name": "Shaala Darpan", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q19599582" + ], + "created_at": "2026-07-10T10:12:42.868047", + "updated_at": "2026-07-10T10:12:42.868047", + "url": "/v1/software/shaala-darpan" +} diff --git a/site/public/v1/software/shabbos-app/index.json b/site/public/v1/software/shabbos-app/index.json new file mode 100644 index 000000000000..e2377167ce12 --- /dev/null +++ b/site/public/v1/software/shabbos-app/index.json @@ -0,0 +1,19 @@ +{ + "id": 9022, + "slug": "shabbos-app", + "name": "Shabbos App", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18207596" + ], + "created_at": "2026-07-10T10:12:42.869052", + "updated_at": "2026-07-10T10:12:42.869052", + "url": "/v1/software/shabbos-app" +} diff --git a/site/public/v1/software/shaclex/index.json b/site/public/v1/software/shaclex/index.json new file mode 100644 index 000000000000..d74588eb97f9 --- /dev/null +++ b/site/public/v1/software/shaclex/index.json @@ -0,0 +1,25 @@ +{ + "id": 9023, + "slug": "shaclex", + "name": "SHACLex", + "release_date": null, + "developers": [ + "José Emilio Labra Gayo" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Scala" + ], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q51672819" + ], + "created_at": "2026-07-10T10:12:42.870064", + "updated_at": "2026-07-10T10:12:42.870064", + "url": "/v1/software/shaclex" +} diff --git a/site/public/v1/software/shade-3d/index.json b/site/public/v1/software/shade-3d/index.json new file mode 100644 index 000000000000..f3b6fb148e10 --- /dev/null +++ b/site/public/v1/software/shade-3d/index.json @@ -0,0 +1,19 @@ +{ + "id": 9024, + "slug": "shade-3d", + "name": "Shade 3D", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7460267" + ], + "created_at": "2026-07-10T10:12:42.871064", + "updated_at": "2026-07-10T10:12:42.871064", + "url": "/v1/software/shade-3d" +} diff --git a/site/public/v1/software/shadertoy/index.json b/site/public/v1/software/shadertoy/index.json new file mode 100644 index 000000000000..baa4e3686edc --- /dev/null +++ b/site/public/v1/software/shadertoy/index.json @@ -0,0 +1,21 @@ +{ + "id": 9025, + "slug": "shadertoy", + "name": "Shadertoy", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "OpenGL Shading Language" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28134226" + ], + "created_at": "2026-07-10T10:12:42.871064", + "updated_at": "2026-07-10T10:12:42.871064", + "url": "/v1/software/shadertoy" +} diff --git a/site/public/v1/software/shadow-slice/index.json b/site/public/v1/software/shadow-slice/index.json new file mode 100644 index 000000000000..5d1a283d77a0 --- /dev/null +++ b/site/public/v1/software/shadow-slice/index.json @@ -0,0 +1,23 @@ +{ + "id": 9026, + "slug": "shadow-slice", + "name": "Shadow Slice", + "release_date": null, + "developers": [ + "Febhouse" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [ + "architecture" + ], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138658085" + ], + "created_at": "2026-07-10T10:12:42.872077", + "updated_at": "2026-07-10T10:12:42.872077", + "url": "/v1/software/shadow-slice" +} diff --git a/site/public/v1/software/shadowdragon/index.json b/site/public/v1/software/shadowdragon/index.json new file mode 100644 index 000000000000..3571d176554f --- /dev/null +++ b/site/public/v1/software/shadowdragon/index.json @@ -0,0 +1,19 @@ +{ + "id": 9027, + "slug": "shadowdragon", + "name": "ShadowDragon", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q133785111" + ], + "created_at": "2026-07-10T10:12:42.873026", + "updated_at": "2026-07-10T10:12:42.873026", + "url": "/v1/software/shadowdragon" +} diff --git a/site/public/v1/software/shadows/index.json b/site/public/v1/software/shadows/index.json new file mode 100644 index 000000000000..5fa4fd1e324e --- /dev/null +++ b/site/public/v1/software/shadows/index.json @@ -0,0 +1,21 @@ +{ + "id": 9028, + "slug": "shadows", + "name": "Shadows", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Windows 7" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3481177" + ], + "created_at": "2026-07-10T10:12:42.874054", + "updated_at": "2026-07-10T10:12:42.874054", + "url": "/v1/software/shadows" +} diff --git a/site/public/v1/software/shadowtls/index.json b/site/public/v1/software/shadowtls/index.json new file mode 100644 index 000000000000..dd1581afc26f --- /dev/null +++ b/site/public/v1/software/shadowtls/index.json @@ -0,0 +1,21 @@ +{ + "id": 9029, + "slug": "shadowtls", + "name": "ShadowTLS", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117427580" + ], + "created_at": "2026-07-10T10:12:42.875074", + "updated_at": "2026-07-10T10:12:42.875074", + "url": "/v1/software/shadowtls" +} diff --git a/site/public/v1/software/shairplay/index.json b/site/public/v1/software/shairplay/index.json new file mode 100644 index 000000000000..52e0db649733 --- /dev/null +++ b/site/public/v1/software/shairplay/index.json @@ -0,0 +1,19 @@ +{ + "id": 9030, + "slug": "shairplay", + "name": "shairplay", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975465" + ], + "created_at": "2026-07-10T10:12:42.875074", + "updated_at": "2026-07-10T10:12:42.875074", + "url": "/v1/software/shairplay" +} diff --git a/site/public/v1/software/shake/index.json b/site/public/v1/software/shake/index.json new file mode 100644 index 000000000000..aff22f25f266 --- /dev/null +++ b/site/public/v1/software/shake/index.json @@ -0,0 +1,21 @@ +{ + "id": 9031, + "slug": "shake", + "name": "Shake", + "release_date": null, + "developers": [ + "Apple Inc." + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1603162" + ], + "created_at": "2026-07-10T10:12:42.876046", + "updated_at": "2026-07-10T10:12:42.876046", + "url": "/v1/software/shake" +} diff --git a/site/public/v1/software/shakealert/index.json b/site/public/v1/software/shakealert/index.json new file mode 100644 index 000000000000..d4a00ec02840 --- /dev/null +++ b/site/public/v1/software/shakealert/index.json @@ -0,0 +1,19 @@ +{ + "id": 9032, + "slug": "shakealert", + "name": "ShakeAlert", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25028451" + ], + "created_at": "2026-07-10T10:12:42.876046", + "updated_at": "2026-07-10T10:12:42.876046", + "url": "/v1/software/shakealert" +} diff --git a/site/public/v1/software/shaman/index.json b/site/public/v1/software/shaman/index.json new file mode 100644 index 000000000000..e4ce031e6c63 --- /dev/null +++ b/site/public/v1/software/shaman/index.json @@ -0,0 +1,21 @@ +{ + "id": 9033, + "slug": "shaman", + "name": "Shaman", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "GNU General Public License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q12400442" + ], + "created_at": "2026-07-10T10:12:42.876974", + "updated_at": "2026-07-10T10:12:42.876974", + "url": "/v1/software/shaman" +} diff --git a/site/public/v1/software/shape-extension/index.json b/site/public/v1/software/shape-extension/index.json new file mode 100644 index 000000000000..8802025c830a --- /dev/null +++ b/site/public/v1/software/shape-extension/index.json @@ -0,0 +1,21 @@ +{ + "id": 9034, + "slug": "shape-extension", + "name": "Shape extension", + "release_date": null, + "developers": [ + "X.Org Foundation" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7489230" + ], + "created_at": "2026-07-10T10:12:42.877971", + "updated_at": "2026-07-10T10:12:42.877971", + "url": "/v1/software/shape-extension" +} diff --git a/site/public/v1/software/shapely/index.json b/site/public/v1/software/shapely/index.json new file mode 100644 index 000000000000..27d1061d2d4b --- /dev/null +++ b/site/public/v1/software/shapely/index.json @@ -0,0 +1,24 @@ +{ + "id": 9035, + "slug": "shapely", + "name": "Shapely", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "OpenBSD", + "FreeBSD" + ], + "programming_languages": [], + "licenses": [ + "3-clause BSD License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975466" + ], + "created_at": "2026-07-10T10:12:42.877971", + "updated_at": "2026-07-10T10:12:42.877971", + "url": "/v1/software/shapely" +} diff --git a/site/public/v1/software/shapley/index.json b/site/public/v1/software/shapley/index.json new file mode 100644 index 000000000000..9ee3e610d2bf --- /dev/null +++ b/site/public/v1/software/shapley/index.json @@ -0,0 +1,19 @@ +{ + "id": 9036, + "slug": "shapley", + "name": "shapley", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105154408" + ], + "created_at": "2026-07-10T10:12:42.877971", + "updated_at": "2026-07-10T10:12:42.877971", + "url": "/v1/software/shapley" +} diff --git a/site/public/v1/software/shapr/index.json b/site/public/v1/software/shapr/index.json new file mode 100644 index 000000000000..edf754b740a8 --- /dev/null +++ b/site/public/v1/software/shapr/index.json @@ -0,0 +1,19 @@ +{ + "id": 9037, + "slug": "shapr", + "name": "Shapr", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60742643" + ], + "created_at": "2026-07-10T10:12:42.878970", + "updated_at": "2026-07-10T10:12:42.878970", + "url": "/v1/software/shapr" +} diff --git a/site/public/v1/software/shapr3d/index.json b/site/public/v1/software/shapr3d/index.json new file mode 100644 index 000000000000..a1578e93b2f4 --- /dev/null +++ b/site/public/v1/software/shapr3d/index.json @@ -0,0 +1,21 @@ +{ + "id": 9038, + "slug": "shapr3d", + "name": "Shapr3D", + "release_date": null, + "developers": [ + "Shapr3D Zrt" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131824188" + ], + "created_at": "2026-07-10T10:12:42.878970", + "updated_at": "2026-07-10T10:12:42.878970", + "url": "/v1/software/shapr3d" +} diff --git a/site/public/v1/software/sharc-molecular-dynamics-software/index.json b/site/public/v1/software/sharc-molecular-dynamics-software/index.json new file mode 100644 index 000000000000..e69d713cab47 --- /dev/null +++ b/site/public/v1/software/sharc-molecular-dynamics-software/index.json @@ -0,0 +1,21 @@ +{ + "id": 9039, + "slug": "sharc-molecular-dynamics-software", + "name": "SHARC molecular dynamics software", + "release_date": "2014-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Fortran" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22908694" + ], + "created_at": "2026-07-10T10:12:42.878970", + "updated_at": "2026-07-10T10:12:42.878970", + "url": "/v1/software/sharc-molecular-dynamics-software" +} diff --git a/site/public/v1/software/sharecad/index.json b/site/public/v1/software/sharecad/index.json new file mode 100644 index 000000000000..e09f1fe778ef --- /dev/null +++ b/site/public/v1/software/sharecad/index.json @@ -0,0 +1,21 @@ +{ + "id": 9040, + "slug": "sharecad", + "name": "ShareCAD", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q20010679" + ], + "created_at": "2026-07-10T10:12:42.878970", + "updated_at": "2026-07-10T10:12:42.878970", + "url": "/v1/software/sharecad" +} diff --git a/site/public/v1/software/sharescope/index.json b/site/public/v1/software/sharescope/index.json new file mode 100644 index 000000000000..b0f5360ddc09 --- /dev/null +++ b/site/public/v1/software/sharescope/index.json @@ -0,0 +1,19 @@ +{ + "id": 9041, + "slug": "sharescope", + "name": "ShareScope", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7489491" + ], + "created_at": "2026-07-10T10:12:42.880044", + "updated_at": "2026-07-10T10:12:42.880044", + "url": "/v1/software/sharescope" +} diff --git a/site/public/v1/software/sharutils/index.json b/site/public/v1/software/sharutils/index.json new file mode 100644 index 000000000000..336e65ea6c3c --- /dev/null +++ b/site/public/v1/software/sharutils/index.json @@ -0,0 +1,21 @@ +{ + "id": 9042, + "slug": "sharutils", + "name": "Sharutils", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Unix-like operating system" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62865602" + ], + "created_at": "2026-07-10T10:12:42.880044", + "updated_at": "2026-07-10T10:12:42.880044", + "url": "/v1/software/sharutils" +} diff --git a/site/public/v1/software/shash/index.json b/site/public/v1/software/shash/index.json new file mode 100644 index 000000000000..7d9842b5a96c --- /dev/null +++ b/site/public/v1/software/shash/index.json @@ -0,0 +1,19 @@ +{ + "id": 9043, + "slug": "shash", + "name": "shash", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63064891" + ], + "created_at": "2026-07-10T10:12:42.880044", + "updated_at": "2026-07-10T10:12:42.880044", + "url": "/v1/software/shash" +} diff --git a/site/public/v1/software/shashlik/index.json b/site/public/v1/software/shashlik/index.json new file mode 100644 index 000000000000..5100efde942e --- /dev/null +++ b/site/public/v1/software/shashlik/index.json @@ -0,0 +1,19 @@ +{ + "id": 9044, + "slug": "shashlik", + "name": "Shashlik", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22938812" + ], + "created_at": "2026-07-10T10:12:42.881046", + "updated_at": "2026-07-10T10:12:42.881046", + "url": "/v1/software/shashlik" +} diff --git a/site/public/v1/software/sheepdog/index.json b/site/public/v1/software/sheepdog/index.json new file mode 100644 index 000000000000..314a81b0e61e --- /dev/null +++ b/site/public/v1/software/sheepdog/index.json @@ -0,0 +1,21 @@ +{ + "id": 9045, + "slug": "sheepdog", + "name": "Sheepdog", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "GNU General Public License, version 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q29364650" + ], + "created_at": "2026-07-10T10:12:42.881046", + "updated_at": "2026-07-10T10:12:42.881046", + "url": "/v1/software/sheepdog" +} diff --git a/site/public/v1/software/sheerdns/index.json b/site/public/v1/software/sheerdns/index.json new file mode 100644 index 000000000000..e1b76176be4a --- /dev/null +++ b/site/public/v1/software/sheerdns/index.json @@ -0,0 +1,19 @@ +{ + "id": 9046, + "slug": "sheerdns", + "name": "sheerdns", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065128" + ], + "created_at": "2026-07-10T10:12:42.881046", + "updated_at": "2026-07-10T10:12:42.881046", + "url": "/v1/software/sheerdns" +} diff --git a/site/public/v1/software/sheetster/index.json b/site/public/v1/software/sheetster/index.json new file mode 100644 index 000000000000..abe290aced81 --- /dev/null +++ b/site/public/v1/software/sheetster/index.json @@ -0,0 +1,21 @@ +{ + "id": 9047, + "slug": "sheetster", + "name": "Sheetster", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Java" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7492550" + ], + "created_at": "2026-07-10T10:12:42.882067", + "updated_at": "2026-07-10T10:12:42.882067", + "url": "/v1/software/sheetster" +} diff --git a/site/public/v1/software/shelx/index.json b/site/public/v1/software/shelx/index.json new file mode 100644 index 000000000000..31dda7cb85c1 --- /dev/null +++ b/site/public/v1/software/shelx/index.json @@ -0,0 +1,21 @@ +{ + "id": 9048, + "slug": "shelx", + "name": "SHELX", + "release_date": null, + "developers": [ + "George M. Sheldrick" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q51715613" + ], + "created_at": "2026-07-10T10:12:42.882067", + "updated_at": "2026-07-10T10:12:42.882067", + "url": "/v1/software/shelx" +} diff --git a/site/public/v1/software/shelxl/index.json b/site/public/v1/software/shelxl/index.json new file mode 100644 index 000000000000..1cf281b2bc98 --- /dev/null +++ b/site/public/v1/software/shelxl/index.json @@ -0,0 +1,21 @@ +{ + "id": 9049, + "slug": "shelxl", + "name": "SHELXL", + "release_date": null, + "developers": [ + "George M. Sheldrick" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q51795628" + ], + "created_at": "2026-07-10T10:12:42.882067", + "updated_at": "2026-07-10T10:12:42.882067", + "url": "/v1/software/shelxl" +} diff --git a/site/public/v1/software/shelxt/index.json b/site/public/v1/software/shelxt/index.json new file mode 100644 index 000000000000..80b25f4ce970 --- /dev/null +++ b/site/public/v1/software/shelxt/index.json @@ -0,0 +1,21 @@ +{ + "id": 9050, + "slug": "shelxt", + "name": "SHELXT", + "release_date": null, + "developers": [ + "George M. Sheldrick" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q51795853" + ], + "created_at": "2026-07-10T10:12:42.883052", + "updated_at": "2026-07-10T10:12:42.883052", + "url": "/v1/software/shelxt" +} diff --git a/site/public/v1/software/sherpa/index.json b/site/public/v1/software/sherpa/index.json new file mode 100644 index 000000000000..eb2eac70f944 --- /dev/null +++ b/site/public/v1/software/sherpa/index.json @@ -0,0 +1,21 @@ +{ + "id": 9051, + "slug": "sherpa", + "name": "sherpa", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Apache Software License 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122829338" + ], + "created_at": "2026-07-10T10:12:42.883052", + "updated_at": "2026-07-10T10:12:42.883052", + "url": "/v1/software/sherpa" +} diff --git a/site/public/v1/software/shetran/index.json b/site/public/v1/software/shetran/index.json new file mode 100644 index 000000000000..fa13614c2845 --- /dev/null +++ b/site/public/v1/software/shetran/index.json @@ -0,0 +1,19 @@ +{ + "id": 9052, + "slug": "shetran", + "name": "SHETRAN", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7390194" + ], + "created_at": "2026-07-10T10:12:42.883052", + "updated_at": "2026-07-10T10:12:42.883052", + "url": "/v1/software/shetran" +} diff --git a/site/public/v1/software/shex-ex/index.json b/site/public/v1/software/shex-ex/index.json new file mode 100644 index 000000000000..6417efffd3e9 --- /dev/null +++ b/site/public/v1/software/shex-ex/index.json @@ -0,0 +1,23 @@ +{ + "id": 9053, + "slug": "shex-ex", + "name": "ShEx.ex", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Elixir" + ], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q65588897" + ], + "created_at": "2026-07-10T10:12:42.883052", + "updated_at": "2026-07-10T10:12:42.883052", + "url": "/v1/software/shex-ex" +} diff --git a/site/public/v1/software/shex-js/index.json b/site/public/v1/software/shex-js/index.json new file mode 100644 index 000000000000..5dfab6886cc1 --- /dev/null +++ b/site/public/v1/software/shex-js/index.json @@ -0,0 +1,23 @@ +{ + "id": 9054, + "slug": "shex-js", + "name": "shex.js", + "release_date": null, + "developers": [ + "Eric G. Prud'hommeaux" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q51672386" + ], + "created_at": "2026-07-10T10:12:42.884030", + "updated_at": "2026-07-10T10:12:42.884030", + "url": "/v1/software/shex-js" +} diff --git a/site/public/v1/software/shex-s/index.json b/site/public/v1/software/shex-s/index.json new file mode 100644 index 000000000000..f7f6f05fe50c --- /dev/null +++ b/site/public/v1/software/shex-s/index.json @@ -0,0 +1,25 @@ +{ + "id": 9055, + "slug": "shex-s", + "name": "ShEx-s", + "release_date": null, + "developers": [ + "José Emilio Labra Gayo" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Scala" + ], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112700944" + ], + "created_at": "2026-07-10T10:12:42.884030", + "updated_at": "2026-07-10T10:12:42.884030", + "url": "/v1/software/shex-s" +} diff --git a/site/public/v1/software/shex2-online-validator/index.json b/site/public/v1/software/shex2-online-validator/index.json new file mode 100644 index 000000000000..da64b8692719 --- /dev/null +++ b/site/public/v1/software/shex2-online-validator/index.json @@ -0,0 +1,23 @@ +{ + "id": 9056, + "slug": "shex2-online-validator", + "name": "ShEx2 Online Validator", + "release_date": null, + "developers": [ + "Eric G. Prud'hommeaux" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q65921524" + ], + "created_at": "2026-07-10T10:12:42.884030", + "updated_at": "2026-07-10T10:12:42.884030", + "url": "/v1/software/shex2-online-validator" +} diff --git a/site/public/v1/software/sheypoor-software/index.json b/site/public/v1/software/sheypoor-software/index.json new file mode 100644 index 000000000000..12d398b2a74f --- /dev/null +++ b/site/public/v1/software/sheypoor-software/index.json @@ -0,0 +1,19 @@ +{ + "id": 9057, + "slug": "sheypoor-software", + "name": "Sheypoor (software)", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28714127" + ], + "created_at": "2026-07-10T10:12:42.885067", + "updated_at": "2026-07-10T10:12:42.885067", + "url": "/v1/software/sheypoor-software" +} diff --git a/site/public/v1/software/shibboleth-identity-provider/index.json b/site/public/v1/software/shibboleth-identity-provider/index.json new file mode 100644 index 000000000000..e5726f2a0493 --- /dev/null +++ b/site/public/v1/software/shibboleth-identity-provider/index.json @@ -0,0 +1,27 @@ +{ + "id": 9058, + "slug": "shibboleth-identity-provider", + "name": "Shibboleth Identity Provider", + "release_date": null, + "developers": [ + "Shibboleth Consortium" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [ + "Java" + ], + "licenses": [ + "Apache Software License 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120732369" + ], + "created_at": "2026-07-10T10:12:42.885067", + "updated_at": "2026-07-10T10:12:42.885067", + "url": "/v1/software/shibboleth-identity-provider" +} diff --git a/site/public/v1/software/shibboleth-service-provider/index.json b/site/public/v1/software/shibboleth-service-provider/index.json new file mode 100644 index 000000000000..0e51aa54e985 --- /dev/null +++ b/site/public/v1/software/shibboleth-service-provider/index.json @@ -0,0 +1,21 @@ +{ + "id": 9059, + "slug": "shibboleth-service-provider", + "name": "Shibboleth Service Provider", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Apache Software License 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139930076" + ], + "created_at": "2026-07-10T10:12:42.885067", + "updated_at": "2026-07-10T10:12:42.885067", + "url": "/v1/software/shibboleth-service-provider" +} diff --git a/site/public/v1/software/shibboleth/index.json b/site/public/v1/software/shibboleth/index.json new file mode 100644 index 000000000000..8bca67500aab --- /dev/null +++ b/site/public/v1/software/shibboleth/index.json @@ -0,0 +1,25 @@ +{ + "id": 9060, + "slug": "shibboleth", + "name": "Shibboleth", + "release_date": null, + "developers": [ + "Shibboleth Consortium" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "Apache Software License 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q458022" + ], + "created_at": "2026-07-10T10:12:42.885067", + "updated_at": "2026-07-10T10:12:42.885067", + "url": "/v1/software/shibboleth" +} diff --git a/site/public/v1/software/shiftcor/index.json b/site/public/v1/software/shiftcor/index.json new file mode 100644 index 000000000000..826a79f16454 --- /dev/null +++ b/site/public/v1/software/shiftcor/index.json @@ -0,0 +1,19 @@ +{ + "id": 9061, + "slug": "shiftcor", + "name": "SHIFTCOR", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7390206" + ], + "created_at": "2026-07-10T10:12:42.886054", + "updated_at": "2026-07-10T10:12:42.886054", + "url": "/v1/software/shiftcor" +} diff --git a/site/public/v1/software/shigofumi/index.json b/site/public/v1/software/shigofumi/index.json new file mode 100644 index 000000000000..d5a63dac79e0 --- /dev/null +++ b/site/public/v1/software/shigofumi/index.json @@ -0,0 +1,19 @@ +{ + "id": 9062, + "slug": "shigofumi", + "name": "shigofumi", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28941033" + ], + "created_at": "2026-07-10T10:12:42.886054", + "updated_at": "2026-07-10T10:12:42.886054", + "url": "/v1/software/shigofumi" +} diff --git a/site/public/v1/software/shikoku-methane/index.json b/site/public/v1/software/shikoku-methane/index.json new file mode 100644 index 000000000000..9ea9b8bc9a5f --- /dev/null +++ b/site/public/v1/software/shikoku-methane/index.json @@ -0,0 +1,19 @@ +{ + "id": 9063, + "slug": "shikoku-methane", + "name": "Shikoku Methane", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140298563" + ], + "created_at": "2026-07-10T10:12:42.886054", + "updated_at": "2026-07-10T10:12:42.887034", + "url": "/v1/software/shikoku-methane" +} diff --git a/site/public/v1/software/shimmercat/index.json b/site/public/v1/software/shimmercat/index.json new file mode 100644 index 000000000000..34393c7321be --- /dev/null +++ b/site/public/v1/software/shimmercat/index.json @@ -0,0 +1,21 @@ +{ + "id": 9064, + "slug": "shimmercat", + "name": "ShimmerCat", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "macOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q24589696" + ], + "created_at": "2026-07-10T10:12:42.887034", + "updated_at": "2026-07-10T10:12:42.887034", + "url": "/v1/software/shimmercat" +} diff --git a/site/public/v1/software/shine-expert-system/index.json b/site/public/v1/software/shine-expert-system/index.json new file mode 100644 index 000000000000..9e14495a2f9d --- /dev/null +++ b/site/public/v1/software/shine-expert-system/index.json @@ -0,0 +1,19 @@ +{ + "id": 9065, + "slug": "shine-expert-system", + "name": "SHINE Expert System", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7390212" + ], + "created_at": "2026-07-10T10:12:42.887034", + "updated_at": "2026-07-10T10:12:42.887034", + "url": "/v1/software/shine-expert-system" +} diff --git a/site/public/v1/software/shiny-dracor/index.json b/site/public/v1/software/shiny-dracor/index.json new file mode 100644 index 000000000000..d3b720814ea4 --- /dev/null +++ b/site/public/v1/software/shiny-dracor/index.json @@ -0,0 +1,19 @@ +{ + "id": 9066, + "slug": "shiny-dracor", + "name": "Shiny Dracor", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084548" + ], + "created_at": "2026-07-10T10:12:42.887034", + "updated_at": "2026-07-10T10:12:42.887034", + "url": "/v1/software/shiny-dracor" +} diff --git a/site/public/v1/software/shiny/index.json b/site/public/v1/software/shiny/index.json new file mode 100644 index 000000000000..f02616b9e6a4 --- /dev/null +++ b/site/public/v1/software/shiny/index.json @@ -0,0 +1,28 @@ +{ + "id": 9067, + "slug": "shiny", + "name": "Shiny", + "release_date": null, + "developers": [ + "Posit PBC", + "Joe Cheng", + "Carson Paul Sievert", + "Garrick Aden-Buie" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "R" + ], + "licenses": [ + "GNU General Public License, version 3.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q90803460" + ], + "created_at": "2026-07-10T10:12:42.888049", + "updated_at": "2026-07-10T10:12:42.888049", + "url": "/v1/software/shiny" +} diff --git a/site/public/v1/software/shipserv/index.json b/site/public/v1/software/shipserv/index.json new file mode 100644 index 000000000000..020eee9b3c63 --- /dev/null +++ b/site/public/v1/software/shipserv/index.json @@ -0,0 +1,19 @@ +{ + "id": 9068, + "slug": "shipserv", + "name": "Shipserv", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7498111" + ], + "created_at": "2026-07-10T10:12:42.888049", + "updated_at": "2026-07-10T10:12:42.888049", + "url": "/v1/software/shipserv" +} diff --git a/site/public/v1/software/shixxnote/index.json b/site/public/v1/software/shixxnote/index.json new file mode 100644 index 000000000000..4d138611adc5 --- /dev/null +++ b/site/public/v1/software/shixxnote/index.json @@ -0,0 +1,19 @@ +{ + "id": 9069, + "slug": "shixxnote", + "name": "ShixxNOTE", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1563342" + ], + "created_at": "2026-07-10T10:12:42.888049", + "updated_at": "2026-07-10T10:12:42.888049", + "url": "/v1/software/shixxnote" +} diff --git a/site/public/v1/software/shmm/index.json b/site/public/v1/software/shmm/index.json new file mode 100644 index 000000000000..09b76acc4194 --- /dev/null +++ b/site/public/v1/software/shmm/index.json @@ -0,0 +1,19 @@ +{ + "id": 9070, + "slug": "shmm", + "name": "Shmm", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76186458" + ], + "created_at": "2026-07-10T10:12:42.889060", + "updated_at": "2026-07-10T10:12:42.889060", + "url": "/v1/software/shmm" +} diff --git a/site/public/v1/software/shntool/index.json b/site/public/v1/software/shntool/index.json new file mode 100644 index 000000000000..7a1e7a148d59 --- /dev/null +++ b/site/public/v1/software/shntool/index.json @@ -0,0 +1,19 @@ +{ + "id": 9071, + "slug": "shntool", + "name": "shntool", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124211968" + ], + "created_at": "2026-07-10T10:12:42.889060", + "updated_at": "2026-07-10T10:12:42.889060", + "url": "/v1/software/shntool" +} diff --git a/site/public/v1/software/shop-diagnostic/index.json b/site/public/v1/software/shop-diagnostic/index.json new file mode 100644 index 000000000000..2997a9073a49 --- /dev/null +++ b/site/public/v1/software/shop-diagnostic/index.json @@ -0,0 +1,19 @@ +{ + "id": 9072, + "slug": "shop-diagnostic", + "name": "Shop Diagnostic", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140186041" + ], + "created_at": "2026-07-10T10:12:42.889060", + "updated_at": "2026-07-10T10:12:42.889060", + "url": "/v1/software/shop-diagnostic" +} diff --git a/site/public/v1/software/shop-script/index.json b/site/public/v1/software/shop-script/index.json new file mode 100644 index 000000000000..462ce1f7566c --- /dev/null +++ b/site/public/v1/software/shop-script/index.json @@ -0,0 +1,25 @@ +{ + "id": 9073, + "slug": "shop-script", + "name": "Shop-Script", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "cross-platform" + ], + "programming_languages": [ + "PHP" + ], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q29364742" + ], + "created_at": "2026-07-10T10:12:42.889060", + "updated_at": "2026-07-10T10:12:42.890058", + "url": "/v1/software/shop-script" +} diff --git a/site/public/v1/software/shopaccino/index.json b/site/public/v1/software/shopaccino/index.json new file mode 100644 index 000000000000..0cb8f9b6eb98 --- /dev/null +++ b/site/public/v1/software/shopaccino/index.json @@ -0,0 +1,23 @@ +{ + "id": 9074, + "slug": "shopaccino", + "name": "Shopaccino", + "release_date": null, + "developers": [ + "I Solution Microsystems Private Limited" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140244530" + ], + "created_at": "2026-07-10T10:12:42.890058", + "updated_at": "2026-07-10T10:12:42.890058", + "url": "/v1/software/shopaccino" +} diff --git a/site/public/v1/software/shoper-s-a/index.json b/site/public/v1/software/shoper-s-a/index.json new file mode 100644 index 000000000000..cc9417f3fb47 --- /dev/null +++ b/site/public/v1/software/shoper-s-a/index.json @@ -0,0 +1,19 @@ +{ + "id": 9075, + "slug": "shoper-s-a", + "name": "Shoper S.A.", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18604616" + ], + "created_at": "2026-07-10T10:12:42.890058", + "updated_at": "2026-07-10T10:12:42.890058", + "url": "/v1/software/shoper-s-a" +} diff --git a/site/public/v1/software/shopping-centre-tycoon/index.json b/site/public/v1/software/shopping-centre-tycoon/index.json new file mode 100644 index 000000000000..99b70f63fa42 --- /dev/null +++ b/site/public/v1/software/shopping-centre-tycoon/index.json @@ -0,0 +1,19 @@ +{ + "id": 9076, + "slug": "shopping-centre-tycoon", + "name": "Shopping Centre Tycoon", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140361326" + ], + "created_at": "2026-07-10T10:12:42.891083", + "updated_at": "2026-07-10T10:12:42.891083", + "url": "/v1/software/shopping-centre-tycoon" +} diff --git a/site/public/v1/software/shopsavvy/index.json b/site/public/v1/software/shopsavvy/index.json new file mode 100644 index 000000000000..edc257096dc8 --- /dev/null +++ b/site/public/v1/software/shopsavvy/index.json @@ -0,0 +1,19 @@ +{ + "id": 9077, + "slug": "shopsavvy", + "name": "ShopSavvy", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7501099" + ], + "created_at": "2026-07-10T10:12:42.891083", + "updated_at": "2026-07-10T10:12:42.891083", + "url": "/v1/software/shopsavvy" +} diff --git a/site/public/v1/software/short-oligonucleotide-analysis-package/index.json b/site/public/v1/software/short-oligonucleotide-analysis-package/index.json new file mode 100644 index 000000000000..3f2293607e1a --- /dev/null +++ b/site/public/v1/software/short-oligonucleotide-analysis-package/index.json @@ -0,0 +1,19 @@ +{ + "id": 9078, + "slug": "short-oligonucleotide-analysis-package", + "name": "Short Oligonucleotide Analysis Package", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7501864" + ], + "created_at": "2026-07-10T10:12:42.891083", + "updated_at": "2026-07-10T10:12:42.891083", + "url": "/v1/software/short-oligonucleotide-analysis-package" +} diff --git a/site/public/v1/software/shortcuts/index.json b/site/public/v1/software/shortcuts/index.json new file mode 100644 index 000000000000..d63098d12ee2 --- /dev/null +++ b/site/public/v1/software/shortcuts/index.json @@ -0,0 +1,21 @@ +{ + "id": 9079, + "slug": "shortcuts", + "name": "Shortcuts", + "release_date": null, + "developers": [ + "Apple Inc." + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q30602204" + ], + "created_at": "2026-07-10T10:12:42.891083", + "updated_at": "2026-07-10T10:12:42.891083", + "url": "/v1/software/shortcuts" +} diff --git a/site/public/v1/software/shotgrid/index.json b/site/public/v1/software/shotgrid/index.json new file mode 100644 index 000000000000..728c199d1a65 --- /dev/null +++ b/site/public/v1/software/shotgrid/index.json @@ -0,0 +1,21 @@ +{ + "id": 9080, + "slug": "shotgrid", + "name": "ShotGrid", + "release_date": null, + "developers": [ + "Autodesk" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106910851" + ], + "created_at": "2026-07-10T10:12:42.892089", + "updated_at": "2026-07-10T10:12:42.892089", + "url": "/v1/software/shotgrid" +} diff --git a/site/public/v1/software/shotty/index.json b/site/public/v1/software/shotty/index.json new file mode 100644 index 000000000000..ba2ccdd52546 --- /dev/null +++ b/site/public/v1/software/shotty/index.json @@ -0,0 +1,21 @@ +{ + "id": 9081, + "slug": "shotty", + "name": "Shotty", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2280087" + ], + "created_at": "2026-07-10T10:12:42.892089", + "updated_at": "2026-07-10T10:12:42.892089", + "url": "/v1/software/shotty" +} diff --git a/site/public/v1/software/should-i-remove-it/index.json b/site/public/v1/software/should-i-remove-it/index.json new file mode 100644 index 000000000000..3cb01fc9c4c6 --- /dev/null +++ b/site/public/v1/software/should-i-remove-it/index.json @@ -0,0 +1,21 @@ +{ + "id": 9082, + "slug": "should-i-remove-it", + "name": "Should I Remove It?", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17048671" + ], + "created_at": "2026-07-10T10:12:42.892089", + "updated_at": "2026-07-10T10:12:42.892089", + "url": "/v1/software/should-i-remove-it" +} diff --git a/site/public/v1/software/shout/index.json b/site/public/v1/software/shout/index.json new file mode 100644 index 000000000000..0b685ec583b3 --- /dev/null +++ b/site/public/v1/software/shout/index.json @@ -0,0 +1,19 @@ +{ + "id": 9083, + "slug": "shout", + "name": "shout", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065462" + ], + "created_at": "2026-07-10T10:12:42.893030", + "updated_at": "2026-07-10T10:12:42.893030", + "url": "/v1/software/shout" +} diff --git a/site/public/v1/software/shoverand/index.json b/site/public/v1/software/shoverand/index.json new file mode 100644 index 000000000000..c17d5d0572bc --- /dev/null +++ b/site/public/v1/software/shoverand/index.json @@ -0,0 +1,19 @@ +{ + "id": 9084, + "slug": "shoverand", + "name": "ShoveRand", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123199982" + ], + "created_at": "2026-07-10T10:12:42.893030", + "updated_at": "2026-07-10T10:12:42.893030", + "url": "/v1/software/shoverand" +} diff --git a/site/public/v1/software/showdocument/index.json b/site/public/v1/software/showdocument/index.json new file mode 100644 index 000000000000..7868dccabffa --- /dev/null +++ b/site/public/v1/software/showdocument/index.json @@ -0,0 +1,19 @@ +{ + "id": 9085, + "slug": "showdocument", + "name": "ShowDocument", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7502911" + ], + "created_at": "2026-07-10T10:12:42.893030", + "updated_at": "2026-07-10T10:12:42.893030", + "url": "/v1/software/showdocument" +} diff --git a/site/public/v1/software/showeq/index.json b/site/public/v1/software/showeq/index.json new file mode 100644 index 000000000000..be88c28325a5 --- /dev/null +++ b/site/public/v1/software/showeq/index.json @@ -0,0 +1,19 @@ +{ + "id": 9086, + "slug": "showeq", + "name": "ShowEQ", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7502913" + ], + "created_at": "2026-07-10T10:12:42.894081", + "updated_at": "2026-07-10T10:12:42.894081", + "url": "/v1/software/showeq" +} diff --git a/site/public/v1/software/showplace/index.json b/site/public/v1/software/showplace/index.json new file mode 100644 index 000000000000..c0942bdb25d6 --- /dev/null +++ b/site/public/v1/software/showplace/index.json @@ -0,0 +1,19 @@ +{ + "id": 9087, + "slug": "showplace", + "name": "Showplace", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q30644762" + ], + "created_at": "2026-07-10T10:12:42.894081", + "updated_at": "2026-07-10T10:12:42.894081", + "url": "/v1/software/showplace" +} diff --git a/site/public/v1/software/showtime-skill-pack/index.json b/site/public/v1/software/showtime-skill-pack/index.json new file mode 100644 index 000000000000..d9eaa856b49a --- /dev/null +++ b/site/public/v1/software/showtime-skill-pack/index.json @@ -0,0 +1,21 @@ +{ + "id": 9088, + "slug": "showtime-skill-pack", + "name": "Showtime (skill pack)", + "release_date": null, + "developers": [ + "Mudd Ventures" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140466809" + ], + "created_at": "2026-07-10T10:12:42.894081", + "updated_at": "2026-07-10T10:12:42.894081", + "url": "/v1/software/showtime-skill-pack" +} diff --git a/site/public/v1/software/shre/index.json b/site/public/v1/software/shre/index.json new file mode 100644 index 000000000000..ba7a76555d0d --- /dev/null +++ b/site/public/v1/software/shre/index.json @@ -0,0 +1,19 @@ +{ + "id": 9089, + "slug": "shre", + "name": "Shre", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140393345" + ], + "created_at": "2026-07-10T10:12:42.895054", + "updated_at": "2026-07-10T10:12:42.895054", + "url": "/v1/software/shre" +} diff --git a/site/public/v1/software/shredder-1-0/index.json b/site/public/v1/software/shredder-1-0/index.json new file mode 100644 index 000000000000..e201275cb4ba --- /dev/null +++ b/site/public/v1/software/shredder-1-0/index.json @@ -0,0 +1,19 @@ +{ + "id": 9090, + "slug": "shredder-1-0", + "name": "Shredder 1.0", + "release_date": "1998-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7503456" + ], + "created_at": "2026-07-10T10:12:42.895054", + "updated_at": "2026-07-10T10:12:42.895054", + "url": "/v1/software/shredder-1-0" +} diff --git a/site/public/v1/software/shrutlekhan-rajbhasha/index.json b/site/public/v1/software/shrutlekhan-rajbhasha/index.json new file mode 100644 index 000000000000..aeaff2419774 --- /dev/null +++ b/site/public/v1/software/shrutlekhan-rajbhasha/index.json @@ -0,0 +1,19 @@ +{ + "id": 9091, + "slug": "shrutlekhan-rajbhasha", + "name": "Shrutlekhan-Rajbhasha", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q12454742" + ], + "created_at": "2026-07-10T10:12:42.895054", + "updated_at": "2026-07-10T10:12:42.895054", + "url": "/v1/software/shrutlekhan-rajbhasha" +} diff --git a/site/public/v1/software/shtool/index.json b/site/public/v1/software/shtool/index.json new file mode 100644 index 000000000000..57dfcdbc9d64 --- /dev/null +++ b/site/public/v1/software/shtool/index.json @@ -0,0 +1,19 @@ +{ + "id": 9092, + "slug": "shtool", + "name": "Shtool", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76186471" + ], + "created_at": "2026-07-10T10:12:42.896034", + "updated_at": "2026-07-10T10:12:42.896034", + "url": "/v1/software/shtool" +} diff --git a/site/public/v1/software/shutterstock-for-ipad/index.json b/site/public/v1/software/shutterstock-for-ipad/index.json new file mode 100644 index 000000000000..859a47d12fe8 --- /dev/null +++ b/site/public/v1/software/shutterstock-for-ipad/index.json @@ -0,0 +1,19 @@ +{ + "id": 9093, + "slug": "shutterstock-for-ipad", + "name": "Shutterstock for iPad", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7505680" + ], + "created_at": "2026-07-10T10:12:42.896034", + "updated_at": "2026-07-10T10:12:42.896034", + "url": "/v1/software/shutterstock-for-ipad" +} diff --git a/site/public/v1/software/shyster/index.json b/site/public/v1/software/shyster/index.json new file mode 100644 index 000000000000..dd1bf271438f --- /dev/null +++ b/site/public/v1/software/shyster/index.json @@ -0,0 +1,23 @@ +{ + "id": 9094, + "slug": "shyster", + "name": "SHYSTER", + "release_date": null, + "developers": [ + "James Popple" + ], + "publishers": [], + "operating_systems": [ + "Unix-like operating system" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7506033" + ], + "created_at": "2026-07-10T10:12:42.896034", + "updated_at": "2026-07-10T10:12:42.896034", + "url": "/v1/software/shyster" +} diff --git a/site/public/v1/software/si-dih-search-engine-and-repository/index.json b/site/public/v1/software/si-dih-search-engine-and-repository/index.json new file mode 100644 index 000000000000..e1aeb3d280f7 --- /dev/null +++ b/site/public/v1/software/si-dih-search-engine-and-repository/index.json @@ -0,0 +1,19 @@ +{ + "id": 9095, + "slug": "si-dih-search-engine-and-repository", + "name": "SI-DIH Search Engine and Repository", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084549" + ], + "created_at": "2026-07-10T10:12:42.897041", + "updated_at": "2026-07-10T10:12:42.897041", + "url": "/v1/software/si-dih-search-engine-and-repository" +} diff --git a/site/public/v1/software/siafi/index.json b/site/public/v1/software/siafi/index.json new file mode 100644 index 000000000000..a0b099f03a0f --- /dev/null +++ b/site/public/v1/software/siafi/index.json @@ -0,0 +1,19 @@ +{ + "id": 9096, + "slug": "siafi", + "name": "SIAFI", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10372064" + ], + "created_at": "2026-07-10T10:12:42.897041", + "updated_at": "2026-07-10T10:12:42.897041", + "url": "/v1/software/siafi" +} diff --git a/site/public/v1/software/siard-suite/index.json b/site/public/v1/software/siard-suite/index.json new file mode 100644 index 000000000000..af607676be10 --- /dev/null +++ b/site/public/v1/software/siard-suite/index.json @@ -0,0 +1,19 @@ +{ + "id": 9097, + "slug": "siard-suite", + "name": "Siard Suite", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138745006" + ], + "created_at": "2026-07-10T10:12:42.897041", + "updated_at": "2026-07-10T10:12:42.897041", + "url": "/v1/software/siard-suite" +} diff --git a/site/public/v1/software/siconfi/index.json b/site/public/v1/software/siconfi/index.json new file mode 100644 index 000000000000..66d4041499af --- /dev/null +++ b/site/public/v1/software/siconfi/index.json @@ -0,0 +1,19 @@ +{ + "id": 9098, + "slug": "siconfi", + "name": "Siconfi", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q99937605" + ], + "created_at": "2026-07-10T10:12:42.898053", + "updated_at": "2026-07-10T10:12:42.898053", + "url": "/v1/software/siconfi" +} diff --git a/site/public/v1/software/sicstus-prolog/index.json b/site/public/v1/software/sicstus-prolog/index.json new file mode 100644 index 000000000000..ed32753af2a7 --- /dev/null +++ b/site/public/v1/software/sicstus-prolog/index.json @@ -0,0 +1,21 @@ +{ + "id": 9099, + "slug": "sicstus-prolog", + "name": "SICStus Prolog", + "release_date": null, + "developers": [ + "Swedish Institute of Computer Science" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7390284" + ], + "created_at": "2026-07-10T10:12:42.898053", + "updated_at": "2026-07-10T10:12:42.898053", + "url": "/v1/software/sicstus-prolog" +} diff --git a/site/public/v1/software/sidecar-proxy/index.json b/site/public/v1/software/sidecar-proxy/index.json new file mode 100644 index 000000000000..b2ad92c07aa2 --- /dev/null +++ b/site/public/v1/software/sidecar-proxy/index.json @@ -0,0 +1,19 @@ +{ + "id": 9100, + "slug": "sidecar-proxy", + "name": "Sidecar proxy", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139762059" + ], + "created_at": "2026-07-10T10:12:42.898053", + "updated_at": "2026-07-10T10:12:42.898053", + "url": "/v1/software/sidecar-proxy" +} diff --git a/site/public/v1/software/sidra-intersection/index.json b/site/public/v1/software/sidra-intersection/index.json new file mode 100644 index 000000000000..fc095f9aaef7 --- /dev/null +++ b/site/public/v1/software/sidra-intersection/index.json @@ -0,0 +1,19 @@ +{ + "id": 9101, + "slug": "sidra-intersection", + "name": "Sidra Intersection", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7509489" + ], + "created_at": "2026-07-10T10:12:42.899081", + "updated_at": "2026-07-10T10:12:42.899081", + "url": "/v1/software/sidra-intersection" +} diff --git a/site/public/v1/software/siecle/index.json b/site/public/v1/software/siecle/index.json new file mode 100644 index 000000000000..0df04516be93 --- /dev/null +++ b/site/public/v1/software/siecle/index.json @@ -0,0 +1,21 @@ +{ + "id": 9102, + "slug": "siecle", + "name": "SIECLE", + "release_date": null, + "developers": [ + "French Ministry of education" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3104547" + ], + "created_at": "2026-07-10T10:12:42.899081", + "updated_at": "2026-07-10T10:12:42.899081", + "url": "/v1/software/siecle" +} diff --git a/site/public/v1/software/sief/index.json b/site/public/v1/software/sief/index.json new file mode 100644 index 000000000000..705191475de3 --- /dev/null +++ b/site/public/v1/software/sief/index.json @@ -0,0 +1,19 @@ +{ + "id": 9103, + "slug": "sief", + "name": "SIEF", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10371374" + ], + "created_at": "2026-07-10T10:12:42.899081", + "updated_at": "2026-07-10T10:12:42.899081", + "url": "/v1/software/sief" +} diff --git a/site/public/v1/software/siegfried/index.json b/site/public/v1/software/siegfried/index.json new file mode 100644 index 000000000000..bb0295dab2e5 --- /dev/null +++ b/site/public/v1/software/siegfried/index.json @@ -0,0 +1,23 @@ +{ + "id": 9104, + "slug": "siegfried", + "name": "Siegfried", + "release_date": null, + "developers": [ + "Richard Lehane" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Apache Software License 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q59982409" + ], + "created_at": "2026-07-10T10:12:42.899081", + "updated_at": "2026-07-10T10:12:42.899081", + "url": "/v1/software/siegfried" +} diff --git a/site/public/v1/software/sifter/index.json b/site/public/v1/software/sifter/index.json new file mode 100644 index 000000000000..a7ee4f48a144 --- /dev/null +++ b/site/public/v1/software/sifter/index.json @@ -0,0 +1,19 @@ +{ + "id": 9105, + "slug": "sifter", + "name": "Sifter", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084550" + ], + "created_at": "2026-07-10T10:12:42.900068", + "updated_at": "2026-07-10T10:12:42.900068", + "url": "/v1/software/sifter" +} diff --git a/site/public/v1/software/sightspeed/index.json b/site/public/v1/software/sightspeed/index.json new file mode 100644 index 000000000000..540642a6c369 --- /dev/null +++ b/site/public/v1/software/sightspeed/index.json @@ -0,0 +1,19 @@ +{ + "id": 9106, + "slug": "sightspeed", + "name": "SightSpeed", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7512078" + ], + "created_at": "2026-07-10T10:12:42.900068", + "updated_at": "2026-07-10T10:12:42.900068", + "url": "/v1/software/sightspeed" +} diff --git a/site/public/v1/software/sigil/index.json b/site/public/v1/software/sigil/index.json new file mode 100644 index 000000000000..9c3fa4bd1426 --- /dev/null +++ b/site/public/v1/software/sigil/index.json @@ -0,0 +1,19 @@ +{ + "id": 9107, + "slug": "sigil", + "name": "Sigil", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084551" + ], + "created_at": "2026-07-10T10:12:42.901189", + "updated_at": "2026-07-10T10:12:42.901189", + "url": "/v1/software/sigil" +} diff --git a/site/public/v1/software/sigma-knowledge-engineering-environment/index.json b/site/public/v1/software/sigma-knowledge-engineering-environment/index.json new file mode 100644 index 000000000000..81fd3148326d --- /dev/null +++ b/site/public/v1/software/sigma-knowledge-engineering-environment/index.json @@ -0,0 +1,21 @@ +{ + "id": 9108, + "slug": "sigma-knowledge-engineering-environment", + "name": "Sigma knowledge engineering environment", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "GNU General Public License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7512412" + ], + "created_at": "2026-07-10T10:12:42.901189", + "updated_at": "2026-07-10T10:12:42.901189", + "url": "/v1/software/sigma-knowledge-engineering-environment" +} diff --git a/site/public/v1/software/sigmaplot/index.json b/site/public/v1/software/sigmaplot/index.json new file mode 100644 index 000000000000..0768d34713b7 --- /dev/null +++ b/site/public/v1/software/sigmaplot/index.json @@ -0,0 +1,21 @@ +{ + "id": 9109, + "slug": "sigmaplot", + "name": "SigmaPlot", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4049465" + ], + "created_at": "2026-07-10T10:12:42.901189", + "updated_at": "2026-07-10T10:12:42.901189", + "url": "/v1/software/sigmaplot" +} diff --git a/site/public/v1/software/sigmascan/index.json b/site/public/v1/software/sigmascan/index.json new file mode 100644 index 000000000000..2b6d6b4c6c10 --- /dev/null +++ b/site/public/v1/software/sigmascan/index.json @@ -0,0 +1,19 @@ +{ + "id": 9110, + "slug": "sigmascan", + "name": "SigmaScan", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7512229" + ], + "created_at": "2026-07-10T10:12:42.901189", + "updated_at": "2026-07-10T10:12:42.901189", + "url": "/v1/software/sigmascan" +} diff --git a/site/public/v1/software/sigmastat/index.json b/site/public/v1/software/sigmastat/index.json new file mode 100644 index 000000000000..0e30a09c6802 --- /dev/null +++ b/site/public/v1/software/sigmastat/index.json @@ -0,0 +1,19 @@ +{ + "id": 9111, + "slug": "sigmastat", + "name": "SigmaStat", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7512231" + ], + "created_at": "2026-07-10T10:12:42.902075", + "updated_at": "2026-07-10T10:12:42.902075", + "url": "/v1/software/sigmastat" +} diff --git a/site/public/v1/software/signal-engine/index.json b/site/public/v1/software/signal-engine/index.json new file mode 100644 index 000000000000..e8021f709715 --- /dev/null +++ b/site/public/v1/software/signal-engine/index.json @@ -0,0 +1,19 @@ +{ + "id": 9112, + "slug": "signal-engine", + "name": "Signal Engine", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140162176" + ], + "created_at": "2026-07-10T10:12:42.902075", + "updated_at": "2026-07-10T10:12:42.902075", + "url": "/v1/software/signal-engine" +} diff --git a/site/public/v1/software/signify/index.json b/site/public/v1/software/signify/index.json new file mode 100644 index 000000000000..907f9afbbf93 --- /dev/null +++ b/site/public/v1/software/signify/index.json @@ -0,0 +1,21 @@ +{ + "id": 9113, + "slug": "signify", + "name": "signify", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "OpenBSD" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126326772" + ], + "created_at": "2026-07-10T10:12:42.902075", + "updated_at": "2026-07-10T10:12:42.902075", + "url": "/v1/software/signify" +} diff --git a/site/public/v1/software/signnow/index.json b/site/public/v1/software/signnow/index.json new file mode 100644 index 000000000000..ae614f399005 --- /dev/null +++ b/site/public/v1/software/signnow/index.json @@ -0,0 +1,19 @@ +{ + "id": 9114, + "slug": "signnow", + "name": "SignNow", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7512523" + ], + "created_at": "2026-07-10T10:12:42.903180", + "updated_at": "2026-07-10T10:12:42.903180", + "url": "/v1/software/signnow" +} diff --git a/site/public/v1/software/signplot/index.json b/site/public/v1/software/signplot/index.json new file mode 100644 index 000000000000..e4cb74d6bff1 --- /dev/null +++ b/site/public/v1/software/signplot/index.json @@ -0,0 +1,19 @@ +{ + "id": 9115, + "slug": "signplot", + "name": "SignPlot", + "release_date": "1984-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7512525" + ], + "created_at": "2026-07-10T10:12:42.903180", + "updated_at": "2026-07-10T10:12:42.903180", + "url": "/v1/software/signplot" +} diff --git a/site/public/v1/software/signum-framework/index.json b/site/public/v1/software/signum-framework/index.json new file mode 100644 index 000000000000..03e356483c53 --- /dev/null +++ b/site/public/v1/software/signum-framework/index.json @@ -0,0 +1,19 @@ +{ + "id": 9116, + "slug": "signum-framework", + "name": "Signum Framework", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3818758" + ], + "created_at": "2026-07-10T10:12:42.903180", + "updated_at": "2026-07-10T10:12:42.903180", + "url": "/v1/software/signum-framework" +} diff --git a/site/public/v1/software/sigrid/index.json b/site/public/v1/software/sigrid/index.json new file mode 100644 index 000000000000..9ad6cb4ada3a --- /dev/null +++ b/site/public/v1/software/sigrid/index.json @@ -0,0 +1,21 @@ +{ + "id": 9117, + "slug": "sigrid", + "name": "Sigrid", + "release_date": null, + "developers": [ + "Software Improvement Group" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q114853601" + ], + "created_at": "2026-07-10T10:12:42.904156", + "updated_at": "2026-07-10T10:12:42.904156", + "url": "/v1/software/sigrid" +} diff --git a/site/public/v1/software/sigrok-cli/index.json b/site/public/v1/software/sigrok-cli/index.json new file mode 100644 index 000000000000..e89392dc541f --- /dev/null +++ b/site/public/v1/software/sigrok-cli/index.json @@ -0,0 +1,19 @@ +{ + "id": 9118, + "slug": "sigrok-cli", + "name": "sigrok-cli", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975467" + ], + "created_at": "2026-07-10T10:12:42.904156", + "updated_at": "2026-07-10T10:12:42.904156", + "url": "/v1/software/sigrok-cli" +} diff --git a/site/public/v1/software/sigrok-firmware-fx2lafw/index.json b/site/public/v1/software/sigrok-firmware-fx2lafw/index.json new file mode 100644 index 000000000000..2f790ae352aa --- /dev/null +++ b/site/public/v1/software/sigrok-firmware-fx2lafw/index.json @@ -0,0 +1,19 @@ +{ + "id": 9119, + "slug": "sigrok-firmware-fx2lafw", + "name": "sigrok-firmware-fx2lafw", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975468" + ], + "created_at": "2026-07-10T10:12:42.904156", + "updated_at": "2026-07-10T10:12:42.904156", + "url": "/v1/software/sigrok-firmware-fx2lafw" +} diff --git a/site/public/v1/software/sigscheme/index.json b/site/public/v1/software/sigscheme/index.json new file mode 100644 index 000000000000..7204c7b3423a --- /dev/null +++ b/site/public/v1/software/sigscheme/index.json @@ -0,0 +1,19 @@ +{ + "id": 9120, + "slug": "sigscheme", + "name": "SigScheme", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62865576" + ], + "created_at": "2026-07-10T10:12:42.905150", + "updated_at": "2026-07-10T10:12:42.905150", + "url": "/v1/software/sigscheme" +} diff --git a/site/public/v1/software/sikuli/index.json b/site/public/v1/software/sikuli/index.json new file mode 100644 index 000000000000..d7e2335be1a0 --- /dev/null +++ b/site/public/v1/software/sikuli/index.json @@ -0,0 +1,19 @@ +{ + "id": 9121, + "slug": "sikuli", + "name": "Sikuli", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4049476" + ], + "created_at": "2026-07-10T10:12:42.905150", + "updated_at": "2026-07-10T10:12:42.905150", + "url": "/v1/software/sikuli" +} diff --git a/site/public/v1/software/sileo/index.json b/site/public/v1/software/sileo/index.json new file mode 100644 index 000000000000..a2c4a06e4ac4 --- /dev/null +++ b/site/public/v1/software/sileo/index.json @@ -0,0 +1,23 @@ +{ + "id": 9122, + "slug": "sileo", + "name": "Sileo", + "release_date": null, + "developers": [ + "Amy While" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "4-clause BSD License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131581641" + ], + "created_at": "2026-07-10T10:12:42.905150", + "updated_at": "2026-07-10T10:12:42.905150", + "url": "/v1/software/sileo" +} diff --git a/site/public/v1/software/silhouettefx/index.json b/site/public/v1/software/silhouettefx/index.json new file mode 100644 index 000000000000..391863b25bbc --- /dev/null +++ b/site/public/v1/software/silhouettefx/index.json @@ -0,0 +1,19 @@ +{ + "id": 9123, + "slug": "silhouettefx", + "name": "SilhouetteFX", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18378415" + ], + "created_at": "2026-07-10T10:12:42.906152", + "updated_at": "2026-07-10T10:12:42.906152", + "url": "/v1/software/silhouettefx" +} diff --git a/site/public/v1/software/silicon/index.json b/site/public/v1/software/silicon/index.json new file mode 100644 index 000000000000..59b34c69af7d --- /dev/null +++ b/site/public/v1/software/silicon/index.json @@ -0,0 +1,19 @@ +{ + "id": 9124, + "slug": "silicon", + "name": "Silicon", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115972479" + ], + "created_at": "2026-07-10T10:12:42.906152", + "updated_at": "2026-07-10T10:12:42.906152", + "url": "/v1/software/silicon" +} diff --git a/site/public/v1/software/silivaccine/index.json b/site/public/v1/software/silivaccine/index.json new file mode 100644 index 000000000000..d746fa76378b --- /dev/null +++ b/site/public/v1/software/silivaccine/index.json @@ -0,0 +1,19 @@ +{ + "id": 9125, + "slug": "silivaccine", + "name": "SiliVaccine", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q20439078" + ], + "created_at": "2026-07-10T10:12:42.906152", + "updated_at": "2026-07-10T10:12:42.906152", + "url": "/v1/software/silivaccine" +} diff --git a/site/public/v1/software/silk-central/index.json b/site/public/v1/software/silk-central/index.json new file mode 100644 index 000000000000..05b376fadfc0 --- /dev/null +++ b/site/public/v1/software/silk-central/index.json @@ -0,0 +1,21 @@ +{ + "id": 9126, + "slug": "silk-central", + "name": "Silk central", + "release_date": "2005-01-01", + "developers": [ + "Borland" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7515220" + ], + "created_at": "2026-07-10T10:12:42.907148", + "updated_at": "2026-07-10T10:12:42.907148", + "url": "/v1/software/silk-central" +} diff --git a/site/public/v1/software/silk-performer/index.json b/site/public/v1/software/silk-performer/index.json new file mode 100644 index 000000000000..53c5fbaa6b30 --- /dev/null +++ b/site/public/v1/software/silk-performer/index.json @@ -0,0 +1,21 @@ +{ + "id": 9127, + "slug": "silk-performer", + "name": "Silk Performer", + "release_date": null, + "developers": [ + "Micro Focus International" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7515184" + ], + "created_at": "2026-07-10T10:12:42.908080", + "updated_at": "2026-07-10T10:12:42.908080", + "url": "/v1/software/silk-performer" +} diff --git a/site/public/v1/software/silk-test/index.json b/site/public/v1/software/silk-test/index.json new file mode 100644 index 000000000000..7da41718ad20 --- /dev/null +++ b/site/public/v1/software/silk-test/index.json @@ -0,0 +1,21 @@ +{ + "id": 9128, + "slug": "silk-test", + "name": "Silk Test", + "release_date": null, + "developers": [ + "Micro Focus International" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7515164" + ], + "created_at": "2026-07-10T10:12:42.908080", + "updated_at": "2026-07-10T10:12:42.909197", + "url": "/v1/software/silk-test" +} diff --git a/site/public/v1/software/silkypix/index.json b/site/public/v1/software/silkypix/index.json new file mode 100644 index 000000000000..5cd80e1d4d7b --- /dev/null +++ b/site/public/v1/software/silkypix/index.json @@ -0,0 +1,22 @@ +{ + "id": 9129, + "slug": "silkypix", + "name": "Silkypix", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2286266" + ], + "created_at": "2026-07-10T10:12:42.909197", + "updated_at": "2026-07-10T10:12:42.909197", + "url": "/v1/software/silkypix" +} diff --git a/site/public/v1/software/silobreaker/index.json b/site/public/v1/software/silobreaker/index.json new file mode 100644 index 000000000000..97da4aafc4f2 --- /dev/null +++ b/site/public/v1/software/silobreaker/index.json @@ -0,0 +1,19 @@ +{ + "id": 9130, + "slug": "silobreaker", + "name": "Silobreaker", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084553" + ], + "created_at": "2026-07-10T10:12:42.910145", + "updated_at": "2026-07-10T10:12:42.910145", + "url": "/v1/software/silobreaker" +} diff --git a/site/public/v1/software/simap/index.json b/site/public/v1/software/simap/index.json new file mode 100644 index 000000000000..47e2a70a8c1d --- /dev/null +++ b/site/public/v1/software/simap/index.json @@ -0,0 +1,19 @@ +{ + "id": 9131, + "slug": "simap", + "name": "SIMAP", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1459271" + ], + "created_at": "2026-07-10T10:12:42.912200", + "updated_at": "2026-07-10T10:12:42.912200", + "url": "/v1/software/simap" +} diff --git a/site/public/v1/software/simapro/index.json b/site/public/v1/software/simapro/index.json new file mode 100644 index 000000000000..4059772d9195 --- /dev/null +++ b/site/public/v1/software/simapro/index.json @@ -0,0 +1,19 @@ +{ + "id": 9132, + "slug": "simapro", + "name": "SimaPro", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122639628" + ], + "created_at": "2026-07-10T10:12:42.913186", + "updated_at": "2026-07-10T10:12:42.913186", + "url": "/v1/software/simapro" +} diff --git a/site/public/v1/software/simatic-step-7/index.json b/site/public/v1/software/simatic-step-7/index.json new file mode 100644 index 000000000000..bcecb40539ef --- /dev/null +++ b/site/public/v1/software/simatic-step-7/index.json @@ -0,0 +1,21 @@ +{ + "id": 9133, + "slug": "simatic-step-7", + "name": "Simatic Step 7", + "release_date": null, + "developers": [ + "Siemens" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q351078" + ], + "created_at": "2026-07-10T10:12:42.914159", + "updated_at": "2026-07-10T10:12:42.914159", + "url": "/v1/software/simatic-step-7" +} diff --git a/site/public/v1/software/simba-voice-agents/index.json b/site/public/v1/software/simba-voice-agents/index.json new file mode 100644 index 000000000000..61cb46aca09c --- /dev/null +++ b/site/public/v1/software/simba-voice-agents/index.json @@ -0,0 +1,21 @@ +{ + "id": 9134, + "slug": "simba-voice-agents", + "name": "Simba Voice Agents", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "web application" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139499228" + ], + "created_at": "2026-07-10T10:12:42.914159", + "updated_at": "2026-07-10T10:12:42.914159", + "url": "/v1/software/simba-voice-agents" +} diff --git a/site/public/v1/software/simbl/index.json b/site/public/v1/software/simbl/index.json new file mode 100644 index 000000000000..efdcffec394f --- /dev/null +++ b/site/public/v1/software/simbl/index.json @@ -0,0 +1,21 @@ +{ + "id": 9135, + "slug": "simbl", + "name": "SIMBL", + "release_date": null, + "developers": [ + "Mike Solomon" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7390384" + ], + "created_at": "2026-07-10T10:12:42.915181", + "updated_at": "2026-07-10T10:12:42.915181", + "url": "/v1/software/simbl" +} diff --git a/site/public/v1/software/simca-2-0/index.json b/site/public/v1/software/simca-2-0/index.json new file mode 100644 index 000000000000..86572a95862e --- /dev/null +++ b/site/public/v1/software/simca-2-0/index.json @@ -0,0 +1,19 @@ +{ + "id": 9136, + "slug": "simca-2-0", + "name": "SimCA 2.0", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084554" + ], + "created_at": "2026-07-10T10:12:42.915816", + "updated_at": "2026-07-10T10:12:42.915816", + "url": "/v1/software/simca-2-0" +} diff --git a/site/public/v1/software/simcad-pro/index.json b/site/public/v1/software/simcad-pro/index.json new file mode 100644 index 000000000000..03fc2c9acee5 --- /dev/null +++ b/site/public/v1/software/simcad-pro/index.json @@ -0,0 +1,23 @@ +{ + "id": 9137, + "slug": "simcad-pro", + "name": "Simcad Pro", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "XP", + "Vista", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7517458" + ], + "created_at": "2026-07-10T10:12:42.916920", + "updated_at": "2026-07-10T10:12:42.916920", + "url": "/v1/software/simcad-pro" +} diff --git a/site/public/v1/software/simcenter-amesim/index.json b/site/public/v1/software/simcenter-amesim/index.json new file mode 100644 index 000000000000..4508e3265d0d --- /dev/null +++ b/site/public/v1/software/simcenter-amesim/index.json @@ -0,0 +1,21 @@ +{ + "id": 9138, + "slug": "simcenter-amesim", + "name": "Simcenter Amesim", + "release_date": "1995-01-01", + "developers": [ + "Siemens Digital Industries Software" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2819258" + ], + "created_at": "2026-07-10T10:12:42.917909", + "updated_at": "2026-07-10T10:12:42.917909", + "url": "/v1/software/simcenter-amesim" +} diff --git a/site/public/v1/software/simcenter-star-ccm/index.json b/site/public/v1/software/simcenter-star-ccm/index.json new file mode 100644 index 000000000000..530c03bfa08f --- /dev/null +++ b/site/public/v1/software/simcenter-star-ccm/index.json @@ -0,0 +1,19 @@ +{ + "id": 9139, + "slug": "simcenter-star-ccm", + "name": "Simcenter STAR-CCM+", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q97277042" + ], + "created_at": "2026-07-10T10:12:42.918829", + "updated_at": "2026-07-10T10:12:42.918829", + "url": "/v1/software/simcenter-star-ccm" +} diff --git a/site/public/v1/software/simcenter/index.json b/site/public/v1/software/simcenter/index.json new file mode 100644 index 000000000000..ce3c46ab8ecb --- /dev/null +++ b/site/public/v1/software/simcenter/index.json @@ -0,0 +1,23 @@ +{ + "id": 9140, + "slug": "simcenter", + "name": "Simcenter", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q29364748" + ], + "created_at": "2026-07-10T10:12:42.919826", + "updated_at": "2026-07-10T10:12:42.919826", + "url": "/v1/software/simcenter" +} diff --git a/site/public/v1/software/simcyp-simulator/index.json b/site/public/v1/software/simcyp-simulator/index.json new file mode 100644 index 000000000000..71ac95c1ecda --- /dev/null +++ b/site/public/v1/software/simcyp-simulator/index.json @@ -0,0 +1,19 @@ +{ + "id": 9141, + "slug": "simcyp-simulator", + "name": "Simcyp Simulator", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7517512" + ], + "created_at": "2026-07-10T10:12:42.919826", + "updated_at": "2026-07-10T10:12:42.920830", + "url": "/v1/software/simcyp-simulator" +} diff --git a/site/public/v1/software/simde/index.json b/site/public/v1/software/simde/index.json new file mode 100644 index 000000000000..a45d6bfa4059 --- /dev/null +++ b/site/public/v1/software/simde/index.json @@ -0,0 +1,21 @@ +{ + "id": 9142, + "slug": "simde", + "name": "simde", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122875001" + ], + "created_at": "2026-07-10T10:12:42.920830", + "updated_at": "2026-07-10T10:12:42.920830", + "url": "/v1/software/simde" +} diff --git a/site/public/v1/software/simdis/index.json b/site/public/v1/software/simdis/index.json new file mode 100644 index 000000000000..8e00f3caa5d5 --- /dev/null +++ b/site/public/v1/software/simdis/index.json @@ -0,0 +1,21 @@ +{ + "id": 9143, + "slug": "simdis", + "name": "SIMDIS", + "release_date": null, + "developers": [ + "United States Naval Research Laboratory" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7390390" + ], + "created_at": "2026-07-10T10:12:42.921829", + "updated_at": "2026-07-10T10:12:42.921829", + "url": "/v1/software/simdis" +} diff --git a/site/public/v1/software/simeck/index.json b/site/public/v1/software/simeck/index.json new file mode 100644 index 000000000000..0fb5b9f6ff5e --- /dev/null +++ b/site/public/v1/software/simeck/index.json @@ -0,0 +1,19 @@ +{ + "id": 9144, + "slug": "simeck", + "name": "SIMECK", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123191660" + ], + "created_at": "2026-07-10T10:12:42.922828", + "updated_at": "2026-07-10T10:12:42.922828", + "url": "/v1/software/simeck" +} diff --git a/site/public/v1/software/simevents/index.json b/site/public/v1/software/simevents/index.json new file mode 100644 index 000000000000..7e8d7f81c959 --- /dev/null +++ b/site/public/v1/software/simevents/index.json @@ -0,0 +1,19 @@ +{ + "id": 9145, + "slug": "simevents", + "name": "SimEvents", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7517220" + ], + "created_at": "2026-07-10T10:12:42.925333", + "updated_at": "2026-07-10T10:12:42.925333", + "url": "/v1/software/simevents" +} diff --git a/site/public/v1/software/simile-widgets-exhibit-3-0/index.json b/site/public/v1/software/simile-widgets-exhibit-3-0/index.json new file mode 100644 index 000000000000..4f22f7088e93 --- /dev/null +++ b/site/public/v1/software/simile-widgets-exhibit-3-0/index.json @@ -0,0 +1,19 @@ +{ + "id": 9146, + "slug": "simile-widgets-exhibit-3-0", + "name": "SIMILE Widgets: Exhibit 3.0", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084555" + ], + "created_at": "2026-07-10T10:12:42.927868", + "updated_at": "2026-07-10T10:12:42.927868", + "url": "/v1/software/simile-widgets-exhibit-3-0" +} diff --git a/site/public/v1/software/simile-widgets-gadget/index.json b/site/public/v1/software/simile-widgets-gadget/index.json new file mode 100644 index 000000000000..22715f3cce26 --- /dev/null +++ b/site/public/v1/software/simile-widgets-gadget/index.json @@ -0,0 +1,19 @@ +{ + "id": 9147, + "slug": "simile-widgets-gadget", + "name": "SIMILE Widgets: Gadget", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084556" + ], + "created_at": "2026-07-10T10:12:42.932821", + "updated_at": "2026-07-10T10:12:42.932821", + "url": "/v1/software/simile-widgets-gadget" +} diff --git a/site/public/v1/software/simile-widgets-jstex/index.json b/site/public/v1/software/simile-widgets-jstex/index.json new file mode 100644 index 000000000000..242b88f02852 --- /dev/null +++ b/site/public/v1/software/simile-widgets-jstex/index.json @@ -0,0 +1,19 @@ +{ + "id": 9148, + "slug": "simile-widgets-jstex", + "name": "SIMILE Widgets: JsTeX", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084557" + ], + "created_at": "2026-07-10T10:12:42.936834", + "updated_at": "2026-07-10T10:12:42.936834", + "url": "/v1/software/simile-widgets-jstex" +} diff --git a/site/public/v1/software/simile-widgets-timeline/index.json b/site/public/v1/software/simile-widgets-timeline/index.json new file mode 100644 index 000000000000..82307ad7fa00 --- /dev/null +++ b/site/public/v1/software/simile-widgets-timeline/index.json @@ -0,0 +1,19 @@ +{ + "id": 9149, + "slug": "simile-widgets-timeline", + "name": "SIMILE Widgets: Timeline", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084558" + ], + "created_at": "2026-07-10T10:12:42.938835", + "updated_at": "2026-07-10T10:12:42.938835", + "url": "/v1/software/simile-widgets-timeline" +} diff --git a/site/public/v1/software/simile-widgets-timeplot/index.json b/site/public/v1/software/simile-widgets-timeplot/index.json new file mode 100644 index 000000000000..c4136c8e3d9f --- /dev/null +++ b/site/public/v1/software/simile-widgets-timeplot/index.json @@ -0,0 +1,19 @@ +{ + "id": 9150, + "slug": "simile-widgets-timeplot", + "name": "SIMILE Widgets: Timeplot", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084559" + ], + "created_at": "2026-07-10T10:12:42.940831", + "updated_at": "2026-07-10T10:12:42.940831", + "url": "/v1/software/simile-widgets-timeplot" +} diff --git a/site/public/v1/software/simile-widgets-welkin/index.json b/site/public/v1/software/simile-widgets-welkin/index.json new file mode 100644 index 000000000000..8c388a231c60 --- /dev/null +++ b/site/public/v1/software/simile-widgets-welkin/index.json @@ -0,0 +1,19 @@ +{ + "id": 9151, + "slug": "simile-widgets-welkin", + "name": "SIMILE Widgets: Welkin", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084560" + ], + "created_at": "2026-07-10T10:12:42.940831", + "updated_at": "2026-07-10T10:12:42.940831", + "url": "/v1/software/simile-widgets-welkin" +} diff --git a/site/public/v1/software/simion/index.json b/site/public/v1/software/simion/index.json new file mode 100644 index 000000000000..a2a506ec8361 --- /dev/null +++ b/site/public/v1/software/simion/index.json @@ -0,0 +1,23 @@ +{ + "id": 9152, + "slug": "simion", + "name": "SIMION", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7390394" + ], + "created_at": "2026-07-10T10:12:42.940831", + "updated_at": "2026-07-10T10:12:42.940831", + "url": "/v1/software/simion" +} diff --git a/site/public/v1/software/simmcast/index.json b/site/public/v1/software/simmcast/index.json new file mode 100644 index 000000000000..a307055698f0 --- /dev/null +++ b/site/public/v1/software/simmcast/index.json @@ -0,0 +1,19 @@ +{ + "id": 9153, + "slug": "simmcast", + "name": "Simmcast", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17052240" + ], + "created_at": "2026-07-10T10:12:42.941830", + "updated_at": "2026-07-10T10:12:42.941830", + "url": "/v1/software/simmcast" +} diff --git a/site/public/v1/software/simmon/index.json b/site/public/v1/software/simmon/index.json new file mode 100644 index 000000000000..045ccfbdada3 --- /dev/null +++ b/site/public/v1/software/simmon/index.json @@ -0,0 +1,19 @@ +{ + "id": 9154, + "slug": "simmon", + "name": "SIMMON", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7390395" + ], + "created_at": "2026-07-10T10:12:42.941830", + "updated_at": "2026-07-10T10:12:42.941830", + "url": "/v1/software/simmon" +} diff --git a/site/public/v1/software/simons-basic/index.json b/site/public/v1/software/simons-basic/index.json new file mode 100644 index 000000000000..e7fb12621f1f --- /dev/null +++ b/site/public/v1/software/simons-basic/index.json @@ -0,0 +1,21 @@ +{ + "id": 9155, + "slug": "simons-basic", + "name": "Simons' BASIC", + "release_date": null, + "developers": [ + "Commodore International" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q568887" + ], + "created_at": "2026-07-10T10:12:42.941830", + "updated_at": "2026-07-10T10:12:42.941830", + "url": "/v1/software/simons-basic" +} diff --git a/site/public/v1/software/simosphere-ai/index.json b/site/public/v1/software/simosphere-ai/index.json new file mode 100644 index 000000000000..7c1393695ccc --- /dev/null +++ b/site/public/v1/software/simosphere-ai/index.json @@ -0,0 +1,23 @@ +{ + "id": 9156, + "slug": "simosphere-ai", + "name": "SIMOSphere AI", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "TypeScript" + ], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140088287" + ], + "created_at": "2026-07-10T10:12:42.941830", + "updated_at": "2026-07-10T10:12:42.941830", + "url": "/v1/software/simosphere-ai" +} diff --git a/site/public/v1/software/simp-le/index.json b/site/public/v1/software/simp-le/index.json new file mode 100644 index 000000000000..ea643dd17d5b --- /dev/null +++ b/site/public/v1/software/simp-le/index.json @@ -0,0 +1,19 @@ +{ + "id": 9157, + "slug": "simp-le", + "name": "simp_le", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975469" + ], + "created_at": "2026-07-10T10:12:42.942829", + "updated_at": "2026-07-10T10:12:42.942829", + "url": "/v1/software/simp-le" +} diff --git a/site/public/v1/software/simpack/index.json b/site/public/v1/software/simpack/index.json new file mode 100644 index 000000000000..beda6d2744ed --- /dev/null +++ b/site/public/v1/software/simpack/index.json @@ -0,0 +1,19 @@ +{ + "id": 9158, + "slug": "simpack", + "name": "SIMPACK", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1315832" + ], + "created_at": "2026-07-10T10:12:42.942829", + "updated_at": "2026-07-10T10:12:42.942829", + "url": "/v1/software/simpack" +} diff --git a/site/public/v1/software/simpeg/index.json b/site/public/v1/software/simpeg/index.json new file mode 100644 index 000000000000..6955a5ae7017 --- /dev/null +++ b/site/public/v1/software/simpeg/index.json @@ -0,0 +1,21 @@ +{ + "id": 9159, + "slug": "simpeg", + "name": "SimPEG", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124688498" + ], + "created_at": "2026-07-10T10:12:42.943828", + "updated_at": "2026-07-10T10:12:42.943828", + "url": "/v1/software/simpeg" +} diff --git a/site/public/v1/software/simple-authorship-clustering/index.json b/site/public/v1/software/simple-authorship-clustering/index.json new file mode 100644 index 000000000000..95f4d0a56cfe --- /dev/null +++ b/site/public/v1/software/simple-authorship-clustering/index.json @@ -0,0 +1,19 @@ +{ + "id": 9160, + "slug": "simple-authorship-clustering", + "name": "Simple Authorship Clustering", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084561" + ], + "created_at": "2026-07-10T10:12:42.943828", + "updated_at": "2026-07-10T10:12:42.943828", + "url": "/v1/software/simple-authorship-clustering" +} diff --git a/site/public/v1/software/simple-dns-plus/index.json b/site/public/v1/software/simple-dns-plus/index.json new file mode 100644 index 000000000000..712e52a97bb9 --- /dev/null +++ b/site/public/v1/software/simple-dns-plus/index.json @@ -0,0 +1,19 @@ +{ + "id": 9161, + "slug": "simple-dns-plus", + "name": "Simple DNS Plus", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7520660" + ], + "created_at": "2026-07-10T10:12:42.943828", + "updated_at": "2026-07-10T10:12:42.943828", + "url": "/v1/software/simple-dns-plus" +} diff --git a/site/public/v1/software/simple-dynamic-modelling/index.json b/site/public/v1/software/simple-dynamic-modelling/index.json new file mode 100644 index 000000000000..019e0d9224db --- /dev/null +++ b/site/public/v1/software/simple-dynamic-modelling/index.json @@ -0,0 +1,19 @@ +{ + "id": 9162, + "slug": "simple-dynamic-modelling", + "name": "Simple Dynamic Modelling", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084563" + ], + "created_at": "2026-07-10T10:12:42.943828", + "updated_at": "2026-07-10T10:12:42.943828", + "url": "/v1/software/simple-dynamic-modelling" +} diff --git a/site/public/v1/software/simple-grid-protocol/index.json b/site/public/v1/software/simple-grid-protocol/index.json new file mode 100644 index 000000000000..63977059b2da --- /dev/null +++ b/site/public/v1/software/simple-grid-protocol/index.json @@ -0,0 +1,19 @@ +{ + "id": 9163, + "slug": "simple-grid-protocol", + "name": "Simple Grid Protocol", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7520677" + ], + "created_at": "2026-07-10T10:12:42.944828", + "updated_at": "2026-07-10T10:12:42.944828", + "url": "/v1/software/simple-grid-protocol" +} diff --git a/site/public/v1/software/simple-object-database-access/index.json b/site/public/v1/software/simple-object-database-access/index.json new file mode 100644 index 000000000000..228e4440634a --- /dev/null +++ b/site/public/v1/software/simple-object-database-access/index.json @@ -0,0 +1,19 @@ +{ + "id": 9164, + "slug": "simple-object-database-access", + "name": "Simple Object Database Access", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16944834" + ], + "created_at": "2026-07-10T10:12:42.944828", + "updated_at": "2026-07-10T10:12:42.944828", + "url": "/v1/software/simple-object-database-access" +} diff --git a/site/public/v1/software/simple-sentiment-analysis/index.json b/site/public/v1/software/simple-sentiment-analysis/index.json new file mode 100644 index 000000000000..e0260b384e50 --- /dev/null +++ b/site/public/v1/software/simple-sentiment-analysis/index.json @@ -0,0 +1,19 @@ +{ + "id": 9165, + "slug": "simple-sentiment-analysis", + "name": "Simple Sentiment Analysis", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087717" + ], + "created_at": "2026-07-10T10:12:42.945828", + "updated_at": "2026-07-10T10:12:42.945828", + "url": "/v1/software/simple-sentiment-analysis" +} diff --git a/site/public/v1/software/simple-tpm-pk11/index.json b/site/public/v1/software/simple-tpm-pk11/index.json new file mode 100644 index 000000000000..6678374295ec --- /dev/null +++ b/site/public/v1/software/simple-tpm-pk11/index.json @@ -0,0 +1,19 @@ +{ + "id": 9166, + "slug": "simple-tpm-pk11", + "name": "simple-tpm-pk11", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975473" + ], + "created_at": "2026-07-10T10:12:42.945828", + "updated_at": "2026-07-10T10:12:42.945828", + "url": "/v1/software/simple-tpm-pk11" +} diff --git a/site/public/v1/software/simpleitk/index.json b/site/public/v1/software/simpleitk/index.json new file mode 100644 index 000000000000..8270286ab90a --- /dev/null +++ b/site/public/v1/software/simpleitk/index.json @@ -0,0 +1,21 @@ +{ + "id": 9167, + "slug": "simpleitk", + "name": "SimpleITK", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Apache License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q55263982" + ], + "created_at": "2026-07-10T10:12:42.945828", + "updated_at": "2026-07-10T10:12:42.945828", + "url": "/v1/software/simpleitk" +} diff --git a/site/public/v1/software/simplemind/index.json b/site/public/v1/software/simplemind/index.json new file mode 100644 index 000000000000..6169e688197e --- /dev/null +++ b/site/public/v1/software/simplemind/index.json @@ -0,0 +1,19 @@ +{ + "id": 9168, + "slug": "simplemind", + "name": "SimpleMind", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106462389" + ], + "created_at": "2026-07-10T10:12:42.945828", + "updated_at": "2026-07-10T10:12:42.945828", + "url": "/v1/software/simplemind" +} diff --git a/site/public/v1/software/simplesize/index.json b/site/public/v1/software/simplesize/index.json new file mode 100644 index 000000000000..88cbe56e7127 --- /dev/null +++ b/site/public/v1/software/simplesize/index.json @@ -0,0 +1,19 @@ +{ + "id": 9169, + "slug": "simplesize", + "name": "SimpleSize", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140051832" + ], + "created_at": "2026-07-10T10:12:42.946828", + "updated_at": "2026-07-10T10:12:42.946828", + "url": "/v1/software/simplesize" +} diff --git a/site/public/v1/software/simpleswitcher/index.json b/site/public/v1/software/simpleswitcher/index.json new file mode 100644 index 000000000000..b555c6798c4e --- /dev/null +++ b/site/public/v1/software/simpleswitcher/index.json @@ -0,0 +1,23 @@ +{ + "id": 9170, + "slug": "simpleswitcher", + "name": "simpleswitcher", + "release_date": null, + "developers": [ + "Sean Pringle" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975472" + ], + "created_at": "2026-07-10T10:12:42.946828", + "updated_at": "2026-07-10T10:12:42.946828", + "url": "/v1/software/simpleswitcher" +} diff --git a/site/public/v1/software/simpletct/index.json b/site/public/v1/software/simpletct/index.json new file mode 100644 index 000000000000..2ae708b4ab62 --- /dev/null +++ b/site/public/v1/software/simpletct/index.json @@ -0,0 +1,19 @@ +{ + "id": 9171, + "slug": "simpletct", + "name": "SimpleTCT", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084564" + ], + "created_at": "2026-07-10T10:12:42.947828", + "updated_at": "2026-07-10T10:12:42.947828", + "url": "/v1/software/simpletct" +} diff --git a/site/public/v1/software/simplexnumerica/index.json b/site/public/v1/software/simplexnumerica/index.json new file mode 100644 index 000000000000..e0f8f85528fe --- /dev/null +++ b/site/public/v1/software/simplexnumerica/index.json @@ -0,0 +1,19 @@ +{ + "id": 9172, + "slug": "simplexnumerica", + "name": "SimplexNumerica", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q97889241" + ], + "created_at": "2026-07-10T10:12:42.947828", + "updated_at": "2026-07-10T10:12:42.947828", + "url": "/v1/software/simplexnumerica" +} diff --git a/site/public/v1/software/simspark/index.json b/site/public/v1/software/simspark/index.json new file mode 100644 index 000000000000..f1ea6e8fcb07 --- /dev/null +++ b/site/public/v1/software/simspark/index.json @@ -0,0 +1,19 @@ +{ + "id": 9173, + "slug": "simspark", + "name": "SimSpark", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7517240" + ], + "created_at": "2026-07-10T10:12:42.947828", + "updated_at": "2026-07-10T10:12:42.947828", + "url": "/v1/software/simspark" +} diff --git a/site/public/v1/software/simul8/index.json b/site/public/v1/software/simul8/index.json new file mode 100644 index 000000000000..4231220f8a7d --- /dev/null +++ b/site/public/v1/software/simul8/index.json @@ -0,0 +1,21 @@ +{ + "id": 9174, + "slug": "simul8", + "name": "Simul8", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7521279" + ], + "created_at": "2026-07-10T10:12:42.947828", + "updated_at": "2026-07-10T10:12:42.947828", + "url": "/v1/software/simul8" +} diff --git a/site/public/v1/software/simulationx/index.json b/site/public/v1/software/simulationx/index.json new file mode 100644 index 000000000000..6451d57c645c --- /dev/null +++ b/site/public/v1/software/simulationx/index.json @@ -0,0 +1,21 @@ +{ + "id": 9175, + "slug": "simulationx", + "name": "SimulationX", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q575269" + ], + "created_at": "2026-07-10T10:12:42.948827", + "updated_at": "2026-07-10T10:12:42.948827", + "url": "/v1/software/simulationx" +} diff --git a/site/public/v1/software/simulia/index.json b/site/public/v1/software/simulia/index.json new file mode 100644 index 000000000000..2da5dd1ab077 --- /dev/null +++ b/site/public/v1/software/simulia/index.json @@ -0,0 +1,23 @@ +{ + "id": 9176, + "slug": "simulia", + "name": "SIMULIA", + "release_date": null, + "developers": [ + "Dassault Systèmes" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3459626" + ], + "created_at": "2026-07-10T10:12:42.948827", + "updated_at": "2026-07-10T10:12:42.948827", + "url": "/v1/software/simulia" +} diff --git a/site/public/v1/software/simulide-circuit-simulator/index.json b/site/public/v1/software/simulide-circuit-simulator/index.json new file mode 100644 index 000000000000..54e7639b16bd --- /dev/null +++ b/site/public/v1/software/simulide-circuit-simulator/index.json @@ -0,0 +1,19 @@ +{ + "id": 9177, + "slug": "simulide-circuit-simulator", + "name": "SimulIDE Circuit Simulator", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136545864" + ], + "created_at": "2026-07-10T10:12:42.949828", + "updated_at": "2026-07-10T10:12:42.949828", + "url": "/v1/software/simulide-circuit-simulator" +} diff --git a/site/public/v1/software/simulink/index.json b/site/public/v1/software/simulink/index.json new file mode 100644 index 000000000000..f044c70f5446 --- /dev/null +++ b/site/public/v1/software/simulink/index.json @@ -0,0 +1,24 @@ +{ + "id": 9178, + "slug": "simulink", + "name": "Simulink", + "release_date": null, + "developers": [ + "MathWorks" + ], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q606550" + ], + "created_at": "2026-07-10T10:12:42.949828", + "updated_at": "2026-07-10T10:12:42.949828", + "url": "/v1/software/simulink" +} diff --git a/site/public/v1/software/simvestrix/index.json b/site/public/v1/software/simvestrix/index.json new file mode 100644 index 000000000000..1ffb6c6763b2 --- /dev/null +++ b/site/public/v1/software/simvestrix/index.json @@ -0,0 +1,23 @@ +{ + "id": 9179, + "slug": "simvestrix", + "name": "Simvestrix", + "release_date": null, + "developers": [ + "Simvestrix" + ], + "publishers": [], + "operating_systems": [ + "iOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139700593" + ], + "created_at": "2026-07-10T10:12:42.949828", + "updated_at": "2026-07-10T10:12:42.949828", + "url": "/v1/software/simvestrix" +} diff --git a/site/public/v1/software/sinespace/index.json b/site/public/v1/software/sinespace/index.json new file mode 100644 index 000000000000..7bfc2c525169 --- /dev/null +++ b/site/public/v1/software/sinespace/index.json @@ -0,0 +1,19 @@ +{ + "id": 9180, + "slug": "sinespace", + "name": "Sinespace", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60750193" + ], + "created_at": "2026-07-10T10:12:42.949828", + "updated_at": "2026-07-10T10:12:42.949828", + "url": "/v1/software/sinespace" +} diff --git a/site/public/v1/software/sinfo/index.json b/site/public/v1/software/sinfo/index.json new file mode 100644 index 000000000000..09c3fcfb5a59 --- /dev/null +++ b/site/public/v1/software/sinfo/index.json @@ -0,0 +1,19 @@ +{ + "id": 9181, + "slug": "sinfo", + "name": "sinfo", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62865567" + ], + "created_at": "2026-07-10T10:12:42.950827", + "updated_at": "2026-07-10T10:12:42.950827", + "url": "/v1/software/sinfo" +} diff --git a/site/public/v1/software/singingcoach/index.json b/site/public/v1/software/singingcoach/index.json new file mode 100644 index 000000000000..4b35fc041f49 --- /dev/null +++ b/site/public/v1/software/singingcoach/index.json @@ -0,0 +1,19 @@ +{ + "id": 9182, + "slug": "singingcoach", + "name": "SingingCoach", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7523533" + ], + "created_at": "2026-07-10T10:12:42.950827", + "updated_at": "2026-07-10T10:12:42.950827", + "url": "/v1/software/singingcoach" +} diff --git a/site/public/v1/software/single-table-inheritance/index.json b/site/public/v1/software/single-table-inheritance/index.json new file mode 100644 index 000000000000..0cbc9774c623 --- /dev/null +++ b/site/public/v1/software/single-table-inheritance/index.json @@ -0,0 +1,19 @@ +{ + "id": 9183, + "slug": "single-table-inheritance", + "name": "Single Table Inheritance", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7523894" + ], + "created_at": "2026-07-10T10:12:42.950827", + "updated_at": "2026-07-10T10:12:42.950827", + "url": "/v1/software/single-table-inheritance" +} diff --git a/site/public/v1/software/sinit/index.json b/site/public/v1/software/sinit/index.json new file mode 100644 index 000000000000..464b8a76f11e --- /dev/null +++ b/site/public/v1/software/sinit/index.json @@ -0,0 +1,23 @@ +{ + "id": 9184, + "slug": "sinit", + "name": "sinit", + "release_date": null, + "developers": [ + "suckless.org" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25389964" + ], + "created_at": "2026-07-10T10:12:42.951827", + "updated_at": "2026-07-10T10:12:42.951827", + "url": "/v1/software/sinit" +} diff --git a/site/public/v1/software/sinqlo/index.json b/site/public/v1/software/sinqlo/index.json new file mode 100644 index 000000000000..800b5b42ba25 --- /dev/null +++ b/site/public/v1/software/sinqlo/index.json @@ -0,0 +1,19 @@ +{ + "id": 9185, + "slug": "sinqlo", + "name": "Sinqlo", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138856104" + ], + "created_at": "2026-07-10T10:12:42.951827", + "updated_at": "2026-07-10T10:12:42.951827", + "url": "/v1/software/sinqlo" +} diff --git a/site/public/v1/software/sintext/index.json b/site/public/v1/software/sintext/index.json new file mode 100644 index 000000000000..0bf239aaa3c4 --- /dev/null +++ b/site/public/v1/software/sintext/index.json @@ -0,0 +1,21 @@ +{ + "id": 9186, + "slug": "sintext", + "name": "SINTEXT", + "release_date": "1993-01-01", + "developers": [], + "publishers": [], + "operating_systems": [ + "DOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125510291" + ], + "created_at": "2026-07-10T10:12:42.951827", + "updated_at": "2026-07-10T10:12:42.951827", + "url": "/v1/software/sintext" +} diff --git a/site/public/v1/software/sinusbot/index.json b/site/public/v1/software/sinusbot/index.json new file mode 100644 index 000000000000..c8e1a4c3f975 --- /dev/null +++ b/site/public/v1/software/sinusbot/index.json @@ -0,0 +1,21 @@ +{ + "id": 9187, + "slug": "sinusbot", + "name": "SinusBot", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Go" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q29364564" + ], + "created_at": "2026-07-10T10:12:42.951827", + "updated_at": "2026-07-10T10:12:42.952827", + "url": "/v1/software/sinusbot" +} diff --git a/site/public/v1/software/sipnms/index.json b/site/public/v1/software/sipnms/index.json new file mode 100644 index 000000000000..8cfc9c0d7493 --- /dev/null +++ b/site/public/v1/software/sipnms/index.json @@ -0,0 +1,19 @@ +{ + "id": 9188, + "slug": "sipnms", + "name": "Sipnms", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7525809" + ], + "created_at": "2026-07-10T10:12:42.952827", + "updated_at": "2026-07-10T10:12:42.952827", + "url": "/v1/software/sipnms" +} diff --git a/site/public/v1/software/sipsak/index.json b/site/public/v1/software/sipsak/index.json new file mode 100644 index 000000000000..c76a89da26b5 --- /dev/null +++ b/site/public/v1/software/sipsak/index.json @@ -0,0 +1,19 @@ +{ + "id": 9189, + "slug": "sipsak", + "name": "sipsak", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62865542" + ], + "created_at": "2026-07-10T10:12:42.952827", + "updated_at": "2026-07-10T10:12:42.952827", + "url": "/v1/software/sipsak" +} diff --git a/site/public/v1/software/sirion/index.json b/site/public/v1/software/sirion/index.json new file mode 100644 index 000000000000..8cf563336c36 --- /dev/null +++ b/site/public/v1/software/sirion/index.json @@ -0,0 +1,19 @@ +{ + "id": 9190, + "slug": "sirion", + "name": "Sirion", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139759744" + ], + "created_at": "2026-07-10T10:12:42.953828", + "updated_at": "2026-07-10T10:12:42.953828", + "url": "/v1/software/sirion" +} diff --git a/site/public/v1/software/sirius-visualization-software/index.json b/site/public/v1/software/sirius-visualization-software/index.json new file mode 100644 index 000000000000..77428e578ed5 --- /dev/null +++ b/site/public/v1/software/sirius-visualization-software/index.json @@ -0,0 +1,21 @@ +{ + "id": 9191, + "slug": "sirius-visualization-software", + "name": "Sirius visualization software", + "release_date": null, + "developers": [ + "San Diego Supercomputer Center" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7530427" + ], + "created_at": "2026-07-10T10:12:42.954828", + "updated_at": "2026-07-10T10:12:42.954828", + "url": "/v1/software/sirius-visualization-software" +} diff --git a/site/public/v1/software/sisnet/index.json b/site/public/v1/software/sisnet/index.json new file mode 100644 index 000000000000..0b2b3d1568ea --- /dev/null +++ b/site/public/v1/software/sisnet/index.json @@ -0,0 +1,19 @@ +{ + "id": 9192, + "slug": "sisnet", + "name": "sisNET", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117803379" + ], + "created_at": "2026-07-10T10:12:42.956334", + "updated_at": "2026-07-10T10:12:42.956334", + "url": "/v1/software/sisnet" +} diff --git a/site/public/v1/software/sistema/index.json b/site/public/v1/software/sistema/index.json new file mode 100644 index 000000000000..b4090a4ec48e --- /dev/null +++ b/site/public/v1/software/sistema/index.json @@ -0,0 +1,19 @@ +{ + "id": 9193, + "slug": "sistema", + "name": "SISTEMA", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q128800330" + ], + "created_at": "2026-07-10T10:12:42.958335", + "updated_at": "2026-07-10T10:12:42.958335", + "url": "/v1/software/sistema" +} diff --git a/site/public/v1/software/sisu/index.json b/site/public/v1/software/sisu/index.json new file mode 100644 index 000000000000..19b1d959e16b --- /dev/null +++ b/site/public/v1/software/sisu/index.json @@ -0,0 +1,21 @@ +{ + "id": 9194, + "slug": "sisu", + "name": "SiSU", + "release_date": "2005-01-05", + "developers": [], + "publishers": [], + "operating_systems": [ + "Unix-like operating system" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7506336" + ], + "created_at": "2026-07-10T10:12:42.959334", + "updated_at": "2026-07-10T10:12:42.959334", + "url": "/v1/software/sisu" +} diff --git a/site/public/v1/software/site-recorder/index.json b/site/public/v1/software/site-recorder/index.json new file mode 100644 index 000000000000..d638d35fb5f9 --- /dev/null +++ b/site/public/v1/software/site-recorder/index.json @@ -0,0 +1,19 @@ +{ + "id": 9195, + "slug": "site-recorder", + "name": "Site Recorder", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7531761" + ], + "created_at": "2026-07-10T10:12:42.961334", + "updated_at": "2026-07-10T10:12:42.961334", + "url": "/v1/software/site-recorder" +} diff --git a/site/public/v1/software/sitecopy/index.json b/site/public/v1/software/sitecopy/index.json new file mode 100644 index 000000000000..e591cd78a1fb --- /dev/null +++ b/site/public/v1/software/sitecopy/index.json @@ -0,0 +1,19 @@ +{ + "id": 9196, + "slug": "sitecopy", + "name": "sitecopy", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62865531" + ], + "created_at": "2026-07-10T10:12:42.963335", + "updated_at": "2026-07-10T10:12:42.963335", + "url": "/v1/software/sitecopy" +} diff --git a/site/public/v1/software/sitecore-commerce-server/index.json b/site/public/v1/software/sitecore-commerce-server/index.json new file mode 100644 index 000000000000..3ebe092d1d04 --- /dev/null +++ b/site/public/v1/software/sitecore-commerce-server/index.json @@ -0,0 +1,19 @@ +{ + "id": 9197, + "slug": "sitecore-commerce-server", + "name": "Sitecore Commerce Server", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18149375" + ], + "created_at": "2026-07-10T10:12:42.964334", + "updated_at": "2026-07-10T10:12:42.964334", + "url": "/v1/software/sitecore-commerce-server" +} diff --git a/site/public/v1/software/sitecrawler/index.json b/site/public/v1/software/sitecrawler/index.json new file mode 100644 index 000000000000..f41e02d03acb --- /dev/null +++ b/site/public/v1/software/sitecrawler/index.json @@ -0,0 +1,19 @@ +{ + "id": 9198, + "slug": "sitecrawler", + "name": "SiteCrawler", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084566" + ], + "created_at": "2026-07-10T10:12:42.965335", + "updated_at": "2026-07-10T10:12:42.965335", + "url": "/v1/software/sitecrawler" +} diff --git a/site/public/v1/software/sitekiosk/index.json b/site/public/v1/software/sitekiosk/index.json new file mode 100644 index 000000000000..1ad4193c6a86 --- /dev/null +++ b/site/public/v1/software/sitekiosk/index.json @@ -0,0 +1,19 @@ +{ + "id": 9199, + "slug": "sitekiosk", + "name": "SiteKiosk", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2290497" + ], + "created_at": "2026-07-10T10:12:42.966334", + "updated_at": "2026-07-10T10:12:42.966334", + "url": "/v1/software/sitekiosk" +} diff --git a/site/public/v1/software/sitepal/index.json b/site/public/v1/software/sitepal/index.json new file mode 100644 index 000000000000..33683a114777 --- /dev/null +++ b/site/public/v1/software/sitepal/index.json @@ -0,0 +1,19 @@ +{ + "id": 9200, + "slug": "sitepal", + "name": "SitePal", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7531744" + ], + "created_at": "2026-07-10T10:12:42.968334", + "updated_at": "2026-07-10T10:12:42.968334", + "url": "/v1/software/sitepal" +} diff --git a/site/public/v1/software/sitesucker/index.json b/site/public/v1/software/sitesucker/index.json new file mode 100644 index 000000000000..ddfacca041b1 --- /dev/null +++ b/site/public/v1/software/sitesucker/index.json @@ -0,0 +1,19 @@ +{ + "id": 9201, + "slug": "sitesucker", + "name": "SiteSucker", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084567" + ], + "created_at": "2026-07-10T10:12:42.969334", + "updated_at": "2026-07-10T10:12:42.969334", + "url": "/v1/software/sitesucker" +} diff --git a/site/public/v1/software/sitsense/index.json b/site/public/v1/software/sitsense/index.json new file mode 100644 index 000000000000..d363c1a2cc36 --- /dev/null +++ b/site/public/v1/software/sitsense/index.json @@ -0,0 +1,21 @@ +{ + "id": 9202, + "slug": "sitsense", + "name": "SitSense", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "TypeScript" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138565082" + ], + "created_at": "2026-07-10T10:12:42.969334", + "updated_at": "2026-07-10T10:12:42.969334", + "url": "/v1/software/sitsense" +} diff --git a/site/public/v1/software/siv-system-information-viewer/index.json b/site/public/v1/software/siv-system-information-viewer/index.json new file mode 100644 index 000000000000..7710ac9566b7 --- /dev/null +++ b/site/public/v1/software/siv-system-information-viewer/index.json @@ -0,0 +1,23 @@ +{ + "id": 9203, + "slug": "siv-system-information-viewer", + "name": "SIV - System Information Viewer", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136288710" + ], + "created_at": "2026-07-10T10:12:42.970517", + "updated_at": "2026-07-10T10:12:42.970517", + "url": "/v1/software/siv-system-information-viewer" +} diff --git a/site/public/v1/software/sivi-ai/index.json b/site/public/v1/software/sivi-ai/index.json new file mode 100644 index 000000000000..78d9aa752e3e --- /dev/null +++ b/site/public/v1/software/sivi-ai/index.json @@ -0,0 +1,21 @@ +{ + "id": 9204, + "slug": "sivi-ai", + "name": "Sivi AI", + "release_date": null, + "developers": [ + "HelloSivi Software Labs" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139503656" + ], + "created_at": "2026-07-10T10:12:42.970517", + "updated_at": "2026-07-10T10:12:42.970517", + "url": "/v1/software/sivi-ai" +} diff --git a/site/public/v1/software/sixpack/index.json b/site/public/v1/software/sixpack/index.json new file mode 100644 index 000000000000..9213d3ebbcac --- /dev/null +++ b/site/public/v1/software/sixpack/index.json @@ -0,0 +1,23 @@ +{ + "id": 9205, + "slug": "sixpack", + "name": "Sixpack", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "GNU General Public License, version 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105748775" + ], + "created_at": "2026-07-10T10:12:42.971521", + "updated_at": "2026-07-10T10:12:42.971521", + "url": "/v1/software/sixpack" +} diff --git a/site/public/v1/software/skalli/index.json b/site/public/v1/software/skalli/index.json new file mode 100644 index 000000000000..08f2765aac6e --- /dev/null +++ b/site/public/v1/software/skalli/index.json @@ -0,0 +1,19 @@ +{ + "id": 9206, + "slug": "skalli", + "name": "Skalli", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76177714" + ], + "created_at": "2026-07-10T10:12:42.971521", + "updated_at": "2026-07-10T10:12:42.971521", + "url": "/v1/software/skalli" +} diff --git a/site/public/v1/software/skanpage/index.json b/site/public/v1/software/skanpage/index.json new file mode 100644 index 000000000000..f752709fc903 --- /dev/null +++ b/site/public/v1/software/skanpage/index.json @@ -0,0 +1,19 @@ +{ + "id": 9207, + "slug": "skanpage", + "name": "skanpage", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125872716" + ], + "created_at": "2026-07-10T10:12:42.972520", + "updated_at": "2026-07-10T10:12:42.972520", + "url": "/v1/software/skanpage" +} diff --git a/site/public/v1/software/skeedcast/index.json b/site/public/v1/software/skeedcast/index.json new file mode 100644 index 000000000000..4455fd428004 --- /dev/null +++ b/site/public/v1/software/skeedcast/index.json @@ -0,0 +1,19 @@ +{ + "id": 9208, + "slug": "skeedcast", + "name": "SkeedCast", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7534257" + ], + "created_at": "2026-07-10T10:12:42.973520", + "updated_at": "2026-07-10T10:12:42.973520", + "url": "/v1/software/skeedcast" +} diff --git a/site/public/v1/software/sketch-engine/index.json b/site/public/v1/software/sketch-engine/index.json new file mode 100644 index 000000000000..28e31cc425fd --- /dev/null +++ b/site/public/v1/software/sketch-engine/index.json @@ -0,0 +1,19 @@ +{ + "id": 9209, + "slug": "sketch-engine", + "name": "Sketch Engine", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25048081" + ], + "created_at": "2026-07-10T10:12:42.973520", + "updated_at": "2026-07-10T10:12:42.973520", + "url": "/v1/software/sketch-engine" +} diff --git a/site/public/v1/software/sketch2code/index.json b/site/public/v1/software/sketch2code/index.json new file mode 100644 index 000000000000..5f6652439dab --- /dev/null +++ b/site/public/v1/software/sketch2code/index.json @@ -0,0 +1,19 @@ +{ + "id": 9210, + "slug": "sketch2code", + "name": "Sketch2Code", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084568" + ], + "created_at": "2026-07-10T10:12:42.974520", + "updated_at": "2026-07-10T10:12:42.974520", + "url": "/v1/software/sketch2code" +} diff --git a/site/public/v1/software/sketchbook-express/index.json b/site/public/v1/software/sketchbook-express/index.json new file mode 100644 index 000000000000..2e4be49196e3 --- /dev/null +++ b/site/public/v1/software/sketchbook-express/index.json @@ -0,0 +1,19 @@ +{ + "id": 9211, + "slug": "sketchbook-express", + "name": "SketchBook Express", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7534714" + ], + "created_at": "2026-07-10T10:12:42.974520", + "updated_at": "2026-07-10T10:12:42.974520", + "url": "/v1/software/sketchbook-express" +} diff --git a/site/public/v1/software/sketchbook-pro/index.json b/site/public/v1/software/sketchbook-pro/index.json new file mode 100644 index 000000000000..0ac6113b3b8d --- /dev/null +++ b/site/public/v1/software/sketchbook-pro/index.json @@ -0,0 +1,19 @@ +{ + "id": 9212, + "slug": "sketchbook-pro", + "name": "Sketchbook Pro", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084569" + ], + "created_at": "2026-07-10T10:12:42.975520", + "updated_at": "2026-07-10T10:12:42.975520", + "url": "/v1/software/sketchbook-pro" +} diff --git a/site/public/v1/software/sketchbook/index.json b/site/public/v1/software/sketchbook/index.json new file mode 100644 index 000000000000..1165c8b16427 --- /dev/null +++ b/site/public/v1/software/sketchbook/index.json @@ -0,0 +1,21 @@ +{ + "id": 9213, + "slug": "sketchbook", + "name": "Sketchbook", + "release_date": null, + "developers": [ + "Autodesk" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4826241" + ], + "created_at": "2026-07-10T10:12:42.976520", + "updated_at": "2026-07-10T10:12:42.976520", + "url": "/v1/software/sketchbook" +} diff --git a/site/public/v1/software/skiffos/index.json b/site/public/v1/software/skiffos/index.json new file mode 100644 index 000000000000..3b2d13964648 --- /dev/null +++ b/site/public/v1/software/skiffos/index.json @@ -0,0 +1,21 @@ +{ + "id": 9214, + "slug": "skiffos", + "name": "SkiffOS", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127474946" + ], + "created_at": "2026-07-10T10:12:42.976520", + "updated_at": "2026-07-10T10:12:42.976520", + "url": "/v1/software/skiffos" +} diff --git a/site/public/v1/software/skifta/index.json b/site/public/v1/software/skifta/index.json new file mode 100644 index 000000000000..555915f231bd --- /dev/null +++ b/site/public/v1/software/skifta/index.json @@ -0,0 +1,19 @@ +{ + "id": 9215, + "slug": "skifta", + "name": "Skifta", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7535132" + ], + "created_at": "2026-07-10T10:12:42.977521", + "updated_at": "2026-07-10T10:12:42.977521", + "url": "/v1/software/skifta" +} diff --git a/site/public/v1/software/skill-health/index.json b/site/public/v1/software/skill-health/index.json new file mode 100644 index 000000000000..a3e643d60538 --- /dev/null +++ b/site/public/v1/software/skill-health/index.json @@ -0,0 +1,23 @@ +{ + "id": 9216, + "slug": "skill-health", + "name": "skill-health", + "release_date": "2026-06-30", + "developers": [ + "Tatsuya Shimomoto" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140448381" + ], + "created_at": "2026-07-10T10:12:42.977521", + "updated_at": "2026-07-10T10:12:42.977521", + "url": "/v1/software/skill-health" +} diff --git a/site/public/v1/software/skillvee/index.json b/site/public/v1/software/skillvee/index.json new file mode 100644 index 000000000000..859be3d8fa3e --- /dev/null +++ b/site/public/v1/software/skillvee/index.json @@ -0,0 +1,21 @@ +{ + "id": 9217, + "slug": "skillvee", + "name": "Skillvee", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "TypeScript" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136906060" + ], + "created_at": "2026-07-10T10:12:42.977521", + "updated_at": "2026-07-10T10:12:42.977521", + "url": "/v1/software/skillvee" +} diff --git a/site/public/v1/software/skinroute/index.json b/site/public/v1/software/skinroute/index.json new file mode 100644 index 000000000000..8787d95c5041 --- /dev/null +++ b/site/public/v1/software/skinroute/index.json @@ -0,0 +1,19 @@ +{ + "id": 9218, + "slug": "skinroute", + "name": "SKINROUTE", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139488460" + ], + "created_at": "2026-07-10T10:12:42.977521", + "updated_at": "2026-07-10T10:12:42.978520", + "url": "/v1/software/skinroute" +} diff --git a/site/public/v1/software/skitch/index.json b/site/public/v1/software/skitch/index.json new file mode 100644 index 000000000000..c1fa28faf510 --- /dev/null +++ b/site/public/v1/software/skitch/index.json @@ -0,0 +1,19 @@ +{ + "id": 9219, + "slug": "skitch", + "name": "Skitch", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084570" + ], + "created_at": "2026-07-10T10:12:42.978520", + "updated_at": "2026-07-10T10:12:42.978520", + "url": "/v1/software/skitch" +} diff --git a/site/public/v1/software/skohub/index.json b/site/public/v1/software/skohub/index.json new file mode 100644 index 000000000000..cc38e9ee1712 --- /dev/null +++ b/site/public/v1/software/skohub/index.json @@ -0,0 +1,21 @@ +{ + "id": 9220, + "slug": "skohub", + "name": "SkoHub", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Apache Software License 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q129485888" + ], + "created_at": "2026-07-10T10:12:42.978520", + "updated_at": "2026-07-10T10:12:42.978520", + "url": "/v1/software/skohub" +} diff --git a/site/public/v1/software/skoog/index.json b/site/public/v1/software/skoog/index.json new file mode 100644 index 000000000000..e9834b8bb082 --- /dev/null +++ b/site/public/v1/software/skoog/index.json @@ -0,0 +1,19 @@ +{ + "id": 9221, + "slug": "skoog", + "name": "Skoog", + "release_date": "2008-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7536245" + ], + "created_at": "2026-07-10T10:12:42.979520", + "updated_at": "2026-07-10T10:12:42.979520", + "url": "/v1/software/skoog" +} diff --git a/site/public/v1/software/skoosh/index.json b/site/public/v1/software/skoosh/index.json new file mode 100644 index 000000000000..c24603660ac9 --- /dev/null +++ b/site/public/v1/software/skoosh/index.json @@ -0,0 +1,19 @@ +{ + "id": 9222, + "slug": "skoosh", + "name": "skoosh", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63064972" + ], + "created_at": "2026-07-10T10:12:42.979520", + "updated_at": "2026-07-10T10:12:42.979520", + "url": "/v1/software/skoosh" +} diff --git a/site/public/v1/software/skoove/index.json b/site/public/v1/software/skoove/index.json new file mode 100644 index 000000000000..bc9d82035df1 --- /dev/null +++ b/site/public/v1/software/skoove/index.json @@ -0,0 +1,19 @@ +{ + "id": 9223, + "slug": "skoove", + "name": "Skoove", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127040020" + ], + "created_at": "2026-07-10T10:12:42.980520", + "updated_at": "2026-07-10T10:12:42.980520", + "url": "/v1/software/skoove" +} diff --git a/site/public/v1/software/skopeo/index.json b/site/public/v1/software/skopeo/index.json new file mode 100644 index 000000000000..09f5e162900f --- /dev/null +++ b/site/public/v1/software/skopeo/index.json @@ -0,0 +1,19 @@ +{ + "id": 9224, + "slug": "skopeo", + "name": "skopeo", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60916625" + ], + "created_at": "2026-07-10T10:12:42.980520", + "updated_at": "2026-07-10T10:12:42.980520", + "url": "/v1/software/skopeo" +} diff --git a/site/public/v1/software/skosify/index.json b/site/public/v1/software/skosify/index.json new file mode 100644 index 000000000000..b1292de0f528 --- /dev/null +++ b/site/public/v1/software/skosify/index.json @@ -0,0 +1,19 @@ +{ + "id": 9225, + "slug": "skosify", + "name": "Skosify", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110689184" + ], + "created_at": "2026-07-10T10:12:42.980520", + "updated_at": "2026-07-10T10:12:42.980520", + "url": "/v1/software/skosify" +} diff --git a/site/public/v1/software/skrifa/index.json b/site/public/v1/software/skrifa/index.json new file mode 100644 index 000000000000..eb588fbd4217 --- /dev/null +++ b/site/public/v1/software/skrifa/index.json @@ -0,0 +1,19 @@ +{ + "id": 9226, + "slug": "skrifa", + "name": "Skrifa", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q50557294" + ], + "created_at": "2026-07-10T10:12:42.981520", + "updated_at": "2026-07-10T10:12:42.981520", + "url": "/v1/software/skrifa" +} diff --git a/site/public/v1/software/skulabs/index.json b/site/public/v1/software/skulabs/index.json new file mode 100644 index 000000000000..684af43711d9 --- /dev/null +++ b/site/public/v1/software/skulabs/index.json @@ -0,0 +1,19 @@ +{ + "id": 9227, + "slug": "skulabs", + "name": "SKULabs", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q61695256" + ], + "created_at": "2026-07-10T10:12:42.981520", + "updated_at": "2026-07-10T10:12:42.981520", + "url": "/v1/software/skulabs" +} diff --git a/site/public/v1/software/sky-hd/index.json b/site/public/v1/software/sky-hd/index.json new file mode 100644 index 000000000000..be2e39e94e53 --- /dev/null +++ b/site/public/v1/software/sky-hd/index.json @@ -0,0 +1,21 @@ +{ + "id": 9228, + "slug": "sky-hd", + "name": "Sky+ HD", + "release_date": null, + "developers": [ + "Sky Group" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7537135" + ], + "created_at": "2026-07-10T10:12:42.981520", + "updated_at": "2026-07-10T10:12:42.981520", + "url": "/v1/software/sky-hd" +} diff --git a/site/public/v1/software/sky-map/index.json b/site/public/v1/software/sky-map/index.json new file mode 100644 index 000000000000..337fc0aa9ff1 --- /dev/null +++ b/site/public/v1/software/sky-map/index.json @@ -0,0 +1,23 @@ +{ + "id": 9229, + "slug": "sky-map", + "name": "Sky Map", + "release_date": null, + "developers": [ + "Google" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Apache License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16927806" + ], + "created_at": "2026-07-10T10:12:42.982520", + "updated_at": "2026-07-10T10:12:42.982520", + "url": "/v1/software/sky-map" +} diff --git a/site/public/v1/software/skybot-scheduler/index.json b/site/public/v1/software/skybot-scheduler/index.json new file mode 100644 index 000000000000..01037ed85223 --- /dev/null +++ b/site/public/v1/software/skybot-scheduler/index.json @@ -0,0 +1,19 @@ +{ + "id": 9230, + "slug": "skybot-scheduler", + "name": "Skybot Scheduler", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7537602" + ], + "created_at": "2026-07-10T10:12:42.982520", + "updated_at": "2026-07-10T10:12:42.982520", + "url": "/v1/software/skybot-scheduler" +} diff --git a/site/public/v1/software/skyciv/index.json b/site/public/v1/software/skyciv/index.json new file mode 100644 index 000000000000..c895dcc78131 --- /dev/null +++ b/site/public/v1/software/skyciv/index.json @@ -0,0 +1,22 @@ +{ + "id": 9231, + "slug": "skyciv", + "name": "SkyCiv", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q82183993" + ], + "created_at": "2026-07-10T10:12:42.982520", + "updated_at": "2026-07-10T10:12:42.982520", + "url": "/v1/software/skyciv" +} diff --git a/site/public/v1/software/skyfire/index.json b/site/public/v1/software/skyfire/index.json new file mode 100644 index 000000000000..300ae60c1786 --- /dev/null +++ b/site/public/v1/software/skyfire/index.json @@ -0,0 +1,19 @@ +{ + "id": 9232, + "slug": "skyfire", + "name": "Skyfire", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1586208" + ], + "created_at": "2026-07-10T10:12:42.983520", + "updated_at": "2026-07-10T10:12:42.983520", + "url": "/v1/software/skyfire" +} diff --git a/site/public/v1/software/skyglobe/index.json b/site/public/v1/software/skyglobe/index.json new file mode 100644 index 000000000000..425be6dedc87 --- /dev/null +++ b/site/public/v1/software/skyglobe/index.json @@ -0,0 +1,23 @@ +{ + "id": 9233, + "slug": "skyglobe", + "name": "Skyglobe", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q371671" + ], + "created_at": "2026-07-10T10:12:42.983520", + "updated_at": "2026-07-10T10:12:42.983520", + "url": "/v1/software/skyglobe" +} diff --git a/site/public/v1/software/skygrabber/index.json b/site/public/v1/software/skygrabber/index.json new file mode 100644 index 000000000000..56b254d8ff03 --- /dev/null +++ b/site/public/v1/software/skygrabber/index.json @@ -0,0 +1,19 @@ +{ + "id": 9234, + "slug": "skygrabber", + "name": "SkyGrabber", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1425255" + ], + "created_at": "2026-07-10T10:12:42.983520", + "updated_at": "2026-07-10T10:12:42.983520", + "url": "/v1/software/skygrabber" +} diff --git a/site/public/v1/software/skyline-q127485529/index.json b/site/public/v1/software/skyline-q127485529/index.json new file mode 100644 index 000000000000..652faa3c262c --- /dev/null +++ b/site/public/v1/software/skyline-q127485529/index.json @@ -0,0 +1,21 @@ +{ + "id": 9235, + "slug": "skyline-q127485529", + "name": "skyline", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Apache Software License 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127485529" + ], + "created_at": "2026-07-10T10:12:42.983520", + "updated_at": "2026-07-10T10:12:42.983520", + "url": "/v1/software/skyline-q127485529" +} diff --git a/site/public/v1/software/skyline/index.json b/site/public/v1/software/skyline/index.json new file mode 100644 index 000000000000..4a65212ad1ba --- /dev/null +++ b/site/public/v1/software/skyline/index.json @@ -0,0 +1,25 @@ +{ + "id": 9236, + "slug": "skyline", + "name": "Skyline", + "release_date": null, + "developers": [ + "University of Washington" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "Apache Software License 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q48989793" + ], + "created_at": "2026-07-10T10:12:42.984520", + "updated_at": "2026-07-10T10:12:42.984520", + "url": "/v1/software/skyline" +} diff --git a/site/public/v1/software/skymotion/index.json b/site/public/v1/software/skymotion/index.json new file mode 100644 index 000000000000..8950295aaf96 --- /dev/null +++ b/site/public/v1/software/skymotion/index.json @@ -0,0 +1,21 @@ +{ + "id": 9237, + "slug": "skymotion", + "name": "Skymotion", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7537945" + ], + "created_at": "2026-07-10T10:12:42.986527", + "updated_at": "2026-07-10T10:12:42.986527", + "url": "/v1/software/skymotion" +} diff --git a/site/public/v1/software/skype-for-business-online/index.json b/site/public/v1/software/skype-for-business-online/index.json new file mode 100644 index 000000000000..f99f0fa14607 --- /dev/null +++ b/site/public/v1/software/skype-for-business-online/index.json @@ -0,0 +1,19 @@ +{ + "id": 9238, + "slug": "skype-for-business-online", + "name": "Skype for Business Online", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17190333" + ], + "created_at": "2026-07-10T10:12:42.990526", + "updated_at": "2026-07-10T10:12:42.990526", + "url": "/v1/software/skype-for-business-online" +} diff --git a/site/public/v1/software/skype/index.json b/site/public/v1/software/skype/index.json new file mode 100644 index 000000000000..3b3709cd5c38 --- /dev/null +++ b/site/public/v1/software/skype/index.json @@ -0,0 +1,38 @@ +{ + "id": 9239, + "slug": "skype", + "name": "Skype", + "release_date": "2003-08-29", + "developers": [ + "Skype Technologies" + ], + "publishers": [], + "operating_systems": [ + "webOS", + "iOS", + "Windows Phone", + "BlackBerry OS", + "Symbian", + "macOS", + "Microsoft Windows" + ], + "programming_languages": [ + "Objective-C", + "Delphi", + "Object Pascal" + ], + "licenses": [ + "proprietary license" + ], + "genres": [ + "Voice over IP", + "instant messaging client" + ], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q40984" + ], + "created_at": "2026-07-10T10:12:42.991537", + "updated_at": "2026-07-10T10:12:42.991537", + "url": "/v1/software/skype" +} diff --git a/site/public/v1/software/skyscraper-simulator/index.json b/site/public/v1/software/skyscraper-simulator/index.json new file mode 100644 index 000000000000..7d86877e5956 --- /dev/null +++ b/site/public/v1/software/skyscraper-simulator/index.json @@ -0,0 +1,24 @@ +{ + "id": 9240, + "slug": "skyscraper-simulator", + "name": "Skyscraper Simulator", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "GNU General Public License, version 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7538010" + ], + "created_at": "2026-07-10T10:12:42.997526", + "updated_at": "2026-07-10T10:12:42.997526", + "url": "/v1/software/skyscraper-simulator" +} diff --git a/site/public/v1/software/slackbridge/index.json b/site/public/v1/software/slackbridge/index.json new file mode 100644 index 000000000000..feea4b8590c6 --- /dev/null +++ b/site/public/v1/software/slackbridge/index.json @@ -0,0 +1,19 @@ +{ + "id": 9241, + "slug": "slackbridge", + "name": "SlackBridge", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139976510" + ], + "created_at": "2026-07-10T10:12:42.999525", + "updated_at": "2026-07-10T10:12:42.999525", + "url": "/v1/software/slackbridge" +} diff --git a/site/public/v1/software/slapd/index.json b/site/public/v1/software/slapd/index.json new file mode 100644 index 000000000000..a2a5abce4fe2 --- /dev/null +++ b/site/public/v1/software/slapd/index.json @@ -0,0 +1,19 @@ +{ + "id": 9242, + "slug": "slapd", + "name": "Slapd", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7538713" + ], + "created_at": "2026-07-10T10:12:42.999525", + "updated_at": "2026-07-10T10:12:42.999525", + "url": "/v1/software/slapd" +} diff --git a/site/public/v1/software/sleepyhead/index.json b/site/public/v1/software/sleepyhead/index.json new file mode 100644 index 000000000000..f55e9ea883e4 --- /dev/null +++ b/site/public/v1/software/sleepyhead/index.json @@ -0,0 +1,19 @@ +{ + "id": 9243, + "slug": "sleepyhead", + "name": "sleepyhead", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975476" + ], + "created_at": "2026-07-10T10:12:43.000532", + "updated_at": "2026-07-10T10:12:43.000532", + "url": "/v1/software/sleepyhead" +} diff --git a/site/public/v1/software/sleuth/index.json b/site/public/v1/software/sleuth/index.json new file mode 100644 index 000000000000..14a98c9483be --- /dev/null +++ b/site/public/v1/software/sleuth/index.json @@ -0,0 +1,21 @@ +{ + "id": 9244, + "slug": "sleuth", + "name": "sleuth", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "GNU General Public License, version 3.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122830809" + ], + "created_at": "2026-07-10T10:12:43.000532", + "updated_at": "2026-07-10T10:12:43.000532", + "url": "/v1/software/sleuth" +} diff --git a/site/public/v1/software/slide-effect/index.json b/site/public/v1/software/slide-effect/index.json new file mode 100644 index 000000000000..81ee34211c93 --- /dev/null +++ b/site/public/v1/software/slide-effect/index.json @@ -0,0 +1,21 @@ +{ + "id": 9245, + "slug": "slide-effect", + "name": "Slide Effect", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7540315" + ], + "created_at": "2026-07-10T10:12:43.000532", + "updated_at": "2026-07-10T10:12:43.000532", + "url": "/v1/software/slide-effect" +} diff --git a/site/public/v1/software/slidea/index.json b/site/public/v1/software/slidea/index.json new file mode 100644 index 000000000000..4cc67db139af --- /dev/null +++ b/site/public/v1/software/slidea/index.json @@ -0,0 +1,19 @@ +{ + "id": 9246, + "slug": "slidea", + "name": "Slidea", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136430835" + ], + "created_at": "2026-07-10T10:12:43.001531", + "updated_at": "2026-07-10T10:12:43.001531", + "url": "/v1/software/slidea" +} diff --git a/site/public/v1/software/sliderocket/index.json b/site/public/v1/software/sliderocket/index.json new file mode 100644 index 000000000000..4d09537f62e8 --- /dev/null +++ b/site/public/v1/software/sliderocket/index.json @@ -0,0 +1,21 @@ +{ + "id": 9247, + "slug": "sliderocket", + "name": "SlideRocket", + "release_date": null, + "developers": [ + "ClearSlide, Inc." + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17081402" + ], + "created_at": "2026-07-10T10:12:43.001531", + "updated_at": "2026-07-10T10:12:43.001531", + "url": "/v1/software/sliderocket" +} diff --git a/site/public/v1/software/slidewiki/index.json b/site/public/v1/software/slidewiki/index.json new file mode 100644 index 000000000000..8867369ffef6 --- /dev/null +++ b/site/public/v1/software/slidewiki/index.json @@ -0,0 +1,21 @@ +{ + "id": 9248, + "slug": "slidewiki", + "name": "SlideWiki", + "release_date": null, + "developers": [ + "Leipzig University" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6837796" + ], + "created_at": "2026-07-10T10:12:43.001531", + "updated_at": "2026-07-10T10:12:43.001531", + "url": "/v1/software/slidewiki" +} diff --git a/site/public/v1/software/slinca-home/index.json b/site/public/v1/software/slinca-home/index.json new file mode 100644 index 000000000000..5f7bfcf5316a --- /dev/null +++ b/site/public/v1/software/slinca-home/index.json @@ -0,0 +1,21 @@ +{ + "id": 9249, + "slug": "slinca-home", + "name": "SLinCA@Home", + "release_date": null, + "developers": [ + "G. V. Kurdyumov Institute for Metal Physics of the National Academy of Sciences of Ukraine" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4048797" + ], + "created_at": "2026-07-10T10:12:43.001531", + "updated_at": "2026-07-10T10:12:43.001531", + "url": "/v1/software/slinca-home" +} diff --git a/site/public/v1/software/slirp/index.json b/site/public/v1/software/slirp/index.json new file mode 100644 index 000000000000..c287e2bccf91 --- /dev/null +++ b/site/public/v1/software/slirp/index.json @@ -0,0 +1,23 @@ +{ + "id": 9250, + "slug": "slirp", + "name": "Slirp", + "release_date": "1995-03-30", + "developers": [], + "publishers": [], + "operating_systems": [ + "Unix-like operating system" + ], + "programming_languages": [], + "licenses": [ + "permissive free software license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7540965" + ], + "created_at": "2026-07-10T10:12:43.001531", + "updated_at": "2026-07-10T10:12:43.001531", + "url": "/v1/software/slirp" +} diff --git a/site/public/v1/software/sloth-app/index.json b/site/public/v1/software/sloth-app/index.json new file mode 100644 index 000000000000..0bb84817d2b6 --- /dev/null +++ b/site/public/v1/software/sloth-app/index.json @@ -0,0 +1,21 @@ +{ + "id": 9251, + "slug": "sloth-app", + "name": "Sloth (app)", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "3-clause BSD License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136520773" + ], + "created_at": "2026-07-10T10:12:43.002531", + "updated_at": "2026-07-10T10:12:43.002531", + "url": "/v1/software/sloth-app" +} diff --git a/site/public/v1/software/slotomica/index.json b/site/public/v1/software/slotomica/index.json new file mode 100644 index 000000000000..557c4b2f4aa1 --- /dev/null +++ b/site/public/v1/software/slotomica/index.json @@ -0,0 +1,19 @@ +{ + "id": 9252, + "slug": "slotomica", + "name": "Slotomica", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140311241" + ], + "created_at": "2026-07-10T10:12:43.002531", + "updated_at": "2026-07-10T10:12:43.002531", + "url": "/v1/software/slotomica" +} diff --git a/site/public/v1/software/sloveni-ina-2-0-journal/index.json b/site/public/v1/software/sloveni-ina-2-0-journal/index.json new file mode 100644 index 000000000000..c7275707af44 --- /dev/null +++ b/site/public/v1/software/sloveni-ina-2-0-journal/index.json @@ -0,0 +1,19 @@ +{ + "id": 9253, + "slug": "sloveni-ina-2-0-journal", + "name": "Sloveniščina 2.0 - Journal", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084571" + ], + "created_at": "2026-07-10T10:12:43.002531", + "updated_at": "2026-07-10T10:12:43.002531", + "url": "/v1/software/sloveni-ina-2-0-journal" +} diff --git a/site/public/v1/software/slowdown-utility/index.json b/site/public/v1/software/slowdown-utility/index.json new file mode 100644 index 000000000000..8605bafb5638 --- /dev/null +++ b/site/public/v1/software/slowdown-utility/index.json @@ -0,0 +1,19 @@ +{ + "id": 9254, + "slug": "slowdown-utility", + "name": "slowdown utility", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2297672" + ], + "created_at": "2026-07-10T10:12:43.003530", + "updated_at": "2026-07-10T10:12:43.003530", + "url": "/v1/software/slowdown-utility" +} diff --git a/site/public/v1/software/slowdroid/index.json b/site/public/v1/software/slowdroid/index.json new file mode 100644 index 000000000000..2dd8277653e9 --- /dev/null +++ b/site/public/v1/software/slowdroid/index.json @@ -0,0 +1,21 @@ +{ + "id": 9255, + "slug": "slowdroid", + "name": "Slowdroid", + "release_date": "2013-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Java" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q21041356" + ], + "created_at": "2026-07-10T10:12:43.003530", + "updated_at": "2026-07-10T10:12:43.003530", + "url": "/v1/software/slowdroid" +} diff --git a/site/public/v1/software/slowloris/index.json b/site/public/v1/software/slowloris/index.json new file mode 100644 index 000000000000..17e9c3a724a0 --- /dev/null +++ b/site/public/v1/software/slowloris/index.json @@ -0,0 +1,19 @@ +{ + "id": 9256, + "slug": "slowloris", + "name": "Slowloris", + "release_date": "2009-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1848546" + ], + "created_at": "2026-07-10T10:12:43.003530", + "updated_at": "2026-07-10T10:12:43.003530", + "url": "/v1/software/slowloris" +} diff --git a/site/public/v1/software/slowly/index.json b/site/public/v1/software/slowly/index.json new file mode 100644 index 000000000000..501e0866d0b1 --- /dev/null +++ b/site/public/v1/software/slowly/index.json @@ -0,0 +1,19 @@ +{ + "id": 9257, + "slug": "slowly", + "name": "Slowly", + "release_date": "2017-02-14", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q98139720" + ], + "created_at": "2026-07-10T10:12:43.003530", + "updated_at": "2026-07-10T10:12:43.003530", + "url": "/v1/software/slowly" +} diff --git a/site/public/v1/software/slrn/index.json b/site/public/v1/software/slrn/index.json new file mode 100644 index 000000000000..b9a44e85e098 --- /dev/null +++ b/site/public/v1/software/slrn/index.json @@ -0,0 +1,19 @@ +{ + "id": 9258, + "slug": "slrn", + "name": "Slrn", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q178589" + ], + "created_at": "2026-07-10T10:12:43.004530", + "updated_at": "2026-07-10T10:12:43.004530", + "url": "/v1/software/slrn" +} diff --git a/site/public/v1/software/slugs/index.json b/site/public/v1/software/slugs/index.json new file mode 100644 index 000000000000..fb550e471e95 --- /dev/null +++ b/site/public/v1/software/slugs/index.json @@ -0,0 +1,19 @@ +{ + "id": 9259, + "slug": "slugs", + "name": "Slugs", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17081447" + ], + "created_at": "2026-07-10T10:12:43.004530", + "updated_at": "2026-07-10T10:12:43.004530", + "url": "/v1/software/slugs" +} diff --git a/site/public/v1/software/sm-town-meta-passport/index.json b/site/public/v1/software/sm-town-meta-passport/index.json new file mode 100644 index 000000000000..e81b33f7f512 --- /dev/null +++ b/site/public/v1/software/sm-town-meta-passport/index.json @@ -0,0 +1,19 @@ +{ + "id": 9260, + "slug": "sm-town-meta-passport", + "name": "SM Town Meta-Passport", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113954401" + ], + "created_at": "2026-07-10T10:12:43.004530", + "updated_at": "2026-07-10T10:12:43.004530", + "url": "/v1/software/sm-town-meta-passport" +} diff --git a/site/public/v1/software/smaart/index.json b/site/public/v1/software/smaart/index.json new file mode 100644 index 000000000000..fa6d77cd0b74 --- /dev/null +++ b/site/public/v1/software/smaart/index.json @@ -0,0 +1,19 @@ +{ + "id": 9261, + "slug": "smaart", + "name": "Smaart", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6159229" + ], + "created_at": "2026-07-10T10:12:43.004530", + "updated_at": "2026-07-10T10:12:43.004530", + "url": "/v1/software/smaart" +} diff --git a/site/public/v1/software/smadav/index.json b/site/public/v1/software/smadav/index.json new file mode 100644 index 000000000000..594ce35e9bd5 --- /dev/null +++ b/site/public/v1/software/smadav/index.json @@ -0,0 +1,19 @@ +{ + "id": 9262, + "slug": "smadav", + "name": "Smadav", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q12515692" + ], + "created_at": "2026-07-10T10:12:43.005531", + "updated_at": "2026-07-10T10:12:43.005531", + "url": "/v1/software/smadav" +} diff --git a/site/public/v1/software/small-http-server/index.json b/site/public/v1/software/small-http-server/index.json new file mode 100644 index 000000000000..8c6bde37cefd --- /dev/null +++ b/site/public/v1/software/small-http-server/index.json @@ -0,0 +1,19 @@ +{ + "id": 9263, + "slug": "small-http-server", + "name": "Small HTTP Server", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4049632" + ], + "created_at": "2026-07-10T10:12:43.005531", + "updated_at": "2026-07-10T10:12:43.005531", + "url": "/v1/software/small-http-server" +} diff --git a/site/public/v1/software/small-world-2/index.json b/site/public/v1/software/small-world-2/index.json new file mode 100644 index 000000000000..b3d7cce825c4 --- /dev/null +++ b/site/public/v1/software/small-world-2/index.json @@ -0,0 +1,22 @@ +{ + "id": 9264, + "slug": "small-world-2", + "name": "Small World 2", + "release_date": "2013-12-11", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [ + "strategy video game", + "casual game" + ], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111660699" + ], + "created_at": "2026-07-10T10:12:43.005531", + "updated_at": "2026-07-10T10:12:43.005531", + "url": "/v1/software/small-world-2" +} diff --git a/site/public/v1/software/smallpdf-online-pdf-tools/index.json b/site/public/v1/software/smallpdf-online-pdf-tools/index.json new file mode 100644 index 000000000000..59c5f4c34b0c --- /dev/null +++ b/site/public/v1/software/smallpdf-online-pdf-tools/index.json @@ -0,0 +1,19 @@ +{ + "id": 9265, + "slug": "smallpdf-online-pdf-tools", + "name": "Smallpdf- Online PDF Tools", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084572" + ], + "created_at": "2026-07-10T10:12:43.006531", + "updated_at": "2026-07-10T10:12:43.006531", + "url": "/v1/software/smallpdf-online-pdf-tools" +} diff --git a/site/public/v1/software/smallworld/index.json b/site/public/v1/software/smallworld/index.json new file mode 100644 index 000000000000..c449094309b4 --- /dev/null +++ b/site/public/v1/software/smallworld/index.json @@ -0,0 +1,19 @@ +{ + "id": 9266, + "slug": "smallworld", + "name": "Smallworld", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1376225" + ], + "created_at": "2026-07-10T10:12:43.006531", + "updated_at": "2026-07-10T10:12:43.006531", + "url": "/v1/software/smallworld" +} diff --git a/site/public/v1/software/smart-admin/index.json b/site/public/v1/software/smart-admin/index.json new file mode 100644 index 000000000000..f2544187d9e0 --- /dev/null +++ b/site/public/v1/software/smart-admin/index.json @@ -0,0 +1,21 @@ +{ + "id": 9267, + "slug": "smart-admin", + "name": "Smart Admin", + "release_date": null, + "developers": [ + "Smart InsurTech AG" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139382357" + ], + "created_at": "2026-07-10T10:12:43.006531", + "updated_at": "2026-07-10T10:12:43.006531", + "url": "/v1/software/smart-admin" +} diff --git a/site/public/v1/software/smart-check/index.json b/site/public/v1/software/smart-check/index.json new file mode 100644 index 000000000000..9ee2d82bf6d4 --- /dev/null +++ b/site/public/v1/software/smart-check/index.json @@ -0,0 +1,21 @@ +{ + "id": 9268, + "slug": "smart-check", + "name": "Smart Check", + "release_date": null, + "developers": [ + "Smart InsurTech AG" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139382932" + ], + "created_at": "2026-07-10T10:12:43.006531", + "updated_at": "2026-07-10T10:12:43.006531", + "url": "/v1/software/smart-check" +} diff --git a/site/public/v1/software/smart-compare/index.json b/site/public/v1/software/smart-compare/index.json new file mode 100644 index 000000000000..7e8646b652b5 --- /dev/null +++ b/site/public/v1/software/smart-compare/index.json @@ -0,0 +1,21 @@ +{ + "id": 9269, + "slug": "smart-compare", + "name": "Smart Compare", + "release_date": null, + "developers": [ + "Smart InsurTech AG" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139382399" + ], + "created_at": "2026-07-10T10:12:43.006531", + "updated_at": "2026-07-10T10:12:43.006531", + "url": "/v1/software/smart-compare" +} diff --git a/site/public/v1/software/smart-consult/index.json b/site/public/v1/software/smart-consult/index.json new file mode 100644 index 000000000000..7d7ebd1ba955 --- /dev/null +++ b/site/public/v1/software/smart-consult/index.json @@ -0,0 +1,21 @@ +{ + "id": 9270, + "slug": "smart-consult", + "name": "Smart Consult", + "release_date": null, + "developers": [ + "Smart InsurTech AG" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139382955" + ], + "created_at": "2026-07-10T10:12:43.007530", + "updated_at": "2026-07-10T10:12:43.007530", + "url": "/v1/software/smart-consult" +} diff --git a/site/public/v1/software/smart-gevo/index.json b/site/public/v1/software/smart-gevo/index.json new file mode 100644 index 000000000000..0d224dbeb903 --- /dev/null +++ b/site/public/v1/software/smart-gevo/index.json @@ -0,0 +1,21 @@ +{ + "id": 9271, + "slug": "smart-gevo", + "name": "Smart Gevo", + "release_date": null, + "developers": [ + "Smart InsurTech AG" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139382461" + ], + "created_at": "2026-07-10T10:12:43.007530", + "updated_at": "2026-07-10T10:12:43.007530", + "url": "/v1/software/smart-gevo" +} diff --git a/site/public/v1/software/smart-idreader/index.json b/site/public/v1/software/smart-idreader/index.json new file mode 100644 index 000000000000..a5ef888a75f9 --- /dev/null +++ b/site/public/v1/software/smart-idreader/index.json @@ -0,0 +1,19 @@ +{ + "id": 9272, + "slug": "smart-idreader", + "name": "Smart IDReader", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28669427" + ], + "created_at": "2026-07-10T10:12:43.007530", + "updated_at": "2026-07-10T10:12:43.007530", + "url": "/v1/software/smart-idreader" +} diff --git a/site/public/v1/software/smart-information-retrieval-system/index.json b/site/public/v1/software/smart-information-retrieval-system/index.json new file mode 100644 index 000000000000..6b0f281420c5 --- /dev/null +++ b/site/public/v1/software/smart-information-retrieval-system/index.json @@ -0,0 +1,19 @@ +{ + "id": 9273, + "slug": "smart-information-retrieval-system", + "name": "SMART Information Retrieval System", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7391070" + ], + "created_at": "2026-07-10T10:12:43.007530", + "updated_at": "2026-07-10T10:12:43.007530", + "url": "/v1/software/smart-information-retrieval-system" +} diff --git a/site/public/v1/software/smart-insur/index.json b/site/public/v1/software/smart-insur/index.json new file mode 100644 index 000000000000..068e96086d3d --- /dev/null +++ b/site/public/v1/software/smart-insur/index.json @@ -0,0 +1,21 @@ +{ + "id": 9274, + "slug": "smart-insur", + "name": "Smart Insur", + "release_date": null, + "developers": [ + "Smart InsurTech AG" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139382321" + ], + "created_at": "2026-07-10T10:12:43.008531", + "updated_at": "2026-07-10T10:12:43.008531", + "url": "/v1/software/smart-insur" +} diff --git a/site/public/v1/software/smart-live-rebuild/index.json b/site/public/v1/software/smart-live-rebuild/index.json new file mode 100644 index 000000000000..06b81f0e35c6 --- /dev/null +++ b/site/public/v1/software/smart-live-rebuild/index.json @@ -0,0 +1,19 @@ +{ + "id": 9275, + "slug": "smart-live-rebuild", + "name": "smart-live-rebuild", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975478" + ], + "created_at": "2026-07-10T10:12:43.008531", + "updated_at": "2026-07-10T10:12:43.008531", + "url": "/v1/software/smart-live-rebuild" +} diff --git a/site/public/v1/software/smart-switch/index.json b/site/public/v1/software/smart-switch/index.json new file mode 100644 index 000000000000..a2131837551c --- /dev/null +++ b/site/public/v1/software/smart-switch/index.json @@ -0,0 +1,21 @@ +{ + "id": 9276, + "slug": "smart-switch", + "name": "Smart Switch", + "release_date": null, + "developers": [ + "Samsung Electronics" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q30892761" + ], + "created_at": "2026-07-10T10:12:43.008531", + "updated_at": "2026-07-10T10:12:43.008531", + "url": "/v1/software/smart-switch" +} diff --git a/site/public/v1/software/smartcat/index.json b/site/public/v1/software/smartcat/index.json new file mode 100644 index 000000000000..95dc8a49dff8 --- /dev/null +++ b/site/public/v1/software/smartcat/index.json @@ -0,0 +1,19 @@ +{ + "id": 9277, + "slug": "smartcat", + "name": "SmartCAT", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q20979389" + ], + "created_at": "2026-07-10T10:12:43.008531", + "updated_at": "2026-07-10T10:12:43.008531", + "url": "/v1/software/smartcat" +} diff --git a/site/public/v1/software/smartclient/index.json b/site/public/v1/software/smartclient/index.json new file mode 100644 index 000000000000..effca0ecf29e --- /dev/null +++ b/site/public/v1/software/smartclient/index.json @@ -0,0 +1,24 @@ +{ + "id": 9278, + "slug": "smartclient", + "name": "SmartClient", + "release_date": null, + "developers": [ + "Isomorphic Software" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "GNU Lesser General Public License, version 3.0", + "contract" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4049636" + ], + "created_at": "2026-07-10T10:12:43.009531", + "updated_at": "2026-07-10T10:12:43.009531", + "url": "/v1/software/smartclient" +} diff --git a/site/public/v1/software/smartdraw/index.json b/site/public/v1/software/smartdraw/index.json new file mode 100644 index 000000000000..7b7752918cac --- /dev/null +++ b/site/public/v1/software/smartdraw/index.json @@ -0,0 +1,21 @@ +{ + "id": 9279, + "slug": "smartdraw", + "name": "SmartDraw", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2231331" + ], + "created_at": "2026-07-10T10:12:43.009531", + "updated_at": "2026-07-10T10:12:43.009531", + "url": "/v1/software/smartdraw" +} diff --git a/site/public/v1/software/smartdrive/index.json b/site/public/v1/software/smartdrive/index.json new file mode 100644 index 000000000000..898d73f1d9d4 --- /dev/null +++ b/site/public/v1/software/smartdrive/index.json @@ -0,0 +1,23 @@ +{ + "id": 9280, + "slug": "smartdrive", + "name": "SmartDrive", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1131261" + ], + "created_at": "2026-07-10T10:12:43.009531", + "updated_at": "2026-07-10T10:12:43.009531", + "url": "/v1/software/smartdrive" +} diff --git a/site/public/v1/software/smartfrog/index.json b/site/public/v1/software/smartfrog/index.json new file mode 100644 index 000000000000..8b504ca2d724 --- /dev/null +++ b/site/public/v1/software/smartfrog/index.json @@ -0,0 +1,19 @@ +{ + "id": 9281, + "slug": "smartfrog", + "name": "SmartFrog", + "release_date": "2004-01-24", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7543861" + ], + "created_at": "2026-07-10T10:12:43.009531", + "updated_at": "2026-07-10T10:12:43.009531", + "url": "/v1/software/smartfrog" +} diff --git a/site/public/v1/software/smartify/index.json b/site/public/v1/software/smartify/index.json new file mode 100644 index 000000000000..f7f54dda2663 --- /dev/null +++ b/site/public/v1/software/smartify/index.json @@ -0,0 +1,19 @@ +{ + "id": 9282, + "slug": "smartify", + "name": "Smartify", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109286206" + ], + "created_at": "2026-07-10T10:12:43.010530", + "updated_at": "2026-07-10T10:12:43.010530", + "url": "/v1/software/smartify" +} diff --git a/site/public/v1/software/smartmovie/index.json b/site/public/v1/software/smartmovie/index.json new file mode 100644 index 000000000000..d0b855bb9c1c --- /dev/null +++ b/site/public/v1/software/smartmovie/index.json @@ -0,0 +1,19 @@ +{ + "id": 9283, + "slug": "smartmovie", + "name": "Smartmovie", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7544142" + ], + "created_at": "2026-07-10T10:12:43.010530", + "updated_at": "2026-07-10T10:12:43.010530", + "url": "/v1/software/smartmovie" +} diff --git a/site/public/v1/software/smartpar/index.json b/site/public/v1/software/smartpar/index.json new file mode 100644 index 000000000000..51ed9329fff0 --- /dev/null +++ b/site/public/v1/software/smartpar/index.json @@ -0,0 +1,19 @@ +{ + "id": 9284, + "slug": "smartpar", + "name": "SmartPAR", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7543881" + ], + "created_at": "2026-07-10T10:12:43.010530", + "updated_at": "2026-07-10T10:12:43.010530", + "url": "/v1/software/smartpar" +} diff --git a/site/public/v1/software/smartpls/index.json b/site/public/v1/software/smartpls/index.json new file mode 100644 index 000000000000..c4195e72c037 --- /dev/null +++ b/site/public/v1/software/smartpls/index.json @@ -0,0 +1,21 @@ +{ + "id": 9285, + "slug": "smartpls", + "name": "SmartPLS", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q19515577" + ], + "created_at": "2026-07-10T10:12:43.010530", + "updated_at": "2026-07-10T10:12:43.010530", + "url": "/v1/software/smartpls" +} diff --git a/site/public/v1/software/smartrename/index.json b/site/public/v1/software/smartrename/index.json new file mode 100644 index 000000000000..7c573eb2bf94 --- /dev/null +++ b/site/public/v1/software/smartrename/index.json @@ -0,0 +1,19 @@ +{ + "id": 9286, + "slug": "smartrename", + "name": "SmartRename", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11077272" + ], + "created_at": "2026-07-10T10:12:43.011530", + "updated_at": "2026-07-10T10:12:43.011530", + "url": "/v1/software/smartrename" +} diff --git a/site/public/v1/software/smartrouter/index.json b/site/public/v1/software/smartrouter/index.json new file mode 100644 index 000000000000..ccea3b0d0c85 --- /dev/null +++ b/site/public/v1/software/smartrouter/index.json @@ -0,0 +1,19 @@ +{ + "id": 9287, + "slug": "smartrouter", + "name": "SmartRouter", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7543893" + ], + "created_at": "2026-07-10T10:12:43.011530", + "updated_at": "2026-07-10T10:12:43.011530", + "url": "/v1/software/smartrouter" +} diff --git a/site/public/v1/software/smartsheet/index.json b/site/public/v1/software/smartsheet/index.json new file mode 100644 index 000000000000..7137c5f2032c --- /dev/null +++ b/site/public/v1/software/smartsheet/index.json @@ -0,0 +1,21 @@ +{ + "id": 9288, + "slug": "smartsheet", + "name": "Smartsheet", + "release_date": "2006-01-01", + "developers": [ + "Smartsheet Inc." + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7544153" + ], + "created_at": "2026-07-10T10:12:43.011530", + "updated_at": "2026-07-10T10:12:43.011530", + "url": "/v1/software/smartsheet" +} diff --git a/site/public/v1/software/smartvision/index.json b/site/public/v1/software/smartvision/index.json new file mode 100644 index 000000000000..2f1c228e12c7 --- /dev/null +++ b/site/public/v1/software/smartvision/index.json @@ -0,0 +1,19 @@ +{ + "id": 9289, + "slug": "smartvision", + "name": "SmartVision", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7543905" + ], + "created_at": "2026-07-10T10:12:43.011530", + "updated_at": "2026-07-10T10:12:43.011530", + "url": "/v1/software/smartvision" +} diff --git a/site/public/v1/software/smbldap-tools/index.json b/site/public/v1/software/smbldap-tools/index.json new file mode 100644 index 000000000000..1835834c3ad9 --- /dev/null +++ b/site/public/v1/software/smbldap-tools/index.json @@ -0,0 +1,19 @@ +{ + "id": 9290, + "slug": "smbldap-tools", + "name": "smbldap-tools", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62865513" + ], + "created_at": "2026-07-10T10:12:43.012530", + "updated_at": "2026-07-10T10:12:43.012530", + "url": "/v1/software/smbldap-tools" +} diff --git a/site/public/v1/software/smbnetfs/index.json b/site/public/v1/software/smbnetfs/index.json new file mode 100644 index 000000000000..f3e03ac72cab --- /dev/null +++ b/site/public/v1/software/smbnetfs/index.json @@ -0,0 +1,19 @@ +{ + "id": 9291, + "slug": "smbnetfs", + "name": "SMBNetFS", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62865518" + ], + "created_at": "2026-07-10T10:12:43.012530", + "updated_at": "2026-07-10T10:12:43.012530", + "url": "/v1/software/smbnetfs" +} diff --git a/site/public/v1/software/smirk/index.json b/site/public/v1/software/smirk/index.json new file mode 100644 index 000000000000..82d63ce30822 --- /dev/null +++ b/site/public/v1/software/smirk/index.json @@ -0,0 +1,19 @@ +{ + "id": 9292, + "slug": "smirk", + "name": "smirk", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127485674" + ], + "created_at": "2026-07-10T10:12:43.012530", + "updated_at": "2026-07-10T10:12:43.012530", + "url": "/v1/software/smirk" +} diff --git a/site/public/v1/software/smithsonian-voyager/index.json b/site/public/v1/software/smithsonian-voyager/index.json new file mode 100644 index 000000000000..1485198e7053 --- /dev/null +++ b/site/public/v1/software/smithsonian-voyager/index.json @@ -0,0 +1,19 @@ +{ + "id": 9293, + "slug": "smithsonian-voyager", + "name": "Smithsonian Voyager", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084573" + ], + "created_at": "2026-07-10T10:12:43.013531", + "updated_at": "2026-07-10T10:12:43.013531", + "url": "/v1/software/smithsonian-voyager" +} diff --git a/site/public/v1/software/smokeping/index.json b/site/public/v1/software/smokeping/index.json new file mode 100644 index 000000000000..1e5dabb2baeb --- /dev/null +++ b/site/public/v1/software/smokeping/index.json @@ -0,0 +1,19 @@ +{ + "id": 9294, + "slug": "smokeping", + "name": "SmokePing", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62865505" + ], + "created_at": "2026-07-10T10:12:43.013531", + "updated_at": "2026-07-10T10:12:43.013531", + "url": "/v1/software/smokeping" +} diff --git a/site/public/v1/software/smoldyn/index.json b/site/public/v1/software/smoldyn/index.json new file mode 100644 index 000000000000..388b6f1bfd6d --- /dev/null +++ b/site/public/v1/software/smoldyn/index.json @@ -0,0 +1,19 @@ +{ + "id": 9295, + "slug": "smoldyn", + "name": "Smoldyn", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122143985" + ], + "created_at": "2026-07-10T10:12:43.013531", + "updated_at": "2026-07-10T10:12:43.013531", + "url": "/v1/software/smoldyn" +} diff --git a/site/public/v1/software/smolt/index.json b/site/public/v1/software/smolt/index.json new file mode 100644 index 000000000000..33dac8c09096 --- /dev/null +++ b/site/public/v1/software/smolt/index.json @@ -0,0 +1,19 @@ +{ + "id": 9296, + "slug": "smolt", + "name": "Smolt", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q568570" + ], + "created_at": "2026-07-10T10:12:43.013531", + "updated_at": "2026-07-10T10:12:43.013531", + "url": "/v1/software/smolt" +} diff --git a/site/public/v1/software/smoothvideo-project/index.json b/site/public/v1/software/smoothvideo-project/index.json new file mode 100644 index 000000000000..a7b0f0619f49 --- /dev/null +++ b/site/public/v1/software/smoothvideo-project/index.json @@ -0,0 +1,21 @@ +{ + "id": 9297, + "slug": "smoothvideo-project", + "name": "SmoothVideo Project", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Object Pascal" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4049656" + ], + "created_at": "2026-07-10T10:12:43.018263", + "updated_at": "2026-07-10T10:12:43.018263", + "url": "/v1/software/smoothvideo-project" +} diff --git a/site/public/v1/software/sms/index.json b/site/public/v1/software/sms/index.json new file mode 100644 index 000000000000..db28fdff2d4d --- /dev/null +++ b/site/public/v1/software/sms/index.json @@ -0,0 +1,21 @@ +{ + "id": 9298, + "slug": "sms", + "name": "SMS", + "release_date": null, + "developers": [ + "Aquaveo" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7391304" + ], + "created_at": "2026-07-10T10:12:43.021266", + "updated_at": "2026-07-10T10:12:43.021266", + "url": "/v1/software/sms" +} diff --git a/site/public/v1/software/smsmode/index.json b/site/public/v1/software/smsmode/index.json new file mode 100644 index 000000000000..d48be90c1c7d --- /dev/null +++ b/site/public/v1/software/smsmode/index.json @@ -0,0 +1,21 @@ +{ + "id": 9299, + "slug": "smsmode", + "name": "smsmode", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136379230" + ], + "created_at": "2026-07-10T10:12:43.025468", + "updated_at": "2026-07-10T10:12:43.025468", + "url": "/v1/software/smsmode" +} diff --git a/site/public/v1/software/smstools/index.json b/site/public/v1/software/smstools/index.json new file mode 100644 index 000000000000..3056317efbfa --- /dev/null +++ b/site/public/v1/software/smstools/index.json @@ -0,0 +1,21 @@ +{ + "id": 9300, + "slug": "smstools", + "name": "SMSTools", + "release_date": null, + "developers": [ + "Jordi Bonada" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140471111" + ], + "created_at": "2026-07-10T10:12:43.027467", + "updated_at": "2026-07-10T10:12:43.028467", + "url": "/v1/software/smstools" +} diff --git a/site/public/v1/software/smstools2/index.json b/site/public/v1/software/smstools2/index.json new file mode 100644 index 000000000000..54e429568890 --- /dev/null +++ b/site/public/v1/software/smstools2/index.json @@ -0,0 +1,23 @@ +{ + "id": 9301, + "slug": "smstools2", + "name": "SMSTools2", + "release_date": "2000-01-01", + "developers": [ + "Jordi Bonada" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "GNU General Public License, version 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140471112" + ], + "created_at": "2026-07-10T10:12:43.029467", + "updated_at": "2026-07-10T10:12:43.029467", + "url": "/v1/software/smstools2" +} diff --git a/site/public/v1/software/smtm/index.json b/site/public/v1/software/smtm/index.json new file mode 100644 index 000000000000..650752ffd653 --- /dev/null +++ b/site/public/v1/software/smtm/index.json @@ -0,0 +1,19 @@ +{ + "id": 9302, + "slug": "smtm", + "name": "smtm", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62865499" + ], + "created_at": "2026-07-10T10:12:43.030470", + "updated_at": "2026-07-10T10:12:43.030470", + "url": "/v1/software/smtm" +} diff --git a/site/public/v1/software/smugglers-v/index.json b/site/public/v1/software/smugglers-v/index.json new file mode 100644 index 000000000000..d25188152fa4 --- /dev/null +++ b/site/public/v1/software/smugglers-v/index.json @@ -0,0 +1,19 @@ +{ + "id": 9303, + "slug": "smugglers-v", + "name": "Smugglers V", + "release_date": "2014-04-11", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q99646349" + ], + "created_at": "2026-07-10T10:12:43.036467", + "updated_at": "2026-07-10T10:12:43.036467", + "url": "/v1/software/smugglers-v" +} diff --git a/site/public/v1/software/snack-sound-toolkit/index.json b/site/public/v1/software/snack-sound-toolkit/index.json new file mode 100644 index 000000000000..bfca37245dfa --- /dev/null +++ b/site/public/v1/software/snack-sound-toolkit/index.json @@ -0,0 +1,21 @@ +{ + "id": 9304, + "slug": "snack-sound-toolkit", + "name": "Snack Sound Toolkit", + "release_date": null, + "developers": [ + "Royal Institute of Technology" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7546876" + ], + "created_at": "2026-07-10T10:12:43.040136", + "updated_at": "2026-07-10T10:12:43.040136", + "url": "/v1/software/snack-sound-toolkit" +} diff --git a/site/public/v1/software/snagger/index.json b/site/public/v1/software/snagger/index.json new file mode 100644 index 000000000000..8dd09896758c --- /dev/null +++ b/site/public/v1/software/snagger/index.json @@ -0,0 +1,21 @@ +{ + "id": 9305, + "slug": "snagger", + "name": "Snagger", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7546917" + ], + "created_at": "2026-07-10T10:12:43.044063", + "updated_at": "2026-07-10T10:12:43.044063", + "url": "/v1/software/snagger" +} diff --git a/site/public/v1/software/snakemake/index.json b/site/public/v1/software/snakemake/index.json new file mode 100644 index 000000000000..b529db427332 --- /dev/null +++ b/site/public/v1/software/snakemake/index.json @@ -0,0 +1,19 @@ +{ + "id": 9306, + "slug": "snakemake", + "name": "Snakemake", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106286298" + ], + "created_at": "2026-07-10T10:12:43.048143", + "updated_at": "2026-07-10T10:12:43.048143", + "url": "/v1/software/snakemake" +} diff --git a/site/public/v1/software/snap/index.json b/site/public/v1/software/snap/index.json new file mode 100644 index 000000000000..0896a6be4231 --- /dev/null +++ b/site/public/v1/software/snap/index.json @@ -0,0 +1,19 @@ +{ + "id": 9307, + "slug": "snap", + "name": "SNAP", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084574" + ], + "created_at": "2026-07-10T10:12:43.051560", + "updated_at": "2026-07-10T10:12:43.051560", + "url": "/v1/software/snap" +} diff --git a/site/public/v1/software/snapdragon-neural-processing-engine/index.json b/site/public/v1/software/snapdragon-neural-processing-engine/index.json new file mode 100644 index 000000000000..b51a3f294d43 --- /dev/null +++ b/site/public/v1/software/snapdragon-neural-processing-engine/index.json @@ -0,0 +1,19 @@ +{ + "id": 9308, + "slug": "snapdragon-neural-processing-engine", + "name": "Snapdragon Neural Processing Engine", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q119627322" + ], + "created_at": "2026-07-10T10:12:43.054351", + "updated_at": "2026-07-10T10:12:43.054351", + "url": "/v1/software/snapdragon-neural-processing-engine" +} diff --git a/site/public/v1/software/snapforce-crm/index.json b/site/public/v1/software/snapforce-crm/index.json new file mode 100644 index 000000000000..7d865905b068 --- /dev/null +++ b/site/public/v1/software/snapforce-crm/index.json @@ -0,0 +1,19 @@ +{ + "id": 9309, + "slug": "snapforce-crm", + "name": "Snapforce CRM", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q21463570" + ], + "created_at": "2026-07-10T10:12:43.057863", + "updated_at": "2026-07-10T10:12:43.057863", + "url": "/v1/software/snapforce-crm" +} diff --git a/site/public/v1/software/snapp-ai/index.json b/site/public/v1/software/snapp-ai/index.json new file mode 100644 index 000000000000..609755eb5151 --- /dev/null +++ b/site/public/v1/software/snapp-ai/index.json @@ -0,0 +1,19 @@ +{ + "id": 9310, + "slug": "snapp-ai", + "name": "Snapp AI", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140254059" + ], + "created_at": "2026-07-10T10:12:43.058866", + "updated_at": "2026-07-10T10:12:43.058866", + "url": "/v1/software/snapp-ai" +} diff --git a/site/public/v1/software/snapraid/index.json b/site/public/v1/software/snapraid/index.json new file mode 100644 index 000000000000..c48b1241bb8d --- /dev/null +++ b/site/public/v1/software/snapraid/index.json @@ -0,0 +1,21 @@ +{ + "id": 9311, + "slug": "snapraid", + "name": "snapraid", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "GNU General Public License, version 3.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065271" + ], + "created_at": "2026-07-10T10:12:43.059874", + "updated_at": "2026-07-10T10:12:43.059874", + "url": "/v1/software/snapraid" +} diff --git a/site/public/v1/software/snapster/index.json b/site/public/v1/software/snapster/index.json new file mode 100644 index 000000000000..0c1f5a7ba781 --- /dev/null +++ b/site/public/v1/software/snapster/index.json @@ -0,0 +1,23 @@ +{ + "id": 9312, + "slug": "snapster", + "name": "Snapster", + "release_date": "2015-07-17", + "developers": [], + "publishers": [], + "operating_systems": [ + "iOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [ + "raster graphics editor" + ], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q20706504" + ], + "created_at": "2026-07-10T10:12:43.060867", + "updated_at": "2026-07-10T10:12:43.060867", + "url": "/v1/software/snapster" +} diff --git a/site/public/v1/software/snaptu/index.json b/site/public/v1/software/snaptu/index.json new file mode 100644 index 000000000000..642c2f6dbe44 --- /dev/null +++ b/site/public/v1/software/snaptu/index.json @@ -0,0 +1,21 @@ +{ + "id": 9313, + "slug": "snaptu", + "name": "Snaptu", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2916100" + ], + "created_at": "2026-07-10T10:12:43.061867", + "updated_at": "2026-07-10T10:12:43.061867", + "url": "/v1/software/snaptu" +} diff --git a/site/public/v1/software/snapz-pro-x/index.json b/site/public/v1/software/snapz-pro-x/index.json new file mode 100644 index 000000000000..89a4f6184678 --- /dev/null +++ b/site/public/v1/software/snapz-pro-x/index.json @@ -0,0 +1,25 @@ +{ + "id": 9314, + "slug": "snapz-pro-x", + "name": "Snapz Pro X", + "release_date": null, + "developers": [ + "Ambrosia Software" + ], + "publishers": [], + "operating_systems": [ + "macOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [ + "screencasting software" + ], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7547379" + ], + "created_at": "2026-07-10T10:12:43.061867", + "updated_at": "2026-07-10T10:12:43.061867", + "url": "/v1/software/snapz-pro-x" +} diff --git a/site/public/v1/software/snapzen/index.json b/site/public/v1/software/snapzen/index.json new file mode 100644 index 000000000000..40fedbdf320d --- /dev/null +++ b/site/public/v1/software/snapzen/index.json @@ -0,0 +1,19 @@ +{ + "id": 9315, + "slug": "snapzen", + "name": "Snapzen", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084575" + ], + "created_at": "2026-07-10T10:12:43.062866", + "updated_at": "2026-07-10T10:12:43.062866", + "url": "/v1/software/snapzen" +} diff --git a/site/public/v1/software/snarf/index.json b/site/public/v1/software/snarf/index.json new file mode 100644 index 000000000000..b15a9c7ddf41 --- /dev/null +++ b/site/public/v1/software/snarf/index.json @@ -0,0 +1,19 @@ +{ + "id": 9316, + "slug": "snarf", + "name": "snarf", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62865468" + ], + "created_at": "2026-07-10T10:12:43.064867", + "updated_at": "2026-07-10T10:12:43.064867", + "url": "/v1/software/snarf" +} diff --git a/site/public/v1/software/snark/index.json b/site/public/v1/software/snark/index.json new file mode 100644 index 000000000000..58693aab50b4 --- /dev/null +++ b/site/public/v1/software/snark/index.json @@ -0,0 +1,25 @@ +{ + "id": 9317, + "slug": "snark", + "name": "SNARK", + "release_date": null, + "developers": [ + "SRI International" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Common Lisp" + ], + "licenses": [ + "Mozilla Public License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7391799" + ], + "created_at": "2026-07-10T10:12:43.064867", + "updated_at": "2026-07-10T10:12:43.064867", + "url": "/v1/software/snark" +} diff --git a/site/public/v1/software/snatchbot/index.json b/site/public/v1/software/snatchbot/index.json new file mode 100644 index 000000000000..e18182d9a83c --- /dev/null +++ b/site/public/v1/software/snatchbot/index.json @@ -0,0 +1,19 @@ +{ + "id": 9318, + "slug": "snatchbot", + "name": "SnatchBot", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q47458384" + ], + "created_at": "2026-07-10T10:12:43.065866", + "updated_at": "2026-07-10T10:12:43.065866", + "url": "/v1/software/snatchbot" +} diff --git a/site/public/v1/software/sndpeek/index.json b/site/public/v1/software/sndpeek/index.json new file mode 100644 index 000000000000..882232d91217 --- /dev/null +++ b/site/public/v1/software/sndpeek/index.json @@ -0,0 +1,19 @@ +{ + "id": 9319, + "slug": "sndpeek", + "name": "sndpeek", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60917849" + ], + "created_at": "2026-07-10T10:12:43.065866", + "updated_at": "2026-07-10T10:12:43.065866", + "url": "/v1/software/sndpeek" +} diff --git a/site/public/v1/software/snes9x/index.json b/site/public/v1/software/snes9x/index.json new file mode 100644 index 000000000000..e2c73e3aa366 --- /dev/null +++ b/site/public/v1/software/snes9x/index.json @@ -0,0 +1,27 @@ +{ + "id": 9320, + "slug": "snes9x", + "name": "Snes9x", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "AmigaOS 4", + "MorphOS", + "macOS", + "iOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3309521" + ], + "created_at": "2026-07-10T10:12:43.066866", + "updated_at": "2026-07-10T10:12:43.066866", + "url": "/v1/software/snes9x" +} diff --git a/site/public/v1/software/sniffer/index.json b/site/public/v1/software/sniffer/index.json new file mode 100644 index 000000000000..1dcc32e44a77 --- /dev/null +++ b/site/public/v1/software/sniffer/index.json @@ -0,0 +1,19 @@ +{ + "id": 9321, + "slug": "sniffer", + "name": "Sniffer", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107676046" + ], + "created_at": "2026-07-10T10:12:43.066866", + "updated_at": "2026-07-10T10:12:43.066866", + "url": "/v1/software/sniffer" +} diff --git a/site/public/v1/software/snipshot/index.json b/site/public/v1/software/snipshot/index.json new file mode 100644 index 000000000000..c6c28b7693d0 --- /dev/null +++ b/site/public/v1/software/snipshot/index.json @@ -0,0 +1,19 @@ +{ + "id": 9322, + "slug": "snipshot", + "name": "Snipshot", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084578" + ], + "created_at": "2026-07-10T10:12:43.067867", + "updated_at": "2026-07-10T10:12:43.067867", + "url": "/v1/software/snipshot" +} diff --git a/site/public/v1/software/snit/index.json b/site/public/v1/software/snit/index.json new file mode 100644 index 000000000000..09b53fafc900 --- /dev/null +++ b/site/public/v1/software/snit/index.json @@ -0,0 +1,19 @@ +{ + "id": 9323, + "slug": "snit", + "name": "Snit", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4049668" + ], + "created_at": "2026-07-10T10:12:43.068867", + "updated_at": "2026-07-10T10:12:43.068867", + "url": "/v1/software/snit" +} diff --git a/site/public/v1/software/snitz-forums-2000/index.json b/site/public/v1/software/snitz-forums-2000/index.json new file mode 100644 index 000000000000..4361146b341e --- /dev/null +++ b/site/public/v1/software/snitz-forums-2000/index.json @@ -0,0 +1,19 @@ +{ + "id": 9324, + "slug": "snitz-forums-2000", + "name": "Snitz Forums 2000", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4118970" + ], + "created_at": "2026-07-10T10:12:43.068867", + "updated_at": "2026-07-10T10:12:43.068867", + "url": "/v1/software/snitz-forums-2000" +} diff --git a/site/public/v1/software/snns/index.json b/site/public/v1/software/snns/index.json new file mode 100644 index 000000000000..0160943d485b --- /dev/null +++ b/site/public/v1/software/snns/index.json @@ -0,0 +1,19 @@ +{ + "id": 9325, + "slug": "snns", + "name": "SNNS", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1436857" + ], + "created_at": "2026-07-10T10:12:43.068867", + "updated_at": "2026-07-10T10:12:43.068867", + "url": "/v1/software/snns" +} diff --git a/site/public/v1/software/snomed-ct/index.json b/site/public/v1/software/snomed-ct/index.json new file mode 100644 index 000000000000..4e7c9ddefe75 --- /dev/null +++ b/site/public/v1/software/snomed-ct/index.json @@ -0,0 +1,19 @@ +{ + "id": 9326, + "slug": "snomed-ct", + "name": "SNOMED CT", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1753883" + ], + "created_at": "2026-07-10T10:12:43.069867", + "updated_at": "2026-07-10T10:12:43.069867", + "url": "/v1/software/snomed-ct" +} diff --git a/site/public/v1/software/snopt/index.json b/site/public/v1/software/snopt/index.json new file mode 100644 index 000000000000..d7efc16f5591 --- /dev/null +++ b/site/public/v1/software/snopt/index.json @@ -0,0 +1,21 @@ +{ + "id": 9327, + "slug": "snopt", + "name": "SNOPT", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Fortran" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7391871" + ], + "created_at": "2026-07-10T10:12:43.069867", + "updated_at": "2026-07-10T10:12:43.069867", + "url": "/v1/software/snopt" +} diff --git a/site/public/v1/software/snorna-prediction-software/index.json b/site/public/v1/software/snorna-prediction-software/index.json new file mode 100644 index 000000000000..a1f035d01dc3 --- /dev/null +++ b/site/public/v1/software/snorna-prediction-software/index.json @@ -0,0 +1,19 @@ +{ + "id": 9328, + "slug": "snorna-prediction-software", + "name": "SnoRNA prediction software", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7547868" + ], + "created_at": "2026-07-10T10:12:43.070972", + "updated_at": "2026-07-10T10:12:43.070972", + "url": "/v1/software/snorna-prediction-software" +} diff --git a/site/public/v1/software/snow/index.json b/site/public/v1/software/snow/index.json new file mode 100644 index 000000000000..33ea0f908e95 --- /dev/null +++ b/site/public/v1/software/snow/index.json @@ -0,0 +1,19 @@ +{ + "id": 9329, + "slug": "snow", + "name": "Snow", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q50322557" + ], + "created_at": "2026-07-10T10:12:43.070972", + "updated_at": "2026-07-10T10:12:43.070972", + "url": "/v1/software/snow" +} diff --git a/site/public/v1/software/snowball-microcontroller-unit/index.json b/site/public/v1/software/snowball-microcontroller-unit/index.json new file mode 100644 index 000000000000..e26e8d461549 --- /dev/null +++ b/site/public/v1/software/snowball-microcontroller-unit/index.json @@ -0,0 +1,19 @@ +{ + "id": 9330, + "slug": "snowball-microcontroller-unit", + "name": "Snowball Microcontroller unit", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q24809215" + ], + "created_at": "2026-07-10T10:12:43.070972", + "updated_at": "2026-07-10T10:12:43.070972", + "url": "/v1/software/snowball-microcontroller-unit" +} diff --git a/site/public/v1/software/snowblind-studios-game-engine/index.json b/site/public/v1/software/snowblind-studios-game-engine/index.json new file mode 100644 index 000000000000..638c59ae4ea2 --- /dev/null +++ b/site/public/v1/software/snowblind-studios-game-engine/index.json @@ -0,0 +1,21 @@ +{ + "id": 9331, + "slug": "snowblind-studios-game-engine", + "name": "Snowblind Studios game engine", + "release_date": null, + "developers": [ + "Snowblind Studios" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16950266" + ], + "created_at": "2026-07-10T10:12:43.071992", + "updated_at": "2026-07-10T10:12:43.071992", + "url": "/v1/software/snowblind-studios-game-engine" +} diff --git a/site/public/v1/software/snowflake-inc/index.json b/site/public/v1/software/snowflake-inc/index.json new file mode 100644 index 000000000000..394df37753fc --- /dev/null +++ b/site/public/v1/software/snowflake-inc/index.json @@ -0,0 +1,19 @@ +{ + "id": 9332, + "slug": "snowflake-inc", + "name": "Snowflake Inc.", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22078063" + ], + "created_at": "2026-07-10T10:12:43.071992", + "updated_at": "2026-07-10T10:12:43.071992", + "url": "/v1/software/snowflake-inc" +} diff --git a/site/public/v1/software/snowflake/index.json b/site/public/v1/software/snowflake/index.json new file mode 100644 index 000000000000..0daa3a04cd19 --- /dev/null +++ b/site/public/v1/software/snowflake/index.json @@ -0,0 +1,23 @@ +{ + "id": 9333, + "slug": "snowflake", + "name": "Snowflake", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Go" + ], + "licenses": [ + "3-clause BSD License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q114880973" + ], + "created_at": "2026-07-10T10:12:43.071992", + "updated_at": "2026-07-10T10:12:43.071992", + "url": "/v1/software/snowflake" +} diff --git a/site/public/v1/software/snpmasker/index.json b/site/public/v1/software/snpmasker/index.json new file mode 100644 index 000000000000..a986af60d09f --- /dev/null +++ b/site/public/v1/software/snpmasker/index.json @@ -0,0 +1,19 @@ +{ + "id": 9334, + "slug": "snpmasker", + "name": "SNPmasker", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109499678" + ], + "created_at": "2026-07-10T10:12:43.071992", + "updated_at": "2026-07-10T10:12:43.071992", + "url": "/v1/software/snpmasker" +} diff --git a/site/public/v1/software/soapbox/index.json b/site/public/v1/software/soapbox/index.json new file mode 100644 index 000000000000..184fb782c619 --- /dev/null +++ b/site/public/v1/software/soapbox/index.json @@ -0,0 +1,19 @@ +{ + "id": 9335, + "slug": "soapbox", + "name": "soapbox", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065292" + ], + "created_at": "2026-07-10T10:12:43.072990", + "updated_at": "2026-07-10T10:12:43.072990", + "url": "/v1/software/soapbox" +} diff --git a/site/public/v1/software/soaplab/index.json b/site/public/v1/software/soaplab/index.json new file mode 100644 index 000000000000..0a203c5e27d1 --- /dev/null +++ b/site/public/v1/software/soaplab/index.json @@ -0,0 +1,21 @@ +{ + "id": 9336, + "slug": "soaplab", + "name": "Soaplab", + "release_date": null, + "developers": [ + "EMBL's European Bioinformatics Institute" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7549827" + ], + "created_at": "2026-07-10T10:12:43.072990", + "updated_at": "2026-07-10T10:12:43.072990", + "url": "/v1/software/soaplab" +} diff --git a/site/public/v1/software/soar/index.json b/site/public/v1/software/soar/index.json new file mode 100644 index 000000000000..4047adfefec9 --- /dev/null +++ b/site/public/v1/software/soar/index.json @@ -0,0 +1,21 @@ +{ + "id": 9337, + "slug": "soar", + "name": "Soar", + "release_date": "1983-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "BSD licenses" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q382944" + ], + "created_at": "2026-07-10T10:12:43.072990", + "updated_at": "2026-07-10T10:12:43.072990", + "url": "/v1/software/soar" +} diff --git a/site/public/v1/software/sobekcm/index.json b/site/public/v1/software/sobekcm/index.json new file mode 100644 index 000000000000..4114ecded481 --- /dev/null +++ b/site/public/v1/software/sobekcm/index.json @@ -0,0 +1,19 @@ +{ + "id": 9338, + "slug": "sobekcm", + "name": "SobekCM", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7549909" + ], + "created_at": "2026-07-10T10:12:43.073989", + "updated_at": "2026-07-10T10:12:43.073989", + "url": "/v1/software/sobekcm" +} diff --git a/site/public/v1/software/sobrr/index.json b/site/public/v1/software/sobrr/index.json new file mode 100644 index 000000000000..4e7e3afe622a --- /dev/null +++ b/site/public/v1/software/sobrr/index.json @@ -0,0 +1,19 @@ +{ + "id": 9339, + "slug": "sobrr", + "name": "Sobrr", + "release_date": "2014-07-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28127168" + ], + "created_at": "2026-07-10T10:12:43.073989", + "updated_at": "2026-07-10T10:12:43.073989", + "url": "/v1/software/sobrr" +} diff --git a/site/public/v1/software/socat/index.json b/site/public/v1/software/socat/index.json new file mode 100644 index 000000000000..2743bdb275b7 --- /dev/null +++ b/site/public/v1/software/socat/index.json @@ -0,0 +1,21 @@ +{ + "id": 9340, + "slug": "socat", + "name": "socat", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "GNU General Public License, version 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975484" + ], + "created_at": "2026-07-10T10:12:43.073989", + "updated_at": "2026-07-10T10:12:43.073989", + "url": "/v1/software/socat" +} diff --git a/site/public/v1/software/socet-set/index.json b/site/public/v1/software/socet-set/index.json new file mode 100644 index 000000000000..cd3e3e952804 --- /dev/null +++ b/site/public/v1/software/socet-set/index.json @@ -0,0 +1,21 @@ +{ + "id": 9341, + "slug": "socet-set", + "name": "SOCET SET", + "release_date": null, + "developers": [ + "BAE Systems" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7392006" + ], + "created_at": "2026-07-10T10:12:43.074868", + "updated_at": "2026-07-10T10:12:43.074868", + "url": "/v1/software/socet-set" +} diff --git a/site/public/v1/software/sociahive/index.json b/site/public/v1/software/sociahive/index.json new file mode 100644 index 000000000000..d8422122ce5d --- /dev/null +++ b/site/public/v1/software/sociahive/index.json @@ -0,0 +1,23 @@ +{ + "id": 9342, + "slug": "sociahive", + "name": "SociaHive", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "cross-platform" + ], + "programming_languages": [ + "TypeScript" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138841331" + ], + "created_at": "2026-07-10T10:12:43.074868", + "updated_at": "2026-07-10T10:12:43.074868", + "url": "/v1/software/sociahive" +} diff --git a/site/public/v1/software/social-engineer-toolkit-set/index.json b/site/public/v1/software/social-engineer-toolkit-set/index.json new file mode 100644 index 000000000000..510fa9d07275 --- /dev/null +++ b/site/public/v1/software/social-engineer-toolkit-set/index.json @@ -0,0 +1,23 @@ +{ + "id": 9343, + "slug": "social-engineer-toolkit-set", + "name": "Social Engineer Toolkit (SET)", + "release_date": null, + "developers": [], + "publishers": [ + "TrustedSec" + ], + "operating_systems": [], + "programming_languages": [ + "Python" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16677152" + ], + "created_at": "2026-07-10T10:12:43.074868", + "updated_at": "2026-07-10T10:12:43.074868", + "url": "/v1/software/social-engineer-toolkit-set" +} diff --git a/site/public/v1/software/social-feed-manager/index.json b/site/public/v1/software/social-feed-manager/index.json new file mode 100644 index 000000000000..25e81307fbce --- /dev/null +++ b/site/public/v1/software/social-feed-manager/index.json @@ -0,0 +1,19 @@ +{ + "id": 9344, + "slug": "social-feed-manager", + "name": "Social Feed Manager", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106507131" + ], + "created_at": "2026-07-10T10:12:43.075869", + "updated_at": "2026-07-10T10:12:43.075869", + "url": "/v1/software/social-feed-manager" +} diff --git a/site/public/v1/software/socialcam/index.json b/site/public/v1/software/socialcam/index.json new file mode 100644 index 000000000000..903793a22bb0 --- /dev/null +++ b/site/public/v1/software/socialcam/index.json @@ -0,0 +1,19 @@ +{ + "id": 9345, + "slug": "socialcam", + "name": "Socialcam", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3538086" + ], + "created_at": "2026-07-10T10:12:43.075869", + "updated_at": "2026-07-10T10:12:43.075869", + "url": "/v1/software/socialcam" +} diff --git a/site/public/v1/software/socrata-open-data-platform/index.json b/site/public/v1/software/socrata-open-data-platform/index.json new file mode 100644 index 000000000000..0fb79bfd2b65 --- /dev/null +++ b/site/public/v1/software/socrata-open-data-platform/index.json @@ -0,0 +1,23 @@ +{ + "id": 9346, + "slug": "socrata-open-data-platform", + "name": "Socrata Open Data Platform", + "release_date": null, + "developers": [ + "Socrata" + ], + "publishers": [ + "Socrata" + ], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108062141" + ], + "created_at": "2026-07-10T10:12:43.075869", + "updated_at": "2026-07-10T10:12:43.075869", + "url": "/v1/software/socrata-open-data-platform" +} diff --git a/site/public/v1/software/socrates-ii/index.json b/site/public/v1/software/socrates-ii/index.json new file mode 100644 index 000000000000..989a2a25be50 --- /dev/null +++ b/site/public/v1/software/socrates-ii/index.json @@ -0,0 +1,19 @@ +{ + "id": 9347, + "slug": "socrates-ii", + "name": "Socrates II", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7553111" + ], + "created_at": "2026-07-10T10:12:43.076872", + "updated_at": "2026-07-10T10:12:43.076872", + "url": "/v1/software/socrates-ii" +} diff --git a/site/public/v1/software/soda-pdf/index.json b/site/public/v1/software/soda-pdf/index.json new file mode 100644 index 000000000000..36c6b2adb1eb --- /dev/null +++ b/site/public/v1/software/soda-pdf/index.json @@ -0,0 +1,23 @@ +{ + "id": 9348, + "slug": "soda-pdf", + "name": "Soda PDF", + "release_date": "2010-01-01", + "developers": [ + "Lulu Software" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "end-user license agreement" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18155338" + ], + "created_at": "2026-07-10T10:12:43.076872", + "updated_at": "2026-07-10T10:12:43.076872", + "url": "/v1/software/soda-pdf" +} diff --git a/site/public/v1/software/sofa/index.json b/site/public/v1/software/sofa/index.json new file mode 100644 index 000000000000..772b469681a6 --- /dev/null +++ b/site/public/v1/software/sofa/index.json @@ -0,0 +1,21 @@ +{ + "id": 9349, + "slug": "sofa", + "name": "SOFA", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Fortran" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7392034" + ], + "created_at": "2026-07-10T10:12:43.076872", + "updated_at": "2026-07-10T10:12:43.076872", + "url": "/v1/software/sofa" +} diff --git a/site/public/v1/software/sofcheck-inspector/index.json b/site/public/v1/software/sofcheck-inspector/index.json new file mode 100644 index 000000000000..f7b35fbf1d02 --- /dev/null +++ b/site/public/v1/software/sofcheck-inspector/index.json @@ -0,0 +1,19 @@ +{ + "id": 9350, + "slug": "sofcheck-inspector", + "name": "SofCheck Inspector", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7553550" + ], + "created_at": "2026-07-10T10:12:43.077872", + "updated_at": "2026-07-10T10:12:43.077872", + "url": "/v1/software/sofcheck-inspector" +} diff --git a/site/public/v1/software/soft-denchi/index.json b/site/public/v1/software/soft-denchi/index.json new file mode 100644 index 000000000000..15e2600647f4 --- /dev/null +++ b/site/public/v1/software/soft-denchi/index.json @@ -0,0 +1,21 @@ +{ + "id": 9351, + "slug": "soft-denchi", + "name": "Soft-Denchi", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11315313" + ], + "created_at": "2026-07-10T10:12:43.077872", + "updated_at": "2026-07-10T10:12:43.077872", + "url": "/v1/software/soft-denchi" +} diff --git a/site/public/v1/software/softdent/index.json b/site/public/v1/software/softdent/index.json new file mode 100644 index 000000000000..7f893c09facf --- /dev/null +++ b/site/public/v1/software/softdent/index.json @@ -0,0 +1,21 @@ +{ + "id": 9352, + "slug": "softdent", + "name": "SoftDent", + "release_date": null, + "developers": [ + "Kodak" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7553833" + ], + "created_at": "2026-07-10T10:12:43.077872", + "updated_at": "2026-07-10T10:12:43.077872", + "url": "/v1/software/softdent" +} diff --git a/site/public/v1/software/softflowd/index.json b/site/public/v1/software/softflowd/index.json new file mode 100644 index 000000000000..d1a126e5f0c8 --- /dev/null +++ b/site/public/v1/software/softflowd/index.json @@ -0,0 +1,19 @@ +{ + "id": 9353, + "slug": "softflowd", + "name": "softflowd", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62865402" + ], + "created_at": "2026-07-10T10:12:43.077872", + "updated_at": "2026-07-10T10:12:43.077872", + "url": "/v1/software/softflowd" +} diff --git a/site/public/v1/software/softi/index.json b/site/public/v1/software/softi/index.json new file mode 100644 index 000000000000..621c14888597 --- /dev/null +++ b/site/public/v1/software/softi/index.json @@ -0,0 +1,21 @@ +{ + "id": 9354, + "slug": "softi", + "name": "Softi", + "release_date": null, + "developers": [ + "Antonina Starita" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108929297" + ], + "created_at": "2026-07-10T10:12:43.078872", + "updated_at": "2026-07-10T10:12:43.078872", + "url": "/v1/software/softi" +} diff --git a/site/public/v1/software/softline/index.json b/site/public/v1/software/softline/index.json new file mode 100644 index 000000000000..32b6c0d2cd6a --- /dev/null +++ b/site/public/v1/software/softline/index.json @@ -0,0 +1,19 @@ +{ + "id": 9355, + "slug": "softline", + "name": "Softline", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7554121" + ], + "created_at": "2026-07-10T10:12:43.078872", + "updated_at": "2026-07-10T10:12:43.078872", + "url": "/v1/software/softline" +} diff --git a/site/public/v1/software/softmaker-office/index.json b/site/public/v1/software/softmaker-office/index.json new file mode 100644 index 000000000000..48a10869de8e --- /dev/null +++ b/site/public/v1/software/softmaker-office/index.json @@ -0,0 +1,25 @@ +{ + "id": 9356, + "slug": "softmaker-office", + "name": "SoftMaker Office", + "release_date": null, + "developers": [ + "SoftMaker Software GmbH" + ], + "publishers": [], + "operating_systems": [ + "iOS", + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1289689" + ], + "created_at": "2026-07-10T10:12:43.078872", + "updated_at": "2026-07-10T10:12:43.078872", + "url": "/v1/software/softmaker-office" +} diff --git a/site/public/v1/software/softpc/index.json b/site/public/v1/software/softpc/index.json new file mode 100644 index 000000000000..2209396c1589 --- /dev/null +++ b/site/public/v1/software/softpc/index.json @@ -0,0 +1,27 @@ +{ + "id": 9357, + "slug": "softpc", + "name": "SoftPC", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "NeXTSTEP", + "IRIX", + "Mac operating system", + "HP-UX", + "Ultrix", + "IBM AIX", + "Solaris" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1708515" + ], + "created_at": "2026-07-10T10:12:43.079872", + "updated_at": "2026-07-10T10:12:43.079872", + "url": "/v1/software/softpc" +} diff --git a/site/public/v1/software/software-automatic-mouth/index.json b/site/public/v1/software/software-automatic-mouth/index.json new file mode 100644 index 000000000000..0d28e95b3a28 --- /dev/null +++ b/site/public/v1/software/software-automatic-mouth/index.json @@ -0,0 +1,19 @@ +{ + "id": 9358, + "slug": "software-automatic-mouth", + "name": "Software Automatic Mouth", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7554184" + ], + "created_at": "2026-07-10T10:12:43.079872", + "updated_at": "2026-07-10T10:12:43.079872", + "url": "/v1/software/software-automatic-mouth" +} diff --git a/site/public/v1/software/software-bus/index.json b/site/public/v1/software/software-bus/index.json new file mode 100644 index 000000000000..5951f04db979 --- /dev/null +++ b/site/public/v1/software/software-bus/index.json @@ -0,0 +1,19 @@ +{ + "id": 9359, + "slug": "software-bus", + "name": "software bus", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7554265" + ], + "created_at": "2026-07-10T10:12:43.079872", + "updated_at": "2026-07-10T10:12:43.079872", + "url": "/v1/software/software-bus" +} diff --git a/site/public/v1/software/software-defined-defence/index.json b/site/public/v1/software/software-defined-defence/index.json new file mode 100644 index 000000000000..882857f7bfa2 --- /dev/null +++ b/site/public/v1/software/software-defined-defence/index.json @@ -0,0 +1,19 @@ +{ + "id": 9360, + "slug": "software-defined-defence", + "name": "Software Defined Defence", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131422125" + ], + "created_at": "2026-07-10T10:12:43.080871", + "updated_at": "2026-07-10T10:12:43.080871", + "url": "/v1/software/software-defined-defence" +} diff --git a/site/public/v1/software/software-design-document/index.json b/site/public/v1/software/software-design-document/index.json new file mode 100644 index 000000000000..e1bd0eb15b92 --- /dev/null +++ b/site/public/v1/software/software-design-document/index.json @@ -0,0 +1,19 @@ +{ + "id": 9361, + "slug": "software-design-document", + "name": "software design document", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7554282" + ], + "created_at": "2026-07-10T10:12:43.082868", + "updated_at": "2026-07-10T10:12:43.082868", + "url": "/v1/software/software-design-document" +} diff --git a/site/public/v1/software/software-for-library-statistics/index.json b/site/public/v1/software/software-for-library-statistics/index.json new file mode 100644 index 000000000000..d92e6ec06487 --- /dev/null +++ b/site/public/v1/software/software-for-library-statistics/index.json @@ -0,0 +1,19 @@ +{ + "id": 9362, + "slug": "software-for-library-statistics", + "name": "software for library statistics", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q99231498" + ], + "created_at": "2026-07-10T10:12:43.082868", + "updated_at": "2026-07-10T10:12:43.082868", + "url": "/v1/software/software-for-library-statistics" +} diff --git a/site/public/v1/software/software-package/index.json b/site/public/v1/software/software-package/index.json new file mode 100644 index 000000000000..ac686026db9b --- /dev/null +++ b/site/public/v1/software/software-package/index.json @@ -0,0 +1,19 @@ +{ + "id": 9363, + "slug": "software-package", + "name": "software package", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1995545" + ], + "created_at": "2026-07-10T10:12:43.085866", + "updated_at": "2026-07-10T10:12:43.085866", + "url": "/v1/software/software-package" +} diff --git a/site/public/v1/software/software-product-liability/index.json b/site/public/v1/software/software-product-liability/index.json new file mode 100644 index 000000000000..32d008cd86be --- /dev/null +++ b/site/public/v1/software/software-product-liability/index.json @@ -0,0 +1,19 @@ +{ + "id": 9364, + "slug": "software-product-liability", + "name": "Software product liability", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125935740" + ], + "created_at": "2026-07-10T10:12:43.086874", + "updated_at": "2026-07-10T10:12:43.086874", + "url": "/v1/software/software-product-liability" +} diff --git a/site/public/v1/software/software-propagation/index.json b/site/public/v1/software/software-propagation/index.json new file mode 100644 index 000000000000..38a60b2f179d --- /dev/null +++ b/site/public/v1/software/software-propagation/index.json @@ -0,0 +1,19 @@ +{ + "id": 9365, + "slug": "software-propagation", + "name": "software propagation", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7554347" + ], + "created_at": "2026-07-10T10:12:43.086874", + "updated_at": "2026-07-10T10:12:43.086874", + "url": "/v1/software/software-propagation" +} diff --git a/site/public/v1/software/software-testing-automation-framework/index.json b/site/public/v1/software/software-testing-automation-framework/index.json new file mode 100644 index 000000000000..5582294c6c5f --- /dev/null +++ b/site/public/v1/software/software-testing-automation-framework/index.json @@ -0,0 +1,21 @@ +{ + "id": 9366, + "slug": "software-testing-automation-framework", + "name": "Software Testing Automation Framework", + "release_date": "1998-01-01", + "developers": [ + "IBM" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7554233" + ], + "created_at": "2026-07-10T10:12:43.086874", + "updated_at": "2026-07-10T10:12:43.086874", + "url": "/v1/software/software-testing-automation-framework" +} diff --git a/site/public/v1/software/software-token/index.json b/site/public/v1/software/software-token/index.json new file mode 100644 index 000000000000..9e5ae5e2a89a --- /dev/null +++ b/site/public/v1/software/software-token/index.json @@ -0,0 +1,19 @@ +{ + "id": 9367, + "slug": "software-token", + "name": "software token", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17084669" + ], + "created_at": "2026-07-10T10:12:43.087885", + "updated_at": "2026-07-10T10:12:43.087885", + "url": "/v1/software/software-token" +} diff --git a/site/public/v1/software/software-vision-mixer/index.json b/site/public/v1/software/software-vision-mixer/index.json new file mode 100644 index 000000000000..2b4ba7a055fc --- /dev/null +++ b/site/public/v1/software/software-vision-mixer/index.json @@ -0,0 +1,19 @@ +{ + "id": 9368, + "slug": "software-vision-mixer", + "name": "software vision mixer", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7554382" + ], + "created_at": "2026-07-10T10:12:43.088872", + "updated_at": "2026-07-10T10:12:43.088872", + "url": "/v1/software/software-vision-mixer" +} diff --git a/site/public/v1/software/softwarevalet/index.json b/site/public/v1/software/softwarevalet/index.json new file mode 100644 index 000000000000..f0b20e86a450 --- /dev/null +++ b/site/public/v1/software/softwarevalet/index.json @@ -0,0 +1,19 @@ +{ + "id": 9369, + "slug": "softwarevalet", + "name": "SoftwareValet", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7554171" + ], + "created_at": "2026-07-10T10:12:43.088872", + "updated_at": "2026-07-10T10:12:43.088872", + "url": "/v1/software/softwarevalet" +} diff --git a/site/public/v1/software/sogou-explorer/index.json b/site/public/v1/software/sogou-explorer/index.json new file mode 100644 index 000000000000..cf9614ea1b51 --- /dev/null +++ b/site/public/v1/software/sogou-explorer/index.json @@ -0,0 +1,19 @@ +{ + "id": 9370, + "slug": "sogou-explorer", + "name": "Sogou Explorer", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11078345" + ], + "created_at": "2026-07-10T10:12:43.088872", + "updated_at": "2026-07-10T10:12:43.088872", + "url": "/v1/software/sogou-explorer" +} diff --git a/site/public/v1/software/soikko/index.json b/site/public/v1/software/soikko/index.json new file mode 100644 index 000000000000..8acc5d92cc14 --- /dev/null +++ b/site/public/v1/software/soikko/index.json @@ -0,0 +1,19 @@ +{ + "id": 9371, + "slug": "soikko", + "name": "Soikko", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11893981" + ], + "created_at": "2026-07-10T10:12:43.089872", + "updated_at": "2026-07-10T10:12:43.089872", + "url": "/v1/software/soikko" +} diff --git a/site/public/v1/software/solaris-porting-layer/index.json b/site/public/v1/software/solaris-porting-layer/index.json new file mode 100644 index 000000000000..c62db9cdc735 --- /dev/null +++ b/site/public/v1/software/solaris-porting-layer/index.json @@ -0,0 +1,19 @@ +{ + "id": 9372, + "slug": "solaris-porting-layer", + "name": "Solaris Porting Layer", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975490" + ], + "created_at": "2026-07-10T10:12:43.089872", + "updated_at": "2026-07-10T10:12:43.089872", + "url": "/v1/software/solaris-porting-layer" +} diff --git a/site/public/v1/software/solarsoft/index.json b/site/public/v1/software/solarsoft/index.json new file mode 100644 index 000000000000..b8e24aa1a49d --- /dev/null +++ b/site/public/v1/software/solarsoft/index.json @@ -0,0 +1,21 @@ +{ + "id": 9373, + "slug": "solarsoft", + "name": "Solarsoft", + "release_date": null, + "developers": [ + "Lockheed Martin" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7557083" + ], + "created_at": "2026-07-10T10:12:43.089872", + "updated_at": "2026-07-10T10:12:43.089872", + "url": "/v1/software/solarsoft" +} diff --git a/site/public/v1/software/solbundler/index.json b/site/public/v1/software/solbundler/index.json new file mode 100644 index 000000000000..f55a2ea31942 --- /dev/null +++ b/site/public/v1/software/solbundler/index.json @@ -0,0 +1,21 @@ +{ + "id": 9374, + "slug": "solbundler", + "name": "SolBundler", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "TypeScript" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140003202" + ], + "created_at": "2026-07-10T10:12:43.090872", + "updated_at": "2026-07-10T10:12:43.090872", + "url": "/v1/software/solbundler" +} diff --git a/site/public/v1/software/solex/index.json b/site/public/v1/software/solex/index.json new file mode 100644 index 000000000000..d3719dc84fb4 --- /dev/null +++ b/site/public/v1/software/solex/index.json @@ -0,0 +1,19 @@ +{ + "id": 9375, + "slug": "solex", + "name": "Solex", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3964285" + ], + "created_at": "2026-07-10T10:12:43.090872", + "updated_at": "2026-07-10T10:12:43.090872", + "url": "/v1/software/solex" +} diff --git a/site/public/v1/software/solid-converter-pdf/index.json b/site/public/v1/software/solid-converter-pdf/index.json new file mode 100644 index 000000000000..64995a64daa4 --- /dev/null +++ b/site/public/v1/software/solid-converter-pdf/index.json @@ -0,0 +1,21 @@ +{ + "id": 9376, + "slug": "solid-converter-pdf", + "name": "Solid Converter PDF", + "release_date": null, + "developers": [ + "Solid Documents" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7557826" + ], + "created_at": "2026-07-10T10:12:43.090872", + "updated_at": "2026-07-10T10:12:43.090872", + "url": "/v1/software/solid-converter-pdf" +} diff --git a/site/public/v1/software/solid-pdf-creator/index.json b/site/public/v1/software/solid-pdf-creator/index.json new file mode 100644 index 000000000000..e12a0a793f51 --- /dev/null +++ b/site/public/v1/software/solid-pdf-creator/index.json @@ -0,0 +1,19 @@ +{ + "id": 9377, + "slug": "solid-pdf-creator", + "name": "Solid PDF Creator", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7557864" + ], + "created_at": "2026-07-10T10:12:43.091875", + "updated_at": "2026-07-10T10:12:43.091875", + "url": "/v1/software/solid-pdf-creator" +} diff --git a/site/public/v1/software/solid-pdf-tools/index.json b/site/public/v1/software/solid-pdf-tools/index.json new file mode 100644 index 000000000000..c4b592695cda --- /dev/null +++ b/site/public/v1/software/solid-pdf-tools/index.json @@ -0,0 +1,19 @@ +{ + "id": 9378, + "slug": "solid-pdf-tools", + "name": "Solid PDF Tools", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7557865" + ], + "created_at": "2026-07-10T10:12:43.091875", + "updated_at": "2026-07-10T10:12:43.091875", + "url": "/v1/software/solid-pdf-tools" +} diff --git a/site/public/v1/software/solid/index.json b/site/public/v1/software/solid/index.json new file mode 100644 index 000000000000..35a6ba532606 --- /dev/null +++ b/site/public/v1/software/solid/index.json @@ -0,0 +1,23 @@ +{ + "id": 9379, + "slug": "solid", + "name": "Solid", + "release_date": "2016-08-10", + "developers": [ + "Massachusetts Institute of Technology" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q55408718" + ], + "created_at": "2026-07-10T10:12:43.091875", + "updated_at": "2026-07-10T10:12:43.091875", + "url": "/v1/software/solid" +} diff --git a/site/public/v1/software/solidthinking/index.json b/site/public/v1/software/solidthinking/index.json new file mode 100644 index 000000000000..337192ee079d --- /dev/null +++ b/site/public/v1/software/solidthinking/index.json @@ -0,0 +1,19 @@ +{ + "id": 9380, + "slug": "solidthinking", + "name": "solidThinking", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3964326" + ], + "created_at": "2026-07-10T10:12:43.092874", + "updated_at": "2026-07-10T10:12:43.092874", + "url": "/v1/software/solidthinking" +} diff --git a/site/public/v1/software/solsten-cre/index.json b/site/public/v1/software/solsten-cre/index.json new file mode 100644 index 000000000000..16ebbeb8817b --- /dev/null +++ b/site/public/v1/software/solsten-cre/index.json @@ -0,0 +1,19 @@ +{ + "id": 9381, + "slug": "solsten-cre", + "name": "Solsten CRE", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140243794" + ], + "created_at": "2026-07-10T10:12:43.092874", + "updated_at": "2026-07-10T10:12:43.092874", + "url": "/v1/software/solsten-cre" +} diff --git a/site/public/v1/software/solution-deployment-descriptor/index.json b/site/public/v1/software/solution-deployment-descriptor/index.json new file mode 100644 index 000000000000..740589490868 --- /dev/null +++ b/site/public/v1/software/solution-deployment-descriptor/index.json @@ -0,0 +1,19 @@ +{ + "id": 9382, + "slug": "solution-deployment-descriptor", + "name": "Solution Deployment Descriptor", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7558973" + ], + "created_at": "2026-07-10T10:12:43.092874", + "updated_at": "2026-07-10T10:12:43.092874", + "url": "/v1/software/solution-deployment-descriptor" +} diff --git a/site/public/v1/software/solutionreach/index.json b/site/public/v1/software/solutionreach/index.json new file mode 100644 index 000000000000..091451bb7e35 --- /dev/null +++ b/site/public/v1/software/solutionreach/index.json @@ -0,0 +1,19 @@ +{ + "id": 9383, + "slug": "solutionreach", + "name": "Solutionreach", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111317674" + ], + "created_at": "2026-07-10T10:12:43.093872", + "updated_at": "2026-07-10T10:12:43.093872", + "url": "/v1/software/solutionreach" +} diff --git a/site/public/v1/software/solvi-barcode-labels/index.json b/site/public/v1/software/solvi-barcode-labels/index.json new file mode 100644 index 000000000000..ef20c0a15a9a --- /dev/null +++ b/site/public/v1/software/solvi-barcode-labels/index.json @@ -0,0 +1,23 @@ +{ + "id": 9384, + "slug": "solvi-barcode-labels", + "name": "Solvi Barcode Labels", + "release_date": null, + "developers": [ + "Useful Tools" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "TypeScript" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140474101" + ], + "created_at": "2026-07-10T10:12:43.093872", + "updated_at": "2026-07-10T10:12:43.093872", + "url": "/v1/software/solvi-barcode-labels" +} diff --git a/site/public/v1/software/solvi-pick-lists/index.json b/site/public/v1/software/solvi-pick-lists/index.json new file mode 100644 index 000000000000..7fe87533b4e2 --- /dev/null +++ b/site/public/v1/software/solvi-pick-lists/index.json @@ -0,0 +1,23 @@ +{ + "id": 9385, + "slug": "solvi-pick-lists", + "name": "Solvi Pick Lists", + "release_date": null, + "developers": [ + "Useful Tools" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "TypeScript" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140474103" + ], + "created_at": "2026-07-10T10:12:43.093872", + "updated_at": "2026-07-10T10:12:43.093872", + "url": "/v1/software/solvi-pick-lists" +} diff --git a/site/public/v1/software/solvi-restock/index.json b/site/public/v1/software/solvi-restock/index.json new file mode 100644 index 000000000000..16dbe8d3714b --- /dev/null +++ b/site/public/v1/software/solvi-restock/index.json @@ -0,0 +1,23 @@ +{ + "id": 9386, + "slug": "solvi-restock", + "name": "Solvi Restock", + "release_date": null, + "developers": [ + "Useful Tools" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "TypeScript" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140474154" + ], + "created_at": "2026-07-10T10:12:43.094881", + "updated_at": "2026-07-10T10:12:43.094881", + "url": "/v1/software/solvi-restock" +} diff --git a/site/public/v1/software/soma-messenger/index.json b/site/public/v1/software/soma-messenger/index.json new file mode 100644 index 000000000000..ee9579b7a995 --- /dev/null +++ b/site/public/v1/software/soma-messenger/index.json @@ -0,0 +1,23 @@ +{ + "id": 9387, + "slug": "soma-messenger", + "name": "SOMA Messenger", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "iOS" + ], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q21041358" + ], + "created_at": "2026-07-10T10:12:43.094881", + "updated_at": "2026-07-10T10:12:43.094881", + "url": "/v1/software/soma-messenger" +} diff --git a/site/public/v1/software/sonal/index.json b/site/public/v1/software/sonal/index.json new file mode 100644 index 000000000000..a9d0fd44fb15 --- /dev/null +++ b/site/public/v1/software/sonal/index.json @@ -0,0 +1,23 @@ +{ + "id": 9388, + "slug": "sonal", + "name": "Sonal", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105076390" + ], + "created_at": "2026-07-10T10:12:43.094881", + "updated_at": "2026-07-10T10:12:43.094881", + "url": "/v1/software/sonal" +} diff --git a/site/public/v1/software/sonar/index.json b/site/public/v1/software/sonar/index.json new file mode 100644 index 000000000000..73e58724a675 --- /dev/null +++ b/site/public/v1/software/sonar/index.json @@ -0,0 +1,21 @@ +{ + "id": 9389, + "slug": "sonar", + "name": "SONAR", + "release_date": null, + "developers": [ + "Gen Digital" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4119438" + ], + "created_at": "2026-07-10T10:12:43.094881", + "updated_at": "2026-07-10T10:12:43.094881", + "url": "/v1/software/sonar" +} diff --git a/site/public/v1/software/sonata/index.json b/site/public/v1/software/sonata/index.json new file mode 100644 index 000000000000..0d9c5e97333e --- /dev/null +++ b/site/public/v1/software/sonata/index.json @@ -0,0 +1,19 @@ +{ + "id": 9390, + "slug": "sonata", + "name": "Sonata", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q100254821" + ], + "created_at": "2026-07-10T10:12:43.095872", + "updated_at": "2026-07-10T10:12:43.095872", + "url": "/v1/software/sonata" +} diff --git a/site/public/v1/software/sonatype-nexus-repository/index.json b/site/public/v1/software/sonatype-nexus-repository/index.json new file mode 100644 index 000000000000..892e394fc2cb --- /dev/null +++ b/site/public/v1/software/sonatype-nexus-repository/index.json @@ -0,0 +1,23 @@ +{ + "id": 9391, + "slug": "sonatype-nexus-repository", + "name": "Sonatype Nexus Repository", + "release_date": null, + "developers": [ + "Sonatype" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Eclipse Public License 1.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q119269051" + ], + "created_at": "2026-07-10T10:12:43.095872", + "updated_at": "2026-07-10T10:12:43.095872", + "url": "/v1/software/sonatype-nexus-repository" +} diff --git a/site/public/v1/software/songs2see/index.json b/site/public/v1/software/songs2see/index.json new file mode 100644 index 000000000000..f4384d9ba267 --- /dev/null +++ b/site/public/v1/software/songs2see/index.json @@ -0,0 +1,19 @@ +{ + "id": 9392, + "slug": "songs2see", + "name": "Songs2See", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7561307" + ], + "created_at": "2026-07-10T10:12:43.095872", + "updated_at": "2026-07-10T10:12:43.095872", + "url": "/v1/software/songs2see" +} diff --git a/site/public/v1/software/sonic-scenarist/index.json b/site/public/v1/software/sonic-scenarist/index.json new file mode 100644 index 000000000000..af11a34a798a --- /dev/null +++ b/site/public/v1/software/sonic-scenarist/index.json @@ -0,0 +1,21 @@ +{ + "id": 9393, + "slug": "sonic-scenarist", + "name": "Sonic Scenarist", + "release_date": null, + "developers": [ + "Sonic Studio" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1578921" + ], + "created_at": "2026-07-10T10:12:43.096872", + "updated_at": "2026-07-10T10:12:43.096872", + "url": "/v1/software/sonic-scenarist" +} diff --git a/site/public/v1/software/sonicstage/index.json b/site/public/v1/software/sonicstage/index.json new file mode 100644 index 000000000000..619925f80d71 --- /dev/null +++ b/site/public/v1/software/sonicstage/index.json @@ -0,0 +1,23 @@ +{ + "id": 9394, + "slug": "sonicstage", + "name": "SonicStage", + "release_date": null, + "developers": [ + "Sony Group" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1564939" + ], + "created_at": "2026-07-10T10:12:43.096872", + "updated_at": "2026-07-10T10:12:43.096872", + "url": "/v1/software/sonicstage" +} diff --git a/site/public/v1/software/sonika/index.json b/site/public/v1/software/sonika/index.json new file mode 100644 index 000000000000..982ad9d8d6d2 --- /dev/null +++ b/site/public/v1/software/sonika/index.json @@ -0,0 +1,19 @@ +{ + "id": 9395, + "slug": "sonika", + "name": "Sonika", + "release_date": "2009-07-14", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10852428" + ], + "created_at": "2026-07-10T10:12:43.096872", + "updated_at": "2026-07-10T10:12:43.096872", + "url": "/v1/software/sonika" +} diff --git a/site/public/v1/software/sonnetizer/index.json b/site/public/v1/software/sonnetizer/index.json new file mode 100644 index 000000000000..187df6fe530c --- /dev/null +++ b/site/public/v1/software/sonnetizer/index.json @@ -0,0 +1,19 @@ +{ + "id": 9396, + "slug": "sonnetizer", + "name": "Sonnetizer", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125535796" + ], + "created_at": "2026-07-10T10:12:43.097950", + "updated_at": "2026-07-10T10:12:43.097950", + "url": "/v1/software/sonnetizer" +} diff --git a/site/public/v1/software/sony-entertainment-network/index.json b/site/public/v1/software/sony-entertainment-network/index.json new file mode 100644 index 000000000000..f86431d1cb98 --- /dev/null +++ b/site/public/v1/software/sony-entertainment-network/index.json @@ -0,0 +1,21 @@ +{ + "id": 9397, + "slug": "sony-entertainment-network", + "name": "Sony Entertainment Network", + "release_date": "2006-11-01", + "developers": [ + "Sony Group" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3490752" + ], + "created_at": "2026-07-10T10:12:43.097950", + "updated_at": "2026-07-10T10:12:43.097950", + "url": "/v1/software/sony-entertainment-network" +} diff --git a/site/public/v1/software/sony-ericsson-pc-suite/index.json b/site/public/v1/software/sony-ericsson-pc-suite/index.json new file mode 100644 index 000000000000..bcf4df6caf8c --- /dev/null +++ b/site/public/v1/software/sony-ericsson-pc-suite/index.json @@ -0,0 +1,19 @@ +{ + "id": 9398, + "slug": "sony-ericsson-pc-suite", + "name": "Sony Ericsson PC Suite", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q9339580" + ], + "created_at": "2026-07-10T10:12:43.097950", + "updated_at": "2026-07-10T10:12:43.097950", + "url": "/v1/software/sony-ericsson-pc-suite" +} diff --git a/site/public/v1/software/sony-pictures-core/index.json b/site/public/v1/software/sony-pictures-core/index.json new file mode 100644 index 000000000000..7c0aa1e77884 --- /dev/null +++ b/site/public/v1/software/sony-pictures-core/index.json @@ -0,0 +1,21 @@ +{ + "id": 9399, + "slug": "sony-pictures-core", + "name": "Sony Pictures Core", + "release_date": null, + "developers": [ + "Sony Group" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123125290" + ], + "created_at": "2026-07-10T10:12:43.098939", + "updated_at": "2026-07-10T10:12:43.098939", + "url": "/v1/software/sony-pictures-core" +} diff --git a/site/public/v1/software/sony-ziris/index.json b/site/public/v1/software/sony-ziris/index.json new file mode 100644 index 000000000000..42243f393562 --- /dev/null +++ b/site/public/v1/software/sony-ziris/index.json @@ -0,0 +1,21 @@ +{ + "id": 9400, + "slug": "sony-ziris", + "name": "Sony Ziris", + "release_date": null, + "developers": [ + "Sony Group" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7562560" + ], + "created_at": "2026-07-10T10:12:43.098939", + "updated_at": "2026-07-10T10:12:43.098939", + "url": "/v1/software/sony-ziris" +} diff --git a/site/public/v1/software/sopcast/index.json b/site/public/v1/software/sopcast/index.json new file mode 100644 index 000000000000..2d02a5510372 --- /dev/null +++ b/site/public/v1/software/sopcast/index.json @@ -0,0 +1,19 @@ +{ + "id": 9401, + "slug": "sopcast", + "name": "Sopcast", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6861665" + ], + "created_at": "2026-07-10T10:12:43.098939", + "updated_at": "2026-07-10T10:12:43.098939", + "url": "/v1/software/sopcast" +} diff --git a/site/public/v1/software/soperion/index.json b/site/public/v1/software/soperion/index.json new file mode 100644 index 000000000000..8bb5eeb927c2 --- /dev/null +++ b/site/public/v1/software/soperion/index.json @@ -0,0 +1,19 @@ +{ + "id": 9402, + "slug": "soperion", + "name": "Soperion", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139199695" + ], + "created_at": "2026-07-10T10:12:43.099979", + "updated_at": "2026-07-10T10:12:43.099979", + "url": "/v1/software/soperion" +} diff --git a/site/public/v1/software/sophie/index.json b/site/public/v1/software/sophie/index.json new file mode 100644 index 000000000000..402b7678ceb4 --- /dev/null +++ b/site/public/v1/software/sophie/index.json @@ -0,0 +1,19 @@ +{ + "id": 9403, + "slug": "sophie", + "name": "Sophie", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084579" + ], + "created_at": "2026-07-10T10:12:43.099979", + "updated_at": "2026-07-10T10:12:43.099979", + "url": "/v1/software/sophie" +} diff --git a/site/public/v1/software/sophocles/index.json b/site/public/v1/software/sophocles/index.json new file mode 100644 index 000000000000..d9f95f47721e --- /dev/null +++ b/site/public/v1/software/sophocles/index.json @@ -0,0 +1,21 @@ +{ + "id": 9404, + "slug": "sophocles", + "name": "Sophocles", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7563116" + ], + "created_at": "2026-07-10T10:12:43.099979", + "updated_at": "2026-07-10T10:12:43.099979", + "url": "/v1/software/sophocles" +} diff --git a/site/public/v1/software/sorald/index.json b/site/public/v1/software/sorald/index.json new file mode 100644 index 000000000000..e283abf1d743 --- /dev/null +++ b/site/public/v1/software/sorald/index.json @@ -0,0 +1,21 @@ +{ + "id": 9405, + "slug": "sorald", + "name": "sorald", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127485400" + ], + "created_at": "2026-07-10T10:12:43.101066", + "updated_at": "2026-07-10T10:12:43.101066", + "url": "/v1/software/sorald" +} diff --git a/site/public/v1/software/soroush-plus/index.json b/site/public/v1/software/soroush-plus/index.json new file mode 100644 index 000000000000..79d9df4f8135 --- /dev/null +++ b/site/public/v1/software/soroush-plus/index.json @@ -0,0 +1,24 @@ +{ + "id": 9406, + "slug": "soroush-plus", + "name": "Soroush Plus", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "ChromeOS", + "iOS", + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q52176204" + ], + "created_at": "2026-07-10T10:12:43.101066", + "updated_at": "2026-07-10T10:12:43.101066", + "url": "/v1/software/soroush-plus" +} diff --git a/site/public/v1/software/sorso/index.json b/site/public/v1/software/sorso/index.json new file mode 100644 index 000000000000..dbcf3a58809a --- /dev/null +++ b/site/public/v1/software/sorso/index.json @@ -0,0 +1,21 @@ +{ + "id": 9407, + "slug": "sorso", + "name": "Sorso", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [ + "artificial intelligence" + ], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139409811" + ], + "created_at": "2026-07-10T10:12:43.101066", + "updated_at": "2026-07-10T10:12:43.101066", + "url": "/v1/software/sorso" +} diff --git a/site/public/v1/software/sort-my-list/index.json b/site/public/v1/software/sort-my-list/index.json new file mode 100644 index 000000000000..95cd08d1cce8 --- /dev/null +++ b/site/public/v1/software/sort-my-list/index.json @@ -0,0 +1,19 @@ +{ + "id": 9408, + "slug": "sort-my-list", + "name": "Sort My List", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084581" + ], + "created_at": "2026-07-10T10:12:43.101992", + "updated_at": "2026-07-10T10:12:43.101992", + "url": "/v1/software/sort-my-list" +} diff --git a/site/public/v1/software/sortd/index.json b/site/public/v1/software/sortd/index.json new file mode 100644 index 000000000000..5e71c17ff6a4 --- /dev/null +++ b/site/public/v1/software/sortd/index.json @@ -0,0 +1,19 @@ +{ + "id": 9409, + "slug": "sortd", + "name": "Sortd", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084580" + ], + "created_at": "2026-07-10T10:12:43.101992", + "updated_at": "2026-07-10T10:12:43.101992", + "url": "/v1/software/sortd" +} diff --git a/site/public/v1/software/sos-online-backup/index.json b/site/public/v1/software/sos-online-backup/index.json new file mode 100644 index 000000000000..a5e2c0cad410 --- /dev/null +++ b/site/public/v1/software/sos-online-backup/index.json @@ -0,0 +1,21 @@ +{ + "id": 9410, + "slug": "sos-online-backup", + "name": "SOS Online Backup", + "release_date": "2001-01-01", + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7392116" + ], + "created_at": "2026-07-10T10:12:43.101992", + "updated_at": "2026-07-10T10:12:43.101992", + "url": "/v1/software/sos-online-backup" +} diff --git a/site/public/v1/software/soulhacker/index.json b/site/public/v1/software/soulhacker/index.json new file mode 100644 index 000000000000..eefdd6d34364 --- /dev/null +++ b/site/public/v1/software/soulhacker/index.json @@ -0,0 +1,21 @@ +{ + "id": 9411, + "slug": "soulhacker", + "name": "Soulhacker", + "release_date": "2020-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [ + "Combinatory literature" + ], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131377248" + ], + "created_at": "2026-07-10T10:12:43.102990", + "updated_at": "2026-07-10T10:12:43.102990", + "url": "/v1/software/soulhacker" +} diff --git a/site/public/v1/software/soulseek/index.json b/site/public/v1/software/soulseek/index.json new file mode 100644 index 000000000000..29d2c40e364f --- /dev/null +++ b/site/public/v1/software/soulseek/index.json @@ -0,0 +1,24 @@ +{ + "id": 9412, + "slug": "soulseek", + "name": "Soulseek", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q928074" + ], + "created_at": "2026-07-10T10:12:43.102990", + "updated_at": "2026-07-10T10:12:43.102990", + "url": "/v1/software/soulseek" +} diff --git a/site/public/v1/software/sound-designer/index.json b/site/public/v1/software/sound-designer/index.json new file mode 100644 index 000000000000..3dc2f61ae38f --- /dev/null +++ b/site/public/v1/software/sound-designer/index.json @@ -0,0 +1,19 @@ +{ + "id": 9413, + "slug": "sound-designer", + "name": "Sound Designer", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60616729" + ], + "created_at": "2026-07-10T10:12:43.102990", + "updated_at": "2026-07-10T10:12:43.102990", + "url": "/v1/software/sound-designer" +} diff --git a/site/public/v1/software/sound-voltex-iii-gravity-wars-e-amusement-cloud/index.json b/site/public/v1/software/sound-voltex-iii-gravity-wars-e-amusement-cloud/index.json new file mode 100644 index 000000000000..a55d5ba6fc3b --- /dev/null +++ b/site/public/v1/software/sound-voltex-iii-gravity-wars-e-amusement-cloud/index.json @@ -0,0 +1,19 @@ +{ + "id": 9414, + "slug": "sound-voltex-iii-gravity-wars-e-amusement-cloud", + "name": "Sound Voltex III: Gravity Wars e-Amusement Cloud", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q30106433" + ], + "created_at": "2026-07-10T10:12:43.103992", + "updated_at": "2026-07-10T10:12:43.103992", + "url": "/v1/software/sound-voltex-iii-gravity-wars-e-amusement-cloud" +} diff --git a/site/public/v1/software/soundapp/index.json b/site/public/v1/software/soundapp/index.json new file mode 100644 index 000000000000..40e8a9c49d19 --- /dev/null +++ b/site/public/v1/software/soundapp/index.json @@ -0,0 +1,23 @@ +{ + "id": 9415, + "slug": "soundapp", + "name": "SoundApp", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "System 7" + ], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7564608" + ], + "created_at": "2026-07-10T10:12:43.103992", + "updated_at": "2026-07-10T10:12:43.103992", + "url": "/v1/software/soundapp" +} diff --git a/site/public/v1/software/soundbeam/index.json b/site/public/v1/software/soundbeam/index.json new file mode 100644 index 000000000000..b302b2d55c96 --- /dev/null +++ b/site/public/v1/software/soundbeam/index.json @@ -0,0 +1,21 @@ +{ + "id": 9416, + "slug": "soundbeam", + "name": "Soundbeam", + "release_date": "1989-01-01", + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7564835" + ], + "created_at": "2026-07-10T10:12:43.103992", + "updated_at": "2026-07-10T10:12:43.103992", + "url": "/v1/software/soundbeam" +} diff --git a/site/public/v1/software/soundcite/index.json b/site/public/v1/software/soundcite/index.json new file mode 100644 index 000000000000..86407315b30b --- /dev/null +++ b/site/public/v1/software/soundcite/index.json @@ -0,0 +1,19 @@ +{ + "id": 9417, + "slug": "soundcite", + "name": "Soundcite", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087719" + ], + "created_at": "2026-07-10T10:12:43.103992", + "updated_at": "2026-07-10T10:12:43.103992", + "url": "/v1/software/soundcite" +} diff --git a/site/public/v1/software/soundiiz/index.json b/site/public/v1/software/soundiiz/index.json new file mode 100644 index 000000000000..f9ba62f711df --- /dev/null +++ b/site/public/v1/software/soundiiz/index.json @@ -0,0 +1,19 @@ +{ + "id": 9418, + "slug": "soundiiz", + "name": "Soundiiz", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22908929" + ], + "created_at": "2026-07-10T10:12:43.104990", + "updated_at": "2026-07-10T10:12:43.104990", + "url": "/v1/software/soundiiz" +} diff --git a/site/public/v1/software/soundkonverter/index.json b/site/public/v1/software/soundkonverter/index.json new file mode 100644 index 000000000000..1f170db94cc5 --- /dev/null +++ b/site/public/v1/software/soundkonverter/index.json @@ -0,0 +1,19 @@ +{ + "id": 9419, + "slug": "soundkonverter", + "name": "SoundKonverter", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6132716" + ], + "created_at": "2026-07-10T10:12:43.104990", + "updated_at": "2026-07-10T10:12:43.104990", + "url": "/v1/software/soundkonverter" +} diff --git a/site/public/v1/software/soundplant/index.json b/site/public/v1/software/soundplant/index.json new file mode 100644 index 000000000000..3747ac71086e --- /dev/null +++ b/site/public/v1/software/soundplant/index.json @@ -0,0 +1,19 @@ +{ + "id": 9420, + "slug": "soundplant", + "name": "Soundplant", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7564877" + ], + "created_at": "2026-07-10T10:12:43.105989", + "updated_at": "2026-07-10T10:12:43.105989", + "url": "/v1/software/soundplant" +} diff --git a/site/public/v1/software/soundscriber/index.json b/site/public/v1/software/soundscriber/index.json new file mode 100644 index 000000000000..30fd81a90403 --- /dev/null +++ b/site/public/v1/software/soundscriber/index.json @@ -0,0 +1,23 @@ +{ + "id": 9421, + "slug": "soundscriber", + "name": "SoundScriber", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "GNU General Public License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105076391" + ], + "created_at": "2026-07-10T10:12:43.105989", + "updated_at": "2026-07-10T10:12:43.105989", + "url": "/v1/software/soundscriber" +} diff --git a/site/public/v1/software/soundslides/index.json b/site/public/v1/software/soundslides/index.json new file mode 100644 index 000000000000..0d1f0e196874 --- /dev/null +++ b/site/public/v1/software/soundslides/index.json @@ -0,0 +1,19 @@ +{ + "id": 9422, + "slug": "soundslides", + "name": "Soundslides", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7564969" + ], + "created_at": "2026-07-10T10:12:43.105989", + "updated_at": "2026-07-10T10:12:43.105989", + "url": "/v1/software/soundslides" +} diff --git a/site/public/v1/software/soundsphere/index.json b/site/public/v1/software/soundsphere/index.json new file mode 100644 index 000000000000..619b66a44f8a --- /dev/null +++ b/site/public/v1/software/soundsphere/index.json @@ -0,0 +1,19 @@ +{ + "id": 9423, + "slug": "soundsphere", + "name": "Soundsphere", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137647085" + ], + "created_at": "2026-07-10T10:12:43.105989", + "updated_at": "2026-07-10T10:12:43.105989", + "url": "/v1/software/soundsphere" +} diff --git a/site/public/v1/software/source-connect/index.json b/site/public/v1/software/source-connect/index.json new file mode 100644 index 000000000000..684b3f62e075 --- /dev/null +++ b/site/public/v1/software/source-connect/index.json @@ -0,0 +1,19 @@ +{ + "id": 9424, + "slug": "source-connect", + "name": "Source-Connect", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131320014" + ], + "created_at": "2026-07-10T10:12:43.106989", + "updated_at": "2026-07-10T10:12:43.106989", + "url": "/v1/software/source-connect" +} diff --git a/site/public/v1/software/source-filmmaker-2/index.json b/site/public/v1/software/source-filmmaker-2/index.json new file mode 100644 index 000000000000..c1b0445423cb --- /dev/null +++ b/site/public/v1/software/source-filmmaker-2/index.json @@ -0,0 +1,19 @@ +{ + "id": 9425, + "slug": "source-filmmaker-2", + "name": "Source Filmmaker 2", + "release_date": "2015-09-09", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135985547" + ], + "created_at": "2026-07-10T10:12:43.109990", + "updated_at": "2026-07-10T10:12:43.109990", + "url": "/v1/software/source-filmmaker-2" +} diff --git a/site/public/v1/software/source-filmmaker/index.json b/site/public/v1/software/source-filmmaker/index.json new file mode 100644 index 000000000000..617b7d1bae7b --- /dev/null +++ b/site/public/v1/software/source-filmmaker/index.json @@ -0,0 +1,30 @@ +{ + "id": 9426, + "slug": "source-filmmaker", + "name": "Source Filmmaker", + "release_date": "2012-07-10", + "developers": [ + "Valve Corporation" + ], + "publishers": [ + "Valve Corporation" + ], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [ + "Python" + ], + "licenses": [ + "proprietary license", + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4049816" + ], + "created_at": "2026-07-10T10:12:43.111990", + "updated_at": "2026-07-10T10:12:43.111990", + "url": "/v1/software/source-filmmaker" +} diff --git a/site/public/v1/software/source-port/index.json b/site/public/v1/software/source-port/index.json new file mode 100644 index 000000000000..89ccfc407240 --- /dev/null +++ b/site/public/v1/software/source-port/index.json @@ -0,0 +1,19 @@ +{ + "id": 9427, + "slug": "source-port", + "name": "source port", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7565159" + ], + "created_at": "2026-07-10T10:12:43.113063", + "updated_at": "2026-07-10T10:12:43.113063", + "url": "/v1/software/source-port" +} diff --git a/site/public/v1/software/source-sdk/index.json b/site/public/v1/software/source-sdk/index.json new file mode 100644 index 000000000000..efc2a54be5bf --- /dev/null +++ b/site/public/v1/software/source-sdk/index.json @@ -0,0 +1,19 @@ +{ + "id": 9428, + "slug": "source-sdk", + "name": "Source SDK", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q969130" + ], + "created_at": "2026-07-10T10:12:43.114102", + "updated_at": "2026-07-10T10:12:43.114102", + "url": "/v1/software/source-sdk" +} diff --git a/site/public/v1/software/sourcery/index.json b/site/public/v1/software/sourcery/index.json new file mode 100644 index 000000000000..e54e29f3d3c0 --- /dev/null +++ b/site/public/v1/software/sourcery/index.json @@ -0,0 +1,19 @@ +{ + "id": 9429, + "slug": "sourcery", + "name": "Sourcery", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111465365" + ], + "created_at": "2026-07-10T10:12:43.115680", + "updated_at": "2026-07-10T10:12:43.115680", + "url": "/v1/software/sourcery" +} diff --git a/site/public/v1/software/sourcetrail/index.json b/site/public/v1/software/sourcetrail/index.json new file mode 100644 index 000000000000..298e3098f749 --- /dev/null +++ b/site/public/v1/software/sourcetrail/index.json @@ -0,0 +1,19 @@ +{ + "id": 9430, + "slug": "sourcetrail", + "name": "Sourcetrail", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q104903141" + ], + "created_at": "2026-07-10T10:12:43.115680", + "updated_at": "2026-07-10T10:12:43.115680", + "url": "/v1/software/sourcetrail" +} diff --git a/site/public/v1/software/sourceweb/index.json b/site/public/v1/software/sourceweb/index.json new file mode 100644 index 000000000000..9deb5cc4074a --- /dev/null +++ b/site/public/v1/software/sourceweb/index.json @@ -0,0 +1,21 @@ +{ + "id": 9431, + "slug": "sourceweb", + "name": "SourceWeb", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "PHP" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122983986" + ], + "created_at": "2026-07-10T10:12:43.115680", + "updated_at": "2026-07-10T10:12:43.115680", + "url": "/v1/software/sourceweb" +} diff --git a/site/public/v1/software/sp-forth/index.json b/site/public/v1/software/sp-forth/index.json new file mode 100644 index 000000000000..cb7beeff501e --- /dev/null +++ b/site/public/v1/software/sp-forth/index.json @@ -0,0 +1,23 @@ +{ + "id": 9432, + "slug": "sp-forth", + "name": "SP-Forth", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [ + "Forth" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4048854" + ], + "created_at": "2026-07-10T10:12:43.116692", + "updated_at": "2026-07-10T10:12:43.116692", + "url": "/v1/software/sp-forth" +} diff --git a/site/public/v1/software/space-gremlin/index.json b/site/public/v1/software/space-gremlin/index.json new file mode 100644 index 000000000000..3f4ee8623dd9 --- /dev/null +++ b/site/public/v1/software/space-gremlin/index.json @@ -0,0 +1,19 @@ +{ + "id": 9433, + "slug": "space-gremlin", + "name": "Space Gremlin", + "release_date": "2011-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7572369" + ], + "created_at": "2026-07-10T10:12:43.116692", + "updated_at": "2026-07-10T10:12:43.116692", + "url": "/v1/software/space-gremlin" +} diff --git a/site/public/v1/software/space-telescope-science-data-analysis-system/index.json b/site/public/v1/software/space-telescope-science-data-analysis-system/index.json new file mode 100644 index 000000000000..cd6307010395 --- /dev/null +++ b/site/public/v1/software/space-telescope-science-data-analysis-system/index.json @@ -0,0 +1,21 @@ +{ + "id": 9434, + "slug": "space-telescope-science-data-analysis-system", + "name": "Space Telescope Science Data Analysis System", + "release_date": null, + "developers": [ + "Space Telescope Science Institute" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16920177" + ], + "created_at": "2026-07-10T10:12:43.117691", + "updated_at": "2026-07-10T10:12:43.117691", + "url": "/v1/software/space-telescope-science-data-analysis-system" +} diff --git a/site/public/v1/software/space-weather-modeling-framework/index.json b/site/public/v1/software/space-weather-modeling-framework/index.json new file mode 100644 index 000000000000..2e0552b7315b --- /dev/null +++ b/site/public/v1/software/space-weather-modeling-framework/index.json @@ -0,0 +1,19 @@ +{ + "id": 9435, + "slug": "space-weather-modeling-framework", + "name": "Space Weather Modeling Framework", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137604289" + ], + "created_at": "2026-07-10T10:12:43.117691", + "updated_at": "2026-07-10T10:12:43.117691", + "url": "/v1/software/space-weather-modeling-framework" +} diff --git a/site/public/v1/software/spacechart/index.json b/site/public/v1/software/spacechart/index.json new file mode 100644 index 000000000000..ace942016e3a --- /dev/null +++ b/site/public/v1/software/spacechart/index.json @@ -0,0 +1,19 @@ +{ + "id": 9436, + "slug": "spacechart", + "name": "SpaceChart", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76184133" + ], + "created_at": "2026-07-10T10:12:43.117691", + "updated_at": "2026-07-10T10:12:43.117691", + "url": "/v1/software/spacechart" +} diff --git a/site/public/v1/software/spaces/index.json b/site/public/v1/software/spaces/index.json new file mode 100644 index 000000000000..7ce4e79e2a52 --- /dev/null +++ b/site/public/v1/software/spaces/index.json @@ -0,0 +1,21 @@ +{ + "id": 9437, + "slug": "spaces", + "name": "Spaces", + "release_date": null, + "developers": [ + "Apple Inc." + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1423430" + ], + "created_at": "2026-07-10T10:12:43.118691", + "updated_at": "2026-07-10T10:12:43.118691", + "url": "/v1/software/spaces" +} diff --git a/site/public/v1/software/spacesniffer/index.json b/site/public/v1/software/spacesniffer/index.json new file mode 100644 index 000000000000..604fc1d273a0 --- /dev/null +++ b/site/public/v1/software/spacesniffer/index.json @@ -0,0 +1,21 @@ +{ + "id": 9438, + "slug": "spacesniffer", + "name": "SpaceSniffer", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7572209" + ], + "created_at": "2026-07-10T10:12:43.118691", + "updated_at": "2026-07-10T10:12:43.118691", + "url": "/v1/software/spacesniffer" +} diff --git a/site/public/v1/software/spacetime-q121095302/index.json b/site/public/v1/software/spacetime-q121095302/index.json new file mode 100644 index 000000000000..15593803326b --- /dev/null +++ b/site/public/v1/software/spacetime-q121095302/index.json @@ -0,0 +1,19 @@ +{ + "id": 9439, + "slug": "spacetime-q121095302", + "name": "SpaceTime", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121095302" + ], + "created_at": "2026-07-10T10:12:43.118691", + "updated_at": "2026-07-10T10:12:43.118691", + "url": "/v1/software/spacetime-q121095302" +} diff --git a/site/public/v1/software/spacetime/index.json b/site/public/v1/software/spacetime/index.json new file mode 100644 index 000000000000..0e54b257bf8c --- /dev/null +++ b/site/public/v1/software/spacetime/index.json @@ -0,0 +1,19 @@ +{ + "id": 9440, + "slug": "spacetime", + "name": "SpaceTime", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3965780" + ], + "created_at": "2026-07-10T10:12:43.119691", + "updated_at": "2026-07-10T10:12:43.119691", + "url": "/v1/software/spacetime" +} diff --git a/site/public/v1/software/spacetoon-go/index.json b/site/public/v1/software/spacetoon-go/index.json new file mode 100644 index 000000000000..fbd25f39bff9 --- /dev/null +++ b/site/public/v1/software/spacetoon-go/index.json @@ -0,0 +1,27 @@ +{ + "id": 9441, + "slug": "spacetoon-go", + "name": "Spacetoon Go", + "release_date": null, + "developers": [ + "Spacetoon" + ], + "publishers": [], + "operating_systems": [ + "iPadOS", + "tvOS", + "visionOS", + "iOS", + "macOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q66438704" + ], + "created_at": "2026-07-10T10:12:43.119691", + "updated_at": "2026-07-10T10:12:43.119691", + "url": "/v1/software/spacetoon-go" +} diff --git a/site/public/v1/software/spacex-dragon-1/index.json b/site/public/v1/software/spacex-dragon-1/index.json new file mode 100644 index 000000000000..48c0042cb395 --- /dev/null +++ b/site/public/v1/software/spacex-dragon-1/index.json @@ -0,0 +1,19 @@ +{ + "id": 9442, + "slug": "spacex-dragon-1", + "name": "SpaceX Dragon 1", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115829206" + ], + "created_at": "2026-07-10T10:12:43.119691", + "updated_at": "2026-07-10T10:12:43.119691", + "url": "/v1/software/spacex-dragon-1" +} diff --git a/site/public/v1/software/spade/index.json b/site/public/v1/software/spade/index.json new file mode 100644 index 000000000000..4992ced44209 --- /dev/null +++ b/site/public/v1/software/spade/index.json @@ -0,0 +1,21 @@ +{ + "id": 9443, + "slug": "spade", + "name": "SPADE", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Python" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3444043" + ], + "created_at": "2026-07-10T10:12:43.119691", + "updated_at": "2026-07-10T10:12:43.119691", + "url": "/v1/software/spade" +} diff --git a/site/public/v1/software/spaike/index.json b/site/public/v1/software/spaike/index.json new file mode 100644 index 000000000000..fb16cb2852fb --- /dev/null +++ b/site/public/v1/software/spaike/index.json @@ -0,0 +1,21 @@ +{ + "id": 9444, + "slug": "spaike", + "name": "SPAIKE", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "web browser" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140307586" + ], + "created_at": "2026-07-10T10:12:43.120692", + "updated_at": "2026-07-10T10:12:43.120692", + "url": "/v1/software/spaike" +} diff --git a/site/public/v1/software/spamfighter/index.json b/site/public/v1/software/spamfighter/index.json new file mode 100644 index 000000000000..5b9604f1b3e6 --- /dev/null +++ b/site/public/v1/software/spamfighter/index.json @@ -0,0 +1,23 @@ +{ + "id": 9445, + "slug": "spamfighter", + "name": "Spamfighter", + "release_date": "2004-01-01", + "developers": [ + "Spamfighter" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3031915" + ], + "created_at": "2026-07-10T10:12:43.120692", + "updated_at": "2026-07-10T10:12:43.120692", + "url": "/v1/software/spamfighter" +} diff --git a/site/public/v1/software/spamihilator/index.json b/site/public/v1/software/spamihilator/index.json new file mode 100644 index 000000000000..dbcef583f421 --- /dev/null +++ b/site/public/v1/software/spamihilator/index.json @@ -0,0 +1,21 @@ +{ + "id": 9446, + "slug": "spamihilator", + "name": "Spamihilator", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2306636" + ], + "created_at": "2026-07-10T10:12:43.121691", + "updated_at": "2026-07-10T10:12:43.121691", + "url": "/v1/software/spamihilator" +} diff --git a/site/public/v1/software/spark-nlp/index.json b/site/public/v1/software/spark-nlp/index.json new file mode 100644 index 000000000000..d53517d8264a --- /dev/null +++ b/site/public/v1/software/spark-nlp/index.json @@ -0,0 +1,23 @@ +{ + "id": 9447, + "slug": "spark-nlp", + "name": "Spark NLP", + "release_date": null, + "developers": [ + "John Snow Labs" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Apache Software License 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q85802486" + ], + "created_at": "2026-07-10T10:12:43.121691", + "updated_at": "2026-07-10T10:12:43.121691", + "url": "/v1/software/spark-nlp" +} diff --git a/site/public/v1/software/spark-social/index.json b/site/public/v1/software/spark-social/index.json new file mode 100644 index 000000000000..a973f2ee56ef --- /dev/null +++ b/site/public/v1/software/spark-social/index.json @@ -0,0 +1,19 @@ +{ + "id": 9448, + "slug": "spark-social", + "name": "Spark Social", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q19599675" + ], + "created_at": "2026-07-10T10:12:43.121691", + "updated_at": "2026-07-10T10:12:43.121691", + "url": "/v1/software/spark-social" +} diff --git a/site/public/v1/software/sparkle/index.json b/site/public/v1/software/sparkle/index.json new file mode 100644 index 000000000000..1291d2890dac --- /dev/null +++ b/site/public/v1/software/sparkle/index.json @@ -0,0 +1,19 @@ +{ + "id": 9449, + "slug": "sparkle", + "name": "Sparkle", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q97368666" + ], + "created_at": "2026-07-10T10:12:43.121691", + "updated_at": "2026-07-10T10:12:43.121691", + "url": "/v1/software/sparkle" +} diff --git a/site/public/v1/software/sparksee/index.json b/site/public/v1/software/sparksee/index.json new file mode 100644 index 000000000000..71ca825a3950 --- /dev/null +++ b/site/public/v1/software/sparksee/index.json @@ -0,0 +1,19 @@ +{ + "id": 9450, + "slug": "sparksee", + "name": "Sparksee", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3817722" + ], + "created_at": "2026-07-10T10:12:43.122692", + "updated_at": "2026-07-10T10:12:43.122692", + "url": "/v1/software/sparksee" +} diff --git a/site/public/v1/software/sparkwdsub/index.json b/site/public/v1/software/sparkwdsub/index.json new file mode 100644 index 000000000000..e05b38ada6ed --- /dev/null +++ b/site/public/v1/software/sparkwdsub/index.json @@ -0,0 +1,25 @@ +{ + "id": 9451, + "slug": "sparkwdsub", + "name": "sparkwdsub", + "release_date": null, + "developers": [ + "José Emilio Labra Gayo" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Scala" + ], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113291821" + ], + "created_at": "2026-07-10T10:12:43.122692", + "updated_at": "2026-07-10T10:12:43.122692", + "url": "/v1/software/sparkwdsub" +} diff --git a/site/public/v1/software/sparql-unicorn/index.json b/site/public/v1/software/sparql-unicorn/index.json new file mode 100644 index 000000000000..40ab229312c9 --- /dev/null +++ b/site/public/v1/software/sparql-unicorn/index.json @@ -0,0 +1,26 @@ +{ + "id": 9452, + "slug": "sparql-unicorn", + "name": "SPARQL Unicorn", + "release_date": null, + "developers": [ + "Florian Thiery", + "Martina Trognitz" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [ + "SPARQL", + "archaeology", + "linked data" + ], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q71937877" + ], + "created_at": "2026-07-10T10:12:43.123693", + "updated_at": "2026-07-10T10:12:43.123693", + "url": "/v1/software/sparql-unicorn" +} diff --git a/site/public/v1/software/sparqling-unicorn-qgis-plugin/index.json b/site/public/v1/software/sparqling-unicorn-qgis-plugin/index.json new file mode 100644 index 000000000000..8969b647b393 --- /dev/null +++ b/site/public/v1/software/sparqling-unicorn-qgis-plugin/index.json @@ -0,0 +1,25 @@ +{ + "id": 9453, + "slug": "sparqling-unicorn-qgis-plugin", + "name": "SPARQLing Unicorn QGIS Plugin", + "release_date": null, + "developers": [ + "Research Squirrel Engineers Network", + "Timo Homburg", + "Florian Thiery" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Python" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q74005133" + ], + "created_at": "2026-07-10T10:12:43.123693", + "updated_at": "2026-07-10T10:12:43.123693", + "url": "/v1/software/sparqling-unicorn-qgis-plugin" +} diff --git a/site/public/v1/software/sparqlwrapper/index.json b/site/public/v1/software/sparqlwrapper/index.json new file mode 100644 index 000000000000..2cdd688f108e --- /dev/null +++ b/site/public/v1/software/sparqlwrapper/index.json @@ -0,0 +1,19 @@ +{ + "id": 9454, + "slug": "sparqlwrapper", + "name": "SPARQLWrapper", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q74697234" + ], + "created_at": "2026-07-10T10:12:43.123693", + "updated_at": "2026-07-10T10:12:43.123693", + "url": "/v1/software/sparqlwrapper" +} diff --git a/site/public/v1/software/spatial-commander/index.json b/site/public/v1/software/spatial-commander/index.json new file mode 100644 index 000000000000..ea34c0408b99 --- /dev/null +++ b/site/public/v1/software/spatial-commander/index.json @@ -0,0 +1,19 @@ +{ + "id": 9455, + "slug": "spatial-commander", + "name": "Spatial Commander", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117797443" + ], + "created_at": "2026-07-10T10:12:43.123693", + "updated_at": "2026-07-10T10:12:43.123693", + "url": "/v1/software/spatial-commander" +} diff --git a/site/public/v1/software/spatial-modeling-environment/index.json b/site/public/v1/software/spatial-modeling-environment/index.json new file mode 100644 index 000000000000..cf9d74530900 --- /dev/null +++ b/site/public/v1/software/spatial-modeling-environment/index.json @@ -0,0 +1,19 @@ +{ + "id": 9456, + "slug": "spatial-modeling-environment", + "name": "Spatial Modeling Environment", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115715491" + ], + "created_at": "2026-07-10T10:12:43.124693", + "updated_at": "2026-07-10T10:12:43.124693", + "url": "/v1/software/spatial-modeling-environment" +} diff --git a/site/public/v1/software/spatial-query-server/index.json b/site/public/v1/software/spatial-query-server/index.json new file mode 100644 index 000000000000..cfad1721c8e1 --- /dev/null +++ b/site/public/v1/software/spatial-query-server/index.json @@ -0,0 +1,25 @@ +{ + "id": 9457, + "slug": "spatial-query-server", + "name": "Spatial Query Server", + "release_date": "2001-12-01", + "developers": [ + "Boeing" + ], + "publishers": [], + "operating_systems": [ + "Silicon Graphics", + "Solaris", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7574043" + ], + "created_at": "2026-07-10T10:12:43.124693", + "updated_at": "2026-07-10T10:12:43.124693", + "url": "/v1/software/spatial-query-server" +} diff --git a/site/public/v1/software/spatialnote/index.json b/site/public/v1/software/spatialnote/index.json new file mode 100644 index 000000000000..3f8225e58881 --- /dev/null +++ b/site/public/v1/software/spatialnote/index.json @@ -0,0 +1,19 @@ +{ + "id": 9458, + "slug": "spatialnote", + "name": "SpatialNote", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084582" + ], + "created_at": "2026-07-10T10:12:43.124693", + "updated_at": "2026-07-10T10:12:43.124693", + "url": "/v1/software/spatialnote" +} diff --git a/site/public/v1/software/spatstat/index.json b/site/public/v1/software/spatstat/index.json new file mode 100644 index 000000000000..ddf1aaeeae3f --- /dev/null +++ b/site/public/v1/software/spatstat/index.json @@ -0,0 +1,19 @@ +{ + "id": 9459, + "slug": "spatstat", + "name": "spatstat", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109878465" + ], + "created_at": "2026-07-10T10:12:43.125692", + "updated_at": "2026-07-10T10:12:43.125692", + "url": "/v1/software/spatstat" +} diff --git a/site/public/v1/software/spawn-fcgi/index.json b/site/public/v1/software/spawn-fcgi/index.json new file mode 100644 index 000000000000..5e6db022eac5 --- /dev/null +++ b/site/public/v1/software/spawn-fcgi/index.json @@ -0,0 +1,19 @@ +{ + "id": 9460, + "slug": "spawn-fcgi", + "name": "spawn-fcgi", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62865097" + ], + "created_at": "2026-07-10T10:12:43.125692", + "updated_at": "2026-07-10T10:12:43.125692", + "url": "/v1/software/spawn-fcgi" +} diff --git a/site/public/v1/software/spc-vision/index.json b/site/public/v1/software/spc-vision/index.json new file mode 100644 index 000000000000..25ec0d4ebaae --- /dev/null +++ b/site/public/v1/software/spc-vision/index.json @@ -0,0 +1,19 @@ +{ + "id": 9461, + "slug": "spc-vision", + "name": "SPC Vision", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3459958" + ], + "created_at": "2026-07-10T10:12:43.126692", + "updated_at": "2026-07-10T10:12:43.126692", + "url": "/v1/software/spc-vision" +} diff --git a/site/public/v1/software/spdx-license-list/index.json b/site/public/v1/software/spdx-license-list/index.json new file mode 100644 index 000000000000..769914e2832f --- /dev/null +++ b/site/public/v1/software/spdx-license-list/index.json @@ -0,0 +1,19 @@ +{ + "id": 9462, + "slug": "spdx-license-list", + "name": "SPDX License List", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q56423180" + ], + "created_at": "2026-07-10T10:12:43.126692", + "updated_at": "2026-07-10T10:12:43.126692", + "url": "/v1/software/spdx-license-list" +} diff --git a/site/public/v1/software/spec-cleaner/index.json b/site/public/v1/software/spec-cleaner/index.json new file mode 100644 index 000000000000..5db9e448e2ca --- /dev/null +++ b/site/public/v1/software/spec-cleaner/index.json @@ -0,0 +1,21 @@ +{ + "id": 9463, + "slug": "spec-cleaner", + "name": "spec-cleaner", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "3-clause BSD License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975485" + ], + "created_at": "2026-07-10T10:12:43.126692", + "updated_at": "2026-07-10T10:12:43.126692", + "url": "/v1/software/spec-cleaner" +} diff --git a/site/public/v1/software/spec-explorer/index.json b/site/public/v1/software/spec-explorer/index.json new file mode 100644 index 000000000000..2d3405397212 --- /dev/null +++ b/site/public/v1/software/spec-explorer/index.json @@ -0,0 +1,19 @@ +{ + "id": 9464, + "slug": "spec-explorer", + "name": "Spec Explorer", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7574423" + ], + "created_at": "2026-07-10T10:12:43.127692", + "updated_at": "2026-07-10T10:12:43.127692", + "url": "/v1/software/spec-explorer" +} diff --git a/site/public/v1/software/specctra/index.json b/site/public/v1/software/specctra/index.json new file mode 100644 index 000000000000..5bf1ad36d435 --- /dev/null +++ b/site/public/v1/software/specctra/index.json @@ -0,0 +1,19 @@ +{ + "id": 9465, + "slug": "specctra", + "name": "Specctra", + "release_date": "1989-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4049875" + ], + "created_at": "2026-07-10T10:12:43.127692", + "updated_at": "2026-07-10T10:12:43.127692", + "url": "/v1/software/specctra" +} diff --git a/site/public/v1/software/specify-collections-management-software/index.json b/site/public/v1/software/specify-collections-management-software/index.json new file mode 100644 index 000000000000..28dfdbdcd19e --- /dev/null +++ b/site/public/v1/software/specify-collections-management-software/index.json @@ -0,0 +1,19 @@ +{ + "id": 9466, + "slug": "specify-collections-management-software", + "name": "Specify Collections Management Software", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084583" + ], + "created_at": "2026-07-10T10:12:43.127692", + "updated_at": "2026-07-10T10:12:43.127692", + "url": "/v1/software/specify-collections-management-software" +} diff --git a/site/public/v1/software/specify/index.json b/site/public/v1/software/specify/index.json new file mode 100644 index 000000000000..0225b7bbbfa0 --- /dev/null +++ b/site/public/v1/software/specify/index.json @@ -0,0 +1,19 @@ +{ + "id": 9467, + "slug": "specify", + "name": "Specify", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111211715" + ], + "created_at": "2026-07-10T10:12:43.128691", + "updated_at": "2026-07-10T10:12:43.128691", + "url": "/v1/software/specify" +} diff --git a/site/public/v1/software/spectasia/index.json b/site/public/v1/software/spectasia/index.json new file mode 100644 index 000000000000..89849045af6e --- /dev/null +++ b/site/public/v1/software/spectasia/index.json @@ -0,0 +1,21 @@ +{ + "id": 9468, + "slug": "spectasia", + "name": "Spectasia", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Java" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7575131" + ], + "created_at": "2026-07-10T10:12:43.128691", + "updated_at": "2026-07-10T10:12:43.128691", + "url": "/v1/software/spectasia" +} diff --git a/site/public/v1/software/specto/index.json b/site/public/v1/software/specto/index.json new file mode 100644 index 000000000000..1a770be7d4ea --- /dev/null +++ b/site/public/v1/software/specto/index.json @@ -0,0 +1,19 @@ +{ + "id": 9469, + "slug": "specto", + "name": "Specto", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7575146" + ], + "created_at": "2026-07-10T10:12:43.128691", + "updated_at": "2026-07-10T10:12:43.128691", + "url": "/v1/software/specto" +} diff --git a/site/public/v1/software/spectools/index.json b/site/public/v1/software/spectools/index.json new file mode 100644 index 000000000000..535d0e3831ce --- /dev/null +++ b/site/public/v1/software/spectools/index.json @@ -0,0 +1,19 @@ +{ + "id": 9470, + "slug": "spectools", + "name": "spectools", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975486" + ], + "created_at": "2026-07-10T10:12:43.129691", + "updated_at": "2026-07-10T10:12:43.129691", + "url": "/v1/software/spectools" +} diff --git a/site/public/v1/software/spectrum-512/index.json b/site/public/v1/software/spectrum-512/index.json new file mode 100644 index 000000000000..a5b366ccd502 --- /dev/null +++ b/site/public/v1/software/spectrum-512/index.json @@ -0,0 +1,19 @@ +{ + "id": 9471, + "slug": "spectrum-512", + "name": "Spectrum 512", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25383498" + ], + "created_at": "2026-07-10T10:12:43.129691", + "updated_at": "2026-07-10T10:12:43.129691", + "url": "/v1/software/spectrum-512" +} diff --git a/site/public/v1/software/spedas/index.json b/site/public/v1/software/spedas/index.json new file mode 100644 index 000000000000..54f3383a9da5 --- /dev/null +++ b/site/public/v1/software/spedas/index.json @@ -0,0 +1,21 @@ +{ + "id": 9472, + "slug": "spedas", + "name": "SPEDAS", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Interactive Data Language" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18155416" + ], + "created_at": "2026-07-10T10:12:43.129691", + "updated_at": "2026-07-10T10:12:43.129691", + "url": "/v1/software/spedas" +} diff --git a/site/public/v1/software/speechd-el/index.json b/site/public/v1/software/speechd-el/index.json new file mode 100644 index 000000000000..cd6dc8fbfcf6 --- /dev/null +++ b/site/public/v1/software/speechd-el/index.json @@ -0,0 +1,19 @@ +{ + "id": 9473, + "slug": "speechd-el", + "name": "speechd-el", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62865091" + ], + "created_at": "2026-07-10T10:12:43.130691", + "updated_at": "2026-07-10T10:12:43.130691", + "url": "/v1/software/speechd-el" +} diff --git a/site/public/v1/software/speed2000/index.json b/site/public/v1/software/speed2000/index.json new file mode 100644 index 000000000000..21d3ec4a9b36 --- /dev/null +++ b/site/public/v1/software/speed2000/index.json @@ -0,0 +1,21 @@ +{ + "id": 9474, + "slug": "speed2000", + "name": "SPEED2000", + "release_date": null, + "developers": [ + "Sigrity" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7392523" + ], + "created_at": "2026-07-10T10:12:43.130691", + "updated_at": "2026-07-10T10:12:43.130691", + "url": "/v1/software/speed2000" +} diff --git a/site/public/v1/software/speedfan/index.json b/site/public/v1/software/speedfan/index.json new file mode 100644 index 000000000000..75a3970ad917 --- /dev/null +++ b/site/public/v1/software/speedfan/index.json @@ -0,0 +1,25 @@ +{ + "id": 9475, + "slug": "speedfan", + "name": "SpeedFan", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [ + "Object Pascal" + ], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q52294" + ], + "created_at": "2026-07-10T10:12:43.130691", + "updated_at": "2026-07-10T10:12:43.130691", + "url": "/v1/software/speedfan" +} diff --git a/site/public/v1/software/speedify/index.json b/site/public/v1/software/speedify/index.json new file mode 100644 index 000000000000..05eceb88c2e9 --- /dev/null +++ b/site/public/v1/software/speedify/index.json @@ -0,0 +1,19 @@ +{ + "id": 9476, + "slug": "speedify", + "name": "Speedify", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134237642" + ], + "created_at": "2026-07-10T10:12:43.130691", + "updated_at": "2026-07-10T10:12:43.130691", + "url": "/v1/software/speedify" +} diff --git a/site/public/v1/software/speedlock/index.json b/site/public/v1/software/speedlock/index.json new file mode 100644 index 000000000000..bee808de9db6 --- /dev/null +++ b/site/public/v1/software/speedlock/index.json @@ -0,0 +1,19 @@ +{ + "id": 9477, + "slug": "speedlock", + "name": "Speedlock", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7575639" + ], + "created_at": "2026-07-10T10:12:43.131691", + "updated_at": "2026-07-10T10:12:43.131691", + "url": "/v1/software/speedlock" +} diff --git a/site/public/v1/software/spejd/index.json b/site/public/v1/software/spejd/index.json new file mode 100644 index 000000000000..308a90ff7804 --- /dev/null +++ b/site/public/v1/software/spejd/index.json @@ -0,0 +1,19 @@ +{ + "id": 9478, + "slug": "spejd", + "name": "Spejd", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084584" + ], + "created_at": "2026-07-10T10:12:43.131691", + "updated_at": "2026-07-10T10:12:43.131691", + "url": "/v1/software/spejd" +} diff --git a/site/public/v1/software/speko/index.json b/site/public/v1/software/speko/index.json new file mode 100644 index 000000000000..eb20367dbef7 --- /dev/null +++ b/site/public/v1/software/speko/index.json @@ -0,0 +1,19 @@ +{ + "id": 9479, + "slug": "speko", + "name": "Speko", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140187873" + ], + "created_at": "2026-07-10T10:12:43.131691", + "updated_at": "2026-07-10T10:12:43.131691", + "url": "/v1/software/speko" +} diff --git a/site/public/v1/software/spexo-addons/index.json b/site/public/v1/software/spexo-addons/index.json new file mode 100644 index 000000000000..158f05bbe9a7 --- /dev/null +++ b/site/public/v1/software/spexo-addons/index.json @@ -0,0 +1,23 @@ +{ + "id": 9480, + "slug": "spexo-addons", + "name": "Spexo Addons", + "release_date": null, + "developers": [ + "Fast Themes" + ], + "publishers": [ + "Fast Themes" + ], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138721908" + ], + "created_at": "2026-07-10T10:12:43.132691", + "updated_at": "2026-07-10T10:12:43.132691", + "url": "/v1/software/spexo-addons" +} diff --git a/site/public/v1/software/spfft/index.json b/site/public/v1/software/spfft/index.json new file mode 100644 index 000000000000..1f4ef78198de --- /dev/null +++ b/site/public/v1/software/spfft/index.json @@ -0,0 +1,21 @@ +{ + "id": 9481, + "slug": "spfft", + "name": "SpFFT", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "3-clause BSD License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120241451" + ], + "created_at": "2026-07-10T10:12:43.132691", + "updated_at": "2026-07-10T10:12:43.132691", + "url": "/v1/software/spfft" +} diff --git a/site/public/v1/software/spharm-pdm/index.json b/site/public/v1/software/spharm-pdm/index.json new file mode 100644 index 000000000000..df57854c461d --- /dev/null +++ b/site/public/v1/software/spharm-pdm/index.json @@ -0,0 +1,21 @@ +{ + "id": 9482, + "slug": "spharm-pdm", + "name": "SPHARM-PDM", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7392542" + ], + "created_at": "2026-07-10T10:12:43.132691", + "updated_at": "2026-07-10T10:12:43.132691", + "url": "/v1/software/spharm-pdm" +} diff --git a/site/public/v1/software/spice-gtk/index.json b/site/public/v1/software/spice-gtk/index.json new file mode 100644 index 000000000000..22ddcacc79bf --- /dev/null +++ b/site/public/v1/software/spice-gtk/index.json @@ -0,0 +1,19 @@ +{ + "id": 9483, + "slug": "spice-gtk", + "name": "spice-gtk", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975487" + ], + "created_at": "2026-07-10T10:12:43.132691", + "updated_at": "2026-07-10T10:12:43.132691", + "url": "/v1/software/spice-gtk" +} diff --git a/site/public/v1/software/spice-opus/index.json b/site/public/v1/software/spice-opus/index.json new file mode 100644 index 000000000000..29a061b6b543 --- /dev/null +++ b/site/public/v1/software/spice-opus/index.json @@ -0,0 +1,19 @@ +{ + "id": 9484, + "slug": "spice-opus", + "name": "SPICE OPUS", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122212505" + ], + "created_at": "2026-07-10T10:12:43.133774", + "updated_at": "2026-07-10T10:12:43.133774", + "url": "/v1/software/spice-opus" +} diff --git a/site/public/v1/software/spice-protocol/index.json b/site/public/v1/software/spice-protocol/index.json new file mode 100644 index 000000000000..a79a07ecc828 --- /dev/null +++ b/site/public/v1/software/spice-protocol/index.json @@ -0,0 +1,19 @@ +{ + "id": 9485, + "slug": "spice-protocol", + "name": "spice-protocol", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975488" + ], + "created_at": "2026-07-10T10:12:43.133774", + "updated_at": "2026-07-10T10:12:43.133774", + "url": "/v1/software/spice-protocol" +} diff --git a/site/public/v1/software/spider-project/index.json b/site/public/v1/software/spider-project/index.json new file mode 100644 index 000000000000..53f2628ce37b --- /dev/null +++ b/site/public/v1/software/spider-project/index.json @@ -0,0 +1,19 @@ +{ + "id": 9486, + "slug": "spider-project", + "name": "Spider Project", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q12072557" + ], + "created_at": "2026-07-10T10:12:43.134773", + "updated_at": "2026-07-10T10:12:43.134773", + "url": "/v1/software/spider-project" +} diff --git a/site/public/v1/software/spiking-mobile-app/index.json b/site/public/v1/software/spiking-mobile-app/index.json new file mode 100644 index 000000000000..926b01effc93 --- /dev/null +++ b/site/public/v1/software/spiking-mobile-app/index.json @@ -0,0 +1,21 @@ +{ + "id": 9487, + "slug": "spiking-mobile-app", + "name": "Spiking (mobile app)", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "iOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q24024832" + ], + "created_at": "2026-07-10T10:12:43.134773", + "updated_at": "2026-07-10T10:12:43.134773", + "url": "/v1/software/spiking-mobile-app" +} diff --git a/site/public/v1/software/spinach/index.json b/site/public/v1/software/spinach/index.json new file mode 100644 index 000000000000..16401c036f57 --- /dev/null +++ b/site/public/v1/software/spinach/index.json @@ -0,0 +1,19 @@ +{ + "id": 9488, + "slug": "spinach", + "name": "Spinach", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123603179" + ], + "created_at": "2026-07-10T10:12:43.134773", + "updated_at": "2026-07-10T10:12:43.134773", + "url": "/v1/software/spinach" +} diff --git a/site/public/v1/software/spinal-cord-toolbox/index.json b/site/public/v1/software/spinal-cord-toolbox/index.json new file mode 100644 index 000000000000..f5d7c259fbb0 --- /dev/null +++ b/site/public/v1/software/spinal-cord-toolbox/index.json @@ -0,0 +1,23 @@ +{ + "id": 9489, + "slug": "spinal-cord-toolbox", + "name": "Spinal Cord Toolbox", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Python" + ], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22908987" + ], + "created_at": "2026-07-10T10:12:43.134773", + "updated_at": "2026-07-10T10:12:43.134773", + "url": "/v1/software/spinal-cord-toolbox" +} diff --git a/site/public/v1/software/spinnaker/index.json b/site/public/v1/software/spinnaker/index.json new file mode 100644 index 000000000000..5895a3d43201 --- /dev/null +++ b/site/public/v1/software/spinnaker/index.json @@ -0,0 +1,21 @@ +{ + "id": 9490, + "slug": "spinnaker", + "name": "Spinnaker", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Java" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q65046096" + ], + "created_at": "2026-07-10T10:12:43.135759", + "updated_at": "2026-07-10T10:12:43.135759", + "url": "/v1/software/spinnaker" +} diff --git a/site/public/v1/software/spinrite/index.json b/site/public/v1/software/spinrite/index.json new file mode 100644 index 000000000000..aa330108caad --- /dev/null +++ b/site/public/v1/software/spinrite/index.json @@ -0,0 +1,25 @@ +{ + "id": 9491, + "slug": "spinrite", + "name": "SpinRite", + "release_date": null, + "developers": [ + "Steve Gibson" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "assembly language" + ], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3704837" + ], + "created_at": "2026-07-10T10:12:43.135759", + "updated_at": "2026-07-10T10:12:43.135759", + "url": "/v1/software/spinrite" +} diff --git a/site/public/v1/software/spire/index.json b/site/public/v1/software/spire/index.json new file mode 100644 index 000000000000..94779e574c0a --- /dev/null +++ b/site/public/v1/software/spire/index.json @@ -0,0 +1,19 @@ +{ + "id": 9492, + "slug": "spire", + "name": "Spire", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22908994" + ], + "created_at": "2026-07-10T10:12:43.135759", + "updated_at": "2026-07-10T10:12:43.135759", + "url": "/v1/software/spire" +} diff --git a/site/public/v1/software/splash/index.json b/site/public/v1/software/splash/index.json new file mode 100644 index 000000000000..fb9613be2309 --- /dev/null +++ b/site/public/v1/software/splash/index.json @@ -0,0 +1,23 @@ +{ + "id": 9493, + "slug": "splash", + "name": "Splash", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Fortran" + ], + "licenses": [ + "GNU General Public License, version 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137592812" + ], + "created_at": "2026-07-10T10:12:43.136693", + "updated_at": "2026-07-10T10:12:43.136693", + "url": "/v1/software/splash" +} diff --git a/site/public/v1/software/splashy/index.json b/site/public/v1/software/splashy/index.json new file mode 100644 index 000000000000..7117f29ef4bd --- /dev/null +++ b/site/public/v1/software/splashy/index.json @@ -0,0 +1,21 @@ +{ + "id": 9494, + "slug": "splashy", + "name": "Splashy", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Unix-like operating system" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7578411" + ], + "created_at": "2026-07-10T10:12:43.136693", + "updated_at": "2026-07-10T10:12:43.136693", + "url": "/v1/software/splashy" +} diff --git a/site/public/v1/software/splat/index.json b/site/public/v1/software/splat/index.json new file mode 100644 index 000000000000..b516cbb4e191 --- /dev/null +++ b/site/public/v1/software/splat/index.json @@ -0,0 +1,19 @@ +{ + "id": 9495, + "slug": "splat", + "name": "splat", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60918565" + ], + "created_at": "2026-07-10T10:12:43.136693", + "updated_at": "2026-07-10T10:12:43.136693", + "url": "/v1/software/splat" +} diff --git a/site/public/v1/software/spleeter/index.json b/site/public/v1/software/spleeter/index.json new file mode 100644 index 000000000000..5e49ebf9041c --- /dev/null +++ b/site/public/v1/software/spleeter/index.json @@ -0,0 +1,28 @@ +{ + "id": 9496, + "slug": "spleeter", + "name": "Spleeter", + "release_date": "2019-10-28", + "developers": [ + "Deezer" + ], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [ + "Python" + ], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q98716837" + ], + "created_at": "2026-07-10T10:12:43.136693", + "updated_at": "2026-07-10T10:12:43.136693", + "url": "/v1/software/spleeter" +} diff --git a/site/public/v1/software/split2flac/index.json b/site/public/v1/software/split2flac/index.json new file mode 100644 index 000000000000..5fae8be22d35 --- /dev/null +++ b/site/public/v1/software/split2flac/index.json @@ -0,0 +1,19 @@ +{ + "id": 9497, + "slug": "split2flac", + "name": "split2flac", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975491" + ], + "created_at": "2026-07-10T10:12:43.137692", + "updated_at": "2026-07-10T10:12:43.137692", + "url": "/v1/software/split2flac" +} diff --git a/site/public/v1/software/splitstree/index.json b/site/public/v1/software/splitstree/index.json new file mode 100644 index 000000000000..98ab35c2eee8 --- /dev/null +++ b/site/public/v1/software/splitstree/index.json @@ -0,0 +1,22 @@ +{ + "id": 9498, + "slug": "splitstree", + "name": "SplitsTree", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q258956" + ], + "created_at": "2026-07-10T10:12:43.137692", + "updated_at": "2026-07-10T10:12:43.137692", + "url": "/v1/software/splitstree" +} diff --git a/site/public/v1/software/splitvt/index.json b/site/public/v1/software/splitvt/index.json new file mode 100644 index 000000000000..ee7eb4e2b921 --- /dev/null +++ b/site/public/v1/software/splitvt/index.json @@ -0,0 +1,19 @@ +{ + "id": 9499, + "slug": "splitvt", + "name": "splitvt", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62865084" + ], + "created_at": "2026-07-10T10:12:43.138692", + "updated_at": "2026-07-10T10:12:43.138692", + "url": "/v1/software/splitvt" +} diff --git a/site/public/v1/software/spm/index.json b/site/public/v1/software/spm/index.json new file mode 100644 index 000000000000..bf45470c9912 --- /dev/null +++ b/site/public/v1/software/spm/index.json @@ -0,0 +1,25 @@ +{ + "id": 9500, + "slug": "spm", + "name": "SPM", + "release_date": null, + "developers": [ + "John Ashburner", + "Jean-Baptiste Poline", + "Karl J. Friston" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "MATLAB" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q41566485" + ], + "created_at": "2026-07-10T10:12:43.138692", + "updated_at": "2026-07-10T10:12:43.138692", + "url": "/v1/software/spm" +} diff --git a/site/public/v1/software/spm2/index.json b/site/public/v1/software/spm2/index.json new file mode 100644 index 000000000000..7ddfb4a61b3e --- /dev/null +++ b/site/public/v1/software/spm2/index.json @@ -0,0 +1,19 @@ +{ + "id": 9501, + "slug": "spm2", + "name": "SPM2", + "release_date": "2003-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q41566670" + ], + "created_at": "2026-07-10T10:12:43.138692", + "updated_at": "2026-07-10T10:12:43.138692", + "url": "/v1/software/spm2" +} diff --git a/site/public/v1/software/spm5/index.json b/site/public/v1/software/spm5/index.json new file mode 100644 index 000000000000..69eb418b96c3 --- /dev/null +++ b/site/public/v1/software/spm5/index.json @@ -0,0 +1,19 @@ +{ + "id": 9502, + "slug": "spm5", + "name": "SPM5", + "release_date": "2005-12-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q41569923" + ], + "created_at": "2026-07-10T10:12:43.138692", + "updated_at": "2026-07-10T10:12:43.138692", + "url": "/v1/software/spm5" +} diff --git a/site/public/v1/software/spm8/index.json b/site/public/v1/software/spm8/index.json new file mode 100644 index 000000000000..4cbe86804808 --- /dev/null +++ b/site/public/v1/software/spm8/index.json @@ -0,0 +1,19 @@ +{ + "id": 9503, + "slug": "spm8", + "name": "SPM8", + "release_date": "2009-04-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q41569758" + ], + "created_at": "2026-07-10T10:12:43.139691", + "updated_at": "2026-07-10T10:12:43.139691", + "url": "/v1/software/spm8" +} diff --git a/site/public/v1/software/spm95/index.json b/site/public/v1/software/spm95/index.json new file mode 100644 index 000000000000..e81616e8a511 --- /dev/null +++ b/site/public/v1/software/spm95/index.json @@ -0,0 +1,19 @@ +{ + "id": 9504, + "slug": "spm95", + "name": "SPM95", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q41795649" + ], + "created_at": "2026-07-10T10:12:43.139691", + "updated_at": "2026-07-10T10:12:43.139691", + "url": "/v1/software/spm95" +} diff --git a/site/public/v1/software/spm96/index.json b/site/public/v1/software/spm96/index.json new file mode 100644 index 000000000000..15e5d671847c --- /dev/null +++ b/site/public/v1/software/spm96/index.json @@ -0,0 +1,21 @@ +{ + "id": 9505, + "slug": "spm96", + "name": "SPM96", + "release_date": "1997-04-09", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "MATLAB" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q41793739" + ], + "created_at": "2026-07-10T10:12:43.139691", + "updated_at": "2026-07-10T10:12:43.139691", + "url": "/v1/software/spm96" +} diff --git a/site/public/v1/software/spm97/index.json b/site/public/v1/software/spm97/index.json new file mode 100644 index 000000000000..a5fbfab350ce --- /dev/null +++ b/site/public/v1/software/spm97/index.json @@ -0,0 +1,19 @@ +{ + "id": 9506, + "slug": "spm97", + "name": "SPM97", + "release_date": "1998-07-31", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q41793744" + ], + "created_at": "2026-07-10T10:12:43.140692", + "updated_at": "2026-07-10T10:12:43.140692", + "url": "/v1/software/spm97" +} diff --git a/site/public/v1/software/spoiler-shield/index.json b/site/public/v1/software/spoiler-shield/index.json new file mode 100644 index 000000000000..dfae5f725823 --- /dev/null +++ b/site/public/v1/software/spoiler-shield/index.json @@ -0,0 +1,19 @@ +{ + "id": 9507, + "slug": "spoiler-shield", + "name": "Spoiler Shield", + "release_date": "2013-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18392408" + ], + "created_at": "2026-07-10T10:12:43.140692", + "updated_at": "2026-07-10T10:12:43.140692", + "url": "/v1/software/spoiler-shield" +} diff --git a/site/public/v1/software/spool/index.json b/site/public/v1/software/spool/index.json new file mode 100644 index 000000000000..ca31fc994903 --- /dev/null +++ b/site/public/v1/software/spool/index.json @@ -0,0 +1,23 @@ +{ + "id": 9508, + "slug": "spool", + "name": "Spool", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "iOS" + ], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7579138" + ], + "created_at": "2026-07-10T10:12:43.140692", + "updated_at": "2026-07-10T10:12:43.140692", + "url": "/v1/software/spool" +} diff --git a/site/public/v1/software/spoon/index.json b/site/public/v1/software/spoon/index.json new file mode 100644 index 000000000000..6c5cd8764784 --- /dev/null +++ b/site/public/v1/software/spoon/index.json @@ -0,0 +1,19 @@ +{ + "id": 9509, + "slug": "spoon", + "name": "Spoon", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q96049864" + ], + "created_at": "2026-07-10T10:12:43.141692", + "updated_at": "2026-07-10T10:12:43.141692", + "url": "/v1/software/spoon" +} diff --git a/site/public/v1/software/spoonwep-wpa/index.json b/site/public/v1/software/spoonwep-wpa/index.json new file mode 100644 index 000000000000..12bf64a9295d --- /dev/null +++ b/site/public/v1/software/spoonwep-wpa/index.json @@ -0,0 +1,19 @@ +{ + "id": 9510, + "slug": "spoonwep-wpa", + "name": "SpoonWEP/WPA", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7579145" + ], + "created_at": "2026-07-10T10:12:43.141692", + "updated_at": "2026-07-10T10:12:43.141692", + "url": "/v1/software/spoonwep-wpa" +} diff --git a/site/public/v1/software/spork/index.json b/site/public/v1/software/spork/index.json new file mode 100644 index 000000000000..930771ac97c1 --- /dev/null +++ b/site/public/v1/software/spork/index.json @@ -0,0 +1,21 @@ +{ + "id": 9511, + "slug": "spork", + "name": "spork", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127485557" + ], + "created_at": "2026-07-10T10:12:43.141692", + "updated_at": "2026-07-10T10:12:43.141692", + "url": "/v1/software/spork" +} diff --git a/site/public/v1/software/sports-tracker/index.json b/site/public/v1/software/sports-tracker/index.json new file mode 100644 index 000000000000..1a289e7e24e7 --- /dev/null +++ b/site/public/v1/software/sports-tracker/index.json @@ -0,0 +1,21 @@ +{ + "id": 9512, + "slug": "sports-tracker", + "name": "Sports Tracker", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "iOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q869375" + ], + "created_at": "2026-07-10T10:12:43.142692", + "updated_at": "2026-07-10T10:12:43.142692", + "url": "/v1/software/sports-tracker" +} diff --git a/site/public/v1/software/spotify-greenroom/index.json b/site/public/v1/software/spotify-greenroom/index.json new file mode 100644 index 000000000000..147d93a0f224 --- /dev/null +++ b/site/public/v1/software/spotify-greenroom/index.json @@ -0,0 +1,23 @@ +{ + "id": 9513, + "slug": "spotify-greenroom", + "name": "Spotify Greenroom", + "release_date": null, + "developers": [ + "Spotify" + ], + "publishers": [], + "operating_systems": [ + "iOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107297832" + ], + "created_at": "2026-07-10T10:12:43.142692", + "updated_at": "2026-07-10T10:12:43.142692", + "url": "/v1/software/spotify-greenroom" +} diff --git a/site/public/v1/software/spotnet/index.json b/site/public/v1/software/spotnet/index.json new file mode 100644 index 000000000000..72bda13aa1df --- /dev/null +++ b/site/public/v1/software/spotnet/index.json @@ -0,0 +1,19 @@ +{ + "id": 9514, + "slug": "spotnet", + "name": "Spotnet", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2367910" + ], + "created_at": "2026-07-10T10:12:43.142692", + "updated_at": "2026-07-10T10:12:43.142692", + "url": "/v1/software/spotnet" +} diff --git a/site/public/v1/software/spotsetter/index.json b/site/public/v1/software/spotsetter/index.json new file mode 100644 index 000000000000..9faadefad835 --- /dev/null +++ b/site/public/v1/software/spotsetter/index.json @@ -0,0 +1,19 @@ +{ + "id": 9515, + "slug": "spotsetter", + "name": "Spotsetter", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18706068" + ], + "created_at": "2026-07-10T10:12:43.142692", + "updated_at": "2026-07-10T10:12:43.142692", + "url": "/v1/software/spotsetter" +} diff --git a/site/public/v1/software/sppas/index.json b/site/public/v1/software/sppas/index.json new file mode 100644 index 000000000000..5f6efa6abe94 --- /dev/null +++ b/site/public/v1/software/sppas/index.json @@ -0,0 +1,19 @@ +{ + "id": 9516, + "slug": "sppas", + "name": "SPPAS", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084585" + ], + "created_at": "2026-07-10T10:12:43.143787", + "updated_at": "2026-07-10T10:12:43.143787", + "url": "/v1/software/sppas" +} diff --git a/site/public/v1/software/spread-q139254007/index.json b/site/public/v1/software/spread-q139254007/index.json new file mode 100644 index 000000000000..c7f15cd92dee --- /dev/null +++ b/site/public/v1/software/spread-q139254007/index.json @@ -0,0 +1,21 @@ +{ + "id": 9517, + "slug": "spread-q139254007", + "name": "Spread", + "release_date": "2025-02-01", + "developers": [ + "Pixelic" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139254007" + ], + "created_at": "2026-07-10T10:12:43.143787", + "updated_at": "2026-07-10T10:12:43.143787", + "url": "/v1/software/spread-q139254007" +} diff --git a/site/public/v1/software/spread-sheet-widget/index.json b/site/public/v1/software/spread-sheet-widget/index.json new file mode 100644 index 000000000000..3991218bdd75 --- /dev/null +++ b/site/public/v1/software/spread-sheet-widget/index.json @@ -0,0 +1,19 @@ +{ + "id": 9518, + "slug": "spread-sheet-widget", + "name": "Spread Sheet Widget", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76184490" + ], + "created_at": "2026-07-10T10:12:43.144694", + "updated_at": "2026-07-10T10:12:43.144694", + "url": "/v1/software/spread-sheet-widget" +} diff --git a/site/public/v1/software/spread-toolkit/index.json b/site/public/v1/software/spread-toolkit/index.json new file mode 100644 index 000000000000..1e08ac6c821e --- /dev/null +++ b/site/public/v1/software/spread-toolkit/index.json @@ -0,0 +1,19 @@ +{ + "id": 9519, + "slug": "spread-toolkit", + "name": "Spread Toolkit", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7580254" + ], + "created_at": "2026-07-10T10:12:43.144694", + "updated_at": "2026-07-10T10:12:43.144694", + "url": "/v1/software/spread-toolkit" +} diff --git a/site/public/v1/software/spread/index.json b/site/public/v1/software/spread/index.json new file mode 100644 index 000000000000..a35e050f1b8f --- /dev/null +++ b/site/public/v1/software/spread/index.json @@ -0,0 +1,19 @@ +{ + "id": 9520, + "slug": "spread", + "name": "spread", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63064956" + ], + "created_at": "2026-07-10T10:12:43.144694", + "updated_at": "2026-07-10T10:12:43.144694", + "url": "/v1/software/spread" +} diff --git a/site/public/v1/software/spring-batch/index.json b/site/public/v1/software/spring-batch/index.json new file mode 100644 index 000000000000..0c0790297ae4 --- /dev/null +++ b/site/public/v1/software/spring-batch/index.json @@ -0,0 +1,25 @@ +{ + "id": 9521, + "slug": "spring-batch", + "name": "Spring Batch", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "cross-platform" + ], + "programming_languages": [ + "Java" + ], + "licenses": [ + "Apache License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7580383" + ], + "created_at": "2026-07-10T10:12:43.144694", + "updated_at": "2026-07-10T10:12:43.144694", + "url": "/v1/software/spring-batch" +} diff --git a/site/public/v1/software/spring-security/index.json b/site/public/v1/software/spring-security/index.json new file mode 100644 index 000000000000..813ae9390174 --- /dev/null +++ b/site/public/v1/software/spring-security/index.json @@ -0,0 +1,25 @@ +{ + "id": 9522, + "slug": "spring-security", + "name": "Spring Security", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "cross-platform" + ], + "programming_languages": [ + "Java" + ], + "licenses": [ + "Apache License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4049968" + ], + "created_at": "2026-07-10T10:12:43.145691", + "updated_at": "2026-07-10T10:12:43.145691", + "url": "/v1/software/spring-security" +} diff --git a/site/public/v1/software/spring/index.json b/site/public/v1/software/spring/index.json new file mode 100644 index 000000000000..35eb9dca6cde --- /dev/null +++ b/site/public/v1/software/spring/index.json @@ -0,0 +1,19 @@ +{ + "id": 9523, + "slug": "spring", + "name": "SPRING", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7392646" + ], + "created_at": "2026-07-10T10:12:43.145691", + "updated_at": "2026-07-10T10:12:43.145691", + "url": "/v1/software/spring" +} diff --git a/site/public/v1/software/springboard/index.json b/site/public/v1/software/springboard/index.json new file mode 100644 index 000000000000..8c1ece50b30e --- /dev/null +++ b/site/public/v1/software/springboard/index.json @@ -0,0 +1,21 @@ +{ + "id": 9524, + "slug": "springboard", + "name": "SpringBoard", + "release_date": null, + "developers": [ + "Apple Inc." + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1190015" + ], + "created_at": "2026-07-10T10:12:43.146691", + "updated_at": "2026-07-10T10:12:43.146691", + "url": "/v1/software/springboard" +} diff --git a/site/public/v1/software/springpad/index.json b/site/public/v1/software/springpad/index.json new file mode 100644 index 000000000000..5c2261146042 --- /dev/null +++ b/site/public/v1/software/springpad/index.json @@ -0,0 +1,19 @@ +{ + "id": 9525, + "slug": "springpad", + "name": "Springpad", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7581159" + ], + "created_at": "2026-07-10T10:12:43.146691", + "updated_at": "2026-07-10T10:12:43.146691", + "url": "/v1/software/springpad" +} diff --git a/site/public/v1/software/sprutcam/index.json b/site/public/v1/software/sprutcam/index.json new file mode 100644 index 000000000000..37e8fe342e1f --- /dev/null +++ b/site/public/v1/software/sprutcam/index.json @@ -0,0 +1,19 @@ +{ + "id": 9526, + "slug": "sprutcam", + "name": "SprutCAM", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q944850" + ], + "created_at": "2026-07-10T10:12:43.146691", + "updated_at": "2026-07-10T10:12:43.146691", + "url": "/v1/software/sprutcam" +} diff --git a/site/public/v1/software/spry-framework/index.json b/site/public/v1/software/spry-framework/index.json new file mode 100644 index 000000000000..e6ef6c61a977 --- /dev/null +++ b/site/public/v1/software/spry-framework/index.json @@ -0,0 +1,19 @@ +{ + "id": 9527, + "slug": "spry-framework", + "name": "Spry framework", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2011281" + ], + "created_at": "2026-07-10T10:12:43.146691", + "updated_at": "2026-07-10T10:12:43.146691", + "url": "/v1/software/spry-framework" +} diff --git a/site/public/v1/software/spss-modeler/index.json b/site/public/v1/software/spss-modeler/index.json new file mode 100644 index 000000000000..9c60c984e2a2 --- /dev/null +++ b/site/public/v1/software/spss-modeler/index.json @@ -0,0 +1,21 @@ +{ + "id": 9528, + "slug": "spss-modeler", + "name": "SPSS Modeler", + "release_date": null, + "developers": [ + "IBM" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7392671" + ], + "created_at": "2026-07-10T10:12:43.147691", + "updated_at": "2026-07-10T10:12:43.147691", + "url": "/v1/software/spss-modeler" +} diff --git a/site/public/v1/software/sputnik/index.json b/site/public/v1/software/sputnik/index.json new file mode 100644 index 000000000000..dfa4a8504036 --- /dev/null +++ b/site/public/v1/software/sputnik/index.json @@ -0,0 +1,19 @@ +{ + "id": 9529, + "slug": "sputnik", + "name": "Sputnik", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7581617" + ], + "created_at": "2026-07-10T10:12:43.147691", + "updated_at": "2026-07-10T10:12:43.147691", + "url": "/v1/software/sputnik" +} diff --git a/site/public/v1/software/spy-sweeper/index.json b/site/public/v1/software/spy-sweeper/index.json new file mode 100644 index 000000000000..f0984c91f823 --- /dev/null +++ b/site/public/v1/software/spy-sweeper/index.json @@ -0,0 +1,21 @@ +{ + "id": 9530, + "slug": "spy-sweeper", + "name": "Spy Sweeper", + "release_date": null, + "developers": [ + "Webroot Inc." + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5921582" + ], + "created_at": "2026-07-10T10:12:43.147691", + "updated_at": "2026-07-10T10:12:43.148691", + "url": "/v1/software/spy-sweeper" +} diff --git a/site/public/v1/software/spybouncer/index.json b/site/public/v1/software/spybouncer/index.json new file mode 100644 index 000000000000..5f0770682063 --- /dev/null +++ b/site/public/v1/software/spybouncer/index.json @@ -0,0 +1,19 @@ +{ + "id": 9531, + "slug": "spybouncer", + "name": "SpyBouncer", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7581648" + ], + "created_at": "2026-07-10T10:12:43.148691", + "updated_at": "2026-07-10T10:12:43.148691", + "url": "/v1/software/spybouncer" +} diff --git a/site/public/v1/software/spyhunter/index.json b/site/public/v1/software/spyhunter/index.json new file mode 100644 index 000000000000..b41882c60574 --- /dev/null +++ b/site/public/v1/software/spyhunter/index.json @@ -0,0 +1,19 @@ +{ + "id": 9532, + "slug": "spyhunter", + "name": "SpyHunter", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q30606342" + ], + "created_at": "2026-07-10T10:12:43.148691", + "updated_at": "2026-07-10T10:12:43.148691", + "url": "/v1/software/spyhunter" +} diff --git a/site/public/v1/software/spysubtract/index.json b/site/public/v1/software/spysubtract/index.json new file mode 100644 index 000000000000..abf45f4b3c2d --- /dev/null +++ b/site/public/v1/software/spysubtract/index.json @@ -0,0 +1,19 @@ +{ + "id": 9533, + "slug": "spysubtract", + "name": "SpySubtract", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7581655" + ], + "created_at": "2026-07-10T10:12:43.148691", + "updated_at": "2026-07-10T10:12:43.148691", + "url": "/v1/software/spysubtract" +} diff --git a/site/public/v1/software/spywareblaster/index.json b/site/public/v1/software/spywareblaster/index.json new file mode 100644 index 000000000000..19dcb50a90ed --- /dev/null +++ b/site/public/v1/software/spywareblaster/index.json @@ -0,0 +1,21 @@ +{ + "id": 9534, + "slug": "spywareblaster", + "name": "SpywareBlaster", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2092500" + ], + "created_at": "2026-07-10T10:12:43.149691", + "updated_at": "2026-07-10T10:12:43.149691", + "url": "/v1/software/spywareblaster" +} diff --git a/site/public/v1/software/spywareguard/index.json b/site/public/v1/software/spywareguard/index.json new file mode 100644 index 000000000000..b3851ec0bd68 --- /dev/null +++ b/site/public/v1/software/spywareguard/index.json @@ -0,0 +1,19 @@ +{ + "id": 9535, + "slug": "spywareguard", + "name": "SpywareGuard", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7581823" + ], + "created_at": "2026-07-10T10:12:43.149691", + "updated_at": "2026-07-10T10:12:43.149691", + "url": "/v1/software/spywareguard" +} diff --git a/site/public/v1/software/sql-plus/index.json b/site/public/v1/software/sql-plus/index.json new file mode 100644 index 000000000000..00e89b478b8b --- /dev/null +++ b/site/public/v1/software/sql-plus/index.json @@ -0,0 +1,19 @@ +{ + "id": 9536, + "slug": "sql-plus", + "name": "SQL*Plus", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2575010" + ], + "created_at": "2026-07-10T10:12:43.149691", + "updated_at": "2026-07-10T10:12:43.149691", + "url": "/v1/software/sql-plus" +} diff --git a/site/public/v1/software/sql-server-integration-services/index.json b/site/public/v1/software/sql-server-integration-services/index.json new file mode 100644 index 000000000000..371776388b0c --- /dev/null +++ b/site/public/v1/software/sql-server-integration-services/index.json @@ -0,0 +1,21 @@ +{ + "id": 9537, + "slug": "sql-server-integration-services", + "name": "SQL Server Integration Services", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1231051" + ], + "created_at": "2026-07-10T10:12:43.150773", + "updated_at": "2026-07-10T10:12:43.150773", + "url": "/v1/software/sql-server-integration-services" +} diff --git a/site/public/v1/software/sqlalchemy-rqlite/index.json b/site/public/v1/software/sqlalchemy-rqlite/index.json new file mode 100644 index 000000000000..99e26748c3a8 --- /dev/null +++ b/site/public/v1/software/sqlalchemy-rqlite/index.json @@ -0,0 +1,21 @@ +{ + "id": 9538, + "slug": "sqlalchemy-rqlite", + "name": "sqlalchemy-rqlite", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975492" + ], + "created_at": "2026-07-10T10:12:43.150773", + "updated_at": "2026-07-10T10:12:43.150773", + "url": "/v1/software/sqlalchemy-rqlite" +} diff --git a/site/public/v1/software/sqlcipher/index.json b/site/public/v1/software/sqlcipher/index.json new file mode 100644 index 000000000000..74c8dea1a29f --- /dev/null +++ b/site/public/v1/software/sqlcipher/index.json @@ -0,0 +1,21 @@ +{ + "id": 9539, + "slug": "sqlcipher", + "name": "SQLCipher", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "3-clause BSD License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62865069" + ], + "created_at": "2026-07-10T10:12:43.150773", + "updated_at": "2026-07-10T10:12:43.150773", + "url": "/v1/software/sqlcipher" +} diff --git a/site/public/v1/software/sqlgrey/index.json b/site/public/v1/software/sqlgrey/index.json new file mode 100644 index 000000000000..03e2c6bfb3ad --- /dev/null +++ b/site/public/v1/software/sqlgrey/index.json @@ -0,0 +1,19 @@ +{ + "id": 9540, + "slug": "sqlgrey", + "name": "SQLgrey", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62865059" + ], + "created_at": "2026-07-10T10:12:43.151785", + "updated_at": "2026-07-10T10:12:43.151785", + "url": "/v1/software/sqlgrey" +} diff --git a/site/public/v1/software/sqlite-manager/index.json b/site/public/v1/software/sqlite-manager/index.json new file mode 100644 index 000000000000..7b30bbd9b0d2 --- /dev/null +++ b/site/public/v1/software/sqlite-manager/index.json @@ -0,0 +1,19 @@ +{ + "id": 9541, + "slug": "sqlite-manager", + "name": "SQLite Manager", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7392745" + ], + "created_at": "2026-07-10T10:12:43.151785", + "updated_at": "2026-07-10T10:12:43.151785", + "url": "/v1/software/sqlite-manager" +} diff --git a/site/public/v1/software/sqlitestudio/index.json b/site/public/v1/software/sqlitestudio/index.json new file mode 100644 index 000000000000..c09b44074b4d --- /dev/null +++ b/site/public/v1/software/sqlitestudio/index.json @@ -0,0 +1,19 @@ +{ + "id": 9542, + "slug": "sqlitestudio", + "name": "SQLiteStudio", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q114282317" + ], + "created_at": "2026-07-10T10:12:43.151785", + "updated_at": "2026-07-10T10:12:43.152700", + "url": "/v1/software/sqlitestudio" +} diff --git a/site/public/v1/software/sqlstream/index.json b/site/public/v1/software/sqlstream/index.json new file mode 100644 index 000000000000..da90f378ac59 --- /dev/null +++ b/site/public/v1/software/sqlstream/index.json @@ -0,0 +1,19 @@ +{ + "id": 9543, + "slug": "sqlstream", + "name": "Sqlstream", + "release_date": "2009-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7581875" + ], + "created_at": "2026-07-10T10:12:43.152700", + "updated_at": "2026-07-10T10:12:43.152700", + "url": "/v1/software/sqlstream" +} diff --git a/site/public/v1/software/sqlyog/index.json b/site/public/v1/software/sqlyog/index.json new file mode 100644 index 000000000000..8453f3dea142 --- /dev/null +++ b/site/public/v1/software/sqlyog/index.json @@ -0,0 +1,19 @@ +{ + "id": 9544, + "slug": "sqlyog", + "name": "SQLyog", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q564657" + ], + "created_at": "2026-07-10T10:12:43.152700", + "updated_at": "2026-07-10T10:12:43.152700", + "url": "/v1/software/sqlyog" +} diff --git a/site/public/v1/software/sqrl/index.json b/site/public/v1/software/sqrl/index.json new file mode 100644 index 000000000000..a8559060130a --- /dev/null +++ b/site/public/v1/software/sqrl/index.json @@ -0,0 +1,21 @@ +{ + "id": 9545, + "slug": "sqrl", + "name": "SQRL", + "release_date": null, + "developers": [ + "Steve Gibson" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17085036" + ], + "created_at": "2026-07-10T10:12:43.152700", + "updated_at": "2026-07-10T10:12:43.152700", + "url": "/v1/software/sqrl" +} diff --git a/site/public/v1/software/squash-autom/index.json b/site/public/v1/software/squash-autom/index.json new file mode 100644 index 000000000000..ff5e558444ce --- /dev/null +++ b/site/public/v1/software/squash-autom/index.json @@ -0,0 +1,26 @@ +{ + "id": 9546, + "slug": "squash-autom", + "name": "Squash AUTOM", + "release_date": null, + "developers": [ + "Henix" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [ + "Java", + "Python" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110620332" + ], + "created_at": "2026-07-10T10:12:43.153691", + "updated_at": "2026-07-10T10:12:43.153691", + "url": "/v1/software/squash-autom" +} diff --git a/site/public/v1/software/squash-devops/index.json b/site/public/v1/software/squash-devops/index.json new file mode 100644 index 000000000000..392fb4cf9569 --- /dev/null +++ b/site/public/v1/software/squash-devops/index.json @@ -0,0 +1,26 @@ +{ + "id": 9547, + "slug": "squash-devops", + "name": "Squash DEVOPS", + "release_date": null, + "developers": [ + "Henix" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [ + "Java", + "Python" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110620942" + ], + "created_at": "2026-07-10T10:12:43.153691", + "updated_at": "2026-07-10T10:12:43.153691", + "url": "/v1/software/squash-devops" +} diff --git a/site/public/v1/software/squashdelta/index.json b/site/public/v1/software/squashdelta/index.json new file mode 100644 index 000000000000..05b5bef97bab --- /dev/null +++ b/site/public/v1/software/squashdelta/index.json @@ -0,0 +1,19 @@ +{ + "id": 9548, + "slug": "squashdelta", + "name": "squashdelta", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975494" + ], + "created_at": "2026-07-10T10:12:43.153691", + "updated_at": "2026-07-10T10:12:43.153691", + "url": "/v1/software/squashdelta" +} diff --git a/site/public/v1/software/squashmerge/index.json b/site/public/v1/software/squashmerge/index.json new file mode 100644 index 000000000000..2c182fcffa44 --- /dev/null +++ b/site/public/v1/software/squashmerge/index.json @@ -0,0 +1,19 @@ +{ + "id": 9549, + "slug": "squashmerge", + "name": "squashmerge", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975496" + ], + "created_at": "2026-07-10T10:12:43.154693", + "updated_at": "2026-07-10T10:12:43.154693", + "url": "/v1/software/squashmerge" +} diff --git a/site/public/v1/software/squidview/index.json b/site/public/v1/software/squidview/index.json new file mode 100644 index 000000000000..9b8281ebfa28 --- /dev/null +++ b/site/public/v1/software/squidview/index.json @@ -0,0 +1,19 @@ +{ + "id": 9550, + "slug": "squidview", + "name": "squidview", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62864937" + ], + "created_at": "2026-07-10T10:12:43.154693", + "updated_at": "2026-07-10T10:12:43.154693", + "url": "/v1/software/squidview" +} diff --git a/site/public/v1/software/squish-by-froglogic/index.json b/site/public/v1/software/squish-by-froglogic/index.json new file mode 100644 index 000000000000..2360c2876fc4 --- /dev/null +++ b/site/public/v1/software/squish-by-froglogic/index.json @@ -0,0 +1,21 @@ +{ + "id": 9551, + "slug": "squish-by-froglogic", + "name": "Squish by froglogic", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7582358" + ], + "created_at": "2026-07-10T10:12:43.154693", + "updated_at": "2026-07-10T10:12:43.154693", + "url": "/v1/software/squish-by-froglogic" +} diff --git a/site/public/v1/software/squore/index.json b/site/public/v1/software/squore/index.json new file mode 100644 index 000000000000..38d987e23e1d --- /dev/null +++ b/site/public/v1/software/squore/index.json @@ -0,0 +1,19 @@ +{ + "id": 9552, + "slug": "squore", + "name": "SQuORE", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7392749" + ], + "created_at": "2026-07-10T10:12:43.155696", + "updated_at": "2026-07-10T10:12:43.155696", + "url": "/v1/software/squore" +} diff --git a/site/public/v1/software/sr-3d-builder/index.json b/site/public/v1/software/sr-3d-builder/index.json new file mode 100644 index 000000000000..f27e0b491f56 --- /dev/null +++ b/site/public/v1/software/sr-3d-builder/index.json @@ -0,0 +1,21 @@ +{ + "id": 9553, + "slug": "sr-3d-builder", + "name": "SR 3D Builder", + "release_date": null, + "developers": [ + "Sergio Reano" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q47233965" + ], + "created_at": "2026-07-10T10:12:43.155696", + "updated_at": "2026-07-10T10:12:43.155696", + "url": "/v1/software/sr-3d-builder" +} diff --git a/site/public/v1/software/srecord/index.json b/site/public/v1/software/srecord/index.json new file mode 100644 index 000000000000..6da09613a2c7 --- /dev/null +++ b/site/public/v1/software/srecord/index.json @@ -0,0 +1,19 @@ +{ + "id": 9554, + "slug": "srecord", + "name": "srecord", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62864930" + ], + "created_at": "2026-07-10T10:12:43.155696", + "updated_at": "2026-07-10T10:12:43.155696", + "url": "/v1/software/srecord" +} diff --git a/site/public/v1/software/srilm-sri-language-modelling-toolkit/index.json b/site/public/v1/software/srilm-sri-language-modelling-toolkit/index.json new file mode 100644 index 000000000000..eece5753b496 --- /dev/null +++ b/site/public/v1/software/srilm-sri-language-modelling-toolkit/index.json @@ -0,0 +1,19 @@ +{ + "id": 9555, + "slug": "srilm-sri-language-modelling-toolkit", + "name": "SRILM (SRI Language Modelling Toolkit)", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087721" + ], + "created_at": "2026-07-10T10:12:43.156691", + "updated_at": "2026-07-10T10:12:43.156691", + "url": "/v1/software/srilm-sri-language-modelling-toolkit" +} diff --git a/site/public/v1/software/srm-engine-suite/index.json b/site/public/v1/software/srm-engine-suite/index.json new file mode 100644 index 000000000000..592ca36b51a4 --- /dev/null +++ b/site/public/v1/software/srm-engine-suite/index.json @@ -0,0 +1,21 @@ +{ + "id": 9556, + "slug": "srm-engine-suite", + "name": "SRM Engine Suite", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17103614" + ], + "created_at": "2026-07-10T10:12:43.157692", + "updated_at": "2026-07-10T10:12:43.157692", + "url": "/v1/software/srm-engine-suite" +} diff --git a/site/public/v1/software/ssdeep/index.json b/site/public/v1/software/ssdeep/index.json new file mode 100644 index 000000000000..966d554d5796 --- /dev/null +++ b/site/public/v1/software/ssdeep/index.json @@ -0,0 +1,19 @@ +{ + "id": 9557, + "slug": "ssdeep", + "name": "Ssdeep", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140134033" + ], + "created_at": "2026-07-10T10:12:43.159691", + "updated_at": "2026-07-10T10:12:43.159691", + "url": "/v1/software/ssdeep" +} diff --git a/site/public/v1/software/sselab/index.json b/site/public/v1/software/sselab/index.json new file mode 100644 index 000000000000..84d2e61ae7bf --- /dev/null +++ b/site/public/v1/software/sselab/index.json @@ -0,0 +1,19 @@ +{ + "id": 9558, + "slug": "sselab", + "name": "SSELab", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084586" + ], + "created_at": "2026-07-10T10:12:43.161691", + "updated_at": "2026-07-10T10:12:43.161691", + "url": "/v1/software/sselab" +} diff --git a/site/public/v1/software/sselp/index.json b/site/public/v1/software/sselp/index.json new file mode 100644 index 000000000000..e14adae23392 --- /dev/null +++ b/site/public/v1/software/sselp/index.json @@ -0,0 +1,19 @@ +{ + "id": 9559, + "slug": "sselp", + "name": "sselp", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975497" + ], + "created_at": "2026-07-10T10:12:43.163691", + "updated_at": "2026-07-10T10:12:43.163691", + "url": "/v1/software/sselp" +} diff --git a/site/public/v1/software/ssh-conversion-hub/index.json b/site/public/v1/software/ssh-conversion-hub/index.json new file mode 100644 index 000000000000..94e3e42dc8a6 --- /dev/null +++ b/site/public/v1/software/ssh-conversion-hub/index.json @@ -0,0 +1,19 @@ +{ + "id": 9560, + "slug": "ssh-conversion-hub", + "name": "SSH Conversion Hub", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084587" + ], + "created_at": "2026-07-10T10:12:43.164769", + "updated_at": "2026-07-10T10:12:43.164769", + "url": "/v1/software/ssh-conversion-hub" +} diff --git a/site/public/v1/software/ssh-training-discovery-toolkit/index.json b/site/public/v1/software/ssh-training-discovery-toolkit/index.json new file mode 100644 index 000000000000..5c35f66ff3fe --- /dev/null +++ b/site/public/v1/software/ssh-training-discovery-toolkit/index.json @@ -0,0 +1,19 @@ +{ + "id": 9561, + "slug": "ssh-training-discovery-toolkit", + "name": "SSH Training Discovery Toolkit", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084590" + ], + "created_at": "2026-07-10T10:12:43.167691", + "updated_at": "2026-07-10T10:12:43.167691", + "url": "/v1/software/ssh-training-discovery-toolkit" +} diff --git a/site/public/v1/software/sshguard/index.json b/site/public/v1/software/sshguard/index.json new file mode 100644 index 000000000000..49db5b8b2492 --- /dev/null +++ b/site/public/v1/software/sshguard/index.json @@ -0,0 +1,19 @@ +{ + "id": 9562, + "slug": "sshguard", + "name": "sshguard", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62864815" + ], + "created_at": "2026-07-10T10:12:43.168691", + "updated_at": "2026-07-10T10:12:43.168691", + "url": "/v1/software/sshguard" +} diff --git a/site/public/v1/software/sshoc-reference-ontology-sshocro/index.json b/site/public/v1/software/sshoc-reference-ontology-sshocro/index.json new file mode 100644 index 000000000000..126ac733db8b --- /dev/null +++ b/site/public/v1/software/sshoc-reference-ontology-sshocro/index.json @@ -0,0 +1,19 @@ +{ + "id": 9563, + "slug": "sshoc-reference-ontology-sshocro", + "name": "SSHOC Reference Ontology (SSHOCro)", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084589" + ], + "created_at": "2026-07-10T10:12:43.169694", + "updated_at": "2026-07-10T10:12:43.169694", + "url": "/v1/software/sshoc-reference-ontology-sshocro" +} diff --git a/site/public/v1/software/sshpass/index.json b/site/public/v1/software/sshpass/index.json new file mode 100644 index 000000000000..71d57b0d37ba --- /dev/null +++ b/site/public/v1/software/sshpass/index.json @@ -0,0 +1,19 @@ +{ + "id": 9564, + "slug": "sshpass", + "name": "sshpass", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62864808" + ], + "created_at": "2026-07-10T10:12:43.171691", + "updated_at": "2026-07-10T10:12:43.171691", + "url": "/v1/software/sshpass" +} diff --git a/site/public/v1/software/ssimulacra-2/index.json b/site/public/v1/software/ssimulacra-2/index.json new file mode 100644 index 000000000000..f53ca3c6f46c --- /dev/null +++ b/site/public/v1/software/ssimulacra-2/index.json @@ -0,0 +1,23 @@ +{ + "id": 9565, + "slug": "ssimulacra-2", + "name": "SSIMULACRA 2", + "release_date": "2022-07-27", + "developers": [ + "Jon Sneyers" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "3-clause BSD License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117789760" + ], + "created_at": "2026-07-10T10:12:43.171691", + "updated_at": "2026-07-10T10:12:43.171691", + "url": "/v1/software/ssimulacra-2" +} diff --git a/site/public/v1/software/ssimulacra/index.json b/site/public/v1/software/ssimulacra/index.json new file mode 100644 index 000000000000..c3682d230915 --- /dev/null +++ b/site/public/v1/software/ssimulacra/index.json @@ -0,0 +1,23 @@ +{ + "id": 9566, + "slug": "ssimulacra", + "name": "SSIMULACRA", + "release_date": "2017-06-13", + "developers": [ + "Jon Sneyers" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Apache Software License 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117789739" + ], + "created_at": "2026-07-10T10:12:43.172691", + "updated_at": "2026-07-10T10:12:43.172691", + "url": "/v1/software/ssimulacra" +} diff --git a/site/public/v1/software/ssl-fetch/index.json b/site/public/v1/software/ssl-fetch/index.json new file mode 100644 index 000000000000..4a5f77dd4107 --- /dev/null +++ b/site/public/v1/software/ssl-fetch/index.json @@ -0,0 +1,19 @@ +{ + "id": 9567, + "slug": "ssl-fetch", + "name": "ssl-fetch", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975498" + ], + "created_at": "2026-07-10T10:12:43.173791", + "updated_at": "2026-07-10T10:12:43.173791", + "url": "/v1/software/ssl-fetch" +} diff --git a/site/public/v1/software/ssldump/index.json b/site/public/v1/software/ssldump/index.json new file mode 100644 index 000000000000..a04f0619d410 --- /dev/null +++ b/site/public/v1/software/ssldump/index.json @@ -0,0 +1,19 @@ +{ + "id": 9568, + "slug": "ssldump", + "name": "ssldump", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62864802" + ], + "created_at": "2026-07-10T10:12:43.174758", + "updated_at": "2026-07-10T10:12:43.174758", + "url": "/v1/software/ssldump" +} diff --git a/site/public/v1/software/sslh/index.json b/site/public/v1/software/sslh/index.json new file mode 100644 index 000000000000..1fa6a4238d72 --- /dev/null +++ b/site/public/v1/software/sslh/index.json @@ -0,0 +1,23 @@ +{ + "id": 9569, + "slug": "sslh", + "name": "sslh", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Unix-like operating system" + ], + "programming_languages": [], + "licenses": [ + "GNU General Public License, version 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62864797" + ], + "created_at": "2026-07-10T10:12:43.175782", + "updated_at": "2026-07-10T10:12:43.175782", + "url": "/v1/software/sslh" +} diff --git a/site/public/v1/software/sslsplit/index.json b/site/public/v1/software/sslsplit/index.json new file mode 100644 index 000000000000..35dee4b9b181 --- /dev/null +++ b/site/public/v1/software/sslsplit/index.json @@ -0,0 +1,19 @@ +{ + "id": 9570, + "slug": "sslsplit", + "name": "Sslsplit", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62864787" + ], + "created_at": "2026-07-10T10:12:43.176780", + "updated_at": "2026-07-10T10:12:43.176780", + "url": "/v1/software/sslsplit" +} diff --git a/site/public/v1/software/ssnolib/index.json b/site/public/v1/software/ssnolib/index.json new file mode 100644 index 000000000000..cbfc0e48a7ba --- /dev/null +++ b/site/public/v1/software/ssnolib/index.json @@ -0,0 +1,21 @@ +{ + "id": 9571, + "slug": "ssnolib", + "name": "ssnolib", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131448607" + ], + "created_at": "2026-07-10T10:12:43.176780", + "updated_at": "2026-07-10T10:12:43.176780", + "url": "/v1/software/ssnolib" +} diff --git a/site/public/v1/software/sssom-curator/index.json b/site/public/v1/software/sssom-curator/index.json new file mode 100644 index 000000000000..2f140ad9523d --- /dev/null +++ b/site/public/v1/software/sssom-curator/index.json @@ -0,0 +1,23 @@ +{ + "id": 9572, + "slug": "sssom-curator", + "name": "SSSOM Curator", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Python" + ], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138902949" + ], + "created_at": "2026-07-10T10:12:43.177768", + "updated_at": "2026-07-10T10:12:43.177768", + "url": "/v1/software/sssom-curator" +} diff --git a/site/public/v1/software/sssom-pydantic/index.json b/site/public/v1/software/sssom-pydantic/index.json new file mode 100644 index 000000000000..30b1fb820b06 --- /dev/null +++ b/site/public/v1/software/sssom-pydantic/index.json @@ -0,0 +1,23 @@ +{ + "id": 9573, + "slug": "sssom-pydantic", + "name": "SSSOM Pydantic", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Python" + ], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139961696" + ], + "created_at": "2026-07-10T10:12:43.177768", + "updated_at": "2026-07-10T10:12:43.177768", + "url": "/v1/software/sssom-pydantic" +} diff --git a/site/public/v1/software/stable-audio/index.json b/site/public/v1/software/stable-audio/index.json new file mode 100644 index 000000000000..333f29633e4d --- /dev/null +++ b/site/public/v1/software/stable-audio/index.json @@ -0,0 +1,21 @@ +{ + "id": 9574, + "slug": "stable-audio", + "name": "Stable Audio", + "release_date": "2023-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130530115" + ], + "created_at": "2026-07-10T10:12:43.178765", + "updated_at": "2026-07-10T10:12:43.178765", + "url": "/v1/software/stable-audio" +} diff --git a/site/public/v1/software/stacheldraht-ddos/index.json b/site/public/v1/software/stacheldraht-ddos/index.json new file mode 100644 index 000000000000..82155c9534c0 --- /dev/null +++ b/site/public/v1/software/stacheldraht-ddos/index.json @@ -0,0 +1,21 @@ +{ + "id": 9575, + "slug": "stacheldraht-ddos", + "name": "Stacheldraht DDoS", + "release_date": null, + "developers": [ + "Mixter" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3967708" + ], + "created_at": "2026-07-10T10:12:43.179773", + "updated_at": "2026-07-10T10:12:43.179773", + "url": "/v1/software/stacheldraht-ddos" +} diff --git a/site/public/v1/software/stacks-q126084591/index.json b/site/public/v1/software/stacks-q126084591/index.json new file mode 100644 index 000000000000..557a9ac731fc --- /dev/null +++ b/site/public/v1/software/stacks-q126084591/index.json @@ -0,0 +1,19 @@ +{ + "id": 9576, + "slug": "stacks-q126084591", + "name": "STACKS", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084591" + ], + "created_at": "2026-07-10T10:12:43.179773", + "updated_at": "2026-07-10T10:12:43.179773", + "url": "/v1/software/stacks-q126084591" +} diff --git a/site/public/v1/software/stacks/index.json b/site/public/v1/software/stacks/index.json new file mode 100644 index 000000000000..9e9e1ef92a1b --- /dev/null +++ b/site/public/v1/software/stacks/index.json @@ -0,0 +1,19 @@ +{ + "id": 9577, + "slug": "stacks", + "name": "Stacks", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3468014" + ], + "created_at": "2026-07-10T10:12:43.180737", + "updated_at": "2026-07-10T10:12:43.180737", + "url": "/v1/software/stacks" +} diff --git a/site/public/v1/software/stadium/index.json b/site/public/v1/software/stadium/index.json new file mode 100644 index 000000000000..733bc154ad5d --- /dev/null +++ b/site/public/v1/software/stadium/index.json @@ -0,0 +1,19 @@ +{ + "id": 9578, + "slug": "stadium", + "name": "STADIUM", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7596468" + ], + "created_at": "2026-07-10T10:12:43.180737", + "updated_at": "2026-07-10T10:12:43.180737", + "url": "/v1/software/stadium" +} diff --git a/site/public/v1/software/stakepoint/index.json b/site/public/v1/software/stakepoint/index.json new file mode 100644 index 000000000000..b314c5e6879d --- /dev/null +++ b/site/public/v1/software/stakepoint/index.json @@ -0,0 +1,21 @@ +{ + "id": 9579, + "slug": "stakepoint", + "name": "StakePoint", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [ + "decentralized finance" + ], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139378036" + ], + "created_at": "2026-07-10T10:12:43.181764", + "updated_at": "2026-07-10T10:12:43.181764", + "url": "/v1/software/stakepoint" +} diff --git a/site/public/v1/software/stalonetray/index.json b/site/public/v1/software/stalonetray/index.json new file mode 100644 index 000000000000..a4e727ab94c7 --- /dev/null +++ b/site/public/v1/software/stalonetray/index.json @@ -0,0 +1,21 @@ +{ + "id": 9580, + "slug": "stalonetray", + "name": "stalonetray", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "GNU General Public License, version 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q62864777" + ], + "created_at": "2026-07-10T10:12:43.181764", + "updated_at": "2026-07-10T10:12:43.181764", + "url": "/v1/software/stalonetray" +} diff --git a/site/public/v1/software/stampit/index.json b/site/public/v1/software/stampit/index.json new file mode 100644 index 000000000000..f26a86464703 --- /dev/null +++ b/site/public/v1/software/stampit/index.json @@ -0,0 +1,19 @@ +{ + "id": 9581, + "slug": "stampit", + "name": "Stampit", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2329989" + ], + "created_at": "2026-07-10T10:12:43.182762", + "updated_at": "2026-07-10T10:12:43.182762", + "url": "/v1/software/stampit" +} diff --git a/site/public/v1/software/standard-portable-intermediate-representation/index.json b/site/public/v1/software/standard-portable-intermediate-representation/index.json new file mode 100644 index 000000000000..910c0d0d2d51 --- /dev/null +++ b/site/public/v1/software/standard-portable-intermediate-representation/index.json @@ -0,0 +1,21 @@ +{ + "id": 9582, + "slug": "standard-portable-intermediate-representation", + "name": "Standard Portable Intermediate Representation", + "release_date": null, + "developers": [ + "Khronos Group" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q20820603" + ], + "created_at": "2026-07-10T10:12:43.182762", + "updated_at": "2026-07-10T10:12:43.182762", + "url": "/v1/software/standard-portable-intermediate-representation" +} diff --git a/site/public/v1/software/stanford-hci-group-gigapixel/index.json b/site/public/v1/software/stanford-hci-group-gigapixel/index.json new file mode 100644 index 000000000000..011f28968e57 --- /dev/null +++ b/site/public/v1/software/stanford-hci-group-gigapixel/index.json @@ -0,0 +1,19 @@ +{ + "id": 9583, + "slug": "stanford-hci-group-gigapixel", + "name": "Stanford HCI Group: Gigapixel", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084592" + ], + "created_at": "2026-07-10T10:12:43.183759", + "updated_at": "2026-07-10T10:12:43.183759", + "url": "/v1/software/stanford-hci-group-gigapixel" +} diff --git a/site/public/v1/software/stanford-hci-group-papertoolkit/index.json b/site/public/v1/software/stanford-hci-group-papertoolkit/index.json new file mode 100644 index 000000000000..97791a4a07d3 --- /dev/null +++ b/site/public/v1/software/stanford-hci-group-papertoolkit/index.json @@ -0,0 +1,19 @@ +{ + "id": 9584, + "slug": "stanford-hci-group-papertoolkit", + "name": "Stanford HCI Group: PaperToolkit", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084593" + ], + "created_at": "2026-07-10T10:12:43.183759", + "updated_at": "2026-07-10T10:12:43.183759", + "url": "/v1/software/stanford-hci-group-papertoolkit" +} diff --git a/site/public/v1/software/stanford-mobisocial-lab-muse/index.json b/site/public/v1/software/stanford-mobisocial-lab-muse/index.json new file mode 100644 index 000000000000..fd8469f389ce --- /dev/null +++ b/site/public/v1/software/stanford-mobisocial-lab-muse/index.json @@ -0,0 +1,19 @@ +{ + "id": 9585, + "slug": "stanford-mobisocial-lab-muse", + "name": "Stanford Mobisocial Lab: Muse", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084594" + ], + "created_at": "2026-07-10T10:12:43.183759", + "updated_at": "2026-07-10T10:12:43.183759", + "url": "/v1/software/stanford-mobisocial-lab-muse" +} diff --git a/site/public/v1/software/stanford-nlp-group-classifier/index.json b/site/public/v1/software/stanford-nlp-group-classifier/index.json new file mode 100644 index 000000000000..3f3092a7f61b --- /dev/null +++ b/site/public/v1/software/stanford-nlp-group-classifier/index.json @@ -0,0 +1,19 @@ +{ + "id": 9586, + "slug": "stanford-nlp-group-classifier", + "name": "Stanford NLP Group: Classifier", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087722" + ], + "created_at": "2026-07-10T10:12:43.184694", + "updated_at": "2026-07-10T10:12:43.184694", + "url": "/v1/software/stanford-nlp-group-classifier" +} diff --git a/site/public/v1/software/stanford-nlp-group-corenlp/index.json b/site/public/v1/software/stanford-nlp-group-corenlp/index.json new file mode 100644 index 000000000000..6f37c585610e --- /dev/null +++ b/site/public/v1/software/stanford-nlp-group-corenlp/index.json @@ -0,0 +1,19 @@ +{ + "id": 9587, + "slug": "stanford-nlp-group-corenlp", + "name": "Stanford NLP Group: CoreNLP", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087723" + ], + "created_at": "2026-07-10T10:12:43.184694", + "updated_at": "2026-07-10T10:12:43.184694", + "url": "/v1/software/stanford-nlp-group-corenlp" +} diff --git a/site/public/v1/software/stanford-nlp-group-stanford-parser/index.json b/site/public/v1/software/stanford-nlp-group-stanford-parser/index.json new file mode 100644 index 000000000000..e5fbd1c11002 --- /dev/null +++ b/site/public/v1/software/stanford-nlp-group-stanford-parser/index.json @@ -0,0 +1,19 @@ +{ + "id": 9588, + "slug": "stanford-nlp-group-stanford-parser", + "name": "Stanford NLP Group: Stanford Parser", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087726" + ], + "created_at": "2026-07-10T10:12:43.185691", + "updated_at": "2026-07-10T10:12:43.185691", + "url": "/v1/software/stanford-nlp-group-stanford-parser" +} diff --git a/site/public/v1/software/stanford-nlp-group-stanford-phrasal/index.json b/site/public/v1/software/stanford-nlp-group-stanford-phrasal/index.json new file mode 100644 index 000000000000..4f2d19d87592 --- /dev/null +++ b/site/public/v1/software/stanford-nlp-group-stanford-phrasal/index.json @@ -0,0 +1,19 @@ +{ + "id": 9589, + "slug": "stanford-nlp-group-stanford-phrasal", + "name": "Stanford NLP Group: Stanford Phrasal", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087727" + ], + "created_at": "2026-07-10T10:12:43.185691", + "updated_at": "2026-07-10T10:12:43.185691", + "url": "/v1/software/stanford-nlp-group-stanford-phrasal" +} diff --git a/site/public/v1/software/stanford-nlp-group-stanford-tokenizer/index.json b/site/public/v1/software/stanford-nlp-group-stanford-tokenizer/index.json new file mode 100644 index 000000000000..8c014246a723 --- /dev/null +++ b/site/public/v1/software/stanford-nlp-group-stanford-tokenizer/index.json @@ -0,0 +1,19 @@ +{ + "id": 9590, + "slug": "stanford-nlp-group-stanford-tokenizer", + "name": "Stanford NLP Group: Stanford Tokenizer", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087728" + ], + "created_at": "2026-07-10T10:12:43.185691", + "updated_at": "2026-07-10T10:12:43.185691", + "url": "/v1/software/stanford-nlp-group-stanford-tokenizer" +} diff --git a/site/public/v1/software/stanford-sentiment-analysis/index.json b/site/public/v1/software/stanford-sentiment-analysis/index.json new file mode 100644 index 000000000000..269bcf014fb4 --- /dev/null +++ b/site/public/v1/software/stanford-sentiment-analysis/index.json @@ -0,0 +1,19 @@ +{ + "id": 9591, + "slug": "stanford-sentiment-analysis", + "name": "Stanford Sentiment Analysis", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087729" + ], + "created_at": "2026-07-10T10:12:43.186690", + "updated_at": "2026-07-10T10:12:43.186690", + "url": "/v1/software/stanford-sentiment-analysis" +} diff --git a/site/public/v1/software/stanford-vis-group-data-wrangler/index.json b/site/public/v1/software/stanford-vis-group-data-wrangler/index.json new file mode 100644 index 000000000000..9876438c7497 --- /dev/null +++ b/site/public/v1/software/stanford-vis-group-data-wrangler/index.json @@ -0,0 +1,19 @@ +{ + "id": 9592, + "slug": "stanford-vis-group-data-wrangler", + "name": "Stanford Vis Group: Data Wrangler", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084595" + ], + "created_at": "2026-07-10T10:12:43.186690", + "updated_at": "2026-07-10T10:12:43.186690", + "url": "/v1/software/stanford-vis-group-data-wrangler" +} diff --git a/site/public/v1/software/stanford-vis-group-protovis/index.json b/site/public/v1/software/stanford-vis-group-protovis/index.json new file mode 100644 index 000000000000..790dd5ef90f2 --- /dev/null +++ b/site/public/v1/software/stanford-vis-group-protovis/index.json @@ -0,0 +1,19 @@ +{ + "id": 9593, + "slug": "stanford-vis-group-protovis", + "name": "Stanford Vis Group: Protovis", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084596" + ], + "created_at": "2026-07-10T10:12:43.187692", + "updated_at": "2026-07-10T10:12:43.187692", + "url": "/v1/software/stanford-vis-group-protovis" +} diff --git a/site/public/v1/software/stap/index.json b/site/public/v1/software/stap/index.json new file mode 100644 index 000000000000..643463a23209 --- /dev/null +++ b/site/public/v1/software/stap/index.json @@ -0,0 +1,19 @@ +{ + "id": 9594, + "slug": "stap", + "name": "STAP", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084597" + ], + "created_at": "2026-07-10T10:12:43.187692", + "updated_at": "2026-07-10T10:12:43.187692", + "url": "/v1/software/stap" +} diff --git a/site/public/v1/software/star-ruby-software/index.json b/site/public/v1/software/star-ruby-software/index.json new file mode 100644 index 000000000000..1bb1ac573e31 --- /dev/null +++ b/site/public/v1/software/star-ruby-software/index.json @@ -0,0 +1,21 @@ +{ + "id": 9595, + "slug": "star-ruby-software", + "name": "Star Ruby software", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11247175" + ], + "created_at": "2026-07-10T10:12:43.187692", + "updated_at": "2026-07-10T10:12:43.187692", + "url": "/v1/software/star-ruby-software" +} diff --git a/site/public/v1/software/star-walk/index.json b/site/public/v1/software/star-walk/index.json new file mode 100644 index 000000000000..ec4b2bd9f2f6 --- /dev/null +++ b/site/public/v1/software/star-walk/index.json @@ -0,0 +1,21 @@ +{ + "id": 9596, + "slug": "star-walk", + "name": "Star Walk", + "release_date": "2008-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [ + "educational entertainment" + ], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q13515774" + ], + "created_at": "2026-07-10T10:12:43.188691", + "updated_at": "2026-07-10T10:12:43.188691", + "url": "/v1/software/star-walk" +} diff --git a/site/public/v1/software/star-wars-episode-i-insider-s-guide/index.json b/site/public/v1/software/star-wars-episode-i-insider-s-guide/index.json new file mode 100644 index 000000000000..13406e93fbfa --- /dev/null +++ b/site/public/v1/software/star-wars-episode-i-insider-s-guide/index.json @@ -0,0 +1,19 @@ +{ + "id": 9597, + "slug": "star-wars-episode-i-insider-s-guide", + "name": "Star Wars Episode I: Insider's Guide", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135682591" + ], + "created_at": "2026-07-10T10:12:43.188691", + "updated_at": "2026-07-10T10:12:43.188691", + "url": "/v1/software/star-wars-episode-i-insider-s-guide" +} diff --git a/site/public/v1/software/star-wars-screen-entertainment/index.json b/site/public/v1/software/star-wars-screen-entertainment/index.json new file mode 100644 index 000000000000..b63e655b3ed0 --- /dev/null +++ b/site/public/v1/software/star-wars-screen-entertainment/index.json @@ -0,0 +1,19 @@ +{ + "id": 9598, + "slug": "star-wars-screen-entertainment", + "name": "Star Wars Screen Entertainment", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131986053" + ], + "created_at": "2026-07-10T10:12:43.188691", + "updated_at": "2026-07-10T10:12:43.188691", + "url": "/v1/software/star-wars-screen-entertainment" +} diff --git a/site/public/v1/software/star/index.json b/site/public/v1/software/star/index.json new file mode 100644 index 000000000000..422375c2b34a --- /dev/null +++ b/site/public/v1/software/star/index.json @@ -0,0 +1,23 @@ +{ + "id": 9599, + "slug": "star", + "name": "STAR", + "release_date": null, + "developers": [ + "Renaissance Learning" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7394671" + ], + "created_at": "2026-07-10T10:12:43.189691", + "updated_at": "2026-07-10T10:12:43.189691", + "url": "/v1/software/star" +} diff --git a/site/public/v1/software/starcounter/index.json b/site/public/v1/software/starcounter/index.json new file mode 100644 index 000000000000..050d4e9b22f0 --- /dev/null +++ b/site/public/v1/software/starcounter/index.json @@ -0,0 +1,19 @@ +{ + "id": 9600, + "slug": "starcounter", + "name": "Starcounter", + "release_date": "2006-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28449171" + ], + "created_at": "2026-07-10T10:12:43.189691", + "updated_at": "2026-07-10T10:12:43.189691", + "url": "/v1/software/starcounter" +} diff --git a/site/public/v1/software/starcraft-campaign-editor/index.json b/site/public/v1/software/starcraft-campaign-editor/index.json new file mode 100644 index 000000000000..0620f287fe49 --- /dev/null +++ b/site/public/v1/software/starcraft-campaign-editor/index.json @@ -0,0 +1,19 @@ +{ + "id": 9601, + "slug": "starcraft-campaign-editor", + "name": "StarCraft campaign editor", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q843216" + ], + "created_at": "2026-07-10T10:12:43.189691", + "updated_at": "2026-07-10T10:12:43.189691", + "url": "/v1/software/starcraft-campaign-editor" +} diff --git a/site/public/v1/software/stardock-central/index.json b/site/public/v1/software/stardock-central/index.json new file mode 100644 index 000000000000..3285d5384247 --- /dev/null +++ b/site/public/v1/software/stardock-central/index.json @@ -0,0 +1,21 @@ +{ + "id": 9602, + "slug": "stardock-central", + "name": "Stardock Central", + "release_date": null, + "developers": [ + "Stardock" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17048684" + ], + "created_at": "2026-07-10T10:12:43.190691", + "updated_at": "2026-07-10T10:12:43.190691", + "url": "/v1/software/stardock-central" +} diff --git a/site/public/v1/software/stardraw/index.json b/site/public/v1/software/stardraw/index.json new file mode 100644 index 000000000000..abf6152a4f01 --- /dev/null +++ b/site/public/v1/software/stardraw/index.json @@ -0,0 +1,21 @@ +{ + "id": 9603, + "slug": "stardraw", + "name": "StarDraw", + "release_date": "1995-01-01", + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7600538" + ], + "created_at": "2026-07-10T10:12:43.190691", + "updated_at": "2026-07-10T10:12:43.190691", + "url": "/v1/software/stardraw" +} diff --git a/site/public/v1/software/stargaze/index.json b/site/public/v1/software/stargaze/index.json new file mode 100644 index 000000000000..8c8f3cd9c50f --- /dev/null +++ b/site/public/v1/software/stargaze/index.json @@ -0,0 +1,19 @@ +{ + "id": 9604, + "slug": "stargaze", + "name": "Stargaze", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10374066" + ], + "created_at": "2026-07-10T10:12:43.190691", + "updated_at": "2026-07-10T10:12:43.190691", + "url": "/v1/software/stargaze" +} diff --git a/site/public/v1/software/starlight-information-visualization-system/index.json b/site/public/v1/software/starlight-information-visualization-system/index.json new file mode 100644 index 000000000000..0ff1d4673c2c --- /dev/null +++ b/site/public/v1/software/starlight-information-visualization-system/index.json @@ -0,0 +1,21 @@ +{ + "id": 9605, + "slug": "starlight-information-visualization-system", + "name": "Starlight Information Visualization System", + "release_date": null, + "developers": [ + "Pacific Northwest National Laboratory" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7602077" + ], + "created_at": "2026-07-10T10:12:43.191691", + "updated_at": "2026-07-10T10:12:43.191691", + "url": "/v1/software/starlight-information-visualization-system" +} diff --git a/site/public/v1/software/starling/index.json b/site/public/v1/software/starling/index.json new file mode 100644 index 000000000000..c00251313851 --- /dev/null +++ b/site/public/v1/software/starling/index.json @@ -0,0 +1,21 @@ +{ + "id": 9606, + "slug": "starling", + "name": "Starling", + "release_date": null, + "developers": [ + "Blaine Cook" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7602092" + ], + "created_at": "2026-07-10T10:12:43.191691", + "updated_at": "2026-07-10T10:12:43.191691", + "url": "/v1/software/starling" +} diff --git a/site/public/v1/software/starlink-project/index.json b/site/public/v1/software/starlink-project/index.json new file mode 100644 index 000000000000..d66f24e0ef7e --- /dev/null +++ b/site/public/v1/software/starlink-project/index.json @@ -0,0 +1,19 @@ +{ + "id": 9607, + "slug": "starlink-project", + "name": "Starlink Project", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7602103" + ], + "created_at": "2026-07-10T10:12:43.191691", + "updated_at": "2026-07-10T10:12:43.191691", + "url": "/v1/software/starlink-project" +} diff --git a/site/public/v1/software/starry-night/index.json b/site/public/v1/software/starry-night/index.json new file mode 100644 index 000000000000..53440a8ce8f4 --- /dev/null +++ b/site/public/v1/software/starry-night/index.json @@ -0,0 +1,19 @@ +{ + "id": 9608, + "slug": "starry-night", + "name": "Starry Night", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q29386" + ], + "created_at": "2026-07-10T10:12:43.192691", + "updated_at": "2026-07-10T10:12:43.192691", + "url": "/v1/software/starry-night" +} diff --git a/site/public/v1/software/starship-tycoon/index.json b/site/public/v1/software/starship-tycoon/index.json new file mode 100644 index 000000000000..9018af80fe4d --- /dev/null +++ b/site/public/v1/software/starship-tycoon/index.json @@ -0,0 +1,19 @@ +{ + "id": 9609, + "slug": "starship-tycoon", + "name": "Starship Tycoon", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q88367867" + ], + "created_at": "2026-07-10T10:12:43.192691", + "updated_at": "2026-07-10T10:12:43.192691", + "url": "/v1/software/starship-tycoon" +} diff --git a/site/public/v1/software/start-prof/index.json b/site/public/v1/software/start-prof/index.json new file mode 100644 index 000000000000..808523b0b16a --- /dev/null +++ b/site/public/v1/software/start-prof/index.json @@ -0,0 +1,19 @@ +{ + "id": 9610, + "slug": "start-prof", + "name": "START-PROF", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q98825231" + ], + "created_at": "2026-07-10T10:12:43.192691", + "updated_at": "2026-07-10T10:12:43.192691", + "url": "/v1/software/start-prof" +} diff --git a/site/public/v1/software/start-stop-daemon/index.json b/site/public/v1/software/start-stop-daemon/index.json new file mode 100644 index 000000000000..4a03b3c58e0c --- /dev/null +++ b/site/public/v1/software/start-stop-daemon/index.json @@ -0,0 +1,19 @@ +{ + "id": 9611, + "slug": "start-stop-daemon", + "name": "start-stop-daemon", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4050059" + ], + "created_at": "2026-07-10T10:12:43.193691", + "updated_at": "2026-07-10T10:12:43.193691", + "url": "/v1/software/start-stop-daemon" +} diff --git a/site/public/v1/software/stash/index.json b/site/public/v1/software/stash/index.json new file mode 100644 index 000000000000..5965a81cd42a --- /dev/null +++ b/site/public/v1/software/stash/index.json @@ -0,0 +1,23 @@ +{ + "id": 9612, + "slug": "stash", + "name": "Stash", + "release_date": null, + "developers": [ + "Outergy Group" + ], + "publishers": [], + "operating_systems": [ + "macOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140199367" + ], + "created_at": "2026-07-10T10:12:43.193691", + "updated_at": "2026-07-10T10:12:43.193691", + "url": "/v1/software/stash" +} diff --git a/site/public/v1/software/stata-1-0/index.json b/site/public/v1/software/stata-1-0/index.json new file mode 100644 index 000000000000..e6eb14d1e9de --- /dev/null +++ b/site/public/v1/software/stata-1-0/index.json @@ -0,0 +1,21 @@ +{ + "id": 9613, + "slug": "stata-1-0", + "name": "STATA 1.0", + "release_date": "1985-01-01", + "developers": [ + "StataCorp" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q32101836" + ], + "created_at": "2026-07-10T10:12:43.193691", + "updated_at": "2026-07-10T10:12:43.193691", + "url": "/v1/software/stata-1-0" +} diff --git a/site/public/v1/software/stata-1-1/index.json b/site/public/v1/software/stata-1-1/index.json new file mode 100644 index 000000000000..da4c7c176f83 --- /dev/null +++ b/site/public/v1/software/stata-1-1/index.json @@ -0,0 +1,21 @@ +{ + "id": 9614, + "slug": "stata-1-1", + "name": "STATA 1.1", + "release_date": "1985-02-01", + "developers": [ + "StataCorp" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q32102400" + ], + "created_at": "2026-07-10T10:12:43.194693", + "updated_at": "2026-07-10T10:12:43.194693", + "url": "/v1/software/stata-1-1" +} diff --git a/site/public/v1/software/stata-10-0/index.json b/site/public/v1/software/stata-10-0/index.json new file mode 100644 index 000000000000..eeaaafe805f0 --- /dev/null +++ b/site/public/v1/software/stata-10-0/index.json @@ -0,0 +1,21 @@ +{ + "id": 9615, + "slug": "stata-10-0", + "name": "STATA 10.0", + "release_date": "2009-07-01", + "developers": [ + "StataCorp" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q32103144" + ], + "created_at": "2026-07-10T10:12:43.194693", + "updated_at": "2026-07-10T10:12:43.194693", + "url": "/v1/software/stata-10-0" +} diff --git a/site/public/v1/software/stata-10-1/index.json b/site/public/v1/software/stata-10-1/index.json new file mode 100644 index 000000000000..38a62a25f11c --- /dev/null +++ b/site/public/v1/software/stata-10-1/index.json @@ -0,0 +1,21 @@ +{ + "id": 9616, + "slug": "stata-10-1", + "name": "STATA 10.1", + "release_date": "2008-08-01", + "developers": [ + "StataCorp" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q32103502" + ], + "created_at": "2026-07-10T10:12:43.194693", + "updated_at": "2026-07-10T10:12:43.194693", + "url": "/v1/software/stata-10-1" +} diff --git a/site/public/v1/software/stata-11-0/index.json b/site/public/v1/software/stata-11-0/index.json new file mode 100644 index 000000000000..a77a7f76203d --- /dev/null +++ b/site/public/v1/software/stata-11-0/index.json @@ -0,0 +1,21 @@ +{ + "id": 9617, + "slug": "stata-11-0", + "name": "STATA 11.0", + "release_date": "2009-07-01", + "developers": [ + "StataCorp" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q32103698" + ], + "created_at": "2026-07-10T10:12:43.194693", + "updated_at": "2026-07-10T10:12:43.194693", + "url": "/v1/software/stata-11-0" +} diff --git a/site/public/v1/software/stata-11-1/index.json b/site/public/v1/software/stata-11-1/index.json new file mode 100644 index 000000000000..2cec7d22e1dd --- /dev/null +++ b/site/public/v1/software/stata-11-1/index.json @@ -0,0 +1,21 @@ +{ + "id": 9618, + "slug": "stata-11-1", + "name": "STATA 11.1", + "release_date": "2010-06-01", + "developers": [ + "StataCorp" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q32105026" + ], + "created_at": "2026-07-10T10:12:43.194693", + "updated_at": "2026-07-10T10:12:43.194693", + "url": "/v1/software/stata-11-1" +} diff --git a/site/public/v1/software/stata-11-2/index.json b/site/public/v1/software/stata-11-2/index.json new file mode 100644 index 000000000000..f9e7fbfd9ff1 --- /dev/null +++ b/site/public/v1/software/stata-11-2/index.json @@ -0,0 +1,21 @@ +{ + "id": 9619, + "slug": "stata-11-2", + "name": "STATA 11.2", + "release_date": "2011-03-01", + "developers": [ + "StataCorp" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q32105379" + ], + "created_at": "2026-07-10T10:12:43.195764", + "updated_at": "2026-07-10T10:12:43.195764", + "url": "/v1/software/stata-11-2" +} diff --git a/site/public/v1/software/stata-12-0/index.json b/site/public/v1/software/stata-12-0/index.json new file mode 100644 index 000000000000..fbb3078dd302 --- /dev/null +++ b/site/public/v1/software/stata-12-0/index.json @@ -0,0 +1,21 @@ +{ + "id": 9620, + "slug": "stata-12-0", + "name": "STATA 12.0", + "release_date": "2012-07-01", + "developers": [ + "StataCorp" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q32105841" + ], + "created_at": "2026-07-10T10:12:43.195764", + "updated_at": "2026-07-10T10:12:43.195764", + "url": "/v1/software/stata-12-0" +} diff --git a/site/public/v1/software/stata-12-1/index.json b/site/public/v1/software/stata-12-1/index.json new file mode 100644 index 000000000000..fa61e2d3ff6c --- /dev/null +++ b/site/public/v1/software/stata-12-1/index.json @@ -0,0 +1,21 @@ +{ + "id": 9621, + "slug": "stata-12-1", + "name": "STATA 12.1", + "release_date": "2012-01-01", + "developers": [ + "StataCorp" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q32106691" + ], + "created_at": "2026-07-10T10:12:43.195764", + "updated_at": "2026-07-10T10:12:43.196762", + "url": "/v1/software/stata-12-1" +} diff --git a/site/public/v1/software/stata-13-0/index.json b/site/public/v1/software/stata-13-0/index.json new file mode 100644 index 000000000000..b6b5ea59b42e --- /dev/null +++ b/site/public/v1/software/stata-13-0/index.json @@ -0,0 +1,21 @@ +{ + "id": 9622, + "slug": "stata-13-0", + "name": "STATA 13.0", + "release_date": "2013-06-01", + "developers": [ + "StataCorp" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q32106849" + ], + "created_at": "2026-07-10T10:12:43.196762", + "updated_at": "2026-07-10T10:12:43.196762", + "url": "/v1/software/stata-13-0" +} diff --git a/site/public/v1/software/stata-13-1/index.json b/site/public/v1/software/stata-13-1/index.json new file mode 100644 index 000000000000..52bb29e8d07f --- /dev/null +++ b/site/public/v1/software/stata-13-1/index.json @@ -0,0 +1,21 @@ +{ + "id": 9623, + "slug": "stata-13-1", + "name": "STATA 13.1", + "release_date": "2013-10-01", + "developers": [ + "StataCorp" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q32107462" + ], + "created_at": "2026-07-10T10:12:43.196762", + "updated_at": "2026-07-10T10:12:43.196762", + "url": "/v1/software/stata-13-1" +} diff --git a/site/public/v1/software/stata-14-0/index.json b/site/public/v1/software/stata-14-0/index.json new file mode 100644 index 000000000000..a11a95bbab06 --- /dev/null +++ b/site/public/v1/software/stata-14-0/index.json @@ -0,0 +1,21 @@ +{ + "id": 9624, + "slug": "stata-14-0", + "name": "STATA 14.0", + "release_date": "2015-04-01", + "developers": [ + "StataCorp" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q32107993" + ], + "created_at": "2026-07-10T10:12:43.196762", + "updated_at": "2026-07-10T10:12:43.196762", + "url": "/v1/software/stata-14-0" +} diff --git a/site/public/v1/software/stata-14-1/index.json b/site/public/v1/software/stata-14-1/index.json new file mode 100644 index 000000000000..9a7e1ec4e0c7 --- /dev/null +++ b/site/public/v1/software/stata-14-1/index.json @@ -0,0 +1,21 @@ +{ + "id": 9625, + "slug": "stata-14-1", + "name": "STATA 14.1", + "release_date": "2015-10-01", + "developers": [ + "StataCorp" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q32109675" + ], + "created_at": "2026-07-10T10:12:43.197766", + "updated_at": "2026-07-10T10:12:43.197766", + "url": "/v1/software/stata-14-1" +} diff --git a/site/public/v1/software/stata-14-2/index.json b/site/public/v1/software/stata-14-2/index.json new file mode 100644 index 000000000000..03bcc1ef51c8 --- /dev/null +++ b/site/public/v1/software/stata-14-2/index.json @@ -0,0 +1,21 @@ +{ + "id": 9626, + "slug": "stata-14-2", + "name": "STATA 14.2", + "release_date": "2016-09-01", + "developers": [ + "StataCorp" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q32110422" + ], + "created_at": "2026-07-10T10:12:43.197766", + "updated_at": "2026-07-10T10:12:43.197766", + "url": "/v1/software/stata-14-2" +} diff --git a/site/public/v1/software/stata-15-0/index.json b/site/public/v1/software/stata-15-0/index.json new file mode 100644 index 000000000000..c55c9be731c7 --- /dev/null +++ b/site/public/v1/software/stata-15-0/index.json @@ -0,0 +1,21 @@ +{ + "id": 9627, + "slug": "stata-15-0", + "name": "STATA 15.0", + "release_date": "2017-06-01", + "developers": [ + "StataCorp" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q32111032" + ], + "created_at": "2026-07-10T10:12:43.197766", + "updated_at": "2026-07-10T10:12:43.197766", + "url": "/v1/software/stata-15-0" +} diff --git a/site/public/v1/software/stata-2-0/index.json b/site/public/v1/software/stata-2-0/index.json new file mode 100644 index 000000000000..3905ef8cb5f4 --- /dev/null +++ b/site/public/v1/software/stata-2-0/index.json @@ -0,0 +1,19 @@ +{ + "id": 9628, + "slug": "stata-2-0", + "name": "STATA 2.0", + "release_date": "1988-06-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q32130687" + ], + "created_at": "2026-07-10T10:12:43.198748", + "updated_at": "2026-07-10T10:12:43.198748", + "url": "/v1/software/stata-2-0" +} diff --git a/site/public/v1/software/stata-2-05/index.json b/site/public/v1/software/stata-2-05/index.json new file mode 100644 index 000000000000..38147a399f5e --- /dev/null +++ b/site/public/v1/software/stata-2-05/index.json @@ -0,0 +1,19 @@ +{ + "id": 9629, + "slug": "stata-2-05", + "name": "STATA 2.05", + "release_date": "1989-04-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q32130225" + ], + "created_at": "2026-07-10T10:12:43.198748", + "updated_at": "2026-07-10T10:12:43.198748", + "url": "/v1/software/stata-2-05" +} diff --git a/site/public/v1/software/stata-2-1/index.json b/site/public/v1/software/stata-2-1/index.json new file mode 100644 index 000000000000..cde188639809 --- /dev/null +++ b/site/public/v1/software/stata-2-1/index.json @@ -0,0 +1,21 @@ +{ + "id": 9630, + "slug": "stata-2-1", + "name": "STATA 2.1", + "release_date": "1990-08-01", + "developers": [ + "StataCorp" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q32129715" + ], + "created_at": "2026-07-10T10:12:43.198748", + "updated_at": "2026-07-10T10:12:43.198748", + "url": "/v1/software/stata-2-1" +} diff --git a/site/public/v1/software/stata-3-0/index.json b/site/public/v1/software/stata-3-0/index.json new file mode 100644 index 000000000000..01d68f779a80 --- /dev/null +++ b/site/public/v1/software/stata-3-0/index.json @@ -0,0 +1,19 @@ +{ + "id": 9631, + "slug": "stata-3-0", + "name": "STATA 3.0", + "release_date": "1992-03-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q32128837" + ], + "created_at": "2026-07-10T10:12:43.198748", + "updated_at": "2026-07-10T10:12:43.198748", + "url": "/v1/software/stata-3-0" +} diff --git a/site/public/v1/software/stata-4-0/index.json b/site/public/v1/software/stata-4-0/index.json new file mode 100644 index 000000000000..e31e15d5fab9 --- /dev/null +++ b/site/public/v1/software/stata-4-0/index.json @@ -0,0 +1,21 @@ +{ + "id": 9632, + "slug": "stata-4-0", + "name": "STATA 4.0", + "release_date": "1995-01-01", + "developers": [ + "StataCorp" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q32128043" + ], + "created_at": "2026-07-10T10:12:43.199769", + "updated_at": "2026-07-10T10:12:43.199769", + "url": "/v1/software/stata-4-0" +} diff --git a/site/public/v1/software/stata-5-0/index.json b/site/public/v1/software/stata-5-0/index.json new file mode 100644 index 000000000000..25022b0a119c --- /dev/null +++ b/site/public/v1/software/stata-5-0/index.json @@ -0,0 +1,21 @@ +{ + "id": 9633, + "slug": "stata-5-0", + "name": "STATA 5.0", + "release_date": "1996-09-01", + "developers": [ + "StataCorp" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q32127352" + ], + "created_at": "2026-07-10T10:12:43.199769", + "updated_at": "2026-07-10T10:12:43.199769", + "url": "/v1/software/stata-5-0" +} diff --git a/site/public/v1/software/stata-6-0/index.json b/site/public/v1/software/stata-6-0/index.json new file mode 100644 index 000000000000..53326e56a4b8 --- /dev/null +++ b/site/public/v1/software/stata-6-0/index.json @@ -0,0 +1,21 @@ +{ + "id": 9634, + "slug": "stata-6-0", + "name": "STATA 6.0", + "release_date": "1999-01-01", + "developers": [ + "StataCorp" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q32115772" + ], + "created_at": "2026-07-10T10:12:43.199769", + "updated_at": "2026-07-10T10:12:43.199769", + "url": "/v1/software/stata-6-0" +} diff --git a/site/public/v1/software/stata-7-0/index.json b/site/public/v1/software/stata-7-0/index.json new file mode 100644 index 000000000000..67ae6eb05731 --- /dev/null +++ b/site/public/v1/software/stata-7-0/index.json @@ -0,0 +1,21 @@ +{ + "id": 9635, + "slug": "stata-7-0", + "name": "STATA 7.0", + "release_date": "2000-12-01", + "developers": [ + "StataCorp" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q32115372" + ], + "created_at": "2026-07-10T10:12:43.200795", + "updated_at": "2026-07-10T10:12:43.200795", + "url": "/v1/software/stata-7-0" +} diff --git a/site/public/v1/software/stata-8-0/index.json b/site/public/v1/software/stata-8-0/index.json new file mode 100644 index 000000000000..2fdf60304c50 --- /dev/null +++ b/site/public/v1/software/stata-8-0/index.json @@ -0,0 +1,21 @@ +{ + "id": 9636, + "slug": "stata-8-0", + "name": "STATA 8.0", + "release_date": "2003-01-01", + "developers": [ + "StataCorp" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q32114479" + ], + "created_at": "2026-07-10T10:12:43.200795", + "updated_at": "2026-07-10T10:12:43.200795", + "url": "/v1/software/stata-8-0" +} diff --git a/site/public/v1/software/stata-8-1/index.json b/site/public/v1/software/stata-8-1/index.json new file mode 100644 index 000000000000..87ef8b85f018 --- /dev/null +++ b/site/public/v1/software/stata-8-1/index.json @@ -0,0 +1,19 @@ +{ + "id": 9637, + "slug": "stata-8-1", + "name": "STATA 8.1", + "release_date": "2003-07-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q32126680" + ], + "created_at": "2026-07-10T10:12:43.200795", + "updated_at": "2026-07-10T10:12:43.200795", + "url": "/v1/software/stata-8-1" +} diff --git a/site/public/v1/software/stata-8-2/index.json b/site/public/v1/software/stata-8-2/index.json new file mode 100644 index 000000000000..907b2556198d --- /dev/null +++ b/site/public/v1/software/stata-8-2/index.json @@ -0,0 +1,21 @@ +{ + "id": 9638, + "slug": "stata-8-2", + "name": "STATA 8.2", + "release_date": "2003-10-01", + "developers": [ + "StataCorp" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q32119852" + ], + "created_at": "2026-07-10T10:12:43.201807", + "updated_at": "2026-07-10T10:12:43.201807", + "url": "/v1/software/stata-8-2" +} diff --git a/site/public/v1/software/stata-9-0/index.json b/site/public/v1/software/stata-9-0/index.json new file mode 100644 index 000000000000..4aec4208e6e0 --- /dev/null +++ b/site/public/v1/software/stata-9-0/index.json @@ -0,0 +1,21 @@ +{ + "id": 9639, + "slug": "stata-9-0", + "name": "STATA 9.0", + "release_date": "2005-04-01", + "developers": [ + "StataCorp" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q32114702" + ], + "created_at": "2026-07-10T10:12:43.201807", + "updated_at": "2026-07-10T10:12:43.201807", + "url": "/v1/software/stata-9-0" +} diff --git a/site/public/v1/software/stata-9-1/index.json b/site/public/v1/software/stata-9-1/index.json new file mode 100644 index 000000000000..136f2be937c1 --- /dev/null +++ b/site/public/v1/software/stata-9-1/index.json @@ -0,0 +1,21 @@ +{ + "id": 9640, + "slug": "stata-9-1", + "name": "STATA 9.1", + "release_date": "2005-09-01", + "developers": [ + "StataCorp" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q32121546" + ], + "created_at": "2026-07-10T10:12:43.201807", + "updated_at": "2026-07-10T10:12:43.201807", + "url": "/v1/software/stata-9-1" +} diff --git a/site/public/v1/software/stata-9-2/index.json b/site/public/v1/software/stata-9-2/index.json new file mode 100644 index 000000000000..f5e6a291546c --- /dev/null +++ b/site/public/v1/software/stata-9-2/index.json @@ -0,0 +1,19 @@ +{ + "id": 9641, + "slug": "stata-9-2", + "name": "STATA 9.2", + "release_date": "2006-04-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q32125787" + ], + "created_at": "2026-07-10T10:12:43.202808", + "updated_at": "2026-07-10T10:12:43.202808", + "url": "/v1/software/stata-9-2" +} diff --git a/site/public/v1/software/statcheck/index.json b/site/public/v1/software/statcheck/index.json new file mode 100644 index 000000000000..70cec4c5acd4 --- /dev/null +++ b/site/public/v1/software/statcheck/index.json @@ -0,0 +1,19 @@ +{ + "id": 9642, + "slug": "statcheck", + "name": "Statcheck", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60749222" + ], + "created_at": "2026-07-10T10:12:43.202808", + "updated_at": "2026-07-10T10:12:43.202808", + "url": "/v1/software/statcheck" +} diff --git a/site/public/v1/software/statcrunch/index.json b/site/public/v1/software/statcrunch/index.json new file mode 100644 index 000000000000..3f98901b8acb --- /dev/null +++ b/site/public/v1/software/statcrunch/index.json @@ -0,0 +1,19 @@ +{ + "id": 9643, + "slug": "statcrunch", + "name": "StatCrunch", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q39052740" + ], + "created_at": "2026-07-10T10:12:43.202808", + "updated_at": "2026-07-10T10:12:43.202808", + "url": "/v1/software/statcrunch" +} diff --git a/site/public/v1/software/state/index.json b/site/public/v1/software/state/index.json new file mode 100644 index 000000000000..755f4d5455ae --- /dev/null +++ b/site/public/v1/software/state/index.json @@ -0,0 +1,19 @@ +{ + "id": 9644, + "slug": "state", + "name": "State", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16928008" + ], + "created_at": "2026-07-10T10:12:43.203808", + "updated_at": "2026-07-10T10:12:43.203808", + "url": "/v1/software/state" +} diff --git a/site/public/v1/software/statgraphics/index.json b/site/public/v1/software/statgraphics/index.json new file mode 100644 index 000000000000..01be75603ef4 --- /dev/null +++ b/site/public/v1/software/statgraphics/index.json @@ -0,0 +1,19 @@ +{ + "id": 9645, + "slug": "statgraphics", + "name": "Statgraphics", + "release_date": "1980-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3497316" + ], + "created_at": "2026-07-10T10:12:43.203808", + "updated_at": "2026-07-10T10:12:43.203808", + "url": "/v1/software/statgraphics" +} diff --git a/site/public/v1/software/statistica/index.json b/site/public/v1/software/statistica/index.json new file mode 100644 index 000000000000..6cb2dde56a87 --- /dev/null +++ b/site/public/v1/software/statistica/index.json @@ -0,0 +1,23 @@ +{ + "id": 9646, + "slug": "statistica", + "name": "STATISTICA", + "release_date": null, + "developers": [ + "Dell" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1788435" + ], + "created_at": "2026-07-10T10:12:43.203808", + "updated_at": "2026-07-10T10:12:43.203808", + "url": "/v1/software/statistica" +} diff --git a/site/public/v1/software/statistical-lab/index.json b/site/public/v1/software/statistical-lab/index.json new file mode 100644 index 000000000000..4c4f7529e879 --- /dev/null +++ b/site/public/v1/software/statistical-lab/index.json @@ -0,0 +1,19 @@ +{ + "id": 9647, + "slug": "statistical-lab", + "name": "Statistical Lab", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087730" + ], + "created_at": "2026-07-10T10:12:43.204809", + "updated_at": "2026-07-10T10:12:43.204809", + "url": "/v1/software/statistical-lab" +} diff --git a/site/public/v1/software/statmetrics/index.json b/site/public/v1/software/statmetrics/index.json new file mode 100644 index 000000000000..81d63feddc23 --- /dev/null +++ b/site/public/v1/software/statmetrics/index.json @@ -0,0 +1,21 @@ +{ + "id": 9648, + "slug": "statmetrics", + "name": "Statmetrics", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Java" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7604455" + ], + "created_at": "2026-07-10T10:12:43.204809", + "updated_at": "2026-07-10T10:12:43.204809", + "url": "/v1/software/statmetrics" +} diff --git a/site/public/v1/software/statpascal/index.json b/site/public/v1/software/statpascal/index.json new file mode 100644 index 000000000000..5518cfe90ad4 --- /dev/null +++ b/site/public/v1/software/statpascal/index.json @@ -0,0 +1,19 @@ +{ + "id": 9649, + "slug": "statpascal", + "name": "StatPascal", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2333575" + ], + "created_at": "2026-07-10T10:12:43.204809", + "updated_at": "2026-07-10T10:12:43.204809", + "url": "/v1/software/statpascal" +} diff --git a/site/public/v1/software/statplus/index.json b/site/public/v1/software/statplus/index.json new file mode 100644 index 000000000000..d37bc7fe7af7 --- /dev/null +++ b/site/public/v1/software/statplus/index.json @@ -0,0 +1,21 @@ +{ + "id": 9650, + "slug": "statplus", + "name": "StatPlus", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7602964" + ], + "created_at": "2026-07-10T10:12:43.204809", + "updated_at": "2026-07-10T10:12:43.204809", + "url": "/v1/software/statplus" +} diff --git a/site/public/v1/software/stats-app/index.json b/site/public/v1/software/stats-app/index.json new file mode 100644 index 000000000000..872663fcb2e6 --- /dev/null +++ b/site/public/v1/software/stats-app/index.json @@ -0,0 +1,21 @@ +{ + "id": 9651, + "slug": "stats-app", + "name": "Stats (app)", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136531095" + ], + "created_at": "2026-07-10T10:12:43.205808", + "updated_at": "2026-07-10T10:12:43.205808", + "url": "/v1/software/stats-app" +} diff --git a/site/public/v1/software/statsdirect/index.json b/site/public/v1/software/statsdirect/index.json new file mode 100644 index 000000000000..101a82deb1e5 --- /dev/null +++ b/site/public/v1/software/statsdirect/index.json @@ -0,0 +1,19 @@ +{ + "id": 9652, + "slug": "statsdirect", + "name": "StatsDirect", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17048686" + ], + "created_at": "2026-07-10T10:12:43.205808", + "updated_at": "2026-07-10T10:12:43.205808", + "url": "/v1/software/statsdirect" +} diff --git a/site/public/v1/software/stattoo/index.json b/site/public/v1/software/stattoo/index.json new file mode 100644 index 000000000000..624a9ff3d676 --- /dev/null +++ b/site/public/v1/software/stattoo/index.json @@ -0,0 +1,21 @@ +{ + "id": 9653, + "slug": "stattoo", + "name": "Stattoo", + "release_date": null, + "developers": [ + "Panic" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7604471" + ], + "created_at": "2026-07-10T10:12:43.205808", + "updated_at": "2026-07-10T10:12:43.205808", + "url": "/v1/software/stattoo" +} diff --git a/site/public/v1/software/statview/index.json b/site/public/v1/software/statview/index.json new file mode 100644 index 000000000000..a6f11deee666 --- /dev/null +++ b/site/public/v1/software/statview/index.json @@ -0,0 +1,21 @@ +{ + "id": 9654, + "slug": "statview", + "name": "StatView", + "release_date": null, + "developers": [ + "Apple Inc." + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7602967" + ], + "created_at": "2026-07-10T10:12:43.206808", + "updated_at": "2026-07-10T10:12:43.206808", + "url": "/v1/software/statview" +} diff --git a/site/public/v1/software/statwing/index.json b/site/public/v1/software/statwing/index.json new file mode 100644 index 000000000000..fc8e93fa4090 --- /dev/null +++ b/site/public/v1/software/statwing/index.json @@ -0,0 +1,19 @@ +{ + "id": 9655, + "slug": "statwing", + "name": "Statwing", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084598" + ], + "created_at": "2026-07-10T10:12:43.206808", + "updated_at": "2026-07-10T10:12:43.206808", + "url": "/v1/software/statwing" +} diff --git a/site/public/v1/software/statxact/index.json b/site/public/v1/software/statxact/index.json new file mode 100644 index 000000000000..76f8b94a59aa --- /dev/null +++ b/site/public/v1/software/statxact/index.json @@ -0,0 +1,23 @@ +{ + "id": 9656, + "slug": "statxact", + "name": "StatXact", + "release_date": null, + "developers": [ + "Cytel" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7602969" + ], + "created_at": "2026-07-10T10:12:43.206808", + "updated_at": "2026-07-10T10:12:43.206808", + "url": "/v1/software/statxact" +} diff --git a/site/public/v1/software/steady/index.json b/site/public/v1/software/steady/index.json new file mode 100644 index 000000000000..afb4a11e9ccd --- /dev/null +++ b/site/public/v1/software/steady/index.json @@ -0,0 +1,19 @@ +{ + "id": 9657, + "slug": "steady", + "name": "Steady", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60764146" + ], + "created_at": "2026-07-10T10:12:43.207807", + "updated_at": "2026-07-10T10:12:43.207807", + "url": "/v1/software/steady" +} diff --git a/site/public/v1/software/steadyprint/index.json b/site/public/v1/software/steadyprint/index.json new file mode 100644 index 000000000000..7c538e9201db --- /dev/null +++ b/site/public/v1/software/steadyprint/index.json @@ -0,0 +1,19 @@ +{ + "id": 9658, + "slug": "steadyprint", + "name": "SteadyPRINT", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q56296895" + ], + "created_at": "2026-07-10T10:12:43.207807", + "updated_at": "2026-07-10T10:12:43.207807", + "url": "/v1/software/steadyprint" +} diff --git a/site/public/v1/software/steam-chat/index.json b/site/public/v1/software/steam-chat/index.json new file mode 100644 index 000000000000..02b8dd9b7436 --- /dev/null +++ b/site/public/v1/software/steam-chat/index.json @@ -0,0 +1,19 @@ +{ + "id": 9659, + "slug": "steam-chat", + "name": "Steam Chat", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109535941" + ], + "created_at": "2026-07-10T10:12:43.207807", + "updated_at": "2026-07-10T10:12:43.207807", + "url": "/v1/software/steam-chat" +} diff --git a/site/public/v1/software/steam-explorers/index.json b/site/public/v1/software/steam-explorers/index.json new file mode 100644 index 000000000000..36babd4fae89 --- /dev/null +++ b/site/public/v1/software/steam-explorers/index.json @@ -0,0 +1,21 @@ +{ + "id": 9660, + "slug": "steam-explorers", + "name": "Steam Explorers", + "release_date": null, + "developers": [ + "Valve Corporation" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q61937949" + ], + "created_at": "2026-07-10T10:12:43.208807", + "updated_at": "2026-07-10T10:12:43.208807", + "url": "/v1/software/steam-explorers" +} diff --git a/site/public/v1/software/steed/index.json b/site/public/v1/software/steed/index.json new file mode 100644 index 000000000000..0af8439b1587 --- /dev/null +++ b/site/public/v1/software/steed/index.json @@ -0,0 +1,19 @@ +{ + "id": 9661, + "slug": "steed", + "name": "Steed", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28452151" + ], + "created_at": "2026-07-10T10:12:43.208807", + "updated_at": "2026-07-10T10:12:43.208807", + "url": "/v1/software/steed" +} diff --git a/site/public/v1/software/steel-bank-common-lisp/index.json b/site/public/v1/software/steel-bank-common-lisp/index.json new file mode 100644 index 000000000000..f79a49300af7 --- /dev/null +++ b/site/public/v1/software/steel-bank-common-lisp/index.json @@ -0,0 +1,27 @@ +{ + "id": 9662, + "slug": "steel-bank-common-lisp", + "name": "Steel Bank Common Lisp", + "release_date": "1999-12-01", + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows", + "Unix-like operating system", + "macOS" + ], + "programming_languages": [ + "Lisp" + ], + "licenses": [ + "released into the public domain by the copyright holder" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1427296" + ], + "created_at": "2026-07-10T10:12:43.208807", + "updated_at": "2026-07-10T10:12:43.208807", + "url": "/v1/software/steel-bank-common-lisp" +} diff --git a/site/public/v1/software/steeleye-lifekeeper/index.json b/site/public/v1/software/steeleye-lifekeeper/index.json new file mode 100644 index 000000000000..b62cdbd8b736 --- /dev/null +++ b/site/public/v1/software/steeleye-lifekeeper/index.json @@ -0,0 +1,19 @@ +{ + "id": 9663, + "slug": "steeleye-lifekeeper", + "name": "SteelEye LifeKeeper", + "release_date": "1992-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7605616" + ], + "created_at": "2026-07-10T10:12:43.208807", + "updated_at": "2026-07-10T10:12:43.208807", + "url": "/v1/software/steeleye-lifekeeper" +} diff --git a/site/public/v1/software/steelscript/index.json b/site/public/v1/software/steelscript/index.json new file mode 100644 index 000000000000..617daa361522 --- /dev/null +++ b/site/public/v1/software/steelscript/index.json @@ -0,0 +1,19 @@ +{ + "id": 9664, + "slug": "steelscript", + "name": "SteelScript", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135190734" + ], + "created_at": "2026-07-10T10:12:43.209884", + "updated_at": "2026-07-10T10:12:43.209884", + "url": "/v1/software/steelscript" +} diff --git a/site/public/v1/software/steinberg-nuendo/index.json b/site/public/v1/software/steinberg-nuendo/index.json new file mode 100644 index 000000000000..335632a4ceae --- /dev/null +++ b/site/public/v1/software/steinberg-nuendo/index.json @@ -0,0 +1,26 @@ +{ + "id": 9665, + "slug": "steinberg-nuendo", + "name": "Steinberg Nuendo", + "release_date": null, + "developers": [ + "Steinberg" + ], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1522160" + ], + "created_at": "2026-07-10T10:12:43.209884", + "updated_at": "2026-07-10T10:12:43.209884", + "url": "/v1/software/steinberg-nuendo" +} diff --git a/site/public/v1/software/stellar-phoenix-mac-data-recovery/index.json b/site/public/v1/software/stellar-phoenix-mac-data-recovery/index.json new file mode 100644 index 000000000000..6d26418e2f73 --- /dev/null +++ b/site/public/v1/software/stellar-phoenix-mac-data-recovery/index.json @@ -0,0 +1,19 @@ +{ + "id": 9666, + "slug": "stellar-phoenix-mac-data-recovery", + "name": "Stellar Phoenix Mac Data Recovery", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q39058483" + ], + "created_at": "2026-07-10T10:12:43.209884", + "updated_at": "2026-07-10T10:12:43.209884", + "url": "/v1/software/stellar-phoenix-mac-data-recovery" +} diff --git a/site/public/v1/software/stellar-phoenix-photo-recovery/index.json b/site/public/v1/software/stellar-phoenix-photo-recovery/index.json new file mode 100644 index 000000000000..dc5c26a0f35d --- /dev/null +++ b/site/public/v1/software/stellar-phoenix-photo-recovery/index.json @@ -0,0 +1,19 @@ +{ + "id": 9667, + "slug": "stellar-phoenix-photo-recovery", + "name": "Stellar Phoenix Photo Recovery", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q48989148" + ], + "created_at": "2026-07-10T10:12:43.210865", + "updated_at": "2026-07-10T10:12:43.210865", + "url": "/v1/software/stellar-phoenix-photo-recovery" +} diff --git a/site/public/v1/software/stellar-phoenix-windows-data-recovery/index.json b/site/public/v1/software/stellar-phoenix-windows-data-recovery/index.json new file mode 100644 index 000000000000..68eeeee5cf3c --- /dev/null +++ b/site/public/v1/software/stellar-phoenix-windows-data-recovery/index.json @@ -0,0 +1,21 @@ +{ + "id": 9668, + "slug": "stellar-phoenix-windows-data-recovery", + "name": "Stellar Phoenix Windows Data Recovery", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28957071" + ], + "created_at": "2026-07-10T10:12:43.210865", + "updated_at": "2026-07-10T10:12:43.210865", + "url": "/v1/software/stellar-phoenix-windows-data-recovery" +} diff --git a/site/public/v1/software/stellar/index.json b/site/public/v1/software/stellar/index.json new file mode 100644 index 000000000000..2efc1ab43542 --- /dev/null +++ b/site/public/v1/software/stellar/index.json @@ -0,0 +1,23 @@ +{ + "id": 9669, + "slug": "stellar", + "name": "Stellar", + "release_date": null, + "developers": [ + "Jed McCaleb" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Apache License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17870327" + ], + "created_at": "2026-07-10T10:12:43.210865", + "updated_at": "2026-07-10T10:12:43.210865", + "url": "/v1/software/stellar" +} diff --git a/site/public/v1/software/stelrix/index.json b/site/public/v1/software/stelrix/index.json new file mode 100644 index 000000000000..1d5313ce8e9f --- /dev/null +++ b/site/public/v1/software/stelrix/index.json @@ -0,0 +1,19 @@ +{ + "id": 9670, + "slug": "stelrix", + "name": "Stelrix", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134008798" + ], + "created_at": "2026-07-10T10:12:43.211856", + "updated_at": "2026-07-10T10:12:43.211856", + "url": "/v1/software/stelrix" +} diff --git a/site/public/v1/software/stemloc/index.json b/site/public/v1/software/stemloc/index.json new file mode 100644 index 000000000000..38cae9f40d0d --- /dev/null +++ b/site/public/v1/software/stemloc/index.json @@ -0,0 +1,19 @@ +{ + "id": 9671, + "slug": "stemloc", + "name": "Stemloc", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7607317" + ], + "created_at": "2026-07-10T10:12:43.211856", + "updated_at": "2026-07-10T10:12:43.211856", + "url": "/v1/software/stemloc" +} diff --git a/site/public/v1/software/stemming-and-lemmatization-using-nltk/index.json b/site/public/v1/software/stemming-and-lemmatization-using-nltk/index.json new file mode 100644 index 000000000000..b1387680f16b --- /dev/null +++ b/site/public/v1/software/stemming-and-lemmatization-using-nltk/index.json @@ -0,0 +1,19 @@ +{ + "id": 9672, + "slug": "stemming-and-lemmatization-using-nltk", + "name": "Stemming and Lemmatization using NLTK", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084599" + ], + "created_at": "2026-07-10T10:12:43.211856", + "updated_at": "2026-07-10T10:12:43.211856", + "url": "/v1/software/stemming-and-lemmatization-using-nltk" +} diff --git a/site/public/v1/software/stencil-code/index.json b/site/public/v1/software/stencil-code/index.json new file mode 100644 index 000000000000..504ed7392377 --- /dev/null +++ b/site/public/v1/software/stencil-code/index.json @@ -0,0 +1,19 @@ +{ + "id": 9673, + "slug": "stencil-code", + "name": "Stencil code", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7607501" + ], + "created_at": "2026-07-10T10:12:43.212912", + "updated_at": "2026-07-10T10:12:43.212912", + "url": "/v1/software/stencil-code" +} diff --git a/site/public/v1/software/stencila/index.json b/site/public/v1/software/stencila/index.json new file mode 100644 index 000000000000..9a1af1180328 --- /dev/null +++ b/site/public/v1/software/stencila/index.json @@ -0,0 +1,21 @@ +{ + "id": 9674, + "slug": "stencila", + "name": "Stencila", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Apache Software License 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q96473364" + ], + "created_at": "2026-07-10T10:12:43.212912", + "updated_at": "2026-07-10T10:12:43.212912", + "url": "/v1/software/stencila" +} diff --git a/site/public/v1/software/steptalk/index.json b/site/public/v1/software/steptalk/index.json new file mode 100644 index 000000000000..8d02f208ac37 --- /dev/null +++ b/site/public/v1/software/steptalk/index.json @@ -0,0 +1,19 @@ +{ + "id": 9675, + "slug": "steptalk", + "name": "StepTalk", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2342993" + ], + "created_at": "2026-07-10T10:12:43.212912", + "updated_at": "2026-07-10T10:12:43.212912", + "url": "/v1/software/steptalk" +} diff --git a/site/public/v1/software/stereofot/index.json b/site/public/v1/software/stereofot/index.json new file mode 100644 index 000000000000..54996fe67236 --- /dev/null +++ b/site/public/v1/software/stereofot/index.json @@ -0,0 +1,19 @@ +{ + "id": 9676, + "slug": "stereofot", + "name": "StereoFot", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3973239" + ], + "created_at": "2026-07-10T10:12:43.213906", + "updated_at": "2026-07-10T10:12:43.213906", + "url": "/v1/software/stereofot" +} diff --git a/site/public/v1/software/sterling/index.json b/site/public/v1/software/sterling/index.json new file mode 100644 index 000000000000..49c2e650d2b3 --- /dev/null +++ b/site/public/v1/software/sterling/index.json @@ -0,0 +1,21 @@ +{ + "id": 9677, + "slug": "sterling", + "name": "Sterling", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1606792" + ], + "created_at": "2026-07-10T10:12:43.213906", + "updated_at": "2026-07-10T10:12:43.213906", + "url": "/v1/software/sterling" +} diff --git a/site/public/v1/software/sticky-notes/index.json b/site/public/v1/software/sticky-notes/index.json new file mode 100644 index 000000000000..b44b538d2cae --- /dev/null +++ b/site/public/v1/software/sticky-notes/index.json @@ -0,0 +1,23 @@ +{ + "id": 9678, + "slug": "sticky-notes", + "name": "Sticky Notes", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q23038417" + ], + "created_at": "2026-07-10T10:12:43.213906", + "updated_at": "2026-07-10T10:12:43.213906", + "url": "/v1/software/sticky-notes" +} diff --git a/site/public/v1/software/sticq/index.json b/site/public/v1/software/sticq/index.json new file mode 100644 index 000000000000..1588fa13c669 --- /dev/null +++ b/site/public/v1/software/sticq/index.json @@ -0,0 +1,19 @@ +{ + "id": 9679, + "slug": "sticq", + "name": "stICQ", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4047719" + ], + "created_at": "2026-07-10T10:12:43.214886", + "updated_at": "2026-07-10T10:12:43.214886", + "url": "/v1/software/sticq" +} diff --git a/site/public/v1/software/stimulsoft/index.json b/site/public/v1/software/stimulsoft/index.json new file mode 100644 index 000000000000..0921df03b25c --- /dev/null +++ b/site/public/v1/software/stimulsoft/index.json @@ -0,0 +1,19 @@ +{ + "id": 9680, + "slug": "stimulsoft", + "name": "Stimulsoft", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4442622" + ], + "created_at": "2026-07-10T10:12:43.214886", + "updated_at": "2026-07-10T10:12:43.214886", + "url": "/v1/software/stimulsoft" +} diff --git a/site/public/v1/software/sting/index.json b/site/public/v1/software/sting/index.json new file mode 100644 index 000000000000..0f3774b9569f --- /dev/null +++ b/site/public/v1/software/sting/index.json @@ -0,0 +1,19 @@ +{ + "id": 9681, + "slug": "sting", + "name": "STING", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16335169" + ], + "created_at": "2026-07-10T10:12:43.214886", + "updated_at": "2026-07-10T10:12:43.214886", + "url": "/v1/software/sting" +} diff --git a/site/public/v1/software/stl-parts/index.json b/site/public/v1/software/stl-parts/index.json new file mode 100644 index 000000000000..76342177a7f7 --- /dev/null +++ b/site/public/v1/software/stl-parts/index.json @@ -0,0 +1,19 @@ +{ + "id": 9682, + "slug": "stl-parts", + "name": "stl.parts", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139578630" + ], + "created_at": "2026-07-10T10:12:43.215860", + "updated_at": "2026-07-10T10:12:43.215860", + "url": "/v1/software/stl-parts" +} diff --git a/site/public/v1/software/stoat/index.json b/site/public/v1/software/stoat/index.json new file mode 100644 index 000000000000..f8e1c3431fa4 --- /dev/null +++ b/site/public/v1/software/stoat/index.json @@ -0,0 +1,19 @@ +{ + "id": 9683, + "slug": "stoat", + "name": "Stoat", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q133540545" + ], + "created_at": "2026-07-10T10:12:43.215860", + "updated_at": "2026-07-10T10:12:43.215860", + "url": "/v1/software/stoat" +} diff --git a/site/public/v1/software/stochsd/index.json b/site/public/v1/software/stochsd/index.json new file mode 100644 index 000000000000..4e10b68b11d6 --- /dev/null +++ b/site/public/v1/software/stochsd/index.json @@ -0,0 +1,19 @@ +{ + "id": 9684, + "slug": "stochsd", + "name": "StochSD", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131277931" + ], + "created_at": "2026-07-10T10:12:43.215860", + "updated_at": "2026-07-10T10:12:43.215860", + "url": "/v1/software/stochsd" +} diff --git a/site/public/v1/software/stocktake-online/index.json b/site/public/v1/software/stocktake-online/index.json new file mode 100644 index 000000000000..e9e7e8843cd9 --- /dev/null +++ b/site/public/v1/software/stocktake-online/index.json @@ -0,0 +1,21 @@ +{ + "id": 9685, + "slug": "stocktake-online", + "name": "StockTake Online", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [ + "business software" + ], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135256716" + ], + "created_at": "2026-07-10T10:12:43.215860", + "updated_at": "2026-07-10T10:12:43.215860", + "url": "/v1/software/stocktake-online" +} diff --git a/site/public/v1/software/stone-giant/index.json b/site/public/v1/software/stone-giant/index.json new file mode 100644 index 000000000000..6fc496482660 --- /dev/null +++ b/site/public/v1/software/stone-giant/index.json @@ -0,0 +1,19 @@ +{ + "id": 9686, + "slug": "stone-giant", + "name": "Stone Giant", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4050198" + ], + "created_at": "2026-07-10T10:12:43.217293", + "updated_at": "2026-07-10T10:12:43.217293", + "url": "/v1/software/stone-giant" +} diff --git a/site/public/v1/software/stop-motion-studio/index.json b/site/public/v1/software/stop-motion-studio/index.json new file mode 100644 index 000000000000..dcef1958c45a --- /dev/null +++ b/site/public/v1/software/stop-motion-studio/index.json @@ -0,0 +1,19 @@ +{ + "id": 9687, + "slug": "stop-motion-studio", + "name": "Stop Motion Studio", + "release_date": "2011-09-07", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138528197" + ], + "created_at": "2026-07-10T10:12:43.217293", + "updated_at": "2026-07-10T10:12:43.217293", + "url": "/v1/software/stop-motion-studio" +} diff --git a/site/public/v1/software/stopping-and-range-of-ions-in-matter/index.json b/site/public/v1/software/stopping-and-range-of-ions-in-matter/index.json new file mode 100644 index 000000000000..2d9ba31e6858 --- /dev/null +++ b/site/public/v1/software/stopping-and-range-of-ions-in-matter/index.json @@ -0,0 +1,25 @@ +{ + "id": 9688, + "slug": "stopping-and-range-of-ions-in-matter", + "name": "Stopping and Range of Ions in Matter", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [ + "Visual Basic" + ], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7619862" + ], + "created_at": "2026-07-10T10:12:43.217293", + "updated_at": "2026-07-10T10:12:43.217293", + "url": "/v1/software/stopping-and-range-of-ions-in-matter" +} diff --git a/site/public/v1/software/stoqui/index.json b/site/public/v1/software/stoqui/index.json new file mode 100644 index 000000000000..a75ab9543bb9 --- /dev/null +++ b/site/public/v1/software/stoqui/index.json @@ -0,0 +1,21 @@ +{ + "id": 9689, + "slug": "stoqui", + "name": "Stoqui", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "iOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138465651" + ], + "created_at": "2026-07-10T10:12:43.218220", + "updated_at": "2026-07-10T10:12:43.218220", + "url": "/v1/software/stoqui" +} diff --git a/site/public/v1/software/storage-home/index.json b/site/public/v1/software/storage-home/index.json new file mode 100644 index 000000000000..891dce46faa5 --- /dev/null +++ b/site/public/v1/software/storage-home/index.json @@ -0,0 +1,23 @@ +{ + "id": 9690, + "slug": "storage-home", + "name": "Storage@home", + "release_date": "2009-01-01", + "developers": [ + "Stanford University" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7619899" + ], + "created_at": "2026-07-10T10:12:43.218220", + "updated_at": "2026-07-10T10:12:43.218220", + "url": "/v1/software/storage-home" +} diff --git a/site/public/v1/software/storefront-audit/index.json b/site/public/v1/software/storefront-audit/index.json new file mode 100644 index 000000000000..0b8e023d6dda --- /dev/null +++ b/site/public/v1/software/storefront-audit/index.json @@ -0,0 +1,19 @@ +{ + "id": 9691, + "slug": "storefront-audit", + "name": "Storefront Audit", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139550696" + ], + "created_at": "2026-07-10T10:12:43.218220", + "updated_at": "2026-07-10T10:12:43.218220", + "url": "/v1/software/storefront-audit" +} diff --git a/site/public/v1/software/storm-codec/index.json b/site/public/v1/software/storm-codec/index.json new file mode 100644 index 000000000000..48e48b5b1f99 --- /dev/null +++ b/site/public/v1/software/storm-codec/index.json @@ -0,0 +1,23 @@ +{ + "id": 9692, + "slug": "storm-codec", + "name": "Storm Codec", + "release_date": "2002-01-01", + "developers": [ + "Baofeng Group Co., Ltd." + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11090490" + ], + "created_at": "2026-07-10T10:12:43.219218", + "updated_at": "2026-07-10T10:12:43.219218", + "url": "/v1/software/storm-codec" +} diff --git a/site/public/v1/software/storm-player/index.json b/site/public/v1/software/storm-player/index.json new file mode 100644 index 000000000000..9661ec883a56 --- /dev/null +++ b/site/public/v1/software/storm-player/index.json @@ -0,0 +1,19 @@ +{ + "id": 9693, + "slug": "storm-player", + "name": "Storm Player", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q15946686" + ], + "created_at": "2026-07-10T10:12:43.219218", + "updated_at": "2026-07-10T10:12:43.219218", + "url": "/v1/software/storm-player" +} diff --git a/site/public/v1/software/storpool-storage/index.json b/site/public/v1/software/storpool-storage/index.json new file mode 100644 index 000000000000..02a0b314a064 --- /dev/null +++ b/site/public/v1/software/storpool-storage/index.json @@ -0,0 +1,19 @@ +{ + "id": 9694, + "slug": "storpool-storage", + "name": "StorPool Storage", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22909095" + ], + "created_at": "2026-07-10T10:12:43.219218", + "updated_at": "2026-07-10T10:12:43.219218", + "url": "/v1/software/storpool-storage" +} diff --git a/site/public/v1/software/storyboard-quick/index.json b/site/public/v1/software/storyboard-quick/index.json new file mode 100644 index 000000000000..360730a45fcc --- /dev/null +++ b/site/public/v1/software/storyboard-quick/index.json @@ -0,0 +1,19 @@ +{ + "id": 9695, + "slug": "storyboard-quick", + "name": "StoryBoard Quick", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7620363" + ], + "created_at": "2026-07-10T10:12:43.220221", + "updated_at": "2026-07-10T10:12:43.220221", + "url": "/v1/software/storyboard-quick" +} diff --git a/site/public/v1/software/storybonsai/index.json b/site/public/v1/software/storybonsai/index.json new file mode 100644 index 000000000000..c97b7f1f7893 --- /dev/null +++ b/site/public/v1/software/storybonsai/index.json @@ -0,0 +1,30 @@ +{ + "id": 9696, + "slug": "storybonsai", + "name": "StoryBonsai", + "release_date": null, + "developers": [ + "Michael Garforth" + ], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [ + "TypeScript" + ], + "licenses": [ + "proprietary license" + ], + "genres": [ + "game development tool" + ], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139582865" + ], + "created_at": "2026-07-10T10:12:43.220221", + "updated_at": "2026-07-10T10:12:43.220221", + "url": "/v1/software/storybonsai" +} diff --git a/site/public/v1/software/storykit/index.json b/site/public/v1/software/storykit/index.json new file mode 100644 index 000000000000..f43c2d6cbd71 --- /dev/null +++ b/site/public/v1/software/storykit/index.json @@ -0,0 +1,19 @@ +{ + "id": 9697, + "slug": "storykit", + "name": "StoryKit", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084601" + ], + "created_at": "2026-07-10T10:12:43.220221", + "updated_at": "2026-07-10T10:12:43.220221", + "url": "/v1/software/storykit" +} diff --git a/site/public/v1/software/storymapjs/index.json b/site/public/v1/software/storymapjs/index.json new file mode 100644 index 000000000000..28a326507659 --- /dev/null +++ b/site/public/v1/software/storymapjs/index.json @@ -0,0 +1,19 @@ +{ + "id": 9698, + "slug": "storymapjs", + "name": "StoryMapJS", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084602" + ], + "created_at": "2026-07-10T10:12:43.220221", + "updated_at": "2026-07-10T10:12:43.220221", + "url": "/v1/software/storymapjs" +} diff --git a/site/public/v1/software/strand7/index.json b/site/public/v1/software/strand7/index.json new file mode 100644 index 000000000000..249e35381447 --- /dev/null +++ b/site/public/v1/software/strand7/index.json @@ -0,0 +1,19 @@ +{ + "id": 9699, + "slug": "strand7", + "name": "STRAND7", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7394802" + ], + "created_at": "2026-07-10T10:12:43.221220", + "updated_at": "2026-07-10T10:12:43.221220", + "url": "/v1/software/strand7" +} diff --git a/site/public/v1/software/strap-2-0/index.json b/site/public/v1/software/strap-2-0/index.json new file mode 100644 index 000000000000..27c98099760a --- /dev/null +++ b/site/public/v1/software/strap-2-0/index.json @@ -0,0 +1,19 @@ +{ + "id": 9700, + "slug": "strap-2-0", + "name": "STRAP 2.0", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087731" + ], + "created_at": "2026-07-10T10:12:43.221220", + "updated_at": "2026-07-10T10:12:43.221220", + "url": "/v1/software/strap-2-0" +} diff --git a/site/public/v1/software/strasys/index.json b/site/public/v1/software/strasys/index.json new file mode 100644 index 000000000000..82f7885018cd --- /dev/null +++ b/site/public/v1/software/strasys/index.json @@ -0,0 +1,23 @@ +{ + "id": 9701, + "slug": "strasys", + "name": "STRASYS", + "release_date": null, + "developers": [ + "STRASYS Global" + ], + "publishers": [ + "STRASYS Global" + ], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138098542" + ], + "created_at": "2026-07-10T10:12:43.221220", + "updated_at": "2026-07-10T10:12:43.221220", + "url": "/v1/software/strasys" +} diff --git a/site/public/v1/software/strata-3d/index.json b/site/public/v1/software/strata-3d/index.json new file mode 100644 index 000000000000..00233338a98e --- /dev/null +++ b/site/public/v1/software/strata-3d/index.json @@ -0,0 +1,19 @@ +{ + "id": 9702, + "slug": "strata-3d", + "name": "Strata 3D", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3048381" + ], + "created_at": "2026-07-10T10:12:43.222220", + "updated_at": "2026-07-10T10:12:43.222220", + "url": "/v1/software/strata-3d" +} diff --git a/site/public/v1/software/stratavision-3d/index.json b/site/public/v1/software/stratavision-3d/index.json new file mode 100644 index 000000000000..935b8ae54892 --- /dev/null +++ b/site/public/v1/software/stratavision-3d/index.json @@ -0,0 +1,19 @@ +{ + "id": 9703, + "slug": "stratavision-3d", + "name": "StrataVision 3D", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1298638" + ], + "created_at": "2026-07-10T10:12:43.222220", + "updated_at": "2026-07-10T10:12:43.222220", + "url": "/v1/software/stratavision-3d" +} diff --git a/site/public/v1/software/stratify/index.json b/site/public/v1/software/stratify/index.json new file mode 100644 index 000000000000..10fe94ee3a51 --- /dev/null +++ b/site/public/v1/software/stratify/index.json @@ -0,0 +1,19 @@ +{ + "id": 9704, + "slug": "stratify", + "name": "Stratify", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q58631391" + ], + "created_at": "2026-07-10T10:12:43.222220", + "updated_at": "2026-07-10T10:12:43.222220", + "url": "/v1/software/stratify" +} diff --git a/site/public/v1/software/stratis-cli/index.json b/site/public/v1/software/stratis-cli/index.json new file mode 100644 index 000000000000..c2f1f2ad6974 --- /dev/null +++ b/site/public/v1/software/stratis-cli/index.json @@ -0,0 +1,23 @@ +{ + "id": 9705, + "slug": "stratis-cli", + "name": "stratis-cli", + "release_date": null, + "developers": [ + "Red Hat" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Apache Software License 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112243615" + ], + "created_at": "2026-07-10T10:12:43.223219", + "updated_at": "2026-07-10T10:12:43.223219", + "url": "/v1/software/stratis-cli" +} diff --git a/site/public/v1/software/stratos/index.json b/site/public/v1/software/stratos/index.json new file mode 100644 index 000000000000..07619b6fb4fd --- /dev/null +++ b/site/public/v1/software/stratos/index.json @@ -0,0 +1,21 @@ +{ + "id": 9706, + "slug": "stratos", + "name": "Stratos", + "release_date": null, + "developers": [ + "Clear Sky" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140464250" + ], + "created_at": "2026-07-10T10:12:43.223219", + "updated_at": "2026-07-10T10:12:43.223219", + "url": "/v1/software/stratos" +} diff --git a/site/public/v1/software/stratum/index.json b/site/public/v1/software/stratum/index.json new file mode 100644 index 000000000000..9a16d7f698cd --- /dev/null +++ b/site/public/v1/software/stratum/index.json @@ -0,0 +1,21 @@ +{ + "id": 9707, + "slug": "stratum", + "name": "Stratum", + "release_date": null, + "developers": [ + "XOps360 LLC" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139581513" + ], + "created_at": "2026-07-10T10:12:43.223219", + "updated_at": "2026-07-10T10:12:43.223219", + "url": "/v1/software/stratum" +} diff --git a/site/public/v1/software/strauss-sibelius-and-more-complete-parts-to-50-orchestral-masterworks-on-cd-rom/index.json b/site/public/v1/software/strauss-sibelius-and-more-complete-parts-to-50-orchestral-masterworks-on-cd-rom/index.json new file mode 100644 index 000000000000..efab6262870a --- /dev/null +++ b/site/public/v1/software/strauss-sibelius-and-more-complete-parts-to-50-orchestral-masterworks-on-cd-rom/index.json @@ -0,0 +1,23 @@ +{ + "id": 9708, + "slug": "strauss-sibelius-and-more-complete-parts-to-50-orchestral-masterworks-on-cd-rom", + "name": "Strauss, Sibelius, and More : Complete ... Parts to 50 Orchestral Masterworks on CD-ROM", + "release_date": "2003-01-01", + "developers": [], + "publishers": [ + "Hal Leonard" + ], + "operating_systems": [ + "Windows 95" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135488461" + ], + "created_at": "2026-07-10T10:12:43.223219", + "updated_at": "2026-07-10T10:12:43.223219", + "url": "/v1/software/strauss-sibelius-and-more-complete-parts-to-50-orchestral-masterworks-on-cd-rom" +} diff --git a/site/public/v1/software/strawberry-q132717308/index.json b/site/public/v1/software/strawberry-q132717308/index.json new file mode 100644 index 000000000000..5e5c28bbd01c --- /dev/null +++ b/site/public/v1/software/strawberry-q132717308/index.json @@ -0,0 +1,19 @@ +{ + "id": 9709, + "slug": "strawberry-q132717308", + "name": "Strawberry", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q132717308" + ], + "created_at": "2026-07-10T10:12:43.224220", + "updated_at": "2026-07-10T10:12:43.224220", + "url": "/v1/software/strawberry-q132717308" +} diff --git a/site/public/v1/software/strawberry/index.json b/site/public/v1/software/strawberry/index.json new file mode 100644 index 000000000000..5c18359616af --- /dev/null +++ b/site/public/v1/software/strawberry/index.json @@ -0,0 +1,23 @@ +{ + "id": 9710, + "slug": "strawberry", + "name": "Strawberry", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Unix-like operating system", + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q104600447" + ], + "created_at": "2026-07-10T10:12:43.224220", + "updated_at": "2026-07-10T10:12:43.224220", + "url": "/v1/software/strawberry" +} diff --git a/site/public/v1/software/streamer/index.json b/site/public/v1/software/streamer/index.json new file mode 100644 index 000000000000..a809f030baf3 --- /dev/null +++ b/site/public/v1/software/streamer/index.json @@ -0,0 +1,19 @@ +{ + "id": 9711, + "slug": "streamer", + "name": "Streamer", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7622680" + ], + "created_at": "2026-07-10T10:12:43.224220", + "updated_at": "2026-07-10T10:12:43.224220", + "url": "/v1/software/streamer" +} diff --git a/site/public/v1/software/streamfab/index.json b/site/public/v1/software/streamfab/index.json new file mode 100644 index 000000000000..fdfdd11bb5c7 --- /dev/null +++ b/site/public/v1/software/streamfab/index.json @@ -0,0 +1,24 @@ +{ + "id": 9712, + "slug": "streamfab", + "name": "StreamFab", + "release_date": null, + "developers": [ + "Fengtao Software Inc." + ], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135963508" + ], + "created_at": "2026-07-10T10:12:43.225222", + "updated_at": "2026-07-10T10:12:43.225222", + "url": "/v1/software/streamfab" +} diff --git a/site/public/v1/software/streamlabs/index.json b/site/public/v1/software/streamlabs/index.json new file mode 100644 index 000000000000..05a9ce1e42dc --- /dev/null +++ b/site/public/v1/software/streamlabs/index.json @@ -0,0 +1,19 @@ +{ + "id": 9713, + "slug": "streamlabs", + "name": "Streamlabs", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q85803720" + ], + "created_at": "2026-07-10T10:12:43.225222", + "updated_at": "2026-07-10T10:12:43.225222", + "url": "/v1/software/streamlabs" +} diff --git a/site/public/v1/software/streamtuner/index.json b/site/public/v1/software/streamtuner/index.json new file mode 100644 index 000000000000..91acb6fadda6 --- /dev/null +++ b/site/public/v1/software/streamtuner/index.json @@ -0,0 +1,19 @@ +{ + "id": 9714, + "slug": "streamtuner", + "name": "Streamtuner", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3975934" + ], + "created_at": "2026-07-10T10:12:43.225222", + "updated_at": "2026-07-10T10:12:43.225222", + "url": "/v1/software/streamtuner" +} diff --git a/site/public/v1/software/street-finder/index.json b/site/public/v1/software/street-finder/index.json new file mode 100644 index 000000000000..4eb35eebe91c --- /dev/null +++ b/site/public/v1/software/street-finder/index.json @@ -0,0 +1,19 @@ +{ + "id": 9715, + "slug": "street-finder", + "name": "Street Finder", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139761998" + ], + "created_at": "2026-07-10T10:12:43.226220", + "updated_at": "2026-07-10T10:12:43.226220", + "url": "/v1/software/street-finder" +} diff --git a/site/public/v1/software/strelka/index.json b/site/public/v1/software/strelka/index.json new file mode 100644 index 000000000000..40b8eb0375d3 --- /dev/null +++ b/site/public/v1/software/strelka/index.json @@ -0,0 +1,23 @@ +{ + "id": 9716, + "slug": "strelka", + "name": "Strelka", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "open-source software" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4050235" + ], + "created_at": "2026-07-10T10:12:43.226220", + "updated_at": "2026-07-10T10:12:43.226220", + "url": "/v1/software/strelka" +} diff --git a/site/public/v1/software/stress-reducers/index.json b/site/public/v1/software/stress-reducers/index.json new file mode 100644 index 000000000000..69acefa2ef98 --- /dev/null +++ b/site/public/v1/software/stress-reducers/index.json @@ -0,0 +1,24 @@ +{ + "id": 9717, + "slug": "stress-reducers", + "name": "Stress Reducers", + "release_date": "2000-01-01", + "developers": [ + "Gemtree" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [ + "action game", + "shooter game" + ], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138646276" + ], + "created_at": "2026-07-10T10:12:43.226220", + "updated_at": "2026-07-10T10:12:43.226220", + "url": "/v1/software/stress-reducers" +} diff --git a/site/public/v1/software/stride/index.json b/site/public/v1/software/stride/index.json new file mode 100644 index 000000000000..1c5dae04a162 --- /dev/null +++ b/site/public/v1/software/stride/index.json @@ -0,0 +1,23 @@ +{ + "id": 9718, + "slug": "stride", + "name": "Stride", + "release_date": null, + "developers": [ + "Silicon Studio" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q30588940" + ], + "created_at": "2026-07-10T10:12:43.226220", + "updated_at": "2026-07-10T10:12:43.227220", + "url": "/v1/software/stride" +} diff --git a/site/public/v1/software/strikex/index.json b/site/public/v1/software/strikex/index.json new file mode 100644 index 000000000000..4c6b9ca6a398 --- /dev/null +++ b/site/public/v1/software/strikex/index.json @@ -0,0 +1,19 @@ +{ + "id": 9719, + "slug": "strikex", + "name": "StrikeX", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q114457828" + ], + "created_at": "2026-07-10T10:12:43.227220", + "updated_at": "2026-07-10T10:12:43.227220", + "url": "/v1/software/strikex" +} diff --git a/site/public/v1/software/strips/index.json b/site/public/v1/software/strips/index.json new file mode 100644 index 000000000000..b7e6d290d7fb --- /dev/null +++ b/site/public/v1/software/strips/index.json @@ -0,0 +1,22 @@ +{ + "id": 9720, + "slug": "strips", + "name": "STRIPS", + "release_date": null, + "developers": [ + "Nils John Nilsson", + "Richard Fikes" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q996052" + ], + "created_at": "2026-07-10T10:12:43.227220", + "updated_at": "2026-07-10T10:12:43.227220", + "url": "/v1/software/strips" +} diff --git a/site/public/v1/software/strix/index.json b/site/public/v1/software/strix/index.json new file mode 100644 index 000000000000..59385bc954f9 --- /dev/null +++ b/site/public/v1/software/strix/index.json @@ -0,0 +1,19 @@ +{ + "id": 9721, + "slug": "strix", + "name": "Strix", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140421515" + ], + "created_at": "2026-07-10T10:12:43.227220", + "updated_at": "2026-07-10T10:12:43.227220", + "url": "/v1/software/strix" +} diff --git a/site/public/v1/software/strixdb/index.json b/site/public/v1/software/strixdb/index.json new file mode 100644 index 000000000000..d2e90924cc43 --- /dev/null +++ b/site/public/v1/software/strixdb/index.json @@ -0,0 +1,19 @@ +{ + "id": 9722, + "slug": "strixdb", + "name": "StrixDB", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3500479" + ], + "created_at": "2026-07-10T10:12:43.228220", + "updated_at": "2026-07-10T10:12:43.228220", + "url": "/v1/software/strixdb" +} diff --git a/site/public/v1/software/structiq/index.json b/site/public/v1/software/structiq/index.json new file mode 100644 index 000000000000..67d4e89a9fcc --- /dev/null +++ b/site/public/v1/software/structiq/index.json @@ -0,0 +1,25 @@ +{ + "id": 9723, + "slug": "structiq", + "name": "StructIQ", + "release_date": null, + "developers": [ + "iCube Logics" + ], + "publishers": [ + "iCube Logics" + ], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [ + "Document Management Solutions" + ], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139373073" + ], + "created_at": "2026-07-10T10:12:43.228220", + "updated_at": "2026-07-10T10:12:43.228220", + "url": "/v1/software/structiq" +} diff --git a/site/public/v1/software/structure-sequence-and-organization/index.json b/site/public/v1/software/structure-sequence-and-organization/index.json new file mode 100644 index 000000000000..60c26436c717 --- /dev/null +++ b/site/public/v1/software/structure-sequence-and-organization/index.json @@ -0,0 +1,19 @@ +{ + "id": 9724, + "slug": "structure-sequence-and-organization", + "name": "structure, sequence and organization", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q13515735" + ], + "created_at": "2026-07-10T10:12:43.228220", + "updated_at": "2026-07-10T10:12:43.228220", + "url": "/v1/software/structure-sequence-and-organization" +} diff --git a/site/public/v1/software/structure/index.json b/site/public/v1/software/structure/index.json new file mode 100644 index 000000000000..da35d658b38e --- /dev/null +++ b/site/public/v1/software/structure/index.json @@ -0,0 +1,19 @@ +{ + "id": 9725, + "slug": "structure", + "name": "STRUCTURE", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112231465" + ], + "created_at": "2026-07-10T10:12:43.229220", + "updated_at": "2026-07-10T10:12:43.229220", + "url": "/v1/software/structure" +} diff --git a/site/public/v1/software/stuartyeates-oai-pmh-list-initial-release/index.json b/site/public/v1/software/stuartyeates-oai-pmh-list-initial-release/index.json new file mode 100644 index 000000000000..aaf34291f4ee --- /dev/null +++ b/site/public/v1/software/stuartyeates-oai-pmh-list-initial-release/index.json @@ -0,0 +1,19 @@ +{ + "id": 9726, + "slug": "stuartyeates-oai-pmh-list-initial-release", + "name": "stuartyeates/oai-pmh-list: initial release", + "release_date": "2022-01-25", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126736804" + ], + "created_at": "2026-07-10T10:12:43.229220", + "updated_at": "2026-07-10T10:12:43.229220", + "url": "/v1/software/stuartyeates-oai-pmh-list-initial-release" +} diff --git a/site/public/v1/software/student/index.json b/site/public/v1/software/student/index.json new file mode 100644 index 000000000000..4abdb55d659c --- /dev/null +++ b/site/public/v1/software/student/index.json @@ -0,0 +1,19 @@ +{ + "id": 9727, + "slug": "student", + "name": "STUDENT", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7394857" + ], + "created_at": "2026-07-10T10:12:43.229220", + "updated_at": "2026-07-10T10:12:43.229220", + "url": "/v1/software/student" +} diff --git a/site/public/v1/software/studentignite/index.json b/site/public/v1/software/studentignite/index.json new file mode 100644 index 000000000000..dc7e190a69dd --- /dev/null +++ b/site/public/v1/software/studentignite/index.json @@ -0,0 +1,21 @@ +{ + "id": 9728, + "slug": "studentignite", + "name": "StudentIgnite", + "release_date": null, + "developers": [], + "publishers": [ + "Course Finder Group" + ], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138846365" + ], + "created_at": "2026-07-10T10:12:43.230220", + "updated_at": "2026-07-10T10:12:43.230220", + "url": "/v1/software/studentignite" +} diff --git a/site/public/v1/software/studierfenster/index.json b/site/public/v1/software/studierfenster/index.json new file mode 100644 index 000000000000..e64d8228f1ac --- /dev/null +++ b/site/public/v1/software/studierfenster/index.json @@ -0,0 +1,21 @@ +{ + "id": 9729, + "slug": "studierfenster", + "name": "StudierFenster", + "release_date": null, + "developers": [ + "Institute of Visual Computing" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q97095933" + ], + "created_at": "2026-07-10T10:12:43.230220", + "updated_at": "2026-07-10T10:12:43.230220", + "url": "/v1/software/studierfenster" +} diff --git a/site/public/v1/software/studiomini/index.json b/site/public/v1/software/studiomini/index.json new file mode 100644 index 000000000000..bca62ffa9103 --- /dev/null +++ b/site/public/v1/software/studiomini/index.json @@ -0,0 +1,19 @@ +{ + "id": 9730, + "slug": "studiomini", + "name": "StudioMini", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7628115" + ], + "created_at": "2026-07-10T10:12:43.230220", + "updated_at": "2026-07-10T10:12:43.230220", + "url": "/v1/software/studiomini" +} diff --git a/site/public/v1/software/studiopartner/index.json b/site/public/v1/software/studiopartner/index.json new file mode 100644 index 000000000000..14714aea7114 --- /dev/null +++ b/site/public/v1/software/studiopartner/index.json @@ -0,0 +1,19 @@ +{ + "id": 9731, + "slug": "studiopartner", + "name": "StudioPartner", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140376024" + ], + "created_at": "2026-07-10T10:12:43.231294", + "updated_at": "2026-07-10T10:12:43.231294", + "url": "/v1/software/studiopartner" +} diff --git a/site/public/v1/software/studybuddy/index.json b/site/public/v1/software/studybuddy/index.json new file mode 100644 index 000000000000..e5775d559e86 --- /dev/null +++ b/site/public/v1/software/studybuddy/index.json @@ -0,0 +1,19 @@ +{ + "id": 9732, + "slug": "studybuddy", + "name": "StudyBuddy", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138807417" + ], + "created_at": "2026-07-10T10:12:43.231294", + "updated_at": "2026-07-10T10:12:43.231294", + "url": "/v1/software/studybuddy" +} diff --git a/site/public/v1/software/studywiz/index.json b/site/public/v1/software/studywiz/index.json new file mode 100644 index 000000000000..d86c664f378b --- /dev/null +++ b/site/public/v1/software/studywiz/index.json @@ -0,0 +1,19 @@ +{ + "id": 9733, + "slug": "studywiz", + "name": "Studywiz", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7628428" + ], + "created_at": "2026-07-10T10:12:43.231294", + "updated_at": "2026-07-10T10:12:43.231294", + "url": "/v1/software/studywiz" +} diff --git a/site/public/v1/software/stuffit-expander/index.json b/site/public/v1/software/stuffit-expander/index.json new file mode 100644 index 000000000000..24c44e09a0dc --- /dev/null +++ b/site/public/v1/software/stuffit-expander/index.json @@ -0,0 +1,23 @@ +{ + "id": 9734, + "slug": "stuffit-expander", + "name": "StuffIt Expander", + "release_date": null, + "developers": [ + "Smith Micro Software" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2739067" + ], + "created_at": "2026-07-10T10:12:43.231294", + "updated_at": "2026-07-10T10:12:43.231294", + "url": "/v1/software/stuffit-expander" +} diff --git a/site/public/v1/software/stump/index.json b/site/public/v1/software/stump/index.json new file mode 100644 index 000000000000..6923fe6f4283 --- /dev/null +++ b/site/public/v1/software/stump/index.json @@ -0,0 +1,19 @@ +{ + "id": 9735, + "slug": "stump", + "name": "Stump", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76184218" + ], + "created_at": "2026-07-10T10:12:43.232332", + "updated_at": "2026-07-10T10:12:43.232332", + "url": "/v1/software/stump" +} diff --git a/site/public/v1/software/stumpwm-contrib/index.json b/site/public/v1/software/stumpwm-contrib/index.json new file mode 100644 index 000000000000..00203eb208ca --- /dev/null +++ b/site/public/v1/software/stumpwm-contrib/index.json @@ -0,0 +1,19 @@ +{ + "id": 9736, + "slug": "stumpwm-contrib", + "name": "stumpwm-contrib", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975503" + ], + "created_at": "2026-07-10T10:12:43.232332", + "updated_at": "2026-07-10T10:12:43.232332", + "url": "/v1/software/stumpwm-contrib" +} diff --git a/site/public/v1/software/stv-player/index.json b/site/public/v1/software/stv-player/index.json new file mode 100644 index 000000000000..4f2d98c3ffec --- /dev/null +++ b/site/public/v1/software/stv-player/index.json @@ -0,0 +1,21 @@ +{ + "id": 9737, + "slug": "stv-player", + "name": "STV Player", + "release_date": "2009-07-01", + "developers": [ + "STV Group" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7394873" + ], + "created_at": "2026-07-10T10:12:43.233341", + "updated_at": "2026-07-10T10:12:43.233341", + "url": "/v1/software/stv-player" +} diff --git a/site/public/v1/software/stxxl/index.json b/site/public/v1/software/stxxl/index.json new file mode 100644 index 000000000000..88dc30a2513f --- /dev/null +++ b/site/public/v1/software/stxxl/index.json @@ -0,0 +1,23 @@ +{ + "id": 9738, + "slug": "stxxl", + "name": "stxxl", + "release_date": null, + "developers": [ + "Roman Dementiev" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Boost Software License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117212030" + ], + "created_at": "2026-07-10T10:12:43.233341", + "updated_at": "2026-07-10T10:12:43.233341", + "url": "/v1/software/stxxl" +} diff --git a/site/public/v1/software/stykz/index.json b/site/public/v1/software/stykz/index.json new file mode 100644 index 000000000000..6b4e842d1de0 --- /dev/null +++ b/site/public/v1/software/stykz/index.json @@ -0,0 +1,19 @@ +{ + "id": 9739, + "slug": "stykz", + "name": "Stykz", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4050289" + ], + "created_at": "2026-07-10T10:12:43.233341", + "updated_at": "2026-07-10T10:12:43.233341", + "url": "/v1/software/stykz" +} diff --git a/site/public/v1/software/stylecop/index.json b/site/public/v1/software/stylecop/index.json new file mode 100644 index 000000000000..5bc25f91d301 --- /dev/null +++ b/site/public/v1/software/stylecop/index.json @@ -0,0 +1,19 @@ +{ + "id": 9740, + "slug": "stylecop", + "name": "StyleCop", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7629378" + ], + "created_at": "2026-07-10T10:12:43.233341", + "updated_at": "2026-07-10T10:12:43.233341", + "url": "/v1/software/stylecop" +} diff --git a/site/public/v1/software/stylexp/index.json b/site/public/v1/software/stylexp/index.json new file mode 100644 index 000000000000..af8912fe201d --- /dev/null +++ b/site/public/v1/software/stylexp/index.json @@ -0,0 +1,19 @@ +{ + "id": 9741, + "slug": "stylexp", + "name": "StyleXP", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q843865" + ], + "created_at": "2026-07-10T10:12:43.234228", + "updated_at": "2026-07-10T10:12:43.234228", + "url": "/v1/software/stylexp" +} diff --git a/site/public/v1/software/stylingcv/index.json b/site/public/v1/software/stylingcv/index.json new file mode 100644 index 000000000000..421ed96a186c --- /dev/null +++ b/site/public/v1/software/stylingcv/index.json @@ -0,0 +1,23 @@ +{ + "id": 9742, + "slug": "stylingcv", + "name": "StylingCV", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "web browser" + ], + "programming_languages": [], + "licenses": [ + "freemium" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138803241" + ], + "created_at": "2026-07-10T10:12:43.234228", + "updated_at": "2026-07-10T10:12:43.234228", + "url": "/v1/software/stylingcv" +} diff --git a/site/public/v1/software/stylo/index.json b/site/public/v1/software/stylo/index.json new file mode 100644 index 000000000000..efb6e230c7b9 --- /dev/null +++ b/site/public/v1/software/stylo/index.json @@ -0,0 +1,23 @@ +{ + "id": 9743, + "slug": "stylo", + "name": "stylo()", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "R" + ], + "licenses": [ + "GNU General Public License, version 3.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123010085" + ], + "created_at": "2026-07-10T10:12:43.234228", + "updated_at": "2026-07-10T10:12:43.234228", + "url": "/v1/software/stylo" +} diff --git a/site/public/v1/software/suacomp/index.json b/site/public/v1/software/suacomp/index.json new file mode 100644 index 000000000000..541a3785d7cf --- /dev/null +++ b/site/public/v1/software/suacomp/index.json @@ -0,0 +1,19 @@ +{ + "id": 9744, + "slug": "suacomp", + "name": "suacomp", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975504" + ], + "created_at": "2026-07-10T10:12:43.235220", + "updated_at": "2026-07-10T10:12:43.235220", + "url": "/v1/software/suacomp" +} diff --git a/site/public/v1/software/suanshu-numerical-library/index.json b/site/public/v1/software/suanshu-numerical-library/index.json new file mode 100644 index 000000000000..1574c16d88c9 --- /dev/null +++ b/site/public/v1/software/suanshu-numerical-library/index.json @@ -0,0 +1,19 @@ +{ + "id": 9745, + "slug": "suanshu-numerical-library", + "name": "SuanShu numerical library", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108532367" + ], + "created_at": "2026-07-10T10:12:43.235220", + "updated_at": "2026-07-10T10:12:43.235220", + "url": "/v1/software/suanshu-numerical-library" +} diff --git a/site/public/v1/software/sublime-merge/index.json b/site/public/v1/software/sublime-merge/index.json new file mode 100644 index 000000000000..b17ec556f8e2 --- /dev/null +++ b/site/public/v1/software/sublime-merge/index.json @@ -0,0 +1,26 @@ +{ + "id": 9746, + "slug": "sublime-merge", + "name": "Sublime Merge", + "release_date": "2018-09-20", + "developers": [ + "Sublime HQ" + ], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112301215" + ], + "created_at": "2026-07-10T10:12:43.235220", + "updated_at": "2026-07-10T10:12:43.235220", + "url": "/v1/software/sublime-merge" +} diff --git a/site/public/v1/software/sublime-text/index.json b/site/public/v1/software/sublime-text/index.json new file mode 100644 index 000000000000..e3e4507ec157 --- /dev/null +++ b/site/public/v1/software/sublime-text/index.json @@ -0,0 +1,29 @@ +{ + "id": 9747, + "slug": "sublime-text", + "name": "Sublime Text", + "release_date": "2008-01-18", + "developers": [ + "Sublime HQ", + "Jon Skinner" + ], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [ + "Python" + ], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q267193" + ], + "created_at": "2026-07-10T10:12:43.235220", + "updated_at": "2026-07-10T10:12:43.235220", + "url": "/v1/software/sublime-text" +} diff --git a/site/public/v1/software/subliminal/index.json b/site/public/v1/software/subliminal/index.json new file mode 100644 index 000000000000..851977d1acbc --- /dev/null +++ b/site/public/v1/software/subliminal/index.json @@ -0,0 +1,21 @@ +{ + "id": 9748, + "slug": "subliminal", + "name": "subliminal", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975505" + ], + "created_at": "2026-07-10T10:12:43.236220", + "updated_at": "2026-07-10T10:12:43.236220", + "url": "/v1/software/subliminal" +} diff --git a/site/public/v1/software/substance-designer/index.json b/site/public/v1/software/substance-designer/index.json new file mode 100644 index 000000000000..b863307aa3f3 --- /dev/null +++ b/site/public/v1/software/substance-designer/index.json @@ -0,0 +1,19 @@ +{ + "id": 9749, + "slug": "substance-designer", + "name": "Substance Designer", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q20072431" + ], + "created_at": "2026-07-10T10:12:43.236220", + "updated_at": "2026-07-10T10:12:43.236220", + "url": "/v1/software/substance-designer" +} diff --git a/site/public/v1/software/subtle/index.json b/site/public/v1/software/subtle/index.json new file mode 100644 index 000000000000..7a6227e1721b --- /dev/null +++ b/site/public/v1/software/subtle/index.json @@ -0,0 +1,19 @@ +{ + "id": 9750, + "slug": "subtle", + "name": "Subtle", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4050306" + ], + "created_at": "2026-07-10T10:12:43.236220", + "updated_at": "2026-07-10T10:12:43.236220", + "url": "/v1/software/subtle" +} diff --git a/site/public/v1/software/sucana/index.json b/site/public/v1/software/sucana/index.json new file mode 100644 index 000000000000..75c11e28cb72 --- /dev/null +++ b/site/public/v1/software/sucana/index.json @@ -0,0 +1,19 @@ +{ + "id": 9751, + "slug": "sucana", + "name": "Sucana", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138750545" + ], + "created_at": "2026-07-10T10:12:43.237220", + "updated_at": "2026-07-10T10:12:43.237220", + "url": "/v1/software/sucana" +} diff --git a/site/public/v1/software/sugarscape/index.json b/site/public/v1/software/sugarscape/index.json new file mode 100644 index 000000000000..da64056f45d3 --- /dev/null +++ b/site/public/v1/software/sugarscape/index.json @@ -0,0 +1,19 @@ +{ + "id": 9752, + "slug": "sugarscape", + "name": "Sugarscape", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7635046" + ], + "created_at": "2026-07-10T10:12:43.237220", + "updated_at": "2026-07-10T10:12:43.237220", + "url": "/v1/software/sugarscape" +} diff --git a/site/public/v1/software/sugarsync/index.json b/site/public/v1/software/sugarsync/index.json new file mode 100644 index 000000000000..1259c4ee4681 --- /dev/null +++ b/site/public/v1/software/sugarsync/index.json @@ -0,0 +1,21 @@ +{ + "id": 9753, + "slug": "sugarsync", + "name": "SugarSync", + "release_date": null, + "developers": [ + "J2 Global" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q641596" + ], + "created_at": "2026-07-10T10:12:43.237220", + "updated_at": "2026-07-10T10:12:43.237220", + "url": "/v1/software/sugarsync" +} diff --git a/site/public/v1/software/suggested-upper-merged-ontology/index.json b/site/public/v1/software/suggested-upper-merged-ontology/index.json new file mode 100644 index 000000000000..dead1062f34e --- /dev/null +++ b/site/public/v1/software/suggested-upper-merged-ontology/index.json @@ -0,0 +1,19 @@ +{ + "id": 9754, + "slug": "suggested-upper-merged-ontology", + "name": "Suggested Upper Merged Ontology", + "release_date": "2000-12-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7635093" + ], + "created_at": "2026-07-10T10:12:43.238220", + "updated_at": "2026-07-10T10:12:43.238220", + "url": "/v1/software/suggested-upper-merged-ontology" +} diff --git a/site/public/v1/software/suitesparse/index.json b/site/public/v1/software/suitesparse/index.json new file mode 100644 index 000000000000..976c70f3e0cd --- /dev/null +++ b/site/public/v1/software/suitesparse/index.json @@ -0,0 +1,19 @@ +{ + "id": 9755, + "slug": "suitesparse", + "name": "SuiteSparse", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121290584" + ], + "created_at": "2026-07-10T10:12:43.238220", + "updated_at": "2026-07-10T10:12:43.238220", + "url": "/v1/software/suitesparse" +} diff --git a/site/public/v1/software/sumi/index.json b/site/public/v1/software/sumi/index.json new file mode 100644 index 000000000000..5207ad773dd5 --- /dev/null +++ b/site/public/v1/software/sumi/index.json @@ -0,0 +1,19 @@ +{ + "id": 9756, + "slug": "sumi", + "name": "Sumi", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2481540" + ], + "created_at": "2026-07-10T10:12:43.239220", + "updated_at": "2026-07-10T10:12:43.239220", + "url": "/v1/software/sumi" +} diff --git a/site/public/v1/software/summon/index.json b/site/public/v1/software/summon/index.json new file mode 100644 index 000000000000..7f71f8d5fd03 --- /dev/null +++ b/site/public/v1/software/summon/index.json @@ -0,0 +1,19 @@ +{ + "id": 9757, + "slug": "summon", + "name": "Summon", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q114049683" + ], + "created_at": "2026-07-10T10:12:43.239220", + "updated_at": "2026-07-10T10:12:43.239220", + "url": "/v1/software/summon" +} diff --git a/site/public/v1/software/sumo-paint/index.json b/site/public/v1/software/sumo-paint/index.json new file mode 100644 index 000000000000..5701dbaa8beb --- /dev/null +++ b/site/public/v1/software/sumo-paint/index.json @@ -0,0 +1,21 @@ +{ + "id": 9758, + "slug": "sumo-paint", + "name": "Sumo Paint", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "ActionScript" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4355905" + ], + "created_at": "2026-07-10T10:12:43.239220", + "updated_at": "2026-07-10T10:12:43.239220", + "url": "/v1/software/sumo-paint" +} diff --git a/site/public/v1/software/sun-diagram/index.json b/site/public/v1/software/sun-diagram/index.json new file mode 100644 index 000000000000..3a83683805d2 --- /dev/null +++ b/site/public/v1/software/sun-diagram/index.json @@ -0,0 +1,23 @@ +{ + "id": 9759, + "slug": "sun-diagram", + "name": "Sun Diagram", + "release_date": null, + "developers": [ + "Febhouse" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [ + "architecture" + ], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138658067" + ], + "created_at": "2026-07-10T10:12:43.239220", + "updated_at": "2026-07-10T10:12:43.239220", + "url": "/v1/software/sun-diagram" +} diff --git a/site/public/v1/software/sun-java-communications-suite/index.json b/site/public/v1/software/sun-java-communications-suite/index.json new file mode 100644 index 000000000000..bb8de3663e65 --- /dev/null +++ b/site/public/v1/software/sun-java-communications-suite/index.json @@ -0,0 +1,23 @@ +{ + "id": 9760, + "slug": "sun-java-communications-suite", + "name": "Sun Java Communications Suite", + "release_date": null, + "developers": [ + "Sun Microsystems" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Java" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3354982" + ], + "created_at": "2026-07-10T10:12:43.240220", + "updated_at": "2026-07-10T10:12:43.240220", + "url": "/v1/software/sun-java-communications-suite" +} diff --git a/site/public/v1/software/sun-java-studio-creator/index.json b/site/public/v1/software/sun-java-studio-creator/index.json new file mode 100644 index 000000000000..d99ec06f49a7 --- /dev/null +++ b/site/public/v1/software/sun-java-studio-creator/index.json @@ -0,0 +1,19 @@ +{ + "id": 9761, + "slug": "sun-java-studio-creator", + "name": "Sun Java Studio Creator", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7638347" + ], + "created_at": "2026-07-10T10:12:43.240220", + "updated_at": "2026-07-10T10:12:43.240220", + "url": "/v1/software/sun-java-studio-creator" +} diff --git a/site/public/v1/software/sun-java-system-access-manager/index.json b/site/public/v1/software/sun-java-system-access-manager/index.json new file mode 100644 index 000000000000..55a2b71a0d1b --- /dev/null +++ b/site/public/v1/software/sun-java-system-access-manager/index.json @@ -0,0 +1,21 @@ +{ + "id": 9762, + "slug": "sun-java-system-access-manager", + "name": "Sun Java System Access Manager", + "release_date": null, + "developers": [ + "Sun Microsystems" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7638348" + ], + "created_at": "2026-07-10T10:12:43.240220", + "updated_at": "2026-07-10T10:12:43.240220", + "url": "/v1/software/sun-java-system-access-manager" +} diff --git a/site/public/v1/software/sun-java-system-web-proxy-server/index.json b/site/public/v1/software/sun-java-system-web-proxy-server/index.json new file mode 100644 index 000000000000..e2b470b9890a --- /dev/null +++ b/site/public/v1/software/sun-java-system-web-proxy-server/index.json @@ -0,0 +1,21 @@ +{ + "id": 9763, + "slug": "sun-java-system-web-proxy-server", + "name": "Sun Java System Web Proxy Server", + "release_date": null, + "developers": [ + "Oracle Corporation" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7638352" + ], + "created_at": "2026-07-10T10:12:43.241308", + "updated_at": "2026-07-10T10:12:43.241308", + "url": "/v1/software/sun-java-system-web-proxy-server" +} diff --git a/site/public/v1/software/sun-java-wireless-toolkit/index.json b/site/public/v1/software/sun-java-wireless-toolkit/index.json new file mode 100644 index 000000000000..b7866e4e2698 --- /dev/null +++ b/site/public/v1/software/sun-java-wireless-toolkit/index.json @@ -0,0 +1,21 @@ +{ + "id": 9764, + "slug": "sun-java-wireless-toolkit", + "name": "Sun Java Wireless Toolkit", + "release_date": null, + "developers": [ + "Sun Microsystems" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4050377" + ], + "created_at": "2026-07-10T10:12:43.241308", + "updated_at": "2026-07-10T10:12:43.241308", + "url": "/v1/software/sun-java-wireless-toolkit" +} diff --git a/site/public/v1/software/sunbelt-personal-firewall/index.json b/site/public/v1/software/sunbelt-personal-firewall/index.json new file mode 100644 index 000000000000..c7a61618a9e8 --- /dev/null +++ b/site/public/v1/software/sunbelt-personal-firewall/index.json @@ -0,0 +1,19 @@ +{ + "id": 9765, + "slug": "sunbelt-personal-firewall", + "name": "Sunbelt Personal Firewall", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1808026" + ], + "created_at": "2026-07-10T10:12:43.241308", + "updated_at": "2026-07-10T10:12:43.241308", + "url": "/v1/software/sunbelt-personal-firewall" +} diff --git a/site/public/v1/software/sunflow/index.json b/site/public/v1/software/sunflow/index.json new file mode 100644 index 000000000000..f965633b0277 --- /dev/null +++ b/site/public/v1/software/sunflow/index.json @@ -0,0 +1,23 @@ +{ + "id": 9766, + "slug": "sunflow", + "name": "Sunflow", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Java" + ], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4050391" + ], + "created_at": "2026-07-10T10:12:43.241308", + "updated_at": "2026-07-10T10:12:43.241308", + "url": "/v1/software/sunflow" +} diff --git a/site/public/v1/software/sunrise-calendar/index.json b/site/public/v1/software/sunrise-calendar/index.json new file mode 100644 index 000000000000..2d688625fb66 --- /dev/null +++ b/site/public/v1/software/sunrise-calendar/index.json @@ -0,0 +1,25 @@ +{ + "id": 9767, + "slug": "sunrise-calendar", + "name": "Sunrise Calendar", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [ + "macOS" + ], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q19877531" + ], + "created_at": "2026-07-10T10:12:43.242318", + "updated_at": "2026-07-10T10:12:43.242318", + "url": "/v1/software/sunrise-calendar" +} diff --git a/site/public/v1/software/super-cloudbuilt/index.json b/site/public/v1/software/super-cloudbuilt/index.json new file mode 100644 index 000000000000..2c3f0e53c451 --- /dev/null +++ b/site/public/v1/software/super-cloudbuilt/index.json @@ -0,0 +1,19 @@ +{ + "id": 9768, + "slug": "super-cloudbuilt", + "name": "Super Cloudbuilt", + "release_date": "2017-07-25", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q89408847" + ], + "created_at": "2026-07-10T10:12:43.242318", + "updated_at": "2026-07-10T10:12:43.242318", + "url": "/v1/software/super-cloudbuilt" +} diff --git a/site/public/v1/software/super-flexible/index.json b/site/public/v1/software/super-flexible/index.json new file mode 100644 index 000000000000..3413fba60d99 --- /dev/null +++ b/site/public/v1/software/super-flexible/index.json @@ -0,0 +1,22 @@ +{ + "id": 9769, + "slug": "super-flexible", + "name": "Super Flexible", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17137940" + ], + "created_at": "2026-07-10T10:12:43.242318", + "updated_at": "2026-07-10T10:12:43.242318", + "url": "/v1/software/super-flexible" +} diff --git a/site/public/v1/software/super-pi/index.json b/site/public/v1/software/super-pi/index.json new file mode 100644 index 000000000000..cdaf2b97e644 --- /dev/null +++ b/site/public/v1/software/super-pi/index.json @@ -0,0 +1,28 @@ +{ + "id": 9770, + "slug": "super-pi", + "name": "Super PI", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "IRIX", + "HP-UX", + "IBM AIX", + "Berkeley Software Distribution", + "FreeBSD", + "Solaris", + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1786021" + ], + "created_at": "2026-07-10T10:12:43.243316", + "updated_at": "2026-07-10T10:12:43.243316", + "url": "/v1/software/super-pi" +} diff --git a/site/public/v1/software/super-productivity/index.json b/site/public/v1/software/super-productivity/index.json new file mode 100644 index 000000000000..6316f8ad7a60 --- /dev/null +++ b/site/public/v1/software/super-productivity/index.json @@ -0,0 +1,21 @@ +{ + "id": 9771, + "slug": "super-productivity", + "name": "Super Productivity", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131751982" + ], + "created_at": "2026-07-10T10:12:43.243316", + "updated_at": "2026-07-10T10:12:43.243316", + "url": "/v1/software/super-productivity" +} diff --git a/site/public/v1/software/super/index.json b/site/public/v1/software/super/index.json new file mode 100644 index 000000000000..ab7494d483e9 --- /dev/null +++ b/site/public/v1/software/super/index.json @@ -0,0 +1,21 @@ +{ + "id": 9772, + "slug": "super", + "name": "SUPER", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "adware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q649316" + ], + "created_at": "2026-07-10T10:12:43.243316", + "updated_at": "2026-07-10T10:12:43.243316", + "url": "/v1/software/super" +} diff --git a/site/public/v1/software/superantispyware/index.json b/site/public/v1/software/superantispyware/index.json new file mode 100644 index 000000000000..553ad04476ee --- /dev/null +++ b/site/public/v1/software/superantispyware/index.json @@ -0,0 +1,19 @@ +{ + "id": 9773, + "slug": "superantispyware", + "name": "SUPERAntiSpyware", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7395022" + ], + "created_at": "2026-07-10T10:12:43.243316", + "updated_at": "2026-07-10T10:12:43.243316", + "url": "/v1/software/superantispyware" +} diff --git a/site/public/v1/software/superbase-database/index.json b/site/public/v1/software/superbase-database/index.json new file mode 100644 index 000000000000..084cdd4cebb9 --- /dev/null +++ b/site/public/v1/software/superbase-database/index.json @@ -0,0 +1,19 @@ +{ + "id": 9774, + "slug": "superbase-database", + "name": "Superbase database", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2367280" + ], + "created_at": "2026-07-10T10:12:43.244306", + "updated_at": "2026-07-10T10:12:43.244306", + "url": "/v1/software/superbase-database" +} diff --git a/site/public/v1/software/superbbs/index.json b/site/public/v1/software/superbbs/index.json new file mode 100644 index 000000000000..5d12b2d86b13 --- /dev/null +++ b/site/public/v1/software/superbbs/index.json @@ -0,0 +1,21 @@ +{ + "id": 9775, + "slug": "superbbs", + "name": "SuperBBS", + "release_date": "1990-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "shareware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7641969" + ], + "created_at": "2026-07-10T10:12:43.244306", + "updated_at": "2026-07-10T10:12:43.244306", + "url": "/v1/software/superbbs" +} diff --git a/site/public/v1/software/supercell-wx/index.json b/site/public/v1/software/supercell-wx/index.json new file mode 100644 index 000000000000..276483e477f6 --- /dev/null +++ b/site/public/v1/software/supercell-wx/index.json @@ -0,0 +1,21 @@ +{ + "id": 9776, + "slug": "supercell-wx", + "name": "Supercell Wx", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130308325" + ], + "created_at": "2026-07-10T10:12:43.245305", + "updated_at": "2026-07-10T10:12:43.245305", + "url": "/v1/software/supercell-wx" +} diff --git a/site/public/v1/software/superfastmatch/index.json b/site/public/v1/software/superfastmatch/index.json new file mode 100644 index 000000000000..9d0b2fe06941 --- /dev/null +++ b/site/public/v1/software/superfastmatch/index.json @@ -0,0 +1,19 @@ +{ + "id": 9777, + "slug": "superfastmatch", + "name": "Superfastmatch", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084604" + ], + "created_at": "2026-07-10T10:12:43.245305", + "updated_at": "2026-07-10T10:12:43.245305", + "url": "/v1/software/superfastmatch" +} diff --git a/site/public/v1/software/superhighway84/index.json b/site/public/v1/software/superhighway84/index.json new file mode 100644 index 000000000000..0e6d394fee75 --- /dev/null +++ b/site/public/v1/software/superhighway84/index.json @@ -0,0 +1,23 @@ +{ + "id": 9778, + "slug": "superhighway84", + "name": "Superhighway84", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Go" + ], + "licenses": [ + "GNU General Public License, version 3.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120135087" + ], + "created_at": "2026-07-10T10:12:43.245305", + "updated_at": "2026-07-10T10:12:43.245305", + "url": "/v1/software/superhighway84" +} diff --git a/site/public/v1/software/superlu-dist/index.json b/site/public/v1/software/superlu-dist/index.json new file mode 100644 index 000000000000..359f1854adb5 --- /dev/null +++ b/site/public/v1/software/superlu-dist/index.json @@ -0,0 +1,19 @@ +{ + "id": 9779, + "slug": "superlu-dist", + "name": "SuperLU-DIST", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123190841" + ], + "created_at": "2026-07-10T10:12:43.245305", + "updated_at": "2026-07-10T10:12:43.245305", + "url": "/v1/software/superlu-dist" +} diff --git a/site/public/v1/software/superlu/index.json b/site/public/v1/software/superlu/index.json new file mode 100644 index 000000000000..8b0280715c45 --- /dev/null +++ b/site/public/v1/software/superlu/index.json @@ -0,0 +1,19 @@ +{ + "id": 9780, + "slug": "superlu", + "name": "superlu", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975506" + ], + "created_at": "2026-07-10T10:12:43.246280", + "updated_at": "2026-07-10T10:12:43.246280", + "url": "/v1/software/superlu" +} diff --git a/site/public/v1/software/supermemo/index.json b/site/public/v1/software/supermemo/index.json new file mode 100644 index 000000000000..1eddf7451049 --- /dev/null +++ b/site/public/v1/software/supermemo/index.json @@ -0,0 +1,19 @@ +{ + "id": 9781, + "slug": "supermemo", + "name": "SuperMemo", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3099491" + ], + "created_at": "2026-07-10T10:12:43.246280", + "updated_at": "2026-07-10T10:12:43.246280", + "url": "/v1/software/supermemo" +} diff --git a/site/public/v1/software/superpowers/index.json b/site/public/v1/software/superpowers/index.json new file mode 100644 index 000000000000..1f54aa9b9373 --- /dev/null +++ b/site/public/v1/software/superpowers/index.json @@ -0,0 +1,19 @@ +{ + "id": 9782, + "slug": "superpowers", + "name": "Superpowers", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137381915" + ], + "created_at": "2026-07-10T10:12:43.247308", + "updated_at": "2026-07-10T10:12:43.247308", + "url": "/v1/software/superpowers" +} diff --git a/site/public/v1/software/superscan/index.json b/site/public/v1/software/superscan/index.json new file mode 100644 index 000000000000..187d0efe19df --- /dev/null +++ b/site/public/v1/software/superscan/index.json @@ -0,0 +1,21 @@ +{ + "id": 9783, + "slug": "superscan", + "name": "Superscan", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7644125" + ], + "created_at": "2026-07-10T10:12:43.247308", + "updated_at": "2026-07-10T10:12:43.247308", + "url": "/v1/software/superscan" +} diff --git a/site/public/v1/software/superswitcher/index.json b/site/public/v1/software/superswitcher/index.json new file mode 100644 index 000000000000..6fa00fe0bb5c --- /dev/null +++ b/site/public/v1/software/superswitcher/index.json @@ -0,0 +1,23 @@ +{ + "id": 9784, + "slug": "superswitcher", + "name": "superswitcher", + "release_date": null, + "developers": [ + "Nigel Tao" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "GNU General Public License, version 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q70078544" + ], + "created_at": "2026-07-10T10:12:43.247308", + "updated_at": "2026-07-10T10:12:43.247308", + "url": "/v1/software/superswitcher" +} diff --git a/site/public/v1/software/supportworks/index.json b/site/public/v1/software/supportworks/index.json new file mode 100644 index 000000000000..a785bfebabbe --- /dev/null +++ b/site/public/v1/software/supportworks/index.json @@ -0,0 +1,19 @@ +{ + "id": 9785, + "slug": "supportworks", + "name": "Supportworks", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7644633" + ], + "created_at": "2026-07-10T10:12:43.247308", + "updated_at": "2026-07-10T10:12:43.247308", + "url": "/v1/software/supportworks" +} diff --git a/site/public/v1/software/supreme-beats-a-percussion-library-by-bashiri-johnson/index.json b/site/public/v1/software/supreme-beats-a-percussion-library-by-bashiri-johnson/index.json new file mode 100644 index 000000000000..2588cf283f88 --- /dev/null +++ b/site/public/v1/software/supreme-beats-a-percussion-library-by-bashiri-johnson/index.json @@ -0,0 +1,19 @@ +{ + "id": 9786, + "slug": "supreme-beats-a-percussion-library-by-bashiri-johnson", + "name": "Supreme Beats : A Percussion Library by Bashiri Johnson", + "release_date": "1995-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135494400" + ], + "created_at": "2026-07-10T10:12:43.248221", + "updated_at": "2026-07-10T10:12:43.248221", + "url": "/v1/software/supreme-beats-a-percussion-library-by-bashiri-johnson" +} diff --git a/site/public/v1/software/surface-evolver/index.json b/site/public/v1/software/surface-evolver/index.json new file mode 100644 index 000000000000..dd29432a4a25 --- /dev/null +++ b/site/public/v1/software/surface-evolver/index.json @@ -0,0 +1,24 @@ +{ + "id": 9787, + "slug": "surface-evolver", + "name": "Surface Evolver", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7645920" + ], + "created_at": "2026-07-10T10:12:43.248221", + "updated_at": "2026-07-10T10:12:43.248221", + "url": "/v1/software/surface-evolver" +} diff --git a/site/public/v1/software/surfshark/index.json b/site/public/v1/software/surfshark/index.json new file mode 100644 index 000000000000..05ff17adfd0a --- /dev/null +++ b/site/public/v1/software/surfshark/index.json @@ -0,0 +1,23 @@ +{ + "id": 9788, + "slug": "surfshark", + "name": "Surfshark", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "iOS", + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105102519" + ], + "created_at": "2026-07-10T10:12:43.248221", + "updated_at": "2026-07-10T10:12:43.248221", + "url": "/v1/software/surfshark" +} diff --git a/site/public/v1/software/surgical-segment-navigator/index.json b/site/public/v1/software/surgical-segment-navigator/index.json new file mode 100644 index 000000000000..6ac4ce5cb369 --- /dev/null +++ b/site/public/v1/software/surgical-segment-navigator/index.json @@ -0,0 +1,21 @@ +{ + "id": 9789, + "slug": "surgical-segment-navigator", + "name": "Surgical segment navigator", + "release_date": null, + "developers": [ + "Carl Zeiss AG" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2368534" + ], + "created_at": "2026-07-10T10:12:43.249219", + "updated_at": "2026-07-10T10:12:43.249219", + "url": "/v1/software/surgical-segment-navigator" +} diff --git a/site/public/v1/software/surround-scm/index.json b/site/public/v1/software/surround-scm/index.json new file mode 100644 index 000000000000..6cf3c1198d2f --- /dev/null +++ b/site/public/v1/software/surround-scm/index.json @@ -0,0 +1,23 @@ +{ + "id": 9790, + "slug": "surround-scm", + "name": "Surround SCM", + "release_date": null, + "developers": [ + "Seapine Software" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7646899" + ], + "created_at": "2026-07-10T10:12:43.249219", + "updated_at": "2026-07-10T10:12:43.249219", + "url": "/v1/software/surround-scm" +} diff --git a/site/public/v1/software/survey-daddy/index.json b/site/public/v1/software/survey-daddy/index.json new file mode 100644 index 000000000000..d97d27b806e9 --- /dev/null +++ b/site/public/v1/software/survey-daddy/index.json @@ -0,0 +1,19 @@ +{ + "id": 9791, + "slug": "survey-daddy", + "name": "Survey Daddy", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084605" + ], + "created_at": "2026-07-10T10:12:43.249219", + "updated_at": "2026-07-10T10:12:43.249219", + "url": "/v1/software/survey-daddy" +} diff --git a/site/public/v1/software/suse-enterprise-storage/index.json b/site/public/v1/software/suse-enterprise-storage/index.json new file mode 100644 index 000000000000..913729ad357f --- /dev/null +++ b/site/public/v1/software/suse-enterprise-storage/index.json @@ -0,0 +1,21 @@ +{ + "id": 9792, + "slug": "suse-enterprise-storage", + "name": "SUSE Enterprise Storage", + "release_date": null, + "developers": [ + "SUSE" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22909188" + ], + "created_at": "2026-07-10T10:12:43.250221", + "updated_at": "2026-07-10T10:12:43.250221", + "url": "/v1/software/suse-enterprise-storage" +} diff --git a/site/public/v1/software/sustainable-communities-tracker/index.json b/site/public/v1/software/sustainable-communities-tracker/index.json new file mode 100644 index 000000000000..a38813fb27b4 --- /dev/null +++ b/site/public/v1/software/sustainable-communities-tracker/index.json @@ -0,0 +1,21 @@ +{ + "id": 9793, + "slug": "sustainable-communities-tracker", + "name": "sustainable-communities-tracker", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127487192" + ], + "created_at": "2026-07-10T10:12:43.250221", + "updated_at": "2026-07-10T10:12:43.250221", + "url": "/v1/software/sustainable-communities-tracker" +} diff --git a/site/public/v1/software/svchost-exe/index.json b/site/public/v1/software/svchost-exe/index.json new file mode 100644 index 000000000000..cde85d4d9d0a --- /dev/null +++ b/site/public/v1/software/svchost-exe/index.json @@ -0,0 +1,19 @@ +{ + "id": 9794, + "slug": "svchost-exe", + "name": "svchost.exe", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q838001" + ], + "created_at": "2026-07-10T10:12:43.250221", + "updated_at": "2026-07-10T10:12:43.250221", + "url": "/v1/software/svchost-exe" +} diff --git a/site/public/v1/software/svf/index.json b/site/public/v1/software/svf/index.json new file mode 100644 index 000000000000..21911b362186 --- /dev/null +++ b/site/public/v1/software/svf/index.json @@ -0,0 +1,21 @@ +{ + "id": 9795, + "slug": "svf", + "name": "SVF", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124842201" + ], + "created_at": "2026-07-10T10:12:43.250221", + "updated_at": "2026-07-10T10:12:43.250221", + "url": "/v1/software/svf" +} diff --git a/site/public/v1/software/svflux/index.json b/site/public/v1/software/svflux/index.json new file mode 100644 index 000000000000..910459bd5118 --- /dev/null +++ b/site/public/v1/software/svflux/index.json @@ -0,0 +1,21 @@ +{ + "id": 9796, + "slug": "svflux", + "name": "SVFlux", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7395076" + ], + "created_at": "2026-07-10T10:12:43.251220", + "updated_at": "2026-07-10T10:12:43.251220", + "url": "/v1/software/svflux" +} diff --git a/site/public/v1/software/svn2git/index.json b/site/public/v1/software/svn2git/index.json new file mode 100644 index 000000000000..611b2ebaed13 --- /dev/null +++ b/site/public/v1/software/svn2git/index.json @@ -0,0 +1,19 @@ +{ + "id": 9797, + "slug": "svn2git", + "name": "svn2git", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975507" + ], + "created_at": "2026-07-10T10:12:43.251220", + "updated_at": "2026-07-10T10:12:43.251220", + "url": "/v1/software/svn2git" +} diff --git a/site/public/v1/software/svslope/index.json b/site/public/v1/software/svslope/index.json new file mode 100644 index 000000000000..de780f71183a --- /dev/null +++ b/site/public/v1/software/svslope/index.json @@ -0,0 +1,19 @@ +{ + "id": 9798, + "slug": "svslope", + "name": "SVSlope", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7395098" + ], + "created_at": "2026-07-10T10:12:43.251220", + "updated_at": "2026-07-10T10:12:43.251220", + "url": "/v1/software/svslope" +} diff --git a/site/public/v1/software/sw-notify-send/index.json b/site/public/v1/software/sw-notify-send/index.json new file mode 100644 index 000000000000..0b709f966e8b --- /dev/null +++ b/site/public/v1/software/sw-notify-send/index.json @@ -0,0 +1,19 @@ +{ + "id": 9799, + "slug": "sw-notify-send", + "name": "sw-notify-send", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975509" + ], + "created_at": "2026-07-10T10:12:43.252220", + "updated_at": "2026-07-10T10:12:43.252220", + "url": "/v1/software/sw-notify-send" +} diff --git a/site/public/v1/software/swapnote/index.json b/site/public/v1/software/swapnote/index.json new file mode 100644 index 000000000000..c043dd8599f5 --- /dev/null +++ b/site/public/v1/software/swapnote/index.json @@ -0,0 +1,23 @@ +{ + "id": 9800, + "slug": "swapnote", + "name": "Swapnote", + "release_date": "2011-12-21", + "developers": [ + "Nintendo System Development" + ], + "publishers": [ + "Nintendo" + ], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11259709" + ], + "created_at": "2026-07-10T10:12:43.252220", + "updated_at": "2026-07-10T10:12:43.252220", + "url": "/v1/software/swapnote" +} diff --git a/site/public/v1/software/swarachakra/index.json b/site/public/v1/software/swarachakra/index.json new file mode 100644 index 000000000000..0727ecf9c48c --- /dev/null +++ b/site/public/v1/software/swarachakra/index.json @@ -0,0 +1,21 @@ +{ + "id": 9801, + "slug": "swarachakra", + "name": "Swarachakra", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Apache License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17379167" + ], + "created_at": "2026-07-10T10:12:43.252220", + "updated_at": "2026-07-10T10:12:43.252220", + "url": "/v1/software/swarachakra" +} diff --git a/site/public/v1/software/swat/index.json b/site/public/v1/software/swat/index.json new file mode 100644 index 000000000000..68efa79c0ee8 --- /dev/null +++ b/site/public/v1/software/swat/index.json @@ -0,0 +1,19 @@ +{ + "id": 9802, + "slug": "swat", + "name": "SWAT", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7395158" + ], + "created_at": "2026-07-10T10:12:43.253293", + "updated_at": "2026-07-10T10:12:43.253293", + "url": "/v1/software/swat" +} diff --git a/site/public/v1/software/sweet-ann/index.json b/site/public/v1/software/sweet-ann/index.json new file mode 100644 index 000000000000..8b3eb31ea7b0 --- /dev/null +++ b/site/public/v1/software/sweet-ann/index.json @@ -0,0 +1,19 @@ +{ + "id": 9803, + "slug": "sweet-ann", + "name": "Sweet Ann", + "release_date": "2007-06-29", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q24914278" + ], + "created_at": "2026-07-10T10:12:43.253293", + "updated_at": "2026-07-10T10:12:43.253293", + "url": "/v1/software/sweet-ann" +} diff --git a/site/public/v1/software/swell-radio/index.json b/site/public/v1/software/swell-radio/index.json new file mode 100644 index 000000000000..ff225888149d --- /dev/null +++ b/site/public/v1/software/swell-radio/index.json @@ -0,0 +1,19 @@ +{ + "id": 9804, + "slug": "swell-radio", + "name": "Swell Radio", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q15737245" + ], + "created_at": "2026-07-10T10:12:43.253293", + "updated_at": "2026-07-10T10:12:43.253293", + "url": "/v1/software/swell-radio" +} diff --git a/site/public/v1/software/swellrt/index.json b/site/public/v1/software/swellrt/index.json new file mode 100644 index 000000000000..45bb31cde3f4 --- /dev/null +++ b/site/public/v1/software/swellrt/index.json @@ -0,0 +1,21 @@ +{ + "id": 9805, + "slug": "swellrt", + "name": "SwellRT", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Java" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q42851294" + ], + "created_at": "2026-07-10T10:12:43.254282", + "updated_at": "2026-07-10T10:12:43.254282", + "url": "/v1/software/swellrt" +} diff --git a/site/public/v1/software/swf2exe-software/index.json b/site/public/v1/software/swf2exe-software/index.json new file mode 100644 index 000000000000..e23d3805e844 --- /dev/null +++ b/site/public/v1/software/swf2exe-software/index.json @@ -0,0 +1,19 @@ +{ + "id": 9806, + "slug": "swf2exe-software", + "name": "SWF2EXE software", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7395178" + ], + "created_at": "2026-07-10T10:12:43.254282", + "updated_at": "2026-07-10T10:12:43.254282", + "url": "/v1/software/swf2exe-software" +} diff --git a/site/public/v1/software/swift-missive/index.json b/site/public/v1/software/swift-missive/index.json new file mode 100644 index 000000000000..a521b55c2259 --- /dev/null +++ b/site/public/v1/software/swift-missive/index.json @@ -0,0 +1,24 @@ +{ + "id": 9807, + "slug": "swift-missive", + "name": "Swift Missive", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "cross-platform" + ], + "programming_languages": [ + "Go", + "TypeScript" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137714298" + ], + "created_at": "2026-07-10T10:12:43.254282", + "updated_at": "2026-07-10T10:12:43.254282", + "url": "/v1/software/swift-missive" +} diff --git a/site/public/v1/software/swift-playgrounds/index.json b/site/public/v1/software/swift-playgrounds/index.json new file mode 100644 index 000000000000..cae83114fd03 --- /dev/null +++ b/site/public/v1/software/swift-playgrounds/index.json @@ -0,0 +1,23 @@ +{ + "id": 9808, + "slug": "swift-playgrounds", + "name": "Swift Playgrounds", + "release_date": "2014-06-02", + "developers": [ + "Apple Inc." + ], + "publishers": [ + "Apple Inc." + ], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q29364676" + ], + "created_at": "2026-07-10T10:12:43.254282", + "updated_at": "2026-07-10T10:12:43.254282", + "url": "/v1/software/swift-playgrounds" +} diff --git a/site/public/v1/software/swiftcoin/index.json b/site/public/v1/software/swiftcoin/index.json new file mode 100644 index 000000000000..7ae83f41ddb9 --- /dev/null +++ b/site/public/v1/software/swiftcoin/index.json @@ -0,0 +1,19 @@ +{ + "id": 9809, + "slug": "swiftcoin", + "name": "SwiftCoin", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22991158" + ], + "created_at": "2026-07-10T10:12:43.255292", + "updated_at": "2026-07-10T10:12:43.255292", + "url": "/v1/software/swiftcoin" +} diff --git a/site/public/v1/software/swiftriver/index.json b/site/public/v1/software/swiftriver/index.json new file mode 100644 index 000000000000..8a73111c3b9e --- /dev/null +++ b/site/public/v1/software/swiftriver/index.json @@ -0,0 +1,19 @@ +{ + "id": 9810, + "slug": "swiftriver", + "name": "SwiftRiver", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084606" + ], + "created_at": "2026-07-10T10:12:43.255292", + "updated_at": "2026-07-10T10:12:43.255292", + "url": "/v1/software/swiftriver" +} diff --git a/site/public/v1/software/swiftweasel/index.json b/site/public/v1/software/swiftweasel/index.json new file mode 100644 index 000000000000..fe246f2f4cda --- /dev/null +++ b/site/public/v1/software/swiftweasel/index.json @@ -0,0 +1,21 @@ +{ + "id": 9811, + "slug": "swiftweasel", + "name": "Swiftweasel", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Mozilla Public License, version 1.1" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1013763" + ], + "created_at": "2026-07-10T10:12:43.256220", + "updated_at": "2026-07-10T10:12:43.256220", + "url": "/v1/software/swiftweasel" +} diff --git a/site/public/v1/software/swing-browser/index.json b/site/public/v1/software/swing-browser/index.json new file mode 100644 index 000000000000..93a1063c1e18 --- /dev/null +++ b/site/public/v1/software/swing-browser/index.json @@ -0,0 +1,19 @@ +{ + "id": 9812, + "slug": "swing-browser", + "name": "Swing Browser", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q12603618" + ], + "created_at": "2026-07-10T10:12:43.256220", + "updated_at": "2026-07-10T10:12:43.256220", + "url": "/v1/software/swing-browser" +} diff --git a/site/public/v1/software/swiss-model/index.json b/site/public/v1/software/swiss-model/index.json new file mode 100644 index 000000000000..858dd1f5f1af --- /dev/null +++ b/site/public/v1/software/swiss-model/index.json @@ -0,0 +1,19 @@ +{ + "id": 9813, + "slug": "swiss-model", + "name": "Swiss-model", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7658835" + ], + "created_at": "2026-07-10T10:12:43.256220", + "updated_at": "2026-07-10T10:12:43.256220", + "url": "/v1/software/swiss-model" +} diff --git a/site/public/v1/software/swisstransfer/index.json b/site/public/v1/software/swisstransfer/index.json new file mode 100644 index 000000000000..33403331727f --- /dev/null +++ b/site/public/v1/software/swisstransfer/index.json @@ -0,0 +1,19 @@ +{ + "id": 9814, + "slug": "swisstransfer", + "name": "SwissTransfer", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107429823" + ], + "created_at": "2026-07-10T10:12:43.256220", + "updated_at": "2026-07-10T10:12:43.256220", + "url": "/v1/software/swisstransfer" +} diff --git a/site/public/v1/software/switch-q121631703/index.json b/site/public/v1/software/switch-q121631703/index.json new file mode 100644 index 000000000000..c6f00b75e18c --- /dev/null +++ b/site/public/v1/software/switch-q121631703/index.json @@ -0,0 +1,19 @@ +{ + "id": 9815, + "slug": "switch-q121631703", + "name": "SWITCH!", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121631703" + ], + "created_at": "2026-07-10T10:12:43.257220", + "updated_at": "2026-07-10T10:12:43.257220", + "url": "/v1/software/switch-q121631703" +} diff --git a/site/public/v1/software/switch/index.json b/site/public/v1/software/switch/index.json new file mode 100644 index 000000000000..e9e1ee4dfb33 --- /dev/null +++ b/site/public/v1/software/switch/index.json @@ -0,0 +1,21 @@ +{ + "id": 9816, + "slug": "switch", + "name": "Switch", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "iOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q20880805" + ], + "created_at": "2026-07-10T10:12:43.257220", + "updated_at": "2026-07-10T10:12:43.257220", + "url": "/v1/software/switch" +} diff --git a/site/public/v1/software/swordfish-translation-editor/index.json b/site/public/v1/software/swordfish-translation-editor/index.json new file mode 100644 index 000000000000..46b380215ec3 --- /dev/null +++ b/site/public/v1/software/swordfish-translation-editor/index.json @@ -0,0 +1,19 @@ +{ + "id": 9817, + "slug": "swordfish-translation-editor", + "name": "Swordfish Translation Editor", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7659326" + ], + "created_at": "2026-07-10T10:12:43.258220", + "updated_at": "2026-07-10T10:12:43.258220", + "url": "/v1/software/swordfish-translation-editor" +} diff --git a/site/public/v1/software/swvl/index.json b/site/public/v1/software/swvl/index.json new file mode 100644 index 000000000000..42edb0d318a3 --- /dev/null +++ b/site/public/v1/software/swvl/index.json @@ -0,0 +1,19 @@ +{ + "id": 9818, + "slug": "swvl", + "name": "Swvl", + "release_date": "2017-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q73312516" + ], + "created_at": "2026-07-10T10:12:43.258220", + "updated_at": "2026-07-10T10:12:43.258220", + "url": "/v1/software/swvl" +} diff --git a/site/public/v1/software/sxe-injected/index.json b/site/public/v1/software/sxe-injected/index.json new file mode 100644 index 000000000000..ae682ec8b4a3 --- /dev/null +++ b/site/public/v1/software/sxe-injected/index.json @@ -0,0 +1,21 @@ +{ + "id": 9819, + "slug": "sxe-injected", + "name": "SXe Injected", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6116357" + ], + "created_at": "2026-07-10T10:12:43.258220", + "updated_at": "2026-07-10T10:12:43.258220", + "url": "/v1/software/sxe-injected" +} diff --git a/site/public/v1/software/syal/index.json b/site/public/v1/software/syal/index.json new file mode 100644 index 000000000000..cbbb5396bae5 --- /dev/null +++ b/site/public/v1/software/syal/index.json @@ -0,0 +1,19 @@ +{ + "id": 9820, + "slug": "syal", + "name": "SYAL", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q19402544" + ], + "created_at": "2026-07-10T10:12:43.258220", + "updated_at": "2026-07-10T10:12:43.258220", + "url": "/v1/software/syal" +} diff --git a/site/public/v1/software/sydium/index.json b/site/public/v1/software/sydium/index.json new file mode 100644 index 000000000000..526e51de6a52 --- /dev/null +++ b/site/public/v1/software/sydium/index.json @@ -0,0 +1,21 @@ +{ + "id": 9821, + "slug": "sydium", + "name": "Sydium", + "release_date": null, + "developers": [ + "Parhelion Software SRL" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140324738" + ], + "created_at": "2026-07-10T10:12:43.259220", + "updated_at": "2026-07-10T10:12:43.259220", + "url": "/v1/software/sydium" +} diff --git a/site/public/v1/software/sydle/index.json b/site/public/v1/software/sydle/index.json new file mode 100644 index 000000000000..35664aad6c35 --- /dev/null +++ b/site/public/v1/software/sydle/index.json @@ -0,0 +1,23 @@ +{ + "id": 9822, + "slug": "sydle", + "name": "Sydle", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Java" + ], + "licenses": [ + "end-user license agreement" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7659794" + ], + "created_at": "2026-07-10T10:12:43.259220", + "updated_at": "2026-07-10T10:12:43.259220", + "url": "/v1/software/sydle" +} diff --git a/site/public/v1/software/sydney/index.json b/site/public/v1/software/sydney/index.json new file mode 100644 index 000000000000..f161f0eb0e88 --- /dev/null +++ b/site/public/v1/software/sydney/index.json @@ -0,0 +1,19 @@ +{ + "id": 9823, + "slug": "sydney", + "name": "Sydney", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134563618" + ], + "created_at": "2026-07-10T10:12:43.259220", + "updated_at": "2026-07-10T10:12:43.259220", + "url": "/v1/software/sydney" +} diff --git a/site/public/v1/software/sylenth1/index.json b/site/public/v1/software/sylenth1/index.json new file mode 100644 index 000000000000..87195c09fa3c --- /dev/null +++ b/site/public/v1/software/sylenth1/index.json @@ -0,0 +1,19 @@ +{ + "id": 9824, + "slug": "sylenth1", + "name": "Sylenth1", + "release_date": "2006-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q30917187" + ], + "created_at": "2026-07-10T10:12:43.260220", + "updated_at": "2026-07-10T10:12:43.260220", + "url": "/v1/software/sylenth1" +} diff --git a/site/public/v1/software/sylvadb/index.json b/site/public/v1/software/sylvadb/index.json new file mode 100644 index 000000000000..7ca3471dcb10 --- /dev/null +++ b/site/public/v1/software/sylvadb/index.json @@ -0,0 +1,19 @@ +{ + "id": 9825, + "slug": "sylvadb", + "name": "SylvaDB", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084607" + ], + "created_at": "2026-07-10T10:12:43.260220", + "updated_at": "2026-07-10T10:12:43.260220", + "url": "/v1/software/sylvadb" +} diff --git a/site/public/v1/software/syman/index.json b/site/public/v1/software/syman/index.json new file mode 100644 index 000000000000..c4121870d2b5 --- /dev/null +++ b/site/public/v1/software/syman/index.json @@ -0,0 +1,21 @@ +{ + "id": 9826, + "slug": "syman", + "name": "Syman", + "release_date": "2013-01-01", + "developers": [ + "Identified" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17084246" + ], + "created_at": "2026-07-10T10:12:43.260220", + "updated_at": "2026-07-10T10:12:43.260220", + "url": "/v1/software/syman" +} diff --git a/site/public/v1/software/symantec-online-backup/index.json b/site/public/v1/software/symantec-online-backup/index.json new file mode 100644 index 000000000000..a7557194b099 --- /dev/null +++ b/site/public/v1/software/symantec-online-backup/index.json @@ -0,0 +1,23 @@ +{ + "id": 9827, + "slug": "symantec-online-backup", + "name": "Symantec Online Backup", + "release_date": "2008-02-01", + "developers": [ + "Gen Digital" + ], + "publishers": [], + "operating_systems": [ + "Windows Server 2003" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7661102" + ], + "created_at": "2026-07-10T10:12:43.260220", + "updated_at": "2026-07-10T10:12:43.260220", + "url": "/v1/software/symantec-online-backup" +} diff --git a/site/public/v1/software/symantec-operations-readiness-tools/index.json b/site/public/v1/software/symantec-operations-readiness-tools/index.json new file mode 100644 index 000000000000..02d135221da3 --- /dev/null +++ b/site/public/v1/software/symantec-operations-readiness-tools/index.json @@ -0,0 +1,21 @@ +{ + "id": 9828, + "slug": "symantec-operations-readiness-tools", + "name": "Symantec Operations Readiness Tools", + "release_date": null, + "developers": [ + "Gen Digital" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7661103" + ], + "created_at": "2026-07-10T10:12:43.261356", + "updated_at": "2026-07-10T10:12:43.261356", + "url": "/v1/software/symantec-operations-readiness-tools" +} diff --git a/site/public/v1/software/symap/index.json b/site/public/v1/software/symap/index.json new file mode 100644 index 000000000000..349edcc792f3 --- /dev/null +++ b/site/public/v1/software/symap/index.json @@ -0,0 +1,21 @@ +{ + "id": 9829, + "slug": "symap", + "name": "SYMAP", + "release_date": null, + "developers": [ + "Harvard Laboratory for Computer Graphics and Spatial Analysis" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116923583" + ], + "created_at": "2026-07-10T10:12:43.261356", + "updated_at": "2026-07-10T10:12:43.261356", + "url": "/v1/software/symap" +} diff --git a/site/public/v1/software/symenu/index.json b/site/public/v1/software/symenu/index.json new file mode 100644 index 000000000000..d5a654fa0f31 --- /dev/null +++ b/site/public/v1/software/symenu/index.json @@ -0,0 +1,19 @@ +{ + "id": 9830, + "slug": "symenu", + "name": "SyMenu", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7659410" + ], + "created_at": "2026-07-10T10:12:43.262222", + "updated_at": "2026-07-10T10:12:43.262222", + "url": "/v1/software/symenu" +} diff --git a/site/public/v1/software/symon-bootmanager/index.json b/site/public/v1/software/symon-bootmanager/index.json new file mode 100644 index 000000000000..fc10518e722d --- /dev/null +++ b/site/public/v1/software/symon-bootmanager/index.json @@ -0,0 +1,21 @@ +{ + "id": 9831, + "slug": "symon-bootmanager", + "name": "SyMon Bootmanager", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2373459" + ], + "created_at": "2026-07-10T10:12:43.262222", + "updated_at": "2026-07-10T10:12:43.262222", + "url": "/v1/software/symon-bootmanager" +} diff --git a/site/public/v1/software/symphonic-choirs/index.json b/site/public/v1/software/symphonic-choirs/index.json new file mode 100644 index 000000000000..dacc71eff818 --- /dev/null +++ b/site/public/v1/software/symphonic-choirs/index.json @@ -0,0 +1,19 @@ +{ + "id": 9832, + "slug": "symphonic-choirs", + "name": "Symphonic Choirs", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22909221" + ], + "created_at": "2026-07-10T10:12:43.262222", + "updated_at": "2026-07-10T10:12:43.262222", + "url": "/v1/software/symphonic-choirs" +} diff --git a/site/public/v1/software/symphony-communication/index.json b/site/public/v1/software/symphony-communication/index.json new file mode 100644 index 000000000000..cef128096fe0 --- /dev/null +++ b/site/public/v1/software/symphony-communication/index.json @@ -0,0 +1,21 @@ +{ + "id": 9833, + "slug": "symphony-communication", + "name": "Symphony Communication", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Apache License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22909223" + ], + "created_at": "2026-07-10T10:12:43.263226", + "updated_at": "2026-07-10T10:12:43.263226", + "url": "/v1/software/symphony-communication" +} diff --git a/site/public/v1/software/synapsen/index.json b/site/public/v1/software/synapsen/index.json new file mode 100644 index 000000000000..414922c13ce7 --- /dev/null +++ b/site/public/v1/software/synapsen/index.json @@ -0,0 +1,26 @@ +{ + "id": 9834, + "slug": "synapsen", + "name": "Synapsen", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [ + "Java" + ], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105748776" + ], + "created_at": "2026-07-10T10:12:43.263226", + "updated_at": "2026-07-10T10:12:43.263226", + "url": "/v1/software/synapsen" +} diff --git a/site/public/v1/software/sync-fetch/index.json b/site/public/v1/software/sync-fetch/index.json new file mode 100644 index 000000000000..64d0a32a3fb8 --- /dev/null +++ b/site/public/v1/software/sync-fetch/index.json @@ -0,0 +1,23 @@ +{ + "id": 9835, + "slug": "sync-fetch", + "name": "sync-fetch", + "release_date": "2022-05-26", + "developers": [ + "Lars Willighagen" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112255954" + ], + "created_at": "2026-07-10T10:12:43.263226", + "updated_at": "2026-07-10T10:12:43.263226", + "url": "/v1/software/sync-fetch" +} diff --git a/site/public/v1/software/sync-in/index.json b/site/public/v1/software/sync-in/index.json new file mode 100644 index 000000000000..4df47d83e5f5 --- /dev/null +++ b/site/public/v1/software/sync-in/index.json @@ -0,0 +1,21 @@ +{ + "id": 9836, + "slug": "sync-in", + "name": "Sync.in", + "release_date": null, + "developers": [ + "Cynapse" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7662082" + ], + "created_at": "2026-07-10T10:12:43.264224", + "updated_at": "2026-07-10T10:12:43.264224", + "url": "/v1/software/sync-in" +} diff --git a/site/public/v1/software/syncback/index.json b/site/public/v1/software/syncback/index.json new file mode 100644 index 000000000000..47f9e0b91d0f --- /dev/null +++ b/site/public/v1/software/syncback/index.json @@ -0,0 +1,19 @@ +{ + "id": 9837, + "slug": "syncback", + "name": "SyncBack", + "release_date": "2003-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7662068" + ], + "created_at": "2026-07-10T10:12:43.264224", + "updated_at": "2026-07-10T10:12:43.264224", + "url": "/v1/software/syncback" +} diff --git a/site/public/v1/software/syncdocs/index.json b/site/public/v1/software/syncdocs/index.json new file mode 100644 index 000000000000..8734ea306d62 --- /dev/null +++ b/site/public/v1/software/syncdocs/index.json @@ -0,0 +1,23 @@ +{ + "id": 9838, + "slug": "syncdocs", + "name": "Syncdocs", + "release_date": null, + "developers": [ + "Syncdocs" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7662089" + ], + "created_at": "2026-07-10T10:12:43.264224", + "updated_at": "2026-07-10T10:12:43.264224", + "url": "/v1/software/syncdocs" +} diff --git a/site/public/v1/software/synchronize-it/index.json b/site/public/v1/software/synchronize-it/index.json new file mode 100644 index 000000000000..d0c42df9770c --- /dev/null +++ b/site/public/v1/software/synchronize-it/index.json @@ -0,0 +1,21 @@ +{ + "id": 9839, + "slug": "synchronize-it", + "name": "Synchronize It", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7662147" + ], + "created_at": "2026-07-10T10:12:43.265229", + "updated_at": "2026-07-10T10:12:43.265229", + "url": "/v1/software/synchronize-it" +} diff --git a/site/public/v1/software/synchronizer/index.json b/site/public/v1/software/synchronizer/index.json new file mode 100644 index 000000000000..2afaa3416687 --- /dev/null +++ b/site/public/v1/software/synchronizer/index.json @@ -0,0 +1,19 @@ +{ + "id": 9840, + "slug": "synchronizer", + "name": "Synchronizer", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116446291" + ], + "created_at": "2026-07-10T10:12:43.265229", + "updated_at": "2026-07-10T10:12:43.265229", + "url": "/v1/software/synchronizer" +} diff --git a/site/public/v1/software/syncios/index.json b/site/public/v1/software/syncios/index.json new file mode 100644 index 000000000000..44ade29aad12 --- /dev/null +++ b/site/public/v1/software/syncios/index.json @@ -0,0 +1,21 @@ +{ + "id": 9841, + "slug": "syncios", + "name": "Syncios", + "release_date": null, + "developers": [ + "Anvsoft Inc." + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q24765395" + ], + "created_at": "2026-07-10T10:12:43.265229", + "updated_at": "2026-07-10T10:12:43.265229", + "url": "/v1/software/syncios" +} diff --git a/site/public/v1/software/syncplicity/index.json b/site/public/v1/software/syncplicity/index.json new file mode 100644 index 000000000000..c25bfeb4d5b4 --- /dev/null +++ b/site/public/v1/software/syncplicity/index.json @@ -0,0 +1,19 @@ +{ + "id": 9842, + "slug": "syncplicity", + "name": "Syncplicity", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4050505" + ], + "created_at": "2026-07-10T10:12:43.266220", + "updated_at": "2026-07-10T10:12:43.266220", + "url": "/v1/software/syncplicity" +} diff --git a/site/public/v1/software/synctoy/index.json b/site/public/v1/software/synctoy/index.json new file mode 100644 index 000000000000..3aee26518635 --- /dev/null +++ b/site/public/v1/software/synctoy/index.json @@ -0,0 +1,23 @@ +{ + "id": 9843, + "slug": "synctoy", + "name": "SyncToy", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1140711" + ], + "created_at": "2026-07-10T10:12:43.266220", + "updated_at": "2026-07-10T10:12:43.266220", + "url": "/v1/software/synctoy" +} diff --git a/site/public/v1/software/synereo/index.json b/site/public/v1/software/synereo/index.json new file mode 100644 index 000000000000..b8a8e8c26f8f --- /dev/null +++ b/site/public/v1/software/synereo/index.json @@ -0,0 +1,19 @@ +{ + "id": 9844, + "slug": "synereo", + "name": "Synereo", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28127193" + ], + "created_at": "2026-07-10T10:12:43.266220", + "updated_at": "2026-07-10T10:12:43.266220", + "url": "/v1/software/synereo" +} diff --git a/site/public/v1/software/synfiniway/index.json b/site/public/v1/software/synfiniway/index.json new file mode 100644 index 000000000000..6a888a516761 --- /dev/null +++ b/site/public/v1/software/synfiniway/index.json @@ -0,0 +1,23 @@ +{ + "id": 9845, + "slug": "synfiniway", + "name": "SynfiniWay", + "release_date": null, + "developers": [ + "Fujitsu" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7662432" + ], + "created_at": "2026-07-10T10:12:43.266220", + "updated_at": "2026-07-10T10:12:43.266220", + "url": "/v1/software/synfiniway" +} diff --git a/site/public/v1/software/synteny-mapping-and-analysis-program/index.json b/site/public/v1/software/synteny-mapping-and-analysis-program/index.json new file mode 100644 index 000000000000..1e94eda162b1 --- /dev/null +++ b/site/public/v1/software/synteny-mapping-and-analysis-program/index.json @@ -0,0 +1,19 @@ +{ + "id": 9846, + "slug": "synteny-mapping-and-analysis-program", + "name": "Synteny Mapping and Analysis Program", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116923581" + ], + "created_at": "2026-07-10T10:12:43.267221", + "updated_at": "2026-07-10T10:12:43.267221", + "url": "/v1/software/synteny-mapping-and-analysis-program" +} diff --git a/site/public/v1/software/synth1/index.json b/site/public/v1/software/synth1/index.json new file mode 100644 index 000000000000..19e0f6c0e90c --- /dev/null +++ b/site/public/v1/software/synth1/index.json @@ -0,0 +1,19 @@ +{ + "id": 9847, + "slug": "synth1", + "name": "Synth1", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3508914" + ], + "created_at": "2026-07-10T10:12:43.267221", + "updated_at": "2026-07-10T10:12:43.267221", + "url": "/v1/software/synth1" +} diff --git a/site/public/v1/software/synthesizer-v-editor/index.json b/site/public/v1/software/synthesizer-v-editor/index.json new file mode 100644 index 000000000000..748e53294e61 --- /dev/null +++ b/site/public/v1/software/synthesizer-v-editor/index.json @@ -0,0 +1,19 @@ +{ + "id": 9848, + "slug": "synthesizer-v-editor", + "name": "Synthesizer V Editor", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q133461711" + ], + "created_at": "2026-07-10T10:12:43.268220", + "updated_at": "2026-07-10T10:12:43.268220", + "url": "/v1/software/synthesizer-v-editor" +} diff --git a/site/public/v1/software/synthesizer-v/index.json b/site/public/v1/software/synthesizer-v/index.json new file mode 100644 index 000000000000..fa0963f0cf2c --- /dev/null +++ b/site/public/v1/software/synthesizer-v/index.json @@ -0,0 +1,22 @@ +{ + "id": 9849, + "slug": "synthesizer-v", + "name": "Synthesizer V", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q102109202" + ], + "created_at": "2026-07-10T10:12:43.268220", + "updated_at": "2026-07-10T10:12:43.268220", + "url": "/v1/software/synthesizer-v" +} diff --git a/site/public/v1/software/synthesys-ai-studio/index.json b/site/public/v1/software/synthesys-ai-studio/index.json new file mode 100644 index 000000000000..4908313d1472 --- /dev/null +++ b/site/public/v1/software/synthesys-ai-studio/index.json @@ -0,0 +1,19 @@ +{ + "id": 9850, + "slug": "synthesys-ai-studio", + "name": "Synthesys AI Studio", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118595416" + ], + "created_at": "2026-07-10T10:12:43.268220", + "updated_at": "2026-07-10T10:12:43.268220", + "url": "/v1/software/synthesys-ai-studio" +} diff --git a/site/public/v1/software/synthetic-organism-designer/index.json b/site/public/v1/software/synthetic-organism-designer/index.json new file mode 100644 index 000000000000..4bb7a9177d00 --- /dev/null +++ b/site/public/v1/software/synthetic-organism-designer/index.json @@ -0,0 +1,19 @@ +{ + "id": 9851, + "slug": "synthetic-organism-designer", + "name": "Synthetic Organism Designer", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7662731" + ], + "created_at": "2026-07-10T10:12:43.268220", + "updated_at": "2026-07-10T10:12:43.268220", + "url": "/v1/software/synthetic-organism-designer" +} diff --git a/site/public/v1/software/synthmaster/index.json b/site/public/v1/software/synthmaster/index.json new file mode 100644 index 000000000000..9ac4f3a52b70 --- /dev/null +++ b/site/public/v1/software/synthmaster/index.json @@ -0,0 +1,19 @@ +{ + "id": 9852, + "slug": "synthmaster", + "name": "SynthMaster", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7662688" + ], + "created_at": "2026-07-10T10:12:43.269220", + "updated_at": "2026-07-10T10:12:43.269220", + "url": "/v1/software/synthmaster" +} diff --git a/site/public/v1/software/syntropy/index.json b/site/public/v1/software/syntropy/index.json new file mode 100644 index 000000000000..9a03017e2a57 --- /dev/null +++ b/site/public/v1/software/syntropy/index.json @@ -0,0 +1,19 @@ +{ + "id": 9853, + "slug": "syntropy", + "name": "Syntropy", + "release_date": "1994-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7662832" + ], + "created_at": "2026-07-10T10:12:43.269220", + "updated_at": "2026-07-10T10:12:43.269220", + "url": "/v1/software/syntropy" +} diff --git a/site/public/v1/software/sys-com/index.json b/site/public/v1/software/sys-com/index.json new file mode 100644 index 000000000000..1c52cec5f52e --- /dev/null +++ b/site/public/v1/software/sys-com/index.json @@ -0,0 +1,19 @@ +{ + "id": 9854, + "slug": "sys-com", + "name": "Sys.com", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7663541" + ], + "created_at": "2026-07-10T10:12:43.270220", + "updated_at": "2026-07-10T10:12:43.270220", + "url": "/v1/software/sys-com" +} diff --git a/site/public/v1/software/sysax-ftp-automation/index.json b/site/public/v1/software/sysax-ftp-automation/index.json new file mode 100644 index 000000000000..58db0a270795 --- /dev/null +++ b/site/public/v1/software/sysax-ftp-automation/index.json @@ -0,0 +1,19 @@ +{ + "id": 9855, + "slug": "sysax-ftp-automation", + "name": "Sysax FTP Automation", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7663547" + ], + "created_at": "2026-07-10T10:12:43.270220", + "updated_at": "2026-07-10T10:12:43.270220", + "url": "/v1/software/sysax-ftp-automation" +} diff --git a/site/public/v1/software/sysax-multi-server/index.json b/site/public/v1/software/sysax-multi-server/index.json new file mode 100644 index 000000000000..88f4181b7562 --- /dev/null +++ b/site/public/v1/software/sysax-multi-server/index.json @@ -0,0 +1,19 @@ +{ + "id": 9856, + "slug": "sysax-multi-server", + "name": "Sysax Multi Server", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17132161" + ], + "created_at": "2026-07-10T10:12:43.270220", + "updated_at": "2026-07-10T10:12:43.270220", + "url": "/v1/software/sysax-multi-server" +} diff --git a/site/public/v1/software/sysbench/index.json b/site/public/v1/software/sysbench/index.json new file mode 100644 index 000000000000..4be6b870f131 --- /dev/null +++ b/site/public/v1/software/sysbench/index.json @@ -0,0 +1,19 @@ +{ + "id": 9857, + "slug": "sysbench", + "name": "sysbench", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975511" + ], + "created_at": "2026-07-10T10:12:43.270220", + "updated_at": "2026-07-10T10:12:43.270220", + "url": "/v1/software/sysbench" +} diff --git a/site/public/v1/software/syscp/index.json b/site/public/v1/software/syscp/index.json new file mode 100644 index 000000000000..9527b26b37f7 --- /dev/null +++ b/site/public/v1/software/syscp/index.json @@ -0,0 +1,19 @@ +{ + "id": 9858, + "slug": "syscp", + "name": "SysCP", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2376683" + ], + "created_at": "2026-07-10T10:12:43.271220", + "updated_at": "2026-07-10T10:12:43.271220", + "url": "/v1/software/syscp" +} diff --git a/site/public/v1/software/syshedit/index.json b/site/public/v1/software/syshedit/index.json new file mode 100644 index 000000000000..f8edab331c3c --- /dev/null +++ b/site/public/v1/software/syshedit/index.json @@ -0,0 +1,21 @@ +{ + "id": 9859, + "slug": "syshedit", + "name": "SYSHEDIT", + "release_date": null, + "developers": [ + "Eva Krištofičová" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q12775728" + ], + "created_at": "2026-07-10T10:12:43.271220", + "updated_at": "2026-07-10T10:12:43.271220", + "url": "/v1/software/syshedit" +} diff --git a/site/public/v1/software/sysinfo/index.json b/site/public/v1/software/sysinfo/index.json new file mode 100644 index 000000000000..08793f901f01 --- /dev/null +++ b/site/public/v1/software/sysinfo/index.json @@ -0,0 +1,21 @@ +{ + "id": 9860, + "slug": "sysinfo", + "name": "Sysinfo", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "assembly language" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17048840" + ], + "created_at": "2026-07-10T10:12:43.272219", + "updated_at": "2026-07-10T10:12:43.272219", + "url": "/v1/software/sysinfo" +} diff --git a/site/public/v1/software/sysmaster/index.json b/site/public/v1/software/sysmaster/index.json new file mode 100644 index 000000000000..1497b84f604b --- /dev/null +++ b/site/public/v1/software/sysmaster/index.json @@ -0,0 +1,19 @@ +{ + "id": 9861, + "slug": "sysmaster", + "name": "SysMaster", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16981662" + ], + "created_at": "2026-07-10T10:12:43.272219", + "updated_at": "2026-07-10T10:12:43.272219", + "url": "/v1/software/sysmaster" +} diff --git a/site/public/v1/software/sysquake/index.json b/site/public/v1/software/sysquake/index.json new file mode 100644 index 000000000000..00a186769ccc --- /dev/null +++ b/site/public/v1/software/sysquake/index.json @@ -0,0 +1,19 @@ +{ + "id": 9862, + "slug": "sysquake", + "name": "Sysquake", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1092979" + ], + "created_at": "2026-07-10T10:12:43.272219", + "updated_at": "2026-07-10T10:12:43.272219", + "url": "/v1/software/sysquake" +} diff --git a/site/public/v1/software/systancia/index.json b/site/public/v1/software/systancia/index.json new file mode 100644 index 000000000000..b5351ce0e3a3 --- /dev/null +++ b/site/public/v1/software/systancia/index.json @@ -0,0 +1,19 @@ +{ + "id": 9863, + "slug": "systancia", + "name": "Systancia", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3509059" + ], + "created_at": "2026-07-10T10:12:43.272219", + "updated_at": "2026-07-10T10:12:43.272219", + "url": "/v1/software/systancia" +} diff --git a/site/public/v1/software/system-2000/index.json b/site/public/v1/software/system-2000/index.json new file mode 100644 index 000000000000..5b466fbc6b20 --- /dev/null +++ b/site/public/v1/software/system-2000/index.json @@ -0,0 +1,19 @@ +{ + "id": 9864, + "slug": "system-2000", + "name": "System 2000", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107451857" + ], + "created_at": "2026-07-10T10:12:43.273221", + "updated_at": "2026-07-10T10:12:43.273221", + "url": "/v1/software/system-2000" +} diff --git a/site/public/v1/software/system-architect/index.json b/site/public/v1/software/system-architect/index.json new file mode 100644 index 000000000000..23b69d5a2ecc --- /dev/null +++ b/site/public/v1/software/system-architect/index.json @@ -0,0 +1,21 @@ +{ + "id": 9865, + "slug": "system-architect", + "name": "System Architect", + "release_date": null, + "developers": [ + "IBM" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1548271" + ], + "created_at": "2026-07-10T10:12:43.273221", + "updated_at": "2026-07-10T10:12:43.273221", + "url": "/v1/software/system-architect" +} diff --git a/site/public/v1/software/system-center-data-protection-manager/index.json b/site/public/v1/software/system-center-data-protection-manager/index.json new file mode 100644 index 000000000000..133d1ed7d2db --- /dev/null +++ b/site/public/v1/software/system-center-data-protection-manager/index.json @@ -0,0 +1,21 @@ +{ + "id": 9866, + "slug": "system-center-data-protection-manager", + "name": "System Center Data Protection Manager", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2063660" + ], + "created_at": "2026-07-10T10:12:43.273221", + "updated_at": "2026-07-10T10:12:43.273221", + "url": "/v1/software/system-center-data-protection-manager" +} diff --git a/site/public/v1/software/system-center-essentials/index.json b/site/public/v1/software/system-center-essentials/index.json new file mode 100644 index 000000000000..40411c467ef8 --- /dev/null +++ b/site/public/v1/software/system-center-essentials/index.json @@ -0,0 +1,21 @@ +{ + "id": 9867, + "slug": "system-center-essentials", + "name": "System Center Essentials", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7663630" + ], + "created_at": "2026-07-10T10:12:43.274270", + "updated_at": "2026-07-10T10:12:43.274270", + "url": "/v1/software/system-center-essentials" +} diff --git a/site/public/v1/software/system-center-operations-manager/index.json b/site/public/v1/software/system-center-operations-manager/index.json new file mode 100644 index 000000000000..c8e067088c15 --- /dev/null +++ b/site/public/v1/software/system-center-operations-manager/index.json @@ -0,0 +1,21 @@ +{ + "id": 9868, + "slug": "system-center-operations-manager", + "name": "System Center Operations Manager", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q202861" + ], + "created_at": "2026-07-10T10:12:43.274270", + "updated_at": "2026-07-10T10:12:43.274270", + "url": "/v1/software/system-center-operations-manager" +} diff --git a/site/public/v1/software/system-center-service-manager/index.json b/site/public/v1/software/system-center-service-manager/index.json new file mode 100644 index 000000000000..5c2dd2735853 --- /dev/null +++ b/site/public/v1/software/system-center-service-manager/index.json @@ -0,0 +1,21 @@ +{ + "id": 9869, + "slug": "system-center-service-manager", + "name": "System Center Service Manager", + "release_date": "2016-01-01", + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7663631" + ], + "created_at": "2026-07-10T10:12:43.274270", + "updated_at": "2026-07-10T10:12:43.274270", + "url": "/v1/software/system-center-service-manager" +} diff --git a/site/public/v1/software/system-center-virtual-machine-manager/index.json b/site/public/v1/software/system-center-virtual-machine-manager/index.json new file mode 100644 index 000000000000..c88fc0220f14 --- /dev/null +++ b/site/public/v1/software/system-center-virtual-machine-manager/index.json @@ -0,0 +1,21 @@ +{ + "id": 9870, + "slug": "system-center-virtual-machine-manager", + "name": "System Center Virtual Machine Manager", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2748823" + ], + "created_at": "2026-07-10T10:12:43.274270", + "updated_at": "2026-07-10T10:12:43.274270", + "url": "/v1/software/system-center-virtual-machine-manager" +} diff --git a/site/public/v1/software/system-commander/index.json b/site/public/v1/software/system-commander/index.json new file mode 100644 index 000000000000..966fa976a0f1 --- /dev/null +++ b/site/public/v1/software/system-commander/index.json @@ -0,0 +1,21 @@ +{ + "id": 9871, + "slug": "system-commander", + "name": "System Commander", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11307187" + ], + "created_at": "2026-07-10T10:12:43.275316", + "updated_at": "2026-07-10T10:12:43.275316", + "url": "/v1/software/system-commander" +} diff --git a/site/public/v1/software/system-image-utility/index.json b/site/public/v1/software/system-image-utility/index.json new file mode 100644 index 000000000000..8599e216f191 --- /dev/null +++ b/site/public/v1/software/system-image-utility/index.json @@ -0,0 +1,23 @@ +{ + "id": 9872, + "slug": "system-image-utility", + "name": "System Image Utility", + "release_date": null, + "developers": [ + "Apple Inc." + ], + "publishers": [], + "operating_systems": [ + "macOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7663657" + ], + "created_at": "2026-07-10T10:12:43.275316", + "updated_at": "2026-07-10T10:12:43.275316", + "url": "/v1/software/system-image-utility" +} diff --git a/site/public/v1/software/system-information/index.json b/site/public/v1/software/system-information/index.json new file mode 100644 index 000000000000..c7c3f59dd200 --- /dev/null +++ b/site/public/v1/software/system-information/index.json @@ -0,0 +1,21 @@ +{ + "id": 9873, + "slug": "system-information", + "name": "System Information", + "release_date": null, + "developers": [ + "Apple Inc." + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3979211" + ], + "created_at": "2026-07-10T10:12:43.275316", + "updated_at": "2026-07-10T10:12:43.275316", + "url": "/v1/software/system-information" +} diff --git a/site/public/v1/software/system-integrity-protection/index.json b/site/public/v1/software/system-integrity-protection/index.json new file mode 100644 index 000000000000..4be686f1c200 --- /dev/null +++ b/site/public/v1/software/system-integrity-protection/index.json @@ -0,0 +1,24 @@ +{ + "id": 9874, + "slug": "system-integrity-protection", + "name": "System Integrity Protection", + "release_date": null, + "developers": [ + "Apple Inc." + ], + "publishers": [], + "operating_systems": [ + "OS X El Capitan", + "macOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q20648354" + ], + "created_at": "2026-07-10T10:12:43.276221", + "updated_at": "2026-07-10T10:12:43.276221", + "url": "/v1/software/system-integrity-protection" +} diff --git a/site/public/v1/software/system-manager/index.json b/site/public/v1/software/system-manager/index.json new file mode 100644 index 000000000000..639dd5ec35ed --- /dev/null +++ b/site/public/v1/software/system-manager/index.json @@ -0,0 +1,19 @@ +{ + "id": 9875, + "slug": "system-manager", + "name": "System Manager", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17081524" + ], + "created_at": "2026-07-10T10:12:43.276221", + "updated_at": "2026-07-10T10:12:43.276221", + "url": "/v1/software/system-manager" +} diff --git a/site/public/v1/software/system-picker/index.json b/site/public/v1/software/system-picker/index.json new file mode 100644 index 000000000000..b6a682959928 --- /dev/null +++ b/site/public/v1/software/system-picker/index.json @@ -0,0 +1,23 @@ +{ + "id": 9876, + "slug": "system-picker", + "name": "System Picker", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "macOS" + ], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7663670" + ], + "created_at": "2026-07-10T10:12:43.276221", + "updated_at": "2026-07-10T10:12:43.276221", + "url": "/v1/software/system-picker" +} diff --git a/site/public/v1/software/system-policy-editor/index.json b/site/public/v1/software/system-policy-editor/index.json new file mode 100644 index 000000000000..ac7fcc8bd0e7 --- /dev/null +++ b/site/public/v1/software/system-policy-editor/index.json @@ -0,0 +1,19 @@ +{ + "id": 9877, + "slug": "system-policy-editor", + "name": "System Policy Editor", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7663672" + ], + "created_at": "2026-07-10T10:12:43.277220", + "updated_at": "2026-07-10T10:12:43.277220", + "url": "/v1/software/system-policy-editor" +} diff --git a/site/public/v1/software/system-restore/index.json b/site/public/v1/software/system-restore/index.json new file mode 100644 index 000000000000..ff9b27be59fc --- /dev/null +++ b/site/public/v1/software/system-restore/index.json @@ -0,0 +1,19 @@ +{ + "id": 9878, + "slug": "system-restore", + "name": "System Restore", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1066221" + ], + "created_at": "2026-07-10T10:12:43.277220", + "updated_at": "2026-07-10T10:12:43.277220", + "url": "/v1/software/system-restore" +} diff --git a/site/public/v1/software/systemc/index.json b/site/public/v1/software/systemc/index.json new file mode 100644 index 000000000000..950d733b5f83 --- /dev/null +++ b/site/public/v1/software/systemc/index.json @@ -0,0 +1,21 @@ +{ + "id": 9879, + "slug": "systemc", + "name": "SystemC", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Apache Software License 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1753563" + ], + "created_at": "2026-07-10T10:12:43.277220", + "updated_at": "2026-07-10T10:12:43.277220", + "url": "/v1/software/systemc" +} diff --git a/site/public/v1/software/systemd-m4/index.json b/site/public/v1/software/systemd-m4/index.json new file mode 100644 index 000000000000..721478e7161f --- /dev/null +++ b/site/public/v1/software/systemd-m4/index.json @@ -0,0 +1,19 @@ +{ + "id": 9880, + "slug": "systemd-m4", + "name": "systemd-m4", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975512" + ], + "created_at": "2026-07-10T10:12:43.278222", + "updated_at": "2026-07-10T10:12:43.278222", + "url": "/v1/software/systemd-m4" +} diff --git a/site/public/v1/software/systems-tool-kit/index.json b/site/public/v1/software/systems-tool-kit/index.json new file mode 100644 index 000000000000..23933db07559 --- /dev/null +++ b/site/public/v1/software/systems-tool-kit/index.json @@ -0,0 +1,21 @@ +{ + "id": 9881, + "slug": "systems-tool-kit", + "name": "Systems Tool Kit", + "release_date": null, + "developers": [ + "Analytical Graphics" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11173364" + ], + "created_at": "2026-07-10T10:12:43.278222", + "updated_at": "2026-07-10T10:12:43.278222", + "url": "/v1/software/systems-tool-kit" +} diff --git a/site/public/v1/software/systrace/index.json b/site/public/v1/software/systrace/index.json new file mode 100644 index 000000000000..ec56c01cc623 --- /dev/null +++ b/site/public/v1/software/systrace/index.json @@ -0,0 +1,23 @@ +{ + "id": 9882, + "slug": "systrace", + "name": "Systrace", + "release_date": null, + "developers": [ + "Niels Provos" + ], + "publishers": [], + "operating_systems": [ + "Unix-like operating system" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7663906" + ], + "created_at": "2026-07-10T10:12:43.278222", + "updated_at": "2026-07-10T10:12:43.278222", + "url": "/v1/software/systrace" +} diff --git a/site/public/v1/software/t-a-p-text-analysis-program/index.json b/site/public/v1/software/t-a-p-text-analysis-program/index.json new file mode 100644 index 000000000000..945cb3f70856 --- /dev/null +++ b/site/public/v1/software/t-a-p-text-analysis-program/index.json @@ -0,0 +1,19 @@ +{ + "id": 9883, + "slug": "t-a-p-text-analysis-program", + "name": "T.A.P (Text Analysis Program)", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084615" + ], + "created_at": "2026-07-10T10:12:43.279221", + "updated_at": "2026-07-10T10:12:43.279221", + "url": "/v1/software/t-a-p-text-analysis-program" +} diff --git a/site/public/v1/software/t-app-folio/index.json b/site/public/v1/software/t-app-folio/index.json new file mode 100644 index 000000000000..76633928e26a --- /dev/null +++ b/site/public/v1/software/t-app-folio/index.json @@ -0,0 +1,19 @@ +{ + "id": 9884, + "slug": "t-app-folio", + "name": "T App Folio", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q55634573" + ], + "created_at": "2026-07-10T10:12:43.279221", + "updated_at": "2026-07-10T10:12:43.279221", + "url": "/v1/software/t-app-folio" +} diff --git a/site/public/v1/software/t-lab/index.json b/site/public/v1/software/t-lab/index.json new file mode 100644 index 000000000000..e2e0b739e7fd --- /dev/null +++ b/site/public/v1/software/t-lab/index.json @@ -0,0 +1,23 @@ +{ + "id": 9885, + "slug": "t-lab", + "name": "T-Lab", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106323239" + ], + "created_at": "2026-07-10T10:12:43.279221", + "updated_at": "2026-07-10T10:12:43.279221", + "url": "/v1/software/t-lab" +} diff --git a/site/public/v1/software/t-mail/index.json b/site/public/v1/software/t-mail/index.json new file mode 100644 index 000000000000..28962a0c0d2e --- /dev/null +++ b/site/public/v1/software/t-mail/index.json @@ -0,0 +1,21 @@ +{ + "id": 9886, + "slug": "t-mail", + "name": "T-Mail", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4050542" + ], + "created_at": "2026-07-10T10:12:43.279221", + "updated_at": "2026-07-10T10:12:43.279221", + "url": "/v1/software/t-mail" +} diff --git a/site/public/v1/software/t-maker/index.json b/site/public/v1/software/t-maker/index.json new file mode 100644 index 000000000000..2ff0acdf5385 --- /dev/null +++ b/site/public/v1/software/t-maker/index.json @@ -0,0 +1,24 @@ +{ + "id": 9887, + "slug": "t-maker", + "name": "T/Maker", + "release_date": null, + "developers": [ + "Peter Roizen" + ], + "publishers": [], + "operating_systems": [ + "CP/M", + "TRSDOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7668979" + ], + "created_at": "2026-07-10T10:12:43.280220", + "updated_at": "2026-07-10T10:12:43.280220", + "url": "/v1/software/t-maker" +} diff --git a/site/public/v1/software/t-pen/index.json b/site/public/v1/software/t-pen/index.json new file mode 100644 index 000000000000..8e55ce715440 --- /dev/null +++ b/site/public/v1/software/t-pen/index.json @@ -0,0 +1,19 @@ +{ + "id": 9888, + "slug": "t-pen", + "name": "T-PEN", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084675" + ], + "created_at": "2026-07-10T10:12:43.280220", + "updated_at": "2026-07-10T10:12:43.280220", + "url": "/v1/software/t-pen" +} diff --git a/site/public/v1/software/t-rex/index.json b/site/public/v1/software/t-rex/index.json new file mode 100644 index 000000000000..6c7ac97a3dba --- /dev/null +++ b/site/public/v1/software/t-rex/index.json @@ -0,0 +1,19 @@ +{ + "id": 9889, + "slug": "t-rex", + "name": "T-REX", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7667841" + ], + "created_at": "2026-07-10T10:12:43.280220", + "updated_at": "2026-07-10T10:12:43.280220", + "url": "/v1/software/t-rex" +} diff --git a/site/public/v1/software/t-square/index.json b/site/public/v1/software/t-square/index.json new file mode 100644 index 000000000000..9a29ce076ca5 --- /dev/null +++ b/site/public/v1/software/t-square/index.json @@ -0,0 +1,21 @@ +{ + "id": 9890, + "slug": "t-square", + "name": "T-Square", + "release_date": "1962-01-01", + "developers": [ + "Peter Samson" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7667859" + ], + "created_at": "2026-07-10T10:12:43.281221", + "updated_at": "2026-07-10T10:12:43.281221", + "url": "/v1/software/t-square" +} diff --git a/site/public/v1/software/tabbles/index.json b/site/public/v1/software/tabbles/index.json new file mode 100644 index 000000000000..d6c6fbfbf723 --- /dev/null +++ b/site/public/v1/software/tabbles/index.json @@ -0,0 +1,21 @@ +{ + "id": 9891, + "slug": "tabbles", + "name": "Tabbles", + "release_date": "2009-01-01", + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28446372" + ], + "created_at": "2026-07-10T10:12:43.281221", + "updated_at": "2026-07-10T10:12:43.281221", + "url": "/v1/software/tabbles" +} diff --git a/site/public/v1/software/tabello/index.json b/site/public/v1/software/tabello/index.json new file mode 100644 index 000000000000..da1c5fa5c81f --- /dev/null +++ b/site/public/v1/software/tabello/index.json @@ -0,0 +1,19 @@ +{ + "id": 9892, + "slug": "tabello", + "name": "Tabello", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25455344" + ], + "created_at": "2026-07-10T10:12:43.281221", + "updated_at": "2026-07-10T10:12:43.281221", + "url": "/v1/software/tabello" +} diff --git a/site/public/v1/software/table-2-net/index.json b/site/public/v1/software/table-2-net/index.json new file mode 100644 index 000000000000..978452c08df5 --- /dev/null +++ b/site/public/v1/software/table-2-net/index.json @@ -0,0 +1,19 @@ +{ + "id": 9893, + "slug": "table-2-net", + "name": "Table 2 Net", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087732" + ], + "created_at": "2026-07-10T10:12:43.282220", + "updated_at": "2026-07-10T10:12:43.282220", + "url": "/v1/software/table-2-net" +} diff --git a/site/public/v1/software/table-producing-language/index.json b/site/public/v1/software/table-producing-language/index.json new file mode 100644 index 000000000000..596a93d7a0ec --- /dev/null +++ b/site/public/v1/software/table-producing-language/index.json @@ -0,0 +1,19 @@ +{ + "id": 9894, + "slug": "table-producing-language", + "name": "Table Producing Language", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7673158" + ], + "created_at": "2026-07-10T10:12:43.282220", + "updated_at": "2026-07-10T10:12:43.282220", + "url": "/v1/software/table-producing-language" +} diff --git a/site/public/v1/software/tablecurve-2d/index.json b/site/public/v1/software/tablecurve-2d/index.json new file mode 100644 index 000000000000..dd79af6cf4d2 --- /dev/null +++ b/site/public/v1/software/tablecurve-2d/index.json @@ -0,0 +1,19 @@ +{ + "id": 9895, + "slug": "tablecurve-2d", + "name": "TableCurve 2D", + "release_date": "1989-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7673117" + ], + "created_at": "2026-07-10T10:12:43.282220", + "updated_at": "2026-07-10T10:12:43.282220", + "url": "/v1/software/tablecurve-2d" +} diff --git a/site/public/v1/software/tablecurve-3d/index.json b/site/public/v1/software/tablecurve-3d/index.json new file mode 100644 index 000000000000..6f483d2de166 --- /dev/null +++ b/site/public/v1/software/tablecurve-3d/index.json @@ -0,0 +1,19 @@ +{ + "id": 9896, + "slug": "tablecurve-3d", + "name": "TableCurve 3D", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7673118" + ], + "created_at": "2026-07-10T10:12:43.283220", + "updated_at": "2026-07-10T10:12:43.283220", + "url": "/v1/software/tablecurve-3d" +} diff --git a/site/public/v1/software/tablee/index.json b/site/public/v1/software/tablee/index.json new file mode 100644 index 000000000000..664a34f9e902 --- /dev/null +++ b/site/public/v1/software/tablee/index.json @@ -0,0 +1,21 @@ +{ + "id": 9897, + "slug": "tablee", + "name": "Tablee", + "release_date": null, + "developers": [ + "Poofone Technology" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139487763" + ], + "created_at": "2026-07-10T10:12:43.283220", + "updated_at": "2026-07-10T10:12:43.283220", + "url": "/v1/software/tablee" +} diff --git a/site/public/v1/software/tableport/index.json b/site/public/v1/software/tableport/index.json new file mode 100644 index 000000000000..d55fc5017329 --- /dev/null +++ b/site/public/v1/software/tableport/index.json @@ -0,0 +1,19 @@ +{ + "id": 9898, + "slug": "tableport", + "name": "TablePort", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140007940" + ], + "created_at": "2026-07-10T10:12:43.283220", + "updated_at": "2026-07-10T10:12:43.283220", + "url": "/v1/software/tableport" +} diff --git a/site/public/v1/software/tabpfn/index.json b/site/public/v1/software/tabpfn/index.json new file mode 100644 index 000000000000..31951bf52df3 --- /dev/null +++ b/site/public/v1/software/tabpfn/index.json @@ -0,0 +1,19 @@ +{ + "id": 9899, + "slug": "tabpfn", + "name": "TabPFN", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136288530" + ], + "created_at": "2026-07-10T10:12:43.284220", + "updated_at": "2026-07-10T10:12:43.284220", + "url": "/v1/software/tabpfn" +} diff --git a/site/public/v1/software/tabworks/index.json b/site/public/v1/software/tabworks/index.json new file mode 100644 index 000000000000..ebbe1bfb006c --- /dev/null +++ b/site/public/v1/software/tabworks/index.json @@ -0,0 +1,21 @@ +{ + "id": 9900, + "slug": "tabworks", + "name": "TabWorks", + "release_date": null, + "developers": [ + "Xerox" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7672835" + ], + "created_at": "2026-07-10T10:12:43.284220", + "updated_at": "2026-07-10T10:12:43.284220", + "url": "/v1/software/tabworks" +} diff --git a/site/public/v1/software/tachiyomi/index.json b/site/public/v1/software/tachiyomi/index.json new file mode 100644 index 000000000000..9e8bafda52a4 --- /dev/null +++ b/site/public/v1/software/tachiyomi/index.json @@ -0,0 +1,21 @@ +{ + "id": 9901, + "slug": "tachiyomi", + "name": "Tachiyomi", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Apache Software License 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116282967" + ], + "created_at": "2026-07-10T10:12:43.284220", + "updated_at": "2026-07-10T10:12:43.284220", + "url": "/v1/software/tachiyomi" +} diff --git a/site/public/v1/software/tachyon/index.json b/site/public/v1/software/tachyon/index.json new file mode 100644 index 000000000000..9ec3e771a381 --- /dev/null +++ b/site/public/v1/software/tachyon/index.json @@ -0,0 +1,19 @@ +{ + "id": 9902, + "slug": "tachyon", + "name": "Tachyon", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7673866" + ], + "created_at": "2026-07-10T10:12:43.285221", + "updated_at": "2026-07-10T10:12:43.285221", + "url": "/v1/software/tachyon" +} diff --git a/site/public/v1/software/tact-text-analysis-computing-tools/index.json b/site/public/v1/software/tact-text-analysis-computing-tools/index.json new file mode 100644 index 000000000000..0e523833868a --- /dev/null +++ b/site/public/v1/software/tact-text-analysis-computing-tools/index.json @@ -0,0 +1,19 @@ +{ + "id": 9903, + "slug": "tact-text-analysis-computing-tools", + "name": "TACT (Text Analysis Computing Tools)", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084608" + ], + "created_at": "2026-07-10T10:12:43.285221", + "updated_at": "2026-07-10T10:12:43.285221", + "url": "/v1/software/tact-text-analysis-computing-tools" +} diff --git a/site/public/v1/software/tactical-nav/index.json b/site/public/v1/software/tactical-nav/index.json new file mode 100644 index 000000000000..3c93721561ef --- /dev/null +++ b/site/public/v1/software/tactical-nav/index.json @@ -0,0 +1,19 @@ +{ + "id": 9904, + "slug": "tactical-nav", + "name": "Tactical NAV", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109236535" + ], + "created_at": "2026-07-10T10:12:43.285221", + "updated_at": "2026-07-10T10:12:43.285221", + "url": "/v1/software/tactical-nav" +} diff --git a/site/public/v1/software/tactweb-1-0/index.json b/site/public/v1/software/tactweb-1-0/index.json new file mode 100644 index 000000000000..ebabb698d1a2 --- /dev/null +++ b/site/public/v1/software/tactweb-1-0/index.json @@ -0,0 +1,19 @@ +{ + "id": 9905, + "slug": "tactweb-1-0", + "name": "TACTweb 1.0", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084609" + ], + "created_at": "2026-07-10T10:12:43.286220", + "updated_at": "2026-07-10T10:12:43.286220", + "url": "/v1/software/tactweb-1-0" +} diff --git a/site/public/v1/software/tacx-training-desktop-app/index.json b/site/public/v1/software/tacx-training-desktop-app/index.json new file mode 100644 index 000000000000..32225a394e8d --- /dev/null +++ b/site/public/v1/software/tacx-training-desktop-app/index.json @@ -0,0 +1,19 @@ +{ + "id": 9906, + "slug": "tacx-training-desktop-app", + "name": "Tacx Training Desktop App", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106764295" + ], + "created_at": "2026-07-10T10:12:43.286220", + "updated_at": "2026-07-10T10:12:43.286220", + "url": "/v1/software/tacx-training-desktop-app" +} diff --git a/site/public/v1/software/tagaini-jisho/index.json b/site/public/v1/software/tagaini-jisho/index.json new file mode 100644 index 000000000000..a2a86eb53cd3 --- /dev/null +++ b/site/public/v1/software/tagaini-jisho/index.json @@ -0,0 +1,21 @@ +{ + "id": 9907, + "slug": "tagaini-jisho", + "name": "Tagaini Jisho", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "GNU General Public License, version 3.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28465630" + ], + "created_at": "2026-07-10T10:12:43.286862", + "updated_at": "2026-07-10T10:12:43.286862", + "url": "/v1/software/tagaini-jisho" +} diff --git a/site/public/v1/software/tagclouder/index.json b/site/public/v1/software/tagclouder/index.json new file mode 100644 index 000000000000..0559ae5500d4 --- /dev/null +++ b/site/public/v1/software/tagclouder/index.json @@ -0,0 +1,19 @@ +{ + "id": 9908, + "slug": "tagclouder", + "name": "TagClouder", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084610" + ], + "created_at": "2026-07-10T10:12:43.287371", + "updated_at": "2026-07-10T10:12:43.287371", + "url": "/v1/software/tagclouder" +} diff --git a/site/public/v1/software/tagcrowd/index.json b/site/public/v1/software/tagcrowd/index.json new file mode 100644 index 000000000000..1f58f2b8c172 --- /dev/null +++ b/site/public/v1/software/tagcrowd/index.json @@ -0,0 +1,19 @@ +{ + "id": 9909, + "slug": "tagcrowd", + "name": "TagCrowd", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084612" + ], + "created_at": "2026-07-10T10:12:43.287371", + "updated_at": "2026-07-10T10:12:43.287371", + "url": "/v1/software/tagcrowd" +} diff --git a/site/public/v1/software/taglab/index.json b/site/public/v1/software/taglab/index.json new file mode 100644 index 000000000000..1603c5935994 --- /dev/null +++ b/site/public/v1/software/taglab/index.json @@ -0,0 +1,19 @@ +{ + "id": 9910, + "slug": "taglab", + "name": "TagLab", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120643516" + ], + "created_at": "2026-07-10T10:12:43.287371", + "updated_at": "2026-07-10T10:12:43.287371", + "url": "/v1/software/taglab" +} diff --git a/site/public/v1/software/tagnetiq/index.json b/site/public/v1/software/tagnetiq/index.json new file mode 100644 index 000000000000..3d4192505a03 --- /dev/null +++ b/site/public/v1/software/tagnetiq/index.json @@ -0,0 +1,19 @@ +{ + "id": 9911, + "slug": "tagnetiq", + "name": "TagnetIQ", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139827321" + ], + "created_at": "2026-07-10T10:12:43.287371", + "updated_at": "2026-07-10T10:12:43.287371", + "url": "/v1/software/tagnetiq" +} diff --git a/site/public/v1/software/taguette/index.json b/site/public/v1/software/taguette/index.json new file mode 100644 index 000000000000..5f79962ec849 --- /dev/null +++ b/site/public/v1/software/taguette/index.json @@ -0,0 +1,28 @@ +{ + "id": 9912, + "slug": "taguette", + "name": "Taguette", + "release_date": null, + "developers": [ + "Rémi Rampin" + ], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [ + "Python" + ], + "licenses": [ + "3-clause BSD License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q58041970" + ], + "created_at": "2026-07-10T10:12:43.288381", + "updated_at": "2026-07-10T10:12:43.288381", + "url": "/v1/software/taguette" +} diff --git a/site/public/v1/software/take-command-console/index.json b/site/public/v1/software/take-command-console/index.json new file mode 100644 index 000000000000..6cf867dbc790 --- /dev/null +++ b/site/public/v1/software/take-command-console/index.json @@ -0,0 +1,19 @@ +{ + "id": 9913, + "slug": "take-command-console", + "name": "Take Command Console", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q238160" + ], + "created_at": "2026-07-10T10:12:43.288381", + "updated_at": "2026-07-10T10:12:43.288381", + "url": "/v1/software/take-command-console" +} diff --git a/site/public/v1/software/take-command/index.json b/site/public/v1/software/take-command/index.json new file mode 100644 index 000000000000..f9b07d0f2108 --- /dev/null +++ b/site/public/v1/software/take-command/index.json @@ -0,0 +1,19 @@ +{ + "id": 9914, + "slug": "take-command", + "name": "Take Command", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7677590" + ], + "created_at": "2026-07-10T10:12:43.289381", + "updated_at": "2026-07-10T10:12:43.289381", + "url": "/v1/software/take-command" +} diff --git a/site/public/v1/software/talehunt/index.json b/site/public/v1/software/talehunt/index.json new file mode 100644 index 000000000000..4ac030298fa0 --- /dev/null +++ b/site/public/v1/software/talehunt/index.json @@ -0,0 +1,23 @@ +{ + "id": 9915, + "slug": "talehunt", + "name": "Talehunt", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "iOS" + ], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q23680006" + ], + "created_at": "2026-07-10T10:12:43.289381", + "updated_at": "2026-07-10T10:12:43.289381", + "url": "/v1/software/talehunt" +} diff --git a/site/public/v1/software/talend-open-studio-for-data-integration/index.json b/site/public/v1/software/talend-open-studio-for-data-integration/index.json new file mode 100644 index 000000000000..9b43670ed10a --- /dev/null +++ b/site/public/v1/software/talend-open-studio-for-data-integration/index.json @@ -0,0 +1,23 @@ +{ + "id": 9916, + "slug": "talend-open-studio-for-data-integration", + "name": "Talend Open Studio for Data Integration", + "release_date": null, + "developers": [ + "Talend" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Java" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17097860" + ], + "created_at": "2026-07-10T10:12:43.289381", + "updated_at": "2026-07-10T10:12:43.289381", + "url": "/v1/software/talend-open-studio-for-data-integration" +} diff --git a/site/public/v1/software/talent-one-atlas/index.json b/site/public/v1/software/talent-one-atlas/index.json new file mode 100644 index 000000000000..4a7a5b7f0629 --- /dev/null +++ b/site/public/v1/software/talent-one-atlas/index.json @@ -0,0 +1,21 @@ +{ + "id": 9917, + "slug": "talent-one-atlas", + "name": "Talent One Atlas", + "release_date": null, + "developers": [ + "Talent One Capital Partners" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139970653" + ], + "created_at": "2026-07-10T10:12:43.289381", + "updated_at": "2026-07-10T10:12:43.289381", + "url": "/v1/software/talent-one-atlas" +} diff --git a/site/public/v1/software/tales-of-monkey-island-chapter-2-the-siege-of-spinner-cay/index.json b/site/public/v1/software/tales-of-monkey-island-chapter-2-the-siege-of-spinner-cay/index.json new file mode 100644 index 000000000000..f26e1262d712 --- /dev/null +++ b/site/public/v1/software/tales-of-monkey-island-chapter-2-the-siege-of-spinner-cay/index.json @@ -0,0 +1,26 @@ +{ + "id": 9918, + "slug": "tales-of-monkey-island-chapter-2-the-siege-of-spinner-cay", + "name": "Tales of Monkey Island: Chapter 2 - The Siege of Spinner Cay", + "release_date": "2009-08-20", + "developers": [ + "LCG Entertainment, Inc." + ], + "publishers": [ + "LCG Entertainment, Inc." + ], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [ + "adventure video game", + "role-playing video game" + ], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q89281071" + ], + "created_at": "2026-07-10T10:12:43.289381", + "updated_at": "2026-07-10T10:12:43.289381", + "url": "/v1/software/tales-of-monkey-island-chapter-2-the-siege-of-spinner-cay" +} diff --git a/site/public/v1/software/tales-of-monkey-island-the-trial-and-execution-of-guybrush-threepwood/index.json b/site/public/v1/software/tales-of-monkey-island-the-trial-and-execution-of-guybrush-threepwood/index.json new file mode 100644 index 000000000000..a0a117243611 --- /dev/null +++ b/site/public/v1/software/tales-of-monkey-island-the-trial-and-execution-of-guybrush-threepwood/index.json @@ -0,0 +1,26 @@ +{ + "id": 9919, + "slug": "tales-of-monkey-island-the-trial-and-execution-of-guybrush-threepwood", + "name": "Tales of Monkey Island: The Trial and Execution of Guybrush Threepwood", + "release_date": "2009-10-07", + "developers": [ + "LCG Entertainment, Inc." + ], + "publishers": [ + "LCG Entertainment, Inc." + ], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [ + "adventure video game", + "role-playing video game" + ], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q89281073" + ], + "created_at": "2026-07-10T10:12:43.290386", + "updated_at": "2026-07-10T10:12:43.290386", + "url": "/v1/software/tales-of-monkey-island-the-trial-and-execution-of-guybrush-threepwood" +} diff --git a/site/public/v1/software/talk-it/index.json b/site/public/v1/software/talk-it/index.json new file mode 100644 index 000000000000..cffa1b7fe843 --- /dev/null +++ b/site/public/v1/software/talk-it/index.json @@ -0,0 +1,23 @@ +{ + "id": 9920, + "slug": "talk-it", + "name": "Talk It!", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7679652" + ], + "created_at": "2026-07-10T10:12:43.290386", + "updated_at": "2026-07-10T10:12:43.290386", + "url": "/v1/software/talk-it" +} diff --git a/site/public/v1/software/talkbits/index.json b/site/public/v1/software/talkbits/index.json new file mode 100644 index 000000000000..8d3f3df66458 --- /dev/null +++ b/site/public/v1/software/talkbits/index.json @@ -0,0 +1,19 @@ +{ + "id": 9921, + "slug": "talkbits", + "name": "Talkbits", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7679727" + ], + "created_at": "2026-07-10T10:12:43.290386", + "updated_at": "2026-07-10T10:12:43.290386", + "url": "/v1/software/talkbits" +} diff --git a/site/public/v1/software/talkbox-voice-messenger/index.json b/site/public/v1/software/talkbox-voice-messenger/index.json new file mode 100644 index 000000000000..e59f4ab5d502 --- /dev/null +++ b/site/public/v1/software/talkbox-voice-messenger/index.json @@ -0,0 +1,21 @@ +{ + "id": 9922, + "slug": "talkbox-voice-messenger", + "name": "TalkBox Voice Messenger", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "iOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7679607" + ], + "created_at": "2026-07-10T10:12:43.291449", + "updated_at": "2026-07-10T10:12:43.291449", + "url": "/v1/software/talkbox-voice-messenger" +} diff --git a/site/public/v1/software/talking-moose/index.json b/site/public/v1/software/talking-moose/index.json new file mode 100644 index 000000000000..60e4629d1d3a --- /dev/null +++ b/site/public/v1/software/talking-moose/index.json @@ -0,0 +1,21 @@ +{ + "id": 9923, + "slug": "talking-moose", + "name": "Talking Moose", + "release_date": null, + "developers": [ + "Apple Inc." + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7679829" + ], + "created_at": "2026-07-10T10:12:43.291449", + "updated_at": "2026-07-10T10:12:43.291449", + "url": "/v1/software/talking-moose" +} diff --git a/site/public/v1/software/talkomatic/index.json b/site/public/v1/software/talkomatic/index.json new file mode 100644 index 000000000000..7480440d34aa --- /dev/null +++ b/site/public/v1/software/talkomatic/index.json @@ -0,0 +1,21 @@ +{ + "id": 9924, + "slug": "talkomatic", + "name": "Talkomatic", + "release_date": null, + "developers": [ + "David R. Woolley" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18387779" + ], + "created_at": "2026-07-10T10:12:43.291449", + "updated_at": "2026-07-10T10:12:43.291449", + "url": "/v1/software/talkomatic" +} diff --git a/site/public/v1/software/talktalk-tv-store/index.json b/site/public/v1/software/talktalk-tv-store/index.json new file mode 100644 index 000000000000..5054ae4c1dcd --- /dev/null +++ b/site/public/v1/software/talktalk-tv-store/index.json @@ -0,0 +1,21 @@ +{ + "id": 9925, + "slug": "talktalk-tv-store", + "name": "TalkTalk TV Store", + "release_date": null, + "developers": [ + "TalkTalk Group" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4926763" + ], + "created_at": "2026-07-10T10:12:43.291449", + "updated_at": "2026-07-10T10:12:43.291449", + "url": "/v1/software/talktalk-tv-store" +} diff --git a/site/public/v1/software/tally-erp-9/index.json b/site/public/v1/software/tally-erp-9/index.json new file mode 100644 index 000000000000..beb11043098f --- /dev/null +++ b/site/public/v1/software/tally-erp-9/index.json @@ -0,0 +1,19 @@ +{ + "id": 9926, + "slug": "tally-erp-9", + "name": "Tally.ERP 9", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q65085911" + ], + "created_at": "2026-07-10T10:12:43.292482", + "updated_at": "2026-07-10T10:12:43.292482", + "url": "/v1/software/tally-erp-9" +} diff --git a/site/public/v1/software/tally-up/index.json b/site/public/v1/software/tally-up/index.json new file mode 100644 index 000000000000..c55fb4ed293c --- /dev/null +++ b/site/public/v1/software/tally-up/index.json @@ -0,0 +1,19 @@ +{ + "id": 9927, + "slug": "tally-up", + "name": "Tally Up", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138985698" + ], + "created_at": "2026-07-10T10:12:43.292482", + "updated_at": "2026-07-10T10:12:43.292482", + "url": "/v1/software/tally-up" +} diff --git a/site/public/v1/software/tallyprime/index.json b/site/public/v1/software/tallyprime/index.json new file mode 100644 index 000000000000..d333bfb31358 --- /dev/null +++ b/site/public/v1/software/tallyprime/index.json @@ -0,0 +1,19 @@ +{ + "id": 9928, + "slug": "tallyprime", + "name": "TallyPrime", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105063153" + ], + "created_at": "2026-07-10T10:12:43.292482", + "updated_at": "2026-07-10T10:12:43.292482", + "url": "/v1/software/tallyprime" +} diff --git a/site/public/v1/software/tamarin-prover/index.json b/site/public/v1/software/tamarin-prover/index.json new file mode 100644 index 000000000000..9d3f9db44346 --- /dev/null +++ b/site/public/v1/software/tamarin-prover/index.json @@ -0,0 +1,19 @@ +{ + "id": 9929, + "slug": "tamarin-prover", + "name": "Tamarin Prover", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q42888015" + ], + "created_at": "2026-07-10T10:12:43.293553", + "updated_at": "2026-07-10T10:12:43.293553", + "url": "/v1/software/tamarin-prover" +} diff --git a/site/public/v1/software/tame-it/index.json b/site/public/v1/software/tame-it/index.json new file mode 100644 index 000000000000..f2974e8d385d --- /dev/null +++ b/site/public/v1/software/tame-it/index.json @@ -0,0 +1,19 @@ +{ + "id": 9930, + "slug": "tame-it", + "name": "Tame.it", + "release_date": "2012-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q14657721" + ], + "created_at": "2026-07-10T10:12:43.293553", + "updated_at": "2026-07-10T10:12:43.293553", + "url": "/v1/software/tame-it" +} diff --git a/site/public/v1/software/tamea/index.json b/site/public/v1/software/tamea/index.json new file mode 100644 index 000000000000..959b040a339a --- /dev/null +++ b/site/public/v1/software/tamea/index.json @@ -0,0 +1,21 @@ +{ + "id": 9931, + "slug": "tamea", + "name": "Tamea", + "release_date": null, + "developers": [ + "Nena Celeste UG" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139282824" + ], + "created_at": "2026-07-10T10:12:43.294378", + "updated_at": "2026-07-10T10:12:43.294378", + "url": "/v1/software/tamea" +} diff --git a/site/public/v1/software/tamograph-site-survey/index.json b/site/public/v1/software/tamograph-site-survey/index.json new file mode 100644 index 000000000000..d47855d7bf53 --- /dev/null +++ b/site/public/v1/software/tamograph-site-survey/index.json @@ -0,0 +1,19 @@ +{ + "id": 9932, + "slug": "tamograph-site-survey", + "name": "TamoGraph Site Survey", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7681627" + ], + "created_at": "2026-07-10T10:12:43.294378", + "updated_at": "2026-07-10T10:12:43.294378", + "url": "/v1/software/tamograph-site-survey" +} diff --git a/site/public/v1/software/tamsys/index.json b/site/public/v1/software/tamsys/index.json new file mode 100644 index 000000000000..2bc61948a8ac --- /dev/null +++ b/site/public/v1/software/tamsys/index.json @@ -0,0 +1,23 @@ +{ + "id": 9933, + "slug": "tamsys", + "name": "TamSys", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "macOS" + ], + "programming_languages": [], + "licenses": [ + "GNU General Public License, version 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105229772" + ], + "created_at": "2026-07-10T10:12:43.294378", + "updated_at": "2026-07-10T10:12:43.294378", + "url": "/v1/software/tamsys" +} diff --git a/site/public/v1/software/tamtam/index.json b/site/public/v1/software/tamtam/index.json new file mode 100644 index 000000000000..c611db494134 --- /dev/null +++ b/site/public/v1/software/tamtam/index.json @@ -0,0 +1,19 @@ +{ + "id": 9934, + "slug": "tamtam", + "name": "TamTam", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137703863" + ], + "created_at": "2026-07-10T10:12:43.295377", + "updated_at": "2026-07-10T10:12:43.295377", + "url": "/v1/software/tamtam" +} diff --git a/site/public/v1/software/tanagra/index.json b/site/public/v1/software/tanagra/index.json new file mode 100644 index 000000000000..dc2f48f346ba --- /dev/null +++ b/site/public/v1/software/tanagra/index.json @@ -0,0 +1,27 @@ +{ + "id": 9935, + "slug": "tanagra", + "name": "Tanagra", + "release_date": null, + "developers": [ + "Lumière University Lyon 2" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [ + "Delphi" + ], + "licenses": [ + "open source" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3514922" + ], + "created_at": "2026-07-10T10:12:43.295377", + "updated_at": "2026-07-10T10:12:43.295377", + "url": "/v1/software/tanagra" +} diff --git a/site/public/v1/software/tanaguru/index.json b/site/public/v1/software/tanaguru/index.json new file mode 100644 index 000000000000..e1a215302f84 --- /dev/null +++ b/site/public/v1/software/tanaguru/index.json @@ -0,0 +1,19 @@ +{ + "id": 9936, + "slug": "tanaguru", + "name": "Tanaguru", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q94086638" + ], + "created_at": "2026-07-10T10:12:43.295377", + "updated_at": "2026-07-10T10:12:43.295377", + "url": "/v1/software/tanaguru" +} diff --git a/site/public/v1/software/tandberg-movi/index.json b/site/public/v1/software/tandberg-movi/index.json new file mode 100644 index 000000000000..24efe8a67487 --- /dev/null +++ b/site/public/v1/software/tandberg-movi/index.json @@ -0,0 +1,21 @@ +{ + "id": 9937, + "slug": "tandberg-movi", + "name": "Tandberg Movi", + "release_date": null, + "developers": [ + "Tandberg" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7682415" + ], + "created_at": "2026-07-10T10:12:43.295377", + "updated_at": "2026-07-10T10:12:43.295377", + "url": "/v1/software/tandberg-movi" +} diff --git a/site/public/v1/software/tangle/index.json b/site/public/v1/software/tangle/index.json new file mode 100644 index 000000000000..82e8b11f7a06 --- /dev/null +++ b/site/public/v1/software/tangle/index.json @@ -0,0 +1,19 @@ +{ + "id": 9938, + "slug": "tangle", + "name": "Tangle", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084614" + ], + "created_at": "2026-07-10T10:12:43.296381", + "updated_at": "2026-07-10T10:12:43.296381", + "url": "/v1/software/tangle" +} diff --git a/site/public/v1/software/tango-desktop-project/index.json b/site/public/v1/software/tango-desktop-project/index.json new file mode 100644 index 000000000000..eac356e661d3 --- /dev/null +++ b/site/public/v1/software/tango-desktop-project/index.json @@ -0,0 +1,19 @@ +{ + "id": 9939, + "slug": "tango-desktop-project", + "name": "Tango Desktop Project", + "release_date": "2006-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1463840" + ], + "created_at": "2026-07-10T10:12:43.296381", + "updated_at": "2026-07-10T10:12:43.296381", + "url": "/v1/software/tango-desktop-project" +} diff --git a/site/public/v1/software/tango-live/index.json b/site/public/v1/software/tango-live/index.json new file mode 100644 index 000000000000..3cc6be3ae940 --- /dev/null +++ b/site/public/v1/software/tango-live/index.json @@ -0,0 +1,19 @@ +{ + "id": 9940, + "slug": "tango-live", + "name": "Tango Live", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108770763" + ], + "created_at": "2026-07-10T10:12:43.296381", + "updated_at": "2026-07-10T10:12:43.296381", + "url": "/v1/software/tango-live" +} diff --git a/site/public/v1/software/tango/index.json b/site/public/v1/software/tango/index.json new file mode 100644 index 000000000000..3eca911fe122 --- /dev/null +++ b/site/public/v1/software/tango/index.json @@ -0,0 +1,21 @@ +{ + "id": 9941, + "slug": "tango", + "name": "Tango", + "release_date": "2014-06-05", + "developers": [ + "Google" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q15952517" + ], + "created_at": "2026-07-10T10:12:43.297382", + "updated_at": "2026-07-10T10:12:43.297382", + "url": "/v1/software/tango" +} diff --git a/site/public/v1/software/tao-framework/index.json b/site/public/v1/software/tao-framework/index.json new file mode 100644 index 000000000000..b66e0950b83d --- /dev/null +++ b/site/public/v1/software/tao-framework/index.json @@ -0,0 +1,21 @@ +{ + "id": 9942, + "slug": "tao-framework", + "name": "Tao Framework", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4050702" + ], + "created_at": "2026-07-10T10:12:43.297382", + "updated_at": "2026-07-10T10:12:43.297382", + "url": "/v1/software/tao-framework" +} diff --git a/site/public/v1/software/tapaal-model-checker/index.json b/site/public/v1/software/tapaal-model-checker/index.json new file mode 100644 index 000000000000..c215f1b7f69a --- /dev/null +++ b/site/public/v1/software/tapaal-model-checker/index.json @@ -0,0 +1,21 @@ +{ + "id": 9943, + "slug": "tapaal-model-checker", + "name": "TAPAAL Model Checker", + "release_date": null, + "developers": [ + "Aalborg University" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7669325" + ], + "created_at": "2026-07-10T10:12:43.297382", + "updated_at": "2026-07-10T10:12:43.297382", + "url": "/v1/software/tapaal-model-checker" +} diff --git a/site/public/v1/software/tapatalk/index.json b/site/public/v1/software/tapatalk/index.json new file mode 100644 index 000000000000..fd635c27b742 --- /dev/null +++ b/site/public/v1/software/tapatalk/index.json @@ -0,0 +1,19 @@ +{ + "id": 9944, + "slug": "tapatalk", + "name": "Tapatalk", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7684473" + ], + "created_at": "2026-07-10T10:12:43.297382", + "updated_at": "2026-07-10T10:12:43.297382", + "url": "/v1/software/tapatalk" +} diff --git a/site/public/v1/software/tapestrea/index.json b/site/public/v1/software/tapestrea/index.json new file mode 100644 index 000000000000..61fd9772304f --- /dev/null +++ b/site/public/v1/software/tapestrea/index.json @@ -0,0 +1,19 @@ +{ + "id": 9945, + "slug": "tapestrea", + "name": "tapestrea", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60917976" + ], + "created_at": "2026-07-10T10:12:43.298441", + "updated_at": "2026-07-10T10:12:43.298441", + "url": "/v1/software/tapestrea" +} diff --git a/site/public/v1/software/tapestry/index.json b/site/public/v1/software/tapestry/index.json new file mode 100644 index 000000000000..e5f1798b58d9 --- /dev/null +++ b/site/public/v1/software/tapestry/index.json @@ -0,0 +1,19 @@ +{ + "id": 9946, + "slug": "tapestry", + "name": "Tapestry", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3515447" + ], + "created_at": "2026-07-10T10:12:43.298441", + "updated_at": "2026-07-10T10:12:43.298441", + "url": "/v1/software/tapestry" +} diff --git a/site/public/v1/software/tardis/index.json b/site/public/v1/software/tardis/index.json new file mode 100644 index 000000000000..b5d34af28262 --- /dev/null +++ b/site/public/v1/software/tardis/index.json @@ -0,0 +1,19 @@ +{ + "id": 9947, + "slug": "tardis", + "name": "TARDIS", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124372683" + ], + "created_at": "2026-07-10T10:12:43.299438", + "updated_at": "2026-07-10T10:12:43.299438", + "url": "/v1/software/tardis" +} diff --git a/site/public/v1/software/targetcli/index.json b/site/public/v1/software/targetcli/index.json new file mode 100644 index 000000000000..cfb616f058c0 --- /dev/null +++ b/site/public/v1/software/targetcli/index.json @@ -0,0 +1,21 @@ +{ + "id": 9948, + "slug": "targetcli", + "name": "targetcli", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Apache License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975513" + ], + "created_at": "2026-07-10T10:12:43.299438", + "updated_at": "2026-07-10T10:12:43.299438", + "url": "/v1/software/targetcli" +} diff --git a/site/public/v1/software/targetlink/index.json b/site/public/v1/software/targetlink/index.json new file mode 100644 index 000000000000..a871db974167 --- /dev/null +++ b/site/public/v1/software/targetlink/index.json @@ -0,0 +1,21 @@ +{ + "id": 9949, + "slug": "targetlink", + "name": "TargetLink", + "release_date": null, + "developers": [ + "dSPACE GmbH" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2394119" + ], + "created_at": "2026-07-10T10:12:43.299438", + "updated_at": "2026-07-10T10:12:43.299438", + "url": "/v1/software/targetlink" +} diff --git a/site/public/v1/software/tariff-monitor/index.json b/site/public/v1/software/tariff-monitor/index.json new file mode 100644 index 000000000000..cbe44e49bec2 --- /dev/null +++ b/site/public/v1/software/tariff-monitor/index.json @@ -0,0 +1,19 @@ +{ + "id": 9950, + "slug": "tariff-monitor", + "name": "Tariff Monitor", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139856698" + ], + "created_at": "2026-07-10T10:12:43.299438", + "updated_at": "2026-07-10T10:12:43.299438", + "url": "/v1/software/tariff-monitor" +} diff --git a/site/public/v1/software/tartiflette/index.json b/site/public/v1/software/tartiflette/index.json new file mode 100644 index 000000000000..b93045ba84a6 --- /dev/null +++ b/site/public/v1/software/tartiflette/index.json @@ -0,0 +1,23 @@ +{ + "id": 9951, + "slug": "tartiflette", + "name": "Tartiflette", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Python" + ], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q64846055" + ], + "created_at": "2026-07-10T10:12:43.300437", + "updated_at": "2026-07-10T10:12:43.300437", + "url": "/v1/software/tartiflette" +} diff --git a/site/public/v1/software/task-manager/index.json b/site/public/v1/software/task-manager/index.json new file mode 100644 index 000000000000..fc67e7bdcf22 --- /dev/null +++ b/site/public/v1/software/task-manager/index.json @@ -0,0 +1,23 @@ +{ + "id": 9952, + "slug": "task-manager", + "name": "Task Manager", + "release_date": "1996-08-24", + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q873463" + ], + "created_at": "2026-07-10T10:12:43.300437", + "updated_at": "2026-07-10T10:12:43.300437", + "url": "/v1/software/task-manager" +} diff --git a/site/public/v1/software/taskcracker-for-outlook/index.json b/site/public/v1/software/taskcracker-for-outlook/index.json new file mode 100644 index 000000000000..ebb27d24fea9 --- /dev/null +++ b/site/public/v1/software/taskcracker-for-outlook/index.json @@ -0,0 +1,19 @@ +{ + "id": 9953, + "slug": "taskcracker-for-outlook", + "name": "TaskCracker for Outlook", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q15290011" + ], + "created_at": "2026-07-10T10:12:43.300437", + "updated_at": "2026-07-10T10:12:43.300437", + "url": "/v1/software/taskcracker-for-outlook" +} diff --git a/site/public/v1/software/taskkill/index.json b/site/public/v1/software/taskkill/index.json new file mode 100644 index 000000000000..b507bcd90b7d --- /dev/null +++ b/site/public/v1/software/taskkill/index.json @@ -0,0 +1,19 @@ +{ + "id": 9954, + "slug": "taskkill", + "name": "taskkill", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q9355797" + ], + "created_at": "2026-07-10T10:12:43.301534", + "updated_at": "2026-07-10T10:12:43.301534", + "url": "/v1/software/taskkill" +} diff --git a/site/public/v1/software/taskmax/index.json b/site/public/v1/software/taskmax/index.json new file mode 100644 index 000000000000..bbb02d45122b --- /dev/null +++ b/site/public/v1/software/taskmax/index.json @@ -0,0 +1,21 @@ +{ + "id": 9955, + "slug": "taskmax", + "name": "TaskMAX", + "release_date": null, + "developers": [ + "Digital Research" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123135591" + ], + "created_at": "2026-07-10T10:12:43.301534", + "updated_at": "2026-07-10T10:12:43.301534", + "url": "/v1/software/taskmax" +} diff --git a/site/public/v1/software/tasma/index.json b/site/public/v1/software/tasma/index.json new file mode 100644 index 000000000000..6d4f44af2b96 --- /dev/null +++ b/site/public/v1/software/tasma/index.json @@ -0,0 +1,19 @@ +{ + "id": 9956, + "slug": "tasma", + "name": "TASMA", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6091257" + ], + "created_at": "2026-07-10T10:12:43.301534", + "updated_at": "2026-07-10T10:12:43.301534", + "url": "/v1/software/tasma" +} diff --git a/site/public/v1/software/tasmota/index.json b/site/public/v1/software/tasmota/index.json new file mode 100644 index 000000000000..e9bdfa439fdf --- /dev/null +++ b/site/public/v1/software/tasmota/index.json @@ -0,0 +1,21 @@ +{ + "id": 9957, + "slug": "tasmota", + "name": "Tasmota", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "GNU General Public License, version 3.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q132182120" + ], + "created_at": "2026-07-10T10:12:43.301534", + "updated_at": "2026-07-10T10:12:43.301534", + "url": "/v1/software/tasmota" +} diff --git a/site/public/v1/software/tatoo-issco-tagger-tool/index.json b/site/public/v1/software/tatoo-issco-tagger-tool/index.json new file mode 100644 index 000000000000..9148c84a84f7 --- /dev/null +++ b/site/public/v1/software/tatoo-issco-tagger-tool/index.json @@ -0,0 +1,19 @@ +{ + "id": 9958, + "slug": "tatoo-issco-tagger-tool", + "name": "TATOO (ISSCO Tagger Tool)", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087733" + ], + "created_at": "2026-07-10T10:12:43.302530", + "updated_at": "2026-07-10T10:12:43.302530", + "url": "/v1/software/tatoo-issco-tagger-tool" +} diff --git a/site/public/v1/software/tatt/index.json b/site/public/v1/software/tatt/index.json new file mode 100644 index 000000000000..dd5074c55728 --- /dev/null +++ b/site/public/v1/software/tatt/index.json @@ -0,0 +1,19 @@ +{ + "id": 9959, + "slug": "tatt", + "name": "tatt", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975514" + ], + "created_at": "2026-07-10T10:12:43.302530", + "updated_at": "2026-07-10T10:12:43.302530", + "url": "/v1/software/tatt" +} diff --git a/site/public/v1/software/taverna/index.json b/site/public/v1/software/taverna/index.json new file mode 100644 index 000000000000..9f24d68d57ee --- /dev/null +++ b/site/public/v1/software/taverna/index.json @@ -0,0 +1,21 @@ +{ + "id": 9960, + "slug": "taverna", + "name": "TaveRNA", + "release_date": null, + "developers": [ + "Simon Fraser University" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7689046" + ], + "created_at": "2026-07-10T10:12:43.303506", + "updated_at": "2026-07-10T10:12:43.303506", + "url": "/v1/software/taverna" +} diff --git a/site/public/v1/software/tawkers/index.json b/site/public/v1/software/tawkers/index.json new file mode 100644 index 000000000000..f69c51be9ee9 --- /dev/null +++ b/site/public/v1/software/tawkers/index.json @@ -0,0 +1,19 @@ +{ + "id": 9961, + "slug": "tawkers", + "name": "Tawkers", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18154795" + ], + "created_at": "2026-07-10T10:12:43.303506", + "updated_at": "2026-07-10T10:12:43.303506", + "url": "/v1/software/tawkers" +} diff --git a/site/public/v1/software/tawkon/index.json b/site/public/v1/software/tawkon/index.json new file mode 100644 index 000000000000..519a196b83b6 --- /dev/null +++ b/site/public/v1/software/tawkon/index.json @@ -0,0 +1,19 @@ +{ + "id": 9962, + "slug": "tawkon", + "name": "Tawkon", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7689297" + ], + "created_at": "2026-07-10T10:12:43.303506", + "updated_at": "2026-07-10T10:12:43.303506", + "url": "/v1/software/tawkon" +} diff --git a/site/public/v1/software/tax-calculation-system/index.json b/site/public/v1/software/tax-calculation-system/index.json new file mode 100644 index 000000000000..79e6a0d20122 --- /dev/null +++ b/site/public/v1/software/tax-calculation-system/index.json @@ -0,0 +1,19 @@ +{ + "id": 9963, + "slug": "tax-calculation-system", + "name": "Tax calculation system", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140247012" + ], + "created_at": "2026-07-10T10:12:43.303506", + "updated_at": "2026-07-10T10:12:43.303506", + "url": "/v1/software/tax-calculation-system" +} diff --git a/site/public/v1/software/tax-heaven-3000/index.json b/site/public/v1/software/tax-heaven-3000/index.json new file mode 100644 index 000000000000..47f6a74db6cf --- /dev/null +++ b/site/public/v1/software/tax-heaven-3000/index.json @@ -0,0 +1,24 @@ +{ + "id": 9964, + "slug": "tax-heaven-3000", + "name": "Tax Heaven 3000", + "release_date": "2023-04-04", + "developers": [ + "MSCHF" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [ + "dating sim", + "visual novel" + ], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123407134" + ], + "created_at": "2026-07-10T10:12:43.304512", + "updated_at": "2026-07-10T10:12:43.304512", + "url": "/v1/software/tax-heaven-3000" +} diff --git a/site/public/v1/software/taxact/index.json b/site/public/v1/software/taxact/index.json new file mode 100644 index 000000000000..d9c8bb246557 --- /dev/null +++ b/site/public/v1/software/taxact/index.json @@ -0,0 +1,19 @@ +{ + "id": 9965, + "slug": "taxact", + "name": "TaxACT", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7689357" + ], + "created_at": "2026-07-10T10:12:43.304512", + "updated_at": "2026-07-10T10:12:43.304512", + "url": "/v1/software/taxact" +} diff --git a/site/public/v1/software/taxcloud/index.json b/site/public/v1/software/taxcloud/index.json new file mode 100644 index 000000000000..0549af01229c --- /dev/null +++ b/site/public/v1/software/taxcloud/index.json @@ -0,0 +1,19 @@ +{ + "id": 9966, + "slug": "taxcloud", + "name": "TaxCloud", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122877964" + ], + "created_at": "2026-07-10T10:12:43.304512", + "updated_at": "2026-07-10T10:12:43.304512", + "url": "/v1/software/taxcloud" +} diff --git a/site/public/v1/software/taxottic/index.json b/site/public/v1/software/taxottic/index.json new file mode 100644 index 000000000000..1c23f593ad00 --- /dev/null +++ b/site/public/v1/software/taxottic/index.json @@ -0,0 +1,21 @@ +{ + "id": 9967, + "slug": "taxottic", + "name": "Taxottic", + "release_date": null, + "developers": [ + "Techno Optics LLC" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140132105" + ], + "created_at": "2026-07-10T10:12:43.305502", + "updated_at": "2026-07-10T10:12:43.305502", + "url": "/v1/software/taxottic" +} diff --git a/site/public/v1/software/tazman/index.json b/site/public/v1/software/tazman/index.json new file mode 100644 index 000000000000..ddcd918aae48 --- /dev/null +++ b/site/public/v1/software/tazman/index.json @@ -0,0 +1,19 @@ +{ + "id": 9968, + "slug": "tazman", + "name": "TAZMAN", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138808513" + ], + "created_at": "2026-07-10T10:12:43.305502", + "updated_at": "2026-07-10T10:12:43.305502", + "url": "/v1/software/tazman" +} diff --git a/site/public/v1/software/tbil/index.json b/site/public/v1/software/tbil/index.json new file mode 100644 index 000000000000..e2973a9d0a5a --- /dev/null +++ b/site/public/v1/software/tbil/index.json @@ -0,0 +1,19 @@ +{ + "id": 9969, + "slug": "tbil", + "name": "TBIL", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7669549" + ], + "created_at": "2026-07-10T10:12:43.305502", + "updated_at": "2026-07-10T10:12:43.305502", + "url": "/v1/software/tbil" +} diff --git a/site/public/v1/software/tcov/index.json b/site/public/v1/software/tcov/index.json new file mode 100644 index 000000000000..545e69ab04e3 --- /dev/null +++ b/site/public/v1/software/tcov/index.json @@ -0,0 +1,21 @@ +{ + "id": 9970, + "slug": "tcov", + "name": "Tcov", + "release_date": null, + "developers": [ + "Oracle Corporation" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7690698" + ], + "created_at": "2026-07-10T10:12:43.306493", + "updated_at": "2026-07-10T10:12:43.306493", + "url": "/v1/software/tcov" +} diff --git a/site/public/v1/software/tcpaccess/index.json b/site/public/v1/software/tcpaccess/index.json new file mode 100644 index 000000000000..e38bd3551a22 --- /dev/null +++ b/site/public/v1/software/tcpaccess/index.json @@ -0,0 +1,19 @@ +{ + "id": 9971, + "slug": "tcpaccess", + "name": "TCPaccess", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7669765" + ], + "created_at": "2026-07-10T10:12:43.306493", + "updated_at": "2026-07-10T10:12:43.306493", + "url": "/v1/software/tcpaccess" +} diff --git a/site/public/v1/software/tcpreplay/index.json b/site/public/v1/software/tcpreplay/index.json new file mode 100644 index 000000000000..cdc4b2a7c7bf --- /dev/null +++ b/site/public/v1/software/tcpreplay/index.json @@ -0,0 +1,19 @@ +{ + "id": 9972, + "slug": "tcpreplay", + "name": "tcpreplay", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127474414" + ], + "created_at": "2026-07-10T10:12:43.306493", + "updated_at": "2026-07-10T10:12:43.306493", + "url": "/v1/software/tcpreplay" +} diff --git a/site/public/v1/software/tcs-bancs/index.json b/site/public/v1/software/tcs-bancs/index.json new file mode 100644 index 000000000000..f01a39a1e7a4 --- /dev/null +++ b/site/public/v1/software/tcs-bancs/index.json @@ -0,0 +1,25 @@ +{ + "id": 9973, + "slug": "tcs-bancs", + "name": "TCS BaNCS", + "release_date": null, + "developers": [ + "Tata Consultancy Services" + ], + "publishers": [], + "operating_systems": [ + "cross-platform" + ], + "programming_languages": [ + "Java" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7669773" + ], + "created_at": "2026-07-10T10:12:43.307522", + "updated_at": "2026-07-10T10:12:43.307522", + "url": "/v1/software/tcs-bancs" +} diff --git a/site/public/v1/software/tdb/index.json b/site/public/v1/software/tdb/index.json new file mode 100644 index 000000000000..2e0dcc258116 --- /dev/null +++ b/site/public/v1/software/tdb/index.json @@ -0,0 +1,19 @@ +{ + "id": 9974, + "slug": "tdb", + "name": "TDB", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113991256" + ], + "created_at": "2026-07-10T10:12:43.311497", + "updated_at": "2026-07-10T10:12:43.311497", + "url": "/v1/software/tdb" +} diff --git a/site/public/v1/software/te-ordinative-lora/index.json b/site/public/v1/software/te-ordinative-lora/index.json new file mode 100644 index 000000000000..3f4eb8a7cfdf --- /dev/null +++ b/site/public/v1/software/te-ordinative-lora/index.json @@ -0,0 +1,19 @@ +{ + "id": 9975, + "slug": "te-ordinative-lora", + "name": "TE Ordinative LoRA", + "release_date": "2026-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139698301" + ], + "created_at": "2026-07-10T10:12:43.316095", + "updated_at": "2026-07-10T10:12:43.316095", + "url": "/v1/software/te-ordinative-lora" +} diff --git a/site/public/v1/software/teach2000/index.json b/site/public/v1/software/teach2000/index.json new file mode 100644 index 000000000000..47e8de50a27f --- /dev/null +++ b/site/public/v1/software/teach2000/index.json @@ -0,0 +1,19 @@ +{ + "id": 9976, + "slug": "teach2000", + "name": "Teach2000", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3371399" + ], + "created_at": "2026-07-10T10:12:43.319185", + "updated_at": "2026-07-10T10:12:43.319185", + "url": "/v1/software/teach2000" +} diff --git a/site/public/v1/software/teachaids/index.json b/site/public/v1/software/teachaids/index.json new file mode 100644 index 000000000000..6b9723cdd8cc --- /dev/null +++ b/site/public/v1/software/teachaids/index.json @@ -0,0 +1,19 @@ +{ + "id": 9977, + "slug": "teachaids", + "name": "TeachAIDS", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7691153" + ], + "created_at": "2026-07-10T10:12:43.323180", + "updated_at": "2026-07-10T10:12:43.323180", + "url": "/v1/software/teachaids" +} diff --git a/site/public/v1/software/teachtech/index.json b/site/public/v1/software/teachtech/index.json new file mode 100644 index 000000000000..f0ab82800510 --- /dev/null +++ b/site/public/v1/software/teachtech/index.json @@ -0,0 +1,26 @@ +{ + "id": 9978, + "slug": "teachtech", + "name": "TeachTech", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "iOS", + "macOS", + "Microsoft Windows" + ], + "programming_languages": [ + "PHP", + "Cascading Style Sheets" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q90405674" + ], + "created_at": "2026-07-10T10:12:43.323180", + "updated_at": "2026-07-10T10:12:43.323180", + "url": "/v1/software/teachtech" +} diff --git a/site/public/v1/software/team-foundation-server/index.json b/site/public/v1/software/team-foundation-server/index.json new file mode 100644 index 000000000000..02ff62797cda --- /dev/null +++ b/site/public/v1/software/team-foundation-server/index.json @@ -0,0 +1,21 @@ +{ + "id": 9979, + "slug": "team-foundation-server", + "name": "Team Foundation Server", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106111747" + ], + "created_at": "2026-07-10T10:12:43.326103", + "updated_at": "2026-07-10T10:12:43.326103", + "url": "/v1/software/team-foundation-server" +} diff --git a/site/public/v1/software/teamcenter/index.json b/site/public/v1/software/teamcenter/index.json new file mode 100644 index 000000000000..e3ad47788b88 --- /dev/null +++ b/site/public/v1/software/teamcenter/index.json @@ -0,0 +1,21 @@ +{ + "id": 9980, + "slug": "teamcenter", + "name": "Teamcenter", + "release_date": null, + "developers": [ + "UGS Corp." + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4050773" + ], + "created_at": "2026-07-10T10:12:43.328186", + "updated_at": "2026-07-10T10:12:43.328186", + "url": "/v1/software/teamcenter" +} diff --git a/site/public/v1/software/teamhiiv/index.json b/site/public/v1/software/teamhiiv/index.json new file mode 100644 index 000000000000..07790ceac365 --- /dev/null +++ b/site/public/v1/software/teamhiiv/index.json @@ -0,0 +1,21 @@ +{ + "id": 9981, + "slug": "teamhiiv", + "name": "TeamHiiv", + "release_date": null, + "developers": [ + "ExpandIQ" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138998334" + ], + "created_at": "2026-07-10T10:12:43.329218", + "updated_at": "2026-07-10T10:12:43.329218", + "url": "/v1/software/teamhiiv" +} diff --git a/site/public/v1/software/teamnote/index.json b/site/public/v1/software/teamnote/index.json new file mode 100644 index 000000000000..af5364c1e5bf --- /dev/null +++ b/site/public/v1/software/teamnote/index.json @@ -0,0 +1,19 @@ +{ + "id": 9982, + "slug": "teamnote", + "name": "TeamNote", + "release_date": "2014-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22909286" + ], + "created_at": "2026-07-10T10:12:43.330204", + "updated_at": "2026-07-10T10:12:43.330204", + "url": "/v1/software/teamnote" +} diff --git a/site/public/v1/software/teamsense-inc/index.json b/site/public/v1/software/teamsense-inc/index.json new file mode 100644 index 000000000000..1be82268e4e9 --- /dev/null +++ b/site/public/v1/software/teamsense-inc/index.json @@ -0,0 +1,19 @@ +{ + "id": 9983, + "slug": "teamsense-inc", + "name": "TeamSense Inc", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110163623" + ], + "created_at": "2026-07-10T10:12:43.332189", + "updated_at": "2026-07-10T10:12:43.332189", + "url": "/v1/software/teamsense-inc" +} diff --git a/site/public/v1/software/teamtalk/index.json b/site/public/v1/software/teamtalk/index.json new file mode 100644 index 000000000000..ce204944b055 --- /dev/null +++ b/site/public/v1/software/teamtalk/index.json @@ -0,0 +1,21 @@ +{ + "id": 9984, + "slug": "teamtalk", + "name": "TeamTalk", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25305261" + ], + "created_at": "2026-07-10T10:12:43.333202", + "updated_at": "2026-07-10T10:12:43.333202", + "url": "/v1/software/teamtalk" +} diff --git a/site/public/v1/software/teamwox/index.json b/site/public/v1/software/teamwox/index.json new file mode 100644 index 000000000000..e384abc20265 --- /dev/null +++ b/site/public/v1/software/teamwox/index.json @@ -0,0 +1,21 @@ +{ + "id": 9985, + "slug": "teamwox", + "name": "TeamWox", + "release_date": "2009-01-01", + "developers": [ + "MetaQuotes" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3078041" + ], + "created_at": "2026-07-10T10:12:43.335158", + "updated_at": "2026-07-10T10:12:43.335158", + "url": "/v1/software/teamwox" +} diff --git a/site/public/v1/software/teashark/index.json b/site/public/v1/software/teashark/index.json new file mode 100644 index 000000000000..0c14c1c2f5be --- /dev/null +++ b/site/public/v1/software/teashark/index.json @@ -0,0 +1,23 @@ +{ + "id": 9986, + "slug": "teashark", + "name": "Teashark", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Java" + ], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4050779" + ], + "created_at": "2026-07-10T10:12:43.335158", + "updated_at": "2026-07-10T10:12:43.335158", + "url": "/v1/software/teashark" +} diff --git a/site/public/v1/software/teaspiller/index.json b/site/public/v1/software/teaspiller/index.json new file mode 100644 index 000000000000..ac1062145ed0 --- /dev/null +++ b/site/public/v1/software/teaspiller/index.json @@ -0,0 +1,19 @@ +{ + "id": 9987, + "slug": "teaspiller", + "name": "Teaspiller", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7691857" + ], + "created_at": "2026-07-10T10:12:43.336220", + "updated_at": "2026-07-10T10:12:43.336220", + "url": "/v1/software/teaspiller" +} diff --git a/site/public/v1/software/techexcel-servicewise/index.json b/site/public/v1/software/techexcel-servicewise/index.json new file mode 100644 index 000000000000..6ff4a4f14a3b --- /dev/null +++ b/site/public/v1/software/techexcel-servicewise/index.json @@ -0,0 +1,19 @@ +{ + "id": 9988, + "slug": "techexcel-servicewise", + "name": "TechExcel ServiceWise", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7692117" + ], + "created_at": "2026-07-10T10:12:43.337216", + "updated_at": "2026-07-10T10:12:43.337216", + "url": "/v1/software/techexcel-servicewise" +} diff --git a/site/public/v1/software/techila-grid/index.json b/site/public/v1/software/techila-grid/index.json new file mode 100644 index 000000000000..e969b75ff2a4 --- /dev/null +++ b/site/public/v1/software/techila-grid/index.json @@ -0,0 +1,19 @@ +{ + "id": 9989, + "slug": "techila-grid", + "name": "Techila Grid", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7692200" + ], + "created_at": "2026-07-10T10:12:43.338180", + "updated_at": "2026-07-10T10:12:43.338180", + "url": "/v1/software/techila-grid" +} diff --git a/site/public/v1/software/techinline/index.json b/site/public/v1/software/techinline/index.json new file mode 100644 index 000000000000..7e2710d5286a --- /dev/null +++ b/site/public/v1/software/techinline/index.json @@ -0,0 +1,19 @@ +{ + "id": 9990, + "slug": "techinline", + "name": "Techinline", + "release_date": "2007-08-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7692204" + ], + "created_at": "2026-07-10T10:12:43.339158", + "updated_at": "2026-07-10T10:12:43.339158", + "url": "/v1/software/techinline" +} diff --git a/site/public/v1/software/techlog/index.json b/site/public/v1/software/techlog/index.json new file mode 100644 index 000000000000..ec676077772f --- /dev/null +++ b/site/public/v1/software/techlog/index.json @@ -0,0 +1,19 @@ +{ + "id": 9991, + "slug": "techlog", + "name": "Techlog", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7692210" + ], + "created_at": "2026-07-10T10:12:43.340195", + "updated_at": "2026-07-10T10:12:43.340195", + "url": "/v1/software/techlog" +} diff --git a/site/public/v1/software/technical-information-project/index.json b/site/public/v1/software/technical-information-project/index.json new file mode 100644 index 000000000000..b53f5599e3ed --- /dev/null +++ b/site/public/v1/software/technical-information-project/index.json @@ -0,0 +1,19 @@ +{ + "id": 9992, + "slug": "technical-information-project", + "name": "Technical Information Project", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7692280" + ], + "created_at": "2026-07-10T10:12:43.341104", + "updated_at": "2026-07-10T10:12:43.341104", + "url": "/v1/software/technical-information-project" +} diff --git a/site/public/v1/software/techwriter/index.json b/site/public/v1/software/techwriter/index.json new file mode 100644 index 000000000000..ac617cbb8100 --- /dev/null +++ b/site/public/v1/software/techwriter/index.json @@ -0,0 +1,21 @@ +{ + "id": 9993, + "slug": "techwriter", + "name": "TechWriter", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "RISC OS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22909291" + ], + "created_at": "2026-07-10T10:12:43.341104", + "updated_at": "2026-07-10T10:12:43.341104", + "url": "/v1/software/techwriter" +} diff --git a/site/public/v1/software/tecplot/index.json b/site/public/v1/software/tecplot/index.json new file mode 100644 index 000000000000..9d5d419de435 --- /dev/null +++ b/site/public/v1/software/tecplot/index.json @@ -0,0 +1,21 @@ +{ + "id": 9994, + "slug": "tecplot", + "name": "Tecplot", + "release_date": null, + "developers": [ + "Tecplot (United States)" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3516998" + ], + "created_at": "2026-07-10T10:12:43.341104", + "updated_at": "2026-07-10T10:12:43.341104", + "url": "/v1/software/tecplot" +} diff --git a/site/public/v1/software/tectonic/index.json b/site/public/v1/software/tectonic/index.json new file mode 100644 index 000000000000..e3f8218206d1 --- /dev/null +++ b/site/public/v1/software/tectonic/index.json @@ -0,0 +1,21 @@ +{ + "id": 9995, + "slug": "tectonic", + "name": "Tectonic", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q96473514" + ], + "created_at": "2026-07-10T10:12:43.342195", + "updated_at": "2026-07-10T10:12:43.342195", + "url": "/v1/software/tectonic" +} diff --git a/site/public/v1/software/teechart/index.json b/site/public/v1/software/teechart/index.json new file mode 100644 index 000000000000..738acf41877b --- /dev/null +++ b/site/public/v1/software/teechart/index.json @@ -0,0 +1,19 @@ +{ + "id": 9996, + "slug": "teechart", + "name": "Teechart", + "release_date": "1995-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11951093" + ], + "created_at": "2026-07-10T10:12:43.342195", + "updated_at": "2026-07-10T10:12:43.342195", + "url": "/v1/software/teechart" +} diff --git a/site/public/v1/software/tei-boilerplate/index.json b/site/public/v1/software/tei-boilerplate/index.json new file mode 100644 index 000000000000..6de7a6b84217 --- /dev/null +++ b/site/public/v1/software/tei-boilerplate/index.json @@ -0,0 +1,24 @@ +{ + "id": 9997, + "slug": "tei-boilerplate", + "name": "TEI Boilerplate", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "XSLT", + "Cascading Style Sheets" + ], + "licenses": [ + "Creative Commons Attribution 3.0 Unported" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087734" + ], + "created_at": "2026-07-10T10:12:43.343219", + "updated_at": "2026-07-10T10:12:43.343219", + "url": "/v1/software/tei-boilerplate" +} diff --git a/site/public/v1/software/teia-geo-igo/index.json b/site/public/v1/software/teia-geo-igo/index.json new file mode 100644 index 000000000000..a66fcb2bddc2 --- /dev/null +++ b/site/public/v1/software/teia-geo-igo/index.json @@ -0,0 +1,21 @@ +{ + "id": 9998, + "slug": "teia-geo-igo", + "name": "Teia GEO IGO", + "release_date": null, + "developers": [ + "Teia Studio" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138853832" + ], + "created_at": "2026-07-10T10:12:43.343219", + "updated_at": "2026-07-10T10:12:43.343219", + "url": "/v1/software/teia-geo-igo" +} diff --git a/site/public/v1/software/teicorpo/index.json b/site/public/v1/software/teicorpo/index.json new file mode 100644 index 000000000000..8a472db51e25 --- /dev/null +++ b/site/public/v1/software/teicorpo/index.json @@ -0,0 +1,19 @@ +{ + "id": 9999, + "slug": "teicorpo", + "name": "TEICORPO", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084616" + ], + "created_at": "2026-07-10T10:12:43.344170", + "updated_at": "2026-07-10T10:12:43.344170", + "url": "/v1/software/teicorpo" +} diff --git a/site/public/v1/software/tekla-structures/index.json b/site/public/v1/software/tekla-structures/index.json new file mode 100644 index 000000000000..9370cb609d8e --- /dev/null +++ b/site/public/v1/software/tekla-structures/index.json @@ -0,0 +1,25 @@ +{ + "id": 10000, + "slug": "tekla-structures", + "name": "Tekla Structures", + "release_date": null, + "developers": [ + "Tekla" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q20895278" + ], + "created_at": "2026-07-10T10:12:43.344170", + "updated_at": "2026-07-10T10:12:43.344170", + "url": "/v1/software/tekla-structures" +} diff --git a/site/public/v1/software/teknap/index.json b/site/public/v1/software/teknap/index.json new file mode 100644 index 000000000000..e0243e414392 --- /dev/null +++ b/site/public/v1/software/teknap/index.json @@ -0,0 +1,19 @@ +{ + "id": 10001, + "slug": "teknap", + "name": "TekNap", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1522042" + ], + "created_at": "2026-07-10T10:12:43.344170", + "updated_at": "2026-07-10T10:12:43.344170", + "url": "/v1/software/teknap" +} diff --git a/site/public/v1/software/teko/index.json b/site/public/v1/software/teko/index.json new file mode 100644 index 000000000000..4cdd7aecf20f --- /dev/null +++ b/site/public/v1/software/teko/index.json @@ -0,0 +1,22 @@ +{ + "id": 10002, + "slug": "teko", + "name": "Teko", + "release_date": null, + "developers": [ + "Kielikone", + "Finnish State Computer Centre" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11896834" + ], + "created_at": "2026-07-10T10:12:43.344170", + "updated_at": "2026-07-10T10:12:43.344170", + "url": "/v1/software/teko" +} diff --git a/site/public/v1/software/tektrak/index.json b/site/public/v1/software/tektrak/index.json new file mode 100644 index 000000000000..90f9d6361460 --- /dev/null +++ b/site/public/v1/software/tektrak/index.json @@ -0,0 +1,19 @@ +{ + "id": 10003, + "slug": "tektrak", + "name": "TekTrak", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7695273" + ], + "created_at": "2026-07-10T10:12:43.345165", + "updated_at": "2026-07-10T10:12:43.345165", + "url": "/v1/software/tektrak" +} diff --git a/site/public/v1/software/teleform/index.json b/site/public/v1/software/teleform/index.json new file mode 100644 index 000000000000..94cf2fcde563 --- /dev/null +++ b/site/public/v1/software/teleform/index.json @@ -0,0 +1,21 @@ +{ + "id": 10004, + "slug": "teleform", + "name": "TeleForm", + "release_date": null, + "developers": [ + "Hewlett-Packard" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7695726" + ], + "created_at": "2026-07-10T10:12:43.345165", + "updated_at": "2026-07-10T10:12:43.345165", + "url": "/v1/software/teleform" +} diff --git a/site/public/v1/software/telegard/index.json b/site/public/v1/software/telegard/index.json new file mode 100644 index 000000000000..7dfe106bb4e1 --- /dev/null +++ b/site/public/v1/software/telegard/index.json @@ -0,0 +1,19 @@ +{ + "id": 10005, + "slug": "telegard", + "name": "Telegard", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7696180" + ], + "created_at": "2026-07-10T10:12:43.346180", + "updated_at": "2026-07-10T10:12:43.346180", + "url": "/v1/software/telegard" +} diff --git a/site/public/v1/software/telegram-signal-copier/index.json b/site/public/v1/software/telegram-signal-copier/index.json new file mode 100644 index 000000000000..0bc6c290b311 --- /dev/null +++ b/site/public/v1/software/telegram-signal-copier/index.json @@ -0,0 +1,19 @@ +{ + "id": 10006, + "slug": "telegram-signal-copier", + "name": "Telegram Signal Copier", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139817370" + ], + "created_at": "2026-07-10T10:12:43.346180", + "updated_at": "2026-07-10T10:12:43.346180", + "url": "/v1/software/telegram-signal-copier" +} diff --git a/site/public/v1/software/telehash/index.json b/site/public/v1/software/telehash/index.json new file mode 100644 index 000000000000..787f26da5231 --- /dev/null +++ b/site/public/v1/software/telehash/index.json @@ -0,0 +1,21 @@ +{ + "id": 10007, + "slug": "telehash", + "name": "Telehash", + "release_date": "2010-01-01", + "developers": [ + "Jeremie Miller" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17059301" + ], + "created_at": "2026-07-10T10:12:43.346180", + "updated_at": "2026-07-10T10:12:43.346180", + "url": "/v1/software/telehash" +} diff --git a/site/public/v1/software/telemac/index.json b/site/public/v1/software/telemac/index.json new file mode 100644 index 000000000000..c295cf527f2e --- /dev/null +++ b/site/public/v1/software/telemac/index.json @@ -0,0 +1,19 @@ +{ + "id": 10008, + "slug": "telemac", + "name": "TELEMAC", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7669983" + ], + "created_at": "2026-07-10T10:12:43.346180", + "updated_at": "2026-07-10T10:12:43.346180", + "url": "/v1/software/telemac" +} diff --git a/site/public/v1/software/telepathy-mission-control/index.json b/site/public/v1/software/telepathy-mission-control/index.json new file mode 100644 index 000000000000..28651a40c021 --- /dev/null +++ b/site/public/v1/software/telepathy-mission-control/index.json @@ -0,0 +1,19 @@ +{ + "id": 10009, + "slug": "telepathy-mission-control", + "name": "telepathy-mission-control", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60917793" + ], + "created_at": "2026-07-10T10:12:43.347175", + "updated_at": "2026-07-10T10:12:43.347175", + "url": "/v1/software/telepathy-mission-control" +} diff --git a/site/public/v1/software/telex/index.json b/site/public/v1/software/telex/index.json new file mode 100644 index 000000000000..d3fb2832f908 --- /dev/null +++ b/site/public/v1/software/telex/index.json @@ -0,0 +1,19 @@ +{ + "id": 10010, + "slug": "telex", + "name": "Telex", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q15899477" + ], + "created_at": "2026-07-10T10:12:43.347175", + "updated_at": "2026-07-10T10:12:43.347175", + "url": "/v1/software/telex" +} diff --git a/site/public/v1/software/tellent/index.json b/site/public/v1/software/tellent/index.json new file mode 100644 index 000000000000..01fc870eeb1e --- /dev/null +++ b/site/public/v1/software/tellent/index.json @@ -0,0 +1,19 @@ +{ + "id": 10011, + "slug": "tellent", + "name": "Tellent", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138720229" + ], + "created_at": "2026-07-10T10:12:43.348187", + "updated_at": "2026-07-10T10:12:43.348187", + "url": "/v1/software/tellent" +} diff --git a/site/public/v1/software/tellstar/index.json b/site/public/v1/software/tellstar/index.json new file mode 100644 index 000000000000..5e68bc70bf1e --- /dev/null +++ b/site/public/v1/software/tellstar/index.json @@ -0,0 +1,19 @@ +{ + "id": 10012, + "slug": "tellstar", + "name": "TellStar", + "release_date": "1980-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7697364" + ], + "created_at": "2026-07-10T10:12:43.348187", + "updated_at": "2026-07-10T10:12:43.348187", + "url": "/v1/software/tellstar" +} diff --git a/site/public/v1/software/temp-file-cleaner/index.json b/site/public/v1/software/temp-file-cleaner/index.json new file mode 100644 index 000000000000..3853caa88b8b --- /dev/null +++ b/site/public/v1/software/temp-file-cleaner/index.json @@ -0,0 +1,19 @@ +{ + "id": 10013, + "slug": "temp-file-cleaner", + "name": "Temp File Cleaner", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16953262" + ], + "created_at": "2026-07-10T10:12:43.348187", + "updated_at": "2026-07-10T10:12:43.348187", + "url": "/v1/software/temp-file-cleaner" +} diff --git a/site/public/v1/software/temp-mail/index.json b/site/public/v1/software/temp-mail/index.json new file mode 100644 index 000000000000..3fa3e014c682 --- /dev/null +++ b/site/public/v1/software/temp-mail/index.json @@ -0,0 +1,19 @@ +{ + "id": 10014, + "slug": "temp-mail", + "name": "Temp Mail", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124049549" + ], + "created_at": "2026-07-10T10:12:43.348187", + "updated_at": "2026-07-10T10:12:43.348187", + "url": "/v1/software/temp-mail" +} diff --git a/site/public/v1/software/templated/index.json b/site/public/v1/software/templated/index.json new file mode 100644 index 000000000000..ad6ec7235e52 --- /dev/null +++ b/site/public/v1/software/templated/index.json @@ -0,0 +1,19 @@ +{ + "id": 10015, + "slug": "templated", + "name": "Templated", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084617" + ], + "created_at": "2026-07-10T10:12:43.349204", + "updated_at": "2026-07-10T10:12:43.349204", + "url": "/v1/software/templated" +} diff --git a/site/public/v1/software/tempo/index.json b/site/public/v1/software/tempo/index.json new file mode 100644 index 000000000000..1f383fcd9ee7 --- /dev/null +++ b/site/public/v1/software/tempo/index.json @@ -0,0 +1,19 @@ +{ + "id": 10016, + "slug": "tempo", + "name": "Tempo", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7698863" + ], + "created_at": "2026-07-10T10:12:43.349204", + "updated_at": "2026-07-10T10:12:43.349204", + "url": "/v1/software/tempo" +} diff --git a/site/public/v1/software/tempus-editor/index.json b/site/public/v1/software/tempus-editor/index.json new file mode 100644 index 000000000000..905fda2e2e6c --- /dev/null +++ b/site/public/v1/software/tempus-editor/index.json @@ -0,0 +1,19 @@ +{ + "id": 10017, + "slug": "tempus-editor", + "name": "Tempus-Editor", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q15850342" + ], + "created_at": "2026-07-10T10:12:43.350196", + "updated_at": "2026-07-10T10:12:43.350196", + "url": "/v1/software/tempus-editor" +} diff --git a/site/public/v1/software/tempus-word/index.json b/site/public/v1/software/tempus-word/index.json new file mode 100644 index 000000000000..7c9e39ee7928 --- /dev/null +++ b/site/public/v1/software/tempus-word/index.json @@ -0,0 +1,19 @@ +{ + "id": 10018, + "slug": "tempus-word", + "name": "Tempus-Word", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2403111" + ], + "created_at": "2026-07-10T10:12:43.350196", + "updated_at": "2026-07-10T10:12:43.350196", + "url": "/v1/software/tempus-word" +} diff --git a/site/public/v1/software/tencent-cloud-palmai/index.json b/site/public/v1/software/tencent-cloud-palmai/index.json new file mode 100644 index 000000000000..4d9a8af31bfb --- /dev/null +++ b/site/public/v1/software/tencent-cloud-palmai/index.json @@ -0,0 +1,21 @@ +{ + "id": 10019, + "slug": "tencent-cloud-palmai", + "name": "Tencent Cloud PalmAI", + "release_date": null, + "developers": [ + "Tencent Cloud" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139923175" + ], + "created_at": "2026-07-10T10:12:43.350196", + "updated_at": "2026-07-10T10:12:43.350196", + "url": "/v1/software/tencent-cloud-palmai" +} diff --git a/site/public/v1/software/tencent-computer-manager/index.json b/site/public/v1/software/tencent-computer-manager/index.json new file mode 100644 index 000000000000..f19a8dd84dc9 --- /dev/null +++ b/site/public/v1/software/tencent-computer-manager/index.json @@ -0,0 +1,21 @@ +{ + "id": 10020, + "slug": "tencent-computer-manager", + "name": "Tencent Computer Manager", + "release_date": null, + "developers": [ + "Tencent" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q15912509" + ], + "created_at": "2026-07-10T10:12:43.350196", + "updated_at": "2026-07-10T10:12:43.350196", + "url": "/v1/software/tencent-computer-manager" +} diff --git a/site/public/v1/software/tencent-messenger/index.json b/site/public/v1/software/tencent-messenger/index.json new file mode 100644 index 000000000000..38f658486da1 --- /dev/null +++ b/site/public/v1/software/tencent-messenger/index.json @@ -0,0 +1,21 @@ +{ + "id": 10021, + "slug": "tencent-messenger", + "name": "Tencent Messenger", + "release_date": "2003-12-15", + "developers": [ + "Tencent" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10852980" + ], + "created_at": "2026-07-10T10:12:43.351176", + "updated_at": "2026-07-10T10:12:43.351176", + "url": "/v1/software/tencent-messenger" +} diff --git a/site/public/v1/software/tend/index.json b/site/public/v1/software/tend/index.json new file mode 100644 index 000000000000..fe3b11503522 --- /dev/null +++ b/site/public/v1/software/tend/index.json @@ -0,0 +1,25 @@ +{ + "id": 10022, + "slug": "tend", + "name": "Tend", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "web browser" + ], + "programming_languages": [ + "Python" + ], + "licenses": [], + "genres": [ + "productivity software" + ], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138799879" + ], + "created_at": "2026-07-10T10:12:43.351176", + "updated_at": "2026-07-10T10:12:43.351176", + "url": "/v1/software/tend" +} diff --git a/site/public/v1/software/tenems/index.json b/site/public/v1/software/tenems/index.json new file mode 100644 index 000000000000..35f94894ee3b --- /dev/null +++ b/site/public/v1/software/tenems/index.json @@ -0,0 +1,23 @@ +{ + "id": 10023, + "slug": "tenems", + "name": "Tenems", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Visual Basic" + ], + "licenses": [ + "3-clause BSD License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11250594" + ], + "created_at": "2026-07-10T10:12:43.351176", + "updated_at": "2026-07-10T10:12:43.351176", + "url": "/v1/software/tenems" +} diff --git a/site/public/v1/software/tenet-ai/index.json b/site/public/v1/software/tenet-ai/index.json new file mode 100644 index 000000000000..36a907ef1754 --- /dev/null +++ b/site/public/v1/software/tenet-ai/index.json @@ -0,0 +1,19 @@ +{ + "id": 10024, + "slug": "tenet-ai", + "name": "Tenet AI", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139591734" + ], + "created_at": "2026-07-10T10:12:43.352187", + "updated_at": "2026-07-10T10:12:43.352187", + "url": "/v1/software/tenet-ai" +} diff --git a/site/public/v1/software/tenfourfox/index.json b/site/public/v1/software/tenfourfox/index.json new file mode 100644 index 000000000000..1d746ed8e867 --- /dev/null +++ b/site/public/v1/software/tenfourfox/index.json @@ -0,0 +1,24 @@ +{ + "id": 10025, + "slug": "tenfourfox", + "name": "TenFourFox", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Mac OS X Tiger", + "Mac OS X Leopard" + ], + "programming_languages": [], + "licenses": [ + "Mozilla Public License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7699132" + ], + "created_at": "2026-07-10T10:12:43.352187", + "updated_at": "2026-07-10T10:12:43.352187", + "url": "/v1/software/tenfourfox" +} diff --git a/site/public/v1/software/tensistrength/index.json b/site/public/v1/software/tensistrength/index.json new file mode 100644 index 000000000000..e123ea3dc414 --- /dev/null +++ b/site/public/v1/software/tensistrength/index.json @@ -0,0 +1,19 @@ +{ + "id": 10026, + "slug": "tensistrength", + "name": "TensiStrength", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087735" + ], + "created_at": "2026-07-10T10:12:43.352187", + "updated_at": "2026-07-10T10:12:43.352187", + "url": "/v1/software/tensistrength" +} diff --git a/site/public/v1/software/teopad/index.json b/site/public/v1/software/teopad/index.json new file mode 100644 index 000000000000..3a1b7eca614f --- /dev/null +++ b/site/public/v1/software/teopad/index.json @@ -0,0 +1,19 @@ +{ + "id": 10027, + "slug": "teopad", + "name": "Teopad", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3512098" + ], + "created_at": "2026-07-10T10:12:43.352187", + "updated_at": "2026-07-10T10:12:43.352187", + "url": "/v1/software/teopad" +} diff --git a/site/public/v1/software/teracopy/index.json b/site/public/v1/software/teracopy/index.json new file mode 100644 index 000000000000..18589a191bb7 --- /dev/null +++ b/site/public/v1/software/teracopy/index.json @@ -0,0 +1,23 @@ +{ + "id": 10028, + "slug": "teracopy", + "name": "TeraCopy", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Windows 7", + "Windows 11", + "Windows 8.1" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5368637" + ], + "created_at": "2026-07-10T10:12:43.353170", + "updated_at": "2026-07-10T10:12:43.353170", + "url": "/v1/software/teracopy" +} diff --git a/site/public/v1/software/teradata-geospatial/index.json b/site/public/v1/software/teradata-geospatial/index.json new file mode 100644 index 000000000000..edbb8569f9ee --- /dev/null +++ b/site/public/v1/software/teradata-geospatial/index.json @@ -0,0 +1,21 @@ +{ + "id": 10029, + "slug": "teradata-geospatial", + "name": "Teradata Geospatial", + "release_date": null, + "developers": [ + "Teradata" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7701509" + ], + "created_at": "2026-07-10T10:12:43.353170", + "updated_at": "2026-07-10T10:12:43.353170", + "url": "/v1/software/teradata-geospatial" +} diff --git a/site/public/v1/software/teradata-warehouse-miner/index.json b/site/public/v1/software/teradata-warehouse-miner/index.json new file mode 100644 index 000000000000..a8afd8007538 --- /dev/null +++ b/site/public/v1/software/teradata-warehouse-miner/index.json @@ -0,0 +1,21 @@ +{ + "id": 10030, + "slug": "teradata-warehouse-miner", + "name": "Teradata Warehouse Miner", + "release_date": null, + "developers": [ + "Teradata" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7701512" + ], + "created_at": "2026-07-10T10:12:43.353170", + "updated_at": "2026-07-10T10:12:43.353170", + "url": "/v1/software/teradata-warehouse-miner" +} diff --git a/site/public/v1/software/teratext/index.json b/site/public/v1/software/teratext/index.json new file mode 100644 index 000000000000..6d133b912aa2 --- /dev/null +++ b/site/public/v1/software/teratext/index.json @@ -0,0 +1,21 @@ +{ + "id": 10031, + "slug": "teratext", + "name": "TeraText", + "release_date": null, + "developers": [ + "Leidos" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7701465" + ], + "created_at": "2026-07-10T10:12:43.354167", + "updated_at": "2026-07-10T10:12:43.354167", + "url": "/v1/software/teratext" +} diff --git a/site/public/v1/software/term-in/index.json b/site/public/v1/software/term-in/index.json new file mode 100644 index 000000000000..1e6ff231eb33 --- /dev/null +++ b/site/public/v1/software/term-in/index.json @@ -0,0 +1,19 @@ +{ + "id": 10032, + "slug": "term-in", + "name": "term-in", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139273564" + ], + "created_at": "2026-07-10T10:12:43.354167", + "updated_at": "2026-07-10T10:12:43.354167", + "url": "/v1/software/term-in" +} diff --git a/site/public/v1/software/termcap/index.json b/site/public/v1/software/termcap/index.json new file mode 100644 index 000000000000..5dd6f79628eb --- /dev/null +++ b/site/public/v1/software/termcap/index.json @@ -0,0 +1,19 @@ +{ + "id": 10033, + "slug": "termcap", + "name": "Termcap", + "release_date": "1978-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7702581" + ], + "created_at": "2026-07-10T10:12:43.354167", + "updated_at": "2026-07-10T10:12:43.354167", + "url": "/v1/software/termcap" +} diff --git a/site/public/v1/software/terminal-productivity-executive/index.json b/site/public/v1/software/terminal-productivity-executive/index.json new file mode 100644 index 000000000000..bdf32b1b2fad --- /dev/null +++ b/site/public/v1/software/terminal-productivity-executive/index.json @@ -0,0 +1,21 @@ +{ + "id": 10034, + "slug": "terminal-productivity-executive", + "name": "Terminal Productivity Executive", + "release_date": null, + "developers": [ + "CA Technologies" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7702678" + ], + "created_at": "2026-07-10T10:12:43.355107", + "updated_at": "2026-07-10T10:12:43.355107", + "url": "/v1/software/terminal-productivity-executive" +} diff --git a/site/public/v1/software/terminate/index.json b/site/public/v1/software/terminate/index.json new file mode 100644 index 000000000000..9f8a03bcb32c --- /dev/null +++ b/site/public/v1/software/terminate/index.json @@ -0,0 +1,19 @@ +{ + "id": 10035, + "slug": "terminate", + "name": "Terminate", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7702783" + ], + "created_at": "2026-07-10T10:12:43.355107", + "updated_at": "2026-07-10T10:12:43.355107", + "url": "/v1/software/terminate" +} diff --git a/site/public/v1/software/terminatorx/index.json b/site/public/v1/software/terminatorx/index.json new file mode 100644 index 000000000000..cd14c3ae88f5 --- /dev/null +++ b/site/public/v1/software/terminatorx/index.json @@ -0,0 +1,19 @@ +{ + "id": 10036, + "slug": "terminatorx", + "name": "terminatorx", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60864943" + ], + "created_at": "2026-07-10T10:12:43.356103", + "updated_at": "2026-07-10T10:12:43.356103", + "url": "/v1/software/terminatorx" +} diff --git a/site/public/v1/software/ternfs/index.json b/site/public/v1/software/ternfs/index.json new file mode 100644 index 000000000000..3c9cc2218a3e --- /dev/null +++ b/site/public/v1/software/ternfs/index.json @@ -0,0 +1,19 @@ +{ + "id": 10037, + "slug": "ternfs", + "name": "TernFS", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136463344" + ], + "created_at": "2026-07-10T10:12:43.356103", + "updated_at": "2026-07-10T10:12:43.356103", + "url": "/v1/software/ternfs" +} diff --git a/site/public/v1/software/terrafly/index.json b/site/public/v1/software/terrafly/index.json new file mode 100644 index 000000000000..57b94e4f6ebd --- /dev/null +++ b/site/public/v1/software/terrafly/index.json @@ -0,0 +1,21 @@ +{ + "id": 10038, + "slug": "terrafly", + "name": "Terrafly", + "release_date": null, + "developers": [ + "Florida International University" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7703210" + ], + "created_at": "2026-07-10T10:12:43.356103", + "updated_at": "2026-07-10T10:12:43.356103", + "url": "/v1/software/terrafly" +} diff --git a/site/public/v1/software/terrame/index.json b/site/public/v1/software/terrame/index.json new file mode 100644 index 000000000000..41e573799a83 --- /dev/null +++ b/site/public/v1/software/terrame/index.json @@ -0,0 +1,19 @@ +{ + "id": 10039, + "slug": "terrame", + "name": "TerraME", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084618" + ], + "created_at": "2026-07-10T10:12:43.356103", + "updated_at": "2026-07-10T10:12:43.356103", + "url": "/v1/software/terrame" +} diff --git a/site/public/v1/software/terraview/index.json b/site/public/v1/software/terraview/index.json new file mode 100644 index 000000000000..37b492572f0d --- /dev/null +++ b/site/public/v1/software/terraview/index.json @@ -0,0 +1,19 @@ +{ + "id": 10040, + "slug": "terraview", + "name": "TerraView", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7703050" + ], + "created_at": "2026-07-10T10:12:43.357103", + "updated_at": "2026-07-10T10:12:43.357103", + "url": "/v1/software/terraview" +} diff --git a/site/public/v1/software/terrier-search-engine/index.json b/site/public/v1/software/terrier-search-engine/index.json new file mode 100644 index 000000000000..11f4a755ae05 --- /dev/null +++ b/site/public/v1/software/terrier-search-engine/index.json @@ -0,0 +1,19 @@ +{ + "id": 10041, + "slug": "terrier-search-engine", + "name": "Terrier Search Engine", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7703700" + ], + "created_at": "2026-07-10T10:12:43.357103", + "updated_at": "2026-07-10T10:12:43.357103", + "url": "/v1/software/terrier-search-engine" +} diff --git a/site/public/v1/software/terrset/index.json b/site/public/v1/software/terrset/index.json new file mode 100644 index 000000000000..6faed4fbb854 --- /dev/null +++ b/site/public/v1/software/terrset/index.json @@ -0,0 +1,19 @@ +{ + "id": 10042, + "slug": "terrset", + "name": "TerrSet", + "release_date": "1987-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5970081" + ], + "created_at": "2026-07-10T10:12:43.357103", + "updated_at": "2026-07-10T10:12:43.357103", + "url": "/v1/software/terrset" +} diff --git a/site/public/v1/software/teseq/index.json b/site/public/v1/software/teseq/index.json new file mode 100644 index 000000000000..015aa5ebdfd4 --- /dev/null +++ b/site/public/v1/software/teseq/index.json @@ -0,0 +1,21 @@ +{ + "id": 10043, + "slug": "teseq", + "name": "teseq", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Unix-like operating system" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065218" + ], + "created_at": "2026-07-10T10:12:43.358179", + "updated_at": "2026-07-10T10:12:43.358179", + "url": "/v1/software/teseq" +} diff --git a/site/public/v1/software/tesseract/index.json b/site/public/v1/software/tesseract/index.json new file mode 100644 index 000000000000..bc0891235ea9 --- /dev/null +++ b/site/public/v1/software/tesseract/index.json @@ -0,0 +1,29 @@ +{ + "id": 10044, + "slug": "tesseract", + "name": "Tesseract", + "release_date": null, + "developers": [ + "Ray Smith" + ], + "publishers": [], + "operating_systems": [ + "GNU/Hurd", + "BSD", + "iOS", + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "Apache Software License 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q945242" + ], + "created_at": "2026-07-10T10:12:43.358179", + "updated_at": "2026-07-10T10:12:43.358179", + "url": "/v1/software/tesseract" +} diff --git a/site/public/v1/software/tesserae/index.json b/site/public/v1/software/tesserae/index.json new file mode 100644 index 000000000000..1aeba9b715c8 --- /dev/null +++ b/site/public/v1/software/tesserae/index.json @@ -0,0 +1,19 @@ +{ + "id": 10045, + "slug": "tesserae", + "name": "Tesserae", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084620" + ], + "created_at": "2026-07-10T10:12:43.358179", + "updated_at": "2026-07-10T10:12:43.358179", + "url": "/v1/software/tesserae" +} diff --git a/site/public/v1/software/tessitura/index.json b/site/public/v1/software/tessitura/index.json new file mode 100644 index 000000000000..bbce31121127 --- /dev/null +++ b/site/public/v1/software/tessitura/index.json @@ -0,0 +1,22 @@ +{ + "id": 10046, + "slug": "tessitura", + "name": "Tessitura", + "release_date": null, + "developers": [ + "The Metropolitan Opera", + "Tessitura Network" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7705677" + ], + "created_at": "2026-07-10T10:12:43.358179", + "updated_at": "2026-07-10T10:12:43.358179", + "url": "/v1/software/tessitura" +} diff --git a/site/public/v1/software/tessy/index.json b/site/public/v1/software/tessy/index.json new file mode 100644 index 000000000000..2bf0e7a6f807 --- /dev/null +++ b/site/public/v1/software/tessy/index.json @@ -0,0 +1,19 @@ +{ + "id": 10047, + "slug": "tessy", + "name": "Tessy", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1773051" + ], + "created_at": "2026-07-10T10:12:43.359197", + "updated_at": "2026-07-10T10:12:43.359197", + "url": "/v1/software/tessy" +} diff --git a/site/public/v1/software/test-and-training-enabling-architecture/index.json b/site/public/v1/software/test-and-training-enabling-architecture/index.json new file mode 100644 index 000000000000..1b5bb889f1ea --- /dev/null +++ b/site/public/v1/software/test-and-training-enabling-architecture/index.json @@ -0,0 +1,19 @@ +{ + "id": 10048, + "slug": "test-and-training-enabling-architecture", + "name": "Test and Training Enabling Architecture", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17143801" + ], + "created_at": "2026-07-10T10:12:43.359197", + "updated_at": "2026-07-10T10:12:43.359197", + "url": "/v1/software/test-and-training-enabling-architecture" +} diff --git a/site/public/v1/software/test-driver/index.json b/site/public/v1/software/test-driver/index.json new file mode 100644 index 000000000000..3055a3fbf403 --- /dev/null +++ b/site/public/v1/software/test-driver/index.json @@ -0,0 +1,19 @@ +{ + "id": 10049, + "slug": "test-driver", + "name": "Test driver", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122790722" + ], + "created_at": "2026-07-10T10:12:43.360185", + "updated_at": "2026-07-10T10:12:43.360185", + "url": "/v1/software/test-driver" +} diff --git a/site/public/v1/software/test-studio/index.json b/site/public/v1/software/test-studio/index.json new file mode 100644 index 000000000000..f518908aaaa3 --- /dev/null +++ b/site/public/v1/software/test-studio/index.json @@ -0,0 +1,21 @@ +{ + "id": 10050, + "slug": "test-studio", + "name": "Test Studio", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17082844" + ], + "created_at": "2026-07-10T10:12:43.360185", + "updated_at": "2026-07-10T10:12:43.360185", + "url": "/v1/software/test-studio" +} diff --git a/site/public/v1/software/testflight/index.json b/site/public/v1/software/testflight/index.json new file mode 100644 index 000000000000..d16e7e0137f7 --- /dev/null +++ b/site/public/v1/software/testflight/index.json @@ -0,0 +1,28 @@ +{ + "id": 10051, + "slug": "testflight", + "name": "TestFlight", + "release_date": null, + "developers": [ + "Apple Inc." + ], + "publishers": [], + "operating_systems": [ + "iPadOS", + "tvOS", + "iOS", + "macOS" + ], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q21041366" + ], + "created_at": "2026-07-10T10:12:43.360185", + "updated_at": "2026-07-10T10:12:43.360185", + "url": "/v1/software/testflight" +} diff --git a/site/public/v1/software/testpartner/index.json b/site/public/v1/software/testpartner/index.json new file mode 100644 index 000000000000..40896b1f611e --- /dev/null +++ b/site/public/v1/software/testpartner/index.json @@ -0,0 +1,19 @@ +{ + "id": 10052, + "slug": "testpartner", + "name": "TestPartner", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1558908" + ], + "created_at": "2026-07-10T10:12:43.360185", + "updated_at": "2026-07-10T10:12:43.360185", + "url": "/v1/software/testpartner" +} diff --git a/site/public/v1/software/teststand/index.json b/site/public/v1/software/teststand/index.json new file mode 100644 index 000000000000..9eec5bc80416 --- /dev/null +++ b/site/public/v1/software/teststand/index.json @@ -0,0 +1,21 @@ +{ + "id": 10053, + "slug": "teststand", + "name": "TestStand", + "release_date": null, + "developers": [ + "National Instruments" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3519021" + ], + "created_at": "2026-07-10T10:12:43.361166", + "updated_at": "2026-07-10T10:12:43.361166", + "url": "/v1/software/teststand" +} diff --git a/site/public/v1/software/testyd/index.json b/site/public/v1/software/testyd/index.json new file mode 100644 index 000000000000..85d0f4fd0a9f --- /dev/null +++ b/site/public/v1/software/testyd/index.json @@ -0,0 +1,19 @@ +{ + "id": 10054, + "slug": "testyd", + "name": "Testyd", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q20820547" + ], + "created_at": "2026-07-10T10:12:43.361166", + "updated_at": "2026-07-10T10:12:43.361166", + "url": "/v1/software/testyd" +} diff --git a/site/public/v1/software/tetex/index.json b/site/public/v1/software/tetex/index.json new file mode 100644 index 000000000000..063da2d6e439 --- /dev/null +++ b/site/public/v1/software/tetex/index.json @@ -0,0 +1,21 @@ +{ + "id": 10055, + "slug": "tetex", + "name": "teTeX", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Unix-like operating system" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1935560" + ], + "created_at": "2026-07-10T10:12:43.361166", + "updated_at": "2026-07-10T10:12:43.361166", + "url": "/v1/software/tetex" +} diff --git a/site/public/v1/software/teuxdeux/index.json b/site/public/v1/software/teuxdeux/index.json new file mode 100644 index 000000000000..3666c62dbe1a --- /dev/null +++ b/site/public/v1/software/teuxdeux/index.json @@ -0,0 +1,19 @@ +{ + "id": 10056, + "slug": "teuxdeux", + "name": "TeuxDeux", + "release_date": "2009-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7707109" + ], + "created_at": "2026-07-10T10:12:43.362224", + "updated_at": "2026-07-10T10:12:43.362224", + "url": "/v1/software/teuxdeux" +} diff --git a/site/public/v1/software/texml/index.json b/site/public/v1/software/texml/index.json new file mode 100644 index 000000000000..42cac8c201cd --- /dev/null +++ b/site/public/v1/software/texml/index.json @@ -0,0 +1,19 @@ +{ + "id": 10057, + "slug": "texml", + "name": "TeXML", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2398130" + ], + "created_at": "2026-07-10T10:12:43.362224", + "updated_at": "2026-07-10T10:12:43.362224", + "url": "/v1/software/texml" +} diff --git a/site/public/v1/software/text-2-mind-map/index.json b/site/public/v1/software/text-2-mind-map/index.json new file mode 100644 index 000000000000..20249b7dc635 --- /dev/null +++ b/site/public/v1/software/text-2-mind-map/index.json @@ -0,0 +1,19 @@ +{ + "id": 10058, + "slug": "text-2-mind-map", + "name": "Text 2 Mind Map", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084622" + ], + "created_at": "2026-07-10T10:12:43.362224", + "updated_at": "2026-07-10T10:12:43.362224", + "url": "/v1/software/text-2-mind-map" +} diff --git a/site/public/v1/software/text-analysis-online/index.json b/site/public/v1/software/text-analysis-online/index.json new file mode 100644 index 000000000000..2ea32376f28a --- /dev/null +++ b/site/public/v1/software/text-analysis-online/index.json @@ -0,0 +1,19 @@ +{ + "id": 10059, + "slug": "text-analysis-online", + "name": "Text Analysis Online", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087738" + ], + "created_at": "2026-07-10T10:12:43.363171", + "updated_at": "2026-07-10T10:12:43.363171", + "url": "/v1/software/text-analysis-online" +} diff --git a/site/public/v1/software/text-analyzer/index.json b/site/public/v1/software/text-analyzer/index.json new file mode 100644 index 000000000000..ddfea12185f5 --- /dev/null +++ b/site/public/v1/software/text-analyzer/index.json @@ -0,0 +1,19 @@ +{ + "id": 10060, + "slug": "text-analyzer", + "name": "Text Analyzer", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087740" + ], + "created_at": "2026-07-10T10:12:43.363171", + "updated_at": "2026-07-10T10:12:43.363171", + "url": "/v1/software/text-analyzer" +} diff --git a/site/public/v1/software/text-fixer/index.json b/site/public/v1/software/text-fixer/index.json new file mode 100644 index 000000000000..1e293f8bec03 --- /dev/null +++ b/site/public/v1/software/text-fixer/index.json @@ -0,0 +1,19 @@ +{ + "id": 10061, + "slug": "text-fixer", + "name": "Text Fixer", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084634" + ], + "created_at": "2026-07-10T10:12:43.364175", + "updated_at": "2026-07-10T10:12:43.364175", + "url": "/v1/software/text-fixer" +} diff --git a/site/public/v1/software/text-mining-minion/index.json b/site/public/v1/software/text-mining-minion/index.json new file mode 100644 index 000000000000..38e0b46d6254 --- /dev/null +++ b/site/public/v1/software/text-mining-minion/index.json @@ -0,0 +1,19 @@ +{ + "id": 10062, + "slug": "text-mining-minion", + "name": "Text mining minion", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q74824570" + ], + "created_at": "2026-07-10T10:12:43.364175", + "updated_at": "2026-07-10T10:12:43.364175", + "url": "/v1/software/text-mining-minion" +} diff --git a/site/public/v1/software/text-variation-explorer-tve/index.json b/site/public/v1/software/text-variation-explorer-tve/index.json new file mode 100644 index 000000000000..0a69b00de7ac --- /dev/null +++ b/site/public/v1/software/text-variation-explorer-tve/index.json @@ -0,0 +1,19 @@ +{ + "id": 10063, + "slug": "text-variation-explorer-tve", + "name": "Text Variation Explorer (TVE)", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084644" + ], + "created_at": "2026-07-10T10:12:43.364175", + "updated_at": "2026-07-10T10:12:43.364175", + "url": "/v1/software/text-variation-explorer-tve" +} diff --git a/site/public/v1/software/text-verification-tool/index.json b/site/public/v1/software/text-verification-tool/index.json new file mode 100644 index 000000000000..a1329abd8237 --- /dev/null +++ b/site/public/v1/software/text-verification-tool/index.json @@ -0,0 +1,21 @@ +{ + "id": 10064, + "slug": "text-verification-tool", + "name": "Text Verification Tool", + "release_date": "2003-01-01", + "developers": [ + "Schlafender Hase GmbH" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7708407" + ], + "created_at": "2026-07-10T10:12:43.364175", + "updated_at": "2026-07-10T10:12:43.364175", + "url": "/v1/software/text-verification-tool" +} diff --git a/site/public/v1/software/text/index.json b/site/public/v1/software/text/index.json new file mode 100644 index 000000000000..32f3f5459123 --- /dev/null +++ b/site/public/v1/software/text/index.json @@ -0,0 +1,24 @@ +{ + "id": 10065, + "slug": "text", + "name": "Text", + "release_date": null, + "developers": [ + "Text, Inc.", + "Text" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139973704" + ], + "created_at": "2026-07-10T10:12:43.365180", + "updated_at": "2026-07-10T10:12:43.365180", + "url": "/v1/software/text" +} diff --git a/site/public/v1/software/text2ddc/index.json b/site/public/v1/software/text2ddc/index.json new file mode 100644 index 000000000000..d28482e9e835 --- /dev/null +++ b/site/public/v1/software/text2ddc/index.json @@ -0,0 +1,19 @@ +{ + "id": 10066, + "slug": "text2ddc", + "name": "Text2DDC", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084621" + ], + "created_at": "2026-07-10T10:12:43.365180", + "updated_at": "2026-07-10T10:12:43.365180", + "url": "/v1/software/text2ddc" +} diff --git a/site/public/v1/software/text2term/index.json b/site/public/v1/software/text2term/index.json new file mode 100644 index 000000000000..e52ad44179b7 --- /dev/null +++ b/site/public/v1/software/text2term/index.json @@ -0,0 +1,23 @@ +{ + "id": 10067, + "slug": "text2term", + "name": "text2term", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Python" + ], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116924843" + ], + "created_at": "2026-07-10T10:12:43.366163", + "updated_at": "2026-07-10T10:12:43.366163", + "url": "/v1/software/text2term" +} diff --git a/site/public/v1/software/textable/index.json b/site/public/v1/software/textable/index.json new file mode 100644 index 000000000000..c9ffd5a4d90a --- /dev/null +++ b/site/public/v1/software/textable/index.json @@ -0,0 +1,19 @@ +{ + "id": 10068, + "slug": "textable", + "name": "Textable", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084623" + ], + "created_at": "2026-07-10T10:12:43.366163", + "updated_at": "2026-07-10T10:12:43.366163", + "url": "/v1/software/textable" +} diff --git a/site/public/v1/software/textal/index.json b/site/public/v1/software/textal/index.json new file mode 100644 index 000000000000..0e2a924ec1d7 --- /dev/null +++ b/site/public/v1/software/textal/index.json @@ -0,0 +1,19 @@ +{ + "id": 10069, + "slug": "textal", + "name": "Textal", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084625" + ], + "created_at": "2026-07-10T10:12:43.366163", + "updated_at": "2026-07-10T10:12:43.366163", + "url": "/v1/software/textal" +} diff --git a/site/public/v1/software/textaloud/index.json b/site/public/v1/software/textaloud/index.json new file mode 100644 index 000000000000..cfec0705b0f6 --- /dev/null +++ b/site/public/v1/software/textaloud/index.json @@ -0,0 +1,19 @@ +{ + "id": 10070, + "slug": "textaloud", + "name": "TextAloud", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125523952" + ], + "created_at": "2026-07-10T10:12:43.366163", + "updated_at": "2026-07-10T10:12:43.366163", + "url": "/v1/software/textaloud" +} diff --git a/site/public/v1/software/textalyser/index.json b/site/public/v1/software/textalyser/index.json new file mode 100644 index 000000000000..4387d5fa43c7 --- /dev/null +++ b/site/public/v1/software/textalyser/index.json @@ -0,0 +1,19 @@ +{ + "id": 10071, + "slug": "textalyser", + "name": "Textalyser", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087736" + ], + "created_at": "2026-07-10T10:12:43.367192", + "updated_at": "2026-07-10T10:12:43.367192", + "url": "/v1/software/textalyser" +} diff --git a/site/public/v1/software/textan/index.json b/site/public/v1/software/textan/index.json new file mode 100644 index 000000000000..4f3e1726f0aa --- /dev/null +++ b/site/public/v1/software/textan/index.json @@ -0,0 +1,19 @@ +{ + "id": 10072, + "slug": "textan", + "name": "TEXTAN", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084626" + ], + "created_at": "2026-07-10T10:12:43.367192", + "updated_at": "2026-07-10T10:12:43.367192", + "url": "/v1/software/textan" +} diff --git a/site/public/v1/software/textanalyst/index.json b/site/public/v1/software/textanalyst/index.json new file mode 100644 index 000000000000..af5abbc9a1ef --- /dev/null +++ b/site/public/v1/software/textanalyst/index.json @@ -0,0 +1,19 @@ +{ + "id": 10073, + "slug": "textanalyst", + "name": "TextAnalyst", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105454034" + ], + "created_at": "2026-07-10T10:12:43.368178", + "updated_at": "2026-07-10T10:12:43.368178", + "url": "/v1/software/textanalyst" +} diff --git a/site/public/v1/software/textannotator/index.json b/site/public/v1/software/textannotator/index.json new file mode 100644 index 000000000000..b18d215ff834 --- /dev/null +++ b/site/public/v1/software/textannotator/index.json @@ -0,0 +1,19 @@ +{ + "id": 10074, + "slug": "textannotator", + "name": "TextAnnotator", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084627" + ], + "created_at": "2026-07-10T10:12:43.368178", + "updated_at": "2026-07-10T10:12:43.368178", + "url": "/v1/software/textannotator" +} diff --git a/site/public/v1/software/textarc/index.json b/site/public/v1/software/textarc/index.json new file mode 100644 index 000000000000..9930620cdfeb --- /dev/null +++ b/site/public/v1/software/textarc/index.json @@ -0,0 +1,19 @@ +{ + "id": 10075, + "slug": "textarc", + "name": "TextArc", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084628" + ], + "created_at": "2026-07-10T10:12:43.368178", + "updated_at": "2026-07-10T10:12:43.368178", + "url": "/v1/software/textarc" +} diff --git a/site/public/v1/software/textboard-browser/index.json b/site/public/v1/software/textboard-browser/index.json new file mode 100644 index 000000000000..0758aed12a7d --- /dev/null +++ b/site/public/v1/software/textboard-browser/index.json @@ -0,0 +1,19 @@ +{ + "id": 10076, + "slug": "textboard-browser", + "name": "textboard browser", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q114694593" + ], + "created_at": "2026-07-10T10:12:43.369176", + "updated_at": "2026-07-10T10:12:43.369176", + "url": "/v1/software/textboard-browser" +} diff --git a/site/public/v1/software/textcord/index.json b/site/public/v1/software/textcord/index.json new file mode 100644 index 000000000000..8ae2da79d9dc --- /dev/null +++ b/site/public/v1/software/textcord/index.json @@ -0,0 +1,19 @@ +{ + "id": 10077, + "slug": "textcord", + "name": "TEXTCORD", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087741" + ], + "created_at": "2026-07-10T10:12:43.369176", + "updated_at": "2026-07-10T10:12:43.369176", + "url": "/v1/software/textcord" +} diff --git a/site/public/v1/software/textdna-q126084629/index.json b/site/public/v1/software/textdna-q126084629/index.json new file mode 100644 index 000000000000..f054ae89f388 --- /dev/null +++ b/site/public/v1/software/textdna-q126084629/index.json @@ -0,0 +1,19 @@ +{ + "id": 10078, + "slug": "textdna-q126084629", + "name": "TextDNA", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084629" + ], + "created_at": "2026-07-10T10:12:43.369176", + "updated_at": "2026-07-10T10:12:43.369176", + "url": "/v1/software/textdna-q126084629" +} diff --git a/site/public/v1/software/textdna/index.json b/site/public/v1/software/textdna/index.json new file mode 100644 index 000000000000..265dc6b23aed --- /dev/null +++ b/site/public/v1/software/textdna/index.json @@ -0,0 +1,23 @@ +{ + "id": 10079, + "slug": "textdna", + "name": "textDNA", + "release_date": "2016-10-10", + "developers": [ + "Danielle N. Szafir" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "all rights reserved" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125523891" + ], + "created_at": "2026-07-10T10:12:43.370185", + "updated_at": "2026-07-10T10:12:43.370185", + "url": "/v1/software/textdna" +} diff --git a/site/public/v1/software/textecution/index.json b/site/public/v1/software/textecution/index.json new file mode 100644 index 000000000000..c4ac8c1647a7 --- /dev/null +++ b/site/public/v1/software/textecution/index.json @@ -0,0 +1,19 @@ +{ + "id": 10080, + "slug": "textecution", + "name": "Textecution", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7708445" + ], + "created_at": "2026-07-10T10:12:43.370185", + "updated_at": "2026-07-10T10:12:43.370185", + "url": "/v1/software/textecution" +} diff --git a/site/public/v1/software/textexpander/index.json b/site/public/v1/software/textexpander/index.json new file mode 100644 index 000000000000..44bb6a127560 --- /dev/null +++ b/site/public/v1/software/textexpander/index.json @@ -0,0 +1,19 @@ +{ + "id": 10081, + "slug": "textexpander", + "name": "TextExpander", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084630" + ], + "created_at": "2026-07-10T10:12:43.370185", + "updated_at": "2026-07-10T10:12:43.370185", + "url": "/v1/software/textexpander" +} diff --git a/site/public/v1/software/textexture/index.json b/site/public/v1/software/textexture/index.json new file mode 100644 index 000000000000..c7c904cfad2e --- /dev/null +++ b/site/public/v1/software/textexture/index.json @@ -0,0 +1,19 @@ +{ + "id": 10082, + "slug": "textexture", + "name": "Textexture", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084632" + ], + "created_at": "2026-07-10T10:12:43.371185", + "updated_at": "2026-07-10T10:12:43.371185", + "url": "/v1/software/textexture" +} diff --git a/site/public/v1/software/textflo/index.json b/site/public/v1/software/textflo/index.json new file mode 100644 index 000000000000..78a5bb8673e1 --- /dev/null +++ b/site/public/v1/software/textflo/index.json @@ -0,0 +1,19 @@ +{ + "id": 10083, + "slug": "textflo", + "name": "Textflo", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084635" + ], + "created_at": "2026-07-10T10:12:43.371185", + "updated_at": "2026-07-10T10:12:43.371185", + "url": "/v1/software/textflo" +} diff --git a/site/public/v1/software/textgrid-repository-laboratory/index.json b/site/public/v1/software/textgrid-repository-laboratory/index.json new file mode 100644 index 000000000000..c5ce634129e1 --- /dev/null +++ b/site/public/v1/software/textgrid-repository-laboratory/index.json @@ -0,0 +1,19 @@ +{ + "id": 10084, + "slug": "textgrid-repository-laboratory", + "name": "TextGrid Repository & Laboratory", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084638" + ], + "created_at": "2026-07-10T10:12:43.371185", + "updated_at": "2026-07-10T10:12:43.371185", + "url": "/v1/software/textgrid-repository-laboratory" +} diff --git a/site/public/v1/software/textimager/index.json b/site/public/v1/software/textimager/index.json new file mode 100644 index 000000000000..2f0825148b4d --- /dev/null +++ b/site/public/v1/software/textimager/index.json @@ -0,0 +1,19 @@ +{ + "id": 10085, + "slug": "textimager", + "name": "TextImager", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084639" + ], + "created_at": "2026-07-10T10:12:43.372167", + "updated_at": "2026-07-10T10:12:43.372167", + "url": "/v1/software/textimager" +} diff --git a/site/public/v1/software/textometrica/index.json b/site/public/v1/software/textometrica/index.json new file mode 100644 index 000000000000..2be8cefcd40a --- /dev/null +++ b/site/public/v1/software/textometrica/index.json @@ -0,0 +1,19 @@ +{ + "id": 10086, + "slug": "textometrica", + "name": "Textometrica", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084640" + ], + "created_at": "2026-07-10T10:12:43.372167", + "updated_at": "2026-07-10T10:12:43.372167", + "url": "/v1/software/textometrica" +} diff --git a/site/public/v1/software/textpack-v/index.json b/site/public/v1/software/textpack-v/index.json new file mode 100644 index 000000000000..4d8ce0947eb2 --- /dev/null +++ b/site/public/v1/software/textpack-v/index.json @@ -0,0 +1,19 @@ +{ + "id": 10087, + "slug": "textpack-v", + "name": "TEXTPACK V", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087742" + ], + "created_at": "2026-07-10T10:12:43.372167", + "updated_at": "2026-07-10T10:12:43.372167", + "url": "/v1/software/textpack-v" +} diff --git a/site/public/v1/software/textpresso-q126084641/index.json b/site/public/v1/software/textpresso-q126084641/index.json new file mode 100644 index 000000000000..2f09431ec811 --- /dev/null +++ b/site/public/v1/software/textpresso-q126084641/index.json @@ -0,0 +1,19 @@ +{ + "id": 10088, + "slug": "textpresso-q126084641", + "name": "Textpresso", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084641" + ], + "created_at": "2026-07-10T10:12:43.373187", + "updated_at": "2026-07-10T10:12:43.373187", + "url": "/v1/software/textpresso-q126084641" +} diff --git a/site/public/v1/software/textpresso/index.json b/site/public/v1/software/textpresso/index.json new file mode 100644 index 000000000000..69199042b931 --- /dev/null +++ b/site/public/v1/software/textpresso/index.json @@ -0,0 +1,24 @@ +{ + "id": 10089, + "slug": "textpresso", + "name": "Textpresso", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "open-source license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106382502" + ], + "created_at": "2026-07-10T10:12:43.373187", + "updated_at": "2026-07-10T10:12:43.373187", + "url": "/v1/software/textpresso" +} diff --git a/site/public/v1/software/textquest/index.json b/site/public/v1/software/textquest/index.json new file mode 100644 index 000000000000..e26efc2741bd --- /dev/null +++ b/site/public/v1/software/textquest/index.json @@ -0,0 +1,23 @@ +{ + "id": 10090, + "slug": "textquest", + "name": "TextQuest", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105840134" + ], + "created_at": "2026-07-10T10:12:43.373187", + "updated_at": "2026-07-10T10:12:43.373187", + "url": "/v1/software/textquest" +} diff --git a/site/public/v1/software/textstat-q126087743/index.json b/site/public/v1/software/textstat-q126087743/index.json new file mode 100644 index 000000000000..e6362b47f4a8 --- /dev/null +++ b/site/public/v1/software/textstat-q126087743/index.json @@ -0,0 +1,19 @@ +{ + "id": 10091, + "slug": "textstat-q126087743", + "name": "TextSTAT", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087743" + ], + "created_at": "2026-07-10T10:12:43.373187", + "updated_at": "2026-07-10T10:12:43.373187", + "url": "/v1/software/textstat-q126087743" +} diff --git a/site/public/v1/software/textstat/index.json b/site/public/v1/software/textstat/index.json new file mode 100644 index 000000000000..9b92b3e0d113 --- /dev/null +++ b/site/public/v1/software/textstat/index.json @@ -0,0 +1,21 @@ +{ + "id": 10092, + "slug": "textstat", + "name": "textstat", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Python" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q92025916" + ], + "created_at": "2026-07-10T10:12:43.374169", + "updated_at": "2026-07-10T10:12:43.374169", + "url": "/v1/software/textstat" +} diff --git a/site/public/v1/software/texttree/index.json b/site/public/v1/software/texttree/index.json new file mode 100644 index 000000000000..d6bcc208c274 --- /dev/null +++ b/site/public/v1/software/texttree/index.json @@ -0,0 +1,21 @@ +{ + "id": 10093, + "slug": "texttree", + "name": "TextTree", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Apache Software License 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107306949" + ], + "created_at": "2026-07-10T10:12:43.374169", + "updated_at": "2026-07-10T10:12:43.374169", + "url": "/v1/software/texttree" +} diff --git a/site/public/v1/software/textual-communities/index.json b/site/public/v1/software/textual-communities/index.json new file mode 100644 index 000000000000..ff409e62102f --- /dev/null +++ b/site/public/v1/software/textual-communities/index.json @@ -0,0 +1,19 @@ +{ + "id": 10094, + "slug": "textual-communities", + "name": "Textual Communities", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084642" + ], + "created_at": "2026-07-10T10:12:43.374169", + "updated_at": "2026-07-10T10:12:43.374169", + "url": "/v1/software/textual-communities" +} diff --git a/site/public/v1/software/textual-geography-analyzer/index.json b/site/public/v1/software/textual-geography-analyzer/index.json new file mode 100644 index 000000000000..d6d1c73d521f --- /dev/null +++ b/site/public/v1/software/textual-geography-analyzer/index.json @@ -0,0 +1,19 @@ +{ + "id": 10095, + "slug": "textual-geography-analyzer", + "name": "Textual Geography Analyzer", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084643" + ], + "created_at": "2026-07-10T10:12:43.375157", + "updated_at": "2026-07-10T10:12:43.375157", + "url": "/v1/software/textual-geography-analyzer" +} diff --git a/site/public/v1/software/texture-maker/index.json b/site/public/v1/software/texture-maker/index.json new file mode 100644 index 000000000000..68cc10121710 --- /dev/null +++ b/site/public/v1/software/texture-maker/index.json @@ -0,0 +1,19 @@ +{ + "id": 10096, + "slug": "texture-maker", + "name": "Texture Maker", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q9357689" + ], + "created_at": "2026-07-10T10:12:43.375157", + "updated_at": "2026-07-10T10:12:43.375157", + "url": "/v1/software/texture-maker" +} diff --git a/site/public/v1/software/tfacet/index.json b/site/public/v1/software/tfacet/index.json new file mode 100644 index 000000000000..1603cb57f5a2 --- /dev/null +++ b/site/public/v1/software/tfacet/index.json @@ -0,0 +1,19 @@ +{ + "id": 10097, + "slug": "tfacet", + "name": "tFacet", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084645" + ], + "created_at": "2026-07-10T10:12:43.375157", + "updated_at": "2026-07-10T10:12:43.375157", + "url": "/v1/software/tfacet" +} diff --git a/site/public/v1/software/thaibulksms/index.json b/site/public/v1/software/thaibulksms/index.json new file mode 100644 index 000000000000..8bdd8d8fbc96 --- /dev/null +++ b/site/public/v1/software/thaibulksms/index.json @@ -0,0 +1,19 @@ +{ + "id": 10098, + "slug": "thaibulksms", + "name": "ThaiBulkSMS", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139322809" + ], + "created_at": "2026-07-10T10:12:43.376186", + "updated_at": "2026-07-10T10:12:43.376186", + "url": "/v1/software/thaibulksms" +} diff --git a/site/public/v1/software/thales/index.json b/site/public/v1/software/thales/index.json new file mode 100644 index 000000000000..3259146c6ee3 --- /dev/null +++ b/site/public/v1/software/thales/index.json @@ -0,0 +1,19 @@ +{ + "id": 10099, + "slug": "thales", + "name": "Thales", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76184379" + ], + "created_at": "2026-07-10T10:12:43.376186", + "updated_at": "2026-07-10T10:12:43.376186", + "url": "/v1/software/thales" +} diff --git a/site/public/v1/software/thc-ipv6/index.json b/site/public/v1/software/thc-ipv6/index.json new file mode 100644 index 000000000000..223d72ccb9f3 --- /dev/null +++ b/site/public/v1/software/thc-ipv6/index.json @@ -0,0 +1,19 @@ +{ + "id": 10100, + "slug": "thc-ipv6", + "name": "thc-ipv6", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975515" + ], + "created_at": "2026-07-10T10:12:43.376186", + "updated_at": "2026-07-10T10:12:43.376186", + "url": "/v1/software/thc-ipv6" +} diff --git a/site/public/v1/software/the-1995-1996-nfl-interactive-yearbook/index.json b/site/public/v1/software/the-1995-1996-nfl-interactive-yearbook/index.json new file mode 100644 index 000000000000..da7201bbbcb5 --- /dev/null +++ b/site/public/v1/software/the-1995-1996-nfl-interactive-yearbook/index.json @@ -0,0 +1,19 @@ +{ + "id": 10101, + "slug": "the-1995-1996-nfl-interactive-yearbook", + "name": "The 1995/1996 NFL Interactive Yearbook", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138606199" + ], + "created_at": "2026-07-10T10:12:43.377169", + "updated_at": "2026-07-10T10:12:43.377169", + "url": "/v1/software/the-1995-1996-nfl-interactive-yearbook" +} diff --git a/site/public/v1/software/the-1995-grolier-multimedia-encyclopedia/index.json b/site/public/v1/software/the-1995-grolier-multimedia-encyclopedia/index.json new file mode 100644 index 000000000000..8537544c1ce0 --- /dev/null +++ b/site/public/v1/software/the-1995-grolier-multimedia-encyclopedia/index.json @@ -0,0 +1,19 @@ +{ + "id": 10102, + "slug": "the-1995-grolier-multimedia-encyclopedia", + "name": "The 1995 Grolier Multimedia Encyclopedia", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140321027" + ], + "created_at": "2026-07-10T10:12:43.377169", + "updated_at": "2026-07-10T10:12:43.377169", + "url": "/v1/software/the-1995-grolier-multimedia-encyclopedia" +} diff --git a/site/public/v1/software/the-1995-guinness-multimedia-disc-of-records/index.json b/site/public/v1/software/the-1995-guinness-multimedia-disc-of-records/index.json new file mode 100644 index 000000000000..a6146fee8780 --- /dev/null +++ b/site/public/v1/software/the-1995-guinness-multimedia-disc-of-records/index.json @@ -0,0 +1,19 @@ +{ + "id": 10103, + "slug": "the-1995-guinness-multimedia-disc-of-records", + "name": "The 1995 Guinness Multimedia Disc of Records", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140357928" + ], + "created_at": "2026-07-10T10:12:43.377169", + "updated_at": "2026-07-10T10:12:43.377169", + "url": "/v1/software/the-1995-guinness-multimedia-disc-of-records" +} diff --git a/site/public/v1/software/the-3d-gamemaker/index.json b/site/public/v1/software/the-3d-gamemaker/index.json new file mode 100644 index 000000000000..257eec9b72c0 --- /dev/null +++ b/site/public/v1/software/the-3d-gamemaker/index.json @@ -0,0 +1,19 @@ +{ + "id": 10104, + "slug": "the-3d-gamemaker", + "name": "The 3D Gamemaker", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7711882" + ], + "created_at": "2026-07-10T10:12:43.378190", + "updated_at": "2026-07-10T10:12:43.378190", + "url": "/v1/software/the-3d-gamemaker" +} diff --git a/site/public/v1/software/the-accelrys-enterprise-platform/index.json b/site/public/v1/software/the-accelrys-enterprise-platform/index.json new file mode 100644 index 000000000000..0e8e81d88388 --- /dev/null +++ b/site/public/v1/software/the-accelrys-enterprise-platform/index.json @@ -0,0 +1,19 @@ +{ + "id": 10105, + "slug": "the-accelrys-enterprise-platform", + "name": "The Accelrys Enterprise Platform", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7712196" + ], + "created_at": "2026-07-10T10:12:43.378190", + "updated_at": "2026-07-10T10:12:43.378190", + "url": "/v1/software/the-accelrys-enterprise-platform" +} diff --git a/site/public/v1/software/the-adventure-pals/index.json b/site/public/v1/software/the-adventure-pals/index.json new file mode 100644 index 000000000000..6489d7070406 --- /dev/null +++ b/site/public/v1/software/the-adventure-pals/index.json @@ -0,0 +1,23 @@ +{ + "id": 10106, + "slug": "the-adventure-pals", + "name": "The Adventure Pals", + "release_date": "2018-04-03", + "developers": [ + "Massive Monster" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [ + "platformer" + ], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q71050042" + ], + "created_at": "2026-07-10T10:12:43.378190", + "updated_at": "2026-07-10T10:12:43.378190", + "url": "/v1/software/the-adventure-pals" +} diff --git a/site/public/v1/software/the-all-seeing-eye/index.json b/site/public/v1/software/the-all-seeing-eye/index.json new file mode 100644 index 000000000000..2c934b87b4cf --- /dev/null +++ b/site/public/v1/software/the-all-seeing-eye/index.json @@ -0,0 +1,21 @@ +{ + "id": 10107, + "slug": "the-all-seeing-eye", + "name": "The All-Seeing Eye", + "release_date": null, + "developers": [ + "Yahoo" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1059878" + ], + "created_at": "2026-07-10T10:12:43.379183", + "updated_at": "2026-07-10T10:12:43.379183", + "url": "/v1/software/the-all-seeing-eye" +} diff --git a/site/public/v1/software/the-animation-studio/index.json b/site/public/v1/software/the-animation-studio/index.json new file mode 100644 index 000000000000..32516ba16d80 --- /dev/null +++ b/site/public/v1/software/the-animation-studio/index.json @@ -0,0 +1,19 @@ +{ + "id": 10108, + "slug": "the-animation-studio", + "name": "The Animation Studio", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110127789" + ], + "created_at": "2026-07-10T10:12:43.379183", + "updated_at": "2026-07-10T10:12:43.379183", + "url": "/v1/software/the-animation-studio" +} diff --git a/site/public/v1/software/the-change-lab/index.json b/site/public/v1/software/the-change-lab/index.json new file mode 100644 index 000000000000..4d17fc881d68 --- /dev/null +++ b/site/public/v1/software/the-change-lab/index.json @@ -0,0 +1,19 @@ +{ + "id": 10109, + "slug": "the-change-lab", + "name": "The Change Lab", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084647" + ], + "created_at": "2026-07-10T10:12:43.379183", + "updated_at": "2026-07-10T10:12:43.379183", + "url": "/v1/software/the-change-lab" +} diff --git a/site/public/v1/software/the-chicago-homer/index.json b/site/public/v1/software/the-chicago-homer/index.json new file mode 100644 index 000000000000..7771babfb1fa --- /dev/null +++ b/site/public/v1/software/the-chicago-homer/index.json @@ -0,0 +1,19 @@ +{ + "id": 10110, + "slug": "the-chicago-homer", + "name": "The Chicago Homer", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084648" + ], + "created_at": "2026-07-10T10:12:43.380167", + "updated_at": "2026-07-10T10:12:43.380167", + "url": "/v1/software/the-chicago-homer" +} diff --git a/site/public/v1/software/the-drive-ai/index.json b/site/public/v1/software/the-drive-ai/index.json new file mode 100644 index 000000000000..8c721fd3d048 --- /dev/null +++ b/site/public/v1/software/the-drive-ai/index.json @@ -0,0 +1,19 @@ +{ + "id": 10111, + "slug": "the-drive-ai", + "name": "The Drive AI", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139494833" + ], + "created_at": "2026-07-10T10:12:43.380167", + "updated_at": "2026-07-10T10:12:43.380167", + "url": "/v1/software/the-drive-ai" +} diff --git a/site/public/v1/software/the-dude/index.json b/site/public/v1/software/the-dude/index.json new file mode 100644 index 000000000000..2bdb011cef5e --- /dev/null +++ b/site/public/v1/software/the-dude/index.json @@ -0,0 +1,19 @@ +{ + "id": 10112, + "slug": "the-dude", + "name": "The Dude", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q12058829" + ], + "created_at": "2026-07-10T10:12:43.380167", + "updated_at": "2026-07-10T10:12:43.380167", + "url": "/v1/software/the-dude" +} diff --git a/site/public/v1/software/the-eclipse-integrated-computational-environment/index.json b/site/public/v1/software/the-eclipse-integrated-computational-environment/index.json new file mode 100644 index 000000000000..e23425b26b5e --- /dev/null +++ b/site/public/v1/software/the-eclipse-integrated-computational-environment/index.json @@ -0,0 +1,19 @@ +{ + "id": 10113, + "slug": "the-eclipse-integrated-computational-environment", + "name": "The Eclipse Integrated Computational Environment", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72272924" + ], + "created_at": "2026-07-10T10:12:43.381163", + "updated_at": "2026-07-10T10:12:43.381163", + "url": "/v1/software/the-eclipse-integrated-computational-environment" +} diff --git a/site/public/v1/software/the-elder-scrolls-construction-set/index.json b/site/public/v1/software/the-elder-scrolls-construction-set/index.json new file mode 100644 index 000000000000..87cc308ccb93 --- /dev/null +++ b/site/public/v1/software/the-elder-scrolls-construction-set/index.json @@ -0,0 +1,23 @@ +{ + "id": 10114, + "slug": "the-elder-scrolls-construction-set", + "name": "The Elder Scrolls Construction Set", + "release_date": null, + "developers": [ + "Bethesda Softworks" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2423520" + ], + "created_at": "2026-07-10T10:12:43.381163", + "updated_at": "2026-07-10T10:12:43.381163", + "url": "/v1/software/the-elder-scrolls-construction-set" +} diff --git a/site/public/v1/software/the-ethnograph/index.json b/site/public/v1/software/the-ethnograph/index.json new file mode 100644 index 000000000000..5e0c61544bf3 --- /dev/null +++ b/site/public/v1/software/the-ethnograph/index.json @@ -0,0 +1,23 @@ +{ + "id": 10115, + "slug": "the-ethnograph", + "name": "The Ethnograph", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105229773" + ], + "created_at": "2026-07-10T10:12:43.381163", + "updated_at": "2026-07-10T10:12:43.381163", + "url": "/v1/software/the-ethnograph" +} diff --git a/site/public/v1/software/the-field-linguist-s-toolbox/index.json b/site/public/v1/software/the-field-linguist-s-toolbox/index.json new file mode 100644 index 000000000000..3f030d1b97c8 --- /dev/null +++ b/site/public/v1/software/the-field-linguist-s-toolbox/index.json @@ -0,0 +1,19 @@ +{ + "id": 10116, + "slug": "the-field-linguist-s-toolbox", + "name": "The Field Linguist’s Toolbox", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084650" + ], + "created_at": "2026-07-10T10:12:43.382164", + "updated_at": "2026-07-10T10:12:43.382164", + "url": "/v1/software/the-field-linguist-s-toolbox" +} diff --git a/site/public/v1/software/the-geochemist-s-workbench/index.json b/site/public/v1/software/the-geochemist-s-workbench/index.json new file mode 100644 index 000000000000..f8936ef5c640 --- /dev/null +++ b/site/public/v1/software/the-geochemist-s-workbench/index.json @@ -0,0 +1,23 @@ +{ + "id": 10117, + "slug": "the-geochemist-s-workbench", + "name": "The Geochemist's Workbench", + "release_date": null, + "developers": [ + "University of Illinois Urbana-Champaign" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7736152" + ], + "created_at": "2026-07-10T10:12:43.382164", + "updated_at": "2026-07-10T10:12:43.382164", + "url": "/v1/software/the-geochemist-s-workbench" +} diff --git a/site/public/v1/software/the-great-reading-adventure/index.json b/site/public/v1/software/the-great-reading-adventure/index.json new file mode 100644 index 000000000000..9180a698513e --- /dev/null +++ b/site/public/v1/software/the-great-reading-adventure/index.json @@ -0,0 +1,23 @@ +{ + "id": 10118, + "slug": "the-great-reading-adventure", + "name": "The Great Reading Adventure", + "release_date": null, + "developers": [ + "Maricopa County Library District" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q55314187" + ], + "created_at": "2026-07-10T10:12:43.382164", + "updated_at": "2026-07-10T10:12:43.382164", + "url": "/v1/software/the-great-reading-adventure" +} diff --git a/site/public/v1/software/the-hat-man-shadow-ward/index.json b/site/public/v1/software/the-hat-man-shadow-ward/index.json new file mode 100644 index 000000000000..2a1e5cb0124d --- /dev/null +++ b/site/public/v1/software/the-hat-man-shadow-ward/index.json @@ -0,0 +1,23 @@ +{ + "id": 10119, + "slug": "the-hat-man-shadow-ward", + "name": "The Hat Man: Shadow Ward", + "release_date": "2016-06-10", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [ + "action game", + "adventure video game", + "action-adventure game" + ], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q97362501" + ], + "created_at": "2026-07-10T10:12:43.382164", + "updated_at": "2026-07-10T10:12:43.382164", + "url": "/v1/software/the-hat-man-shadow-ward" +} diff --git a/site/public/v1/software/the-last-one/index.json b/site/public/v1/software/the-last-one/index.json new file mode 100644 index 000000000000..e0bd9ef4f360 --- /dev/null +++ b/site/public/v1/software/the-last-one/index.json @@ -0,0 +1,19 @@ +{ + "id": 10120, + "slug": "the-last-one", + "name": "The Last One", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7745912" + ], + "created_at": "2026-07-10T10:12:43.383158", + "updated_at": "2026-07-10T10:12:43.383158", + "url": "/v1/software/the-last-one" +} diff --git a/site/public/v1/software/the-librarian/index.json b/site/public/v1/software/the-librarian/index.json new file mode 100644 index 000000000000..47926dd2d97b --- /dev/null +++ b/site/public/v1/software/the-librarian/index.json @@ -0,0 +1,19 @@ +{ + "id": 10121, + "slug": "the-librarian", + "name": "The Librarian", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121879183" + ], + "created_at": "2026-07-10T10:12:43.383158", + "updated_at": "2026-07-10T10:12:43.383158", + "url": "/v1/software/the-librarian" +} diff --git a/site/public/v1/software/the-linkup/index.json b/site/public/v1/software/the-linkup/index.json new file mode 100644 index 000000000000..74205cfb235f --- /dev/null +++ b/site/public/v1/software/the-linkup/index.json @@ -0,0 +1,21 @@ +{ + "id": 10122, + "slug": "the-linkup", + "name": "The Linkup", + "release_date": null, + "developers": [ + "Nirvanix" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7747443" + ], + "created_at": "2026-07-10T10:12:43.383158", + "updated_at": "2026-07-10T10:12:43.383158", + "url": "/v1/software/the-linkup" +} diff --git a/site/public/v1/software/the-macro-etymological-analyzer/index.json b/site/public/v1/software/the-macro-etymological-analyzer/index.json new file mode 100644 index 000000000000..879bc73136e6 --- /dev/null +++ b/site/public/v1/software/the-macro-etymological-analyzer/index.json @@ -0,0 +1,19 @@ +{ + "id": 10123, + "slug": "the-macro-etymological-analyzer", + "name": "The Macro-Etymological Analyzer", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087744" + ], + "created_at": "2026-07-10T10:12:43.384167", + "updated_at": "2026-07-10T10:12:43.384167", + "url": "/v1/software/the-macro-etymological-analyzer" +} diff --git a/site/public/v1/software/the-major-bbs/index.json b/site/public/v1/software/the-major-bbs/index.json new file mode 100644 index 000000000000..83d7846581d8 --- /dev/null +++ b/site/public/v1/software/the-major-bbs/index.json @@ -0,0 +1,23 @@ +{ + "id": 10124, + "slug": "the-major-bbs", + "name": "The Major BBS", + "release_date": null, + "developers": [ + "Tim Stryker" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Borland Turbo C" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7749683" + ], + "created_at": "2026-07-10T10:12:43.384167", + "updated_at": "2026-07-10T10:12:43.384167", + "url": "/v1/software/the-major-bbs" +} diff --git a/site/public/v1/software/the-marvellous-miss-take/index.json b/site/public/v1/software/the-marvellous-miss-take/index.json new file mode 100644 index 000000000000..d03b5159294c --- /dev/null +++ b/site/public/v1/software/the-marvellous-miss-take/index.json @@ -0,0 +1,21 @@ +{ + "id": 10125, + "slug": "the-marvellous-miss-take", + "name": "The Marvellous Miss Take", + "release_date": "2014-11-20", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [ + "stealth game" + ], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q71054720" + ], + "created_at": "2026-07-10T10:12:43.384167", + "updated_at": "2026-07-10T10:12:43.384167", + "url": "/v1/software/the-marvellous-miss-take" +} diff --git a/site/public/v1/software/the-networked-corpus/index.json b/site/public/v1/software/the-networked-corpus/index.json new file mode 100644 index 000000000000..0fa0582e2736 --- /dev/null +++ b/site/public/v1/software/the-networked-corpus/index.json @@ -0,0 +1,19 @@ +{ + "id": 10126, + "slug": "the-networked-corpus", + "name": "The Networked Corpus", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087746" + ], + "created_at": "2026-07-10T10:12:43.385192", + "updated_at": "2026-07-10T10:12:43.385192", + "url": "/v1/software/the-networked-corpus" +} diff --git a/site/public/v1/software/the-nooj-kiswahili-module/index.json b/site/public/v1/software/the-nooj-kiswahili-module/index.json new file mode 100644 index 000000000000..5b58a245395a --- /dev/null +++ b/site/public/v1/software/the-nooj-kiswahili-module/index.json @@ -0,0 +1,23 @@ +{ + "id": 10127, + "slug": "the-nooj-kiswahili-module", + "name": "THE NooJ KISWAHILI MODULE", + "release_date": "2017-01-01", + "developers": [ + "Mathieu Roy" + ], + "publishers": [ + "GitHub" + ], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136647497" + ], + "created_at": "2026-07-10T10:12:43.385192", + "updated_at": "2026-07-10T10:12:43.385192", + "url": "/v1/software/the-nooj-kiswahili-module" +} diff --git a/site/public/v1/software/the-note-processor/index.json b/site/public/v1/software/the-note-processor/index.json new file mode 100644 index 000000000000..2ae61383f0fa --- /dev/null +++ b/site/public/v1/software/the-note-processor/index.json @@ -0,0 +1,19 @@ +{ + "id": 10128, + "slug": "the-note-processor", + "name": "The Note Processor", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139759791" + ], + "created_at": "2026-07-10T10:12:43.385192", + "updated_at": "2026-07-10T10:12:43.385192", + "url": "/v1/software/the-note-processor" +} diff --git a/site/public/v1/software/the-old-city-leviathan/index.json b/site/public/v1/software/the-old-city-leviathan/index.json new file mode 100644 index 000000000000..67db85134e6e --- /dev/null +++ b/site/public/v1/software/the-old-city-leviathan/index.json @@ -0,0 +1,19 @@ +{ + "id": 10129, + "slug": "the-old-city-leviathan", + "name": "The Old City: Leviathan", + "release_date": "2014-12-03", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q97362276" + ], + "created_at": "2026-07-10T10:12:43.386106", + "updated_at": "2026-07-10T10:12:43.386106", + "url": "/v1/software/the-old-city-leviathan" +} diff --git a/site/public/v1/software/the-open-network/index.json b/site/public/v1/software/the-open-network/index.json new file mode 100644 index 000000000000..fafc3d351f90 --- /dev/null +++ b/site/public/v1/software/the-open-network/index.json @@ -0,0 +1,22 @@ +{ + "id": 10130, + "slug": "the-open-network", + "name": "The Open Network", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "GNU Library General Public License, version 2.0", + "GNU General Public License, version 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q53252126" + ], + "created_at": "2026-07-10T10:12:43.386106", + "updated_at": "2026-07-10T10:12:43.386106", + "url": "/v1/software/the-open-network" +} diff --git a/site/public/v1/software/the-orchestra/index.json b/site/public/v1/software/the-orchestra/index.json new file mode 100644 index 000000000000..e117232d407f --- /dev/null +++ b/site/public/v1/software/the-orchestra/index.json @@ -0,0 +1,21 @@ +{ + "id": 10131, + "slug": "the-orchestra", + "name": "The Orchestra", + "release_date": "2012-12-06", + "developers": [ + "Touch Press" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18646577" + ], + "created_at": "2026-07-10T10:12:43.386106", + "updated_at": "2026-07-10T10:12:43.386106", + "url": "/v1/software/the-orchestra" +} diff --git a/site/public/v1/software/the-outliner-of-giants/index.json b/site/public/v1/software/the-outliner-of-giants/index.json new file mode 100644 index 000000000000..84bf68de7b19 --- /dev/null +++ b/site/public/v1/software/the-outliner-of-giants/index.json @@ -0,0 +1,28 @@ +{ + "id": 10132, + "slug": "the-outliner-of-giants", + "name": "The Outliner of Giants", + "release_date": null, + "developers": [ + "Angelic Informatics LTD" + ], + "publishers": [], + "operating_systems": [ + "iOS", + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [ + "web application", + "office suite" + ], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q23894789" + ], + "created_at": "2026-07-10T10:12:43.387104", + "updated_at": "2026-07-10T10:12:43.387104", + "url": "/v1/software/the-outliner-of-giants" +} diff --git a/site/public/v1/software/the-palace/index.json b/site/public/v1/software/the-palace/index.json new file mode 100644 index 000000000000..d74de0fc5762 --- /dev/null +++ b/site/public/v1/software/the-palace/index.json @@ -0,0 +1,21 @@ +{ + "id": 10133, + "slug": "the-palace", + "name": "The Palace", + "release_date": null, + "developers": [ + "Time Warner Interactive" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1906292" + ], + "created_at": "2026-07-10T10:12:43.387104", + "updated_at": "2026-07-10T10:12:43.387104", + "url": "/v1/software/the-palace" +} diff --git a/site/public/v1/software/the-pope-app/index.json b/site/public/v1/software/the-pope-app/index.json new file mode 100644 index 000000000000..7c3c82d9a674 --- /dev/null +++ b/site/public/v1/software/the-pope-app/index.json @@ -0,0 +1,19 @@ +{ + "id": 10134, + "slug": "the-pope-app", + "name": "The Pope App", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18209746" + ], + "created_at": "2026-07-10T10:12:43.387104", + "updated_at": "2026-07-10T10:12:43.387104", + "url": "/v1/software/the-pope-app" +} diff --git a/site/public/v1/software/the-print-shop-premier-edition/index.json b/site/public/v1/software/the-print-shop-premier-edition/index.json new file mode 100644 index 000000000000..8253d8407343 --- /dev/null +++ b/site/public/v1/software/the-print-shop-premier-edition/index.json @@ -0,0 +1,21 @@ +{ + "id": 10135, + "slug": "the-print-shop-premier-edition", + "name": "The Print Shop Premier Edition", + "release_date": "1997-01-01", + "developers": [ + "Broderbund" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113196671" + ], + "created_at": "2026-07-10T10:12:43.387104", + "updated_at": "2026-07-10T10:12:43.387104", + "url": "/v1/software/the-print-shop-premier-edition" +} diff --git a/site/public/v1/software/the-print-shop/index.json b/site/public/v1/software/the-print-shop/index.json new file mode 100644 index 000000000000..c12a8a63f245 --- /dev/null +++ b/site/public/v1/software/the-print-shop/index.json @@ -0,0 +1,21 @@ +{ + "id": 10136, + "slug": "the-print-shop", + "name": "The Print Shop", + "release_date": "1984-01-01", + "developers": [ + "Broderbund" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7758362" + ], + "created_at": "2026-07-10T10:12:43.388104", + "updated_at": "2026-07-10T10:12:43.388104", + "url": "/v1/software/the-print-shop" +} diff --git a/site/public/v1/software/the-proteolysis-map/index.json b/site/public/v1/software/the-proteolysis-map/index.json new file mode 100644 index 000000000000..dd5c0cd934af --- /dev/null +++ b/site/public/v1/software/the-proteolysis-map/index.json @@ -0,0 +1,21 @@ +{ + "id": 10137, + "slug": "the-proteolysis-map", + "name": "The Proteolysis Map", + "release_date": null, + "developers": [ + "Sanford Burnham Prebys Medical Discovery Institute" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7758615" + ], + "created_at": "2026-07-10T10:12:43.388104", + "updated_at": "2026-07-10T10:12:43.388104", + "url": "/v1/software/the-proteolysis-map" +} diff --git a/site/public/v1/software/the-right-stuff/index.json b/site/public/v1/software/the-right-stuff/index.json new file mode 100644 index 000000000000..2e090c1be36f --- /dev/null +++ b/site/public/v1/software/the-right-stuff/index.json @@ -0,0 +1,19 @@ +{ + "id": 10138, + "slug": "the-right-stuff", + "name": "The Right Stuff", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115517672" + ], + "created_at": "2026-07-10T10:12:43.389105", + "updated_at": "2026-07-10T10:12:43.389105", + "url": "/v1/software/the-right-stuff" +} diff --git a/site/public/v1/software/the-rossio-vocabularies/index.json b/site/public/v1/software/the-rossio-vocabularies/index.json new file mode 100644 index 000000000000..4e49e1148b45 --- /dev/null +++ b/site/public/v1/software/the-rossio-vocabularies/index.json @@ -0,0 +1,19 @@ +{ + "id": 10139, + "slug": "the-rossio-vocabularies", + "name": "The ROSSIO vocabularies", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084651" + ], + "created_at": "2026-07-10T10:12:43.389105", + "updated_at": "2026-07-10T10:12:43.389105", + "url": "/v1/software/the-rossio-vocabularies" +} diff --git a/site/public/v1/software/the-scandroid-1-1/index.json b/site/public/v1/software/the-scandroid-1-1/index.json new file mode 100644 index 000000000000..88d0dec23444 --- /dev/null +++ b/site/public/v1/software/the-scandroid-1-1/index.json @@ -0,0 +1,19 @@ +{ + "id": 10140, + "slug": "the-scandroid-1-1", + "name": "The Scandroid 1.1", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087747" + ], + "created_at": "2026-07-10T10:12:43.389105", + "updated_at": "2026-07-10T10:12:43.389105", + "url": "/v1/software/the-scandroid-1-1" +} diff --git a/site/public/v1/software/the-summit-open-source-development-group/index.json b/site/public/v1/software/the-summit-open-source-development-group/index.json new file mode 100644 index 000000000000..c8a7e065f49f --- /dev/null +++ b/site/public/v1/software/the-summit-open-source-development-group/index.json @@ -0,0 +1,19 @@ +{ + "id": 10141, + "slug": "the-summit-open-source-development-group", + "name": "The Summit Open Source Development Group", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7767292" + ], + "created_at": "2026-07-10T10:12:43.389105", + "updated_at": "2026-07-10T10:12:43.389105", + "url": "/v1/software/the-summit-open-source-development-group" +} diff --git a/site/public/v1/software/the-uniform-server/index.json b/site/public/v1/software/the-uniform-server/index.json new file mode 100644 index 000000000000..861d01488971 --- /dev/null +++ b/site/public/v1/software/the-uniform-server/index.json @@ -0,0 +1,19 @@ +{ + "id": 10142, + "slug": "the-uniform-server", + "name": "The Uniform Server", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q368253" + ], + "created_at": "2026-07-10T10:12:43.390104", + "updated_at": "2026-07-10T10:12:43.390104", + "url": "/v1/software/the-uniform-server" +} diff --git a/site/public/v1/software/the-unscrambler/index.json b/site/public/v1/software/the-unscrambler/index.json new file mode 100644 index 000000000000..4b56aeb0b98f --- /dev/null +++ b/site/public/v1/software/the-unscrambler/index.json @@ -0,0 +1,19 @@ +{ + "id": 10143, + "slug": "the-unscrambler", + "name": "The Unscrambler", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1978628" + ], + "created_at": "2026-07-10T10:12:43.390104", + "updated_at": "2026-07-10T10:12:43.390104", + "url": "/v1/software/the-unscrambler" +} diff --git a/site/public/v1/software/the-world-browser/index.json b/site/public/v1/software/the-world-browser/index.json new file mode 100644 index 000000000000..b3c5579be16b --- /dev/null +++ b/site/public/v1/software/the-world-browser/index.json @@ -0,0 +1,19 @@ +{ + "id": 10144, + "slug": "the-world-browser", + "name": "The World Browser", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10869057" + ], + "created_at": "2026-07-10T10:12:43.391203", + "updated_at": "2026-07-10T10:12:43.391203", + "url": "/v1/software/the-world-browser" +} diff --git a/site/public/v1/software/the-world-of-robert-burns/index.json b/site/public/v1/software/the-world-of-robert-burns/index.json new file mode 100644 index 000000000000..736fb33a281a --- /dev/null +++ b/site/public/v1/software/the-world-of-robert-burns/index.json @@ -0,0 +1,21 @@ +{ + "id": 10145, + "slug": "the-world-of-robert-burns", + "name": "The World of Robert Burns", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "RISC OS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7776157" + ], + "created_at": "2026-07-10T10:12:43.391203", + "updated_at": "2026-07-10T10:12:43.391203", + "url": "/v1/software/the-world-of-robert-burns" +} diff --git a/site/public/v1/software/thebrain/index.json b/site/public/v1/software/thebrain/index.json new file mode 100644 index 000000000000..857cc28f747e --- /dev/null +++ b/site/public/v1/software/thebrain/index.json @@ -0,0 +1,23 @@ +{ + "id": 10146, + "slug": "thebrain", + "name": "TheBrain", + "release_date": null, + "developers": [ + "TheBrain Technologies" + ], + "publishers": [], + "operating_systems": [ + "cross-platform" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7170468" + ], + "created_at": "2026-07-10T10:12:43.391203", + "updated_at": "2026-07-10T10:12:43.391203", + "url": "/v1/software/thebrain" +} diff --git a/site/public/v1/software/theia/index.json b/site/public/v1/software/theia/index.json new file mode 100644 index 000000000000..f2eabd5c070e --- /dev/null +++ b/site/public/v1/software/theia/index.json @@ -0,0 +1,21 @@ +{ + "id": 10147, + "slug": "theia", + "name": "Theia", + "release_date": null, + "developers": [ + "Spare Parts 3D" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139594865" + ], + "created_at": "2026-07-10T10:12:43.391203", + "updated_at": "2026-07-10T10:12:43.391203", + "url": "/v1/software/theia" +} diff --git a/site/public/v1/software/themas-thesaurus-management-system/index.json b/site/public/v1/software/themas-thesaurus-management-system/index.json new file mode 100644 index 000000000000..08d6163b0092 --- /dev/null +++ b/site/public/v1/software/themas-thesaurus-management-system/index.json @@ -0,0 +1,19 @@ +{ + "id": 10148, + "slug": "themas-thesaurus-management-system", + "name": "Themas - Thesaurus Management System", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087745" + ], + "created_at": "2026-07-10T10:12:43.392203", + "updated_at": "2026-07-10T10:12:43.392203", + "url": "/v1/software/themas-thesaurus-management-system" +} diff --git a/site/public/v1/software/themeswitcher-pro/index.json b/site/public/v1/software/themeswitcher-pro/index.json new file mode 100644 index 000000000000..e6f86a5638d4 --- /dev/null +++ b/site/public/v1/software/themeswitcher-pro/index.json @@ -0,0 +1,19 @@ +{ + "id": 10149, + "slug": "themeswitcher-pro", + "name": "ThemeSwitcher Pro", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140389050" + ], + "created_at": "2026-07-10T10:12:43.392203", + "updated_at": "2026-07-10T10:12:43.392203", + "url": "/v1/software/themeswitcher-pro" +} diff --git a/site/public/v1/software/theodolite/index.json b/site/public/v1/software/theodolite/index.json new file mode 100644 index 000000000000..a4acd1cbcac7 --- /dev/null +++ b/site/public/v1/software/theodolite/index.json @@ -0,0 +1,21 @@ +{ + "id": 10150, + "slug": "theodolite", + "name": "theodolite", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Apache Software License 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127485685" + ], + "created_at": "2026-07-10T10:12:43.393176", + "updated_at": "2026-07-10T10:12:43.393176", + "url": "/v1/software/theodolite" +} diff --git a/site/public/v1/software/thermald/index.json b/site/public/v1/software/thermald/index.json new file mode 100644 index 000000000000..51fab0f3633a --- /dev/null +++ b/site/public/v1/software/thermald/index.json @@ -0,0 +1,21 @@ +{ + "id": 10151, + "slug": "thermald", + "name": "thermald", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "GNU General Public License, version 2.0 or later" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63064928" + ], + "created_at": "2026-07-10T10:12:43.393176", + "updated_at": "2026-07-10T10:12:43.393176", + "url": "/v1/software/thermald" +} diff --git a/site/public/v1/software/thermorawfileparser/index.json b/site/public/v1/software/thermorawfileparser/index.json new file mode 100644 index 000000000000..474387e4184a --- /dev/null +++ b/site/public/v1/software/thermorawfileparser/index.json @@ -0,0 +1,19 @@ +{ + "id": 10152, + "slug": "thermorawfileparser", + "name": "ThermoRawFileParser", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112189106" + ], + "created_at": "2026-07-10T10:12:43.393176", + "updated_at": "2026-07-10T10:12:43.393176", + "url": "/v1/software/thermorawfileparser" +} diff --git a/site/public/v1/software/thesky/index.json b/site/public/v1/software/thesky/index.json new file mode 100644 index 000000000000..04436baf89d0 --- /dev/null +++ b/site/public/v1/software/thesky/index.json @@ -0,0 +1,23 @@ +{ + "id": 10153, + "slug": "thesky", + "name": "TheSky", + "release_date": null, + "developers": [ + "Software Bisque" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3519678" + ], + "created_at": "2026-07-10T10:12:43.393176", + "updated_at": "2026-07-10T10:12:43.393176", + "url": "/v1/software/thesky" +} diff --git a/site/public/v1/software/theunfollower/index.json b/site/public/v1/software/theunfollower/index.json new file mode 100644 index 000000000000..60f5bdb90621 --- /dev/null +++ b/site/public/v1/software/theunfollower/index.json @@ -0,0 +1,21 @@ +{ + "id": 10154, + "slug": "theunfollower", + "name": "TheUnfollower", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140363903" + ], + "created_at": "2026-07-10T10:12:43.394172", + "updated_at": "2026-07-10T10:12:43.394172", + "url": "/v1/software/theunfollower" +} diff --git a/site/public/v1/software/things-3-macos/index.json b/site/public/v1/software/things-3-macos/index.json new file mode 100644 index 000000000000..22ce978fd630 --- /dev/null +++ b/site/public/v1/software/things-3-macos/index.json @@ -0,0 +1,21 @@ +{ + "id": 10155, + "slug": "things-3-macos", + "name": "Things 3 (macOS)", + "release_date": null, + "developers": [ + "Cultured Code" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117429306" + ], + "created_at": "2026-07-10T10:12:43.394172", + "updated_at": "2026-07-10T10:12:43.394172", + "url": "/v1/software/things-3-macos" +} diff --git a/site/public/v1/software/things-3/index.json b/site/public/v1/software/things-3/index.json new file mode 100644 index 000000000000..b8ef50b9d0a0 --- /dev/null +++ b/site/public/v1/software/things-3/index.json @@ -0,0 +1,19 @@ +{ + "id": 10156, + "slug": "things-3", + "name": "Things 3", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125886817" + ], + "created_at": "2026-07-10T10:12:43.394172", + "updated_at": "2026-07-10T10:12:43.394172", + "url": "/v1/software/things-3" +} diff --git a/site/public/v1/software/thinkfinger/index.json b/site/public/v1/software/thinkfinger/index.json new file mode 100644 index 000000000000..f7d65095fc70 --- /dev/null +++ b/site/public/v1/software/thinkfinger/index.json @@ -0,0 +1,19 @@ +{ + "id": 10157, + "slug": "thinkfinger", + "name": "thinkfinger", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065612" + ], + "created_at": "2026-07-10T10:12:43.395168", + "updated_at": "2026-07-10T10:12:43.395168", + "url": "/v1/software/thinkfinger" +} diff --git a/site/public/v1/software/thinkfree-office/index.json b/site/public/v1/software/thinkfree-office/index.json new file mode 100644 index 000000000000..b6f4bcfea7f5 --- /dev/null +++ b/site/public/v1/software/thinkfree-office/index.json @@ -0,0 +1,23 @@ +{ + "id": 10158, + "slug": "thinkfree-office", + "name": "Thinkfree Office", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "cross-platform", + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126519801" + ], + "created_at": "2026-07-10T10:12:43.395168", + "updated_at": "2026-07-10T10:12:43.395168", + "url": "/v1/software/thinkfree-office" +} diff --git a/site/public/v1/software/thinkoffice/index.json b/site/public/v1/software/thinkoffice/index.json new file mode 100644 index 000000000000..5f27efb3e61f --- /dev/null +++ b/site/public/v1/software/thinkoffice/index.json @@ -0,0 +1,19 @@ +{ + "id": 10159, + "slug": "thinkoffice", + "name": "ThinkOffice", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q66091280" + ], + "created_at": "2026-07-10T10:12:43.395168", + "updated_at": "2026-07-10T10:12:43.395168", + "url": "/v1/software/thinkoffice" +} diff --git a/site/public/v1/software/thinkport-annotator/index.json b/site/public/v1/software/thinkport-annotator/index.json new file mode 100644 index 000000000000..5e7387488725 --- /dev/null +++ b/site/public/v1/software/thinkport-annotator/index.json @@ -0,0 +1,19 @@ +{ + "id": 10160, + "slug": "thinkport-annotator", + "name": "Thinkport Annotator", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084653" + ], + "created_at": "2026-07-10T10:12:43.396163", + "updated_at": "2026-07-10T10:12:43.396163", + "url": "/v1/software/thinkport-annotator" +} diff --git a/site/public/v1/software/thinkvantage-technologies/index.json b/site/public/v1/software/thinkvantage-technologies/index.json new file mode 100644 index 000000000000..b88173409645 --- /dev/null +++ b/site/public/v1/software/thinkvantage-technologies/index.json @@ -0,0 +1,21 @@ +{ + "id": 10161, + "slug": "thinkvantage-technologies", + "name": "ThinkVantage Technologies", + "release_date": null, + "developers": [ + "IBM" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7784464" + ], + "created_at": "2026-07-10T10:12:43.396163", + "updated_at": "2026-07-10T10:12:43.396163", + "url": "/v1/software/thinkvantage-technologies" +} diff --git a/site/public/v1/software/thinlinc/index.json b/site/public/v1/software/thinlinc/index.json new file mode 100644 index 000000000000..670c4b455610 --- /dev/null +++ b/site/public/v1/software/thinlinc/index.json @@ -0,0 +1,19 @@ +{ + "id": 10162, + "slug": "thinlinc", + "name": "ThinLinc", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7784248" + ], + "created_at": "2026-07-10T10:12:43.396163", + "updated_at": "2026-07-10T10:12:43.396163", + "url": "/v1/software/thinlinc" +} diff --git a/site/public/v1/software/third-voice/index.json b/site/public/v1/software/third-voice/index.json new file mode 100644 index 000000000000..9350b7b21e3c --- /dev/null +++ b/site/public/v1/software/third-voice/index.json @@ -0,0 +1,19 @@ +{ + "id": 10163, + "slug": "third-voice", + "name": "Third Voice", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7784998" + ], + "created_at": "2026-07-10T10:12:43.397165", + "updated_at": "2026-07-10T10:12:43.397165", + "url": "/v1/software/third-voice" +} diff --git a/site/public/v1/software/thiruvananthapuram-city-police-mobile-app/index.json b/site/public/v1/software/thiruvananthapuram-city-police-mobile-app/index.json new file mode 100644 index 000000000000..b471ab9de6e0 --- /dev/null +++ b/site/public/v1/software/thiruvananthapuram-city-police-mobile-app/index.json @@ -0,0 +1,21 @@ +{ + "id": 10164, + "slug": "thiruvananthapuram-city-police-mobile-app", + "name": "Thiruvananthapuram City Police Mobile App", + "release_date": null, + "developers": [ + "UST" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22909398" + ], + "created_at": "2026-07-10T10:12:43.397165", + "updated_at": "2026-07-10T10:12:43.397165", + "url": "/v1/software/thiruvananthapuram-city-police-mobile-app" +} diff --git a/site/public/v1/software/thomson-reuters-messenger/index.json b/site/public/v1/software/thomson-reuters-messenger/index.json new file mode 100644 index 000000000000..0cf8a7594219 --- /dev/null +++ b/site/public/v1/software/thomson-reuters-messenger/index.json @@ -0,0 +1,23 @@ +{ + "id": 10165, + "slug": "thomson-reuters-messenger", + "name": "Thomson Reuters Messenger", + "release_date": "2002-11-01", + "developers": [ + "Thomson Reuters" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7795897" + ], + "created_at": "2026-07-10T10:12:43.397165", + "updated_at": "2026-07-10T10:12:43.397165", + "url": "/v1/software/thomson-reuters-messenger" +} diff --git a/site/public/v1/software/thor/index.json b/site/public/v1/software/thor/index.json new file mode 100644 index 000000000000..aa7eceff4855 --- /dev/null +++ b/site/public/v1/software/thor/index.json @@ -0,0 +1,19 @@ +{ + "id": 10166, + "slug": "thor", + "name": "Thor", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130283836" + ], + "created_at": "2026-07-10T10:12:43.398182", + "updated_at": "2026-07-10T10:12:43.398182", + "url": "/v1/software/thor" +} diff --git a/site/public/v1/software/thorium-reader/index.json b/site/public/v1/software/thorium-reader/index.json new file mode 100644 index 000000000000..290d9da94d81 --- /dev/null +++ b/site/public/v1/software/thorium-reader/index.json @@ -0,0 +1,21 @@ +{ + "id": 10167, + "slug": "thorium-reader", + "name": "Thorium Reader", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "3-clause BSD License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131829806" + ], + "created_at": "2026-07-10T10:12:43.398182", + "updated_at": "2026-07-10T10:12:43.398182", + "url": "/v1/software/thorium-reader" +} diff --git a/site/public/v1/software/thorsten/index.json b/site/public/v1/software/thorsten/index.json new file mode 100644 index 000000000000..b25063f0f31c --- /dev/null +++ b/site/public/v1/software/thorsten/index.json @@ -0,0 +1,19 @@ +{ + "id": 10168, + "slug": "thorsten", + "name": "Thorsten", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106525522" + ], + "created_at": "2026-07-10T10:12:43.398182", + "updated_at": "2026-07-10T10:12:43.398182", + "url": "/v1/software/thorsten" +} diff --git a/site/public/v1/software/threadsafe/index.json b/site/public/v1/software/threadsafe/index.json new file mode 100644 index 000000000000..68464224d638 --- /dev/null +++ b/site/public/v1/software/threadsafe/index.json @@ -0,0 +1,19 @@ +{ + "id": 10169, + "slug": "threadsafe", + "name": "ThreadSafe", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17183972" + ], + "created_at": "2026-07-10T10:12:43.399166", + "updated_at": "2026-07-10T10:12:43.399166", + "url": "/v1/software/threadsafe" +} diff --git a/site/public/v1/software/threatmodeler/index.json b/site/public/v1/software/threatmodeler/index.json new file mode 100644 index 000000000000..88c1b86ff4c2 --- /dev/null +++ b/site/public/v1/software/threatmodeler/index.json @@ -0,0 +1,19 @@ +{ + "id": 10170, + "slug": "threatmodeler", + "name": "ThreatModeler", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124307046" + ], + "created_at": "2026-07-10T10:12:43.399166", + "updated_at": "2026-07-10T10:12:43.399166", + "url": "/v1/software/threatmodeler" +} diff --git a/site/public/v1/software/three20/index.json b/site/public/v1/software/three20/index.json new file mode 100644 index 000000000000..280ce687fbe8 --- /dev/null +++ b/site/public/v1/software/three20/index.json @@ -0,0 +1,19 @@ +{ + "id": 10171, + "slug": "three20", + "name": "Three20", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16251910" + ], + "created_at": "2026-07-10T10:12:43.399166", + "updated_at": "2026-07-10T10:12:43.399166", + "url": "/v1/software/three20" +} diff --git a/site/public/v1/software/thrust/index.json b/site/public/v1/software/thrust/index.json new file mode 100644 index 000000000000..c99176cffd82 --- /dev/null +++ b/site/public/v1/software/thrust/index.json @@ -0,0 +1,21 @@ +{ + "id": 10172, + "slug": "thrust", + "name": "thrust", + "release_date": null, + "developers": [ + "Jared Hoberock" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120652944" + ], + "created_at": "2026-07-10T10:12:43.400180", + "updated_at": "2026-07-10T10:12:43.400180", + "url": "/v1/software/thrust" +} diff --git a/site/public/v1/software/thumbor/index.json b/site/public/v1/software/thumbor/index.json new file mode 100644 index 000000000000..5277ac69c001 --- /dev/null +++ b/site/public/v1/software/thumbor/index.json @@ -0,0 +1,19 @@ +{ + "id": 10173, + "slug": "thumbor", + "name": "Thumbor", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134540936" + ], + "created_at": "2026-07-10T10:12:43.400180", + "updated_at": "2026-07-10T10:12:43.400180", + "url": "/v1/software/thumbor" +} diff --git a/site/public/v1/software/thumbsplus/index.json b/site/public/v1/software/thumbsplus/index.json new file mode 100644 index 000000000000..7b16c8b10442 --- /dev/null +++ b/site/public/v1/software/thumbsplus/index.json @@ -0,0 +1,19 @@ +{ + "id": 10174, + "slug": "thumbsplus", + "name": "ThumbsPlus", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2429858" + ], + "created_at": "2026-07-10T10:12:43.400180", + "updated_at": "2026-07-10T10:12:43.400180", + "url": "/v1/software/thumbsplus" +} diff --git a/site/public/v1/software/thunder/index.json b/site/public/v1/software/thunder/index.json new file mode 100644 index 000000000000..7e7e28598a4a --- /dev/null +++ b/site/public/v1/software/thunder/index.json @@ -0,0 +1,19 @@ +{ + "id": 10175, + "slug": "thunder", + "name": "Thunder", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1688068" + ], + "created_at": "2026-07-10T10:12:43.401179", + "updated_at": "2026-07-10T10:12:43.401179", + "url": "/v1/software/thunder" +} diff --git a/site/public/v1/software/thunderhawk/index.json b/site/public/v1/software/thunderhawk/index.json new file mode 100644 index 000000000000..8a73b60e65c1 --- /dev/null +++ b/site/public/v1/software/thunderhawk/index.json @@ -0,0 +1,21 @@ +{ + "id": 10176, + "slug": "thunderhawk", + "name": "ThunderHawk", + "release_date": "2001-12-01", + "developers": [ + "Bitstream Inc." + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7798894" + ], + "created_at": "2026-07-10T10:12:43.401179", + "updated_at": "2026-07-10T10:12:43.401179", + "url": "/v1/software/thunderhawk" +} diff --git a/site/public/v1/software/thxchat/index.json b/site/public/v1/software/thxchat/index.json new file mode 100644 index 000000000000..a212c7f9ec28 --- /dev/null +++ b/site/public/v1/software/thxchat/index.json @@ -0,0 +1,19 @@ +{ + "id": 10177, + "slug": "thxchat", + "name": "ThXChat", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139387043" + ], + "created_at": "2026-07-10T10:12:43.401179", + "updated_at": "2026-07-10T10:12:43.401179", + "url": "/v1/software/thxchat" +} diff --git a/site/public/v1/software/ti-interactive/index.json b/site/public/v1/software/ti-interactive/index.json new file mode 100644 index 000000000000..677ffffe728c --- /dev/null +++ b/site/public/v1/software/ti-interactive/index.json @@ -0,0 +1,21 @@ +{ + "id": 10178, + "slug": "ti-interactive", + "name": "TI InterActive!", + "release_date": null, + "developers": [ + "Texas Instruments" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1738539" + ], + "created_at": "2026-07-10T10:12:43.402186", + "updated_at": "2026-07-10T10:12:43.402186", + "url": "/v1/software/ti-interactive" +} diff --git a/site/public/v1/software/ti-starterware/index.json b/site/public/v1/software/ti-starterware/index.json new file mode 100644 index 000000000000..95778ac1038c --- /dev/null +++ b/site/public/v1/software/ti-starterware/index.json @@ -0,0 +1,19 @@ +{ + "id": 10179, + "slug": "ti-starterware", + "name": "TI StarterWare", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7670479" + ], + "created_at": "2026-07-10T10:12:43.402186", + "updated_at": "2026-07-10T10:12:43.402186", + "url": "/v1/software/ti-starterware" +} diff --git a/site/public/v1/software/tianamo/index.json b/site/public/v1/software/tianamo/index.json new file mode 100644 index 000000000000..f8ec324b5876 --- /dev/null +++ b/site/public/v1/software/tianamo/index.json @@ -0,0 +1,19 @@ +{ + "id": 10180, + "slug": "tianamo", + "name": "Tianamo", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084654" + ], + "created_at": "2026-07-10T10:12:43.402186", + "updated_at": "2026-07-10T10:12:43.402186", + "url": "/v1/software/tianamo" +} diff --git a/site/public/v1/software/tibco-hawk/index.json b/site/public/v1/software/tibco-hawk/index.json new file mode 100644 index 000000000000..293a5efb219f --- /dev/null +++ b/site/public/v1/software/tibco-hawk/index.json @@ -0,0 +1,21 @@ +{ + "id": 10181, + "slug": "tibco-hawk", + "name": "TIBCO Hawk", + "release_date": null, + "developers": [ + "Tibco Software" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7670352" + ], + "created_at": "2026-07-10T10:12:43.403265", + "updated_at": "2026-07-10T10:12:43.403265", + "url": "/v1/software/tibco-hawk" +} diff --git a/site/public/v1/software/tibco-spotfire-analytics/index.json b/site/public/v1/software/tibco-spotfire-analytics/index.json new file mode 100644 index 000000000000..7e5a57dbbf38 --- /dev/null +++ b/site/public/v1/software/tibco-spotfire-analytics/index.json @@ -0,0 +1,23 @@ +{ + "id": 10182, + "slug": "tibco-spotfire-analytics", + "name": "TIBCO Spotfire Analytics", + "release_date": null, + "developers": [ + "Tibco Software" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1770325" + ], + "created_at": "2026-07-10T10:12:43.403265", + "updated_at": "2026-07-10T10:12:43.403265", + "url": "/v1/software/tibco-spotfire-analytics" +} diff --git a/site/public/v1/software/tick/index.json b/site/public/v1/software/tick/index.json new file mode 100644 index 000000000000..3ba9f8bef607 --- /dev/null +++ b/site/public/v1/software/tick/index.json @@ -0,0 +1,21 @@ +{ + "id": 10183, + "slug": "tick", + "name": "Tick", + "release_date": "2006-01-01", + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18394343" + ], + "created_at": "2026-07-10T10:12:43.403265", + "updated_at": "2026-07-10T10:12:43.403265", + "url": "/v1/software/tick" +} diff --git a/site/public/v1/software/tickit/index.json b/site/public/v1/software/tickit/index.json new file mode 100644 index 000000000000..296e85e533f6 --- /dev/null +++ b/site/public/v1/software/tickit/index.json @@ -0,0 +1,19 @@ +{ + "id": 10184, + "slug": "tickit", + "name": "TickIT", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2840284" + ], + "created_at": "2026-07-10T10:12:43.403265", + "updated_at": "2026-07-10T10:12:43.403265", + "url": "/v1/software/tickit" +} diff --git a/site/public/v1/software/tictok/index.json b/site/public/v1/software/tictok/index.json new file mode 100644 index 000000000000..ba0e4944b3cc --- /dev/null +++ b/site/public/v1/software/tictok/index.json @@ -0,0 +1,19 @@ +{ + "id": 10185, + "slug": "tictok", + "name": "Tictok", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8566404" + ], + "created_at": "2026-07-10T10:12:43.404183", + "updated_at": "2026-07-10T10:12:43.404183", + "url": "/v1/software/tictok" +} diff --git a/site/public/v1/software/tidyverse/index.json b/site/public/v1/software/tidyverse/index.json new file mode 100644 index 000000000000..f72278de7792 --- /dev/null +++ b/site/public/v1/software/tidyverse/index.json @@ -0,0 +1,26 @@ +{ + "id": 10186, + "slug": "tidyverse", + "name": "tidyverse", + "release_date": null, + "developers": [ + "Jennifer Bryan", + "Hadley Wickham" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "R" + ], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60755534" + ], + "created_at": "2026-07-10T10:12:43.404183", + "updated_at": "2026-07-10T10:12:43.404183", + "url": "/v1/software/tidyverse" +} diff --git a/site/public/v1/software/tidywikidatar/index.json b/site/public/v1/software/tidywikidatar/index.json new file mode 100644 index 000000000000..e5ec1ba2939f --- /dev/null +++ b/site/public/v1/software/tidywikidatar/index.json @@ -0,0 +1,21 @@ +{ + "id": 10187, + "slug": "tidywikidatar", + "name": "tidywikidatar", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "R" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111204484" + ], + "created_at": "2026-07-10T10:12:43.404183", + "updated_at": "2026-07-10T10:12:43.404183", + "url": "/v1/software/tidywikidatar" +} diff --git a/site/public/v1/software/tigase/index.json b/site/public/v1/software/tigase/index.json new file mode 100644 index 000000000000..e475745d8ca9 --- /dev/null +++ b/site/public/v1/software/tigase/index.json @@ -0,0 +1,21 @@ +{ + "id": 10188, + "slug": "tigase", + "name": "Tigase", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Java" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q13420032" + ], + "created_at": "2026-07-10T10:12:43.405184", + "updated_at": "2026-07-10T10:12:43.405184", + "url": "/v1/software/tigase" +} diff --git a/site/public/v1/software/tigerstripe/index.json b/site/public/v1/software/tigerstripe/index.json new file mode 100644 index 000000000000..aa15c88d770f --- /dev/null +++ b/site/public/v1/software/tigerstripe/index.json @@ -0,0 +1,19 @@ +{ + "id": 10189, + "slug": "tigerstripe", + "name": "Tigerstripe", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76178030" + ], + "created_at": "2026-07-10T10:12:43.405184", + "updated_at": "2026-07-10T10:12:43.405184", + "url": "/v1/software/tigerstripe" +} diff --git a/site/public/v1/software/tigertext/index.json b/site/public/v1/software/tigertext/index.json new file mode 100644 index 000000000000..9ae0b6e52d9e --- /dev/null +++ b/site/public/v1/software/tigertext/index.json @@ -0,0 +1,21 @@ +{ + "id": 10190, + "slug": "tigertext", + "name": "TigerText", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "iOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7801350" + ], + "created_at": "2026-07-10T10:12:43.405184", + "updated_at": "2026-07-10T10:12:43.405184", + "url": "/v1/software/tigertext" +} diff --git a/site/public/v1/software/tiklist/index.json b/site/public/v1/software/tiklist/index.json new file mode 100644 index 000000000000..f9556f274a86 --- /dev/null +++ b/site/public/v1/software/tiklist/index.json @@ -0,0 +1,21 @@ +{ + "id": 10191, + "slug": "tiklist", + "name": "Tiklist", + "release_date": null, + "developers": [ + "TaxiApps" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138388441" + ], + "created_at": "2026-07-10T10:12:43.406189", + "updated_at": "2026-07-10T10:12:43.406189", + "url": "/v1/software/tiklist" +} diff --git a/site/public/v1/software/tiktapdown/index.json b/site/public/v1/software/tiktapdown/index.json new file mode 100644 index 000000000000..3cf67c82b608 --- /dev/null +++ b/site/public/v1/software/tiktapdown/index.json @@ -0,0 +1,19 @@ +{ + "id": 10192, + "slug": "tiktapdown", + "name": "TikTapDown", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140322291" + ], + "created_at": "2026-07-10T10:12:43.406189", + "updated_at": "2026-07-10T10:12:43.406189", + "url": "/v1/software/tiktapdown" +} diff --git a/site/public/v1/software/tila-app/index.json b/site/public/v1/software/tila-app/index.json new file mode 100644 index 000000000000..8df31c49c5a8 --- /dev/null +++ b/site/public/v1/software/tila-app/index.json @@ -0,0 +1,23 @@ +{ + "id": 10193, + "slug": "tila-app", + "name": "TILA App", + "release_date": "2021-01-01", + "developers": [], + "publishers": [], + "operating_systems": [ + "iOS" + ], + "programming_languages": [ + "React Native" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115800460" + ], + "created_at": "2026-07-10T10:12:43.406189", + "updated_at": "2026-07-10T10:12:43.406189", + "url": "/v1/software/tila-app" +} diff --git a/site/public/v1/software/tile-text-image-linking-environment/index.json b/site/public/v1/software/tile-text-image-linking-environment/index.json new file mode 100644 index 000000000000..9915408e6b9c --- /dev/null +++ b/site/public/v1/software/tile-text-image-linking-environment/index.json @@ -0,0 +1,19 @@ +{ + "id": 10194, + "slug": "tile-text-image-linking-environment", + "name": "TILE (Text Image Linking Environment)", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084656" + ], + "created_at": "2026-07-10T10:12:43.407189", + "updated_at": "2026-07-10T10:12:43.407189", + "url": "/v1/software/tile-text-image-linking-environment" +} diff --git a/site/public/v1/software/tilemill/index.json b/site/public/v1/software/tilemill/index.json new file mode 100644 index 000000000000..e01edc41b3aa --- /dev/null +++ b/site/public/v1/software/tilemill/index.json @@ -0,0 +1,21 @@ +{ + "id": 10195, + "slug": "tilemill", + "name": "TileMill", + "release_date": null, + "developers": [ + "Mapbox" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084655" + ], + "created_at": "2026-07-10T10:12:43.407189", + "updated_at": "2026-07-10T10:12:43.407189", + "url": "/v1/software/tilemill" +} diff --git a/site/public/v1/software/tilt-brush/index.json b/site/public/v1/software/tilt-brush/index.json new file mode 100644 index 000000000000..b02e913a64f5 --- /dev/null +++ b/site/public/v1/software/tilt-brush/index.json @@ -0,0 +1,23 @@ +{ + "id": 10196, + "slug": "tilt-brush", + "name": "Tilt Brush", + "release_date": "2016-04-05", + "developers": [ + "Google" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Apache Software License 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q23795684" + ], + "created_at": "2026-07-10T10:12:43.407189", + "updated_at": "2026-07-10T10:12:43.407189", + "url": "/v1/software/tilt-brush" +} diff --git a/site/public/v1/software/timberwolf/index.json b/site/public/v1/software/timberwolf/index.json new file mode 100644 index 000000000000..c3be4909412f --- /dev/null +++ b/site/public/v1/software/timberwolf/index.json @@ -0,0 +1,21 @@ +{ + "id": 10197, + "slug": "timberwolf", + "name": "Timberwolf", + "release_date": "2010-06-09", + "developers": [], + "publishers": [], + "operating_systems": [ + "AmigaOS 4" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2394363" + ], + "created_at": "2026-07-10T10:12:43.407189", + "updated_at": "2026-07-10T10:12:43.407189", + "url": "/v1/software/timberwolf" +} diff --git a/site/public/v1/software/timbuktu/index.json b/site/public/v1/software/timbuktu/index.json new file mode 100644 index 000000000000..be93c96ca0d7 --- /dev/null +++ b/site/public/v1/software/timbuktu/index.json @@ -0,0 +1,21 @@ +{ + "id": 10198, + "slug": "timbuktu", + "name": "Timbuktu", + "release_date": null, + "developers": [ + "Arris Group" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7804765" + ], + "created_at": "2026-07-10T10:12:43.408242", + "updated_at": "2026-07-10T10:12:43.408242", + "url": "/v1/software/timbuktu" +} diff --git a/site/public/v1/software/time-bomb/index.json b/site/public/v1/software/time-bomb/index.json new file mode 100644 index 000000000000..95a491f8cc9d --- /dev/null +++ b/site/public/v1/software/time-bomb/index.json @@ -0,0 +1,19 @@ +{ + "id": 10199, + "slug": "time-bomb", + "name": "Time bomb", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7805276" + ], + "created_at": "2026-07-10T10:12:43.408242", + "updated_at": "2026-07-10T10:12:43.408242", + "url": "/v1/software/time-bomb" +} diff --git a/site/public/v1/software/time-doctor/index.json b/site/public/v1/software/time-doctor/index.json new file mode 100644 index 000000000000..fe0679b78a3e --- /dev/null +++ b/site/public/v1/software/time-doctor/index.json @@ -0,0 +1,25 @@ +{ + "id": 10200, + "slug": "time-doctor", + "name": "Time Doctor", + "release_date": null, + "developers": [ + "Time Doctor" + ], + "publishers": [], + "operating_systems": [ + "iOS", + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25303427" + ], + "created_at": "2026-07-10T10:12:43.408242", + "updated_at": "2026-07-10T10:12:43.408242", + "url": "/v1/software/time-doctor" +} diff --git a/site/public/v1/software/time-matters/index.json b/site/public/v1/software/time-matters/index.json new file mode 100644 index 000000000000..5f9da55fc882 --- /dev/null +++ b/site/public/v1/software/time-matters/index.json @@ -0,0 +1,23 @@ +{ + "id": 10201, + "slug": "time-matters", + "name": "Time Matters", + "release_date": "1989-01-01", + "developers": [ + "LexisNexis" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7805054" + ], + "created_at": "2026-07-10T10:12:43.408242", + "updated_at": "2026-07-10T10:12:43.408242", + "url": "/v1/software/time-matters" +} diff --git a/site/public/v1/software/timebridge/index.json b/site/public/v1/software/timebridge/index.json new file mode 100644 index 000000000000..7b1780a6df08 --- /dev/null +++ b/site/public/v1/software/timebridge/index.json @@ -0,0 +1,19 @@ +{ + "id": 10202, + "slug": "timebridge", + "name": "TimeBridge", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7804845" + ], + "created_at": "2026-07-10T10:12:43.409254", + "updated_at": "2026-07-10T10:12:43.409254", + "url": "/v1/software/timebridge" +} diff --git a/site/public/v1/software/timeclock-plus/index.json b/site/public/v1/software/timeclock-plus/index.json new file mode 100644 index 000000000000..c15fd7df00bc --- /dev/null +++ b/site/public/v1/software/timeclock-plus/index.json @@ -0,0 +1,21 @@ +{ + "id": 10203, + "slug": "timeclock-plus", + "name": "TimeClock Plus", + "release_date": null, + "developers": [ + "Data Management Inc." + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7804847" + ], + "created_at": "2026-07-10T10:12:43.409254", + "updated_at": "2026-07-10T10:12:43.409254", + "url": "/v1/software/timeclock-plus" +} diff --git a/site/public/v1/software/timeflow/index.json b/site/public/v1/software/timeflow/index.json new file mode 100644 index 000000000000..eea86a609f70 --- /dev/null +++ b/site/public/v1/software/timeflow/index.json @@ -0,0 +1,19 @@ +{ + "id": 10204, + "slug": "timeflow", + "name": "Timeflow", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084657" + ], + "created_at": "2026-07-10T10:12:43.410252", + "updated_at": "2026-07-10T10:12:43.410252", + "url": "/v1/software/timeflow" +} diff --git a/site/public/v1/software/timefold/index.json b/site/public/v1/software/timefold/index.json new file mode 100644 index 000000000000..2fb3c0804dfa --- /dev/null +++ b/site/public/v1/software/timefold/index.json @@ -0,0 +1,19 @@ +{ + "id": 10205, + "slug": "timefold", + "name": "Timefold", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135907506" + ], + "created_at": "2026-07-10T10:12:43.410252", + "updated_at": "2026-07-10T10:12:43.410252", + "url": "/v1/software/timefold" +} diff --git a/site/public/v1/software/timeglider/index.json b/site/public/v1/software/timeglider/index.json new file mode 100644 index 000000000000..10da7a371510 --- /dev/null +++ b/site/public/v1/software/timeglider/index.json @@ -0,0 +1,19 @@ +{ + "id": 10206, + "slug": "timeglider", + "name": "TimeGlider", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084658" + ], + "created_at": "2026-07-10T10:12:43.410252", + "updated_at": "2026-07-10T10:12:43.410252", + "url": "/v1/software/timeglider" +} diff --git a/site/public/v1/software/timeline-js/index.json b/site/public/v1/software/timeline-js/index.json new file mode 100644 index 000000000000..2d00ec0cfff2 --- /dev/null +++ b/site/public/v1/software/timeline-js/index.json @@ -0,0 +1,19 @@ +{ + "id": 10207, + "slug": "timeline-js", + "name": "Timeline JS", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084660" + ], + "created_at": "2026-07-10T10:12:43.410252", + "updated_at": "2026-07-10T10:12:43.410252", + "url": "/v1/software/timeline-js" +} diff --git a/site/public/v1/software/timelinecurator/index.json b/site/public/v1/software/timelinecurator/index.json new file mode 100644 index 000000000000..0aa2cc64f7f7 --- /dev/null +++ b/site/public/v1/software/timelinecurator/index.json @@ -0,0 +1,19 @@ +{ + "id": 10208, + "slug": "timelinecurator", + "name": "TimeLineCurator", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084659" + ], + "created_at": "2026-07-10T10:12:43.411231", + "updated_at": "2026-07-10T10:12:43.411231", + "url": "/v1/software/timelinecurator" +} diff --git a/site/public/v1/software/timeliner/index.json b/site/public/v1/software/timeliner/index.json new file mode 100644 index 000000000000..6441ba437037 --- /dev/null +++ b/site/public/v1/software/timeliner/index.json @@ -0,0 +1,23 @@ +{ + "id": 10209, + "slug": "timeliner", + "name": "Timeliner", + "release_date": null, + "developers": [ + "Noam Tryber" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [ + "project management software" + ], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139378729" + ], + "created_at": "2026-07-10T10:12:43.411231", + "updated_at": "2026-07-10T10:12:43.411231", + "url": "/v1/software/timeliner" +} diff --git a/site/public/v1/software/timemapper/index.json b/site/public/v1/software/timemapper/index.json new file mode 100644 index 000000000000..1cbcce70c9a2 --- /dev/null +++ b/site/public/v1/software/timemapper/index.json @@ -0,0 +1,19 @@ +{ + "id": 10210, + "slug": "timemapper", + "name": "TimeMapper", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084661" + ], + "created_at": "2026-07-10T10:12:43.412245", + "updated_at": "2026-07-10T10:12:43.412245", + "url": "/v1/software/timemapper" +} diff --git a/site/public/v1/software/timenavigator/index.json b/site/public/v1/software/timenavigator/index.json new file mode 100644 index 000000000000..a7d19b48cb8b --- /dev/null +++ b/site/public/v1/software/timenavigator/index.json @@ -0,0 +1,19 @@ +{ + "id": 10211, + "slug": "timenavigator", + "name": "TIMEnavigator", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2868946" + ], + "created_at": "2026-07-10T10:12:43.412245", + "updated_at": "2026-07-10T10:12:43.412245", + "url": "/v1/software/timenavigator" +} diff --git a/site/public/v1/software/timerime/index.json b/site/public/v1/software/timerime/index.json new file mode 100644 index 000000000000..d61df41edc49 --- /dev/null +++ b/site/public/v1/software/timerime/index.json @@ -0,0 +1,19 @@ +{ + "id": 10212, + "slug": "timerime", + "name": "TimeRime", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084662" + ], + "created_at": "2026-07-10T10:12:43.412245", + "updated_at": "2026-07-10T10:12:43.412245", + "url": "/v1/software/timerime" +} diff --git a/site/public/v1/software/timesheet-js/index.json b/site/public/v1/software/timesheet-js/index.json new file mode 100644 index 000000000000..e9edba6ab16f --- /dev/null +++ b/site/public/v1/software/timesheet-js/index.json @@ -0,0 +1,19 @@ +{ + "id": 10213, + "slug": "timesheet-js", + "name": "timesheet.js", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084663" + ], + "created_at": "2026-07-10T10:12:43.412245", + "updated_at": "2026-07-10T10:12:43.412245", + "url": "/v1/software/timesheet-js" +} diff --git a/site/public/v1/software/timetiger/index.json b/site/public/v1/software/timetiger/index.json new file mode 100644 index 000000000000..e604182cdd22 --- /dev/null +++ b/site/public/v1/software/timetiger/index.json @@ -0,0 +1,21 @@ +{ + "id": 10214, + "slug": "timetiger", + "name": "TimeTiger", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7804858" + ], + "created_at": "2026-07-10T10:12:43.413253", + "updated_at": "2026-07-10T10:12:43.413253", + "url": "/v1/software/timetiger" +} diff --git a/site/public/v1/software/timetracker-lx/index.json b/site/public/v1/software/timetracker-lx/index.json new file mode 100644 index 000000000000..2b6bb9b6d1fb --- /dev/null +++ b/site/public/v1/software/timetracker-lx/index.json @@ -0,0 +1,21 @@ +{ + "id": 10215, + "slug": "timetracker-lx", + "name": "TimeTracker/LX", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121672438" + ], + "created_at": "2026-07-10T10:12:43.413253", + "updated_at": "2026-07-10T10:12:43.413253", + "url": "/v1/software/timetracker-lx" +} diff --git a/site/public/v1/software/timetree/index.json b/site/public/v1/software/timetree/index.json new file mode 100644 index 000000000000..762678f1c83d --- /dev/null +++ b/site/public/v1/software/timetree/index.json @@ -0,0 +1,21 @@ +{ + "id": 10216, + "slug": "timetree", + "name": "TimeTree", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17126740" + ], + "created_at": "2026-07-10T10:12:43.413253", + "updated_at": "2026-07-10T10:12:43.413253", + "url": "/v1/software/timetree" +} diff --git a/site/public/v1/software/timeworks-publisher/index.json b/site/public/v1/software/timeworks-publisher/index.json new file mode 100644 index 000000000000..abc079f22bcf --- /dev/null +++ b/site/public/v1/software/timeworks-publisher/index.json @@ -0,0 +1,23 @@ +{ + "id": 10217, + "slug": "timeworks-publisher", + "name": "Timeworks Publisher", + "release_date": null, + "developers": [ + "GST Computer Systems" + ], + "publishers": [ + "Timeworks" + ], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7806624" + ], + "created_at": "2026-07-10T10:12:43.414245", + "updated_at": "2026-07-10T10:12:43.414245", + "url": "/v1/software/timeworks-publisher" +} diff --git a/site/public/v1/software/tina/index.json b/site/public/v1/software/tina/index.json new file mode 100644 index 000000000000..450c4df0cbbe --- /dev/null +++ b/site/public/v1/software/tina/index.json @@ -0,0 +1,19 @@ +{ + "id": 10218, + "slug": "tina", + "name": "TINA", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25345891" + ], + "created_at": "2026-07-10T10:12:43.414245", + "updated_at": "2026-07-10T10:12:43.414245", + "url": "/v1/software/tina" +} diff --git a/site/public/v1/software/tinderbox/index.json b/site/public/v1/software/tinderbox/index.json new file mode 100644 index 000000000000..8937f668c468 --- /dev/null +++ b/site/public/v1/software/tinderbox/index.json @@ -0,0 +1,19 @@ +{ + "id": 10219, + "slug": "tinderbox", + "name": "Tinderbox", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3511179" + ], + "created_at": "2026-07-10T10:12:43.414245", + "updated_at": "2026-07-10T10:12:43.414245", + "url": "/v1/software/tinderbox" +} diff --git a/site/public/v1/software/tinidrop/index.json b/site/public/v1/software/tinidrop/index.json new file mode 100644 index 000000000000..b9e77eaaadad --- /dev/null +++ b/site/public/v1/software/tinidrop/index.json @@ -0,0 +1,19 @@ +{ + "id": 10220, + "slug": "tinidrop", + "name": "TiniDrop", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140069470" + ], + "created_at": "2026-07-10T10:12:43.415291", + "updated_at": "2026-07-10T10:12:43.415291", + "url": "/v1/software/tinidrop" +} diff --git a/site/public/v1/software/tinker/index.json b/site/public/v1/software/tinker/index.json new file mode 100644 index 000000000000..16a445f44f41 --- /dev/null +++ b/site/public/v1/software/tinker/index.json @@ -0,0 +1,19 @@ +{ + "id": 10221, + "slug": "tinker", + "name": "Tinker", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3512200" + ], + "created_at": "2026-07-10T10:12:43.415291", + "updated_at": "2026-07-10T10:12:43.415291", + "url": "/v1/software/tinker" +} diff --git a/site/public/v1/software/tinkertool-classic/index.json b/site/public/v1/software/tinkertool-classic/index.json new file mode 100644 index 000000000000..423e5af6aa2b --- /dev/null +++ b/site/public/v1/software/tinkertool-classic/index.json @@ -0,0 +1,19 @@ +{ + "id": 10222, + "slug": "tinkertool-classic", + "name": "TinkerTool: Classic", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7808314" + ], + "created_at": "2026-07-10T10:12:43.416244", + "updated_at": "2026-07-10T10:12:43.416244", + "url": "/v1/software/tinkertool-classic" +} diff --git a/site/public/v1/software/tinkertool/index.json b/site/public/v1/software/tinkertool/index.json new file mode 100644 index 000000000000..9abd505c08ba --- /dev/null +++ b/site/public/v1/software/tinkertool/index.json @@ -0,0 +1,23 @@ +{ + "id": 10223, + "slug": "tinkertool", + "name": "TinkerTool", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "macOS" + ], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7808312" + ], + "created_at": "2026-07-10T10:12:43.416244", + "updated_at": "2026-07-10T10:12:43.416244", + "url": "/v1/software/tinkertool" +} diff --git a/site/public/v1/software/tinlib/index.json b/site/public/v1/software/tinlib/index.json new file mode 100644 index 000000000000..ee515763db41 --- /dev/null +++ b/site/public/v1/software/tinlib/index.json @@ -0,0 +1,19 @@ +{ + "id": 10224, + "slug": "tinlib", + "name": "Tinlib", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16615911" + ], + "created_at": "2026-07-10T10:12:43.416244", + "updated_at": "2026-07-10T10:12:43.416244", + "url": "/v1/software/tinlib" +} diff --git a/site/public/v1/software/tintin-in-tibet/index.json b/site/public/v1/software/tintin-in-tibet/index.json new file mode 100644 index 000000000000..e041bc054022 --- /dev/null +++ b/site/public/v1/software/tintin-in-tibet/index.json @@ -0,0 +1,21 @@ +{ + "id": 10225, + "slug": "tintin-in-tibet", + "name": "Tintin in Tibet", + "release_date": "1995-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [ + "adventure video game" + ], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3529218" + ], + "created_at": "2026-07-10T10:12:43.416244", + "updated_at": "2026-07-10T10:12:43.416244", + "url": "/v1/software/tintin-in-tibet" +} diff --git a/site/public/v1/software/tintwizard/index.json b/site/public/v1/software/tintwizard/index.json new file mode 100644 index 000000000000..bfd423a53726 --- /dev/null +++ b/site/public/v1/software/tintwizard/index.json @@ -0,0 +1,19 @@ +{ + "id": 10226, + "slug": "tintwizard", + "name": "tintwizard", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065440" + ], + "created_at": "2026-07-10T10:12:43.416244", + "updated_at": "2026-07-10T10:12:43.416244", + "url": "/v1/software/tintwizard" +} diff --git a/site/public/v1/software/tiny11/index.json b/site/public/v1/software/tiny11/index.json new file mode 100644 index 000000000000..2adf9e98c13b --- /dev/null +++ b/site/public/v1/software/tiny11/index.json @@ -0,0 +1,19 @@ +{ + "id": 10227, + "slug": "tiny11", + "name": "Tiny11", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123585229" + ], + "created_at": "2026-07-10T10:12:43.417610", + "updated_at": "2026-07-10T10:12:43.417610", + "url": "/v1/software/tiny11" +} diff --git a/site/public/v1/software/tinyfugue/index.json b/site/public/v1/software/tinyfugue/index.json new file mode 100644 index 000000000000..873e7355d3fa --- /dev/null +++ b/site/public/v1/software/tinyfugue/index.json @@ -0,0 +1,19 @@ +{ + "id": 10228, + "slug": "tinyfugue", + "name": "TinyFugue", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7808558" + ], + "created_at": "2026-07-10T10:12:43.417610", + "updated_at": "2026-07-10T10:12:43.417610", + "url": "/v1/software/tinyfugue" +} diff --git a/site/public/v1/software/tinygrad/index.json b/site/public/v1/software/tinygrad/index.json new file mode 100644 index 000000000000..68f1e82760a0 --- /dev/null +++ b/site/public/v1/software/tinygrad/index.json @@ -0,0 +1,23 @@ +{ + "id": 10229, + "slug": "tinygrad", + "name": "tinygrad", + "release_date": null, + "developers": [ + "tiny corp" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117105889" + ], + "created_at": "2026-07-10T10:12:43.418499", + "updated_at": "2026-07-10T10:12:43.418499", + "url": "/v1/software/tinygrad" +} diff --git a/site/public/v1/software/tinymount/index.json b/site/public/v1/software/tinymount/index.json new file mode 100644 index 000000000000..d905de172859 --- /dev/null +++ b/site/public/v1/software/tinymount/index.json @@ -0,0 +1,19 @@ +{ + "id": 10230, + "slug": "tinymount", + "name": "tinymount", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975517" + ], + "created_at": "2026-07-10T10:12:43.418499", + "updated_at": "2026-07-10T10:12:43.418499", + "url": "/v1/software/tinymount" +} diff --git a/site/public/v1/software/tinynotify-send/index.json b/site/public/v1/software/tinynotify-send/index.json new file mode 100644 index 000000000000..61c11c8e9e1f --- /dev/null +++ b/site/public/v1/software/tinynotify-send/index.json @@ -0,0 +1,19 @@ +{ + "id": 10231, + "slug": "tinynotify-send", + "name": "tinynotify-send", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975518" + ], + "created_at": "2026-07-10T10:12:43.418499", + "updated_at": "2026-07-10T10:12:43.418499", + "url": "/v1/software/tinynotify-send" +} diff --git a/site/public/v1/software/tinyvpn/index.json b/site/public/v1/software/tinyvpn/index.json new file mode 100644 index 000000000000..2ed1012b5201 --- /dev/null +++ b/site/public/v1/software/tinyvpn/index.json @@ -0,0 +1,19 @@ +{ + "id": 10232, + "slug": "tinyvpn", + "name": "TinyVPN", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11251113" + ], + "created_at": "2026-07-10T10:12:43.418499", + "updated_at": "2026-07-10T10:12:43.418499", + "url": "/v1/software/tinyvpn" +} diff --git a/site/public/v1/software/tip/index.json b/site/public/v1/software/tip/index.json new file mode 100644 index 000000000000..fbc8d58bc9fe --- /dev/null +++ b/site/public/v1/software/tip/index.json @@ -0,0 +1,19 @@ +{ + "id": 10233, + "slug": "tip", + "name": "tip", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7808761" + ], + "created_at": "2026-07-10T10:12:43.419498", + "updated_at": "2026-07-10T10:12:43.419498", + "url": "/v1/software/tip" +} diff --git a/site/public/v1/software/tipcam/index.json b/site/public/v1/software/tipcam/index.json new file mode 100644 index 000000000000..ea65d373e713 --- /dev/null +++ b/site/public/v1/software/tipcam/index.json @@ -0,0 +1,19 @@ +{ + "id": 10234, + "slug": "tipcam", + "name": "TipCam", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084665" + ], + "created_at": "2026-07-10T10:12:43.419498", + "updated_at": "2026-07-10T10:12:43.419498", + "url": "/v1/software/tipcam" +} diff --git a/site/public/v1/software/tippecanoe/index.json b/site/public/v1/software/tippecanoe/index.json new file mode 100644 index 000000000000..497ebca4311c --- /dev/null +++ b/site/public/v1/software/tippecanoe/index.json @@ -0,0 +1,22 @@ +{ + "id": 10235, + "slug": "tippecanoe", + "name": "tippecanoe", + "release_date": null, + "developers": [ + "Mapbox", + "Felt Maps" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122904834" + ], + "created_at": "2026-07-10T10:12:43.419498", + "updated_at": "2026-07-10T10:12:43.419498", + "url": "/v1/software/tippecanoe" +} diff --git a/site/public/v1/software/titan-ftp-server/index.json b/site/public/v1/software/titan-ftp-server/index.json new file mode 100644 index 000000000000..be1e82db3237 --- /dev/null +++ b/site/public/v1/software/titan-ftp-server/index.json @@ -0,0 +1,21 @@ +{ + "id": 10236, + "slug": "titan-ftp-server", + "name": "Titan FTP Server", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Windows 10 Pro" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3529485" + ], + "created_at": "2026-07-10T10:12:43.420568", + "updated_at": "2026-07-10T10:12:43.420568", + "url": "/v1/software/titan-ftp-server" +} diff --git a/site/public/v1/software/titan-security-key/index.json b/site/public/v1/software/titan-security-key/index.json new file mode 100644 index 000000000000..3ec428442e3b --- /dev/null +++ b/site/public/v1/software/titan-security-key/index.json @@ -0,0 +1,21 @@ +{ + "id": 10237, + "slug": "titan-security-key", + "name": "Titan Security Key", + "release_date": "2019-10-15", + "developers": [ + "Google" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q57521184" + ], + "created_at": "2026-07-10T10:12:43.420568", + "updated_at": "2026-07-10T10:12:43.420568", + "url": "/v1/software/titan-security-key" +} diff --git a/site/public/v1/software/titan/index.json b/site/public/v1/software/titan/index.json new file mode 100644 index 000000000000..3569ad0fb3bf --- /dev/null +++ b/site/public/v1/software/titan/index.json @@ -0,0 +1,19 @@ +{ + "id": 10238, + "slug": "titan", + "name": "Titan", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110785384" + ], + "created_at": "2026-07-10T10:12:43.420568", + "updated_at": "2026-07-10T10:12:43.420568", + "url": "/v1/software/titan" +} diff --git a/site/public/v1/software/titan2d/index.json b/site/public/v1/software/titan2d/index.json new file mode 100644 index 000000000000..8a9a77c09351 --- /dev/null +++ b/site/public/v1/software/titan2d/index.json @@ -0,0 +1,19 @@ +{ + "id": 10239, + "slug": "titan2d", + "name": "TITAN2D", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7670455" + ], + "created_at": "2026-07-10T10:12:43.421575", + "updated_at": "2026-07-10T10:12:43.421575", + "url": "/v1/software/titan2d" +} diff --git a/site/public/v1/software/tivoli-management-framework/index.json b/site/public/v1/software/tivoli-management-framework/index.json new file mode 100644 index 000000000000..a3a22b8898a3 --- /dev/null +++ b/site/public/v1/software/tivoli-management-framework/index.json @@ -0,0 +1,19 @@ +{ + "id": 10240, + "slug": "tivoli-management-framework", + "name": "Tivoli Management Framework", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11251123" + ], + "created_at": "2026-07-10T10:12:43.421575", + "updated_at": "2026-07-10T10:12:43.421575", + "url": "/v1/software/tivoli-management-framework" +} diff --git a/site/public/v1/software/tivoli-service-automation-manager/index.json b/site/public/v1/software/tivoli-service-automation-manager/index.json new file mode 100644 index 000000000000..092232372654 --- /dev/null +++ b/site/public/v1/software/tivoli-service-automation-manager/index.json @@ -0,0 +1,21 @@ +{ + "id": 10241, + "slug": "tivoli-service-automation-manager", + "name": "Tivoli Service Automation Manager", + "release_date": null, + "developers": [ + "IBM" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7810444" + ], + "created_at": "2026-07-10T10:12:43.421575", + "updated_at": "2026-07-10T10:12:43.421575", + "url": "/v1/software/tivoli-service-automation-manager" +} diff --git a/site/public/v1/software/tivoli-software/index.json b/site/public/v1/software/tivoli-software/index.json new file mode 100644 index 000000000000..0beb616eb705 --- /dev/null +++ b/site/public/v1/software/tivoli-software/index.json @@ -0,0 +1,19 @@ +{ + "id": 10242, + "slug": "tivoli-software", + "name": "Tivoli Software", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1072552" + ], + "created_at": "2026-07-10T10:12:43.422593", + "updated_at": "2026-07-10T10:12:43.422593", + "url": "/v1/software/tivoli-software" +} diff --git a/site/public/v1/software/tk-solver/index.json b/site/public/v1/software/tk-solver/index.json new file mode 100644 index 000000000000..2f31f7acd0d5 --- /dev/null +++ b/site/public/v1/software/tk-solver/index.json @@ -0,0 +1,21 @@ +{ + "id": 10243, + "slug": "tk-solver", + "name": "TK Solver", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7670568" + ], + "created_at": "2026-07-10T10:12:43.422593", + "updated_at": "2026-07-10T10:12:43.422593", + "url": "/v1/software/tk-solver" +} diff --git a/site/public/v1/software/tl-dv/index.json b/site/public/v1/software/tl-dv/index.json new file mode 100644 index 000000000000..d5be0ade8bfe --- /dev/null +++ b/site/public/v1/software/tl-dv/index.json @@ -0,0 +1,19 @@ +{ + "id": 10244, + "slug": "tl-dv", + "name": "tl;dv", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115484874" + ], + "created_at": "2026-07-10T10:12:43.422593", + "updated_at": "2026-07-10T10:12:43.422593", + "url": "/v1/software/tl-dv" +} diff --git a/site/public/v1/software/tldr-pages/index.json b/site/public/v1/software/tldr-pages/index.json new file mode 100644 index 000000000000..858acbae0a94 --- /dev/null +++ b/site/public/v1/software/tldr-pages/index.json @@ -0,0 +1,21 @@ +{ + "id": 10245, + "slug": "tldr-pages", + "name": "tldr-pages", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Creative Commons Attribution 4.0 International" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105746463" + ], + "created_at": "2026-07-10T10:12:43.423572", + "updated_at": "2026-07-10T10:12:43.423572", + "url": "/v1/software/tldr-pages" +} diff --git a/site/public/v1/software/tlen-pl/index.json b/site/public/v1/software/tlen-pl/index.json new file mode 100644 index 000000000000..0bf7573eacf3 --- /dev/null +++ b/site/public/v1/software/tlen-pl/index.json @@ -0,0 +1,23 @@ +{ + "id": 10246, + "slug": "tlen-pl", + "name": "Tlen.pl", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q58055" + ], + "created_at": "2026-07-10T10:12:43.423572", + "updated_at": "2026-07-10T10:12:43.423572", + "url": "/v1/software/tlen-pl" +} diff --git a/site/public/v1/software/tlooto/index.json b/site/public/v1/software/tlooto/index.json new file mode 100644 index 000000000000..77fb74af2b9e --- /dev/null +++ b/site/public/v1/software/tlooto/index.json @@ -0,0 +1,19 @@ +{ + "id": 10247, + "slug": "tlooto", + "name": "Tlooto", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134021164" + ], + "created_at": "2026-07-10T10:12:43.423572", + "updated_at": "2026-07-10T10:12:43.423572", + "url": "/v1/software/tlooto" +} diff --git a/site/public/v1/software/tltk/index.json b/site/public/v1/software/tltk/index.json new file mode 100644 index 000000000000..6e111ec6a795 --- /dev/null +++ b/site/public/v1/software/tltk/index.json @@ -0,0 +1,25 @@ +{ + "id": 10248, + "slug": "tltk", + "name": "TLTK", + "release_date": "2018-02-21", + "developers": [ + "Chulalongkorn University" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Python" + ], + "licenses": [ + "3-clause BSD License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q102183142" + ], + "created_at": "2026-07-10T10:12:43.423572", + "updated_at": "2026-07-10T10:12:43.423572", + "url": "/v1/software/tltk" +} diff --git a/site/public/v1/software/tm-align/index.json b/site/public/v1/software/tm-align/index.json new file mode 100644 index 000000000000..3dc20ed557b2 --- /dev/null +++ b/site/public/v1/software/tm-align/index.json @@ -0,0 +1,19 @@ +{ + "id": 10249, + "slug": "tm-align", + "name": "TM-align", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q114840775" + ], + "created_at": "2026-07-10T10:12:43.424597", + "updated_at": "2026-07-10T10:12:43.424597", + "url": "/v1/software/tm-align" +} diff --git a/site/public/v1/software/tmax-wapl/index.json b/site/public/v1/software/tmax-wapl/index.json new file mode 100644 index 000000000000..43514d2cfae4 --- /dev/null +++ b/site/public/v1/software/tmax-wapl/index.json @@ -0,0 +1,21 @@ +{ + "id": 10250, + "slug": "tmax-wapl", + "name": "Tmax WAPL", + "release_date": "2021-02-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [ + "collaboration tool" + ], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124568861" + ], + "created_at": "2026-07-10T10:12:43.424597", + "updated_at": "2026-07-10T10:12:43.424597", + "url": "/v1/software/tmax-wapl" +} diff --git a/site/public/v1/software/tmetric/index.json b/site/public/v1/software/tmetric/index.json new file mode 100644 index 000000000000..60b346f25fbc --- /dev/null +++ b/site/public/v1/software/tmetric/index.json @@ -0,0 +1,19 @@ +{ + "id": 10251, + "slug": "tmetric", + "name": "TMetric", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28957076" + ], + "created_at": "2026-07-10T10:12:43.424597", + "updated_at": "2026-07-10T10:12:43.424597", + "url": "/v1/software/tmetric" +} diff --git a/site/public/v1/software/tmux-mem-cpu-load/index.json b/site/public/v1/software/tmux-mem-cpu-load/index.json new file mode 100644 index 000000000000..50b3c7bce1b7 --- /dev/null +++ b/site/public/v1/software/tmux-mem-cpu-load/index.json @@ -0,0 +1,21 @@ +{ + "id": 10252, + "slug": "tmux-mem-cpu-load", + "name": "tmux-mem-cpu-load", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Apache License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975519" + ], + "created_at": "2026-07-10T10:12:43.425592", + "updated_at": "2026-07-10T10:12:43.425592", + "url": "/v1/software/tmux-mem-cpu-load" +} diff --git a/site/public/v1/software/tn3270-plus/index.json b/site/public/v1/software/tn3270-plus/index.json new file mode 100644 index 000000000000..7f0e662fedb9 --- /dev/null +++ b/site/public/v1/software/tn3270-plus/index.json @@ -0,0 +1,21 @@ +{ + "id": 10253, + "slug": "tn3270-plus", + "name": "TN3270 Plus", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7670806" + ], + "created_at": "2026-07-10T10:12:43.425592", + "updated_at": "2026-07-10T10:12:43.425592", + "url": "/v1/software/tn3270-plus" +} diff --git a/site/public/v1/software/tnftp/index.json b/site/public/v1/software/tnftp/index.json new file mode 100644 index 000000000000..7aaddccc1688 --- /dev/null +++ b/site/public/v1/software/tnftp/index.json @@ -0,0 +1,21 @@ +{ + "id": 10254, + "slug": "tnftp", + "name": "tnftp", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Unix-like operating system" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7810787" + ], + "created_at": "2026-07-10T10:12:43.425592", + "updated_at": "2026-07-10T10:12:43.425592", + "url": "/v1/software/tnftp" +} diff --git a/site/public/v1/software/tnt-trigrams-n-tags/index.json b/site/public/v1/software/tnt-trigrams-n-tags/index.json new file mode 100644 index 000000000000..f6473d29478c --- /dev/null +++ b/site/public/v1/software/tnt-trigrams-n-tags/index.json @@ -0,0 +1,19 @@ +{ + "id": 10255, + "slug": "tnt-trigrams-n-tags", + "name": "TnT (Trigrams'n'Tags)", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087748" + ], + "created_at": "2026-07-10T10:12:43.426582", + "updated_at": "2026-07-10T10:12:43.426582", + "url": "/v1/software/tnt-trigrams-n-tags" +} diff --git a/site/public/v1/software/tntdrive/index.json b/site/public/v1/software/tntdrive/index.json new file mode 100644 index 000000000000..008b6e4bb84d --- /dev/null +++ b/site/public/v1/software/tntdrive/index.json @@ -0,0 +1,19 @@ +{ + "id": 10256, + "slug": "tntdrive", + "name": "TntDrive", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q98520267" + ], + "created_at": "2026-07-10T10:12:43.426582", + "updated_at": "2026-07-10T10:12:43.426582", + "url": "/v1/software/tntdrive" +} diff --git a/site/public/v1/software/tntmips/index.json b/site/public/v1/software/tntmips/index.json new file mode 100644 index 000000000000..4746642c9cda --- /dev/null +++ b/site/public/v1/software/tntmips/index.json @@ -0,0 +1,21 @@ +{ + "id": 10257, + "slug": "tntmips", + "name": "TNTmips", + "release_date": null, + "developers": [ + "MicroImages, Inc." + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7670931" + ], + "created_at": "2026-07-10T10:12:43.426582", + "updated_at": "2026-07-10T10:12:43.426582", + "url": "/v1/software/tntmips" +} diff --git a/site/public/v1/software/toad-data-modeler/index.json b/site/public/v1/software/toad-data-modeler/index.json new file mode 100644 index 000000000000..5165274cda51 --- /dev/null +++ b/site/public/v1/software/toad-data-modeler/index.json @@ -0,0 +1,23 @@ +{ + "id": 10258, + "slug": "toad-data-modeler", + "name": "Toad Data Modeler", + "release_date": null, + "developers": [ + "Quest Software" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7811358" + ], + "created_at": "2026-07-10T10:12:43.426582", + "updated_at": "2026-07-10T10:12:43.426582", + "url": "/v1/software/toad-data-modeler" +} diff --git a/site/public/v1/software/toaster/index.json b/site/public/v1/software/toaster/index.json new file mode 100644 index 000000000000..02e49411c391 --- /dev/null +++ b/site/public/v1/software/toaster/index.json @@ -0,0 +1,19 @@ +{ + "id": 10259, + "slug": "toaster", + "name": "Toaster", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7811423" + ], + "created_at": "2026-07-10T10:12:43.427576", + "updated_at": "2026-07-10T10:12:43.427576", + "url": "/v1/software/toaster" +} diff --git a/site/public/v1/software/tocosk/index.json b/site/public/v1/software/tocosk/index.json new file mode 100644 index 000000000000..c9eafe28fee3 --- /dev/null +++ b/site/public/v1/software/tocosk/index.json @@ -0,0 +1,19 @@ +{ + "id": 10260, + "slug": "tocosk", + "name": "tocosk", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3512283" + ], + "created_at": "2026-07-10T10:12:43.427576", + "updated_at": "2026-07-10T10:12:43.427576", + "url": "/v1/software/tocosk" +} diff --git a/site/public/v1/software/tofu/index.json b/site/public/v1/software/tofu/index.json new file mode 100644 index 000000000000..eb9d5c344e62 --- /dev/null +++ b/site/public/v1/software/tofu/index.json @@ -0,0 +1,19 @@ +{ + "id": 10261, + "slug": "tofu", + "name": "Tofu", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084666" + ], + "created_at": "2026-07-10T10:12:43.428577", + "updated_at": "2026-07-10T10:12:43.428577", + "url": "/v1/software/tofu" +} diff --git a/site/public/v1/software/toggl-track/index.json b/site/public/v1/software/toggl-track/index.json new file mode 100644 index 000000000000..0e2d8a2d07a9 --- /dev/null +++ b/site/public/v1/software/toggl-track/index.json @@ -0,0 +1,19 @@ +{ + "id": 10262, + "slug": "toggl-track", + "name": "Toggl Track", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q15113618" + ], + "created_at": "2026-07-10T10:12:43.428577", + "updated_at": "2026-07-10T10:12:43.428577", + "url": "/v1/software/toggl-track" +} diff --git a/site/public/v1/software/tokenization-using-nltk/index.json b/site/public/v1/software/tokenization-using-nltk/index.json new file mode 100644 index 000000000000..68c69377af0b --- /dev/null +++ b/site/public/v1/software/tokenization-using-nltk/index.json @@ -0,0 +1,19 @@ +{ + "id": 10263, + "slug": "tokenization-using-nltk", + "name": "Tokenization using NLTK", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084667" + ], + "created_at": "2026-07-10T10:12:43.428577", + "updated_at": "2026-07-10T10:12:43.428577", + "url": "/v1/software/tokenization-using-nltk" +} diff --git a/site/public/v1/software/tokenx/index.json b/site/public/v1/software/tokenx/index.json new file mode 100644 index 000000000000..22c103d62471 --- /dev/null +++ b/site/public/v1/software/tokenx/index.json @@ -0,0 +1,19 @@ +{ + "id": 10264, + "slug": "tokenx", + "name": "TokenX", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084668" + ], + "created_at": "2026-07-10T10:12:43.428577", + "updated_at": "2026-07-10T10:12:43.428577", + "url": "/v1/software/tokenx" +} diff --git a/site/public/v1/software/toledo-nanochess/index.json b/site/public/v1/software/toledo-nanochess/index.json new file mode 100644 index 000000000000..28c3634e7720 --- /dev/null +++ b/site/public/v1/software/toledo-nanochess/index.json @@ -0,0 +1,19 @@ +{ + "id": 10265, + "slug": "toledo-nanochess", + "name": "Toledo Nanochess", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7814174" + ], + "created_at": "2026-07-10T10:12:43.429594", + "updated_at": "2026-07-10T10:12:43.429594", + "url": "/v1/software/toledo-nanochess" +} diff --git a/site/public/v1/software/tom-s-planner/index.json b/site/public/v1/software/tom-s-planner/index.json new file mode 100644 index 000000000000..370d2898f71a --- /dev/null +++ b/site/public/v1/software/tom-s-planner/index.json @@ -0,0 +1,19 @@ +{ + "id": 10266, + "slug": "tom-s-planner", + "name": "Tom's Planner", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7814695" + ], + "created_at": "2026-07-10T10:12:43.429594", + "updated_at": "2026-07-10T10:12:43.429594", + "url": "/v1/software/tom-s-planner" +} diff --git a/site/public/v1/software/tom-sawyer-perspectives/index.json b/site/public/v1/software/tom-sawyer-perspectives/index.json new file mode 100644 index 000000000000..af7a1fad832b --- /dev/null +++ b/site/public/v1/software/tom-sawyer-perspectives/index.json @@ -0,0 +1,19 @@ +{ + "id": 10267, + "slug": "tom-sawyer-perspectives", + "name": "Tom Sawyer Perspectives", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084670" + ], + "created_at": "2026-07-10T10:12:43.430573", + "updated_at": "2026-07-10T10:12:43.430573", + "url": "/v1/software/tom-sawyer-perspectives" +} diff --git a/site/public/v1/software/tomboy-latex/index.json b/site/public/v1/software/tomboy-latex/index.json new file mode 100644 index 000000000000..155e4beefb3f --- /dev/null +++ b/site/public/v1/software/tomboy-latex/index.json @@ -0,0 +1,19 @@ +{ + "id": 10268, + "slug": "tomboy-latex", + "name": "Tomboy-LaTeX", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110788324" + ], + "created_at": "2026-07-10T10:12:43.430573", + "updated_at": "2026-07-10T10:12:43.430573", + "url": "/v1/software/tomboy-latex" +} diff --git a/site/public/v1/software/tombstone-1882/index.json b/site/public/v1/software/tombstone-1882/index.json new file mode 100644 index 000000000000..f6af4c963471 --- /dev/null +++ b/site/public/v1/software/tombstone-1882/index.json @@ -0,0 +1,19 @@ +{ + "id": 10269, + "slug": "tombstone-1882", + "name": "Tombstone 1882", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140401232" + ], + "created_at": "2026-07-10T10:12:43.430573", + "updated_at": "2026-07-10T10:12:43.430573", + "url": "/v1/software/tombstone-1882" +} diff --git a/site/public/v1/software/tomoe-q63065160/index.json b/site/public/v1/software/tomoe-q63065160/index.json new file mode 100644 index 000000000000..20a657ee59c1 --- /dev/null +++ b/site/public/v1/software/tomoe-q63065160/index.json @@ -0,0 +1,19 @@ +{ + "id": 10270, + "slug": "tomoe-q63065160", + "name": "tomoe", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065160" + ], + "created_at": "2026-07-10T10:12:43.431564", + "updated_at": "2026-07-10T10:12:43.431564", + "url": "/v1/software/tomoe-q63065160" +} diff --git a/site/public/v1/software/tomoe/index.json b/site/public/v1/software/tomoe/index.json new file mode 100644 index 000000000000..62241951ade4 --- /dev/null +++ b/site/public/v1/software/tomoe/index.json @@ -0,0 +1,19 @@ +{ + "id": 10271, + "slug": "tomoe", + "name": "Tomoe", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11251252" + ], + "created_at": "2026-07-10T10:12:43.431564", + "updated_at": "2026-07-10T10:12:43.431564", + "url": "/v1/software/tomoe" +} diff --git a/site/public/v1/software/tomp2p/index.json b/site/public/v1/software/tomp2p/index.json new file mode 100644 index 000000000000..05faec5865c0 --- /dev/null +++ b/site/public/v1/software/tomp2p/index.json @@ -0,0 +1,23 @@ +{ + "id": 10272, + "slug": "tomp2p", + "name": "TomP2P", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Java" + ], + "licenses": [ + "Apache License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7814715" + ], + "created_at": "2026-07-10T10:12:43.431564", + "updated_at": "2026-07-10T10:12:43.431564", + "url": "/v1/software/tomp2p" +} diff --git a/site/public/v1/software/tomtom-amigo/index.json b/site/public/v1/software/tomtom-amigo/index.json new file mode 100644 index 000000000000..d58c0fa523f5 --- /dev/null +++ b/site/public/v1/software/tomtom-amigo/index.json @@ -0,0 +1,19 @@ +{ + "id": 10273, + "slug": "tomtom-amigo", + "name": "TomTom AmiGO", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123125122" + ], + "created_at": "2026-07-10T10:12:43.432633", + "updated_at": "2026-07-10T10:12:43.432633", + "url": "/v1/software/tomtom-amigo" +} diff --git a/site/public/v1/software/tone-rion/index.json b/site/public/v1/software/tone-rion/index.json new file mode 100644 index 000000000000..d66602c757aa --- /dev/null +++ b/site/public/v1/software/tone-rion/index.json @@ -0,0 +1,21 @@ +{ + "id": 10274, + "slug": "tone-rion", + "name": "Tone Rion", + "release_date": "2011-12-16", + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q24914602" + ], + "created_at": "2026-07-10T10:12:43.432633", + "updated_at": "2026-07-10T10:12:43.432633", + "url": "/v1/software/tone-rion" +} diff --git a/site/public/v1/software/toneloc/index.json b/site/public/v1/software/toneloc/index.json new file mode 100644 index 000000000000..b7e6436309dc --- /dev/null +++ b/site/public/v1/software/toneloc/index.json @@ -0,0 +1,19 @@ +{ + "id": 10275, + "slug": "toneloc", + "name": "ToneLoc", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2887417" + ], + "created_at": "2026-07-10T10:12:43.432633", + "updated_at": "2026-07-10T10:12:43.432633", + "url": "/v1/software/toneloc" +} diff --git a/site/public/v1/software/tonido/index.json b/site/public/v1/software/tonido/index.json new file mode 100644 index 000000000000..e70065063d65 --- /dev/null +++ b/site/public/v1/software/tonido/index.json @@ -0,0 +1,21 @@ +{ + "id": 10276, + "slug": "tonido", + "name": "Tonido", + "release_date": "2009-03-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7821390" + ], + "created_at": "2026-07-10T10:12:43.432633", + "updated_at": "2026-07-10T10:12:43.432633", + "url": "/v1/software/tonido" +} diff --git a/site/public/v1/software/tonio/index.json b/site/public/v1/software/tonio/index.json new file mode 100644 index 000000000000..e1d64f592b99 --- /dev/null +++ b/site/public/v1/software/tonio/index.json @@ -0,0 +1,19 @@ +{ + "id": 10277, + "slug": "tonio", + "name": "Tonio", + "release_date": "2010-07-14", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10852894" + ], + "created_at": "2026-07-10T10:12:43.433581", + "updated_at": "2026-07-10T10:12:43.433581", + "url": "/v1/software/tonio" +} diff --git a/site/public/v1/software/tonka-workshop-playset/index.json b/site/public/v1/software/tonka-workshop-playset/index.json new file mode 100644 index 000000000000..e1bc200ce9fb --- /dev/null +++ b/site/public/v1/software/tonka-workshop-playset/index.json @@ -0,0 +1,19 @@ +{ + "id": 10278, + "slug": "tonka-workshop-playset", + "name": "Tonka Workshop Playset", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139761011" + ], + "created_at": "2026-07-10T10:12:43.433581", + "updated_at": "2026-07-10T10:12:43.433581", + "url": "/v1/software/tonka-workshop-playset" +} diff --git a/site/public/v1/software/toolbox/index.json b/site/public/v1/software/toolbox/index.json new file mode 100644 index 000000000000..0bfbf0ab4f26 --- /dev/null +++ b/site/public/v1/software/toolbox/index.json @@ -0,0 +1,22 @@ +{ + "id": 10279, + "slug": "toolbox", + "name": "Toolbox", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "SIL Open Font License 1.1", + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134548367" + ], + "created_at": "2026-07-10T10:12:43.434575", + "updated_at": "2026-07-10T10:12:43.434575", + "url": "/v1/software/toolbox" +} diff --git a/site/public/v1/software/tools-project/index.json b/site/public/v1/software/tools-project/index.json new file mode 100644 index 000000000000..31f2de7f1804 --- /dev/null +++ b/site/public/v1/software/tools-project/index.json @@ -0,0 +1,19 @@ +{ + "id": 10280, + "slug": "tools-project", + "name": "Tools Project", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76178068" + ], + "created_at": "2026-07-10T10:12:43.434575", + "updated_at": "2026-07-10T10:12:43.434575", + "url": "/v1/software/tools-project" +} diff --git a/site/public/v1/software/topaz-denoise-ai/index.json b/site/public/v1/software/topaz-denoise-ai/index.json new file mode 100644 index 000000000000..22d430919811 --- /dev/null +++ b/site/public/v1/software/topaz-denoise-ai/index.json @@ -0,0 +1,21 @@ +{ + "id": 10281, + "slug": "topaz-denoise-ai", + "name": "Topaz DeNoise AI", + "release_date": null, + "developers": [ + "Topaz Labs" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137592651" + ], + "created_at": "2026-07-10T10:12:43.434575", + "updated_at": "2026-07-10T10:12:43.434575", + "url": "/v1/software/topaz-denoise-ai" +} diff --git a/site/public/v1/software/topcat/index.json b/site/public/v1/software/topcat/index.json new file mode 100644 index 000000000000..299cd46b78b0 --- /dev/null +++ b/site/public/v1/software/topcat/index.json @@ -0,0 +1,19 @@ +{ + "id": 10282, + "slug": "topcat", + "name": "TOPCAT", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7671022" + ], + "created_at": "2026-07-10T10:12:43.434575", + "updated_at": "2026-07-10T10:12:43.434575", + "url": "/v1/software/topcat" +} diff --git a/site/public/v1/software/topfind/index.json b/site/public/v1/software/topfind/index.json new file mode 100644 index 000000000000..ae980b89008d --- /dev/null +++ b/site/public/v1/software/topfind/index.json @@ -0,0 +1,21 @@ +{ + "id": 10283, + "slug": "topfind", + "name": "TopFIND", + "release_date": null, + "developers": [ + "University of British Columbia" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7824378" + ], + "created_at": "2026-07-10T10:12:43.435597", + "updated_at": "2026-07-10T10:12:43.435597", + "url": "/v1/software/topfind" +} diff --git a/site/public/v1/software/topic-modeling-tool/index.json b/site/public/v1/software/topic-modeling-tool/index.json new file mode 100644 index 000000000000..25686cff15b0 --- /dev/null +++ b/site/public/v1/software/topic-modeling-tool/index.json @@ -0,0 +1,19 @@ +{ + "id": 10284, + "slug": "topic-modeling-tool", + "name": "Topic Modeling Tool", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087749" + ], + "created_at": "2026-07-10T10:12:43.435597", + "updated_at": "2026-07-10T10:12:43.435597", + "url": "/v1/software/topic-modeling-tool" +} diff --git a/site/public/v1/software/topic-modelling-tool/index.json b/site/public/v1/software/topic-modelling-tool/index.json new file mode 100644 index 000000000000..38e70e3e6ed2 --- /dev/null +++ b/site/public/v1/software/topic-modelling-tool/index.json @@ -0,0 +1,19 @@ +{ + "id": 10285, + "slug": "topic-modelling-tool", + "name": "Topic Modelling Tool", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087750" + ], + "created_at": "2026-07-10T10:12:43.436582", + "updated_at": "2026-07-10T10:12:43.436582", + "url": "/v1/software/topic-modelling-tool" +} diff --git a/site/public/v1/software/topic/index.json b/site/public/v1/software/topic/index.json new file mode 100644 index 000000000000..fee0de2c0c86 --- /dev/null +++ b/site/public/v1/software/topic/index.json @@ -0,0 +1,19 @@ +{ + "id": 10286, + "slug": "topic", + "name": "TOPIC", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q114047897" + ], + "created_at": "2026-07-10T10:12:43.436582", + "updated_at": "2026-07-10T10:12:43.436582", + "url": "/v1/software/topic" +} diff --git a/site/public/v1/software/topofusion/index.json b/site/public/v1/software/topofusion/index.json new file mode 100644 index 000000000000..94524db361cd --- /dev/null +++ b/site/public/v1/software/topofusion/index.json @@ -0,0 +1,19 @@ +{ + "id": 10287, + "slug": "topofusion", + "name": "TopoFusion", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7824939" + ], + "created_at": "2026-07-10T10:12:43.436582", + "updated_at": "2026-07-10T10:12:43.436582", + "url": "/v1/software/topofusion" +} diff --git a/site/public/v1/software/topola/index.json b/site/public/v1/software/topola/index.json new file mode 100644 index 000000000000..5331978fed79 --- /dev/null +++ b/site/public/v1/software/topola/index.json @@ -0,0 +1,21 @@ +{ + "id": 10288, + "slug": "topola", + "name": "topola", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Apache Software License 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127689747" + ], + "created_at": "2026-07-10T10:12:43.436582", + "updated_at": "2026-07-10T10:12:43.436582", + "url": "/v1/software/topola" +} diff --git a/site/public/v1/software/topomapper/index.json b/site/public/v1/software/topomapper/index.json new file mode 100644 index 000000000000..6e9a9165ce12 --- /dev/null +++ b/site/public/v1/software/topomapper/index.json @@ -0,0 +1,21 @@ +{ + "id": 10289, + "slug": "topomapper", + "name": "Topomapper", + "release_date": null, + "developers": [ + "ATLOGIS" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130404755" + ], + "created_at": "2026-07-10T10:12:43.437582", + "updated_at": "2026-07-10T10:12:43.437582", + "url": "/v1/software/topomapper" +} diff --git a/site/public/v1/software/topstyle/index.json b/site/public/v1/software/topstyle/index.json new file mode 100644 index 000000000000..44cb8fc88bae --- /dev/null +++ b/site/public/v1/software/topstyle/index.json @@ -0,0 +1,23 @@ +{ + "id": 10290, + "slug": "topstyle", + "name": "TopStyle", + "release_date": null, + "developers": [ + "Nick Bradbury" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Delphi" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7824386" + ], + "created_at": "2026-07-10T10:12:43.437582", + "updated_at": "2026-07-10T10:12:43.437582", + "url": "/v1/software/topstyle" +} diff --git a/site/public/v1/software/topxnotes/index.json b/site/public/v1/software/topxnotes/index.json new file mode 100644 index 000000000000..03a2799cd427 --- /dev/null +++ b/site/public/v1/software/topxnotes/index.json @@ -0,0 +1,19 @@ +{ + "id": 10291, + "slug": "topxnotes", + "name": "TopXNotes", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7824389" + ], + "created_at": "2026-07-10T10:12:43.437582", + "updated_at": "2026-07-10T10:12:43.437582", + "url": "/v1/software/topxnotes" +} diff --git a/site/public/v1/software/torch/index.json b/site/public/v1/software/torch/index.json new file mode 100644 index 000000000000..66eddcb2bc07 --- /dev/null +++ b/site/public/v1/software/torch/index.json @@ -0,0 +1,19 @@ +{ + "id": 10292, + "slug": "torch", + "name": "Torch", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121046171" + ], + "created_at": "2026-07-10T10:12:43.438575", + "updated_at": "2026-07-10T10:12:43.438575", + "url": "/v1/software/torch" +} diff --git a/site/public/v1/software/torrents-time/index.json b/site/public/v1/software/torrents-time/index.json new file mode 100644 index 000000000000..f3626b31207c --- /dev/null +++ b/site/public/v1/software/torrents-time/index.json @@ -0,0 +1,21 @@ +{ + "id": 10293, + "slug": "torrents-time", + "name": "Torrents-Time", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28404497" + ], + "created_at": "2026-07-10T10:12:43.438575", + "updated_at": "2026-07-10T10:12:43.438575", + "url": "/v1/software/torrents-time" +} diff --git a/site/public/v1/software/tosca/index.json b/site/public/v1/software/tosca/index.json new file mode 100644 index 000000000000..afbeae2321f1 --- /dev/null +++ b/site/public/v1/software/tosca/index.json @@ -0,0 +1,19 @@ +{ + "id": 10294, + "slug": "tosca", + "name": "TOSCA", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084673" + ], + "created_at": "2026-07-10T10:12:43.438575", + "updated_at": "2026-07-10T10:12:43.438575", + "url": "/v1/software/tosca" +} diff --git a/site/public/v1/software/tosmana/index.json b/site/public/v1/software/tosmana/index.json new file mode 100644 index 000000000000..5142066a28b2 --- /dev/null +++ b/site/public/v1/software/tosmana/index.json @@ -0,0 +1,21 @@ +{ + "id": 10295, + "slug": "tosmana", + "name": "Tosmana", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105229775" + ], + "created_at": "2026-07-10T10:12:43.439575", + "updated_at": "2026-07-10T10:12:43.439575", + "url": "/v1/software/tosmana" +} diff --git a/site/public/v1/software/total-extreme-wrestling-2005/index.json b/site/public/v1/software/total-extreme-wrestling-2005/index.json new file mode 100644 index 000000000000..44d2a9c12681 --- /dev/null +++ b/site/public/v1/software/total-extreme-wrestling-2005/index.json @@ -0,0 +1,19 @@ +{ + "id": 10296, + "slug": "total-extreme-wrestling-2005", + "name": "Total Extreme Wrestling 2005", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140355901" + ], + "created_at": "2026-07-10T10:12:43.439575", + "updated_at": "2026-07-10T10:12:43.439575", + "url": "/v1/software/total-extreme-wrestling-2005" +} diff --git a/site/public/v1/software/totok/index.json b/site/public/v1/software/totok/index.json new file mode 100644 index 000000000000..a8ef6e844708 --- /dev/null +++ b/site/public/v1/software/totok/index.json @@ -0,0 +1,19 @@ +{ + "id": 10297, + "slug": "totok", + "name": "ToTok", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q79437254" + ], + "created_at": "2026-07-10T10:12:43.440574", + "updated_at": "2026-07-10T10:12:43.440574", + "url": "/v1/software/totok" +} diff --git a/site/public/v1/software/touchcopy/index.json b/site/public/v1/software/touchcopy/index.json new file mode 100644 index 000000000000..af2c4483c982 --- /dev/null +++ b/site/public/v1/software/touchcopy/index.json @@ -0,0 +1,19 @@ +{ + "id": 10298, + "slug": "touchcopy", + "name": "TouchCopy", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q26460469" + ], + "created_at": "2026-07-10T10:12:43.440574", + "updated_at": "2026-07-10T10:12:43.440574", + "url": "/v1/software/touchcopy" +} diff --git a/site/public/v1/software/touchgraph-seo-browser/index.json b/site/public/v1/software/touchgraph-seo-browser/index.json new file mode 100644 index 000000000000..1b6deeb1becb --- /dev/null +++ b/site/public/v1/software/touchgraph-seo-browser/index.json @@ -0,0 +1,19 @@ +{ + "id": 10299, + "slug": "touchgraph-seo-browser", + "name": "TouchGraph SEO Browser", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084674" + ], + "created_at": "2026-07-10T10:12:43.440574", + "updated_at": "2026-07-10T10:12:43.440574", + "url": "/v1/software/touchgraph-seo-browser" +} diff --git a/site/public/v1/software/touchmail-q17048698/index.json b/site/public/v1/software/touchmail-q17048698/index.json new file mode 100644 index 000000000000..535379a29a99 --- /dev/null +++ b/site/public/v1/software/touchmail-q17048698/index.json @@ -0,0 +1,19 @@ +{ + "id": 10300, + "slug": "touchmail-q17048698", + "name": "TouchMail", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17048698" + ], + "created_at": "2026-07-10T10:12:43.440574", + "updated_at": "2026-07-10T10:12:43.440574", + "url": "/v1/software/touchmail-q17048698" +} diff --git a/site/public/v1/software/touchmail/index.json b/site/public/v1/software/touchmail/index.json new file mode 100644 index 000000000000..62db9bec3432 --- /dev/null +++ b/site/public/v1/software/touchmail/index.json @@ -0,0 +1,19 @@ +{ + "id": 10301, + "slug": "touchmail", + "name": "Touchmail", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3996043" + ], + "created_at": "2026-07-10T10:12:43.441613", + "updated_at": "2026-07-10T10:12:43.441613", + "url": "/v1/software/touchmail" +} diff --git a/site/public/v1/software/touchosc/index.json b/site/public/v1/software/touchosc/index.json new file mode 100644 index 000000000000..0ef645f669e6 --- /dev/null +++ b/site/public/v1/software/touchosc/index.json @@ -0,0 +1,19 @@ +{ + "id": 10302, + "slug": "touchosc", + "name": "TouchOSC", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135533313" + ], + "created_at": "2026-07-10T10:12:43.441613", + "updated_at": "2026-07-10T10:12:43.441613", + "url": "/v1/software/touchosc" +} diff --git a/site/public/v1/software/touchwiz/index.json b/site/public/v1/software/touchwiz/index.json new file mode 100644 index 000000000000..f441393886a0 --- /dev/null +++ b/site/public/v1/software/touchwiz/index.json @@ -0,0 +1,24 @@ +{ + "id": 10303, + "slug": "touchwiz", + "name": "TouchWiz", + "release_date": null, + "developers": [ + "Samsung Electronics" + ], + "publishers": [], + "operating_systems": [ + "Bada", + "Windows Mobile" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q483101" + ], + "created_at": "2026-07-10T10:12:43.441613", + "updated_at": "2026-07-10T10:12:43.441613", + "url": "/v1/software/touchwiz" +} diff --git a/site/public/v1/software/tourcast/index.json b/site/public/v1/software/tourcast/index.json new file mode 100644 index 000000000000..f663b84f11a4 --- /dev/null +++ b/site/public/v1/software/tourcast/index.json @@ -0,0 +1,21 @@ +{ + "id": 10304, + "slug": "tourcast", + "name": "TOURCast", + "release_date": "2003-02-01", + "developers": [ + "IBM" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7671067" + ], + "created_at": "2026-07-10T10:12:43.442576", + "updated_at": "2026-07-10T10:12:43.442576", + "url": "/v1/software/tourcast" +} diff --git a/site/public/v1/software/toutenclic/index.json b/site/public/v1/software/toutenclic/index.json new file mode 100644 index 000000000000..8468f5230358 --- /dev/null +++ b/site/public/v1/software/toutenclic/index.json @@ -0,0 +1,23 @@ +{ + "id": 10305, + "slug": "toutenclic", + "name": "ToutEnClic", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Python" + ], + "licenses": [ + "GNU General Public License, version 3.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q52847375" + ], + "created_at": "2026-07-10T10:12:43.442576", + "updated_at": "2026-07-10T10:12:43.442576", + "url": "/v1/software/toutenclic" +} diff --git a/site/public/v1/software/tower-wars/index.json b/site/public/v1/software/tower-wars/index.json new file mode 100644 index 000000000000..182fb4d2645b --- /dev/null +++ b/site/public/v1/software/tower-wars/index.json @@ -0,0 +1,26 @@ +{ + "id": 10306, + "slug": "tower-wars", + "name": "Tower Wars", + "release_date": "2012-08-14", + "developers": [ + "SuperVillain Studios" + ], + "publishers": [ + "SuperVillain Studios" + ], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [ + "action game", + "strategy video game" + ], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110616359" + ], + "created_at": "2026-07-10T10:12:43.442576", + "updated_at": "2026-07-10T10:12:43.442576", + "url": "/v1/software/tower-wars" +} diff --git a/site/public/v1/software/towit/index.json b/site/public/v1/software/towit/index.json new file mode 100644 index 000000000000..50fed060ebde --- /dev/null +++ b/site/public/v1/software/towit/index.json @@ -0,0 +1,19 @@ +{ + "id": 10307, + "slug": "towit", + "name": "TowIt", + "release_date": "2015-01-16", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28447852" + ], + "created_at": "2026-07-10T10:12:43.442576", + "updated_at": "2026-07-10T10:12:43.442576", + "url": "/v1/software/towit" +} diff --git a/site/public/v1/software/toxicity-estimation-software-tool/index.json b/site/public/v1/software/toxicity-estimation-software-tool/index.json new file mode 100644 index 000000000000..4c6af0be297f --- /dev/null +++ b/site/public/v1/software/toxicity-estimation-software-tool/index.json @@ -0,0 +1,19 @@ +{ + "id": 10308, + "slug": "toxicity-estimation-software-tool", + "name": "Toxicity Estimation Software Tool", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136437700" + ], + "created_at": "2026-07-10T10:12:43.443565", + "updated_at": "2026-07-10T10:12:43.443565", + "url": "/v1/software/toxicity-estimation-software-tool" +} diff --git a/site/public/v1/software/tpacpi-bat/index.json b/site/public/v1/software/tpacpi-bat/index.json new file mode 100644 index 000000000000..9318fad1ac17 --- /dev/null +++ b/site/public/v1/software/tpacpi-bat/index.json @@ -0,0 +1,19 @@ +{ + "id": 10309, + "slug": "tpacpi-bat", + "name": "tpacpi-bat", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975520" + ], + "created_at": "2026-07-10T10:12:43.443565", + "updated_at": "2026-07-10T10:12:43.443565", + "url": "/v1/software/tpacpi-bat" +} diff --git a/site/public/v1/software/tpl-tables/index.json b/site/public/v1/software/tpl-tables/index.json new file mode 100644 index 000000000000..3625ac780220 --- /dev/null +++ b/site/public/v1/software/tpl-tables/index.json @@ -0,0 +1,19 @@ +{ + "id": 10310, + "slug": "tpl-tables", + "name": "TPL Tables", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7671165" + ], + "created_at": "2026-07-10T10:12:43.444577", + "updated_at": "2026-07-10T10:12:43.444577", + "url": "/v1/software/tpl-tables" +} diff --git a/site/public/v1/software/tpt/index.json b/site/public/v1/software/tpt/index.json new file mode 100644 index 000000000000..7dfb3dc2a28a --- /dev/null +++ b/site/public/v1/software/tpt/index.json @@ -0,0 +1,21 @@ +{ + "id": 10311, + "slug": "tpt", + "name": "TPT", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q969634" + ], + "created_at": "2026-07-10T10:12:43.444577", + "updated_at": "2026-07-10T10:12:43.444577", + "url": "/v1/software/tpt" +} diff --git a/site/public/v1/software/tqdm/index.json b/site/public/v1/software/tqdm/index.json new file mode 100644 index 000000000000..262182f5bb1e --- /dev/null +++ b/site/public/v1/software/tqdm/index.json @@ -0,0 +1,23 @@ +{ + "id": 10312, + "slug": "tqdm", + "name": "tqdm", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Python" + ], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975521" + ], + "created_at": "2026-07-10T10:12:43.444577", + "updated_at": "2026-07-10T10:12:43.444577", + "url": "/v1/software/tqdm" +} diff --git a/site/public/v1/software/trabi-racer/index.json b/site/public/v1/software/trabi-racer/index.json new file mode 100644 index 000000000000..f58ba21728b5 --- /dev/null +++ b/site/public/v1/software/trabi-racer/index.json @@ -0,0 +1,19 @@ +{ + "id": 10313, + "slug": "trabi-racer", + "name": "Trabi Racer", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140359135" + ], + "created_at": "2026-07-10T10:12:43.444577", + "updated_at": "2026-07-10T10:12:43.444577", + "url": "/v1/software/trabi-racer" +} diff --git a/site/public/v1/software/trace-mode/index.json b/site/public/v1/software/trace-mode/index.json new file mode 100644 index 000000000000..6392e870ff83 --- /dev/null +++ b/site/public/v1/software/trace-mode/index.json @@ -0,0 +1,19 @@ +{ + "id": 10314, + "slug": "trace-mode", + "name": "Trace mode", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4051664" + ], + "created_at": "2026-07-10T10:12:43.445553", + "updated_at": "2026-07-10T10:12:43.445553", + "url": "/v1/software/trace-mode" +} diff --git a/site/public/v1/software/trace/index.json b/site/public/v1/software/trace/index.json new file mode 100644 index 000000000000..c965522fc17d --- /dev/null +++ b/site/public/v1/software/trace/index.json @@ -0,0 +1,21 @@ +{ + "id": 10315, + "slug": "trace", + "name": "TRACE", + "release_date": null, + "developers": [ + "The Aerospace Corporation" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17047765" + ], + "created_at": "2026-07-10T10:12:43.445553", + "updated_at": "2026-07-10T10:12:43.445553", + "url": "/v1/software/trace" +} diff --git a/site/public/v1/software/tracenet/index.json b/site/public/v1/software/tracenet/index.json new file mode 100644 index 000000000000..d5c0e25bd889 --- /dev/null +++ b/site/public/v1/software/tracenet/index.json @@ -0,0 +1,21 @@ +{ + "id": 10316, + "slug": "tracenet", + "name": "traceNET", + "release_date": "2004-01-01", + "developers": [ + "activeIT Software & Consulting GmbH" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140312556" + ], + "created_at": "2026-07-10T10:12:43.445553", + "updated_at": "2026-07-10T10:12:43.445553", + "url": "/v1/software/tracenet" +} diff --git a/site/public/v1/software/tracepro/index.json b/site/public/v1/software/tracepro/index.json new file mode 100644 index 000000000000..bcb84e41a60c --- /dev/null +++ b/site/public/v1/software/tracepro/index.json @@ -0,0 +1,19 @@ +{ + "id": 10317, + "slug": "tracepro", + "name": "TracePro", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7831132" + ], + "created_at": "2026-07-10T10:12:43.446607", + "updated_at": "2026-07-10T10:12:43.446607", + "url": "/v1/software/tracepro" +} diff --git a/site/public/v1/software/tracery/index.json b/site/public/v1/software/tracery/index.json new file mode 100644 index 000000000000..702d1e168c46 --- /dev/null +++ b/site/public/v1/software/tracery/index.json @@ -0,0 +1,19 @@ +{ + "id": 10318, + "slug": "tracery", + "name": "Tracery", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125535843" + ], + "created_at": "2026-07-10T10:12:43.446607", + "updated_at": "2026-07-10T10:12:43.446607", + "url": "/v1/software/tracery" +} diff --git a/site/public/v1/software/trackabi/index.json b/site/public/v1/software/trackabi/index.json new file mode 100644 index 000000000000..d932816ab05b --- /dev/null +++ b/site/public/v1/software/trackabi/index.json @@ -0,0 +1,19 @@ +{ + "id": 10319, + "slug": "trackabi", + "name": "Trackabi", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116434068" + ], + "created_at": "2026-07-10T10:12:43.446607", + "updated_at": "2026-07-10T10:12:43.446607", + "url": "/v1/software/trackabi" +} diff --git a/site/public/v1/software/trackbuster/index.json b/site/public/v1/software/trackbuster/index.json new file mode 100644 index 000000000000..ece60e09bc46 --- /dev/null +++ b/site/public/v1/software/trackbuster/index.json @@ -0,0 +1,19 @@ +{ + "id": 10320, + "slug": "trackbuster", + "name": "Trackbuster", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q20967717" + ], + "created_at": "2026-07-10T10:12:43.446607", + "updated_at": "2026-07-10T10:12:43.446607", + "url": "/v1/software/trackbuster" +} diff --git a/site/public/v1/software/tracker/index.json b/site/public/v1/software/tracker/index.json new file mode 100644 index 000000000000..8da7d0215ba2 --- /dev/null +++ b/site/public/v1/software/tracker/index.json @@ -0,0 +1,19 @@ +{ + "id": 10321, + "slug": "tracker", + "name": "Tracker", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7831542" + ], + "created_at": "2026-07-10T10:12:43.448097", + "updated_at": "2026-07-10T10:12:43.448097", + "url": "/v1/software/tracker" +} diff --git a/site/public/v1/software/trackstudio/index.json b/site/public/v1/software/trackstudio/index.json new file mode 100644 index 000000000000..e2f1cd9bdae2 --- /dev/null +++ b/site/public/v1/software/trackstudio/index.json @@ -0,0 +1,23 @@ +{ + "id": 10322, + "slug": "trackstudio", + "name": "TrackStudio", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Java" + ], + "licenses": [ + "shareware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4051688" + ], + "created_at": "2026-07-10T10:12:43.448097", + "updated_at": "2026-07-10T10:12:43.448097", + "url": "/v1/software/trackstudio" +} diff --git a/site/public/v1/software/tracktion-waveform/index.json b/site/public/v1/software/tracktion-waveform/index.json new file mode 100644 index 000000000000..026f4945d419 --- /dev/null +++ b/site/public/v1/software/tracktion-waveform/index.json @@ -0,0 +1,19 @@ +{ + "id": 10323, + "slug": "tracktion-waveform", + "name": "Tracktion Waveform", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7831607" + ], + "created_at": "2026-07-10T10:12:43.448097", + "updated_at": "2026-07-10T10:12:43.448097", + "url": "/v1/software/tracktion-waveform" +} diff --git a/site/public/v1/software/tradechecx/index.json b/site/public/v1/software/tradechecx/index.json new file mode 100644 index 000000000000..898cb55ca283 --- /dev/null +++ b/site/public/v1/software/tradechecx/index.json @@ -0,0 +1,19 @@ +{ + "id": 10324, + "slug": "tradechecx", + "name": "TradeChecx", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140338617" + ], + "created_at": "2026-07-10T10:12:43.449108", + "updated_at": "2026-07-10T10:12:43.449108", + "url": "/v1/software/tradechecx" +} diff --git a/site/public/v1/software/tradelect/index.json b/site/public/v1/software/tradelect/index.json new file mode 100644 index 000000000000..1782b3244055 --- /dev/null +++ b/site/public/v1/software/tradelect/index.json @@ -0,0 +1,23 @@ +{ + "id": 10325, + "slug": "tradelect", + "name": "TradElect", + "release_date": "2007-06-01", + "developers": [ + "Accenture" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16957867" + ], + "created_at": "2026-07-10T10:12:43.449108", + "updated_at": "2026-07-10T10:12:43.449108", + "url": "/v1/software/tradelect" +} diff --git a/site/public/v1/software/tradelogic/index.json b/site/public/v1/software/tradelogic/index.json new file mode 100644 index 000000000000..7f553c1f0f90 --- /dev/null +++ b/site/public/v1/software/tradelogic/index.json @@ -0,0 +1,19 @@ +{ + "id": 10326, + "slug": "tradelogic", + "name": "TradeLogic", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137972037" + ], + "created_at": "2026-07-10T10:12:43.449108", + "updated_at": "2026-07-10T10:12:43.449108", + "url": "/v1/software/tradelogic" +} diff --git a/site/public/v1/software/trademetria/index.json b/site/public/v1/software/trademetria/index.json new file mode 100644 index 000000000000..e39889cba26d --- /dev/null +++ b/site/public/v1/software/trademetria/index.json @@ -0,0 +1,19 @@ +{ + "id": 10327, + "slug": "trademetria", + "name": "Trademetria", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138748875" + ], + "created_at": "2026-07-10T10:12:43.450184", + "updated_at": "2026-07-10T10:12:43.450184", + "url": "/v1/software/trademetria" +} diff --git a/site/public/v1/software/tradestation/index.json b/site/public/v1/software/tradestation/index.json new file mode 100644 index 000000000000..541b5e215f4f --- /dev/null +++ b/site/public/v1/software/tradestation/index.json @@ -0,0 +1,21 @@ +{ + "id": 10328, + "slug": "tradestation", + "name": "TradeStation", + "release_date": null, + "developers": [ + "TradeStation" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126805146" + ], + "created_at": "2026-07-10T10:12:43.450184", + "updated_at": "2026-07-10T10:12:43.450184", + "url": "/v1/software/tradestation" +} diff --git a/site/public/v1/software/tradingview/index.json b/site/public/v1/software/tradingview/index.json new file mode 100644 index 000000000000..822e65d03e80 --- /dev/null +++ b/site/public/v1/software/tradingview/index.json @@ -0,0 +1,19 @@ +{ + "id": 10329, + "slug": "tradingview", + "name": "TradingView", + "release_date": "2012-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q24884021" + ], + "created_at": "2026-07-10T10:12:43.450184", + "updated_at": "2026-07-10T10:12:43.450184", + "url": "/v1/software/tradingview" +} diff --git a/site/public/v1/software/trados-studio/index.json b/site/public/v1/software/trados-studio/index.json new file mode 100644 index 000000000000..ec399715586c --- /dev/null +++ b/site/public/v1/software/trados-studio/index.json @@ -0,0 +1,27 @@ +{ + "id": 10330, + "slug": "trados-studio", + "name": "Trados Studio", + "release_date": null, + "developers": [ + "RWS Group", + "SDL", + "Trados" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q689412" + ], + "created_at": "2026-07-10T10:12:43.450184", + "updated_at": "2026-07-10T10:12:43.450184", + "url": "/v1/software/trados-studio" +} diff --git a/site/public/v1/software/trae-ide/index.json b/site/public/v1/software/trae-ide/index.json new file mode 100644 index 000000000000..656173a84521 --- /dev/null +++ b/site/public/v1/software/trae-ide/index.json @@ -0,0 +1,24 @@ +{ + "id": 10331, + "slug": "trae-ide", + "name": "Trae (IDE)", + "release_date": null, + "developers": [ + "ByteDance" + ], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137376124" + ], + "created_at": "2026-07-10T10:12:43.451179", + "updated_at": "2026-07-10T10:12:43.451179", + "url": "/v1/software/trae-ide" +} diff --git a/site/public/v1/software/trafficure/index.json b/site/public/v1/software/trafficure/index.json new file mode 100644 index 000000000000..fd1016fe422d --- /dev/null +++ b/site/public/v1/software/trafficure/index.json @@ -0,0 +1,23 @@ +{ + "id": 10332, + "slug": "trafficure", + "name": "TraffiCure", + "release_date": null, + "developers": [ + "Lepton Software" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [ + "intelligent transportation system" + ], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139658233" + ], + "created_at": "2026-07-10T10:12:43.451179", + "updated_at": "2026-07-10T10:12:43.451179", + "url": "/v1/software/trafficure" +} diff --git a/site/public/v1/software/traffy-fondue/index.json b/site/public/v1/software/traffy-fondue/index.json new file mode 100644 index 000000000000..1e44e7d1675a --- /dev/null +++ b/site/public/v1/software/traffy-fondue/index.json @@ -0,0 +1,19 @@ +{ + "id": 10333, + "slug": "traffy-fondue", + "name": "Traffy Fondue", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134590150" + ], + "created_at": "2026-07-10T10:12:43.451179", + "updated_at": "2026-07-10T10:12:43.451179", + "url": "/v1/software/traffy-fondue" +} diff --git a/site/public/v1/software/trailfire/index.json b/site/public/v1/software/trailfire/index.json new file mode 100644 index 000000000000..785766c5b040 --- /dev/null +++ b/site/public/v1/software/trailfire/index.json @@ -0,0 +1,19 @@ +{ + "id": 10334, + "slug": "trailfire", + "name": "Trailfire", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084676" + ], + "created_at": "2026-07-10T10:12:43.452194", + "updated_at": "2026-07-10T10:12:43.452194", + "url": "/v1/software/trailfire" +} diff --git a/site/public/v1/software/trajpar/index.json b/site/public/v1/software/trajpar/index.json new file mode 100644 index 000000000000..6ae20fa4bb56 --- /dev/null +++ b/site/public/v1/software/trajpar/index.json @@ -0,0 +1,19 @@ +{ + "id": 10335, + "slug": "trajpar", + "name": "trajpar", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7833064" + ], + "created_at": "2026-07-10T10:12:43.452194", + "updated_at": "2026-07-10T10:12:43.452194", + "url": "/v1/software/trajpar" +} diff --git a/site/public/v1/software/trakgene/index.json b/site/public/v1/software/trakgene/index.json new file mode 100644 index 000000000000..b7ebce80b937 --- /dev/null +++ b/site/public/v1/software/trakgene/index.json @@ -0,0 +1,23 @@ +{ + "id": 10336, + "slug": "trakgene", + "name": "TrakGene", + "release_date": null, + "developers": [ + "TrakGene" + ], + "publishers": [], + "operating_systems": [ + "cross-platform" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139928489" + ], + "created_at": "2026-07-10T10:12:43.452194", + "updated_at": "2026-07-10T10:12:43.452194", + "url": "/v1/software/trakgene" +} diff --git a/site/public/v1/software/tramo/index.json b/site/public/v1/software/tramo/index.json new file mode 100644 index 000000000000..975a81b41c59 --- /dev/null +++ b/site/public/v1/software/tramo/index.json @@ -0,0 +1,21 @@ +{ + "id": 10337, + "slug": "tramo", + "name": "TRAMO", + "release_date": null, + "developers": [ + "Bank of Spain" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3512343" + ], + "created_at": "2026-07-10T10:12:43.452194", + "updated_at": "2026-07-10T10:12:43.452194", + "url": "/v1/software/tramo" +} diff --git a/site/public/v1/software/transaction-software-gmbh/index.json b/site/public/v1/software/transaction-software-gmbh/index.json new file mode 100644 index 000000000000..84450c1c56d7 --- /dev/null +++ b/site/public/v1/software/transaction-software-gmbh/index.json @@ -0,0 +1,19 @@ +{ + "id": 10338, + "slug": "transaction-software-gmbh", + "name": "Transaction Software GmbH", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q14752103" + ], + "created_at": "2026-07-10T10:12:43.453216", + "updated_at": "2026-07-10T10:12:43.453216", + "url": "/v1/software/transaction-software-gmbh" +} diff --git a/site/public/v1/software/transadf/index.json b/site/public/v1/software/transadf/index.json new file mode 100644 index 000000000000..8e4aebec8db2 --- /dev/null +++ b/site/public/v1/software/transadf/index.json @@ -0,0 +1,19 @@ +{ + "id": 10339, + "slug": "transadf", + "name": "TransADF", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7833591" + ], + "created_at": "2026-07-10T10:12:43.453216", + "updated_at": "2026-07-10T10:12:43.453216", + "url": "/v1/software/transadf" +} diff --git a/site/public/v1/software/transana/index.json b/site/public/v1/software/transana/index.json new file mode 100644 index 000000000000..515c4da8705e --- /dev/null +++ b/site/public/v1/software/transana/index.json @@ -0,0 +1,26 @@ +{ + "id": 10340, + "slug": "transana", + "name": "Transana", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [ + "Python" + ], + "licenses": [ + "GNU General Public License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7833760" + ], + "created_at": "2026-07-10T10:12:43.453216", + "updated_at": "2026-07-10T10:12:43.453216", + "url": "/v1/software/transana" +} diff --git a/site/public/v1/software/transcribe/index.json b/site/public/v1/software/transcribe/index.json new file mode 100644 index 000000000000..c52854fc9e96 --- /dev/null +++ b/site/public/v1/software/transcribe/index.json @@ -0,0 +1,23 @@ +{ + "id": 10341, + "slug": "transcribe", + "name": "Transcribe", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Python" + ], + "licenses": [ + "GNU General Public License, version 3.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105076392" + ], + "created_at": "2026-07-10T10:12:43.454176", + "updated_at": "2026-07-10T10:12:43.454176", + "url": "/v1/software/transcribe" +} diff --git a/site/public/v1/software/transcriberag/index.json b/site/public/v1/software/transcriberag/index.json new file mode 100644 index 000000000000..5aa939fdff70 --- /dev/null +++ b/site/public/v1/software/transcriberag/index.json @@ -0,0 +1,26 @@ +{ + "id": 10342, + "slug": "transcriberag", + "name": "TranscriberAG", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [ + "Tcl" + ], + "licenses": [ + "GNU General Public License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7833912" + ], + "created_at": "2026-07-10T10:12:43.454176", + "updated_at": "2026-07-10T10:12:43.454176", + "url": "/v1/software/transcriberag" +} diff --git a/site/public/v1/software/transcriva/index.json b/site/public/v1/software/transcriva/index.json new file mode 100644 index 000000000000..64144a640512 --- /dev/null +++ b/site/public/v1/software/transcriva/index.json @@ -0,0 +1,23 @@ +{ + "id": 10343, + "slug": "transcriva", + "name": "Transcriva", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "macOS" + ], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105076393" + ], + "created_at": "2026-07-10T10:12:43.454176", + "updated_at": "2026-07-10T10:12:43.454176", + "url": "/v1/software/transcriva" +} diff --git a/site/public/v1/software/transept/index.json b/site/public/v1/software/transept/index.json new file mode 100644 index 000000000000..77278d28318a --- /dev/null +++ b/site/public/v1/software/transept/index.json @@ -0,0 +1,19 @@ +{ + "id": 10344, + "slug": "transept", + "name": "Transept", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139831715" + ], + "created_at": "2026-07-10T10:12:43.454176", + "updated_at": "2026-07-10T10:12:43.454176", + "url": "/v1/software/transept" +} diff --git a/site/public/v1/software/transkribus/index.json b/site/public/v1/software/transkribus/index.json new file mode 100644 index 000000000000..dd9e6394805d --- /dev/null +++ b/site/public/v1/software/transkribus/index.json @@ -0,0 +1,21 @@ +{ + "id": 10345, + "slug": "transkribus", + "name": "Transkribus", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "GNU General Public License, version 3.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22937321" + ], + "created_at": "2026-07-10T10:12:43.455170", + "updated_at": "2026-07-10T10:12:43.455170", + "url": "/v1/software/transkribus" +} diff --git a/site/public/v1/software/translate-docformat/index.json b/site/public/v1/software/translate-docformat/index.json new file mode 100644 index 000000000000..2ca551a5d416 --- /dev/null +++ b/site/public/v1/software/translate-docformat/index.json @@ -0,0 +1,19 @@ +{ + "id": 10346, + "slug": "translate-docformat", + "name": "translate-docformat", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110788315" + ], + "created_at": "2026-07-10T10:12:43.455170", + "updated_at": "2026-07-10T10:12:43.455170", + "url": "/v1/software/translate-docformat" +} diff --git a/site/public/v1/software/translatecad/index.json b/site/public/v1/software/translatecad/index.json new file mode 100644 index 000000000000..05a7f0a71ce2 --- /dev/null +++ b/site/public/v1/software/translatecad/index.json @@ -0,0 +1,19 @@ +{ + "id": 10347, + "slug": "translatecad", + "name": "TranslateCAD", + "release_date": "2008-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17048702" + ], + "created_at": "2026-07-10T10:12:43.455170", + "updated_at": "2026-07-10T10:12:43.455170", + "url": "/v1/software/translatecad" +} diff --git a/site/public/v1/software/transmart/index.json b/site/public/v1/software/transmart/index.json new file mode 100644 index 000000000000..b7e4be6705a9 --- /dev/null +++ b/site/public/v1/software/transmart/index.json @@ -0,0 +1,21 @@ +{ + "id": 10348, + "slug": "transmart", + "name": "tranSMART", + "release_date": null, + "developers": [ + "tranSMART Foundation" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q51616393" + ], + "created_at": "2026-07-10T10:12:43.456177", + "updated_at": "2026-07-10T10:12:43.456177", + "url": "/v1/software/transmart" +} diff --git a/site/public/v1/software/transmodeler/index.json b/site/public/v1/software/transmodeler/index.json new file mode 100644 index 000000000000..def60c7c7fc4 --- /dev/null +++ b/site/public/v1/software/transmodeler/index.json @@ -0,0 +1,21 @@ +{ + "id": 10349, + "slug": "transmodeler", + "name": "TransModeler", + "release_date": null, + "developers": [ + "Caliper Corporation" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17154611" + ], + "created_at": "2026-07-10T10:12:43.456177", + "updated_at": "2026-07-10T10:12:43.456177", + "url": "/v1/software/transmodeler" +} diff --git a/site/public/v1/software/transocean-the-shipping-company/index.json b/site/public/v1/software/transocean-the-shipping-company/index.json new file mode 100644 index 000000000000..7b4f3e72175d --- /dev/null +++ b/site/public/v1/software/transocean-the-shipping-company/index.json @@ -0,0 +1,27 @@ +{ + "id": 10350, + "slug": "transocean-the-shipping-company", + "name": "TransOcean: The Shipping Company", + "release_date": "2014-09-23", + "developers": [ + "Deck13 Hamburg" + ], + "publishers": [ + "Astragon" + ], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [ + "strategy video game", + "casual game", + "simulation video game" + ], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q119952215" + ], + "created_at": "2026-07-10T10:12:43.456177", + "updated_at": "2026-07-10T10:12:43.456177", + "url": "/v1/software/transocean-the-shipping-company" +} diff --git a/site/public/v1/software/transparent-language-online/index.json b/site/public/v1/software/transparent-language-online/index.json new file mode 100644 index 000000000000..bb206ae63971 --- /dev/null +++ b/site/public/v1/software/transparent-language-online/index.json @@ -0,0 +1,19 @@ +{ + "id": 10351, + "slug": "transparent-language-online", + "name": "Transparent Language Online", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108403556" + ], + "created_at": "2026-07-10T10:12:43.457181", + "updated_at": "2026-07-10T10:12:43.457181", + "url": "/v1/software/transparent-language-online" +} diff --git a/site/public/v1/software/transparent-language/index.json b/site/public/v1/software/transparent-language/index.json new file mode 100644 index 000000000000..1ea08318ac3f --- /dev/null +++ b/site/public/v1/software/transparent-language/index.json @@ -0,0 +1,19 @@ +{ + "id": 10352, + "slug": "transparent-language", + "name": "Transparent Language", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7834784" + ], + "created_at": "2026-07-10T10:12:43.457181", + "updated_at": "2026-07-10T10:12:43.457181", + "url": "/v1/software/transparent-language" +} diff --git a/site/public/v1/software/transport-protocol-abstraction/index.json b/site/public/v1/software/transport-protocol-abstraction/index.json new file mode 100644 index 000000000000..6a6992d5ae24 --- /dev/null +++ b/site/public/v1/software/transport-protocol-abstraction/index.json @@ -0,0 +1,19 @@ +{ + "id": 10353, + "slug": "transport-protocol-abstraction", + "name": "Transport/protocol abstraction", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7834838" + ], + "created_at": "2026-07-10T10:12:43.457181", + "updated_at": "2026-07-10T10:12:43.457181", + "url": "/v1/software/transport-protocol-abstraction" +} diff --git a/site/public/v1/software/transportation-economic-development-impact-system/index.json b/site/public/v1/software/transportation-economic-development-impact-system/index.json new file mode 100644 index 000000000000..47365dc6b5a0 --- /dev/null +++ b/site/public/v1/software/transportation-economic-development-impact-system/index.json @@ -0,0 +1,21 @@ +{ + "id": 10354, + "slug": "transportation-economic-development-impact-system", + "name": "Transportation Economic Development Impact System", + "release_date": null, + "developers": [ + "EBP US" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7835168" + ], + "created_at": "2026-07-10T10:12:43.458178", + "updated_at": "2026-07-10T10:12:43.458178", + "url": "/v1/software/transportation-economic-development-impact-system" +} diff --git a/site/public/v1/software/transterpreter/index.json b/site/public/v1/software/transterpreter/index.json new file mode 100644 index 000000000000..fb8f4c36adbe --- /dev/null +++ b/site/public/v1/software/transterpreter/index.json @@ -0,0 +1,19 @@ +{ + "id": 10355, + "slug": "transterpreter", + "name": "Transterpreter", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7835377" + ], + "created_at": "2026-07-10T10:12:43.458178", + "updated_at": "2026-07-10T10:12:43.458178", + "url": "/v1/software/transterpreter" +} diff --git a/site/public/v1/software/transyt-7f/index.json b/site/public/v1/software/transyt-7f/index.json new file mode 100644 index 000000000000..1e09a01fcc24 --- /dev/null +++ b/site/public/v1/software/transyt-7f/index.json @@ -0,0 +1,21 @@ +{ + "id": 10356, + "slug": "transyt-7f", + "name": "TRANSYT-7F", + "release_date": null, + "developers": [ + "University of Florida" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17149450" + ], + "created_at": "2026-07-10T10:12:43.458178", + "updated_at": "2026-07-10T10:12:43.458178", + "url": "/v1/software/transyt-7f" +} diff --git a/site/public/v1/software/trapeze/index.json b/site/public/v1/software/trapeze/index.json new file mode 100644 index 000000000000..976655124dcb --- /dev/null +++ b/site/public/v1/software/trapeze/index.json @@ -0,0 +1,19 @@ +{ + "id": 10357, + "slug": "trapeze", + "name": "Trapeze", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123358604" + ], + "created_at": "2026-07-10T10:12:43.459180", + "updated_at": "2026-07-10T10:12:43.459180", + "url": "/v1/software/trapeze" +} diff --git a/site/public/v1/software/trash-q103410350/index.json b/site/public/v1/software/trash-q103410350/index.json new file mode 100644 index 000000000000..1cdd9ecda34c --- /dev/null +++ b/site/public/v1/software/trash-q103410350/index.json @@ -0,0 +1,21 @@ +{ + "id": 10358, + "slug": "trash-q103410350", + "name": "trash", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q103410350" + ], + "created_at": "2026-07-10T10:12:43.459180", + "updated_at": "2026-07-10T10:12:43.459180", + "url": "/v1/software/trash-q103410350" +} diff --git a/site/public/v1/software/trash/index.json b/site/public/v1/software/trash/index.json new file mode 100644 index 000000000000..94f1cd71ad29 --- /dev/null +++ b/site/public/v1/software/trash/index.json @@ -0,0 +1,19 @@ +{ + "id": 10359, + "slug": "trash", + "name": "trash", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6503178" + ], + "created_at": "2026-07-10T10:12:43.459180", + "updated_at": "2026-07-10T10:12:43.459180", + "url": "/v1/software/trash" +} diff --git a/site/public/v1/software/trashbox-ru/index.json b/site/public/v1/software/trashbox-ru/index.json new file mode 100644 index 000000000000..eebc0e1471b6 --- /dev/null +++ b/site/public/v1/software/trashbox-ru/index.json @@ -0,0 +1,19 @@ +{ + "id": 10360, + "slug": "trashbox-ru", + "name": "Trashbox.ru", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117745588" + ], + "created_at": "2026-07-10T10:12:43.459180", + "updated_at": "2026-07-10T10:12:43.459180", + "url": "/v1/software/trashbox-ru" +} diff --git a/site/public/v1/software/trau/index.json b/site/public/v1/software/trau/index.json new file mode 100644 index 000000000000..cb452ead52d8 --- /dev/null +++ b/site/public/v1/software/trau/index.json @@ -0,0 +1,19 @@ +{ + "id": 10361, + "slug": "trau", + "name": "TRAU", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2645731" + ], + "created_at": "2026-07-10T10:12:43.460182", + "updated_at": "2026-07-10T10:12:43.460182", + "url": "/v1/software/trau" +} diff --git a/site/public/v1/software/traveljournal-companion/index.json b/site/public/v1/software/traveljournal-companion/index.json new file mode 100644 index 000000000000..655ea8129940 --- /dev/null +++ b/site/public/v1/software/traveljournal-companion/index.json @@ -0,0 +1,22 @@ +{ + "id": 10362, + "slug": "traveljournal-companion", + "name": "TravelJournal Companion", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "web platform", + "web application" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140314813" + ], + "created_at": "2026-07-10T10:12:43.460182", + "updated_at": "2026-07-10T10:12:43.460182", + "url": "/v1/software/traveljournal-companion" +} diff --git a/site/public/v1/software/traveltime-maps/index.json b/site/public/v1/software/traveltime-maps/index.json new file mode 100644 index 000000000000..794727978a07 --- /dev/null +++ b/site/public/v1/software/traveltime-maps/index.json @@ -0,0 +1,19 @@ +{ + "id": 10363, + "slug": "traveltime-maps", + "name": "TravelTime Maps", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084678" + ], + "created_at": "2026-07-10T10:12:43.461172", + "updated_at": "2026-07-10T10:12:43.461172", + "url": "/v1/software/traveltime-maps" +} diff --git a/site/public/v1/software/traverse/index.json b/site/public/v1/software/traverse/index.json new file mode 100644 index 000000000000..abe65564a771 --- /dev/null +++ b/site/public/v1/software/traverse/index.json @@ -0,0 +1,19 @@ +{ + "id": 10364, + "slug": "traverse", + "name": "TRAVERSE", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7671286" + ], + "created_at": "2026-07-10T10:12:43.461172", + "updated_at": "2026-07-10T10:12:43.461172", + "url": "/v1/software/traverse" +} diff --git a/site/public/v1/software/travesty/index.json b/site/public/v1/software/travesty/index.json new file mode 100644 index 000000000000..1bd53ea8982a --- /dev/null +++ b/site/public/v1/software/travesty/index.json @@ -0,0 +1,22 @@ +{ + "id": 10365, + "slug": "travesty", + "name": "TRAVESTY", + "release_date": null, + "developers": [ + "Joseph O'Rourke", + "Hugh Kenner" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125523490" + ], + "created_at": "2026-07-10T10:12:43.461172", + "updated_at": "2026-07-10T10:12:43.461172", + "url": "/v1/software/travesty" +} diff --git a/site/public/v1/software/travis-listener/index.json b/site/public/v1/software/travis-listener/index.json new file mode 100644 index 000000000000..1edec6e95dd4 --- /dev/null +++ b/site/public/v1/software/travis-listener/index.json @@ -0,0 +1,21 @@ +{ + "id": 10366, + "slug": "travis-listener", + "name": "Travis-Listener", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127485760" + ], + "created_at": "2026-07-10T10:12:43.461172", + "updated_at": "2026-07-10T10:12:43.461172", + "url": "/v1/software/travis-listener" +} diff --git a/site/public/v1/software/travis/index.json b/site/public/v1/software/travis/index.json new file mode 100644 index 000000000000..cfe21ef9bca3 --- /dev/null +++ b/site/public/v1/software/travis/index.json @@ -0,0 +1,21 @@ +{ + "id": 10367, + "slug": "travis", + "name": "trAVis", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Affero General Public License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105076394" + ], + "created_at": "2026-07-10T10:12:43.462215", + "updated_at": "2026-07-10T10:12:43.462215", + "url": "/v1/software/travis" +} diff --git a/site/public/v1/software/traviz/index.json b/site/public/v1/software/traviz/index.json new file mode 100644 index 000000000000..94552a63810f --- /dev/null +++ b/site/public/v1/software/traviz/index.json @@ -0,0 +1,19 @@ +{ + "id": 10368, + "slug": "traviz", + "name": "TRAViz", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084679" + ], + "created_at": "2026-07-10T10:12:43.462215", + "updated_at": "2026-07-10T10:12:43.462215", + "url": "/v1/software/traviz" +} diff --git a/site/public/v1/software/trax/index.json b/site/public/v1/software/trax/index.json new file mode 100644 index 000000000000..f26f6415434e --- /dev/null +++ b/site/public/v1/software/trax/index.json @@ -0,0 +1,21 @@ +{ + "id": 10369, + "slug": "trax", + "name": "Trax", + "release_date": null, + "developers": [ + "Passport Designs" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7836462" + ], + "created_at": "2026-07-10T10:12:43.463175", + "updated_at": "2026-07-10T10:12:43.463175", + "url": "/v1/software/trax" +} diff --git a/site/public/v1/software/treatwell-connect/index.json b/site/public/v1/software/treatwell-connect/index.json new file mode 100644 index 000000000000..9dc9ede60348 --- /dev/null +++ b/site/public/v1/software/treatwell-connect/index.json @@ -0,0 +1,23 @@ +{ + "id": 10370, + "slug": "treatwell-connect", + "name": "Treatwell Connect", + "release_date": null, + "developers": [ + "Treatwell" + ], + "publishers": [ + "Treatwell" + ], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137900361" + ], + "created_at": "2026-07-10T10:12:43.463175", + "updated_at": "2026-07-10T10:12:43.463175", + "url": "/v1/software/treatwell-connect" +} diff --git a/site/public/v1/software/tree-puzzle/index.json b/site/public/v1/software/tree-puzzle/index.json new file mode 100644 index 000000000000..020994d22b5f --- /dev/null +++ b/site/public/v1/software/tree-puzzle/index.json @@ -0,0 +1,19 @@ +{ + "id": 10371, + "slug": "tree-puzzle", + "name": "Tree puzzle", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7837628" + ], + "created_at": "2026-07-10T10:12:43.463175", + "updated_at": "2026-07-10T10:12:43.463175", + "url": "/v1/software/tree-puzzle" +} diff --git a/site/public/v1/software/tree-sitter/index.json b/site/public/v1/software/tree-sitter/index.json new file mode 100644 index 000000000000..6160770d2bae --- /dev/null +++ b/site/public/v1/software/tree-sitter/index.json @@ -0,0 +1,23 @@ +{ + "id": 10372, + "slug": "tree-sitter", + "name": "Tree-sitter", + "release_date": null, + "developers": [ + "Max Brunsfeld" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111522956" + ], + "created_at": "2026-07-10T10:12:43.463175", + "updated_at": "2026-07-10T10:12:43.463175", + "url": "/v1/software/tree-sitter" +} diff --git a/site/public/v1/software/treecc/index.json b/site/public/v1/software/treecc/index.json new file mode 100644 index 000000000000..57a84df6b09b --- /dev/null +++ b/site/public/v1/software/treecc/index.json @@ -0,0 +1,19 @@ +{ + "id": 10373, + "slug": "treecc", + "name": "treecc", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60864957" + ], + "created_at": "2026-07-10T10:12:43.464109", + "updated_at": "2026-07-10T10:12:43.464109", + "url": "/v1/software/treecc" +} diff --git a/site/public/v1/software/treefinder/index.json b/site/public/v1/software/treefinder/index.json new file mode 100644 index 000000000000..43c1a136e14b --- /dev/null +++ b/site/public/v1/software/treefinder/index.json @@ -0,0 +1,21 @@ +{ + "id": 10374, + "slug": "treefinder", + "name": "Treefinder", + "release_date": "2004-01-01", + "developers": [ + "Gangolf Jobb" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7837661" + ], + "created_at": "2026-07-10T10:12:43.464109", + "updated_at": "2026-07-10T10:12:43.464109", + "url": "/v1/software/treefinder" +} diff --git a/site/public/v1/software/treeio/index.json b/site/public/v1/software/treeio/index.json new file mode 100644 index 000000000000..f669857e40cd --- /dev/null +++ b/site/public/v1/software/treeio/index.json @@ -0,0 +1,23 @@ +{ + "id": 10375, + "slug": "treeio", + "name": "treeio", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "R" + ], + "licenses": [ + "Artistic License 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112338859" + ], + "created_at": "2026-07-10T10:12:43.465107", + "updated_at": "2026-07-10T10:12:43.465107", + "url": "/v1/software/treeio" +} diff --git a/site/public/v1/software/treetagger/index.json b/site/public/v1/software/treetagger/index.json new file mode 100644 index 000000000000..2a91aed5573d --- /dev/null +++ b/site/public/v1/software/treetagger/index.json @@ -0,0 +1,19 @@ +{ + "id": 10376, + "slug": "treetagger", + "name": "TreeTagger", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084680" + ], + "created_at": "2026-07-10T10:12:43.465107", + "updated_at": "2026-07-10T10:12:43.465107", + "url": "/v1/software/treetagger" +} diff --git a/site/public/v1/software/trell/index.json b/site/public/v1/software/trell/index.json new file mode 100644 index 000000000000..517aebce6e4a --- /dev/null +++ b/site/public/v1/software/trell/index.json @@ -0,0 +1,19 @@ +{ + "id": 10377, + "slug": "trell", + "name": "Trell", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105773279" + ], + "created_at": "2026-07-10T10:12:43.465107", + "updated_at": "2026-07-10T10:12:43.465107", + "url": "/v1/software/trell" +} diff --git a/site/public/v1/software/trendalyzer/index.json b/site/public/v1/software/trendalyzer/index.json new file mode 100644 index 000000000000..d60ef49ceb1f --- /dev/null +++ b/site/public/v1/software/trendalyzer/index.json @@ -0,0 +1,25 @@ +{ + "id": 10378, + "slug": "trendalyzer", + "name": "Trendalyzer", + "release_date": null, + "developers": [ + "Gapminder Foundation", + "Anna Rosling Rönnlund", + "Ola Rosling" + ], + "publishers": [ + "Gapminder Foundation" + ], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q637990" + ], + "created_at": "2026-07-10T10:12:43.465107", + "updated_at": "2026-07-10T10:12:43.465107", + "url": "/v1/software/trendalyzer" +} diff --git a/site/public/v1/software/trendio-com/index.json b/site/public/v1/software/trendio-com/index.json new file mode 100644 index 000000000000..7bd8f7a1d4ef --- /dev/null +++ b/site/public/v1/software/trendio-com/index.json @@ -0,0 +1,19 @@ +{ + "id": 10379, + "slug": "trendio-com", + "name": "Trendio.com", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7838289" + ], + "created_at": "2026-07-10T10:12:43.466110", + "updated_at": "2026-07-10T10:12:43.466110", + "url": "/v1/software/trendio-com" +} diff --git a/site/public/v1/software/trendminer/index.json b/site/public/v1/software/trendminer/index.json new file mode 100644 index 000000000000..a1e610a3e270 --- /dev/null +++ b/site/public/v1/software/trendminer/index.json @@ -0,0 +1,19 @@ +{ + "id": 10380, + "slug": "trendminer", + "name": "TrendMiner", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135968380" + ], + "created_at": "2026-07-10T10:12:43.466110", + "updated_at": "2026-07-10T10:12:43.466110", + "url": "/v1/software/trendminer" +} diff --git a/site/public/v1/software/trevismd-statannotations-v0-5/index.json b/site/public/v1/software/trevismd-statannotations-v0-5/index.json new file mode 100644 index 000000000000..ed98810a4c4d --- /dev/null +++ b/site/public/v1/software/trevismd-statannotations-v0-5/index.json @@ -0,0 +1,19 @@ +{ + "id": 10381, + "slug": "trevismd-statannotations-v0-5", + "name": "trevismd/statannotations: v0.5", + "release_date": "2022-10-16", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122703630" + ], + "created_at": "2026-07-10T10:12:43.466110", + "updated_at": "2026-07-10T10:12:43.466110", + "url": "/v1/software/trevismd-statannotations-v0-5" +} diff --git a/site/public/v1/software/tribe-flood-network/index.json b/site/public/v1/software/tribe-flood-network/index.json new file mode 100644 index 000000000000..28327d855631 --- /dev/null +++ b/site/public/v1/software/tribe-flood-network/index.json @@ -0,0 +1,22 @@ +{ + "id": 10382, + "slug": "tribe-flood-network", + "name": "Tribe Flood Network", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Solaris", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7840362" + ], + "created_at": "2026-07-10T10:12:43.467109", + "updated_at": "2026-07-10T10:12:43.467109", + "url": "/v1/software/tribe-flood-network" +} diff --git a/site/public/v1/software/tricentis-tosca/index.json b/site/public/v1/software/tricentis-tosca/index.json new file mode 100644 index 000000000000..8c60b34ea11e --- /dev/null +++ b/site/public/v1/software/tricentis-tosca/index.json @@ -0,0 +1,23 @@ +{ + "id": 10383, + "slug": "tricentis-tosca", + "name": "Tricentis Tosca", + "release_date": null, + "developers": [ + "Tricentis" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q29364616" + ], + "created_at": "2026-07-10T10:12:43.467109", + "updated_at": "2026-07-10T10:12:43.467109", + "url": "/v1/software/tricentis-tosca" +} diff --git a/site/public/v1/software/tricon/index.json b/site/public/v1/software/tricon/index.json new file mode 100644 index 000000000000..d36a7423b1a2 --- /dev/null +++ b/site/public/v1/software/tricon/index.json @@ -0,0 +1,19 @@ +{ + "id": 10384, + "slug": "tricon", + "name": "TRICON", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087751" + ], + "created_at": "2026-07-10T10:12:43.467109", + "updated_at": "2026-07-10T10:12:43.467109", + "url": "/v1/software/tricon" +} diff --git a/site/public/v1/software/trid/index.json b/site/public/v1/software/trid/index.json new file mode 100644 index 000000000000..6a63240ec723 --- /dev/null +++ b/site/public/v1/software/trid/index.json @@ -0,0 +1,21 @@ +{ + "id": 10385, + "slug": "trid", + "name": "TrID", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "FreeBASIC" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q41799265" + ], + "created_at": "2026-07-10T10:12:43.467109", + "updated_at": "2026-07-10T10:12:43.467109", + "url": "/v1/software/trid" +} diff --git a/site/public/v1/software/trigml/index.json b/site/public/v1/software/trigml/index.json new file mode 100644 index 000000000000..2458b1a95456 --- /dev/null +++ b/site/public/v1/software/trigml/index.json @@ -0,0 +1,19 @@ +{ + "id": 10386, + "slug": "trigml", + "name": "TrigML", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7841663" + ], + "created_at": "2026-07-10T10:12:43.468192", + "updated_at": "2026-07-10T10:12:43.468192", + "url": "/v1/software/trigml" +} diff --git a/site/public/v1/software/trimble-3d-warehouse/index.json b/site/public/v1/software/trimble-3d-warehouse/index.json new file mode 100644 index 000000000000..8747d43e5c6b --- /dev/null +++ b/site/public/v1/software/trimble-3d-warehouse/index.json @@ -0,0 +1,19 @@ +{ + "id": 10387, + "slug": "trimble-3d-warehouse", + "name": "Trimble 3D Warehouse", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1537675" + ], + "created_at": "2026-07-10T10:12:43.468192", + "updated_at": "2026-07-10T10:12:43.468192", + "url": "/v1/software/trimble-3d-warehouse" +} diff --git a/site/public/v1/software/trimension/index.json b/site/public/v1/software/trimension/index.json new file mode 100644 index 000000000000..fffa04ab14c4 --- /dev/null +++ b/site/public/v1/software/trimension/index.json @@ -0,0 +1,21 @@ +{ + "id": 10388, + "slug": "trimension", + "name": "Trimension", + "release_date": null, + "developers": [ + "Koninklijke Philips NV" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7842171" + ], + "created_at": "2026-07-10T10:12:43.469172", + "updated_at": "2026-07-10T10:12:43.469172", + "url": "/v1/software/trimension" +} diff --git a/site/public/v1/software/trimmomatic/index.json b/site/public/v1/software/trimmomatic/index.json new file mode 100644 index 000000000000..1a1f31fe1e7e --- /dev/null +++ b/site/public/v1/software/trimmomatic/index.json @@ -0,0 +1,19 @@ +{ + "id": 10389, + "slug": "trimmomatic", + "name": "Trimmomatic", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118399292" + ], + "created_at": "2026-07-10T10:12:43.469172", + "updated_at": "2026-07-10T10:12:43.469172", + "url": "/v1/software/trimmomatic" +} diff --git a/site/public/v1/software/tringme/index.json b/site/public/v1/software/tringme/index.json new file mode 100644 index 000000000000..9672bcf7855d --- /dev/null +++ b/site/public/v1/software/tringme/index.json @@ -0,0 +1,19 @@ +{ + "id": 10390, + "slug": "tringme", + "name": "TringMe", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18354509" + ], + "created_at": "2026-07-10T10:12:43.469172", + "updated_at": "2026-07-10T10:12:43.469172", + "url": "/v1/software/tringme" +} diff --git a/site/public/v1/software/trino/index.json b/site/public/v1/software/trino/index.json new file mode 100644 index 000000000000..0f39ebe8baea --- /dev/null +++ b/site/public/v1/software/trino/index.json @@ -0,0 +1,27 @@ +{ + "id": 10391, + "slug": "trino", + "name": "Trino", + "release_date": null, + "developers": [ + "Martin Traverso", + "David A. Phillips", + "Piotr Findeisen" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Java" + ], + "licenses": [ + "Apache Software License 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110808774" + ], + "created_at": "2026-07-10T10:12:43.469172", + "updated_at": "2026-07-10T10:12:43.469172", + "url": "/v1/software/trino" +} diff --git a/site/public/v1/software/trip-a-tron/index.json b/site/public/v1/software/trip-a-tron/index.json new file mode 100644 index 000000000000..6e2c548d8f39 --- /dev/null +++ b/site/public/v1/software/trip-a-tron/index.json @@ -0,0 +1,19 @@ +{ + "id": 10392, + "slug": "trip-a-tron", + "name": "Trip-a-Tron", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17049046" + ], + "created_at": "2026-07-10T10:12:43.470171", + "updated_at": "2026-07-10T10:12:43.470171", + "url": "/v1/software/trip-a-tron" +} diff --git a/site/public/v1/software/trip-database/index.json b/site/public/v1/software/trip-database/index.json new file mode 100644 index 000000000000..64f44a680ddc --- /dev/null +++ b/site/public/v1/software/trip-database/index.json @@ -0,0 +1,21 @@ +{ + "id": 10393, + "slug": "trip-database", + "name": "TRIP Database", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7671401" + ], + "created_at": "2026-07-10T10:12:43.470171", + "updated_at": "2026-07-10T10:12:43.470171", + "url": "/v1/software/trip-database" +} diff --git a/site/public/v1/software/trismegistos-data-services/index.json b/site/public/v1/software/trismegistos-data-services/index.json new file mode 100644 index 000000000000..c0d87d198de9 --- /dev/null +++ b/site/public/v1/software/trismegistos-data-services/index.json @@ -0,0 +1,19 @@ +{ + "id": 10394, + "slug": "trismegistos-data-services", + "name": "Trismegistos Data Services", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084682" + ], + "created_at": "2026-07-10T10:12:43.470171", + "updated_at": "2026-07-10T10:12:43.470171", + "url": "/v1/software/trismegistos-data-services" +} diff --git a/site/public/v1/software/trivial-gray-streams/index.json b/site/public/v1/software/trivial-gray-streams/index.json new file mode 100644 index 000000000000..3d4f96abeff6 --- /dev/null +++ b/site/public/v1/software/trivial-gray-streams/index.json @@ -0,0 +1,21 @@ +{ + "id": 10395, + "slug": "trivial-gray-streams", + "name": "trivial-gray-streams", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975523" + ], + "created_at": "2026-07-10T10:12:43.471206", + "updated_at": "2026-07-10T10:12:43.471206", + "url": "/v1/software/trivial-gray-streams" +} diff --git a/site/public/v1/software/troff/index.json b/site/public/v1/software/troff/index.json new file mode 100644 index 000000000000..49aaeb43c88e --- /dev/null +++ b/site/public/v1/software/troff/index.json @@ -0,0 +1,24 @@ +{ + "id": 10396, + "slug": "troff", + "name": "troff", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Plan 9", + "Unix-like operating system" + ], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q307306" + ], + "created_at": "2026-07-10T10:12:43.471206", + "updated_at": "2026-07-10T10:12:43.471206", + "url": "/v1/software/troff" +} diff --git a/site/public/v1/software/tron/index.json b/site/public/v1/software/tron/index.json new file mode 100644 index 000000000000..e4a2c739e481 --- /dev/null +++ b/site/public/v1/software/tron/index.json @@ -0,0 +1,21 @@ +{ + "id": 10397, + "slug": "tron", + "name": "Tron", + "release_date": null, + "developers": [ + "TRON Foundation" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q47134419" + ], + "created_at": "2026-07-10T10:12:43.471206", + "updated_at": "2026-07-10T10:12:43.471206", + "url": "/v1/software/tron" +} diff --git a/site/public/v1/software/tropes/index.json b/site/public/v1/software/tropes/index.json new file mode 100644 index 000000000000..2c806405cdf5 --- /dev/null +++ b/site/public/v1/software/tropes/index.json @@ -0,0 +1,19 @@ +{ + "id": 10398, + "slug": "tropes", + "name": "Tropes", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084683" + ], + "created_at": "2026-07-10T10:12:43.472171", + "updated_at": "2026-07-10T10:12:43.472171", + "url": "/v1/software/tropes" +} diff --git a/site/public/v1/software/tropy/index.json b/site/public/v1/software/tropy/index.json new file mode 100644 index 000000000000..f204ae4a48c9 --- /dev/null +++ b/site/public/v1/software/tropy/index.json @@ -0,0 +1,19 @@ +{ + "id": 10399, + "slug": "tropy", + "name": "Tropy", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q56278333" + ], + "created_at": "2026-07-10T10:12:43.472171", + "updated_at": "2026-07-10T10:12:43.472171", + "url": "/v1/software/tropy" +} diff --git a/site/public/v1/software/truck-factor/index.json b/site/public/v1/software/truck-factor/index.json new file mode 100644 index 000000000000..9d15daee471a --- /dev/null +++ b/site/public/v1/software/truck-factor/index.json @@ -0,0 +1,21 @@ +{ + "id": 10400, + "slug": "truck-factor", + "name": "Truck-Factor", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127474950" + ], + "created_at": "2026-07-10T10:12:43.472171", + "updated_at": "2026-07-10T10:12:43.472171", + "url": "/v1/software/truck-factor" +} diff --git a/site/public/v1/software/true-north-budgeting/index.json b/site/public/v1/software/true-north-budgeting/index.json new file mode 100644 index 000000000000..27e24eb9d0df --- /dev/null +++ b/site/public/v1/software/true-north-budgeting/index.json @@ -0,0 +1,25 @@ +{ + "id": 10401, + "slug": "true-north-budgeting", + "name": "True North Budgeting", + "release_date": "2025-01-01", + "developers": [ + "True North Budgeting" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "React" + ], + "licenses": [], + "genres": [ + "personal finance" + ], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138571842" + ], + "created_at": "2026-07-10T10:12:43.472171", + "updated_at": "2026-07-10T10:12:43.472171", + "url": "/v1/software/true-north-budgeting" +} diff --git a/site/public/v1/software/truecaller/index.json b/site/public/v1/software/truecaller/index.json new file mode 100644 index 000000000000..9a76c639106c --- /dev/null +++ b/site/public/v1/software/truecaller/index.json @@ -0,0 +1,19 @@ +{ + "id": 10402, + "slug": "truecaller", + "name": "TrueCaller", + "release_date": "2009-07-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q15918054" + ], + "created_at": "2026-07-10T10:12:43.473180", + "updated_at": "2026-07-10T10:12:43.473180", + "url": "/v1/software/truecaller" +} diff --git a/site/public/v1/software/trueconf/index.json b/site/public/v1/software/trueconf/index.json new file mode 100644 index 000000000000..0998a774e569 --- /dev/null +++ b/site/public/v1/software/trueconf/index.json @@ -0,0 +1,19 @@ +{ + "id": 10403, + "slug": "trueconf", + "name": "TrueConf", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q83472435" + ], + "created_at": "2026-07-10T10:12:43.473180", + "updated_at": "2026-07-10T10:12:43.473180", + "url": "/v1/software/trueconf" +} diff --git a/site/public/v1/software/trueprint/index.json b/site/public/v1/software/trueprint/index.json new file mode 100644 index 000000000000..8a582934d602 --- /dev/null +++ b/site/public/v1/software/trueprint/index.json @@ -0,0 +1,19 @@ +{ + "id": 10404, + "slug": "trueprint", + "name": "Trueprint", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76184699" + ], + "created_at": "2026-07-10T10:12:43.473180", + "updated_at": "2026-07-10T10:12:43.473180", + "url": "/v1/software/trueprint" +} diff --git a/site/public/v1/software/truescreen/index.json b/site/public/v1/software/truescreen/index.json new file mode 100644 index 000000000000..107326df236e --- /dev/null +++ b/site/public/v1/software/truescreen/index.json @@ -0,0 +1,21 @@ +{ + "id": 10405, + "slug": "truescreen", + "name": "TrueScreen", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "iOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138661307" + ], + "created_at": "2026-07-10T10:12:43.474211", + "updated_at": "2026-07-10T10:12:43.474211", + "url": "/v1/software/truescreen" +} diff --git a/site/public/v1/software/truespace/index.json b/site/public/v1/software/truespace/index.json new file mode 100644 index 000000000000..cffcc8f45400 --- /dev/null +++ b/site/public/v1/software/truespace/index.json @@ -0,0 +1,19 @@ +{ + "id": 10406, + "slug": "truespace", + "name": "TrueSpace", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1027000" + ], + "created_at": "2026-07-10T10:12:43.474211", + "updated_at": "2026-07-10T10:12:43.474211", + "url": "/v1/software/truespace" +} diff --git a/site/public/v1/software/truewiki/index.json b/site/public/v1/software/truewiki/index.json new file mode 100644 index 000000000000..e04cac26a39e --- /dev/null +++ b/site/public/v1/software/truewiki/index.json @@ -0,0 +1,21 @@ +{ + "id": 10407, + "slug": "truewiki", + "name": "TrueWiki", + "release_date": null, + "developers": [ + "Patric Stout" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116924150" + ], + "created_at": "2026-07-10T10:12:43.474211", + "updated_at": "2026-07-10T10:12:43.474211", + "url": "/v1/software/truewiki" +} diff --git a/site/public/v1/software/trumpet-winsock/index.json b/site/public/v1/software/trumpet-winsock/index.json new file mode 100644 index 000000000000..8d5d44d576dd --- /dev/null +++ b/site/public/v1/software/trumpet-winsock/index.json @@ -0,0 +1,21 @@ +{ + "id": 10408, + "slug": "trumpet-winsock", + "name": "Trumpet Winsock", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Windows 3.x" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109381492" + ], + "created_at": "2026-07-10T10:12:43.475163", + "updated_at": "2026-07-10T10:12:43.475163", + "url": "/v1/software/trumpet-winsock" +} diff --git a/site/public/v1/software/trust-graph/index.json b/site/public/v1/software/trust-graph/index.json new file mode 100644 index 000000000000..421e5096ac0c --- /dev/null +++ b/site/public/v1/software/trust-graph/index.json @@ -0,0 +1,21 @@ +{ + "id": 10409, + "slug": "trust-graph", + "name": "Trust Graph", + "release_date": null, + "developers": [ + "Incode" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138859511" + ], + "created_at": "2026-07-10T10:12:43.475163", + "updated_at": "2026-07-10T10:12:43.475163", + "url": "/v1/software/trust-graph" +} diff --git a/site/public/v1/software/trustbox/index.json b/site/public/v1/software/trustbox/index.json new file mode 100644 index 000000000000..e4f91e8432da --- /dev/null +++ b/site/public/v1/software/trustbox/index.json @@ -0,0 +1,21 @@ +{ + "id": 10410, + "slug": "trustbox", + "name": "Trustbox", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q29098198" + ], + "created_at": "2026-07-10T10:12:43.475163", + "updated_at": "2026-07-10T10:12:43.475163", + "url": "/v1/software/trustbox" +} diff --git a/site/public/v1/software/trustedsource/index.json b/site/public/v1/software/trustedsource/index.json new file mode 100644 index 000000000000..99502213da19 --- /dev/null +++ b/site/public/v1/software/trustedsource/index.json @@ -0,0 +1,21 @@ +{ + "id": 10411, + "slug": "trustedsource", + "name": "TrustedSource", + "release_date": null, + "developers": [ + "McAfee, LLC" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7848179" + ], + "created_at": "2026-07-10T10:12:43.475163", + "updated_at": "2026-07-10T10:12:43.476183", + "url": "/v1/software/trustedsource" +} diff --git a/site/public/v1/software/trustgate-ai/index.json b/site/public/v1/software/trustgate-ai/index.json new file mode 100644 index 000000000000..279699a860f7 --- /dev/null +++ b/site/public/v1/software/trustgate-ai/index.json @@ -0,0 +1,21 @@ +{ + "id": 10412, + "slug": "trustgate-ai", + "name": "TrustGate AI", + "release_date": null, + "developers": [ + "TrustGate AI" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140352443" + ], + "created_at": "2026-07-10T10:12:43.476183", + "updated_at": "2026-07-10T10:12:43.476183", + "url": "/v1/software/trustgate-ai" +} diff --git a/site/public/v1/software/tscript/index.json b/site/public/v1/software/tscript/index.json new file mode 100644 index 000000000000..6753de376239 --- /dev/null +++ b/site/public/v1/software/tscript/index.json @@ -0,0 +1,19 @@ +{ + "id": 10413, + "slug": "tscript", + "name": "TScript", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17155042" + ], + "created_at": "2026-07-10T10:12:43.476183", + "updated_at": "2026-07-10T10:12:43.476183", + "url": "/v1/software/tscript" +} diff --git a/site/public/v1/software/tsheets/index.json b/site/public/v1/software/tsheets/index.json new file mode 100644 index 000000000000..b2cb1e3e3eed --- /dev/null +++ b/site/public/v1/software/tsheets/index.json @@ -0,0 +1,19 @@ +{ + "id": 10414, + "slug": "tsheets", + "name": "TSheets", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7671813" + ], + "created_at": "2026-07-10T10:12:43.477173", + "updated_at": "2026-07-10T10:12:43.477173", + "url": "/v1/software/tsheets" +} diff --git a/site/public/v1/software/tsmuxer/index.json b/site/public/v1/software/tsmuxer/index.json new file mode 100644 index 000000000000..abe7a52e72f1 --- /dev/null +++ b/site/public/v1/software/tsmuxer/index.json @@ -0,0 +1,21 @@ +{ + "id": 10415, + "slug": "tsmuxer", + "name": "tsMuxer", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Apache Software License 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120152284" + ], + "created_at": "2026-07-10T10:12:43.477173", + "updated_at": "2026-07-10T10:12:43.477173", + "url": "/v1/software/tsmuxer" +} diff --git a/site/public/v1/software/tsp/index.json b/site/public/v1/software/tsp/index.json new file mode 100644 index 000000000000..3c87e56bcd71 --- /dev/null +++ b/site/public/v1/software/tsp/index.json @@ -0,0 +1,19 @@ +{ + "id": 10416, + "slug": "tsp", + "name": "TSP", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16947733" + ], + "created_at": "2026-07-10T10:12:43.477173", + "updated_at": "2026-07-10T10:12:43.477173", + "url": "/v1/software/tsp" +} diff --git a/site/public/v1/software/tsuita/index.json b/site/public/v1/software/tsuita/index.json new file mode 100644 index 000000000000..4fe37fc85af2 --- /dev/null +++ b/site/public/v1/software/tsuita/index.json @@ -0,0 +1,19 @@ +{ + "id": 10417, + "slug": "tsuita", + "name": "Tsuita", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q132786009" + ], + "created_at": "2026-07-10T10:12:43.477173", + "updated_at": "2026-07-10T10:12:43.477173", + "url": "/v1/software/tsuita" +} diff --git a/site/public/v1/software/ttm-57-sl/index.json b/site/public/v1/software/ttm-57-sl/index.json new file mode 100644 index 000000000000..ee831e757eb4 --- /dev/null +++ b/site/public/v1/software/ttm-57-sl/index.json @@ -0,0 +1,19 @@ +{ + "id": 10418, + "slug": "ttm-57-sl", + "name": "TTM 57 SL", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7671957" + ], + "created_at": "2026-07-10T10:12:43.478232", + "updated_at": "2026-07-10T10:12:43.478232", + "url": "/v1/software/ttm-57-sl" +} diff --git a/site/public/v1/software/ttpod/index.json b/site/public/v1/software/ttpod/index.json new file mode 100644 index 000000000000..2192e3f4ebe8 --- /dev/null +++ b/site/public/v1/software/ttpod/index.json @@ -0,0 +1,22 @@ +{ + "id": 10419, + "slug": "ttpod", + "name": "TTPOD", + "release_date": "2007-01-01", + "developers": [], + "publishers": [], + "operating_systems": [ + "Symbian", + "iOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10939323" + ], + "created_at": "2026-07-10T10:12:43.478232", + "updated_at": "2026-07-10T10:12:43.478232", + "url": "/v1/software/ttpod" +} diff --git a/site/public/v1/software/tu-me/index.json b/site/public/v1/software/tu-me/index.json new file mode 100644 index 000000000000..797bc5920bc1 --- /dev/null +++ b/site/public/v1/software/tu-me/index.json @@ -0,0 +1,19 @@ +{ + "id": 10420, + "slug": "tu-me", + "name": "TU Me", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7672061" + ], + "created_at": "2026-07-10T10:12:43.479111", + "updated_at": "2026-07-10T10:12:43.479111", + "url": "/v1/software/tu-me" +} diff --git a/site/public/v1/software/tucan-manager/index.json b/site/public/v1/software/tucan-manager/index.json new file mode 100644 index 000000000000..0383f3b57d26 --- /dev/null +++ b/site/public/v1/software/tucan-manager/index.json @@ -0,0 +1,19 @@ +{ + "id": 10421, + "slug": "tucan-manager", + "name": "Tucan Manager", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4051858" + ], + "created_at": "2026-07-10T10:12:43.479111", + "updated_at": "2026-07-10T10:12:43.479111", + "url": "/v1/software/tucan-manager" +} diff --git a/site/public/v1/software/tucnak/index.json b/site/public/v1/software/tucnak/index.json new file mode 100644 index 000000000000..f07df98c527d --- /dev/null +++ b/site/public/v1/software/tucnak/index.json @@ -0,0 +1,19 @@ +{ + "id": 10422, + "slug": "tucnak", + "name": "tucnak", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63064792" + ], + "created_at": "2026-07-10T10:12:43.479111", + "updated_at": "2026-07-10T10:12:43.479111", + "url": "/v1/software/tucnak" +} diff --git a/site/public/v1/software/tuio-online-administrators-support-system/index.json b/site/public/v1/software/tuio-online-administrators-support-system/index.json new file mode 100644 index 000000000000..8b0e5de7113b --- /dev/null +++ b/site/public/v1/software/tuio-online-administrators-support-system/index.json @@ -0,0 +1,19 @@ +{ + "id": 10423, + "slug": "tuio-online-administrators-support-system", + "name": "TUIO Online Administrators Support System", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136750857" + ], + "created_at": "2026-07-10T10:12:43.480109", + "updated_at": "2026-07-10T10:12:43.480109", + "url": "/v1/software/tuio-online-administrators-support-system" +} diff --git a/site/public/v1/software/tuio-online-fundraising-platform-for-schools/index.json b/site/public/v1/software/tuio-online-fundraising-platform-for-schools/index.json new file mode 100644 index 000000000000..74cc41def82f --- /dev/null +++ b/site/public/v1/software/tuio-online-fundraising-platform-for-schools/index.json @@ -0,0 +1,21 @@ +{ + "id": 10424, + "slug": "tuio-online-fundraising-platform-for-schools", + "name": "TUIO Online Fundraising Platform For Schools", + "release_date": null, + "developers": [ + "TUIO" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136687297" + ], + "created_at": "2026-07-10T10:12:43.480109", + "updated_at": "2026-07-10T10:12:43.480109", + "url": "/v1/software/tuio-online-fundraising-platform-for-schools" +} diff --git a/site/public/v1/software/tuio-online-parent-support-system/index.json b/site/public/v1/software/tuio-online-parent-support-system/index.json new file mode 100644 index 000000000000..b01238eebf13 --- /dev/null +++ b/site/public/v1/software/tuio-online-parent-support-system/index.json @@ -0,0 +1,19 @@ +{ + "id": 10425, + "slug": "tuio-online-parent-support-system", + "name": "TUIO Online Parent Support System", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136729802" + ], + "created_at": "2026-07-10T10:12:43.480109", + "updated_at": "2026-07-10T10:12:43.480109", + "url": "/v1/software/tuio-online-parent-support-system" +} diff --git a/site/public/v1/software/tuio-online-tuition-management/index.json b/site/public/v1/software/tuio-online-tuition-management/index.json new file mode 100644 index 000000000000..f56dabe59d85 --- /dev/null +++ b/site/public/v1/software/tuio-online-tuition-management/index.json @@ -0,0 +1,21 @@ +{ + "id": 10426, + "slug": "tuio-online-tuition-management", + "name": "TUIO Online Tuition Management", + "release_date": null, + "developers": [ + "TUIO" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136687184" + ], + "created_at": "2026-07-10T10:12:43.481108", + "updated_at": "2026-07-10T10:12:43.481108", + "url": "/v1/software/tuio-online-tuition-management" +} diff --git a/site/public/v1/software/tuio-student-enrollment-management-system/index.json b/site/public/v1/software/tuio-student-enrollment-management-system/index.json new file mode 100644 index 000000000000..c2eed8c47b67 --- /dev/null +++ b/site/public/v1/software/tuio-student-enrollment-management-system/index.json @@ -0,0 +1,21 @@ +{ + "id": 10427, + "slug": "tuio-student-enrollment-management-system", + "name": "TUIO Student Enrollment Management System", + "release_date": null, + "developers": [ + "TUIO" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136677564" + ], + "created_at": "2026-07-10T10:12:43.481108", + "updated_at": "2026-07-10T10:12:43.481108", + "url": "/v1/software/tuio-student-enrollment-management-system" +} diff --git a/site/public/v1/software/tuio-student-information-system/index.json b/site/public/v1/software/tuio-student-information-system/index.json new file mode 100644 index 000000000000..377cd02eb897 --- /dev/null +++ b/site/public/v1/software/tuio-student-information-system/index.json @@ -0,0 +1,21 @@ +{ + "id": 10428, + "slug": "tuio-student-information-system", + "name": "TUIO Student Information System", + "release_date": null, + "developers": [ + "TUIO" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136677525" + ], + "created_at": "2026-07-10T10:12:43.481108", + "updated_at": "2026-07-10T10:12:43.481108", + "url": "/v1/software/tuio-student-information-system" +} diff --git a/site/public/v1/software/tuio/index.json b/site/public/v1/software/tuio/index.json new file mode 100644 index 000000000000..92ecf0039108 --- /dev/null +++ b/site/public/v1/software/tuio/index.json @@ -0,0 +1,19 @@ +{ + "id": 10429, + "slug": "tuio", + "name": "TUIO", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136649061" + ], + "created_at": "2026-07-10T10:12:43.481108", + "updated_at": "2026-07-10T10:12:43.481108", + "url": "/v1/software/tuio" +} diff --git a/site/public/v1/software/tuiopay/index.json b/site/public/v1/software/tuiopay/index.json new file mode 100644 index 000000000000..674ee960d949 --- /dev/null +++ b/site/public/v1/software/tuiopay/index.json @@ -0,0 +1,19 @@ +{ + "id": 10430, + "slug": "tuiopay", + "name": "Tuiopay", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136649268" + ], + "created_at": "2026-07-10T10:12:43.482106", + "updated_at": "2026-07-10T10:12:43.482106", + "url": "/v1/software/tuiopay" +} diff --git a/site/public/v1/software/tuition-management-software/index.json b/site/public/v1/software/tuition-management-software/index.json new file mode 100644 index 000000000000..229ca49848a4 --- /dev/null +++ b/site/public/v1/software/tuition-management-software/index.json @@ -0,0 +1,19 @@ +{ + "id": 10431, + "slug": "tuition-management-software", + "name": "tuition management software", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136682675" + ], + "created_at": "2026-07-10T10:12:43.482106", + "updated_at": "2026-07-10T10:12:43.482106", + "url": "/v1/software/tuition-management-software" +} diff --git a/site/public/v1/software/tume/index.json b/site/public/v1/software/tume/index.json new file mode 100644 index 000000000000..3a1ce065a0e9 --- /dev/null +++ b/site/public/v1/software/tume/index.json @@ -0,0 +1,23 @@ +{ + "id": 10432, + "slug": "tume", + "name": "TUME", + "release_date": null, + "developers": [ + "Echidna Software Development" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Mozilla Public License, version 1.1" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7672028" + ], + "created_at": "2026-07-10T10:12:43.483112", + "updated_at": "2026-07-10T10:12:43.483112", + "url": "/v1/software/tume" +} diff --git a/site/public/v1/software/tuneglue/index.json b/site/public/v1/software/tuneglue/index.json new file mode 100644 index 000000000000..bb7975d4179d --- /dev/null +++ b/site/public/v1/software/tuneglue/index.json @@ -0,0 +1,19 @@ +{ + "id": 10433, + "slug": "tuneglue", + "name": "TuneGlue", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084684" + ], + "created_at": "2026-07-10T10:12:43.483112", + "updated_at": "2026-07-10T10:12:43.483112", + "url": "/v1/software/tuneglue" +} diff --git a/site/public/v1/software/tunesat/index.json b/site/public/v1/software/tunesat/index.json new file mode 100644 index 000000000000..da12b6d978f6 --- /dev/null +++ b/site/public/v1/software/tunesat/index.json @@ -0,0 +1,19 @@ +{ + "id": 10434, + "slug": "tunesat", + "name": "TuneSat", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17120807" + ], + "created_at": "2026-07-10T10:12:43.483112", + "updated_at": "2026-07-10T10:12:43.483112", + "url": "/v1/software/tunesat" +} diff --git a/site/public/v1/software/tunis/index.json b/site/public/v1/software/tunis/index.json new file mode 100644 index 000000000000..97aee3cc67fb --- /dev/null +++ b/site/public/v1/software/tunis/index.json @@ -0,0 +1,23 @@ +{ + "id": 10435, + "slug": "tunis", + "name": "TUNIS", + "release_date": null, + "developers": [ + "University of Toronto" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Concurrent Euclid" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7672034" + ], + "created_at": "2026-07-10T10:12:43.483112", + "updated_at": "2026-07-10T10:12:43.483112", + "url": "/v1/software/tunis" +} diff --git a/site/public/v1/software/tunngle/index.json b/site/public/v1/software/tunngle/index.json new file mode 100644 index 000000000000..a36a80d8dbb9 --- /dev/null +++ b/site/public/v1/software/tunngle/index.json @@ -0,0 +1,19 @@ +{ + "id": 10436, + "slug": "tunngle", + "name": "Tunngle", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q477773" + ], + "created_at": "2026-07-10T10:12:43.484208", + "updated_at": "2026-07-10T10:12:43.484208", + "url": "/v1/software/tunngle" +} diff --git a/site/public/v1/software/tuotu/index.json b/site/public/v1/software/tuotu/index.json new file mode 100644 index 000000000000..482a1afcef94 --- /dev/null +++ b/site/public/v1/software/tuotu/index.json @@ -0,0 +1,19 @@ +{ + "id": 10437, + "slug": "tuotu", + "name": "Tuotu", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3542207" + ], + "created_at": "2026-07-10T10:12:43.484208", + "updated_at": "2026-07-10T10:12:43.484208", + "url": "/v1/software/tuotu" +} diff --git a/site/public/v1/software/turbo-vision/index.json b/site/public/v1/software/turbo-vision/index.json new file mode 100644 index 000000000000..ff56fd501b83 --- /dev/null +++ b/site/public/v1/software/turbo-vision/index.json @@ -0,0 +1,23 @@ +{ + "id": 10438, + "slug": "turbo-vision", + "name": "Turbo Vision", + "release_date": null, + "developers": [ + "Borland" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "public-domain software" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1571571" + ], + "created_at": "2026-07-10T10:12:43.484208", + "updated_at": "2026-07-10T10:12:43.484208", + "url": "/v1/software/turbo-vision" +} diff --git a/site/public/v1/software/turbo/index.json b/site/public/v1/software/turbo/index.json new file mode 100644 index 000000000000..e2012658e51b --- /dev/null +++ b/site/public/v1/software/turbo/index.json @@ -0,0 +1,21 @@ +{ + "id": 10439, + "slug": "turbo", + "name": "Turbo", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7579146" + ], + "created_at": "2026-07-10T10:12:43.485224", + "updated_at": "2026-07-10T10:12:43.485224", + "url": "/v1/software/turbo" +} diff --git a/site/public/v1/software/turbopentest/index.json b/site/public/v1/software/turbopentest/index.json new file mode 100644 index 000000000000..55a04fc1b368 --- /dev/null +++ b/site/public/v1/software/turbopentest/index.json @@ -0,0 +1,19 @@ +{ + "id": 10440, + "slug": "turbopentest", + "name": "TurboPentest", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138796034" + ], + "created_at": "2026-07-10T10:12:43.485224", + "updated_at": "2026-07-10T10:12:43.485224", + "url": "/v1/software/turbopentest" +} diff --git a/site/public/v1/software/turboprint/index.json b/site/public/v1/software/turboprint/index.json new file mode 100644 index 000000000000..a144f9939517 --- /dev/null +++ b/site/public/v1/software/turboprint/index.json @@ -0,0 +1,21 @@ +{ + "id": 10441, + "slug": "turboprint", + "name": "TurboPrint", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "AmigaOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7853787" + ], + "created_at": "2026-07-10T10:12:43.485224", + "updated_at": "2026-07-10T10:12:43.485224", + "url": "/v1/software/turboprint" +} diff --git a/site/public/v1/software/turbotax/index.json b/site/public/v1/software/turbotax/index.json new file mode 100644 index 000000000000..ac59c2e75a03 --- /dev/null +++ b/site/public/v1/software/turbotax/index.json @@ -0,0 +1,21 @@ +{ + "id": 10442, + "slug": "turbotax", + "name": "TurboTax", + "release_date": null, + "developers": [ + "Intuit" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q14477864" + ], + "created_at": "2026-07-10T10:12:43.485224", + "updated_at": "2026-07-10T10:12:43.485224", + "url": "/v1/software/turbotax" +} diff --git a/site/public/v1/software/turbovnc/index.json b/site/public/v1/software/turbovnc/index.json new file mode 100644 index 000000000000..72b1ada638c8 --- /dev/null +++ b/site/public/v1/software/turbovnc/index.json @@ -0,0 +1,23 @@ +{ + "id": 10443, + "slug": "turbovnc", + "name": "TurboVNC", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "GNU General Public License, version 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120305587" + ], + "created_at": "2026-07-10T10:12:43.486205", + "updated_at": "2026-07-10T10:12:43.486205", + "url": "/v1/software/turbovnc" +} diff --git a/site/public/v1/software/turbowarp/index.json b/site/public/v1/software/turbowarp/index.json new file mode 100644 index 000000000000..998593d075bc --- /dev/null +++ b/site/public/v1/software/turbowarp/index.json @@ -0,0 +1,21 @@ +{ + "id": 10444, + "slug": "turbowarp", + "name": "TurboWarp", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "GNU General Public License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108540806" + ], + "created_at": "2026-07-10T10:12:43.486205", + "updated_at": "2026-07-10T10:12:43.486205", + "url": "/v1/software/turbowarp" +} diff --git a/site/public/v1/software/turning-the-pages/index.json b/site/public/v1/software/turning-the-pages/index.json new file mode 100644 index 000000000000..5c3ffabde6dd --- /dev/null +++ b/site/public/v1/software/turning-the-pages/index.json @@ -0,0 +1,19 @@ +{ + "id": 10445, + "slug": "turning-the-pages", + "name": "Turning the Pages", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7856054" + ], + "created_at": "2026-07-10T10:12:43.486205", + "updated_at": "2026-07-10T10:12:43.486205", + "url": "/v1/software/turning-the-pages" +} diff --git a/site/public/v1/software/turnstile/index.json b/site/public/v1/software/turnstile/index.json new file mode 100644 index 000000000000..a4f34ebb1f28 --- /dev/null +++ b/site/public/v1/software/turnstile/index.json @@ -0,0 +1,21 @@ +{ + "id": 10446, + "slug": "turnstile", + "name": "turnstile", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "2-clause BSD License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116695031" + ], + "created_at": "2026-07-10T10:12:43.487241", + "updated_at": "2026-07-10T10:12:43.487241", + "url": "/v1/software/turnstile" +} diff --git a/site/public/v1/software/turntool/index.json b/site/public/v1/software/turntool/index.json new file mode 100644 index 000000000000..8fc372bc0c31 --- /dev/null +++ b/site/public/v1/software/turntool/index.json @@ -0,0 +1,19 @@ +{ + "id": 10447, + "slug": "turntool", + "name": "TurnTool", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084685" + ], + "created_at": "2026-07-10T10:12:43.487241", + "updated_at": "2026-07-10T10:12:43.487241", + "url": "/v1/software/turntool" +} diff --git a/site/public/v1/software/tusk/index.json b/site/public/v1/software/tusk/index.json new file mode 100644 index 000000000000..fc9873f71c86 --- /dev/null +++ b/site/public/v1/software/tusk/index.json @@ -0,0 +1,21 @@ +{ + "id": 10448, + "slug": "tusk", + "name": "tusk", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q59607919" + ], + "created_at": "2026-07-10T10:12:43.487241", + "updated_at": "2026-07-10T10:12:43.487241", + "url": "/v1/software/tusk" +} diff --git a/site/public/v1/software/tustep/index.json b/site/public/v1/software/tustep/index.json new file mode 100644 index 000000000000..3fc18efcaa1b --- /dev/null +++ b/site/public/v1/software/tustep/index.json @@ -0,0 +1,21 @@ +{ + "id": 10449, + "slug": "tustep", + "name": "TUSTEP", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "BSD licenses" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1309503" + ], + "created_at": "2026-07-10T10:12:43.488198", + "updated_at": "2026-07-10T10:12:43.488198", + "url": "/v1/software/tustep" +} diff --git a/site/public/v1/software/tuxanci/index.json b/site/public/v1/software/tuxanci/index.json new file mode 100644 index 000000000000..4e647af6d42c --- /dev/null +++ b/site/public/v1/software/tuxanci/index.json @@ -0,0 +1,19 @@ +{ + "id": 10450, + "slug": "tuxanci", + "name": "tuxanci", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975524" + ], + "created_at": "2026-07-10T10:12:43.488198", + "updated_at": "2026-07-10T10:12:43.488198", + "url": "/v1/software/tuxanci" +} diff --git a/site/public/v1/software/tuxedo-suite/index.json b/site/public/v1/software/tuxedo-suite/index.json new file mode 100644 index 000000000000..212a05a24264 --- /dev/null +++ b/site/public/v1/software/tuxedo-suite/index.json @@ -0,0 +1,19 @@ +{ + "id": 10451, + "slug": "tuxedo-suite", + "name": "Tuxedo Suite", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122830175" + ], + "created_at": "2026-07-10T10:12:43.488198", + "updated_at": "2026-07-10T10:12:43.488198", + "url": "/v1/software/tuxedo-suite" +} diff --git a/site/public/v1/software/tv-no-tomo-channel/index.json b/site/public/v1/software/tv-no-tomo-channel/index.json new file mode 100644 index 000000000000..52bae582f2e6 --- /dev/null +++ b/site/public/v1/software/tv-no-tomo-channel/index.json @@ -0,0 +1,23 @@ +{ + "id": 10452, + "slug": "tv-no-tomo-channel", + "name": "TV no Tomo Channel", + "release_date": "2008-03-04", + "developers": [ + "Nintendo" + ], + "publishers": [ + "Nintendo" + ], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11319532" + ], + "created_at": "2026-07-10T10:12:43.489194", + "updated_at": "2026-07-10T10:12:43.489194", + "url": "/v1/software/tv-no-tomo-channel" +} diff --git a/site/public/v1/software/tvants/index.json b/site/public/v1/software/tvants/index.json new file mode 100644 index 000000000000..a8b810a19a51 --- /dev/null +++ b/site/public/v1/software/tvants/index.json @@ -0,0 +1,19 @@ +{ + "id": 10453, + "slug": "tvants", + "name": "TVants", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8017118" + ], + "created_at": "2026-07-10T10:12:43.489194", + "updated_at": "2026-07-10T10:12:43.489194", + "url": "/v1/software/tvants" +} diff --git a/site/public/v1/software/tver/index.json b/site/public/v1/software/tver/index.json new file mode 100644 index 000000000000..844917863e73 --- /dev/null +++ b/site/public/v1/software/tver/index.json @@ -0,0 +1,19 @@ +{ + "id": 10454, + "slug": "tver", + "name": "TVer", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22124796" + ], + "created_at": "2026-07-10T10:12:43.489194", + "updated_at": "2026-07-10T10:12:43.489194", + "url": "/v1/software/tver" +} diff --git a/site/public/v1/software/tversity-media-server/index.json b/site/public/v1/software/tversity-media-server/index.json new file mode 100644 index 000000000000..8b4b75cfc8b5 --- /dev/null +++ b/site/public/v1/software/tversity-media-server/index.json @@ -0,0 +1,21 @@ +{ + "id": 10455, + "slug": "tversity-media-server", + "name": "TVersity Media Server", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4050633" + ], + "created_at": "2026-07-10T10:12:43.490200", + "updated_at": "2026-07-10T10:12:43.490200", + "url": "/v1/software/tversity-media-server" +} diff --git a/site/public/v1/software/twapper-keeper/index.json b/site/public/v1/software/twapper-keeper/index.json new file mode 100644 index 000000000000..0052fc3aee7d --- /dev/null +++ b/site/public/v1/software/twapper-keeper/index.json @@ -0,0 +1,19 @@ +{ + "id": 10456, + "slug": "twapper-keeper", + "name": "Twapper Keeper", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084686" + ], + "created_at": "2026-07-10T10:12:43.490200", + "updated_at": "2026-07-10T10:12:43.490200", + "url": "/v1/software/twapper-keeper" +} diff --git a/site/public/v1/software/tweak-ui/index.json b/site/public/v1/software/tweak-ui/index.json new file mode 100644 index 000000000000..2cc800703c1b --- /dev/null +++ b/site/public/v1/software/tweak-ui/index.json @@ -0,0 +1,19 @@ +{ + "id": 10457, + "slug": "tweak-ui", + "name": "Tweak UI", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3124335" + ], + "created_at": "2026-07-10T10:12:43.490200", + "updated_at": "2026-07-10T10:12:43.490200", + "url": "/v1/software/tweak-ui" +} diff --git a/site/public/v1/software/tweak7/index.json b/site/public/v1/software/tweak7/index.json new file mode 100644 index 000000000000..5f2407fe7569 --- /dev/null +++ b/site/public/v1/software/tweak7/index.json @@ -0,0 +1,23 @@ +{ + "id": 10458, + "slug": "tweak7", + "name": "Tweak7", + "release_date": null, + "developers": [ + "Stardock" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7857449" + ], + "created_at": "2026-07-10T10:12:43.490200", + "updated_at": "2026-07-10T10:12:43.490200", + "url": "/v1/software/tweak7" +} diff --git a/site/public/v1/software/tween/index.json b/site/public/v1/software/tween/index.json new file mode 100644 index 000000000000..6cf4d159a6cd --- /dev/null +++ b/site/public/v1/software/tween/index.json @@ -0,0 +1,23 @@ +{ + "id": 10459, + "slug": "tween", + "name": "Tween", + "release_date": "2007-11-21", + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [ + "Visual Basic" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7857509" + ], + "created_at": "2026-07-10T10:12:43.491179", + "updated_at": "2026-07-10T10:12:43.491179", + "url": "/v1/software/tween" +} diff --git a/site/public/v1/software/tweet-archivist/index.json b/site/public/v1/software/tweet-archivist/index.json new file mode 100644 index 000000000000..fd111e089c7a --- /dev/null +++ b/site/public/v1/software/tweet-archivist/index.json @@ -0,0 +1,19 @@ +{ + "id": 10460, + "slug": "tweet-archivist", + "name": "Tweet Archivist", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084687" + ], + "created_at": "2026-07-10T10:12:43.491179", + "updated_at": "2026-07-10T10:12:43.491179", + "url": "/v1/software/tweet-archivist" +} diff --git a/site/public/v1/software/tweetster/index.json b/site/public/v1/software/tweetster/index.json new file mode 100644 index 000000000000..60b4e0150bc7 --- /dev/null +++ b/site/public/v1/software/tweetster/index.json @@ -0,0 +1,19 @@ +{ + "id": 10461, + "slug": "tweetster", + "name": "Tweetster", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084691" + ], + "created_at": "2026-07-10T10:12:43.491179", + "updated_at": "2026-07-10T10:12:43.491179", + "url": "/v1/software/tweetster" +} diff --git a/site/public/v1/software/twelf/index.json b/site/public/v1/software/twelf/index.json new file mode 100644 index 000000000000..8f7a48779337 --- /dev/null +++ b/site/public/v1/software/twelf/index.json @@ -0,0 +1,19 @@ +{ + "id": 10462, + "slug": "twelf", + "name": "twelf", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065143" + ], + "created_at": "2026-07-10T10:12:43.492209", + "updated_at": "2026-07-10T10:12:43.492209", + "url": "/v1/software/twelf" +} diff --git a/site/public/v1/software/twilight/index.json b/site/public/v1/software/twilight/index.json new file mode 100644 index 000000000000..de5a207dab96 --- /dev/null +++ b/site/public/v1/software/twilight/index.json @@ -0,0 +1,19 @@ +{ + "id": 10463, + "slug": "twilight", + "name": "Twilight", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3280651" + ], + "created_at": "2026-07-10T10:12:43.492209", + "updated_at": "2026-07-10T10:12:43.492209", + "url": "/v1/software/twilight" +} diff --git a/site/public/v1/software/twin-ai/index.json b/site/public/v1/software/twin-ai/index.json new file mode 100644 index 000000000000..d2c84dfb4c16 --- /dev/null +++ b/site/public/v1/software/twin-ai/index.json @@ -0,0 +1,23 @@ +{ + "id": 10464, + "slug": "twin-ai", + "name": "Twin AI", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "iOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [ + "artificial intelligence" + ], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139861269" + ], + "created_at": "2026-07-10T10:12:43.492209", + "updated_at": "2026-07-10T10:12:43.492209", + "url": "/v1/software/twin-ai" +} diff --git a/site/public/v1/software/twinby/index.json b/site/public/v1/software/twinby/index.json new file mode 100644 index 000000000000..ab0bf995b9e3 --- /dev/null +++ b/site/public/v1/software/twinby/index.json @@ -0,0 +1,19 @@ +{ + "id": 10465, + "slug": "twinby", + "name": "Twinby", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138683949" + ], + "created_at": "2026-07-10T10:12:43.493197", + "updated_at": "2026-07-10T10:12:43.493197", + "url": "/v1/software/twinby" +} diff --git a/site/public/v1/software/twinkl-book-club/index.json b/site/public/v1/software/twinkl-book-club/index.json new file mode 100644 index 000000000000..0eaf5f4dc097 --- /dev/null +++ b/site/public/v1/software/twinkl-book-club/index.json @@ -0,0 +1,19 @@ +{ + "id": 10466, + "slug": "twinkl-book-club", + "name": "Twinkl Book Club", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106509467" + ], + "created_at": "2026-07-10T10:12:43.493197", + "updated_at": "2026-07-10T10:12:43.493197", + "url": "/v1/software/twinkl-book-club" +} diff --git a/site/public/v1/software/twinkl-boost/index.json b/site/public/v1/software/twinkl-boost/index.json new file mode 100644 index 000000000000..4f27673ac5ca --- /dev/null +++ b/site/public/v1/software/twinkl-boost/index.json @@ -0,0 +1,19 @@ +{ + "id": 10467, + "slug": "twinkl-boost", + "name": "Twinkl Boost", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106509328" + ], + "created_at": "2026-07-10T10:12:43.493197", + "updated_at": "2026-07-10T10:12:43.493197", + "url": "/v1/software/twinkl-boost" +} diff --git a/site/public/v1/software/twinkl-classic/index.json b/site/public/v1/software/twinkl-classic/index.json new file mode 100644 index 000000000000..f6f788025ac3 --- /dev/null +++ b/site/public/v1/software/twinkl-classic/index.json @@ -0,0 +1,19 @@ +{ + "id": 10468, + "slug": "twinkl-classic", + "name": "Twinkl Classic", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106509293" + ], + "created_at": "2026-07-10T10:12:43.494209", + "updated_at": "2026-07-10T10:12:43.494209", + "url": "/v1/software/twinkl-classic" +} diff --git a/site/public/v1/software/twinkl-create/index.json b/site/public/v1/software/twinkl-create/index.json new file mode 100644 index 000000000000..f5258f75a7b8 --- /dev/null +++ b/site/public/v1/software/twinkl-create/index.json @@ -0,0 +1,19 @@ +{ + "id": 10469, + "slug": "twinkl-create", + "name": "Twinkl Create", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q26132809" + ], + "created_at": "2026-07-10T10:12:43.496215", + "updated_at": "2026-07-10T10:12:43.496215", + "url": "/v1/software/twinkl-create" +} diff --git a/site/public/v1/software/twinkl-go/index.json b/site/public/v1/software/twinkl-go/index.json new file mode 100644 index 000000000000..0949d26bf466 --- /dev/null +++ b/site/public/v1/software/twinkl-go/index.json @@ -0,0 +1,19 @@ +{ + "id": 10470, + "slug": "twinkl-go", + "name": "Twinkl Go!", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106509632" + ], + "created_at": "2026-07-10T10:12:43.497178", + "updated_at": "2026-07-10T10:12:43.497178", + "url": "/v1/software/twinkl-go" +} diff --git a/site/public/v1/software/twinkl-handwriting/index.json b/site/public/v1/software/twinkl-handwriting/index.json new file mode 100644 index 000000000000..c8c9cb27dd47 --- /dev/null +++ b/site/public/v1/software/twinkl-handwriting/index.json @@ -0,0 +1,19 @@ +{ + "id": 10471, + "slug": "twinkl-handwriting", + "name": "Twinkl Handwriting", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106509370" + ], + "created_at": "2026-07-10T10:12:43.499194", + "updated_at": "2026-07-10T10:12:43.499194", + "url": "/v1/software/twinkl-handwriting" +} diff --git a/site/public/v1/software/twinkl-inclusion/index.json b/site/public/v1/software/twinkl-inclusion/index.json new file mode 100644 index 000000000000..4d41bae2fb41 --- /dev/null +++ b/site/public/v1/software/twinkl-inclusion/index.json @@ -0,0 +1,19 @@ +{ + "id": 10472, + "slug": "twinkl-inclusion", + "name": "Twinkl Inclusion", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106509006" + ], + "created_at": "2026-07-10T10:12:43.499194", + "updated_at": "2026-07-10T10:12:43.499194", + "url": "/v1/software/twinkl-inclusion" +} diff --git a/site/public/v1/software/twinkl-life/index.json b/site/public/v1/software/twinkl-life/index.json new file mode 100644 index 000000000000..a400a249310f --- /dev/null +++ b/site/public/v1/software/twinkl-life/index.json @@ -0,0 +1,19 @@ +{ + "id": 10473, + "slug": "twinkl-life", + "name": "Twinkl Life", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106509834" + ], + "created_at": "2026-07-10T10:12:43.500227", + "updated_at": "2026-07-10T10:12:43.500227", + "url": "/v1/software/twinkl-life" +} diff --git a/site/public/v1/software/twinkl-move/index.json b/site/public/v1/software/twinkl-move/index.json new file mode 100644 index 000000000000..d3a4a17963d4 --- /dev/null +++ b/site/public/v1/software/twinkl-move/index.json @@ -0,0 +1,19 @@ +{ + "id": 10474, + "slug": "twinkl-move", + "name": "Twinkl Move", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106509584" + ], + "created_at": "2026-07-10T10:12:43.500227", + "updated_at": "2026-07-10T10:12:43.500227", + "url": "/v1/software/twinkl-move" +} diff --git a/site/public/v1/software/twinkl-newsroom/index.json b/site/public/v1/software/twinkl-newsroom/index.json new file mode 100644 index 000000000000..010fa13199a5 --- /dev/null +++ b/site/public/v1/software/twinkl-newsroom/index.json @@ -0,0 +1,19 @@ +{ + "id": 10475, + "slug": "twinkl-newsroom", + "name": "Twinkl Newsroom", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106509573" + ], + "created_at": "2026-07-10T10:12:43.501226", + "updated_at": "2026-07-10T10:12:43.501226", + "url": "/v1/software/twinkl-newsroom" +} diff --git a/site/public/v1/software/twinkl-originals/index.json b/site/public/v1/software/twinkl-originals/index.json new file mode 100644 index 000000000000..d07f0c982c4b --- /dev/null +++ b/site/public/v1/software/twinkl-originals/index.json @@ -0,0 +1,19 @@ +{ + "id": 10476, + "slug": "twinkl-originals", + "name": "Twinkl Originals", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106509312" + ], + "created_at": "2026-07-10T10:12:43.501226", + "updated_at": "2026-07-10T10:12:43.501226", + "url": "/v1/software/twinkl-originals" +} diff --git a/site/public/v1/software/twinkl-party/index.json b/site/public/v1/software/twinkl-party/index.json new file mode 100644 index 000000000000..722d90995f13 --- /dev/null +++ b/site/public/v1/software/twinkl-party/index.json @@ -0,0 +1,19 @@ +{ + "id": 10477, + "slug": "twinkl-party", + "name": "Twinkl Party", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106509843" + ], + "created_at": "2026-07-10T10:12:43.501226", + "updated_at": "2026-07-10T10:12:43.501226", + "url": "/v1/software/twinkl-party" +} diff --git a/site/public/v1/software/twinkl-phonics/index.json b/site/public/v1/software/twinkl-phonics/index.json new file mode 100644 index 000000000000..3dda500cc079 --- /dev/null +++ b/site/public/v1/software/twinkl-phonics/index.json @@ -0,0 +1,19 @@ +{ + "id": 10478, + "slug": "twinkl-phonics", + "name": "Twinkl Phonics", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106509659" + ], + "created_at": "2026-07-10T10:12:43.502311", + "updated_at": "2026-07-10T10:12:43.502311", + "url": "/v1/software/twinkl-phonics" +} diff --git a/site/public/v1/software/twinkle-bulbs/index.json b/site/public/v1/software/twinkle-bulbs/index.json new file mode 100644 index 000000000000..e8693a1e4d80 --- /dev/null +++ b/site/public/v1/software/twinkle-bulbs/index.json @@ -0,0 +1,21 @@ +{ + "id": 10479, + "slug": "twinkle-bulbs", + "name": "Twinkle Bulbs", + "release_date": "2005-10-24", + "developers": [ + "Barefoot Productions" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q128253215" + ], + "created_at": "2026-07-10T10:12:43.502311", + "updated_at": "2026-07-10T10:12:43.502311", + "url": "/v1/software/twinkle-bulbs" +} diff --git a/site/public/v1/software/twinmotion/index.json b/site/public/v1/software/twinmotion/index.json new file mode 100644 index 000000000000..997472b8bf0b --- /dev/null +++ b/site/public/v1/software/twinmotion/index.json @@ -0,0 +1,19 @@ +{ + "id": 10480, + "slug": "twinmotion", + "name": "Twinmotion", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3542551" + ], + "created_at": "2026-07-10T10:12:43.502311", + "updated_at": "2026-07-10T10:12:43.502311", + "url": "/v1/software/twinmotion" +} diff --git a/site/public/v1/software/twitter-archiver-google-sheets-add-on/index.json b/site/public/v1/software/twitter-archiver-google-sheets-add-on/index.json new file mode 100644 index 000000000000..824a27bcbf4c --- /dev/null +++ b/site/public/v1/software/twitter-archiver-google-sheets-add-on/index.json @@ -0,0 +1,19 @@ +{ + "id": 10481, + "slug": "twitter-archiver-google-sheets-add-on", + "name": "Twitter Archiver (Google Sheets Add-On)", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084692" + ], + "created_at": "2026-07-10T10:12:43.503292", + "updated_at": "2026-07-10T10:12:43.503292", + "url": "/v1/software/twitter-archiver-google-sheets-add-on" +} diff --git a/site/public/v1/software/twittering-mode/index.json b/site/public/v1/software/twittering-mode/index.json new file mode 100644 index 000000000000..43549d557bb5 --- /dev/null +++ b/site/public/v1/software/twittering-mode/index.json @@ -0,0 +1,19 @@ +{ + "id": 10482, + "slug": "twittering-mode", + "name": "twittering-mode", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975525" + ], + "created_at": "2026-07-10T10:12:43.503292", + "updated_at": "2026-07-10T10:12:43.503292", + "url": "/v1/software/twittering-mode" +} diff --git a/site/public/v1/software/twitterpad/index.json b/site/public/v1/software/twitterpad/index.json new file mode 100644 index 000000000000..f3c769ed005f --- /dev/null +++ b/site/public/v1/software/twitterpad/index.json @@ -0,0 +1,19 @@ +{ + "id": 10483, + "slug": "twitterpad", + "name": "TwitterPad", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084693" + ], + "created_at": "2026-07-10T10:12:43.503292", + "updated_at": "2026-07-10T10:12:43.503292", + "url": "/v1/software/twitterpad" +} diff --git a/site/public/v1/software/twproject/index.json b/site/public/v1/software/twproject/index.json new file mode 100644 index 000000000000..1ec205649699 --- /dev/null +++ b/site/public/v1/software/twproject/index.json @@ -0,0 +1,19 @@ +{ + "id": 10484, + "slug": "twproject", + "name": "Twproject", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7691688" + ], + "created_at": "2026-07-10T10:12:43.504348", + "updated_at": "2026-07-10T10:12:43.504348", + "url": "/v1/software/twproject" +} diff --git a/site/public/v1/software/twxplorer/index.json b/site/public/v1/software/twxplorer/index.json new file mode 100644 index 000000000000..931fc6942621 --- /dev/null +++ b/site/public/v1/software/twxplorer/index.json @@ -0,0 +1,19 @@ +{ + "id": 10485, + "slug": "twxplorer", + "name": "twXplorer", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084694" + ], + "created_at": "2026-07-10T10:12:43.504348", + "updated_at": "2026-07-10T10:12:43.504348", + "url": "/v1/software/twxplorer" +} diff --git a/site/public/v1/software/txm/index.json b/site/public/v1/software/txm/index.json new file mode 100644 index 000000000000..1aa5f203d231 --- /dev/null +++ b/site/public/v1/software/txm/index.json @@ -0,0 +1,19 @@ +{ + "id": 10486, + "slug": "txm", + "name": "TXM", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084695" + ], + "created_at": "2026-07-10T10:12:43.504348", + "updated_at": "2026-07-10T10:12:43.504348", + "url": "/v1/software/txm" +} diff --git a/site/public/v1/software/txtweb/index.json b/site/public/v1/software/txtweb/index.json new file mode 100644 index 000000000000..2d95e9254a54 --- /dev/null +++ b/site/public/v1/software/txtweb/index.json @@ -0,0 +1,19 @@ +{ + "id": 10487, + "slug": "txtweb", + "name": "TxtWeb", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111915003" + ], + "created_at": "2026-07-10T10:12:43.505299", + "updated_at": "2026-07-10T10:12:43.505299", + "url": "/v1/software/txtweb" +} diff --git a/site/public/v1/software/type-generalization/index.json b/site/public/v1/software/type-generalization/index.json new file mode 100644 index 000000000000..5d444a640caf --- /dev/null +++ b/site/public/v1/software/type-generalization/index.json @@ -0,0 +1,19 @@ +{ + "id": 10488, + "slug": "type-generalization", + "name": "Type generalization", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7860903" + ], + "created_at": "2026-07-10T10:12:43.505299", + "updated_at": "2026-07-10T10:12:43.505299", + "url": "/v1/software/type-generalization" +} diff --git a/site/public/v1/software/type-in-program/index.json b/site/public/v1/software/type-in-program/index.json new file mode 100644 index 000000000000..a85d779a135c --- /dev/null +++ b/site/public/v1/software/type-in-program/index.json @@ -0,0 +1,19 @@ +{ + "id": 10489, + "slug": "type-in-program", + "name": "type-in program", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7860618" + ], + "created_at": "2026-07-10T10:12:43.505299", + "updated_at": "2026-07-10T10:12:43.505299", + "url": "/v1/software/type-in-program" +} diff --git a/site/public/v1/software/type4all/index.json b/site/public/v1/software/type4all/index.json new file mode 100644 index 000000000000..cf12e9e8929f --- /dev/null +++ b/site/public/v1/software/type4all/index.json @@ -0,0 +1,25 @@ +{ + "id": 10490, + "slug": "type4all", + "name": "Type4All", + "release_date": null, + "developers": [ + "AI4All" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "Apache Software License 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139586390" + ], + "created_at": "2026-07-10T10:12:43.506298", + "updated_at": "2026-07-10T10:12:43.506298", + "url": "/v1/software/type4all" +} diff --git a/site/public/v1/software/typecho/index.json b/site/public/v1/software/typecho/index.json new file mode 100644 index 000000000000..f2f03533a698 --- /dev/null +++ b/site/public/v1/software/typecho/index.json @@ -0,0 +1,21 @@ +{ + "id": 10491, + "slug": "typecho", + "name": "Typecho", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "GNU General Public License, version 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10853099" + ], + "created_at": "2026-07-10T10:12:43.506298", + "updated_at": "2026-07-10T10:12:43.506298", + "url": "/v1/software/typecho" +} diff --git a/site/public/v1/software/typeeto/index.json b/site/public/v1/software/typeeto/index.json new file mode 100644 index 000000000000..aa090e2bd84c --- /dev/null +++ b/site/public/v1/software/typeeto/index.json @@ -0,0 +1,21 @@ +{ + "id": 10492, + "slug": "typeeto", + "name": "Typeeto", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "OS X Mavericks" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q21463712" + ], + "created_at": "2026-07-10T10:12:43.506298", + "updated_at": "2026-07-10T10:12:43.506298", + "url": "/v1/software/typeeto" +} diff --git a/site/public/v1/software/typelab-q138870803/index.json b/site/public/v1/software/typelab-q138870803/index.json new file mode 100644 index 000000000000..4564b35148a8 --- /dev/null +++ b/site/public/v1/software/typelab-q138870803/index.json @@ -0,0 +1,19 @@ +{ + "id": 10493, + "slug": "typelab-q138870803", + "name": "TypeLab", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138870803" + ], + "created_at": "2026-07-10T10:12:43.506298", + "updated_at": "2026-07-10T10:12:43.506298", + "url": "/v1/software/typelab-q138870803" +} diff --git a/site/public/v1/software/typelab/index.json b/site/public/v1/software/typelab/index.json new file mode 100644 index 000000000000..e4b39d92649c --- /dev/null +++ b/site/public/v1/software/typelab/index.json @@ -0,0 +1,19 @@ +{ + "id": 10494, + "slug": "typelab", + "name": "TypeLab", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138348061" + ], + "created_at": "2026-07-10T10:12:43.507293", + "updated_at": "2026-07-10T10:12:43.507293", + "url": "/v1/software/typelab" +} diff --git a/site/public/v1/software/typespeed/index.json b/site/public/v1/software/typespeed/index.json new file mode 100644 index 000000000000..d4d22a9215b0 --- /dev/null +++ b/site/public/v1/software/typespeed/index.json @@ -0,0 +1,19 @@ +{ + "id": 10495, + "slug": "typespeed", + "name": "typespeed", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63064967" + ], + "created_at": "2026-07-10T10:12:43.507293", + "updated_at": "2026-07-10T10:12:43.507293", + "url": "/v1/software/typespeed" +} diff --git a/site/public/v1/software/typestry/index.json b/site/public/v1/software/typestry/index.json new file mode 100644 index 000000000000..e1cfb26400d0 --- /dev/null +++ b/site/public/v1/software/typestry/index.json @@ -0,0 +1,19 @@ +{ + "id": 10496, + "slug": "typestry", + "name": "Typestry", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7860968" + ], + "created_at": "2026-07-10T10:12:43.508305", + "updated_at": "2026-07-10T10:12:43.508305", + "url": "/v1/software/typestry" +} diff --git a/site/public/v1/software/typhoon-2000/index.json b/site/public/v1/software/typhoon-2000/index.json new file mode 100644 index 000000000000..5971c8df93e7 --- /dev/null +++ b/site/public/v1/software/typhoon-2000/index.json @@ -0,0 +1,23 @@ +{ + "id": 10497, + "slug": "typhoon-2000", + "name": "Typhoon 2000", + "release_date": "1994-01-01", + "developers": [ + "NuEdge Development" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17142602" + ], + "created_at": "2026-07-10T10:12:43.508305", + "updated_at": "2026-07-10T10:12:43.508305", + "url": "/v1/software/typhoon-2000" +} diff --git a/site/public/v1/software/typical/index.json b/site/public/v1/software/typical/index.json new file mode 100644 index 000000000000..e7c6522ed950 --- /dev/null +++ b/site/public/v1/software/typical/index.json @@ -0,0 +1,19 @@ +{ + "id": 10498, + "slug": "typical", + "name": "Typical", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087752" + ], + "created_at": "2026-07-10T10:12:43.508305", + "updated_at": "2026-07-10T10:12:43.508305", + "url": "/v1/software/typical" +} diff --git a/site/public/v1/software/u-common-c/index.json b/site/public/v1/software/u-common-c/index.json new file mode 100644 index 000000000000..bd895e14c645 --- /dev/null +++ b/site/public/v1/software/u-common-c/index.json @@ -0,0 +1,19 @@ +{ + "id": 10500, + "slug": "u-common-c", + "name": "(u)Common C++", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76183901" + ], + "created_at": "2026-07-10T10:12:43.509356", + "updated_at": "2026-07-10T10:12:43.509356", + "url": "/v1/software/u-common-c" +} diff --git a/site/public/v1/software/u/index.json b/site/public/v1/software/u/index.json new file mode 100644 index 000000000000..b61c64db2170 --- /dev/null +++ b/site/public/v1/software/u/index.json @@ -0,0 +1,24 @@ +{ + "id": 10499, + "slug": "u", + "name": "U", + "release_date": null, + "developers": [ + "UKTV" + ], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22080128" + ], + "created_at": "2026-07-10T10:12:43.508305", + "updated_at": "2026-07-10T10:12:43.508305", + "url": "/v1/software/u" +} diff --git a/site/public/v1/software/uam-corpustool/index.json b/site/public/v1/software/uam-corpustool/index.json new file mode 100644 index 000000000000..55bb71e86c86 --- /dev/null +++ b/site/public/v1/software/uam-corpustool/index.json @@ -0,0 +1,19 @@ +{ + "id": 10501, + "slug": "uam-corpustool", + "name": "UAM CorpusTool", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084696" + ], + "created_at": "2026-07-10T10:12:43.509356", + "updated_at": "2026-07-10T10:12:43.509356", + "url": "/v1/software/uam-corpustool" +} diff --git a/site/public/v1/software/uam/index.json b/site/public/v1/software/uam/index.json new file mode 100644 index 000000000000..d9d205d5db84 --- /dev/null +++ b/site/public/v1/software/uam/index.json @@ -0,0 +1,19 @@ +{ + "id": 10502, + "slug": "uam", + "name": "uam", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975526" + ], + "created_at": "2026-07-10T10:12:43.510317", + "updated_at": "2026-07-10T10:12:43.510317", + "url": "/v1/software/uam" +} diff --git a/site/public/v1/software/ubasic/index.json b/site/public/v1/software/ubasic/index.json new file mode 100644 index 000000000000..fd4a9b70089e --- /dev/null +++ b/site/public/v1/software/ubasic/index.json @@ -0,0 +1,21 @@ +{ + "id": 10503, + "slug": "ubasic", + "name": "UBASIC", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4353796" + ], + "created_at": "2026-07-10T10:12:43.510317", + "updated_at": "2026-07-10T10:12:43.510317", + "url": "/v1/software/ubasic" +} diff --git a/site/public/v1/software/ubb-classic/index.json b/site/public/v1/software/ubb-classic/index.json new file mode 100644 index 000000000000..e1bc50408bcc --- /dev/null +++ b/site/public/v1/software/ubb-classic/index.json @@ -0,0 +1,19 @@ +{ + "id": 10504, + "slug": "ubb-classic", + "name": "UBB.classic", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4052113" + ], + "created_at": "2026-07-10T10:12:43.510317", + "updated_at": "2026-07-10T10:12:43.510317", + "url": "/v1/software/ubb-classic" +} diff --git a/site/public/v1/software/ubb-threads/index.json b/site/public/v1/software/ubb-threads/index.json new file mode 100644 index 000000000000..de48c3c4a88f --- /dev/null +++ b/site/public/v1/software/ubb-threads/index.json @@ -0,0 +1,19 @@ +{ + "id": 10505, + "slug": "ubb-threads", + "name": "UBB.threads", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7863797" + ], + "created_at": "2026-07-10T10:12:43.510317", + "updated_at": "2026-07-10T10:12:43.510317", + "url": "/v1/software/ubb-threads" +} diff --git a/site/public/v1/software/uber/index.json b/site/public/v1/software/uber/index.json new file mode 100644 index 000000000000..6e5e72e4c3f0 --- /dev/null +++ b/site/public/v1/software/uber/index.json @@ -0,0 +1,21 @@ +{ + "id": 10506, + "slug": "uber", + "name": "Uber", + "release_date": null, + "developers": [ + "Uber" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q780442" + ], + "created_at": "2026-07-10T10:12:43.511314", + "updated_at": "2026-07-10T10:12:43.511314", + "url": "/v1/software/uber" +} diff --git a/site/public/v1/software/ubergraph/index.json b/site/public/v1/software/ubergraph/index.json new file mode 100644 index 000000000000..21b0150a8c28 --- /dev/null +++ b/site/public/v1/software/ubergraph/index.json @@ -0,0 +1,21 @@ +{ + "id": 10507, + "slug": "ubergraph", + "name": "ubergraph", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "3-clause BSD License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117301068" + ], + "created_at": "2026-07-10T10:12:43.511314", + "updated_at": "2026-07-10T10:12:43.511314", + "url": "/v1/software/ubergraph" +} diff --git a/site/public/v1/software/ubersocial/index.json b/site/public/v1/software/ubersocial/index.json new file mode 100644 index 000000000000..1369e1bda24c --- /dev/null +++ b/site/public/v1/software/ubersocial/index.json @@ -0,0 +1,19 @@ +{ + "id": 10508, + "slug": "ubersocial", + "name": "UberSocial", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q12522901" + ], + "created_at": "2026-07-10T10:12:43.511314", + "updated_at": "2026-07-10T10:12:43.511314", + "url": "/v1/software/ubersocial" +} diff --git a/site/public/v1/software/ubertooth/index.json b/site/public/v1/software/ubertooth/index.json new file mode 100644 index 000000000000..42a25d772ff5 --- /dev/null +++ b/site/public/v1/software/ubertooth/index.json @@ -0,0 +1,19 @@ +{ + "id": 10509, + "slug": "ubertooth", + "name": "ubertooth", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975527" + ], + "created_at": "2026-07-10T10:12:43.512304", + "updated_at": "2026-07-10T10:12:43.512304", + "url": "/v1/software/ubertooth" +} diff --git a/site/public/v1/software/ubjson/index.json b/site/public/v1/software/ubjson/index.json new file mode 100644 index 000000000000..8007542c8bf3 --- /dev/null +++ b/site/public/v1/software/ubjson/index.json @@ -0,0 +1,19 @@ +{ + "id": 10510, + "slug": "ubjson", + "name": "UBJSON", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17144293" + ], + "created_at": "2026-07-10T10:12:43.512304", + "updated_at": "2026-07-10T10:12:43.512304", + "url": "/v1/software/ubjson" +} diff --git a/site/public/v1/software/ubot-studio/index.json b/site/public/v1/software/ubot-studio/index.json new file mode 100644 index 000000000000..b78c46f25812 --- /dev/null +++ b/site/public/v1/software/ubot-studio/index.json @@ -0,0 +1,19 @@ +{ + "id": 10511, + "slug": "ubot-studio", + "name": "UBot Studio", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17087883" + ], + "created_at": "2026-07-10T10:12:43.512304", + "updated_at": "2026-07-10T10:12:43.512304", + "url": "/v1/software/ubot-studio" +} diff --git a/site/public/v1/software/ubuntu-restricted-extras/index.json b/site/public/v1/software/ubuntu-restricted-extras/index.json new file mode 100644 index 000000000000..517ceb642e82 --- /dev/null +++ b/site/public/v1/software/ubuntu-restricted-extras/index.json @@ -0,0 +1,19 @@ +{ + "id": 10512, + "slug": "ubuntu-restricted-extras", + "name": "ubuntu-restricted-extras", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3234758" + ], + "created_at": "2026-07-10T10:12:43.513291", + "updated_at": "2026-07-10T10:12:43.513291", + "url": "/v1/software/ubuntu-restricted-extras" +} diff --git a/site/public/v1/software/ubuntu-tweak/index.json b/site/public/v1/software/ubuntu-tweak/index.json new file mode 100644 index 000000000000..6aa65eeda681 --- /dev/null +++ b/site/public/v1/software/ubuntu-tweak/index.json @@ -0,0 +1,21 @@ +{ + "id": 10513, + "slug": "ubuntu-tweak", + "name": "Ubuntu Tweak", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Python" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2145167" + ], + "created_at": "2026-07-10T10:12:43.513291", + "updated_at": "2026-07-10T10:12:43.513291", + "url": "/v1/software/ubuntu-tweak" +} diff --git a/site/public/v1/software/uc-browser/index.json b/site/public/v1/software/uc-browser/index.json new file mode 100644 index 000000000000..5519e9c3f348 --- /dev/null +++ b/site/public/v1/software/uc-browser/index.json @@ -0,0 +1,27 @@ +{ + "id": 10514, + "slug": "uc-browser", + "name": "UC Browser", + "release_date": "2004-08-01", + "developers": [ + "UCWeb" + ], + "publishers": [], + "operating_systems": [ + "Java virtual machine", + "iOS", + "Microsoft Windows" + ], + "programming_languages": [ + "Java" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2474765" + ], + "created_at": "2026-07-10T10:12:43.513291", + "updated_at": "2026-07-10T10:12:43.513291", + "url": "/v1/software/uc-browser" +} diff --git a/site/public/v1/software/uchardet/index.json b/site/public/v1/software/uchardet/index.json new file mode 100644 index 000000000000..32ab8c601729 --- /dev/null +++ b/site/public/v1/software/uchardet/index.json @@ -0,0 +1,21 @@ +{ + "id": 10515, + "slug": "uchardet", + "name": "uchardet", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Mozilla Public License, version 1.1" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975528" + ], + "created_at": "2026-07-10T10:12:43.514329", + "updated_at": "2026-07-10T10:12:43.514329", + "url": "/v1/software/uchardet" +} diff --git a/site/public/v1/software/ucinet/index.json b/site/public/v1/software/ucinet/index.json new file mode 100644 index 000000000000..a340fb53ab70 --- /dev/null +++ b/site/public/v1/software/ucinet/index.json @@ -0,0 +1,19 @@ +{ + "id": 10516, + "slug": "ucinet", + "name": "UCINET", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084698" + ], + "created_at": "2026-07-10T10:12:43.514329", + "updated_at": "2026-07-10T10:12:43.514329", + "url": "/v1/software/ucinet" +} diff --git a/site/public/v1/software/ucpp/index.json b/site/public/v1/software/ucpp/index.json new file mode 100644 index 000000000000..21b5cb0a30cb --- /dev/null +++ b/site/public/v1/software/ucpp/index.json @@ -0,0 +1,19 @@ +{ + "id": 10517, + "slug": "ucpp", + "name": "ucpp", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975530" + ], + "created_at": "2026-07-10T10:12:43.514329", + "updated_at": "2026-07-10T10:12:43.514329", + "url": "/v1/software/ucpp" +} diff --git a/site/public/v1/software/ucsc-xena/index.json b/site/public/v1/software/ucsc-xena/index.json new file mode 100644 index 000000000000..53cbaaec2ad6 --- /dev/null +++ b/site/public/v1/software/ucsc-xena/index.json @@ -0,0 +1,19 @@ +{ + "id": 10518, + "slug": "ucsc-xena", + "name": "UCSC Xena", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q54451859" + ], + "created_at": "2026-07-10T10:12:43.515313", + "updated_at": "2026-07-10T10:12:43.515313", + "url": "/v1/software/ucsc-xena" +} diff --git a/site/public/v1/software/ucsf-chimera/index.json b/site/public/v1/software/ucsf-chimera/index.json new file mode 100644 index 000000000000..43e4ee0a9daa --- /dev/null +++ b/site/public/v1/software/ucsf-chimera/index.json @@ -0,0 +1,21 @@ +{ + "id": 10519, + "slug": "ucsf-chimera", + "name": "UCSF Chimera", + "release_date": null, + "developers": [ + "University of California, San Francisco" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7864121" + ], + "created_at": "2026-07-10T10:12:43.515313", + "updated_at": "2026-07-10T10:12:43.515313", + "url": "/v1/software/ucsf-chimera" +} diff --git a/site/public/v1/software/udaanbill/index.json b/site/public/v1/software/udaanbill/index.json new file mode 100644 index 000000000000..cfcfaf0e416f --- /dev/null +++ b/site/public/v1/software/udaanbill/index.json @@ -0,0 +1,23 @@ +{ + "id": 10520, + "slug": "udaanbill", + "name": "UdaanBill", + "release_date": "2025-01-01", + "developers": [ + "UdaanBill" + ], + "publishers": [], + "operating_systems": [ + "web-based" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q133804745" + ], + "created_at": "2026-07-10T10:12:43.515313", + "updated_at": "2026-07-10T10:12:43.515313", + "url": "/v1/software/udaanbill" +} diff --git a/site/public/v1/software/udev-init-scripts/index.json b/site/public/v1/software/udev-init-scripts/index.json new file mode 100644 index 000000000000..eebe7831be90 --- /dev/null +++ b/site/public/v1/software/udev-init-scripts/index.json @@ -0,0 +1,19 @@ +{ + "id": 10521, + "slug": "udev-init-scripts", + "name": "udev-init-scripts", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975531" + ], + "created_at": "2026-07-10T10:12:43.516302", + "updated_at": "2026-07-10T10:12:43.516302", + "url": "/v1/software/udev-init-scripts" +} diff --git a/site/public/v1/software/udpipe-q126084699/index.json b/site/public/v1/software/udpipe-q126084699/index.json new file mode 100644 index 000000000000..f343a29a1c35 --- /dev/null +++ b/site/public/v1/software/udpipe-q126084699/index.json @@ -0,0 +1,19 @@ +{ + "id": 10522, + "slug": "udpipe-q126084699", + "name": "UDPipe", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084699" + ], + "created_at": "2026-07-10T10:12:43.516302", + "updated_at": "2026-07-10T10:12:43.516302", + "url": "/v1/software/udpipe-q126084699" +} diff --git a/site/public/v1/software/udpipe/index.json b/site/public/v1/software/udpipe/index.json new file mode 100644 index 000000000000..22cc1544868c --- /dev/null +++ b/site/public/v1/software/udpipe/index.json @@ -0,0 +1,21 @@ +{ + "id": 10523, + "slug": "udpipe", + "name": "UDPipe", + "release_date": null, + "developers": [ + "Jana Straková" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q57081471" + ], + "created_at": "2026-07-10T10:12:43.516875", + "updated_at": "2026-07-10T10:12:43.516875", + "url": "/v1/software/udpipe" +} diff --git a/site/public/v1/software/uefitool/index.json b/site/public/v1/software/uefitool/index.json new file mode 100644 index 000000000000..d2d35936e38e --- /dev/null +++ b/site/public/v1/software/uefitool/index.json @@ -0,0 +1,19 @@ +{ + "id": 10524, + "slug": "uefitool", + "name": "UEFITool", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108730229" + ], + "created_at": "2026-07-10T10:12:43.516875", + "updated_at": "2026-07-10T10:12:43.516875", + "url": "/v1/software/uefitool" +} diff --git a/site/public/v1/software/ufed/index.json b/site/public/v1/software/ufed/index.json new file mode 100644 index 000000000000..788a89f45670 --- /dev/null +++ b/site/public/v1/software/ufed/index.json @@ -0,0 +1,19 @@ +{ + "id": 10525, + "slug": "ufed", + "name": "ufed", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975532" + ], + "created_at": "2026-07-10T10:12:43.516875", + "updated_at": "2026-07-10T10:12:43.516875", + "url": "/v1/software/ufed" +} diff --git a/site/public/v1/software/uimx/index.json b/site/public/v1/software/uimx/index.json new file mode 100644 index 000000000000..b2d11db7ca16 --- /dev/null +++ b/site/public/v1/software/uimx/index.json @@ -0,0 +1,21 @@ +{ + "id": 10526, + "slug": "uimx", + "name": "UIMX", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Unix-like operating system" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7864712" + ], + "created_at": "2026-07-10T10:12:43.516875", + "updated_at": "2026-07-10T10:12:43.516875", + "url": "/v1/software/uimx" +} diff --git a/site/public/v1/software/ukraine-siren-alerts/index.json b/site/public/v1/software/ukraine-siren-alerts/index.json new file mode 100644 index 000000000000..01c091d292e9 --- /dev/null +++ b/site/public/v1/software/ukraine-siren-alerts/index.json @@ -0,0 +1,19 @@ +{ + "id": 10527, + "slug": "ukraine-siren-alerts", + "name": "Ukraine Siren Alerts", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111546255" + ], + "created_at": "2026-07-10T10:12:43.517958", + "updated_at": "2026-07-10T10:12:43.517958", + "url": "/v1/software/ukraine-siren-alerts" +} diff --git a/site/public/v1/software/ulead-photo-express/index.json b/site/public/v1/software/ulead-photo-express/index.json new file mode 100644 index 000000000000..dd6d36d83384 --- /dev/null +++ b/site/public/v1/software/ulead-photo-express/index.json @@ -0,0 +1,21 @@ +{ + "id": 10528, + "slug": "ulead-photo-express", + "name": "Ulead Photo Express", + "release_date": null, + "developers": [ + "Ulead Systems" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11074806" + ], + "created_at": "2026-07-10T10:12:43.517958", + "updated_at": "2026-07-10T10:12:43.517958", + "url": "/v1/software/ulead-photo-express" +} diff --git a/site/public/v1/software/ultamatix/index.json b/site/public/v1/software/ultamatix/index.json new file mode 100644 index 000000000000..4b8d9304c325 --- /dev/null +++ b/site/public/v1/software/ultamatix/index.json @@ -0,0 +1,21 @@ +{ + "id": 10529, + "slug": "ultamatix", + "name": "Ultamatix", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Python" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q949740" + ], + "created_at": "2026-07-10T10:12:43.518951", + "updated_at": "2026-07-10T10:12:43.518951", + "url": "/v1/software/ultamatix" +} diff --git a/site/public/v1/software/ultimate-boot-cd/index.json b/site/public/v1/software/ultimate-boot-cd/index.json new file mode 100644 index 000000000000..addb50c4307e --- /dev/null +++ b/site/public/v1/software/ultimate-boot-cd/index.json @@ -0,0 +1,19 @@ +{ + "id": 10530, + "slug": "ultimate-boot-cd", + "name": "Ultimate Boot CD", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7880135" + ], + "created_at": "2026-07-10T10:12:43.518951", + "updated_at": "2026-07-10T10:12:43.518951", + "url": "/v1/software/ultimate-boot-cd" +} diff --git a/site/public/v1/software/ultimate-othello/index.json b/site/public/v1/software/ultimate-othello/index.json new file mode 100644 index 000000000000..c19cb9d67fec --- /dev/null +++ b/site/public/v1/software/ultimate-othello/index.json @@ -0,0 +1,19 @@ +{ + "id": 10531, + "slug": "ultimate-othello", + "name": "Ultimate Othello", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110788308" + ], + "created_at": "2026-07-10T10:12:43.518951", + "updated_at": "2026-07-10T10:12:43.518951", + "url": "/v1/software/ultimate-othello" +} diff --git a/site/public/v1/software/ultimatedefrag/index.json b/site/public/v1/software/ultimatedefrag/index.json new file mode 100644 index 000000000000..e0d652100bad --- /dev/null +++ b/site/public/v1/software/ultimatedefrag/index.json @@ -0,0 +1,19 @@ +{ + "id": 10532, + "slug": "ultimatedefrag", + "name": "UltimateDefrag", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7880111" + ], + "created_at": "2026-07-10T10:12:43.519956", + "updated_at": "2026-07-10T10:12:43.519956", + "url": "/v1/software/ultimatedefrag" +} diff --git a/site/public/v1/software/ultiplot/index.json b/site/public/v1/software/ultiplot/index.json new file mode 100644 index 000000000000..ad52de62ff1f --- /dev/null +++ b/site/public/v1/software/ultiplot/index.json @@ -0,0 +1,19 @@ +{ + "id": 10533, + "slug": "ultiplot", + "name": "Ultiplot", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137592794" + ], + "created_at": "2026-07-10T10:12:43.519956", + "updated_at": "2026-07-10T10:12:43.519956", + "url": "/v1/software/ultiplot" +} diff --git a/site/public/v1/software/ultra-fractal/index.json b/site/public/v1/software/ultra-fractal/index.json new file mode 100644 index 000000000000..02bbe547b080 --- /dev/null +++ b/site/public/v1/software/ultra-fractal/index.json @@ -0,0 +1,19 @@ +{ + "id": 10534, + "slug": "ultra-fractal", + "name": "Ultra Fractal", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4052347" + ], + "created_at": "2026-07-10T10:12:43.519956", + "updated_at": "2026-07-10T10:12:43.519956", + "url": "/v1/software/ultra-fractal" +} diff --git a/site/public/v1/software/ultralingua/index.json b/site/public/v1/software/ultralingua/index.json new file mode 100644 index 000000000000..48fa2b34694b --- /dev/null +++ b/site/public/v1/software/ultralingua/index.json @@ -0,0 +1,19 @@ +{ + "id": 10535, + "slug": "ultralingua", + "name": "Ultralingua", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7880558" + ], + "created_at": "2026-07-10T10:12:43.520975", + "updated_at": "2026-07-10T10:12:43.520975", + "url": "/v1/software/ultralingua" +} diff --git a/site/public/v1/software/ultramon/index.json b/site/public/v1/software/ultramon/index.json new file mode 100644 index 000000000000..4c8113cdaaea --- /dev/null +++ b/site/public/v1/software/ultramon/index.json @@ -0,0 +1,21 @@ +{ + "id": 10536, + "slug": "ultramon", + "name": "UltraMon", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7880409" + ], + "created_at": "2026-07-10T10:12:43.520975", + "updated_at": "2026-07-10T10:12:43.520975", + "url": "/v1/software/ultramon" +} diff --git a/site/public/v1/software/ultrasurf/index.json b/site/public/v1/software/ultrasurf/index.json new file mode 100644 index 000000000000..30082357e7e2 --- /dev/null +++ b/site/public/v1/software/ultrasurf/index.json @@ -0,0 +1,23 @@ +{ + "id": 10537, + "slug": "ultrasurf", + "name": "Ultrasurf", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3139231" + ], + "created_at": "2026-07-10T10:12:43.520975", + "updated_at": "2026-07-10T10:12:43.520975", + "url": "/v1/software/ultrasurf" +} diff --git a/site/public/v1/software/umang/index.json b/site/public/v1/software/umang/index.json new file mode 100644 index 000000000000..037f665179eb --- /dev/null +++ b/site/public/v1/software/umang/index.json @@ -0,0 +1,19 @@ +{ + "id": 10538, + "slug": "umang", + "name": "UMANG", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q55636410" + ], + "created_at": "2026-07-10T10:12:43.520975", + "updated_at": "2026-07-10T10:12:43.521968", + "url": "/v1/software/umang" +} diff --git a/site/public/v1/software/umbel/index.json b/site/public/v1/software/umbel/index.json new file mode 100644 index 000000000000..335022fd784d --- /dev/null +++ b/site/public/v1/software/umbel/index.json @@ -0,0 +1,21 @@ +{ + "id": 10539, + "slug": "umbel", + "name": "UMBEL", + "release_date": "2008-07-16", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Creative Commons Attribution 3.0 Unported" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7865085" + ], + "created_at": "2026-07-10T10:12:43.521968", + "updated_at": "2026-07-10T10:12:43.521968", + "url": "/v1/software/umbel" +} diff --git a/site/public/v1/software/umdhmm-hidden-markov-model-toolkit/index.json b/site/public/v1/software/umdhmm-hidden-markov-model-toolkit/index.json new file mode 100644 index 000000000000..bd645e08b9c1 --- /dev/null +++ b/site/public/v1/software/umdhmm-hidden-markov-model-toolkit/index.json @@ -0,0 +1,19 @@ +{ + "id": 10540, + "slug": "umdhmm-hidden-markov-model-toolkit", + "name": "UMDHMM: Hidden Markov Model Toolkit", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087753" + ], + "created_at": "2026-07-10T10:12:43.521968", + "updated_at": "2026-07-10T10:12:43.521968", + "url": "/v1/software/umdhmm-hidden-markov-model-toolkit" +} diff --git a/site/public/v1/software/umigon/index.json b/site/public/v1/software/umigon/index.json new file mode 100644 index 000000000000..dda29fdad8d7 --- /dev/null +++ b/site/public/v1/software/umigon/index.json @@ -0,0 +1,19 @@ +{ + "id": 10541, + "slug": "umigon", + "name": "Umigon", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087754" + ], + "created_at": "2026-07-10T10:12:43.522975", + "updated_at": "2026-07-10T10:12:43.522975", + "url": "/v1/software/umigon" +} diff --git a/site/public/v1/software/umlaut-resolver/index.json b/site/public/v1/software/umlaut-resolver/index.json new file mode 100644 index 000000000000..fc9c33a7b287 --- /dev/null +++ b/site/public/v1/software/umlaut-resolver/index.json @@ -0,0 +1,19 @@ +{ + "id": 10542, + "slug": "umlaut-resolver", + "name": "Umlaut resolver", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17076768" + ], + "created_at": "2026-07-10T10:12:43.522975", + "updated_at": "2026-07-10T10:12:43.522975", + "url": "/v1/software/umlaut-resolver" +} diff --git a/site/public/v1/software/umodel/index.json b/site/public/v1/software/umodel/index.json new file mode 100644 index 000000000000..41e4606f5bd1 --- /dev/null +++ b/site/public/v1/software/umodel/index.json @@ -0,0 +1,21 @@ +{ + "id": 10543, + "slug": "umodel", + "name": "UModel", + "release_date": null, + "developers": [ + "Altova" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7865175" + ], + "created_at": "2026-07-10T10:12:43.522975", + "updated_at": "2026-07-10T10:12:43.522975", + "url": "/v1/software/umodel" +} diff --git a/site/public/v1/software/uncertainty-wizard/index.json b/site/public/v1/software/uncertainty-wizard/index.json new file mode 100644 index 000000000000..4100bbcc396d --- /dev/null +++ b/site/public/v1/software/uncertainty-wizard/index.json @@ -0,0 +1,21 @@ +{ + "id": 10544, + "slug": "uncertainty-wizard", + "name": "uncertainty-wizard", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127485425" + ], + "created_at": "2026-07-10T10:12:43.522975", + "updated_at": "2026-07-10T10:12:43.522975", + "url": "/v1/software/uncertainty-wizard" +} diff --git a/site/public/v1/software/uncrustify/index.json b/site/public/v1/software/uncrustify/index.json new file mode 100644 index 000000000000..470f4f8366e2 --- /dev/null +++ b/site/public/v1/software/uncrustify/index.json @@ -0,0 +1,19 @@ +{ + "id": 10545, + "slug": "uncrustify", + "name": "uncrustify", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975533" + ], + "created_at": "2026-07-10T10:12:43.523980", + "updated_at": "2026-07-10T10:12:43.523980", + "url": "/v1/software/uncrustify" +} diff --git a/site/public/v1/software/underpriced-app/index.json b/site/public/v1/software/underpriced-app/index.json new file mode 100644 index 000000000000..c7fbba070092 --- /dev/null +++ b/site/public/v1/software/underpriced-app/index.json @@ -0,0 +1,21 @@ +{ + "id": 10546, + "slug": "underpriced-app", + "name": "underpriced.app", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "iOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138861172" + ], + "created_at": "2026-07-10T10:12:43.523980", + "updated_at": "2026-07-10T10:12:43.523980", + "url": "/v1/software/underpriced-app" +} diff --git a/site/public/v1/software/undetectable-ai/index.json b/site/public/v1/software/undetectable-ai/index.json new file mode 100644 index 000000000000..59a99c1bd567 --- /dev/null +++ b/site/public/v1/software/undetectable-ai/index.json @@ -0,0 +1,19 @@ +{ + "id": 10547, + "slug": "undetectable-ai", + "name": "Undetectable.ai", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125017662" + ], + "created_at": "2026-07-10T10:12:43.524945", + "updated_at": "2026-07-10T10:12:43.524945", + "url": "/v1/software/undetectable-ai" +} diff --git a/site/public/v1/software/unfold/index.json b/site/public/v1/software/unfold/index.json new file mode 100644 index 000000000000..5163ae268716 --- /dev/null +++ b/site/public/v1/software/unfold/index.json @@ -0,0 +1,19 @@ +{ + "id": 10548, + "slug": "unfold", + "name": "Unfold", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124328631" + ], + "created_at": "2026-07-10T10:12:43.524945", + "updated_at": "2026-07-10T10:12:43.524945", + "url": "/v1/software/unfold" +} diff --git a/site/public/v1/software/unfollow-everything/index.json b/site/public/v1/software/unfollow-everything/index.json new file mode 100644 index 000000000000..eb51f57909e6 --- /dev/null +++ b/site/public/v1/software/unfollow-everything/index.json @@ -0,0 +1,19 @@ +{ + "id": 10549, + "slug": "unfollow-everything", + "name": "Unfollow Everything", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109236284" + ], + "created_at": "2026-07-10T10:12:43.524945", + "updated_at": "2026-07-10T10:12:43.524945", + "url": "/v1/software/unfollow-everything" +} diff --git a/site/public/v1/software/uni2ascii/index.json b/site/public/v1/software/uni2ascii/index.json new file mode 100644 index 000000000000..61e67310fbdb --- /dev/null +++ b/site/public/v1/software/uni2ascii/index.json @@ -0,0 +1,19 @@ +{ + "id": 10550, + "slug": "uni2ascii", + "name": "uni2ascii", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110473466" + ], + "created_at": "2026-07-10T10:12:43.525886", + "updated_at": "2026-07-10T10:12:43.525886", + "url": "/v1/software/uni2ascii" +} diff --git a/site/public/v1/software/unicluster/index.json b/site/public/v1/software/unicluster/index.json new file mode 100644 index 000000000000..51013f484e5a --- /dev/null +++ b/site/public/v1/software/unicluster/index.json @@ -0,0 +1,21 @@ +{ + "id": 10551, + "slug": "unicluster", + "name": "UniCluster", + "release_date": null, + "developers": [ + "Univa" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7884634" + ], + "created_at": "2026-07-10T10:12:43.525886", + "updated_at": "2026-07-10T10:12:43.525886", + "url": "/v1/software/unicluster" +} diff --git a/site/public/v1/software/unicon/index.json b/site/public/v1/software/unicon/index.json new file mode 100644 index 000000000000..84642449bbc0 --- /dev/null +++ b/site/public/v1/software/unicon/index.json @@ -0,0 +1,19 @@ +{ + "id": 10552, + "slug": "unicon", + "name": "UNICON", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087755" + ], + "created_at": "2026-07-10T10:12:43.525886", + "updated_at": "2026-07-10T10:12:43.525886", + "url": "/v1/software/unicon" +} diff --git a/site/public/v1/software/unicorn-q126087756/index.json b/site/public/v1/software/unicorn-q126087756/index.json new file mode 100644 index 000000000000..32c525682980 --- /dev/null +++ b/site/public/v1/software/unicorn-q126087756/index.json @@ -0,0 +1,19 @@ +{ + "id": 10553, + "slug": "unicorn-q126087756", + "name": "UNICORN", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087756" + ], + "created_at": "2026-07-10T10:12:43.526884", + "updated_at": "2026-07-10T10:12:43.526884", + "url": "/v1/software/unicorn-q126087756" +} diff --git a/site/public/v1/software/unicorn/index.json b/site/public/v1/software/unicorn/index.json new file mode 100644 index 000000000000..f127d0ef512f --- /dev/null +++ b/site/public/v1/software/unicorn/index.json @@ -0,0 +1,19 @@ +{ + "id": 10554, + "slug": "unicorn", + "name": "Unicorn", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6156050" + ], + "created_at": "2026-07-10T10:12:43.526884", + "updated_at": "2026-07-10T10:12:43.526884", + "url": "/v1/software/unicorn" +} diff --git a/site/public/v1/software/unifdef/index.json b/site/public/v1/software/unifdef/index.json new file mode 100644 index 000000000000..3db2d992650a --- /dev/null +++ b/site/public/v1/software/unifdef/index.json @@ -0,0 +1,19 @@ +{ + "id": 10555, + "slug": "unifdef", + "name": "unifdef", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110473525" + ], + "created_at": "2026-07-10T10:12:43.526884", + "updated_at": "2026-07-10T10:12:43.526884", + "url": "/v1/software/unifdef" +} diff --git a/site/public/v1/software/unified-code-count/index.json b/site/public/v1/software/unified-code-count/index.json new file mode 100644 index 000000000000..eb7f87640505 --- /dev/null +++ b/site/public/v1/software/unified-code-count/index.json @@ -0,0 +1,19 @@ +{ + "id": 10556, + "slug": "unified-code-count", + "name": "Unified Code Count", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7884912" + ], + "created_at": "2026-07-10T10:12:43.527887", + "updated_at": "2026-07-10T10:12:43.527887", + "url": "/v1/software/unified-code-count" +} diff --git a/site/public/v1/software/unified-inference-frontend/index.json b/site/public/v1/software/unified-inference-frontend/index.json new file mode 100644 index 000000000000..ceebd8b2dcb7 --- /dev/null +++ b/site/public/v1/software/unified-inference-frontend/index.json @@ -0,0 +1,19 @@ +{ + "id": 10557, + "slug": "unified-inference-frontend", + "name": "Unified Inference Frontend", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117006684" + ], + "created_at": "2026-07-10T10:12:43.527887", + "updated_at": "2026-07-10T10:12:43.527887", + "url": "/v1/software/unified-inference-frontend" +} diff --git a/site/public/v1/software/unified-remote/index.json b/site/public/v1/software/unified-remote/index.json new file mode 100644 index 000000000000..355552a95467 --- /dev/null +++ b/site/public/v1/software/unified-remote/index.json @@ -0,0 +1,19 @@ +{ + "id": 10558, + "slug": "unified-remote", + "name": "Unified Remote", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q19881614" + ], + "created_at": "2026-07-10T10:12:43.527887", + "updated_at": "2026-07-10T10:12:43.527887", + "url": "/v1/software/unified-remote" +} diff --git a/site/public/v1/software/unified-victim-identification-system/index.json b/site/public/v1/software/unified-victim-identification-system/index.json new file mode 100644 index 000000000000..07d189e6b476 --- /dev/null +++ b/site/public/v1/software/unified-victim-identification-system/index.json @@ -0,0 +1,21 @@ +{ + "id": 10559, + "slug": "unified-victim-identification-system", + "name": "Unified Victim Identification System", + "release_date": null, + "developers": [ + "Office of Chief Medical Examiner of the City of New York" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7884970" + ], + "created_at": "2026-07-10T10:12:43.528886", + "updated_at": "2026-07-10T10:12:43.528886", + "url": "/v1/software/unified-victim-identification-system" +} diff --git a/site/public/v1/software/unigine-heaven/index.json b/site/public/v1/software/unigine-heaven/index.json new file mode 100644 index 000000000000..2b82855e865d --- /dev/null +++ b/site/public/v1/software/unigine-heaven/index.json @@ -0,0 +1,21 @@ +{ + "id": 10560, + "slug": "unigine-heaven", + "name": "Unigine Heaven", + "release_date": null, + "developers": [ + "Unigine Company" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4040502" + ], + "created_at": "2026-07-10T10:12:43.528886", + "updated_at": "2026-07-10T10:12:43.528886", + "url": "/v1/software/unigine-heaven" +} diff --git a/site/public/v1/software/unionfs-fuse/index.json b/site/public/v1/software/unionfs-fuse/index.json new file mode 100644 index 000000000000..db5b962c59cc --- /dev/null +++ b/site/public/v1/software/unionfs-fuse/index.json @@ -0,0 +1,19 @@ +{ + "id": 10561, + "slug": "unionfs-fuse", + "name": "unionfs-fuse", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975534" + ], + "created_at": "2026-07-10T10:12:43.528886", + "updated_at": "2026-07-10T10:12:43.528886", + "url": "/v1/software/unionfs-fuse" +} diff --git a/site/public/v1/software/unipept/index.json b/site/public/v1/software/unipept/index.json new file mode 100644 index 000000000000..fbad722547fd --- /dev/null +++ b/site/public/v1/software/unipept/index.json @@ -0,0 +1,24 @@ +{ + "id": 10562, + "slug": "unipept", + "name": "Unipept", + "release_date": null, + "developers": [ + "Bart Mesuere", + "Ghent University" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22673960" + ], + "created_at": "2026-07-10T10:12:43.528886", + "updated_at": "2026-07-10T10:12:43.528886", + "url": "/v1/software/unipept" +} diff --git a/site/public/v1/software/unisight-cdp/index.json b/site/public/v1/software/unisight-cdp/index.json new file mode 100644 index 000000000000..016c7c5b618b --- /dev/null +++ b/site/public/v1/software/unisight-cdp/index.json @@ -0,0 +1,19 @@ +{ + "id": 10563, + "slug": "unisight-cdp", + "name": "UniSight CDP", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139338113" + ], + "created_at": "2026-07-10T10:12:43.529882", + "updated_at": "2026-07-10T10:12:43.529882", + "url": "/v1/software/unisight-cdp" +} diff --git a/site/public/v1/software/unison-q25206935/index.json b/site/public/v1/software/unison-q25206935/index.json new file mode 100644 index 000000000000..40ee2aac56f0 --- /dev/null +++ b/site/public/v1/software/unison-q25206935/index.json @@ -0,0 +1,21 @@ +{ + "id": 10564, + "slug": "unison-q25206935", + "name": "UNISoN", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Apache License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25206935" + ], + "created_at": "2026-07-10T10:12:43.529882", + "updated_at": "2026-07-10T10:12:43.529882", + "url": "/v1/software/unison-q25206935" +} diff --git a/site/public/v1/software/unison-q7887023/index.json b/site/public/v1/software/unison-q7887023/index.json new file mode 100644 index 000000000000..2acba5207039 --- /dev/null +++ b/site/public/v1/software/unison-q7887023/index.json @@ -0,0 +1,19 @@ +{ + "id": 10565, + "slug": "unison-q7887023", + "name": "Unison", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7887023" + ], + "created_at": "2026-07-10T10:12:43.530883", + "updated_at": "2026-07-10T10:12:43.530883", + "url": "/v1/software/unison-q7887023" +} diff --git a/site/public/v1/software/unison/index.json b/site/public/v1/software/unison/index.json new file mode 100644 index 000000000000..27ffd1c7afbd --- /dev/null +++ b/site/public/v1/software/unison/index.json @@ -0,0 +1,23 @@ +{ + "id": 10566, + "slug": "unison", + "name": "Unison", + "release_date": null, + "developers": [ + "Panic" + ], + "publishers": [], + "operating_systems": [ + "macOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7887022" + ], + "created_at": "2026-07-10T10:12:43.530883", + "updated_at": "2026-07-10T10:12:43.530883", + "url": "/v1/software/unison" +} diff --git a/site/public/v1/software/unispim-pinyin/index.json b/site/public/v1/software/unispim-pinyin/index.json new file mode 100644 index 000000000000..2bd5bd97878f --- /dev/null +++ b/site/public/v1/software/unispim-pinyin/index.json @@ -0,0 +1,19 @@ +{ + "id": 10567, + "slug": "unispim-pinyin", + "name": "Unispim Pinyin", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q15912194" + ], + "created_at": "2026-07-10T10:12:43.531883", + "updated_at": "2026-07-10T10:12:43.531883", + "url": "/v1/software/unispim-pinyin" +} diff --git a/site/public/v1/software/unistat/index.json b/site/public/v1/software/unistat/index.json new file mode 100644 index 000000000000..9fec9bf709e8 --- /dev/null +++ b/site/public/v1/software/unistat/index.json @@ -0,0 +1,19 @@ +{ + "id": 10568, + "slug": "unistat", + "name": "Unistat", + "release_date": "1984-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4258791" + ], + "created_at": "2026-07-10T10:12:43.531883", + "updated_at": "2026-07-10T10:12:43.531883", + "url": "/v1/software/unistat" +} diff --git a/site/public/v1/software/unit-convert-now/index.json b/site/public/v1/software/unit-convert-now/index.json new file mode 100644 index 000000000000..d5c7172654de --- /dev/null +++ b/site/public/v1/software/unit-convert-now/index.json @@ -0,0 +1,32 @@ +{ + "id": 10569, + "slug": "unit-convert-now", + "name": "Unit Convert Now", + "release_date": null, + "developers": [ + "software developer" + ], + "publishers": [], + "operating_systems": [ + "web browser" + ], + "programming_languages": [ + "HTML", + "Cascading Style Sheets", + "React", + "Next.js" + ], + "licenses": [ + "freeware" + ], + "genres": [ + "utility software" + ], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135900038" + ], + "created_at": "2026-07-10T10:12:43.531883", + "updated_at": "2026-07-10T10:12:43.531883", + "url": "/v1/software/unit-convert-now" +} diff --git a/site/public/v1/software/univa-grid-engine/index.json b/site/public/v1/software/univa-grid-engine/index.json new file mode 100644 index 000000000000..6c534edb9776 --- /dev/null +++ b/site/public/v1/software/univa-grid-engine/index.json @@ -0,0 +1,23 @@ +{ + "id": 10570, + "slug": "univa-grid-engine", + "name": "Univa Grid Engine", + "release_date": null, + "developers": [ + "Univa" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Sun Industry Standards Source License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7893846" + ], + "created_at": "2026-07-10T10:12:43.531883", + "updated_at": "2026-07-10T10:12:43.531883", + "url": "/v1/software/univa-grid-engine" +} diff --git a/site/public/v1/software/universal-document-converter/index.json b/site/public/v1/software/universal-document-converter/index.json new file mode 100644 index 000000000000..d911dd9efab0 --- /dev/null +++ b/site/public/v1/software/universal-document-converter/index.json @@ -0,0 +1,21 @@ +{ + "id": 10571, + "slug": "universal-document-converter", + "name": "Universal Document Converter", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q19788551" + ], + "created_at": "2026-07-10T10:12:43.531883", + "updated_at": "2026-07-10T10:12:43.531883", + "url": "/v1/software/universal-document-converter" +} diff --git a/site/public/v1/software/universal-usb-installer/index.json b/site/public/v1/software/universal-usb-installer/index.json new file mode 100644 index 000000000000..c570a7f7f4a5 --- /dev/null +++ b/site/public/v1/software/universal-usb-installer/index.json @@ -0,0 +1,19 @@ +{ + "id": 10572, + "slug": "universal-usb-installer", + "name": "Universal USB Installer", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2577769" + ], + "created_at": "2026-07-10T10:12:43.532887", + "updated_at": "2026-07-10T10:12:43.532887", + "url": "/v1/software/universal-usb-installer" +} diff --git a/site/public/v1/software/universalindentgui/index.json b/site/public/v1/software/universalindentgui/index.json new file mode 100644 index 000000000000..1fedb328844b --- /dev/null +++ b/site/public/v1/software/universalindentgui/index.json @@ -0,0 +1,19 @@ +{ + "id": 10573, + "slug": "universalindentgui", + "name": "UniversalIndentGUI", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110788296" + ], + "created_at": "2026-07-10T10:12:43.532887", + "updated_at": "2026-07-10T10:12:43.532887", + "url": "/v1/software/universalindentgui" +} diff --git a/site/public/v1/software/universitas-xxi/index.json b/site/public/v1/software/universitas-xxi/index.json new file mode 100644 index 000000000000..c452a6a26e03 --- /dev/null +++ b/site/public/v1/software/universitas-xxi/index.json @@ -0,0 +1,19 @@ +{ + "id": 10574, + "slug": "universitas-xxi", + "name": "Universitas XXI", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123161836" + ], + "created_at": "2026-07-10T10:12:43.533886", + "updated_at": "2026-07-10T10:12:43.533886", + "url": "/v1/software/universitas-xxi" +} diff --git a/site/public/v1/software/universoft/index.json b/site/public/v1/software/universoft/index.json new file mode 100644 index 000000000000..90747793cb31 --- /dev/null +++ b/site/public/v1/software/universoft/index.json @@ -0,0 +1,19 @@ +{ + "id": 10575, + "slug": "universoft", + "name": "universoft", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139610562" + ], + "created_at": "2026-07-10T10:12:43.533886", + "updated_at": "2026-07-10T10:12:43.533886", + "url": "/v1/software/universoft" +} diff --git a/site/public/v1/software/unix-amiga-delitracker-emulator/index.json b/site/public/v1/software/unix-amiga-delitracker-emulator/index.json new file mode 100644 index 000000000000..2668b75cf52d --- /dev/null +++ b/site/public/v1/software/unix-amiga-delitracker-emulator/index.json @@ -0,0 +1,21 @@ +{ + "id": 10576, + "slug": "unix-amiga-delitracker-emulator", + "name": "Unix Amiga Delitracker Emulator", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "GNU General Public License, version 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18752611" + ], + "created_at": "2026-07-10T10:12:43.533886", + "updated_at": "2026-07-10T10:12:43.533886", + "url": "/v1/software/unix-amiga-delitracker-emulator" +} diff --git a/site/public/v1/software/unixtimestamp/index.json b/site/public/v1/software/unixtimestamp/index.json new file mode 100644 index 000000000000..d805f37ec423 --- /dev/null +++ b/site/public/v1/software/unixtimestamp/index.json @@ -0,0 +1,19 @@ +{ + "id": 10577, + "slug": "unixtimestamp", + "name": "UnixTimestamp", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140051844" + ], + "created_at": "2026-07-10T10:12:43.534886", + "updated_at": "2026-07-10T10:12:43.534886", + "url": "/v1/software/unixtimestamp" +} diff --git a/site/public/v1/software/unleash-the-power-of-metastock/index.json b/site/public/v1/software/unleash-the-power-of-metastock/index.json new file mode 100644 index 000000000000..aa69b50db9e8 --- /dev/null +++ b/site/public/v1/software/unleash-the-power-of-metastock/index.json @@ -0,0 +1,21 @@ +{ + "id": 10578, + "slug": "unleash-the-power-of-metastock", + "name": "Unleash the Power of MetaStock", + "release_date": null, + "developers": [ + "MetaStock" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28316561" + ], + "created_at": "2026-07-10T10:12:43.534886", + "updated_at": "2026-07-10T10:12:43.534886", + "url": "/v1/software/unleash-the-power-of-metastock" +} diff --git a/site/public/v1/software/unlocalized-software/index.json b/site/public/v1/software/unlocalized-software/index.json new file mode 100644 index 000000000000..a5ae55a8adbe --- /dev/null +++ b/site/public/v1/software/unlocalized-software/index.json @@ -0,0 +1,19 @@ +{ + "id": 10579, + "slug": "unlocalized-software", + "name": "unlocalized software", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136499240" + ], + "created_at": "2026-07-10T10:12:43.534886", + "updated_at": "2026-07-10T10:12:43.534886", + "url": "/v1/software/unlocalized-software" +} diff --git a/site/public/v1/software/unlock-text/index.json b/site/public/v1/software/unlock-text/index.json new file mode 100644 index 000000000000..a15003c6dd22 --- /dev/null +++ b/site/public/v1/software/unlock-text/index.json @@ -0,0 +1,19 @@ +{ + "id": 10580, + "slug": "unlock-text", + "name": "Unlock Text", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087757" + ], + "created_at": "2026-07-10T10:12:43.535886", + "updated_at": "2026-07-10T10:12:43.535886", + "url": "/v1/software/unlock-text" +} diff --git a/site/public/v1/software/unmute/index.json b/site/public/v1/software/unmute/index.json new file mode 100644 index 000000000000..7fb855bae58a --- /dev/null +++ b/site/public/v1/software/unmute/index.json @@ -0,0 +1,21 @@ +{ + "id": 10581, + "slug": "unmute", + "name": "Unmute", + "release_date": "2015-11-01", + "developers": [], + "publishers": [], + "operating_systems": [ + "iOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q26964812" + ], + "created_at": "2026-07-10T10:12:43.535886", + "updated_at": "2026-07-10T10:12:43.535886", + "url": "/v1/software/unmute" +} diff --git a/site/public/v1/software/uno/index.json b/site/public/v1/software/uno/index.json new file mode 100644 index 000000000000..90079113fd8e --- /dev/null +++ b/site/public/v1/software/uno/index.json @@ -0,0 +1,21 @@ +{ + "id": 10582, + "slug": "uno", + "name": "Uno", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Apache Software License 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60774063" + ], + "created_at": "2026-07-10T10:12:43.535886", + "updated_at": "2026-07-10T10:12:43.535886", + "url": "/v1/software/uno" +} diff --git a/site/public/v1/software/unoconv/index.json b/site/public/v1/software/unoconv/index.json new file mode 100644 index 000000000000..5e2d9e180aba --- /dev/null +++ b/site/public/v1/software/unoconv/index.json @@ -0,0 +1,19 @@ +{ + "id": 10583, + "slug": "unoconv", + "name": "unoconv", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975535" + ], + "created_at": "2026-07-10T10:12:43.536885", + "updated_at": "2026-07-10T10:12:43.536885", + "url": "/v1/software/unoconv" +} diff --git a/site/public/v1/software/unomi/index.json b/site/public/v1/software/unomi/index.json new file mode 100644 index 000000000000..1bf7b15bb609 --- /dev/null +++ b/site/public/v1/software/unomi/index.json @@ -0,0 +1,21 @@ +{ + "id": 10584, + "slug": "unomi", + "name": "UNOMI", + "release_date": null, + "developers": [ + "Cogneto Development Inc." + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140121650" + ], + "created_at": "2026-07-10T10:12:43.536885", + "updated_at": "2026-07-10T10:12:43.536885", + "url": "/v1/software/unomi" +} diff --git a/site/public/v1/software/unreal-editor-for-fortnite/index.json b/site/public/v1/software/unreal-editor-for-fortnite/index.json new file mode 100644 index 000000000000..2124429823a8 --- /dev/null +++ b/site/public/v1/software/unreal-editor-for-fortnite/index.json @@ -0,0 +1,19 @@ +{ + "id": 10585, + "slug": "unreal-editor-for-fortnite", + "name": "Unreal Editor for Fortnite", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127868162" + ], + "created_at": "2026-07-10T10:12:43.536885", + "updated_at": "2026-07-10T10:12:43.536885", + "url": "/v1/software/unreal-editor-for-fortnite" +} diff --git a/site/public/v1/software/unreal-media-server/index.json b/site/public/v1/software/unreal-media-server/index.json new file mode 100644 index 000000000000..9efa74c5abad --- /dev/null +++ b/site/public/v1/software/unreal-media-server/index.json @@ -0,0 +1,19 @@ +{ + "id": 10586, + "slug": "unreal-media-server", + "name": "Unreal Media Server", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7897342" + ], + "created_at": "2026-07-10T10:12:43.537885", + "updated_at": "2026-07-10T10:12:43.537885", + "url": "/v1/software/unreal-media-server" +} diff --git a/site/public/v1/software/unreal-x-editor/index.json b/site/public/v1/software/unreal-x-editor/index.json new file mode 100644 index 000000000000..b7a9eea1a603 --- /dev/null +++ b/site/public/v1/software/unreal-x-editor/index.json @@ -0,0 +1,19 @@ +{ + "id": 10587, + "slug": "unreal-x-editor", + "name": "Unreal X-Editor", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7897347" + ], + "created_at": "2026-07-10T10:12:43.537885", + "updated_at": "2026-07-10T10:12:43.537885", + "url": "/v1/software/unreal-x-editor" +} diff --git a/site/public/v1/software/unrpa/index.json b/site/public/v1/software/unrpa/index.json new file mode 100644 index 000000000000..10c36dc88758 --- /dev/null +++ b/site/public/v1/software/unrpa/index.json @@ -0,0 +1,19 @@ +{ + "id": 10588, + "slug": "unrpa", + "name": "unrpa", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975537" + ], + "created_at": "2026-07-10T10:12:43.537885", + "updated_at": "2026-07-10T10:12:43.537885", + "url": "/v1/software/unrpa" +} diff --git a/site/public/v1/software/unstoppable-copier/index.json b/site/public/v1/software/unstoppable-copier/index.json new file mode 100644 index 000000000000..2ec70d604f45 --- /dev/null +++ b/site/public/v1/software/unstoppable-copier/index.json @@ -0,0 +1,21 @@ +{ + "id": 10589, + "slug": "unstoppable-copier", + "name": "Unstoppable Copier", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Windows 7" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q9366853" + ], + "created_at": "2026-07-10T10:12:43.538885", + "updated_at": "2026-07-10T10:12:43.538885", + "url": "/v1/software/unstoppable-copier" +} diff --git a/site/public/v1/software/unsub/index.json b/site/public/v1/software/unsub/index.json new file mode 100644 index 000000000000..cd12ed25926c --- /dev/null +++ b/site/public/v1/software/unsub/index.json @@ -0,0 +1,23 @@ +{ + "id": 10590, + "slug": "unsub", + "name": "Unsub", + "release_date": null, + "developers": [ + "OurResearch" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q97147796" + ], + "created_at": "2026-07-10T10:12:43.538885", + "updated_at": "2026-07-10T10:12:43.538885", + "url": "/v1/software/unsub" +} diff --git a/site/public/v1/software/upack/index.json b/site/public/v1/software/upack/index.json new file mode 100644 index 000000000000..51d24eb15846 --- /dev/null +++ b/site/public/v1/software/upack/index.json @@ -0,0 +1,19 @@ +{ + "id": 10591, + "slug": "upack", + "name": "Upack", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2499586" + ], + "created_at": "2026-07-10T10:12:43.538885", + "updated_at": "2026-07-10T10:12:43.538885", + "url": "/v1/software/upack" +} diff --git a/site/public/v1/software/updatedd/index.json b/site/public/v1/software/updatedd/index.json new file mode 100644 index 000000000000..16b04eddef43 --- /dev/null +++ b/site/public/v1/software/updatedd/index.json @@ -0,0 +1,19 @@ +{ + "id": 10592, + "slug": "updatedd", + "name": "updatedd", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065574" + ], + "created_at": "2026-07-10T10:12:43.539886", + "updated_at": "2026-07-10T10:12:43.539886", + "url": "/v1/software/updatedd" +} diff --git a/site/public/v1/software/updatestar/index.json b/site/public/v1/software/updatestar/index.json new file mode 100644 index 000000000000..00e30af0b0a5 --- /dev/null +++ b/site/public/v1/software/updatestar/index.json @@ -0,0 +1,19 @@ +{ + "id": 10593, + "slug": "updatestar", + "name": "UpdateStar", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7898217" + ], + "created_at": "2026-07-10T10:12:43.539886", + "updated_at": "2026-07-10T10:12:43.539886", + "url": "/v1/software/updatestar" +} diff --git a/site/public/v1/software/uplifty/index.json b/site/public/v1/software/uplifty/index.json new file mode 100644 index 000000000000..13c4c9b39d86 --- /dev/null +++ b/site/public/v1/software/uplifty/index.json @@ -0,0 +1,19 @@ +{ + "id": 10594, + "slug": "uplifty", + "name": "Uplifty", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139972748" + ], + "created_at": "2026-07-10T10:12:43.539886", + "updated_at": "2026-07-10T10:12:43.539886", + "url": "/v1/software/uplifty" +} diff --git a/site/public/v1/software/uploadftp/index.json b/site/public/v1/software/uploadftp/index.json new file mode 100644 index 000000000000..bb04c3410822 --- /dev/null +++ b/site/public/v1/software/uploadftp/index.json @@ -0,0 +1,19 @@ +{ + "id": 10595, + "slug": "uploadftp", + "name": "UploadFTP", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7898382" + ], + "created_at": "2026-07-10T10:12:43.540885", + "updated_at": "2026-07-10T10:12:43.540885", + "url": "/v1/software/uploadftp" +} diff --git a/site/public/v1/software/uppaal-model-checker/index.json b/site/public/v1/software/uppaal-model-checker/index.json new file mode 100644 index 000000000000..902bbb2a852e --- /dev/null +++ b/site/public/v1/software/uppaal-model-checker/index.json @@ -0,0 +1,21 @@ +{ + "id": 10596, + "slug": "uppaal-model-checker", + "name": "Uppaal Model Checker", + "release_date": null, + "developers": [ + "Uppsala University" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7898420" + ], + "created_at": "2026-07-10T10:12:43.540885", + "updated_at": "2026-07-10T10:12:43.540885", + "url": "/v1/software/uppaal-model-checker" +} diff --git a/site/public/v1/software/upper-atmospheric-models/index.json b/site/public/v1/software/upper-atmospheric-models/index.json new file mode 100644 index 000000000000..4e8447547fe9 --- /dev/null +++ b/site/public/v1/software/upper-atmospheric-models/index.json @@ -0,0 +1,21 @@ +{ + "id": 10597, + "slug": "upper-atmospheric-models", + "name": "upper-atmospheric models", + "release_date": null, + "developers": [ + "Murmansk Arctic University" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4299341" + ], + "created_at": "2026-07-10T10:12:43.540885", + "updated_at": "2026-07-10T10:12:43.540885", + "url": "/v1/software/upper-atmospheric-models" +} diff --git a/site/public/v1/software/upptalk/index.json b/site/public/v1/software/upptalk/index.json new file mode 100644 index 000000000000..a44042c5d11a --- /dev/null +++ b/site/public/v1/software/upptalk/index.json @@ -0,0 +1,21 @@ +{ + "id": 10598, + "slug": "upptalk", + "name": "Upptalk", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q14375741" + ], + "created_at": "2026-07-10T10:12:43.541887", + "updated_at": "2026-07-10T10:12:43.541887", + "url": "/v1/software/upptalk" +} diff --git a/site/public/v1/software/upsetr/index.json b/site/public/v1/software/upsetr/index.json new file mode 100644 index 000000000000..bc2a06974da5 --- /dev/null +++ b/site/public/v1/software/upsetr/index.json @@ -0,0 +1,21 @@ +{ + "id": 10599, + "slug": "upsetr", + "name": "UpSetR", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "R" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112338883" + ], + "created_at": "2026-07-10T10:12:43.541887", + "updated_at": "2026-07-10T10:12:43.541887", + "url": "/v1/software/upsetr" +} diff --git a/site/public/v1/software/uptimed/index.json b/site/public/v1/software/uptimed/index.json new file mode 100644 index 000000000000..51d8c63b4518 --- /dev/null +++ b/site/public/v1/software/uptimed/index.json @@ -0,0 +1,19 @@ +{ + "id": 10600, + "slug": "uptimed", + "name": "Uptimed", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110473532" + ], + "created_at": "2026-07-10T10:12:43.541887", + "updated_at": "2026-07-10T10:12:43.541887", + "url": "/v1/software/uptimed" +} diff --git a/site/public/v1/software/uptodown/index.json b/site/public/v1/software/uptodown/index.json new file mode 100644 index 000000000000..23ad559ce613 --- /dev/null +++ b/site/public/v1/software/uptodown/index.json @@ -0,0 +1,19 @@ +{ + "id": 10601, + "slug": "uptodown", + "name": "Uptodown", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6157280" + ], + "created_at": "2026-07-10T10:12:43.541887", + "updated_at": "2026-07-10T10:12:43.541887", + "url": "/v1/software/uptodown" +} diff --git a/site/public/v1/software/upwork/index.json b/site/public/v1/software/upwork/index.json new file mode 100644 index 000000000000..f73aa7924ffe --- /dev/null +++ b/site/public/v1/software/upwork/index.json @@ -0,0 +1,19 @@ +{ + "id": 10602, + "slug": "upwork", + "name": "upwork", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065207" + ], + "created_at": "2026-07-10T10:12:43.542886", + "updated_at": "2026-07-10T10:12:43.542886", + "url": "/v1/software/upwork" +} diff --git a/site/public/v1/software/urban-model-builder/index.json b/site/public/v1/software/urban-model-builder/index.json new file mode 100644 index 000000000000..8baad214a58c --- /dev/null +++ b/site/public/v1/software/urban-model-builder/index.json @@ -0,0 +1,19 @@ +{ + "id": 10603, + "slug": "urban-model-builder", + "name": "Urban Model Builder", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137886582" + ], + "created_at": "2026-07-10T10:12:43.542886", + "updated_at": "2026-07-10T10:12:43.542886", + "url": "/v1/software/urban-model-builder" +} diff --git a/site/public/v1/software/urbansim/index.json b/site/public/v1/software/urbansim/index.json new file mode 100644 index 000000000000..f1bc229a02ab --- /dev/null +++ b/site/public/v1/software/urbansim/index.json @@ -0,0 +1,21 @@ +{ + "id": 10604, + "slug": "urbansim", + "name": "UrbanSim", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Python" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7899833" + ], + "created_at": "2026-07-10T10:12:43.543886", + "updated_at": "2026-07-10T10:12:43.543886", + "url": "/v1/software/urbansim" +} diff --git a/site/public/v1/software/urbit/index.json b/site/public/v1/software/urbit/index.json new file mode 100644 index 000000000000..9a28ee07c843 --- /dev/null +++ b/site/public/v1/software/urbit/index.json @@ -0,0 +1,21 @@ +{ + "id": 10605, + "slug": "urbit", + "name": "Urbit", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q64919023" + ], + "created_at": "2026-07-10T10:12:43.543886", + "updated_at": "2026-07-10T10:12:43.543886", + "url": "/v1/software/urbit" +} diff --git a/site/public/v1/software/urchin/index.json b/site/public/v1/software/urchin/index.json new file mode 100644 index 000000000000..54ad415c0874 --- /dev/null +++ b/site/public/v1/software/urchin/index.json @@ -0,0 +1,26 @@ +{ + "id": 10606, + "slug": "urchin", + "name": "Urchin", + "release_date": null, + "developers": [ + "Urchin Software Corporation", + "Google" + ], + "publishers": [], + "operating_systems": [ + "FreeBSD", + "Windows Server 2008", + "Windows Server 2003" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1914164" + ], + "created_at": "2026-07-10T10:12:43.543886", + "updated_at": "2026-07-10T10:12:43.543886", + "url": "/v1/software/urchin" +} diff --git a/site/public/v1/software/urdfdom-headers/index.json b/site/public/v1/software/urdfdom-headers/index.json new file mode 100644 index 000000000000..30b069e55f32 --- /dev/null +++ b/site/public/v1/software/urdfdom-headers/index.json @@ -0,0 +1,19 @@ +{ + "id": 10607, + "slug": "urdfdom-headers", + "name": "urdfdom_headers", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975539" + ], + "created_at": "2026-07-10T10:12:43.544886", + "updated_at": "2026-07-10T10:12:43.544886", + "url": "/v1/software/urdfdom-headers" +} diff --git a/site/public/v1/software/urdfdom/index.json b/site/public/v1/software/urdfdom/index.json new file mode 100644 index 000000000000..04d08ecac401 --- /dev/null +++ b/site/public/v1/software/urdfdom/index.json @@ -0,0 +1,21 @@ +{ + "id": 10608, + "slug": "urdfdom", + "name": "urdfdom", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "BSD licenses" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975538" + ], + "created_at": "2026-07-10T10:12:43.544886", + "updated_at": "2026-07-10T10:12:43.544886", + "url": "/v1/software/urdfdom" +} diff --git a/site/public/v1/software/urica-ii/index.json b/site/public/v1/software/urica-ii/index.json new file mode 100644 index 000000000000..8ac4db64353a --- /dev/null +++ b/site/public/v1/software/urica-ii/index.json @@ -0,0 +1,19 @@ +{ + "id": 10609, + "slug": "urica-ii", + "name": "URICA! II", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084700" + ], + "created_at": "2026-07-10T10:12:43.544886", + "updated_at": "2026-07-10T10:12:43.544886", + "url": "/v1/software/urica-ii" +} diff --git a/site/public/v1/software/urjtag/index.json b/site/public/v1/software/urjtag/index.json new file mode 100644 index 000000000000..d3c6694f8c2f --- /dev/null +++ b/site/public/v1/software/urjtag/index.json @@ -0,0 +1,19 @@ +{ + "id": 10610, + "slug": "urjtag", + "name": "urjtag", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975540" + ], + "created_at": "2026-07-10T10:12:43.545886", + "updated_at": "2026-07-10T10:12:43.545886", + "url": "/v1/software/urjtag" +} diff --git a/site/public/v1/software/urkund/index.json b/site/public/v1/software/urkund/index.json new file mode 100644 index 000000000000..e063979edfd0 --- /dev/null +++ b/site/public/v1/software/urkund/index.json @@ -0,0 +1,19 @@ +{ + "id": 10611, + "slug": "urkund", + "name": "Urkund", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q24352057" + ], + "created_at": "2026-07-10T10:12:43.545886", + "updated_at": "2026-07-10T10:12:43.545886", + "url": "/v1/software/urkund" +} diff --git a/site/public/v1/software/url-x/index.json b/site/public/v1/software/url-x/index.json new file mode 100644 index 000000000000..3bfe4d67d80c --- /dev/null +++ b/site/public/v1/software/url-x/index.json @@ -0,0 +1,23 @@ +{ + "id": 10612, + "slug": "url-x", + "name": "URL X", + "release_date": null, + "developers": [ + "TraceX Labs" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138508812" + ], + "created_at": "2026-07-10T10:12:43.545886", + "updated_at": "2026-07-10T10:12:43.545886", + "url": "/v1/software/url-x" +} diff --git a/site/public/v1/software/uroburos/index.json b/site/public/v1/software/uroburos/index.json new file mode 100644 index 000000000000..f9a18b7b2b14 --- /dev/null +++ b/site/public/v1/software/uroburos/index.json @@ -0,0 +1,19 @@ +{ + "id": 10613, + "slug": "uroburos", + "name": "Uroburos", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17048709" + ], + "created_at": "2026-07-10T10:12:43.545886", + "updated_at": "2026-07-10T10:12:43.545886", + "url": "/v1/software/uroburos" +} diff --git a/site/public/v1/software/urqmd/index.json b/site/public/v1/software/urqmd/index.json new file mode 100644 index 000000000000..e2c8574743fe --- /dev/null +++ b/site/public/v1/software/urqmd/index.json @@ -0,0 +1,23 @@ +{ + "id": 10614, + "slug": "urqmd", + "name": "UrQMD", + "release_date": null, + "developers": [ + "Goethe University Frankfurt" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Fortran" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7899521" + ], + "created_at": "2026-07-10T10:12:43.546885", + "updated_at": "2026-07-10T10:12:43.546885", + "url": "/v1/software/urqmd" +} diff --git a/site/public/v1/software/urxvt-font-size/index.json b/site/public/v1/software/urxvt-font-size/index.json new file mode 100644 index 000000000000..f9f7acbe48e7 --- /dev/null +++ b/site/public/v1/software/urxvt-font-size/index.json @@ -0,0 +1,19 @@ +{ + "id": 10615, + "slug": "urxvt-font-size", + "name": "urxvt-font-size", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975541" + ], + "created_at": "2026-07-10T10:12:43.546885", + "updated_at": "2026-07-10T10:12:43.546885", + "url": "/v1/software/urxvt-font-size" +} diff --git a/site/public/v1/software/usb8x/index.json b/site/public/v1/software/usb8x/index.json new file mode 100644 index 000000000000..2d0328a5e3e5 --- /dev/null +++ b/site/public/v1/software/usb8x/index.json @@ -0,0 +1,19 @@ +{ + "id": 10616, + "slug": "usb8x", + "name": "Usb8x", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7901721" + ], + "created_at": "2026-07-10T10:12:43.547886", + "updated_at": "2026-07-10T10:12:43.547886", + "url": "/v1/software/usb8x" +} diff --git a/site/public/v1/software/usbredir/index.json b/site/public/v1/software/usbredir/index.json new file mode 100644 index 000000000000..07b5669082b8 --- /dev/null +++ b/site/public/v1/software/usbredir/index.json @@ -0,0 +1,21 @@ +{ + "id": 10617, + "slug": "usbredir", + "name": "usbredir", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "GNU General Public License, version 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975542" + ], + "created_at": "2026-07-10T10:12:43.547886", + "updated_at": "2026-07-10T10:12:43.547886", + "url": "/v1/software/usbredir" +} diff --git a/site/public/v1/software/usbview/index.json b/site/public/v1/software/usbview/index.json new file mode 100644 index 000000000000..ac43072566f5 --- /dev/null +++ b/site/public/v1/software/usbview/index.json @@ -0,0 +1,19 @@ +{ + "id": 10618, + "slug": "usbview", + "name": "usbview", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60917740" + ], + "created_at": "2026-07-10T10:12:43.547886", + "updated_at": "2026-07-10T10:12:43.547886", + "url": "/v1/software/usbview" +} diff --git a/site/public/v1/software/useful-macros-uma/index.json b/site/public/v1/software/useful-macros-uma/index.json new file mode 100644 index 000000000000..c8e6da840560 --- /dev/null +++ b/site/public/v1/software/useful-macros-uma/index.json @@ -0,0 +1,19 @@ +{ + "id": 10619, + "slug": "useful-macros-uma", + "name": "Useful Macros (UMA)", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121631700" + ], + "created_at": "2026-07-10T10:12:43.547886", + "updated_at": "2026-07-10T10:12:43.547886", + "url": "/v1/software/useful-macros-uma" +} diff --git a/site/public/v1/software/useful-notes-uno/index.json b/site/public/v1/software/useful-notes-uno/index.json new file mode 100644 index 000000000000..3d45739997f8 --- /dev/null +++ b/site/public/v1/software/useful-notes-uno/index.json @@ -0,0 +1,21 @@ +{ + "id": 10620, + "slug": "useful-notes-uno", + "name": "Useful Notes (UNO)", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "shareware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121631702" + ], + "created_at": "2026-07-10T10:12:43.548954", + "updated_at": "2026-07-10T10:12:43.548954", + "url": "/v1/software/useful-notes-uno" +} diff --git a/site/public/v1/software/usenet-explorer/index.json b/site/public/v1/software/usenet-explorer/index.json new file mode 100644 index 000000000000..dcf6537c2cd8 --- /dev/null +++ b/site/public/v1/software/usenet-explorer/index.json @@ -0,0 +1,21 @@ +{ + "id": 10621, + "slug": "usenet-explorer", + "name": "Usenet Explorer", + "release_date": "2005-01-01", + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7901812" + ], + "created_at": "2026-07-10T10:12:43.548954", + "updated_at": "2026-07-10T10:12:43.548954", + "url": "/v1/software/usenet-explorer" +} diff --git a/site/public/v1/software/user-account-control/index.json b/site/public/v1/software/user-account-control/index.json new file mode 100644 index 000000000000..93f5e95da14f --- /dev/null +++ b/site/public/v1/software/user-account-control/index.json @@ -0,0 +1,21 @@ +{ + "id": 10622, + "slug": "user-account-control", + "name": "User Account Control", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q818381" + ], + "created_at": "2026-07-10T10:12:43.548954", + "updated_at": "2026-07-10T10:12:43.548954", + "url": "/v1/software/user-account-control" +} diff --git a/site/public/v1/software/user-ii-software-bundle/index.json b/site/public/v1/software/user-ii-software-bundle/index.json new file mode 100644 index 000000000000..68ff29fcc70b --- /dev/null +++ b/site/public/v1/software/user-ii-software-bundle/index.json @@ -0,0 +1,19 @@ +{ + "id": 10623, + "slug": "user-ii-software-bundle", + "name": "User II (software bundle)", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11879070" + ], + "created_at": "2026-07-10T10:12:43.549939", + "updated_at": "2026-07-10T10:12:43.549939", + "url": "/v1/software/user-ii-software-bundle" +} diff --git a/site/public/v1/software/user-onboarding/index.json b/site/public/v1/software/user-onboarding/index.json new file mode 100644 index 000000000000..e63752680e52 --- /dev/null +++ b/site/public/v1/software/user-onboarding/index.json @@ -0,0 +1,19 @@ +{ + "id": 10624, + "slug": "user-onboarding", + "name": "user onboarding", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q19600187" + ], + "created_at": "2026-07-10T10:12:43.549939", + "updated_at": "2026-07-10T10:12:43.549939", + "url": "/v1/software/user-onboarding" +} diff --git a/site/public/v1/software/user-state-migration-tool/index.json b/site/public/v1/software/user-state-migration-tool/index.json new file mode 100644 index 000000000000..381cb0d5cd2a --- /dev/null +++ b/site/public/v1/software/user-state-migration-tool/index.json @@ -0,0 +1,19 @@ +{ + "id": 10625, + "slug": "user-state-migration-tool", + "name": "User State Migration Tool", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1551793" + ], + "created_at": "2026-07-10T10:12:43.549939", + "updated_at": "2026-07-10T10:12:43.549939", + "url": "/v1/software/user-state-migration-tool" +} diff --git a/site/public/v1/software/userbrain/index.json b/site/public/v1/software/userbrain/index.json new file mode 100644 index 000000000000..4abc3ce643ef --- /dev/null +++ b/site/public/v1/software/userbrain/index.json @@ -0,0 +1,19 @@ +{ + "id": 10626, + "slug": "userbrain", + "name": "Userbrain", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139571912" + ], + "created_at": "2026-07-10T10:12:43.550937", + "updated_at": "2026-07-10T10:12:43.550937", + "url": "/v1/software/userbrain" +} diff --git a/site/public/v1/software/usermin/index.json b/site/public/v1/software/usermin/index.json new file mode 100644 index 000000000000..dd834c2b6f79 --- /dev/null +++ b/site/public/v1/software/usermin/index.json @@ -0,0 +1,19 @@ +{ + "id": 10627, + "slug": "usermin", + "name": "Usermin", + "release_date": "2002-03-06", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3552546" + ], + "created_at": "2026-07-10T10:12:43.550937", + "updated_at": "2026-07-10T10:12:43.550937", + "url": "/v1/software/usermin" +} diff --git a/site/public/v1/software/utalk/index.json b/site/public/v1/software/utalk/index.json new file mode 100644 index 000000000000..c5ef426dfc57 --- /dev/null +++ b/site/public/v1/software/utalk/index.json @@ -0,0 +1,21 @@ +{ + "id": 10628, + "slug": "utalk", + "name": "utalk", + "release_date": "2006-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4052302" + ], + "created_at": "2026-07-10T10:12:43.550937", + "updated_at": "2026-07-10T10:12:43.550937", + "url": "/v1/software/utalk" +} diff --git a/site/public/v1/software/utatane-piko/index.json b/site/public/v1/software/utatane-piko/index.json new file mode 100644 index 000000000000..6f1d1eaa24bc --- /dev/null +++ b/site/public/v1/software/utatane-piko/index.json @@ -0,0 +1,21 @@ +{ + "id": 10629, + "slug": "utatane-piko", + "name": "Utatane Piko", + "release_date": "2010-12-08", + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17164380" + ], + "created_at": "2026-07-10T10:12:43.551937", + "updated_at": "2026-07-10T10:12:43.551937", + "url": "/v1/software/utatane-piko" +} diff --git a/site/public/v1/software/utatane/index.json b/site/public/v1/software/utatane/index.json new file mode 100644 index 000000000000..c7ba2d15a8f9 --- /dev/null +++ b/site/public/v1/software/utatane/index.json @@ -0,0 +1,19 @@ +{ + "id": 10630, + "slug": "utatane", + "name": "Utatane", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7902580" + ], + "created_at": "2026-07-10T10:12:43.551937", + "updated_at": "2026-07-10T10:12:43.551937", + "url": "/v1/software/utatane" +} diff --git a/site/public/v1/software/utexas/index.json b/site/public/v1/software/utexas/index.json new file mode 100644 index 000000000000..c8079eb1890f --- /dev/null +++ b/site/public/v1/software/utexas/index.json @@ -0,0 +1,19 @@ +{ + "id": 10631, + "slug": "utexas", + "name": "UTEXAS", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7875997" + ], + "created_at": "2026-07-10T10:12:43.551937", + "updated_at": "2026-07-10T10:12:43.551937", + "url": "/v1/software/utexas" +} diff --git a/site/public/v1/software/utgard/index.json b/site/public/v1/software/utgard/index.json new file mode 100644 index 000000000000..aec513bb75e8 --- /dev/null +++ b/site/public/v1/software/utgard/index.json @@ -0,0 +1,19 @@ +{ + "id": 10632, + "slug": "utgard", + "name": "Utgard", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q21463732" + ], + "created_at": "2026-07-10T10:12:43.552969", + "updated_at": "2026-07-10T10:12:43.552969", + "url": "/v1/software/utgard" +} diff --git a/site/public/v1/software/utm/index.json b/site/public/v1/software/utm/index.json new file mode 100644 index 000000000000..f3dcc64130fe --- /dev/null +++ b/site/public/v1/software/utm/index.json @@ -0,0 +1,26 @@ +{ + "id": 10633, + "slug": "utm", + "name": "UTM", + "release_date": null, + "developers": [ + "osy" + ], + "publishers": [], + "operating_systems": [ + "iOS", + "macOS" + ], + "programming_languages": [], + "licenses": [ + "Apache Software License 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105701048" + ], + "created_at": "2026-07-10T10:12:43.552969", + "updated_at": "2026-07-10T10:12:43.552969", + "url": "/v1/software/utm" +} diff --git a/site/public/v1/software/utopia/index.json b/site/public/v1/software/utopia/index.json new file mode 100644 index 000000000000..7ecc04b4bbf4 --- /dev/null +++ b/site/public/v1/software/utopia/index.json @@ -0,0 +1,19 @@ +{ + "id": 10634, + "slug": "utopia", + "name": "UTOPIA", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7876009" + ], + "created_at": "2026-07-10T10:12:43.552969", + "updated_at": "2026-07-10T10:12:43.552969", + "url": "/v1/software/utopia" +} diff --git a/site/public/v1/software/uuu/index.json b/site/public/v1/software/uuu/index.json new file mode 100644 index 000000000000..625d960af7a0 --- /dev/null +++ b/site/public/v1/software/uuu/index.json @@ -0,0 +1,21 @@ +{ + "id": 10635, + "slug": "uuu", + "name": "uuu", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "3-clause BSD License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113956834" + ], + "created_at": "2026-07-10T10:12:43.552969", + "updated_at": "2026-07-10T10:12:43.552969", + "url": "/v1/software/uuu" +} diff --git a/site/public/v1/software/uvic-image-markup-tool/index.json b/site/public/v1/software/uvic-image-markup-tool/index.json new file mode 100644 index 000000000000..606baa14404c --- /dev/null +++ b/site/public/v1/software/uvic-image-markup-tool/index.json @@ -0,0 +1,19 @@ +{ + "id": 10636, + "slug": "uvic-image-markup-tool", + "name": "UVic Image Markup Tool", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084701" + ], + "created_at": "2026-07-10T10:12:43.553959", + "updated_at": "2026-07-10T10:12:43.553959", + "url": "/v1/software/uvic-image-markup-tool" +} diff --git a/site/public/v1/software/uwin/index.json b/site/public/v1/software/uwin/index.json new file mode 100644 index 000000000000..0f1c1ba91ed5 --- /dev/null +++ b/site/public/v1/software/uwin/index.json @@ -0,0 +1,21 @@ +{ + "id": 10637, + "slug": "uwin", + "name": "UWIN", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Eclipse Public License 1.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1922446" + ], + "created_at": "2026-07-10T10:12:43.553959", + "updated_at": "2026-07-10T10:12:43.553959", + "url": "/v1/software/uwin" +} diff --git a/site/public/v1/software/v-e-r-a/index.json b/site/public/v1/software/v-e-r-a/index.json new file mode 100644 index 000000000000..e680ccd7d24b --- /dev/null +++ b/site/public/v1/software/v-e-r-a/index.json @@ -0,0 +1,23 @@ +{ + "id": 10638, + "slug": "v-e-r-a", + "name": "V.E.R.A.", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "BSD" + ], + "programming_languages": [], + "licenses": [ + "GNU Free Documentation License, version 1.3 or later" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q98836880" + ], + "created_at": "2026-07-10T10:12:43.553959", + "updated_at": "2026-07-10T10:12:43.553959", + "url": "/v1/software/v-e-r-a" +} diff --git a/site/public/v1/software/v-ncolo-cms/index.json b/site/public/v1/software/v-ncolo-cms/index.json new file mode 100644 index 000000000000..7bb038de4d76 --- /dev/null +++ b/site/public/v1/software/v-ncolo-cms/index.json @@ -0,0 +1,23 @@ +{ + "id": 10639, + "slug": "v-ncolo-cms", + "name": "Víncolo CMS", + "release_date": null, + "developers": [ + "Víncolo S.R.L." + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "commercial software" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131455311" + ], + "created_at": "2026-07-10T10:12:43.554950", + "updated_at": "2026-07-10T10:12:43.554950", + "url": "/v1/software/v-ncolo-cms" +} diff --git a/site/public/v1/software/v3/index.json b/site/public/v1/software/v3/index.json new file mode 100644 index 000000000000..16889a32a530 --- /dev/null +++ b/site/public/v1/software/v3/index.json @@ -0,0 +1,21 @@ +{ + "id": 10640, + "slug": "v3", + "name": "V3", + "release_date": null, + "developers": [ + "AhnLab Inc" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11252427" + ], + "created_at": "2026-07-10T10:12:43.554950", + "updated_at": "2026-07-10T10:12:43.554950", + "url": "/v1/software/v3" +} diff --git a/site/public/v1/software/vaa3d/index.json b/site/public/v1/software/vaa3d/index.json new file mode 100644 index 000000000000..20a487381d90 --- /dev/null +++ b/site/public/v1/software/vaa3d/index.json @@ -0,0 +1,19 @@ +{ + "id": 10641, + "slug": "vaa3d", + "name": "Vaa3D", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18201789" + ], + "created_at": "2026-07-10T10:12:43.554950", + "updated_at": "2026-07-10T10:12:43.554950", + "url": "/v1/software/vaa3d" +} diff --git a/site/public/v1/software/vaccination-record-system/index.json b/site/public/v1/software/vaccination-record-system/index.json new file mode 100644 index 000000000000..a0edad9a5b48 --- /dev/null +++ b/site/public/v1/software/vaccination-record-system/index.json @@ -0,0 +1,19 @@ +{ + "id": 10642, + "slug": "vaccination-record-system", + "name": "Vaccination Record System", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109594535" + ], + "created_at": "2026-07-10T10:12:43.555971", + "updated_at": "2026-07-10T10:12:43.555971", + "url": "/v1/software/vaccination-record-system" +} diff --git a/site/public/v1/software/vacuolar-phenotype-analyzer/index.json b/site/public/v1/software/vacuolar-phenotype-analyzer/index.json new file mode 100644 index 000000000000..caa8ae17bd23 --- /dev/null +++ b/site/public/v1/software/vacuolar-phenotype-analyzer/index.json @@ -0,0 +1,23 @@ +{ + "id": 10643, + "slug": "vacuolar-phenotype-analyzer", + "name": "Vacuolar Phenotype Analyzer", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Python" + ], + "licenses": [ + "Creative Commons Attribution-ShareAlike 4.0 International" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137775186" + ], + "created_at": "2026-07-10T10:12:43.555971", + "updated_at": "2026-07-10T10:12:43.555971", + "url": "/v1/software/vacuolar-phenotype-analyzer" +} diff --git a/site/public/v1/software/vacuum/index.json b/site/public/v1/software/vacuum/index.json new file mode 100644 index 000000000000..0517766e828e --- /dev/null +++ b/site/public/v1/software/vacuum/index.json @@ -0,0 +1,19 @@ +{ + "id": 10644, + "slug": "vacuum", + "name": "vacuum", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975544" + ], + "created_at": "2026-07-10T10:12:43.555971", + "updated_at": "2026-07-10T10:12:43.555971", + "url": "/v1/software/vacuum" +} diff --git a/site/public/v1/software/vader/index.json b/site/public/v1/software/vader/index.json new file mode 100644 index 000000000000..8eb9fbda6f60 --- /dev/null +++ b/site/public/v1/software/vader/index.json @@ -0,0 +1,19 @@ +{ + "id": 10645, + "slug": "vader", + "name": "VADER", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087758" + ], + "created_at": "2026-07-10T10:12:43.555971", + "updated_at": "2026-07-10T10:12:43.555971", + "url": "/v1/software/vader" +} diff --git a/site/public/v1/software/vagaa/index.json b/site/public/v1/software/vagaa/index.json new file mode 100644 index 000000000000..39a57c665e0a --- /dev/null +++ b/site/public/v1/software/vagaa/index.json @@ -0,0 +1,21 @@ +{ + "id": 10646, + "slug": "vagaa", + "name": "Vagaa", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7908420" + ], + "created_at": "2026-07-10T10:12:43.556990", + "updated_at": "2026-07-10T10:12:43.556990", + "url": "/v1/software/vagaa" +} diff --git a/site/public/v1/software/vaikora/index.json b/site/public/v1/software/vaikora/index.json new file mode 100644 index 000000000000..99ca457cb071 --- /dev/null +++ b/site/public/v1/software/vaikora/index.json @@ -0,0 +1,21 @@ +{ + "id": 10647, + "slug": "vaikora", + "name": "Vaikora", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139845841" + ], + "created_at": "2026-07-10T10:12:43.556990", + "updated_at": "2026-07-10T10:12:43.556990", + "url": "/v1/software/vaikora" +} diff --git a/site/public/v1/software/valetudo/index.json b/site/public/v1/software/valetudo/index.json new file mode 100644 index 000000000000..dfc780df0ee9 --- /dev/null +++ b/site/public/v1/software/valetudo/index.json @@ -0,0 +1,19 @@ +{ + "id": 10648, + "slug": "valetudo", + "name": "Valetudo", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136466761" + ], + "created_at": "2026-07-10T10:12:43.557988", + "updated_at": "2026-07-10T10:12:43.557988", + "url": "/v1/software/valetudo" +} diff --git a/site/public/v1/software/validis/index.json b/site/public/v1/software/validis/index.json new file mode 100644 index 000000000000..bfebf6d573a7 --- /dev/null +++ b/site/public/v1/software/validis/index.json @@ -0,0 +1,19 @@ +{ + "id": 10649, + "slug": "validis", + "name": "Validis", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7911680" + ], + "created_at": "2026-07-10T10:12:43.557988", + "updated_at": "2026-07-10T10:12:43.557988", + "url": "/v1/software/validis" +} diff --git a/site/public/v1/software/vall-e/index.json b/site/public/v1/software/vall-e/index.json new file mode 100644 index 000000000000..524ca2828b29 --- /dev/null +++ b/site/public/v1/software/vall-e/index.json @@ -0,0 +1,19 @@ +{ + "id": 10650, + "slug": "vall-e", + "name": "VALL-E", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123111586" + ], + "created_at": "2026-07-10T10:12:43.557988", + "updated_at": "2026-07-10T10:12:43.557988", + "url": "/v1/software/vall-e" +} diff --git a/site/public/v1/software/vallen-jpegger/index.json b/site/public/v1/software/vallen-jpegger/index.json new file mode 100644 index 000000000000..0ea5223daea4 --- /dev/null +++ b/site/public/v1/software/vallen-jpegger/index.json @@ -0,0 +1,19 @@ +{ + "id": 10651, + "slug": "vallen-jpegger", + "name": "Vallen JPegger", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3553852" + ], + "created_at": "2026-07-10T10:12:43.557988", + "updated_at": "2026-07-10T10:12:43.557988", + "url": "/v1/software/vallen-jpegger" +} diff --git a/site/public/v1/software/valo-cd/index.json b/site/public/v1/software/valo-cd/index.json new file mode 100644 index 000000000000..ad1589fa8680 --- /dev/null +++ b/site/public/v1/software/valo-cd/index.json @@ -0,0 +1,21 @@ +{ + "id": 10652, + "slug": "valo-cd", + "name": "VALO-CD", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4052486" + ], + "created_at": "2026-07-10T10:12:43.559001", + "updated_at": "2026-07-10T10:12:43.559001", + "url": "/v1/software/valo-cd" +} diff --git a/site/public/v1/software/valour/index.json b/site/public/v1/software/valour/index.json new file mode 100644 index 000000000000..fddbf0403c86 --- /dev/null +++ b/site/public/v1/software/valour/index.json @@ -0,0 +1,19 @@ +{ + "id": 10653, + "slug": "valour", + "name": "Valour", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17143219" + ], + "created_at": "2026-07-10T10:12:43.559001", + "updated_at": "2026-07-10T10:12:43.559001", + "url": "/v1/software/valour" +} diff --git a/site/public/v1/software/vampire-theorem-prover/index.json b/site/public/v1/software/vampire-theorem-prover/index.json new file mode 100644 index 000000000000..c65ee7a249ed --- /dev/null +++ b/site/public/v1/software/vampire-theorem-prover/index.json @@ -0,0 +1,21 @@ +{ + "id": 10654, + "slug": "vampire-theorem-prover", + "name": "Vampire theorem prover", + "release_date": null, + "developers": [ + "Andrei Voronkov" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7912960" + ], + "created_at": "2026-07-10T10:12:43.559001", + "updated_at": "2026-07-10T10:12:43.559001", + "url": "/v1/software/vampire-theorem-prover" +} diff --git a/site/public/v1/software/vampr/index.json b/site/public/v1/software/vampr/index.json new file mode 100644 index 000000000000..035a81016872 --- /dev/null +++ b/site/public/v1/software/vampr/index.json @@ -0,0 +1,19 @@ +{ + "id": 10655, + "slug": "vampr", + "name": "Vampr", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q48810787" + ], + "created_at": "2026-07-10T10:12:43.559978", + "updated_at": "2026-07-10T10:12:43.559978", + "url": "/v1/software/vampr" +} diff --git a/site/public/v1/software/vannotator/index.json b/site/public/v1/software/vannotator/index.json new file mode 100644 index 000000000000..c6dcbf8f3519 --- /dev/null +++ b/site/public/v1/software/vannotator/index.json @@ -0,0 +1,19 @@ +{ + "id": 10656, + "slug": "vannotator", + "name": "VAnnotatoR", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084702" + ], + "created_at": "2026-07-10T10:12:43.559978", + "updated_at": "2026-07-10T10:12:43.559978", + "url": "/v1/software/vannotator" +} diff --git a/site/public/v1/software/vapor/index.json b/site/public/v1/software/vapor/index.json new file mode 100644 index 000000000000..d43677ed3b58 --- /dev/null +++ b/site/public/v1/software/vapor/index.json @@ -0,0 +1,21 @@ +{ + "id": 10657, + "slug": "vapor", + "name": "Vapor", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Swift" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q55636966" + ], + "created_at": "2026-07-10T10:12:43.559978", + "updated_at": "2026-07-10T10:12:43.559978", + "url": "/v1/software/vapor" +} diff --git a/site/public/v1/software/vapoursynth/index.json b/site/public/v1/software/vapoursynth/index.json new file mode 100644 index 000000000000..43235ac33b70 --- /dev/null +++ b/site/public/v1/software/vapoursynth/index.json @@ -0,0 +1,21 @@ +{ + "id": 10658, + "slug": "vapoursynth", + "name": "vapoursynth", + "release_date": null, + "developers": [ + "Fredrik Mellbin" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120151686" + ], + "created_at": "2026-07-10T10:12:43.560991", + "updated_at": "2026-07-10T10:12:43.560991", + "url": "/v1/software/vapoursynth" +} diff --git a/site/public/v1/software/varagesale/index.json b/site/public/v1/software/varagesale/index.json new file mode 100644 index 000000000000..e74b4808f25d --- /dev/null +++ b/site/public/v1/software/varagesale/index.json @@ -0,0 +1,19 @@ +{ + "id": 10659, + "slug": "varagesale", + "name": "VarageSale", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22909608" + ], + "created_at": "2026-07-10T10:12:43.560991", + "updated_at": "2026-07-10T10:12:43.560991", + "url": "/v1/software/varagesale" +} diff --git a/site/public/v1/software/varco-3d/index.json b/site/public/v1/software/varco-3d/index.json new file mode 100644 index 000000000000..5a8cb4a0aa8e --- /dev/null +++ b/site/public/v1/software/varco-3d/index.json @@ -0,0 +1,21 @@ +{ + "id": 10660, + "slug": "varco-3d", + "name": "VARCO 3D", + "release_date": null, + "developers": [ + "NC AI" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140446423" + ], + "created_at": "2026-07-10T10:12:43.560991", + "updated_at": "2026-07-10T10:12:43.560991", + "url": "/v1/software/varco-3d" +} diff --git a/site/public/v1/software/varco-sound/index.json b/site/public/v1/software/varco-sound/index.json new file mode 100644 index 000000000000..9bf484f4beed --- /dev/null +++ b/site/public/v1/software/varco-sound/index.json @@ -0,0 +1,23 @@ +{ + "id": 10661, + "slug": "varco-sound", + "name": "VARCO Sound", + "release_date": null, + "developers": [ + "NC AI" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [ + "generative artificial intelligence" + ], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140454169" + ], + "created_at": "2026-07-10T10:12:43.561991", + "updated_at": "2026-07-10T10:12:43.561991", + "url": "/v1/software/varco-sound" +} diff --git a/site/public/v1/software/vard-2/index.json b/site/public/v1/software/vard-2/index.json new file mode 100644 index 000000000000..af5137ab11b2 --- /dev/null +++ b/site/public/v1/software/vard-2/index.json @@ -0,0 +1,19 @@ +{ + "id": 10662, + "slug": "vard-2", + "name": "VARD 2", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084704" + ], + "created_at": "2026-07-10T10:12:43.561991", + "updated_at": "2026-07-10T10:12:43.561991", + "url": "/v1/software/vard-2" +} diff --git a/site/public/v1/software/vassarstats/index.json b/site/public/v1/software/vassarstats/index.json new file mode 100644 index 000000000000..1c3a3e579875 --- /dev/null +++ b/site/public/v1/software/vassarstats/index.json @@ -0,0 +1,19 @@ +{ + "id": 10663, + "slug": "vassarstats", + "name": "VassarStats", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084705" + ], + "created_at": "2026-07-10T10:12:43.561991", + "updated_at": "2026-07-10T10:12:43.561991", + "url": "/v1/software/vassarstats" +} diff --git a/site/public/v1/software/vault-q88664426/index.json b/site/public/v1/software/vault-q88664426/index.json new file mode 100644 index 000000000000..b8151e042c1f --- /dev/null +++ b/site/public/v1/software/vault-q88664426/index.json @@ -0,0 +1,26 @@ +{ + "id": 10664, + "slug": "vault-q88664426", + "name": "Vault", + "release_date": null, + "developers": [ + "HashiCorp" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Go" + ], + "licenses": [ + "Mozilla Public License, version 2.0", + "Business Source License 1.1" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q88664426" + ], + "created_at": "2026-07-10T10:12:43.562883", + "updated_at": "2026-07-10T10:12:43.562883", + "url": "/v1/software/vault-q88664426" +} diff --git a/site/public/v1/software/vault/index.json b/site/public/v1/software/vault/index.json new file mode 100644 index 000000000000..728857245feb --- /dev/null +++ b/site/public/v1/software/vault/index.json @@ -0,0 +1,19 @@ +{ + "id": 10665, + "slug": "vault", + "name": "Vault", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4052619" + ], + "created_at": "2026-07-10T10:12:43.562883", + "updated_at": "2026-07-10T10:12:43.562883", + "url": "/v1/software/vault" +} diff --git a/site/public/v1/software/vbcc/index.json b/site/public/v1/software/vbcc/index.json new file mode 100644 index 000000000000..884a179478bb --- /dev/null +++ b/site/public/v1/software/vbcc/index.json @@ -0,0 +1,21 @@ +{ + "id": 10666, + "slug": "vbcc", + "name": "vbcc", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7917661" + ], + "created_at": "2026-07-10T10:12:43.562883", + "updated_at": "2026-07-10T10:12:43.562883", + "url": "/v1/software/vbcc" +} diff --git a/site/public/v1/software/vbulletin/index.json b/site/public/v1/software/vbulletin/index.json new file mode 100644 index 000000000000..35ddd13b899e --- /dev/null +++ b/site/public/v1/software/vbulletin/index.json @@ -0,0 +1,23 @@ +{ + "id": 10667, + "slug": "vbulletin", + "name": "vBulletin", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "cross-platform" + ], + "programming_languages": [ + "PHP" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q44338" + ], + "created_at": "2026-07-10T10:12:43.562883", + "updated_at": "2026-07-10T10:12:43.562883", + "url": "/v1/software/vbulletin" +} diff --git a/site/public/v1/software/vcn-execuvision/index.json b/site/public/v1/software/vcn-execuvision/index.json new file mode 100644 index 000000000000..63e8b6c13f9c --- /dev/null +++ b/site/public/v1/software/vcn-execuvision/index.json @@ -0,0 +1,19 @@ +{ + "id": 10668, + "slug": "vcn-execuvision", + "name": "VCN ExecuVision", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7906630" + ], + "created_at": "2026-07-10T10:12:43.563882", + "updated_at": "2026-07-10T10:12:43.563882", + "url": "/v1/software/vcn-execuvision" +} diff --git a/site/public/v1/software/vcpkg/index.json b/site/public/v1/software/vcpkg/index.json new file mode 100644 index 000000000000..fd6512eb5be5 --- /dev/null +++ b/site/public/v1/software/vcpkg/index.json @@ -0,0 +1,24 @@ +{ + "id": 10669, + "slug": "vcpkg", + "name": "vcpkg", + "release_date": null, + "developers": [ + "Alexander Karatarakis", + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q85812832" + ], + "created_at": "2026-07-10T10:12:43.563882", + "updated_at": "2026-07-10T10:12:43.563882", + "url": "/v1/software/vcpkg" +} diff --git a/site/public/v1/software/vcstools/index.json b/site/public/v1/software/vcstools/index.json new file mode 100644 index 000000000000..75afd74536d9 --- /dev/null +++ b/site/public/v1/software/vcstools/index.json @@ -0,0 +1,19 @@ +{ + "id": 10670, + "slug": "vcstools", + "name": "vcstools", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975546" + ], + "created_at": "2026-07-10T10:12:43.563882", + "updated_at": "2026-07-10T10:12:43.563882", + "url": "/v1/software/vcstools" +} diff --git a/site/public/v1/software/vcxsrv/index.json b/site/public/v1/software/vcxsrv/index.json new file mode 100644 index 000000000000..714c4f77519f --- /dev/null +++ b/site/public/v1/software/vcxsrv/index.json @@ -0,0 +1,21 @@ +{ + "id": 10671, + "slug": "vcxsrv", + "name": "VcXsrv", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "GNU General Public License, version 3.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109317641" + ], + "created_at": "2026-07-10T10:12:43.564887", + "updated_at": "2026-07-10T10:12:43.564887", + "url": "/v1/software/vcxsrv" +} diff --git a/site/public/v1/software/vdo-ninja/index.json b/site/public/v1/software/vdo-ninja/index.json new file mode 100644 index 000000000000..2ffea7869675 --- /dev/null +++ b/site/public/v1/software/vdo-ninja/index.json @@ -0,0 +1,19 @@ +{ + "id": 10672, + "slug": "vdo-ninja", + "name": "VDO.Ninja", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q133318537" + ], + "created_at": "2026-07-10T10:12:43.564887", + "updated_at": "2026-07-10T10:12:43.564887", + "url": "/v1/software/vdo-ninja" +} diff --git a/site/public/v1/software/vdownloader/index.json b/site/public/v1/software/vdownloader/index.json new file mode 100644 index 000000000000..05c8aa1fe20e --- /dev/null +++ b/site/public/v1/software/vdownloader/index.json @@ -0,0 +1,21 @@ +{ + "id": 10673, + "slug": "vdownloader", + "name": "VDownloader", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q590366" + ], + "created_at": "2026-07-10T10:12:43.564887", + "updated_at": "2026-07-10T10:12:43.564887", + "url": "/v1/software/vdownloader" +} diff --git a/site/public/v1/software/vdpauinfo/index.json b/site/public/v1/software/vdpauinfo/index.json new file mode 100644 index 000000000000..cc29e1a9d5dc --- /dev/null +++ b/site/public/v1/software/vdpauinfo/index.json @@ -0,0 +1,19 @@ +{ + "id": 10674, + "slug": "vdpauinfo", + "name": "vdpauinfo", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60917985" + ], + "created_at": "2026-07-10T10:12:43.565885", + "updated_at": "2026-07-10T10:12:43.565885", + "url": "/v1/software/vdpauinfo" +} diff --git a/site/public/v1/software/vdr-xvdr/index.json b/site/public/v1/software/vdr-xvdr/index.json new file mode 100644 index 000000000000..df05022165a9 --- /dev/null +++ b/site/public/v1/software/vdr-xvdr/index.json @@ -0,0 +1,19 @@ +{ + "id": 10675, + "slug": "vdr-xvdr", + "name": "vdr-xvdr", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975547" + ], + "created_at": "2026-07-10T10:12:43.565885", + "updated_at": "2026-07-10T10:12:43.565885", + "url": "/v1/software/vdr-xvdr" +} diff --git a/site/public/v1/software/vdx/index.json b/site/public/v1/software/vdx/index.json new file mode 100644 index 000000000000..7a5bc56eb6c9 --- /dev/null +++ b/site/public/v1/software/vdx/index.json @@ -0,0 +1,19 @@ +{ + "id": 10676, + "slug": "vdx", + "name": "VDX", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7906714" + ], + "created_at": "2026-07-10T10:12:43.565885", + "updated_at": "2026-07-10T10:12:43.565885", + "url": "/v1/software/vdx" +} diff --git a/site/public/v1/software/vectorian-giotto/index.json b/site/public/v1/software/vectorian-giotto/index.json new file mode 100644 index 000000000000..e881f2cfff4d --- /dev/null +++ b/site/public/v1/software/vectorian-giotto/index.json @@ -0,0 +1,19 @@ +{ + "id": 10677, + "slug": "vectorian-giotto", + "name": "Vectorian Giotto", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7917853" + ], + "created_at": "2026-07-10T10:12:43.566886", + "updated_at": "2026-07-10T10:12:43.566886", + "url": "/v1/software/vectorian-giotto" +} diff --git a/site/public/v1/software/vedic-programming-language/index.json b/site/public/v1/software/vedic-programming-language/index.json new file mode 100644 index 000000000000..c30b191e94f9 --- /dev/null +++ b/site/public/v1/software/vedic-programming-language/index.json @@ -0,0 +1,19 @@ +{ + "id": 10678, + "slug": "vedic-programming-language", + "name": "Vedic Programming Language", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140469935" + ], + "created_at": "2026-07-10T10:12:43.566886", + "updated_at": "2026-07-10T10:12:43.566886", + "url": "/v1/software/vedic-programming-language" +} diff --git a/site/public/v1/software/veezow/index.json b/site/public/v1/software/veezow/index.json new file mode 100644 index 000000000000..8a6e85c1dba6 --- /dev/null +++ b/site/public/v1/software/veezow/index.json @@ -0,0 +1,19 @@ +{ + "id": 10679, + "slug": "veezow", + "name": "Veezow", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139679069" + ], + "created_at": "2026-07-10T10:12:43.566886", + "updated_at": "2026-07-10T10:12:43.566886", + "url": "/v1/software/veezow" +} diff --git a/site/public/v1/software/vegeta/index.json b/site/public/v1/software/vegeta/index.json new file mode 100644 index 000000000000..04096c3d41df --- /dev/null +++ b/site/public/v1/software/vegeta/index.json @@ -0,0 +1,23 @@ +{ + "id": 10680, + "slug": "vegeta", + "name": "Vegeta", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Go" + ], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113653935" + ], + "created_at": "2026-07-10T10:12:43.567886", + "updated_at": "2026-07-10T10:12:43.567886", + "url": "/v1/software/vegeta" +} diff --git a/site/public/v1/software/vela/index.json b/site/public/v1/software/vela/index.json new file mode 100644 index 000000000000..d70f6b9c4be7 --- /dev/null +++ b/site/public/v1/software/vela/index.json @@ -0,0 +1,19 @@ +{ + "id": 10681, + "slug": "vela", + "name": "VELA", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140042346" + ], + "created_at": "2026-07-10T10:12:43.567886", + "updated_at": "2026-07-10T10:12:43.567886", + "url": "/v1/software/vela" +} diff --git a/site/public/v1/software/velox/index.json b/site/public/v1/software/velox/index.json new file mode 100644 index 000000000000..3460b9d7de12 --- /dev/null +++ b/site/public/v1/software/velox/index.json @@ -0,0 +1,23 @@ +{ + "id": 10682, + "slug": "velox", + "name": "Velox", + "release_date": null, + "developers": [ + "Pedro Pedreira" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Apache Software License 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116591678" + ], + "created_at": "2026-07-10T10:12:43.567886", + "updated_at": "2026-07-10T10:12:43.567886", + "url": "/v1/software/velox" +} diff --git a/site/public/v1/software/velvet-ai/index.json b/site/public/v1/software/velvet-ai/index.json new file mode 100644 index 000000000000..32e21e717590 --- /dev/null +++ b/site/public/v1/software/velvet-ai/index.json @@ -0,0 +1,19 @@ +{ + "id": 10683, + "slug": "velvet-ai", + "name": "Velvet AI", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q133092119" + ], + "created_at": "2026-07-10T10:12:43.568885", + "updated_at": "2026-07-10T10:12:43.568885", + "url": "/v1/software/velvet-ai" +} diff --git a/site/public/v1/software/velvet/index.json b/site/public/v1/software/velvet/index.json new file mode 100644 index 000000000000..5024915e4f60 --- /dev/null +++ b/site/public/v1/software/velvet/index.json @@ -0,0 +1,21 @@ +{ + "id": 10684, + "slug": "velvet", + "name": "Velvet", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "GNU General Public License, version 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123207513" + ], + "created_at": "2026-07-10T10:12:43.568885", + "updated_at": "2026-07-10T10:12:43.568885", + "url": "/v1/software/velvet" +} diff --git a/site/public/v1/software/venmo/index.json b/site/public/v1/software/venmo/index.json new file mode 100644 index 000000000000..8d352e062894 --- /dev/null +++ b/site/public/v1/software/venmo/index.json @@ -0,0 +1,23 @@ +{ + "id": 10685, + "slug": "venmo", + "name": "Venmo", + "release_date": "2009-01-01", + "developers": [ + "Andrew Kortina" + ], + "publishers": [], + "operating_systems": [ + "iOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q24839341" + ], + "created_at": "2026-07-10T10:12:43.568885", + "updated_at": "2026-07-10T10:12:43.568885", + "url": "/v1/software/venmo" +} diff --git a/site/public/v1/software/vensim/index.json b/site/public/v1/software/vensim/index.json new file mode 100644 index 000000000000..e99599048504 --- /dev/null +++ b/site/public/v1/software/vensim/index.json @@ -0,0 +1,19 @@ +{ + "id": 10686, + "slug": "vensim", + "name": "Vensim", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28231514" + ], + "created_at": "2026-07-10T10:12:43.568885", + "updated_at": "2026-07-10T10:12:43.568885", + "url": "/v1/software/vensim" +} diff --git a/site/public/v1/software/venti/index.json b/site/public/v1/software/venti/index.json new file mode 100644 index 000000000000..062bbbed0294 --- /dev/null +++ b/site/public/v1/software/venti/index.json @@ -0,0 +1,22 @@ +{ + "id": 10687, + "slug": "venti", + "name": "Venti", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Inferno", + "Plan 9" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2512983" + ], + "created_at": "2026-07-10T10:12:43.569961", + "updated_at": "2026-07-10T10:12:43.569961", + "url": "/v1/software/venti" +} diff --git a/site/public/v1/software/veo/index.json b/site/public/v1/software/veo/index.json new file mode 100644 index 000000000000..87e278cb0c91 --- /dev/null +++ b/site/public/v1/software/veo/index.json @@ -0,0 +1,21 @@ +{ + "id": 10688, + "slug": "veo", + "name": "Veo", + "release_date": null, + "developers": [ + "Google DeepMind" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q133141215" + ], + "created_at": "2026-07-10T10:12:43.569961", + "updated_at": "2026-07-10T10:12:43.569961", + "url": "/v1/software/veo" +} diff --git a/site/public/v1/software/veracity/index.json b/site/public/v1/software/veracity/index.json new file mode 100644 index 000000000000..fa92e9887c45 --- /dev/null +++ b/site/public/v1/software/veracity/index.json @@ -0,0 +1,21 @@ +{ + "id": 10689, + "slug": "veracity", + "name": "Veracity", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Apache License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3555732" + ], + "created_at": "2026-07-10T10:12:43.569961", + "updated_at": "2026-07-10T10:12:43.569961", + "url": "/v1/software/veracity" +} diff --git a/site/public/v1/software/verbal-robot/index.json b/site/public/v1/software/verbal-robot/index.json new file mode 100644 index 000000000000..599c5a93b4b6 --- /dev/null +++ b/site/public/v1/software/verbal-robot/index.json @@ -0,0 +1,19 @@ +{ + "id": 10690, + "slug": "verbal-robot", + "name": "Verbal-Robot", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7920978" + ], + "created_at": "2026-07-10T10:12:43.570994", + "updated_at": "2026-07-10T10:12:43.570994", + "url": "/v1/software/verbal-robot" +} diff --git a/site/public/v1/software/vericut/index.json b/site/public/v1/software/vericut/index.json new file mode 100644 index 000000000000..25f66afdaab7 --- /dev/null +++ b/site/public/v1/software/vericut/index.json @@ -0,0 +1,19 @@ +{ + "id": 10691, + "slug": "vericut", + "name": "Vericut", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17152399" + ], + "created_at": "2026-07-10T10:12:43.570994", + "updated_at": "2026-07-10T10:12:43.570994", + "url": "/v1/software/vericut" +} diff --git a/site/public/v1/software/veriface/index.json b/site/public/v1/software/veriface/index.json new file mode 100644 index 000000000000..9d0e54877cd8 --- /dev/null +++ b/site/public/v1/software/veriface/index.json @@ -0,0 +1,21 @@ +{ + "id": 10692, + "slug": "veriface", + "name": "VeriFace", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4052646" + ], + "created_at": "2026-07-10T10:12:43.570994", + "updated_at": "2026-07-10T10:12:43.570994", + "url": "/v1/software/veriface" +} diff --git a/site/public/v1/software/verifiedemail/index.json b/site/public/v1/software/verifiedemail/index.json new file mode 100644 index 000000000000..6da0ec1176a1 --- /dev/null +++ b/site/public/v1/software/verifiedemail/index.json @@ -0,0 +1,19 @@ +{ + "id": 10693, + "slug": "verifiedemail", + "name": "VerifiedEmail", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135915417" + ], + "created_at": "2026-07-10T10:12:43.571962", + "updated_at": "2026-07-10T10:12:43.571962", + "url": "/v1/software/verifiedemail" +} diff --git a/site/public/v1/software/veriflux/index.json b/site/public/v1/software/veriflux/index.json new file mode 100644 index 000000000000..765a3c9f8a1d --- /dev/null +++ b/site/public/v1/software/veriflux/index.json @@ -0,0 +1,21 @@ +{ + "id": 10694, + "slug": "veriflux", + "name": "VeriFlux", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Java" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7921298" + ], + "created_at": "2026-07-10T10:12:43.571962", + "updated_at": "2026-07-10T10:12:43.571962", + "url": "/v1/software/veriflux" +} diff --git a/site/public/v1/software/verilator/index.json b/site/public/v1/software/verilator/index.json new file mode 100644 index 000000000000..b250a562f360 --- /dev/null +++ b/site/public/v1/software/verilator/index.json @@ -0,0 +1,24 @@ +{ + "id": 10695, + "slug": "verilator", + "name": "Verilator", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Unix-like operating system" + ], + "programming_languages": [], + "licenses": [ + "GNU Lesser General Public License, version 3.0", + "Artistic License 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7921335" + ], + "created_at": "2026-07-10T10:12:43.571962", + "updated_at": "2026-07-10T10:12:43.571962", + "url": "/v1/software/verilator" +} diff --git a/site/public/v1/software/veritas-volume-manager/index.json b/site/public/v1/software/veritas-volume-manager/index.json new file mode 100644 index 000000000000..606ce132b6ba --- /dev/null +++ b/site/public/v1/software/veritas-volume-manager/index.json @@ -0,0 +1,21 @@ +{ + "id": 10696, + "slug": "veritas-volume-manager", + "name": "Veritas Volume Manager", + "release_date": null, + "developers": [ + "Gen Digital" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7921395" + ], + "created_at": "2026-07-10T10:12:43.571962", + "updated_at": "2026-07-10T10:12:43.571962", + "url": "/v1/software/veritas-volume-manager" +} diff --git a/site/public/v1/software/verleer/index.json b/site/public/v1/software/verleer/index.json new file mode 100644 index 000000000000..0e3b87263011 --- /dev/null +++ b/site/public/v1/software/verleer/index.json @@ -0,0 +1,19 @@ +{ + "id": 10697, + "slug": "verleer", + "name": "Verleer", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140320219" + ], + "created_at": "2026-07-10T10:12:43.573394", + "updated_at": "2026-07-10T10:12:43.573394", + "url": "/v1/software/verleer" +} diff --git a/site/public/v1/software/vero/index.json b/site/public/v1/software/vero/index.json new file mode 100644 index 000000000000..f895969c1246 --- /dev/null +++ b/site/public/v1/software/vero/index.json @@ -0,0 +1,19 @@ +{ + "id": 10698, + "slug": "vero", + "name": "VERO", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10388552" + ], + "created_at": "2026-07-10T10:12:43.573394", + "updated_at": "2026-07-10T10:12:43.573394", + "url": "/v1/software/vero" +} diff --git a/site/public/v1/software/versant-object-database/index.json b/site/public/v1/software/versant-object-database/index.json new file mode 100644 index 000000000000..46da7bd085cc --- /dev/null +++ b/site/public/v1/software/versant-object-database/index.json @@ -0,0 +1,23 @@ +{ + "id": 10699, + "slug": "versant-object-database", + "name": "Versant Object Database", + "release_date": null, + "developers": [ + "Versant Corporation" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Java" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7922633" + ], + "created_at": "2026-07-10T10:12:43.573394", + "updated_at": "2026-07-10T10:12:43.573394", + "url": "/v1/software/versant-object-database" +} diff --git a/site/public/v1/software/verseify/index.json b/site/public/v1/software/verseify/index.json new file mode 100644 index 000000000000..03b982f3fe6a --- /dev/null +++ b/site/public/v1/software/verseify/index.json @@ -0,0 +1,23 @@ +{ + "id": 10700, + "slug": "verseify", + "name": "Verseify", + "release_date": null, + "developers": [ + "Gahbi" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Verse" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134335121" + ], + "created_at": "2026-07-10T10:12:43.574415", + "updated_at": "2026-07-10T10:12:43.574415", + "url": "/v1/software/verseify" +} diff --git a/site/public/v1/software/versioned-hdf5/index.json b/site/public/v1/software/versioned-hdf5/index.json new file mode 100644 index 000000000000..2a0ab4570b19 --- /dev/null +++ b/site/public/v1/software/versioned-hdf5/index.json @@ -0,0 +1,21 @@ +{ + "id": 10701, + "slug": "versioned-hdf5", + "name": "Versioned HDF5", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "3-clause BSD License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131300668" + ], + "created_at": "2026-07-10T10:12:43.574415", + "updated_at": "2026-07-10T10:12:43.574415", + "url": "/v1/software/versioned-hdf5" +} diff --git a/site/public/v1/software/versioning-machine/index.json b/site/public/v1/software/versioning-machine/index.json new file mode 100644 index 000000000000..636804339c45 --- /dev/null +++ b/site/public/v1/software/versioning-machine/index.json @@ -0,0 +1,19 @@ +{ + "id": 10702, + "slug": "versioning-machine", + "name": "Versioning Machine", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084707" + ], + "created_at": "2026-07-10T10:12:43.574415", + "updated_at": "2026-07-10T10:12:43.574415", + "url": "/v1/software/versioning-machine" +} diff --git a/site/public/v1/software/vertex-computer-program/index.json b/site/public/v1/software/vertex-computer-program/index.json new file mode 100644 index 000000000000..e750c97ff4d4 --- /dev/null +++ b/site/public/v1/software/vertex-computer-program/index.json @@ -0,0 +1,19 @@ +{ + "id": 10703, + "slug": "vertex-computer-program", + "name": "Vertex (computer program)", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11901008" + ], + "created_at": "2026-07-10T10:12:43.574415", + "updated_at": "2026-07-10T10:12:43.574415", + "url": "/v1/software/vertex-computer-program" +} diff --git a/site/public/v1/software/vertex-icon-theme/index.json b/site/public/v1/software/vertex-icon-theme/index.json new file mode 100644 index 000000000000..1105106c1e33 --- /dev/null +++ b/site/public/v1/software/vertex-icon-theme/index.json @@ -0,0 +1,19 @@ +{ + "id": 10704, + "slug": "vertex-icon-theme", + "name": "vertex-icon-theme", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975548" + ], + "created_at": "2026-07-10T10:12:43.575410", + "updated_at": "2026-07-10T10:12:43.575410", + "url": "/v1/software/vertex-icon-theme" +} diff --git a/site/public/v1/software/vertica-analytics-platform/index.json b/site/public/v1/software/vertica-analytics-platform/index.json new file mode 100644 index 000000000000..f3a16e42f292 --- /dev/null +++ b/site/public/v1/software/vertica-analytics-platform/index.json @@ -0,0 +1,19 @@ +{ + "id": 10705, + "slug": "vertica-analytics-platform", + "name": "Vertica Analytics Platform", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q50355840" + ], + "created_at": "2026-07-10T10:12:43.575410", + "updated_at": "2026-07-10T10:12:43.575410", + "url": "/v1/software/vertica-analytics-platform" +} diff --git a/site/public/v1/software/verticalrent/index.json b/site/public/v1/software/verticalrent/index.json new file mode 100644 index 000000000000..8f6e5fe3f403 --- /dev/null +++ b/site/public/v1/software/verticalrent/index.json @@ -0,0 +1,19 @@ +{ + "id": 10706, + "slug": "verticalrent", + "name": "VerticalRent", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139580204" + ], + "created_at": "2026-07-10T10:12:43.576411", + "updated_at": "2026-07-10T10:12:43.576411", + "url": "/v1/software/verticalrent" +} diff --git a/site/public/v1/software/verto-studio-3d/index.json b/site/public/v1/software/verto-studio-3d/index.json new file mode 100644 index 000000000000..eb89802aefee --- /dev/null +++ b/site/public/v1/software/verto-studio-3d/index.json @@ -0,0 +1,19 @@ +{ + "id": 10707, + "slug": "verto-studio-3d", + "name": "Verto Studio 3D", + "release_date": "2011-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16966306" + ], + "created_at": "2026-07-10T10:12:43.576411", + "updated_at": "2026-07-10T10:12:43.576411", + "url": "/v1/software/verto-studio-3d" +} diff --git a/site/public/v1/software/veru-legal-ai-for-lawyers/index.json b/site/public/v1/software/veru-legal-ai-for-lawyers/index.json new file mode 100644 index 000000000000..1c7863046deb --- /dev/null +++ b/site/public/v1/software/veru-legal-ai-for-lawyers/index.json @@ -0,0 +1,21 @@ +{ + "id": 10708, + "slug": "veru-legal-ai-for-lawyers", + "name": "Veru Legal - AI for Lawyers", + "release_date": null, + "developers": [ + "zerodays d.o.o." + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140454457" + ], + "created_at": "2026-07-10T10:12:43.576411", + "updated_at": "2026-07-10T10:12:43.576411", + "url": "/v1/software/veru-legal-ai-for-lawyers" +} diff --git a/site/public/v1/software/vestd/index.json b/site/public/v1/software/vestd/index.json new file mode 100644 index 000000000000..1453cb20fcf5 --- /dev/null +++ b/site/public/v1/software/vestd/index.json @@ -0,0 +1,19 @@ +{ + "id": 10709, + "slug": "vestd", + "name": "Vestd", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135434738" + ], + "created_at": "2026-07-10T10:12:43.577410", + "updated_at": "2026-07-10T10:12:43.577410", + "url": "/v1/software/vestd" +} diff --git a/site/public/v1/software/veterinary-practice-management-software/index.json b/site/public/v1/software/veterinary-practice-management-software/index.json new file mode 100644 index 000000000000..fb576ebeaae0 --- /dev/null +++ b/site/public/v1/software/veterinary-practice-management-software/index.json @@ -0,0 +1,19 @@ +{ + "id": 10710, + "slug": "veterinary-practice-management-software", + "name": "veterinary practice management software", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q54829300" + ], + "created_at": "2026-07-10T10:12:43.577410", + "updated_at": "2026-07-10T10:12:43.577410", + "url": "/v1/software/veterinary-practice-management-software" +} diff --git a/site/public/v1/software/veux/index.json b/site/public/v1/software/veux/index.json new file mode 100644 index 000000000000..6485e34a1b54 --- /dev/null +++ b/site/public/v1/software/veux/index.json @@ -0,0 +1,19 @@ +{ + "id": 10711, + "slug": "veux", + "name": "veux", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137554077" + ], + "created_at": "2026-07-10T10:12:43.577410", + "updated_at": "2026-07-10T10:12:43.577410", + "url": "/v1/software/veux" +} diff --git a/site/public/v1/software/veve/index.json b/site/public/v1/software/veve/index.json new file mode 100644 index 000000000000..0b87095edcd6 --- /dev/null +++ b/site/public/v1/software/veve/index.json @@ -0,0 +1,19 @@ +{ + "id": 10712, + "slug": "veve", + "name": "VeVe", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109875278" + ], + "created_at": "2026-07-10T10:12:43.578411", + "updated_at": "2026-07-10T10:12:43.578411", + "url": "/v1/software/veve" +} diff --git a/site/public/v1/software/vgacad/index.json b/site/public/v1/software/vgacad/index.json new file mode 100644 index 000000000000..0d8618aebb65 --- /dev/null +++ b/site/public/v1/software/vgacad/index.json @@ -0,0 +1,21 @@ +{ + "id": 10713, + "slug": "vgacad", + "name": "VGACAD", + "release_date": null, + "developers": [ + "Lawrence Gozum" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7906896" + ], + "created_at": "2026-07-10T10:12:43.578411", + "updated_at": "2026-07-10T10:12:43.578411", + "url": "/v1/software/vgacad" +} diff --git a/site/public/v1/software/via-browser/index.json b/site/public/v1/software/via-browser/index.json new file mode 100644 index 000000000000..f6fbc404317d --- /dev/null +++ b/site/public/v1/software/via-browser/index.json @@ -0,0 +1,19 @@ +{ + "id": 10714, + "slug": "via-browser", + "name": "Via Browser", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q61722278" + ], + "created_at": "2026-07-10T10:12:43.578411", + "updated_at": "2026-07-10T10:12:43.578411", + "url": "/v1/software/via-browser" +} diff --git a/site/public/v1/software/viaideinfo/index.json b/site/public/v1/software/viaideinfo/index.json new file mode 100644 index 000000000000..b298a39fd701 --- /dev/null +++ b/site/public/v1/software/viaideinfo/index.json @@ -0,0 +1,19 @@ +{ + "id": 10715, + "slug": "viaideinfo", + "name": "viaideinfo", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065062" + ], + "created_at": "2026-07-10T10:12:43.579410", + "updated_at": "2026-07-10T10:12:43.579410", + "url": "/v1/software/viaideinfo" +} diff --git a/site/public/v1/software/vibe3d/index.json b/site/public/v1/software/vibe3d/index.json new file mode 100644 index 000000000000..6c4f5eb9c3f8 --- /dev/null +++ b/site/public/v1/software/vibe3d/index.json @@ -0,0 +1,23 @@ +{ + "id": 10716, + "slug": "vibe3d", + "name": "Vibe3D", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "web browser" + ], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138977075" + ], + "created_at": "2026-07-10T10:12:43.579410", + "updated_at": "2026-07-10T10:12:43.579410", + "url": "/v1/software/vibe3d" +} diff --git a/site/public/v1/software/vicar-image-processing-system/index.json b/site/public/v1/software/vicar-image-processing-system/index.json new file mode 100644 index 000000000000..c3014b39c7b6 --- /dev/null +++ b/site/public/v1/software/vicar-image-processing-system/index.json @@ -0,0 +1,21 @@ +{ + "id": 10717, + "slug": "vicar-image-processing-system", + "name": "VICAR Image Processing System", + "release_date": null, + "developers": [ + "Jet Propulsion Laboratory" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60521721" + ], + "created_at": "2026-07-10T10:12:43.579410", + "updated_at": "2026-07-10T10:12:43.579410", + "url": "/v1/software/vicar-image-processing-system" +} diff --git a/site/public/v1/software/vicar2png/index.json b/site/public/v1/software/vicar2png/index.json new file mode 100644 index 000000000000..a283819de80f --- /dev/null +++ b/site/public/v1/software/vicar2png/index.json @@ -0,0 +1,23 @@ +{ + "id": 10718, + "slug": "vicar2png", + "name": "vicar2png", + "release_date": null, + "developers": [ + "Jessica McKellar" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60521734" + ], + "created_at": "2026-07-10T10:12:43.579410", + "updated_at": "2026-07-10T10:12:43.579410", + "url": "/v1/software/vicar2png" +} diff --git a/site/public/v1/software/vicidial/index.json b/site/public/v1/software/vicidial/index.json new file mode 100644 index 000000000000..fe65eca4d15f --- /dev/null +++ b/site/public/v1/software/vicidial/index.json @@ -0,0 +1,21 @@ +{ + "id": 10719, + "slug": "vicidial", + "name": "VICIdial", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "GNU General Public License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18170343" + ], + "created_at": "2026-07-10T10:12:43.580500", + "updated_at": "2026-07-10T10:12:43.580500", + "url": "/v1/software/vicidial" +} diff --git a/site/public/v1/software/vicompte/index.json b/site/public/v1/software/vicompte/index.json new file mode 100644 index 000000000000..018024303f02 --- /dev/null +++ b/site/public/v1/software/vicompte/index.json @@ -0,0 +1,21 @@ +{ + "id": 10720, + "slug": "vicompte", + "name": "ViCompte", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3556471" + ], + "created_at": "2026-07-10T10:12:43.580500", + "updated_at": "2026-07-10T10:12:43.580500", + "url": "/v1/software/vicompte" +} diff --git a/site/public/v1/software/victoria-program/index.json b/site/public/v1/software/victoria-program/index.json new file mode 100644 index 000000000000..f904ed7d0562 --- /dev/null +++ b/site/public/v1/software/victoria-program/index.json @@ -0,0 +1,27 @@ +{ + "id": 10721, + "slug": "victoria-program", + "name": "Victoria (program)", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "DOS", + "Microsoft Windows" + ], + "programming_languages": [ + "assembly language", + "Delphi" + ], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4052678" + ], + "created_at": "2026-07-10T10:12:43.580500", + "updated_at": "2026-07-10T10:12:43.580500", + "url": "/v1/software/victoria-program" +} diff --git a/site/public/v1/software/victoria/index.json b/site/public/v1/software/victoria/index.json new file mode 100644 index 000000000000..02ecd41d266a --- /dev/null +++ b/site/public/v1/software/victoria/index.json @@ -0,0 +1,21 @@ +{ + "id": 10722, + "slug": "victoria", + "name": "Victoria", + "release_date": null, + "developers": [ + "DAZ 3D" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7926525" + ], + "created_at": "2026-07-10T10:12:43.580500", + "updated_at": "2026-07-10T10:12:43.580500", + "url": "/v1/software/victoria" +} diff --git a/site/public/v1/software/video-data-editor/index.json b/site/public/v1/software/video-data-editor/index.json new file mode 100644 index 000000000000..c2f12f2a8779 --- /dev/null +++ b/site/public/v1/software/video-data-editor/index.json @@ -0,0 +1,22 @@ +{ + "id": 10723, + "slug": "video-data-editor", + "name": "Video Data Editor", + "release_date": "1987-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "shareware", + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121601197" + ], + "created_at": "2026-07-10T10:12:43.581461", + "updated_at": "2026-07-10T10:12:43.581461", + "url": "/v1/software/video-data-editor" +} diff --git a/site/public/v1/software/videopoet/index.json b/site/public/v1/software/videopoet/index.json new file mode 100644 index 000000000000..becc7b3962f4 --- /dev/null +++ b/site/public/v1/software/videopoet/index.json @@ -0,0 +1,21 @@ +{ + "id": 10724, + "slug": "videopoet", + "name": "VideoPoet", + "release_date": "2023-12-19", + "developers": [ + "Google Research" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124255589" + ], + "created_at": "2026-07-10T10:12:43.581461", + "updated_at": "2026-07-10T10:12:43.581461", + "url": "/v1/software/videopoet" +} diff --git a/site/public/v1/software/videorbits/index.json b/site/public/v1/software/videorbits/index.json new file mode 100644 index 000000000000..f6bb2130a0d3 --- /dev/null +++ b/site/public/v1/software/videorbits/index.json @@ -0,0 +1,19 @@ +{ + "id": 10725, + "slug": "videorbits", + "name": "videorbits", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63064808" + ], + "created_at": "2026-07-10T10:12:43.581461", + "updated_at": "2026-07-10T10:12:43.581461", + "url": "/v1/software/videorbits" +} diff --git a/site/public/v1/software/videoscribe/index.json b/site/public/v1/software/videoscribe/index.json new file mode 100644 index 000000000000..b53f9133d5ed --- /dev/null +++ b/site/public/v1/software/videoscribe/index.json @@ -0,0 +1,19 @@ +{ + "id": 10726, + "slug": "videoscribe", + "name": "VideoScribe", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17101746" + ], + "created_at": "2026-07-10T10:12:43.582464", + "updated_at": "2026-07-10T10:12:43.582464", + "url": "/v1/software/videoscribe" +} diff --git a/site/public/v1/software/videostreetview/index.json b/site/public/v1/software/videostreetview/index.json new file mode 100644 index 000000000000..3fa255609c6f --- /dev/null +++ b/site/public/v1/software/videostreetview/index.json @@ -0,0 +1,19 @@ +{ + "id": 10727, + "slug": "videostreetview", + "name": "VideoStreetView", + "release_date": "2009-12-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7927796" + ], + "created_at": "2026-07-10T10:12:43.582464", + "updated_at": "2026-07-10T10:12:43.582464", + "url": "/v1/software/videostreetview" +} diff --git a/site/public/v1/software/vidmate/index.json b/site/public/v1/software/vidmate/index.json new file mode 100644 index 000000000000..0ac717b8ae28 --- /dev/null +++ b/site/public/v1/software/vidmate/index.json @@ -0,0 +1,19 @@ +{ + "id": 10728, + "slug": "vidmate", + "name": "VidMate", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137380070" + ], + "created_at": "2026-07-10T10:12:43.582464", + "updated_at": "2026-07-10T10:12:43.582464", + "url": "/v1/software/vidmate" +} diff --git a/site/public/v1/software/vidsentry/index.json b/site/public/v1/software/vidsentry/index.json new file mode 100644 index 000000000000..c866ddd4969a --- /dev/null +++ b/site/public/v1/software/vidsentry/index.json @@ -0,0 +1,19 @@ +{ + "id": 10729, + "slug": "vidsentry", + "name": "VidSentry", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139270358" + ], + "created_at": "2026-07-10T10:12:43.583472", + "updated_at": "2026-07-10T10:12:43.583472", + "url": "/v1/software/vidsentry" +} diff --git a/site/public/v1/software/vienna-rna-package/index.json b/site/public/v1/software/vienna-rna-package/index.json new file mode 100644 index 000000000000..2ded5ef9c7a4 --- /dev/null +++ b/site/public/v1/software/vienna-rna-package/index.json @@ -0,0 +1,23 @@ +{ + "id": 10730, + "slug": "vienna-rna-package", + "name": "Vienna RNA Package", + "release_date": "1994-02-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Python" + ], + "licenses": [ + "free software license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q21933168" + ], + "created_at": "2026-07-10T10:12:43.583472", + "updated_at": "2026-07-10T10:12:43.583472", + "url": "/v1/software/vienna-rna-package" +} diff --git a/site/public/v1/software/view3dscene/index.json b/site/public/v1/software/view3dscene/index.json new file mode 100644 index 000000000000..0789f07b8ea9 --- /dev/null +++ b/site/public/v1/software/view3dscene/index.json @@ -0,0 +1,19 @@ +{ + "id": 10731, + "slug": "view3dscene", + "name": "view3dscene", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110788287" + ], + "created_at": "2026-07-10T10:12:43.583472", + "updated_at": "2026-07-10T10:12:43.583472", + "url": "/v1/software/view3dscene" +} diff --git a/site/public/v1/software/viewer/index.json b/site/public/v1/software/viewer/index.json new file mode 100644 index 000000000000..d0563b83502b --- /dev/null +++ b/site/public/v1/software/viewer/index.json @@ -0,0 +1,21 @@ +{ + "id": 10732, + "slug": "viewer", + "name": "ViEWER", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7924308" + ], + "created_at": "2026-07-10T10:12:43.584503", + "updated_at": "2026-07-10T10:12:43.584503", + "url": "/v1/software/viewer" +} diff --git a/site/public/v1/software/viewshare/index.json b/site/public/v1/software/viewshare/index.json new file mode 100644 index 000000000000..47decbd2ab00 --- /dev/null +++ b/site/public/v1/software/viewshare/index.json @@ -0,0 +1,19 @@ +{ + "id": 10733, + "slug": "viewshare", + "name": "Viewshare", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084708" + ], + "created_at": "2026-07-10T10:12:43.584503", + "updated_at": "2026-07-10T10:12:43.584503", + "url": "/v1/software/viewshare" +} diff --git a/site/public/v1/software/viewsheet/index.json b/site/public/v1/software/viewsheet/index.json new file mode 100644 index 000000000000..888196d6fe13 --- /dev/null +++ b/site/public/v1/software/viewsheet/index.json @@ -0,0 +1,21 @@ +{ + "id": 10734, + "slug": "viewsheet", + "name": "ViewSheet", + "release_date": "1984-01-01", + "developers": [ + "Acornsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7928741" + ], + "created_at": "2026-07-10T10:12:43.584503", + "updated_at": "2026-07-10T10:12:43.584503", + "url": "/v1/software/viewsheet" +} diff --git a/site/public/v1/software/viewsonic-wizard-2000/index.json b/site/public/v1/software/viewsonic-wizard-2000/index.json new file mode 100644 index 000000000000..5566e0c159ed --- /dev/null +++ b/site/public/v1/software/viewsonic-wizard-2000/index.json @@ -0,0 +1,23 @@ +{ + "id": 10735, + "slug": "viewsonic-wizard-2000", + "name": "ViewSonic Wizard 2000", + "release_date": null, + "developers": [ + "ViewSonic" + ], + "publishers": [], + "operating_systems": [ + "Windows 95" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q66088292" + ], + "created_at": "2026-07-10T10:12:43.585503", + "updated_at": "2026-07-10T10:12:43.585503", + "url": "/v1/software/viewsonic-wizard-2000" +} diff --git a/site/public/v1/software/viking/index.json b/site/public/v1/software/viking/index.json new file mode 100644 index 000000000000..392a4688b5eb --- /dev/null +++ b/site/public/v1/software/viking/index.json @@ -0,0 +1,21 @@ +{ + "id": 10736, + "slug": "viking", + "name": "viking", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "GNU General Public License, version 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065662" + ], + "created_at": "2026-07-10T10:12:43.585503", + "updated_at": "2026-07-10T10:12:43.585503", + "url": "/v1/software/viking" +} diff --git a/site/public/v1/software/vilistextum/index.json b/site/public/v1/software/vilistextum/index.json new file mode 100644 index 000000000000..276a2623ec7c --- /dev/null +++ b/site/public/v1/software/vilistextum/index.json @@ -0,0 +1,19 @@ +{ + "id": 10737, + "slug": "vilistextum", + "name": "Vilistextum", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110473605" + ], + "created_at": "2026-07-10T10:12:43.585503", + "updated_at": "2026-07-10T10:12:43.585503", + "url": "/v1/software/vilistextum" +} diff --git a/site/public/v1/software/vim-qt/index.json b/site/public/v1/software/vim-qt/index.json new file mode 100644 index 000000000000..487da0522905 --- /dev/null +++ b/site/public/v1/software/vim-qt/index.json @@ -0,0 +1,19 @@ +{ + "id": 10738, + "slug": "vim-qt", + "name": "vim-qt", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975550" + ], + "created_at": "2026-07-10T10:12:43.585503", + "updated_at": "2026-07-10T10:12:43.585503", + "url": "/v1/software/vim-qt" +} diff --git a/site/public/v1/software/vimball/index.json b/site/public/v1/software/vimball/index.json new file mode 100644 index 000000000000..2aae59e7c80e --- /dev/null +++ b/site/public/v1/software/vimball/index.json @@ -0,0 +1,21 @@ +{ + "id": 10739, + "slug": "vimball", + "name": "vimball", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975549" + ], + "created_at": "2026-07-10T10:12:43.586484", + "updated_at": "2026-07-10T10:12:43.586484", + "url": "/v1/software/vimball" +} diff --git a/site/public/v1/software/vimim/index.json b/site/public/v1/software/vimim/index.json new file mode 100644 index 000000000000..769c767d6c41 --- /dev/null +++ b/site/public/v1/software/vimim/index.json @@ -0,0 +1,19 @@ +{ + "id": 10740, + "slug": "vimim", + "name": "VimIM", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10853216" + ], + "created_at": "2026-07-10T10:12:43.586484", + "updated_at": "2026-07-10T10:12:43.586484", + "url": "/v1/software/vimim" +} diff --git a/site/public/v1/software/vimperator/index.json b/site/public/v1/software/vimperator/index.json new file mode 100644 index 000000000000..6c4abd6fca27 --- /dev/null +++ b/site/public/v1/software/vimperator/index.json @@ -0,0 +1,21 @@ +{ + "id": 10741, + "slug": "vimperator", + "name": "Vimperator", + "release_date": "2007-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2658672" + ], + "created_at": "2026-07-10T10:12:43.586484", + "updated_at": "2026-07-10T10:12:43.586484", + "url": "/v1/software/vimperator" +} diff --git a/site/public/v1/software/vinci/index.json b/site/public/v1/software/vinci/index.json new file mode 100644 index 000000000000..326cfead2dfe --- /dev/null +++ b/site/public/v1/software/vinci/index.json @@ -0,0 +1,19 @@ +{ + "id": 10742, + "slug": "vinci", + "name": "VINCI", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087759" + ], + "created_at": "2026-07-10T10:12:43.587508", + "updated_at": "2026-07-10T10:12:43.587508", + "url": "/v1/software/vinci" +} diff --git a/site/public/v1/software/violet/index.json b/site/public/v1/software/violet/index.json new file mode 100644 index 000000000000..456102ce144a --- /dev/null +++ b/site/public/v1/software/violet/index.json @@ -0,0 +1,19 @@ +{ + "id": 10743, + "slug": "violet", + "name": "Violet", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q15852980" + ], + "created_at": "2026-07-10T10:12:43.587508", + "updated_at": "2026-07-10T10:12:43.587508", + "url": "/v1/software/violet" +} diff --git a/site/public/v1/software/vios/index.json b/site/public/v1/software/vios/index.json new file mode 100644 index 000000000000..038e133d7185 --- /dev/null +++ b/site/public/v1/software/vios/index.json @@ -0,0 +1,23 @@ +{ + "id": 10744, + "slug": "vios", + "name": "ViOS", + "release_date": "2000-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [ + "virtual world" + ], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7924311" + ], + "created_at": "2026-07-10T10:12:43.587508", + "updated_at": "2026-07-10T10:12:43.587508", + "url": "/v1/software/vios" +} diff --git a/site/public/v1/software/vipole/index.json b/site/public/v1/software/vipole/index.json new file mode 100644 index 000000000000..3cae8facd7b3 --- /dev/null +++ b/site/public/v1/software/vipole/index.json @@ -0,0 +1,19 @@ +{ + "id": 10745, + "slug": "vipole", + "name": "VIPole", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q27791715" + ], + "created_at": "2026-07-10T10:12:43.588482", + "updated_at": "2026-07-10T10:12:43.588482", + "url": "/v1/software/vipole" +} diff --git a/site/public/v1/software/vira/index.json b/site/public/v1/software/vira/index.json new file mode 100644 index 000000000000..394802620c65 --- /dev/null +++ b/site/public/v1/software/vira/index.json @@ -0,0 +1,19 @@ +{ + "id": 10746, + "slug": "vira", + "name": "VIRA.", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138797799" + ], + "created_at": "2026-07-10T10:12:43.588482", + "updated_at": "2026-07-10T10:12:43.588482", + "url": "/v1/software/vira" +} diff --git a/site/public/v1/software/viralheat/index.json b/site/public/v1/software/viralheat/index.json new file mode 100644 index 000000000000..0a1231391200 --- /dev/null +++ b/site/public/v1/software/viralheat/index.json @@ -0,0 +1,19 @@ +{ + "id": 10747, + "slug": "viralheat", + "name": "Viralheat", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7933621" + ], + "created_at": "2026-07-10T10:12:43.588482", + "updated_at": "2026-07-10T10:12:43.589500", + "url": "/v1/software/viralheat" +} diff --git a/site/public/v1/software/vireo-sentinel/index.json b/site/public/v1/software/vireo-sentinel/index.json new file mode 100644 index 000000000000..f2b3d6ea9db5 --- /dev/null +++ b/site/public/v1/software/vireo-sentinel/index.json @@ -0,0 +1,23 @@ +{ + "id": 10748, + "slug": "vireo-sentinel", + "name": "Vireo Sentinel", + "release_date": null, + "developers": [ + "Vyklow Analytics" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138565067" + ], + "created_at": "2026-07-10T10:12:43.589500", + "updated_at": "2026-07-10T10:12:43.589500", + "url": "/v1/software/vireo-sentinel" +} diff --git a/site/public/v1/software/virglrenderer/index.json b/site/public/v1/software/virglrenderer/index.json new file mode 100644 index 000000000000..592b2da4e34c --- /dev/null +++ b/site/public/v1/software/virglrenderer/index.json @@ -0,0 +1,19 @@ +{ + "id": 10749, + "slug": "virglrenderer", + "name": "virglrenderer", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975551" + ], + "created_at": "2026-07-10T10:12:43.589500", + "updated_at": "2026-07-10T10:12:43.589500", + "url": "/v1/software/virglrenderer" +} diff --git a/site/public/v1/software/virsh/index.json b/site/public/v1/software/virsh/index.json new file mode 100644 index 000000000000..53bea5cdd039 --- /dev/null +++ b/site/public/v1/software/virsh/index.json @@ -0,0 +1,19 @@ +{ + "id": 10750, + "slug": "virsh", + "name": "virsh", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139551662" + ], + "created_at": "2026-07-10T10:12:43.589500", + "updated_at": "2026-07-10T10:12:43.589500", + "url": "/v1/software/virsh" +} diff --git a/site/public/v1/software/virtual-advanced/index.json b/site/public/v1/software/virtual-advanced/index.json new file mode 100644 index 000000000000..e202d894acae --- /dev/null +++ b/site/public/v1/software/virtual-advanced/index.json @@ -0,0 +1,19 @@ +{ + "id": 10751, + "slug": "virtual-advanced", + "name": "Virtual Advanced", + "release_date": "1990-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7934924" + ], + "created_at": "2026-07-10T10:12:43.590482", + "updated_at": "2026-07-10T10:12:43.590482", + "url": "/v1/software/virtual-advanced" +} diff --git a/site/public/v1/software/virtual-audio-cable/index.json b/site/public/v1/software/virtual-audio-cable/index.json new file mode 100644 index 000000000000..42e39cc76ddf --- /dev/null +++ b/site/public/v1/software/virtual-audio-cable/index.json @@ -0,0 +1,19 @@ +{ + "id": 10752, + "slug": "virtual-audio-cable", + "name": "Virtual Audio Cable", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7934928" + ], + "created_at": "2026-07-10T10:12:43.590482", + "updated_at": "2026-07-10T10:12:43.590482", + "url": "/v1/software/virtual-audio-cable" +} diff --git a/site/public/v1/software/virtual-cd-rom-control-panel/index.json b/site/public/v1/software/virtual-cd-rom-control-panel/index.json new file mode 100644 index 000000000000..c714992fc113 --- /dev/null +++ b/site/public/v1/software/virtual-cd-rom-control-panel/index.json @@ -0,0 +1,27 @@ +{ + "id": 10753, + "slug": "virtual-cd-rom-control-panel", + "name": "Virtual CD-ROM Control Panel", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [ + "Windows Server 2003", + "Windows Server 2008", + "Windows 7" + ], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7934934" + ], + "created_at": "2026-07-10T10:12:43.590482", + "updated_at": "2026-07-10T10:12:43.590482", + "url": "/v1/software/virtual-cd-rom-control-panel" +} diff --git a/site/public/v1/software/virtual-cell/index.json b/site/public/v1/software/virtual-cell/index.json new file mode 100644 index 000000000000..562d183507b1 --- /dev/null +++ b/site/public/v1/software/virtual-cell/index.json @@ -0,0 +1,27 @@ +{ + "id": 10754, + "slug": "virtual-cell", + "name": "Virtual Cell", + "release_date": null, + "developers": [ + "University of Connecticut Health Center" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [ + "Java" + ], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7934936" + ], + "created_at": "2026-07-10T10:12:43.591504", + "updated_at": "2026-07-10T10:12:43.591504", + "url": "/v1/software/virtual-cell" +} diff --git a/site/public/v1/software/virtual-distributed-ethernet/index.json b/site/public/v1/software/virtual-distributed-ethernet/index.json new file mode 100644 index 000000000000..d440f33dab7e --- /dev/null +++ b/site/public/v1/software/virtual-distributed-ethernet/index.json @@ -0,0 +1,19 @@ +{ + "id": 10755, + "slug": "virtual-distributed-ethernet", + "name": "Virtual Distributed Ethernet", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q9368901" + ], + "created_at": "2026-07-10T10:12:43.591504", + "updated_at": "2026-07-10T10:12:43.591504", + "url": "/v1/software/virtual-distributed-ethernet" +} diff --git a/site/public/v1/software/virtual-file-system-for-git/index.json b/site/public/v1/software/virtual-file-system-for-git/index.json new file mode 100644 index 000000000000..4ce9de5a3eb5 --- /dev/null +++ b/site/public/v1/software/virtual-file-system-for-git/index.json @@ -0,0 +1,25 @@ +{ + "id": 10756, + "slug": "virtual-file-system-for-git", + "name": "Virtual File System for Git", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q30191208" + ], + "created_at": "2026-07-10T10:12:43.591504", + "updated_at": "2026-07-10T10:12:43.591504", + "url": "/v1/software/virtual-file-system-for-git" +} diff --git a/site/public/v1/software/virtual-hosting-control-system/index.json b/site/public/v1/software/virtual-hosting-control-system/index.json new file mode 100644 index 000000000000..db46e75bcd4f --- /dev/null +++ b/site/public/v1/software/virtual-hosting-control-system/index.json @@ -0,0 +1,19 @@ +{ + "id": 10757, + "slug": "virtual-hosting-control-system", + "name": "Virtual Hosting Control System", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1416869" + ], + "created_at": "2026-07-10T10:12:43.591504", + "updated_at": "2026-07-10T10:12:43.591504", + "url": "/v1/software/virtual-hosting-control-system" +} diff --git a/site/public/v1/software/virtual-lightbox/index.json b/site/public/v1/software/virtual-lightbox/index.json new file mode 100644 index 000000000000..301279a3523c --- /dev/null +++ b/site/public/v1/software/virtual-lightbox/index.json @@ -0,0 +1,19 @@ +{ + "id": 10758, + "slug": "virtual-lightbox", + "name": "Virtual Lightbox", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084709" + ], + "created_at": "2026-07-10T10:12:43.592481", + "updated_at": "2026-07-10T10:12:43.592481", + "url": "/v1/software/virtual-lightbox" +} diff --git a/site/public/v1/software/virtual-radar-client/index.json b/site/public/v1/software/virtual-radar-client/index.json new file mode 100644 index 000000000000..e3f7153c15ab --- /dev/null +++ b/site/public/v1/software/virtual-radar-client/index.json @@ -0,0 +1,21 @@ +{ + "id": 10759, + "slug": "virtual-radar-client", + "name": "Virtual Radar Client", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7935028" + ], + "created_at": "2026-07-10T10:12:43.592481", + "updated_at": "2026-07-10T10:12:43.592481", + "url": "/v1/software/virtual-radar-client" +} diff --git a/site/public/v1/software/virtual-steel/index.json b/site/public/v1/software/virtual-steel/index.json new file mode 100644 index 000000000000..fb433e2d42c8 --- /dev/null +++ b/site/public/v1/software/virtual-steel/index.json @@ -0,0 +1,21 @@ +{ + "id": 10760, + "slug": "virtual-steel", + "name": "Virtual Steel", + "release_date": "2006-01-01", + "developers": [], + "publishers": [], + "operating_systems": [ + "Windows 11" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124535006" + ], + "created_at": "2026-07-10T10:12:43.593493", + "updated_at": "2026-07-10T10:12:43.593493", + "url": "/v1/software/virtual-steel" +} diff --git a/site/public/v1/software/virtual-tabletop-game/index.json b/site/public/v1/software/virtual-tabletop-game/index.json new file mode 100644 index 000000000000..8db39655175f --- /dev/null +++ b/site/public/v1/software/virtual-tabletop-game/index.json @@ -0,0 +1,19 @@ +{ + "id": 10761, + "slug": "virtual-tabletop-game", + "name": "virtual tabletop game", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112768277" + ], + "created_at": "2026-07-10T10:12:43.593493", + "updated_at": "2026-07-10T10:12:43.593493", + "url": "/v1/software/virtual-tabletop-game" +} diff --git a/site/public/v1/software/virtual-transcription-laboratory/index.json b/site/public/v1/software/virtual-transcription-laboratory/index.json new file mode 100644 index 000000000000..be8ab175ce97 --- /dev/null +++ b/site/public/v1/software/virtual-transcription-laboratory/index.json @@ -0,0 +1,19 @@ +{ + "id": 10762, + "slug": "virtual-transcription-laboratory", + "name": "Virtual Transcription Laboratory", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084711" + ], + "created_at": "2026-07-10T10:12:43.593493", + "updated_at": "2026-07-10T10:12:43.593493", + "url": "/v1/software/virtual-transcription-laboratory" +} diff --git a/site/public/v1/software/virtualbus/index.json b/site/public/v1/software/virtualbus/index.json new file mode 100644 index 000000000000..6822fd5ae039 --- /dev/null +++ b/site/public/v1/software/virtualbus/index.json @@ -0,0 +1,19 @@ +{ + "id": 10763, + "slug": "virtualbus", + "name": "VirtualBus", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q9368899" + ], + "created_at": "2026-07-10T10:12:43.594489", + "updated_at": "2026-07-10T10:12:43.594489", + "url": "/v1/software/virtualbus" +} diff --git a/site/public/v1/software/virtue/index.json b/site/public/v1/software/virtue/index.json new file mode 100644 index 000000000000..4b3eb9a0c055 --- /dev/null +++ b/site/public/v1/software/virtue/index.json @@ -0,0 +1,19 @@ +{ + "id": 10764, + "slug": "virtue", + "name": "Virtue", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7935213" + ], + "created_at": "2026-07-10T10:12:43.594489", + "updated_at": "2026-07-10T10:12:43.594489", + "url": "/v1/software/virtue" +} diff --git a/site/public/v1/software/virtuozzo/index.json b/site/public/v1/software/virtuozzo/index.json new file mode 100644 index 000000000000..6ac8b8142876 --- /dev/null +++ b/site/public/v1/software/virtuozzo/index.json @@ -0,0 +1,22 @@ +{ + "id": 10765, + "slug": "virtuozzo", + "name": "Virtuozzo", + "release_date": null, + "developers": [ + "Virtuozzo", + "Parallels" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1781915" + ], + "created_at": "2026-07-10T10:12:43.594489", + "updated_at": "2026-07-10T10:12:43.594489", + "url": "/v1/software/virtuozzo" +} diff --git a/site/public/v1/software/virus-chaser/index.json b/site/public/v1/software/virus-chaser/index.json new file mode 100644 index 000000000000..c025fcfe5741 --- /dev/null +++ b/site/public/v1/software/virus-chaser/index.json @@ -0,0 +1,19 @@ +{ + "id": 10766, + "slug": "virus-chaser", + "name": "Virus Chaser", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8015951" + ], + "created_at": "2026-07-10T10:12:43.595408", + "updated_at": "2026-07-10T10:12:43.595408", + "url": "/v1/software/virus-chaser" +} diff --git a/site/public/v1/software/virus-creation-laboratory/index.json b/site/public/v1/software/virus-creation-laboratory/index.json new file mode 100644 index 000000000000..82b653d4d405 --- /dev/null +++ b/site/public/v1/software/virus-creation-laboratory/index.json @@ -0,0 +1,23 @@ +{ + "id": 10767, + "slug": "virus-creation-laboratory", + "name": "Virus Creation Laboratory", + "release_date": null, + "developers": [ + "Nowhere Man" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4052735" + ], + "created_at": "2026-07-10T10:12:43.595408", + "updated_at": "2026-07-10T10:12:43.595408", + "url": "/v1/software/virus-creation-laboratory" +} diff --git a/site/public/v1/software/virusbuster/index.json b/site/public/v1/software/virusbuster/index.json new file mode 100644 index 000000000000..faeb71713ebd --- /dev/null +++ b/site/public/v1/software/virusbuster/index.json @@ -0,0 +1,19 @@ +{ + "id": 10768, + "slug": "virusbuster", + "name": "VirusBuster", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q251632" + ], + "created_at": "2026-07-10T10:12:43.595408", + "updated_at": "2026-07-10T10:12:43.595408", + "url": "/v1/software/virusbuster" +} diff --git a/site/public/v1/software/virusis/index.json b/site/public/v1/software/virusis/index.json new file mode 100644 index 000000000000..2414d4a4f0bf --- /dev/null +++ b/site/public/v1/software/virusis/index.json @@ -0,0 +1,19 @@ +{ + "id": 10769, + "slug": "virusis", + "name": "virusis", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139480144" + ], + "created_at": "2026-07-10T10:12:43.595408", + "updated_at": "2026-07-10T10:12:43.595408", + "url": "/v1/software/virusis" +} diff --git a/site/public/v1/software/visflow/index.json b/site/public/v1/software/visflow/index.json new file mode 100644 index 000000000000..a992e523a075 --- /dev/null +++ b/site/public/v1/software/visflow/index.json @@ -0,0 +1,25 @@ +{ + "id": 10770, + "slug": "visflow", + "name": "VisFlow", + "release_date": null, + "developers": [ + "Claudio Silva" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "TypeScript" + ], + "licenses": [ + "3-clause BSD License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q73036313" + ], + "created_at": "2026-07-10T10:12:43.596473", + "updated_at": "2026-07-10T10:12:43.596473", + "url": "/v1/software/visflow" +} diff --git a/site/public/v1/software/visible-human-project/index.json b/site/public/v1/software/visible-human-project/index.json new file mode 100644 index 000000000000..0ed3b74a8062 --- /dev/null +++ b/site/public/v1/software/visible-human-project/index.json @@ -0,0 +1,19 @@ +{ + "id": 10771, + "slug": "visible-human-project", + "name": "Visible Human Project", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1465456" + ], + "created_at": "2026-07-10T10:12:43.596473", + "updated_at": "2026-07-10T10:12:43.596473", + "url": "/v1/software/visible-human-project" +} diff --git a/site/public/v1/software/visible/index.json b/site/public/v1/software/visible/index.json new file mode 100644 index 000000000000..ad91cd7560f2 --- /dev/null +++ b/site/public/v1/software/visible/index.json @@ -0,0 +1,19 @@ +{ + "id": 10772, + "slug": "visible", + "name": "Visible", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116692717" + ], + "created_at": "2026-07-10T10:12:43.596473", + "updated_at": "2026-07-10T10:12:43.596473", + "url": "/v1/software/visible" +} diff --git a/site/public/v1/software/visifire/index.json b/site/public/v1/software/visifire/index.json new file mode 100644 index 000000000000..5a1363281ec3 --- /dev/null +++ b/site/public/v1/software/visifire/index.json @@ -0,0 +1,19 @@ +{ + "id": 10773, + "slug": "visifire", + "name": "Visifire", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7936099" + ], + "created_at": "2026-07-10T10:12:43.597505", + "updated_at": "2026-07-10T10:12:43.597505", + "url": "/v1/software/visifire" +} diff --git a/site/public/v1/software/vision-mobile-browser/index.json b/site/public/v1/software/vision-mobile-browser/index.json new file mode 100644 index 000000000000..37a7f945a59c --- /dev/null +++ b/site/public/v1/software/vision-mobile-browser/index.json @@ -0,0 +1,21 @@ +{ + "id": 10774, + "slug": "vision-mobile-browser", + "name": "Vision Mobile Browser", + "release_date": null, + "developers": [ + "Novarra Inc." + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7936165" + ], + "created_at": "2026-07-10T10:12:43.597505", + "updated_at": "2026-07-10T10:12:43.597505", + "url": "/v1/software/vision-mobile-browser" +} diff --git a/site/public/v1/software/visions-of-chaos/index.json b/site/public/v1/software/visions-of-chaos/index.json new file mode 100644 index 000000000000..c4f2717e88ba --- /dev/null +++ b/site/public/v1/software/visions-of-chaos/index.json @@ -0,0 +1,19 @@ +{ + "id": 10775, + "slug": "visions-of-chaos", + "name": "Visions of Chaos", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q72551416" + ], + "created_at": "2026-07-10T10:12:43.597505", + "updated_at": "2026-07-10T10:12:43.597505", + "url": "/v1/software/visions-of-chaos" +} diff --git a/site/public/v1/software/vismon/index.json b/site/public/v1/software/vismon/index.json new file mode 100644 index 000000000000..e8fc2a785684 --- /dev/null +++ b/site/public/v1/software/vismon/index.json @@ -0,0 +1,22 @@ +{ + "id": 10776, + "slug": "vismon", + "name": "Vismon", + "release_date": null, + "developers": [ + "Dave Presotto", + "Rob Pike" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7936362" + ], + "created_at": "2026-07-10T10:12:43.598487", + "updated_at": "2026-07-10T10:12:43.598487", + "url": "/v1/software/vismon" +} diff --git a/site/public/v1/software/visone/index.json b/site/public/v1/software/visone/index.json new file mode 100644 index 000000000000..3efc3f065f2e --- /dev/null +++ b/site/public/v1/software/visone/index.json @@ -0,0 +1,21 @@ +{ + "id": 10777, + "slug": "visone", + "name": "visone", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Java" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17088840" + ], + "created_at": "2026-07-10T10:12:43.598487", + "updated_at": "2026-07-10T10:12:43.598487", + "url": "/v1/software/visone" +} diff --git a/site/public/v1/software/vispy/index.json b/site/public/v1/software/vispy/index.json new file mode 100644 index 000000000000..cb38180fa7ca --- /dev/null +++ b/site/public/v1/software/vispy/index.json @@ -0,0 +1,19 @@ +{ + "id": 10778, + "slug": "vispy", + "name": "VisPy", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113050441" + ], + "created_at": "2026-07-10T10:12:43.598487", + "updated_at": "2026-07-10T10:12:43.598487", + "url": "/v1/software/vispy" +} diff --git a/site/public/v1/software/visq-q17122933/index.json b/site/public/v1/software/visq-q17122933/index.json new file mode 100644 index 000000000000..c03550f9f5af --- /dev/null +++ b/site/public/v1/software/visq-q17122933/index.json @@ -0,0 +1,19 @@ +{ + "id": 10779, + "slug": "visq-q17122933", + "name": "VISQ", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17122933" + ], + "created_at": "2026-07-10T10:12:43.599494", + "updated_at": "2026-07-10T10:12:43.599494", + "url": "/v1/software/visq-q17122933" +} diff --git a/site/public/v1/software/visq/index.json b/site/public/v1/software/visq/index.json new file mode 100644 index 000000000000..eba68410eb5c --- /dev/null +++ b/site/public/v1/software/visq/index.json @@ -0,0 +1,19 @@ +{ + "id": 10780, + "slug": "visq", + "name": "Visq", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10392012" + ], + "created_at": "2026-07-10T10:12:43.599494", + "updated_at": "2026-07-10T10:12:43.599494", + "url": "/v1/software/visq" +} diff --git a/site/public/v1/software/vissim/index.json b/site/public/v1/software/vissim/index.json new file mode 100644 index 000000000000..f80b2c445dd1 --- /dev/null +++ b/site/public/v1/software/vissim/index.json @@ -0,0 +1,25 @@ +{ + "id": 10781, + "slug": "vissim", + "name": "VISSIM", + "release_date": null, + "developers": [ + "PTV Group" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "end-user license agreement" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q844764" + ], + "created_at": "2026-07-10T10:12:43.599494", + "updated_at": "2026-07-10T10:12:43.599494", + "url": "/v1/software/vissim" +} diff --git a/site/public/v1/software/vista-transformation-pack/index.json b/site/public/v1/software/vista-transformation-pack/index.json new file mode 100644 index 000000000000..29d4ef85fb1a --- /dev/null +++ b/site/public/v1/software/vista-transformation-pack/index.json @@ -0,0 +1,19 @@ +{ + "id": 10782, + "slug": "vista-transformation-pack", + "name": "Vista Transformation Pack", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q907353" + ], + "created_at": "2026-07-10T10:12:43.599494", + "updated_at": "2026-07-10T10:12:43.599494", + "url": "/v1/software/vista-transformation-pack" +} diff --git a/site/public/v1/software/vistape/index.json b/site/public/v1/software/vistape/index.json new file mode 100644 index 000000000000..3b81aa09a99a --- /dev/null +++ b/site/public/v1/software/vistape/index.json @@ -0,0 +1,19 @@ +{ + "id": 10783, + "slug": "vistape", + "name": "VistaPE", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1446659" + ], + "created_at": "2026-07-10T10:12:43.600484", + "updated_at": "2026-07-10T10:12:43.600484", + "url": "/v1/software/vistape" +} diff --git a/site/public/v1/software/visual-bcd-editor/index.json b/site/public/v1/software/visual-bcd-editor/index.json new file mode 100644 index 000000000000..0b8318e913e6 --- /dev/null +++ b/site/public/v1/software/visual-bcd-editor/index.json @@ -0,0 +1,21 @@ +{ + "id": 10784, + "slug": "visual-bcd-editor", + "name": "Visual BCD Editor", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q94410258" + ], + "created_at": "2026-07-10T10:12:43.600484", + "updated_at": "2026-07-10T10:12:43.600484", + "url": "/v1/software/visual-bcd-editor" +} diff --git a/site/public/v1/software/visual-browser/index.json b/site/public/v1/software/visual-browser/index.json new file mode 100644 index 000000000000..f4ecb715fe7a --- /dev/null +++ b/site/public/v1/software/visual-browser/index.json @@ -0,0 +1,19 @@ +{ + "id": 10785, + "slug": "visual-browser", + "name": "Visual Browser", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084712" + ], + "created_at": "2026-07-10T10:12:43.601494", + "updated_at": "2026-07-10T10:12:43.601494", + "url": "/v1/software/visual-browser" +} diff --git a/site/public/v1/software/visual-builder/index.json b/site/public/v1/software/visual-builder/index.json new file mode 100644 index 000000000000..c26b8a084ded --- /dev/null +++ b/site/public/v1/software/visual-builder/index.json @@ -0,0 +1,19 @@ +{ + "id": 10786, + "slug": "visual-builder", + "name": "Visual Builder", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105745458" + ], + "created_at": "2026-07-10T10:12:43.601494", + "updated_at": "2026-07-10T10:12:43.601494", + "url": "/v1/software/visual-builder" +} diff --git a/site/public/v1/software/visual-caf/index.json b/site/public/v1/software/visual-caf/index.json new file mode 100644 index 000000000000..b3067a6e4c67 --- /dev/null +++ b/site/public/v1/software/visual-caf/index.json @@ -0,0 +1,19 @@ +{ + "id": 10787, + "slug": "visual-caf", + "name": "Visual Café", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7936540" + ], + "created_at": "2026-07-10T10:12:43.601494", + "updated_at": "2026-07-10T10:12:43.601494", + "url": "/v1/software/visual-caf" +} diff --git a/site/public/v1/software/visual-compliance/index.json b/site/public/v1/software/visual-compliance/index.json new file mode 100644 index 000000000000..3030bca9abd4 --- /dev/null +++ b/site/public/v1/software/visual-compliance/index.json @@ -0,0 +1,21 @@ +{ + "id": 10788, + "slug": "visual-compliance", + "name": "Visual Compliance", + "release_date": null, + "developers": [ + "ECustoms" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7936543" + ], + "created_at": "2026-07-10T10:12:43.601494", + "updated_at": "2026-07-10T10:12:43.601494", + "url": "/v1/software/visual-compliance" +} diff --git a/site/public/v1/software/visual-expert/index.json b/site/public/v1/software/visual-expert/index.json new file mode 100644 index 000000000000..09c2e39fe7e5 --- /dev/null +++ b/site/public/v1/software/visual-expert/index.json @@ -0,0 +1,19 @@ +{ + "id": 10789, + "slug": "visual-expert", + "name": "Visual Expert", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q30640379" + ], + "created_at": "2026-07-10T10:12:43.602564", + "updated_at": "2026-07-10T10:12:43.602564", + "url": "/v1/software/visual-expert" +} diff --git a/site/public/v1/software/visual-installer/index.json b/site/public/v1/software/visual-installer/index.json new file mode 100644 index 000000000000..cbc663122683 --- /dev/null +++ b/site/public/v1/software/visual-installer/index.json @@ -0,0 +1,19 @@ +{ + "id": 10790, + "slug": "visual-installer", + "name": "Visual Installer", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6389140" + ], + "created_at": "2026-07-10T10:12:43.602564", + "updated_at": "2026-07-10T10:12:43.602564", + "url": "/v1/software/visual-installer" +} diff --git a/site/public/v1/software/visual-intercept/index.json b/site/public/v1/software/visual-intercept/index.json new file mode 100644 index 000000000000..8ff9d8045928 --- /dev/null +++ b/site/public/v1/software/visual-intercept/index.json @@ -0,0 +1,19 @@ +{ + "id": 10791, + "slug": "visual-intercept", + "name": "Visual Intercept", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7936557" + ], + "created_at": "2026-07-10T10:12:43.602564", + "updated_at": "2026-07-10T10:12:43.602564", + "url": "/v1/software/visual-intercept" +} diff --git a/site/public/v1/software/visual-mind/index.json b/site/public/v1/software/visual-mind/index.json new file mode 100644 index 000000000000..1321aef4ae5d --- /dev/null +++ b/site/public/v1/software/visual-mind/index.json @@ -0,0 +1,19 @@ +{ + "id": 10792, + "slug": "visual-mind", + "name": "Visual Mind", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10716210" + ], + "created_at": "2026-07-10T10:12:43.602564", + "updated_at": "2026-07-10T10:12:43.602564", + "url": "/v1/software/visual-mind" +} diff --git a/site/public/v1/software/visual-nature-studio/index.json b/site/public/v1/software/visual-nature-studio/index.json new file mode 100644 index 000000000000..ddb95c44b01d --- /dev/null +++ b/site/public/v1/software/visual-nature-studio/index.json @@ -0,0 +1,21 @@ +{ + "id": 10793, + "slug": "visual-nature-studio", + "name": "Visual Nature Studio", + "release_date": "2001-01-01", + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7936562" + ], + "created_at": "2026-07-10T10:12:43.603921", + "updated_at": "2026-07-10T10:12:43.603921", + "url": "/v1/software/visual-nature-studio" +} diff --git a/site/public/v1/software/visual-sentinel/index.json b/site/public/v1/software/visual-sentinel/index.json new file mode 100644 index 000000000000..245a099821dd --- /dev/null +++ b/site/public/v1/software/visual-sentinel/index.json @@ -0,0 +1,21 @@ +{ + "id": 10794, + "slug": "visual-sentinel", + "name": "Visual Sentinel", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "TypeScript" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139586810" + ], + "created_at": "2026-07-10T10:12:43.603921", + "updated_at": "2026-07-10T10:12:43.603921", + "url": "/v1/software/visual-sentinel" +} diff --git a/site/public/v1/software/visual-studio-2005/index.json b/site/public/v1/software/visual-studio-2005/index.json new file mode 100644 index 000000000000..2d794b181dd8 --- /dev/null +++ b/site/public/v1/software/visual-studio-2005/index.json @@ -0,0 +1,21 @@ +{ + "id": 10795, + "slug": "visual-studio-2005", + "name": "Visual Studio 2005", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115117171" + ], + "created_at": "2026-07-10T10:12:43.603921", + "updated_at": "2026-07-10T10:12:43.603921", + "url": "/v1/software/visual-studio-2005" +} diff --git a/site/public/v1/software/visual-studio-2012/index.json b/site/public/v1/software/visual-studio-2012/index.json new file mode 100644 index 000000000000..8e27e8257b4c --- /dev/null +++ b/site/public/v1/software/visual-studio-2012/index.json @@ -0,0 +1,21 @@ +{ + "id": 10796, + "slug": "visual-studio-2012", + "name": "Visual studio 2012", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131374634" + ], + "created_at": "2026-07-10T10:12:43.604931", + "updated_at": "2026-07-10T10:12:43.604931", + "url": "/v1/software/visual-studio-2012" +} diff --git a/site/public/v1/software/visual-studio-2022/index.json b/site/public/v1/software/visual-studio-2022/index.json new file mode 100644 index 000000000000..8217b53f50a5 --- /dev/null +++ b/site/public/v1/software/visual-studio-2022/index.json @@ -0,0 +1,21 @@ +{ + "id": 10797, + "slug": "visual-studio-2022", + "name": "Visual Studio 2022", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125214383" + ], + "created_at": "2026-07-10T10:12:43.604931", + "updated_at": "2026-07-10T10:12:43.604931", + "url": "/v1/software/visual-studio-2022" +} diff --git a/site/public/v1/software/visual-test/index.json b/site/public/v1/software/visual-test/index.json new file mode 100644 index 000000000000..2611b8c3043f --- /dev/null +++ b/site/public/v1/software/visual-test/index.json @@ -0,0 +1,23 @@ +{ + "id": 10798, + "slug": "visual-test", + "name": "Visual Test", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7936576" + ], + "created_at": "2026-07-10T10:12:43.604931", + "updated_at": "2026-07-10T10:12:43.604931", + "url": "/v1/software/visual-test" +} diff --git a/site/public/v1/software/visualarq/index.json b/site/public/v1/software/visualarq/index.json new file mode 100644 index 000000000000..887e7b19fee9 --- /dev/null +++ b/site/public/v1/software/visualarq/index.json @@ -0,0 +1,21 @@ +{ + "id": 10799, + "slug": "visualarq", + "name": "VisualARQ", + "release_date": "2009-12-01", + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17145537" + ], + "created_at": "2026-07-10T10:12:43.604931", + "updated_at": "2026-07-10T10:12:43.604931", + "url": "/v1/software/visualarq" +} diff --git a/site/public/v1/software/visualcron/index.json b/site/public/v1/software/visualcron/index.json new file mode 100644 index 000000000000..c63224539bd0 --- /dev/null +++ b/site/public/v1/software/visualcron/index.json @@ -0,0 +1,19 @@ +{ + "id": 10800, + "slug": "visualcron", + "name": "VisualCron", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7936513" + ], + "created_at": "2026-07-10T10:12:43.606004", + "updated_at": "2026-07-10T10:12:43.606004", + "url": "/v1/software/visualcron" +} diff --git a/site/public/v1/software/visualeyes/index.json b/site/public/v1/software/visualeyes/index.json new file mode 100644 index 000000000000..0ff0e70674eb --- /dev/null +++ b/site/public/v1/software/visualeyes/index.json @@ -0,0 +1,19 @@ +{ + "id": 10801, + "slug": "visualeyes", + "name": "VisualEyes", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084714" + ], + "created_at": "2026-07-10T10:12:43.606004", + "updated_at": "2026-07-10T10:12:43.606004", + "url": "/v1/software/visualeyes" +} diff --git a/site/public/v1/software/visualfea/index.json b/site/public/v1/software/visualfea/index.json new file mode 100644 index 000000000000..ffc481f559cb --- /dev/null +++ b/site/public/v1/software/visualfea/index.json @@ -0,0 +1,22 @@ +{ + "id": 10802, + "slug": "visualfea", + "name": "VisualFEA", + "release_date": "2000-01-01", + "developers": [], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7936514" + ], + "created_at": "2026-07-10T10:12:43.606004", + "updated_at": "2026-07-10T10:12:43.606004", + "url": "/v1/software/visualfea" +} diff --git a/site/public/v1/software/visualize-free/index.json b/site/public/v1/software/visualize-free/index.json new file mode 100644 index 000000000000..6bc81a19acc0 --- /dev/null +++ b/site/public/v1/software/visualize-free/index.json @@ -0,0 +1,19 @@ +{ + "id": 10803, + "slug": "visualize-free", + "name": "Visualize Free", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084715" + ], + "created_at": "2026-07-10T10:12:43.607011", + "updated_at": "2026-07-10T10:12:43.607011", + "url": "/v1/software/visualize-free" +} diff --git a/site/public/v1/software/visualizing-literature-sentiment/index.json b/site/public/v1/software/visualizing-literature-sentiment/index.json new file mode 100644 index 000000000000..5a6d6464e2c5 --- /dev/null +++ b/site/public/v1/software/visualizing-literature-sentiment/index.json @@ -0,0 +1,19 @@ +{ + "id": 10804, + "slug": "visualizing-literature-sentiment", + "name": "Visualizing Literature: Sentiment", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084716" + ], + "created_at": "2026-07-10T10:12:43.607011", + "updated_at": "2026-07-10T10:12:43.607011", + "url": "/v1/software/visualizing-literature-sentiment" +} diff --git a/site/public/v1/software/visualizing-literature-virtue-and-vice/index.json b/site/public/v1/software/visualizing-literature-virtue-and-vice/index.json new file mode 100644 index 000000000000..f825301a6d91 --- /dev/null +++ b/site/public/v1/software/visualizing-literature-virtue-and-vice/index.json @@ -0,0 +1,19 @@ +{ + "id": 10805, + "slug": "visualizing-literature-virtue-and-vice", + "name": "Visualizing Literature: Virtue and Vice", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084717" + ], + "created_at": "2026-07-10T10:12:43.607011", + "updated_at": "2026-07-10T10:12:43.607011", + "url": "/v1/software/visualizing-literature-virtue-and-vice" +} diff --git a/site/public/v1/software/visualsim-architect/index.json b/site/public/v1/software/visualsim-architect/index.json new file mode 100644 index 000000000000..ccb1a8752903 --- /dev/null +++ b/site/public/v1/software/visualsim-architect/index.json @@ -0,0 +1,19 @@ +{ + "id": 10806, + "slug": "visualsim-architect", + "name": "VisualSim Architect", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q24765373" + ], + "created_at": "2026-07-10T10:12:43.608007", + "updated_at": "2026-07-10T10:12:43.608007", + "url": "/v1/software/visualsim-architect" +} diff --git a/site/public/v1/software/visualsvn-server/index.json b/site/public/v1/software/visualsvn-server/index.json new file mode 100644 index 000000000000..1c9a2eb861b3 --- /dev/null +++ b/site/public/v1/software/visualsvn-server/index.json @@ -0,0 +1,19 @@ +{ + "id": 10807, + "slug": "visualsvn-server", + "name": "VisualSVN Server", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7936518" + ], + "created_at": "2026-07-10T10:12:43.608007", + "updated_at": "2026-07-10T10:12:43.608007", + "url": "/v1/software/visualsvn-server" +} diff --git a/site/public/v1/software/visualsvn/index.json b/site/public/v1/software/visualsvn/index.json new file mode 100644 index 000000000000..4605327fae3c --- /dev/null +++ b/site/public/v1/software/visualsvn/index.json @@ -0,0 +1,19 @@ +{ + "id": 10808, + "slug": "visualsvn", + "name": "VisualSVN", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3561121" + ], + "created_at": "2026-07-10T10:12:43.608007", + "updated_at": "2026-07-10T10:12:43.608007", + "url": "/v1/software/visualsvn" +} diff --git a/site/public/v1/software/visuwords/index.json b/site/public/v1/software/visuwords/index.json new file mode 100644 index 000000000000..8f4f7a0a581f --- /dev/null +++ b/site/public/v1/software/visuwords/index.json @@ -0,0 +1,19 @@ +{ + "id": 10809, + "slug": "visuwords", + "name": "VisuWords", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084718" + ], + "created_at": "2026-07-10T10:12:43.609049", + "updated_at": "2026-07-10T10:12:43.609049", + "url": "/v1/software/visuwords" +} diff --git a/site/public/v1/software/vit/index.json b/site/public/v1/software/vit/index.json new file mode 100644 index 000000000000..b36a56725aec --- /dev/null +++ b/site/public/v1/software/vit/index.json @@ -0,0 +1,19 @@ +{ + "id": 10810, + "slug": "vit", + "name": "vit", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975552" + ], + "created_at": "2026-07-10T10:12:43.609049", + "updated_at": "2026-07-10T10:12:43.609049", + "url": "/v1/software/vit" +} diff --git a/site/public/v1/software/vital/index.json b/site/public/v1/software/vital/index.json new file mode 100644 index 000000000000..fe55e15a12a8 --- /dev/null +++ b/site/public/v1/software/vital/index.json @@ -0,0 +1,19 @@ +{ + "id": 10811, + "slug": "vital", + "name": "VITAL", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q96413215" + ], + "created_at": "2026-07-10T10:12:43.609049", + "updated_at": "2026-07-10T10:12:43.610016", + "url": "/v1/software/vital" +} diff --git a/site/public/v1/software/vitalibot/index.json b/site/public/v1/software/vitalibot/index.json new file mode 100644 index 000000000000..2d61e580c5dd --- /dev/null +++ b/site/public/v1/software/vitalibot/index.json @@ -0,0 +1,19 @@ +{ + "id": 10812, + "slug": "vitalibot", + "name": "VitaliBot", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140042977" + ], + "created_at": "2026-07-10T10:12:43.610016", + "updated_at": "2026-07-10T10:12:43.610016", + "url": "/v1/software/vitalibot" +} diff --git a/site/public/v1/software/vitalize/index.json b/site/public/v1/software/vitalize/index.json new file mode 100644 index 000000000000..b8dd82a207c7 --- /dev/null +++ b/site/public/v1/software/vitalize/index.json @@ -0,0 +1,19 @@ +{ + "id": 10813, + "slug": "vitalize", + "name": "Vitalize!", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7936912" + ], + "created_at": "2026-07-10T10:12:43.610016", + "updated_at": "2026-07-10T10:12:43.610016", + "url": "/v1/software/vitalize" +} diff --git a/site/public/v1/software/vitek/index.json b/site/public/v1/software/vitek/index.json new file mode 100644 index 000000000000..7d4c51d381fb --- /dev/null +++ b/site/public/v1/software/vitek/index.json @@ -0,0 +1,19 @@ +{ + "id": 10814, + "slug": "vitek", + "name": "VITEK", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117831073" + ], + "created_at": "2026-07-10T10:12:43.610016", + "updated_at": "2026-07-10T10:12:43.610016", + "url": "/v1/software/vitek" +} diff --git a/site/public/v1/software/vive/index.json b/site/public/v1/software/vive/index.json new file mode 100644 index 000000000000..7fbc46570656 --- /dev/null +++ b/site/public/v1/software/vive/index.json @@ -0,0 +1,21 @@ +{ + "id": 10815, + "slug": "vive", + "name": "Vive", + "release_date": "2014-06-01", + "developers": [], + "publishers": [], + "operating_systems": [ + "iOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18575104" + ], + "created_at": "2026-07-10T10:12:43.611024", + "updated_at": "2026-07-10T10:12:43.611024", + "url": "/v1/software/vive" +} diff --git a/site/public/v1/software/vivibook/index.json b/site/public/v1/software/vivibook/index.json new file mode 100644 index 000000000000..c9f8d2e3c708 --- /dev/null +++ b/site/public/v1/software/vivibook/index.json @@ -0,0 +1,19 @@ +{ + "id": 10816, + "slug": "vivibook", + "name": "ViviBook", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139622471" + ], + "created_at": "2026-07-10T10:12:43.611024", + "updated_at": "2026-07-10T10:12:43.611024", + "url": "/v1/software/vivibook" +} diff --git a/site/public/v1/software/vivliostyle/index.json b/site/public/v1/software/vivliostyle/index.json new file mode 100644 index 000000000000..1b7dd7794b03 --- /dev/null +++ b/site/public/v1/software/vivliostyle/index.json @@ -0,0 +1,21 @@ +{ + "id": 10817, + "slug": "vivliostyle", + "name": "Vivliostyle", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "TypeScript" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q96473517" + ], + "created_at": "2026-07-10T10:12:43.611024", + "updated_at": "2026-07-10T10:12:43.611024", + "url": "/v1/software/vivliostyle" +} diff --git a/site/public/v1/software/vivo-software/index.json b/site/public/v1/software/vivo-software/index.json new file mode 100644 index 000000000000..0ff357c0d64e --- /dev/null +++ b/site/public/v1/software/vivo-software/index.json @@ -0,0 +1,19 @@ +{ + "id": 10818, + "slug": "vivo-software", + "name": "Vivo Software", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7937937" + ], + "created_at": "2026-07-10T10:12:43.612055", + "updated_at": "2026-07-10T10:12:43.612055", + "url": "/v1/software/vivo-software" +} diff --git a/site/public/v1/software/vivoactive/index.json b/site/public/v1/software/vivoactive/index.json new file mode 100644 index 000000000000..4c14b9957a7c --- /dev/null +++ b/site/public/v1/software/vivoactive/index.json @@ -0,0 +1,19 @@ +{ + "id": 10819, + "slug": "vivoactive", + "name": "VivoActive", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7937927" + ], + "created_at": "2026-07-10T10:12:43.612055", + "updated_at": "2026-07-10T10:12:43.612055", + "url": "/v1/software/vivoactive" +} diff --git a/site/public/v1/software/vizastar/index.json b/site/public/v1/software/vizastar/index.json new file mode 100644 index 000000000000..ba35a8df629c --- /dev/null +++ b/site/public/v1/software/vizastar/index.json @@ -0,0 +1,19 @@ +{ + "id": 10820, + "slug": "vizastar", + "name": "Vizastar", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7937995" + ], + "created_at": "2026-07-10T10:12:43.612055", + "updated_at": "2026-07-10T10:12:43.612055", + "url": "/v1/software/vizastar" +} diff --git a/site/public/v1/software/vizcon/index.json b/site/public/v1/software/vizcon/index.json new file mode 100644 index 000000000000..e59fa50d7c6d --- /dev/null +++ b/site/public/v1/software/vizcon/index.json @@ -0,0 +1,19 @@ +{ + "id": 10821, + "slug": "vizcon", + "name": "VizCon", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139579996" + ], + "created_at": "2026-07-10T10:12:43.613019", + "updated_at": "2026-07-10T10:12:43.613019", + "url": "/v1/software/vizcon" +} diff --git a/site/public/v1/software/vizerra/index.json b/site/public/v1/software/vizerra/index.json new file mode 100644 index 000000000000..8483adf47c1e --- /dev/null +++ b/site/public/v1/software/vizerra/index.json @@ -0,0 +1,19 @@ +{ + "id": 10822, + "slug": "vizerra", + "name": "Vizerra", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4052767" + ], + "created_at": "2026-07-10T10:12:43.613019", + "updated_at": "2026-07-10T10:12:43.613019", + "url": "/v1/software/vizerra" +} diff --git a/site/public/v1/software/vizex-reader/index.json b/site/public/v1/software/vizex-reader/index.json new file mode 100644 index 000000000000..4deb95d7a80d --- /dev/null +++ b/site/public/v1/software/vizex-reader/index.json @@ -0,0 +1,19 @@ +{ + "id": 10823, + "slug": "vizex-reader", + "name": "VizEx Reader", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q61413072" + ], + "created_at": "2026-07-10T10:12:43.614018", + "updated_at": "2026-07-10T10:12:43.614018", + "url": "/v1/software/vizex-reader" +} diff --git a/site/public/v1/software/viziapps/index.json b/site/public/v1/software/viziapps/index.json new file mode 100644 index 000000000000..b255fdb54e84 --- /dev/null +++ b/site/public/v1/software/viziapps/index.json @@ -0,0 +1,21 @@ +{ + "id": 10824, + "slug": "viziapps", + "name": "ViziApps", + "release_date": null, + "developers": [ + "ViziApps" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7938015" + ], + "created_at": "2026-07-10T10:12:43.614018", + "updated_at": "2026-07-10T10:12:43.614018", + "url": "/v1/software/viziapps" +} diff --git a/site/public/v1/software/vizumed/index.json b/site/public/v1/software/vizumed/index.json new file mode 100644 index 000000000000..4056c995fefd --- /dev/null +++ b/site/public/v1/software/vizumed/index.json @@ -0,0 +1,19 @@ +{ + "id": 10825, + "slug": "vizumed", + "name": "Vizumed", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139918701" + ], + "created_at": "2026-07-10T10:12:43.614018", + "updated_at": "2026-07-10T10:12:43.614018", + "url": "/v1/software/vizumed" +} diff --git a/site/public/v1/software/vk-gl-cts/index.json b/site/public/v1/software/vk-gl-cts/index.json new file mode 100644 index 000000000000..87877ba79169 --- /dev/null +++ b/site/public/v1/software/vk-gl-cts/index.json @@ -0,0 +1,21 @@ +{ + "id": 10826, + "slug": "vk-gl-cts", + "name": "VK-GL-CTS", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Apache Software License 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q119982997" + ], + "created_at": "2026-07-10T10:12:43.614018", + "updated_at": "2026-07-10T10:12:43.614018", + "url": "/v1/software/vk-gl-cts" +} diff --git a/site/public/v1/software/vkd3d/index.json b/site/public/v1/software/vkd3d/index.json new file mode 100644 index 000000000000..d45b115c0ff9 --- /dev/null +++ b/site/public/v1/software/vkd3d/index.json @@ -0,0 +1,21 @@ +{ + "id": 10827, + "slug": "vkd3d", + "name": "VKD3D", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "GNU Lesser General Public License, version 2.1 or later" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116392057" + ], + "created_at": "2026-07-10T10:12:43.615028", + "updated_at": "2026-07-10T10:12:43.615028", + "url": "/v1/software/vkd3d" +} diff --git a/site/public/v1/software/vm-software/index.json b/site/public/v1/software/vm-software/index.json new file mode 100644 index 000000000000..5f6d9b56b2eb --- /dev/null +++ b/site/public/v1/software/vm-software/index.json @@ -0,0 +1,19 @@ +{ + "id": 10828, + "slug": "vm-software", + "name": "VM Software", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107675362" + ], + "created_at": "2026-07-10T10:12:43.615028", + "updated_at": "2026-07-10T10:12:43.615028", + "url": "/v1/software/vm-software" +} diff --git a/site/public/v1/software/vmmark/index.json b/site/public/v1/software/vmmark/index.json new file mode 100644 index 000000000000..445f473dcd62 --- /dev/null +++ b/site/public/v1/software/vmmark/index.json @@ -0,0 +1,21 @@ +{ + "id": 10829, + "slug": "vmmark", + "name": "VMmark", + "release_date": null, + "developers": [ + "VMware" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7907328" + ], + "created_at": "2026-07-10T10:12:43.615028", + "updated_at": "2026-07-10T10:12:43.615028", + "url": "/v1/software/vmmark" +} diff --git a/site/public/v1/software/vmprotect/index.json b/site/public/v1/software/vmprotect/index.json new file mode 100644 index 000000000000..4a58cf7bf33b --- /dev/null +++ b/site/public/v1/software/vmprotect/index.json @@ -0,0 +1,19 @@ +{ + "id": 10830, + "slug": "vmprotect", + "name": "VMProtect", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q59783688" + ], + "created_at": "2026-07-10T10:12:43.615028", + "updated_at": "2026-07-10T10:12:43.615028", + "url": "/v1/software/vmprotect" +} diff --git a/site/public/v1/software/vmware-infrastructure/index.json b/site/public/v1/software/vmware-infrastructure/index.json new file mode 100644 index 000000000000..b17381639622 --- /dev/null +++ b/site/public/v1/software/vmware-infrastructure/index.json @@ -0,0 +1,21 @@ +{ + "id": 10831, + "slug": "vmware-infrastructure", + "name": "VMware Infrastructure", + "release_date": null, + "developers": [ + "VMware" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7907330" + ], + "created_at": "2026-07-10T10:12:43.615028", + "updated_at": "2026-07-10T10:12:43.615028", + "url": "/v1/software/vmware-infrastructure" +} diff --git a/site/public/v1/software/vmware-powercli/index.json b/site/public/v1/software/vmware-powercli/index.json new file mode 100644 index 000000000000..371427f2963d --- /dev/null +++ b/site/public/v1/software/vmware-powercli/index.json @@ -0,0 +1,19 @@ +{ + "id": 10832, + "slug": "vmware-powercli", + "name": "VMware PowerCLI", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16935481" + ], + "created_at": "2026-07-10T10:12:43.616599", + "updated_at": "2026-07-10T10:12:43.616599", + "url": "/v1/software/vmware-powercli" +} diff --git a/site/public/v1/software/vmware-service-manager/index.json b/site/public/v1/software/vmware-service-manager/index.json new file mode 100644 index 000000000000..71b7100f5d7e --- /dev/null +++ b/site/public/v1/software/vmware-service-manager/index.json @@ -0,0 +1,21 @@ +{ + "id": 10833, + "slug": "vmware-service-manager", + "name": "VMware Service Manager", + "release_date": null, + "developers": [ + "VMware" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7907331" + ], + "created_at": "2026-07-10T10:12:43.616599", + "updated_at": "2026-07-10T10:12:43.616599", + "url": "/v1/software/vmware-service-manager" +} diff --git a/site/public/v1/software/vmware-thinapp/index.json b/site/public/v1/software/vmware-thinapp/index.json new file mode 100644 index 000000000000..8a3f6a1a8c54 --- /dev/null +++ b/site/public/v1/software/vmware-thinapp/index.json @@ -0,0 +1,23 @@ +{ + "id": 10834, + "slug": "vmware-thinapp", + "name": "VMware ThinApp", + "release_date": null, + "developers": [ + "VMware" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2036703" + ], + "created_at": "2026-07-10T10:12:43.616599", + "updated_at": "2026-07-10T10:12:43.616599", + "url": "/v1/software/vmware-thinapp" +} diff --git a/site/public/v1/software/vmware-vsphere/index.json b/site/public/v1/software/vmware-vsphere/index.json new file mode 100644 index 000000000000..22d07b85ed65 --- /dev/null +++ b/site/public/v1/software/vmware-vsphere/index.json @@ -0,0 +1,21 @@ +{ + "id": 10835, + "slug": "vmware-vsphere", + "name": "VMware vSphere", + "release_date": null, + "developers": [ + "VMware" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7881459" + ], + "created_at": "2026-07-10T10:12:43.617707", + "updated_at": "2026-07-10T10:12:43.617707", + "url": "/v1/software/vmware-vsphere" +} diff --git a/site/public/v1/software/vns3/index.json b/site/public/v1/software/vns3/index.json new file mode 100644 index 000000000000..0f666dac5b4a --- /dev/null +++ b/site/public/v1/software/vns3/index.json @@ -0,0 +1,19 @@ +{ + "id": 10836, + "slug": "vns3", + "name": "VNS3", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17088899" + ], + "created_at": "2026-07-10T10:12:43.617707", + "updated_at": "2026-07-10T10:12:43.617707", + "url": "/v1/software/vns3" +} diff --git a/site/public/v1/software/vo-aacenc/index.json b/site/public/v1/software/vo-aacenc/index.json new file mode 100644 index 000000000000..13b6386c843f --- /dev/null +++ b/site/public/v1/software/vo-aacenc/index.json @@ -0,0 +1,21 @@ +{ + "id": 10837, + "slug": "vo-aacenc", + "name": "vo-aacenc", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Apache License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975553" + ], + "created_at": "2026-07-10T10:12:43.617707", + "updated_at": "2026-07-10T10:12:43.617707", + "url": "/v1/software/vo-aacenc" +} diff --git a/site/public/v1/software/vo-amrwbenc/index.json b/site/public/v1/software/vo-amrwbenc/index.json new file mode 100644 index 000000000000..48a64f13c85f --- /dev/null +++ b/site/public/v1/software/vo-amrwbenc/index.json @@ -0,0 +1,21 @@ +{ + "id": 10838, + "slug": "vo-amrwbenc", + "name": "vo-amrwbenc", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Apache License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975554" + ], + "created_at": "2026-07-10T10:12:43.618611", + "updated_at": "2026-07-10T10:12:43.618611", + "url": "/v1/software/vo-amrwbenc" +} diff --git a/site/public/v1/software/voacap/index.json b/site/public/v1/software/voacap/index.json new file mode 100644 index 000000000000..1fd8b5c59746 --- /dev/null +++ b/site/public/v1/software/voacap/index.json @@ -0,0 +1,19 @@ +{ + "id": 10839, + "slug": "voacap", + "name": "VOACAP", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7907360" + ], + "created_at": "2026-07-10T10:12:43.618611", + "updated_at": "2026-07-10T10:12:43.618611", + "url": "/v1/software/voacap" +} diff --git a/site/public/v1/software/vocab-u-lister/index.json b/site/public/v1/software/vocab-u-lister/index.json new file mode 100644 index 000000000000..4f71d75ee297 --- /dev/null +++ b/site/public/v1/software/vocab-u-lister/index.json @@ -0,0 +1,19 @@ +{ + "id": 10840, + "slug": "vocab-u-lister", + "name": "VOCAB - U - LISTER", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084719" + ], + "created_at": "2026-07-10T10:12:43.619607", + "updated_at": "2026-07-10T10:12:43.619607", + "url": "/v1/software/vocab-u-lister" +} diff --git a/site/public/v1/software/vocalina/index.json b/site/public/v1/software/vocalina/index.json new file mode 100644 index 000000000000..fa86b4d09308 --- /dev/null +++ b/site/public/v1/software/vocalina/index.json @@ -0,0 +1,19 @@ +{ + "id": 10841, + "slug": "vocalina", + "name": "Vocalina", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q12598450" + ], + "created_at": "2026-07-10T10:12:43.619607", + "updated_at": "2026-07-10T10:12:43.619607", + "url": "/v1/software/vocalina" +} diff --git a/site/public/v1/software/vocaloid-6/index.json b/site/public/v1/software/vocaloid-6/index.json new file mode 100644 index 000000000000..9e61b73def25 --- /dev/null +++ b/site/public/v1/software/vocaloid-6/index.json @@ -0,0 +1,19 @@ +{ + "id": 10842, + "slug": "vocaloid-6", + "name": "Vocaloid 6", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q128390017" + ], + "created_at": "2026-07-10T10:12:43.619607", + "updated_at": "2026-07-10T10:12:43.619607", + "url": "/v1/software/vocaloid-6" +} diff --git a/site/public/v1/software/vocaloid-editor-for-cubase/index.json b/site/public/v1/software/vocaloid-editor-for-cubase/index.json new file mode 100644 index 000000000000..b93968359fc1 --- /dev/null +++ b/site/public/v1/software/vocaloid-editor-for-cubase/index.json @@ -0,0 +1,19 @@ +{ + "id": 10843, + "slug": "vocaloid-editor-for-cubase", + "name": "Vocaloid Editor for Cubase", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25103832" + ], + "created_at": "2026-07-10T10:12:43.619607", + "updated_at": "2026-07-10T10:12:43.619607", + "url": "/v1/software/vocaloid-editor-for-cubase" +} diff --git a/site/public/v1/software/vocalowitter/index.json b/site/public/v1/software/vocalowitter/index.json new file mode 100644 index 000000000000..12d74a5bd3a8 --- /dev/null +++ b/site/public/v1/software/vocalowitter/index.json @@ -0,0 +1,19 @@ +{ + "id": 10844, + "slug": "vocalowitter", + "name": "VocaloWitter", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22909675" + ], + "created_at": "2026-07-10T10:12:43.620607", + "updated_at": "2026-07-10T10:12:43.620607", + "url": "/v1/software/vocalowitter" +} diff --git a/site/public/v1/software/vodburner/index.json b/site/public/v1/software/vodburner/index.json new file mode 100644 index 000000000000..3684bcddf28a --- /dev/null +++ b/site/public/v1/software/vodburner/index.json @@ -0,0 +1,19 @@ +{ + "id": 10845, + "slug": "vodburner", + "name": "VodBurner", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084720" + ], + "created_at": "2026-07-10T10:12:43.620607", + "updated_at": "2026-07-10T10:12:43.620607", + "url": "/v1/software/vodburner" +} diff --git a/site/public/v1/software/voicecup-dictionary-of-pronunciation/index.json b/site/public/v1/software/voicecup-dictionary-of-pronunciation/index.json new file mode 100644 index 000000000000..49dc1b23103c --- /dev/null +++ b/site/public/v1/software/voicecup-dictionary-of-pronunciation/index.json @@ -0,0 +1,19 @@ +{ + "id": 10846, + "slug": "voicecup-dictionary-of-pronunciation", + "name": "Voicecup dictionary of pronunciation", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084721" + ], + "created_at": "2026-07-10T10:12:43.621609", + "updated_at": "2026-07-10T10:12:43.621609", + "url": "/v1/software/voicecup-dictionary-of-pronunciation" +} diff --git a/site/public/v1/software/voiceflow/index.json b/site/public/v1/software/voiceflow/index.json new file mode 100644 index 000000000000..834fc0a63ae9 --- /dev/null +++ b/site/public/v1/software/voiceflow/index.json @@ -0,0 +1,19 @@ +{ + "id": 10847, + "slug": "voiceflow", + "name": "Voiceflow", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127605265" + ], + "created_at": "2026-07-10T10:12:43.621609", + "updated_at": "2026-07-10T10:12:43.621609", + "url": "/v1/software/voiceflow" +} diff --git a/site/public/v1/software/voicemeeter/index.json b/site/public/v1/software/voicemeeter/index.json new file mode 100644 index 000000000000..1ee4ef74fdf5 --- /dev/null +++ b/site/public/v1/software/voicemeeter/index.json @@ -0,0 +1,21 @@ +{ + "id": 10848, + "slug": "voicemeeter", + "name": "Voicemeeter", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q56317352" + ], + "created_at": "2026-07-10T10:12:43.621609", + "updated_at": "2026-07-10T10:12:43.621609", + "url": "/v1/software/voicemeeter" +} diff --git a/site/public/v1/software/voiceroid/index.json b/site/public/v1/software/voiceroid/index.json new file mode 100644 index 000000000000..fcfc69b205d5 --- /dev/null +++ b/site/public/v1/software/voiceroid/index.json @@ -0,0 +1,21 @@ +{ + "id": 10849, + "slug": "voiceroid", + "name": "Voiceroid", + "release_date": null, + "developers": [ + "AH-Software" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17144718" + ], + "created_at": "2026-07-10T10:12:43.621609", + "updated_at": "2026-07-10T10:12:43.621609", + "url": "/v1/software/voiceroid" +} diff --git a/site/public/v1/software/voicevox/index.json b/site/public/v1/software/voicevox/index.json new file mode 100644 index 000000000000..3502b4c748c2 --- /dev/null +++ b/site/public/v1/software/voicevox/index.json @@ -0,0 +1,25 @@ +{ + "id": 10850, + "slug": "voicevox", + "name": "VOICEVOX", + "release_date": "2021-08-01", + "developers": [], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "GNU Lesser General Public License, version 3.0", + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109243147" + ], + "created_at": "2026-07-10T10:12:43.622612", + "updated_at": "2026-07-10T10:12:43.622612", + "url": "/v1/software/voicevox" +} diff --git a/site/public/v1/software/voicewalker/index.json b/site/public/v1/software/voicewalker/index.json new file mode 100644 index 000000000000..8625c1da7421 --- /dev/null +++ b/site/public/v1/software/voicewalker/index.json @@ -0,0 +1,19 @@ +{ + "id": 10851, + "slug": "voicewalker", + "name": "VoiceWalker", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084722" + ], + "created_at": "2026-07-10T10:12:43.622612", + "updated_at": "2026-07-10T10:12:43.622612", + "url": "/v1/software/voicewalker" +} diff --git a/site/public/v1/software/voikko/index.json b/site/public/v1/software/voikko/index.json new file mode 100644 index 000000000000..77c999469913 --- /dev/null +++ b/site/public/v1/software/voikko/index.json @@ -0,0 +1,19 @@ +{ + "id": 10852, + "slug": "voikko", + "name": "Voikko", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11901834" + ], + "created_at": "2026-07-10T10:12:43.622612", + "updated_at": "2026-07-10T10:12:43.622612", + "url": "/v1/software/voikko" +} diff --git a/site/public/v1/software/voilabits-mediaconverterultimate/index.json b/site/public/v1/software/voilabits-mediaconverterultimate/index.json new file mode 100644 index 000000000000..7d7a4ccb98dd --- /dev/null +++ b/site/public/v1/software/voilabits-mediaconverterultimate/index.json @@ -0,0 +1,19 @@ +{ + "id": 10853, + "slug": "voilabits-mediaconverterultimate", + "name": "Voilabits MediaConverterUltimate", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084723" + ], + "created_at": "2026-07-10T10:12:43.623611", + "updated_at": "2026-07-10T10:12:43.623611", + "url": "/v1/software/voilabits-mediaconverterultimate" +} diff --git a/site/public/v1/software/vokabel/index.json b/site/public/v1/software/vokabel/index.json new file mode 100644 index 000000000000..91757a182ee6 --- /dev/null +++ b/site/public/v1/software/vokabel/index.json @@ -0,0 +1,19 @@ +{ + "id": 10854, + "slug": "vokabel", + "name": "Vokabel", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10716564" + ], + "created_at": "2026-07-10T10:12:43.623611", + "updated_at": "2026-07-10T10:12:43.623611", + "url": "/v1/software/vokabel" +} diff --git a/site/public/v1/software/volatility/index.json b/site/public/v1/software/volatility/index.json new file mode 100644 index 000000000000..0017c361b305 --- /dev/null +++ b/site/public/v1/software/volatility/index.json @@ -0,0 +1,21 @@ +{ + "id": 10855, + "slug": "volatility", + "name": "Volatility", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7939997" + ], + "created_at": "2026-07-10T10:12:43.623611", + "updated_at": "2026-07-10T10:12:43.623611", + "url": "/v1/software/volatility" +} diff --git a/site/public/v1/software/volkswriter/index.json b/site/public/v1/software/volkswriter/index.json new file mode 100644 index 000000000000..0fead0e2565a --- /dev/null +++ b/site/public/v1/software/volkswriter/index.json @@ -0,0 +1,24 @@ +{ + "id": 10856, + "slug": "volkswriter", + "name": "VolksWriter", + "release_date": "1982-01-01", + "developers": [], + "publishers": [], + "operating_systems": [ + "OS-9", + "DOS" + ], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7940270" + ], + "created_at": "2026-07-10T10:12:43.623611", + "updated_at": "2026-07-10T10:12:43.623611", + "url": "/v1/software/volkswriter" +} diff --git a/site/public/v1/software/volt-lx/index.json b/site/public/v1/software/volt-lx/index.json new file mode 100644 index 000000000000..b780e971a05c --- /dev/null +++ b/site/public/v1/software/volt-lx/index.json @@ -0,0 +1,23 @@ +{ + "id": 10857, + "slug": "volt-lx", + "name": "VOLT/LX", + "release_date": null, + "developers": [ + "D&A Software" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121672443" + ], + "created_at": "2026-07-10T10:12:43.624680", + "updated_at": "2026-07-10T10:12:43.624680", + "url": "/v1/software/volt-lx" +} diff --git a/site/public/v1/software/volume-logic/index.json b/site/public/v1/software/volume-logic/index.json new file mode 100644 index 000000000000..f5638ac9c7f4 --- /dev/null +++ b/site/public/v1/software/volume-logic/index.json @@ -0,0 +1,21 @@ +{ + "id": 10858, + "slug": "volume-logic", + "name": "Volume Logic", + "release_date": null, + "developers": [ + "Plantronics" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7940873" + ], + "created_at": "2026-07-10T10:12:43.624680", + "updated_at": "2026-07-10T10:12:43.624680", + "url": "/v1/software/volume-logic" +} diff --git a/site/public/v1/software/volumill/index.json b/site/public/v1/software/volumill/index.json new file mode 100644 index 000000000000..677d8ca0f6bc --- /dev/null +++ b/site/public/v1/software/volumill/index.json @@ -0,0 +1,19 @@ +{ + "id": 10859, + "slug": "volumill", + "name": "VoluMill", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7940817" + ], + "created_at": "2026-07-10T10:12:43.624680", + "updated_at": "2026-07-10T10:12:43.624680", + "url": "/v1/software/volumill" +} diff --git a/site/public/v1/software/volunteer-smartphone-patrol/index.json b/site/public/v1/software/volunteer-smartphone-patrol/index.json new file mode 100644 index 000000000000..8dc46b40f2c5 --- /dev/null +++ b/site/public/v1/software/volunteer-smartphone-patrol/index.json @@ -0,0 +1,19 @@ +{ + "id": 10860, + "slug": "volunteer-smartphone-patrol", + "name": "Volunteer Smartphone Patrol", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126182584" + ], + "created_at": "2026-07-10T10:12:43.625666", + "updated_at": "2026-07-10T10:12:43.625666", + "url": "/v1/software/volunteer-smartphone-patrol" +} diff --git a/site/public/v1/software/voodoopad/index.json b/site/public/v1/software/voodoopad/index.json new file mode 100644 index 000000000000..2af5afc36fe2 --- /dev/null +++ b/site/public/v1/software/voodoopad/index.json @@ -0,0 +1,19 @@ +{ + "id": 10861, + "slug": "voodoopad", + "name": "VoodooPad", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084724" + ], + "created_at": "2026-07-10T10:12:43.625666", + "updated_at": "2026-07-10T10:12:43.625666", + "url": "/v1/software/voodoopad" +} diff --git a/site/public/v1/software/vopt/index.json b/site/public/v1/software/vopt/index.json new file mode 100644 index 000000000000..4be77d274422 --- /dev/null +++ b/site/public/v1/software/vopt/index.json @@ -0,0 +1,19 @@ +{ + "id": 10862, + "slug": "vopt", + "name": "Vopt", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1085287" + ], + "created_at": "2026-07-10T10:12:43.625666", + "updated_at": "2026-07-10T10:12:43.625666", + "url": "/v1/software/vopt" +} diff --git a/site/public/v1/software/vorest/index.json b/site/public/v1/software/vorest/index.json new file mode 100644 index 000000000000..514ebbfb45d2 --- /dev/null +++ b/site/public/v1/software/vorest/index.json @@ -0,0 +1,19 @@ +{ + "id": 10863, + "slug": "vorest", + "name": "Vorest", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6164808" + ], + "created_at": "2026-07-10T10:12:43.626676", + "updated_at": "2026-07-10T10:12:43.626676", + "url": "/v1/software/vorest" +} diff --git a/site/public/v1/software/voronoi-diagram-with-word-embedding/index.json b/site/public/v1/software/voronoi-diagram-with-word-embedding/index.json new file mode 100644 index 000000000000..a3795fcd6003 --- /dev/null +++ b/site/public/v1/software/voronoi-diagram-with-word-embedding/index.json @@ -0,0 +1,19 @@ +{ + "id": 10864, + "slug": "voronoi-diagram-with-word-embedding", + "name": "Voronoi Diagram with Word Embedding", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084725" + ], + "created_at": "2026-07-10T10:12:43.626676", + "updated_at": "2026-07-10T10:12:43.626676", + "url": "/v1/software/voronoi-diagram-with-word-embedding" +} diff --git a/site/public/v1/software/vosviewer-online/index.json b/site/public/v1/software/vosviewer-online/index.json new file mode 100644 index 000000000000..9c0df2b66590 --- /dev/null +++ b/site/public/v1/software/vosviewer-online/index.json @@ -0,0 +1,24 @@ +{ + "id": 10865, + "slug": "vosviewer-online", + "name": "VOSviewer Online", + "release_date": null, + "developers": [ + "Nees Jan van Eck", + "Ludo Waltman" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109186232" + ], + "created_at": "2026-07-10T10:12:43.626676", + "updated_at": "2026-07-10T10:12:43.626676", + "url": "/v1/software/vosviewer-online" +} diff --git a/site/public/v1/software/vosviewer/index.json b/site/public/v1/software/vosviewer/index.json new file mode 100644 index 000000000000..52f4c74b450b --- /dev/null +++ b/site/public/v1/software/vosviewer/index.json @@ -0,0 +1,22 @@ +{ + "id": 10866, + "slug": "vosviewer", + "name": "VOSviewer", + "release_date": null, + "developers": [ + "Nees Jan van Eck", + "Ludo Waltman" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q56475613" + ], + "created_at": "2026-07-10T10:12:43.627674", + "updated_at": "2026-07-10T10:12:43.627674", + "url": "/v1/software/vosviewer" +} diff --git a/site/public/v1/software/votca-csg/index.json b/site/public/v1/software/votca-csg/index.json new file mode 100644 index 000000000000..f88a31800cd0 --- /dev/null +++ b/site/public/v1/software/votca-csg/index.json @@ -0,0 +1,21 @@ +{ + "id": 10867, + "slug": "votca-csg", + "name": "votca-csg", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Apache License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975555" + ], + "created_at": "2026-07-10T10:12:43.627674", + "updated_at": "2026-07-10T10:12:43.627674", + "url": "/v1/software/votca-csg" +} diff --git a/site/public/v1/software/votca-csgapps/index.json b/site/public/v1/software/votca-csgapps/index.json new file mode 100644 index 000000000000..1ecb9d14ae57 --- /dev/null +++ b/site/public/v1/software/votca-csgapps/index.json @@ -0,0 +1,19 @@ +{ + "id": 10868, + "slug": "votca-csgapps", + "name": "votca-csgapps", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975556" + ], + "created_at": "2026-07-10T10:12:43.627674", + "updated_at": "2026-07-10T10:12:43.627674", + "url": "/v1/software/votca-csgapps" +} diff --git a/site/public/v1/software/votca-ctp/index.json b/site/public/v1/software/votca-ctp/index.json new file mode 100644 index 000000000000..df354469e1e9 --- /dev/null +++ b/site/public/v1/software/votca-ctp/index.json @@ -0,0 +1,19 @@ +{ + "id": 10869, + "slug": "votca-ctp", + "name": "votca-ctp", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q132298432" + ], + "created_at": "2026-07-10T10:12:43.628660", + "updated_at": "2026-07-10T10:12:43.628660", + "url": "/v1/software/votca-ctp" +} diff --git a/site/public/v1/software/votca-tools/index.json b/site/public/v1/software/votca-tools/index.json new file mode 100644 index 000000000000..ee55af313c2a --- /dev/null +++ b/site/public/v1/software/votca-tools/index.json @@ -0,0 +1,19 @@ +{ + "id": 10870, + "slug": "votca-tools", + "name": "votca-tools", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975558" + ], + "created_at": "2026-07-10T10:12:43.628660", + "updated_at": "2026-07-10T10:12:43.628660", + "url": "/v1/software/votca-tools" +} diff --git a/site/public/v1/software/votca-xtp/index.json b/site/public/v1/software/votca-xtp/index.json new file mode 100644 index 000000000000..d026262ace5b --- /dev/null +++ b/site/public/v1/software/votca-xtp/index.json @@ -0,0 +1,21 @@ +{ + "id": 10871, + "slug": "votca-xtp", + "name": "votca-xtp", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Apache License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975559" + ], + "created_at": "2026-07-10T10:12:43.628660", + "updated_at": "2026-07-10T10:12:43.628660", + "url": "/v1/software/votca-xtp" +} diff --git a/site/public/v1/software/vov/index.json b/site/public/v1/software/vov/index.json new file mode 100644 index 000000000000..26faae91f480 --- /dev/null +++ b/site/public/v1/software/vov/index.json @@ -0,0 +1,19 @@ +{ + "id": 10872, + "slug": "vov", + "name": "vov", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127418914" + ], + "created_at": "2026-07-10T10:12:43.629695", + "updated_at": "2026-07-10T10:12:43.629695", + "url": "/v1/software/vov" +} diff --git a/site/public/v1/software/vowpal-wabbit/index.json b/site/public/v1/software/vowpal-wabbit/index.json new file mode 100644 index 000000000000..c28ce07c81b0 --- /dev/null +++ b/site/public/v1/software/vowpal-wabbit/index.json @@ -0,0 +1,23 @@ +{ + "id": 10873, + "slug": "vowpal-wabbit", + "name": "Vowpal Wabbit", + "release_date": null, + "developers": [ + "Yahoo! Research", + "John Langford", + "Microsoft Research" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7942323" + ], + "created_at": "2026-07-10T10:12:43.629695", + "updated_at": "2026-07-10T10:12:43.629695", + "url": "/v1/software/vowpal-wabbit" +} diff --git a/site/public/v1/software/voxcribecc/index.json b/site/public/v1/software/voxcribecc/index.json new file mode 100644 index 000000000000..af6125c7d3cf --- /dev/null +++ b/site/public/v1/software/voxcribecc/index.json @@ -0,0 +1,19 @@ +{ + "id": 10874, + "slug": "voxcribecc", + "name": "VoxcribeCC", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084726" + ], + "created_at": "2026-07-10T10:12:43.629695", + "updated_at": "2026-07-10T10:12:43.629695", + "url": "/v1/software/voxcribecc" +} diff --git a/site/public/v1/software/voxel-man/index.json b/site/public/v1/software/voxel-man/index.json new file mode 100644 index 000000000000..1c9ef10c5dc4 --- /dev/null +++ b/site/public/v1/software/voxel-man/index.json @@ -0,0 +1,21 @@ +{ + "id": 10875, + "slug": "voxel-man", + "name": "Voxel-Man", + "release_date": null, + "developers": [ + "University Medical Center Hamburg-Eppendorf" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2534898" + ], + "created_at": "2026-07-10T10:12:43.629695", + "updated_at": "2026-07-10T10:12:43.629695", + "url": "/v1/software/voxel-man" +} diff --git a/site/public/v1/software/voyager-2/index.json b/site/public/v1/software/voyager-2/index.json new file mode 100644 index 000000000000..7fb35411394b --- /dev/null +++ b/site/public/v1/software/voyager-2/index.json @@ -0,0 +1,19 @@ +{ + "id": 10876, + "slug": "voyager-2", + "name": "Voyager 2", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084727" + ], + "created_at": "2026-07-10T10:12:43.630678", + "updated_at": "2026-07-10T10:12:43.630678", + "url": "/v1/software/voyager-2" +} diff --git a/site/public/v1/software/voyant-2-0-bubblelines/index.json b/site/public/v1/software/voyant-2-0-bubblelines/index.json new file mode 100644 index 000000000000..1f1aa6f20994 --- /dev/null +++ b/site/public/v1/software/voyant-2-0-bubblelines/index.json @@ -0,0 +1,19 @@ +{ + "id": 10877, + "slug": "voyant-2-0-bubblelines", + "name": "Voyant 2.0: Bubblelines", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084728" + ], + "created_at": "2026-07-10T10:12:43.630678", + "updated_at": "2026-07-10T10:12:43.630678", + "url": "/v1/software/voyant-2-0-bubblelines" +} diff --git a/site/public/v1/software/voyant-2-0-knots/index.json b/site/public/v1/software/voyant-2-0-knots/index.json new file mode 100644 index 000000000000..6a1878f852b1 --- /dev/null +++ b/site/public/v1/software/voyant-2-0-knots/index.json @@ -0,0 +1,19 @@ +{ + "id": 10878, + "slug": "voyant-2-0-knots", + "name": "Voyant 2.0: Knots", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084729" + ], + "created_at": "2026-07-10T10:12:43.631673", + "updated_at": "2026-07-10T10:12:43.631673", + "url": "/v1/software/voyant-2-0-knots" +} diff --git a/site/public/v1/software/voyant-2-0-scatterplot/index.json b/site/public/v1/software/voyant-2-0-scatterplot/index.json new file mode 100644 index 000000000000..a7e90976534f --- /dev/null +++ b/site/public/v1/software/voyant-2-0-scatterplot/index.json @@ -0,0 +1,19 @@ +{ + "id": 10879, + "slug": "voyant-2-0-scatterplot", + "name": "Voyant 2.0: ScatterPlot", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084730" + ], + "created_at": "2026-07-10T10:12:43.631673", + "updated_at": "2026-07-10T10:12:43.631673", + "url": "/v1/software/voyant-2-0-scatterplot" +} diff --git a/site/public/v1/software/voyant-2-0-terms-radio/index.json b/site/public/v1/software/voyant-2-0-terms-radio/index.json new file mode 100644 index 000000000000..fc0d3eff3db9 --- /dev/null +++ b/site/public/v1/software/voyant-2-0-terms-radio/index.json @@ -0,0 +1,19 @@ +{ + "id": 10880, + "slug": "voyant-2-0-terms-radio", + "name": "Voyant 2.0: Terms Radio", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084731" + ], + "created_at": "2026-07-10T10:12:43.631673", + "updated_at": "2026-07-10T10:12:43.631673", + "url": "/v1/software/voyant-2-0-terms-radio" +} diff --git a/site/public/v1/software/voyant-corpus-grid/index.json b/site/public/v1/software/voyant-corpus-grid/index.json new file mode 100644 index 000000000000..132b59f43105 --- /dev/null +++ b/site/public/v1/software/voyant-corpus-grid/index.json @@ -0,0 +1,19 @@ +{ + "id": 10881, + "slug": "voyant-corpus-grid", + "name": "Voyant Corpus Grid", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087760" + ], + "created_at": "2026-07-10T10:12:43.631673", + "updated_at": "2026-07-10T10:12:43.631673", + "url": "/v1/software/voyant-corpus-grid" +} diff --git a/site/public/v1/software/voyant-corpus-term-frequencies/index.json b/site/public/v1/software/voyant-corpus-term-frequencies/index.json new file mode 100644 index 000000000000..df26a262a5a2 --- /dev/null +++ b/site/public/v1/software/voyant-corpus-term-frequencies/index.json @@ -0,0 +1,19 @@ +{ + "id": 10882, + "slug": "voyant-corpus-term-frequencies", + "name": "Voyant Corpus Term Frequencies", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087761" + ], + "created_at": "2026-07-10T10:12:43.632702", + "updated_at": "2026-07-10T10:12:43.632702", + "url": "/v1/software/voyant-corpus-term-frequencies" +} diff --git a/site/public/v1/software/voyant-document-kwics/index.json b/site/public/v1/software/voyant-document-kwics/index.json new file mode 100644 index 000000000000..f0ac247e77a8 --- /dev/null +++ b/site/public/v1/software/voyant-document-kwics/index.json @@ -0,0 +1,19 @@ +{ + "id": 10883, + "slug": "voyant-document-kwics", + "name": "Voyant Document KWICs", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084732" + ], + "created_at": "2026-07-10T10:12:43.632702", + "updated_at": "2026-07-10T10:12:43.632702", + "url": "/v1/software/voyant-document-kwics" +} diff --git a/site/public/v1/software/voyant-document-term-frequencies/index.json b/site/public/v1/software/voyant-document-term-frequencies/index.json new file mode 100644 index 000000000000..397356a3966a --- /dev/null +++ b/site/public/v1/software/voyant-document-term-frequencies/index.json @@ -0,0 +1,19 @@ +{ + "id": 10884, + "slug": "voyant-document-term-frequencies", + "name": "Voyant Document Term Frequencies", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087762" + ], + "created_at": "2026-07-10T10:12:43.633676", + "updated_at": "2026-07-10T10:12:43.633676", + "url": "/v1/software/voyant-document-term-frequencies" +} diff --git a/site/public/v1/software/voyant-lava/index.json b/site/public/v1/software/voyant-lava/index.json new file mode 100644 index 000000000000..c650f436dce2 --- /dev/null +++ b/site/public/v1/software/voyant-lava/index.json @@ -0,0 +1,19 @@ +{ + "id": 10885, + "slug": "voyant-lava", + "name": "Voyant Lava", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084733" + ], + "created_at": "2026-07-10T10:12:43.634669", + "updated_at": "2026-07-10T10:12:43.634669", + "url": "/v1/software/voyant-lava" +} diff --git a/site/public/v1/software/voyant-links/index.json b/site/public/v1/software/voyant-links/index.json new file mode 100644 index 000000000000..d1e0cc66d983 --- /dev/null +++ b/site/public/v1/software/voyant-links/index.json @@ -0,0 +1,19 @@ +{ + "id": 10886, + "slug": "voyant-links", + "name": "Voyant Links", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084734" + ], + "created_at": "2026-07-10T10:12:43.636700", + "updated_at": "2026-07-10T10:12:43.636700", + "url": "/v1/software/voyant-links" +} diff --git a/site/public/v1/software/voyant-reader/index.json b/site/public/v1/software/voyant-reader/index.json new file mode 100644 index 000000000000..2ab35ef5f35d --- /dev/null +++ b/site/public/v1/software/voyant-reader/index.json @@ -0,0 +1,19 @@ +{ + "id": 10887, + "slug": "voyant-reader", + "name": "Voyant Reader", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084735" + ], + "created_at": "2026-07-10T10:12:43.638606", + "updated_at": "2026-07-10T10:12:43.638606", + "url": "/v1/software/voyant-reader" +} diff --git a/site/public/v1/software/voyant-term-frequencies-chart/index.json b/site/public/v1/software/voyant-term-frequencies-chart/index.json new file mode 100644 index 000000000000..e2a7f7b906c3 --- /dev/null +++ b/site/public/v1/software/voyant-term-frequencies-chart/index.json @@ -0,0 +1,19 @@ +{ + "id": 10888, + "slug": "voyant-term-frequencies-chart", + "name": "Voyant Term Frequencies Chart", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084737" + ], + "created_at": "2026-07-10T10:12:43.639671", + "updated_at": "2026-07-10T10:12:43.639671", + "url": "/v1/software/voyant-term-frequencies-chart" +} diff --git a/site/public/v1/software/voyant-tools/index.json b/site/public/v1/software/voyant-tools/index.json new file mode 100644 index 000000000000..53d3b68f7ecd --- /dev/null +++ b/site/public/v1/software/voyant-tools/index.json @@ -0,0 +1,22 @@ +{ + "id": 10889, + "slug": "voyant-tools", + "name": "Voyant Tools", + "release_date": "2003-01-01", + "developers": [ + "Stéfan Sinclair", + "Geoffrey M. Rockwell" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28405731" + ], + "created_at": "2026-07-10T10:12:43.640754", + "updated_at": "2026-07-10T10:12:43.640754", + "url": "/v1/software/voyant-tools" +} diff --git a/site/public/v1/software/vp-expert/index.json b/site/public/v1/software/vp-expert/index.json new file mode 100644 index 000000000000..91d05f3cc427 --- /dev/null +++ b/site/public/v1/software/vp-expert/index.json @@ -0,0 +1,19 @@ +{ + "id": 10890, + "slug": "vp-expert", + "name": "VP-Expert", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130050737" + ], + "created_at": "2026-07-10T10:12:43.640754", + "updated_at": "2026-07-10T10:12:43.640754", + "url": "/v1/software/vp-expert" +} diff --git a/site/public/v1/software/vp-info/index.json b/site/public/v1/software/vp-info/index.json new file mode 100644 index 000000000000..959b38bbe95a --- /dev/null +++ b/site/public/v1/software/vp-info/index.json @@ -0,0 +1,19 @@ +{ + "id": 10891, + "slug": "vp-info", + "name": "VP-Info", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7907413" + ], + "created_at": "2026-07-10T10:12:43.641699", + "updated_at": "2026-07-10T10:12:43.641699", + "url": "/v1/software/vp-info" +} diff --git a/site/public/v1/software/vp-ms/index.json b/site/public/v1/software/vp-ms/index.json new file mode 100644 index 000000000000..dbc68acea9ab --- /dev/null +++ b/site/public/v1/software/vp-ms/index.json @@ -0,0 +1,21 @@ +{ + "id": 10892, + "slug": "vp-ms", + "name": "VP/MS", + "release_date": "1997-01-01", + "developers": [ + "Computer Sciences Corporation" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7907415" + ], + "created_at": "2026-07-10T10:12:43.641699", + "updated_at": "2026-07-10T10:12:43.641699", + "url": "/v1/software/vp-ms" +} diff --git a/site/public/v1/software/vpmi/index.json b/site/public/v1/software/vpmi/index.json new file mode 100644 index 000000000000..3f5af5e2456a --- /dev/null +++ b/site/public/v1/software/vpmi/index.json @@ -0,0 +1,19 @@ +{ + "id": 10893, + "slug": "vpmi", + "name": "Vpmi", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7942546" + ], + "created_at": "2026-07-10T10:12:43.642685", + "updated_at": "2026-07-10T10:12:43.642685", + "url": "/v1/software/vpmi" +} diff --git a/site/public/v1/software/vpncwatch/index.json b/site/public/v1/software/vpncwatch/index.json new file mode 100644 index 000000000000..522a2e502139 --- /dev/null +++ b/site/public/v1/software/vpncwatch/index.json @@ -0,0 +1,19 @@ +{ + "id": 10894, + "slug": "vpncwatch", + "name": "vpncwatch", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60918501" + ], + "created_at": "2026-07-10T10:12:43.642685", + "updated_at": "2026-07-10T10:12:43.642685", + "url": "/v1/software/vpncwatch" +} diff --git a/site/public/v1/software/vs-plus/index.json b/site/public/v1/software/vs-plus/index.json new file mode 100644 index 000000000000..d8a7e727bff5 --- /dev/null +++ b/site/public/v1/software/vs-plus/index.json @@ -0,0 +1,21 @@ +{ + "id": 10895, + "slug": "vs-plus", + "name": "VS-PLUS", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "OS-9" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1535126" + ], + "created_at": "2026-07-10T10:12:43.642685", + "updated_at": "2026-07-10T10:12:43.642685", + "url": "/v1/software/vs-plus" +} diff --git a/site/public/v1/software/vsco/index.json b/site/public/v1/software/vsco/index.json new file mode 100644 index 000000000000..90460a608930 --- /dev/null +++ b/site/public/v1/software/vsco/index.json @@ -0,0 +1,19 @@ +{ + "id": 10896, + "slug": "vsco", + "name": "VSCO", + "release_date": "2011-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q29364760" + ], + "created_at": "2026-07-10T10:12:43.643685", + "updated_at": "2026-07-10T10:12:43.643685", + "url": "/v1/software/vsco" +} diff --git a/site/public/v1/software/vscodevim/index.json b/site/public/v1/software/vscodevim/index.json new file mode 100644 index 000000000000..ded34cd1021f --- /dev/null +++ b/site/public/v1/software/vscodevim/index.json @@ -0,0 +1,21 @@ +{ + "id": 10897, + "slug": "vscodevim", + "name": "VSCodeVim", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123472574" + ], + "created_at": "2026-07-10T10:12:43.643685", + "updated_at": "2026-07-10T10:12:43.643685", + "url": "/v1/software/vscodevim" +} diff --git a/site/public/v1/software/vsim/index.json b/site/public/v1/software/vsim/index.json new file mode 100644 index 000000000000..11f2a2f03ebc --- /dev/null +++ b/site/public/v1/software/vsim/index.json @@ -0,0 +1,19 @@ +{ + "id": 10898, + "slug": "vsim", + "name": "VSim", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7907387" + ], + "created_at": "2026-07-10T10:12:43.643685", + "updated_at": "2026-07-10T10:12:43.643685", + "url": "/v1/software/vsim" +} diff --git a/site/public/v1/software/vsync-computing/index.json b/site/public/v1/software/vsync-computing/index.json new file mode 100644 index 000000000000..3d586b71853a --- /dev/null +++ b/site/public/v1/software/vsync-computing/index.json @@ -0,0 +1,19 @@ +{ + "id": 10899, + "slug": "vsync-computing", + "name": "Vsync (computing)", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22681950" + ], + "created_at": "2026-07-10T10:12:43.644675", + "updated_at": "2026-07-10T10:12:43.644675", + "url": "/v1/software/vsync-computing" +} diff --git a/site/public/v1/software/vsyslab/index.json b/site/public/v1/software/vsyslab/index.json new file mode 100644 index 000000000000..91c9c1ee04d3 --- /dev/null +++ b/site/public/v1/software/vsyslab/index.json @@ -0,0 +1,19 @@ +{ + "id": 10900, + "slug": "vsyslab", + "name": "vSysLab", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122387669" + ], + "created_at": "2026-07-10T10:12:43.644675", + "updated_at": "2026-07-10T10:12:43.644675", + "url": "/v1/software/vsyslab" +} diff --git a/site/public/v1/software/vtune/index.json b/site/public/v1/software/vtune/index.json new file mode 100644 index 000000000000..e81077064d6d --- /dev/null +++ b/site/public/v1/software/vtune/index.json @@ -0,0 +1,19 @@ +{ + "id": 10901, + "slug": "vtune", + "name": "VTune", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4052567" + ], + "created_at": "2026-07-10T10:12:43.644675", + "updated_at": "2026-07-10T10:12:43.644675", + "url": "/v1/software/vtune" +} diff --git a/site/public/v1/software/vuescan/index.json b/site/public/v1/software/vuescan/index.json new file mode 100644 index 000000000000..ab3ba37eaacd --- /dev/null +++ b/site/public/v1/software/vuescan/index.json @@ -0,0 +1,22 @@ +{ + "id": 10902, + "slug": "vuescan", + "name": "VueScan", + "release_date": "1998-01-01", + "developers": [], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q283702" + ], + "created_at": "2026-07-10T10:12:43.645695", + "updated_at": "2026-07-10T10:12:43.645695", + "url": "/v1/software/vuescan" +} diff --git a/site/public/v1/software/vugapay/index.json b/site/public/v1/software/vugapay/index.json new file mode 100644 index 000000000000..2cb38d2dfcab --- /dev/null +++ b/site/public/v1/software/vugapay/index.json @@ -0,0 +1,19 @@ +{ + "id": 10903, + "slug": "vugapay", + "name": "VugaPay", + "release_date": "2015-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q29364598" + ], + "created_at": "2026-07-10T10:12:43.645695", + "updated_at": "2026-07-10T10:12:43.645695", + "url": "/v1/software/vugapay" +} diff --git a/site/public/v1/software/vulcan/index.json b/site/public/v1/software/vulcan/index.json new file mode 100644 index 000000000000..44b932a678d5 --- /dev/null +++ b/site/public/v1/software/vulcan/index.json @@ -0,0 +1,19 @@ +{ + "id": 10904, + "slug": "vulcan", + "name": "Vulcan", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6165173" + ], + "created_at": "2026-07-10T10:12:43.645695", + "updated_at": "2026-07-10T10:12:43.645695", + "url": "/v1/software/vulcan" +} diff --git a/site/public/v1/software/vulkan/index.json b/site/public/v1/software/vulkan/index.json new file mode 100644 index 000000000000..f03c3d505c3d --- /dev/null +++ b/site/public/v1/software/vulkan/index.json @@ -0,0 +1,29 @@ +{ + "id": 10905, + "slug": "vulkan", + "name": "Vulkan", + "release_date": "2016-02-16", + "developers": [ + "Khronos Group" + ], + "publishers": [], + "operating_systems": [ + "iOS", + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "Creative Commons Attribution 4.0 International", + "Apache Software License 2.0", + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q19407678" + ], + "created_at": "2026-07-10T10:12:43.646709", + "updated_at": "2026-07-10T10:12:43.646709", + "url": "/v1/software/vulkan" +} diff --git a/site/public/v1/software/vw-os/index.json b/site/public/v1/software/vw-os/index.json new file mode 100644 index 000000000000..87b5d45bc027 --- /dev/null +++ b/site/public/v1/software/vw-os/index.json @@ -0,0 +1,23 @@ +{ + "id": 10906, + "slug": "vw-os", + "name": "vw.os", + "release_date": null, + "developers": [ + "Volkswagen Group" + ], + "publishers": [ + "Volkswagen Group" + ], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q67584473" + ], + "created_at": "2026-07-10T10:12:43.646709", + "updated_at": "2026-07-10T10:12:43.646709", + "url": "/v1/software/vw-os" +} diff --git a/site/public/v1/software/vx32/index.json b/site/public/v1/software/vx32/index.json new file mode 100644 index 000000000000..907a1d503e94 --- /dev/null +++ b/site/public/v1/software/vx32/index.json @@ -0,0 +1,21 @@ +{ + "id": 10907, + "slug": "vx32", + "name": "Vx32", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "FreeBSD" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3563889" + ], + "created_at": "2026-07-10T10:12:43.646709", + "updated_at": "2026-07-10T10:12:43.646709", + "url": "/v1/software/vx32" +} diff --git a/site/public/v1/software/vxl/index.json b/site/public/v1/software/vxl/index.json new file mode 100644 index 000000000000..3a25eeecc7bb --- /dev/null +++ b/site/public/v1/software/vxl/index.json @@ -0,0 +1,19 @@ +{ + "id": 10908, + "slug": "vxl", + "name": "VXL", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7907680" + ], + "created_at": "2026-07-10T10:12:43.646709", + "updated_at": "2026-07-10T10:12:43.646709", + "url": "/v1/software/vxl" +} diff --git a/site/public/v1/software/vy1/index.json b/site/public/v1/software/vy1/index.json new file mode 100644 index 000000000000..aa481dcca67e --- /dev/null +++ b/site/public/v1/software/vy1/index.json @@ -0,0 +1,19 @@ +{ + "id": 10909, + "slug": "vy1", + "name": "VY1", + "release_date": "2010-09-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q24914313" + ], + "created_at": "2026-07-10T10:12:43.647681", + "updated_at": "2026-07-10T10:12:43.647681", + "url": "/v1/software/vy1" +} diff --git a/site/public/v1/software/vy2/index.json b/site/public/v1/software/vy2/index.json new file mode 100644 index 000000000000..74d6d3013cf6 --- /dev/null +++ b/site/public/v1/software/vy2/index.json @@ -0,0 +1,19 @@ +{ + "id": 10910, + "slug": "vy2", + "name": "VY2", + "release_date": "2011-04-25", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10853199" + ], + "created_at": "2026-07-10T10:12:43.647681", + "updated_at": "2026-07-10T10:12:43.647681", + "url": "/v1/software/vy2" +} diff --git a/site/public/v1/software/vyomi/index.json b/site/public/v1/software/vyomi/index.json new file mode 100644 index 000000000000..973dc9e560a1 --- /dev/null +++ b/site/public/v1/software/vyomi/index.json @@ -0,0 +1,26 @@ +{ + "id": 10911, + "slug": "vyomi", + "name": "Vyomi", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [ + "Python" + ], + "licenses": [ + "Business Source License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140307543" + ], + "created_at": "2026-07-10T10:12:43.648697", + "updated_at": "2026-07-10T10:12:43.648697", + "url": "/v1/software/vyomi" +} diff --git a/site/public/v1/software/vyto-ai/index.json b/site/public/v1/software/vyto-ai/index.json new file mode 100644 index 000000000000..295c291d278f --- /dev/null +++ b/site/public/v1/software/vyto-ai/index.json @@ -0,0 +1,19 @@ +{ + "id": 10912, + "slug": "vyto-ai", + "name": "vyto.ai", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139927629" + ], + "created_at": "2026-07-10T10:12:43.648697", + "updated_at": "2026-07-10T10:12:43.648697", + "url": "/v1/software/vyto-ai" +} diff --git a/site/public/v1/software/vzochat/index.json b/site/public/v1/software/vzochat/index.json new file mode 100644 index 000000000000..48570e920118 --- /dev/null +++ b/site/public/v1/software/vzochat/index.json @@ -0,0 +1,21 @@ +{ + "id": 10913, + "slug": "vzochat", + "name": "VZOchat", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q96375526" + ], + "created_at": "2026-07-10T10:12:43.648697", + "updated_at": "2026-07-10T10:12:43.648697", + "url": "/v1/software/vzochat" +} diff --git a/site/public/v1/software/vzroom/index.json b/site/public/v1/software/vzroom/index.json new file mode 100644 index 000000000000..06da38e405a7 --- /dev/null +++ b/site/public/v1/software/vzroom/index.json @@ -0,0 +1,19 @@ +{ + "id": 10914, + "slug": "vzroom", + "name": "VzRoom", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7944081" + ], + "created_at": "2026-07-10T10:12:43.649609", + "updated_at": "2026-07-10T10:12:43.649609", + "url": "/v1/software/vzroom" +} diff --git a/site/public/v1/software/w32tex/index.json b/site/public/v1/software/w32tex/index.json new file mode 100644 index 000000000000..4854c997bb6f --- /dev/null +++ b/site/public/v1/software/w32tex/index.json @@ -0,0 +1,19 @@ +{ + "id": 10915, + "slug": "w32tex", + "name": "W32TeX", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11253185" + ], + "created_at": "2026-07-10T10:12:43.649609", + "updated_at": "2026-07-10T10:12:43.649609", + "url": "/v1/software/w32tex" +} diff --git a/site/public/v1/software/w3act/index.json b/site/public/v1/software/w3act/index.json new file mode 100644 index 000000000000..1f1f5d801323 --- /dev/null +++ b/site/public/v1/software/w3act/index.json @@ -0,0 +1,19 @@ +{ + "id": 10916, + "slug": "w3act", + "name": "W3Act", + "release_date": "2013-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112797875" + ], + "created_at": "2026-07-10T10:12:43.650607", + "updated_at": "2026-07-10T10:12:43.650607", + "url": "/v1/software/w3act" +} diff --git a/site/public/v1/software/w3c-markup-validation-service/index.json b/site/public/v1/software/w3c-markup-validation-service/index.json new file mode 100644 index 000000000000..0ed5094507d7 --- /dev/null +++ b/site/public/v1/software/w3c-markup-validation-service/index.json @@ -0,0 +1,19 @@ +{ + "id": 10917, + "slug": "w3c-markup-validation-service", + "name": "W3C Markup Validation Service", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2120923" + ], + "created_at": "2026-07-10T10:12:43.650607", + "updated_at": "2026-07-10T10:12:43.650607", + "url": "/v1/software/w3c-markup-validation-service" +} diff --git a/site/public/v1/software/w3c-rdf-validation-service/index.json b/site/public/v1/software/w3c-rdf-validation-service/index.json new file mode 100644 index 000000000000..0ce6f94c95c6 --- /dev/null +++ b/site/public/v1/software/w3c-rdf-validation-service/index.json @@ -0,0 +1,19 @@ +{ + "id": 10918, + "slug": "w3c-rdf-validation-service", + "name": "W3C RDF Validation Service", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084739" + ], + "created_at": "2026-07-10T10:12:43.650607", + "updated_at": "2026-07-10T10:12:43.650607", + "url": "/v1/software/w3c-rdf-validation-service" +} diff --git a/site/public/v1/software/wagtail/index.json b/site/public/v1/software/wagtail/index.json new file mode 100644 index 000000000000..930c41762cda --- /dev/null +++ b/site/public/v1/software/wagtail/index.json @@ -0,0 +1,24 @@ +{ + "id": 10919, + "slug": "wagtail", + "name": "Wagtail", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Python", + "Django" + ], + "licenses": [ + "BSD licenses" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25206006" + ], + "created_at": "2026-07-10T10:12:43.650607", + "updated_at": "2026-07-10T10:12:43.650607", + "url": "/v1/software/wagtail" +} diff --git a/site/public/v1/software/wajig/index.json b/site/public/v1/software/wajig/index.json new file mode 100644 index 000000000000..8a4e037ee181 --- /dev/null +++ b/site/public/v1/software/wajig/index.json @@ -0,0 +1,21 @@ +{ + "id": 10920, + "slug": "wajig", + "name": "Wajig", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Python" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7960704" + ], + "created_at": "2026-07-10T10:12:43.651609", + "updated_at": "2026-07-10T10:12:43.651609", + "url": "/v1/software/wajig" +} diff --git a/site/public/v1/software/wakatoon/index.json b/site/public/v1/software/wakatoon/index.json new file mode 100644 index 000000000000..a2c6b7a936a6 --- /dev/null +++ b/site/public/v1/software/wakatoon/index.json @@ -0,0 +1,19 @@ +{ + "id": 10921, + "slug": "wakatoon", + "name": "Wakatoon", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136140858" + ], + "created_at": "2026-07-10T10:12:43.651609", + "updated_at": "2026-07-10T10:12:43.651609", + "url": "/v1/software/wakatoon" +} diff --git a/site/public/v1/software/walkmygraph/index.json b/site/public/v1/software/walkmygraph/index.json new file mode 100644 index 000000000000..42a544be753d --- /dev/null +++ b/site/public/v1/software/walkmygraph/index.json @@ -0,0 +1,23 @@ +{ + "id": 10922, + "slug": "walkmygraph", + "name": "WalkMyGraph", + "release_date": null, + "developers": [ + "Wolfgang Fahl" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Apache Software License 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137971436" + ], + "created_at": "2026-07-10T10:12:43.651609", + "updated_at": "2026-07-10T10:12:43.651609", + "url": "/v1/software/walkmygraph" +} diff --git a/site/public/v1/software/wall-street-option-bets/index.json b/site/public/v1/software/wall-street-option-bets/index.json new file mode 100644 index 000000000000..6b2efc5a5423 --- /dev/null +++ b/site/public/v1/software/wall-street-option-bets/index.json @@ -0,0 +1,23 @@ +{ + "id": 10923, + "slug": "wall-street-option-bets", + "name": "Wall Street Option Bets", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Python" + ], + "licenses": [ + "freemium" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138783174" + ], + "created_at": "2026-07-10T10:12:43.652607", + "updated_at": "2026-07-10T10:12:43.652607", + "url": "/v1/software/wall-street-option-bets" +} diff --git a/site/public/v1/software/wallame/index.json b/site/public/v1/software/wallame/index.json new file mode 100644 index 000000000000..2eaadfbecf83 --- /dev/null +++ b/site/public/v1/software/wallame/index.json @@ -0,0 +1,21 @@ +{ + "id": 10924, + "slug": "wallame", + "name": "WallaMe", + "release_date": "2015-01-01", + "developers": [], + "publishers": [], + "operating_systems": [ + "iOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q24895038" + ], + "created_at": "2026-07-10T10:12:43.652607", + "updated_at": "2026-07-10T10:12:43.652607", + "url": "/v1/software/wallame" +} diff --git a/site/public/v1/software/wally/index.json b/site/public/v1/software/wally/index.json new file mode 100644 index 000000000000..7968a4d5d038 --- /dev/null +++ b/site/public/v1/software/wally/index.json @@ -0,0 +1,19 @@ +{ + "id": 10925, + "slug": "wally", + "name": "Wally", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124417020" + ], + "created_at": "2026-07-10T10:12:43.652607", + "updated_at": "2026-07-10T10:12:43.652607", + "url": "/v1/software/wally" +} diff --git a/site/public/v1/software/wanderer/index.json b/site/public/v1/software/wanderer/index.json new file mode 100644 index 000000000000..e53f5299a067 --- /dev/null +++ b/site/public/v1/software/wanderer/index.json @@ -0,0 +1,19 @@ +{ + "id": 10926, + "slug": "wanderer", + "name": "wanderer", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135427795" + ], + "created_at": "2026-07-10T10:12:43.653605", + "updated_at": "2026-07-10T10:12:43.653605", + "url": "/v1/software/wanderer" +} diff --git a/site/public/v1/software/wandoujia/index.json b/site/public/v1/software/wandoujia/index.json new file mode 100644 index 000000000000..aa4e1b1b8fad --- /dev/null +++ b/site/public/v1/software/wandoujia/index.json @@ -0,0 +1,21 @@ +{ + "id": 10927, + "slug": "wandoujia", + "name": "Wandoujia", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q15912234" + ], + "created_at": "2026-07-10T10:12:43.653605", + "updated_at": "2026-07-10T10:12:43.653605", + "url": "/v1/software/wandoujia" +} diff --git a/site/public/v1/software/wang-sheeley-arge-model/index.json b/site/public/v1/software/wang-sheeley-arge-model/index.json new file mode 100644 index 000000000000..4b0d1d0f6f4f --- /dev/null +++ b/site/public/v1/software/wang-sheeley-arge-model/index.json @@ -0,0 +1,19 @@ +{ + "id": 10928, + "slug": "wang-sheeley-arge-model", + "name": "Wang–Sheeley–Arge model", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136995232" + ], + "created_at": "2026-07-10T10:12:43.653605", + "updated_at": "2026-07-10T10:12:43.653605", + "url": "/v1/software/wang-sheeley-arge-model" +} diff --git a/site/public/v1/software/wardn-platform/index.json b/site/public/v1/software/wardn-platform/index.json new file mode 100644 index 000000000000..6b82d2953aa5 --- /dev/null +++ b/site/public/v1/software/wardn-platform/index.json @@ -0,0 +1,21 @@ +{ + "id": 10929, + "slug": "wardn-platform", + "name": "Wardn Platform", + "release_date": null, + "developers": [ + "Wardn" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138975303" + ], + "created_at": "2026-07-10T10:12:43.654613", + "updated_at": "2026-07-10T10:12:43.654613", + "url": "/v1/software/wardn-platform" +} diff --git a/site/public/v1/software/warehouse/index.json b/site/public/v1/software/warehouse/index.json new file mode 100644 index 000000000000..8329765bc9bd --- /dev/null +++ b/site/public/v1/software/warehouse/index.json @@ -0,0 +1,19 @@ +{ + "id": 10930, + "slug": "warehouse", + "name": "Warehouse", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123017247" + ], + "created_at": "2026-07-10T10:12:43.654613", + "updated_at": "2026-07-10T10:12:43.654613", + "url": "/v1/software/warehouse" +} diff --git a/site/public/v1/software/warp/index.json b/site/public/v1/software/warp/index.json new file mode 100644 index 000000000000..3c763e42daad --- /dev/null +++ b/site/public/v1/software/warp/index.json @@ -0,0 +1,23 @@ +{ + "id": 10931, + "slug": "warp", + "name": "Warp", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "macOS" + ], + "programming_languages": [], + "licenses": [ + "GNU Affero General Public License, version 3.0 or later" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123757936" + ], + "created_at": "2026-07-10T10:12:43.654613", + "updated_at": "2026-07-10T10:12:43.654613", + "url": "/v1/software/warp" +} diff --git a/site/public/v1/software/warp3d/index.json b/site/public/v1/software/warp3d/index.json new file mode 100644 index 000000000000..56c4caa80dec --- /dev/null +++ b/site/public/v1/software/warp3d/index.json @@ -0,0 +1,21 @@ +{ + "id": 10932, + "slug": "warp3d", + "name": "Warp3D", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "AmigaOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7969856" + ], + "created_at": "2026-07-10T10:12:43.654613", + "updated_at": "2026-07-10T10:12:43.654613", + "url": "/v1/software/warp3d" +} diff --git a/site/public/v1/software/warppls/index.json b/site/public/v1/software/warppls/index.json new file mode 100644 index 000000000000..d5220967f8f5 --- /dev/null +++ b/site/public/v1/software/warppls/index.json @@ -0,0 +1,19 @@ +{ + "id": 10933, + "slug": "warppls", + "name": "WarpPLS", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28406740" + ], + "created_at": "2026-07-10T10:12:43.655611", + "updated_at": "2026-07-10T10:12:43.655611", + "url": "/v1/software/warppls" +} diff --git a/site/public/v1/software/wartile/index.json b/site/public/v1/software/wartile/index.json new file mode 100644 index 000000000000..a8a78d8e3b7f --- /dev/null +++ b/site/public/v1/software/wartile/index.json @@ -0,0 +1,22 @@ +{ + "id": 10934, + "slug": "wartile", + "name": "Wartile", + "release_date": "2018-02-08", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [ + "strategy video game", + "role-playing video game" + ], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106635430" + ], + "created_at": "2026-07-10T10:12:43.655611", + "updated_at": "2026-07-10T10:12:43.655611", + "url": "/v1/software/wartile" +} diff --git a/site/public/v1/software/wasp/index.json b/site/public/v1/software/wasp/index.json new file mode 100644 index 000000000000..ac5806104ac1 --- /dev/null +++ b/site/public/v1/software/wasp/index.json @@ -0,0 +1,21 @@ +{ + "id": 10935, + "slug": "wasp", + "name": "WAsP", + "release_date": null, + "developers": [ + "Technical University of Denmark" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2877363" + ], + "created_at": "2026-07-10T10:12:43.655611", + "updated_at": "2026-07-10T10:12:43.655611", + "url": "/v1/software/wasp" +} diff --git a/site/public/v1/software/wastewatcher/index.json b/site/public/v1/software/wastewatcher/index.json new file mode 100644 index 000000000000..051c9c0cd584 --- /dev/null +++ b/site/public/v1/software/wastewatcher/index.json @@ -0,0 +1,21 @@ +{ + "id": 10936, + "slug": "wastewatcher", + "name": "wastewatcher", + "release_date": null, + "developers": [ + "WasteWatcher.NET GmbH" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140332318" + ], + "created_at": "2026-07-10T10:12:43.656726", + "updated_at": "2026-07-10T10:12:43.656726", + "url": "/v1/software/wastewatcher" +} diff --git a/site/public/v1/software/watchtower-library/index.json b/site/public/v1/software/watchtower-library/index.json new file mode 100644 index 000000000000..f9cfd7ab8132 --- /dev/null +++ b/site/public/v1/software/watchtower-library/index.json @@ -0,0 +1,19 @@ +{ + "id": 10937, + "slug": "watchtower-library", + "name": "Watchtower Library", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11837664" + ], + "created_at": "2026-07-10T10:12:43.656726", + "updated_at": "2026-07-10T10:12:43.656726", + "url": "/v1/software/watchtower-library" +} diff --git a/site/public/v1/software/watcon/index.json b/site/public/v1/software/watcon/index.json new file mode 100644 index 000000000000..8496ee05d023 --- /dev/null +++ b/site/public/v1/software/watcon/index.json @@ -0,0 +1,19 @@ +{ + "id": 10938, + "slug": "watcon", + "name": "WATCON", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087763" + ], + "created_at": "2026-07-10T10:12:43.656726", + "updated_at": "2026-07-10T10:12:43.656726", + "url": "/v1/software/watcon" +} diff --git a/site/public/v1/software/watir/index.json b/site/public/v1/software/watir/index.json new file mode 100644 index 000000000000..7b62350eaea3 --- /dev/null +++ b/site/public/v1/software/watir/index.json @@ -0,0 +1,21 @@ +{ + "id": 10939, + "slug": "watir", + "name": "Watir", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4052880" + ], + "created_at": "2026-07-10T10:12:43.657680", + "updated_at": "2026-07-10T10:12:43.657680", + "url": "/v1/software/watir" +} diff --git a/site/public/v1/software/wave-web-accessibility-evaluation-tool/index.json b/site/public/v1/software/wave-web-accessibility-evaluation-tool/index.json new file mode 100644 index 000000000000..bf373bb8988a --- /dev/null +++ b/site/public/v1/software/wave-web-accessibility-evaluation-tool/index.json @@ -0,0 +1,21 @@ +{ + "id": 10940, + "slug": "wave-web-accessibility-evaluation-tool", + "name": "WAVE web accessibility evaluation tool", + "release_date": null, + "developers": [ + "Pope Tech" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136357132" + ], + "created_at": "2026-07-10T10:12:43.657680", + "updated_at": "2026-07-10T10:12:43.657680", + "url": "/v1/software/wave-web-accessibility-evaluation-tool" +} diff --git a/site/public/v1/software/wavebox/index.json b/site/public/v1/software/wavebox/index.json new file mode 100644 index 000000000000..dddfc95868fd --- /dev/null +++ b/site/public/v1/software/wavebox/index.json @@ -0,0 +1,19 @@ +{ + "id": 10941, + "slug": "wavebox", + "name": "Wavebox", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q47487585" + ], + "created_at": "2026-07-10T10:12:43.657680", + "updated_at": "2026-07-10T10:12:43.657680", + "url": "/v1/software/wavebox" +} diff --git a/site/public/v1/software/waveburner/index.json b/site/public/v1/software/waveburner/index.json new file mode 100644 index 000000000000..3440f12e8a76 --- /dev/null +++ b/site/public/v1/software/waveburner/index.json @@ -0,0 +1,21 @@ +{ + "id": 10942, + "slug": "waveburner", + "name": "WaveBurner", + "release_date": null, + "developers": [ + "Apple Inc." + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7975250" + ], + "created_at": "2026-07-10T10:12:43.658695", + "updated_at": "2026-07-10T10:12:43.658695", + "url": "/v1/software/waveburner" +} diff --git a/site/public/v1/software/wavelab/index.json b/site/public/v1/software/wavelab/index.json new file mode 100644 index 000000000000..58a1a1c6217d --- /dev/null +++ b/site/public/v1/software/wavelab/index.json @@ -0,0 +1,19 @@ +{ + "id": 10943, + "slug": "wavelab", + "name": "WaveLab", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7975256" + ], + "created_at": "2026-07-10T10:12:43.658695", + "updated_at": "2026-07-10T10:12:43.658695", + "url": "/v1/software/wavelab" +} diff --git a/site/public/v1/software/wavelet-turbulence/index.json b/site/public/v1/software/wavelet-turbulence/index.json new file mode 100644 index 000000000000..7e7625b2097d --- /dev/null +++ b/site/public/v1/software/wavelet-turbulence/index.json @@ -0,0 +1,19 @@ +{ + "id": 10944, + "slug": "wavelet-turbulence", + "name": "Wavelet Turbulence", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25387169" + ], + "created_at": "2026-07-10T10:12:43.658695", + "updated_at": "2026-07-10T10:12:43.658695", + "url": "/v1/software/wavelet-turbulence" +} diff --git a/site/public/v1/software/wavepad-audio-editor-software/index.json b/site/public/v1/software/wavepad-audio-editor-software/index.json new file mode 100644 index 000000000000..bbb0a21d8128 --- /dev/null +++ b/site/public/v1/software/wavepad-audio-editor-software/index.json @@ -0,0 +1,23 @@ +{ + "id": 10945, + "slug": "wavepad-audio-editor-software", + "name": "WavePad Audio Editor Software", + "release_date": null, + "developers": [ + "NCH Software" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q23679982" + ], + "created_at": "2026-07-10T10:12:43.658695", + "updated_at": "2026-07-10T10:12:43.658695", + "url": "/v1/software/wavepad-audio-editor-software" +} diff --git a/site/public/v1/software/waves-platform/index.json b/site/public/v1/software/waves-platform/index.json new file mode 100644 index 000000000000..7fd0fa947942 --- /dev/null +++ b/site/public/v1/software/waves-platform/index.json @@ -0,0 +1,27 @@ +{ + "id": 10946, + "slug": "waves-platform", + "name": "Waves platform", + "release_date": "2016-06-07", + "developers": [], + "publishers": [], + "operating_systems": [ + "Mac operating system", + "Microsoft Windows" + ], + "programming_languages": [ + "Java", + "Scala" + ], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q30324920" + ], + "created_at": "2026-07-10T10:12:43.659688", + "updated_at": "2026-07-10T10:12:43.659688", + "url": "/v1/software/waves-platform" +} diff --git a/site/public/v1/software/way-of-the-red/index.json b/site/public/v1/software/way-of-the-red/index.json new file mode 100644 index 000000000000..ad537962191f --- /dev/null +++ b/site/public/v1/software/way-of-the-red/index.json @@ -0,0 +1,19 @@ +{ + "id": 10947, + "slug": "way-of-the-red", + "name": "Way of the Red", + "release_date": "2016-11-16", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q98971891" + ], + "created_at": "2026-07-10T10:12:43.659688", + "updated_at": "2026-07-10T10:12:43.659688", + "url": "/v1/software/way-of-the-red" +} diff --git a/site/public/v1/software/waybar/index.json b/site/public/v1/software/waybar/index.json new file mode 100644 index 000000000000..e721b95fc468 --- /dev/null +++ b/site/public/v1/software/waybar/index.json @@ -0,0 +1,21 @@ +{ + "id": 10948, + "slug": "waybar", + "name": "Waybar", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126734838" + ], + "created_at": "2026-07-10T10:12:43.659688", + "updated_at": "2026-07-10T10:12:43.659688", + "url": "/v1/software/waybar" +} diff --git a/site/public/v1/software/wayfinding-software/index.json b/site/public/v1/software/wayfinding-software/index.json new file mode 100644 index 000000000000..82e3a393fc6f --- /dev/null +++ b/site/public/v1/software/wayfinding-software/index.json @@ -0,0 +1,19 @@ +{ + "id": 10949, + "slug": "wayfinding-software", + "name": "wayfinding software", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18394654" + ], + "created_at": "2026-07-10T10:12:43.660685", + "updated_at": "2026-07-10T10:12:43.660685", + "url": "/v1/software/wayfinding-software" +} diff --git a/site/public/v1/software/wayland-ivi-extension/index.json b/site/public/v1/software/wayland-ivi-extension/index.json new file mode 100644 index 000000000000..4df7c8273c8b --- /dev/null +++ b/site/public/v1/software/wayland-ivi-extension/index.json @@ -0,0 +1,21 @@ +{ + "id": 10950, + "slug": "wayland-ivi-extension", + "name": "wayland-ivi-extension", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Apache Software License 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116702538" + ], + "created_at": "2026-07-10T10:12:43.660685", + "updated_at": "2026-07-10T10:12:43.660685", + "url": "/v1/software/wayland-ivi-extension" +} diff --git a/site/public/v1/software/wayland-protocols/index.json b/site/public/v1/software/wayland-protocols/index.json new file mode 100644 index 000000000000..4f4cade3f29b --- /dev/null +++ b/site/public/v1/software/wayland-protocols/index.json @@ -0,0 +1,21 @@ +{ + "id": 10951, + "slug": "wayland-protocols", + "name": "wayland-protocols", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975563" + ], + "created_at": "2026-07-10T10:12:43.660685", + "updated_at": "2026-07-10T10:12:43.660685", + "url": "/v1/software/wayland-protocols" +} diff --git a/site/public/v1/software/wbstack/index.json b/site/public/v1/software/wbstack/index.json new file mode 100644 index 000000000000..a8fa1ed1e0a3 --- /dev/null +++ b/site/public/v1/software/wbstack/index.json @@ -0,0 +1,19 @@ +{ + "id": 10952, + "slug": "wbstack", + "name": "WBStack", + "release_date": "2019-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120180314" + ], + "created_at": "2026-07-10T10:12:43.661729", + "updated_at": "2026-07-10T10:12:43.661729", + "url": "/v1/software/wbstack" +} diff --git a/site/public/v1/software/wcf-data-services/index.json b/site/public/v1/software/wcf-data-services/index.json new file mode 100644 index 000000000000..19725a88d5d8 --- /dev/null +++ b/site/public/v1/software/wcf-data-services/index.json @@ -0,0 +1,19 @@ +{ + "id": 10953, + "slug": "wcf-data-services", + "name": "WCF Data Services", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q581651" + ], + "created_at": "2026-07-10T10:12:43.661729", + "updated_at": "2026-07-10T10:12:43.661729", + "url": "/v1/software/wcf-data-services" +} diff --git a/site/public/v1/software/wdiff/index.json b/site/public/v1/software/wdiff/index.json new file mode 100644 index 000000000000..7254e43f147f --- /dev/null +++ b/site/public/v1/software/wdiff/index.json @@ -0,0 +1,21 @@ +{ + "id": 10954, + "slug": "wdiff", + "name": "wdiff", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Unix-like operating system" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4052996" + ], + "created_at": "2026-07-10T10:12:43.661729", + "updated_at": "2026-07-10T10:12:43.661729", + "url": "/v1/software/wdiff" +} diff --git a/site/public/v1/software/wdsub/index.json b/site/public/v1/software/wdsub/index.json new file mode 100644 index 000000000000..2c59d0ba42b8 --- /dev/null +++ b/site/public/v1/software/wdsub/index.json @@ -0,0 +1,25 @@ +{ + "id": 10955, + "slug": "wdsub", + "name": "wdsub", + "release_date": null, + "developers": [ + "José Emilio Labra Gayo" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Scala" + ], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113291721" + ], + "created_at": "2026-07-10T10:12:43.662717", + "updated_at": "2026-07-10T10:12:43.662717", + "url": "/v1/software/wdsub" +} diff --git a/site/public/v1/software/wdu/index.json b/site/public/v1/software/wdu/index.json new file mode 100644 index 000000000000..2e8c3f0350ba --- /dev/null +++ b/site/public/v1/software/wdu/index.json @@ -0,0 +1,23 @@ +{ + "id": 10956, + "slug": "wdu", + "name": "WDU", + "release_date": null, + "developers": [ + "Westinghouse Electric Corporation" + ], + "publishers": [], + "operating_systems": [ + "VSE" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7948621" + ], + "created_at": "2026-07-10T10:12:43.662717", + "updated_at": "2026-07-10T10:12:43.662717", + "url": "/v1/software/wdu" +} diff --git a/site/public/v1/software/we-create-problems/index.json b/site/public/v1/software/we-create-problems/index.json new file mode 100644 index 000000000000..b8029cb6d853 --- /dev/null +++ b/site/public/v1/software/we-create-problems/index.json @@ -0,0 +1,19 @@ +{ + "id": 10957, + "slug": "we-create-problems", + "name": "We Create Problems", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108829959" + ], + "created_at": "2026-07-10T10:12:43.662717", + "updated_at": "2026-07-10T10:12:43.662717", + "url": "/v1/software/we-create-problems" +} diff --git a/site/public/v1/software/we-the-people/index.json b/site/public/v1/software/we-the-people/index.json new file mode 100644 index 000000000000..9e01e915fbcc --- /dev/null +++ b/site/public/v1/software/we-the-people/index.json @@ -0,0 +1,19 @@ +{ + "id": 10958, + "slug": "we-the-people", + "name": "We the People", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7977910" + ], + "created_at": "2026-07-10T10:12:43.662717", + "updated_at": "2026-07-10T10:12:43.662717", + "url": "/v1/software/we-the-people" +} diff --git a/site/public/v1/software/weap/index.json b/site/public/v1/software/weap/index.json new file mode 100644 index 000000000000..dabf09a41cf1 --- /dev/null +++ b/site/public/v1/software/weap/index.json @@ -0,0 +1,19 @@ +{ + "id": 10959, + "slug": "weap", + "name": "WEAP", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6621261" + ], + "created_at": "2026-07-10T10:12:43.663719", + "updated_at": "2026-07-10T10:12:43.663719", + "url": "/v1/software/weap" +} diff --git a/site/public/v1/software/weasis/index.json b/site/public/v1/software/weasis/index.json new file mode 100644 index 000000000000..70746ab32d2a --- /dev/null +++ b/site/public/v1/software/weasis/index.json @@ -0,0 +1,24 @@ +{ + "id": 10960, + "slug": "weasis", + "name": "Weasis", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Java" + ], + "licenses": [ + "Apache Software License 2.0", + "Eclipse Public License 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135184604" + ], + "created_at": "2026-07-10T10:12:43.663719", + "updated_at": "2026-07-10T10:12:43.663719", + "url": "/v1/software/weasis" +} diff --git a/site/public/v1/software/weather-research-and-forecasting-model/index.json b/site/public/v1/software/weather-research-and-forecasting-model/index.json new file mode 100644 index 000000000000..0291ffc2bd2f --- /dev/null +++ b/site/public/v1/software/weather-research-and-forecasting-model/index.json @@ -0,0 +1,19 @@ +{ + "id": 10961, + "slug": "weather-research-and-forecasting-model", + "name": "Weather Research and Forecasting model", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q838305" + ], + "created_at": "2026-07-10T10:12:43.663719", + "updated_at": "2026-07-10T10:12:43.663719", + "url": "/v1/software/weather-research-and-forecasting-model" +} diff --git a/site/public/v1/software/weatherbug/index.json b/site/public/v1/software/weatherbug/index.json new file mode 100644 index 000000000000..47ab55f3f542 --- /dev/null +++ b/site/public/v1/software/weatherbug/index.json @@ -0,0 +1,19 @@ +{ + "id": 10962, + "slug": "weatherbug", + "name": "WeatherBug", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7978188" + ], + "created_at": "2026-07-10T10:12:43.664717", + "updated_at": "2026-07-10T10:12:43.664717", + "url": "/v1/software/weatherbug" +} diff --git a/site/public/v1/software/web-api-fuzzing-project/index.json b/site/public/v1/software/web-api-fuzzing-project/index.json new file mode 100644 index 000000000000..d99cdf580f1b --- /dev/null +++ b/site/public/v1/software/web-api-fuzzing-project/index.json @@ -0,0 +1,19 @@ +{ + "id": 10963, + "slug": "web-api-fuzzing-project", + "name": "web-api-fuzzing-project", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q127485538" + ], + "created_at": "2026-07-10T10:12:43.664717", + "updated_at": "2026-07-10T10:12:43.664717", + "url": "/v1/software/web-api-fuzzing-project" +} diff --git a/site/public/v1/software/web-app-places-of-jewish-history/index.json b/site/public/v1/software/web-app-places-of-jewish-history/index.json new file mode 100644 index 000000000000..2e4200b56f70 --- /dev/null +++ b/site/public/v1/software/web-app-places-of-jewish-history/index.json @@ -0,0 +1,19 @@ +{ + "id": 10964, + "slug": "web-app-places-of-jewish-history", + "name": "Web-App »Places of Jewish history«", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084740" + ], + "created_at": "2026-07-10T10:12:43.664717", + "updated_at": "2026-07-10T10:12:43.664717", + "url": "/v1/software/web-app-places-of-jewish-history" +} diff --git a/site/public/v1/software/web-dynpro/index.json b/site/public/v1/software/web-dynpro/index.json new file mode 100644 index 000000000000..b311ab1d9b66 --- /dev/null +++ b/site/public/v1/software/web-dynpro/index.json @@ -0,0 +1,19 @@ +{ + "id": 10965, + "slug": "web-dynpro", + "name": "Web Dynpro", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1804792" + ], + "created_at": "2026-07-10T10:12:43.665700", + "updated_at": "2026-07-10T10:12:43.665700", + "url": "/v1/software/web-dynpro" +} diff --git a/site/public/v1/software/web-embedding-fonts-tool/index.json b/site/public/v1/software/web-embedding-fonts-tool/index.json new file mode 100644 index 000000000000..3f48adb2b60b --- /dev/null +++ b/site/public/v1/software/web-embedding-fonts-tool/index.json @@ -0,0 +1,21 @@ +{ + "id": 10966, + "slug": "web-embedding-fonts-tool", + "name": "Web Embedding Fonts Tool", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124311980" + ], + "created_at": "2026-07-10T10:12:43.665700", + "updated_at": "2026-07-10T10:12:43.665700", + "url": "/v1/software/web-embedding-fonts-tool" +} diff --git a/site/public/v1/software/web-platform-for-embedded/index.json b/site/public/v1/software/web-platform-for-embedded/index.json new file mode 100644 index 000000000000..05b2cb3163ba --- /dev/null +++ b/site/public/v1/software/web-platform-for-embedded/index.json @@ -0,0 +1,19 @@ +{ + "id": 10967, + "slug": "web-platform-for-embedded", + "name": "Web Platform for Embedded", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116597429" + ], + "created_at": "2026-07-10T10:12:43.665700", + "updated_at": "2026-07-10T10:12:43.665700", + "url": "/v1/software/web-platform-for-embedded" +} diff --git a/site/public/v1/software/web-services-invocation-framework/index.json b/site/public/v1/software/web-services-invocation-framework/index.json new file mode 100644 index 000000000000..5c195abc7658 --- /dev/null +++ b/site/public/v1/software/web-services-invocation-framework/index.json @@ -0,0 +1,21 @@ +{ + "id": 10968, + "slug": "web-services-invocation-framework", + "name": "Web Services Invocation Framework", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Apache License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q9095379" + ], + "created_at": "2026-07-10T10:12:43.666689", + "updated_at": "2026-07-10T10:12:43.666689", + "url": "/v1/software/web-services-invocation-framework" +} diff --git a/site/public/v1/software/web-services-tools/index.json b/site/public/v1/software/web-services-tools/index.json new file mode 100644 index 000000000000..51bf217188db --- /dev/null +++ b/site/public/v1/software/web-services-tools/index.json @@ -0,0 +1,19 @@ +{ + "id": 10969, + "slug": "web-services-tools", + "name": "Web Services Tools", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76178094" + ], + "created_at": "2026-07-10T10:12:43.666689", + "updated_at": "2026-07-10T10:12:43.666689", + "url": "/v1/software/web-services-tools" +} diff --git a/site/public/v1/software/web-tools-common/index.json b/site/public/v1/software/web-tools-common/index.json new file mode 100644 index 000000000000..3c2e166f4410 --- /dev/null +++ b/site/public/v1/software/web-tools-common/index.json @@ -0,0 +1,19 @@ +{ + "id": 10970, + "slug": "web-tools-common", + "name": "Web Tools Common", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76178143" + ], + "created_at": "2026-07-10T10:12:43.666689", + "updated_at": "2026-07-10T10:12:43.666689", + "url": "/v1/software/web-tools-common" +} diff --git a/site/public/v1/software/webanno/index.json b/site/public/v1/software/webanno/index.json new file mode 100644 index 000000000000..2b60a2364971 --- /dev/null +++ b/site/public/v1/software/webanno/index.json @@ -0,0 +1,21 @@ +{ + "id": 10971, + "slug": "webanno", + "name": "WebAnno", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Apache Software License 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q57697035" + ], + "created_at": "2026-07-10T10:12:43.667696", + "updated_at": "2026-07-10T10:12:43.667696", + "url": "/v1/software/webanno" +} diff --git a/site/public/v1/software/webapp-config/index.json b/site/public/v1/software/webapp-config/index.json new file mode 100644 index 000000000000..8fd9fb4f20db --- /dev/null +++ b/site/public/v1/software/webapp-config/index.json @@ -0,0 +1,19 @@ +{ + "id": 10972, + "slug": "webapp-config", + "name": "webapp-config", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975564" + ], + "created_at": "2026-07-10T10:12:43.667696", + "updated_at": "2026-07-10T10:12:43.667696", + "url": "/v1/software/webapp-config" +} diff --git a/site/public/v1/software/webbie/index.json b/site/public/v1/software/webbie/index.json new file mode 100644 index 000000000000..8885beef98f0 --- /dev/null +++ b/site/public/v1/software/webbie/index.json @@ -0,0 +1,19 @@ +{ + "id": 10973, + "slug": "webbie", + "name": "WebbIE", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5371134" + ], + "created_at": "2026-07-10T10:12:43.667696", + "updated_at": "2026-07-10T10:12:43.667696", + "url": "/v1/software/webbie" +} diff --git a/site/public/v1/software/webcam-social-shopper/index.json b/site/public/v1/software/webcam-social-shopper/index.json new file mode 100644 index 000000000000..a84e2c3405d2 --- /dev/null +++ b/site/public/v1/software/webcam-social-shopper/index.json @@ -0,0 +1,19 @@ +{ + "id": 10974, + "slug": "webcam-social-shopper", + "name": "Webcam Social Shopper", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7978720" + ], + "created_at": "2026-07-10T10:12:43.668683", + "updated_at": "2026-07-10T10:12:43.668683", + "url": "/v1/software/webcam-social-shopper" +} diff --git a/site/public/v1/software/webchem/index.json b/site/public/v1/software/webchem/index.json new file mode 100644 index 000000000000..40ba12abe34f --- /dev/null +++ b/site/public/v1/software/webchem/index.json @@ -0,0 +1,19 @@ +{ + "id": 10975, + "slug": "webchem", + "name": "webchem", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112338902" + ], + "created_at": "2026-07-10T10:12:43.668683", + "updated_at": "2026-07-10T10:12:43.668683", + "url": "/v1/software/webchem" +} diff --git a/site/public/v1/software/webclust/index.json b/site/public/v1/software/webclust/index.json new file mode 100644 index 000000000000..15227850b287 --- /dev/null +++ b/site/public/v1/software/webclust/index.json @@ -0,0 +1,19 @@ +{ + "id": 10976, + "slug": "webclust", + "name": "WebClust", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084741" + ], + "created_at": "2026-07-10T10:12:43.668683", + "updated_at": "2026-07-10T10:12:43.668683", + "url": "/v1/software/webclust" +} diff --git a/site/public/v1/software/webcore/index.json b/site/public/v1/software/webcore/index.json new file mode 100644 index 000000000000..e8f7dba558a1 --- /dev/null +++ b/site/public/v1/software/webcore/index.json @@ -0,0 +1,19 @@ +{ + "id": 10977, + "slug": "webcore", + "name": "WebCore", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1057933" + ], + "created_at": "2026-07-10T10:12:43.669701", + "updated_at": "2026-07-10T10:12:43.669701", + "url": "/v1/software/webcore" +} diff --git a/site/public/v1/software/webct/index.json b/site/public/v1/software/webct/index.json new file mode 100644 index 000000000000..269acc6e0fbb --- /dev/null +++ b/site/public/v1/software/webct/index.json @@ -0,0 +1,19 @@ +{ + "id": 10978, + "slug": "webct", + "name": "WebCT", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3174811" + ], + "created_at": "2026-07-10T10:12:43.669701", + "updated_at": "2026-07-10T10:12:43.669701", + "url": "/v1/software/webct" +} diff --git a/site/public/v1/software/webdev/index.json b/site/public/v1/software/webdev/index.json new file mode 100644 index 000000000000..4973490fb422 --- /dev/null +++ b/site/public/v1/software/webdev/index.json @@ -0,0 +1,21 @@ +{ + "id": 10979, + "slug": "webdev", + "name": "WebDev", + "release_date": null, + "developers": [ + "PC SOFT" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3566971" + ], + "created_at": "2026-07-10T10:12:43.669701", + "updated_at": "2026-07-10T10:12:43.669701", + "url": "/v1/software/webdev" +} diff --git a/site/public/v1/software/webfs/index.json b/site/public/v1/software/webfs/index.json new file mode 100644 index 000000000000..58bb53955912 --- /dev/null +++ b/site/public/v1/software/webfs/index.json @@ -0,0 +1,19 @@ +{ + "id": 10980, + "slug": "webfs", + "name": "webfs", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110473677" + ], + "created_at": "2026-07-10T10:12:43.670703", + "updated_at": "2026-07-10T10:12:43.670703", + "url": "/v1/software/webfs" +} diff --git a/site/public/v1/software/webgen/index.json b/site/public/v1/software/webgen/index.json new file mode 100644 index 000000000000..049d9200309d --- /dev/null +++ b/site/public/v1/software/webgen/index.json @@ -0,0 +1,19 @@ +{ + "id": 10981, + "slug": "webgen", + "name": "webgen", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63064907" + ], + "created_at": "2026-07-10T10:12:43.670703", + "updated_at": "2026-07-10T10:12:43.670703", + "url": "/v1/software/webgen" +} diff --git a/site/public/v1/software/webgl/index.json b/site/public/v1/software/webgl/index.json new file mode 100644 index 000000000000..162fa1736d10 --- /dev/null +++ b/site/public/v1/software/webgl/index.json @@ -0,0 +1,21 @@ +{ + "id": 10982, + "slug": "webgl", + "name": "WebGL", + "release_date": null, + "developers": [ + "Khronos Group" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q375913" + ], + "created_at": "2026-07-10T10:12:43.670703", + "updated_at": "2026-07-10T10:12:43.670703", + "url": "/v1/software/webgl" +} diff --git a/site/public/v1/software/weblicht-namedentities-en/index.json b/site/public/v1/software/weblicht-namedentities-en/index.json new file mode 100644 index 000000000000..f7781b404546 --- /dev/null +++ b/site/public/v1/software/weblicht-namedentities-en/index.json @@ -0,0 +1,19 @@ +{ + "id": 10983, + "slug": "weblicht-namedentities-en", + "name": "WebLicht NamedEntities EN", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087768" + ], + "created_at": "2026-07-10T10:12:43.671714", + "updated_at": "2026-07-10T10:12:43.671714", + "url": "/v1/software/weblicht-namedentities-en" +} diff --git a/site/public/v1/software/weblicht/index.json b/site/public/v1/software/weblicht/index.json new file mode 100644 index 000000000000..9f34efc0b905 --- /dev/null +++ b/site/public/v1/software/weblicht/index.json @@ -0,0 +1,19 @@ +{ + "id": 10984, + "slug": "weblicht", + "name": "WebLicht", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084742" + ], + "created_at": "2026-07-10T10:12:43.671714", + "updated_at": "2026-07-10T10:12:43.671714", + "url": "/v1/software/weblicht" +} diff --git a/site/public/v1/software/webload/index.json b/site/public/v1/software/webload/index.json new file mode 100644 index 000000000000..1f72cf98ff88 --- /dev/null +++ b/site/public/v1/software/webload/index.json @@ -0,0 +1,23 @@ +{ + "id": 10985, + "slug": "webload", + "name": "WebLOAD", + "release_date": null, + "developers": [ + "RadView Software" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q20866654" + ], + "created_at": "2026-07-10T10:12:43.671714", + "updated_at": "2026-07-10T10:12:43.671714", + "url": "/v1/software/webload" +} diff --git a/site/public/v1/software/weblocks/index.json b/site/public/v1/software/weblocks/index.json new file mode 100644 index 000000000000..c463aa92333a --- /dev/null +++ b/site/public/v1/software/weblocks/index.json @@ -0,0 +1,21 @@ +{ + "id": 10986, + "slug": "weblocks", + "name": "Weblocks", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Common Lisp" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7978802" + ], + "created_at": "2026-07-10T10:12:43.672682", + "updated_at": "2026-07-10T10:12:43.672682", + "url": "/v1/software/weblocks" +} diff --git a/site/public/v1/software/webmathematics-interactive/index.json b/site/public/v1/software/webmathematics-interactive/index.json new file mode 100644 index 000000000000..f937fab28652 --- /dev/null +++ b/site/public/v1/software/webmathematics-interactive/index.json @@ -0,0 +1,19 @@ +{ + "id": 10987, + "slug": "webmathematics-interactive", + "name": "WebMathematics Interactive", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q304288" + ], + "created_at": "2026-07-10T10:12:43.672682", + "updated_at": "2026-07-10T10:12:43.672682", + "url": "/v1/software/webmathematics-interactive" +} diff --git a/site/public/v1/software/webmethods-integration-server/index.json b/site/public/v1/software/webmethods-integration-server/index.json new file mode 100644 index 000000000000..47c5dac9692e --- /dev/null +++ b/site/public/v1/software/webmethods-integration-server/index.json @@ -0,0 +1,21 @@ +{ + "id": 10988, + "slug": "webmethods-integration-server", + "name": "webMethods Integration Server", + "release_date": null, + "developers": [ + "Software AG" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7978461" + ], + "created_at": "2026-07-10T10:12:43.672682", + "updated_at": "2026-07-10T10:12:43.672682", + "url": "/v1/software/webmethods-integration-server" +} diff --git a/site/public/v1/software/webplotdigitizer/index.json b/site/public/v1/software/webplotdigitizer/index.json new file mode 100644 index 000000000000..971672494630 --- /dev/null +++ b/site/public/v1/software/webplotdigitizer/index.json @@ -0,0 +1,21 @@ +{ + "id": 10989, + "slug": "webplotdigitizer", + "name": "WebPlotDigitizer", + "release_date": null, + "developers": [ + "Ankit Rohatgi" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106125965" + ], + "created_at": "2026-07-10T10:12:43.673660", + "updated_at": "2026-07-10T10:12:43.673660", + "url": "/v1/software/webplotdigitizer" +} diff --git a/site/public/v1/software/webplus/index.json b/site/public/v1/software/webplus/index.json new file mode 100644 index 000000000000..032d579ce984 --- /dev/null +++ b/site/public/v1/software/webplus/index.json @@ -0,0 +1,21 @@ +{ + "id": 10990, + "slug": "webplus", + "name": "WebPlus", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7978474" + ], + "created_at": "2026-07-10T10:12:43.673660", + "updated_at": "2026-07-10T10:12:43.673660", + "url": "/v1/software/webplus" +} diff --git a/site/public/v1/software/webrender/index.json b/site/public/v1/software/webrender/index.json new file mode 100644 index 000000000000..f531991febb8 --- /dev/null +++ b/site/public/v1/software/webrender/index.json @@ -0,0 +1,21 @@ +{ + "id": 10991, + "slug": "webrender", + "name": "WebRender", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Mozilla Public License, version 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121289953" + ], + "created_at": "2026-07-10T10:12:43.673660", + "updated_at": "2026-07-10T10:12:43.673660", + "url": "/v1/software/webrender" +} diff --git a/site/public/v1/software/webroot-window-washer/index.json b/site/public/v1/software/webroot-window-washer/index.json new file mode 100644 index 000000000000..e1fa75db76bd --- /dev/null +++ b/site/public/v1/software/webroot-window-washer/index.json @@ -0,0 +1,21 @@ +{ + "id": 10992, + "slug": "webroot-window-washer", + "name": "Webroot Window Washer", + "release_date": null, + "developers": [ + "Webroot Inc." + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7978820" + ], + "created_at": "2026-07-10T10:12:43.674606", + "updated_at": "2026-07-10T10:12:43.674606", + "url": "/v1/software/webroot-window-washer" +} diff --git a/site/public/v1/software/webscarab/index.json b/site/public/v1/software/webscarab/index.json new file mode 100644 index 000000000000..9b69a2c14a2d --- /dev/null +++ b/site/public/v1/software/webscarab/index.json @@ -0,0 +1,21 @@ +{ + "id": 10993, + "slug": "webscarab", + "name": "WebScarab", + "release_date": null, + "developers": [ + "OWASP" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7978482" + ], + "created_at": "2026-07-10T10:12:43.674606", + "updated_at": "2026-07-10T10:12:43.674606", + "url": "/v1/software/webscarab" +} diff --git a/site/public/v1/software/websharper/index.json b/site/public/v1/software/websharper/index.json new file mode 100644 index 000000000000..a2a3510f9856 --- /dev/null +++ b/site/public/v1/software/websharper/index.json @@ -0,0 +1,23 @@ +{ + "id": 10994, + "slug": "websharper", + "name": "WebSharper", + "release_date": "2008-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "F#" + ], + "licenses": [ + "Apache License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7978483" + ], + "created_at": "2026-07-10T10:12:43.674606", + "updated_at": "2026-07-10T10:12:43.674606", + "url": "/v1/software/websharper" +} diff --git a/site/public/v1/software/website-php/index.json b/site/public/v1/software/website-php/index.json new file mode 100644 index 000000000000..bae5cf4972e3 --- /dev/null +++ b/site/public/v1/software/website-php/index.json @@ -0,0 +1,21 @@ +{ + "id": 10995, + "slug": "website-php", + "name": "WebSite-PHP", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3566970" + ], + "created_at": "2026-07-10T10:12:43.674606", + "updated_at": "2026-07-10T10:12:43.674606", + "url": "/v1/software/website-php" +} diff --git a/site/public/v1/software/webslides/index.json b/site/public/v1/software/webslides/index.json new file mode 100644 index 000000000000..3109d456415f --- /dev/null +++ b/site/public/v1/software/webslides/index.json @@ -0,0 +1,19 @@ +{ + "id": 10996, + "slug": "webslides", + "name": "WebSlides", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084751" + ], + "created_at": "2026-07-10T10:12:43.675675", + "updated_at": "2026-07-10T10:12:43.675675", + "url": "/v1/software/webslides" +} diff --git a/site/public/v1/software/websphere-portal/index.json b/site/public/v1/software/websphere-portal/index.json new file mode 100644 index 000000000000..bef05f215e5c --- /dev/null +++ b/site/public/v1/software/websphere-portal/index.json @@ -0,0 +1,23 @@ +{ + "id": 10997, + "slug": "websphere-portal", + "name": "WebSphere Portal", + "release_date": null, + "developers": [ + "IBM" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Java" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4053022" + ], + "created_at": "2026-07-10T10:12:43.675675", + "updated_at": "2026-07-10T10:12:43.675675", + "url": "/v1/software/websphere-portal" +} diff --git a/site/public/v1/software/webstump/index.json b/site/public/v1/software/webstump/index.json new file mode 100644 index 000000000000..86e970c12c4a --- /dev/null +++ b/site/public/v1/software/webstump/index.json @@ -0,0 +1,19 @@ +{ + "id": 10998, + "slug": "webstump", + "name": "WebSTUMP", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76184553" + ], + "created_at": "2026-07-10T10:12:43.675675", + "updated_at": "2026-07-10T10:12:43.675675", + "url": "/v1/software/webstump" +} diff --git a/site/public/v1/software/websty/index.json b/site/public/v1/software/websty/index.json new file mode 100644 index 000000000000..ffccdc5ebc2a --- /dev/null +++ b/site/public/v1/software/websty/index.json @@ -0,0 +1,19 @@ +{ + "id": 10999, + "slug": "websty", + "name": "WebSty", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084752" + ], + "created_at": "2026-07-10T10:12:43.676678", + "updated_at": "2026-07-10T10:12:43.676678", + "url": "/v1/software/websty" +} diff --git a/site/public/v1/software/webtag/index.json b/site/public/v1/software/webtag/index.json new file mode 100644 index 000000000000..c9ffc8039318 --- /dev/null +++ b/site/public/v1/software/webtag/index.json @@ -0,0 +1,19 @@ +{ + "id": 11000, + "slug": "webtag", + "name": "Webtag", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16335174" + ], + "created_at": "2026-07-10T10:12:43.676678", + "updated_at": "2026-07-10T10:12:43.676678", + "url": "/v1/software/webtag" +} diff --git a/site/public/v1/software/webtools-releng/index.json b/site/public/v1/software/webtools-releng/index.json new file mode 100644 index 000000000000..8da093ff13d5 --- /dev/null +++ b/site/public/v1/software/webtools-releng/index.json @@ -0,0 +1,19 @@ +{ + "id": 11001, + "slug": "webtools-releng", + "name": "Webtools Releng", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76178574" + ], + "created_at": "2026-07-10T10:12:43.676678", + "updated_at": "2026-07-10T10:12:43.676678", + "url": "/v1/software/webtools-releng" +} diff --git a/site/public/v1/software/webtoon/index.json b/site/public/v1/software/webtoon/index.json new file mode 100644 index 000000000000..3b3ae9251f17 --- /dev/null +++ b/site/public/v1/software/webtoon/index.json @@ -0,0 +1,19 @@ +{ + "id": 11002, + "slug": "webtoon", + "name": "Webtoon", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q24836950" + ], + "created_at": "2026-07-10T10:12:43.677688", + "updated_at": "2026-07-10T10:12:43.677688", + "url": "/v1/software/webtoon" +} diff --git a/site/public/v1/software/webtrekk/index.json b/site/public/v1/software/webtrekk/index.json new file mode 100644 index 000000000000..d9f21884f145 --- /dev/null +++ b/site/public/v1/software/webtrekk/index.json @@ -0,0 +1,23 @@ +{ + "id": 11003, + "slug": "webtrekk", + "name": "Webtrekk", + "release_date": "2004-01-01", + "developers": [ + "Webtrekk GmbH" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "PHP" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124741653" + ], + "created_at": "2026-07-10T10:12:43.677688", + "updated_at": "2026-07-10T10:12:43.677688", + "url": "/v1/software/webtrekk" +} diff --git a/site/public/v1/software/webweaver-suite/index.json b/site/public/v1/software/webweaver-suite/index.json new file mode 100644 index 000000000000..b57b29c072ba --- /dev/null +++ b/site/public/v1/software/webweaver-suite/index.json @@ -0,0 +1,19 @@ +{ + "id": 11004, + "slug": "webweaver-suite", + "name": "WebWeaver Suite", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2553311" + ], + "created_at": "2026-07-10T10:12:43.677688", + "updated_at": "2026-07-10T10:12:43.677688", + "url": "/v1/software/webweaver-suite" +} diff --git a/site/public/v1/software/webwhacker/index.json b/site/public/v1/software/webwhacker/index.json new file mode 100644 index 000000000000..0693516a8a37 --- /dev/null +++ b/site/public/v1/software/webwhacker/index.json @@ -0,0 +1,19 @@ +{ + "id": 11005, + "slug": "webwhacker", + "name": "WebWhacker", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7978497" + ], + "created_at": "2026-07-10T10:12:43.677688", + "updated_at": "2026-07-10T10:12:43.677688", + "url": "/v1/software/webwhacker" +} diff --git a/site/public/v1/software/webwork/index.json b/site/public/v1/software/webwork/index.json new file mode 100644 index 000000000000..8bc06c6229f1 --- /dev/null +++ b/site/public/v1/software/webwork/index.json @@ -0,0 +1,23 @@ +{ + "id": 11006, + "slug": "webwork", + "name": "WeBWorK", + "release_date": null, + "developers": [ + "University of Rochester" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Artistic License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7977201" + ], + "created_at": "2026-07-10T10:12:43.678699", + "updated_at": "2026-07-10T10:12:43.678699", + "url": "/v1/software/webwork" +} diff --git a/site/public/v1/software/webyetu/index.json b/site/public/v1/software/webyetu/index.json new file mode 100644 index 000000000000..7dcf94b35eff --- /dev/null +++ b/site/public/v1/software/webyetu/index.json @@ -0,0 +1,19 @@ +{ + "id": 11007, + "slug": "webyetu", + "name": "WebYetu", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139885772" + ], + "created_at": "2026-07-10T10:12:43.678699", + "updated_at": "2026-07-10T10:12:43.678699", + "url": "/v1/software/webyetu" +} diff --git a/site/public/v1/software/wedoist/index.json b/site/public/v1/software/wedoist/index.json new file mode 100644 index 000000000000..0aa5c5e0cbc9 --- /dev/null +++ b/site/public/v1/software/wedoist/index.json @@ -0,0 +1,21 @@ +{ + "id": 11008, + "slug": "wedoist", + "name": "Wedoist", + "release_date": null, + "developers": [ + "Doist" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7979256" + ], + "created_at": "2026-07-10T10:12:43.678699", + "updated_at": "2026-07-10T10:12:43.678699", + "url": "/v1/software/wedoist" +} diff --git a/site/public/v1/software/weektodo/index.json b/site/public/v1/software/weektodo/index.json new file mode 100644 index 000000000000..09fcac11c4f7 --- /dev/null +++ b/site/public/v1/software/weektodo/index.json @@ -0,0 +1,19 @@ +{ + "id": 11009, + "slug": "weektodo", + "name": "Weektodo", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113036325" + ], + "created_at": "2026-07-10T10:12:43.679705", + "updated_at": "2026-07-10T10:12:43.679705", + "url": "/v1/software/weektodo" +} diff --git a/site/public/v1/software/weft-qda/index.json b/site/public/v1/software/weft-qda/index.json new file mode 100644 index 000000000000..87268d9991b3 --- /dev/null +++ b/site/public/v1/software/weft-qda/index.json @@ -0,0 +1,21 @@ +{ + "id": 11010, + "slug": "weft-qda", + "name": "Weft QDA", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105229779" + ], + "created_at": "2026-07-10T10:12:43.679705", + "updated_at": "2026-07-10T10:12:43.679705", + "url": "/v1/software/weft-qda" +} diff --git a/site/public/v1/software/weihenstephan-standards/index.json b/site/public/v1/software/weihenstephan-standards/index.json new file mode 100644 index 000000000000..ce3c9673deee --- /dev/null +++ b/site/public/v1/software/weihenstephan-standards/index.json @@ -0,0 +1,19 @@ +{ + "id": 11011, + "slug": "weihenstephan-standards", + "name": "Weihenstephan Standards", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2555323" + ], + "created_at": "2026-07-10T10:12:43.679705", + "updated_at": "2026-07-10T10:12:43.679705", + "url": "/v1/software/weihenstephan-standards" +} diff --git a/site/public/v1/software/weiyun/index.json b/site/public/v1/software/weiyun/index.json new file mode 100644 index 000000000000..a33f5ed92520 --- /dev/null +++ b/site/public/v1/software/weiyun/index.json @@ -0,0 +1,25 @@ +{ + "id": 11012, + "slug": "weiyun", + "name": "Weiyun", + "release_date": "2012-07-12", + "developers": [ + "Tencent" + ], + "publishers": [], + "operating_systems": [ + "Mac operating system", + "iOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q24836220" + ], + "created_at": "2026-07-10T10:12:43.680705", + "updated_at": "2026-07-10T10:12:43.680705", + "url": "/v1/software/weiyun" +} diff --git a/site/public/v1/software/wemeet/index.json b/site/public/v1/software/wemeet/index.json new file mode 100644 index 000000000000..05791c50a2c6 --- /dev/null +++ b/site/public/v1/software/wemeet/index.json @@ -0,0 +1,19 @@ +{ + "id": 11013, + "slug": "wemeet", + "name": "WeMeet", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q15927131" + ], + "created_at": "2026-07-10T10:12:43.680705", + "updated_at": "2026-07-10T10:12:43.680705", + "url": "/v1/software/wemeet" +} diff --git a/site/public/v1/software/wenlin-software-for-learning-chinese/index.json b/site/public/v1/software/wenlin-software-for-learning-chinese/index.json new file mode 100644 index 000000000000..111c7c16eacf --- /dev/null +++ b/site/public/v1/software/wenlin-software-for-learning-chinese/index.json @@ -0,0 +1,19 @@ +{ + "id": 11014, + "slug": "wenlin-software-for-learning-chinese", + "name": "Wenlin Software for learning Chinese", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7982886" + ], + "created_at": "2026-07-10T10:12:43.681608", + "updated_at": "2026-07-10T10:12:43.681608", + "url": "/v1/software/wenlin-software-for-learning-chinese" +} diff --git a/site/public/v1/software/weverse/index.json b/site/public/v1/software/weverse/index.json new file mode 100644 index 000000000000..fdf178e3f9d3 --- /dev/null +++ b/site/public/v1/software/weverse/index.json @@ -0,0 +1,19 @@ +{ + "id": 11015, + "slug": "weverse", + "name": "Weverse", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q91219994" + ], + "created_at": "2026-07-10T10:12:43.681608", + "updated_at": "2026-07-10T10:12:43.681608", + "url": "/v1/software/weverse" +} diff --git a/site/public/v1/software/what-if-software/index.json b/site/public/v1/software/what-if-software/index.json new file mode 100644 index 000000000000..b4ee4e7a2d65 --- /dev/null +++ b/site/public/v1/software/what-if-software/index.json @@ -0,0 +1,21 @@ +{ + "id": 11016, + "slug": "what-if-software", + "name": "WHAT IF software", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Fortran" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7950057" + ], + "created_at": "2026-07-10T10:12:43.681608", + "updated_at": "2026-07-10T10:12:43.681608", + "url": "/v1/software/what-if-software" +} diff --git a/site/public/v1/software/whatizit/index.json b/site/public/v1/software/whatizit/index.json new file mode 100644 index 000000000000..dfdb93f26316 --- /dev/null +++ b/site/public/v1/software/whatizit/index.json @@ -0,0 +1,19 @@ +{ + "id": 11017, + "slug": "whatizit", + "name": "Whatizit", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084754" + ], + "created_at": "2026-07-10T10:12:43.681608", + "updated_at": "2026-07-10T10:12:43.681608", + "url": "/v1/software/whatizit" +} diff --git a/site/public/v1/software/whatpulse/index.json b/site/public/v1/software/whatpulse/index.json new file mode 100644 index 000000000000..d65fe9653c41 --- /dev/null +++ b/site/public/v1/software/whatpulse/index.json @@ -0,0 +1,23 @@ +{ + "id": 11018, + "slug": "whatpulse", + "name": "WhatPulse", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2308736" + ], + "created_at": "2026-07-10T10:12:43.682605", + "updated_at": "2026-07-10T10:12:43.682605", + "url": "/v1/software/whatpulse" +} diff --git a/site/public/v1/software/whdd/index.json b/site/public/v1/software/whdd/index.json new file mode 100644 index 000000000000..9be4c60761dd --- /dev/null +++ b/site/public/v1/software/whdd/index.json @@ -0,0 +1,19 @@ +{ + "id": 11019, + "slug": "whdd", + "name": "whdd", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975566" + ], + "created_at": "2026-07-10T10:12:43.682605", + "updated_at": "2026-07-10T10:12:43.682605", + "url": "/v1/software/whdd" +} diff --git a/site/public/v1/software/whdload/index.json b/site/public/v1/software/whdload/index.json new file mode 100644 index 000000000000..8f536308fb9e --- /dev/null +++ b/site/public/v1/software/whdload/index.json @@ -0,0 +1,23 @@ +{ + "id": 11020, + "slug": "whdload", + "name": "WHDLoad", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "AmigaOS" + ], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7950128" + ], + "created_at": "2026-07-10T10:12:43.682605", + "updated_at": "2026-07-10T10:12:43.682605", + "url": "/v1/software/whdload" +} diff --git a/site/public/v1/software/whenu-savenow/index.json b/site/public/v1/software/whenu-savenow/index.json new file mode 100644 index 000000000000..c6f1356f51c7 --- /dev/null +++ b/site/public/v1/software/whenu-savenow/index.json @@ -0,0 +1,21 @@ +{ + "id": 11021, + "slug": "whenu-savenow", + "name": "WhenU SaveNow", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "adware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q507572" + ], + "created_at": "2026-07-10T10:12:43.683612", + "updated_at": "2026-07-10T10:12:43.683612", + "url": "/v1/software/whenu-savenow" +} diff --git a/site/public/v1/software/wherigo/index.json b/site/public/v1/software/wherigo/index.json new file mode 100644 index 000000000000..3cb4c1149c29 --- /dev/null +++ b/site/public/v1/software/wherigo/index.json @@ -0,0 +1,19 @@ +{ + "id": 11022, + "slug": "wherigo", + "name": "Wherigo", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3066280" + ], + "created_at": "2026-07-10T10:12:43.683612", + "updated_at": "2026-07-10T10:12:43.683612", + "url": "/v1/software/wherigo" +} diff --git a/site/public/v1/software/whiskercontrol/index.json b/site/public/v1/software/whiskercontrol/index.json new file mode 100644 index 000000000000..f44e3be277f8 --- /dev/null +++ b/site/public/v1/software/whiskercontrol/index.json @@ -0,0 +1,23 @@ +{ + "id": 11023, + "slug": "whiskercontrol", + "name": "WhiskerControl", + "release_date": "2000-01-01", + "developers": [ + "University of Cambridge" + ], + "publishers": [], + "operating_systems": [ + "Windows 7" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7993845" + ], + "created_at": "2026-07-10T10:12:43.683612", + "updated_at": "2026-07-10T10:12:43.683612", + "url": "/v1/software/whiskercontrol" +} diff --git a/site/public/v1/software/whisper/index.json b/site/public/v1/software/whisper/index.json new file mode 100644 index 000000000000..f73fe1f1239e --- /dev/null +++ b/site/public/v1/software/whisper/index.json @@ -0,0 +1,23 @@ +{ + "id": 11024, + "slug": "whisper", + "name": "Whisper", + "release_date": null, + "developers": [ + "OpenAI" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120759195" + ], + "created_at": "2026-07-10T10:12:43.683612", + "updated_at": "2026-07-10T10:12:43.683612", + "url": "/v1/software/whisper" +} diff --git a/site/public/v1/software/whistle-im/index.json b/site/public/v1/software/whistle-im/index.json new file mode 100644 index 000000000000..38ba75c83e8d --- /dev/null +++ b/site/public/v1/software/whistle-im/index.json @@ -0,0 +1,19 @@ +{ + "id": 11025, + "slug": "whistle-im", + "name": "Whistle.im", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q15854208" + ], + "created_at": "2026-07-10T10:12:43.684612", + "updated_at": "2026-07-10T10:12:43.684612", + "url": "/v1/software/whistle-im" +} diff --git a/site/public/v1/software/white-knight/index.json b/site/public/v1/software/white-knight/index.json new file mode 100644 index 000000000000..7af500928853 --- /dev/null +++ b/site/public/v1/software/white-knight/index.json @@ -0,0 +1,19 @@ +{ + "id": 11026, + "slug": "white-knight", + "name": "White Knight", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7994949" + ], + "created_at": "2026-07-10T10:12:43.684612", + "updated_at": "2026-07-10T10:12:43.684612", + "url": "/v1/software/white-knight" +} diff --git a/site/public/v1/software/whitewater-resource-editor/index.json b/site/public/v1/software/whitewater-resource-editor/index.json new file mode 100644 index 000000000000..394398418f6c --- /dev/null +++ b/site/public/v1/software/whitewater-resource-editor/index.json @@ -0,0 +1,19 @@ +{ + "id": 11027, + "slug": "whitewater-resource-editor", + "name": "Whitewater Resource Editor", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17037247" + ], + "created_at": "2026-07-10T10:12:43.685610", + "updated_at": "2026-07-10T10:12:43.685610", + "url": "/v1/software/whitewater-resource-editor" +} diff --git a/site/public/v1/software/whizfolders/index.json b/site/public/v1/software/whizfolders/index.json new file mode 100644 index 000000000000..2a18afc39685 --- /dev/null +++ b/site/public/v1/software/whizfolders/index.json @@ -0,0 +1,19 @@ +{ + "id": 11028, + "slug": "whizfolders", + "name": "Whizfolders", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22909764" + ], + "created_at": "2026-07-10T10:12:43.685610", + "updated_at": "2026-07-10T10:12:43.685610", + "url": "/v1/software/whizfolders" +} diff --git a/site/public/v1/software/whohas/index.json b/site/public/v1/software/whohas/index.json new file mode 100644 index 000000000000..7f02c6cc04ec --- /dev/null +++ b/site/public/v1/software/whohas/index.json @@ -0,0 +1,19 @@ +{ + "id": 11029, + "slug": "whohas", + "name": "whohas", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110473706" + ], + "created_at": "2026-07-10T10:12:43.685610", + "updated_at": "2026-07-10T10:12:43.685610", + "url": "/v1/software/whohas" +} diff --git a/site/public/v1/software/whoscall/index.json b/site/public/v1/software/whoscall/index.json new file mode 100644 index 000000000000..1e8000289fe4 --- /dev/null +++ b/site/public/v1/software/whoscall/index.json @@ -0,0 +1,21 @@ +{ + "id": 11030, + "slug": "whoscall", + "name": "Whoscall", + "release_date": "2010-01-01", + "developers": [], + "publishers": [], + "operating_systems": [ + "iOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10853310" + ], + "created_at": "2026-07-10T10:12:43.685610", + "updated_at": "2026-07-10T10:12:43.685610", + "url": "/v1/software/whoscall" +} diff --git a/site/public/v1/software/whyiq/index.json b/site/public/v1/software/whyiq/index.json new file mode 100644 index 000000000000..d683c111b8d9 --- /dev/null +++ b/site/public/v1/software/whyiq/index.json @@ -0,0 +1,23 @@ +{ + "id": 11031, + "slug": "whyiq", + "name": "WhyIQ", + "release_date": null, + "developers": [ + "Ben Little" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "TypeScript" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139659384" + ], + "created_at": "2026-07-10T10:12:43.686693", + "updated_at": "2026-07-10T10:12:43.686693", + "url": "/v1/software/whyiq" +} diff --git a/site/public/v1/software/wid-tools-for-use-with-the-world-inequality-database/index.json b/site/public/v1/software/wid-tools-for-use-with-the-world-inequality-database/index.json new file mode 100644 index 000000000000..5962ec3022ca --- /dev/null +++ b/site/public/v1/software/wid-tools-for-use-with-the-world-inequality-database/index.json @@ -0,0 +1,19 @@ +{ + "id": 11032, + "slug": "wid-tools-for-use-with-the-world-inequality-database", + "name": "WID: Tools for use with the World Inequality Database", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137462795" + ], + "created_at": "2026-07-10T10:12:43.686693", + "updated_at": "2026-07-10T10:12:43.686693", + "url": "/v1/software/wid-tools-for-use-with-the-world-inequality-database" +} diff --git a/site/public/v1/software/wideangle/index.json b/site/public/v1/software/wideangle/index.json new file mode 100644 index 000000000000..0e159d70c525 --- /dev/null +++ b/site/public/v1/software/wideangle/index.json @@ -0,0 +1,19 @@ +{ + "id": 11033, + "slug": "wideangle", + "name": "WideAngle", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17130684" + ], + "created_at": "2026-07-10T10:12:43.686693", + "updated_at": "2026-07-10T10:12:43.686693", + "url": "/v1/software/wideangle" +} diff --git a/site/public/v1/software/widers/index.json b/site/public/v1/software/widers/index.json new file mode 100644 index 000000000000..046425d11853 --- /dev/null +++ b/site/public/v1/software/widers/index.json @@ -0,0 +1,19 @@ +{ + "id": 11034, + "slug": "widers", + "name": "Widers", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139554105" + ], + "created_at": "2026-07-10T10:12:43.687697", + "updated_at": "2026-07-10T10:12:43.687697", + "url": "/v1/software/widers" +} diff --git a/site/public/v1/software/wifi-explorer/index.json b/site/public/v1/software/wifi-explorer/index.json new file mode 100644 index 000000000000..cefd1b74725e --- /dev/null +++ b/site/public/v1/software/wifi-explorer/index.json @@ -0,0 +1,23 @@ +{ + "id": 11035, + "slug": "wifi-explorer", + "name": "WiFi Explorer", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "macOS" + ], + "programming_languages": [ + "Objective-C" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7997976" + ], + "created_at": "2026-07-10T10:12:43.687697", + "updated_at": "2026-07-10T10:12:43.687697", + "url": "/v1/software/wifi-explorer" +} diff --git a/site/public/v1/software/wifi-master-key/index.json b/site/public/v1/software/wifi-master-key/index.json new file mode 100644 index 000000000000..d7c03cffbe2a --- /dev/null +++ b/site/public/v1/software/wifi-master-key/index.json @@ -0,0 +1,23 @@ +{ + "id": 11036, + "slug": "wifi-master-key", + "name": "WiFi Master Key", + "release_date": null, + "developers": [ + "LinkSure Network" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28135345" + ], + "created_at": "2026-07-10T10:12:43.687697", + "updated_at": "2026-07-10T10:12:43.687697", + "url": "/v1/software/wifi-master-key" +} diff --git a/site/public/v1/software/wifi-where/index.json b/site/public/v1/software/wifi-where/index.json new file mode 100644 index 000000000000..cfbfc3e4bae1 --- /dev/null +++ b/site/public/v1/software/wifi-where/index.json @@ -0,0 +1,19 @@ +{ + "id": 11037, + "slug": "wifi-where", + "name": "WiFi-Where", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7997968" + ], + "created_at": "2026-07-10T10:12:43.687697", + "updated_at": "2026-07-10T10:12:43.687697", + "url": "/v1/software/wifi-where" +} diff --git a/site/public/v1/software/wifibroadcast/index.json b/site/public/v1/software/wifibroadcast/index.json new file mode 100644 index 000000000000..c68445e2ca5c --- /dev/null +++ b/site/public/v1/software/wifibroadcast/index.json @@ -0,0 +1,19 @@ +{ + "id": 11038, + "slug": "wifibroadcast", + "name": "wifibroadcast", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109757409" + ], + "created_at": "2026-07-10T10:12:43.688682", + "updated_at": "2026-07-10T10:12:43.688682", + "url": "/v1/software/wifibroadcast" +} diff --git a/site/public/v1/software/wifidog-captive-portal/index.json b/site/public/v1/software/wifidog-captive-portal/index.json new file mode 100644 index 000000000000..e4395ed00311 --- /dev/null +++ b/site/public/v1/software/wifidog-captive-portal/index.json @@ -0,0 +1,19 @@ +{ + "id": 11039, + "slug": "wifidog-captive-portal", + "name": "WiFiDog Captive Portal", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7997970" + ], + "created_at": "2026-07-10T10:12:43.688682", + "updated_at": "2026-07-10T10:12:43.688682", + "url": "/v1/software/wifidog-captive-portal" +} diff --git a/site/public/v1/software/wiggio/index.json b/site/public/v1/software/wiggio/index.json new file mode 100644 index 000000000000..bf4812d203fd --- /dev/null +++ b/site/public/v1/software/wiggio/index.json @@ -0,0 +1,19 @@ +{ + "id": 11040, + "slug": "wiggio", + "name": "Wiggio", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084755" + ], + "created_at": "2026-07-10T10:12:43.689721", + "updated_at": "2026-07-10T10:12:43.689721", + "url": "/v1/software/wiggio" +} diff --git a/site/public/v1/software/wii-message-board/index.json b/site/public/v1/software/wii-message-board/index.json new file mode 100644 index 000000000000..145ac3cc6487 --- /dev/null +++ b/site/public/v1/software/wii-message-board/index.json @@ -0,0 +1,23 @@ +{ + "id": 11041, + "slug": "wii-message-board", + "name": "Wii Message Board", + "release_date": "2006-12-02", + "developers": [ + "Nintendo" + ], + "publishers": [ + "Nintendo" + ], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11254349" + ], + "created_at": "2026-07-10T10:12:43.689721", + "updated_at": "2026-07-10T10:12:43.689721", + "url": "/v1/software/wii-message-board" +} diff --git a/site/public/v1/software/wii-no-ma/index.json b/site/public/v1/software/wii-no-ma/index.json new file mode 100644 index 000000000000..1ad121950113 --- /dev/null +++ b/site/public/v1/software/wii-no-ma/index.json @@ -0,0 +1,24 @@ +{ + "id": 11042, + "slug": "wii-no-ma", + "name": "Wii no Ma", + "release_date": "2009-05-01", + "developers": [ + "Dentsu", + "Nintendo" + ], + "publishers": [ + "Nintendo" + ], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3284046" + ], + "created_at": "2026-07-10T10:12:43.689721", + "updated_at": "2026-07-10T10:12:43.689721", + "url": "/v1/software/wii-no-ma" +} diff --git a/site/public/v1/software/wiki-server/index.json b/site/public/v1/software/wiki-server/index.json new file mode 100644 index 000000000000..d67ac4c65ce9 --- /dev/null +++ b/site/public/v1/software/wiki-server/index.json @@ -0,0 +1,21 @@ +{ + "id": 11043, + "slug": "wiki-server", + "name": "Wiki Server", + "release_date": null, + "developers": [ + "Apple Inc." + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7999836" + ], + "created_at": "2026-07-10T10:12:43.689721", + "updated_at": "2026-07-10T10:12:43.689721", + "url": "/v1/software/wiki-server" +} diff --git a/site/public/v1/software/wiki-watch/index.json b/site/public/v1/software/wiki-watch/index.json new file mode 100644 index 000000000000..c3ab11689fdb --- /dev/null +++ b/site/public/v1/software/wiki-watch/index.json @@ -0,0 +1,19 @@ +{ + "id": 11044, + "slug": "wiki-watch", + "name": "Wiki-Watch", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3568023" + ], + "created_at": "2026-07-10T10:12:43.690692", + "updated_at": "2026-07-10T10:12:43.690692", + "url": "/v1/software/wiki-watch" +} diff --git a/site/public/v1/software/wikibasesync/index.json b/site/public/v1/software/wikibasesync/index.json new file mode 100644 index 000000000000..4ff98ee14e4b --- /dev/null +++ b/site/public/v1/software/wikibasesync/index.json @@ -0,0 +1,21 @@ +{ + "id": 11045, + "slug": "wikibasesync", + "name": "WikibaseSync", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111204847" + ], + "created_at": "2026-07-10T10:12:43.690692", + "updated_at": "2026-07-10T10:12:43.690692", + "url": "/v1/software/wikibasesync" +} diff --git a/site/public/v1/software/wikiblame/index.json b/site/public/v1/software/wikiblame/index.json new file mode 100644 index 000000000000..198473c964d9 --- /dev/null +++ b/site/public/v1/software/wikiblame/index.json @@ -0,0 +1,21 @@ +{ + "id": 11046, + "slug": "wikiblame", + "name": "WikiBlame", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "GNU General Public License, version 3.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q15042058" + ], + "created_at": "2026-07-10T10:12:43.690692", + "updated_at": "2026-07-10T10:12:43.690692", + "url": "/v1/software/wikiblame" +} diff --git a/site/public/v1/software/wikidata-concepts-monitor/index.json b/site/public/v1/software/wikidata-concepts-monitor/index.json new file mode 100644 index 000000000000..b52bce365dba --- /dev/null +++ b/site/public/v1/software/wikidata-concepts-monitor/index.json @@ -0,0 +1,21 @@ +{ + "id": 11047, + "slug": "wikidata-concepts-monitor", + "name": "Wikidata Concepts Monitor", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "GNU General Public License, version 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q42376073" + ], + "created_at": "2026-07-10T10:12:43.691682", + "updated_at": "2026-07-10T10:12:43.691682", + "url": "/v1/software/wikidata-concepts-monitor" +} diff --git a/site/public/v1/software/wikidata-missing-pictures/index.json b/site/public/v1/software/wikidata-missing-pictures/index.json new file mode 100644 index 000000000000..5df0b40358b6 --- /dev/null +++ b/site/public/v1/software/wikidata-missing-pictures/index.json @@ -0,0 +1,23 @@ +{ + "id": 11048, + "slug": "wikidata-missing-pictures", + "name": "Wikidata Missing Pictures", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "GNU Bash" + ], + "licenses": [ + "Unlicense" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q38934700" + ], + "created_at": "2026-07-10T10:12:43.691682", + "updated_at": "2026-07-10T10:12:43.691682", + "url": "/v1/software/wikidata-missing-pictures" +} diff --git a/site/public/v1/software/wikidatamap/index.json b/site/public/v1/software/wikidatamap/index.json new file mode 100644 index 000000000000..e4e5bd29b95f --- /dev/null +++ b/site/public/v1/software/wikidatamap/index.json @@ -0,0 +1,21 @@ +{ + "id": 11049, + "slug": "wikidatamap", + "name": "WikidataMap", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "cross-platform" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63481239" + ], + "created_at": "2026-07-10T10:12:43.691682", + "updated_at": "2026-07-10T10:12:43.691682", + "url": "/v1/software/wikidatamap" +} diff --git a/site/public/v1/software/wikilingue/index.json b/site/public/v1/software/wikilingue/index.json new file mode 100644 index 000000000000..021b9b3231c4 --- /dev/null +++ b/site/public/v1/software/wikilingue/index.json @@ -0,0 +1,19 @@ +{ + "id": 11050, + "slug": "wikilingue", + "name": "Wikilingue", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q12356755" + ], + "created_at": "2026-07-10T10:12:43.691682", + "updated_at": "2026-07-10T10:12:43.691682", + "url": "/v1/software/wikilingue" +} diff --git a/site/public/v1/software/wikiloop-battlefield/index.json b/site/public/v1/software/wikiloop-battlefield/index.json new file mode 100644 index 000000000000..61f06957fdc7 --- /dev/null +++ b/site/public/v1/software/wikiloop-battlefield/index.json @@ -0,0 +1,19 @@ +{ + "id": 11051, + "slug": "wikiloop-battlefield", + "name": "WikiLoop Battlefield", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q66094878" + ], + "created_at": "2026-07-10T10:12:43.692691", + "updated_at": "2026-07-10T10:12:43.692691", + "url": "/v1/software/wikiloop-battlefield" +} diff --git a/site/public/v1/software/wikimedia-integration/index.json b/site/public/v1/software/wikimedia-integration/index.json new file mode 100644 index 000000000000..8eaf7a00308a --- /dev/null +++ b/site/public/v1/software/wikimedia-integration/index.json @@ -0,0 +1,19 @@ +{ + "id": 11052, + "slug": "wikimedia-integration", + "name": "Wikimedia Integration", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108370101" + ], + "created_at": "2026-07-10T10:12:43.692691", + "updated_at": "2026-07-10T10:12:43.692691", + "url": "/v1/software/wikimedia-integration" +} diff --git a/site/public/v1/software/wikimedia-meet/index.json b/site/public/v1/software/wikimedia-meet/index.json new file mode 100644 index 000000000000..faa46b21ac78 --- /dev/null +++ b/site/public/v1/software/wikimedia-meet/index.json @@ -0,0 +1,19 @@ +{ + "id": 11053, + "slug": "wikimedia-meet", + "name": "Wikimedia Meet", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q91994022" + ], + "created_at": "2026-07-10T10:12:43.693681", + "updated_at": "2026-07-10T10:12:43.693681", + "url": "/v1/software/wikimedia-meet" +} diff --git a/site/public/v1/software/wikinodes/index.json b/site/public/v1/software/wikinodes/index.json new file mode 100644 index 000000000000..dfad6eb192b2 --- /dev/null +++ b/site/public/v1/software/wikinodes/index.json @@ -0,0 +1,19 @@ +{ + "id": 11054, + "slug": "wikinodes", + "name": "WikiNodes", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7905764" + ], + "created_at": "2026-07-10T10:12:43.693681", + "updated_at": "2026-07-10T10:12:43.693681", + "url": "/v1/software/wikinodes" +} diff --git a/site/public/v1/software/wikipack/index.json b/site/public/v1/software/wikipack/index.json new file mode 100644 index 000000000000..8088d00ce87d --- /dev/null +++ b/site/public/v1/software/wikipack/index.json @@ -0,0 +1,19 @@ +{ + "id": 11055, + "slug": "wikipack", + "name": "WikiPack", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084756" + ], + "created_at": "2026-07-10T10:12:43.693681", + "updated_at": "2026-07-10T10:12:43.693681", + "url": "/v1/software/wikipack" +} diff --git a/site/public/v1/software/wikipock/index.json b/site/public/v1/software/wikipock/index.json new file mode 100644 index 000000000000..3baf91f82cf3 --- /dev/null +++ b/site/public/v1/software/wikipock/index.json @@ -0,0 +1,19 @@ +{ + "id": 11056, + "slug": "wikipock", + "name": "WikiPock", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1444247" + ], + "created_at": "2026-07-10T10:12:43.693681", + "updated_at": "2026-07-10T10:12:43.693681", + "url": "/v1/software/wikipock" +} diff --git a/site/public/v1/software/wikireading/index.json b/site/public/v1/software/wikireading/index.json new file mode 100644 index 000000000000..d41b26f7c70a --- /dev/null +++ b/site/public/v1/software/wikireading/index.json @@ -0,0 +1,19 @@ +{ + "id": 11057, + "slug": "wikireading", + "name": "WikiReading", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q26912490" + ], + "created_at": "2026-07-10T10:12:43.694662", + "updated_at": "2026-07-10T10:12:43.694662", + "url": "/v1/software/wikireading" +} diff --git a/site/public/v1/software/wikiserver/index.json b/site/public/v1/software/wikiserver/index.json new file mode 100644 index 000000000000..9c0bb1d55575 --- /dev/null +++ b/site/public/v1/software/wikiserver/index.json @@ -0,0 +1,19 @@ +{ + "id": 11058, + "slug": "wikiserver", + "name": "WikiServer", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11254350" + ], + "created_at": "2026-07-10T10:12:43.694662", + "updated_at": "2026-07-10T10:12:43.694662", + "url": "/v1/software/wikiserver" +} diff --git a/site/public/v1/software/wikitaxi/index.json b/site/public/v1/software/wikitaxi/index.json new file mode 100644 index 000000000000..c64ae2acf5e0 --- /dev/null +++ b/site/public/v1/software/wikitaxi/index.json @@ -0,0 +1,19 @@ +{ + "id": 11059, + "slug": "wikitaxi", + "name": "WikiTaxi", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11254355" + ], + "created_at": "2026-07-10T10:12:43.695698", + "updated_at": "2026-07-10T10:12:43.695698", + "url": "/v1/software/wikitaxi" +} diff --git a/site/public/v1/software/wikitude/index.json b/site/public/v1/software/wikitude/index.json new file mode 100644 index 000000000000..a38d456775c7 --- /dev/null +++ b/site/public/v1/software/wikitude/index.json @@ -0,0 +1,19 @@ +{ + "id": 11060, + "slug": "wikitude", + "name": "Wikitude", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1280163" + ], + "created_at": "2026-07-10T10:12:43.695698", + "updated_at": "2026-07-10T10:12:43.695698", + "url": "/v1/software/wikitude" +} diff --git a/site/public/v1/software/wikiwand/index.json b/site/public/v1/software/wikiwand/index.json new file mode 100644 index 000000000000..2a6d27909612 --- /dev/null +++ b/site/public/v1/software/wikiwand/index.json @@ -0,0 +1,22 @@ +{ + "id": 11061, + "slug": "wikiwand", + "name": "Wikiwand", + "release_date": "2013-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Creative Commons Attribution-ShareAlike 3.0 Unported", + "GNU Free Documentation License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18208301" + ], + "created_at": "2026-07-10T10:12:43.695698", + "updated_at": "2026-07-10T10:12:43.695698", + "url": "/v1/software/wikiwand" +} diff --git a/site/public/v1/software/wikyblog/index.json b/site/public/v1/software/wikyblog/index.json new file mode 100644 index 000000000000..bc87f1ced0bd --- /dev/null +++ b/site/public/v1/software/wikyblog/index.json @@ -0,0 +1,19 @@ +{ + "id": 11062, + "slug": "wikyblog", + "name": "WikyBlog", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6167376" + ], + "created_at": "2026-07-10T10:12:43.695698", + "updated_at": "2026-07-10T10:12:43.695698", + "url": "/v1/software/wikyblog" +} diff --git a/site/public/v1/software/wildcat-bbs/index.json b/site/public/v1/software/wildcat-bbs/index.json new file mode 100644 index 000000000000..bf8b4952b04b --- /dev/null +++ b/site/public/v1/software/wildcat-bbs/index.json @@ -0,0 +1,19 @@ +{ + "id": 11063, + "slug": "wildcat-bbs", + "name": "Wildcat! BBS", + "release_date": "1986-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8000988" + ], + "created_at": "2026-07-10T10:12:43.704797", + "updated_at": "2026-07-10T10:12:43.704797", + "url": "/v1/software/wildcat-bbs" +} diff --git a/site/public/v1/software/wildfire-interactive/index.json b/site/public/v1/software/wildfire-interactive/index.json new file mode 100644 index 000000000000..e31421274297 --- /dev/null +++ b/site/public/v1/software/wildfire-interactive/index.json @@ -0,0 +1,21 @@ +{ + "id": 11064, + "slug": "wildfire-interactive", + "name": "Wildfire Interactive", + "release_date": "2008-01-01", + "developers": [ + "Alain Chuard" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q21463791" + ], + "created_at": "2026-07-10T10:12:43.708794", + "updated_at": "2026-07-10T10:12:43.708794", + "url": "/v1/software/wildfire-interactive" +} diff --git a/site/public/v1/software/wildfiresua/index.json b/site/public/v1/software/wildfiresua/index.json new file mode 100644 index 000000000000..0881d3647964 --- /dev/null +++ b/site/public/v1/software/wildfiresua/index.json @@ -0,0 +1,21 @@ +{ + "id": 11065, + "slug": "wildfiresua", + "name": "WildFiresUA", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "website" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139554399" + ], + "created_at": "2026-07-10T10:12:43.710806", + "updated_at": "2026-07-10T10:12:43.710806", + "url": "/v1/software/wildfiresua" +} diff --git a/site/public/v1/software/wildmat/index.json b/site/public/v1/software/wildmat/index.json new file mode 100644 index 000000000000..90351d0f0457 --- /dev/null +++ b/site/public/v1/software/wildmat/index.json @@ -0,0 +1,19 @@ +{ + "id": 11066, + "slug": "wildmat", + "name": "wildmat", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8001473" + ], + "created_at": "2026-07-10T10:12:43.711816", + "updated_at": "2026-07-10T10:12:43.711816", + "url": "/v1/software/wildmat" +} diff --git a/site/public/v1/software/wimats/index.json b/site/public/v1/software/wimats/index.json new file mode 100644 index 000000000000..1e4505cd11df --- /dev/null +++ b/site/public/v1/software/wimats/index.json @@ -0,0 +1,21 @@ +{ + "id": 11067, + "slug": "wimats", + "name": "WIMATS", + "release_date": null, + "developers": [ + "Webel Mediatronics Limited" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7950740" + ], + "created_at": "2026-07-10T10:12:43.712796", + "updated_at": "2026-07-10T10:12:43.712796", + "url": "/v1/software/wimats" +} diff --git a/site/public/v1/software/wimp/index.json b/site/public/v1/software/wimp/index.json new file mode 100644 index 000000000000..2ea6ba3f4956 --- /dev/null +++ b/site/public/v1/software/wimp/index.json @@ -0,0 +1,23 @@ +{ + "id": 11068, + "slug": "wimp", + "name": "WiMP", + "release_date": null, + "developers": [ + "Aspiro" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q890255" + ], + "created_at": "2026-07-10T10:12:43.712796", + "updated_at": "2026-07-10T10:12:43.712796", + "url": "/v1/software/wimp" +} diff --git a/site/public/v1/software/win-com/index.json b/site/public/v1/software/win-com/index.json new file mode 100644 index 000000000000..efdd0858ffc9 --- /dev/null +++ b/site/public/v1/software/win-com/index.json @@ -0,0 +1,21 @@ +{ + "id": 11069, + "slug": "win-com", + "name": "WIN.COM", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q844775" + ], + "created_at": "2026-07-10T10:12:43.714793", + "updated_at": "2026-07-10T10:12:43.714793", + "url": "/v1/software/win-com" +} diff --git a/site/public/v1/software/win4lin/index.json b/site/public/v1/software/win4lin/index.json new file mode 100644 index 000000000000..46456c85738c --- /dev/null +++ b/site/public/v1/software/win4lin/index.json @@ -0,0 +1,19 @@ +{ + "id": 11070, + "slug": "win4lin", + "name": "Win4Lin", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8023584" + ], + "created_at": "2026-07-10T10:12:43.717400", + "updated_at": "2026-07-10T10:12:43.717400", + "url": "/v1/software/win4lin" +} diff --git a/site/public/v1/software/winape/index.json b/site/public/v1/software/winape/index.json new file mode 100644 index 000000000000..eca1dc5c5826 --- /dev/null +++ b/site/public/v1/software/winape/index.json @@ -0,0 +1,21 @@ +{ + "id": 11071, + "slug": "winape", + "name": "WinAPE", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16683368" + ], + "created_at": "2026-07-10T10:12:43.718489", + "updated_at": "2026-07-10T10:12:43.718489", + "url": "/v1/software/winape" +} diff --git a/site/public/v1/software/winapioverride/index.json b/site/public/v1/software/winapioverride/index.json new file mode 100644 index 000000000000..682614ba9258 --- /dev/null +++ b/site/public/v1/software/winapioverride/index.json @@ -0,0 +1,23 @@ +{ + "id": 11072, + "slug": "winapioverride", + "name": "WinAPIOverride", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8023582" + ], + "created_at": "2026-07-10T10:12:43.719498", + "updated_at": "2026-07-10T10:12:43.719498", + "url": "/v1/software/winapioverride" +} diff --git a/site/public/v1/software/winavr/index.json b/site/public/v1/software/winavr/index.json new file mode 100644 index 000000000000..96caa84e0f2e --- /dev/null +++ b/site/public/v1/software/winavr/index.json @@ -0,0 +1,19 @@ +{ + "id": 11073, + "slug": "winavr", + "name": "WinAVR", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1104941" + ], + "created_at": "2026-07-10T10:12:43.720516", + "updated_at": "2026-07-10T10:12:43.720516", + "url": "/v1/software/winavr" +} diff --git a/site/public/v1/software/winbatch/index.json b/site/public/v1/software/winbatch/index.json new file mode 100644 index 000000000000..473e35c15182 --- /dev/null +++ b/site/public/v1/software/winbatch/index.json @@ -0,0 +1,19 @@ +{ + "id": 11074, + "slug": "winbatch", + "name": "Winbatch", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8023687" + ], + "created_at": "2026-07-10T10:12:43.721539", + "updated_at": "2026-07-10T10:12:43.721539", + "url": "/v1/software/winbatch" +} diff --git a/site/public/v1/software/winbraille/index.json b/site/public/v1/software/winbraille/index.json new file mode 100644 index 000000000000..1f7c57032ecd --- /dev/null +++ b/site/public/v1/software/winbraille/index.json @@ -0,0 +1,21 @@ +{ + "id": 11075, + "slug": "winbraille", + "name": "WinBraille", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10856747" + ], + "created_at": "2026-07-10T10:12:43.722485", + "updated_at": "2026-07-10T10:12:43.722485", + "url": "/v1/software/winbraille" +} diff --git a/site/public/v1/software/winbtrfs/index.json b/site/public/v1/software/winbtrfs/index.json new file mode 100644 index 000000000000..183f7bdea6b0 --- /dev/null +++ b/site/public/v1/software/winbtrfs/index.json @@ -0,0 +1,23 @@ +{ + "id": 11076, + "slug": "winbtrfs", + "name": "WinBtrfs", + "release_date": "2016-02-21", + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [ + "Visual C++" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60024324" + ], + "created_at": "2026-07-10T10:12:43.723480", + "updated_at": "2026-07-10T10:12:43.723480", + "url": "/v1/software/winbtrfs" +} diff --git a/site/public/v1/software/winbuilder/index.json b/site/public/v1/software/winbuilder/index.json new file mode 100644 index 000000000000..acb2027a7a97 --- /dev/null +++ b/site/public/v1/software/winbuilder/index.json @@ -0,0 +1,23 @@ +{ + "id": 11077, + "slug": "winbuilder", + "name": "WinBuilder", + "release_date": "2005-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Delphi" + ], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8023590" + ], + "created_at": "2026-07-10T10:12:43.724485", + "updated_at": "2026-07-10T10:12:43.724485", + "url": "/v1/software/winbuilder" +} diff --git a/site/public/v1/software/windchill/index.json b/site/public/v1/software/windchill/index.json new file mode 100644 index 000000000000..2fb44dea99df --- /dev/null +++ b/site/public/v1/software/windchill/index.json @@ -0,0 +1,23 @@ +{ + "id": 11078, + "slug": "windchill", + "name": "Windchill", + "release_date": null, + "developers": [ + "Parametric Technology Corporation" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8024086" + ], + "created_at": "2026-07-10T10:12:43.724485", + "updated_at": "2026-07-10T10:12:43.724485", + "url": "/v1/software/windchill" +} diff --git a/site/public/v1/software/windev-mobile/index.json b/site/public/v1/software/windev-mobile/index.json new file mode 100644 index 000000000000..33d1508b13f6 --- /dev/null +++ b/site/public/v1/software/windev-mobile/index.json @@ -0,0 +1,21 @@ +{ + "id": 11079, + "slug": "windev-mobile", + "name": "WinDev Mobile", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3569250" + ], + "created_at": "2026-07-10T10:12:43.725474", + "updated_at": "2026-07-10T10:12:43.725474", + "url": "/v1/software/windev-mobile" +} diff --git a/site/public/v1/software/windev/index.json b/site/public/v1/software/windev/index.json new file mode 100644 index 000000000000..e074cfce09f1 --- /dev/null +++ b/site/public/v1/software/windev/index.json @@ -0,0 +1,19 @@ +{ + "id": 11080, + "slug": "windev", + "name": "WinDev", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1807894" + ], + "created_at": "2026-07-10T10:12:43.725474", + "updated_at": "2026-07-10T10:12:43.725474", + "url": "/v1/software/windev" +} diff --git a/site/public/v1/software/windiff/index.json b/site/public/v1/software/windiff/index.json new file mode 100644 index 000000000000..452c445c98d5 --- /dev/null +++ b/site/public/v1/software/windiff/index.json @@ -0,0 +1,19 @@ +{ + "id": 11081, + "slug": "windiff", + "name": "WinDiff", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8023596" + ], + "created_at": "2026-07-10T10:12:43.726465", + "updated_at": "2026-07-10T10:12:43.726465", + "url": "/v1/software/windiff" +} diff --git a/site/public/v1/software/windowbase/index.json b/site/public/v1/software/windowbase/index.json new file mode 100644 index 000000000000..d7636f4b4186 --- /dev/null +++ b/site/public/v1/software/windowbase/index.json @@ -0,0 +1,21 @@ +{ + "id": 11082, + "slug": "windowbase", + "name": "WindowBase", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8024335" + ], + "created_at": "2026-07-10T10:12:43.726465", + "updated_at": "2026-07-10T10:12:43.726465", + "url": "/v1/software/windowbase" +} diff --git a/site/public/v1/software/windowblinds/index.json b/site/public/v1/software/windowblinds/index.json new file mode 100644 index 000000000000..47d506c568f1 --- /dev/null +++ b/site/public/v1/software/windowblinds/index.json @@ -0,0 +1,25 @@ +{ + "id": 11083, + "slug": "windowblinds", + "name": "WindowBlinds", + "release_date": null, + "developers": [ + "Stardock" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "shareware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1993484" + ], + "created_at": "2026-07-10T10:12:43.727493", + "updated_at": "2026-07-10T10:12:43.727493", + "url": "/v1/software/windowblinds" +} diff --git a/site/public/v1/software/windowfx/index.json b/site/public/v1/software/windowfx/index.json new file mode 100644 index 000000000000..9b77dec0c042 --- /dev/null +++ b/site/public/v1/software/windowfx/index.json @@ -0,0 +1,21 @@ +{ + "id": 11084, + "slug": "windowfx", + "name": "WindowFX", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "shareware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10393861" + ], + "created_at": "2026-07-10T10:12:43.728408", + "updated_at": "2026-07-10T10:12:43.728408", + "url": "/v1/software/windowfx" +} diff --git a/site/public/v1/software/windowlab/index.json b/site/public/v1/software/windowlab/index.json new file mode 100644 index 000000000000..43721da6dd82 --- /dev/null +++ b/site/public/v1/software/windowlab/index.json @@ -0,0 +1,23 @@ +{ + "id": 11085, + "slug": "windowlab", + "name": "WindowLab", + "release_date": "2001-01-01", + "developers": [], + "publishers": [], + "operating_systems": [ + "Unix-like operating system" + ], + "programming_languages": [], + "licenses": [ + "GNU General Public License, version 2.0 or later" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8024334" + ], + "created_at": "2026-07-10T10:12:43.728408", + "updated_at": "2026-07-10T10:12:43.728408", + "url": "/v1/software/windowlab" +} diff --git a/site/public/v1/software/windowphone/index.json b/site/public/v1/software/windowphone/index.json new file mode 100644 index 000000000000..51ccf58809df --- /dev/null +++ b/site/public/v1/software/windowphone/index.json @@ -0,0 +1,19 @@ +{ + "id": 11086, + "slug": "windowphone", + "name": "WindowPhone", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135440090" + ], + "created_at": "2026-07-10T10:12:43.729494", + "updated_at": "2026-07-10T10:12:43.729494", + "url": "/v1/software/windowphone" +} diff --git a/site/public/v1/software/windows-activation-technology/index.json b/site/public/v1/software/windows-activation-technology/index.json new file mode 100644 index 000000000000..a47dbf0c0444 --- /dev/null +++ b/site/public/v1/software/windows-activation-technology/index.json @@ -0,0 +1,21 @@ +{ + "id": 11087, + "slug": "windows-activation-technology", + "name": "Windows Activation Technology", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6167956" + ], + "created_at": "2026-07-10T10:12:43.729494", + "updated_at": "2026-07-10T10:12:43.729494", + "url": "/v1/software/windows-activation-technology" +} diff --git a/site/public/v1/software/windows-address-book/index.json b/site/public/v1/software/windows-address-book/index.json new file mode 100644 index 000000000000..c4b5f4059890 --- /dev/null +++ b/site/public/v1/software/windows-address-book/index.json @@ -0,0 +1,21 @@ +{ + "id": 11088, + "slug": "windows-address-book", + "name": "Windows Address Book", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3533171" + ], + "created_at": "2026-07-10T10:12:43.730405", + "updated_at": "2026-07-10T10:12:43.730405", + "url": "/v1/software/windows-address-book" +} diff --git a/site/public/v1/software/windows-admin-center/index.json b/site/public/v1/software/windows-admin-center/index.json new file mode 100644 index 000000000000..bed86ced24f6 --- /dev/null +++ b/site/public/v1/software/windows-admin-center/index.json @@ -0,0 +1,19 @@ +{ + "id": 11089, + "slug": "windows-admin-center", + "name": "Windows Admin Center", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q48976817" + ], + "created_at": "2026-07-10T10:12:43.730405", + "updated_at": "2026-07-10T10:12:43.730405", + "url": "/v1/software/windows-admin-center" +} diff --git a/site/public/v1/software/windows-anytime-upgrade/index.json b/site/public/v1/software/windows-anytime-upgrade/index.json new file mode 100644 index 000000000000..eaf5f24d0efc --- /dev/null +++ b/site/public/v1/software/windows-anytime-upgrade/index.json @@ -0,0 +1,19 @@ +{ + "id": 11090, + "slug": "windows-anytime-upgrade", + "name": "Windows Anytime Upgrade", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1207441" + ], + "created_at": "2026-07-10T10:12:43.730405", + "updated_at": "2026-07-10T10:12:43.730405", + "url": "/v1/software/windows-anytime-upgrade" +} diff --git a/site/public/v1/software/windows-automated-installation-kit/index.json b/site/public/v1/software/windows-automated-installation-kit/index.json new file mode 100644 index 000000000000..54abee4efb77 --- /dev/null +++ b/site/public/v1/software/windows-automated-installation-kit/index.json @@ -0,0 +1,23 @@ +{ + "id": 11091, + "slug": "windows-automated-installation-kit", + "name": "Windows Automated Installation Kit", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1654234" + ], + "created_at": "2026-07-10T10:12:43.731405", + "updated_at": "2026-07-10T10:12:43.731405", + "url": "/v1/software/windows-automated-installation-kit" +} diff --git a/site/public/v1/software/windows-azure-appfabric/index.json b/site/public/v1/software/windows-azure-appfabric/index.json new file mode 100644 index 000000000000..3a76283d0b57 --- /dev/null +++ b/site/public/v1/software/windows-azure-appfabric/index.json @@ -0,0 +1,19 @@ +{ + "id": 11092, + "slug": "windows-azure-appfabric", + "name": "Windows Azure AppFabric", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q5952752" + ], + "created_at": "2026-07-10T10:12:43.731405", + "updated_at": "2026-07-10T10:12:43.731405", + "url": "/v1/software/windows-azure-appfabric" +} diff --git a/site/public/v1/software/windows-azure-websites/index.json b/site/public/v1/software/windows-azure-websites/index.json new file mode 100644 index 000000000000..9dfd12e7533f --- /dev/null +++ b/site/public/v1/software/windows-azure-websites/index.json @@ -0,0 +1,21 @@ +{ + "id": 11093, + "slug": "windows-azure-websites", + "name": "Windows Azure Websites", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17048728" + ], + "created_at": "2026-07-10T10:12:43.731405", + "updated_at": "2026-07-10T10:12:43.731405", + "url": "/v1/software/windows-azure-websites" +} diff --git a/site/public/v1/software/windows-backup/index.json b/site/public/v1/software/windows-backup/index.json new file mode 100644 index 000000000000..8b500a44b085 --- /dev/null +++ b/site/public/v1/software/windows-backup/index.json @@ -0,0 +1,21 @@ +{ + "id": 11094, + "slug": "windows-backup", + "name": "Windows Backup", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Windows 11" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137604955" + ], + "created_at": "2026-07-10T10:12:43.732503", + "updated_at": "2026-07-10T10:12:43.732503", + "url": "/v1/software/windows-backup" +} diff --git a/site/public/v1/software/windows-cardspace/index.json b/site/public/v1/software/windows-cardspace/index.json new file mode 100644 index 000000000000..9f8951d2ae23 --- /dev/null +++ b/site/public/v1/software/windows-cardspace/index.json @@ -0,0 +1,19 @@ +{ + "id": 11095, + "slug": "windows-cardspace", + "name": "Windows CardSpace", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1367390" + ], + "created_at": "2026-07-10T10:12:43.732503", + "updated_at": "2026-07-10T10:12:43.732503", + "url": "/v1/software/windows-cardspace" +} diff --git a/site/public/v1/software/windows-chat/index.json b/site/public/v1/software/windows-chat/index.json new file mode 100644 index 000000000000..c313305baf93 --- /dev/null +++ b/site/public/v1/software/windows-chat/index.json @@ -0,0 +1,19 @@ +{ + "id": 11096, + "slug": "windows-chat", + "name": "Windows Chat", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8024400" + ], + "created_at": "2026-07-10T10:12:43.732503", + "updated_at": "2026-07-10T10:12:43.732503", + "url": "/v1/software/windows-chat" +} diff --git a/site/public/v1/software/windows-desktop-gadgets/index.json b/site/public/v1/software/windows-desktop-gadgets/index.json new file mode 100644 index 000000000000..38e7a777567a --- /dev/null +++ b/site/public/v1/software/windows-desktop-gadgets/index.json @@ -0,0 +1,19 @@ +{ + "id": 11097, + "slug": "windows-desktop-gadgets", + "name": "Windows Desktop Gadgets", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q828312" + ], + "created_at": "2026-07-10T10:12:43.733475", + "updated_at": "2026-07-10T10:12:43.733475", + "url": "/v1/software/windows-desktop-gadgets" +} diff --git a/site/public/v1/software/windows-dreamscene/index.json b/site/public/v1/software/windows-dreamscene/index.json new file mode 100644 index 000000000000..2b37c1d6e8c3 --- /dev/null +++ b/site/public/v1/software/windows-dreamscene/index.json @@ -0,0 +1,21 @@ +{ + "id": 11098, + "slug": "windows-dreamscene", + "name": "Windows DreamScene", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1066247" + ], + "created_at": "2026-07-10T10:12:43.733475", + "updated_at": "2026-07-10T10:12:43.733475", + "url": "/v1/software/windows-dreamscene" +} diff --git a/site/public/v1/software/windows-dvd-maker/index.json b/site/public/v1/software/windows-dvd-maker/index.json new file mode 100644 index 000000000000..1f1bef6043b7 --- /dev/null +++ b/site/public/v1/software/windows-dvd-maker/index.json @@ -0,0 +1,23 @@ +{ + "id": 11099, + "slug": "windows-dvd-maker", + "name": "Windows DVD Maker", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1076697" + ], + "created_at": "2026-07-10T10:12:43.733475", + "updated_at": "2026-07-10T10:12:43.733475", + "url": "/v1/software/windows-dvd-maker" +} diff --git a/site/public/v1/software/windows-easy-transfer/index.json b/site/public/v1/software/windows-easy-transfer/index.json new file mode 100644 index 000000000000..21ba2c14ae3d --- /dev/null +++ b/site/public/v1/software/windows-easy-transfer/index.json @@ -0,0 +1,21 @@ +{ + "id": 11100, + "slug": "windows-easy-transfer", + "name": "Windows Easy Transfer", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4438797" + ], + "created_at": "2026-07-10T10:12:43.734505", + "updated_at": "2026-07-10T10:12:43.734505", + "url": "/v1/software/windows-easy-transfer" +} diff --git a/site/public/v1/software/windows-fax-and-scan/index.json b/site/public/v1/software/windows-fax-and-scan/index.json new file mode 100644 index 000000000000..0fd393a148dd --- /dev/null +++ b/site/public/v1/software/windows-fax-and-scan/index.json @@ -0,0 +1,19 @@ +{ + "id": 11101, + "slug": "windows-fax-and-scan", + "name": "Windows Fax and Scan", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1141066" + ], + "created_at": "2026-07-10T10:12:43.734505", + "updated_at": "2026-07-10T10:12:43.734505", + "url": "/v1/software/windows-fax-and-scan" +} diff --git a/site/public/v1/software/windows-firewall/index.json b/site/public/v1/software/windows-firewall/index.json new file mode 100644 index 000000000000..21ebc9024b7c --- /dev/null +++ b/site/public/v1/software/windows-firewall/index.json @@ -0,0 +1,23 @@ +{ + "id": 11102, + "slug": "windows-firewall", + "name": "Windows Firewall", + "release_date": null, + "developers": [ + "Microsoft Windows" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1068438" + ], + "created_at": "2026-07-10T10:12:43.734505", + "updated_at": "2026-07-10T10:12:43.734505", + "url": "/v1/software/windows-firewall" +} diff --git a/site/public/v1/software/windows-genuine-advantage/index.json b/site/public/v1/software/windows-genuine-advantage/index.json new file mode 100644 index 000000000000..83a75682e92e --- /dev/null +++ b/site/public/v1/software/windows-genuine-advantage/index.json @@ -0,0 +1,25 @@ +{ + "id": 11103, + "slug": "windows-genuine-advantage", + "name": "Windows Genuine Advantage", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [ + "Windows 7" + ], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q855381" + ], + "created_at": "2026-07-10T10:12:43.734505", + "updated_at": "2026-07-10T10:12:43.734505", + "url": "/v1/software/windows-genuine-advantage" +} diff --git a/site/public/v1/software/windows-hardware-lab-kit/index.json b/site/public/v1/software/windows-hardware-lab-kit/index.json new file mode 100644 index 000000000000..b42cd8f842f5 --- /dev/null +++ b/site/public/v1/software/windows-hardware-lab-kit/index.json @@ -0,0 +1,21 @@ +{ + "id": 11104, + "slug": "windows-hardware-lab-kit", + "name": "Windows Hardware Lab Kit", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2183844" + ], + "created_at": "2026-07-10T10:12:43.735482", + "updated_at": "2026-07-10T10:12:43.735482", + "url": "/v1/software/windows-hardware-lab-kit" +} diff --git a/site/public/v1/software/windows-hello-for-business/index.json b/site/public/v1/software/windows-hello-for-business/index.json new file mode 100644 index 000000000000..a3f41f7096e5 --- /dev/null +++ b/site/public/v1/software/windows-hello-for-business/index.json @@ -0,0 +1,19 @@ +{ + "id": 11105, + "slug": "windows-hello-for-business", + "name": "Windows Hello for Business", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q132672345" + ], + "created_at": "2026-07-10T10:12:43.735482", + "updated_at": "2026-07-10T10:12:43.735482", + "url": "/v1/software/windows-hello-for-business" +} diff --git a/site/public/v1/software/windows-hello/index.json b/site/public/v1/software/windows-hello/index.json new file mode 100644 index 000000000000..bad2bef09605 --- /dev/null +++ b/site/public/v1/software/windows-hello/index.json @@ -0,0 +1,19 @@ +{ + "id": 11106, + "slug": "windows-hello", + "name": "Windows Hello", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q24192034" + ], + "created_at": "2026-07-10T10:12:43.735482", + "updated_at": "2026-07-10T10:12:43.735482", + "url": "/v1/software/windows-hello" +} diff --git a/site/public/v1/software/windows-help-viewer/index.json b/site/public/v1/software/windows-help-viewer/index.json new file mode 100644 index 000000000000..ae46f503b051 --- /dev/null +++ b/site/public/v1/software/windows-help-viewer/index.json @@ -0,0 +1,21 @@ +{ + "id": 11107, + "slug": "windows-help-viewer", + "name": "Windows Help Viewer", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123011043" + ], + "created_at": "2026-07-10T10:12:43.736488", + "updated_at": "2026-07-10T10:12:43.736488", + "url": "/v1/software/windows-help-viewer" +} diff --git a/site/public/v1/software/windows-hpc-server-2008/index.json b/site/public/v1/software/windows-hpc-server-2008/index.json new file mode 100644 index 000000000000..06de97cfbe4a --- /dev/null +++ b/site/public/v1/software/windows-hpc-server-2008/index.json @@ -0,0 +1,23 @@ +{ + "id": 11108, + "slug": "windows-hpc-server-2008", + "name": "Windows HPC Server 2008", + "release_date": "2008-09-22", + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "copyrighted" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2744208" + ], + "created_at": "2026-07-10T10:12:43.736488", + "updated_at": "2026-07-10T10:12:43.736488", + "url": "/v1/software/windows-hpc-server-2008" +} diff --git a/site/public/v1/software/windows-imaging-component/index.json b/site/public/v1/software/windows-imaging-component/index.json new file mode 100644 index 000000000000..ba815a676fb1 --- /dev/null +++ b/site/public/v1/software/windows-imaging-component/index.json @@ -0,0 +1,19 @@ +{ + "id": 11109, + "slug": "windows-imaging-component", + "name": "Windows Imaging Component", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2083260" + ], + "created_at": "2026-07-10T10:12:43.736488", + "updated_at": "2026-07-10T10:12:43.736488", + "url": "/v1/software/windows-imaging-component" +} diff --git a/site/public/v1/software/windows-ink/index.json b/site/public/v1/software/windows-ink/index.json new file mode 100644 index 000000000000..c8ef52d7da5e --- /dev/null +++ b/site/public/v1/software/windows-ink/index.json @@ -0,0 +1,19 @@ +{ + "id": 11110, + "slug": "windows-ink", + "name": "Windows Ink", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q24836307" + ], + "created_at": "2026-07-10T10:12:43.736488", + "updated_at": "2026-07-10T10:12:43.736488", + "url": "/v1/software/windows-ink" +} diff --git a/site/public/v1/software/windows-insider/index.json b/site/public/v1/software/windows-insider/index.json new file mode 100644 index 000000000000..76c3465185c6 --- /dev/null +++ b/site/public/v1/software/windows-insider/index.json @@ -0,0 +1,24 @@ +{ + "id": 11111, + "slug": "windows-insider", + "name": "Windows Insider", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Windows 10 Mobile", + "Windows 11" + ], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q19600398" + ], + "created_at": "2026-07-10T10:12:43.737493", + "updated_at": "2026-07-10T10:12:43.737493", + "url": "/v1/software/windows-insider" +} diff --git a/site/public/v1/software/windows-installer/index.json b/site/public/v1/software/windows-installer/index.json new file mode 100644 index 000000000000..d5fe919902ed --- /dev/null +++ b/site/public/v1/software/windows-installer/index.json @@ -0,0 +1,23 @@ +{ + "id": 11112, + "slug": "windows-installer", + "name": "Windows Installer", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q181233" + ], + "created_at": "2026-07-10T10:12:43.737493", + "updated_at": "2026-07-10T10:12:43.737493", + "url": "/v1/software/windows-installer" +} diff --git a/site/public/v1/software/windows-journal/index.json b/site/public/v1/software/windows-journal/index.json new file mode 100644 index 000000000000..e1aa46701951 --- /dev/null +++ b/site/public/v1/software/windows-journal/index.json @@ -0,0 +1,19 @@ +{ + "id": 11113, + "slug": "windows-journal", + "name": "Windows Journal", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q740500" + ], + "created_at": "2026-07-10T10:12:43.737493", + "updated_at": "2026-07-10T10:12:43.737493", + "url": "/v1/software/windows-journal" +} diff --git a/site/public/v1/software/windows-libraries-for-os-2/index.json b/site/public/v1/software/windows-libraries-for-os-2/index.json new file mode 100644 index 000000000000..e77bc5ddf5b8 --- /dev/null +++ b/site/public/v1/software/windows-libraries-for-os-2/index.json @@ -0,0 +1,21 @@ +{ + "id": 11114, + "slug": "windows-libraries-for-os-2", + "name": "Windows Libraries for OS/2", + "release_date": "1987-04-02", + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8024410" + ], + "created_at": "2026-07-10T10:12:43.738530", + "updated_at": "2026-07-10T10:12:43.738530", + "url": "/v1/software/windows-libraries-for-os-2" +} diff --git a/site/public/v1/software/windows-live-admin-center/index.json b/site/public/v1/software/windows-live-admin-center/index.json new file mode 100644 index 000000000000..81d471f06f01 --- /dev/null +++ b/site/public/v1/software/windows-live-admin-center/index.json @@ -0,0 +1,21 @@ +{ + "id": 11115, + "slug": "windows-live-admin-center", + "name": "Windows Live Admin Center", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q522563" + ], + "created_at": "2026-07-10T10:12:43.738530", + "updated_at": "2026-07-10T10:12:43.738530", + "url": "/v1/software/windows-live-admin-center" +} diff --git a/site/public/v1/software/windows-live-agents/index.json b/site/public/v1/software/windows-live-agents/index.json new file mode 100644 index 000000000000..7ef09b3f1711 --- /dev/null +++ b/site/public/v1/software/windows-live-agents/index.json @@ -0,0 +1,21 @@ +{ + "id": 11116, + "slug": "windows-live-agents", + "name": "Windows Live Agents", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8024411" + ], + "created_at": "2026-07-10T10:12:43.738530", + "updated_at": "2026-07-10T10:12:43.738530", + "url": "/v1/software/windows-live-agents" +} diff --git a/site/public/v1/software/windows-live-alerts/index.json b/site/public/v1/software/windows-live-alerts/index.json new file mode 100644 index 000000000000..c46499484190 --- /dev/null +++ b/site/public/v1/software/windows-live-alerts/index.json @@ -0,0 +1,21 @@ +{ + "id": 11117, + "slug": "windows-live-alerts", + "name": "Windows Live Alerts", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3224127" + ], + "created_at": "2026-07-10T10:12:43.739510", + "updated_at": "2026-07-10T10:12:43.739510", + "url": "/v1/software/windows-live-alerts" +} diff --git a/site/public/v1/software/windows-live-barcode/index.json b/site/public/v1/software/windows-live-barcode/index.json new file mode 100644 index 000000000000..c72045914bab --- /dev/null +++ b/site/public/v1/software/windows-live-barcode/index.json @@ -0,0 +1,21 @@ +{ + "id": 11118, + "slug": "windows-live-barcode", + "name": "Windows Live Barcode", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8024412" + ], + "created_at": "2026-07-10T10:12:43.739510", + "updated_at": "2026-07-10T10:12:43.739510", + "url": "/v1/software/windows-live-barcode" +} diff --git a/site/public/v1/software/windows-live-call/index.json b/site/public/v1/software/windows-live-call/index.json new file mode 100644 index 000000000000..5745b544c840 --- /dev/null +++ b/site/public/v1/software/windows-live-call/index.json @@ -0,0 +1,21 @@ +{ + "id": 11119, + "slug": "windows-live-call", + "name": "Windows Live Call", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2547997" + ], + "created_at": "2026-07-10T10:12:43.739510", + "updated_at": "2026-07-10T10:12:43.739510", + "url": "/v1/software/windows-live-call" +} diff --git a/site/public/v1/software/windows-live-devices/index.json b/site/public/v1/software/windows-live-devices/index.json new file mode 100644 index 000000000000..49d31e62287f --- /dev/null +++ b/site/public/v1/software/windows-live-devices/index.json @@ -0,0 +1,21 @@ +{ + "id": 11120, + "slug": "windows-live-devices", + "name": "Windows Live Devices", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2884268" + ], + "created_at": "2026-07-10T10:12:43.740509", + "updated_at": "2026-07-10T10:12:43.740509", + "url": "/v1/software/windows-live-devices" +} diff --git a/site/public/v1/software/windows-live-events/index.json b/site/public/v1/software/windows-live-events/index.json new file mode 100644 index 000000000000..ddcbc4bae5f8 --- /dev/null +++ b/site/public/v1/software/windows-live-events/index.json @@ -0,0 +1,21 @@ +{ + "id": 11121, + "slug": "windows-live-events", + "name": "Windows Live Events", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3567395" + ], + "created_at": "2026-07-10T10:12:43.740509", + "updated_at": "2026-07-10T10:12:43.740509", + "url": "/v1/software/windows-live-events" +} diff --git a/site/public/v1/software/windows-live-expo/index.json b/site/public/v1/software/windows-live-expo/index.json new file mode 100644 index 000000000000..4a6dd75c5e01 --- /dev/null +++ b/site/public/v1/software/windows-live-expo/index.json @@ -0,0 +1,21 @@ +{ + "id": 11122, + "slug": "windows-live-expo", + "name": "Windows Live Expo", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8024413" + ], + "created_at": "2026-07-10T10:12:43.740509", + "updated_at": "2026-07-10T10:12:43.740509", + "url": "/v1/software/windows-live-expo" +} diff --git a/site/public/v1/software/windows-live-favorites/index.json b/site/public/v1/software/windows-live-favorites/index.json new file mode 100644 index 000000000000..54527ad61e58 --- /dev/null +++ b/site/public/v1/software/windows-live-favorites/index.json @@ -0,0 +1,21 @@ +{ + "id": 11123, + "slug": "windows-live-favorites", + "name": "Windows Live Favorites", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1067849" + ], + "created_at": "2026-07-10T10:12:43.740509", + "updated_at": "2026-07-10T10:12:43.740509", + "url": "/v1/software/windows-live-favorites" +} diff --git a/site/public/v1/software/windows-live-frameit/index.json b/site/public/v1/software/windows-live-frameit/index.json new file mode 100644 index 000000000000..1e5818321d99 --- /dev/null +++ b/site/public/v1/software/windows-live-frameit/index.json @@ -0,0 +1,21 @@ +{ + "id": 11124, + "slug": "windows-live-frameit", + "name": "Windows Live FrameIt", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8024414" + ], + "created_at": "2026-07-10T10:12:43.741473", + "updated_at": "2026-07-10T10:12:43.741473", + "url": "/v1/software/windows-live-frameit" +} diff --git a/site/public/v1/software/windows-live-gallery/index.json b/site/public/v1/software/windows-live-gallery/index.json new file mode 100644 index 000000000000..fcdb840b1248 --- /dev/null +++ b/site/public/v1/software/windows-live-gallery/index.json @@ -0,0 +1,21 @@ +{ + "id": 11125, + "slug": "windows-live-gallery", + "name": "Windows Live Gallery", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1370664" + ], + "created_at": "2026-07-10T10:12:43.741473", + "updated_at": "2026-07-10T10:12:43.741473", + "url": "/v1/software/windows-live-gallery" +} diff --git a/site/public/v1/software/windows-live-groups/index.json b/site/public/v1/software/windows-live-groups/index.json new file mode 100644 index 000000000000..3d2ce7f9d403 --- /dev/null +++ b/site/public/v1/software/windows-live-groups/index.json @@ -0,0 +1,21 @@ +{ + "id": 11126, + "slug": "windows-live-groups", + "name": "Windows Live Groups", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3178070" + ], + "created_at": "2026-07-10T10:12:43.741473", + "updated_at": "2026-07-10T10:12:43.741473", + "url": "/v1/software/windows-live-groups" +} diff --git a/site/public/v1/software/windows-live-onecare/index.json b/site/public/v1/software/windows-live-onecare/index.json new file mode 100644 index 000000000000..ed5eb01d14b2 --- /dev/null +++ b/site/public/v1/software/windows-live-onecare/index.json @@ -0,0 +1,23 @@ +{ + "id": 11127, + "slug": "windows-live-onecare", + "name": "Windows Live OneCare", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "end-user license agreement" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q920973" + ], + "created_at": "2026-07-10T10:12:43.742490", + "updated_at": "2026-07-10T10:12:43.742490", + "url": "/v1/software/windows-live-onecare" +} diff --git a/site/public/v1/software/windows-live-personalized-experience/index.json b/site/public/v1/software/windows-live-personalized-experience/index.json new file mode 100644 index 000000000000..6b5ea90c0a8d --- /dev/null +++ b/site/public/v1/software/windows-live-personalized-experience/index.json @@ -0,0 +1,21 @@ +{ + "id": 11128, + "slug": "windows-live-personalized-experience", + "name": "Windows Live Personalized Experience", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4385722" + ], + "created_at": "2026-07-10T10:12:43.742490", + "updated_at": "2026-07-10T10:12:43.742490", + "url": "/v1/software/windows-live-personalized-experience" +} diff --git a/site/public/v1/software/windows-live-profile/index.json b/site/public/v1/software/windows-live-profile/index.json new file mode 100644 index 000000000000..1a8861778f4e --- /dev/null +++ b/site/public/v1/software/windows-live-profile/index.json @@ -0,0 +1,19 @@ +{ + "id": 11129, + "slug": "windows-live-profile", + "name": "Windows Live Profile", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3083627" + ], + "created_at": "2026-07-10T10:12:43.742490", + "updated_at": "2026-07-10T10:12:43.742490", + "url": "/v1/software/windows-live-profile" +} diff --git a/site/public/v1/software/windows-live-shopping/index.json b/site/public/v1/software/windows-live-shopping/index.json new file mode 100644 index 000000000000..2ffe153b6b76 --- /dev/null +++ b/site/public/v1/software/windows-live-shopping/index.json @@ -0,0 +1,21 @@ +{ + "id": 11130, + "slug": "windows-live-shopping", + "name": "Windows Live Shopping", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17048669" + ], + "created_at": "2026-07-10T10:12:43.742490", + "updated_at": "2026-07-10T10:12:43.742490", + "url": "/v1/software/windows-live-shopping" +} diff --git a/site/public/v1/software/windows-live-spaces/index.json b/site/public/v1/software/windows-live-spaces/index.json new file mode 100644 index 000000000000..3c379b6c76a2 --- /dev/null +++ b/site/public/v1/software/windows-live-spaces/index.json @@ -0,0 +1,21 @@ +{ + "id": 11131, + "slug": "windows-live-spaces", + "name": "Windows Live Spaces", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q876646" + ], + "created_at": "2026-07-10T10:12:43.743512", + "updated_at": "2026-07-10T10:12:43.743512", + "url": "/v1/software/windows-live-spaces" +} diff --git a/site/public/v1/software/windows-live-tv/index.json b/site/public/v1/software/windows-live-tv/index.json new file mode 100644 index 000000000000..7884e2fc74ca --- /dev/null +++ b/site/public/v1/software/windows-live-tv/index.json @@ -0,0 +1,21 @@ +{ + "id": 11132, + "slug": "windows-live-tv", + "name": "Windows Live TV", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8024417" + ], + "created_at": "2026-07-10T10:12:43.743512", + "updated_at": "2026-07-10T10:12:43.743512", + "url": "/v1/software/windows-live-tv" +} diff --git a/site/public/v1/software/windows-live-video-messages/index.json b/site/public/v1/software/windows-live-video-messages/index.json new file mode 100644 index 000000000000..48a916ca959f --- /dev/null +++ b/site/public/v1/software/windows-live-video-messages/index.json @@ -0,0 +1,21 @@ +{ + "id": 11133, + "slug": "windows-live-video-messages", + "name": "Windows Live Video Messages", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8024419" + ], + "created_at": "2026-07-10T10:12:43.743512", + "updated_at": "2026-07-10T10:12:43.744524", + "url": "/v1/software/windows-live-video-messages" +} diff --git a/site/public/v1/software/windows-management-framework/index.json b/site/public/v1/software/windows-management-framework/index.json new file mode 100644 index 000000000000..19bbb4f2ad39 --- /dev/null +++ b/site/public/v1/software/windows-management-framework/index.json @@ -0,0 +1,19 @@ +{ + "id": 11134, + "slug": "windows-management-framework", + "name": "Windows Management Framework", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q29364567" + ], + "created_at": "2026-07-10T10:12:43.744524", + "updated_at": "2026-07-10T10:12:43.744524", + "url": "/v1/software/windows-management-framework" +} diff --git a/site/public/v1/software/windows-marketplace-for-mobile/index.json b/site/public/v1/software/windows-marketplace-for-mobile/index.json new file mode 100644 index 000000000000..c46c1831c765 --- /dev/null +++ b/site/public/v1/software/windows-marketplace-for-mobile/index.json @@ -0,0 +1,21 @@ +{ + "id": 11135, + "slug": "windows-marketplace-for-mobile", + "name": "Windows Marketplace for Mobile", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8024423" + ], + "created_at": "2026-07-10T10:12:43.744524", + "updated_at": "2026-07-10T10:12:43.744524", + "url": "/v1/software/windows-marketplace-for-mobile" +} diff --git a/site/public/v1/software/windows-media-components-for-quicktime/index.json b/site/public/v1/software/windows-media-components-for-quicktime/index.json new file mode 100644 index 000000000000..f04906fecf2f --- /dev/null +++ b/site/public/v1/software/windows-media-components-for-quicktime/index.json @@ -0,0 +1,23 @@ +{ + "id": 11136, + "slug": "windows-media-components-for-quicktime", + "name": "Windows Media Components for QuickTime", + "release_date": null, + "developers": [ + "Telestream" + ], + "publishers": [], + "operating_systems": [ + "macOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8024426" + ], + "created_at": "2026-07-10T10:12:43.744524", + "updated_at": "2026-07-10T10:12:43.744524", + "url": "/v1/software/windows-media-components-for-quicktime" +} diff --git a/site/public/v1/software/windows-media-feature-pack/index.json b/site/public/v1/software/windows-media-feature-pack/index.json new file mode 100644 index 000000000000..65c97eeee6c9 --- /dev/null +++ b/site/public/v1/software/windows-media-feature-pack/index.json @@ -0,0 +1,19 @@ +{ + "id": 11137, + "slug": "windows-media-feature-pack", + "name": "Windows Media Feature Pack", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130552732" + ], + "created_at": "2026-07-10T10:12:43.745522", + "updated_at": "2026-07-10T10:12:43.745522", + "url": "/v1/software/windows-media-feature-pack" +} diff --git a/site/public/v1/software/windows-media-player-version-10/index.json b/site/public/v1/software/windows-media-player-version-10/index.json new file mode 100644 index 000000000000..57f5c11444b7 --- /dev/null +++ b/site/public/v1/software/windows-media-player-version-10/index.json @@ -0,0 +1,21 @@ +{ + "id": 11138, + "slug": "windows-media-player-version-10", + "name": "Windows Media Player, version 10", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10393867" + ], + "created_at": "2026-07-10T10:12:43.745522", + "updated_at": "2026-07-10T10:12:43.745522", + "url": "/v1/software/windows-media-player-version-10" +} diff --git a/site/public/v1/software/windows-media-player-version-11/index.json b/site/public/v1/software/windows-media-player-version-11/index.json new file mode 100644 index 000000000000..6cb438291f46 --- /dev/null +++ b/site/public/v1/software/windows-media-player-version-11/index.json @@ -0,0 +1,21 @@ +{ + "id": 11139, + "slug": "windows-media-player-version-11", + "name": "Windows Media Player, version 11", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q9096133" + ], + "created_at": "2026-07-10T10:12:43.745522", + "updated_at": "2026-07-10T10:12:43.745522", + "url": "/v1/software/windows-media-player-version-11" +} diff --git a/site/public/v1/software/windows-media-player-version-12/index.json b/site/public/v1/software/windows-media-player-version-12/index.json new file mode 100644 index 000000000000..7d0e85ce0745 --- /dev/null +++ b/site/public/v1/software/windows-media-player-version-12/index.json @@ -0,0 +1,21 @@ +{ + "id": 11140, + "slug": "windows-media-player-version-12", + "name": "Windows Media Player, version 12", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28018460" + ], + "created_at": "2026-07-10T10:12:43.746525", + "updated_at": "2026-07-10T10:12:43.746525", + "url": "/v1/software/windows-media-player-version-12" +} diff --git a/site/public/v1/software/windows-media-player-version-6-4/index.json b/site/public/v1/software/windows-media-player-version-6-4/index.json new file mode 100644 index 000000000000..77da823535d0 --- /dev/null +++ b/site/public/v1/software/windows-media-player-version-6-4/index.json @@ -0,0 +1,21 @@ +{ + "id": 11141, + "slug": "windows-media-player-version-6-4", + "name": "Windows Media Player, version 6.4", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139790984" + ], + "created_at": "2026-07-10T10:12:43.746525", + "updated_at": "2026-07-10T10:12:43.746525", + "url": "/v1/software/windows-media-player-version-6-4" +} diff --git a/site/public/v1/software/windows-media-player-version-7/index.json b/site/public/v1/software/windows-media-player-version-7/index.json new file mode 100644 index 000000000000..ca00ad9eda74 --- /dev/null +++ b/site/public/v1/software/windows-media-player-version-7/index.json @@ -0,0 +1,21 @@ +{ + "id": 11142, + "slug": "windows-media-player-version-7", + "name": "Windows Media Player, version 7", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139792281" + ], + "created_at": "2026-07-10T10:12:43.746525", + "updated_at": "2026-07-10T10:12:43.746525", + "url": "/v1/software/windows-media-player-version-7" +} diff --git a/site/public/v1/software/windows-media-player-version-8/index.json b/site/public/v1/software/windows-media-player-version-8/index.json new file mode 100644 index 000000000000..037047ae675b --- /dev/null +++ b/site/public/v1/software/windows-media-player-version-8/index.json @@ -0,0 +1,21 @@ +{ + "id": 11143, + "slug": "windows-media-player-version-8", + "name": "Windows Media Player, version 8", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139792269" + ], + "created_at": "2026-07-10T10:12:43.746525", + "updated_at": "2026-07-10T10:12:43.746525", + "url": "/v1/software/windows-media-player-version-8" +} diff --git a/site/public/v1/software/windows-media-player-version-9/index.json b/site/public/v1/software/windows-media-player-version-9/index.json new file mode 100644 index 000000000000..53ca5ae6355a --- /dev/null +++ b/site/public/v1/software/windows-media-player-version-9/index.json @@ -0,0 +1,21 @@ +{ + "id": 11144, + "slug": "windows-media-player-version-9", + "name": "Windows Media Player, version 9", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28018572" + ], + "created_at": "2026-07-10T10:12:43.747525", + "updated_at": "2026-07-10T10:12:43.747525", + "url": "/v1/software/windows-media-player-version-9" +} diff --git a/site/public/v1/software/windows-messaging/index.json b/site/public/v1/software/windows-messaging/index.json new file mode 100644 index 000000000000..4e28fef10a43 --- /dev/null +++ b/site/public/v1/software/windows-messaging/index.json @@ -0,0 +1,21 @@ +{ + "id": 11145, + "slug": "windows-messaging", + "name": "Windows Messaging", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8024429" + ], + "created_at": "2026-07-10T10:12:43.747525", + "updated_at": "2026-07-10T10:12:43.747525", + "url": "/v1/software/windows-messaging" +} diff --git a/site/public/v1/software/windows-mixed-reality/index.json b/site/public/v1/software/windows-mixed-reality/index.json new file mode 100644 index 000000000000..f0c595823405 --- /dev/null +++ b/site/public/v1/software/windows-mixed-reality/index.json @@ -0,0 +1,21 @@ +{ + "id": 11146, + "slug": "windows-mixed-reality", + "name": "Windows Mixed Reality", + "release_date": "2017-01-01", + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18844946" + ], + "created_at": "2026-07-10T10:12:43.748568", + "updated_at": "2026-07-10T10:12:43.748568", + "url": "/v1/software/windows-mixed-reality" +} diff --git a/site/public/v1/software/windows-mobile-device-center/index.json b/site/public/v1/software/windows-mobile-device-center/index.json new file mode 100644 index 000000000000..8087df282fdf --- /dev/null +++ b/site/public/v1/software/windows-mobile-device-center/index.json @@ -0,0 +1,19 @@ +{ + "id": 11147, + "slug": "windows-mobile-device-center", + "name": "Windows Mobile Device Center", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1153643" + ], + "created_at": "2026-07-10T10:12:43.748568", + "updated_at": "2026-07-10T10:12:43.748568", + "url": "/v1/software/windows-mobile-device-center" +} diff --git a/site/public/v1/software/windows-mobility-center/index.json b/site/public/v1/software/windows-mobility-center/index.json new file mode 100644 index 000000000000..09dd3fa4fb48 --- /dev/null +++ b/site/public/v1/software/windows-mobility-center/index.json @@ -0,0 +1,19 @@ +{ + "id": 11148, + "slug": "windows-mobility-center", + "name": "Windows Mobility Center", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1193575" + ], + "created_at": "2026-07-10T10:12:43.748568", + "updated_at": "2026-07-10T10:12:43.748568", + "url": "/v1/software/windows-mobility-center" +} diff --git a/site/public/v1/software/windows-multimedia-extensions/index.json b/site/public/v1/software/windows-multimedia-extensions/index.json new file mode 100644 index 000000000000..fad67594c479 --- /dev/null +++ b/site/public/v1/software/windows-multimedia-extensions/index.json @@ -0,0 +1,19 @@ +{ + "id": 11149, + "slug": "windows-multimedia-extensions", + "name": "Windows Multimedia Extensions", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q9368621" + ], + "created_at": "2026-07-10T10:12:43.748568", + "updated_at": "2026-07-10T10:12:43.748568", + "url": "/v1/software/windows-multimedia-extensions" +} diff --git a/site/public/v1/software/windows-photo-gallery/index.json b/site/public/v1/software/windows-photo-gallery/index.json new file mode 100644 index 000000000000..cd3bc8a7e76a --- /dev/null +++ b/site/public/v1/software/windows-photo-gallery/index.json @@ -0,0 +1,26 @@ +{ + "id": 11150, + "slug": "windows-photo-gallery", + "name": "Windows Photo Gallery", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [ + "Windows 8.1", + "Windows 7" + ], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1331807" + ], + "created_at": "2026-07-10T10:12:43.749631", + "updated_at": "2026-07-10T10:12:43.749631", + "url": "/v1/software/windows-photo-gallery" +} diff --git a/site/public/v1/software/windows-picture-and-fax-viewer/index.json b/site/public/v1/software/windows-picture-and-fax-viewer/index.json new file mode 100644 index 000000000000..c39a381f0c6e --- /dev/null +++ b/site/public/v1/software/windows-picture-and-fax-viewer/index.json @@ -0,0 +1,21 @@ +{ + "id": 11151, + "slug": "windows-picture-and-fax-viewer", + "name": "Windows Picture and Fax Viewer", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17164093" + ], + "created_at": "2026-07-10T10:12:43.749631", + "updated_at": "2026-07-10T10:12:43.749631", + "url": "/v1/software/windows-picture-and-fax-viewer" +} diff --git a/site/public/v1/software/windows-process-activation-services/index.json b/site/public/v1/software/windows-process-activation-services/index.json new file mode 100644 index 000000000000..123fd26e1136 --- /dev/null +++ b/site/public/v1/software/windows-process-activation-services/index.json @@ -0,0 +1,19 @@ +{ + "id": 11152, + "slug": "windows-process-activation-services", + "name": "Windows Process Activation Services", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17486116" + ], + "created_at": "2026-07-10T10:12:43.749631", + "updated_at": "2026-07-10T10:12:43.749631", + "url": "/v1/software/windows-process-activation-services" +} diff --git a/site/public/v1/software/windows-recovery-environment/index.json b/site/public/v1/software/windows-recovery-environment/index.json new file mode 100644 index 000000000000..afca14b6b146 --- /dev/null +++ b/site/public/v1/software/windows-recovery-environment/index.json @@ -0,0 +1,21 @@ +{ + "id": 11153, + "slug": "windows-recovery-environment", + "name": "Windows Recovery Environment", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1757028" + ], + "created_at": "2026-07-10T10:12:43.750589", + "updated_at": "2026-07-10T10:12:43.750589", + "url": "/v1/software/windows-recovery-environment" +} diff --git a/site/public/v1/software/windows-remote-assistance/index.json b/site/public/v1/software/windows-remote-assistance/index.json new file mode 100644 index 000000000000..747077d36a30 --- /dev/null +++ b/site/public/v1/software/windows-remote-assistance/index.json @@ -0,0 +1,19 @@ +{ + "id": 11154, + "slug": "windows-remote-assistance", + "name": "Windows Remote Assistance", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22115310" + ], + "created_at": "2026-07-10T10:12:43.750589", + "updated_at": "2026-07-10T10:12:43.750589", + "url": "/v1/software/windows-remote-assistance" +} diff --git a/site/public/v1/software/windows-remote-management/index.json b/site/public/v1/software/windows-remote-management/index.json new file mode 100644 index 000000000000..9eaa67a03938 --- /dev/null +++ b/site/public/v1/software/windows-remote-management/index.json @@ -0,0 +1,19 @@ +{ + "id": 11155, + "slug": "windows-remote-management", + "name": "Windows Remote Management", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q65075414" + ], + "created_at": "2026-07-10T10:12:43.750589", + "updated_at": "2026-07-10T10:12:43.750589", + "url": "/v1/software/windows-remote-management" +} diff --git a/site/public/v1/software/windows-server-update-services/index.json b/site/public/v1/software/windows-server-update-services/index.json new file mode 100644 index 000000000000..5cd8205ceeba --- /dev/null +++ b/site/public/v1/software/windows-server-update-services/index.json @@ -0,0 +1,21 @@ +{ + "id": 11156, + "slug": "windows-server-update-services", + "name": "Windows Server Update Services", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1187803" + ], + "created_at": "2026-07-10T10:12:43.751571", + "updated_at": "2026-07-10T10:12:43.751571", + "url": "/v1/software/windows-server-update-services" +} diff --git a/site/public/v1/software/windows-setup/index.json b/site/public/v1/software/windows-setup/index.json new file mode 100644 index 000000000000..abe937ad5e48 --- /dev/null +++ b/site/public/v1/software/windows-setup/index.json @@ -0,0 +1,21 @@ +{ + "id": 11157, + "slug": "windows-setup", + "name": "Windows Setup", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q863146" + ], + "created_at": "2026-07-10T10:12:43.751571", + "updated_at": "2026-07-10T10:12:43.751571", + "url": "/v1/software/windows-setup" +} diff --git a/site/public/v1/software/windows-sideshow/index.json b/site/public/v1/software/windows-sideshow/index.json new file mode 100644 index 000000000000..05a4b888971e --- /dev/null +++ b/site/public/v1/software/windows-sideshow/index.json @@ -0,0 +1,19 @@ +{ + "id": 11158, + "slug": "windows-sideshow", + "name": "Windows SideShow", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q909896" + ], + "created_at": "2026-07-10T10:12:43.751571", + "updated_at": "2026-07-10T10:12:43.751571", + "url": "/v1/software/windows-sideshow" +} diff --git a/site/public/v1/software/windows-speech-recognition/index.json b/site/public/v1/software/windows-speech-recognition/index.json new file mode 100644 index 000000000000..5fca71ad96e5 --- /dev/null +++ b/site/public/v1/software/windows-speech-recognition/index.json @@ -0,0 +1,21 @@ +{ + "id": 11159, + "slug": "windows-speech-recognition", + "name": "Windows Speech Recognition", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3656354" + ], + "created_at": "2026-07-10T10:12:43.752602", + "updated_at": "2026-07-10T10:12:43.752602", + "url": "/v1/software/windows-speech-recognition" +} diff --git a/site/public/v1/software/windows-spotlight/index.json b/site/public/v1/software/windows-spotlight/index.json new file mode 100644 index 000000000000..39dff19ecc46 --- /dev/null +++ b/site/public/v1/software/windows-spotlight/index.json @@ -0,0 +1,21 @@ +{ + "id": 11160, + "slug": "windows-spotlight", + "name": "Windows Spotlight", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25001010" + ], + "created_at": "2026-07-10T10:12:43.752602", + "updated_at": "2026-07-10T10:12:43.752602", + "url": "/v1/software/windows-spotlight" +} diff --git a/site/public/v1/software/windows-support-tools/index.json b/site/public/v1/software/windows-support-tools/index.json new file mode 100644 index 000000000000..bf60c9849601 --- /dev/null +++ b/site/public/v1/software/windows-support-tools/index.json @@ -0,0 +1,19 @@ +{ + "id": 11161, + "slug": "windows-support-tools", + "name": "Windows Support Tools", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8024456" + ], + "created_at": "2026-07-10T10:12:43.752602", + "updated_at": "2026-07-10T10:12:43.752602", + "url": "/v1/software/windows-support-tools" +} diff --git a/site/public/v1/software/windows-system-assessment-tool/index.json b/site/public/v1/software/windows-system-assessment-tool/index.json new file mode 100644 index 000000000000..5623d5b0bc9d --- /dev/null +++ b/site/public/v1/software/windows-system-assessment-tool/index.json @@ -0,0 +1,21 @@ +{ + "id": 11162, + "slug": "windows-system-assessment-tool", + "name": "Windows System Assessment Tool", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1193278" + ], + "created_at": "2026-07-10T10:12:43.752602", + "updated_at": "2026-07-10T10:12:43.752602", + "url": "/v1/software/windows-system-assessment-tool" +} diff --git a/site/public/v1/software/windows-system-resource-manager/index.json b/site/public/v1/software/windows-system-resource-manager/index.json new file mode 100644 index 000000000000..5fc718482c02 --- /dev/null +++ b/site/public/v1/software/windows-system-resource-manager/index.json @@ -0,0 +1,19 @@ +{ + "id": 11163, + "slug": "windows-system-resource-manager", + "name": "Windows System Resource Manager", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8024457" + ], + "created_at": "2026-07-10T10:12:43.753580", + "updated_at": "2026-07-10T10:12:43.753580", + "url": "/v1/software/windows-system-resource-manager" +} diff --git a/site/public/v1/software/windows-task-scheduler/index.json b/site/public/v1/software/windows-task-scheduler/index.json new file mode 100644 index 000000000000..1458a367627c --- /dev/null +++ b/site/public/v1/software/windows-task-scheduler/index.json @@ -0,0 +1,19 @@ +{ + "id": 11164, + "slug": "windows-task-scheduler", + "name": "Windows Task Scheduler", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4006781" + ], + "created_at": "2026-07-10T10:12:43.753580", + "updated_at": "2026-07-10T10:12:43.753580", + "url": "/v1/software/windows-task-scheduler" +} diff --git a/site/public/v1/software/windows-to-go/index.json b/site/public/v1/software/windows-to-go/index.json new file mode 100644 index 000000000000..12c04d508f64 --- /dev/null +++ b/site/public/v1/software/windows-to-go/index.json @@ -0,0 +1,19 @@ +{ + "id": 11165, + "slug": "windows-to-go", + "name": "Windows To Go", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q610274" + ], + "created_at": "2026-07-10T10:12:43.753580", + "updated_at": "2026-07-10T10:12:43.754583", + "url": "/v1/software/windows-to-go" +} diff --git a/site/public/v1/software/windows-ultimate-extras/index.json b/site/public/v1/software/windows-ultimate-extras/index.json new file mode 100644 index 000000000000..9080c15a8335 --- /dev/null +++ b/site/public/v1/software/windows-ultimate-extras/index.json @@ -0,0 +1,19 @@ +{ + "id": 11166, + "slug": "windows-ultimate-extras", + "name": "Windows Ultimate Extras", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1081055" + ], + "created_at": "2026-07-10T10:12:43.754583", + "updated_at": "2026-07-10T10:12:43.754583", + "url": "/v1/software/windows-ultimate-extras" +} diff --git a/site/public/v1/software/windows-update-minitool/index.json b/site/public/v1/software/windows-update-minitool/index.json new file mode 100644 index 000000000000..bc1d52bd3916 --- /dev/null +++ b/site/public/v1/software/windows-update-minitool/index.json @@ -0,0 +1,19 @@ +{ + "id": 11167, + "slug": "windows-update-minitool", + "name": "Windows Update MiniTool", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112659351" + ], + "created_at": "2026-07-10T10:12:43.754583", + "updated_at": "2026-07-10T10:12:43.754583", + "url": "/v1/software/windows-update-minitool" +} diff --git a/site/public/v1/software/windows-virtual-pc-q9375168/index.json b/site/public/v1/software/windows-virtual-pc-q9375168/index.json new file mode 100644 index 000000000000..7511670f8290 --- /dev/null +++ b/site/public/v1/software/windows-virtual-pc-q9375168/index.json @@ -0,0 +1,19 @@ +{ + "id": 11168, + "slug": "windows-virtual-pc-q9375168", + "name": "Windows Virtual PC", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q9375168" + ], + "created_at": "2026-07-10T10:12:43.754583", + "updated_at": "2026-07-10T10:12:43.754583", + "url": "/v1/software/windows-virtual-pc-q9375168" +} diff --git a/site/public/v1/software/windows-virtual-pc/index.json b/site/public/v1/software/windows-virtual-pc/index.json new file mode 100644 index 000000000000..92a02793518e --- /dev/null +++ b/site/public/v1/software/windows-virtual-pc/index.json @@ -0,0 +1,26 @@ +{ + "id": 11169, + "slug": "windows-virtual-pc", + "name": "Windows Virtual PC", + "release_date": null, + "developers": [ + "Connectix", + "Microsoft" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q748417" + ], + "created_at": "2026-07-10T10:12:43.755615", + "updated_at": "2026-07-10T10:12:43.755615", + "url": "/v1/software/windows-virtual-pc" +} diff --git a/site/public/v1/software/windowsscope/index.json b/site/public/v1/software/windowsscope/index.json new file mode 100644 index 000000000000..c7d99e9150de --- /dev/null +++ b/site/public/v1/software/windowsscope/index.json @@ -0,0 +1,21 @@ +{ + "id": 11170, + "slug": "windowsscope", + "name": "WindowsSCOPE", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17131121" + ], + "created_at": "2026-07-10T10:12:43.755615", + "updated_at": "2026-07-10T10:12:43.755615", + "url": "/v1/software/windowsscope" +} diff --git a/site/public/v1/software/windsim/index.json b/site/public/v1/software/windsim/index.json new file mode 100644 index 000000000000..60e5ffaf6ddd --- /dev/null +++ b/site/public/v1/software/windsim/index.json @@ -0,0 +1,19 @@ +{ + "id": 11171, + "slug": "windsim", + "name": "WindSim", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q23583762" + ], + "created_at": "2026-07-10T10:12:43.755615", + "updated_at": "2026-07-10T10:12:43.755615", + "url": "/v1/software/windsim" +} diff --git a/site/public/v1/software/windstation/index.json b/site/public/v1/software/windstation/index.json new file mode 100644 index 000000000000..8bae66c8f59c --- /dev/null +++ b/site/public/v1/software/windstation/index.json @@ -0,0 +1,19 @@ +{ + "id": 11172, + "slug": "windstation", + "name": "WindStation", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q65246833" + ], + "created_at": "2026-07-10T10:12:43.756576", + "updated_at": "2026-07-10T10:12:43.756576", + "url": "/v1/software/windstation" +} diff --git a/site/public/v1/software/windump/index.json b/site/public/v1/software/windump/index.json new file mode 100644 index 000000000000..d9ceb42558d6 --- /dev/null +++ b/site/public/v1/software/windump/index.json @@ -0,0 +1,21 @@ +{ + "id": 11173, + "slug": "windump", + "name": "Windump", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q6167969" + ], + "created_at": "2026-07-10T10:12:43.756576", + "updated_at": "2026-07-10T10:12:43.756576", + "url": "/v1/software/windump" +} diff --git a/site/public/v1/software/wine-etersoft/index.json b/site/public/v1/software/wine-etersoft/index.json new file mode 100644 index 000000000000..9708cac1e8f7 --- /dev/null +++ b/site/public/v1/software/wine-etersoft/index.json @@ -0,0 +1,19 @@ +{ + "id": 11174, + "slug": "wine-etersoft", + "name": "WINE@Etersoft", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4052900" + ], + "created_at": "2026-07-10T10:12:43.756576", + "updated_at": "2026-07-10T10:12:43.756576", + "url": "/v1/software/wine-etersoft" +} diff --git a/site/public/v1/software/wine-staging/index.json b/site/public/v1/software/wine-staging/index.json new file mode 100644 index 000000000000..64bc4a1e5844 --- /dev/null +++ b/site/public/v1/software/wine-staging/index.json @@ -0,0 +1,21 @@ +{ + "id": 11175, + "slug": "wine-staging", + "name": "Wine-Staging", + "release_date": null, + "developers": [ + "Sebastian Lackner" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123148633" + ], + "created_at": "2026-07-10T10:12:43.757586", + "updated_at": "2026-07-10T10:12:43.757586", + "url": "/v1/software/wine-staging" +} diff --git a/site/public/v1/software/wineds-election-database-system/index.json b/site/public/v1/software/wineds-election-database-system/index.json new file mode 100644 index 000000000000..62d3054fcb3a --- /dev/null +++ b/site/public/v1/software/wineds-election-database-system/index.json @@ -0,0 +1,21 @@ +{ + "id": 11176, + "slug": "wineds-election-database-system", + "name": "WinEDS Election Database System", + "release_date": null, + "developers": [ + "Sequoia Voting Systems" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q56668866" + ], + "created_at": "2026-07-10T10:12:43.757586", + "updated_at": "2026-07-10T10:12:43.757586", + "url": "/v1/software/wineds-election-database-system" +} diff --git a/site/public/v1/software/winegui/index.json b/site/public/v1/software/winegui/index.json new file mode 100644 index 000000000000..11a54dd841d4 --- /dev/null +++ b/site/public/v1/software/winegui/index.json @@ -0,0 +1,19 @@ +{ + "id": 11177, + "slug": "winegui", + "name": "WineGUI", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130547565" + ], + "created_at": "2026-07-10T10:12:43.757586", + "updated_at": "2026-07-10T10:12:43.757586", + "url": "/v1/software/winegui" +} diff --git a/site/public/v1/software/winfax/index.json b/site/public/v1/software/winfax/index.json new file mode 100644 index 000000000000..ecdae863d643 --- /dev/null +++ b/site/public/v1/software/winfax/index.json @@ -0,0 +1,22 @@ +{ + "id": 11178, + "slug": "winfax", + "name": "WinFax", + "release_date": null, + "developers": [ + "Delrina", + "Gen Digital" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3569318" + ], + "created_at": "2026-07-10T10:12:43.758525", + "updated_at": "2026-07-10T10:12:43.758525", + "url": "/v1/software/winfax" +} diff --git a/site/public/v1/software/winfuture-xp-iso-builder/index.json b/site/public/v1/software/winfuture-xp-iso-builder/index.json new file mode 100644 index 000000000000..9b96a5e84101 --- /dev/null +++ b/site/public/v1/software/winfuture-xp-iso-builder/index.json @@ -0,0 +1,19 @@ +{ + "id": 11179, + "slug": "winfuture-xp-iso-builder", + "name": "WinFuture xp-Iso-Builder", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2583304" + ], + "created_at": "2026-07-10T10:12:43.758525", + "updated_at": "2026-07-10T10:12:43.758525", + "url": "/v1/software/winfuture-xp-iso-builder" +} diff --git a/site/public/v1/software/wingate/index.json b/site/public/v1/software/wingate/index.json new file mode 100644 index 000000000000..8cac7f4cb8b7 --- /dev/null +++ b/site/public/v1/software/wingate/index.json @@ -0,0 +1,23 @@ +{ + "id": 11180, + "slug": "wingate", + "name": "WinGate", + "release_date": null, + "developers": [ + "QBIK" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1302273" + ], + "created_at": "2026-07-10T10:12:43.758525", + "updated_at": "2026-07-10T10:12:43.758525", + "url": "/v1/software/wingate" +} diff --git a/site/public/v1/software/wingeno/index.json b/site/public/v1/software/wingeno/index.json new file mode 100644 index 000000000000..4163f8f0b216 --- /dev/null +++ b/site/public/v1/software/wingeno/index.json @@ -0,0 +1,19 @@ +{ + "id": 11181, + "slug": "wingeno", + "name": "WinGeno", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123269671" + ], + "created_at": "2026-07-10T10:12:43.759525", + "updated_at": "2026-07-10T10:12:43.759525", + "url": "/v1/software/wingeno" +} diff --git a/site/public/v1/software/wingx/index.json b/site/public/v1/software/wingx/index.json new file mode 100644 index 000000000000..66c38d2b9083 --- /dev/null +++ b/site/public/v1/software/wingx/index.json @@ -0,0 +1,21 @@ +{ + "id": 11182, + "slug": "wingx", + "name": "WinGX", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Windows 7" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q51796009" + ], + "created_at": "2026-07-10T10:12:43.759525", + "updated_at": "2026-07-10T10:12:43.759525", + "url": "/v1/software/wingx" +} diff --git a/site/public/v1/software/winhound/index.json b/site/public/v1/software/winhound/index.json new file mode 100644 index 000000000000..14994ec51457 --- /dev/null +++ b/site/public/v1/software/winhound/index.json @@ -0,0 +1,19 @@ +{ + "id": 11183, + "slug": "winhound", + "name": "Winhound", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10720268" + ], + "created_at": "2026-07-10T10:12:43.759525", + "updated_at": "2026-07-10T10:12:43.759525", + "url": "/v1/software/winhound" +} diff --git a/site/public/v1/software/winimage/index.json b/site/public/v1/software/winimage/index.json new file mode 100644 index 000000000000..be3c4c5a6137 --- /dev/null +++ b/site/public/v1/software/winimage/index.json @@ -0,0 +1,19 @@ +{ + "id": 11184, + "slug": "winimage", + "name": "WinImage", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1391811" + ], + "created_at": "2026-07-10T10:12:43.760521", + "updated_at": "2026-07-10T10:12:43.760521", + "url": "/v1/software/winimage" +} diff --git a/site/public/v1/software/wininfo/index.json b/site/public/v1/software/wininfo/index.json new file mode 100644 index 000000000000..fb779460fc6d --- /dev/null +++ b/site/public/v1/software/wininfo/index.json @@ -0,0 +1,19 @@ +{ + "id": 11185, + "slug": "wininfo", + "name": "wininfo", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106102028" + ], + "created_at": "2026-07-10T10:12:43.760521", + "updated_at": "2026-07-10T10:12:43.760521", + "url": "/v1/software/wininfo" +} diff --git a/site/public/v1/software/wink-q21041373/index.json b/site/public/v1/software/wink-q21041373/index.json new file mode 100644 index 000000000000..6cb2c7b45bcc --- /dev/null +++ b/site/public/v1/software/wink-q21041373/index.json @@ -0,0 +1,23 @@ +{ + "id": 11186, + "slug": "wink-q21041373", + "name": "Wink", + "release_date": null, + "developers": [ + "Quirky" + ], + "publishers": [], + "operating_systems": [ + "iOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q21041373" + ], + "created_at": "2026-07-10T10:12:43.760521", + "updated_at": "2026-07-10T10:12:43.760521", + "url": "/v1/software/wink-q21041373" +} diff --git a/site/public/v1/software/wink/index.json b/site/public/v1/software/wink/index.json new file mode 100644 index 000000000000..abcc32e60277 --- /dev/null +++ b/site/public/v1/software/wink/index.json @@ -0,0 +1,23 @@ +{ + "id": 11187, + "slug": "wink", + "name": "Wink", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q512182" + ], + "created_at": "2026-07-10T10:12:43.760521", + "updated_at": "2026-07-10T10:12:43.760521", + "url": "/v1/software/wink" +} diff --git a/site/public/v1/software/winlibre/index.json b/site/public/v1/software/winlibre/index.json new file mode 100644 index 000000000000..999d0b23281b --- /dev/null +++ b/site/public/v1/software/winlibre/index.json @@ -0,0 +1,21 @@ +{ + "id": 11188, + "slug": "winlibre", + "name": "WinLibre", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3569252" + ], + "created_at": "2026-07-10T10:12:43.761525", + "updated_at": "2026-07-10T10:12:43.761525", + "url": "/v1/software/winlibre" +} diff --git a/site/public/v1/software/winmostar/index.json b/site/public/v1/software/winmostar/index.json new file mode 100644 index 000000000000..ecee7e113374 --- /dev/null +++ b/site/public/v1/software/winmostar/index.json @@ -0,0 +1,21 @@ +{ + "id": 11189, + "slug": "winmostar", + "name": "Winmostar", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Delphi" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q27979286" + ], + "created_at": "2026-07-10T10:12:43.761525", + "updated_at": "2026-07-10T10:12:43.761525", + "url": "/v1/software/winmostar" +} diff --git a/site/public/v1/software/winmx/index.json b/site/public/v1/software/winmx/index.json new file mode 100644 index 000000000000..f2aa78e31a06 --- /dev/null +++ b/site/public/v1/software/winmx/index.json @@ -0,0 +1,23 @@ +{ + "id": 11190, + "slug": "winmx", + "name": "WinMX", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q239036" + ], + "created_at": "2026-07-10T10:12:43.761525", + "updated_at": "2026-07-10T10:12:43.761525", + "url": "/v1/software/winmx" +} diff --git a/site/public/v1/software/winnc/index.json b/site/public/v1/software/winnc/index.json new file mode 100644 index 000000000000..0d2455403a4b --- /dev/null +++ b/site/public/v1/software/winnc/index.json @@ -0,0 +1,23 @@ +{ + "id": 11191, + "slug": "winnc", + "name": "WinNc", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Object Pascal" + ], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3118183" + ], + "created_at": "2026-07-10T10:12:43.762584", + "updated_at": "2026-07-10T10:12:43.762584", + "url": "/v1/software/winnc" +} diff --git a/site/public/v1/software/winpcap/index.json b/site/public/v1/software/winpcap/index.json new file mode 100644 index 000000000000..06defd98f127 --- /dev/null +++ b/site/public/v1/software/winpcap/index.json @@ -0,0 +1,19 @@ +{ + "id": 11192, + "slug": "winpcap", + "name": "WinPcap", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2166623" + ], + "created_at": "2026-07-10T10:12:43.762584", + "updated_at": "2026-07-10T10:12:43.762584", + "url": "/v1/software/winpcap" +} diff --git a/site/public/v1/software/winplot/index.json b/site/public/v1/software/winplot/index.json new file mode 100644 index 000000000000..5f6e04cd1fdd --- /dev/null +++ b/site/public/v1/software/winplot/index.json @@ -0,0 +1,21 @@ +{ + "id": 11193, + "slug": "winplot", + "name": "Winplot", + "release_date": "1985-01-01", + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8025912" + ], + "created_at": "2026-07-10T10:12:43.762584", + "updated_at": "2026-07-10T10:12:43.762584", + "url": "/v1/software/winplot" +} diff --git a/site/public/v1/software/winpolis/index.json b/site/public/v1/software/winpolis/index.json new file mode 100644 index 000000000000..ab825d561f00 --- /dev/null +++ b/site/public/v1/software/winpolis/index.json @@ -0,0 +1,19 @@ +{ + "id": 11194, + "slug": "winpolis", + "name": "WinPolis", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108732542" + ], + "created_at": "2026-07-10T10:12:43.762584", + "updated_at": "2026-07-10T10:12:43.762584", + "url": "/v1/software/winpolis" +} diff --git a/site/public/v1/software/winrelan/index.json b/site/public/v1/software/winrelan/index.json new file mode 100644 index 000000000000..bed2ce00a207 --- /dev/null +++ b/site/public/v1/software/winrelan/index.json @@ -0,0 +1,23 @@ +{ + "id": 11195, + "slug": "winrelan", + "name": "WinRelan", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105229780" + ], + "created_at": "2026-07-10T10:12:43.763601", + "updated_at": "2026-07-10T10:12:43.763601", + "url": "/v1/software/winrelan" +} diff --git a/site/public/v1/software/winshell/index.json b/site/public/v1/software/winshell/index.json new file mode 100644 index 000000000000..700d08d7fead --- /dev/null +++ b/site/public/v1/software/winshell/index.json @@ -0,0 +1,23 @@ +{ + "id": 11196, + "slug": "winshell", + "name": "WinShell", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q967784" + ], + "created_at": "2026-07-10T10:12:43.763601", + "updated_at": "2026-07-10T10:12:43.763601", + "url": "/v1/software/winshell" +} diff --git a/site/public/v1/software/winstars/index.json b/site/public/v1/software/winstars/index.json new file mode 100644 index 000000000000..0297b6a3c20b --- /dev/null +++ b/site/public/v1/software/winstars/index.json @@ -0,0 +1,22 @@ +{ + "id": 11197, + "slug": "winstars", + "name": "WinStars", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "iOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3569381" + ], + "created_at": "2026-07-10T10:12:43.763601", + "updated_at": "2026-07-10T10:12:43.763601", + "url": "/v1/software/winstars" +} diff --git a/site/public/v1/software/winsysanalyzer/index.json b/site/public/v1/software/winsysanalyzer/index.json new file mode 100644 index 000000000000..22082328931f --- /dev/null +++ b/site/public/v1/software/winsysanalyzer/index.json @@ -0,0 +1,23 @@ +{ + "id": 11198, + "slug": "winsysanalyzer", + "name": "WinSysAnalyzer", + "release_date": null, + "developers": [ + "BMSoft1024" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140352420" + ], + "created_at": "2026-07-10T10:12:43.764624", + "updated_at": "2026-07-10T10:12:43.764624", + "url": "/v1/software/winsysanalyzer" +} diff --git a/site/public/v1/software/winticket/index.json b/site/public/v1/software/winticket/index.json new file mode 100644 index 000000000000..6e5a536f72f5 --- /dev/null +++ b/site/public/v1/software/winticket/index.json @@ -0,0 +1,21 @@ +{ + "id": 11199, + "slug": "winticket", + "name": "WinTicket", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "iOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q65233332" + ], + "created_at": "2026-07-10T10:12:43.764624", + "updated_at": "2026-07-10T10:12:43.764624", + "url": "/v1/software/winticket" +} diff --git a/site/public/v1/software/winusb/index.json b/site/public/v1/software/winusb/index.json new file mode 100644 index 000000000000..0636496a10d9 --- /dev/null +++ b/site/public/v1/software/winusb/index.json @@ -0,0 +1,21 @@ +{ + "id": 11200, + "slug": "winusb", + "name": "WinUSB", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4053158" + ], + "created_at": "2026-07-10T10:12:43.764624", + "updated_at": "2026-07-10T10:12:43.764624", + "url": "/v1/software/winusb" +} diff --git a/site/public/v1/software/winwap/index.json b/site/public/v1/software/winwap/index.json new file mode 100644 index 000000000000..b854a54d1431 --- /dev/null +++ b/site/public/v1/software/winwap/index.json @@ -0,0 +1,19 @@ +{ + "id": 11201, + "slug": "winwap", + "name": "WinWAP", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4053159" + ], + "created_at": "2026-07-10T10:12:43.764624", + "updated_at": "2026-07-10T10:12:43.764624", + "url": "/v1/software/winwap" +} diff --git a/site/public/v1/software/winx-mediatrans/index.json b/site/public/v1/software/winx-mediatrans/index.json new file mode 100644 index 000000000000..5bfad4ea4543 --- /dev/null +++ b/site/public/v1/software/winx-mediatrans/index.json @@ -0,0 +1,19 @@ +{ + "id": 11202, + "slug": "winx-mediatrans", + "name": "WinX MediaTrans", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q26971380" + ], + "created_at": "2026-07-10T10:12:43.765593", + "updated_at": "2026-07-10T10:12:43.765593", + "url": "/v1/software/winx-mediatrans" +} diff --git a/site/public/v1/software/winyl/index.json b/site/public/v1/software/winyl/index.json new file mode 100644 index 000000000000..c2e31b07bb22 --- /dev/null +++ b/site/public/v1/software/winyl/index.json @@ -0,0 +1,23 @@ +{ + "id": 11203, + "slug": "winyl", + "name": "Winyl", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111586459" + ], + "created_at": "2026-07-10T10:12:43.765593", + "updated_at": "2026-07-10T10:12:43.765593", + "url": "/v1/software/winyl" +} diff --git a/site/public/v1/software/wipe-out/index.json b/site/public/v1/software/wipe-out/index.json new file mode 100644 index 000000000000..c36cff4f02ff --- /dev/null +++ b/site/public/v1/software/wipe-out/index.json @@ -0,0 +1,19 @@ +{ + "id": 11204, + "slug": "wipe-out", + "name": "wipe-out", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17233012" + ], + "created_at": "2026-07-10T10:12:43.765593", + "updated_at": "2026-07-10T10:12:43.765593", + "url": "/v1/software/wipe-out" +} diff --git a/site/public/v1/software/wipersoft/index.json b/site/public/v1/software/wipersoft/index.json new file mode 100644 index 000000000000..1721c9422eaf --- /dev/null +++ b/site/public/v1/software/wipersoft/index.json @@ -0,0 +1,19 @@ +{ + "id": 11205, + "slug": "wipersoft", + "name": "WiperSoft", + "release_date": "2015-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28447972" + ], + "created_at": "2026-07-10T10:12:43.766593", + "updated_at": "2026-07-10T10:12:43.766593", + "url": "/v1/software/wipersoft" +} diff --git a/site/public/v1/software/wirecast/index.json b/site/public/v1/software/wirecast/index.json new file mode 100644 index 000000000000..e5bedc9ce9d9 --- /dev/null +++ b/site/public/v1/software/wirecast/index.json @@ -0,0 +1,24 @@ +{ + "id": 11206, + "slug": "wirecast", + "name": "Wirecast", + "release_date": null, + "developers": [ + "Telestream" + ], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8026771" + ], + "created_at": "2026-07-10T10:12:43.766593", + "updated_at": "2026-07-10T10:12:43.766593", + "url": "/v1/software/wirecast" +} diff --git a/site/public/v1/software/wireframesketcher/index.json b/site/public/v1/software/wireframesketcher/index.json new file mode 100644 index 000000000000..e3b7ce1dc373 --- /dev/null +++ b/site/public/v1/software/wireframesketcher/index.json @@ -0,0 +1,21 @@ +{ + "id": 11207, + "slug": "wireframesketcher", + "name": "WireframeSketcher", + "release_date": "2008-01-01", + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17098555" + ], + "created_at": "2026-07-10T10:12:43.766593", + "updated_at": "2026-07-10T10:12:43.766593", + "url": "/v1/software/wireframesketcher" +} diff --git a/site/public/v1/software/wirefusion/index.json b/site/public/v1/software/wirefusion/index.json new file mode 100644 index 000000000000..d53dfc273243 --- /dev/null +++ b/site/public/v1/software/wirefusion/index.json @@ -0,0 +1,19 @@ +{ + "id": 11208, + "slug": "wirefusion", + "name": "WireFusion", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3569430" + ], + "created_at": "2026-07-10T10:12:43.767602", + "updated_at": "2026-07-10T10:12:43.767602", + "url": "/v1/software/wirefusion" +} diff --git a/site/public/v1/software/wireless-information-system-for-emergency-responders/index.json b/site/public/v1/software/wireless-information-system-for-emergency-responders/index.json new file mode 100644 index 000000000000..b5a8d9b42750 --- /dev/null +++ b/site/public/v1/software/wireless-information-system-for-emergency-responders/index.json @@ -0,0 +1,19 @@ +{ + "id": 11209, + "slug": "wireless-information-system-for-emergency-responders", + "name": "Wireless Information System for Emergency Responders", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8026840" + ], + "created_at": "2026-07-10T10:12:43.767602", + "updated_at": "2026-07-10T10:12:43.767602", + "url": "/v1/software/wireless-information-system-for-emergency-responders" +} diff --git a/site/public/v1/software/wiscker/index.json b/site/public/v1/software/wiscker/index.json new file mode 100644 index 000000000000..a9aa658816d4 --- /dev/null +++ b/site/public/v1/software/wiscker/index.json @@ -0,0 +1,19 @@ +{ + "id": 11210, + "slug": "wiscker", + "name": "WIScker", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084757" + ], + "created_at": "2026-07-10T10:12:43.767602", + "updated_at": "2026-07-10T10:12:43.767602", + "url": "/v1/software/wiscker" +} diff --git a/site/public/v1/software/wisdom/index.json b/site/public/v1/software/wisdom/index.json new file mode 100644 index 000000000000..8ab785f5f6a4 --- /dev/null +++ b/site/public/v1/software/wisdom/index.json @@ -0,0 +1,19 @@ +{ + "id": 11211, + "slug": "wisdom", + "name": "Wisdom", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087771" + ], + "created_at": "2026-07-10T10:12:43.768592", + "updated_at": "2026-07-10T10:12:43.768592", + "url": "/v1/software/wisdom" +} diff --git a/site/public/v1/software/wisej-net/index.json b/site/public/v1/software/wisej-net/index.json new file mode 100644 index 000000000000..76c360cd5106 --- /dev/null +++ b/site/public/v1/software/wisej-net/index.json @@ -0,0 +1,24 @@ +{ + "id": 11212, + "slug": "wisej-net", + "name": "Wisej.NET", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [ + "Visual Basic" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q111928828" + ], + "created_at": "2026-07-10T10:12:43.768592", + "updated_at": "2026-07-10T10:12:43.768592", + "url": "/v1/software/wisej-net" +} diff --git a/site/public/v1/software/wisely/index.json b/site/public/v1/software/wisely/index.json new file mode 100644 index 000000000000..efc0882b020e --- /dev/null +++ b/site/public/v1/software/wisely/index.json @@ -0,0 +1,21 @@ +{ + "id": 11213, + "slug": "wisely", + "name": "Wisely", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "iOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16983604" + ], + "created_at": "2026-07-10T10:12:43.768592", + "updated_at": "2026-07-10T10:12:43.768592", + "url": "/v1/software/wisely" +} diff --git a/site/public/v1/software/wisex/index.json b/site/public/v1/software/wisex/index.json new file mode 100644 index 000000000000..fa95e263645f --- /dev/null +++ b/site/public/v1/software/wisex/index.json @@ -0,0 +1,19 @@ +{ + "id": 11214, + "slug": "wisex", + "name": "WiseX", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137846677" + ], + "created_at": "2026-07-10T10:12:43.769618", + "updated_at": "2026-07-10T10:12:43.769618", + "url": "/v1/software/wisex" +} diff --git a/site/public/v1/software/wiseyield/index.json b/site/public/v1/software/wiseyield/index.json new file mode 100644 index 000000000000..a84d7e41e582 --- /dev/null +++ b/site/public/v1/software/wiseyield/index.json @@ -0,0 +1,19 @@ +{ + "id": 11215, + "slug": "wiseyield", + "name": "WiseYield", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138457636" + ], + "created_at": "2026-07-10T10:12:43.769618", + "updated_at": "2026-07-10T10:12:43.769618", + "url": "/v1/software/wiseyield" +} diff --git a/site/public/v1/software/wisgoon/index.json b/site/public/v1/software/wisgoon/index.json new file mode 100644 index 000000000000..67dbbbc8f8cc --- /dev/null +++ b/site/public/v1/software/wisgoon/index.json @@ -0,0 +1,19 @@ +{ + "id": 11216, + "slug": "wisgoon", + "name": "Wisgoon", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q48698829" + ], + "created_at": "2026-07-10T10:12:43.769618", + "updated_at": "2026-07-10T10:12:43.769618", + "url": "/v1/software/wisgoon" +} diff --git a/site/public/v1/software/wish-generator/index.json b/site/public/v1/software/wish-generator/index.json new file mode 100644 index 000000000000..42a5b930f42c --- /dev/null +++ b/site/public/v1/software/wish-generator/index.json @@ -0,0 +1,19 @@ +{ + "id": 11217, + "slug": "wish-generator", + "name": "Wish Generator", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140278348" + ], + "created_at": "2026-07-10T10:12:43.770595", + "updated_at": "2026-07-10T10:12:43.770595", + "url": "/v1/software/wish-generator" +} diff --git a/site/public/v1/software/wisski/index.json b/site/public/v1/software/wisski/index.json new file mode 100644 index 000000000000..48c17fa8f533 --- /dev/null +++ b/site/public/v1/software/wisski/index.json @@ -0,0 +1,23 @@ +{ + "id": 11218, + "slug": "wisski", + "name": "WissKI", + "release_date": null, + "developers": [ + "Mark Fichtner" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "GNU General Public License, version 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q100317103" + ], + "created_at": "2026-07-10T10:12:43.770595", + "updated_at": "2026-07-10T10:12:43.770595", + "url": "/v1/software/wisski" +} diff --git a/site/public/v1/software/witscript/index.json b/site/public/v1/software/witscript/index.json new file mode 100644 index 000000000000..a4b2b11b98cb --- /dev/null +++ b/site/public/v1/software/witscript/index.json @@ -0,0 +1,19 @@ +{ + "id": 11219, + "slug": "witscript", + "name": "Witscript", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123693774" + ], + "created_at": "2026-07-10T10:12:43.770595", + "updated_at": "2026-07-10T10:12:43.770595", + "url": "/v1/software/witscript" +} diff --git a/site/public/v1/software/wizfolio/index.json b/site/public/v1/software/wizfolio/index.json new file mode 100644 index 000000000000..427fcc1a36b8 --- /dev/null +++ b/site/public/v1/software/wizfolio/index.json @@ -0,0 +1,24 @@ +{ + "id": 11220, + "slug": "wizfolio", + "name": "WizFolio", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8028714" + ], + "created_at": "2026-07-10T10:12:43.770595", + "updated_at": "2026-07-10T10:12:43.770595", + "url": "/v1/software/wizfolio" +} diff --git a/site/public/v1/software/wiztrust-protect/index.json b/site/public/v1/software/wiztrust-protect/index.json new file mode 100644 index 000000000000..e7ee049738aa --- /dev/null +++ b/site/public/v1/software/wiztrust-protect/index.json @@ -0,0 +1,21 @@ +{ + "id": 11221, + "slug": "wiztrust-protect", + "name": "Wiztrust Protect", + "release_date": null, + "developers": [ + "Wiztrust" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136304423" + ], + "created_at": "2026-07-10T10:12:43.771617", + "updated_at": "2026-07-10T10:12:43.771617", + "url": "/v1/software/wiztrust-protect" +} diff --git a/site/public/v1/software/wiztrust/index.json b/site/public/v1/software/wiztrust/index.json new file mode 100644 index 000000000000..4c52317e5d78 --- /dev/null +++ b/site/public/v1/software/wiztrust/index.json @@ -0,0 +1,19 @@ +{ + "id": 11222, + "slug": "wiztrust", + "name": "Wiztrust", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136304371" + ], + "created_at": "2026-07-10T10:12:43.771617", + "updated_at": "2026-07-10T10:12:43.771617", + "url": "/v1/software/wiztrust" +} diff --git a/site/public/v1/software/wlc/index.json b/site/public/v1/software/wlc/index.json new file mode 100644 index 000000000000..cbdd915d128f --- /dev/null +++ b/site/public/v1/software/wlc/index.json @@ -0,0 +1,21 @@ +{ + "id": 11223, + "slug": "wlc", + "name": "wlc", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975569" + ], + "created_at": "2026-07-10T10:12:43.771617", + "updated_at": "2026-07-10T10:12:43.771617", + "url": "/v1/software/wlc" +} diff --git a/site/public/v1/software/wled/index.json b/site/public/v1/software/wled/index.json new file mode 100644 index 000000000000..b0e3faa9af37 --- /dev/null +++ b/site/public/v1/software/wled/index.json @@ -0,0 +1,19 @@ +{ + "id": 11224, + "slug": "wled", + "name": "WLED", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113111845" + ], + "created_at": "2026-07-10T10:12:43.772623", + "updated_at": "2026-07-10T10:12:43.772623", + "url": "/v1/software/wled" +} diff --git a/site/public/v1/software/wma-convert/index.json b/site/public/v1/software/wma-convert/index.json new file mode 100644 index 000000000000..0a7d0216ce94 --- /dev/null +++ b/site/public/v1/software/wma-convert/index.json @@ -0,0 +1,19 @@ +{ + "id": 11225, + "slug": "wma-convert", + "name": "WMA Convert", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7952653" + ], + "created_at": "2026-07-10T10:12:43.772623", + "updated_at": "2026-07-10T10:12:43.772623", + "url": "/v1/software/wma-convert" +} diff --git a/site/public/v1/software/wmatrix/index.json b/site/public/v1/software/wmatrix/index.json new file mode 100644 index 000000000000..fa5b60d299e5 --- /dev/null +++ b/site/public/v1/software/wmatrix/index.json @@ -0,0 +1,19 @@ +{ + "id": 11226, + "slug": "wmatrix", + "name": "Wmatrix", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084758" + ], + "created_at": "2026-07-10T10:12:43.773643", + "updated_at": "2026-07-10T10:12:43.773643", + "url": "/v1/software/wmatrix" +} diff --git a/site/public/v1/software/wmcalclock/index.json b/site/public/v1/software/wmcalclock/index.json new file mode 100644 index 000000000000..a19bf1905104 --- /dev/null +++ b/site/public/v1/software/wmcalclock/index.json @@ -0,0 +1,19 @@ +{ + "id": 11227, + "slug": "wmcalclock", + "name": "WmCalClock", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8028926" + ], + "created_at": "2026-07-10T10:12:43.773643", + "updated_at": "2026-07-10T10:12:43.773643", + "url": "/v1/software/wmcalclock" +} diff --git a/site/public/v1/software/wms/index.json b/site/public/v1/software/wms/index.json new file mode 100644 index 000000000000..9afc077251d1 --- /dev/null +++ b/site/public/v1/software/wms/index.json @@ -0,0 +1,24 @@ +{ + "id": 11228, + "slug": "wms", + "name": "WMS", + "release_date": null, + "developers": [ + "Aquaveo" + ], + "publishers": [], + "operating_systems": [ + "Windows 8.1", + "Windows 7" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7953074" + ], + "created_at": "2026-07-10T10:12:43.773643", + "updated_at": "2026-07-10T10:12:43.773643", + "url": "/v1/software/wms" +} diff --git a/site/public/v1/software/woflan/index.json b/site/public/v1/software/woflan/index.json new file mode 100644 index 000000000000..a824e2c25df1 --- /dev/null +++ b/site/public/v1/software/woflan/index.json @@ -0,0 +1,19 @@ +{ + "id": 11229, + "slug": "woflan", + "name": "Woflan", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q67926238" + ], + "created_at": "2026-07-10T10:12:43.774598", + "updated_at": "2026-07-10T10:12:43.774598", + "url": "/v1/software/woflan" +} diff --git a/site/public/v1/software/woke/index.json b/site/public/v1/software/woke/index.json new file mode 100644 index 000000000000..8600411ed69d --- /dev/null +++ b/site/public/v1/software/woke/index.json @@ -0,0 +1,21 @@ +{ + "id": 11230, + "slug": "woke", + "name": "woke", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118075987" + ], + "created_at": "2026-07-10T10:12:43.774598", + "updated_at": "2026-07-10T10:12:43.774598", + "url": "/v1/software/woke" +} diff --git a/site/public/v1/software/wolfram-demonstrations-project/index.json b/site/public/v1/software/wolfram-demonstrations-project/index.json new file mode 100644 index 000000000000..22d75acfff78 --- /dev/null +++ b/site/public/v1/software/wolfram-demonstrations-project/index.json @@ -0,0 +1,19 @@ +{ + "id": 11231, + "slug": "wolfram-demonstrations-project", + "name": "Wolfram Demonstrations Project", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2632017" + ], + "created_at": "2026-07-10T10:12:43.774598", + "updated_at": "2026-07-10T10:12:43.774598", + "url": "/v1/software/wolfram-demonstrations-project" +} diff --git a/site/public/v1/software/wolfram-finance-platform/index.json b/site/public/v1/software/wolfram-finance-platform/index.json new file mode 100644 index 000000000000..b64528855e87 --- /dev/null +++ b/site/public/v1/software/wolfram-finance-platform/index.json @@ -0,0 +1,21 @@ +{ + "id": 11232, + "slug": "wolfram-finance-platform", + "name": "Wolfram Finance Platform", + "release_date": null, + "developers": [ + "Wolfram Research" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4053214" + ], + "created_at": "2026-07-10T10:12:43.775522", + "updated_at": "2026-07-10T10:12:43.775522", + "url": "/v1/software/wolfram-finance-platform" +} diff --git a/site/public/v1/software/wolfram-language/index.json b/site/public/v1/software/wolfram-language/index.json new file mode 100644 index 000000000000..a12d2b33dff7 --- /dev/null +++ b/site/public/v1/software/wolfram-language/index.json @@ -0,0 +1,27 @@ +{ + "id": 11233, + "slug": "wolfram-language", + "name": "Wolfram Language", + "release_date": "2014-01-01", + "developers": [ + "Wolfram Research", + "Stephen Wolfram" + ], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q15241057" + ], + "created_at": "2026-07-10T10:12:43.775522", + "updated_at": "2026-07-10T10:12:43.775522", + "url": "/v1/software/wolfram-language" +} diff --git a/site/public/v1/software/wombo/index.json b/site/public/v1/software/wombo/index.json new file mode 100644 index 000000000000..4b032bd98337 --- /dev/null +++ b/site/public/v1/software/wombo/index.json @@ -0,0 +1,19 @@ +{ + "id": 11234, + "slug": "wombo", + "name": "Wombo", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106808934" + ], + "created_at": "2026-07-10T10:12:43.775522", + "updated_at": "2026-07-10T10:12:43.775522", + "url": "/v1/software/wombo" +} diff --git a/site/public/v1/software/wonderbuild/index.json b/site/public/v1/software/wonderbuild/index.json new file mode 100644 index 000000000000..b0589925958b --- /dev/null +++ b/site/public/v1/software/wonderbuild/index.json @@ -0,0 +1,21 @@ +{ + "id": 11235, + "slug": "wonderbuild", + "name": "WonderBuild", + "release_date": null, + "developers": [ + "Alice" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138664954" + ], + "created_at": "2026-07-10T10:12:43.775522", + "updated_at": "2026-07-10T10:12:43.775522", + "url": "/v1/software/wonderbuild" +} diff --git a/site/public/v1/software/wondercheck/index.json b/site/public/v1/software/wondercheck/index.json new file mode 100644 index 000000000000..5b9aa4ccfbfc --- /dev/null +++ b/site/public/v1/software/wondercheck/index.json @@ -0,0 +1,21 @@ +{ + "id": 11236, + "slug": "wondercheck", + "name": "WonderCheck", + "release_date": null, + "developers": [ + "Alice" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138664946" + ], + "created_at": "2026-07-10T10:12:43.776584", + "updated_at": "2026-07-10T10:12:43.776584", + "url": "/v1/software/wondercheck" +} diff --git a/site/public/v1/software/wonderfence/index.json b/site/public/v1/software/wonderfence/index.json new file mode 100644 index 000000000000..db1922eef539 --- /dev/null +++ b/site/public/v1/software/wonderfence/index.json @@ -0,0 +1,21 @@ +{ + "id": 11237, + "slug": "wonderfence", + "name": "WonderFence", + "release_date": null, + "developers": [ + "Alice" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138664976" + ], + "created_at": "2026-07-10T10:12:43.776584", + "updated_at": "2026-07-10T10:12:43.776584", + "url": "/v1/software/wonderfence" +} diff --git a/site/public/v1/software/wondersuite/index.json b/site/public/v1/software/wondersuite/index.json new file mode 100644 index 000000000000..b18a909e42b3 --- /dev/null +++ b/site/public/v1/software/wondersuite/index.json @@ -0,0 +1,21 @@ +{ + "id": 11238, + "slug": "wondersuite", + "name": "WonderSuite", + "release_date": null, + "developers": [ + "Alice" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138664892" + ], + "created_at": "2026-07-10T10:12:43.776584", + "updated_at": "2026-07-10T10:12:43.776584", + "url": "/v1/software/wondersuite" +} diff --git a/site/public/v1/software/woningdossier/index.json b/site/public/v1/software/woningdossier/index.json new file mode 100644 index 000000000000..9087739addea --- /dev/null +++ b/site/public/v1/software/woningdossier/index.json @@ -0,0 +1,19 @@ +{ + "id": 11239, + "slug": "woningdossier", + "name": "Woningdossier", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139493874" + ], + "created_at": "2026-07-10T10:12:43.777587", + "updated_at": "2026-07-10T10:12:43.777587", + "url": "/v1/software/woningdossier" +} diff --git a/site/public/v1/software/wooclap/index.json b/site/public/v1/software/wooclap/index.json new file mode 100644 index 000000000000..217d1316878b --- /dev/null +++ b/site/public/v1/software/wooclap/index.json @@ -0,0 +1,19 @@ +{ + "id": 11240, + "slug": "wooclap", + "name": "Wooclap", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60963681" + ], + "created_at": "2026-07-10T10:12:43.777587", + "updated_at": "2026-07-10T10:12:43.777587", + "url": "/v1/software/wooclap" +} diff --git a/site/public/v1/software/woofz/index.json b/site/public/v1/software/woofz/index.json new file mode 100644 index 000000000000..6e9bc0d8b3f5 --- /dev/null +++ b/site/public/v1/software/woofz/index.json @@ -0,0 +1,19 @@ +{ + "id": 11241, + "slug": "woofz", + "name": "Woofz", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137782586" + ], + "created_at": "2026-07-10T10:12:43.777587", + "updated_at": "2026-07-10T10:12:43.777587", + "url": "/v1/software/woofz" +} diff --git a/site/public/v1/software/woophy/index.json b/site/public/v1/software/woophy/index.json new file mode 100644 index 000000000000..afccaa055408 --- /dev/null +++ b/site/public/v1/software/woophy/index.json @@ -0,0 +1,19 @@ +{ + "id": 11242, + "slug": "woophy", + "name": "Woophy", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q535131" + ], + "created_at": "2026-07-10T10:12:43.778611", + "updated_at": "2026-07-10T10:12:43.778611", + "url": "/v1/software/woophy" +} diff --git a/site/public/v1/software/wopee-io/index.json b/site/public/v1/software/wopee-io/index.json new file mode 100644 index 000000000000..da759215d2f1 --- /dev/null +++ b/site/public/v1/software/wopee-io/index.json @@ -0,0 +1,19 @@ +{ + "id": 11243, + "slug": "wopee-io", + "name": "Wopee.io", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138710880" + ], + "created_at": "2026-07-10T10:12:43.778611", + "updated_at": "2026-07-10T10:12:43.778611", + "url": "/v1/software/wopee-io" +} diff --git a/site/public/v1/software/word-and-phrase/index.json b/site/public/v1/software/word-and-phrase/index.json new file mode 100644 index 000000000000..88e3dc2cde18 --- /dev/null +++ b/site/public/v1/software/word-and-phrase/index.json @@ -0,0 +1,19 @@ +{ + "id": 11244, + "slug": "word-and-phrase", + "name": "Word and Phrase", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084759" + ], + "created_at": "2026-07-10T10:12:43.779606", + "updated_at": "2026-07-10T10:12:43.779606", + "url": "/v1/software/word-and-phrase" +} diff --git a/site/public/v1/software/word-art-makewordart/index.json b/site/public/v1/software/word-art-makewordart/index.json new file mode 100644 index 000000000000..31ae82a6a993 --- /dev/null +++ b/site/public/v1/software/word-art-makewordart/index.json @@ -0,0 +1,19 @@ +{ + "id": 11245, + "slug": "word-art-makewordart", + "name": "Word Art (MakeWordArt)", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084762" + ], + "created_at": "2026-07-10T10:12:43.779606", + "updated_at": "2026-07-10T10:12:43.779606", + "url": "/v1/software/word-art-makewordart" +} diff --git a/site/public/v1/software/word-circuits-connection-muse/index.json b/site/public/v1/software/word-circuits-connection-muse/index.json new file mode 100644 index 000000000000..b795e5235ee6 --- /dev/null +++ b/site/public/v1/software/word-circuits-connection-muse/index.json @@ -0,0 +1,21 @@ +{ + "id": 11246, + "slug": "word-circuits-connection-muse", + "name": "Word Circuits Connection Muse", + "release_date": null, + "developers": [ + "Robert Kendall" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125523446" + ], + "created_at": "2026-07-10T10:12:43.779606", + "updated_at": "2026-07-10T10:12:43.779606", + "url": "/v1/software/word-circuits-connection-muse" +} diff --git a/site/public/v1/software/word-for-ios/index.json b/site/public/v1/software/word-for-ios/index.json new file mode 100644 index 000000000000..5b6cb8b68fc6 --- /dev/null +++ b/site/public/v1/software/word-for-ios/index.json @@ -0,0 +1,19 @@ +{ + "id": 11247, + "slug": "word-for-ios", + "name": "Word for iOS", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q66466883" + ], + "created_at": "2026-07-10T10:12:43.779606", + "updated_at": "2026-07-10T10:12:43.779606", + "url": "/v1/software/word-for-ios" +} diff --git a/site/public/v1/software/word-lens/index.json b/site/public/v1/software/word-lens/index.json new file mode 100644 index 000000000000..26159596ff40 --- /dev/null +++ b/site/public/v1/software/word-lens/index.json @@ -0,0 +1,23 @@ +{ + "id": 11248, + "slug": "word-lens", + "name": "Word Lens", + "release_date": null, + "developers": [ + "Quest Visual" + ], + "publishers": [], + "operating_systems": [ + "iOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8034296" + ], + "created_at": "2026-07-10T10:12:43.780585", + "updated_at": "2026-07-10T10:12:43.780585", + "url": "/v1/software/word-lens" +} diff --git a/site/public/v1/software/word-processor-program/index.json b/site/public/v1/software/word-processor-program/index.json new file mode 100644 index 000000000000..5e42a21986b7 --- /dev/null +++ b/site/public/v1/software/word-processor-program/index.json @@ -0,0 +1,19 @@ +{ + "id": 11249, + "slug": "word-processor-program", + "name": "word processor program", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q55637909" + ], + "created_at": "2026-07-10T10:12:43.780585", + "updated_at": "2026-07-10T10:12:43.780585", + "url": "/v1/software/word-processor-program" +} diff --git a/site/public/v1/software/word-tree/index.json b/site/public/v1/software/word-tree/index.json new file mode 100644 index 000000000000..9eaeb98cacdb --- /dev/null +++ b/site/public/v1/software/word-tree/index.json @@ -0,0 +1,19 @@ +{ + "id": 11250, + "slug": "word-tree", + "name": "word tree", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084770" + ], + "created_at": "2026-07-10T10:12:43.780585", + "updated_at": "2026-07-10T10:12:43.780585", + "url": "/v1/software/word-tree" +} diff --git a/site/public/v1/software/wordcruncher/index.json b/site/public/v1/software/wordcruncher/index.json new file mode 100644 index 000000000000..941162852c56 --- /dev/null +++ b/site/public/v1/software/wordcruncher/index.json @@ -0,0 +1,19 @@ +{ + "id": 11251, + "slug": "wordcruncher", + "name": "WordCruncher", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084763" + ], + "created_at": "2026-07-10T10:12:43.781593", + "updated_at": "2026-07-10T10:12:43.781593", + "url": "/v1/software/wordcruncher" +} diff --git a/site/public/v1/software/wordfast/index.json b/site/public/v1/software/wordfast/index.json new file mode 100644 index 000000000000..d4cc7633878f --- /dev/null +++ b/site/public/v1/software/wordfast/index.json @@ -0,0 +1,21 @@ +{ + "id": 11252, + "slug": "wordfast", + "name": "Wordfast", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Java" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q223619" + ], + "created_at": "2026-07-10T10:12:43.781593", + "updated_at": "2026-07-10T10:12:43.781593", + "url": "/v1/software/wordfast" +} diff --git a/site/public/v1/software/wordfreak/index.json b/site/public/v1/software/wordfreak/index.json new file mode 100644 index 000000000000..5a9975f3d16c --- /dev/null +++ b/site/public/v1/software/wordfreak/index.json @@ -0,0 +1,23 @@ +{ + "id": 11253, + "slug": "wordfreak", + "name": "WordFreak", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Java" + ], + "licenses": [ + "Mozilla Public License, version 1.1" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084764" + ], + "created_at": "2026-07-10T10:12:43.781593", + "updated_at": "2026-07-10T10:12:43.781593", + "url": "/v1/software/wordfreak" +} diff --git a/site/public/v1/software/wordhoard/index.json b/site/public/v1/software/wordhoard/index.json new file mode 100644 index 000000000000..bccb79348b9b --- /dev/null +++ b/site/public/v1/software/wordhoard/index.json @@ -0,0 +1,19 @@ +{ + "id": 11254, + "slug": "wordhoard", + "name": "WordHoard", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084765" + ], + "created_at": "2026-07-10T10:12:43.782574", + "updated_at": "2026-07-10T10:12:43.782574", + "url": "/v1/software/wordhoard" +} diff --git a/site/public/v1/software/wordhub/index.json b/site/public/v1/software/wordhub/index.json new file mode 100644 index 000000000000..7567c37dfb56 --- /dev/null +++ b/site/public/v1/software/wordhub/index.json @@ -0,0 +1,27 @@ +{ + "id": 11255, + "slug": "wordhub", + "name": "WordHub", + "release_date": null, + "developers": [ + "Perry Lei" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "TypeScript" + ], + "licenses": [ + "freeware" + ], + "genres": [ + "e-learning" + ], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138766498" + ], + "created_at": "2026-07-10T10:12:43.782574", + "updated_at": "2026-07-10T10:12:43.782574", + "url": "/v1/software/wordhub" +} diff --git a/site/public/v1/software/wordij/index.json b/site/public/v1/software/wordij/index.json new file mode 100644 index 000000000000..836610535aac --- /dev/null +++ b/site/public/v1/software/wordij/index.json @@ -0,0 +1,19 @@ +{ + "id": 11256, + "slug": "wordij", + "name": "WORDij", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084766" + ], + "created_at": "2026-07-10T10:12:43.782574", + "updated_at": "2026-07-10T10:12:43.782574", + "url": "/v1/software/wordij" +} diff --git a/site/public/v1/software/wordle/index.json b/site/public/v1/software/wordle/index.json new file mode 100644 index 000000000000..118e30298bac --- /dev/null +++ b/site/public/v1/software/wordle/index.json @@ -0,0 +1,19 @@ +{ + "id": 11257, + "slug": "wordle", + "name": "Wordle", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084767" + ], + "created_at": "2026-07-10T10:12:43.783583", + "updated_at": "2026-07-10T10:12:43.783583", + "url": "/v1/software/wordle" +} diff --git a/site/public/v1/software/wordnetloom/index.json b/site/public/v1/software/wordnetloom/index.json new file mode 100644 index 000000000000..e3ef2ef7e536 --- /dev/null +++ b/site/public/v1/software/wordnetloom/index.json @@ -0,0 +1,19 @@ +{ + "id": 11258, + "slug": "wordnetloom", + "name": "WordNetLoom", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q65944268" + ], + "created_at": "2026-07-10T10:12:43.783583", + "updated_at": "2026-07-10T10:12:43.783583", + "url": "/v1/software/wordnetloom" +} diff --git a/site/public/v1/software/wordq-speakq/index.json b/site/public/v1/software/wordq-speakq/index.json new file mode 100644 index 000000000000..a39163855b23 --- /dev/null +++ b/site/public/v1/software/wordq-speakq/index.json @@ -0,0 +1,21 @@ +{ + "id": 11259, + "slug": "wordq-speakq", + "name": "WordQ+SpeakQ", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8034276" + ], + "created_at": "2026-07-10T10:12:43.783583", + "updated_at": "2026-07-10T10:12:43.783583", + "url": "/v1/software/wordq-speakq" +} diff --git a/site/public/v1/software/words/index.json b/site/public/v1/software/words/index.json new file mode 100644 index 000000000000..4f64b79eaf2d --- /dev/null +++ b/site/public/v1/software/words/index.json @@ -0,0 +1,19 @@ +{ + "id": 11260, + "slug": "words", + "name": "WORDS", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087772" + ], + "created_at": "2026-07-10T10:12:43.783583", + "updated_at": "2026-07-10T10:12:43.783583", + "url": "/v1/software/words" +} diff --git a/site/public/v1/software/wordseer/index.json b/site/public/v1/software/wordseer/index.json new file mode 100644 index 000000000000..ef8ed6d02d26 --- /dev/null +++ b/site/public/v1/software/wordseer/index.json @@ -0,0 +1,19 @@ +{ + "id": 11261, + "slug": "wordseer", + "name": "WordSeer", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084768" + ], + "created_at": "2026-07-10T10:12:43.784609", + "updated_at": "2026-07-10T10:12:43.784609", + "url": "/v1/software/wordseer" +} diff --git a/site/public/v1/software/wordsimilarity-word-2-word/index.json b/site/public/v1/software/wordsimilarity-word-2-word/index.json new file mode 100644 index 000000000000..ca6ed4015afa --- /dev/null +++ b/site/public/v1/software/wordsimilarity-word-2-word/index.json @@ -0,0 +1,19 @@ +{ + "id": 11262, + "slug": "wordsimilarity-word-2-word", + "name": "wordsimilarity (Word 2 Word)", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084769" + ], + "created_at": "2026-07-10T10:12:43.784609", + "updated_at": "2026-07-10T10:12:43.784609", + "url": "/v1/software/wordsimilarity-word-2-word" +} diff --git a/site/public/v1/software/wordstar-for-ms-dos/index.json b/site/public/v1/software/wordstar-for-ms-dos/index.json new file mode 100644 index 000000000000..b833af6d9d00 --- /dev/null +++ b/site/public/v1/software/wordstar-for-ms-dos/index.json @@ -0,0 +1,23 @@ +{ + "id": 11263, + "slug": "wordstar-for-ms-dos", + "name": "WordStar for MS-DOS", + "release_date": null, + "developers": [ + "MicroPro International" + ], + "publishers": [], + "operating_systems": [ + "DOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q48694565" + ], + "created_at": "2026-07-10T10:12:43.784609", + "updated_at": "2026-07-10T10:12:43.784609", + "url": "/v1/software/wordstar-for-ms-dos" +} diff --git a/site/public/v1/software/wordstat/index.json b/site/public/v1/software/wordstat/index.json new file mode 100644 index 000000000000..de08e2d69e2b --- /dev/null +++ b/site/public/v1/software/wordstat/index.json @@ -0,0 +1,19 @@ +{ + "id": 11264, + "slug": "wordstat", + "name": "WordStat", + "release_date": "1998-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3569884" + ], + "created_at": "2026-07-10T10:12:43.785624", + "updated_at": "2026-07-10T10:12:43.785624", + "url": "/v1/software/wordstat" +} diff --git a/site/public/v1/software/wordtrans/index.json b/site/public/v1/software/wordtrans/index.json new file mode 100644 index 000000000000..0eab5ff12971 --- /dev/null +++ b/site/public/v1/software/wordtrans/index.json @@ -0,0 +1,19 @@ +{ + "id": 11265, + "slug": "wordtrans", + "name": "Wordtrans", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8034498" + ], + "created_at": "2026-07-10T10:12:43.785624", + "updated_at": "2026-07-10T10:12:43.785624", + "url": "/v1/software/wordtrans" +} diff --git a/site/public/v1/software/wordtune/index.json b/site/public/v1/software/wordtune/index.json new file mode 100644 index 000000000000..caf3e4fef4e3 --- /dev/null +++ b/site/public/v1/software/wordtune/index.json @@ -0,0 +1,21 @@ +{ + "id": 11266, + "slug": "wordtune", + "name": "Wordtune", + "release_date": null, + "developers": [ + "AI21 Labs" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117706017" + ], + "created_at": "2026-07-10T10:12:43.785624", + "updated_at": "2026-07-10T10:12:43.785624", + "url": "/v1/software/wordtune" +} diff --git a/site/public/v1/software/wordwanderer/index.json b/site/public/v1/software/wordwanderer/index.json new file mode 100644 index 000000000000..d4bb0048d03b --- /dev/null +++ b/site/public/v1/software/wordwanderer/index.json @@ -0,0 +1,19 @@ +{ + "id": 11267, + "slug": "wordwanderer", + "name": "WordWanderer", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084771" + ], + "created_at": "2026-07-10T10:12:43.786628", + "updated_at": "2026-07-10T10:12:43.786628", + "url": "/v1/software/wordwanderer" +} diff --git a/site/public/v1/software/wordweb/index.json b/site/public/v1/software/wordweb/index.json new file mode 100644 index 000000000000..9ad11cfa4ff8 --- /dev/null +++ b/site/public/v1/software/wordweb/index.json @@ -0,0 +1,19 @@ +{ + "id": 11268, + "slug": "wordweb", + "name": "WordWeb", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3595666" + ], + "created_at": "2026-07-10T10:12:43.786628", + "updated_at": "2026-07-10T10:12:43.786628", + "url": "/v1/software/wordweb" +} diff --git a/site/public/v1/software/wordwise/index.json b/site/public/v1/software/wordwise/index.json new file mode 100644 index 000000000000..4f9d44c7c977 --- /dev/null +++ b/site/public/v1/software/wordwise/index.json @@ -0,0 +1,19 @@ +{ + "id": 11269, + "slug": "wordwise", + "name": "WordWise", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8034282" + ], + "created_at": "2026-07-10T10:12:43.787609", + "updated_at": "2026-07-10T10:12:43.787609", + "url": "/v1/software/wordwise" +} diff --git a/site/public/v1/software/worhp/index.json b/site/public/v1/software/worhp/index.json new file mode 100644 index 000000000000..5b3b0d6d667c --- /dev/null +++ b/site/public/v1/software/worhp/index.json @@ -0,0 +1,23 @@ +{ + "id": 11270, + "slug": "worhp", + "name": "WORHP", + "release_date": null, + "developers": [ + "European Space Agency" + ], + "publishers": [], + "operating_systems": [ + "Unix-like operating system" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7953961" + ], + "created_at": "2026-07-10T10:12:43.787609", + "updated_at": "2026-07-10T10:12:43.787609", + "url": "/v1/software/worhp" +} diff --git a/site/public/v1/software/workflowgen/index.json b/site/public/v1/software/workflowgen/index.json new file mode 100644 index 000000000000..a6884b6b2584 --- /dev/null +++ b/site/public/v1/software/workflowgen/index.json @@ -0,0 +1,19 @@ +{ + "id": 11271, + "slug": "workflowgen", + "name": "WorkflowGen", + "release_date": "2003-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25110510" + ], + "created_at": "2026-07-10T10:12:43.787609", + "updated_at": "2026-07-10T10:12:43.787609", + "url": "/v1/software/workflowgen" +} diff --git a/site/public/v1/software/workforce-kye/index.json b/site/public/v1/software/workforce-kye/index.json new file mode 100644 index 000000000000..94dc6b03a903 --- /dev/null +++ b/site/public/v1/software/workforce-kye/index.json @@ -0,0 +1,21 @@ +{ + "id": 11272, + "slug": "workforce-kye", + "name": "Workforce (KYE)", + "release_date": null, + "developers": [ + "Incode" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138859545" + ], + "created_at": "2026-07-10T10:12:43.787609", + "updated_at": "2026-07-10T10:12:43.788522", + "url": "/v1/software/workforce-kye" +} diff --git a/site/public/v1/software/workgroup-manager/index.json b/site/public/v1/software/workgroup-manager/index.json new file mode 100644 index 000000000000..1cb76c5164db --- /dev/null +++ b/site/public/v1/software/workgroup-manager/index.json @@ -0,0 +1,21 @@ +{ + "id": 11273, + "slug": "workgroup-manager", + "name": "Workgroup Manager", + "release_date": null, + "developers": [ + "Apple Inc." + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4020840" + ], + "created_at": "2026-07-10T10:12:43.788522", + "updated_at": "2026-07-10T10:12:43.788522", + "url": "/v1/software/workgroup-manager" +} diff --git a/site/public/v1/software/working-model/index.json b/site/public/v1/software/working-model/index.json new file mode 100644 index 000000000000..0527b2dbbbf8 --- /dev/null +++ b/site/public/v1/software/working-model/index.json @@ -0,0 +1,19 @@ +{ + "id": 11274, + "slug": "working-model", + "name": "Working Model", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8034938" + ], + "created_at": "2026-07-10T10:12:43.788522", + "updated_at": "2026-07-10T10:12:43.788522", + "url": "/v1/software/working-model" +} diff --git a/site/public/v1/software/workouts/index.json b/site/public/v1/software/workouts/index.json new file mode 100644 index 000000000000..3e7f0fa0d188 --- /dev/null +++ b/site/public/v1/software/workouts/index.json @@ -0,0 +1,19 @@ +{ + "id": 11275, + "slug": "workouts", + "name": "Workouts", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123058681" + ], + "created_at": "2026-07-10T10:12:43.789519", + "updated_at": "2026-07-10T10:12:43.789519", + "url": "/v1/software/workouts" +} diff --git a/site/public/v1/software/workplace-from-meta/index.json b/site/public/v1/software/workplace-from-meta/index.json new file mode 100644 index 000000000000..b49fa4a2965e --- /dev/null +++ b/site/public/v1/software/workplace-from-meta/index.json @@ -0,0 +1,19 @@ +{ + "id": 11276, + "slug": "workplace-from-meta", + "name": "Workplace from Meta", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28135300" + ], + "created_at": "2026-07-10T10:12:43.789519", + "updated_at": "2026-07-10T10:12:43.789519", + "url": "/v1/software/workplace-from-meta" +} diff --git a/site/public/v1/software/workplan/index.json b/site/public/v1/software/workplan/index.json new file mode 100644 index 000000000000..21bff5b7b0f8 --- /dev/null +++ b/site/public/v1/software/workplan/index.json @@ -0,0 +1,25 @@ +{ + "id": 11277, + "slug": "workplan", + "name": "WorkPLAN", + "release_date": null, + "developers": [ + "Sescoi" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [ + "Delphi" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q666032" + ], + "created_at": "2026-07-10T10:12:43.789519", + "updated_at": "2026-07-10T10:12:43.789519", + "url": "/v1/software/workplan" +} diff --git a/site/public/v1/software/world-programming-system/index.json b/site/public/v1/software/world-programming-system/index.json new file mode 100644 index 000000000000..0865963366a8 --- /dev/null +++ b/site/public/v1/software/world-programming-system/index.json @@ -0,0 +1,21 @@ +{ + "id": 11278, + "slug": "world-programming-system", + "name": "World Programming System", + "release_date": null, + "developers": [ + "World Programming" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2843737" + ], + "created_at": "2026-07-10T10:12:43.789519", + "updated_at": "2026-07-10T10:12:43.789519", + "url": "/v1/software/world-programming-system" +} diff --git a/site/public/v1/software/worldmap/index.json b/site/public/v1/software/worldmap/index.json new file mode 100644 index 000000000000..0ed9ed12dabc --- /dev/null +++ b/site/public/v1/software/worldmap/index.json @@ -0,0 +1,19 @@ +{ + "id": 11279, + "slug": "worldmap", + "name": "WorldMap", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8035300" + ], + "created_at": "2026-07-10T10:12:43.790520", + "updated_at": "2026-07-10T10:12:43.790520", + "url": "/v1/software/worldmap" +} diff --git a/site/public/v1/software/worlds-chat/index.json b/site/public/v1/software/worlds-chat/index.json new file mode 100644 index 000000000000..20bc2a16bda8 --- /dev/null +++ b/site/public/v1/software/worlds-chat/index.json @@ -0,0 +1,19 @@ +{ + "id": 11280, + "slug": "worlds-chat", + "name": "Worlds chat", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8036737" + ], + "created_at": "2026-07-10T10:12:43.790520", + "updated_at": "2026-07-10T10:12:43.790520", + "url": "/v1/software/worlds-chat" +} diff --git a/site/public/v1/software/worldsaway/index.json b/site/public/v1/software/worldsaway/index.json new file mode 100644 index 000000000000..42a8e86c21b7 --- /dev/null +++ b/site/public/v1/software/worldsaway/index.json @@ -0,0 +1,24 @@ +{ + "id": 11281, + "slug": "worldsaway", + "name": "WorldsAway", + "release_date": "1995-09-01", + "developers": [ + "Fujitsu" + ], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8036711" + ], + "created_at": "2026-07-10T10:12:43.790520", + "updated_at": "2026-07-10T10:12:43.790520", + "url": "/v1/software/worldsaway" +} diff --git a/site/public/v1/software/worldscript/index.json b/site/public/v1/software/worldscript/index.json new file mode 100644 index 000000000000..5443abdf4dd1 --- /dev/null +++ b/site/public/v1/software/worldscript/index.json @@ -0,0 +1,19 @@ +{ + "id": 11282, + "slug": "worldscript", + "name": "WorldScript", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1115327" + ], + "created_at": "2026-07-10T10:12:43.791581", + "updated_at": "2026-07-10T10:12:43.791581", + "url": "/v1/software/worldscript" +} diff --git a/site/public/v1/software/worldwide-boxing-manager/index.json b/site/public/v1/software/worldwide-boxing-manager/index.json new file mode 100644 index 000000000000..ddddbd53a108 --- /dev/null +++ b/site/public/v1/software/worldwide-boxing-manager/index.json @@ -0,0 +1,19 @@ +{ + "id": 11283, + "slug": "worldwide-boxing-manager", + "name": "Worldwide Boxing Manager", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140448147" + ], + "created_at": "2026-07-10T10:12:43.791581", + "updated_at": "2026-07-10T10:12:43.791581", + "url": "/v1/software/worldwide-boxing-manager" +} diff --git a/site/public/v1/software/worldwide-telescope/index.json b/site/public/v1/software/worldwide-telescope/index.json new file mode 100644 index 000000000000..9417df5405c6 --- /dev/null +++ b/site/public/v1/software/worldwide-telescope/index.json @@ -0,0 +1,25 @@ +{ + "id": 11284, + "slug": "worldwide-telescope", + "name": "WorldWide Telescope", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1788938" + ], + "created_at": "2026-07-10T10:12:43.791581", + "updated_at": "2026-07-10T10:12:43.791581", + "url": "/v1/software/worldwide-telescope" +} diff --git a/site/public/v1/software/wot-services/index.json b/site/public/v1/software/wot-services/index.json new file mode 100644 index 000000000000..6ee601bb8712 --- /dev/null +++ b/site/public/v1/software/wot-services/index.json @@ -0,0 +1,19 @@ +{ + "id": 11285, + "slug": "wot-services", + "name": "WOT Services", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1391304" + ], + "created_at": "2026-07-10T10:12:43.791581", + "updated_at": "2026-07-10T10:12:43.791581", + "url": "/v1/software/wot-services" +} diff --git a/site/public/v1/software/wound-care-simulation/index.json b/site/public/v1/software/wound-care-simulation/index.json new file mode 100644 index 000000000000..7723484f5964 --- /dev/null +++ b/site/public/v1/software/wound-care-simulation/index.json @@ -0,0 +1,19 @@ +{ + "id": 11286, + "slug": "wound-care-simulation", + "name": "Wound Care Simulation", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115343108" + ], + "created_at": "2026-07-10T10:12:43.792587", + "updated_at": "2026-07-10T10:12:43.792587", + "url": "/v1/software/wound-care-simulation" +} diff --git a/site/public/v1/software/wow64/index.json b/site/public/v1/software/wow64/index.json new file mode 100644 index 000000000000..1ae9c050163c --- /dev/null +++ b/site/public/v1/software/wow64/index.json @@ -0,0 +1,19 @@ +{ + "id": 11287, + "slug": "wow64", + "name": "WoW64", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q431013" + ], + "created_at": "2026-07-10T10:12:43.792587", + "updated_at": "2026-07-10T10:12:43.792587", + "url": "/v1/software/wow64" +} diff --git a/site/public/v1/software/wowza-streaming-engine/index.json b/site/public/v1/software/wowza-streaming-engine/index.json new file mode 100644 index 000000000000..9a234944ca65 --- /dev/null +++ b/site/public/v1/software/wowza-streaming-engine/index.json @@ -0,0 +1,19 @@ +{ + "id": 11288, + "slug": "wowza-streaming-engine", + "name": "Wowza Streaming Engine", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4053257" + ], + "created_at": "2026-07-10T10:12:43.793600", + "updated_at": "2026-07-10T10:12:43.793600", + "url": "/v1/software/wowza-streaming-engine" +} diff --git a/site/public/v1/software/wp-engine/index.json b/site/public/v1/software/wp-engine/index.json new file mode 100644 index 000000000000..df8f4c82c176 --- /dev/null +++ b/site/public/v1/software/wp-engine/index.json @@ -0,0 +1,19 @@ +{ + "id": 11289, + "slug": "wp-engine", + "name": "WP Engine", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q19903819" + ], + "created_at": "2026-07-10T10:12:43.793600", + "updated_at": "2026-07-10T10:12:43.793600", + "url": "/v1/software/wp-engine" +} diff --git a/site/public/v1/software/wpforms/index.json b/site/public/v1/software/wpforms/index.json new file mode 100644 index 000000000000..0c827423511c --- /dev/null +++ b/site/public/v1/software/wpforms/index.json @@ -0,0 +1,19 @@ +{ + "id": 11290, + "slug": "wpforms", + "name": "WPForms", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113046196" + ], + "created_at": "2026-07-10T10:12:43.793600", + "updated_at": "2026-07-10T10:12:43.793600", + "url": "/v1/software/wpforms" +} diff --git a/site/public/v1/software/wprime/index.json b/site/public/v1/software/wprime/index.json new file mode 100644 index 000000000000..b5d6d26f5d8b --- /dev/null +++ b/site/public/v1/software/wprime/index.json @@ -0,0 +1,19 @@ +{ + "id": 11291, + "slug": "wprime", + "name": "WPrime", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25345913" + ], + "created_at": "2026-07-10T10:12:43.794577", + "updated_at": "2026-07-10T10:12:43.794577", + "url": "/v1/software/wprime" +} diff --git a/site/public/v1/software/wps-word-processor/index.json b/site/public/v1/software/wps-word-processor/index.json new file mode 100644 index 000000000000..2e5cae1ee0f1 --- /dev/null +++ b/site/public/v1/software/wps-word-processor/index.json @@ -0,0 +1,21 @@ +{ + "id": 11292, + "slug": "wps-word-processor", + "name": "WPS Word Processor", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "assembly language" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q19854637" + ], + "created_at": "2026-07-10T10:12:43.794577", + "updated_at": "2026-07-10T10:12:43.794577", + "url": "/v1/software/wps-word-processor" +} diff --git a/site/public/v1/software/wput/index.json b/site/public/v1/software/wput/index.json new file mode 100644 index 000000000000..52b9dcde57b9 --- /dev/null +++ b/site/public/v1/software/wput/index.json @@ -0,0 +1,19 @@ +{ + "id": 11293, + "slug": "wput", + "name": "wput", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110473722" + ], + "created_at": "2026-07-10T10:12:43.794577", + "updated_at": "2026-07-10T10:12:43.794577", + "url": "/v1/software/wput" +} diff --git a/site/public/v1/software/wrangler/index.json b/site/public/v1/software/wrangler/index.json new file mode 100644 index 000000000000..851f3b47d77d --- /dev/null +++ b/site/public/v1/software/wrangler/index.json @@ -0,0 +1,26 @@ +{ + "id": 11294, + "slug": "wrangler", + "name": "Wrangler", + "release_date": null, + "developers": [ + "Cloudflare" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "TypeScript" + ], + "licenses": [ + "Apache Software License 2.0", + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q118225561" + ], + "created_at": "2026-07-10T10:12:43.794577", + "updated_at": "2026-07-10T10:12:43.794577", + "url": "/v1/software/wrangler" +} diff --git a/site/public/v1/software/write/index.json b/site/public/v1/software/write/index.json new file mode 100644 index 000000000000..a921b0115843 --- /dev/null +++ b/site/public/v1/software/write/index.json @@ -0,0 +1,19 @@ +{ + "id": 11295, + "slug": "write", + "name": "Write!", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q55263587" + ], + "created_at": "2026-07-10T10:12:43.795582", + "updated_at": "2026-07-10T10:12:43.795582", + "url": "/v1/software/write" +} diff --git a/site/public/v1/software/writeboard/index.json b/site/public/v1/software/writeboard/index.json new file mode 100644 index 000000000000..b2a2010e7ac3 --- /dev/null +++ b/site/public/v1/software/writeboard/index.json @@ -0,0 +1,19 @@ +{ + "id": 11296, + "slug": "writeboard", + "name": "Writeboard", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084772" + ], + "created_at": "2026-07-10T10:12:43.795582", + "updated_at": "2026-07-10T10:12:43.795582", + "url": "/v1/software/writeboard" +} diff --git a/site/public/v1/software/writefull/index.json b/site/public/v1/software/writefull/index.json new file mode 100644 index 000000000000..9ed2f0709ebe --- /dev/null +++ b/site/public/v1/software/writefull/index.json @@ -0,0 +1,19 @@ +{ + "id": 11297, + "slug": "writefull", + "name": "Writefull", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q59771338" + ], + "created_at": "2026-07-10T10:12:43.795582", + "updated_at": "2026-07-10T10:12:43.795582", + "url": "/v1/software/writefull" +} diff --git a/site/public/v1/software/writeonline/index.json b/site/public/v1/software/writeonline/index.json new file mode 100644 index 000000000000..4b37c65f536f --- /dev/null +++ b/site/public/v1/software/writeonline/index.json @@ -0,0 +1,24 @@ +{ + "id": 11298, + "slug": "writeonline", + "name": "WriteOnline", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [ + "Java" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8038393" + ], + "created_at": "2026-07-10T10:12:43.796584", + "updated_at": "2026-07-10T10:12:43.796584", + "url": "/v1/software/writeonline" +} diff --git a/site/public/v1/software/writeroom/index.json b/site/public/v1/software/writeroom/index.json new file mode 100644 index 000000000000..c695dded3fa3 --- /dev/null +++ b/site/public/v1/software/writeroom/index.json @@ -0,0 +1,19 @@ +{ + "id": 11299, + "slug": "writeroom", + "name": "WriteRoom", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084773" + ], + "created_at": "2026-07-10T10:12:43.796584", + "updated_at": "2026-07-10T10:12:43.796584", + "url": "/v1/software/writeroom" +} diff --git a/site/public/v1/software/wrpn-calculator/index.json b/site/public/v1/software/wrpn-calculator/index.json new file mode 100644 index 000000000000..3cce94999788 --- /dev/null +++ b/site/public/v1/software/wrpn-calculator/index.json @@ -0,0 +1,19 @@ +{ + "id": 11300, + "slug": "wrpn-calculator", + "name": "WRPN Calculator", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130249890" + ], + "created_at": "2026-07-10T10:12:43.796584", + "updated_at": "2026-07-10T10:12:43.796584", + "url": "/v1/software/wrpn-calculator" +} diff --git a/site/public/v1/software/wry/index.json b/site/public/v1/software/wry/index.json new file mode 100644 index 000000000000..462f4c05d47e --- /dev/null +++ b/site/public/v1/software/wry/index.json @@ -0,0 +1,22 @@ +{ + "id": 11301, + "slug": "wry", + "name": "wry", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Apache Software License 2.0", + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120122277" + ], + "created_at": "2026-07-10T10:12:43.797637", + "updated_at": "2026-07-10T10:12:43.797637", + "url": "/v1/software/wry" +} diff --git a/site/public/v1/software/ws4py/index.json b/site/public/v1/software/ws4py/index.json new file mode 100644 index 000000000000..187f9c6d2ad7 --- /dev/null +++ b/site/public/v1/software/ws4py/index.json @@ -0,0 +1,21 @@ +{ + "id": 11302, + "slug": "ws4py", + "name": "ws4py", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "3-clause BSD License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975570" + ], + "created_at": "2026-07-10T10:12:43.797637", + "updated_at": "2026-07-10T10:12:43.797637", + "url": "/v1/software/ws4py" +} diff --git a/site/public/v1/software/wstool/index.json b/site/public/v1/software/wstool/index.json new file mode 100644 index 000000000000..7501c78cd4f4 --- /dev/null +++ b/site/public/v1/software/wstool/index.json @@ -0,0 +1,19 @@ +{ + "id": 11303, + "slug": "wstool", + "name": "wstool", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975571" + ], + "created_at": "2026-07-10T10:12:43.797637", + "updated_at": "2026-07-10T10:12:43.797637", + "url": "/v1/software/wstool" +} diff --git a/site/public/v1/software/wsus-offline-update/index.json b/site/public/v1/software/wsus-offline-update/index.json new file mode 100644 index 000000000000..ec1b8cd0878f --- /dev/null +++ b/site/public/v1/software/wsus-offline-update/index.json @@ -0,0 +1,19 @@ +{ + "id": 11304, + "slug": "wsus-offline-update", + "name": "WSUS Offline Update", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18413767" + ], + "created_at": "2026-07-10T10:12:43.798604", + "updated_at": "2026-07-10T10:12:43.798604", + "url": "/v1/software/wsus-offline-update" +} diff --git a/site/public/v1/software/wterm/index.json b/site/public/v1/software/wterm/index.json new file mode 100644 index 000000000000..28585d30d5a6 --- /dev/null +++ b/site/public/v1/software/wterm/index.json @@ -0,0 +1,19 @@ +{ + "id": 11305, + "slug": "wterm", + "name": "Wterm", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8038848" + ], + "created_at": "2026-07-10T10:12:43.798604", + "updated_at": "2026-07-10T10:12:43.798604", + "url": "/v1/software/wterm" +} diff --git a/site/public/v1/software/wtp-ejb-tools/index.json b/site/public/v1/software/wtp-ejb-tools/index.json new file mode 100644 index 000000000000..e6c8f7a73c0f --- /dev/null +++ b/site/public/v1/software/wtp-ejb-tools/index.json @@ -0,0 +1,19 @@ +{ + "id": 11306, + "slug": "wtp-ejb-tools", + "name": "WTP EJB Tools", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76178591" + ], + "created_at": "2026-07-10T10:12:43.798604", + "updated_at": "2026-07-10T10:12:43.798604", + "url": "/v1/software/wtp-ejb-tools" +} diff --git a/site/public/v1/software/wtp-incubator/index.json b/site/public/v1/software/wtp-incubator/index.json new file mode 100644 index 000000000000..ba3415610828 --- /dev/null +++ b/site/public/v1/software/wtp-incubator/index.json @@ -0,0 +1,19 @@ +{ + "id": 11307, + "slug": "wtp-incubator", + "name": "WTP Incubator", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76178978" + ], + "created_at": "2026-07-10T10:12:43.799581", + "updated_at": "2026-07-10T10:12:43.799581", + "url": "/v1/software/wtp-incubator" +} diff --git a/site/public/v1/software/wtp-java-ee-tools/index.json b/site/public/v1/software/wtp-java-ee-tools/index.json new file mode 100644 index 000000000000..5c9874398172 --- /dev/null +++ b/site/public/v1/software/wtp-java-ee-tools/index.json @@ -0,0 +1,19 @@ +{ + "id": 11308, + "slug": "wtp-java-ee-tools", + "name": "WTP Java EE Tools", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76178993" + ], + "created_at": "2026-07-10T10:12:43.799581", + "updated_at": "2026-07-10T10:12:43.799581", + "url": "/v1/software/wtp-java-ee-tools" +} diff --git a/site/public/v1/software/wtw/index.json b/site/public/v1/software/wtw/index.json new file mode 100644 index 000000000000..b031ed2e8a89 --- /dev/null +++ b/site/public/v1/software/wtw/index.json @@ -0,0 +1,21 @@ +{ + "id": 11309, + "slug": "wtw", + "name": "WTW", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q9369434" + ], + "created_at": "2026-07-10T10:12:43.799581", + "updated_at": "2026-07-10T10:12:43.799581", + "url": "/v1/software/wtw" +} diff --git a/site/public/v1/software/wu-dao/index.json b/site/public/v1/software/wu-dao/index.json new file mode 100644 index 000000000000..cb097f280b02 --- /dev/null +++ b/site/public/v1/software/wu-dao/index.json @@ -0,0 +1,21 @@ +{ + "id": 11310, + "slug": "wu-dao", + "name": "Wu Dao", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q108570419" + ], + "created_at": "2026-07-10T10:12:43.800608", + "updated_at": "2026-07-10T10:12:43.800608", + "url": "/v1/software/wu-dao" +} diff --git a/site/public/v1/software/wufoo/index.json b/site/public/v1/software/wufoo/index.json new file mode 100644 index 000000000000..a7de55a9625a --- /dev/null +++ b/site/public/v1/software/wufoo/index.json @@ -0,0 +1,19 @@ +{ + "id": 11311, + "slug": "wufoo", + "name": "Wufoo", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084774" + ], + "created_at": "2026-07-10T10:12:43.800608", + "updated_at": "2026-07-10T10:12:43.800608", + "url": "/v1/software/wufoo" +} diff --git a/site/public/v1/software/wuhu/index.json b/site/public/v1/software/wuhu/index.json new file mode 100644 index 000000000000..f17479fbb244 --- /dev/null +++ b/site/public/v1/software/wuhu/index.json @@ -0,0 +1,21 @@ +{ + "id": 11312, + "slug": "wuhu", + "name": "WUHU", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7956596" + ], + "created_at": "2026-07-10T10:12:43.800608", + "updated_at": "2026-07-10T10:12:43.800608", + "url": "/v1/software/wuhu" +} diff --git a/site/public/v1/software/wwiv/index.json b/site/public/v1/software/wwiv/index.json new file mode 100644 index 000000000000..88e118d38aae --- /dev/null +++ b/site/public/v1/software/wwiv/index.json @@ -0,0 +1,23 @@ +{ + "id": 11313, + "slug": "wwiv", + "name": "WWIV", + "release_date": null, + "developers": [ + "Wayne Bell" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Apache Software License 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7957315" + ], + "created_at": "2026-07-10T10:12:43.801584", + "updated_at": "2026-07-10T10:12:43.801584", + "url": "/v1/software/wwiv" +} diff --git a/site/public/v1/software/wxp/index.json b/site/public/v1/software/wxp/index.json new file mode 100644 index 000000000000..882d48a45060 --- /dev/null +++ b/site/public/v1/software/wxp/index.json @@ -0,0 +1,19 @@ +{ + "id": 11314, + "slug": "wxp", + "name": "WXP", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q7957822" + ], + "created_at": "2026-07-10T10:12:43.801584", + "updated_at": "2026-07-10T10:12:43.801584", + "url": "/v1/software/wxp" +} diff --git a/site/public/v1/software/wyberai/index.json b/site/public/v1/software/wyberai/index.json new file mode 100644 index 000000000000..7692acbd4825 --- /dev/null +++ b/site/public/v1/software/wyberai/index.json @@ -0,0 +1,19 @@ +{ + "id": 11315, + "slug": "wyberai", + "name": "WyberAi", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140449765" + ], + "created_at": "2026-07-10T10:12:43.801584", + "updated_at": "2026-07-10T10:12:43.801584", + "url": "/v1/software/wyberai" +} diff --git a/site/public/v1/software/wyldfire/index.json b/site/public/v1/software/wyldfire/index.json new file mode 100644 index 000000000000..cc0918d147f3 --- /dev/null +++ b/site/public/v1/software/wyldfire/index.json @@ -0,0 +1,21 @@ +{ + "id": 11316, + "slug": "wyldfire", + "name": "Wyldfire", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "iOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q21233705" + ], + "created_at": "2026-07-10T10:12:43.802653", + "updated_at": "2026-07-10T10:12:43.802653", + "url": "/v1/software/wyldfire" +} diff --git a/site/public/v1/software/wysiwym/index.json b/site/public/v1/software/wysiwym/index.json new file mode 100644 index 000000000000..0f6cfd53e725 --- /dev/null +++ b/site/public/v1/software/wysiwym/index.json @@ -0,0 +1,19 @@ +{ + "id": 11317, + "slug": "wysiwym", + "name": "WYSIWYM", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17090734" + ], + "created_at": "2026-07-10T10:12:43.802653", + "updated_at": "2026-07-10T10:12:43.802653", + "url": "/v1/software/wysiwym" +} diff --git a/site/public/v1/software/wyzo/index.json b/site/public/v1/software/wyzo/index.json new file mode 100644 index 000000000000..e9a72aecd0ba --- /dev/null +++ b/site/public/v1/software/wyzo/index.json @@ -0,0 +1,19 @@ +{ + "id": 11318, + "slug": "wyzo", + "name": "Wyzo", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4118455" + ], + "created_at": "2026-07-10T10:12:43.802653", + "updated_at": "2026-07-10T10:12:43.802653", + "url": "/v1/software/wyzo" +} diff --git a/site/public/v1/software/x-12-arima/index.json b/site/public/v1/software/x-12-arima/index.json new file mode 100644 index 000000000000..6e5541b11267 --- /dev/null +++ b/site/public/v1/software/x-12-arima/index.json @@ -0,0 +1,21 @@ +{ + "id": 11319, + "slug": "x-12-arima", + "name": "X-12-ARIMA", + "release_date": null, + "developers": [ + "United States Census Bureau" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q640173" + ], + "created_at": "2026-07-10T10:12:43.803596", + "updated_at": "2026-07-10T10:12:43.803596", + "url": "/v1/software/x-12-arima" +} diff --git a/site/public/v1/software/x-chat-aqua/index.json b/site/public/v1/software/x-chat-aqua/index.json new file mode 100644 index 000000000000..e92830a2f1d9 --- /dev/null +++ b/site/public/v1/software/x-chat-aqua/index.json @@ -0,0 +1,19 @@ +{ + "id": 11320, + "slug": "x-chat-aqua", + "name": "X-Chat Aqua", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4021181" + ], + "created_at": "2026-07-10T10:12:43.803596", + "updated_at": "2026-07-10T10:12:43.803596", + "url": "/v1/software/x-chat-aqua" +} diff --git a/site/public/v1/software/x-display-manager/index.json b/site/public/v1/software/x-display-manager/index.json new file mode 100644 index 000000000000..c1cbe6e5d0ec --- /dev/null +++ b/site/public/v1/software/x-display-manager/index.json @@ -0,0 +1,19 @@ +{ + "id": 11321, + "slug": "x-display-manager", + "name": "X display manager", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q653475" + ], + "created_at": "2026-07-10T10:12:43.803596", + "updated_at": "2026-07-10T10:12:43.803596", + "url": "/v1/software/x-display-manager" +} diff --git a/site/public/v1/software/x-keyboard-extension/index.json b/site/public/v1/software/x-keyboard-extension/index.json new file mode 100644 index 000000000000..cd5668b89c9d --- /dev/null +++ b/site/public/v1/software/x-keyboard-extension/index.json @@ -0,0 +1,21 @@ +{ + "id": 11322, + "slug": "x-keyboard-extension", + "name": "X keyboard extension", + "release_date": null, + "developers": [ + "X.Org Foundation" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8042783" + ], + "created_at": "2026-07-10T10:12:43.804594", + "updated_at": "2026-07-10T10:12:43.804594", + "url": "/v1/software/x-keyboard-extension" +} diff --git a/site/public/v1/software/x-lite/index.json b/site/public/v1/software/x-lite/index.json new file mode 100644 index 000000000000..dc8c18bd762d --- /dev/null +++ b/site/public/v1/software/x-lite/index.json @@ -0,0 +1,19 @@ +{ + "id": 11323, + "slug": "x-lite", + "name": "X-Lite", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q71667" + ], + "created_at": "2026-07-10T10:12:43.804594", + "updated_at": "2026-07-10T10:12:43.804594", + "url": "/v1/software/x-lite" +} diff --git a/site/public/v1/software/x-notifier/index.json b/site/public/v1/software/x-notifier/index.json new file mode 100644 index 000000000000..9f643891389b --- /dev/null +++ b/site/public/v1/software/x-notifier/index.json @@ -0,0 +1,19 @@ +{ + "id": 11324, + "slug": "x-notifier", + "name": "X-notifier", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2972219" + ], + "created_at": "2026-07-10T10:12:43.804594", + "updated_at": "2026-07-10T10:12:43.804594", + "url": "/v1/software/x-notifier" +} diff --git a/site/public/v1/software/x-plor/index.json b/site/public/v1/software/x-plor/index.json new file mode 100644 index 000000000000..0f5e89db521d --- /dev/null +++ b/site/public/v1/software/x-plor/index.json @@ -0,0 +1,21 @@ +{ + "id": 11325, + "slug": "x-plor", + "name": "X-PLOR", + "release_date": null, + "developers": [ + "Axel T. Brunger" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8041495" + ], + "created_at": "2026-07-10T10:12:43.805595", + "updated_at": "2026-07-10T10:12:43.805595", + "url": "/v1/software/x-plor" +} diff --git a/site/public/v1/software/x-ray/index.json b/site/public/v1/software/x-ray/index.json new file mode 100644 index 000000000000..d7c1784c9018 --- /dev/null +++ b/site/public/v1/software/x-ray/index.json @@ -0,0 +1,19 @@ +{ + "id": 11326, + "slug": "x-ray", + "name": "X-Ray", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17067250" + ], + "created_at": "2026-07-10T10:12:43.805595", + "updated_at": "2026-07-10T10:12:43.805595", + "url": "/v1/software/x-ray" +} diff --git a/site/public/v1/software/x-rendering-extension/index.json b/site/public/v1/software/x-rendering-extension/index.json new file mode 100644 index 000000000000..e1da1182163d --- /dev/null +++ b/site/public/v1/software/x-rendering-extension/index.json @@ -0,0 +1,21 @@ +{ + "id": 11327, + "slug": "x-rendering-extension", + "name": "X Rendering Extension", + "release_date": null, + "developers": [ + "X.Org Foundation" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1982555" + ], + "created_at": "2026-07-10T10:12:43.805595", + "updated_at": "2026-07-10T10:12:43.805595", + "url": "/v1/software/x-rendering-extension" +} diff --git a/site/public/v1/software/x-road/index.json b/site/public/v1/software/x-road/index.json new file mode 100644 index 000000000000..531a71e01fd7 --- /dev/null +++ b/site/public/v1/software/x-road/index.json @@ -0,0 +1,25 @@ +{ + "id": 11328, + "slug": "x-road", + "name": "X-Road", + "release_date": "2001-01-01", + "developers": [ + "Nordic Institute for Interoperability Solutions" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Java" + ], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q12379285" + ], + "created_at": "2026-07-10T10:12:43.806714", + "updated_at": "2026-07-10T10:12:43.806714", + "url": "/v1/software/x-road" +} diff --git a/site/public/v1/software/x-session-manager/index.json b/site/public/v1/software/x-session-manager/index.json new file mode 100644 index 000000000000..0a4fc1b430db --- /dev/null +++ b/site/public/v1/software/x-session-manager/index.json @@ -0,0 +1,19 @@ +{ + "id": 11329, + "slug": "x-session-manager", + "name": "X session manager", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8042789" + ], + "created_at": "2026-07-10T10:12:43.806714", + "updated_at": "2026-07-10T10:12:43.806714", + "url": "/v1/software/x-session-manager" +} diff --git a/site/public/v1/software/x-video-extension/index.json b/site/public/v1/software/x-video-extension/index.json new file mode 100644 index 000000000000..5aa73b78856c --- /dev/null +++ b/site/public/v1/software/x-video-extension/index.json @@ -0,0 +1,21 @@ +{ + "id": 11330, + "slug": "x-video-extension", + "name": "X video extension", + "release_date": null, + "developers": [ + "X.Org Foundation" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4390685" + ], + "created_at": "2026-07-10T10:12:43.806714", + "updated_at": "2026-07-10T10:12:43.806714", + "url": "/v1/software/x-video-extension" +} diff --git a/site/public/v1/software/x11-calc/index.json b/site/public/v1/software/x11-calc/index.json new file mode 100644 index 000000000000..cbdef22b10a6 --- /dev/null +++ b/site/public/v1/software/x11-calc/index.json @@ -0,0 +1,21 @@ +{ + "id": 11331, + "slug": "x11-calc", + "name": "x11-calc", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "GNU General Public License, version 3.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q130251832" + ], + "created_at": "2026-07-10T10:12:43.807595", + "updated_at": "2026-07-10T10:12:43.807595", + "url": "/v1/software/x11-calc" +} diff --git a/site/public/v1/software/x64dbg/index.json b/site/public/v1/software/x64dbg/index.json new file mode 100644 index 000000000000..9966cc0fd4a6 --- /dev/null +++ b/site/public/v1/software/x64dbg/index.json @@ -0,0 +1,19 @@ +{ + "id": 11332, + "slug": "x64dbg", + "name": "X64dbg", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q129567481" + ], + "created_at": "2026-07-10T10:12:43.807595", + "updated_at": "2026-07-10T10:12:43.807595", + "url": "/v1/software/x64dbg" +} diff --git a/site/public/v1/software/x86inc-asm/index.json b/site/public/v1/software/x86inc-asm/index.json new file mode 100644 index 000000000000..b2c74f4c6ddd --- /dev/null +++ b/site/public/v1/software/x86inc-asm/index.json @@ -0,0 +1,23 @@ +{ + "id": 11333, + "slug": "x86inc-asm", + "name": "x86inc.asm", + "release_date": "2005-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "x86 assembly language" + ], + "licenses": [ + "ISC license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117825350" + ], + "created_at": "2026-07-10T10:12:43.807595", + "updated_at": "2026-07-10T10:12:43.807595", + "url": "/v1/software/x86inc-asm" +} diff --git a/site/public/v1/software/xaitment/index.json b/site/public/v1/software/xaitment/index.json new file mode 100644 index 000000000000..c631bdc081f2 --- /dev/null +++ b/site/public/v1/software/xaitment/index.json @@ -0,0 +1,19 @@ +{ + "id": 11334, + "slug": "xaitment", + "name": "xaitment", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8042840" + ], + "created_at": "2026-07-10T10:12:43.808656", + "updated_at": "2026-07-10T10:12:43.808656", + "url": "/v1/software/xaitment" +} diff --git a/site/public/v1/software/xamlpad/index.json b/site/public/v1/software/xamlpad/index.json new file mode 100644 index 000000000000..ab1e9af26630 --- /dev/null +++ b/site/public/v1/software/xamlpad/index.json @@ -0,0 +1,19 @@ +{ + "id": 11335, + "slug": "xamlpad", + "name": "XAMLPad", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8041680" + ], + "created_at": "2026-07-10T10:12:43.808656", + "updated_at": "2026-07-10T10:12:43.808656", + "url": "/v1/software/xamlpad" +} diff --git a/site/public/v1/software/xananews/index.json b/site/public/v1/software/xananews/index.json new file mode 100644 index 000000000000..b4f4ff5bf575 --- /dev/null +++ b/site/public/v1/software/xananews/index.json @@ -0,0 +1,25 @@ +{ + "id": 11336, + "slug": "xananews", + "name": "XanaNews", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [ + "Delphi" + ], + "licenses": [ + "Mozilla Public License, version 1.1" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q9383200" + ], + "created_at": "2026-07-10T10:12:43.808656", + "updated_at": "2026-07-10T10:12:43.808656", + "url": "/v1/software/xananews" +} diff --git a/site/public/v1/software/xapps/index.json b/site/public/v1/software/xapps/index.json new file mode 100644 index 000000000000..d370e64bbe73 --- /dev/null +++ b/site/public/v1/software/xapps/index.json @@ -0,0 +1,19 @@ +{ + "id": 11337, + "slug": "xapps", + "name": "xApps", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8041684" + ], + "created_at": "2026-07-10T10:12:43.808656", + "updated_at": "2026-07-10T10:12:43.808656", + "url": "/v1/software/xapps" +} diff --git a/site/public/v1/software/xbmc-addon-xvdr/index.json b/site/public/v1/software/xbmc-addon-xvdr/index.json new file mode 100644 index 000000000000..e16c70c61d1d --- /dev/null +++ b/site/public/v1/software/xbmc-addon-xvdr/index.json @@ -0,0 +1,19 @@ +{ + "id": 11338, + "slug": "xbmc-addon-xvdr", + "name": "xbmc-addon-xvdr", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975572" + ], + "created_at": "2026-07-10T10:12:43.809661", + "updated_at": "2026-07-10T10:12:43.809661", + "url": "/v1/software/xbmc-addon-xvdr" +} diff --git a/site/public/v1/software/xbox-app/index.json b/site/public/v1/software/xbox-app/index.json new file mode 100644 index 000000000000..b03ba89bf8e1 --- /dev/null +++ b/site/public/v1/software/xbox-app/index.json @@ -0,0 +1,27 @@ +{ + "id": 11339, + "slug": "xbox-app", + "name": "Xbox App", + "release_date": "2015-07-29", + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [ + "Windows Phone", + "iOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [ + "screencasting software" + ], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q736181" + ], + "created_at": "2026-07-10T10:12:43.809661", + "updated_at": "2026-07-10T10:12:43.809661", + "url": "/v1/software/xbox-app" +} diff --git a/site/public/v1/software/xbox-media-player/index.json b/site/public/v1/software/xbox-media-player/index.json new file mode 100644 index 000000000000..795b71a77a22 --- /dev/null +++ b/site/public/v1/software/xbox-media-player/index.json @@ -0,0 +1,19 @@ +{ + "id": 11340, + "slug": "xbox-media-player", + "name": "Xbox Media Player", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4021756" + ], + "created_at": "2026-07-10T10:12:43.809661", + "updated_at": "2026-07-10T10:12:43.809661", + "url": "/v1/software/xbox-media-player" +} diff --git a/site/public/v1/software/xbrl-gl/index.json b/site/public/v1/software/xbrl-gl/index.json new file mode 100644 index 000000000000..45c3cf482907 --- /dev/null +++ b/site/public/v1/software/xbrl-gl/index.json @@ -0,0 +1,19 @@ +{ + "id": 11341, + "slug": "xbrl-gl", + "name": "XBRL GL", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8041693" + ], + "created_at": "2026-07-10T10:12:43.810683", + "updated_at": "2026-07-10T10:12:43.810683", + "url": "/v1/software/xbrl-gl" +} diff --git a/site/public/v1/software/xcalibur/index.json b/site/public/v1/software/xcalibur/index.json new file mode 100644 index 000000000000..e58d0d091a0d --- /dev/null +++ b/site/public/v1/software/xcalibur/index.json @@ -0,0 +1,21 @@ +{ + "id": 11342, + "slug": "xcalibur", + "name": "Xcalibur", + "release_date": null, + "developers": [], + "publishers": [ + "Thermo Fisher Scientific Inc." + ], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q121010272" + ], + "created_at": "2026-07-10T10:12:43.810683", + "updated_at": "2026-07-10T10:12:43.810683", + "url": "/v1/software/xcalibur" +} diff --git a/site/public/v1/software/xcarat/index.json b/site/public/v1/software/xcarat/index.json new file mode 100644 index 000000000000..09f510d1f2c8 --- /dev/null +++ b/site/public/v1/software/xcarat/index.json @@ -0,0 +1,19 @@ +{ + "id": 11343, + "slug": "xcarat", + "name": "XCARAT", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123966048" + ], + "created_at": "2026-07-10T10:12:43.810683", + "updated_at": "2026-07-10T10:12:43.810683", + "url": "/v1/software/xcarat" +} diff --git a/site/public/v1/software/xcb-util-image/index.json b/site/public/v1/software/xcb-util-image/index.json new file mode 100644 index 000000000000..41d3deb6a4b4 --- /dev/null +++ b/site/public/v1/software/xcb-util-image/index.json @@ -0,0 +1,19 @@ +{ + "id": 11344, + "slug": "xcb-util-image", + "name": "xcb-util-image", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975576" + ], + "created_at": "2026-07-10T10:12:43.811682", + "updated_at": "2026-07-10T10:12:43.811682", + "url": "/v1/software/xcb-util-image" +} diff --git a/site/public/v1/software/xcb-util-keysyms/index.json b/site/public/v1/software/xcb-util-keysyms/index.json new file mode 100644 index 000000000000..2725192a8b62 --- /dev/null +++ b/site/public/v1/software/xcb-util-keysyms/index.json @@ -0,0 +1,19 @@ +{ + "id": 11345, + "slug": "xcb-util-keysyms", + "name": "xcb-util-keysyms", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975577" + ], + "created_at": "2026-07-10T10:12:43.811682", + "updated_at": "2026-07-10T10:12:43.811682", + "url": "/v1/software/xcb-util-keysyms" +} diff --git a/site/public/v1/software/xcb-util-renderutil/index.json b/site/public/v1/software/xcb-util-renderutil/index.json new file mode 100644 index 000000000000..112a1641acb5 --- /dev/null +++ b/site/public/v1/software/xcb-util-renderutil/index.json @@ -0,0 +1,19 @@ +{ + "id": 11346, + "slug": "xcb-util-renderutil", + "name": "xcb-util-renderutil", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975578" + ], + "created_at": "2026-07-10T10:12:43.811682", + "updated_at": "2026-07-10T10:12:43.811682", + "url": "/v1/software/xcb-util-renderutil" +} diff --git a/site/public/v1/software/xcb-util-wm/index.json b/site/public/v1/software/xcb-util-wm/index.json new file mode 100644 index 000000000000..510d41e27294 --- /dev/null +++ b/site/public/v1/software/xcb-util-wm/index.json @@ -0,0 +1,19 @@ +{ + "id": 11347, + "slug": "xcb-util-wm", + "name": "xcb-util-wm", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975579" + ], + "created_at": "2026-07-10T10:12:43.812716", + "updated_at": "2026-07-10T10:12:43.812716", + "url": "/v1/software/xcb-util-wm" +} diff --git a/site/public/v1/software/xcb-util/index.json b/site/public/v1/software/xcb-util/index.json new file mode 100644 index 000000000000..fb6a17f9efc4 --- /dev/null +++ b/site/public/v1/software/xcb-util/index.json @@ -0,0 +1,19 @@ +{ + "id": 11348, + "slug": "xcb-util", + "name": "xcb-util", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975574" + ], + "created_at": "2026-07-10T10:12:43.812716", + "updated_at": "2026-07-10T10:12:43.812716", + "url": "/v1/software/xcb-util" +} diff --git a/site/public/v1/software/xcbl/index.json b/site/public/v1/software/xcbl/index.json new file mode 100644 index 000000000000..78df46c6b09c --- /dev/null +++ b/site/public/v1/software/xcbl/index.json @@ -0,0 +1,19 @@ +{ + "id": 11349, + "slug": "xcbl", + "name": "xCBL", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1230989" + ], + "created_at": "2026-07-10T10:12:43.812716", + "updated_at": "2026-07-10T10:12:43.812716", + "url": "/v1/software/xcbl" +} diff --git a/site/public/v1/software/xcms-online/index.json b/site/public/v1/software/xcms-online/index.json new file mode 100644 index 000000000000..951dcda4f094 --- /dev/null +++ b/site/public/v1/software/xcms-online/index.json @@ -0,0 +1,19 @@ +{ + "id": 11350, + "slug": "xcms-online", + "name": "XCMS Online", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q65051863" + ], + "created_at": "2026-07-10T10:12:43.813697", + "updated_at": "2026-07-10T10:12:43.813697", + "url": "/v1/software/xcms-online" +} diff --git a/site/public/v1/software/xcopy-deployment/index.json b/site/public/v1/software/xcopy-deployment/index.json new file mode 100644 index 000000000000..1a5677265bc8 --- /dev/null +++ b/site/public/v1/software/xcopy-deployment/index.json @@ -0,0 +1,19 @@ +{ + "id": 11351, + "slug": "xcopy-deployment", + "name": "XCOPY deployment", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8041714" + ], + "created_at": "2026-07-10T10:12:43.813697", + "updated_at": "2026-07-10T10:12:43.813697", + "url": "/v1/software/xcopy-deployment" +} diff --git a/site/public/v1/software/xdbedizzy/index.json b/site/public/v1/software/xdbedizzy/index.json new file mode 100644 index 000000000000..be209a58fa23 --- /dev/null +++ b/site/public/v1/software/xdbedizzy/index.json @@ -0,0 +1,19 @@ +{ + "id": 11352, + "slug": "xdbedizzy", + "name": "xdbedizzy", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60918721" + ], + "created_at": "2026-07-10T10:12:43.813697", + "updated_at": "2026-07-10T10:12:43.814660", + "url": "/v1/software/xdbedizzy" +} diff --git a/site/public/v1/software/xdmx/index.json b/site/public/v1/software/xdmx/index.json new file mode 100644 index 000000000000..a83ff76c8c8d --- /dev/null +++ b/site/public/v1/software/xdmx/index.json @@ -0,0 +1,19 @@ +{ + "id": 11353, + "slug": "xdmx", + "name": "Xdmx", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8043402" + ], + "created_at": "2026-07-10T10:12:43.814660", + "updated_at": "2026-07-10T10:12:43.814660", + "url": "/v1/software/xdmx" +} diff --git a/site/public/v1/software/xdvik/index.json b/site/public/v1/software/xdvik/index.json new file mode 100644 index 000000000000..34b20b5ce3ec --- /dev/null +++ b/site/public/v1/software/xdvik/index.json @@ -0,0 +1,19 @@ +{ + "id": 11354, + "slug": "xdvik", + "name": "xdvik", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11254859" + ], + "created_at": "2026-07-10T10:12:43.814660", + "updated_at": "2026-07-10T10:12:43.814660", + "url": "/v1/software/xdvik" +} diff --git a/site/public/v1/software/xeditor/index.json b/site/public/v1/software/xeditor/index.json new file mode 100644 index 000000000000..0815c679a166 --- /dev/null +++ b/site/public/v1/software/xeditor/index.json @@ -0,0 +1,19 @@ +{ + "id": 11355, + "slug": "xeditor", + "name": "Xeditor", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22909839" + ], + "created_at": "2026-07-10T10:12:43.814660", + "updated_at": "2026-07-10T10:12:43.814660", + "url": "/v1/software/xeditor" +} diff --git a/site/public/v1/software/xemu/index.json b/site/public/v1/software/xemu/index.json new file mode 100644 index 000000000000..27521bbd59dd --- /dev/null +++ b/site/public/v1/software/xemu/index.json @@ -0,0 +1,23 @@ +{ + "id": 11356, + "slug": "xemu", + "name": "Xemu", + "release_date": null, + "developers": [ + "Matt Borgerson" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "GNU General Public License, version 2.0 or later" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q114773623" + ], + "created_at": "2026-07-10T10:12:43.815693", + "updated_at": "2026-07-10T10:12:43.815693", + "url": "/v1/software/xemu" +} diff --git a/site/public/v1/software/xen-cloud-platform/index.json b/site/public/v1/software/xen-cloud-platform/index.json new file mode 100644 index 000000000000..04777402bc47 --- /dev/null +++ b/site/public/v1/software/xen-cloud-platform/index.json @@ -0,0 +1,19 @@ +{ + "id": 11357, + "slug": "xen-cloud-platform", + "name": "Xen Cloud Platform", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q12073012" + ], + "created_at": "2026-07-10T10:12:43.815693", + "updated_at": "2026-07-10T10:12:43.815693", + "url": "/v1/software/xen-cloud-platform" +} diff --git a/site/public/v1/software/xen-tools/index.json b/site/public/v1/software/xen-tools/index.json new file mode 100644 index 000000000000..83d18c40f05a --- /dev/null +++ b/site/public/v1/software/xen-tools/index.json @@ -0,0 +1,19 @@ +{ + "id": 11358, + "slug": "xen-tools", + "name": "xen-tools", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975581" + ], + "created_at": "2026-07-10T10:12:43.815693", + "updated_at": "2026-07-10T10:12:43.815693", + "url": "/v1/software/xen-tools" +} diff --git a/site/public/v1/software/xenclient/index.json b/site/public/v1/software/xenclient/index.json new file mode 100644 index 000000000000..ed4917bd07eb --- /dev/null +++ b/site/public/v1/software/xenclient/index.json @@ -0,0 +1,19 @@ +{ + "id": 11359, + "slug": "xenclient", + "name": "XenClient", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8043436" + ], + "created_at": "2026-07-10T10:12:43.816679", + "updated_at": "2026-07-10T10:12:43.816679", + "url": "/v1/software/xenclient" +} diff --git a/site/public/v1/software/xender/index.json b/site/public/v1/software/xender/index.json new file mode 100644 index 000000000000..67947369c9d0 --- /dev/null +++ b/site/public/v1/software/xender/index.json @@ -0,0 +1,19 @@ +{ + "id": 11360, + "slug": "xender", + "name": "Xender", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q19362067" + ], + "created_at": "2026-07-10T10:12:43.816679", + "updated_at": "2026-07-10T10:12:43.816679", + "url": "/v1/software/xender" +} diff --git a/site/public/v1/software/xendesktop/index.json b/site/public/v1/software/xendesktop/index.json new file mode 100644 index 000000000000..80c6febd6a31 --- /dev/null +++ b/site/public/v1/software/xendesktop/index.json @@ -0,0 +1,21 @@ +{ + "id": 11361, + "slug": "xendesktop", + "name": "XenDesktop", + "release_date": null, + "developers": [ + "Citrix Systems" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25245349" + ], + "created_at": "2026-07-10T10:12:43.817315", + "updated_at": "2026-07-10T10:12:43.817315", + "url": "/v1/software/xendesktop" +} diff --git a/site/public/v1/software/xenomai/index.json b/site/public/v1/software/xenomai/index.json new file mode 100644 index 000000000000..89e5e459cbd5 --- /dev/null +++ b/site/public/v1/software/xenomai/index.json @@ -0,0 +1,19 @@ +{ + "id": 11362, + "slug": "xenomai", + "name": "Xenomai", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2496071" + ], + "created_at": "2026-07-10T10:12:43.817315", + "updated_at": "2026-07-10T10:12:43.817315", + "url": "/v1/software/xenomai" +} diff --git a/site/public/v1/software/xenon/index.json b/site/public/v1/software/xenon/index.json new file mode 100644 index 000000000000..5b63096ac570 --- /dev/null +++ b/site/public/v1/software/xenon/index.json @@ -0,0 +1,19 @@ +{ + "id": 11363, + "slug": "xenon", + "name": "Xenon", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8043629" + ], + "created_at": "2026-07-10T10:12:43.817315", + "updated_at": "2026-07-10T10:12:43.817315", + "url": "/v1/software/xenon" +} diff --git a/site/public/v1/software/xeokit/index.json b/site/public/v1/software/xeokit/index.json new file mode 100644 index 000000000000..9d9ab47d1918 --- /dev/null +++ b/site/public/v1/software/xeokit/index.json @@ -0,0 +1,19 @@ +{ + "id": 11364, + "slug": "xeokit", + "name": "Xeokit", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135116790" + ], + "created_at": "2026-07-10T10:12:43.818419", + "updated_at": "2026-07-10T10:12:43.818419", + "url": "/v1/software/xeokit" +} diff --git a/site/public/v1/software/xep/index.json b/site/public/v1/software/xep/index.json new file mode 100644 index 000000000000..9e53d908e1d2 --- /dev/null +++ b/site/public/v1/software/xep/index.json @@ -0,0 +1,21 @@ +{ + "id": 11365, + "slug": "xep", + "name": "XEP", + "release_date": null, + "developers": [ + "RenderX" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8041858" + ], + "created_at": "2026-07-10T10:12:43.818419", + "updated_at": "2026-07-10T10:12:43.818419", + "url": "/v1/software/xep" +} diff --git a/site/public/v1/software/xephem/index.json b/site/public/v1/software/xephem/index.json new file mode 100644 index 000000000000..7a949b56ebf6 --- /dev/null +++ b/site/public/v1/software/xephem/index.json @@ -0,0 +1,24 @@ +{ + "id": 11366, + "slug": "xephem", + "name": "XEphem", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Unix-like operating system", + "macOS" + ], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2597434" + ], + "created_at": "2026-07-10T10:12:43.818419", + "updated_at": "2026-07-10T10:12:43.818419", + "url": "/v1/software/xephem" +} diff --git a/site/public/v1/software/xero/index.json b/site/public/v1/software/xero/index.json new file mode 100644 index 000000000000..1761bab1850d --- /dev/null +++ b/site/public/v1/software/xero/index.json @@ -0,0 +1,21 @@ +{ + "id": 11367, + "slug": "xero", + "name": "Xero", + "release_date": null, + "developers": [ + "Xero Limited" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139486697" + ], + "created_at": "2026-07-10T10:12:43.819436", + "updated_at": "2026-07-10T10:12:43.819436", + "url": "/v1/software/xero" +} diff --git a/site/public/v1/software/xerox-linguistic-environment/index.json b/site/public/v1/software/xerox-linguistic-environment/index.json new file mode 100644 index 000000000000..f40ef14ffe9a --- /dev/null +++ b/site/public/v1/software/xerox-linguistic-environment/index.json @@ -0,0 +1,19 @@ +{ + "id": 11368, + "slug": "xerox-linguistic-environment", + "name": "Xerox Linguistic Environment", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139710509" + ], + "created_at": "2026-07-10T10:12:43.819436", + "updated_at": "2026-07-10T10:12:43.819436", + "url": "/v1/software/xerox-linguistic-environment" +} diff --git a/site/public/v1/software/xerox-parc-map-viewer/index.json b/site/public/v1/software/xerox-parc-map-viewer/index.json new file mode 100644 index 000000000000..85b05e31bda0 --- /dev/null +++ b/site/public/v1/software/xerox-parc-map-viewer/index.json @@ -0,0 +1,19 @@ +{ + "id": 11369, + "slug": "xerox-parc-map-viewer", + "name": "Xerox PARC Map Viewer", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8043903" + ], + "created_at": "2026-07-10T10:12:43.819436", + "updated_at": "2026-07-10T10:12:43.819436", + "url": "/v1/software/xerox-parc-map-viewer" +} diff --git a/site/public/v1/software/xerver/index.json b/site/public/v1/software/xerver/index.json new file mode 100644 index 000000000000..aed798d53cd3 --- /dev/null +++ b/site/public/v1/software/xerver/index.json @@ -0,0 +1,23 @@ +{ + "id": 11370, + "slug": "xerver", + "name": "Xerver", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Java" + ], + "licenses": [ + "free software license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10722474" + ], + "created_at": "2026-07-10T10:12:43.820411", + "updated_at": "2026-07-10T10:12:43.820411", + "url": "/v1/software/xerver" +} diff --git a/site/public/v1/software/xf86-input-wacom/index.json b/site/public/v1/software/xf86-input-wacom/index.json new file mode 100644 index 000000000000..c33f85dbccf6 --- /dev/null +++ b/site/public/v1/software/xf86-input-wacom/index.json @@ -0,0 +1,19 @@ +{ + "id": 11371, + "slug": "xf86-input-wacom", + "name": "xf86-input-wacom", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975582" + ], + "created_at": "2026-07-10T10:12:43.820411", + "updated_at": "2026-07-10T10:12:43.820411", + "url": "/v1/software/xf86-input-wacom" +} diff --git a/site/public/v1/software/xf86-video-xgi/index.json b/site/public/v1/software/xf86-video-xgi/index.json new file mode 100644 index 000000000000..0b77e294e421 --- /dev/null +++ b/site/public/v1/software/xf86-video-xgi/index.json @@ -0,0 +1,19 @@ +{ + "id": 11372, + "slug": "xf86-video-xgi", + "name": "xf86-video-xgi", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16356667" + ], + "created_at": "2026-07-10T10:12:43.820411", + "updated_at": "2026-07-10T10:12:43.820411", + "url": "/v1/software/xf86-video-xgi" +} diff --git a/site/public/v1/software/xfce4-radio-plugin/index.json b/site/public/v1/software/xfce4-radio-plugin/index.json new file mode 100644 index 000000000000..b82fc461e176 --- /dev/null +++ b/site/public/v1/software/xfce4-radio-plugin/index.json @@ -0,0 +1,21 @@ +{ + "id": 11373, + "slug": "xfce4-radio-plugin", + "name": "xfce4-radio-plugin", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Unix-like operating system" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106102084" + ], + "created_at": "2026-07-10T10:12:43.820411", + "updated_at": "2026-07-10T10:12:43.821393", + "url": "/v1/software/xfce4-radio-plugin" +} diff --git a/site/public/v1/software/xhronos/index.json b/site/public/v1/software/xhronos/index.json new file mode 100644 index 000000000000..585443f566ea --- /dev/null +++ b/site/public/v1/software/xhronos/index.json @@ -0,0 +1,21 @@ +{ + "id": 11374, + "slug": "xhronos", + "name": "XHRONOS", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Solidity" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139824504" + ], + "created_at": "2026-07-10T10:12:43.821393", + "updated_at": "2026-07-10T10:12:43.821393", + "url": "/v1/software/xhronos" +} diff --git a/site/public/v1/software/xilinx-ise/index.json b/site/public/v1/software/xilinx-ise/index.json new file mode 100644 index 000000000000..ab04c7ab745b --- /dev/null +++ b/site/public/v1/software/xilinx-ise/index.json @@ -0,0 +1,27 @@ +{ + "id": 11375, + "slug": "xilinx-ise", + "name": "Xilinx ISE", + "release_date": null, + "developers": [ + "Xilinx" + ], + "publishers": [], + "operating_systems": [ + "SUSE Linux Enterprise Desktop", + "FreeBSD", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "shareware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8044441" + ], + "created_at": "2026-07-10T10:12:43.821393", + "updated_at": "2026-07-10T10:12:43.821393", + "url": "/v1/software/xilinx-ise" +} diff --git a/site/public/v1/software/xilinx-vivado/index.json b/site/public/v1/software/xilinx-vivado/index.json new file mode 100644 index 000000000000..1c0409cd337f --- /dev/null +++ b/site/public/v1/software/xilinx-vivado/index.json @@ -0,0 +1,21 @@ +{ + "id": 11376, + "slug": "xilinx-vivado", + "name": "Xilinx Vivado", + "release_date": "2012-04-01", + "developers": [ + "Xilinx" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25220741" + ], + "created_at": "2026-07-10T10:12:43.821393", + "updated_at": "2026-07-10T10:12:43.821393", + "url": "/v1/software/xilinx-vivado" +} diff --git a/site/public/v1/software/xinhua-sogou-ai-news-anchor/index.json b/site/public/v1/software/xinhua-sogou-ai-news-anchor/index.json new file mode 100644 index 000000000000..93948890877b --- /dev/null +++ b/site/public/v1/software/xinhua-sogou-ai-news-anchor/index.json @@ -0,0 +1,19 @@ +{ + "id": 11377, + "slug": "xinhua-sogou-ai-news-anchor", + "name": "Xinhua–Sogou AI news anchor", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q123038237" + ], + "created_at": "2026-07-10T10:12:43.822441", + "updated_at": "2026-07-10T10:12:43.822441", + "url": "/v1/software/xinhua-sogou-ai-news-anchor" +} diff --git a/site/public/v1/software/xios/index.json b/site/public/v1/software/xios/index.json new file mode 100644 index 000000000000..459240db05df --- /dev/null +++ b/site/public/v1/software/xios/index.json @@ -0,0 +1,21 @@ +{ + "id": 11378, + "slug": "xios", + "name": "XIOS", + "release_date": null, + "developers": [ + "Yann Meurdesoif" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q117832806" + ], + "created_at": "2026-07-10T10:12:43.822441", + "updated_at": "2026-07-10T10:12:43.822441", + "url": "/v1/software/xios" +} diff --git a/site/public/v1/software/xiph-quicktime-components/index.json b/site/public/v1/software/xiph-quicktime-components/index.json new file mode 100644 index 000000000000..1e3bf714cd16 --- /dev/null +++ b/site/public/v1/software/xiph-quicktime-components/index.json @@ -0,0 +1,21 @@ +{ + "id": 11379, + "slug": "xiph-quicktime-components", + "name": "Xiph QuickTime Components", + "release_date": null, + "developers": [ + "Xiph.Org Foundation" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q621937" + ], + "created_at": "2026-07-10T10:12:43.822441", + "updated_at": "2026-07-10T10:12:43.822441", + "url": "/v1/software/xiph-quicktime-components" +} diff --git a/site/public/v1/software/xircon/index.json b/site/public/v1/software/xircon/index.json new file mode 100644 index 000000000000..b4ff80489d4f --- /dev/null +++ b/site/public/v1/software/xircon/index.json @@ -0,0 +1,19 @@ +{ + "id": 11380, + "slug": "xircon", + "name": "XiRCON", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q107675855" + ], + "created_at": "2026-07-10T10:12:43.823398", + "updated_at": "2026-07-10T10:12:43.823398", + "url": "/v1/software/xircon" +} diff --git a/site/public/v1/software/xlfit/index.json b/site/public/v1/software/xlfit/index.json new file mode 100644 index 000000000000..5e8e25b56b5f --- /dev/null +++ b/site/public/v1/software/xlfit/index.json @@ -0,0 +1,19 @@ +{ + "id": 11381, + "slug": "xlfit", + "name": "XLfit", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8042281" + ], + "created_at": "2026-07-10T10:12:43.823398", + "updated_at": "2026-07-10T10:12:43.823398", + "url": "/v1/software/xlfit" +} diff --git a/site/public/v1/software/xlink-kai/index.json b/site/public/v1/software/xlink-kai/index.json new file mode 100644 index 000000000000..c1c70159383e --- /dev/null +++ b/site/public/v1/software/xlink-kai/index.json @@ -0,0 +1,19 @@ +{ + "id": 11382, + "slug": "xlink-kai", + "name": "XLink Kai", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1785929" + ], + "created_at": "2026-07-10T10:12:43.823398", + "updated_at": "2026-07-10T10:12:43.823398", + "url": "/v1/software/xlink-kai" +} diff --git a/site/public/v1/software/xlispstat/index.json b/site/public/v1/software/xlispstat/index.json new file mode 100644 index 000000000000..875563f6f241 --- /dev/null +++ b/site/public/v1/software/xlispstat/index.json @@ -0,0 +1,21 @@ +{ + "id": 11383, + "slug": "xlispstat", + "name": "XLispStat", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "XLISP" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3570412" + ], + "created_at": "2026-07-10T10:12:43.824325", + "updated_at": "2026-07-10T10:12:43.824325", + "url": "/v1/software/xlispstat" +} diff --git a/site/public/v1/software/xlogmaster/index.json b/site/public/v1/software/xlogmaster/index.json new file mode 100644 index 000000000000..6d1dcf04842d --- /dev/null +++ b/site/public/v1/software/xlogmaster/index.json @@ -0,0 +1,19 @@ +{ + "id": 11384, + "slug": "xlogmaster", + "name": "Xlogmaster", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q76184528" + ], + "created_at": "2026-07-10T10:12:43.824325", + "updated_at": "2026-07-10T10:12:43.824325", + "url": "/v1/software/xlogmaster" +} diff --git a/site/public/v1/software/xlsfonts/index.json b/site/public/v1/software/xlsfonts/index.json new file mode 100644 index 000000000000..081ef1c4562c --- /dev/null +++ b/site/public/v1/software/xlsfonts/index.json @@ -0,0 +1,19 @@ +{ + "id": 11385, + "slug": "xlsfonts", + "name": "xlsfonts", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065069" + ], + "created_at": "2026-07-10T10:12:43.824325", + "updated_at": "2026-07-10T10:12:43.824325", + "url": "/v1/software/xlsfonts" +} diff --git a/site/public/v1/software/xmedcon/index.json b/site/public/v1/software/xmedcon/index.json new file mode 100644 index 000000000000..d3affab3ef9d --- /dev/null +++ b/site/public/v1/software/xmedcon/index.json @@ -0,0 +1,19 @@ +{ + "id": 11386, + "slug": "xmedcon", + "name": "xmedcon", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131574543" + ], + "created_at": "2026-07-10T10:12:43.825380", + "updated_at": "2026-07-10T10:12:43.825380", + "url": "/v1/software/xmedcon" +} diff --git a/site/public/v1/software/xml-professional-publisher/index.json b/site/public/v1/software/xml-professional-publisher/index.json new file mode 100644 index 000000000000..13fdc9b6a6c8 --- /dev/null +++ b/site/public/v1/software/xml-professional-publisher/index.json @@ -0,0 +1,19 @@ +{ + "id": 11387, + "slug": "xml-professional-publisher", + "name": "XML Professional Publisher", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2597549" + ], + "created_at": "2026-07-10T10:12:43.825380", + "updated_at": "2026-07-10T10:12:43.825380", + "url": "/v1/software/xml-professional-publisher" +} diff --git a/site/public/v1/software/xml-to-teilex0/index.json b/site/public/v1/software/xml-to-teilex0/index.json new file mode 100644 index 000000000000..b4241a471957 --- /dev/null +++ b/site/public/v1/software/xml-to-teilex0/index.json @@ -0,0 +1,19 @@ +{ + "id": 11388, + "slug": "xml-to-teilex0", + "name": "XML to TEILex0", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084775" + ], + "created_at": "2026-07-10T10:12:43.825380", + "updated_at": "2026-07-10T10:12:43.825380", + "url": "/v1/software/xml-to-teilex0" +} diff --git a/site/public/v1/software/xml2doc/index.json b/site/public/v1/software/xml2doc/index.json new file mode 100644 index 000000000000..d6f46e341fae --- /dev/null +++ b/site/public/v1/software/xml2doc/index.json @@ -0,0 +1,19 @@ +{ + "id": 11389, + "slug": "xml2doc", + "name": "xml2doc", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065102" + ], + "created_at": "2026-07-10T10:12:43.826372", + "updated_at": "2026-07-10T10:12:43.826372", + "url": "/v1/software/xml2doc" +} diff --git a/site/public/v1/software/xmlstarlet/index.json b/site/public/v1/software/xmlstarlet/index.json new file mode 100644 index 000000000000..fb0287ab71be --- /dev/null +++ b/site/public/v1/software/xmlstarlet/index.json @@ -0,0 +1,21 @@ +{ + "id": 11390, + "slug": "xmlstarlet", + "name": "XMLStarlet", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1289755" + ], + "created_at": "2026-07-10T10:12:43.826372", + "updated_at": "2026-07-10T10:12:43.826372", + "url": "/v1/software/xmlstarlet" +} diff --git a/site/public/v1/software/xmod/index.json b/site/public/v1/software/xmod/index.json new file mode 100644 index 000000000000..79eb7f26ae74 --- /dev/null +++ b/site/public/v1/software/xmod/index.json @@ -0,0 +1,19 @@ +{ + "id": 11391, + "slug": "xmod", + "name": "xMod", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084777" + ], + "created_at": "2026-07-10T10:12:43.826372", + "updated_at": "2026-07-10T10:12:43.826372", + "url": "/v1/software/xmod" +} diff --git a/site/public/v1/software/xnec2c/index.json b/site/public/v1/software/xnec2c/index.json new file mode 100644 index 000000000000..af202e149a4a --- /dev/null +++ b/site/public/v1/software/xnec2c/index.json @@ -0,0 +1,19 @@ +{ + "id": 11392, + "slug": "xnec2c", + "name": "xnec2c", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135317655" + ], + "created_at": "2026-07-10T10:12:43.827385", + "updated_at": "2026-07-10T10:12:43.827385", + "url": "/v1/software/xnec2c" +} diff --git a/site/public/v1/software/xnews/index.json b/site/public/v1/software/xnews/index.json new file mode 100644 index 000000000000..44945c2ef130 --- /dev/null +++ b/site/public/v1/software/xnews/index.json @@ -0,0 +1,19 @@ +{ + "id": 11393, + "slug": "xnews", + "name": "Xnews", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2598420" + ], + "created_at": "2026-07-10T10:12:43.827385", + "updated_at": "2026-07-10T10:12:43.827385", + "url": "/v1/software/xnews" +} diff --git a/site/public/v1/software/xnnpack/index.json b/site/public/v1/software/xnnpack/index.json new file mode 100644 index 000000000000..d68458a75c92 --- /dev/null +++ b/site/public/v1/software/xnnpack/index.json @@ -0,0 +1,19 @@ +{ + "id": 11394, + "slug": "xnnpack", + "name": "xnnpack", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q120400885" + ], + "created_at": "2026-07-10T10:12:43.827385", + "updated_at": "2026-07-10T10:12:43.827385", + "url": "/v1/software/xnnpack" +} diff --git a/site/public/v1/software/xnoise/index.json b/site/public/v1/software/xnoise/index.json new file mode 100644 index 000000000000..ff2127af51c2 --- /dev/null +++ b/site/public/v1/software/xnoise/index.json @@ -0,0 +1,19 @@ +{ + "id": 11395, + "slug": "xnoise", + "name": "xnoise", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975585" + ], + "created_at": "2026-07-10T10:12:43.828377", + "updated_at": "2026-07-10T10:12:43.828377", + "url": "/v1/software/xnoise" +} diff --git a/site/public/v1/software/xnots/index.json b/site/public/v1/software/xnots/index.json new file mode 100644 index 000000000000..f9403b962648 --- /dev/null +++ b/site/public/v1/software/xnots/index.json @@ -0,0 +1,19 @@ +{ + "id": 11396, + "slug": "xnots", + "name": "xnots", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975586" + ], + "created_at": "2026-07-10T10:12:43.828377", + "updated_at": "2026-07-10T10:12:43.828377", + "url": "/v1/software/xnots" +} diff --git a/site/public/v1/software/xobotos/index.json b/site/public/v1/software/xobotos/index.json new file mode 100644 index 000000000000..71088e83d346 --- /dev/null +++ b/site/public/v1/software/xobotos/index.json @@ -0,0 +1,19 @@ +{ + "id": 11397, + "slug": "xobotos", + "name": "XobotOS", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8044871" + ], + "created_at": "2026-07-10T10:12:43.828377", + "updated_at": "2026-07-10T10:12:43.828377", + "url": "/v1/software/xobotos" +} diff --git a/site/public/v1/software/xor-ddos/index.json b/site/public/v1/software/xor-ddos/index.json new file mode 100644 index 000000000000..f138a54c68c3 --- /dev/null +++ b/site/public/v1/software/xor-ddos/index.json @@ -0,0 +1,19 @@ +{ + "id": 11398, + "slug": "xor-ddos", + "name": "Xor DDoS", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q23680122" + ], + "created_at": "2026-07-10T10:12:43.829405", + "updated_at": "2026-07-10T10:12:43.829405", + "url": "/v1/software/xor-ddos" +} diff --git a/site/public/v1/software/xorp/index.json b/site/public/v1/software/xorp/index.json new file mode 100644 index 000000000000..1c4f102fc6c9 --- /dev/null +++ b/site/public/v1/software/xorp/index.json @@ -0,0 +1,19 @@ +{ + "id": 11399, + "slug": "xorp", + "name": "XORP", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q292504" + ], + "created_at": "2026-07-10T10:12:43.829405", + "updated_at": "2026-07-10T10:12:43.829405", + "url": "/v1/software/xorp" +} diff --git a/site/public/v1/software/xpadder/index.json b/site/public/v1/software/xpadder/index.json new file mode 100644 index 000000000000..6077ff92821a --- /dev/null +++ b/site/public/v1/software/xpadder/index.json @@ -0,0 +1,19 @@ +{ + "id": 11400, + "slug": "xpadder", + "name": "Xpadder", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8044968" + ], + "created_at": "2026-07-10T10:12:43.829405", + "updated_at": "2026-07-10T10:12:43.829405", + "url": "/v1/software/xpadder" +} diff --git a/site/public/v1/software/xpages/index.json b/site/public/v1/software/xpages/index.json new file mode 100644 index 000000000000..da6ffdbc34fd --- /dev/null +++ b/site/public/v1/software/xpages/index.json @@ -0,0 +1,26 @@ +{ + "id": 11401, + "slug": "xpages", + "name": "XPages", + "release_date": "2008-01-01", + "developers": [ + "IBM" + ], + "publishers": [], + "operating_systems": [ + "cross-platform" + ], + "programming_languages": [ + "Java", + "HTML" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8042430" + ], + "created_at": "2026-07-10T10:12:43.830415", + "updated_at": "2026-07-10T10:12:43.830415", + "url": "/v1/software/xpages" +} diff --git a/site/public/v1/software/xpconnect/index.json b/site/public/v1/software/xpconnect/index.json new file mode 100644 index 000000000000..4cb23f630ba6 --- /dev/null +++ b/site/public/v1/software/xpconnect/index.json @@ -0,0 +1,19 @@ +{ + "id": 11402, + "slug": "xpconnect", + "name": "XPConnect", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8042403" + ], + "created_at": "2026-07-10T10:12:43.830415", + "updated_at": "2026-07-10T10:12:43.830415", + "url": "/v1/software/xpconnect" +} diff --git a/site/public/v1/software/xpenguins/index.json b/site/public/v1/software/xpenguins/index.json new file mode 100644 index 000000000000..eb68b856a3b2 --- /dev/null +++ b/site/public/v1/software/xpenguins/index.json @@ -0,0 +1,19 @@ +{ + "id": 11403, + "slug": "xpenguins", + "name": "xpenguins", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065108" + ], + "created_at": "2026-07-10T10:12:43.830415", + "updated_at": "2026-07-10T10:12:43.830415", + "url": "/v1/software/xpenguins" +} diff --git a/site/public/v1/software/xpidl/index.json b/site/public/v1/software/xpidl/index.json new file mode 100644 index 000000000000..559ac4800662 --- /dev/null +++ b/site/public/v1/software/xpidl/index.json @@ -0,0 +1,19 @@ +{ + "id": 11404, + "slug": "xpidl", + "name": "XPIDL", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8042401" + ], + "created_at": "2026-07-10T10:12:43.831389", + "updated_at": "2026-07-10T10:12:43.831389", + "url": "/v1/software/xpidl" +} diff --git a/site/public/v1/software/xplay/index.json b/site/public/v1/software/xplay/index.json new file mode 100644 index 000000000000..3674d3349698 --- /dev/null +++ b/site/public/v1/software/xplay/index.json @@ -0,0 +1,19 @@ +{ + "id": 11405, + "slug": "xplay", + "name": "XPlay", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8042439" + ], + "created_at": "2026-07-10T10:12:43.831389", + "updated_at": "2026-07-10T10:12:43.831389", + "url": "/v1/software/xplay" +} diff --git a/site/public/v1/software/xprint/index.json b/site/public/v1/software/xprint/index.json new file mode 100644 index 000000000000..6c79e163c0fe --- /dev/null +++ b/site/public/v1/software/xprint/index.json @@ -0,0 +1,19 @@ +{ + "id": 11406, + "slug": "xprint", + "name": "Xprint", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1789622" + ], + "created_at": "2026-07-10T10:12:43.831389", + "updated_at": "2026-07-10T10:12:43.831389", + "url": "/v1/software/xprint" +} diff --git a/site/public/v1/software/xprotect/index.json b/site/public/v1/software/xprotect/index.json new file mode 100644 index 000000000000..a2a3ab654b40 --- /dev/null +++ b/site/public/v1/software/xprotect/index.json @@ -0,0 +1,19 @@ +{ + "id": 11407, + "slug": "xprotect", + "name": "Xprotect", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8045001" + ], + "created_at": "2026-07-10T10:12:43.832387", + "updated_at": "2026-07-10T10:12:43.832387", + "url": "/v1/software/xprotect" +} diff --git a/site/public/v1/software/xps-annotator/index.json b/site/public/v1/software/xps-annotator/index.json new file mode 100644 index 000000000000..23b83603a648 --- /dev/null +++ b/site/public/v1/software/xps-annotator/index.json @@ -0,0 +1,19 @@ +{ + "id": 11408, + "slug": "xps-annotator", + "name": "XPS Annotator", + "release_date": "2009-03-12", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8042420" + ], + "created_at": "2026-07-10T10:12:43.832387", + "updated_at": "2026-07-10T10:12:43.832387", + "url": "/v1/software/xps-annotator" +} diff --git a/site/public/v1/software/xqf/index.json b/site/public/v1/software/xqf/index.json new file mode 100644 index 000000000000..805f3654804d --- /dev/null +++ b/site/public/v1/software/xqf/index.json @@ -0,0 +1,19 @@ +{ + "id": 11409, + "slug": "xqf", + "name": "XQF", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1054783" + ], + "created_at": "2026-07-10T10:12:43.832387", + "updated_at": "2026-07-10T10:12:43.832387", + "url": "/v1/software/xqf" +} diff --git a/site/public/v1/software/xrate/index.json b/site/public/v1/software/xrate/index.json new file mode 100644 index 000000000000..4c92f2fc11ec --- /dev/null +++ b/site/public/v1/software/xrate/index.json @@ -0,0 +1,19 @@ +{ + "id": 11410, + "slug": "xrate", + "name": "Xrate", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8045004" + ], + "created_at": "2026-07-10T10:12:43.833420", + "updated_at": "2026-07-10T10:12:43.833420", + "url": "/v1/software/xrate" +} diff --git a/site/public/v1/software/xrdb/index.json b/site/public/v1/software/xrdb/index.json new file mode 100644 index 000000000000..8e1e82f5ea3f --- /dev/null +++ b/site/public/v1/software/xrdb/index.json @@ -0,0 +1,23 @@ +{ + "id": 11411, + "slug": "xrdb", + "name": "xrdb", + "release_date": null, + "developers": [ + "Jim Gettys" + ], + "publishers": [], + "operating_systems": [ + "Unix-like operating system" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8045007" + ], + "created_at": "2026-07-10T10:12:43.833420", + "updated_at": "2026-07-10T10:12:43.833420", + "url": "/v1/software/xrdb" +} diff --git a/site/public/v1/software/xrootconsole/index.json b/site/public/v1/software/xrootconsole/index.json new file mode 100644 index 000000000000..1ba8da5530a7 --- /dev/null +++ b/site/public/v1/software/xrootconsole/index.json @@ -0,0 +1,19 @@ +{ + "id": 11412, + "slug": "xrootconsole", + "name": "xrootconsole", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60917908" + ], + "created_at": "2026-07-10T10:12:43.833420", + "updated_at": "2026-07-10T10:12:43.833420", + "url": "/v1/software/xrootconsole" +} diff --git a/site/public/v1/software/xsan/index.json b/site/public/v1/software/xsan/index.json new file mode 100644 index 000000000000..5ba5e8495bf7 --- /dev/null +++ b/site/public/v1/software/xsan/index.json @@ -0,0 +1,25 @@ +{ + "id": 11413, + "slug": "xsan", + "name": "Xsan", + "release_date": "2005-01-04", + "developers": [ + "Apple Inc." + ], + "publishers": [], + "operating_systems": [ + "macOS" + ], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1195367" + ], + "created_at": "2026-07-10T10:12:43.834327", + "updated_at": "2026-07-10T10:12:43.834327", + "url": "/v1/software/xsan" +} diff --git a/site/public/v1/software/xscope/index.json b/site/public/v1/software/xscope/index.json new file mode 100644 index 000000000000..1df6fc383c26 --- /dev/null +++ b/site/public/v1/software/xscope/index.json @@ -0,0 +1,21 @@ +{ + "id": 11414, + "slug": "xscope", + "name": "xScope", + "release_date": null, + "developers": [ + "The Iconfactory" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8042488" + ], + "created_at": "2026-07-10T10:12:43.834327", + "updated_at": "2026-07-10T10:12:43.834327", + "url": "/v1/software/xscope" +} diff --git a/site/public/v1/software/xsel/index.json b/site/public/v1/software/xsel/index.json new file mode 100644 index 000000000000..886b4693c06d --- /dev/null +++ b/site/public/v1/software/xsel/index.json @@ -0,0 +1,21 @@ +{ + "id": 11415, + "slug": "xsel", + "name": "xsel", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Unix-like operating system" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975588" + ], + "created_at": "2026-07-10T10:12:43.834327", + "updated_at": "2026-07-10T10:12:43.834327", + "url": "/v1/software/xsel" +} diff --git a/site/public/v1/software/xshell/index.json b/site/public/v1/software/xshell/index.json new file mode 100644 index 000000000000..96e9f99540fc --- /dev/null +++ b/site/public/v1/software/xshell/index.json @@ -0,0 +1,21 @@ +{ + "id": 11416, + "slug": "xshell", + "name": "Xshell", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q30325461" + ], + "created_at": "2026-07-10T10:12:43.835327", + "updated_at": "2026-07-10T10:12:43.835327", + "url": "/v1/software/xshell" +} diff --git a/site/public/v1/software/xsight/index.json b/site/public/v1/software/xsight/index.json new file mode 100644 index 000000000000..e961e519a777 --- /dev/null +++ b/site/public/v1/software/xsight/index.json @@ -0,0 +1,23 @@ +{ + "id": 11417, + "slug": "xsight", + "name": "XSight", + "release_date": null, + "developers": [ + "QSR International" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8042491" + ], + "created_at": "2026-07-10T10:12:43.835327", + "updated_at": "2026-07-10T10:12:43.835327", + "url": "/v1/software/xsight" +} diff --git a/site/public/v1/software/xslimmer/index.json b/site/public/v1/software/xslimmer/index.json new file mode 100644 index 000000000000..4c2877dc6ab1 --- /dev/null +++ b/site/public/v1/software/xslimmer/index.json @@ -0,0 +1,19 @@ +{ + "id": 11418, + "slug": "xslimmer", + "name": "Xslimmer", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8045020" + ], + "created_at": "2026-07-10T10:12:43.835327", + "updated_at": "2026-07-10T10:12:43.835327", + "url": "/v1/software/xslimmer" +} diff --git a/site/public/v1/software/xsokoban/index.json b/site/public/v1/software/xsokoban/index.json new file mode 100644 index 000000000000..b514cbcd21dd --- /dev/null +++ b/site/public/v1/software/xsokoban/index.json @@ -0,0 +1,23 @@ +{ + "id": 11419, + "slug": "xsokoban", + "name": "XSokoban", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "BSD" + ], + "programming_languages": [], + "licenses": [], + "genres": [ + "puzzle video game" + ], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q114336902" + ], + "created_at": "2026-07-10T10:12:43.835327", + "updated_at": "2026-07-10T10:12:43.835327", + "url": "/v1/software/xsokoban" +} diff --git a/site/public/v1/software/xsp/index.json b/site/public/v1/software/xsp/index.json new file mode 100644 index 000000000000..ff2c35208bd5 --- /dev/null +++ b/site/public/v1/software/xsp/index.json @@ -0,0 +1,19 @@ +{ + "id": 11420, + "slug": "xsp", + "name": "XSP", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1196845" + ], + "created_at": "2026-07-10T10:12:43.836323", + "updated_at": "2026-07-10T10:12:43.836323", + "url": "/v1/software/xsp" +} diff --git a/site/public/v1/software/xspider/index.json b/site/public/v1/software/xspider/index.json new file mode 100644 index 000000000000..011837b5b790 --- /dev/null +++ b/site/public/v1/software/xspider/index.json @@ -0,0 +1,19 @@ +{ + "id": 11421, + "slug": "xspider", + "name": "XSpider", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4053336" + ], + "created_at": "2026-07-10T10:12:43.836323", + "updated_at": "2026-07-10T10:12:43.836323", + "url": "/v1/software/xspider" +} diff --git a/site/public/v1/software/xsplash/index.json b/site/public/v1/software/xsplash/index.json new file mode 100644 index 000000000000..3a97456f0161 --- /dev/null +++ b/site/public/v1/software/xsplash/index.json @@ -0,0 +1,19 @@ +{ + "id": 11422, + "slug": "xsplash", + "name": "XSplash", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3347240" + ], + "created_at": "2026-07-10T10:12:43.837326", + "updated_at": "2026-07-10T10:12:43.837326", + "url": "/v1/software/xsplash" +} diff --git a/site/public/v1/software/xsugar/index.json b/site/public/v1/software/xsugar/index.json new file mode 100644 index 000000000000..7228831d39b9 --- /dev/null +++ b/site/public/v1/software/xsugar/index.json @@ -0,0 +1,19 @@ +{ + "id": 11423, + "slug": "xsugar", + "name": "XSugar", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084778" + ], + "created_at": "2026-07-10T10:12:43.837326", + "updated_at": "2026-07-10T10:12:43.837326", + "url": "/v1/software/xsugar" +} diff --git a/site/public/v1/software/xt9/index.json b/site/public/v1/software/xt9/index.json new file mode 100644 index 000000000000..bd4e9968747c --- /dev/null +++ b/site/public/v1/software/xt9/index.json @@ -0,0 +1,19 @@ +{ + "id": 11424, + "slug": "xt9", + "name": "XT9", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8042495" + ], + "created_at": "2026-07-10T10:12:43.837326", + "updated_at": "2026-07-10T10:12:43.837326", + "url": "/v1/software/xt9" +} diff --git a/site/public/v1/software/xtnd/index.json b/site/public/v1/software/xtnd/index.json new file mode 100644 index 000000000000..1d7b27a2e9b7 --- /dev/null +++ b/site/public/v1/software/xtnd/index.json @@ -0,0 +1,21 @@ +{ + "id": 11425, + "slug": "xtnd", + "name": "XTND", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Classic Mac OS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8042505" + ], + "created_at": "2026-07-10T10:12:43.837326", + "updated_at": "2026-07-10T10:12:43.837326", + "url": "/v1/software/xtnd" +} diff --git a/site/public/v1/software/xtrackcad/index.json b/site/public/v1/software/xtrackcad/index.json new file mode 100644 index 000000000000..2882c1c98262 --- /dev/null +++ b/site/public/v1/software/xtrackcad/index.json @@ -0,0 +1,19 @@ +{ + "id": 11426, + "slug": "xtrackcad", + "name": "XTrackCAD", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q51060438" + ], + "created_at": "2026-07-10T10:12:43.838326", + "updated_at": "2026-07-10T10:12:43.838326", + "url": "/v1/software/xtrackcad" +} diff --git a/site/public/v1/software/xtrans/index.json b/site/public/v1/software/xtrans/index.json new file mode 100644 index 000000000000..b850aebddcc0 --- /dev/null +++ b/site/public/v1/software/xtrans/index.json @@ -0,0 +1,25 @@ +{ + "id": 11427, + "slug": "xtrans", + "name": "XTrans", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [ + "Python" + ], + "licenses": [ + "GNU General Public License, version 3.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105076395" + ], + "created_at": "2026-07-10T10:12:43.838326", + "updated_at": "2026-07-10T10:12:43.838326", + "url": "/v1/software/xtrans" +} diff --git a/site/public/v1/software/xvid4conf/index.json b/site/public/v1/software/xvid4conf/index.json new file mode 100644 index 000000000000..2de0f18bf6fc --- /dev/null +++ b/site/public/v1/software/xvid4conf/index.json @@ -0,0 +1,19 @@ +{ + "id": 11428, + "slug": "xvid4conf", + "name": "xvid4conf", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065643" + ], + "created_at": "2026-07-10T10:12:43.838326", + "updated_at": "2026-07-10T10:12:43.838326", + "url": "/v1/software/xvid4conf" +} diff --git a/site/public/v1/software/xwallpaper/index.json b/site/public/v1/software/xwallpaper/index.json new file mode 100644 index 000000000000..f89a31eba43f --- /dev/null +++ b/site/public/v1/software/xwallpaper/index.json @@ -0,0 +1,19 @@ +{ + "id": 11429, + "slug": "xwallpaper", + "name": "xwallpaper", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065042" + ], + "created_at": "2026-07-10T10:12:43.839384", + "updated_at": "2026-07-10T10:12:43.839384", + "url": "/v1/software/xwallpaper" +} diff --git a/site/public/v1/software/xx-messenger/index.json b/site/public/v1/software/xx-messenger/index.json new file mode 100644 index 000000000000..5b3a65e97857 --- /dev/null +++ b/site/public/v1/software/xx-messenger/index.json @@ -0,0 +1,19 @@ +{ + "id": 11430, + "slug": "xx-messenger", + "name": "Xx messenger", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113993491" + ], + "created_at": "2026-07-10T10:12:43.839384", + "updated_at": "2026-07-10T10:12:43.839384", + "url": "/v1/software/xx-messenger" +} diff --git a/site/public/v1/software/xxdi/index.json b/site/public/v1/software/xxdi/index.json new file mode 100644 index 000000000000..f1efc2fae499 --- /dev/null +++ b/site/public/v1/software/xxdi/index.json @@ -0,0 +1,21 @@ +{ + "id": 11431, + "slug": "xxdi", + "name": "xxdi", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "GNU General Public License, version 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106102032" + ], + "created_at": "2026-07-10T10:12:43.839384", + "updated_at": "2026-07-10T10:12:43.839384", + "url": "/v1/software/xxdi" +} diff --git a/site/public/v1/software/xxdiff/index.json b/site/public/v1/software/xxdiff/index.json new file mode 100644 index 000000000000..d33cc4dab926 --- /dev/null +++ b/site/public/v1/software/xxdiff/index.json @@ -0,0 +1,23 @@ +{ + "id": 11432, + "slug": "xxdiff", + "name": "xxdiff", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "macOS" + ], + "programming_languages": [], + "licenses": [ + "GNU General Public License, version 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116867871" + ], + "created_at": "2026-07-10T10:12:43.839384", + "updated_at": "2026-07-10T10:12:43.839384", + "url": "/v1/software/xxdiff" +} diff --git a/site/public/v1/software/xyzzy/index.json b/site/public/v1/software/xyzzy/index.json new file mode 100644 index 000000000000..dfc3b51fb403 --- /dev/null +++ b/site/public/v1/software/xyzzy/index.json @@ -0,0 +1,21 @@ +{ + "id": 11433, + "slug": "xyzzy", + "name": "xyzzy", + "release_date": null, + "developers": [ + "Tetsuya Kamei" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11254873" + ], + "created_at": "2026-07-10T10:12:43.840434", + "updated_at": "2026-07-10T10:12:43.840434", + "url": "/v1/software/xyzzy" +} diff --git a/site/public/v1/software/y-cruncher/index.json b/site/public/v1/software/y-cruncher/index.json new file mode 100644 index 000000000000..7506d9261c27 --- /dev/null +++ b/site/public/v1/software/y-cruncher/index.json @@ -0,0 +1,23 @@ +{ + "id": 11434, + "slug": "y-cruncher", + "name": "y-cruncher", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "3-clause BSD License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q97176725" + ], + "created_at": "2026-07-10T10:12:43.840434", + "updated_at": "2026-07-10T10:12:43.840434", + "url": "/v1/software/y-cruncher" +} diff --git a/site/public/v1/software/y-na/index.json b/site/public/v1/software/y-na/index.json new file mode 100644 index 000000000000..f78f4627ef5f --- /dev/null +++ b/site/public/v1/software/y-na/index.json @@ -0,0 +1,19 @@ +{ + "id": 11435, + "slug": "y-na", + "name": "Yāna", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084779" + ], + "created_at": "2026-07-10T10:12:43.841329", + "updated_at": "2026-07-10T10:12:43.841329", + "url": "/v1/software/y-na" +} diff --git a/site/public/v1/software/yabasic/index.json b/site/public/v1/software/yabasic/index.json new file mode 100644 index 000000000000..838e179295cd --- /dev/null +++ b/site/public/v1/software/yabasic/index.json @@ -0,0 +1,24 @@ +{ + "id": 11436, + "slug": "yabasic", + "name": "Yabasic", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Unix-like operating system", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1930734" + ], + "created_at": "2026-07-10T10:12:43.841329", + "updated_at": "2026-07-10T10:12:43.841329", + "url": "/v1/software/yabasic" +} diff --git a/site/public/v1/software/yac/index.json b/site/public/v1/software/yac/index.json new file mode 100644 index 000000000000..461841939094 --- /dev/null +++ b/site/public/v1/software/yac/index.json @@ -0,0 +1,19 @@ +{ + "id": 11437, + "slug": "yac", + "name": "Yac", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135992124" + ], + "created_at": "2026-07-10T10:12:43.841329", + "updated_at": "2026-07-10T10:12:43.841329", + "url": "/v1/software/yac" +} diff --git a/site/public/v1/software/yadavar-check/index.json b/site/public/v1/software/yadavar-check/index.json new file mode 100644 index 000000000000..49cf984e5c4c --- /dev/null +++ b/site/public/v1/software/yadavar-check/index.json @@ -0,0 +1,21 @@ +{ + "id": 11438, + "slug": "yadavar-check", + "name": "Yadavar check", + "release_date": null, + "developers": [ + "TaxiApps" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138388746" + ], + "created_at": "2026-07-10T10:12:43.841329", + "updated_at": "2026-07-10T10:12:43.841329", + "url": "/v1/software/yadavar-check" +} diff --git a/site/public/v1/software/yaffs-utils/index.json b/site/public/v1/software/yaffs-utils/index.json new file mode 100644 index 000000000000..707d023799df --- /dev/null +++ b/site/public/v1/software/yaffs-utils/index.json @@ -0,0 +1,19 @@ +{ + "id": 11439, + "slug": "yaffs-utils", + "name": "yaffs-utils", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975590" + ], + "created_at": "2026-07-10T10:12:43.842327", + "updated_at": "2026-07-10T10:12:43.842327", + "url": "/v1/software/yaffs-utils" +} diff --git a/site/public/v1/software/yaffs2-utils/index.json b/site/public/v1/software/yaffs2-utils/index.json new file mode 100644 index 000000000000..12794f589d2a --- /dev/null +++ b/site/public/v1/software/yaffs2-utils/index.json @@ -0,0 +1,19 @@ +{ + "id": 11440, + "slug": "yaffs2-utils", + "name": "yaffs2-utils", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975589" + ], + "created_at": "2026-07-10T10:12:43.842327", + "updated_at": "2026-07-10T10:12:43.842327", + "url": "/v1/software/yaffs2-utils" +} diff --git a/site/public/v1/software/yagf/index.json b/site/public/v1/software/yagf/index.json new file mode 100644 index 000000000000..219885b25326 --- /dev/null +++ b/site/public/v1/software/yagf/index.json @@ -0,0 +1,19 @@ +{ + "id": 11441, + "slug": "yagf", + "name": "YAGF", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4053417" + ], + "created_at": "2026-07-10T10:12:43.843327", + "updated_at": "2026-07-10T10:12:43.843327", + "url": "/v1/software/yagf" +} diff --git a/site/public/v1/software/yahoo-assistant/index.json b/site/public/v1/software/yahoo-assistant/index.json new file mode 100644 index 000000000000..536dd19e83fe --- /dev/null +++ b/site/public/v1/software/yahoo-assistant/index.json @@ -0,0 +1,19 @@ +{ + "id": 11442, + "slug": "yahoo-assistant", + "name": "Yahoo! Assistant", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8046834" + ], + "created_at": "2026-07-10T10:12:43.843327", + "updated_at": "2026-07-10T10:12:43.843327", + "url": "/v1/software/yahoo-assistant" +} diff --git a/site/public/v1/software/yahoo-calendar/index.json b/site/public/v1/software/yahoo-calendar/index.json new file mode 100644 index 000000000000..e554252f4058 --- /dev/null +++ b/site/public/v1/software/yahoo-calendar/index.json @@ -0,0 +1,21 @@ +{ + "id": 11443, + "slug": "yahoo-calendar", + "name": "Yahoo! Calendar", + "release_date": null, + "developers": [ + "Yahoo" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1412327" + ], + "created_at": "2026-07-10T10:12:43.843327", + "updated_at": "2026-07-10T10:12:43.843327", + "url": "/v1/software/yahoo-calendar" +} diff --git a/site/public/v1/software/yahoo-go/index.json b/site/public/v1/software/yahoo-go/index.json new file mode 100644 index 000000000000..c6e9f8cceb7a --- /dev/null +++ b/site/public/v1/software/yahoo-go/index.json @@ -0,0 +1,21 @@ +{ + "id": 11444, + "slug": "yahoo-go", + "name": "Yahoo! Go", + "release_date": null, + "developers": [ + "Yahoo" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8046843" + ], + "created_at": "2026-07-10T10:12:43.843327", + "updated_at": "2026-07-10T10:12:43.843327", + "url": "/v1/software/yahoo-go" +} diff --git a/site/public/v1/software/yahoo-messenger/index.json b/site/public/v1/software/yahoo-messenger/index.json new file mode 100644 index 000000000000..cba5bb2a7e2e --- /dev/null +++ b/site/public/v1/software/yahoo-messenger/index.json @@ -0,0 +1,23 @@ +{ + "id": 11445, + "slug": "yahoo-messenger", + "name": "Yahoo! Messenger", + "release_date": null, + "developers": [ + "Yahoo" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q71694" + ], + "created_at": "2026-07-10T10:12:43.844326", + "updated_at": "2026-07-10T10:12:43.844326", + "url": "/v1/software/yahoo-messenger" +} diff --git a/site/public/v1/software/yahoo-music-jukebox/index.json b/site/public/v1/software/yahoo-music-jukebox/index.json new file mode 100644 index 000000000000..d38ccba81fce --- /dev/null +++ b/site/public/v1/software/yahoo-music-jukebox/index.json @@ -0,0 +1,23 @@ +{ + "id": 11446, + "slug": "yahoo-music-jukebox", + "name": "Yahoo! Music Jukebox", + "release_date": null, + "developers": [ + "Yahoo" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8046858" + ], + "created_at": "2026-07-10T10:12:43.844326", + "updated_at": "2026-07-10T10:12:43.844326", + "url": "/v1/software/yahoo-music-jukebox" +} diff --git a/site/public/v1/software/yahoo-music-radio/index.json b/site/public/v1/software/yahoo-music-radio/index.json new file mode 100644 index 000000000000..d528a29f0931 --- /dev/null +++ b/site/public/v1/software/yahoo-music-radio/index.json @@ -0,0 +1,21 @@ +{ + "id": 11447, + "slug": "yahoo-music-radio", + "name": "Yahoo! Music Radio", + "release_date": "1999-11-11", + "developers": [ + "LAUNCH Media" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4199496" + ], + "created_at": "2026-07-10T10:12:43.844326", + "updated_at": "2026-07-10T10:12:43.844326", + "url": "/v1/software/yahoo-music-radio" +} diff --git a/site/public/v1/software/yahoo-sherpa/index.json b/site/public/v1/software/yahoo-sherpa/index.json new file mode 100644 index 000000000000..0cc3d1e6b8a1 --- /dev/null +++ b/site/public/v1/software/yahoo-sherpa/index.json @@ -0,0 +1,21 @@ +{ + "id": 11448, + "slug": "yahoo-sherpa", + "name": "Yahoo Sherpa", + "release_date": null, + "developers": [ + "Yahoo" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8046888" + ], + "created_at": "2026-07-10T10:12:43.844326", + "updated_at": "2026-07-10T10:12:43.844326", + "url": "/v1/software/yahoo-sherpa" +} diff --git a/site/public/v1/software/yahoo-voice/index.json b/site/public/v1/software/yahoo-voice/index.json new file mode 100644 index 000000000000..ac015eb3f11d --- /dev/null +++ b/site/public/v1/software/yahoo-voice/index.json @@ -0,0 +1,21 @@ +{ + "id": 11449, + "slug": "yahoo-voice", + "name": "Yahoo! Voice", + "release_date": null, + "developers": [ + "Yahoo" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8046879" + ], + "created_at": "2026-07-10T10:12:43.845432", + "updated_at": "2026-07-10T10:12:43.845432", + "url": "/v1/software/yahoo-voice" +} diff --git a/site/public/v1/software/yahoo-widgets/index.json b/site/public/v1/software/yahoo-widgets/index.json new file mode 100644 index 000000000000..c4a4e1bee046 --- /dev/null +++ b/site/public/v1/software/yahoo-widgets/index.json @@ -0,0 +1,19 @@ +{ + "id": 11450, + "slug": "yahoo-widgets", + "name": "Yahoo! Widgets", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1779772" + ], + "created_at": "2026-07-10T10:12:43.845432", + "updated_at": "2026-07-10T10:12:43.845432", + "url": "/v1/software/yahoo-widgets" +} diff --git a/site/public/v1/software/yakyak/index.json b/site/public/v1/software/yakyak/index.json new file mode 100644 index 000000000000..45512e8c0f93 --- /dev/null +++ b/site/public/v1/software/yakyak/index.json @@ -0,0 +1,23 @@ +{ + "id": 11451, + "slug": "yakyak", + "name": "yakyak", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "CoffeeScript" + ], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q47487588" + ], + "created_at": "2026-07-10T10:12:43.845432", + "updated_at": "2026-07-10T10:12:43.845432", + "url": "/v1/software/yakyak" +} diff --git a/site/public/v1/software/yandex-direct/index.json b/site/public/v1/software/yandex-direct/index.json new file mode 100644 index 000000000000..82696e8d9826 --- /dev/null +++ b/site/public/v1/software/yandex-direct/index.json @@ -0,0 +1,21 @@ +{ + "id": 11452, + "slug": "yandex-direct", + "name": "Yandex Direct", + "release_date": null, + "developers": [ + "Yandex" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3557997" + ], + "created_at": "2026-07-10T10:12:43.846393", + "updated_at": "2026-07-10T10:12:43.846393", + "url": "/v1/software/yandex-direct" +} diff --git a/site/public/v1/software/yandex-metro/index.json b/site/public/v1/software/yandex-metro/index.json new file mode 100644 index 000000000000..2317dad03cd7 --- /dev/null +++ b/site/public/v1/software/yandex-metro/index.json @@ -0,0 +1,30 @@ +{ + "id": 11453, + "slug": "yandex-metro", + "name": "Yandex.Metro", + "release_date": "2008-09-01", + "developers": [ + "Yandex" + ], + "publishers": [], + "operating_systems": [ + "Windows Phone", + "iOS", + "Windows Mobile" + ], + "programming_languages": [ + "JSON", + "XML" + ], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q85869255" + ], + "created_at": "2026-07-10T10:12:43.846393", + "updated_at": "2026-07-10T10:12:43.846393", + "url": "/v1/software/yandex-metro" +} diff --git a/site/public/v1/software/yandex-navigator/index.json b/site/public/v1/software/yandex-navigator/index.json new file mode 100644 index 000000000000..22a3562231da --- /dev/null +++ b/site/public/v1/software/yandex-navigator/index.json @@ -0,0 +1,25 @@ +{ + "id": 11454, + "slug": "yandex-navigator", + "name": "Yandex.Navigator", + "release_date": null, + "developers": [ + "Yandex" + ], + "publishers": [], + "operating_systems": [ + "Windows Phone 8.1", + "iOS", + "Windows Phone 8" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16723298" + ], + "created_at": "2026-07-10T10:12:43.846393", + "updated_at": "2026-07-10T10:12:43.846393", + "url": "/v1/software/yandex-navigator" +} diff --git a/site/public/v1/software/yandex-panoramas/index.json b/site/public/v1/software/yandex-panoramas/index.json new file mode 100644 index 000000000000..c918a0b96ee7 --- /dev/null +++ b/site/public/v1/software/yandex-panoramas/index.json @@ -0,0 +1,21 @@ +{ + "id": 11455, + "slug": "yandex-panoramas", + "name": "Yandex Panoramas", + "release_date": "2009-01-01", + "developers": [ + "Yandex" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4537992" + ], + "created_at": "2026-07-10T10:12:43.847394", + "updated_at": "2026-07-10T10:12:43.847394", + "url": "/v1/software/yandex-panoramas" +} diff --git a/site/public/v1/software/yandex-shell/index.json b/site/public/v1/software/yandex-shell/index.json new file mode 100644 index 000000000000..a5a732f3c617 --- /dev/null +++ b/site/public/v1/software/yandex-shell/index.json @@ -0,0 +1,21 @@ +{ + "id": 11456, + "slug": "yandex-shell", + "name": "Yandex.Shell", + "release_date": null, + "developers": [ + "Yandex" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q16723292" + ], + "created_at": "2026-07-10T10:12:43.847394", + "updated_at": "2026-07-10T10:12:43.847394", + "url": "/v1/software/yandex-shell" +} diff --git a/site/public/v1/software/yandex-speechkit/index.json b/site/public/v1/software/yandex-speechkit/index.json new file mode 100644 index 000000000000..5adb47fee4ff --- /dev/null +++ b/site/public/v1/software/yandex-speechkit/index.json @@ -0,0 +1,21 @@ +{ + "id": 11457, + "slug": "yandex-speechkit", + "name": "Yandex.SpeechKit", + "release_date": "2013-01-01", + "developers": [ + "Yandex" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q15617522" + ], + "created_at": "2026-07-10T10:12:43.847394", + "updated_at": "2026-07-10T10:12:43.847394", + "url": "/v1/software/yandex-speechkit" +} diff --git a/site/public/v1/software/yandex-traffic/index.json b/site/public/v1/software/yandex-traffic/index.json new file mode 100644 index 000000000000..68735a10a6d6 --- /dev/null +++ b/site/public/v1/software/yandex-traffic/index.json @@ -0,0 +1,21 @@ +{ + "id": 11458, + "slug": "yandex-traffic", + "name": "Yandex.Traffic", + "release_date": null, + "developers": [ + "Yandex" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q15715475" + ], + "created_at": "2026-07-10T10:12:43.847394", + "updated_at": "2026-07-10T10:12:43.847394", + "url": "/v1/software/yandex-traffic" +} diff --git a/site/public/v1/software/yanel/index.json b/site/public/v1/software/yanel/index.json new file mode 100644 index 000000000000..e2cb4aa6d8a2 --- /dev/null +++ b/site/public/v1/software/yanel/index.json @@ -0,0 +1,21 @@ +{ + "id": 11459, + "slug": "yanel", + "name": "Yanel", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Java" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q545369" + ], + "created_at": "2026-07-10T10:12:43.848416", + "updated_at": "2026-07-10T10:12:43.848416", + "url": "/v1/software/yanel" +} diff --git a/site/public/v1/software/yanosik/index.json b/site/public/v1/software/yanosik/index.json new file mode 100644 index 000000000000..e94654dfc30b --- /dev/null +++ b/site/public/v1/software/yanosik/index.json @@ -0,0 +1,19 @@ +{ + "id": 11460, + "slug": "yanosik", + "name": "Yanosik", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25400668" + ], + "created_at": "2026-07-10T10:12:43.848416", + "updated_at": "2026-07-10T10:12:43.848416", + "url": "/v1/software/yanosik" +} diff --git a/site/public/v1/software/yaourt/index.json b/site/public/v1/software/yaourt/index.json new file mode 100644 index 000000000000..5661dc250043 --- /dev/null +++ b/site/public/v1/software/yaourt/index.json @@ -0,0 +1,19 @@ +{ + "id": 11461, + "slug": "yaourt", + "name": "Yaourt", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3571855" + ], + "created_at": "2026-07-10T10:12:43.849379", + "updated_at": "2026-07-10T10:12:43.849379", + "url": "/v1/software/yaourt" +} diff --git a/site/public/v1/software/yap/index.json b/site/public/v1/software/yap/index.json new file mode 100644 index 000000000000..f108129aae72 --- /dev/null +++ b/site/public/v1/software/yap/index.json @@ -0,0 +1,21 @@ +{ + "id": 11462, + "slug": "yap", + "name": "YAP", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Artistic License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8045821" + ], + "created_at": "2026-07-10T10:12:43.849379", + "updated_at": "2026-07-10T10:12:43.849379", + "url": "/v1/software/yap" +} diff --git a/site/public/v1/software/yarnnn/index.json b/site/public/v1/software/yarnnn/index.json new file mode 100644 index 000000000000..234c0d858624 --- /dev/null +++ b/site/public/v1/software/yarnnn/index.json @@ -0,0 +1,19 @@ +{ + "id": 11463, + "slug": "yarnnn", + "name": "yarnnn", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140460241" + ], + "created_at": "2026-07-10T10:12:43.849379", + "updated_at": "2026-07-10T10:12:43.849379", + "url": "/v1/software/yarnnn" +} diff --git a/site/public/v1/software/yaserde/index.json b/site/public/v1/software/yaserde/index.json new file mode 100644 index 000000000000..1cbf5678eea2 --- /dev/null +++ b/site/public/v1/software/yaserde/index.json @@ -0,0 +1,21 @@ +{ + "id": 11464, + "slug": "yaserde", + "name": "yaserde", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60868886" + ], + "created_at": "2026-07-10T10:12:43.849379", + "updated_at": "2026-07-10T10:12:43.849379", + "url": "/v1/software/yaserde" +} diff --git a/site/public/v1/software/ycomp/index.json b/site/public/v1/software/ycomp/index.json new file mode 100644 index 000000000000..6564376c1239 --- /dev/null +++ b/site/public/v1/software/ycomp/index.json @@ -0,0 +1,21 @@ +{ + "id": 11465, + "slug": "ycomp", + "name": "yComp", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Java" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125399454" + ], + "created_at": "2026-07-10T10:12:43.850397", + "updated_at": "2026-07-10T10:12:43.850397", + "url": "/v1/software/ycomp" +} diff --git a/site/public/v1/software/yed-files/index.json b/site/public/v1/software/yed-files/index.json new file mode 100644 index 000000000000..d0dba23005e4 --- /dev/null +++ b/site/public/v1/software/yed-files/index.json @@ -0,0 +1,19 @@ +{ + "id": 11466, + "slug": "yed-files", + "name": "yED Files", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084780" + ], + "created_at": "2026-07-10T10:12:43.850397", + "updated_at": "2026-07-10T10:12:43.850397", + "url": "/v1/software/yed-files" +} diff --git a/site/public/v1/software/yencode/index.json b/site/public/v1/software/yencode/index.json new file mode 100644 index 000000000000..6eeb283e06a0 --- /dev/null +++ b/site/public/v1/software/yencode/index.json @@ -0,0 +1,19 @@ +{ + "id": 11467, + "slug": "yencode", + "name": "yencode", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065404" + ], + "created_at": "2026-07-10T10:12:43.850397", + "updated_at": "2026-07-10T10:12:43.850397", + "url": "/v1/software/yencode" +} diff --git a/site/public/v1/software/yenka/index.json b/site/public/v1/software/yenka/index.json new file mode 100644 index 000000000000..c7467f598473 --- /dev/null +++ b/site/public/v1/software/yenka/index.json @@ -0,0 +1,19 @@ +{ + "id": 11468, + "slug": "yenka", + "name": "Yenka", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8052367" + ], + "created_at": "2026-07-10T10:12:43.851400", + "updated_at": "2026-07-10T10:12:43.851400", + "url": "/v1/software/yenka" +} diff --git a/site/public/v1/software/yep/index.json b/site/public/v1/software/yep/index.json new file mode 100644 index 000000000000..58ff225c8268 --- /dev/null +++ b/site/public/v1/software/yep/index.json @@ -0,0 +1,21 @@ +{ + "id": 11469, + "slug": "yep", + "name": "Yep", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "macOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8052512" + ], + "created_at": "2026-07-10T10:12:43.851400", + "updated_at": "2026-07-10T10:12:43.851400", + "url": "/v1/software/yep" +} diff --git a/site/public/v1/software/yes-really/index.json b/site/public/v1/software/yes-really/index.json new file mode 100644 index 000000000000..61b885ede925 --- /dev/null +++ b/site/public/v1/software/yes-really/index.json @@ -0,0 +1,23 @@ +{ + "id": 11470, + "slug": "yes-really", + "name": "Yes, Really", + "release_date": "2010-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "PHP" + ], + "licenses": [], + "genres": [ + "electronic literature" + ], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q109713976" + ], + "created_at": "2026-07-10T10:12:43.851400", + "updated_at": "2026-07-10T10:12:43.851400", + "url": "/v1/software/yes-really" +} diff --git a/site/public/v1/software/yesim/index.json b/site/public/v1/software/yesim/index.json new file mode 100644 index 000000000000..9533ff4847b4 --- /dev/null +++ b/site/public/v1/software/yesim/index.json @@ -0,0 +1,19 @@ +{ + "id": 11471, + "slug": "yesim", + "name": "Yesim", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q136756957" + ], + "created_at": "2026-07-10T10:12:43.852384", + "updated_at": "2026-07-10T10:12:43.852384", + "url": "/v1/software/yesim" +} diff --git a/site/public/v1/software/yesmancoin/index.json b/site/public/v1/software/yesmancoin/index.json new file mode 100644 index 000000000000..0527630a62f4 --- /dev/null +++ b/site/public/v1/software/yesmancoin/index.json @@ -0,0 +1,23 @@ +{ + "id": 11472, + "slug": "yesmancoin", + "name": "YesManCoin", + "release_date": "2018-02-22", + "developers": [ + "Yes Man Enterprises" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Solidity" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60446561" + ], + "created_at": "2026-07-10T10:12:43.852384", + "updated_at": "2026-07-10T10:12:43.852384", + "url": "/v1/software/yesmancoin" +} diff --git a/site/public/v1/software/yieldigo/index.json b/site/public/v1/software/yieldigo/index.json new file mode 100644 index 000000000000..dfb82d3355e1 --- /dev/null +++ b/site/public/v1/software/yieldigo/index.json @@ -0,0 +1,19 @@ +{ + "id": 11473, + "slug": "yieldigo", + "name": "Yieldigo", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139891215" + ], + "created_at": "2026-07-10T10:12:43.852384", + "updated_at": "2026-07-10T10:12:43.852384", + "url": "/v1/software/yieldigo" +} diff --git a/site/public/v1/software/yieldstar/index.json b/site/public/v1/software/yieldstar/index.json new file mode 100644 index 000000000000..8116b575eb86 --- /dev/null +++ b/site/public/v1/software/yieldstar/index.json @@ -0,0 +1,19 @@ +{ + "id": 11474, + "slug": "yieldstar", + "name": "YieldStar", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116463188" + ], + "created_at": "2026-07-10T10:12:43.853396", + "updated_at": "2026-07-10T10:12:43.853396", + "url": "/v1/software/yieldstar" +} diff --git a/site/public/v1/software/yinztagram/index.json b/site/public/v1/software/yinztagram/index.json new file mode 100644 index 000000000000..343e78d3afbf --- /dev/null +++ b/site/public/v1/software/yinztagram/index.json @@ -0,0 +1,23 @@ +{ + "id": 11475, + "slug": "yinztagram", + "name": "Yinztagram", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "iOS" + ], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8053777" + ], + "created_at": "2026-07-10T10:12:43.853396", + "updated_at": "2026-07-10T10:12:43.853396", + "url": "/v1/software/yinztagram" +} diff --git a/site/public/v1/software/yixin/index.json b/site/public/v1/software/yixin/index.json new file mode 100644 index 000000000000..a81cd832446e --- /dev/null +++ b/site/public/v1/software/yixin/index.json @@ -0,0 +1,19 @@ +{ + "id": 11476, + "slug": "yixin", + "name": "Yixin", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q36218339" + ], + "created_at": "2026-07-10T10:12:43.853396", + "updated_at": "2026-07-10T10:12:43.853396", + "url": "/v1/software/yixin" +} diff --git a/site/public/v1/software/ykclient/index.json b/site/public/v1/software/ykclient/index.json new file mode 100644 index 000000000000..3031020fe5f0 --- /dev/null +++ b/site/public/v1/software/ykclient/index.json @@ -0,0 +1,19 @@ +{ + "id": 11477, + "slug": "ykclient", + "name": "ykclient", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065432" + ], + "created_at": "2026-07-10T10:12:43.854387", + "updated_at": "2026-07-10T10:12:43.854387", + "url": "/v1/software/ykclient" +} diff --git a/site/public/v1/software/yo/index.json b/site/public/v1/software/yo/index.json new file mode 100644 index 000000000000..c09a478d7045 --- /dev/null +++ b/site/public/v1/software/yo/index.json @@ -0,0 +1,19 @@ +{ + "id": 11478, + "slug": "yo", + "name": "Yo", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17627617" + ], + "created_at": "2026-07-10T10:12:43.854387", + "updated_at": "2026-07-10T10:12:43.854387", + "url": "/v1/software/yo" +} diff --git a/site/public/v1/software/yodl/index.json b/site/public/v1/software/yodl/index.json new file mode 100644 index 000000000000..c80486e26e10 --- /dev/null +++ b/site/public/v1/software/yodl/index.json @@ -0,0 +1,19 @@ +{ + "id": 11479, + "slug": "yodl", + "name": "yodl", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q63065318" + ], + "created_at": "2026-07-10T10:12:43.854387", + "updated_at": "2026-07-10T10:12:43.854387", + "url": "/v1/software/yodl" +} diff --git a/site/public/v1/software/yofacturo/index.json b/site/public/v1/software/yofacturo/index.json new file mode 100644 index 000000000000..9e4ff15ba98e --- /dev/null +++ b/site/public/v1/software/yofacturo/index.json @@ -0,0 +1,19 @@ +{ + "id": 11480, + "slug": "yofacturo", + "name": "YoFacturo", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140343628" + ], + "created_at": "2026-07-10T10:12:43.855397", + "updated_at": "2026-07-10T10:12:43.855397", + "url": "/v1/software/yofacturo" +} diff --git a/site/public/v1/software/yohioloid/index.json b/site/public/v1/software/yohioloid/index.json new file mode 100644 index 000000000000..a4f97b919150 --- /dev/null +++ b/site/public/v1/software/yohioloid/index.json @@ -0,0 +1,21 @@ +{ + "id": 11481, + "slug": "yohioloid", + "name": "Yohioloid", + "release_date": "2013-09-10", + "developers": [ + "PowerFX" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q24910856" + ], + "created_at": "2026-07-10T10:12:43.855397", + "updated_at": "2026-07-10T10:12:43.855397", + "url": "/v1/software/yohioloid" +} diff --git a/site/public/v1/software/yojimbo/index.json b/site/public/v1/software/yojimbo/index.json new file mode 100644 index 000000000000..f3c8285d35e6 --- /dev/null +++ b/site/public/v1/software/yojimbo/index.json @@ -0,0 +1,23 @@ +{ + "id": 11482, + "slug": "yojimbo", + "name": "Yojimbo", + "release_date": null, + "developers": [ + "Bare Bones Software" + ], + "publishers": [], + "operating_systems": [ + "macOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8054531" + ], + "created_at": "2026-07-10T10:12:43.855397", + "updated_at": "2026-07-10T10:12:43.855397", + "url": "/v1/software/yojimbo" +} diff --git a/site/public/v1/software/yolo/index.json b/site/public/v1/software/yolo/index.json new file mode 100644 index 000000000000..757395fe11d9 --- /dev/null +++ b/site/public/v1/software/yolo/index.json @@ -0,0 +1,19 @@ +{ + "id": 11483, + "slug": "yolo", + "name": "YOLO", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112181165" + ], + "created_at": "2026-07-10T10:12:43.855397", + "updated_at": "2026-07-10T10:12:43.855397", + "url": "/v1/software/yolo" +} diff --git a/site/public/v1/software/yono-lite/index.json b/site/public/v1/software/yono-lite/index.json new file mode 100644 index 000000000000..91f60eec5018 --- /dev/null +++ b/site/public/v1/software/yono-lite/index.json @@ -0,0 +1,19 @@ +{ + "id": 11484, + "slug": "yono-lite", + "name": "Yono Lite", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q113449935" + ], + "created_at": "2026-07-10T10:12:43.856430", + "updated_at": "2026-07-10T10:12:43.856430", + "url": "/v1/software/yono-lite" +} diff --git a/site/public/v1/software/yono/index.json b/site/public/v1/software/yono/index.json new file mode 100644 index 000000000000..e6a356359ae0 --- /dev/null +++ b/site/public/v1/software/yono/index.json @@ -0,0 +1,19 @@ +{ + "id": 11485, + "slug": "yono", + "name": "YONO", + "release_date": "2017-11-24", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q45907785" + ], + "created_at": "2026-07-10T10:12:43.856430", + "updated_at": "2026-07-10T10:12:43.856430", + "url": "/v1/software/yono" +} diff --git a/site/public/v1/software/yorba/index.json b/site/public/v1/software/yorba/index.json new file mode 100644 index 000000000000..3062fa38f8e1 --- /dev/null +++ b/site/public/v1/software/yorba/index.json @@ -0,0 +1,19 @@ +{ + "id": 11486, + "slug": "yorba", + "name": "Yorba", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q137591252" + ], + "created_at": "2026-07-10T10:12:43.856430", + "updated_at": "2026-07-10T10:12:43.856430", + "url": "/v1/software/yorba" +} diff --git a/site/public/v1/software/yoshikoder/index.json b/site/public/v1/software/yoshikoder/index.json new file mode 100644 index 000000000000..fc8b1d73fb35 --- /dev/null +++ b/site/public/v1/software/yoshikoder/index.json @@ -0,0 +1,26 @@ +{ + "id": 11487, + "slug": "yoshikoder", + "name": "Yoshikoder", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [ + "Java" + ], + "licenses": [ + "GNU General Public License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105229781" + ], + "created_at": "2026-07-10T10:12:43.857415", + "updated_at": "2026-07-10T10:12:43.857415", + "url": "/v1/software/yoshikoder" +} diff --git a/site/public/v1/software/you-need-a-budget/index.json b/site/public/v1/software/you-need-a-budget/index.json new file mode 100644 index 000000000000..6354bea4ad2d --- /dev/null +++ b/site/public/v1/software/you-need-a-budget/index.json @@ -0,0 +1,25 @@ +{ + "id": 11488, + "slug": "you-need-a-budget", + "name": "You Need a Budget", + "release_date": "2004-01-01", + "developers": [], + "publishers": [], + "operating_systems": [ + "iOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [ + "personal finance", + "financial management" + ], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8057432" + ], + "created_at": "2026-07-10T10:12:43.857415", + "updated_at": "2026-07-10T10:12:43.857415", + "url": "/v1/software/you-need-a-budget" +} diff --git a/site/public/v1/software/youcam-makeup/index.json b/site/public/v1/software/youcam-makeup/index.json new file mode 100644 index 000000000000..6ab4bbfd66d1 --- /dev/null +++ b/site/public/v1/software/youcam-makeup/index.json @@ -0,0 +1,19 @@ +{ + "id": 11489, + "slug": "youcam-makeup", + "name": "YouCam Makeup", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134126736" + ], + "created_at": "2026-07-10T10:12:43.857415", + "updated_at": "2026-07-10T10:12:43.857415", + "url": "/v1/software/youcam-makeup" +} diff --git a/site/public/v1/software/youcam-perfect/index.json b/site/public/v1/software/youcam-perfect/index.json new file mode 100644 index 000000000000..27a81ba8126d --- /dev/null +++ b/site/public/v1/software/youcam-perfect/index.json @@ -0,0 +1,19 @@ +{ + "id": 11490, + "slug": "youcam-perfect", + "name": "YouCam Perfect", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134303380" + ], + "created_at": "2026-07-10T10:12:43.858391", + "updated_at": "2026-07-10T10:12:43.858391", + "url": "/v1/software/youcam-perfect" +} diff --git a/site/public/v1/software/youdao-note/index.json b/site/public/v1/software/youdao-note/index.json new file mode 100644 index 000000000000..8eea45653c9f --- /dev/null +++ b/site/public/v1/software/youdao-note/index.json @@ -0,0 +1,23 @@ +{ + "id": 11491, + "slug": "youdao-note", + "name": "Youdao Note", + "release_date": null, + "developers": [ + "NetEase" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [ + "note-taking software" + ], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q15938681" + ], + "created_at": "2026-07-10T10:12:43.858391", + "updated_at": "2026-07-10T10:12:43.858391", + "url": "/v1/software/youdao-note" +} diff --git a/site/public/v1/software/youminds-composer/index.json b/site/public/v1/software/youminds-composer/index.json new file mode 100644 index 000000000000..afc81c48e7c1 --- /dev/null +++ b/site/public/v1/software/youminds-composer/index.json @@ -0,0 +1,21 @@ +{ + "id": 11492, + "slug": "youminds-composer", + "name": "Youminds Composer", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q106143059" + ], + "created_at": "2026-07-10T10:12:43.858391", + "updated_at": "2026-07-10T10:12:43.858391", + "url": "/v1/software/youminds-composer" +} diff --git a/site/public/v1/software/youos/index.json b/site/public/v1/software/youos/index.json new file mode 100644 index 000000000000..76859e4ef967 --- /dev/null +++ b/site/public/v1/software/youos/index.json @@ -0,0 +1,19 @@ +{ + "id": 11493, + "slug": "youos", + "name": "YouOS", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q2523117" + ], + "created_at": "2026-07-10T10:12:43.858391", + "updated_at": "2026-07-10T10:12:43.858391", + "url": "/v1/software/youos" +} diff --git a/site/public/v1/software/your-favorite-gene/index.json b/site/public/v1/software/your-favorite-gene/index.json new file mode 100644 index 000000000000..5865b79eb908 --- /dev/null +++ b/site/public/v1/software/your-favorite-gene/index.json @@ -0,0 +1,19 @@ +{ + "id": 11494, + "slug": "your-favorite-gene", + "name": "Your Favorite Gene", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8058797" + ], + "created_at": "2026-07-10T10:12:43.859419", + "updated_at": "2026-07-10T10:12:43.859419", + "url": "/v1/software/your-favorite-gene" +} diff --git a/site/public/v1/software/your-twapper-keeper/index.json b/site/public/v1/software/your-twapper-keeper/index.json new file mode 100644 index 000000000000..05ac1477c18a --- /dev/null +++ b/site/public/v1/software/your-twapper-keeper/index.json @@ -0,0 +1,19 @@ +{ + "id": 11495, + "slug": "your-twapper-keeper", + "name": "Your Twapper Keeper", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084782" + ], + "created_at": "2026-07-10T10:12:43.859419", + "updated_at": "2026-07-10T10:12:43.859419", + "url": "/v1/software/your-twapper-keeper" +} diff --git a/site/public/v1/software/youtrack/index.json b/site/public/v1/software/youtrack/index.json new file mode 100644 index 000000000000..9ab32d5c94b8 --- /dev/null +++ b/site/public/v1/software/youtrack/index.json @@ -0,0 +1,25 @@ +{ + "id": 11496, + "slug": "youtrack", + "name": "YouTrack", + "release_date": "2009-01-01", + "developers": [ + "JetBrains" + ], + "publishers": [], + "operating_systems": [ + "cross-platform" + ], + "programming_languages": [ + "Kotlin" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4053466" + ], + "created_at": "2026-07-10T10:12:43.859419", + "updated_at": "2026-07-10T10:12:43.859419", + "url": "/v1/software/youtrack" +} diff --git a/site/public/v1/software/youtube-comment-scraper/index.json b/site/public/v1/software/youtube-comment-scraper/index.json new file mode 100644 index 000000000000..870b180eb532 --- /dev/null +++ b/site/public/v1/software/youtube-comment-scraper/index.json @@ -0,0 +1,19 @@ +{ + "id": 11497, + "slug": "youtube-comment-scraper", + "name": "YouTube Comment Scraper", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084783" + ], + "created_at": "2026-07-10T10:12:43.860395", + "updated_at": "2026-07-10T10:12:43.860395", + "url": "/v1/software/youtube-comment-scraper" +} diff --git a/site/public/v1/software/youtube-data-api/index.json b/site/public/v1/software/youtube-data-api/index.json new file mode 100644 index 000000000000..18dd7c1636a7 --- /dev/null +++ b/site/public/v1/software/youtube-data-api/index.json @@ -0,0 +1,23 @@ +{ + "id": 11498, + "slug": "youtube-data-api", + "name": "YouTube Data API", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Python" + ], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q116702066" + ], + "created_at": "2026-07-10T10:12:43.860395", + "updated_at": "2026-07-10T10:12:43.860395", + "url": "/v1/software/youtube-data-api" +} diff --git a/site/public/v1/software/youtube-data-tools/index.json b/site/public/v1/software/youtube-data-tools/index.json new file mode 100644 index 000000000000..187634296037 --- /dev/null +++ b/site/public/v1/software/youtube-data-tools/index.json @@ -0,0 +1,19 @@ +{ + "id": 11499, + "slug": "youtube-data-tools", + "name": "YouTube Data Tools", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126087773" + ], + "created_at": "2026-07-10T10:12:43.860395", + "updated_at": "2026-07-10T10:12:43.860395", + "url": "/v1/software/youtube-data-tools" +} diff --git a/site/public/v1/software/youtube-instant/index.json b/site/public/v1/software/youtube-instant/index.json new file mode 100644 index 000000000000..ea07e683e6d5 --- /dev/null +++ b/site/public/v1/software/youtube-instant/index.json @@ -0,0 +1,19 @@ +{ + "id": 11500, + "slug": "youtube-instant", + "name": "YouTube Instant", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3820674" + ], + "created_at": "2026-07-10T10:12:43.861405", + "updated_at": "2026-07-10T10:12:43.861405", + "url": "/v1/software/youtube-instant" +} diff --git a/site/public/v1/software/youtube-scraper-csv-cleaner/index.json b/site/public/v1/software/youtube-scraper-csv-cleaner/index.json new file mode 100644 index 000000000000..3ee4d3a61198 --- /dev/null +++ b/site/public/v1/software/youtube-scraper-csv-cleaner/index.json @@ -0,0 +1,19 @@ +{ + "id": 11501, + "slug": "youtube-scraper-csv-cleaner", + "name": "Youtube Scraper CSV Cleaner", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084784" + ], + "created_at": "2026-07-10T10:12:43.861405", + "updated_at": "2026-07-10T10:12:43.861405", + "url": "/v1/software/youtube-scraper-csv-cleaner" +} diff --git a/site/public/v1/software/youtube-viewer/index.json b/site/public/v1/software/youtube-viewer/index.json new file mode 100644 index 000000000000..1462de800496 --- /dev/null +++ b/site/public/v1/software/youtube-viewer/index.json @@ -0,0 +1,21 @@ +{ + "id": 11502, + "slug": "youtube-viewer", + "name": "youtube-viewer", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Artistic License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975593" + ], + "created_at": "2026-07-10T10:12:43.861405", + "updated_at": "2026-07-10T10:12:43.861405", + "url": "/v1/software/youtube-viewer" +} diff --git a/site/public/v1/software/youtube-vr/index.json b/site/public/v1/software/youtube-vr/index.json new file mode 100644 index 000000000000..0417bbbcfad3 --- /dev/null +++ b/site/public/v1/software/youtube-vr/index.json @@ -0,0 +1,19 @@ +{ + "id": 11503, + "slug": "youtube-vr", + "name": "YouTube VR", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126415657" + ], + "created_at": "2026-07-10T10:12:43.862386", + "updated_at": "2026-07-10T10:12:43.862386", + "url": "/v1/software/youtube-vr" +} diff --git a/site/public/v1/software/youyang-gu-covid-model/index.json b/site/public/v1/software/youyang-gu-covid-model/index.json new file mode 100644 index 000000000000..cec043f64589 --- /dev/null +++ b/site/public/v1/software/youyang-gu-covid-model/index.json @@ -0,0 +1,21 @@ +{ + "id": 11504, + "slug": "youyang-gu-covid-model", + "name": "Youyang Gu COVID model", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q96324200" + ], + "created_at": "2026-07-10T10:12:43.862386", + "updated_at": "2026-07-10T10:12:43.862386", + "url": "/v1/software/youyang-gu-covid-model" +} diff --git a/site/public/v1/software/ys-megabasic/index.json b/site/public/v1/software/ys-megabasic/index.json new file mode 100644 index 000000000000..3a955779f455 --- /dev/null +++ b/site/public/v1/software/ys-megabasic/index.json @@ -0,0 +1,19 @@ +{ + "id": 11505, + "slug": "ys-megabasic", + "name": "YS MegaBasic", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8046036" + ], + "created_at": "2026-07-10T10:12:43.862386", + "updated_at": "2026-07-10T10:12:43.862386", + "url": "/v1/software/ys-megabasic" +} diff --git a/site/public/v1/software/ysflight/index.json b/site/public/v1/software/ysflight/index.json new file mode 100644 index 000000000000..66458ee61db3 --- /dev/null +++ b/site/public/v1/software/ysflight/index.json @@ -0,0 +1,21 @@ +{ + "id": 11506, + "slug": "ysflight", + "name": "YSFlight", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "3-clause BSD License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q1899542" + ], + "created_at": "2026-07-10T10:12:43.862386", + "updated_at": "2026-07-10T10:12:43.862386", + "url": "/v1/software/ysflight" +} diff --git a/site/public/v1/software/yu-ris/index.json b/site/public/v1/software/yu-ris/index.json new file mode 100644 index 000000000000..cdbea49136e1 --- /dev/null +++ b/site/public/v1/software/yu-ris/index.json @@ -0,0 +1,19 @@ +{ + "id": 11507, + "slug": "yu-ris", + "name": "YU-RIS", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11255280" + ], + "created_at": "2026-07-10T10:12:43.863425", + "updated_at": "2026-07-10T10:12:43.863425", + "url": "/v1/software/yu-ris" +} diff --git a/site/public/v1/software/yubikey-manager/index.json b/site/public/v1/software/yubikey-manager/index.json new file mode 100644 index 000000000000..a9159a94117f --- /dev/null +++ b/site/public/v1/software/yubikey-manager/index.json @@ -0,0 +1,19 @@ +{ + "id": 11508, + "slug": "yubikey-manager", + "name": "yubikey-manager", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q88506099" + ], + "created_at": "2026-07-10T10:12:43.863425", + "updated_at": "2026-07-10T10:12:43.863425", + "url": "/v1/software/yubikey-manager" +} diff --git a/site/public/v1/software/yubo/index.json b/site/public/v1/software/yubo/index.json new file mode 100644 index 000000000000..d8a30639ddb5 --- /dev/null +++ b/site/public/v1/software/yubo/index.json @@ -0,0 +1,21 @@ +{ + "id": 11509, + "slug": "yubo", + "name": "Yubo", + "release_date": "2015-10-01", + "developers": [], + "publishers": [], + "operating_systems": [ + "iOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28957086" + ], + "created_at": "2026-07-10T10:12:43.864327", + "updated_at": "2026-07-10T10:12:43.864327", + "url": "/v1/software/yubo" +} diff --git a/site/public/v1/software/yummy-ftp/index.json b/site/public/v1/software/yummy-ftp/index.json new file mode 100644 index 000000000000..dd5bab4abab1 --- /dev/null +++ b/site/public/v1/software/yummy-ftp/index.json @@ -0,0 +1,21 @@ +{ + "id": 11510, + "slug": "yummy-ftp", + "name": "Yummy FTP", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "macOS" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8061148" + ], + "created_at": "2026-07-10T10:12:43.864327", + "updated_at": "2026-07-10T10:12:43.864327", + "url": "/v1/software/yummy-ftp" +} diff --git a/site/public/v1/software/yutzu/index.json b/site/public/v1/software/yutzu/index.json new file mode 100644 index 000000000000..9b946a624e0c --- /dev/null +++ b/site/public/v1/software/yutzu/index.json @@ -0,0 +1,19 @@ +{ + "id": 11511, + "slug": "yutzu", + "name": "Yutzu", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084785" + ], + "created_at": "2026-07-10T10:12:43.864327", + "updated_at": "2026-07-10T10:12:43.864327", + "url": "/v1/software/yutzu" +} diff --git a/site/public/v1/software/yvoraio/index.json b/site/public/v1/software/yvoraio/index.json new file mode 100644 index 000000000000..8841b8c8330c --- /dev/null +++ b/site/public/v1/software/yvoraio/index.json @@ -0,0 +1,23 @@ +{ + "id": 11512, + "slug": "yvoraio", + "name": "YvorAIO", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [ + "TypeScript" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139965183" + ], + "created_at": "2026-07-10T10:12:43.864327", + "updated_at": "2026-07-10T10:12:43.864327", + "url": "/v1/software/yvoraio" +} diff --git a/site/public/v1/software/yy-english-tv-shows/index.json b/site/public/v1/software/yy-english-tv-shows/index.json new file mode 100644 index 000000000000..07f24652bd8c --- /dev/null +++ b/site/public/v1/software/yy-english-tv-shows/index.json @@ -0,0 +1,23 @@ +{ + "id": 11513, + "slug": "yy-english-tv-shows", + "name": "YY English TV Shows", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "iOS", + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18651505" + ], + "created_at": "2026-07-10T10:12:43.865323", + "updated_at": "2026-07-10T10:12:43.865323", + "url": "/v1/software/yy-english-tv-shows" +} diff --git a/site/public/v1/software/z-maestro/index.json b/site/public/v1/software/z-maestro/index.json new file mode 100644 index 000000000000..a3e78851a8cb --- /dev/null +++ b/site/public/v1/software/z-maestro/index.json @@ -0,0 +1,19 @@ +{ + "id": 11514, + "slug": "z-maestro", + "name": "Z-Maestro", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8062810" + ], + "created_at": "2026-07-10T10:12:43.865323", + "updated_at": "2026-07-10T10:12:43.865323", + "url": "/v1/software/z-maestro" +} diff --git a/site/public/v1/software/z-way/index.json b/site/public/v1/software/z-way/index.json new file mode 100644 index 000000000000..9ce88e21be23 --- /dev/null +++ b/site/public/v1/software/z-way/index.json @@ -0,0 +1,19 @@ +{ + "id": 11515, + "slug": "z-way", + "name": "Z-way", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q97379974" + ], + "created_at": "2026-07-10T10:12:43.866323", + "updated_at": "2026-07-10T10:12:43.866323", + "url": "/v1/software/z-way" +} diff --git a/site/public/v1/software/zaki/index.json b/site/public/v1/software/zaki/index.json new file mode 100644 index 000000000000..26d71e9b2ce5 --- /dev/null +++ b/site/public/v1/software/zaki/index.json @@ -0,0 +1,19 @@ +{ + "id": 11516, + "slug": "zaki", + "name": "Zaki", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q12645521" + ], + "created_at": "2026-07-10T10:12:43.866323", + "updated_at": "2026-07-10T10:12:43.866323", + "url": "/v1/software/zaki" +} diff --git a/site/public/v1/software/zamba/index.json b/site/public/v1/software/zamba/index.json new file mode 100644 index 000000000000..f5b132866ef2 --- /dev/null +++ b/site/public/v1/software/zamba/index.json @@ -0,0 +1,21 @@ +{ + "id": 11517, + "slug": "zamba", + "name": "Zamba", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q115688411" + ], + "created_at": "2026-07-10T10:12:43.866323", + "updated_at": "2026-07-10T10:12:43.866323", + "url": "/v1/software/zamba" +} diff --git a/site/public/v1/software/zandy/index.json b/site/public/v1/software/zandy/index.json new file mode 100644 index 000000000000..45d3558e042b --- /dev/null +++ b/site/public/v1/software/zandy/index.json @@ -0,0 +1,19 @@ +{ + "id": 11518, + "slug": "zandy", + "name": "Zandy", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084786" + ], + "created_at": "2026-07-10T10:12:43.866323", + "updated_at": "2026-07-10T10:12:43.866323", + "url": "/v1/software/zandy" +} diff --git a/site/public/v1/software/zangi/index.json b/site/public/v1/software/zangi/index.json new file mode 100644 index 000000000000..a73461723a27 --- /dev/null +++ b/site/public/v1/software/zangi/index.json @@ -0,0 +1,19 @@ +{ + "id": 11519, + "slug": "zangi", + "name": "Zangi", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135038430" + ], + "created_at": "2026-07-10T10:12:43.867326", + "updated_at": "2026-07-10T10:12:43.867326", + "url": "/v1/software/zangi" +} diff --git a/site/public/v1/software/zano/index.json b/site/public/v1/software/zano/index.json new file mode 100644 index 000000000000..0d7b48fed7b6 --- /dev/null +++ b/site/public/v1/software/zano/index.json @@ -0,0 +1,19 @@ +{ + "id": 11520, + "slug": "zano", + "name": "Zano", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q134984027" + ], + "created_at": "2026-07-10T10:12:43.867326", + "updated_at": "2026-07-10T10:12:43.867326", + "url": "/v1/software/zano" +} diff --git a/site/public/v1/software/zapier/index.json b/site/public/v1/software/zapier/index.json new file mode 100644 index 000000000000..4499c2f5a21d --- /dev/null +++ b/site/public/v1/software/zapier/index.json @@ -0,0 +1,19 @@ +{ + "id": 11521, + "slug": "zapier", + "name": "Zapier", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q27150165" + ], + "created_at": "2026-07-10T10:12:43.868394", + "updated_at": "2026-07-10T10:12:43.868394", + "url": "/v1/software/zapier" +} diff --git a/site/public/v1/software/zaptel/index.json b/site/public/v1/software/zaptel/index.json new file mode 100644 index 000000000000..5101c79fda7c --- /dev/null +++ b/site/public/v1/software/zaptel/index.json @@ -0,0 +1,21 @@ +{ + "id": 11522, + "slug": "zaptel", + "name": "Zaptel", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Berkeley Software Distribution" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4053543" + ], + "created_at": "2026-07-10T10:12:43.868394", + "updated_at": "2026-07-10T10:12:43.868394", + "url": "/v1/software/zaptel" +} diff --git a/site/public/v1/software/zapya/index.json b/site/public/v1/software/zapya/index.json new file mode 100644 index 000000000000..349ef88ab0ef --- /dev/null +++ b/site/public/v1/software/zapya/index.json @@ -0,0 +1,19 @@ +{ + "id": 11523, + "slug": "zapya", + "name": "Zapya", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28402090" + ], + "created_at": "2026-07-10T10:12:43.868394", + "updated_at": "2026-07-10T10:12:43.868394", + "url": "/v1/software/zapya" +} diff --git a/site/public/v1/software/zaq-ai/index.json b/site/public/v1/software/zaq-ai/index.json new file mode 100644 index 000000000000..67ed56eec719 --- /dev/null +++ b/site/public/v1/software/zaq-ai/index.json @@ -0,0 +1,19 @@ +{ + "id": 11524, + "slug": "zaq-ai", + "name": "ZAQ AI", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140471582" + ], + "created_at": "2026-07-10T10:12:43.868394", + "updated_at": "2026-07-10T10:12:43.868394", + "url": "/v1/software/zaq-ai" +} diff --git a/site/public/v1/software/zathura-cb/index.json b/site/public/v1/software/zathura-cb/index.json new file mode 100644 index 000000000000..d0a1cafbe790 --- /dev/null +++ b/site/public/v1/software/zathura-cb/index.json @@ -0,0 +1,19 @@ +{ + "id": 11525, + "slug": "zathura-cb", + "name": "zathura-cb", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975594" + ], + "created_at": "2026-07-10T10:12:43.869393", + "updated_at": "2026-07-10T10:12:43.869393", + "url": "/v1/software/zathura-cb" +} diff --git a/site/public/v1/software/zathura-djvu/index.json b/site/public/v1/software/zathura-djvu/index.json new file mode 100644 index 000000000000..fbae0467db55 --- /dev/null +++ b/site/public/v1/software/zathura-djvu/index.json @@ -0,0 +1,19 @@ +{ + "id": 11526, + "slug": "zathura-djvu", + "name": "zathura-djvu", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975595" + ], + "created_at": "2026-07-10T10:12:43.869393", + "updated_at": "2026-07-10T10:12:43.869393", + "url": "/v1/software/zathura-djvu" +} diff --git a/site/public/v1/software/zathura-pdf-mupdf/index.json b/site/public/v1/software/zathura-pdf-mupdf/index.json new file mode 100644 index 000000000000..eec8b806ae3a --- /dev/null +++ b/site/public/v1/software/zathura-pdf-mupdf/index.json @@ -0,0 +1,19 @@ +{ + "id": 11527, + "slug": "zathura-pdf-mupdf", + "name": "zathura-pdf-mupdf", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975596" + ], + "created_at": "2026-07-10T10:12:43.870385", + "updated_at": "2026-07-10T10:12:43.870385", + "url": "/v1/software/zathura-pdf-mupdf" +} diff --git a/site/public/v1/software/zathura-pdf-poppler/index.json b/site/public/v1/software/zathura-pdf-poppler/index.json new file mode 100644 index 000000000000..3079332d0de2 --- /dev/null +++ b/site/public/v1/software/zathura-pdf-poppler/index.json @@ -0,0 +1,19 @@ +{ + "id": 11528, + "slug": "zathura-pdf-poppler", + "name": "zathura-pdf-poppler", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975597" + ], + "created_at": "2026-07-10T10:12:43.870385", + "updated_at": "2026-07-10T10:12:43.870385", + "url": "/v1/software/zathura-pdf-poppler" +} diff --git a/site/public/v1/software/zathura-ps/index.json b/site/public/v1/software/zathura-ps/index.json new file mode 100644 index 000000000000..d28df0d15980 --- /dev/null +++ b/site/public/v1/software/zathura-ps/index.json @@ -0,0 +1,19 @@ +{ + "id": 11529, + "slug": "zathura-ps", + "name": "zathura-ps", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975598" + ], + "created_at": "2026-07-10T10:12:43.870385", + "updated_at": "2026-07-10T10:12:43.870385", + "url": "/v1/software/zathura-ps" +} diff --git a/site/public/v1/software/zbrush/index.json b/site/public/v1/software/zbrush/index.json new file mode 100644 index 000000000000..54e0d4414800 --- /dev/null +++ b/site/public/v1/software/zbrush/index.json @@ -0,0 +1,26 @@ +{ + "id": 11530, + "slug": "zbrush", + "name": "ZBrush", + "release_date": null, + "developers": [ + "MAXON Computer" + ], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "proprietary license" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135964" + ], + "created_at": "2026-07-10T10:12:43.870385", + "updated_at": "2026-07-10T10:12:43.870385", + "url": "/v1/software/zbrush" +} diff --git a/site/public/v1/software/zbus/index.json b/site/public/v1/software/zbus/index.json new file mode 100644 index 000000000000..8a1bcadb95d0 --- /dev/null +++ b/site/public/v1/software/zbus/index.json @@ -0,0 +1,19 @@ +{ + "id": 11531, + "slug": "zbus", + "name": "Zbus", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8067847" + ], + "created_at": "2026-07-10T10:12:43.871426", + "updated_at": "2026-07-10T10:12:43.871426", + "url": "/v1/software/zbus" +} diff --git a/site/public/v1/software/zclassic/index.json b/site/public/v1/software/zclassic/index.json new file mode 100644 index 000000000000..c21ee6a4d4df --- /dev/null +++ b/site/public/v1/software/zclassic/index.json @@ -0,0 +1,19 @@ +{ + "id": 11532, + "slug": "zclassic", + "name": "Zclassic", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q46996009" + ], + "created_at": "2026-07-10T10:12:43.871426", + "updated_at": "2026-07-10T10:12:43.871426", + "url": "/v1/software/zclassic" +} diff --git a/site/public/v1/software/zconvert/index.json b/site/public/v1/software/zconvert/index.json new file mode 100644 index 000000000000..8c9cb1c2893b --- /dev/null +++ b/site/public/v1/software/zconvert/index.json @@ -0,0 +1,21 @@ +{ + "id": 11533, + "slug": "zconvert", + "name": "zConvert", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8062992" + ], + "created_at": "2026-07-10T10:12:43.872330", + "updated_at": "2026-07-10T10:12:43.872330", + "url": "/v1/software/zconvert" +} diff --git a/site/public/v1/software/zea-configurator/index.json b/site/public/v1/software/zea-configurator/index.json new file mode 100644 index 000000000000..a5072405a14b --- /dev/null +++ b/site/public/v1/software/zea-configurator/index.json @@ -0,0 +1,21 @@ +{ + "id": 11534, + "slug": "zea-configurator", + "name": "Zea Configurator", + "release_date": null, + "developers": [ + "Zea Inc" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139674743" + ], + "created_at": "2026-07-10T10:12:43.872330", + "updated_at": "2026-07-10T10:12:43.872330", + "url": "/v1/software/zea-configurator" +} diff --git a/site/public/v1/software/zea-cortex/index.json b/site/public/v1/software/zea-cortex/index.json new file mode 100644 index 000000000000..6a3ff54d1e14 --- /dev/null +++ b/site/public/v1/software/zea-cortex/index.json @@ -0,0 +1,21 @@ +{ + "id": 11535, + "slug": "zea-cortex", + "name": "Zea Cortex", + "release_date": null, + "developers": [ + "Zea Inc" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139663556" + ], + "created_at": "2026-07-10T10:12:43.872330", + "updated_at": "2026-07-10T10:12:43.872330", + "url": "/v1/software/zea-cortex" +} diff --git a/site/public/v1/software/zea-illustrations/index.json b/site/public/v1/software/zea-illustrations/index.json new file mode 100644 index 000000000000..b82ca0f4cdb8 --- /dev/null +++ b/site/public/v1/software/zea-illustrations/index.json @@ -0,0 +1,21 @@ +{ + "id": 11536, + "slug": "zea-illustrations", + "name": "Zea Illustrations", + "release_date": null, + "developers": [ + "Zea Inc" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139674759" + ], + "created_at": "2026-07-10T10:12:43.872330", + "updated_at": "2026-07-10T10:12:43.872330", + "url": "/v1/software/zea-illustrations" +} diff --git a/site/public/v1/software/zea-parts/index.json b/site/public/v1/software/zea-parts/index.json new file mode 100644 index 000000000000..143c00b95cfb --- /dev/null +++ b/site/public/v1/software/zea-parts/index.json @@ -0,0 +1,21 @@ +{ + "id": 11537, + "slug": "zea-parts", + "name": "Zea Parts", + "release_date": null, + "developers": [ + "Zea Inc" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139674728" + ], + "created_at": "2026-07-10T10:12:43.873326", + "updated_at": "2026-07-10T10:12:43.873326", + "url": "/v1/software/zea-parts" +} diff --git a/site/public/v1/software/zebedee/index.json b/site/public/v1/software/zebedee/index.json new file mode 100644 index 000000000000..efeca31ff8d8 --- /dev/null +++ b/site/public/v1/software/zebedee/index.json @@ -0,0 +1,21 @@ +{ + "id": 11538, + "slug": "zebedee", + "name": "Zebedee", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "GNU General Public License, version 2.0 or later" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q962834" + ], + "created_at": "2026-07-10T10:12:43.873326", + "updated_at": "2026-07-10T10:12:43.873326", + "url": "/v1/software/zebedee" +} diff --git a/site/public/v1/software/zebtab/index.json b/site/public/v1/software/zebtab/index.json new file mode 100644 index 000000000000..9db3cb45c87d --- /dev/null +++ b/site/public/v1/software/zebtab/index.json @@ -0,0 +1,21 @@ +{ + "id": 11539, + "slug": "zebtab", + "name": "Zebtab", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "freeware" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8068318" + ], + "created_at": "2026-07-10T10:12:43.873326", + "updated_at": "2026-07-10T10:12:43.873326", + "url": "/v1/software/zebtab" +} diff --git a/site/public/v1/software/zed/index.json b/site/public/v1/software/zed/index.json new file mode 100644 index 000000000000..d75cd2c36d0c --- /dev/null +++ b/site/public/v1/software/zed/index.json @@ -0,0 +1,26 @@ +{ + "id": 11540, + "slug": "zed", + "name": "Zed", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "FreeBSD", + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [ + "Apache Software License 2.0", + "GNU General Public License, version 3.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q112301707" + ], + "created_at": "2026-07-10T10:12:43.874326", + "updated_at": "2026-07-10T10:12:43.874326", + "url": "/v1/software/zed" +} diff --git a/site/public/v1/software/zedal/index.json b/site/public/v1/software/zedal/index.json new file mode 100644 index 000000000000..2f8c692c1e48 --- /dev/null +++ b/site/public/v1/software/zedal/index.json @@ -0,0 +1,21 @@ +{ + "id": 11541, + "slug": "zedal", + "name": "ZEDAL", + "release_date": null, + "developers": [ + "ZEDAL GmbH" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140332363" + ], + "created_at": "2026-07-10T10:12:43.874326", + "updated_at": "2026-07-10T10:12:43.874326", + "url": "/v1/software/zedal" +} diff --git a/site/public/v1/software/zedge-inc/index.json b/site/public/v1/software/zedge-inc/index.json new file mode 100644 index 000000000000..c56eb71c2285 --- /dev/null +++ b/site/public/v1/software/zedge-inc/index.json @@ -0,0 +1,19 @@ +{ + "id": 11542, + "slug": "zedge-inc", + "name": "Zedge, Inc", + "release_date": "2003-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17091060" + ], + "created_at": "2026-07-10T10:12:43.874326", + "updated_at": "2026-07-10T10:12:43.874326", + "url": "/v1/software/zedge-inc" +} diff --git a/site/public/v1/software/zeemaps/index.json b/site/public/v1/software/zeemaps/index.json new file mode 100644 index 000000000000..38c35c37199a --- /dev/null +++ b/site/public/v1/software/zeemaps/index.json @@ -0,0 +1,19 @@ +{ + "id": 11543, + "slug": "zeemaps", + "name": "ZeeMaps", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084787" + ], + "created_at": "2026-07-10T10:12:43.875394", + "updated_at": "2026-07-10T10:12:43.875394", + "url": "/v1/software/zeemaps" +} diff --git a/site/public/v1/software/zelph/index.json b/site/public/v1/software/zelph/index.json new file mode 100644 index 000000000000..9eee2c43c272 --- /dev/null +++ b/site/public/v1/software/zelph/index.json @@ -0,0 +1,19 @@ +{ + "id": 11544, + "slug": "zelph", + "name": "zelph", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140180003" + ], + "created_at": "2026-07-10T10:12:43.875394", + "updated_at": "2026-07-10T10:12:43.875394", + "url": "/v1/software/zelph" +} diff --git a/site/public/v1/software/zemanta/index.json b/site/public/v1/software/zemanta/index.json new file mode 100644 index 000000000000..817136bb578a --- /dev/null +++ b/site/public/v1/software/zemanta/index.json @@ -0,0 +1,19 @@ +{ + "id": 11545, + "slug": "zemanta", + "name": "Zemanta", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q735457" + ], + "created_at": "2026-07-10T10:12:43.875394", + "updated_at": "2026-07-10T10:12:43.875394", + "url": "/v1/software/zemanta" +} diff --git a/site/public/v1/software/zen-sources/index.json b/site/public/v1/software/zen-sources/index.json new file mode 100644 index 000000000000..d32dc07a2ca7 --- /dev/null +++ b/site/public/v1/software/zen-sources/index.json @@ -0,0 +1,19 @@ +{ + "id": 11546, + "slug": "zen-sources", + "name": "zen-sources", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975599" + ], + "created_at": "2026-07-10T10:12:43.876412", + "updated_at": "2026-07-10T10:12:43.876412", + "url": "/v1/software/zen-sources" +} diff --git a/site/public/v1/software/zendnn/index.json b/site/public/v1/software/zendnn/index.json new file mode 100644 index 000000000000..dd47aa465567 --- /dev/null +++ b/site/public/v1/software/zendnn/index.json @@ -0,0 +1,23 @@ +{ + "id": 11547, + "slug": "zendnn", + "name": "ZenDNN", + "release_date": null, + "developers": [ + "Ratan Prasad" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Apache Software License 2.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q122583188" + ], + "created_at": "2026-07-10T10:12:43.876412", + "updated_at": "2026-07-10T10:12:43.876412", + "url": "/v1/software/zendnn" +} diff --git a/site/public/v1/software/zenkit/index.json b/site/public/v1/software/zenkit/index.json new file mode 100644 index 000000000000..73c510dbaca8 --- /dev/null +++ b/site/public/v1/software/zenkit/index.json @@ -0,0 +1,25 @@ +{ + "id": 11548, + "slug": "zenkit", + "name": "Zenkit", + "release_date": null, + "developers": [ + "Axonic Informationssysteme GmbH" + ], + "publishers": [], + "operating_systems": [ + "iOS", + "macOS", + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q55230256" + ], + "created_at": "2026-07-10T10:12:43.876412", + "updated_at": "2026-07-10T10:12:43.876412", + "url": "/v1/software/zenkit" +} diff --git a/site/public/v1/software/zenon-software/index.json b/site/public/v1/software/zenon-software/index.json new file mode 100644 index 000000000000..5aa504a29338 --- /dev/null +++ b/site/public/v1/software/zenon-software/index.json @@ -0,0 +1,19 @@ +{ + "id": 11549, + "slug": "zenon-software", + "name": "Zenon Software", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q189742" + ], + "created_at": "2026-07-10T10:12:43.876412", + "updated_at": "2026-07-10T10:12:43.876412", + "url": "/v1/software/zenon-software" +} diff --git a/site/public/v1/software/zenoo/index.json b/site/public/v1/software/zenoo/index.json new file mode 100644 index 000000000000..71ae95ceade6 --- /dev/null +++ b/site/public/v1/software/zenoo/index.json @@ -0,0 +1,25 @@ +{ + "id": 11550, + "slug": "zenoo", + "name": "Zenoo", + "release_date": null, + "developers": [ + "Zenoo" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [ + "Java", + "Node.js", + "React" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138769927" + ], + "created_at": "2026-07-10T10:12:43.877397", + "updated_at": "2026-07-10T10:12:43.877397", + "url": "/v1/software/zenoo" +} diff --git a/site/public/v1/software/zeobuilder/index.json b/site/public/v1/software/zeobuilder/index.json new file mode 100644 index 000000000000..e24665bf0837 --- /dev/null +++ b/site/public/v1/software/zeobuilder/index.json @@ -0,0 +1,21 @@ +{ + "id": 11551, + "slug": "zeobuilder", + "name": "Zeobuilder", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "GNU General Public License, version 3.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125096749" + ], + "created_at": "2026-07-10T10:12:43.877397", + "updated_at": "2026-07-10T10:12:43.877397", + "url": "/v1/software/zeobuilder" +} diff --git a/site/public/v1/software/zer0email/index.json b/site/public/v1/software/zer0email/index.json new file mode 100644 index 000000000000..b87d469d4383 --- /dev/null +++ b/site/public/v1/software/zer0email/index.json @@ -0,0 +1,19 @@ +{ + "id": 11552, + "slug": "zer0email", + "name": "Zer0Email", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q140377996" + ], + "created_at": "2026-07-10T10:12:43.877397", + "updated_at": "2026-07-10T10:12:43.877397", + "url": "/v1/software/zer0email" +} diff --git a/site/public/v1/software/zeroday-emergency-response-team/index.json b/site/public/v1/software/zeroday-emergency-response-team/index.json new file mode 100644 index 000000000000..456bfca7c2dc --- /dev/null +++ b/site/public/v1/software/zeroday-emergency-response-team/index.json @@ -0,0 +1,19 @@ +{ + "id": 11553, + "slug": "zeroday-emergency-response-team", + "name": "Zeroday Emergency Response Team", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8069627" + ], + "created_at": "2026-07-10T10:12:43.878408", + "updated_at": "2026-07-10T10:12:43.878408", + "url": "/v1/software/zeroday-emergency-response-team" +} diff --git a/site/public/v1/software/zeropc/index.json b/site/public/v1/software/zeropc/index.json new file mode 100644 index 000000000000..69b0a405e28b --- /dev/null +++ b/site/public/v1/software/zeropc/index.json @@ -0,0 +1,19 @@ +{ + "id": 11554, + "slug": "zeropc", + "name": "ZeroPC", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8069478" + ], + "created_at": "2026-07-10T10:12:43.878408", + "updated_at": "2026-07-10T10:12:43.878408", + "url": "/v1/software/zeropc" +} diff --git a/site/public/v1/software/zerospyware/index.json b/site/public/v1/software/zerospyware/index.json new file mode 100644 index 000000000000..8f7563ac7d6b --- /dev/null +++ b/site/public/v1/software/zerospyware/index.json @@ -0,0 +1,19 @@ +{ + "id": 11555, + "slug": "zerospyware", + "name": "Zerospyware", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8069646" + ], + "created_at": "2026-07-10T10:12:43.878408", + "updated_at": "2026-07-10T10:12:43.878408", + "url": "/v1/software/zerospyware" +} diff --git a/site/public/v1/software/zeroth/index.json b/site/public/v1/software/zeroth/index.json new file mode 100644 index 000000000000..3f5950a06e92 --- /dev/null +++ b/site/public/v1/software/zeroth/index.json @@ -0,0 +1,19 @@ +{ + "id": 11556, + "slug": "zeroth", + "name": "Zeroth", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22909897" + ], + "created_at": "2026-07-10T10:12:43.879394", + "updated_at": "2026-07-10T10:12:43.879394", + "url": "/v1/software/zeroth" +} diff --git a/site/public/v1/software/zerynth/index.json b/site/public/v1/software/zerynth/index.json new file mode 100644 index 000000000000..8ba722616eec --- /dev/null +++ b/site/public/v1/software/zerynth/index.json @@ -0,0 +1,19 @@ +{ + "id": 11557, + "slug": "zerynth", + "name": "Zerynth", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q85817077" + ], + "created_at": "2026-07-10T10:12:43.879394", + "updated_at": "2026-07-10T10:12:43.879394", + "url": "/v1/software/zerynth" +} diff --git a/site/public/v1/software/zestmeup/index.json b/site/public/v1/software/zestmeup/index.json new file mode 100644 index 000000000000..23b8b857c3d0 --- /dev/null +++ b/site/public/v1/software/zestmeup/index.json @@ -0,0 +1,19 @@ +{ + "id": 11558, + "slug": "zestmeup", + "name": "ZestMeUp", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q138315299" + ], + "created_at": "2026-07-10T10:12:43.880411", + "updated_at": "2026-07-10T10:12:43.880411", + "url": "/v1/software/zestmeup" +} diff --git a/site/public/v1/software/zettelkasten/index.json b/site/public/v1/software/zettelkasten/index.json new file mode 100644 index 000000000000..7e14b25fe631 --- /dev/null +++ b/site/public/v1/software/zettelkasten/index.json @@ -0,0 +1,26 @@ +{ + "id": 11559, + "slug": "zettelkasten", + "name": "Zettelkasten", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "macOS", + "Microsoft Windows" + ], + "programming_languages": [ + "Java" + ], + "licenses": [ + "GNU General Public License, version 3.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q105748778" + ], + "created_at": "2026-07-10T10:12:43.880411", + "updated_at": "2026-07-10T10:12:43.880411", + "url": "/v1/software/zettelkasten" +} diff --git a/site/public/v1/software/zeus-assembler/index.json b/site/public/v1/software/zeus-assembler/index.json new file mode 100644 index 000000000000..342d77ed0081 --- /dev/null +++ b/site/public/v1/software/zeus-assembler/index.json @@ -0,0 +1,21 @@ +{ + "id": 11560, + "slug": "zeus-assembler", + "name": "Zeus Assembler", + "release_date": null, + "developers": [ + "Crystal Computing" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8069813" + ], + "created_at": "2026-07-10T10:12:43.880411", + "updated_at": "2026-07-10T10:12:43.880411", + "url": "/v1/software/zeus-assembler" +} diff --git a/site/public/v1/software/zfone/index.json b/site/public/v1/software/zfone/index.json new file mode 100644 index 000000000000..092e9366eab9 --- /dev/null +++ b/site/public/v1/software/zfone/index.json @@ -0,0 +1,21 @@ +{ + "id": 11561, + "slug": "zfone", + "name": "Zfone", + "release_date": null, + "developers": [ + "Phil Zimmermann" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q197113" + ], + "created_at": "2026-07-10T10:12:43.880411", + "updated_at": "2026-07-10T10:12:43.880411", + "url": "/v1/software/zfone" +} diff --git a/site/public/v1/software/zfs-on-linux/index.json b/site/public/v1/software/zfs-on-linux/index.json new file mode 100644 index 000000000000..18ebdaf987fa --- /dev/null +++ b/site/public/v1/software/zfs-on-linux/index.json @@ -0,0 +1,21 @@ +{ + "id": 11562, + "slug": "zfs-on-linux", + "name": "ZFS on Linux", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Common Development and Distribution License version 1.0" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975600" + ], + "created_at": "2026-07-10T10:12:43.881396", + "updated_at": "2026-07-10T10:12:43.881396", + "url": "/v1/software/zfs-on-linux" +} diff --git a/site/public/v1/software/zhihu/index.json b/site/public/v1/software/zhihu/index.json new file mode 100644 index 000000000000..087eff192664 --- /dev/null +++ b/site/public/v1/software/zhihu/index.json @@ -0,0 +1,19 @@ +{ + "id": 11563, + "slug": "zhihu", + "name": "Zhihu", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q15898172" + ], + "created_at": "2026-07-10T10:12:43.881396", + "updated_at": "2026-07-10T10:12:43.881396", + "url": "/v1/software/zhihu" +} diff --git a/site/public/v1/software/zhura/index.json b/site/public/v1/software/zhura/index.json new file mode 100644 index 000000000000..fb50af02f5f1 --- /dev/null +++ b/site/public/v1/software/zhura/index.json @@ -0,0 +1,19 @@ +{ + "id": 11564, + "slug": "zhura", + "name": "Zhura", + "release_date": "2007-01-01", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8071242" + ], + "created_at": "2026-07-10T10:12:43.881396", + "updated_at": "2026-07-10T10:12:43.881396", + "url": "/v1/software/zhura" +} diff --git a/site/public/v1/software/zight/index.json b/site/public/v1/software/zight/index.json new file mode 100644 index 000000000000..4351635128d4 --- /dev/null +++ b/site/public/v1/software/zight/index.json @@ -0,0 +1,19 @@ +{ + "id": 11565, + "slug": "zight", + "name": "Zight", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q64008614" + ], + "created_at": "2026-07-10T10:12:43.882405", + "updated_at": "2026-07-10T10:12:43.882405", + "url": "/v1/software/zight" +} diff --git a/site/public/v1/software/zigzag/index.json b/site/public/v1/software/zigzag/index.json new file mode 100644 index 000000000000..cd712d3104c6 --- /dev/null +++ b/site/public/v1/software/zigzag/index.json @@ -0,0 +1,19 @@ +{ + "id": 11566, + "slug": "zigzag", + "name": "ZigZag", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8071747" + ], + "created_at": "2026-07-10T10:12:43.882405", + "updated_at": "2026-07-10T10:12:43.882405", + "url": "/v1/software/zigzag" +} diff --git a/site/public/v1/software/zinc/index.json b/site/public/v1/software/zinc/index.json new file mode 100644 index 000000000000..59e7345cec40 --- /dev/null +++ b/site/public/v1/software/zinc/index.json @@ -0,0 +1,19 @@ +{ + "id": 11567, + "slug": "zinc", + "name": "ZiNc", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q9390902" + ], + "created_at": "2026-07-10T10:12:43.882405", + "updated_at": "2026-07-10T10:12:43.882405", + "url": "/v1/software/zinc" +} diff --git a/site/public/v1/software/zing-technologies/index.json b/site/public/v1/software/zing-technologies/index.json new file mode 100644 index 000000000000..c14362f32ca7 --- /dev/null +++ b/site/public/v1/software/zing-technologies/index.json @@ -0,0 +1,19 @@ +{ + "id": 11568, + "slug": "zing-technologies", + "name": "Zing Technologies", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8072375" + ], + "created_at": "2026-07-10T10:12:43.883395", + "updated_at": "2026-07-10T10:12:43.883395", + "url": "/v1/software/zing-technologies" +} diff --git a/site/public/v1/software/zingchart/index.json b/site/public/v1/software/zingchart/index.json new file mode 100644 index 000000000000..1cdeba567b19 --- /dev/null +++ b/site/public/v1/software/zingchart/index.json @@ -0,0 +1,19 @@ +{ + "id": 11569, + "slug": "zingchart", + "name": "ZingChart", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084788" + ], + "created_at": "2026-07-10T10:12:43.883395", + "updated_at": "2026-07-10T10:12:43.883395", + "url": "/v1/software/zingchart" +} diff --git a/site/public/v1/software/zinnia/index.json b/site/public/v1/software/zinnia/index.json new file mode 100644 index 000000000000..c482f3481c80 --- /dev/null +++ b/site/public/v1/software/zinnia/index.json @@ -0,0 +1,21 @@ +{ + "id": 11570, + "slug": "zinnia", + "name": "Zinnia", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "3-clause BSD License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q11255924" + ], + "created_at": "2026-07-10T10:12:43.883395", + "updated_at": "2026-07-10T10:12:43.883395", + "url": "/v1/software/zinnia" +} diff --git a/site/public/v1/software/zinstall-easy-transfer/index.json b/site/public/v1/software/zinstall-easy-transfer/index.json new file mode 100644 index 000000000000..463d97f4071b --- /dev/null +++ b/site/public/v1/software/zinstall-easy-transfer/index.json @@ -0,0 +1,19 @@ +{ + "id": 11571, + "slug": "zinstall-easy-transfer", + "name": "Zinstall Easy Transfer", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22909903" + ], + "created_at": "2026-07-10T10:12:43.884386", + "updated_at": "2026-07-10T10:12:43.884386", + "url": "/v1/software/zinstall-easy-transfer" +} diff --git a/site/public/v1/software/zinstall-migration-kit-pro/index.json b/site/public/v1/software/zinstall-migration-kit-pro/index.json new file mode 100644 index 000000000000..208f8913e628 --- /dev/null +++ b/site/public/v1/software/zinstall-migration-kit-pro/index.json @@ -0,0 +1,19 @@ +{ + "id": 11572, + "slug": "zinstall-migration-kit-pro", + "name": "Zinstall Migration Kit Pro", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q22909904" + ], + "created_at": "2026-07-10T10:12:43.884386", + "updated_at": "2026-07-10T10:12:43.884386", + "url": "/v1/software/zinstall-migration-kit-pro" +} diff --git a/site/public/v1/software/zinstall-winwin/index.json b/site/public/v1/software/zinstall-winwin/index.json new file mode 100644 index 000000000000..5ed85bd97e83 --- /dev/null +++ b/site/public/v1/software/zinstall-winwin/index.json @@ -0,0 +1,19 @@ +{ + "id": 11573, + "slug": "zinstall-winwin", + "name": "Zinstall WinWin", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q18157188" + ], + "created_at": "2026-07-10T10:12:43.884386", + "updated_at": "2026-07-10T10:12:43.884386", + "url": "/v1/software/zinstall-winwin" +} diff --git a/site/public/v1/software/zinstall-xp7/index.json b/site/public/v1/software/zinstall-xp7/index.json new file mode 100644 index 000000000000..1bb59307b045 --- /dev/null +++ b/site/public/v1/software/zinstall-xp7/index.json @@ -0,0 +1,19 @@ +{ + "id": 11574, + "slug": "zinstall-xp7", + "name": "Zinstall XP7", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8072455" + ], + "created_at": "2026-07-10T10:12:43.885375", + "updated_at": "2026-07-10T10:12:43.885375", + "url": "/v1/software/zinstall-xp7" +} diff --git a/site/public/v1/software/zipbooks/index.json b/site/public/v1/software/zipbooks/index.json new file mode 100644 index 000000000000..efed4a329b6b --- /dev/null +++ b/site/public/v1/software/zipbooks/index.json @@ -0,0 +1,19 @@ +{ + "id": 11575, + "slug": "zipbooks", + "name": "ZipBooks", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q23680029" + ], + "created_at": "2026-07-10T10:12:43.885375", + "updated_at": "2026-07-10T10:12:43.885375", + "url": "/v1/software/zipbooks" +} diff --git a/site/public/v1/software/zipit/index.json b/site/public/v1/software/zipit/index.json new file mode 100644 index 000000000000..997bfe1310c2 --- /dev/null +++ b/site/public/v1/software/zipit/index.json @@ -0,0 +1,19 @@ +{ + "id": 11576, + "slug": "zipit", + "name": "ZipIt", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q30638061" + ], + "created_at": "2026-07-10T10:12:43.885375", + "updated_at": "2026-07-10T10:12:43.885375", + "url": "/v1/software/zipit" +} diff --git a/site/public/v1/software/zitrr-camera/index.json b/site/public/v1/software/zitrr-camera/index.json new file mode 100644 index 000000000000..ec412a2d6f85 --- /dev/null +++ b/site/public/v1/software/zitrr-camera/index.json @@ -0,0 +1,19 @@ +{ + "id": 11577, + "slug": "zitrr-camera", + "name": "Zitrr camera", + "release_date": "2013-03-10", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8072850" + ], + "created_at": "2026-07-10T10:12:43.886379", + "updated_at": "2026-07-10T10:12:43.886379", + "url": "/v1/software/zitrr-camera" +} diff --git a/site/public/v1/software/zmanda-cloud-backup/index.json b/site/public/v1/software/zmanda-cloud-backup/index.json new file mode 100644 index 000000000000..9aafdc5373ec --- /dev/null +++ b/site/public/v1/software/zmanda-cloud-backup/index.json @@ -0,0 +1,23 @@ +{ + "id": 11578, + "slug": "zmanda-cloud-backup", + "name": "Zmanda Cloud Backup", + "release_date": null, + "developers": [ + "Zmanda" + ], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8073083" + ], + "created_at": "2026-07-10T10:12:43.886379", + "updated_at": "2026-07-10T10:12:43.886379", + "url": "/v1/software/zmanda-cloud-backup" +} diff --git a/site/public/v1/software/zmap/index.json b/site/public/v1/software/zmap/index.json new file mode 100644 index 000000000000..b3fa8b1ff388 --- /dev/null +++ b/site/public/v1/software/zmap/index.json @@ -0,0 +1,21 @@ +{ + "id": 11579, + "slug": "zmap", + "name": "ZMap", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Apache License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28975603" + ], + "created_at": "2026-07-10T10:12:43.886379", + "updated_at": "2026-07-10T10:12:43.886379", + "url": "/v1/software/zmap" +} diff --git a/site/public/v1/software/zmodeler/index.json b/site/public/v1/software/zmodeler/index.json new file mode 100644 index 000000000000..40769aa568ea --- /dev/null +++ b/site/public/v1/software/zmodeler/index.json @@ -0,0 +1,21 @@ +{ + "id": 11580, + "slug": "zmodeler", + "name": "Zmodeler", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q3505124" + ], + "created_at": "2026-07-10T10:12:43.886379", + "updated_at": "2026-07-10T10:12:43.886379", + "url": "/v1/software/zmodeler" +} diff --git a/site/public/v1/software/znameniti/index.json b/site/public/v1/software/znameniti/index.json new file mode 100644 index 000000000000..5fda2be02713 --- /dev/null +++ b/site/public/v1/software/znameniti/index.json @@ -0,0 +1,19 @@ +{ + "id": 11581, + "slug": "znameniti", + "name": "Znameniti", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084490" + ], + "created_at": "2026-07-10T10:12:43.887391", + "updated_at": "2026-07-10T10:12:43.887391", + "url": "/v1/software/znameniti" +} diff --git a/site/public/v1/software/zoho-crm/index.json b/site/public/v1/software/zoho-crm/index.json new file mode 100644 index 000000000000..e39508cde13c --- /dev/null +++ b/site/public/v1/software/zoho-crm/index.json @@ -0,0 +1,19 @@ +{ + "id": 11582, + "slug": "zoho-crm", + "name": "Zoho CRM", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q135558078" + ], + "created_at": "2026-07-10T10:12:43.887391", + "updated_at": "2026-07-10T10:12:43.887391", + "url": "/v1/software/zoho-crm" +} diff --git a/site/public/v1/software/zoho/index.json b/site/public/v1/software/zoho/index.json new file mode 100644 index 000000000000..00abb85711b4 --- /dev/null +++ b/site/public/v1/software/zoho/index.json @@ -0,0 +1,19 @@ +{ + "id": 11583, + "slug": "zoho", + "name": "Zoho", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084789" + ], + "created_at": "2026-07-10T10:12:43.888381", + "updated_at": "2026-07-10T10:12:43.888381", + "url": "/v1/software/zoho" +} diff --git a/site/public/v1/software/zola-project/index.json b/site/public/v1/software/zola-project/index.json new file mode 100644 index 000000000000..72728a06e14a --- /dev/null +++ b/site/public/v1/software/zola-project/index.json @@ -0,0 +1,19 @@ +{ + "id": 11584, + "slug": "zola-project", + "name": "ZOLA Project", + "release_date": "2013-06-20", + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q25113099" + ], + "created_at": "2026-07-10T10:12:43.888381", + "updated_at": "2026-07-10T10:12:43.888381", + "url": "/v1/software/zola-project" +} diff --git a/site/public/v1/software/zona/index.json b/site/public/v1/software/zona/index.json new file mode 100644 index 000000000000..7c48b94cfdca --- /dev/null +++ b/site/public/v1/software/zona/index.json @@ -0,0 +1,23 @@ +{ + "id": 11585, + "slug": "zona", + "name": "Zona", + "release_date": "2014-01-01", + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [ + "Java" + ], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q28134050" + ], + "created_at": "2026-07-10T10:12:43.888381", + "updated_at": "2026-07-10T10:12:43.888381", + "url": "/v1/software/zona" +} diff --git a/site/public/v1/software/zonealarm-z100g/index.json b/site/public/v1/software/zonealarm-z100g/index.json new file mode 100644 index 000000000000..41d4584f6133 --- /dev/null +++ b/site/public/v1/software/zonealarm-z100g/index.json @@ -0,0 +1,21 @@ +{ + "id": 11586, + "slug": "zonealarm-z100g", + "name": "ZoneAlarm Z100G", + "release_date": "2006-01-01", + "developers": [ + "Check Point" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8073889" + ], + "created_at": "2026-07-10T10:12:43.888381", + "updated_at": "2026-07-10T10:12:43.888381", + "url": "/v1/software/zonealarm-z100g" +} diff --git a/site/public/v1/software/zoomerang/index.json b/site/public/v1/software/zoomerang/index.json new file mode 100644 index 000000000000..49ccd666dafb --- /dev/null +++ b/site/public/v1/software/zoomerang/index.json @@ -0,0 +1,19 @@ +{ + "id": 11587, + "slug": "zoomerang", + "name": "Zoomerang", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084790" + ], + "created_at": "2026-07-10T10:12:43.889394", + "updated_at": "2026-07-10T10:12:43.889394", + "url": "/v1/software/zoomerang" +} diff --git a/site/public/v1/software/zoomify/index.json b/site/public/v1/software/zoomify/index.json new file mode 100644 index 000000000000..e00b884a19b3 --- /dev/null +++ b/site/public/v1/software/zoomify/index.json @@ -0,0 +1,19 @@ +{ + "id": 11588, + "slug": "zoomify", + "name": "Zoomify", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q56298707" + ], + "created_at": "2026-07-10T10:12:43.889394", + "updated_at": "2026-07-10T10:12:43.889394", + "url": "/v1/software/zoomify" +} diff --git a/site/public/v1/software/zoomq3d/index.json b/site/public/v1/software/zoomq3d/index.json new file mode 100644 index 000000000000..bcac73698804 --- /dev/null +++ b/site/public/v1/software/zoomq3d/index.json @@ -0,0 +1,19 @@ +{ + "id": 11589, + "slug": "zoomq3d", + "name": "ZOOMQ3D", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8063250" + ], + "created_at": "2026-07-10T10:12:43.890384", + "updated_at": "2026-07-10T10:12:43.890384", + "url": "/v1/software/zoomq3d" +} diff --git a/site/public/v1/software/zotfile/index.json b/site/public/v1/software/zotfile/index.json new file mode 100644 index 000000000000..c50bd20637c2 --- /dev/null +++ b/site/public/v1/software/zotfile/index.json @@ -0,0 +1,19 @@ +{ + "id": 11590, + "slug": "zotfile", + "name": "ZotFile", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084791" + ], + "created_at": "2026-07-10T10:12:43.890384", + "updated_at": "2026-07-10T10:12:43.890384", + "url": "/v1/software/zotfile" +} diff --git a/site/public/v1/software/zotpress/index.json b/site/public/v1/software/zotpress/index.json new file mode 100644 index 000000000000..2b73eebf4f35 --- /dev/null +++ b/site/public/v1/software/zotpress/index.json @@ -0,0 +1,19 @@ +{ + "id": 11591, + "slug": "zotpress", + "name": "Zotpress", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084793" + ], + "created_at": "2026-07-10T10:12:43.890384", + "updated_at": "2026-07-10T10:12:43.890384", + "url": "/v1/software/zotpress" +} diff --git a/site/public/v1/software/zoviz/index.json b/site/public/v1/software/zoviz/index.json new file mode 100644 index 000000000000..8d494fdcfb73 --- /dev/null +++ b/site/public/v1/software/zoviz/index.json @@ -0,0 +1,19 @@ +{ + "id": 11592, + "slug": "zoviz", + "name": "Zoviz", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q131582298" + ], + "created_at": "2026-07-10T10:12:43.890384", + "updated_at": "2026-07-10T10:12:43.890384", + "url": "/v1/software/zoviz" +} diff --git a/site/public/v1/software/zserver-suite/index.json b/site/public/v1/software/zserver-suite/index.json new file mode 100644 index 000000000000..064c8c708f8d --- /dev/null +++ b/site/public/v1/software/zserver-suite/index.json @@ -0,0 +1,19 @@ +{ + "id": 11593, + "slug": "zserver-suite", + "name": "Zserver Suite", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4053613" + ], + "created_at": "2026-07-10T10:12:43.891382", + "updated_at": "2026-07-10T10:12:43.891382", + "url": "/v1/software/zserver-suite" +} diff --git a/site/public/v1/software/zsky-mcp-server/index.json b/site/public/v1/software/zsky-mcp-server/index.json new file mode 100644 index 000000000000..4ae7e11dbcf8 --- /dev/null +++ b/site/public/v1/software/zsky-mcp-server/index.json @@ -0,0 +1,19 @@ +{ + "id": 11594, + "slug": "zsky-mcp-server", + "name": "ZSky MCP Server", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139814098" + ], + "created_at": "2026-07-10T10:12:43.891382", + "updated_at": "2026-07-10T10:12:43.891382", + "url": "/v1/software/zsky-mcp-server" +} diff --git a/site/public/v1/software/zsky-prompt-library/index.json b/site/public/v1/software/zsky-prompt-library/index.json new file mode 100644 index 000000000000..d63783db38d8 --- /dev/null +++ b/site/public/v1/software/zsky-prompt-library/index.json @@ -0,0 +1,21 @@ +{ + "id": 11595, + "slug": "zsky-prompt-library", + "name": "ZSky Prompt Library", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "MIT License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q139814109" + ], + "created_at": "2026-07-10T10:12:43.892423", + "updated_at": "2026-07-10T10:12:43.892423", + "url": "/v1/software/zsky-prompt-library" +} diff --git a/site/public/v1/software/zubrag-html-tags-stripper/index.json b/site/public/v1/software/zubrag-html-tags-stripper/index.json new file mode 100644 index 000000000000..5b6a27b07f74 --- /dev/null +++ b/site/public/v1/software/zubrag-html-tags-stripper/index.json @@ -0,0 +1,19 @@ +{ + "id": 11596, + "slug": "zubrag-html-tags-stripper", + "name": "Zubrag HTML Tags Stripper", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q126084794" + ], + "created_at": "2026-07-10T10:12:43.892423", + "updated_at": "2026-07-10T10:12:43.892423", + "url": "/v1/software/zubrag-html-tags-stripper" +} diff --git a/site/public/v1/software/zula/index.json b/site/public/v1/software/zula/index.json new file mode 100644 index 000000000000..e9e5b3fb7193 --- /dev/null +++ b/site/public/v1/software/zula/index.json @@ -0,0 +1,19 @@ +{ + "id": 11597, + "slug": "zula", + "name": "Zula", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q17091171" + ], + "created_at": "2026-07-10T10:12:43.892423", + "updated_at": "2026-07-10T10:12:43.892423", + "url": "/v1/software/zula" +} diff --git a/site/public/v1/software/zultrax/index.json b/site/public/v1/software/zultrax/index.json new file mode 100644 index 000000000000..d57346977f09 --- /dev/null +++ b/site/public/v1/software/zultrax/index.json @@ -0,0 +1,21 @@ +{ + "id": 11598, + "slug": "zultrax", + "name": "Zultrax", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q228856" + ], + "created_at": "2026-07-10T10:12:43.892423", + "updated_at": "2026-07-10T10:12:43.892423", + "url": "/v1/software/zultrax" +} diff --git a/site/public/v1/software/zumodrive/index.json b/site/public/v1/software/zumodrive/index.json new file mode 100644 index 000000000000..caa691be69b5 --- /dev/null +++ b/site/public/v1/software/zumodrive/index.json @@ -0,0 +1,21 @@ +{ + "id": 11599, + "slug": "zumodrive", + "name": "ZumoDrive", + "release_date": "2009-02-01", + "developers": [], + "publishers": [], + "operating_systems": [ + "Microsoft Windows" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4053619" + ], + "created_at": "2026-07-10T10:12:43.893394", + "updated_at": "2026-07-10T10:12:43.893394", + "url": "/v1/software/zumodrive" +} diff --git a/site/public/v1/software/zune-social/index.json b/site/public/v1/software/zune-social/index.json new file mode 100644 index 000000000000..1ef64cd15619 --- /dev/null +++ b/site/public/v1/software/zune-social/index.json @@ -0,0 +1,19 @@ +{ + "id": 11600, + "slug": "zune-social", + "name": "Zune Social", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4053617" + ], + "created_at": "2026-07-10T10:12:43.893394", + "updated_at": "2026-07-10T10:12:43.893394", + "url": "/v1/software/zune-social" +} diff --git a/site/public/v1/software/zune/index.json b/site/public/v1/software/zune/index.json new file mode 100644 index 000000000000..f261157a8e1c --- /dev/null +++ b/site/public/v1/software/zune/index.json @@ -0,0 +1,23 @@ +{ + "id": 11601, + "slug": "zune", + "name": "Zune", + "release_date": null, + "developers": [ + "Microsoft" + ], + "publishers": [], + "operating_systems": [ + "Windows Embedded CE 6.0" + ], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q229851" + ], + "created_at": "2026-07-10T10:12:43.894328", + "updated_at": "2026-07-10T10:12:43.894328", + "url": "/v1/software/zune" +} diff --git a/site/public/v1/software/zuora/index.json b/site/public/v1/software/zuora/index.json new file mode 100644 index 000000000000..42f40e669790 --- /dev/null +++ b/site/public/v1/software/zuora/index.json @@ -0,0 +1,19 @@ +{ + "id": 11602, + "slug": "zuora", + "name": "Zuora", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8075320" + ], + "created_at": "2026-07-10T10:12:43.894328", + "updated_at": "2026-07-10T10:12:43.894328", + "url": "/v1/software/zuora" +} diff --git a/site/public/v1/software/zx-7/index.json b/site/public/v1/software/zx-7/index.json new file mode 100644 index 000000000000..76eeaf23510f --- /dev/null +++ b/site/public/v1/software/zx-7/index.json @@ -0,0 +1,19 @@ +{ + "id": 11603, + "slug": "zx-7", + "name": "ZX-7", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q10857008" + ], + "created_at": "2026-07-10T10:12:43.894328", + "updated_at": "2026-07-10T10:12:43.894328", + "url": "/v1/software/zx-7" +} diff --git a/site/public/v1/software/zx-spectrum-software/index.json b/site/public/v1/software/zx-spectrum-software/index.json new file mode 100644 index 000000000000..31f955665c01 --- /dev/null +++ b/site/public/v1/software/zx-spectrum-software/index.json @@ -0,0 +1,19 @@ +{ + "id": 11604, + "slug": "zx-spectrum-software", + "name": "ZX Spectrum software", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q4379764" + ], + "created_at": "2026-07-10T10:12:43.894328", + "updated_at": "2026-07-10T10:12:43.894328", + "url": "/v1/software/zx-spectrum-software" +} diff --git a/site/public/v1/software/zxid/index.json b/site/public/v1/software/zxid/index.json new file mode 100644 index 000000000000..40ff5f1bcc56 --- /dev/null +++ b/site/public/v1/software/zxid/index.json @@ -0,0 +1,21 @@ +{ + "id": 11605, + "slug": "zxid", + "name": "ZXID", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [ + "Apache License" + ], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8063309" + ], + "created_at": "2026-07-10T10:12:43.895324", + "updated_at": "2026-07-10T10:12:43.895324", + "url": "/v1/software/zxid" +} diff --git a/site/public/v1/software/zygisk/index.json b/site/public/v1/software/zygisk/index.json new file mode 100644 index 000000000000..b5e0bce44a02 --- /dev/null +++ b/site/public/v1/software/zygisk/index.json @@ -0,0 +1,19 @@ +{ + "id": 11606, + "slug": "zygisk", + "name": "Zygisk", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q125966734" + ], + "created_at": "2026-07-10T10:12:43.895324", + "updated_at": "2026-07-10T10:12:43.895324", + "url": "/v1/software/zygisk" +} diff --git a/site/public/v1/software/zync-render/index.json b/site/public/v1/software/zync-render/index.json new file mode 100644 index 000000000000..654e027248a5 --- /dev/null +++ b/site/public/v1/software/zync-render/index.json @@ -0,0 +1,21 @@ +{ + "id": 11607, + "slug": "zync-render", + "name": "Zync Render", + "release_date": null, + "developers": [ + "Google" + ], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q60146133" + ], + "created_at": "2026-07-10T10:12:43.896323", + "updated_at": "2026-07-10T10:12:43.896323", + "url": "/v1/software/zync-render" +} diff --git a/site/public/v1/software/zynewave-podium/index.json b/site/public/v1/software/zynewave-podium/index.json new file mode 100644 index 000000000000..d03fbca09244 --- /dev/null +++ b/site/public/v1/software/zynewave-podium/index.json @@ -0,0 +1,19 @@ +{ + "id": 11608, + "slug": "zynewave-podium", + "name": "Zynewave Podium", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8075933" + ], + "created_at": "2026-07-10T10:12:43.896323", + "updated_at": "2026-07-10T10:12:43.896323", + "url": "/v1/software/zynewave-podium" +} diff --git a/site/public/v1/software/zyslen/index.json b/site/public/v1/software/zyslen/index.json new file mode 100644 index 000000000000..40a9bf7aef5c --- /dev/null +++ b/site/public/v1/software/zyslen/index.json @@ -0,0 +1,19 @@ +{ + "id": 11609, + "slug": "zyslen", + "name": "Zyslen", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q124986587" + ], + "created_at": "2026-07-10T10:12:43.896323", + "updated_at": "2026-07-10T10:12:43.896323", + "url": "/v1/software/zyslen" +} diff --git a/site/public/v1/software/zyweb/index.json b/site/public/v1/software/zyweb/index.json new file mode 100644 index 000000000000..0eed52edfa79 --- /dev/null +++ b/site/public/v1/software/zyweb/index.json @@ -0,0 +1,19 @@ +{ + "id": 11610, + "slug": "zyweb", + "name": "ZyWeb", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q8075729" + ], + "created_at": "2026-07-10T10:12:43.897326", + "updated_at": "2026-07-10T10:12:43.897326", + "url": "/v1/software/zyweb" +} diff --git a/site/public/v1/software/zzuf/index.json b/site/public/v1/software/zzuf/index.json new file mode 100644 index 000000000000..a2044a73f5e1 --- /dev/null +++ b/site/public/v1/software/zzuf/index.json @@ -0,0 +1,19 @@ +{ + "id": 11611, + "slug": "zzuf", + "name": "zzuf", + "release_date": null, + "developers": [], + "publishers": [], + "operating_systems": [], + "programming_languages": [], + "licenses": [], + "genres": [], + "verified": false, + "source_urls": [ + "https://www.wikidata.org/wiki/Q110473838" + ], + "created_at": "2026-07-10T10:12:43.897326", + "updated_at": "2026-07-10T10:12:43.897326", + "url": "/v1/software/zzuf" +}